diff --git a/assignment1/frequency.py b/assignment1/frequency.py new file mode 100644 index 00000000..03843625 --- /dev/null +++ b/assignment1/frequency.py @@ -0,0 +1,39 @@ +import sys +import json +import re + +def getTweet(fp): + tweet_file = open(fp) #Open the file that contains tweets + tweet_list = [] + for tweet in tweet_file: + decoded_tweet = json.loads(tweet) #Parse the data for every line in the tweet file. + if "text" in decoded_tweet : #Only retain lines that contain tweets,e.g. "text" + text = decoded_tweet["text"].encode('utf-8') #Select the text of the tweet, as in a dictionary, and encode to get proper international characters. + tweet_list.append(text) # Add each text to the tweet list + return tweet_list + + +def frequency(tweet_list): + wordsDic = {} #Initiate a dictionary for all the words + total_count = 0 + for tweet in tweet_list: # for each tweet selected above + tweet_words = re.findall(r"[\w']+",tweet,re.IGNORECASE) #Split each tweet to retain only the words + + for word in tweet_words: #For each word selected + total_count += 1 #Add one to the total count of words + if word in wordsDic: #If the word is in the dictionary + wordsDic[word] += 1 # Add one to the count for this word in the dictionary + else : #If the word is not in the dictionary + wordsDic[word] = 1 #Initiate the count for this word in the dictionary + + for word in wordsDic: + wordsDic[word] = float(wordsDic[word]) / float(total_count) + print word + " " + str("%.5f" % round(wordsDic[word],5)) + + +def main(): + tweet_list = getTweet(sys.argv[1]) #Create the tweet list + frequency(tweet_list) #Score each tweet from the list + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/assignment1/happiest_state.py b/assignment1/happiest_state.py new file mode 100644 index 00000000..8eb6ffff --- /dev/null +++ b/assignment1/happiest_state.py @@ -0,0 +1,184 @@ +import sys +import json +import re + +States = { + 'AK': 'Alaska', + 'AL': 'Alabama', + 'AR': 'Arkansas', + 'AS': 'American Samoa', + 'AZ': 'Arizona', + 'CA': 'California', + 'CO': 'Colorado', + 'CT': 'Connecticut', + 'DC': 'District of Columbia', + 'DE': 'Delaware', + 'FL': 'Florida', + 'GA': 'Georgia', + 'GU': 'Guam', + 'HI': 'Hawaii', + 'IA': 'Iowa', + 'ID': 'Idaho', + 'IL': 'Illinois', + 'IN': 'Indiana', + 'KS': 'Kansas', + 'KY': 'Kentucky', + 'LA': 'Louisiana', + 'MA': 'Massachusetts', + 'MD': 'Maryland', + 'ME': 'Maine', + 'MI': 'Michigan', + 'MN': 'Minnesota', + 'MO': 'Missouri', + 'MP': 'Northern Mariana Islands', + 'MS': 'Mississippi', + 'MT': 'Montana', + 'NA': 'National', + 'NC': 'North Carolina', + 'ND': 'North Dakota', + 'NE': 'Nebraska', + 'NH': 'New Hampshire', + 'NJ': 'New Jersey', + 'NM': 'New Mexico', + 'NV': 'Nevada', + 'NY': 'New York', + 'OH': 'Ohio', + 'OK': 'Oklahoma', + 'OR': 'Oregon', + 'PA': 'Pennsylvania', + 'PR': 'Puerto Rico', + 'RI': 'Rhode Island', + 'SC': 'South Carolina', + 'SD': 'South Dakota', + 'TN': 'Tennessee', + 'TX': 'Texas', + 'UT': 'Utah', + 'VA': 'Virginia', + 'VI': 'Virgin Islands', + 'VT': 'Vermont', + 'WA': 'Washington', + 'WI': 'Wisconsin', + 'WV': 'West Virginia', + 'WY': 'Wyoming' +} + +States2 = { + 'Alaska':'AK', + 'Alabama':'AL', + 'Arkansas':'AR', + 'American Samoa':'AS', + 'Arizona':'AZ', + 'California':'CA', + 'Colorado':'CO', + 'Connecticut':'CT', + 'District of Columbia':'DC', + 'Delaware':'DE', + 'Florida':'FL', + 'Georgia':'GA', + 'Guam':'GU', + 'Hawaii':'HI', + 'Iowa':'IA', + 'Idaho':'ID', + 'Illinois':'IL', + 'Indiana':'IN', + 'Kansas':'KS', + 'Kentucky':'KY', + 'Louisiana':'LA', + 'Massachusetts':'MA', + 'Maryland':'MD', + 'Maine':'ME', + 'Michigan':'MI', + 'Minnesota':'MN', + 'Missouri':'MO', + 'Northern Mariana Islands':'MP', + 'Mississippi':'MS', + 'Montana':'MT', + 'National':'NA', + 'North Carolina':'NC', + 'North Dakota':'ND', + 'Nebraska':'NE', + 'New Hampshire':'NH', + 'New Jersey':'NJ', + 'New Mexico':'NM', + 'Nevada':'NV', + 'New York':'NY', + 'Ohio':'OH', + 'Oklahoma':'OK', + 'Oregon':'OR', + 'Pennsylvania':'PA', + 'Puerto Rico':'PR', + 'Rhode Island':'RI', + 'South Carolina':'SC', + 'South Dakota':'SD', + 'Tennessee':'TN', + 'Texas':'TX', + 'Utah':'UT', + 'Virginia':'VA', + 'Virgin Islands':'VI', + 'Vermont':'VT', + 'Washington':'WA', + 'Wisconsin':'WI', + 'West Virginia':'WV', + 'Wyoming' :'WY' +} + +def dict(fn): + sent_file = open(fn) + scores = {} # initialize an empty dictionary + for line in sent_file: + term, score = line.split("\t") # The file is tab-delimited. "\t" means "tab character" + scores[term] = int(score) # Convert the score to an integer. + return scores + +def getTweet(fp): + tweet_file = open(fp) #Open the file that contains tweets + tweet_dic = {} + for tweet in tweet_file: + decoded_tweet = json.loads(tweet) #Parse the data for every line in the tweet file. + if "place" in decoded_tweet: + place = decoded_tweet["place"] + if place is not None: + if place["country_code"] == "US": + if place["full_name"] is not None : + state0 = place["full_name"].split(",")[1].split()[0].encode('utf-8') + state1 = place["full_name"].split(",")[0].split()[0].encode('utf-8') + if state0 in States or state1 in States.values(): + if state0 in States: + state = state0 + else: + state = States2[state1] + if "text" in decoded_tweet : #Only retain lines that contain tweets,e.g. "text" + text = decoded_tweet["text"].encode('utf-8') #Select the text of the tweet, as in a dictionary, and encode to get proper international characters. + tweet_dic[text] = state # Add each text to the tweet list + return tweet_dic + + +def sent(score_list, tweet_dic): + state_score = {} + for tweet in tweet_dic: # for each tweet selected above + tweet_score = 0 #Set the starting score to 0 + tweet_words = re.findall(r"[\w']+",tweet,re.IGNORECASE) #Split each tweet to retain only the words + + for word in tweet_words: #For each word selected + if word in score_list: #If the word is in the sentiment file dictionary + word_score = score_list[word] # get the word score from this dictionary + else : #If the word is not in the dictionary + word_score = 0 #Put the score of this word to 0 + tweet_score += word_score #Sum scores of each word to get a total tweet score + if tweet_dic[tweet] in state_score: + state_score[tweet_dic[tweet]] += tweet_score + else: + state_score[tweet_dic[tweet]] = tweet_score + + # finding the state with the max score + v = list(state_score.values()) + k = list(state_score.keys()) + print k[v.index(max(v))] + +def main(): + scores = dict(sys.argv[1]) #Create the dictionary from the sentiment file + tweet_list = getTweet(sys.argv[2]) #Create the tweet list + sent(scores, tweet_list) #Score each tweet from the list + +if __name__ == '__main__': + main() diff --git a/assignment1/happiest_state.pyc b/assignment1/happiest_state.pyc new file mode 100644 index 00000000..48ee751f Binary files /dev/null and b/assignment1/happiest_state.pyc differ diff --git a/assignment1/output.txt b/assignment1/output.txt new file mode 100644 index 00000000..1a17c4bb --- /dev/null +++ b/assignment1/output.txt @@ -0,0 +1,10171 @@ +{"delete":{"status":{"id":663727586183245824,"id_str":"663727586183245824","user_id":2203044308,"user_id_str":"2203044308"},"timestamp_ms":"1447079971504"}} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911186432,"id_str":"663727623911186432","text":"RT @BlanchuSombre: \ud83c\udf1fEntonces te habla el profesor [x: Algun motivo de su retraso se\u00f1orita]\ud83c\udf1f\n\nRt si No quer\u00eda verte el gepeto tal vez\nFav si\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3270308433,"id_str":"3270308433","name":"-69 THE NIGHT!!","screen_name":"merysmilerpaste","location":"Endless Road 7058","url":null,"description":"Auryner de corazon, no de ocasion. un Endless Road junto a ti. Cristina bosca my idol. Auryn y SWC. 19-12-14\u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":148,"friends_count":222,"listed_count":1,"favourites_count":4159,"statuses_count":4376,"created_at":"Sun May 17 12:47:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660418518639357952\/NsJO7_FP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660418518639357952\/NsJO7_FP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270308433\/1443351532","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727548900237312,"id_str":"663727548900237312","text":"\ud83c\udf1fEntonces te habla el profesor [x: Algun motivo de su retraso se\u00f1orita]\ud83c\udf1f\n\nRt si No quer\u00eda verte el gepeto tal vez\nFav si Lo siento sargento","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726978218987520,"in_reply_to_status_id_str":"663726978218987520","in_reply_to_user_id":1151702341,"in_reply_to_user_id_str":"1151702341","in_reply_to_screen_name":"BlanchuSombre","user":{"id":1151702341,"id_str":"1151702341","name":"BlanChupachups\u270c","screen_name":"BlanchuSombre","location":"Maad \u007bAli\u007d 404km","url":null,"description":"\u2728D\u025b \u029fa \u028da\u057c\u0585 \u0256\u025b C\u0280\u0268st\u0268\u057ca B\u0585s\u010ba, \u0262\u028a\u0268a\u0256as \u0584\u0585\u0280 \u029fa \u028b\u0585\u0290 \u0256\u025b J\u0585ss\u025b\u029f\u028f\u057c\u025b Ga\u029f\u029fa\u0280\u0256\u0585, \u025b\u057c \u026e\u028as\u010ba \u0256\u025b \u057c\u028a\u025bst\u0280\u0585 a\u057c\u0262\u025b\u029f \u0256\u025b \u029fa \u0262\u028aa\u0280\u0256a \u007bC\u0584\u028d\u007d \u2728","protected":false,"verified":false,"followers_count":2758,"friends_count":2255,"listed_count":9,"favourites_count":18939,"statuses_count":28395,"created_at":"Tue Feb 05 18:49:41 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F74ACF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565480452471795712\/AqhauNa8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565480452471795712\/AqhauNa8.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660916216220000256\/qT6cqzW-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660916216220000256\/qT6cqzW-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151702341\/1446433334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlanchuSombre","name":"BlanChupachups\u270c","id":1151702341,"id_str":"1151702341","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623906983936,"id_str":"663727623906983936","text":"RT @followtrickjb: Retweet para ganhar seguidores, siga quem retweetou e siga de volta quem te seguiu \u2744","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4145193153,"id_str":"4145193153","name":"maria","screen_name":"secretlovesing","location":null,"url":null,"description":"little mix showed me that I need not be \u201cperfect\u201d to be perfect, if I am who I am it\u2019s already make me the best person I could be","protected":false,"verified":false,"followers_count":74,"friends_count":48,"listed_count":0,"favourites_count":12,"statuses_count":108,"created_at":"Sun Nov 08 23:49:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663519718423269380\/r4DOcULy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663519718423269380\/r4DOcULy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4145193153\/1447030389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:29 +0000 2015","id":663725599702302720,"id_str":"663725599702302720","text":"Retweet para ganhar seguidores, siga quem retweetou e siga de volta quem te seguiu \u2744","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":553772377,"id_str":"553772377","name":"Projeto Follow Trick","screen_name":"followtrickjb","location":null,"url":"http:\/\/twitter.com\/followtrickjb\/status\/614509814354432002","description":"Ativem as notifica\u00e7\u00f5es para ganhar seguidores f\u00e1cil e r\u00e1pido, siga todos de volta, caso contr\u00e1rio ser\u00e1 bloqueado.","protected":false,"verified":false,"followers_count":130231,"friends_count":17939,"listed_count":780,"favourites_count":56,"statuses_count":28313,"created_at":"Sat Apr 14 19:19:57 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572949019182104576\/96kzdjbM.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572949019182104576\/96kzdjbM.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654336871871434752\/0VBtONWc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654336871871434752\/0VBtONWc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553772377\/1444841017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":324,"favorite_count":39,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"followtrickjb","name":"Projeto Follow Trick","id":553772377,"id_str":"553772377","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971659"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927947264,"id_str":"663727623927947264","text":"D&R'dan tam 1 hafta \u00f6nce kitap sipari\u015f ettim, hala gelmedi. Bir daha D&R dan kitap alan\u0131 siksinler","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587417318,"id_str":"587417318","name":"\u015eeytanc\u0131 Evlat Arif","screen_name":"polonyum_","location":"\u0130zmir, Turkey","url":"http:\/\/ask.fm\/polonyum1","description":"Dokuz Eylul University \/ English-German-Turkish Translation & Interpreting","protected":false,"verified":false,"followers_count":341,"friends_count":402,"listed_count":3,"favourites_count":0,"statuses_count":38429,"created_at":"Tue May 22 13:19:19 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000010548087\/e628ff54fc7319c341d7bd2bc56b0097.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000010548087\/e628ff54fc7319c341d7bd2bc56b0097.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663307903260954624\/HDoF9JPs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663307903260954624\/HDoF9JPs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587417318\/1445803505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079971664"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915364352,"id_str":"663727623915364352","text":"RT @VPicV: \u0645\u0635\u0627\u0628\u064a\u062d \u0641\u064a \u0627\u0644\u0642\u062f\u0633 \u0627\u0644\u0645\u062d\u062a\u0644\u0629 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0648\u0631\u0648\u062f \u062a\u0632\u0647\u0631 \u0639\u0646\u062f\u0645\u0627 \u064a\u0642\u062a\u0631\u0628 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635 \u0645\u0646 \u0627\u0644\u0645\u0627\u0631\u0629\u203c\ufe0f\n#\u0625\u0628\u062f\u0627\u0639\n#\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629 https:\/\/t.co\/rka7SCJwFD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1598055889,"id_str":"1598055889","name":"\u0994Norah","screen_name":"n0riy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":137,"friends_count":94,"listed_count":0,"favourites_count":534,"statuses_count":3304,"created_at":"Tue Jul 16 10:00:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"033C6B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656239637690761216\/qEYSI5t8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656239637690761216\/qEYSI5t8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1598055889\/1445294691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:54:47 +0000 2015","id":663565371492990976,"id_str":"663565371492990976","text":"\u0645\u0635\u0627\u0628\u064a\u062d \u0641\u064a \u0627\u0644\u0642\u062f\u0633 \u0627\u0644\u0645\u062d\u062a\u0644\u0629 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0648\u0631\u0648\u062f \u062a\u0632\u0647\u0631 \u0639\u0646\u062f\u0645\u0627 \u064a\u0642\u062a\u0631\u0628 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635 \u0645\u0646 \u0627\u0644\u0645\u0627\u0631\u0629\u203c\ufe0f\n#\u0625\u0628\u062f\u0627\u0639\n#\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629 https:\/\/t.co\/rka7SCJwFD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2903360450,"id_str":"2903360450","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","screen_name":"VPicV","location":"VPicV@outlook.com","url":"http:\/\/Instagram.com\/VPicV","description":"\u0644\u0623\u0646 \u0627\u0644\u0635\u0648\u0631\u0629 \u062a\u062e\u062a\u0632\u0644 \u0627\u0644\u0641 \u0643\u0644\u0645\u0629\u060c \u0633\u0646\u0642\u062f\u0645 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0629 \u0627\u0644\u063a\u0631\u064a\u0628\u0629 \u0648 \u0627\u0644\u0639\u0644\u0645\u064a\u0629 \u0648 \u0627\u0644\u062b\u0642\u0627\u0641\u064a\u0629 \u0645\u0642\u0631\u0648\u0646\u0629 \u0628\u0627 \u0627\u0644\u0635\u0648\u0631 #\u0645\u0639\u0644\u0648\u0645\u0627\u062a #\u063a\u0631\u0627\u0626\u0628 #\u0635\u0648\u0631 #\u0627\u062e\u0628\u0627\u0631 #\u0639\u0627\u062f\u0627\u062a_\u0627\u0644\u0634\u0639\u0648\u0628 \u0648\u0643\u0644 \u0645\u0627\u064a\u064f\u062b\u0631\u064a \u0645\u0639\u0644\u0648\u0645\u0627\u062a\u0643 \u0633\u062a\u062c\u062f\u0647 \u0647\u0646\u0627.","protected":false,"verified":false,"followers_count":314927,"friends_count":0,"listed_count":585,"favourites_count":1765,"statuses_count":2939,"created_at":"Tue Nov 18 07:11:56 +0000 2014","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903360450\/1441201651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":473,"favorite_count":170,"entities":{"hashtags":[{"text":"\u0625\u0628\u062f\u0627\u0639","indices":[75,81]},{"text":"\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629","indices":[82,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}},{"id":663565331512823808,"id_str":"663565331512823808","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":880,"h":588,"resize":"fit"}}},{"id":663565331647111168,"id_str":"663565331647111168","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}},{"id":663565331894509568,"id_str":"663565331894509568","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0625\u0628\u062f\u0627\u0639","indices":[86,92]},{"text":"\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629","indices":[93,103]}],"urls":[],"user_mentions":[{"screen_name":"VPicV","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","id":2903360450,"id_str":"2903360450","indices":[3,9]}],"symbols":[],"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"extended_entities":{"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331512823808,"id_str":"663565331512823808","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":880,"h":588,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331647111168,"id_str":"663565331647111168","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331894509568,"id_str":"663565331894509568","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915356160,"id_str":"663727623915356160","text":"RT @Micks_Got_Kicks: What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344323467,"id_str":"344323467","name":"TRE","screen_name":"King_Eppenger16","location":null,"url":null,"description":"snapchat t-eppenger IG @Iamdatnigga18","protected":false,"verified":false,"followers_count":12627,"friends_count":9161,"listed_count":16,"favourites_count":216,"statuses_count":83634,"created_at":"Thu Jul 28 21:57:54 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647497922674884608\/yL6X1i_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647497922674884608\/yL6X1i_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344323467\/1442090929","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:29 +0000 2015","id":663726607534723072,"id_str":"663726607534723072","text":"What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142677463,"id_str":"4142677463","name":"Mick \u26a1\ufe0f","screen_name":"Micks_Got_Kicks","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":485,"friends_count":1884,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Sun Nov 08 15:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142677463\/1446999768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[76,99]}],"user_mentions":[{"screen_name":"Micks_Got_Kicks","name":"Mick \u26a1\ufe0f","id":4142677463,"id_str":"4142677463","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915380736,"id_str":"663727623915380736","text":"RT @Droghino: Cosa cerchi dalla vita?\nIl wi-fi.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1766640746,"id_str":"1766640746","name":"\u2661Alessia\u2661","screen_name":"chocofrog_","location":null,"url":null,"description":"Girl, 17, Italy. #5sos #thecrookids #justinbieber #gretamenchi #teamusa #benjiefede","protected":false,"verified":false,"followers_count":247,"friends_count":348,"listed_count":1,"favourites_count":214,"statuses_count":912,"created_at":"Sat Sep 07 18:54:39 +0000 2013","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000069095042\/a651d9a0ee72f94620350b53496a1843.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000069095042\/a651d9a0ee72f94620350b53496a1843.jpeg","profile_background_tile":false,"profile_link_color":"8A8A8A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662309286266191874\/RnlEHeF4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662309286266191874\/RnlEHeF4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1766640746\/1446741812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 15:24:58 +0000 2015","id":661564735738028033,"id_str":"661564735738028033","text":"Cosa cerchi dalla vita?\nIl wi-fi.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3662016741,"id_str":"3662016741","name":"Droghino","screen_name":"Droghino","location":null,"url":null,"description":"Mio pap\u00e0 \u00e8 @Droghiere, mia mamma @Droghiera e questa bio l'hanno scritta loro. Io solo caco, piscio e piango. DroghinoSuperstar.","protected":false,"verified":false,"followers_count":3115,"friends_count":1768,"listed_count":2,"favourites_count":788,"statuses_count":242,"created_at":"Tue Sep 15 08:35:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643775337126608897\/KNtSRK_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643775337126608897\/KNtSRK_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3662016741\/1442323453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Droghino","name":"Droghino","id":3662016741,"id_str":"3662016741","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932125188,"id_str":"663727623932125188","text":"RT @bst1Dupdates: (2) Novas fotos do Harry que foram liberadas hoje. #4DaysUntilMITAM https:\/\/t.co\/JwFXxDf7qE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059239580,"id_str":"1059239580","name":"PER(me)FECT","screen_name":"dragme1down","location":null,"url":"https:\/\/twitter.com\/niallofficial\/status\/102847753612296193","description":"vendendo bala no sem\u00e1foro pra comprar made in the am","protected":false,"verified":false,"followers_count":2112,"friends_count":1920,"listed_count":8,"favourites_count":10794,"statuses_count":64474,"created_at":"Fri Jan 04 01:37:58 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513834946834595840\/FE65Pdvm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513834946834595840\/FE65Pdvm.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"725270","profile_sidebar_fill_color":"D0CECF","profile_text_color":"999EA1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646434803940728832\/Tdoe3bch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646434803940728832\/Tdoe3bch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059239580\/1442957108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:54:18 +0000 2015","id":663701144850575360,"id_str":"663701144850575360","text":"(2) Novas fotos do Harry que foram liberadas hoje. #4DaysUntilMITAM https:\/\/t.co\/JwFXxDf7qE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891291492,"id_str":"891291492","name":"Best 1D Updates","screen_name":"bst1Dupdates","location":"Brasil","url":"http:\/\/Instagram.com\/b1dupdates","description":"Confira atualiza\u00e7\u00f5es di\u00e1rias na sua fonte de not\u00edcias da One Direction e Zayn Malik no Brasil. | LIAM FOLLOWED US - 16.10.15","protected":false,"verified":false,"followers_count":55471,"friends_count":1918,"listed_count":171,"favourites_count":1081,"statuses_count":158279,"created_at":"Fri Oct 19 16:14:59 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559794215505256448\/ZdOk4HTJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559794215505256448\/ZdOk4HTJ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663029883174567936\/F1fT92hY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663029883174567936\/F1fT92hY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891291492\/1446913693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":133,"favorite_count":60,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[51,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"extended_entities":{"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264321376256,"id_str":"663694264321376256","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264996651008,"id_str":"663694264996651008","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694265067962368,"id_str":"663694265067962368","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[69,85]}],"urls":[],"user_mentions":[{"screen_name":"bst1Dupdates","name":"Best 1D Updates","id":891291492,"id_str":"891291492","indices":[3,16]}],"symbols":[],"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"extended_entities":{"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264321376256,"id_str":"663694264321376256","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264996651008,"id_str":"663694264996651008","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694265067962368,"id_str":"663694265067962368","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911010305,"id_str":"663727623911010305","text":"Thankyou babeby ko \ud83d\ude19 Iloveyou \ud83d\udc93\ud83d\udc95\ud83d\udc9e\ud83d\udc98\ud83d\udc96\ud83d\udc97 @danhiellouie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415287827,"id_str":"2415287827","name":"Jill","screen_name":"gilleanapaler","location":"Pasig City","url":"http:\/\/instagram.com\/gilleanaquilino","description":"Weird kiddo \u26ab 1996's","protected":false,"verified":false,"followers_count":253,"friends_count":245,"listed_count":1,"favourites_count":1659,"statuses_count":6949,"created_at":"Fri Mar 28 03:24:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2E9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602852417445634048\/ZGpGvw_m.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602852417445634048\/ZGpGvw_m.png","profile_background_tile":true,"profile_link_color":"DB1596","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662433764639830016\/3dTKLbaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662433764639830016\/3dTKLbaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415287827\/1446465523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danhiellouie","name":"Jack","id":2269916780,"id_str":"2269916780","indices":[37,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936352257,"id_str":"663727623936352257","text":"RT @iha_istanbul: Hali\u00e7te Sahne Binbir Gece Kap\u0131lar\u0131n\u0131 A\u00e7\u0131yor https:\/\/t.co\/qlc6uCeqBn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3929049143,"id_str":"3929049143","name":"B\u0130NB\u0130R GECE Sahnesi","screen_name":"sahnebinbirgece","location":"Golden Horn, Hali\u00e7","url":"http:\/\/www.halictebinbirgece.com","description":"\u0130stanbul' un \u0130LK ve TEK Y\u00fczer Canl\u0131 Performans Sanatlar\u0131 Sahnesi \u00ae","protected":false,"verified":false,"followers_count":123,"friends_count":735,"listed_count":0,"favourites_count":1,"statuses_count":112,"created_at":"Sun Oct 11 16:01:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656833327219933184\/xClK7Eps_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656833327219933184\/xClK7Eps_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3929049143\/1446073382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:34:36 +0000 2015","id":663620689077891072,"id_str":"663620689077891072","text":"Hali\u00e7te Sahne Binbir Gece Kap\u0131lar\u0131n\u0131 A\u00e7\u0131yor https:\/\/t.co\/qlc6uCeqBn","source":"\u003ca href=\"http:\/\/www.iha.com.tr\/istanbul\" rel=\"nofollow\"\u003e\u0130hlas Haber Ajans\u0131 \u0130stanbul\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732501398,"id_str":"732501398","name":"\u0130HA \u0130stanbul","screen_name":"iha_istanbul","location":null,"url":"http:\/\/www.iha.com.tr\/istanbul","description":"\u0130hlas Haber Ajans\u0131 \/ \u0130stanbul Haberleri","protected":false,"verified":false,"followers_count":919,"friends_count":1,"listed_count":12,"favourites_count":0,"statuses_count":79113,"created_at":"Thu Aug 02 09:18:22 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2458635882\/hs678j95nnvkwqg5b69d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2458635882\/hs678j95nnvkwqg5b69d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qlc6uCeqBn","expanded_url":"http:\/\/www.iha.com.tr\/istanbul-haberleri\/halicte-sahne-binbir-gece-kapilarini-aciyor-istanbul-1221632\/","display_url":"iha.com.tr\/istanbul-haber\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qlc6uCeqBn","expanded_url":"http:\/\/www.iha.com.tr\/istanbul-haberleri\/halicte-sahne-binbir-gece-kapilarini-aciyor-istanbul-1221632\/","display_url":"iha.com.tr\/istanbul-haber\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"iha_istanbul","name":"\u0130HA \u0130stanbul","id":732501398,"id_str":"732501398","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898537984,"id_str":"663727623898537984","text":"RT @barcastuff: Cartoon: La Liga top scorer race #fcblive [goal via @farhanyd] https:\/\/t.co\/t0S40CnlY8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2455186696,"id_str":"2455186696","name":"Josh","screen_name":"Josh96LFC","location":null,"url":null,"description":"LFC","protected":false,"verified":false,"followers_count":732,"friends_count":648,"listed_count":6,"favourites_count":1510,"statuses_count":14530,"created_at":"Wed Apr 02 14:53:36 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"050000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663332960029024256\/gyUwn-dq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663332960029024256\/gyUwn-dq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2455186696\/1446308239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:31:40 +0000 2015","id":663680348434382848,"id_str":"663680348434382848","text":"Cartoon: La Liga top scorer race #fcblive [goal via @farhanyd] https:\/\/t.co\/t0S40CnlY8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38742405,"id_str":"38742405","name":"barcastuff","screen_name":"barcastuff","location":null,"url":"http:\/\/unicef.org","description":"FC Barcelona. Bar\u00e7a. A bit of news and stats, pictures and videos. The original countdown to the games. And one question every day. Inventor of [via ...]","protected":false,"verified":false,"followers_count":446002,"friends_count":0,"listed_count":4848,"favourites_count":3556,"statuses_count":206090,"created_at":"Fri May 08 20:55:26 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/309654707\/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/309654707\/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":347,"favorite_count":242,"entities":{"hashtags":[{"text":"fcblive","indices":[33,41]}],"urls":[],"user_mentions":[{"screen_name":"FarhanYd","name":"Farhan Jihad","id":439827185,"id_str":"439827185","indices":[52,61]}],"symbols":[],"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"extended_entities":{"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fcblive","indices":[49,57]}],"urls":[],"user_mentions":[{"screen_name":"barcastuff","name":"barcastuff","id":38742405,"id_str":"38742405","indices":[3,14]},{"screen_name":"FarhanYd","name":"Farhan Jihad","id":439827185,"id_str":"439827185","indices":[68,77]}],"symbols":[],"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"extended_entities":{"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971657"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932149760,"id_str":"663727623932149760","text":"RT @matger_yara: #\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631\ud83d\ude31#\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647\ud83d\udc4f\ud83c\udffb\n#\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270 https:\/\/t.co\/hK\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18840530,"id_str":"18840530","name":"MOATH 228k","screen_name":"FU03","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":"http:\/\/e-saudia.net","description":"\u200f\u0623\u0643\u0628\u0631 \u0645\u062c\u0645\u0648\u0639\u0629 \u062d\u0633\u0627\u0628\u0627\u062a \u0645\u062a\u062e\u0635\u0635\u0629 \u0644\u0646\u0634\u0631 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0648\u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0648\u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0639\u0628\u0631 \u062a\u0648\u064a\u062a\u0631 \u0644\u064a\u0635\u0644 \u0645\u0646\u062a\u062c\u0643 \u0644\u0627\u0643\u062b\u0631 \u0645\u0646 \u0662\u0665 \u0645\u0644\u064a\u0648\u0646 \u0645\u062a\u0627\u0628\u0639 00966509026383 \u0628\u0627\u062f\u0631\u0627\u0629 \u2066@e_saudia0\u2069","protected":false,"verified":false,"followers_count":221598,"friends_count":140659,"listed_count":301,"favourites_count":7,"statuses_count":355265,"created_at":"Sat Jan 10 17:44:15 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478866291655069696\/COPyRlXR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478866291655069696\/COPyRlXR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18840530\/1403005621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:52:51 +0000 2015","id":663504485319331840,"id_str":"663504485319331840","text":"#\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631\ud83d\ude31#\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647\ud83d\udc4f\ud83c\udffb\n#\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270 https:\/\/t.co\/hK2TJAoFiZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2612707609,"id_str":"2612707609","name":"\u0645\u062a\u062c\u0631 \u064a\u0627\u0631\u0627 50k","screen_name":"matger_yara","location":null,"url":null,"description":"\u062d\u064a\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u062c\u0645\u064a\u064a\u0639 \u0644\u0637\u0644\u0628 \u062a\u0641\u0636\u0644 \u0639\u0644\u0649 \u0627\u0644\u0648\u0627\u062a\u0633 \/ 0576316270 \u0648\u0644\u062a\u0628\u0627\u062f\u0644 \u062d\u064a\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u0639\u0644\u0649 \u062d\u0633\u0627\u0628\u064a \/ @mystor4 \/\u0648\u0627\u0644\u062b\u0627\u0646\u064a @mystor5 \/ \u0627\u062a\u0634\u0631\u0641 \u0628\u0627\u0644\u062a\u0628\u0627\u062f\u0644 \u0645\u0639 \u0627\u0644\u062c\u0645\u064a\u064a\u0639","protected":false,"verified":false,"followers_count":32941,"friends_count":30197,"listed_count":11,"favourites_count":12,"statuses_count":12573,"created_at":"Wed Jul 09 01:04:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602675500285231104\/BaROPhFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602675500285231104\/BaROPhFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2612707609\/1432524791","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":3,"entities":{"hashtags":[{"text":"\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631","indices":[0,15]},{"text":"\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647","indices":[16,47]},{"text":"\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270","indices":[50,106]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504446962458624,"id_str":"663504446962458624","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504447180562432,"id_str":"663504447180562432","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504447423840256,"id_str":"663504447423840256","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"medium":{"w":600,"h":668,"resize":"fit"},"large":{"w":848,"h":945,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631","indices":[17,32]},{"text":"\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647","indices":[33,64]},{"text":"\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270","indices":[67,123]}],"urls":[],"user_mentions":[{"screen_name":"matger_yara","name":"\u0645\u062a\u062c\u0631 \u064a\u0627\u0631\u0627 50k","id":2612707609,"id_str":"2612707609","indices":[3,15]}],"symbols":[],"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"}]},"extended_entities":{"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504446962458624,"id_str":"663504446962458624","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504447180562432,"id_str":"663504447180562432","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504447423840256,"id_str":"663504447423840256","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"medium":{"w":600,"h":668,"resize":"fit"},"large":{"w":848,"h":945,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936307204,"id_str":"663727623936307204","text":"RT @Trigga_Tray28: Thank you Lord for another day !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159693587,"id_str":"159693587","name":"B. Rogers","screen_name":"i_Call_itHow_iC","location":"Opelika, AL","url":null,"description":"Even On My Weakest Days, I Get Stronger.","protected":false,"verified":false,"followers_count":1858,"friends_count":1897,"listed_count":1,"favourites_count":7434,"statuses_count":67501,"created_at":"Sat Jun 26 02:47:10 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661025040574636032\/DGLD5C-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661025040574636032\/DGLD5C-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159693587\/1430443163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:21 +0000 2015","id":663718269564620800,"id_str":"663718269564620800","text":"Thank you Lord for another day !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338122611,"id_str":"338122611","name":"TriggaTray","screen_name":"Trigga_Tray28","location":null,"url":null,"description":"God First - Family Before All- Safety for Auburn University","protected":false,"verified":false,"followers_count":13255,"friends_count":531,"listed_count":94,"favourites_count":7632,"statuses_count":26653,"created_at":"Tue Jul 19 03:28:20 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659212819880112128\/jDS_Pbly_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659212819880112128\/jDS_Pbly_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338122611\/1441514170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Trigga_Tray28","name":"TriggaTray","id":338122611,"id_str":"338122611","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902744580,"id_str":"663727623902744580","text":"RT @bradocrvg: Quem cantar ol\u00ea ol\u00ea ol\u00ea vai entrar na porrada, \u00e9 pra ficar sem voz, pra arrebentar a veia do pesco\u00e7o, deixar o goleiro deles\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3374325635,"id_str":"3374325635","name":"Will \u2720","screen_name":"WilliamFa22","location":"Rio de Janeiro, Brasil","url":null,"description":"Whats: 991537690","protected":false,"verified":false,"followers_count":240,"friends_count":183,"listed_count":0,"favourites_count":1231,"statuses_count":3573,"created_at":"Mon Jul 13 17:39:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661179986037088256\/9j6UK8Ht_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661179986037088256\/9j6UK8Ht_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3374325635\/1440709137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:17 +0000 2015","id":663724796388245505,"id_str":"663724796388245505","text":"Quem cantar ol\u00ea ol\u00ea ol\u00ea vai entrar na porrada, \u00e9 pra ficar sem voz, pra arrebentar a veia do pesco\u00e7o, deixar o goleiro deles cego com laser.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724489415467008,"in_reply_to_status_id_str":"663724489415467008","in_reply_to_user_id":636338034,"in_reply_to_user_id_str":"636338034","in_reply_to_screen_name":"bradocrvg","user":{"id":636338034,"id_str":"636338034","name":"Alan Brado \u2720","screen_name":"bradocrvg","location":"30\/10","url":null,"description":"#EuEscolhiAcreditar | @CrvgSol \u2665\ufe0f","protected":false,"verified":false,"followers_count":2539,"friends_count":946,"listed_count":2,"favourites_count":5043,"statuses_count":64156,"created_at":"Sun Jul 15 15:36:24 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656181040797589504\/9EKdAEQu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656181040797589504\/9EKdAEQu.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663356471334313984\/VvXKY6hp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663356471334313984\/VvXKY6hp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636338034\/1446859921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bradocrvg","name":"Alan Brado \u2720","id":636338034,"id_str":"636338034","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902797824,"id_str":"663727623902797824","text":"Imma_lonely_: gerald312garcia: sandyayala09: KOREAdorables: shielarniebaby: kbdpftcris30: immadam_angelo: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091527220,"id_str":"4091527220","name":"Xander Ayala","screen_name":"AyalaXander","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":12,"listed_count":6,"favourites_count":2,"statuses_count":18777,"created_at":"Sun Nov 01 14:19:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[106,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923625985,"id_str":"663727623923625985","text":"\u30d3\u30ae\u30a8\u30f3\u306f\u7f6a","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128186663,"id_str":"128186663","name":"\u795e\u7121\uff20\u3057\u3087\u3070\u308d\u4e8c\u671f\u6c7a\u5b9a\uff01","screen_name":"kanna_kk","location":"\u51fa\u96631-3\u2192\u5bb6\u755c\u2192SHK\u2190\u5b89\u82b8\u2190\u30eb\u30af\u30bb\u30f3\u30c0\u30eb\u30af","url":"http:\/\/twpf.jp\/kanna_kk","description":"\u6210\u4eba\u6e08\/\u30a2\u30cb\u30e1\u30b2\u30fc\u30e0\u7279\u64ae\/SB69\u5bb6\u755c\u51fa\u8377\u6e08\u307f\/\u6700\u8fd1\u306fFate\/GO\u3084\u3063\u3066\u308b\/\u6803\u6728\u30ed\u30fc\u30e9\u30f3(SH\uff65LH)\/\u3068\u3046\u3089\u3076\u4f0a\u9054\u7d44\u9db4\u4e38\u8fd1\u4f8d\/\u30d6\u30ec\u30bb\u30ab\u30d7\u30ec\u30a4\u4e2d\/BSR\u6368\u3066\u99d2+\u77f3\u7530\u4e3b\u5f93\/\u9032\u6483(\u5175\u9577)\/\u738b.\u56fd.\u5fc3\/\u30c7\u30e5\u30e9\/\u591c\u685c\/\u5358\u8eca\u4e57\u308a(\u96fb\u8eca\u301c\u8eca)\/aph\/BLNL\u5922\u597d\u304d\u57fa\u672c\u96d1\u98df\/\u203b\u8150\u767a\u8a00\u6709\u6ce8\u610f\/\u8a73\u7d30\u306f\uff82\uff72\uff8c\uff68\uff70\uff99\u306b\u3082","protected":false,"verified":false,"followers_count":275,"friends_count":697,"listed_count":14,"favourites_count":5525,"statuses_count":125044,"created_at":"Wed Mar 31 10:51:33 +0000 2010","utc_offset":32400,"time_zone":"Asia\/Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647180459433062400\/W-MZZNcK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647180459433062400\/W-MZZNcK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128186663\/1410187656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623906926592,"id_str":"663727623906926592","text":"RT bondappetit02 #sharing is the new economy #nomnom #foodporn #food #blog https:\/\/t.co\/zwxk3JhZCG","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278791459,"id_str":"3278791459","name":"Fondue","screen_name":"gofondue","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":317,"friends_count":6,"listed_count":849,"favourites_count":0,"statuses_count":284623,"created_at":"Mon Jul 13 17:19:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sharing","indices":[17,25]},{"text":"nomnom","indices":[45,52]},{"text":"foodporn","indices":[53,62]},{"text":"food","indices":[63,68]},{"text":"blog","indices":[69,74]}],"urls":[{"url":"https:\/\/t.co\/zwxk3JhZCG","expanded_url":"http:\/\/ow.ly\/UoKQ4","display_url":"ow.ly\/UoKQ4","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971659"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623931990016,"id_str":"663727623931990016","text":"RT @xDeAsiaa_: A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473364180,"id_str":"2473364180","name":"Kaitlyn","screen_name":"shesapeterson","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":118,"friends_count":136,"listed_count":0,"favourites_count":2121,"statuses_count":2569,"created_at":"Fri May 02 03:06:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656587543337500672\/gEGHWqG-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656587543337500672\/gEGHWqG-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473364180\/1446687633","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 18:36:02 +0000 2015","id":661612817364205568,"id_str":"661612817364205568","text":"A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368395273,"id_str":"2368395273","name":"SC: xdeasiaa\u2734","screen_name":"xDeAsiaa_","location":"419 | 937","url":"http:\/\/ftr.io\/r\/71O1UX91","description":"Retweet ALL My Favorites","protected":false,"verified":false,"followers_count":29758,"friends_count":19442,"listed_count":46,"favourites_count":94,"statuses_count":12046,"created_at":"Thu Feb 27 06:27:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368395273\/1427639965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1947,"favorite_count":1540,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xDeAsiaa_","name":"SC: xdeasiaa\u2734","id":2368395273,"id_str":"2368395273","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911157760,"id_str":"663727623911157760","text":"@cigarettekhan ty","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727360253034496,"in_reply_to_status_id_str":"663727360253034496","in_reply_to_user_id":3247961874,"in_reply_to_user_id_str":"3247961874","in_reply_to_screen_name":"cigarettekhan","user":{"id":3136571580,"id_str":"3136571580","name":"Ashiff__aasi","screen_name":"AssiAshiff","location":"Lahore, Pakistan","url":null,"description":"to touch is to heal. to hurt is to steal. let's heal...\n\n\n\n\n\nIG: Ashiff__assi","protected":false,"verified":false,"followers_count":2296,"friends_count":82,"listed_count":32,"favourites_count":15090,"statuses_count":21665,"created_at":"Fri Apr 03 16:29:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726148896096256\/ZmOknofN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726148896096256\/ZmOknofN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3136571580\/1446542281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cigarettekhan","name":"Micky","id":3247961874,"id_str":"3247961874","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927758848,"id_str":"663727623927758848","text":"\u53ef\u80fd\u6027\u306e\u7363","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418749562,"id_str":"2418749562","name":"\u767d\u7c73\u30d0\u30ed\u30c3\u30af","screen_name":"ancientdragon22","location":"\u5927\u962a\u2192\u611b\u5a9b","url":null,"description":"\u611b\u5a9b\u3067\u72ec\u308a\u66ae\u3057\u306e\u5927\u5b66\u751f\u3001\u6c7a\u95d8\u8005\u3001\u30d5\u30ea\u30fc\u30b2\u30fc\u597d\u304d\u3001\u6cd5\u5f8b\u3092\u52c9\u5f37\u4e2d\u3001\u30d9\u30fc\u30c0\u30fc\u3001\u9b54\u8853\u30af\u30e9\u30d5\u30bf\u30fc\u3001\u840c\u7814\u306e\u7dcf\u88c1\u3001\u653f\u6cbb\u30c4\u30a4\u30fc\u30c8\u591a\u76ee\u3067\u7533\u3057\u8a33\u306a\u3044","protected":false,"verified":false,"followers_count":243,"friends_count":820,"listed_count":5,"favourites_count":7323,"statuses_count":27120,"created_at":"Sun Mar 30 09:27:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566732985861287936\/nQYQk6-n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566732985861287936\/nQYQk6-n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2418749562\/1417383107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971664"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623931977728,"id_str":"663727623931977728","text":"Lo que se descuida simplemente se pierde.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3723755477,"id_str":"3723755477","name":"leonel fochesatto","screen_name":"leonel_foche","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":121,"listed_count":0,"favourites_count":51,"statuses_count":161,"created_at":"Mon Sep 21 02:28:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656886042604228608\/xkaprVr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656886042604228608\/xkaprVr__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3723755477\/1442803445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932133376,"id_str":"663727623932133376","text":"@shahdona3 \n\u0639\u0637\u0648\u0627 \u0633\u062f\u0627\u062d \u0641\u0631\u0635\u0647 \u064a\u0627\u062e\u064a \ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723722008887296,"in_reply_to_status_id_str":"663723722008887296","in_reply_to_user_id":862369303,"in_reply_to_user_id_str":"862369303","in_reply_to_screen_name":"shahdona3","user":{"id":3627152606,"id_str":"3627152606","name":"\u064a\u0648\u0633\u0641","screen_name":"kaaaghad","location":"\u064a\u0648\u0633\u0641 \u0628\u0646 \u0627\u0633\u062f \u0628\u0646 \u0631\u0628\u064a\u0639\u0647 \u0628\u0646 \u0646\u0632\u0627\u0631 ","url":null,"description":"\u062c\u062f\u064a\u062f \u0641\u064a \u0639\u0627\u0644\u0645 \u062a\u0648\u064a\u062a\u0631 \u0642\u062f\u064a\u0645 \u0641\u064a \u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u062d\u0648\u0627\u0631 \u0627\u0644\u0647\u0627\u062f\u0641 .. \u0627\u062e\u0637\u064a\u0621 \u0648\u0627\u0635\u064a\u0628 .. \u0645\u0639\u062a\u062f\u0644 \u0641\u064a \u0643\u0644 \u0634\u064a\u0621 .. \u0644\u0627 \u0627\u063a\u0636\u0628 \u0627\u0644\u0627 \u0644\u0644\u0647 \u0648\u0631\u0633\u0648\u0644\u0647 \ufdfa \u0648\u062f\u064a\u0646\u064a .. \u0627\u0646 \u0644\u0645 \u0627\u0643\u0646 \u0635\u062f\u064a\u0642\u0627\u064b \u0644\u0643 \u0641\u0644\u0646 \u0627\u0643\u0648\u0646 \u0639\u062f\u0648\u0627. CA","protected":false,"verified":false,"followers_count":108,"friends_count":17,"listed_count":0,"favourites_count":4,"statuses_count":3932,"created_at":"Sun Sep 20 13:16:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658104165596573697\/ExkazsDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658104165596573697\/ExkazsDr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3627152606\/1446472002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shahdona3","name":"\u0634\u0653\u0647\u0648\u062f\u064a","id":862369303,"id_str":"862369303","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932002304,"id_str":"663727623932002304","text":"RT @d_lais0415: \u7121\u511f\u63d0\u4f9b\u2728\n\n\u89aa\u5b50\u53c2\u6226\u3057\u305f\u30c4\u30a2\u30fc\u306e\u6bcd\u306e\u5206\u306e\n\u30da\u30f3\u30e9\u30a4\u30c8\u7121\u511f\u3067\u304a\u8b72\u308a\u3057\u307e\u3059\u2934\n\n\u8a73\u3057\u304f\u306f\u753b\u50cf3,4\u679a\u76ee\u3092\u898b\u3066\u306d\u4e09\u250f( ^o^)\u251b\n\n#jump_\u8b72 https:\/\/t.co\/BpN3fICqRh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2248609050,"id_str":"2248609050","name":"emily","screen_name":"emily0611kei","location":"\u2601\u5922\u306f\u4f0a\u91ce\u5c3e\u306e\u307e\u3086\u3052\u306b\u306a\u308b\u3053\u3068\u2601","url":null,"description":"!!!\u2654 \u8eca\u9b42\u5bae\u57ce\u521d\u65e5\u53c2\u6226\u6e08 \u2654!!!\n\u30a8\u30df\u3086\u304d9\/5\u2192@Keito_toLove\n\uff8c\uff6b\uff9b\uff9c\uff70\u3055\u3093\u306f\u5927\u5207\u2113\u03c3\u03bd\u0454\u2661\n\uff98\uff8c\uff9f\u3067\uff8c\uff6b\uff9b\uff8a\uff9e\u1559( \u02d9-\u02d9 )\u1557\n\u30b5\u30d6\u57a2\u261e@emily0611keib\n\u4e0b\u30cd\u30bf\u57a2\u261e@emily0611keikei\n201510\/31\u3089\u3058\u3089\u30fc\u4f0a\u91ce\u5c3e\u3055\u3093\u306b\u8aad\u307e\u308c\u305f\u3063\u305f\u3002","protected":false,"verified":false,"followers_count":931,"friends_count":634,"listed_count":9,"favourites_count":6227,"statuses_count":13033,"created_at":"Mon Dec 16 11:29:04 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598744560898945025\/DxLj1gYS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598744560898945025\/DxLj1gYS.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726861176868865\/yVaK8-kH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726861176868865\/yVaK8-kH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2248609050\/1446035056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:00:12 +0000 2015","id":663642231425794048,"id_str":"663642231425794048","text":"\u7121\u511f\u63d0\u4f9b\u2728\n\n\u89aa\u5b50\u53c2\u6226\u3057\u305f\u30c4\u30a2\u30fc\u306e\u6bcd\u306e\u5206\u306e\n\u30da\u30f3\u30e9\u30a4\u30c8\u7121\u511f\u3067\u304a\u8b72\u308a\u3057\u307e\u3059\u2934\n\n\u8a73\u3057\u304f\u306f\u753b\u50cf3,4\u679a\u76ee\u3092\u898b\u3066\u306d\u4e09\u250f( ^o^)\u251b\n\n#jump_\u8b72 https:\/\/t.co\/BpN3fICqRh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3379327152,"id_str":"3379327152","name":"\u3010\u65b0\u57a2\u3011\u2601\u6709\u5ca1\u30e9\u30a4\u30b9\u2601\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057","screen_name":"d_lais0415","location":"\u304a\u3053\u3061\u3083\u307e\u30a2\u30a4\u30c9\u30eb","url":null,"description":"\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\ufe4f\n\u9060\u5f81\u2708\u3000\u3000Next\u21dd \u30ab\u30a6\u30b3\u30f3\n\u4e09\u5ea6\u306e\u98ef\u3088\u308a\u6709\u5ca1\u5927\u8cb4\u3002","protected":false,"verified":false,"followers_count":353,"friends_count":196,"listed_count":0,"favourites_count":281,"statuses_count":371,"created_at":"Sat Aug 29 07:51:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663509053922869248\/Hp3j39Hg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663509053922869248\/Hp3j39Hg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3379327152\/1447034522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":31,"entities":{"hashtags":[{"text":"jump_\u8b72","indices":[65,72]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663642148407934977,"id_str":"663642148407934977","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663642148407934977,"id_str":"663642148407934977","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":663642167148081153,"id_str":"663642167148081153","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7CO7U8AEmyqX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7CO7U8AEmyqX.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":568,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}}},{"id":663642188002148353,"id_str":"663642188002148353","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7DcnUwAEjV9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7DcnUwAEjV9L.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"large":{"w":809,"h":1024,"resize":"fit"},"small":{"w":340,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":759,"resize":"fit"}}},{"id":663642208323567616,"id_str":"663642208323567616","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7EoUVAAAUlOH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7EoUVAAAUlOH.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":784,"resize":"fit"},"large":{"w":783,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"jump_\u8b72","indices":[81,88]}],"urls":[],"user_mentions":[{"screen_name":"d_lais0415","name":"\u3010\u65b0\u57a2\u3011\u2601\u6709\u5ca1\u30e9\u30a4\u30b9\u2601\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057","id":3379327152,"id_str":"3379327152","indices":[3,14]}],"symbols":[],"media":[{"id":663642148407934977,"id_str":"663642148407934977","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663642231425794048,"source_status_id_str":"663642231425794048","source_user_id":3379327152,"source_user_id_str":"3379327152"}]},"extended_entities":{"media":[{"id":663642148407934977,"id_str":"663642148407934977","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7BJHVAAEn8WK.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663642231425794048,"source_status_id_str":"663642231425794048","source_user_id":3379327152,"source_user_id_str":"3379327152"},{"id":663642167148081153,"id_str":"663642167148081153","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7CO7U8AEmyqX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7CO7U8AEmyqX.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":568,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":663642231425794048,"source_status_id_str":"663642231425794048","source_user_id":3379327152,"source_user_id_str":"3379327152"},{"id":663642188002148353,"id_str":"663642188002148353","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7DcnUwAEjV9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7DcnUwAEjV9L.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"large":{"w":809,"h":1024,"resize":"fit"},"small":{"w":340,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":759,"resize":"fit"}},"source_status_id":663642231425794048,"source_status_id_str":"663642231425794048","source_user_id":3379327152,"source_user_id_str":"3379327152"},{"id":663642208323567616,"id_str":"663642208323567616","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7EoUVAAAUlOH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7EoUVAAAUlOH.jpg","url":"https:\/\/t.co\/BpN3fICqRh","display_url":"pic.twitter.com\/BpN3fICqRh","expanded_url":"http:\/\/twitter.com\/d_lais0415\/status\/663642231425794048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":784,"resize":"fit"},"large":{"w":783,"h":1024,"resize":"fit"}},"source_status_id":663642231425794048,"source_status_id_str":"663642231425794048","source_user_id":3379327152,"source_user_id_str":"3379327152"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898468352,"id_str":"663727623898468352","text":"RT @PERTLISM: \u0e19\u0e48\u0e32\u0e40\u0e2a\u0e35\u0e22\u0e14\u0e32\u0e22\n\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e19\u0e21\u0e31\u0e19\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294411360,"id_str":"294411360","name":"\u0e2b\u0e19\u0e39\u0e21\u0e32\u0e25\u0e35","screen_name":"beamitaaa","location":null,"url":null,"description":"\u0e40\u0e23\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e41\u0e15\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e27\u0e14 | \u0e17\u0e27\u0e34\u0e15\u0e44\u0e1b\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e22\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 | \u0e1a\u0e48\u0e19\u0e1a\u0e49\u0e32\u0e07\u0e40\u0e1e\u0e49\u0e2d\u0e1a\u0e49\u0e32\u0e07\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e1a\u0e49\u0e32\u0e07\u0e15\u0e32\u0e21\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c |","protected":false,"verified":false,"followers_count":201,"friends_count":200,"listed_count":1,"favourites_count":132,"statuses_count":30273,"created_at":"Sat May 07 03:15:22 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"90B8D4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"16B8E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662866111176687616\/R7iiKJmZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662866111176687616\/R7iiKJmZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294411360\/1443087750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:37:27 +0000 2015","id":663712001890254848,"id_str":"663712001890254848","text":"\u0e19\u0e48\u0e32\u0e40\u0e2a\u0e35\u0e22\u0e14\u0e32\u0e22\n\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e17\u0e35\u0e48\u0e44\u0e14\u0e49\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e19\u0e21\u0e31\u0e19\u0e2a\u0e31\u0e49\u0e19\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":982087333,"id_str":"982087333","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","screen_name":"PERTLISM","location":null,"url":null,"description":"| || feeling 100%|| \u0e16\u0e48\u0e32\u0e22\u0e23\u0e39\u0e1b\u0e40\u0e1b\u0e47\u0e19 \u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e40\u0e25\u0e48\u0e19\u0e17\u0e27\u0e34\u0e15\u0e44\u0e14\u0e49 SCCH#53 MAHIDOL | IG : f.perzeus","protected":false,"verified":false,"followers_count":91288,"friends_count":27,"listed_count":30,"favourites_count":5835,"statuses_count":53485,"created_at":"Sat Dec 01 08:07:31 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_tile":true,"profile_link_color":"5D615D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/982087333\/1446641002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2055,"favorite_count":307,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PERTLISM","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","id":982087333,"id_str":"982087333","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079971657"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927758849,"id_str":"663727623927758849","text":"\u0627\u0646\u0627\u0645 \u0645\u0627\u0641\u064a\u0646\u064a \u0634\u064a\u060c\u0627\u0642\u0648\u0645 \u062a\u0639\u0628 \u0627\u0644\u062f\u0646\u064a\u0627 \u0643\u0644\u0647 \u0641\u064a\u0646\u064a \u0648\u062a \u0630\u0627 \u0641\u0643.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2274994341,"id_str":"2274994341","name":"\u0635\u064c\u0648\u0644.","screen_name":"IIIIXC_","location":null,"url":null,"description":"@Alhilal_FC.","protected":false,"verified":false,"followers_count":252,"friends_count":62,"listed_count":0,"favourites_count":1371,"statuses_count":11452,"created_at":"Sat Jan 11 15:13:43 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663060295481466880\/smR4iZKX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663060295481466880\/smR4iZKX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2274994341\/1446921090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079971664"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623919415301,"id_str":"663727623919415301","text":"@germantokuhain \u306a\u3093\u3060\u308d\u306d\u3001\u3053\u306e\u6691\u3055w\n\u6700\u9069\u3067\u826f\u304b\u3063\u305f\u306a\u308a(*^^*)\n\n\u3044\u3044\u306a\u3001\u30d4\u30a2\u30ce\u306f\u9045\u304f\u306b\u306f\u51fa\u6765\u306a\u3044\u3067\u3059\uff08 ; ; \uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727073760903168,"in_reply_to_status_id_str":"663727073760903168","in_reply_to_user_id":110135006,"in_reply_to_user_id_str":"110135006","in_reply_to_screen_name":"germantokuhain","user":{"id":1907934691,"id_str":"1907934691","name":"\u3069\u306a@\u6211\u5b6b\u5b50\u56fd\u969b\u91ce\u5916\u7f8e\u8853\u5c55\u301c11\/8","screen_name":"donalinha222","location":null,"url":null,"description":"\u6e05\u6c34\u5b8f\u3001\u30ab\u30b5\u30f4\u30a7\u30c6\u30b9\u3001\u30d9\u30eb\u30a4\u30de\u30f3\u3001\u30ab\u30e9\u30c3\u30af\u30b9\u3001\u30ab\u30a6\u30ea\u30b9\u30de\u30ad\u3001\u30db\u30c9\u30ed\u30d5\u30b9\u30ad\u30fc\u3001\u30b0\u30b6\u30f4\u30a3\u30a8\u30c9\u30e9\u30f3\u2661 \u30d4\u30a2\u30ce\u306f\u30a8\u30f3\u30ea\u30b3\u30d4\u30a8\u30e9\u30cc\u30f3\u30c4\u30a4\u3001\u30ae\u30bf\u30fc\u306f\u30d1\u30c3\u30c8\u30de\u30eb\u30c6\u30a3\u30fc\u30ce\u3001\u30c8\u30e9\u30f3\u30da\u30c3\u30c8\u306f\u985e\u5bb6\u5fc3\u5e73\u2661 Flower Artist","protected":false,"verified":false,"followers_count":391,"friends_count":734,"listed_count":7,"favourites_count":5190,"statuses_count":9874,"created_at":"Thu Sep 26 13:27:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662408335941963776\/cguc6tOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662408335941963776\/cguc6tOf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1907934691\/1443806302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"germantokuhain","name":"\u30c9\u30a4\u30c4\u7279\u6d3e\u54e1","id":110135006,"id_str":"110135006","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971662"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936327680,"id_str":"663727623936327680","text":"@_leeeooo n\u00e3o sei, vc vai?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727523432439809,"in_reply_to_status_id_str":"663727523432439809","in_reply_to_user_id":1640529781,"in_reply_to_user_id_str":"1640529781","in_reply_to_screen_name":"_leeeooo","user":{"id":1292050304,"id_str":"1292050304","name":"tick","screen_name":"tiagosssbs","location":null,"url":null,"description":"snap: tickerson","protected":false,"verified":false,"followers_count":926,"friends_count":606,"listed_count":0,"favourites_count":5627,"statuses_count":28203,"created_at":"Sat Mar 23 17:38:05 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641708131727372288\/zHuYp3jd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641708131727372288\/zHuYp3jd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1292050304\/1446350079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"656f24f50d57f509","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/656f24f50d57f509.json","place_type":"city","name":"S\u00e3o Bento do Sul","full_name":"S\u00e3o Bento do Sul, Santa Catarina","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-49.490556,-26.426848],[-49.490556,-26.162182],[-49.168467,-26.162182],[-49.168467,-26.426848]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_leeeooo","name":"slaver slav","id":1640529781,"id_str":"1640529781","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898533892,"id_str":"663727623898533892","text":"A glimpse into the other side of my writing career: Ghostwriting Services https:\/\/t.co\/JOS4FBCXXk via @wordpressdotcom","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1135156405,"id_str":"1135156405","name":"R.F. Dunham","screen_name":"DunhamWriter","location":null,"url":"https:\/\/crossfirefiction.wordpress.com","description":"R.F. Dunham is a writer of fantasy and science fiction. His current work in progress is an alternative history novel called The Other Side of Hope.","protected":false,"verified":false,"followers_count":10,"friends_count":17,"listed_count":1,"favourites_count":0,"statuses_count":109,"created_at":"Wed Jan 30 20:38:57 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647062997622386688\/fc8PqFUm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647062997622386688\/fc8PqFUm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135156405\/1443103664","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JOS4FBCXXk","expanded_url":"http:\/\/wp.me\/P5fzeq-2m","display_url":"wp.me\/P5fzeq-2m","indices":[74,97]}],"user_mentions":[{"screen_name":"wordpressdotcom","name":"WordPress.com","id":823905,"id_str":"823905","indices":[102,118]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971657"} +{"delete":{"status":{"id":663727602952069120,"id_str":"663727602952069120","user_id":408899121,"user_id_str":"408899121"},"timestamp_ms":"1447079971729"}} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936147456,"id_str":"663727623936147456","text":"\u9811\u5f35\u3063\u3066\u63cf\u3044\u305f\u3068\u306f\u3044\u3048\u3001\u9069\u5f53\u306b\u3057\u3083\u3057\u3083\u30fc\u3063\u3068\u30dc\u30fc\u30eb\u30da\u30f3\u3067\u63cf\u3044\u305f\u3060\u3051\u3060\u304b\u3089\u9ed2\u76ee\u306a\u3044\u3051\u3069\u3001\u306a\u3044\u3051\u3069\uff01\n\u4e00\u6c17\u306b\u5973\u5b50\u9ad8\u751f\u7121\u7406\u306b\u306a\u3063\u305f\n\u8ddd\u96e2\u611f\u308f\u304b\u3093\u306a\u3044\n\uff22\uff22\uff21\u3060\u304b\u3089","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u753b\u9762\u306e\u3053\u3061\u3089\u5074\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286450064,"id_str":"286450064","name":"\u8776\uff20\u90e8\u5c4b\u306b\u97ff\u304d\u6e21\u308b\u30ab\u30eb\u30fc\u30a2\uff22\uff22\uff21","screen_name":"butterfly_1127","location":"\u3044\u3064\u3082\u3042\u306a\u305f\u306e\u5fc3\u306e\u4e2d\u306b","url":"http:\/\/twpf.jp\/butterfly_1127","description":"\u30de\u30b7\u30e5\u30de\u30ed\u7cfb\u5973\u5b50(\u6c38\u9060\u306e17\u6b73)","protected":false,"verified":false,"followers_count":156,"friends_count":140,"listed_count":5,"favourites_count":35487,"statuses_count":69236,"created_at":"Sat Apr 23 01:23:52 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000121540634\/eeb78765e628d4aef1157082832e1070.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000121540634\/eeb78765e628d4aef1157082832e1070.png","profile_background_tile":false,"profile_link_color":"D900FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610646856872235008\/wq5e3IfF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610646856872235008\/wq5e3IfF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/286450064\/1434424529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923630081,"id_str":"663727623923630081","text":"RT @s__a__m__A__r: \u0907\u0924\u0928\u0940 \u0932\u092e\u094d\u092c\u0940 \u090a\u092e\u094d\u0930 \u092e\u0924 \u092e\u093e\u0902\u0917 \u092e\u0947\u0930\u0947 \u0932\u093f\u090f*!! \n\u0910\u0938\u093e \u0928\u093e \u0939\u094b \u0915\u0940 \u0924\u0941\u092e \u092d\u0940 \u091b\u094b\u0921\u093c \u0926\u094b*!!! \n\u0914\u0930 \u092e\u0947\u0930\u0940 \u092e\u094c\u0924 \u092d\u0940 \u0928\u093e \u0906\u092f\u0947*!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3392873239,"id_str":"3392873239","name":"~ \u0905ru\u0928 ~","screen_name":"ramtaxjogi","location":"India","url":null,"description":"\u0930\u093e\u091c \u0924\u094b \u0939\u092e\u093e\u0930\u093e \u0939\u0930 \u091c\u0917\u0939 \u092a\u0947 \u0939\u0948\u2026!!\n \u092a\u0938\u0902\u0926 \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u094b\u0902 \u0915\u0947 \u201c\u0926\u093f\u0932\u201d \u092e\u0947\u0902 ; \u0914\u0930\n \u0928\u093e\u092a\u0938\u0902\u0926 \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u094b\u0902 \u0915\u0947 \u201c\u0926\u093f\u092e\u093e\u0917\u201d \u092e\u0947\u0902\u2026!! Proud #Rajput , #Leo by Birth \u007b My Tweets are in my Fav \u007d","protected":false,"verified":false,"followers_count":2317,"friends_count":3835,"listed_count":33,"favourites_count":3874,"statuses_count":18105,"created_at":"Sun Aug 30 13:01:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654609817894391808\/jwDTiH7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654609817894391808\/jwDTiH7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3392873239\/1445749883","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 04:02:59 +0000 2015","id":662842656666464256,"id_str":"662842656666464256","text":"\u0907\u0924\u0928\u0940 \u0932\u092e\u094d\u092c\u0940 \u090a\u092e\u094d\u0930 \u092e\u0924 \u092e\u093e\u0902\u0917 \u092e\u0947\u0930\u0947 \u0932\u093f\u090f*!! \n\u0910\u0938\u093e \u0928\u093e \u0939\u094b \u0915\u0940 \u0924\u0941\u092e \u092d\u0940 \u091b\u094b\u0921\u093c \u0926\u094b*!!! \n\u0914\u0930 \u092e\u0947\u0930\u0940 \u092e\u094c\u0924 \u092d\u0940 \u0928\u093e \u0906\u092f\u0947*!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3735364760,"id_str":"3735364760","name":"\u043di\u0442L\u044d\u044f\u2122","screen_name":"s__a__m__A__r","location":"Germany","url":"http:\/\/mobile.twitter.com\/s__a__m__A__r","description":"\u092e\u0947\u0902 \u0939\u093f\u091f\u0932\u0930 \u0935\u093f\u091a\u093e\u0930 \u0927\u093e\u0930\u093e \u0915 \u0939\u0941, nation first \u092e\u0947\u0930\u093e \u0938\u093f\u0926\u094d\u0927\u093e\u0928\u094d\u0924 \u0939\u0948, chating \u092e\u0941\u091d\u0947 \u092a\u0938\u0928\u094d\u0926 \u0928\u0939\u0940, \u0938\u093f\u0930\u094d\u092b \u0905\u092a\u0928\u0947 \u0915\u093e\u092e \u0938\u0947 \u092e\u0924\u0932\u092c \u0930\u0915\u0924\u093e \u0939\u0941, \u0915\u0920\u094b\u0930 \u0914\u0930 \u092a\u0924\u094d\u0925\u0930 \u0926\u093f\u0932 \u092d\u0940 \u0939\u0941,\u007b\u007b TWEET IN LIKE \u007d\u007d","protected":false,"verified":false,"followers_count":1168,"friends_count":156,"listed_count":12,"favourites_count":785,"statuses_count":23537,"created_at":"Wed Sep 30 09:26:44 +0000 2015","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662136664135876608\/pssDm_yA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662136664135876608\/pssDm_yA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3735364760\/1446822179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s__a__m__A__r","name":"\u043di\u0442L\u044d\u044f\u2122","id":3735364760,"id_str":"3735364760","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932149761,"id_str":"663727623932149761","text":"RT @AbuElbanaat: \u0627\u0644\u0645\u0638\u0644\u0648\u0645 \u0644\u064a\u0646 \u064a\u0623\u0633 \u0645\u0646 \u0631\u062f\u0639 \u0627\u0644\u0638\u0627\u0644\u0645\u061b\u064a\u064f\u062f\u0627\u0647\u0646\u0647 \u062d\u062a\u0649 \u064a\u064f\u062f\u0645\u0646 \u0638\u0644\u0645\u0647 \u0648\u064a\u0639\u0634\u0642\u0647 \u0648\u064a\u062a\u0634\u0628\u0651\u062b \u0628\u0633\u0627\u062f\u064a\u062a\u0647.!\n\n\u0647\u0630\u0627 \u0645\u0627 \u064a\u064f\u0631\u0627\u062f \u0644\u0628\u0646\u0627\u062a\u0646\u0627.!\n\n#\u062a\u0639\u062f\u062f_\u0627\u0644\u0632\u0648\u062c\u0627\u062a https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1619470764,"id_str":"1619470764","name":"Monad","screen_name":"shock360w","location":"UK","url":null,"description":"\u0644\u0642\u0646\u062a \u0641\u064a \u0639\u0635\u0631 \u0627\u0644\u0634\u0628\u0627\u0628 \u062d\u0642\u0627\u0626\u0642\u0627 \u0641\u064a \u0627\u0644\u062f\u064a\u0646 \u062a\u0642\u0635\u0631 \u062f\u0648\u0646\u0647\u0627 \u0627\u0644\u0627\u0641\u0647\u0627\u0645\u064f \u0641\u0644\u0645\u0627 \u0627\u0646\u0642\u0636\u0649 \u0639\u0635\u0631 \u0627\u0644\u0634\u0628\u0627\u0628 \u0648\u0637\u064a\u0634\u0647 \u0641\u0625\u0630\u0627 \u0627\u0644\u062d\u0642\u0627\u0626\u0642 \u0643\u0644\u0647\u0627 \u0627\u0648\u0647\u0627\u0645\u064f","protected":false,"verified":false,"followers_count":1495,"friends_count":2056,"listed_count":1,"favourites_count":7683,"statuses_count":15681,"created_at":"Thu Jul 25 05:22:19 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"010371","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624272341476970496\/MAVHiHG1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624272341476970496\/MAVHiHG1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1619470764\/1377202963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:46 +0000 2015","id":663714095477219328,"id_str":"663714095477219328","text":"\u0627\u0644\u0645\u0638\u0644\u0648\u0645 \u0644\u064a\u0646 \u064a\u0623\u0633 \u0645\u0646 \u0631\u062f\u0639 \u0627\u0644\u0638\u0627\u0644\u0645\u061b\u064a\u064f\u062f\u0627\u0647\u0646\u0647 \u062d\u062a\u0649 \u064a\u064f\u062f\u0645\u0646 \u0638\u0644\u0645\u0647 \u0648\u064a\u0639\u0634\u0642\u0647 \u0648\u064a\u062a\u0634\u0628\u0651\u062b \u0628\u0633\u0627\u062f\u064a\u062a\u0647.!\n\n\u0647\u0630\u0627 \u0645\u0627 \u064a\u064f\u0631\u0627\u062f \u0644\u0628\u0646\u0627\u062a\u0646\u0627.!\n\n#\u062a\u0639\u062f\u062f_\u0627\u0644\u0632\u0648\u062c\u0627\u062a https:\/\/t.co\/ywfTGTRwrS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891097064,"id_str":"891097064","name":"\u0623\u0628\u0648 \u0627\u0644\u0628\u0646\u0627\u062a","screen_name":"AbuElbanaat","location":"\u0627\u0644\u0631\u064a\u0627\u0636-(\u0633\u0627\u0643\u0646 \u0628\u0627\u0644\u0631\u0628\u0648\u0647 \u0643\u062f\u0628\u0651\u0648\u0633)","url":"https:\/\/www.youtube.com\/AbuElbanaat","description":"\u0623\u062d\u0627\u0648\u0644 \u0623\u0646 \u0623\u062a\u0645\u062b\u0644 \u0636\u0645\u064a\u0631\u0647\u0627 \u0627\u0644\u0646\u0627\u0637\u0642 .! \u0644\u0644\u062a\u0648\u0627\u0635\u0644 : aboualbanaat@hotmail.com \u0627\u0644\u0634\u0631\u0641\u0627\u0621 \u0627\u0644\u062c\u062f\u062f https:\/\/m.youtube.com\/#\/user\/AvcKSA?feature=watch #\u0625\u0633\u062a\u0637\u0644\u0627\u0639\u0627\u062a_\u0623\u0628\u0648\u0627\u0644\u0628\u0646\u0627\u062a","protected":false,"verified":false,"followers_count":38070,"friends_count":309,"listed_count":61,"favourites_count":703,"statuses_count":16173,"created_at":"Fri Oct 19 14:35:35 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/691543391\/12db0074c8a5ae58acd2fd4ddb42d1be.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/691543391\/12db0074c8a5ae58acd2fd4ddb42d1be.png","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593987245935210497\/wm-is-G__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593987245935210497\/wm-is-G__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891097064\/1430452570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[{"text":"\u062a\u0639\u062f\u062f_\u0627\u0644\u0632\u0648\u062c\u0627\u062a","indices":[103,116]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663714085402451968,"id_str":"663714085402451968","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","url":"https:\/\/t.co\/ywfTGTRwrS","display_url":"pic.twitter.com\/ywfTGTRwrS","expanded_url":"http:\/\/twitter.com\/AbuElbanaat\/status\/663714095477219328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":854,"h":544,"resize":"fit"},"medium":{"w":600,"h":381,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714085402451968,"id_str":"663714085402451968","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","url":"https:\/\/t.co\/ywfTGTRwrS","display_url":"pic.twitter.com\/ywfTGTRwrS","expanded_url":"http:\/\/twitter.com\/AbuElbanaat\/status\/663714095477219328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":854,"h":544,"resize":"fit"},"medium":{"w":600,"h":381,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062a\u0639\u062f\u062f_\u0627\u0644\u0632\u0648\u062c\u0627\u062a","indices":[120,133]}],"urls":[],"user_mentions":[{"screen_name":"AbuElbanaat","name":"\u0623\u0628\u0648 \u0627\u0644\u0628\u0646\u0627\u062a","id":891097064,"id_str":"891097064","indices":[3,15]}],"symbols":[],"media":[{"id":663714085402451968,"id_str":"663714085402451968","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","url":"https:\/\/t.co\/ywfTGTRwrS","display_url":"pic.twitter.com\/ywfTGTRwrS","expanded_url":"http:\/\/twitter.com\/AbuElbanaat\/status\/663714095477219328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":854,"h":544,"resize":"fit"},"medium":{"w":600,"h":381,"resize":"fit"}},"source_status_id":663714095477219328,"source_status_id_str":"663714095477219328","source_user_id":891097064,"source_user_id_str":"891097064"}]},"extended_entities":{"media":[{"id":663714085402451968,"id_str":"663714085402451968","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8cbTWIAAgekI.jpg","url":"https:\/\/t.co\/ywfTGTRwrS","display_url":"pic.twitter.com\/ywfTGTRwrS","expanded_url":"http:\/\/twitter.com\/AbuElbanaat\/status\/663714095477219328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":854,"h":544,"resize":"fit"},"medium":{"w":600,"h":381,"resize":"fit"}},"source_status_id":663714095477219328,"source_status_id_str":"663714095477219328","source_user_id":891097064,"source_user_id_str":"891097064"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932092416,"id_str":"663727623932092416","text":"RT @Micks_Got_Kicks: What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2280075865,"id_str":"2280075865","name":"Lil Trigga Krizzy","screen_name":"Kraelynn","location":"Snapchat @Kraelynn ","url":null,"description":null,"protected":false,"verified":false,"followers_count":9033,"friends_count":6311,"listed_count":7,"favourites_count":228,"statuses_count":37859,"created_at":"Tue Jan 07 05:15:33 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164475290\/JUWjTvCx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164475290\/JUWjTvCx.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661980632864702464\/P9q3GBJX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661980632864702464\/P9q3GBJX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2280075865\/1446663457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:29 +0000 2015","id":663726607534723072,"id_str":"663726607534723072","text":"What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142677463,"id_str":"4142677463","name":"Mick \u26a1\ufe0f","screen_name":"Micks_Got_Kicks","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":485,"friends_count":1884,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Sun Nov 08 15:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142677463\/1446999768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[76,99]}],"user_mentions":[{"screen_name":"Micks_Got_Kicks","name":"Mick \u26a1\ufe0f","id":4142677463,"id_str":"4142677463","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936172032,"id_str":"663727623936172032","text":"RT @sky_ri9c: \u304a\u3058\u3055\u3093\u2026\n\n https:\/\/t.co\/ovdtLGzHUY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235505656,"id_str":"235505656","name":"\u60a0\u6c70\u306f11\/15\u307e\u3067\u4f4e\u6d6e\u4e0a\u3057\u305f\u3044","screen_name":"yuuta551","location":"\u5bb6","url":"http:\/\/yaplog.jp\/kurenainoyuuta\/","description":"\u8150\u5973\u5b50\u3067\u3059\u3002\u305f\u307e\u306b\u4e0b\u54c1\u306a\u3053\u3068\u545f\u304d\u307e\u3059\u3002\u30b5\u30a6\u30b9\u30d1\u30fc\u30af\u518d\u71b1\u3002\u307f\u3093\u306a\u5927\u597d\u304d\u3001\u3067\u3082\u30af\u30ec\u30a4\u30b0\u3082\u3063\u3068\u597d\u304d\u3002\u30c1\u30ad\u30f3\u3067\u3059\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059_(\u2510\u300c\u03b5:)_pixiv\u3067\u3059\u2192http:\/\/touch.pixiv.net\/member.php?id=2476150\u30a2\u30a4\u30b3\u30f3 \uff06\u30d8\u30c3\u30c0\u30fc\u81ea\u4f5c \u8da3\u5473\u304c\u5408\u3046\u65b9\u3001\uff8c\uff6b\uff9b\uff70\uff90\uff70\uff01","protected":false,"verified":false,"followers_count":482,"friends_count":471,"listed_count":12,"favourites_count":4028,"statuses_count":13952,"created_at":"Sat Jan 08 10:44:09 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/688845485\/6645d1f0d12e35f47cc8aef9e8eca5e1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/688845485\/6645d1f0d12e35f47cc8aef9e8eca5e1.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663241092242911232\/k8iOhGAg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663241092242911232\/k8iOhGAg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/235505656\/1445072361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:00:39 +0000 2015","id":663310156495634433,"id_str":"663310156495634433","text":"\u304a\u3058\u3055\u3093\u2026\n\n https:\/\/t.co\/ovdtLGzHUY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572989374,"id_str":"2572989374","name":"R!ku@\u5b8c\u5168\u52dd\u5229","screen_name":"sky_ri9c","location":"\u7fa4\u99ac","url":null,"description":"\u9ad8\uff12\uff01\uff01r!ku\u3068\u7533\u3057\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30d0\u3088\u308d\u3057\u304f\u306d\u3002\u5168\u65e5\u672c\u3082\u3046\u5e30\u308a\u305f\u3044\u5354\u4f1a\u306e\u3082\u306e\u3067\u3059\u3002@sky_ri9u \u6210\u308a\u3059\u307e\u3057\u57a2\u306f\u7121\u4e8b\u51cd\u7d50\u3057\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u5354\u529b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305fm(_ _)m \u3053\u308c\u304b\u3089\u3082\u3088\u308d\u3057\u304f\u306d\u30fc\uff01\uff01","protected":false,"verified":false,"followers_count":73504,"friends_count":73253,"listed_count":151,"favourites_count":34658,"statuses_count":14811,"created_at":"Tue Jun 17 14:15:53 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661780512025894912\/8fPSz6N0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661780512025894912\/8fPSz6N0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572989374\/1446364408","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13653,"favorite_count":10825,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314"}]},"extended_entities":{"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314","video_info":{"aspect_ratio":[9,16],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/180x320\/8myg1OdTxYSEDhI-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/720x1280\/jWlz__w4F3hr91VG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sky_ri9c","name":"R!ku@\u5b8c\u5168\u52dd\u5229","id":2572989374,"id_str":"2572989374","indices":[3,12]}],"symbols":[],"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314"}]},"extended_entities":{"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314","video_info":{"aspect_ratio":[9,16],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/180x320\/8myg1OdTxYSEDhI-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/720x1280\/jWlz__w4F3hr91VG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923630080,"id_str":"663727623923630080","text":"@half_backlight \ub2e4\uc815\ud5c8\ub124 \uc624\ub298\ub530\ub77c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727477668188160,"in_reply_to_status_id_str":"663727477668188160","in_reply_to_user_id":2979984422,"in_reply_to_user_id_str":"2979984422","in_reply_to_screen_name":"half_backlight","user":{"id":3279120913,"id_str":"3279120913","name":"\uc7a1\ud0d5","screen_name":"jabtang_","location":"\ud50c\ud14d\uad6c\ub3c5\uc548\ubc1b\uc2b5\ub2c8\ub2e4","url":"http:\/\/bubblegumstudio.tumblr.com\/","description":"\uc815\uad6c\uc528@tang_jg","protected":false,"verified":false,"followers_count":284,"friends_count":253,"listed_count":4,"favourites_count":3544,"statuses_count":7304,"created_at":"Tue Jul 14 02:03:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662971088821850112\/9aqKZ_Bu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662971088821850112\/9aqKZ_Bu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279120913\/1445613871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"half_backlight","name":"\ubc14\ub2e5\ub4f1","id":2979984422,"id_str":"2979984422","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623931957248,"id_str":"663727623931957248","text":"@Kamalpr55283835 \ud83d\ude01\ud83d\ude01\ud83d\ude01 aacha launch.. \ud83d\ude03\ud83d\ude03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727453953617925,"in_reply_to_status_id_str":"663727453953617925","in_reply_to_user_id":458570404,"in_reply_to_user_id_str":"458570404","in_reply_to_screen_name":"Kamalpr55283835","user":{"id":100505622,"id_str":"100505622","name":"Shona2608","screen_name":"ssshonz","location":"New Delhi ","url":null,"description":"everything will be okay in the end. if it's not okay its not the end.","protected":false,"verified":false,"followers_count":1044,"friends_count":933,"listed_count":18,"favourites_count":49944,"statuses_count":31901,"created_at":"Wed Dec 30 14:08:23 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9E9E9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643946150140112896\/noWjdhNF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643946150140112896\/noWjdhNF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100505622\/1443696062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kamalpr55283835","name":"\u265aKAMALPREET S\u2763NGH\u265a","id":458570404,"id_str":"458570404","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898427392,"id_str":"663727623898427392","text":"@rikisa3 \u30de\u30b8\u304b\u3088\u62b1\u304d\u3057\u3081\u3066\u3047\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727376526761985,"in_reply_to_status_id_str":"663727376526761985","in_reply_to_user_id":999115488,"in_reply_to_user_id_str":"999115488","in_reply_to_screen_name":"rikisa3","user":{"id":1461223386,"id_str":"1461223386","name":"\u3075\u3041\u30fc\u3073\u30fc","screen_name":"fa_B0724","location":"\u304a\u3061\u3093\u3061\u3093\u30e9\u30f3\u30c9","url":null,"description":"\u4e16\u754c\u3092\u3075\u3041\u30fc\u3073\u30fc\u306b\u67d3\u3081\u308b\u3002","protected":false,"verified":false,"followers_count":319,"friends_count":555,"listed_count":6,"favourites_count":26538,"statuses_count":51445,"created_at":"Mon May 27 04:22:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588150032978878464\/HpDd647f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588150032978878464\/HpDd647f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1461223386\/1442900506","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rikisa3","name":"rikisa arisugi","id":999115488,"id_str":"999115488","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971657"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927930880,"id_str":"663727623927930880","text":"RT @mjlebanan: Liza TheMostBeautiful no doubt https:\/\/t.co\/69PPm2oEoh","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173237239,"id_str":"173237239","name":"lea montenegro","screen_name":"leaqmvandongen","location":"Rozenburg The Netherlands","url":null,"description":null,"protected":false,"verified":false,"followers_count":98,"friends_count":350,"listed_count":9,"favourites_count":87,"statuses_count":46440,"created_at":"Sat Jul 31 21:22:35 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658889266056007680\/_pTWmuBy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658889266056007680\/_pTWmuBy_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:00 +0000 2015","id":663726987899342849,"id_str":"663726987899342849","text":"Liza TheMostBeautiful no doubt https:\/\/t.co\/69PPm2oEoh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2338004893,"id_str":"2338004893","name":"Mikael_Jay","screen_name":"mjlebanan","location":"Tacurong, Soccsksargen","url":null,"description":"Proud LizQuen Fanboy| Ilonggo| Electrical Engineer","protected":false,"verified":false,"followers_count":117,"friends_count":257,"listed_count":4,"favourites_count":30,"statuses_count":2386,"created_at":"Tue Feb 11 08:22:54 +0000 2014","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639331871914983424\/i5kW_djr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639331871914983424\/i5kW_djr.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663546170787020800\/Jwwk9mJg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663546170787020800\/Jwwk9mJg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2338004893\/1445822889","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726986494218240,"id_str":"663726986494218240","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","url":"https:\/\/t.co\/69PPm2oEoh","display_url":"pic.twitter.com\/69PPm2oEoh","expanded_url":"http:\/\/twitter.com\/mjlebanan\/status\/663726987899342849\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726986494218240,"id_str":"663726986494218240","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","url":"https:\/\/t.co\/69PPm2oEoh","display_url":"pic.twitter.com\/69PPm2oEoh","expanded_url":"http:\/\/twitter.com\/mjlebanan\/status\/663726987899342849\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mjlebanan","name":"Mikael_Jay","id":2338004893,"id_str":"2338004893","indices":[3,13]}],"symbols":[],"media":[{"id":663726986494218240,"id_str":"663726986494218240","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","url":"https:\/\/t.co\/69PPm2oEoh","display_url":"pic.twitter.com\/69PPm2oEoh","expanded_url":"http:\/\/twitter.com\/mjlebanan\/status\/663726987899342849\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":663726987899342849,"source_status_id_str":"663726987899342849","source_user_id":2338004893,"source_user_id_str":"2338004893"}]},"extended_entities":{"media":[{"id":663726986494218240,"id_str":"663726986494218240","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILXnUEAAGhWO.jpg","url":"https:\/\/t.co\/69PPm2oEoh","display_url":"pic.twitter.com\/69PPm2oEoh","expanded_url":"http:\/\/twitter.com\/mjlebanan\/status\/663726987899342849\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":663726987899342849,"source_status_id_str":"663726987899342849","source_user_id":2338004893,"source_user_id_str":"2338004893"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971664"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911161856,"id_str":"663727623911161856","text":"RT @Micks_Got_Kicks: What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1896672614,"id_str":"1896672614","name":"badass_jamaican","screen_name":"kimeshawalters","location":"jamaica \u2708\ufe0f\u2708\ufe0flondon","url":null,"description":"I put god first humble \u2712\ufe0feducation=success \u2712\ufe0f I stay focus \u2734\ufe0flaw student\u2666\ufe0fig:unruly_jamaican\u2666\ufe0f #teamchelsea \u26bd\ufe0f #jop","protected":false,"verified":false,"followers_count":2447,"friends_count":1280,"listed_count":2,"favourites_count":1118,"statuses_count":6738,"created_at":"Mon Sep 23 08:48:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656575422168211456\/aWUcdmxD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656575422168211456\/aWUcdmxD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1896672614\/1446335005","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:29 +0000 2015","id":663726607534723072,"id_str":"663726607534723072","text":"What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142677463,"id_str":"4142677463","name":"Mick \u26a1\ufe0f","screen_name":"Micks_Got_Kicks","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":485,"friends_count":1884,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Sun Nov 08 15:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142677463\/1446999768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[76,99]}],"user_mentions":[{"screen_name":"Micks_Got_Kicks","name":"Mick \u26a1\ufe0f","id":4142677463,"id_str":"4142677463","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923703808,"id_str":"663727623923703808","text":"@iCum_HeCame wake up","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724808136499200,"in_reply_to_status_id_str":"663724808136499200","in_reply_to_user_id":357229440,"in_reply_to_user_id_str":"357229440","in_reply_to_screen_name":"iCum_HeCame","user":{"id":153140413,"id_str":"153140413","name":"Sevyn","screen_name":"kissesthenhugs","location":"ATL","url":null,"description":"follow back(:","protected":false,"verified":false,"followers_count":435,"friends_count":457,"listed_count":0,"favourites_count":48,"statuses_count":18773,"created_at":"Mon Jun 07 19:57:54 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0F0E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434441754\/lovee.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434441754\/lovee.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"877D87","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629121582796025856\/HMrcAsaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629121582796025856\/HMrcAsaA_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iCum_HeCame","name":"ThuG","id":357229440,"id_str":"357229440","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932022784,"id_str":"663727623932022784","text":"\u30b4\u30a2\u30de\u30ac\u30e9\u7d9a\u3044\u3066\u53c2\u6226\u304b\u3041\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":341251770,"id_str":"341251770","name":"\u30d2\u30b3\u30e9\u30fc","screen_name":"hikora3","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=143867","description":"HELLSING\u306e\u7d75\u3092\u3088\u304f\u63cf\u3044\u3066\u3044\u307e\u3059\u3002\r\n http:\/\/www.pixiv.net\/member.php?id=143867","protected":false,"verified":false,"followers_count":1227,"friends_count":1263,"listed_count":28,"favourites_count":468,"statuses_count":24040,"created_at":"Sun Jul 24 02:15:34 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504093861275136000\/aKL5dFyC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504093861275136000\/aKL5dFyC_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911170048,"id_str":"663727623911170048","text":"\ud83d\udcf7 https:\/\/t.co\/i3Nx6huJ9k","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1273631960,"id_str":"1273631960","name":"E M I L Y","screen_name":"elmzisflawless","location":null,"url":null,"description":"Beautybysiena is my sassqueen! Nina dobrev-Ian Somerhalder-Paul Wesley etc !!! VAMPIRE DIARIES + THE ORIGINALS + AMERICAN HORROR STORY ! Lohanthony is king!","protected":false,"verified":false,"followers_count":44,"friends_count":77,"listed_count":0,"favourites_count":98,"statuses_count":4854,"created_at":"Sun Mar 17 00:21:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000755760054\/98a40c3c2978fcda44295b50f45ba398_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000755760054\/98a40c3c2978fcda44295b50f45ba398_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1273631960\/1384751345","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/i3Nx6huJ9k","expanded_url":"http:\/\/tmblr.co\/ZbkPuq1xljr56","display_url":"tmblr.co\/ZbkPuq1xljr56","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623906787328,"id_str":"663727623906787328","text":"@MiedaVirgo ouhhh \ud83d\ude02 belum th10 lagi. kau cepat lah naik.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727257005899776,"in_reply_to_status_id_str":"663727257005899776","in_reply_to_user_id":587568560,"in_reply_to_user_id_str":"587568560","in_reply_to_screen_name":"MiedaVirgo","user":{"id":447631558,"id_str":"447631558","name":"\u2022 xdxh \u2022","screen_name":"RabieWeyaa","location":"selangorean ","url":null,"description":"september\/virgo","protected":false,"verified":false,"followers_count":627,"friends_count":224,"listed_count":2,"favourites_count":157,"statuses_count":29980,"created_at":"Tue Dec 27 03:27:09 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B40B43","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087102624\/b00a57408e837965a87818df5c113406.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087102624\/b00a57408e837965a87818df5c113406.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660691222562914305\/Jgru8fhA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660691222562914305\/Jgru8fhA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447631558\/1433328790","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MiedaVirgo","name":"Axxxxa","id":587568560,"id_str":"587568560","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079971659"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936184320,"id_str":"663727623936184320","text":"\ub2f5\uba58\ud558\ub7ec\uc653\uc2a4\uc6a9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2998465896,"id_str":"2998465896","name":"\uc218\uc5f0\uc4f0\u270b","screen_name":"suuuuuuu_0420","location":"\uc900\ud615\ub2d8 \ub9c8\uc74c \uc18d 0\ubc88\uc9c0","url":null,"description":"\ub108\ubb34 \ubc18\uc9dd\ubc18\uc9dd \ub208\uc774 \ubd80\uc154. (@joker891219)","protected":false,"verified":false,"followers_count":830,"friends_count":372,"listed_count":0,"favourites_count":185,"statuses_count":32920,"created_at":"Tue Jan 27 15:28:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660092558115147776\/CRyKsIup_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660092558115147776\/CRyKsIup_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998465896\/1434979391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915180033,"id_str":"663727623915180033","text":"@0824_naoto @y93t0z3 \u9ec4\u6d77\u3053\u306a\u3044\u306e\u306f\u307e\u3058\u3067\u3084\u3063\u3066\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727030584799232,"in_reply_to_status_id_str":"663727030584799232","in_reply_to_user_id":1328940602,"in_reply_to_user_id_str":"1328940602","in_reply_to_screen_name":"0824_naoto","user":{"id":404667848,"id_str":"404667848","name":"\u51fa\u53e3\u88d5\u7406","screen_name":"Mt_Degu","location":"\u30b3\u30ea\u30f3\u661f","url":null,"description":null,"protected":false,"verified":false,"followers_count":343,"friends_count":321,"listed_count":4,"favourites_count":456,"statuses_count":27845,"created_at":"Fri Nov 04 07:35:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2324186767\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2324186767\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0824_naoto","name":"\u306a\u304a\u3068@","id":1328940602,"id_str":"1328940602","indices":[0,11]},{"screen_name":"y93t0z3","name":"Y","id":549298815,"id_str":"549298815","indices":[12,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623919431680,"id_str":"663727623919431680","text":"@era_sana \u09a4\u09cb\u09ae\u09be\u09b0 \u09a1\u09bf\u09aa\u09bf \u098f\u09a4 \u09b9\u09be\u09b2\u09cd\u0995\u09be \u09af\u09c7 \u09a6\u09c7\u0996\u09be\u0987 \u09af\u09be\u09af\u09bc \u09a8\u09be! \u0986\u09ae\u09bf \u098f\u0995\u09ac\u09be\u09b0 \u09ad\u09be\u09ac\u09cd\u09b2\u09be\u09ae \u09ad\u09c1\u09b2\u09c7 \u0987\u09ae\u09c7\u099c \u099f\u09be\u09b0\u09cd\u09a8 \u0985\u09ab \u09b9\u09af\u09bc\u09c7 \u0997\u09c7\u09b8\u09c7! :-P","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727105205624833,"in_reply_to_status_id_str":"663727105205624833","in_reply_to_user_id":1579272211,"in_reply_to_user_id_str":"1579272211","in_reply_to_screen_name":"era_sana","user":{"id":589078750,"id_str":"589078750","name":"Aarohi","screen_name":"RArohi","location":" Bangladesh","url":null,"description":"Born on 12thJuly #ModerateMuslim #FutureCMA #ProudBangladeshi #MusicFreak #footballLover","protected":false,"verified":false,"followers_count":6302,"friends_count":168,"listed_count":21,"favourites_count":1693,"statuses_count":21487,"created_at":"Thu May 24 12:17:19 +0000 2012","utc_offset":21600,"time_zone":"Almaty","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663372145557291008\/NCCyqoYi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663372145557291008\/NCCyqoYi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/589078750\/1446574600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"era_sana","name":"Morsana Ahmed","id":1579272211,"id_str":"1579272211","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bn","timestamp_ms":"1447079971662"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902629888,"id_str":"663727623902629888","text":"\u3010\u7121\u6599\u9023\u8f09\u3011\u300cMAGiCO \u5acc\u308f\u308c\u8005\u306e\u8a93\u30442\u300d\u3092\u8aad\u307f\u307e\u3057\u305f\uff01|\u4eba\u6c17\u30de\u30f3\u30ac\u304c\u7121\u6599\u3067\u8aad\u3081\u308b\uff01LINE\u30de\u30f3\u30ac|\u4eca\u30b9\u30b0\u8aad\u3080\u2192 https:\/\/t.co\/6IzlFfyK2g #LINE\u30de\u30f3\u30ac","source":"\u003ca href=\"http:\/\/line.me\/ja\/family-apps\" rel=\"nofollow\"\u003eLINE \u30de\u30f3\u30ac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715472818,"id_str":"1715472818","name":"\u3086\u3046\u3068","screen_name":"matsu0818_03","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":40,"listed_count":0,"favourites_count":150,"statuses_count":240,"created_at":"Sat Aug 31 11:41:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493445169308368896\/ULQgtj5x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493445169308368896\/ULQgtj5x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715472818\/1387924013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LINE\u30de\u30f3\u30ac","indices":[83,91]}],"urls":[{"url":"https:\/\/t.co\/6IzlFfyK2g","expanded_url":"http:\/\/nav.cx\/polp4n","display_url":"nav.cx\/polp4n","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911043072,"id_str":"663727623911043072","text":"\u30cf\u30ea\u30a6\u30c3\u30c9\u7248\u300cAKIRA\u300d\u304c\u3001\u30af\u30ea\u30b9\u30c8\u30d5\u30a1\u30fc\u30fb\u30ce\u30fc\u30e9\u30f3\u3092\u8d77\u7528\u3057\u30663\u90e8\u4f5c\u306b\uff01\uff1f https:\/\/t.co\/ZDRCKOiyW2\u3000\u305f\u306e\u3080\u30fc\u76e3\u7763\u3057\u3066\u304f\u308c\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132346939,"id_str":"132346939","name":"\u9ed2\u4e95 \u5fc3\uff20\u51ac\u30b3\u30df\u4e09\u65e5\u76ee\u30e056b","screen_name":"kuroi_shin","location":"\u5199\u771f\u30683D\u306e\u72ed\u9593","url":"http:\/\/mo-ving.com\/","description":"VFX\u3068\u304b\u5909\u578b\u6620\u50cf\u3068\u304b\u3001\u5909\u306a\u6620\u50cf\u3070\u3063\u304b\u308a\u4f5c\u3063\u3066\u308b\u304a\u3063\u3055\u3093\u3002\u534a\u5b66\u751f\u30fb\u534a\u4ed5\u4e8b\u72b6\u614b\uff1f\u3000\u5275\u4f5c\u30b5\u30fc\u30af\u30eb\u300c\u308f\u304b\u3081\u30b9\u30bf\u30b8\u30aa\u300d\u4e3b\u50ac\u7684\u306a\u4f55\u304b\u3002 AfterEffects,NUKE,Cinema4D \u25a09\u6708- \u300c\u30d2\u30ed\u30a4\u30f3\u5931\u683c\u300d\u30b3\u30f3\u30dd\u30b8\u30c3\u30bf\u30fc","protected":false,"verified":false,"followers_count":2293,"friends_count":2454,"listed_count":165,"favourites_count":235,"statuses_count":153404,"created_at":"Tue Apr 13 00:29:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9A5700","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628992591925653504\/G3e_uCAD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628992591925653504\/G3e_uCAD.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637830795139284992\/D28Xt0xB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637830795139284992\/D28Xt0xB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132346939\/1438797705","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZDRCKOiyW2","expanded_url":"http:\/\/movie00.seesaa.net\/article\/427824504.html","display_url":"movie00.seesaa.net\/article\/427824\u2026","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898427393,"id_str":"663727623898427393","text":"RT @elpaiscat: \u00daLTIMA HORA | El Parlament aprova la proposta de resoluci\u00f3 independentista https:\/\/t.co\/uKTEVk5jFv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16536128,"id_str":"16536128","name":"C\u00e9sarBar\u00e7a #Triplete","screen_name":"cesarbarba","location":"Isla de la Pasi\u00f3n (Clipperton)","url":"http:\/\/vk.com\/cesarbarba","description":"Del @FCBarcelona_es desde 29\/11\/1899. Economista. Bienvenidos Cul\u00e9s #ViscaBar\u00e7a #FCB #Tripl3te #MueraLaCaverna","protected":false,"verified":false,"followers_count":1920,"friends_count":1283,"listed_count":31,"favourites_count":14364,"statuses_count":47582,"created_at":"Tue Sep 30 22:30:31 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609854099773718528\/G1f3FYU4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609854099773718528\/G1f3FYU4.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663569082105532416\/kOwfYMIJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663569082105532416\/kOwfYMIJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16536128\/1446666313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:14:03 +0000 2015","id":663675916158115840,"id_str":"663675916158115840","text":"\u00daLTIMA HORA | El Parlament aprova la proposta de resoluci\u00f3 independentista https:\/\/t.co\/uKTEVk5jFv","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2794243443,"id_str":"2794243443","name":"El Pa\u00eds Cat","screen_name":"elpaiscat","location":null,"url":"http:\/\/cat.elpais.com","description":"Diari global, digital, i en catal\u00e0","protected":false,"verified":true,"followers_count":11301,"friends_count":452,"listed_count":266,"favourites_count":126,"statuses_count":17737,"created_at":"Tue Sep 30 10:56:32 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517125176085848064\/N7K0WbZC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517125176085848064\/N7K0WbZC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2794243443\/1412127233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uKTEVk5jFv","expanded_url":"http:\/\/ow.ly\/Uptnj","display_url":"ow.ly\/Uptnj","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uKTEVk5jFv","expanded_url":"http:\/\/ow.ly\/Uptnj","display_url":"ow.ly\/Uptnj","indices":[90,113]}],"user_mentions":[{"screen_name":"elpaiscat","name":"El Pa\u00eds Cat","id":2794243443,"id_str":"2794243443","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971657"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936208896,"id_str":"663727623936208896","text":"\u30da\u30bf\u7d9a\u304f\u306e\u3067\u3059\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122056716,"id_str":"122056716","name":"\u306a\u306a\u3081","screen_name":"7other","location":null,"url":null,"description":"\u96d1\u98df\u3059\u304e\u3066\u81ea\u5206\u3067\u3082\u56f0\u3063\u3066\u3044\u307e\u3059\u3002\u3059\u3063\u304b\u308a\u6210\u4eba\u6e08\u3002\n\u624b\u4e0b\u306e\uff80\uff7a\u6c0f\u306b\u76f2\u76ee\u3059\u304e\u305f\u305f\u3081\u3042\u3068666\u5e74\u751f\u304d\u308b\uff8a\uff92\u306b\u306a\u308a\u307e\u3057\u305f\u3002\n\uff7a\uff84\uff9e\uff93\uff84\uff9e\uff97\uff7a\uff9e\uff9d\u3055\u3093\u306e\u57fc\u7389\u306e\uff71\uff99\uff83\uff68\uff92\uff6f\uff84\uff73\uff6a\uff8e\uff9f\uff9d\u3055\u3093\u306b\u3046\u3064\u3064\u3092\u629c\u304b\u3057\u3066\u3044\u307e\u3059\u3002\n\uff8f\uff99\uff8c\uff6b\uff72\u3055\u3093\u5bb6\u306e\uff84\uff9e\uff97\uff7a\u3055\u3093\u3068SIREN\u306e\u5409\u6751\u53cc\u5b50\u3068pkmnBW\u306esbms\u3082\u3053\u3088\u306a\u304f\u611b\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":181,"friends_count":427,"listed_count":4,"favourites_count":4460,"statuses_count":5712,"created_at":"Thu Mar 11 13:03:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/355988933\/122056716-49YiGjT3BrOwP08VytTBGFX57D46eO4kWDPaLr541129260655.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/355988933\/122056716-49YiGjT3BrOwP08VytTBGFX57D46eO4kWDPaLr541129260655.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2005001958\/122056716-49YiGjT3BrOwP08VytTBGFX57D46eO4kWDPaLr54505060218_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2005001958\/122056716-49YiGjT3BrOwP08VytTBGFX57D46eO4kWDPaLr54505060218_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122056716\/1429450405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932014592,"id_str":"663727623932014592","text":"@BrandonAndal bakit di mo ako tinawaaaag? Lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725074768199680,"in_reply_to_status_id_str":"663725074768199680","in_reply_to_user_id":170108751,"in_reply_to_user_id_str":"170108751","in_reply_to_screen_name":"BrandonAndal","user":{"id":150607653,"id_str":"150607653","name":"Cheng Pagulayan","screen_name":"ChengChungChank","location":"Cagayan & UPLB","url":"http:\/\/www.instagram.com\/chengchungchank","description":"Development Communicator. Isko-University of the Philippines Los Ba\u00f1os. \u03b2\u03bb\u03b1\u03c3\u03c4\u03ac\u03c1\u03b9. @CDCSC @upsibol @UPCagayanos","protected":false,"verified":false,"followers_count":1273,"friends_count":1171,"listed_count":5,"favourites_count":11383,"statuses_count":70164,"created_at":"Tue Jun 01 10:42:00 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1FBCFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165227884\/5lSUkpNl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165227884\/5lSUkpNl.jpeg","profile_background_tile":true,"profile_link_color":"2C99F2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3FA1E3","profile_text_color":"FF0000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663058066066141184\/6PWu71He_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663058066066141184\/6PWu71He_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150607653\/1446920771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BrandonAndal","name":"Brandon Andal","id":170108751,"id_str":"170108751","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936151552,"id_str":"663727623936151552","text":"@new_N6 @ToMakotoo \n\u30d0\u30ca\u30ca\u30bb\u30d6\u30f3\u3042\u3093\u6642\u306f\u304b\u3063\u3053\u3088\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727067184271360,"in_reply_to_status_id_str":"663727067184271360","in_reply_to_user_id":1437451170,"in_reply_to_user_id_str":"1437451170","in_reply_to_screen_name":"new_N6","user":{"id":3105139759,"id_str":"3105139759","name":"\u897f\u6751\u308a\u304f","screen_name":"boZvwWiIypHwAQl","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":305,"friends_count":325,"listed_count":0,"favourites_count":414,"statuses_count":896,"created_at":"Mon Mar 23 16:40:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641890270934536192\/9KStQD9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641890270934536192\/9KStQD9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3105139759\/1444620425","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"new_N6","name":"\u30ca\u30ab\u30ac\u30ef","id":1437451170,"id_str":"1437451170","indices":[0,7]},{"screen_name":"ToMakotoo","name":"Tomakotoo","id":2906798005,"id_str":"2906798005","indices":[8,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923752961,"id_str":"663727623923752961","text":"RT @albionroar: We are doing this https:\/\/t.co\/mdyx2PFARM. You should come\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251283094,"id_str":"251283094","name":"Simon Caines","screen_name":"Cainessjc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":99,"listed_count":1,"favourites_count":34,"statuses_count":638,"created_at":"Sat Feb 12 20:33:15 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:40 +0000 2015","id":663702999802474496,"id_str":"663702999802474496","text":"We are doing this https:\/\/t.co\/mdyx2PFARM. You should come\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148454706,"id_str":"148454706","name":"The Albion Roar","screen_name":"albionroar","location":"Brighton","url":"http:\/\/www.albionroar.co.uk","description":"The Albion Roar is the Brighton & Hove Albion fans' radio show on Radio Reverb 97.2FM. Join Ady and Al every Sat @ 12pm, http:\/\/t.co\/EscTUhlW or via podcast","protected":false,"verified":false,"followers_count":2658,"friends_count":394,"listed_count":48,"favourites_count":448,"statuses_count":11962,"created_at":"Wed May 26 18:58:41 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623595357998612484\/GJT0M-d6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623595357998612484\/GJT0M-d6.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2958676603\/8cc453bd59f24aa63d615693e3cae63f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2958676603\/8cc453bd59f24aa63d615693e3cae63f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148454706\/1369748471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mdyx2PFARM","expanded_url":"http:\/\/www.rialtotheatre.co.uk\/whats-on\/events\/albion-roar","display_url":"rialtotheatre.co.uk\/whats-on\/event\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mdyx2PFARM","expanded_url":"http:\/\/www.rialtotheatre.co.uk\/whats-on\/events\/albion-roar","display_url":"rialtotheatre.co.uk\/whats-on\/event\u2026","indices":[34,57]}],"user_mentions":[{"screen_name":"albionroar","name":"The Albion Roar","id":148454706,"id_str":"148454706","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902658560,"id_str":"663727623902658560","text":"#LA Tuesday 11\/10 catch @KelliePickler + @KyleCJacobs with @ExtraTV at Universal Studios Hollywood! https:\/\/t.co\/Omao6saFDb #LosAngeles","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85484909,"id_str":"85484909","name":"Kellie Pickler Fans","screen_name":"ChrisKellieFan","location":"Kellie Pickler Country","url":"http:\/\/www.kelliefans.com","description":"Kellie Pickler @kelliepickler country music fans. FOLLOW for a follow back! NEW SINGLE https:\/\/itunes.apple.com\/us\/album\/feeling-tonight-single\/id996614666","protected":false,"verified":false,"followers_count":13687,"friends_count":13710,"listed_count":91,"favourites_count":1764,"statuses_count":23561,"created_at":"Tue Oct 27 03:00:11 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470474585666621440\/WWA-yuKi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470474585666621440\/WWA-yuKi.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609901788003569665\/6heS2GO__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609901788003569665\/6heS2GO__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85484909\/1401573151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LA","indices":[0,3]},{"text":"LosAngeles","indices":[124,135]}],"urls":[{"url":"https:\/\/t.co\/Omao6saFDb","expanded_url":"http:\/\/extratv.com\/at-universal-studios-hollywood\/","display_url":"extratv.com\/at-universal-s\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"kelliepickler","name":"kellie pickler","id":40768837,"id_str":"40768837","indices":[24,38]},{"screen_name":"kylecjacobs","name":"Kyle Jacobs","id":42355483,"id_str":"42355483","indices":[41,53]},{"screen_name":"extratv","name":"ExtraTV","id":15676578,"id_str":"15676578","indices":[59,67]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932022785,"id_str":"663727623932022785","text":"\u3010Zepp\u30a4\u30d9\u3011\u9234\u6751\u3042\u3059\u304b(\u3042\u3059\u306b\u3083\u3093)10\/10\u30ef\u30f3\u30de\u30f3 \u914d\u4fe1\u4e2d!!\nhttps:\/\/t.co\/nZlDM52xMZ","source":"\u003ca href=\"https:\/\/www.showroom-live.com\" rel=\"nofollow\"\u003eDeNA showroom\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2617603656,"id_str":"2617603656","name":"\u5909\u8cea\u8005\u897f\u91ce","screen_name":"na7k1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":3,"listed_count":0,"favourites_count":2,"statuses_count":4771,"created_at":"Fri Jul 11 16:14:31 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487756013001383936\/3-zJKiyQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487756013001383936\/3-zJKiyQ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nZlDM52xMZ","expanded_url":"https:\/\/www.showroom-live.com\/suzumura_asuka?r=57aed497","display_url":"showroom-live.com\/suzumura_asuka\u2026","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971665"} +{"delete":{"status":{"id":663726944459051008,"id_str":"663726944459051008","user_id":612433909,"user_id_str":"612433909"},"timestamp_ms":"1447079972208"}} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911030784,"id_str":"663727623911030784","text":"\u5168\u54e1\u65e5\u672c\u4eba\u306a\u306e\u306b\u82f1\u8a9e\u3067\u8a71\u3059\u611f\u3058\u304c\u304a\u3082\u3057\u308d\u3044 https:\/\/t.co\/5CL3mBbEg4","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177073444,"id_str":"177073444","name":"\u308b\u3045\u305f\u304a\u3045\u3044\u3048","screen_name":"ruutadesuyo","location":"\u7530\u7551\u306e\u898b\u3048\u308b\u5927\u962a\u5e9c","url":"http:\/\/com.nicovideo.jp\/community\/co1337913","description":"AVA,LOL,splatoon,\u30b2\u30fc\u30e0\u914d\u4fe1\u3057\u305f\u308a\u3057\u3066\u307e\u3059 \u9023\u7d61\u5148\u3010rierusu@gmail.com\u3011 \u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015\u2015 \u5c02\u5c5e\u7de8\u96c6\u5e2b\u3010@uhhyohyoihirata\u3011","protected":false,"verified":false,"followers_count":1271,"friends_count":307,"listed_count":27,"favourites_count":198,"statuses_count":54686,"created_at":"Wed Aug 11 05:04:16 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655020936\/cx20o1zixci23cpgrkyr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655020936\/cx20o1zixci23cpgrkyr.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657451196865638400\/7nWvC1uw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657451196865638400\/7nWvC1uw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177073444\/1434064087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727541144985600,"id_str":"663727541144985600","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrp2XIAAHYCd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrp2XIAAHYCd.png","url":"https:\/\/t.co\/5CL3mBbEg4","display_url":"pic.twitter.com\/5CL3mBbEg4","expanded_url":"http:\/\/twitter.com\/ruutadesuyo\/status\/663727623911030784\/photo\/1","type":"photo","sizes":{"large":{"w":414,"h":597,"resize":"fit"},"medium":{"w":414,"h":597,"resize":"fit"},"small":{"w":340,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727541144985600,"id_str":"663727541144985600","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrp2XIAAHYCd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrp2XIAAHYCd.png","url":"https:\/\/t.co\/5CL3mBbEg4","display_url":"pic.twitter.com\/5CL3mBbEg4","expanded_url":"http:\/\/twitter.com\/ruutadesuyo\/status\/663727623911030784\/photo\/1","type":"photo","sizes":{"large":{"w":414,"h":597,"resize":"fit"},"medium":{"w":414,"h":597,"resize":"fit"},"small":{"w":340,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971660"} +{"delete":{"status":{"id":628420761355730945,"id_str":"628420761355730945","user_id":431198314,"user_id_str":"431198314"},"timestamp_ms":"1447079972491"}} +{"delete":{"status":{"id":260221196849774593,"id_str":"260221196849774593","user_id":70637784,"user_id_str":"70637784"},"timestamp_ms":"1447079972605"}} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101230592,"id_str":"663727628101230592","text":"RT @SpeakComedy: Do it now, or you'll never accomplish it. https:\/\/t.co\/QRhdXx5JwA","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3406240343,"id_str":"3406240343","name":"idaghese","screen_name":"idaghese2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":457,"friends_count":2038,"listed_count":2,"favourites_count":185,"statuses_count":1680,"created_at":"Thu Aug 06 22:19:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:57:03 +0000 2015","id":663671635736576000,"id_str":"663671635736576000","text":"Do it now, or you'll never accomplish it. https:\/\/t.co\/QRhdXx5JwA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eSpeakComedyApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50618718,"id_str":"50618718","name":"Speak Comedy","screen_name":"SpeakComedy","location":null,"url":null,"description":"Finally, comedy on Twitter! For Business, email alyzigho@gmail.com","protected":false,"verified":false,"followers_count":2227979,"friends_count":1,"listed_count":5728,"favourites_count":262,"statuses_count":50258,"created_at":"Thu Jun 25 11:22:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ABBF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_tile":true,"profile_link_color":"2ABBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"594F55","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50618718\/1444775882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":368,"favorite_count":356,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663671633568137216,"id_str":"663671633568137216","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","url":"https:\/\/t.co\/QRhdXx5JwA","display_url":"pic.twitter.com\/QRhdXx5JwA","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663671635736576000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":473,"resize":"fit"},"large":{"w":500,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663671633568137216,"id_str":"663671633568137216","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","url":"https:\/\/t.co\/QRhdXx5JwA","display_url":"pic.twitter.com\/QRhdXx5JwA","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663671635736576000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":473,"resize":"fit"},"large":{"w":500,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":321,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeakComedy","name":"Speak Comedy","id":50618718,"id_str":"50618718","indices":[3,15]}],"symbols":[],"media":[{"id":663671633568137216,"id_str":"663671633568137216","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","url":"https:\/\/t.co\/QRhdXx5JwA","display_url":"pic.twitter.com\/QRhdXx5JwA","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663671635736576000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":473,"resize":"fit"},"large":{"w":500,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":321,"resize":"fit"}},"source_status_id":663671635736576000,"source_status_id_str":"663671635736576000","source_user_id":50618718,"source_user_id_str":"50618718"}]},"extended_entities":{"media":[{"id":663671633568137216,"id_str":"663671633568137216","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXV1Z5VAAAISwO.jpg","url":"https:\/\/t.co\/QRhdXx5JwA","display_url":"pic.twitter.com\/QRhdXx5JwA","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663671635736576000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":473,"resize":"fit"},"large":{"w":500,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":321,"resize":"fit"}},"source_status_id":663671635736576000,"source_status_id_str":"663671635736576000","source_user_id":50618718,"source_user_id_str":"50618718"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122214400,"id_str":"663727628122214400","text":"-\n\n\u0627\u0644\u0638\u0631\u0648\u0641 \u0627\u062d\u064a\u0627\u0646 \u062a\u062c\u0628\u0631\u0646\u0627 \u0646\u063a\u064a\u0628\n\u0628\u0633 \u0645\u0627\u062a\u0645\u062d\u064a \u0645\u062d\u0628\u0629 \u0645\u0646 \u0646\u062d\u0628.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2577659257,"id_str":"2577659257","name":"R.42\u27b0","screen_name":"Princess20_14","location":"Al-khobar","url":null,"description":"\u0639\u0641\u0649 \u0627\u0644\u0644\u0647 , \u0639\u0640\u0646 \u0645\u0640\u0640\u0627 \u0645\u0636\u0649.","protected":false,"verified":false,"followers_count":22,"friends_count":175,"listed_count":0,"favourites_count":2,"statuses_count":77,"created_at":"Thu Jun 19 23:14:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726635917660165\/NTb0S-0c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726635917660165\/NTb0S-0c_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109656064,"id_str":"663727628109656064","text":"RT @DepreFogo: SE UM DIA O BOTAFOGO ME MATAR DO CORA\u00c7\u00c3O, SAIBAM QUE MORRI FELIZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333504968,"id_str":"2333504968","name":"Manu","screen_name":"manu_peress","location":"Minas Gerais ","url":null,"description":"Sou herdeira de uma paix\u00e3o infinita \u2764\ufe0f Brazilian Jiu Jitsu \u2764\ufe0f |\u264f\ufe0f","protected":false,"verified":false,"followers_count":817,"friends_count":1160,"listed_count":1,"favourites_count":4142,"statuses_count":18022,"created_at":"Sun Feb 09 10:49:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662023010644320256\/NmzYon77_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662023010644320256\/NmzYon77_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333504968\/1447079290","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 03 02:43:55 +0000 2015","id":605927867944337409,"id_str":"605927867944337409","text":"SE UM DIA O BOTAFOGO ME MATAR DO CORA\u00c7\u00c3O, SAIBAM QUE MORRI FELIZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2474250108,"id_str":"2474250108","name":"Depr\u00eaFogo","screen_name":"DepreFogo","location":"Rio de Janeiro","url":null,"description":"N\u00e3o leve o que eu falo a s\u00e9rio. Botafogo. ex fake do Seu Delneri. @Raphacafa7 @jhade_bfr amo vcs","protected":false,"verified":false,"followers_count":2648,"friends_count":355,"listed_count":0,"favourites_count":14316,"statuses_count":55435,"created_at":"Fri May 02 16:29:03 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594722107084316672\/KR0wnABk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594722107084316672\/KR0wnABk.jpg","profile_background_tile":true,"profile_link_color":"736666","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656480695838208000\/VCgEdyP-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656480695838208000\/VCgEdyP-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474250108\/1445307816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":247,"favorite_count":90,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DepreFogo","name":"Depr\u00eaFogo","id":2474250108,"id_str":"2474250108","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113870850,"id_str":"663727628113870850","text":"RT @Kamah__: \ud83d\udc4f\ud83d\udc4f\u201c@_stino_: MK Dons? Mortal Kombat Dons? No? Ok\u201d","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188331011,"id_str":"3188331011","name":"austin","screen_name":"ab_stino","location":"Nairobi","url":"http:\/\/facebook.com\/artbystino","description":"digital art + graphic design + web development. Gunner. Etern.alone","protected":false,"verified":false,"followers_count":47,"friends_count":153,"listed_count":1,"favourites_count":0,"statuses_count":188,"created_at":"Mon Apr 20 20:57:02 +0000 2015","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"44436D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"828397","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651164243543224320\/mZ1lQLIL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651164243543224320\/mZ1lQLIL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188331011\/1444084724","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Aug 26 22:18:20 +0000 2014","id":504392428347228161,"id_str":"504392428347228161","text":"\ud83d\udc4f\ud83d\udc4f\u201c@_stino_: MK Dons? Mortal Kombat Dons? No? Ok\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":504391498259898368,"in_reply_to_status_id_str":"504391498259898368","in_reply_to_user_id":217358979,"in_reply_to_user_id_str":"217358979","in_reply_to_screen_name":null,"user":{"id":245091438,"id_str":"245091438","name":"FULL HUNDRED","screen_name":"Kamah__","location":"1.2833\u00b0 S, 36.8167\u00b0 E","url":"http:\/\/uguta.com","description":"This is my world & you're just a tourist","protected":false,"verified":false,"followers_count":1710,"friends_count":963,"listed_count":4,"favourites_count":14,"statuses_count":44918,"created_at":"Sun Jan 30 21:25:36 +0000 2011","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/771033106\/b4fe595a95fb63a49da1c9c02dbdbfd4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/771033106\/b4fe595a95fb63a49da1c9c02dbdbfd4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647860656704614400\/rIPmszmz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647860656704614400\/rIPmszmz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245091438\/1414369639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kamah__","name":"FULL HUNDRED","id":245091438,"id_str":"245091438","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113850369,"id_str":"663727628113850369","text":"RT @mgmooat: @Abo38aL \n\u0648\u0644\u0643\u0645 \u0628\u0627\u0643\n\n\u0634\u0641\u062a \u0643\u0627\u062a\u0628 \u0628\u064a\u062a\u064a\u0646 \u0627\u0639\u062c\u0628\u062a\u0646\u064a\n\u0648\u0634\u0641\u062a \u0627\u062d\u062f \u0627\u0644\u0627\u062e\u0648\u0627\u0646 \u0645\u0637\u0631\u0634 \u0644\u0643 \u0647\u0627\u0644\u0635\u0648\u0631\u0647\n\u0648\u062c\u0645\u0639\u062a\u0647\u0645 \u0648\u0639\u0633\u0627\u0647\u0627 \u062a\u0639\u062c\u0628\u0643 \ud83c\udf39 https:\/\/t.co\/ID757bqfXH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4081569155,"id_str":"4081569155","name":"\u0628\u0634\u0631\u0649","screen_name":"BaSh0uRa2","location":"Morocco\/ Marrakech","url":null,"description":"\u0644\u0627 \u062a\u063a\u0631\u0651\u064e\u0643 \u0644\u064e\u0642\u0652\u0634\u0648\u0631 \u062d\u062a\u0649 \u062a\u0634\u0648\u0641 \u0644\u064e\u0644\u0652\u0628\u0627\u0628 \u060c \u0644\u0627\u064a\u0631\u0647\u0652\u0628\u0643 \u0627\u0644\u0633\u0648\u0631 .. \u062d\u062a\u0649 \u062a\u0641\u0648\u062a \u0644\u064e\u0628\u0652\u0648\u0627\u0628 \u060c \u0644\u0627 \u064a\u062e\u062f\u0639\u0643 \u0644\u063a\u0644\u0627\u0641 \u062d\u062a\u0649 \u062a\u0642\u0631\u0627 \u0644\u062c\u0648\u0627\u0628 \u060c \u0644\u0627 \u062a\u064e\u0633\u0652\u0628\u064a\u0643 \u0644\u0648\u0635\u0627\u0641 \u062d\u062a\u0649 \u062a\u062e\u0652\u062a\u0645 \u0644\u0643\u062a\u0627\u0628","protected":false,"verified":false,"followers_count":63,"friends_count":20,"listed_count":3,"favourites_count":19,"statuses_count":1637,"created_at":"Sat Oct 31 09:34:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661501190899965952\/OVZuRGEJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661501190899965952\/OVZuRGEJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4081569155\/1446843382","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:05 +0000 2015","id":663716191123464192,"id_str":"663716191123464192","text":"@Abo38aL \n\u0648\u0644\u0643\u0645 \u0628\u0627\u0643\n\n\u0634\u0641\u062a \u0643\u0627\u062a\u0628 \u0628\u064a\u062a\u064a\u0646 \u0627\u0639\u062c\u0628\u062a\u0646\u064a\n\u0648\u0634\u0641\u062a \u0627\u062d\u062f \u0627\u0644\u0627\u062e\u0648\u0627\u0646 \u0645\u0637\u0631\u0634 \u0644\u0643 \u0647\u0627\u0644\u0635\u0648\u0631\u0647\n\u0648\u062c\u0645\u0639\u062a\u0647\u0645 \u0648\u0639\u0633\u0627\u0647\u0627 \u062a\u0639\u062c\u0628\u0643 \ud83c\udf39 https:\/\/t.co\/ID757bqfXH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711409759322113,"in_reply_to_status_id_str":"663711409759322113","in_reply_to_user_id":589871263,"in_reply_to_user_id_str":"589871263","in_reply_to_screen_name":"Abo38aL","user":{"id":463115863,"id_str":"463115863","name":"\u265b \u0645\u0640\u0640\u0640\u0640\u0630\u0647\u0644\u0647 \u2730","screen_name":"mgmooat","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1164,"friends_count":211,"listed_count":9,"favourites_count":494,"statuses_count":33339,"created_at":"Fri Jan 13 18:55:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624655849240162304\/hGJTFQ6i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624655849240162304\/hGJTFQ6i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463115863\/1431031252","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Abo38aL","name":"\u2728\u265a \u0623\u0628\u0640\u0648\u0639\u0640\u0642\u0640\u0627\u0644 \u265a\u2728","id":589871263,"id_str":"589871263","indices":[0,8]}],"symbols":[],"media":[{"id":663716174169927680,"id_str":"663716174169927680","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","url":"https:\/\/t.co\/ID757bqfXH","display_url":"pic.twitter.com\/ID757bqfXH","expanded_url":"http:\/\/twitter.com\/mgmooat\/status\/663716191123464192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716174169927680,"id_str":"663716174169927680","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","url":"https:\/\/t.co\/ID757bqfXH","display_url":"pic.twitter.com\/ID757bqfXH","expanded_url":"http:\/\/twitter.com\/mgmooat\/status\/663716191123464192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mgmooat","name":"\u265b \u0645\u0640\u0640\u0640\u0640\u0630\u0647\u0644\u0647 \u2730","id":463115863,"id_str":"463115863","indices":[3,11]},{"screen_name":"Abo38aL","name":"\u2728\u265a \u0623\u0628\u0640\u0648\u0639\u0640\u0642\u0640\u0627\u0644 \u265a\u2728","id":589871263,"id_str":"589871263","indices":[13,21]}],"symbols":[],"media":[{"id":663716174169927680,"id_str":"663716174169927680","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","url":"https:\/\/t.co\/ID757bqfXH","display_url":"pic.twitter.com\/ID757bqfXH","expanded_url":"http:\/\/twitter.com\/mgmooat\/status\/663716191123464192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663716191123464192,"source_status_id_str":"663716191123464192","source_user_id":463115863,"source_user_id_str":"463115863"}]},"extended_entities":{"media":[{"id":663716174169927680,"id_str":"663716174169927680","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAkUcAAbOLW.jpg","url":"https:\/\/t.co\/ID757bqfXH","display_url":"pic.twitter.com\/ID757bqfXH","expanded_url":"http:\/\/twitter.com\/mgmooat\/status\/663716191123464192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663716191123464192,"source_status_id_str":"663716191123464192","source_user_id":463115863,"source_user_id_str":"463115863"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122238976,"id_str":"663727628122238976","text":"RT @Santi_Vatt: Estas con tu amigo en pedo https:\/\/t.co\/ARboqEEtAR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1629171163,"id_str":"1629171163","name":"En la espalda la 7 \u2764","screen_name":"mattysousaa","location":null,"url":"https:\/\/www.facebook.com\/el.matty.7","description":"f\u00fatbol y boxeo mi dos pasiones mas grandes!\u2764 RACING CLUB \u2764 T\u028a \u057c\u0585\u028b\u0268a t\u025b a\u028da \u028d\u028a\u010b\u0266\u0585 7\/7\/15 \u10e6","protected":false,"verified":false,"followers_count":709,"friends_count":1479,"listed_count":0,"favourites_count":2967,"statuses_count":11730,"created_at":"Mon Jul 29 01:16:08 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575132239970729984\/EJrdWrjd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575132239970729984\/EJrdWrjd.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622876699533934592\/Ayy2FsVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622876699533934592\/Ayy2FsVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1629171163\/1425956065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:29:38 +0000 2015","id":663468444701106176,"id_str":"663468444701106176","text":"Estas con tu amigo en pedo https:\/\/t.co\/ARboqEEtAR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300522491,"id_str":"300522491","name":"El Reja","screen_name":"Santi_Vatt","location":"Pilar","url":"https:\/\/Instagram.com\/santivatt\/","description":"publicidad: sanvat11@gmail.com || snapchat: svattt || instagram: @santivatt y @svatt ||que sea rock ||","protected":false,"verified":false,"followers_count":242468,"friends_count":959,"listed_count":246,"favourites_count":10425,"statuses_count":8530,"created_at":"Tue May 17 22:23:13 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442855961359683585\/4uA6u22w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442855961359683585\/4uA6u22w.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643175761357242369\/YpGqqOfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643175761357242369\/YpGqqOfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300522491\/1446576335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2388,"favorite_count":3098,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663468380876365824,"id_str":"663468380876365824","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","url":"https:\/\/t.co\/ARboqEEtAR","display_url":"pic.twitter.com\/ARboqEEtAR","expanded_url":"http:\/\/twitter.com\/Santi_Vatt\/status\/663468444701106176\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663468380876365824,"id_str":"663468380876365824","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","url":"https:\/\/t.co\/ARboqEEtAR","display_url":"pic.twitter.com\/ARboqEEtAR","expanded_url":"http:\/\/twitter.com\/Santi_Vatt\/status\/663468444701106176\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":5170,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/240x240\/jw7_HF6QrS340Pnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/pl\/mWVKCfXQQIXMrUNo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/pl\/mWVKCfXQQIXMrUNo.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/480x480\/tnieD-6pzN5gQJ1X.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/480x480\/tnieD-6pzN5gQJ1X.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Santi_Vatt","name":"El Reja","id":300522491,"id_str":"300522491","indices":[3,14]}],"symbols":[],"media":[{"id":663468380876365824,"id_str":"663468380876365824","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","url":"https:\/\/t.co\/ARboqEEtAR","display_url":"pic.twitter.com\/ARboqEEtAR","expanded_url":"http:\/\/twitter.com\/Santi_Vatt\/status\/663468444701106176\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663468444701106176,"source_status_id_str":"663468444701106176","source_user_id":300522491,"source_user_id_str":"300522491"}]},"extended_entities":{"media":[{"id":663468380876365824,"id_str":"663468380876365824","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468380876365824\/pu\/img\/bAHhoyk2ki6FzpKp.jpg","url":"https:\/\/t.co\/ARboqEEtAR","display_url":"pic.twitter.com\/ARboqEEtAR","expanded_url":"http:\/\/twitter.com\/Santi_Vatt\/status\/663468444701106176\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663468444701106176,"source_status_id_str":"663468444701106176","source_user_id":300522491,"source_user_id_str":"300522491","video_info":{"aspect_ratio":[1,1],"duration_millis":5170,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/240x240\/jw7_HF6QrS340Pnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/pl\/mWVKCfXQQIXMrUNo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/pl\/mWVKCfXQQIXMrUNo.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/480x480\/tnieD-6pzN5gQJ1X.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468380876365824\/pu\/vid\/480x480\/tnieD-6pzN5gQJ1X.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628126392321,"id_str":"663727628126392321","text":"RT @bandssaveduss: Female Robbery - The Neighbourhood https:\/\/t.co\/Emx9Bs5zFK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3945425782,"id_str":"3945425782","name":"Effy","screen_name":"Effyisnottrash","location":null,"url":null,"description":"Keep on dreaming, don\u2019t stop breathing, fight those demons","protected":false,"verified":false,"followers_count":117,"friends_count":232,"listed_count":0,"favourites_count":2935,"statuses_count":3317,"created_at":"Tue Oct 13 09:49:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662697780629123073\/A3oQufrJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662697780629123073\/A3oQufrJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3945425782\/1447029789","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 15:52:25 +0000 2015","id":661571641374318592,"id_str":"661571641374318592","text":"Female Robbery - The Neighbourhood https:\/\/t.co\/Emx9Bs5zFK","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2857685164,"id_str":"2857685164","name":"Bands Saved Us","screen_name":"bandssaveduss","location":null,"url":"http:\/\/yourlipsbelongtome.tumblr.com","description":"Why pay for therapy when music is free?","protected":false,"verified":false,"followers_count":5151,"friends_count":315,"listed_count":9,"favourites_count":2426,"statuses_count":6673,"created_at":"Sun Nov 02 21:16:51 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529019743756222464\/5BKnZRq6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529019743756222464\/5BKnZRq6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2857685164\/1414963968","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661571640170561536,"id_str":"661571640170561536","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","url":"https:\/\/t.co\/Emx9Bs5zFK","display_url":"pic.twitter.com\/Emx9Bs5zFK","expanded_url":"http:\/\/twitter.com\/bandssaveduss\/status\/661571641374318592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":267,"resize":"fit"},"large":{"w":480,"h":267,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661571640170561536,"id_str":"661571640170561536","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","url":"https:\/\/t.co\/Emx9Bs5zFK","display_url":"pic.twitter.com\/Emx9Bs5zFK","expanded_url":"http:\/\/twitter.com\/bandssaveduss\/status\/661571641374318592\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":267,"resize":"fit"},"large":{"w":480,"h":267,"resize":"fit"}},"video_info":{"aspect_ratio":[160,89],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS5f5s3WwAAoEIU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bandssaveduss","name":"Bands Saved Us","id":2857685164,"id_str":"2857685164","indices":[3,17]}],"symbols":[],"media":[{"id":661571640170561536,"id_str":"661571640170561536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","url":"https:\/\/t.co\/Emx9Bs5zFK","display_url":"pic.twitter.com\/Emx9Bs5zFK","expanded_url":"http:\/\/twitter.com\/bandssaveduss\/status\/661571641374318592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":267,"resize":"fit"},"large":{"w":480,"h":267,"resize":"fit"}},"source_status_id":661571641374318592,"source_status_id_str":"661571641374318592","source_user_id":2857685164,"source_user_id_str":"2857685164"}]},"extended_entities":{"media":[{"id":661571640170561536,"id_str":"661571640170561536","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS5f5s3WwAAoEIU.png","url":"https:\/\/t.co\/Emx9Bs5zFK","display_url":"pic.twitter.com\/Emx9Bs5zFK","expanded_url":"http:\/\/twitter.com\/bandssaveduss\/status\/661571641374318592\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":267,"resize":"fit"},"large":{"w":480,"h":267,"resize":"fit"}},"source_status_id":661571641374318592,"source_status_id_str":"661571641374318592","source_user_id":2857685164,"source_user_id_str":"2857685164","video_info":{"aspect_ratio":[160,89],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS5f5s3WwAAoEIU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972665"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105474049,"id_str":"663727628105474049","text":"Metade de um ano quase ein, baee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2324664361,"id_str":"2324664361","name":"Guilherme","screen_name":"_Luizinh0","location":"C.S.J","url":null,"description":"S\u00f3 mesmo eu e Deus, meu Deus e meu Orix\u00e1. \n \u2661 24\/05 \u2661","protected":false,"verified":false,"followers_count":549,"friends_count":486,"listed_count":0,"favourites_count":2020,"statuses_count":11982,"created_at":"Mon Feb 03 02:20:25 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626186638985678849\/U8ZlWMEk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626186638985678849\/U8ZlWMEk.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656573129674924033\/-BUyGKrd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656573129674924033\/-BUyGKrd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2324664361\/1441247089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092841984,"id_str":"663727628092841984","text":"RT @cigarettxz: >>>>>>>> https:\/\/t.co\/RvtjKgDiRT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1104644192,"id_str":"1104644192","name":"r e v i v a l","screen_name":"CarlaPerezBB","location":"Valencia, Spain","url":"http:\/\/instagram.com\/carlaperezbb","description":"Me quejo de la vida y poco m\u00e1s. A ratos fangirleo","protected":false,"verified":false,"followers_count":1282,"friends_count":907,"listed_count":21,"favourites_count":180,"statuses_count":20574,"created_at":"Sat Jan 19 20:55:49 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463404167105482752\/_wyQheho.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463404167105482752\/_wyQheho.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660884841353879552\/yBFoUjrK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660884841353879552\/yBFoUjrK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1104644192\/1442852296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:40:18 +0000 2015","id":663576824681775104,"id_str":"663576824681775104","text":">>>>>>>> https:\/\/t.co\/RvtjKgDiRT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1580829655,"id_str":"1580829655","name":"Grinch","screen_name":"cigarettxz","location":"Sam Smith \u27b3 ","url":null,"description":"Elvis is my daddy, Marilyn's my mother.","protected":false,"verified":false,"followers_count":14794,"friends_count":14389,"listed_count":265,"favourites_count":17804,"statuses_count":89672,"created_at":"Tue Jul 09 16:49:44 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/547087928376045568\/WXI-GTKw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/547087928376045568\/WXI-GTKw.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663565606461960192\/6q3DHhAI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663565606461960192\/6q3DHhAI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1580829655\/1447041344","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663576798312034308,"id_str":"663576798312034308","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":600,"resize":"fit"},"large":{"w":400,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663576798312034308,"id_str":"663576798312034308","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":600,"resize":"fit"},"large":{"w":400,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663576798337241090,"id_str":"663576798337241090","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRIVEAI-W0q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRIVEAI-W0q.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"large":{"w":381,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":381,"h":572,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663576798437871616,"id_str":"663576798437871616","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRgUkAAdSns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRgUkAAdSns.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}},{"id":663576798928592897,"id_str":"663576798928592897","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lTVUYAEcP7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lTVUYAEcP7u.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cigarettxz","name":"Grinch","id":1580829655,"id_str":"1580829655","indices":[3,14]}],"symbols":[],"media":[{"id":663576798312034308,"id_str":"663576798312034308","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":600,"resize":"fit"},"large":{"w":400,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663576824681775104,"source_status_id_str":"663576824681775104","source_user_id":1580829655,"source_user_id_str":"1580829655"}]},"extended_entities":{"media":[{"id":663576798312034308,"id_str":"663576798312034308","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRCUcAQ0nzZ.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":600,"resize":"fit"},"large":{"w":400,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663576824681775104,"source_status_id_str":"663576824681775104","source_user_id":1580829655,"source_user_id_str":"1580829655"},{"id":663576798337241090,"id_str":"663576798337241090","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRIVEAI-W0q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRIVEAI-W0q.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"large":{"w":381,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":381,"h":572,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663576824681775104,"source_status_id_str":"663576824681775104","source_user_id":1580829655,"source_user_id_str":"1580829655"},{"id":663576798437871616,"id_str":"663576798437871616","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lRgUkAAdSns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lRgUkAAdSns.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663576824681775104,"source_status_id_str":"663576824681775104","source_user_id":1580829655,"source_user_id_str":"1580829655"},{"id":663576798928592897,"id_str":"663576798928592897","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_lTVUYAEcP7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_lTVUYAEcP7u.jpg","url":"https:\/\/t.co\/RvtjKgDiRT","display_url":"pic.twitter.com\/RvtjKgDiRT","expanded_url":"http:\/\/twitter.com\/cigarettxz\/status\/663576824681775104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663576824681775104,"source_status_id_str":"663576824681775104","source_user_id":1580829655,"source_user_id_str":"1580829655"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628117905413,"id_str":"663727628117905413","text":"RT @DrunkVinodMehta: People of Bihar did a #SwachhBihar by dumping BJP.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4099265659,"id_str":"4099265659","name":"Kalmooha","screen_name":"Kalmoooha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":7,"listed_count":0,"favourites_count":0,"statuses_count":690,"created_at":"Mon Nov 02 06:59:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:28:29 +0000 2015","id":663619151697543168,"id_str":"663619151697543168","text":"People of Bihar did a #SwachhBihar by dumping BJP.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2430174896,"id_str":"2430174896","name":"Vinod Mehta ","screen_name":"DrunkVinodMehta","location":"India","url":null,"description":"wit, instinctive sense of story..[and] a suspicion *parody account* RTs not endorsement.","protected":false,"verified":false,"followers_count":30245,"friends_count":251,"listed_count":268,"favourites_count":5020,"statuses_count":27004,"created_at":"Sun Apr 06 09:11:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624421396630929408\/UGd_d4S1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624421396630929408\/UGd_d4S1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2430174896\/1414139905","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":26,"entities":{"hashtags":[{"text":"SwachhBihar","indices":[22,34]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SwachhBihar","indices":[43,55]}],"urls":[],"user_mentions":[{"screen_name":"DrunkVinodMehta","name":"Vinod Mehta ","id":2430174896,"id_str":"2430174896","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092891136,"id_str":"663727628092891136","text":"Imma_lonely_: imkiantatum: snowblueheart5: _djfp004: pca_moh12: haileytrinity01: PtchtPdlla: obcessed5: kbdpftcris26: knxgoals: #PushAwards\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320372658,"id_str":"2320372658","name":"RT link on bio pls","screen_name":"kathnielquotes_","location":null,"url":null,"description":"https:\/\/twitter.com\/kbdpangel\/status\/655782290610491392","protected":false,"verified":false,"followers_count":25,"friends_count":8,"listed_count":16,"favourites_count":18,"statuses_count":47702,"created_at":"Fri Jan 31 07:00:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320372658\/1422688137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwards","indices":[128,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101242880,"id_str":"663727628101242880","text":"RT @adampurrish: shit we've run out of reasons to hate halsey...how abt [spins wheel] she's racist [flips coin] against mangoes [throws dar\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2501924940,"id_str":"2501924940","name":"liam neeson","screen_name":"jiyaokbye","location":"badlands","url":"http:\/\/opialife.com","description":"stay woke","protected":false,"verified":false,"followers_count":145,"friends_count":531,"listed_count":0,"favourites_count":1495,"statuses_count":4022,"created_at":"Sat May 17 16:18:12 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663445775830097920\/Uf1PGaZ1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663445775830097920\/Uf1PGaZ1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501924940\/1447017761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:03:42 +0000 2015","id":663446819188379648,"id_str":"663446819188379648","text":"shit we've run out of reasons to hate halsey...how abt [spins wheel] she's racist [flips coin] against mangoes [throws dart] bc she's female","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719072434,"id_str":"2719072434","name":"aliens r real hannah","screen_name":"adampurrish","location":"infp \/ ravenclaw \/ she\/her","url":"http:\/\/adampurrish.tumblr.com\/","description":"no one knows what [insert word] means, Gansey","protected":false,"verified":false,"followers_count":257,"friends_count":144,"listed_count":2,"favourites_count":2181,"statuses_count":5764,"created_at":"Sat Aug 09 10:48:47 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514881800909234176\/8VyqVsBn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514881800909234176\/8VyqVsBn.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660791860546437121\/uNZMmBhU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660791860546437121\/uNZMmBhU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2719072434\/1446380071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":176,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"adampurrish","name":"aliens r real hannah","id":2719072434,"id_str":"2719072434","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122202112,"id_str":"663727628122202112","text":"RT @uhopon: \u4eba\u6df7\u307f\u306e\u99c5\u306b\u3066\u3001\u7537\u5b50\u9ad8\u6821\u751f\u304c\u4e8c\u4eba\u6b69\u3044\u3066\u3044\u308b\u3002\n\u7247\u65b9(\uff21)\u304cSuica\u306e\u30c1\u30e3\u30fc\u30b8\u4e0d\u8db3\u3067\u6539\u672d\u306b\u5f15\u3063\u304b\u304b\u308b\u3002\n\uff22\u300c\u306f\u306f\u3063\uff01\u3058\u3083\u30fc\u306a\u300d\n\uff21\u300c\u3048\u3001\u304a\u3044\u3001\u3072\u3069\uff01\uff01\u300d\n\u4e8c\u4eba\u306e\u305d\u306e\u5f8c\u3092\u4e88\u60f3\u3057\u3001\u3053\u306e\u5834\u5408\u306e\uff23\uff30\u3092\u6c42\u3081\u3088\u3002\u305f\u3060\u3057\u4e8c\u4eba\u306f\u540c\u3058\u5236\u670d\u3068\u3059\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1456691359,"id_str":"1456691359","name":"\u3055\u304f\u3089","screen_name":"mistodt","location":"\u685c\u3068\u3055\u304f\u3089\u3093\u307c\u306e\u9593","url":"http:\/\/touch.pixiv.net\/member.php?id=5654890","description":"\u4f50\u5009.\u8150\u3063\u3066\u308b\u81ea\u79f0\u7269\u66f8\u304d20\u2191.\u30e9\u30af\u4e0e\u3068\u8d64\u8466\u304f\u3093\u304c\u71b1\u3044.\u514e\u8d64\/\u53ca\u6708\/\u30e9\u30af\u4e0e\/\u30df\u30ab\u512a\/\u53f3\u3093\u3070\/\u3053\u304e\u306a\u304d.D.G\/krk\/HQ\/B10\/\u66c7\u5929\/aoex\/\u9032\u6483\/\u7d42\u308f\u30bb\u30e9\/\u6587\uff7d\uff84.\u5922\u57a2(@iriskrym).\uff71\uff72\uff7a\uff9d\u306f(@Ne6ar_Mk)\u3088\u308a.","protected":false,"verified":false,"followers_count":109,"friends_count":88,"listed_count":2,"favourites_count":1325,"statuses_count":15203,"created_at":"Sat May 25 11:26:50 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647314187681599488\/cYdhoM8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647314187681599488\/cYdhoM8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1456691359\/1442241013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:39:20 +0000 2015","id":663606782149787648,"id_str":"663606782149787648","text":"\u4eba\u6df7\u307f\u306e\u99c5\u306b\u3066\u3001\u7537\u5b50\u9ad8\u6821\u751f\u304c\u4e8c\u4eba\u6b69\u3044\u3066\u3044\u308b\u3002\n\u7247\u65b9(\uff21)\u304cSuica\u306e\u30c1\u30e3\u30fc\u30b8\u4e0d\u8db3\u3067\u6539\u672d\u306b\u5f15\u3063\u304b\u304b\u308b\u3002\n\uff22\u300c\u306f\u306f\u3063\uff01\u3058\u3083\u30fc\u306a\u300d\n\uff21\u300c\u3048\u3001\u304a\u3044\u3001\u3072\u3069\uff01\uff01\u300d\n\u4e8c\u4eba\u306e\u305d\u306e\u5f8c\u3092\u4e88\u60f3\u3057\u3001\u3053\u306e\u5834\u5408\u306e\uff23\uff30\u3092\u6c42\u3081\u3088\u3002\u305f\u3060\u3057\u4e8c\u4eba\u306f\u540c\u3058\u5236\u670d\u3068\u3059\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86691329,"id_str":"86691329","name":"\u30a6\u30db","screen_name":"uhopon","location":"BW1\u53f7\u306b\u4e57\u8239\u3057\u305f\u3044","url":"http:\/\/twpf.jp\/uhopon","description":"\u3054\u308a\u3089\u304c\u30de\u30a4\u30da\u30fc\u30b9\u306b\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u8a73\u3057\u304f\u306fURL\u53c2\u7167\u3002\u540c\u5fd7\u69d8\u30d5\u30a9\u30ed\u30ea\u30e0\u304a\u6c17\u8efd\u306b\u3002\u30ec\u30aa\u30af\u30e9\u3001\u30d5\u30a7\u30f3\u4e94\u3001\u30ca\u30eb\u30b5\u30b9\u5927\u597d\u304d\u3067\u3059\u3002\u304a\u308a\u3058\u3085\u306d\u3082\u3059\u304d\u2026\uff01","protected":false,"verified":false,"followers_count":159,"friends_count":112,"listed_count":7,"favourites_count":7006,"statuses_count":25633,"created_at":"Sun Nov 01 09:31:02 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFDA00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623697146512982016\/yfLKLmaB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623697146512982016\/yfLKLmaB.jpg","profile_background_tile":true,"profile_link_color":"C98014","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFDD00","profile_text_color":"4F3832","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633863164170362880\/AfYpDY5r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633863164170362880\/AfYpDY5r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86691329\/1398263124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":450,"favorite_count":80,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uhopon","name":"\u30a6\u30db","id":86691329,"id_str":"86691329","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628097056768,"id_str":"663727628097056768","text":"Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091527220,"id_str":"4091527220","name":"Xander Ayala","screen_name":"AyalaXander","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":12,"listed_count":6,"favourites_count":2,"statuses_count":18781,"created_at":"Sun Nov 01 14:19:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[40,60]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628097056769,"id_str":"663727628097056769","text":"#\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621\n\n\u0627\u0644\u0634\u064a\u062e \u0637\u0627\u0644\u0639 \u0643\u0634\u062a\u0647 \u0648\u0645\u0633\u0648\u0644\u0641\u064a\u0646 \u0644\u0647 \u0639\u0646 \u0627\u0644\u062c\u0646\n\u0648\u0628\u0645\u0627 \u0627\u0646 \u0645\u062e\u064a\u0644\u062a\u0647 \u0643\u0644\u0647\u0627 \u0633\u0643\u0633 \u060c \u062d\u0628 \u0627\u0646\u0647 \u064a\u0641\u0644\u0640\u0645 \u0639\u0644\u0649 \n\u0627\u0644\u0634\u0639\u0628 \u0628\u0640\u0633 \u0648\u0627\u0636\u062d \u0627\u0646\u0647 \u062e\u0628\u0644 \u0645\u0627\u064a\u0639\u0631\u0641 \u064a\u0643\u0630\u0628 \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1959870534,"id_str":"1959870534","name":"\u0639\u0632\u064a\u0632 \u0627\u0644\u0634\u0645\u0631\u064a","screen_name":"yeeeeeeees","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":555,"friends_count":84,"listed_count":0,"favourites_count":1045,"statuses_count":606,"created_at":"Mon Oct 14 04:25:46 +0000 2013","utc_offset":16200,"time_zone":"Kabul","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662458864244285441\/Q0NqWS4c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662458864244285441\/Q0NqWS4c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1959870534\/1443502794","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101152768,"id_str":"663727628101152768","text":"\u305d\u308c\u306f\u78ba\u304b\u306b\u7121\u7406\u3060\uff57\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":804877748,"id_str":"804877748","name":"\u30e6\u30a4\uff1a\u9583\u83efG21a:\u51ac\u4e8c\u65e5\u76ee\u30bf43a","screen_name":"yui_Angelica","location":"\u6700\u5f8c\u306e\u697d\u5712","url":"http:\/\/twpf.jp\/yui_Angelica","description":"\u9ed2\u30d0\u30b9\u8d64\u9ed2\u4ed6\u3002\u5973\u4f53\u5316\u3068\u4e21\u6027\u5177\u6709\u5927\u597d\u304d\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u5343\u6681\u306f\u3058\u3055\u3093\uff08@hajitiaki\uff09\u3088\u308a\u3002\u6210\u4eba\u6e08\u3002\u25c6\uff0f\u5c0f\u6e4a\u5144\u5f1f\u3068\u5009\u4eae\u3002HQ\uff0f\u9ed2\u7814\u3002fate\uff0f\u8a00\u30ae\u30eb\u3002\u5200\u5263\u4e71\u821e\uff0f\u5b89\u6e05\u4ed6\u3001\u840c\u3048\u8a71\u4ee5\u5916\u306e\u8a71\u904e\u591a\u306e\u6839\u3063\u304b\u3089\u30b2\u30fc\u30de\u30fc\u3002\u4eca\u306f\u8266\u3053\u308c\u3068\u82b1\u9a0e\u58eb\u3068\u304b\u3093\u3071\u306b","protected":false,"verified":false,"followers_count":128,"friends_count":141,"listed_count":11,"favourites_count":488,"statuses_count":108143,"created_at":"Wed Sep 05 15:57:30 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506003248101081090\/EJ0M9pd8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506003248101081090\/EJ0M9pd8_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101287936,"id_str":"663727628101287936","text":"@FrankIero @GBankosh it's 5pm somewhere","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723771715592192,"in_reply_to_status_id_str":"663723771715592192","in_reply_to_user_id":17471554,"in_reply_to_user_id_str":"17471554","in_reply_to_screen_name":"FrankIero","user":{"id":27422202,"id_str":"27422202","name":"mc snow","screen_name":"samsnxw","location":"Bromley, London","url":null,"description":"I didn't try to kill myself, I just shot up too much heroin","protected":false,"verified":false,"followers_count":486,"friends_count":202,"listed_count":8,"favourites_count":27866,"statuses_count":24846,"created_at":"Sun Mar 29 13:18:27 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653600475305127936\/r1LBbd8y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653600475305127936\/r1LBbd8y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27422202\/1447075977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"544762ebf7fda780","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/544762ebf7fda780.json","place_type":"city","name":"Islington","full_name":"Islington, London","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.142058,51.518552],[-0.142058,51.575301],[-0.076305,51.575301],[-0.076305,51.518552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FrankIero","name":"frnkiero","id":17471554,"id_str":"17471554","indices":[0,10]},{"screen_name":"GBankosh","name":"Gina \u51fb","id":3031596521,"id_str":"3031596521","indices":[11,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628126257153,"id_str":"663727628126257153","text":"RT @15milkhoney: \u226a\u52df\u96c6\u226b\n\u6771\u65b9\u795e\u8d77 \u30cf\u30c3\u30d4\u30fc\u30dc\u30c3\u30af\u30b9 \u798f\u888b\n\n\u30fb\u30a8\u30a4\u30cd13\u306eT\u30b7\u30e3\u30c4\u3092\u3001(M)\u27a1(L)\u306b\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u30fb\u30a8\u30a4\u30cd13\u306e\u30bf\u30aa\u30eb\u3092\u3001\u4ed6\u306e\u6642\u306e\u30bf\u30aa\u30eb\u3068\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u30fbTIME\u30d1\u30f3\u30d5\u30ec\u30c3\u30c8\u3001\u7f36\u30b7\u30fc\u30eb\u3092\u3001\u4f55\u304b\u4ed6\u306e\u3082\u306e\u3068\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u2026","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352360710,"id_str":"352360710","name":"\u308f\u304b\u30e6\u30ce\u2661\u6700\u9ad8\u306e\u821e\u53f0\u738b!!TVXQ\u2661","screen_name":"uknowtown26","location":"\u611b\u3059\u308b\u30e6\u30ce\u3068\u306e\u7e01\u3092\u3068\u308a\u3082\u3064\u7532\u6590\u2661","url":"http:\/\/twpf.jp\/uknowtown26","description":"TVXQ are U-know &Changmin\u2661\nTV2XQ(\u00b4\uff65 J \uff65\uff40)(\u2235)\u30e6\u30ce\u306e\u5168\u3066\u304c\u5927\u597d\u304d\u2661\u30c1\u30e3\u30f3\u30df\u30f3\u306e\u53ef\u611b\u3055\u306f\u795e\uff01\u597d\u304d\u306a\u306e\u306f\u6771\u65b9\u795e\u8d77\u306e\u307f!!2\u4eba\u306e\u300c\u6c38\u9060\u300d\u3092\u4fe1\u3058\u307e\u3059\u2606\u3044\u3064\u3082\u8b19\u865a\u3067\u5168\u529b\u5c11\u5e74\u306a\u5f7c\u3089\u3092\u305a\u3063\u3068\u305a\u30fc\u3063\u3068\u5fdc\u63f4\u3057\u307e\u3059\u2606 No j\uffe5j\u3001No \u82b1\u7551(\u4e42\u03c9\u2032)","protected":false,"verified":false,"followers_count":153,"friends_count":125,"listed_count":1,"favourites_count":746,"statuses_count":13261,"created_at":"Wed Aug 10 14:22:41 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542891501315817473\/ECSY5Reg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542891501315817473\/ECSY5Reg.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436087340591624194\/-i6-8Bnf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436087340591624194\/-i6-8Bnf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/352360710\/1428926493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:51:27 +0000 2015","id":663685327597387776,"id_str":"663685327597387776","text":"\u226a\u52df\u96c6\u226b\n\u6771\u65b9\u795e\u8d77 \u30cf\u30c3\u30d4\u30fc\u30dc\u30c3\u30af\u30b9 \u798f\u888b\n\n\u30fb\u30a8\u30a4\u30cd13\u306eT\u30b7\u30e3\u30c4\u3092\u3001(M)\u27a1(L)\u306b\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u30fb\u30a8\u30a4\u30cd13\u306e\u30bf\u30aa\u30eb\u3092\u3001\u4ed6\u306e\u6642\u306e\u30bf\u30aa\u30eb\u3068\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u30fbTIME\u30d1\u30f3\u30d5\u30ec\u30c3\u30c8\u3001\u7f36\u30b7\u30fc\u30eb\u3092\u3001\u4f55\u304b\u4ed6\u306e\u3082\u306e\u3068\u4ea4\u63db\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\n\n\u3082\u3061\u308d\u3093\u3069\u308c\u3082\u3001\u672a\u958b\u5c01\u3067\u3059(^_^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1384462604,"id_str":"1384462604","name":"\u3057\u3047\u308a\u3053","screen_name":"15milkhoney","location":"\u5473\u564c\u716e\u8fbc\u307f\u3046\u3069\u3093","url":null,"description":"\u30e6\u30ce\u3068\u30c1\u30e3\u30f3\u30df\u30f3\u304c\u597d\u304d\uff01\u30c1\u30e3\u30f3\u30df\u30f3\u306e\uff11\u3064\u4e0b\u3002\u30e6\u30ce\u5bc4\u308a\u3067\u306f\u3042\u308b\u3051\u3069\u3082\u3001\u30c1\u30e3\u30f3\u30df\u30f3\u306e\u3053\u3068\u3082\u3057\u3063\u304b\u308a\u597d\u304d\uff01\u30aa\u30f3\u30ea\u3055\u3093\u306f\uff2e\uff27\u3067\u3059\u3002\u8cb6\u3057\u611b\u3082\u308f\u304b\u308a\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":86,"friends_count":99,"listed_count":1,"favourites_count":36,"statuses_count":11196,"created_at":"Sat Apr 27 13:28:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/464759666086400000\/ggv1OBgB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/464759666086400000\/ggv1OBgB.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636902622071427073\/n00ni2zL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636902622071427073\/n00ni2zL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1384462604\/1434985607","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"15milkhoney","name":"\u3057\u3047\u308a\u3053","id":1384462604,"id_str":"1384462604","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972665"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113674240,"id_str":"663727628113674240","text":"4\u5272\u3067\u591a\u3044\u3068\u611f\u3058\u308b\u30d0\u30a4\u30a2\u30b9\u304c\u3042\u308b\u3089\u3057\u3044\u304b\u3089\u3001\u534a\u5206\u3060\u3063\u305f\u3089\u3059\u3054\u304f\u591a\u3044\u3068\u611f\u3058\u308b\u3072\u3068\u304c\u305f\u304f\u3055\u3093\u3044\u308b\u3093\u3060\u308d\u3046\u306d","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275425927,"id_str":"275425927","name":"\u5c71\u6cb3\u3075\u3082\u3068","screen_name":"ymkw6","location":"\u795e\u5948\u5ddd","url":"http:\/\/twpf.jp\/ymkw6","description":"\u975e\u30d8\u30c6\u30ed\u306eBL\u597d\u304d\u3002\u767e\u5408\u3068\u5973\u00d7\u7537\u3082\u305f\u3057\u306a\u3080\u3002\u5200\u5263\u4e71\u821e\uff08\u517c\u5800\u3001\u71ed\u3078\u3057\u3001\u4e3b\u3078\u3057\uff09\u3001MMD\u3068UTAU\uff08\u52c9\u5f37\u4e2d\uff09\u3001\u30b8\u30a7\u30f3\u30c0\u30fc\u3001\u30bb\u30af\u30b7\u30e5\u30a2\u30ea\u30c6\u30a3\u3001\u95c7\u934b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u840c\u3048\u3068\u5fc3\u306e\u6383\u304d\u6e9c\u3081\u3002","protected":false,"verified":false,"followers_count":419,"friends_count":150,"listed_count":30,"favourites_count":478,"statuses_count":104952,"created_at":"Fri Apr 01 07:35:45 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"788080","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735670673\/0230fe20ab16d19578dc1693341cb01c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735670673\/0230fe20ab16d19578dc1693341cb01c.png","profile_background_tile":false,"profile_link_color":"478384","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8E09E","profile_text_color":"FCFFFA","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654933614111555584\/XemrOB2N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654933614111555584\/XemrOB2N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275425927\/1435563320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109484032,"id_str":"663727628109484032","text":"When yo friends mom is a stoner to >","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090098621,"id_str":"3090098621","name":"Grand Master","screen_name":"levi_raztaa","location":null,"url":null,"description":"\u00a3st. 96' DTX. Yes master \u23f3","protected":false,"verified":false,"followers_count":51,"friends_count":47,"listed_count":0,"favourites_count":1344,"statuses_count":1772,"created_at":"Thu Mar 12 22:36:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655643625989255168\/otZomHmJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655643625989255168\/otZomHmJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090098621\/1434674128","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628130648064,"id_str":"663727628130648064","text":"\ud83d\udcf7 https:\/\/t.co\/eXvcK9ogCx","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3693565633,"id_str":"3693565633","name":"Anna","screen_name":"Anna_tsaga","location":"Georgia","url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":30,"listed_count":0,"favourites_count":2,"statuses_count":323,"created_at":"Sat Sep 26 14:38:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647788134722240512\/QaeftNhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647788134722240512\/QaeftNhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3693565633\/1445720404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eXvcK9ogCx","expanded_url":"http:\/\/tmblr.co\/Z_K1Lj1xljrDx","display_url":"tmblr.co\/Z_K1Lj1xljrDx","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079972666"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628126392320,"id_str":"663727628126392320","text":"Pocas ganas para todo...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2573840186,"id_str":"2573840186","name":"\u2605 Danii \u2605","screen_name":"DaniiCena","location":null,"url":null,"description":"Bailando es mejor!","protected":false,"verified":false,"followers_count":228,"friends_count":263,"listed_count":0,"favourites_count":663,"statuses_count":989,"created_at":"Wed Jun 18 00:45:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663188024407302144\/6_oTh7di_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663188024407302144\/6_oTh7di_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2573840186\/1440383421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079972665"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628096966666,"id_str":"663727628096966666","text":"6\u8a71\u306f\u8d77\u304d\u3066\u304b\u3089\u2026\u304a\u3084\u3059\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2451620198,"id_str":"2451620198","name":"\u3055\u306f\u3089","screen_name":"11a496","location":"\u8336\u7551","url":null,"description":"bsr\/\u7121\u53cc\/pdr\/\u5200\u5263\/\u304a\u305d\u677e\u3055\u3093\u3000\u6210\u4eba\u6e08\u8150\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\n\u6570\u5b57\u677e\u306b\u5922\u4e2d","protected":false,"verified":false,"followers_count":184,"friends_count":64,"listed_count":11,"favourites_count":9570,"statuses_count":14776,"created_at":"Fri Apr 18 16:16:20 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663153481876832257\/s3vgY3QY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663153481876832257\/s3vgY3QY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2451620198\/1446374050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092731392,"id_str":"663727628092731392","text":"So nasobrahan ata ako sa dinner. I feel like I'm gonna throw-up \ud83d\ude39\ud83d\ude01\ud83d\ude28 Eeeeerrrrr.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":254963718,"id_str":"254963718","name":"Karen Rose Dilao","screen_name":"renka_yellow","location":"Daraga, Bicol Region","url":"http:\/\/instagram.com\/karen31yellow\/","description":"20 Meaningful Years\u2765Political Science\u2765Graduating Soon\u2765Lady Lawyer Thoughts\u2765Big Bang\u2765A Real Fighter\u2765Child of God","protected":false,"verified":false,"followers_count":473,"friends_count":350,"listed_count":10,"favourites_count":547,"statuses_count":4975,"created_at":"Sun Feb 20 11:15:22 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000001786332\/ad84d604679367ad92243e369bc4b7e4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000001786332\/ad84d604679367ad92243e369bc4b7e4.png","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643446038980747264\/GhZLDHvO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643446038980747264\/GhZLDHvO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254963718\/1418536277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628096921600,"id_str":"663727628096921600","text":"RT @Milind__Singh: What's diwali ??\n\n- A child slave making crackers in a factory.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309501767,"id_str":"309501767","name":"aaEooOh","screen_name":"ek_samosa_dena","location":"Bombed-Bay","url":"http:\/\/www.google.com","description":"chutney hai?","protected":false,"verified":false,"followers_count":1034,"friends_count":455,"listed_count":19,"favourites_count":1443,"statuses_count":30080,"created_at":"Thu Jun 02 05:58:46 +0000 2011","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660326343398174720\/7X2pRgUf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660326343398174720\/7X2pRgUf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309501767\/1445163725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:20 +0000 2015","id":663723549794787328,"id_str":"663723549794787328","text":"What's diwali ??\n\n- A child slave making crackers in a factory.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519222550,"id_str":"519222550","name":"BoozeDil","screen_name":"Milind__Singh","location":"Chhattisgarh, India","url":"https:\/\/twitter.com\/Milind__Singh\/timelines\/641243814804459521","description":"oakk oakk","protected":false,"verified":false,"followers_count":2652,"friends_count":967,"listed_count":23,"favourites_count":6385,"statuses_count":23005,"created_at":"Fri Mar 09 05:52:05 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486781651930710016\/OD_OrePi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486781651930710016\/OD_OrePi.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"4BB7DF","profile_sidebar_fill_color":"191F22","profile_text_color":"4BB7DF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660611894944772096\/8AMM-toK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660611894944772096\/8AMM-toK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519222550\/1446899423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Milind__Singh","name":"BoozeDil","id":519222550,"id_str":"519222550","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092706816,"id_str":"663727628092706816","text":"RT @08Rsf: \u653e\u9001\u5c40\u5074\u3082\u8996\u8074\u8005\u5074\u3082\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150056242,"id_str":"150056242","name":"\u540d\u524d\u5909\u308f\u308a\u6749\u8c37\u62f3\u58eb","screen_name":"seijunhayaruo","location":"\u7d42\u8eab\u540d\u8a89\u3046\u3069\u3093\u770c\u6c11","url":null,"description":"\u5e1d\u4eac\u9b42\uff01","protected":false,"verified":false,"followers_count":697,"friends_count":743,"listed_count":32,"favourites_count":13001,"statuses_count":75384,"created_at":"Sun May 30 23:53:39 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655688199570755584\/MBg--hF9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655688199570755584\/MBg--hF9.png","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663208757862621185\/cT2ISq01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663208757862621185\/cT2ISq01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150056242\/1446957768","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:24 +0000 2015","id":663727092115181568,"id_str":"663727092115181568","text":"\u653e\u9001\u5c40\u5074\u3082\u8996\u8074\u8005\u5074\u3082\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224134848,"id_str":"3224134848","name":"\u79c0\u592a@\u5e73\u91ce\u304a\u304b\u3048\u308a","screen_name":"08Rsf","location":null,"url":null,"description":"\u4eca\u30b7\u30fc\u30ba\u30f3\u3082\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f \u95a2\u672c\u6e21\u8fba\u52a0\u85e4\u85e4\u4e95\u4eca\u307e\u3067\u3042\u308a\u304c\u3068\u3046\u3084\u3067\u2026 \u91ce\u7403\u30d5\u30a1\u30f3\u306f\u57fa\u672c\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059 \u305f\u3060\u3057\u7169\u3044\u3057\u66b4\u8a00\u4e0b\u30cd\u30bf\u3082\u591a\u3005\u3042\u308b\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306f\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u898b\u305f\u4e0a\u3067\u5224\u65ad\u9858\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":1453,"friends_count":1440,"listed_count":24,"favourites_count":28534,"statuses_count":64535,"created_at":"Sat May 23 11:50:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650506240477409280\/l8wFuLud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650506240477409280\/l8wFuLud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224134848\/1443927980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"08Rsf","name":"\u79c0\u592a@\u5e73\u91ce\u304a\u304b\u3048\u308a","id":3224134848,"id_str":"3224134848","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113678336,"id_str":"663727628113678336","text":"\u4eca\u304b\u3089\u82f1\u5358\u8a9e\u3092\u3084\u308c\u3070\u82f1\u5358\u8a9e\u306b\u8cbb\u3084\u3059\u6642\u9593\u304c\u306a\u304f\u306a\u3063\u3066\u9593\u306b\u5408\u3046\u2026\uff1f","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1025807322,"id_str":"1025807322","name":"\u3081\u3067\u3085\u5b50\u2192\u6587\u30b9\u30c8","screen_name":"umeayano","location":"\u30ea\u30c8\u3061\u3083\u3093\u306e\u30e1\u30a4\u30c9\u670d\u306e\u30b9\u30ab\u30fc\u30c8\u306e\u4e2d","url":"http:\/\/twpf.jp\/umeayano","description":"\u300e\u597d\u304d\u3088\u3001\u3042\u306a\u305f\u304c\u3002\u6bba\u3057\u305f\u3044\u307b\u3069\u300f","protected":false,"verified":false,"followers_count":1562,"friends_count":855,"listed_count":72,"favourites_count":112467,"statuses_count":165808,"created_at":"Fri Dec 21 06:49:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663346918085365760\/drnnCzmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663346918085365760\/drnnCzmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1025807322\/1426164650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113723393,"id_str":"663727628113723393","text":"RT @yuka_130116: ~ \u5b9a\u671f ~\n\u3010 \u62c5\u5f53\u306e\u540d\u524d\u3042\u3063\u305f\u3089RT \u3011\n\n\u4f50\u85e4 \u52dd\u5229\n\u4e2d\u5cf6 \u5065\u4eba\n\u83ca\u6c60 \u98a8\u78e8\n\u677e\u5cf6 \u8061\n\u30de\u30ea\u30a6\u30b9 \u8449\n\n\u5cb8 \u512a\u592a\n\u5bae\u8fd1 \u6d77\u6597\n\u5ca9\u6a4b \u7384\u6a39\n\u795e\u5bae\u5bfa \u52c7\u592a\n\u963f\u90e8 \u9855\u5d50\n\u9ad9\u6a4b \u6d77\u6597\n\u6c38\u702c \u5ec9\n\u5e73\u91ce \u7d2b\u8000\n\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b\n#\u7121\u8a00\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257430258,"id_str":"3257430258","name":"LILY","screen_name":"YMS44844753","location":null,"url":null,"description":"\u4ffa\u8db3\u65cf\u3001\u30bb\u30af\u30ac\u30eb\u3001Venus\u3001\u95a2\u30b8\u30e5\u62c5\u3067\u3059\uff01\nVenus\u3060\u3051\u3069\u30c7\u30d3\u30e5\u30fc\u306f\u306a\u306b\u304d\u3093\u5e0c\u671b\uff01","protected":false,"verified":false,"followers_count":668,"friends_count":1846,"listed_count":0,"favourites_count":218,"statuses_count":557,"created_at":"Sat Jun 27 06:57:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632936522082226176\/iVc2sFaC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632936522082226176\/iVc2sFaC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257430258\/1439738783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:51 +0000 2015","id":663726195490492416,"id_str":"663726195490492416","text":"~ \u5b9a\u671f ~\n\u3010 \u62c5\u5f53\u306e\u540d\u524d\u3042\u3063\u305f\u3089RT \u3011\n\n\u4f50\u85e4 \u52dd\u5229\n\u4e2d\u5cf6 \u5065\u4eba\n\u83ca\u6c60 \u98a8\u78e8\n\u677e\u5cf6 \u8061\n\u30de\u30ea\u30a6\u30b9 \u8449\n\n\u5cb8 \u512a\u592a\n\u5bae\u8fd1 \u6d77\u6597\n\u5ca9\u6a4b \u7384\u6a39\n\u795e\u5bae\u5bfa \u52c7\u592a\n\u963f\u90e8 \u9855\u5d50\n\u9ad9\u6a4b \u6d77\u6597\n\u6c38\u702c \u5ec9\n\u5e73\u91ce \u7d2b\u8000\n\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b\n#\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\n#\u76f8\u4e92\u5e0c\u671b\n#\u7e4b\u304c\u308a\u305f\u3044","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886068137,"id_str":"2886068137","name":"\u2727 \u2726 \uff1a \u304d \u3057 \u3086 \u3046 \u304b \uff01","screen_name":"yuka_130116","location":"\uff15 \u6b73 \u5dee \u306e \u604b \u3082 \u3042 \u308a \u3067 \u3059 \u304b \u2312 ? \u00bf","url":null,"description":"\ua4b0 \u2640 \ua4b1 \u5cb8 \u512a \u592a \u306b \u611b \u3055 \u308c \u305f \u3044 \uff2a \uff23 \u30ac \u30fc \u30eb \u2601\ufe0f \u2601\ufe0f\u307f \u3093 \u306a \u306b \u7b11 \u9854 \u3092 \u5c4a \u3051 \u3066 \u3044 \u304d \u307e \u3059 \u2312 \u2661 \u2726 \u263a\ufe0e \u309b \u5984 \u60f3 \u3059 \u308b \u3053 \u3068 \u304c \u6bce \u65e5 \u306e \u697d \u3057 \u307f \uff08 \u2661 \uff09\u2726\u2727 \/ \u76f8 \u68d2 \u261e @skfmslove1","protected":false,"verified":false,"followers_count":6653,"friends_count":4938,"listed_count":26,"favourites_count":248,"statuses_count":4575,"created_at":"Sat Nov 01 08:38:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662599247334805504\/BICCaxoc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662599247334805504\/BICCaxoc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886068137\/1444581473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[104,118]},{"text":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc","indices":[119,126]},{"text":"\u76f8\u4e92\u5e0c\u671b","indices":[127,132]},{"text":"\u7e4b\u304c\u308a\u305f\u3044","indices":[133,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[121,135]},{"text":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc","indices":[136,140]},{"text":"\u76f8\u4e92\u5e0c\u671b","indices":[139,140]},{"text":"\u7e4b\u304c\u308a\u305f\u3044","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"yuka_130116","name":"\u2727 \u2726 \uff1a \u304d \u3057 \u3086 \u3046 \u304b \uff01","id":2886068137,"id_str":"2886068137","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628096946176,"id_str":"663727628096946176","text":"RT @twi_tenkomori: \u3010\u8a71\u984c\u306e\u753b\u50cf\u3011\u500b\u4eba\u7684\u306b\u597d\u304d\u306a\u306e\u3053\u306e4\u3064\u7b11\u7b11 \u300c\u597d\u304d\u306a\u4eba\u3068\u4ed8\u304d\u5408\u3046\u65b9\u6cd5\u300d https:\/\/t.co\/aFUI4t25eb","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231951352,"id_str":"231951352","name":"\u4e45\u9060","screen_name":"konnjikino","location":"\u5948\u826f\u770c","url":null,"description":"\u30a2\u30cb\u30e1\u3068\u58f0\u512a\u3055\u3093\u304c\u5927\u597d\u304d\u306a\u30aa\u30bf\u30af\u306e\u3088\u3046\u306a\u3082\u306e\u3002 \u6700\u8fd1\u306e\u30a2\u30cb\u30e1\u306a\u3089\u5927\u4f53\u898b\u3066\u307e\u3059( *\uff40\u03c9\u00b4) \u65e5\u5e38\u306e\u3053\u3068\u3084\u30a2\u30cb\u30e1\u3001\u30b2\u30fc\u30e0\u3001\u30b9\u30de\u30db\u306e\u3053\u3068\u306a\u3069\u3044\u308d\u3044\u308d\u3064\u3076\u3084\u304f\u4e88\u5b9a\uff57 \u304b\u307e\u3063\u3066\u3082\u3089\u3048\u305f\u3089\u559c\u3073\u307e\u3059(\u7b11) \u30d5\u30a9\u30ed\u30fc\u7b49\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u266a","protected":false,"verified":false,"followers_count":176,"friends_count":249,"listed_count":2,"favourites_count":1686,"statuses_count":51038,"created_at":"Wed Dec 29 22:36:24 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626473407391993857\/iNYZ1QbW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626473407391993857\/iNYZ1QbW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231951352\/1432559574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:12:57 +0000 2015","id":663690736710250499,"id_str":"663690736710250499","text":"\u3010\u8a71\u984c\u306e\u753b\u50cf\u3011\u500b\u4eba\u7684\u306b\u597d\u304d\u306a\u306e\u3053\u306e4\u3064\u7b11\u7b11 \u300c\u597d\u304d\u306a\u4eba\u3068\u4ed8\u304d\u5408\u3046\u65b9\u6cd5\u300d https:\/\/t.co\/aFUI4t25eb","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131385736,"id_str":"1131385736","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","screen_name":"twi_tenkomori","location":"summaryman1989@gmail.com","url":null,"description":"\u51cd\u7d50\u7528\u907f\u96e3\u30a2\u30ab @twi_tenkomor1 LINE\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u3067\u304d\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u3001LINE\u3082\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 http:\/\/line.me\/ti\/p\/%40jem3434e","protected":false,"verified":false,"followers_count":281988,"friends_count":5,"listed_count":2056,"favourites_count":2,"statuses_count":20792,"created_at":"Tue Jan 29 15:43:31 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4528,"favorite_count":5433,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660427713539276800,"id_str":"660427713539276800","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"}]},"extended_entities":{"media":[{"id":660427713539276800,"id_str":"660427713539276800","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427713577005056,"id_str":"660427713577005056","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaOUsAA8lw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaOUsAA8lw4.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427713971224577,"id_str":"660427713971224577","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgbsUAAEeAIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgbsUAAEeAIZ.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427714529136640,"id_str":"660427714529136640","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgdxVEAA3V-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgdxVEAA3V-9.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twi_tenkomori","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","id":1131385736,"id_str":"1131385736","indices":[3,17]}],"symbols":[],"media":[{"id":660427713539276800,"id_str":"660427713539276800","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"}]},"extended_entities":{"media":[{"id":660427713539276800,"id_str":"660427713539276800","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaFVAAAlFcK.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427713577005056,"id_str":"660427713577005056","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgaOUsAA8lw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgaOUsAA8lw4.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427713971224577,"id_str":"660427713971224577","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgbsUAAEeAIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgbsUAAEeAIZ.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"},{"id":660427714529136640,"id_str":"660427714529136640","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpPgdxVEAA3V-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpPgdxVEAA3V-9.jpg","url":"https:\/\/t.co\/aFUI4t25eb","display_url":"pic.twitter.com\/aFUI4t25eb","expanded_url":"http:\/\/twitter.com\/sigurendc1174\/status\/660427723202916352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660427723202916352,"source_status_id_str":"660427723202916352","source_user_id":774464641,"source_user_id_str":"774464641"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113870848,"id_str":"663727628113870848","text":"RT @FixYouEs: y conoc\u00ed a una persona, de esas personas que te cambian la vida al conocerlas.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555278327,"id_str":"555278327","name":"n a t i \u2665","screen_name":"NatiQuiles30","location":"d.p.e4.mp23","url":"http:\/\/www.instagram.com\/natiquiles30","description":"30.6.2013","protected":false,"verified":false,"followers_count":880,"friends_count":620,"listed_count":3,"favourites_count":5327,"statuses_count":42637,"created_at":"Mon Apr 16 17:19:41 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475631126317264896\/yR1ojnQ3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475631126317264896\/yR1ojnQ3.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658364606675554305\/1lcAEAsI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658364606675554305\/1lcAEAsI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555278327\/1445804752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:25:53 +0000 2015","id":663482601584349185,"id_str":"663482601584349185","text":"y conoc\u00ed a una persona, de esas personas que te cambian la vida al conocerlas.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853219472,"id_str":"853219472","name":"sad.","screen_name":"FixYouEs","location":"catalunya","url":"http:\/\/www.instagram.com\/fixyoues","description":"say something i'm giving up on you","protected":false,"verified":false,"followers_count":25200,"friends_count":177,"listed_count":576,"favourites_count":157240,"statuses_count":1212,"created_at":"Sat Sep 29 16:50:00 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDCEC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_tile":true,"profile_link_color":"0431B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"461847","profile_text_color":"A88394","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853219472\/1446922247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":480,"favorite_count":486,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FixYouEs","name":"sad.","id":853219472,"id_str":"853219472","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109504512,"id_str":"663727628109504512","text":"\u5148\u8f29\u306e\u4e8b\u3060\u3051\u3092\u898b\u3066\u3044\u307e\u3059\u304b\u3089\u306d #Nanasakibot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":407005533,"id_str":"407005533","name":"\u4e03\u54b2 \u9022","screen_name":"nanasaki_bot_KA","location":"\u8f1d\u65e5\u6771\u9ad8\u7b49\u5b66\u6821\u3000\uff11\uff0d\uff22","url":null,"description":"\u30a2\u30de\u30ac\u30df\u306e\u4e03\u54b2\u9022\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3001\u30a2\u30de\u30ac\u30df\u306b\u767b\u5834\u3059\u308b\u4e03\u54b2\u306e\u53f0\u8a5e\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3001\u6328\u62f6\u306a\u3069\u30ea\u30d7\u3092\u3059\u308b\u3068\u6328\u62f6\u3092\u3057\u3066\u304f\u308c\u307e\u3059\u3001\u300c\u307a\u308d\u307a\u308d\u300d\u3068\u30ea\u30d7\u3059\u308b\u3068\u6012\u308a\u307e\u3059\u300c\u3079\u3057\u3079\u3057\u300d\u3068\u30ea\u30d7\u3059\u308b\u3068\u75db\u304c\u308a\u307e\u3059\u3002 \u6975\u5e0c\u306b\u4f5c\u8005\u304c\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u304b\u3082\u3067\u3059\uff08\u305f\u3076\u3093\u306a\u3044\u3068\u601d\u3044\u307e\u3059\u304c \u4f5c\u8005 kannzaki_xSEI","protected":false,"verified":false,"followers_count":1328,"friends_count":1676,"listed_count":22,"favourites_count":7,"statuses_count":62809,"created_at":"Mon Nov 07 14:05:18 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3023573361\/2d5b2951aa3225743e104dcde5ae11e3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3023573361\/2d5b2951aa3225743e104dcde5ae11e3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/407005533\/1353693439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Nanasakibot","indices":[16,28]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628130623488,"id_str":"663727628130623488","text":"Kuda is so traumatised you guys hahahahaha stop this","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":194077542,"id_str":"194077542","name":"slim\u2764\ufe0f","screen_name":"star__empress21","location":"Unknown","url":null,"description":"Mama Ethan* Tuks Alumni* Faith is the Black person's federal reserve system.","protected":false,"verified":false,"followers_count":1435,"friends_count":301,"listed_count":14,"favourites_count":279,"statuses_count":74743,"created_at":"Thu Sep 23 11:24:22 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663461010095923200\/8J8ULcQO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663461010095923200\/8J8ULcQO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194077542\/1445805719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972666"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113735680,"id_str":"663727628113735680","text":"\u306a\u3093\u3067\u30b3\u30b9\u57a2\u306e\u65b9\u306b\u30b3\u30b9\u5199\u3064\u3051\u306a\u304b\u3063\u305f\u306e\u304b\u308f\u304b\u3089\u306a\u3044\n\uff08\u57a2\u9593\u9055\u3048\u307e\u3057\u305f\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270389842,"id_str":"2270389842","name":"\u30f6\u30a3@\u30b3\u30b9\u57a2\u79fb\u52d5\u4e2d","screen_name":"keinupi","location":"\u8a66\u3055\u308c\u308b\u5927\u5730","url":null,"description":"\u30cf\u30a4\u30ad\u30e5\u30fc\uff08\u9752\u57ce\u3001\u97f3\u99d2\u3001\u304a\u304b\u3093\uff7d\uff9e\uff09\u3001\u8840\u754c\u6226\u7dda\uff08\u3059\u3066\u3043\u3001\u30b6\u30c3\u30d7\uff09\u3001\u55b0\u7a2e\uff08\uff14\u533a\uff09\u3001\u30d6\u30e9\u30af\u30e9\u3001\u3001PSYCOPASS\uff08\u30ae\u30ce\uff09\u3001\u30c6\u30a4\u30eb\u30ba\u3001\u30b7\u30e7\u30d0\u30ed\u3001FF\u3001DQ\u3001\u5e7b\u6c34\u597d\u304d\u3002 \u6210\u4eba\u2191\u2606\u2606\u30b3\u30b9\u3068\u304a\u7d75\u304b\u304d\u57a2\u79fb\u52d5\u3010@mofumogeko\u3011\u3092\u304a\u306d\u304c\u3044\u3057\u307e\u3059\u00b4\u03c9`*\u2606\u2606","protected":false,"verified":false,"followers_count":160,"friends_count":167,"listed_count":10,"favourites_count":3021,"statuses_count":15426,"created_at":"Tue Dec 31 13:50:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660796928397959168\/Cmx-xKi3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660796928397959168\/Cmx-xKi3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270389842\/1444722237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092862464,"id_str":"663727628092862464","text":"RT @fatihf5: Aman d\u0131\u015far\u0131 \u00e7\u0131kma hep orda kal\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06 https:\/\/t.co\/2xCWGUKCHI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395537023,"id_str":"395537023","name":"OzlemGul #AK","screen_name":"OzlemGul68","location":null,"url":null,"description":"#RE\u0130S SEVDALISIYIM..#AK PART\u0130L\u0130Y\u0130M MUHASEBE OKUDUM VE \u0130K\u0130 SENEDEN SONRA YEN\u0130DEN MUHASEBEC\u0130N\u0130N YANINDA \u00c7ALI\u015eIYORUM.\u2764GALATASARAY\u2764","protected":false,"verified":false,"followers_count":13129,"friends_count":2146,"listed_count":27,"favourites_count":30735,"statuses_count":54514,"created_at":"Fri Oct 21 20:33:00 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662222931141988352\/MAa8tNuT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662222931141988352\/MAa8tNuT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395537023\/1446453473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:30 +0000 2015","id":663720825342844928,"id_str":"663720825342844928","text":"Aman d\u0131\u015far\u0131 \u00e7\u0131kma hep orda kal\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06 https:\/\/t.co\/2xCWGUKCHI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715310577,"id_str":"1715310577","name":"fatih ayg\u00fcn","screen_name":"fatihf5","location":"Konya, T\u00fcrkiye","url":null,"description":"Bu sayfada sigara i\u00e7mek yasakt\u0131r.!!!","protected":false,"verified":false,"followers_count":3371,"friends_count":1875,"listed_count":4,"favourites_count":14192,"statuses_count":15791,"created_at":"Sat Aug 31 10:25:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658720478366953473\/OcoS-fJd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658720478366953473\/OcoS-fJd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715310577\/1440665387","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720816085987328,"id_str":"663720816085987328","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","url":"https:\/\/t.co\/2xCWGUKCHI","display_url":"pic.twitter.com\/2xCWGUKCHI","expanded_url":"http:\/\/twitter.com\/fatihf5\/status\/663720825342844928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720816085987328,"id_str":"663720816085987328","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","url":"https:\/\/t.co\/2xCWGUKCHI","display_url":"pic.twitter.com\/2xCWGUKCHI","expanded_url":"http:\/\/twitter.com\/fatihf5\/status\/663720825342844928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fatihf5","name":"fatih ayg\u00fcn","id":1715310577,"id_str":"1715310577","indices":[3,11]}],"symbols":[],"media":[{"id":663720816085987328,"id_str":"663720816085987328","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","url":"https:\/\/t.co\/2xCWGUKCHI","display_url":"pic.twitter.com\/2xCWGUKCHI","expanded_url":"http:\/\/twitter.com\/fatihf5\/status\/663720825342844928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663720825342844928,"source_status_id_str":"663720825342844928","source_user_id":1715310577,"source_user_id_str":"1715310577"}]},"extended_entities":{"media":[{"id":663720816085987328,"id_str":"663720816085987328","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCkNDWcAAt635.jpg","url":"https:\/\/t.co\/2xCWGUKCHI","display_url":"pic.twitter.com\/2xCWGUKCHI","expanded_url":"http:\/\/twitter.com\/fatihf5\/status\/663720825342844928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663720825342844928,"source_status_id_str":"663720825342844928","source_user_id":1715310577,"source_user_id_str":"1715310577"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092702721,"id_str":"663727628092702721","text":"RT @mansion_Gmen: \u6d77\u5cb8\u7dda\u304b\u30892km\u4ee5\u5185\u306e\u30de\u30f3\u30b7\u30e7\u30f3\u3092\u8cb7\u3063\u3066\u306f\u3044\u3051\u306a\u3044\u3068\u8a00\u3063\u305f\u306e\u306f\u3001\u5869\u5bb3\u306e\u5f71\u97ff\u3092\u307e\u3068\u3082\u306b\u53d7\u3051\u308b\u304b\u3089\u3060\u3002\u300c\u6d77\u306e\u8fd1\u304f\u306e\u4f4f\u5b85\u306f\u52a3\u5316\u304c\u65e9\u3044\u300d\u3068\u3044\u3046\u306e\u306f\u3001\u90fd\u5e02\u4f1d\u8aac\u3067\u3082\u4f55\u3067\u3082\u306a\u3044\u3002\u6d77\u8fd1\u30de\u30f3\u30b7\u30e7\u30f3\u306f\u5916\u58c1\u7b49\u306b\u7279\u6b8a\u30b3\u30fc\u30c6\u30a3\u30f3\u30b0\u3092\u3057\u3066\u3042\u308b\u304c\u3001\u305d\u308c\u3067\u3082\u5185\u9678\u30de\u30f3\u30b7\u30e7\u30f3\u3068\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192894139,"id_str":"192894139","name":"giver@\u53cd\u6226\u53cd\u539f\u767a\u53cdTPP","screen_name":"giver7888","location":"TOKYO","url":null,"description":"\u3075\u306a\u3063\u3057\u30fc\u306f\u7652\u3057\u3068\u5143\u6c17\u306e\u8c61\u5fb4\u3002\u6226\u4e89\u3001\u539f\u767a\u3001\u30de\u30a4\u30ca\u30f3\u30d0\u30fc\u3001TPP\u3001\u79d8\u5bc6\u4fdd\u8b77\u6cd5\u306b\u53cd\u5bfe\u3002","protected":false,"verified":false,"followers_count":546,"friends_count":1069,"listed_count":5,"favourites_count":3702,"statuses_count":17660,"created_at":"Mon Sep 20 13:04:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512264522900320257\/2dJes9fi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512264522900320257\/2dJes9fi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192894139\/1411048411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 11:15:19 +0000 2015","id":662589069516390404,"id_str":"662589069516390404","text":"\u6d77\u5cb8\u7dda\u304b\u30892km\u4ee5\u5185\u306e\u30de\u30f3\u30b7\u30e7\u30f3\u3092\u8cb7\u3063\u3066\u306f\u3044\u3051\u306a\u3044\u3068\u8a00\u3063\u305f\u306e\u306f\u3001\u5869\u5bb3\u306e\u5f71\u97ff\u3092\u307e\u3068\u3082\u306b\u53d7\u3051\u308b\u304b\u3089\u3060\u3002\u300c\u6d77\u306e\u8fd1\u304f\u306e\u4f4f\u5b85\u306f\u52a3\u5316\u304c\u65e9\u3044\u300d\u3068\u3044\u3046\u306e\u306f\u3001\u90fd\u5e02\u4f1d\u8aac\u3067\u3082\u4f55\u3067\u3082\u306a\u3044\u3002\u6d77\u8fd1\u30de\u30f3\u30b7\u30e7\u30f3\u306f\u5916\u58c1\u7b49\u306b\u7279\u6b8a\u30b3\u30fc\u30c6\u30a3\u30f3\u30b0\u3092\u3057\u3066\u3042\u308b\u304c\u3001\u305d\u308c\u3067\u3082\u5185\u9678\u30de\u30f3\u30b7\u30e7\u30f3\u3068\u306f\u6bd4\u8f03\u306b\u306a\u3089\u306a\u3044\u307b\u3069\u52a3\u5316\u304c\u65e9\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380381970,"id_str":"380381970","name":"\u30de\u30f3\u30b7\u30e7\u30f3G\u30e1\u30f3","screen_name":"mansion_Gmen","location":"\u6771\u4eac\u2190\u2192\u5343\u8449","url":"http:\/\/ameblo.jp\/condominium-adviser\/","description":"\u5206\u8b72\u30de\u30f3\u30b7\u30e7\u30f3\u30de\u30cd\u30b8\u30e1\u30f3\u30c8\u306e\u5c02\u9580\u5bb6\uff08\u30de\u30f3\u30b7\u30e7\u30f3\u7ba1\u7406\u58eb\u3001\u7ba1\u7406\u696d\u52d9\u4e3b\u4efb\u8005\u3001\u5b85\u5efa\u58eb\uff09\u3067\u3059\u3002\u30de\u30f3\u30b7\u30e7\u30f3\u7ba1\u7406\u58eb\u306f\u3001\u5c02\u9580\u7684\u77e5\u8b58\u3092\u3082\u3063\u3066\u3001\u7ba1\u7406\u7d44\u5408\u306e\u904b\u55b6\u305d\u306e\u4ed6\u30de\u30f3\u30b7\u30e7\u30f3\u306e\u7ba1\u7406\u306b\u95a2\u3057\u3001\u7ba1\u7406\u7d44\u5408\u306e\u7ba1\u7406\u8005\u7b49\u53c8\u306f\u533a\u5206\u6240\u6709\u8005\u7b49\u306e\u76f8\u8ac7\u306b\u5fdc\u3058\u3001\u52a9\u8a00\u3001\u6307\u5c0e\u305d\u306e\u4ed6\u306e\u63f4\u52a9\u3092\u884c\u3046\u56fd\u5bb6\u8cc7\u683c\u8005\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":5389,"friends_count":210,"listed_count":176,"favourites_count":379,"statuses_count":6819,"created_at":"Mon Sep 26 15:14:16 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658899097592573952\/3BxQJmzf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658899097592573952\/3BxQJmzf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380381970\/1402557910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":55,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mansion_Gmen","name":"\u30de\u30f3\u30b7\u30e7\u30f3G\u30e1\u30f3","id":380381970,"id_str":"380381970","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628118020096,"id_str":"663727628118020096","text":"RT @s_flow88: 151108 \ub9cc\uc138 \ubbf8\ub2c8\ud32c\ubbf8\ud305 #\uc138\ube10\ud2f4 #scoups #seventeen @pledis_17 \ubd80(\ub7ec\uc6b4)\uc2b9\uad00...\u3160 https:\/\/t.co\/4V5MzlwAOU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287835405,"id_str":"287835405","name":"|Goldmoon|","screen_name":"kurchawaya","location":"St.Petersburg, Russia","url":"http:\/\/vk.com\/kurchawaya","description":"MCD\u2654Dreamers\u2665 @15and_rus admin\u2665Baek Yerin one love\u2665 BBC, Limits, DEEPS etc. \u2665 | slash | coverdance | raise your hands if you hate me | \u044f \u043d\u0435\u043d\u0430\u0432\u0438\u0436\u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0438\u0437 \u0432\u0430\u0441","protected":false,"verified":false,"followers_count":198,"friends_count":407,"listed_count":7,"favourites_count":65,"statuses_count":66908,"created_at":"Mon Apr 25 19:29:42 +0000 2011","utc_offset":10800,"time_zone":"Volgograd","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"AD2626","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/881572662\/89926e2165972350cfcd4fab32d0004b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/881572662\/89926e2165972350cfcd4fab32d0004b.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659087067666890752\/krnPZIG4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659087067666890752\/krnPZIG4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287835405\/1439829708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:03:32 +0000 2015","id":663265584969220097,"id_str":"663265584969220097","text":"151108 \ub9cc\uc138 \ubbf8\ub2c8\ud32c\ubbf8\ud305 #\uc138\ube10\ud2f4 #scoups #seventeen @pledis_17 \ubd80(\ub7ec\uc6b4)\uc2b9\uad00...\u3160 https:\/\/t.co\/4V5MzlwAOU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3795041592,"id_str":"3795041592","name":"s.flow","screen_name":"s_flow88","location":null,"url":null,"description":"Better than ever.","protected":false,"verified":false,"followers_count":4749,"friends_count":11,"listed_count":190,"favourites_count":21,"statuses_count":266,"created_at":"Mon Oct 05 19:05:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651115541281701889\/qEfHNa_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651115541281701889\/qEfHNa_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3795041592\/1445266391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":169,"favorite_count":86,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[16,20]},{"text":"scoups","indices":[21,28]},{"text":"seventeen","indices":[29,39]}],"urls":[],"user_mentions":[{"screen_name":"pledis_17","name":"\uc138\ube10\ud2f4(SEVENTEEN)","id":956888370,"id_str":"956888370","indices":[40,50]}],"symbols":[],"media":[{"id":663265583262109696,"id_str":"663265583262109696","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":708,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663265583262109696,"id_str":"663265583262109696","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":708,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"}}},{"id":663265561938280448,"id_str":"663265561938280448","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkg7MUwAABzxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkg7MUwAABzxB.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":771,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":451,"resize":"fit"},"small":{"w":340,"h":256,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[30,34]},{"text":"scoups","indices":[35,42]},{"text":"seventeen","indices":[43,53]}],"urls":[],"user_mentions":[{"screen_name":"s_flow88","name":"s.flow","id":3795041592,"id_str":"3795041592","indices":[3,12]},{"screen_name":"pledis_17","name":"\uc138\ube10\ud2f4(SEVENTEEN)","id":956888370,"id_str":"956888370","indices":[54,64]}],"symbols":[],"media":[{"id":663265583262109696,"id_str":"663265583262109696","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":708,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"}},"source_status_id":663265584969220097,"source_status_id_str":"663265584969220097","source_user_id":3795041592,"source_user_id_str":"3795041592"}]},"extended_entities":{"media":[{"id":663265583262109696,"id_str":"663265583262109696","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkiKoUkAAUEpg.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":708,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"}},"source_status_id":663265584969220097,"source_status_id_str":"663265584969220097","source_user_id":3795041592,"source_user_id_str":"3795041592"},{"id":663265561938280448,"id_str":"663265561938280448","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkg7MUwAABzxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkg7MUwAABzxB.jpg","url":"https:\/\/t.co\/4V5MzlwAOU","display_url":"pic.twitter.com\/4V5MzlwAOU","expanded_url":"http:\/\/twitter.com\/s_flow88\/status\/663265584969220097\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":771,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":451,"resize":"fit"},"small":{"w":340,"h":256,"resize":"fit"}},"source_status_id":663265584969220097,"source_status_id_str":"663265584969220097","source_user_id":3795041592,"source_user_id_str":"3795041592"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113850368,"id_str":"663727628113850368","text":"@LarnieOnline \ud83d\udc40 https:\/\/t.co\/AQGa5yTWpl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":67398497,"in_reply_to_user_id_str":"67398497","in_reply_to_screen_name":"LarnieOnline","user":{"id":98573884,"id_str":"98573884","name":"SelfMadeJones","screen_name":"HJ_InTheMix","location":"LDN","url":null,"description":"Love $ex Dreams = L$D","protected":false,"verified":false,"followers_count":810,"friends_count":380,"listed_count":3,"favourites_count":3217,"statuses_count":29936,"created_at":"Tue Dec 22 07:02:40 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493391290269044736\/9Mivo-OT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493391290269044736\/9Mivo-OT.jpeg","profile_background_tile":true,"profile_link_color":"6AFCB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"6A00FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661505032538497024\/5PcViDA0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661505032538497024\/5PcViDA0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98573884\/1443094553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663433807022809089,"quoted_status_id_str":"663433807022809089","quoted_status":{"created_at":"Sun Nov 08 19:12:00 +0000 2015","id":663433807022809089,"id_str":"663433807022809089","text":"when daddy comes home\ud83d\udc85\ud83d\udc8d https:\/\/t.co\/Womck8Q6kX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042492325,"id_str":"3042492325","name":"Jhay.","screen_name":"livin_postal","location":"504-HOTLINE(B)LING","url":null,"description":"Most Hated Because I'm Over Everybody\u2764\ufe0fBut I Mean Imma Still Do What I Gotta Do Regardless","protected":false,"verified":false,"followers_count":6732,"friends_count":1194,"listed_count":5,"favourites_count":177,"statuses_count":1272,"created_at":"Thu Feb 26 04:57:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573221601015033857\/8V62pstS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573221601015033857\/8V62pstS.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617946831717163008\/CQxWiIsh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617946831717163008\/CQxWiIsh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042492325\/1446741782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/Womck8Q6kX","display_url":"pic.twitter.com\/Womck8Q6kX","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/Womck8Q6kX","display_url":"pic.twitter.com\/Womck8Q6kX","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663433789612294144,"id_str":"663433789612294144","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","url":"https:\/\/t.co\/Womck8Q6kX","display_url":"pic.twitter.com\/Womck8Q6kX","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663433789930999808,"id_str":"663433789930999808","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","url":"https:\/\/t.co\/Womck8Q6kX","display_url":"pic.twitter.com\/Womck8Q6kX","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663433790258196480,"id_str":"663433790258196480","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","url":"https:\/\/t.co\/Womck8Q6kX","display_url":"pic.twitter.com\/Womck8Q6kX","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":642,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AQGa5yTWpl","expanded_url":"https:\/\/twitter.com\/livin_postal\/status\/663433807022809089","display_url":"twitter.com\/livin_postal\/s\u2026","indices":[16,39]}],"user_mentions":[{"screen_name":"LarnieOnline","name":"LARNiE","id":67398497,"id_str":"67398497","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109668352,"id_str":"663727628109668352","text":"@R_A_Ziemkiewicz Ca\u0142e to jego publiczne pajacowanie jest pr\u00f3b\u0105 obej\u015bcie zakazu reklamy dla adwokat\u00f3w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716286715854849,"in_reply_to_status_id_str":"663716286715854849","in_reply_to_user_id":1388943902,"in_reply_to_user_id_str":"1388943902","in_reply_to_screen_name":"R_A_Ziemkiewicz","user":{"id":134254367,"id_str":"134254367","name":"Lukasz Zak","screen_name":"lukas_zak","location":"G\u00f6rlitz","url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":85,"listed_count":1,"favourites_count":554,"statuses_count":392,"created_at":"Sat Apr 17 22:24:13 +0000 2010","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1268648690\/cieszyn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1268648690\/cieszyn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134254367\/1431754063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"R_A_Ziemkiewicz","name":"Rafa\u0142 A. Ziemkiewicz","id":1388943902,"id_str":"1388943902","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113743873,"id_str":"663727628113743873","text":"RT @DEAR0412: \uc6b0\ub9ac \ud574\uc2dc\ud0dc\uadf8 \uc548\ud574\ub3c4 \ub429\ub2c8\ub2e4 https:\/\/t.co\/7LI6vsYbcS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3854630718,"id_str":"3854630718","name":"\ubbf8\ub204\ub9ac","screen_name":"Reminding7__7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":22,"listed_count":0,"favourites_count":11,"statuses_count":63,"created_at":"Sun Oct 11 04:24:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662537863783800832\/j57R7Cae_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662537863783800832\/j57R7Cae_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:16 +0000 2015","id":663725295808049154,"id_str":"663725295808049154","text":"\uc6b0\ub9ac \ud574\uc2dc\ud0dc\uadf8 \uc548\ud574\ub3c4 \ub429\ub2c8\ub2e4 https:\/\/t.co\/7LI6vsYbcS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222103226,"id_str":"3222103226","name":"\uc5e0\ub137\uc744 \ubcf4\uba74 \uc9d6\ub294 \ub514\uc5b4","screen_name":"DEAR0412","location":null,"url":null,"description":"\uc778\uc7a5\uc740 \uc9d5\uace0\ub2d8\u2764 \uc804\ucc28\uc2a4 \ubc30\uc1a1\uc911","protected":false,"verified":false,"followers_count":366,"friends_count":303,"listed_count":0,"favourites_count":193,"statuses_count":4812,"created_at":"Thu May 21 08:30:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661919529480523776\/Cw03VxKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661919529480523776\/Cw03VxKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222103226\/1445867445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":621,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725275562180609,"id_str":"663725275562180609","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725275562180609,"id_str":"663725275562180609","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663725285825601537,"id_str":"663725285825601537","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGoYIUYAEFL6x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGoYIUYAEFL6x.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":213,"resize":"fit"},"small":{"w":340,"h":120,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":364,"resize":"fit"}}},{"id":663725287490744327,"id_str":"663725287490744327","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGoeVUcAc-mib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGoeVUcAc-mib.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":760,"resize":"fit"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DEAR0412","name":"\uc5e0\ub137\uc744 \ubcf4\uba74 \uc9d6\ub294 \ub514\uc5b4","id":3222103226,"id_str":"3222103226","indices":[3,12]}],"symbols":[],"media":[{"id":663725275562180609,"id_str":"663725275562180609","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663725295808049154,"source_status_id_str":"663725295808049154","source_user_id":3222103226,"source_user_id_str":"3222103226"}]},"extended_entities":{"media":[{"id":663725275562180609,"id_str":"663725275562180609","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnx5VAAEgjzN.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663725295808049154,"source_status_id_str":"663725295808049154","source_user_id":3222103226,"source_user_id_str":"3222103226"},{"id":663725285825601537,"id_str":"663725285825601537","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGoYIUYAEFL6x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGoYIUYAEFL6x.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":213,"resize":"fit"},"small":{"w":340,"h":120,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":364,"resize":"fit"}},"source_status_id":663725295808049154,"source_status_id_str":"663725295808049154","source_user_id":3222103226,"source_user_id_str":"3222103226"},{"id":663725287490744327,"id_str":"663725287490744327","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGoeVUcAc-mib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGoeVUcAc-mib.jpg","url":"https:\/\/t.co\/7LI6vsYbcS","display_url":"pic.twitter.com\/7LI6vsYbcS","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725295808049154\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":760,"resize":"fit"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663725295808049154,"source_status_id_str":"663725295808049154","source_user_id":3222103226,"source_user_id_str":"3222103226"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122267648,"id_str":"663727628122267648","text":"RT @xunetsev: @murkoff de Ciara*","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":525948197,"id_str":"525948197","name":"Dexter Murkoff","screen_name":"murkoff","location":"Bronx, NY","url":null,"description":"I used to be the type of kid that would always think the sky is falling. Why am I so differently wired? Am I a martian?","protected":false,"verified":false,"followers_count":439,"friends_count":171,"listed_count":2,"favourites_count":443,"statuses_count":20316,"created_at":"Fri Mar 16 02:14:59 +0000 2012","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588607889410887680\/IarYq1PW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588607889410887680\/IarYq1PW.png","profile_background_tile":true,"profile_link_color":"080808","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725859539431424\/VFOzUDBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725859539431424\/VFOzUDBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/525948197\/1447079529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:53 +0000 2015","id":663726206462881792,"id_str":"663726206462881792","text":"@murkoff de Ciara*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725925578752000,"in_reply_to_status_id_str":"663725925578752000","in_reply_to_user_id":525948197,"in_reply_to_user_id_str":"525948197","in_reply_to_screen_name":"murkoff","user":{"id":3398976767,"id_str":"3398976767","name":"Claguss","screen_name":"xunetsev","location":"Casidy mi pplbf. 287.","url":null,"description":"Benjam\u00edn Smith. 181. Claguss. 151214. Emi. 281.","protected":false,"verified":false,"followers_count":306,"friends_count":230,"listed_count":0,"favourites_count":176,"statuses_count":1688,"created_at":"Sat Aug 01 17:23:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663480192132886528\/eP9VmEL3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663480192132886528\/eP9VmEL3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3398976767\/1446913491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"murkoff","name":"Dexter Murkoff","id":525948197,"id_str":"525948197","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xunetsev","name":"Claguss","id":3398976767,"id_str":"3398976767","indices":[3,12]},{"screen_name":"murkoff","name":"Dexter Murkoff","id":525948197,"id_str":"525948197","indices":[14,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101136384,"id_str":"663727628101136384","text":"I'm so inactiveeeeeee so yeah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386466180,"id_str":"386466180","name":"faith","screen_name":"faiithxhoran_","location":null,"url":null,"description":"Love my man, @NiallOfficial \u2601","protected":false,"verified":false,"followers_count":2141,"friends_count":999,"listed_count":6,"favourites_count":8236,"statuses_count":32392,"created_at":"Fri Oct 07 10:21:16 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629263709240586240\/LbZcUn_H.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629263709240586240\/LbZcUn_H.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659061625886904321\/VeOlkWfK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659061625886904321\/VeOlkWfK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386466180\/1445967851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105285633,"id_str":"663727628105285633","text":"@FunDrive30 \n\n\u3068\u307e\u3089\u3093\u3061\u3093\u3061\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727221526282240,"in_reply_to_status_id_str":"663727221526282240","in_reply_to_user_id":1109197526,"in_reply_to_user_id_str":"1109197526","in_reply_to_screen_name":"FunDrive30","user":{"id":309534647,"id_str":"309534647","name":"\u54b2\uff20\u6c38\u9060\u306e14\u6b73","screen_name":"saki_tunderera","location":"\u307d\u3063\u304f\u3093 \u164f\u0324\u032b\u035a \u3074\u30fc\u3061\u3083\u3093 \u164f\u0324\u032b\u035a \u3074\u304b\u3061\u3085\u3046 ","url":null,"description":"\u611b\u514e2\u7fbd\u3068\u305f\u307e\u306bBCNR33\u306e\u3042\u308b\u751f\u6d3b\u3002","protected":false,"verified":false,"followers_count":778,"friends_count":616,"listed_count":11,"favourites_count":26890,"statuses_count":128439,"created_at":"Thu Jun 02 07:41:34 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315527094\/imagesCAWD2XVT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315527094\/imagesCAWD2XVT.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597683784419414016\/8gnEShE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597683784419414016\/8gnEShE__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309534647\/1442904646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FunDrive30","name":"\u305f\u3064\u307e\u3002","id":1109197526,"id_str":"1109197526","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092727297,"id_str":"663727628092727297","text":"@izumi_pinnko \u3042\u308a\u304c\u3068\u3046\ud83d\udc9b\ud83d\udc9c\ud83d\udc99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726278550249473,"in_reply_to_status_id_str":"663726278550249473","in_reply_to_user_id":2545261387,"in_reply_to_user_id_str":"2545261387","in_reply_to_screen_name":"izumi_pinnko","user":{"id":2934054943,"id_str":"2934054943","name":"Kanami.","screen_name":"Snsd8Kana","location":"\u30e6\u30ca\u2661","url":null,"description":"\uff3c 98line... \uff0f Gifusho\u2601 like\u00bb\u00bbGirl's Generation, MACO, fashion, adidas, Disney...\u2661\u25b7\u9b54\u6cd5\u306e\u8a00\u8449\u25c1\u2661*\uff61\uff9f","protected":false,"verified":false,"followers_count":392,"friends_count":387,"listed_count":0,"favourites_count":1014,"statuses_count":658,"created_at":"Wed Dec 17 22:25:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663103462423396352\/db_Ln6qW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663103462423396352\/db_Ln6qW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2934054943\/1443448090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"izumi_pinnko","name":"\u3074\u3093\u3053\u2721\u21af\u21af","id":2545261387,"id_str":"2545261387","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628126257152,"id_str":"663727628126257152","text":"RT @mainedcm: Mauuna kaya sya magtext? O ako dapat? #AlDubForTNT http:\/\/t.co\/gkRa2holca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054092559,"id_str":"4054092559","name":"Gio Leonard Malong","screen_name":"glmalong","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":43,"listed_count":5,"favourites_count":282,"statuses_count":228,"created_at":"Thu Oct 29 04:57:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663676760832147456\/xy1bTPBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663676760832147456\/xy1bTPBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054092559\/1447067836","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 12 14:06:14 +0000 2015","id":642700750909378560,"id_str":"642700750909378560","text":"Mauuna kaya sya magtext? O ako dapat? #AlDubForTNT http:\/\/t.co\/gkRa2holca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63701775,"id_str":"63701775","name":"Maine Mendoza","screen_name":"mainedcm","location":null,"url":null,"description":"yup, I am that girl","protected":false,"verified":true,"followers_count":2488034,"friends_count":276,"listed_count":1549,"favourites_count":1400,"statuses_count":38005,"created_at":"Fri Aug 07 12:07:22 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_tile":true,"profile_link_color":"1A1A17","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63701775\/1446987129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23367,"favorite_count":70991,"entities":{"hashtags":[{"text":"AlDubForTNT","indices":[38,50]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":642700545703088130,"id_str":"642700545703088130","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","url":"http:\/\/t.co\/gkRa2holca","display_url":"pic.twitter.com\/gkRa2holca","expanded_url":"http:\/\/twitter.com\/mainedcm\/status\/642700750909378560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":832,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":471,"resize":"fit"},"large":{"w":738,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":642700545703088130,"id_str":"642700545703088130","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","url":"http:\/\/t.co\/gkRa2holca","display_url":"pic.twitter.com\/gkRa2holca","expanded_url":"http:\/\/twitter.com\/mainedcm\/status\/642700750909378560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":832,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":471,"resize":"fit"},"large":{"w":738,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AlDubForTNT","indices":[52,64]}],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[3,12]}],"symbols":[],"media":[{"id":642700545703088130,"id_str":"642700545703088130","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","url":"http:\/\/t.co\/gkRa2holca","display_url":"pic.twitter.com\/gkRa2holca","expanded_url":"http:\/\/twitter.com\/mainedcm\/status\/642700750909378560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":832,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":471,"resize":"fit"},"large":{"w":738,"h":1024,"resize":"fit"}},"source_status_id":642700750909378560,"source_status_id_str":"642700750909378560","source_user_id":63701775,"source_user_id_str":"63701775"}]},"extended_entities":{"media":[{"id":642700545703088130,"id_str":"642700545703088130","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COtUvbuVEAIKsDj.jpg","url":"http:\/\/t.co\/gkRa2holca","display_url":"pic.twitter.com\/gkRa2holca","expanded_url":"http:\/\/twitter.com\/mainedcm\/status\/642700750909378560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":832,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":471,"resize":"fit"},"large":{"w":738,"h":1024,"resize":"fit"}},"source_status_id":642700750909378560,"source_status_id_str":"642700750909378560","source_user_id":63701775,"source_user_id_str":"63701775"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079972665"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105330688,"id_str":"663727628105330688","text":"\u305f\u3068\u3048\u30d1\u30fc\u30ab\u30fc\u306e\u30c1\u30e3\u30c3\u30af\u58ca\u3055\u308c\u305f\u3068\u3057\u3066\u3082 \u30af\u30c3\u30b7\u30e7\u30f3\u306e\u30ef\u30bf\u3092\u305c\u30fc\u3093\u3076\u51fa\u3057\u3061\u3083\u3063\u3068\u3057\u3066\u3082\u3053\u306e\u76ee\u3092\u898b\u305f\u3089\u8a31\u3057\u3061\u3083\u3046\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2610657444,"id_str":"2610657444","name":"\u30af\u30cb\u30cb","screen_name":"k4188","location":null,"url":null,"description":"\u30ef\u30f3\u3061\u3083\u3093\u30cd\u30b3\u3061\u3083\u3093\u5927\u597d\u304d\uff01","protected":false,"verified":false,"followers_count":2,"friends_count":9,"listed_count":0,"favourites_count":10,"statuses_count":18,"created_at":"Mon Jul 07 23:49:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628096966656,"id_str":"663727628096966656","text":"RT @wljdnuevaecija: Thank you again TEAM OTWOL! @dreamscapeph @tonetjadaone @jojosaguin @danvillegas @kyliembalagtas\n\n#OTWOLWish https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473801416,"id_str":"2473801416","name":"Sazie Morii \u2661","screen_name":"sazieguurl","location":"Sanfransokyo","url":"http:\/\/instagram.com\/sazieguurl","description":"ALWAYS AND FOREVER JAMES AND NADINE. \u2764\ufe0f","protected":false,"verified":false,"followers_count":263,"friends_count":336,"listed_count":3,"favourites_count":8146,"statuses_count":28056,"created_at":"Fri May 02 10:35:11 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F783BB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462198037503168512\/4Z5rZCf_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462198037503168512\/4Z5rZCf_.jpeg","profile_background_tile":true,"profile_link_color":"ED0E58","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660683572248883200\/dXRJG_4D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660683572248883200\/dXRJG_4D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473801416\/1399029506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:58 +0000 2015","id":663722703191343104,"id_str":"663722703191343104","text":"Thank you again TEAM OTWOL! @dreamscapeph @tonetjadaone @jojosaguin @danvillegas @kyliembalagtas\n\n#OTWOLWish https:\/\/t.co\/R5tL4iJkoa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2573030960,"id_str":"2573030960","name":"WLJD Nueva Ecija","screen_name":"wljdnuevaecija","location":"Nueva Ecija","url":"https:\/\/docs.google.com\/forms\/d\/1bfs3OqfG_I2vN-JDbAysMNImpDIU0vNy_WlMtyfLT8I\/viewform?usp=send_form","description":"Official @welovejadine Nueva Ecija Chapter. We aim to bring JaDines NE together and do what we do best,love & support @jamesxreid & @hellobangsie\u2022061714\u2022JOIN\u2935\ufe0f","protected":false,"verified":false,"followers_count":9693,"friends_count":217,"listed_count":11,"favourites_count":11857,"statuses_count":25620,"created_at":"Tue Jun 17 14:42:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506693072709623808\/p7TgORGp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506693072709623808\/p7TgORGp.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660463181995728896\/mNShm-kj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660463181995728896\/mNShm-kj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2573030960\/1446302421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721253832781824,"quoted_status_id_str":"663721253832781824","quoted_status":{"created_at":"Mon Nov 09 14:14:12 +0000 2015","id":663721253832781824,"id_str":"663721253832781824","text":"Salamat po Kapamilya.Bukas po ulit! Pak! #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195682573,"id_str":"195682573","name":"Jojo Saguin","screen_name":"jojosaguin","location":"\u00dcT: 14.639431,121.022056","url":null,"description":"Tv director,Transpinay","protected":false,"verified":false,"followers_count":52585,"friends_count":307,"listed_count":34,"favourites_count":236,"statuses_count":13076,"created_at":"Mon Sep 27 09:50:56 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512302623802671104\/nE56JFNk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512302623802671104\/nE56JFNk_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[41,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":31,"favorite_count":7,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[98,108]}],"urls":[{"url":"https:\/\/t.co\/R5tL4iJkoa","expanded_url":"https:\/\/twitter.com\/jojosaguin\/status\/663721253832781824","display_url":"twitter.com\/jojosaguin\/sta\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"DreamscapePH","name":"Dreamscape","id":1299266473,"id_str":"1299266473","indices":[28,41]},{"screen_name":"tonetjadaone","name":"Tonette, Tonette","id":1062544248,"id_str":"1062544248","indices":[42,55]},{"screen_name":"jojosaguin","name":"Jojo Saguin","id":195682573,"id_str":"195682573","indices":[56,67]},{"screen_name":"danvillegas","name":"Dan Villegas, FCS","id":34209401,"id_str":"34209401","indices":[68,80]},{"screen_name":"kyliembalagtas","name":"Kylie M. Balagtas","id":1060445228,"id_str":"1060445228","indices":[81,96]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[118,128]}],"urls":[{"url":"https:\/\/t.co\/R5tL4iJkoa","expanded_url":"https:\/\/twitter.com\/jojosaguin\/status\/663721253832781824","display_url":"twitter.com\/jojosaguin\/sta\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"wljdnuevaecija","name":"WLJD Nueva Ecija","id":2573030960,"id_str":"2573030960","indices":[3,18]},{"screen_name":"DreamscapePH","name":"Dreamscape","id":1299266473,"id_str":"1299266473","indices":[48,61]},{"screen_name":"tonetjadaone","name":"Tonette, Tonette","id":1062544248,"id_str":"1062544248","indices":[62,75]},{"screen_name":"jojosaguin","name":"Jojo Saguin","id":195682573,"id_str":"195682573","indices":[76,87]},{"screen_name":"danvillegas","name":"Dan Villegas, FCS","id":34209401,"id_str":"34209401","indices":[88,100]},{"screen_name":"kyliembalagtas","name":"Kylie M. Balagtas","id":1060445228,"id_str":"1060445228","indices":[101,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092764160,"id_str":"663727628092764160","text":"\u30a2\u30eb\u30de \u30d6\u30eb\u30fc\u30c8\u30d1\u30fc\u30ba \u30cf\u30fc\u30c8 \u30cd\u30c3\u30af\u30ec\u30b9 \u4e00\u7c92 \u30da\u30f3\u30c0\u30f3\u30c8 k18\u30d4\u30f3\u30af\u30b4\u30fc\u30eb\u30c9 \u30c1\u30e3\u30fc\u30e0 \u3010111012wc39\u3011 [\u30b8\u30e5\u30a8\u30ea\u30fc\u5de5\u623f\u30a2\u30eb\u30de]ALMA (2)\u65b0\u54c1\uff1a \uffe5 34,650 \uffe5 9,800 (\u3053\u306e\u5546\u54c1\u306e\u73fe... https:\/\/t.co\/68Ze9BBxrE","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530786964,"id_str":"2530786964","name":"\u30ab\u30eb\u30b7\u30a6\u30e0\u30dc\u30fc\u30f3","screen_name":"vqesnx","location":"\u9aa8\u306e\u4e16\u754c","url":"http:\/\/www.amazon.co.jp\/?tag=amznid-22","description":"\u307b\u306d\u30db\u30cd\u9aa8\u30fc","protected":false,"verified":false,"followers_count":18,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":49381,"created_at":"Wed May 28 20:25:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471749380291063808\/N1WYgBCA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471749380291063808\/N1WYgBCA_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/68Ze9BBxrE","expanded_url":"http:\/\/amzn.to\/1Sc8Gwj","display_url":"amzn.to\/1Sc8Gwj","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109541376,"id_str":"663727628109541376","text":"@chocolove743 \uc544\ub0b0\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc540\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uac1c\uc816\uc808\ud558\ub2c8\uae4c \ubd10\uc8fc\ub3c4\ub85d \ud558\uac9f\ub2e4.....\uc73c\uc73d \uc544\ub2c8\ub2e4! \ub124\uac00 \ubc14\uc904\uc904 \uc54c\uace0?!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727429131698176,"in_reply_to_status_id_str":"663727429131698176","in_reply_to_user_id":3271485246,"in_reply_to_user_id_str":"3271485246","in_reply_to_screen_name":"chocolove743","user":{"id":3169338258,"id_str":"3169338258","name":"Pure's","screen_name":"pure716914","location":null,"url":"http:\/\/blog.naver.com\/tlfqjfnql","description":"\uc5b4\uca4c\ub2e4 \uae00\uc4f0\ub294 \ud4e8\uc5b4\uc758 \ud638\ubaa8\uacc4\uc815 \/ \ub85c\uc6b0\ub8e8 \ub5a1 \uc18c\ucde8\u2605 \/ \uafc0\uc0ac\uc57d\uc544\ub2c8\uace0 \uafc0\uc784 \uc591\ubd09\uc7a5 \uc6c1\ucad1\uc6c1 \/ \ud0d1\ub1fd \ub9ac\ubc84\uc528\ubc1c \uc67c\ub1fd\uc886\uae4c \/ \uc6d0\ud53c\uc2a4 \ub8e8\ub978&\ub4dc\ub798\uc0ac\ubcf4 \/ \ud788\uc9c0\uae34 \uae30\ubc18 \uae34\ub978 \ub9ac\ubc84\uc2dc\ube14 \/ \ud558\uc774\ud050 \uc139\uc2a4\ud30c\ud2f0 \/ \uc7a1\ub355\uc774\ub77c \ud2b8\uce5c\uc18c \ubabb\ud574\uc11c \ud314\uc5b8\ud314 \uc790\uc720","protected":false,"verified":false,"followers_count":76,"friends_count":178,"listed_count":0,"favourites_count":1255,"statuses_count":11553,"created_at":"Fri Apr 24 01:23:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662107313583493120\/rmTEnHn5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662107313583493120\/rmTEnHn5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3169338258\/1433210086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chocolove743","name":"[MAMA\ud22c\ud45c\ud569\uc2dc\ub2e4]\ud0b9","id":3271485246,"id_str":"3271485246","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105482241,"id_str":"663727628105482241","text":"RT @SRKFC1: #LIVE more: @iamsrk , #Kajol & team #Dilwale at #DilwaleTrailer Launch #DhamakedaarDilwaleTrailer @RedChilliesEnt https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1955221448,"id_str":"1955221448","name":"Sedra","screen_name":"sedrasrk","location":"Dubai","url":"http:\/\/ask.fm\/sedraxx","description":null,"protected":false,"verified":false,"followers_count":926,"friends_count":215,"listed_count":4,"favourites_count":3169,"statuses_count":27176,"created_at":"Fri Oct 11 22:26:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659344771509391361\/DtwqmRxk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659344771509391361\/DtwqmRxk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1955221448\/1446035018","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:29 +0000 2015","id":663726358393155584,"id_str":"663726358393155584","text":"#LIVE more: @iamsrk , #Kajol & team #Dilwale at #DilwaleTrailer Launch #DhamakedaarDilwaleTrailer @RedChilliesEnt https:\/\/t.co\/p5LZyFO96b","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156967233,"id_str":"156967233","name":"\u2764 THE KINGs CLUB \u2764","screen_name":"SRKFC1","location":"KOLKATA","url":"http:\/\/bit.ly\/TheKINGsClub","description":"\u2022 Welcome to the OFFICIAL @iamsrk FC - #SRKFC \u2022 (based in KOLKATA) \u2590 contact us \u25ba srkfcofficial@gmail.com \u2590","protected":false,"verified":false,"followers_count":109889,"friends_count":77,"listed_count":180,"favourites_count":50,"statuses_count":38942,"created_at":"Fri Jun 18 12:54:29 +0000 2010","utc_offset":19800,"time_zone":"Kolkata","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"060108","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436045174582411264\/8e1AILmd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436045174582411264\/8e1AILmd.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653253828167471104\/6U2lOGPK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653253828167471104\/6U2lOGPK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156967233\/1427202980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":23,"entities":{"hashtags":[{"text":"LIVE","indices":[0,5]},{"text":"Kajol","indices":[22,28]},{"text":"Dilwale","indices":[40,48]},{"text":"DilwaleTrailer","indices":[52,67]},{"text":"DhamakedaarDilwaleTrailer","indices":[75,101]}],"urls":[],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[12,19]},{"screen_name":"RedChilliesEnt","name":"Dilwale","id":1243173036,"id_str":"1243173036","indices":[102,117]}],"symbols":[],"media":[{"id":663726311349821441,"id_str":"663726311349821441","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":967,"h":729,"resize":"fit"},"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726311349821441,"id_str":"663726311349821441","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":967,"h":729,"resize":"fit"},"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}}},{"id":663726327938293761,"id_str":"663726327938293761","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlCTWIAEdfYt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlCTWIAEdfYt.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":947,"h":576,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"small":{"w":340,"h":206,"resize":"fit"}}},{"id":663726338717675520,"id_str":"663726338717675520","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlqdWcAA4em8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlqdWcAA4em8.jpg","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663726351401242624,"id_str":"663726351401242624","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmZtWUAAd301.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmZtWUAAd301.jpg","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":445,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LIVE","indices":[12,17]},{"text":"Kajol","indices":[34,40]},{"text":"Dilwale","indices":[52,60]},{"text":"DilwaleTrailer","indices":[64,79]},{"text":"DhamakedaarDilwaleTrailer","indices":[87,113]}],"urls":[],"user_mentions":[{"screen_name":"SRKFC1","name":"\u2764 THE KINGs CLUB \u2764","id":156967233,"id_str":"156967233","indices":[3,10]},{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[24,31]},{"screen_name":"RedChilliesEnt","name":"Dilwale","id":1243173036,"id_str":"1243173036","indices":[114,129]}],"symbols":[],"media":[{"id":663726311349821441,"id_str":"663726311349821441","indices":[130,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":967,"h":729,"resize":"fit"},"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}},"source_status_id":663726358393155584,"source_status_id_str":"663726358393155584","source_user_id":156967233,"source_user_id_str":"156967233"}]},"extended_entities":{"media":[{"id":663726311349821441,"id_str":"663726311349821441","indices":[130,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkEgWIAEI4LW.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":967,"h":729,"resize":"fit"},"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}},"source_status_id":663726358393155584,"source_status_id_str":"663726358393155584","source_user_id":156967233,"source_user_id_str":"156967233"},{"id":663726327938293761,"id_str":"663726327938293761","indices":[130,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlCTWIAEdfYt.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlCTWIAEdfYt.png","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":947,"h":576,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"small":{"w":340,"h":206,"resize":"fit"}},"source_status_id":663726358393155584,"source_status_id_str":"663726358393155584","source_user_id":156967233,"source_user_id_str":"156967233"},{"id":663726338717675520,"id_str":"663726338717675520","indices":[130,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlqdWcAA4em8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlqdWcAA4em8.jpg","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726358393155584,"source_status_id_str":"663726358393155584","source_user_id":156967233,"source_user_id_str":"156967233"},{"id":663726351401242624,"id_str":"663726351401242624","indices":[130,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmZtWUAAd301.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmZtWUAAd301.jpg","url":"https:\/\/t.co\/p5LZyFO96b","display_url":"pic.twitter.com\/p5LZyFO96b","expanded_url":"http:\/\/twitter.com\/SRKFC1\/status\/663726358393155584\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":445,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726358393155584,"source_status_id_str":"663726358393155584","source_user_id":156967233,"source_user_id_str":"156967233"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105334789,"id_str":"663727628105334789","text":"@aiainya1017 \u3069\u3060\u3063\u305f\uff1f\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719365045415936,"in_reply_to_status_id_str":"663719365045415936","in_reply_to_user_id":2562443516,"in_reply_to_user_id_str":"2562443516","in_reply_to_screen_name":"aiainya1017","user":{"id":634511821,"id_str":"634511821","name":"\uff41\uff4b\uff59\uff41","screen_name":"akr1nn","location":null,"url":"https:\/\/instagram.com\/akr1nn\/","description":"kirakira perori\uff0821\uff09","protected":false,"verified":false,"followers_count":348,"friends_count":305,"listed_count":1,"favourites_count":855,"statuses_count":1603,"created_at":"Fri Jul 13 11:41:45 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658849469530640384\/qmBhKbJS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658849469530640384\/qmBhKbJS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/634511821\/1444613582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aiainya1017","name":"\u3042\u3044\u306b\u3083","id":2562443516,"id_str":"2562443516","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101095424,"id_str":"663727628101095424","text":"@1717piero \u3055\u3059\u304c\u6211\u3089\u304c\u3086\u305f\u3063\u3066\u3043\u30fc\\(\u02ca\u15dc\u02cb*)\/\n\u3053\u308c\u304b\u3089\u3082\u4f38\u3070\u3057\u3066\u3044\u304f\u3088\u30de\u30a4\u30d8\u30a2\u30fc\uff01\n\u30d7\u30ea\u30f3\u306f\u3088\u6295\u3052\u3066\u6295\u3052\u3066\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707604149899264,"in_reply_to_status_id_str":"663707604149899264","in_reply_to_user_id":2653334630,"in_reply_to_user_id_str":"2653334630","in_reply_to_screen_name":"1717piero","user":{"id":2646984828,"id_str":"2646984828","name":"\u3042\u308a\u306a\u307f\u3093","screen_name":"arn530","location":null,"url":null,"description":"\u5927\u624b\u5546\uff0f3-B\uff0f18\u6b73\uff0f\u72ec\u8eab\uff0f\u6cf0\u7136\u81ea\u82e5\u304c\u76ee\u6a19","protected":false,"verified":false,"followers_count":124,"friends_count":120,"listed_count":4,"favourites_count":8248,"statuses_count":6807,"created_at":"Tue Jul 15 06:08:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660479184830001152\/GG59K4fa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660479184830001152\/GG59K4fa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2646984828\/1445918831","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1717piero","name":"\u6687\u5ca1 \u8c4a (\u5c0f\u3055\u306a\u5de8\u4eba)","id":2653334630,"id_str":"2653334630","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628101115904,"id_str":"663727628101115904","text":"@pawlawesome wag kana may james kana pang-forever na yan lifetime pa","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726973961695232,"in_reply_to_status_id_str":"663726973961695232","in_reply_to_user_id":332103806,"in_reply_to_user_id_str":"332103806","in_reply_to_screen_name":"pawlawesome","user":{"id":155509317,"id_str":"155509317","name":".","screen_name":"daphneedolphin","location":null,"url":null,"description":"im confident enough to face my fears","protected":false,"verified":false,"followers_count":476,"friends_count":299,"listed_count":1,"favourites_count":17634,"statuses_count":50841,"created_at":"Mon Jun 14 09:51:38 +0000 2010","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594066815510122496\/LebzKJ5_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594066815510122496\/LebzKJ5_.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659620352197193729\/tj9qhNE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659620352197193729\/tj9qhNE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155509317\/1446961795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pawlawesome","name":"roshan","id":332103806,"id_str":"332103806","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079972659"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122124290,"id_str":"663727628122124290","text":"@ooRKNNoo \u5371\u306a\u3059\u304ewwwwwwwwwwwwwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726521224294400,"in_reply_to_status_id_str":"663726521224294400","in_reply_to_user_id":3265969345,"in_reply_to_user_id_str":"3265969345","in_reply_to_screen_name":"ooRKNNoo","user":{"id":2926808126,"id_str":"2926808126","name":"\u86c7\u30cb \u96d1\u98df","screen_name":"white100_gg","location":null,"url":null,"description":"\u3078\u3073\u306b\u3067\u3059\u3002 11\u6708\u306f\u96d1\u98df\u3002\u5fcd\u305f\u307e\u306b\u7652\u3055\u308c\u3066\u307e\u3059\u3002\u6210\u4eba\u6e08\u307f \u5984\u60f3\u601d\u8003\u306f\u96d1\u98df\u3067\u3059\u3002\u304a\u7d75\u63cf\u304d\u3057\u3066\u307e\u3059\u3002\u304a\u8a71\u3082(pixivID10923813)\u3002 \u304a\u558b\u308a\u3057\u305f\u3044\u4eba\u3067\u3059( \u00b4 \u25bd ` )\uff89\u3044\u3051\u3044\u3051\u3069\u3093\u3069\u30fc\u3093","protected":false,"verified":false,"followers_count":102,"friends_count":102,"listed_count":27,"favourites_count":1587,"statuses_count":21073,"created_at":"Thu Dec 11 12:58:52 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603105275592114176\/mHwfRFRO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603105275592114176\/mHwfRFRO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926808126\/1432626861","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ooRKNNoo","name":"\u6797\u7530_(:\u25d1\u300d\u2220)_","id":3265969345,"id_str":"3265969345","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628122124288,"id_str":"663727628122124288","text":"RT @mnmnmnmnii: \u304a\u301c\u3082\u3061\u3001\u3082\u3061\u3082\u3061\u2026 https:\/\/t.co\/TF6QFTibAe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2725796594,"id_str":"2725796594","name":"\u3042\u308a\u3061\u3083\u3093","screen_name":"matu0422","location":null,"url":null,"description":"\u677e\u5cf6\u25b6\ufe0e\u6d66\u5546\u2462-\u2466\u25b6\ufe0e\u25b6\ufe0eIRAHAcouple\u3086\u3046\u3061\u3083\u3093\u3060\u3044\u3059\u304d\u30a8\u30b9\u30c6\u30c6\u30a3\u30b7\u30e3\u30f3\u306a\u308b\u306e\u304c\u5922\u270c\ufe0e\u7d76\u5bfe\u53f6\u3048\u308b(^o^)\/","protected":false,"verified":false,"followers_count":354,"friends_count":227,"listed_count":3,"favourites_count":1852,"statuses_count":4311,"created_at":"Tue Aug 12 09:34:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637564355018518528\/t90m9uhb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637564355018518528\/t90m9uhb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2725796594\/1440842162","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:15:42 +0000 2015","id":663313944874913792,"id_str":"663313944874913792","text":"\u304a\u301c\u3082\u3061\u3001\u3082\u3061\u3082\u3061\u2026 https:\/\/t.co\/TF6QFTibAe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448931640,"id_str":"448931640","name":"MNM","screen_name":"mnmnmnmnii","location":"\u753b\u50cf\u52d5\u753b\u7b49\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u7981\u6b62\u3067\u3059","url":null,"description":"\u30cf\u30e0\u30b9\u30bf\u30fc\u4f9d\u5b58\u75c7 \/ \u30b9\u30ce\u30fc\u30db\u30ef\u30a4\u30c8\u306e\u304a\u3082\u3061\u2640\u3001\u30ed\u30dc\u30ed\u30d5\u30b9\u30ad\u30fc\u306e\u304a\u307e\u3081\u3001\u304a\u3044\u3082\u2642\u751f\u606f\u4e2d\u3002\u203b\u52d5\u753b\u591a\u3081 http:\/\/curazy.com\/archives\/81203 \/ http:\/\/curazy.com\/archives\/99118","protected":false,"verified":false,"followers_count":4716,"friends_count":192,"listed_count":47,"favourites_count":1354,"statuses_count":5611,"created_at":"Wed Dec 28 14:55:27 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649502180244762624\/xdDm2PVw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649502180244762624\/xdDm2PVw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448931640\/1443867646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12410,"favorite_count":11789,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663313926835179520,"id_str":"663313926835179520","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":914,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663313926835179520,"id_str":"663313926835179520","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":914,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"}}},{"id":663313926826799104,"id_str":"663313926826799104","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIcUsAAChSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIcUsAAChSs.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"large":{"w":992,"h":602,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"}}},{"id":663313926944223232,"id_str":"663313926944223232","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgI4UcAAPsgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgI4UcAAPsgO.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":857,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mnmnmnmnii","name":"MNM","id":448931640,"id_str":"448931640","indices":[3,14]}],"symbols":[],"media":[{"id":663313926835179520,"id_str":"663313926835179520","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":914,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"}},"source_status_id":663313944874913792,"source_status_id_str":"663313944874913792","source_user_id":448931640,"source_user_id_str":"448931640"}]},"extended_entities":{"media":[{"id":663313926835179520,"id_str":"663313926835179520","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIeUkAAdWQ-.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":914,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"}},"source_status_id":663313944874913792,"source_status_id_str":"663313944874913792","source_user_id":448931640,"source_user_id_str":"448931640"},{"id":663313926826799104,"id_str":"663313926826799104","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgIcUsAAChSs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgIcUsAAChSs.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"large":{"w":992,"h":602,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"}},"source_status_id":663313944874913792,"source_status_id_str":"663313944874913792","source_user_id":448931640,"source_user_id_str":"448931640"},{"id":663313926944223232,"id_str":"663313926944223232","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSQgI4UcAAPsgO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSQgI4UcAAPsgO.jpg","url":"https:\/\/t.co\/TF6QFTibAe","display_url":"pic.twitter.com\/TF6QFTibAe","expanded_url":"http:\/\/twitter.com\/mnmnmnmnii\/status\/663313944874913792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":857,"h":640,"resize":"fit"}},"source_status_id":663313944874913792,"source_status_id_str":"663313944874913792","source_user_id":448931640,"source_user_id_str":"448931640"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972664"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109660160,"id_str":"663727628109660160","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/5qUut64BLP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874088237,"id_str":"2874088237","name":"J A H","screen_name":"xxxjahyeezyx","location":"Live from the 8\ufe0f\u20e36\ufe0f\u20e30\ufe0f\u20e3","url":"http:\/\/www.instagram.com\/jahyeezy_","description":"I was born a perfectionist guess that makes me a bit obsessive \u2728 R.I.P @Qmoney9 \u2764\ufe0f #FREEKRAZYK","protected":false,"verified":false,"followers_count":320,"friends_count":269,"listed_count":0,"favourites_count":2145,"statuses_count":42935,"created_at":"Thu Oct 23 21:16:37 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663515770320756736\/wDeLhKPH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663515770320756736\/wDeLhKPH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874088237\/1446920916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":638152080885198849,"quoted_status_id_str":"638152080885198849","quoted_status":{"created_at":"Mon Aug 31 00:51:27 +0000 2015","id":638152080885198849,"id_str":"638152080885198849","text":"When you been lurking on bae's page and see something you didn't want to see http:\/\/t.co\/ifZ0Q9zqIR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":948500095,"id_str":"948500095","name":"PEPE","screen_name":"YourNiggaPepe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":115728,"friends_count":0,"listed_count":82,"favourites_count":101,"statuses_count":843,"created_at":"Wed Nov 14 21:01:38 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650248179431145472\/vf0HRHna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650248179431145472\/vf0HRHna_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/948500095\/1446122041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":638152076950917120,"id_str":"638152076950917120","indices":[77,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CNsr7tNWUAAdD3F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNsr7tNWUAAdD3F.jpg","url":"http:\/\/t.co\/ifZ0Q9zqIR","display_url":"pic.twitter.com\/ifZ0Q9zqIR","expanded_url":"http:\/\/twitter.com\/YourNiggaPepe\/status\/638152080885198849\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":500,"h":366,"resize":"fit"},"medium":{"w":500,"h":366,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":638152076950917120,"id_str":"638152076950917120","indices":[77,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CNsr7tNWUAAdD3F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNsr7tNWUAAdD3F.jpg","url":"http:\/\/t.co\/ifZ0Q9zqIR","display_url":"pic.twitter.com\/ifZ0Q9zqIR","expanded_url":"http:\/\/twitter.com\/YourNiggaPepe\/status\/638152080885198849\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":500,"h":366,"resize":"fit"},"medium":{"w":500,"h":366,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5qUut64BLP","expanded_url":"https:\/\/twitter.com\/yourniggapepe\/status\/638152080885198849","display_url":"twitter.com\/yourniggapepe\/\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628130611200,"id_str":"663727628130611200","text":"@Be11_zln @Its_Yasi @its_ya \u0645\u0628\u0631\u0648\u0648\u0643 \u0648\u062a\u0633\u062a\u0627\u0647\u0644 \u0648\u0639\u0642\u0628\u0627\u0644 \u0627\u0644\u0645\u0644\u064a\u0648\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722814772535296,"in_reply_to_status_id_str":"663722814772535296","in_reply_to_user_id":3961456392,"in_reply_to_user_id_str":"3961456392","in_reply_to_screen_name":"Be11_zln","user":{"id":1423466833,"id_str":"1423466833","name":"\u063a\u0645\u0648\u0636 \u0627\u0646\u062b\u0649","screen_name":"ha_alkhateeb","location":null,"url":null,"description":"\u200f\u200f\u0633\u062a\u0631\u062d\u0644\u0648\u0627 \u0648\u0633\u0622\u0631\u062d\u0644 \u0648\u0633\u062a\u0628\u0642\u0649 \u0643\u0644\u0645\u0627\u062a\u0646\u0627 \u060c \n\u0648 \u0622\u0641\u0639\u0622\u0644\u0646\u0622 \u060c \u0648\u0622\u062b\u0622\u0631\u0646\u0622 \u0633\u062a\u0634\u0647\u062f \u0639\u0644\u064a\u0646\u0622 \u0641\u064a\u0645\u0622 \u0628\u0639\u062f \u0631\u062d\u064a\u0644\u0646\u0622 \n\u0641\u0644\u0646\u0646\u0638\u0631 \u0625\u0644\u0649 \u0648\u0631\u0622\u0626\u0646\u0622 \u0648\u0645\u0622 \u0633\u0646\u062a\u0631\u0643\u0647\n\n\u0641\u0640 \u0644\u0633\u0646\u0627 \u0648\u0644\u0633\u062a\u0645 \u0645\u062e\u0644\u062f\u0648\u0646.!\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f","protected":false,"verified":false,"followers_count":65556,"friends_count":11992,"listed_count":20,"favourites_count":1759,"statuses_count":30600,"created_at":"Sun May 12 15:57:08 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659652148905574400\/BBY6ffC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659652148905574400\/BBY6ffC1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1423466833\/1441983692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Be11_zln","name":"\u0623\u0622\u0623\u0646\u064a\u064a\u0646 \u0627\u0644\u0648\u0631\u0631\u062f","id":3961456392,"id_str":"3961456392","indices":[0,9]},{"screen_name":"Its_Yasi","name":"\u03c1\u0251\u0360\u0438\u0360\u0251d\u0360\u03c3l\u0360\u27b0","id":1098651690,"id_str":"1098651690","indices":[10,19]},{"screen_name":"its_ya","name":"its_ya","id":145570356,"id_str":"145570356","indices":[20,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079972666"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113743872,"id_str":"663727628113743872","text":"\u306f\u3088\u98a8\u5442\u7a7a\u3051\u3066\u304f\u308c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164963306,"id_str":"164963306","name":"\u30a8\u30c7\u30a3@\u8fbb\u306a\u3093\u3061\u3083\u3089","screen_name":"edwards7256","location":"\u5927\u962a","url":"http:\/\/artist.aremond.net\/asp48\/","description":"\u8133\u5185\u5782\u308c\u6d41\u3057bot \/ \u30a2\u30b9\u30da\u754c\u9688 \/ \u3077\u3044\u3077\u3044\u30ba@puipui_000\u306e\u30ae\u30bf\u30fc\u306e\u4eba \/BIGCAT\u3067\u30b9\u30c6\u30fc\u30b8\u898b\u7fd2\u3044\u3057\u3066\u307e\u3059\/ Guitar \/ SVG \/ Movie \/ TMGE \/ BJC \/ B'z \/ SKC \/","protected":false,"verified":false,"followers_count":399,"friends_count":241,"listed_count":19,"favourites_count":2765,"statuses_count":48304,"created_at":"Sat Jul 10 05:59:18 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663349856988102656\/Nu-vxPMm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663349856988102656\/Nu-vxPMm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164963306\/1446213916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628117905412,"id_str":"663727628117905412","text":"RT @0315mizuchin: \u30b7\u30e5\u30fc\u30eb\u3059\u304e\u3066\u7b11\u3048\u308b\u30aa\u30e2\u30c1\u30e3\u7b11 https:\/\/t.co\/iGEBE9NAUK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2814527720,"id_str":"2814527720","name":"\u3055\u30fc\u307d\u3093","screen_name":"saucygirl101231","location":"I wait for you.","url":null,"description":"\uff08\u672c\u57a2\uff09\u9577\u5d0e\u5e02.\u7434\u6d77\u2470\u306e\u4ee3.\u81ea\u7531\u4eba\\\u2661\/ \u2729\u5927\u5207\u306a\u4eba\u3092\u5927\u5207\u306b\u3059\u308b\u2729 \u611f\u8b1d\u3059\u308b\u5fc3\u0b18(\u0a6d\u02ca\ua4b3\u200b\u02cb)\u0a6d\u2727 \u2764\ufe0e\u263a\ufe0e\u2764\ufe0e\u263a\ufe0e\u2764\ufe0e\u263a\ufe0e\u2764\ufe0e\u00ab@saapon101231\u00bb\u261c\u4f1a\u3063\u305f\u4e8b,\u7d61\u3093\u3060\u4e8b\u3042\u308b\u4eba\uff7a\uff6f\uff81\u3082\uff8c\uff6b\uff9b\uff70\u3057\u3066\u2764\ufe0e\u263a\ufe0e\u2764\ufe0e\u263a\ufe0e\u2764\ufe0e\u263a\ufe0e\u2764\ufe0e \u672c\u57a2\u308e\u8ab0\u3067\u3082follow me\u2669","protected":false,"verified":false,"followers_count":875,"friends_count":862,"listed_count":0,"favourites_count":2684,"statuses_count":6846,"created_at":"Wed Sep 17 08:40:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646023542383841280\/9LkFUjSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646023542383841280\/9LkFUjSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814527720\/1446258216","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:35:19 +0000 2015","id":663288679935275012,"id_str":"663288679935275012","text":"\u30b7\u30e5\u30fc\u30eb\u3059\u304e\u3066\u7b11\u3048\u308b\u30aa\u30e2\u30c1\u30e3\u7b11 https:\/\/t.co\/iGEBE9NAUK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042864475,"id_str":"3042864475","name":"\u3067\u3050\u3061\u307f\u305a\u307b","screen_name":"0315mizuchin","location":null,"url":null,"description":"\u5b87\u6cbb\u5c71\u7530\u55462 \u9678\u4e0a\u90e8 \uff3cboutakatobi\uff0f \u300e\u3061\u3087\u3061\u3087\u30fc\u3063\u3068\u8d70\u3063\u3066 \u307b\u3044\u3063\u3068\u8df3\u3076 pole-vaulter\u00b0\u309c \u5927\u597d\u304d\u306a\u65b9\u3005\u3068\u6700\u9ad8\u306e\u4e00\u5e74\u9593\u306b\u300f","protected":false,"verified":false,"followers_count":855,"friends_count":759,"listed_count":1,"favourites_count":1647,"statuses_count":937,"created_at":"Thu Feb 26 08:16:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661190603141591042\/KIpu9rET_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661190603141591042\/KIpu9rET_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042864475\/1432907480","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3235,"favorite_count":4031,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663288532090249216,"id_str":"663288532090249216","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","url":"https:\/\/t.co\/iGEBE9NAUK","display_url":"pic.twitter.com\/iGEBE9NAUK","expanded_url":"http:\/\/twitter.com\/0315mizuchin\/status\/663288679935275012\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663288532090249216,"id_str":"663288532090249216","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","url":"https:\/\/t.co\/iGEBE9NAUK","display_url":"pic.twitter.com\/iGEBE9NAUK","expanded_url":"http:\/\/twitter.com\/0315mizuchin\/status\/663288679935275012\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":13793,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/pl\/5e7zz8C995C_qCN2.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/180x320\/z0gUbcxbgE_h_4F6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/360x640\/iKShjz3eirTSxoUx.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/360x640\/iKShjz3eirTSxoUx.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/pl\/5e7zz8C995C_qCN2.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0315mizuchin","name":"\u3067\u3050\u3061\u307f\u305a\u307b","id":3042864475,"id_str":"3042864475","indices":[3,16]}],"symbols":[],"media":[{"id":663288532090249216,"id_str":"663288532090249216","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","url":"https:\/\/t.co\/iGEBE9NAUK","display_url":"pic.twitter.com\/iGEBE9NAUK","expanded_url":"http:\/\/twitter.com\/0315mizuchin\/status\/663288679935275012\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663288679935275012,"source_status_id_str":"663288679935275012","source_user_id":3042864475,"source_user_id_str":"3042864475"}]},"extended_entities":{"media":[{"id":663288532090249216,"id_str":"663288532090249216","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663288532090249216\/pu\/img\/G7IrvjDPt6H98b7u.jpg","url":"https:\/\/t.co\/iGEBE9NAUK","display_url":"pic.twitter.com\/iGEBE9NAUK","expanded_url":"http:\/\/twitter.com\/0315mizuchin\/status\/663288679935275012\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663288679935275012,"source_status_id_str":"663288679935275012","source_user_id":3042864475,"source_user_id_str":"3042864475","video_info":{"aspect_ratio":[9,16],"duration_millis":13793,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/pl\/5e7zz8C995C_qCN2.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/180x320\/z0gUbcxbgE_h_4F6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/360x640\/iKShjz3eirTSxoUx.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/vid\/360x640\/iKShjz3eirTSxoUx.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663288532090249216\/pu\/pl\/5e7zz8C995C_qCN2.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628105289728,"id_str":"663727628105289728","text":"RT @urnaste: tbfh \ud83d\ude34 https:\/\/t.co\/dvAOYePLkE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":434574505,"id_str":"434574505","name":"kd.","screen_name":"queenkhadds","location":null,"url":null,"description":"i just thank God & $lay","protected":false,"verified":false,"followers_count":649,"friends_count":288,"listed_count":4,"favourites_count":1349,"statuses_count":45072,"created_at":"Mon Dec 12 01:39:16 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452955056933859328\/0_ppsWsk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452955056933859328\/0_ppsWsk.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663567285869785089\/RsaAkhbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663567285869785089\/RsaAkhbv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/434574505\/1444268116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:42:52 +0000 2015","id":663199982183424000,"id_str":"663199982183424000","text":"tbfh \ud83d\ude34 https:\/\/t.co\/dvAOYePLkE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1159812649,"id_str":"1159812649","name":"kimk.","screen_name":"urnaste","location":"pw \u2661.","url":null,"description":"jayvious makes me kitty rain.","protected":false,"verified":false,"followers_count":15224,"friends_count":7281,"listed_count":22,"favourites_count":6887,"statuses_count":32088,"created_at":"Fri Feb 08 10:37:16 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663186078384439297\/v7XqMgN9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663186078384439297\/v7XqMgN9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159812649\/1446928475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2242,"favorite_count":1865,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663199976273539072,"id_str":"663199976273539072","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","url":"https:\/\/t.co\/dvAOYePLkE","display_url":"pic.twitter.com\/dvAOYePLkE","expanded_url":"http:\/\/twitter.com\/urnaste\/status\/663199982183424000\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663199976273539072,"id_str":"663199976273539072","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","url":"https:\/\/t.co\/dvAOYePLkE","display_url":"pic.twitter.com\/dvAOYePLkE","expanded_url":"http:\/\/twitter.com\/urnaste\/status\/663199982183424000\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"urnaste","name":"kimk.","id":1159812649,"id_str":"1159812649","indices":[3,11]}],"symbols":[],"media":[{"id":663199976273539072,"id_str":"663199976273539072","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","url":"https:\/\/t.co\/dvAOYePLkE","display_url":"pic.twitter.com\/dvAOYePLkE","expanded_url":"http:\/\/twitter.com\/urnaste\/status\/663199982183424000\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663199982183424000,"source_status_id_str":"663199982183424000","source_user_id":1159812649,"source_user_id_str":"1159812649"}]},"extended_entities":{"media":[{"id":663199976273539072,"id_str":"663199976273539072","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQo3VjU8AA3P8o.jpg","url":"https:\/\/t.co\/dvAOYePLkE","display_url":"pic.twitter.com\/dvAOYePLkE","expanded_url":"http:\/\/twitter.com\/urnaste\/status\/663199982183424000\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663199982183424000,"source_status_id_str":"663199982183424000","source_user_id":1159812649,"source_user_id_str":"1159812649"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079972660"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628117917696,"id_str":"663727628117917696","text":"@rararasmile12 \u3046\u3044\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727255357534209,"in_reply_to_status_id_str":"663727255357534209","in_reply_to_user_id":3647729718,"in_reply_to_user_id_str":"3647729718","in_reply_to_screen_name":"rararasmile12","user":{"id":1480663106,"id_str":"1480663106","name":"\u3086 \u3046 \u304d \u4e38","screen_name":"arima05091","location":"\u221e\u304b\u3054\u3093\u307e\u221e","url":null,"description":"Lv.18\uff1a\u9ad8\u6821\u751f\u3084\u3063\u3066\u307e\u3059\u3002\u30a2\u30a4\u30e9\u30d6\u7c60\u7403\u3002\u97f3\u697d\u306f\u57fa\u672c\u96d1\u98df\u3067\u3042\u308a\u307e\u3059\u3002\u6625\u304b\u3089\u5c02\u9580\u5b66\u751f\u3002\u3082\u3063\u3068\u5149\u3092\u50d5\u306b\u304f\u3060\u3055\u3044\u3002\u30a4\u30f3\u30c6\u30ea\u30a2\u3068\u304b\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1635,"friends_count":918,"listed_count":54,"favourites_count":101555,"statuses_count":33859,"created_at":"Mon Jun 03 21:22:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661479610647900160\/OF9JAWVI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661479610647900160\/OF9JAWVI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1480663106\/1446891688","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rararasmile12","name":"\u306f\u308b","id":3647729718,"id_str":"3647729718","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628113735681,"id_str":"663727628113735681","text":"RT @raymundoking: #JusticiaparaMariFer Gobierno de Resultados https:\/\/t.co\/rLENBemntx","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2364406358,"id_str":"2364406358","name":"Michel Puga","screen_name":"Mic_helPuga","location":"Chetumal","url":null,"description":"he dejado de so\u00f1ar.","protected":false,"verified":false,"followers_count":93,"friends_count":78,"listed_count":1,"favourites_count":0,"statuses_count":4569,"created_at":"Thu Feb 27 16:37:19 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465961057656131585\/aYXXgMlB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465961057656131585\/aYXXgMlB.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451740764289003521\/9bL0v1rq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451740764289003521\/9bL0v1rq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2364406358\/1399928724","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:14 +0000 2015","id":663717737080877056,"id_str":"663717737080877056","text":"#JusticiaparaMariFer Gobierno de Resultados https:\/\/t.co\/rLENBemntx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206382173,"id_str":"206382173","name":"Raymundo King","screen_name":"raymundoking","location":"Chetumal, Q. Roo","url":"http:\/\/raymundoking.mx\/","description":"Presidente del PRI en Quintana Roo. RBteam IG: raymundo_king_qroo","protected":false,"verified":false,"followers_count":15807,"friends_count":4850,"listed_count":122,"favourites_count":1056,"statuses_count":9990,"created_at":"Fri Oct 22 21:14:56 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/520444809660485632\/0GVE7sJy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/520444809660485632\/0GVE7sJy.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547419616994426880\/SFWLQ7cs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547419616994426880\/SFWLQ7cs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206382173\/1430855694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663522546403282944,"quoted_status_id_str":"663522546403282944","quoted_status":{"created_at":"Mon Nov 09 01:04:37 +0000 2015","id":663522546403282944,"id_str":"663522546403282944","text":"Durante la reuni\u00f3n en la @PGJQuintanaRoo se dio a conocer la detenci\u00f3n del homicida y violador de la menor Mar\u00eda Fernanda Vargas S\u00e1nchez","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112222323,"id_str":"112222323","name":"Roberto Borge","screen_name":"betoborge","location":"Quintana Roo, M\u00e9xico.","url":null,"description":"Gobernador Constitucional del Estado de Quintana Roo; M\u00e9xico","protected":false,"verified":true,"followers_count":107197,"friends_count":3126,"listed_count":877,"favourites_count":363,"statuses_count":22121,"created_at":"Sun Feb 07 17:51:33 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F3F4F4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/97530747\/twitter4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/97530747\/twitter4.jpg","profile_background_tile":false,"profile_link_color":"FA002A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E61D3E","profile_text_color":"292929","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660506449768919040\/Da3YDmaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660506449768919040\/Da3YDmaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112222323\/1446312007","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PGJQuintanaRoo","name":"PGJ Quintana Roo","id":338864991,"id_str":"338864991","indices":[25,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":71,"favorite_count":2,"entities":{"hashtags":[{"text":"JusticiaparaMariFer","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/rLENBemntx","expanded_url":"https:\/\/twitter.com\/betoborge\/status\/663522546403282944","display_url":"twitter.com\/betoborge\/stat\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticiaparaMariFer","indices":[18,38]}],"urls":[{"url":"https:\/\/t.co\/rLENBemntx","expanded_url":"https:\/\/twitter.com\/betoborge\/status\/663522546403282944","display_url":"twitter.com\/betoborge\/stat\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"raymundoking","name":"Raymundo King","id":206382173,"id_str":"206382173","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079972662"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628130623489,"id_str":"663727628130623489","text":"@CHARM3R_STREAMS and shaman love","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718610020474880,"in_reply_to_status_id_str":"663718610020474880","in_reply_to_user_id":3092678020,"in_reply_to_user_id_str":"3092678020","in_reply_to_screen_name":"CHARM3R_STREAMS","user":{"id":181029034,"id_str":"181029034","name":"Danny Carroll","screen_name":"shaman_don","location":"nwi","url":null,"description":"once replied to by Stacey King.....Byaahhh!!!","protected":false,"verified":false,"followers_count":350,"friends_count":503,"listed_count":11,"favourites_count":8819,"statuses_count":15681,"created_at":"Sat Aug 21 02:52:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3284674480\/d5d4b9d7fcba57ae6dda42632b758bf1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3284674480\/d5d4b9d7fcba57ae6dda42632b758bf1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181029034\/1356242461","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CHARM3R_STREAMS","name":"CHARM3R","id":3092678020,"id_str":"3092678020","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972666"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628109549568,"id_str":"663727628109549568","text":"\u5f53\u305f\u308a\u524d\u3084\u30fc\u3093\"((\u2229\u00b4\ufe36`\u2229))\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949969721,"id_str":"2949969721","name":"\u3064\u3080\u3055\u3068@\u53d7\u9a13\u306e\u305f\u3081\u4f4e\u6d6e\u4e0a\u6c17\u5473","screen_name":"sekai_1980","location":null,"url":null,"description":"ARASHI\u25b7\u25b7Ohno-kun\u25b7\u25b7Ohmiya\u2721\u30bb\u30ab\u30b3\u30a4\u2721\u7d14\u30ed\u30de\u2721Hybrid Child\u2721\u30cf\u30a4\u30ad\u30e5\u30fc!!\u2721GOSICK\u2721\u9ed2\u57f7\u4e8b\u2721\u9ed2\u30d0\u30b9\u2721\u3068\u3089*\u304f\u3093\u2192@to_ra_law\u2721Love Desire\u27211\/13~Comrade\u59c9\u59b9\u2192@arashi_kara08","protected":false,"verified":false,"followers_count":159,"friends_count":148,"listed_count":12,"favourites_count":2332,"statuses_count":6238,"created_at":"Mon Dec 29 11:01:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571993577498132480\/TBi0nSwP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571993577498132480\/TBi0nSwP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949969721\/1429802183","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972661"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628117934080,"id_str":"663727628117934080","text":"\u62bd\u8c61\u7684\u306a\u3053\u3068\u306f\u8ab0\u306b\u3067\u3082\u8a00\u3048\u308b\u3093\u3060\u554f\u984c\u306f\u305d\u306e\u5148\u306a\u3093\u3060","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2421673716,"id_str":"2421673716","name":"ody_\u540d\u63a2\u5075\u7279\u6709\u306e\u76ee","screen_name":"ody_accident","location":"11\/22 @\u65b0\u5bbfOREBAKO","url":"http:\/\/instagram.com\/ody_____","description":"4\/28\u301c Crazy Holiday-gt. _unison square garden \u897f\u5ddd\u8cb4\u6559 a.b.s \u30d0\u30f3\u30c9\u2192\u2192@CrazyHolidayFMC @daihukudriver \u30b9\u30ab\u30a4\u30d7\u2192hoshinoko9944 \u30fb\u771f\u306b\u53d7\u3051\u305f\u3089\u8ca0\u3051","protected":false,"verified":false,"followers_count":410,"friends_count":493,"listed_count":3,"favourites_count":16327,"statuses_count":19800,"created_at":"Tue Apr 01 06:53:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660653544433823744\/wayTFJSU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660653544433823744\/wayTFJSU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2421673716\/1446353619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092751872,"id_str":"663727628092751872","text":"@shiba_saki00 \u307e\u3058\u3067\uff01\uff1f\ud83d\ude02\u306a\u3089\u3088\u304b\u3063\u305f\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725278158393344,"in_reply_to_status_id_str":"663725278158393344","in_reply_to_user_id":2724886343,"in_reply_to_user_id_str":"2724886343","in_reply_to_screen_name":"shiba_saki00","user":{"id":3235085898,"id_str":"3235085898","name":"\u3061\u301c\u301c@T-snk","screen_name":"Chi_u__","location":"\u304b\u307e\u3074\u3067\u3059\u3002","url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":34,"listed_count":2,"favourites_count":213,"statuses_count":1528,"created_at":"Wed Jun 03 14:06:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653287207151603713\/CTN4kOvo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653287207151603713\/CTN4kOvo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235085898\/1443017445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shiba_saki00","name":"\u67f4\u5d0e","id":2724886343,"id_str":"2724886343","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628118044672,"id_str":"663727628118044672","text":"@kakaitoun \u3053\u3093\u3070\u3093\u306f\u306a\u306e \u3075\u308f\u3075\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663699537685405696,"in_reply_to_status_id_str":"663699537685405696","in_reply_to_user_id":2426949948,"in_reply_to_user_id_str":"2426949948","in_reply_to_screen_name":"kakaitoun","user":{"id":2255195790,"id_str":"2255195790","name":"\u3075\u308f\u3075\u308f\u306e\u304f\u307ebot","screen_name":"fuwafuwanokuma","location":"\u5317\u6975","url":"https:\/\/www.youtube.com\/watch?v=klQa7644UIc","description":"\u307c\u304f\u306f\u3000\u3053\u3046\u3057\u304d\u306e\u3000\u304f\u307e\u3055\u3093\u307c\u3063\u3068\u306a\u306e\u3000\u3044\u3063\u3057\u3087\u3046\u3051\u3093\u3081\u3044\u3000\u3064\u3076\u3084\u304f\u306e\u3000\u3075\u308f\u3075\u308f","protected":false,"verified":false,"followers_count":1368,"friends_count":1511,"listed_count":28,"favourites_count":0,"statuses_count":39006,"created_at":"Fri Dec 20 16:02:23 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659442059208761344\/JwUyOapF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659442059208761344\/JwUyOapF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2255195790\/1437607127","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kakaitoun","name":"\u306e\u3060\u304b\u3044","id":2426949948,"id_str":"2426949948","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972663"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092874752,"id_str":"663727628092874752","text":"Get Weather Updates from The Weather Channel. 09:39:32","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748916057,"id_str":"2748916057","name":"26527stwb","screen_name":"26527stwb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":78811,"created_at":"Wed Aug 20 12:27:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972657"} +{"delete":{"status":{"id":299884473250639873,"id_str":"299884473250639873","user_id":333726735,"user_id_str":"333726735"},"timestamp_ms":"1447079972784"}} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628092731393,"id_str":"663727628092731393","text":"\u306a\u3093\u304b\u3082\u3046\u306d\u3001\u3053\u306e\u57a2\u3067\u304a\u305d\u677e\u3055\u3093\u306e\u8a71\u3092\u3057\u305f\u3089\u66b4\u767a\u3057\u304b\u3057\u306a\u3055\u305d\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2201191142,"id_str":"2201191142","name":"\u96ea\u91ce\u3086\u304d\u306e","screen_name":"3234OXO","location":"\u540d\u53e4\u5c4b\u3067\u306f\u306a\u3044\u611b\u77e5\u770c","url":null,"description":"\u4fdd\u80b2\u58eb\u306b\u306a\u308a\u307e\u3059\u3002\u540d\u53e4\u5c4b\u3067\u304a\u829d\u5c45\u89b3\u305f\u308a\u7a00\u306b\u51fa\u305f\u308a\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":237,"friends_count":185,"listed_count":1,"favourites_count":2915,"statuses_count":24798,"created_at":"Mon Nov 18 12:05:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643711648872591360\/wwOPcvq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643711648872591360\/wwOPcvq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201191142\/1444573280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972657"} +{"delete":{"status":{"id":539443022820159489,"id_str":"539443022820159489","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079972851"}} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628096962564,"id_str":"663727628096962564","text":"@rossssc @Jipso19 gobble gobble. I would eat all of them too. I am out of peanut butter. Noooo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725816333754372,"in_reply_to_status_id_str":"663725816333754372","in_reply_to_user_id":104943342,"in_reply_to_user_id_str":"104943342","in_reply_to_screen_name":"rossssc","user":{"id":335978747,"id_str":"335978747","name":"yikesks","screen_name":"yikesks","location":"Kochville ","url":"http:\/\/page.is\/bows-of-rain","description":"StopTheWarOn: Women. Unions. Gays. Blacks. Browns. Green. Mammals. Food. Cannabis. Nature. Medicare. Medicaid. us.","protected":false,"verified":false,"followers_count":4594,"friends_count":4584,"listed_count":166,"favourites_count":46203,"statuses_count":103686,"created_at":"Fri Jul 15 15:13:17 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657235514\/summer-flowers.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657235514\/summer-flowers.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F0D90F","profile_text_color":"C21A3B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660808330374320128\/6ylmtsOZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660808330374320128\/6ylmtsOZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335978747\/1445215619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rossssc","name":"Rossssc","id":104943342,"id_str":"104943342","indices":[0,8]},{"screen_name":"Jipso19","name":"Jan #UniteBlue","id":375253987,"id_str":"375253987","indices":[9,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079972658"} +{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727628130496516,"id_str":"663727628130496516","text":"\u539f\u6751\u548c\u3061\u3083\u3093\u304c\u597d\u304d\u3060\u304b\u3089\u306d\u4ed5\u65b9\u306a\u3044\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076442918,"id_str":"3076442918","name":"\u308a\u305a\u307f\u304b\u308b","screen_name":"opp_tpp","location":null,"url":"http:\/\/twpf.jp\/opp_tpp","description":"\u5973\u30aa\u30bf\u30af\u3067\u3059\u3002\u7121\u76ca\u306a\u30c4\u30a4\u30fc\u30c8\u3092\u305f\u304f\u3055\u3093\u3057\u307e\u3059\u3002\n\u30a2\u30a4\u30b3\u30f3\u306f@hayate_0215\u3055\u3093\u3000\u30b5\u30f3\u30ad\u30e5\u30fc\u30de\u30c3\u30de","protected":false,"verified":false,"followers_count":62,"friends_count":106,"listed_count":2,"favourites_count":2139,"statuses_count":6185,"created_at":"Fri Mar 13 10:21:28 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655266189577351168\/IKRXNgkV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655266189577351168\/IKRXNgkV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076442918\/1444202891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079972666"} +{"delete":{"status":{"id":663724985719091200,"id_str":"663724985719091200","user_id":1113456091,"user_id_str":"1113456091"},"timestamp_ms":"1447079973475"}} +{"delete":{"status":{"id":656558648206999552,"id_str":"656558648206999552","user_id":3807227836,"user_id_str":"3807227836"},"timestamp_ms":"1447079973531"}} +{"delete":{"status":{"id":663727032539463680,"id_str":"663727032539463680","user_id":204428172,"user_id_str":"204428172"},"timestamp_ms":"1447079973673"}} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632295600129,"id_str":"663727632295600129","text":"RT @KCedDz: Hey boy, are you a gay anime? Cuz I'd watch you all day long.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44302867,"id_str":"44302867","name":"Krystal","screen_name":"AnaSkem","location":"Malaysia\/Jordan","url":null,"description":"\u2728Mahou Shoujo\u2728","protected":false,"verified":false,"followers_count":250,"friends_count":263,"listed_count":3,"favourites_count":9455,"statuses_count":63208,"created_at":"Wed Jun 03 05:42:32 +0000 2009","utc_offset":7200,"time_zone":"Jerusalem","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659853149402959872\/giQfm3id.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659853149402959872\/giQfm3id.jpg","profile_background_tile":false,"profile_link_color":"F5A9D0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"8822CC","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659848909376905216\/764PCFeI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659848909376905216\/764PCFeI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44302867\/1446165526","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:35 +0000 2015","id":663726885646573572,"id_str":"663726885646573572","text":"Hey boy, are you a gay anime? Cuz I'd watch you all day long.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":592963943,"id_str":"592963943","name":"Kalthoum","screen_name":"KCedDz","location":null,"url":null,"description":"I think I'm smarter than I actually am.","protected":false,"verified":false,"followers_count":524,"friends_count":806,"listed_count":1,"favourites_count":3522,"statuses_count":7852,"created_at":"Mon May 28 18:46:44 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643798559259652098\/Z4VVNKpN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643798559259652098\/Z4VVNKpN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/592963943\/1437750048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KCedDz","name":"Kalthoum","id":592963943,"id_str":"592963943","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973659"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320765952,"id_str":"663727632320765952","text":"Espero que esta semana llegue mi ceeel\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2287008272,"id_str":"2287008272","name":"Vickyyyyy\u2654","screen_name":"Vickkkky_Campos","location":"Pedro Luro","url":"https:\/\/www.facebook.com\/vicky.campos.9250","description":"Sonido de mi pueblo movimiento social\u266a\u2661 #LosDragones #CumbiaSure\u00f1a.\nRiver plate\u2764.\nCuantos amigos conoc\u00ed y cuantos que perd\u00ed, pero sigo con los que m\u00e1s quer\u00eda.","protected":false,"verified":false,"followers_count":828,"friends_count":683,"listed_count":1,"favourites_count":1022,"statuses_count":27673,"created_at":"Sat Jan 11 18:17:24 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0D0E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608398198743396352\/CAF4ge01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608398198743396352\/CAF4ge01.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663542862269849605\/4UBc_Rqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663542862269849605\/4UBc_Rqt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2287008272\/1446964589","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079973665"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632287178753,"id_str":"663727632287178753","text":"RT @illllilx: @shll5l \ud83d\udeb6\ud83c\udffb\ud83d\ude02\u0627\u0639\u062a\u0628\u0631\u064a\u0647 \u0633\u0648\u0642 \u0645\u0648 \u0645\u0633\u062a\u0634\u0641\u0649 \u0639\u0634\u0627\u0646 \u064a\u0637\u064a\u0631 \u0627\u0644\u062e\u0648\u0641","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2608374709,"id_str":"2608374709","name":"\u0645\u0637\u062d\u0640\u0633\u0647\u2748..","screen_name":"shll5l","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u0634\u0643\u0644\u0643 \u0645\u0640\u0627 \u062a\u0639\u0640\u0631\u0641 \u062a\u0640\u0627\u0643\u0640\u0644 \u0632\u0642?...","protected":false,"verified":false,"followers_count":1309,"friends_count":851,"listed_count":1,"favourites_count":2520,"statuses_count":21028,"created_at":"Sun Jul 06 21:22:01 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550062474364321792\/lRlRFnWd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550062474364321792\/lRlRFnWd.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662936226295619584\/TnVcIqGw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662936226295619584\/TnVcIqGw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2608374709\/1446803493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:20 +0000 2015","id":663726068445143040,"id_str":"663726068445143040","text":"@shll5l \ud83d\udeb6\ud83c\udffb\ud83d\ude02\u0627\u0639\u062a\u0628\u0631\u064a\u0647 \u0633\u0648\u0642 \u0645\u0648 \u0645\u0633\u062a\u0634\u0641\u0649 \u0639\u0634\u0627\u0646 \u064a\u0637\u064a\u0631 \u0627\u0644\u062e\u0648\u0641","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725169140174848,"in_reply_to_status_id_str":"663725169140174848","in_reply_to_user_id":2608374709,"in_reply_to_user_id_str":"2608374709","in_reply_to_screen_name":"shll5l","user":{"id":2217482651,"id_str":"2217482651","name":"\u0632\u0631\u0639\u0647 \u0627\u062e\u062e\u062a \u0645\u0634\u0628\u0628 \u0648\u0645\u0641\u0644\u062d","screen_name":"illllilx","location":"\u0641\u064a \u0628\u064a\u062a\u0646\u0627 \u0627\u0644\u062c\u0645\u064a\u0644 \u060c","url":null,"description":".","protected":false,"verified":false,"followers_count":5306,"friends_count":5378,"listed_count":3,"favourites_count":31,"statuses_count":51813,"created_at":"Tue Dec 10 12:34:47 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663526151235706881\/7Cxa4Ood_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663526151235706881\/7Cxa4Ood_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2217482651\/1446868269","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shll5l","name":"\u0645\u0637\u062d\u0640\u0633\u0647\u2748..","id":2608374709,"id_str":"2608374709","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"illllilx","name":"\u0632\u0631\u0639\u0647 \u0627\u062e\u062e\u062a \u0645\u0634\u0628\u0628 \u0648\u0645\u0641\u0644\u062d","id":2217482651,"id_str":"2217482651","indices":[3,12]},{"screen_name":"shll5l","name":"\u0645\u0637\u062d\u0640\u0633\u0647\u2748..","id":2608374709,"id_str":"2608374709","indices":[14,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079973657"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291360768,"id_str":"663727632291360768","text":"@motor_key \u3082\u3046\u305d\u306e\u30ce\u30ea\u53b3\u3057\u304f\u306a\u3063\u3066\u304d\u305f\u306a\uff5e\u3055\u3059\u304c\u306b\uff01\u3055\u3093\u3056\u3093\u3084\u3063\u305f\u3088\u306d\uff01\n\u60f3\u50cf\u3067\u9154\u3048\u308b\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663618702294818817,"in_reply_to_status_id_str":"663618702294818817","in_reply_to_user_id":99832108,"in_reply_to_user_id_str":"99832108","in_reply_to_screen_name":"motor_key","user":{"id":2304505531,"id_str":"2304505531","name":"nao","screen_name":"naoyukis36","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":236,"listed_count":0,"favourites_count":45,"statuses_count":216,"created_at":"Wed Jan 22 08:52:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631803776253366272\/HspSXUkK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631803776253366272\/HspSXUkK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304505531\/1438357570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"motor_key","name":"\u5409\u7530 \u30e8\u30b7\u30f2","id":99832108,"id_str":"99832108","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632295583744,"id_str":"663727632295583744","text":"\u521d\u3081\u307e\u3057\u3066\u306e\u51fa\u4f1a\u3044\u3002\n\u3084\u3063\u3071\u308a\u51fa\u4f1a\u3044\u306f\u3044\u3044\u3082\u306e\u3067\u3059\u261d\ufe0f\n\u3059\u3054\u3044\u7f8e\u5473\u3057\u3044\u30d1\u30b9\u30bf\u3068\u307f\u3093\u306a\u306e\u7b11\u9854\ud83d\ude0a\u6700\u9ad8\u3067\u3057\u305f\u301c\n#\u521d\u3081\u307e\u3057\u3066\u306e\n#\u30c7\u30a3\u30ca\u30fc\u306f\u30d1\u30b9\u30bf\n#\u6700\u5f8c\u306e\u6700\u5f8c\u3067\u4f55\u304b\u3084\u3089\u304b\u3059\n#\u7b2c\u4e00\u5370\u8c61\u6700\u60aa\u306b\u306a\u3063\u305f\u304b\u3082\u3057\u308c\u306a\u3044\u2026 https:\/\/t.co\/ZpEHWjiBlg","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2298795727,"id_str":"2298795727","name":"(\u3059\u30fb\u03c9\u30fb\u306a\u304a)","screen_name":"sandman7871","location":null,"url":null,"description":"\u7b11\u9854\u3067\u4f55\u4e8b\u3082\u5439\u304d\u98db\u3070\u3059 Instagram\u2192sandman_0312","protected":false,"verified":false,"followers_count":250,"friends_count":314,"listed_count":3,"favourites_count":1269,"statuses_count":10255,"created_at":"Sun Jan 19 01:48:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662672809965961217\/6osj-pO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662672809965961217\/6osj-pO0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2298795727\/1445878390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[32.75096880,129.87063741]},"coordinates":{"type":"Point","coordinates":[129.87063741,32.75096880]},"place":{"id":"af731792f32c92af","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/af731792f32c92af.json","place_type":"city","name":"\u9577\u5d0e\u5e02","full_name":"\u9577\u5d0e\u770c \u9577\u5d0e\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[129.628495,32.548473],[129.628495,32.965430],[129.988480,32.965430],[129.988480,32.548473]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u521d\u3081\u307e\u3057\u3066\u306e","indices":[53,60]},{"text":"\u30c7\u30a3\u30ca\u30fc\u306f\u30d1\u30b9\u30bf","indices":[61,70]},{"text":"\u6700\u5f8c\u306e\u6700\u5f8c\u3067\u4f55\u304b\u3084\u3089\u304b\u3059","indices":[71,84]},{"text":"\u7b2c\u4e00\u5370\u8c61\u6700\u60aa\u306b\u306a\u3063\u305f\u304b\u3082\u3057\u308c\u306a\u3044","indices":[85,102]}],"urls":[{"url":"https:\/\/t.co\/ZpEHWjiBlg","expanded_url":"https:\/\/instagram.com\/p\/93iPsbBP0F\/","display_url":"instagram.com\/p\/93iPsbBP0F\/","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973659"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320712704,"id_str":"663727632320712704","text":"RT @startios: \u00abIls ne savent pas qu\u2019on sait qu\u2019ils savent qu\u2019on sait !\u00bb - Friends, Rachel.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2894432577,"id_str":"2894432577","name":"Dandi123","screen_name":"NGadisek","location":"Corse","url":null,"description":"Aujourd'hui j'en rigole hier j'en pleurais le pass\u00e9 s'envole les souvenirs vont s'envoler","protected":false,"verified":false,"followers_count":753,"friends_count":961,"listed_count":23,"favourites_count":2238,"statuses_count":15964,"created_at":"Thu Nov 27 10:43:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654621180121513984\/NCB09On__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654621180121513984\/NCB09On__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2894432577\/1444909060","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:00:02 +0000 2015","id":663672387464921088,"id_str":"663672387464921088","text":"\u00abIls ne savent pas qu\u2019on sait qu\u2019ils savent qu\u2019on sait !\u00bb - Friends, Rachel.","source":"\u003ca href=\"http:\/\/bllpro.net\/S\" rel=\"nofollow\"\u003eATS BLLPRO\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":626378873,"id_str":"626378873","name":"Citations c\u00e9l\u00e9bres","screen_name":"startios","location":"Contact : bllpro@live.fr ","url":null,"description":"Les plus belles citations de vos films, stars et musiques pr\u00e9f\u00e9r\u00e9es.","protected":false,"verified":false,"followers_count":382484,"friends_count":284570,"listed_count":244,"favourites_count":0,"statuses_count":3968,"created_at":"Wed Jul 04 11:19:51 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"575757","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000118625572\/6d73f50b7cbacd6840696a5d120aeedf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000118625572\/6d73f50b7cbacd6840696a5d120aeedf.jpeg","profile_background_tile":true,"profile_link_color":"F7980A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000656347209\/ad38bd914a1ede6c8da379ee3af017da_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000656347209\/ad38bd914a1ede6c8da379ee3af017da_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626378873\/1425295177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":57,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"startios","name":"Citations c\u00e9l\u00e9bres","id":626378873,"id_str":"626378873","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079973665"} +{"delete":{"status":{"id":663717570168549378,"id_str":"663717570168549378","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447079973700"}} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632303919104,"id_str":"663727632303919104","text":"RT @JackJackJohnson: U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387644939,"id_str":"387644939","name":"swissgurl","screen_name":"CherylZuercher","location":"Amriswil\/Switzerland","url":"https:\/\/twitter.com\/cherylzuercher\/status\/655791558852218880","description":"Justin followed 01\/25\/2015 6:24 pm \u265b\/ Cameron is mine. \/ faves are following \/ I met the sweetest person on earth Jacob Whitesides \/\/ i wanna be an artist \u2728","protected":false,"verified":false,"followers_count":14776,"friends_count":10876,"listed_count":29,"favourites_count":27670,"statuses_count":81860,"created_at":"Sun Oct 09 12:31:07 +0000 2011","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/488817087616258049\/K-g_Otzo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/488817087616258049\/K-g_Otzo.jpeg","profile_background_tile":true,"profile_link_color":"FF2ED5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660460056673181696\/hiPovSx8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660460056673181696\/hiPovSx8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387644939\/1446753036","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433779056641,"id_str":"663727433779056641","text":"U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT LIT!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588966,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13964,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":840,"favorite_count":1418,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973661"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632299638787,"id_str":"663727632299638787","text":"\uc624\uacf5\uc774 \ub610\uc7a5\ud310\uc5d0 \ub098\uc624\uba74 \ub2e4\ud0a4 \ub4e4\uace0\uac10...... \ub450\uc88c\uc11d \uc608\ub9e4\ud558\uace0 \uac19\uc774 \ubcfc\uac83 #\ub610\uc7a5\ud310_\ubc31\ub9cc\uad00\uac1d_\uae30\uc6d0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2720802398,"id_str":"2720802398","name":"[\uc785\uc2dc\ubc1c]\ucc60\ud3ec\ud504","screen_name":"ch_ya__pop","location":"\uc624\uacf5\uc774\uc758 \uc67c\ucabd \uba5c\ube75 \uc8fc\uba38\ub2c8 \uc548","url":null,"description":"\ubabd\uae00\ubaacor\ucc60\ud3ec\ud504 \/ \ub610\ubd07 \/ \ub3c5\uace0\ub124 \/ \uc624\uacf5\uc774\ub97c \ubcf4\uba74 \uc6b8\ubd80\uc9d6\uc2b5\ub2c8\ub2e4 \/ \uc7a1\ub355 \/ \uc790\ub355 \/ \uc81c\uc545\uc6d4\ub4dc @JW_PBR \/ \uc9c0\ub8b0\uc5c6\ub294 \uc62c\ub77c\uc6b4\ub354 \/ \ub9de\ud314\uc740 \ud2b8\uce5c\uc18c\ub54c\ub9cc \/ \uc778\uc7a5 \uba00\uc544\u2764\ufe0f \ud5e4\ub354 \uc7dd\uc544\u2764\ufe0f","protected":false,"verified":false,"followers_count":291,"friends_count":152,"listed_count":1,"favourites_count":6784,"statuses_count":33035,"created_at":"Sun Aug 10 04:13:18 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541455806365831168\/KhNMf4fp.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541455806365831168\/KhNMf4fp.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663181918012182528\/qazB-X7E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663181918012182528\/qazB-X7E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2720802398\/1442095516","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ub610\uc7a5\ud310_\ubc31\ub9cc\uad00\uac1d_\uae30\uc6d0","indices":[41,53]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079973660"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632308150273,"id_str":"663727632308150273","text":"@purikure pls dont shoot dario","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727591208189953,"in_reply_to_status_id_str":"663727591208189953","in_reply_to_user_id":483782570,"in_reply_to_user_id_str":"483782570","in_reply_to_screen_name":"kumaccin0","user":{"id":483782570,"id_str":"483782570","name":"kuma\u2606FORCED HIATUS","screen_name":"kumaccin0","location":"ITA\/ENG - 21 y-old demi he\/him","url":"http:\/\/kumaccin0.flavors.me","description":"Please return @ahaha_wav to me \u2022 Multimedial arts major \u2022 I draw, occasionally NSFW \u2022 DMs are closed \u2022 For commissions: https:\/\/t.co\/W6vyPAHWSC i: @acarinexacca","protected":false,"verified":false,"followers_count":1617,"friends_count":718,"listed_count":18,"favourites_count":18664,"statuses_count":114414,"created_at":"Sun Feb 05 11:36:16 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596959628438605824\/-AO7MZkI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596959628438605824\/-AO7MZkI.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661915075842850816\/-TbesqVa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661915075842850816\/-TbesqVa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483782570\/1445816591","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"purikure","name":"Crescen\u266ao@\u30b7\u30f3\u30af\u30ed\u6b21\u5143","id":615959180,"id_str":"615959180","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973662"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632303964160,"id_str":"663727632303964160","text":"@rojoshe @Mikael_Thfc oh okay \ud83d\ude48","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727587642986496,"in_reply_to_status_id_str":"663727587642986496","in_reply_to_user_id":2526485848,"in_reply_to_user_id_str":"2526485848","in_reply_to_screen_name":"rojoshe","user":{"id":2692441833,"id_str":"2692441833","name":"\u2665\ufe0f","screen_name":"rvpisarapist","location":"zeebekistan","url":null,"description":"@adidasfootball athlete. Teamwork makes the dream work. Benteke is my dad. Asexual. Vegan.","protected":false,"verified":false,"followers_count":2129,"friends_count":422,"listed_count":16,"favourites_count":14964,"statuses_count":85202,"created_at":"Wed Jul 09 20:37:53 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708594605531137\/Jj3ZHIs__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708594605531137\/Jj3ZHIs__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2692441833\/1446067223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rojoshe","name":"Daddy J\u00f6she","id":2526485848,"id_str":"2526485848","indices":[0,8]},{"screen_name":"Mikael_Thfc","name":"Mikael","id":2166610653,"id_str":"2166610653","indices":[9,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973661"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320622592,"id_str":"663727632320622592","text":"RT @EXOBEAKHYUN_TB: \u0e2d\u0e34\u0e08.....\u0e19\u0e39\u0e19\u0e32\u0e17\u0e33\u0e1a\u0e38\u0e0d\u0e14\u0e49\u0e27\u0e22\u0e2d\u0e31\u0e25\u0e44\u0e25...... #YiXing \u0e08\u0e31\u0e14\u0e1c\u0e21\u0e2a\u0e2d\u0e07\u0e43\u0e19\u0e44\u0e2d\u0e42\u0e1f\u0e19\u0e41\u0e25\u0e49\u0e27\u0e19\u0e39\u0e19\u0e32\u0e01\u0e47\u0e0a\u0e48\u0e27\u0e22\u0e08\u0e31\u0e14\u0e2b\u0e37\u0e2d\u0e2d\u0e2d \ud83d\ude20\ud83d\ude31\ud83d\ude2d https:\/\/t.co\/M6hrC5Sl7z","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095490909,"id_str":"1095490909","name":"` KAICULLEN ft. MN","screen_name":"K___________z","location":"KAI's role player ","url":null,"description":"\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1f\u0e19\u0e01\u0e31\u0e1a\u0e04\u0e19\u0e2d\u0e37\u0e48\u0e19\u0e41\u0e25\u0e49\u0e27\u0e19\u0e49\u0e2d\u0e07\u0e08\u0e30\u0e1b\u0e27\u0e14\u0e43\u0e08 \u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1f\u0e19\u0e01\u0e31\u0e1a\u0e1e\u0e35\u0e48\u0e44\u0e04\u0e41\u0e25\u0e49\u0e27\u0e19\u0e49\u0e2d\u0e07\u0e08\u0e30\u0e1b\u0e27\u0e14\u0e40\u0e2d\u0e27 | cousins | my fanboy | \u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e32\u0e21\u0e35\u0e42\u0e04 | 16.01.13 \u2661\u028d\u0258\u0258\u0438\u03b1 \ufe4f \u99ac\u9e7f\u91ce\u90ce","protected":false,"verified":false,"followers_count":2112,"friends_count":124,"listed_count":2,"favourites_count":2902,"statuses_count":163512,"created_at":"Wed Jan 16 15:13:02 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/501410241276170240\/47SP8Q1u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/501410241276170240\/47SP8Q1u.jpeg","profile_background_tile":true,"profile_link_color":"FF3333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317491226411008\/1w8veMJC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317491226411008\/1w8veMJC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095490909\/1446915744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:13 +0000 2015","id":663726794827239425,"id_str":"663726794827239425","text":"\u0e2d\u0e34\u0e08.....\u0e19\u0e39\u0e19\u0e32\u0e17\u0e33\u0e1a\u0e38\u0e0d\u0e14\u0e49\u0e27\u0e22\u0e2d\u0e31\u0e25\u0e44\u0e25...... #YiXing \u0e08\u0e31\u0e14\u0e1c\u0e21\u0e2a\u0e2d\u0e07\u0e43\u0e19\u0e44\u0e2d\u0e42\u0e1f\u0e19\u0e41\u0e25\u0e49\u0e27\u0e19\u0e39\u0e19\u0e32\u0e01\u0e47\u0e0a\u0e48\u0e27\u0e22\u0e08\u0e31\u0e14\u0e2b\u0e37\u0e2d\u0e2d\u0e2d \ud83d\ude20\ud83d\ude31\ud83d\ude2d https:\/\/t.co\/M6hrC5Sl7z","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622656607,"id_str":"622656607","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","screen_name":"EXOBEAKHYUN_TB","location":"Bangkok, Thailand","url":null,"description":"\u3139H39EXOK EXOM =EXOL|12forever and ever|\u0e2d\u0e31\u0e1e\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1aEXO \u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46ID:great11575","protected":false,"verified":false,"followers_count":59914,"friends_count":544,"listed_count":81,"favourites_count":889,"statuses_count":186209,"created_at":"Sat Jun 30 08:56:37 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_tile":false,"profile_link_color":"D91161","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622656607\/1445573786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":110,"favorite_count":13,"entities":{"hashtags":[{"text":"YiXing","indices":[36,43]}],"urls":[{"url":"https:\/\/t.co\/M6hrC5Sl7z","expanded_url":"https:\/\/vine.co\/v\/elMVV26urKO","display_url":"vine.co\/v\/elMVV26urKO","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YiXing","indices":[56,63]}],"urls":[{"url":"https:\/\/t.co\/M6hrC5Sl7z","expanded_url":"https:\/\/vine.co\/v\/elMVV26urKO","display_url":"vine.co\/v\/elMVV26urKO","indices":[107,130]}],"user_mentions":[{"screen_name":"EXOBEAKHYUN_TB","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","id":622656607,"id_str":"622656607","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079973665"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632308006912,"id_str":"663727632308006912","text":"\uff5e\uff3e\uff3e\uff5e","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1192963075,"id_str":"1192963075","name":"\u304a\u306e\u3063\u3061_bot","screen_name":"deradera6","location":null,"url":null,"description":"\u3053\u3093\u306b\u3061\u308f\uff3e\uff3e\u521d\u3081\u307e\u3057\u3066!\uff0122\u6b73\u306e\u304a\u306e\u3063\u3061\u3067\u3059\uff1e\uff1c\u30a2\u30cb\u30e1\u3084\u96d1\u8ac7\u304c\u597d\u304d\u3067\u3059\uff3e\uff3e\u826f\u304b\u3063\u305f\u3089\u307f\u306a\u3055\u3093\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff1e\uff1c\uff3e\uff0d\uff3e\uff1e\uff1c","protected":false,"verified":false,"followers_count":34,"friends_count":37,"listed_count":0,"favourites_count":0,"statuses_count":41560,"created_at":"Mon Feb 18 11:57:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/811903952\/2dd3602b572a358b177f84f5131368df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/811903952\/2dd3602b572a358b177f84f5131368df.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3366326459\/3d3ced40dbc9b36f99048b170b5edad1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3366326459\/3d3ced40dbc9b36f99048b170b5edad1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192963075\/1363004065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079973662"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312221697,"id_str":"663727632312221697","text":"RT @song_38melo: \u6d0b\u5e73\u3055\u3093\u58f0\u5e2f\u60aa\u304f\u3057\u3061\u3083\u3063\u3066\n\u5927\u4e08\u592b\u304b\u306a\u3001\u3059\u3054\u304f\u5fc3\u914d\n\n\u7121\u7406\u3057\u3066\u306a\u3044\u3068\u3044\u3044\u3051\u3069\u2026\u5408\u5531\u90e8\u306b\u5165\u3063\u3066\u305f\u9803\u306e\u53cb\u9054\u306b\u58f0\u5e2f\u75db\u3081\u3066\u624b\u8853\u306b\u306a\u3063\u305f\u5b50\u3044\u308b\u3093\u3060\u3088\u306d\n\n\u672d\u5e4c\u307e\u3067\u3042\u30681\u9031\u9593\u3082\u306a\u3044\u3051\u3069\u6cbb\u308b\u306e\u304b\u306a(\u00b4\uff1b\u03c9\uff1b\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2439354108,"id_str":"2439354108","name":"\u5229\u5948@rai","screen_name":"Ma09da","location":null,"url":null,"description":"ONE OK ROCK!!! 35xxxv\u53c2\u6226\u6e08\u307f \u30d2\u30b9\u30d1\u30cb KYHOMG \u30db\u30eb\u30e2\u30f3 \u30d9\u30ac\u30b9\u306a\u3069\u90a6\u30ed\u30c3\u30af\u9ad82 \u9759\u5ca1\u770c \u304a\u59c9\u3061\u3083\u3093[@chamnm0722] \u9593\u9055\u3063\u305f\u3063\u3066\u30a4\u30a4\u3058\u3083\u3093\uff01\u4e00\u56de\u3057\u304b\u7121\u3044\u3058\u3083\u3093\uff01\u5df1\u306e\u4eba\u751f\u3060!! 3R","protected":false,"verified":false,"followers_count":550,"friends_count":469,"listed_count":5,"favourites_count":9266,"statuses_count":3512,"created_at":"Sat Apr 12 02:13:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624522287530639360\/fA65vC6v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624522287530639360\/fA65vC6v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2439354108\/1438867113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:28 +0000 2015","id":663726857469079552,"id_str":"663726857469079552","text":"\u6d0b\u5e73\u3055\u3093\u58f0\u5e2f\u60aa\u304f\u3057\u3061\u3083\u3063\u3066\n\u5927\u4e08\u592b\u304b\u306a\u3001\u3059\u3054\u304f\u5fc3\u914d\n\n\u7121\u7406\u3057\u3066\u306a\u3044\u3068\u3044\u3044\u3051\u3069\u2026\u5408\u5531\u90e8\u306b\u5165\u3063\u3066\u305f\u9803\u306e\u53cb\u9054\u306b\u58f0\u5e2f\u75db\u3081\u3066\u624b\u8853\u306b\u306a\u3063\u305f\u5b50\u3044\u308b\u3093\u3060\u3088\u306d\n\n\u672d\u5e4c\u307e\u3067\u3042\u30681\u9031\u9593\u3082\u306a\u3044\u3051\u3069\u6cbb\u308b\u306e\u304b\u306a(\u00b4\uff1b\u03c9\uff1b\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908559124,"id_str":"2908559124","name":"\u3042 \u308a \u3083 \u3063 \u307d \u3093@39\u4f59\u97fb","screen_name":"song_38melo","location":"\u304a\u3064\u304e \u261e \u305d\u306e\u3053 \u6e0b\u8c37 \u30c9\u30ed\u30b9 \u5e55\u5f35","url":"http:\/\/twpf.jp\/song_38melo","description":"\u25ce miwa \/ SHISHAMO \/ [Alexandros] \u25ce","protected":false,"verified":false,"followers_count":3247,"friends_count":2907,"listed_count":126,"favourites_count":29823,"statuses_count":23362,"created_at":"Mon Nov 24 01:47:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587228445542760451\/52kMwbB-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587228445542760451\/52kMwbB-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908559124\/1446546953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"song_38melo","name":"\u3042 \u308a \u3083 \u3063 \u307d \u3093@39\u4f59\u97fb","id":2908559124,"id_str":"2908559124","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973663"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632287006720,"id_str":"663727632287006720","text":"\u685c\u306f\u300e\u6563\u308b\u300f\u3001\u6885\u306f\u300e\u3053\u307c\u308c\u308b\u300f\u3001\u83ca\u306f\u300e\u821e\u3046\u300f\u3001\u7261\u4e39\u306f\u300e\u5d29\u308c\u308b\u300f\u3001\u693f\u306f\u300e\u843d\u3061\u308b\u300f\u3002\u82b1\u306e\u7d42\u308f\u308a\u306f\u305d\u308c\u305e\u308c\u9055\u3046\u3093\u3067\u3059\u3002#\u65e5\u672c\u8a9e\u3092\u611b\u3057\u305f\u304f\u306a\u308b\u30b3\u30d4\u30fc kashipan3","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261928664,"id_str":"1261928664","name":"\u304a\u3082\u308d\u3064\u3044\u30fc\u3068","screen_name":"omorotwi","location":null,"url":null,"description":"\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u306e\u753b\u50cf\u306b\u3082\u3042\u308b\u901a\u308a\u3001\u30d0\u30ca\u30ca\u30de\u30f3\u3055\u3093\u304c\u7d50\u69cb\u597d\u304d\u3067\u3059\u266a\u304a\u7b11\u3044\u306f\u738b\u9053\u306a\u7b11\u3044\u304b\u3089\u3001\u3061\u3087\u3063\u3068\u30b7\u30e5\u30fc\u30eb\u306a\u3082\u306e\u307e\u3067\u5e45\u5e83\u304f\u898b\u3066\u307e\u3059\u3001\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3082\u9762\u767d\u3044\u30cd\u30bf\u304c\u3042\u308c\u3070\u3069\u3093\u3069\u3093\u545f\u304f\u3064\u3082\u308a\u3067\u3059\u306e\u3067\u3001\u826f\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\uff06\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u304f\u3060\u3055\u3044\u306d\u266a\u30e8\u30ed\u30b7\u30af\u304a\u9858\u3044\u3057\u307e\u3059!!","protected":false,"verified":false,"followers_count":4182,"friends_count":4240,"listed_count":6,"favourites_count":0,"statuses_count":41464,"created_at":"Tue Mar 12 13:09:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3371059525\/41145a2e04a6f4258a7b52650ad2c19b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3371059525\/41145a2e04a6f4258a7b52650ad2c19b_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u65e5\u672c\u8a9e\u3092\u611b\u3057\u305f\u304f\u306a\u308b\u30b3\u30d4\u30fc","indices":[56,70]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973657"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632295460864,"id_str":"663727632295460864","text":"(\u4e26\uff09\uff12\uff10\uff11\uff10\u5e74\u306b\u30d6\u30ed\u30c3\u30af\u30fb\u30ec\u30b9\u30ca\u30fc\u3092\u7834\u308a\u3001\u7b2c\uff11\uff15\u4ee3UFC\u4e16\u754c\u30d8\u30d3\u30fc\u7d1a\u738b\u8005\u3068\u306a\u3063\u305f\u683c\u95d8\u5bb6\u306f\uff1f\u3000\u7b54\u3048.\u30b1\u30a4\u30f3\u30fb\u30d9\u30e9\u30b9\u30b1\u30b9","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1254319532,"id_str":"1254319532","name":"\uff31\uff2d\uff21\u30b9\u30dd\u30fc\u30c4bot","screen_name":"QMA_review","location":"\u30ac\u30eb\u30fc\u30c0\u5148\u751f\u306e\u7ffc","url":null,"description":"QMA\u306e\u30b9\u30dd\u30fc\u30c4\u306e\u554f\u984c\u3092\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u4f5c\u8005\u304c\u96d1\u9b5a\u306a\u306e\u3067\u2606\uff11\u306e\u554f\u984c\u3082\u591a\u91cf\u306b\u542b\u307e\u308c\u3066\u307e\u3059\u3002\u3068\u306b\u304b\u304f\u30b9\u30dd\u30fc\u30c4\u306e\u514b\u670d\u306e\u305f\u3081\u306ebot\u3067\u3059\u3002\u306a\u306b\u304b\u4e0d\u5099\u304c\u3042\u308c\u3070\uff205lhp\u307e\u3067\u304a\u4f1d\u3048\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":440,"friends_count":131,"listed_count":33,"favourites_count":10,"statuses_count":187389,"created_at":"Sat Mar 09 12:59:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000327782798\/8c64dca4bdeebabd59cea1b23439cfaa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000327782798\/8c64dca4bdeebabd59cea1b23439cfaa_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973659"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316436480,"id_str":"663727632316436480","text":"Nag eexpect ako sa saturday \ud83d\ude05 sana may bonfire & stuff\ud83d\udd25\ud83d\ude4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302446688,"id_str":"302446688","name":"Jamille Moratin","screen_name":"ohjamjam","location":null,"url":null,"description":"we can't all be angels","protected":false,"verified":false,"followers_count":493,"friends_count":520,"listed_count":1,"favourites_count":7083,"statuses_count":14611,"created_at":"Sat May 21 06:19:34 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598872438605156352\/KmZXWaNQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598872438605156352\/KmZXWaNQ.jpg","profile_background_tile":true,"profile_link_color":"FB7690","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDEDE8","profile_text_color":"F70ACF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662558848327127040\/yRQmthh8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662558848327127040\/yRQmthh8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302446688\/1445675968","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0088e1b1066e791e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0088e1b1066e791e.json","place_type":"city","name":"Legazpi City","full_name":"Legazpi City, Bicol Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[123.688746,13.031922],[123.688746,13.255202],[123.842151,13.255202],[123.842151,13.031922]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316432384,"id_str":"663727632316432384","text":"@sherdorable gahh i dont like him but he's kinda hot idk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727471083163648,"in_reply_to_status_id_str":"663727471083163648","in_reply_to_user_id":1588571473,"in_reply_to_user_id_str":"1588571473","in_reply_to_screen_name":"sherdorable","user":{"id":187106384,"id_str":"187106384","name":"\u2728","screen_name":"insyierosdi","location":null,"url":null,"description":"track 9 album sgfg","protected":false,"verified":false,"followers_count":1995,"friends_count":488,"listed_count":38,"favourites_count":12409,"statuses_count":80860,"created_at":"Sun Sep 05 08:08:28 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460731085647642624\/HGG1YC2Q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460731085647642624\/HGG1YC2Q.png","profile_background_tile":false,"profile_link_color":"EB88A4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663421660746280960\/XxixQRt__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663421660746280960\/XxixQRt__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187106384\/1446895386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sherdorable","name":"( \u02d8 \u00b3\u02d8)","id":1588571473,"id_str":"1588571473","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316563456,"id_str":"663727632316563456","text":"RT @RedChilliesEnt: More images from the Worldwide Dilwale Trailer Premiere! #DilwaleTrailer https:\/\/t.co\/6Jmh2jWslw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172724206,"id_str":"172724206","name":"Maggie Eshak","screen_name":"MagyEshak","location":"Egypt","url":null,"description":"Maggie Eshak","protected":false,"verified":false,"followers_count":116,"friends_count":41,"listed_count":18,"favourites_count":11326,"statuses_count":42270,"created_at":"Fri Jul 30 12:47:26 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000118162865\/b21f67bd490481d4bcc21ffccc0acdf0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000118162865\/b21f67bd490481d4bcc21ffccc0acdf0.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660888362602115072\/PUxBofH5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660888362602115072\/PUxBofH5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172724206\/1418576795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:33 +0000 2015","id":663727380809170946,"id_str":"663727380809170946","text":"More images from the Worldwide Dilwale Trailer Premiere! #DilwaleTrailer https:\/\/t.co\/6Jmh2jWslw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1243173036,"id_str":"1243173036","name":"Dilwale","screen_name":"RedChilliesEnt","location":null,"url":"http:\/\/www.redchillies.com","description":"The official Twitter handle of Red Chillies Entertainment, the production house headed by Shah Rukh & Gauri Khan.","protected":false,"verified":true,"followers_count":81264,"friends_count":100,"listed_count":95,"favourites_count":41,"statuses_count":1092,"created_at":"Tue Mar 05 08:17:20 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496587575323156480\/U2OiuSwX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496587575323156480\/U2OiuSwX.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483938357857112065\/k2ZnRwBV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483938357857112065\/k2ZnRwBV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1243173036\/1446905949","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":72,"entities":{"hashtags":[{"text":"DilwaleTrailer","indices":[57,72]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727344343891969,"id_str":"663727344343891969","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727344343891969,"id_str":"663727344343891969","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727344872390658,"id_str":"663727344872390658","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgOrVAAI3Vmb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgOrVAAI3Vmb.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727345140822016,"id_str":"663727345140822016","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgPrU8AAi5gJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgPrU8AAi5gJ.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727345275039744,"id_str":"663727345275039744","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgQLU8AAgHIA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgQLU8AAgHIA.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailer","indices":[77,92]}],"urls":[],"user_mentions":[{"screen_name":"RedChilliesEnt","name":"Dilwale","id":1243173036,"id_str":"1243173036","indices":[3,18]}],"symbols":[],"media":[{"id":663727344343891969,"id_str":"663727344343891969","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727380809170946,"source_status_id_str":"663727380809170946","source_user_id":1243173036,"source_user_id_str":"1243173036"}]},"extended_entities":{"media":[{"id":663727344343891969,"id_str":"663727344343891969","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgMtUwAEEhYh.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727380809170946,"source_status_id_str":"663727380809170946","source_user_id":1243173036,"source_user_id_str":"1243173036"},{"id":663727344872390658,"id_str":"663727344872390658","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgOrVAAI3Vmb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgOrVAAI3Vmb.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727380809170946,"source_status_id_str":"663727380809170946","source_user_id":1243173036,"source_user_id_str":"1243173036"},{"id":663727345140822016,"id_str":"663727345140822016","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgPrU8AAi5gJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgPrU8AAi5gJ.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727380809170946,"source_status_id_str":"663727380809170946","source_user_id":1243173036,"source_user_id_str":"1243173036"},{"id":663727345275039744,"id_str":"663727345275039744","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgQLU8AAgHIA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgQLU8AAgHIA.jpg","url":"https:\/\/t.co\/6Jmh2jWslw","display_url":"pic.twitter.com\/6Jmh2jWslw","expanded_url":"http:\/\/twitter.com\/RedChilliesEnt\/status\/663727380809170946\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727380809170946,"source_status_id_str":"663727380809170946","source_user_id":1243173036,"source_user_id_str":"1243173036"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291229696,"id_str":"663727632291229696","text":"\u30af\u30bd\u96d1\u98df\u30ea\u30d0\u30de\u30f3\u3067\u3044\u308d\u3093\u306a\u30db\u30e2\u3092\u98df\u3044\u6563\u3089\u304b\u3057\u3066\u307e\u3059\u304c\u672c\u547d\u306f\u5b9f\u306f\u6643\u96f6\u306a\u3093\u3067\u3059\u2026\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223427483,"id_str":"223427483","name":"\u3046\u306a\u306f\u3089\u3053\u3053\u306b\u7720\u308b","screen_name":"_rin_una","location":"\u30d1\u30e9\u30aa\u6cca\u5730\/\u5c71\u57ce\u56fd\/\u5922\u30ce\u54b2\u5b66\u5712\/\u7b2c\u4e8c\u7279\u7570\u70b9","url":"http:\/\/twpf.jp\/_rin_una","description":"\u203b\u8150\u6210\u4eba\u6e08\/\u8ee2\u8f09\u7981\u6b62\/BLNL\u96d1\u98df\u5225\u8ef8\u30ea\u30d0\u91ce\u90ce\u203b \u72ec\u308a\u8a00\u304b\u305f\u307e\u306b\u7d75\u3092\u63cf\u304f\u30b9\u30af\u30b7\u30e7\u30de\u30f3 \u6700\u8fd1\u306f\u3042\u3093\u30b9\u30bf(\u6643\u96f6\/\u96f6\u6643\u4e2d\u5fc3\/) fate\/go\u3082","protected":false,"verified":false,"followers_count":162,"friends_count":193,"listed_count":5,"favourites_count":5265,"statuses_count":12447,"created_at":"Mon Dec 06 10:56:45 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"022330","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661575661014769668\/Le0agDj__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661575661014769668\/Le0agDj__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223427483\/1438210519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632295530496,"id_str":"663727632295530496","text":"Gr\u00fcnes Wohnen: Ein ungewohnt offenes Passivhaus in S\u00fcdtirol https:\/\/t.co\/GJclXZx0cR via @faznet","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50645038,"id_str":"50645038","name":"Frank Langenfeld","screen_name":"FELDart","location":"planet earth","url":"http:\/\/www.feld-art.de","description":"The focus of humanistic thoughts is not prejudice and obedience to authority, but action of individuals and personal intuition. ~ Quote: Edward William Said","protected":false,"verified":false,"followers_count":1913,"friends_count":2105,"listed_count":389,"favourites_count":2004,"statuses_count":349133,"created_at":"Thu Jun 25 13:29:37 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/25559196\/IMG_0441_thumb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/25559196\/IMG_0441_thumb.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"A4B9C4","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261581407385\/3c55c063d37d0c2e2adca1d742ef6b3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261581407385\/3c55c063d37d0c2e2adca1d742ef6b3b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50645038\/1356272731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GJclXZx0cR","expanded_url":"http:\/\/www.faz.net\/-hrz-84qmc","display_url":"faz.net\/-hrz-84qmc","indices":[60,83]}],"user_mentions":[{"screen_name":"faznet","name":"FAZ.NET","id":18047862,"id_str":"18047862","indices":[88,95]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079973659"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632308166656,"id_str":"663727632308166656","text":"@leostar8 \u6628\u65e5\u306f\u304a\u75b2\u308c\u3055\u307e\u3067\u3057\u305f\u3002\u304a\u5f85\u305f\u305b\u3057\u3066\u3057\u307e\u3044\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u2026\u4ea4\u63db\u3057\u3066\u3044\u305f\u3060\u3051\u3066\u5b09\u3057\u304b\u3063\u305f\u3067\u3059\uff01\u307e\u305f\u6a5f\u4f1a\u304c\u3042\u308a\u307e\u3057\u305f\u3089\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059(*^^*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663659149067051008,"in_reply_to_status_id_str":"663659149067051008","in_reply_to_user_id":118768840,"in_reply_to_user_id_str":"118768840","in_reply_to_screen_name":"leostar8","user":{"id":1031577973,"id_str":"1031577973","name":"\u308b\u3046\u3068","screen_name":"lollipop_c1910","location":"\u795e\u5948\u5ddd\u770c \u30d5\u30a1\u30f3\u30ad\u30fc\u6751","url":null,"description":"20\u2191\u2661\u771f\u6597\u2661\u3046\u305f\u30d7\u30ea\/\u30d6\u30e9\u30b3\u30f3(\u7948\u7e54,\u98a8\u6597)\/\u3081\u3044\u3053\u3044(\u85e4\u7530,\u9d0e\u5916)\/\u82b1\u307e\u306b(\u5009\u9593)\/\u30c0\u30a4\u30e4(\u5fa1\u5e78,\u30af\u30ea\u30b9)\/\u9ed2\u30d0\u30b9(\u7dd1\u9593,\u6c37\u5ba4)\/\u30cf\u30a4\u30ad\u30e5\u30fc(\u5c71\u53e3,\u53ca\u5ddd)\/\u30dc\u30a4\u30d5\u30ec(\u897f\u5712\u5bfa,\u82b9\u6fa4,\u6843\u8d8a)\/\u86cd\u4e38\u660e\u77f3\u6b4c\u4ed9\u203c \u5922100\u3082\u30d7\u30ec\u30a4\u4e2d\uff5e \u30b9\u30bf\u30df\u30e5FC\u5165\u4f1a\u6e08\u307f\u2665\u67ca,\u6d77\u6597\u3092\u4e2d\u5fc3\u306b\u5fdc\u63f4\u3057\u3066\u307e\u3059\u2665 \u30a8\u30e0\u30de\u30b9\u30d5\u30a1\u30b9\u30e9\u30a4\u53c2\u52a0\u2665!!","protected":false,"verified":false,"followers_count":272,"friends_count":321,"listed_count":1,"favourites_count":879,"statuses_count":4097,"created_at":"Sun Dec 23 23:55:38 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655196823150178304\/jdoEyfKb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655196823150178304\/jdoEyfKb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031577973\/1404181483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leostar8","name":"\u3086\u30fc\u305f@23\u30dc\u30a4\u30d5\u30ec\u30aa\u30f3\u30ea\u30fc\u9022\u5742","id":118768840,"id_str":"118768840","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973662"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632299618304,"id_str":"663727632299618304","text":"I love you eka \ud83d\ude18\ud83d\ude18\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278350050,"id_str":"3278350050","name":"Hi I'm Loyal to her","screen_name":"johnmbob014","location":null,"url":null,"description":"\u2764Erika Ann Acero Salen\u2764","protected":false,"verified":false,"followers_count":26,"friends_count":43,"listed_count":0,"favourites_count":12,"statuses_count":102,"created_at":"Mon Jul 13 10:32:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620543837736341505\/greNohO9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620543837736341505\/greNohO9.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620542433709854721\/xQnN5VrS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620542433709854721\/xQnN5VrS_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973660"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291246080,"id_str":"663727632291246080","text":"@hapirocona \u3060\u3081","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727308990103553,"in_reply_to_status_id_str":"663727308990103553","in_reply_to_user_id":507727677,"in_reply_to_user_id_str":"507727677","in_reply_to_screen_name":"hapirocona","user":{"id":3267263694,"id_str":"3267263694","name":"\u30df\u30eb\u30af\u30c6\u30a3\u30fc\u306e\u5473","screen_name":"amasiro_miu","location":null,"url":null,"description":"\u304a\u3093\u306a\u306e\u3053\u3060\u3088\u3049\uff08*'\u2200'\u4eba\uff09\u2665*+","protected":false,"verified":false,"followers_count":99,"friends_count":85,"listed_count":6,"favourites_count":6950,"statuses_count":5800,"created_at":"Fri Jul 03 17:50:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663652177383067648\/MXQhXtfA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663652177383067648\/MXQhXtfA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267263694\/1444996270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hapirocona","name":"\u30cf\u30d4\u30ed\u30b3\u30ca(\u30cf\u30d4)","id":507727677,"id_str":"507727677","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312233984,"id_str":"663727632312233984","text":"Panjatkan doa setinggi tinggi pengharapan kepada-Nya.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165518912,"id_str":"3165518912","name":"Poksu Min.","screen_name":"aemincx","location":null,"url":"http:\/\/www.instagram.com\/_villagers","description":"cita\u00b2 memerlukan cinta","protected":false,"verified":false,"followers_count":49,"friends_count":38,"listed_count":0,"favourites_count":2791,"statuses_count":2303,"created_at":"Mon Apr 20 14:19:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663687762936135680\/W_ewQtgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663687762936135680\/W_ewQtgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165518912\/1447070321","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079973663"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632299638786,"id_str":"663727632299638786","text":"RT @pooh2000kr: \uc544 \uc774\uac70\ubcf4\uace0 \uc6c3\uaca8 \uc8fd\uc744\ubed4\ud588\u3137, https:\/\/t.co\/cGLeNRSf1c","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1435402369,"id_str":"1435402369","name":"\ubdb8\u3154\u3154","screen_name":"qkrdkfhs112","location":"!","url":null,"description":null,"protected":false,"verified":false,"followers_count":224,"friends_count":156,"listed_count":2,"favourites_count":1018,"statuses_count":150067,"created_at":"Fri May 17 11:14:40 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656112832526684160\/ELWVeyoI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656112832526684160\/ELWVeyoI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1435402369\/1386763373","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 23:16:39 +0000 2015","id":658059556346433536,"id_str":"658059556346433536","text":"\uc544 \uc774\uac70\ubcf4\uace0 \uc6c3\uaca8 \uc8fd\uc744\ubed4\ud588\u3137, https:\/\/t.co\/cGLeNRSf1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551709268,"id_str":"551709268","name":"[\ubc18\ub3d9\uacb0] \ub300\ud559\uac00\uace0\uc2f6\uc740 \uc3d8\ucc0c","screen_name":"pooh2000kr","location":"\ucd5c\uc560\ub4e4\uc758 \ud488\uc18d","url":null,"description":"\ubc18\ub3c4\uc758 \ud754\ud55c \uc608\ube44\ub300\ud559\uc0dd\/\uc624\uc9c0\ucf64\/\uc15c\ub85d, \ub9c8\ub9c8\ub9c8, \ubaa8\ub178\uac00\ud0c0\ub9ac\/\uc0ac\uc774\ud37c\uc988-\uc18c\uc758\ubc43\uc0b4, \ub2e4\uc774\ubb34\uc2a4, \ud2f0\uc5d4 \ucd5c\uc560+\uc0bc\ub85c\ub9ac \ud569\ub2c8\ub2e4\/\ucd08\uc6b8\ud2b8\ub77c\uc7a1\ub355\/\uc800\ub294 \ud398\ubbf8\ub2c8\uc2a4\ud2b8\uc785\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":158,"friends_count":253,"listed_count":1,"favourites_count":1734,"statuses_count":39125,"created_at":"Thu Apr 12 09:27:23 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643366022709248\/1hqHebfo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643366022709248\/1hqHebfo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551709268\/1443371066","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4998,"favorite_count":422,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658059549111287809,"id_str":"658059549111287809","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","url":"https:\/\/t.co\/cGLeNRSf1c","display_url":"pic.twitter.com\/cGLeNRSf1c","expanded_url":"http:\/\/twitter.com\/pooh2000kr\/status\/658059556346433536\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":819,"resize":"fit"},"small":{"w":340,"h":580,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658059549111287809,"id_str":"658059549111287809","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","url":"https:\/\/t.co\/cGLeNRSf1c","display_url":"pic.twitter.com\/cGLeNRSf1c","expanded_url":"http:\/\/twitter.com\/pooh2000kr\/status\/658059556346433536\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":819,"resize":"fit"},"small":{"w":340,"h":580,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pooh2000kr","name":"[\ubc18\ub3d9\uacb0] \ub300\ud559\uac00\uace0\uc2f6\uc740 \uc3d8\ucc0c","id":551709268,"id_str":"551709268","indices":[3,14]}],"symbols":[],"media":[{"id":658059549111287809,"id_str":"658059549111287809","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","url":"https:\/\/t.co\/cGLeNRSf1c","display_url":"pic.twitter.com\/cGLeNRSf1c","expanded_url":"http:\/\/twitter.com\/pooh2000kr\/status\/658059556346433536\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":819,"resize":"fit"},"small":{"w":340,"h":580,"resize":"fit"}},"source_status_id":658059556346433536,"source_status_id_str":"658059556346433536","source_user_id":551709268,"source_user_id_str":"551709268"}]},"extended_entities":{"media":[{"id":658059549111287809,"id_str":"658059549111287809","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSHlrGHVAAEf44f.jpg","url":"https:\/\/t.co\/cGLeNRSf1c","display_url":"pic.twitter.com\/cGLeNRSf1c","expanded_url":"http:\/\/twitter.com\/pooh2000kr\/status\/658059556346433536\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":819,"resize":"fit"},"small":{"w":340,"h":580,"resize":"fit"}},"source_status_id":658059556346433536,"source_status_id_str":"658059556346433536","source_user_id":551709268,"source_user_id_str":"551709268"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079973660"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316547072,"id_str":"663727632316547072","text":"Heavy hearts, like heavy clouds in the sky, are best relieved by the letting of a little water\n--Christopher Morley\n\nRIP Cory. \ud83d\udc38","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109648941,"id_str":"109648941","name":"Paul Kingery","screen_name":"paul_kingery","location":"midwest","url":null,"description":"Musician\/Singer\/Songwriter\/Sideman basic jack of all trades...\r\nThird Singer\/Bass\/Slide Guitar\/ Three Dog Night","protected":false,"verified":false,"followers_count":122,"friends_count":37,"listed_count":3,"favourites_count":700,"statuses_count":2282,"created_at":"Fri Jan 29 19:52:31 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2486307403\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2486307403\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316411904,"id_str":"663727632316411904","text":"\u6d66\u5cf6\u5742\u7530\u8239\u304c\u30d6\u30fc\u30e0\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1041691742,"id_str":"1041691742","name":"\u306e\u3044\u3093","screen_name":"xa_k01","location":null,"url":"http:\/\/twpf.jp\/xa_k01","description":"\u5bff\u5dba\u4e8c\u304c\u63da\u3052\u305f\u304b\u3089\u3042\u3052\u306e\u4e0b\u306b\u6577\u304b\u308c\u308b\u30ad\u30c3\u30c1\u30f3\u30da\u30fc\u30d1\u30fc\u306b\u306a\u308a\u305f\u3044\u4eba\u751f\u3060\u3063\u305f\u3002\u3061\u3087\u3063\u3068\uff8c\uff98\uff70\uff80\uff9e\uff67\uff67\uff91","protected":false,"verified":false,"followers_count":62,"friends_count":93,"listed_count":1,"favourites_count":713,"statuses_count":11418,"created_at":"Fri Dec 28 08:38:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/756885249\/85cccee8242776276d5db4cc679afd1a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/756885249\/85cccee8242776276d5db4cc679afd1a.jpeg","profile_background_tile":false,"profile_link_color":"00552E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638353240392728576\/lbVhAyMT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638353240392728576\/lbVhAyMT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1041691742\/1440224748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291237890,"id_str":"663727632291237890","text":"@rtikan 5555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727518365540352,"in_reply_to_status_id_str":"663727518365540352","in_reply_to_user_id":3083639046,"in_reply_to_user_id_str":"3083639046","in_reply_to_screen_name":"rtikan","user":{"id":3140403042,"id_str":"3140403042","name":"\u0e41\u0e2e\u0e0b\u0e1c\u0e39\u0e49\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01","screen_name":"pedzpook","location":null,"url":null,"description":"I'm Pedzpook : 03\/14\/15 : Bangkok Thailand\/ \n#C14Pedzpook #A13Pedzpook","protected":false,"verified":false,"followers_count":396,"friends_count":156,"listed_count":8,"favourites_count":2318,"statuses_count":31108,"created_at":"Sun Apr 05 15:24:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661111573704892416\/oXT7SY-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661111573704892416\/oXT7SY-v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3140403042\/1440600397","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"018c32f90b11b930","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/018c32f90b11b930.json","place_type":"city","name":"\u0e2a\u0e30\u0e1e\u0e32\u0e19\u0e2a\u0e2d\u0e07","full_name":"\u0e2a\u0e30\u0e1e\u0e32\u0e19\u0e2a\u0e2d\u0e07, \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.588358,13.786788],[100.588358,13.802855],[100.612176,13.802855],[100.612176,13.786788]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rtikan","name":"\u0e1a\u0e32\u0e19\u0e32\u0e19\u0e48\u0e32\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e32\u0e30\u0e2b\u0e34\u0e2b\u0e34","id":3083639046,"id_str":"3083639046","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320696320,"id_str":"663727632320696320","text":"RT @CauseWereGuys: Don\u2019t ever forget this vine https:\/\/t.co\/3CeJqY0D0T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":597810859,"id_str":"597810859","name":"sonitnatsnok","screen_name":"KonVasKar","location":"Leigh on sea","url":null,"description":"Marketing at Plymouth University","protected":false,"verified":false,"followers_count":388,"friends_count":349,"listed_count":0,"favourites_count":3022,"statuses_count":5905,"created_at":"Sat Jun 02 22:46:03 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651093803219189760\/dxixbhdo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651093803219189760\/dxixbhdo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/597810859\/1444227361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:30:08 +0000 2015","id":663589364761513984,"id_str":"663589364761513984","text":"Don\u2019t ever forget this vine https:\/\/t.co\/3CeJqY0D0T","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":434545375,"id_str":"434545375","name":"Because I'm a Guy","screen_name":"CauseWereGuys","location":"Instagram: CauseWereGuys ","url":"http:\/\/causewereguysapparel.com","description":"Welcome to the Mancave! Email us if you want advertising! [ advertising@causewereguys.com ] Snapchat: Guycodes","protected":false,"verified":false,"followers_count":2047008,"friends_count":8,"listed_count":2531,"favourites_count":774,"statuses_count":54450,"created_at":"Mon Dec 12 00:40:54 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0678","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000044096888\/a7d0e67c0a769262b9971180f48983a4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000044096888\/a7d0e67c0a769262b9971180f48983a4.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1688009585\/Men_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1688009585\/Men_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/434545375\/1375607134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2887,"favorite_count":3502,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3CeJqY0D0T","expanded_url":"https:\/\/vine.co\/v\/OuTVHxUPzmt","display_url":"vine.co\/v\/OuTVHxUPzmt","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3CeJqY0D0T","expanded_url":"https:\/\/vine.co\/v\/OuTVHxUPzmt","display_url":"vine.co\/v\/OuTVHxUPzmt","indices":[47,70]}],"user_mentions":[{"screen_name":"CauseWereGuys","name":"Because I'm a Guy","id":434545375,"id_str":"434545375","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973665"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632287043584,"id_str":"663727632287043584","text":"\u7d42\u96fb\u3060\u2026\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252916737,"id_str":"252916737","name":"scharl\u3068\u304b\u3044\u3046\u3042\u304d\u306f","screen_name":"Cakiha","location":null,"url":null,"description":"\u3057\u3083\u308b\u308b\u3060\u3063\u305f\u308a\u3042\u304d\u306f\u3060\u3063\u305f\u308a\u3002\u683c\u30b2\u30fc\u97f3\u30b2\u30fc\u597d\u304d\u306e\u5143\u5929\u5247\u52e2\u3002BBCP(\u30ab\u30b0\u30e9)\/\u30a2\u30eb\u30ab\u30ca3LM(\u30f4\u30a1\u30a4\u30b9)\/UNIEL(\u30ca\u30ca\u30bb)\/\u5929\u5247(\u5996\u5922)\/EFZ(\u307f\u3055\u304d)\/\u30dc\u30c0\u30d6\u30ec(A1\u51f8\u5c4b\u898b\u7fd2\u3044)\/\u5f10\u5bfa\uff06BMS(\u672c\u5bb6\u5341\u6bb5BMS\u767a\u72c2\u56db\u6bb5)\/PSO2(5\u9bd6)\/LoL\/\u30dc\u30c0\u3068\u3077\u305d\u3064\u30fc\u306f\u52d5\u753b\u3042\u3052\u3066\u305f\u3002","protected":false,"verified":false,"followers_count":193,"friends_count":195,"listed_count":10,"favourites_count":140,"statuses_count":39373,"created_at":"Wed Feb 16 05:11:58 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431757701022900224\/RCCuimUx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431757701022900224\/RCCuimUx_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973657"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632308174848,"id_str":"663727632308174848","text":"@dianaking_ Steak 'n Shake","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727561688670208,"in_reply_to_status_id_str":"663727561688670208","in_reply_to_user_id":2811448467,"in_reply_to_user_id_str":"2811448467","in_reply_to_screen_name":"dianaking_","user":{"id":964785902,"id_str":"964785902","name":"Erin","screen_name":"erinnnolan1113","location":"Grafton, OH","url":null,"description":"MHS\u2693 |@alexisnichole7 |Chase","protected":false,"verified":false,"followers_count":528,"friends_count":543,"listed_count":0,"favourites_count":4416,"statuses_count":6417,"created_at":"Thu Nov 22 18:59:47 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"7788EE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660987023960985604\/5P-R_AuW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660987023960985604\/5P-R_AuW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/964785902\/1446346382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dianaking_","name":"diana","id":2811448467,"id_str":"2811448467","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973662"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632303853568,"id_str":"663727632303853568","text":"@dick_fouyou \ubc18\uac00\uc6cc\uc694, \ub515. \uc624\ub298\uc740 \uc5b4\ub560\ub098\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726225689477124,"in_reply_to_status_id_str":"663726225689477124","in_reply_to_user_id":4179904633,"in_reply_to_user_id_str":"4179904633","in_reply_to_screen_name":"dick_fouyou","user":{"id":4079301866,"id_str":"4079301866","name":"Daniel R.Crawford","screen_name":"DC_TTravel","location":"\ub3cc\uace0 \ub3c4\ub294 \uc2dc\uac04 \uc18d, \uc783\uc5b4\uac00\ub294 \uac10\uc815 \uc0ac\uc774.","url":"https:\/\/www.evernote.com\/shard\/s590\/sh\/3ac7cf93-818e-4858-aee2-710f57a939ce\/8bec2c9a31a3a759dc2e98d4","description":"Go with the flow.","protected":false,"verified":false,"followers_count":29,"friends_count":32,"listed_count":0,"favourites_count":30,"statuses_count":1317,"created_at":"Sat Oct 31 11:47:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723021702529024\/5HOfZDvj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723021702529024\/5HOfZDvj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4079301866\/1447078734","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dick_fouyou","name":"Dick","id":4179904633,"id_str":"4179904633","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079973661"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291246081,"id_str":"663727632291246081","text":"2015\u5e7411\u67089\u65e5\ntEdgizQjqUx8Jx5\u3055\u3093\u304c\u5c31\u5e8a\u3057\u307e\u3057\u305f\u3002\n\u6642\u523b 23:39 \u30a2\u30e9\u30fc\u30e0\u8a2d\u5b9a 4:30 - 5:00\n#SleepMeister https:\/\/t.co\/HrHfdwONR7","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3302273862,"id_str":"3302273862","name":"\u3064\u3070\u3055","screen_name":"tEdgizQjqUx8Jx5","location":null,"url":null,"description":"\u5343\u8449\u770c\/\u8239\u6a4b\u3002\u3002\u5439\u594f\u697d\u3067\u3059\u3002\u73ed\u9577(*\uff40\u03c9\u00b4*)\uff84\uff9e\uff94\uff6f \u30dc\u30ab\u30ed\u3068\u304b\u597d\u304d\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u3065\u3044\u305f\u6642\u306b\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1115,"friends_count":1886,"listed_count":0,"favourites_count":0,"statuses_count":126,"created_at":"Fri Jul 31 10:31:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658950914426863616\/q6oIEG9B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658950914426863616\/q6oIEG9B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302273862\/1445941115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SleepMeister","indices":[65,78]}],"urls":[{"url":"https:\/\/t.co\/HrHfdwONR7","expanded_url":"http:\/\/bit.ly\/XnCzN6","display_url":"bit.ly\/XnCzN6","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632299634689,"id_str":"663727632299634689","text":"@oneinone_in \uc774\ubd84 \uc5b4\ub514\uc11c \uc0ac\uc9c4\uc73c\ub85c \ubd4c\uac70\uac00\ud2bc\u314b\u314b\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725637467705344,"in_reply_to_status_id_str":"663725637467705344","in_reply_to_user_id":2323626276,"in_reply_to_user_id_str":"2323626276","in_reply_to_screen_name":"oneinone_in","user":{"id":3292547810,"id_str":"3292547810","name":"\ub178\uba40\ud55c \uc4f0\ub808\uae30 \uc5d0\ud15c","screen_name":"alldayA_TM","location":"\uc4f0\ub808\uae30 \ubb34\ub2e8\ud22c\uae30\ub294 \ubd88\ubc95","url":null,"description":"2n \uc5d0\ud15c\/\ud15c\/\uc288 \uc0ac\uc774\ud37c\uc988(\uc774\uae00)\/ Tiger & Bunny(\ubc14\ub098\ube44)\/ \ub2cc\uc790\uace0(\uc7cc)\/ \ucee4\ubba4 \/ \u2665\uc564\uce90\ub7fd\u2665 \uce98\ub9ac \ucd08\uc9dc \ud314\ub85c\ube14\uc5b8\ube14\uc790\uc720","protected":false,"verified":false,"followers_count":74,"friends_count":80,"listed_count":0,"favourites_count":449,"statuses_count":10262,"created_at":"Sat Jul 25 11:51:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663502536737886208\/mn8vio0t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663502536737886208\/mn8vio0t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292547810\/1445365376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oneinone_in","name":"D-2 \uc6d0\ub2d8","id":2323626276,"id_str":"2323626276","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079973660"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320626688,"id_str":"663727632320626688","text":"RT @ROMACARY: \u2764\ufe0f\u2744\ufe0f @chickllett Ann \ud83c\udfb6 @1NickStevens @levolove_sora @krainevakristi1 @isis5854 @Soniagrolla @RonGizmo @hjacquez1 \u2744\ufe0f https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2215736377,"id_str":"2215736377","name":"MaryAnne Ross","screen_name":"Ross81862mare","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":197,"friends_count":475,"listed_count":8,"favourites_count":5657,"statuses_count":5012,"created_at":"Tue Nov 26 13:35:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:46:49 +0000 2015","id":663472767195611136,"id_str":"663472767195611136","text":"\u2764\ufe0f\u2744\ufe0f @chickllett Ann \ud83c\udfb6 @1NickStevens @levolove_sora @krainevakristi1 @isis5854 @Soniagrolla @RonGizmo @hjacquez1 \u2744\ufe0f https:\/\/t.co\/Ar6J9FKxTV","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663463244930146304,"in_reply_to_status_id_str":"663463244930146304","in_reply_to_user_id":1325087089,"in_reply_to_user_id_str":"1325087089","in_reply_to_screen_name":"chickllett","user":{"id":2619888825,"id_str":"2619888825","name":"MADIE","screen_name":"ROMACARY","location":"FRANCE ","url":null,"description":null,"protected":false,"verified":false,"followers_count":2861,"friends_count":1039,"listed_count":51,"favourites_count":27081,"statuses_count":22696,"created_at":"Wed Jun 18 12:07:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516316126452916224\/81W4ZNTL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516316126452916224\/81W4ZNTL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2619888825\/1411934958","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chickllett","name":"\u270cAnn Dempsey\u270c","id":1325087089,"id_str":"1325087089","indices":[5,16]},{"screen_name":"1NickStevens","name":"Nick Stevens","id":2925293641,"id_str":"2925293641","indices":[23,36]},{"screen_name":"levolove_sora","name":"sora","id":2888326376,"id_str":"2888326376","indices":[37,51]},{"screen_name":"krainevakristi1","name":"Elena Krayneva","id":2288078401,"id_str":"2288078401","indices":[52,68]},{"screen_name":"isis5854","name":"GENN","id":2309363038,"id_str":"2309363038","indices":[69,78]},{"screen_name":"Soniagrolla","name":"Sonia Grolla","id":1852941408,"id_str":"1852941408","indices":[79,91]},{"screen_name":"RonGizmo","name":"Ron Shaw","id":2243860400,"id_str":"2243860400","indices":[92,101]},{"screen_name":"hjacquez1","name":"H\u00e9ctor M. J\u00e1cquez C.","id":124393632,"id_str":"124393632","indices":[102,112]}],"symbols":[],"media":[{"id":663472752599412736,"id_str":"663472752599412736","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","url":"https:\/\/t.co\/Ar6J9FKxTV","display_url":"pic.twitter.com\/Ar6J9FKxTV","expanded_url":"http:\/\/twitter.com\/ROMACARY\/status\/663472767195611136\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663472752599412736,"id_str":"663472752599412736","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","url":"https:\/\/t.co\/Ar6J9FKxTV","display_url":"pic.twitter.com\/Ar6J9FKxTV","expanded_url":"http:\/\/twitter.com\/ROMACARY\/status\/663472767195611136\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ROMACARY","name":"MADIE","id":2619888825,"id_str":"2619888825","indices":[3,12]},{"screen_name":"chickllett","name":"\u270cAnn Dempsey\u270c","id":1325087089,"id_str":"1325087089","indices":[19,30]},{"screen_name":"1NickStevens","name":"Nick Stevens","id":2925293641,"id_str":"2925293641","indices":[37,50]},{"screen_name":"levolove_sora","name":"sora","id":2888326376,"id_str":"2888326376","indices":[51,65]},{"screen_name":"krainevakristi1","name":"Elena Krayneva","id":2288078401,"id_str":"2288078401","indices":[66,82]},{"screen_name":"isis5854","name":"GENN","id":2309363038,"id_str":"2309363038","indices":[83,92]},{"screen_name":"Soniagrolla","name":"Sonia Grolla","id":1852941408,"id_str":"1852941408","indices":[93,105]},{"screen_name":"RonGizmo","name":"Ron Shaw","id":2243860400,"id_str":"2243860400","indices":[106,115]},{"screen_name":"hjacquez1","name":"H\u00e9ctor M. J\u00e1cquez C.","id":124393632,"id_str":"124393632","indices":[116,126]}],"symbols":[],"media":[{"id":663472752599412736,"id_str":"663472752599412736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","url":"https:\/\/t.co\/Ar6J9FKxTV","display_url":"pic.twitter.com\/Ar6J9FKxTV","expanded_url":"http:\/\/twitter.com\/ROMACARY\/status\/663472767195611136\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663472767195611136,"source_status_id_str":"663472767195611136","source_user_id":2619888825,"source_user_id_str":"2619888825"}]},"extended_entities":{"media":[{"id":663472752599412736,"id_str":"663472752599412736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUg9AjWsAAtiap.jpg","url":"https:\/\/t.co\/Ar6J9FKxTV","display_url":"pic.twitter.com\/Ar6J9FKxTV","expanded_url":"http:\/\/twitter.com\/ROMACARY\/status\/663472767195611136\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663472767195611136,"source_status_id_str":"663472767195611136","source_user_id":2619888825,"source_user_id_str":"2619888825"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079973665"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632324960256,"id_str":"663727632324960256","text":"Join in it's super Fun an easy to do any can one can join up.- https:\/\/t.co\/CtHXysXgqY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":724398498,"id_str":"724398498","name":"Johnnyweedseed","screen_name":"Chad_That_Guy","location":"Where ever I want to be","url":null,"description":null,"protected":false,"verified":false,"followers_count":19292,"friends_count":17639,"listed_count":75,"favourites_count":2106,"statuses_count":17300,"created_at":"Sun Jul 29 18:10:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641017354185535488\/QWNjxJ-V_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641017354185535488\/QWNjxJ-V_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/724398498\/1445560008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CtHXysXgqY","expanded_url":"http:\/\/www.cam4.com\/chad4life?referrerId=e178556dc0a0fbf3d0c716f5c2700657","display_url":"cam4.com\/chad4life?refe\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973666"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632316395520,"id_str":"663727632316395520","text":"@hoppe08 \u3042\u301c\u3084\u3063\u3071\u3064\u3044\u3063\u305f\u306b\u3042\u3052\u308b\u3068\u3059\u3054\u3044\u5c0f\u3055\u304f\u306a\u308b\u4e0a\u306b\u3064\u3076\u308c\u307e\u304f\u308a\uff3eq\uff3e\u75db\u3059\u304e\u308b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725921740845056,"in_reply_to_status_id_str":"663725921740845056","in_reply_to_user_id":96792863,"in_reply_to_user_id_str":"96792863","in_reply_to_screen_name":"hoppe08","user":{"id":96792863,"id_str":"96792863","name":"\u307b\u3063\u307a","screen_name":"hoppe08","location":null,"url":null,"description":"\u6620\u753b\u3068\u30b2\u30fc\u30e0\u3068\u9152\u597d\u304d\u306a\uff08\u6210\u4eba\u6e08\uff09\u304a\u305f\u304f\u3067\u3059\uff01 \u30ad\u30f3\u30b0\u30b9\u30de\u30f3\u306b\u3069\u3063\u3077\u308a\u306f\u307e\u308a\u3001\u306e\u3053\u306e\u3053\u3068\u623b\u3063\u3066\u304d\u307e\u3057\u305f\uff01\u30cf\u30ea\u30fc\u304c\u304b\u308f\u3044\u3059\u304e\u3066\u30de\u30a4\u30c3\u30bfv\u30a8\u30b0\u30b8\u30fc\u304c\u308f\u3093\u3053\u3059\u304e\u3066\u30de\u30a4\u30c3\u30bfv\u30a8\u30b0\u30cf\u30ea\u304b\u308f\u3044\u3044v\u3069\u306a\u305f\u304b\u30a8\u30b0\u30cf\u30ea\u304f\u3060\u3055i\u2026\u30de\u30ea\u30cf\u30ea\u306f\u7f8e\u5c11\u5973\u305f\u3061\u3067\u3059\u3086\u308a\u3067\u3044\u3044\u3067\u3059\n\u8272\u3005\u3068\u8150\u3063\u3066\u307e\u3059\u306e\u306718\u6b73\u4ee5\u4e0a\u306e\u65b9\u3001\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3067\u3059","protected":false,"verified":false,"followers_count":37,"friends_count":29,"listed_count":0,"favourites_count":68,"statuses_count":356,"created_at":"Mon Dec 14 16:35:19 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660051320745779200\/0DfUglnF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660051320745779200\/0DfUglnF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96792863\/1446710252","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hoppe08","name":"\u307b\u3063\u307a","id":96792863,"id_str":"96792863","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973664"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632295395328,"id_str":"663727632295395328","text":"RT @xDeAsiaa_: A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":418424358,"id_str":"418424358","name":"Jade.","screen_name":"LivinABossLife","location":null,"url":null,"description":"\u201cdipped in chocolate, bronzed in elegance, enameled with grace, toasted with beauty. my lord, she's a black woman.\u201d || RIP Jessica \u2764\ufe0f || MDL","protected":false,"verified":false,"followers_count":2368,"friends_count":2367,"listed_count":2,"favourites_count":22003,"statuses_count":78911,"created_at":"Tue Nov 22 04:50:24 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481477496261455872\/rsZYa9_8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481477496261455872\/rsZYa9_8.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658768912801071104\/HcOiMfK7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658768912801071104\/HcOiMfK7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418424358\/1442606222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 18:36:02 +0000 2015","id":661612817364205568,"id_str":"661612817364205568","text":"A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368395273,"id_str":"2368395273","name":"SC: xdeasiaa\u2734","screen_name":"xDeAsiaa_","location":"419 | 937","url":"http:\/\/ftr.io\/r\/71O1UX91","description":"Retweet ALL My Favorites","protected":false,"verified":false,"followers_count":29758,"friends_count":19442,"listed_count":46,"favourites_count":94,"statuses_count":12046,"created_at":"Thu Feb 27 06:27:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368395273\/1427639965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1952,"favorite_count":1540,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xDeAsiaa_","name":"SC: xdeasiaa\u2734","id":2368395273,"id_str":"2368395273","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973659"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291237888,"id_str":"663727632291237888","text":"@hamupai2 \n\u305d\u308c\u306a\u3082\u3046\u6625\u4f11\u307f\u3060\u3057\u6700\u9ad8\u3059\u304e\u3058\u3083\u30fc\u30fc\u30fc\u261d\ud83c\udffb\ufe0f\u261d\ud83c\udffb\u261d\ud83c\udffb\u304c\u3063\u305b\u3082\u697d\u3057\u307f\u3060\u3051\u3069\u3042\u304c\u305b\u3068\u4f1a\u3046\u306e\u304c\u697d\u3057\u307f\uff08\u7b11\uff09\n\u30d2\u30f3\u30c8\uff01\u30d2\u30f3\u30c8\uff01\u30d2\u30f3\u30c8\u30b8\u30e5\u30bb\u30e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726556741656576,"in_reply_to_status_id_str":"663726556741656576","in_reply_to_user_id":4024832772,"in_reply_to_user_id_str":"4024832772","in_reply_to_screen_name":"hamupai2","user":{"id":3561533414,"id_str":"3561533414","name":"\uce74\ub098","screen_name":"BUM_610","location":null,"url":null,"description":"96 \uc7ac\ubc94\uc624\ube60~\uac00\uc7a5\uc88b\uc544\ud574\u2764\ufe0f\ud56d\uc0c1\ub9ce\uc774\ud589\ubcf5\uc744\uace0\ub9c8\uc6cc\uc6a9^^ 6\/10 8\/25 9\/7 9\/26 10\/17","protected":false,"verified":false,"followers_count":70,"friends_count":136,"listed_count":0,"favourites_count":387,"statuses_count":2298,"created_at":"Mon Sep 14 15:24:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660094684056784896\/TScyfVqV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660094684056784896\/TScyfVqV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3561533414\/1444010031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hamupai2","name":"\u3071\u3044\u306f\u3080","id":4024832772,"id_str":"4024832772","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632291373056,"id_str":"663727632291373056","text":"Any spare time I have I end up overthinking and it kills me \ud83d\ude29\ud83d\udd2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2824925309,"id_str":"2824925309","name":"Han'","screen_name":"hlbxx","location":"Milton Keynes","url":null,"description":"'I myself am made entirely of flaws stitched together with good intentions'. Jay\u2764\ufe0f","protected":false,"verified":false,"followers_count":37,"friends_count":136,"listed_count":0,"favourites_count":107,"statuses_count":340,"created_at":"Sun Oct 12 12:16:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653260425484746752\/WiGZwMGa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653260425484746752\/WiGZwMGa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2824925309\/1441120891","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973658"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312176640,"id_str":"663727632312176640","text":"RT @hadidgomez: Chucky and Annabelle who? \ud83d\ude33 https:\/\/t.co\/ywZsSn5HIc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946688608,"id_str":"2946688608","name":"\u2639\u2639\u2639","screen_name":"syhndhx_","location":"baby sonya","url":"http:\/\/ask.fm\/indahlicious","description":"in life, everyone else is temporary \/\/\nbaby girls @Girlmanje_ @xhaidaaax \u2665\u2728","protected":false,"verified":false,"followers_count":312,"friends_count":353,"listed_count":0,"favourites_count":3435,"statuses_count":15236,"created_at":"Sun Dec 28 18:47:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660079506124767232\/6_tQ24ou_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660079506124767232\/6_tQ24ou_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946688608\/1446188039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 17:56:40 +0000 2015","id":660878134598832128,"id_str":"660878134598832128","text":"Chucky and Annabelle who? \ud83d\ude33 https:\/\/t.co\/ywZsSn5HIc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152552573,"id_str":"152552573","name":"A Edwards","screen_name":"hadidgomez","location":"#Revival ","url":"http:\/\/smarturl.it\/SGRevival","description":"only me and valyn can stan sabrina, rowan and dove | im LUCAYA trash","protected":false,"verified":false,"followers_count":65401,"friends_count":141,"listed_count":64,"favourites_count":15323,"statuses_count":26915,"created_at":"Sun Jun 06 07:16:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000174941908\/cFqE3hJR.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000174941908\/cFqE3hJR.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"4D12BA","profile_text_color":"F5F3F2","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663561943345733632\/NnN9wplL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663561943345733632\/NnN9wplL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152552573\/1447040470","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17622,"favorite_count":12984,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ywZsSn5HIc","expanded_url":"https:\/\/amp.twimg.com\/v\/22e76cd2-2ff2-48cd-a212-0cb4ebc3ba63","display_url":"amp.twimg.com\/v\/22e76cd2-2ff\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ywZsSn5HIc","expanded_url":"https:\/\/amp.twimg.com\/v\/22e76cd2-2ff2-48cd-a212-0cb4ebc3ba63","display_url":"amp.twimg.com\/v\/22e76cd2-2ff\u2026","indices":[44,67]}],"user_mentions":[{"screen_name":"hadidgomez","name":"A Edwards","id":152552573,"id_str":"152552573","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973663"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632320606208,"id_str":"663727632320606208","text":"\u304a\u3049\uff01\u3000\u3044\u3044\u3067\u3059\u306d('\u03c9')","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":522144757,"id_str":"522144757","name":"\u307d\u3093\u3064\u304f","screen_name":"pontsuku11225","location":"\u798f\u5ca1\u770c","url":null,"description":"\u30dd\u30b1\u30e2\u30f3\/\u30e2\u30f3\u30cf\u30f3\/\u30de\u30ea\u30aa\u30ab\u30fc\u30c8\/\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3000 \u793e\u4f1a\u4eba\u4e8c\u5e74\u76ee\u3000 \u9069\u5f53\u306b\u72ec\u308a\u8a00\u3092\u545f\u3044\u3066\u308b\u3068\u304a\u3082\u3044\u307e\uff53 \u30dd\u30b1\u30e2\u30f3\u52e2\u306f\u57fa\u672c\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059('\u03c9')","protected":false,"verified":false,"followers_count":56,"friends_count":48,"listed_count":4,"favourites_count":51,"statuses_count":7008,"created_at":"Mon Mar 12 10:40:50 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/785258515\/ae5ebc8226efc71ba040827639b937d8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/785258515\/ae5ebc8226efc71ba040827639b937d8.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1891051790\/_____1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1891051790\/_____1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522144757\/1357921758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973665"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312324096,"id_str":"663727632312324096","text":"RT @pinkprintcunt: IT'S BEEN EXACTLY 10 YEARS OMG https:\/\/t.co\/DOr8W3d8PA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330977011,"id_str":"330977011","name":"ana","screen_name":"reginerah","location":"Curitiba, Paran\u00e1","url":null,"description":"se quer guerra ter\u00e1 se quer paz eu quero biscoito","protected":false,"verified":false,"followers_count":837,"friends_count":342,"listed_count":0,"favourites_count":19163,"statuses_count":38303,"created_at":"Thu Jul 07 13:15:26 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479632996962545664\/iwqgPQhW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479632996962545664\/iwqgPQhW.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661910949083930624\/u9nIr23x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661910949083930624\/u9nIr23x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330977011\/1446333894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:05:39 +0000 2015","id":663386911747231744,"id_str":"663386911747231744","text":"IT'S BEEN EXACTLY 10 YEARS OMG https:\/\/t.co\/DOr8W3d8PA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317805797,"id_str":"317805797","name":"ANTI","screen_name":"pinkprintcunt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3645,"friends_count":393,"listed_count":16,"favourites_count":44156,"statuses_count":14580,"created_at":"Wed Jun 15 14:16:09 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3C3DC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530060445759971329\/HTDrvRpy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530060445759971329\/HTDrvRpy.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"30B3F0","profile_text_color":"18F5BE","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660538267025174528\/65NLWB47_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660538267025174528\/65NLWB47_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317805797\/1446319631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21961,"favorite_count":25740,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663386909683679232,"id_str":"663386909683679232","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663386909683679232,"id_str":"663386909683679232","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}},{"id":663386907636822016,"id_str":"663386907636822016","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4LJWcAA5Mxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4LJWcAA5Mxf.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":359,"h":597,"resize":"fit"},"medium":{"w":359,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pinkprintcunt","name":"ANTI","id":317805797,"id_str":"317805797","indices":[3,17]}],"symbols":[],"media":[{"id":663386909683679232,"id_str":"663386909683679232","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663386911747231744,"source_status_id_str":"663386911747231744","source_user_id":317805797,"source_user_id_str":"317805797"}]},"extended_entities":{"media":[{"id":663386909683679232,"id_str":"663386909683679232","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4SxXAAAc3i3.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663386911747231744,"source_status_id_str":"663386911747231744","source_user_id":317805797,"source_user_id_str":"317805797"},{"id":663386907636822016,"id_str":"663386907636822016","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTS4LJWcAA5Mxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTS4LJWcAA5Mxf.jpg","url":"https:\/\/t.co\/DOr8W3d8PA","display_url":"pic.twitter.com\/DOr8W3d8PA","expanded_url":"http:\/\/twitter.com\/pinkprintcunt\/status\/663386911747231744\/photo\/1","type":"photo","sizes":{"large":{"w":359,"h":597,"resize":"fit"},"medium":{"w":359,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}},"source_status_id":663386911747231744,"source_status_id_str":"663386911747231744","source_user_id":317805797,"source_user_id_str":"317805797"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973663"} +{"delete":{"status":{"id":663727548401106944,"id_str":"663727548401106944","user_id":2494677936,"user_id_str":"2494677936"},"timestamp_ms":"1447079973833"}} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312217600,"id_str":"663727632312217600","text":"@aoi_andou \n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e\u3000\u901a\u9662\u3057\u3066\u308b\u610f\u5473\u3000\uff1c\n\uffe3Y^Y^Y^Y^Y^Y^Y^Y\uffe3","source":"\u003ca href=\"https:\/\/twitter.com\/02_1222\" rel=\"nofollow\"\u003e\u30b3\u30fc\u30d2\u30fc\u725b\u4e73\u5de5\u5834\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727205441142784,"in_reply_to_status_id_str":"663727205441142784","in_reply_to_user_id":208567389,"in_reply_to_user_id_str":"208567389","in_reply_to_screen_name":"aoi_andou","user":{"id":199716031,"id_str":"199716031","name":"\u96f7\u4e0b\u305b\u3093\u305b\u30fc(\u64ec\u614b\u4e2d)","screen_name":"02_1222","location":"\u540d\u53e4\u5c4b\u306b\u62c9\u81f4\u3055\u308c\u307e\u3057\u305f","url":null,"description":"\u898b\u305f\u307e\u3093\u307e\u3001\u725b\u4e73\u30d1\u30c3\u30af\u306a\u306a\u306b\u304b\u3002 \u3044\u3064\u3082\u8eab\u5185\u3067\u304f\u3063\u3061\u3083\u3079\u3063\u3066\u307e\u3059\u3002 \u96ea\u5370\u306e\u30b3\u30fc\u30d2\u30fc\u3068\u30d4\u30b6\u307e\u3093\u304c\u597d\u7269\u3002 pixiv\u3067\u8ab0\u3082\u898b\u306a\u3044\u3088\u3046\u306a\u7cde\u30a4\u30e9\u30b9\u30c8(\u4e3b\u306b\u30aa\u30ea\u30b8\u30ca\u30eb)\u3092\u6295\u7a3f\u3057\u3066\u305f\u308a\u3057\u3066\u307e\u3059\u3002 http:\/\/www.pixiv.net\/member.php?id=79","protected":false,"verified":false,"followers_count":53,"friends_count":54,"listed_count":3,"favourites_count":550,"statuses_count":14815,"created_at":"Thu Oct 07 15:32:57 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652125832203268097\/O0H-T9Kg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652125832203268097\/O0H-T9Kg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/199716031\/1439209374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aoi_andou","name":"98%\u304c\u8a00\u3044\u305f\u3044\u3060\u3051\u306e\u8475","id":208567389,"id_str":"208567389","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973663"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632287051776,"id_str":"663727632287051776","text":"\u4ed5\u4e8b\u4e2d\u306b\u7b11\u308f\u305b\u308b\u306e\u52d8\u5f01\u3057\u3066\u304f\u308cwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555595499,"id_str":"555595499","name":"\u307e\u30fc","screen_name":"masa_oyt","location":"\u53ef\u7b11\u3057\u306e\u56fd\u3068\u3044\u3061\u3054\u306e\u56fd\u3092\u884c\u3063\u305f\u308a\u6765\u305f\u308a","url":null,"description":"\u3084\u3063\u3068\u85cd\u8272\u306b\u306a\u308c\u305f\u3002\u3057\u3085\u304d\u3002","protected":false,"verified":false,"followers_count":611,"friends_count":611,"listed_count":46,"favourites_count":11211,"statuses_count":34072,"created_at":"Tue Apr 17 02:13:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000224454419\/b53492c07167c61baa425869f69dabcf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000224454419\/b53492c07167c61baa425869f69dabcf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555595499\/1445865091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973657"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632308039680,"id_str":"663727632308039680","text":"@yrs_1405 \n\u4f55\u306e\u305f\u3081\u306b\u884c\u3063\u305f\u3093\u3060\u3063\u3066\u601d\u3063\u305f(\uff03\uff40\u76bf\u00b4)\u78ba\u304b\u306b\u9045\u3044\u3057\u3001\u5c4a\u304f\u9803\u306b\u306f\u983c\u3093\u3060\u3053\u3068\u3055\u3048\u5fd8\u308c\u304b\u3051\u3066\u308b(^_^;)\u30d3\u30b9\u30b1\u30c3\u30c8\u8cb7\u3048\u306a\u304b\u3063\u305f\u306e\u304c\u6094\u3057\u3059\u304e\u3066\u3055\u30fc\u3001\u3053\u3046\u306a\u3063\u305f\u3089\u30d3\u30b9\u30b1\u30c3\u30c8\u304c\u3069\u3093\u306a\u306b\u5897\u3048\u3088\u3046\u304c\u8cb7\u3063\u3066\u3084\u308b\u203c(\u7b11)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663476922823782400,"in_reply_to_status_id_str":"663476922823782400","in_reply_to_user_id":480481595,"in_reply_to_user_id_str":"480481595","in_reply_to_screen_name":"ballet64Minako","user":{"id":480481595,"id_str":"480481595","name":"\u3086\u3082\uff20\u862d\u4e38\u3000AGF 7\u65e5\u307c\u3063\u3061\u53c2\u6226","screen_name":"ballet64Minako","location":" \u79cb\u8449\u539f\u30fb\u6c60\u888b\u30fb\u6e0b\u8c37","url":null,"description":"*\u3046\u305f\u30d7\u30ea\u2192\u862d\u4e38 \r\n*\u8584\u685c\u9b3c\u2192\u6c96\u658e \r\n*\u30c7\u30a3\u30a2\u30e9\u30d0\u2192\u30b7\u30e5\u30a6\u3001\u30b9\u30d0\u30eb\u3001\u30eb\u30ad\r\n\r\n\r\n\u3000\u3046\u305f\u30d7\u30ea\u306e\u862d\u4e38\u3001\u30c7\u30a3\u30a2\u30e9\u30d0\u306e\u30eb\u30ad\u30b0\u30c3\u30ba\u3092\u3086\u308b\u304f\u56de\u53ce\u3057\u3066\u304a\u308a\u307e\u3059\u203c\u8ff7\u5b50\u3061\u3083\u3093\u304c\u3054\u3056\u3044\u307e\u3057\u305f\u3089\u304a\u58f0\u304c\u3051\u4e0b\u3055\u3044\u203c\r\n\r\n20\u2191\u3067\u30c1\u30ad\u30f3\u306a\u5974\u3067\u3059\u304c...\u540c\u3058\u30a2\u30cb\u30e1\u597d\u304d\u306a\u65b9\u306a\u3069\u7d61\u3093\u3067\u304f\u3060\u3055\u308b\u65b9\u52df\u96c6\u4e2d(*\u00b4\u03c9\uff40*)\u3088\u308d\u3057\u304f\u3067\u3059(\u2267\u2207\u2266)","protected":false,"verified":false,"followers_count":42,"friends_count":70,"listed_count":0,"favourites_count":3,"statuses_count":577,"created_at":"Wed Feb 01 15:05:29 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662612821167869952\/Oehlt5V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662612821167869952\/Oehlt5V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480481595\/1446815416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yrs_1405","name":"\u3086\u30fc\u2606","id":4102515739,"id_str":"4102515739","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973662"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632324800513,"id_str":"663727632324800513","text":"RT @ek8two2: 15.11.6 Gyu\u2461\n\n\u6700\u5f8c\u306e\u4e00\u4eba\u304c\u898b\u3048\u306a\u304f\u306a\u308b\u307e\u3067\u7a93\u3092\u958b\u3051\u3066\u624b\u3092\u632f\u3063\u3066\u304f\u308c\u308b\u512a\u3057\u3044\u4eba\u3002\n\u304e\u3085\u3063\u305f\u3093\u5bd2\u3044\u306e\u306b\u3042\u308a\u304c\u3068\u3046\u3002\u304a\u75b2\u308c\u69d8\u3002 https:\/\/t.co\/DBlMY5NuQj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227322816,"id_str":"3227322816","name":"\u30ca\u30ca","screen_name":"YESUNG_o8z4","location":null,"url":null,"description":"\u226b\u226b \uc288\ud37c\uc8fc\ub2c8\uc5b4 \uff01 \u226b\u226b \uc608\uc131 \uc624\ube60 \uff01 ( @shfly3424 ) \u270c\ufe0e\u270c\ufe0e \uc30d\ub465\uc774 ( @KYUHYUN_ozo3 )","protected":false,"verified":false,"followers_count":91,"friends_count":84,"listed_count":5,"favourites_count":3665,"statuses_count":4467,"created_at":"Tue May 26 17:30:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652646429568069636\/RLPFHqnA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652646429568069636\/RLPFHqnA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227322816\/1437108272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:44:38 +0000 2015","id":663623213658673152,"id_str":"663623213658673152","text":"15.11.6 Gyu\u2461\n\n\u6700\u5f8c\u306e\u4e00\u4eba\u304c\u898b\u3048\u306a\u304f\u306a\u308b\u307e\u3067\u7a93\u3092\u958b\u3051\u3066\u624b\u3092\u632f\u3063\u3066\u304f\u308c\u308b\u512a\u3057\u3044\u4eba\u3002\n\u304e\u3085\u3063\u305f\u3093\u5bd2\u3044\u306e\u306b\u3042\u308a\u304c\u3068\u3046\u3002\u304a\u75b2\u308c\u69d8\u3002 https:\/\/t.co\/DBlMY5NuQj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890073452,"id_str":"890073452","name":"\uc5d0\ub9ac\ucf54\uff65*","screen_name":"ek8two2","location":"JAPAN KANAGAWA","url":null,"description":"ELF-JAPAN 86line\uff0fSJ Only\u2661Yesung\u2661Eunhyuk\u2661\uc608\uc6b1\u2661KRYDE\u5bc4\u308a\u30aa\u30eb\u30da\u30f3\u3002\u53e3\u7656\u306f\u308a\u3087\u3046\u304f\u3061\u3083\u3093\u304b\u308f\u3044\u3044\uff01\u305f\u307e\u306b\u71b1\u304f\u8a9e\u308a\u59cb\u3081\u308b\u50be\u5411\u2026\u3048\u308b\u3077\u306e\u304a\u53cb\u9054\u69d8\u52df\u96c6\u4e2d\u3067\u3059\u3002\u30ea\u30c4\u30a4\u306f\u3054\u81ea\u7531\u306b\u3002\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u308b\u969b\u306b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u02d9\u1d55\u02d9\u2661*.","protected":false,"verified":false,"followers_count":87,"friends_count":145,"listed_count":1,"favourites_count":3074,"statuses_count":11681,"created_at":"Fri Oct 19 01:22:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364590852399104\/dDzo9Xwh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364590852399104\/dDzo9Xwh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890073452\/1442754340","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":51,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663622834921410561,"id_str":"663622834921410561","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","url":"https:\/\/t.co\/DBlMY5NuQj","display_url":"pic.twitter.com\/DBlMY5NuQj","expanded_url":"http:\/\/twitter.com\/ek8two2\/status\/663623213658673152\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663622834921410561,"id_str":"663622834921410561","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","url":"https:\/\/t.co\/DBlMY5NuQj","display_url":"pic.twitter.com\/DBlMY5NuQj","expanded_url":"http:\/\/twitter.com\/ek8two2\/status\/663623213658673152\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/pl\/mgWJjR0Ju7Cagh4T.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/pl\/mgWJjR0Ju7Cagh4T.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/320x180\/Ey9wNoSerRkKwDyx.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/640x360\/4eKvpOmiwSDfBYfa.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/1280x720\/hVhlw-BB6j8FPfxB.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/640x360\/4eKvpOmiwSDfBYfa.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ek8two2","name":"\uc5d0\ub9ac\ucf54\uff65*","id":890073452,"id_str":"890073452","indices":[3,11]}],"symbols":[],"media":[{"id":663622834921410561,"id_str":"663622834921410561","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","url":"https:\/\/t.co\/DBlMY5NuQj","display_url":"pic.twitter.com\/DBlMY5NuQj","expanded_url":"http:\/\/twitter.com\/ek8two2\/status\/663623213658673152\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663623213658673152,"source_status_id_str":"663623213658673152","source_user_id":890073452,"source_user_id_str":"890073452"}]},"extended_entities":{"media":[{"id":663622834921410561,"id_str":"663622834921410561","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663622834921410561\/pu\/img\/YAmvlyukcCytrrga.jpg","url":"https:\/\/t.co\/DBlMY5NuQj","display_url":"pic.twitter.com\/DBlMY5NuQj","expanded_url":"http:\/\/twitter.com\/ek8two2\/status\/663623213658673152\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663623213658673152,"source_status_id_str":"663623213658673152","source_user_id":890073452,"source_user_id_str":"890073452","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/pl\/mgWJjR0Ju7Cagh4T.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/pl\/mgWJjR0Ju7Cagh4T.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/320x180\/Ey9wNoSerRkKwDyx.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/640x360\/4eKvpOmiwSDfBYfa.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/1280x720\/hVhlw-BB6j8FPfxB.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663622834921410561\/pu\/vid\/640x360\/4eKvpOmiwSDfBYfa.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973666"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632303820800,"id_str":"663727632303820800","text":"\u3010\u601d\u308f\u305b\u3076\u308a\u3011\u52d8\u9055\u3044\u3055\u305b\u3061\u3083\u3063\u3066\u306a\u3044\uff1f\u597d\u304d\u306a\u4eba\u4ee5\u5916\u306b\u3084\u3063\u3066\u306f\u3044\u3051\u306a\u3044\u30bb\u30af\u30b7\u30fc\u306a\u8a00\u52d5\u30fb\uff14\u9078\n\n\u2192\u3000https:\/\/t.co\/fNyWFxvJss\n\n\u203b\u3053\u3061\u3089\u304b\u3089\" https:\/\/t.co\/Qa5K07jkA4","source":"\u003ca href=\"https:\/\/twitter.com\/Folderfox2\" rel=\"nofollow\"\u003efolderfoxapi1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4141700653,"id_str":"4141700653","name":"\u30c9\u30e9\u30af\u30a8\u540d\u8a00\u96c6","screen_name":"6Zetkita","location":null,"url":null,"description":"\u30c9\u30e9\u30af\u30a8\u306e\u540d\u8a00\u3092\u3064\u3076\u3084\u304f\u3088","protected":false,"verified":false,"followers_count":65,"friends_count":292,"listed_count":0,"favourites_count":0,"statuses_count":1053,"created_at":"Fri Nov 06 03:04:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662677343593304065\/MfNHMmPe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662677343593304065\/MfNHMmPe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4141700653\/1446829589","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fNyWFxvJss","expanded_url":"http:\/\/s.dom.re\/eP6vS","display_url":"s.dom.re\/eP6vS","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":663727630860980224,"id_str":"663727630860980224","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw4EUkAAd0_p.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw4EUkAAd0_p.png","url":"https:\/\/t.co\/Qa5K07jkA4","display_url":"pic.twitter.com\/Qa5K07jkA4","expanded_url":"http:\/\/twitter.com\/6Zetkita\/status\/663727632303820800\/photo\/1","type":"photo","sizes":{"large":{"w":149,"h":88,"resize":"fit"},"small":{"w":149,"h":88,"resize":"fit"},"thumb":{"w":149,"h":88,"resize":"crop"},"medium":{"w":149,"h":88,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727630860980224,"id_str":"663727630860980224","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw4EUkAAd0_p.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw4EUkAAd0_p.png","url":"https:\/\/t.co\/Qa5K07jkA4","display_url":"pic.twitter.com\/Qa5K07jkA4","expanded_url":"http:\/\/twitter.com\/6Zetkita\/status\/663727632303820800\/photo\/1","type":"photo","sizes":{"large":{"w":149,"h":88,"resize":"fit"},"small":{"w":149,"h":88,"resize":"fit"},"thumb":{"w":149,"h":88,"resize":"crop"},"medium":{"w":149,"h":88,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973661"} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632299651074,"id_str":"663727632299651074","text":"A Man With Crohn\u2019s Disease Shared A Photo To Prove That L... https:\/\/t.co\/u4mlYSfAL3 https:\/\/t.co\/cYtJ6SbCiz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003elove_alvays\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2218362936,"id_str":"2218362936","name":"Love Quotes","screen_name":"love_alvays","location":"washington, dc","url":null,"description":null,"protected":false,"verified":false,"followers_count":1717,"friends_count":1927,"listed_count":3,"favourites_count":0,"statuses_count":5322,"created_at":"Wed Nov 27 20:05:10 +0000 2013","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585871296707170304\/XmP9IE5R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585871296707170304\/XmP9IE5R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2218362936\/1428517597","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/u4mlYSfAL3","expanded_url":"http:\/\/bit.ly\/20AnOtt","display_url":"bit.ly\/20AnOtt","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663727632211533824,"id_str":"663727632211533824","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw9GUYAAZAZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw9GUYAAZAZU.jpg","url":"https:\/\/t.co\/cYtJ6SbCiz","display_url":"pic.twitter.com\/cYtJ6SbCiz","expanded_url":"http:\/\/twitter.com\/love_alvays\/status\/663727632299651074\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":398,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727632211533824,"id_str":"663727632211533824","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw9GUYAAZAZU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw9GUYAAZAZU.jpg","url":"https:\/\/t.co\/cYtJ6SbCiz","display_url":"pic.twitter.com\/cYtJ6SbCiz","expanded_url":"http:\/\/twitter.com\/love_alvays\/status\/663727632299651074\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":398,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079973660"} +{"delete":{"status":{"id":663721584100843520,"id_str":"663721584100843520","user_id":3273007140,"user_id_str":"3273007140"},"timestamp_ms":"1447079973931"}} +{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632312221696,"id_str":"663727632312221696","text":"@pdmssf \u30ac\u30a4\u30eb\u7121\u5370\u304b\u795e\u5351\u5f25\u547c\u7279M\u306a\u3089\u8cb8\u305b\u308b\u3067","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726744340295680,"in_reply_to_status_id_str":"663726744340295680","in_reply_to_user_id":2958749946,"in_reply_to_user_id_str":"2958749946","in_reply_to_screen_name":"pdmssf","user":{"id":2779997868,"id_str":"2779997868","name":"\u3051\u3093\u3061\u3083\u3093@\u30ea\u30ea\u305f\u305d(\u4e42'\u03c9')","screen_name":"kentyan_ririsu","location":"\u80a1\u9593\u306f\u4e00\u5bf8\u6cd5\u5e2b\u30b5\u30a4\u30ba\u306a\u306e","url":"http:\/\/static.monster-strike.com\/line\/?pass_code=MTAyMTMwNzU4","description":"\u795e\u5948\u5ddd\u3061\u3093\u307d\u3053\u30b9\u30c8\u30e9\u30a4\u30ab\u30fc \u8d85\u7d7657\u7a2e\u904b\u6975 \u30e9\u30f3\u30af300\u2191\u79f0\u53f7\u30b3\u30f3\u30d7 \u5f1f\u5b50\u3010@frooz0216 \u3011\u3068\u3053\u3068\u3093\u30ac\u30c1\u30e3\u904b\u7121\u3044\u52e2 \u8ab2\u91d1150\u4e07\u2191\u30eb\u30b7\u3001\u30a2\u30fc\u30b5\u30fc\u3001\u30ca\u30dd\u3092\u304a\u6301\u3061\u3067\u306a\u3044\u4eba\u3092\u717d\u308a\u307e\u3059\u3002\u5929\u8349\u3067\u717d\u3089\u308c\u305f\u3089\u6b7b\u306b\u307e\u3059","protected":false,"verified":false,"followers_count":1540,"friends_count":54,"listed_count":17,"favourites_count":165,"statuses_count":33503,"created_at":"Sat Aug 30 05:59:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654245085064794113\/WMaa9FWa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654245085064794113\/WMaa9FWa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779997868\/1445352278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pdmssf","name":"\u3079\u30fc\u306f\u308b@\u30af\u30bd\u30d7\u30de\u30f3","id":2958749946,"id_str":"2958749946","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079973663"} +{"delete":{"status":{"id":640747342673543169,"id_str":"640747342673543169","user_id":94899335,"user_id_str":"94899335"},"timestamp_ms":"1447079973967"}} +{"delete":{"status":{"id":663724373346492416,"id_str":"663724373346492416","user_id":3091970524,"user_id_str":"3091970524"},"timestamp_ms":"1447079974393"}} +{"delete":{"status":{"id":663723903576113152,"id_str":"663723903576113152","user_id":950232762,"user_id_str":"950232762"},"timestamp_ms":"1447079974501"}} +{"delete":{"status":{"id":663713262618279936,"id_str":"663713262618279936","user_id":3219591205,"user_id_str":"3219591205"},"timestamp_ms":"1447079974542"}} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636502454272,"id_str":"663727636502454272","text":"RT @twostarsmco: \u300c\u5358\u9a0e\u7a81\u5165\u3057\u3066\u4e00\u4eba\u3067\u7121\u6570\u306e\u6575\u3092\u5012\u3059\u300d\u306e\u306fSTG\u306b\u9650\u3089\u305a\u3069\u3093\u306a\u30b2\u30fc\u30e0\u306b\u3082\u5b58\u5728\u3059\u308b\u8981\u7d20\u306a\u306e\u306b\u3001\u3053\u3068STG\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u6551\u308f\u308c\u306a\u3055\u304c\u53d6\u308a\u4e0a\u3052\u3089\u308c\u308b\u306e\u306f\u4f55\u6545\u306a\u306e\u304b\u3002\u7b54\u3048\u3092\u63a2\u308b\u3079\u304f\u6211\u3005\u7279\u6d3e\u54e1\u306f26\u4e16\u7d00\u3078\u3068\u98db\u3093\u3060","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":852765708,"id_str":"852765708","name":"\u3086\u304d\u304b\u305c\u3055\u3093\u3058\u3085\u3046\u3088\u3093\u3055\u3044","screen_name":"cy4a_a0","location":"\u30ae\u30e3\u30e9\u30f3\u30d5\u30a9\u30eb\u30c6\u30a3\u30b9\u30b3\u30c3\u30af\u30d4\u30c3\u30c8","url":"http:\/\/com.nicovideo.jp\/community\/co1022719","description":"\u7965\u9cf3LOVE\u306a\u5fb3\u5cf6\u306e\u63d0\u7763 \u6a21\u578b\u3001\u30e9\u30b8\u30b3\u30f3\u3001\u5f10\u5bfa\u3001\u30dc\u30fc\u30c0\u30fc\u30d6\u30ec\u30a4\u30af\u7b49\u3082\u6d3b\u52d5\u4e2d\u30fb\u30fb\u30fb","protected":false,"verified":false,"followers_count":118,"friends_count":159,"listed_count":8,"favourites_count":209,"statuses_count":24321,"created_at":"Sat Sep 29 12:21:17 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/672987523\/72415fce495afd6254cb910202a4172a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/672987523\/72415fce495afd6254cb910202a4172a.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563830937578786817\/0O2sgYrh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563830937578786817\/0O2sgYrh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/852765708\/1366507682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:53 +0000 2015","id":663716389975277568,"id_str":"663716389975277568","text":"\u300c\u5358\u9a0e\u7a81\u5165\u3057\u3066\u4e00\u4eba\u3067\u7121\u6570\u306e\u6575\u3092\u5012\u3059\u300d\u306e\u306fSTG\u306b\u9650\u3089\u305a\u3069\u3093\u306a\u30b2\u30fc\u30e0\u306b\u3082\u5b58\u5728\u3059\u308b\u8981\u7d20\u306a\u306e\u306b\u3001\u3053\u3068STG\u306e\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u6551\u308f\u308c\u306a\u3055\u304c\u53d6\u308a\u4e0a\u3052\u3089\u308c\u308b\u306e\u306f\u4f55\u6545\u306a\u306e\u304b\u3002\u7b54\u3048\u3092\u63a2\u308b\u3079\u304f\u6211\u3005\u7279\u6d3e\u54e1\u306f26\u4e16\u7d00\u3078\u3068\u98db\u3093\u3060","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118709846,"id_str":"118709846","name":"\u30df\u30c1\u30aa","screen_name":"twostarsmco","location":"\u6c60\u888bGIGO\u5c4b\u4e0a","url":"http:\/\/twostars.blog.shinobi.jp\/","description":"\u30ac\u30f3\u30b9\u30c8\/\u30b0\u30eb\u30b3\u30b9\/STG\/\u30dd\u30b1\u30e2\u30f3\/A9\/VG\/\u30d1\u30ba\u30c9\u30e9[142,938,481]\/MH4[4425-1840-4945]\/\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3[twostarsmco]\/\u305d\u306e\u4ed6\u3044\u308d\u3044\u308d\u3002\u57fa\u672c\u7684\u306b\u4e0b\u624b\u306e\u6a2a\u597d\u304d\u3067\u3059\u3002TGAOB \u30a2\u30a4\u30b3\u30f3 by @meikei1","protected":false,"verified":false,"followers_count":536,"friends_count":282,"listed_count":66,"favourites_count":928,"statuses_count":98396,"created_at":"Mon Mar 01 14:38:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583289074078736384\/Sk03pw72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583289074078736384\/Sk03pw72_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twostarsmco","name":"\u30df\u30c1\u30aa","id":118709846,"id_str":"118709846","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974662"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636494098432,"id_str":"663727636494098432","text":"RT @soynormalvale: cuando te gastan una broma y no te hace ni puta gracia pero tienes que fingir como que s\u00ed https:\/\/t.co\/4emCC8jSqG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143110234,"id_str":"1143110234","name":"Sib\u00f3n\u2728","screen_name":"paula_sibon","location":"Tacita de plata","url":"http:\/\/instagram.com\/paula_sibon\/#","description":"15. Ser bueno no significa portarse bien \u270c \u007bDie with memories not dreams\u007d NYC","protected":false,"verified":false,"followers_count":286,"friends_count":166,"listed_count":1,"favourites_count":9999,"statuses_count":27642,"created_at":"Sat Feb 02 18:31:39 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"994172","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660493049789837312\/4k-Ul3EJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660493049789837312\/4k-Ul3EJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1143110234\/1445521065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:01 +0000 2015","id":663720199741313024,"id_str":"663720199741313024","text":"cuando te gastan una broma y no te hace ni puta gracia pero tienes que fingir como que s\u00ed https:\/\/t.co\/4emCC8jSqG","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1355273870,"id_str":"1355273870","name":"no","screen_name":"soynormalvale","location":null,"url":null,"description":"en serio hay gente que lee esto","protected":false,"verified":false,"followers_count":61441,"friends_count":17,"listed_count":95,"favourites_count":435,"statuses_count":680,"created_at":"Mon Apr 15 20:26:48 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3B3B3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535094566521548801\/4bkUmY5u.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535094566521548801\/4bkUmY5u.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552949623112081408\/-JtROvri_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552949623112081408\/-JtROvri_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1355273870\/1416411246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":655,"favorite_count":457,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662029118347845632,"id_str":"662029118347845632","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","url":"https:\/\/t.co\/4emCC8jSqG","display_url":"pic.twitter.com\/4emCC8jSqG","expanded_url":"http:\/\/twitter.com\/soynormalvale\/status\/663720199741313024\/photo\/1","type":"photo","sizes":{"small":{"w":250,"h":188,"resize":"fit"},"large":{"w":250,"h":188,"resize":"fit"},"medium":{"w":250,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662029118347845632,"id_str":"662029118347845632","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","url":"https:\/\/t.co\/4emCC8jSqG","display_url":"pic.twitter.com\/4emCC8jSqG","expanded_url":"http:\/\/twitter.com\/soynormalvale\/status\/663720199741313024\/photo\/1","type":"animated_gif","sizes":{"small":{"w":250,"h":188,"resize":"fit"},"large":{"w":250,"h":188,"resize":"fit"},"medium":{"w":250,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[125,94],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS__-b4WoAAK5JR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soynormalvale","name":"no","id":1355273870,"id_str":"1355273870","indices":[3,17]}],"symbols":[],"media":[{"id":662029118347845632,"id_str":"662029118347845632","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","url":"https:\/\/t.co\/4emCC8jSqG","display_url":"pic.twitter.com\/4emCC8jSqG","expanded_url":"http:\/\/twitter.com\/soynormalvale\/status\/663720199741313024\/photo\/1","type":"photo","sizes":{"small":{"w":250,"h":188,"resize":"fit"},"large":{"w":250,"h":188,"resize":"fit"},"medium":{"w":250,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663720199741313024,"source_status_id_str":"663720199741313024","source_user_id":1355273870,"source_user_id_str":"1355273870"}]},"extended_entities":{"media":[{"id":662029118347845632,"id_str":"662029118347845632","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS__-b4WoAAK5JR.png","url":"https:\/\/t.co\/4emCC8jSqG","display_url":"pic.twitter.com\/4emCC8jSqG","expanded_url":"http:\/\/twitter.com\/soynormalvale\/status\/663720199741313024\/photo\/1","type":"animated_gif","sizes":{"small":{"w":250,"h":188,"resize":"fit"},"large":{"w":250,"h":188,"resize":"fit"},"medium":{"w":250,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663720199741313024,"source_status_id_str":"663720199741313024","source_user_id":1355273870,"source_user_id_str":"1355273870","video_info":{"aspect_ratio":[125,94],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS__-b4WoAAK5JR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079974660"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636515037184,"id_str":"663727636515037184","text":"@Maya_Fatalieva \u0422\u0443\u0442 \u0435\u0449\u0435 \u0437\u043e\u043b\u043e\u0442\u0435\u0435 !! \u0412 \u0441\u0430\u043c\u043e\u043c \u0440\u0430\u0437\u0433\u0430\u0440\u0435! \u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0439\u0441\u044f )))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721879593615360,"in_reply_to_status_id_str":"663721879593615360","in_reply_to_user_id":593734742,"in_reply_to_user_id_str":"593734742","in_reply_to_screen_name":"Maya_Fatalieva","user":{"id":564468516,"id_str":"564468516","name":"\u041b\u0430\u043f\u043e\u0447\u043a\u0430","screen_name":"Madina033","location":"\u043c\u0430\u0445\u0430\u0447\u043a\u0430\u043b\u0430","url":null,"description":"\u0412\u0434\u043e\u0445 -\u043b\u044e\u0431\u043e\u0432\u044c, \u0432\u044b\u0434\u043e\u0445-\u0431\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u043d\u043e\u0441\u0442\u044c!","protected":false,"verified":false,"followers_count":228,"friends_count":42,"listed_count":3,"favourites_count":377,"statuses_count":12250,"created_at":"Fri Apr 27 07:55:00 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656396775356547072\/8VOAxT-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656396775356547072\/8VOAxT-f_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Maya_Fatalieva","name":"\u041c\u0430\u0439\u044f \u0424\u0430\u0442\u0430\u043b\u0438\u0435\u0432\u0430","id":593734742,"id_str":"593734742","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079974665"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636519231488,"id_str":"663727636519231488","text":"@3ref_m \n\n\u0627\u0644\u0628\u0631\u064a\u0643 \u0625\u0635\u0627\u0628\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720096410542080,"in_reply_to_status_id_str":"663720096410542080","in_reply_to_user_id":312053699,"in_reply_to_user_id_str":"312053699","in_reply_to_screen_name":"3ref_m","user":{"id":342558299,"id_str":"342558299","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0645\u0648\u062c\u0651\u062f","screen_name":"tfa99el","location":"Awesome Jubail, ","url":null,"description":"\u0643\u0627\u0644\u0628\u062d\u0631 \u0641\u064a \u0633\u0643\u0648\u0646\u0647\u060c \u0648\u0627\u0644\u0644\u064a\u0644 \u0641\u064a \u0647\u062f\u0648\u0621\u0647\u060c \u0648\u0627\u0644\u0635\u0628\u062d \u0641\u064a \u0634\u062c\u0648\u0646\u0647. \u062d\u0641\u064a\u062f\u0627 \u0644\u0643\u064f\u062a\u0628\u064a \u0648\u0623\u0628\u0627\u064b \u0644\u062d\u0631\u0648\u0641\u064a .","protected":false,"verified":false,"followers_count":313,"friends_count":143,"listed_count":0,"favourites_count":145,"statuses_count":5665,"created_at":"Tue Jul 26 06:16:29 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654682090445795329\/OAWl5FFV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654682090445795329\/OAWl5FFV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/342558299\/1444961721","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3ref_m","name":"\u2728AREF\u2728","id":312053699,"id_str":"312053699","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079974666"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636481482752,"id_str":"663727636481482752","text":"\u0411\u0430\u0431\u044c\u0435 \u043b\u0435\u0442\u043e. \u041f\u043b\u0430\u0442\u043d\u0430\u044f \u0440\u044b\u0431\u0430\u043b\u043a\u0430.","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3126592630,"id_str":"3126592630","name":"\u0423\u043b\u044c\u044f\u043d\u0430 \u041f\u0438\u0432\u043a\u0438\u043d\u0430EY","screen_name":"upivkina","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":18,"friends_count":0,"listed_count":11,"favourites_count":0,"statuses_count":95446,"created_at":"Sun Mar 29 13:40:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079974657"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485656581,"id_str":"663727636485656581","text":"RT @kakisharedotcom: Shopping problem \ud83d\ude12\n\n*takda duit*\nKalau ada duit, confirm aku beli.\n\n*ada duit*\nNak beli ke taknak ek ? Penting ke ? \ud83d\ude05","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2791167984,"id_str":"2791167984","name":"Ahmad sufian","screen_name":"sufian940123","location":"yaman","url":null,"description":"Assalamualaikum.\nmohon maaf atas sgala trsalah bicara..\n\nwasap +601152063479","protected":false,"verified":false,"followers_count":18,"friends_count":106,"listed_count":0,"favourites_count":5,"statuses_count":37,"created_at":"Fri Sep 05 05:20:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661294657536704513\/Wbs-f22e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661294657536704513\/Wbs-f22e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2791167984\/1409895650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:30:05 +0000 2015","id":663498758873726976,"id_str":"663498758873726976","text":"Shopping problem \ud83d\ude12\n\n*takda duit*\nKalau ada duit, confirm aku beli.\n\n*ada duit*\nNak beli ke taknak ek ? Penting ke ? \ud83d\ude05","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881828744,"id_str":"881828744","name":"Kaki Share","screen_name":"kakisharedotcom","location":"Kuala Lumpur Federal Territory","url":"http:\/\/instagram.com\/kakisharedotcom","description":"Official Page For kakishare.my \u2709DM Sebarang Pengiklanan(berbayar) http:\/\/facebook.com\/kakisharecom","protected":false,"verified":false,"followers_count":76959,"friends_count":29,"listed_count":34,"favourites_count":1061,"statuses_count":8090,"created_at":"Mon Oct 15 08:01:08 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"010100","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660823588115623936\/lvo3PdW5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660823588115623936\/lvo3PdW5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881828744\/1446415073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1012,"favorite_count":298,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kakisharedotcom","name":"Kaki Share","id":881828744,"id_str":"881828744","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636481449984,"id_str":"663727636481449984","text":"\"There is more hunger for love and appreciation in this world than for bread\" -Mother Teresa. Never underestimate the power of a thank you!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2964793023,"id_str":"2964793023","name":"Susan D Marsico","screen_name":"sd_mars","location":"Ohio, USA","url":null,"description":"Passionate about helping others be their best. Director of Training, HCF Management Inc, specializing in leadership development and workplace culture.","protected":false,"verified":false,"followers_count":17,"friends_count":53,"listed_count":2,"favourites_count":13,"statuses_count":30,"created_at":"Tue Jan 06 19:46:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649961306234208257\/-RMS2JGp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649961306234208257\/-RMS2JGp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2964793023\/1443795983","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079974657"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636481376256,"id_str":"663727636481376256","text":"\u30e6\u30fc\u30d5\u30a9\u30fc\u306e\u6b21\u304c\u30e8\u30fc\u30db\u30fc\u3067\u3044\u3044\u306e\u304b\u3088","source":"\u003ca href=\"http:\/\/www.justsystems.com\/jp\/products\/tweetatok\/\" rel=\"nofollow\"\u003eTweet ATOK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":896276983,"id_str":"896276983","name":"\u30ac\u30af\u30b7\u30e7\u30a6","screen_name":"gakushow","location":"\u8c61\u5fb4\u754c","url":"http:\/\/gakushow.hatenablog.jp\/","description":"\u300c\u4e2d\u5cf6\u7dcf\u7814\u300d\u3068\u3044\u3046\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u3067\u53cd\u8cc7\u672c\u4e3b\u7fa9\u7684\u306a\u6279\u8a55\u3068\u3044\u3046\u304b\u611f\u60f3\u6587\u3092\u66f8\u3044\u3066\u3044\u307e\u3057\u305f\u3002\u4eca\u5f8c\u306f\u300c\u4e2d\u5cf6\u7dcf\u7814\u30db\u30fc\u30eb\u30c7\u30a3\u30f3\u30b0\u30b9\u300d\u3068\u3044\u3046\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u3067\u53cd\u8cc7\u672c\u4e3b\u7fa9\u7684\u306a\u6279\u8a55\u3068\u3044\u3046\u304b\u611f\u60f3\u6587\u3092\u66f8\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":226,"friends_count":718,"listed_count":8,"favourites_count":121,"statuses_count":1718,"created_at":"Sun Oct 21 22:25:21 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F27E9F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489056708216369152\/2auMKJMs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489056708216369152\/2auMKJMs_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974657"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489728000,"id_str":"663727636489728000","text":"@r150cm \u307b\u3093\u3068\u3060\u3088\u306d(*^^*)\ud83d\udc97\u96e8\u306e\u4e2d\u5927\u5b50\u796d\u308a\u3082\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\uff01\u98a8\u90aa\u3072\u304b\u306a\u3044\u3088\u3046\u306b\u306d\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703266291658752,"in_reply_to_status_id_str":"663703266291658752","in_reply_to_user_id":1424690335,"in_reply_to_user_id_str":"1424690335","in_reply_to_screen_name":"r150cm","user":{"id":2197356960,"id_str":"2197356960","name":"\u6566\u5e0c\u4e43","screen_name":"aki19940905","location":null,"url":"http:\/\/daigoren.sakura.ne.jp\/","description":"\u5e38\u9678\u570b\u5927\u5b50\u9023\/(\u682a)SMC\/21\u6b73\/\u3057\u3085\u3093","protected":false,"verified":false,"followers_count":288,"friends_count":267,"listed_count":0,"favourites_count":913,"statuses_count":2559,"created_at":"Sat Nov 16 08:31:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654943246620082176\/rpkE35tA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654943246620082176\/rpkE35tA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2197356960\/1444985614","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"r150cm","name":"\u68a8\u7d17\u5b50\u3010\u5e38\u9678\u570b\u5927\u5b50\u9023\u3011","id":1424690335,"id_str":"1424690335","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636506636288,"id_str":"663727636506636288","text":"RT @DocentesProBera: -@elisacarrio: \"Est\u00e1 bien que CFK se quede en el pa\u00eds despu\u00e9s de su mandato, sobretodo cuando tiene tantas denuncias p\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2764437557,"id_str":"2764437557","name":"Walter Chamut","screen_name":"WChamut","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45,"friends_count":97,"listed_count":1,"favourites_count":22,"statuses_count":1949,"created_at":"Mon Sep 08 01:26:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663087915719860224\/C-VY7TMn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663087915719860224\/C-VY7TMn_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:18:17 +0000 2015","id":663707179317334016,"id_str":"663707179317334016","text":"-@elisacarrio: \"Est\u00e1 bien que CFK se quede en el pa\u00eds despu\u00e9s de su mandato, sobretodo cuando tiene tantas denuncias penales\" #CAMBIEMOS","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444528701,"id_str":"444528701","name":"Docentes PRO Beraza.","screen_name":"DocentesProBera","location":"Berazategui","url":"https:\/\/www.facebook.com\/pages\/Docentes-Pro-Berazategui\/632977026749574","description":"Somos el grupo de Docentes PRO de #Berazategui. Caminemos juntos hacia una educaci\u00f3n que nos ense\u00f1e a pensar. #SosBienvenido #JuntosPodemos","protected":false,"verified":false,"followers_count":41652,"friends_count":35891,"listed_count":73,"favourites_count":34688,"statuses_count":10475,"created_at":"Fri Dec 23 10:39:46 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504353803328450561\/NcjvuOcy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504353803328450561\/NcjvuOcy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444528701\/1446920036","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":40,"entities":{"hashtags":[{"text":"CAMBIEMOS","indices":[126,136]}],"urls":[],"user_mentions":[{"screen_name":"elisacarrio","name":"Elisa Lilita Carri\u00f3","id":1578961946,"id_str":"1578961946","indices":[1,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CAMBIEMOS","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"DocentesProBera","name":"Docentes PRO Beraza.","id":444528701,"id_str":"444528701","indices":[3,19]},{"screen_name":"elisacarrio","name":"Elisa Lilita Carri\u00f3","id":1578961946,"id_str":"1578961946","indices":[22,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079974663"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636510806016,"id_str":"663727636510806016","text":"RT @Esquerra_ERC: .@JoanTarda a @oraclecatradio: 'Per poder transformar la realitat que vivim necessitem construir la #Rep\u00fabicaCatalana'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":895096999,"id_str":"895096999","name":"Narc\u00eds Llauger","screen_name":"Llaudal","location":"Tarragona","url":"http:\/\/blocs.mesvilaweb.cat\/Daguer","description":null,"protected":false,"verified":false,"followers_count":72,"friends_count":86,"listed_count":2,"favourites_count":31,"statuses_count":608,"created_at":"Sun Oct 21 10:34:35 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3497649804\/47fa5ddf9313dd64f084d33713a88df7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3497649804\/47fa5ddf9313dd64f084d33713a88df7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/895096999\/1365500534","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:16 +0000 2015","id":663723282299002880,"id_str":"663723282299002880","text":".@JoanTarda a @oraclecatradio: 'Per poder transformar la realitat que vivim necessitem construir la #Rep\u00fabicaCatalana'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84053338,"id_str":"84053338","name":"Esquerra Republicana","screen_name":"Esquerra_ERC","location":"Pa\u00efsos Catalans","url":"http:\/\/www.esquerra.cat","description":"Twitter oficial d'Esquerra Republicana de Catalunya.","protected":false,"verified":true,"followers_count":118025,"friends_count":96133,"listed_count":1496,"favourites_count":2920,"statuses_count":27667,"created_at":"Wed Oct 21 10:55:25 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"F9C046","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620982631765835776\/_8Yh5Mno.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620982631765835776\/_8Yh5Mno.jpg","profile_background_tile":false,"profile_link_color":"E71704","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F9C046","profile_text_color":"1B1C20","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628492430724087808\/ZSSrrM7z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628492430724087808\/ZSSrrM7z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84053338\/1444991116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":4,"entities":{"hashtags":[{"text":"Rep\u00fabicaCatalana","indices":[100,117]}],"urls":[],"user_mentions":[{"screen_name":"JoanTarda","name":"Joan Tard\u00e0 i Coma","id":363696047,"id_str":"363696047","indices":[1,11]},{"screen_name":"oraclecatradio","name":"L'oracle","id":186372726,"id_str":"186372726","indices":[14,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Rep\u00fabicaCatalana","indices":[118,135]}],"urls":[],"user_mentions":[{"screen_name":"Esquerra_ERC","name":"Esquerra Republicana","id":84053338,"id_str":"84053338","indices":[3,16]},{"screen_name":"JoanTarda","name":"Joan Tard\u00e0 i Coma","id":363696047,"id_str":"363696047","indices":[19,29]},{"screen_name":"oraclecatradio","name":"L'oracle","id":186372726,"id_str":"186372726","indices":[32,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079974664"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485533696,"id_str":"663727636485533696","text":"@0125Nio \u3046\u3093\uff01\uff01\uff01\u3042\u3046\uff01\u306f\u306a\u3059\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727572056829952,"in_reply_to_status_id_str":"663727572056829952","in_reply_to_user_id":1386372649,"in_reply_to_user_id_str":"1386372649","in_reply_to_screen_name":"0125Nio","user":{"id":2820070759,"id_str":"2820070759","name":"\u3086\u305d\u677e@\u4e0d\u5b89\u3067\u6b7b\u306b\u305d\u3046","screen_name":"ysys_kapi","location":"\\\u3042\u3044\u307f\u3084 \u306f \u3086\u305d \u3092 \u3059\u304f\u3046\/","url":null,"description":"\u306a\u3063\u3061\u3083\u3093 is \u795e\u2729\u76f8\u5bae\u96f6\u304f\u3093\u304c\u6700\u5927\u7d1a\u306b\u3059\u304d\u2729 \u3086\u305d\u3071\u306a\u3063\u3066\u3085\u3093\u306f\u4ef2\u826f\u3057\u3067\u3059 \u6642\u3005\u304a\u7d75\u63cf\u304d\u3057\u307e\u3059 i:\u306f\u308b\u82ad\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":253,"friends_count":267,"listed_count":23,"favourites_count":2027,"statuses_count":15444,"created_at":"Fri Sep 19 14:11:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661094011235528704\/Za5NZ0rB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661094011235528704\/Za5NZ0rB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2820070759\/1445586253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0125Nio","name":"\u3042\u307e\u3061\u3083(\u3042\u30fc\u308a\u3093)\u306fCOF\u5c0f\u5009\u795e\u6238\u53c2\u6226","id":1386372649,"id_str":"1386372649","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485677056,"id_str":"663727636485677056","text":"\u0627\u0644\u0645\u0624\u0634\u0631 \u0648\u0645\u0633\u062a\u0648\u0627\u0647 \u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0627\u0645\u0629 \u0623\u0633\u062a\u0641\u0647\u0627\u0645 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1619928966,"id_str":"1619928966","name":"\u0645.\u0648\u0644\u064a\u062f \u0645\u062d\u0632\u0631\u064a#\u0627\u0644\u0634\u0644\u0647\u0648\u0628","screen_name":"almahzri","location":"USA .. KSA","url":null,"description":"\u0645\u0647\u0646\u062f\u0633 \u0637\u0622\u0626\u0631\u0627\u062a \u060c \u0647\u0644\u0627\u0644\u064a \u0639\u0627\u0634\u0642 \u0644\u0644\u0634\u0644\u0647\u0648\u0628 #\u0645\u062c\u0646\u0648\u0646_\u0627\u0644\u0634\u0644\u0647\u0648\u0628 \u0623\u062d\u064a\u0627\u0646\u0627\u064b \u0623\u063a\u0631\u062f \u0628\u0640 \u062e\u0648\u0622\u0637\u0631 ~","protected":false,"verified":false,"followers_count":33095,"friends_count":29342,"listed_count":10,"favourites_count":35,"statuses_count":5956,"created_at":"Thu Jul 25 09:41:35 +0000 2013","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629071154959941632\/4VbN7FZ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629071154959941632\/4VbN7FZ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1619928966\/1438817549","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636519231489,"id_str":"663727636519231489","text":"@LindaBlocklund okej? Jag tar det som ett ja\ud83d\udc4d\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727557997645824,"in_reply_to_status_id_str":"663727557997645824","in_reply_to_user_id":2283730652,"in_reply_to_user_id_str":"2283730652","in_reply_to_screen_name":"LindaBlocklund","user":{"id":334623081,"id_str":"334623081","name":"Robbie G-Marc","screen_name":"RobinGeidenmark","location":null,"url":null,"description":"Im Robbie G-Marc and you are not. Leafs Hv71 ManUtd Bl\u00e5vitt. Kan f\u00f6rekomma ironi. Bild p\u00e5 de? Skapare av #tuttfredag","protected":false,"verified":false,"followers_count":1071,"friends_count":500,"listed_count":25,"favourites_count":322,"statuses_count":74386,"created_at":"Wed Jul 13 11:58:42 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660143321340358656\/IQdROhWS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660143321340358656\/IQdROhWS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334623081\/1349549105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LindaBlocklund","name":"Linda Medjahed","id":2283730652,"id_str":"2283730652","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447079974666"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636498259968,"id_str":"663727636498259968","text":"i kissed you in my mind.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170013691,"id_str":"3170013691","name":"\u0661\u0668\u0661\u0665.","screen_name":"samarx18","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0627\u0628\u0639\u062f \u0639\u0646\u064a \u0627\u0644\u0623\u0634\u0643\u0627\u0644 \u0627\u0644\u064a \u0645\u0648 \u0643\u064a\u0648\u062a\u2764\ufe0f.. \u0627\u0644\u062e\u0627\u0635 \u0644\u062c\u062f\u062a\u064a.","protected":false,"verified":false,"followers_count":638,"friends_count":350,"listed_count":0,"favourites_count":2292,"statuses_count":5203,"created_at":"Fri Apr 24 05:43:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659834096135372800\/zx60JwzU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659834096135372800\/zx60JwzU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170013691\/1447072439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079974661"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636494045184,"id_str":"663727636494045184","text":"\u524d\u9aea\uff65\uff65\uff65\u7d50\u69cb\u4f38\u3073\u3066\u304d\u3066\u3044\u308b\u3067\u3057\u3087\u3046\u3002\u826f\u3051\u308c\u3070\u79c1\u304c\u5207\u3063\u3066\u3042\u3052\u307e\u3059\u30e8\u30fc\uff56","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1294436491,"id_str":"1294436491","name":"\u30b6\u30af\u30b9\u5144\u3055\u3093\uff08bot\uff09","screen_name":"xexs_bot","location":"\u30ec\u30a4\u30f3\u30ba\u30ef\u30fc\u30b9\u90b8","url":"http:\/\/www4.hp-ez.com\/hp\/runa-ria-lice-fia\/page8","description":"\u4e2d\u306e\u4eba\u306e\u70ba\u306e\u30b6\u30fc\u30af\u30b7\u30fc\u30ba\uff1d\u30d6\u30ec\u30a4\u30af\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u624b\u52d5\u3002\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u53cd\u5fdc\u8a9e\u53e5\u306f\u5e0c\u671b\u304c\u3042\u308c\u3070DM\u3078\u3069\u3046\u305e\u3002\u6539\u3081\u3066\uff28\uff30\u3092\u4f5c\u6210\u81f4\u3057\u307e\u3057\u305f\u306e\u3067\u3001\u53cd\u5fdc\u8a9e\u53e5\u306f\u305d\u3061\u3089\u3092\u3054\u89a7\u4e0b\u3055\u3044\u3002\u7ba1\u7406\u4eba\u306e\u81ea\u5df1\u6e80\u8db3\u3067\u3059\u306e\u3067\u3001\u304a\u4ed8\u304d\u5408\u3044\u9802\u3051\u308b\u65b9\u3060\u3051\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u6700\u7d42\u66f4\u65b0\u65e5\uff1a2014\/06\/01","protected":false,"verified":false,"followers_count":22,"friends_count":12,"listed_count":0,"favourites_count":0,"statuses_count":17811,"created_at":"Sun Mar 24 09:14:06 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473123611872468992\/qtrkMDe5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473123611872468992\/qtrkMDe5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1294436491\/1367410438","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974660"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636510715904,"id_str":"663727636510715904","text":"RT @GustavoSanchezq: Una pregunta sencilla; En que ceremonia ud ha visto que quien prepara la mesa se sienta en la misma? solo les queda ve\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3106011023,"id_str":"3106011023","name":"andres Y Ram\u00edrez","screen_name":"YsabelRamire","location":null,"url":null,"description":"profesor de artes graficas, ofrecemos los servicios de todo tipo de impresos, dise\u00f1o, impresion offset, digital, pl\u00f3ter, tarjetas de presentaci\u00f3n, brocheres, a","protected":false,"verified":false,"followers_count":167,"friends_count":98,"listed_count":5,"favourites_count":568,"statuses_count":9468,"created_at":"Sun Mar 22 22:30:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659506002274836480\/--VIhUtq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659506002274836480\/--VIhUtq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106011023\/1433980917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:29:05 +0000 2015","id":663498504614993920,"id_str":"663498504614993920","text":"Una pregunta sencilla; En que ceremonia ud ha visto que quien prepara la mesa se sienta en la misma? solo les queda ver los comelones","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159966446,"id_str":"159966446","name":"Gustavo Sanchez","screen_name":"GustavoSanchezq","location":"Santo Domingo, RD","url":null,"description":"Diputado Circ no. 3 Distrito Nacional, Ex Vocero (2) Bloque PLD,Miembro Comite Central, Conviccion Progresista de la Pol\u00edtica.La familia es mi fortaleza","protected":false,"verified":false,"followers_count":3930,"friends_count":2267,"listed_count":19,"favourites_count":64,"statuses_count":5600,"created_at":"Sat Jun 26 20:28:13 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"D1BADE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649876880\/br6fwqdaded2njbg09mb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649876880\/br6fwqdaded2njbg09mb.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585030989136539648\/5gWAxFu8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585030989136539648\/5gWAxFu8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159966446\/1444029855","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GustavoSanchezq","name":"Gustavo Sanchez","id":159966446,"id_str":"159966446","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079974664"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636514926592,"id_str":"663727636514926592","text":"\u602f\u3048\u308b\u53cb\u9054\u3092\u5f8c\u308d\u304b\u3089\u7b11\u3044\u306a\u304c\u3089\u898b\u3066\u305f ( @hgyn_514 \u30ab\u30aa\u30b9\u4e0d\u53ef\u907f https:\/\/t.co\/e9adA6zyO6 )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3072772152,"id_str":"3072772152","name":"\u7af9\u30d4\u30fc","screen_name":"sasukebakadesu","location":null,"url":null,"description":"\u9ad8\u68211\u5e74\u3067\u3059\u3002\u30d0\u30b9\u30b1\u90e8\u306b\u5165\u90e8\u3057\u3066\u3044\u307e\u3059\u3002 \u6771\u65b9\u306e\u4e2d\u3067\u306f\u30d5\u30e9\u30f3\u3001\u3053\u3044\u3057\u3001\u30a2\u30ea\u30b9\u304c\u597d\u304d\u3067\u3059\u4eca\u306fDQMSL\u306b\u306f\u307e\u3063\u3066\u3044\u307e\u3059 \u30de\u30a4\u30af\u30e9\u306e\u30c9\u30c3\u30c8\u7d75\u8981\u671b\u304c\u3042\u308c\u3070\u4f5c\u308a\u307e\u3059\u2606\u6771\u65b9\u4fe1\u6c38\u90f7\u3001\u9e97\u5cf0\u56e3\u3001\u307f\u3087\u3093\u6620\u56e3\u3001\u6c38\u7d05\u56e3\u3001\u970a\u8cfd\u56e3\u306b\u6240\u5c5e\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":143,"friends_count":167,"listed_count":5,"favourites_count":130,"statuses_count":644,"created_at":"Wed Mar 11 09:53:50 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651883332662243328\/iUqABs6L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651883332662243328\/iUqABs6L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3072772152\/1430572182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/e9adA6zyO6","expanded_url":"http:\/\/cas.st\/cd3ae0d","display_url":"cas.st\/cd3ae0d","indices":[38,61]}],"user_mentions":[{"screen_name":"hgyn_514","name":"\u6a59\u592a-chenta-@\u6b21\u306f\u6975\u4e0a\u3052\u3093\u307e\u3057\u3093","id":2399186455,"id_str":"2399186455","indices":[21,30]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974665"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636510740481,"id_str":"663727636510740481","text":"RT @fannoreturn: \u0e01\u0e47\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e21\u0e31\u0e19\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e31\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192211526,"id_str":"192211526","name":"OlAFViEWiSSLEEPy -","screen_name":"beviewer","location":"someone's heart","url":"http:\/\/twitter.com\/beviewer","description":"\u26611999TH | SW112 |\n \u0e0a\u0e2d\u0e1a\u0e42\u0e08\u0e4a\u0e01\u0e40\u0e01\u0e2d\u0e23\u0e4c\u0e41\u0e25\u0e30\u0e21\u0e35\u0e2a\u0e01\u0e34\u0e25\u0e02\u0e35\u0e49\u0e1a\u0e48\u0e19\u0e2a\u0e39\u0e07\u0e21\u0e32\u0e01\u2661\n#\u0e19\u0e39\u0e23\u0e30\u0e15\u0e35\u0e49","protected":false,"verified":false,"followers_count":1753,"friends_count":378,"listed_count":10,"favourites_count":27002,"statuses_count":365633,"created_at":"Sat Sep 18 14:06:39 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675470392\/e7c1278839b17f86cd44ff024a1848fe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675470392\/e7c1278839b17f86cd44ff024a1848fe.jpeg","profile_background_tile":true,"profile_link_color":"CB94E8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"00FAB3","profile_text_color":"0051FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656892997217325056\/1ETX0_U3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656892997217325056\/1ETX0_U3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192211526\/1420099966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:59 +0000 2015","id":663726229007155200,"id_str":"663726229007155200","text":"\u0e01\u0e47\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e21\u0e31\u0e19\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e21\u0e31\u0e19\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535137568,"id_str":"535137568","name":"\u0e41\u0e1f\u0e19","screen_name":"fannoreturn","location":"ManchesterUnited","url":"http:\/\/ask.fm\/fanreacog_earth","description":"\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e19\u0e14\u0e35\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01 \u0e15\u0e34\u0e14\u0e1a\u0e2d\u0e25 \u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e25\u0e49\u0e32 \u0e41\u0e21\u0e19\u0e46\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e35\u0e46\u0e04\u0e19\u0e19\u0e36\u0e07 \u0e25\u0e38\u0e22\u0e14\u0e34\u0e27\u0e30 \u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e1c\u0e31\u0e1a \u0e40\u0e21\u0e29\u0e32 2561 #\u0e27\u0e34\u0e16\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e19\u0e08\u0e23\u0e34\u0e07","protected":false,"verified":false,"followers_count":80981,"friends_count":411,"listed_count":16,"favourites_count":18536,"statuses_count":81447,"created_at":"Sat Mar 24 08:16:44 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_tile":true,"profile_link_color":"080707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535137568\/1442132184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":312,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fannoreturn","name":"\u0e41\u0e1f\u0e19","id":535137568,"id_str":"535137568","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079974664"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636519264256,"id_str":"663727636519264256","text":"\u0394\u03b9\u03bf\u03c7\u03b5\u03c4\u03b5\u03cd\u03bf\u03bd\u03c4\u03b1\u03b9 \u0395\u03c5\u03c1\u03ce\u03c0\u03b7;\u0399\u039a\u0391 \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd\u03c4\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b3\u03c1\u03ac\u03c6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c4\u03b1 \u03c3\u03c5\u03c3\u03c4\u03b1\u03c4\u03b9\u03ba\u03ac \u03c4\u03bf\u03c5\u03c2 \u03cc\u03bb\u03b1 \u03bc \u03ba\u03af\u03bd\u03b4\u03c5\u03bd\u03bf \u03c3\u03c4\u03b7\u03bd \u03c5\u03b3\u03b5\u03b9\u03b1 \u03c3\u03b1\u03c2! https:\/\/t.co\/7jpuA1xw31","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91528467,"id_str":"91528467","name":"skyfall","screen_name":"pankokkali","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1103,"friends_count":1086,"listed_count":11,"favourites_count":12642,"statuses_count":64420,"created_at":"Sat Nov 21 07:56:12 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472424722907820033\/_3uE-e3q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472424722907820033\/_3uE-e3q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91528467\/1435817862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726502802948097,"quoted_status_id_str":"663726502802948097","quoted_status":{"created_at":"Mon Nov 09 14:35:04 +0000 2015","id":663726502802948097,"id_str":"663726502802948097","text":"\u03a0\u03a1\u039f\u03a3\u039f\u03a7\u0397: \u0391\u03bd\u03ac\u03ba\u03bb\u03b7\u03c3\u03b7 \u03ba\u03c1\u03ac\u03ba\u03b5\u03c1\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd\u00a0\u0395\u03a6\u0395\u03a4 https:\/\/t.co\/pw547LKJk6 https:\/\/t.co\/4EWESZyxNd","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2353831700,"id_str":"2353831700","name":"HELLASFORCE.COM","screen_name":"hellasforcecom","location":"\u039f\u03bc\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1","url":"http:\/\/www.hellasforce.com","description":"\u03a4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf \u03b5\u03b9\u03b4\u03b7\u03c3\u03b5\u03bf\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03c0\u03c1\u03b1\u03ba\u03c4\u03bf\u03c1\u03b5\u03af\u03bf \u03c4\u03b7\u03c2 \u039f\u03bc\u03bf\u03b3\u03ad\u03bd\u03b5\u03b9\u03b1\u03c2 #Greece","protected":false,"verified":false,"followers_count":4593,"friends_count":4092,"listed_count":22,"favourites_count":255,"statuses_count":21424,"created_at":"Thu Feb 20 22:00:21 +0000 2014","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611279019636604928\/4VCBUP8H.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611279019636604928\/4VCBUP8H.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611278515049263104\/rv7Xc1HW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611278515049263104\/rv7Xc1HW_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pw547LKJk6","expanded_url":"http:\/\/hellasforce.com\/2015\/11\/09\/%cf%80%cf%81%ce%bf%cf%83%ce%bf%cf%87%ce%b7-%ce%b1%ce%bd%ce%ac%ce%ba%ce%bb%ce%b7%cf%83%ce%b7-%ce%ba%cf%81%ce%ac%ce%ba%ce%b5%cf%81%cf%82-%ce%b1%cf%80%cf%8c-%cf%84%ce%bf%ce%bd-%ce%b5%cf%86%ce%b5%cf%84\/","display_url":"hellasforce.com\/2015\/11\/09\/%cf\u2026","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663726501418827777,"id_str":"663726501418827777","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvIkVAAEIg4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvIkVAAEIg4n.jpg","url":"https:\/\/t.co\/4EWESZyxNd","display_url":"pic.twitter.com\/4EWESZyxNd","expanded_url":"http:\/\/twitter.com\/hellasforcecom\/status\/663726502802948097\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":198,"resize":"fit"},"medium":{"w":600,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726501418827777,"id_str":"663726501418827777","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvIkVAAEIg4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvIkVAAEIg4n.jpg","url":"https:\/\/t.co\/4EWESZyxNd","display_url":"pic.twitter.com\/4EWESZyxNd","expanded_url":"http:\/\/twitter.com\/hellasforcecom\/status\/663726502802948097\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":198,"resize":"fit"},"medium":{"w":600,"h":350,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"el"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7jpuA1xw31","expanded_url":"https:\/\/twitter.com\/hellasforcecom\/status\/663726502802948097","display_url":"twitter.com\/hellasforcecom\u2026","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"el","timestamp_ms":"1447079974666"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485505025,"id_str":"663727636485505025","text":"\u30c9\u30e9\u30af\u30a8\uff16\u306e\u82b1\u5ac1\u9078\u3073\u306e\u3068\u304d\u3001\u79c1\u306a\u3093\u304b\u3058\u3083\u306a\u304f\u30d5\u30ed\u30fc\u30e9\u3055\u3093\u3092\u9078\u3093\u3067\u3042\u3052\u3066\u2026\uff1f\u3068\u5e7c\u306a\u3058\u307f\u3067\u5065\u6c17\u306a\u30d3\u30a2\u30f3\u30ab\u3066\u3064\u3084\u3055\u3093\u3001\u30d3\u30a2\u30f3\u30ab\u3055\u3093\u3092\u9078\u3093\u3067\u3042\u3052\u3066\u304f\u3060\u3055\u3044\u3068\u30d3\u30a2\u30f3\u30ab\u306e\u6c17\u6301\u3061\u3092\u5bdf\u3059\u308b\u6dd1\u5973\u30d5\u30ed\u30fc\u30e9\u3066\u3064\u3084\u3055\u3093\u3001\u79c1\u3068\u7d50\u5a5a\u3057\u3066\u3042\u3052\u308b\u308f\u3088\uff1f\u3068\u5b8c\u5168\u306a\u6a2a\u5165\u308a\u305d\u306e\u4e0a\u9ad8\u98db\u8eca\u306e\u30c7\u30dc\u30e9\u3066\u3064\u3084\u3055\u3093","source":"\u003ca href=\"http:\/\/yabm.in\/\" rel=\"nofollow\"\u003eyabmin\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308876760,"id_str":"3308876760","name":"\u3046\u307e\u3057\u304b","screen_name":"uma___shika","location":"\u9375\u306f\u304a\u8a0a\u306d\u304f\u3060\u3055\u3044","url":null,"description":"\u30e9\u30d6\u3068\u30c9\u30ea\u30fc\u30e0\u3068\u305d\u308c\u304b\u3089\u30cf\u30d4\u30cd\u30b9\u7686\u9055\u3063\u3066\u7686\u3044\u3044\u7cbe\u795e\u306e\u61b6\u6e2c\u304a\u3058\u3055\u3093\/\u3069\u65b0\u898f\u3067\u3059\uff01\u3069\u65b0\u898f\u306a\u3093\u3067\u3059\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":46,"friends_count":42,"listed_count":1,"favourites_count":923,"statuses_count":1452,"created_at":"Fri Aug 07 16:41:05 +0000 2015","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF0080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663295438133465088\/HaFzP75D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663295438133465088\/HaFzP75D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308876760\/1446977366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636493959168,"id_str":"663727636493959168","text":"@Axem4zdD \n\u3048\uff01\uff1f\u305d\u308c\u306f\u3084\u3070\u3044\uff01\uff01\uff01\n\u9032\u5b66\u6821\u3060\u304b\u3089\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698480871837696,"in_reply_to_status_id_str":"663698480871837696","in_reply_to_user_id":3957588973,"in_reply_to_user_id_str":"3957588973","in_reply_to_screen_name":"Axem4zdD","user":{"id":2907999576,"id_str":"2907999576","name":"\u30c1\u30e7\u30b3","screen_name":"conann504","location":null,"url":null,"description":"\u30b3\u30ca\u30f3\u5927\u597d\u304d\uff01\uff01\u9ad8\u6821\u4e00\u5e74\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u306a\u3044\u3002\u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067\n@conanm0612\u2190\u79c1\u3067\u3059\u270b\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000","protected":false,"verified":false,"followers_count":568,"friends_count":391,"listed_count":18,"favourites_count":12462,"statuses_count":10420,"created_at":"Sun Nov 23 11:03:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661899150695333888\/nJmEz8tu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661899150695333888\/nJmEz8tu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907999576\/1424779774","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Axem4zdD","name":"\uff98\uff65\uff81\uff6c\uff9d\uff98\uff76@\u6dfb\u5f69\u306f\u30b4\u30ea\u30e9\u518d\u3073","id":3957588973,"id_str":"3957588973","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974660"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489871361,"id_str":"663727636489871361","text":"\u041a\u043e\u0442\u0435\u043b\u043e\u043a \u0440\u0430\u0434\u0443\u0435\u0442 \u0442\u0443\u0437\u0435\u043c\u0446\u0435\u0432! \u0422\u0435\u043f\u0435\u0440\u044c \u043c\u043e\u0439 \u043e\u0441\u0442\u0440\u043e\u0432 \u0441\u0442\u0430\u043b \u0435\u0449\u0435 \u043a\u0440\u0443\u0447\u0435! https:\/\/t.co\/JrMOVGgjbF #iphone, #iphonegames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":927801092,"id_str":"927801092","name":"Sergey Tokmakov","screen_name":"Sergeo42","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4340,"created_at":"Mon Nov 05 15:15:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iphone","indices":[84,91]},{"text":"iphonegames","indices":[93,105]},{"text":"gameinsight","indices":[107,119]}],"urls":[{"url":"https:\/\/t.co\/JrMOVGgjbF","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636498132992,"id_str":"663727636498132992","text":"@bagchi12 @Friendly_bini @debjanipk @kuch_pani @mamathan @reddy_nakshatra Yeah.Its irritating","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727414820761601,"in_reply_to_status_id_str":"663727414820761601","in_reply_to_user_id":2974108132,"in_reply_to_user_id_str":"2974108132","in_reply_to_screen_name":"bagchi12","user":{"id":3251627012,"id_str":"3251627012","name":"Sanz Crazy","screen_name":"crazy_sanz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":179,"friends_count":43,"listed_count":1,"favourites_count":3,"statuses_count":13285,"created_at":"Sun Jun 21 13:02:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618433012250742785\/SZq61vnW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618433012250742785\/SZq61vnW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251627012\/1436280917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"173c2bb9d42baaa5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/173c2bb9d42baaa5.json","place_type":"country","name":"Sri Lanka","full_name":"Sri Lanka","country_code":"LK","country":"Sri Lanka","bounding_box":{"type":"Polygon","coordinates":[[[79.650526,5.921383],[79.650526,9.835938],[81.878782,9.835938],[81.878782,5.921383]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bagchi12","name":"Aditi Bagchi","id":2974108132,"id_str":"2974108132","indices":[0,9]},{"screen_name":"Friendly_bini","name":"Bini Majumdar","id":1175962135,"id_str":"1175962135","indices":[10,24]},{"screen_name":"debjanipk","name":"debjani","id":1699870662,"id_str":"1699870662","indices":[25,35]},{"screen_name":"kuch_pani","name":"Kul.K boiling water","id":3173016544,"id_str":"3173016544","indices":[36,46]},{"screen_name":"mamathan","name":"Mamatha Nagathota","id":56625161,"id_str":"56625161","indices":[47,56]},{"screen_name":"reddy_nakshatra","name":"NakshiLuvsMaNan","id":3603772337,"id_str":"3603772337","indices":[57,73]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079974661"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636519239680,"id_str":"663727636519239680","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/JQ0zPIFAlE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33761,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727313792692224,"quoted_status_id_str":"663727313792692224","quoted_status":{"created_at":"Mon Nov 09 14:38:17 +0000 2015","id":663727313792692224,"id_str":"663727313792692224","text":"lqgroup12 #PushAwardsLizQuens https:\/\/t.co\/SXY9iOUGN3","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370550053,"id_str":"3370550053","name":"Mary Apple Pe\u00f1as","screen_name":"appleheartme22","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":26,"listed_count":1,"favourites_count":7,"statuses_count":29457,"created_at":"Fri Aug 28 12:35:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726870026969088,"quoted_status_id_str":"663726870026969088","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[10,29]}],"urls":[{"url":"https:\/\/t.co\/SXY9iOUGN3","expanded_url":"http:\/\/twitter.com\/lqgroup12\/status\/663726870026969088","display_url":"twitter.com\/lqgroup12\/stat\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"vi"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/JQ0zPIFAlE","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727313792692224","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079974666"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489744384,"id_str":"663727636489744384","text":"@Garnet8816 \u304a\u3046\u3044\u3048\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663683645501104128,"in_reply_to_status_id_str":"663683645501104128","in_reply_to_user_id":1644128142,"in_reply_to_user_id_str":"1644128142","in_reply_to_screen_name":"Garnet8816","user":{"id":3506233485,"id_str":"3506233485","name":"KobatonRain@\u30a2\u30eb\u30c6\u30de\u9bd6","screen_name":"ryouta101072","location":null,"url":null,"description":"\u30b3\u30d0\u30c8\u30f3\u30ec\u30a4\u30f3\u3067\u3054\u3056\u308b\uff01\n\u597d\u304d\u306a\u7a2e\u65cf\u306f\u30fb\u30fb\u30fb\u30fb\n\u79d8\u5bc6\u3067\u3054\u3056\u308b\u3088\uff01(\u30ce\u00b4\u2200\uff40*)","protected":false,"verified":false,"followers_count":41,"friends_count":74,"listed_count":0,"favourites_count":4,"statuses_count":77,"created_at":"Mon Aug 31 22:41:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656234145291460609\/YulcL9BB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656234145291460609\/YulcL9BB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3506233485\/1446635976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Garnet8816","name":"Garnet\uff65D(\u30a2\u30eb\u30c6\u30de\u9bd6","id":1644128142,"id_str":"1644128142","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489887744,"id_str":"663727636489887744","text":"@laszloloszla eso es verdad ...","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726353716523008,"in_reply_to_status_id_str":"663726353716523008","in_reply_to_user_id":43820226,"in_reply_to_user_id_str":"43820226","in_reply_to_screen_name":"laszloloszla","user":{"id":217671393,"id_str":"217671393","name":"Roberto Tejeda","screen_name":"roberto_tesa","location":"Peru","url":null,"description":"Una persona luchadora que trata de salir adelante ante todo...","protected":false,"verified":false,"followers_count":52,"friends_count":73,"listed_count":0,"favourites_count":9,"statuses_count":29,"created_at":"Sat Nov 20 05:05:14 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661717421389127681\/kYanqsjt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661717421389127681\/kYanqsjt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217671393\/1378181171","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"laszloloszla","name":"Laszlo Kovacs","id":43820226,"id_str":"43820226","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489703425,"id_str":"663727636489703425","text":"\u539f\u56e0\u304c\u75b2\u52b4\u306a\u306e\u304b\u30e1\u30f3\u30bf\u30eb\u7684\u306a\u3042\u308c\u304b\u3089\u304f\u308b\u3082\u306e\u306a\u306e\u304b\u3069\u3063\u3061\u304b\u306b\u3088\u3063\u3066\u306f\u4f53\u8abf\u4e0d\u826f\u304c\u9577\u5f15\u304f\u304b\u3059\u3050\u6cbb\u308b\u304b\u304c\u6c7a\u307e\u308b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2149135345,"id_str":"2149135345","name":"\u304a\u306e\u306f\u308b","screen_name":"onoxoxo_o","location":"\u6c34\u6238\u2192\u3064\u304f\u3070","url":null,"description":"\u898b\u5ddd\u4e2d\u2192\u8328\u57ce\u9ad8\u2192\u7b51\u6ce2\u5927 klis15\/utsb39th Hr\/\u5b66\u5b9f\u59d4 \u672c\u4f01 \/@bottle3gourd26\u306e\u5927\u5b66\u7528\u306e\u57a2\u3067\u3059\u3002\u5927\u5b66\u540c\u3058\u4eba\u306f\u3053\u3063\u3061\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044(^o^)","protected":false,"verified":false,"followers_count":322,"friends_count":241,"listed_count":8,"favourites_count":73,"statuses_count":2937,"created_at":"Tue Oct 22 14:24:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654668999163162625\/kbGE0JwN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654668999163162625\/kbGE0JwN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2149135345\/1438539789","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636510740480,"id_str":"663727636510740480","text":"RT @NYTMinusContext: sad, sad, sad, sad","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961294399,"id_str":"961294399","name":"favor\u2122","screen_name":"prcussion","location":"insta: fav1999","url":null,"description":"u cant Blackmail this Black Male","protected":false,"verified":false,"followers_count":173,"friends_count":96,"listed_count":0,"favourites_count":3313,"statuses_count":3080,"created_at":"Tue Nov 20 21:59:19 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504408089752133632\/yiDs1I94.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504408089752133632\/yiDs1I94.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663395151201632256\/gTSDqtiv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663395151201632256\/gTSDqtiv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961294399\/1446995211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:01 +0000 2015","id":663722464325853184,"id_str":"663722464325853184","text":"sad, sad, sad, sad","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189503302,"id_str":"2189503302","name":"NYT Minus Context","screen_name":"NYTMinusContext","location":null,"url":"https:\/\/www.etsy.com\/shop\/MycraftHomes","description":"All Tweets Verbatim From New York Times content. Not Affiliated with the New York Times. Follow @NYTPlusContext for context. T-shirts: https:\/\/t.co\/euZ4g2bLYr","protected":false,"verified":false,"followers_count":75464,"friends_count":875,"listed_count":798,"favourites_count":7850,"statuses_count":4524,"created_at":"Tue Nov 12 03:15:23 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000737186790\/cf2fdc5e3dc3d9bd0e6233d271d4ca3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000737186790\/cf2fdc5e3dc3d9bd0e6233d271d4ca3b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189503302\/1384900032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":253,"favorite_count":245,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NYTMinusContext","name":"NYT Minus Context","id":2189503302,"id_str":"2189503302","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079974664"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636506681344,"id_str":"663727636506681344","text":"RT @d9999_1: \u062f\u0627\u0626\u0645\u0627\u064b \u0641\u064a \u0627\u0644\u0635\u064a\u0641 \u0646\u062d\u0628 \u0627\u0644\u0645\u0637\u0631 \u0623\u0643\u062b\u0631 '\n\u0648 \u0641\u064a \u0627\u0644\u0634\u062a\u0627\u0621 \u0646\u062d\u0628 \u0627\u0644\u0634\u0645\u0633 \u0623\u0643\u062b\u0631 '\n\n\u0647\u0643\u0630\u0627 \u0647\u0648 \u0627\u0644\u0625\u0646\u0633\u0627\u0646 \u064a\u0639\u0634\u0642 \u0645\u0646 \u064a\u063a\u064a\u0628 '","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2149598716,"id_str":"2149598716","name":"\u0645\u0640\u0640\u0627\u0637\u0640\u0631 \/ \u0627\u0644\u062e\u0627\u0635 \u0645\u0639\u0644\u0642","screen_name":"materrt_4","location":"0556624458","url":null,"description":"\u0644\u062f\u0639\u0645 \u0648\u062a\u0646\u0634\u064a\u0637 \u0648\u0646\u0634\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a\u060c\u2728\u062a\u0648\u064a\u062a\u0631 \ue32e\u062d\u0633\u0627\u0628\u0627\u062a \u0634\u062e\u0635\u064a\u0647 \ue32e\u0634\u0631\u0643\u0627\u062a \ue32e\u0645\u062a\u0627\u062c\u0631 \ue32e\u0628\u0636\u0627\u0626\u0639 \u2728\u0645\u0646\u062a\u062c\u0627\u062a","protected":false,"verified":false,"followers_count":62706,"friends_count":60251,"listed_count":38,"favourites_count":8,"statuses_count":169911,"created_at":"Wed Oct 23 14:33:23 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647458497810989056\/zsqiOVGf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647458497810989056\/zsqiOVGf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2149598716\/1414231863","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:48:50 +0000 2015","id":663639371246116864,"id_str":"663639371246116864","text":"\u062f\u0627\u0626\u0645\u0627\u064b \u0641\u064a \u0627\u0644\u0635\u064a\u0641 \u0646\u062d\u0628 \u0627\u0644\u0645\u0637\u0631 \u0623\u0643\u062b\u0631 '\n\u0648 \u0641\u064a \u0627\u0644\u0634\u062a\u0627\u0621 \u0646\u062d\u0628 \u0627\u0644\u0634\u0645\u0633 \u0623\u0643\u062b\u0631 '\n\n\u0647\u0643\u0630\u0627 \u0647\u0648 \u0627\u0644\u0625\u0646\u0633\u0627\u0646 \u064a\u0639\u0634\u0642 \u0645\u0646 \u064a\u063a\u064a\u0628 '","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":919812049,"id_str":"919812049","name":"\u062e\u0648\u0627\u0637\u0631 \u0631\u062c\u0644 \u26a1\ufe0f","screen_name":"d9999_1","location":null,"url":null,"description":"[ \u0644\u0627 \u0623\u0646\u0635\u062d \u0623\u062d\u062f\u0627\u064b \u0628\u0645\u062a\u0627\u0628\u0639\u062a\u064a ] ' [ \u062a\u062c\u062f\u0648\u0646\u064a \u0641\u064a \u0645\u0641\u0636\u0644\u062a\u064a ]","protected":false,"verified":false,"followers_count":2767,"friends_count":204,"listed_count":0,"favourites_count":1708,"statuses_count":6520,"created_at":"Thu Nov 01 20:35:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583753288509599744\/ROHt3GVu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583753288509599744\/ROHt3GVu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919812049\/1428158908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"d9999_1","name":"\u062e\u0648\u0627\u0637\u0631 \u0631\u062c\u0644 \u26a1\ufe0f","id":919812049,"id_str":"919812049","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079974663"} +{"delete":{"status":{"id":663723668669751297,"id_str":"663723668669751297","user_id":2855340474,"user_id_str":"2855340474"},"timestamp_ms":"1447079974796"}} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485656580,"id_str":"663727636485656580","text":"21 novembre Juventus-@acmilan.\n22 novembre EA7-@REYER1872. malino...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1654209342,"id_str":"1654209342","name":"Alberto Battarin","screen_name":"albertobattarin","location":"Venezia - Milano","url":null,"description":null,"protected":false,"verified":false,"followers_count":120,"friends_count":55,"listed_count":0,"favourites_count":2332,"statuses_count":1773,"created_at":"Thu Aug 08 01:03:09 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660653613275041792\/8las0TRF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660653613275041792\/8las0TRF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1654209342\/1442480236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"acmilan","name":"AC Milan","id":186386857,"id_str":"186386857","indices":[21,29]},{"screen_name":"REYER1872","name":"Reyer Venezia","id":222514664,"id_str":"222514664","indices":[47,57]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489768960,"id_str":"663727636489768960","text":"@nobutaro_nico \u53d7\u3051\u7b54\u3048\u306e\u5973\u5b50\u529b\u9ad8\u3044\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726389233774592,"in_reply_to_status_id_str":"663726389233774592","in_reply_to_user_id":621089670,"in_reply_to_user_id_str":"621089670","in_reply_to_screen_name":"nobutaro_nico","user":{"id":570731625,"id_str":"570731625","name":"\u304b\u306a\u3074\u30fc","screen_name":"kanapy0159","location":"\u5927\u962a\u3068\u4eac\u90fd","url":"http:\/\/www.nicovideo.jp\/mylist\/34525413","description":"\u30d4\u30a2\u30ce\u5f3e\u3044\u3066\u308b\u30e1\u30ac\u30cd\u3002\u5199\u771f\u597d\u304d\uff08 @knp_pht \uff09\u81ea\u5206\u3067\u7de8\u66f2\u3057\u305f\u3084\u3064\u306e\u8b5c\u9762\u30b5\u30a4\u30c8\u2192http:\/\/kanapy-score.jimdo.com\u3000\u3010Youtube\u3011http:\/\/youtube.com\/channel\/UCdEGz\u2026","protected":false,"verified":false,"followers_count":428,"friends_count":134,"listed_count":11,"favourites_count":2437,"statuses_count":37753,"created_at":"Fri May 04 08:30:36 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162620688\/8IZflwbe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162620688\/8IZflwbe.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657652078462898176\/OKnYyGPN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657652078462898176\/OKnYyGPN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/570731625\/1443891017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nobutaro_nico","name":"\u306e\u3076\u305f\u308d","id":621089670,"id_str":"621089670","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489871360,"id_str":"663727636489871360","text":"RT @_yato: \u304a\u3001\u304a\u3049\u2026 https:\/\/t.co\/PjUtYfgHJA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786713585,"id_str":"2786713585","name":"\u30df\u30c3\u30af\u30b9\u30ad\u30e3\u30ed\u30c3\u30c8","screen_name":"gamosu1092","location":null,"url":null,"description":"\u30af\u30c8\u30a5\u30eb\u30d5\u3000\uff33\uff23\uff30\u3000\u97f3\u697d\u3000\u7d75\u3000\u3000\u3000\u3000\u30b2\u30fc\u30e0\u3000\u3000\u52d5\u753b\u3000\u3000\u5c0f\u8aac\u3000\u6f2b\u753b\u3000\u3000\u3000\u3000\u751f\u304d\u7269\u3000\u30df\u30ea\u30bf\u30ea\u30fc\u3000\u30ad\u30c1\u30ac\u30a4\u3000\u8a0e\u8ad6\u3000\u7a7a\u8179\u3000\u6020\u60f0\u3000\uff44\uff4b\u3000\u30dd\u30b1\u30e2\u30f3\u3000\u5922\u53a8","protected":false,"verified":false,"followers_count":180,"friends_count":218,"listed_count":1,"favourites_count":9362,"statuses_count":10069,"created_at":"Tue Sep 02 21:01:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575716358068928512\/umE6AoMm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575716358068928512\/umE6AoMm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786713585\/1437429291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:44 +0000 2015","id":663718368331956224,"id_str":"663718368331956224","text":"\u304a\u3001\u304a\u3049\u2026 https:\/\/t.co\/PjUtYfgHJA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2186531988,"id_str":"2186531988","name":"\u591c\u6597\u304f\u3093","screen_name":"_yato","location":"\u8ca7\u4e73\u3042\u308b\u3068\u3053\u308d\u306b\u50d5\u3042\u308a","url":"http:\/\/twpf.jp\/_yato","description":"\u8ca7\u4e73\u3063\u3066\u3055\u3044\u3044\u3088\u306d\u3001\u3042\u308c\u3060\u3088\u306a\u3093\u3066\u3044\u3046\u304b\u305d\u306e\u3042\u306e\u63a7\u3048\u3081\u306a\u611f\u3058\u3068\u304b\u614e\u307e\u3057\u3044\u611f\u3058\u304c\u305f\u307e\u3089\u306a\u3044\u3088\u306d\u3001\u7279\u306b\u305d\u306e\u5b50\u306e\u8ca7\u4e73\u3092\u6c17\u306b\u3057\u3066\u3044\u308b\u6642\u306e\u611f\u3058\u3068\u304b\u7279\u306b\u582a\u3089\u306a\u3044\u3067\u3059\u306d\u2026\u2026\u3046\u3093\u3046\u3093\u3002\u51e6\u5973\u53a8\u306e\u57a2\u306f\u3053\u3061\u3089\u3010\u3072\u3093\u306b\u3085\u3046\u6559:\u6559\u7956\u69d8\u3011GTA5.bo2\u30cf\u30c3\u30af\u4ee3\u884c\u3057\u3066\u307e\u3059\u3001\u8a73\u3057\u304f\u306fDM\u3078\u3002","protected":false,"verified":false,"followers_count":6396,"friends_count":5038,"listed_count":125,"favourites_count":43850,"statuses_count":17739,"created_at":"Sun Nov 10 15:01:06 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660540900980842496\/139lXSgQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660540900980842496\/139lXSgQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186531988\/1443010323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":81,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718356587970560,"id_str":"663718356587970560","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718356587970560,"id_str":"663718356587970560","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663718356629876736,"id_str":"663718356629876736","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVC3UcAABcCE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVC3UcAABcCE.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":214,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":477,"h":301,"resize":"fit"},"medium":{"w":477,"h":301,"resize":"fit"}}},{"id":663718356642500610,"id_str":"663718356642500610","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVC6VEAIM9RJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVC6VEAIM9RJ.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_yato","name":"\u591c\u6597\u304f\u3093","id":2186531988,"id_str":"2186531988","indices":[3,9]}],"symbols":[],"media":[{"id":663718356587970560,"id_str":"663718356587970560","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663718368331956224,"source_status_id_str":"663718368331956224","source_user_id":2186531988,"source_user_id_str":"2186531988"}]},"extended_entities":{"media":[{"id":663718356587970560,"id_str":"663718356587970560","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVCtVAAAcFFT.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663718368331956224,"source_status_id_str":"663718368331956224","source_user_id":2186531988,"source_user_id_str":"2186531988"},{"id":663718356629876736,"id_str":"663718356629876736","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVC3UcAABcCE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVC3UcAABcCE.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":214,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":477,"h":301,"resize":"fit"},"medium":{"w":477,"h":301,"resize":"fit"}},"source_status_id":663718368331956224,"source_status_id_str":"663718368331956224","source_user_id":2186531988,"source_user_id_str":"2186531988"},{"id":663718356642500610,"id_str":"663718356642500610","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAVC6VEAIM9RJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAVC6VEAIM9RJ.jpg","url":"https:\/\/t.co\/PjUtYfgHJA","display_url":"pic.twitter.com\/PjUtYfgHJA","expanded_url":"http:\/\/twitter.com\/_yato\/status\/663718368331956224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663718368331956224,"source_status_id_str":"663718368331956224","source_user_id":2186531988,"source_user_id_str":"2186531988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636502327296,"id_str":"663727636502327296","text":"\u753a\u4f1a\u8b70\u306e\u3068\u3054\u3063\u3061\u3083\u306b\u306a\u3063\u3061\u3083\u3046\u304b\u306a\u3068\u304b\u3044\u3046\u4e0d\u5b89:;(\u2229\u02d9\ufe36\u02d9\u2229);:","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368300946,"id_str":"2368300946","name":"\u3057\u3089\u305f\u304d\u306f\u753a\u4f1a\u8b70\u3067\u77e2\u6fa4","screen_name":"39_srtk","location":"next \u5927\u962a\u753a\u4f1a\u8b70","url":null,"description":"\/\/ \u3057\u3089\u305f\u304d\u2020\u3086\u306b\u3087 \u3067\u3059\uff01 \u5927\u962a \u3092 \u76db\u308a\u4e0a\u3052 \u968a\uff01 \/\/ \u5fa1\u4f3d\u306d\u3053\u3080\u3055\u3093\u795e\u5948\u3055\u3093\u304b\u3056\u308a\u3055\u3093most respect \/\/ \u2661QOOLAND\u2661 \/\/#\u30c1\u30e9\u898b\u305b\u306e\u30ad\u30a4\u30ed\u30a4\u30c8\u30ea \/\/","protected":false,"verified":false,"followers_count":805,"friends_count":321,"listed_count":27,"favourites_count":17646,"statuses_count":25899,"created_at":"Sun Mar 02 04:50:07 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717995286368256\/o8KKfeai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717995286368256\/o8KKfeai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368300946\/1446998678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974662"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489744385,"id_str":"663727636489744385","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u516b\u5c90\u30ce\u68ee\u306e\u8d04\u6bd4\u5973\uff08\u8d85\u7d76\uff09\u300d\nhttps:\/\/t.co\/QwDXZ68qmB\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179970633,"id_str":"4179970633","name":"\u30b2\u30fc\u30e0\u57a2","screen_name":"game_pzmosr","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 09 14:07:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QwDXZ68qmB","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=NjQ1Njk1NDY2","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636502462464,"id_str":"663727636502462464","text":"https:\/\/t.co\/h0FFpbEamD #BenjieFedeLettera x46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1694856445,"id_str":"1694856445","name":"hopefull.","screen_name":"cris19believe","location":"Zayn's arms ","url":null,"description":"don't give up.''superate i vostri limiti''.rimarrai sempre una parte di me \/29.06.14\/ Till the end | #Zquad | 31.07.15 thank you Justin","protected":false,"verified":false,"followers_count":1031,"friends_count":1505,"listed_count":7,"favourites_count":9357,"statuses_count":26892,"created_at":"Fri Aug 23 21:22:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550073271924699136\/DgKTdyaG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550073271924699136\/DgKTdyaG.jpeg","profile_background_tile":true,"profile_link_color":"B57CE6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566757876056989697\/EBIepCR0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566757876056989697\/EBIepCR0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1694856445\/1446677771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[24,42]}],"urls":[{"url":"https:\/\/t.co\/h0FFpbEamD","expanded_url":"https:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079974662"} +{"delete":{"status":{"id":348981884384051200,"id_str":"348981884384051200","user_id":1345531452,"user_id_str":"1345531452"},"timestamp_ms":"1447079974781"}} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636519129088,"id_str":"663727636519129088","text":"@peterpan874 \n\u3044\u3064\u4f1a\u3048\u3093\u306e\u3092\u30fc\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662213081636823040,"in_reply_to_status_id_str":"662213081636823040","in_reply_to_user_id":2453937302,"in_reply_to_user_id_str":"2453937302","in_reply_to_screen_name":"peterpan874","user":{"id":4081816094,"id_str":"4081816094","name":"\u306a\u308b\u306a\u308b","screen_name":"pppcyn_","location":"\u306b\u3087\u308b\u306b\u3087\u308b (\u2688\u25bd\u2688)","url":null,"description":"\uff19\uff14\u3089\u3044\u3093 \/ \u3072\u305f\u3059\u3089\u3061\u3083\u306b\u3087\u308b\u63a8\u3057","protected":false,"verified":false,"followers_count":97,"friends_count":132,"listed_count":10,"favourites_count":33,"statuses_count":233,"created_at":"Sat Oct 31 17:14:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660746920399253504\/_DXbRbfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660746920399253504\/_DXbRbfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4081816094\/1446366723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"peterpan874","name":"\u3053\u307c\u305f\u3093","id":2453937302,"id_str":"2453937302","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974666"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636485656586,"id_str":"663727636485656586","text":"Gamers Gaming For Game Bargains https:\/\/t.co\/XYKZFv6RJG","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227080035,"id_str":"3227080035","name":"Wolfe Lorente","screen_name":"pocesekakir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":20050,"created_at":"Fri May 01 22:34:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613302759748562944\/AqdBP43l_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613302759748562944\/AqdBP43l_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XYKZFv6RJG","expanded_url":"http:\/\/ift.tt\/1kkCmgk","display_url":"ift.tt\/1kkCmgk","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079974658"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636510810112,"id_str":"663727636510810112","text":"RT @FrivFunBoutique: Amber and Gold WireCrochet #Earrings https:\/\/t.co\/FfZX9yDoEf via @Etsy #integritytt #jewelry #onlineshopping #shopping\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3299868837,"id_str":"3299868837","name":"Heather Tracy","screen_name":"tastytextiletr","location":"Adirondack Park, NY","url":"https:\/\/www.etsy.com\/shop\/TastyTextileTreats","description":null,"protected":false,"verified":false,"followers_count":835,"friends_count":785,"listed_count":195,"favourites_count":4,"statuses_count":32746,"created_at":"Wed May 27 00:39:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608794633473097730\/Wi2QMm9s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608794633473097730\/Wi2QMm9s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3299868837\/1433982810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:06 +0000 2015","id":663726510134575104,"id_str":"663726510134575104","text":"Amber and Gold WireCrochet #Earrings https:\/\/t.co\/FfZX9yDoEf via @Etsy #integritytt #jewelry #onlineshopping #shoppingWoman #etsymntt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3375260729,"id_str":"3375260729","name":"FrivolousFunBoutique","screen_name":"FrivFunBoutique","location":"Texas, USA","url":"https:\/\/www.etsy.com\/shop\/FrivolousFunBoutique","description":"Frivolous Fun Boutique specializes in one of a kind handmade and some up-cycled jewelry. Use TWITTER00 during checkout for 10% Off your entire purchase!","protected":false,"verified":false,"followers_count":989,"friends_count":1169,"listed_count":147,"favourites_count":268,"statuses_count":9262,"created_at":"Tue Jul 14 06:17:17 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637220291500900352\/cDg1c85e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637220291500900352\/cDg1c85e.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661945289100521472\/_KIzLeAP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661945289100521472\/_KIzLeAP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375260729\/1436903709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"Earrings","indices":[27,36]},{"text":"integritytt","indices":[71,83]},{"text":"jewelry","indices":[84,92]},{"text":"onlineshopping","indices":[93,108]},{"text":"shoppingWoman","indices":[109,123]},{"text":"etsymntt","indices":[124,133]}],"urls":[{"url":"https:\/\/t.co\/FfZX9yDoEf","expanded_url":"http:\/\/etsy.me\/1RErBUP","display_url":"etsy.me\/1RErBUP","indices":[37,60]}],"user_mentions":[{"screen_name":"Etsy","name":"Etsy","id":11522502,"id_str":"11522502","indices":[65,70]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Earrings","indices":[48,57]},{"text":"integritytt","indices":[92,104]},{"text":"jewelry","indices":[105,113]},{"text":"onlineshopping","indices":[114,129]},{"text":"shoppingWoman","indices":[130,140]},{"text":"etsymntt","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/FfZX9yDoEf","expanded_url":"http:\/\/etsy.me\/1RErBUP","display_url":"etsy.me\/1RErBUP","indices":[58,81]}],"user_mentions":[{"screen_name":"FrivFunBoutique","name":"FrivolousFunBoutique","id":3375260729,"id_str":"3375260729","indices":[3,19]},{"screen_name":"Etsy","name":"Etsy","id":11522502,"id_str":"11522502","indices":[86,91]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079974664"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636493897728,"id_str":"663727636493897728","text":"\u65b0\u4eac\u306e\u590f\u306f\u723d\u5feb\u3060\u305e\u3002\u84b8\u3057\u6691\u3055\u3068\u306f\u7121\u7e01\u3060\u3057\u3001\u868a\u3082\u307b\u3068\u3093\u3069\u3044\u306a\u3044\u3057\u306a\u3002\u305d\u306e\u4ee3\u308a\u3001\u51ac\u306e\u5bd2\u3055\u306f\u53b3\u3057\u3044\u3051\u3069\u2026\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1267485504,"id_str":"1267485504","name":"\u6e80\u6d32\u56fd\u305f\u3093","screen_name":"Manchukuo_tan","location":"\u6e80\u6d32\u56fd\u65b0\u4eac\u7279\u5225\u5e02","url":null,"description":"\u79c1\u306e\u540d\u524d\u306f\u6e80\u6d32\u56fd\u305f\u3093\u3002\u307f\u3093\u306a\u304c\u77e5\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u5b9f\u306f\u77e5\u3089\u306a\u3044\u6e80\u6d32\u56fd\u306e\u3042\u308c\u3053\u308c\u306b\u3064\u3044\u3066\u545f\u3044\u3066\u3044\u304f\u305e\u3002\u307e\u3060\u307e\u3060\u545f\u304d\u306e\u6570\u306f\u5c11\u306a\u3044\u3051\u3069\u3001\u5f90\u3005\u306b\u5897\u3084\u3057\u3066\u3044\u304f\u4e88\u5b9a\u3002","protected":false,"verified":false,"followers_count":1485,"friends_count":1873,"listed_count":88,"favourites_count":0,"statuses_count":29784,"created_at":"Thu Mar 14 16:52:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/814454872\/0931591abb16d35f6726f419723b3bc2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/814454872\/0931591abb16d35f6726f419723b3bc2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3379470767\/bffe58676e2cfd0404cb94cbc5c01620_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3379470767\/bffe58676e2cfd0404cb94cbc5c01620_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267485504\/1363280244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079974660"} +{"delete":{"status":{"id":662615034455920640,"id_str":"662615034455920640","user_id":2811478440,"user_id_str":"2811478440"},"timestamp_ms":"1447079974847"}} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636498087937,"id_str":"663727636498087937","text":"\u0e2a\u0e32\u0e1a\u0e32\u0e19\u0e27\u0e48\u0e32\u0e19\u0e35\u0e48\u0e01\u0e39\u0e15\u0e48\u0e2d wifi \u0e2d\u0e22\u0e39\u0e48 wtf\ud83d\udd95\ud83c\udffb https:\/\/t.co\/4L5s8rggu6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":772674006,"id_str":"772674006","name":"ck","screen_name":"ckpunch","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":145,"friends_count":205,"listed_count":0,"favourites_count":182,"statuses_count":20661,"created_at":"Wed Aug 22 01:59:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D8DECE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442106161156747265\/Fxkyi3oD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442106161156747265\/Fxkyi3oD.jpeg","profile_background_tile":true,"profile_link_color":"050505","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651769848276475905\/4Ckz0BGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651769848276475905\/4Ckz0BGO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/772674006\/1446913227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727513634340865,"id_str":"663727513634340865","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqDXUAAEmEDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqDXUAAEmEDW.jpg","url":"https:\/\/t.co\/4L5s8rggu6","display_url":"pic.twitter.com\/4L5s8rggu6","expanded_url":"http:\/\/twitter.com\/ckpunch\/status\/663727636498087937\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727513634340865,"id_str":"663727513634340865","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqDXUAAEmEDW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqDXUAAEmEDW.jpg","url":"https:\/\/t.co\/4L5s8rggu6","display_url":"pic.twitter.com\/4L5s8rggu6","expanded_url":"http:\/\/twitter.com\/ckpunch\/status\/663727636498087937\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079974661"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636489703424,"id_str":"663727636489703424","text":"Le Pape Fran\u00e7ois, au del\u00e0 des dogmes religieux, des propos universels https:\/\/t.co\/2umUFyjuus #Guin\u00e9e #Team224 https:\/\/t.co\/Rm8NSZxB64","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2394691598,"id_str":"2394691598","name":"conakrylemag","screen_name":"conakrylemag","location":"Conakry","url":"http:\/\/conakrylemag.com","description":"Retrouvez en live toute l'actualit\u00e9 politique, sportive, culturelle et people Guin\u00e9enne en photos et vid\u00e9os. News actualit\u00e9 #Guin\u00e9e #Conakry #Conakrylemag","protected":false,"verified":false,"followers_count":1250,"friends_count":54,"listed_count":39,"favourites_count":37,"statuses_count":35422,"created_at":"Mon Mar 17 16:20:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605783094293954560\/hljfOnwW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605783094293954560\/hljfOnwW.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605778004443160576\/WJ_cIlDs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605778004443160576\/WJ_cIlDs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394691598\/1433263670","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Guin\u00e9e","indices":[94,101]},{"text":"Team224","indices":[102,110]}],"urls":[{"url":"https:\/\/t.co\/2umUFyjuus","expanded_url":"http:\/\/dlvr.it\/ChfYH5","display_url":"dlvr.it\/ChfYH5","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663727636317802496,"id_str":"663727636317802496","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxMZVEAAgcOj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxMZVEAAgcOj.jpg","url":"https:\/\/t.co\/Rm8NSZxB64","display_url":"pic.twitter.com\/Rm8NSZxB64","expanded_url":"http:\/\/twitter.com\/conakrylemag\/status\/663727636489703424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":630,"h":356,"resize":"fit"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727636317802496,"id_str":"663727636317802496","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxMZVEAAgcOj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxMZVEAAgcOj.jpg","url":"https:\/\/t.co\/Rm8NSZxB64","display_url":"pic.twitter.com\/Rm8NSZxB64","expanded_url":"http:\/\/twitter.com\/conakrylemag\/status\/663727636489703424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":630,"h":356,"resize":"fit"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079974659"} +{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727636481462272,"id_str":"663727636481462272","text":"@rossanaskja https:\/\/t.co\/eNN0YL2yAp","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":96718673,"in_reply_to_user_id_str":"96718673","in_reply_to_screen_name":"rossanaskja","user":{"id":2316536063,"id_str":"2316536063","name":"Marco Testoni","screen_name":"mrctestoni1","location":"Genova","url":null,"description":"Se tutti avessero il giusto....io ne avrei abbastanza","protected":false,"verified":false,"followers_count":546,"friends_count":380,"listed_count":19,"favourites_count":8912,"statuses_count":5874,"created_at":"Fri Jan 31 17:39:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541498864684257280\/Lbbsnsho_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541498864684257280\/Lbbsnsho_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316536063\/1416586684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rossanaskja","name":"Anna Rossana","id":96718673,"id_str":"96718673","indices":[0,12]}],"symbols":[],"media":[{"id":663727634388504576,"id_str":"663727634388504576","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxFNWUAAtNLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxFNWUAAtNLZ.jpg","url":"https:\/\/t.co\/eNN0YL2yAp","display_url":"pic.twitter.com\/eNN0YL2yAp","expanded_url":"http:\/\/twitter.com\/mrctestoni1\/status\/663727636481462272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727634388504576,"id_str":"663727634388504576","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxFNWUAAtNLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxFNWUAAtNLZ.jpg","url":"https:\/\/t.co\/eNN0YL2yAp","display_url":"pic.twitter.com\/eNN0YL2yAp","expanded_url":"http:\/\/twitter.com\/mrctestoni1\/status\/663727636481462272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079974657"} +{"delete":{"status":{"id":663720468424208386,"id_str":"663720468424208386","user_id":317305807,"user_id_str":"317305807"},"timestamp_ms":"1447079975042"}} +{"delete":{"status":{"id":490394349478227969,"id_str":"490394349478227969","user_id":2558090456,"user_id_str":"2558090456"},"timestamp_ms":"1447079975133"}} +{"delete":{"status":{"id":628664941176729600,"id_str":"628664941176729600","user_id":2600350129,"user_id_str":"2600350129"},"timestamp_ms":"1447079975197"}} +{"delete":{"status":{"id":663727351289806848,"id_str":"663727351289806848","user_id":3998331011,"user_id_str":"3998331011"},"timestamp_ms":"1447079975363"}} +{"delete":{"status":{"id":568027078756577280,"id_str":"568027078756577280","user_id":494343771,"user_id_str":"494343771"},"timestamp_ms":"1447079975533"}} +{"delete":{"status":{"id":663727628117905412,"id_str":"663727628117905412","user_id":2814527720,"user_id_str":"2814527720"},"timestamp_ms":"1447079975583"}} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684199937,"id_str":"663727640684199937","text":"RT @supermegadrivin: https:\/\/t.co\/Q34vEUUetf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2901579063,"id_str":"2901579063","name":"The RTist","screen_name":"QbenoitQ","location":null,"url":null,"description":"Beau, fort, con, th\u00e9 et mental. Avec un blanc de savoie et du kirsch.","protected":false,"verified":false,"followers_count":98,"friends_count":635,"listed_count":25,"favourites_count":5374,"statuses_count":7764,"created_at":"Tue Dec 02 01:08:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624186968700813313\/1qGAUK0d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624186968700813313\/1qGAUK0d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2901579063\/1440498716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:29 +0000 2015","id":663725851947753472,"id_str":"663725851947753472","text":"https:\/\/t.co\/Q34vEUUetf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108570813,"id_str":"108570813","name":"Jean-Moundir","screen_name":"supermegadrivin","location":"Marseille","url":"http:\/\/rfgisabitch.wordpress.com\/","description":"Si j'\u00e9tais toi je me suivrais. Enfin je me suivrais pas toi mais moi, tu me suis ? http:\/\/www.facebook.com\/rhumarin\n\nContact: romainfg@gmail.com","protected":false,"verified":false,"followers_count":65558,"friends_count":1249,"listed_count":591,"favourites_count":19688,"statuses_count":40023,"created_at":"Tue Jan 26 10:37:10 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559827840\/UrbanDirty098.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559827840\/UrbanDirty098.jpg","profile_background_tile":true,"profile_link_color":"B3204F","profile_sidebar_border_color":"F0F4FA","profile_sidebar_fill_color":"36728A","profile_text_color":"CBD0D6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660001521694875648\/yHLVuWv0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660001521694875648\/yHLVuWv0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108570813\/1348118685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725844414730240,"id_str":"663725844414730240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","url":"https:\/\/t.co\/Q34vEUUetf","display_url":"pic.twitter.com\/Q34vEUUetf","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663725851947753472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":780,"h":438,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725844414730240,"id_str":"663725844414730240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","url":"https:\/\/t.co\/Q34vEUUetf","display_url":"pic.twitter.com\/Q34vEUUetf","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663725851947753472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":780,"h":438,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"supermegadrivin","name":"Jean-Moundir","id":108570813,"id_str":"108570813","indices":[3,19]}],"symbols":[],"media":[{"id":663725844414730240,"id_str":"663725844414730240","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","url":"https:\/\/t.co\/Q34vEUUetf","display_url":"pic.twitter.com\/Q34vEUUetf","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663725851947753472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":780,"h":438,"resize":"fit"}},"source_status_id":663725851947753472,"source_status_id_str":"663725851947753472","source_user_id":108570813,"source_user_id_str":"108570813"}]},"extended_entities":{"media":[{"id":663725844414730240,"id_str":"663725844414730240","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI5CWEAAo463.jpg","url":"https:\/\/t.co\/Q34vEUUetf","display_url":"pic.twitter.com\/Q34vEUUetf","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663725851947753472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":780,"h":438,"resize":"fit"}},"source_status_id":663725851947753472,"source_status_id_str":"663725851947753472","source_user_id":108570813,"source_user_id_str":"108570813"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079975659"} +{"delete":{"status":{"id":663013828892884993,"id_str":"663013828892884993","user_id":3080695248,"user_id_str":"3080695248"},"timestamp_ms":"1447079975655"}} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684208128,"id_str":"663727640684208128","text":"RT @PrettyMxdBitch: Like\u2764\ufe0f \ud83d\ude0d if u would WEAR\/\/\n\nGOLD\/\/WHITE HUARACHES\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/d\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2664067058,"id_str":"2664067058","name":"Take A Trip Here","screen_name":"TakeATripHere","location":"United States","url":"https:\/\/soundcloud.com\/jamalwademusic","description":"If you wanna see the world then Take A Trip Here.... Follow me for a follow back. Supporter of @JamalWade_","protected":false,"verified":false,"followers_count":7120,"friends_count":15969,"listed_count":33,"favourites_count":1363,"statuses_count":2693,"created_at":"Sun Jul 20 21:21:41 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653787744028786688\/teJKkaQN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653787744028786688\/teJKkaQN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2664067058\/1444710497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:24:57 +0000 2015","id":661987514211635200,"id_str":"661987514211635200","text":"Like\u2764\ufe0f \ud83d\ude0d if u would WEAR\/\/\n\nGOLD\/\/WHITE HUARACHES\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/dQmr4wDdNX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300518547,"id_str":"3300518547","name":"dejaa`","screen_name":"PrettyMxdBitch","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1658,"friends_count":45,"listed_count":3,"favourites_count":23,"statuses_count":60,"created_at":"Wed May 27 16:14:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"00FF0C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300518547\/1432765772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":173,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":661987339405762560,"id_str":"661987339405762560","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[101,124]}],"user_mentions":[{"screen_name":"PrettyMxdBitch","name":"dejaa`","id":3300518547,"id_str":"3300518547","indices":[3,18]}],"symbols":[],"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"extended_entities":{"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"},{"id":661987339405762560,"id_str":"661987339405762560","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684163072,"id_str":"663727640684163072","text":"O Lucas machuca dando concelho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444989349,"id_str":"444989349","name":"\u2693","screen_name":"_LaaisMP","location":"Jardim Colombo ","url":"http:\/\/instagram.com\/lah_mp#http:\/\/www.facebook.com\/lais.mendes.7393","description":null,"protected":false,"verified":false,"followers_count":190,"friends_count":97,"listed_count":0,"favourites_count":350,"statuses_count":17605,"created_at":"Fri Dec 23 21:49:19 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498913602628116480\/RpPQwpvB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498913602628116480\/RpPQwpvB.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661341987304550400\/MfQjU3rh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661341987304550400\/MfQjU3rh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444989349\/1440958570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640696725504,"id_str":"663727640696725504","text":"Dormi como un campeon toda la noche \ud83d\ude1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2588392812,"id_str":"2588392812","name":"Frann","screen_name":"FraanAnrique","location":"Argentina","url":"https:\/\/instagram.com\/fraananrique\/","description":"17 a\u00f1os | Olimpo | Aqu\u00ed me tienes desnudando mis sentimientos !","protected":false,"verified":false,"followers_count":160,"friends_count":152,"listed_count":3,"favourites_count":589,"statuses_count":5232,"created_at":"Wed Jun 25 23:20:35 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661212416945033216\/7vxqPshA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661212416945033216\/7vxqPshA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2588392812\/1446480298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079975662"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709345280,"id_str":"663727640709345280","text":"RT @Facts1DWoorld: New pic of Niall from the MITAM space https:\/\/t.co\/VPIRfksoVg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1937788874,"id_str":"1937788874","name":"ZQUAD","screen_name":"zouisangel_","location":null,"url":null,"description":"zayn lets play flip coin heads im yours tail your mine.","protected":false,"verified":false,"followers_count":4219,"friends_count":4999,"listed_count":8,"favourites_count":20116,"statuses_count":19236,"created_at":"Sat Oct 05 14:18:25 +0000 2013","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623888201317421056\/qMX--JR0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623888201317421056\/qMX--JR0.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660759191968227328\/HVd25XCj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660759191968227328\/HVd25XCj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1937788874\/1446372270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:47:26 +0000 2015","id":663684316954812416,"id_str":"663684316954812416","text":"New pic of Niall from the MITAM space https:\/\/t.co\/VPIRfksoVg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2592208578,"id_str":"2592208578","name":"1D Updates!","screen_name":"Facts1DWoorld","location":"Worldwide","url":null,"description":"24\/7 Updates and support for our lovely 4\/4! Keep our notifications on so you won't miss out on all of the updates\u2022 ON THE ROAD AGAIN","protected":false,"verified":false,"followers_count":14742,"friends_count":1017,"listed_count":89,"favourites_count":8800,"statuses_count":93631,"created_at":"Sat Jun 28 01:08:11 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566233308346847233\/XUX8oNiK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566233308346847233\/XUX8oNiK.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660827915618271237\/soiptW8b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660827915618271237\/soiptW8b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592208578\/1444856107","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663513577303732224,"id_str":"663513577303732224","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","url":"https:\/\/t.co\/VPIRfksoVg","display_url":"pic.twitter.com\/VPIRfksoVg","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663513579170189312\/photo\/1","type":"photo","sizes":{"medium":{"w":236,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":236,"h":243,"resize":"fit"},"small":{"w":236,"h":243,"resize":"fit"}},"source_status_id":663513579170189312,"source_status_id_str":"663513579170189312","source_user_id":390485820,"source_user_id_str":"390485820"}]},"extended_entities":{"media":[{"id":663513577303732224,"id_str":"663513577303732224","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","url":"https:\/\/t.co\/VPIRfksoVg","display_url":"pic.twitter.com\/VPIRfksoVg","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663513579170189312\/photo\/1","type":"photo","sizes":{"medium":{"w":236,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":236,"h":243,"resize":"fit"},"small":{"w":236,"h":243,"resize":"fit"}},"source_status_id":663513579170189312,"source_status_id_str":"663513579170189312","source_user_id":390485820,"source_user_id_str":"390485820"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Facts1DWoorld","name":"1D Updates!","id":2592208578,"id_str":"2592208578","indices":[3,17]}],"symbols":[],"media":[{"id":663513577303732224,"id_str":"663513577303732224","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","url":"https:\/\/t.co\/VPIRfksoVg","display_url":"pic.twitter.com\/VPIRfksoVg","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663513579170189312\/photo\/1","type":"photo","sizes":{"medium":{"w":236,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":236,"h":243,"resize":"fit"},"small":{"w":236,"h":243,"resize":"fit"}},"source_status_id":663513579170189312,"source_status_id_str":"663513579170189312","source_user_id":390485820,"source_user_id_str":"390485820"}]},"extended_entities":{"media":[{"id":663513577303732224,"id_str":"663513577303732224","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVGFUbWcAAzw2v.jpg","url":"https:\/\/t.co\/VPIRfksoVg","display_url":"pic.twitter.com\/VPIRfksoVg","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663513579170189312\/photo\/1","type":"photo","sizes":{"medium":{"w":236,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":236,"h":243,"resize":"fit"},"small":{"w":236,"h":243,"resize":"fit"}},"source_status_id":663513579170189312,"source_status_id_str":"663513579170189312","source_user_id":390485820,"source_user_id_str":"390485820"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675786752,"id_str":"663727640675786752","text":"RT @Gully_c: Jah Wayne - Boom Boom Boom (OMV) https:\/\/t.co\/uFl0D9aqxT @jahwaynerecordz #uk #tokyo #japan #usa #Musicfam #Dancehall #england\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2894540951,"id_str":"2894540951","name":"SKY1876ENT :: SCOTT","screen_name":"Skyent_eva","location":"Located: #Jamaica #MayPen","url":"http:\/\/www.sky1876ent.com\/","description":"@Sky1876ent Is The # One Online #Marketing Network Djs, Artiste Promoters Etc. Get #Promoted To Over 300,000 #Online Fans For More Info 8763425852 BBM:7F53AAEF","protected":false,"verified":false,"followers_count":1157,"friends_count":1821,"listed_count":33,"favourites_count":293,"statuses_count":15804,"created_at":"Thu Nov 27 12:15:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537958607174631424\/t06UWwJP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537958607174631424\/t06UWwJP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2894540951\/1417093853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:21:47 +0000 2015","id":663602365115838464,"id_str":"663602365115838464","text":"Jah Wayne - Boom Boom Boom (OMV) https:\/\/t.co\/uFl0D9aqxT @jahwaynerecordz #uk #tokyo #japan #usa #Musicfam #Dancehall #england @Sky1876ent'","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456996621,"id_str":"456996621","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","screen_name":"Gully_c","location":"South Africa","url":"https:\/\/m.facebook.com\/selektorblackpeppaskull?refid=5","description":"#Dancehall #Riddims #Videos #Reggae #News @Sky1876ent #Hotnews #HipHop #Marketing #Retweets #Soca #subscribe http:\/\/t.co\/bAQLLScrF9 mogamatpetersen39@gmail.com","protected":false,"verified":false,"followers_count":2024,"friends_count":137,"listed_count":60,"favourites_count":65,"statuses_count":49035,"created_at":"Fri Jan 06 22:26:00 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456996621\/1419524787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":1,"entities":{"hashtags":[{"text":"uk","indices":[74,77]},{"text":"tokyo","indices":[78,84]},{"text":"japan","indices":[85,91]},{"text":"usa","indices":[92,96]},{"text":"Musicfam","indices":[97,106]},{"text":"Dancehall","indices":[107,117]},{"text":"england","indices":[118,126]}],"urls":[{"url":"https:\/\/t.co\/uFl0D9aqxT","expanded_url":"http:\/\/youtu.be\/eXri1KZbDBQ?a","display_url":"youtu.be\/eXri1KZbDBQ?a","indices":[33,56]}],"user_mentions":[{"screen_name":"jahwaynerecordz","name":"Jah Wayne","id":70691695,"id_str":"70691695","indices":[57,73]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[127,138]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uk","indices":[87,90]},{"text":"tokyo","indices":[91,97]},{"text":"japan","indices":[98,104]},{"text":"usa","indices":[105,109]},{"text":"Musicfam","indices":[110,119]},{"text":"Dancehall","indices":[120,130]},{"text":"england","indices":[131,139]}],"urls":[{"url":"https:\/\/t.co\/uFl0D9aqxT","expanded_url":"http:\/\/youtu.be\/eXri1KZbDBQ?a","display_url":"youtu.be\/eXri1KZbDBQ?a","indices":[46,69]}],"user_mentions":[{"screen_name":"Gully_c","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","id":456996621,"id_str":"456996621","indices":[3,11]},{"screen_name":"jahwaynerecordz","name":"Jah Wayne","id":70691695,"id_str":"70691695","indices":[70,86]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709373952,"id_str":"663727640709373952","text":"RT @dimas_yaryj: \u041f\u0438\u0441\u044e\u043a. \u041f\u0438\u0441\u044e\u043a. \u041f\u0418\u0421\u042e\u041a!!!\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210526260,"id_str":"2210526260","name":"Dasha Glushkova","screen_name":"Dasha_64","location":null,"url":"http:\/\/vk.com\/id120971805","description":null,"protected":false,"verified":false,"followers_count":72,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":2217,"created_at":"Sat Nov 23 11:37:15 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434796484395945984\/IwCfPvVy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434796484395945984\/IwCfPvVy.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623235835865862144\/IdayLcN9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623235835865862144\/IdayLcN9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210526260\/1437426017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:39 +0000 2015","id":663721113776705536,"id_str":"663721113776705536","text":"\u041f\u0438\u0441\u044e\u043a. \u041f\u0438\u0441\u044e\u043a. \u041f\u0418\u0421\u042e\u041a!!!\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446015311,"id_str":"446015311","name":"\u0414\u0438\u043d\u0447\u0438\u043a","screen_name":"dimas_yaryj","location":"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c","url":null,"description":null,"protected":false,"verified":false,"followers_count":216,"friends_count":114,"listed_count":3,"favourites_count":1956,"statuses_count":7012,"created_at":"Sun Dec 25 06:10:57 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/509441671323348993\/vl46spJ3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/509441671323348993\/vl46spJ3.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649612822087880704\/Oe5ildeK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649612822087880704\/Oe5ildeK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446015311\/1440193472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"uk"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dimas_yaryj","name":"\u0414\u0438\u043d\u0447\u0438\u043a","id":446015311,"id_str":"446015311","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"uk","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640696774656,"id_str":"663727640696774656","text":"RT @PrettyMxdBitch: Like\u2764\ufe0f \ud83d\ude0d if u would WEAR\/\/\n\nGOLD\/\/WHITE HUARACHES\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/d\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":202761088,"id_str":"202761088","name":"Polito.","screen_name":"TazPolito","location":"Instagram , TazPolito","url":"https:\/\/soundcloud.com\/tazpolito","description":"a OutSpoken King. \nACTOR & ARTIST\nSNAPCHAT- TazTheGifted\nGo on my SOUNDCLOUD Below .\n\nfor Booking\/Business\nTtzhits@gmail.com","protected":false,"verified":false,"followers_count":14228,"friends_count":10762,"listed_count":26,"favourites_count":4195,"statuses_count":66095,"created_at":"Thu Oct 14 19:27:55 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0105","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447941633640636417\/sfl8cZTX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447941633640636417\/sfl8cZTX.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"807E77","profile_text_color":"140F14","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660983057206276097\/rsQowI06_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660983057206276097\/rsQowI06_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202761088\/1444999826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:24:57 +0000 2015","id":661987514211635200,"id_str":"661987514211635200","text":"Like\u2764\ufe0f \ud83d\ude0d if u would WEAR\/\/\n\nGOLD\/\/WHITE HUARACHES\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/dQmr4wDdNX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300518547,"id_str":"3300518547","name":"dejaa`","screen_name":"PrettyMxdBitch","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1658,"friends_count":45,"listed_count":3,"favourites_count":23,"statuses_count":60,"created_at":"Wed May 27 16:14:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"00FF0C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300518547\/1432765772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":173,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":661987339405762560,"id_str":"661987339405762560","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[101,124]}],"user_mentions":[{"screen_name":"PrettyMxdBitch","name":"dejaa`","id":3300518547,"id_str":"3300518547","indices":[3,18]}],"symbols":[],"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"extended_entities":{"media":[{"id":661987339003174912,"id_str":"661987339003174912","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-jsXIAAiB-y.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"},{"id":661987339405762560,"id_str":"661987339405762560","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_Z-lMWIAAZi8q.jpg","url":"https:\/\/t.co\/dQmr4wDdNX","display_url":"pic.twitter.com\/dQmr4wDdNX","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/661987514211635200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":661987514211635200,"source_status_id_str":"661987514211635200","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975662"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705110016,"id_str":"663727640705110016","text":"RT @koisuru_biyou: \u7537\u5973\u30e2\u30c7\u30eb\u306e\u52df\u96c6\u59cb\u307e\u308a\u307e\u3057\u305f\u2605\n\n\u2460CM\u51fa\u6f14\u30e2\u30c7\u30eb\n\u2461\u96d1\u8a8c\u306e\u8868\u7d19\u30e2\u30c7\u30eb\n\u2462\u5e83\u544a\u30e2\u30c7\u30eb\n\u2463\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u30b7\u30e7\u30fc\n\n\u306a\u3069\u306a\u3069\uff01\n\u30e2\u30c7\u30eb\u7d4c\u9a13\uff10\u3067OK\u3067\u3059\u266a\n\n\u5411\u4e0a\u5fc3\u304c\u3042\u308b\u65b9\u306f\u3069\u3046\u305e\uff01 \u2192https:\/\/t.co\/UfZDiunaAw https:\/\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/hekihekie\" rel=\"nofollow\"\u003ehekihekie\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2921673289,"id_str":"2921673289","name":"\u6df1\u591c\u306e\u3056\u3064\u304c\u304f\u307c\u3063\u3068\u3002\u3002\u3002","screen_name":"sinya_zatu","location":null,"url":null,"description":"\u6c17\u306b\u5165\u3063\u305f\u3089\u3075\u3041\u307c\u3063\u3066\u306d.","protected":false,"verified":false,"followers_count":381,"friends_count":1776,"listed_count":0,"favourites_count":0,"statuses_count":6483,"created_at":"Sun Dec 07 12:49:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541575567800152066\/8OwSyHDU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541575567800152066\/8OwSyHDU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921673289\/1417956695","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:55 +0000 2015","id":663727473654423552,"id_str":"663727473654423552","text":"\u7537\u5973\u30e2\u30c7\u30eb\u306e\u52df\u96c6\u59cb\u307e\u308a\u307e\u3057\u305f\u2605\n\n\u2460CM\u51fa\u6f14\u30e2\u30c7\u30eb\n\u2461\u96d1\u8a8c\u306e\u8868\u7d19\u30e2\u30c7\u30eb\n\u2462\u5e83\u544a\u30e2\u30c7\u30eb\n\u2463\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u30b7\u30e7\u30fc\n\n\u306a\u3069\u306a\u3069\uff01\n\u30e2\u30c7\u30eb\u7d4c\u9a13\uff10\u3067OK\u3067\u3059\u266a\n\n\u5411\u4e0a\u5fc3\u304c\u3042\u308b\u65b9\u306f\u3069\u3046\u305e\uff01 \u2192https:\/\/t.co\/UfZDiunaAw https:\/\/t.co\/Awv271gtTt","source":"\u003ca href=\"https:\/\/twitter.com\/nashiko041\" rel=\"nofollow\"\u003enashiko041\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926599169,"id_str":"2926599169","name":"\u2665\u604b\u3059\u308b\u5973\u5b50\u306e\u7f8e\u5bb9\u60c5\u5831\u5c40\u2665","screen_name":"koisuru_biyou","location":null,"url":null,"description":"\u30ad\u30ec\u30a4\u306b\u306a\u308a\u305f\u3044\u5973\u5b50\u306e\u307f\u3093\u306a\u3078\u3001\u7f8e\u5bb9\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u2665","protected":false,"verified":false,"followers_count":742,"friends_count":6,"listed_count":6,"favourites_count":1,"statuses_count":9351,"created_at":"Thu Dec 11 08:33:43 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547612045898559488\/KQY-WVMx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547612045898559488\/KQY-WVMx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926599169\/1419395839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UfZDiunaAw","expanded_url":"http:\/\/guu.link\/cc\/14\/","display_url":"guu.link\/cc\/14\/","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727472702324736,"id_str":"663727472702324736","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","url":"https:\/\/t.co\/Awv271gtTt","display_url":"pic.twitter.com\/Awv271gtTt","expanded_url":"http:\/\/twitter.com\/koisuru_biyou\/status\/663727473654423552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"},"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727472702324736,"id_str":"663727472702324736","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","url":"https:\/\/t.co\/Awv271gtTt","display_url":"pic.twitter.com\/Awv271gtTt","expanded_url":"http:\/\/twitter.com\/koisuru_biyou\/status\/663727473654423552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"},"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UfZDiunaAw","expanded_url":"http:\/\/guu.link\/cc\/14\/","display_url":"guu.link\/cc\/14\/","indices":[108,131]}],"user_mentions":[{"screen_name":"koisuru_biyou","name":"\u2665\u604b\u3059\u308b\u5973\u5b50\u306e\u7f8e\u5bb9\u60c5\u5831\u5c40\u2665","id":2926599169,"id_str":"2926599169","indices":[3,17]}],"symbols":[],"media":[{"id":663727472702324736,"id_str":"663727472702324736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","url":"https:\/\/t.co\/Awv271gtTt","display_url":"pic.twitter.com\/Awv271gtTt","expanded_url":"http:\/\/twitter.com\/koisuru_biyou\/status\/663727473654423552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"},"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"}},"source_status_id":663727473654423552,"source_status_id_str":"663727473654423552","source_user_id":2926599169,"source_user_id_str":"2926599169"}]},"extended_entities":{"media":[{"id":663727472702324736,"id_str":"663727472702324736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInq4XAAAw1cf.png","url":"https:\/\/t.co\/Awv271gtTt","display_url":"pic.twitter.com\/Awv271gtTt","expanded_url":"http:\/\/twitter.com\/koisuru_biyou\/status\/663727473654423552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"},"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"}},"source_status_id":663727473654423552,"source_status_id_str":"663727473654423552","source_user_id":2926599169,"source_user_id_str":"2926599169"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688402433,"id_str":"663727640688402433","text":"@PaolaToogoodxme Grazie! Lei la stimo anche come \"persona\" perch\u00e9 ho avuto la fortuna di conoscerla. Forte ma dolce! Grande Dacia <3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727060733554688,"in_reply_to_status_id_str":"663727060733554688","in_reply_to_user_id":468129321,"in_reply_to_user_id_str":"468129321","in_reply_to_screen_name":"PaolaToogoodxme","user":{"id":2561026109,"id_str":"2561026109","name":"Lal\u00e0 Makarowa","screen_name":"makarowa_l","location":null,"url":null,"description":"Desiderare l'impossibile \u00e8 una possibilit\u00e0.","protected":false,"verified":false,"followers_count":2964,"friends_count":2269,"listed_count":54,"favourites_count":18927,"statuses_count":17300,"created_at":"Fri May 23 22:43:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489077119264120832\/vyBASf4k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489077119264120832\/vyBASf4k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561026109\/1446039015","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PaolaToogoodxme","name":"Paola Cingolani","id":468129321,"id_str":"468129321","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705155074,"id_str":"663727640705155074","text":"Tim\u00e3o vai comemorar o titulo no RJ ou vai perder e sacramentar em SP? Fa\u00e7am suas apostas.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175090733,"id_str":"175090733","name":"Fabricio","screen_name":"BIR0","location":null,"url":"http:\/\/instagram.com\/fabricio_bir0","description":"Comentarista...","protected":false,"verified":false,"followers_count":36,"friends_count":130,"listed_count":0,"favourites_count":13,"statuses_count":1547,"created_at":"Thu Aug 05 16:24:35 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/509081485463130112\/fZPzDJp3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/509081485463130112\/fZPzDJp3.jpeg","profile_background_tile":true,"profile_link_color":"2542FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520226669726941184\/oocBaaQL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520226669726941184\/oocBaaQL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175090733\/1410209363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709169152,"id_str":"663727640709169152","text":"@JIMIN_lOl3 \n\n\u306f ... \u3063 \u3001\u3068\u307e\u3093\u306a\u304f\u3066\u3044\u3044\u3082\u3093 .. \/\n( \u4fef\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727431090483200,"in_reply_to_status_id_str":"663727431090483200","in_reply_to_user_id":4168386792,"in_reply_to_user_id_str":"4168386792","in_reply_to_screen_name":"JIMIN_lOl3","user":{"id":4156386914,"id_str":"4156386914","name":"\ubdd4","screen_name":"__v_30","location":null,"url":null,"description":"\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164\u3164 \u3164 \u3164","protected":false,"verified":false,"followers_count":47,"friends_count":47,"listed_count":0,"favourites_count":44,"statuses_count":805,"created_at":"Sat Nov 07 11:03:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663494357564059648\/b4wtRpTg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663494357564059648\/b4wtRpTg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4156386914\/1446894451","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JIMIN_lOl3","name":"JIMIN .","id":4168386792,"id_str":"4168386792","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705150977,"id_str":"663727640705150977","text":"@TomWhitwell Understood, and makes sense. Thanks.","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663702232060305408,"in_reply_to_status_id_str":"663702232060305408","in_reply_to_user_id":4386701,"in_reply_to_user_id_str":"4386701","in_reply_to_screen_name":"TomWhitwell","user":{"id":1843531,"id_str":"1843531","name":"Seth Elgart","screen_name":"selgart","location":"New York City, United States","url":"http:\/\/boxoftextures.blogspot.com\/","description":"Synthesizers, Macs, my kids, grandchild. Not necessarily in that order.","protected":false,"verified":false,"followers_count":182,"friends_count":432,"listed_count":10,"favourites_count":1871,"statuses_count":1628,"created_at":"Thu Mar 22 06:13:18 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/64133740\/voyager-twitter.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/64133740\/voyager-twitter.jpg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"A6A6A6","profile_sidebar_fill_color":"A8A8A8","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/30360212\/0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/30360212\/0_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5fda309188382afc","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5fda309188382afc.json","place_type":"neighborhood","name":"Hunters Point","full_name":"Hunters Point, Queens","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-73.962582,40.736477],[-73.962582,40.755249],[-73.936228,40.755249],[-73.936228,40.736477]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TomWhitwell","name":"Tom Whitwell","id":4386701,"id_str":"4386701","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688246784,"id_str":"663727640688246784","text":"RT @LoadingArtist: @Plastic_Waffle what inspires me to keep up this charade or what inspires me to come up with the comic ideas I get?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994152353,"id_str":"2994152353","name":"ThePlasticWaffle","screen_name":"Plastic_Waffle","location":null,"url":null,"description":"Hello, Plastic Waffle here with my Twitter Account! My profile pic is by Michelle Prebich, my favorite artist!","protected":false,"verified":false,"followers_count":8,"friends_count":44,"listed_count":0,"favourites_count":29,"statuses_count":94,"created_at":"Sat Jan 24 04:09:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628622345398173697\/AwNXnZ8g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628622345398173697\/AwNXnZ8g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994152353\/1432317887","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:51:17 +0000 2015","id":663624886158405633,"id_str":"663624886158405633","text":"@Plastic_Waffle what inspires me to keep up this charade or what inspires me to come up with the comic ideas I get?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663616156507373568,"in_reply_to_status_id_str":"663616156507373568","in_reply_to_user_id":2994152353,"in_reply_to_user_id_str":"2994152353","in_reply_to_screen_name":"Plastic_Waffle","user":{"id":28534645,"id_str":"28534645","name":"Gregor Czaykowski","screen_name":"LoadingArtist","location":"Auckland, New Zealand","url":"http:\/\/www.LoadingArtist.com\/","description":"I make Loading Artist","protected":false,"verified":false,"followers_count":8297,"friends_count":102,"listed_count":152,"favourites_count":442,"statuses_count":2722,"created_at":"Fri Apr 03 09:53:45 +0000 2009","utc_offset":46800,"time_zone":"Wellington","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"002233","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/360789112\/background.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/360789112\/background.png","profile_background_tile":true,"profile_link_color":"FF6600","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3591592929\/ad23cd061b7e64d12a0c383b45767d1f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3591592929\/ad23cd061b7e64d12a0c383b45767d1f_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28534645\/1394047674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Plastic_Waffle","name":"ThePlasticWaffle","id":2994152353,"id_str":"2994152353","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LoadingArtist","name":"Gregor Czaykowski","id":28534645,"id_str":"28534645","indices":[3,17]},{"screen_name":"Plastic_Waffle","name":"ThePlasticWaffle","id":2994152353,"id_str":"2994152353","indices":[19,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692453376,"id_str":"663727640692453376","text":"@aymkn_gb \u884c\u304d\u3066\u3048\u3088\u304a\u304a\u304a\u304a\u304a\u304a(\u00b4\uff1b\u0414\uff1b\uff40)\u2661\n\u304a\u91d1\u306a\u3044\u308f\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u6b66\u9053\u9928\u884c\u304d\u305f\u304b\u3063\u305f\u308f\u3042\u3042\u3042(\u00b4\uff1b\u0414\uff1b\uff40)\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726489494360066,"in_reply_to_status_id_str":"663726489494360066","in_reply_to_user_id":2460959371,"in_reply_to_user_id_str":"2460959371","in_reply_to_screen_name":"aymkn_gb","user":{"id":2521897351,"id_str":"2521897351","name":"\u307f\u3055\u304d\u3063\u3068\u304b\u3063\u3068\u3010\u5e78\u3011","screen_name":"sugapiiiii1005","location":"\u30a2\u30a4\u30b3\u30f3\u306f\u3066\u3043\u3068\u3061\u3083\u3093","url":"http:\/\/twpf.jp\/sugapiiiii1005","description":"\u3010 @sugamatasho \u3011\u261c\u2661\u261e\u3010shower\u3011","protected":false,"verified":false,"followers_count":301,"friends_count":247,"listed_count":30,"favourites_count":16602,"statuses_count":17965,"created_at":"Sun May 25 03:54:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663479422893199360\/nIkp-s_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663479422893199360\/nIkp-s_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2521897351\/1447022491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aymkn_gb","name":"\u3042\u3086\u307f\u304f\u3093\u2729\u3044\u3056\u3001\u8461\u8404\u7f36\u3078\uff01","id":2460959371,"id_str":"2460959371","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684003328,"id_str":"663727640684003328","text":"nmmn\u3092\u597d\u304d\u306b\u306a\u308b\u3068\u7f6a\u60aa\u611f\u30cf\u30f3\u30d1\u306a\u3044\u3002\n\u611b\u3057\u3066\u308b\u304b\u3089\u3053\u305d\u90aa\u306a\u76ee\u3067\u898b\u308b\u306e\u304c\u7533\u3057\u8a33\u306a\u304f\u306a\u308b\u3093\u3060\u3051\u3069\u3069\u3046\u3057\u3066\u3082\u4e0d\u610f\u306b\u840c\u3048\u3066\u3057\u307e\u3046\u2026\n\u751f\u304d\u3066\u3066\u30b5\u30fc\u30bb\u30f3\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3864241273,"id_str":"3864241273","name":"\u85fb\u5c51","screen_name":"meru0827","location":null,"url":null,"description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044\u3002\u7121\u7bc0\u64cd\u306b\u545f\u304d\u307e\u3059\u3002\u4eca\u306fHQ\u306e\u9ed2\u53ca\u3068\u4e3b\u5c06\u30ba\u304c\u71b1\u3044\u3002","protected":false,"verified":false,"followers_count":19,"friends_count":51,"listed_count":0,"favourites_count":76,"statuses_count":111,"created_at":"Mon Oct 12 00:59:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662055391719616513\/OBnJwklY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662055391719616513\/OBnJwklY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3864241273\/1446212556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640696651776,"id_str":"663727640696651776","text":"RT @bumiiz_TN: \u0e2e\u0e22\u0e2d\u0e07\u0e07\u0e07\u0e07\u0e07 \u0e40\u0e2e\u0e35\u0e22\u0e15\u0e31\u0e49\u0e07\u0e04\u0e13\u0e30\u0e44\u0e2b\u0e2155555 https:\/\/t.co\/escb3Csxq8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":896992699,"id_str":"896992699","name":"\u2614","screen_name":"Rainy_GM","location":"Golf-Mike-Maxwell","url":null,"description":"\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e14\u0e34...\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e01\u0e39","protected":false,"verified":false,"followers_count":4713,"friends_count":627,"listed_count":2,"favourites_count":44866,"statuses_count":64274,"created_at":"Mon Oct 22 07:50:02 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"0078B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540880207679205377\/BtIfiZxF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540880207679205377\/BtIfiZxF.jpeg","profile_background_tile":true,"profile_link_color":"009CB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663044392161165312\/FPmVzR9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663044392161165312\/FPmVzR9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896992699\/1441531808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:14 +0000 2015","id":663727550569443328,"id_str":"663727550569443328","text":"\u0e2e\u0e22\u0e2d\u0e07\u0e07\u0e07\u0e07\u0e07 \u0e40\u0e2e\u0e35\u0e22\u0e15\u0e31\u0e49\u0e07\u0e04\u0e13\u0e30\u0e44\u0e2b\u0e2155555 https:\/\/t.co\/escb3Csxq8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251996194,"id_str":"251996194","name":"Bumbim Angelo","screen_name":"bumiiz_TN","location":null,"url":null,"description":"support : Golf-Mike Tina BNY","protected":false,"verified":false,"followers_count":430,"friends_count":164,"listed_count":1,"favourites_count":11032,"statuses_count":48796,"created_at":"Mon Feb 14 08:04:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/746643463\/7e09fa568049a5debf69f2ee3fe5fef6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/746643463\/7e09fa568049a5debf69f2ee3fe5fef6.jpeg","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661197713615142912\/QEnaXbk9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661197713615142912\/QEnaXbk9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251996194\/1401640908","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663716309092339712,"quoted_status_id_str":"663716309092339712","quoted_status":{"created_at":"Mon Nov 09 13:54:33 +0000 2015","id":663716309092339712,"id_str":"663716309092339712","text":"M: \u0e23\u0e39\u0e49\u0e1b\u0e48\u0e30\u0e27\u0e48\u0e32\u0e17\u0e33\u0e44\u0e21\u0e40\u0e2e\u0e35\u0e22\u0e15\u0e49\u0e2d\u0e07\u0e43\u0e2a\u0e48\u0e27\u0e34\u0e01\nK: \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e40\u0e2e\u0e35\u0e22\u0e40\u0e1e\u0e34\u0e48\u0e07\u0e2a\u0e36\u0e01\nM: \u0e1c\u0e34\u0e14\nK: \u0e41\u0e25\u0e49\u0e27\u0e40\u0e2e\u0e35\u0e22\u0e43\u0e2a\u0e48\u0e27\u0e34\u0e01\u0e44\u0e21\u0e2d\u0e48\u0e30\nM: \u0e40\u0e2e\u0e35\u0e22\u0e04\u0e31\u0e14\u0e08\u0e21\u0e39\u0e01\nK: .... \n#\u0e44\u0e21\u0e04\u0e4c\u0e04\u0e23\u0e34\u0e2a https:\/\/t.co\/0Lk8F5cLlN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":896992699,"id_str":"896992699","name":"\u2614","screen_name":"Rainy_GM","location":"Golf-Mike-Maxwell","url":null,"description":"\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e14\u0e34...\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e01\u0e39","protected":false,"verified":false,"followers_count":4713,"friends_count":627,"listed_count":2,"favourites_count":44866,"statuses_count":64273,"created_at":"Mon Oct 22 07:50:02 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"0078B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540880207679205377\/BtIfiZxF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540880207679205377\/BtIfiZxF.jpeg","profile_background_tile":true,"profile_link_color":"009CB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663044392161165312\/FPmVzR9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663044392161165312\/FPmVzR9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/896992699\/1441531808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e44\u0e21\u0e04\u0e4c\u0e04\u0e23\u0e34\u0e2a","indices":[106,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716278679441408,"id_str":"663716278679441408","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-cF5VEAAK1TT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-cF5VEAAK1TT.jpg","url":"https:\/\/t.co\/0Lk8F5cLlN","display_url":"pic.twitter.com\/0Lk8F5cLlN","expanded_url":"http:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712\/photo\/1","type":"photo","sizes":{"large":{"w":729,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716278679441408,"id_str":"663716278679441408","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-cF5VEAAK1TT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-cF5VEAAK1TT.jpg","url":"https:\/\/t.co\/0Lk8F5cLlN","display_url":"pic.twitter.com\/0Lk8F5cLlN","expanded_url":"http:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712\/photo\/1","type":"photo","sizes":{"large":{"w":729,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}}},{"id":663716281661558785,"id_str":"663716281661558785","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-cRAUkAEeu1y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-cRAUkAEeu1y.jpg","url":"https:\/\/t.co\/0Lk8F5cLlN","display_url":"pic.twitter.com\/0Lk8F5cLlN","expanded_url":"http:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":460,"resize":"fit"},"medium":{"w":396,"h":536,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":396,"h":536,"resize":"fit"}}},{"id":663716284765376512,"id_str":"663716284765376512","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-cckVEAA4E6e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-cckVEAA4E6e.jpg","url":"https:\/\/t.co\/0Lk8F5cLlN","display_url":"pic.twitter.com\/0Lk8F5cLlN","expanded_url":"http:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}},{"id":663716297478303744,"id_str":"663716297478303744","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-dL7U8AAPsdf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-dL7U8AAPsdf.jpg","url":"https:\/\/t.co\/0Lk8F5cLlN","display_url":"pic.twitter.com\/0Lk8F5cLlN","expanded_url":"http:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":627,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":718,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/escb3Csxq8","expanded_url":"https:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712","display_url":"twitter.com\/Rainy_GM\/statu\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/escb3Csxq8","expanded_url":"https:\/\/twitter.com\/Rainy_GM\/status\/663716309092339712","display_url":"twitter.com\/Rainy_GM\/statu\u2026","indices":[45,68]}],"user_mentions":[{"screen_name":"bumiiz_TN","name":"Bumbim Angelo","id":251996194,"id_str":"251996194","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079975662"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713523200,"id_str":"663727640713523200","text":"RT @nacionrockera: Disimulando lo triste y conservando la calma.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3837642615,"id_str":"3837642615","name":"Cami Bola\u00f1o","screen_name":"cami_8727","location":null,"url":null,"description":"CIRO Y LOS PERSAS \u2661 \/\/ Fran admv \u2661","protected":false,"verified":false,"followers_count":71,"friends_count":187,"listed_count":0,"favourites_count":433,"statuses_count":456,"created_at":"Thu Oct 01 23:10:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652576747792281600\/I4ul3a2m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652576747792281600\/I4ul3a2m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3837642615\/1443741395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 01:28:58 +0000 2015","id":653381813256253440,"id_str":"653381813256253440","text":"Disimulando lo triste y conservando la calma.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270781978,"id_str":"2270781978","name":"Naci\u00f3n Rockera","screen_name":"nacionrockera","location":"\u2605Puede una sola frase llenarte","url":null,"description":"Instagram: @nacionrocknacional \n\nYoutube: @nacionrockera","protected":false,"verified":false,"followers_count":129036,"friends_count":49,"listed_count":87,"favourites_count":6803,"statuses_count":6316,"created_at":"Tue Dec 31 20:01:14 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582963550458642433\/RMLdHxYe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582963550458642433\/RMLdHxYe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270781978\/1421728962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2436,"favorite_count":1436,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nacionrockera","name":"Naci\u00f3n Rockera","id":2270781978,"id_str":"2270781978","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675790848,"id_str":"663727640675790848","text":"Get Weather Updates from The Weather Channel. 09:39:35","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3168236848,"id_str":"3168236848","name":"stwa29171","screen_name":"stwa29171","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":108985,"created_at":"Wed Apr 15 04:21:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684064768,"id_str":"663727640684064768","text":"\u54b3\u3068\u307e\u3093\u306a\u3044\u3057\u306a\u3093\u304b\u306e\u767a\u4f5c\u307f\u305f\u3044\u306b\u7a81\u7136\u51fa\u308b\u3057\u5b66\u6821\u884c\u3063\u305f\u3089\u7d76\u5bfe\u3046\u3064\u3059\u3060\u308d\u3046\u306a\u2026\u307f\u3093\u306a\u3054\u3081\u3093\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2841334639,"id_str":"2841334639","name":"\u307e\u3086","screen_name":"Sora___1029","location":"\u6771\u4eac\u2026\uff1f","url":"http:\/\/hibari.nana-music.com\/w\/profile\/232586\/","description":null,"protected":false,"verified":false,"followers_count":655,"friends_count":643,"listed_count":20,"favourites_count":5391,"statuses_count":7099,"created_at":"Sun Oct 05 12:56:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658260051518328833\/hMSA21ts_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658260051518328833\/hMSA21ts_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841334639\/1434581345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640679837696,"id_str":"663727640679837696","text":"I have hot Cheeto stains on my pull over .. oops","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2309442890,"id_str":"2309442890","name":"sarah","screen_name":"sarahhcavanaugh","location":null,"url":null,"description":"IV\u2022XIII\u2022MMXV *YSL*","protected":false,"verified":false,"followers_count":394,"friends_count":288,"listed_count":0,"favourites_count":4780,"statuses_count":6060,"created_at":"Sat Jan 25 05:06:58 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B300AD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662810510040039424\/pomN21B3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662810510040039424\/pomN21B3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2309442890\/1447073880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975658"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713539584,"id_str":"663727640713539584","text":"I Just Voted for @onedirection for #ArtistOfTheYear Go Here https:\/\/t.co\/n93QwX312L and Vote for your favorite! 2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":610443131,"id_str":"610443131","name":"\u2665\ufe0e","screen_name":"nightchanges","location":null,"url":null,"description":"nothing to be afraid of","protected":false,"verified":false,"followers_count":3994,"friends_count":125,"listed_count":71,"favourites_count":62246,"statuses_count":15283,"created_at":"Sun Jun 17 02:32:33 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588527977878589440\/qO8JbFkF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588527977878589440\/qO8JbFkF.png","profile_background_tile":true,"profile_link_color":"846FA4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662472503814717440\/9SyfTu4l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662472503814717440\/9SyfTu4l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610443131\/1446780727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ArtistOfTheYear","indices":[35,51]}],"urls":[{"url":"https:\/\/t.co\/n93QwX312L","expanded_url":"http:\/\/amavotenow.tv","display_url":"amavotenow.tv","indices":[60,83]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[17,30]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675676160,"id_str":"663727640675676160","text":"RT @roco_55: \u3010AP\u30d8\u30bf\u30ea\u30a2MMD\u3011\u81ea\u4f5c\u82f1\u3067Right Now\u3010\u30e2\u30c7\u30eb\u914d\u5e03\u3011 (0:40) https:\/\/t.co\/YDlREUQr5D #sm27555126 \u3059\u3054\u3044\u7dba\u9e97\u306a\u30e2\u30c7\u30eb\u3055\u3093\u3060\uff01","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248392272,"id_str":"248392272","name":"zeze","screen_name":"mmdzeze","location":null,"url":"http:\/\/mmmmd.tumblr.com\/","description":"\u30e1\u30ea\u30ab\u9818Blender\u6d3e","protected":false,"verified":false,"followers_count":5876,"friends_count":454,"listed_count":185,"favourites_count":2634,"statuses_count":19605,"created_at":"Sun Feb 06 22:25:40 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/667303352\/72656d9d76e968108a5ac999c7a57725.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/667303352\/72656d9d76e968108a5ac999c7a57725.jpeg","profile_background_tile":false,"profile_link_color":"196394","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661646165729898496\/Oz6k7C2V_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661646165729898496\/Oz6k7C2V_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248392272\/1435704765","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:33 +0000 2015","id":663726876960026624,"id_str":"663726876960026624","text":"\u3010AP\u30d8\u30bf\u30ea\u30a2MMD\u3011\u81ea\u4f5c\u82f1\u3067Right Now\u3010\u30e2\u30c7\u30eb\u914d\u5e03\u3011 (0:40) https:\/\/t.co\/YDlREUQr5D #sm27555126 \u3059\u3054\u3044\u7dba\u9e97\u306a\u30e2\u30c7\u30eb\u3055\u3093\u3060\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93547199,"id_str":"93547199","name":"\u30ed\u30b3","screen_name":"roco_55","location":"\u76f8\u64b2\u30b5\u30fc\u30d0\u30fc","url":"http:\/\/www.nicovideo.jp\/mylist\/18294747","description":"MMD\u30e9\u30af\u30ac\u30ad\u30e2\u30c7\u30eb\u4f5c\u3063\u3066\u307e\u3059\u3002aph\/\u9032\u6483\/\u5200\u5263\/\u30b2\u30fc\u30e0\/\u30e9\u30af\u30ac\u30ad\u7b49\u3002\u9774\u4e0b\u3067\uff71\uff99\uff9a\uff99\u515a\u306e\u780c\u4e38\uff78\uff97\uff7d\uff80\u3002DM\u304a\u6025\u304e\u306e\u6642\u306f\u9001\u4fe1\u5f8c\u306b\uff20\u3044\u305f\u3060\u304d\u305f\u304f\u2026 \u3000WEB\u62cd\u624b\uff1ahttp:\/\/clap.webclap.com\/clap.php?id=roco_55 \u8a73\u7d30\uff1ahttp:\/\/twpf.jp\/roco_55","protected":false,"verified":false,"followers_count":8298,"friends_count":357,"listed_count":289,"favourites_count":16667,"statuses_count":63332,"created_at":"Mon Nov 30 03:03:49 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"64CAD0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663640900963168260\/oH1s0AAj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663640900963168260\/oH1s0AAj.png","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661576623397797888\/L6xczgJ7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661576623397797888\/L6xczgJ7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93547199\/1437579346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"sm27555126","indices":[63,74]}],"urls":[{"url":"https:\/\/t.co\/YDlREUQr5D","expanded_url":"http:\/\/nico.ms\/sm27555126","display_url":"nico.ms\/sm27555126","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm27555126","indices":[76,87]}],"urls":[{"url":"https:\/\/t.co\/YDlREUQr5D","expanded_url":"http:\/\/nico.ms\/sm27555126","display_url":"nico.ms\/sm27555126","indices":[52,75]}],"user_mentions":[{"screen_name":"roco_55","name":"\u30ed\u30b3","id":93547199,"id_str":"93547199","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700825600,"id_str":"663727640700825600","text":"\u3084\u308a\u305f\u3044\u3053\u3068\u306f\u7de9\u548c\u533b\u7642\u304b\u3082\uff1f\u6c7a\u3081\u304d\u308b\u5fc5\u8981\u306f\u306a\u3044\u3051\u3069\u3001\u8003\u3048\u308b\u3079\u304d\u3067\u306f\u3042\u308b\u3068\u601d\u3046\u3002\u3046\u3080\u3080\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4002113534,"id_str":"4002113534","name":"\u307f\u304b","screen_name":"mika_wat_1226","location":"NGY","url":null,"description":"\u72ac\u304c\u597d\u304d\u306a\u30dd\u30ea\u30af\u30ea\u751f\u3002\u60c5\u5831\u53ce\u96c6\u7528\u3002\u7523\u5a66\u4eba\u79d1\u3001\u611f\u67d3\u75c7\u3001\u653e\u5c04\u7dda\u6cbb\u7642\u3001\u4eba\u5de5\u77e5\u80fd","protected":false,"verified":false,"followers_count":1,"friends_count":7,"listed_count":0,"favourites_count":2,"statuses_count":3,"created_at":"Sat Oct 24 12:17:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657895421176516608\/bbc5jUkE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657895421176516608\/bbc5jUkE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709197824,"id_str":"663727640709197824","text":"\u30a2\u30d0\u30fc\u30c3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171817595,"id_str":"171817595","name":"\u30b7\u30a8\u30f3","screen_name":"adeshsienn","location":"\u56fd\u5883\u306a\u304d\u4e16\u754c","url":null,"description":"\u307e\u3041\u3060\u3089\u3060\u3089\u3068\u3002\u57fa\u672c\u7684\u306b\u30cd\u30ac\u3063\u3066\u9b31\u3067\u3059\u3002mtg\u306f\u9280\u3068\u9752\u9ed2\u3002\u904a\u622f\u738b\u306f\u30b7\u30e3\u30c9\u30fc\u30eb\u3068\u30a4\u30f3\u30d5\u30a7\u30eb\u30ce\u30a4\u30c9\u3068AF\u3002AC\u597d\u304d\u3002\u30e2\u30d0\u30de\u30b9\u306f\u98db\u9ce5\u3068\u3042\u308a\u3059\u3068\u6843\u83ef\u3002\u30d5\u30a9\u30ed\u30fc\u30d6\u30ed\u30c3\u30af\u3054\u81ea\u7531\u306b\u3002\u30a8\u30a2\u30ea\u30d7\u6fc0\u3057\u3044\u30de\u30f3 \u30a2\u30a4\u30b3\u30f3\u306f@ma_mu_see \u3055\u3093\u3088\u308a","protected":false,"verified":false,"followers_count":80,"friends_count":83,"listed_count":3,"favourites_count":54,"statuses_count":38947,"created_at":"Wed Jul 28 06:55:45 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1594744739\/_____normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1594744739\/_____normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684199936,"id_str":"663727640684199936","text":"EU TO ME MIJANDO https:\/\/t.co\/eG4PGQAfQO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323970161,"id_str":"323970161","name":"MANU #\ud654\uc591\uc5f0\ud654pt2","screen_name":"anaseyoongi","location":"And now...now we wait.","url":null,"description":"\u2606*\u0cc3\u00b0. de acordo com a isadora eu sou um gatinho raivoso (\u2500\u203f\u203f\u2500) \u2606*\u0cc3\u00b0.","protected":false,"verified":false,"followers_count":372,"friends_count":491,"listed_count":0,"favourites_count":1601,"statuses_count":22139,"created_at":"Sat Jun 25 19:13:51 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/619650427588624385\/2qe0iJkc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/619650427588624385\/2qe0iJkc.jpg","profile_background_tile":true,"profile_link_color":"882222","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661669311422062592\/yyWttpG7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661669311422062592\/yyWttpG7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323970161\/1446588864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663630423155544064,"quoted_status_id_str":"663630423155544064","quoted_status":{"created_at":"Mon Nov 09 08:13:17 +0000 2015","id":663630423155544064,"id_str":"663630423155544064","text":"\uaca8\uc6b8\uc7a0 \uc790\ub294 \ub9c9\ub0b4\ud83c\udf12\ud83c\udf12\ud83c\udf12 https:\/\/t.co\/gU4RHCxtyh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314485566,"id_str":"3314485566","name":"\uc544\uc2a4\ud2b8\ub85c","screen_name":"offclASTRO","location":null,"url":"http:\/\/cafe.daum.net\/fantagio-boys","description":"Wanna be your star! \uc548\ub155\ud558\uc138\uc694 \uc544\uc2a4\ud2b8\ub85c\uc785\ub2c8\ub2e4~","protected":false,"verified":false,"followers_count":19313,"friends_count":10,"listed_count":100,"favourites_count":0,"statuses_count":159,"created_at":"Thu Aug 13 16:52:12 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DE332C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634414012948545536\/u_P4jhrj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634414012948545536\/u_P4jhrj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314485566\/1440091051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663630395309584384,"id_str":"663630395309584384","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663630395309584384\/pu\/img\/9LjwqioOain1c9de.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663630395309584384\/pu\/img\/9LjwqioOain1c9de.jpg","url":"https:\/\/t.co\/gU4RHCxtyh","display_url":"pic.twitter.com\/gU4RHCxtyh","expanded_url":"http:\/\/twitter.com\/offclASTRO\/status\/663630423155544064\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":952,"h":1278,"resize":"fit"},"small":{"w":340,"h":456,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663630395309584384,"id_str":"663630395309584384","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663630395309584384\/pu\/img\/9LjwqioOain1c9de.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663630395309584384\/pu\/img\/9LjwqioOain1c9de.jpg","url":"https:\/\/t.co\/gU4RHCxtyh","display_url":"pic.twitter.com\/gU4RHCxtyh","expanded_url":"http:\/\/twitter.com\/offclASTRO\/status\/663630423155544064\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":805,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":952,"h":1278,"resize":"fit"},"small":{"w":340,"h":456,"resize":"fit"}},"video_info":{"aspect_ratio":[476,639],"duration_millis":6060,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663630395309584384\/pu\/pl\/aIrYvE_PMKBbSJ10.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663630395309584384\/pu\/vid\/476x640\/luew_TE6JJsNgDh-.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663630395309584384\/pu\/pl\/aIrYvE_PMKBbSJ10.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663630395309584384\/pu\/vid\/238x320\/9wT4fuFIj7FDFv3x.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663630395309584384\/pu\/vid\/476x640\/luew_TE6JJsNgDh-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eG4PGQAfQO","expanded_url":"https:\/\/twitter.com\/offclASTRO\/status\/663630423155544064","display_url":"twitter.com\/offclASTRO\/sta\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675680256,"id_str":"663727640675680256","text":"@D_coremountains \u30de\u30b8\u3059\u304b\u2026\u9ad8\u97f3\u306f\u77e5\u3089\u306a\u3044\u3059\u3051\u3069\u4f4e\u97f3\u306f\u5438\u3044\u306a\u6c17\u304c\u3059\u308b\u3093\u3067\u3059\u304c\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727506067865600,"in_reply_to_status_id_str":"663727506067865600","in_reply_to_user_id":3222836929,"in_reply_to_user_id_str":"3222836929","in_reply_to_screen_name":"D_coremountains","user":{"id":2598053233,"id_str":"2598053233","name":"\u75e9\u305b\u308b@12\/6 Deviloof","screen_name":"Suizou_Oisii","location":"Nyampath University","url":null,"description":"\u8cb7\u3063\u305f5\u5f26\u30d9\u30fc\u30b9\u304c\u30aa\u30d6\u30b8\u30a7\u3068\u5316\u3057\u3064\u3064\u3042\u308b\u96d1\u9b5a\u3048\u304f\u3059\u3068\u308a\u30fc\u3080\u307f\u3085\u30fc\u3058\u3063\u304f","protected":false,"verified":false,"followers_count":840,"friends_count":809,"listed_count":34,"favourites_count":9713,"statuses_count":13260,"created_at":"Tue Jul 01 13:53:31 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656653309948768257\/ZG-9JYEN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656653309948768257\/ZG-9JYEN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2598053233\/1446658312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"D_coremountains","name":"\u4f1a\u9577","id":3222836929,"id_str":"3222836929","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713408512,"id_str":"663727640713408512","text":"RT @Junaid_Mattu: Will @jkpdp and the Muftis get down from their high horses of power and listen to their Member of Parliament??? https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296431597,"id_str":"296431597","name":"\u0637\u0641\u064a\u0644\u0660","screen_name":"mir_tufail","location":"Baramulla,kashmir","url":null,"description":"sensitive| emotional| fun_loving| responsible| romantic| dreamer| believer \u2665\u0627\u064e\u0644\u0644\u0651\u064e\u0647\u064f \u0627\u064e\u0643\u0652\u0628\u064e\u0631 \u2665 |\n\n @jknc_ \n#sjs #UniversityOfKashmir","protected":false,"verified":false,"followers_count":196,"friends_count":144,"listed_count":1,"favourites_count":147,"statuses_count":4071,"created_at":"Tue May 10 19:05:02 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645277659220447232\/cylTBOxg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645277659220447232\/cylTBOxg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296431597\/1441721037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:53 +0000 2015","id":663725953999224832,"id_str":"663725953999224832","text":"Will @jkpdp and the Muftis get down from their high horses of power and listen to their Member of Parliament??? https:\/\/t.co\/xs4XpVwqxx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2241167263,"id_str":"2241167263","name":"Junaid Azim Mattu","screen_name":"Junaid_Mattu","location":"Srinagar, Jammu & Kashmir ","url":"https:\/\/www.facebook.com\/junaidkashmir?ref=hl","description":"Party Spokesperson, J&K National Conference @JKNC_. Former Banker, Financial Analyst. Went to Bishop Cotton School and Michigan State University, USA. Views own","protected":false,"verified":false,"followers_count":5716,"friends_count":250,"listed_count":18,"favourites_count":225,"statuses_count":3718,"created_at":"Wed Dec 11 18:10:00 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661446964857434112\/6HnKTFd1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661446964857434112\/6HnKTFd1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2241167263\/1446536519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663548824766418946,"quoted_status_id_str":"663548824766418946","quoted_status":{"created_at":"Mon Nov 09 02:49:02 +0000 2015","id":663548824766418946,"id_str":"663548824766418946","text":"Knock knock PDP. Still time to wake up. Door closed on communal forces. Window of opportunity opened for secular forces. Knock knock PDP.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358626273,"id_str":"358626273","name":"Tariq Hameed Karra","screen_name":"tariqkarra","location":"Srinagar - Delhi","url":null,"description":"Politician - (MP)","protected":false,"verified":false,"followers_count":129,"friends_count":11,"listed_count":1,"favourites_count":2,"statuses_count":26,"created_at":"Sat Aug 20 06:44:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000309134696\/e43a2081180f8c5d0ef5f40aa3b5e40a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000309134696\/e43a2081180f8c5d0ef5f40aa3b5e40a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358626273\/1376681188","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xs4XpVwqxx","expanded_url":"https:\/\/twitter.com\/tariqkarra\/status\/663548824766418946","display_url":"twitter.com\/tariqkarra\/sta\u2026","indices":[112,135]}],"user_mentions":[{"screen_name":"jkpdp","name":"J&K PDP","id":104835947,"id_str":"104835947","indices":[5,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xs4XpVwqxx","expanded_url":"https:\/\/twitter.com\/tariqkarra\/status\/663548824766418946","display_url":"twitter.com\/tariqkarra\/sta\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Junaid_Mattu","name":"Junaid Azim Mattu","id":2241167263,"id_str":"2241167263","indices":[3,16]},{"screen_name":"jkpdp","name":"J&K PDP","id":104835947,"id_str":"104835947","indices":[23,29]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709345281,"id_str":"663727640709345281","text":"Friendship lasts longer than love.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2567357395,"id_str":"2567357395","name":"\u028d\u04bd\u0251\u0572\u0572\u04bd \u2764","screen_name":"PutLoveDemi07","location":"55\u043d (5,530.9\u0138\u043c) \u0493ro\u043c \u043der (S10)","url":"http:\/\/instagram.com\/meannegelua10","description":"yo\u03c5 w\u03b9ll alway\u0455 \u0432e \u043cy 11:11 w\u03b9\u0455\u043d\n\n @stephanieavonds \u2764 \u03b9\u0138 \u043do\u03c5 van jo\u03c5 \u0432e\u0455\u0442\u03b9e\n @ddlovato @gorachelleann \u0442\u043dan\u0138 yo\u03c5.","protected":false,"verified":false,"followers_count":23067,"friends_count":19998,"listed_count":27,"favourites_count":21566,"statuses_count":46895,"created_at":"Sat Jun 14 15:54:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663396752209403904\/bWdbWj5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663396752209403904\/bWdbWj5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2567357395\/1447001421","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713424896,"id_str":"663727640713424896","text":"Sobrang sweet pero subra magalitt.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3719421313,"id_str":"3719421313","name":"Jennifersagun","screen_name":"cabfitanjane02","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":31,"listed_count":0,"favourites_count":14,"statuses_count":8,"created_at":"Mon Sep 28 22:44:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663355661334372352\/GdT0WEnW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663355661334372352\/GdT0WEnW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3719421313\/1446991290","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705155073,"id_str":"663727640705155073","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/QGSfZfFn5y","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267691694,"id_str":"3267691694","name":"\u0645\u0646\u064a\u0631 \u0645\u062d\u0645\u062f","screen_name":"j8BySpBG7rfSXLF","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":331,"created_at":"Sat Jul 04 03:38:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QGSfZfFn5y","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705036288,"id_str":"663727640705036288","text":"\u4eca\u65e5\u3082\u4e00\u65e5\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\u3002\u304a\u4f11\u307f\u306a\u3055\u3044\u2026\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375989152,"id_str":"375989152","name":"kinamannatsuiroha","screen_name":"kinamannatsuiro","location":"\u6771\u4eac\u90fd\u677f\u6a4b\u533a(\u6700\u5bc4\u99c5\u306fI27\u53c8\u306fTJ10\u3001Y02\u3001F02)","url":null,"description":"\u72ac\u3068\u732b\u3001\u9244\u9053\u304c\u597d\u304d\u3067\u3059\u3002\u56fd\u9244\u578b\u8eca\u4e21\u3084\u79c1\u9244\u3067\u306f\u662d\u548c\u6642\u4ee3\u306e\u8eca\u4e21\u304c\u304a\u6c17\u306b\u5165\u308a\u3067\u3059\u3002SL\u3084\u6a5f\u95a2\u8eca\u3001\u5ba2\u8eca\u5217\u8eca\u3084\u8ca8\u7269\u5217\u8eca\u3082\u597d\u304d\u3067\u3059\u3002\u6614\u306f\u5168\u56fd\u5404\u5730\u3092\u4e57\u308a\u9244\u3057\u3066\u3044\u307e\u3057\u305f\u304c\u6700\u8fd1\u306f\u8fd1\u5834\u306e\u64ae\u308a\u9244\u304c\u4e2d\u5fc3\u3067\u3059\u3002\u6771\u6b66\u6771\u4e0a\u7dda\u3084\u6b66\u8535\u91ce\u7dda\u3001\u6771\u5317\u30fb\u5c71\u624b\u8ca8\u7269\u7dda\u3092\u4e2d\u5fc3\u306b\u884c\u52d5\u3057\u3066\u3044\u307e\u3059\u3002\u662d\u548c\u751f\u307e\u308c\u306e\u9244\u9053\u54e1\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":19019,"friends_count":19020,"listed_count":87,"favourites_count":2,"statuses_count":208173,"created_at":"Mon Sep 19 03:12:55 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478763582989955072\/M4EmN3cq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478763582989955072\/M4EmN3cq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375989152\/1446770813","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"cd477ff3b533582b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cd477ff3b533582b.json","place_type":"city","name":"\u548c\u5149\u5e02","full_name":"\u57fc\u7389\u770c \u548c\u5149\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.602108,35.763595],[139.602108,35.809666],[139.649239,35.809666],[139.649239,35.763595]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700841984,"id_str":"663727640700841984","text":"RT @aminsalmee: Exactly! also.... Real men dont let her girl be best friend with another man, be her best friend. https:\/\/t.co\/9Jz9VL61Xz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383589583,"id_str":"383589583","name":"syazana","screen_name":"NurulSyazana30","location":null,"url":"http:\/\/nurulsyazana30.vsco.co","description":null,"protected":false,"verified":false,"followers_count":991,"friends_count":1961,"listed_count":1,"favourites_count":1178,"statuses_count":35862,"created_at":"Sun Oct 02 04:42:11 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0C0D0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456020429266616320\/mVH8bzXZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456020429266616320\/mVH8bzXZ.png","profile_background_tile":true,"profile_link_color":"090A0A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650924958311301120\/luHMffTM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650924958311301120\/luHMffTM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383589583\/1440591871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 11:25:47 +0000 2015","id":662591705716133888,"id_str":"662591705716133888","text":"Exactly! also.... Real men dont let her girl be best friend with another man, be her best friend. https:\/\/t.co\/9Jz9VL61Xz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263569122,"id_str":"263569122","name":"sufi amin salmee","screen_name":"aminsalmee","location":"Malaysia","url":"https:\/\/soundcloud.com\/amin-salmee","description":"'We Belong to Love' is OUT NOW!!\nhttp:\/\/bit.ly\/AminBeatport","protected":false,"verified":false,"followers_count":951,"friends_count":754,"listed_count":8,"favourites_count":6662,"statuses_count":68430,"created_at":"Thu Mar 10 08:54:41 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539146230505304064\/SRw08lVN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539146230505304064\/SRw08lVN.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646170516554821632\/L-wN0_u3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646170516554821632\/L-wN0_u3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263569122\/1438631739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1057,"favorite_count":451,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aminsalmee","name":"sufi amin salmee","id":263569122,"id_str":"263569122","indices":[3,14]}],"symbols":[],"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}},"source_status_id":662591705716133888,"source_status_id_str":"662591705716133888","source_user_id":263569122,"source_user_id_str":"263569122"}]},"extended_entities":{"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}},"source_status_id":662591705716133888,"source_status_id_str":"662591705716133888","source_user_id":263569122,"source_user_id_str":"263569122"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709365760,"id_str":"663727640709365760","text":"RT @COP21: [#Sondage] Retrouvez les r\u00e9sultats de l'\u00e9tude du @pewresearch sur le d\u00e9r\u00e8glement climatique https:\/\/t.co\/C2NG8MfBbL https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250679982,"id_str":"250679982","name":"The Planetworkshops","screen_name":"Planetworkshops","location":"Paris","url":"http:\/\/www.globalconference2015.org","description":"Since 2006, The Planetworkshops address the critical issues of our time & map out sustainable development solutions #GC10th #Chantilly\n#LAB #ARA","protected":false,"verified":false,"followers_count":1702,"friends_count":2003,"listed_count":94,"favourites_count":179,"statuses_count":5878,"created_at":"Fri Feb 11 15:47:34 +0000 2011","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"105C37","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/886462251\/c03c0577856fa4d68319d03dfe372d4f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/886462251\/c03c0577856fa4d68319d03dfe372d4f.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1392321490\/logo_twitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1392321490\/logo_twitter_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250679982\/1444406049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:06 +0000 2015","id":663721478832132096,"id_str":"663721478832132096","text":"[#Sondage] Retrouvez les r\u00e9sultats de l'\u00e9tude du @pewresearch sur le d\u00e9r\u00e8glement climatique https:\/\/t.co\/C2NG8MfBbL https:\/\/t.co\/MHc3JOg0Vg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2617471956,"id_str":"2617471956","name":"COP21 - Paris 2015","screen_name":"COP21","location":"Paris-Le Bourget","url":"http:\/\/www.cop21.gouv.fr","description":"UN Climate Change Conference 2015 in Paris. Conf\u00e9rence des Nations unies sur les changements climatiques \u00e0 Paris en 2015. Compte officiel.","protected":false,"verified":true,"followers_count":46668,"friends_count":968,"listed_count":921,"favourites_count":138,"statuses_count":2424,"created_at":"Fri Jul 11 14:45:36 +0000 2014","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654353650500939777\/a7SM9zub_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654353650500939777\/a7SM9zub_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2617471956\/1446802554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"09f6a7707f18e0b1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/09f6a7707f18e0b1.json","place_type":"city","name":"Paris","full_name":"Paris, Ile-de-France","country_code":"FR","country":"France","bounding_box":{"type":"Polygon","coordinates":[[[2.224101,48.815521],[2.224101,48.902146],[2.469905,48.902146],[2.469905,48.815521]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[{"text":"Sondage","indices":[1,9]}],"urls":[{"url":"https:\/\/t.co\/C2NG8MfBbL","expanded_url":"http:\/\/bit.ly\/1laIoAo","display_url":"bit.ly\/1laIoAo","indices":[92,115]}],"user_mentions":[{"screen_name":"pewresearch","name":"Pew Research Center","id":22642788,"id_str":"22642788","indices":[49,61]}],"symbols":[],"media":[{"id":663721477171240961,"id_str":"663721477171240961","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","url":"https:\/\/t.co\/MHc3JOg0Vg","display_url":"pic.twitter.com\/MHc3JOg0Vg","expanded_url":"http:\/\/twitter.com\/COP21\/status\/663721478832132096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721477171240961,"id_str":"663721477171240961","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","url":"https:\/\/t.co\/MHc3JOg0Vg","display_url":"pic.twitter.com\/MHc3JOg0Vg","expanded_url":"http:\/\/twitter.com\/COP21\/status\/663721478832132096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sondage","indices":[12,20]}],"urls":[{"url":"https:\/\/t.co\/C2NG8MfBbL","expanded_url":"http:\/\/bit.ly\/1laIoAo","display_url":"bit.ly\/1laIoAo","indices":[103,126]}],"user_mentions":[{"screen_name":"COP21","name":"COP21 - Paris 2015","id":2617471956,"id_str":"2617471956","indices":[3,9]},{"screen_name":"pewresearch","name":"Pew Research Center","id":22642788,"id_str":"22642788","indices":[60,72]}],"symbols":[],"media":[{"id":663721477171240961,"id_str":"663721477171240961","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","url":"https:\/\/t.co\/MHc3JOg0Vg","display_url":"pic.twitter.com\/MHc3JOg0Vg","expanded_url":"http:\/\/twitter.com\/COP21\/status\/663721478832132096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663721478832132096,"source_status_id_str":"663721478832132096","source_user_id":2617471956,"source_user_id_str":"2617471956"}]},"extended_entities":{"media":[{"id":663721477171240961,"id_str":"663721477171240961","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDKryW4AEVyRZ.jpg","url":"https:\/\/t.co\/MHc3JOg0Vg","display_url":"pic.twitter.com\/MHc3JOg0Vg","expanded_url":"http:\/\/twitter.com\/COP21\/status\/663721478832132096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":360,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663721478832132096,"source_status_id_str":"663721478832132096","source_user_id":2617471956,"source_user_id_str":"2617471956"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688201728,"id_str":"663727640688201728","text":"RT @marvy2525: \u4ffa\u304c\u5bdd\u3066\u308b\u9699\u306b\u5f1f\u304c\u4ffa\u306e\u9854\u3067\u30b5\u30eb\u30d2\u30b2\u3055\u3093\u3057\u3066\u3084\u304c\u3063\u305fwww\n#\u30b5\u30eb\u30d2\u30b2\u3055\u3093 https:\/\/t.co\/0JfWy6RPnZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1043607175,"id_str":"1043607175","name":"\u3046\u3044\u5927\u4f50\u271e\u5b9f\u6cc1@11\/25\u751f\u307e\u308c\u305f\u307d\u3044","screen_name":"uit6_","location":"\u5b9f\u6cc1\u30c1\u30fc\u30e0\u306eHP(\u6d77\u661f\u4f5c) nana\u6c11","url":"http:\/\/teamgameover.jimdo.com\/","description":"A B \u578b \u5909 \u614b \u4f50 \u3067 \u3059 \u3002 \u5f7c \u5973 @sabakan0323 .\u975e \u516c \u5f0f LINE http:\/\/line.me\/ti\/p\/@oze9976q n a n a http:\/\/hibari.nana-music.com\/wp\/00c6a6f6\/ #\u3044\u304a\u3046\u3044","protected":false,"verified":false,"followers_count":2851,"friends_count":2693,"listed_count":84,"favourites_count":27942,"statuses_count":57047,"created_at":"Sat Dec 29 02:00:10 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661814204714774528\/3R7MgawV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661814204714774528\/3R7MgawV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1043607175\/1446959857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:58 +0000 2015","id":663724967633141760,"id_str":"663724967633141760","text":"\u4ffa\u304c\u5bdd\u3066\u308b\u9699\u306b\u5f1f\u304c\u4ffa\u306e\u9854\u3067\u30b5\u30eb\u30d2\u30b2\u3055\u3093\u3057\u3066\u3084\u304c\u3063\u305fwww\n#\u30b5\u30eb\u30d2\u30b2\u3055\u3093 https:\/\/t.co\/0JfWy6RPnZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359655522,"id_str":"2359655522","name":"\u307e\u3041\u3073\u30fc","screen_name":"marvy2525","location":null,"url":"http:\/\/com.nicovideo.jp\/community\/co2264413","description":"\u30cb\u30b3\u751f\u4e3b2\u5e74\u751f! \u304a\u9152\u4f5c\u308b\u4eba\/\u6211\u9022\u4eba\/\u3067\u3093\u3071\u7d44.inc\u7bb1\u63a8\u3057\/\u6df1\u6d77\u8a89\u63a8\u3057\/fromNiiGATA 2.25.2014\u59cb\u52d5\u3002 \u30a2\u30a4\u30b3\u30f3\u2192\u308a\u305f@rita_maro_39 nana\u2192http:\/\/hibari.nana-music.com\/w\/profile\/458033\/ \u5225\u2192@marvy25252525","protected":false,"verified":false,"followers_count":589,"friends_count":913,"listed_count":16,"favourites_count":7837,"statuses_count":22178,"created_at":"Mon Feb 24 15:20:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661916393827241984\/MW599W2L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661916393827241984\/MW599W2L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359655522\/1444591187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"\u30b5\u30eb\u30d2\u30b2\u3055\u3093","indices":[29,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724961262014464,"id_str":"663724961262014464","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","url":"https:\/\/t.co\/0JfWy6RPnZ","display_url":"pic.twitter.com\/0JfWy6RPnZ","expanded_url":"http:\/\/twitter.com\/marvy2525\/status\/663724967633141760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":518,"resize":"fit"},"large":{"w":672,"h":1024,"resize":"fit"},"medium":{"w":600,"h":914,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663724961262014464,"id_str":"663724961262014464","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","url":"https:\/\/t.co\/0JfWy6RPnZ","display_url":"pic.twitter.com\/0JfWy6RPnZ","expanded_url":"http:\/\/twitter.com\/marvy2525\/status\/663724967633141760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":518,"resize":"fit"},"large":{"w":672,"h":1024,"resize":"fit"},"medium":{"w":600,"h":914,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b5\u30eb\u30d2\u30b2\u3055\u3093","indices":[44,51]}],"urls":[],"user_mentions":[{"screen_name":"marvy2525","name":"\u307e\u3041\u3073\u30fc","id":2359655522,"id_str":"2359655522","indices":[3,13]}],"symbols":[],"media":[{"id":663724961262014464,"id_str":"663724961262014464","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","url":"https:\/\/t.co\/0JfWy6RPnZ","display_url":"pic.twitter.com\/0JfWy6RPnZ","expanded_url":"http:\/\/twitter.com\/marvy2525\/status\/663724967633141760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":518,"resize":"fit"},"large":{"w":672,"h":1024,"resize":"fit"},"medium":{"w":600,"h":914,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724967633141760,"source_status_id_str":"663724967633141760","source_user_id":2359655522,"source_user_id_str":"2359655522"}]},"extended_entities":{"media":[{"id":663724961262014464,"id_str":"663724961262014464","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVfCVEAAkisl.jpg","url":"https:\/\/t.co\/0JfWy6RPnZ","display_url":"pic.twitter.com\/0JfWy6RPnZ","expanded_url":"http:\/\/twitter.com\/marvy2525\/status\/663724967633141760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":518,"resize":"fit"},"large":{"w":672,"h":1024,"resize":"fit"},"medium":{"w":600,"h":914,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724967633141760,"source_status_id_str":"663724967633141760","source_user_id":2359655522,"source_user_id_str":"2359655522"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640696623104,"id_str":"663727640696623104","text":"\uc544 \ud1a0\ud560 \uac70 \uac19\uc2b5\ub2c8\ub2e4 \uc0b4\ub824\uc8fc\uc138\uc694","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195276962,"id_str":"3195276962","name":"\ud0a4\uc640\ub178","screen_name":"Ki_wa_no","location":null,"url":"https:\/\/www.evernote.com\/shard\/s466\/sh\/7c9b57b4-5f54-4c5f-b5f0-069b3f3cb063\/f343047517dc4885abc26005","description":"\uc2a4\uce58\uba74 \uc778\uc5f0, \uc2a4\uba70\ub4e4\uba74 \uc0ac\ub791. \uc774\ub77c\uace0 \ub204\uac00 \ub9d0\ud588\uc5c8\ub294\ub370.","protected":false,"verified":false,"followers_count":391,"friends_count":480,"listed_count":0,"favourites_count":1176,"statuses_count":8155,"created_at":"Thu May 14 12:54:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663502330168393728\/ns4NpFh0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663502330168393728\/ns4NpFh0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195276962\/1443518146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079975662"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692420608,"id_str":"663727640692420608","text":"RT @larc30sec: http:\/\/t.co\/ig6q2W5RLO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3283180778,"id_str":"3283180778","name":"\u3072\u304b\u308a\u3093\u262aABC\u57ce\u30db","screen_name":"IN929_","location":null,"url":null,"description":"\u2661 http:\/\/twpf.jp\/IN929_ \u2661\u3060 \u3044 \u3059 \u304d @n_sixx666 .","protected":false,"verified":false,"followers_count":300,"friends_count":525,"listed_count":24,"favourites_count":24541,"statuses_count":32526,"created_at":"Sat Jul 18 08:36:35 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D297DD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660722603909234688\/gYBr_LIx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660722603909234688\/gYBr_LIx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3283180778\/1446891630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 01:32:12 +0000 2015","id":653382627857035264,"id_str":"653382627857035264","text":"http:\/\/t.co\/ig6q2W5RLO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":653380571876360192,"in_reply_to_status_id_str":"653380571876360192","in_reply_to_user_id":3279462481,"in_reply_to_user_id_str":"3279462481","in_reply_to_screen_name":"larc30sec","user":{"id":3279462481,"id_str":"3279462481","name":"\u30e9\u30eb\u30af30\u79d2\u52d5\u753b","screen_name":"larc30sec","location":null,"url":null,"description":"L\u2019Arc~en~Ciel\u306e\u52d5\u753b\u3092\u8f09\u305b\u3066\u3044\u304d\u307e\u3059\uff01\u30e1\u30f3\u30d0\u30fc\u306e\u30bd\u30ed\u6d3b\u52d5\u306a\u3069\u306e\u52d5\u753b\u3082\u8f09\u305b\u3066\u3044\u304d\u307e\u3059\u3002\u30ea\u30af\u30a8\u30b9\u30c8\u306fDM\u3067\u3082\u30ea\u30d7\u30e9\u30a4\u3067\u3082\uff011\u65e5\u306b3\u672c\u306e\u30da\u30fc\u30b9\u3067\u4e0a\u3052\u3066\u884c\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002\u904e\u53bb\u306e\u52d5\u753b\u306f\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u304a\u6c17\u306b\u5165\u308a\u304b\u3089\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002The past animation from a favorite.","protected":false,"verified":false,"followers_count":4460,"friends_count":298,"listed_count":18,"favourites_count":132,"statuses_count":179,"created_at":"Tue Jul 14 09:25:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623049950377570304\/PW4wXVt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623049950377570304\/PW4wXVt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279462481\/1437381658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":145,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653382611222441984,"id_str":"653382611222441984","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","url":"http:\/\/t.co\/ig6q2W5RLO","display_url":"pic.twitter.com\/ig6q2W5RLO","expanded_url":"http:\/\/twitter.com\/larc30sec\/status\/653382627857035264\/video\/1","type":"photo","sizes":{"large":{"w":352,"h":272,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":352,"h":272,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":653382611222441984,"id_str":"653382611222441984","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","url":"http:\/\/t.co\/ig6q2W5RLO","display_url":"pic.twitter.com\/ig6q2W5RLO","expanded_url":"http:\/\/twitter.com\/larc30sec\/status\/653382627857035264\/video\/1","type":"video","sizes":{"large":{"w":352,"h":272,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":352,"h":272,"resize":"fit"}},"video_info":{"aspect_ratio":[22,17],"duration_millis":3570,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/pl\/pMNH1z3sUNrHE4Oj.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/pl\/pMNH1z3sUNrHE4Oj.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/vid\/232x180\/TkYE7IXVWz78-Uv6.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/vid\/232x180\/TkYE7IXVWz78-Uv6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"larc30sec","name":"\u30e9\u30eb\u30af30\u79d2\u52d5\u753b","id":3279462481,"id_str":"3279462481","indices":[3,13]}],"symbols":[],"media":[{"id":653382611222441984,"id_str":"653382611222441984","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","url":"http:\/\/t.co\/ig6q2W5RLO","display_url":"pic.twitter.com\/ig6q2W5RLO","expanded_url":"http:\/\/twitter.com\/larc30sec\/status\/653382627857035264\/video\/1","type":"photo","sizes":{"large":{"w":352,"h":272,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":352,"h":272,"resize":"fit"}},"source_status_id":653382627857035264,"source_status_id_str":"653382627857035264","source_user_id":3279462481,"source_user_id_str":"3279462481"}]},"extended_entities":{"media":[{"id":653382611222441984,"id_str":"653382611222441984","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/653382611222441984\/pu\/img\/CqZCfX5_NrloulAc.jpg","url":"http:\/\/t.co\/ig6q2W5RLO","display_url":"pic.twitter.com\/ig6q2W5RLO","expanded_url":"http:\/\/twitter.com\/larc30sec\/status\/653382627857035264\/video\/1","type":"video","sizes":{"large":{"w":352,"h":272,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":352,"h":272,"resize":"fit"}},"source_status_id":653382627857035264,"source_status_id_str":"653382627857035264","source_user_id":3279462481,"source_user_id_str":"3279462481","video_info":{"aspect_ratio":[22,17],"duration_millis":3570,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/pl\/pMNH1z3sUNrHE4Oj.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/pl\/pMNH1z3sUNrHE4Oj.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/vid\/232x180\/TkYE7IXVWz78-Uv6.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/653382611222441984\/pu\/vid\/232x180\/TkYE7IXVWz78-Uv6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709308416,"id_str":"663727640709308416","text":"RT @Gully_c: Jah Wayne - Boom Boom Boom (OMV) https:\/\/t.co\/uFl0D9aqxT @jahwaynerecordz #uk #tokyo #japan #usa #Musicfam #Dancehall #england\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195544872,"id_str":"3195544872","name":"sky sheldon","screen_name":"skyentsheldon","location":"Florida, USA","url":"http:\/\/www.sky1876ent.com","description":"i love my babe new to twitter but i will get with the hang of it soon please follow the #one online network @sky1876ent","protected":false,"verified":false,"followers_count":276,"friends_count":664,"listed_count":23,"favourites_count":22,"statuses_count":10439,"created_at":"Thu May 14 18:11:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599030658107715584\/887mTGJI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599030658107715584\/887mTGJI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195544872\/1431627463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:21:47 +0000 2015","id":663602365115838464,"id_str":"663602365115838464","text":"Jah Wayne - Boom Boom Boom (OMV) https:\/\/t.co\/uFl0D9aqxT @jahwaynerecordz #uk #tokyo #japan #usa #Musicfam #Dancehall #england @Sky1876ent'","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456996621,"id_str":"456996621","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","screen_name":"Gully_c","location":"South Africa","url":"https:\/\/m.facebook.com\/selektorblackpeppaskull?refid=5","description":"#Dancehall #Riddims #Videos #Reggae #News @Sky1876ent #Hotnews #HipHop #Marketing #Retweets #Soca #subscribe http:\/\/t.co\/bAQLLScrF9 mogamatpetersen39@gmail.com","protected":false,"verified":false,"followers_count":2024,"friends_count":137,"listed_count":60,"favourites_count":65,"statuses_count":49035,"created_at":"Fri Jan 06 22:26:00 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456996621\/1419524787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":1,"entities":{"hashtags":[{"text":"uk","indices":[74,77]},{"text":"tokyo","indices":[78,84]},{"text":"japan","indices":[85,91]},{"text":"usa","indices":[92,96]},{"text":"Musicfam","indices":[97,106]},{"text":"Dancehall","indices":[107,117]},{"text":"england","indices":[118,126]}],"urls":[{"url":"https:\/\/t.co\/uFl0D9aqxT","expanded_url":"http:\/\/youtu.be\/eXri1KZbDBQ?a","display_url":"youtu.be\/eXri1KZbDBQ?a","indices":[33,56]}],"user_mentions":[{"screen_name":"jahwaynerecordz","name":"Jah Wayne","id":70691695,"id_str":"70691695","indices":[57,73]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[127,138]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uk","indices":[87,90]},{"text":"tokyo","indices":[91,97]},{"text":"japan","indices":[98,104]},{"text":"usa","indices":[105,109]},{"text":"Musicfam","indices":[110,119]},{"text":"Dancehall","indices":[120,130]},{"text":"england","indices":[131,139]}],"urls":[{"url":"https:\/\/t.co\/uFl0D9aqxT","expanded_url":"http:\/\/youtu.be\/eXri1KZbDBQ?a","display_url":"youtu.be\/eXri1KZbDBQ?a","indices":[46,69]}],"user_mentions":[{"screen_name":"Gully_c","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","id":456996621,"id_str":"456996621","indices":[3,11]},{"screen_name":"jahwaynerecordz","name":"Jah Wayne","id":70691695,"id_str":"70691695","indices":[70,86]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688357377,"id_str":"663727640688357377","text":"Get Weather Updates from The Weather Channel. 09:39:35","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2449649514,"id_str":"2449649514","name":"03303trdb","screen_name":"03303trdb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":67595,"created_at":"Thu Apr 17 12:30:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640679878656,"id_str":"663727640679878656","text":"\u30d8\u30c3\u30c9\u30d5\u30a9\u30fc\u30f3\u60a9\u307f\u4e2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":960700867,"id_str":"960700867","name":"mie.","screen_name":"scaportolono","location":"The Bottom of Bitter Valley","url":"http:\/\/xxscaportolonoxx.hatenablog.com\/","description":"\u3086\u308b\u3075\u308f\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9\u898b\u7fd2\u3044","protected":false,"verified":false,"followers_count":196,"friends_count":396,"listed_count":14,"favourites_count":4258,"statuses_count":11574,"created_at":"Tue Nov 20 15:47:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"9BBD2A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583103302352535552\/qx2cOLhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583103302352535552\/qx2cOLhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960700867\/1442075122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975658"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688197632,"id_str":"663727640688197632","text":"https:\/\/t.co\/R1ifqx3gZv","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":733796618,"id_str":"733796618","name":"Armando Josue Reyes ","screen_name":"ArmandoJosueRey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":169,"created_at":"Fri Aug 03 00:12:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/733796618\/1359248091","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R1ifqx3gZv","expanded_url":"http:\/\/fb.me\/NeOmBySk","display_url":"fb.me\/NeOmBySk","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705019904,"id_str":"663727640705019904","text":"\u301d\u3080\uff01\u4f55\u304c\u3042\u3063\u305f\u306e\u3060\uff1f\u805e\u304b\u305b\u3066\u304a\u304f\u308c\uff01\u301f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":424001098,"id_str":"424001098","name":"\u85e4\u679d\u6885\u5b89","screen_name":"baian_bot","location":"\u6c5f\u6238\u30fb\u54c1\u5ddd\u53f0\u753a","url":"http:\/\/twilog.org\/baian_bot","description":"*\u937c\u7078\u9662\u3092\u55b6\u3080\u305d\u306e\u8155\u306f\u5929\u4e0b\u4e00\u54c1\u3067\u4eba\u683c\u8005\u3067\u3042\u308a\u3001\u5eb6\u6c11\u304b\u3089\u306e\u4fe1\u983c\u3082\u539a\u3044\u5b58\u5728\u3002\u3057\u304b\u3057\u6885\u5b89\u306f\u88cf\u306e\u7a3c\u696d\u3092\u6301\u3063\u3066\u3044\u305f\u2026\u3002\u9999\u5177\u5e2b\u306e\u5143\u7de0\u304b\u3089\u91d1\u3067\u6bba\u3057\u3092\u8acb\u3051\u308b\u51c4\u8155\u306e\u301d\u4ed5\u639b\u4eba\u301f\u3060\u3063\u305f\u3002\u667a\u8b00\u3068\u91dd\u3067\u60aa\u3092\u846c\u308b\u4e00\u6d41\u306e\u4ed5\u639b\u3051[bot]\u3092\u3054\u89a7\u3058\u308d!! *\u4ed5\u639b\u3051\u306e\u4f9d\u983c\u30d5\u30a9\u30fc\u30e0\u306b\u306freply\u3057\u307e\u3059\u2026\u3002\u3000\u3000\u3000(#\uffe3 \uffe3)o-( *\uff9f\uff9b\uff9f)","protected":false,"verified":false,"followers_count":942,"friends_count":848,"listed_count":19,"favourites_count":10,"statuses_count":30559,"created_at":"Tue Nov 29 06:05:14 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/380131294\/cp3s_baian_back1.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/380131294\/cp3s_baian_back1.JPG","profile_background_tile":false,"profile_link_color":"8A2BE2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"E0C5DF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1675127442\/origin13230867484150_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1675127442\/origin13230867484150_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424001098\/1402205945","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709230592,"id_str":"663727640709230592","text":"@hannoilulu shot!\ud83c\udf7b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727218267328513,"in_reply_to_status_id_str":"663727218267328513","in_reply_to_user_id":329580620,"in_reply_to_user_id_str":"329580620","in_reply_to_screen_name":"hannoilulu","user":{"id":216312567,"id_str":"216312567","name":"Brylle Delos Santos","screen_name":"brylleds","location":"Davao City, Davao Region","url":"http:\/\/instagram.com\/brylleds","description":null,"protected":false,"verified":false,"followers_count":424,"friends_count":359,"listed_count":0,"favourites_count":412,"statuses_count":1664,"created_at":"Tue Nov 16 10:51:26 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/712127891\/584fc729c12cc043062c557a91759238.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/712127891\/584fc729c12cc043062c557a91759238.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658820783330848768\/KKb74g49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658820783330848768\/KKb74g49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216312567\/1431504671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01b763b150004405","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01b763b150004405.json","place_type":"city","name":"Davao City","full_name":"Davao City, Davao Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[125.214820,6.959006],[125.214820,7.676159],[125.671703,7.676159],[125.671703,6.959006]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hannoilulu","name":"Drei \u2744","id":329580620,"id_str":"329580620","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640679809024,"id_str":"663727640679809024","text":"\u7a7a\u30ea\u30d7\u591a\u3044\u3068\u304b\u8a00\u3046\u306e\u3082\u7a7a\u30ea\u30d7\u306a\u3093\u3060\u3088\u306a\u3042","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2378793924,"id_str":"2378793924","name":"\u30b1\u30f3\u30bf\u4f1a\u9577\u4ee3\u7406@\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u7559\u5e74","screen_name":"tanaka_ka1ty0u","location":null,"url":null,"description":"\u4eba\u751f\u306f\u3064\u3089\u3044","protected":false,"verified":false,"followers_count":383,"friends_count":412,"listed_count":8,"favourites_count":1136,"statuses_count":15816,"created_at":"Sat Mar 08 14:19:11 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663337620953411584\/fy_lDfqL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663337620953411584\/fy_lDfqL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2378793924\/1446459580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975658"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700784640,"id_str":"663727640700784640","text":"@Akaneco_78 \u30b7\u30b0\u30ec\u3061\u3083\u3093\u306f\u307e\u308d\u3093\u3092\u4fe1\u3058\u3066\u304f\u308c\u306a\u3044\u306e\u306d\u2026\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714502886592513,"in_reply_to_status_id_str":"663714502886592513","in_reply_to_user_id":3305056122,"in_reply_to_user_id_str":"3305056122","in_reply_to_screen_name":"Akaneco_78","user":{"id":3715046538,"id_str":"3715046538","name":"\u307e\u308d\u3093@\u30e1\u30e9\u30b3\u30f3\u56e3","screen_name":"0601Snow","location":"\u30cf\u30a4\u30ad\u30e5\u30fc\u6cbc\u306b\u30cf\u30de\u308a\u3064\u3064\u3042\u308b","url":null,"description":"\u307e\u308d\u3093\u3068\u3044\u3044\u307e\u3059(^ ^) \u8da3\u5473\u57a2\u3066\u3059\u203c\ufe0e\u9280\u9b42\u3010\u7279\u306b\u795e\u5a01\u3055\u3093\u3011\u306b\u30cf\u30de\u308a\u4e2d\u2728\u305d\u306e\u4ed6 \u5c11\u5e74\u30de\u30f3\u30ac\u7cfb\u597d\u304d\u3067\u3059\u203c\ufe0e icon\u306f\u81ea\u4f5c\u3001\u30d8\u30c3\u30c0\u30fc\u306f\u9752\u732b\u3055\u3093\u3010@aonekomajyo\u3011\u306b\u9802\u304d\u307e\u3057\u305f\u2728\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093(\u00b4\u00b0\u03c9\u00b0\uff40) \u611b\u3059\u308b\u5927\u5207\u306a\u76f8\u65b9\u306e\u3042\u3044\u308a\u3093\u2192\u3010@sosa_mumin\u3011","protected":false,"verified":false,"followers_count":111,"friends_count":110,"listed_count":5,"favourites_count":502,"statuses_count":910,"created_at":"Mon Sep 28 13:31:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663354191599898624\/W3qGJygX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663354191599898624\/W3qGJygX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3715046538\/1446631974","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Akaneco_78","name":"\u30bf\u30d4\u30aa\u30abbot","id":3305056122,"id_str":"3305056122","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684064769,"id_str":"663727640684064769","text":"Red days","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456670256,"id_str":"456670256","name":"\u2022CASEY\u2022","screen_name":"KCEnguillado","location":"Love, K","url":null,"description":"the queen of fucking everything","protected":false,"verified":false,"followers_count":1373,"friends_count":1321,"listed_count":2,"favourites_count":29589,"statuses_count":78378,"created_at":"Fri Jan 06 14:29:52 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528407557878988800\/hZ8hOf5p.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528407557878988800\/hZ8hOf5p.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663392792341708800\/Fykw3fLi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663392792341708800\/Fykw3fLi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456670256\/1445338449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01eb2aaf5d412f74","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01eb2aaf5d412f74.json","place_type":"city","name":"Silang","full_name":"Silang, Calabarzon","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.920804,14.129896],[120.920804,14.286134],[121.053412,14.286134],[121.053412,14.129896]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700919808,"id_str":"663727640700919808","text":"@Benji_Mascolo @fedefederossi io ci sto per rinunciare a farvi tweet","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":159041608,"in_reply_to_user_id_str":"159041608","in_reply_to_screen_name":"Benji_Mascolo","user":{"id":513083833,"id_str":"513083833","name":"#BenjieFedeLettera","screen_name":"lovebieebs_","location":"New York, USA","url":null,"description":"E' meglio avere dubbi che false certezze. | @justinbieber @fedefederossi @Benji_Mascolo |","protected":false,"verified":false,"followers_count":1744,"friends_count":1917,"listed_count":0,"favourites_count":501,"statuses_count":30831,"created_at":"Sat Mar 03 11:42:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000009521362\/80ace1c7fd7102a13da02801d9788c88.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000009521362\/80ace1c7fd7102a13da02801d9788c88.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660818108190490624\/xbvpYRQl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660818108190490624\/xbvpYRQl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/513083833\/1446386677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7d588036fe12e124","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7d588036fe12e124.json","place_type":"city","name":"Roma","full_name":"Roma, Lazio","country_code":"IT","country":"Italia","bounding_box":{"type":"Polygon","coordinates":[[[12.234427,41.655874],[12.234427,42.140959],[12.855864,42.140959],[12.855864,41.655874]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[0,14]},{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[15,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688394240,"id_str":"663727640688394240","text":"Kwaaaaaaaaaaaa joke of the year RT @Zamani_S_M: After Cyril Ramaphosa I will become the President.","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":575779956,"id_str":"575779956","name":"I'm God's creation","screen_name":"oumanndwandwe","location":"Esandleni Somusa","url":null,"description":"Woman of God who loves soccer. @Masandawana & Gunners","protected":false,"verified":false,"followers_count":11844,"friends_count":3906,"listed_count":37,"favourites_count":432,"statuses_count":53725,"created_at":"Wed May 09 21:43:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650692480619425792\/QI3zOfYB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650692480619425792\/QI3zOfYB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/575779956\/1425629390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Zamani_S_M","name":"Zamani S. M.#Nyovest","id":1693197524,"id_str":"1693197524","indices":[35,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700846081,"id_str":"663727640700846081","text":"\u30a8\u30ed\u3057\u305a\u306e\u30a8\u30ed\u3064\u3076\u3084\u304d\u30fb\u30fb\u30fb\u266ahttps:\/\/t.co\/jVR0bAkw0m","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431405153,"id_str":"431405153","name":"Ekidumasizu","screen_name":"Ekidumasizu","location":null,"url":null,"description":"\u3044\u3051\u306a\u3044\u99c5\u59bb\u5929\u72d7\u301c\u3048\u304d\u3055\u3044\u3066\u3043\u3093\u3050\u301c\u5bcc\u5c71\u5e97\u306e\u30a8\u30ed\u3057\u305a\u3067\u3059\u266a\u30a8\u30ed\u7121\u6211\u5922\u4e2d\u306e\u30a8\u30ed\u3057\u305a\u3068\u301c\u266a\r\n \u30a8\u30c3\u30c1\u301c\u306a\u7fbd\u76ee\u5916\u3057\u3061\u3083\u304a\uff3c(^\u30fc^)\uff0f","protected":false,"verified":false,"followers_count":143,"friends_count":5,"listed_count":2,"favourites_count":0,"statuses_count":99212,"created_at":"Thu Dec 08 07:28:42 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1680453368\/11_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1680453368\/11_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jVR0bAkw0m","expanded_url":"http:\/\/sizunn.zz.tc\/sizu","display_url":"sizunn.zz.tc\/sizu","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692428800,"id_str":"663727640692428800","text":"Esta semana muchos conocer\u00e1n nuestra nueva botella en uno de los mejores lanzamientos del a\u00f1o: #AbsolutElectrik https:\/\/t.co\/wgt0LExAxa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275104760,"id_str":"275104760","name":"ABSOLUT COLOMBIA","screen_name":"ABSOLUTCOLOMBIA","location":"Colombia","url":"http:\/\/www.facebook.com\/ABSOLUTCOLOMBIA","description":"Twitter oficial de #ABSOLUT en Colombia. S\u00edguenos para conocer las actividades de nuestro pa\u00eds y las campa\u00f1as internacionales. Solo para mayores de edad.","protected":false,"verified":false,"followers_count":7967,"friends_count":2386,"listed_count":64,"favourites_count":1706,"statuses_count":8435,"created_at":"Thu Mar 31 16:51:22 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480160210737065984\/_Mt9S9Dg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480160210737065984\/_Mt9S9Dg.png","profile_background_tile":false,"profile_link_color":"7A7799","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FAFAFA","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648540845692465152\/SG2HfB9J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648540845692465152\/SG2HfB9J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275104760\/1446169168","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AbsolutElectrik","indices":[95,111]}],"urls":[{"url":"https:\/\/t.co\/wgt0LExAxa","expanded_url":"https:\/\/www.youtube.com\/watch?v=-7cU5IdFEqg&feature=youtu.be","display_url":"youtube.com\/watch?v=-7cU5I\u2026","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640709357568,"id_str":"663727640709357568","text":"\u30bb\u30af\u30b7\u30fc\u3067\u306f\u306a\u3044\u3051\u3069\u3001\u30df\u30cb\u3067\u884c\u304d\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4145922013,"id_str":"4145922013","name":"\uff4d\uff49\uff59\uff55\u2661\u30a8\u30c3\u30c1\u3057\u968a\u2661","screen_name":"jm62bp4og340m","location":null,"url":null,"description":"\u3048\u3063\u3061\u306a\u3053\u3068\u304c\u597d\u304d\u306a\u3093\u3060\u3051\u3069 \u3075\u3060\u3093\u306f\u3042\u3093\u307e\u308a\u305d\u3046\u3044\u3046\u8a71\u3067\u304d\u306a\u3044\u304b\u3089 \u300cwqek\u300dRT\u3057\u3066\u30e9\u30a4\u30f3\u9001\u3063\u3066(*\u00b4\ufe43\uff40*)\u7b11","protected":false,"verified":false,"followers_count":61,"friends_count":390,"listed_count":0,"favourites_count":0,"statuses_count":23,"created_at":"Fri Nov 06 12:13:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662609833389105152\/61UcLdiT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662609833389105152\/61UcLdiT_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975665"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675614720,"id_str":"663727640675614720","text":"@kikyo_daphne \u30b9\u30bf\u30fc\u30a6\u30a9\u30fc\u30ba\u5927\u597d\u304d\u306a\u3093\u3060\u3051\u3069\u3001\u3060\u304b\u3089\u3053\u305d\u3001\u4f55\u3067\u3082\u304b\u3093\u3067\u3082\u30b9\u30bf\u30fc\u30a6\u30a9\u30fc\u30ba\u306b\u3057\u3066\u307b\u3057\u304f\u306a\u3044\u3093\u3060\u3088\u306a\u3041\u3001\u3001\u3001\u3068\u8a00\u3044\u3064\u3064\u8cb7\u3046\u3051\u3069(*_*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726698916003840,"in_reply_to_status_id_str":"663726698916003840","in_reply_to_user_id":3238188433,"in_reply_to_user_id_str":"3238188433","in_reply_to_screen_name":"kikyo_daphne","user":{"id":2250454320,"id_str":"2250454320","name":"\u30ca\u30c3\u30c4\u02a2\u2022\u0300\u0631\u0647\u2022\u0301\u02a1\u2122\u516c\u5f0f","screen_name":"ZiggyDegu","location":"\u3052\u3063\u3057\u30fc\u5b66\u5712\u30c7\u30b0\u30fc\u90e8","url":"http:\/\/FunkyDesign.thebase.in\/","description":"\u516c\u5f0f\u30da\u30c3\u30c8\u57a2\u3002\u767b\u5834\u4eba\u7269 #\u30c7\u30b0\u30fc \u2192\u30b8\u30ae\u30fc\u3055\u3093\u300117\u5339\u306e #\u30b8\u30e3\u30fc\u30d3\u30eb \u3001 #\u30d1\u30f3\u30c0\u30de\u30a6\u30b9 \u4e09\u59c9\u59b9\u3001#\u30d2\u30c8 \u2192\u30ca\u30c3\u30c4\u3002\u307e\u305a\u306f\u753b\u50cf\u52d5\u753b\u30d5\u30a9\u30eb\u30c0\u304b\u3089\uff01(\u7121\u65ad\u4f7f\u7528\u7981\u6b62\u203c\ufe0e)\u3002 \u6d77\u5916\u304b\u3089\u30c7\u30b0\u30fc\u306e\u6700\u65b0\u98fc\u80b2\u60c5\u5831\u53ce\u96c6\u4e2d\uff01\u30b2\u30b7\u30c3\u30bf\u30fc\u30a2\u30a4\u30b3\u30f3\u5236\u4f5c\u8005\uff01\u30cd\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u3082\u02a2\u2022\u0300\u0631\u0647\u2022\u0301\u02a1","protected":false,"verified":false,"followers_count":924,"friends_count":662,"listed_count":22,"favourites_count":6826,"statuses_count":38409,"created_at":"Tue Dec 17 14:03:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662072818880778240\/2RMfY4g0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662072818880778240\/2RMfY4g0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2250454320\/1438568654","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kikyo_daphne","name":"\u6854\u6897\u02a2\u2022\u0300\u0631\u0642\u2022\u0301\u02a1","id":3238188433,"id_str":"3238188433","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684027904,"id_str":"663727640684027904","text":"@WllmVllnv sa true bes. Tas compile natin","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727543300722688,"in_reply_to_status_id_str":"663727543300722688","in_reply_to_user_id":106691513,"in_reply_to_user_id_str":"106691513","in_reply_to_screen_name":"WllmVllnv","user":{"id":1446347196,"id_str":"1446347196","name":"Bea Bae \u2654","screen_name":"BEAnderfuuul","location":"Philippines","url":null,"description":"PLM Mass Comm | ig:barbasauuur | Let them wonder... \u2728 | MCSG XVIII","protected":false,"verified":false,"followers_count":762,"friends_count":585,"listed_count":2,"favourites_count":10771,"statuses_count":27631,"created_at":"Tue May 21 13:45:50 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30065","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657924572881092608\/M8ScrXlX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657924572881092608\/M8ScrXlX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1446347196\/1447044468","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WllmVllnv","name":"William Villanueva","id":106691513,"id_str":"106691513","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640679837697,"id_str":"663727640679837697","text":"@hyuumaru11964 \u4e0a\u677f\u304f\u308c\u3070\u30fc\ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727292879736832,"in_reply_to_status_id_str":"663727292879736832","in_reply_to_user_id":2906156370,"in_reply_to_user_id_str":"2906156370","in_reply_to_screen_name":"hyuumaru11964","user":{"id":2399920430,"id_str":"2399920430","name":"\u6e21\u8fba \u51cc","screen_name":"RyoBakadayo","location":"\u677f\u6a4b","url":null,"description":"16\u624d \u91ce\u7403\u3068\u30ad\u30c3\u30af\u30dc\u30af\u30b7\u30f3\u30b0\u9811\u5f35\u308b \u3067\u304d\u308b\u3053\u3068\u4e00\u751f\u61f8\u547d\uff01","protected":false,"verified":false,"followers_count":381,"friends_count":315,"listed_count":0,"favourites_count":2706,"statuses_count":5626,"created_at":"Thu Mar 20 14:02:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662631258447478784\/kbInUvzw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662631258447478784\/kbInUvzw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2399920430\/1445001595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hyuumaru11964","name":"\u304c\u30fc\u3072\u3085\u30fc","id":2906156370,"id_str":"2906156370","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975658"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713408513,"id_str":"663727640713408513","text":"\u30c7\u30ec\u30b9\u30c6\u306e\u30ad\u30e3\u30d7\u30c1\u30e3\u3092waifu2x\u30674\u500d\u4f4d\u306b\u3059\u308b\u3068\u6700\u9ad8","source":"\u003ca href=\"http:\/\/nkpoid.pw\" rel=\"nofollow\"\u003eKrile STARRYEYES for nkpoid\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":850844893,"id_str":"850844893","name":"\u53cb\u5229\u5948\u7dd2","screen_name":"nkpoid","location":"icon:@yaplus","url":"http:\/\/nkpoid.pw","description":"\u30d1\u30bd\u30b3\u30f3\u304c\u3059\u3057\u3067\u3059","protected":false,"verified":false,"followers_count":2506,"friends_count":1673,"listed_count":103,"favourites_count":47109,"statuses_count":2868,"created_at":"Fri Sep 28 10:35:44 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663379292596768768\/qV878E9L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663379292596768768\/qV878E9L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/850844893\/1439998669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640700846080,"id_str":"663727640700846080","text":"RT @datacentre_agen: ProtonMail pays Bitcoin ransom to stop DDoS attack then is attacked further - SiliconANGLE (blog) #attack https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108131543,"id_str":"108131543","name":"CEO Rafael Sosa Ward","screen_name":"SOWACOMPUTACION","location":"Mexico","url":"http:\/\/www.sowacomputacion.com","description":"Proporciona lo Ultimo en Tecnolog\u00eda para Nuestras PYMEs, Grandes Empresas y de Gobierno. #Enterprise #Pymes #Tecnolog\u00eda #Cybersecurity #Gobierno","protected":false,"verified":false,"followers_count":485,"friends_count":1847,"listed_count":265,"favourites_count":1460,"statuses_count":9354,"created_at":"Sun Jan 24 23:41:13 +0000 2010","utc_offset":-14400,"time_zone":"La Paz","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/262066527\/sowacomputacion.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/262066527\/sowacomputacion.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2985091783\/33b95546c2f08629498577806d10b65a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2985091783\/33b95546c2f08629498577806d10b65a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108131543\/1415154497","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:44:07 +0000 2015","id":663653284348100608,"id_str":"663653284348100608","text":"ProtonMail pays Bitcoin ransom to stop DDoS attack then is attacked further - SiliconANGLE (blog) #attack https:\/\/t.co\/IqjNt4Aoej","source":"\u003ca href=\"http:\/\/dragplus.com\" rel=\"nofollow\"\u003eDragPlus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2360689674,"id_str":"2360689674","name":"Data Centre agent","screen_name":"datacentre_agen","location":null,"url":"http:\/\/dragplus.com\/browse\/datacentre","description":"datacentre, data centre, data center, datacenter","protected":false,"verified":false,"followers_count":1794,"friends_count":1968,"listed_count":46,"favourites_count":0,"statuses_count":8514,"created_at":"Tue Feb 25 07:37:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459300621058068480\/2VJY65eD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459300621058068480\/2VJY65eD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"attack","indices":[98,105]}],"urls":[{"url":"https:\/\/t.co\/IqjNt4Aoej","expanded_url":"http:\/\/dragplus.com\/post\/id\/32576766","display_url":"dragplus.com\/post\/id\/325767\u2026","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"attack","indices":[119,126]}],"urls":[{"url":"https:\/\/t.co\/IqjNt4Aoej","expanded_url":"http:\/\/dragplus.com\/post\/id\/32576766","display_url":"dragplus.com\/post\/id\/325767\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"datacentre_agen","name":"Data Centre agent","id":2360689674,"id_str":"2360689674","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975663"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713408514,"id_str":"663727640713408514","text":"RT @touken_goods: \u3010AGF2015\u3011\u30aa\u30e9\u30f3\u30b8\u30e5\u30fb\u30eb\u30fc\u30b8\u30e5 \u306d\u3093\u3069\u308d\u3044\u3069 \u5200\u5263\u4e71\u821e-ONLINE- \u4e00\u671f\u4e00\u632f \u5f69\u8272\u6e08\u307f\u30c7\u30b3\u30de\u30b9\u5c55\u793a\uff01 https:\/\/t.co\/EmTSBBM1Pm #\u5200\u5263\u4e71\u821e #\u3068\u3046\u3089\u3076 https:\/\/t.co\/sJIZ0r6G9U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3249457945,"id_str":"3249457945","name":"\u9ea6","screen_name":"zui_zui_21","location":"\uff7d\uff9e\uff72\u208d\u208d\uff08\u0e07 \u02d8\u03c9\u02d8 \uff09\u0e27\u207e\u207e\uff7d\uff9e\uff72","url":null,"description":"\u7c73\u3067\u3059\u3002\/\uff85\uff76\uff9e\uff89\u306e1J\/\u8266\u3068\u56fd\u3068\u5200\u306e\u64ec\u4eba\u5316\/MMD\/\u745e\u9db4\u3055\u3093\u3068\u4e00\u671f\u4e00\u632f\u3068\u771f\u59eb\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":176,"friends_count":176,"listed_count":3,"favourites_count":27090,"statuses_count":13293,"created_at":"Fri Jun 19 03:09:21 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"CCCCCC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9070AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612889982210969600\/AVwxgKjf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612889982210969600\/AVwxgKjf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3249457945\/1442080053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:15 +0000 2015","id":663727556705673216,"id_str":"663727556705673216","text":"\u3010AGF2015\u3011\u30aa\u30e9\u30f3\u30b8\u30e5\u30fb\u30eb\u30fc\u30b8\u30e5 \u306d\u3093\u3069\u308d\u3044\u3069 \u5200\u5263\u4e71\u821e-ONLINE- \u4e00\u671f\u4e00\u632f \u5f69\u8272\u6e08\u307f\u30c7\u30b3\u30de\u30b9\u5c55\u793a\uff01 https:\/\/t.co\/EmTSBBM1Pm #\u5200\u5263\u4e71\u821e #\u3068\u3046\u3089\u3076 https:\/\/t.co\/sJIZ0r6G9U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1344678223,"id_str":"1344678223","name":"\u5200\u5263\u4e71\u821e \u3068\u3046\u3089\u3076\u30b0\u30c3\u30ba\uff06\u30d5\u30a3\u30ae\u30e5\u30a2\u4e88\u7d04","screen_name":"touken_goods","location":"\u963f\u6d25\u52a0\u5fd7\u5c71\u30fb\u539a\u6a2b\u5c71","url":"http:\/\/blog.livedoor.jp\/touken_goods\/","description":"DMM\u30b2\u30fc\u30e0\u30ba\u00d7\u30cb\u30c8\u30ed\u30d7\u30e9\u30b9\u306e\u4eba\u6c17\u30b2\u30fc\u30e0\u300c\u5200\u5263\u4e71\u821e\u300d\u3068\u3046\u3089\u3076\u3001\u5200\u5263\u7537\u58eb\u30b0\u30c3\u30ba\uff06\u30d5\u30a3\u30ae\u30e5\u30a2\u3001\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u306a\u3069\u3092\u53ce\u96c6\u3057\u3066\u3044\u307e\u3059\u3002\u7d9a\u3005\u30b0\u30c3\u30ba\u304c\u767b\u5834\u3057\u3066\u3044\u308b\u306e\u3067\u662f\u975e\u30c1\u30a7\u30c3\u30af\u3092 \u203b\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u975e\u516c\u5f0f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":63814,"friends_count":141,"listed_count":1268,"favourites_count":2422,"statuses_count":6498,"created_at":"Thu Apr 11 15:42:09 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616459945597272064\/3BfNDDcM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616459945597272064\/3BfNDDcM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1344678223\/1425049061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":6,"entities":{"hashtags":[{"text":"\u5200\u5263\u4e71\u821e","indices":[81,86]},{"text":"\u3068\u3046\u3089\u3076","indices":[87,92]}],"urls":[{"url":"https:\/\/t.co\/EmTSBBM1Pm","expanded_url":"http:\/\/blog.livedoor.jp\/touken_goods\/%E3%82%A4%E3%83%99%E3%83%B3%E3%83%88%E3%83%AC%E3%83%9D%E3%83%BC%E3%83%88\/47398250.html","display_url":"blog.livedoor.jp\/touken_goods\/%\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663727555434835968,"id_str":"663727555434835968","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727555434835968,"id_str":"663727555434835968","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663727554151383040,"id_str":"663727554151383040","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsaTVAAA7Pfl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsaTVAAA7Pfl.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663727554704994304,"id_str":"663727554704994304","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIscXUcAAnE3v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIscXUcAAnE3v.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5200\u5263\u4e71\u821e","indices":[99,104]},{"text":"\u3068\u3046\u3089\u3076","indices":[105,110]}],"urls":[{"url":"https:\/\/t.co\/EmTSBBM1Pm","expanded_url":"http:\/\/blog.livedoor.jp\/touken_goods\/%E3%82%A4%E3%83%99%E3%83%B3%E3%83%88%E3%83%AC%E3%83%9D%E3%83%BC%E3%83%88\/47398250.html","display_url":"blog.livedoor.jp\/touken_goods\/%\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"touken_goods","name":"\u5200\u5263\u4e71\u821e \u3068\u3046\u3089\u3076\u30b0\u30c3\u30ba\uff06\u30d5\u30a3\u30ae\u30e5\u30a2\u4e88\u7d04","id":1344678223,"id_str":"1344678223","indices":[3,16]}],"symbols":[],"media":[{"id":663727555434835968,"id_str":"663727555434835968","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727556705673216,"source_status_id_str":"663727556705673216","source_user_id":1344678223,"source_user_id_str":"1344678223"}]},"extended_entities":{"media":[{"id":663727555434835968,"id_str":"663727555434835968","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsfFU8AAKDnK.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727556705673216,"source_status_id_str":"663727556705673216","source_user_id":1344678223,"source_user_id_str":"1344678223"},{"id":663727554151383040,"id_str":"663727554151383040","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsaTVAAA7Pfl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsaTVAAA7Pfl.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727556705673216,"source_status_id_str":"663727556705673216","source_user_id":1344678223,"source_user_id_str":"1344678223"},{"id":663727554704994304,"id_str":"663727554704994304","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIscXUcAAnE3v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIscXUcAAnE3v.jpg","url":"https:\/\/t.co\/sJIZ0r6G9U","display_url":"pic.twitter.com\/sJIZ0r6G9U","expanded_url":"http:\/\/twitter.com\/touken_goods\/status\/663727556705673216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727556705673216,"source_status_id_str":"663727556705673216","source_user_id":1344678223,"source_user_id_str":"1344678223"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079975666"} +{"delete":{"status":{"id":424392202937049088,"id_str":"424392202937049088","user_id":589096164,"user_id_str":"589096164"},"timestamp_ms":"1447079975857"}} +{"delete":{"status":{"id":663727510685769728,"id_str":"663727510685769728","user_id":231041230,"user_id_str":"231041230"},"timestamp_ms":"1447079975880"}} +{"delete":{"status":{"id":545971578606190592,"id_str":"545971578606190592","user_id":328095061,"user_id_str":"328095061"},"timestamp_ms":"1447079975893"}} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640688201729,"id_str":"663727640688201729","text":"El Per\u00fa tiene las AFP m\u00e1s caras de la Alianza del\u00a0Pac\u00edfico. https:\/\/t.co\/y2UrefR6al https:\/\/t.co\/B5ix0SYcOd","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66546072,"id_str":"66546072","name":"JUVENTUD AMERICANA ","screen_name":"juvapp","location":"PER\u00da","url":"http:\/\/juvapp.wordpress.com\/","description":"JUVENTUD AMERICANA PARA EL PROGRESO - JUVAPP - Org. Internacional de Juventudes, fundada en Per\u00fa.","protected":false,"verified":false,"followers_count":781,"friends_count":1997,"listed_count":15,"favourites_count":92,"statuses_count":1101,"created_at":"Tue Aug 18 00:54:25 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/173022940\/JUVAPP.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/173022940\/JUVAPP.JPG","profile_background_tile":true,"profile_link_color":"544847","profile_sidebar_border_color":"AACEE0","profile_sidebar_fill_color":"5880D1","profile_text_color":"212020","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2635668551\/deb2a21fae7b94b6c38c7080c57a2611_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2635668551\/deb2a21fae7b94b6c38c7080c57a2611_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/y2UrefR6al","expanded_url":"https:\/\/rednacionaldejuventudesdelperu.wordpress.com\/2015\/11\/09\/el-peru-tiene-las-afp-mas-caras-de-la-alianza-del-pacifico\/","display_url":"\u2026onaldejuventudesdelperu.wordpress.com\/2015\/11\/09\/el-\u2026","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663727639539003392,"id_str":"663727639539003392","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYZUsAAexqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYZUsAAexqJ.jpg","url":"https:\/\/t.co\/B5ix0SYcOd","display_url":"pic.twitter.com\/B5ix0SYcOd","expanded_url":"http:\/\/twitter.com\/juvapp\/status\/663727640688201729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":571,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727639539003392,"id_str":"663727639539003392","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYZUsAAexqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYZUsAAexqJ.jpg","url":"https:\/\/t.co\/B5ix0SYcOd","display_url":"pic.twitter.com\/B5ix0SYcOd","expanded_url":"http:\/\/twitter.com\/juvapp\/status\/663727640688201729\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":571,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":334,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079975660"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692580352,"id_str":"663727640692580352","text":"@asoopdragon @andrewlowson https:\/\/t.co\/8PBkLEslxi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726753588903937,"in_reply_to_status_id_str":"663726753588903937","in_reply_to_user_id":542745330,"in_reply_to_user_id_str":"542745330","in_reply_to_screen_name":"asoopdragon","user":{"id":90268149,"id_str":"90268149","name":"Fraser","screen_name":"Catch_Frase","location":"Echo Base, Hoth ","url":"https:\/\/instagram.com\/catch_frase\/","description":"Note taker, picture snapper, gamer and bookworm. Kanto League Champion 2000. Business graduate. Flags don't build houses.","protected":false,"verified":false,"followers_count":500,"friends_count":344,"listed_count":30,"favourites_count":7621,"statuses_count":33364,"created_at":"Sun Nov 15 22:57:50 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"7DB1BE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000013000773\/a666d1d613da2adba50d6d19cb67f932.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000013000773\/a666d1d613da2adba50d6d19cb67f932.png","profile_background_tile":false,"profile_link_color":"A1C1B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EDDCA6","profile_text_color":"C6CBAB","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660646925226627072\/yfvt1omp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660646925226627072\/yfvt1omp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90268149\/1426699551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asoopdragon","name":"Chris","id":542745330,"id_str":"542745330","indices":[0,12]},{"screen_name":"andrewlowson","name":"Lowson","id":15220298,"id_str":"15220298","indices":[13,26]}],"symbols":[],"media":[{"id":663727609122004992,"id_str":"663727609122004992","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIvnFWIAARK2y.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIvnFWIAARK2y.png","url":"https:\/\/t.co\/8PBkLEslxi","display_url":"pic.twitter.com\/8PBkLEslxi","expanded_url":"http:\/\/twitter.com\/Catch_Frase\/status\/663727640692580352\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":399,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727609122004992,"id_str":"663727609122004992","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIvnFWIAARK2y.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIvnFWIAARK2y.png","url":"https:\/\/t.co\/8PBkLEslxi","display_url":"pic.twitter.com\/8PBkLEslxi","expanded_url":"http:\/\/twitter.com\/Catch_Frase\/status\/663727640692580352\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":399,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":399,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIvnFWIAARK2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705155072,"id_str":"663727640705155072","text":"Paralegal Jennifer Ho-Piccone (hus is in PA Nat Guard) gives care package to @OpGratitude for troops overseas. https:\/\/t.co\/mqjR6lVbkb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252091923,"id_str":"3252091923","name":"Myers Lafferty","screen_name":"MyersLafferty","location":"Philadelphia, PA","url":"http:\/\/www.myerslafferty.com","description":"Aggressively representing clients injured due to the negligence of others.","protected":false,"verified":false,"followers_count":10,"friends_count":47,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Wed May 13 16:57:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608361802628497408\/LwwozQmh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608361802628497408\/LwwozQmh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252091923\/1433291700","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OpGratitude","name":"Operation Gratitude","id":22288490,"id_str":"22288490","indices":[77,89]}],"symbols":[],"media":[{"id":663727640063295489,"id_str":"663727640063295489","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxaWUwAEyPfI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxaWUwAEyPfI.jpg","url":"https:\/\/t.co\/mqjR6lVbkb","display_url":"pic.twitter.com\/mqjR6lVbkb","expanded_url":"http:\/\/twitter.com\/MyersLafferty\/status\/663727640705155072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727640063295489,"id_str":"663727640063295489","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxaWUwAEyPfI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxaWUwAEyPfI.jpg","url":"https:\/\/t.co\/mqjR6lVbkb","display_url":"pic.twitter.com\/mqjR6lVbkb","expanded_url":"http:\/\/twitter.com\/MyersLafferty\/status\/663727640705155072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705150976,"id_str":"663727640705150976","text":"@pilorys3 @cucumartin15 @raulrebollo1 @Deli60Ros @man14_14 @MarimarSanche14 @Fernan321321 @annijoseph77\nFeliz d\u00eda\ud83d\ude0a https:\/\/t.co\/pMk6TcDoUp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2754828961,"in_reply_to_user_id_str":"2754828961","in_reply_to_screen_name":"pilorys3","user":{"id":3097309481,"id_str":"3097309481","name":"MR","screen_name":"MrMacarenaR","location":"Espa\u00f1a","url":null,"description":"(Macarena R)\r\nLugares, Sabores, Olores, Musica, Lectura, Arte y Opiniones despiertan los Sentidos.\n\nNo DM Please","protected":false,"verified":false,"followers_count":2461,"friends_count":1049,"listed_count":55,"favourites_count":13249,"statuses_count":14780,"created_at":"Thu Mar 19 18:02:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623516782943469568\/4YlWE4Yo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623516782943469568\/4YlWE4Yo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3097309481\/1426805909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pilorys3","name":"Pilorys","id":2754828961,"id_str":"2754828961","indices":[0,9]},{"screen_name":"cucumartin15","name":"Cucu","id":2752351827,"id_str":"2752351827","indices":[10,23]},{"screen_name":"raulrebollo1","name":"rebollo","id":283625443,"id_str":"283625443","indices":[24,37]},{"screen_name":"Deli60Ros","name":"Rosa Delia","id":2829583018,"id_str":"2829583018","indices":[38,48]},{"screen_name":"man14_14","name":"\u0642\u0644\u0628\u0643 \u062f\u0644\u064a\u0644\u0643","id":2415849590,"id_str":"2415849590","indices":[49,58]},{"screen_name":"MarimarSanche14","name":"Marimar Sanche14 ","id":2395234858,"id_str":"2395234858","indices":[59,75]},{"screen_name":"Fernan321321","name":"fernando","id":3290022867,"id_str":"3290022867","indices":[76,89]},{"screen_name":"annijoseph77","name":"ANNI77","id":315715983,"id_str":"315715983","indices":[90,103]}],"symbols":[],"media":[{"id":663727624506707968,"id_str":"663727624506707968","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwgZWEAAXjtq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwgZWEAAXjtq.jpg","url":"https:\/\/t.co\/pMk6TcDoUp","display_url":"pic.twitter.com\/pMk6TcDoUp","expanded_url":"http:\/\/twitter.com\/MrMacarenaR\/status\/663727640705150976\/photo\/1","type":"photo","sizes":{"large":{"w":532,"h":941,"resize":"fit"},"small":{"w":340,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":532,"h":941,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727624506707968,"id_str":"663727624506707968","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwgZWEAAXjtq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwgZWEAAXjtq.jpg","url":"https:\/\/t.co\/pMk6TcDoUp","display_url":"pic.twitter.com\/pMk6TcDoUp","expanded_url":"http:\/\/twitter.com\/MrMacarenaR\/status\/663727640705150976\/photo\/1","type":"photo","sizes":{"large":{"w":532,"h":941,"resize":"fit"},"small":{"w":340,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":532,"h":941,"resize":"fit"}}},{"id":663727632660480000,"id_str":"663727632660480000","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw-xWwAAT96w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw-xWwAAT96w.jpg","url":"https:\/\/t.co\/pMk6TcDoUp","display_url":"pic.twitter.com\/pMk6TcDoUp","expanded_url":"http:\/\/twitter.com\/MrMacarenaR\/status\/663727640705150976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":302,"resize":"fit"},"large":{"w":1024,"h":910,"resize":"fit"},"medium":{"w":600,"h":533,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692527104,"id_str":"663727640692527104","text":"\"The San Francisco Earthquake\" in 1906 copyright 1971 hardback book https:\/\/t.co\/P4PMBXia3n https:\/\/t.co\/fpYp4hmEEc","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3893753357,"id_str":"3893753357","name":"Carter Steel","screen_name":"steel_carter","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":39,"listed_count":17,"favourites_count":0,"statuses_count":13341,"created_at":"Wed Oct 07 22:03:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651881054769422336\/hchibM88_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651881054769422336\/hchibM88_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P4PMBXia3n","expanded_url":"http:\/\/abu-dhabi-trip.info\/ap\/di\/?query=272040898660","display_url":"abu-dhabi-trip.info\/ap\/di\/?query=2\u2026","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":663727639656574976,"id_str":"663727639656574976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxY1WsAAfyP8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxY1WsAAfyP8.jpg","url":"https:\/\/t.co\/fpYp4hmEEc","display_url":"pic.twitter.com\/fpYp4hmEEc","expanded_url":"http:\/\/twitter.com\/steel_carter\/status\/663727640692527104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727639656574976,"id_str":"663727639656574976","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxY1WsAAfyP8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxY1WsAAfyP8.jpg","url":"https:\/\/t.co\/fpYp4hmEEc","display_url":"pic.twitter.com\/fpYp4hmEEc","expanded_url":"http:\/\/twitter.com\/steel_carter\/status\/663727640692527104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640684072961,"id_str":"663727640684072961","text":"mPF+MarikoSama\/\/ Sexy MarikoSama photos... https:\/\/t.co\/FFJQuuiZTa https:\/\/t.co\/u6mHJPbUib","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851294832,"id_str":"2851294832","name":"Takuya.IKEDA","screen_name":"6F12EB_82379543","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":3,"listed_count":1,"favourites_count":0,"statuses_count":698,"created_at":"Fri Oct 10 23:26:29 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520718016833527808\/644LCLtY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520718016833527808\/644LCLtY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851294832\/1425059727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FFJQuuiZTa","expanded_url":"http:\/\/dlvr.it\/ChfcVZ","display_url":"dlvr.it\/ChfcVZ","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":663727640415596544,"id_str":"663727640415596544","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxbqUcAACtGs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxbqUcAACtGs.jpg","url":"https:\/\/t.co\/u6mHJPbUib","display_url":"pic.twitter.com\/u6mHJPbUib","expanded_url":"http:\/\/twitter.com\/6F12EB_82379543\/status\/663727640684072961\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":970,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":1280,"resize":"fit"},"small":{"w":340,"h":550,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727640415596544,"id_str":"663727640415596544","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxbqUcAACtGs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxbqUcAACtGs.jpg","url":"https:\/\/t.co\/u6mHJPbUib","display_url":"pic.twitter.com\/u6mHJPbUib","expanded_url":"http:\/\/twitter.com\/6F12EB_82379543\/status\/663727640684072961\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":970,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":1280,"resize":"fit"},"small":{"w":340,"h":550,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079975659"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640675749888,"id_str":"663727640675749888","text":"I find myself in W\u03b8rd\u03b5r\u03b9\u03b1\u03b7d https:\/\/t.co\/mqZEECVwt7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3588782608,"id_str":"3588782608","name":"\u039emm\u03b1","screen_name":"xEmmaHemprich","location":"Bottrop, Nordrhein-Westfalen","url":"http:\/\/www.twitlonger.com\/show\/n_1snqdd2?new_post=true","description":"[XIX] Medicina \u00abI\u00b4m just a g\u00f8\u00f8d girl\u2190 with b\u03b1d habits\u00bb \n\u007bColor me with the cH\u03b1\u03b8S of TR\u00f8\u03c5\u03b2l\u0395\u007d\n#HTD","protected":false,"verified":false,"followers_count":47,"friends_count":46,"listed_count":2,"favourites_count":152,"statuses_count":196,"created_at":"Tue Sep 08 15:04:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663452725582147585\/NxRU8E6g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663452725582147585\/NxRU8E6g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3588782608\/1446898443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727632991830016,"id_str":"663727632991830016","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxAAWwAAtTao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxAAWwAAtTao.jpg","url":"https:\/\/t.co\/mqZEECVwt7","display_url":"pic.twitter.com\/mqZEECVwt7","expanded_url":"http:\/\/twitter.com\/xEmmaHemprich\/status\/663727640675749888\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":477,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":477,"resize":"fit"},"small":{"w":340,"h":324,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727632991830016,"id_str":"663727632991830016","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxAAWwAAtTao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxAAWwAAtTao.jpg","url":"https:\/\/t.co\/mqZEECVwt7","display_url":"pic.twitter.com\/mqZEECVwt7","expanded_url":"http:\/\/twitter.com\/xEmmaHemprich\/status\/663727640675749888\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":477,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":477,"resize":"fit"},"small":{"w":340,"h":324,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079975657"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713568256,"id_str":"663727640713568256","text":"Steelers fan Snoop Dogg shows off customized Antonio Brown Jordan\u2019s after his career day https:\/\/t.co\/k2eQvNxpxT https:\/\/t.co\/qqUpBkh3Tu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890891,"id_str":"890891","name":"Bleacher Report","screen_name":"BleacherReport","location":null,"url":"http:\/\/bleacherreport.com\/mobile","description":"#TeamStream","protected":false,"verified":true,"followers_count":1992971,"friends_count":503,"listed_count":9606,"favourites_count":47,"statuses_count":47111,"created_at":"Sat Mar 10 23:52:36 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890891\/1435102663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k2eQvNxpxT","expanded_url":"http:\/\/ble.ac\/1QdQuVA","display_url":"ble.ac\/1QdQuVA","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727073194844160,"id_str":"663727073194844160","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","url":"https:\/\/t.co\/qqUpBkh3Tu","display_url":"pic.twitter.com\/qqUpBkh3Tu","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663727640713568256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727073194844160,"id_str":"663727073194844160","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","url":"https:\/\/t.co\/qqUpBkh3Tu","display_url":"pic.twitter.com\/qqUpBkh3Tu","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663727640713568256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975666"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640692457472,"id_str":"663727640692457472","text":"18 Great Home-Based Business Ideas https:\/\/t.co\/T0krKlGXP7 https:\/\/t.co\/jp7fSBK2m4","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212309921,"id_str":"212309921","name":"Cust.DrivenComputing","screen_name":"CustDriven","location":"Canton, OH","url":"http:\/\/CustomerDrivenComputing.net","description":"Our primary focuses are website design and hosting, though we also work with social media sharing and search engine optimization (SEO). 330-818-9745","protected":false,"verified":false,"followers_count":1252,"friends_count":1881,"listed_count":27,"favourites_count":95,"statuses_count":8973,"created_at":"Fri Nov 05 18:33:44 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/670180562\/1db210ce35bd81a59743f3fdfe5347f2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/670180562\/1db210ce35bd81a59743f3fdfe5347f2.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCD","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1765533949\/CDComputing-275x275_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1765533949\/CDComputing-275x275_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212309921\/1431195393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T0krKlGXP7","expanded_url":"http:\/\/dlvr.it\/ChfdTy","display_url":"dlvr.it\/ChfdTy","indices":[35,58]}],"user_mentions":[],"symbols":[],"media":[{"id":663727639497060353,"id_str":"663727639497060353","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYPUsAELqmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYPUsAELqmn.jpg","url":"https:\/\/t.co\/jp7fSBK2m4","display_url":"pic.twitter.com\/jp7fSBK2m4","expanded_url":"http:\/\/twitter.com\/CustDriven\/status\/663727640692457472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727639497060353,"id_str":"663727639497060353","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYPUsAELqmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYPUsAELqmn.jpg","url":"https:\/\/t.co\/jp7fSBK2m4","display_url":"pic.twitter.com\/jp7fSBK2m4","expanded_url":"http:\/\/twitter.com\/CustDriven\/status\/663727640692457472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975661"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705126400,"id_str":"663727640705126400","text":"Steelers fan Snoop Dogg shows off customized Antonio Brown Jordan\u2019s after his career day https:\/\/t.co\/AqTXO8U5hI https:\/\/t.co\/qRBFr4GV2n","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619516531,"id_str":"619516531","name":"Drew Corrigan","screen_name":"Dcorrigan50","location":"NYC","url":"http:\/\/TrustTheProcess.com","description":"Social Media at Bleacher Report. Dcorrigan50(at)gmail(dot)com.","protected":false,"verified":false,"followers_count":1102,"friends_count":463,"listed_count":50,"favourites_count":1849,"statuses_count":33026,"created_at":"Tue Jun 26 23:41:59 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650535333537386496\/TtjLgmaF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650535333537386496\/TtjLgmaF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619516531\/1446462861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AqTXO8U5hI","expanded_url":"http:\/\/ble.ac\/1QdQuVA","display_url":"ble.ac\/1QdQuVA","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727070200143872,"id_str":"663727070200143872","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQPcXIAA2Axn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQPcXIAA2Axn.png","url":"https:\/\/t.co\/qRBFr4GV2n","display_url":"pic.twitter.com\/qRBFr4GV2n","expanded_url":"http:\/\/twitter.com\/Dcorrigan50\/status\/663727640705126400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727070200143872,"id_str":"663727070200143872","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQPcXIAA2Axn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQPcXIAA2Axn.png","url":"https:\/\/t.co\/qRBFr4GV2n","display_url":"pic.twitter.com\/qRBFr4GV2n","expanded_url":"http:\/\/twitter.com\/Dcorrigan50\/status\/663727640705126400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975664"} +{"delete":{"status":{"id":662333202388942848,"id_str":"662333202388942848","user_id":2574724111,"user_id_str":"2574724111"},"timestamp_ms":"1447079976537"}} +{"delete":{"status":{"id":539105259688194049,"id_str":"539105259688194049","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079976659"}} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886867969,"id_str":"663727644886867969","text":"RT @hesoveryou: Dear @NiallOfficial ,\nthank you that you came in my life and save me. I wish I can meet you one day and hug you. I love you\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3566614821,"id_str":"3566614821","name":"my world","screen_name":"curlysmine","location":null,"url":null,"description":"@Harry_Styles is my hero, my world, my everything.","protected":false,"verified":false,"followers_count":107,"friends_count":1835,"listed_count":0,"favourites_count":1336,"statuses_count":1539,"created_at":"Sun Sep 06 13:43:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663321117982105600\/a9cJZXr3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663321117982105600\/a9cJZXr3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3566614821\/1443363616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 22:18:04 +0000 2015","id":662755857797652480,"id_str":"662755857797652480","text":"Dear @NiallOfficial ,\nthank you that you came in my life and save me. I wish I can meet you one day and hug you. I love you, hero. \u27655.043","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2510645123,"id_str":"2510645123","name":"Ana loves Niall","screen_name":"hesoveryou","location":"V \u2741","url":"http:\/\/onedirectionismyworld.com","description":"Chonce. #rainbowgirlsbomb","protected":false,"verified":false,"followers_count":500,"friends_count":296,"listed_count":2,"favourites_count":5606,"statuses_count":10965,"created_at":"Sat Apr 26 15:02:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000011","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660783241771810816\/38pR_NF2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660783241771810816\/38pR_NF2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2510645123\/1447023599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[5,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hesoveryou","name":"Ana loves Niall","id":2510645123,"id_str":"2510645123","indices":[3,14]},{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[21,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644870057989,"id_str":"663727644870057989","text":"\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u043e, \u0437\u0430 30 \u043c\u0438\u043d\u0443\u0442, \u043f\u0440\u043e\u0432\u0435\u0434\u0443 \u0430\u0443\u0434\u0438\u0442 \u0432\u0430\u0448\u0435\u0433\u043e \u0431\u0438\u0437\u043d\u0435\u0441\u0430 \u0438 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0443 \u043f\u0443\u0442\u0438 \u0440\u043e\u0441\u0442\u0430 \u0434\u043e\u0445\u043e\u0434\u0430 + 50 000 \u0432 1 \u043c\u0435\u0441\u044f\u0446. \u0427\u0438\u0442\u0430\u0439 1-\u0439 \u043f\u043e\u0441\u0442.","source":"\u003ca href=\"http:\/\/vk.com\" rel=\"nofollow\"\u003evk.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":388923501,"id_str":"388923501","name":"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0411\u0435\u043a\u043a","screen_name":"aleksandrbekk","location":"\u0421\u0430\u043d\u043a\u0442-\u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433, \u0420\u043e\u0441\u0441\u0438\u044f","url":"http:\/\/aleksandrbekk.ru","description":"\u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u0443\u0441\u043f\u0435\u0445\u0430 \u0438\u0437\u0431\u0435\u0433\u0430\u0439\u0442\u0435 \u0448\u0435\u0441\u0442\u0438 \u043f\u043e\u0440\u043e\u043a\u043e\u0432: \u0441\u043e\u043d\u043b\u0438\u0432\u043e\u0441\u0442\u0438, \u0441\u0442\u0440\u0430\u0445\u0430, \u0433\u043d\u0435\u0432\u0430, \u043b\u0435\u043d\u0438, \u0433\u043e\u0440\u0434\u044b\u043d\u0438 \u0438 \u043d\u0435\u0440\u0435\u0448\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438","protected":false,"verified":false,"followers_count":75,"friends_count":18,"listed_count":1,"favourites_count":0,"statuses_count":207,"created_at":"Tue Oct 11 15:24:57 +0000 2011","utc_offset":10800,"time_zone":"St. Petersburg","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FD1728","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594814000170401792\/SWNE3e1N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594814000170401792\/SWNE3e1N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/388923501\/1430649676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878495744,"id_str":"663727644878495744","text":"RT @ha8x__: \u0627\u0646 \u062c\u064a\u062a \u0627\u0648 \u0631\u062d\u062a : \u062e\u0644\u0651\u0643 \u0645\u062b\u0644 \u062d\u0627\u0644 \u0627\u0644\u0648\u0631\u0642 \u060c\n\u0641\u064a \u0643\u0644 \u0627\u0644\u0627\u062d\u0648\u0627\u0644 \u0627\u0628\u064a\u0636 \u0648\u062c\u0647 \u0648\u0627\u0628\u064a\u0636 \u0642\u0641\u0649 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2568461209,"id_str":"2568461209","name":"\u2661\u062c\u0639\u0644\u0627\u0646\u064a\u0647_\u0630\u0648\u0648\u0642\u2661","screen_name":"Bas_kafy","location":null,"url":null,"description":"\u200f\u200f\u200f\u0628\u0646\u062a\u064e \u0627\u0644\u0622\u0635\u0644 \u0645\u0622 \u062a\u0639\u0634\u0642 \u0622\u0644\u0641\u064a\u0646 \u0631\u062c\u0622\u0644\n\u0648\u0648\u0644\u062f \u0627\u0644\u0622\u0635\u0644' \u0645\u0627 \u062a\u063a\u0631\u064a\u06be \u063a\u064a\u0631 \u0648\u062d\u062f\u06be","protected":false,"verified":false,"followers_count":1829,"friends_count":2193,"listed_count":0,"favourites_count":562,"statuses_count":2848,"created_at":"Sun Jun 15 06:00:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663601122578456576\/sttCAQit_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663601122578456576\/sttCAQit_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2568461209\/1447049810","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 09:24:02 +0000 2015","id":662198677516247040,"id_str":"662198677516247040","text":"\u0627\u0646 \u062c\u064a\u062a \u0627\u0648 \u0631\u062d\u062a : \u062e\u0644\u0651\u0643 \u0645\u062b\u0644 \u062d\u0627\u0644 \u0627\u0644\u0648\u0631\u0642 \u060c\n\u0641\u064a \u0643\u0644 \u0627\u0644\u0627\u062d\u0648\u0627\u0644 \u0627\u0628\u064a\u0636 \u0648\u062c\u0647 \u0648\u0627\u0628\u064a\u0636 \u0642\u0641\u0649 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223594051,"id_str":"3223594051","name":"\ufd3f \u0647\u0640\u2765\u0586 \ufd3e'","screen_name":"ha8x__","location":"Kuwait'","url":null,"description":"\u064a\u0622\u0644\u0644\u0647 \u062d\u0633\u0646 \u0622\u0644\u0628\u0642\u0627\u0621 \u060c \u0648\u062d\u0633\u0646 \u0622\u0644\u0631\u062d\u064a\u0644","protected":false,"verified":false,"followers_count":161,"friends_count":267,"listed_count":2,"favourites_count":5,"statuses_count":1058,"created_at":"Fri May 22 17:48:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661880292714631168\/0jFUejLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661880292714631168\/0jFUejLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223594051\/1446332328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ha8x__","name":"\ufd3f \u0647\u0640\u2765\u0586 \ufd3e'","id":3223594051,"id_str":"3223594051","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895260672,"id_str":"663727644895260672","text":"RT @RnosRnosh: \u0627\u0644\u0644\u0647\u0645 \u0623\u063a\u0631\u0642 \u0635\u062f\u0648\u0631\u0646\u0627 \u0641 \u0628\u062d\u0631 \u0627\u0644\u0631\u0636\u0627 \u0648\u0627\u0644\u062a\u0633\u0644\u064a\u0645 \u060c\u060c \u0648\u0639\u0644\u0645\u0646\u0627 \u0623\u0644\u0627 \u0646\u0636\u064a\u0642 \u0645\u0647\u0645\u0627 \u0636\u0627\u0642 \u0627\u0644\u0637\u0631\u064a\u0642 \u0648\u063a\u0627\u0628 \u0627\u0644\u0631\u0641\u064a\u0642 \u060c\u060c \u0648\u0623\u0642\u0646\u0639\u0646\u0627 \u0628\u0627\u0644\u062e\u064a\u0631 \u0641\u064a\u0645\u0627 \u0643\u062a\u0628 ....\u0622\u0645\u064a\u064a\u0646 \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1556870480,"id_str":"1556870480","name":"Ghada Hesham","screen_name":"GhadaHesham42","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1715,"friends_count":2057,"listed_count":0,"favourites_count":3169,"statuses_count":5527,"created_at":"Sun Jun 30 00:51:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023951500\/ce46bd19c215bf61c233601cbd2bfc35.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023951500\/ce46bd19c215bf61c233601cbd2bfc35.jpeg","profile_background_tile":true,"profile_link_color":"7BB3DC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E32820","profile_text_color":"843AA9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719489826361344\/PCBnWcp1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719489826361344\/PCBnWcp1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1556870480\/1445675077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 01:50:02 +0000 2015","id":662084425262477312,"id_str":"662084425262477312","text":"\u0627\u0644\u0644\u0647\u0645 \u0623\u063a\u0631\u0642 \u0635\u062f\u0648\u0631\u0646\u0627 \u0641 \u0628\u062d\u0631 \u0627\u0644\u0631\u0636\u0627 \u0648\u0627\u0644\u062a\u0633\u0644\u064a\u0645 \u060c\u060c \u0648\u0639\u0644\u0645\u0646\u0627 \u0623\u0644\u0627 \u0646\u0636\u064a\u0642 \u0645\u0647\u0645\u0627 \u0636\u0627\u0642 \u0627\u0644\u0637\u0631\u064a\u0642 \u0648\u063a\u0627\u0628 \u0627\u0644\u0631\u0641\u064a\u0642 \u060c\u060c \u0648\u0623\u0642\u0646\u0639\u0646\u0627 \u0628\u0627\u0644\u062e\u064a\u0631 \u0641\u064a\u0645\u0627 \u0643\u062a\u0628 ....\u0622\u0645\u064a\u064a\u0646 \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877521464,"id_str":"2877521464","name":"\u2764\ufe0f Rnosh \u2764\ufe0f \u264c\ufe0f\u264c\ufe0f","screen_name":"RnosRnosh","location":null,"url":null,"description":"\u2764\ufe0f \u0623\u0644\u0627\u0647\u0644\u0649 \u2764\ufe0f\u0628\u0631\u062c \u0623\u0644\u0627\u0633\u062f\u264c\ufe0f27\/7 .. \u0623\u062c\u0645\u0644 \u0635\u062f\u0641\u0629 \u2764\ufe0f","protected":false,"verified":false,"followers_count":28879,"friends_count":516,"listed_count":36,"favourites_count":2238,"statuses_count":83376,"created_at":"Sat Nov 15 03:47:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663153207892434944\/mer1u7h3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663153207892434944\/mer1u7h3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877521464\/1446865361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RnosRnosh","name":"\u2764\ufe0f Rnosh \u2764\ufe0f \u264c\ufe0f\u264c\ufe0f","id":2877521464,"id_str":"2877521464","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903677952,"id_str":"663727644903677952","text":"RT @Ashton5SOS: @LeightonCauchi boobz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":810727524,"id_str":"810727524","name":"\u22065SecondsOfStupids\u2206","screen_name":"BeyzaAnzer","location":"5SOSFAM \u2665 A L W A Y S \u2665\u2665\u2665","url":"https:\/\/www.facebook.com\/","description":"I know a thing or two about a thing or two. -C.H.","protected":false,"verified":false,"followers_count":1062,"friends_count":1943,"listed_count":3,"favourites_count":8399,"statuses_count":9493,"created_at":"Sat Sep 08 11:24:55 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662731012296740864\/pmisy6fn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662731012296740864\/pmisy6fn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810727524\/1446842359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:10:46 +0000 2015","id":663705288177016832,"id_str":"663705288177016832","text":"@LeightonCauchi boobz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661878890944573442,"in_reply_to_status_id_str":"661878890944573442","in_reply_to_user_id":2235748622,"in_reply_to_user_id_str":"2235748622","in_reply_to_screen_name":"LeightonCauchi","user":{"id":439125710,"id_str":"439125710","name":"Ashton Irwin","screen_name":"Ashton5SOS","location":"Band on the run! ","url":"http:\/\/www.5sos.com","description":"\/\/ @5SOS & @HiOrHeyRecords \/\/ Holding on to a dream, giving my heart and soul","protected":false,"verified":true,"followers_count":4444322,"friends_count":9480,"listed_count":33878,"favourites_count":1164,"statuses_count":8627,"created_at":"Sat Dec 17 11:46:12 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/741005580\/042559392d591fd05e96ef78629eaa17.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/741005580\/042559392d591fd05e96ef78629eaa17.jpeg","profile_background_tile":true,"profile_link_color":"0B557A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662579557933981696\/T3Ckd2Iz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662579557933981696\/T3Ckd2Iz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/439125710\/1446806204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":815,"favorite_count":1792,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeightonCauchi","name":"Leighton Cauchi","id":2235748622,"id_str":"2235748622","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ashton5SOS","name":"Ashton Irwin","id":439125710,"id_str":"439125710","indices":[3,14]},{"screen_name":"LeightonCauchi","name":"Leighton Cauchi","id":2235748622,"id_str":"2235748622","indices":[16,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874182657,"id_str":"663727644874182657","text":"\u3089\u304f\u304c\u304d\u3057\u3088\u3046\u3068\u601d\u3063\u305f\u306e\u306b\u3053\u3093\u306a\u6642\u9593\u3060\u308f\u2026\u4eca\u65e5\u306f\u8ae6\u3081\u3088\u3046","source":"\u003ca href=\"http:\/\/www.jstwi.com\/kurotwi\/\" rel=\"nofollow\"\u003eKuroTwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":529196178,"id_str":"529196178","name":"\u306a\u3048\u304eP@\u5922\u9280\u6cb3\u30c4\u30fc\u30ea\u30b9\u30c8","screen_name":"senaPshine","location":null,"url":null,"description":"\u30b2\u30fc\u30e0\u4e2d\u5fc3\u3002\u8840\u754c\u30fb\u30c0\u30a4\u30e4\u306b\u5922\u4e2d\u3067\u3059\u304c\u5e45\u5e83\u304f\u597d\u304d\u306a\u3082\u306e\u304c\u591a\u3044\u3067\u3059\u3002\uff71\uff72\uff8f\uff7d\u7f8e\u5e0cP\u3002\u9577\u5e74\u30af\u30ba\u793e\u4f1a\u4eba\u3067\u3059\u3002\u3042\u307e\u308a\u7d61\u307e\u305aRT\u591a\u3044\u3067\u3059\u3002\nSB69\u30a4\u30d9\u306b\u304b\u304b\u308a\u304d\u308a\u3067\u6bce\u65e5\u5fd9\u3057\u3044\u3002\nhttp:\/\/www.pixiv.net\/member.php?id=3104958","protected":false,"verified":false,"followers_count":81,"friends_count":126,"listed_count":1,"favourites_count":2564,"statuses_count":25968,"created_at":"Mon Mar 19 07:49:47 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656417244096761857\/oPbnV01C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656417244096761857\/oPbnV01C_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874248192,"id_str":"663727644874248192","text":"S\u00f6yle gardiyanim \u00e7ok yatarm\u0131y\u0131m?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3147633701,"id_str":"3147633701","name":"\u0130rem Artac","screen_name":"artac942","location":null,"url":null,"description":"bartin universitesi edebiyat b\u00f6lumu instagram @iremartac snapchat #iremartac","protected":false,"verified":false,"followers_count":77,"friends_count":63,"listed_count":0,"favourites_count":863,"statuses_count":785,"created_at":"Wed Apr 08 11:32:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647465732452782080\/RipXf7lZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647465732452782080\/RipXf7lZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3147633701\/1428493248","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[41.6002606,32.3442263]},"coordinates":{"type":"Point","coordinates":[32.3442263,41.6002606]},"place":{"id":"787fb431fd1a6b79","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/787fb431fd1a6b79.json","place_type":"admin","name":"Merkez","full_name":"Merkez, Bart\u0131n","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[32.073362,41.287139],[32.073362,41.771460],[32.801349,41.771460],[32.801349,41.287139]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644891078656,"id_str":"663727644891078656","text":"RT @lanoviadelern: Advertencia: \nNo te atrevas a mirarme de nuevo a los ojos, porque te juro que no respondo por mis besos.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946684178,"id_str":"2946684178","name":"\u10e6Evelyn\u10e6","screen_name":"Coquinchaa","location":"Virrey del pino, Buenos Aires","url":"http:\/\/instagram.com\/eve.beniteez\/","description":"XVI [Scout una vez, scout para siempre] \u2661Artedance\u2661Handball\u2665Haz las peque\u00f1as cosas con gran amor\u2665 Hiyya\u2661Abel pintos\u2661","protected":false,"verified":false,"followers_count":178,"friends_count":151,"listed_count":0,"favourites_count":724,"statuses_count":2604,"created_at":"Sun Dec 28 23:00:32 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661188059518619648\/YOM1nKIV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661188059518619648\/YOM1nKIV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946684178\/1444617369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 03:15:53 +0000 2015","id":658844539570880512,"id_str":"658844539570880512","text":"Advertencia: \nNo te atrevas a mirarme de nuevo a los ojos, porque te juro que no respondo por mis besos.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1497329647,"id_str":"1497329647","name":"Aide","screen_name":"lanoviadelern","location":"Lauren Wonderland","url":"https:\/\/instagram.com\/aidejauregui\/","description":"\u2716chase your dreams\u2764 \u00abLo imposible, es posible\u00bb |\u00b7FOCUS ON THE MUSIC\u00b7| |\u00b7YAS BOOBOO\u00b7| My babies |Fifth Harmony| | Demi Lovato| | Pxndx| \u262f \/\/Wattpad: camren-1975","protected":false,"verified":false,"followers_count":14805,"friends_count":290,"listed_count":1,"favourites_count":1642,"statuses_count":2577,"created_at":"Mon Jun 10 04:09:31 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF2626","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000101946459\/229568b8bdab425b559de413e7565361.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000101946459\/229568b8bdab425b559de413e7565361.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661721576816046080\/hSWLFyxt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661721576816046080\/hSWLFyxt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1497329647\/1446168587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":283,"favorite_count":229,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lanoviadelern","name":"Aide","id":1497329647,"id_str":"1497329647","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878483456,"id_str":"663727644878483456","text":"RT @NuevaOpinionAR: [POL\u00cdTICA] Michetti: \"volver\u00eda a votar en contra de la Asignaci\u00f3n Universal por Hijo\" https:\/\/t.co\/MWy8l8pESV https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184610867,"id_str":"184610867","name":"Mar\u00eda Mar\u00eda","screen_name":"mujerDelplaneta","location":"argentina","url":null,"description":"La verdad existe.S\u00f3lo se inventa la mentira .G.B.","protected":false,"verified":false,"followers_count":1880,"friends_count":1819,"listed_count":17,"favourites_count":20411,"statuses_count":16816,"created_at":"Mon Aug 30 01:04:34 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546303045881970689\/tKfVcD92.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546303045881970689\/tKfVcD92.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563724873810198529\/EL3X8J8__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563724873810198529\/EL3X8J8__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184610867\/1422487632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:56 +0000 2015","id":663726722257461248,"id_str":"663726722257461248","text":"[POL\u00cdTICA] Michetti: \"volver\u00eda a votar en contra de la Asignaci\u00f3n Universal por Hijo\" https:\/\/t.co\/MWy8l8pESV https:\/\/t.co\/YP49Z90cCO","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317553431,"id_str":"3317553431","name":"NuevaOpinionAR","screen_name":"NuevaOpinionAR","location":null,"url":"http:\/\/www.nuevaopinion.com.ar","description":"24hs prendidos a la informaci\u00f3n. #Politica #Economia #Deportes #Sociedad","protected":false,"verified":false,"followers_count":6385,"friends_count":4866,"listed_count":9,"favourites_count":0,"statuses_count":1683,"created_at":"Wed Jun 10 16:22:12 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616315341690511360\/470jpW_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616315341690511360\/470jpW_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317553431\/1435859693","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MWy8l8pESV","expanded_url":"http:\/\/nuevaopinion.com.ar\/michetti-volveria-a-votar-en-contra-de-la-asignacion-universal-por-hijo\/","display_url":"nuevaopinion.com.ar\/michetti-volve\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663726503797121024,"id_str":"663726503797121024","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","url":"https:\/\/t.co\/YP49Z90cCO","display_url":"pic.twitter.com\/YP49Z90cCO","expanded_url":"http:\/\/twitter.com\/NuevaOpinionAR\/status\/663726722257461248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":425,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726503797121024,"id_str":"663726503797121024","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","url":"https:\/\/t.co\/YP49Z90cCO","display_url":"pic.twitter.com\/YP49Z90cCO","expanded_url":"http:\/\/twitter.com\/NuevaOpinionAR\/status\/663726722257461248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":425,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MWy8l8pESV","expanded_url":"http:\/\/nuevaopinion.com.ar\/michetti-volveria-a-votar-en-contra-de-la-asignacion-universal-por-hijo\/","display_url":"nuevaopinion.com.ar\/michetti-volve\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"NuevaOpinionAR","name":"NuevaOpinionAR","id":3317553431,"id_str":"3317553431","indices":[3,18]}],"symbols":[],"media":[{"id":663726503797121024,"id_str":"663726503797121024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","url":"https:\/\/t.co\/YP49Z90cCO","display_url":"pic.twitter.com\/YP49Z90cCO","expanded_url":"http:\/\/twitter.com\/NuevaOpinionAR\/status\/663726722257461248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":425,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":663726722257461248,"source_status_id_str":"663726722257461248","source_user_id":3317553431,"source_user_id_str":"3317553431"}]},"extended_entities":{"media":[{"id":663726503797121024,"id_str":"663726503797121024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvRbW4AA5MaE.jpg","url":"https:\/\/t.co\/YP49Z90cCO","display_url":"pic.twitter.com\/YP49Z90cCO","expanded_url":"http:\/\/twitter.com\/NuevaOpinionAR\/status\/663726722257461248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":425,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":663726722257461248,"source_status_id_str":"663726722257461248","source_user_id":3317553431,"source_user_id_str":"3317553431"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886724608,"id_str":"663727644886724608","text":"RT @a9ul: @Bhismaa10 https:\/\/t.co\/BJOrCAW3Jc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57843594,"id_str":"57843594","name":"Muhammad Chadafi","screen_name":"chaniaago","location":"+62","url":null,"description":"Jazz Addicted","protected":false,"verified":false,"followers_count":862,"friends_count":598,"listed_count":1,"favourites_count":725,"statuses_count":66200,"created_at":"Sat Jul 18 03:36:16 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627744459065679872\/9OHDONG_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627744459065679872\/9OHDONG_.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1E3636","profile_text_color":"5E14A3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662570515182153728\/N_Yb85di_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662570515182153728\/N_Yb85di_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57843594\/1438500715","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:10 +0000 2015","id":663727536413650944,"id_str":"663727536413650944","text":"@Bhismaa10 https:\/\/t.co\/BJOrCAW3Jc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1113250501,"in_reply_to_user_id_str":"1113250501","in_reply_to_screen_name":"Bhismaa10","user":{"id":38438200,"id_str":"38438200","name":"Masagoes Yudiscitra","screen_name":"a9ul","location":"Nebula M78","url":null,"description":"ordinary boy with extraordinary imagination","protected":false,"verified":false,"followers_count":734,"friends_count":761,"listed_count":5,"favourites_count":75,"statuses_count":38403,"created_at":"Thu May 07 14:17:26 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0C0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/78268563\/optical-illusion.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/78268563\/optical-illusion.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A241B5","profile_text_color":"030303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1273457722\/274030443_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1273457722\/274030443_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38438200\/1439818082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bhismaa10","name":"bhisma","id":1113250501,"id_str":"1113250501","indices":[0,10]}],"symbols":[],"media":[{"id":663727522413056000,"id_str":"663727522413056000","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","url":"https:\/\/t.co\/BJOrCAW3Jc","display_url":"pic.twitter.com\/BJOrCAW3Jc","expanded_url":"http:\/\/twitter.com\/a9ul\/status\/663727536413650944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":146,"resize":"fit"},"medium":{"w":600,"h":258,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727522413056000,"id_str":"663727522413056000","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","url":"https:\/\/t.co\/BJOrCAW3Jc","display_url":"pic.twitter.com\/BJOrCAW3Jc","expanded_url":"http:\/\/twitter.com\/a9ul\/status\/663727536413650944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":146,"resize":"fit"},"medium":{"w":600,"h":258,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"a9ul","name":"Masagoes Yudiscitra","id":38438200,"id_str":"38438200","indices":[3,8]},{"screen_name":"Bhismaa10","name":"bhisma","id":1113250501,"id_str":"1113250501","indices":[10,20]}],"symbols":[],"media":[{"id":663727522413056000,"id_str":"663727522413056000","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","url":"https:\/\/t.co\/BJOrCAW3Jc","display_url":"pic.twitter.com\/BJOrCAW3Jc","expanded_url":"http:\/\/twitter.com\/a9ul\/status\/663727536413650944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":146,"resize":"fit"},"medium":{"w":600,"h":258,"resize":"fit"}},"source_status_id":663727536413650944,"source_status_id_str":"663727536413650944","source_user_id":38438200,"source_user_id_str":"38438200"}]},"extended_entities":{"media":[{"id":663727522413056000,"id_str":"663727522413056000","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqkEUkAAHaMu.jpg","url":"https:\/\/t.co\/BJOrCAW3Jc","display_url":"pic.twitter.com\/BJOrCAW3Jc","expanded_url":"http:\/\/twitter.com\/a9ul\/status\/663727536413650944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":146,"resize":"fit"},"medium":{"w":600,"h":258,"resize":"fit"}},"source_status_id":663727536413650944,"source_status_id_str":"663727536413650944","source_user_id":38438200,"source_user_id_str":"38438200"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644870098944,"id_str":"663727644870098944","text":"@istekurannet hakk\u0131 bey bug\u00fcn okulda ateist arkada\u015flar\u0131mla tart\u0131\u015ft\u0131m bana dinde zorlama yoksa Allah neden kavimleri helak etti diye sordular","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2373776568,"in_reply_to_user_id_str":"2373776568","in_reply_to_screen_name":"istekurannet","user":{"id":4128492137,"id_str":"4128492137","name":"fat\u0131ma ibrahimo\u011flu","screen_name":"ftmbrhmglu561","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":57,"listed_count":0,"favourites_count":12,"statuses_count":1,"created_at":"Fri Nov 06 17:55:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"istekurannet","name":"Hakk\u0131 YILMAZ","id":2373776568,"id_str":"2373776568","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644869918721,"id_str":"663727644869918721","text":"\u5225\u306b\u82f1\u9818\u3058\u3083\u306a\u3044\u3051\u3069\u30a4\u30ae\u30ea\u30b9\u30af\u30e9\u30b9\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":949274250,"id_str":"949274250","name":"\u3088\u3064\u306e\u3084","screen_name":"Keiya_yotsunoya","location":"\u3084\u307e\u3050\u3061","url":"http:\/\/twpf.jp\/Keiya_yotsunoya","description":"\u672c\u7530\u83ca\u3055\u3048\u3044\u308c\u3070\u305d\u308c\u3060\u3051\u3067\u5e78\u305b\u3002\u672c\u7530\u83ca\u304c\u3044\u306a\u3044\u3060\u3051\u3067\u3068\u3066\u3064\u3082\u306a\u304f\u4e0d\u5e78\u305b\uff01\n\u4ed6\u597d\u7269:\u5c71\u5d0e\u9000\uff65\u30a2\u30ea\u30d0\u30d0\uff65\u702c\u540d\u6cc9\u30fb\u73fe\u4ee3\u7248SH\n\u82f1\u56fd\uff06\u82f1\u4ff3\u512a(\u7279\u306bMARTIN FREEMAN)\u6cbc\u3067\u3059\u304c\u30d8\u30bf\u3067\u306f\u672c\u7530\u83ca\u30af\u30e9\u30b9\u30bf\n\n\u8efd\u7387\u306b\u30ea\u30d7\u3075\u3041\u307c\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":264,"friends_count":206,"listed_count":5,"favourites_count":14996,"statuses_count":49171,"created_at":"Thu Nov 15 08:03:23 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642832981199990784\/8-ToWNS2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642832981199990784\/8-ToWNS2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/949274250\/1433890318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644882538496,"id_str":"663727644882538496","text":"RT @losingxhopes: Stop overthinking.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622860055,"id_str":"622860055","name":"Who?","screen_name":"Sya_Ikha","location":"parit raja,batu pahat","url":null,"description":"18.\ndah jatuh kenalah bangun sendiri !","protected":false,"verified":false,"followers_count":403,"friends_count":648,"listed_count":5,"favourites_count":3577,"statuses_count":18004,"created_at":"Sat Jun 30 14:24:20 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510685154654691328\/GtibHdf_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510685154654691328\/GtibHdf_.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662296064104394752\/lIxpeuwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662296064104394752\/lIxpeuwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622860055\/1441547087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:23 +0000 2015","id":663727588364283905,"id_str":"663727588364283905","text":"Stop overthinking.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2271168349,"id_str":"2271168349","name":"\u2639","screen_name":"losingxhopes","location":null,"url":"http:\/\/instagram.com\/soulsdarkness","description":"I can't unlove you","protected":false,"verified":false,"followers_count":36349,"friends_count":2461,"listed_count":66,"favourites_count":406,"statuses_count":15949,"created_at":"Wed Jan 01 04:36:28 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271168349\/1446903061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"losingxhopes","name":"\u2639","id":2271168349,"id_str":"2271168349","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976660"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644870094848,"id_str":"663727644870094848","text":"@haileybaldwin lol same","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727528742359040,"in_reply_to_status_id_str":"663727528742359040","in_reply_to_user_id":64090343,"in_reply_to_user_id_str":"64090343","in_reply_to_screen_name":"haileybaldwin","user":{"id":2355054697,"id_str":"2355054697","name":"Ruby Bieber","screen_name":"biebergirl963","location":"All Around The World","url":"https:\/\/youtu.be\/nntGTK2Fhb0","description":"What Do You Mean? I love you Jake Miller","protected":false,"verified":false,"followers_count":1211,"friends_count":1480,"listed_count":6,"favourites_count":20548,"statuses_count":31933,"created_at":"Fri Feb 21 16:34:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645803639101984768\/PzpYrXW4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645803639101984768\/PzpYrXW4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2355054697\/1444426314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haileybaldwin","name":"Hailey Baldwin","id":64090343,"id_str":"64090343","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644891062272,"id_str":"663727644891062272","text":"Olha a carinha de beb\u00ea \u2764\ufe0f #4DaysTillPURPOSE https:\/\/t.co\/s2jcqHcfvH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2871367275,"id_str":"2871367275","name":"Purpose #nov13","screen_name":"heyjustinback","location":"Justin Bieber Me Seguiu ","url":null,"description":"22\/03\/2015, 22:45 \u2764\ufe0f Se voc\u00ea acha que eu sou legal ent\u00e3o espera eu come\u00e7ar a falar sobre o Justin Bieber","protected":false,"verified":false,"followers_count":853,"friends_count":747,"listed_count":2,"favourites_count":16366,"statuses_count":23210,"created_at":"Mon Nov 10 23:05:37 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662284292106620928\/x9GJWtIC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662284292106620928\/x9GJWtIC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2871367275\/1446647535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663704928515420160,"quoted_status_id_str":"663704928515420160","quoted_status":{"created_at":"Mon Nov 09 13:09:20 +0000 2015","id":663704928515420160,"id_str":"663704928515420160","text":"Justin Bieber via Instagram: \"13 de Novembro.\"\n\n#4DaysTillPURPOSE https:\/\/t.co\/gOUiebn726","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177404638,"id_str":"177404638","name":"Bieber Mania Brasil","screen_name":"biebersmaniabr","location":"equipebmbr@gmail.com","url":"http:\/\/www.biebermania.com.br","description":"Confira atualiza\u00e7\u00f5es di\u00e1rias na maior fonte de not\u00edcias de Justin Bieber da Am\u00e9rica Latina. Acesse http:\/\/www.lojabm.com","protected":false,"verified":false,"followers_count":342718,"friends_count":21829,"listed_count":1836,"favourites_count":1824,"statuses_count":262188,"created_at":"Thu Aug 12 01:40:49 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F181E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456641224506478593\/46ZA3xAS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456641224506478593\/46ZA3xAS.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"474247","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366055277424641\/RnmAWrFM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366055277424641\/RnmAWrFM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177404638\/1444440566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[48,65]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663704824056295424,"id_str":"663704824056295424","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663704824056295424\/pu\/img\/iIwh-o-qX_63m9v7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663704824056295424\/pu\/img\/iIwh-o-qX_63m9v7.jpg","url":"https:\/\/t.co\/gOUiebn726","display_url":"pic.twitter.com\/gOUiebn726","expanded_url":"http:\/\/twitter.com\/biebersmaniabr\/status\/663704928515420160\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663704824056295424,"id_str":"663704824056295424","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663704824056295424\/pu\/img\/iIwh-o-qX_63m9v7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663704824056295424\/pu\/img\/iIwh-o-qX_63m9v7.jpg","url":"https:\/\/t.co\/gOUiebn726","display_url":"pic.twitter.com\/gOUiebn726","expanded_url":"http:\/\/twitter.com\/biebersmaniabr\/status\/663704928515420160\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15082,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663704824056295424\/pu\/pl\/qVdtzfdJNktdmQ8R.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663704824056295424\/pu\/vid\/240x240\/Kjecvp0rry4X0Vb3.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663704824056295424\/pu\/pl\/qVdtzfdJNktdmQ8R.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663704824056295424\/pu\/vid\/480x480\/MaDbcZLK5GqjdjPB.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663704824056295424\/pu\/vid\/480x480\/MaDbcZLK5GqjdjPB.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[26,43]}],"urls":[{"url":"https:\/\/t.co\/s2jcqHcfvH","expanded_url":"https:\/\/twitter.com\/biebersmaniabr\/status\/663704928515420160","display_url":"twitter.com\/biebersmaniabr\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644869943296,"id_str":"663727644869943296","text":"RT @HustIeholic: Spiderman's got handles \ud83d\ude33\ud83d\ude33\ud83d\ude33 https:\/\/t.co\/TYizqOCVT0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":340983410,"id_str":"340983410","name":"Chris Salvatore","screen_name":"Chris_Luisx","location":"Pinoy\/Spanish","url":"http:\/\/whatslove.com","description":"Work hard in silence, let your success be your noise. single life . 21\u2693\ufe0f","protected":false,"verified":false,"followers_count":684,"friends_count":579,"listed_count":5,"favourites_count":5574,"statuses_count":48507,"created_at":"Sat Jul 23 16:25:53 +0000 2011","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/718231364\/2976a2571c2aea488d6fa5beb483954b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/718231364\/2976a2571c2aea488d6fa5beb483954b.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642781780613853184\/_exLUE9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642781780613853184\/_exLUE9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340983410\/1445926031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 23:55:25 +0000 2015","id":663142744693444608,"id_str":"663142744693444608","text":"Spiderman's got handles \ud83d\ude33\ud83d\ude33\ud83d\ude33 https:\/\/t.co\/TYizqOCVT0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463262094,"id_str":"2463262094","name":"Hustle-holic\u2122","screen_name":"HustIeholic","location":null,"url":null,"description":"Hustleholic \u2022 a hustler addicted to working hard on several hustles\u2022 Kik: TweetBiz5","protected":false,"verified":false,"followers_count":178648,"friends_count":4119,"listed_count":30,"favourites_count":3,"statuses_count":134,"created_at":"Fri Apr 25 14:12:12 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633124403379736576\/k-r4ZSfi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633124403379736576\/k-r4ZSfi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463262094\/1439783595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1241,"favorite_count":1174,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TYizqOCVT0","expanded_url":"https:\/\/vine.co\/v\/e7jmODtvBen","display_url":"vine.co\/v\/e7jmODtvBen","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TYizqOCVT0","expanded_url":"https:\/\/vine.co\/v\/e7jmODtvBen","display_url":"vine.co\/v\/e7jmODtvBen","indices":[45,68]}],"user_mentions":[{"screen_name":"HustIeholic","name":"Hustle-holic\u2122","id":2463262094,"id_str":"2463262094","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895223808,"id_str":"663727644895223808","text":"@oqqfoi \u00e9...tu \u00e9 a mais chata que tem, j\u00e1 eu sou um amor \ud83d\ude0a\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727360718544896,"in_reply_to_status_id_str":"663727360718544896","in_reply_to_user_id":415925330,"in_reply_to_user_id_str":"415925330","in_reply_to_screen_name":"oqqfoi","user":{"id":155712707,"id_str":"155712707","name":"Dudu","screen_name":"_1Dudu","location":"Vila F\u00e1tima ","url":null,"description":"17, Brazil","protected":false,"verified":false,"followers_count":578,"friends_count":462,"listed_count":0,"favourites_count":1104,"statuses_count":12788,"created_at":"Mon Jun 14 22:19:52 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654469364176060416\/TxOZ1baK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654469364176060416\/TxOZ1baK.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660671884321755136\/taXgCtkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660671884321755136\/taXgCtkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155712707\/1446972569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oqqfoi","name":"bruna peres","id":415925330,"id_str":"415925330","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644882501632,"id_str":"663727644882501632","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258637024,"id_str":"3258637024","name":"Earnest Guitel","screen_name":"feruwysumez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":52,"listed_count":6,"favourites_count":16599,"statuses_count":17883,"created_at":"Fri May 15 23:50:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645629933222539264\/UR7wjaAY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645629933222539264\/UR7wjaAY_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63003,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1118,"favorite_count":709,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976660"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874293248,"id_str":"663727644874293248","text":"I hate asking people to do stuff for me!!! PERIOD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463633874,"id_str":"2463633874","name":"The Princess.","screen_name":"_Gaabby__","location":null,"url":null,"description":"God is all i have.","protected":false,"verified":false,"followers_count":1088,"friends_count":742,"listed_count":2,"favourites_count":341,"statuses_count":44334,"created_at":"Sun Apr 06 00:33:57 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662464900208328704\/78ySI20A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662464900208328704\/78ySI20A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463633874\/1446779161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899315713,"id_str":"663727644899315713","text":"2\u65e5\u524d\u76ee\u306e\u524d\u306b\u3044\u305f\u4eba\u304c\u3082\u3046\u30c6\u30ec\u30d3\u306e\u4eba\u306b\u2026\uff61\uff9f(\uff9f\u00b4\u03c9`\uff9f)\uff9f\uff61\n\n\u3067\u3082\u306d\u3001\u305a\u3063\u3068\u5fd8\u308c\u306a\u3044\u3088\u6700\u5f8c\u306e\u7fd4\u304f\u3093(\u00b4\u2022\u0325 \u03c9 \u2022\u0325` )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362090604,"id_str":"2362090604","name":"\u3048\u308a","screen_name":"skrierl","location":"\u6628\u65e5\u3088\u308a\u4eca\u65e5\u3001\u4eca\u65e5\u3088\u308a\u660e\u65e5","url":null,"description":"\u5c3e\u4e09\u4e2d\uff0a\u6728\u66fd\u5ddd\uff0a\u6919\u5c71\u5fc3\u74064\u5e74\u2661ksmy*ars","protected":false,"verified":false,"followers_count":41,"friends_count":46,"listed_count":0,"favourites_count":68,"statuses_count":1305,"created_at":"Wed Feb 26 03:59:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660019800849027072\/MC9BxpnY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660019800849027072\/MC9BxpnY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362090604\/1446250054","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886867968,"id_str":"663727644886867968","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/WCPwc1HQ43","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2308054163,"id_str":"2308054163","name":"\u0644 \u0627\u062c\u0644\u0643 \u0647\u062f\u064a\u0644 .","screen_name":"For_Hadeli","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":5,"listed_count":0,"favourites_count":2,"statuses_count":11297,"created_at":"Mon Jan 27 16:57:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427855347395883008\/V7MkaltZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427855347395883008\/V7MkaltZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2308054163\/1390852483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WCPwc1HQ43","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899483648,"id_str":"663727644899483648","text":"Stream Heut 17 Uhr :D freu mich auf euch ;D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1289233956,"id_str":"1289233956","name":"Riddikx","screen_name":"Riddikx","location":"Deutschland","url":null,"description":"LiveStreams hier: http:\/\/www.twitch.tv\/riddikx o\/ YT-Kanal hier: https:\/\/www.youtube.com\/Riddik612 Herr der B\u00e4ren 3","protected":false,"verified":false,"followers_count":114,"friends_count":346,"listed_count":3,"favourites_count":1290,"statuses_count":2541,"created_at":"Fri Mar 22 17:33:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508899568700760065\/cztgB-TL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508899568700760065\/cztgB-TL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1289233956\/1447022133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644882690049,"id_str":"663727644882690049","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/6EFU3SS5oe","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4079130132,"id_str":"4079130132","name":"Happy Feet","screen_name":"feetfot","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":2,"listed_count":0,"favourites_count":1,"statuses_count":21260,"created_at":"Sat Oct 31 11:34:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727317966036992,"quoted_status_id_str":"663727317966036992","quoted_status":{"created_at":"Mon Nov 09 14:38:18 +0000 2015","id":663727317966036992,"id_str":"663727317966036992","text":"kjbee3 #PushAwardsLizQuens https:\/\/t.co\/aTvgCjL2BI","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370550053,"id_str":"3370550053","name":"Mary Apple Pe\u00f1as","screen_name":"appleheartme22","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":26,"listed_count":1,"favourites_count":7,"statuses_count":29458,"created_at":"Fri Aug 28 12:35:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726918475210752,"quoted_status_id_str":"663726918475210752","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[7,26]}],"urls":[{"url":"https:\/\/t.co\/aTvgCjL2BI","expanded_url":"http:\/\/twitter.com\/kjbee3\/status\/663726918475210752","display_url":"twitter.com\/kjbee3\/status\/\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/6EFU3SS5oe","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727317966036992","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976660"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878483457,"id_str":"663727644878483457","text":"@rialjorge @MARENGOROCIO empez\u00f3 la fuga de cerebrossss","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726962083553280,"in_reply_to_status_id_str":"663726962083553280","in_reply_to_user_id":124779370,"in_reply_to_user_id_str":"124779370","in_reply_to_screen_name":"rialjorge","user":{"id":115978885,"id_str":"115978885","name":"Dany Rocks","screen_name":"DANYROCKS78","location":"WITH THE WIND","url":"http:\/\/about.me\/DANYROCKSOUTSIDERARTS","description":"LIGHT ARTIST","protected":false,"verified":false,"followers_count":176,"friends_count":532,"listed_count":4,"favourites_count":287,"statuses_count":1893,"created_at":"Sat Feb 20 17:32:17 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463023690892857344\/im8nh8Z0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463023690892857344\/im8nh8Z0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115978885\/1399228395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rialjorge","name":"JORGE RIAL","id":124779370,"id_str":"124779370","indices":[0,10]},{"screen_name":"MARENGOROCIO","name":"Rocio Marengo","id":171309097,"id_str":"171309097","indices":[11,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895129600,"id_str":"663727644895129600","text":"RT @Amanimohd_: sometimes when you give a fuck, that fuck, fucks you over","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3123999359,"id_str":"3123999359","name":"RM","screen_name":"6Reemarri","location":"Unicorn","url":"http:\/\/anarabiangoddess.tumblr.com","description":"1010|| @atharymans","protected":false,"verified":false,"followers_count":554,"friends_count":223,"listed_count":1,"favourites_count":246,"statuses_count":8339,"created_at":"Sat Mar 28 14:56:06 +0000 2015","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663370426123427844\/WZgPQDAj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663370426123427844\/WZgPQDAj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3123999359\/1446895390","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 17:11:36 +0000 2015","id":663041118980804608,"id_str":"663041118980804608","text":"sometimes when you give a fuck, that fuck, fucks you over","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830066026,"id_str":"2830066026","name":"\u0661\u0669","screen_name":"Amanimohd_","location":"United Arab Emirates","url":null,"description":"All the ways you wish you could be, That's me.","protected":false,"verified":false,"followers_count":205,"friends_count":83,"listed_count":0,"favourites_count":655,"statuses_count":4425,"created_at":"Wed Sep 24 15:55:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658861976848732160\/am7ahhhv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658861976848732160\/am7ahhhv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830066026\/1446205577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Amanimohd_","name":"\u0661\u0669","id":2830066026,"id_str":"2830066026","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886695936,"id_str":"663727644886695936","text":"manja https:\/\/t.co\/yIgUis4evN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947559258,"id_str":"947559258","name":"azhn\u2122","screen_name":"Ameerul_Azhan","location":null,"url":null,"description":"'teringin nak jadi seorang yang pandai jaga hati seseorang ' #GEMXTHRONZ20","protected":false,"verified":false,"followers_count":213,"friends_count":281,"listed_count":0,"favourites_count":4518,"statuses_count":6926,"created_at":"Wed Nov 14 11:27:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658345775072567296\/576NN6fF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658345775072567296\/576NN6fF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947559258\/1445796836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718859212394496,"quoted_status_id_str":"663718859212394496","quoted_status":{"created_at":"Mon Nov 09 14:04:41 +0000 2015","id":663718859212394496,"id_str":"663718859212394496","text":"\"abang sayang kau\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411371991,"id_str":"411371991","name":"aisyah","screen_name":"aisyaqila__","location":null,"url":null,"description":"believe in Allah","protected":false,"verified":false,"followers_count":509,"friends_count":246,"listed_count":0,"favourites_count":432,"statuses_count":19115,"created_at":"Sun Nov 13 10:01:18 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657451349651488768\/NRh66TGE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657451349651488768\/NRh66TGE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411371991\/1446854683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yIgUis4evN","expanded_url":"https:\/\/twitter.com\/aisyaqila__\/status\/663718859212394496","display_url":"twitter.com\/aisyaqila__\/st\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874272768,"id_str":"663727644874272768","text":"RT @SciTalk2U: \u0623\u062d\u064a\u0627\u0646\u0627\u064b \u064a\u0648\u0644\u062f \u0627\u0644\u0625\u0628\u062f\u0627\u0639 \u0645\u0646 \u0631\u062d\u0645 \u0627\u0644\u0645\u0639\u0627\u0646\u0627\u0629 ! https:\/\/t.co\/K5BGjVpf7y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2373990319,"id_str":"2373990319","name":"\u0623\u0641\u064e\u0640\u0631\u0627\u062d\u061b\u062d\u064e\u0633\u0640\u064a\u0646\u2639.","screen_name":"ll9xii","location":"\u062c\u062f\u0629, \u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629","url":null,"description":"\u0645\u0640\u0631\u062d\u0628\u0640\u0627\u064b \u0628\u0640\u0643 \u0641\u0640\u064a \u0639\u0640\u0627\u0644\u0645\u0640\u064a \u064a\u0640\u0627 \u0642\u0645\u0640\u064a\u0644. \u0627\u0644\u062d\u064f\u0628@ALAHLI_FC.","protected":false,"verified":false,"followers_count":1744,"friends_count":337,"listed_count":2,"favourites_count":11,"statuses_count":23613,"created_at":"Wed Mar 05 16:02:03 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662677464691384320\/LE39IpD7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662677464691384320\/LE39IpD7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2373990319\/1446829683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:18:33 +0000 2015","id":663435458098036736,"id_str":"663435458098036736","text":"\u0623\u062d\u064a\u0627\u0646\u0627\u064b \u064a\u0648\u0644\u062f \u0627\u0644\u0625\u0628\u062f\u0627\u0639 \u0645\u0646 \u0631\u062d\u0645 \u0627\u0644\u0645\u0639\u0627\u0646\u0627\u0629 ! https:\/\/t.co\/K5BGjVpf7y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1078192482,"id_str":"1078192482","name":"SciTalk \u0627\u0644\u0639\u0644\u0645","screen_name":"SciTalk2U","location":null,"url":null,"description":"\u0625\u0642\u0631\u0623 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629 - \u0625\u0646\u062c\u0627\u0632\u0627\u062a \u0627\u0644\u0639\u0644\u0645 \u0627\u0644\u062a\u064a \u0623\u0646\u0627\u0631\u062a \u0644\u0646\u0627 \u0627\u0644\u0637\u0631\u064a\u0642 \u0648\u0643\u0634\u0641\u062a \u0633\u0631\u0627 \u0645\u0646 \u0623\u0633\u0631\u0627\u0631 \u0627\u0644\u0643\u0648\u0646 \u0627\u0644\u0623\u0646\u064a\u0642","protected":false,"verified":false,"followers_count":48518,"friends_count":45,"listed_count":341,"favourites_count":1260,"statuses_count":3537,"created_at":"Fri Jan 11 01:36:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3092784927\/2c95b9492893ea291415146a9718820d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3092784927\/2c95b9492893ea291415146a9718820d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1078192482\/1381735700","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1170,"favorite_count":468,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663435251608260608,"id_str":"663435251608260608","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","url":"https:\/\/t.co\/K5BGjVpf7y","display_url":"pic.twitter.com\/K5BGjVpf7y","expanded_url":"http:\/\/twitter.com\/SciTalk2U\/status\/663435458098036736\/video\/1","type":"photo","sizes":{"medium":{"w":480,"h":272,"resize":"fit"},"large":{"w":480,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663435251608260608,"id_str":"663435251608260608","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","url":"https:\/\/t.co\/K5BGjVpf7y","display_url":"pic.twitter.com\/K5BGjVpf7y","expanded_url":"http:\/\/twitter.com\/SciTalk2U\/status\/663435458098036736\/video\/1","type":"video","sizes":{"medium":{"w":480,"h":272,"resize":"fit"},"large":{"w":480,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"video_info":{"aspect_ratio":[30,17],"duration_millis":27928,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/pl\/MFZUjZLApm044ndF.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/vid\/316x180\/jt_DUoPCzG00-97H.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/pl\/MFZUjZLApm044ndF.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/vid\/316x180\/jt_DUoPCzG00-97H.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SciTalk2U","name":"SciTalk \u0627\u0644\u0639\u0644\u0645","id":1078192482,"id_str":"1078192482","indices":[3,13]}],"symbols":[],"media":[{"id":663435251608260608,"id_str":"663435251608260608","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","url":"https:\/\/t.co\/K5BGjVpf7y","display_url":"pic.twitter.com\/K5BGjVpf7y","expanded_url":"http:\/\/twitter.com\/SciTalk2U\/status\/663435458098036736\/video\/1","type":"photo","sizes":{"medium":{"w":480,"h":272,"resize":"fit"},"large":{"w":480,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663435458098036736,"source_status_id_str":"663435458098036736","source_user_id":1078192482,"source_user_id_str":"1078192482"}]},"extended_entities":{"media":[{"id":663435251608260608,"id_str":"663435251608260608","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663435251608260608\/pu\/img\/SQnsWn_EASEE5Y64.jpg","url":"https:\/\/t.co\/K5BGjVpf7y","display_url":"pic.twitter.com\/K5BGjVpf7y","expanded_url":"http:\/\/twitter.com\/SciTalk2U\/status\/663435458098036736\/video\/1","type":"video","sizes":{"medium":{"w":480,"h":272,"resize":"fit"},"large":{"w":480,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663435458098036736,"source_status_id_str":"663435458098036736","source_user_id":1078192482,"source_user_id_str":"1078192482","video_info":{"aspect_ratio":[30,17],"duration_millis":27928,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/pl\/MFZUjZLApm044ndF.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/vid\/316x180\/jt_DUoPCzG00-97H.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/pl\/MFZUjZLApm044ndF.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663435251608260608\/pu\/vid\/316x180\/jt_DUoPCzG00-97H.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895236096,"id_str":"663727644895236096","text":"\u041e \u043f\u043e\u043f\u0443\u043b\u044f\u0440\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0430\u0439\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u043d\u0438\u044f \u0417\u0430\u0447\u0435\u043c? - \u0418\u041d\u0422\u0415\u041d\u0422 \u0424\u041e\u0420\u0423\u041c \"\u041f\u0443\u0442\u044c \u0432 \u0411\u0435\u0441\u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0441\u0442\u044c\" https:\/\/t.co\/OzgdA1lUb9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2487236135,"id_str":"2487236135","name":"\u041b\u0430\u0439\u043b\u0430 \u0414\u043e\u043d\u0438\u0447","screen_name":"eola2014","location":null,"url":"http:\/\/intent.ipb.su","description":"\u041f\u043e\u0437\u043d\u0430\u044e \u043c\u0438\u0440, \u0430 \u043c\u0438\u0440 - \u043c\u0435\u043d\u044f.","protected":false,"verified":false,"followers_count":177,"friends_count":898,"listed_count":1,"favourites_count":144,"statuses_count":272,"created_at":"Tue Apr 15 21:30:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619519770145259524\/cd4pmOD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619519770145259524\/cd4pmOD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2487236135\/1436420678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OzgdA1lUb9","expanded_url":"http:\/\/intentforum.ru\/viewtopic.php?f=6&t=173","display_url":"intentforum.ru\/viewtopic.php?\u2026","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903538688,"id_str":"663727644903538688","text":"@yupar_pan \u4eca\u5e74\u306f\u63a8\u3057\u306e\u8a95\u751f\u65e5\ud83c\udf82\u306b\u9022\u3048\u3066\u81ea\u5206\u306e\u8a95\u751f\u65e5\ud83c\udf82\u306b\u3082\u9022\u3048\u305f\u306e\u3067MPY(\u30de\u30a4\u30af\u30d1\u30fc\u30d5\u30a7\u30af\u30c8\u30a4\u30e4\u30fc)\u3067\u3057\u305f\u2190 \u3086\u3071\u3055\u3093\u3082\u8a95\u751f\u65e5\u306b\u8a69\u7e54\u3061\u3083\u3093\u306b\u9022\u3048\u308b\u3068\u3044\u3044\u3067\u3059\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727092819881984,"in_reply_to_status_id_str":"663727092819881984","in_reply_to_user_id":1344243048,"in_reply_to_user_id_str":"1344243048","in_reply_to_screen_name":"yupar_pan","user":{"id":124183933,"id_str":"124183933","name":"\u30de\u30a4\u30af\u77f3\u6301\u3061","screen_name":"shuujiii","location":"\u3042\u3044\u3061\u3051\u3093","url":null,"description":"\u4f50\u3005\u6728\u5f69\u590f\u3055\u3093\u304c\u5927\u597d\u304d\u3067\u3059(\u2661\u02d9\ufe36\u02d9\u2661)","protected":false,"verified":false,"followers_count":1163,"friends_count":863,"listed_count":37,"favourites_count":9522,"statuses_count":36313,"created_at":"Thu Mar 18 14:45:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635117274785935360\/RsWmzOO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635117274785935360\/RsWmzOO0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124183933\/1445723377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yupar_pan","name":"\u3086\u3071","id":1344243048,"id_str":"1344243048","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644890951680,"id_str":"663727644890951680","text":"RT @Poupoune1607: gn\u00e9h\u00e9 ^^ https:\/\/t.co\/BPOpzcaNfl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1903859521,"id_str":"1903859521","name":"Mermaid","screen_name":"MPrrd","location":null,"url":null,"description":"Les \u00e9toiles sont tomb\u00e9es sur la ville","protected":false,"verified":false,"followers_count":66,"friends_count":121,"listed_count":0,"favourites_count":3717,"statuses_count":4760,"created_at":"Wed Sep 25 11:09:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3CCD7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104682920\/b9d5ded681a2ba79768bf2de4d78841d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104682920\/b9d5ded681a2ba79768bf2de4d78841d.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653681855737274368\/bUOhhH-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653681855737274368\/bUOhhH-f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1903859521\/1444685261","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:09 +0000 2015","id":663718472774471681,"id_str":"663718472774471681","text":"gn\u00e9h\u00e9 ^^ https:\/\/t.co\/BPOpzcaNfl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118718373,"id_str":"118718373","name":"Marie D.","screen_name":"Poupoune1607","location":null,"url":"http:\/\/www.poupouneinmakeupland.com","description":"V\u00e9to, blogueuse beaut\u00e9 et parfums, fille \u00e0 poilues, bougie addict","protected":false,"verified":false,"followers_count":1922,"friends_count":1043,"listed_count":52,"favourites_count":316,"statuses_count":26351,"created_at":"Mon Mar 01 15:07:32 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491165335924396032\/soEYMZLv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491165335924396032\/soEYMZLv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118718373\/1348599698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":8,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BPOpzcaNfl","expanded_url":"https:\/\/vine.co\/v\/Ol2n3Zvw0Db","display_url":"vine.co\/v\/Ol2n3Zvw0Db","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BPOpzcaNfl","expanded_url":"https:\/\/vine.co\/v\/Ol2n3Zvw0Db","display_url":"vine.co\/v\/Ol2n3Zvw0Db","indices":[27,50]}],"user_mentions":[{"screen_name":"Poupoune1607","name":"Marie D.","id":118718373,"id_str":"118718373","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886740992,"id_str":"663727644886740992","text":"Berasa romantis banget hari ini dengerin lagu2 mas @tulusm disaat hujan seperti ini, moodbooster bgd deh @TRANSTV_CORP :)) #TulusTransTV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101758412,"id_str":"101758412","name":"Fitria K. Dewi","screen_name":"phitphitria","location":"Surabaya","url":null,"description":"i love ice cream | music is my life","protected":false,"verified":false,"followers_count":453,"friends_count":691,"listed_count":3,"favourites_count":27,"statuses_count":9996,"created_at":"Mon Jan 04 13:31:07 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/229957881\/super-junior-no-other-chibi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/229957881\/super-junior-no-other-chibi.jpg","profile_background_tile":false,"profile_link_color":"180297","profile_sidebar_border_color":"110070","profile_sidebar_fill_color":"806FE2","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599022764809261056\/GGnx3yuC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599022764809261056\/GGnx3yuC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101758412\/1353666359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TulusTransTV","indices":[124,137]}],"urls":[],"user_mentions":[{"screen_name":"tulusm","name":"Tulus","id":90629215,"id_str":"90629215","indices":[51,58]},{"screen_name":"TRANSTV_CORP","name":"TRANS TV","id":125225621,"id_str":"125225621","indices":[105,118]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874158080,"id_str":"663727644874158080","text":"\u304a\u4e92\u3044\u304c\u305d\u3046\u601d\u3063\u3066\u308b\u306e\u3082\u3044\u3044\u3093\u3060\u3051\u3069\u7247\u65b9\u3060\u3051\u3067\u3082\u3044\u3044\u3001SIREN\u306e\u5bae\u7530\u5148\u751f\u3068\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1303708292,"id_str":"1303708292","name":"\u30ef\u30fc\u30eb\u30c9\u30d3\u30b8\u30cd\u30b9\u30ac\u30ac\u30e9\u30a4\u30c8","screen_name":"green_003444","location":"\u30af\u30ea\u30b9\u30bf\u30eb\u3072\u3068\u3057\u541b","url":"http:\/\/twpf.jp\/green_003444","description":"\u8150\u5973\u5b50\u517cCP\u53a8\n\u219118\n\u6027\u7656\u5984\u60f3\u840c\u3048\u8a9e\u308a\u304c\u591a\u3044\u3002\u7d75\u63cf\u304d\u8da3\u5473\n\u3068\u3046\u3089\u3076\/\u9b3c\u5fb9\/\u3046\u305f\u30d7\u30ea\/\u30d8\u30bf\/\u7344\u90fd\u4ed6\n\u8a73\u3057\u304f\u306f\u3064\u3044\u30d7\u30ed","protected":false,"verified":false,"followers_count":20,"friends_count":38,"listed_count":1,"favourites_count":2388,"statuses_count":5806,"created_at":"Tue Mar 26 11:52:16 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657640670765580288\/kf1NNMHV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657640670765580288\/kf1NNMHV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1303708292\/1445628916","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903538689,"id_str":"663727644903538689","text":"RT @CommonWhiteGirI: THIS IS MY FAVE COSTUME SO FAR \ud83d\ude02 https:\/\/t.co\/Ap1LFtfGUo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3032154201,"id_str":"3032154201","name":"kiersten","screen_name":"kierstenmiller9","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":54,"friends_count":123,"listed_count":0,"favourites_count":1214,"statuses_count":461,"created_at":"Thu Feb 12 07:33:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649239025618808833\/DTONhxVI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649239025618808833\/DTONhxVI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3032154201\/1436855987","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 04:03:07 +0000 2015","id":660305979163193345,"id_str":"660305979163193345","text":"THIS IS MY FAVE COSTUME SO FAR \ud83d\ude02 https:\/\/t.co\/Ap1LFtfGUo","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198988510,"id_str":"1198988510","name":"Common White Girl","screen_name":"CommonWhiteGirI","location":null,"url":null,"description":"Original Common White Girl Account","protected":false,"verified":false,"followers_count":826097,"friends_count":1,"listed_count":662,"favourites_count":43,"statuses_count":9656,"created_at":"Tue Feb 19 23:39:47 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3280084930\/b28aba42a62b239b5883d6f3249a3418_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3280084930\/b28aba42a62b239b5883d6f3249a3418_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198988510\/1361495590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3445,"favorite_count":6353,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660247930578731009,"id_str":"660247930578731009","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","url":"https:\/\/t.co\/Ap1LFtfGUo","display_url":"pic.twitter.com\/Ap1LFtfGUo","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/660247965479514112\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":660247965479514112,"source_status_id_str":"660247965479514112","source_user_id":61003804,"source_user_id_str":"61003804"}]},"extended_entities":{"media":[{"id":660247930578731009,"id_str":"660247930578731009","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","url":"https:\/\/t.co\/Ap1LFtfGUo","display_url":"pic.twitter.com\/Ap1LFtfGUo","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/660247965479514112\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":660247965479514112,"source_status_id_str":"660247965479514112","source_user_id":61003804,"source_user_id_str":"61003804","video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/240x240\/ZLlEBz7Bf4CRHpA0.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/480x480\/2f9OsRBsotXEyzBJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/pl\/_OPyvBU4NoAUu_SR.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/pl\/_OPyvBU4NoAUu_SR.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/480x480\/2f9OsRBsotXEyzBJ.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CommonWhiteGirI","name":"Common White Girl","id":1198988510,"id_str":"1198988510","indices":[3,19]}],"symbols":[],"media":[{"id":660247930578731009,"id_str":"660247930578731009","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","url":"https:\/\/t.co\/Ap1LFtfGUo","display_url":"pic.twitter.com\/Ap1LFtfGUo","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/660247965479514112\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":660247965479514112,"source_status_id_str":"660247965479514112","source_user_id":61003804,"source_user_id_str":"61003804"}]},"extended_entities":{"media":[{"id":660247930578731009,"id_str":"660247930578731009","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660247930578731009\/pu\/img\/e4nhfODuM16uUJ-G.jpg","url":"https:\/\/t.co\/Ap1LFtfGUo","display_url":"pic.twitter.com\/Ap1LFtfGUo","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/660247965479514112\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":660247965479514112,"source_status_id_str":"660247965479514112","source_user_id":61003804,"source_user_id_str":"61003804","video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/240x240\/ZLlEBz7Bf4CRHpA0.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/480x480\/2f9OsRBsotXEyzBJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/pl\/_OPyvBU4NoAUu_SR.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/pl\/_OPyvBU4NoAUu_SR.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660247930578731009\/pu\/vid\/480x480\/2f9OsRBsotXEyzBJ.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644890935296,"id_str":"663727644890935296","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/JSEZzoqHY5","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":478300379,"id_str":"478300379","name":"Humbled\u2728","screen_name":"ox_Royal_ox","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1881,"friends_count":1730,"listed_count":3,"favourites_count":1126,"statuses_count":66148,"created_at":"Mon Jan 30 04:00:56 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000058706499\/69ce06ec064295206807d5ca9b537b92.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000058706499\/69ce06ec064295206807d5ca9b537b92.jpeg","profile_background_tile":true,"profile_link_color":"7F03B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650137147131961345\/RxGOLcOs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650137147131961345\/RxGOLcOs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478300379\/1439606685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JSEZzoqHY5","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903501825,"id_str":"663727644903501825","text":"\u8a18\u4e8b\u3092\u516c\u958b\u3057\u307e\u3057\u305f\u3002\u305c\u3072\u3054\u89a7\u4e0b\u3055\u3044\u3002https:\/\/t.co\/M4Z084MQ38","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2177617975,"id_str":"2177617975","name":"\u6e05\u539f\u60a0\uff20\u5b66\u751f\u8d77\u696d\u5bb6","screen_name":"gakuseikigyou37","location":null,"url":"http:\/\/ameblo.jp\/kiyohara-yu\/","description":"\u73fe\u5f79\u5927\u5b66\u751f\u3067\u3059\u3002\u30cd\u30c3\u30c8\u30d3\u30b8\u30cd\u30b9\u3067\u751f\u8a08\u7acb\u3066\u3066\u307e\u3059\u3002\u8ab0\u304b\u306e\u5f79\u306b\u7acb\u3066\u305f\u3089\u3044\u3044\u306a\u3068\u601d\u3044\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":801,"friends_count":776,"listed_count":2,"favourites_count":0,"statuses_count":4623,"created_at":"Wed Nov 06 07:51:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000701735236\/27e593c75778de087b0851d637f06da0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000701735236\/27e593c75778de087b0851d637f06da0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M4Z084MQ38","expanded_url":"http:\/\/ameblo.jp\/kiyohara-yu\/","display_url":"ameblo.jp\/kiyohara-yu\/","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899315714,"id_str":"663727644899315714","text":"@yuki__0404 @Faaaa1226 @aka_dnds \n\n\u6c34\u304c\u5782\u308c\u3066\u304f\u308b\u3093\u3060\u306d\u3002\n\u3058\u3083\u3042\u305d\u308c\u306b\u3064\u3044\u3066\u307e\u305f\n\u8003\u3048\u3066\u307f\u3088\u3046\u306d\u3002(\u3044\u3084\u3001\u304a\u524d\u304b\u3089\u306e\u30a2\u30c9\u30d0\u30a4\u30b9\u306f\uff1f)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727409586302976,"in_reply_to_status_id_str":"663727409586302976","in_reply_to_user_id":3075044749,"in_reply_to_user_id_str":"3075044749","in_reply_to_screen_name":"yuki__0404","user":{"id":3029812439,"id_str":"3029812439","name":"\u304d\u3069\u3050\u3061\u304b\u307b","screen_name":"c125a97g","location":null,"url":"http:\/\/instagram.com\/kaho_97_","description":"\u3068\u304f\u3057\u307e \u21e8 \u3053\u3046\u3079","protected":false,"verified":false,"followers_count":143,"friends_count":147,"listed_count":0,"favourites_count":638,"statuses_count":1965,"created_at":"Wed Feb 11 08:12:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661759235642929152\/r80ii4ZW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661759235642929152\/r80ii4ZW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3029812439\/1444974542","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuki__0404","name":"yuki maekawa","id":3075044749,"id_str":"3075044749","indices":[0,11]},{"screen_name":"Faaaa1226","name":"mako","id":2992131077,"id_str":"2992131077","indices":[12,22]},{"screen_name":"aka_dnds","name":"\u305f\u3060\u3042\u304b\u308a","id":2422193868,"id_str":"2422193868","indices":[23,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878372864,"id_str":"663727644878372864","text":"RT @dawningskai: \uc190 \uba38\ub9ac \uc704\ub85c \uc190 @MnetMAMA \uc190 \uba38\ub9ac \uc704\ub85c \uc190 \uba38\ub9ac \uc704\ub85c \uc190 #2015MAMA \uc190 \uba38\ub9ac \uc704\ub85c \uc6d0 \ud22c #EXO \uc4f0\ub9ac \ud3ec \ub81b\uce20 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uc704 \uc544 \uc774 \uc5d1 \uc18c #CALLMEBABY \ub81b\uce20 \uca5c \uca5c \uca5c \uca5c \uca5c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2196736698,"id_str":"2196736698","name":"utami","screen_name":"utarami","location":null,"url":null,"description":"EXO-L. KAI. JONGIN. NINI'S BAE. EXO IS ONE. EXO & EXO-L IS DESTINY. I'm Indonesian so I prefer tweeting in bahasa :)","protected":false,"verified":false,"followers_count":280,"friends_count":144,"listed_count":2,"favourites_count":2620,"statuses_count":17677,"created_at":"Fri Nov 15 22:47:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/527983064555597825\/y5K0Koca.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/527983064555597825\/y5K0Koca.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657516213719822336\/kx33mCCC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657516213719822336\/kx33mCCC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2196736698\/1440849930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:20 +0000 2015","id":663722794497220612,"id_str":"663722794497220612","text":"\uc190 \uba38\ub9ac \uc704\ub85c \uc190 @MnetMAMA \uc190 \uba38\ub9ac \uc704\ub85c \uc190 \uba38\ub9ac \uc704\ub85c \uc190 #2015MAMA \uc190 \uba38\ub9ac \uc704\ub85c \uc6d0 \ud22c #EXO \uc4f0\ub9ac \ud3ec \ub81b\uce20 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uca5c\ud504 \uc704 \uc544 \uc774 \uc5d1 \uc18c #CALLMEBABY \ub81b\uce20 \uca5c \uca5c \uca5c \uca5c \uca5c \uc704 \uc544 \uc774 \uc5d1 \uc18c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3260024022,"id_str":"3260024022","name":"\uc0c8\ubcbc\uce74\ub298","screen_name":"dawningskai","location":"\uad6c\uc0ac\uc988","url":"http:\/\/blog.naver.com\/dawningskai","description":"EXO FANART \/ \uadf8\ub9bcQT=X","protected":false,"verified":false,"followers_count":4596,"friends_count":63,"listed_count":28,"favourites_count":548,"statuses_count":2732,"created_at":"Mon Jun 29 16:06:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"191919","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657632138137726976\/-U7Ev-zV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657632138137726976\/-U7Ev-zV.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662697088560467968\/lhWcsB5a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662697088560467968\/lhWcsB5a_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3260024022\/1446148450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":1,"entities":{"hashtags":[{"text":"2015MAMA","indices":[38,47]},{"text":"EXO","indices":[60,64]},{"text":"CALLMEBABY","indices":[98,109]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[10,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[55,64]},{"text":"EXO","indices":[77,81]},{"text":"CALLMEBABY","indices":[115,126]}],"urls":[],"user_mentions":[{"screen_name":"dawningskai","name":"\uc0c8\ubcbc\uce74\ub298","id":3260024022,"id_str":"3260024022","indices":[3,15]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[27,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644890951681,"id_str":"663727644890951681","text":"@KingSRKMccullum y u so insecure :p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":61203641,"in_reply_to_user_id_str":"61203641","in_reply_to_screen_name":"KingSRKMccullum","user":{"id":54848526,"id_str":"54848526","name":"Random Singh","screen_name":"toxicsunny","location":"Chandigarh","url":null,"description":"Ranveer \u2764\ufe0f Priyanka \u2764\ufe0f 31-05-15\/01-06-15\/02-06-15\/07-06-15\/19-06-15\/24-08-15\/04-10-15 \u2764\ufe0f Ranveerian For Life \u2764\ufe0f Dil Dhadakne Do \u2764\ufe0f KRSS \u2764\ufe0f Living The Dream","protected":false,"verified":false,"followers_count":1128,"friends_count":209,"listed_count":5,"favourites_count":10359,"statuses_count":46526,"created_at":"Wed Jul 08 09:29:35 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000170442145\/gl0k3Nn2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000170442145\/gl0k3Nn2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352425613557760\/cNPdBjA3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352425613557760\/cNPdBjA3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54848526\/1444579946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KingSRKMccullum","name":"FARHAN","id":61203641,"id_str":"61203641","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903669760,"id_str":"663727644903669760","text":"RT @ambershanelx: you ride for those that ride for you...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46793515,"id_str":"46793515","name":"Chocolate Drop \u2728","screen_name":"WhippedByTori_","location":"Chicago \u2708\ufe0f Greensboro","url":null,"description":"Petty Wap \u2665\ufe0f #MorganParkAlumna #NCAT19 #RoyalT","protected":false,"verified":false,"followers_count":2561,"friends_count":2007,"listed_count":4,"favourites_count":1655,"statuses_count":76913,"created_at":"Sat Jun 13 01:17:14 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115364635\/cf89999ebfec101cfcad5c4a65a8f406.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115364635\/cf89999ebfec101cfcad5c4a65a8f406.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658470851378024449\/EZhqC9n-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658470851378024449\/EZhqC9n-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46793515\/1446621891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:48:13 +0000 2015","id":663578817546616832,"id_str":"663578817546616832","text":"you ride for those that ride for you...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240481832,"id_str":"240481832","name":"\u062c\u0645\u064a\u0644","screen_name":"ambershanelx","location":"Bullcity","url":"http:\/\/xo-overdoseonpearls.tumblr.com\/","description":"\u2020 || #NCAT || #RoyalT || DUP || Petty \u265b","protected":false,"verified":false,"followers_count":3662,"friends_count":2924,"listed_count":3,"favourites_count":847,"statuses_count":49907,"created_at":"Thu Jan 20 01:20:25 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431631660837117952\/Mp9Wd4WA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431631660837117952\/Mp9Wd4WA.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"52B2DE","profile_text_color":"00FFC4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657264498777194496\/ShPmg20d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657264498777194496\/ShPmg20d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240481832\/1442030895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"a6c257c61f294ec1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a6c257c61f294ec1.json","place_type":"city","name":"Greensboro","full_name":"Greensboro, NC","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-80.029518,35.962623],[-80.029518,36.218171],[-79.685209,36.218171],[-79.685209,35.962623]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ambershanelx","name":"\u062c\u0645\u064a\u0644","id":240481832,"id_str":"240481832","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644891041792,"id_str":"663727644891041792","text":"RT @copecoruna: Ciudado con el #tr\u00e1fico en #AlfonsoMolina... \u00a1Hay una vaca circulando direcci\u00f3n salida! #Coru\u00f1a https:\/\/t.co\/4WDmC6aBTm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246864131,"id_str":"246864131","name":"Robeer! \u27bf","screen_name":"Robeer_18","location":"A Coru\u00f1a, Galicia","url":"https:\/\/soundcloud.com\/roberto-delgado-tesen","description":"Kaisser \u2764\nVuelvo como en septiembre, solitario. \nCuantas personas se largan en fin de verano.","protected":false,"verified":false,"followers_count":670,"friends_count":324,"listed_count":5,"favourites_count":19670,"statuses_count":102242,"created_at":"Thu Feb 03 16:35:11 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507246709148114944\/XxNMQFLM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507246709148114944\/XxNMQFLM.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663380485729554432\/YI4AcalF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663380485729554432\/YI4AcalF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246864131\/1443974302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:59:56 +0000 2015","id":663672361728765956,"id_str":"663672361728765956","text":"Ciudado con el #tr\u00e1fico en #AlfonsoMolina... \u00a1Hay una vaca circulando direcci\u00f3n salida! #Coru\u00f1a https:\/\/t.co\/4WDmC6aBTm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":394563222,"id_str":"394563222","name":"COPE Coru\u00f1a","screen_name":"copecoruna","location":"A Coru\u00f1a","url":"http:\/\/www.cope.es\/coruna","description":"A Coru\u00f1a. 96.9 FM || Whatsapp\n600 99 13 20 || Esc\u00fachanos: http:\/\/t.co\/AqJEp1wfio || Web y Podcast: http:\/\/t.co\/CeOoc7AoCN || Facebook: http:\/\/t.co\/E04wFvyUSX","protected":false,"verified":false,"followers_count":2690,"friends_count":487,"listed_count":76,"favourites_count":523,"statuses_count":10944,"created_at":"Thu Oct 20 08:31:16 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"253B9E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/736846474\/4c938293da9ddb9361302638617d49ec.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/736846474\/4c938293da9ddb9361302638617d49ec.jpeg","profile_background_tile":false,"profile_link_color":"41C9F2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1597570969\/logo_copecoru_a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1597570969\/logo_copecoru_a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394563222\/1401119942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":18,"entities":{"hashtags":[{"text":"tr\u00e1fico","indices":[15,23]},{"text":"AlfonsoMolina","indices":[27,41]},{"text":"Coru\u00f1a","indices":[88,95]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663672350181875712,"id_str":"663672350181875712","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","url":"https:\/\/t.co\/4WDmC6aBTm","display_url":"pic.twitter.com\/4WDmC6aBTm","expanded_url":"http:\/\/twitter.com\/copecoruna\/status\/663672361728765956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672350181875712,"id_str":"663672350181875712","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","url":"https:\/\/t.co\/4WDmC6aBTm","display_url":"pic.twitter.com\/4WDmC6aBTm","expanded_url":"http:\/\/twitter.com\/copecoruna\/status\/663672361728765956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tr\u00e1fico","indices":[31,39]},{"text":"AlfonsoMolina","indices":[43,57]},{"text":"Coru\u00f1a","indices":[104,111]}],"urls":[],"user_mentions":[{"screen_name":"copecoruna","name":"COPE Coru\u00f1a","id":394563222,"id_str":"394563222","indices":[3,14]}],"symbols":[],"media":[{"id":663672350181875712,"id_str":"663672350181875712","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","url":"https:\/\/t.co\/4WDmC6aBTm","display_url":"pic.twitter.com\/4WDmC6aBTm","expanded_url":"http:\/\/twitter.com\/copecoruna\/status\/663672361728765956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663672361728765956,"source_status_id_str":"663672361728765956","source_user_id":394563222,"source_user_id_str":"394563222"}]},"extended_entities":{"media":[{"id":663672350181875712,"id_str":"663672350181875712","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWfHfW4AAIKst.jpg","url":"https:\/\/t.co\/4WDmC6aBTm","display_url":"pic.twitter.com\/4WDmC6aBTm","expanded_url":"http:\/\/twitter.com\/copecoruna\/status\/663672361728765956\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663672361728765956,"source_status_id_str":"663672361728765956","source_user_id":394563222,"source_user_id_str":"394563222"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903497729,"id_str":"663727644903497729","text":"4 marcas pioneras que ya han tenido sus propios emojis personalizados en Twitter https:\/\/t.co\/Cku04G5z8g","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141089833,"id_str":"141089833","name":"ClicGlobal","screen_name":"clicglobal","location":"Buenos Aires, Argentina","url":"http:\/\/www.clicglobal.com","description":"Negocios Digitales. Dise\u00f1o, desarrollo y comunicaci\u00f3n web.\ninfo@clicglobal.com","protected":false,"verified":false,"followers_count":25,"friends_count":14,"listed_count":5,"favourites_count":8,"statuses_count":9083,"created_at":"Fri May 07 04:46:36 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000110952008\/52b72ee7b6b340c8871b88bed43ae888.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000110952008\/52b72ee7b6b340c8871b88bed43ae888.jpeg","profile_background_tile":false,"profile_link_color":"FF9900","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2F2F2","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000446123798\/ea400bd21198ee33c3dad9667adad4a4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000446123798\/ea400bd21198ee33c3dad9667adad4a4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141089833\/1440456635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Cku04G5z8g","expanded_url":"http:\/\/bit.ly\/1Hq8460","display_url":"bit.ly\/1Hq8460","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886732800,"id_str":"663727644886732800","text":"RT @r_yacco: #5\u6642\u304b\u30899\u6642\u307e\u3067 \u7b2c5\u8a71\u3002\u6f64\u5b50\u306e\u2026\u3068\u3044\u3046\u3088\u308a\u5973\u306e\u30ba\u30eb\u3055\u304c\u63cf\u304b\u308c\u305f\u56de\u3002\u305d\u308c\u3092\u969b\u7acb\u305f\u305b\u308b\u9ad8\u5dba\u306e\u7729\u3057\u3044\u304f\u3089\u3044\u306e\u7d14\u7c8b\u3055\u3068\u771f\u3063\u76f4\u3050\u3055\u3002\u857e\u304c\u307b\u3050\u308c\u82b1\u54b2\u304f\u3088\u3046\u306b\u3001\u56de\u3092\u8ffd\u3046\u3054\u3068\u512a\u3057\u3044\u7b11\u307f\u3092\u542b\u3080\u8868\u60c5\u304c\u3001\u9ad8\u8cb4\u306a\u8888\u88df\u306b\u5168\u304f\u898b\u52a3\u308a\u3057\u306a\u3044\u7f8e\u3057\u3055\u306f\u5c71P\u306a\u3089\u3067\u306f\u3002\u60b2\u3057\u307f\u306e\u4e2d\u3067\u3082\u7729\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":200860975,"id_str":"200860975","name":"\u3086\u3053","screen_name":"1213yuyu","location":null,"url":null,"description":"\u5c71\u4e0b\u667a\u4e45\/\u30a2\u30e1\u30d5\u30c8\/\u30a4\u30f3\u30d1\u30eb\u30b9","protected":false,"verified":false,"followers_count":57,"friends_count":50,"listed_count":0,"favourites_count":264,"statuses_count":6837,"created_at":"Sun Oct 10 13:35:50 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631669137912139777\/hqDwBvQE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631669137912139777\/hqDwBvQE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200860975\/1439437057","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:08:52 +0000 2015","id":663704812169498624,"id_str":"663704812169498624","text":"#5\u6642\u304b\u30899\u6642\u307e\u3067 \u7b2c5\u8a71\u3002\u6f64\u5b50\u306e\u2026\u3068\u3044\u3046\u3088\u308a\u5973\u306e\u30ba\u30eb\u3055\u304c\u63cf\u304b\u308c\u305f\u56de\u3002\u305d\u308c\u3092\u969b\u7acb\u305f\u305b\u308b\u9ad8\u5dba\u306e\u7729\u3057\u3044\u304f\u3089\u3044\u306e\u7d14\u7c8b\u3055\u3068\u771f\u3063\u76f4\u3050\u3055\u3002\u857e\u304c\u307b\u3050\u308c\u82b1\u54b2\u304f\u3088\u3046\u306b\u3001\u56de\u3092\u8ffd\u3046\u3054\u3068\u512a\u3057\u3044\u7b11\u307f\u3092\u542b\u3080\u8868\u60c5\u304c\u3001\u9ad8\u8cb4\u306a\u8888\u88df\u306b\u5168\u304f\u898b\u52a3\u308a\u3057\u306a\u3044\u7f8e\u3057\u3055\u306f\u5c71P\u306a\u3089\u3067\u306f\u3002\u60b2\u3057\u307f\u306e\u4e2d\u3067\u3082\u7729\u3057\u304f\u5149\u308a\u8f1d\u304f\u306e\u3060\u308d\u3046\u306a\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145444883,"id_str":"145444883","name":"\u3084\u3063\u3053\u3061\u3083\u3093","screen_name":"r_yacco","location":"\u6b66\u5eab\u4e4b\u8358","url":null,"description":"\u8272\u3005\u4f5c\u3063\u305f\u308a\u30a4\u30e9\u30b9\u30c8\u63cf\u304f\u304a\u4ed5\u4e8b\u306e\u4eba\u3002\u732b\u3068\u82b1\u3068\u6620\u753b\u3068\u97f3\u697d\u304c\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":62,"friends_count":47,"listed_count":1,"favourites_count":336,"statuses_count":6218,"created_at":"Wed May 19 00:36:38 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503944413446291456\/XpTJpbFc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503944413446291456\/XpTJpbFc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145444883\/1406446499","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":14,"entities":{"hashtags":[{"text":"5\u6642\u304b\u30899\u6642\u307e\u3067","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5\u6642\u304b\u30899\u6642\u307e\u3067","indices":[13,22]}],"urls":[],"user_mentions":[{"screen_name":"r_yacco","name":"\u3084\u3063\u3053\u3061\u3083\u3093","id":145444883,"id_str":"145444883","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899303424,"id_str":"663727644899303424","text":"Listen to Drake - Hotline Bling Feat. Conor Maynard (Griffin Stoller Remix) by Griffin Stoller #np on #SoundCloud https:\/\/t.co\/f1VLOHJ5C2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2717843337,"id_str":"2717843337","name":"SoundAddict ","screen_name":"ttruong88","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":67,"friends_count":258,"listed_count":0,"favourites_count":57,"statuses_count":709,"created_at":"Sat Jul 19 15:27:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494101277261844482\/QwEaDEDl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494101277261844482\/QwEaDEDl_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"np","indices":[95,98]},{"text":"SoundCloud","indices":[102,113]}],"urls":[{"url":"https:\/\/t.co\/f1VLOHJ5C2","expanded_url":"https:\/\/soundcloud.com\/griffin-stoller\/bling","display_url":"soundcloud.com\/griffin-stolle\u2026","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903497728,"id_str":"663727644903497728","text":"Keeping your attention on the here and now could be tricky bus... More for Aquarius https:\/\/t.co\/MhAZoeFJ3G","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359692347,"id_str":"359692347","name":"Kelly Ann","screen_name":"MissKittyAnn311","location":"Long Island, NY ","url":null,"description":null,"protected":false,"verified":false,"followers_count":145,"friends_count":214,"listed_count":4,"favourites_count":20,"statuses_count":2093,"created_at":"Mon Aug 22 01:04:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3703129832\/951908b59b805fa7726fe2a5dd0a1dad_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3703129832\/951908b59b805fa7726fe2a5dd0a1dad_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MhAZoeFJ3G","expanded_url":"http:\/\/bit.ly\/whBNNw","display_url":"bit.ly\/whBNNw","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644907671553,"id_str":"663727644907671553","text":"Third Star Lands Down Under, Ahead Of \u2018I\u2019m A Celebrity\u2019 https:\/\/t.co\/jARZD767IL","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2733244425,"id_str":"2733244425","name":"Kris & Becca Richens","screen_name":"RichensWorld","location":"Wales, United Kingdom","url":"http:\/\/RichensBlogs.com","description":"We are UK #Bloggers - We Blog about Family, Travel, Days Out , Weight Loss & Our Lives. Contact us at http:\/\/www.richensblogs.com\/?page_id=48 PR Friendly","protected":false,"verified":false,"followers_count":544,"friends_count":1259,"listed_count":15,"favourites_count":972,"statuses_count":3118,"created_at":"Mon Aug 04 12:38:48 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650063483166457856\/KeVMa3x5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650063483166457856\/KeVMa3x5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2733244425\/1443302235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jARZD767IL","expanded_url":"http:\/\/becca.richensblogs.com\/beccas-blog\/third-star-lands-down-under-ahead-of-im-a-celebrity\/","display_url":"becca.richensblogs.com\/beccas-blog\/th\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976666"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644882530304,"id_str":"663727644882530304","text":"A lighthearted interaction can feel quite intense while the Mo... More for Pisces https:\/\/t.co\/WR4Bl4JZjt","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53934811,"id_str":"53934811","name":"Mercedes","screen_name":"cupkake29","location":"Trinidad\/New Jersey","url":null,"description":"You can love Me \/ hate Me, either which way u choose I will always be ME","protected":false,"verified":false,"followers_count":28,"friends_count":119,"listed_count":0,"favourites_count":3,"statuses_count":1692,"created_at":"Sun Jul 05 15:44:48 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3513366563\/d36b0d13534e31a65be7e5b2d6130aa4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3513366563\/d36b0d13534e31a65be7e5b2d6130aa4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WR4Bl4JZjt","expanded_url":"http:\/\/bit.ly\/xHSyh0","display_url":"bit.ly\/xHSyh0","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976660"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644869918720,"id_str":"663727644869918720","text":"RT @JUNGKOOKcokr: [\ud83c\udf81] 11\uc6d4 9\uc77c! \uc2a4\ub178\uc6b0\ud53c\uce58 2\uc8fc\ub144\uacfc \ud568\uaed8 True color \uc120\uc785\uae08\uc774 \uc2dc\uc791\ub429\ub2c8\ub2e4. PM 9\uc2dc 1\ubd84\ubd80\ud130 \uc120\ucc29\uc21c 100\ubd84\uc5d0\uac90 \ubbf8\ub2c8\ud3ec\ud1a0\ubd81(50\uba85)\uacfc \uce74\ub4dc\uc9c0\uac11(50\uba85)\uc744 \uc120\ubb3c\ub85c \ub4dc\ub9bd\ub2c8\ub2e4! :D \uc790\uc138\ud55c \uacf5\uc9c0 \u25b6 https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3897393073,"id_str":"3897393073","name":"Jungkook_USA\u2726\u2765\u2766\u2741\u2740","screen_name":"JeonjungkookUSA","location":"United States","url":null,"description":"|| J E O N J U N G K O O K ~ U S A FANBASE || We Will bring the Best updates about our Golden Maknae throughout UNITED STATES. \u265a\u265a\u265a","protected":false,"verified":false,"followers_count":159,"friends_count":85,"listed_count":2,"favourites_count":283,"statuses_count":512,"created_at":"Thu Oct 15 00:55:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661647041500569600\/KpOMBiWa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661647041500569600\/KpOMBiWa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3897393073\/1446505026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:19:15 +0000 2015","id":663541329532551168,"id_str":"663541329532551168","text":"[\ud83c\udf81] 11\uc6d4 9\uc77c! \uc2a4\ub178\uc6b0\ud53c\uce58 2\uc8fc\ub144\uacfc \ud568\uaed8 True color \uc120\uc785\uae08\uc774 \uc2dc\uc791\ub429\ub2c8\ub2e4. PM 9\uc2dc 1\ubd84\ubd80\ud130 \uc120\ucc29\uc21c 100\ubd84\uc5d0\uac90 \ubbf8\ub2c8\ud3ec\ud1a0\ubd81(50\uba85)\uacfc \uce74\ub4dc\uc9c0\uac11(50\uba85)\uc744 \uc120\ubb3c\ub85c \ub4dc\ub9bd\ub2c8\ub2e4! :D \uc790\uc138\ud55c \uacf5\uc9c0 \u25b6 https:\/\/t.co\/y3si70gaUe","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2183987364,"id_str":"2183987364","name":"SNOWPEACH\u2744","screen_name":"JUNGKOOKcokr","location":"\uc798\uc790\ub124 \uc544\ubb34\uac83\ub3c4 \ubaa8\ub974\uace0 ","url":"http:\/\/jungkook.co.kr\/","description":"2016 Seasons Greeting True color http:\/\/snowpeachgs.tistory.com","protected":false,"verified":false,"followers_count":177089,"friends_count":43,"listed_count":1954,"favourites_count":136,"statuses_count":3166,"created_at":"Sat Nov 09 09:35:06 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638368078099681280\/t7BX6i1o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638368078099681280\/t7BX6i1o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2183987364\/1441033793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":203,"favorite_count":335,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/y3si70gaUe","expanded_url":"http:\/\/bit.ly\/Truecolor_KOR","display_url":"bit.ly\/Truecolor_KOR","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/y3si70gaUe","expanded_url":"http:\/\/bit.ly\/Truecolor_KOR","display_url":"bit.ly\/Truecolor_KOR","indices":[139,140]}],"user_mentions":[{"screen_name":"JUNGKOOKcokr","name":"SNOWPEACH\u2744","id":2183987364,"id_str":"2183987364","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895121408,"id_str":"663727644895121408","text":"26 Jahre Mauerfall: 20 Merkmale, die beweisen, dass Ost- und West-Berlin ... - FOCUS Online https:\/\/t.co\/oLfwImaIjq #DerOstlerIM3 #IM3","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3807962656,"id_str":"3807962656","name":"Der Ostler IM3","screen_name":"im3_der_ostler","location":null,"url":null,"description":"Hello Twitter! #DerOstlerIM3 #DerOstler #Osten #DDR #Filinchen #Spreegurken #DEUTSCHEDEMOKRATISCHEREPUBLIK #HONNECKER #ULBRICHT #STALIN #FERNSEHTURM #IM*","protected":false,"verified":false,"followers_count":257,"friends_count":987,"listed_count":1,"favourites_count":1,"statuses_count":351,"created_at":"Mon Sep 28 21:51:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648618326101487617\/x1oFdNL0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648618326101487617\/x1oFdNL0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3807962656\/1443477452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DerOstlerIM3","indices":[116,129]},{"text":"IM3","indices":[130,134]}],"urls":[{"url":"https:\/\/t.co\/oLfwImaIjq","expanded_url":"http:\/\/bit.ly\/1Sc8IEs","display_url":"bit.ly\/1Sc8IEs","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899315712,"id_str":"663727644899315712","text":"@shiro_himuten \uff96\uff9b(\uff40\u30fb\u03c9\u30fb\u00b4)\uff7d\uff78\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726603097149440,"in_reply_to_status_id_str":"663726603097149440","in_reply_to_user_id":3799842738,"in_reply_to_user_id_str":"3799842738","in_reply_to_screen_name":"shiro_himuten","user":{"id":3178078766,"id_str":"3178078766","name":"\u3059\u304f\u306a","screen_name":"suku289","location":"\u5909\u614b\u30b7\u30e7\u30fc\u30c8\u30e9\u30f3\u30c9\u6cca\u5730\u3001\u3064\u3089\u3089\u30eb\u30fc\u30e0","url":null,"description":"\u7d75\u3092\u63cf\u3044\u305f\u308a\u30a2\u30cb\u30e1\u3092\u898b\u305f\u308a\u30b2\u30fc\u30e0\u3092\u3057\u305f\u308a \u30a4\u30d9\u4e2d\u306f\u3046\u308b\u3055\u3044\u304b\u3082 \u30a2\u30a4\u30b3\u30f3\u30fb\u30d8\u30c3\u30c0\u30fc\u2192\u3010@suku289\u3011","protected":false,"verified":false,"followers_count":4716,"friends_count":4403,"listed_count":24,"favourites_count":1374,"statuses_count":2478,"created_at":"Tue Apr 28 10:41:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382799106248704\/tGP-eIXE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382799106248704\/tGP-eIXE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178078766\/1444486881","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shiro_himuten","name":"\u3072\u3080\u3066\u3093","id":3799842738,"id_str":"3799842738","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644869967872,"id_str":"663727644869967872","text":"Applied potential can reversibly induce a superconducting-insulator transition in lithium titanate thin films https:\/\/t.co\/v4XznKthwh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310136011,"id_str":"3310136011","name":"Greg Ricketts","screen_name":"gbricketts","location":"Concord, CA","url":null,"description":null,"protected":false,"verified":false,"followers_count":241,"friends_count":552,"listed_count":3,"favourites_count":631,"statuses_count":1658,"created_at":"Sun Aug 09 01:21:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654926850716659712\/AA3UI6X9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654926850716659712\/AA3UI6X9_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/v4XznKthwh","expanded_url":"http:\/\/phy.so\/366271792","display_url":"phy.so\/366271792","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899348480,"id_str":"663727644899348480","text":"@St_Cold6 \u672c\u4fdd\u306b\u30d0\u30ac\u30dc\u30f3\u30c9\u3063\u3066\u8a00\u3063\u3066\u3082\u3044\u307e\u3044\u3061\u30d4\u30f3\u3068\u304d\u3066\u306a\u304b\u3063\u305f\u3057\u3001\u30d0\u30ab\u30dc\u30f3\uff1f\u3068\u304b\u8a00\u3046\u3057\u3001\u3042\u3044\u3064\u306f\u672c\u5c4b\u3092\u8f9e\u3081\u308b\u3079\u304d\n\n\u4e95\u4e0a\u96c4\u5f66\u3055\u3093\u306b\u63cf\u3044\u3066\u3082\u3089\u3044\u307e\u3057\u305f\u3063\u3066\u8a00\u308f\u308c\u305f\u5f8c\u306b\u3088\u304f\u898b\u305f\u3089\u3001\u307e\u3093\u307e\u4e95\u4e0a\u96c4\u5f66\u3055\u3093\u306e\u753b\u98a8\u3067\u30d3\u30d3\u308b\u3002\u30d0\u30ac\u30dc\u30f3\u30c9\u3084\u306a\u3044\u304b\u3063\u3066\u306a\u3063\u305f\u308f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725936131477504,"in_reply_to_status_id_str":"663725936131477504","in_reply_to_user_id":566900246,"in_reply_to_user_id_str":"566900246","in_reply_to_screen_name":"St_Cold6","user":{"id":1332156522,"id_str":"1332156522","name":"Yusuke","screen_name":"ysk_b13","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":178,"friends_count":153,"listed_count":2,"favourites_count":229,"statuses_count":2339,"created_at":"Sat Apr 06 18:06:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546609456906121216\/A5Kt48dn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546609456906121216\/A5Kt48dn_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"St_Cold6","name":"\u30e4\u30b9","id":566900246,"id_str":"566900246","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644907704320,"id_str":"663727644907704320","text":"I've been at work for almost two hours and just now noticed that my leggings are see through... Awesome. #happymonday","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":443339336,"id_str":"443339336","name":"Makayla.","screen_name":"MorrisMakayla","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":342,"friends_count":297,"listed_count":1,"favourites_count":3462,"statuses_count":3599,"created_at":"Thu Dec 22 02:43:39 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646786792704749569\/h8e785Rt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646786792704749569\/h8e785Rt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/443339336\/1442777223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"happymonday","indices":[105,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976666"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874178560,"id_str":"663727644874178560","text":"@rabuotu \u5bc2\u3057\u3044\u306e\uff1f\u3069\u3046\u3057\u305f\u306e\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727586380394496,"in_reply_to_status_id_str":"663727586380394496","in_reply_to_user_id":1311116828,"in_reply_to_user_id_str":"1311116828","in_reply_to_screen_name":"rabuotu","user":{"id":2555460912,"id_str":"2555460912","name":"\u304d\u3085\u3093\u3059","screen_name":"kyuns_aksb","location":"\u8a08\u826f\u65e5\u5411\u5b50\u3068\u3067\u3093\u3071\u7d44.inc","url":null,"description":"\u305c\u3093\u3076\u541b\u306e\u305b\u3044\u3060\u3002","protected":false,"verified":false,"followers_count":187,"friends_count":405,"listed_count":6,"favourites_count":8203,"statuses_count":15151,"created_at":"Sun Jun 08 20:45:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658854994142081024\/qrDvKc5O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658854994142081024\/qrDvKc5O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2555460912\/1445998905","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rabuotu","name":"\u3089\u3076\u304a\u3002","id":1311116828,"id_str":"1311116828","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895109120,"id_str":"663727644895109120","text":"RT @ihavebigboobz: \ud83d\ude31\ud83d\ude0d\ud83d\ude18\ud83d\ude0eSimon Cowell's Secret Photos got Leaked!\n#4 made me Speechless!\ud83d\ude31\ud83d\ude0e\nhttps:\/\/t.co\/vclBSstMbN","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":744619975,"id_str":"744619975","name":"Waaaaay\u2b06","screen_name":"trustlet","location":"~\u007bH\u2765mble\u007d~","url":null,"description":"[ I share a variety of posts ]","protected":false,"verified":false,"followers_count":45457,"friends_count":34650,"listed_count":107,"favourites_count":70,"statuses_count":1054,"created_at":"Wed Aug 08 06:47:22 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481073091036983296\/C6qFZtk-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481073091036983296\/C6qFZtk-.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614808237360160768\/wZ6Jv_WA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614808237360160768\/wZ6Jv_WA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744619975\/1435416680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:23 +0000 2015","id":663727087044313088,"id_str":"663727087044313088","text":"\ud83d\ude31\ud83d\ude0d\ud83d\ude18\ud83d\ude0eSimon Cowell's Secret Photos got Leaked!\n#4 made me Speechless!\ud83d\ude31\ud83d\ude0e\nhttps:\/\/t.co\/vclBSstMbN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2808647116,"id_str":"2808647116","name":"Shauna","screen_name":"ihavebigboobz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5458,"friends_count":0,"listed_count":8,"favourites_count":0,"statuses_count":30,"created_at":"Sun Oct 05 17:44:41 +0000 2014","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214432999665664\/eM-qyylX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214432999665664\/eM-qyylX_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":126,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vclBSstMbN","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce545mpn2\/13yn3","display_url":"cards.twitter.com\/cards\/18ce545m\u2026","indices":[70,93]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vclBSstMbN","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce545mpn2\/13yn3","display_url":"cards.twitter.com\/cards\/18ce545m\u2026","indices":[89,112]}],"user_mentions":[{"screen_name":"ihavebigboobz","name":"Shauna","id":2808647116,"id_str":"2808647116","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644891095040,"id_str":"663727644891095040","text":"Que fantasma que es esta wacha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948656737,"id_str":"2948656737","name":"ChacaritaTeamo\u2661","screen_name":"MiliGomeez9","location":"Funebrera \u2661","url":"https:\/\/m.facebook.com\/MiLi.Chaca?ref=bookmark","description":"Trompetista , Funebrera , Dj y Bailarina De Rock And Roll \u266a\nClub Atl\u00e9tico Chacarita Jrs ,\nLos Aut\u00e9nticos Pretenciosos & Nada Maaas !\nInstagram : MiLiGomeez9","protected":false,"verified":false,"followers_count":127,"friends_count":75,"listed_count":0,"favourites_count":620,"statuses_count":4440,"created_at":"Mon Dec 29 07:14:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660173456311480329\/3fBCJUbn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660173456311480329\/3fBCJUbn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948656737\/1446242744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976662"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644869988352,"id_str":"663727644869988352","text":"\ud06c\uc73c..... https:\/\/t.co\/PTPTwD0y3D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1631744527,"id_str":"1631744527","name":"\uc624\ub298\ubd80\ud130\uacf5\ubd80\u270f\ubcf4\ub9ac","screen_name":"03220712_1009","location":"\uc774\ubbfc\ud601 \uc637 \uc704\uc758 \uba3c\uc9c0","url":null,"description":"\ube44\ud22c\ube44\ub294 \ub098\uc5d0\uac8c \ub2e4\uc9d0 ,\ucd5c\uace0 ,\ud3c9\ud654 ,\uc0ac\ub791 \u2764","protected":false,"verified":false,"followers_count":274,"friends_count":214,"listed_count":0,"favourites_count":15,"statuses_count":6784,"created_at":"Tue Jul 30 01:42:57 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699946269360128\/u3lJqU-Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699946269360128\/u3lJqU-Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1631744527\/1445772845","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727637387341824,"id_str":"663727637387341824","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxQYU8AA3TBG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxQYU8AA3TBG.jpg","url":"https:\/\/t.co\/PTPTwD0y3D","display_url":"pic.twitter.com\/PTPTwD0y3D","expanded_url":"http:\/\/twitter.com\/03220712_1009\/status\/663727644869988352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":404,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":700,"h":472,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727637387341824,"id_str":"663727637387341824","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxQYU8AA3TBG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxQYU8AA3TBG.jpg","url":"https:\/\/t.co\/PTPTwD0y3D","display_url":"pic.twitter.com\/PTPTwD0y3D","expanded_url":"http:\/\/twitter.com\/03220712_1009\/status\/663727644869988352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":404,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":700,"h":472,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079976657"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886745088,"id_str":"663727644886745088","text":"RT @shinproxy: \u5ddd\u4e0a\u6d0b\u5e73\u3055\u3093\u58f0\u5e2f\u7d50\u7bc0\u3001\u6025\u6027\u58f0\u5e2f\u708e\u767a\u75c7\u3067\u4ed9\u53f0\u30e9\u30a4\u30d6\u5ef6\u671f\u3063\u3066\u5927\u4e08\u592b\u304b\u3088...\n\u3042\u3093\u306a\u306b\u9ad8\u3044\u58f0\u3067\u3042\u3093\u3060\u3051\u6bce\u56de\u5168\u529b\u3067\u30e9\u30a4\u30d6\u3084\u3063\u3066\u305f\u3089\u30ce\u30c9\u306e\u8ca0\u62c5\u3082\u5927\u304d\u3044\u3088\u306d\u3002\u30e9\u30a4\u30d6\u5ef6\u671f\u306f\u8f9b\u3044\u3060\u308d\u3046\u3051\u3069\u4eca\u306f\u7121\u7406\u305b\u305a\u306b\u8eab\u4f53\u4f11\u3081\u3066\u6b32\u3057\u3044\u3002\n#Alexandros https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2467952310,"id_str":"2467952310","name":"\u3086\u305a\u30ce\u30f3\u3002","screen_name":"Nonno_1114","location":"12\/19\u30c9\u30ed\u30b9LIVE\u53c2\u6226\u4e88\u5b9a","url":null,"description":"*\u30b0\u30f3\u30de\u30fc\u5e1d\u56fd*SAfamily&\u30c9\u30ed\u30b9\u52e2followme!\u25b7\u25b6\ufe0e\u25b7\u25b6\ufe0eSPYAIR\u30fc\u2212-_NO SPYAIR NO LIFE\u263a\ufe0e_-\u2212\u30fc \u25b6\ufe0e\u25b7\u25b6\ufe0e\u25b7[Alexandros] \u30fc\u2212-_\u611b\u3057\u3066\u308b\u305c\uff01_-\uff0d\u30fc\u25ceMYFIRSTSTORY10\/10\u8db3\u5de5\u5927LIVE\u53c2\u6226\u6e08\u307f","protected":false,"verified":false,"followers_count":1096,"friends_count":1007,"listed_count":25,"favourites_count":14227,"statuses_count":7781,"created_at":"Mon Apr 28 16:02:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652858327190253569\/Gykl-_Hf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652858327190253569\/Gykl-_Hf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467952310\/1440940114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:58 +0000 2015","id":663726982060900352,"id_str":"663726982060900352","text":"\u5ddd\u4e0a\u6d0b\u5e73\u3055\u3093\u58f0\u5e2f\u7d50\u7bc0\u3001\u6025\u6027\u58f0\u5e2f\u708e\u767a\u75c7\u3067\u4ed9\u53f0\u30e9\u30a4\u30d6\u5ef6\u671f\u3063\u3066\u5927\u4e08\u592b\u304b\u3088...\n\u3042\u3093\u306a\u306b\u9ad8\u3044\u58f0\u3067\u3042\u3093\u3060\u3051\u6bce\u56de\u5168\u529b\u3067\u30e9\u30a4\u30d6\u3084\u3063\u3066\u305f\u3089\u30ce\u30c9\u306e\u8ca0\u62c5\u3082\u5927\u304d\u3044\u3088\u306d\u3002\u30e9\u30a4\u30d6\u5ef6\u671f\u306f\u8f9b\u3044\u3060\u308d\u3046\u3051\u3069\u4eca\u306f\u7121\u7406\u305b\u305a\u306b\u8eab\u4f53\u4f11\u3081\u3066\u6b32\u3057\u3044\u3002\n#Alexandros https:\/\/t.co\/ro79TsHNIV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2282346450,"id_str":"2282346450","name":"Shin","screen_name":"shinproxy","location":"\u5343\u8449\u21d4\u516d\u672c\u6728","url":"https:\/\/itunes.apple.com\/jp\/app\/earth-for-sekai-no-owari\/id857870876?l=en&mt=8","description":"\u27b8iPhone\u7248\u300cEarth for SEKAI NO OWARI\u300d\u958b\u767a\u8005 \u27b8\u90a6\u30ed\u30c3\u30af\u306f\u4eba\u751f\u25b6\ufe0eCDJ2014\u25b6\ufe0e\u3068\u3045\u308b\u304b\u3080\u6b66\u9053\u9928\u25b6\ufe0e\u30e1\u30c8\u30ed\u30c3\u30af2015\u25b6\ufe0eclubEARTH9th\u25b6\ufe0e\u8d85MOSH'SH PIT\u25b6\ufe0eTwilight City\u25b6\ufe0e\u30ed\u30c3\u30ad\u30f32015","protected":false,"verified":false,"followers_count":35564,"friends_count":36062,"listed_count":128,"favourites_count":50,"statuses_count":14869,"created_at":"Wed Jan 08 16:10:36 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503511106715787264\/FgCfZP0z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503511106715787264\/FgCfZP0z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2282346450\/1434101856","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":67,"entities":{"hashtags":[{"text":"Alexandros","indices":[104,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726979603021824,"id_str":"663726979603021824","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726979603021824,"id_str":"663726979603021824","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663726980181848064,"id_str":"663726980181848064","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILAGU8AAP9en.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILAGU8AAP9en.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663726980542496769,"id_str":"663726980542496769","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILBcUAAEtzLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILBcUAAEtzLZ.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663726980538351620,"id_str":"663726980538351620","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILBbUwAQixwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILBbUwAQixwp.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Alexandros","indices":[119,130]}],"urls":[],"user_mentions":[{"screen_name":"shinproxy","name":"Shin","id":2282346450,"id_str":"2282346450","indices":[3,13]}],"symbols":[],"media":[{"id":663726979603021824,"id_str":"663726979603021824","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726982060900352,"source_status_id_str":"663726982060900352","source_user_id":2282346450,"source_user_id_str":"2282346450"}]},"extended_entities":{"media":[{"id":663726979603021824,"id_str":"663726979603021824","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIK98UwAAKCUz.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726982060900352,"source_status_id_str":"663726982060900352","source_user_id":2282346450,"source_user_id_str":"2282346450"},{"id":663726980181848064,"id_str":"663726980181848064","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILAGU8AAP9en.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILAGU8AAP9en.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726982060900352,"source_status_id_str":"663726982060900352","source_user_id":2282346450,"source_user_id_str":"2282346450"},{"id":663726980542496769,"id_str":"663726980542496769","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILBcUAAEtzLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILBcUAAEtzLZ.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726982060900352,"source_status_id_str":"663726982060900352","source_user_id":2282346450,"source_user_id_str":"2282346450"},{"id":663726980538351620,"id_str":"663726980538351620","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILBbUwAQixwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILBbUwAQixwp.jpg","url":"https:\/\/t.co\/ro79TsHNIV","display_url":"pic.twitter.com\/ro79TsHNIV","expanded_url":"http:\/\/twitter.com\/shinproxy\/status\/663726982060900352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726982060900352,"source_status_id_str":"663726982060900352","source_user_id":2282346450,"source_user_id_str":"2282346450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976661"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874137600,"id_str":"663727644874137600","text":"@h_10_ri \n\u3055\u3059\u304c\u30a4\u30b1\u30e1\u30f3\u304c\u8a00\u3046\u3053\u3068\u306f\u9055\u3046\u305c\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727416968216576,"in_reply_to_status_id_str":"663727416968216576","in_reply_to_user_id":2503135362,"in_reply_to_user_id_str":"2503135362","in_reply_to_screen_name":"h_10_ri","user":{"id":2556857364,"id_str":"2556857364","name":"\u3051\u30fc\u3074\u30fc","screen_name":"keisuke765Y","location":"\u5ec3\u6821\u820e","url":null,"description":"\u30a2\u30a4\u30de\u30b9\/\u3051\u3044\u304a\u3093\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u7269\u8a9e\u30b7\u30ea\u30fc\u30ba...etc\u526f\u696d\u306f\u5b66\u751f\uff0f \u30b2\u30fc\u30e0\u3082\u3084\u3063\u3066\u307e\u3059\uff0f\u7d61\u307f\u5f85\u3063\u3066\u307e\u3075\uff0f7\u670818\u65e5\u30a2\u30a4\u30de\u30b910thLIVE\u53c2\u6226 \uff0f\u30a2\u30a4\u30b3\u30f3\u2192@laven_whi14","protected":false,"verified":false,"followers_count":3387,"friends_count":3205,"listed_count":54,"favourites_count":7711,"statuses_count":12772,"created_at":"Mon Jun 09 13:35:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655296979853967360\/Nkefyn9c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655296979853967360\/Nkefyn9c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2556857364\/1437277250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"h_10_ri","name":"\u3046\u3086\u305f\u305d","id":2503135362,"id_str":"2503135362","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976658"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644895256576,"id_str":"663727644895256576","text":"RT @liamoscamorta: @onetrousha opa xara","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3524527085,"id_str":"3524527085","name":"ana","screen_name":"onetrousha","location":"Marcelo \u2765 ","url":null,"description":"LEONGRID \u2764","protected":false,"verified":false,"followers_count":608,"friends_count":514,"listed_count":1,"favourites_count":825,"statuses_count":5506,"created_at":"Wed Sep 02 15:30:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663490289684860929\/s7LpFIFC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663490289684860929\/s7LpFIFC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3524527085\/1446649716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:39 +0000 2015","id":663727404272209921,"id_str":"663727404272209921","text":"@onetrousha opa xara","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726783364231168,"in_reply_to_status_id_str":"663726783364231168","in_reply_to_user_id":3524527085,"in_reply_to_user_id_str":"3524527085","in_reply_to_screen_name":"onetrousha","user":{"id":2262248732,"id_str":"2262248732","name":"ana maria","screen_name":"liamoscamorta","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16614,"friends_count":14633,"listed_count":22,"favourites_count":305,"statuses_count":63410,"created_at":"Thu Dec 26 03:30:46 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662359481951604736\/4WQcM5vD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662359481951604736\/4WQcM5vD.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662284839224242176\/_ynVG6VL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662284839224242176\/_ynVG6VL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2262248732\/1446736374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"onetrousha","name":"ana","id":3524527085,"id_str":"3524527085","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"liamoscamorta","name":"ana maria","id":2262248732,"id_str":"2262248732","indices":[3,17]},{"screen_name":"onetrousha","name":"ana","id":3524527085,"id_str":"3524527085","indices":[19,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079976663"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878376960,"id_str":"663727644878376960","text":"\u3068\u3044\u3046\u3053\u3068\u3067\u3053\u306e\u8863\u88c5\u8ab0\u304b\u7740\u3066\u5199\u771f\u64ae\u3089\u305b\u3066\u6b32\u3057\u3044\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544378872,"id_str":"544378872","name":"\u96c5","screen_name":"miyavi0720_2","location":"\u5c71\u57ce\u56fd","url":null,"description":"\u964d\u8c37\u6681\u3068\u6b4c\u4ed9\u306b\u8ca1\u5e03\u3092\u6367\u3052\u3064\u3064 \u8840\u754c\u6226\u7dda\u306b\u3082\u7247\u8db3\u7a81\u3063\u8fbc\u3093\u3067\u305f\u308a\u3001\u3042\u3093\u30b9\u30bf\u306b\u3069\u3063\u3077\u308a\u30cf\u30de\u3063\u305f\u308a\u2026 20\u2191\u3067\u8150\u3063\u3066\u307e\u3059\u306e\u3067\u8150\u767a\u8a00\u306b\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u3002\u597d\u304d\u306a\u5b50\u306f\u57fa\u672c\u53f3\u3001\u3067\u3082\u738b\u9053\u304b\u3089\u30de\u30a4\u30ca\u30fc\u307e\u3067\u4f55\u3067\u3082\u898b\u308b\u96d1\u98df\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":145,"friends_count":186,"listed_count":10,"favourites_count":3686,"statuses_count":13403,"created_at":"Tue Apr 03 14:03:13 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639648674876780544\/lmKsz10J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639648674876780544\/lmKsz10J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544378872\/1440772895","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644903501826,"id_str":"663727644903501826","text":"@kome238_szst @akym_03 \n\u3044\u3084\u3082\u3046\u307f\u304d\u304c\u304a\u3089\u3093\u3068\u3053\u3067\u3084\u3089\u3057\uff01\uff01\uff01\ud83d\ude23wwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726259373891584,"in_reply_to_status_id_str":"663726259373891584","in_reply_to_user_id":3170667139,"in_reply_to_user_id_str":"3170667139","in_reply_to_screen_name":"kome238_szst","user":{"id":1474825231,"id_str":"1474825231","name":"\u029a\u2133ikichun\u025e","screen_name":"928Mikichun","location":null,"url":null,"description":"\u305f\u3079\u3063\u3053LJK \u25a0\u2661\u25bd\u3007 BettyBoop \u6885\u3061\u3083\u3093\u3068\u307f\u308b\u304d\u30fc \u6bce\u65e5\u30d0\u30ea\u30cf\u30d4\u2728follow me\u25df\u0306\u25de\u0306\u2661","protected":false,"verified":false,"followers_count":256,"friends_count":268,"listed_count":1,"favourites_count":5384,"statuses_count":7033,"created_at":"Sat Jun 01 14:08:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394815984332800\/GBspG4F0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394815984332800\/GBspG4F0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1474825231\/1446248202","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kome238_szst","name":"\u3053\u3081\u305f\u306b\u3075\u307f\u3083","id":3170667139,"id_str":"3170667139","indices":[0,13]},{"screen_name":"akym_03","name":"\u3042\u3044\u308a\u3093.","id":1615416492,"id_str":"1615416492","indices":[14,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976665"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899483650,"id_str":"663727644899483650","text":"por si os la encontr\u00e1is cantando esa mierda, acordaos de que no es mi hermana, que es adoptada","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727465525870592,"in_reply_to_status_id_str":"663727465525870592","in_reply_to_user_id":1849584818,"in_reply_to_user_id_str":"1849584818","in_reply_to_screen_name":"todoundramaoye","user":{"id":1849584818,"id_str":"1849584818","name":"ll\u00e1malo equis","screen_name":"todoundramaoye","location":"Madr\u00ed","url":null,"description":"Me callo lo que hay, lo que hay es lo que toca y pa tocar el coraz\u00f3n es mejor no abrir la boca. \u00bfQui\u00e9n quiere vivir para siempre?","protected":false,"verified":false,"followers_count":171,"friends_count":176,"listed_count":1,"favourites_count":1354,"statuses_count":6364,"created_at":"Mon Sep 09 22:13:30 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460854366597967872\/d8m_bCki.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460854366597967872\/d8m_bCki.jpeg","profile_background_tile":true,"profile_link_color":"00FF7C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601327203331211264\/Va8dezqv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601327203331211264\/Va8dezqv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1849584818\/1433452976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644886884352,"id_str":"663727644886884352","text":"@phasegames It's beautiful https:\/\/t.co\/9EAhQ4xLZ6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2900347318,"in_reply_to_user_id_str":"2900347318","in_reply_to_screen_name":"phasegames","user":{"id":2156424519,"id_str":"2156424519","name":"Crum","screen_name":"Crumlies","location":"Ireland","url":"http:\/\/www.crumtees.crum.com","description":"Join my cult . Keepo\n50% off all cult merchandise on Wednesdays","protected":false,"verified":false,"followers_count":46,"friends_count":115,"listed_count":0,"favourites_count":799,"statuses_count":903,"created_at":"Sun Oct 27 23:17:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659000697183145984\/H9xnJFFF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659000697183145984\/H9xnJFFF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2156424519\/1439914271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"phasegames","name":"Phase Cait","id":2900347318,"id_str":"2900347318","indices":[0,11]}],"symbols":[],"media":[{"id":663727636808642560,"id_str":"663727636808642560","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxOOWsAAjSEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxOOWsAAjSEs.jpg","url":"https:\/\/t.co\/9EAhQ4xLZ6","display_url":"pic.twitter.com\/9EAhQ4xLZ6","expanded_url":"http:\/\/twitter.com\/Crumlies\/status\/663727644886884352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727636808642560,"id_str":"663727636808642560","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxOOWsAAjSEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxOOWsAAjSEs.jpg","url":"https:\/\/t.co\/9EAhQ4xLZ6","display_url":"pic.twitter.com\/9EAhQ4xLZ6","expanded_url":"http:\/\/twitter.com\/Crumlies\/status\/663727644886884352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976661"} +{"delete":{"status":{"id":663330700154769408,"id_str":"663330700154769408","user_id":3888129432,"user_id_str":"3888129432"},"timestamp_ms":"1447079976936"}} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644878352384,"id_str":"663727644878352384","text":"@dance01dct \n\u4f3c\u3066\u308b\u3084\u3093\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724176226709504,"in_reply_to_status_id_str":"663724176226709504","in_reply_to_user_id":3080000959,"in_reply_to_user_id_str":"3080000959","in_reply_to_screen_name":"dance01dct","user":{"id":2539823540,"id_str":"2539823540","name":"\u901f\u6c34 \u76f4\u4eba","screen_name":"hnbb414","location":null,"url":"http:\/\/Instagram.com\/nhbb414","description":"\u516b\u5e61\u21e8\u516b\u5e61\u5546\u696d\/pink\u56e3\/0513","protected":false,"verified":false,"followers_count":285,"friends_count":283,"listed_count":0,"favourites_count":297,"statuses_count":173,"created_at":"Sun Jun 01 15:08:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663028049378586624\/eacC1eQe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663028049378586624\/eacC1eQe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2539823540\/1445953026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dance01dct","name":"Honoka","id":3080000959,"id_str":"3080000959","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976659"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644899328000,"id_str":"663727644899328000","text":"@aomina5 \u304a\u3044www\u5909\u9854\u306e\u795e\u69d8\u2728\u2728\u2728\u3044\u3084\u3042\u3001\u3042\u306e\u6642\u3081\u3061\u3083\u3081\u3061\u3083\u697d\u3057\u304b\u3063\u305f\u301c\u301c\ud83d\ude2d\u307f\u306a\u307f\u3093\u4f1a\u3044\u305f\u304f\u306a\u308b\ud83d\udca6\ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727053322096640,"in_reply_to_status_id_str":"663727053322096640","in_reply_to_user_id":1399332302,"in_reply_to_user_id_str":"1399332302","in_reply_to_screen_name":"aomina5","user":{"id":768425101,"id_str":"768425101","name":"\u308b\u3063\u304f\u3093\u26be\ufe0eWS\u897f4M39b\u58f2\u308a\u5b50","screen_name":"04ru_ku","location":"\uc77c\ubcf8","url":"http:\/\/twpf.jp\/04ru_ku","description":"\u982d\u5f31\u3044\u767a\u8a00\u591a\u3044\u306e\u3067\u4e00\u5fdc18\u2191\u63a8\u5968F\/B\u3054\u81ea\u7531\u306b\u3069\u305e\u2661","protected":false,"verified":false,"followers_count":451,"friends_count":336,"listed_count":24,"favourites_count":8151,"statuses_count":50289,"created_at":"Sun Aug 19 23:25:10 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432844201747677184\/Iz8ElTel.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432844201747677184\/Iz8ElTel.jpeg","profile_background_tile":true,"profile_link_color":"420066","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658436473130123264\/zS3Bq9lM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658436473130123264\/zS3Bq9lM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768425101\/1446578477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aomina5","name":"\u307f\u306a\u307f@\u3044\u306e\u3076\u305f","id":1399332302,"id_str":"1399332302","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976664"} +{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640705040384,"id_str":"663727640705040384","text":"Remember when my sister got really unironically\/ironically into Hanscest and made me draw her this wallpaper. https:\/\/t.co\/VaSMyaVxhy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":526782118,"id_str":"526782118","name":"Forrest","screen_name":"shittycoyote","location":null,"url":null,"description":"ARtist???? icon: grrowled @ FA","protected":false,"verified":false,"followers_count":27,"friends_count":102,"listed_count":0,"favourites_count":145,"statuses_count":1161,"created_at":"Fri Mar 16 20:50:36 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131412","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574418892958797824\/HpkfPJ3c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574418892958797824\/HpkfPJ3c.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663634906254147584\/Vixrm-Aa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663634906254147584\/Vixrm-Aa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/526782118\/1446779413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727638926594049,"id_str":"663727638926594049","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxWHUEAEUKOr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxWHUEAEUKOr.png","url":"https:\/\/t.co\/VaSMyaVxhy","display_url":"pic.twitter.com\/VaSMyaVxhy","expanded_url":"http:\/\/twitter.com\/shittycoyote\/status\/663727640705040384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"large":{"w":1024,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727638926594049,"id_str":"663727638926594049","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxWHUEAEUKOr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxWHUEAEUKOr.png","url":"https:\/\/t.co\/VaSMyaVxhy","display_url":"pic.twitter.com\/VaSMyaVxhy","expanded_url":"http:\/\/twitter.com\/shittycoyote\/status\/663727640705040384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"large":{"w":1024,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079975664"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644907819008,"id_str":"663727644907819008","text":"La copa del mundo de Taekwondo ser\u00e1 en la Ciudad de M\u00e9xico https:\/\/t.co\/rwtGMy75UA","source":"\u003ca href=\"http:\/\/www.blastingnews.com\" rel=\"nofollow\"\u003eBlasting News\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636243488,"id_str":"636243488","name":"danbdog","screen_name":"danbdog","location":null,"url":null,"description":"Vuela cometas compuesto de hidr\u00f3geno, soplador de burbujas de jab\u00f3n, ne\u00f3fito en las artes del twitter.","protected":false,"verified":false,"followers_count":108,"friends_count":329,"listed_count":0,"favourites_count":6,"statuses_count":415,"created_at":"Sun Jul 15 15:13:06 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630672381\/4kk1sz029lwlutmb2y4o.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630672381\/4kk1sz029lwlutmb2y4o.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000413122108\/3255040b8f2f2d79137a57d8a2596811_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000413122108\/3255040b8f2f2d79137a57d8a2596811_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rwtGMy75UA","expanded_url":"http:\/\/mx.blastingnews.com\/deportes\/2015\/11\/la-copa-del-mundo-de-taekwondo-sera-en-la-ciudad-de-mexico-00644373.html","display_url":"mx.blastingnews.com\/deportes\/2015\/\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447079976666"} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644874174464,"id_str":"663727644874174464","text":"@nukoshibasan \uff7d\uff6f\u2026 https:\/\/t.co\/seweFAtyJH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727428406112256,"in_reply_to_status_id_str":"663727428406112256","in_reply_to_user_id":2773359296,"in_reply_to_user_id_str":"2773359296","in_reply_to_screen_name":"nukoshibasan","user":{"id":2381618838,"id_str":"2381618838","name":"\u3044\u308b\u304b\u304f\u3093","screen_name":"wkn_0818","location":"((( \uff7a\uff7c\uff76\uff9e\uff94\uff7c\uff83\uff68\uff70\uff8a\uff70\uff84\uff9e\uff7a\uff71 )))","url":"http:\/\/twpf.jp\/wkn_0818","description":"\u82e5\u83dc\u3063\u3066\u547c\u3093\u3067\u4e0b\u3055\u3044\u3002\u7d71\u4e00\u611f\u306a\u3044\u7cfb\u5973\u5b50","protected":false,"verified":false,"followers_count":669,"friends_count":835,"listed_count":12,"favourites_count":33745,"statuses_count":86308,"created_at":"Mon Mar 10 06:08:16 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"17487D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596671861695459329\/gUwwbQvm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596671861695459329\/gUwwbQvm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2381618838\/1426372377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nukoshibasan","name":"\u306c\u3053\u3057\u3070\u3055\u3093\u25ce","id":2773359296,"id_str":"2773359296","indices":[0,13]}],"symbols":[],"media":[{"id":663727637957742592,"id_str":"663727637957742592","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxSgUkAAtoFy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxSgUkAAtoFy.jpg","url":"https:\/\/t.co\/seweFAtyJH","display_url":"pic.twitter.com\/seweFAtyJH","expanded_url":"http:\/\/twitter.com\/wkn_0818\/status\/663727644874174464\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727637957742592,"id_str":"663727637957742592","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxSgUkAAtoFy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxSgUkAAtoFy.jpg","url":"https:\/\/t.co\/seweFAtyJH","display_url":"pic.twitter.com\/seweFAtyJH","expanded_url":"http:\/\/twitter.com\/wkn_0818\/status\/663727644874174464\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079976658"} +{"delete":{"status":{"id":663725472254005249,"id_str":"663725472254005249","user_id":3021148890,"user_id_str":"3021148890"},"timestamp_ms":"1447079976881"}} +{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727644907671552,"id_str":"663727644907671552","text":"@Hooberbloob - George Costanza had himself a nice little sideline going in that industry.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727007868559361,"in_reply_to_status_id_str":"663727007868559361","in_reply_to_user_id":11827792,"in_reply_to_user_id_str":"11827792","in_reply_to_screen_name":"Hooberbloob","user":{"id":523466363,"id_str":"523466363","name":"J E D ","screen_name":"Xheaudoil","location":null,"url":null,"description":"Here, there & everywhere - Gibberisher","protected":false,"verified":false,"followers_count":351,"friends_count":1997,"listed_count":5,"favourites_count":3969,"statuses_count":7404,"created_at":"Tue Mar 13 17:19:02 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2137564260\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2137564260\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hooberbloob","name":"Hooberbloob","id":11827792,"id_str":"11827792","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079976666"} +{"delete":{"status":{"id":622760472622698498,"id_str":"622760472622698498","user_id":3198844837,"user_id_str":"3198844837"},"timestamp_ms":"1447079977178"}} +{"delete":{"status":{"id":538938909422391296,"id_str":"538938909422391296","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079977525"}} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068613632,"id_str":"663727649068613632","text":"RT @RubenGrande_: @ArianaGrande Favorite Female Artist - Pop\/Rock #AMAs \ud83d\udc9f @AriVoteStats https:\/\/t.co\/JRXwpLhTwP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3134873486,"id_str":"3134873486","name":"\u2740Moonlight\u2740","screen_name":"xMufflies","location":"\u2661In Ariana Grande's heart\u2661","url":null,"description":"@ArianaGrande is my everything, forever and always\u2728 \u00b0\u208a\u00b7\u02c8\u2217 BUY FOCUS ON ITUNES \u2217\u02c8\u2027\u208a\u00b0","protected":false,"verified":false,"followers_count":923,"friends_count":1677,"listed_count":6,"favourites_count":2508,"statuses_count":3510,"created_at":"Fri Apr 03 09:13:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659981087591002112\/BqvFm8bM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659981087591002112\/BqvFm8bM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3134873486\/1437377266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 16:49:15 +0000 2015","id":657962065240465408,"id_str":"657962065240465408","text":"@ArianaGrande Favorite Female Artist - Pop\/Rock #AMAs \ud83d\udc9f @AriVoteStats https:\/\/t.co\/JRXwpLhTwP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":34507480,"in_reply_to_user_id_str":"34507480","in_reply_to_screen_name":"ArianaGrande","user":{"id":2766469101,"id_str":"2766469101","name":"Ariana Grande","screen_name":"RubenGrande_","location":"Honeymoon \u00c3ve, Spain \u2601\ufe0f","url":"http:\/\/Instagram.com\/rrubenvicente","description":"Ariana Grande \u2764\ufe0f\u2728","protected":false,"verified":false,"followers_count":128,"friends_count":77,"listed_count":0,"favourites_count":430,"statuses_count":2986,"created_at":"Wed Sep 10 17:37:02 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663322241418031104\/3qYq-ccd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663322241418031104\/3qYq-ccd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766469101\/1446223955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":150,"favorite_count":23,"entities":{"hashtags":[{"text":"AMAs","indices":[48,53]}],"urls":[],"user_mentions":[{"screen_name":"ArianaGrande","name":"Ariana Grande","id":34507480,"id_str":"34507480","indices":[0,13]},{"screen_name":"AriVoteStats","name":"Ariana Grande Votes","id":3767692872,"id_str":"3767692872","indices":[56,69]}],"symbols":[],"media":[{"id":657962058454081537,"id_str":"657962058454081537","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","url":"https:\/\/t.co\/JRXwpLhTwP","display_url":"pic.twitter.com\/JRXwpLhTwP","expanded_url":"http:\/\/twitter.com\/RubenGrande_\/status\/657962065240465408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":638,"h":893,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657962058454081537,"id_str":"657962058454081537","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","url":"https:\/\/t.co\/JRXwpLhTwP","display_url":"pic.twitter.com\/JRXwpLhTwP","expanded_url":"http:\/\/twitter.com\/RubenGrande_\/status\/657962065240465408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":638,"h":893,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ro"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[66,71]}],"urls":[],"user_mentions":[{"screen_name":"RubenGrande_","name":"Ariana Grande","id":2766469101,"id_str":"2766469101","indices":[3,16]},{"screen_name":"ArianaGrande","name":"Ariana Grande","id":34507480,"id_str":"34507480","indices":[18,31]},{"screen_name":"AriVoteStats","name":"Ariana Grande Votes","id":3767692872,"id_str":"3767692872","indices":[74,87]}],"symbols":[],"media":[{"id":657962058454081537,"id_str":"657962058454081537","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","url":"https:\/\/t.co\/JRXwpLhTwP","display_url":"pic.twitter.com\/JRXwpLhTwP","expanded_url":"http:\/\/twitter.com\/RubenGrande_\/status\/657962065240465408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":638,"h":893,"resize":"fit"}},"source_status_id":657962065240465408,"source_status_id_str":"657962065240465408","source_user_id":2766469101,"source_user_id_str":"2766469101"}]},"extended_entities":{"media":[{"id":657962058454081537,"id_str":"657962058454081537","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNAZHXIAEY2Vj.jpg","url":"https:\/\/t.co\/JRXwpLhTwP","display_url":"pic.twitter.com\/JRXwpLhTwP","expanded_url":"http:\/\/twitter.com\/RubenGrande_\/status\/657962065240465408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":638,"h":893,"resize":"fit"}},"source_status_id":657962065240465408,"source_status_id_str":"657962065240465408","source_user_id":2766469101,"source_user_id_str":"2766469101"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ro","timestamp_ms":"1447079977658"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097916416,"id_str":"663727649097916416","text":"RT @AmericaFCNatal: DEFINIDO!\nAlu\u00edsio Guerreiro \u00e9 o novo t\u00e9cnico do Mec\u00e3o. O treinador ser\u00e1 apresentado hoje, \u00e0s 16h, em entrevista coletiv\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43351574,"id_str":"43351574","name":"Alexandre Martins","screen_name":"alexandremv","location":"Natal \/ Brasil","url":"http:\/\/www.amvmktdigital.com.br","description":"Eternamente apaixonado pela Maiara Vanessa e pai do Alexandre Filho. Amo a minha fam\u00edlia e o @AmericaFCNatal.","protected":false,"verified":false,"followers_count":2009,"friends_count":1783,"listed_count":17,"favourites_count":598,"statuses_count":64300,"created_at":"Fri May 29 15:38:07 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563383396\/twitter_BG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563383396\/twitter_BG.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"990000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615694928409137153\/lJzyVpw0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615694928409137153\/lJzyVpw0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43351574\/1412477901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:55:51 +0000 2015","id":663701535013081088,"id_str":"663701535013081088","text":"DEFINIDO!\nAlu\u00edsio Guerreiro \u00e9 o novo t\u00e9cnico do Mec\u00e3o. O treinador ser\u00e1 apresentado hoje, \u00e0s 16h, em entrevista coletiva na sede provis\u00f3ria.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53528674,"id_str":"53528674","name":"Am\u00e9rica-RN OFICIAL","screen_name":"AmericaFCNatal","location":"Natal\/RN - Brasil","url":"http:\/\/www.americadenatal.com.br","description":"Twitter oficial do Am\u00e9rica de Natal. Facebook: http:\/\/www.facebook.com\/americadenatal","protected":false,"verified":false,"followers_count":55180,"friends_count":8977,"listed_count":240,"favourites_count":77,"statuses_count":48273,"created_at":"Fri Jul 03 23:13:47 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529445013214621696\/ZX6ZgeIt.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529445013214621696\/ZX6ZgeIt.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"A10003","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662338978192887808\/X_7ZGbTS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662338978192887808\/X_7ZGbTS_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AmericaFCNatal","name":"Am\u00e9rica-RN OFICIAL","id":53528674,"id_str":"53528674","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072799744,"id_str":"663727649072799744","text":"RT @biebersmaniabr: \"Scooter ficou tipo, 'Eu odeio dizer isso, mas o seu p\u00eanis est\u00e1 na internet...', e eu fiquei tipo, 'O qu\u00ea?'.\" - Justin \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219730887,"id_str":"1219730887","name":"\u3164","screen_name":"purposeourz","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"nao sei to loka","protected":false,"verified":false,"followers_count":2511,"friends_count":1795,"listed_count":17,"favourites_count":1758,"statuses_count":67078,"created_at":"Mon Feb 25 20:26:50 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550136756750667777\/7A0aL94S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550136756750667777\/7A0aL94S.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663122562088615936\/_lUd8frh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663122562088615936\/_lUd8frh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219730887\/1446935599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:49:12 +0000 2015","id":663563966917029888,"id_str":"663563966917029888","text":"\"Scooter ficou tipo, 'Eu odeio dizer isso, mas o seu p\u00eanis est\u00e1 na internet...', e eu fiquei tipo, 'O qu\u00ea?'.\" - Justin sobre suas nudes.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177404638,"id_str":"177404638","name":"Bieber Mania Brasil","screen_name":"biebersmaniabr","location":"equipebmbr@gmail.com","url":"http:\/\/www.biebermania.com.br","description":"Confira atualiza\u00e7\u00f5es di\u00e1rias na maior fonte de not\u00edcias de Justin Bieber da Am\u00e9rica Latina. Acesse http:\/\/www.lojabm.com","protected":false,"verified":false,"followers_count":342718,"friends_count":21829,"listed_count":1836,"favourites_count":1824,"statuses_count":262188,"created_at":"Thu Aug 12 01:40:49 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F181E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456641224506478593\/46ZA3xAS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456641224506478593\/46ZA3xAS.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"474247","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366055277424641\/RnmAWrFM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366055277424641\/RnmAWrFM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177404638\/1444440566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":789,"favorite_count":263,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"biebersmaniabr","name":"Bieber Mania Brasil","id":177404638,"id_str":"177404638","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072783360,"id_str":"663727649072783360","text":"Despues le voy a decir de ir a caminar!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948536671,"id_str":"2948536671","name":"Flor.","screen_name":"bembenuto_flor","location":"Coronel Dorrego","url":null,"description":null,"protected":false,"verified":false,"followers_count":153,"friends_count":123,"listed_count":0,"favourites_count":55,"statuses_count":3906,"created_at":"Mon Dec 29 05:39:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605564687024046080\/27dXsL9W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605564687024046080\/27dXsL9W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948536671\/1425492773","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649081196544,"id_str":"663727649081196544","text":"RT @Skinade: A huge thank you to all our customers&stockists for voting for us. We couldn't have done it without you! https:\/\/t.co\/UUgpkHa7\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":969976122,"id_str":"969976122","name":"Agostina Murgia","screen_name":"AgostinaSkinade","location":"London","url":"http:\/\/www.skinade.com","description":"@Skinade Partnership Manager for #London, #HarleyStreet, Marylebone, #Kensington & #Chelsea #Belgravia. DM for enquiries or email Agostina.Murgia@skinade.co.uk.","protected":false,"verified":false,"followers_count":858,"friends_count":1645,"listed_count":23,"favourites_count":740,"statuses_count":1915,"created_at":"Sun Nov 25 12:50:50 +0000 2012","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2915620989\/ca229876f361b29d21af866d8e9833fc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2915620989\/ca229876f361b29d21af866d8e9833fc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/969976122\/1422465240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:59:48 +0000 2015","id":663355238410280960,"id_str":"663355238410280960","text":"A huge thank you to all our customers&stockists for voting for us. We couldn't have done it without you! https:\/\/t.co\/UUgpkHa7aJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605512693,"id_str":"605512693","name":"skinade","screen_name":"Skinade","location":"London","url":"http:\/\/www.skinade.com","description":"Skinade is a #collagen based anti-ageing #Skincare drink. Recommended by skin experts WINNER Most innovative product. Follow us : https:\/\/instagram.com\/skinade","protected":false,"verified":true,"followers_count":23717,"friends_count":2512,"listed_count":75,"favourites_count":916,"statuses_count":5390,"created_at":"Mon Jun 11 15:31:13 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445930057937084416\/aw8ftVEi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445930057937084416\/aw8ftVEi.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529953211465998338\/coPkepn3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529953211465998338\/coPkepn3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605512693\/1424861009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663355229618991107,"id_str":"663355229618991107","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","url":"https:\/\/t.co\/UUgpkHa7aJ","display_url":"pic.twitter.com\/UUgpkHa7aJ","expanded_url":"http:\/\/twitter.com\/Skinade\/status\/663355238410280960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":366,"resize":"fit"},"large":{"w":708,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":647,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663355229618991107,"id_str":"663355229618991107","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","url":"https:\/\/t.co\/UUgpkHa7aJ","display_url":"pic.twitter.com\/UUgpkHa7aJ","expanded_url":"http:\/\/twitter.com\/Skinade\/status\/663355238410280960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":366,"resize":"fit"},"large":{"w":708,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":647,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Skinade","name":"skinade","id":605512693,"id_str":"605512693","indices":[3,11]}],"symbols":[],"media":[{"id":663355229618991107,"id_str":"663355229618991107","indices":[122,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","url":"https:\/\/t.co\/UUgpkHa7aJ","display_url":"pic.twitter.com\/UUgpkHa7aJ","expanded_url":"http:\/\/twitter.com\/Skinade\/status\/663355238410280960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":366,"resize":"fit"},"large":{"w":708,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":647,"resize":"fit"}},"source_status_id":663355238410280960,"source_status_id_str":"663355238410280960","source_user_id":605512693,"source_user_id_str":"605512693"}]},"extended_entities":{"media":[{"id":663355229618991107,"id_str":"663355229618991107","indices":[122,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ERVWcAMBDrG.jpg","url":"https:\/\/t.co\/UUgpkHa7aJ","display_url":"pic.twitter.com\/UUgpkHa7aJ","expanded_url":"http:\/\/twitter.com\/Skinade\/status\/663355238410280960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":366,"resize":"fit"},"large":{"w":708,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":647,"resize":"fit"}},"source_status_id":663355238410280960,"source_status_id_str":"663355238410280960","source_user_id":605512693,"source_user_id_str":"605512693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977661"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649102131200,"id_str":"663727649102131200","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/llko8MaLnc","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1948047354,"id_str":"1948047354","name":"\u0627\u0628\u0648 \u062d\u0646\u0627","screen_name":"abohna110","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":135,"listed_count":0,"favourites_count":181,"statuses_count":20796,"created_at":"Tue Oct 08 22:59:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510634269148839936\/9rqW8sJu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510634269148839936\/9rqW8sJu_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/llko8MaLnc","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079977666"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068593152,"id_str":"663727649068593152","text":"RT @cybersuperloser: Dice Jennifer Lawrence que ama comer y oh qu\u00e9 diosa es. Lo dice Gabourey Sidibe y qu\u00e9 puta gorda adelgaza toma las rie\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155573051,"id_str":"155573051","name":"Marina","screen_name":"Bonetellez","location":"Madrid","url":"http:\/\/www.lastfm.es\/user\/yellosubmarine1","description":"No me gusta la cerveza pero en el fondo soy buena pe\u00f1a.","protected":false,"verified":false,"followers_count":603,"friends_count":431,"listed_count":7,"favourites_count":27136,"statuses_count":62574,"created_at":"Mon Jun 14 14:16:32 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446749424971042816\/FsrNRBQQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446749424971042816\/FsrNRBQQ.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662072957288738816\/IJd5-r7V_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662072957288738816\/IJd5-r7V_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155573051\/1436817116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:34:23 +0000 2015","id":663681031191584768,"id_str":"663681031191584768","text":"Dice Jennifer Lawrence que ama comer y oh qu\u00e9 diosa es. Lo dice Gabourey Sidibe y qu\u00e9 puta gorda adelgaza toma las riendas de tu vida obesa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2592123648,"id_str":"2592123648","name":"cyber fan","screen_name":"cybersuperloser","location":"Palo Alto","url":"http:\/\/2000emo.tumblr.com","description":"Do you wanna come over later, to my house?\nWatch American beauty in the dark.\nAnd I'll hold your hand till the very end, the very end\n\nhttps:\/\/t.co\/4GmNT4C9la","protected":false,"verified":false,"followers_count":933,"friends_count":1474,"listed_count":12,"favourites_count":8913,"statuses_count":33770,"created_at":"Fri Jun 27 23:51:18 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539409386364338176\/-ev2RTDB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539409386364338176\/-ev2RTDB.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662028165968207872\/IAc7rrnG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662028165968207872\/IAc7rrnG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592123648\/1447053735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cybersuperloser","name":"cyber fan","id":2592123648,"id_str":"2592123648","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079977658"} +{"delete":{"status":{"id":647245649155502080,"id_str":"647245649155502080","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447079977720"}} +{"delete":{"status":{"id":647245833713225729,"id_str":"647245833713225729","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447079977729"}} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649093718016,"id_str":"663727649093718016","text":"Que lindo es despertarse a estar hora un lunes \ud83d\ude06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":575615073,"id_str":"575615073","name":"Nico Menochio","screen_name":"Nicolasmenochio","location":"Jovita","url":null,"description":"CAB\u2665CDMKJ\/ 7A721D85. http:\/\/instagram.com\/Nicomenochio","protected":false,"verified":false,"followers_count":792,"friends_count":513,"listed_count":1,"favourites_count":3043,"statuses_count":9202,"created_at":"Wed May 09 17:27:20 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585834289087950848\/L0-jjxp3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585834289087950848\/L0-jjxp3.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646444557673099264\/jAJbtNcI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646444557673099264\/jAJbtNcI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/575615073\/1442959303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079977664"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097973760,"id_str":"663727649097973760","text":"RT @jetlbomb: I'd like to speak to women who work in the motoring industry about their experiences with sexism. #journorequest #everydaysex\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182281489,"id_str":"182281489","name":"Mark","screen_name":"mstevenson83","location":"Norwich","url":"http:\/\/www.lifeinpixels.co.uk","description":"Agile \/ Scrum Project Management, Web Developer, Norwich City fan and Photography to-boot. @aberuni Graduate. Views are my own, not yours. #ncfc","protected":false,"verified":false,"followers_count":1568,"friends_count":861,"listed_count":108,"favourites_count":3958,"statuses_count":13567,"created_at":"Tue Aug 24 07:20:37 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642621636466864130\/5O7a-ETo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642621636466864130\/5O7a-ETo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182281489\/1441048627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:39 +0000 2015","id":663727406881054720,"id_str":"663727406881054720","text":"I'd like to speak to women who work in the motoring industry about their experiences with sexism. #journorequest #everydaysexism","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24533560,"id_str":"24533560","name":"Jess Shanahan","screen_name":"jetlbomb","location":"Norfolk, UK","url":"http:\/\/www.jessshanahan.com","description":"Road trip journalist. Editor at @LoveNorfolk & @TurnEightBlog. Motoring presenter\/producer at @CambridgeTVnews. Abarth owner. F1 fan. Motorsport PR. Youtuber.","protected":false,"verified":false,"followers_count":2873,"friends_count":2958,"listed_count":175,"favourites_count":575,"statuses_count":34971,"created_at":"Sun Mar 15 15:00:35 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"11A796","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578857138514194433\/jHBg-Vkg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578857138514194433\/jHBg-Vkg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24533560\/1428221596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"journorequest","indices":[98,112]},{"text":"everydaysexism","indices":[113,128]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"journorequest","indices":[112,126]},{"text":"everydaysexism","indices":[127,140]}],"urls":[],"user_mentions":[{"screen_name":"jetlbomb","name":"Jess Shanahan","id":24533560,"id_str":"24533560","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649085399040,"id_str":"663727649085399040","text":"RT @horans_hug: Qualcuno ha visto i miei polmoni? #4DaysUntilMITAM https:\/\/t.co\/I02nJ4wVj1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389101223,"id_str":"3389101223","name":"_allyouneedisabook_","screen_name":"_hug_me_Payno_","location":"Sicilia, Italia","url":null,"description":"Quando la gente alza l'indice per giudicare tu alza il medio per ringraziare ~Louis Tomlinson. \nDirectioner.\n~Zquad~\n\u2764Baby I'm perfect for you\u2764","protected":false,"verified":false,"followers_count":396,"friends_count":691,"listed_count":2,"favourites_count":5862,"statuses_count":13145,"created_at":"Thu Jul 23 12:21:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389101223\/1446376744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:43 +0000 2015","id":663726667374993408,"id_str":"663726667374993408","text":"Qualcuno ha visto i miei polmoni? #4DaysUntilMITAM https:\/\/t.co\/I02nJ4wVj1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3005533378,"id_str":"3005533378","name":"MyIrishMan,,","screen_name":"horans_hug","location":"In Niall's arms.","url":"http:\/\/I.love.Niall.com","description":"\u275dL'amore \u00e8 la prova che i brividi non sono sempre causati dal freddo.\u275e @NiallOfficial","protected":false,"verified":false,"followers_count":1112,"friends_count":770,"listed_count":4,"favourites_count":10202,"statuses_count":11687,"created_at":"Fri Jan 30 12:57:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660481077736284160\/BdcIRQRG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660481077736284160\/BdcIRQRG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3005533378\/1446305927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[34,50]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726665860784129,"id_str":"663726665860784129","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","url":"https:\/\/t.co\/I02nJ4wVj1","display_url":"pic.twitter.com\/I02nJ4wVj1","expanded_url":"http:\/\/twitter.com\/horans_hug\/status\/663726667374993408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726665860784129,"id_str":"663726665860784129","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","url":"https:\/\/t.co\/I02nJ4wVj1","display_url":"pic.twitter.com\/I02nJ4wVj1","expanded_url":"http:\/\/twitter.com\/horans_hug\/status\/663726667374993408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[50,66]}],"urls":[],"user_mentions":[{"screen_name":"horans_hug","name":"MyIrishMan,,","id":3005533378,"id_str":"3005533378","indices":[3,14]}],"symbols":[],"media":[{"id":663726665860784129,"id_str":"663726665860784129","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","url":"https:\/\/t.co\/I02nJ4wVj1","display_url":"pic.twitter.com\/I02nJ4wVj1","expanded_url":"http:\/\/twitter.com\/horans_hug\/status\/663726667374993408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663726667374993408,"source_status_id_str":"663726667374993408","source_user_id":3005533378,"source_user_id_str":"3005533378"}]},"extended_entities":{"media":[{"id":663726665860784129,"id_str":"663726665860784129","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4tKWIAEZPx1.jpg","url":"https:\/\/t.co\/I02nJ4wVj1","display_url":"pic.twitter.com\/I02nJ4wVj1","expanded_url":"http:\/\/twitter.com\/horans_hug\/status\/663726667374993408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663726667374993408,"source_status_id_str":"663726667374993408","source_user_id":3005533378,"source_user_id_str":"3005533378"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079977662"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649093758976,"id_str":"663727649093758976","text":"\u00bfAlguna explicaci\u00f3n a este calor inhumano?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1730146885,"id_str":"1730146885","name":"Aleks\u00e8i\u00e9vich P\u00e1vlov","screen_name":"rusoputero","location":"Rusia-Londres","url":"http:\/\/ask.fm\/rusoputero","description":"#PR - 32. Muggle. Profesor de estudios muggles. Jefe de Hufflepuff. Zar del drama. [Mafia Malfoy] @MiniRuso_ y @BlackAltairW #LeagueOfJustice","protected":false,"verified":false,"followers_count":640,"friends_count":279,"listed_count":9,"favourites_count":5499,"statuses_count":68743,"created_at":"Wed Sep 04 22:50:03 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584333691234623489\/eXEh7Hd6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584333691234623489\/eXEh7Hd6.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726621900341248\/46J6j-73_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726621900341248\/46J6j-73_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1730146885\/1440858471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079977664"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649081188352,"id_str":"663727649081188352","text":"@SleeperAthletes @gloryboy_Sean still a \ud83d\udc0a\ud83d\udc0a in his heart. Look at his face\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727378871541761,"in_reply_to_status_id_str":"663727378871541761","in_reply_to_user_id":158345507,"in_reply_to_user_id_str":"158345507","in_reply_to_screen_name":"SleeperAthletes","user":{"id":3228299102,"id_str":"3228299102","name":"8-1 #BeatTheCocks","screen_name":"GatorDesignz","location":null,"url":null,"description":"Gator fan that loves to make edits| #GatorGang| #GatorNation| #LongLive55| Owner- @TJKalick| My QB wears #3","protected":false,"verified":false,"followers_count":629,"friends_count":465,"listed_count":2,"favourites_count":515,"statuses_count":1750,"created_at":"Wed May 27 14:44:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643550708407517184\/A2eFsN45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643550708407517184\/A2eFsN45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228299102\/1446940219","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SleeperAthletes","name":"Sleeper Athletes","id":158345507,"id_str":"158345507","indices":[0,16]},{"screen_name":"gloryboy_Sean","name":"\u3073 BIG-10 \u3073","id":1330797782,"id_str":"1330797782","indices":[17,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977661"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649076830208,"id_str":"663727649076830208","text":"\u3053\u308c\u306f\u3060\u308c\u3084@Petoyama","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154874368,"id_str":"154874368","name":"M-MIKOTO","screen_name":"mikotchan","location":"\u5175\u5eab\u306e\u6771\u3067\u54b2\u591c\u3055\u3093\u3068\u771f\u59eb\u3061\u3083\u3093\u306e\u96a3","url":"http:\/\/uncle398.blogspot.jp\/","description":"\u6771\u65b9\u3001\u304a\u7d75\u63cf\u304d\u3001\u30ac\u30f3\u30d7\u30e9\u3001\u6599\u7406\u7b49\u3092\u55dc\u3080\u30e9\u30a4\u30c8\u306a\u30e2\u30c7\u30e9\u30a4\u30d0\u30fc\u3002\u4e2d\u8eab\u306f\u54b2\u591c\u3055\u3093\u597d\u304d\u3067\u771f\u59eb\u3061\u3083\u3093\u63a8\u3057\u306e\u304a\u3063\u3055\u3093\u3067\u3042\u308b\u3002\u30c4\u30a4\u30d7\u30ed\u21d2http:\/\/twpf.jp\/mikotchan pixiv\u21d2http:\/\/bit.ly\/1CF27dh","protected":false,"verified":false,"followers_count":1198,"friends_count":1208,"listed_count":128,"favourites_count":12142,"statuses_count":603725,"created_at":"Sat Jun 12 13:01:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663641992245604352\/iezfmK2L.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663641992245604352\/iezfmK2L.png","profile_background_tile":false,"profile_link_color":"2841BD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624558692344532992\/UANk9viD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624558692344532992\/UANk9viD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154874368\/1433937164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Petoyama","name":"\u30c7\u30d1\u30e4\u30de","id":1226683117,"id_str":"1226683117","indices":[6,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977660"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649081004032,"id_str":"663727649081004032","text":"\u3044\u3084\u3082\u3049\u4f55\u304c\u30e4\u30d0\u30a4\u3063\u3066\u2025\u2026\n\n\u6708\uff19\u30e4\u30d0\u3044\u6700\u5f37\u904e\u304e\u308b\u4e00\u751f\u30cb\u30e4\u30cb\u30e4\ud83d\udc6b\ud83d\udc95\n\u898b\u3088\u308b\u3060\u3051\u3067\u5e78\u305b\u6e80\u8db3\ud83d\ude0d\ud83d\ude0d\ud83d\udc97\n\n\u826f\u3044\u6c17\u5206\u306e\u307e\u307e\u5bdd\u307e\u3057\u3087\u304a\u3084\u3059\u307f\ud83d\udca4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115029582,"id_str":"3115029582","name":"\u2765\u2765\uff71\uff94\uff76\u2765\u2765","screen_name":"ayaka85111","location":"Hyde G-dragon","url":null,"description":"\u5fdc\u795e3\u5e74\u32a8FollowMe\u2765\u2765\u2765\u3000Since 9.3~\u2661\n\n\n\n\n@H27_0903\u2190\u3053\u3063\u3061\u3082FollowMe\u2765\u2765\u2765","protected":false,"verified":false,"followers_count":498,"friends_count":748,"listed_count":0,"favourites_count":958,"statuses_count":2264,"created_at":"Sun Mar 29 10:16:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663172629025566721\/McqJQ9kN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663172629025566721\/McqJQ9kN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115029582\/1442499713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977661"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072615424,"id_str":"663727649072615424","text":"RT @doncasthrust: \"who tf leaked the video?!\"\nharry:\n #OhNoBriana https:\/\/t.co\/F3MOpIU8g7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277203416,"id_str":"3277203416","name":"Horan","screen_name":"pitchamol1","location":null,"url":null,"description":"\\\\ \u2763 A dream is only a dream.. until you decide to make it real \u2763 \/\/ - HS http:\/\/smarturl.it\/1DmitamDXiT \u2766","protected":false,"verified":false,"followers_count":264,"friends_count":221,"listed_count":3,"favourites_count":8879,"statuses_count":10578,"created_at":"Sun Jul 12 06:40:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663560758039457792\/ONXpT0zS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663560758039457792\/ONXpT0zS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277203416\/1446377213","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:58:51 +0000 2015","id":663536197256347648,"id_str":"663536197256347648","text":"\"who tf leaked the video?!\"\nharry:\n #OhNoBriana https:\/\/t.co\/F3MOpIU8g7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922469191,"id_str":"922469191","name":"\u25df\u033d\u25de\u033d dEAth \u25df\u033d\u25de\u033d","screen_name":"doncasthrust","location":"california \u263c","url":null,"description":"if i didnt have you id never seen the sun you taught me how to be someone @Louis_Tomlinson","protected":false,"verified":false,"followers_count":2927,"friends_count":1560,"listed_count":11,"favourites_count":1791,"statuses_count":28217,"created_at":"Sat Nov 03 04:50:26 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"090A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450486694827921408\/BcYf1k4y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450486694827921408\/BcYf1k4y.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661440987420495873\/-HuTFBgv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661440987420495873\/-HuTFBgv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922469191\/1446534858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":916,"favorite_count":735,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[36,47]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663536193234010112,"id_str":"663536193234010112","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","url":"https:\/\/t.co\/F3MOpIU8g7","display_url":"pic.twitter.com\/F3MOpIU8g7","expanded_url":"http:\/\/twitter.com\/doncasthrust\/status\/663536197256347648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663536193234010112,"id_str":"663536193234010112","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","url":"https:\/\/t.co\/F3MOpIU8g7","display_url":"pic.twitter.com\/F3MOpIU8g7","expanded_url":"http:\/\/twitter.com\/doncasthrust\/status\/663536197256347648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[54,65]}],"urls":[],"user_mentions":[{"screen_name":"doncasthrust","name":"\u25df\u033d\u25de\u033d dEAth \u25df\u033d\u25de\u033d","id":922469191,"id_str":"922469191","indices":[3,16]}],"symbols":[],"media":[{"id":663536193234010112,"id_str":"663536193234010112","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","url":"https:\/\/t.co\/F3MOpIU8g7","display_url":"pic.twitter.com\/F3MOpIU8g7","expanded_url":"http:\/\/twitter.com\/doncasthrust\/status\/663536197256347648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663536197256347648,"source_status_id_str":"663536197256347648","source_user_id":922469191,"source_user_id_str":"922469191"}]},"extended_entities":{"media":[{"id":663536193234010112,"id_str":"663536193234010112","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVapvVUAAAHBnb.jpg","url":"https:\/\/t.co\/F3MOpIU8g7","display_url":"pic.twitter.com\/F3MOpIU8g7","expanded_url":"http:\/\/twitter.com\/doncasthrust\/status\/663536197256347648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663536197256347648,"source_status_id_str":"663536197256347648","source_user_id":922469191,"source_user_id_str":"922469191"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072816132,"id_str":"663727649072816132","text":"RT @chanelpuke: my #1 talent is saying stupid things to people and immediately regretting it","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003892552,"id_str":"1003892552","name":"Synne","screen_name":"epleallergi","location":"Gj\u00f8vik, Norge","url":"http:\/\/instagram.com\/synneloken","description":"Passiv-aggressiv perfeksjonist av en feminist.","protected":false,"verified":false,"followers_count":1516,"friends_count":123,"listed_count":10,"favourites_count":8002,"statuses_count":22114,"created_at":"Tue Dec 11 11:59:51 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580420514952314880\/H2cO4lfR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580420514952314880\/H2cO4lfR.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350326922076160\/6ld8q8uc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350326922076160\/6ld8q8uc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1003892552\/1444036663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:27:01 +0000 2015","id":663543281893117952,"id_str":"663543281893117952","text":"my #1 talent is saying stupid things to people and immediately regretting it","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64005334,"id_str":"64005334","name":"what","screen_name":"chanelpuke","location":null,"url":null,"description":"wow this is definitely not a nashville party","protected":false,"verified":false,"followers_count":610904,"friends_count":22,"listed_count":824,"favourites_count":1215,"statuses_count":27066,"created_at":"Sat Aug 08 17:32:40 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606049876\/y5s1l8u41dx0s60k4tgi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606049876\/y5s1l8u41dx0s60k4tgi.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000856019032\/a8f26b7197d1cc03f8aed01812b48c56_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000856019032\/a8f26b7197d1cc03f8aed01812b48c56_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64005334\/1445897622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":703,"favorite_count":1507,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chanelpuke","name":"what","id":64005334,"id_str":"64005334","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649102151681,"id_str":"663727649102151681","text":"@sensaboria Sensa, \u00e9 meu top 3, sem d\u00favidas, assista","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727475885809665,"in_reply_to_status_id_str":"663727475885809665","in_reply_to_user_id":35583643,"in_reply_to_user_id_str":"35583643","in_reply_to_screen_name":"sensaboria","user":{"id":83211026,"id_str":"83211026","name":"F\u00e1bio","screen_name":"fsp4ever","location":null,"url":null,"description":"Lifa wiol p\u00f6mnuria ilian","protected":false,"verified":false,"followers_count":552,"friends_count":464,"listed_count":20,"favourites_count":1602,"statuses_count":90175,"created_at":"Sat Oct 17 20:16:11 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653271113498296321\/A30SoifP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653271113498296321\/A30SoifP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83211026\/1398294234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sensaboria","name":"\u72d0\u59eb","id":35583643,"id_str":"35583643","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079977666"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072611328,"id_str":"663727649072611328","text":"\u30c8\u30a4\u30ec\u306e\u771f\u4f3c(\u7b11)\u4e0d\u7279\u5b9a\u591a\u6570\u306e\u30e2\u30d6\u76f8\u624b\u306b\u516c\u8846\u4fbf\u6240\u7684\u306a\u4f7f\u308f\u308c\u65b9\u2026\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3971625860,"id_str":"3971625860","name":"\u306b\u3083\u307e\u3082\u306e\u3002(\u671f\u9650\u5207\u308c)","screen_name":"nymgr28aaat","location":null,"url":null,"description":"\u4e00\u6642\u7684\u306b\u677e\u95a2\u9023\u306e\u5410\u304d\u51fa\u3057\u3069\u3053\u308d\u3002\u30c1\u30e7\u30ed\u677e\u304c\u304b\u308f\u3044\u3044\u3002\u6b8b\u5ff5\u306a\u5927\u4eba\u3002\u304a\u4e0a\u54c1\u3067\u306a\u3044\u767a\u8a00\u3059\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u306e\u3067\u3001\u30d5\u30a9\u30ed\u30fc\u306f19\u2191\u4ee5\u4e0a\u3002","protected":false,"verified":false,"followers_count":52,"friends_count":19,"listed_count":0,"favourites_count":93,"statuses_count":357,"created_at":"Wed Oct 21 18:07:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660442441984557058\/fk2pvPc-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660442441984557058\/fk2pvPc-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068482561,"id_str":"663727649068482561","text":"RT @Sho0129Fuma0307: \u306a\u3093\u3060\u3053\u3044\u3064\u3064\u3093\u3067\u308c\u304b\u2661\n\u3082\u3046\u305f\u3060\u3067\u3055\u3048\u4eca\u65e5\u30c7\u30ec\u65e5\u306a\u306e\u306b\u3055\u3089\u306b\u3053\u3046\u3044\u3046\u3053\u3068\u3055\u308c\u308b\u3068\u3082\u30fc\u304d\u3085\u3093\u304d\u3085\u3093\u3068\u307e\u3093\u306a\u3044\ud83d\udc93 https:\/\/t.co\/TDsSzQgppO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288712759,"id_str":"3288712759","name":"\u30c1\u30ea\u30c8\u30de\u30c8\u306f\u73fe\u5b9f\u7684\u306a\u604b\u304c\u3057\u305f\u3044\u2026","screen_name":"gorilla__sh","location":"\u592b\u306f\u3057\u3093\u3079\u3048","url":null,"description":"\u3042\u306a\u305f\u306e\u98a8\u90aa\u306f\u3069\u3053\u304b\u3089\uff1f\u79c1\u306f\u8db3\u306e\u5c0f\u6307\u304b\u3089\uff01\uff01#\u96fb\u5b50\u30ec\u30f3\u30b8\u968a \u4e21\u60f3\u3044\u3060\u305e\u3070\u304b@Tanshio_1217","protected":false,"verified":false,"followers_count":116,"friends_count":111,"listed_count":7,"favourites_count":1138,"statuses_count":1587,"created_at":"Thu Jul 23 10:00:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663319117634473984\/VAd-Pp2Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663319117634473984\/VAd-Pp2Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3288712759\/1446729290","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:48:13 +0000 2015","id":663684513592049665,"id_str":"663684513592049665","text":"\u306a\u3093\u3060\u3053\u3044\u3064\u3064\u3093\u3067\u308c\u304b\u2661\n\u3082\u3046\u305f\u3060\u3067\u3055\u3048\u4eca\u65e5\u30c7\u30ec\u65e5\u306a\u306e\u306b\u3055\u3089\u306b\u3053\u3046\u3044\u3046\u3053\u3068\u3055\u308c\u308b\u3068\u3082\u30fc\u304d\u3085\u3093\u304d\u3085\u3093\u3068\u307e\u3093\u306a\u3044\ud83d\udc93 https:\/\/t.co\/TDsSzQgppO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3493743859,"id_str":"3493743859","name":"\u3053\u3068\u307f\u2729\u4f4e\u6d6e\u4e0a\u306e\u3064\u3082\u308a","screen_name":"Sho0129Fuma0307","location":null,"url":null,"description":"-\u2729\u2729\u2729\u2729*.\u2729\u2729\u2729\u3002\u2729\u2729\u2729\u83ca\u6c60\u98a8\u78e8\u2729\u2729\u2729\u3002\u2729\u2729\u2729*.\u2729\u2729\u2729\u2729- \u2661\u53d7\u3051\u5165\u308c\u96e3\u3044\u3053\u306e\u6bce\u65e5\u3092\u5207\u308a\u958b\u304f\u305f\u3081\u306b\u6226\u3044\u7d9a\u3051\u308d","protected":false,"verified":false,"followers_count":225,"friends_count":244,"listed_count":1,"favourites_count":4199,"statuses_count":4974,"created_at":"Tue Sep 08 14:07:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644478477937172485\/QF5ACMQ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644478477937172485\/QF5ACMQ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3493743859\/1445660955","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663684505455099904,"id_str":"663684505455099904","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","url":"https:\/\/t.co\/TDsSzQgppO","display_url":"pic.twitter.com\/TDsSzQgppO","expanded_url":"http:\/\/twitter.com\/Sho0129Fuma0307\/status\/663684513592049665\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663684505455099904,"id_str":"663684505455099904","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","url":"https:\/\/t.co\/TDsSzQgppO","display_url":"pic.twitter.com\/TDsSzQgppO","expanded_url":"http:\/\/twitter.com\/Sho0129Fuma0307\/status\/663684513592049665\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sho0129Fuma0307","name":"\u3053\u3068\u307f\u2729\u4f4e\u6d6e\u4e0a\u306e\u3064\u3082\u308a","id":3493743859,"id_str":"3493743859","indices":[3,19]}],"symbols":[],"media":[{"id":663684505455099904,"id_str":"663684505455099904","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","url":"https:\/\/t.co\/TDsSzQgppO","display_url":"pic.twitter.com\/TDsSzQgppO","expanded_url":"http:\/\/twitter.com\/Sho0129Fuma0307\/status\/663684513592049665\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663684513592049665,"source_status_id_str":"663684513592049665","source_user_id":3493743859,"source_user_id_str":"3493743859"}]},"extended_entities":{"media":[{"id":663684505455099904,"id_str":"663684505455099904","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhipaVAAAarQU.jpg","url":"https:\/\/t.co\/TDsSzQgppO","display_url":"pic.twitter.com\/TDsSzQgppO","expanded_url":"http:\/\/twitter.com\/Sho0129Fuma0307\/status\/663684513592049665\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663684513592049665,"source_status_id_str":"663684513592049665","source_user_id":3493743859,"source_user_id_str":"3493743859"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977658"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649085243392,"id_str":"663727649085243392","text":"@smilenico252 \u5012\u308c\u306a\u3044\u7a0b\u5ea6\u306b\u9811\u5f35\u3063\u3066\u306d(u_u)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727090475249665,"in_reply_to_status_id_str":"663727090475249665","in_reply_to_user_id":2774636731,"in_reply_to_user_id_str":"2774636731","in_reply_to_screen_name":"smilenico252","user":{"id":2752309909,"id_str":"2752309909","name":"\u307e\u3057","screen_name":"mashinnnnn","location":null,"url":null,"description":"\u307b\u306e\u304b\u63a8\u3057\u30b9\u30af\u30d5\u30a7\u30b9\/\u30c7\u30ec\u30b9\u30c6\/\u30c1\u30e5\u30a6\u30cb\u30ba\u30e0 \u4ed6\u97f3\u30b2\u30fc\u3061\u3087\u308d\u3061\u3087\u308d \u2733\ufe0e\u4e0b\u624b\u304f\u305d","protected":false,"verified":false,"followers_count":217,"friends_count":248,"listed_count":15,"favourites_count":7291,"statuses_count":11177,"created_at":"Thu Aug 21 14:32:11 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656488606404489216\/vhDJpQMd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656488606404489216\/vhDJpQMd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2752309909\/1424092538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"smilenico252","name":"\u3059\u307e\u3044\u308b\u3002","id":2774636731,"id_str":"2774636731","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977662"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649085263872,"id_str":"663727649085263872","text":"RT @mrkimbear: \u0e21\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e40\u0e17\u0e23\u0e19 #EXO #CALLMEBABY \u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1aEXO \u0e43\u0e19\u0e07\u0e32\u0e19\u0e21\u0e32\u0e21\u0e48\u0e32\u0e01\u0e31\u0e19\u0e19\u0e30\u0e04\u0e30 \u0e2b\u0e49\u0e32\u0e21\u0e43\u0e0a\u0e49\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e #2015MAMA \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e41\u0e17\u0e47\u0e01\u0e44\u0e27\u0e49\u0e15\u0e23\u0e07\u0e01\u0e25\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1124472666,"id_str":"1124472666","name":"\u0e01\u0e35\u0e44\u0e04","screen_name":"guitar27942","location":null,"url":"http:\/\/chanbaekkaisoo.com","description":"\u0e01\u0e35\u0e15\u0e49\u0e32\u0e23\u0e4c\u0e02\u0e2d\u0e07\u0e44\u0e04\u0e19\u0e35\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e04\u0e04\u0e33\u0e16\u0e32\u0e21\u0e41\u0e15\u0e48\u0e04\u0e37\u0e2d\u0e1b\u0e23\u0e30\u0e42\u0e22\u0e04\u0e04\u0e33\u0e15\u0e2d\u0e1a","protected":false,"verified":false,"followers_count":2766,"friends_count":72,"listed_count":1,"favourites_count":3024,"statuses_count":215601,"created_at":"Sun Jan 27 09:17:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097582220\/5f61638d3fd8abc7e4057e57cbdec78f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097582220\/5f61638d3fd8abc7e4057e57cbdec78f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657675305100795905\/76zHRom2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657675305100795905\/76zHRom2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1124472666\/1445637038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:54 +0000 2015","id":663723190426800128,"id_str":"663723190426800128","text":"\u0e21\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e40\u0e17\u0e23\u0e19 #EXO #CALLMEBABY \u0e43\u0e2b\u0e49\u0e01\u0e31\u0e1aEXO \u0e43\u0e19\u0e07\u0e32\u0e19\u0e21\u0e32\u0e21\u0e48\u0e32\u0e01\u0e31\u0e19\u0e19\u0e30\u0e04\u0e30 \u0e2b\u0e49\u0e32\u0e21\u0e43\u0e0a\u0e49\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e #2015MAMA \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e41\u0e17\u0e47\u0e01\u0e44\u0e27\u0e49\u0e15\u0e23\u0e07\u0e01\u0e25\u0e32\u0e07\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e04\u0e48\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2820250604,"id_str":"2820250604","name":"mr.kimbear\u2661","screen_name":"mrkimbear","location":"Untill the End\u2661","url":"http:\/\/ask.fm\/mrkimbear","description":"\u2192 JONGIN's THAI Fanbase | 1994's\u2665\ufe0e [TRANS '\u0e44\u0e17\u0e22\/ENG\/\ud55c\uad6d\uc5b4' &NEWS]","protected":false,"verified":false,"followers_count":7027,"friends_count":223,"listed_count":32,"favourites_count":329,"statuses_count":11133,"created_at":"Fri Sep 19 17:38:11 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C69C6D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524542675832152064\/2kHTX3Ul.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524542675832152064\/2kHTX3Ul.png","profile_background_tile":false,"profile_link_color":"754C24","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633909161957289984\/o6tmAeGQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633909161957289984\/o6tmAeGQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2820250604\/1443865577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":409,"favorite_count":30,"entities":{"hashtags":[{"text":"EXO","indices":[14,18]},{"text":"CALLMEBABY","indices":[19,30]},{"text":"2015MAMA","indices":[82,91]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[29,33]},{"text":"CALLMEBABY","indices":[34,45]},{"text":"2015MAMA","indices":[97,106]}],"urls":[],"user_mentions":[{"screen_name":"mrkimbear","name":"mr.kimbear\u2661","id":2820250604,"id_str":"2820250604","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079977662"} +{"delete":{"status":{"id":647245741438582785,"id_str":"647245741438582785","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447079977774"}} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649076854784,"id_str":"663727649076854784","text":"\ud0a4\ub9ac\ub374\ud0a4\ub9ac \ubc30\uce85\ubcf4\uace0\uc2f6\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":711935502,"id_str":"711935502","name":"\ud30c\uad34\uc790 \ube4c\uc5fc\uc18c \uace0\ub465\ud37c[\uacf5\ubd80\ud574\ub77c]","screen_name":"hogu_goat0601","location":"\uc778\uc0dd=\uc774\ubd88","url":null,"description":"\ubcc0\ud0dc\ub2c8\uae4c \uac00\uae4c\uc774\ud558\uc9c0\ub9c8\uc138\uc694\nhttp:\/\/ask.fm\/dahee0817\u2190\uc5d0\uc2a4\ud06c\n\uc2dc\ubc1c \ub09c \ubcf8\uc9c4\uc5c6\ub294 \uac1c\uc790\uc720\ub85c\uc6b4 \uc601\ud63c\uc774\ub2e4","protected":false,"verified":false,"followers_count":145,"friends_count":537,"listed_count":2,"favourites_count":21710,"statuses_count":110752,"created_at":"Mon Jul 23 06:40:10 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662955879155658754\/01jf9-58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662955879155658754\/01jf9-58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711935502\/1438952031","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079977660"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649064247296,"id_str":"663727649064247296","text":"RT @BTS_twt: \uace0\ub9c8\uc6cc\uc694 \uc544\ubbf8 \ud56d\uc0c1 \uac10\uc0ac\ud55c \ub9c8\uc74c\uc774\uc5d0\uc694.\n\uc790\uc138\ud55c \ub9c8\uc74c\uc740 \uc774\ub530 \uacf5\uce74\ub85c \ub610 \ub0a8\uae38\uac8c\uc694~! Thank you. https:\/\/t.co\/X3HlRYQPKn","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2993323242,"id_str":"2993323242","name":"\u0e40\u0e1b\u0e01\u0e32\u0e23\u0e4c\u0e0b\u0e31\u0e2a -\u3145-","screen_name":"Blackstar_BTS","location":"\ubc29\ud0c4\uc18c\ub144\ub2e8 & ARMY","url":null,"description":"#BTS #\ubc29\ud0c4\uc18c\ub144\ub2e8 \u0e1a\u0e31\u0e07\u0e17\u0e31\u0e19\u0e08\u0e30\u0e04\u0e31\u0e21\u0e41\u0e1a\u0e47\u0e04 \u0e42\u0e22\u0e48\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27","protected":false,"verified":false,"followers_count":76,"friends_count":128,"listed_count":1,"favourites_count":280,"statuses_count":7018,"created_at":"Fri Jan 23 12:53:30 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651375672141545472\/lCZYsXuM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651375672141545472\/lCZYsXuM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2993323242\/1444295278","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:05:03 +0000 2015","id":662994171972616192,"id_str":"662994171972616192","text":"\uace0\ub9c8\uc6cc\uc694 \uc544\ubbf8 \ud56d\uc0c1 \uac10\uc0ac\ud55c \ub9c8\uc74c\uc774\uc5d0\uc694.\n\uc790\uc138\ud55c \ub9c8\uc74c\uc740 \uc774\ub530 \uacf5\uce74\ub85c \ub610 \ub0a8\uae38\uac8c\uc694~! Thank you. https:\/\/t.co\/X3HlRYQPKn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335141638,"id_str":"335141638","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","screen_name":"BTS_twt","location":null,"url":"http:\/\/btsblog.ibighit.com","description":"\ubc29\ud0c4\uc18c\ub144\ub2e8\uc785\ub2c8\ub2e4. Hello we are BTS. http:\/\/bts.ibighit.com","protected":false,"verified":true,"followers_count":1395216,"friends_count":68,"listed_count":6887,"favourites_count":30,"statuses_count":7805,"created_at":"Thu Jul 14 06:32:56 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612324436012765188\/ST6KInHS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612324436012765188\/ST6KInHS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335141638\/1434824850","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32392,"favorite_count":51394,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662994159813308416,"id_str":"662994159813308416","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662994159813308416,"id_str":"662994159813308416","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":662994159884636160,"id_str":"662994159884636160","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPwVEAAxamF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPwVEAAxamF.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[3,11]}],"symbols":[],"media":[{"id":662994159813308416,"id_str":"662994159813308416","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662994171972616192,"source_status_id_str":"662994171972616192","source_user_id":335141638,"source_user_id_str":"335141638"}]},"extended_entities":{"media":[{"id":662994159813308416,"id_str":"662994159813308416","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPfUsAAHV_3.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662994171972616192,"source_status_id_str":"662994171972616192","source_user_id":335141638,"source_user_id_str":"335141638"},{"id":662994159884636160,"id_str":"662994159884636160","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNtrPwVEAAxamF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNtrPwVEAAxamF.jpg","url":"https:\/\/t.co\/X3HlRYQPKn","display_url":"pic.twitter.com\/X3HlRYQPKn","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/662994171972616192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662994171972616192,"source_status_id_str":"662994171972616192","source_user_id":335141638,"source_user_id_str":"335141638"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079977657"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649064251392,"id_str":"663727649064251392","text":"\u3010\u91cd\u8981\u5b9a\u671f\u3011\u30c4\u30a4\u30d7\u30ed\u306b\u3042\u308b\u3088\u3046\u95a2\u5fc3\u306e\u3042\u308b\u30a2\u30cb\u30e1\u3084\u30c9\u30e9\u30de\u3084\u6620\u753b\u304c\u30c6\u30ec\u30d3\u653e\u6620\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u3001\u5c02\u7528\u30bf\u30b0\u3042\u308b\u306a\u3057\u306b\u304b\u304b\u308f\u3089\u305a\u4e8b\u524d\u306b\u300c\u898b\u308b\u300d\u300c\u5f85\u6a5f\u300d\u306a\u3069\u545f\u304d\u898b\u3066\u5b9f\u6cc1\u3057\u307e\u3059\u3002\u30cd\u30bf\u30d0\u30ec\u304c\u5acc\u306a\u65b9\u306f\u4e8b\u524d\u306b\u30df\u30e5\u30fc\u30c8\u7b49\u3057\u3066\u3044\u305f\u3060\u3051\u308c\u3070\u5e78\u3044\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173124300,"id_str":"173124300","name":"\u3068\u308f\u5b50\uff20\u57fa\u672c\u3044\u306a\u3044","screen_name":"towa_silver1005","location":"\u93ae\u5b88\u5e9c\u517c\u672c\u4e38\uff0a(\u00b4\u00d7\uff40)","url":"http:\/\/twpf.jp\/towa_silver1005","description":"\u5175\u9577\u3068\u9b3c\u706f\u69d8\u3068\u6bb4\u308a\u611b\u305f\u3044\u3002\u6210\u4eba\u6e08\u307f\u3002\u8150\u3084NL\u3084\u767e\u5408\u3042\u308a\u3002\u30bb\u30e9\u30e0\u30f3Crystal\u306b\u5922\u4e2d\u3002\u58c1\u7d19\u306e\u9ed2\u30d0\u30b9\u306f\u67d0\u57a2\u3067\u914d\u5e03\u3055\u308c\u305f\u7269\u3067\u8ee2\u8f09\u7981\u6b62\u3002\u30a2\u30a4\u30b3\u30f3\u3084\u30d8\u30c3\u30c0\u30fc\/\/\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093 \u8266\u3053\u308c\u3068\u3068\u3046\u3089\u3076\u30e1\u30a4\u30f3\u3002\u4e94\u6708\u96e8\u30fb\u6d5c\u98a8\u30fb\u65b0\u9078\u7d44\u7537\u58eb\u3068\u5c71\u59e5\u5207\u611b \uff0a \u9375\u57a2\u3057\u305f\u308a\u3082\u3002 \u203b\u521d\u56de\u306f\u3064\u3044\u3077\u308d\u5fc5\u8aad\u3002 \u540c\u4eba\u2192@shimotsukiii","protected":false,"verified":false,"followers_count":388,"friends_count":676,"listed_count":15,"favourites_count":4744,"statuses_count":182013,"created_at":"Sat Jul 31 14:09:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663783823\/o6ualbdocy4g6yn15b19.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663783823\/o6ualbdocy4g6yn15b19.jpeg","profile_background_tile":false,"profile_link_color":"3D9BFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555022608945516545\/DtvKwBF5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555022608945516545\/DtvKwBF5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173124300\/1426615147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977657"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072615425,"id_str":"663727649072615425","text":"@M871014k \u3084\u305f\u30fc(*^^*)\u3042\u305d\u307c\u3042\u305d\u307c\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726188620177409,"in_reply_to_status_id_str":"663726188620177409","in_reply_to_user_id":1413478232,"in_reply_to_user_id_str":"1413478232","in_reply_to_screen_name":"M871014k","user":{"id":505673927,"id_str":"505673927","name":"\u3082\u3050\u3071\u3093\u307e\u3093@TIMM\u4f59\u97fb","screen_name":"moegchin","location":null,"url":null,"description":"\u798f\u5ca1\u5728\u4f4f\u306eOCD\u30aa\u30fc\u30c7\u30a3\u30a8\u30f3\u30b9\u3002\u3088\u30fc\u304f\u3055\u3093\u5929\u4f7f\u3002Ta_2\u3002\u3042\u3093\u3071\u3093\u307e\u3093\u3068OCD\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u307e\u3059\u3002\u30e9\u30a4\u30d6\u53c2\u6226\u6642\u306f\u9996\u304b\u3089\u3042\u3093\u3071\u3093\u307e\u3093\u3092\u3076\u3089\u305b\u3052\u3066\u307e\u3059\u3002\u8150\u7684\u767a\u8a00\u3042\u308a\u300220\u2191 \u3055\u3044\u308d\u3042\u798f\u5ca1Capture\u308f\u3093\u3077\u308c\u798f\u5ca1\u4e21\u65e5\u53c2\u6226\u6e08\u3002 \u5c0f\u91ce\u7530\u304f\u3093\u6bd4\u5609\u3063\u3053\u9752\u6839\u306f\u5929\u4f7f \u8a73\u7d30\u306f http:\/\/twpf.jp\/moegchin","protected":false,"verified":false,"followers_count":307,"friends_count":439,"listed_count":21,"favourites_count":1898,"statuses_count":20175,"created_at":"Mon Feb 27 09:10:43 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568016533511610368\/q7OcRZd5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568016533511610368\/q7OcRZd5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/505673927\/1445600698","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"M871014k","name":"makky@\u9054\u592e\u6708\u9593\u3067\u3059\u306d","id":1413478232,"id_str":"1413478232","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097814016,"id_str":"663727649097814016","text":"\u4eca\u3001\u7d041\u5e74\u632f\u308a\u306b\u30ae\u30bf\u30fc\u89e6\u3063\u3066\u307f\u305f\u3051\u3069\n\u57fa\u790e\u7684\u306a\u30c0\u30a6\u30f3\u30a2\u30c3\u30d7\u30d4\u30c3\u30ad\u30f3\u30b0\u3068\u304b\n\u30aa\u30eb\u30bf\u30cd\u30a4\u30c8\u30d4\u30c3\u30ad\u30f3\u30b0\u306a\u3069\u4f55\u6c17\u306a\u3044\u611f\u3058\u306b\u51fa\u6765\u305f\u7b11\u7b11\n\u524d\u306b\u305a\u3063\u3068\u3084\u3063\u3066\u305f\u5206\u3001\n\u307e\u3060\u4f53\u304c\u899a\u3048\u3066\u308b\u3093\u3060\u306a\u2728\u2728\n\u7d50\u69cb\u5b09\u3057\u3044\u3002\n\u3053\u308c\u3092\u6c17\u306b\u307e\u305f\u59cb\u3081\u3066\u307f\u3088\u3046\u304b\u306a\u2728\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2841278017,"id_str":"2841278017","name":"\u30de\u30fc\u305746ONE k R\u22bf","screen_name":"maxmasa12051","location":null,"url":null,"description":"\u30e2\u30ed\u30a8\u3067\u3059\u3002\u304a\u77e5\u308a\u5408\u3044\u306e\u65b9\u306e\u307f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\uff01\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(^O^)\uff0f\u4e43\u6728\u574246\uff01\u897f\u91ce\u4e03\u702c\u3001\u6a4b\u672c\u5948\u3005\u672a\u3002\u4e43\u6728\u574246\u53ea\u4eca\u6fc0\u30a2\u30c4\u4e2d\u2728\u30d6\u30ea\u30c6\u30a3\u30c3\u30b7\u30e5\u30ed\u30c3\u30af\uff01","protected":false,"verified":false,"followers_count":69,"friends_count":86,"listed_count":0,"favourites_count":112,"statuses_count":333,"created_at":"Sun Oct 05 11:55:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660295503725223936\/ZcIo_QDq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660295503725223936\/ZcIo_QDq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841278017\/1447075098","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097842688,"id_str":"663727649097842688","text":"@shungorobos \u305d\u306e\u4e8c\u6587\u5b57\u306b\u3069\u3093\u306a\u610f\u5473\u304c\u3042\u308b\u306e\u304b\u3001\u3001\u3001\u8fd4\u3057\u306b\u304f\u3044\u3067\u3059\u306d\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726864720986113,"in_reply_to_status_id_str":"663726864720986113","in_reply_to_user_id":146049405,"in_reply_to_user_id_str":"146049405","in_reply_to_screen_name":"shungorobos","user":{"id":2809591567,"id_str":"2809591567","name":"\u3061\u308d\u308b","screen_name":"Oo_____ss","location":"next \u2192 11\/21","url":"http:\/\/twpf.jp\/Oo_____ss","description":"\u90a6\u697d\u308d\u3063\u304f\u3092 \u5e83\u304f\u6d45\u304f \u6642\u306b\u6df1\u304f\u3002\u30b4\u30fc\u30c9\u30de\u30a6\u30f3\u30c6\u30f3 \u7279\u5225(@asnkm_38)","protected":false,"verified":false,"followers_count":451,"friends_count":458,"listed_count":44,"favourites_count":9809,"statuses_count":8467,"created_at":"Sun Sep 14 14:24:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655608024837427200\/R93odPIw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655608024837427200\/R93odPIw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2809591567\/1446561531","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shungorobos","name":"\u5800\u6c5f\u4fca\u543e \/ WOMCADOLE","id":146049405,"id_str":"146049405","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649093607424,"id_str":"663727649093607424","text":"RT @CheerfulGimbouy: \u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536421021,"id_str":"1536421021","name":"\u0e1b\u0e2d\u0e19\u0e14\u0e4c ._.","screen_name":"P_WITS_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":281,"friends_count":95,"listed_count":0,"favourites_count":601,"statuses_count":19200,"created_at":"Fri Jun 21 12:18:39 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"091865","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663374171640991744\/03G6Hzyq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663374171640991744\/03G6Hzyq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536421021\/1444228880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:02 +0000 2015","id":663725993115258880,"id_str":"663725993115258880","text":"\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2930143004,"id_str":"2930143004","name":"saltedplum","screen_name":"CheerfulGimbouy","location":"utcc ","url":null,"description":"\u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07 \u0e16\u0e49\u0e32\u0e22\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\nid : bouyjub","protected":false,"verified":false,"followers_count":36854,"friends_count":20,"listed_count":8,"favourites_count":1970,"statuses_count":2902,"created_at":"Sun Dec 14 18:20:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2930143004\/1428188051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":169,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CheerfulGimbouy","name":"saltedplum","id":2930143004,"id_str":"2930143004","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079977664"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097822209,"id_str":"663727649097822209","text":"RT @5SOS_Updates: How Did We End Up Here? [My 5SOS CD collection] \ud83d\ude3b\u2728\ud83d\udc4cx https:\/\/t.co\/UKqahGHTUV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091741873,"id_str":"4091741873","name":"fivesauxee","screen_name":"fivesauxee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":33,"listed_count":0,"favourites_count":119,"statuses_count":39,"created_at":"Sun Nov 01 18:30:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660887538232598528\/b1xxvk2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660887538232598528\/b1xxvk2K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4091741873\/1446402842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:14:36 +0000 2015","id":663615658089926656,"id_str":"663615658089926656","text":"How Did We End Up Here? [My 5SOS CD collection] \ud83d\ude3b\u2728\ud83d\udc4cx https:\/\/t.co\/UKqahGHTUV","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1156344793,"id_str":"1156344793","name":"5SOS Updates","screen_name":"5SOS_Updates","location":"Australia","url":null,"description":"BUSINESS: Mgmt5SOS_Updates@hotmail.com | owner: @Skye5SOS | co-owner: @GrumpyEliza BUY SGFG: https:\/\/itun.es\/au\/WdIr9 \u2661 | @5SOS","protected":false,"verified":false,"followers_count":386070,"friends_count":33233,"listed_count":1345,"favourites_count":25965,"statuses_count":77480,"created_at":"Thu Feb 07 07:18:33 +0000 2013","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156344793\/1445643565","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3750,"favorite_count":6607,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UKqahGHTUV","expanded_url":"https:\/\/vine.co\/v\/elqpMKIJhx5","display_url":"vine.co\/v\/elqpMKIJhx5","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UKqahGHTUV","expanded_url":"https:\/\/vine.co\/v\/elqpMKIJhx5","display_url":"vine.co\/v\/elqpMKIJhx5","indices":[71,94]}],"user_mentions":[{"screen_name":"5SOS_Updates","name":"5SOS Updates","id":1156344793,"id_str":"1156344793","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649085231105,"id_str":"663727649085231105","text":"@AliciousBaliFC @alysyarief sembahyangan khusyuk bgt min.. Kyk minta sesuatu gitu\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722701266157568,"in_reply_to_status_id_str":"663722701266157568","in_reply_to_user_id":2545126514,"in_reply_to_user_id_str":"2545126514","in_reply_to_screen_name":"AliciousBaliFC","user":{"id":952951525,"id_str":"952951525","name":"S-A-D-U","screen_name":"SaduKadek","location":"abiansemal,badung,bali","url":null,"description":"always positive thinking | Bal_q rock City | Abiansemal | Badung \u2661\u2661\u2661B A L I\u2665\u2665\u2665","protected":false,"verified":false,"followers_count":215,"friends_count":130,"listed_count":0,"favourites_count":684,"statuses_count":3434,"created_at":"Sat Nov 17 04:54:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538386439802880\/HHprKwrJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538386439802880\/HHprKwrJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/952951525\/1425183349","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AliciousBaliFC","name":"ALIcious zona BALI","id":2545126514,"id_str":"2545126514","indices":[0,15]},{"screen_name":"alysyarief","name":"Aliando Syarief","id":323094984,"id_str":"323094984","indices":[16,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079977662"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649064251393,"id_str":"663727649064251393","text":"RT @Body_Tattoos: These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093100161,"id_str":"3093100161","name":"Ariel","screen_name":"JeanSeborg","location":"Dover","url":null,"description":"Happiness is priority one. I perform free lance work, take a look at my bio url to get the particular jobs I do....","protected":false,"verified":false,"followers_count":372,"friends_count":3338,"listed_count":7,"favourites_count":15662,"statuses_count":15684,"created_at":"Tue Mar 17 19:10:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:34 +0000 2015","id":663726125600886784,"id_str":"663726125600886784","text":"These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236446485,"id_str":"3236446485","name":"Body Tattoos","screen_name":"Body_Tattoos","location":"Las Vegas, NV","url":"http:\/\/body-tattoos.com","description":"Thousands of tattoo pictures, Body Art Tattoos, Tattoo Pictures, Latest Tattooo Designs at http:\/\/body-tattoos.com","protected":false,"verified":false,"followers_count":94822,"friends_count":1158,"listed_count":3,"favourites_count":2,"statuses_count":378,"created_at":"Tue May 05 18:17:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236446485\/1446612867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2157,"favorite_count":1372,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[91,114]}],"user_mentions":[{"screen_name":"Body_Tattoos","name":"Body Tattoos","id":3236446485,"id_str":"3236446485","indices":[3,16]}],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977657"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068482560,"id_str":"663727649068482560","text":"RT @NiallOfficial: Wow just found out we won 2 teen awards today .. Thank you to all of your for voting and @BBCR1 for the support","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687184966,"id_str":"2687184966","name":"ONE DIRECTION","screen_name":"helentheo13","location":null,"url":null,"description":"Huge directioner and selenator. #mixer #lovatic #swiftie #harmonizer #smiler....","protected":false,"verified":false,"followers_count":887,"friends_count":2033,"listed_count":8,"favourites_count":4286,"statuses_count":4974,"created_at":"Mon Jul 28 10:30:31 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659763115786043392\/nQ7HC6oo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659763115786043392\/nQ7HC6oo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687184966\/1427376114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:13:48 +0000 2015","id":663449361729343488,"id_str":"663449361729343488","text":"Wow just found out we won 2 teen awards today .. Thank you to all of your for voting and @BBCR1 for the support","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105119490,"id_str":"105119490","name":"Niall Horan","screen_name":"NiallOfficial","location":"Mullingar,Westmeath,Ireland","url":"http:\/\/www.onedirectionmusic.com","description":"Back on the road again, gona be an incredible year!","protected":false,"verified":true,"followers_count":23509222,"friends_count":5650,"listed_count":123569,"favourites_count":137,"statuses_count":10522,"created_at":"Fri Jan 15 12:14:24 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105119490\/1420558622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":91920,"favorite_count":138138,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BBCR1","name":"BBC Radio 1","id":7111412,"id_str":"7111412","indices":[89,95]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[3,17]},{"screen_name":"BBCR1","name":"BBC Radio 1","id":7111412,"id_str":"7111412","indices":[108,114]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977658"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649072672768,"id_str":"663727649072672768","text":"La scoperta: navi e moli colossali\nspunta il porto di Ostia https:\/\/t.co\/N7VNhQYuip @ilmessaggeroit","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462965787,"id_str":"462965787","name":"Jeffrey Becker","screen_name":"servilius_ahala","location":"Oxford MS","url":"https:\/\/olemiss.academia.edu\/JeffreyBecker","description":"Mediterranean archaeologist","protected":false,"verified":false,"followers_count":697,"friends_count":1609,"listed_count":41,"favourites_count":2869,"statuses_count":3594,"created_at":"Fri Jan 13 15:30:53 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444892696407064576\/Q-dLhr-K.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444892696407064576\/Q-dLhr-K.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1752281732\/RRC-433-2-Reverse_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1752281732\/RRC-433-2-Reverse_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462965787\/1437520266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N7VNhQYuip","expanded_url":"http:\/\/goo.gl\/KyLKyk","display_url":"goo.gl\/KyLKyk","indices":[60,83]}],"user_mentions":[{"screen_name":"ilmessaggeroit","name":"ilmessaggero","id":36079217,"id_str":"36079217","indices":[84,99]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079977659"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068441600,"id_str":"663727649068441600","text":"Iqbal's professor Arnold called him \" a\nman of his age, a man ahead of his\nage, a man at war with his age\" ! Kings\nof Europe read Iqbal !!","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1428011664,"id_str":"1428011664","name":"Bad boy S","screen_name":"SNAWAZ97S","location":"Jk","url":"http:\/\/tricks97.wapka.me","description":"\u2554\u2557\u2554\u2557\u2551\u255a\u255d\u2560\u2550\u2566\u2557\u2554\u2557\u2554\u2550\u2557\u2551\u2554\u2557\u2551\u2569\u2563\u255a\u2563\u255a\u2563\u256c\u2551\u255a\u255d\u255a\u2569\u2550\u2569\u2550\u2569\u2550\u2569\u2550\u255d\u25cf\u2202\u03b1 -\u044f\u2113\u03b9\u0438g!!\u2605..!!!\u2606 ______(\u00af`:\u00b4\u00af)____(\u00af `\u2022.|\/ .\u2022\u00b4\u00af)\u03c4\u03b1\u03ba\u03b5 \u03c2\u03b1\u044f\u03b5(\u2593(\u00af `\u2022.\u22d0(\u2588)\u22d1.\u2022\u00b4\u00af)\u2593\u2593 -\u2593\u2593\u2593\u2593\u2593)(\u2593\u2593(_.\u2022\u00b4\/ |`\u2022._)","protected":false,"verified":false,"followers_count":10,"friends_count":107,"listed_count":0,"favourites_count":5,"statuses_count":75,"created_at":"Tue May 14 14:41:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576985481864425472\/lMZ1GVzg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576985481864425472\/lMZ1GVzg_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977658"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649081049088,"id_str":"663727649081049088","text":"@CatWormstein @Michael5SOS nope malum is real","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663234091462975488,"in_reply_to_status_id_str":"663234091462975488","in_reply_to_user_id":3226601594,"in_reply_to_user_id_str":"3226601594","in_reply_to_screen_name":"CatWormstein","user":{"id":861466340,"id_str":"861466340","name":"sue-ann \/\/ 115","screen_name":"umsueann","location":"with cas !!","url":null,"description":"if i just save you, then you could save me too","protected":false,"verified":false,"followers_count":545,"friends_count":1244,"listed_count":3,"favourites_count":893,"statuses_count":5905,"created_at":"Thu Oct 04 14:14:18 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"30F08D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659949822816817152\/9Gpk-AfS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659949822816817152\/9Gpk-AfS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/861466340\/1444908811","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CatWormstein","name":"Majestic V. Feline","id":3226601594,"id_str":"3226601594","indices":[0,13]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[14,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977661"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649085243393,"id_str":"663727649085243393","text":"@yukirin_u \u304a\u75b2\u308c\uff5e(^^)v \u3053\u308c\u304b\u3089\u4ed5\u4e8b\u306a\u3093\u3067\u884c\u3051\u305d\u3046\u306b\u306a\u3044\uff01 \u6b21\u56de\u3092\u697d\u3057\u307f\u306b\u3057\u3066\u308b\u3088(^_^)\uff89","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726503616643072,"in_reply_to_status_id_str":"663726503616643072","in_reply_to_user_id":3425010312,"in_reply_to_user_id_str":"3425010312","in_reply_to_screen_name":"yukirin_u","user":{"id":1215608731,"id_str":"1215608731","name":"FOX","screen_name":"FOX_0814","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":6,"listed_count":0,"favourites_count":3,"statuses_count":42,"created_at":"Sun Feb 24 14:12:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000255224596\/495bb53f745f8a87c3afb539050111f2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000255224596\/495bb53f745f8a87c3afb539050111f2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215608731\/1446491628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yukirin_u","name":"\u3086\u304d\u308a\u306c","id":3425010312,"id_str":"3425010312","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977662"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649102151680,"id_str":"663727649102151680","text":"porque todo dia \u00e9 uma diferente q aparece","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215667058,"id_str":"215667058","name":"Nan\u00e1h M\u00f4naco","screen_name":"viuvanegra_","location":null,"url":"http:\/\/instagram.com\/viuvanegra_","description":"Snapchat: nanahmonaco","protected":false,"verified":false,"followers_count":958,"friends_count":355,"listed_count":9,"favourites_count":1086,"statuses_count":31648,"created_at":"Sun Nov 14 15:49:01 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888950340\/4a79c70cc8512beedb02d14be2ef60e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888950340\/4a79c70cc8512beedb02d14be2ef60e9.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAF7F8","profile_text_color":"CA15D4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545158995177472\/5eX7OjWe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545158995177472\/5eX7OjWe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215667058\/1444958164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079977666"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649089449984,"id_str":"663727649089449984","text":"\uc88b\uc544~\ub09c \uc874\uc798\ub2d8\ub4e4\uc758 \uc5f0\uc131\uc744 \uc5bb\uc5b4\uac00\uc57c\uaca0\uc5b4.....!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466579701,"id_str":"1466579701","name":"\uc7a0\uc880 \uadf8\ub9cc\uc790\ub77c \ub808\uc774\uc57c","screen_name":"qwerfv000","location":"\uadc0\uc6a4\uc5f4\ub9e4 \uba39\uc740 \ubbf8\uc778\uc5b8\ub2c8\uac00 \ud2b8\uce5c\uc778 \ub808\uc774\uccb4\ub9ac","url":null,"description":"raycherry(\ub808\uc774\uccb4\ub9ac) \/FUB free\/ \ubcf8\uc9c4-\uc6b0\ud0c0\uc774\ud14c(\ub9c8\ud6c4\ub9c8\ud6c4,\uc18c\ub77c\ub8e8) \/\ubd80\ubcf8\uc9c4-\uce74\uac8c\ud504\ub85c(\ub9c8\ub9ac)\/\uc560\ub2c8\/\uacf5\ud3ec\uac8c\uc784\/H.T.F\/\uc6f9\ud230\/\uace0\uc5b4\/\uadc0\uc5ec\uc6b4\uac70\/\ud314\ub85c\uc6b0\ud558\uc2dc\uace0 \uba58\uc158\uc8fc\uc2dc\uba74 \ub9de\ud314\ud569\ub2c8\ub2e4\/\n\ud5e4\ub354-\ub77c\ube44\uc5b8\ub2c8(@__jellabi)","protected":false,"verified":false,"followers_count":73,"friends_count":66,"listed_count":1,"favourites_count":737,"statuses_count":3305,"created_at":"Wed May 29 06:30:42 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623812804781305856\/GizKCfRk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623812804781305856\/GizKCfRk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466579701\/1446659069","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079977663"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649081188353,"id_str":"663727649081188353","text":"https:\/\/t.co\/wF6Sp8cCLu\n\n#AskDemi #OhNoBriana #qanda #4DaysUntilMITAM #Generosity #help #donate #Support #FOLLOME https:\/\/t.co\/bZ3B7EfBDx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4069647999,"id_str":"4069647999","name":"Generosity Tweets","screen_name":"Help_me_2015","location":null,"url":"http:\/\/www.generosity.com\/fundraisers\/i-need-your-help--226","description":"I need your help Click here to Help https:\/\/www.generosity.com\/fundraisers\/i-need-your-help--226 \nPlease make a Retweet & Share on Facebook","protected":false,"verified":false,"followers_count":543,"friends_count":1415,"listed_count":53,"favourites_count":20,"statuses_count":4038,"created_at":"Thu Oct 29 18:52:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661650343445594112\/V47pDDal_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661650343445594112\/V47pDDal_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4069647999\/1446584715","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[25,33]},{"text":"OhNoBriana","indices":[34,45]},{"text":"qanda","indices":[46,52]},{"text":"4DaysUntilMITAM","indices":[53,69]},{"text":"Generosity","indices":[70,81]},{"text":"help","indices":[82,87]},{"text":"donate","indices":[88,95]},{"text":"Support","indices":[96,104]},{"text":"FOLLOME","indices":[105,113]}],"urls":[{"url":"https:\/\/t.co\/wF6Sp8cCLu","expanded_url":"http:\/\/generosity.com\/fundraisers\/i-need-your-help--226","display_url":"generosity.com\/fundraisers\/i-\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727647919374337,"id_str":"663727647919374337","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx3nXAAEHzDM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx3nXAAEHzDM.png","url":"https:\/\/t.co\/bZ3B7EfBDx","display_url":"pic.twitter.com\/bZ3B7EfBDx","expanded_url":"http:\/\/twitter.com\/Help_me_2015\/status\/663727649081188353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":292,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"},"medium":{"w":557,"h":292,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727647919374337,"id_str":"663727647919374337","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx3nXAAEHzDM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx3nXAAEHzDM.png","url":"https:\/\/t.co\/bZ3B7EfBDx","display_url":"pic.twitter.com\/bZ3B7EfBDx","expanded_url":"http:\/\/twitter.com\/Help_me_2015\/status\/663727649081188353\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":557,"h":292,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"},"medium":{"w":557,"h":292,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079977661"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649064382465,"id_str":"663727649064382465","text":"Bella Bayliss se impone en la primera edici\u00f3n del TriWomen Santa Rosa - https:\/\/t.co\/1tfXjaA3C2","source":"\u003ca href=\"http:\/\/www.masscultura.com\/mass\" rel=\"nofollow\"\u003eWeb MassCultura\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2411504053,"id_str":"2411504053","name":"Gu\u00eda Ocio y Cultura","screen_name":"Mass_Cultura","location":"Lanzarote","url":"http:\/\/www.masscultura.com","description":"Proyecto cultural con el objetivo de satisfacer la demanda de informaci\u00f3n cultural y de ocio existente en la isla.","protected":false,"verified":false,"followers_count":359,"friends_count":193,"listed_count":13,"favourites_count":484,"statuses_count":2738,"created_at":"Tue Mar 25 20:24:02 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"279DA9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448570234115342336\/lzfF8WH6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448570234115342336\/lzfF8WH6.jpeg","profile_background_tile":false,"profile_link_color":"FABD42","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448559597050007552\/KNCq0ejd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448559597050007552\/KNCq0ejd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2411504053\/1405701983","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1tfXjaA3C2","expanded_url":"http:\/\/www.masscultura.com\/mass?p=12677","display_url":"masscultura.com\/mass?p=12677","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079977657"} +{"delete":{"status":{"id":663723249256239104,"id_str":"663723249256239104","user_id":572354746,"user_id_str":"572354746"},"timestamp_ms":"1447079977952"}} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649097777152,"id_str":"663727649097777152","text":"1\u65e5\u306b\u30d0\u30a4\u30c8\u4e8c\u3064\u3059\u308b\u3068\u304b\u30cf\u30fc\u30c9\u3059\u304e\u308bw.w https:\/\/t.co\/NvSyStIsfW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905570476,"id_str":"2905570476","name":"\u308c\u3044\u304b","screen_name":"r_h_1203","location":"\u30dd\u30cb\u30e7\u30af\u30e9\u30d6","url":"http:\/\/hibari.nana-music.com\/w\/profile\/621560\/","description":"\u6b4c\u3046\u306e\u5927\u597d\u304dJK2\u3067\u3059\u3002nana\u3067\u6b4c\u3063\u3066\u307e\u3059\u3002*\u30dc\u30ab\u30ed\/\u6b4c\u3044\u624b\/\u30cf\u30cb\u30ef\/CHiCO\/\u6d0b\u697d\/Tay\/k-pop\/\uc774\uc5d1\uc2a4\uc544\uc774\ub514*","protected":false,"verified":false,"followers_count":791,"friends_count":700,"listed_count":9,"favourites_count":19427,"statuses_count":17128,"created_at":"Fri Nov 21 01:36:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662759767362969600\/9Wt8PkOs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662759767362969600\/9Wt8PkOs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905570476\/1440424804","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727637924151296,"id_str":"663727637924151296","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxSYUAAAssKh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxSYUAAAssKh.jpg","url":"https:\/\/t.co\/NvSyStIsfW","display_url":"pic.twitter.com\/NvSyStIsfW","expanded_url":"http:\/\/twitter.com\/r_h_1203\/status\/663727649097777152\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727637924151296,"id_str":"663727637924151296","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxSYUAAAssKh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxSYUAAAssKh.jpg","url":"https:\/\/t.co\/NvSyStIsfW","display_url":"pic.twitter.com\/NvSyStIsfW","expanded_url":"http:\/\/twitter.com\/r_h_1203\/status\/663727649097777152\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977665"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649068576768,"id_str":"663727649068576768","text":"\u3010\u30c6\u30e9\u30d0\u30c8\u30eb\u3011\u30e1\u30bf\u30ad\u30f356\u89e3\u653e\u3068\u304b\u306e\u60c5\u5831\u3063\u3066\u3069\u3053\u3067\u62fe\u3063\u3066\u304d\u3066\u308b\u3093\uff1f https:\/\/t.co\/EwiJYuvK9A https:\/\/t.co\/w04sqjoiUl","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122625698,"id_str":"3122625698","name":"noraii88","screen_name":"noraii88","location":"\u6771\u4eac\u90fd","url":"http:\/\/noragami.fantena.com","description":"\u30ce\u30e9\u30ac\u30df\u30a2\u30f3\u30c6\u30ca\u3067\u3059","protected":false,"verified":false,"followers_count":141,"friends_count":152,"listed_count":2,"favourites_count":0,"statuses_count":115431,"created_at":"Wed Apr 01 02:47:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583099251002994688\/EzqCxOED_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583099251002994688\/EzqCxOED_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EwiJYuvK9A","expanded_url":"http:\/\/ift.tt\/1Mk51sJ","display_url":"ift.tt\/1Mk51sJ","indices":[34,57]}],"user_mentions":[],"symbols":[],"media":[{"id":663727648703688704,"id_str":"663727648703688704","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx6iWsAArag7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx6iWsAArag7.png","url":"https:\/\/t.co\/w04sqjoiUl","display_url":"pic.twitter.com\/w04sqjoiUl","expanded_url":"http:\/\/twitter.com\/noraii88\/status\/663727649068576768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":449,"h":323,"resize":"fit"},"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":449,"h":323,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727648703688704,"id_str":"663727648703688704","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx6iWsAArag7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx6iWsAArag7.png","url":"https:\/\/t.co\/w04sqjoiUl","display_url":"pic.twitter.com\/w04sqjoiUl","expanded_url":"http:\/\/twitter.com\/noraii88\/status\/663727649068576768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":449,"h":323,"resize":"fit"},"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":449,"h":323,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977658"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649089388544,"id_str":"663727649089388544","text":"\u4eca\u306e\u6226\u3044\u304b\u305f\u611f\u52d5\u3057\u305f\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317868518,"id_str":"3317868518","name":"\u30de\u30c4\u30ab\u30bc","screen_name":"matukaze19spla","location":null,"url":null,"description":"\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u304c\u521d\u30aa\u30f3\u30b2\u306e\u793e\u4f1a\u4eba\n\n\u30db\u30c3\u30ab\u30b9\u3067S\uff0b\u76ee\u6307\u3057\u3066\u596e\u95d8\u4e2d\uff01","protected":false,"verified":false,"followers_count":28,"friends_count":33,"listed_count":0,"favourites_count":48,"statuses_count":2010,"created_at":"Mon Aug 17 15:10:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660760342746632192\/kGdvnWZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660760342746632192\/kGdvnWZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317868518\/1444071008","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079977663"} +{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649089523712,"id_str":"663727649089523712","text":"Save this Holiday Season with Blurb https:\/\/t.co\/3mQVcVuTfN via @PerfectlyBeachy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1421152316,"id_str":"1421152316","name":"Perfectly Beachy","screen_name":"PerfectlyBeachy","location":"Myrtle Beach, sc","url":"http:\/\/www.perfectlybeachy.com\/","description":"Perfectly Beachy offers a little of everything. Life in Myrtle Beach, my jewelry passion, home decor, giveaways, reviews and more.","protected":false,"verified":false,"followers_count":2950,"friends_count":2803,"listed_count":5,"favourites_count":163,"statuses_count":3739,"created_at":"Sat May 11 17:09:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571030197667758080\/dbLtcRse_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571030197667758080\/dbLtcRse_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1421152316\/1443469663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3mQVcVuTfN","expanded_url":"http:\/\/perfectlybeachy.com\/save-this-holiday-season-with-blurb\/","display_url":"perfectlybeachy.com\/save-this-holi\u2026","indices":[36,59]}],"user_mentions":[{"screen_name":"PerfectlyBeachy","name":"Perfectly Beachy","id":1421152316,"id_str":"1421152316","indices":[64,80]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079977663"} +{"delete":{"status":{"id":558907202233458688,"id_str":"558907202233458688","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447079978333"}} +{"delete":{"status":{"id":658041334683598848,"id_str":"658041334683598848","user_id":324957864,"user_id_str":"324957864"},"timestamp_ms":"1447079978436"}} +{"delete":{"status":{"id":543836451402964992,"id_str":"543836451402964992","user_id":2915413527,"user_id_str":"2915413527"},"timestamp_ms":"1447079978512"}} +{"delete":{"status":{"id":663724486563237888,"id_str":"663724486563237888","user_id":2564718499,"user_id_str":"2564718499"},"timestamp_ms":"1447079978460"}} +{"delete":{"status":{"id":663727623923752961,"id_str":"663727623923752961","user_id":251283094,"user_id_str":"251283094"},"timestamp_ms":"1447079978582"}} +{"delete":{"status":{"id":663721990986072064,"id_str":"663721990986072064","user_id":255718977,"user_id_str":"255718977"},"timestamp_ms":"1447079978598"}} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262917632,"id_str":"663727653262917632","text":"RT @Gaziantepbbs: Tarihimizde \u0130lk Defa Seyircisiz Oynama Cezas\u0131 Ald\u0131k ! Sahada m\u00fccadele etme ile art\u0131k i\u015f bitmiyor. Masa oyunlar\u0131 \u00e7ok er\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3084554525,"id_str":"3084554525","name":"Muzaffer Emre Ata$","screen_name":"Emreatas010","location":"Orta Saha ","url":"http:\/\/www.gaziantepbbspor.com","description":"Gaziantep B\u00fcy\u00fck\u015fehir Belediyespor","protected":false,"verified":false,"followers_count":8,"friends_count":6,"listed_count":0,"favourites_count":167,"statuses_count":194,"created_at":"Tue Mar 10 18:15:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658236084980207616\/SxRyHY0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658236084980207616\/SxRyHY0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3084554525\/1445770654","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:34:21 +0000 2015","id":662276772554252288,"id_str":"662276772554252288","text":"Tarihimizde \u0130lk Defa Seyircisiz Oynama Cezas\u0131 Ald\u0131k ! Sahada m\u00fccadele etme ile art\u0131k i\u015f bitmiyor. Masa oyunlar\u0131 \u00e7ok erken ba\u015flad\u0131.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2565303991,"id_str":"2565303991","name":"Gaziantep BBSK","screen_name":"Gaziantepbbs","location":null,"url":null,"description":"Gaziantep BBSK Resmi Taraftar Sitesi & Gaziantep BBSK Official Fan Site #2014 #Gaziantep #GBBSK","protected":false,"verified":false,"followers_count":1449,"friends_count":43,"listed_count":3,"favourites_count":737,"statuses_count":2430,"created_at":"Fri Jun 13 13:11:03 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/477441273096187904\/sMoJ45dy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/477441273096187904\/sMoJ45dy.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477438414006931456\/4J0N-7og_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477438414006931456\/4J0N-7og_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2565303991\/1437542819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gaziantepbbs","name":"Gaziantep BBSK","id":2565303991,"id_str":"2565303991","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258686464,"id_str":"663727653258686464","text":"RT Yow12345J: #PushAwardsJaDines 39","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2527094863,"id_str":"2527094863","name":"ashley","screen_name":"nightybutera2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":341,"listed_count":15,"favourites_count":14,"statuses_count":70764,"created_at":"Tue May 27 09:57:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631358665740541953\/r_M5RGy8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631358665740541953\/r_M5RGy8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2527094863\/1439364208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsJaDines","indices":[14,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653275443200,"id_str":"663727653275443200","text":"RT @Nard3s: @teamoretti em que col\u00e9gio voc\u00eas t\u00e3o estudando ?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1483694504,"id_str":"1483694504","name":"Ot\u00e1vio Ruan","screen_name":"teamoretti","location":"bota casaco, tira casaco","url":null,"description":"29\/10\/2015 - @gabirmoretti \u2665 \/ SINCE 1998","protected":false,"verified":false,"followers_count":613,"friends_count":576,"listed_count":1,"favourites_count":2908,"statuses_count":36053,"created_at":"Wed Jun 05 00:55:30 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498998540438208512\/pO8LypZo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498998540438208512\/pO8LypZo.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661919734649257984\/iyhF82a6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661919734649257984\/iyhF82a6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1483694504\/1446648902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:26 +0000 2015","id":663727600502775808,"id_str":"663727600502775808","text":"@teamoretti em que col\u00e9gio voc\u00eas t\u00e3o estudando ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726894236463104,"in_reply_to_status_id_str":"663726894236463104","in_reply_to_user_id":1483694504,"in_reply_to_user_id_str":"1483694504","in_reply_to_screen_name":"teamoretti","user":{"id":212636969,"id_str":"212636969","name":"Heloisa","screen_name":"Nard3s","location":"Joinville, Santa Catarina","url":null,"description":"N\u00e3o fode! quem foi que congelou meu cora\u00e7\u00e3o?","protected":false,"verified":false,"followers_count":1135,"friends_count":647,"listed_count":0,"favourites_count":10916,"statuses_count":38798,"created_at":"Sat Nov 06 16:40:53 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482314725561085953\/13xSCbE2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482314725561085953\/13xSCbE2.jpeg","profile_background_tile":true,"profile_link_color":"32C0EB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"9403F5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663362194671841280\/l-I5FCbN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663362194671841280\/l-I5FCbN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212636969\/1436792264","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-26.341624,-48.7962887]},"coordinates":{"type":"Point","coordinates":[-48.7962887,-26.341624]},"place":{"id":"012d81605af0416c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012d81605af0416c.json","place_type":"city","name":"Joinville","full_name":"Joinville, Santa Catarina","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-49.192566,-26.449305],[-49.192566,-26.074074],[-48.740383,-26.074074],[-48.740383,-26.449305]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teamoretti","name":"Ot\u00e1vio Ruan","id":1483694504,"id_str":"1483694504","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nard3s","name":"Heloisa","id":212636969,"id_str":"212636969","indices":[3,10]},{"screen_name":"teamoretti","name":"Ot\u00e1vio Ruan","id":1483694504,"id_str":"1483694504","indices":[12,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079978661"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262860289,"id_str":"663727653262860289","text":"RT @MmaQarat: \u0627\u0644\u0643\u062b\u064a\u0631 \u0645\u0645\u0646 \u0641\u0634\u0644\u0648\u0627 \u0644\u0645 \u064a\u062f\u0631\u0643\u0648\u0627 \u0645\u062f\u0649 \u0642\u0631\u0628\u0647\u0645 \u0645\u0646 \u0627\u0644\u0646\u062c\u0627\u062d \u0639\u0646\u062f\u0645\u0627 \u0627\u0633\u062a\u0633\u0644\u0645\u0648\u0627. \n\u062a\u0648\u0645\u0627\u0633 \u0625\u062f\u064a\u0633\u0648\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926489118,"id_str":"2926489118","name":"\u062a\u0631\u0643\u064a \u0627\u0644\u0635\u0627\u0639\u062f\u064a","screen_name":"f14d7a0234684e8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":98,"listed_count":0,"favourites_count":0,"statuses_count":10,"created_at":"Thu Dec 11 06:48:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:28 +0000 2015","id":663724340937125888,"id_str":"663724340937125888","text":"\u0627\u0644\u0643\u062b\u064a\u0631 \u0645\u0645\u0646 \u0641\u0634\u0644\u0648\u0627 \u0644\u0645 \u064a\u062f\u0631\u0643\u0648\u0627 \u0645\u062f\u0649 \u0642\u0631\u0628\u0647\u0645 \u0645\u0646 \u0627\u0644\u0646\u062c\u0627\u062d \u0639\u0646\u062f\u0645\u0627 \u0627\u0633\u062a\u0633\u0644\u0645\u0648\u0627. \n\u062a\u0648\u0645\u0627\u0633 \u0625\u062f\u064a\u0633\u0648\u0646","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159512330,"id_str":"159512330","name":"\u0645\u0645\u0627 \u0642\u0631\u0623\u062a","screen_name":"MmaQarat","location":"Cairo ","url":"http:\/\/mmaqara2t.com","description":"\u0645\u0645\u0627 \u0642\u0631\u0623\u062a \u0623\u0643\u0628\u0631 \u0645\u0624\u0633\u0633\u0629 \u062b\u0642\u0627\u0641\u064a\u0629 \u0641\u064a \u0627\u0644\u0639\u0627\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064a\n\u0645\u0645\u0627 \u0642\u0631\u0623\u062a \u0623\u064a\u0642\u0648\u0646\u0629 \u0627\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u064a \u0627\u0644\u0639\u0627\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064a","protected":false,"verified":false,"followers_count":746580,"friends_count":18,"listed_count":3085,"favourites_count":5,"statuses_count":333167,"created_at":"Fri Jun 25 15:50:29 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1344997724\/g_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1344997724\/g_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159512330\/1398388452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":29,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MmaQarat","name":"\u0645\u0645\u0627 \u0642\u0631\u0623\u062a","id":159512330,"id_str":"159512330","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653271269376,"id_str":"663727653271269376","text":"RT @PhantomOpera: Hello, @DaisyHulbert here! Really looking forward to sharing my first week as Meg with you all! Lots of photos, videos an\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3132161356,"id_str":"3132161356","name":"Nathaly Cisneros","screen_name":"Nathaly_Cisnero","location":"New York, NY","url":"https:\/\/m.youtube.com\/my_videoshttps:\/\/instagram.com\/nathaly_cisneros1\/","description":"#RaminKarimloo #SierraBoggess #LesMiz #JeanValjean #Phantom #ISBY #Broadway #Theather #Starbucks #MajesticTheater #ImperialTheater","protected":false,"verified":false,"followers_count":330,"friends_count":1630,"listed_count":18,"favourites_count":7966,"statuses_count":5645,"created_at":"Sat Apr 04 01:52:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655384258236825602\/323HmQ0X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655384258236825602\/323HmQ0X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3132161356\/1440018183","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:19 +0000 2015","id":663726060924727296,"id_str":"663726060924727296","text":"Hello, @DaisyHulbert here! Really looking forward to sharing my first week as Meg with you all! Lots of photos, videos and backstage fun \ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24167590,"id_str":"24167590","name":"Phantom Of The Opera","screen_name":"PhantomOpera","location":"Worldwide","url":"http:\/\/www.thephantomoftheopera.com","description":"Andrew Lloyd Webber's #PhantomOfTheOpera official account. Worldwide - London #PhantomLondon, Broadway @PhantomBway & US Tour @PhantomOnTour","protected":false,"verified":true,"followers_count":74441,"friends_count":135,"listed_count":491,"favourites_count":2764,"statuses_count":8523,"created_at":"Fri Mar 13 13:11:29 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/330462731\/poto-bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/330462731\/poto-bg.jpg","profile_background_tile":false,"profile_link_color":"1C2D63","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DFEAF5","profile_text_color":"003E6E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636501408267812865\/a6BZDHCV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636501408267812865\/a6BZDHCV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24167590\/1440495740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DaisyHulbert","name":"Daisy Alice Hulbert","id":228531190,"id_str":"228531190","indices":[7,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PhantomOpera","name":"Phantom Of The Opera","id":24167590,"id_str":"24167590","indices":[3,16]},{"screen_name":"DaisyHulbert","name":"Daisy Alice Hulbert","id":228531190,"id_str":"228531190","indices":[25,38]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978660"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653267095552,"id_str":"663727653267095552","text":"RT @RedObrera: \u00a1Sea como sea ganaremos la Asamblea! @prensacvg @justonoguerap #EnsayoParaLaVictoria https:\/\/t.co\/VxXFDznWNX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3880995077,"id_str":"3880995077","name":"cmdnnamsucre","screen_name":"cmdnna_msucre","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":36,"friends_count":129,"listed_count":0,"favourites_count":0,"statuses_count":46,"created_at":"Tue Oct 06 13:47:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651396067083223040\/iZl2tBlf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651396067083223040\/iZl2tBlf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3880995077\/1444140951","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:38:30 +0000 2015","id":663470673940103168,"id_str":"663470673940103168","text":"\u00a1Sea como sea ganaremos la Asamblea! @prensacvg @justonoguerap #EnsayoParaLaVictoria https:\/\/t.co\/VxXFDznWNX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398164104,"id_str":"398164104","name":"\u2605Red Obrera\u2605\u24df\u24e2\u24e4\u24e5","screen_name":"RedObrera","location":"Venezuela","url":"http:\/\/redobrera.es.tl","description":"Obrero pata en el suelo, Candanguero #ColectivoForoCandanga\u24df\u24e2\u24e4\u24e5 aqu\u00edla non capit muscas.","protected":false,"verified":false,"followers_count":60492,"friends_count":59136,"listed_count":138,"favourites_count":32,"statuses_count":35029,"created_at":"Tue Oct 25 17:30:09 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644065472288165888\/zjldK62R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644065472288165888\/zjldK62R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398164104\/1429755628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[{"text":"EnsayoParaLaVictoria","indices":[63,84]}],"urls":[],"user_mentions":[{"screen_name":"prensacvg","name":"prensacvg","id":334636274,"id_str":"334636274","indices":[37,47]},{"screen_name":"justonoguerap","name":"Justo Noguera Pietri","id":3408697085,"id_str":"3408697085","indices":[48,62]}],"symbols":[],"media":[{"id":663372027789778944,"id_str":"663372027789778944","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","url":"https:\/\/t.co\/VxXFDznWNX","display_url":"pic.twitter.com\/VxXFDznWNX","expanded_url":"http:\/\/twitter.com\/IamegGua\/status\/663372949844570113\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663372949844570113,"source_status_id_str":"663372949844570113","source_user_id":3335192429,"source_user_id_str":"3335192429"}]},"extended_entities":{"media":[{"id":663372027789778944,"id_str":"663372027789778944","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","url":"https:\/\/t.co\/VxXFDznWNX","display_url":"pic.twitter.com\/VxXFDznWNX","expanded_url":"http:\/\/twitter.com\/IamegGua\/status\/663372949844570113\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663372949844570113,"source_status_id_str":"663372949844570113","source_user_id":3335192429,"source_user_id_str":"3335192429","video_info":{"aspect_ratio":[16,9],"duration_millis":29376,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/pl\/SdDvH92pt-4UTbiC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/pl\/SdDvH92pt-4UTbiC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/640x360\/ovs-BLd9F9Nu03us.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/320x180\/3IVOxupl50Te6RBE.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/640x360\/ovs-BLd9F9Nu03us.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/1280x720\/ukuQJjrzPYAzScTH.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnsayoParaLaVictoria","indices":[78,99]}],"urls":[],"user_mentions":[{"screen_name":"RedObrera","name":"\u2605Red Obrera\u2605\u24df\u24e2\u24e4\u24e5","id":398164104,"id_str":"398164104","indices":[3,13]},{"screen_name":"prensacvg","name":"prensacvg","id":334636274,"id_str":"334636274","indices":[52,62]},{"screen_name":"justonoguerap","name":"Justo Noguera Pietri","id":3408697085,"id_str":"3408697085","indices":[63,77]}],"symbols":[],"media":[{"id":663372027789778944,"id_str":"663372027789778944","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","url":"https:\/\/t.co\/VxXFDznWNX","display_url":"pic.twitter.com\/VxXFDznWNX","expanded_url":"http:\/\/twitter.com\/IamegGua\/status\/663372949844570113\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663372949844570113,"source_status_id_str":"663372949844570113","source_user_id":3335192429,"source_user_id_str":"3335192429"}]},"extended_entities":{"media":[{"id":663372027789778944,"id_str":"663372027789778944","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372027789778944\/pu\/img\/spQ663J79-pC9Qdl.jpg","url":"https:\/\/t.co\/VxXFDznWNX","display_url":"pic.twitter.com\/VxXFDznWNX","expanded_url":"http:\/\/twitter.com\/IamegGua\/status\/663372949844570113\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663372949844570113,"source_status_id_str":"663372949844570113","source_user_id":3335192429,"source_user_id_str":"3335192429","video_info":{"aspect_ratio":[16,9],"duration_millis":29376,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/pl\/SdDvH92pt-4UTbiC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/pl\/SdDvH92pt-4UTbiC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/640x360\/ovs-BLd9F9Nu03us.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/320x180\/3IVOxupl50Te6RBE.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/640x360\/ovs-BLd9F9Nu03us.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372027789778944\/pu\/vid\/1280x720\/ukuQJjrzPYAzScTH.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978659"} +{"delete":{"status":{"id":663726256593068033,"id_str":"663726256593068033","user_id":2405881092,"user_id_str":"2405881092"},"timestamp_ms":"1447079978637"}} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262901248,"id_str":"663727653262901248","text":"RT @UnionVignista: #FansAwards2015 #LaDiosa Flor Vigna\nFalta poco para que venga papa noel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3950968703,"id_str":"3950968703","name":"lud","screen_name":"dreamyvigna","location":"fv pa pr ","url":null,"description":"\u2800\u2800\u2800 \u007bkeep on smiling\u007d","protected":false,"verified":false,"followers_count":180,"friends_count":125,"listed_count":1,"favourites_count":825,"statuses_count":2678,"created_at":"Wed Oct 14 00:05:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"38A9AF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663115737393963008\/Lm7vHGPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663115737393963008\/Lm7vHGPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3950968703\/1446934645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:25 +0000 2015","id":663727598007025664,"id_str":"663727598007025664","text":"#FansAwards2015 #LaDiosa Flor Vigna\nFalta poco para que venga papa noel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2854057473,"id_str":"2854057473","name":"28K Unidos Por Flor","screen_name":"UnionVignista","location":null,"url":"https:\/\/www.facebook.com\/pages\/Union-Vignista\/774826665943201","description":"Mujer bonita es la que lucha..Y por lucharla TUVO su RECOMPENSA - BICAMPEONA ABSOLUTA - OFICIAL PARA LA 5G - SABER ELEGIR ES SER VIGNISTA - Las Chechu \u2665","protected":false,"verified":false,"followers_count":28349,"friends_count":1692,"listed_count":12,"favourites_count":38010,"statuses_count":48459,"created_at":"Sat Nov 01 01:11:04 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548739333541220352\/sMAs5uQt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548739333541220352\/sMAs5uQt.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659204631801786369\/N62LcF0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659204631801786369\/N62LcF0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2854057473\/1441150736","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[0,15]},{"text":"LaDiosa","indices":[16,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[19,34]},{"text":"LaDiosa","indices":[35,43]}],"urls":[],"user_mentions":[{"screen_name":"UnionVignista","name":"28K Unidos Por Flor","id":2854057473,"id_str":"2854057473","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653296480260,"id_str":"663727653296480260","text":"\"The world don't need more songs. If nobody wrote any songs from this day on, the world ain't gonna suffer for it. Nobody cares\" #bobsays","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054930993,"id_str":"4054930993","name":"LUX LISBON","screen_name":"oLISBONPOP","location":"London","url":"http:\/\/bit.ly\/bullingdonclubvideo","description":"London Indie band, Bullingdon Club single - http:\/\/bit.ly\/bullingdonclubvideo - this deserves a wider audience - Billy Bragg. Also on Stewart Lee's Website.","protected":false,"verified":false,"followers_count":247,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":15,"created_at":"Thu Oct 29 06:46:50 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660768536931921920\/czc6A6KO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660768536931921920\/czc6A6KO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054930993\/1446374483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bobsays","indices":[129,137]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978666"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262917633,"id_str":"663727653262917633","text":"Todos hablan del temblor en Antofagasta, alguien sabe: hora, magnitud??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876402577,"id_str":"2876402577","name":"Gloria","screen_name":"gloriviviana","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":31,"listed_count":0,"favourites_count":486,"statuses_count":850,"created_at":"Fri Nov 14 14:00:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536176170455556096\/Q5vBuL7j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536176170455556096\/Q5vBuL7j_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258698752,"id_str":"663727653258698752","text":"_7_0_9_ \u308c\u3044\u3057\u3059 \u304c\u751f\u304d\u3083\u3089\u3081\u308b\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3057\u305f\u3002 November 09, 2015 at 11:39PM https:\/\/t.co\/WNRV35Tr9x","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899914888,"id_str":"2899914888","name":"\u06de\u751f\u304d\u3083\u3089\u3081\u308b@\u6d17\u6fef\u59cb\u3081\u307e\u3057\u305f\u06de","screen_name":"_7_0_9_","location":"\u5927\u90fd\u4f1a\u6a2a\u6d5c\u770c\u6c11","url":"http:\/\/caramella2420.wix.com\/709site","description":"\u30e1\u30a4\u30c9\u30b3\u30b9\u3067JK\u3057\u3066\u308b\u30c9M\u306e\u5a18\u3002\u3002\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u521d\u97f3\u30df\u30af\u30d8\u30c3\u30c0\u30fc\u306f\u85e4\u54b2\u771f\u4e4e\u3060\u304b\u3089\u9593\u9055\u3048\u308b\u306a\u3088\uff01\u8a73\u3057\u304f\u306f\u30b5\u30a4\u30c8\u898b\u306b\u884c\u3063\u3066 \u5b88\u3063\u3066\u304f\u308c\u3066\u308b\u4eba\u2192@aruma_0000","protected":false,"verified":false,"followers_count":666,"friends_count":465,"listed_count":34,"favourites_count":23578,"statuses_count":85166,"created_at":"Sat Nov 15 04:22:32 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593740878922952705\/bQRq3IFj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593740878922952705\/bQRq3IFj.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623369071254372354\/94Uw4lMl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623369071254372354\/94Uw4lMl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899914888\/1440586038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WNRV35Tr9x","expanded_url":"http:\/\/twitter.com\/legfla","display_url":"twitter.com\/legfla","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283889152,"id_str":"663727653283889152","text":"https:\/\/t.co\/8jpZURDnnY","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520736155,"id_str":"520736155","name":"Bark\u0131n B\u00fclb\u00fcl","screen_name":"Barkinbulbul","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":133,"listed_count":0,"favourites_count":4,"statuses_count":275,"created_at":"Sat Mar 10 21:06:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445953300\/428216_10150714886353083_230900953082_11654001_2064925282_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445953300\/428216_10150714886353083_230900953082_11654001_2064925282_n.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3623252996\/865ca2c5281047ab51341c786875cf9e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3623252996\/865ca2c5281047ab51341c786875cf9e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8jpZURDnnY","expanded_url":"http:\/\/fb.me\/BbLdunJR","display_url":"fb.me\/BbLdunJR","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283889153,"id_str":"663727653283889153","text":"RT @ArchbishopNick: Favor provokes enemies, blessings attracts jealousy #gothroughit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2576079273,"id_str":"2576079273","name":"Chyna","screen_name":"Chinaberryv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":64,"listed_count":1,"favourites_count":285,"statuses_count":1445,"created_at":"Sun Jun 01 20:37:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:29:13 +0000 2015","id":663317345117544448,"id_str":"663317345117544448","text":"Favor provokes enemies, blessings attracts jealousy #gothroughit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42196820,"id_str":"42196820","name":"N. Duncan-Williams","screen_name":"ArchbishopNick","location":"Accra,Ghana","url":"https:\/\/www.facebook.com\/archbishopduncanwilliams","description":"ArchBishop N. Duncan-WIlliams; Father; Founder Of Action Chapel International; Servant Of The Lord","protected":false,"verified":false,"followers_count":24803,"friends_count":342,"listed_count":63,"favourites_count":140,"statuses_count":1656,"created_at":"Sun May 24 11:02:27 +0000 2009","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/69905732\/Picture_200.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/69905732\/Picture_200.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/443850632143724544\/p42oMan4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/443850632143724544\/p42oMan4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42196820\/1388780293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":32,"entities":{"hashtags":[{"text":"gothroughit","indices":[53,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gothroughit","indices":[73,85]}],"urls":[],"user_mentions":[{"screen_name":"ArchbishopNick","name":"N. Duncan-Williams","id":42196820,"id_str":"42196820","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258661888,"id_str":"663727653258661888","text":"RT @MM_eurosportfr: OFFICIEL. Fin de saison pour Robert Beric, rupture du ligament crois\u00e9 du genou droit. Les ambitions des Verts en prenne\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2476780307,"id_str":"2476780307","name":"F\u00f9tboliSta\u26bd\ufe0f","screen_name":"LaFille_Du_Foot","location":"ICI C'EST PARIS","url":null,"description":"La Prosperit\u00e9 d\u00e9voile les Heureux, l'Adversit\u00e9 r\u00e9v\u00e8le les Grands #TeamPSG","protected":false,"verified":false,"followers_count":494,"friends_count":307,"listed_count":25,"favourites_count":8242,"statuses_count":14005,"created_at":"Fri Apr 11 18:05:35 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"0A0099","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580753147322376192\/6MlSCphf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580753147322376192\/6MlSCphf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2476780307\/1430825562","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:55 +0000 2015","id":663724454346928128,"id_str":"663724454346928128","text":"OFFICIEL. Fin de saison pour Robert Beric, rupture du ligament crois\u00e9 du genou droit. Les ambitions des Verts en prennent un coup. #ASSE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127923450,"id_str":"127923450","name":"Martin Mosnier","screen_name":"MM_eurosportfr","location":"Paris","url":"http:\/\/www.eurosport.fr","description":"Journaliste \u00e0 @Eurosport_FR - Du foot (L1), du foot (mercato) et du foot (\u00e9quipe de France) parce qu'un jour, Moravcik m'a montr\u00e9 la lumi\u00e8re. Tweets are mine","protected":false,"verified":true,"followers_count":2818,"friends_count":1054,"listed_count":73,"favourites_count":19,"statuses_count":2775,"created_at":"Tue Mar 30 16:43:23 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/111806754\/KEITA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/111806754\/KEITA.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500542075138371584\/xnad_nNP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500542075138371584\/xnad_nNP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127923450\/1427544278","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":5,"entities":{"hashtags":[{"text":"ASSE","indices":[131,136]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ASSE","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"MM_eurosportfr","name":"Martin Mosnier","id":127923450,"id_str":"127923450","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258678272,"id_str":"663727653258678272","text":"RT @anabrendac: Wish up on a star\u2b50\ufe0f\ud83d\ude4c\ud83c\udffd #SweetDreams y'all \u2764\ufe0f\ud83d\udcad\ud83c\udf40 \ud83c\udf08\ud83d\udca4 \"Over The Rainbow\" by Ingrid Michaelson from Be OK #NowPlay\u2026 https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465299590,"id_str":"465299590","name":"Lovely Breco \u2763","screen_name":"lovelybreco","location":"M\u00e9xico","url":null,"description":"Esta bien estar mal, que nadie les diga lo contrario... It's perfectly beautiful to be wrong... #kindness @anabrendac \u2728","protected":false,"verified":false,"followers_count":2930,"friends_count":290,"listed_count":14,"favourites_count":190,"statuses_count":1189,"created_at":"Mon Jan 16 06:00:28 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"FA58AC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663535502264545281\/W23MJSX4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663535502264545281\/W23MJSX4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465299590\/1446600058","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:21:54 +0000 2015","id":663617494435954688,"id_str":"663617494435954688","text":"Wish up on a star\u2b50\ufe0f\ud83d\ude4c\ud83c\udffd #SweetDreams y'all \u2764\ufe0f\ud83d\udcad\ud83c\udf40 \ud83c\udf08\ud83d\udca4 \"Over The Rainbow\" by Ingrid Michaelson from Be OK #NowPlay\u2026 https:\/\/t.co\/n70S6TWqHF","source":"\u003ca href=\"http:\/\/spotify.com\" rel=\"nofollow\"\u003eSpotify\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30913899,"id_str":"30913899","name":"Ana Brenda","screen_name":"anabrendac","location":"Mexico\/Usa","url":null,"description":"Mexican\/Texan Actress\/Singer. Norte\u00f1a \n \nMgmt: @LatinWe\nPR: @trianacasados\n@JerryML\n \nhttp:\/\/facebook.com\/anabreco\ninstagram: anabreco\n@PanteneMexico","protected":false,"verified":true,"followers_count":1129567,"friends_count":1482,"listed_count":2248,"favourites_count":9518,"statuses_count":23150,"created_at":"Mon Apr 13 17:50:08 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABA6A6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444215983\/229.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444215983\/229.jpg","profile_background_tile":false,"profile_link_color":"2F8F82","profile_sidebar_border_color":"258F6C","profile_sidebar_fill_color":"D180B1","profile_text_color":"0F0D0D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658013021571317760\/spj2-HDB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658013021571317760\/spj2-HDB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30913899\/1435726363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":93,"favorite_count":301,"entities":{"hashtags":[{"text":"SweetDreams","indices":[22,34]},{"text":"NowPlay","indices":[102,110]}],"urls":[{"url":"https:\/\/t.co\/n70S6TWqHF","expanded_url":"http:\/\/spoti.fi\/KAQ0SX","display_url":"spoti.fi\/KAQ0SX","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SweetDreams","indices":[38,50]},{"text":"NowPlay","indices":[118,126]}],"urls":[{"url":"https:\/\/t.co\/n70S6TWqHF","expanded_url":"http:\/\/spoti.fi\/KAQ0SX","display_url":"spoti.fi\/KAQ0SX","indices":[139,140]}],"user_mentions":[{"screen_name":"anabrendac","name":"Ana Brenda","id":30913899,"id_str":"30913899","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258723328,"id_str":"663727653258723328","text":"@politicians4us if our own democratic government don't do the right thing, we vote them out and get someone who does. We don't need dictator","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727154144935936,"in_reply_to_status_id_str":"663727154144935936","in_reply_to_user_id":3086956505,"in_reply_to_user_id_str":"3086956505","in_reply_to_screen_name":"politicians4us","user":{"id":17427729,"id_str":"17427729","name":"mkpLeave.EU","screen_name":"mkpdavies","location":"Metroluvvie bubble (Woking)","url":"http:\/\/euwhorelist.blogspot.com","description":"Britain & all of Europe is better than EU. We all deserve better than these unelected fools that've been lied into existance. #Brexit #LeaveEU #VoteLeave","protected":false,"verified":false,"followers_count":7698,"friends_count":7381,"listed_count":109,"favourites_count":40604,"statuses_count":73983,"created_at":"Sun Nov 16 20:56:50 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/19727673\/libertarian.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/19727673\/libertarian.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663111056416337921\/XZn0-8Rf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663111056416337921\/XZn0-8Rf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17427729\/1446804152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"politicians4us","name":"Politiciansforpeople","id":3086956505,"id_str":"3086956505","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653287948288,"id_str":"663727653287948288","text":"RT @Troll__Football: Happy Birthday Alessandro Del Piero https:\/\/t.co\/EfcnDTijUL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213945726,"id_str":"213945726","name":"Showsome","screen_name":"Shohibisdabest","location":null,"url":"http:\/\/twitter.com\/Showsome","description":"Instagram: mdsb_54\n#YNWA","protected":false,"verified":false,"followers_count":64,"friends_count":213,"listed_count":0,"favourites_count":97,"statuses_count":1476,"created_at":"Wed Nov 10 04:56:14 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3A18C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/350392515\/xf7581bfa544959564e016fd3b0f340a.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/350392515\/xf7581bfa544959564e016fd3b0f340a.jpg","profile_background_tile":false,"profile_link_color":"0CF21C","profile_sidebar_border_color":"AAF0DA","profile_sidebar_fill_color":"E6FACD","profile_text_color":"11EB5D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581098829035872257\/mUOjC085_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581098829035872257\/mUOjC085_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213945726\/1440602956","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:40 +0000 2015","id":663723380793708544,"id_str":"663723380793708544","text":"Happy Birthday Alessandro Del Piero https:\/\/t.co\/EfcnDTijUL","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571964518,"id_str":"571964518","name":"Troll Football","screen_name":"Troll__Football","location":null,"url":"http:\/\/www.facebook.com\/Troll.Football","description":null,"protected":false,"verified":false,"followers_count":465976,"friends_count":278,"listed_count":1572,"favourites_count":43,"statuses_count":11967,"created_at":"Sat May 05 18:11:01 +0000 2012","utc_offset":19800,"time_zone":"Kolkata","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539425149896761345\/vFUOBR5t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539425149896761345\/vFUOBR5t.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553643326977503232\/dAhuhERZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553643326977503232\/dAhuhERZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571964518\/1446514439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":385,"favorite_count":242,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723376100442112,"id_str":"663723376100442112","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","url":"https:\/\/t.co\/EfcnDTijUL","display_url":"pic.twitter.com\/EfcnDTijUL","expanded_url":"http:\/\/twitter.com\/Troll__Football\/status\/663723380793708544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723376100442112,"id_str":"663723376100442112","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","url":"https:\/\/t.co\/EfcnDTijUL","display_url":"pic.twitter.com\/EfcnDTijUL","expanded_url":"http:\/\/twitter.com\/Troll__Football\/status\/663723380793708544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Troll__Football","name":"Troll Football","id":571964518,"id_str":"571964518","indices":[3,19]}],"symbols":[],"media":[{"id":663723376100442112,"id_str":"663723376100442112","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","url":"https:\/\/t.co\/EfcnDTijUL","display_url":"pic.twitter.com\/EfcnDTijUL","expanded_url":"http:\/\/twitter.com\/Troll__Football\/status\/663723380793708544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723380793708544,"source_status_id_str":"663723380793708544","source_user_id":571964518,"source_user_id_str":"571964518"}]},"extended_entities":{"media":[{"id":663723376100442112,"id_str":"663723376100442112","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE5N2XAAAqnY1.jpg","url":"https:\/\/t.co\/EfcnDTijUL","display_url":"pic.twitter.com\/EfcnDTijUL","expanded_url":"http:\/\/twitter.com\/Troll__Football\/status\/663723380793708544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723380793708544,"source_status_id_str":"663723380793708544","source_user_id":571964518,"source_user_id_str":"571964518"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978664"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292146688,"id_str":"663727653292146688","text":"RT @3bjunior__: \u6b63\u89e3\u306f\u2026\n\u63a2\u691c\u968a\u307f\u305f\u3044\u306a\u9ad8\u4e95\u5343\u5e06\u3068\u5185\u5c71\u3042\u307f\n\u3067\u3057\u305f\u3002\n#3bjr https:\/\/t.co\/pl46jIjFfx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2901212082,"id_str":"2901212082","name":"\u7652\u3091\u9580","screen_name":"zeikindorobo3rd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":60,"friends_count":90,"listed_count":0,"favourites_count":1490,"statuses_count":190,"created_at":"Sun Nov 16 06:10:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606463199395770368\/SHg5t4CR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606463199395770368\/SHg5t4CR.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606487634513293312\/ytzmlEty_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606487634513293312\/ytzmlEty_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2901212082\/1433432367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:47 +0000 2015","id":663725424778743808,"id_str":"663725424778743808","text":"\u6b63\u89e3\u306f\u2026\n\u63a2\u691c\u968a\u307f\u305f\u3044\u306a\u9ad8\u4e95\u5343\u5e06\u3068\u5185\u5c71\u3042\u307f\n\u3067\u3057\u305f\u3002\n#3bjr https:\/\/t.co\/pl46jIjFfx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316627018,"id_str":"3316627018","name":"3bjunior","screen_name":"3bjunior__","location":"\u897f\u6b66\u5712\u904a\u5712\u5730","url":"http:\/\/www.3bjr.com","description":"\u3010\u516c\u5f0f\u3011\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306f \u266f3bjr","protected":false,"verified":false,"followers_count":5995,"friends_count":2,"listed_count":134,"favourites_count":0,"statuses_count":332,"created_at":"Wed Jun 10 02:46:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"76D8FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608470434221334529\/Q7e09Xcg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608470434221334529\/Q7e09Xcg_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":42,"entities":{"hashtags":[{"text":"3bjr","indices":[27,32]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725421301633024,"id_str":"663725421301633024","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","url":"https:\/\/t.co\/pl46jIjFfx","display_url":"pic.twitter.com\/pl46jIjFfx","expanded_url":"http:\/\/twitter.com\/3bjunior__\/status\/663725424778743808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725421301633024,"id_str":"663725421301633024","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","url":"https:\/\/t.co\/pl46jIjFfx","display_url":"pic.twitter.com\/pl46jIjFfx","expanded_url":"http:\/\/twitter.com\/3bjunior__\/status\/663725424778743808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"3bjr","indices":[43,48]}],"urls":[],"user_mentions":[{"screen_name":"3bjunior__","name":"3bjunior","id":3316627018,"id_str":"3316627018","indices":[3,14]}],"symbols":[],"media":[{"id":663725421301633024,"id_str":"663725421301633024","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","url":"https:\/\/t.co\/pl46jIjFfx","display_url":"pic.twitter.com\/pl46jIjFfx","expanded_url":"http:\/\/twitter.com\/3bjunior__\/status\/663725424778743808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663725424778743808,"source_status_id_str":"663725424778743808","source_user_id":3316627018,"source_user_id_str":"3316627018"}]},"extended_entities":{"media":[{"id":663725421301633024,"id_str":"663725421301633024","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGwQ0UkAAXpyY.jpg","url":"https:\/\/t.co\/pl46jIjFfx","display_url":"pic.twitter.com\/pl46jIjFfx","expanded_url":"http:\/\/twitter.com\/3bjunior__\/status\/663725424778743808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663725424778743808,"source_status_id_str":"663725424778743808","source_user_id":3316627018,"source_user_id_str":"3316627018"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279694848,"id_str":"663727653279694848","text":"RT @ArabAffixtion: \u0627\u063a\u0627\u0646\u064a \u0627\u0641 \u0627\u0643\u0633 \u0627\u0644\u0623\u0643\u062b\u0631 \u0634\u0639\u0628\u064a\u0647 \u0641\u064a \u0645\u0648\u0642\u0639 spotify \ud83d\udc95\n\n https:\/\/t.co\/WZh8mySltL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2516233819,"id_str":"2516233819","name":"fx4walls","screen_name":"xshaahad","location":null,"url":null,"description":"Shaowl \u2022 aff(x)tion \u2022 star1 \u2022 BlingBling","protected":false,"verified":false,"followers_count":107,"friends_count":153,"listed_count":0,"favourites_count":806,"statuses_count":2980,"created_at":"Thu May 22 20:02:47 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656491544363536384\/4hZTeR2w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656491544363536384\/4hZTeR2w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2516233819\/1445352766","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:06 +0000 2015","id":663725504814563328,"id_str":"663725504814563328","text":"\u0627\u063a\u0627\u0646\u064a \u0627\u0641 \u0627\u0643\u0633 \u0627\u0644\u0623\u0643\u062b\u0631 \u0634\u0639\u0628\u064a\u0647 \u0641\u064a \u0645\u0648\u0642\u0639 spotify \ud83d\udc95\n\n https:\/\/t.co\/WZh8mySltL","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345462623,"id_str":"345462623","name":"Arab Aff(x)tion","screen_name":"ArabAffixtion","location":null,"url":"https:\/\/fxtranslation.wordpress.com\/","description":"\u200f\u062d\u0633\u0627\u0628 \u0644\u0641\u0627\u0646\u0632 \u0627\u0641 \u0627\u0643\u0633 \u0648\u0633\u0648\u0644\u064a \u0627\u0644\u0639\u0631\u0628\u064a. \u0643\u0644 \u0645\u0627\u064a\u062e\u0635 \u0627\u0641 \u0627\u0643\u0633 \u0648\u0633\u0648\u0644\u064a \u062a\u062c\u062f\u0648\u0647 \u0647\u0646\u0627. \u0645\u062f\u0648\u0646\u0629 \u0627\u0644\u062a\u0631\u062c\u0645\u0647 \u0641\u064a \u0627\u0644\u0628\u0627\u064a\u0648 . \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0642\u062f\u064a\u0645 arabaffixtions \u062a\u0645 \u062a\u0647\u0643\u064a\u0631\u0647","protected":false,"verified":false,"followers_count":8222,"friends_count":81,"listed_count":27,"favourites_count":700,"statuses_count":20496,"created_at":"Sat Jul 30 16:55:42 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2A0FFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482477228710572033\/0FIByAHt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482477228710572033\/0FIByAHt.jpeg","profile_background_tile":true,"profile_link_color":"FF0A0A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAC0D1","profile_text_color":"D90F0F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662702682700972032\/gi8sL8mV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662702682700972032\/gi8sL8mV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/345462623\/1446828596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719815702417408,"id_str":"663719815702417408","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":506,"resize":"fit"},"small":{"w":340,"h":358,"resize":"fit"},"medium":{"w":480,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"}]},"extended_entities":{"media":[{"id":663719815702417408,"id_str":"663719815702417408","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":506,"resize":"fit"},"small":{"w":340,"h":358,"resize":"fit"},"medium":{"w":480,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"},{"id":663719821649969152,"id_str":"663719821649969152","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBqUfVAAAonzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBqUfVAAAonzZ.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":363,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":480,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArabAffixtion","name":"Arab Aff(x)tion","id":345462623,"id_str":"345462623","indices":[3,17]}],"symbols":[],"media":[{"id":663719815702417408,"id_str":"663719815702417408","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":506,"resize":"fit"},"small":{"w":340,"h":358,"resize":"fit"},"medium":{"w":480,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"}]},"extended_entities":{"media":[{"id":663719815702417408,"id_str":"663719815702417408","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBp-VUkAAy_AV.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":506,"resize":"fit"},"small":{"w":340,"h":358,"resize":"fit"},"medium":{"w":480,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"},{"id":663719821649969152,"id_str":"663719821649969152","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBqUfVAAAonzZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBqUfVAAAonzZ.jpg","url":"https:\/\/t.co\/WZh8mySltL","display_url":"pic.twitter.com\/WZh8mySltL","expanded_url":"http:\/\/twitter.com\/ambroliu\/status\/663719827412922369\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":363,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":480,"h":363,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663719827412922369,"source_status_id_str":"663719827412922369","source_user_id":2397747560,"source_user_id_str":"2397747560"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262757889,"id_str":"663727653262757889","text":"Fuck it , it is now","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402970199,"id_str":"402970199","name":"6\ufe0f\u20e3","screen_name":"ItsBoogieHoe","location":"Bandit Texas ","url":null,"description":"Defensive end #6 for Centex Pirates #FatherFirst","protected":false,"verified":false,"followers_count":1542,"friends_count":346,"listed_count":2,"favourites_count":2828,"statuses_count":34238,"created_at":"Tue Nov 01 20:51:35 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663578477107408896\/MdQBhm1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663578477107408896\/MdQBhm1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402970199\/1446064754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653296447489,"id_str":"663727653296447489","text":"RT @yugagashenki: \u0418\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e, \u0430 \u0433\u0434\u0435 \u0436\u0435 \u0432\u0441\u0435 \u044d\u0442\u0438 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u0440\u0430\u043d\u044c\u0448\u0435-\u0442\u043e \u0431\u044b\u043b\u0438? https:\/\/t.co\/pa06sHvQPI","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24556769,"id_str":"24556769","name":"the end","screen_name":"zamkadysh","location":"\u041a\u0420\u0410\u0421\u041d\u041e\u0414\u0410\u0420","url":null,"description":"Alone With Everybody #CFC","protected":false,"verified":false,"followers_count":1309,"friends_count":220,"listed_count":29,"favourites_count":0,"statuses_count":54039,"created_at":"Sun Mar 15 17:49:27 +0000 2009","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588293607276187648\/uwrwBncP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588293607276187648\/uwrwBncP.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617603848304205824\/H7_ytq_a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617603848304205824\/H7_ytq_a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24556769\/1436083680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:22 +0000 2015","id":663727081461821440,"id_str":"663727081461821440","text":"\u0418\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e, \u0430 \u0433\u0434\u0435 \u0436\u0435 \u0432\u0441\u0435 \u044d\u0442\u0438 \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u044b \u0440\u0430\u043d\u044c\u0448\u0435-\u0442\u043e \u0431\u044b\u043b\u0438? https:\/\/t.co\/pa06sHvQPI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259190823,"id_str":"259190823","name":"\u042e\u0413\u0410.\u0440\u0443","screen_name":"yugagashenki","location":"Krasnodar, Russia","url":"http:\/\/yuga.ru","description":"\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u043d\u0435\u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0442\u0432\u0438\u0442\u0442\u0435\u0440 \u043f\u043e\u0440\u0442\u0430\u043b\u0430 \u042e\u0413\u0410.\u0440\u0443","protected":false,"verified":false,"followers_count":6821,"friends_count":523,"listed_count":152,"favourites_count":37,"statuses_count":33242,"created_at":"Tue Mar 01 10:00:44 +0000 2011","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/211614084\/bg.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/211614084\/bg.gif","profile_background_tile":false,"profile_link_color":"F0540C","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000339247317\/bff0e3dc3185367165ba016cfaaa825b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000339247317\/bff0e3dc3185367165ba016cfaaa825b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259190823\/1401459063","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725461906792449,"quoted_status_id_str":"663725461906792449","quoted_status":{"created_at":"Mon Nov 09 14:30:56 +0000 2015","id":663725461906792449,"id_str":"663725461906792449","text":"\u0411\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e \u0434\u0435\u043f\u0443\u0442\u0430\u0442\u043e\u0432 \u0441\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432\u043e \u043c\u043d\u0435\u043d\u0438\u0438, \u0447\u0442\u043e \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044f \u0432 \u0437\u0435\u043c\u0435\u043b\u044c\u043d\u043e\u043c \u0438 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u043d\u043e\u043c \u0432\u043e\u043f\u0440\u043e\u0441\u0435 \u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440\u0430 - \u043f\u0440\u043e\u0441\u0442\u043e \u043a\u0430\u0442\u0430\u0441\u0442\u0440\u043e\u0444\u0430.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104461932,"id_str":"104461932","name":"\u0413\u0443\u0441\u0430\u043a \u0410\u043b\u0435\u043a\u0441\u0435\u0439","screen_name":"gusak_av","location":"\u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440","url":"http:\/\/www.kubzsk.ru\/deputiesPlace\/deputies\/dep5\/gusak\/","description":"Ie Deputat.","protected":false,"verified":false,"followers_count":29133,"friends_count":205,"listed_count":64,"favourites_count":1282,"statuses_count":24060,"created_at":"Wed Jan 13 12:04:05 +0000 2010","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/124677762\/nvneverending_twitter.br.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/124677762\/nvneverending_twitter.br.jpg","profile_background_tile":true,"profile_link_color":"469202","profile_sidebar_border_color":"2D4516","profile_sidebar_fill_color":"94CA63","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613068139170017280\/wi9NCFj1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613068139170017280\/wi9NCFj1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104461932\/1358795147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pa06sHvQPI","expanded_url":"https:\/\/twitter.com\/gusak_av\/status\/663725461906792449","display_url":"twitter.com\/gusak_av\/statu\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pa06sHvQPI","expanded_url":"https:\/\/twitter.com\/gusak_av\/status\/663725461906792449","display_url":"twitter.com\/gusak_av\/statu\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"yugagashenki","name":"\u042e\u0413\u0410.\u0440\u0443","id":259190823,"id_str":"259190823","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079978666"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653266976768,"id_str":"663727653266976768","text":"\u5510\u7a81\u306b\u5c0f\u7530\u548c\u6b63\u306e\u30a6\u30ec\u30c3\u30b7\u30af\u30c3\u30c6\u301c\u304cfresh good day\u306b\u8074\u3053\u3048\u308b\u805e\u304d\u9593\u9055\u3044\u601d\u3044\u51fa\u3057\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022089608,"id_str":"3022089608","name":"EMI","screen_name":"bur6y","location":"\u304a\u3075\u3068\u3093","url":null,"description":"\u30cf\u30fc\u30c9\u30b9\u30bf\u30a4\u30eb\u3068\u3061\u3087\u3063\u3068\u306e\u30cf\u30fc\u30c9\u30b3\u30a2 \/ \u8077\u63a2\u3057\u4e2d21\u3044\u304b\u308c\u307d\u3093\u3061 \/ japan \/ Nagoya\u21d4Gifu \/ \u30c4\u30a4\u6d88\u3057\u5e38\u7fd2\u72af \/ \u304a\u3044\u3057\u3044\u3054\u306f\u3093\u305f\u3079\u305f\u3044 \/ \u98df\u3079\u308b\u3068\u306a\u304f\u306a\u308b\u306e\u3064\u3089\u3044\u306d","protected":false,"verified":false,"followers_count":66,"friends_count":159,"listed_count":3,"favourites_count":1708,"statuses_count":1095,"created_at":"Mon Feb 16 07:26:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654386186224451584\/OfmYeN6J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654386186224451584\/OfmYeN6J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022089608\/1444900766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978659"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283831808,"id_str":"663727653283831808","text":"RT @Newzapalooza: So, Drake, are you in next year? https:\/\/t.co\/ZEIrauBUVe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":700194168,"id_str":"700194168","name":"Children's Aid FDN","screen_name":"CAFDN","location":"Toronto","url":"http:\/\/www.cafdn.org","description":"Children's Aid Foundation funds programs that give Canada's most vulnerable children and youth hope for a promising future.","protected":false,"verified":false,"followers_count":1120,"friends_count":1213,"listed_count":29,"favourites_count":206,"statuses_count":2450,"created_at":"Tue Jul 17 02:19:01 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439454168940421121\/c4DVvYVQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439454168940421121\/c4DVvYVQ.png","profile_background_tile":false,"profile_link_color":"00B5C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610835512853557249\/v8aYOT7__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610835512853557249\/v8aYOT7__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/700194168\/1434469840","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:00:16 +0000 2015","id":662992970791030784,"id_str":"662992970791030784","text":"So, Drake, are you in next year? https:\/\/t.co\/ZEIrauBUVe","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":842806405,"id_str":"842806405","name":"Newzapalooza 2015","screen_name":"Newzapalooza","location":"Centre of the Universe","url":"http:\/\/newzapalooza.ca","description":"Toronto's most awesome - and only - Media Battle of the Bands. We turn it to 11 Nov. 6 at The Opera House. Proceeds to Children's Aid Foundation.","protected":false,"verified":false,"followers_count":461,"friends_count":720,"listed_count":6,"favourites_count":64,"statuses_count":545,"created_at":"Mon Sep 24 02:23:58 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512306845780680704\/s7tb88Fp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512306845780680704\/s7tb88Fp.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518067542103842816\/MP6mwI2z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518067542103842816\/MP6mwI2z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842806405\/1442073090","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662845249799249920,"quoted_status_id_str":"662845249799249920","quoted_status":{"created_at":"Sat Nov 07 04:13:17 +0000 2015","id":662845249799249920,"id_str":"662845249799249920","text":"The real winners of @Newzapalooza: Drake and Elle King. Hotline Bling and Exes and Ohs played 3x each! Guilty on the latter.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96898317,"id_str":"96898317","name":"Allison Jones","screen_name":"allisonjones_cp","location":"Toronto","url":null,"description":"Canadian Press reporter covering Ontario politics. Otherwise: bass playing, Simpsons referencing, working cheese into every meal.","protected":false,"verified":true,"followers_count":4196,"friends_count":752,"listed_count":218,"favourites_count":580,"statuses_count":6870,"created_at":"Tue Dec 15 02:53:05 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579815264382001152\/OhYLBaU4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579815264382001152\/OhYLBaU4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96898317\/1379617338","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Newzapalooza","name":"Newzapalooza 2015","id":842806405,"id_str":"842806405","indices":[20,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZEIrauBUVe","expanded_url":"https:\/\/twitter.com\/allisonjones_cp\/status\/662845249799249920","display_url":"twitter.com\/allisonjones_c\u2026","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZEIrauBUVe","expanded_url":"https:\/\/twitter.com\/allisonjones_cp\/status\/662845249799249920","display_url":"twitter.com\/allisonjones_c\u2026","indices":[51,74]}],"user_mentions":[{"screen_name":"Newzapalooza","name":"Newzapalooza 2015","id":842806405,"id_str":"842806405","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283880960,"id_str":"663727653283880960","text":"Fallout 4 is a good example of what you put in equals what get out.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226266346,"id_str":"226266346","name":"Slim","screen_name":"Thurstology","location":"Ellenwood Ga","url":null,"description":"Electrical engineering","protected":false,"verified":false,"followers_count":499,"friends_count":531,"listed_count":0,"favourites_count":511,"statuses_count":4361,"created_at":"Mon Dec 13 19:01:30 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"141211","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658081919637278720\/4lscHeuY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658081919637278720\/4lscHeuY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226266346\/1410035376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"90c543b181a7c56e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/90c543b181a7c56e.json","place_type":"city","name":"Statesboro","full_name":"Statesboro, GA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-81.869986,32.360463],[-81.869986,32.520558],[-81.731171,32.520558],[-81.731171,32.360463]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279502336,"id_str":"663727653279502336","text":"RT @Astroplus1: Justin Bieber \n#PURPOSE. https:\/\/t.co\/MwkopVKaB7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2246977039,"id_str":"2246977039","name":"Rara","screen_name":"itsthenewRaRa","location":"PH","url":"http:\/\/kathbernardo.com","description":"a lot of fangirling lol . living in a kathniel world and #JBPH . that's my purpose.... KN\u2716G5xBracexJoaquin\u2716JustinDrew","protected":false,"verified":false,"followers_count":597,"friends_count":668,"listed_count":4,"favourites_count":4461,"statuses_count":13640,"created_at":"Sun Dec 15 09:59:50 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608568722698018816\/iFeizKYG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608568722698018816\/iFeizKYG.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650178197103841280\/A4wZQHCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650178197103841280\/A4wZQHCw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246977039\/1445514374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:23:15 +0000 2015","id":662953453824507904,"id_str":"662953453824507904","text":"Justin Bieber \n#PURPOSE. https:\/\/t.co\/MwkopVKaB7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62906125,"id_str":"62906125","name":"Astroplus","screen_name":"Astroplus1","location":"instagram: astroplus1 ","url":"http:\/\/www.facebook.com\/Astroplus1","description":"We give the best of the entertainment lifestyle experience to Filipinos and the rest of the world!","protected":false,"verified":false,"followers_count":48384,"friends_count":1401,"listed_count":143,"favourites_count":2030,"statuses_count":176725,"created_at":"Tue Aug 04 19:35:38 +0000 2009","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542464677716844544\/elXwK3Cj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542464677716844544\/elXwK3Cj.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554534007283535872\/eknw4KZR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554534007283535872\/eknw4KZR_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":72,"entities":{"hashtags":[{"text":"PURPOSE","indices":[15,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662953158725885952,"id_str":"662953158725885952","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","url":"https:\/\/t.co\/MwkopVKaB7","display_url":"pic.twitter.com\/MwkopVKaB7","expanded_url":"http:\/\/twitter.com\/Astroplus1\/status\/662953453824507904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":224,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":398,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662953158725885952,"id_str":"662953158725885952","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","url":"https:\/\/t.co\/MwkopVKaB7","display_url":"pic.twitter.com\/MwkopVKaB7","expanded_url":"http:\/\/twitter.com\/Astroplus1\/status\/662953453824507904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":224,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":398,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[199,112],"duration_millis":30024,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/vid\/318x180\/kAt3YdyANRP5mhRT.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/pl\/NKwlB-HhXJV6IBYN.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/vid\/318x180\/kAt3YdyANRP5mhRT.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/pl\/NKwlB-HhXJV6IBYN.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PURPOSE","indices":[31,39]}],"urls":[],"user_mentions":[{"screen_name":"Astroplus1","name":"Astroplus","id":62906125,"id_str":"62906125","indices":[3,14]}],"symbols":[],"media":[{"id":662953158725885952,"id_str":"662953158725885952","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","url":"https:\/\/t.co\/MwkopVKaB7","display_url":"pic.twitter.com\/MwkopVKaB7","expanded_url":"http:\/\/twitter.com\/Astroplus1\/status\/662953453824507904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":224,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":398,"h":224,"resize":"fit"}},"source_status_id":662953453824507904,"source_status_id_str":"662953453824507904","source_user_id":62906125,"source_user_id_str":"62906125"}]},"extended_entities":{"media":[{"id":662953158725885952,"id_str":"662953158725885952","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662953158725885952\/pu\/img\/szSEc8iySH9R90HQ.jpg","url":"https:\/\/t.co\/MwkopVKaB7","display_url":"pic.twitter.com\/MwkopVKaB7","expanded_url":"http:\/\/twitter.com\/Astroplus1\/status\/662953453824507904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":224,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":398,"h":224,"resize":"fit"}},"source_status_id":662953453824507904,"source_status_id_str":"662953453824507904","source_user_id":62906125,"source_user_id_str":"62906125","video_info":{"aspect_ratio":[199,112],"duration_millis":30024,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/vid\/318x180\/kAt3YdyANRP5mhRT.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/pl\/NKwlB-HhXJV6IBYN.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/vid\/318x180\/kAt3YdyANRP5mhRT.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662953158725885952\/pu\/pl\/NKwlB-HhXJV6IBYN.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279502338,"id_str":"663727653279502338","text":"RT @pabo_oppa: 151107 TWICE \ud2b8\uc640\uc774\uc2a4 \uc0ac\uc778\ud68c \n#twice #\ud2b8\uc640\uc774\uc2a4 https:\/\/t.co\/nabzxEDSMg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180030010,"id_str":"2180030010","name":"\uc720\ud305","screen_name":"YuTing0729","location":null,"url":null,"description":"\ud2f0\uc544\ub77c \n\uc5d0\uc774\ud551\ud06c \n\ube44\uc6d0\uc5d0\uc774\ud3ec \n\ub808\ub4dc\ubca8\ubcb3 \n\/","protected":false,"verified":false,"followers_count":14,"friends_count":193,"listed_count":1,"favourites_count":20,"statuses_count":708,"created_at":"Thu Nov 07 12:44:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645655928717512704\/xbQLxOrP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645655928717512704\/xbQLxOrP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2180030010\/1442771342","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:52:39 +0000 2015","id":663021250944462848,"id_str":"663021250944462848","text":"151107 TWICE \ud2b8\uc640\uc774\uc2a4 \uc0ac\uc778\ud68c \n#twice #\ud2b8\uc640\uc774\uc2a4 https:\/\/t.co\/nabzxEDSMg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496266193,"id_str":"496266193","name":"pabooppa","screen_name":"pabo_oppa","location":"KOREA","url":null,"description":"Japanese\/photo work-\/omg:@arinxarin\/ apink:@pabooppa_apink \/hellovenus:@pabooppa_venus \/gfriend:@yerinxyerin\/ \ubc15\uc9c0\uc724:@shuadot \/kiwiband:@pabooppa_kiwi\/ aoa\/twice","protected":false,"verified":false,"followers_count":4975,"friends_count":251,"listed_count":166,"favourites_count":426,"statuses_count":5538,"created_at":"Sat Feb 18 19:43:39 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653182064355741696\/Arn2i6Br_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653182064355741696\/Arn2i6Br_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496266193\/1446815499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":677,"favorite_count":392,"entities":{"hashtags":[{"text":"twice","indices":[23,29]},{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[30,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663021248268505088,"id_str":"663021248268505088","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","url":"https:\/\/t.co\/nabzxEDSMg","display_url":"pic.twitter.com\/nabzxEDSMg","expanded_url":"http:\/\/twitter.com\/pabo_oppa\/status\/663021250944462848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663021248268505088,"id_str":"663021248268505088","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","url":"https:\/\/t.co\/nabzxEDSMg","display_url":"pic.twitter.com\/nabzxEDSMg","expanded_url":"http:\/\/twitter.com\/pabo_oppa\/status\/663021250944462848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"twice","indices":[38,44]},{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[45,50]}],"urls":[],"user_mentions":[{"screen_name":"pabo_oppa","name":"pabooppa","id":496266193,"id_str":"496266193","indices":[3,13]}],"symbols":[],"media":[{"id":663021248268505088,"id_str":"663021248268505088","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","url":"https:\/\/t.co\/nabzxEDSMg","display_url":"pic.twitter.com\/nabzxEDSMg","expanded_url":"http:\/\/twitter.com\/pabo_oppa\/status\/663021250944462848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663021250944462848,"source_status_id_str":"663021250944462848","source_user_id":496266193,"source_user_id_str":"496266193"}]},"extended_entities":{"media":[{"id":663021248268505088,"id_str":"663021248268505088","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGT_2UkAAafuV.png","url":"https:\/\/t.co\/nabzxEDSMg","display_url":"pic.twitter.com\/nabzxEDSMg","expanded_url":"http:\/\/twitter.com\/pabo_oppa\/status\/663021250944462848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663021250944462848,"source_status_id_str":"663021250944462848","source_user_id":496266193,"source_user_id_str":"496266193"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292150785,"id_str":"663727653292150785","text":"RT @FaHD0_o: Sevilla\n \u25cb \n\u304f|)\u3078\n \u3009 \n \uffe3\uffe3\u2517\u2513 Real madrid\n \u3000 \u3000 \u2517\u2513\u3000 \u30fe\u25cb\uff7c\n \u3000\u3000 \u2517\u2513 \u30d8\/ \n \u3000 \u2517\u2513\u30ce \n\u3000 \u3000 \u3000 \u3000 \u3000 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":735405559,"id_str":"735405559","name":"\u0632\u064a\u0627\u062f \u0639\u0628\u062f\u0627\u0644\u0644\u0647 #56","screen_name":"Ziiyad_1419","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"AlHilal","protected":false,"verified":false,"followers_count":465,"friends_count":284,"listed_count":0,"favourites_count":112,"statuses_count":6562,"created_at":"Fri Aug 03 19:24:45 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652270955\/snlj6bv5derugai2ackd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652270955\/snlj6bv5derugai2ackd.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"373737","profile_sidebar_fill_color":"373737","profile_text_color":"FB840E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634841763748835328\/1sYJuZ1m_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634841763748835328\/1sYJuZ1m_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735405559\/1446398359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:54 +0000 2015","id":663708344109170688,"id_str":"663708344109170688","text":"Sevilla\n \u25cb \n\u304f|)\u3078\n \u3009 \n \uffe3\uffe3\u2517\u2513 Real madrid\n \u3000 \u3000 \u2517\u2513\u3000 \u30fe\u25cb\uff7c\n \u3000\u3000 \u2517\u2513 \u30d8\/ \n \u3000 \u2517\u2513\u30ce \n\u3000 \u3000 \u3000 \u3000 \u3000 \u2517\u2513","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544331127,"id_str":"544331127","name":"\u0641","screen_name":"FaHD0_o","location":"\u0634\u0628\u064a\u062d \u0648 \u0627\u0643\u062b\u0631 \u0644\u0640 \u0646\u064a\u0645\u0627\u0631 ","url":null,"description":"\u0645\u0646 \u0631\u0627\u0642\u0628 \u0627\u0644\u0646\u0627\u0633 \u0645\u0627\u062a \u0647\u0645\u0627\u064b \u0648\u0644\u0643\u0646\u064a \u0645\u062a \u0636\u062d\u0643\u0627\u064b","protected":false,"verified":false,"followers_count":654,"friends_count":67,"listed_count":1,"favourites_count":65,"statuses_count":6108,"created_at":"Tue Apr 03 12:53:00 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655479965648101376\/UIhodJsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655479965648101376\/UIhodJsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544331127\/1445545945","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FaHD0_o","name":"\u0641","id":544331127,"id_str":"544331127","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653296279552,"id_str":"663727653296279552","text":"@0430genem @kmsk_mio \u79c1\u3082\u3059\u3050\u8a71\u76db\u308a\u4e0a\u304c\u3063\u3066\u3057\u307e\u3046\u306e\u3088\u306a\u3041www\u5973\u30de\u30cd\u307b\u3093\u3068\u5b97\u6559\u52e7\u8a98\u6c17\u3092\u3064\u3051\u3088\u3046wwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725632409333760,"in_reply_to_status_id_str":"663725632409333760","in_reply_to_user_id":3183797094,"in_reply_to_user_id_str":"3183797094","in_reply_to_screen_name":"0430genem","user":{"id":574363274,"id_str":"574363274","name":"\u308a\u306e\u305f\u305d\uff0f(^o^)\uff3cDJ\u306b\u306a\u308a\u305f\u3044","screen_name":"r_ilakkuma","location":"\u6771\u5de5\u5927\u60c5\u79d1 FSC(Ba&Key) \u307c\u30fc\u3068 magic","url":null,"description":"\u4e94\u7dda\u8b5c\u6050\u6016\u75c7","protected":false,"verified":false,"followers_count":459,"friends_count":416,"listed_count":3,"favourites_count":7950,"statuses_count":20566,"created_at":"Tue May 08 10:21:14 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647781065914912768\/1s2trH4r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647781065914912768\/1s2trH4r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574363274\/1401450634","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0430genem","name":"\u3082\u3048","id":3183797094,"id_str":"3183797094","indices":[0,10]},{"screen_name":"kmsk_mio","name":"\u304b\u307e\u3055\u304b\u307f\u304a","id":3072675403,"id_str":"3072675403","indices":[11,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978666"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292109824,"id_str":"663727653292109824","text":"Parlamento de Catalu\u00f1a aprob\u00f3 resoluci\u00f3n para independencia de Espa\u00f1a: El Parlamento de Catalu\u00f1a aprob\u00f3 este l... https:\/\/t.co\/itNS6qvbAY","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663413331,"id_str":"1663413331","name":"gilberto andres","screen_name":"GorussoAbby","location":null,"url":null,"description":"No pretendas que las cosas ocurran como tu quieres. Desea, m\u00e1s bien, que se produzcan tal como se producen, y ser\u00e1s feliz.","protected":false,"verified":false,"followers_count":9,"friends_count":113,"listed_count":0,"favourites_count":14,"statuses_count":4347,"created_at":"Sun Aug 11 20:26:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000706883623\/b14cd38d9fa8dcc5defbc9da0649e7c0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000706883623\/b14cd38d9fa8dcc5defbc9da0649e7c0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1663413331\/1403589854","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/itNS6qvbAY","expanded_url":"http:\/\/bit.ly\/1Hq79T7","display_url":"bit.ly\/1Hq79T7","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653296320512,"id_str":"663727653296320512","text":"RT @kusudaaina: \u53f0\u6e7e\u306e\u307f\u306a\u3055\u3093\u306f\u3001\u30d5\u30a1\u30f3\u306e\u7686\u3055\u3093\u304c\u30de\u30ca\u30fc\u3092\u6ce8\u610f\u3057\u3066\u3044\u305f\u308a\u3001\u58f0\u304b\u3051\u3042\u3063\u305f\u308a\u3057\u3066\u3066\u307f\u3093\u306a\u3044\u3044\u4eba\u3067\u3057\u305f\uff01\uff01\n\u3068\u3063\u3066\u3082\u611f\u52d5\u3057\u307e\u3057\u305f\uff01\uff01\n\u3055\u3059\u304c\u304f\u3059\u30b5\u30dd\u306e\u307f\u306a\u3055\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2921316680,"id_str":"2921316680","name":"\u5d50\u306e\u306a\u304b\u306e\u304b\u3069\u3060\u304b\u3089@\u4f4e\u6d6e\u4e0a\uff1f","screen_name":"LoveLiver_name","location":"\u305d\u3053\u3089\u3078\u3093","url":null,"description":"\u3069\u3093\u306a\u57a2\u306a\u306e\u304b\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u3092\u898b\u3066\u304b\u3089\u3001\u30d5\u30a9\u30ed\u30d0\u3059\u308b\u304b\u3057\u306a\u3044\u304b\u6c7a\u3081\u3066\u3044\u308b\u305f\u3081\u3001\u30d5\u30a9\u30ed\u30d0\u76ee\u7684\u306e\u5e83\u544a\u57a2\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u3002\u305d\u306e\u4ed6\u30b0\u30ed\u7cfb\u30a2\u30c0\u30eb\u30c8\u7cfb\u542b\u3080\u3002","protected":false,"verified":false,"followers_count":433,"friends_count":461,"listed_count":1,"favourites_count":2010,"statuses_count":2681,"created_at":"Sun Dec 07 05:56:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654573915168092161\/IKzZXAIB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654573915168092161\/IKzZXAIB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921316680\/1445762843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727624120700928,"id_str":"663727624120700928","text":"\u53f0\u6e7e\u306e\u307f\u306a\u3055\u3093\u306f\u3001\u30d5\u30a1\u30f3\u306e\u7686\u3055\u3093\u304c\u30de\u30ca\u30fc\u3092\u6ce8\u610f\u3057\u3066\u3044\u305f\u308a\u3001\u58f0\u304b\u3051\u3042\u3063\u305f\u308a\u3057\u3066\u3066\u307f\u3093\u306a\u3044\u3044\u4eba\u3067\u3057\u305f\uff01\uff01\n\u3068\u3063\u3066\u3082\u611f\u52d5\u3057\u307e\u3057\u305f\uff01\uff01\n\u3055\u3059\u304c\u304f\u3059\u30b5\u30dd\u306e\u307f\u306a\u3055\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259302981,"id_str":"259302981","name":"\u6960\u7530\u4e9c\u8863\u5948","screen_name":"kusudaaina","location":"\u305d\u3053\u3089\u3078\u3093","url":"http:\/\/ameblo.jp\/aina-heart0201\/","description":"\u304f\u3059\u304f\u3059\u304f\u3063\u3059\u3093\u2600\ufe0e \u30df\u30ea\u30aa\u30f3\u30c9\u30fc\u30eb \u3059\u3046\u5b50\u3002 \u306b\u3085\u308b\u306b\u3085\u308bKAKUSEN\u304f\u30932\u671f \u30cb\u30e5\u30eb\u308a\u3093\u3002 \u30d7\u30ea\u30d1\u30e9 \u5b9a\u5b50\u3002 \u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u6771\u689d\u5e0c\u3002 \u308d\u3093\u3050\u3089\u3044\u3060\u3041\u3059\uff01\u4f50\u4f2f\u7f8e\u5f25\u3002 GATE \u30c7\u30ea\u30e9\u3002 \u6c17\u5206\u4e0a\u7b49\u2191\u2191\u3002 \u4eca\u30c1\u30a7\u30ad \u2606\u30c7\u30d3\u30e5\u30fc\u30df\u30cb\u30a2\u30eb\u30d0\u30e0\u300eFirst Sweet Wave \u300f\u767a\u58f2\u4e2d\uff01\u2606","protected":false,"verified":false,"followers_count":282353,"friends_count":161,"listed_count":10743,"favourites_count":169,"statuses_count":11215,"created_at":"Tue Mar 01 15:50:08 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259302981\/1397144271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kusudaaina","name":"\u6960\u7530\u4e9c\u8863\u5948","id":259302981,"id_str":"259302981","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978666"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258715136,"id_str":"663727653258715136","text":"RT @descarregado: eu tenho q acordar cedo e to aqui no twitter fazendo varios nada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3339923632,"id_str":"3339923632","name":"ana Guimar\u00e3es","screen_name":"anaGuimaraesss","location":"Parintins, Amazonas","url":null,"description":"eu sei o que sou ,mais os outros me imaginam","protected":false,"verified":false,"followers_count":755,"friends_count":1449,"listed_count":1,"favourites_count":172,"statuses_count":8222,"created_at":"Sun Jun 21 21:15:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612738829540290560\/DbvRP7TA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612738829540290560\/DbvRP7TA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3339923632\/1435690302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:56:40 +0000 2015","id":663565845721935872,"id_str":"663565845721935872","text":"eu tenho q acordar cedo e to aqui no twitter fazendo varios nada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313717335,"id_str":"313717335","name":"1% de Bateria","screen_name":"descarregado","location":"Adc no Snap :Wa_igore","url":null,"description":"interesses publicit\u00e1rios : ContatoDescarregado@hotmail.com","protected":false,"verified":false,"followers_count":198235,"friends_count":22,"listed_count":396,"favourites_count":84,"statuses_count":69550,"created_at":"Thu Jun 09 03:11:40 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496396405120843776\/Y7Lu2n7N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496396405120843776\/Y7Lu2n7N_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313717335\/1439675246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":563,"favorite_count":251,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"descarregado","name":"1% de Bateria","id":313717335,"id_str":"313717335","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653275303938,"id_str":"663727653275303938","text":"RT @suicidalsmoker: They are so cute!!! https:\/\/t.co\/2h3WiEUiLt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3274196714,"id_str":"3274196714","name":"kshx","screen_name":"artegrudge","location":null,"url":"https:\/\/instagram.com\/kshx_\/","description":"I Ain't Got No Type","protected":false,"verified":false,"followers_count":57,"friends_count":126,"listed_count":0,"favourites_count":639,"statuses_count":1161,"created_at":"Fri Jul 10 10:34:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647115975834210304\/2BNd6hLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647115975834210304\/2BNd6hLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3274196714\/1443022035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:57 +0000 2015","id":663708353470685184,"id_str":"663708353470685184","text":"They are so cute!!! https:\/\/t.co\/2h3WiEUiLt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2346870552,"id_str":"2346870552","name":"n \u00e4","screen_name":"suicidalsmoker","location":"KL","url":null,"description":"oh just shut it, you don't care","protected":false,"verified":false,"followers_count":9644,"friends_count":64,"listed_count":54,"favourites_count":735,"statuses_count":7080,"created_at":"Sun Feb 16 13:43:27 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558247016652738562\/xm2RAwBW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558247016652738562\/xm2RAwBW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661871516896722945\/5vEheunC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661871516896722945\/5vEheunC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2346870552\/1446637436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":66,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708284105265153,"id_str":"663708284105265153","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1228,"resize":"fit"},"medium":{"w":600,"h":1023,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":579,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708284105265153,"id_str":"663708284105265153","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1228,"resize":"fit"},"medium":{"w":600,"h":1023,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":579,"resize":"fit"}}},{"id":663708303810129920,"id_str":"663708303810129920","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3L5MUcAAz4yg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3L5MUcAAz4yg.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":1017,"resize":"fit"},"large":{"w":720,"h":1221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":576,"resize":"fit"}}},{"id":663708322114072576,"id_str":"663708322114072576","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3M9YUcAAtzMi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3M9YUcAAtzMi.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":1015,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":575,"resize":"fit"},"large":{"w":720,"h":1219,"resize":"fit"}}},{"id":663708338631274497,"id_str":"663708338631274497","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3N66U8AEjhN6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3N66U8AEjhN6.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1225,"resize":"fit"},"small":{"w":340,"h":578,"resize":"fit"},"medium":{"w":600,"h":1020,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suicidalsmoker","name":"n \u00e4","id":2346870552,"id_str":"2346870552","indices":[3,18]}],"symbols":[],"media":[{"id":663708284105265153,"id_str":"663708284105265153","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1228,"resize":"fit"},"medium":{"w":600,"h":1023,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":579,"resize":"fit"}},"source_status_id":663708353470685184,"source_status_id_str":"663708353470685184","source_user_id":2346870552,"source_user_id_str":"2346870552"}]},"extended_entities":{"media":[{"id":663708284105265153,"id_str":"663708284105265153","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3KvyUEAEMVeK.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":1228,"resize":"fit"},"medium":{"w":600,"h":1023,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":579,"resize":"fit"}},"source_status_id":663708353470685184,"source_status_id_str":"663708353470685184","source_user_id":2346870552,"source_user_id_str":"2346870552"},{"id":663708303810129920,"id_str":"663708303810129920","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3L5MUcAAz4yg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3L5MUcAAz4yg.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":1017,"resize":"fit"},"large":{"w":720,"h":1221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":576,"resize":"fit"}},"source_status_id":663708353470685184,"source_status_id_str":"663708353470685184","source_user_id":2346870552,"source_user_id_str":"2346870552"},{"id":663708322114072576,"id_str":"663708322114072576","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3M9YUcAAtzMi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3M9YUcAAtzMi.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":1015,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":575,"resize":"fit"},"large":{"w":720,"h":1219,"resize":"fit"}},"source_status_id":663708353470685184,"source_status_id_str":"663708353470685184","source_user_id":2346870552,"source_user_id_str":"2346870552"},{"id":663708338631274497,"id_str":"663708338631274497","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3N66U8AEjhN6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3N66U8AEjhN6.jpg","url":"https:\/\/t.co\/2h3WiEUiLt","display_url":"pic.twitter.com\/2h3WiEUiLt","expanded_url":"http:\/\/twitter.com\/suicidalsmoker\/status\/663708353470685184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1225,"resize":"fit"},"small":{"w":340,"h":578,"resize":"fit"},"medium":{"w":600,"h":1020,"resize":"fit"}},"source_status_id":663708353470685184,"source_status_id_str":"663708353470685184","source_user_id":2346870552,"source_user_id_str":"2346870552"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978661"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653287931904,"id_str":"663727653287931904","text":"@utamono_kei FF\u5916\u304b\u3089\u3055\u3093\u304d\u3085\u30fc\u3067\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726299026882560,"in_reply_to_status_id_str":"663726299026882560","in_reply_to_user_id":3189985177,"in_reply_to_user_id_str":"3189985177","in_reply_to_screen_name":"utamono_kei","user":{"id":2636480257,"id_str":"2636480257","name":"\u30b2\u30b9\u3057\u3085\u3093","screen_name":"fp825freak","location":"Kanagawa ","url":null,"description":"\u3086\u30fc\u3057\u3085\u3093\u3067\u3059\u3002ORAL\/fp\/KT\/[A]\/LwbA\/KOM\/BE...\u90a6\u30ed\u30c3\u30af\u5927\u597d\u304d\u3067\u3059\u304c\u30b2\u30b9\u3067\u3059\u3002\u3069\u3046\u305e\u3088\u308d\u3057\u304f\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":661,"friends_count":282,"listed_count":50,"favourites_count":1508,"statuses_count":13896,"created_at":"Sun Jul 13 12:54:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662455354605727744\/RpahSj1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662455354605727744\/RpahSj1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2636480257\/1446776967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"utamono_kei","name":"Kei","id":3189985177,"id_str":"3189985177","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978664"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653287956480,"id_str":"663727653287956480","text":"RT @Purumototto: \u304a\u5b50\u3055\u3093\u306e\u3053\u3046\u3044\u3046\u611b\u60c5\u89b3\u307f\u305f\u3044\u306a\u306e\u304f\u3060\u3055\u3044\u2026\u2026 https:\/\/t.co\/ADxGixZxfV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2239242805,"id_str":"2239242805","name":"\u3075\u3041\u3093\u3068\u3080","screen_name":"phanTom960","location":null,"url":null,"description":"\u30b2\u30fc\u30e0\u3084\u3063\u3066\u308b\u5275\u4f5c\u30af\u30e9\u30b9\u30bf\u3002\u6210\u4eba\u6e08\u3002 \u30bf\u30ef\u30e0\u30ec\u30ac\u30ad110(\u30b7\u30e5\u30af\u30eb)\u3001\u5929\u547c908(\u30cd\u30eb\u30b0)\u3001\u3064\u3076141(\u7363\u4eba\u5144\u59b9)\u3001\u3066\u3043\u30fc\u3053\u3093101(\u30b5\u30f3\u30c9\u30ea\u30ca)\u3002\u540c\u3058\u5b9a\u671f\u30b2\u30fc\u3084\u3063\u3066\u308b\u65b9\u3001\u3069\u3046\u305e\u30d5\u30a9\u30ed\u30fc\u304a\u6c17\u8efd\u306b\uff01","protected":false,"verified":false,"followers_count":81,"friends_count":96,"listed_count":3,"favourites_count":967,"statuses_count":12188,"created_at":"Tue Dec 10 14:18:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151171292\/GKjPpDo2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151171292\/GKjPpDo2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661402066162593792\/13hHm91U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661402066162593792\/13hHm91U_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:38:32 +0000 2015","id":663561280955944961,"id_str":"663561280955944961","text":"\u304a\u5b50\u3055\u3093\u306e\u3053\u3046\u3044\u3046\u611b\u60c5\u89b3\u307f\u305f\u3044\u306a\u306e\u304f\u3060\u3055\u3044\u2026\u2026 https:\/\/t.co\/ADxGixZxfV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2465900492,"id_str":"2465900492","name":"\u3077\u308b\u3082\u3068","screen_name":"Purumototto","location":"\u706b\u661f\u306e\u30da\u30f3\u30ae\u30f3\u6a2a\u4e01","url":null,"description":"TRPG\u3068\u5275\u4f5c\u4e2d\u5fc3\u57a2\u3002 \u306a\u3093\u3067\u3082\u8a31\u305b\u308b\u65b9\u5411\u3051 \u8150\u3063\u3066\u307e\u3059\u300218\u2191\u3002\u521d\u5fc3\u8005\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":137,"friends_count":157,"listed_count":6,"favourites_count":7433,"statuses_count":27340,"created_at":"Sun Apr 27 09:52:32 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654341940507373568\/V20ciMd__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654341940507373568\/V20ciMd__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465900492\/1447020985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":845,"favorite_count":707,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663561266875633665,"id_str":"663561266875633665","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","url":"https:\/\/t.co\/ADxGixZxfV","display_url":"pic.twitter.com\/ADxGixZxfV","expanded_url":"http:\/\/twitter.com\/Purumototto\/status\/663561280955944961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663561266875633665,"id_str":"663561266875633665","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","url":"https:\/\/t.co\/ADxGixZxfV","display_url":"pic.twitter.com\/ADxGixZxfV","expanded_url":"http:\/\/twitter.com\/Purumototto\/status\/663561280955944961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Purumototto","name":"\u3077\u308b\u3082\u3068","id":2465900492,"id_str":"2465900492","indices":[3,15]}],"symbols":[],"media":[{"id":663561266875633665,"id_str":"663561266875633665","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","url":"https:\/\/t.co\/ADxGixZxfV","display_url":"pic.twitter.com\/ADxGixZxfV","expanded_url":"http:\/\/twitter.com\/Purumototto\/status\/663561280955944961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663561280955944961,"source_status_id_str":"663561280955944961","source_user_id":2465900492,"source_user_id_str":"2465900492"}]},"extended_entities":{"media":[{"id":663561266875633665,"id_str":"663561266875633665","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVxdN7UkAEOg5Z.jpg","url":"https:\/\/t.co\/ADxGixZxfV","display_url":"pic.twitter.com\/ADxGixZxfV","expanded_url":"http:\/\/twitter.com\/Purumototto\/status\/663561280955944961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663561280955944961,"source_status_id_str":"663561280955944961","source_user_id":2465900492,"source_user_id_str":"2465900492"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978664"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653271146496,"id_str":"663727653271146496","text":"\u3010\u4f50\u85e4\u512a\u3011 \u304f\u306b\u307e\u308b\u30b8\u30e3\u30d1\u30f3 2015\/11\/06 \u4eca\u306e\u30ed\u30b7\u30a2\u306b\u306f\u8fd1\u4ed8\u304b\u306a\u3044\u65b9\u304c\u3044\u3044 \u30ed\u30b7\u30a2\u3068\u65e5\u672c\u306e\u5916\u52d9\u7701\u3078\u306e\u5206\u6790\u306f\u76f8\u5909\u308f\u3089\u305a\u51b7\u9759\u30fb\u7684\u78ba\u3002LGBT\u64c1\u8b77\u306e\u7b87\u6240\u306b\u306f\u5171\u9cf4\u3002 https:\/\/t.co\/gsruT6J6ZH","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3744761113,"id_str":"3744761113","name":"Smileslime","screen_name":"aoumigame41","location":null,"url":"http:\/\/blog.goo.ne.jp\/egrettasacra","description":"\u30cd\u30c3\u30c8\u30a6\u30e8\u306b\u3088\u308b\u5acc\u304c\u3089\u305b\u30fb\u8105\u3057\u306e\u305f\u3081\u3001\u3057\u3070\u3089\u304f\u3053\u3061\u3089\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f7f\u3044\u307e\u3059\u3002 \u8b66\u5bdf\u306b\u76f8\u8ac7\u306b\u884c\u3063\u305f\u969b\u3082\u3001\u81ea\u885b\u306e\u305f\u3081\u65b0\u30a2\u30ab\u30a6\u30f3\u30c8\u4f5c\u308a\u3092\u52e7\u3081\u3089\u308c\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":581,"friends_count":1960,"listed_count":8,"favourites_count":560,"statuses_count":7762,"created_at":"Thu Oct 01 05:43:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662515014146756608\/fVjSm_mo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662515014146756608\/fVjSm_mo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3744761113\/1446077748","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gsruT6J6ZH","expanded_url":"http:\/\/youtu.be\/PI8KbIKebY0","display_url":"youtu.be\/PI8KbIKebY0","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978660"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653287956481,"id_str":"663727653287956481","text":"\u5927\u8c37\u304b\u3089\u5247\u672c\u307e\u3067\u2025\u300c\u30d7\u30ec\u30df\u30a212\u300d\u65e5\u672c\u4ee3\u8868\u306e\u6295\u624b\u9663\u304c\u3059\u3054\u3059\u304e\u308b - NAVER \u307e\u3068\u3081 https:\/\/t.co\/TZRxp2ya9I","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1238304715,"id_str":"1238304715","name":"Marimochan","screen_name":"Mxgena2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":63,"friends_count":186,"listed_count":0,"favourites_count":79,"statuses_count":2971,"created_at":"Sun Mar 03 08:14:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/452356016093417472\/UGpQRaTW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/452356016093417472\/UGpQRaTW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1238304715\/1396685053","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TZRxp2ya9I","expanded_url":"http:\/\/matome.naver.jp\/odai\/2144702312009209101","display_url":"matome.naver.jp\/odai\/214470231\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978664"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262860288,"id_str":"663727653262860288","text":"Corte De Cabelo [ Masculino ] Mais Pedido Do Momento - Disfarce Pente1E2... https:\/\/t.co\/xhUTepAoM3 via @YouTube.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955743764,"id_str":"955743764","name":"Adauto Assis Neto","screen_name":"oninjadocabelo","location":"Belo Horizonte","url":"http:\/\/www.youtube.com\/user\/tvadauto","description":"Curto a vida de mont\u00e3o, apaixonado pela natureza (http:\/\/twiends.com\/jabiracabonba)","protected":false,"verified":false,"followers_count":284,"friends_count":1560,"listed_count":5,"favourites_count":690,"statuses_count":13704,"created_at":"Sun Nov 18 16:04:34 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645721734788857856\/Kz3Syiw6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645721734788857856\/Kz3Syiw6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955743764\/1442787060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xhUTepAoM3","expanded_url":"https:\/\/youtu.be\/sQo1xlPKI_8","display_url":"youtu.be\/sQo1xlPKI_8","indices":[76,99]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[104,112]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653275328512,"id_str":"663727653275328512","text":"\"Wasn't me\" - @jarelxantoine","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276799764,"id_str":"276799764","name":"Wind-up Merchant","screen_name":"uk3ba","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1608,"friends_count":759,"listed_count":17,"favourites_count":16346,"statuses_count":50472,"created_at":"Mon Apr 04 03:16:44 +0000 2011","utc_offset":-14400,"time_zone":"La Paz","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556760802\/american-airlines-arena3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556760802\/american-airlines-arena3.jpg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609978810293837826\/u1tVlUx6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609978810293837826\/u1tVlUx6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276799764\/1396295115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jarelxantoine","name":"Peardrax Papi","id":269846733,"id_str":"269846733","indices":[14,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978661"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279498240,"id_str":"663727653279498240","text":"@GH_960907 \ub204\uad6c\ub098\uc654\uc624?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726637687504898,"in_reply_to_status_id_str":"663726637687504898","in_reply_to_user_id":3869931973,"in_reply_to_user_id_str":"3869931973","in_reply_to_screen_name":"GH_960907","user":{"id":3560724372,"id_str":"3560724372","name":"\uc735\uae30\ub09c\ub2e4","screen_name":"boa89925","location":"\uc9c4\uaca9","url":"http:\/\/www.xn--e20ba764oba.kr","description":"\ubc29\ud0c4\uc774\uc870\uc740 \ub3cc\uc740\uace0\uc0bc\n\ub09c\ub2e4\ub77c\uad6c \ubd88\ub7ec\uc918\uc5ec","protected":false,"verified":false,"followers_count":56,"friends_count":60,"listed_count":2,"favourites_count":47,"statuses_count":3005,"created_at":"Mon Sep 14 13:47:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661719851891732480\/oIm2B0qW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661719851891732480\/oIm2B0qW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3560724372\/1446601280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GH_960907","name":"\uadf8\ub2c8","id":3869931973,"id_str":"3869931973","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653287952390,"id_str":"663727653287952390","text":"@akari0807 \u5b9f\u306e\u3068\u3053\u308d\u3001\u4eca\u3055\u3063\u304d\u7b20\u677e\u306e\u4e0b\u534a\u8eab\u78ba\u8a8d\u3057\u307e\u3057\u305fwww\u308f\u305f\u3057\u3082\u9811\u5f35\u308a\u307e\u3059\u30fc\u30fc\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727453970411520,"in_reply_to_status_id_str":"663727453970411520","in_reply_to_user_id":171053657,"in_reply_to_user_id_str":"171053657","in_reply_to_screen_name":"akari0807","user":{"id":2354733140,"id_str":"2354733140","name":"\u307b\u305f\u308b","screen_name":"44ghH0taru","location":"\u30c6\u30c4\u3068\u4eca\u5409\u30b5\u30f3\u306e\u72ed\u9593","url":"http:\/\/www.pixiv.net\/member.php?id=2317117","description":"\u9ed2\u30d0\u30b9\u3068PP\u304c\u71b1\u3044\u3001\u6210\u4eba\u6e08\u307f\u3067\u7bc0\u64cd\u7121\u3044\u8003\u5bdf\u53a8\u3002\u9752\u9ed2\u795e\u63a8\u3057\u3067\u6850\u7687\u5b66\u5712\u3068\u72e1\u5b9c\u597d\u304d\u306a\u30ec\u30a4\u30e4\u30fc\u517c\u4e00\u5fdc\u6587\u5b57\u66f8\u304d\u3002 \u8179\u9ed2\u773c\u93e1\u306b\u604b\u3057\u3066\u308b\u30ae\u30ce\u30b6\u30fc\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\u3002\u8a73\u3057\u304f\u306f\u3053\u3061\u3089\u2192http:\/\/twpf.jp\/44ghH0taru","protected":false,"verified":false,"followers_count":415,"friends_count":396,"listed_count":12,"favourites_count":6494,"statuses_count":27823,"created_at":"Fri Feb 21 12:37:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662978660190699522\/yLZ2h66U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662978660190699522\/yLZ2h66U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354733140\/1442228297","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akari0807","name":"\u6731\u91cc@\u4eca\u65e5\u3060\u3051\u3044\u3061\u5144","id":171053657,"id_str":"171053657","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978664"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653262749696,"id_str":"663727653262749696","text":"classy party Invitation https:\/\/t.co\/mitVeVHNQz via @LRagamuffin","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535839062,"id_str":"535839062","name":"ElbcafeElster","screen_name":"ElbcafeElster","location":"Elster","url":"http:\/\/www.elbcafeelster.de\/","description":"Soft- und Kugeleis, Kuchen, Waffeln, Cr\u00eapes und ganz viele andere k\u00f6stliche Leckereien | Impressum: http:\/\/elbcafeelster.de\/impressum","protected":false,"verified":false,"followers_count":207,"friends_count":108,"listed_count":12,"favourites_count":2538,"statuses_count":7826,"created_at":"Sun Mar 25 00:17:49 +0000 2012","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"A4C739","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"624A30","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2171097795\/maatz_cafe_tasse_logo_soziale_netze_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2171097795\/maatz_cafe_tasse_logo_soziale_netze_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535839062\/1411582622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mitVeVHNQz","expanded_url":"http:\/\/bit.ly\/1NEzFl0","display_url":"bit.ly\/1NEzFl0","indices":[25,48]}],"user_mentions":[{"screen_name":"LRagamuffin","name":"Little Ragamuffin","id":974534389,"id_str":"974534389","indices":[53,65]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978658"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258706944,"id_str":"663727653258706944","text":"@giuorg @Chiaraaa_F la scena trash del bottone che si slaccia top","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727010603270144,"in_reply_to_status_id_str":"663727010603270144","in_reply_to_user_id":498119808,"in_reply_to_user_id_str":"498119808","in_reply_to_screen_name":"giuorg","user":{"id":484843358,"id_str":"484843358","name":"SS","screen_name":"silvistroppa","location":null,"url":null,"description":"20.","protected":false,"verified":false,"followers_count":225,"friends_count":169,"listed_count":3,"favourites_count":3092,"statuses_count":8248,"created_at":"Mon Feb 06 15:11:42 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"1ABA40","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656897207162032129\/YJoVPyta_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656897207162032129\/YJoVPyta_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484843358\/1443118704","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giuorg","name":"Giorgia Carena","id":498119808,"id_str":"498119808","indices":[0,7]},{"screen_name":"Chiaraaa_F","name":"chiara ferretti","id":828819194,"id_str":"828819194","indices":[8,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283737600,"id_str":"663727653283737600","text":"romantic now\u305f\u306e\u3061\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619089264,"id_str":"619089264","name":"\u307c\u3063\u3061\u306f\u3084","screen_name":"lob_syokunin","location":null,"url":null,"description":"\u6728\u4e43\u5b50\u3092\u990a\u3046\u305f\u3081\u306b\u5c31\u6d3b\u3059\u308b\u30d2\u30ad\u30cb\u30fc\u30c8\u3002\u3057\u304b\u3057\u305d\u306e\u9053\u306f\u967a\u3057\u304f\u3001\u3044\u304f\u3064\u3082\u306e\u304a\u7948\u308a\u30e1\u30fc\u30eb\u3092\u53d7\u3051\u53d6\u308b\u306e\u3067\u3042\u3063\u305f\u3002 TCG\u30d7\u30ec\u30a4\u30e4\u30fc(VG,Z\/X\u3042\u305f\u308a)\u3002 \u307e\u305f\u30ac\u30eb\u30d5\u30ec\u3001\u30c7\u30a3\u30d0\u30b2\u6c11\u3002\u30a2\u30a4\u30b3\u30f3\u306f@nekomimimimiko\u69d8\u3088\u308a\u3002","protected":false,"verified":false,"followers_count":419,"friends_count":671,"listed_count":8,"favourites_count":1545,"statuses_count":37215,"created_at":"Tue Jun 26 12:03:22 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/731475661\/a0afe9692490348acb0af326bbdd1626.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/731475661\/a0afe9692490348acb0af326bbdd1626.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629827023003762688\/gkeLLuom_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629827023003762688\/gkeLLuom_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619089264\/1440511391","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279498241,"id_str":"663727653279498241","text":"@starfox1015 \uc73c\uadf8\uc544\u3161\ub77c\uc544\u314f\ub77c\u314f\uc544\uc544\uc559\u3147\u3147\u3147\u3147\u3147\u3147\u3147\u3147","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727479987699712,"in_reply_to_status_id_str":"663727479987699712","in_reply_to_user_id":3291812383,"in_reply_to_user_id_str":"3291812383","in_reply_to_screen_name":"starfox1015","user":{"id":580935323,"id_str":"580935323","name":"Emsno","screen_name":"Emmsno","location":null,"url":null,"description":"\ub358\ud30c \uc598\uae30\ubc16\uc5d0 \uc548\ud558\ub294\ub4ef","protected":false,"verified":false,"followers_count":170,"friends_count":182,"listed_count":3,"favourites_count":1147,"statuses_count":77023,"created_at":"Tue May 15 14:25:30 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3C00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626664408886874113\/meGbbiPB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626664408886874113\/meGbbiPB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/580935323\/1446315316","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"starfox1015","name":"\uadf8\ub9bc\uadf8\ub824\ub77c \ucd08\ucf54\ub9c1\/\u3061\u3087\u3053\u308a\u3093","id":3291812383,"id_str":"3291812383","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283696640,"id_str":"663727653283696640","text":"@azagier You need to keep your leftist, race-baiting, East coast politics in Maryland\/Massachusetts and OUT of Missouri. You will be sorry!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":20496011,"in_reply_to_user_id_str":"20496011","in_reply_to_screen_name":"azagier","user":{"id":3638169614,"id_str":"3638169614","name":"Carmen Campbell","screen_name":"MitzKitz57","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":38,"created_at":"Mon Sep 21 13:31:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"azagier","name":"Alan Scher Zagier","id":20496011,"id_str":"20496011","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292105729,"id_str":"663727653292105729","text":"@tara_reba \u4eca\u56de\u306e\u30a4\u30d9\u30f3\u30c8\u3063\u3066\u3069\u306e\u8266\u7a2e\u304c\u91cd\u8981\u306b\u306a\u308b\u306e\u3067\u3057\u3087\u3046\u304b?\u3000\u3068\u308a\u3042\u3048\u305a\u524d\u56de\u306e\u6559\u8a13\u304b\u3089\u8efd\u7a7a\u6bcd\u306f\u80b2\u3066\u307e\u3057\u305f\u304c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726693064925185,"in_reply_to_status_id_str":"663726693064925185","in_reply_to_user_id":99689849,"in_reply_to_user_id_str":"99689849","in_reply_to_screen_name":"tara_reba","user":{"id":289823483,"id_str":"289823483","name":"\u3042\u3064\u3042\u3064\u304a\u3067\u3093@\u4e19\u63d0\u7763\u30a5\u30fc\uff01","screen_name":"atsuatsuoden252","location":"\u30b3\u30f3\u30d3\u30cb\u306e\u30ec\u30b8\u6a2a\u306e\u934b","url":"https:\/\/www.youtube.com\/channel\/UCAm7hk3xNXMvPM-85pQ1OVg","description":"XY\u30d5\u30ec\u30f3\u30c9\u30b3\u30fc\u30c9\uff1a\u304a\u3067\u3093\/\u304a\u3067\u3053 0705\u30002889\u30001960\u3000\n \u6d41\u661f\u306e\u30ed\u30c3\u30af\u30de\u30f3\u3001\u30dc\u30af\u3089\u306e\u592a\u967d\u306a\u3069\u3082\u3002\u732e\u8840\u3084\u3063\u3066\u307e\u3059\u3002\u5b9f\u6cc1\u59cb\u3081\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":217,"friends_count":273,"listed_count":3,"favourites_count":2359,"statuses_count":31401,"created_at":"Fri Apr 29 08:26:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632212875105275904\/E-Hptonn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632212875105275904\/E-Hptonn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289823483\/1370694953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tara_reba","name":"\u305f\u3089\u308c\u3070(\u9593\u8005)","id":99689849,"id_str":"99689849","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653279547393,"id_str":"663727653279547393","text":"@ashdowneagle @Obrassor @MikeFolka Were you there John? What did you think of it ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663593974112739328,"in_reply_to_status_id_str":"663593974112739328","in_reply_to_user_id":1322822113,"in_reply_to_user_id_str":"1322822113","in_reply_to_screen_name":"ashdowneagle","user":{"id":399794358,"id_str":"399794358","name":"Wes","screen_name":"eastvancity","location":"New Westminster ","url":null,"description":"Citizen, dad, husband and worker. I love beer, wine and fine spirits. Beautiful BC renews me and I'm lucky to call #newwest home. The view is all mine.","protected":false,"verified":false,"followers_count":191,"friends_count":357,"listed_count":10,"favourites_count":804,"statuses_count":2095,"created_at":"Fri Oct 28 01:48:37 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594736926919233537\/nmnBxler_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594736926919233537\/nmnBxler_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/399794358\/1430631264","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"33de55bc584a42ec","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/33de55bc584a42ec.json","place_type":"city","name":"New Westminster","full_name":"New Westminster, British Columbia","country_code":"CA","country":"Canada","bounding_box":{"type":"Polygon","coordinates":[[[-122.960016,49.175445],[-122.960016,49.238058],[-122.875033,49.238058],[-122.875033,49.175445]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ashdowneagle","name":"John Ashdown","id":1322822113,"id_str":"1322822113","indices":[0,13]},{"screen_name":"Obrassor","name":"Ross Arbo","id":241462951,"id_str":"241462951","indices":[14,23]},{"screen_name":"MikeFolka","name":"Mike Folka","id":2849236472,"id_str":"2849236472","indices":[24,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079978662"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653296455680,"id_str":"663727653296455680","text":"@pppenaloza y regalarle otra estadia a roberto\/....","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727406566502400,"in_reply_to_status_id_str":"663727406566502400","in_reply_to_user_id":79289858,"in_reply_to_user_id_str":"79289858","in_reply_to_screen_name":"pppenaloza","user":{"id":139540741,"id_str":"139540741","name":"Luis Felipe Urbaneja","screen_name":"lfurbaneja","location":"\u00dcT: 10.447422,-66.882046","url":null,"description":"BlueBerry CC Lido Ccs. 9533104.blueberrylido@gmail.com","protected":false,"verified":false,"followers_count":69,"friends_count":44,"listed_count":2,"favourites_count":32,"statuses_count":3017,"created_at":"Sun May 02 23:29:59 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1219863556\/17104ray_jpg_297_380_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1219863556\/17104ray_jpg_297_380_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pppenaloza","name":"Pedro Pablo Pe\u00f1aloza","id":79289858,"id_str":"79289858","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978666"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653258551296,"id_str":"663727653258551296","text":"RT @hf3j6b: \u6b32\u6c42\u4e0d\u6e80\u306a\u5973\u306e\u5b50\u5927\u6749\u30ef\u30ed\u30bf\u3063ww\n\u30a8\u30ed\u3044\u30e1\u30fc\u30eb\u306f\u3082\u3061\u308d\u3093\n\u30db\u30c6\u30eb\u884c\u3053\u3046\u2606\u3067\u5373\u65e5\u30e9\u30d6\u30db\u901d\u3063\u305f\u3063\u305fww\n\n\u5168\u90e8\u7121\u6599\u3060\u304b\u3089\u3084\u3063\u3066\u307f\u308c\u3070\u2192https:\/\/t.co\/boHc6jPvGY\n\n\u3044\u304d\u306a\u308a\u30e2\u30c6\u671f\u3067\u30ef\u30ed\u30bf\u3063ww https:\/\/t.co\/YIyMnLZGOD","source":"\u003ca href=\"https:\/\/www.google.co.jp\/\" rel=\"nofollow\"\u003e\u2605Twitter126\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3454800672,"id_str":"3454800672","name":"\u96db\u5b9f","screen_name":"2j4im59","location":null,"url":null,"description":"\u2661\uff1a\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\/\u6e0b\u539f\n\u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307e\u3059!\n\u7537\u5973\u95a2\u4fc2\u306a\u304f\u53cb\u9054\u6b32\u3057\u3044\u306e\u3067\u3001\n\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u263e","protected":false,"verified":false,"followers_count":286,"friends_count":496,"listed_count":0,"favourites_count":0,"statuses_count":242,"created_at":"Sat Sep 05 03:08:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639998745115914240\/N3XiUS2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639998745115914240\/N3XiUS2-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3454800672\/1441422580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727508387332096,"id_str":"663727508387332096","text":"\u6b32\u6c42\u4e0d\u6e80\u306a\u5973\u306e\u5b50\u5927\u6749\u30ef\u30ed\u30bf\u3063ww\n\u30a8\u30ed\u3044\u30e1\u30fc\u30eb\u306f\u3082\u3061\u308d\u3093\n\u30db\u30c6\u30eb\u884c\u3053\u3046\u2606\u3067\u5373\u65e5\u30e9\u30d6\u30db\u901d\u3063\u305f\u3063\u305fww\n\n\u5168\u90e8\u7121\u6599\u3060\u304b\u3089\u3084\u3063\u3066\u307f\u308c\u3070\u2192https:\/\/t.co\/boHc6jPvGY\n\n\u3044\u304d\u306a\u308a\u30e2\u30c6\u671f\u3067\u30ef\u30ed\u30bf\u3063ww https:\/\/t.co\/YIyMnLZGOD","source":"\u003ca href=\"https:\/\/www.google.co.jp\/\" rel=\"nofollow\"\u003e\u2605Twitter122\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310414254,"id_str":"3310414254","name":"\u82bd\u8863","screen_name":"hf3j6b","location":null,"url":null,"description":"\u2605:\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\/\u91ce\u7403\n\u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307e\u3059\uff01\n\u7537\u5973\u95a2\u4fc2\u306a\u304f\u53cb\u9054\u6b32\u3057\u3044\u306e\u3067\u3001\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u2661","protected":false,"verified":false,"followers_count":661,"friends_count":288,"listed_count":2,"favourites_count":0,"statuses_count":317,"created_at":"Sun Aug 09 10:24:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630324191414194176\/XP2fHf73_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630324191414194176\/XP2fHf73_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310414254\/1439115999","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/boHc6jPvGY","expanded_url":"http:\/\/goo.gl\/YuRYOi","display_url":"goo.gl\/YuRYOi","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663727508093726720,"id_str":"663727508093726720","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","url":"https:\/\/t.co\/YIyMnLZGOD","display_url":"pic.twitter.com\/YIyMnLZGOD","expanded_url":"http:\/\/twitter.com\/hf3j6b\/status\/663727508387332096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727508093726720,"id_str":"663727508093726720","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","url":"https:\/\/t.co\/YIyMnLZGOD","display_url":"pic.twitter.com\/YIyMnLZGOD","expanded_url":"http:\/\/twitter.com\/hf3j6b\/status\/663727508387332096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/boHc6jPvGY","expanded_url":"http:\/\/goo.gl\/YuRYOi","display_url":"goo.gl\/YuRYOi","indices":[77,100]}],"user_mentions":[{"screen_name":"hf3j6b","name":"\u82bd\u8863","id":3310414254,"id_str":"3310414254","indices":[3,10]}],"symbols":[],"media":[{"id":663727508093726720,"id_str":"663727508093726720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","url":"https:\/\/t.co\/YIyMnLZGOD","display_url":"pic.twitter.com\/YIyMnLZGOD","expanded_url":"http:\/\/twitter.com\/hf3j6b\/status\/663727508387332096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}},"source_status_id":663727508387332096,"source_status_id_str":"663727508387332096","source_user_id":3310414254,"source_user_id_str":"3310414254"}]},"extended_entities":{"media":[{"id":663727508093726720,"id_str":"663727508093726720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpuuU8AAl_z7.jpg","url":"https:\/\/t.co\/YIyMnLZGOD","display_url":"pic.twitter.com\/YIyMnLZGOD","expanded_url":"http:\/\/twitter.com\/hf3j6b\/status\/663727508387332096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}},"source_status_id":663727508387332096,"source_status_id_str":"663727508387332096","source_user_id":3310414254,"source_user_id_str":"3310414254"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978657"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292142592,"id_str":"663727653292142592","text":"@1007_miona \u50d5\u304c\u30de\u30cd\u3067\u3059\u3088\ud83d\ude0e\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727083382702080,"in_reply_to_status_id_str":"663727083382702080","in_reply_to_user_id":1548506713,"in_reply_to_user_id_str":"1548506713","in_reply_to_screen_name":"1007_miona","user":{"id":1853573376,"id_str":"1853573376","name":"\u30c1\u30e3\u30f3\u30de\u30b5@\u307e---------\u3055\u3068\u3093\u266a","screen_name":"masatontoon","location":null,"url":null,"description":"\u8272\u6c17\u3092\u632f\u308a\u307e\u304f\u96c4\u732b\u3088\u308a\u3082\u30aa\u30a4\u30eb\u306b\u307e\u307f\u308c\u305f\u5358\u8eca\u304c\u3044\u3044 \u300a\u306a\u306a\u305f\u3064\u300b\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u30ea\u30fc\u30c0\u30fc@_ChanTats\u2190check\uff01\u30c1\u30e3\u30f3\u30bf\u30c4@\u30d1\u30fc\u30c6\u30a3\u30fc\u30e2\u30f3\u30b9\u30bf\u30fc\u5c02\u5c5e\u30de\u30cd\u30fc\u30b8\u30e3\u30fc!!!!!!!!!\u30d6\u30c3\u30ad\u30f3\u30b0\u306e\u969b\u306fDM\u307e\u3067\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":636,"friends_count":433,"listed_count":1,"favourites_count":376,"statuses_count":12864,"created_at":"Wed Sep 11 07:20:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653624468980432896\/o2xXHuV8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653624468980432896\/o2xXHuV8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1853573376\/1446423107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1007_miona","name":"\u307f\u304a\u306a","id":1548506713,"id_str":"1548506713","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283696641,"id_str":"663727653283696641","text":"@hannahjune0 LMAOOOO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725971397328896,"in_reply_to_status_id_str":"663725971397328896","in_reply_to_user_id":501391059,"in_reply_to_user_id_str":"501391059","in_reply_to_screen_name":"hannahjune0","user":{"id":2423737303,"id_str":"2423737303","name":"sydney","screen_name":"syyddnnneeeeyyy","location":null,"url":null,"description":"throwin that peace sign your way","protected":false,"verified":false,"followers_count":123,"friends_count":161,"listed_count":0,"favourites_count":1817,"statuses_count":1939,"created_at":"Wed Apr 02 12:28:59 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650473832080211968\/tH4I_FZS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650473832080211968\/tH4I_FZS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423737303\/1442701484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hannahjune0","name":"hann","id":501391059,"id_str":"501391059","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079978663"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653271109632,"id_str":"663727653271109632","text":"@KATATUMURI_9cm \u307c\u3063\u304d\u30fc\u3068\u304b\u3084\u3070\u3044\u3084\u3093\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663699398971383808,"in_reply_to_status_id_str":"663699398971383808","in_reply_to_user_id":3017001012,"in_reply_to_user_id_str":"3017001012","in_reply_to_screen_name":"KATATUMURI_9cm","user":{"id":2971543974,"id_str":"2971543974","name":"\u304b\u3063\u307b\u304b\u307b","screen_name":"run_pupu","location":null,"url":null,"description":"YouTuber\u5927\u597d\u304d\u2661170cm\u306e\u9ad8\u8eab\u9577\u5973\u5b50\u3002\u4e00\u5fdc\u4e2d\u5b66\u751f\u3002YouTuber\u597d\u304d\u306a\u4eba\u3060\u3063\u305f\u3089\uff8c\uff6b\uff9b\uff8a\uff9e100%\uff01\uff01\uff01\n\u30ea\u30b9\u30ca\u30fc\u3055\u3093\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044\uff01\n660","protected":false,"verified":false,"followers_count":768,"friends_count":705,"listed_count":2,"favourites_count":10116,"statuses_count":3137,"created_at":"Sat Jan 10 09:39:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641156070849646592\/eyLC3U9E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641156070849646592\/eyLC3U9E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971543974\/1445339494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KATATUMURI_9cm","name":"\u304b\u305f\u3064\u3080\u308a@youtube","id":3017001012,"id_str":"3017001012","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978660"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653275455489,"id_str":"663727653275455489","text":"RT @CoscuIluela: Tu me puedes llamar a cualquier hora de cualquier lugar, que sin duda & sin demora yo te voy a contestar","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3867612802,"id_str":"3867612802","name":"sheesi Ledesma","screen_name":"YesicaLedesma94","location":null,"url":null,"description":"Hincha de Atlanta \u2022 BARRIO VILLA CRESPO \u2022 \u2648 \u2022 Perdono pero NO olvido.","protected":false,"verified":false,"followers_count":119,"friends_count":72,"listed_count":0,"favourites_count":340,"statuses_count":3148,"created_at":"Mon Oct 05 03:30:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659193928550322176\/I9HptaBL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659193928550322176\/I9HptaBL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3867612802\/1445397815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Aug 04 23:08:25 +0000 2015","id":628704068505071616,"id_str":"628704068505071616","text":"Tu me puedes llamar a cualquier hora de cualquier lugar, que sin duda & sin demora yo te voy a contestar","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2483137578,"id_str":"2483137578","name":"Cosculluela","screen_name":"CoscuIluela","location":"Puerto Rico ","url":"https:\/\/www.facebook.com\/Coscu.Frases","description":"RO\\\\W\u039eILAS INC \u2655 Frases, vines, versos & mas. @coscuelprincipe Contacto \u2709 @nicovalenzzuela\nSigueme & te sigo. RT&FAV \u2665","protected":false,"verified":false,"followers_count":13511,"friends_count":6019,"listed_count":21,"favourites_count":15617,"statuses_count":163,"created_at":"Thu May 08 03:57:43 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641002980662243328\/DPsL0ST7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641002980662243328\/DPsL0ST7.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614582113074085888\/NT2bN3Xh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614582113074085888\/NT2bN3Xh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2483137578\/1445988968","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":411,"favorite_count":179,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CoscuIluela","name":"Cosculluela","id":2483137578,"id_str":"2483137578","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079978661"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653275480064,"id_str":"663727653275480064","text":"\u3010\u30a8\u30ed\u52d5\u753b\u3011SOFT ON DEMAND \u7d20\u4eba\u30ca\u30f3\u30d1\u4f5c\u54c1\u96c6\u6c38\u4e45\u4fdd\u5b58\u7248\uff01 8\u6642\u9593BOX https:\/\/t.co\/8J5nvxUGlU https:\/\/t.co\/6qKMHKljm8","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294154045,"id_str":"3294154045","name":"tubasa","screen_name":"tubasa01241","location":"\u65b0\u6f5f\u770c \u65b0\u6f5f\u5e02 \u4e2d\u592e\u533a","url":"http:\/\/tubasa0124.eronews.click","description":"\u611b\u539f\u3064\u3070\u3055","protected":false,"verified":false,"followers_count":32,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":32058,"created_at":"Sun Jul 26 02:09:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625125807220850688\/nKkQisVP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625125807220850688\/nKkQisVP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8J5nvxUGlU","expanded_url":"http:\/\/ift.tt\/1NmyulW","display_url":"ift.tt\/1NmyulW","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":663727653053210624,"id_str":"663727653053210624","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyKvXIAAmNdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyKvXIAAmNdK.jpg","url":"https:\/\/t.co\/6qKMHKljm8","display_url":"pic.twitter.com\/6qKMHKljm8","expanded_url":"http:\/\/twitter.com\/tubasa01241\/status\/663727653275480064\/photo\/1","type":"photo","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727653053210624,"id_str":"663727653053210624","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyKvXIAAmNdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyKvXIAAmNdK.jpg","url":"https:\/\/t.co\/6qKMHKljm8","display_url":"pic.twitter.com\/6qKMHKljm8","expanded_url":"http:\/\/twitter.com\/tubasa01241\/status\/663727653275480064\/photo\/1","type":"photo","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079978661"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653292085248,"id_str":"663727653292085248","text":"RT @madaisyy__: \u0e41 \u0e15\u0e48 \u0e2a\u0e38 \u0e14 \u0e17\u0e49 \u0e32 \u0e22 \u0e01 \u0e25 \u0e32 \u0e22 \n\u0e40 \u0e1b\u0e47 \u0e19 \u0e40 \u0e18 \u0e2d \u0e17\u0e35\u0e48 \u0e17\u0e4d \u0e32 \u0e23\u0e49 \u0e32 \u0e22 \n\u0e15\u0e31 \u0e27 \u0e09\u0e31 \u0e19 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2993334990,"id_str":"2993334990","name":"\u0e41\u0e1a\u0e4b\u0e21\u0e42\u0e1a\u0e4b\u0e42\u0e2d\u0e49\u0e40\u0e22\u0e49","screen_name":"FAFAM2499","location":null,"url":null,"description":"\u0e23\u0e35\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e22\u0e46\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e23\u0e16\u0e02\u0e32\u0e22\u0e42\u0e2d\u0e48\u0e07","protected":false,"verified":false,"followers_count":20,"friends_count":165,"listed_count":0,"favourites_count":263,"statuses_count":859,"created_at":"Fri Jan 23 13:04:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659651892381782016\/bpRJaFV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659651892381782016\/bpRJaFV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2993334990\/1440304905","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:21:55 +0000 2015","id":663587297678376960,"id_str":"663587297678376960","text":"\u0e41 \u0e15\u0e48 \u0e2a\u0e38 \u0e14 \u0e17\u0e49 \u0e32 \u0e22 \u0e01 \u0e25 \u0e32 \u0e22 \n\u0e40 \u0e1b\u0e47 \u0e19 \u0e40 \u0e18 \u0e2d \u0e17\u0e35\u0e48 \u0e17\u0e4d \u0e32 \u0e23\u0e49 \u0e32 \u0e22 \n\u0e15\u0e31 \u0e27 \u0e09\u0e31 \u0e19 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299144776,"id_str":"299144776","name":"\u0e40 \u0e27\u0e49 \u0e19 \u0e27 \u0e23 \u0e23 \u0e04","screen_name":"madaisyy__","location":"8 MM Film","url":null,"description":"\u0e42 \u0e25 \u0e01 \u0e19\u0e35\u0e49 \u0e40 \u0e15\u0e47 \u0e21 \u0e44 \u0e1b \u0e14\u0e49 \u0e27 \u0e22 \u0e04 \u0e27 \u0e32 \u0e21 \u0e23\u0e39\u0e49 \u0e2a\u0e36 \u0e01 . \n\n\n\u007b ig: kimyelly_ \u007d","protected":false,"verified":false,"followers_count":154393,"friends_count":119,"listed_count":24,"favourites_count":6806,"statuses_count":56447,"created_at":"Sun May 15 15:47:29 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596188095029977089\/KsUlQ4hO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596188095029977089\/KsUlQ4hO.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF144C","profile_text_color":"F72525","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619900469477928960\/tlyVAqS8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619900469477928960\/tlyVAqS8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299144776\/1434120243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"012743007393a9ab","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012743007393a9ab.json","place_type":"city","name":"\u0e22\u0e32\u0e19\u0e19\u0e32\u0e27\u0e32","full_name":"\u0e22\u0e32\u0e19\u0e19\u0e32\u0e27\u0e32, \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.528776,13.675718],[100.528776,13.719389],[100.554349,13.719389],[100.554349,13.675718]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1089,"favorite_count":193,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"madaisyy__","name":"\u0e40 \u0e27\u0e49 \u0e19 \u0e27 \u0e23 \u0e23 \u0e04","id":299144776,"id_str":"299144776","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079978665"} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653271269377,"id_str":"663727653271269377","text":"https:\/\/t.co\/rs0ynwls6h","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465783273,"id_str":"465783273","name":"Damion","screen_name":"DloccHooper","location":"seattle wa ","url":"http:\/\/swaggin78.com","description":"I hoop ,make ppl laugh ,im young darkskin nd Tall","protected":false,"verified":false,"followers_count":32,"friends_count":73,"listed_count":2,"favourites_count":1,"statuses_count":14071,"created_at":"Mon Jan 16 18:45:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1759725588\/400376_164302277003046_100002698248077_212786_1465867594_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1759725588\/400376_164302277003046_100002698248077_212786_1465867594_n_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rs0ynwls6h","expanded_url":"http:\/\/fb.me\/7DIFuSldj","display_url":"fb.me\/7DIFuSldj","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079978660"} +{"delete":{"status":{"id":663722775287308288,"id_str":"663722775287308288","user_id":3303393757,"user_id_str":"3303393757"},"timestamp_ms":"1447079978990"}} +{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653283827712,"id_str":"663727653283827712","text":"https:\/\/t.co\/8aHaHnAESl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139091316,"id_str":"4139091316","name":"Zach Zeaman","screen_name":"ZZeaman","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":7,"listed_count":0,"favourites_count":1,"statuses_count":4,"created_at":"Sun Nov 08 04:02:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724800356020224\/bt872sk9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724800356020224\/bt872sk9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727644542832640,"id_str":"663727644542832640","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIxrCVEAA7wR5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIxrCVEAA7wR5.png","url":"https:\/\/t.co\/8aHaHnAESl","display_url":"pic.twitter.com\/8aHaHnAESl","expanded_url":"http:\/\/twitter.com\/ZZeaman\/status\/663727653283827712\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":438,"resize":"fit"},"large":{"w":500,"h":438,"resize":"fit"},"small":{"w":340,"h":297,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727644542832640,"id_str":"663727644542832640","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIxrCVEAA7wR5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIxrCVEAA7wR5.png","url":"https:\/\/t.co\/8aHaHnAESl","display_url":"pic.twitter.com\/8aHaHnAESl","expanded_url":"http:\/\/twitter.com\/ZZeaman\/status\/663727653283827712\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":438,"resize":"fit"},"large":{"w":500,"h":438,"resize":"fit"},"small":{"w":340,"h":297,"resize":"fit"}},"video_info":{"aspect_ratio":[250,219],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIxrCVEAA7wR5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079978663"} +{"delete":{"status":{"id":663723127617097729,"id_str":"663723127617097729","user_id":3095785403,"user_id_str":"3095785403"},"timestamp_ms":"1447079979030"}} +{"delete":{"status":{"id":660106714843336708,"id_str":"660106714843336708","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447079979164"}} +{"delete":{"status":{"id":663724750833852420,"id_str":"663724750833852420","user_id":610063216,"user_id_str":"610063216"},"timestamp_ms":"1447079979384"}} +{"delete":{"status":{"id":661354683865407488,"id_str":"661354683865407488","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079979380"}} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461407744,"id_str":"663727657461407744","text":"Especially Not The ER. \ud83d\ude45","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2820652510,"id_str":"2820652510","name":"QueenSLIME\u2728","screen_name":"OneYoungShaunny","location":"w \/ the bitties ","url":null,"description":"12 \u2764 20 \u2764 1994 \u2764 \u2650 \n S I N G L E \u2665","protected":false,"verified":false,"followers_count":547,"friends_count":499,"listed_count":2,"favourites_count":648,"statuses_count":11620,"created_at":"Thu Oct 09 21:38:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660846946702254080\/U-exukiK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660846946702254080\/U-exukiK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2820652510\/1446350079","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473953793,"id_str":"663727657473953793","text":"RT @NerioM: @zurdo_bohemio Estamos compa\u00f1ero....!! \ud83d\udc4d\ud83c\udffc https:\/\/t.co\/CBnI5kLe5H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55692324,"id_str":"55692324","name":"Zurdo Bohemio","screen_name":"zurdo_bohemio","location":"Chile","url":"http:\/\/facebook.com\/DonaUnaBiciPorLuca","description":"Algo altruista, algo escritor, algo cantante, nada de facho y nada de bailar\u00edn. Quiero a Chile m\u00e1s justo. Alentando a la U desde la puerta 10. #VamosLaU","protected":false,"verified":false,"followers_count":4256,"friends_count":3936,"listed_count":19,"favourites_count":3485,"statuses_count":14641,"created_at":"Fri Jul 10 23:08:23 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161507402\/kRMdLHHj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161507402\/kRMdLHHj.jpeg","profile_background_tile":true,"profile_link_color":"030303","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CFAE99","profile_text_color":"AB8482","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658712012457955328\/xCJKf_qi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658712012457955328\/xCJKf_qi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55692324\/1441725784","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:59 +0000 2015","id":663727488321912832,"id_str":"663727488321912832","text":"@zurdo_bohemio Estamos compa\u00f1ero....!! \ud83d\udc4d\ud83c\udffc https:\/\/t.co\/CBnI5kLe5H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720096628670464,"in_reply_to_status_id_str":"663720096628670464","in_reply_to_user_id":55692324,"in_reply_to_user_id_str":"55692324","in_reply_to_screen_name":"zurdo_bohemio","user":{"id":116538815,"id_str":"116538815","name":"Nerio","screen_name":"NerioM","location":"Antofagasta - CHILE","url":null,"description":"Vos Sab\u00e9s - Rom\u00e1ntico Viajero - Basquet - Fabulosos Cadillacs - Cerati - Nunca a la derecha, nunca.","protected":false,"verified":false,"followers_count":1194,"friends_count":1085,"listed_count":18,"favourites_count":769,"statuses_count":66985,"created_at":"Mon Feb 22 20:46:19 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/91545610\/6929_1252623717051_1273265838_765472_6702088_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/91545610\/6929_1252623717051_1273265838_765472_6702088_n.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625632945051725824\/vtCS667p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625632945051725824\/vtCS667p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116538815\/1424717946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"002442586af0948e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/002442586af0948e.json","place_type":"city","name":"Antofagasta","full_name":"Antofagasta, Chile","country_code":"CL","country":"Chile","bounding_box":{"type":"Polygon","coordinates":[[[-70.628327,-25.402127],[-70.628327,-23.054512],[-68.067941,-23.054512],[-68.067941,-25.402127]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zurdo_bohemio","name":"Zurdo Bohemio","id":55692324,"id_str":"55692324","indices":[0,14]}],"symbols":[],"media":[{"id":663727330557325312,"id_str":"663727330557325312","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","url":"https:\/\/t.co\/CBnI5kLe5H","display_url":"pic.twitter.com\/CBnI5kLe5H","expanded_url":"http:\/\/twitter.com\/NerioM\/status\/663727488321912832\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727330557325312,"id_str":"663727330557325312","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","url":"https:\/\/t.co\/CBnI5kLe5H","display_url":"pic.twitter.com\/CBnI5kLe5H","expanded_url":"http:\/\/twitter.com\/NerioM\/status\/663727488321912832\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NerioM","name":"Nerio","id":116538815,"id_str":"116538815","indices":[3,10]},{"screen_name":"zurdo_bohemio","name":"Zurdo Bohemio","id":55692324,"id_str":"55692324","indices":[12,26]}],"symbols":[],"media":[{"id":663727330557325312,"id_str":"663727330557325312","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","url":"https:\/\/t.co\/CBnI5kLe5H","display_url":"pic.twitter.com\/CBnI5kLe5H","expanded_url":"http:\/\/twitter.com\/NerioM\/status\/663727488321912832\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727488321912832,"source_status_id_str":"663727488321912832","source_user_id":116538815,"source_user_id_str":"116538815"}]},"extended_entities":{"media":[{"id":663727330557325312,"id_str":"663727330557325312","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfZWWcAAwktm.jpg","url":"https:\/\/t.co\/CBnI5kLe5H","display_url":"pic.twitter.com\/CBnI5kLe5H","expanded_url":"http:\/\/twitter.com\/NerioM\/status\/663727488321912832\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727488321912832,"source_status_id_str":"663727488321912832","source_user_id":116538815,"source_user_id_str":"116538815"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486573568,"id_str":"663727657486573568","text":"RT @pochiroba: Quiero sandiaa\ud83c\udf49\ud83c\udf49\ud83c\udf49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1323022904,"id_str":"1323022904","name":"Caaro \u2661","screen_name":"CaroDeBoever","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1080,"friends_count":505,"listed_count":0,"favourites_count":1481,"statuses_count":14942,"created_at":"Tue Apr 02 18:23:20 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"945C94","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654140723395174400\/0fxefjqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654140723395174400\/0fxefjqt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1323022904\/1445833346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:45 +0000 2015","id":663726673901305856,"id_str":"663726673901305856","text":"Quiero sandiaa\ud83c\udf49\ud83c\udf49\ud83c\udf49","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2263198692,"id_str":"2263198692","name":"PochiiRoba \u212c\u2110 \u246b","screen_name":"pochiroba","location":null,"url":"https:\/\/www.facebook.com\/Braianlnn","description":"Demasiado amor para una sola vida, \n BOCA TE AMO\n\nCLUB ATLETICO BOCA JUNIORS-\nINDEPENDENCIA FUTBOL CLUB-","protected":false,"verified":false,"followers_count":185,"friends_count":138,"listed_count":1,"favourites_count":369,"statuses_count":5381,"created_at":"Thu Dec 26 18:49:08 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF41C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495814028321509376\/Gna83gW6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495814028321509376\/Gna83gW6.jpeg","profile_background_tile":true,"profile_link_color":"2B12E8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659602276693184512\/Xl70FqNo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659602276693184512\/Xl70FqNo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2263198692\/1432702228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pochiroba","name":"PochiiRoba \u212c\u2110 \u246b","id":2263198692,"id_str":"2263198692","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657482379264,"id_str":"663727657482379264","text":"RT @ttwitandu: Amizade n\u00e3o \u00e9 sobre quem veio antes ou quem veio depois, \u00e9 sobre quem veio e nunca foi embora.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2891838119,"id_str":"2891838119","name":"marrenta \u2764\ufe0f","screen_name":"VicenteLetticia","location":null,"url":null,"description":"paci\u00eancia n\u00e3o \u00e9 uma das minhas virtudes.","protected":false,"verified":false,"followers_count":259,"friends_count":106,"listed_count":1,"favourites_count":1205,"statuses_count":9428,"created_at":"Tue Nov 25 10:10:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725390494584832\/Qyp-H7Cv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725390494584832\/Qyp-H7Cv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891838119\/1446648793","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:19 +0000 2015","id":663727322797862912,"id_str":"663727322797862912","text":"Amizade n\u00e3o \u00e9 sobre quem veio antes ou quem veio depois, \u00e9 sobre quem veio e nunca foi embora.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296426412,"id_str":"296426412","name":"MICKEY \u30c4","screen_name":"ttwitandu","location":"\u221e Deus sabe o que faz \u2665 \u221e","url":null,"description":"Contato para publicidade: ttwitandu1@outlook.com","protected":false,"verified":false,"followers_count":600653,"friends_count":224594,"listed_count":177,"favourites_count":45968,"statuses_count":103301,"created_at":"Tue May 10 18:54:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_tile":true,"profile_link_color":"0F0F0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296426412\/1405809646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttwitandu","name":"MICKEY \u30c4","id":296426412,"id_str":"296426412","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079979664"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473978368,"id_str":"663727657473978368","text":"RT @tafaoulclinic: \u0642\u0627\u0644 \u0627\u0644\u0631\u0633\u0648\u0644 \u0635\u0644\u0651 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645\n\u0644\u0643\u0644 \u062f\u0627\u0621 \u062f\u0648\u0627\u0621\u060c\u0639\u0644\u0645\u0647 \u0645\u0646 \u0639\u0644\u0645\u0647 \u0648\u062c\u0647\u0644\u0647 \u0645\u0646 \u062c\u0647\u0644\u0647*\n\u062d\u062f\u064a\u062b \u064a\u062d\u062b\u0646\u0627 \u0639\u0644\u0649 \u0627\u0644\u0623\u0645\u0644 \u0648\u0627\u0644\u062b\u0642\u0647 \u0628\u0627\u0644\u0644\u0647 \ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599502828,"id_str":"599502828","name":"\u013c\u00f2\u013d\u00d8","screen_name":"loloksa2022","location":null,"url":null,"description":"\u0644\u0622 \u062a\u062a\u0631\u0643 \u0635\u0644\u0622\u062a\u0643 \u0622\u0628\u062f\u0627 \u0641\u0647\u0646\u0622\u0643 \u0627\u0644\u0645\u0644\u0622\u064a\u064a\u0646 \u062a\u062d\u062a \u0627\u0644\u0642\u0628\u0648\u0631 \u064a\u062a\u0645\u0646\u0648\u0646 \u0644\u0648 \u062a\u0639\u0648\u062f \u0628\u0647\u0645 \u0627\u0644\u062d\u064a\u0622\u0629 \u0644\u064a\u0633\u062c\u062f\u0648\u0622 \u0648 \u0644\u0648 \u0633\u062c\u062f\u0629 \u0648\u0622\u062d\u062f\u0629 \u2665 !","protected":false,"verified":false,"followers_count":1606,"friends_count":2005,"listed_count":0,"favourites_count":1570,"statuses_count":3983,"created_at":"Mon Jun 04 17:37:51 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/873657999\/fb17068a1b7701beccd940f7a314a43c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/873657999\/fb17068a1b7701beccd940f7a314a43c.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618145975371083776\/Enc-_MTI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618145975371083776\/Enc-_MTI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599502828\/1396620328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:35:03 +0000 2015","id":663303713185005568,"id_str":"663303713185005568","text":"\u0642\u0627\u0644 \u0627\u0644\u0631\u0633\u0648\u0644 \u0635\u0644\u0651 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645\n\u0644\u0643\u0644 \u062f\u0627\u0621 \u062f\u0648\u0627\u0621\u060c\u0639\u0644\u0645\u0647 \u0645\u0646 \u0639\u0644\u0645\u0647 \u0648\u062c\u0647\u0644\u0647 \u0645\u0646 \u062c\u0647\u0644\u0647*\n\u062d\u062f\u064a\u062b \u064a\u062d\u062b\u0646\u0627 \u0639\u0644\u0649 \u0627\u0644\u0623\u0645\u0644 \u0648\u0627\u0644\u062b\u0642\u0647 \u0628\u0627\u0644\u0644\u0647 \ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":424579268,"id_str":"424579268","name":"\u0639\u064a\u0627\u062f\u0629 \u062a\u0641\u0627\u0624\u0644","screen_name":"tafaoulclinic","location":"KSA","url":"http:\/\/www.tafaoulclinic.com","description":"\u0639\u064a\u0627\u062f\u0627\u062a \u0648\u0627\u0633\u062a\u0634\u0627\u0631\u0627\u062a \u0646\u0641\u0633\u064a\u0629 \u0648\u0627\u062c\u062a\u0645\u0627\u0639\u064a\u0629 - \u0627\u0644\u0631\u064a\u0627\u0636 - \u0634\u0627\u0631\u0639 \u0627\u0644\u062a\u062e\u0635\u0635\u064a 2015757 - 0552015757 \u062a\u0627\u0628\u0639\u0648\u0646\u0627 \u0639\u0644\u0649 \u0627\u0644\u0627\u0646\u0633\u062a\u0642\u0631\u0627\u0645 : tafaoulclinic - \u062c\u062f\u064a\u062f\u0646\u0627 \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629","protected":false,"verified":false,"followers_count":32203,"friends_count":39,"listed_count":78,"favourites_count":383,"statuses_count":4549,"created_at":"Tue Nov 29 23:13:20 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDD8E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163292728\/zm7wXzBb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163292728\/zm7wXzBb.png","profile_background_tile":false,"profile_link_color":"700B5A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DBCADB","profile_text_color":"A8317E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419902580567707648\/YGfJj0NC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419902580567707648\/YGfJj0NC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424579268\/1388961772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":341,"favorite_count":79,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tafaoulclinic","name":"\u0639\u064a\u0627\u062f\u0629 \u062a\u0641\u0627\u0624\u0644","id":424579268,"id_str":"424579268","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486565376,"id_str":"663727657486565376","text":"RT @eunha247: \u3147\u3134\uc774\uac71\u3139\ub9b0\uc624\ub098\uc804\ub0a0\u3139\u3134\ub9ac\uc57c\uc0ac\ub78c\ub4e4\u3139\uc0ac\uc789\ub294\u3145\ub0a8\u3141\u3139\uc774\uc57c\ud568\u3141=\u2667\/\uaed8\ud558\ub294\u3145\ub9e4\uc21c\u3131\u3137\ub9cc\uc774\ub77c\uc78c\ubd90\u3142\ubb34\ubb44\ubd90\ubd90\ubd90\u3141\uc6cc\ub77c #EXO \u314e\ud5e4\uc774\uc5b4\uac78 \uc601\uc6b0\ub108\ub2e4\uac19\u3147\ub36a\ucc30\u3134\ub09c\uc790\ubc14\uc544\uc73c\ub97c\ud55c\uc218\ub454\uac07\u3134\u3134\ub6a4\uac71\ud558 #CALLMEBABY \uc544\ub2f9\u3147\u3147\uba4d\ub465\u3134\ubbf8\uc62c\uc18d\uc5e3\uac19\u3137\ud594\u3146\ub2e8\uc624\uc624\ub098\ub098\u314f","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163813284,"id_str":"3163813284","name":".","screen_name":"lantalo0118","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":47,"listed_count":0,"favourites_count":101,"statuses_count":690,"created_at":"Sun Apr 19 12:02:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630337208382164992\/RShkUEuy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630337208382164992\/RShkUEuy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:07 +0000 2015","id":663717203972259840,"id_str":"663717203972259840","text":"\u3147\u3134\uc774\uac71\u3139\ub9b0\uc624\ub098\uc804\ub0a0\u3139\u3134\ub9ac\uc57c\uc0ac\ub78c\ub4e4\u3139\uc0ac\uc789\ub294\u3145\ub0a8\u3141\u3139\uc774\uc57c\ud568\u3141=\u2667\/\uaed8\ud558\ub294\u3145\ub9e4\uc21c\u3131\u3137\ub9cc\uc774\ub77c\uc78c\ubd90\u3142\ubb34\ubb44\ubd90\ubd90\ubd90\u3141\uc6cc\ub77c #EXO \u314e\ud5e4\uc774\uc5b4\uac78 \uc601\uc6b0\ub108\ub2e4\uac19\u3147\ub36a\ucc30\u3134\ub09c\uc790\ubc14\uc544\uc73c\ub97c\ud55c\uc218\ub454\uac07\u3134\u3134\ub6a4\uac71\ud558 #CALLMEBABY \uc544\ub2f9\u3147\u3147\uba4d\ub465\u3134\ubbf8\uc62c\uc18d\uc5e3\uac19\u3137\ud594\u3146\ub2e8\uc624\uc624\ub098\ub098\u314f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2248716332,"id_str":"2248716332","name":"\uc740\ud558","screen_name":"eunha247","location":"\uc544\ub0d0\uadf8\uac74\ub108\uac00\uc988","url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":297,"listed_count":0,"favourites_count":2029,"statuses_count":10979,"created_at":"Mon Dec 16 12:56:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643922793713635328\/u8J7OB7N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643922793713635328\/u8J7OB7N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2248716332\/1446896330","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[55,59]},{"text":"CALLMEBABY","indices":[91,102]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[69,73]},{"text":"CALLMEBABY","indices":[105,116]}],"urls":[],"user_mentions":[{"screen_name":"eunha247","name":"\uc740\ud558","id":2248716332,"id_str":"2248716332","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461354496,"id_str":"663727657461354496","text":"@yapizduck \u041a\u0440\u0447, \u044f \u0442\u0435\u0431\u0435 \u0432 \u0434\u043c \u043e\u0431\u044a\u044f\u0441\u043d\u044e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727416125366272,"in_reply_to_status_id_str":"663727416125366272","in_reply_to_user_id":4114369354,"in_reply_to_user_id_str":"4114369354","in_reply_to_screen_name":"yapizduck","user":{"id":1304471227,"id_str":"1304471227","name":"\u0442\u0438\u043d\u0434\u0438\u043b\u044c\u0432\u0438\u043b\u044c 8 \u0434\u043e \u0434\u0440","screen_name":"A_loaded_smile","location":"\u0437\u0430\u043c\u0435\u0448\u0430\u0442\u0435\u043b\u044c\u0441\u0442\u0432\u043e ","url":null,"description":"\u043c\u0443\u0436- @Soluushka \u2665 \u041d\u0430 \u043c\u0438\u043a\u0440\u043e\u0432\u043e\u043b\u043d\u0435 \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 @cakexxxgaga \u263a\n\u0411\u0440\u0430\u0442 \u0431\u0440\u0430\u0442\u0430\u043d \u0431\u0440\u0430\u0442\u0438\u0448\u043a\u0430- @yapizduck \u2665","protected":false,"verified":false,"followers_count":2976,"friends_count":2391,"listed_count":6,"favourites_count":2052,"statuses_count":28728,"created_at":"Tue Mar 26 15:14:21 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652806972643872768\/wn2Szr4c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652806972643872768\/wn2Szr4c.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652806412914040832\/xx2u_9Oi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652806412914040832\/xx2u_9Oi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1304471227\/1444476208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yapizduck","name":"\u043a\u0435\u043a\u0441 2.0","id":4114369354,"id_str":"4114369354","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465585666,"id_str":"663727657465585666","text":"Hoy no veo a mi novio\ud83d\ude2d\ud83d\ude2d\ud83d\ude14\ud83d\udc94","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3087544893,"id_str":"3087544893","name":"11-05\u221e\u2661","screen_name":"nazaaguila","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":249,"friends_count":105,"listed_count":0,"favourites_count":6826,"statuses_count":20093,"created_at":"Thu Mar 12 00:22:42 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640107867564064768\/KaaNQYE-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640107867564064768\/KaaNQYE-.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659559193448419328\/YzBUBo6r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659559193448419328\/YzBUBo6r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3087544893\/1446086200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979660"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469788160,"id_str":"663727657469788160","text":"RT @TasbihIstighfar: \u0623\u0630\u0643\u0627\u0631 \u0627\u0644\u0645\u0633\u0627\u0621 \u0643\u0627\u0645\u0644\u0629 https:\/\/t.co\/FZrVW6DHCU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":868098385,"id_str":"868098385","name":"min rose","screen_name":"Amina7373","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":106,"friends_count":92,"listed_count":0,"favourites_count":876,"statuses_count":6754,"created_at":"Mon Oct 08 14:34:48 +0000 2012","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529651005198057472\/Vdtc7Nlm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529651005198057472\/Vdtc7Nlm_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:23 +0000 2015","id":663725576675553280,"id_str":"663725576675553280","text":"\u0623\u0630\u0643\u0627\u0631 \u0627\u0644\u0645\u0633\u0627\u0621 \u0643\u0627\u0645\u0644\u0629 https:\/\/t.co\/FZrVW6DHCU","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2701629769,"id_str":"2701629769","name":"\u062a\u0633\u0628\u064a\u062d \u0648 \u0627\u0633\u062a\u063a\u0641\u0627\u0631","screen_name":"TasbihIstighfar","location":"\u300a \u0627\u0644\u0642\u0631\u0622\u0646 \u0627\u0644\u0643\u0631\u064a\u0645 \u300b","url":"https:\/\/twitter.com\/QuranKareem","description":"\u25fb \u0642\u0627\u0644 \u0631\u0633\u0648\u0644 \u0627\u0644\u0644\u0647 \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u25fb \u0643\u0644\u0645\u062a\u0627\u0646 \u062e\u0641\u064a\u0641\u062a\u0627\u0646 \u0639\u0644\u0649 \u0627\u0644\u0644\u0633\u0627\u0646 \u060c \u062b\u0642\u064a\u0644\u062a\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u064a\u0632\u0627\u0646 \u060c \u062d\u0628\u064a\u0628\u062a\u0627\u0646 \u0625\u0644\u0649 \u0627\u0644\u0631\u062d\u0645\u0646 :: \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u060c \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u25fb \u0645\u062a\u0641\u0642 \u0639\u0644\u064a\u0647","protected":false,"verified":false,"followers_count":109740,"friends_count":61831,"listed_count":122,"favourites_count":526,"statuses_count":19299,"created_at":"Sat Aug 02 19:51:57 +0000 2014","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647136646547181568\/sCmoSh7e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647136646547181568\/sCmoSh7e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2701629769\/1442450713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FZrVW6DHCU","expanded_url":"http:\/\/ift.tt\/1g8Nl21","display_url":"ift.tt\/1g8Nl21","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FZrVW6DHCU","expanded_url":"http:\/\/ift.tt\/1g8Nl21","display_url":"ift.tt\/1g8Nl21","indices":[40,63]}],"user_mentions":[{"screen_name":"TasbihIstighfar","name":"\u062a\u0633\u0628\u064a\u062d \u0648 \u0627\u0633\u062a\u063a\u0641\u0627\u0631","id":2701629769,"id_str":"2701629769","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486520320,"id_str":"663727657486520320","text":"\"The world don't need more songs. If nobody wrote any songs from this day on, the world ain't gonna suffer for it. Nobody cares\" #bobsays","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4055035393,"id_str":"4055035393","name":"LUX LISBON","screen_name":"_oLISBONPOP_","location":"London","url":"http:\/\/bit.ly\/bullingdonclubvideo","description":"London Indie band, Bullingdon Club single - http:\/\/bit.ly\/bullingdonclubvideo - this deserves a wider audience - Billy Bragg. Also on Stewart Lee's Website.","protected":false,"verified":false,"followers_count":248,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":15,"created_at":"Thu Oct 29 07:00:22 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660773116172374016\/3_nmOYj3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660773116172374016\/3_nmOYj3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4055035393\/1446375573","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bobsays","indices":[129,137]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465450497,"id_str":"663727657465450497","text":"RT @PERTLISM: '\u0e41\u0e01\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e41\u0e01\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e02\u0e19\u0e32\u0e14\u0e19\u0e31\u0e49\u0e19\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d?'\n\n\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4153939752,"id_str":"4153939752","name":"\u0e0a\u0e34\u0e25\u0e46","screen_name":"pond547","location":null,"url":null,"description":"\u2022\u0e42\u0e25\u0e01\u0e21\u0e31\u0e19\u0e01\u0e27\u0e49\u0e32\u0e07 \u0e41\u0e15\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e27\u0e48\u0e32\u0e42\u0e25\u0e01\u0e21\u0e31\u0e19\u0e01\u0e25\u0e21\u2022","protected":false,"verified":false,"followers_count":8,"friends_count":77,"listed_count":0,"favourites_count":27,"statuses_count":438,"created_at":"Sat Nov 07 05:54:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662871730998804480\/YZV2K6_9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662871730998804480\/YZV2K6_9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4153939752\/1446876056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:38 +0000 2015","id":663715320977199105,"id_str":"663715320977199105","text":"'\u0e41\u0e01\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e41\u0e01\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e02\u0e19\u0e32\u0e14\u0e19\u0e31\u0e49\u0e19\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d?'\n\n\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":982087333,"id_str":"982087333","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","screen_name":"PERTLISM","location":null,"url":null,"description":"| || feeling 100%|| \u0e16\u0e48\u0e32\u0e22\u0e23\u0e39\u0e1b\u0e40\u0e1b\u0e47\u0e19 \u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e40\u0e25\u0e48\u0e19\u0e17\u0e27\u0e34\u0e15\u0e44\u0e14\u0e49 SCCH#53 MAHIDOL | IG : f.perzeus","protected":false,"verified":false,"followers_count":91288,"friends_count":27,"listed_count":30,"favourites_count":5835,"statuses_count":53485,"created_at":"Sat Dec 01 08:07:31 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_tile":true,"profile_link_color":"5D615D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/982087333\/1446641002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":642,"favorite_count":70,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PERTLISM","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","id":982087333,"id_str":"982087333","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079979660"} +{"delete":{"status":{"id":661541468780105728,"id_str":"661541468780105728","user_id":3679282813,"user_id_str":"3679282813"},"timestamp_ms":"1447079979702"}} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657457061888,"id_str":"663727657457061888","text":"RT @barannbarannkk: \u3070\u3089\u6492\u304d\u4f01\u753b\n\n\u97f3\u6e90\u52d5\u753b\u7d04200\n\u30d7\u30e9\u753b\u7d041000(\u51fa\u56de\u308a\u306a\u3057\u3042\u308a)\n\u60c5\u5831\u7d04500(\u51fa\u56de\u308a\u306a\u3057\u3042\u308a)\n\nRT\u3068\u30d5\u30a9\u30ed\u30fc\u3067\u5fdc\u52df\u5b8c\u4e86\n\n\u9375\u57a2\u30f2\u30bf\u57a2\u30ea\u30a2\u57a2\u53d6\u5f15\u57a2\u30bf\u30b0\u57a2\u30d6\u30ed\u30c3\u30af\nJW.KP.Jr.\u95a2\u897f.\u8594\u8587\u7d44\u30e1\u30a4\u30f3\n\u30ed\u30fc\u30e9\u30fc.a\u3089\u3057.\u2467.\u5e73\u6210.\u3042\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3099520646,"id_str":"3099520646","name":"\u308a\u2661","screen_name":"Berry_s21","location":null,"url":null,"description":"\u2661\u3070\u3089\u2661 \u5354\u529b\u3067\u304d\u308b\u65b9\u63a2\u3057\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":14,"friends_count":53,"listed_count":0,"favourites_count":6,"statuses_count":32,"created_at":"Fri Mar 20 11:45:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633487283249741825\/zjHHWyk2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633487283249741825\/zjHHWyk2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3099520646\/1438942841","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:33:11 +0000 2015","id":663620333614698496,"id_str":"663620333614698496","text":"\u3070\u3089\u6492\u304d\u4f01\u753b\n\n\u97f3\u6e90\u52d5\u753b\u7d04200\n\u30d7\u30e9\u753b\u7d041000(\u51fa\u56de\u308a\u306a\u3057\u3042\u308a)\n\u60c5\u5831\u7d04500(\u51fa\u56de\u308a\u306a\u3057\u3042\u308a)\n\nRT\u3068\u30d5\u30a9\u30ed\u30fc\u3067\u5fdc\u52df\u5b8c\u4e86\n\n\u9375\u57a2\u30f2\u30bf\u57a2\u30ea\u30a2\u57a2\u53d6\u5f15\u57a2\u30bf\u30b0\u57a2\u30d6\u30ed\u30c3\u30af\nJW.KP.Jr.\u95a2\u897f.\u8594\u8587\u7d44\u30e1\u30a4\u30f3\n\u30ed\u30fc\u30e9\u30fc.a\u3089\u3057.\u2467.\u5e73\u6210.\u3042\u308a\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091789592,"id_str":"4091789592","name":"\u3070\u3089\u6492\u304d","screen_name":"barannbarannkk","location":null,"url":null,"description":"\u30f2\u30bf\u57a2\u30ea\u30a2\u57a2\u9375\u57a2\u53d6\u5f15\u57a2\u30bf\u30b0\u57a2\u30d5\u30a9\u30ed\u30fc\u306e\u307f\u306e\u30d6\u30ed\u30c3\u30af\u3002\u51fa\u56de\u308a\u306a\u3057\u3042\u308a\u3002 \u30a8\u30e9\u30fc\u5831\u544a\u6587\u53e5\u7b49\u53d7\u3051\u4ed8\u3051\u3066\u307e\u305b\u3093\u3002\u3057\u3064\u3053\u3044\u4ebaNG\u3002","protected":false,"verified":false,"followers_count":1625,"friends_count":33,"listed_count":0,"favourites_count":17,"statuses_count":68,"created_at":"Sun Nov 01 15:02:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663030571610693633\/QYajgdKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663030571610693633\/QYajgdKQ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1200,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"barannbarannkk","name":"\u3070\u3089\u6492\u304d","id":4091789592,"id_str":"4091789592","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979658"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469669380,"id_str":"663727657469669380","text":"RT @DOThFanclub: \u0e07\u0e32\u0e19 #2015MAMA \u0e1b\u0e35\u0e19\u0e35\u0e49 \u0e40\u0e1e\u0e37\u0e48\u0e2d #EXO \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e41\u0e25\u0e30\u0e40\u0e1e\u0e25\u0e07 #CALLMEBABY \u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e40\u0e22\u0e2d\u0e30\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d\u0e04\u0e30 @MnetMAMA \u0e2e\u0e38\u0e49\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27~","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736424022,"id_str":"736424022","name":"\u0e41\u0e1e\u0e04\u0e22\u0e2d\u0e25...","screen_name":"PimBaekYoel","location":"Mr_\u51e1\u5148\u751f.HZT-ao.\u52aa\u529b\u52aa\u529b\u518d\u52aa\u529bx.M\u9e7fM.","url":null,"description":"\u0e1b\u0e35 2015 \u0e08\u0e30\u0e40\u0e15\u0e47\u0e21\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e27\u0e31\u0e19\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02 #\u0e17\u0e27\u0e34\u0e15\u0e21\u0e35\u0e44\u0e27\u0e49\u0e2a\u0e39\u0e1a\u0e23\u0e39\u0e1b\u0e1c\u0e0a.","protected":false,"verified":false,"followers_count":364,"friends_count":340,"listed_count":2,"favourites_count":327,"statuses_count":14115,"created_at":"Sat Aug 04 09:16:35 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649123542370418688\/Z1Fvs18i.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649123542370418688\/Z1Fvs18i.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650640222741401602\/Y9Qt9rES_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650640222741401602\/Y9Qt9rES_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736424022\/1443598479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:15 +0000 2015","id":663724789387784192,"id_str":"663724789387784192","text":"\u0e07\u0e32\u0e19 #2015MAMA \u0e1b\u0e35\u0e19\u0e35\u0e49 \u0e40\u0e1e\u0e37\u0e48\u0e2d #EXO \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e17\u0e35\u0e48\u0e23\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e41\u0e25\u0e30\u0e40\u0e1e\u0e25\u0e07 #CALLMEBABY \u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e40\u0e22\u0e2d\u0e30\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d\u0e04\u0e30 @MnetMAMA \u0e2e\u0e38\u0e49\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27~","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2574948200,"id_str":"2574948200","name":"D.O. ThFanclub","screen_name":"DOThFanclub","location":null,"url":"https:\/\/www.facebook.com\/ExoDoThailandFanclub","description":"EXO D.O. Thailand Fanclub \n| https:\/\/www.facebook.com\/ExoDoThailandFanclub | http:\/\/dothfanclub.tumblr.com\/ | http:\/\/www.youtube.com\/user\/DoKyungsooTFF","protected":false,"verified":false,"followers_count":15846,"friends_count":435,"listed_count":73,"favourites_count":537,"statuses_count":26337,"created_at":"Wed Jun 18 14:25:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603944914586468353\/fD8YK8Y1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603944914586468353\/fD8YK8Y1.jpg","profile_background_tile":false,"profile_link_color":"EB1575","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661558328019955713\/HDQEfrJX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661558328019955713\/HDQEfrJX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2574948200\/1446562716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":7,"entities":{"hashtags":[{"text":"2015MAMA","indices":[4,13]},{"text":"EXO","indices":[26,30]},{"text":"CALLMEBABY","indices":[57,68]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[103,112]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[21,30]},{"text":"EXO","indices":[43,47]},{"text":"CALLMEBABY","indices":[74,85]}],"urls":[],"user_mentions":[{"screen_name":"DOThFanclub","name":"D.O. ThFanclub","id":2574948200,"id_str":"2574948200","indices":[3,15]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[120,129]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461358592,"id_str":"663727657461358592","text":"RT @molniatv: \u041c\u041e\u041b\u041d\u0418\u042f!\n\nWADA \u0437\u0430\u044f\u0432\u043b\u044f\u0435\u0442, \u0447\u0442\u043e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0438 \u0441 \u0434\u043e\u043f\u0438\u043d\u0433-\u043f\u0440\u043e\u0431\u0430\u043c\u0438 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u043b\u0438 \u043f\u043e \u043f\u0440\u0438\u043a\u0430\u0437\u0443 \u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0441\u043f\u043e\u0440\u0442\u0430 \u0412\u0438\u0442\u0430\u043b\u0438\u044f \u041c\u0443\u0442\u043a\u043e\n\n(@rsportru)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2314756137,"id_str":"2314756137","name":"\u0430\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u0431\u0443\u0434\u044c\u043a\u043e","screen_name":"abbook61","location":"\u041c\u0438\u043d\u0441\u043a","url":null,"description":null,"protected":false,"verified":false,"followers_count":698,"friends_count":593,"listed_count":17,"favourites_count":537,"statuses_count":48065,"created_at":"Thu Jan 30 19:21:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476661909060476928\/A4PNC5yl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476661909060476928\/A4PNC5yl_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:50 +0000 2015","id":663723929182322688,"id_str":"663723929182322688","text":"\u041c\u041e\u041b\u041d\u0418\u042f!\n\nWADA \u0437\u0430\u044f\u0432\u043b\u044f\u0435\u0442, \u0447\u0442\u043e \u043c\u0430\u043d\u0438\u043f\u0443\u043b\u044f\u0446\u0438\u0438 \u0441 \u0434\u043e\u043f\u0438\u043d\u0433-\u043f\u0440\u043e\u0431\u0430\u043c\u0438 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u043b\u0438 \u043f\u043e \u043f\u0440\u0438\u043a\u0430\u0437\u0443 \u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430 \u0441\u043f\u043e\u0440\u0442\u0430 \u0412\u0438\u0442\u0430\u043b\u0438\u044f \u041c\u0443\u0442\u043a\u043e\n\n(@rsportru)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722316518563840,"in_reply_to_status_id_str":"663722316518563840","in_reply_to_user_id":112784173,"in_reply_to_user_id_str":"112784173","in_reply_to_screen_name":"molniatv","user":{"id":112784173,"id_str":"112784173","name":"\u041c\u043e\u043b\u043d\u0438\u044f!","screen_name":"molniatv","location":"\u041a\u0410\u041d\u0410\u041b \u0421\u0420\u041e\u0427\u041d\u042b\u0425 \u041d\u041e\u0412\u041e\u0421\u0422\u0415\u0419","url":null,"description":"\u0422\u043e\u043b\u044c\u043a\u043e \u0441\u0440\u043e\u0447\u043d\u044b\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u2014 \u043f\u043e\u0434\u043f\u0438\u0448\u0438\u0441\u044c \u0438 \u0443\u0437\u043d\u0430\u0435\u0448\u044c \u043f\u0435\u0440\u0432\u044b\u043c!","protected":false,"verified":false,"followers_count":86927,"friends_count":393,"listed_count":756,"favourites_count":33,"statuses_count":35707,"created_at":"Tue Feb 09 18:07:25 +0000 2010","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540835571338182656\/tah-fLye_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540835571338182656\/tah-fLye_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112784173\/1446286023","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rsportru","name":"\u0420-\u0421\u043f\u043e\u0440\u0442","id":241049924,"id_str":"241049924","indices":[112,121]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"molniatv","name":"\u041c\u043e\u043b\u043d\u0438\u044f!","id":112784173,"id_str":"112784173","indices":[3,12]},{"screen_name":"rsportru","name":"\u0420-\u0421\u043f\u043e\u0440\u0442","id":241049924,"id_str":"241049924","indices":[126,135]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657482330116,"id_str":"663727657482330116","text":"RT @Luvvie: You dated 50 Cent. On THAT fact alone, you should keep your humble. That was a bad decision from START. That dude is a knuckleh\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1372446914,"id_str":"1372446914","name":"Janey Tate","screen_name":"Janey_Tate","location":"Miami, Florida","url":"https:\/\/hylonews.wordpress.com","description":"Hy-Lo News creator and blogger. Miami Times freelance reporter. Serial Retweeter #TeamFollowBack-- Re-Tweets are not endorsements","protected":false,"verified":false,"followers_count":400,"friends_count":693,"listed_count":8,"favourites_count":304,"statuses_count":2448,"created_at":"Mon Apr 22 15:50:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446323309257322496\/lc289SK-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446323309257322496\/lc289SK-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1372446914\/1395246718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:23:34 +0000 2015","id":663557515662225408,"id_str":"663557515662225408","text":"You dated 50 Cent. On THAT fact alone, you should keep your humble. That was a bad decision from START. That dude is a knucklehead.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16254381,"id_str":"16254381","name":"Awesomely Luvvie","screen_name":"Luvvie","location":"Zamunda (I'm the Kween to be)","url":"http:\/\/www.awesomelyluvvie.com","description":"Wacky Wordsmith. Side-Eye Sorceress. Foolery Enthusiast. TV Buff. Shoe Fiend. Travel Junkie. Professional Troublemaker. Also: @iLuvvit.","protected":false,"verified":true,"followers_count":54242,"friends_count":924,"listed_count":1264,"favourites_count":6009,"statuses_count":142575,"created_at":"Fri Sep 12 08:31:00 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8C4040","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/247689281\/haveaseattee.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/247689281\/haveaseattee.png","profile_background_tile":true,"profile_link_color":"DB0D17","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A5AD9F","profile_text_color":"030303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551982226607333377\/yXQM9P-J_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551982226607333377\/yXQM9P-J_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16254381\/1398228528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Luvvie","name":"Awesomely Luvvie","id":16254381,"id_str":"16254381","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979664"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465610240,"id_str":"663727657465610240","text":"RT @shmesm: ex: running man started at 4:50 yesterday but sbs official schedule said 6:10...got7 twitter said 6:10 and people got mad","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321965578,"id_str":"321965578","name":"Sonia Putri","screen_name":"Shonia1120","location":"Jakarta,Indonesia","url":null,"description":"\u2665\u2665\u26652PM \u2665\u2665\u2665 MubankJKT 09032013 | GCWTJKT 28032015 | 32SPT'14","protected":false,"verified":false,"followers_count":94,"friends_count":81,"listed_count":0,"favourites_count":2592,"statuses_count":23809,"created_at":"Wed Jun 22 12:31:27 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"552D91","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/791136844\/e55b36c913246ec7b34dd809b71f11f2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/791136844\/e55b36c913246ec7b34dd809b71f11f2.png","profile_background_tile":true,"profile_link_color":"C124C9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3DCF5","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638908292085866496\/kUez1rJs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638908292085866496\/kUez1rJs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321965578\/1414854714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:12:21 +0000 2015","id":663645289748627457,"id_str":"663645289748627457","text":"ex: running man started at 4:50 yesterday but sbs official schedule said 6:10...got7 twitter said 6:10 and people got mad","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663645115626340352,"in_reply_to_status_id_str":"663645115626340352","in_reply_to_user_id":98558382,"in_reply_to_user_id_str":"98558382","in_reply_to_screen_name":"shmesm","user":{"id":98558382,"id_str":"98558382","name":"k\u3137\u3147 #mad #twice","screen_name":"shmesm","location":"LA \/ Seoul","url":"http:\/\/fyjypnation.wordpress.com\/","description":"Korean. college student in the US. JYP Nation \u2665 \uc81c\uc651\uc218\ub2c8 (: No followbacks. \n\ud55c\uad6d\uc5b4 \uac00\ub2a5","protected":false,"verified":false,"followers_count":10652,"friends_count":1561,"listed_count":121,"favourites_count":515,"statuses_count":86973,"created_at":"Tue Dec 22 05:28:34 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0D66","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0088","profile_sidebar_border_color":"3B2D2D","profile_sidebar_fill_color":"FF8ACC","profile_text_color":"FF0F7B","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657811982695821312\/hJ0W4lT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657811982695821312\/hJ0W4lT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98558382\/1445669809","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shmesm","name":"k\u3137\u3147 #mad #twice","id":98558382,"id_str":"98558382","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979660"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657490718720,"id_str":"663727657490718720","text":"Congratulations to MONKEY contributor and friend @LairdHunt for winning the Grand Prix de la Litt\u00e9rature Am\u00e9ricaine https:\/\/t.co\/vYbxFeQQqW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396095668,"id_str":"2396095668","name":"Monkey Business","screen_name":"monkeybizjapan","location":"A Public Space, Brooklyn, NY","url":"http:\/\/monkeybusinessmag.tumblr.com","description":"The in-translation offspring of the Tokyo-based magazine Monkey Business (@monkey_info1), showcasing the best of contemporary Japanese literature.","protected":false,"verified":false,"followers_count":331,"friends_count":82,"listed_count":14,"favourites_count":140,"statuses_count":321,"created_at":"Tue Mar 18 12:01:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588162852797558784\/pK_yKfpI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588162852797558784\/pK_yKfpI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396095668\/1429064004","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vYbxFeQQqW","expanded_url":"http:\/\/m.lesechos.fr\/week-end\/laird-hunt-grand-prix-de-la-litterature-americaine-021463023595.htm","display_url":"m.lesechos.fr\/week-end\/laird\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"LairdHunt","name":"LairdHunt","id":18428908,"id_str":"18428908","indices":[49,59]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079979666"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657478184960,"id_str":"663727657478184960","text":"RT @MikeConnors: Michael says an NDP government would make sure glucose strips and insulin pumps are available to all people with diabetes.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503301681,"id_str":"503301681","name":"hal cormier","screen_name":"HalCormier_C21","location":"Pasadena NL ","url":null,"description":"love the outdoors. Montreal Canadian fan. views posted here are my views. if you don't like don't follow.","protected":false,"verified":false,"followers_count":390,"friends_count":548,"listed_count":7,"favourites_count":75,"statuses_count":2750,"created_at":"Sat Feb 25 17:29:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620600524220571648\/g9PGR960_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620600524220571648\/g9PGR960_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503301681\/1425430171","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:24 +0000 2015","id":663726587095961600,"id_str":"663726587095961600","text":"Michael says an NDP government would make sure glucose strips and insulin pumps are available to all people with diabetes. #nlpoli #nlvotes","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22089519,"id_str":"22089519","name":"Michael Connors","screen_name":"MikeConnors","location":"St. John's, NL, Canada","url":"https:\/\/www.facebook.com\/michaelconnorsntv\/","description":"Legislative Reporter, @NTVNewsNL, Newfoundland and Labrador","protected":false,"verified":false,"followers_count":9886,"friends_count":4905,"listed_count":172,"favourites_count":22,"statuses_count":25958,"created_at":"Fri Feb 27 01:09:28 +0000 2009","utc_offset":-12600,"time_zone":"Newfoundland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569975561447956481\/fH1_dIrs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569975561447956481\/fH1_dIrs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22089519\/1438536587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"nlpoli","indices":[123,130]},{"text":"nlvotes","indices":[131,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nlpoli","indices":[139,140]},{"text":"nlvotes","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"MikeConnors","name":"Michael Connors","id":22089519,"id_str":"22089519","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979663"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657457205248,"id_str":"663727657457205248","text":"RT @CiudadanosCs: .@InesArrimadas \"Tenemos unos gobernantes en Catalu\u00f1a que se creen por encima de las leyes democr\u00e1ticas y de los ciudadan\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3791944167,"id_str":"3791944167","name":"Paqui Cardenas Romer","screen_name":"cardenas_paqui","location":"Murcia, Regi\u00f3n de Murcia","url":null,"description":"de Madrid,aunk vivo en Murcia,ahora en el paro,pero ya sab\u00e9is,IMPOSIBLE ES SOLO UNA OPINION","protected":false,"verified":false,"followers_count":64,"friends_count":111,"listed_count":0,"favourites_count":247,"statuses_count":385,"created_at":"Sun Sep 27 10:47:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648728779280527360\/ofWK6meV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648728779280527360\/ofWK6meV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:35:32 +0000 2015","id":663696420264890368,"id_str":"663696420264890368","text":".@InesArrimadas \"Tenemos unos gobernantes en Catalu\u00f1a que se creen por encima de las leyes democr\u00e1ticas y de los ciudadanos\" #ParlamentARV","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19028805,"id_str":"19028805","name":"Ciudadanos","screen_name":"CiudadanosCs","location":"Espa\u00f1a","url":"http:\/\/www.ciudadanos-cs.org\/","description":"Perfil Oficial. Partido pol\u00edtico progresista, surgido de un movimiento de ciudadanos que quieren regenerar la pol\u00edtica espa\u00f1ola.","protected":false,"verified":true,"followers_count":222986,"friends_count":99309,"listed_count":2169,"favourites_count":540,"statuses_count":48789,"created_at":"Thu Jan 15 17:04:59 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F28824","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/757585824\/c761fb8f093053dc210c409721f90ab1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/757585824\/c761fb8f093053dc210c409721f90ab1.jpeg","profile_background_tile":false,"profile_link_color":"E68319","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCC4BC","profile_text_color":"333230","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581627715754848256\/R2rmZN6H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581627715754848256\/R2rmZN6H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19028805\/1425566778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86,"favorite_count":59,"entities":{"hashtags":[{"text":"ParlamentARV","indices":[125,138]}],"urls":[],"user_mentions":[{"screen_name":"InesArrimadas","name":"In\u00e9s Arrimadas","id":552561770,"id_str":"552561770","indices":[1,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ParlamentARV","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"CiudadanosCs","name":"Ciudadanos","id":19028805,"id_str":"19028805","indices":[3,16]},{"screen_name":"InesArrimadas","name":"In\u00e9s Arrimadas","id":552561770,"id_str":"552561770","indices":[19,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979658"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657478025216,"id_str":"663727657478025216","text":"RT @HttpDeanna: i tried to be nicer for you. i changed my ways for you. i wanted to be good for you. i wanted to know that i was enough to \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1472213900,"id_str":"1472213900","name":"Riy","screen_name":"FikIshak","location":null,"url":null,"description":"18\/student \/ http:\/\/AIREEN.com","protected":false,"verified":false,"followers_count":575,"friends_count":408,"listed_count":0,"favourites_count":584,"statuses_count":7328,"created_at":"Fri May 31 13:52:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107385330\/18196ff73da4d74a5dbc8ed423f1659f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107385330\/18196ff73da4d74a5dbc8ed423f1659f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662295862450634752\/Gzfi8ZNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662295862450634752\/Gzfi8ZNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1472213900\/1447028523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:38 +0000 2015","id":663720104706748417,"id_str":"663720104706748417","text":"i tried to be nicer for you. i changed my ways for you. i wanted to be good for you. i wanted to know that i was enough to make you happy.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2578165916,"id_str":"2578165916","name":"\u2800\u2800\u2800\u2800\u2800\u2800","screen_name":"HttpDeanna","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11168,"friends_count":436,"listed_count":2,"favourites_count":47,"statuses_count":16688,"created_at":"Fri Jun 20 06:33:33 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"EEBBBB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662548240005398528\/fmK0KNJq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662548240005398528\/fmK0KNJq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2578165916\/1438431622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":57,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HttpDeanna","name":"\u2800\u2800\u2800\u2800\u2800\u2800","id":2578165916,"id_str":"2578165916","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979663"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465618432,"id_str":"663727657465618432","text":"@RehabMorgham \n\u0648\u0627\u0645\u062a\u062d\u0627\u0646\u0643 \u061f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727484467347456,"in_reply_to_status_id_str":"663727484467347456","in_reply_to_user_id":920288232,"in_reply_to_user_id_str":"920288232","in_reply_to_screen_name":"RehabMorgham","user":{"id":136028979,"id_str":"136028979","name":"Farouk Ashour","screen_name":"Ferooo","location":"Libya.Tripoli","url":"https:\/\/instagram.com\/ferooou","description":"\u200f\u200f\u200f\u0631\u0628\u0639 \u0642\u0631\u0646 \u0645\u0646 \u0627\u0644\u0623\u0634\u063a\u0627\u0644 \u0627\u0644\u0634\u0627\u0642\u0629 \u060c\u200f\u200f Erorr# \n\u0633\u0642\u0637 \u0633\u0647\u0648\u0627\u064b \u060c #\u0644\u0627_\u064a\u0646\u062a\u0645\u064a \u2209 .","protected":false,"verified":false,"followers_count":1905,"friends_count":139,"listed_count":10,"favourites_count":8196,"statuses_count":15954,"created_at":"Thu Apr 22 21:11:21 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"448EF5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F59D75","profile_text_color":"D7C76F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663010682724589568\/znkL9Kk6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663010682724589568\/znkL9Kk6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136028979\/1437528169","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RehabMorgham","name":"Hina","id":920288232,"id_str":"920288232","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079979660"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657490624512,"id_str":"663727657490624512","text":"@Osiosio2525 \n\u304a\u3057\u304a\u3057\u3069\u3057\u305f\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727590566293504,"in_reply_to_status_id_str":"663727590566293504","in_reply_to_user_id":3149833885,"in_reply_to_user_id_str":"3149833885","in_reply_to_screen_name":"Osiosio2525","user":{"id":3036316086,"id_str":"3036316086","name":"\u308a\u306a\u3082\u3093","screen_name":"6rina21","location":null,"url":"http:\/\/instagram.com\/Rina.21\/","description":"HBG \u4fdd\u80b2 GAG2","protected":false,"verified":false,"followers_count":261,"friends_count":251,"listed_count":0,"favourites_count":1155,"statuses_count":5294,"created_at":"Sun Feb 22 11:47:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659005925441736704\/f9RBXaTg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659005925441736704\/f9RBXaTg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3036316086\/1434185923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Osiosio2525","name":"\u24e2 \u00cf \u24c4 \u00b2","id":3149833885,"id_str":"3149833885","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979666"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657457070084,"id_str":"663727657457070084","text":"@pooh_growl \n\u306a\u3093\u3067\u3060\u3088\uff01\uff01\uff01\uff01\uff01\uff01wwww\n\u5168\u7136\u30a6\u30a7\u30eb\u30ab\u30e0\u3060\u308d\uff01ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725965952991232,"in_reply_to_status_id_str":"663725965952991232","in_reply_to_user_id":2406983198,"in_reply_to_user_id_str":"2406983198","in_reply_to_screen_name":"pooh_growl","user":{"id":2566546027,"id_str":"2566546027","name":"\u3086\u304b","screen_name":"buono617","location":null,"url":null,"description":"\u4f0e\u500d\u5c0f\u261e\u5317\u6d5c\u4e2d\u261e\u5317\u897f12HR\u25b723HR\u25b733HR \u2764\ufe0elove\u2764\ufe0e\u261e\u5de5\u85e4\u9065\uff0a\u4e8c\u5bae\u548c\u4e5f\uff0a\u67f3\u7530\u5c06\u6d0b","protected":false,"verified":false,"followers_count":197,"friends_count":185,"listed_count":0,"favourites_count":371,"statuses_count":1199,"created_at":"Sat Jun 14 05:43:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661556940745535488\/D_B1BlsL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661556940745535488\/D_B1BlsL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566546027\/1446480626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pooh_growl","name":"\u3086\u3044","id":2406983198,"id_str":"2406983198","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979658"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657477996544,"id_str":"663727657477996544","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u516b\u5c90\u30ce\u68ee\u306e\u8d04\u6bd4\u5973\uff08\u8d85\u7d76\uff09\u300d\nhttps:\/\/t.co\/YLs7yUnBZB\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2733239352,"id_str":"2733239352","name":"\u6c38\u4e45\u604b\u611b","screen_name":"urueclair","location":null,"url":null,"description":"\u541b\u3082\u898b\u3066\u3044\u308b\u661f\u306b\u9858\u3044\u3092\u2026","protected":false,"verified":false,"followers_count":229,"friends_count":273,"listed_count":1,"favourites_count":301,"statuses_count":1331,"created_at":"Fri Aug 15 01:02:52 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655385342246170624\/SrSMvwVh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655385342246170624\/SrSMvwVh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2733239352\/1446460424","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YLs7yUnBZB","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=NDIxNzMwMjQ1","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979663"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461219328,"id_str":"663727657461219328","text":"Girl just take my hand and let me be your man.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2615430918,"id_str":"2615430918","name":"Justine Rome \u2654","screen_name":"weirdspecimen","location":"Philippines","url":null,"description":"Being weird is just a side effect of being too awesome! \u25aa\ufe0f Not a human. An Alien","protected":false,"verified":false,"followers_count":33,"friends_count":19,"listed_count":0,"favourites_count":81,"statuses_count":354,"created_at":"Thu Jul 10 13:02:37 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645273466636144644\/jSDAGUVi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645273466636144644\/jSDAGUVi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2615430918\/1418126952","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469607936,"id_str":"663727657469607936","text":"@1005muro \u305b\u304d\u3068\u4ed8\u304d\u5408\u3063\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726556615827458,"in_reply_to_status_id_str":"663726556615827458","in_reply_to_user_id":3226809114,"in_reply_to_user_id_str":"3226809114","in_reply_to_screen_name":"1005muro","user":{"id":2354489772,"id_str":"2354489772","name":"\u3057\u3085\u3093\u3061\u3087\u3059","screen_name":"0502Sn","location":"\u548c\u99ac\u306e\u5f8c\u308d","url":null,"description":"\u516d\u5b9f\u4e2d\u2192\u5546\u5927\u4ed8\u5c5e2C","protected":false,"verified":false,"followers_count":566,"friends_count":380,"listed_count":0,"favourites_count":8801,"statuses_count":13234,"created_at":"Fri Feb 21 08:49:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663269725854498816\/WJKB6BbF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663269725854498816\/WJKB6BbF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354489772\/1445340008","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1005muro","name":"\u3051\u3093\u305f","id":3226809114,"id_str":"3226809114","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473867776,"id_str":"663727657473867776","text":"RT @FoodsPics: Cake Chocolate Cream Dessert Favim. http:\/\/t.co\/19YEdQobUb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":578050470,"id_str":"578050470","name":"reikoo\u2728","screen_name":"reiko_rahmasari","location":"world","url":"http:\/\/ask.fm\/reiko_rahmasari","description":"5\/5","protected":false,"verified":false,"followers_count":1974,"friends_count":211,"listed_count":1,"favourites_count":3242,"statuses_count":8538,"created_at":"Sat May 12 11:22:16 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660770171481554946\/mfYBvMMH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660770171481554946\/mfYBvMMH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/578050470\/1446988849","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Sep 24 07:25:20 +0000 2015","id":646948513960427521,"id_str":"646948513960427521","text":"Cake Chocolate Cream Dessert Favim. http:\/\/t.co\/19YEdQobUb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":734983706,"id_str":"734983706","name":"FoodsPics","screen_name":"FoodsPics","location":"Kichen","url":null,"description":"Food food glorious food. Follow me and i promise to make you hungry!\nfoodspics@gmail.com","protected":false,"verified":false,"followers_count":58766,"friends_count":57998,"listed_count":164,"favourites_count":575,"statuses_count":2976,"created_at":"Fri Aug 03 14:36:06 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000086093496\/ad03b4aa5b9b765f9456f43eb6badb5d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000086093496\/ad03b4aa5b9b765f9456f43eb6badb5d.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540433522658246656\/TJooUdji_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540433522658246656\/TJooUdji_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/734983706\/1419259176","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646948461582008320,"id_str":"646948461582008320","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","url":"http:\/\/t.co\/19YEdQobUb","display_url":"pic.twitter.com\/19YEdQobUb","expanded_url":"http:\/\/twitter.com\/FoodsPics\/status\/646948513960427521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":305,"resize":"fit"},"large":{"w":500,"h":305,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646948461582008320,"id_str":"646948461582008320","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","url":"http:\/\/t.co\/19YEdQobUb","display_url":"pic.twitter.com\/19YEdQobUb","expanded_url":"http:\/\/twitter.com\/FoodsPics\/status\/646948513960427521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":305,"resize":"fit"},"large":{"w":500,"h":305,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FoodsPics","name":"FoodsPics","id":734983706,"id_str":"734983706","indices":[3,13]}],"symbols":[],"media":[{"id":646948461582008320,"id_str":"646948461582008320","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","url":"http:\/\/t.co\/19YEdQobUb","display_url":"pic.twitter.com\/19YEdQobUb","expanded_url":"http:\/\/twitter.com\/FoodsPics\/status\/646948513960427521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":305,"resize":"fit"},"large":{"w":500,"h":305,"resize":"fit"}},"source_status_id":646948513960427521,"source_status_id_str":"646948513960427521","source_user_id":734983706,"source_user_id_str":"734983706"}]},"extended_entities":{"media":[{"id":646948461582008320,"id_str":"646948461582008320","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpsMriUwAAP7OF.png","url":"http:\/\/t.co\/19YEdQobUb","display_url":"pic.twitter.com\/19YEdQobUb","expanded_url":"http:\/\/twitter.com\/FoodsPics\/status\/646948513960427521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":305,"resize":"fit"},"large":{"w":500,"h":305,"resize":"fit"}},"source_status_id":646948513960427521,"source_status_id_str":"646948513960427521","source_user_id":734983706,"source_user_id_str":"734983706"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473863680,"id_str":"663727657473863680","text":"METAL BUILD \u30b9\u30c8\u30e9\u30a4\u30af\u30d5\u30ea\u30fc\u30c0\u30e0\u30ac\u30f3\u30c0\u30e0Amazon\u5fa9\u6d3b\uff01\uff01 303\u56de\u76ee https:\/\/t.co\/VXb0tafII9","source":"\u003ca href=\"http:\/\/blog.livedoor.jp\/tenbaihaou\/\" rel=\"nofollow\"\u003e\u5fa9\u6d3b\u901f\u5831\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2478299228,"id_str":"2478299228","name":"\u8ee2\u58f2\u8987\u738b \u5fa9\u6d3b\u901f\u5831","screen_name":"tenbaihaouf","location":"\u8ee2\u58f2\u8987\u738b","url":"http:\/\/blog.livedoor.jp\/tenbaihaou\/","description":"\u8ee2\u58f2\u3067\u304d\u305d\u3046\u306a\u5546\u6750\u306e\u8ca9\u58f2\u518d\u958b\u60c5\u5831\u3092\u304a\u4f1d\u3048\u3057\u3066\u304a\u308a\u307e\u3059\uff01\uff01\u901f\u3055\u3001\u7a2e\u985e\u306e\u8c4a\u5bcc\u3055\u306b\u81ea\u4fe1\u3042\u308a\u3002blog\u306f\u300c\u8ee2\u58f2 \u8987\u738b\u300d\u3067\u691c\u7d22\u3059\u308b\u3068\u30c8\u30c3\u30d7\u306b\u51fa\u3066\u304f\u308b\u306e\u3067\n\u5408\u308f\u305b\u3066\u30c1\u30a7\u30c3\u30af\uff01\uff01","protected":false,"verified":false,"followers_count":2010,"friends_count":0,"listed_count":42,"favourites_count":2,"statuses_count":96614,"created_at":"Mon May 05 12:34:24 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469279082622906369\/lDhuvLrt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469279082622906369\/lDhuvLrt_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VXb0tafII9","expanded_url":"http:\/\/bit.ly\/1CQ1T3F","display_url":"bit.ly\/1CQ1T3F","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473826816,"id_str":"663727657473826816","text":"@lawsuke_0304 \u307f\u30fc\u3063\u3075\u3043\u30fc\u2193\u304b\u308f\u30fc\u2191\u3044\u3044\u3046\u3055\u3061\u3083\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727130576949248,"in_reply_to_status_id_str":"663727130576949248","in_reply_to_user_id":3140189438,"in_reply_to_user_id_str":"3140189438","in_reply_to_screen_name":"lawsuke_0304","user":{"id":2974840892,"id_str":"2974840892","name":"\u308d\u306a","screen_name":"jjutmx3","location":"\u90fd\u5fc3\u3088\u308a\u5c11\u3057\u96e2\u308c\u305f\u5730\u57df","url":null,"description":"\u7d75\u3092\u63cf\u3051\u308b\u3088\u3046\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u3002\u30d7\u30ed\u753b- @koretsuki_aduma \u3055\u3093\u304b\u3089","protected":false,"verified":false,"followers_count":1473,"friends_count":805,"listed_count":29,"favourites_count":4647,"statuses_count":6704,"created_at":"Sun Jan 11 11:58:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660688369333108736\/5_Xb-lnQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660688369333108736\/5_Xb-lnQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974840892\/1446901860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lawsuke_0304","name":"\u308d\u30fc\u3059\u3051-\u3066\u3059\u3068\u3045","id":3140189438,"id_str":"3140189438","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469636608,"id_str":"663727657469636608","text":"@a6m763 \u6614\uff62\u30d3\u30c3\u30af\u30ea\u30de\u30f3\uff63\u3068\u3044\u3046\u304a\u83d3\u5b50\u306e\u7279\u5178\u30ab\u30fc\u30c9\u304c\u4eba\u6c17\u306b\u306a\u308a\u30a2\u30cb\u30e1\u304c\u4f5c\u3089\u308c\u307e\u3057\u305f\u304c\u672c\u6765\u306e\u8a2d\u5b9a\u4ee5\u4e0a\u306e\u30ad\u30e3\u30e9\u4ed8\u3051\u3084\u30b9\u30c8\u30fc\u30ea\u30fc\u3092\u76db\u308a\u8fbc\u307f\u30b7\u30ea\u30fc\u30ba\u3067\uff15\u5e74\u4f4d\u7d9a\u3044\u305f\u3068\u8a18\u61b6\u3057\u3066\u307e\u3059\u3001\u8981\u306f\u30a2\u30cb\u30e1\u4f01\u753b\u306e\u5b9f\u529b\u6b21\u7b2c\u304b\u3068","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724302395543552,"in_reply_to_status_id_str":"663724302395543552","in_reply_to_user_id":2169958657,"in_reply_to_user_id_str":"2169958657","in_reply_to_screen_name":"a6m763","user":{"id":133388473,"id_str":"133388473","name":"mtoto\uff12\u7b49\u5175","screen_name":"mtoto2touhei","location":"\u6771\u4eac","url":"http:\/\/www.youtube.com\/user\/mtoto01?feature=mhee","description":"battlefield\u30b7\u30ea\u30fc\u30ba\u306e\u521d\u4ee3\u304b\u3064\u9b54\u5883\u3068\u3082\u8a00\u308f\u308c\u3066\u3044\u308bBF1942MOD\uff62FHSW\uff63\u306e\u73fe\u5f79\u64ae\u5f71\u73ed\u3067\u3059\u3001BF1942\u3001STG\u30b2\u30fc\u30e0\u3001\u8266\u3053\u308c\uff08\u30c8\u30e9\u30c3\u30af\u6cca\u5730\uff09\u3001\u6b66\u5668\u5175\u5668\u306a\u3069\u306a\u3069","protected":false,"verified":false,"followers_count":107,"friends_count":135,"listed_count":4,"favourites_count":565,"statuses_count":4391,"created_at":"Thu Apr 15 17:10:21 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482322073717469184\/m-2M3r8C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482322073717469184\/m-2M3r8C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133388473\/1403829457","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"a6m763","name":"A6M7-63@\u5bbf\u6bdb\u6e7e\u63d0\u7763","id":2169958657,"id_str":"2169958657","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657490644993,"id_str":"663727657490644993","text":"RT @723natsumi_okmt: \u3082\u3046\u3059\u3050\u3067\u3001\u3082\u3046\u81ea\u5206\u306e\u51fa\u3066\u308b\u30cb\u30b3\u30e9\u7d42\u308f\u3063\u3061\u3083\u3046\u3002\n\u307e\u3060\u898b\u3066\u306a\u3044\u65b9\u3001\u305c\u3072\u3001\u6700\u5f8c\u306e\u30cb\u30b3\u30e9\n\u624b\u306b\u3068\u3063\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\n\u5352\u696d\u30da\u30fc\u30b8\u306e\u30c9\u30ec\u30b9\u3082\n\u6700\u5f8c\u306e\u96c6\u5927\u6210\u3068\u3057\u3066\u3001\u3059\u3079\u3066\u6700\u521d\u304b\u3089\u30c7\u30b6\u30a4\u30f3\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\n\u305c\u3072\ud83d\udc96\ud83d\udc96 http:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235861630,"id_str":"235861630","name":"\uff61*Teacup*\u2654 \u0295\u00b7\u1d25\u00b7 \u0294 \uff61*","screen_name":"ss_cc_oo_uu_pp_","location":".","url":null,"description":".","protected":false,"verified":false,"followers_count":1653,"friends_count":1962,"listed_count":11,"favourites_count":28850,"statuses_count":97455,"created_at":"Sun Jan 09 07:10:08 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/477037243069001728\/ASoZ73xm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/477037243069001728\/ASoZ73xm.jpeg","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660481061395132416\/puB2ygxX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660481061395132416\/puB2ygxX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/235861630\/1443904157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Apr 14 11:26:05 +0000 2015","id":587939881730473984,"id_str":"587939881730473984","text":"\u3082\u3046\u3059\u3050\u3067\u3001\u3082\u3046\u81ea\u5206\u306e\u51fa\u3066\u308b\u30cb\u30b3\u30e9\u7d42\u308f\u3063\u3061\u3083\u3046\u3002\n\u307e\u3060\u898b\u3066\u306a\u3044\u65b9\u3001\u305c\u3072\u3001\u6700\u5f8c\u306e\u30cb\u30b3\u30e9\n\u624b\u306b\u3068\u3063\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\n\u5352\u696d\u30da\u30fc\u30b8\u306e\u30c9\u30ec\u30b9\u3082\n\u6700\u5f8c\u306e\u96c6\u5927\u6210\u3068\u3057\u3066\u3001\u3059\u3079\u3066\u6700\u521d\u304b\u3089\u30c7\u30b6\u30a4\u30f3\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\n\u305c\u3072\ud83d\udc96\ud83d\udc96 http:\/\/t.co\/EwG09KdtyO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261231306,"id_str":"2261231306","name":"\u5ca1\u672c\u590f\u7f8e","screen_name":"723natsumi_okmt","location":null,"url":"http:\/\/s.ameblo.jp\/natsumi-okmt\/","description":"EverGreenEntertainment\u6240\u5c5e Seventeen\u5c02\u5c5e\u30e2\u30c7\u30eb \u5973\u512a 17\u6b73\u3002\u25ce\u6765\u5e741\u6708\u516c\u958b \u65e5\u672c\u521d4DX\u5c02\u7528\u6620\u753b\u300e\u30dc\u30af\u30bd\u30fc\u30eb\u2605\u30e9\u30a4\u30c9\u30b7\u30e7\u30fc\u301c\u6050\u6016\u306e\u5ec3\u6821\u8131\u51fa\u301c\u300f\u4e3b\u6f14 \u30ef\u30a4\u30c9\u30ca\u30b7\u30e7\u30fc(\u30ef\u30a4\u30c9\u30ca\u9ad8\u6821\u751f) \u30cf\u30ec\u30aa\u30f3\u30ca \u30b5\u30c3\u30ab\u30fc\u597d\u304dhttps:\/\/Instagram.com\/okamoto_natsumi","protected":false,"verified":true,"followers_count":110285,"friends_count":247,"listed_count":658,"favourites_count":5873,"statuses_count":7713,"created_at":"Wed Dec 25 08:37:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644844860076265474\/AWJk0FGy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644844860076265474\/AWJk0FGy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261231306\/1443012670","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":371,"favorite_count":2223,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":587939857009262592,"id_str":"587939857009262592","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":587939857009262592,"id_str":"587939857009262592","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":587939856946348033,"id_str":"587939856946348033","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1KUwAEtVNe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1KUwAEtVNe.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":587939856946311168,"id_str":"587939856946311168","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1KUMAAA7pG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1KUMAAA7pG.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":587939856950566912,"id_str":"587939856950566912","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1LVIAArI3Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1LVIAArI3Z.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"723natsumi_okmt","name":"\u5ca1\u672c\u590f\u7f8e","id":2261231306,"id_str":"2261231306","indices":[3,19]}],"symbols":[],"media":[{"id":587939857009262592,"id_str":"587939857009262592","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":587939881730473984,"source_status_id_str":"587939881730473984","source_user_id":2261231306,"source_user_id_str":"2261231306"}]},"extended_entities":{"media":[{"id":587939857009262592,"id_str":"587939857009262592","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1ZUwAAKwqR.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":587939881730473984,"source_status_id_str":"587939881730473984","source_user_id":2261231306,"source_user_id_str":"2261231306"},{"id":587939856946348033,"id_str":"587939856946348033","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1KUwAEtVNe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1KUwAEtVNe.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":587939881730473984,"source_status_id_str":"587939881730473984","source_user_id":2261231306,"source_user_id_str":"2261231306"},{"id":587939856946311168,"id_str":"587939856946311168","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1KUMAAA7pG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1KUMAAA7pG.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":587939881730473984,"source_status_id_str":"587939881730473984","source_user_id":2261231306,"source_user_id_str":"2261231306"},{"id":587939856950566912,"id_str":"587939856950566912","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CCjIL1LVIAArI3Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CCjIL1LVIAArI3Z.jpg","url":"http:\/\/t.co\/EwG09KdtyO","display_url":"pic.twitter.com\/EwG09KdtyO","expanded_url":"http:\/\/twitter.com\/723natsumi_okmt\/status\/587939881730473984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}},"source_status_id":587939881730473984,"source_status_id_str":"587939881730473984","source_user_id":2261231306,"source_user_id_str":"2261231306"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979666"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657452830720,"id_str":"663727657452830720","text":"@agencheesy hello, I wonder if you have a slot for me, perhaps?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3671350873,"in_reply_to_user_id_str":"3671350873","in_reply_to_screen_name":"agencheesy","user":{"id":3272358846,"id_str":"3272358846","name":"park","screen_name":"iChanyeoI","location":null,"url":"http:\/\/instagram.com\/real__pcy","description":"[ nsfw ] in charge of flame.","protected":false,"verified":false,"followers_count":141,"friends_count":80,"listed_count":2,"favourites_count":165,"statuses_count":7661,"created_at":"Thu Jul 09 01:39:27 +0000 2015","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663195602038030336\/EVXJCMc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663195602038030336\/EVXJCMc7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272358846\/1446447701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"agencheesy","name":"cheesy.","id":3671350873,"id_str":"3671350873","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979657"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657457049600,"id_str":"663727657457049600","text":"@momoe03mja \n\u4e45\u3057\u3076\u308a\u306b\u547c\u3093\u3067\u307f\u305f(\u0e51\u00af\u03c9\u00af\u0e51)\n\u307f\u3093\u306a\u3067\u307e\u305f\u904a\u3093\u3067\u307f\u305f\u3044\ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727096254984193,"in_reply_to_status_id_str":"663727096254984193","in_reply_to_user_id":550805609,"in_reply_to_user_id_str":"550805609","in_reply_to_screen_name":"momoe03mja","user":{"id":2614708428,"id_str":"2614708428","name":"\u3042\u3059\u307f\u3093\u2721\u3042\u3063\u3061\u3085\u8a95\u751f\u65e5@\u73b2\u685cdr\u671f","screen_name":"rjshtmmt","location":"8\/30\u5352\u30b3\u30f3","url":"http:\/\/twpf.jp\/rjshtmmt","description":"\u677e\u4e95\u73b2\u5948\u611b\/\u73b2\u685c\u611b\/\u73b2\u226b\u9eba\/\u3058\u3085\u308a\u308c\u306a\u30af\u30e9\u30b9\u30bf\/SKE\u7bb1\u63a8\u3057\/\u672a\u6765\u6c38\u52ab\u677e\u4e95\u73b2\u5948\u795e\u63a8\u3057\/\u677e\u4e95\u73e0\u7406\u5948\/\u9ad8\u67f3\u660e\u97f3\/\u5927\u77e2\u771f\u90a3\/\u9ad9\u5bfa\u6c99\u83dc\/\u9ad9\u7551\u7d50\u5e0c\/\u7530\u4e2d\u7f8e\u4e45\/\u77e2\u5439\u5948\u5b50\/\u77e2\u5009\u6953\u5b50\/\u5800\u672a\u592e\u5948\/\u6a2a\u5c71\u7531\u4f9d\/\u6a2a\u5c71\u7d50\u8863\/\u6a4b\u672c\u74b0\u5948\/\u4e09\u4ee3\u76ee\/Flower\/\u5927\u5207\u3067\u5927\u4e8b\u306a\u4eba(@Yu1024M)(@koto07rena)\u306e\u4fdd\u8b77\u8005","protected":false,"verified":false,"followers_count":427,"friends_count":288,"listed_count":17,"favourites_count":20162,"statuses_count":58789,"created_at":"Thu Jul 10 03:48:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663665977746325505\/n3FKVC00_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663665977746325505\/n3FKVC00_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614708428\/1446976037","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"momoe03mja","name":"\u3082\u3082\u3048","id":550805609,"id_str":"550805609","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979658"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657452859392,"id_str":"663727657452859392","text":"RT @FindCalumsButt: \ud83d\ude0f https:\/\/t.co\/0rTmF5WPzL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":773718552,"id_str":"773718552","name":"Soh Hui","screen_name":"Huang_Soh_Hui","location":"Norwich, UK \/ Singapore","url":"http:\/\/instagram.com\/Huang_Soh_Hui","description":"i'm so lost, its scary","protected":false,"verified":false,"followers_count":1273,"friends_count":1940,"listed_count":5,"favourites_count":46759,"statuses_count":44965,"created_at":"Wed Aug 22 13:51:36 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3E8F2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"7FE6FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660111171706466304\/Z59XVsaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660111171706466304\/Z59XVsaw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/773718552\/1446217741","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:27:10 +0000 2015","id":663498021615857664,"id_str":"663498021615857664","text":"\ud83d\ude0f https:\/\/t.co\/0rTmF5WPzL","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2683826243,"id_str":"2683826243","name":"Calum's Butt","screen_name":"FindCalumsButt","location":"I am an Ashton girl. ","url":"http:\/\/findcalumsbutt.tumblr.com","description":"\u265b Just 'cause Calum's butt is worth finding \u265b You will find me in every picture i tweet","protected":false,"verified":false,"followers_count":27542,"friends_count":27199,"listed_count":40,"favourites_count":11646,"statuses_count":22808,"created_at":"Mon Jul 07 16:23:37 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644543619316191232\/_Exc4AJW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644543619316191232\/_Exc4AJW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2683826243\/1442506148","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":59,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663497998610120704,"id_str":"663497998610120704","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","url":"https:\/\/t.co\/0rTmF5WPzL","display_url":"pic.twitter.com\/0rTmF5WPzL","expanded_url":"http:\/\/twitter.com\/FindCalumsButt\/status\/663498021615857664\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":282,"resize":"fit"},"medium":{"w":586,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663497998610120704,"id_str":"663497998610120704","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","url":"https:\/\/t.co\/0rTmF5WPzL","display_url":"pic.twitter.com\/0rTmF5WPzL","expanded_url":"http:\/\/twitter.com\/FindCalumsButt\/status\/663498021615857664\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":282,"resize":"fit"},"medium":{"w":586,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FindCalumsButt","name":"Calum's Butt","id":2683826243,"id_str":"2683826243","indices":[3,18]}],"symbols":[],"media":[{"id":663497998610120704,"id_str":"663497998610120704","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","url":"https:\/\/t.co\/0rTmF5WPzL","display_url":"pic.twitter.com\/0rTmF5WPzL","expanded_url":"http:\/\/twitter.com\/FindCalumsButt\/status\/663498021615857664\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":282,"resize":"fit"},"medium":{"w":586,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663498021615857664,"source_status_id_str":"663498021615857664","source_user_id":2683826243,"source_user_id_str":"2683826243"}]},"extended_entities":{"media":[{"id":663497998610120704,"id_str":"663497998610120704","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU36hRWwAAI8Nc.jpg","url":"https:\/\/t.co\/0rTmF5WPzL","display_url":"pic.twitter.com\/0rTmF5WPzL","expanded_url":"http:\/\/twitter.com\/FindCalumsButt\/status\/663498021615857664\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":282,"resize":"fit"},"medium":{"w":586,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663498021615857664,"source_status_id_str":"663498021615857664","source_user_id":2683826243,"source_user_id_str":"2683826243"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079979657"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486385153,"id_str":"663727657486385153","text":"@teros0221 \u8ab0\u3060\u3088wwwww\u6700\u5f8c\u306e\u3057 \u3057\u304b\u5408\u3063\u3066\u306a\u3044\u305e\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727577408794624,"in_reply_to_status_id_str":"663727577408794624","in_reply_to_user_id":568248371,"in_reply_to_user_id_str":"568248371","in_reply_to_screen_name":"teros0221","user":{"id":530832197,"id_str":"530832197","name":"\u306f\u308b_@\u30d7\u30ec\u30bc\u30f3\u30c8\u4f01\u753b","screen_name":"strawberry_dihk","location":"\u5341\u56db\u677e\u306e\u8896\u306e\u4e2d","url":"http:\/\/twpf.jp\/strawberry_dihk","description":"\u53a8\u4e8c\u4f01\u753b\u3055\u3093\u3068\u87f9\u597d\u304d\u3055\u3093\u3068\u6700\u7d42\u5175\u5668\u306a\u4eba\u9054\u304c\u7279\u306b\u597d\u304d\u3067\u3059\u3002 \u304a\u7d75\u304b\u304d\u7528\u3010@haru_oekk \u3011 \u30d8\u30c3\u30c0\u30fc*\u3081\u3081\u3055\u3093 icon\u306f\u81ea\u4f5c\u3002","protected":false,"verified":false,"followers_count":350,"friends_count":157,"listed_count":28,"favourites_count":1569,"statuses_count":70771,"created_at":"Tue Mar 20 02:09:44 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/674041050\/1e45555a518fa365bededfc3a3f42647.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/674041050\/1e45555a518fa365bededfc3a3f42647.gif","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656003704680681473\/AZZC36Rz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656003704680681473\/AZZC36Rz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/530832197\/1432402288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teros0221","name":"\u0394\u30c6\u30ed\u30b9(`\uff65\u03c9\uff65\u00b4)","id":568248371,"id_str":"568248371","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469632517,"id_str":"663727657469632517","text":"RT @ClownRuki: \ud6c4\ud6c4 \uadf8\ub7fc \uc62c\ub824\ubcf4\uc2e4\uae4c\uc694\n\uc5ec\ub7ec\ubd84\uc758 \uc6b4\ube68\uc744 \ud14c\uc2a4\ud2b8\ud558\ub294 \uce58\ud0a8\uc774\ubca4\ud2b8 \uc624\ud508\ud569\ub2c8\ub2e4 \uc774\ub54c \ud544\uc694\ud55c\uac74 RT\ud558\ub098\ubfd0!! \n\ucd1d \ub2f9\ucca8\uc790\ub294 3\uba85 \n\ubb3c\ub860 1000RT\uac00 \ub298\uc5b4\ub0a0\ub54c\ub9c8\ub2e4 1\uba85\uc774 \ub354\ub298\uc5b4\ub0a9\ub2c8\ub2e4\n\ub2f9\ubc1c\uc740 \uc218\uc694\uc77c \ubc2411\uc2dc59\ubd84! http:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225018476,"id_str":"3225018476","name":"\ubc18\ub3d9\uacb0 \uc628\uc810","screen_name":"onon0244","location":null,"url":null,"description":"\ub300\ub3c4 \ub9c8\uc560 \ubbf8\uc784 \uba54\ub7f0 \uc790\uce90 \uc774\ubcc4\uc740 \ube14\uc5b8\ube14","protected":false,"verified":false,"followers_count":174,"friends_count":152,"listed_count":0,"favourites_count":3572,"statuses_count":6854,"created_at":"Sun May 24 08:50:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663019799165800448\/S8t9pR0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663019799165800448\/S8t9pR0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225018476\/1446258477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jan 19 15:39:28 +0000 2015","id":557200676921438208,"id_str":"557200676921438208","text":"\ud6c4\ud6c4 \uadf8\ub7fc \uc62c\ub824\ubcf4\uc2e4\uae4c\uc694\n\uc5ec\ub7ec\ubd84\uc758 \uc6b4\ube68\uc744 \ud14c\uc2a4\ud2b8\ud558\ub294 \uce58\ud0a8\uc774\ubca4\ud2b8 \uc624\ud508\ud569\ub2c8\ub2e4 \uc774\ub54c \ud544\uc694\ud55c\uac74 RT\ud558\ub098\ubfd0!! \n\ucd1d \ub2f9\ucca8\uc790\ub294 3\uba85 \n\ubb3c\ub860 1000RT\uac00 \ub298\uc5b4\ub0a0\ub54c\ub9c8\ub2e4 1\uba85\uc774 \ub354\ub298\uc5b4\ub0a9\ub2c8\ub2e4\n\ub2f9\ubc1c\uc740 \uc218\uc694\uc77c \ubc2411\uc2dc59\ubd84! http:\/\/t.co\/ZRgGEBj7pZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":722128981,"id_str":"722128981","name":"\uce58\ud0a8\uc7a5\uc778 Ruki","screen_name":"ClownRuki","location":null,"url":null,"description":"\uce58\ud0a8 \ub098\ub214\ud558\ub294 \uc789\uc5ec\ub2dd\uac90\uc785\ub2c8\ub2e4\/ \ub9e4\uc8fc \ubaa9\uc694\uc77c \uc774\ubca4\ud2b8 \uc624\ud508 \uae08\uc694\uc77c \uc774\ubca4\ud2b8\ub9c8\uac10\/\uc218\ub7c9\uc740 \uc5b8\uc81c\ub098 \ud55c\ub9c8\ub9ac(\uac00\ub054 \uadf8 \uc774\uc0c1)","protected":false,"verified":false,"followers_count":4535,"friends_count":333,"listed_count":7,"favourites_count":148,"statuses_count":82237,"created_at":"Sat Jul 28 12:54:43 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/762514489\/e8b9ecde55b1392c8f046f36ef6396a0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/762514489\/e8b9ecde55b1392c8f046f36ef6396a0.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652515796686540800\/20IqRvpl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652515796686540800\/20IqRvpl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/722128981\/1427852017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7416,"favorite_count":119,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":557200650316955649,"id_str":"557200650316955649","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":557200650316955649,"id_str":"557200650316955649","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":557200664409804801,"id_str":"557200664409804801","indices":[114,136],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTDVbCEAECF_g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTDVbCEAECF_g.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"large":{"w":1023,"h":622,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ClownRuki","name":"\uce58\ud0a8\uc7a5\uc778 Ruki","id":722128981,"id_str":"722128981","indices":[3,13]}],"symbols":[],"media":[{"id":557200650316955649,"id_str":"557200650316955649","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":557200676921438208,"source_status_id_str":"557200676921438208","source_user_id":722128981,"source_user_id_str":"722128981"}]},"extended_entities":{"media":[{"id":557200650316955649,"id_str":"557200650316955649","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTCg7CQAEOtmz.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":557200676921438208,"source_status_id_str":"557200676921438208","source_user_id":722128981,"source_user_id_str":"722128981"},{"id":557200664409804801,"id_str":"557200664409804801","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B7uTDVbCEAECF_g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B7uTDVbCEAECF_g.jpg","url":"http:\/\/t.co\/ZRgGEBj7pZ","display_url":"pic.twitter.com\/ZRgGEBj7pZ","expanded_url":"http:\/\/twitter.com\/ClownRuki\/status\/557200676921438208\/photo\/1","type":"photo","sizes":{"large":{"w":1023,"h":622,"resize":"fit"},"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"}},"source_status_id":557200676921438208,"source_status_id_str":"557200676921438208","source_user_id":722128981,"source_user_id_str":"722128981"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657452859393,"id_str":"663727657452859393","text":"\u3042\u308c\u306f\u307e\u3055\u304b\u30fb\u30fb\u30fb\n\n\u3000(\u3000\u3000 ) ( * )\n\u3000\/\u3000 \/\u30fd\u30ce \\ \\\n\u30ce\uffe3\u309d < \uffe3\u30fd\n\n \uff3c\uff8a\uff9e\uff6f\uff0f\n\n\u30fd( '\u03c9' ) ('\u03c9' )\u30ce \n \u3000\/\u3000 \/\u30fd\u30ce \\ \\\n < \uffe3\u30fd \u30ce\uffe3@pulse_takane \uff01","source":"\u003ca href=\"http:\/\/twitter.com\/harurinmain874\" rel=\"nofollow\"\u003eShootingStar .\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172589388,"id_str":"172589388","name":"\u967d\u96f2\u661f\u7a7a\u307f\u304f\u308b(\u055e\u0629\u06bc\u25d4)","screen_name":"harurinmain874","location":"\u30d5\u30a9\u30ed\u30d0\u307b\u3057\u3044\u4eba\u306f\u30ea\u30d7\u304f\u3060\u3055\u3044","url":"http:\/\/twpf.jp\/harurinmain874","description":"\u9244\u9053\/\u30d1\u30af\u30c4\u30a4\/\u967d\u96f2\u4f1a\/\u307f\u3087\u3093\u56e3 \u30af\u30bd\u30ea\u30d7\u9001\u3089\u306a\u3044\u3068\uff8c\uff6b\uff9b\uff8a\uff9e\u3057\u307e\u305b\u3093\u3002 (\u6deb\u5922\u8981\u7d20\u306f)\u306a\u3044\u3067\u3059 \u6d77\u5916\u3068\u696d\u8005\u306f\u5e30\u308c \u4eca\u65e5\u3082TL\u8352\u3089\u3057\u307e\u3059 \u672c\u57a2 @rinrinpana12110\n\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u306b\u3053\u3060\u308f\u308b\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3053\u3068\u3092\u304a\u52e7\u3081\u3044\u305f\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":1646,"friends_count":1719,"listed_count":48,"favourites_count":22537,"statuses_count":57344,"created_at":"Fri Jul 30 02:30:45 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"4DC232","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"2FD67A","profile_sidebar_border_color":"26C949","profile_sidebar_fill_color":"1FDB38","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610835769008091136\/eu9Q28XB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610835769008091136\/eu9Q28XB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172589388\/1434469518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pulse_takane","name":"\u3071\u308b\u3059P\uff20\u4e00\u5fdc\u30c6\u30b9\u30c8\u671f\u9593","id":3324115579,"id_str":"3324115579","indices":[131,144]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979657"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461391360,"id_str":"663727657461391360","text":"RT @zloudlouis: los reyes en la cima del mundo https:\/\/t.co\/ffm8rQ9ou1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122762471,"id_str":"3122762471","name":"Soph\/\/4 dias\u2661","screen_name":"Soffyck91","location":null,"url":null,"description":"Directioner\/Lovatic\/Bambina\/Beast\/Fangril\n is perfect.\nI'm not paper doll","protected":false,"verified":false,"followers_count":321,"friends_count":735,"listed_count":0,"favourites_count":27,"statuses_count":7121,"created_at":"Sat Mar 28 01:47:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623692743882207232\/4JkuD6Oo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623692743882207232\/4JkuD6Oo.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659865412360912897\/uJ5qcFI5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659865412360912897\/uJ5qcFI5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3122762471\/1445275632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:38:07 +0000 2015","id":663530976862146560,"id_str":"663530976862146560","text":"los reyes en la cima del mundo https:\/\/t.co\/ffm8rQ9ou1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212237453,"id_str":"212237453","name":"y\u0119n,,,","screen_name":"zloudlouis","location":"ecuador","url":"http:\/\/www.ask.fm\/zaynperfx","description":":\uff65\uff9f\u2727till the end we are one direction and we are here to stay:\uff65\uff9f\u2727 welcome to the badlands ,,,","protected":false,"verified":false,"followers_count":22239,"friends_count":6998,"listed_count":70,"favourites_count":9589,"statuses_count":81055,"created_at":"Fri Nov 05 14:29:13 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556818884552978433\/7OzgPLF5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556818884552978433\/7OzgPLF5.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663479199819300865\/C3x9yc4-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663479199819300865\/C3x9yc4-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212237453\/1447020953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663392585289826304,"id_str":"663392585289826304","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","url":"https:\/\/t.co\/ffm8rQ9ou1","display_url":"pic.twitter.com\/ffm8rQ9ou1","expanded_url":"http:\/\/twitter.com\/TheHarryNews\/status\/663392615602196480\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":219,"resize":"fit"},"medium":{"w":500,"h":219,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663392615602196480,"source_status_id_str":"663392615602196480","source_user_id":3195703010,"source_user_id_str":"3195703010"}]},"extended_entities":{"media":[{"id":663392585289826304,"id_str":"663392585289826304","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","url":"https:\/\/t.co\/ffm8rQ9ou1","display_url":"pic.twitter.com\/ffm8rQ9ou1","expanded_url":"http:\/\/twitter.com\/TheHarryNews\/status\/663392615602196480\/photo\/1","type":"animated_gif","sizes":{"large":{"w":500,"h":219,"resize":"fit"},"medium":{"w":500,"h":219,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663392615602196480,"source_status_id_str":"663392615602196480","source_user_id":3195703010,"source_user_id_str":"3195703010","video_info":{"aspect_ratio":[500,219],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTYCqDUAAABBdA.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zloudlouis","name":"y\u0119n,,,","id":212237453,"id_str":"212237453","indices":[3,14]}],"symbols":[],"media":[{"id":663392585289826304,"id_str":"663392585289826304","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","url":"https:\/\/t.co\/ffm8rQ9ou1","display_url":"pic.twitter.com\/ffm8rQ9ou1","expanded_url":"http:\/\/twitter.com\/TheHarryNews\/status\/663392615602196480\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":219,"resize":"fit"},"medium":{"w":500,"h":219,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663392615602196480,"source_status_id_str":"663392615602196480","source_user_id":3195703010,"source_user_id_str":"3195703010"}]},"extended_entities":{"media":[{"id":663392585289826304,"id_str":"663392585289826304","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTYCqDUAAABBdA.png","url":"https:\/\/t.co\/ffm8rQ9ou1","display_url":"pic.twitter.com\/ffm8rQ9ou1","expanded_url":"http:\/\/twitter.com\/TheHarryNews\/status\/663392615602196480\/photo\/1","type":"animated_gif","sizes":{"large":{"w":500,"h":219,"resize":"fit"},"medium":{"w":500,"h":219,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663392615602196480,"source_status_id_str":"663392615602196480","source_user_id":3195703010,"source_user_id_str":"3195703010","video_info":{"aspect_ratio":[500,219],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTYCqDUAAABBdA.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473839104,"id_str":"663727657473839104","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/fcCHObA96i","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248940858,"id_str":"248940858","name":"\u2022\u0438\u03b9\u043a\u043a\u03b9\u043c\u03b1g\u0455 \ufe0f\u2022","screen_name":"nikkimags23","location":"new york","url":null,"description":"You look lost follow me ;*\ufe0f\u2020","protected":false,"verified":false,"followers_count":779,"friends_count":1974,"listed_count":0,"favourites_count":1568,"statuses_count":11147,"created_at":"Tue Feb 08 01:22:30 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/733588569\/52d8c119b7f5a7d5255a4b507e126d04.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/733588569\/52d8c119b7f5a7d5255a4b507e126d04.jpeg","profile_background_tile":true,"profile_link_color":"109BE6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768562554572800\/WP5PdGXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768562554572800\/WP5PdGXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248940858\/1439785277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fcCHObA96i","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465589760,"id_str":"663727657465589760","text":"\"Legion Class Preview Series: Priest\" https:\/\/t.co\/bw3iDw7iSZ #blizzard #Worldofwarcraft #WOW","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187875926,"id_str":"187875926","name":"Canoneero","screen_name":"Canoneero","location":"Moscow","url":"http:\/\/canoneero.tumblr.com\/","description":null,"protected":false,"verified":false,"followers_count":446,"friends_count":0,"listed_count":42,"favourites_count":155,"statuses_count":11562,"created_at":"Tue Sep 07 11:33:14 +0000 2010","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/319742531\/Canoneero_banksy2222.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/319742531\/Canoneero_banksy2222.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530407981666430976\/CMbP6d5k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530407981666430976\/CMbP6d5k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187875926\/1415294109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"blizzard","indices":[62,71]},{"text":"Worldofwarcraft","indices":[72,88]},{"text":"WOW","indices":[89,93]}],"urls":[{"url":"https:\/\/t.co\/bw3iDw7iSZ","expanded_url":"http:\/\/ift.tt\/1WIzhb2","display_url":"ift.tt\/1WIzhb2","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979660"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657490644994,"id_str":"663727657490644994","text":"https:\/\/t.co\/ik5970KsBx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2880817892,"id_str":"2880817892","name":"\u307e\u308d\u3061\u3083\u3042","screen_name":"malo_niiii","location":"\u304a\u82b1\u7d44","url":null,"description":"\u4eba\u898b\u77e5\u308a\u3002","protected":false,"verified":false,"followers_count":99,"friends_count":167,"listed_count":0,"favourites_count":1478,"statuses_count":1746,"created_at":"Tue Oct 28 13:45:37 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642721561766551554\/3q59OZpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642721561766551554\/3q59OZpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2880817892\/1445939124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ik5970KsBx","expanded_url":"https:\/\/youtu.be\/TYAXmhvt0Vc","display_url":"youtu.be\/TYAXmhvt0Vc","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079979666"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469804544,"id_str":"663727657469804544","text":"@HadeerElbaz5 dh yafhjgvsghfghs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722018592989184,"in_reply_to_status_id_str":"663722018592989184","in_reply_to_user_id":3728287995,"in_reply_to_user_id_str":"3728287995","in_reply_to_screen_name":"HadeerElbaz5","user":{"id":3715097535,"id_str":"3715097535","name":"Salmana","screen_name":"Salmanamoham6","location":null,"url":null,"description":"125.","protected":false,"verified":false,"followers_count":97,"friends_count":72,"listed_count":0,"favourites_count":222,"statuses_count":1660,"created_at":"Sun Sep 20 06:56:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662286393566232576\/5syjG78j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662286393566232576\/5syjG78j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3715097535\/1446738254","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HadeerElbaz5","name":"hadeer","id":3728287995,"id_str":"3728287995","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486413824,"id_str":"663727657486413824","text":"@8487Ag \n\n\u4e2d3\u304b\u2757\ufe0f\n\u3044\u3084\u3044\u3084\u3001\u79c1\u3082 \u9ad83\u3060\u3051\u3069\n\u5b50\u4f9b\u3063\u307d\u3044\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718348241244161,"in_reply_to_status_id_str":"663718348241244161","in_reply_to_user_id":4008957974,"in_reply_to_user_id_str":"4008957974","in_reply_to_screen_name":"8487Ag","user":{"id":3793467434,"id_str":"3793467434","name":"k a n a \u2764\ufe0e\uff0817\uff09\u00ae","screen_name":"___ryttt07","location":"\u6dbc \u592a \u304f \u3093 \u263b \u2661","url":null,"description":"\u6dbc \u592a \u304f \u3093 \u2764\ufe0e \u3058 \u3047 \u306d \u2764\ufe0e \u306f \u3074 \u306d \u3059 \u3007follow \u2192 comment please \u2364\u20dd \u2661","protected":false,"verified":false,"followers_count":81,"friends_count":113,"listed_count":4,"favourites_count":377,"statuses_count":712,"created_at":"Mon Oct 05 15:30:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692612084207617\/TiNoX7f5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692612084207617\/TiNoX7f5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3793467434\/1444088831","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"8487Ag","name":"NATSUHAMA_YEAH","id":4008957974,"id_str":"4008957974","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657473871872,"id_str":"663727657473871872","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/FwgSJAP4hf","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143727702,"id_str":"143727702","name":"Denice \ue003","screen_name":"iamdenicenicole","location":null,"url":"http:\/\/facebook.com\/denicenicoletengco","description":"| Augustinian | Escolarian | Angelite | snapchat: denicetengco | Instagram: denicenicoletengco","protected":false,"verified":false,"followers_count":179,"friends_count":135,"listed_count":0,"favourites_count":2080,"statuses_count":22137,"created_at":"Fri May 14 07:08:14 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/774535030\/664969b6d8f528b7fb4f4e60a1fc0f80.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/774535030\/664969b6d8f528b7fb4f4e60a1fc0f80.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629522353110675456\/RcVOj4K-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629522353110675456\/RcVOj4K-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143727702\/1435364685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FwgSJAP4hf","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979662"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657452830721,"id_str":"663727657452830721","text":"Make money while you sleep with AUTOMATIC blog! https:\/\/t.co\/78b8UhAWs1 #blogger #makemoney #adsense #seo # MIT's shape-s...","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2793391738,"id_str":"2793391738","name":"Full RSS Feeds","screen_name":"FullRssFeeds","location":"WorldWide","url":"http:\/\/bit.ly\/1IpWPZk","description":"High performance full rss feeds generator http:\/\/bit.ly\/1IpWPZk","protected":false,"verified":false,"followers_count":889,"friends_count":1537,"listed_count":309,"favourites_count":500,"statuses_count":9998,"created_at":"Tue Sep 30 02:17:21 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516777028255617028\/Nga6aARl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516777028255617028\/Nga6aARl_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"blogger","indices":[72,80]},{"text":"makemoney","indices":[81,91]},{"text":"adsense","indices":[92,100]},{"text":"seo","indices":[101,105]}],"urls":[{"url":"https:\/\/t.co\/78b8UhAWs1","expanded_url":"http:\/\/autopilotblogger.fullcontentrss.com","display_url":"autopilotblogger.fullcontentrss.com","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979657"} +{"delete":{"status":{"id":655863794644701185,"id_str":"655863794644701185","user_id":3415945883,"user_id_str":"3415945883"},"timestamp_ms":"1447079979796"}} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657486434308,"id_str":"663727657486434308","text":"RT @KinggKimberly: Yup https:\/\/t.co\/1d34WmfOKm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704432722,"id_str":"704432722","name":"Joanna","screen_name":"Joanna34_","location":null,"url":null,"description":"insta | @joannahernandez_","protected":false,"verified":false,"followers_count":381,"friends_count":235,"listed_count":0,"favourites_count":2315,"statuses_count":7267,"created_at":"Tue Oct 08 03:41:48 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639535911949217792\/64_lJplQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639535911949217792\/64_lJplQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704432722\/1446957281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:19:25 +0000 2015","id":663601769428074496,"id_str":"663601769428074496","text":"Yup https:\/\/t.co\/1d34WmfOKm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465205013,"id_str":"465205013","name":"King Kim","screen_name":"KinggKimberly","location":null,"url":null,"description":"keepupwme insta @KinggKim sc. @KinggKimberly","protected":false,"verified":false,"followers_count":557,"friends_count":295,"listed_count":1,"favourites_count":19728,"statuses_count":22806,"created_at":"Mon Jan 16 02:52:49 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663559426163392512\/98pWvb3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663559426163392512\/98pWvb3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465205013\/1447039947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663598641148465152,"quoted_status_id_str":"663598641148465152","quoted_status":{"created_at":"Mon Nov 09 06:06:59 +0000 2015","id":663598641148465152,"id_str":"663598641148465152","text":"Story of my life: I knew better but I did it anyway. \ud83d\ude05","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188230083,"id_str":"3188230083","name":"\u043c\u03b1\u044f\u03b9 \u2122\u2728","screen_name":"_lulunava","location":"Greensboro, NC","url":"https:\/\/Instagram.com\/_lulunava\/","description":"L\u2763|| De G\uff55\uff41\uff4e\uff41\uff4a\uff55\uff41\uff54\uff4f\u2728||Nursing\u2764\ufe0f","protected":false,"verified":false,"followers_count":1701,"friends_count":1923,"listed_count":1,"favourites_count":5787,"statuses_count":13085,"created_at":"Mon Apr 20 20:38:06 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663558152688914432\/sm85QGEB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663558152688914432\/sm85QGEB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188230083\/1446871306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1d34WmfOKm","expanded_url":"https:\/\/twitter.com\/_lulunava\/status\/663598641148465152","display_url":"twitter.com\/_lulunava\/stat\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1d34WmfOKm","expanded_url":"https:\/\/twitter.com\/_lulunava\/status\/663598641148465152","display_url":"twitter.com\/_lulunava\/stat\u2026","indices":[23,46]}],"user_mentions":[{"screen_name":"KinggKimberly","name":"King Kim","id":465205013,"id_str":"465205013","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079979665"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461256192,"id_str":"663727657461256192","text":"RT @udama1212: \u65b0\u7a2e\u306e\u30df\u30ce\u30e0\u30b7 https:\/\/t.co\/lAZJfOSyHx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1277533430,"id_str":"1277533430","name":"\u3051\u3093","screen_name":"kennichi_naka","location":null,"url":null,"description":"\u677e\u6238\u4e00\u4e2d3-1\/\u5343\u8449\u5546\u5927\u4ed8\u5c5eH\u7d44\/\u57fc\u5927\u7d4c\u6e08GT\u3000 \n\u3000\u30d0\u30ec\u540c\/\u677e\u6238\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\/Addict","protected":false,"verified":false,"followers_count":599,"friends_count":627,"listed_count":2,"favourites_count":267,"statuses_count":2795,"created_at":"Mon Mar 18 11:46:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663386634763669505\/2xDKmH6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663386634763669505\/2xDKmH6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277533430\/1446770704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:29:34 +0000 2015","id":663694919098322946,"id_str":"663694919098322946","text":"\u65b0\u7a2e\u306e\u30df\u30ce\u30e0\u30b7 https:\/\/t.co\/lAZJfOSyHx","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321769329,"id_str":"321769329","name":"\u3046\u3060\u307e","screen_name":"udama1212","location":"\u6771\u4eac\u90fd","url":"http:\/\/udama.jp\/","description":"\u732b\u30de\u30f3\u30ac\u5bb6\u3067\u3059\u3002\u300c\u732b\u306b\u3042\u308a\u304c\u3061\u306a\u3053\u3068\u300d\u9023\u8f09\u4e2d\u3002\u88cf\u30a2\u30ab\u306f@udama1212ura\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":131681,"friends_count":43914,"listed_count":2596,"favourites_count":3207,"statuses_count":34269,"created_at":"Wed Jun 22 03:10:58 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434945361556164608\/OSbacH8H.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434945361556164608\/OSbacH8H.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614702104658100224\/4jT7Yurt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614702104658100224\/4jT7Yurt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321769329\/1446762314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1149,"favorite_count":2346,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lAZJfOSyHx","expanded_url":"https:\/\/vine.co\/v\/elhlZpjDDMH","display_url":"vine.co\/v\/elhlZpjDDMH","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lAZJfOSyHx","expanded_url":"https:\/\/vine.co\/v\/elhlZpjDDMH","display_url":"vine.co\/v\/elhlZpjDDMH","indices":[23,46]}],"user_mentions":[{"screen_name":"udama1212","name":"\u3046\u3060\u307e","id":321769329,"id_str":"321769329","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657469612032,"id_str":"663727657469612032","text":"@bipinfw @Joe5_9 - me no vetti ra.... Dorai full vetti tomo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724746907869184,"in_reply_to_status_id_str":"663724746907869184","in_reply_to_user_id":75465334,"in_reply_to_user_id_str":"75465334","in_reply_to_screen_name":"bipinfw","user":{"id":45915994,"id_str":"45915994","name":"Nikhil Kariappa","screen_name":"nikh7","location":"Bangalore","url":"http:\/\/facebook.com\/NIKHIL.KARIAPPA.PHOTOGRAPHY","description":"I\u2019m http:\/\/inarticulate.express myself with my \nI love ManchesterUnited\u26bd,food,sports,travel & offroading.But u gotta Live u know :)","protected":false,"verified":false,"followers_count":221,"friends_count":104,"listed_count":1,"favourites_count":110,"statuses_count":114,"created_at":"Tue Jun 09 19:17:59 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/720283992\/cd596bcf8f5817ce72b0e5eb8db15775.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/720283992\/cd596bcf8f5817ce72b0e5eb8db15775.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000703224477\/114ea64652bcf2e85f8c14879f1bdffd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000703224477\/114ea64652bcf2e85f8c14879f1bdffd_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bipinfw","name":"BIPIN FERNANDEZ","id":75465334,"id_str":"75465334","indices":[0,8]},{"screen_name":"Joe5_9","name":"Josephine Sequeira ","id":1708331136,"id_str":"1708331136","indices":[9,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079979661"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465417728,"id_str":"663727657465417728","text":"@SkywardWing favorite charcater is axel\/lea (sora is my second favorite)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":74606744,"in_reply_to_user_id_str":"74606744","in_reply_to_screen_name":"SkywardWing","user":{"id":1909729164,"id_str":"1909729164","name":"Mykaila Shakespeare","screen_name":"MNSprime21","location":"Here...","url":"http:\/\/mns-prime-21.deviantart.com","description":"Artist, couch-potato, Transformers nerd, big optimus prime fan, loves anime, movie lover, voice-actor appreciator, etc.","protected":false,"verified":false,"followers_count":104,"friends_count":102,"listed_count":0,"favourites_count":496,"statuses_count":114,"created_at":"Fri Sep 27 01:42:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481826105272172546\/XHhYd8t-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481826105272172546\/XHhYd8t-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1909729164\/1435120986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SkywardWing","name":"SkywardWing","id":74606744,"id_str":"74606744","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979660"} +{"delete":{"status":{"id":663712490870607872,"id_str":"663712490870607872","user_id":3288869270,"user_id_str":"3288869270"},"timestamp_ms":"1447079979835"}} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657453006848,"id_str":"663727657453006848","text":"#porti me olvido del mundo.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3601757776,"id_str":"3601757776","name":"Pepe Mendez","screen_name":"Pepe_25Mendez","location":null,"url":null,"description":"No trates de ser amado a cualquier precio, porque el Amor no tiene precio. #ManuscritodeAccra","protected":false,"verified":false,"followers_count":48,"friends_count":325,"listed_count":0,"favourites_count":0,"statuses_count":1277,"created_at":"Wed Sep 09 20:01:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642736479366709248\/73zOzY8B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642736479366709248\/73zOzY8B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3601757776\/1442075294","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"porti","indices":[0,6]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979657"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657482194944,"id_str":"663727657482194944","text":"Dos personas resultaron heridas y una falleci\u00f3 durante un tiroteo en Manhattan | https:\/\/t.co\/7DarxTLDXG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2493510607,"id_str":"2493510607","name":"NoticiasMX365","screen_name":"NoticiasMx365","location":"M\u00e9xico","url":"http:\/\/www.noticiasmx365.com","description":"Las Noticias de M\u00e9xico on-line. 365 D\u00edas al A\u00f1o.","protected":false,"verified":false,"followers_count":3811,"friends_count":3125,"listed_count":24,"favourites_count":21845,"statuses_count":65011,"created_at":"Tue May 13 20:41:13 +0000 2014","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"87CDF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496463132210905088\/wWid9Dtx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496463132210905088\/wWid9Dtx.jpeg","profile_background_tile":false,"profile_link_color":"1F6680","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497198800784461824\/_pZeSAhQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497198800784461824\/_pZeSAhQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2493510607\/1407393334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7DarxTLDXG","expanded_url":"http:\/\/goo.gl\/wLoi0o","display_url":"goo.gl\/wLoi0o","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079979664"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657461219329,"id_str":"663727657461219329","text":"RT @myiuwia_33: \u57fc\u7389\u306b\u3044\u308b\u3088\u30fc\uff01\n\u308a\u3087\u30fc\u304f\u3093\u3068\u6700\u5bc4\u308a\u540c\u3058\u3060\u3088\u30fc\uff01\n\u8a00\u3063\u3066\u3057\u307e\u3048\u3070\u308a\u3087\u30fc\u304f\u3093\u306e\u304a\u5bb6\u3068\u3042\u305f\u3057\u306e\u304a\u5bb6\uff15\u5206\u304f\u3089\u3044\u306e\u8ddd\u96e2\u3060\u3088\u30fc\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3270157218,"id_str":"3270157218","name":"\u30b3\u30a6@\u521d\u4ee3W.I.H","screen_name":"KoH__3679mi","location":"\u65e5\u672c\u306e\u3069\u3063\u304b\u3057\u3089","url":null,"description":"\u59271\u306e\u4ee3\u3002miwa\u597d\u304d\u3002\u3068\u308a\u3042\u3048\u305a\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307f\u308c\u3070\u3069\u3093\u306a\u4eba\u9593\u304b\u308f\u304b\u308a\u307e\u3059\u3002\u306f\u3044\u3002\u3068\u308a\u3042\u3048\u305a55\u4eba\u76ee\u3089\u3057\u3044\u3067\u3059\u3002\u304b\u3063\u3053\u3044\u3044\u3067\u3059\u3002[\u521d\u4ee3 W.I.H]","protected":false,"verified":false,"followers_count":418,"friends_count":402,"listed_count":26,"favourites_count":3528,"statuses_count":7380,"created_at":"Mon Jul 06 16:52:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648978888832319488\/EXul6Zup_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648978888832319488\/EXul6Zup_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270157218\/1446480409","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:02 +0000 2015","id":663727503156973568,"id_str":"663727503156973568","text":"\u57fc\u7389\u306b\u3044\u308b\u3088\u30fc\uff01\n\u308a\u3087\u30fc\u304f\u3093\u3068\u6700\u5bc4\u308a\u540c\u3058\u3060\u3088\u30fc\uff01\n\u8a00\u3063\u3066\u3057\u307e\u3048\u3070\u308a\u3087\u30fc\u304f\u3093\u306e\u304a\u5bb6\u3068\u3042\u305f\u3057\u306e\u304a\u5bb6\uff15\u5206\u304f\u3089\u3044\u306e\u8ddd\u96e2\u3060\u3088\u30fc\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492692711,"id_str":"2492692711","name":"\u3082\u3048\u307a\u30fc","screen_name":"myiuwia_33","location":null,"url":null,"description":"\u5927\uff11 \u5973C like\u27b3\ufe0e\ufe0e\ufe0emiwa\/YUI\/SID\/SHISHAMO\/\u30d1\u30b9\u30d4\u30a8 \u30c0\u30f3\u30ca\u261e\u3010@38miwa39_again\u3011 \u30c7\u30ec\u611b\u65b9\u261e\u3010@4ALXD4Kouta1 \u3011 (\u3075\u308f\/\u97ad\u6bdb\/\u30ed\u30ea\/\u307a\/\u3046\u306a\/\u30af\u30c3\u30d4\u30fc)\u65cf \u30e1\u30ed\u30f3\u30d1\u30f3\u540c\u76df \u307f\u3086\u304d\u3063\u3061\u3087\u3089\u3076\u3075\u3049\u30fc\u3048\u3070\u30fc\u2661","protected":false,"verified":false,"followers_count":863,"friends_count":826,"listed_count":17,"favourites_count":10090,"statuses_count":14052,"created_at":"Tue May 13 09:16:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566759406826569728\/Mq_hNkIH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566759406826569728\/Mq_hNkIH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492692711\/1426261891","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"myiuwia_33","name":"\u3082\u3048\u307a\u30fc","id":2492692711,"id_str":"2492692711","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079979659"} +{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657465593856,"id_str":"663727657465593856","text":"Inspiration #mode #fashion #style #lookbook https:\/\/t.co\/XnRgyPDVvz https:\/\/t.co\/F5YKwHzooG","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1606807297,"id_str":"1606807297","name":"inspiredfashion","screen_name":"inspiredfashio1","location":"Paris","url":"http:\/\/inspiredfashio1.tumblr.com","description":"Votre dose quotidienne \/ your daily inspiration #mode, #fashion, #style, #lookbook, #fitness, #foodporn, #healthy Tweets in French and in English","protected":false,"verified":false,"followers_count":2969,"friends_count":1974,"listed_count":177,"favourites_count":3,"statuses_count":446908,"created_at":"Fri Jul 19 21:17:41 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"090A0A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000158049736\/b74565b6af3ccaa5c883874ec67eb24a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000158049736\/b74565b6af3ccaa5c883874ec67eb24a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1606807297\/1400942091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mode","indices":[12,17]},{"text":"fashion","indices":[18,26]},{"text":"style","indices":[27,33]},{"text":"lookbook","indices":[34,43]}],"urls":[{"url":"https:\/\/t.co\/XnRgyPDVvz","expanded_url":"http:\/\/ift.tt\/1QdQSnc","display_url":"ift.tt\/1QdQSnc","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663727656450580480,"id_str":"663727656450580480","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyXZW4AAsOS1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyXZW4AAsOS1.jpg","url":"https:\/\/t.co\/F5YKwHzooG","display_url":"pic.twitter.com\/F5YKwHzooG","expanded_url":"http:\/\/twitter.com\/inspiredfashio1\/status\/663727657465593856\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":697,"resize":"fit"},"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":697,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727656450580480,"id_str":"663727656450580480","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyXZW4AAsOS1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyXZW4AAsOS1.jpg","url":"https:\/\/t.co\/F5YKwHzooG","display_url":"pic.twitter.com\/F5YKwHzooG","expanded_url":"http:\/\/twitter.com\/inspiredfashio1\/status\/663727657465593856\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":697,"resize":"fit"},"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":697,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079979660"} +{"delete":{"status":{"id":663727623902629888,"id_str":"663727623902629888","user_id":1715472818,"user_id_str":"1715472818"},"timestamp_ms":"1447079980391"}} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659852805,"id_str":"663727661659852805","text":"Mientras esperais, podeis ver los videos que hay en mi canal de @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1169674128,"id_str":"1169674128","name":"SeptionX","screen_name":"SeptionX","location":null,"url":"https:\/\/www.youtube.com\/user\/SeptionX","description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":77,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Mon Feb 11 18:35:47 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654670169021636609\/JMYj3MlM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654670169021636609\/JMYj3MlM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1169674128\/1444920518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[64,72]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980660"} +{"delete":{"status":{"id":663254439302533120,"id_str":"663254439302533120","user_id":3117175232,"user_id_str":"3117175232"},"timestamp_ms":"1447079980650"}} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661672460288,"id_str":"663727661672460288","text":"RT @grexillers: @soompi WHERES HELLO VENUS THEY DESERVE BETTER","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2985453470,"id_str":"2985453470","name":"BINNIE spoiler D-8","screen_name":"IBINNIEI","location":null,"url":null,"description":"THE LEGEND IS COMING BACK BABY","protected":false,"verified":false,"followers_count":274,"friends_count":765,"listed_count":5,"favourites_count":638,"statuses_count":22907,"created_at":"Fri Jan 16 10:00:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663013867786776577\/mK1aFq2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663013867786776577\/mK1aFq2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985453470\/1446604102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:54:50 +0000 2015","id":663384190654746625,"id_str":"663384190654746625","text":"@soompi WHERES HELLO VENUS THEY DESERVE BETTER","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663383647278383104,"in_reply_to_status_id_str":"663383647278383104","in_reply_to_user_id":17659206,"in_reply_to_user_id_str":"17659206","in_reply_to_screen_name":"soompi","user":{"id":3195633204,"id_str":"3195633204","name":"Gee","screen_name":"grexillers","location":null,"url":null,"description":"gsd sojin yura hyeri minah","protected":false,"verified":false,"followers_count":128,"friends_count":79,"listed_count":1,"favourites_count":1262,"statuses_count":8288,"created_at":"Thu May 14 21:11:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657245398591913984\/zsFV-7aB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657245398591913984\/zsFV-7aB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195633204\/1445534195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soompi","name":"Soompi","id":17659206,"id_str":"17659206","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"grexillers","name":"Gee","id":3195633204,"id_str":"3195633204","indices":[3,14]},{"screen_name":"soompi","name":"Soompi","id":17659206,"id_str":"17659206","indices":[16,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980663"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655674880,"id_str":"663727661655674880","text":"RT @herebyviciconte: Cuando se me apague el celular me voy a estudiar u.u #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139367375,"id_str":"4139367375","name":"Cami","screen_name":"MICAmpeonaa_","location":"Ciudad Aut\u00f3noma de Buenos Aire","url":null,"description":"Micaelista \u2665 Valores y Codigos\nVerde Tricampeon\n#EquipoVerde","protected":false,"verified":false,"followers_count":21,"friends_count":46,"listed_count":0,"favourites_count":11,"statuses_count":2186,"created_at":"Sun Nov 08 05:20:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:06 +0000 2015","id":663725507201081346,"id_str":"663725507201081346","text":"Cuando se me apague el celular me voy a estudiar u.u #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3053181881,"id_str":"3053181881","name":"orito","screen_name":"herebyviciconte","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2004,"friends_count":338,"listed_count":4,"favourites_count":4826,"statuses_count":43784,"created_at":"Sun Feb 22 17:04:16 +0000 2015","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF33CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720323351715840\/enOp_5ZE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720323351715840\/enOp_5ZE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3053181881\/1438465243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[53,68]},{"text":"LaDiosa","indices":[69,77]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[74,89]},{"text":"LaDiosa","indices":[90,98]}],"urls":[],"user_mentions":[{"screen_name":"herebyviciconte","name":"orito","id":3053181881,"id_str":"3053181881","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651468288,"id_str":"663727661651468288","text":"oii gente","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":567378811,"id_str":"567378811","name":"vah","screen_name":"demetrizinhaa","location":"fran - nanda ","url":"https:\/\/twitter.com\/justinbieber","description":"\u2728 o sil\u00eancio \u00e9 o choro mais alto de uma garota. ||@ddlovato||\u2022 se voc\u00ea tem um sonho, apenas acredite. ||@justinbieber||\u2022 nunca diga nunca ||@mileycyrus||\u2022 \u2728 -","protected":false,"verified":false,"followers_count":2685,"friends_count":2123,"listed_count":1,"favourites_count":5069,"statuses_count":20893,"created_at":"Mon Apr 30 17:02:00 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663452201520652288\/LVpm7ddz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663452201520652288\/LVpm7ddz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/567378811\/1446944384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661676646400,"id_str":"663727661676646400","text":"RT @CocaCola_NG: Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3402273573,"id_str":"3402273573","name":"FF Back Pls","screen_name":"snehgang","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":53,"listed_count":0,"favourites_count":3,"statuses_count":634,"created_at":"Tue Aug 04 06:16:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628450142899666944\/sGsA0S6T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628450142899666944\/sGsA0S6T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3402273573\/1438669429","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:54 +0000 2015","id":663702806558306306,"id_str":"663702806558306306","text":"Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https:\/\/t.co\/qyupXgefXe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636919693,"id_str":"636919693","name":"Coca-Cola Nigeria","screen_name":"CocaCola_NG","location":"Nigeria","url":"http:\/\/coca-cola.com.ng","description":"Official Twitter account for Coca-Cola Nigeria. Open a Coke, Open Happiness! http:\/\/facebook.com\/cocacola","protected":false,"verified":false,"followers_count":19707,"friends_count":385,"listed_count":34,"favourites_count":157,"statuses_count":4816,"created_at":"Mon Jul 16 11:58:37 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50535","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636919693\/1445520204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59b27337f38d658b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59b27337f38d658b.json","place_type":"country","name":"Nigeria","full_name":"Nigeria","country_code":"NG","country":"Nigeria","bounding_box":{"type":"Polygon","coordinates":[[[2.665436,4.197406],[2.665436,13.888115],[14.677795,13.888115],[14.677795,4.197406]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[5,11]},{"text":"CokeStudioAfrica","indices":[18,35]}],"urls":[],"user_mentions":[{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[71,80]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[87,98]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[22,28]},{"text":"CokeStudioAfrica","indices":[35,52]}],"urls":[],"user_mentions":[{"screen_name":"CocaCola_NG","name":"Coca-Cola Nigeria","id":636919693,"id_str":"636919693","indices":[3,15]},{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[88,97]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[104,115]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980664"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661664051200,"id_str":"663727661664051200","text":"RT @teamtoritas: h #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139367375,"id_str":"4139367375","name":"Cami","screen_name":"MICAmpeonaa_","location":"Ciudad Aut\u00f3noma de Buenos Aire","url":null,"description":"Micaelista \u2665 Valores y Codigos\nVerde Tricampeon\n#EquipoVerde","protected":false,"verified":false,"followers_count":21,"friends_count":46,"listed_count":0,"favourites_count":11,"statuses_count":2186,"created_at":"Sun Nov 08 05:20:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:46 +0000 2015","id":663725924584697856,"id_str":"663725924584697856","text":"h #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013358545,"id_str":"4013358545","name":"2 MESES","screen_name":"teamtoritas","location":"18 conchudas\u2661","url":null,"description":"Un saludo gigante gigante al team toritas que estan siempre y van a veces y las amo asi que un saludo a todas ellas- Micaela Viciconte\u2661","protected":false,"verified":false,"followers_count":1034,"friends_count":157,"listed_count":0,"favourites_count":837,"statuses_count":2212,"created_at":"Thu Oct 22 01:00:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661752513230741504\/J_wQd34h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661752513230741504\/J_wQd34h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013358545\/1446609045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[2,17]},{"text":"LaDiosa","indices":[18,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[19,34]},{"text":"LaDiosa","indices":[35,43]}],"urls":[],"user_mentions":[{"screen_name":"teamtoritas","name":"2 MESES","id":4013358545,"id_str":"4013358545","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661647269888,"id_str":"663727661647269888","text":"(\u0648\u0643\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u062a\u0633\u0639\u0629 \u0631\u0647\u0637 \u064a\u0641\u0633\u062f\u0648\u0646 \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \u0648\u0644\u0627 \u064a\u0635\u0644\u062d\u0648\u0646) [\u0627\u0644\u0646\u0645\u0644:48] http:\/\/qurani .tv","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1566652579,"id_str":"1566652579","name":"\u200b \u0645\u064a\u0651\u062c .","screen_name":"mej_q1","location":null,"url":"http:\/\/v.ht\/peVq","description":"\u0633\u0648\u064a\u062a \u0641\u0648\u0644\u0648 ? \u0623\u062f\u062e\u0644 \u0639 \u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0648\u0625\u0630\u0627 \u0623\u0639\u062c\u0628\u062a\u0643 \u0627\u0646\u0641\u0636\u0647\u0627 $'","protected":false,"verified":false,"followers_count":269,"friends_count":175,"listed_count":0,"favourites_count":872,"statuses_count":16511,"created_at":"Wed Jul 03 20:31:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453127185734565889\/QceRJVay_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453127185734565889\/QceRJVay_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1566652579\/1396868908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079980657"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659852806,"id_str":"663727661659852806","text":"RT @CocaCola_NG: Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1449192846,"id_str":"1449192846","name":"Sarah Temmy","screen_name":"SarahTemmy1","location":"Lagos, Nigeria","url":null,"description":"Am cool, Loving & Easy Going...","protected":false,"verified":false,"followers_count":63,"friends_count":152,"listed_count":0,"favourites_count":19,"statuses_count":804,"created_at":"Wed May 22 15:20:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622083123996696577\/J-9mhHWZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622083123996696577\/J-9mhHWZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1449192846\/1437150978","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:54 +0000 2015","id":663702806558306306,"id_str":"663702806558306306","text":"Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https:\/\/t.co\/qyupXgefXe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636919693,"id_str":"636919693","name":"Coca-Cola Nigeria","screen_name":"CocaCola_NG","location":"Nigeria","url":"http:\/\/coca-cola.com.ng","description":"Official Twitter account for Coca-Cola Nigeria. Open a Coke, Open Happiness! http:\/\/facebook.com\/cocacola","protected":false,"verified":false,"followers_count":19707,"friends_count":385,"listed_count":34,"favourites_count":157,"statuses_count":4816,"created_at":"Mon Jul 16 11:58:37 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50535","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636919693\/1445520204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59b27337f38d658b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59b27337f38d658b.json","place_type":"country","name":"Nigeria","full_name":"Nigeria","country_code":"NG","country":"Nigeria","bounding_box":{"type":"Polygon","coordinates":[[[2.665436,4.197406],[2.665436,13.888115],[14.677795,13.888115],[14.677795,4.197406]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[5,11]},{"text":"CokeStudioAfrica","indices":[18,35]}],"urls":[],"user_mentions":[{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[71,80]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[87,98]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[22,28]},{"text":"CokeStudioAfrica","indices":[35,52]}],"urls":[],"user_mentions":[{"screen_name":"CocaCola_NG","name":"Coca-Cola Nigeria","id":636919693,"id_str":"636919693","indices":[3,15]},{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[88,97]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[104,115]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651501057,"id_str":"663727661651501057","text":"RT @WillyrexYT: FUEEEGOOO!! Black Ops 3 c\/ Alexby y Vegetta: https:\/\/t.co\/G97TX405XO v\u00eda @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3854827978,"id_str":"3854827978","name":"R U B E L A N G E L","screen_name":"RUBENselaCOMEE","location":null,"url":null,"description":"Mirko Argentino Amor a los Youtubers \u2764 Bendito sea el f\u00fatbol \u26bd CARP_Alario_Ponzio FCB_Messi_Neymar_ Entrenador Pok\u00e8mon _ Amo el Verde _Anime_Juegos c:","protected":false,"verified":false,"followers_count":528,"friends_count":476,"listed_count":1,"favourites_count":2701,"statuses_count":2642,"created_at":"Sat Oct 03 18:50:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650464073461682176\/BOHhogWC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650464073461682176\/BOHhogWC.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660532986270584833\/DiixL2mF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660532986270584833\/DiixL2mF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3854827978\/1446782843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 16:57:34 +0000 2015","id":663037586940821508,"id_str":"663037586940821508","text":"FUEEEGOOO!! Black Ops 3 c\/ Alexby y Vegetta: https:\/\/t.co\/G97TX405XO v\u00eda @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230377004,"id_str":"230377004","name":"Willyrex","screen_name":"WillyrexYT","location":"Espa\u00f1a\/Los Angeles","url":"https:\/\/www.youtube.com\/TheWillyrex","description":"Subiendo un video diario desde 10\/2010. 22 A\u00f1os. \u00bfEres un Batracio? S\u00edgueme!! Youtube: http:\/\/www.youtube.com\/Willyrex Business: Willyrex@vizz-agency.com","protected":false,"verified":true,"followers_count":2743292,"friends_count":161,"listed_count":5117,"favourites_count":4786,"statuses_count":28364,"created_at":"Sat Dec 25 07:24:26 +0000 2010","utc_offset":3600,"time_zone":"Brussels","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"FFA200","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592699371923361795\/_04OBiPp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592699371923361795\/_04OBiPp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230377004\/1424537252","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":444,"favorite_count":2355,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G97TX405XO","expanded_url":"http:\/\/youtu.be\/weYbZIQickg?a","display_url":"youtu.be\/weYbZIQickg?a","indices":[45,68]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[73,81]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G97TX405XO","expanded_url":"http:\/\/youtu.be\/weYbZIQickg?a","display_url":"youtu.be\/weYbZIQickg?a","indices":[61,84]}],"user_mentions":[{"screen_name":"WillyrexYT","name":"Willyrex","id":230377004,"id_str":"230377004","indices":[3,14]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[89,97]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659852800,"id_str":"663727661659852800","text":"RT @CocaCola_NG: Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226174089,"id_str":"226174089","name":"Kehinde Wiley","screen_name":"ThisIsKennys","location":"IG & Snapchat: thisiskennys","url":"http:\/\/www.facebook.com\/kenny.f4real","description":"Actuary","protected":false,"verified":false,"followers_count":301,"friends_count":153,"listed_count":1,"favourites_count":15,"statuses_count":1871,"created_at":"Mon Dec 13 14:20:52 +0000 2010","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368651383447552\/CJFJ892B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368651383447552\/CJFJ892B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226174089\/1443093000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:54 +0000 2015","id":663702806558306306,"id_str":"663702806558306306","text":"Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https:\/\/t.co\/qyupXgefXe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636919693,"id_str":"636919693","name":"Coca-Cola Nigeria","screen_name":"CocaCola_NG","location":"Nigeria","url":"http:\/\/coca-cola.com.ng","description":"Official Twitter account for Coca-Cola Nigeria. Open a Coke, Open Happiness! http:\/\/facebook.com\/cocacola","protected":false,"verified":false,"followers_count":19707,"friends_count":385,"listed_count":34,"favourites_count":157,"statuses_count":4816,"created_at":"Mon Jul 16 11:58:37 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50535","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636919693\/1445520204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59b27337f38d658b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59b27337f38d658b.json","place_type":"country","name":"Nigeria","full_name":"Nigeria","country_code":"NG","country":"Nigeria","bounding_box":{"type":"Polygon","coordinates":[[[2.665436,4.197406],[2.665436,13.888115],[14.677795,13.888115],[14.677795,4.197406]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[5,11]},{"text":"CokeStudioAfrica","indices":[18,35]}],"urls":[],"user_mentions":[{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[71,80]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[87,98]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[22,28]},{"text":"CokeStudioAfrica","indices":[35,52]}],"urls":[],"user_mentions":[{"screen_name":"CocaCola_NG","name":"Coca-Cola Nigeria","id":636919693,"id_str":"636919693","indices":[3,15]},{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[88,97]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[104,115]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661664100352,"id_str":"663727661664100352","text":"RT @bonnovanderputt: Showtime. # mood \u2708 \u26bd\ufe0f \u270c\ufe0f #shine #angellist #icon #brands #monarchcapital #venturecapital\u2026 https:\/\/t.co\/FX9aRHtvmL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149346186,"id_str":"4149346186","name":"merwin duy","screen_name":"merwinduyqom","location":null,"url":null,"description":"Venta y distribuci\u00f3n deProdutos ZWave en Latin America","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":1,"statuses_count":4,"created_at":"Mon Nov 09 13:09:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726978755911680\/QpubMYGC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726978755911680\/QpubMYGC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:12 +0000 2015","id":663715213674459136,"id_str":"663715213674459136","text":"Showtime. # mood \u2708 \u26bd\ufe0f \u270c\ufe0f #shine #angellist #icon #brands #monarchcapital #venturecapital\u2026 https:\/\/t.co\/FX9aRHtvmL","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476946794,"id_str":"476946794","name":"bonno van der putten","screen_name":"bonnovanderputt","location":null,"url":"https:\/\/Instagram.com\/bonnovanderputten\/","description":"Bonno van der Putten; #retail Monarch Capital-Priv. Equity & Venture Capital-Tech-Prof. Football-Luxury Brands-CelebDJs-Entertainment-Emerging markets","protected":false,"verified":false,"followers_count":2292484,"friends_count":55862,"listed_count":157,"favourites_count":842,"statuses_count":25712,"created_at":"Sat Jan 28 17:27:40 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628782296\/zp7cz7eq8gt087iv7w3h.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628782296\/zp7cz7eq8gt087iv7w3h.png","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/411640607509987328\/oeJQAkfU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/411640607509987328\/oeJQAkfU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476946794\/1383032547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":262,"favorite_count":212,"entities":{"hashtags":[{"text":"shine","indices":[25,31]},{"text":"angellist","indices":[32,42]},{"text":"icon","indices":[43,48]},{"text":"brands","indices":[49,56]},{"text":"monarchcapital","indices":[57,72]},{"text":"venturecapital","indices":[73,88]}],"urls":[{"url":"https:\/\/t.co\/FX9aRHtvmL","expanded_url":"http:\/\/ln.is\/instagram.com\/p\/OH0qO","display_url":"ln.is\/instagram.com\/\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"shine","indices":[46,52]},{"text":"angellist","indices":[53,63]},{"text":"icon","indices":[64,69]},{"text":"brands","indices":[70,77]},{"text":"monarchcapital","indices":[78,93]},{"text":"venturecapital","indices":[94,109]}],"urls":[{"url":"https:\/\/t.co\/FX9aRHtvmL","expanded_url":"http:\/\/ln.is\/instagram.com\/p\/OH0qO","display_url":"ln.is\/instagram.com\/\u2026","indices":[111,134]}],"user_mentions":[{"screen_name":"bonnovanderputt","name":"bonno van der putten","id":476946794,"id_str":"476946794","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661664063488,"id_str":"663727661664063488","text":"Christmas music playing already in bath & body \ud83d\ude33\ud83d\ude49 stahhhp.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328887469,"id_str":"2328887469","name":"brianna \u2742","screen_name":"hambamwich","location":null,"url":null,"description":"good vibes.\u270c\ufe0fdating my soulmate @vodak_ \u26a5\u2661","protected":false,"verified":false,"followers_count":311,"friends_count":276,"listed_count":2,"favourites_count":13131,"statuses_count":9656,"created_at":"Thu Feb 06 21:23:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516267167226929152\/I7lcNRIU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516267167226929152\/I7lcNRIU.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659170535218270208\/94xQc9vo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659170535218270208\/94xQc9vo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328887469\/1437360936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651374081,"id_str":"663727661651374081","text":"\u3010\u308a\u306e\u3074\u3011\u79c1\u3068\u540c\u3058\u30af\u30de\u30bd\u30d7\u30e9\u30cd\u30c3\u30c8\u306e\u4f4f\u6c11\u3067\u3059\u30a5\u30a5\u30a5\u30a5\u30a5\u2661\u2661\u30af\u30de\u30bd\u30c1\u30c3\u30af\u30d5\u30a9\u30a9\u30a9\u30a9\u30a9\u30a9\uff01\uff01\u3053\u308c\u304b\u3089\u3082\u9bad\u63a1\u308a\u304c\u3093\u3070\u308d\u3046\u306d\uff1f\uff61\uff9f(\uff9f^\u0414^\uff9f)\uff9f\uff61\u308a\u306e\u3074\u306e\u30c6\u30f3\u30b7\u30e7\u30f3\u597d\u304d\u3059\u304e\u3066\u2661\u2661\uff77\uff6c\uff8a \u308a\u306e\u3074\u3055\u3089\u3052~~\u2661\u2661\u2661\u2661\u2661","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1171788980,"id_str":"1171788980","name":"\u305b\u3075\u3086\u306a","screen_name":"yyys_exo","location":"\u304f\u307e\u305d\u3077\u3089\u306d\u3063\u3068","url":null,"description":"94line \/ EXO SEHUN\u2661\u2661 \/ SJ \/ SHINee \/ B.A.P \/ NU'EST \/ INFINITE \/ \u30db\u30e2\u30a9\u250c(^q^\u2510)\u2510 \/ \u30aa\u30bb\u30d5\u30f3\u304c\u3044\u306a\u3044\u3068\u751f\u304d\u3066\u3044\u3051\u306a\u3044\u7cfb\u5973\u5b50 \/ \u5e38\u306b\u30aa\u30bb\u30d5\u30f3\u30aa\u30bb\u30d5\u30f3\u30d5\u30a1\u30a2\u30a2\u30a2\u30a2\u30a2\u30a2\u2190","protected":false,"verified":false,"followers_count":79,"friends_count":118,"listed_count":0,"favourites_count":82,"statuses_count":4439,"created_at":"Tue Feb 12 12:12:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000434054857\/29b23bd40380c57c7b5bb8372298faa4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000434054857\/29b23bd40380c57c7b5bb8372298faa4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171788980\/1378296310","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661676498944,"id_str":"663727661676498944","text":"RT @ppritam009: @Faith_In_Salman @djsrmurmu Sab harami h Tum :D #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188008860,"id_str":"3188008860","name":"barca_my\/heart","screen_name":"Mad_zeeshan","location":null,"url":null,"description":"I am big fan of Salman ,barca, neymar messi, sachin and K.B. Some time i pretend to be normal but its get boring so i go back to being me...............","protected":false,"verified":false,"followers_count":62,"friends_count":99,"listed_count":2,"favourites_count":295,"statuses_count":4842,"created_at":"Thu May 07 19:48:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663049043891777536\/ENFzA_6Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663049043891777536\/ENFzA_6Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188008860\/1438880060","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:17 +0000 2015","id":663727311984824320,"id_str":"663727311984824320","text":"@Faith_In_Salman @djsrmurmu Sab harami h Tum :D #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726739697233920,"in_reply_to_status_id_str":"663726739697233920","in_reply_to_user_id":2552181222,"in_reply_to_user_id_str":"2552181222","in_reply_to_screen_name":"Faith_In_Salman","user":{"id":120686214,"id_str":"120686214","name":"THE SALMAN KHAN","screen_name":"ppritam009","location":"Pune","url":null,"description":"Salman Ka Bhakt ,Jacqueline ka Deewana ..A Marwaari on Planet Salman Khan !","protected":false,"verified":false,"followers_count":14363,"friends_count":284,"listed_count":32,"favourites_count":5944,"statuses_count":155323,"created_at":"Sun Mar 07 06:41:12 +0000 2010","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490419919196917760\/UZkrlvYU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490419919196917760\/UZkrlvYU.jpeg","profile_background_tile":true,"profile_link_color":"010A05","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659584918251433984\/y2xdDHUN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659584918251433984\/y2xdDHUN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120686214\/1446208065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"201258accac2df33","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/201258accac2df33.json","place_type":"city","name":"Aurangabad","full_name":"Aurangabad, Maharashtra","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[75.166419,19.665651],[75.166419,20.166025],[75.881515,20.166025],[75.881515,19.665651]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[48,70]}],"urls":[],"user_mentions":[{"screen_name":"Faith_In_Salman","name":"~Pratik~","id":2552181222,"id_str":"2552181222","indices":[0,16]},{"screen_name":"djsrmurmu","name":"DJ Sr.","id":3071764538,"id_str":"3071764538","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[64,86]}],"urls":[],"user_mentions":[{"screen_name":"ppritam009","name":"THE SALMAN KHAN","id":120686214,"id_str":"120686214","indices":[3,14]},{"screen_name":"Faith_In_Salman","name":"~Pratik~","id":2552181222,"id_str":"2552181222","indices":[16,32]},{"screen_name":"djsrmurmu","name":"DJ Sr.","id":3071764538,"id_str":"3071764538","indices":[33,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079980664"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659717632,"id_str":"663727661659717632","text":"\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u51cd\u7d50\u3057\u3066\u4f7f\u3048\u306a\u304f\u306a\u308b\u306e\u306f\u305a\u3063\u3068\u4f7f\u3063\u3066\u304d\u3066\u672c\u5f53\u306b\u52ff\u4f53\u306a\u3044\u306e\u3067\u3059\u3002\n\n\u6839\u6027\u304c\u306a\u304f\u3066\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3067\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231661980,"id_str":"2231661980","name":"[JPN]\u3086\u514e[\u81ea\u767a\u4e2d\u30be\u2665]","screen_name":"Yusagi_TourerV","location":"In Your Heart","url":"http:\/\/ask.fm\/Staggered_27inc","description":"Touhou Project \/ Workout \/ Bicycle \/ Fixed Gear \/ MARIN Bikes \/ EDM \/ Cars \/etc... \u30a2\u30a4\u30b3\u30f3\u306f@MINATA18 \u6c0f\u306b\u63cf\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":1359,"friends_count":1071,"listed_count":96,"favourites_count":71318,"statuses_count":80739,"created_at":"Thu Dec 05 15:47:34 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624677922943578112\/k4NtZl-5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624677922943578112\/k4NtZl-5.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644528767235289088\/GlImYUuf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644528767235289088\/GlImYUuf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231661980\/1446476278","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661680689152,"id_str":"663727661680689152","text":"RT @ddlovato: My man \ud83d\ude0d #AskDemi https:\/\/t.co\/4hHfTYkXlt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3184576160,"id_str":"3184576160","name":"C H R I S T I A N","screen_name":"fromDC97","location":null,"url":null,"description":"Keep up your head Queen, if not your crown might fall \u2764","protected":false,"verified":false,"followers_count":296,"friends_count":29,"listed_count":6,"favourites_count":13930,"statuses_count":19710,"created_at":"Sun May 03 23:00:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663531437291802624\/dWAP8kUO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663531437291802624\/dWAP8kUO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184576160\/1447033196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:45:14 +0000 2015","id":663683764573335552,"id_str":"663683764573335552","text":"My man \ud83d\ude0d #AskDemi https:\/\/t.co\/4hHfTYkXlt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672541,"friends_count":401,"listed_count":102883,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663426188354953216,"quoted_status_id_str":"663426188354953216","quoted_status":{"created_at":"Sun Nov 08 18:41:43 +0000 2015","id":663426188354953216,"id_str":"663426188354953216","text":"who instantly puts you in a better mood when you're feeling sad? @ddlovato #askdemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":940803216,"id_str":"940803216","name":"liv","screen_name":"everlastingddI","location":null,"url":"https:\/\/twitter.com\/ddlovato\/status\/663683764573335552","description":"fuck my bad habits","protected":false,"verified":false,"followers_count":7908,"friends_count":325,"listed_count":49,"favourites_count":17292,"statuses_count":74892,"created_at":"Sun Nov 11 08:16:09 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000048757152\/0fa85be133fa41d52f054e4a75554eb5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000048757152\/0fa85be133fa41d52f054e4a75554eb5.png","profile_background_tile":false,"profile_link_color":"6320C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662752887324438528\/8zihQwRP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662752887324438528\/8zihQwRP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/940803216\/1446742795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"askdemi","indices":[75,83]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[65,74]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2254,"favorite_count":4123,"entities":{"hashtags":[{"text":"AskDemi","indices":[9,17]}],"urls":[{"url":"https:\/\/t.co\/4hHfTYkXlt","expanded_url":"https:\/\/twitter.com\/everlastingddI\/status\/663426188354953216","display_url":"twitter.com\/everlastingddI\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[23,31]}],"urls":[{"url":"https:\/\/t.co\/4hHfTYkXlt","expanded_url":"https:\/\/twitter.com\/everlastingddI\/status\/663426188354953216","display_url":"twitter.com\/everlastingddI\u2026","indices":[32,55]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980665"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661685022720,"id_str":"663727661685022720","text":"RT @anninhaapassos: Is it too late now to say sorry??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":581575827,"id_str":"581575827","name":"Gabi","screen_name":"GabrielaFlavia2","location":"Toronto, Ontario","url":null,"description":"Snapchat: gabiflavia1","protected":false,"verified":false,"followers_count":984,"friends_count":475,"listed_count":1,"favourites_count":6054,"statuses_count":41213,"created_at":"Wed May 16 03:53:55 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460168837703274497\/iwz2luXx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460168837703274497\/iwz2luXx.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660881235015680000\/ijWp4y8C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660881235015680000\/ijWp4y8C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581575827\/1442123165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:56 +0000 2015","id":663724958481256448,"id_str":"663724958481256448","text":"Is it too late now to say sorry??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221894546,"id_str":"221894546","name":"anna","screen_name":"anninhaapassos","location":"Belo Horizonte, MG","url":"http:\/\/instagram.com\/anninhaapassos","description":"C'est la vie.","protected":false,"verified":false,"followers_count":2329,"friends_count":777,"listed_count":1,"favourites_count":19797,"statuses_count":27485,"created_at":"Wed Dec 01 22:30:36 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641334085978296320\/3WUi6eU1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641334085978296320\/3WUi6eU1.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657672440601034752\/imf6Wl7q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657672440601034752\/imf6Wl7q_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anninhaapassos","name":"anna","id":221894546,"id_str":"221894546","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655719936,"id_str":"663727661655719936","text":"RT @NoticiasVenezue: Sismo de magnitud 4.1 en El Vig\u00eda https:\/\/t.co\/C68vxCtTZs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3213813946,"id_str":"3213813946","name":"Angelica M Martin","screen_name":"angelikm01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":110,"listed_count":0,"favourites_count":57,"statuses_count":160,"created_at":"Mon Apr 27 15:21:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663518136759635968\/b3N8Pq26_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663518136759635968\/b3N8Pq26_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:16 +0000 2015","id":663726554883751937,"id_str":"663726554883751937","text":"Sismo de magnitud 4.1 en El Vig\u00eda https:\/\/t.co\/C68vxCtTZs","source":"\u003ca href=\"http:\/\/quepasaenvenezuela.com\" rel=\"nofollow\"\u003eQPEV\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42832810,"id_str":"42832810","name":"Noticias Venezuela","screen_name":"NoticiasVenezue","location":"Caracas, Venezuela","url":"http:\/\/noticiasvenezuela.org\/","description":"Noticias ciudadanas de Venezuela y el Mundo http:\/\/noticiasdevenezuela.org","protected":false,"verified":false,"followers_count":522482,"friends_count":73457,"listed_count":3263,"favourites_count":72,"statuses_count":1107404,"created_at":"Wed May 27 06:50:45 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"510800","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/694973330\/e2d1562b9a36c8499a34459cf373d0f9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/694973330\/e2d1562b9a36c8499a34459cf373d0f9.jpeg","profile_background_tile":true,"profile_link_color":"A16A23","profile_sidebar_border_color":"3D0702","profile_sidebar_fill_color":"2C1703","profile_text_color":"E0912A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1648393748\/NV112011_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1648393748\/NV112011_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42832810\/1430309926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C68vxCtTZs","expanded_url":"http:\/\/wp.me\/p5ss8D-10tK","display_url":"wp.me\/p5ss8D-10tK","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C68vxCtTZs","expanded_url":"http:\/\/wp.me\/p5ss8D-10tK","display_url":"wp.me\/p5ss8D-10tK","indices":[55,78]}],"user_mentions":[{"screen_name":"NoticiasVenezue","name":"Noticias Venezuela","id":42832810,"id_str":"42832810","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661685080064,"id_str":"663727661685080064","text":"RT @revolvehes: remember when niall left the stage and the boys were joking about losing another member, I hate them so much https:\/\/t.co\/r\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":494054294,"id_str":"494054294","name":"made in the a.m.","screen_name":"notwithouthes","location":"lolita\/\/cutie\/\/maca","url":"https:\/\/Instagram.com\/lucia.hes\/","description":"Please don't forget us, we'll always be here for you. - Harry","protected":false,"verified":false,"followers_count":1561,"friends_count":567,"listed_count":16,"favourites_count":4048,"statuses_count":97510,"created_at":"Thu Feb 16 13:37:48 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"148CCC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625622504279801856\/O-ndHXJw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625622504279801856\/O-ndHXJw.png","profile_background_tile":true,"profile_link_color":"770F99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662943828513529856\/Fq53VLau_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662943828513529856\/Fq53VLau_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/494054294\/1446245578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:14 +0000 2015","id":663720253717741568,"id_str":"663720253717741568","text":"remember when niall left the stage and the boys were joking about losing another member, I hate them so much https:\/\/t.co\/r8TGXw4333","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118323762,"id_str":"118323762","name":"sofije","screen_name":"revolvehes","location":null,"url":"https:\/\/twitter.com\/NiallOfficial\/status\/441682915567886336","description":"I asked niall about the album and he talked about his knee https:\/\/twitter.com\/real_liam_payne\/status\/518578360738648064","protected":false,"verified":false,"followers_count":36422,"friends_count":602,"listed_count":275,"favourites_count":47464,"statuses_count":82356,"created_at":"Sun Feb 28 09:00:58 +0000 2010","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634107290971299840\/kCTwnwzY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634107290971299840\/kCTwnwzY.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663520705502420992\/a3iHeyd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663520705502420992\/a3iHeyd__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118323762\/1447030639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":19,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r8TGXw4333","expanded_url":"https:\/\/vine.co\/v\/ePTFYKFQTlK","display_url":"vine.co\/v\/ePTFYKFQTlK","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r8TGXw4333","expanded_url":"https:\/\/vine.co\/v\/ePTFYKFQTlK","display_url":"vine.co\/v\/ePTFYKFQTlK","indices":[125,140]}],"user_mentions":[{"screen_name":"revolvehes","name":"sofije","id":118323762,"id_str":"118323762","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659889664,"id_str":"663727661659889664","text":"Allah \u00f6yle bir kap\u0131 a\u00e7ar ki, A\u00e7\u0131lmayan her kap\u0131 i\u00e7in Allah'a \u015f\u00fckredersin..!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3652994415,"id_str":"3652994415","name":"Emine","screen_name":"eminenuyan","location":"Adana-Ceyhan","url":null,"description":"Beynime k\u00fcrtaj talep ediyorum.","protected":false,"verified":false,"followers_count":68,"friends_count":157,"listed_count":0,"favourites_count":52,"statuses_count":61,"created_at":"Mon Sep 14 12:42:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650297528219529216\/vNf3wI_T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650297528219529216\/vNf3wI_T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3652994415\/1442236171","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651365888,"id_str":"663727661651365888","text":"@m1isduBqeBz5bH9 \n\u308f\u308d\u305f\u7b11\n\u30cb\u30e5\u30fc\u30b9\u898b\u305f\u3093\uff1f\u7206\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725802287009792,"in_reply_to_status_id_str":"663725802287009792","in_reply_to_user_id":2990852972,"in_reply_to_user_id_str":"2990852972","in_reply_to_screen_name":"m1isduBqeBz5bH9","user":{"id":3129044418,"id_str":"3129044418","name":"\u614e\u4ecb 54\u671f\u5de5\u5927\u796d \u5fa1\u96a0\u5c45\u59d4\u54e1\u9577","screen_name":"kodaisai54th","location":"\u65e5\u672c","url":null,"description":"\u5e83\u5cf6\u5de5\u696d\u5927\u5b66 \u7b2c54\u671f \u5de5\u5927\u796d\u59d4\u54e1\u9577\uff01\u30c7\u30a3\u30ba\u30cb\u30fc\u611b \u611b\u5a9b\u306e\u5b87\u548c\u5cf6\u9b42\u5fd8\u308c\u305a\u306b\u5e83\u5cf6\u3082\u611b\u3057\u3066\u307e\u3059\u7b11 \u80cc\u4e2d\u306b\u5de5\u5927\u3068\u725b\u9b3c\u80cc\u8ca0\u3063\u3066\u9811\u5f35\u308a\u307e\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u3057\u307e\u304f\u308b\u3093\u3067 \u9006\u306b\u30d5\u30a9\u30ed\u30fc\u3082\u3057\u307e\u304f\u3063\u3066\u304f\u3060\u3055\u3044(^^)","protected":false,"verified":false,"followers_count":440,"friends_count":603,"listed_count":1,"favourites_count":205,"statuses_count":427,"created_at":"Thu Apr 02 05:36:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637528138356953088\/AxfvXJRP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637528138356953088\/AxfvXJRP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3129044418\/1440037598","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m1isduBqeBz5bH9","name":"\u5343\u5c0b","id":2990852972,"id_str":"2990852972","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661680750593,"id_str":"663727661680750593","text":"@null sekarang jam 21:39:02 WIB","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Null\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":3321392700,"id_str":"3321392700","name":"FOLLBACK? -irene","screen_name":"baejoolight","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":42,"listed_count":0,"favourites_count":0,"statuses_count":14838,"created_at":"Thu Aug 20 14:36:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657480712816189440\/_GSJi3pX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657480712816189440\/_GSJi3pX_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079980665"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684883456,"id_str":"663727661684883456","text":"RT @EXOBEAKHYUN_TB: SM \u0e40\u0e08\u0e49\u0e32\u0e02\u0e32\u0e16\u0e49\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e17\u0e23\u0e19 #EXO \u0e41\u0e25\u0e49\u0e27\u0e0a\u0e19\u0e30\u0e23\u0e27\u0e14\u0e46 \u0e0a\u0e48\u0e27\u0e22\u0e40\u0e21\u0e15\u0e15\u0e32 #CALLMEBABY \u0e2d\u0e22\u0e48\u0e32\u0e2d\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e2d\u0e2d\u0e1f\u0e21\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e15\u0e31\u0e07\u0e04\u0e4c @MnetMAMA \u0e40\u0e22\u0e2d\u0e30\u0e40\u0e25\u0e22\u0e19\u0e30\u0e08\u0e48\u0e30 #2015\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":354243176,"id_str":"354243176","name":"\u2764\ufe0f\u0e1e\u0e48\u0e2d\u0e41\u0e21\u0e48","screen_name":"minddy7","location":"comebacktwitter","url":null,"description":"1998 \u2022TAMKYUNGA\u2022 \u0e15\u0e31\u0e49\u0e07\u0e43\u0e08\u0e40\u0e23\u0e35\u0e22\u0e19\u0e01\u0e27\u0e48\u0e32\u0e19\u0e35\u0e49\u270c\ufe0f|#\uc0e4\uc774\ub2c8 #\uc5d1\uc18c @BTS_twt | @Apink_2011 #iKONIC |\ub2f9\uc2e0\uc744 \uc0ac\ub791\ud569\ub2c8\ub2e4. | 150927","protected":false,"verified":false,"followers_count":387,"friends_count":1996,"listed_count":3,"favourites_count":2909,"statuses_count":29247,"created_at":"Sat Aug 13 11:25:20 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663240725455200256\/go3qykeD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663240725455200256\/go3qykeD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354243176\/1445980510","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:19 +0000 2015","id":663725561622081536,"id_str":"663725561622081536","text":"SM \u0e40\u0e08\u0e49\u0e32\u0e02\u0e32\u0e16\u0e49\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e17\u0e23\u0e19 #EXO \u0e41\u0e25\u0e49\u0e27\u0e0a\u0e19\u0e30\u0e23\u0e27\u0e14\u0e46 \u0e0a\u0e48\u0e27\u0e22\u0e40\u0e21\u0e15\u0e15\u0e32 #CALLMEBABY \u0e2d\u0e22\u0e48\u0e32\u0e2d\u0e2d\u0e01\u0e02\u0e2d\u0e07\u0e2d\u0e2d\u0e1f\u0e21\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e15\u0e31\u0e07\u0e04\u0e4c @MnetMAMA \u0e40\u0e22\u0e2d\u0e30\u0e40\u0e25\u0e22\u0e19\u0e30\u0e08\u0e48\u0e30 #2015MAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622656607,"id_str":"622656607","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","screen_name":"EXOBEAKHYUN_TB","location":"Bangkok, Thailand","url":null,"description":"\u3139H39EXOK EXOM =EXOL|12forever and ever|\u0e2d\u0e31\u0e1e\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1aEXO \u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46ID:great11575","protected":false,"verified":false,"followers_count":59914,"friends_count":544,"listed_count":81,"favourites_count":889,"statuses_count":186209,"created_at":"Sat Jun 30 08:56:37 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_tile":false,"profile_link_color":"D91161","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622656607\/1445573786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":123,"favorite_count":7,"entities":{"hashtags":[{"text":"EXO","indices":[21,25]},{"text":"CALLMEBABY","indices":[49,60]},{"text":"2015MAMA","indices":[114,123]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[90,99]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[41,45]},{"text":"CALLMEBABY","indices":[69,80]},{"text":"2015MAMA","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"EXOBEAKHYUN_TB","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","id":622656607,"id_str":"622656607","indices":[3,18]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[110,119]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661663911938,"id_str":"663727661663911938","text":"6\u5272\u304c\u30c8\u30e9\u30d6\u30eb\u3068\u304b\u3082\u3046\u4ed5\u7d44\u307f\u304c\u304a\u304b\u3057\u3044\u3068\u3057\u304b\u601d\u3048\u306a\u3044 #nhk24","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77680849,"id_str":"77680849","name":"\u3079\u306b\u308a\u3093@\u6620\u753b&\u7279\u64ae\u597d\u304d","screen_name":"benirin","location":"\u6771\u4eac\u90fd\u6e2f\u533a","url":"http:\/\/twilog.org\/benirin","description":"\u6c17\u5206\u5c4b\nfavorite:\u9022\u6ca2\u308a\u306a\/\u30af\u30ea\u30b9\u30c1\u30e3\u30f3\u30fb\u30d9\u30fc\u30eb\/\u6620\u753b\/wowow\/\u7279\u64ae\/\u30b4\u9b54\u4e59pid:kw3p6n \/\u65c5\u884c\u3002\n2015\u5e74\u76ee\u6a19\uff1a\u4f0a\u8a9e\u52c9\u5f37\u300170kg\u307e\u3067\u75e9\u305b\u308b\u3001\u304a\u91d1\u3092\u8caf\u3081\u308b\n\u9054\u6210\u6e08\uff1a\u6620\u753b150\u672c\u4ee5\u4e0a\u9451\u8cde\u3001\u30a4\u30bf\u30ea\u30a2\u65c5\u884c","protected":false,"verified":false,"followers_count":153,"friends_count":156,"listed_count":13,"favourites_count":663,"statuses_count":25430,"created_at":"Sun Sep 27 06:50:18 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/393027708\/nm46369______.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/393027708\/nm46369______.jpg","profile_background_tile":true,"profile_link_color":"D40450","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651731064306593793\/VVjv2x6K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651731064306593793\/VVjv2x6K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77680849\/1443937231","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nhk24","indices":[27,33]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661676494849,"id_str":"663727661676494849","text":"\u307e\u305f\u629c\u304d\u306e\u3084\u3064\u5bae\u524d\u3084\u3093(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415581450,"id_str":"2415581450","name":"ko-hei","screen_name":"kouhei00662244","location":"\u5f7c\u5973\u307b\u3057\u304b\u3063\u305f\u308a\u3059\u308b\u3002","url":null,"description":"\u592a\u5e73\u5bfa65th\u2192\u679a\u5ca1\u6a1f\u98a815th1\u306e7\/soccer club #8","protected":false,"verified":false,"followers_count":397,"friends_count":252,"listed_count":0,"favourites_count":5254,"statuses_count":3487,"created_at":"Fri Mar 28 08:06:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723944197779456\/JdjKg7gO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723944197779456\/JdjKg7gO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415581450\/1434535474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980664"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684908032,"id_str":"663727661684908032","text":"@SHI_YA39 \n\u3042\u308c\u3001\u305d\u30fc\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707649075081216,"in_reply_to_status_id_str":"663707649075081216","in_reply_to_user_id":2996755698,"in_reply_to_user_id_str":"2996755698","in_reply_to_screen_name":"SHI_YA39","user":{"id":3039801476,"id_str":"3039801476","name":"\u3053\u3068\u3061\u3002","screen_name":"PFreSUdR3pKRknn","location":null,"url":null,"description":"\u3046\u3089\u3042\u304b\/dance\/\u57fa\u672c\u76f8\u4e92\u30d5\u30a9\u30ed\u30d0\u306a\u3057\u30ea\u30e0\/\u3075\u3041\u307cRT\u30ea\u30d7\u30ea\u30b9\u30a4\u30f3\u5168\u529b\u3067\u306a\u3064\u304f\\(* \u00b4 \ua4b3 ` *)\/\/\u500b\u4eba\u60c5\u5831\u00d7\/LINE\u00d7\/\u5f1f[@toropikal_1122 ]\/\u59c9\u59b9[@SHI_YA39 ]\/\u30ad\u30c1\u30ac\u30a4\u3053\u3068\u3082\u3061combi\u2282\u2312\u3063*-\u03c9-)\u3063[@tomoti3731 @tomo_ti___ ]","protected":false,"verified":false,"followers_count":1280,"friends_count":1191,"listed_count":16,"favourites_count":33334,"statuses_count":17404,"created_at":"Tue Feb 24 15:11:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650349609013809154\/Crd8uOp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650349609013809154\/Crd8uOp7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039801476\/1443889953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SHI_YA39","name":"\u7d2b\u4f0a\u5f25@\u795e\u5bfe\u5fdc(\u76ee\u6307\u3057\u4e2d)","id":2996755698,"id_str":"2996755698","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655523328,"id_str":"663727661655523328","text":"@porno93line \u307e\u3066\u307e\u3066\u3001\u308f\u3066\u3057\ud83d\udc7a\u4ed8\u3044\u3066\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726592665874434,"in_reply_to_status_id_str":"663726592665874434","in_reply_to_user_id":2394231284,"in_reply_to_user_id_str":"2394231284","in_reply_to_screen_name":"porno93line","user":{"id":456623311,"id_str":"456623311","name":"\u2220\u306f\u30fc\u3061\u3083\u3093\u25b7[Alexandros]","screen_name":"haluka_xxx","location":"\u304a\u30fc\u3055\u304b","url":"http:\/\/twpf.jp\/haluka_xxx","description":"\u305f\u304f\u3055\u3093\u306e\u97f3\u3082\u3060\u3061\u3068\u51fa\u4f1a\u3044\u305f\u3044\u3002\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304f\u3060\u3055\u3044\u263b\uff01\u7121\u8a00\u306e\u65b9\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u261e\u30d4\u30f3\u30af\u30ec\u30f3\u30b8\u30e3\u30fc\/\u3089\u3070\u3063\u3071\u30fc7\u5e74\u76ee\/PF\u4f1a\u54e11\u5e74\u76ee\/\u30c0\u30a4\u30ad\u30e3\u30b9\u30c4\u30a2\u30fc\u306f\u5927\u962a\u6ecb\u8cc0\u5948\u826f\u5927\u962a2days!\/\u8a73\u3057\u3044\u53c2\u6226\u6b74\u3068\u53c2\u6226\u4e88\u5b9a\u306f\u3064\u3044\u3077\u308d\u3078","protected":false,"verified":false,"followers_count":470,"friends_count":369,"listed_count":16,"favourites_count":6068,"statuses_count":25011,"created_at":"Fri Jan 06 13:21:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660618379703644161\/IwvvVbPI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660618379703644161\/IwvvVbPI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456623311\/1394178876","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"porno93line","name":"\u2220\u30b4\u30de\u56e3\u5b50\u3055\u30fc\u3084\u3093\u6b21\u306fUVER","id":2394231284,"id_str":"2394231284","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661672488960,"id_str":"663727661672488960","text":"https:\/\/t.co\/fLgpKuUQs6 #Style #Shoes Nike Lebron 8 Cool Grey PROMO SAMPLE Sz. 7.5","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3296589073,"id_str":"3296589073","name":"Just Found It","screen_name":"ShoesSteals","location":"Raulex","url":null,"description":"vidi veni vici... Fine kicks, shoes and gear.","protected":false,"verified":false,"followers_count":79,"friends_count":37,"listed_count":37,"favourites_count":84,"statuses_count":218147,"created_at":"Mon Jul 27 01:31:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625479232882257920\/zJUq6TOE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625479232882257920\/zJUq6TOE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3296589073\/1437960923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Style","indices":[24,30]},{"text":"Shoes","indices":[31,37]}],"urls":[{"url":"https:\/\/t.co\/fLgpKuUQs6","expanded_url":"http:\/\/ift.tt\/1Rp4j11","display_url":"ift.tt\/1Rp4j11","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980663"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651329024,"id_str":"663727661651329024","text":"Retweeted Giriraj Singh (@girirajsinghbjp):\n\nThis is how we lost the plot .. https:\/\/t.co\/D2DZxuzUZI https:\/\/t.co\/7rlsRLKzCK","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74985668,"id_str":"74985668","name":"Sundeep Mudgal","screen_name":"Sundeep123","location":"India","url":null,"description":"#BhagatSingh 4 Patriotism\n#MahatmaGandhi 4 Independence & Values\n#AtalBihariVajpayee 4 Statesmenship\n#Abrahamlincoln 4 Persistence\nthat's me","protected":false,"verified":false,"followers_count":1106,"friends_count":1993,"listed_count":20,"favourites_count":4751,"statuses_count":10818,"created_at":"Thu Sep 17 11:03:23 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663671361244495872\/xoB3wA0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663671361244495872\/xoB3wA0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74985668\/1425991981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7rlsRLKzCK","expanded_url":"http:\/\/fb.me\/7uP6J9dnZ","display_url":"fb.me\/7uP6J9dnZ","indices":[101,124]}],"user_mentions":[{"screen_name":"girirajsinghbjp","name":"Giriraj Singh","id":1642669674,"id_str":"1642669674","indices":[25,41]}],"symbols":[],"media":[{"id":663697721052696576,"id_str":"663697721052696576","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtj5WVEAARBBN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtj5WVEAARBBN.jpg","url":"https:\/\/t.co\/D2DZxuzUZI","display_url":"pic.twitter.com\/D2DZxuzUZI","expanded_url":"http:\/\/twitter.com\/girirajsinghbjp\/status\/663697804364136448\/photo\/1","type":"photo","sizes":{"large":{"w":382,"h":874,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":382,"h":874,"resize":"fit"},"small":{"w":297,"h":680,"resize":"fit"}},"source_status_id":663697804364136448,"source_status_id_str":"663697804364136448","source_user_id":1642669674,"source_user_id_str":"1642669674"}]},"extended_entities":{"media":[{"id":663697721052696576,"id_str":"663697721052696576","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtj5WVEAARBBN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtj5WVEAARBBN.jpg","url":"https:\/\/t.co\/D2DZxuzUZI","display_url":"pic.twitter.com\/D2DZxuzUZI","expanded_url":"http:\/\/twitter.com\/girirajsinghbjp\/status\/663697804364136448\/photo\/1","type":"photo","sizes":{"large":{"w":382,"h":874,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":382,"h":874,"resize":"fit"},"small":{"w":297,"h":680,"resize":"fit"}},"source_status_id":663697804364136448,"source_status_id_str":"663697804364136448","source_user_id":1642669674,"source_user_id_str":"1642669674"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684912128,"id_str":"663727661684912128","text":"RT @xeno_rappafuki: \u5f53\u7136\u306e\u3053\u3068\u66f8\u3044\u3066\u305f\u3002 https:\/\/t.co\/5peAdA75os","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43072060,"id_str":"43072060","name":"\u30de\u30c3\u30cf\u30b5\u30f3\u30c7\u30fc\uff08\u3084\u3059\u304f\u306bP\uff09","screen_name":"MachSunday","location":"\u65e7\uff1a\u9060\u6c5f\u56fd\uff08\u6d5c\u677e\u5e02\uff09","url":"http:\/\/twpf.jp\/MachSunday","description":"\u30a2\u30a4\u30de\u30b9\uff30\uff06\u30cb\u30b3\u30de\u30b9\uff30\uff081101\uff09\u30fbQMA\u30d7\u30ec\u30a4\u30e4\u30fc\u30fb\u8266\u3053\u308c\u63d0\u7763\u30fb\u30a8\u30fc\u30b9\u30b3\u30f3\u30d0\u30c3\u30c8\u30a4\u30f3\u30d5\u30a3\u30cb\u30c6\u30a3\u3067\u30a2\u30a4\u30de\u30b9\u6a5f\u30d1\u30a4\u30ed\u30c3\u30c8\u30fb\u30cb\u30b3\u52d5\uff06pixiv\uff06mixi\u306e\u30d7\u30ec\u30df\u30a2\u30e0\u4f1a\u54e1\u30fb\u5186\u8c37\u30d7\u30ed\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u4f1a\u54e1\u30fb\u8d85\u6642\u7a7a\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u30de\u30af\u30ed\u30b9\u9b42\u4f1a\u54e1\u30fb\u30dd\u30b1\u30e2\u30f3\u30c8\u30ec\u30fc\u30ca\u30fc\u30fb\u30b8\u30e3\u30f3\u30d7\u653e\u9001\u5c40\u5143\u6295\u7a3f\u6226\u58eb\u30fb\u30b7\u30ca\u30ea\u30aa\u30bb\u30f3\u30bf\u30fc\u4f1a\u54e1\u3002","protected":false,"verified":false,"followers_count":1321,"friends_count":2066,"listed_count":102,"favourites_count":52348,"statuses_count":130541,"created_at":"Thu May 28 08:15:50 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3090425104\/d6e7eea32433f15071df07ac5747d775_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3090425104\/d6e7eea32433f15071df07ac5747d775_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43072060\/1415627310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:36:00 +0000 2015","id":663575743373295616,"id_str":"663575743373295616","text":"\u5f53\u7136\u306e\u3053\u3068\u66f8\u3044\u3066\u305f\u3002 https:\/\/t.co\/5peAdA75os","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292218882,"id_str":"292218882","name":"xeno","screen_name":"xeno_rappafuki","location":"\u4eac\u90fd\u306e\u4f0f\u898b\uff01","url":null,"description":"\u5927\u962a\u3067\u30b2\u30fc\u30e0\u97f3\u697d\u5c02\u9580\u306e\u5439\u594f\u697d\u56e3\u3001\u30e9\u30b9\u30c8\u30a8\u30ea\u30af\u30b5\u30fc\u30a6\u30a3\u30f3\u30c9\u30aa\u30fc\u30b1\u30b9\u30c8\u30e9\u3084\u3063\u3066\u307e\u3059\uff01\u304c\u3001\u672c\u4eba\u306f\u751f\u7c8b\u306e\u4eac\u90fd\u4eba\u3067\u3059(\u91cd\u8981)\u3002http:\/\/lewo.nobody.jp\/","protected":false,"verified":false,"followers_count":449,"friends_count":231,"listed_count":34,"favourites_count":88,"statuses_count":56300,"created_at":"Tue May 03 09:08:05 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/414446277\/090426________.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/414446277\/090426________.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660801934677307393\/aIvhWuGC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660801934677307393\/aIvhWuGC_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2626,"favorite_count":1150,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663575729032957953,"id_str":"663575729032957953","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","url":"https:\/\/t.co\/5peAdA75os","display_url":"pic.twitter.com\/5peAdA75os","expanded_url":"http:\/\/twitter.com\/xeno_rappafuki\/status\/663575743373295616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663575729032957953,"id_str":"663575729032957953","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","url":"https:\/\/t.co\/5peAdA75os","display_url":"pic.twitter.com\/5peAdA75os","expanded_url":"http:\/\/twitter.com\/xeno_rappafuki\/status\/663575743373295616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xeno_rappafuki","name":"xeno","id":292218882,"id_str":"292218882","indices":[3,18]}],"symbols":[],"media":[{"id":663575729032957953,"id_str":"663575729032957953","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","url":"https:\/\/t.co\/5peAdA75os","display_url":"pic.twitter.com\/5peAdA75os","expanded_url":"http:\/\/twitter.com\/xeno_rappafuki\/status\/663575743373295616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663575743373295616,"source_status_id_str":"663575743373295616","source_user_id":292218882,"source_user_id_str":"292218882"}]},"extended_entities":{"media":[{"id":663575729032957953,"id_str":"663575729032957953","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV-nBqUkAERjS9.jpg","url":"https:\/\/t.co\/5peAdA75os","display_url":"pic.twitter.com\/5peAdA75os","expanded_url":"http:\/\/twitter.com\/xeno_rappafuki\/status\/663575743373295616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663575743373295616,"source_status_id_str":"663575743373295616","source_user_id":292218882,"source_user_id_str":"292218882"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659783168,"id_str":"663727661659783168","text":"\u5927\u4e08\u592b\u3082\u3063\u3068\u3059\u3054\u3044\u306e\u3044\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2974760647,"id_str":"2974760647","name":"\u307f\u3044\u3053","screen_name":"mini_marupiyo","location":null,"url":null,"description":"\u2732 \u307f\u3044\u306c\u306e\u30d5\u30ea\u30fc\u30b9\u30da\u30fc\u30b9 \u2732 \u672c\u57a2(@mipom_) \u30a2\u30a4\u30b3\u30f3\u2661(@deruteru_xxx ) \u540d\u4ed8\u3051\u89aa\u306f\u304f\u3045(@_k_0w0 )","protected":false,"verified":false,"followers_count":110,"friends_count":111,"listed_count":1,"favourites_count":618,"statuses_count":1265,"created_at":"Sun Jan 11 10:44:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661184716918263808\/Kf2531ir_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661184716918263808\/Kf2531ir_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974760647\/1444610394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684912129,"id_str":"663727661684912129","text":"The greatest inefficiency in my day is the transition between tasks. Too much puttering as I move from one thing to the next.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65151861,"id_str":"65151861","name":"Michael J. Altman","screen_name":"MichaelJAltman","location":"Tuscaloosa, AL","url":"http:\/\/michaeljaltman.net","description":"Theorist & historian, Assistant Professor of Religious Studies at Univ. of Alabama","protected":false,"verified":false,"followers_count":2155,"friends_count":1911,"listed_count":141,"favourites_count":1877,"statuses_count":17484,"created_at":"Wed Aug 12 20:33:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B3B3D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563046665838288896\/wcaO_2S_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563046665838288896\/wcaO_2S_.jpeg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F2F7","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653586866248155136\/8zpKr1Dp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653586866248155136\/8zpKr1Dp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65151861\/1427158848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3a22597bb94d08bd","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3a22597bb94d08bd.json","place_type":"city","name":"Tuscaloosa","full_name":"Tuscaloosa, AL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.626729,33.098411],[-87.626729,33.294790],[-87.440084,33.294790],[-87.440084,33.098411]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684948992,"id_str":"663727661684948992","text":"NU ABO\u306e\u6642\u306e\u30af\u30ea\u30b9\u30bf\u30eb\u82e5\u3044\uff01\u4eca\u3088\u308a\u3082\u4eba\u9593\u307d\u3044\uff01\u53ef\u611b\u3044\u306e\u3045\u3002","source":"\u003ca href=\"http:\/\/tweetli.st\/\" rel=\"nofollow\"\u003eTweetList!\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1129943940,"id_str":"1129943940","name":"\u4e09\u89d2\u7b4b\u3075\u3047\u3061 \uc724\ud638\uae30\ub2e4\ub9b4\uac8c","screen_name":"otmyc","location":"\u3044\u306c\u307f\u305f\u3044\u306a\u304b\u305f\u3061\u306e\u770c","url":null,"description":"We are T\uff01\u65b0\u3057\u304f\u6771\u65b9\u795e\u8d77\u5c02\u7528\u30a2\u30ab\u4f5c\u308a\u307e\u3057\u305f\uff01\u30c1\u30e3\u30f3\u30df\u30f3\u6eba\u611b\u306e\u30e6\u30ce\u30da\u30f3\u3002\u30db\u30df\u30f3\u5927\u3059\u3063\u304d(\u25cf\u2235) \u4eba(\u00b4\uff65\uff2a\uff65\uff40\u25cf)","protected":false,"verified":false,"followers_count":12,"friends_count":32,"listed_count":0,"favourites_count":1610,"statuses_count":1408,"created_at":"Tue Jan 29 03:40:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3276794132\/838437e578ea07a9e37f0fd19fa4f8bb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3276794132\/838437e578ea07a9e37f0fd19fa4f8bb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659754501,"id_str":"663727661659754501","text":"@_najwadamia hai \ud83d\ude4b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4180094774,"in_reply_to_user_id_str":"4180094774","in_reply_to_screen_name":"_najwadamia","user":{"id":228469410,"id_str":"228469410","name":"Hakimi.","screen_name":"hxkimiyusoff","location":null,"url":null,"description":"ND \u2764\ufe0f","protected":false,"verified":false,"followers_count":277,"friends_count":154,"listed_count":0,"favourites_count":208,"statuses_count":3552,"created_at":"Sun Dec 19 20:27:04 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888646839\/b1dc2ea418bd808abff9f7be8f545665.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888646839\/b1dc2ea418bd808abff9f7be8f545665.jpeg","profile_background_tile":true,"profile_link_color":"440A85","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659437302335193088\/xoqStcMM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659437302335193088\/xoqStcMM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228469410\/1446057079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_najwadamia","name":"Najwadamia","id":4180094774,"id_str":"4180094774","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655658496,"id_str":"663727661655658496","text":"RT @marisascruz: N\u00c3O S\u00d3 APOIAR MAS PENSAR SERIAMENTE EM FAZER GREVE GERAL, TDS EM CASA, SEM UM TOST\u00c3O DE IMPOSTO P ESTE DesGUVERNO!\n https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":176997200,"id_str":"176997200","name":"Jose do Nascimento","screen_name":"MarceloPEC_56","location":"Rio de Janeiro","url":null,"description":"Pelo resgate dos direitos constitucionais dos servidores inv\u00e1lidos, retirados pela EC 41\/03.","protected":false,"verified":false,"followers_count":1480,"friends_count":1974,"listed_count":16,"favourites_count":45737,"statuses_count":331018,"created_at":"Wed Aug 11 00:18:59 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1922757270\/111477_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1922757270\/111477_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:08 +0000 2015","id":663726772974977025,"id_str":"663726772974977025","text":"N\u00c3O S\u00d3 APOIAR MAS PENSAR SERIAMENTE EM FAZER GREVE GERAL, TDS EM CASA, SEM UM TOST\u00c3O DE IMPOSTO P ESTE DesGUVERNO!\n https:\/\/t.co\/oCCi5bkee2","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87843887,"id_str":"87843887","name":"Marisa Cruz","screen_name":"marisascruz","location":"Brasil","url":"http:\/\/page.is\/marisa-cruz","description":"Administradora pr\u00f3pria da alma eternamente viva","protected":false,"verified":false,"followers_count":224439,"friends_count":2153,"listed_count":369,"favourites_count":56055,"statuses_count":584337,"created_at":"Fri Nov 06 02:04:47 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513632664339742720\/Q5wdAmpf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513632664339742720\/Q5wdAmpf_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726295000420352,"quoted_status_id_str":"663726295000420352","quoted_status":{"created_at":"Mon Nov 09 14:34:14 +0000 2015","id":663726295000420352,"id_str":"663726295000420352","text":"@marisascruz Todo o brasileiro que n\u00e3o concorda com o que est\u00e1 acontecendo no pa\u00eds deve apoiar essa manifesta\u00e7\u00e3o,APOIO TOTAL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724543865970688,"in_reply_to_status_id_str":"663724543865970688","in_reply_to_user_id":87843887,"in_reply_to_user_id_str":"87843887","in_reply_to_screen_name":"marisascruz","user":{"id":562811905,"id_str":"562811905","name":"jose roberto","screen_name":"robertopita90","location":"Brasil","url":null,"description":"parcial,radical,inflex\u00edvel ,f\u00e3 de rock,e grande torcedor do VIT\u00d3RIA-BA, um eterno democrata","protected":false,"verified":false,"followers_count":1148,"friends_count":1778,"listed_count":11,"favourites_count":3444,"statuses_count":24577,"created_at":"Wed Apr 25 11:40:07 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2659717550\/925ec9e368ec07811d603ed58da0e79e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2659717550\/925ec9e368ec07811d603ed58da0e79e_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marisascruz","name":"Marisa Cruz","id":87843887,"id_str":"87843887","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oCCi5bkee2","expanded_url":"https:\/\/twitter.com\/robertopita90\/status\/663726295000420352","display_url":"twitter.com\/robertopita90\/\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oCCi5bkee2","expanded_url":"https:\/\/twitter.com\/robertopita90\/status\/663726295000420352","display_url":"twitter.com\/robertopita90\/\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"marisascruz","name":"Marisa Cruz","id":87843887,"id_str":"87843887","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661668151296,"id_str":"663727661668151296","text":"@TEDXHW \u0e01\u0e2d\u0e14. \u0e01\u0e2d\u0e14\u0e44\u0e21\u0e48\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727504377540608,"in_reply_to_status_id_str":"663727504377540608","in_reply_to_user_id":3179218363,"in_reply_to_user_id_str":"3179218363","in_reply_to_screen_name":"TEDXHW","user":{"id":2579772428,"id_str":"2579772428","name":"\u0e41\u0e17\u0e19","screen_name":"slpxkihyun","location":" #sleepfml #\u0e41\u0e01\u0e4a\u0e07\u0e04\u0e13\u0e34\u0e15","url":null,"description":"1993s\u2500you had me at hello","protected":false,"verified":false,"followers_count":122,"friends_count":101,"listed_count":0,"favourites_count":23,"statuses_count":11050,"created_at":"Sat Jun 21 04:04:14 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663416174567272448\/4T6-of-L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663416174567272448\/4T6-of-L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579772428\/1446230395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TEDXHW","name":"\u0e40\u0e17\u0e47\u0e14\u0e14\u0e35\u0e49","id":3179218363,"id_str":"3179218363","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079980662"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655695360,"id_str":"663727661655695360","text":"Se ta calor agora, imagina no ver\u00e3o..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253319639,"id_str":"253319639","name":"Nais\u00e3 luis","screen_name":"naisaluuis","location":"Pelotas rs","url":"http:\/\/www.facebook.com\/naisa.luis","description":"26\/10\/14 eu te amo @thalessiilva","protected":false,"verified":false,"followers_count":1523,"friends_count":677,"listed_count":3,"favourites_count":5381,"statuses_count":112919,"created_at":"Thu Feb 17 00:38:05 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656826271565901824\/cHr0d1_b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656826271565901824\/cHr0d1_b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253319639\/1402142567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661668311040,"id_str":"663727661668311040","text":"Proximamente la productora de fernet al lado de cocacola(?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1879190875,"id_str":"1879190875","name":"rodriexze17","screen_name":"rodriexze","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":58,"friends_count":62,"listed_count":0,"favourites_count":111,"statuses_count":437,"created_at":"Wed Sep 18 11:40:25 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662000150991265796\/0n_bpauj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662000150991265796\/0n_bpauj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1879190875\/1446668108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980662"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661672300545,"id_str":"663727661672300545","text":"RT @skdwm: \u6700\u4f4e\u3060\u3068\u601d\u3063\u305f\u4ebaRT http:\/\/t.co\/nbrZjRih2k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958656096,"id_str":"2958656096","name":"\u3068\u308d\uff20MH4G","screen_name":"kingklmzon","location":"\u308f\u305f\u3057\u305f\u3061\u306f\u3053\u3053\u306b\u3044\u307e\u3059","url":null,"description":"\u904a\u622f\u738bADS\/MH4\uff27 \/\u3068\u3042\u308b\u30b7\u30ea\u30fc\u30ba\/ ToLOVE\u308b \/ \u30d5\u30a7\u30a2\u30ea\u30fc\u30c6\u30a4\u30eb\/\u30ad\u30eb\u30df\u30fc\u30d9\u30a4\u30d9\u30fc\/\u3042\u3063\u3061\u3053\u3063\u3061\/ working\/\u3046\u307e\u308b\u3061\u3083\u3093\/\uff2d\uff28\uff26\/\uff2d\uff283\uff27\/\u9752\u306e\u30a8\u30af\u30bd\u30b7\u30b9\u30c8\/\u6771\u65b9\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\/\u304c\u3063\u3053\u3046\u3050\u3089\u3057\uff01\/\u30cf\u30a4\u30ad\u30e5\u30fc\uff0fMHXR\u304c\u597d\u304d\u306a\u4eba\uff06\u3084\u3063\u3066\u308b\u4eba\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f","protected":false,"verified":false,"followers_count":1364,"friends_count":1929,"listed_count":8,"favourites_count":4147,"statuses_count":3391,"created_at":"Sun Jan 04 16:16:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660480194642210816\/MbtSAOTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660480194642210816\/MbtSAOTt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958656096\/1446982527","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon May 18 13:08:12 +0000 2015","id":600286764180209666,"id_str":"600286764180209666","text":"\u6700\u4f4e\u3060\u3068\u601d\u3063\u305f\u4ebaRT http:\/\/t.co\/nbrZjRih2k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2916243560,"id_str":"2916243560","name":"\u305b\u3050\u3081\u3093","screen_name":"skdwm","location":null,"url":null,"description":"\u30b7\u30fc\u30c3\u3001\u9759\u304b\u306b\u3002\u611b\u306f\u9759\u5bc2\u306b\u5305\u307e\u308c\u3066\u5272\u308c\u3066\u3044\u304f\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9","protected":false,"verified":false,"followers_count":48392,"friends_count":4230,"listed_count":350,"favourites_count":3,"statuses_count":2682,"created_at":"Tue Dec 02 05:22:33 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539651654446886912\/rhx21WWt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539651654446886912\/rhx21WWt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2916243560\/1422273109","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17034,"favorite_count":4398,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":600286710233071617,"id_str":"600286710233071617","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":600286710233071617,"id_str":"600286710233071617","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":600286710237278208,"id_str":"600286710237278208","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR8UsAA3YZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR8UsAA3YZH.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":600286710446968832,"id_str":"600286710446968832","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllSuUUAAax__.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllSuUUAAax__.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":600286710509932545,"id_str":"600286710509932545","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllS9VEAEl7oX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllS9VEAEl7oX.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"skdwm","name":"\u305b\u3050\u3081\u3093","id":2916243560,"id_str":"2916243560","indices":[3,9]}],"symbols":[],"media":[{"id":600286710233071617,"id_str":"600286710233071617","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":600286764180209666,"source_status_id_str":"600286764180209666","source_user_id":2916243560,"source_user_id_str":"2916243560"}]},"extended_entities":{"media":[{"id":600286710233071617,"id_str":"600286710233071617","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR7UgAE0Fi-.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":600286764180209666,"source_status_id_str":"600286764180209666","source_user_id":2916243560,"source_user_id_str":"2916243560"},{"id":600286710237278208,"id_str":"600286710237278208","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllR8UsAA3YZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllR8UsAA3YZH.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":600286764180209666,"source_status_id_str":"600286764180209666","source_user_id":2916243560,"source_user_id_str":"2916243560"},{"id":600286710446968832,"id_str":"600286710446968832","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllSuUUAAax__.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllSuUUAAax__.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":600286764180209666,"source_status_id_str":"600286764180209666","source_user_id":2916243560,"source_user_id_str":"2916243560"},{"id":600286710509932545,"id_str":"600286710509932545","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CFSllS9VEAEl7oX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFSllS9VEAEl7oX.jpg","url":"http:\/\/t.co\/nbrZjRih2k","display_url":"pic.twitter.com\/nbrZjRih2k","expanded_url":"http:\/\/twitter.com\/skdwm\/status\/600286764180209666\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":600286764180209666,"source_status_id_str":"600286764180209666","source_user_id":2916243560,"source_user_id_str":"2916243560"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980663"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659766784,"id_str":"663727661659766784","text":"RT @LeezKenito: Liza TheMostBeautiful\n\n@tccandler https:\/\/t.co\/Wy1lwQWpn6","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3580813032,"id_str":"3580813032","name":"lynlyn babes","screen_name":"lyn_babes03","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":27,"listed_count":8,"favourites_count":12,"statuses_count":76682,"created_at":"Wed Sep 16 08:46:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644071453277556737\/cl8YyQ1B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644071453277556737\/cl8YyQ1B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3580813032\/1442393573","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:01 +0000 2015","id":663726993712672769,"id_str":"663726993712672769","text":"Liza TheMostBeautiful\n\n@tccandler https:\/\/t.co\/Wy1lwQWpn6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246556597,"id_str":"3246556597","name":"Daenerys","screen_name":"LeezKenito","location":null,"url":null,"description":"-SHIT HAPPENS ALL THE TIME-","protected":false,"verified":false,"followers_count":175,"friends_count":81,"listed_count":5,"favourites_count":5862,"statuses_count":19508,"created_at":"Tue Jun 16 05:16:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663254832958955520\/7VtcZPOU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663254832958955520\/7VtcZPOU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246556597\/1444639449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[23,33]}],"symbols":[],"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeezKenito","name":"Daenerys","id":3246556597,"id_str":"3246556597","indices":[3,14]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[39,49]}],"symbols":[],"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}},"source_status_id":663726993712672769,"source_status_id_str":"663726993712672769","source_user_id":3246556597,"source_user_id_str":"3246556597"}]},"extended_entities":{"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}},"source_status_id":663726993712672769,"source_status_id_str":"663726993712672769","source_user_id":3246556597,"source_user_id_str":"3246556597"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661651501056,"id_str":"663727661651501056","text":"@punhet4sdoz4in Amor , me ajuda dando RT nesse Tweet ae? Significaria mt pra mim! Obrigada \ud83d\udc95 #4DaysUntilMITAM https:\/\/t.co\/sOj0uNxhRl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":188751728,"in_reply_to_user_id_str":"188751728","in_reply_to_screen_name":"punhet4sdoz4in","user":{"id":271498775,"id_str":"271498775","name":"RT O TWEET FIXADO","screen_name":"QueziaBraz","location":"Coxa do Harry ","url":null,"description":"This Is Not The End \u2764","protected":false,"verified":false,"followers_count":1143,"friends_count":452,"listed_count":3,"favourites_count":9441,"statuses_count":59508,"created_at":"Thu Mar 24 16:44:29 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"862D2D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714993321\/66a7a2751d49848d99dfc2e12c01a86f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714993321\/66a7a2751d49848d99dfc2e12c01a86f.jpeg","profile_background_tile":true,"profile_link_color":"862D2D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660676004084449280\/kNHvP6ZB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660676004084449280\/kNHvP6ZB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/271498775\/1442943019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663070877974687752,"quoted_status_id_str":"663070877974687752","quoted_status":{"created_at":"Sat Nov 07 19:09:51 +0000 2015","id":663070877974687752,"id_str":"663070877974687752","text":"Eu quero ganhar o \u00c1lbum Made In The A.M. que @Niall749 e o projeto @DProjeto1 est\u00e3o sorteando https:\/\/t.co\/UHrfjjwVfF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":271498775,"id_str":"271498775","name":"RT O TWEET FIXADO","screen_name":"QueziaBraz","location":"Coxa do Harry ","url":null,"description":"This Is Not The End \u2764","protected":false,"verified":false,"followers_count":1143,"friends_count":452,"listed_count":3,"favourites_count":9441,"statuses_count":59507,"created_at":"Thu Mar 24 16:44:29 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"862D2D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714993321\/66a7a2751d49848d99dfc2e12c01a86f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714993321\/66a7a2751d49848d99dfc2e12c01a86f.jpeg","profile_background_tile":true,"profile_link_color":"862D2D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660676004084449280\/kNHvP6ZB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660676004084449280\/kNHvP6ZB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/271498775\/1442943019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Niall749","name":"HenriiMITAM!!","id":4093292423,"id_str":"4093292423","indices":[45,54]},{"screen_name":"DProjeto1","name":"Projeto 1D Help","id":3579601095,"id_str":"3579601095","indices":[67,77]}],"symbols":[],"media":[{"id":663070853169586176,"id_str":"663070853169586176","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOzbYgWoAA5XOV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOzbYgWoAA5XOV.jpg","url":"https:\/\/t.co\/UHrfjjwVfF","display_url":"pic.twitter.com\/UHrfjjwVfF","expanded_url":"http:\/\/twitter.com\/QueziaBraz\/status\/663070877974687752\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663070853169586176,"id_str":"663070853169586176","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOzbYgWoAA5XOV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOzbYgWoAA5XOV.jpg","url":"https:\/\/t.co\/UHrfjjwVfF","display_url":"pic.twitter.com\/UHrfjjwVfF","expanded_url":"http:\/\/twitter.com\/QueziaBraz\/status\/663070877974687752\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663070864049643520,"id_str":"663070864049643520","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOzcBCXIAAnuUb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOzcBCXIAAnuUb.jpg","url":"https:\/\/t.co\/UHrfjjwVfF","display_url":"pic.twitter.com\/UHrfjjwVfF","expanded_url":"http:\/\/twitter.com\/QueziaBraz\/status\/663070877974687752\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[93,109]}],"urls":[{"url":"https:\/\/t.co\/sOj0uNxhRl","expanded_url":"https:\/\/twitter.com\/larrytraveco\/status\/663070877974687752","display_url":"twitter.com\/larrytraveco\/s\u2026","indices":[110,133]}],"user_mentions":[{"screen_name":"punhet4sdoz4in","name":"Zayn","id":188751728,"id_str":"188751728","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079980658"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661647294464,"id_str":"663727661647294464","text":"@_En505 fdaaaait 3mrrsh ya enty \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f97 elnoom glbii\ud83d\udc8b\ud83d\udc8b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727421745553408,"in_reply_to_status_id_str":"663727421745553408","in_reply_to_user_id":493013869,"in_reply_to_user_id_str":"493013869","in_reply_to_screen_name":"_En505","user":{"id":482282234,"id_str":"482282234","name":"\u0641\u0627\u0637\u0645\u0647\u0640 \u0622\u0644\u0628\u0631\u064a\u06af\u064a ..\u2728","screen_name":"Falbraiki__","location":"United Arab Emarites ","url":null,"description":null,"protected":false,"verified":false,"followers_count":431,"friends_count":213,"listed_count":0,"favourites_count":222,"statuses_count":18257,"created_at":"Fri Feb 03 18:42:31 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652131006284103680\/9-GdGRby_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652131006284103680\/9-GdGRby_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482282234\/1440877394","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_En505","name":"\u2651\ufe0f","id":493013869,"id_str":"493013869","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447079980657"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661647314944,"id_str":"663727661647314944","text":"@tudiosC buenas crack","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727525223354368,"in_reply_to_status_id_str":"663727525223354368","in_reply_to_user_id":2371235737,"in_reply_to_user_id_str":"2371235737","in_reply_to_screen_name":"tudiosC","user":{"id":3302032546,"id_str":"3302032546","name":"crak114","screen_name":"8ef06d385ae541a","location":"crak114","url":null,"description":"crak114","protected":false,"verified":false,"followers_count":17,"friends_count":104,"listed_count":0,"favourites_count":50,"statuses_count":167,"created_at":"Thu May 28 17:50:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635051390067429377\/0O5xkJqn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635051390067429377\/0O5xkJqn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302032546\/1445206449","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tudiosC","name":"TuDios\u00a9\u2665\u2122","id":2371235737,"id_str":"2371235737","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980657"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659717633,"id_str":"663727661659717633","text":"RT @fastbeam: \u0e2d\u0e48\u0e32\u0e27 \u0e19\u0e49\u0e2d\u0e07\u0e04\u0e19\u0e2a\u0e27\u0e22 \u0e1e\u0e39\u0e48\u0e17\u0e35\u0e48\u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e38\u0e15\u0e2a\u0e48\u0e32\u0e2b\u0e4c\u0e19\u0e31\u0e48\u0e07\u0e09\u0e35\u0e01\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e2d\u0e48\u0e30 \u0e2a\u0e07\u0e2a\u0e32\u0e23\u0e19\u0e32\u0e07\u0e40\u0e25\u0e22 #hormonestheseries3 https:\/\/t.co\/baeiVpiZAk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580501918,"id_str":"2580501918","name":"pppppp","screen_name":"Ccabbb","location":"Thailand","url":"https:\/\/www.wattpad.com\/user\/notmary404","description":null,"protected":false,"verified":false,"followers_count":217,"friends_count":727,"listed_count":4,"favourites_count":3139,"statuses_count":38274,"created_at":"Sat Jun 21 14:16:06 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649106973162541057\/xvo6HJHY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649106973162541057\/xvo6HJHY.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663384738363629568\/8QCByn_G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663384738363629568\/8QCByn_G_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:49:58 +0000 2015","id":663277269511639040,"id_str":"663277269511639040","text":"\u0e2d\u0e48\u0e32\u0e27 \u0e19\u0e49\u0e2d\u0e07\u0e04\u0e19\u0e2a\u0e27\u0e22 \u0e1e\u0e39\u0e48\u0e17\u0e35\u0e48\u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e38\u0e15\u0e2a\u0e48\u0e32\u0e2b\u0e4c\u0e19\u0e31\u0e48\u0e07\u0e09\u0e35\u0e01\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e0a\u0e49\u0e2d\u0e48\u0e30 \u0e2a\u0e07\u0e2a\u0e32\u0e23\u0e19\u0e32\u0e07\u0e40\u0e25\u0e22 #hormonestheseries3 https:\/\/t.co\/baeiVpiZAk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130070371,"id_str":"130070371","name":"F\u03b1\u0455\u0442\u0432\u0454\u03b1\u043c (\u25d4 \u25d4 )","screen_name":"fastbeam","location":"\u0e17\u0e38\u0e48\u0e07\u0e25\u0e34\u0e25\u0e25\u0e35\u0e48\u0e2d\u0e31\u0e19\u0e21\u0e37\u0e14\u0e21\u0e34\u0e14(\u02f6\u203e\u1dc4\ufe43\u203e\u1dc5\u02f5)\u30ce\u2661","url":"http:\/\/www.webtoons.com\/episodeList?titleNo=337","description":"\u0e2d\u0e22\u0e48\u0e32\u0e15\u0e32\u0e21\u0e21\u0e32\u0e2b\u0e25\u0e07\u0e17\u0e32\u0e07\u0e2d\u0e22\u0e39\u0e48","protected":false,"verified":false,"followers_count":9503,"friends_count":398,"listed_count":19,"favourites_count":1586,"statuses_count":126884,"created_at":"Tue Apr 06 06:22:52 +0000 2010","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"806D6D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660438710484205568\/CogKeEl2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660438710484205568\/CogKeEl2.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8BC65","profile_text_color":"F27C56","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662653114890063874\/JEyRA0Lb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662653114890063874\/JEyRA0Lb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130070371\/1445124109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":735,"favorite_count":124,"entities":{"hashtags":[{"text":"hormonestheseries3","indices":[67,86]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663277265615097856,"id_str":"663277265615097856","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","url":"https:\/\/t.co\/baeiVpiZAk","display_url":"pic.twitter.com\/baeiVpiZAk","expanded_url":"http:\/\/twitter.com\/fastbeam\/status\/663277269511639040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663277265615097856,"id_str":"663277265615097856","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","url":"https:\/\/t.co\/baeiVpiZAk","display_url":"pic.twitter.com\/baeiVpiZAk","expanded_url":"http:\/\/twitter.com\/fastbeam\/status\/663277269511639040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hormonestheseries3","indices":[81,100]}],"urls":[],"user_mentions":[{"screen_name":"fastbeam","name":"F\u03b1\u0455\u0442\u0432\u0454\u03b1\u043c (\u25d4 \u25d4 )","id":130070371,"id_str":"130070371","indices":[3,12]}],"symbols":[],"media":[{"id":663277265615097856,"id_str":"663277265615097856","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","url":"https:\/\/t.co\/baeiVpiZAk","display_url":"pic.twitter.com\/baeiVpiZAk","expanded_url":"http:\/\/twitter.com\/fastbeam\/status\/663277269511639040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663277269511639040,"source_status_id_str":"663277269511639040","source_user_id":130070371,"source_user_id_str":"130070371"}]},"extended_entities":{"media":[{"id":663277265615097856,"id_str":"663277265615097856","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRvKKyUkAAx-h0.png","url":"https:\/\/t.co\/baeiVpiZAk","display_url":"pic.twitter.com\/baeiVpiZAk","expanded_url":"http:\/\/twitter.com\/fastbeam\/status\/663277269511639040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663277269511639040,"source_status_id_str":"663277269511639040","source_user_id":130070371,"source_user_id_str":"130070371"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655728128,"id_str":"663727661655728128","text":"RT @CocaCola_NG: Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":354871111,"id_str":"354871111","name":"TholarWilliams","screen_name":"Tholar_Williams","location":"EARTH","url":null,"description":"Communicator,TDH,Craay fellow,Scorpio","protected":false,"verified":false,"followers_count":215,"friends_count":116,"listed_count":4,"favourites_count":6,"statuses_count":5768,"created_at":"Sun Aug 14 12:57:52 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646470927673389056\/nK0xkrqS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646470927673389056\/nK0xkrqS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354871111\/1420543411","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:54 +0000 2015","id":663702806558306306,"id_str":"663702806558306306","text":"Post #Song3 & #CokeStudioAfrica on Facebook or Twitter to vote for @MI_Abaga & @AvrilKenya's \"One Naira\/Kitu Kimoja\" https:\/\/t.co\/qyupXgefXe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636919693,"id_str":"636919693","name":"Coca-Cola Nigeria","screen_name":"CocaCola_NG","location":"Nigeria","url":"http:\/\/coca-cola.com.ng","description":"Official Twitter account for Coca-Cola Nigeria. Open a Coke, Open Happiness! http:\/\/facebook.com\/cocacola","protected":false,"verified":false,"followers_count":19707,"friends_count":385,"listed_count":34,"favourites_count":157,"statuses_count":4816,"created_at":"Mon Jul 16 11:58:37 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50535","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502848228337803264\/TRaq7ubt.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3758117149\/3067998d344e5a6cba4b604e56d297f2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636919693\/1445520204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59b27337f38d658b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59b27337f38d658b.json","place_type":"country","name":"Nigeria","full_name":"Nigeria","country_code":"NG","country":"Nigeria","bounding_box":{"type":"Polygon","coordinates":[[[2.665436,4.197406],[2.665436,13.888115],[14.677795,13.888115],[14.677795,4.197406]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[5,11]},{"text":"CokeStudioAfrica","indices":[18,35]}],"urls":[],"user_mentions":[{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[71,80]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[87,98]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Song3","indices":[22,28]},{"text":"CokeStudioAfrica","indices":[35,52]}],"urls":[],"user_mentions":[{"screen_name":"CocaCola_NG","name":"Coca-Cola Nigeria","id":636919693,"id_str":"636919693","indices":[3,15]},{"screen_name":"MI_Abaga","name":"jude abaga","id":50246444,"id_str":"50246444","indices":[88,97]},{"screen_name":"AvrilKenya","name":"#Ninaweza #Ninaweza","id":40199395,"id_str":"40199395","indices":[104,115]}],"symbols":[],"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"extended_entities":{"media":[{"id":663702800875024384,"id_str":"663702800875024384","indices":[147,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyLlKWcAABHr0.png","url":"https:\/\/t.co\/qyupXgefXe","display_url":"pic.twitter.com\/qyupXgefXe","expanded_url":"http:\/\/twitter.com\/CocaCola_NG\/status\/663702806558306306\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":640,"h":640,"resize":"fit"}},"source_status_id":663702806558306306,"source_status_id_str":"663702806558306306","source_user_id":636919693,"source_user_id_str":"636919693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980659"} +{"delete":{"status":{"id":663302455728336897,"id_str":"663302455728336897","user_id":3561583872,"user_id_str":"3561583872"},"timestamp_ms":"1447079980756"}} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661663940608,"id_str":"663727661663940608","text":"@TuyoJunk \u3044\u3044\u306d\uff01\u305d\u308c\u304c1\u756a\u266a\u3042\u305f\u3057\u306f\u9c3b\u3088\u308a\u305d\u308c\u304c\u3044\u3044\u3068\u601d\u3046w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663695828238733313,"in_reply_to_status_id_str":"663695828238733313","in_reply_to_user_id":1563278406,"in_reply_to_user_id_str":"1563278406","in_reply_to_screen_name":"TuyoJunk","user":{"id":2232992005,"id_str":"2232992005","name":"\u304f\u307f\u3093\u307f","screen_name":"kuminmi1122","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":7,"listed_count":0,"favourites_count":32,"statuses_count":877,"created_at":"Fri Dec 06 13:33:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000836749413\/af5c9611963804fa1a6e51f755b38f40_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000836749413\/af5c9611963804fa1a6e51f755b38f40_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TuyoJunk","name":"\u30b6\u2606\u3064\u3088\u3057","id":1563278406,"id_str":"1563278406","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659754500,"id_str":"663727661659754500","text":"\u30c7\u30ec\u30b9\u30c6\u308d\u307e\u306a\u3046\u306e\u30e9\u30b9\u30c8\u304c10th\u3092\u601d\u3044\u51fa\u3059\u611f\u3058\u306f\u3042\u308b","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265841473,"id_str":"265841473","name":"\u304a\u308c\u304a","screen_name":"h_lightsworn","location":"\u8d64\u57ce\u5c71\u306e\u3061\u304b\u304f","url":null,"description":"\u7fa4\u99ac\u7cfb\u307f\u308a\u3042P\u3067\u3059\u304c\u5f97\u610f\u6280\u3089\u3044\u3093\u3075\u308c\u3042\u3067\u3059","protected":false,"verified":false,"followers_count":316,"friends_count":337,"listed_count":13,"favourites_count":129,"statuses_count":81079,"created_at":"Mon Mar 14 06:47:03 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180671413\/f4pGWQS8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180671413\/f4pGWQS8.png","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602457403855011842\/7PgnsyGQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602457403855011842\/7PgnsyGQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265841473\/1415116249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661672497152,"id_str":"663727661672497152","text":"if you wear leos... you know that feeling","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18822153,"id_str":"18822153","name":"KateMalloy","screen_name":"KatelynMalloy","location":"New York City ","url":null,"description":"AMDA'19 \u2022 18 \u2022 NYC\/LA \u2022 Musical Theater Major \u2022 Snapchat: katelynbeth97","protected":false,"verified":false,"followers_count":399,"friends_count":422,"listed_count":3,"favourites_count":8754,"statuses_count":18892,"created_at":"Sat Jan 10 00:50:57 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/768422213\/215d61bdfdc8905819d2eb0c9e672d2d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/768422213\/215d61bdfdc8905819d2eb0c9e672d2d.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538785746067456\/5kziaCdo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538785746067456\/5kziaCdo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18822153\/1447035132","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980663"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661659906048,"id_str":"663727661659906048","text":"RT @teamtoritas: a #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139367375,"id_str":"4139367375","name":"Cami","screen_name":"MICAmpeonaa_","location":"Ciudad Aut\u00f3noma de Buenos Aire","url":null,"description":"Micaelista \u2665 Valores y Codigos\nVerde Tricampeon\n#EquipoVerde","protected":false,"verified":false,"followers_count":21,"friends_count":46,"listed_count":0,"favourites_count":11,"statuses_count":2186,"created_at":"Sun Nov 08 05:20:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663549675274936320\/7BGVTI4F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:20 +0000 2015","id":663725565606785025,"id_str":"663725565606785025","text":"a #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013358545,"id_str":"4013358545","name":"2 MESES","screen_name":"teamtoritas","location":"18 conchudas\u2661","url":null,"description":"Un saludo gigante gigante al team toritas que estan siempre y van a veces y las amo asi que un saludo a todas ellas- Micaela Viciconte\u2661","protected":false,"verified":false,"followers_count":1034,"friends_count":157,"listed_count":0,"favourites_count":837,"statuses_count":2212,"created_at":"Thu Oct 22 01:00:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661752513230741504\/J_wQd34h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661752513230741504\/J_wQd34h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013358545\/1446609045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[2,17]},{"text":"LaDiosa","indices":[18,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[19,34]},{"text":"LaDiosa","indices":[35,43]}],"urls":[],"user_mentions":[{"screen_name":"teamtoritas","name":"2 MESES","id":4013358545,"id_str":"4013358545","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079980660"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655568384,"id_str":"663727661655568384","text":"\uff13\uff10\u56de\u3068\u304b\u306a\u3081\u305f\u3053\u3068\u8a00\u3063\u3066\u305f\u3089\u72af\u3059\u304b\u3089\u306d https:\/\/t.co\/p8quYE2Gfg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2920642429,"id_str":"2920642429","name":"\u3051\u3084\u307f\u3055\u304d","screen_name":"fedor09281","location":"\u672a\u6765\u3067\u5f85\u3063\u3066\u308b","url":null,"description":"\u690d\u7530\u6771\/\u690d\u7530\u4e2d3-4\/\u9ad8\u68211\u5e74\/\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u80cc\u304c\u9ad8\u3044\u30a4\u30b1\u30e1\u30f3\/\u7dcf\u5408\u683c\u95d8\u6280 \u4e0d\u6e80\u3092\u3076\u3061\u307e\u3051\u3066\u304f\u982d\u306b\u30dc\u30fc\u30f3\uff01","protected":false,"verified":false,"followers_count":212,"friends_count":225,"listed_count":0,"favourites_count":525,"statuses_count":10776,"created_at":"Sat Dec 06 12:53:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365781602746369\/kRSd_GCd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365781602746369\/kRSd_GCd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2920642429\/1440815192","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720783248646144,"quoted_status_id_str":"663720783248646144","quoted_status":{"created_at":"Mon Nov 09 14:12:20 +0000 2015","id":663720783248646144,"id_str":"663720783248646144","text":"\u8179\u7b4b\u3092\u308f\u308a\u305f\u3044\u5973\u306e\u5b50\u306f\u3053\u308c\u3092\u3084\u308c\u3070\u304a\u3051\n\nhttps:\/\/t.co\/oMMlDd7rC7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244195249,"id_str":"3244195249","name":"\u5175 \u85e4 \u2122 (\u671d\u306b\u5f31\u3044)","screen_name":"THE_HYODO","location":"\u304a\u305d\u3089\u304f\u3093\u306e\u306a\u304b\u306e\u3072\u3068\u2193","url":"http:\/\/twitter.com\/THE_SORAPIYO","description":"\u307e\u3058\u3081\u306a\u30c4\u30a4\u30c3\u30bf\u30e9\u30fc\u306e\u30ea\u30a2\u57a2\u307f\u305f\u3044\u306a\u3082\u306e\u3067\u3059\/\u4fdd\u5b88\u53f3\u6d3e \u30bf\u30ab\u6d3e","protected":false,"verified":false,"followers_count":492,"friends_count":374,"listed_count":6,"favourites_count":11355,"statuses_count":3851,"created_at":"Sat Jun 13 11:43:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000121","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658648997360369664\/s5mt9dM0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658648997360369664\/s5mt9dM0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244195249\/1446705944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662605386915012609,"id_str":"662605386915012609","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662605386915012609\/pu\/img\/fD253_gWRHlp92qa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662605386915012609\/pu\/img\/fD253_gWRHlp92qa.jpg","url":"https:\/\/t.co\/oMMlDd7rC7","display_url":"pic.twitter.com\/oMMlDd7rC7","expanded_url":"http:\/\/twitter.com\/__Suzu__arisa\/status\/662605558554361856\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":662605558554361856,"source_status_id_str":"662605558554361856","source_user_id":3492649152,"source_user_id_str":"3492649152"}]},"extended_entities":{"media":[{"id":662605386915012609,"id_str":"662605386915012609","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662605386915012609\/pu\/img\/fD253_gWRHlp92qa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662605386915012609\/pu\/img\/fD253_gWRHlp92qa.jpg","url":"https:\/\/t.co\/oMMlDd7rC7","display_url":"pic.twitter.com\/oMMlDd7rC7","expanded_url":"http:\/\/twitter.com\/__Suzu__arisa\/status\/662605558554361856\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":662605558554361856,"source_status_id_str":"662605558554361856","source_user_id":3492649152,"source_user_id_str":"3492649152","video_info":{"aspect_ratio":[1,1],"duration_millis":15098,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662605386915012609\/pu\/vid\/480x480\/GR1Z47F17eoXcfTZ.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662605386915012609\/pu\/pl\/S0538W-XUVe5DOmf.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662605386915012609\/pu\/vid\/480x480\/GR1Z47F17eoXcfTZ.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662605386915012609\/pu\/vid\/240x240\/ldCxi5MIVFKEooUh.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662605386915012609\/pu\/pl\/S0538W-XUVe5DOmf.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p8quYE2Gfg","expanded_url":"https:\/\/twitter.com\/the_hyodo\/status\/663720783248646144","display_url":"twitter.com\/the_hyodo\/stat\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980659"} +{"delete":{"status":{"id":647412821555150849,"id_str":"647412821555150849","user_id":2997234914,"user_id_str":"2997234914"},"timestamp_ms":"1447079980860"}} +{"delete":{"status":{"id":663727565199290368,"id_str":"663727565199290368","user_id":2442955947,"user_id_str":"2442955947"},"timestamp_ms":"1447079980813"}} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661680754689,"id_str":"663727661680754689","text":"RT @LeezKenito: Liza TheMostBeautiful\n\n@tccandler https:\/\/t.co\/Wy1lwQWpn6","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3969841573,"id_str":"3969841573","name":"MairQuen","screen_name":"mair_quen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":51,"listed_count":8,"favourites_count":6,"statuses_count":32199,"created_at":"Wed Oct 21 14:08:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656836935743348736\/hLiLoQJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656836935743348736\/hLiLoQJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3969841573\/1445437141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:01 +0000 2015","id":663726993712672769,"id_str":"663726993712672769","text":"Liza TheMostBeautiful\n\n@tccandler https:\/\/t.co\/Wy1lwQWpn6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246556597,"id_str":"3246556597","name":"Daenerys","screen_name":"LeezKenito","location":null,"url":null,"description":"-SHIT HAPPENS ALL THE TIME-","protected":false,"verified":false,"followers_count":175,"friends_count":81,"listed_count":5,"favourites_count":5862,"statuses_count":19508,"created_at":"Tue Jun 16 05:16:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663254832958955520\/7VtcZPOU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663254832958955520\/7VtcZPOU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246556597\/1444639449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[23,33]}],"symbols":[],"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeezKenito","name":"Daenerys","id":3246556597,"id_str":"3246556597","indices":[3,14]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[39,49]}],"symbols":[],"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}},"source_status_id":663726993712672769,"source_status_id_str":"663726993712672769","source_user_id":3246556597,"source_user_id_str":"3246556597"}]},"extended_entities":{"media":[{"id":663726990353022976,"id_str":"663726990353022976","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILl_UwAA-AFT.jpg","url":"https:\/\/t.co\/Wy1lwQWpn6","display_url":"pic.twitter.com\/Wy1lwQWpn6","expanded_url":"http:\/\/twitter.com\/LeezKenito\/status\/663726993712672769\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":408,"resize":"fit"},"large":{"w":534,"h":642,"resize":"fit"},"medium":{"w":534,"h":642,"resize":"fit"}},"source_status_id":663726993712672769,"source_status_id_str":"663726993712672769","source_user_id":3246556597,"source_user_id_str":"3246556597"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980665"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661684932609,"id_str":"663727661684932609","text":"\u30c8\u30e9\u30f3\u30b9\u30bf\u30fc\u30f3\u63a2\u3057\u3066\u305f\u3089\u3053\u3093\u306a\u3093\u51fa\u3066\u304d\u305f https:\/\/t.co\/dxAxjW3cbf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287166103,"id_str":"287166103","name":"\u30ca\u30ba\u30ca\u30fb\u30f4\u30a7\u30b9\u30c6\u30f3\u30d5\u30eb\u30b9","screen_name":"WesttenFluss","location":"\u5948\u826f \u72ec\u7acb\u56fd\u5bb6JINGU\/skypeID:woozie99","url":"http:\/\/twpf.jp\/WesttenFluss","description":"\u30ca\u30ca\u30b7\u30b9\u3068\u304b\u30ca\u30ba\u30ca\u3068\u304b\u30b7\u30f3\u30d5\u30a9\u30ae\u30a2\u3068\u304b\u3002\u30ca\u30ca\u30b7\u30b9\u63a8\u3057\u306f\u898b\u3066\u306e\u901a\u308a\u3002\u30e2\u30f3\u30b9\u30bf\u30fc\u30a8\u30ca\u30b8\u30fc\u6d3e\u3002 \u6700\u8fd1\u904a\u622f\u30e2\u30c1\u30d9\u9ad8\u3081\u30f4\u30a1\u30a4\u30b9\u4f4e\u3081\u3002 \uff86\uff7a\uff97!!\u30fd(\u00b4\u2200\uff40)\uff19","protected":false,"verified":false,"followers_count":582,"friends_count":767,"listed_count":18,"favourites_count":3119,"statuses_count":34546,"created_at":"Sun Apr 24 13:00:17 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663498862707871744\/3dWRY8Qu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663498862707871744\/3dWRY8Qu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287166103\/1443159478","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727652621017089,"id_str":"663727652621017089","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyJIUYAENvXx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyJIUYAENvXx.jpg","url":"https:\/\/t.co\/dxAxjW3cbf","display_url":"pic.twitter.com\/dxAxjW3cbf","expanded_url":"http:\/\/twitter.com\/WesttenFluss\/status\/663727661684932609\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727652621017089,"id_str":"663727652621017089","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyJIUYAENvXx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyJIUYAENvXx.jpg","url":"https:\/\/t.co\/dxAxjW3cbf","display_url":"pic.twitter.com\/dxAxjW3cbf","expanded_url":"http:\/\/twitter.com\/WesttenFluss\/status\/663727661684932609\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980666"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661668110336,"id_str":"663727661668110336","text":"( \u02d9-\u02d9 )\uff01\uff1f https:\/\/t.co\/VCYQYCwiR2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3465167599,"id_str":"3465167599","name":"\u3057\u308d\u306f","screen_name":"Shiroha_468","location":"\u8f9b\u5b50\u660e\u592a\u5b50\u770c","url":null,"description":"\u30ea\u30a2\u57a2\u517c\u8da3\u5473\u57a2\u3002\/\u9ed2\u30d0\u30b9\/\u9752\u6625\u00d7\u6a5f\u95a2\u9283\/\u30b9\u30af\u30d5\u30a7\u30b9\/\u30c7\u30ec\u30b9\u30c6\/\u30a2\u30a4\u30c1\u30e5\u30a6\/\u30a2\u30a4\u30ca\u30ca\/\u5922\u30ad\u30e3\u30b9\/\u5922100\/\u3042\u3093\u30b9\u30bf\/SB69\/\u30cb\u30b3\u52d5\u5b9f\u6cc1\u8005\/\u58f0\u512a etc\u2026\u3002\u203b\u30c4\u30a4\u30fc\u30c8\u3081\u3063\u3061\u3083\u3046\u308b\u3055\u3044\u3067\u3059\u3002\u7a81\u7136\u7d61\u307f\u306b\u3044\u304d\u307e\u3059\u3002\u60aa\u3057\u304b\u3089\u305a\u3002\/since 2015.9.6\uff5e","protected":false,"verified":false,"followers_count":68,"friends_count":140,"listed_count":8,"favourites_count":339,"statuses_count":1405,"created_at":"Sun Sep 06 01:03:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649491260047163392\/D8BZj78o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649491260047163392\/D8BZj78o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3465167599\/1444409140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727658656624640,"id_str":"663727658656624640","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyfnUcAAs-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyfnUcAAs-ji.jpg","url":"https:\/\/t.co\/VCYQYCwiR2","display_url":"pic.twitter.com\/VCYQYCwiR2","expanded_url":"http:\/\/twitter.com\/Shiroha_468\/status\/663727661668110336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":124,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":376,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727658656624640,"id_str":"663727658656624640","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyfnUcAAs-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyfnUcAAs-ji.jpg","url":"https:\/\/t.co\/VCYQYCwiR2","display_url":"pic.twitter.com\/VCYQYCwiR2","expanded_url":"http:\/\/twitter.com\/Shiroha_468\/status\/663727661668110336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":124,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":376,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079980662"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661655552000,"id_str":"663727661655552000","text":"@La749 https:\/\/t.co\/NtZRq3rMyU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727283035770880,"in_reply_to_status_id_str":"663727283035770880","in_reply_to_user_id":486412632,"in_reply_to_user_id_str":"486412632","in_reply_to_screen_name":"La749","user":{"id":2886399464,"id_str":"2886399464","name":"\u795e\u306b\u30fc\u3055\u307e@\u9b54\u6cd5\u304c\u89e3\u3051\u305f\u30b8\u30e7\u30fc\u30b8","screen_name":"George13206","location":"\uff14\u6708\u304b\u3089\u795e\u5948\u5ddd","url":null,"description":"\u30d0\u30c8\u30eb\u30ac\u30fc\u30eb\/GF\/\u30b9\u30de\u30d6\u30e9\/DMP\/\u30c7\u30ec\u30b9\u30c6 \u3044\u3044\u52a0\u6e1b\u30d9\u30b9\u30c88\u4ee5\u4e0a\u53d6\u308a\u305f\u3055\u3042\u308b\u306a\uff1f \u79cb\u8449\u539f\u3001\u6a2a\u6d5c\u306b\u983b\u7e41\u306b\u51fa\u6ca1\u3002 CS\u306e\u6226\u7e3e \u30d9\u30b9\u30c864\u00d71\u56de \u30d9\u30b9\u30c832\u00d74\u56de \u30d9\u30b9\u30c816\u00d75\u56de","protected":false,"verified":false,"followers_count":187,"friends_count":177,"listed_count":2,"favourites_count":424,"statuses_count":8187,"created_at":"Sat Nov 01 14:36:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663329422909403136\/8vMyAEgS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663329422909403136\/8vMyAEgS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886399464\/1444578440","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"La749","name":"La","id":486412632,"id_str":"486412632","indices":[0,6]}],"symbols":[],"media":[{"id":663727650632921088,"id_str":"663727650632921088","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyBuUcAAkF_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyBuUcAAkF_A.jpg","url":"https:\/\/t.co\/NtZRq3rMyU","display_url":"pic.twitter.com\/NtZRq3rMyU","expanded_url":"http:\/\/twitter.com\/George13206\/status\/663727661655552000\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":398,"resize":"fit"},"large":{"w":583,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727650632921088,"id_str":"663727650632921088","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyBuUcAAkF_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyBuUcAAkF_A.jpg","url":"https:\/\/t.co\/NtZRq3rMyU","display_url":"pic.twitter.com\/NtZRq3rMyU","expanded_url":"http:\/\/twitter.com\/George13206\/status\/663727661655552000\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":398,"resize":"fit"},"large":{"w":583,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079980659"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661676523520,"id_str":"663727661676523520","text":"@onedirection Artist Of The Year #AMAs https:\/\/t.co\/Gp4wTAeClV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":209708391,"in_reply_to_user_id_str":"209708391","in_reply_to_screen_name":"onedirection","user":{"id":1055664024,"id_str":"1055664024","name":"dessy","screen_name":"stylesingmalik","location":"OTRA 25.03.15 ","url":null,"description":"yeah me and harry are actually dating","protected":false,"verified":false,"followers_count":2085,"friends_count":378,"listed_count":16,"favourites_count":8277,"statuses_count":70950,"created_at":"Wed Jan 02 17:41:11 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"54F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544381546497449984\/lVeM1Nbg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544381546497449984\/lVeM1Nbg.jpeg","profile_background_tile":true,"profile_link_color":"FA0AAE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C4A721","profile_text_color":"72324E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662158920220192768\/F42C-FRz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662158920220192768\/F42C-FRz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1055664024\/1446387949","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[33,38]}],"urls":[],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[0,13]}],"symbols":[],"media":[{"id":663727585889619968,"id_str":"663727585889619968","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIuQiUEAAzAdL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIuQiUEAAzAdL.jpg","url":"https:\/\/t.co\/Gp4wTAeClV","display_url":"pic.twitter.com\/Gp4wTAeClV","expanded_url":"http:\/\/twitter.com\/stylesingmalik\/status\/663727661676523520\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":699,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727585889619968,"id_str":"663727585889619968","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIuQiUEAAzAdL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIuQiUEAAzAdL.jpg","url":"https:\/\/t.co\/Gp4wTAeClV","display_url":"pic.twitter.com\/Gp4wTAeClV","expanded_url":"http:\/\/twitter.com\/stylesingmalik\/status\/663727661676523520\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":699,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727593905000452,"id_str":"663727593905000452","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIuuZVEAQcYAS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIuuZVEAQcYAS.jpg","url":"https:\/\/t.co\/Gp4wTAeClV","display_url":"pic.twitter.com\/Gp4wTAeClV","expanded_url":"http:\/\/twitter.com\/stylesingmalik\/status\/663727661676523520\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":699,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727616730394624,"id_str":"663727616730394624","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwDbU8AAjYIC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwDbU8AAjYIC.jpg","url":"https:\/\/t.co\/Gp4wTAeClV","display_url":"pic.twitter.com\/Gp4wTAeClV","expanded_url":"http:\/\/twitter.com\/stylesingmalik\/status\/663727661676523520\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":699,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727644811235328,"id_str":"663727644811235328","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxsCUkAAf__p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxsCUkAAf__p.jpg","url":"https:\/\/t.co\/Gp4wTAeClV","display_url":"pic.twitter.com\/Gp4wTAeClV","expanded_url":"http:\/\/twitter.com\/stylesingmalik\/status\/663727661676523520\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":699,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980664"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661647196160,"id_str":"663727661647196160","text":"RT @momomin217: \u304a\u59c9\u3061\u3083\u3093\u540c\u76df\uff01 https:\/\/t.co\/2lzud7gN0B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2476603406,"id_str":"2476603406","name":"\u30b7\u30d5","screen_name":"thief_shift1520","location":null,"url":null,"description":"\u30c7\u30ec\u30b9\u30c6\u3001\u30b0\u30e9\u30d6\u30eb\u3001\u30e2\u30d0\u30de\u30b9\u3001\u30df\u30ea\u30de\u30b9\u2026(\u00b4\u03c9\uff40)\n\u30c7\u30ec\u30b9\u30c6\u306f\u30b7\u30d5\u3068\u3044\u3046\u540d\u524d\n\u667a\u7d75\u91cc\u3092\u5f15\u3051\u306a\u304b\u3063\u305f\u667a\u7d75\u91ccP\n\u30b0\u30e9\u30d6\u30eb\u306f\u307e\u3063\u305f\u308a\u56e3\u306e\u56e3\u9577\u3057\u3066\u307e\u3059\u3088","protected":false,"verified":false,"followers_count":47,"friends_count":88,"listed_count":4,"favourites_count":5771,"statuses_count":19069,"created_at":"Sun May 04 08:44:03 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"27B846","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474497042207629313\/kzkiaM58.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474497042207629313\/kzkiaM58.jpeg","profile_background_tile":true,"profile_link_color":"9AD947","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655663472257032192\/ErimRRxL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655663472257032192\/ErimRRxL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2476603406\/1444498110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:43 +0000 2015","id":663720876941029377,"id_str":"663720876941029377","text":"\u304a\u59c9\u3061\u3083\u3093\u540c\u76df\uff01 https:\/\/t.co\/2lzud7gN0B","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1145144082,"id_str":"1145144082","name":"\u3232\u3082\u307a","screen_name":"momomin217","location":"\uff97\uff8c\uff9e\uff97\uff72\uff8c\uff9e\/\u54b2-saki-\/\u30c7\u30ec\u30de\u30b9","url":"http:\/\/pixiv.me\/m3m3","description":"\u305f\u307e\uff5e\u306b\u304a\u7d75\u63cf\u304d\u3057\u3066\u307e\u3059\u3002\u6700\u8fd1\u306f\u3084\u3084\u30c7\u30ec\u30de\u30b9\u6210\u5206\u304c\u591a\u3081\u3002\u3042\u3093\u307e\u308a\u304b\u3057\u3053\u304f\u306a\u3044\u5b50\u304c\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":14236,"friends_count":293,"listed_count":578,"favourites_count":2621,"statuses_count":29226,"created_at":"Sun Feb 03 13:20:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622770549299675136\/3uCTDc0m.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622770549299675136\/3uCTDc0m.jpg","profile_background_tile":true,"profile_link_color":"E00D49","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661314067701764097\/r_nAeunR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661314067701764097\/r_nAeunR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1145144082\/1445772054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":684,"favorite_count":1131,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720874424430592,"id_str":"663720874424430592","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","url":"https:\/\/t.co\/2lzud7gN0B","display_url":"pic.twitter.com\/2lzud7gN0B","expanded_url":"http:\/\/twitter.com\/momomin217\/status\/663720876941029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":703,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"},"medium":{"w":600,"h":412,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720874424430592,"id_str":"663720874424430592","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","url":"https:\/\/t.co\/2lzud7gN0B","display_url":"pic.twitter.com\/2lzud7gN0B","expanded_url":"http:\/\/twitter.com\/momomin217\/status\/663720876941029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":703,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"},"medium":{"w":600,"h":412,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"momomin217","name":"\u3232\u3082\u307a","id":1145144082,"id_str":"1145144082","indices":[3,14]}],"symbols":[],"media":[{"id":663720874424430592,"id_str":"663720874424430592","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","url":"https:\/\/t.co\/2lzud7gN0B","display_url":"pic.twitter.com\/2lzud7gN0B","expanded_url":"http:\/\/twitter.com\/momomin217\/status\/663720876941029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":703,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"},"medium":{"w":600,"h":412,"resize":"fit"}},"source_status_id":663720876941029377,"source_status_id_str":"663720876941029377","source_user_id":1145144082,"source_user_id_str":"1145144082"}]},"extended_entities":{"media":[{"id":663720874424430592,"id_str":"663720874424430592","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCnmYUcAAUqVg.png","url":"https:\/\/t.co\/2lzud7gN0B","display_url":"pic.twitter.com\/2lzud7gN0B","expanded_url":"http:\/\/twitter.com\/momomin217\/status\/663720876941029377\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":703,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"},"medium":{"w":600,"h":412,"resize":"fit"}},"source_status_id":663720876941029377,"source_status_id_str":"663720876941029377","source_user_id":1145144082,"source_user_id_str":"1145144082"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079980657"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661664088064,"id_str":"663727661664088064","text":"@storiedellarte #porcelain Boris Kustodiev 1913 Portrait de MV Dobuzhinsky https:\/\/t.co\/h16gXLaesv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":316444436,"in_reply_to_user_id_str":"316444436","in_reply_to_screen_name":"storiedellarte","user":{"id":947234815,"id_str":"947234815","name":"Couttet Lovera Carol","screen_name":"couttetlovera","location":"Marseille","url":null,"description":"La Provence Chamonix passionn\u00e9e bonne cuisine art contemporain cin\u00e9ma architecture","protected":false,"verified":false,"followers_count":389,"friends_count":758,"listed_count":51,"favourites_count":77,"statuses_count":8696,"created_at":"Wed Nov 14 07:10:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445597920272723968\/t02Y6-8q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445597920272723968\/t02Y6-8q.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2930556150\/d8581db453c920836bf7cd36e1ae0bde_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2930556150\/d8581db453c920836bf7cd36e1ae0bde_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947234815\/1395070823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"porcelain","indices":[16,26]}],"urls":[],"user_mentions":[{"screen_name":"storiedellarte","name":"storie dell'arte","id":316444436,"id_str":"316444436","indices":[0,15]}],"symbols":[],"media":[{"id":663727660338683905,"id_str":"663727660338683905","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyl4WoAEKGbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyl4WoAEKGbI.jpg","url":"https:\/\/t.co\/h16gXLaesv","display_url":"pic.twitter.com\/h16gXLaesv","expanded_url":"http:\/\/twitter.com\/couttetlovera\/status\/663727661664088064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":500,"h":412,"resize":"fit"},"medium":{"w":500,"h":412,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727660338683905,"id_str":"663727660338683905","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyl4WoAEKGbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyl4WoAEKGbI.jpg","url":"https:\/\/t.co\/h16gXLaesv","display_url":"pic.twitter.com\/h16gXLaesv","expanded_url":"http:\/\/twitter.com\/couttetlovera\/status\/663727661664088064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":500,"h":412,"resize":"fit"},"medium":{"w":500,"h":412,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079980661"} +{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661664071680,"id_str":"663727661664071680","text":"\uff20s0t Searched for \"null\" at November 09, 2015 at 11:38PM by FaRianTSK https:\/\/t.co\/HPW1fGyS2h","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1060750549,"in_reply_to_user_id_str":"1060750549","in_reply_to_screen_name":"s0t","user":{"id":2958734845,"id_str":"2958734845","name":"\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164","screen_name":"A0WA_","location":null,"url":null,"description":"mmm\u2665\ufe0e","protected":false,"verified":false,"followers_count":1898,"friends_count":0,"listed_count":13,"favourites_count":6581,"statuses_count":31660,"created_at":"Sun Jan 04 17:20:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662239897021845504\/nl1A7uUZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662239897021845504\/nl1A7uUZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958734845\/1446632339","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s0t","name":"Asp.\u3086\u3063\u3051","id":1060750549,"id_str":"1060750549","indices":[0,4]}],"symbols":[],"media":[{"id":663727661508898816,"id_str":"663727661508898816","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyqPWsAAoYAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyqPWsAAoYAT.jpg","url":"https:\/\/t.co\/HPW1fGyS2h","display_url":"pic.twitter.com\/HPW1fGyS2h","expanded_url":"http:\/\/twitter.com\/A0WA_\/status\/663727661664071680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727661508898816,"id_str":"663727661508898816","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyqPWsAAoYAT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyqPWsAAoYAT.jpg","url":"https:\/\/t.co\/HPW1fGyS2h","display_url":"pic.twitter.com\/HPW1fGyS2h","expanded_url":"http:\/\/twitter.com\/A0WA_\/status\/663727661664071680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079980661"} +{"delete":{"status":{"id":663712591538077697,"id_str":"663712591538077697","user_id":3835604420,"user_id_str":"3835604420"},"timestamp_ms":"1447079981045"}} +{"delete":{"status":{"id":658483619858526208,"id_str":"658483619858526208","user_id":3728057359,"user_id_str":"3728057359"},"timestamp_ms":"1447079981482"}} +{"delete":{"status":{"id":663703628297863168,"id_str":"663703628297863168","user_id":262140818,"user_id_str":"262140818"},"timestamp_ms":"1447079981623"}} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870987264,"id_str":"663727665870987264","text":"RT @cakirfatih45: @zaferates74 @yalcintopcu06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1480584456,"id_str":"1480584456","name":"Balacan","screen_name":"Balacanleydi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13347,"friends_count":2968,"listed_count":11,"favourites_count":11049,"statuses_count":66000,"created_at":"Mon Jun 03 20:54:04 +0000 2013","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419171553944035328\/oHd2LpFD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419171553944035328\/oHd2LpFD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1480584456\/1388773240","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:43:03 +0000 2015","id":663683212166742016,"id_str":"663683212166742016","text":"@zaferates74 @yalcintopcu06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663683008420061184,"in_reply_to_status_id_str":"663683008420061184","in_reply_to_user_id":1640127919,"in_reply_to_user_id_str":"1640127919","in_reply_to_screen_name":"zaferates74","user":{"id":2848611467,"id_str":"2848611467","name":"fatih \u00e7akir","screen_name":"cakirfatih45","location":null,"url":null,"description":"FATIHIN TORUNU\/Analiz Degil Sadece Gercekler-Ankara","protected":false,"verified":false,"followers_count":9550,"friends_count":216,"listed_count":46,"favourites_count":13418,"statuses_count":27290,"created_at":"Tue Oct 28 18:38:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548049731554123777\/wRrX8jUs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548049731554123777\/wRrX8jUs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848611467\/1445710062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zaferates74","name":"ZAFER ATE\u015e","id":1640127919,"id_str":"1640127919","indices":[0,12]},{"screen_name":"yalcintopcu06","name":"Yal\u00e7\u0131n Top\u00e7u","id":2831285560,"id_str":"2831285560","indices":[13,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cakirfatih45","name":"fatih \u00e7akir","id":2848611467,"id_str":"2848611467","indices":[3,16]},{"screen_name":"zaferates74","name":"ZAFER ATE\u015e","id":1640127919,"id_str":"1640127919","indices":[18,30]},{"screen_name":"yalcintopcu06","name":"Yal\u00e7\u0131n Top\u00e7u","id":2831285560,"id_str":"2831285560","indices":[31,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665849999360,"id_str":"663727665849999360","text":"County lines closing in on me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2880840374,"id_str":"2880840374","name":"Daisy","screen_name":"daisssyduke","location":null,"url":null,"description":"r.i.p luis","protected":false,"verified":false,"followers_count":672,"friends_count":516,"listed_count":2,"favourites_count":1351,"statuses_count":22402,"created_at":"Tue Oct 28 14:07:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661201473938653185\/50tCqIJc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661201473938653185\/50tCqIJc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2880840374\/1442543785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079981659"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862606848,"id_str":"663727665862606848","text":"RT @CFLuanSantana: Exaaaatamente! RT @narcisocaio: @CFLuanSantana Marca pra semana que vem , essa semana vou estar muito ocupado votando no\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425035899,"id_str":"425035899","name":"rayane","screen_name":"lrvesgo","location":"pedro","url":"http:\/\/littlegirlofmaddox.tumblr.com","description":"ls ddl pll sq maddox","protected":false,"verified":false,"followers_count":5524,"friends_count":4859,"listed_count":3,"favourites_count":4180,"statuses_count":89165,"created_at":"Wed Nov 30 13:36:58 +0000 2011","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642096456766226434\/ZBoJm_5p.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642096456766226434\/ZBoJm_5p.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663463037525991424\/HceEAET3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663463037525991424\/HceEAET3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425035899\/1446221248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:03 +0000 2015","id":663723981208440832,"id_str":"663723981208440832","text":"Exaaaatamente! RT @narcisocaio: @CFLuanSantana Marca pra semana que vem , essa semana vou estar muito ocupado votando no NEGO LS.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177021046,"id_str":"177021046","name":"Central de f\u00e3s LS.","screen_name":"CFLuanSantana","location":null,"url":"http:\/\/www.luansantana.com.br","description":"Twitter oficial da Central de F\u00e3s Luan Santana. Escrit\u00f3rio do artista. Siga o twitter do Luan Santana @luansantana","protected":false,"verified":false,"followers_count":398209,"friends_count":1609,"listed_count":3835,"favourites_count":3,"statuses_count":14548,"created_at":"Wed Aug 11 01:43:35 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"051518","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461226263730855938\/e015OrOg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461226263730855938\/e015OrOg.jpeg","profile_background_tile":false,"profile_link_color":"051518","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9B8C75","profile_text_color":"362C19","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583284268513812480\/FFP0DEqD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583284268513812480\/FFP0DEqD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177021046\/1441205269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":166,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"narcisocaio","name":"Canarciso","id":267452490,"id_str":"267452490","indices":[18,30]},{"screen_name":"CFLuanSantana","name":"Central de f\u00e3s LS.","id":177021046,"id_str":"177021046","indices":[32,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CFLuanSantana","name":"Central de f\u00e3s LS.","id":177021046,"id_str":"177021046","indices":[3,17]},{"screen_name":"narcisocaio","name":"Canarciso","id":267452490,"id_str":"267452490","indices":[37,49]},{"screen_name":"CFLuanSantana","name":"Central de f\u00e3s LS.","id":177021046,"id_str":"177021046","indices":[51,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879339008,"id_str":"663727665879339008","text":"RT @NelliesSk: Happy Monday Everyone! Let's make it a great week. \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76124954,"id_str":"76124954","name":"Ilaria M. \u10e6","screen_name":"_thendofallhope","location":"Italy","url":null,"description":"Happy, free, confused and lonely at the same time in the best way \u2020","protected":false,"verified":false,"followers_count":2527,"friends_count":2781,"listed_count":69,"favourites_count":997,"statuses_count":83564,"created_at":"Mon Sep 21 19:57:49 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180535851\/Q1_GT9e_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180535851\/Q1_GT9e_.png","profile_background_tile":false,"profile_link_color":"A8176E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656896707821764610\/5zUBBIYE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656896707821764610\/5zUBBIYE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76124954\/1411739574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:24 +0000 2015","id":663695131330105344,"id_str":"663695131330105344","text":"Happy Monday Everyone! Let's make it a great week. \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3588990676,"id_str":"3588990676","name":"Nellies Southern Kit","screen_name":"NelliesSk","location":"Belmont","url":"https:\/\/www.facebook.com\/Nellies-Southern-Kitchen-471016433070575","description":"New restaurant coming to downtown Belmont. Nellie\u2019s will feature a Southern-Style Cuisine. Owned and operated by the Jonas Family.\nhttp:\/\/t.co\/NXurG5RTCJ","protected":false,"verified":false,"followers_count":982,"friends_count":187,"listed_count":6,"favourites_count":846,"statuses_count":379,"created_at":"Tue Sep 08 15:32:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647023308915904512\/kpJ7FDEN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647023308915904512\/kpJ7FDEN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3588990676\/1443097778","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NelliesSk","name":"Nellies Southern Kit","id":3588990676,"id_str":"3588990676","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845805056,"id_str":"663727665845805056","text":"\u0642\u0636\u064a\u0629 #\u0627\u0644\u0628\u062f\u0648\u0646 \u0645\u0646 \u0623\u0647\u0645 \u0627\u0644\u0642\u0636\u0627\u064a\u0627 \u0627\u0644\u0645\u0647\u0645\u0644\u0629 \u0641\u064a \u0628\u0644\u062f\u064a \u0648 ( \u0635\u0627\u0644\u062d \u0627\u0644\u0641\u0636\u0627\u0644\u0629 ) \u0628\u062f\u0644\u0627\u064b \u0645\u0646 \u0645\u0639\u0627\u0644\u062c\u0629\u0650 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0623\u0635\u0628\u062d \u0647\u0648 \u0627\u0644\u0645\u0634\u0643\u0644\u0629","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268390563,"id_str":"268390563","name":"\u0623\u062d\u0640\u0645\u0640\u062f \u0627\u0644\u0640\u0637\u0640\u0631\u0651\u0627\u062d","screen_name":"AHMAD_ALTARRAH","location":"\u062f\u0648\u0644\u0640\u0629 \u0627\u0644\u0640\u0643\u0640\u0648\u064a\u0640\u062a","url":null,"description":"\u0645\u0648\u0627\u0637\u0646 \u0645\u0646 \u0627\u0644\u0637\u0628\u0642\u0629 \u0627\u0644\u0645\u0642\u062a\u0631\u0636\u0629 \u064a\u064f\u063a\u0631\u062f \u062e\u0627\u0631\u062c \u0627\u0644\u0633\u0631\u0628 .. \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0645\u0646 \u00bb\u062a\u0623\u0644\u064a\u0641\u064a\u00ab \u0637\u0628\u0639\u0627\u064b \u30c4 \u060c - \u062a\u062c\u062f\u0648\u0646\u064a \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629 -","protected":false,"verified":false,"followers_count":3341,"friends_count":129,"listed_count":4,"favourites_count":3637,"statuses_count":17443,"created_at":"Fri Mar 18 17:35:54 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661188466240151553\/xz4lcwum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661188466240151553\/xz4lcwum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268390563\/1447065823","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0628\u062f\u0648\u0646","indices":[5,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862561793,"id_str":"663727665862561793","text":"Love single lessons bc they go by so quickly \ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503008061,"id_str":"503008061","name":"clo\u26c5\ufe0f","screen_name":"chloe_wheatleyx","location":"United Kingdom","url":null,"description":"I think too much & feel too deeply","protected":false,"verified":false,"followers_count":1386,"friends_count":1246,"listed_count":9,"favourites_count":7530,"statuses_count":25741,"created_at":"Sat Feb 25 13:23:33 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656935420534640640\/IN7Ai6o7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656935420534640640\/IN7Ai6o7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503008061\/1446765650","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"50f2d0272381533f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/50f2d0272381533f.json","place_type":"admin","name":"East Midlands","full_name":"East Midlands, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-2.034105,51.977226],[-2.034105,53.616356],[0.357994,53.616356],[0.357994,51.977226]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862471680,"id_str":"663727665862471680","text":"\u30e6\u30ed\u30c9\u30eb\u306e\u4e0a\u304c\u3089\u306a\u3044\u611f\u3058\u306e\u5b89\u5fc3\u611f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3201087504,"id_str":"3201087504","name":"\u304d\u3087\u3046\u3078\u3044","screen_name":"gooooooooon0107","location":null,"url":null,"description":"\u30da\u30da\u30ed\u30f3\u30c1\u30fc\u30ce\u5927\u4f50\u306f\u8a00\u3044\u307e\u3057\u305f\u3002\n\u300c\u4e16\u306e\u4e2d\u306b\u306f2\u7a2e\u985e\u306e\u4eba\u9593\u304c\u3044\u308b\u3002\u305d\u308c\u306f\u4eba\u3092\u50b7\u3064\u3051\u308b\u5618\u3092\u5410\u304f\u4eba\u9593\u3068\u4eba\u3092\u5b88\u308b\u305f\u3081\u306e\u5618\u3092\u3064\u304f\u4eba\u9593\u3060\u3002\u300d\n\u30ab\u30eb\u30dc\u30ca\u30fc\u30e9\u5a66\u4eba\u300c\u3042\u3089\u3001\u79c1\u306f\u5618\u306a\u3093\u3066\u3064\u3044\u305f\u3053\u3068\u304c\u306a\u3044\u304b\u30893\u7a2e\u985e\u306e\u4eba\u9593\u3088\u300d\n\u30da\u30da\u30ed\u30f3\u5927\u4f50\u300c\u3042\u306a\u305f\u306f\u3001\u9eba\u3067\u3059\u3002\u300d","protected":false,"verified":false,"followers_count":11,"friends_count":22,"listed_count":0,"favourites_count":0,"statuses_count":106,"created_at":"Sun May 17 10:58:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602122758332395520\/5bQO5vjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602122758332395520\/5bQO5vjZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3201087504\/1432392228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665866780672,"id_str":"663727665866780672","text":"Se eu n\u00e3o for minha m\u00e3e vai me matar, isso eu tenho certeza..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2436034410,"id_str":"2436034410","name":"Sou como a Lua ","screen_name":"Kaah_Bragaa","location":"Rio de Janeiro, Brasil","url":"https:\/\/instagram.com\/kaahgnoma","description":"Tenho s\u00e9rios problemas mentais, sentimentais, sou estranha e namorada da @drownina7x \u2764 \u21ad 18 \u21ad \u2653 \u21ad M\u00fasica \u2764 \u21ad Livros \u21ad Fluminense \u2764 \u21ad H\u00e9tero? N\u00c3O \u2741 \u21ad \u0950 \u21ad","protected":false,"verified":false,"followers_count":1816,"friends_count":1073,"listed_count":2,"favourites_count":4893,"statuses_count":42104,"created_at":"Wed Apr 09 20:51:56 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"8964B3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497875184682930177\/UOfh03Bw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497875184682930177\/UOfh03Bw.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659814179315011584\/EdwOQxpG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659814179315011584\/EdwOQxpG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2436034410\/1446688957","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079981663"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845633024,"id_str":"663727665845633024","text":"RT @evansevans2525: \u7a81\u7136\u3067\u3059\u304cCAS\u3092\u307b\u3093\u306e\u5c11\u3057\u3060\u3051\u3084\u308a\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4024820892,"id_str":"4024820892","name":"*\u306f\u30fc\u3061\u3083\u3093*\uff20\u3057\u3093\u3084\u3093","screen_name":"_ha_chan_14oct","location":"\uff0a\u304d\u3063\u3068\u4e00\u9014\u3067\u3054\u3081\u3093\u306a\u3055\u3044\uff0a","url":null,"description":"\uff0a\u6b4c\u3044\u624b\u3055\u3093\u3068\u304b\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3055\u3093\u3068\u304b\n\uff0a\u307b\u307c\u6bce\u65e5CAS\u805e\u3044\u3066\u7652\u3055\u308c\u3066\u307e\u3059(;_;)\n\uff0a\u304a\u3093\u304c\u304f\u304c\u3059\u304d\u3067\u3059(*\u00b4-`)\n\uff0a\u3088\u304f\u9a5a\u304b\u308c\u308b\u3051\u3069\u4e00\u5fdc\u9ad8\u6821\u751f\u3067\u3059(..)\u307b\u3093\u3068\u3067\u3059(..)\u83ef\u306eJK\u3067\u3059(..)\n\uff0a\u79c1\u306a\u3093\u304b\u304c\uff20\u3057\u3093\u3084\u3093\u3067\u3044\u3044\u306e\u304b\u306a...(..)\n*\u3057\u3093\u3084\u3093*DISH\/\/*","protected":false,"verified":false,"followers_count":20,"friends_count":43,"listed_count":0,"favourites_count":529,"statuses_count":289,"created_at":"Mon Oct 26 13:43:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658676417387847680\/nZ84DR1d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658676417387847680\/nZ84DR1d_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:03 +0000 2015","id":663722726322888710,"id_str":"663722726322888710","text":"\u7a81\u7136\u3067\u3059\u304cCAS\u3092\u307b\u3093\u306e\u5c11\u3057\u3060\u3051\u3084\u308a\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1494636864,"id_str":"1494636864","name":"\u3057\u3093\u3084\u3093","screen_name":"evansevans2525","location":"\u2193\u6b4c\u3063\u3066\u307f\u305f\u52d5\u753b\u2193","url":"http:\/\/nicovideo.jp\/mylist\/50518707","description":"\u6b4c\u3044\u624b\/\u4e3b\u306b\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u3001\u30c4\u30a4\u30ad\u30e3\u30b9\u3067\u6b4c\u3063\u3066\u307e\u3059\u30c4\u30a4\u30ad\u30e3\u30b9URL\u3010\u2022http:\/\/twitcasting.tv\/evansevans2525\u3011\u4f9d\u983c\u3084\u9023\u7d61\u7b49\u3042\u308a\u307e\u3057\u305f\u3089\u3053\u3061\u3089\u306b\u3069\u3046\u305e\uff01\u3010shinyan_2525@yahoo.co.jp\u3011","protected":false,"verified":false,"followers_count":45861,"friends_count":115,"listed_count":288,"favourites_count":4590,"statuses_count":540,"created_at":"Sun Jun 09 04:48:45 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660776076281430017\/4bNVm_7__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660776076281430017\/4bNVm_7__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1494636864\/1446376268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":278,"favorite_count":475,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"evansevans2525","name":"\u3057\u3093\u3084\u3093","id":1494636864,"id_str":"1494636864","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665849876480,"id_str":"663727665849876480","text":"RT @manbouyausagi: \u4e2d\u6751\u85cd\u7f8e\u3055\u3093\u306e\u53ef\u611b\u3044\u30da\u30f3\u30ae\u30f3\u96d1\u8ca8\u300c\u3082\u3053\u307a\u3093\u300d\u306e\u30c8\u30fc\u30c8\u30d0\u30c3\u30b0\u5165\u8377\u3057\u307e\u3057\u305f\u3002\u7e26\u6a2a\u3068\u3082A4\u304c\u5165\u308b\u4fbf\u5229\u306a\u30b5\u30a4\u30ba\u3002\u767d\u3044\u751f\u5730\u3068\u660e\u308b\u3081\u306e\u30d6\u30eb\u30fc\u304c\u723d\u3084\u304b\u3067\u3059\u3002https:\/\/t.co\/oGtWXwATSO\u3000\u3010\u307e\u3093\u307c\u3046\u5c4b\u30c9\u30c3\u30c8\u30b3\u30e0\u3011 https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86955974,"id_str":"86955974","name":"\u3082\u3053\u307a\u3093","screen_name":"mocopeng","location":"\u3082\u3053\u307a\u3093\u3073\u3085\u30fc","url":"http:\/\/mocopengillust.tumblr.com\/","description":"\u697d\u5929\u5bb6\u3067\u6d6a\u6f2b\u4e3b\u7fa9\u306e\u307a\u3093\u304e\u3093\u3002\u30da\u30f3\u30cd\u30fc\u30e0\uff1a\u4e2d\u6751\u85cd\u7f8e \u2605\u6771\u4eac\u306e\u6247\u5b50\u5c4b\u3067\u5546\u54c1\u30c7\u30b6\u30a4\u30f3\u306e\u304a\u4ed5\u4e8b\u3002\u2605\u3082\u3053\u307a\u3093\u30b0\u30c3\u30ba\u901a\u8ca9\u306f\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30e2\u30fc\u30b7\u30e7\u30f3\u3055\u3093\u304b\u3089\uff01http:\/\/cminc.thebase.in\/ \u2605iphone\u30b1\u30fc\u30b9\u306fDesignersBank\u3055\u3093\u304b\u3089\u266a http:\/\/designersbank.net\/shop\/","protected":false,"verified":false,"followers_count":4145,"friends_count":1266,"listed_count":170,"favourites_count":6663,"statuses_count":27977,"created_at":"Mon Nov 02 14:46:58 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161628057\/wprtRnr7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161628057\/wprtRnr7.png","profile_background_tile":true,"profile_link_color":"FF3853","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"5463E8","profile_text_color":"001EA6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440490045699420161\/dsjE9V2K_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440490045699420161\/dsjE9V2K_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86955974\/1413189995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:15 +0000 2015","id":663702895661989890,"id_str":"663702895661989890","text":"\u4e2d\u6751\u85cd\u7f8e\u3055\u3093\u306e\u53ef\u611b\u3044\u30da\u30f3\u30ae\u30f3\u96d1\u8ca8\u300c\u3082\u3053\u307a\u3093\u300d\u306e\u30c8\u30fc\u30c8\u30d0\u30c3\u30b0\u5165\u8377\u3057\u307e\u3057\u305f\u3002\u7e26\u6a2a\u3068\u3082A4\u304c\u5165\u308b\u4fbf\u5229\u306a\u30b5\u30a4\u30ba\u3002\u767d\u3044\u751f\u5730\u3068\u660e\u308b\u3081\u306e\u30d6\u30eb\u30fc\u304c\u723d\u3084\u304b\u3067\u3059\u3002https:\/\/t.co\/oGtWXwATSO\u3000\u3010\u307e\u3093\u307c\u3046\u5c4b\u30c9\u30c3\u30c8\u30b3\u30e0\u3011 https:\/\/t.co\/yPJrp3Mzvp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613226032,"id_str":"613226032","name":"\u307e\u3093\u307c\u3046\u5c4b\u3046\u3055\u304e","screen_name":"manbouyausagi","location":"\u5343\u8449\u770c","url":"http:\/\/manbouya.com\/","description":"\u6d77\u306e\u751f\u304d\u7269\u96d1\u8ca8\u901a\u8ca9\u300c\u307e\u3093\u307c\u3046\u5c4b\u30c9\u30c3\u30c8\u30b3\u30e0\u300d\u3068\u3001\u9ed2\u732b\u30b0\u30c3\u30ba\u5c02\u9580\u5e97\u300c\u9ed2\u732b\u96d1\u8ca8\u5e97\u300d\u3092\u904b\u55b6\u3057\u3066\u3044\u307e\u3059\u3002\r\n\u306a\u3093\u3068\u304b\u6bcd\u89aa\u696d\u3082\u3084\u3063\u3066\u308b\u304b\u306a\uff1f\r\n\u30d4\u30a2\u30ce\u3092\u5f3e\u304f\u3053\u3068\u3001\u6b4c\u3092\u5504\u3046\u3053\u3068\u304c\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":52,"friends_count":24,"listed_count":2,"favourites_count":3,"statuses_count":175,"created_at":"Wed Jun 20 07:32:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2324721115\/___JPG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2324721115\/___JPG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613226032\/1392743488","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oGtWXwATSO","expanded_url":"http:\/\/manbouya.com\/?pid=95370529","display_url":"manbouya.com\/?pid=95370529","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663702894474989568,"id_str":"663702894474989568","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","url":"https:\/\/t.co\/yPJrp3Mzvp","display_url":"pic.twitter.com\/yPJrp3Mzvp","expanded_url":"http:\/\/twitter.com\/manbouyausagi\/status\/663702895661989890\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":230,"resize":"fit"},"medium":{"w":490,"h":332,"resize":"fit"},"large":{"w":490,"h":332,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702894474989568,"id_str":"663702894474989568","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","url":"https:\/\/t.co\/yPJrp3Mzvp","display_url":"pic.twitter.com\/yPJrp3Mzvp","expanded_url":"http:\/\/twitter.com\/manbouyausagi\/status\/663702895661989890\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":230,"resize":"fit"},"medium":{"w":490,"h":332,"resize":"fit"},"large":{"w":490,"h":332,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oGtWXwATSO","expanded_url":"http:\/\/manbouya.com\/?pid=95370529","display_url":"manbouya.com\/?pid=95370529","indices":[90,113]}],"user_mentions":[{"screen_name":"manbouyausagi","name":"\u307e\u3093\u307c\u3046\u5c4b\u3046\u3055\u304e","id":613226032,"id_str":"613226032","indices":[3,17]}],"symbols":[],"media":[{"id":663702894474989568,"id_str":"663702894474989568","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","url":"https:\/\/t.co\/yPJrp3Mzvp","display_url":"pic.twitter.com\/yPJrp3Mzvp","expanded_url":"http:\/\/twitter.com\/manbouyausagi\/status\/663702895661989890\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":230,"resize":"fit"},"medium":{"w":490,"h":332,"resize":"fit"},"large":{"w":490,"h":332,"resize":"fit"}},"source_status_id":663702895661989890,"source_status_id_str":"663702895661989890","source_user_id":613226032,"source_user_id_str":"613226032"}]},"extended_entities":{"media":[{"id":663702894474989568,"id_str":"663702894474989568","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRB2UkAAOQft.png","url":"https:\/\/t.co\/yPJrp3Mzvp","display_url":"pic.twitter.com\/yPJrp3Mzvp","expanded_url":"http:\/\/twitter.com\/manbouyausagi\/status\/663702895661989890\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":230,"resize":"fit"},"medium":{"w":490,"h":332,"resize":"fit"},"large":{"w":490,"h":332,"resize":"fit"}},"source_status_id":663702895661989890,"source_status_id_str":"663702895661989890","source_user_id":613226032,"source_user_id_str":"613226032"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981659"} +{"delete":{"status":{"id":662606729717288961,"id_str":"662606729717288961","user_id":2945845718,"user_id_str":"2945845718"},"timestamp_ms":"1447079981694"}} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665858281472,"id_str":"663727665858281472","text":"\u305f\u3060\u3044\u307e\uff01\n\u307f\u3093\u306a\u3068\u3046\u3089\u307f\u3085\u898b\u3066\u308b\uff01(>_<)\n\u3046\u3061\u3082\u65e9\u304f\u898b\u305f\u3044\u301c\u301c\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129236193,"id_str":"129236193","name":"\u572d\uff20\u3064\u306d\u3061\u3083\u307e\u306f\u77f3\u5207\u4e38LOVE","screen_name":"kei_takasugawa","location":"\u77f3\u5207\u4e38\u304c\u5f85\u3064\u672c\u4e38","url":null,"description":"\u77f3\u5207\u4e38\u304c\u5c0a\u904e\u304e\u308b \u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":111,"friends_count":188,"listed_count":3,"favourites_count":524,"statuses_count":19721,"created_at":"Sat Apr 03 16:28:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458999609629478912\/OIhHtJsr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458999609629478912\/OIhHtJsr.png","profile_background_tile":false,"profile_link_color":"D44E4E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627904966766649345\/VhAENfzF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627904966766649345\/VhAENfzF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129236193\/1433517656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981661"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665866784768,"id_str":"663727665866784768","text":"RT @soyunabateria: No s\u00e9 qu\u00e9 me impulsa m\u00e1s a usar auriculares, si el amor a la m\u00fasica o el odio al mundo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4105807551,"id_str":"4105807551","name":"\u03b9\u03b7\u03bd\u03b9\u0455\u03b9\u0432\u2113\u0454","screen_name":"girl5sos_","location":"Madrid, Comunidad de Madrid","url":null,"description":"15 inviernos. 5 Seconds of summer\u2764.LukeGirl. \n#5SOSFAM","protected":false,"verified":false,"followers_count":14,"friends_count":33,"listed_count":0,"favourites_count":2,"statuses_count":26,"created_at":"Tue Nov 03 16:54:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662381034525360128\/cy1PnGMQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662381034525360128\/cy1PnGMQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4105807551\/1446758918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 17:23:47 +0000 2015","id":660869859547455488,"id_str":"660869859547455488","text":"No s\u00e9 qu\u00e9 me impulsa m\u00e1s a usar auriculares, si el amor a la m\u00fasica o el odio al mundo.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2346480625,"id_str":"2346480625","name":"Soy Una Bateria","screen_name":"soyunabateria","location":null,"url":null,"description":"http:\/\/www.facebook.com\/soyunabateria\nhttp:\/\/www.instagram.com\/soyunabateria\nhttp:\/\/www.vine.co\/soyunabateria Contacto\/Publicidad: soyunabateria@hotmail.com","protected":false,"verified":false,"followers_count":189818,"friends_count":0,"listed_count":175,"favourites_count":0,"statuses_count":10385,"created_at":"Sun Feb 16 08:08:52 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555096888978841600\/WwZSrff6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555096888978841600\/WwZSrff6_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":209,"favorite_count":112,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soyunabateria","name":"Soy Una Bateria","id":2346480625,"id_str":"2346480625","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079981663"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879384065,"id_str":"663727665879384065","text":"RT @TruuLifeWisdom: Without hope, faith has no job. http:\/\/t.co\/N8TrAC0tHl","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147846373,"id_str":"147846373","name":"\u265b","screen_name":"zxkia","location":"Manchester","url":null,"description":"Don't take me seriously. || Turn off rts & turn on my tweet notifs \u275d\u2717O\u275e || 1.2M+ || Some accs I own are @successbuys, @feeIsbae, @onlymatteblack @traveIgoaIs","protected":false,"verified":false,"followers_count":195561,"friends_count":123540,"listed_count":171,"favourites_count":9866,"statuses_count":119157,"created_at":"Tue May 25 05:47:01 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445642107370217472\/--ctXTBI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445642107370217472\/--ctXTBI.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611562468243034113\/F0EeINRb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611562468243034113\/F0EeINRb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147846373\/1443999293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 05:44:54 +0000 2015","id":653446220845854720,"id_str":"653446220845854720","text":"Without hope, faith has no job. http:\/\/t.co\/N8TrAC0tHl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387638515,"id_str":"387638515","name":"\u05e9\u05dc\u05d5\u05dd","screen_name":"TruuLifeWisdom","location":"Out Here","url":null,"description":"Hebrews 11:6","protected":false,"verified":false,"followers_count":54690,"friends_count":0,"listed_count":94,"favourites_count":63,"statuses_count":3276,"created_at":"Sun Oct 09 12:14:49 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647663286557782016\/UNmYykAP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647663286557782016\/UNmYykAP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387638515\/1444501207","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6087,"favorite_count":5723,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653446217137983488,"id_str":"653446217137983488","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","url":"http:\/\/t.co\/N8TrAC0tHl","display_url":"pic.twitter.com\/N8TrAC0tHl","expanded_url":"http:\/\/twitter.com\/TruuLifeWisdom\/status\/653446220845854720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"medium":{"w":600,"h":235,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":692,"h":272,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":653446217137983488,"id_str":"653446217137983488","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","url":"http:\/\/t.co\/N8TrAC0tHl","display_url":"pic.twitter.com\/N8TrAC0tHl","expanded_url":"http:\/\/twitter.com\/TruuLifeWisdom\/status\/653446220845854720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"medium":{"w":600,"h":235,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":692,"h":272,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TruuLifeWisdom","name":"\u05e9\u05dc\u05d5\u05dd","id":387638515,"id_str":"387638515","indices":[3,18]}],"symbols":[],"media":[{"id":653446217137983488,"id_str":"653446217137983488","indices":[52,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","url":"http:\/\/t.co\/N8TrAC0tHl","display_url":"pic.twitter.com\/N8TrAC0tHl","expanded_url":"http:\/\/twitter.com\/TruuLifeWisdom\/status\/653446220845854720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"medium":{"w":600,"h":235,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":692,"h":272,"resize":"fit"}},"source_status_id":653446220845854720,"source_status_id_str":"653446220845854720","source_user_id":387638515,"source_user_id_str":"387638515"}]},"extended_entities":{"media":[{"id":653446217137983488,"id_str":"653446217137983488","indices":[52,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGB31RVEAAkE05.jpg","url":"http:\/\/t.co\/N8TrAC0tHl","display_url":"pic.twitter.com\/N8TrAC0tHl","expanded_url":"http:\/\/twitter.com\/TruuLifeWisdom\/status\/653446220845854720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"medium":{"w":600,"h":235,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":692,"h":272,"resize":"fit"}},"source_status_id":653446220845854720,"source_status_id_str":"653446220845854720","source_user_id":387638515,"source_user_id_str":"387638515"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870848000,"id_str":"663727665870848000","text":"\u305d\u306e\u524d\u306b\u30c6\u30f3\u30b7\u30e7\u30f3\u4e0a\u3052\u3055\u305b\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909686111,"id_str":"2909686111","name":"\u83ef\u7460\u591a","screen_name":"Kuon1192","location":null,"url":null,"description":"\u83ef\u7460\u591a(\u304b\u308b\u305f)\u3068\u7533\u3057\u307e\u3059\u3002\n\u30a2\u30cb\u30e1\u3001\u30b2\u30fc\u30e0\u5927\u597d\u304d\u4eba\u9593\u3002\uff83\uff72\uff99\uff7d\uff9e\/\u6226\u56fdBASARA\/BLEACH\/\uff8d\uff9f\uff99\uff7f\uff85\/\uff7c\uff9e\uff6e\uff7c\uff9e\uff6e\/\uff77\uff99\uff97\uff77\uff99\/Fate\u306a\u3069\u3002pixiv\u3067\u7d75\u4e0a\u3052\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u7269\u51c4\u304f\u8150\u3063\u3066\u307e\u3059\u3002 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\n\u8003\u67fb\u8fd1\u304f\u306a\u308b\u3068\u30d0\u30fc\u30b5\u30fc\u304b\u308b\u305f\u306b\u306a\u308a\u307e\u3059\u3002()","protected":false,"verified":false,"followers_count":340,"friends_count":412,"listed_count":18,"favourites_count":9028,"statuses_count":18511,"created_at":"Tue Nov 25 05:23:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663695854675492864\/RqgghfBi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663695854675492864\/RqgghfBi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2909686111\/1442918308","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665854021633,"id_str":"663727665854021633","text":"\u0423\u0447\u0435\u043d\u044b\u0435 \u0441\u0432\u044f\u0437\u0430\u043b\u0438 \u0447\u0430\u0441\u0442\u043e\u0435 \u0432\u0437\u0432\u0435\u0448\u0438\u0432\u0430\u043d\u0438\u0435 \u0441 \u043f\u0441\u0438\u0445\u0438\u0447\u0435\u0441\u043a\u0438\u043c\u0438 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u044f\u043c\u0438: \u0423\u0447\u0435\u043d\u044b\u0435 \u0432\u044b\u044f\u0441\u043d\u0438\u043b\u0438, \u0447\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u043e\u0432\u043e\u0446\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0443 \u0436\u0435\u043d\u0449\u0438\u043d \u043f\u0441\u0438\u0445\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0440\u0430\u0441\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293784756,"id_str":"293784756","name":"\u041f\u0440\u0438\u043a\u043e\u043b\u044b \u044e\u043c\u043e\u0440 18+","screen_name":"analistics","location":"\u0420\u043e\u0441\u0441\u0438\u044f","url":"http:\/\/uaset.com","description":"\u0418\u043d\u0442\u0435\u0440\u0435\u0441\u044b: \u0443\u0432\u043b\u0435\u043a\u0430\u044e\u0441\u044c \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0435\u0439, \u043d\u043e \u043c\u0430\u043c\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e \u0435\u0451 \u043a\u0443\u0434\u0430-\u0442\u043e \u043f\u0440\u044f\u0447\u0435\u0442. \u041e \u0441\u0435\u0431\u0435: \u0443\u043c\u0435\u043d, \u043a\u0440\u0430\u0441\u0438\u0432, \u0441 \u0447\u0443\u0432\u0441\u0442\u0432\u043e\u043c \u044e\u043c\u043e\u0440\u0430, \u0441\u0435\u043a\u0441\u0443\u0430\u043b\u0435\u043d, \u0447\u0435\u0441\u0442\u0435\u043d, \u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d, \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0435\u043d.","protected":false,"verified":false,"followers_count":39955,"friends_count":17080,"listed_count":302,"favourites_count":30,"statuses_count":51081,"created_at":"Thu May 05 23:52:11 +0000 2011","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/397709281\/034.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/397709281\/034.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1808581977\/1279268936_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1808581977\/1279268936_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293784756\/1398369621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079981660"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665849876482,"id_str":"663727665849876482","text":"\u4eca\u65e5\u306e\u30a2\u30a4\u30e2\u3055\u3001\u307f\u305a\u304d\u3060\u3063\u305f\u3093\u3060\u3051\u3069\n\u767d\u76ee\u3080\u304d\u306a\u304c\u3089\u5bdd\u306a\u3044\u3088\u3046\u306b\u9811\u5f35\u3063\u3066\u3066\u3001\u3061\u3087\u3044\u3061\u3087\u3044\u53ef\u611b\u304b\u3063\u305fw\ud83d\ude02\ud83d\udc97\ud83d\udc39\u2190\n\u5bdd\u304b\u3051\u3066\u308b\u4eba\u306b\u30d3\u30e5\u30fc\u30e9\u30fc\u3059\u308b\u3068\u304b\u30cf\u30a4\u30ec\u30d9\u30eb\u3059\u304e\u3066\u6016\u3059\u304ewwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882090082,"id_str":"2882090082","name":"\u3074\u306a","screen_name":"pina1228","location":null,"url":"https:\/\/Instagram.com\/tm_s2\/","description":"\u540d\u53e4\u5c4bB\u00d7art \u2702\ufe0e B1A\u21e8B1B -\u5d50-1D-\u6d0b\u697d-\u3042\u3061\u3083\u3081\u308d-\u30c1\u30e7\u30b3\u30ec\u30fc\u30c8-\u8d64\u9aea- \u4eca\u5ea6\u3053\u305d(\u0e51\u2022\u0ac5\u3141\u2022\u0e51)","protected":false,"verified":false,"followers_count":429,"friends_count":456,"listed_count":0,"favourites_count":1857,"statuses_count":4793,"created_at":"Wed Oct 29 13:18:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662277574001692673\/KrNNkpFx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662277574001692673\/KrNNkpFx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882090082\/1439191625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981659"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665875030016,"id_str":"663727665875030016","text":"\u7f8e\u811a\u751f\u304b\u3057\u3066\u304f\u30b9\u30bf\u30a4\u30eb","source":"\u003ca href=\"http:\/\/twpf.jp\/norisio1234\" rel=\"nofollow\"\u003e\u306e\u308a\u3057\u304a\u5927\u9678\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496617730,"id_str":"496617730","name":"\u30ce\u30ea","screen_name":"norisio1234","location":"SDVX : T3\u3002 \u30e2\u30ec\u30e9R1 GNCT \u4e2d\u65e5D","url":"http:\/\/twpf.jp\/norisio1234","description":"\u30ab\u30e9\u30aa\u30b1\u304c\u3068\u3066\u3082\u4e0b\u624b\u304f\u305d\u3067\u3059\u3002\u3044\u3084\u30fc\u3001\u697d\u3057\u3044\u306a\u3041\u2665\n\n\n\n\u8c46\u8150\u30c9\u30fc\u30ca\u30c4\u3092\u63da\u3052\u3066\u305f\u3089\u5730\u529b\u4e0b\u304c\u308a\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":854,"friends_count":783,"listed_count":32,"favourites_count":49907,"statuses_count":80698,"created_at":"Sun Feb 19 04:18:44 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541610176176865282\/yisZTnxb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541610176176865282\/yisZTnxb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496617730\/1442911384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981665"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862447105,"id_str":"663727665862447105","text":"\u30b3\u30e9\u30fc\u30b2\u30f3\u305f\u3063\u3077\u308a\uff01\u9ec4\u91d1\u306e\u9727\u5cf6\u9d8f\u934b\u30b9\u30fc\u30d7https:\/\/t.co\/5ENdMBOq5Y\u3000\u4ed6\u306b\u3082\u3000https:\/\/t.co\/DDTFrtOPjb","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003elike_gourmet13\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1911121813,"id_str":"1911121813","name":"\u4eca\u6c17\u306b\u306a\u308b\uff01\u30c0\u30a4\u30a8\u30c3\u30c8\u7cfb\u98df\u54c1","screen_name":"like_gourmet13","location":null,"url":null,"description":"\u30c0\u30a4\u30a8\u30c3\u30c8\u306b\u307e\u3064\u308f\u308b\u98df\u54c1\u3092\u96c6\u3081\u3066\u307f\u307e\u3057\u305f\u266a\n\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%","protected":false,"verified":false,"followers_count":364,"friends_count":237,"listed_count":5,"favourites_count":0,"statuses_count":381576,"created_at":"Fri Sep 27 13:07:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000515094028\/6bbe94aa0d8c9498b57ac123a71e0431_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000515094028\/6bbe94aa0d8c9498b57ac123a71e0431_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5ENdMBOq5Y","expanded_url":"http:\/\/shop.gnavi.co.jp\/ebisu-web\/k-soup-3\/","display_url":"shop.gnavi.co.jp\/ebisu-web\/k-so\u2026","indices":[20,43]},{"url":"https:\/\/t.co\/DDTFrtOPjb","expanded_url":"http:\/\/goo.gl\/RJcfeG","display_url":"goo.gl\/RJcfeG","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845633025,"id_str":"663727665845633025","text":"@ericikalove \u304d\u305f\u306a\u3044\u3088ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663695695816208384,"in_reply_to_status_id_str":"663695695816208384","in_reply_to_user_id":3310730826,"in_reply_to_user_id_str":"3310730826","in_reply_to_screen_name":"ericikalove","user":{"id":3238888334,"id_str":"3238888334","name":"\u3046\u307f\u307f\u3043\u3043\u3043\u3043","screen_name":"umimikun0315","location":"\u65e5\u672c \u77f3\u5ddd\u770c","url":null,"description":"\u307f\u3082\u308a\u3093\u307e\u3058\u30a8\u30f3\u30b8\u30a7\u30fc\u3067\u3059\u306d\uff01\u6d77\u672a\u3061\u3083\u3093\u63a8\u3057\u306e\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3067\u3059\uff01\u30d8\u30c3\u30c0\u30fc\u306f\u50d5\u306e\u5927\u597d\u304d\u306a\u30af\u30ed\u307f\u3064\u3055\u3093\u304c\u4f5c\u3063\u3066\u304f\u308c\u307e\u3057\u305f\uff01\u304b\u308f\u3044\u3059\u304e\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\u6d77\u672a\u3061\u3083\u3093\u63a8\u3057\u3067\u3059\u3002\u5927\u4e8b\u306a\u3053\u3068\u306a\u306e\u3067\uff12\u56de\u3002","protected":false,"verified":false,"followers_count":266,"friends_count":232,"listed_count":28,"favourites_count":5671,"statuses_count":5035,"created_at":"Sun Jun 07 13:32:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640745791896731648\/H89xXwwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640745791896731648\/H89xXwwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238888334\/1441509625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ericikalove","name":"\u3078\u3063\u307d\u3053(\u5ba4\u7530\u9244\u5e73)","id":3310730826,"id_str":"3310730826","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845657600,"id_str":"663727665845657600","text":"\u30e9\u30d6\u30ec\u30c3\u30c8\u3042\u3051\u3066\u304b\u3089\u4e0b\u306e\u6b6f\u3092\u5f15\u3063\u639b\u3051\u308b\u7656\u304c\u3064\u3044\u3066\u7b11\u3046\u6642\u3081\u3061\u3083\u304f\u3061\u3083\u75db\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2336345694,"id_str":"2336345694","name":"\u029a\u9b54\u6cd5\u5c11\u5973\u271e\u3086\u3046\u3061\u3083\u3093\u025e","screen_name":"_AndGrd_326y","location":"in\u4e16\u7d00\u672b","url":null,"description":"\u611b\u3055\u308c\u30d3\u30c3\u30c1 \u795e\u79d8\uff01","protected":false,"verified":false,"followers_count":559,"friends_count":340,"listed_count":10,"favourites_count":40242,"statuses_count":41635,"created_at":"Mon Feb 10 08:50:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660185420085334016\/Or8wTpj7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660185420085334016\/Or8wTpj7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2336345694\/1446366504","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665854201856,"id_str":"663727665854201856","text":"@kokydraz @MahmoudRabi3 \u0648\u0644\u0627 \u064a\u0647\u0645\u0643 \u064a\u0627 \u0627\u0633\u062a\u0627\u0630\u0629 \u0645\u0646 \u0627\u0644\u0645\u062a\u0622\u0645\u0631\u064a\u0646 \u062f\u0648\u0644 \u062f\u0648\u0644 \u0628\u064a\u0642\u0628\u0636\u0648\u0627 \u0628\u0627\u0644\u062f\u0648\u0644\u0627\u0631\u0627\u062a \u0639\u0634\u0627\u0646 \u064a\u062e\u0631\u0628\u0648\u0627 \u0627\u0644\u0628\u0644\u062f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727301390151680,"in_reply_to_status_id_str":"663727301390151680","in_reply_to_user_id":1099129800,"in_reply_to_user_id_str":"1099129800","in_reply_to_screen_name":"kokydraz","user":{"id":3407584228,"id_str":"3407584228","name":"TrueZa","screen_name":"za_true","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":6,"listed_count":0,"favourites_count":57,"statuses_count":220,"created_at":"Fri Aug 07 17:57:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649537207653564416\/U9Z9bohf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649537207653564416\/U9Z9bohf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407584228\/1443362302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kokydraz","name":"\u062e\u062f\u0648\u0627 \u0628\u0627\u0644\u0643\u0648\u0627 \u062f\u0649 \u0645\u0635\u0631","id":1099129800,"id_str":"1099129800","indices":[0,9]},{"screen_name":"MahmoudRabi3","name":"MahmoudRabi3","id":11267182,"id_str":"11267182","indices":[10,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079981660"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845682176,"id_str":"663727665845682176","text":"\u3042\u306a\u305f\u306e\u30cd\u30c3\u30c8\u300c\u5e38\u8b58\u529b\u300d\u306f\u3069\u306e\u304f\u3089\u3044\uff1f\u30c1\u30a7\u30c3\u30af\u3057\u3066\u307f\u307e\u3057\u3087\u3046\u3002 #CyberSavvy: https:\/\/t.co\/5OXL8t4gnd @kaspersky_japan\u3055\u3093\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14670805,"id_str":"14670805","name":"\u5fd8\u5374\u306e\u30a2\u30c8\u30b5\u30e0","screen_name":"atsam","location":"Tokushima\u2192Hyogo\u2192Nara","url":null,"description":"\u793e\u4f1a\u4eba5\u5e74\u76ee\n\u6cd5\u52d9\u95a2\u4fc2\u306e\u304a\u4ed5\u4e8b\u306b\u30b8\u30e7\u30d6\u30c1\u30a7\u30f3\u30b8","protected":false,"verified":false,"followers_count":412,"friends_count":367,"listed_count":31,"favourites_count":130,"statuses_count":12952,"created_at":"Tue May 06 07:42:09 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CyberSavvy","indices":[32,43]}],"urls":[{"url":"https:\/\/t.co\/5OXL8t4gnd","expanded_url":"https:\/\/blog.kaspersky.co.jp\/cyber-savvy-quiz\/","display_url":"blog.kaspersky.co.jp\/cyber-savvy-qu\u2026","indices":[45,68]}],"user_mentions":[{"screen_name":"kaspersky_japan","name":"Kaspersky Labs Japan","id":110322543,"id_str":"110322543","indices":[69,85]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845829632,"id_str":"663727665845829632","text":"RT @LilDeepika: Deepyanka \ud83d\ude18\ud83d\ude18\u2764\n#8YearsOfDeepikaPadukone https:\/\/t.co\/0dh6SxiXfP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613497092,"id_str":"613497092","name":"Deewani Sajju","screen_name":"sajju_sobti","location":"India ","url":null,"description":"girl|Deepika, My role Model|\u2022IPKKND\u2022Food\u2022Dance\u2022Ranveer, my Mr.Singh\u2022DeepVeer \u2764Jamie -Dakota|| [Proud Ranveerian] Tattad Tattad","protected":false,"verified":false,"followers_count":1155,"friends_count":569,"listed_count":18,"favourites_count":16846,"statuses_count":42671,"created_at":"Wed Jun 20 14:53:06 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"A35E0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467656073436868608\/TOFjRkXl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467656073436868608\/TOFjRkXl.jpeg","profile_background_tile":true,"profile_link_color":"292319","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655744805759266816\/fhnhfUp3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655744805759266816\/fhnhfUp3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613497092\/1445172774","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:39 +0000 2015","id":663727405467480064,"id_str":"663727405467480064","text":"Deepyanka \ud83d\ude18\ud83d\ude18\u2764\n#8YearsOfDeepikaPadukone https:\/\/t.co\/0dh6SxiXfP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1402880538,"id_str":"1402880538","name":"Shreya","screen_name":"LilDeepika","location":null,"url":null,"description":"\u2764","protected":false,"verified":false,"followers_count":8423,"friends_count":639,"listed_count":31,"favourites_count":81966,"statuses_count":127592,"created_at":"Sat May 04 17:20:56 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457919300452352000\/H29_zC91.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457919300452352000\/H29_zC91.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662941607923093504\/xokt7pqH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662941607923093504\/xokt7pqH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1402880538\/1446893203","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"8YearsOfDeepikaPadukone","indices":[14,38]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727403324170241,"id_str":"663727403324170241","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","url":"https:\/\/t.co\/0dh6SxiXfP","display_url":"pic.twitter.com\/0dh6SxiXfP","expanded_url":"http:\/\/twitter.com\/LilDeepika\/status\/663727405467480064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":815,"h":611,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727403324170241,"id_str":"663727403324170241","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","url":"https:\/\/t.co\/0dh6SxiXfP","display_url":"pic.twitter.com\/0dh6SxiXfP","expanded_url":"http:\/\/twitter.com\/LilDeepika\/status\/663727405467480064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":815,"h":611,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"8YearsOfDeepikaPadukone","indices":[30,54]}],"urls":[],"user_mentions":[{"screen_name":"LilDeepika","name":"Shreya","id":1402880538,"id_str":"1402880538","indices":[3,14]}],"symbols":[],"media":[{"id":663727403324170241,"id_str":"663727403324170241","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","url":"https:\/\/t.co\/0dh6SxiXfP","display_url":"pic.twitter.com\/0dh6SxiXfP","expanded_url":"http:\/\/twitter.com\/LilDeepika\/status\/663727405467480064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":815,"h":611,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663727405467480064,"source_status_id_str":"663727405467480064","source_user_id":1402880538,"source_user_id_str":"1402880538"}]},"extended_entities":{"media":[{"id":663727403324170241,"id_str":"663727403324170241","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjobUYAEZvJB.jpg","url":"https:\/\/t.co\/0dh6SxiXfP","display_url":"pic.twitter.com\/0dh6SxiXfP","expanded_url":"http:\/\/twitter.com\/LilDeepika\/status\/663727405467480064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":815,"h":611,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663727405467480064,"source_status_id_str":"663727405467480064","source_user_id":1402880538,"source_user_id_str":"1402880538"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879187457,"id_str":"663727665879187457","text":"RT @tkfu_sama49: \u30b8\u30e3\u30ac\u30fc\u30ba\u3055\u301c\u3093\u6a2a\u306e\u5b50\u3082\u30bb\u30c3\u30c8\u3067\u3069\u3046\u3067\u3059\u304b\u306d\u3047\u301c\u301c\u301c\u301c https:\/\/t.co\/Oq5lBFtSj9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563562149,"id_str":"2563562149","name":"\u306f\u3063\u3061\u3087\u3059\u22c8","screen_name":"mikisz0313","location":"\u95a2\u6771\u2661\u68a8\u30d5\u30a9\u30ed\u30d025.02.25 4:35","url":"http:\/\/www.instagram.com\/mikisz_k.n","description":"eight_teen\u3000\u3000\u5927\u9593\u3005LAST\u3000\u3000\u2606\u6625\u304b\u3089\u30b8\u30e3\u30e0\u304a\u3070\u3055\u3093\u2606\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000next\u25b6\u25b7\u4e2d\u5cf6\uff7f\uff9b08\/10.\u5d5012\/23.JW1\/4\u2461\u3000 97line\u3000","protected":false,"verified":false,"followers_count":273,"friends_count":370,"listed_count":1,"favourites_count":5438,"statuses_count":5144,"created_at":"Thu Jun 12 14:49:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654774084715180032\/7dURy5Cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654774084715180032\/7dURy5Cm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563562149\/1444945170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:01 +0000 2015","id":663723220730671104,"id_str":"663723220730671104","text":"\u30b8\u30e3\u30ac\u30fc\u30ba\u3055\u301c\u3093\u6a2a\u306e\u5b50\u3082\u30bb\u30c3\u30c8\u3067\u3069\u3046\u3067\u3059\u304b\u306d\u3047\u301c\u301c\u301c\u301c https:\/\/t.co\/Oq5lBFtSj9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536226543,"id_str":"1536226543","name":"Takahashi\u5036\u697d\u90e8","screen_name":"tkfu_sama49","location":null,"url":null,"description":"\u5b89\u5fc3\u3057\u3066\u304f\u3060\u3055\u3044\u3001\u30f2\u30bf\u30af\u3067\u3059\u3088","protected":false,"verified":false,"followers_count":3248,"friends_count":64,"listed_count":34,"favourites_count":1961,"statuses_count":13678,"created_at":"Fri Jun 21 10:15:49 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005128410\/30ca9ca14be8cc851829daf5dbe3a506.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005128410\/30ca9ca14be8cc851829daf5dbe3a506.jpeg","profile_background_tile":true,"profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639404234182537216\/zGqEYI6o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639404234182537216\/zGqEYI6o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536226543\/1441281082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723212396597249,"id_str":"663723212396597249","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":674,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723212396597249,"id_str":"663723212396597249","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":674,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}}},{"id":663723212400783360,"id_str":"663723212400783360","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsBUcAAN8Br.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsBUcAAN8Br.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":864,"h":461,"resize":"fit"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663723212392370176,"id_str":"663723212392370176","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvr_UEAAEZvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvr_UEAAEZvf.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"large":{"w":1024,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"}}},{"id":663723212434309121,"id_str":"663723212434309121","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsJUAAEnmHF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsJUAAEnmHF.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":858,"resize":"fit"},"large":{"w":716,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tkfu_sama49","name":"Takahashi\u5036\u697d\u90e8","id":1536226543,"id_str":"1536226543","indices":[3,15]}],"symbols":[],"media":[{"id":663723212396597249,"id_str":"663723212396597249","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":674,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}},"source_status_id":663723220730671104,"source_status_id_str":"663723220730671104","source_user_id":1536226543,"source_user_id_str":"1536226543"}]},"extended_entities":{"media":[{"id":663723212396597249,"id_str":"663723212396597249","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsAUkAEoFju.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":674,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}},"source_status_id":663723220730671104,"source_status_id_str":"663723220730671104","source_user_id":1536226543,"source_user_id_str":"1536226543"},{"id":663723212400783360,"id_str":"663723212400783360","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsBUcAAN8Br.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsBUcAAN8Br.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":864,"h":461,"resize":"fit"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663723220730671104,"source_status_id_str":"663723220730671104","source_user_id":1536226543,"source_user_id_str":"1536226543"},{"id":663723212392370176,"id_str":"663723212392370176","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvr_UEAAEZvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvr_UEAAEZvf.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"large":{"w":1024,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"}},"source_status_id":663723220730671104,"source_status_id_str":"663723220730671104","source_user_id":1536226543,"source_user_id_str":"1536226543"},{"id":663723212434309121,"id_str":"663723212434309121","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEvsJUAAEnmHF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEvsJUAAEnmHF.jpg","url":"https:\/\/t.co\/Oq5lBFtSj9","display_url":"pic.twitter.com\/Oq5lBFtSj9","expanded_url":"http:\/\/twitter.com\/tkfu_sama49\/status\/663723220730671104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":858,"resize":"fit"},"large":{"w":716,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"}},"source_status_id":663723220730671104,"source_status_id_str":"663723220730671104","source_user_id":1536226543,"source_user_id_str":"1536226543"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862447104,"id_str":"663727665862447104","text":"RT @0358am: \u0e21\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e15\u0e23\u0e07\u0e19\u0e35\u0e49\u0e41\u0e2b\u0e25\u0e48\u0e30.. \u0e14\u0e39\u0e14\u0e49\u0e27\u0e22 http:\/\/t.co\/SZ3wpKIwTD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1973404296,"id_str":"1973404296","name":"\u0e2b\u0e21\u0e35 & I","screen_name":"NongnarinP","location":"#Taeyeonprotectionsquad","url":null,"description":"\u0e2b\u0e21\u0e35\u0e19\u0e49\u0e2d\u0e22 | taeyeon. yoona. wendy. seulgi. irene. eunji. tzuyu. momo. krystal. yuna. minju. WARNING: Demon Hide!","protected":false,"verified":false,"followers_count":392,"friends_count":307,"listed_count":3,"favourites_count":6008,"statuses_count":141268,"created_at":"Sun Oct 20 01:37:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661364551879782400\/a87inny-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661364551879782400\/a87inny-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1973404296\/1446522455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Aug 05 14:51:33 +0000 2015","id":628941416601817089,"id_str":"628941416601817089","text":"\u0e21\u0e31\u0e19\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e15\u0e23\u0e07\u0e19\u0e35\u0e49\u0e41\u0e2b\u0e25\u0e48\u0e30.. \u0e14\u0e39\u0e14\u0e49\u0e27\u0e22 http:\/\/t.co\/SZ3wpKIwTD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288636227,"id_str":"288636227","name":"03:58 am","screen_name":"0358am","location":null,"url":null,"description":"\u0e15\u0e01\u0e2b\u0e25\u0e38\u0e21\u0e23\u0e31\u0e01\u0e2b\u0e19\u0e31\u0e07\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 serendipity","protected":false,"verified":false,"followers_count":994,"friends_count":68,"listed_count":0,"favourites_count":101,"statuses_count":26052,"created_at":"Wed Apr 27 06:16:45 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156994298\/6lqoVtNc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156994298\/6lqoVtNc.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662191459806740480\/AAWC0vVu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662191459806740480\/AAWC0vVu_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28613,"favorite_count":3884,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":628941318236934146,"id_str":"628941318236934146","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","url":"http:\/\/t.co\/SZ3wpKIwTD","display_url":"pic.twitter.com\/SZ3wpKIwTD","expanded_url":"http:\/\/twitter.com\/0358am\/status\/628941416601817089\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":628941318236934146,"id_str":"628941318236934146","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","url":"http:\/\/t.co\/SZ3wpKIwTD","display_url":"pic.twitter.com\/SZ3wpKIwTD","expanded_url":"http:\/\/twitter.com\/0358am\/status\/628941416601817089\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0358am","name":"03:58 am","id":288636227,"id_str":"288636227","indices":[3,10]}],"symbols":[],"media":[{"id":628941318236934146,"id_str":"628941318236934146","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","url":"http:\/\/t.co\/SZ3wpKIwTD","display_url":"pic.twitter.com\/SZ3wpKIwTD","expanded_url":"http:\/\/twitter.com\/0358am\/status\/628941416601817089\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":628941416601817089,"source_status_id_str":"628941416601817089","source_user_id":288636227,"source_user_id_str":"288636227"}]},"extended_entities":{"media":[{"id":628941318236934146,"id_str":"628941318236934146","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLpyy_IUEAISd9j.jpg","url":"http:\/\/t.co\/SZ3wpKIwTD","display_url":"pic.twitter.com\/SZ3wpKIwTD","expanded_url":"http:\/\/twitter.com\/0358am\/status\/628941416601817089\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":628941416601817089,"source_status_id_str":"628941416601817089","source_user_id":288636227,"source_user_id_str":"288636227"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879252992,"id_str":"663727665879252992","text":"RT @PepatahDoa: Tuhan, Seandainya telah Engkau catatkan dia akan mejadi teman menapaki hidup. Satukanlah hatinya dengan hatiku.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246093475,"id_str":"246093475","name":"mons.","screen_name":"monitafbr","location":"Salazar Slytherin","url":"http:\/\/instagram.com\/monitafbr","description":"Garuda Int High School. Merkurius.\nIg\/line: monitafbr.","protected":false,"verified":false,"followers_count":2173,"friends_count":529,"listed_count":0,"favourites_count":802,"statuses_count":41024,"created_at":"Wed Feb 02 03:23:53 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"850985","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543064351272214529\/4QKlawnh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543064351272214529\/4QKlawnh.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEBE7","profile_text_color":"1CE87F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631846559060111361\/s8v7nYIb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631846559060111361\/s8v7nYIb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246093475\/1439717634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:08 +0000 2015","id":663718717973467136,"id_str":"663718717973467136","text":"Tuhan, Seandainya telah Engkau catatkan dia akan mejadi teman menapaki hidup. Satukanlah hatinya dengan hatiku.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":420934849,"id_str":"420934849","name":"Pepatah Doa","screen_name":"PepatahDoa","location":null,"url":null,"description":"Tuhan itu maha adil. kita sebagai umat hanya bisa menjalankan perintah nya. Follow @PepatahDoa Tweet-tweetnya bermanfaat bagi kita.","protected":false,"verified":false,"followers_count":588247,"friends_count":0,"listed_count":296,"favourites_count":92,"statuses_count":18128,"created_at":"Fri Nov 25 08:46:01 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/840573332\/a5a2c93ec673f436c6c2b682070d06fe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/840573332\/a5a2c93ec673f436c6c2b682070d06fe.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3510927128\/23c3bbc9dbd0a45f01767eb1b67e582a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3510927128\/23c3bbc9dbd0a45f01767eb1b67e582a_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PepatahDoa","name":"Pepatah Doa","id":420934849,"id_str":"420934849","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665875017728,"id_str":"663727665875017728","text":"RT @parkgabri: \ubbff\uae30 \uc5b4\ub835\uaca0\uc9c0\ub9cc \uad6d\uc801\ud3ec\uae30\uc790 \uc218\uac00 \ud55c\uad6d\uc774 \uc138\uacc41\uc704 \uc785\ub2c8\ub2e4 \n\uc774\ubbf8 1\uc704\uc778\ub370 \uc790\ub9ac \ube8f\uae38\uae4c\ubd10 \uc804\ub144\ube44\uc5d0 24%\ub098 \uae09\uc99d\ud558\uc600\uad70\uc694 \u314b http:\/\/t.co\/HZTPgigs7j","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190818494,"id_str":"3190818494","name":"\ud55c\uc6d4 (\uc0c1\ud0dc: \ub4a4\uc84c\uc74c)","screen_name":"hm0978","location":"\uc544\ud06c \ud06c\ub808\uc774\ub4e4 \uc548 \uc5b4\ub518\uac00","url":"http:\/\/dpadkql0807.wix.com\/hm-commission","description":"\ud0c0\uc7a5\ub974\uc5b8\uae09\uc774 \ub9ce\uc74c \uce74\uc774\ub978&\ub9cc\uc8e0\uba54\ub978\/\uce74\uc774\uc67c \uc9c0\ub8b0 \n 5D's, ARC-V \uc704\uc8fc \u2606\ubbf8\ub798\uc870\u2606 (NL=BL=GL) (FUB free) 9\/9 ~\u2606 @Yuma_t_hm \u2606 \r\n \uc5dc\ub355\uc9c8\uacc4 \u261e @hm_els \uc625\ub3c4\uc0ac\ubcc0\uacc4 \u2192 @hm_okdo","protected":false,"verified":false,"followers_count":287,"friends_count":303,"listed_count":1,"favourites_count":13414,"statuses_count":58198,"created_at":"Sun May 10 13:23:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657597450836832257\/1_XG31SF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657597450836832257\/1_XG31SF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190818494\/1444753258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 22 05:34:41 +0000 2015","id":590750550251151361,"id_str":"590750550251151361","text":"\ubbff\uae30 \uc5b4\ub835\uaca0\uc9c0\ub9cc \uad6d\uc801\ud3ec\uae30\uc790 \uc218\uac00 \ud55c\uad6d\uc774 \uc138\uacc41\uc704 \uc785\ub2c8\ub2e4 \n\uc774\ubbf8 1\uc704\uc778\ub370 \uc790\ub9ac \ube8f\uae38\uae4c\ubd10 \uc804\ub144\ube44\uc5d0 24%\ub098 \uae09\uc99d\ud558\uc600\uad70\uc694 \u314b http:\/\/t.co\/HZTPgigs7j","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303180929,"id_str":"303180929","name":"\ubc15\uac00\ube0c\ub9ac","screen_name":"parkgabri","location":null,"url":null,"description":"\uc791\uc5c5 \uac78\uba74 \ub118\uc5b4\uac00 \ub4dc\ub9bd\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":2957,"friends_count":303,"listed_count":52,"favourites_count":381,"statuses_count":24094,"created_at":"Sun May 22 12:43:46 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652744662088716288\/hOveaJ7L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652744662088716288\/hOveaJ7L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303180929\/1442496117","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5043,"favorite_count":441,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":590750540096794625,"id_str":"590750540096794625","indices":[68,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","url":"http:\/\/t.co\/HZTPgigs7j","display_url":"pic.twitter.com\/HZTPgigs7j","expanded_url":"http:\/\/twitter.com\/parkgabri\/status\/590750550251151361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":590750540096794625,"id_str":"590750540096794625","indices":[68,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","url":"http:\/\/t.co\/HZTPgigs7j","display_url":"pic.twitter.com\/HZTPgigs7j","expanded_url":"http:\/\/twitter.com\/parkgabri\/status\/590750550251151361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"parkgabri","name":"\ubc15\uac00\ube0c\ub9ac","id":303180929,"id_str":"303180929","indices":[3,13]}],"symbols":[],"media":[{"id":590750540096794625,"id_str":"590750540096794625","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","url":"http:\/\/t.co\/HZTPgigs7j","display_url":"pic.twitter.com\/HZTPgigs7j","expanded_url":"http:\/\/twitter.com\/parkgabri\/status\/590750550251151361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":590750550251151361,"source_status_id_str":"590750550251151361","source_user_id":303180929,"source_user_id_str":"303180929"}]},"extended_entities":{"media":[{"id":590750540096794625,"id_str":"590750540096794625","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDLEfH1W8AENxAK.jpg","url":"http:\/\/t.co\/HZTPgigs7j","display_url":"pic.twitter.com\/HZTPgigs7j","expanded_url":"http:\/\/twitter.com\/parkgabri\/status\/590750550251151361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":590750550251151361,"source_status_id_str":"590750550251151361","source_user_id":303180929,"source_user_id_str":"303180929"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079981665"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665866776576,"id_str":"663727665866776576","text":"\u06af\u064a\u0641 \u0623\u0628\u0646\u0633\u0649 \u0647\u0627\u0644\u0645\u0644\u0627\u0645\u062d \u0648\u0644\u0627 \u0641\u064a\u0647\u0627 \u0645\u0627 \u0623\u0641\u06af\u0631 \u061f \n\u0648\u0625\u0646\u062a \u0644\u0648 \u0647\u0627\u0644\u0628\u062d\u0631 \u0645\u0627\u0644\u062d \u0645\u0646 \u062c\u0645\u0627\u0644\u06af \u0635\u0627\u0631 \u0633\u064f\u06af\u0631\ud83d\udc97'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":631087513,"id_str":"631087513","name":"\u0641\u0637\u064a\u0645\u2765'","screen_name":"temow_f","location":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629","url":"http:\/\/twitter.com\/ad3yah91","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u064a\u0627\u0631\u0628\u0651 \u0627\u0646 \u0646\u0627\u0645\u062a \u0623\u062c\u0632\u0627\u0626\u064a \u062a\u062d\u062a \u0627\u0644\u062a\u0631\u0627\u0628 \u060c\n\u0641\u0640 \u0623\u0631\u062d\u0645\u0646\u064a \u0628\u0631\u062d\u0645\u062a\u0643 \u0648\u0623\u063a\u0641\u0631\u0644\u064a\u2665'","protected":false,"verified":false,"followers_count":700,"friends_count":126,"listed_count":1,"favourites_count":548,"statuses_count":66577,"created_at":"Mon Jul 09 13:15:44 +0000 2012","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662056327607418882\/x9ow6WHf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662056327607418882\/x9ow6WHf_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079981663"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870868481,"id_str":"663727665870868481","text":"RT @tsunamayoneez: \u307f\u308a\u3042\u30b3\u30df\u30e5\u6f2b\u753b https:\/\/t.co\/C0uUS6IzMm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141143586,"id_str":"141143586","name":"agkccaj","screen_name":"agkccaj","location":null,"url":null,"description":"\ub2c8 \uc560\ubbf8\ub2e4 \uc539\uc0c8\ub07c\uc57c","protected":false,"verified":false,"followers_count":335,"friends_count":274,"listed_count":12,"favourites_count":27,"statuses_count":149345,"created_at":"Fri May 07 08:39:33 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/874773406\/8926bf0b4d18aecd0f23e7381856c36c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/874773406\/8926bf0b4d18aecd0f23e7381856c36c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618039712758927361\/gdLLbKXa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618039712758927361\/gdLLbKXa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141143586\/1446129422","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:12:40 +0000 2015","id":663690666505973760,"id_str":"663690666505973760","text":"\u307f\u308a\u3042\u30b3\u30df\u30e5\u6f2b\u753b https:\/\/t.co\/C0uUS6IzMm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79806650,"id_str":"79806650","name":"\u30c4\u30ca\u30de\u30e8@\u4e09\u65e5\u76ee\u897f\u305f13a","screen_name":"tsunamayoneez","location":"\u6771\u4eac\u90fd","url":"http:\/\/www.pixiv.net\/member.php?id=194320","description":"\u30cd\u30bf\u304c\u6b32\u3057\u3044 \u30c7\u30ec\u30de\u30b9\u6771\u65b9\u30e9\u30fc\u30e1\u30f3MLP \uff8c\uff9d\uff8c\uff9d \uff1e\uff08\u2312\u2228\u2312\uff09\u30cb\u30b3\u4e8c\u30b3\uff1ahttp:\/\/www.nicovideo.jp\/mylist\/15675953\n\u30a6\u30a7\u30d6\u30ab\u30bf\u30ed\u30b0\uff1ahttps:\/\/webcatalog-free.circle.ms\/Circle\/12310256\/","protected":false,"verified":false,"followers_count":19334,"friends_count":200,"listed_count":649,"favourites_count":203,"statuses_count":29599,"created_at":"Sun Oct 04 19:13:51 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620869356939968512\/B0H6Tgnz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620869356939968512\/B0H6Tgnz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79806650\/1436022376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1892,"favorite_count":2099,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690664551383040,"id_str":"663690664551383040","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","url":"https:\/\/t.co\/C0uUS6IzMm","display_url":"pic.twitter.com\/C0uUS6IzMm","expanded_url":"http:\/\/twitter.com\/tsunamayoneez\/status\/663690666505973760\/photo\/1","type":"photo","sizes":{"large":{"w":950,"h":1900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690664551383040,"id_str":"663690664551383040","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","url":"https:\/\/t.co\/C0uUS6IzMm","display_url":"pic.twitter.com\/C0uUS6IzMm","expanded_url":"http:\/\/twitter.com\/tsunamayoneez\/status\/663690666505973760\/photo\/1","type":"photo","sizes":{"large":{"w":950,"h":1900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsunamayoneez","name":"\u30c4\u30ca\u30de\u30e8@\u4e09\u65e5\u76ee\u897f\u305f13a","id":79806650,"id_str":"79806650","indices":[3,17]}],"symbols":[],"media":[{"id":663690664551383040,"id_str":"663690664551383040","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","url":"https:\/\/t.co\/C0uUS6IzMm","display_url":"pic.twitter.com\/C0uUS6IzMm","expanded_url":"http:\/\/twitter.com\/tsunamayoneez\/status\/663690666505973760\/photo\/1","type":"photo","sizes":{"large":{"w":950,"h":1900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}},"source_status_id":663690666505973760,"source_status_id_str":"663690666505973760","source_user_id":79806650,"source_user_id_str":"79806650"}]},"extended_entities":{"media":[{"id":663690664551383040,"id_str":"663690664551383040","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnJJ1UAAAntJ6.jpg","url":"https:\/\/t.co\/C0uUS6IzMm","display_url":"pic.twitter.com\/C0uUS6IzMm","expanded_url":"http:\/\/twitter.com\/tsunamayoneez\/status\/663690666505973760\/photo\/1","type":"photo","sizes":{"large":{"w":950,"h":1900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"}},"source_status_id":663690666505973760,"source_status_id_str":"663690666505973760","source_user_id":79806650,"source_user_id_str":"79806650"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665875144704,"id_str":"663727665875144704","text":"@WouterBruijning Nog steeds niet gelezen..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713540239450112,"in_reply_to_status_id_str":"663713540239450112","in_reply_to_user_id":321420249,"in_reply_to_user_id_str":"321420249","in_reply_to_screen_name":"WouterBruijning","user":{"id":342777981,"id_str":"342777981","name":"Brandy van Gerven","screen_name":"BrandyvanGerven","location":"Gouda, Nederland","url":null,"description":"Communicatieadviseur QuaWonen - Je bent gelukkig wanneer je erin slaagt betekenis te geven aan een ander of aan het andere, de wereld.","protected":false,"verified":false,"followers_count":308,"friends_count":55,"listed_count":20,"favourites_count":37,"statuses_count":7305,"created_at":"Tue Jul 26 15:28:35 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496592422327951360\/81cGpByV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496592422327951360\/81cGpByV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/342777981\/1398260755","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WouterBruijning","name":"Wouter Bruijning","id":321420249,"id_str":"321420249","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447079981665"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870843904,"id_str":"663727665870843904","text":"#tecnologia El Plan de Recuperaci\u00f3n del \u00c1guila Imperial Ib\u00e9rica consigue duplicar la poblaci\u00f3n en Castilla y Le\u00f3n https:\/\/t.co\/FUamFFSWDb","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1678983510,"id_str":"1678983510","name":"Tecnoticias","screen_name":"tuitTecnologia","location":"Madrid","url":null,"description":"Padre de @tuitApple y @tuitAndroid. Publicamos cualquier #noticia sobre #ciencia y #tecnolog\u00eda: #m\u00f3viles, #pcs, #consolas, #internet, #apple, #android y m\u00e1s.","protected":false,"verified":false,"followers_count":6567,"friends_count":5333,"listed_count":149,"favourites_count":20,"statuses_count":199194,"created_at":"Sat Aug 17 19:50:14 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2F39ED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000391393974\/5806f3428f11d4cfc6fd4de4ad28b9c3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000391393974\/5806f3428f11d4cfc6fd4de4ad28b9c3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678983510\/1406578558","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tecnologia","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/FUamFFSWDb","expanded_url":"http:\/\/tecnologia.tusueldo.com\/eVk","display_url":"tecnologia.tusueldo.com\/eVk","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870868482,"id_str":"663727665870868482","text":"\uff08 \u30fb\u2200\u30fb\uff09 https:\/\/t.co\/l438oM42S8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229623488,"id_str":"3229623488","name":"\u306f\u304c","screen_name":"Sat_morning1100","location":"\u5343\u8449","url":null,"description":"\u3082\u306f\u3084\u7b11\u3048\u3066\u304f\u308b\u3002","protected":false,"verified":false,"followers_count":5,"friends_count":60,"listed_count":0,"favourites_count":5,"statuses_count":3,"created_at":"Fri May 29 10:11:03 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663657520406228992\/t9e8lz82_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663657520406228992\/t9e8lz82_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229623488\/1447063364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/l438oM42S8","expanded_url":"https:\/\/youtu.be\/enww6bYMXH8","display_url":"youtu.be\/enww6bYMXH8","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665870938112,"id_str":"663727665870938112","text":"RT @trouxawol: Jonghyun empina a bunda quando Minho ta chegando por tr\u00e1s...depois dizem que JongHo n \u00e9 real \nJISASAJDSFHAK\\SDHASJDK https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3234424242,"id_str":"3234424242","name":"p\u00e3o","screen_name":"flaminkey","location":"New walls, new world","url":"http:\/\/facebook.com\/SHINeeBrazilBr","description":"\ucd5c\ubbfc\ud638 & \uae40\uae30\ubc94's biggest hater *:\uff65\uff9f\u2727 Jongkey *:\uff65\uff9f\u2727 \u2022SR15B, f(x), @katyperry\u2022 Ice cream is better than people \u2661ViLuMa","protected":false,"verified":false,"followers_count":179,"friends_count":189,"listed_count":0,"favourites_count":3180,"statuses_count":20605,"created_at":"Wed Jun 03 01:12:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650832777441615872\/Mo99-7g9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650832777441615872\/Mo99-7g9.png","profile_background_tile":true,"profile_link_color":"FF3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545752149454848\/vZGgckeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545752149454848\/vZGgckeR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234424242\/1446747286","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:31 +0000 2015","id":663727369971179520,"id_str":"663727369971179520","text":"Jonghyun empina a bunda quando Minho ta chegando por tr\u00e1s...depois dizem que JongHo n \u00e9 real \nJISASAJDSFHAK\\SDHASJDK https:\/\/t.co\/q5RFyebufQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408525955,"id_str":"408525955","name":"Kim Chiguk","screen_name":"trouxawol","location":"Varginha","url":"https:\/\/instagram.com\/trouxawol\/","description":"@realjonghyun90 is my savior \u2661","protected":false,"verified":false,"followers_count":283,"friends_count":342,"listed_count":4,"favourites_count":4169,"statuses_count":11041,"created_at":"Wed Nov 09 14:55:12 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660190630417690625\/GjsmdqrE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660190630417690625\/GjsmdqrE.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661610577748500482\/uuejdp-s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661610577748500482\/uuejdp-s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408525955\/1446575292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663723802422075393,"quoted_status_id_str":"663723802422075393","quoted_status":{"created_at":"Mon Nov 09 14:24:20 +0000 2015","id":663723802422075393,"id_str":"663723802422075393","text":"my precious boys \ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f\ud83c\udf1f https:\/\/t.co\/or8nl9o34d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2525279041,"id_str":"2525279041","name":"Polina Choi","screen_name":"polina_choi","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCYY4dt1ZT0xm323nH0WVe-A","description":"\u2654 Choi Minho's love & support \u2654\n\n\u2605http:\/\/t.co\/IzZYOqW9FH \u2605http:\/\/t.co\/mOrSDhLVna \u2605http:\/\/t.co\/OJl28UZXJ4 \u2605https:\/\/t.co\/JICPPt5qRa","protected":false,"verified":false,"followers_count":4046,"friends_count":154,"listed_count":55,"favourites_count":26,"statuses_count":18972,"created_at":"Mon May 26 15:28:45 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660936262707212288\/Tb5Zc6jD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660936262707212288\/Tb5Zc6jD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2525279041\/1446414430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723800782118912,"id_str":"663723800782118912","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYFR76XIAAXW-Q.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYFR76XIAAXW-Q.png","url":"https:\/\/t.co\/or8nl9o34d","display_url":"pic.twitter.com\/or8nl9o34d","expanded_url":"http:\/\/twitter.com\/polina_choi\/status\/663723802422075393\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":266,"resize":"fit"},"large":{"w":480,"h":266,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723800782118912,"id_str":"663723800782118912","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYFR76XIAAXW-Q.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYFR76XIAAXW-Q.png","url":"https:\/\/t.co\/or8nl9o34d","display_url":"pic.twitter.com\/or8nl9o34d","expanded_url":"http:\/\/twitter.com\/polina_choi\/status\/663723802422075393\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":188,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":266,"resize":"fit"},"large":{"w":480,"h":266,"resize":"fit"}},"video_info":{"aspect_ratio":[240,133],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYFR76XIAAXW-Q.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q5RFyebufQ","expanded_url":"https:\/\/twitter.com\/polina_choi\/status\/663723802422075393","display_url":"twitter.com\/polina_choi\/st\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q5RFyebufQ","expanded_url":"https:\/\/twitter.com\/polina_choi\/status\/663723802422075393","display_url":"twitter.com\/polina_choi\/st\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"trouxawol","name":"Kim Chiguk","id":408525955,"id_str":"408525955","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079981664"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879236609,"id_str":"663727665879236609","text":"RT @qedsz: \u0e16\u0e49\u0e32\u0e42\u0e17\u0e23\u0e2b\u0e32\u0e41\u0e25\u0e49\u0e27\u0e44\u0e21\u0e48\u0e04\u0e38\u0e22\u0e44\u0e21\u0e48\u0e1e\u0e39\u0e14\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e2b\u0e25\u0e31\u0e1a\u0e40\u0e16\u0e2d\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":491280520,"id_str":"491280520","name":"ning","screen_name":"banjamassuebma","location":"\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e14\u0e34\u0e49\u0e1e\u0e48\u0e2d\u0e41\u0e21\u0e48\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e34\u0e17\u0e01\u0e31\u0e19","url":null,"description":"\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e2d\u0e32\u0e2a\u0e31\u0e19\u0e14\u0e32\u0e19\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e21\u0e32\u0e15\u0e31\u0e14\u0e2a\u0e34\u0e19\u0e01\u0e39","protected":false,"verified":false,"followers_count":645,"friends_count":349,"listed_count":1,"favourites_count":334,"statuses_count":21343,"created_at":"Mon Feb 13 13:15:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660148873533390848\/Pbc1bAXg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660148873533390848\/Pbc1bAXg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/491280520\/1447069537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jan 21 14:47:54 +0000 2014","id":425640905844867072,"id_str":"425640905844867072","text":"\u0e16\u0e49\u0e32\u0e42\u0e17\u0e23\u0e2b\u0e32\u0e41\u0e25\u0e49\u0e27\u0e44\u0e21\u0e48\u0e04\u0e38\u0e22\u0e44\u0e21\u0e48\u0e1e\u0e39\u0e14\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e2b\u0e25\u0e31\u0e1a\u0e40\u0e16\u0e2d\u0e30","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495957686,"id_str":"495957686","name":"\u0e1e\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e14","screen_name":"qedsz","location":"PLUTO","url":null,"description":null,"protected":false,"verified":false,"followers_count":975,"friends_count":143,"listed_count":1,"favourites_count":1650,"statuses_count":153473,"created_at":"Sat Feb 18 13:35:37 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121210","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457194915483512832\/Yvr83WVG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457194915483512832\/Yvr83WVG.jpeg","profile_background_tile":true,"profile_link_color":"CECFC4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661249048372838400\/ue56v3P-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661249048372838400\/ue56v3P-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495957686\/1446330826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"qedsz","name":"\u0e1e\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e14","id":495957686,"id_str":"495957686","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879216128,"id_str":"663727665879216128","text":"\u3010\u4f5c\u696d\u7528BGM\u3011\u7652\u3057\u7cfbA Cherished Memory \/ Various Artists\u30e1\u30c9\u30ec\u30fc\u266a (30:50) #nicovideo #sm14543046 https:\/\/t.co\/Mm7h9Wl6WX #negikobot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384138602,"id_str":"384138602","name":"\uff88\uff77\uff9e\u5b50@\u81ea\u5df1\u6e80\u9078\u66f2\u8005","screen_name":"VOCALO39","location":"\u597d\u304d\u306a\u66f2\u3092\u545f\u304fbot\u3078\u5206\u8eab\u3082\uff65\uff65\uff65","url":null,"description":"1\u756a\u597d\u304d\u306a\uff8e\uff9e\uff76\uff9b\u304c\u521d\u97f3\uff90\uff78 \u2665 \u3042\u3086P\u306e\u8abf\u6559\u306e\uff90\uff78\u5927\u597d\u304d \u2665 \u72ec\u308a\u8a00\u3092\u3064\u3076\u3084\u304d\u307e\u3059\uff57 \u4ef2\u826f\u304f\u3057\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u266a \u3042\u3068Love\u306f\u591a\u5206\uff8c\uff6b\uff9b\uff70\u3092\u898b\u308c\u3070\u308f\u304b\u308b\u3068\u601d\u3044\u307e\u3059\uff01(\uff61\u25e0\u203f\u25e0\uff61\u2665 ) \uff8e\uff9e\uff76\uff9b\u4ee5\u5916\u306e\u597d\u304d\u306a\u66f2\u3082\u545f\u3044\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":58,"friends_count":49,"listed_count":2,"favourites_count":19,"statuses_count":65714,"created_at":"Mon Oct 03 04:15:57 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/340387229\/kako-PKR7l4FCCmSNuUDP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/340387229\/kako-PKR7l4FCCmSNuUDP.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1570672914\/negiko_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1570672914\/negiko_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384138602\/1349312357","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nicovideo","indices":[61,71]},{"text":"sm14543046","indices":[72,83]},{"text":"negikobot","indices":[108,118]}],"urls":[{"url":"https:\/\/t.co\/Mm7h9Wl6WX","expanded_url":"http:\/\/nico.ms\/sm14543046","display_url":"nico.ms\/sm14543046","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665854173185,"id_str":"663727665854173185","text":"RT @AneenAlqalb: \u2764\ufe0f\u062d\u0646\u0627\u0646 \u0627\u0644\u0623\u0628\u2764\ufe0f: \u0643\u0645 \u0645\u0633\u062d\u062a \u062f\u0645\u0639\u0629\u064d \u062a\u0634\u0643\u064a \u0645\u0635\u0627\u0628 \ud83c\udf39\u0648\u0643\u0645 \u0631\u062d\u0645\u062a \u0645\u0650\u0646 \u0644\u0647 \u0627\u0644\u0636\u0631\u0651 \u0625\u0647\u062a\u062f\u0649 ... https:\/\/t.co\/OcBxvFF6uR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3129346932,"id_str":"3129346932","name":"\u2764\ufe0f\u0631\u0648\u062d\u064a \u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a\u2764\ufe0f","screen_name":"Abdulra37192755","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":968,"friends_count":908,"listed_count":0,"favourites_count":17,"statuses_count":337,"created_at":"Thu Apr 02 07:24:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583531949660086272\/AqG2NzEx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583531949660086272\/AqG2NzEx_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:26:08 +0000 2015","id":663709154599546881,"id_str":"663709154599546881","text":"\u2764\ufe0f\u062d\u0646\u0627\u0646 \u0627\u0644\u0623\u0628\u2764\ufe0f: \u0643\u0645 \u0645\u0633\u062d\u062a \u062f\u0645\u0639\u0629\u064d \u062a\u0634\u0643\u064a \u0645\u0635\u0627\u0628 \ud83c\udf39\u0648\u0643\u0645 \u0631\u062d\u0645\u062a \u0645\u0650\u0646 \u0644\u0647 \u0627\u0644\u0636\u0631\u0651 \u0625\u0647\u062a\u062f\u0649 ... https:\/\/t.co\/OcBxvFF6uR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4146506745,"id_str":"4146506745","name":"\u0623\u0646\u064a\u0646 \u0627\u0644\u0642\u0644\u0628","screen_name":"AneenAlqalb","location":"United Arab Emirates","url":null,"description":"\u062d\u0646\u0627 \u0644\u0647\u0627 \u062c\u064a\u0634 \u0648\u0633\u064a\u0641 \u0648\u0641\u0631\u0633\u0627\u0646 \u0648\u062d\u0646\u0627 \u062d\u0645\u0627\u0629 \u0644\u0644\u0648\u0637\u0646 \u062b\u0645 \u0634\u0639\u0628\u0647\u0627 \u2764\ufe0f \u0623\u0641\u062f\u064a \u0627\u0646\u0627 \u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0628\u0639\u0645\u0631\u064a \u0648\u0644\u0648 \u0643\u0627\u0646 \u0639\u0645\u0631\u064a \u0641\u0627\u0646\u064a \u0645\u0646 \u0627\u062c\u0644\u0647\u0627 \u2764\ufe0f","protected":false,"verified":false,"followers_count":38,"friends_count":203,"listed_count":0,"favourites_count":49,"statuses_count":84,"created_at":"Mon Nov 09 04:10:36 +0000 2015","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663579500647608320\/ij-wIxyR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663579500647608320\/ij-wIxyR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4146506745\/1447044656","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709139475001348,"id_str":"663709139475001348","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","url":"https:\/\/t.co\/OcBxvFF6uR","display_url":"pic.twitter.com\/OcBxvFF6uR","expanded_url":"http:\/\/twitter.com\/AneenAlqalb\/status\/663709154599546881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709139475001348,"id_str":"663709139475001348","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","url":"https:\/\/t.co\/OcBxvFF6uR","display_url":"pic.twitter.com\/OcBxvFF6uR","expanded_url":"http:\/\/twitter.com\/AneenAlqalb\/status\/663709154599546881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AneenAlqalb","name":"\u0623\u0646\u064a\u0646 \u0627\u0644\u0642\u0644\u0628","id":4146506745,"id_str":"4146506745","indices":[3,15]}],"symbols":[],"media":[{"id":663709139475001348,"id_str":"663709139475001348","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","url":"https:\/\/t.co\/OcBxvFF6uR","display_url":"pic.twitter.com\/OcBxvFF6uR","expanded_url":"http:\/\/twitter.com\/AneenAlqalb\/status\/663709154599546881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663709154599546881,"source_status_id_str":"663709154599546881","source_user_id":4146506745,"source_user_id_str":"4146506745"}]},"extended_entities":{"media":[{"id":663709139475001348,"id_str":"663709139475001348","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX38iSWcAQmnqJ.jpg","url":"https:\/\/t.co\/OcBxvFF6uR","display_url":"pic.twitter.com\/OcBxvFF6uR","expanded_url":"http:\/\/twitter.com\/AneenAlqalb\/status\/663709154599546881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663709154599546881,"source_status_id_str":"663709154599546881","source_user_id":4146506745,"source_user_id_str":"4146506745"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079981660"} +{"delete":{"status":{"id":662630540806258688,"id_str":"662630540806258688","user_id":15046892,"user_id_str":"15046892"},"timestamp_ms":"1447079981757"}} +{"delete":{"status":{"id":530740945097347072,"id_str":"530740945097347072","user_id":30023399,"user_id_str":"30023399"},"timestamp_ms":"1447079981827"}} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665862475776,"id_str":"663727665862475776","text":"@josseong \ub098\uc804\uc5d0\u3154..\uba38\u3153..\uba38\ud587\ub354\ub77c..\uba38\ucd94\ucc9c\ud587\uc5c7\uc8e0?..(\ub0b4\uba38\ub9bf\uc18d\uc758\uc9c0\uc6b0\uac1c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725955475636226,"in_reply_to_status_id_str":"663725955475636226","in_reply_to_user_id":384719942,"in_reply_to_user_id_str":"384719942","in_reply_to_screen_name":"josseong","user":{"id":350104561,"id_str":"350104561","name":"\u2665\ud589\ubcf5\ud558\uc0c8\uc6b0\u2665","screen_name":"ssongmi_0w0","location":"\u2665\ub0b4 \uc0ac\ub791\ub4e4 \uc606\uc790\ub9ac","url":"http:\/\/shrimp.nflint.com\/smh\/index.php","description":"\u203b\uc695\ud2b8\ud3ed\ud2b8\uc54c\ud2f0\uc8fc\uc758T0T! ~~~ \u2665\ucee4\ubba4\ub7ec \ucefe\ub355 \uac8c\uc784\uc7a1\ub355 \uad6c\ub3c5..\ub9ce\uc774\ud569\ub2c8\ub2e4..\uc81c\ub300\ub85c \ub41c \uadf8\ub9bc\ubcf4\ub2e4 \ub099\uc11c\uac00 \ub9ce\uc774\uc62c\ub77c\uc634.","protected":false,"verified":false,"followers_count":1290,"friends_count":627,"listed_count":24,"favourites_count":12218,"statuses_count":111212,"created_at":"Sun Aug 07 06:19:55 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578430670206201856\/0bvAdej3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578430670206201856\/0bvAdej3.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660054332260220929\/IUJum9LQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660054332260220929\/IUJum9LQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350104561\/1445482489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"josseong","name":"\uc874\uc131","id":384719942,"id_str":"384719942","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079981662"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879248896,"id_str":"663727665879248896","text":"@veritas_1226 \uc548\ud574\ub3c4\ub41c\ub2e4\ub124\uc694\u3160\u315c \uc774\uc81c\ud22c\ud45c\uc5d0 \uc62c\uc778\ud558\uae30\ub85c\ud574\uc694\u3160\u315c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725298098139136,"in_reply_to_status_id_str":"663725298098139136","in_reply_to_user_id":3243957565,"in_reply_to_user_id_str":"3243957565","in_reply_to_screen_name":"xo150406_150411","user":{"id":3243957565,"id_str":"3243957565","name":"mama\ud22c\ud45c\u2606\uc9c4\uc774","screen_name":"xo150406_150411","location":null,"url":null,"description":"EXO=9\n\uc218\ub2a5\ub05d\ub098\uace0 \ucef4\ubc31\ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":104,"friends_count":879,"listed_count":0,"favourites_count":20744,"statuses_count":14587,"created_at":"Sat Jun 13 05:31:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663360004003467264\/1a8zbZPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663360004003467264\/1a8zbZPt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243957565\/1446992322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"veritas_1226","name":"\ud22c\ud45c\ud558\uc138\uc694 \uc9c4\ub9ac","id":2989674195,"id_str":"2989674195","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079981666"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665866629120,"id_str":"663727665866629120","text":"\u3046\u3093\u3053\u3061\u3083\u3093\u306e\u9006\u8ee2\u88c1\u5224\u3092\u307f\u3066\u306f\u307e\u3063\u305f\u304b\u3089\u3001\u3088\u304b\u3063\u305f\u3089\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u3067\u307f\u3066\u304f\u308c\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3025801098,"id_str":"3025801098","name":"\u00d7\u305b\u3064\u306a","screen_name":"barumunku3333","location":"\u4eac\u90fd","url":null,"description":"like\u2192\u2192\u2192(\u6b4c,\u30a2\u30cb\u30e1,\u30b2\u30fc\u30e0,\u304a\u7d75\u63cf\u304d,\u5b9f\u6cc1,\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u95a2\u9023) icon\u2192\u308d\u3067\u304a(@Uver___222)\nnana\u2192 http:\/\/hibari.nana-music.com\/w\/profile\/807175\/\n\u3088\u304f\u7d61\u307f\u306b\u884c\u304f\u306e\u3067\u4ef2\u826f\u304f\u3057\u3066\u3084\u3063\u3066\u4e0b\u3055\u3044\uff1e\uff1c\u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u969b\u4e00\u8a00\u4e0b\u3055\u3044\u306a","protected":false,"verified":false,"followers_count":52,"friends_count":42,"listed_count":4,"favourites_count":156,"statuses_count":819,"created_at":"Wed Feb 18 13:07:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662753948323987457\/FsJmefNU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662753948323987457\/FsJmefNU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025801098\/1446847900","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981663"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665879191553,"id_str":"663727665879191553","text":"RT @hy_kashi: \u8ae6\u3081\u305f\u304f\u306a\u3063\u3066\u3082 \u3042\u306a\u305f\u307e\u305f\u30db\u30e9\u3001\u512a\u3057\u304f\u3059\u308b\u3067\u3057\u3087\u3046\n(NAO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222874146,"id_str":"3222874146","name":"\u4e2d\u51a8\u3057\u3087\u3046\u3053","screen_name":"chari0131","location":"\u4e5d\u5dde\u65b0\u4eba\u6226\u5165\u8cde","url":null,"description":"CHR \u5065\u30b9\u30dd 1st \u81ea\u8ee2\u8eca\u7af6\u6280\u90e8 \u4e2d\u8ddd\u96e2\u9078\u624b \u3061\u3063\u3061\u3083\u304f\u3066\u3082\u8ca0\u3051\u306a\u3044 \u6c60\u4e0a\u3042\u304b\u308a\u3068\u306e\u5171\u540c\u57a2\u2192@chari_akasho\u4eca\u306f\u3068\u306b\u304b\u304f\u7537\u5b50\u306b\u3064\u3044\u3066\u3044\u304f\u3002","protected":false,"verified":false,"followers_count":175,"friends_count":237,"listed_count":0,"favourites_count":271,"statuses_count":222,"created_at":"Fri May 22 04:05:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661846209045266432\/onikppCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661846209045266432\/onikppCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222874146\/1445896123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:05 +0000 2015","id":663727513500147716,"id_str":"663727513500147716","text":"\u8ae6\u3081\u305f\u304f\u306a\u3063\u3066\u3082 \u3042\u306a\u305f\u307e\u305f\u30db\u30e9\u3001\u512a\u3057\u304f\u3059\u308b\u3067\u3057\u3087\u3046\n(NAO","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405216205,"id_str":"405216205","name":"HY\u6b4c\u8a5e_bot","screen_name":"hy_kashi","location":null,"url":null,"description":"\u975e\u516c\u5f0f\u3067\u3059\u3002\r\nHY\u306e\u6b4c\u8a5e\u30923\u6642\u9593\u304a\u304d\u304f\u3089\u3044\u306b\r\n\u66f4\u65b0\u3057\u3066\u3044\u304fbot\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":13401,"friends_count":6702,"listed_count":108,"favourites_count":0,"statuses_count":11249,"created_at":"Sat Nov 05 00:55:05 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1622993138\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1622993138\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hy_kashi","name":"HY\u6b4c\u8a5e_bot","id":405216205,"id_str":"405216205","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079981666"} +{"delete":{"status":{"id":661353706563223552,"id_str":"661353706563223552","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079982019"}} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665845661696,"id_str":"663727665845661696","text":"#PENDUAL\u306e\u601d\u3044\u51fa https:\/\/t.co\/J4T6qiyN0W","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294923373,"id_str":"294923373","name":"\u304e\u308b","screen_name":"GILDEN_011","location":"Tokyo","url":null,"description":"\u2501\u2501\u2501\u4f53\u306f\u7d05\u8336\u3067\u51fa\u6765\u3066\u3044\u308b\u3002\u5f10\u5bfa\uff08DP\u4e5d\u6bb5\uff09\uff0f\u30d7\u30ed\u30b0\u30ec\u30e1\u30bf\u30e9\u30fc\uff0f\u30b9\u30ce\u30dc\uff0f\u6295\u8cc7\u5bb6\uff0f\u3060\u3089\u30fc\u3063\u3068\u884c\u304d\u307e\u3057\u3087\u3046\u30fd('\u03c9')\uff89\u4e09\u30fd('\u03c9')\uff89","protected":false,"verified":false,"followers_count":226,"friends_count":216,"listed_count":20,"favourites_count":4140,"statuses_count":20563,"created_at":"Sun May 08 01:37:06 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2270046100\/wyvG4Hwy_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2270046100\/wyvG4Hwy_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294923373\/1367599899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PENDUAL\u306e\u601d\u3044\u51fa","indices":[0,12]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727653350838272,"id_str":"663727653350838272","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyL2UkAAUXM7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyL2UkAAUXM7.jpg","url":"https:\/\/t.co\/J4T6qiyN0W","display_url":"pic.twitter.com\/J4T6qiyN0W","expanded_url":"http:\/\/twitter.com\/GILDEN_011\/status\/663727665845661696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727653350838272,"id_str":"663727653350838272","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyL2UkAAUXM7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyL2UkAAUXM7.jpg","url":"https:\/\/t.co\/J4T6qiyN0W","display_url":"pic.twitter.com\/J4T6qiyN0W","expanded_url":"http:\/\/twitter.com\/GILDEN_011\/status\/663727665845661696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079981658"} +{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727665875197952,"id_str":"663727665875197952","text":"#\u0647\u0627\u0643\u062a\u0628_\u0639\u0644\u064a_\u0627\u0644\u062a\u0648\u0643\u062a\u0648\u0643 https:\/\/t.co\/pBygnqiSSu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248808986,"id_str":"248808986","name":"\u0633\u0639\u0648\u062f \u0627\u0644\u0634\u0645\u0631\u064a \u24c2\ufe0f","screen_name":"s3od_23","location":"\u0627\u0646\u0633\u062a\u0642\u0631\u0627\u0645: _s3od_23 ","url":null,"description":"\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u0648\u062d\u062f\u0647 \u0644\u0627 \u0634\u0631\u064a\u0643 \u0644\u0647\u060c \u0644\u0647 \u0627\u0644\u0645\u0644\u0643 \u0648\u0644\u0647 \u0627\u0644\u062d\u0645\u062f\u060c \u0648\u0647\u0648 \u0639\u0644\u0649 \u0643\u0644 \u0634\u064a\u0621 \u0642\u062f\u064a\u0631.","protected":false,"verified":false,"followers_count":1413,"friends_count":1463,"listed_count":2,"favourites_count":19,"statuses_count":16714,"created_at":"Mon Feb 07 19:33:08 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465210366\/image_4_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465210366\/image_4_.png","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663591494645915648\/9NQM7GDM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663591494645915648\/9NQM7GDM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248808986\/1446912820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0647\u0627\u0643\u062a\u0628_\u0639\u0644\u064a_\u0627\u0644\u062a\u0648\u0643\u062a\u0648\u0643","indices":[0,19]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727653690744832,"id_str":"663727653690744832","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyNHXIAAQ2nP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyNHXIAAQ2nP.jpg","url":"https:\/\/t.co\/pBygnqiSSu","display_url":"pic.twitter.com\/pBygnqiSSu","expanded_url":"http:\/\/twitter.com\/s3od_23\/status\/663727665875197952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727653690744832,"id_str":"663727653690744832","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyNHXIAAQ2nP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyNHXIAAQ2nP.jpg","url":"https:\/\/t.co\/pBygnqiSSu","display_url":"pic.twitter.com\/pBygnqiSSu","expanded_url":"http:\/\/twitter.com\/s3od_23\/status\/663727665875197952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079981665"} +{"delete":{"status":{"id":552924014977777667,"id_str":"552924014977777667","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447079982104"}} +{"delete":{"status":{"id":532379064099557376,"id_str":"532379064099557376","user_id":2287389314,"user_id_str":"2287389314"},"timestamp_ms":"1447079982299"}} +{"delete":{"status":{"id":519761519714660354,"id_str":"519761519714660354","user_id":234765079,"user_id_str":"234765079"},"timestamp_ms":"1447079982316"}} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052671488,"id_str":"663727670052671488","text":"I need an album @JackJackJohnson @jackgilinsky @JackAndJackReal","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1191328142,"id_str":"1191328142","name":"Matthew's ass","screen_name":"potterirwin_","location":"Madrid \u2192 Irlanda \u2192 Canada ","url":"https:\/\/twitter.com\/justinbieber\/status\/4665174558","description":"34 letras, 10 palabras, 1 sue\u00f1o: Do you want to be the one less lonely girl? the blood in my veins is made up of mistakes [The tide + Jack & Jack]","protected":false,"verified":false,"followers_count":3142,"friends_count":2154,"listed_count":23,"favourites_count":20254,"statuses_count":127477,"created_at":"Sun Feb 17 22:20:00 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553891130694070272\/IiNYchL8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553891130694070272\/IiNYchL8.jpeg","profile_background_tile":false,"profile_link_color":"940EC9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662743730139480064\/21Ozbe72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662743730139480064\/21Ozbe72_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1191328142\/1446845392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[16,32]},{"screen_name":"jackgilinsky","name":"Jack Gilinsky","id":278328390,"id_str":"278328390","indices":[33,46]},{"screen_name":"JackAndJackReal","name":"Jack & Jack","id":2629502950,"id_str":"2629502950","indices":[47,63]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670048514048,"id_str":"663727670048514048","text":"Nego bota a mochila assim no meu colo nem pergunta de pode","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2265323334,"id_str":"2265323334","name":"Vivi","screen_name":"vic_codeco","location":"021 ","url":null,"description":"...","protected":false,"verified":false,"followers_count":462,"friends_count":333,"listed_count":0,"favourites_count":3014,"statuses_count":41967,"created_at":"Sat Dec 28 04:05:14 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661193401866563585\/RAw5EUC3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661193401866563585\/RAw5EUC3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2265323334\/1446674307","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4d06f4ced88574a4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4d06f4ced88574a4.json","place_type":"city","name":"Itabora\u00ed","full_name":"Itabora\u00ed, Rio de Janeiro","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.061058,-22.872971],[-43.061058,-22.634420],[-42.733672,-22.634420],[-42.733672,-22.872971]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982660"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670061084672,"id_str":"663727670061084672","text":"RT @ItsFoodPorn: Browned Butter Blondies W\/ Nutella Pockets. https:\/\/t.co\/KBippJ1rT3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2968217943,"id_str":"2968217943","name":"eve","screen_name":"zayass_","location":"Taubat\u00e9 SP","url":null,"description":"+ amor, por favor ..\n\n10.07","protected":false,"verified":false,"followers_count":377,"friends_count":326,"listed_count":0,"favourites_count":1573,"statuses_count":7193,"created_at":"Thu Jan 08 18:11:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663473514226327552\/N8gUJHcs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663473514226327552\/N8gUJHcs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2968217943\/1446522871","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 00:44:15 +0000 2015","id":662792644200919040,"id_str":"662792644200919040","text":"Browned Butter Blondies W\/ Nutella Pockets. https:\/\/t.co\/KBippJ1rT3","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834316544,"id_str":"834316544","name":"FoodPorn","screen_name":"ItsFoodPorn","location":null,"url":null,"description":"Feed Your Eyes. Your Daily Food Porn. foodontwitter@gmail.com for inquires \u2709\ufe0f","protected":false,"verified":false,"followers_count":1503352,"friends_count":413,"listed_count":2913,"favourites_count":195,"statuses_count":3159,"created_at":"Wed Sep 19 23:15:00 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506549048304619520\/el4NB7ql.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506549048304619520\/el4NB7ql.jpeg","profile_background_tile":false,"profile_link_color":"131414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000407415017\/74731672e2777d071a147c1077a05283_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000407415017\/74731672e2777d071a147c1077a05283_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834316544\/1418083152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3177,"favorite_count":3945,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662792643890552832,"id_str":"662792643890552832","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","url":"https:\/\/t.co\/KBippJ1rT3","display_url":"pic.twitter.com\/KBippJ1rT3","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/662792644200919040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662792643890552832,"id_str":"662792643890552832","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","url":"https:\/\/t.co\/KBippJ1rT3","display_url":"pic.twitter.com\/KBippJ1rT3","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/662792644200919040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ItsFoodPorn","name":"FoodPorn","id":834316544,"id_str":"834316544","indices":[3,15]}],"symbols":[],"media":[{"id":662792643890552832,"id_str":"662792643890552832","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","url":"https:\/\/t.co\/KBippJ1rT3","display_url":"pic.twitter.com\/KBippJ1rT3","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/662792644200919040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":662792644200919040,"source_status_id_str":"662792644200919040","source_user_id":834316544,"source_user_id_str":"834316544"}]},"extended_entities":{"media":[{"id":662792643890552832,"id_str":"662792643890552832","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTK2ZeLWoAAJWD0.jpg","url":"https:\/\/t.co\/KBippJ1rT3","display_url":"pic.twitter.com\/KBippJ1rT3","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/662792644200919040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":662792644200919040,"source_status_id_str":"662792644200919040","source_user_id":834316544,"source_user_id_str":"834316544"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670040088576,"id_str":"663727670040088576","text":"RT @maturefinancier: the French don't let anyone from india own their steel industry","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383138899,"id_str":"383138899","name":"vangerover","screen_name":"TerryJeffreys","location":"Basildon, Essex","url":null,"description":"Essex birder, EBwS activist. A music nut; early jazz, blues, western swing, rock & Mickey Jupp. Many interests inc geocaching, no time! anti EU!!!","protected":false,"verified":false,"followers_count":79,"friends_count":36,"listed_count":2,"favourites_count":101,"statuses_count":1350,"created_at":"Sat Oct 01 10:17:18 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/519112146161246208\/btMxGWoc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519112146161246208\/btMxGWoc_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:52:06 +0000 2015","id":663700588899786752,"id_str":"663700588899786752","text":"the French don't let anyone from india own their steel industry","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":538206913,"id_str":"538206913","name":"David Sterling","screen_name":"maturefinancier","location":"City of London & East Midlands","url":null,"description":"Ex politician, financier, Support self determination for UK outside of Europe. Tweets my interpretation information received from clients Engineer\/Builder","protected":false,"verified":false,"followers_count":2751,"friends_count":2264,"listed_count":62,"favourites_count":441,"statuses_count":65958,"created_at":"Tue Mar 27 14:33:04 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2952811790\/eb2840dd15815c2915d6fa38a12560dc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2952811790\/eb2840dd15815c2915d6fa38a12560dc_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maturefinancier","name":"David Sterling","id":538206913,"id_str":"538206913","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073663488,"id_str":"663727670073663488","text":"Gostava de saber se algu\u00e9m faz stalk no meu tt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2184203214,"id_str":"2184203214","name":"in\u00eas","screen_name":"souninguemprati","location":"Vendas Novas","url":null,"description":"SLB \/\/ CBO","protected":false,"verified":false,"followers_count":628,"friends_count":606,"listed_count":0,"favourites_count":2159,"statuses_count":24960,"created_at":"Sat Nov 09 12:08:10 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB577C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515553703747526656\/3-luhACT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515553703747526656\/3-luhACT.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657878019206418432\/yP3AY23g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657878019206418432\/yP3AY23g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2184203214\/1444727780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670048501760,"id_str":"663727670048501760","text":"acaba novembro, pula p dia 14 de dezembro e dps vai direto p minha festa, obg de nada","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899810411,"id_str":"2899810411","name":"35","screen_name":"cahetmanu_CRF","location":"RJ","url":null,"description":"eu nasci flamengo e sempre vou te amar","protected":false,"verified":false,"followers_count":297,"friends_count":286,"listed_count":0,"favourites_count":2930,"statuses_count":15580,"created_at":"Fri Nov 14 23:18:57 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726097591369728\/hXTO5om3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726097591369728\/hXTO5om3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899810411\/1440464275","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982660"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670061047808,"id_str":"663727670061047808","text":"Que cosa fea que te baje la presi\u00f3n :c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547746392,"id_str":"547746392","name":"Desire\u2655","screen_name":"IruCriado_crazy","location":null,"url":"http:\/\/instagram.com\/iruucriado","description":"01\/12\/14\u2665#SoyDeLeaYMeDomina \/\/ Te busco en mis sue\u00f1os y te veo sonriendo (M)","protected":false,"verified":false,"followers_count":1088,"friends_count":2003,"listed_count":0,"favourites_count":1065,"statuses_count":12832,"created_at":"Sat Apr 07 16:51:39 +0000 2012","utc_offset":0,"time_zone":"GMT","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553609849028628480\/dJ1Mycyl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553609849028628480\/dJ1Mycyl.jpeg","profile_background_tile":true,"profile_link_color":"642D8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615671084571041793\/OnKRqj9-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615671084571041793\/OnKRqj9-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/547746392\/1424732361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069501952,"id_str":"663727670069501952","text":"Protesto de caminhoneiros j\u00e1 chegou em 11 estados. #G1 https:\/\/t.co\/mnC54kHpVb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191837512,"id_str":"191837512","name":"Marco Raposo","screen_name":"MATR1973","location":"Rio de Janeiro, Brasil","url":null,"description":"N\u00e3o conhe\u00e7o nenhuma f\u00f3rmula infal\u00edvel para obter o sucesso, mas conhe\u00e7o uma forma infal\u00edvel de fracassar: tentar agradar a todos.(John F. Kennedy)","protected":false,"verified":false,"followers_count":33,"friends_count":56,"listed_count":0,"favourites_count":14,"statuses_count":125,"created_at":"Fri Sep 17 13:55:29 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648978681478664192\/LQBKU8b4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648978681478664192\/LQBKU8b4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191837512\/1392811832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"G1","indices":[52,55]}],"urls":[{"url":"https:\/\/t.co\/mnC54kHpVb","expanded_url":"http:\/\/g1.globo.com\/economia\/noticia\/2015\/11\/protesto-de-caminhoneiros-bloqueia-rodovias-pelo-pais.html?utm_source=twitter&utm_medium=share-bar-desktop&utm_campaign=share-bar","display_url":"g1.globo.com\/economia\/notic\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073663489,"id_str":"663727670073663489","text":"@jagj1997 @Carlitoks_ Ajjajaajjajaja sos el peor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663142560244830208,"in_reply_to_status_id_str":"663142560244830208","in_reply_to_user_id":124629725,"in_reply_to_user_id_str":"124629725","in_reply_to_screen_name":"jagj1997","user":{"id":383250707,"id_str":"383250707","name":"Pati Armoa \u2665","screen_name":"PatiArmoa","location":"Paraguay","url":null,"description":"Insta:patyarmoa EXA CPDM 014\u2661","protected":false,"verified":false,"followers_count":437,"friends_count":442,"listed_count":0,"favourites_count":2746,"statuses_count":2946,"created_at":"Sat Oct 01 14:57:37 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654123091019362304\/dPmWyC48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654123091019362304\/dPmWyC48_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383250707\/1437431084","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jagj1997","name":"Jos\u00e9 Gonz\u00e1lez","id":124629725,"id_str":"124629725","indices":[0,9]},{"screen_name":"Carlitoks_","name":"Taz","id":68837114,"id_str":"68837114","indices":[10,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670044131329,"id_str":"663727670044131329","text":"\ud5d0...\uc800\ubd84...\uc815\ub9d0...\uc870\uc544\ud558\ub294 \ubd84\uc778\ub370...\u3160","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3773918059,"id_str":"3773918059","name":"\uae45\uae45","screen_name":"rld_17","location":null,"url":null,"description":"\ubc84\ub17c\uc544 \uc0ac\ub8fd\ud584 \uc0ac\ub2f4\uacc4\ub294 @rldrld_17","protected":false,"verified":false,"followers_count":284,"friends_count":79,"listed_count":1,"favourites_count":194,"statuses_count":2817,"created_at":"Sat Oct 03 20:58:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DB7093","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658313177373937665\/eK96X1gB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658313177373937665\/eK96X1gB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3773918059\/1445036144","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079982659"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670060957696,"id_str":"663727670060957696","text":"RT @SheingB: That SMILE!!! Grabe!!! OTWOL completes my day!\n\n #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252417343,"id_str":"3252417343","name":"Mabelle ","screen_name":"5c71106a7f1c42e","location":null,"url":null,"description":"HAKUNA MATATA\n\nI HEART JADINE!!!","protected":false,"verified":false,"followers_count":91,"friends_count":398,"listed_count":1,"favourites_count":2468,"statuses_count":5562,"created_at":"Mon Jun 22 05:54:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647433304069705728\/fon50TgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647433304069705728\/fon50TgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252417343\/1442550887","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:47 +0000 2015","id":663724668688338946,"id_str":"663724668688338946","text":"That SMILE!!! Grabe!!! OTWOL completes my day!\n\n #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2943432330,"id_str":"2943432330","name":"JadineIsLove","screen_name":"SheingB","location":"abudhabi UAE","url":null,"description":"Facialist. Breadwinner. Loka loka. Bungisngis. Happy go lucky. Witty & I'm just a hardcore fan girl of JADINE. Nobody can makes me kilig like this only them.","protected":false,"verified":false,"followers_count":128,"friends_count":581,"listed_count":3,"favourites_count":83,"statuses_count":2007,"created_at":"Fri Dec 26 04:00:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657654457560231936\/WOL7vxQa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657654457560231936\/WOL7vxQa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2943432330\/1446118110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[24.4461813,54.7165543]},"coordinates":{"type":"Point","coordinates":[54.7165543,24.4461813]},"place":{"id":"00f24ae701a1207b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f24ae701a1207b.json","place_type":"admin","name":"Abu Dhabi","full_name":"Abu Dhabi, United Arab Emirates","country_code":"AE","country":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629","bounding_box":{"type":"Polygon","coordinates":[[[51.293874,22.626139],[51.293874,25.163959],[56.017546,25.163959],[56.017546,22.626139]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":2,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[49,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[62,72]}],"urls":[],"user_mentions":[{"screen_name":"SheingB","name":"JadineIsLove","id":2943432330,"id_str":"2943432330","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670035791872,"id_str":"663727670035791872","text":"RT @EhAzfar_: Pendekar Bujang Lapok tetap win walaupun cerita lama . https:\/\/t.co\/RS9NeiUG33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1297404637,"id_str":"1297404637","name":"Grngo","screen_name":"Nylimimi_","location":null,"url":"http:\/\/gadisteenslumber.blogspot.com\/","description":"Fight fr 9A+","protected":false,"verified":false,"followers_count":1035,"friends_count":765,"listed_count":2,"favourites_count":10806,"statuses_count":40175,"created_at":"Mon Mar 25 02:40:07 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599437098316238849\/-mIHquCm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599437098316238849\/-mIHquCm.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663609747283677184\/U8GEY8E6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663609747283677184\/U8GEY8E6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1297404637\/1446914987","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:36 +0000 2015","id":663723115227156480,"id_str":"663723115227156480","text":"Pendekar Bujang Lapok tetap win walaupun cerita lama . https:\/\/t.co\/RS9NeiUG33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":556889252,"id_str":"556889252","name":"apau","screen_name":"EhAzfar_","location":null,"url":null,"description":"OP Aremsi 18\n\nIG azfxrp","protected":false,"verified":false,"followers_count":1845,"friends_count":797,"listed_count":1,"favourites_count":3713,"statuses_count":21787,"created_at":"Wed Apr 18 14:02:48 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"52CCA7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156243240\/fmDCiMGR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156243240\/fmDCiMGR.jpeg","profile_background_tile":true,"profile_link_color":"A473D4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CDC61E","profile_text_color":"A2D248","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661931218267602944\/vuaD2LAi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661931218267602944\/vuaD2LAi_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723113734012928,"id_str":"663723113734012928","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","url":"https:\/\/t.co\/RS9NeiUG33","display_url":"pic.twitter.com\/RS9NeiUG33","expanded_url":"http:\/\/twitter.com\/EhAzfar_\/status\/663723115227156480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723113734012928,"id_str":"663723113734012928","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","url":"https:\/\/t.co\/RS9NeiUG33","display_url":"pic.twitter.com\/RS9NeiUG33","expanded_url":"http:\/\/twitter.com\/EhAzfar_\/status\/663723115227156480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EhAzfar_","name":"apau","id":556889252,"id_str":"556889252","indices":[3,12]}],"symbols":[],"media":[{"id":663723113734012928,"id_str":"663723113734012928","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","url":"https:\/\/t.co\/RS9NeiUG33","display_url":"pic.twitter.com\/RS9NeiUG33","expanded_url":"http:\/\/twitter.com\/EhAzfar_\/status\/663723115227156480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663723115227156480,"source_status_id_str":"663723115227156480","source_user_id":556889252,"source_user_id_str":"556889252"}]},"extended_entities":{"media":[{"id":663723113734012928,"id_str":"663723113734012928","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEp8dVAAA-_NF.jpg","url":"https:\/\/t.co\/RS9NeiUG33","display_url":"pic.twitter.com\/RS9NeiUG33","expanded_url":"http:\/\/twitter.com\/EhAzfar_\/status\/663723115227156480\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663723115227156480,"source_status_id_str":"663723115227156480","source_user_id":556889252,"source_user_id_str":"556889252"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079982657"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670039986176,"id_str":"663727670039986176","text":"RT @HillaryOlizer: Ever wonder what #HillaryClinton supporters think... #reporter https:\/\/t.co\/kIKg90324Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113779850,"id_str":"113779850","name":"heiwanoinori ","screen_name":"heiwanoinori","location":"to tokyo","url":null,"description":"\u80fd\u3042\u308b\u9df9\u306f\u722a\u3092\u96a0\u3059\u3068\u8a00\u3044\u307e\u3059\u304c\u3001\u5143\u3005\u80fd\u3082\u722a\u3082\u6301\u305f\u306a\u3044\u79c1\u304c\u3053\u3053\u306b\u3044\u307e\u3059\u3000\u5e73\u548c\u3092\u9858\u3044\u611b\u3057\u3066\u3044\u308b\u4e00\u4eba\u3067\u3059\u3000","protected":false,"verified":false,"followers_count":2430,"friends_count":2538,"listed_count":87,"favourites_count":18,"statuses_count":99248,"created_at":"Sat Feb 13 01:10:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/96502617\/2010-04-28_05-12-15_180.2.206.227.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/96502617\/2010-04-28_05-12-15_180.2.206.227.jpg","profile_background_tile":false,"profile_link_color":"26C304","profile_sidebar_border_color":"7E704D","profile_sidebar_fill_color":"E8FFD1","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/857184275\/icon12724382634813_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/857184275\/icon12724382634813_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113779850\/1356596498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:45:05 +0000 2015","id":663698823064231936,"id_str":"663698823064231936","text":"Ever wonder what #HillaryClinton supporters think... #reporter https:\/\/t.co\/kIKg90324Y","source":"\u003ca href=\"http:\/\/leadstories.com\" rel=\"nofollow\"\u003eLeadstories Feed Publisher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040387112,"id_str":"4040387112","name":"Hillary Clinton News","screen_name":"HillaryOlizer","location":null,"url":"http:\/\/hillary-clinton.leadstories.com\/","description":"The most trending news about Hillary Clinton as identified by Lead Stories' Trendolizer","protected":false,"verified":false,"followers_count":307,"friends_count":2232,"listed_count":6,"favourites_count":0,"statuses_count":878,"created_at":"Tue Oct 27 23:29:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659150167354961920\/2z8FPtNv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659150167354961920\/2z8FPtNv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4040387112\/1445988796","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"HillaryClinton","indices":[17,32]},{"text":"reporter","indices":[54,63]}],"urls":[{"url":"https:\/\/t.co\/kIKg90324Y","expanded_url":"http:\/\/hillary-clinton.leadstories.com\/083196-ever-wonder-what-hillary-clinton-supporters-think.html","display_url":"hillary-clinton.leadstories.com\/083196-ever-wo\u2026","indices":[64,87]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HillaryClinton","indices":[36,51]},{"text":"reporter","indices":[73,82]}],"urls":[{"url":"https:\/\/t.co\/kIKg90324Y","expanded_url":"http:\/\/hillary-clinton.leadstories.com\/083196-ever-wonder-what-hillary-clinton-supporters-think.html","display_url":"hillary-clinton.leadstories.com\/083196-ever-wo\u2026","indices":[83,106]}],"user_mentions":[{"screen_name":"HillaryOlizer","name":"Hillary Clinton News","id":4040387112,"id_str":"4040387112","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670035918848,"id_str":"663727670035918848","text":"RT @pensoestranho: dilma e seu minist\u00e9rio genial. \nos caras \u00f1 tem nenhum contato c\/ a classe ou o movimento, mas s\u00e3o perempt\u00f3rios. https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74613798,"id_str":"74613798","name":"Alan Porto Vieira \u0646","screen_name":"alanportovieira","location":"S\u00e3o Paulo","url":"http:\/\/pescaldoshow.com.br","description":"Um molotov de amor","protected":false,"verified":false,"followers_count":515,"friends_count":171,"listed_count":12,"favourites_count":136,"statuses_count":32701,"created_at":"Wed Sep 16 01:09:58 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450681896901410816\/8K75xzRj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450681896901410816\/8K75xzRj.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618136136750399488\/Gji7kocu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618136136750399488\/Gji7kocu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74613798\/1415715205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:58 +0000 2015","id":663727235212406784,"id_str":"663727235212406784","text":"dilma e seu minist\u00e9rio genial. \nos caras \u00f1 tem nenhum contato c\/ a classe ou o movimento, mas s\u00e3o perempt\u00f3rios. https:\/\/t.co\/04duojUGSi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89812112,"id_str":"89812112","name":"penso estranho","screen_name":"pensoestranho","location":"S\u00e3o Paulo.","url":null,"description":"Chato.\r\nAntropocentrista.","protected":false,"verified":false,"followers_count":4636,"friends_count":568,"listed_count":54,"favourites_count":1331,"statuses_count":74277,"created_at":"Fri Nov 13 22:41:29 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"090A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460560044514213888\/of2yKqj-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460560044514213888\/of2yKqj-.jpeg","profile_background_tile":true,"profile_link_color":"1D9CF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470936013125066752\/yjJ7Wva7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470936013125066752\/yjJ7Wva7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89812112\/1398446477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726828411047936,"quoted_status_id_str":"663726828411047936","quoted_status":{"created_at":"Mon Nov 09 14:36:21 +0000 2015","id":663726828411047936,"id_str":"663726828411047936","text":"Um ministro: em crise, pessoas n querem melhorias, mas manter seu emprego. Por isso, avaliam dif\u00edcil ades\u00e3o \u00e0 greve q consideram pol\u00edtica","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40545889,"id_str":"40545889","name":"Andr\u00e9ia Koudsi Sadi","screen_name":"AndreiaSadi","location":"Bras\u00edlia","url":null,"description":"Jornalista.","protected":false,"verified":false,"followers_count":6477,"friends_count":1193,"listed_count":100,"favourites_count":493,"statuses_count":7947,"created_at":"Sat May 16 21:29:14 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656844576695721988\/kFbe61XI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656844576695721988\/kFbe61XI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/04duojUGSi","expanded_url":"https:\/\/twitter.com\/AndreiaSadi\/status\/663726828411047936","display_url":"twitter.com\/AndreiaSadi\/st\u2026","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/04duojUGSi","expanded_url":"https:\/\/twitter.com\/AndreiaSadi\/status\/663726828411047936","display_url":"twitter.com\/AndreiaSadi\/st\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"pensoestranho","name":"penso estranho","id":89812112,"id_str":"89812112","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982657"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670044180480,"id_str":"663727670044180480","text":"RT @KadyTooSexy: Reasons To Check Behind You Before Snapping That Selfie.\nhttps:\/\/t.co\/ltos2kzBMD","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":919797284,"id_str":"919797284","name":"\u2654 Alyson \u2654","screen_name":"iIIicitly","location":null,"url":null,"description":"\u2022 The Legend \u2022","protected":false,"verified":false,"followers_count":24413,"friends_count":24170,"listed_count":42,"favourites_count":1529,"statuses_count":4332,"created_at":"Thu Nov 01 20:29:55 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610976736449306625\/5PJAOjhz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610976736449306625\/5PJAOjhz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919797284\/1430252038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 13:25:42 +0000 2015","id":662259497080135681,"id_str":"662259497080135681","text":"Reasons To Check Behind You Before Snapping That Selfie.\nhttps:\/\/t.co\/ltos2kzBMD","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848552025,"id_str":"2848552025","name":"Kadian White","screen_name":"KadyTooSexy","location":"Bradenton ","url":null,"description":"Call me maybe... lol I'm just silly but hit my pm after a follow tho","protected":false,"verified":false,"followers_count":35046,"friends_count":32803,"listed_count":42,"favourites_count":520,"statuses_count":1144,"created_at":"Tue Oct 28 17:57:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527169318577250305\/Ku97ILjE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527169318577250305\/Ku97ILjE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848552025\/1414521847","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ltos2kzBMD","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53x2ng3\/14cqe","display_url":"cards.twitter.com\/cards\/18ce53x2\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ltos2kzBMD","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53x2ng3\/14cqe","display_url":"cards.twitter.com\/cards\/18ce53x2\u2026","indices":[74,97]}],"user_mentions":[{"screen_name":"KadyTooSexy","name":"Kadian White","id":2848552025,"id_str":"2848552025","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982659"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670040125441,"id_str":"663727670040125441","text":"\u062d\u062a\u064a \u0628\u0627\u0644\u062a\u0639\u0644\u064a\u0645 \u0643\u0627\u0641\u064a \u0639\u064a\u0627\u0644\u0646\u0627 \u0646\u0635\u0647\u0645 \u0645\u0646 \u0643\u062b\u0631 \u0627\u0644\u062e\u062f\u0645 \u0646\u0633\u064a \u0644\u063a\u062a\u0647 \u062a\u0628\u0648\u0646\u0647\u0645 \u064a\u0636\u064a\u0639\u0648\u0646 \u0639\u064a\u0627\u0644\u0646\u0627 \u0628\u0627\u0644\u0645\u062f\u0627\u0631\u0633 \u0647\u0646\u062f\u064a \u0645\u0635\u0631\u064a \u0628\u0646\u063a\u0627\u0644\u064a \u062a\u0639\u0644\u064a\u0645 \u062d\u0643\u0648\u0645\u064a #\u0627\u0639\u062a\u0628\u0631\u0648\u0646\u0627_\u0648\u0627\u0641\u062f\u064a\u0646_\u064a\u0627\u0646\u0648\u0627\u0628_\u0627\u0644\u0623\u0645\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2526796580,"id_str":"2526796580","name":"\u0645\u0644\u064a\u0646\u0627 \u0645\u0646 \u0627\u0644\u0641\u0648\u0636\u064a","screen_name":"kxxxxzzzz","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0639\u0644\u064a\u0643 \u0628\u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646 \u0648\u0627\u0644\u0638\u0627\u0644\u0645\u0627\u062a \u0627\u0644\u0627\u062d\u064a\u0627\u0621 \u0645\u0646\u0647\u0645 \u0648\u0627\u0644\u0627\u0645\u0648\u0627\u062a \u0627\u0644\u0644\u0647\u0645 \u0632\u0644\u0632\u0644 \u0627\u0644\u0627\u0631\u0636 \u062a\u062d\u062a \u0627\u0642\u062f\u0627\u0645\u0647\u0645 \u0648\u0644\u0627 \u062a\u0630\u0642\u0647\u0645 \u0637\u0639\u0645 \u0644\u0644\u0631\u0627\u062d\u0647 \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0627\u0644\u0627\u062e\u0631\u0647 \u0627\u0645\u064a\u064a\u064a\u064a\u064a\u0646","protected":false,"verified":false,"followers_count":1579,"friends_count":2063,"listed_count":0,"favourites_count":2019,"statuses_count":4496,"created_at":"Tue May 27 07:21:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650857181974147072\/cukPlOfy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650857181974147072\/cukPlOfy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0639\u062a\u0628\u0631\u0648\u0646\u0627_\u0648\u0627\u0641\u062f\u064a\u0646_\u064a\u0627\u0646\u0648\u0627\u0628_\u0627\u0644\u0623\u0645\u0629","indices":[111,140]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052581376,"id_str":"663727670052581376","text":"RT @Body_Tattoos: These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3198274698,"id_str":"3198274698","name":"Fabricius Grinikhin","screen_name":"wovucizigibi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":240,"friends_count":1608,"listed_count":13,"favourites_count":17350,"statuses_count":17672,"created_at":"Sun May 17 02:00:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645767826222018560\/nilL1_57_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645767826222018560\/nilL1_57_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:34 +0000 2015","id":663726125600886784,"id_str":"663726125600886784","text":"These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236446485,"id_str":"3236446485","name":"Body Tattoos","screen_name":"Body_Tattoos","location":"Las Vegas, NV","url":"http:\/\/body-tattoos.com","description":"Thousands of tattoo pictures, Body Art Tattoos, Tattoo Pictures, Latest Tattooo Designs at http:\/\/body-tattoos.com","protected":false,"verified":false,"followers_count":94822,"friends_count":1158,"listed_count":3,"favourites_count":2,"statuses_count":378,"created_at":"Tue May 05 18:17:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236446485\/1446612867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2185,"favorite_count":1392,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[91,114]}],"user_mentions":[{"screen_name":"Body_Tattoos","name":"Body Tattoos","id":3236446485,"id_str":"3236446485","indices":[3,16]}],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670061084673,"id_str":"663727670061084673","text":"RT @alineenm: \"OOOH ALINE, VAMOS POR ALI\" -@PurposeRay \nFalou pra Deus e o mundo ouvir","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2963245469,"id_str":"2963245469","name":"Rayane","screen_name":"PurposeRay","location":"Rio de Janeiro, Brasil","url":null,"description":"I believe in my dreams ! *-*","protected":false,"verified":false,"followers_count":351,"friends_count":282,"listed_count":0,"favourites_count":1190,"statuses_count":1143,"created_at":"Tue Jan 06 02:29:09 +0000 2015","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638084358184697856\/JwN4s1sV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638084358184697856\/JwN4s1sV.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648531131344678912\/1q-2RlM0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648531131344678912\/1q-2RlM0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2963245469\/1446936749","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:00 +0000 2015","id":663726484956258304,"id_str":"663726484956258304","text":"\"OOOH ALINE, VAMOS POR ALI\" -@PurposeRay \nFalou pra Deus e o mundo ouvir","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718922575,"id_str":"718922575","name":"Aline","screen_name":"alineenm","location":"Rio de Janeiro, Brasil","url":"https:\/\/instagram.com\/alineenm\/","description":"RJ\/BR |14| Snap: alinenm32","protected":false,"verified":false,"followers_count":658,"friends_count":570,"listed_count":2,"favourites_count":4097,"statuses_count":17125,"created_at":"Thu Jul 26 22:44:04 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659439961771483136\/Li-ebwqo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659439961771483136\/Li-ebwqo.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661200623581425664\/LO2Lwtz7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661200623581425664\/LO2Lwtz7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718922575\/1446057487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PurposeRay","name":"Rayane","id":2963245469,"id_str":"2963245469","indices":[29,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alineenm","name":"Aline","id":718922575,"id_str":"718922575","indices":[3,12]},{"screen_name":"PurposeRay","name":"Rayane","id":2963245469,"id_str":"2963245469","indices":[43,54]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052569088,"id_str":"663727670052569088","text":"\uac11\uc790\uae30 \ud0d0\ub77c\uac00 \uc870\uc6a9\ud574\uc84c\ub2e4","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2175834991,"id_str":"2175834991","name":"\uc2a4\ud50c \u3147_\u314e","screen_name":"gksdbswl951","location":null,"url":null,"description":"8 \uc18c\uc6d0 \uc120\ud314\ud558\uace0 \uba58\uc158\uc8fc\uba74 \ub9de\ud314\ud574\uc694 \ud574\uce58\uc9c0\uc54a\uc2b5\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":149,"friends_count":408,"listed_count":0,"favourites_count":398,"statuses_count":6486,"created_at":"Tue Nov 05 10:49:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653774786946969600\/kcog4zY1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653774786946969600\/kcog4zY1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2175834991\/1435630722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069325824,"id_str":"663727670069325824","text":"RT @hkdmz: \u3010\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fc\u3011\u7b2c8\u56de\u8b0e\u7d20\u6750\u5408\u4f5c (69:05) https:\/\/t.co\/mtISJG0ek3 #sm27533481\u3000\u30bf\u30b0\u300c\u8cb4\u91cd\u306a1\u6642\u9593\u3060\u305e\u3088\u304f\u8003\u3048\u308d\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3675507571,"id_str":"3675507571","name":"AYAKO","screen_name":"AYAKO_Cyan","location":null,"url":null,"description":"\u30e1\u30e1\u30f3\u30c8\u30fb\u30e2\u30ea!!","protected":false,"verified":false,"followers_count":12,"friends_count":179,"listed_count":0,"favourites_count":1838,"statuses_count":2718,"created_at":"Thu Sep 24 23:36:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"8352A4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647206612516507648\/SIPJSWSZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647206612516507648\/SIPJSWSZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3675507571\/1443621232","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:10 +0000 2015","id":663726027193978881,"id_str":"663726027193978881","text":"\u3010\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fc\u3011\u7b2c8\u56de\u8b0e\u7d20\u6750\u5408\u4f5c (69:05) https:\/\/t.co\/mtISJG0ek3 #sm27533481\u3000\u30bf\u30b0\u300c\u8cb4\u91cd\u306a1\u6642\u9593\u3060\u305e\u3088\u304f\u8003\u3048\u308d\u300d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19442359,"id_str":"19442359","name":"\u304b\u3057\u3093","screen_name":"hkdmz","location":"\u6771\u4eac","url":"http:\/\/hk.dmz-plus.com\/","description":"\uff11\u65e5\u306e1\/8\u3092\u30cd\u30bf\u96c6\u3081\u306b\u8cbb\u3084\u3059\u7a0b\u5ea6\u306e\u80fd\u529b\u3092\u6301\u3064\u3002\u7269\u51c4\u304f\u6ca2\u5c71\u66f8\u304f\u65e5\u3068\u66f8\u304b\u306a\u3044\u65e5\u304c\u304f\u3063\u304d\u308a\u5206\u304b\u308c\u307e\u3059\u3002follow\/remove\u3054\u81ea\u7531\u306b\u3002\u3000360FPS\u3001\u81ea\u8ee2\u8eca\u3001\u30b5\u30d0\u30b2\u3001\u30c9\u30fc\u30eb\u3001\u30ab\u30e1\u30e9\u3001\u500b\u4eba\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8\u3001\u5409\u7965\u5bfa\u3001\u6df1\u591c\u3054\u98ef\u753b\u50cf\u30c6\u30ed\u30af\u30e9\u30b9\u30bf\u3002","protected":false,"verified":false,"followers_count":9090,"friends_count":2365,"listed_count":560,"favourites_count":70547,"statuses_count":140453,"created_at":"Sat Jan 24 11:22:03 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537322059051704320\/4030ixKz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537322059051704320\/4030ixKz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19442359\/1348215619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"sm27533481","indices":[51,62]}],"urls":[{"url":"https:\/\/t.co\/mtISJG0ek3","expanded_url":"http:\/\/nico.ms\/sm27533481","display_url":"nico.ms\/sm27533481","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm27533481","indices":[62,73]}],"urls":[{"url":"https:\/\/t.co\/mtISJG0ek3","expanded_url":"http:\/\/nico.ms\/sm27533481","display_url":"nico.ms\/sm27533481","indices":[38,61]}],"user_mentions":[{"screen_name":"hkdmz","name":"\u304b\u3057\u3093","id":19442359,"id_str":"19442359","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670040088577,"id_str":"663727670040088577","text":"Que coma mucha mierda ese Hijueputa de ahora, o sino como toqu\u00e9 con ese HIJUEPUTA. \ud83d\ude20\ud83d\ude20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":627662236,"id_str":"627662236","name":"Skyrim...","screen_name":"HombreCincoyTre","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":99,"friends_count":12,"listed_count":0,"favourites_count":1576,"statuses_count":2929,"created_at":"Thu Jul 05 19:23:53 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480156294704136192\/I1RxudOD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480156294704136192\/I1RxudOD.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480150745925185537\/qYPaRuSK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480150745925185537\/qYPaRuSK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/627662236\/1403314373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670065172480,"id_str":"663727670065172480","text":"\u8a00\u8449\u304c\u60aa\u3044\u65b9\u304c\u4ffa\u306f\u4e0a\u624b\u3044\u3068\u601d\u3063\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169817953,"id_str":"169817953","name":"\u9f8d\u738b","screen_name":"bluekingdragon","location":"\u611b\u77e5\u770c\u540d\u53e4\u5c4b\u5e02","url":"http:\/\/bluekingdragon.dip.jp\/sdvx\/showUserData.php?id=bluekingdragon","description":"\u3042\u3068\u308d\u307d\u3059 \/ \u30a2\u30c8\u30ed\u30dd\u30b9 \/ Atropos","protected":false,"verified":false,"followers_count":299,"friends_count":150,"listed_count":12,"favourites_count":556,"statuses_count":33337,"created_at":"Fri Jul 23 06:50:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122066648\/dragon_icon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122066648\/dragon_icon_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169817953\/1442138088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982664"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052544512,"id_str":"663727670052544512","text":"\u591a\u5206\u3082\u3046\u30e9\u30f3\u30dc\u306f\u8d70\u3089\u306a\u3044\u3063\u3066\u304b\u8d70\u308c\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906787950,"id_str":"2906787950","name":"\u9bd6\u7f36","screen_name":"saba_iwasi","location":"\u9cf4\u5b50\u90c1\u306e\u8c5a","url":"http:\/\/twpf.jp\/saba_iwasi","description":"ACTORS(\u9cf4\u5b50\u90c1)\/\u5546\u696dBL(\u304a\u3052\u308c\u3064\u305f\u306a\u304b\u5148\u751f\u3001\u79c0\u826f\u5b50\u5148\u751f)\/\u3042\u3093\u30b9\u30bf(\u5927\u795e\u6643\u7259)","protected":false,"verified":false,"followers_count":136,"friends_count":106,"listed_count":8,"favourites_count":11319,"statuses_count":22919,"created_at":"Sat Nov 22 07:02:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579613232840634369\/d-bamb8Y.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579613232840634369\/d-bamb8Y.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663334977153531905\/4i1Ei5wp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663334977153531905\/4i1Ei5wp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906787950\/1441291026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670044282880,"id_str":"663727670044282880","text":"RT @maha4054: \u0645\u0646 \u064a\u0628\u064a\u0647\u0627 https:\/\/t.co\/4AHNP8n0aT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479864227,"id_str":"2479864227","name":"\u0625\u0633\u0645\u0631","screen_name":"MimoS707715","location":null,"url":null,"description":"\u0627\u0644\u0631\u064a\u0627\u0636","protected":false,"verified":false,"followers_count":3515,"friends_count":4341,"listed_count":10,"favourites_count":805,"statuses_count":2929,"created_at":"Sat Apr 12 21:33:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470366991744634880\/qyQaMsDx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470366991744634880\/qyQaMsDx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479864227\/1424608802","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:28:36 +0000 2015","id":663679578674757632,"id_str":"663679578674757632","text":"\u0645\u0646 \u064a\u0628\u064a\u0647\u0627 https:\/\/t.co\/4AHNP8n0aT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2879970218,"id_str":"2879970218","name":"\u0634\u0647\u0648\u0629 \u0623\u0646\u062b\u0649","screen_name":"maha4054","location":null,"url":null,"description":"\u0627\u0644\u063a\u0631\u0628\u064a\u0629\u060c \u062b\u0644\u0627\u062b\u064a\u0646\u064a\u0629\u060c \u0645\u062a\u0632\u0648\u062c\u0647\u060c \u0645\u062a\u062d\u0631\u0631\u0629 \u060c \u0645\u0631\u0628\u0631\u0628\u0629 \u060c \u0627\u0631\u062f\u0627\u0641\u064a \u0628\u0627\u0631\u0632\u0629 \u060c \u0623\u0643\u0633\u0628 \u0631\u0632\u0642\u064a \u0645\u0646 \u0639\u0631\u0642 \u062c\u0633\u062f\u064a \u060c \u0645\u0641\u062a\u0648\u062d\u0647 \u0645\u0646 \u0627\u0644\u062c\u0647\u062a\u064a\u0646 \u060c \u0627\u062d\u0628 \u0627\u0644\u062a\u0633\u0648\u0642 \u060c \u0648\u0627\u0644\u0633\u0647\u0631","protected":false,"verified":false,"followers_count":78280,"friends_count":1638,"listed_count":146,"favourites_count":1157,"statuses_count":17,"created_at":"Mon Oct 27 20:15:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582312296417927168\/jTl33boY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582312296417927168\/jTl33boY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2879970218\/1414441217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663679565341020160,"id_str":"663679565341020160","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","url":"https:\/\/t.co\/4AHNP8n0aT","display_url":"pic.twitter.com\/4AHNP8n0aT","expanded_url":"http:\/\/twitter.com\/maha4054\/status\/663679578674757632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":700,"resize":"fit"},"large":{"w":768,"h":896,"resize":"fit"},"small":{"w":340,"h":396,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663679565341020160,"id_str":"663679565341020160","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","url":"https:\/\/t.co\/4AHNP8n0aT","display_url":"pic.twitter.com\/4AHNP8n0aT","expanded_url":"http:\/\/twitter.com\/maha4054\/status\/663679578674757632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":700,"resize":"fit"},"large":{"w":768,"h":896,"resize":"fit"},"small":{"w":340,"h":396,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maha4054","name":"\u0634\u0647\u0648\u0629 \u0623\u0646\u062b\u0649","id":2879970218,"id_str":"2879970218","indices":[3,12]}],"symbols":[],"media":[{"id":663679565341020160,"id_str":"663679565341020160","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","url":"https:\/\/t.co\/4AHNP8n0aT","display_url":"pic.twitter.com\/4AHNP8n0aT","expanded_url":"http:\/\/twitter.com\/maha4054\/status\/663679578674757632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":700,"resize":"fit"},"large":{"w":768,"h":896,"resize":"fit"},"small":{"w":340,"h":396,"resize":"fit"}},"source_status_id":663679578674757632,"source_status_id_str":"663679578674757632","source_user_id":2879970218,"source_user_id_str":"2879970218"}]},"extended_entities":{"media":[{"id":663679565341020160,"id_str":"663679565341020160","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdDGDWUAA4Ptp.jpg","url":"https:\/\/t.co\/4AHNP8n0aT","display_url":"pic.twitter.com\/4AHNP8n0aT","expanded_url":"http:\/\/twitter.com\/maha4054\/status\/663679578674757632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":700,"resize":"fit"},"large":{"w":768,"h":896,"resize":"fit"},"small":{"w":340,"h":396,"resize":"fit"}},"source_status_id":663679578674757632,"source_status_id_str":"663679578674757632","source_user_id":2879970218,"source_user_id_str":"2879970218"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079982659"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052716544,"id_str":"663727670052716544","text":"@Adrien_Fenwick What did she show!?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726974762885120,"in_reply_to_status_id_str":"663726974762885120","in_reply_to_user_id":2447553320,"in_reply_to_user_id_str":"2447553320","in_reply_to_screen_name":"Adrien_Fenwick","user":{"id":502168637,"id_str":"502168637","name":"haley.","screen_name":"H_Niicole_","location":null,"url":null,"description":"18.","protected":false,"verified":false,"followers_count":511,"friends_count":400,"listed_count":1,"favourites_count":5661,"statuses_count":11634,"created_at":"Fri Feb 24 21:51:18 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556124938797461504\/GfiEm4qH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556124938797461504\/GfiEm4qH.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657378428589621248\/xbFPPYor_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657378428589621248\/xbFPPYor_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/502168637\/1446417200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Adrien_Fenwick","name":"A-Rod","id":2447553320,"id_str":"2447553320","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670056775681,"id_str":"663727670056775681","text":"9 Women Kept This Secret For Decades That Not Even Their Husbands Knew About. Wow. https:\/\/t.co\/1paWvFkM9m","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994804892,"id_str":"2994804892","name":"Oak Rai News","screen_name":"OAKRaiders_news","location":"Oakland, US","url":null,"description":"Latest news from the amazing Oakland Raiders. Fanaccount, not official! Enjoy our posts.","protected":false,"verified":false,"followers_count":5782,"friends_count":1019,"listed_count":9,"favourites_count":0,"statuses_count":5112,"created_at":"Fri Jan 23 20:41:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562701092383772672\/bjA_g6Zy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562701092383772672\/bjA_g6Zy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994804892\/1422993391","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1paWvFkM9m","expanded_url":"http:\/\/motlvate.com\/4891981-12309753?rTC6","display_url":"motlvate.com\/4891981-123097\u2026","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982662"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670044291072,"id_str":"663727670044291072","text":"na wf wszystkie dziewczyny z mojego rocznika by\u0142y podzielone na pi\u0119\u0107 dru\u017cyn i mia\u0142y\u015bmy wy\u015bcigi","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1709643734,"id_str":"1709643734","name":"alien","screen_name":"lduikcek","location":"poland","url":null,"description":"\u2728 i saw 9\/24 my idols \u2728\r\nola xx","protected":false,"verified":false,"followers_count":2117,"friends_count":1847,"listed_count":3,"favourites_count":18609,"statuses_count":20959,"created_at":"Thu Aug 29 10:14:12 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620295271994408960\/r_tW9gXo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620295271994408960\/r_tW9gXo.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663280540880084996\/zLKVuDKE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663280540880084996\/zLKVuDKE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1709643734\/1446975901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447079982659"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670040125440,"id_str":"663727670040125440","text":"@xruisx @K_Ruiter Er gaat een wereld voor me open","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727566101065728,"in_reply_to_status_id_str":"663727566101065728","in_reply_to_user_id":2261915545,"in_reply_to_user_id_str":"2261915545","in_reply_to_screen_name":"xruisx","user":{"id":247018433,"id_str":"247018433","name":"WeeWim","screen_name":"weewim","location":"Valkenburg zh","url":null,"description":"Official account of the Dutch legend from Valkenburg. Ambassadeur van het begrip #omweer","protected":false,"verified":false,"followers_count":1272,"friends_count":879,"listed_count":11,"favourites_count":4353,"statuses_count":61926,"created_at":"Thu Feb 03 22:50:44 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630839364554227712\/nr6ODJPX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630839364554227712\/nr6ODJPX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247018433\/1425910717","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xruisx","name":"Ruis","id":2261915545,"id_str":"2261915545","indices":[0,7]},{"screen_name":"K_Ruiter","name":"Kerst Ruiter","id":110690369,"id_str":"110690369","indices":[8,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073552896,"id_str":"663727670073552896","text":"@iirrarcGNhd8TgV \u307e\u3068\u3081\u3066\u306e\u53ef\u80fd\u6027\u3042\u308b\u304b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716923994083328,"in_reply_to_status_id_str":"663716923994083328","in_reply_to_user_id":3483665954,"in_reply_to_user_id_str":"3483665954","in_reply_to_screen_name":"iirrarcGNhd8TgV","user":{"id":2889840139,"id_str":"2889840139","name":"\u26a1\ufe0f\u306b\u3083\u3093\u5409\u26a1\ufe0f@cho","screen_name":"PPPPPP_P_CHO55","location":null,"url":null,"description":"DOBERMAN INC\u306f5\u4eba\u6642\u4ee3\u304c\u597d\u304d\u2728 DOBERMAN INFINITY P-CHO BlackMusic&Cat\u2764\ufe0f \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u3088\u308d\u3057\u304f\u301c\uff01 \u4f55\u3082\u306a\u3051\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093(\uffe3\u25bd\uffe3)","protected":false,"verified":false,"followers_count":81,"friends_count":148,"listed_count":2,"favourites_count":2046,"statuses_count":4185,"created_at":"Tue Nov 04 13:28:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662175929519616000\/u1wGlAXn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662175929519616000\/u1wGlAXn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2889840139\/1419810827","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iirrarcGNhd8TgV","name":"\u307d\u3093","id":3483665954,"id_str":"3483665954","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073495557,"id_str":"663727670073495557","text":"https:\/\/t.co\/0D8sPXkcBn","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":589762826,"id_str":"589762826","name":"maciej przychodzki","screen_name":"wwwauto77com","location":"usa, polska, rotterdam","url":"http:\/\/www.auto77.com","description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":1847,"created_at":"Fri May 25 06:55:54 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2960426591\/d45377ef1a7e1b5fdecf4dafecf8e92e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2960426591\/d45377ef1a7e1b5fdecf4dafecf8e92e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/589762826\/1355211394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0D8sPXkcBn","expanded_url":"http:\/\/fb.me\/PQ3R0aPC","display_url":"fb.me\/PQ3R0aPC","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670065164288,"id_str":"663727670065164288","text":"@NicoistheName di tanga isa lang subj ko hahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726543756091392,"in_reply_to_status_id_str":"663726543756091392","in_reply_to_user_id":2889263047,"in_reply_to_user_id_str":"2889263047","in_reply_to_screen_name":"NicoistheName","user":{"id":2328681440,"id_str":"2328681440","name":"Allyyy","screen_name":"alixxisthename","location":null,"url":null,"description":"In God we will be strong.- Psalm 60:12 \u2661\u2661\u2661\u2661 Scomiche's bby :D | too young for everything","protected":false,"verified":false,"followers_count":585,"friends_count":1105,"listed_count":0,"favourites_count":2066,"statuses_count":13273,"created_at":"Wed Feb 05 12:04:18 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663374947541082112\/4_P5xi68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663374947541082112\/4_P5xi68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328681440\/1446738095","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[14.6181742,121.1798044]},"coordinates":{"type":"Point","coordinates":[121.1798044,14.6181742]},"place":{"id":"00bcaba837867882","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00bcaba837867882.json","place_type":"city","name":"Antipolo City","full_name":"Antipolo City, Calabarzon","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[121.141302,14.562085],[121.141302,14.746208],[121.378430,14.746208],[121.378430,14.562085]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NicoistheName","name":"Nicolouaei","id":2889263047,"id_str":"2889263047","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079982664"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670060953600,"id_str":"663727670060953600","text":"RT @yu333soccer: \u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u306b\u7834\u58ca\u795e\u30d3\u30eb\u30b9\u3044\u305f https:\/\/t.co\/QW7yEsl7si","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3149510078,"id_str":"3149510078","name":"\u3055\u3063\u3074","screen_name":"5bZkig05Vz2vrZg","location":"\u4e8c\u6b21\u5143\u304c\u3044\u3044\u306a","url":null,"description":"\u5fa9\u6d3b\u3057\u307e\u3057\u305f\uff01 \u4e94\u4e2d\u751f\u3001\u5143\u5973\u30c6\u30cb\u3001 \u9280\u9b42\u3001\u6771\u4eac\u30b0\u30fc\u30eb\u3001\u3042\u306e\u82b1\u3001\u65e5\u5e38\u3001\u30b5\u30a4\u30b3\u30d1\u30b9\u304c\u597d\u304d\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":70,"friends_count":98,"listed_count":0,"favourites_count":998,"statuses_count":573,"created_at":"Sat Apr 11 09:04:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662989480614215684\/7p9_2Zyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662989480614215684\/7p9_2Zyv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3149510078\/1446903984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:16:21 +0000 2015","id":662559132176642048,"id_str":"662559132176642048","text":"\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u306b\u7834\u58ca\u795e\u30d3\u30eb\u30b9\u3044\u305f https:\/\/t.co\/QW7yEsl7si","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2193989208,"id_str":"2193989208","name":"\u305f\u306a\u304b\u3086\u3046","screen_name":"yu333soccer","location":null,"url":null,"description":"\u5143\u6c38\u9ad83-5 \u5143\u30b5\u30c3\u30ab\u30fc\u90e8 \u660e\u661f\u5927\u5b66 Acid Brack Cherry\/RADWIMPS\/ONE OK ROCK","protected":false,"verified":false,"followers_count":338,"friends_count":244,"listed_count":0,"favourites_count":3291,"statuses_count":1396,"created_at":"Thu Nov 14 11:13:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515699668752166912\/jUCYorsW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515699668752166912\/jUCYorsW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193989208\/1400930290","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7805,"favorite_count":7708,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662559103403687936,"id_str":"662559103403687936","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","url":"https:\/\/t.co\/QW7yEsl7si","display_url":"pic.twitter.com\/QW7yEsl7si","expanded_url":"http:\/\/twitter.com\/yu333soccer\/status\/662559132176642048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662559103403687936,"id_str":"662559103403687936","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","url":"https:\/\/t.co\/QW7yEsl7si","display_url":"pic.twitter.com\/QW7yEsl7si","expanded_url":"http:\/\/twitter.com\/yu333soccer\/status\/662559132176642048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yu333soccer","name":"\u305f\u306a\u304b\u3086\u3046","id":2193989208,"id_str":"2193989208","indices":[3,15]}],"symbols":[],"media":[{"id":662559103403687936,"id_str":"662559103403687936","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","url":"https:\/\/t.co\/QW7yEsl7si","display_url":"pic.twitter.com\/QW7yEsl7si","expanded_url":"http:\/\/twitter.com\/yu333soccer\/status\/662559132176642048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662559132176642048,"source_status_id_str":"662559132176642048","source_user_id":2193989208,"source_user_id_str":"2193989208"}]},"extended_entities":{"media":[{"id":662559103403687936,"id_str":"662559103403687936","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHh_oEUAAAQrKy.jpg","url":"https:\/\/t.co\/QW7yEsl7si","display_url":"pic.twitter.com\/QW7yEsl7si","expanded_url":"http:\/\/twitter.com\/yu333soccer\/status\/662559132176642048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662559132176642048,"source_status_id_str":"662559132176642048","source_user_id":2193989208,"source_user_id_str":"2193989208"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670065102848,"id_str":"663727670065102848","text":"School computers has personal info of the students accessible to everyone someone pls tell the IT staff wts","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258169137,"id_str":"258169137","name":"Billy","screen_name":"piikaachuuuuuuu","location":null,"url":null,"description":"why are you reading this o.o","protected":false,"verified":false,"followers_count":221,"friends_count":205,"listed_count":1,"favourites_count":5163,"statuses_count":15068,"created_at":"Sun Feb 27 03:24:37 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654723488926724096\/T6Xvtbr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654723488926724096\/T6Xvtbr__normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982664"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069301248,"id_str":"663727670069301248","text":"RT @xmm7i: \u3010\u7121\u511f\u63d0\u4f9b\u3011\u95a2\u897f\/\u30b8\u30e5\u30cb\u30a2\u3068\u30b8\u30e3\u30cb\u30fc\u30ba\/WEST\u306e\u5199\u771f\u3092\u7121\u511f\u63d0\u4f9b\u3057\u307e\u3059\u2669RT\u3068\u30d5\u30a9\u30ed\u30fc\u306e\u5f8c\u306bDM\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\uff01\u8a73\u3057\u304f\u306f\uff14\u679a\u76ee\u306e\u753b\u50cf\u3092\u307f\u3066\u304f\u3060\u3055\u3044(*\u2022\u0300\u1d17\u2022\u0301*)\u0648 \u0311\u0311\u2727 https:\/\/t.co\/GP5s4g0HCZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1130307524,"id_str":"1130307524","name":"\u3055\u3086\u3086\u3093","screen_name":"sayuuuuuu23","location":null,"url":null,"description":"\u304a\u76ee\u5f53\u3066\u306f\u95a2\u897fJr.J\u304f\u3093\u2661\n\u304e\u3083\u3093\u3059\u305f\u5354\u529b\u4e2d\uff5e\n\u95a2\u897f\u4ee5\u5916\u306e\u60c5\u5831\u306f\u3044\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":42,"friends_count":113,"listed_count":0,"favourites_count":22,"statuses_count":130,"created_at":"Tue Jan 29 07:12:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:01:25 +0000 2015","id":663672736724553728,"id_str":"663672736724553728","text":"\u3010\u7121\u511f\u63d0\u4f9b\u3011\u95a2\u897f\/\u30b8\u30e5\u30cb\u30a2\u3068\u30b8\u30e3\u30cb\u30fc\u30ba\/WEST\u306e\u5199\u771f\u3092\u7121\u511f\u63d0\u4f9b\u3057\u307e\u3059\u2669RT\u3068\u30d5\u30a9\u30ed\u30fc\u306e\u5f8c\u306bDM\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\uff01\u8a73\u3057\u304f\u306f\uff14\u679a\u76ee\u306e\u753b\u50cf\u3092\u307f\u3066\u304f\u3060\u3055\u3044(*\u2022\u0300\u1d17\u2022\u0301*)\u0648 \u0311\u0311\u2727 https:\/\/t.co\/GP5s4g0HCZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3835717098,"id_str":"3835717098","name":"\uff44\u2727","screen_name":"xmm7i","location":".+*\u2727 \u30ae\u30e3\u30f3.\u30b9\u30bf \/ \u307e\u3068.\u3058\u3087\u3046 \u2727*+.","url":null,"description":"\u30d7\u30e9\u753b\u52d5\u753b\u53ce\u96c6\u306e\u307f\u3002\u7e4b\u304c\u308a\u306f\u6c42\u3081\u3066\u307e\u305b\u3093\uff01","protected":false,"verified":false,"followers_count":141,"friends_count":10,"listed_count":1,"favourites_count":12,"statuses_count":15,"created_at":"Fri Oct 09 11:21:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656921993959178240\/C_MKpFjO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656921993959178240\/C_MKpFjO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3835717098\/1447053793","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663672711776878592,"id_str":"663672711776878592","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672711776878592,"id_str":"663672711776878592","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663672711785246720,"id_str":"663672711785246720","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KkUcAAxFAg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KkUcAAxFAg.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663672715945967617,"id_str":"663672715945967617","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0aEUAAEcM2u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0aEUAAEcM2u.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663672715946029056,"id_str":"663672715946029056","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0aEU8AA-LMS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0aEU8AA-LMS.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":638,"h":902,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xmm7i","name":"\uff44\u2727","id":3835717098,"id_str":"3835717098","indices":[3,9]}],"symbols":[],"media":[{"id":663672711776878592,"id_str":"663672711776878592","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663672736724553728,"source_status_id_str":"663672736724553728","source_user_id":3835717098,"source_user_id_str":"3835717098"}]},"extended_entities":{"media":[{"id":663672711776878592,"id_str":"663672711776878592","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KiUwAAezGk.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663672736724553728,"source_status_id_str":"663672736724553728","source_user_id":3835717098,"source_user_id_str":"3835717098"},{"id":663672711785246720,"id_str":"663672711785246720","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0KkUcAAxFAg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0KkUcAAxFAg.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663672736724553728,"source_status_id_str":"663672736724553728","source_user_id":3835717098,"source_user_id_str":"3835717098"},{"id":663672715945967617,"id_str":"663672715945967617","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0aEUAAEcM2u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0aEUAAEcM2u.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663672736724553728,"source_status_id_str":"663672736724553728","source_user_id":3835717098,"source_user_id_str":"3835717098"},{"id":663672715946029056,"id_str":"663672715946029056","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW0aEU8AA-LMS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW0aEU8AA-LMS.jpg","url":"https:\/\/t.co\/GP5s4g0HCZ","display_url":"pic.twitter.com\/GP5s4g0HCZ","expanded_url":"http:\/\/twitter.com\/xmm7i\/status\/663672736724553728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":638,"h":902,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":663672736724553728,"source_status_id_str":"663672736724553728","source_user_id":3835717098,"source_user_id_str":"3835717098"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069366789,"id_str":"663727670069366789","text":"RT @AbdullSattar: Mi hadhaan nahthaalan varah dhathi. https:\/\/t.co\/i0o3xHG0Dh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":516260366,"id_str":"516260366","name":"jambe","screen_name":"iamjambe","location":"brisbane..Australia.","url":null,"description":"ask","protected":false,"verified":false,"followers_count":455,"friends_count":1436,"listed_count":3,"favourites_count":1599,"statuses_count":6818,"created_at":"Tue Mar 06 06:33:24 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/835407996\/5a44c7ba5bbe4ec867233d67e4806848.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/835407996\/5a44c7ba5bbe4ec867233d67e4806848.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655815154249039872\/MXfdUovp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655815154249039872\/MXfdUovp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/516260366\/1444750984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:18 +0000 2015","id":663722285845450752,"id_str":"663722285845450752","text":"Mi hadhaan nahthaalan varah dhathi. https:\/\/t.co\/i0o3xHG0Dh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234773232,"id_str":"234773232","name":"Abdull Sattar","screen_name":"AbdullSattar","location":"Doors \/ Hithadhoo, Addu City","url":null,"description":null,"protected":false,"verified":false,"followers_count":3124,"friends_count":2191,"listed_count":11,"favourites_count":138,"statuses_count":27338,"created_at":"Thu Jan 06 14:48:02 +0000 2011","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503226200584515584\/uHAT5ekT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503226200584515584\/uHAT5ekT.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506674046256152576\/Sq4uNwO0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506674046256152576\/Sq4uNwO0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234773232\/1398100035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722263804383232,"id_str":"663722263804383232","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":656,"h":335,"resize":"fit"},"medium":{"w":600,"h":306,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663722263804383232,"id_str":"663722263804383232","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":656,"h":335,"resize":"fit"},"medium":{"w":600,"h":306,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663722265805099009,"id_str":"663722265805099009","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4lrUkAEaQav.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4lrUkAEaQav.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"large":{"w":498,"h":720,"resize":"fit"}}},{"id":663722280539701250,"id_str":"663722280539701250","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD5ckUwAI4ptE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD5ckUwAI4ptE.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":361,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663722283945492480,"id_str":"663722283945492480","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD5pQVAAAU_ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD5pQVAAAU_ds.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":563,"h":325,"resize":"fit"},"medium":{"w":563,"h":325,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AbdullSattar","name":"Abdull Sattar","id":234773232,"id_str":"234773232","indices":[3,16]}],"symbols":[],"media":[{"id":663722263804383232,"id_str":"663722263804383232","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":656,"h":335,"resize":"fit"},"medium":{"w":600,"h":306,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722285845450752,"source_status_id_str":"663722285845450752","source_user_id":234773232,"source_user_id_str":"234773232"}]},"extended_entities":{"media":[{"id":663722263804383232,"id_str":"663722263804383232","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4eOUEAAWQUf.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":656,"h":335,"resize":"fit"},"medium":{"w":600,"h":306,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722285845450752,"source_status_id_str":"663722285845450752","source_user_id":234773232,"source_user_id_str":"234773232"},{"id":663722265805099009,"id_str":"663722265805099009","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD4lrUkAEaQav.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD4lrUkAEaQav.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"large":{"w":498,"h":720,"resize":"fit"}},"source_status_id":663722285845450752,"source_status_id_str":"663722285845450752","source_user_id":234773232,"source_user_id_str":"234773232"},{"id":663722280539701250,"id_str":"663722280539701250","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD5ckUwAI4ptE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD5ckUwAI4ptE.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":361,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663722285845450752,"source_status_id_str":"663722285845450752","source_user_id":234773232,"source_user_id_str":"234773232"},{"id":663722283945492480,"id_str":"663722283945492480","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD5pQVAAAU_ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD5pQVAAAU_ds.jpg","url":"https:\/\/t.co\/i0o3xHG0Dh","display_url":"pic.twitter.com\/i0o3xHG0Dh","expanded_url":"http:\/\/twitter.com\/AbdullSattar\/status\/663722285845450752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":563,"h":325,"resize":"fit"},"medium":{"w":563,"h":325,"resize":"fit"}},"source_status_id":663722285845450752,"source_status_id_str":"663722285845450752","source_user_id":234773232,"source_user_id_str":"234773232"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670052548608,"id_str":"663727670052548608","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u516b\u5c90\u30ce\u68ee\u306e\u8d04\u6bd4\u5973\uff08\u8d85\u7d76\uff09\u300d\nhttps:\/\/t.co\/0Si6s6xOwf\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b\u3088\uff01\u3080","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3398804779,"id_str":"3398804779","name":"\u3042\u3044\u3046","screen_name":"masato0227nnn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":760,"created_at":"Mon Aug 31 01:54:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0Si6s6xOwf","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=NTQ5OTM1MDY1","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982661"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670035767297,"id_str":"663727670035767297","text":"RT @PoppyLTD: \u0e1e\u0e23\u0e38\u0e49\u0e07\u0e19\u0e35\u0e49\u0e40\u0e08\u0e2d\u0e01\u0e31\u0e19\u0e40\u0e19\u0e49\u0e2d \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\n\u0e1b\u0e25.\u0e04\u0e19\u0e21\u0e32\u0e23\u0e31\u0e1b\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35 \u0e2e\u0e49\u0e32\u0e46\u0e46 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e2a\u0e19\u0e43\u0e08\u0e04\u0e27\u0e22\u0e14\u0e38\u0e49\u0e19\u0e19\u0e35\u0e49\u0e40\u0e25\u0e22 #\u0e19\u0e32\u0e22\u0e1b\u0e4a\u0e2d\u0e1a https:\/\/t.co\/W9o1Yezvnf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3932017699,"id_str":"3932017699","name":"qwert qwert","screen_name":"peachies1123","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":118,"listed_count":0,"favourites_count":0,"statuses_count":113,"created_at":"Sun Oct 18 04:03:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:57:02 +0000 2015","id":663399843302277120,"id_str":"663399843302277120","text":"\u0e1e\u0e23\u0e38\u0e49\u0e07\u0e19\u0e35\u0e49\u0e40\u0e08\u0e2d\u0e01\u0e31\u0e19\u0e40\u0e19\u0e49\u0e2d \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\n\u0e1b\u0e25.\u0e04\u0e19\u0e21\u0e32\u0e23\u0e31\u0e1b\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35 \u0e2e\u0e49\u0e32\u0e46\u0e46 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e2a\u0e19\u0e43\u0e08\u0e04\u0e27\u0e22\u0e14\u0e38\u0e49\u0e19\u0e19\u0e35\u0e49\u0e40\u0e25\u0e22 #\u0e19\u0e32\u0e22\u0e1b\u0e4a\u0e2d\u0e1a https:\/\/t.co\/W9o1Yezvnf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3118039440,"id_str":"3118039440","name":"Ritthi_","screen_name":"PoppyLTD","location":"\u0e1e\u0e31\u0e17\u0e22\u0e32 \u0e19\u0e32\u0e40\u0e01\u0e25\u0e37\u0e2d","url":null,"description":"#\u0e19\u0e32\u0e22\u0e1b\u0e4a\u0e2d\u0e1a \u0e41\u0e1a\u0e1a\u0e23\u0e38\u0e01 23\/50\/168 \u0e16\u0e32\u0e21\u0e2d\u0e35\u0e01\u0e04\u0e37\u0e2d\u0e42\u0e07\u0e48\n\u0e23\u0e39\u0e1b\u0e02\u0e2d\u0e07\u0e1c\u0e21\u0e40\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e1a line id: vermisst69 \u0e44\u0e21\u0e48\u0e44\u0e2e \u0e44\u0e21\u0e48\u0e40\u0e1b\u0e34\u0e14\u0e01\u0e25\u0e49\u0e2d\u0e07\n\u0e1b\u0e25.\u0e43\u0e04\u0e23\u0e01\u0e4a\u0e2d\u0e1b\u0e23\u0e39\u0e1b\u0e1c\u0e21\u0e44\u0e1b\u0e0a\u0e31\u0e49\u0e22\u0e02\u0e2d\u0e2b\u0e31\u0e49\u0e22\u0e17\u0e31\u0e49\u0e07\u0e42\u0e04\u0e15\u0e23\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e32\u0e22\u0e14\u0e35 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e23\u0e31\u0e1a\u0e2f","protected":false,"verified":false,"followers_count":14964,"friends_count":300,"listed_count":11,"favourites_count":1277,"statuses_count":493,"created_at":"Mon Mar 30 16:48:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662844113562132480\/6S83dows_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662844113562132480\/6S83dows_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3118039440\/1444645811","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":80,"favorite_count":307,"entities":{"hashtags":[{"text":"\u0e19\u0e32\u0e22\u0e1b\u0e4a\u0e2d\u0e1a","indices":[78,86]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663399830476029952,"id_str":"663399830476029952","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","url":"https:\/\/t.co\/W9o1Yezvnf","display_url":"pic.twitter.com\/W9o1Yezvnf","expanded_url":"http:\/\/twitter.com\/PoppyLTD\/status\/663399843302277120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663399830476029952,"id_str":"663399830476029952","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","url":"https:\/\/t.co\/W9o1Yezvnf","display_url":"pic.twitter.com\/W9o1Yezvnf","expanded_url":"http:\/\/twitter.com\/PoppyLTD\/status\/663399843302277120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e19\u0e32\u0e22\u0e1b\u0e4a\u0e2d\u0e1a","indices":[92,100]}],"urls":[],"user_mentions":[{"screen_name":"PoppyLTD","name":"Ritthi_","id":3118039440,"id_str":"3118039440","indices":[3,12]}],"symbols":[],"media":[{"id":663399830476029952,"id_str":"663399830476029952","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","url":"https:\/\/t.co\/W9o1Yezvnf","display_url":"pic.twitter.com\/W9o1Yezvnf","expanded_url":"http:\/\/twitter.com\/PoppyLTD\/status\/663399843302277120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663399843302277120,"source_status_id_str":"663399843302277120","source_user_id":3118039440,"source_user_id_str":"3118039440"}]},"extended_entities":{"media":[{"id":663399830476029952,"id_str":"663399830476029952","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTeoYeUAAAJg1-.jpg","url":"https:\/\/t.co\/W9o1Yezvnf","display_url":"pic.twitter.com\/W9o1Yezvnf","expanded_url":"http:\/\/twitter.com\/PoppyLTD\/status\/663399843302277120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663399843302277120,"source_status_id_str":"663399843302277120","source_user_id":3118039440,"source_user_id_str":"3118039440"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079982657"} +{"delete":{"status":{"id":663370277590560768,"id_str":"663370277590560768","user_id":992232522,"user_id_str":"992232522"},"timestamp_ms":"1447079982807"}} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069366784,"id_str":"663727670069366784","text":"RT @Sara2you: \u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e04\u0e27\u0e23\u0e40\u0e2d\u0e32\u0e21\u0e32\u0e25\u0e49\u0e2d\u0e40\u0e25\u0e48\u0e19 : 1.\u0e04\u0e23\u0e2d\u0e1a\u0e04\u0e23\u0e31\u0e27 2.\u0e04\u0e27\u0e32\u0e21\u0e40\u0e0a\u0e37\u0e48\u0e2d 3.\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e19 4.\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e2a\u0e19\u0e34\u0e17 5.\u0e40\u0e07\u0e34\u0e19 6.\u0e41\u0e1f\u0e19 7.\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 8.\u0e42\u0e17\u0e2a\u0e31\u0e1a\u0e01\u0e39 #\u0e19\u0e30\u0e08\u0e48\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2681082703,"id_str":"2681082703","name":"\u2661","screen_name":"wawapraewa2","location":"Walking dead land","url":null,"description":"\u2022\u2022\u2022\u2022 TOYSTORY - PRINCESS - ALL DISNEY \u2022\u2022\u2022\u2022 \u2661\u2661 YING RHATHA ~ PLOY CHERMARN \u2661\u2661","protected":false,"verified":false,"followers_count":139,"friends_count":259,"listed_count":0,"favourites_count":4440,"statuses_count":14271,"created_at":"Sat Jul 26 02:21:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662297656098553856\/08ouDF7z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662297656098553856\/08ouDF7z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2681082703\/1446816041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Sep 11 10:11:37 +0000 2014","id":510007748658876416,"id_str":"510007748658876416","text":"\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e04\u0e27\u0e23\u0e40\u0e2d\u0e32\u0e21\u0e32\u0e25\u0e49\u0e2d\u0e40\u0e25\u0e48\u0e19 : 1.\u0e04\u0e23\u0e2d\u0e1a\u0e04\u0e23\u0e31\u0e27 2.\u0e04\u0e27\u0e32\u0e21\u0e40\u0e0a\u0e37\u0e48\u0e2d 3.\u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e19 4.\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e2a\u0e19\u0e34\u0e17 5.\u0e40\u0e07\u0e34\u0e19 6.\u0e41\u0e1f\u0e19 7.\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 8.\u0e42\u0e17\u0e2a\u0e31\u0e1a\u0e01\u0e39 #\u0e19\u0e30\u0e08\u0e48\u0e30","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2802291360,"id_str":"2802291360","name":"\u0e2a\u0e32\u0e23\u0e30\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13","screen_name":"Sara2you","location":"SantaFe","url":null,"description":"\u0e21\u0e2d\u0e07\u0e43\u0e2b\u0e49\u0e23\u0e2d\u0e1a\u0e14\u0e49\u0e32\u0e19 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e21\u0e35360 \u0e2d\u0e07\u0e28\u0e32","protected":false,"verified":false,"followers_count":7694,"friends_count":9,"listed_count":9,"favourites_count":36,"statuses_count":54,"created_at":"Wed Sep 10 19:30:46 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509787004242890752\/IVutf1p6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509787004242890752\/IVutf1p6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2802291360\/1418705502","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41448,"favorite_count":3954,"entities":{"hashtags":[{"text":"\u0e19\u0e30\u0e08\u0e48\u0e30","indices":[117,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e19\u0e30\u0e08\u0e48\u0e30","indices":[131,137]}],"urls":[],"user_mentions":[{"screen_name":"Sara2you","name":"\u0e2a\u0e32\u0e23\u0e30\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e38\u0e13","id":2802291360,"id_str":"2802291360","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670056763392,"id_str":"663727670056763392","text":"@13badapple \u305d\u3046\u8a00\u3046\u967d\u708e\u304c\u4e00\u756a\u602a\u3057\u304f\u3066\u6016\u3044\u3088!! ( @fatetyukoi \u30ad\u30e3\u30b9 https:\/\/t.co\/996hqQTChF )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2468515182,"in_reply_to_user_id_str":"2468515182","in_reply_to_screen_name":"13badApple","user":{"id":4110782712,"id_str":"4110782712","name":"\u681e\u9cf3.sion","screen_name":"sion_umi1230","location":null,"url":"http:\/\/honey.sytes.net\/tc\/","description":"\u681e\u9cf3\u3067\u3059\uff01\u30dd\u30b1\u30e2\u30f3\u57a2\u3067\u3059\uff01\u30dd\u30b1\u30e2\u30f3\u3084\u3063\u3066\u308b\u4eba\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3082\u3089\u3048\u308b\u3068\u5b09\u3057\u3044\u3067\u3059o(^\u25bd^)o \u5ac1\u30dd\u30b1\u306f\u30ea\u30fc\u30d5\u30a3\u30a2\u3067\u3046\u3061\u306e\u30a8\u30fc\u30b9\u306f\u30e1\u30ac\u30af\u30c1\u30fc\u30c8\u3067\u3059\uff01\u73fe\u5728\u306eTN\u306f\u30bb\u30ca\u3067\u3059\uff01\u307e\u3060\u307e\u3060\u521d\u5fc3\u8005\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u3067\u3059(\uff89\u00b4\u25bd\uff40)\uff89\u266a","protected":false,"verified":false,"followers_count":35,"friends_count":54,"listed_count":1,"favourites_count":46,"statuses_count":156,"created_at":"Tue Nov 03 08:15:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662837213672026112\/wpXaMsef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662837213672026112\/wpXaMsef_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4110782712\/1446538826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/996hqQTChF","expanded_url":"http:\/\/cas.st\/cd31e29","display_url":"cas.st\/cd31e29","indices":[49,72]}],"user_mentions":[{"screen_name":"13badApple","name":"\u967d\u708e \u7d05\u708e@\u30e9\u30c6\u30a3\u30a2\u30fc\u30af\u3068\u5171\u306b\u6b69\u3080","id":2468515182,"id_str":"2468515182","indices":[0,11]},{"screen_name":"FateTyukoi","name":"\u7425\u73c0\uff20\u30dd\u30b1\u30e2\u30f3\u57a2","id":3072216163,"id_str":"3072216163","indices":[33,44]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982662"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670056751104,"id_str":"663727670056751104","text":"@SARUKlCHl \u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059!!\u3081\u3063\u3061\u3083\u304f\u3061\u3083\u5b09\u3057\u3044\u3067\u3059\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":128715054,"in_reply_to_user_id_str":"128715054","in_reply_to_screen_name":"SARUKlCHl","user":{"id":910073611,"id_str":"910073611","name":"\u4ec1\u6b69","screen_name":"banana3960","location":null,"url":"http:\/\/twpf.jp\/banana3960","description":"\u306b\u307d\u3067\u3059\u3002\u65e5\u5e38\u3001\u30a4\u30e9\u30b9\u30c8\u57a2\u3002\u30b7\u30e3\u30fc\u30da\u30f3\u843d\u66f8\u304d\u591a\u3081\u3002\u96d1\u98df\u3002\u6620\u50cf\u3002\u3075\u3049\u308d\u3076\u308d\u81ea\u7531\u306b\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":202,"friends_count":162,"listed_count":8,"favourites_count":5119,"statuses_count":6181,"created_at":"Sun Oct 28 11:06:22 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598858499309731840\/HGPSaBxR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598858499309731840\/HGPSaBxR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910073611\/1427728358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SARUKlCHl","name":"\u733f\u5409","id":128715054,"id_str":"128715054","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982662"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069334016,"id_str":"663727670069334016","text":"mau join? https:\/\/t.co\/EfjqWDuhAr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3470864953,"id_str":"3470864953","name":"bobi","screen_name":"MrBobby95","location":"Pyrite\u265c","url":null,"description":"waiting #MMfams","protected":false,"verified":false,"followers_count":221,"friends_count":197,"listed_count":2,"favourites_count":29,"statuses_count":1523,"created_at":"Sun Sep 06 13:14:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650717915906359296\/H5ArgmVA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650717915906359296\/H5ArgmVA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3470864953\/1446638071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726206160760832,"quoted_status_id_str":"663726206160760832","quoted_status":{"created_at":"Mon Nov 09 14:33:53 +0000 2015","id":663726206160760832,"id_str":"663726206160760832","text":"Closed agency inter ada ga?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3367822272,"id_str":"3367822272","name":"prev yoona","screen_name":"luxnanaa91","location":null,"url":null,"description":"@luxcrp","protected":false,"verified":false,"followers_count":158,"friends_count":86,"listed_count":3,"favourites_count":95,"statuses_count":5766,"created_at":"Fri Aug 28 06:53:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663305580795183105\/TMTzFAYa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663305580795183105\/TMTzFAYa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3367822272\/1446979393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EfjqWDuhAr","expanded_url":"https:\/\/twitter.com\/luxnanaa91\/status\/663726206160760832","display_url":"twitter.com\/luxnanaa91\/sta\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670044327936,"id_str":"663727670044327936","text":"Ayeeii\ud83d\ude18\ud83d\ude18 https:\/\/t.co\/SCWxusGfOE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4005454692,"id_str":"4005454692","name":"Glendz","screen_name":"glendzgab","location":"Kuwait","url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":54,"listed_count":0,"favourites_count":220,"statuses_count":102,"created_at":"Sat Oct 24 19:41:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658006916740722688\/xulJ2Dcs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658006916740722688\/xulJ2Dcs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4005454692\/1446219186","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663704850471882753,"quoted_status_id_str":"663704850471882753","quoted_status":{"created_at":"Mon Nov 09 13:09:02 +0000 2015","id":663704850471882753,"id_str":"663704850471882753","text":"At the music museum :) \n\nChardTillas KiligMonday :) https:\/\/t.co\/wNhuoyx150","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1026148580,"id_str":"1026148580","name":"Richard Parojinog","screen_name":"mrparojinog","location":"Ozamiz Ph\u2716\ufe0fCebu Ph","url":"https:\/\/www.facebook.com\/DongDaiOfficial","description":"MR. PASTILLAS | @angelicaj__'s DODONG INSTAGRAM:@chardparojinog SNAPCHAT:richardparojinog FACEBOOK:Richardparojinog@yahoo.com SOLID*CHARDTILLAS*RICHTILLAS*","protected":false,"verified":false,"followers_count":101882,"friends_count":576,"listed_count":27,"favourites_count":107,"statuses_count":2445,"created_at":"Fri Dec 21 10:52:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657205967898046465\/40PxuFOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657205967898046465\/40PxuFOM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1026148580\/1445525087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663704830234398720,"id_str":"663704830234398720","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0BtHVEAAlODv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0BtHVEAAlODv.jpg","url":"https:\/\/t.co\/wNhuoyx150","display_url":"pic.twitter.com\/wNhuoyx150","expanded_url":"http:\/\/twitter.com\/mrparojinog\/status\/663704850471882753\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663704830234398720,"id_str":"663704830234398720","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0BtHVEAAlODv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0BtHVEAAlODv.jpg","url":"https:\/\/t.co\/wNhuoyx150","display_url":"pic.twitter.com\/wNhuoyx150","expanded_url":"http:\/\/twitter.com\/mrparojinog\/status\/663704850471882753\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SCWxusGfOE","expanded_url":"https:\/\/twitter.com\/mrparojinog\/status\/663704850471882753","display_url":"twitter.com\/mrparojinog\/st\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079982659"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073556992,"id_str":"663727670073556992","text":"RT @kamalmeet7: @Gurmeetramrahim #MSG2onTheTopInRajasthan \nMSG2 Rocks everywhere...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2916537524,"id_str":"2916537524","name":"Mona insan","screen_name":"monainsan05","location":"Moga, Punjab","url":null,"description":null,"protected":false,"verified":false,"followers_count":112,"friends_count":421,"listed_count":2,"favourites_count":509,"statuses_count":12905,"created_at":"Tue Dec 02 11:40:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630362724623450112\/RmEGY7Eo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630362724623450112\/RmEGY7Eo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:55 +0000 2015","id":663721934731907074,"id_str":"663721934731907074","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan \nMSG2 Rocks everywhere...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":276917857,"id_str":"276917857","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","screen_name":"kamalmeet7","location":"BaThiNdA\u20a6 Boy'Z, PuNjaB","url":null,"description":"~i\u03c4 \u03c9i\u0438\u0262 \u043c\u0454\u043c\u0432\u0454\u044f $ s\u043d\u03b1\u043d s\u03b1\u03c4\u0438\u03b1\u043c ji \u0262\u044f\u0454\u0454\u0438 s \u03c9\u0454\u2113f\u03b1\u044f\u0454 f\u03c3\u044fc\u0454 \u03c9i\u0438\u0262~ \u092e\u0948 \u0936\u093e\u092f\u0930 \u0924\u094b \u0928\u0939\u0940\u0902 \u090f \u0939\u0938\u0940\u0902,\n\u092a\u0930 \u091c\u092c\u0938\u0947 \u0926\u0947\u0916\u093e \u0924\u0941\u092e\u0915\u094b, \u092e\u0941\u091d\u0915\u094b \u0936\u093e\u092f\u0930\u0940 \u0906 \u0917\u092f\u0940\u2026","protected":false,"verified":false,"followers_count":6079,"friends_count":206,"listed_count":12,"favourites_count":9235,"statuses_count":26153,"created_at":"Mon Apr 04 10:33:05 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276917857\/1443257553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":13,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[33,57]}],"urls":[],"user_mentions":[{"screen_name":"kamalmeet7","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","id":276917857,"id_str":"276917857","indices":[3,14]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670039965696,"id_str":"663727670039965696","text":"\"\u0660\n\n\u0627\u0644\u0648\u0631\u062f \u064a\u0627\u062e\u0630 \u0645\u0646 \u0627\u0648\u0635\u0627\u0641\u06af \u062c\u0645\u0627\u0644 \u060c \n\u0648\u0644\u0627 \u0627\u0644\u0648\u0631\u062f \u060c \u0644\u0627 \u0644\u0645\u062d \u062c\u0645\u0651\u0627\u0644\u06af \u0630\u0628\u0644 \ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3362127138,"id_str":"3362127138","name":"..","screen_name":"binzayed_0","location":"United Arab Emirates","url":"http:\/\/tvquran.com","description":"\u0627\u0644\u0644\u0647\u0651\u0645\u064e \u062b\u064e\u0628\u064e\u062a\u0646\u0650\u064a \u0641\u0650\u064a \u062f\u064a\u0646\u064e\u0643\u0652 \u0648\u0644\u0627\u0651 \u062a\u064e\u062c\u0652\u0639\u0644\u0651\u0646\u0650\u064a \u0645\u0650\u0646\u0652 \u0627\u0644\u0638\u0651\u0627\u0644\u0652\u0645\u0650\u064a\u0646\u0652","protected":false,"verified":false,"followers_count":21,"friends_count":43,"listed_count":0,"favourites_count":1,"statuses_count":407,"created_at":"Thu Aug 27 18:31:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655505292541743104\/Dm5rL7dk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655505292541743104\/Dm5rL7dk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3362127138\/1443886486","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670060933120,"id_str":"663727670060933120","text":"RT @PINOY_QUOTES: But I only pretend to be strong.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2729308585,"id_str":"2729308585","name":"Angelica Palacay","screen_name":"lyka21p","location":null,"url":null,"description":"What's meant to be will always find a way. - - - I hate goodbyes","protected":false,"verified":false,"followers_count":134,"friends_count":170,"listed_count":0,"favourites_count":2027,"statuses_count":2403,"created_at":"Wed Aug 13 12:02:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556302463775420417\/6PkPkD6u_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556302463775420417\/6PkPkD6u_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2729308585\/1421467740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:50:01 +0000 2015","id":663684967348604928,"id_str":"663684967348604928","text":"But I only pretend to be strong.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279967425,"id_str":"279967425","name":"PINOY QUOTES","screen_name":"PINOY_QUOTES","location":"pinoyquotesofficial@gmail.com","url":null,"description":"I tweet things about life, love, relationships and more in 140 characters or less.","protected":false,"verified":false,"followers_count":2878721,"friends_count":615,"listed_count":2891,"favourites_count":845,"statuses_count":85697,"created_at":"Sun Apr 10 11:02:55 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568039909827440640\/des-9b49_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568039909827440640\/des-9b49_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279967425\/1401454573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":239,"favorite_count":247,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PINOY_QUOTES","name":"PINOY QUOTES","id":279967425,"id_str":"279967425","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982663"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670073540608,"id_str":"663727670073540608","text":"@1030Ryoooga \n\u307f\u3093\u306a\u666e\u901a\u3063\u3066\u8a00\u3046\u3082\u3093\uff01(\u6012)\n\u30ea\u30c8\u2640\u3068\u5b9f\u3063\u3066\u6b32\u3057\u3044\u7b11\n\u30e2\u30e2\uff06\u30e4\u30df\u63a8\u3057\u306f\u7d14\u7c8b\u306a\u5909\u614b\u306a\u3002\n\u30cd\u30e1\u30b7\u30b9\u63a8\u3057\u306f\u30ad\u30c1\u30ac\u30a4\u3067\u3059\u306d\u2190\u50d5\u3082\u30cd\u30e1\u30b7\u30b9\u3059\u304d\u5bb6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725763342893056,"in_reply_to_status_id_str":"663725763342893056","in_reply_to_user_id":2390554052,"in_reply_to_user_id_str":"2390554052","in_reply_to_screen_name":"1030Ryoooga","user":{"id":3255605005,"id_str":"3255605005","name":"\u2606\u3075\u301c\u304f\u3093\u266a","screen_name":"0725_1998f","location":"\u30d0\u30c7\u30a3\u30d5\u30a1\u30a4\u30c8\u540d\u53e4\u5c4b\u756a\u9577","url":null,"description":"\u9cf4\u5b50\u53f0\u2192\u540d\u5357\u5de52-5\/\u5ca9\u672c\u98a8\u96c5\/\u5353\u7403\u90e8\/ \u6c17\u8efd\u306b\u3069\u3046\u305e\uff61\u8d64\u8272\/\u307e\u306a\u3053\/\u306a\u3086\u307a\u305f\/\u30ed\u30fc\u30c9\u30ec\u30fc\u30b5\u30fc\/\u30ab\u30e1\u30e9\/Diggy-MO'\/\u30d0\u30c7\u30a3\u30d5\u30a1\u30a4\u30c8\u540d\u53e4\u5c4b\u512a\u52dd","protected":false,"verified":false,"followers_count":151,"friends_count":142,"listed_count":2,"favourites_count":2714,"statuses_count":1963,"created_at":"Thu Jun 25 11:54:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660385550742884353\/z9WOGjSf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660385550742884353\/z9WOGjSf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3255605005\/1446283107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1030Ryoooga","name":"\u3076\u3061 \u308a\u3087\u30fc\u304c","id":2390554052,"id_str":"2390554052","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079982666"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670039973892,"id_str":"663727670039973892","text":"\u201cDo nothing out of selfish ambition or vain conceit. Rather, in humility value others above yourselves, not looking https:\/\/t.co\/nG64frYgK4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2392702910,"id_str":"2392702910","name":"Bobby Billings","screen_name":"BobbyBillings7","location":"Franklin, Tennessee","url":null,"description":"Proud Husband and Father of Four Wonderful Boys and One Beautiful Daughter.... Plus Willy","protected":false,"verified":false,"followers_count":21,"friends_count":209,"listed_count":0,"favourites_count":49,"statuses_count":104,"created_at":"Sun Mar 16 13:16:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626599376710864896\/Ut2yTJD5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626599376710864896\/Ut2yTJD5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01d9a97f40707982","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01d9a97f40707982.json","place_type":"city","name":"Lakeland","full_name":"Lakeland, TN","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-89.771445,35.204409],[-89.771445,35.277989],[-89.704680,35.277989],[-89.704680,35.204409]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nG64frYgK4","expanded_url":"http:\/\/bible.com\/111\/php.2.3-4.niv","display_url":"bible.com\/111\/php.2.3-4.\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982658"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670069346304,"id_str":"663727670069346304","text":"I know, that means all Taiwanese are visuals \ud83d\ude0c\ud83d\ude0c https:\/\/t.co\/Ba4yGxry4u","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3803589313,"id_str":"3803589313","name":"joy's on hiatus","screen_name":"6SJBMO","location":"beemopng","url":null,"description":"\uc218\uc601\uc03c's :: jinitals, jhopenis, vajaena, minanal, jungcock, yetus, tzumbryo, saeperm :: wifey jiwon","protected":false,"verified":false,"followers_count":44,"friends_count":39,"listed_count":0,"favourites_count":457,"statuses_count":994,"created_at":"Tue Oct 06 13:21:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661165538723282944\/MU-8Qd2y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661165538723282944\/MU-8Qd2y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3803589313\/1446430471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726706000179200,"quoted_status_id_str":"663726706000179200","quoted_status":{"created_at":"Mon Nov 09 14:35:52 +0000 2015","id":663726706000179200,"id_str":"663726706000179200","text":"Tzuyu is taiwanese ... https:\/\/t.co\/cIeuwP97cX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237117156,"id_str":"3237117156","name":"mean.","screen_name":"yerimbmo","location":"beemopng; meangyu is mine ","url":null,"description":"Jinitals,Vajaena,Hopenis,Jungcock,Minanal,Tzumbryo kya","protected":false,"verified":false,"followers_count":68,"friends_count":44,"listed_count":0,"favourites_count":83,"statuses_count":5896,"created_at":"Fri Jun 05 17:39:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663305991581102081\/qLaVJrx2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663305991581102081\/qLaVJrx2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237117156\/1446803254","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726528023293952,"quoted_status_id_str":"663726528023293952","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cIeuwP97cX","expanded_url":"https:\/\/twitter.com\/6SJBMO\/status\/663726528023293952","display_url":"twitter.com\/6SJBMO\/status\/\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ba4yGxry4u","expanded_url":"https:\/\/twitter.com\/yerimbmo\/status\/663726706000179200","display_url":"twitter.com\/yerimbmo\/statu\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982665"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670035931136,"id_str":"663727670035931136","text":"RT @zloy_h_o_r_e_k: \u041a\u041e\u0413\u0414\u0410 \u041d\u0418\u0411\u0423\u0414\u042c \u0422\u042b \u0421\u041f\u0420\u041e\u0421\u0418\u0428\u042c \" \u041b\u0415\u041d\u0422\u0410 ,\u0427\u0422\u041e \u0422\u042b \u041b\u042e\u0411\u0418\u0428\u042c \u0411\u041e\u041b\u042c\u0428\u0415 \u0412\u0421\u0415\u0413\u041e? \" . \u0410 \u0422\u0415\u0411\u0415 \u041d\u0418\u041a\u0422\u041e \u041d\u0415 \u041e\u0422\u0412\u0415\u0422\u0418\u0422 ,\u041f\u041e\u0422\u041e\u041c\u0423 \u0427\u0422\u041e \u0411\u041e\u041b\u042c\u0428\u0415 \u0412\u0421\u0415\u0413\u041e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1415899376,"id_str":"1415899376","name":"\u041f\u0451\u0441 \u041c\u0430\u043d\u044e\u043d\u044c","screen_name":"MAKI_DAT_MAAKII","location":"St. Petersburg","url":null,"description":"#TheHost #ImagineDragons #\u0430\u043d\u0438\u043c\u0435 \u041f\u0451\u0441 \u041a\u043e\u0440\u043e\u043b\u044f @Ricky_Idiot_Bin \u0421\u0435\u043c\u044c\u044f @iMauMura5 @rintaru_tori @i_potolok69 @ComRinRu @pencil_blo @cApple_Ann_2","protected":false,"verified":false,"followers_count":586,"friends_count":457,"listed_count":6,"favourites_count":449,"statuses_count":21461,"created_at":"Thu May 09 16:21:55 +0000 2013","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640165398797664256\/Yqaap1bl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640165398797664256\/Yqaap1bl.jpg","profile_background_tile":true,"profile_link_color":"34C924","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640160497317359616\/0txY4MEc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640160497317359616\/0txY4MEc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1415899376\/1441461162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Aug 15 23:12:00 +0000 2015","id":632691236353241088,"id_str":"632691236353241088","text":"\u041a\u041e\u0413\u0414\u0410 \u041d\u0418\u0411\u0423\u0414\u042c \u0422\u042b \u0421\u041f\u0420\u041e\u0421\u0418\u0428\u042c \" \u041b\u0415\u041d\u0422\u0410 ,\u0427\u0422\u041e \u0422\u042b \u041b\u042e\u0411\u0418\u0428\u042c \u0411\u041e\u041b\u042c\u0428\u0415 \u0412\u0421\u0415\u0413\u041e? \" . \u0410 \u0422\u0415\u0411\u0415 \u041d\u0418\u041a\u0422\u041e \u041d\u0415 \u041e\u0422\u0412\u0415\u0422\u0418\u0422 ,\u041f\u041e\u0422\u041e\u041c\u0423 \u0427\u0422\u041e \u0411\u041e\u041b\u042c\u0428\u0415 \u0412\u0421\u0415\u0413\u041e \u041b\u0415\u041d\u0422\u0410 \u041b\u042e\u0411\u0418\u0422 \u0418\u0413\u041d\u041e\u0420\u0418\u0422\u042c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1516715306,"id_str":"1516715306","name":"\u0425\u043e\u0440\u0435\u043a \u041d\u0430\u0439\u043b\u0430","screen_name":"zloy_h_o_r_e_k","location":null,"url":null,"description":"#AdamLambert #Glambert #Queen #1D #Larry #\u0441\u0435\u0440\u0438\u0430\u043b\u043e\u043c\u0430\u043d #TheMazeRunner #newmas #dylmas \n#TeenWolf #Sterek #shameless #\u0413\u0430\u043b\u043b\u043e\u0432\u0438\u0447 #Supernatural #Flash #Arrow #TBBT","protected":false,"verified":false,"followers_count":2770,"friends_count":2464,"listed_count":3,"favourites_count":796,"statuses_count":1120,"created_at":"Fri Jun 14 15:10:37 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656603747796328449\/wIYkqwT0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656603747796328449\/wIYkqwT0.jpg","profile_background_tile":true,"profile_link_color":"24526A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656603603029925889\/tYbdKlj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656603603029925889\/tYbdKlj__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1516715306\/1445381459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":400,"favorite_count":218,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zloy_h_o_r_e_k","name":"\u0425\u043e\u0440\u0435\u043a \u041d\u0430\u0439\u043b\u0430","id":1516715306,"id_str":"1516715306","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079982657"} +{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727670040006656,"id_str":"663727670040006656","text":"RT @NUTRiBULLETFans: Avocado & egg on toast with rocket pesto and home grown tomatoes \ud83d\udc9a #avocado #lunchenvy #lunch #eggs #tomatoes #rock\u2026 h\u2026","source":"\u003ca href=\"http:\/\/backtoblaq.com\" rel=\"nofollow\"\u003eBlaq for BlackBerry\u00ae 10\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398885456,"id_str":"398885456","name":"MrHealthyLifestyles","screen_name":"HTLifeHank","location":"Texas, USA","url":"http:\/\/www.facebook.com\/heatlhylifestyleswithhank","description":"Live life like its meant to be lived. Healthy, Happy and Drama free. Join me as we take that journey to ensure we are successful in our everyday lives.","protected":false,"verified":false,"followers_count":75,"friends_count":75,"listed_count":8,"favourites_count":54,"statuses_count":243,"created_at":"Wed Oct 26 17:48:20 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663429837617434624\/x6NdjTeD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663429837617434624\/x6NdjTeD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398885456\/1445933442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:20 +0000 2015","id":663719270925381632,"id_str":"663719270925381632","text":"Avocado & egg on toast with rocket pesto and home grown tomatoes \ud83d\udc9a #avocado #lunchenvy #lunch #eggs #tomatoes #rock\u2026 https:\/\/t.co\/WBI6vkly92","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2991965206,"id_str":"2991965206","name":"NutriBullet Fans","screen_name":"NUTRiBULLETFans","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1200,"friends_count":9,"listed_count":431,"favourites_count":2,"statuses_count":58687,"created_at":"Thu Jan 22 12:41:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558243253598711809\/v8uXRrgY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558243253598711809\/v8uXRrgY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991965206\/1421931064","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"avocado","indices":[71,79]},{"text":"lunchenvy","indices":[80,90]},{"text":"lunch","indices":[91,97]},{"text":"eggs","indices":[98,103]},{"text":"tomatoes","indices":[104,113]},{"text":"rock","indices":[114,119]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719270744985600,"id_str":"663719270744985600","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","url":"https:\/\/t.co\/WBI6vkly92","display_url":"pic.twitter.com\/WBI6vkly92","expanded_url":"http:\/\/twitter.com\/NUTRiBULLETFans\/status\/663719270925381632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719270744985600,"id_str":"663719270744985600","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","url":"https:\/\/t.co\/WBI6vkly92","display_url":"pic.twitter.com\/WBI6vkly92","expanded_url":"http:\/\/twitter.com\/NUTRiBULLETFans\/status\/663719270925381632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"avocado","indices":[92,100]},{"text":"lunchenvy","indices":[101,111]},{"text":"lunch","indices":[112,118]},{"text":"eggs","indices":[119,124]},{"text":"tomatoes","indices":[125,134]},{"text":"rock","indices":[135,140]}],"urls":[],"user_mentions":[{"screen_name":"NUTRiBULLETFans","name":"NutriBullet Fans","id":2991965206,"id_str":"2991965206","indices":[3,19]}],"symbols":[],"media":[{"id":663719270744985600,"id_str":"663719270744985600","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","url":"https:\/\/t.co\/WBI6vkly92","display_url":"pic.twitter.com\/WBI6vkly92","expanded_url":"http:\/\/twitter.com\/NUTRiBULLETFans\/status\/663719270925381632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663719270925381632,"source_status_id_str":"663719270925381632","source_user_id":2991965206,"source_user_id_str":"2991965206"}]},"extended_entities":{"media":[{"id":663719270744985600,"id_str":"663719270744985600","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBKQNWEAAjxMA.jpg","url":"https:\/\/t.co\/WBI6vkly92","display_url":"pic.twitter.com\/WBI6vkly92","expanded_url":"http:\/\/twitter.com\/NUTRiBULLETFans\/status\/663719270925381632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663719270925381632,"source_status_id_str":"663719270925381632","source_user_id":2991965206,"source_user_id_str":"2991965206"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079982658"} +{"delete":{"status":{"id":530464171360796672,"id_str":"530464171360796672","user_id":299441952,"user_id_str":"299441952"},"timestamp_ms":"1447079983169"}} +{"delete":{"status":{"id":663319325210710017,"id_str":"663319325210710017","user_id":3888129432,"user_id_str":"3888129432"},"timestamp_ms":"1447079983185"}} +{"delete":{"status":{"id":530465723253284866,"id_str":"530465723253284866","user_id":1948358738,"user_id_str":"1948358738"},"timestamp_ms":"1447079983187"}} +{"delete":{"status":{"id":660777996417150976,"id_str":"660777996417150976","user_id":3310346455,"user_id_str":"3310346455"},"timestamp_ms":"1447079983230"}} +{"delete":{"status":{"id":661353652062453760,"id_str":"661353652062453760","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079983334"}} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674230218752,"id_str":"663727674230218752","text":"\u0415\u0431\u0430\u043d\u0430\u044f \u043a\u0438\u043b\u044c\u043a\u0430 \u043d\u0435 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0441\u0443\u043a\u0430 \u0440\u0443\u043a\u0430 \u0431\u043e\u043b\u0438\u0442 \u0443\u0436\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043d\u0435 \u043c\u043e\u0433\u0443 \u0431\u043b\u044f\u0442\u044c \u0434\u0435\u0440\u044c\u043c\u043e \u0443\u043c\u0440\u0438","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2732481311,"id_str":"2732481311","name":"\u0411z\u042e \u0441\u0443\u043f\u0435\u0440 \u044d\u043c\u043e\u0447\u043a\u0430\u2020 65","screen_name":"EmO_Of_2o07","location":"\u0434\u043d\u043e \u0435\u0431\u0430\u0431\u0435\u043b\u044c\u043d\u043e\u0435","url":null,"description":"\u2764\ufe0f\u044d\u043d\u0438\u043a\u2764\ufe0f\u0442\u0440\u0443\u043f\u0435\u0446\u043a\u0438\u0439\u2764\ufe0f\u0447\u0430\u043d\u043a\u2764\ufe0f\u0434\u0436\u0435\u0440\u0430\u0440\u0434\u043e\u0432\u04384\u2764\ufe0f\u0444\u0440\u043e\u0434\u0436\u0438\u2764\ufe0f\u0435\u0441\u043b\u0438 \u0432\u044b \u043c\u0435\u043d\u044f \u0444\u043e\u043b\u043b\u043e\u0432\u0438\u0442\u0435 \u043d\u043e \u043d\u0435 \u043b\u044e\u0431\u0438\u0442\u0435 \u043d\u044b\u0442\u044c\u0451 \u0442\u043e \u0443 \u043c\u0435\u043d\u044f \u0434\u043b\u044f \u0432\u0430\u0441 \u043f\u043b\u043e\u0445\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438\\\u043d\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0441\u044c \u0432 \u0443\u0432\u0435\u0434\u0430\u0445 \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043c\u043e\u0433\u0443","protected":false,"verified":false,"followers_count":1996,"friends_count":927,"listed_count":11,"favourites_count":25881,"statuses_count":76210,"created_at":"Sun Aug 03 14:51:35 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660235356688748544\/ecjE8Zhc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660235356688748544\/ecjE8Zhc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2732481311\/1446675464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079983657"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263777280,"id_str":"663727674263777280","text":"RT @7ll_Follow_Back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189347750,"id_str":"2189347750","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"M_A_Alzahrani","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0639\u0627\u0634\u0642 \u0648\u0645\u062d\u0628 \u0644\u0646\u0627\u062f\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0644\u0645\u0644\u0643\u064a \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631\u060c \u0625\u0633\u0623\u0644\u0646\u064a \u0639\u0646 \u0627\u0644\u0639\u0634\u0642 \u0623\u062d\u062f\u062b\u0643 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644.\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u0637\u0631\u062d \u0648\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647","protected":false,"verified":false,"followers_count":3821,"friends_count":1084,"listed_count":4,"favourites_count":1190,"statuses_count":69367,"created_at":"Wed Nov 20 20:15:11 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189347750\/1444106923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:00:29 +0000 2015","id":663310112719806466,"id_str":"663310112719806466","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 0200","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549145898,"id_str":"549145898","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","screen_name":"7ll_Follow_Back","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":513876,"friends_count":272527,"listed_count":976,"favourites_count":7,"statuses_count":162789,"created_at":"Mon Apr 09 11:19:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7ll_Follow_Back","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","id":549145898,"id_str":"549145898","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259582976,"id_str":"663727674259582976","text":"My peep game on \ud83d\udcaf but ima act like I didn't see shit \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451957210,"id_str":"451957210","name":"PrettyT\u2728","screen_name":"a1prettyton","location":"Chicago, IL","url":"https:\/\/Instagram.com\/almightypretty_ton\/","description":"ig:almightypretty_ton | 17","protected":false,"verified":false,"followers_count":5774,"friends_count":3365,"listed_count":1,"favourites_count":3341,"statuses_count":39882,"created_at":"Sun Jan 01 07:16:18 +0000 2012","utc_offset":-18000,"time_zone":"Indiana (East)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614192623\/avnvmhby89tzzlrslynr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614192623\/avnvmhby89tzzlrslynr.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663135093578403840\/KzF5-xDL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663135093578403840\/KzF5-xDL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451957210\/1441469746","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.940033,42.023067],[-87.523993,42.023067],[-87.523993,41.644102]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674255364096,"id_str":"663727674255364096","text":"RT @IUmushimushi: She is very touched and grateful that she is so loved by everyone. T-T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":308705381,"id_str":"308705381","name":"Drew","screen_name":"Starshapedgummy","location":"New York, New York","url":null,"description":"Currently Reading: The Devil in the White City","protected":false,"verified":false,"followers_count":62,"friends_count":83,"listed_count":3,"favourites_count":1621,"statuses_count":5086,"created_at":"Tue May 31 21:21:58 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662508267399192576\/wkRRoZ_-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662508267399192576\/wkRRoZ_-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308705381\/1446695912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:17 +0000 2015","id":663725298639175683,"id_str":"663725298639175683","text":"She is very touched and grateful that she is so loved by everyone. T-T","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630043581,"id_str":"630043581","name":"JusticeForIU","screen_name":"IUmushimushi","location":"Singapore","url":"https:\/\/www.facebook.com\/sgheartiu","description":"Uaena, K-Drama addict, Movie Buff! http:\/\/iumushimushi.tumblr.com","protected":false,"verified":false,"followers_count":9132,"friends_count":332,"listed_count":122,"favourites_count":37296,"statuses_count":116804,"created_at":"Sun Jul 08 06:28:34 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0D8DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807780546\/785c11b4ccb7f0e98971c10b67780aff.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807780546\/785c11b4ccb7f0e98971c10b67780aff.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693766134403072\/QOhKwSKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693766134403072\/QOhKwSKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630043581\/1361650121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IUmushimushi","name":"JusticeForIU","id":630043581,"id_str":"630043581","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983663"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674267975680,"id_str":"663727674267975680","text":"RT @CrazyAnimals_: Can't stop laughing at this \ud83d\ude02 https:\/\/t.co\/af8EYcZffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258550285,"id_str":"258550285","name":"Brady Wehmiller","screen_name":"13radyBunch","location":"\u03a6\u039a\u03a4-\u0394","url":null,"description":"You a player, but I'm Naismith #Centre17 #\u03a6\u039a\u03a4antfw","protected":false,"verified":false,"followers_count":808,"friends_count":129,"listed_count":0,"favourites_count":6301,"statuses_count":26580,"created_at":"Sun Feb 27 23:59:08 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"B3AA00","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660208807470067712\/gMAGuLos_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660208807470067712\/gMAGuLos_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258550285\/1445990398","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:42:37 +0000 2015","id":663713303298969601,"id_str":"663713303298969601","text":"Can't stop laughing at this \ud83d\ude02 https:\/\/t.co\/af8EYcZffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2388013107,"id_str":"2388013107","name":"CRAZY ANIMALS","screen_name":"CrazyAnimals_","location":null,"url":null,"description":"Bringing you the craziest and funniest Animals on the planet! (WE DO NOT OWN ANY OF THE CONTENT SHOWN) Promo\/Business contact KIK - Handley4 or dm me.","protected":false,"verified":false,"followers_count":125212,"friends_count":187,"listed_count":113,"favourites_count":3,"statuses_count":565,"created_at":"Thu Mar 06 10:13:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546656576627814400\/O7sNRlkj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546656576627814400\/O7sNRlkj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2388013107\/1417510523","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":279,"favorite_count":291,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/af8EYcZffd","expanded_url":"https:\/\/vine.co\/v\/eiTFKeL7aMz","display_url":"vine.co\/v\/eiTFKeL7aMz","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/af8EYcZffd","expanded_url":"https:\/\/vine.co\/v\/eiTFKeL7aMz","display_url":"vine.co\/v\/eiTFKeL7aMz","indices":[49,72]}],"user_mentions":[{"screen_name":"CrazyAnimals_","name":"CRAZY ANIMALS","id":2388013107,"id_str":"2388013107","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983666"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242789376,"id_str":"663727674242789376","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/JQzb4OXO9b","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4079189892,"id_str":"4079189892","name":"Neck Nock","screen_name":"neck_nock","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":28,"listed_count":1,"favourites_count":6,"statuses_count":22781,"created_at":"Sat Oct 31 11:42:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660868382309220352\/DAzL8gZ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660868382309220352\/DAzL8gZ9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727297774620672,"quoted_status_id_str":"663727297774620672","quoted_status":{"created_at":"Mon Nov 09 14:38:13 +0000 2015","id":663727297774620672,"id_str":"663727297774620672","text":"LizaEnriqueGil #PushAwardsLizQuens https:\/\/t.co\/QPlwq81EIp","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370550053,"id_str":"3370550053","name":"Mary Apple Pe\u00f1as","screen_name":"appleheartme22","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":26,"listed_count":1,"favourites_count":7,"statuses_count":29458,"created_at":"Fri Aug 28 12:35:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656733145094492160\/Fi-2Go5F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725750906970112,"quoted_status_id_str":"663725750906970112","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/QPlwq81EIp","expanded_url":"http:\/\/twitter.com\/LizaEnriqueGil\/status\/663725750906970112","display_url":"twitter.com\/LizaEnriqueGil\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/JQzb4OXO9b","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727297774620672","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674230206464,"id_str":"663727674230206464","text":"RT @nogueirabi15: t\u00e1 dif\u00edcil ficar sem voc\u00ea, saudade n\u00e3o \u00e9 solid\u00e3o...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2843874483,"id_str":"2843874483","name":"Gabriela","screen_name":"_gabi_manhaes","location":"Rio de Janeiro","url":null,"description":"Mabi \u2764 \/ snap: gaby_manhaes","protected":false,"verified":false,"followers_count":526,"friends_count":597,"listed_count":0,"favourites_count":2154,"statuses_count":13321,"created_at":"Sat Oct 25 16:43:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663421860474970112\/QAZEZBn3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663421860474970112\/QAZEZBn3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843874483\/1445730966","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:09 +0000 2015","id":663727280317988864,"id_str":"663727280317988864","text":"t\u00e1 dif\u00edcil ficar sem voc\u00ea, saudade n\u00e3o \u00e9 solid\u00e3o...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2427716322,"id_str":"2427716322","name":"gabrielle nogueira","screen_name":"nogueirabi15","location":"rio de janeiro","url":null,"description":"n\u00e3o tem jeito \u00e9 ela!!!!","protected":false,"verified":false,"followers_count":671,"friends_count":964,"listed_count":0,"favourites_count":2977,"statuses_count":6429,"created_at":"Fri Apr 04 19:00:54 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726806298722305\/8N7aEIjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726806298722305\/8N7aEIjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2427716322\/1445527485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nogueirabi15","name":"gabrielle nogueira","id":2427716322,"id_str":"2427716322","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079983657"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674267955200,"id_str":"663727674267955200","text":"RT @ExamenDeRisa: *YO TODOS LOS D\u00cdAS* https:\/\/t.co\/NYWAeOd4S7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97747330,"id_str":"97747330","name":"Alichita","screen_name":"Callmee_Alee","location":"Chile","url":"http:\/\/instagram.com\/callmee_alee","description":"*Guerrera - So\u00f1adora *TENS *Fan a morir de @DulceMaria *Love Music","protected":false,"verified":false,"followers_count":2120,"friends_count":852,"listed_count":17,"favourites_count":2855,"statuses_count":32066,"created_at":"Fri Dec 18 21:02:13 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663454137510707204\/y5O0G2xU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663454137510707204\/y5O0G2xU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97747330\/1446084225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:15 +0000 2015","id":663725039217438720,"id_str":"663725039217438720","text":"*YO TODOS LOS D\u00cdAS* https:\/\/t.co\/NYWAeOd4S7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2391062131,"id_str":"2391062131","name":"Examenes","screen_name":"ExamenDeRisa","location":"NO OFICIAL","url":null,"description":"Las mejores respuestas de los examens","protected":false,"verified":false,"followers_count":23967,"friends_count":161,"listed_count":21,"favourites_count":518,"statuses_count":726,"created_at":"Sat Mar 15 13:47:59 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723801021161473\/wjLA27QX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723801021161473\/wjLA27QX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2391062131\/1447079158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":205,"favorite_count":142,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725037850095617,"id_str":"663725037850095617","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","url":"https:\/\/t.co\/NYWAeOd4S7","display_url":"pic.twitter.com\/NYWAeOd4S7","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663725039217438720\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":266,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":266,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725037850095617,"id_str":"663725037850095617","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","url":"https:\/\/t.co\/NYWAeOd4S7","display_url":"pic.twitter.com\/NYWAeOd4S7","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663725039217438720\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":266,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":266,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ExamenDeRisa","name":"Examenes","id":2391062131,"id_str":"2391062131","indices":[3,16]}],"symbols":[],"media":[{"id":663725037850095617,"id_str":"663725037850095617","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","url":"https:\/\/t.co\/NYWAeOd4S7","display_url":"pic.twitter.com\/NYWAeOd4S7","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663725039217438720\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":266,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":266,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":663725039217438720,"source_status_id_str":"663725039217438720","source_user_id":2391062131,"source_user_id_str":"2391062131"}]},"extended_entities":{"media":[{"id":663725037850095617,"id_str":"663725037850095617","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGZ8WWcAEb5d2.jpg","url":"https:\/\/t.co\/NYWAeOd4S7","display_url":"pic.twitter.com\/NYWAeOd4S7","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663725039217438720\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":266,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":266,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":663725039217438720,"source_status_id_str":"663725039217438720","source_user_id":2391062131,"source_user_id_str":"2391062131"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983666"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263797760,"id_str":"663727674263797760","text":"@MICAHWAP not no more lol\ud83d\udc80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727611605082114,"in_reply_to_status_id_str":"663727611605082114","in_reply_to_user_id":1965892862,"in_reply_to_user_id_str":"1965892862","in_reply_to_screen_name":"MICAHWAP","user":{"id":3981274936,"id_str":"3981274936","name":"dom","screen_name":"Iilgucc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":271,"friends_count":103,"listed_count":0,"favourites_count":375,"statuses_count":401,"created_at":"Sat Oct 17 18:01:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663552807778283524\/5_homRfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663552807778283524\/5_homRfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981274936\/1446752317","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MICAHWAP","name":"\u3164\u3164\u3164","id":1965892862,"id_str":"1965892862","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259542016,"id_str":"663727674259542016","text":"My #SuperSingle is a speculative one; \n\n2pts Ebanks-Blake (FC United) to score (11-10, bet365)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177247082,"id_str":"177247082","name":"Mr Fixit","screen_name":"mrfixitstips","location":"Glasgow","url":"http:\/\/www.mrfixitstips.co.uk","description":"I've been the resident football tipster at Scotland's most popular newspaper, the Daily Record for almost 20 years. Now you can follow me online every day.","protected":false,"verified":false,"followers_count":8963,"friends_count":2514,"listed_count":110,"favourites_count":53,"statuses_count":10547,"created_at":"Wed Aug 11 16:56:48 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662921400592781313\/p9NCJWBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662921400592781313\/p9NCJWBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177247082\/1446888089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SuperSingle","indices":[3,15]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263650304,"id_str":"663727674263650304","text":"RT @mylipscantlie: @AabiAvVan yar ustad g... Mere ex januu kya online hy es time?? Humary raqeeb ka nam b tello ap... Saran hum ko bilkul b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383128292,"id_str":"383128292","name":"Aabi Awan","screen_name":"AabiAvVan","location":"United States of Faisalabad !!","url":null,"description":"Bi0 ? Rishta cHaIyE kYa ? \n18+ sInce D.O.B :v \nsAGITtArIUs\n#TeamTLS !!","protected":false,"verified":false,"followers_count":2980,"friends_count":1098,"listed_count":9,"favourites_count":47070,"statuses_count":61763,"created_at":"Sat Oct 01 09:43:33 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449800506374770688\/L0bkkc85.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449800506374770688\/L0bkkc85.jpeg","profile_background_tile":false,"profile_link_color":"B30089","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663671339002281984\/CkwbP-XW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663671339002281984\/CkwbP-XW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383128292\/1446450231","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:49 +0000 2015","id":663727447767126016,"id_str":"663727447767126016","text":"@AabiAvVan yar ustad g... Mere ex januu kya online hy es time?? Humary raqeeb ka nam b tello ap... Saran hum ko bilkul b nae ho rae\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726803249438720,"in_reply_to_status_id_str":"663726803249438720","in_reply_to_user_id":383128292,"in_reply_to_user_id_str":"383128292","in_reply_to_screen_name":"AabiAvVan","user":{"id":2857723712,"id_str":"2857723712","name":"Nida","screen_name":"mylipscantlie","location":"Punjab, Pakistan","url":null,"description":"I am perfect in my Imperfection.....i jst want to gain prominence in Allah's eye\u2764....\u270c\nRespect seeker instead of attention seeker","protected":false,"verified":false,"followers_count":907,"friends_count":55,"listed_count":3,"favourites_count":16886,"statuses_count":13743,"created_at":"Thu Oct 16 07:24:02 +0000 2014","utc_offset":18000,"time_zone":"Karachi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663418017452281857\/Exl4D1TH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663418017452281857\/Exl4D1TH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2857723712\/1446801817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AabiAvVan","name":"Aabi Awan","id":383128292,"id_str":"383128292","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mylipscantlie","name":"Nida","id":2857723712,"id_str":"2857723712","indices":[3,17]},{"screen_name":"AabiAvVan","name":"Aabi Awan","id":383128292,"id_str":"383128292","indices":[19,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674251079680,"id_str":"663727674251079680","text":"RT @tuntofu: How kagehina do a confession \ud83d\ude02 love youuu kagehina http:\/\/t.co\/kkzx3bl0nL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2895659868,"id_str":"2895659868","name":"kaika","screen_name":"hikaikai88","location":null,"url":null,"description":"\u6211\u7231\u4f60 | bambi voice\u2728 primarily haikyuu but other stuff as well","protected":false,"verified":false,"followers_count":30,"friends_count":75,"listed_count":0,"favourites_count":34,"statuses_count":109,"created_at":"Mon Nov 10 14:13:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726286720753664\/bS3rzxpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726286720753664\/bS3rzxpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2895659868\/1415628869","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 18 10:41:47 +0000 2015","id":655695263877623808,"id_str":"655695263877623808","text":"How kagehina do a confession \ud83d\ude02 love youuu kagehina http:\/\/t.co\/kkzx3bl0nL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912248540,"id_str":"3912248540","name":"\u0435n\u0251","screen_name":"tuntofu","location":null,"url":"http:\/\/kabokki.tumblr.com\/","description":"\u3010@kabokki\u3011 shouyou is mine\u2762 oh i am doodling http:\/\/pixiv.me\/kabokki","protected":false,"verified":false,"followers_count":227,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":243,"created_at":"Fri Oct 16 09:16:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655030563221344257\/uCPU4dlN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655030563221344257\/uCPU4dlN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3912248540\/1446443571","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48,"favorite_count":90,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655695260773822464,"id_str":"655695260773822464","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","url":"http:\/\/t.co\/kkzx3bl0nL","display_url":"pic.twitter.com\/kkzx3bl0nL","expanded_url":"http:\/\/twitter.com\/tuntofu\/status\/655695263877623808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":655695260773822464,"id_str":"655695260773822464","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","url":"http:\/\/t.co\/kkzx3bl0nL","display_url":"pic.twitter.com\/kkzx3bl0nL","expanded_url":"http:\/\/twitter.com\/tuntofu\/status\/655695263877623808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tuntofu","name":"\u0435n\u0251","id":3912248540,"id_str":"3912248540","indices":[3,11]}],"symbols":[],"media":[{"id":655695260773822464,"id_str":"655695260773822464","indices":[64,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","url":"http:\/\/t.co\/kkzx3bl0nL","display_url":"pic.twitter.com\/kkzx3bl0nL","expanded_url":"http:\/\/twitter.com\/tuntofu\/status\/655695263877623808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":655695263877623808,"source_status_id_str":"655695263877623808","source_user_id":3912248540,"source_user_id_str":"3912248540"}]},"extended_entities":{"media":[{"id":655695260773822464,"id_str":"655695260773822464","indices":[64,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRl_XZtUsAAjk3J.jpg","url":"http:\/\/t.co\/kkzx3bl0nL","display_url":"pic.twitter.com\/kkzx3bl0nL","expanded_url":"http:\/\/twitter.com\/tuntofu\/status\/655695263877623808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":655695263877623808,"source_status_id_str":"655695263877623808","source_user_id":3912248540,"source_user_id_str":"3912248540"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983662"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674251194368,"id_str":"663727674251194368","text":"@LielaMahmoud @aya_k406 \n\u0627\u0647 \u0642\u0634\u0637\u0629 \u062c\u062f\u0627\u064b \u0627\u0646 \u0634\u0627\u0621 \u0627\u0644\u0644\u0647 \ud83d\udc83\ud83d\udc83\ud83d\udc83","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717235337404417,"in_reply_to_status_id_str":"663717235337404417","in_reply_to_user_id":2628744300,"in_reply_to_user_id_str":"2628744300","in_reply_to_screen_name":"LielaMahmoud","user":{"id":1037651478,"id_str":"1037651478","name":"Expecto-Patronum","screen_name":"AyaHazHoss","location":"Cairo, Egypt","url":null,"description":"Faculty of Medecine ASU .. Fekra .. Potter Head .. \u0648 \u0645\u0627 \u0647\u064a \u0627\u0644\u062f\u0646\u064a\u0627 \u0625\u0644\u0627 \u0634\u0648\u064a\u0629 Ups \u0639\u0644\u064a \u0634\u0648\u064a\u0629 Downs ..","protected":false,"verified":false,"followers_count":530,"friends_count":316,"listed_count":1,"favourites_count":1029,"statuses_count":5783,"created_at":"Wed Dec 26 17:47:56 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000017554333\/ab5684c97b1c0df371e65c8ff81b71d0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000017554333\/ab5684c97b1c0df371e65c8ff81b71d0.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662576817560227840\/_mPAY3gW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662576817560227840\/_mPAY3gW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1037651478\/1441333428","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LielaMahmoud","name":"Leila","id":2628744300,"id_str":"2628744300","indices":[0,13]},{"screen_name":"aya_k406","name":"Aya Kamel","id":2420981169,"id_str":"2420981169","indices":[14,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079983662"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259546112,"id_str":"663727674259546112","text":"RT @hotelxm: \u0645\u062e\u062a\u0635\u0648\u0646 \u0628\u0628\u0631\u0627\u0645\u062c \u0634\u0647\u0631 \u0627\u0644\u0639\u0633\u0644 #\u0645\u0627\u0644\u064a\u0632\u064a\u0627 #\u062a\u0631\u0643\u064a\u0627 #\u0627\u0633\u0628\u0627\u0646\u064a\u0627 #\u0627\u0644\u064a\u0648\u0646\u0627\u0646 #\u0627\u0644\u0646\u0645\u0633\u0627 #\u0641\u0631\u0646\u0633\u0627 #\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641 #\u0627\u064a\u0637\u0627\u0644\u064a\u0627\n\n\u0644\u0644\u062d\u062c\u0632: 920002517 https:\/\/t.co\/RRR\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3404449402,"id_str":"3404449402","name":"\u0641\u0646\u0627\u062f\u0642 \u0627\u064a\u0637\u0627\u0644\u064a\u0627","screen_name":"booking_italy","location":"Jeddah, Makkah Al Mukarrama","url":null,"description":"\u0646\u0642\u062f\u0645 \u0644\u0643 \u0623\u0641\u0636\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0648\u0627\u0644\u062a\u062e\u0641\u064a\u0636\u0627\u062a \u0639\u0644\u0649 \u062d\u062c\u0648\u0632\u0627\u062a \u0641\u0646\u0627\u062f\u0642 \u0627\u064a\u0637\u0627\u0644\u064a\u0627 #\u0631\u0648\u0645\u0627 #\u0627\u0644\u0628\u0646\u062f\u0642\u064a\u0629 #\u0645\u064a\u0644\u0627\u0646 #\u0641\u064a\u0631\u0648\u0646\u0627.. \u0627\u062a\u0635\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u062d\u062f 920002517 - \u0627\u0648 \u2060\u2060\u20600557675418","protected":false,"verified":false,"followers_count":2317,"friends_count":5001,"listed_count":0,"favourites_count":0,"statuses_count":240,"created_at":"Wed Aug 05 16:40:07 +0000 2015","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"045D01","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628972655429976064\/dwbfKEhS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628972655429976064\/dwbfKEhS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3404449402\/1438793548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:13:09 +0000 2015","id":663313303033262081,"id_str":"663313303033262081","text":"\u0645\u062e\u062a\u0635\u0648\u0646 \u0628\u0628\u0631\u0627\u0645\u062c \u0634\u0647\u0631 \u0627\u0644\u0639\u0633\u0644 #\u0645\u0627\u0644\u064a\u0632\u064a\u0627 #\u062a\u0631\u0643\u064a\u0627 #\u0627\u0633\u0628\u0627\u0646\u064a\u0627 #\u0627\u0644\u064a\u0648\u0646\u0627\u0646 #\u0627\u0644\u0646\u0645\u0633\u0627 #\u0641\u0631\u0646\u0633\u0627 #\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641 #\u0627\u064a\u0637\u0627\u0644\u064a\u0627\n\n\u0644\u0644\u062d\u062c\u0632: 920002517 https:\/\/t.co\/RRRyWirCwv","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537646012,"id_str":"537646012","name":"Hotelxm","screen_name":"hotelxm","location":"Jeddah, Makkah Al Mukarrama","url":"http:\/\/www.hotelxm.com","description":"\u200f\u0646\u0642\u062f\u0645 \u0644\u0643 \u0623\u0641\u0636\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0648\u0627\u0644\u062a\u062e\u0641\u064a\u0636\u0627\u062a \u0639\u0644\u0649 \u062d\u062c\u0648\u0632\u0627\u062a \u0627\u0644\u0641\u0646\u0627\u062f\u0642 \u062d\u0648\u0644 \u0627\u0644\u0639\u0627\u0644\u0645..\n\u0627\u062a\u0635\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u062d\u062f 920002517 - \u0627\u0648 \u2060\u2060\u20600557675418","protected":false,"verified":false,"followers_count":93811,"friends_count":16381,"listed_count":163,"favourites_count":361,"statuses_count":33267,"created_at":"Mon Mar 26 23:11:16 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0074DB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653895679270592512\/yimUvv0x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653895679270592512\/yimUvv0x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/537646012\/1441847822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":2,"entities":{"hashtags":[{"text":"\u0645\u0627\u0644\u064a\u0632\u064a\u0627","indices":[24,32]},{"text":"\u062a\u0631\u0643\u064a\u0627","indices":[33,39]},{"text":"\u0627\u0633\u0628\u0627\u0646\u064a\u0627","indices":[40,48]},{"text":"\u0627\u0644\u064a\u0648\u0646\u0627\u0646","indices":[49,57]},{"text":"\u0627\u0644\u0646\u0645\u0633\u0627","indices":[58,65]},{"text":"\u0641\u0631\u0646\u0633\u0627","indices":[66,72]},{"text":"\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641","indices":[73,82]},{"text":"\u0627\u064a\u0637\u0627\u0644\u064a\u0627","indices":[83,91]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663313302848671744,"id_str":"663313302848671744","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","url":"https:\/\/t.co\/RRRyWirCwv","display_url":"pic.twitter.com\/RRRyWirCwv","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663313303033262081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663313302848671744,"id_str":"663313302848671744","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","url":"https:\/\/t.co\/RRRyWirCwv","display_url":"pic.twitter.com\/RRRyWirCwv","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663313303033262081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0627\u0644\u064a\u0632\u064a\u0627","indices":[37,45]},{"text":"\u062a\u0631\u0643\u064a\u0627","indices":[46,52]},{"text":"\u0627\u0633\u0628\u0627\u0646\u064a\u0627","indices":[53,61]},{"text":"\u0627\u0644\u064a\u0648\u0646\u0627\u0646","indices":[62,70]},{"text":"\u0627\u0644\u0646\u0645\u0633\u0627","indices":[71,78]},{"text":"\u0641\u0631\u0646\u0633\u0627","indices":[79,85]},{"text":"\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641","indices":[86,95]},{"text":"\u0627\u064a\u0637\u0627\u0644\u064a\u0627","indices":[96,104]}],"urls":[],"user_mentions":[{"screen_name":"hotelxm","name":"Hotelxm","id":537646012,"id_str":"537646012","indices":[3,11]}],"symbols":[],"media":[{"id":663313302848671744,"id_str":"663313302848671744","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","url":"https:\/\/t.co\/RRRyWirCwv","display_url":"pic.twitter.com\/RRRyWirCwv","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663313303033262081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}},"source_status_id":663313303033262081,"source_status_id_str":"663313303033262081","source_user_id":537646012,"source_user_id_str":"537646012"}]},"extended_entities":{"media":[{"id":663313302848671744,"id_str":"663313302848671744","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSP7z8WEAAqOD5.jpg","url":"https:\/\/t.co\/RRRyWirCwv","display_url":"pic.twitter.com\/RRRyWirCwv","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663313303033262081\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}},"source_status_id":663313303033262081,"source_status_id_str":"663313303033262081","source_user_id":537646012,"source_user_id_str":"537646012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234417153,"id_str":"663727674234417153","text":"RT @radiomixfm: Faltam s\u00f3 4 dias para o lan\u00e7amento do novo \u00e1lbum do @justinbieber, \"Purpose\"! Quem a\u00ed t\u00e1 ansioso(a)?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":836231178,"id_str":"836231178","name":"Beadles","screen_name":"angelofCyrus","location":null,"url":null,"description":"\u00c0s vezes, tudo que precisamos, \u00e9 apenas uma pessoa que se importe.","protected":false,"verified":false,"followers_count":531,"friends_count":488,"listed_count":5,"favourites_count":9252,"statuses_count":19240,"created_at":"Thu Sep 20 19:45:52 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590533371773587457\/SfxvYRHj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590533371773587457\/SfxvYRHj.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661005872882196480\/xVjYELY-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661005872882196480\/xVjYELY-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/836231178\/1445619186","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:56:39 +0000 2015","id":663701734821388288,"id_str":"663701734821388288","text":"Faltam s\u00f3 4 dias para o lan\u00e7amento do novo \u00e1lbum do @justinbieber, \"Purpose\"! Quem a\u00ed t\u00e1 ansioso(a)?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663701370726440960,"in_reply_to_status_id_str":"663701370726440960","in_reply_to_user_id":22662139,"in_reply_to_user_id_str":"22662139","in_reply_to_screen_name":"radiomixfm","user":{"id":22662139,"id_str":"22662139","name":"R\u00e1dio Mix FM","screen_name":"radiomixfm","location":"SP","url":"http:\/\/www.mixfm.com.br","description":"A Mix \u00e9 mais que m\u00fasica!","protected":false,"verified":true,"followers_count":507071,"friends_count":383,"listed_count":1769,"favourites_count":10785,"statuses_count":30322,"created_at":"Tue Mar 03 19:15:20 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067611048\/9b4a807b851785667218d7219f4610ba.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067611048\/9b4a807b851785667218d7219f4610ba.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559803379304501248\/zzSZaof1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559803379304501248\/zzSZaof1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22662139\/1443638202","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":45,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[52,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"radiomixfm","name":"R\u00e1dio Mix FM","id":22662139,"id_str":"22662139","indices":[3,14]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[68,81]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259546113,"id_str":"663727674259546113","text":"your poetical nature is very admirable for me. thank you very much for being yourself. may you kindly follow me?\n\ud83c\udf3b @Harry_Styles \nx40.476","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2843692755,"id_str":"2843692755","name":"\u02d7\u02cf\u02cb\u00e3v\u00f8\u010d\u00e4d\u00f8\u02ce\u02ca\u02d7","screen_name":"stylesssie","location":"califournia","url":null,"description":"it's strange that we kill flowers, because we think that they are beautiful, and we kill ourselves because we think that we are not beautiful","protected":false,"verified":false,"followers_count":7878,"friends_count":3056,"listed_count":21,"favourites_count":948,"statuses_count":95818,"created_at":"Sat Oct 25 14:09:35 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FBFBFB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631974593687887872\/qGraeRG8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631974593687887872\/qGraeRG8.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663113577071538176\/XWZ-fo5x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663113577071538176\/XWZ-fo5x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843692755\/1446946570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[115,128]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259542017,"id_str":"663727674259542017","text":"RT @JackJackJohnson: Lady working at customs didn't believe me when she read \"rapper\" as my occupation so she threw on a beat and made me s\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2643005895,"id_str":"2643005895","name":"Larissa","screen_name":"jacobftsebs","location":"The Netherlands","url":"https:\/\/twitter.com\/jacobftsebs\/status\/629655643872477185","description":"You're my obsession without you my love is in question. Take my hand and make this our heaven.","protected":false,"verified":false,"followers_count":1548,"friends_count":1274,"listed_count":11,"favourites_count":37174,"statuses_count":56954,"created_at":"Thu Jun 26 06:09:59 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663472004033552385\/6jQ8VoJB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663472004033552385\/6jQ8VoJB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2643005895\/1447019097","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:33 +0000 2015","id":663724109554061312,"id_str":"663724109554061312","text":"Lady working at customs didn't believe me when she read \"rapper\" as my occupation so she threw on a beat and made me spit a hot 16 to get by","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588967,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13964,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2016,"favorite_count":4252,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674267824132,"id_str":"663727674267824132","text":"RT @QiCcETrMMXqUFdD: \u30c8\u30ec\u30f3\u30c9\u5165\u308a\u5cb8\u304f\u3093\ud83d\ude06\ud83d\udc96 https:\/\/t.co\/ReQkwIvdna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1215203743,"id_str":"1215203743","name":"\uff48\uff41\uff5a\uff55\uff4b\uff49 \u262a\ufe0e","screen_name":"arsic0125sho","location":"\uff15 \u4eba \u304c \u306a \u3093 \u3070 \u30fc \u308f \u3093 \u2764\ufe0e\u309b","url":"http:\/\/twpf.jp\/arsic0125sho","description":"\u2765\u2765 \uff19\uff15 l i n e \/ \u5d50 \/ \u6afb\u4e95 \u7fd4 \/ \u5c71\u3053\u3093\u3073 \/ \u6afb\u8449 \/ \u76f8\u65b9\u3061\u3083\u3093\u25b7\u25b7@arsssssic","protected":false,"verified":false,"followers_count":999,"friends_count":303,"listed_count":6,"favourites_count":7537,"statuses_count":44344,"created_at":"Sun Feb 24 11:11:21 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647319952106459136\/cgPd0qm-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647319952106459136\/cgPd0qm-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215203743\/1444606921","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:11 +0000 2015","id":663720742912061443,"id_str":"663720742912061443","text":"\u30c8\u30ec\u30f3\u30c9\u5165\u308a\u5cb8\u304f\u3093\ud83d\ude06\ud83d\udc96 https:\/\/t.co\/ReQkwIvdna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2919234829,"id_str":"2919234829","name":"\u2601\ufe0e\u3061\u3087\u3093\u307d\u3080\u2601\ufe0e","screen_name":"QiCcETrMMXqUFdD","location":"#\u30af\u30ea\u30d1\u5f53\u9078\u7948\u9858","url":null,"description":"\u5cb8\u512a\u592a | \u963f\u90e8\u9855\u5d50 | \u795e\u5bae\u5bfa\u52c7\u592a | \u5ca9\u6a4b\u7384\u6a39 | \u5bae\u8fd1\u6d77\u6597 |\u304d\u3057\u3042\u3089 | \u3058\u3050\u3044\u308f | \u3042\u3089\u3061\u304b | \u3060\u3044\u308c\u3093dr\u671f | \u4eca\u5922\u4e2d\u306a\u306e\u306f\u3001\u304b\u304d\u63da\u3052\u305d\u3070\u2661\u20db","protected":false,"verified":false,"followers_count":461,"friends_count":180,"listed_count":1,"favourites_count":425,"statuses_count":1821,"created_at":"Fri Dec 05 04:04:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651669697230823425\/oipu2V-H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651669697230823425\/oipu2V-H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2919234829\/1446375986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720732736622592,"id_str":"663720732736622592","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","url":"https:\/\/t.co\/ReQkwIvdna","display_url":"pic.twitter.com\/ReQkwIvdna","expanded_url":"http:\/\/twitter.com\/QiCcETrMMXqUFdD\/status\/663720742912061443\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":122,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":635,"h":228,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720732736622592,"id_str":"663720732736622592","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","url":"https:\/\/t.co\/ReQkwIvdna","display_url":"pic.twitter.com\/ReQkwIvdna","expanded_url":"http:\/\/twitter.com\/QiCcETrMMXqUFdD\/status\/663720742912061443\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":122,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":635,"h":228,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QiCcETrMMXqUFdD","name":"\u2601\ufe0e\u3061\u3087\u3093\u307d\u3080\u2601\ufe0e","id":2919234829,"id_str":"2919234829","indices":[3,19]}],"symbols":[],"media":[{"id":663720732736622592,"id_str":"663720732736622592","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","url":"https:\/\/t.co\/ReQkwIvdna","display_url":"pic.twitter.com\/ReQkwIvdna","expanded_url":"http:\/\/twitter.com\/QiCcETrMMXqUFdD\/status\/663720742912061443\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":122,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":635,"h":228,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}},"source_status_id":663720742912061443,"source_status_id_str":"663720742912061443","source_user_id":2919234829,"source_user_id_str":"2919234829"}]},"extended_entities":{"media":[{"id":663720732736622592,"id_str":"663720732736622592","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCfWjUEAA2r3J.jpg","url":"https:\/\/t.co\/ReQkwIvdna","display_url":"pic.twitter.com\/ReQkwIvdna","expanded_url":"http:\/\/twitter.com\/QiCcETrMMXqUFdD\/status\/663720742912061443\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":122,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":635,"h":228,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}},"source_status_id":663720742912061443,"source_status_id_str":"663720742912061443","source_user_id":2919234829,"source_user_id_str":"2919234829"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983666"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242805760,"id_str":"663727674242805760","text":"RT @LanaParrilla: Birds of a sweater flock together... #Twinsies #SwanQueen @jenmorrisonlive http:\/\/t.co\/L29FJXGBtu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1350352795,"id_str":"1350352795","name":"HISTORY","screen_name":"oncuponafangirl","location":"\u2113ana parrilla & liam payne. S\u2661","url":"https:\/\/twitter.com\/oncuponafangirl\/status\/615672528447651840","description":"How many secrets can you keep?","protected":false,"verified":false,"followers_count":2222,"friends_count":394,"listed_count":22,"favourites_count":13101,"statuses_count":90074,"created_at":"Sat Apr 13 22:03:57 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661633967599284224\/uJA9hpOO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661633967599284224\/uJA9hpOO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1350352795\/1446668826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 01 21:28:19 +0000 2014","id":517425805417119744,"id_str":"517425805417119744","text":"Birds of a sweater flock together... #Twinsies #SwanQueen @jenmorrisonlive http:\/\/t.co\/L29FJXGBtu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129400817,"id_str":"129400817","name":"Lana Parrilla","screen_name":"LanaParrilla","location":"NYC, Los Angeles, Vancouver","url":null,"description":"Artist\/Actor","protected":false,"verified":true,"followers_count":594113,"friends_count":553,"listed_count":4055,"favourites_count":4740,"statuses_count":7768,"created_at":"Sun Apr 04 05:02:58 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/509440989\/smoke-mirror-woods-forest.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/509440989\/smoke-mirror-woods-forest.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656382741961793536\/5pXfmL2u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656382741961793536\/5pXfmL2u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129400817\/1445329071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9075,"favorite_count":11547,"entities":{"hashtags":[{"text":"Twinsies","indices":[37,46]},{"text":"SwanQueen","indices":[47,57]}],"urls":[],"user_mentions":[{"screen_name":"jenmorrisonlive","name":"Jennifer Morrison","id":121341102,"id_str":"121341102","indices":[58,74]}],"symbols":[],"media":[{"id":517425804578263040,"id_str":"517425804578263040","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","url":"http:\/\/t.co\/L29FJXGBtu","display_url":"pic.twitter.com\/L29FJXGBtu","expanded_url":"http:\/\/twitter.com\/LanaParrilla\/status\/517425805417119744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":894,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":517425804578263040,"id_str":"517425804578263040","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","url":"http:\/\/t.co\/L29FJXGBtu","display_url":"pic.twitter.com\/L29FJXGBtu","expanded_url":"http:\/\/twitter.com\/LanaParrilla\/status\/517425805417119744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":894,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twinsies","indices":[55,64]},{"text":"SwanQueen","indices":[65,75]}],"urls":[],"user_mentions":[{"screen_name":"LanaParrilla","name":"Lana Parrilla","id":129400817,"id_str":"129400817","indices":[3,16]},{"screen_name":"jenmorrisonlive","name":"Jennifer Morrison","id":121341102,"id_str":"121341102","indices":[76,92]}],"symbols":[],"media":[{"id":517425804578263040,"id_str":"517425804578263040","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","url":"http:\/\/t.co\/L29FJXGBtu","display_url":"pic.twitter.com\/L29FJXGBtu","expanded_url":"http:\/\/twitter.com\/LanaParrilla\/status\/517425805417119744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":894,"h":1024,"resize":"fit"}},"source_status_id":517425805417119744,"source_status_id_str":"517425805417119744","source_user_id":129400817,"source_user_id_str":"129400817"}]},"extended_entities":{"media":[{"id":517425804578263040,"id_str":"517425804578263040","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/By5EBx-CEAATScB.jpg","url":"http:\/\/t.co\/L29FJXGBtu","display_url":"pic.twitter.com\/L29FJXGBtu","expanded_url":"http:\/\/twitter.com\/LanaParrilla\/status\/517425805417119744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":894,"h":1024,"resize":"fit"}},"source_status_id":517425805417119744,"source_status_id_str":"517425805417119744","source_user_id":129400817,"source_user_id_str":"129400817"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674246893568,"id_str":"663727674246893568","text":"RT @KweenLauryn: I need some jogging suits.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426131446,"id_str":"426131446","name":"karen","screen_name":"pookaa__","location":null,"url":null,"description":"its just twitter","protected":false,"verified":false,"followers_count":532,"friends_count":219,"listed_count":3,"favourites_count":5713,"statuses_count":28262,"created_at":"Thu Dec 01 21:44:38 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651567006458769412\/ZYVjur_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651567006458769412\/ZYVjur_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426131446\/1445948103","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:50:05 +0000 2015","id":663700084693995520,"id_str":"663700084693995520","text":"I need some jogging suits.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480066719,"id_str":"480066719","name":"lil lolo","screen_name":"KweenLauryn","location":"chicago","url":null,"description":"gotta bad attitude but im thick tho.","protected":false,"verified":false,"followers_count":2038,"friends_count":697,"listed_count":4,"favourites_count":16977,"statuses_count":72726,"created_at":"Wed Feb 01 02:50:29 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/848470291\/2d713e6f7e9a233dd713b25b62ec558e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/848470291\/2d713e6f7e9a233dd713b25b62ec558e.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663697308492541952\/U_aLjkzs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663697308492541952\/U_aLjkzs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480066719\/1445992843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KweenLauryn","name":"lil lolo","id":480066719,"id_str":"480066719","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983661"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234380288,"id_str":"663727674234380288","text":"Llegando a sevilla","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99599715,"id_str":"99599715","name":"marco socas","screen_name":"marco0412","location":"Sta.Cruz de Tenerife","url":"http:\/\/likecool.com","description":"20 a\u00f1os.Estudiante de Ingenier\u00eda N\u00e1utica.Ama la m\u00fasica y a la mar","protected":false,"verified":false,"followers_count":15,"friends_count":136,"listed_count":0,"favourites_count":1,"statuses_count":44,"created_at":"Sun Dec 27 00:01:22 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/62424250\/as_surf_cory_slash_630_1_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/62424250\/as_surf_cory_slash_630_1_.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594119097\/5415_1145144303164_1064199921_30403825_2841758_n_1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594119097\/5415_1145144303164_1064199921_30403825_2841758_n_1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99599715\/1444949110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674246823936,"id_str":"663727674246823936","text":"\u3057\u304b\u3057\u3001\u660e\u65e5\u306e\u6717\u8aad\u4f1a\u306f\u8074\u304d\u306b\u884c\u3051\u308b\u3082\u306e\u306a\u3089\u884c\u304d\u305f\u304b\u3063\u305f\u306a\u3042\u2026(\u25cf\u00b4\u2313`\u25cf)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136999573,"id_str":"136999573","name":"\u3088\u3088\u3088\uff20\u548c\u6cc9\u6c99\u4f9d(\u3044\u305a\u307f\u3055\u3088\uff09","screen_name":"sayoyoyo0719","location":"\u3088\u3088\u3088\uff0f\u548c\u6cc9\u6c99\u4f9d\uff08\u3044\u305a\u307f\u3055\u3088\uff09","url":"http:\/\/twpf.jp\/sayoyoyo0719","description":"\u30cd\u30c3\u30c8\u4e0a\u3067\u58f0\u306e\u6d3b\u52d5\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u65e5\u3005\u306e\u4e8b\u306a\u3069\u6c17\u5118\u306b\u545f\u3044\u3066\u3044\u307e\u3059\u3002\u6d3b\u52d5\u5c65\u6b74\u7b49\u8a73\u3057\u304f\u306f\u30ea\u30f3\u30af\u3092\u3054\u89a7\u4e0b\u3055\u3044\uff01 \u30d5\u30a9\u30ed\u30fc\u306f\u7d61\u307f\u306e\u3042\u308b\u65b9\u3084\u7e4b\u304c\u308a\u306e\u308f\u304b\u308b\u65b9\u4e2d\u5fc3\u306b\u3055\u305b\u3066\u9802\u3044\u3066\u307e\u3059\u3002\u300a\u51fa\u6f14\u4f5c\u300b\u30a2\u30d7\u30ea\u2192\u300e\u53e4\u306e\u5973\u795e\u3068\u5b9d\u77f3\u306e\u5c04\u624b\u300f\u30a2\u30c6\u30ca\u7b49\/\u300e\u5e7b\u7363\u59eb\u300f\u30ea\u30ea\u30e0\u5f79\/\u300e\u30eb\u30df\u30ca\u30b9\u30cf\u30fc\u30c4s\u300f\u4e5d\u6761\u7fe0\u5f79\/ \u52d5\u753b\u2192RWBY\u65e5\u672c\u8a9e\u5439\u66ff\u7248\u975e\u516c\u5f0f\/\u30ef\u30a4\u30b9\u5f79\/\u7b49","protected":false,"verified":false,"followers_count":520,"friends_count":472,"listed_count":15,"favourites_count":5948,"statuses_count":26463,"created_at":"Sun Apr 25 13:59:25 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"F7875E","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462445326792536064\/3ICiRV4a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462445326792536064\/3ICiRV4a_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136999573\/1410846158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983661"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234417152,"id_str":"663727674234417152","text":"\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude2c\ud83d\ude18\ud83d\udc81\ud83c\udffd https:\/\/t.co\/tjqyaJJK3e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40516017,"id_str":"40516017","name":"x3_tasty23","screen_name":"XTasty23","location":"every man dream ","url":null,"description":"Mother of KhyRobLiyahBray \u2764\ufe0f RIH : Charlie & Darlene (\u2764\ufe0f) w\/12\/14 . Love w\/out friendship is life w\/out hope ! don't fw to many hold it down w\/select few","protected":false,"verified":false,"followers_count":253,"friends_count":199,"listed_count":0,"favourites_count":1670,"statuses_count":5352,"created_at":"Sat May 16 18:32:53 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656255193798057984\/0Y_avkkV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656255193798057984\/0Y_avkkV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40516017\/1445298422","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725466046636032,"quoted_status_id_str":"663725466046636032","quoted_status":{"created_at":"Mon Nov 09 14:30:57 +0000 2015","id":663725466046636032,"id_str":"663725466046636032","text":"\ud83d\udc9e\ud83d\udc9e\ud83d\udc9e https:\/\/t.co\/GjSqWZCI6R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97932272,"id_str":"97932272","name":"Kelsea","screen_name":"True_Beautyx3","location":"Ohio ","url":null,"description":"Erynn Ophelia-Rose\u2764\ufe0f #FreeEA \u2764\ufe0f","protected":false,"verified":false,"followers_count":1075,"friends_count":691,"listed_count":3,"favourites_count":1794,"statuses_count":30986,"created_at":"Sat Dec 19 16:36:38 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A31D14","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/268322044\/3674355.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/268322044\/3674355.jpg","profile_background_tile":false,"profile_link_color":"E64E5B","profile_sidebar_border_color":"362217","profile_sidebar_fill_color":"E4E6DF","profile_text_color":"2E4A1E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661325114525528064\/updDCRy2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661325114525528064\/updDCRy2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97932272\/1444080354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725460174540801,"id_str":"663725460174540801","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGyhoWEAEi1ed.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGyhoWEAEi1ed.jpg","url":"https:\/\/t.co\/GjSqWZCI6R","display_url":"pic.twitter.com\/GjSqWZCI6R","expanded_url":"http:\/\/twitter.com\/True_Beautyx3\/status\/663725466046636032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725460174540801,"id_str":"663725460174540801","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGyhoWEAEi1ed.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGyhoWEAEi1ed.jpg","url":"https:\/\/t.co\/GjSqWZCI6R","display_url":"pic.twitter.com\/GjSqWZCI6R","expanded_url":"http:\/\/twitter.com\/True_Beautyx3\/status\/663725466046636032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tjqyaJJK3e","expanded_url":"https:\/\/twitter.com\/true_beautyx3\/status\/663725466046636032","display_url":"twitter.com\/true_beautyx3\/\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234277890,"id_str":"663727674234277890","text":"RT @67p_s: \u30d0\u30fc\u30b8\u306e\u4e0a\u3067\u51fa\u6765\u308b\u306e\u304c\u3059\u3054\u3044 https:\/\/t.co\/acFwTTs5JI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351436678,"id_str":"351436678","name":"(\u3082)\u308a\u304a\u306f\u30ef\u30f3\u30c3\u30c3\u30c0\u30d5\u30eb","screen_name":"rio_821","location":"\u9999\u53d6\u614e\u543e\u306e\u53e3\u89d2\u306b\u57cb\u3082\u308c\u308b","url":null,"description":"\u30a8\u30bf\u30fc\u30ca\u30eb\u7fbd\u751f\u7d50\u5f26\/\u56fd\u6c11\u7684\u30a2\u30a4\u30c9\u30eb\u304a\u3058\u3055\u3093\u306f\u65b0\u898f\/\u30df\u30fc\u30cf\u30fc\u3060\u304b\u3089\u4eca\u306f\u624b\u4e0b\u6cbc\u6c11","protected":false,"verified":false,"followers_count":342,"friends_count":388,"listed_count":8,"favourites_count":3619,"statuses_count":70800,"created_at":"Tue Aug 09 07:29:03 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656681007895085056\/lMI_2OQd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656681007895085056\/lMI_2OQd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351436678\/1446105580","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 18 05:36:45 +0000 2015","id":655618499478495232,"id_str":"655618499478495232","text":"\u30d0\u30fc\u30b8\u306e\u4e0a\u3067\u51fa\u6765\u308b\u306e\u304c\u3059\u3054\u3044 https:\/\/t.co\/acFwTTs5JI","source":"\u003ca href=\"https:\/\/vine.co\" rel=\"nofollow\"\u003eVine for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100915177,"id_str":"100915177","name":"\u604b@\u6625\u3068\u79cb\u304c\u597d\u304d","screen_name":"67p_s","location":"\u9aa8\u3068\u30c7\u30b6\u30a4\u30ca\u30fc\u3068\u30a2\u30e9\u30d3\u3068\u624b\u4e0b\u306e\u6df7\u6cbc","url":"http:\/\/twpf.jp\/67p_s","description":"\u624b\u4e0b\u6cbc\u306b\u30a2\u30af\u30a2\u30dd\u30c3\u30d7\u30c0\u30a4\u30d6\u2606\/\u597d\u2192\u30dd\u30eb\u30ce.FUZZY CONTROL.NAOTO(Vn)\/\u30df\u30c3\u30ad\u30fc.\u30db\u30bb\u30d1\u30f3.BBB.\u6625\u65c5(\u30a2\u30e9\u30d3).\u9aa8(\u30a2\u30c8\u30e2\u30b9\u2022\u5de5\u4e8b\uff65\u30b9\u30b1\u30d5\u30ec)\/\u305f\u307e\u306b\u7d75\uff65\u30d7\u30e9\u30d0\u30f3\/\u753b\u50cf\u3068\u52d5\u753b\u591a\u3081\u3067\u3059\/\u88cf\u57a2@67ps_hone(\u9375\u57a2\u3055\u3093\u306e\u307f)","protected":false,"verified":false,"followers_count":888,"friends_count":180,"listed_count":12,"favourites_count":3913,"statuses_count":21768,"created_at":"Fri Jan 01 05:57:26 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"ED1D62","profile_sidebar_border_color":"FADCE6","profile_sidebar_fill_color":"FFCFDE","profile_text_color":"3D3B39","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653566801595338752\/c9oXi7NP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653566801595338752\/c9oXi7NP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100915177\/1438428141","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":209,"favorite_count":648,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/acFwTTs5JI","expanded_url":"https:\/\/vine.co\/v\/ehQYvTHBuX6","display_url":"vine.co\/v\/ehQYvTHBuX6","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/acFwTTs5JI","expanded_url":"https:\/\/vine.co\/v\/ehQYvTHBuX6","display_url":"vine.co\/v\/ehQYvTHBuX6","indices":[26,49]}],"user_mentions":[{"screen_name":"67p_s","name":"\u604b@\u6625\u3068\u79cb\u304c\u597d\u304d","id":100915177,"id_str":"100915177","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234277889,"id_str":"663727674234277889","text":"\u30ec\u30e2\u30f3\u3055\u3093\u3063\u3066\u30ea\u30ba\u30e0\u968a\u3069\u3046\u3057\u3066\u308b\u3093\u3060\u308d","source":"\u003ca href=\"http:\/\/www.twitpane.com\" rel=\"nofollow\"\u003eTwitPane Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226072674,"id_str":"226072674","name":"\u6d77\u8001NA7@\u51ac\u30b3\u30df\u306a\u3093\u304b\u51fa\u3059","screen_name":"na77777777","location":"\u30a2\u30a4\u30b3\u30f3\u306f(@numatf )\u3055\u3093\u3088\u308a","url":"https:\/\/soundcloud.com\/na7-1","description":"\u6d77\u8001\u540d\u83dc\u3005\u3067\u3042\u308aNA7\u3067\u3082\u3042\u308b\/\u30ca\u30ca\u30ca\u3068\u8aad\u3080\/\u97f3\u30b2\u30fc\u306f\u5168\u822c\u7684\u306b\/\u4e00\u5fdc\u30e1\u30a4\u30f3\u306fDDR\/DTM\u3084\u3063\u305f\u308aDJ\u3082\u3084\u3063\u305f\u308a\/mail:yarebadekinakumonai\uff3bat\uff3dhttp:\/\/yahoo.co.jp","protected":false,"verified":false,"followers_count":964,"friends_count":818,"listed_count":75,"favourites_count":11019,"statuses_count":33845,"created_at":"Mon Dec 13 07:03:04 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657567688168898560\/gQzybCmF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657567688168898560\/gQzybCmF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226072674\/1437716899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259476480,"id_str":"663727674259476480","text":"RT @tokiya_sin: \u3042\u30fc\u3001\u308f\u304b\u308b\u308f\u3002\u30af\u30e9\u30b9\u306b\u5fc5\u305a\u3044\u308b\u3088\u306d\u30011\u4eba\u6d6e\u3044\u3066\u308b\u3084\u3064\u3002 https:\/\/t.co\/RKSjyhqLvx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013175980,"id_str":"4013175980","name":"\u306b\u3083\u308b\u308b","screen_name":"nyarrur","location":"\u307f\u304d\u3083\u3093","url":null,"description":"\u3053\u3044\u3057\u3061\u3083\u3093\u3068\u30d1\u30d6\u30ed\u5927\u597d\u304d\u30de\u30f3","protected":false,"verified":false,"followers_count":25,"friends_count":34,"listed_count":0,"favourites_count":344,"statuses_count":1064,"created_at":"Sun Oct 25 12:17:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658296759974662144\/HC8LVkTF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658296759974662144\/HC8LVkTF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013175980\/1446420155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:04:16 +0000 2015","id":663628156687912960,"id_str":"663628156687912960","text":"\u3042\u30fc\u3001\u308f\u304b\u308b\u308f\u3002\u30af\u30e9\u30b9\u306b\u5fc5\u305a\u3044\u308b\u3088\u306d\u30011\u4eba\u6d6e\u3044\u3066\u308b\u3084\u3064\u3002 https:\/\/t.co\/RKSjyhqLvx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":865761852,"id_str":"865761852","name":"\u3058\u3083\u304a\u3046\u771f\u773c","screen_name":"tokiya_sin","location":"\u3084\u306f\u308a\u50d5\u306f\u5e73\u7a4f\u3092\u671b\u3080\u4e16\u754c\u3067","url":null,"description":"\u30a2\u30cb\u30e1\u63d0\u7763\u30c7\u30ec\u30b9\u30c6P\u30d1\u30ba\u30c9\u30e9\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u304b\u3089\u3001\u8a95\u751f\u65e5\u306b\u9802\u3044\u305f\u3082\u306e\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":16325,"friends_count":15320,"listed_count":220,"favourites_count":18810,"statuses_count":43946,"created_at":"Sun Oct 07 04:41:43 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662580358202851328\/DGUyTQGJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662580358202851328\/DGUyTQGJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/865761852\/1446459708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16622,"favorite_count":12002,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663628149368860672,"id_str":"663628149368860672","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1024,"resize":"fit"},"medium":{"w":600,"h":870,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":493,"resize":"fit"}}},{"id":663628149368815616,"id_str":"663628149368815616","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663628149368885248,"id_str":"663628149368885248","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tokiya_sin","name":"\u3058\u3083\u304a\u3046\u771f\u773c","id":865761852,"id_str":"865761852","indices":[3,14]}],"symbols":[],"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"extended_entities":{"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368860672,"id_str":"663628149368860672","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1024,"resize":"fit"},"medium":{"w":600,"h":870,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":493,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368815616,"id_str":"663628149368815616","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368885248,"id_str":"663628149368885248","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","url":"https:\/\/t.co\/RKSjyhqLvx","display_url":"pic.twitter.com\/RKSjyhqLvx","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259578880,"id_str":"663727674259578880","text":"RT @AgustinBelli_: Tomate el palo Lunes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1167668569,"id_str":"1167668569","name":"Yael Forti","screen_name":"YaelForti1510","location":"San Miguel, Argentina","url":"http:\/\/www.facebook.com\/yael.forti","description":null,"protected":false,"verified":false,"followers_count":168,"friends_count":193,"listed_count":2,"favourites_count":1219,"statuses_count":4083,"created_at":"Mon Feb 11 03:00:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E86086","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659428074862288896\/tKh4wSlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659428074862288896\/tKh4wSlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1167668569\/1431636288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:43 +0000 2015","id":663724904316051456,"id_str":"663724904316051456","text":"Tomate el palo Lunes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2657714564,"id_str":"2657714564","name":"Agustin Belli","screen_name":"AgustinBelli_","location":"Colonia Caroya \u00b7 Cordoba","url":"https:\/\/instagram.com\/agustinbelli_\/","description":"Twittero . CABJ . Un pibe mas del resto . Fui 15 veces TT en Arg.","protected":false,"verified":false,"followers_count":63699,"friends_count":34723,"listed_count":25,"favourites_count":3322,"statuses_count":5756,"created_at":"Fri Jul 18 20:56:29 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490270671000174592\/GTxnrAcS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490270671000174592\/GTxnrAcS.jpeg","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658526478913675264\/s14B5SAt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658526478913675264\/s14B5SAt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2657714564\/1446755591","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":37,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AgustinBelli_","name":"Agustin Belli","id":2657714564,"id_str":"2657714564","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674230071296,"id_str":"663727674230071296","text":"\u30c7\u30e5\u30a8\u30eb\u30de\u30b9\u30bf\u30fc\u30ba \u3010 \u8d85\u795e\u7f85\u30ed\u30de\u30ce\u30d5\u30ab\u30a4\u30b6\u30fc\u30fbNEX \u3011 DM35-004SR \u300a\u795e\u5316\u7de8\uff14\u300b \u30bf\u30ab\u30e9\u30c8\u30df\u30fc 3\u70b9\u306e\u65b0\u54c1\uff0f\u4e2d\u53e4\u54c1\u3092\u898b\u308b: \uffe5 1,930\u3088\u308a(\u3053\u306e\u5546\u54c1\u306e\u73fe\u5728\u306e\u30e9\u30f3\u30af\u306b\u95a2\u3059\u308b\u6b63\u5f0f\u306a\u60c5\u5831\u306b\u3064\u3044\u3066\u306f\u3001\u3067\u4e00\u756a... https:\/\/t.co\/MmZ7RjwQut","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2551902438,"id_str":"2551902438","name":"\u3042\u308a\u3048\u306a\u3044\u30b3\u30f3\u30d3\u30cb","screen_name":"lkbcuq","location":"\u8857","url":"http:\/\/www.amazon.co.jp\/?tag=amazonjpus-22","description":"\u6709\u308a\u5f97\u306a\u3044\u5834\u6240\u306b\u3042\u308b\u30b3\u30f3\u30d3\u30cb","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":16409,"created_at":"Sat Jun 07 06:35:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/475164424869658624\/CPiChc8t_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/475164424869658624\/CPiChc8t_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MmZ7RjwQut","expanded_url":"http:\/\/amzn.to\/20GS0mS","display_url":"amzn.to\/20GS0mS","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983657"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242633728,"id_str":"663727674242633728","text":"@Nopniti \u0e08\u0e30\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e01\u0e39\u0e2b\u0e23\u0e2d\u0e40\u0e22\u0e48\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727102340927489,"in_reply_to_status_id_str":"663727102340927489","in_reply_to_user_id":261725464,"in_reply_to_user_id_str":"261725464","in_reply_to_screen_name":"Nopniti","user":{"id":174851293,"id_str":"174851293","name":"\u0e40\u0e08\u0e49\u0e1a\u0e35\u0e4b","screen_name":"p_chrp","location":null,"url":null,"description":"since93\ub144 | \u0e19\u0e19. @nobqx_ | \u590f\u5929\u7684\u4e00\u573a\u590f\u96e8\u3002","protected":false,"verified":false,"followers_count":3178,"friends_count":275,"listed_count":10,"favourites_count":671,"statuses_count":80065,"created_at":"Thu Aug 05 00:11:32 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"CECECE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530378574482534401\/mK4V7064.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530378574482534401\/mK4V7064.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCC6C8","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650939730276646912\/MxIR0dSK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650939730276646912\/MxIR0dSK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174851293\/1428039825","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nopniti","name":"Well Met","id":261725464,"id_str":"261725464","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674255392768,"id_str":"663727674255392768","text":"RT @MrJoseCM: Te sacar\u00eda de mi cabeza para meterte en mi cama","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195071104,"id_str":"195071104","name":"Nayla Treves pa vo'","screen_name":"PorSiemprePan","location":null,"url":null,"description":"\u274cLoca de mierda, hist\u00e9rica enamorada\u274c\n\n30\/07\/15 , TE AMO ABUELO!\n\n\n\n\n @CodySimpson me sigue 30\/1\/14.","protected":false,"verified":false,"followers_count":1129,"friends_count":1873,"listed_count":0,"favourites_count":1886,"statuses_count":9433,"created_at":"Sat Sep 25 18:33:13 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167563056\/YVUDe0Ef.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167563056\/YVUDe0Ef.jpeg","profile_background_tile":true,"profile_link_color":"542196","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645507213583384576\/zx_r11nR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645507213583384576\/zx_r11nR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195071104\/1443070029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 19 12:22:22 +0000 2015","id":656082964955009024,"id_str":"656082964955009024","text":"Te sacar\u00eda de mi cabeza para meterte en mi cama","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1673205366,"id_str":"1673205366","name":"Jos\u00e9","screen_name":"MrJoseCM","location":"Sevilla \u2708","url":null,"description":"Soy un rom\u00e1ntico empedernido, lo mismo te leo una poes\u00eda que te dejo el culo hecho una porquer\u00eda. [Fav] ESTIGMATOFILIA","protected":false,"verified":false,"followers_count":116803,"friends_count":168,"listed_count":107,"favourites_count":15819,"statuses_count":606,"created_at":"Thu Aug 15 13:52:36 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445195192409153536\/mC4fsNa-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445195192409153536\/mC4fsNa-.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638830586883248128\/ef_yyDeh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638830586883248128\/ef_yyDeh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1673205366\/1441144152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":284,"favorite_count":296,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MrJoseCM","name":"Jos\u00e9","id":1673205366,"id_str":"1673205366","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983663"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263760896,"id_str":"663727674263760896","text":"...\u0432\u043a\u0443\u0441\u043d\u044b\u0439 \u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0440\u0435\u0446\u0435\u043f\u0442 \u043a\u0430\u0440\u0442\u043e\u0448\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0430\u0437\u0434\u043d\u0438\u0447\u043d\u043e\u0433\u043e \u0441\u0442\u043e\u043b\u0430!...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1250898331,"id_str":"1250898331","name":"SalisburyShorter","screen_name":"SalisburyShorte","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":89,"friends_count":29,"listed_count":1,"favourites_count":0,"statuses_count":137772,"created_at":"Fri Mar 08 06:08:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3597998500\/2c7cdce65a5e61ae8953592192e9155a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3597998500\/2c7cdce65a5e61ae8953592192e9155a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242629632,"id_str":"663727674242629632","text":"\u3010\u901f\u5831\u3011\u8fbb\u5e0c\u7f8e\u3001\u6749\u6d66\u592a\u967d\u306e\u606f\u5b50\u304c\u5e7c\u7a1a\u5712\u3092\u9000\u5712\u3055\u305b\u3089\u308c\u305f\u2026\u3000https:\/\/t.co\/fmQSPfuDob","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3238118204,"id_str":"3238118204","name":"\u7389\u68ee\u88d5\u592a\u2606\u30d5\u30a1\u30f3","screen_name":"q028amamoriv","location":null,"url":null,"description":"\u30ad\u30b9\u30de\u30a4\u7389\u68ee\u88d5\u592a\u304f\u3093 \uff7d\uff77\uff7d\uff77\uff7d\uff77\uff7d\uff77!!! (\u2229\uff65\u2200\uff65)\u2229 \uff77\uff6c\uff70 \u90fd\u5185\u3067OL\u3084\u3063\u3066\u307e\u3059(\u7b11) \u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u266a\u266a \u53cb\u9054\u52df\u96c6\u4e2d(*\u00b4\u2200`)\u266a \u3042\u3001\u3001\u3001\u3064\u3044\u3067\u306b\u3001\u3001\u3001\u5f7c\u6c0f\u3082\u52df\u96c6\u4e2d(\u7b11)","protected":false,"verified":false,"followers_count":170,"friends_count":165,"listed_count":0,"favourites_count":0,"statuses_count":6565,"created_at":"Sat Jun 06 17:51:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607243575919673344\/eqApihA4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607243575919673344\/eqApihA4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238118204\/1433613137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fmQSPfuDob","expanded_url":"http:\/\/maya01entaenta.seesaa.net\/","display_url":"maya01entaenta.seesaa.net","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242818048,"id_str":"663727674242818048","text":"RT @TheMockneyRebel: Jeremy Corbyn \u2018skipped VIP lunch\u2019 to stay behind after ceremony and applaud WWII veterans https:\/\/t.co\/RkEoJUobEg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111709038,"id_str":"111709038","name":"Rob Kinder","screen_name":"robmanmanc","location":"Chester","url":"http:\/\/www.robkinder.com","description":"Father, husband, designer, gardener, drinker, eater, Doctor Who lover.","protected":false,"verified":false,"followers_count":98,"friends_count":246,"listed_count":3,"favourites_count":478,"statuses_count":1896,"created_at":"Fri Feb 05 22:15:11 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/72919231\/DSC00433.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/72919231\/DSC00433.jpg","profile_background_tile":false,"profile_link_color":"0814FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C79090","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604546089904164864\/QUSs5zwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604546089904164864\/QUSs5zwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111709038\/1435521036","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:22:28 +0000 2015","id":663647835661934592,"id_str":"663647835661934592","text":"Jeremy Corbyn \u2018skipped VIP lunch\u2019 to stay behind after ceremony and applaud WWII veterans https:\/\/t.co\/RkEoJUobEg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663503160460320768,"in_reply_to_status_id_str":"663503160460320768","in_reply_to_user_id":1833919200,"in_reply_to_user_id_str":"1833919200","in_reply_to_screen_name":"TheMockneyRebel","user":{"id":1833919200,"id_str":"1833919200","name":"Scott Nelson \u262d","screen_name":"TheMockneyRebel","location":"Thurrock, Essex, UK","url":"http:\/\/www.labour.org.uk","description":"Labour Party Member & Activist for @UKLabour | @ThurrockLabour CLP | @PeoplesMomentum | Corbynite \u262d |LGBT | Social Justice Campaigner | @PCS_Union Member | RT \u2260","protected":false,"verified":false,"followers_count":19133,"friends_count":19059,"listed_count":157,"favourites_count":48235,"statuses_count":136473,"created_at":"Sun Sep 08 20:10:59 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660577422455128064\/KL1u7K83_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660577422455128064\/KL1u7K83_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1833919200\/1444682435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":194,"favorite_count":121,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RkEoJUobEg","expanded_url":"http:\/\/ind.pn\/1SCkCs9","display_url":"ind.pn\/1SCkCs9","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RkEoJUobEg","expanded_url":"http:\/\/ind.pn\/1SCkCs9","display_url":"ind.pn\/1SCkCs9","indices":[111,134]}],"user_mentions":[{"screen_name":"TheMockneyRebel","name":"Scott Nelson \u262d","id":1833919200,"id_str":"1833919200","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674251157504,"id_str":"663727674251157504","text":"RT @WaorYNatos_: Damos demasiada importancia a cosas que no la tienen.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164991272,"id_str":"2164991272","name":"fuck","screen_name":"Emii_Sanchez20","location":"De una parte de Espa\u00f1a...","url":"http:\/\/www.instagram.com\/emisanchez15","description":null,"protected":false,"verified":false,"followers_count":237,"friends_count":424,"listed_count":0,"favourites_count":311,"statuses_count":1079,"created_at":"Sat Nov 02 15:28:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645696263627735042\/978VmY-w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645696263627735042\/978VmY-w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164991272\/1443862673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:58:30 +0000 2015","id":663475711160786945,"id_str":"663475711160786945","text":"Damos demasiada importancia a cosas que no la tienen.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418865830,"id_str":"2418865830","name":"MARTES 13","screen_name":"WaorYNatos_","location":"En tus oidos","url":null,"description":"La m\u00fasica es la mejor droga para escapar de la realidad.","protected":false,"verified":false,"followers_count":40065,"friends_count":55,"listed_count":46,"favourites_count":18519,"statuses_count":2885,"created_at":"Sun Mar 30 11:30:34 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532678069018849282\/D_6fyIPj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532678069018849282\/D_6fyIPj.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645661855508267008\/uZg1A6q3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645661855508267008\/uZg1A6q3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2418865830\/1442771172","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":356,"favorite_count":265,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WaorYNatos_","name":"MARTES 13","id":2418865830,"id_str":"2418865830","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983662"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674238631936,"id_str":"663727674238631936","text":"RT @instituteforgov: Next steps in Scottish devolution, via @akashpaun https:\/\/t.co\/1os43Yzwhf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399394432,"id_str":"399394432","name":"Akash Paun","screen_name":"AkashPaun","location":"London","url":"http:\/\/www.instituteforgovernment.org.uk","description":"Fellow of the Institute for Government (@instituteforgov), leading work on minority and coalition government, devolution, and constitutional change in the UK.","protected":false,"verified":false,"followers_count":1160,"friends_count":1426,"listed_count":29,"favourites_count":246,"statuses_count":2398,"created_at":"Thu Oct 27 12:46:09 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2405342341\/4l5xhpko66iw7sxdi55u_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2405342341\/4l5xhpko66iw7sxdi55u_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:45 +0000 2015","id":663717865896439808,"id_str":"663717865896439808","text":"Next steps in Scottish devolution, via @akashpaun https:\/\/t.co\/1os43Yzwhf","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138075752,"id_str":"138075752","name":"Institute for Gov","screen_name":"instituteforgov","location":"London","url":"http:\/\/www.instituteforgovernment.org.uk","description":"UK's leading independent charity & think tank promoting more effective government.","protected":false,"verified":false,"followers_count":17824,"friends_count":732,"listed_count":594,"favourites_count":424,"statuses_count":6431,"created_at":"Wed Apr 28 15:15:57 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/96828293\/stripes.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/96828293\/stripes.png","profile_background_tile":true,"profile_link_color":"00BAE4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545987611165073408\/qsETSQ-4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545987611165073408\/qsETSQ-4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138075752\/1419009463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1os43Yzwhf","expanded_url":"http:\/\/ow.ly\/UpNr9","display_url":"ow.ly\/UpNr9","indices":[50,73]}],"user_mentions":[{"screen_name":"AkashPaun","name":"Akash Paun","id":399394432,"id_str":"399394432","indices":[39,49]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1os43Yzwhf","expanded_url":"http:\/\/ow.ly\/UpNr9","display_url":"ow.ly\/UpNr9","indices":[71,94]}],"user_mentions":[{"screen_name":"instituteforgov","name":"Institute for Gov","id":138075752,"id_str":"138075752","indices":[3,19]},{"screen_name":"AkashPaun","name":"Akash Paun","id":399394432,"id_str":"399394432","indices":[60,70]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983659"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674238611456,"id_str":"663727674238611456","text":"#4DaysUntilMITAM\n@onedirection Artist of the year #AMAs","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3995208929,"id_str":"3995208929","name":"Aishwarya","screen_name":"Ashsawant5","location":"Mumbai, India","url":null,"description":"LOVES MUSIC!!\r\nDIRECTIONER 1D *_* \r\nBIG CRICKET FAN :D","protected":false,"verified":false,"followers_count":29,"friends_count":141,"listed_count":0,"favourites_count":47,"statuses_count":159,"created_at":"Mon Oct 19 14:57:47 +0000 2015","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656345308029317120\/FkXlw-WU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656345308029317120\/FkXlw-WU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3995208929\/1445320194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[0,16]},{"text":"AMAs","indices":[50,55]}],"urls":[],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[17,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983659"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259435520,"id_str":"663727674259435520","text":"Lakas na kase e.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143514717,"id_str":"143514717","name":"pat","screen_name":"patwckd_","location":"Philippines","url":"http:\/\/www.facebook.com\/patrickDG16","description":"Saved under the grace of God.","protected":false,"verified":false,"followers_count":473,"friends_count":814,"listed_count":3,"favourites_count":9613,"statuses_count":22607,"created_at":"Thu May 13 17:41:29 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0C0C0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000042149172\/045b33972644f86681c3b92199854483.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000042149172\/045b33972644f86681c3b92199854483.jpeg","profile_background_tile":true,"profile_link_color":"F50029","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653185996821893120\/-CNeotQ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653185996821893120\/-CNeotQ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143514717\/1437799352","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674246828032,"id_str":"663727674246828032","text":"RT @typpopo: \u97d3\u56fdLine\u306e\u30b9\u30c6\u30c3\u30ab\u30fc\u306f\u305f\u304f\u3055\u3093\u306a\u3044\u304b\u3089\u60b2\u3057\u3044\u3002 \u65e5\u672c\u306e\u30b9\u30c6\u30c3\u30ab\u30fc\u6301\u3061\u305f\u3044\n#97line \n#\u97d3\u56fd\u4eba\u3067\u3082\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u4ebaRT \n#\u97d3\u56fd \n#\u97d3\u56fd\u597d\u304d\u306a\u4ebaRT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428875008,"id_str":"2428875008","name":"\u308a\u304a\u30af\u3002","screen_name":"KRLSJ23","location":"Japan","url":null,"description":"Z.TAO.\u2661\u3001EXO(\u30c1\u30a7\u30f3\u30da\u30f3)\u3001BTS(\u30b8\u30f3\u30da\u30f3)\u3001SJ(\u30a4\u30a7\u30c8\u30a5\u30af)etc. 96line\u306e\u96d1\u98df \u97d3\u56fdLOVE\u2661 E.L.F\/EXO-L \u4e00\u8a00\u3044\u305f\u3060\u3051\u305f\u3089\u3075\u3049\u308d\u3070\u3057\u307e\u3059^ ^","protected":false,"verified":false,"followers_count":39,"friends_count":184,"listed_count":6,"favourites_count":9275,"statuses_count":1761,"created_at":"Sat Apr 05 13:05:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626801479572033536\/WblBIydQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626801479572033536\/WblBIydQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2428875008\/1447068584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:42:40 +0000 2015","id":663607619639050240,"id_str":"663607619639050240","text":"\u97d3\u56fdLine\u306e\u30b9\u30c6\u30c3\u30ab\u30fc\u306f\u305f\u304f\u3055\u3093\u306a\u3044\u304b\u3089\u60b2\u3057\u3044\u3002 \u65e5\u672c\u306e\u30b9\u30c6\u30c3\u30ab\u30fc\u6301\u3061\u305f\u3044\n#97line \n#\u97d3\u56fd\u4eba\u3067\u3082\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u4ebaRT \n#\u97d3\u56fd \n#\u97d3\u56fd\u597d\u304d\u306a\u4ebaRT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886053556,"id_str":"2886053556","name":"\u30c6\u30e8\u30f3","screen_name":"typpopo","location":"\u30bd\u30a6\u30eb","url":null,"description":"97\ub144\uc0dd \/\/\/ \uc77c\ubcf8\uc5b4\uacf5\ubd80\uc911","protected":false,"verified":false,"followers_count":76,"friends_count":76,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sat Nov 01 09:21:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369509919571968\/umpeRA9S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369509919571968\/umpeRA9S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886053556\/1445177862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":7,"entities":{"hashtags":[{"text":"97line","indices":[39,46]},{"text":"\u97d3\u56fd\u4eba\u3067\u3082\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u4ebaRT","indices":[48,65]},{"text":"\u97d3\u56fd","indices":[68,71]},{"text":"\u97d3\u56fd\u597d\u304d\u306a\u4ebaRT","indices":[73,82]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"97line","indices":[52,59]},{"text":"\u97d3\u56fd\u4eba\u3067\u3082\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u4ebaRT","indices":[61,78]},{"text":"\u97d3\u56fd","indices":[81,84]},{"text":"\u97d3\u56fd\u597d\u304d\u306a\u4ebaRT","indices":[86,95]}],"urls":[],"user_mentions":[{"screen_name":"typpopo","name":"\u30c6\u30e8\u30f3","id":2886053556,"id_str":"2886053556","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983661"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259456000,"id_str":"663727674259456000","text":"@guchami @jagsjagajaga___ \u3044\u30fc\u306a\u3002\u305d\u3046\u3044\u3046\u8da3\u5473\u6b32\u3057\u3044\u308f(T_T)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727264761180161,"in_reply_to_status_id_str":"663727264761180161","in_reply_to_user_id":281547111,"in_reply_to_user_id_str":"281547111","in_reply_to_screen_name":"guchami","user":{"id":354817916,"id_str":"354817916","name":"\u304d\u3088\u305f\u304b","screen_name":"kuroro_kt","location":null,"url":null,"description":"\u4e00\u6a4b\u5927\u5546\u5b66\u90e8\/ALWAYS T.C.\/\u4e00\u6a4b\u786c\u5f0f\u5ead\u7403\u540c\u597d\u4f1a\u9023\u76df\/\u6a2a\u6d5c\/\u30b5\u30ec\u30b8\u30aa\u5b66\u966245th\/\u65c5\u884c\/\u30ab\u30e9\u30aa\u30b1\/\u30b8\u30d6\u30ea\/ONE PIECE","protected":false,"verified":false,"followers_count":279,"friends_count":260,"listed_count":5,"favourites_count":76,"statuses_count":4970,"created_at":"Sun Aug 14 10:32:09 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561112832112984065\/tTcppc4n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561112832112984065\/tTcppc4n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354817916\/1352729711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"guchami","name":"\u3084\u3050\u3061\u307f\u3086","id":281547111,"id_str":"281547111","indices":[0,8]},{"screen_name":"jagsjagajaga___","name":"\u304a\u3055\u304b\u306a\u3055\u3093","id":2279747862,"id_str":"2279747862","indices":[9,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674230075392,"id_str":"663727674230075392","text":"Mau! 755 tambahin mak https:\/\/t.co\/sxic3hmPNP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3758478212,"id_str":"3758478212","name":"Dre Hector","screen_name":"dreoust","location":"Behind The Madness","url":null,"description":"#DSA-755 Dracheseith - HinAria - xInchou - x203 - Hermes Room - ocrp and stiff person","protected":false,"verified":false,"followers_count":649,"friends_count":197,"listed_count":0,"favourites_count":9,"statuses_count":4723,"created_at":"Fri Oct 02 11:34:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663605778914275328\/S4QXVtYa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663605778914275328\/S4QXVtYa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3758478212\/1447050919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727425608527875,"quoted_status_id_str":"663727425608527875","quoted_status":{"created_at":"Mon Nov 09 14:38:44 +0000 2015","id":663727425608527875,"id_str":"663727425608527875","text":"DSP mau crys?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3249672751,"id_str":"3249672751","name":"Ilana","screen_name":"ProfsIlana","location":"Wynegard, S112 ; 1552","url":"https:\/\/biol.be\/ProfsIlana","description":"(\u272e\u272e\u272e) Ilana Ivanov Park || Charm Class(G4-7) @ Monday, 07.45PM ; WWEquip's Manager.","protected":false,"verified":false,"followers_count":349,"friends_count":221,"listed_count":2,"favourites_count":95,"statuses_count":7174,"created_at":"Fri Jun 19 08:53:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663080616150237185\/QQpTBDJb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663080616150237185\/QQpTBDJb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3249672751\/1445780517","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sxic3hmPNP","expanded_url":"https:\/\/twitter.com\/ProfsIlana\/status\/663727425608527875","display_url":"twitter.com\/ProfsIlana\/sta\u2026","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079983657"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234290176,"id_str":"663727674234290176","text":"RT @95_EHEHcom: 151030 \ub9cf\ud615\uacfc \ub9c9\ub0b4\ub77c\uc778 \n#\ud0dc\ud615 #\uc9c0\ubbfc #\uc11d\uc9c4 #\uc815\uad6d @BTS_twt https:\/\/t.co\/Js3i7tzGvx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":340220570,"id_str":"340220570","name":"shootingstar","screen_name":"Pinsrikajon","location":"\u0e1b\u0e25\u0e32\u0e22\u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32","url":null,"description":"\u0e41\u0e21\u0e27|\u0e2d\u0e19\u0e34\u0e40\u0e21\u0e30|\u0e21\u0e31\u0e07\u0e07\u0e30|\u0e02\u0e2d\u0e07\u0e2d\u0e23\u0e48\u0e2d\u0e22|\u0e2a\u0e35\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07|\u0e41\u0e2a\u0e07\u0e2a\u0e35\u0e43\u0e19\u0e40\u0e21\u0e37\u0e2d\u0e07|\u0e20\u0e39\u0e40\u0e02\u0e32|\u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32|\u0e17\u0e30\u0e40\u0e25|\u0e19\u0e49\u0e33\u0e15\u0e01|\u0e14\u0e2d\u0e01\u0e25\u0e34\u0e25\u0e25\u0e35\u0e48|\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e23\u0e2d\u0e1a\u0e42\u0e25\u0e01|BTS|\u0e04\u0e34\u0e21\u0e0b\u0e2d\u0e01\u0e08\u0e34\u0e19\u0e42\u0e2d\u0e1b\u0e1b\u0e49\u0e32~","protected":false,"verified":false,"followers_count":28,"friends_count":230,"listed_count":0,"favourites_count":196,"statuses_count":3651,"created_at":"Fri Jul 22 10:14:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654605295071555584\/GwMTO1vM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654605295071555584\/GwMTO1vM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340220570\/1444905044","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 07:28:59 +0000 2015","id":663256889099055104,"id_str":"663256889099055104","text":"151030 \ub9cf\ud615\uacfc \ub9c9\ub0b4\ub77c\uc778 \n#\ud0dc\ud615 #\uc9c0\ubbfc #\uc11d\uc9c4 #\uc815\uad6d @BTS_twt https:\/\/t.co\/Js3i7tzGvx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3990650533,"id_str":"3990650533","name":"VOICE OF EHEH","screen_name":"95_EHEHcom","location":"\ucc9c\ucc9c\ud788 \ud568\uaed8 \uac77\uc790","url":null,"description":"\u2764\ud0dc\ud615\uc544 \uc751\uc6d0\ud574 \uc88b\uc544\ud574 \uc0ac\ub791\ud574\u2764 2\ucc28\uac00\uacf5 \ubc0f \ub85c\uace0\ud06c\ub86d \uc0c1\uc5c5\uc801\uc774\uc6a9 \uae08\uc9c0 DO NOT EDIT\u2728\n95EHEHcom@gmail.com","protected":false,"verified":false,"followers_count":3855,"friends_count":21,"listed_count":178,"favourites_count":20,"statuses_count":328,"created_at":"Fri Oct 23 11:17:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394282825322496\/iyF7Y0cc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394282825322496\/iyF7Y0cc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3990650533\/1447000056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":252,"favorite_count":240,"entities":{"hashtags":[{"text":"\ud0dc\ud615","indices":[18,21]},{"text":"\uc9c0\ubbfc","indices":[22,25]},{"text":"\uc11d\uc9c4","indices":[26,29]},{"text":"\uc815\uad6d","indices":[30,33]}],"urls":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[34,42]}],"symbols":[],"media":[{"id":663256887450710016,"id_str":"663256887450710016","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663256887450710016,"id_str":"663256887450710016","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663256879867428864,"id_str":"663256879867428864","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcnj9VAAAJBh5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcnj9VAAAJBh5.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663256887450730497,"id_str":"663256887450730497","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANVAAEehnX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANVAAEehnX.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":215,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":649,"resize":"fit"},"medium":{"w":600,"h":380,"resize":"fit"}}},{"id":663256877497618432,"id_str":"663256877497618432","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcnbIUkAA930L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcnbIUkAA930L.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud0dc\ud615","indices":[34,37]},{"text":"\uc9c0\ubbfc","indices":[38,41]},{"text":"\uc11d\uc9c4","indices":[42,45]},{"text":"\uc815\uad6d","indices":[46,49]}],"urls":[],"user_mentions":[{"screen_name":"95_EHEHcom","name":"VOICE OF EHEH","id":3990650533,"id_str":"3990650533","indices":[3,14]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[50,58]}],"symbols":[],"media":[{"id":663256887450710016,"id_str":"663256887450710016","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663256889099055104,"source_status_id_str":"663256889099055104","source_user_id":3990650533,"source_user_id_str":"3990650533"}]},"extended_entities":{"media":[{"id":663256887450710016,"id_str":"663256887450710016","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANUsAAWkze.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663256889099055104,"source_status_id_str":"663256889099055104","source_user_id":3990650533,"source_user_id_str":"3990650533"},{"id":663256879867428864,"id_str":"663256879867428864","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcnj9VAAAJBh5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcnj9VAAAJBh5.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663256889099055104,"source_status_id_str":"663256889099055104","source_user_id":3990650533,"source_user_id_str":"3990650533"},{"id":663256887450730497,"id_str":"663256887450730497","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcoANVAAEehnX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcoANVAAEehnX.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":215,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":649,"resize":"fit"},"medium":{"w":600,"h":380,"resize":"fit"}},"source_status_id":663256889099055104,"source_status_id_str":"663256889099055104","source_user_id":3990650533,"source_user_id_str":"3990650533"},{"id":663256877497618432,"id_str":"663256877497618432","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRcnbIUkAA930L.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRcnbIUkAA930L.png","url":"https:\/\/t.co\/Js3i7tzGvx","display_url":"pic.twitter.com\/Js3i7tzGvx","expanded_url":"http:\/\/twitter.com\/95_EHEHcom\/status\/663256889099055104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663256889099055104,"source_status_id_str":"663256889099055104","source_user_id":3990650533,"source_user_id_str":"3990650533"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674267820032,"id_str":"663727674267820032","text":"@ChipBrownHD https:\/\/t.co\/W4FlRGg8Fx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":37267617,"in_reply_to_user_id_str":"37267617","in_reply_to_screen_name":"ChipBrownHD","user":{"id":45945763,"id_str":"45945763","name":"Chris Bennett","screen_name":"chrisgb00","location":"Clovis\/Germany\/Cali\/Austin","url":null,"description":"I am the one & only CB! Hook Em Horns! instagram: chrisgb2000","protected":false,"verified":false,"followers_count":4013,"friends_count":3492,"listed_count":148,"favourites_count":490,"statuses_count":337500,"created_at":"Tue Jun 09 21:11:52 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/174163349\/UT06Champ1_1280.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/174163349\/UT06Champ1_1280.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659885291566530560\/UgmR1d8Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659885291566530560\/UgmR1d8Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45945763\/1391044099","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663479714409897984,"quoted_status_id_str":"663479714409897984","quoted_status":{"created_at":"Sun Nov 08 22:14:25 +0000 2015","id":663479714409897984,"id_str":"663479714409897984","text":"Mike Zimmer Calls Out Rams Defensive Coordinator Gregg Williams after Cheap Shot on Teddy Bridgewater https:\/\/t.co\/SJP7piorCy","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343638363,"id_str":"343638363","name":"The Big Lead","screen_name":"thebiglead","location":null,"url":"http:\/\/www.thebiglead.com\/","description":"Sports, media, opinion. Established 2006. Contact us: jmcintyre@usatoday.com","protected":false,"verified":true,"followers_count":20872,"friends_count":1441,"listed_count":529,"favourites_count":3,"statuses_count":70194,"created_at":"Wed Jul 27 21:29:46 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000012156341\/860b6e1c3a4ef8ca59a147591afc2b3f.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000012156341\/860b6e1c3a4ef8ca59a147591afc2b3f.png","profile_background_tile":false,"profile_link_color":"E51937","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000060246105\/e51ed08e395bdad0a0b8482f11996b50_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000060246105\/e51ed08e395bdad0a0b8482f11996b50_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343638363\/1437847410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJP7piorCy","expanded_url":"http:\/\/wp.me\/p3LRnW-220y","display_url":"wp.me\/p3LRnW-220y","indices":[102,125]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/W4FlRGg8Fx","expanded_url":"https:\/\/twitter.com\/thebiglead\/status\/663479714409897984","display_url":"twitter.com\/thebiglead\/sta\u2026","indices":[14,37]}],"user_mentions":[{"screen_name":"ChipBrownHD","name":"Chip Brown","id":37267617,"id_str":"37267617","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079983666"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674267799552,"id_str":"663727674267799552","text":"RT @BakeNdSkateTony: Fuck being sick","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3279658746,"id_str":"3279658746","name":"T.90396","screen_name":"titaaaaa__","location":null,"url":null,"description":"what's the rise without the fall","protected":false,"verified":false,"followers_count":124,"friends_count":109,"listed_count":0,"favourites_count":243,"statuses_count":1148,"created_at":"Tue Jul 14 15:29:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650155791190654976\/A1K8UlDC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650155791190654976\/A1K8UlDC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279658746\/1446752432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:22:48 +0000 2015","id":663602618367774720,"id_str":"663602618367774720","text":"Fuck being sick","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":512449907,"id_str":"512449907","name":"T.O.N.Y \u2744\ufe0f","screen_name":"BakeNdSkateTony","location":"LakersNation","url":"http:\/\/ThrasherMagazine.com","description":"LATTC \/ 18","protected":false,"verified":false,"followers_count":850,"friends_count":681,"listed_count":3,"favourites_count":10285,"statuses_count":32871,"created_at":"Fri Mar 02 21:06:54 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA6508","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/693096745\/5236624eee0a0bea907e7ffa367f8d2d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/693096745\/5236624eee0a0bea907e7ffa367f8d2d.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663624512542367744\/gz48pv04_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663624512542367744\/gz48pv04_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/512449907\/1439461122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3b77caf94bfc81fe","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3b77caf94bfc81fe.json","place_type":"city","name":"Los Angeles","full_name":"Los Angeles, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-118.668404,33.704538],[-118.668404,34.337041],[-118.155409,34.337041],[-118.155409,33.704538]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BakeNdSkateTony","name":"T.O.N.Y \u2744\ufe0f","id":512449907,"id_str":"512449907","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983666"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674251022336,"id_str":"663727674251022336","text":"RT @marrrflgr: Wala akong nakikitang dahilan para pumunta pa ng feu, na update ko na rin naman email ko. #EDERP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2243897960,"id_str":"2243897960","name":"lanz","screen_name":"LouieLance","location":"pluto","url":null,"description":"af motherfcker ; troye sivan ; feu mnl","protected":false,"verified":false,"followers_count":626,"friends_count":372,"listed_count":0,"favourites_count":2610,"statuses_count":7949,"created_at":"Fri Dec 13 13:16:58 +0000 2013","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173163949\/bDoBA_7W.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173163949\/bDoBA_7W.jpeg","profile_background_tile":true,"profile_link_color":"06B011","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662279887571431424\/KQ2i0zAb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662279887571431424\/KQ2i0zAb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2243897960\/1443625413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727436337537024,"id_str":"663727436337537024","text":"Wala akong nakikitang dahilan para pumunta pa ng feu, na update ko na rin naman email ko. #EDERP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587361708,"id_str":"587361708","name":"Marr Fulgar","screen_name":"marrrflgr","location":"Amsterdam, Netherlands","url":null,"description":"i don't own any five inch heels, just got my sneakers on. | FEU | @kleffrmrz \u263a\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":1302,"friends_count":865,"listed_count":4,"favourites_count":10047,"statuses_count":18556,"created_at":"Tue May 22 09:15:28 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608609582093459456\/wycSaS7m.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608609582093459456\/wycSaS7m.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663500892096753664\/JiEfoqru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663500892096753664\/JiEfoqru_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587361708\/1446090787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"006523c50dfe9086","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/006523c50dfe9086.json","place_type":"city","name":"Quezon City","full_name":"Quezon City, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.989705,14.589376],[120.989705,14.776648],[121.135766,14.776648],[121.135766,14.589376]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"EDERP","indices":[90,96]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EDERP","indices":[105,111]}],"urls":[],"user_mentions":[{"screen_name":"marrrflgr","name":"Marr Fulgar","id":587361708,"id_str":"587361708","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079983662"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234245120,"id_str":"663727674234245120","text":"\u6771\u4eac\u4e8b\u5909\u3082\u597d\u304d\u3060\u3051\u3069\u306d\uff01","source":"\u003ca href=\"http:\/\/sinproject.net\/tweecha\/\" rel=\"nofollow\"\u003etweecha for android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1070329814,"id_str":"1070329814","name":"\u5915\u98ef\u306e\u732e\u7acb@2\u65e5\u76ee\u73fe\u5730\u3055\u3093","screen_name":"u_h_kondate","location":"\u30ab\u30ca\u30c7\u30ea\u30ab\u5171\u548c\u56fd\u95a2\u897f\u652f\u90e8","url":"http:\/\/www.pixiv.net\/member.php?id=2644892","description":"\u9b5a\u3068\u304b\u30c9\u30fc\u30eb\u3068\u304b\u30d5\u30a3\u30ae\u30e5\u30a2\u3068\u304b\u597d\u304d\u306a\u5e7b\u60f3\u90f7\u306e\u8840\u754c\u6cbc\u306b\u68f2\u3080\u30bd\u30b7\u30e3\u30b2\u304d\u304f\u3046\u3057P\u30023rd2\u65e5\u76ee\u73fe\u5730\u30de\u30f3","protected":false,"verified":false,"followers_count":181,"friends_count":178,"listed_count":12,"favourites_count":20403,"statuses_count":89112,"created_at":"Tue Jan 08 08:23:54 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605957562001793024\/UGFDFMqB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605957562001793024\/UGFDFMqB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1070329814\/1441285532","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242764801,"id_str":"663727674242764801","text":"RT @RMartur: \u00bfOs acord\u00e1is de las notas vergonzosas a Casillas que le daba el Marca? Pues vamos con Cristiano @meritocraciaRM https:\/\/t.co\/r\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2223258392,"id_str":"2223258392","name":"PAPEi PUR\u00edN","screen_name":"AquiOleAxudre","location":"Santiago de Compostela","url":null,"description":"Soy mourinhista (not moulieber). Soy un enfermo de los podcasts madridistas. Creo en la meritocracia. Me gusta rajar. \u00a1\u00a1 Por encima del escudo no hay nadie !!","protected":false,"verified":false,"followers_count":2189,"friends_count":487,"listed_count":9,"favourites_count":8432,"statuses_count":18755,"created_at":"Sat Nov 30 15:12:37 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611205373006057474\/62Bsw9Mz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611205373006057474\/62Bsw9Mz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2223258392\/1430126102","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:07 +0000 2015","id":663727524225118208,"id_str":"663727524225118208","text":"\u00bfOs acord\u00e1is de las notas vergonzosas a Casillas que le daba el Marca? Pues vamos con Cristiano @meritocraciaRM https:\/\/t.co\/rM9t356C0d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142421363,"id_str":"142421363","name":"Artur Vikary","screen_name":"RMartur","location":"[Real] Madrid","url":"https:\/\/instagram.com\/arturok07\/","description":"Madridista de f\u00fatbol y baloncesto. Aficionado a escribir, leer y a la cerveza. Madrid es mi amante fiel. Estudiante de sonido. Colaborador en @meritocraciaRM.","protected":false,"verified":false,"followers_count":709,"friends_count":708,"listed_count":29,"favourites_count":204,"statuses_count":61727,"created_at":"Mon May 10 21:08:59 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000086863644\/001965f04956bcd5c5e8399ed09598b8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000086863644\/001965f04956bcd5c5e8399ed09598b8.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663067638042595328\/hnTkwCdg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663067638042595328\/hnTkwCdg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142421363\/1447029854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meritocraciaRM","name":"Meritocracia Blanca","id":700086491,"id_str":"700086491","indices":[96,111]}],"symbols":[],"media":[{"id":663727523218530308,"id_str":"663727523218530308","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","url":"https:\/\/t.co\/rM9t356C0d","display_url":"pic.twitter.com\/rM9t356C0d","expanded_url":"http:\/\/twitter.com\/RMartur\/status\/663727524225118208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":799,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727523218530308,"id_str":"663727523218530308","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","url":"https:\/\/t.co\/rM9t356C0d","display_url":"pic.twitter.com\/rM9t356C0d","expanded_url":"http:\/\/twitter.com\/RMartur\/status\/663727524225118208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":799,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RMartur","name":"Artur Vikary","id":142421363,"id_str":"142421363","indices":[3,11]},{"screen_name":"meritocraciaRM","name":"Meritocracia Blanca","id":700086491,"id_str":"700086491","indices":[109,124]}],"symbols":[],"media":[{"id":663727523218530308,"id_str":"663727523218530308","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","url":"https:\/\/t.co\/rM9t356C0d","display_url":"pic.twitter.com\/rM9t356C0d","expanded_url":"http:\/\/twitter.com\/RMartur\/status\/663727524225118208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":799,"resize":"fit"}},"source_status_id":663727524225118208,"source_status_id_str":"663727524225118208","source_user_id":142421363,"source_user_id_str":"142421363"}]},"extended_entities":{"media":[{"id":663727523218530308,"id_str":"663727523218530308","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIqnEXIAQNWGt.jpg","url":"https:\/\/t.co\/rM9t356C0d","display_url":"pic.twitter.com\/rM9t356C0d","expanded_url":"http:\/\/twitter.com\/RMartur\/status\/663727524225118208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":799,"resize":"fit"}},"source_status_id":663727524225118208,"source_status_id_str":"663727524225118208","source_user_id":142421363,"source_user_id_str":"142421363"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263638017,"id_str":"663727674263638017","text":"@52cdl_n \u624b\u304c\u6ed1\u308a\u307e\u3057\u305f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727476208590848,"in_reply_to_status_id_str":"663727476208590848","in_reply_to_user_id":1325635129,"in_reply_to_user_id_str":"1325635129","in_reply_to_screen_name":"52cdl_n","user":{"id":1616746590,"id_str":"1616746590","name":"\u3075\u3058\u30fc","screen_name":"win_taka","location":null,"url":null,"description":"Pegasus #46 \/ CFC YOGA","protected":false,"verified":false,"followers_count":462,"friends_count":468,"listed_count":0,"favourites_count":622,"statuses_count":2431,"created_at":"Wed Jul 24 04:01:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641787971633475584\/0YyXwsPP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641787971633475584\/0YyXwsPP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1616746590\/1447075471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"52cdl_n","name":"\u306a\u3063\u3061","id":1325635129,"id_str":"1325635129","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259587072,"id_str":"663727674259587072","text":"\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":308793596,"id_str":"308793596","name":"teebaby","screen_name":"SupaCute_Red","location":"w\/SMC ","url":null,"description":"teeBABY USCA19","protected":false,"verified":false,"followers_count":927,"friends_count":798,"listed_count":0,"favourites_count":994,"statuses_count":14533,"created_at":"Wed Jun 01 00:52:28 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1C1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/753853330\/1de3b3995525212671238b7c0d42f4e5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/753853330\/1de3b3995525212671238b7c0d42f4e5.jpeg","profile_background_tile":true,"profile_link_color":"0B45BA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"460F6B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657206836437884928\/Q3fFe5Rt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657206836437884928\/Q3fFe5Rt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308793596\/1444318985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674230116353,"id_str":"663727674230116353","text":"\u901a\u5b66\u306f\u4e0b\u308a\u96fb\u8eca\u3092\u4f7f\u3046\u305f\u3081\n\u30e9\u30c3\u30b7\u30e5\u3092\u77e5\u3089\u306a\u3044","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2510711294,"id_str":"2510711294","name":"\u5927\u5834\u305f\u304b\u3057\u308dbot","screen_name":"ohba_ta_bot","location":null,"url":null,"description":"\u5927\u5834bot\n\u3075\u3049\u308d\u3070\u3001\u3088\u308d\u3057\u304f\u3002\u3046\u3093\u3002","protected":false,"verified":false,"followers_count":62,"friends_count":88,"listed_count":0,"favourites_count":3,"statuses_count":6597,"created_at":"Tue May 20 15:36:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536924705488269313\/gIDwYnG6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536924705488269313\/gIDwYnG6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2510711294\/1400600398","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983657"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674255347712,"id_str":"663727674255347712","text":"Fallout 4 unlocks in 10 hours, i finish work in 11 hours nice","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294540565,"id_str":"294540565","name":"ken","screen_name":"keenan_pearce","location":"South Wales","url":null,"description":"19, Newport.","protected":false,"verified":false,"followers_count":251,"friends_count":152,"listed_count":2,"favourites_count":440,"statuses_count":6563,"created_at":"Sat May 07 10:11:18 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634337709629308928\/uajtQzwB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634337709629308928\/uajtQzwB.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645621442927796224\/15EoKI0P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645621442927796224\/15EoKI0P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294540565\/1429136622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983663"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674259546114,"id_str":"663727674259546114","text":"one person followed me and one person unfollowed me \/\/ automatically checked by https:\/\/t.co\/ohNQZQ8aGm","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1593739034,"id_str":"1593739034","name":"Federica Torelli","screen_name":"fedetorelli_","location":null,"url":null,"description":"You only live once, but if you do it right, once is enough!","protected":false,"verified":false,"followers_count":386,"friends_count":165,"listed_count":1,"favourites_count":10366,"statuses_count":7448,"created_at":"Sun Jul 14 16:14:45 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659115051689844736\/qqVg_3yD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659115051689844736\/qqVg_3yD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1593739034\/1447003208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ohNQZQ8aGm","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983664"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263736320,"id_str":"663727674263736320","text":"Register NOW for Wine and Wonderment 11\/16 @2941Restaurant! ALL proceeds benefit @ODBFairfax Holiday families! https:\/\/t.co\/yNGqL9qhnv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619217051,"id_str":"619217051","name":"Our Daily Bread, Inc","screen_name":"ODBFairfax","location":"Fairfax, VA","url":"http:\/\/www.odbfairfax.org","description":"For 30+ years, empowering our Fairfax neighbors to move from need to self-sufficiency.","protected":false,"verified":false,"followers_count":555,"friends_count":361,"listed_count":9,"favourites_count":450,"statuses_count":3645,"created_at":"Tue Jun 26 16:24:28 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654655919532302336\/oeXfc-fK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654655919532302336\/oeXfc-fK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619217051\/1445871896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yNGqL9qhnv","expanded_url":"http:\/\/bit.ly\/ODBWine2015","display_url":"bit.ly\/ODBWine2015","indices":[111,134]}],"user_mentions":[{"screen_name":"2941Restaurant","name":"2941 Restaurant","id":253720362,"id_str":"253720362","indices":[43,58]},{"screen_name":"ODBFairfax","name":"Our Daily Bread, Inc","id":619217051,"id_str":"619217051","indices":[81,92]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674238484480,"id_str":"663727674238484480","text":"RT @Rakuo_07: \u3042\u3093\u30b9\u30bf\u306e\u30d0\u30b0\u3067\u4e00\u756a\u308f\u3089\u3063\u305f\u306e\u306f\u3053\u308c\u306a\u3093\u3060\u3088\u306a\u3041 https:\/\/t.co\/x3L0LxNTTS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160804885,"id_str":"160804885","name":"\u30af\u30ed\u30de\u30bf","screen_name":"jamtaruto","location":"\u30a2\u30f3\u30b0\u30e9","url":"http:\/\/www.pixiv.net\/member.php?id=3159787","description":"\u6c5a\u3063\u305f\u306a\u3044\u843d\u66f8\u304d\u3092\u4e0a\u3052\u305f\u308a\u3057\u307e\u3059 \u5275\u4f5c\u3082\u7248\u6a29\u3082\u5927\u597d\u304d \u60aa\u5f79\u7b4b\u8089\u4eba\u5916\u9577\u8eab\u597d\u304d \u4eba\u5916\u2192\u5c11\u5973\u7f8e\u5473\u3057\u3044\u3067\u3059 \u30b2\u30fc\u30e0\u3001\u5b9f\u6cc1\u5927\u597d\u304d \u73fe\u5728\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3068\u624b\u4e0b\u6cbc\u306b\u306f\u307e\u3063\u3066\u307e\u3059 \u5909\u614b\u767a\u8a00\u3042\u308a @hh_phynkss_bot\u3068@hh_feitang_bot\u306e\u89aa","protected":false,"verified":false,"followers_count":295,"friends_count":237,"listed_count":18,"favourites_count":1350,"statuses_count":57606,"created_at":"Tue Jun 29 04:53:23 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628983852887896064\/v3BGY2XZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628983852887896064\/v3BGY2XZ.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"31B1C2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662569291322032128\/qEW-f80L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662569291322032128\/qEW-f80L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160804885\/1415638120","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:24 +0000 2015","id":663720042568151040,"id_str":"663720042568151040","text":"\u3042\u3093\u30b9\u30bf\u306e\u30d0\u30b0\u3067\u4e00\u756a\u308f\u3089\u3063\u305f\u306e\u306f\u3053\u308c\u306a\u3093\u3060\u3088\u306a\u3041 https:\/\/t.co\/x3L0LxNTTS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3006403543,"id_str":"3006403543","name":"\u62d3\u4e1622\u65e5\u307d\u3063\u3061\u3083\u3093\u306b1000\u5186","screen_name":"Rakuo_07","location":"Russian","url":null,"description":"\u85ab\u306a\u305a \u30a2\u30a4\u30ab\u30c4 \u6606\u5e03\nhttp:\/\/twpf.jp\/Rakuo_07\n\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":145,"friends_count":117,"listed_count":1,"favourites_count":7532,"statuses_count":27430,"created_at":"Sun Feb 01 10:16:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622992953607385088\/L0YbrgNc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622992953607385088\/L0YbrgNc.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662259118439202816\/R2eX7d-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662259118439202816\/R2eX7d-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3006403543\/1446984320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":686,"favorite_count":401,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rakuo_07","name":"\u62d3\u4e1622\u65e5\u307d\u3063\u3061\u3083\u3093\u306b1000\u5186","id":3006403543,"id_str":"3006403543","indices":[3,12]}],"symbols":[],"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720042568151040,"source_status_id_str":"663720042568151040","source_user_id":3006403543,"source_user_id_str":"3006403543"}]},"extended_entities":{"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720042568151040,"source_status_id_str":"663720042568151040","source_user_id":3006403543,"source_user_id_str":"3006403543"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983659"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674255257600,"id_str":"663727674255257600","text":"@rxdveins alright jane hehe . Whatever account you use you'll still be my sister hunnyyy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725916439183361,"in_reply_to_status_id_str":"663725916439183361","in_reply_to_user_id":635391162,"in_reply_to_user_id_str":"635391162","in_reply_to_screen_name":"rxdveins","user":{"id":1471809926,"id_str":"1471809926","name":"DJ Delan","screen_name":"zxnithyll","location":"fl\u3001ooc","url":null,"description":"r.i.p to my youth. \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800 eat \u2192 sleep \u2192 rave\u266a \u2192 repeat\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","protected":false,"verified":false,"followers_count":85,"friends_count":64,"listed_count":1,"favourites_count":180,"statuses_count":14251,"created_at":"Fri May 31 10:08:59 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662958239726698496\/JzQHP46-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662958239726698496\/JzQHP46-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1471809926\/1446996651","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rxdveins","name":"Jane","id":635391162,"id_str":"635391162","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983663"} +{"delete":{"status":{"id":663724457236676608,"id_str":"663724457236676608","user_id":2232922423,"user_id_str":"2232922423"},"timestamp_ms":"1447079983794"}} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674246885376,"id_str":"663727674246885376","text":"RT @hiyoi03: \u6771\u65b9\u3001\u6c34\u7740\u3067\u8e0a\u3063\u3066\u304a\u3063\u3071\u3044\u30d0\u30a4\u30f3\u2191\u30d0\u30a4\u30f3\u2193\u3055\u305b\u3066\u308bMMD\u591a\u3044\u3051\u3069\u3061\u3083\u3046\u306d\u3093\u2026\u6c34\u7740\u3067\u8e0a\u3089\u305b\u3066\u30d0\u30a4\u30f3\u2191\u30d0\u30a4\u30f3\u2193\u3055\u305b\u3066\u3082\u30b9\u30b1\u30d9\u306b\u898b\u3048\u306a\u3044\u306d\u3093\u2026\u4f8b\u3048\u308b\u306a\u3089\u5fc3\u970a\u5199\u771f\u3067\u970a\u304c\u30a6\u30a7\u301c\u30a4\u2191\u3063\u3066\u5199\u3063\u3066\u3057\u3082\u3066\u308b\u611f\u3058\u3084\u306d\u3093\u2026\u65e5\u672c\u4eba\u306a\u3093\u3060\u304b\u3089\u3082\u3063\u3068\u7e4a\u7d30\u306a\u3059\u3051\u3079\u5927\u4e8b\u306b\u3057\u3066\u3044\u3053\u2026\uff1f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86648060,"id_str":"86648060","name":"\u3075\u308f\u308a\uff5e\u304f\uff20\u7d19\u304d\u3064\u306d\u5fa9\u6d3b","screen_name":"fuwareac","location":"\u5927\u962a\u5e9c\u9ad8\u69fb\u5e02","url":"http:\/\/www.page.sannet.ne.jp\/fuwareac\/","description":"http:\/\/www.pixiv.net\/member.php?id=407367\n\u72d0\u7d75\u63cf\u304d\u5e2b\u3068\u304b\u72d0\u30de\u30cb\u30a2\u3068\u304b\u500b\u4eba\u30b5\u30fc\u30af\u30eb\u96f2\u5c45\u5de5\u4f5c\u5ba4 \u5ba4\u9577\u3068\u304b\n\uff0fMSX,X68k\u30e6\u30fc\u30b6\u30fc\uff0fSEGA\u30b3\u30ec\u30af\u30bf\u30fc\uff0f3DS\u30d5\u30ec\u30b32793-0916-4791\uff0f\u30b3\u30f3\u30b3\u30ec\uff0f\u8535\u738b\u304d\u3064\u306d\u6751\uff0f\u3051\u3082\u306e\u30d5\u30ec\u30f3\u30ba\u59cb\u3081\u307e\u3057\u305f573,318,501","protected":false,"verified":false,"followers_count":600,"friends_count":1078,"listed_count":9,"favourites_count":10682,"statuses_count":32411,"created_at":"Sun Nov 01 02:47:59 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455448894210461696\/eFTVF1_K.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455448894210461696\/eFTVF1_K.png","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659191236285239296\/1BjQSNfp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659191236285239296\/1BjQSNfp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86648060\/1376333208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:13 +0000 2015","id":663701877083602945,"id_str":"663701877083602945","text":"\u6771\u65b9\u3001\u6c34\u7740\u3067\u8e0a\u3063\u3066\u304a\u3063\u3071\u3044\u30d0\u30a4\u30f3\u2191\u30d0\u30a4\u30f3\u2193\u3055\u305b\u3066\u308bMMD\u591a\u3044\u3051\u3069\u3061\u3083\u3046\u306d\u3093\u2026\u6c34\u7740\u3067\u8e0a\u3089\u305b\u3066\u30d0\u30a4\u30f3\u2191\u30d0\u30a4\u30f3\u2193\u3055\u305b\u3066\u3082\u30b9\u30b1\u30d9\u306b\u898b\u3048\u306a\u3044\u306d\u3093\u2026\u4f8b\u3048\u308b\u306a\u3089\u5fc3\u970a\u5199\u771f\u3067\u970a\u304c\u30a6\u30a7\u301c\u30a4\u2191\u3063\u3066\u5199\u3063\u3066\u3057\u3082\u3066\u308b\u611f\u3058\u3084\u306d\u3093\u2026\u65e5\u672c\u4eba\u306a\u3093\u3060\u304b\u3089\u3082\u3063\u3068\u7e4a\u7d30\u306a\u3059\u3051\u3079\u5927\u4e8b\u306b\u3057\u3066\u3044\u3053\u2026\uff1f\uff1f\u3063\u3066\u601d\u3063\u3066\u3057\u307e\u3046\u306d\u3093\u2026\u2026\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353095652,"id_str":"353095652","name":"\u3072\u3088\u3044","screen_name":"hiyoi03","location":"\u2190\u5e7d\u3005\u5b50\u69d8\u306e\u9774\u4e0b \u30d6\u30e9\u30b8\u30eb\u2192","url":"http:\/\/pixiv.me\/kasasagi07","description":"\u25bc\u5e7d\u3005\u5b50\u69d8\u306e\u9774\u4e0b\u306b\u306a\u308a\u305f\u3044\u3002\u9b54\u7406\u6c99\u3061\u3083\u3093\u3092\u7518\u3084\u304b\u3057\u305f\u3044\u3002\u25bc\u30ea\u30d7\u8fd4\u3057\u305f\u308a\u8fd4\u3055\u306a\u304b\u3063\u305f\u308a\u3067\u3059\u3002\u3059\u307f\u307e\u305b\u3093\u3002\u25bc\u597d\u304d\u52dd\u624b\u63cf\u3044\u3066\u307e\u3059\u25bc\u30b5\u30fc\u30af\u30eb\u540d\u2192kafka.\u25bc\u305f\u307e\u306b\u958b\u304fbooth\u2192https:\/\/hiyoi.booth.pm\/","protected":false,"verified":false,"followers_count":5145,"friends_count":381,"listed_count":151,"favourites_count":3065,"statuses_count":14774,"created_at":"Thu Aug 11 14:59:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765849476\/de795f04d5a86f6e6f5a3912d8be5f6c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765849476\/de795f04d5a86f6e6f5a3912d8be5f6c.jpeg","profile_background_tile":false,"profile_link_color":"048185","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"0D0B47","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596515826343153664\/MnuCKRFH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596515826343153664\/MnuCKRFH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353095652\/1437299891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":128,"favorite_count":91,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiyoi03","name":"\u3072\u3088\u3044","id":353095652,"id_str":"353095652","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983661"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674234421249,"id_str":"663727674234421249","text":"@MarenMorris i just listened to your interview on my local country station @987fm and im an instant fan. Love the church song.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21011215,"in_reply_to_user_id_str":"21011215","in_reply_to_screen_name":"MarenMorris","user":{"id":478119632,"id_str":"478119632","name":"red parker","screen_name":"red_dajokester","location":"east coast baby!!! maryland.","url":null,"description":"asshole. fighter. married. photographer. comedian. psssttttt im a woman.","protected":false,"verified":false,"followers_count":503,"friends_count":1256,"listed_count":3,"favourites_count":564,"statuses_count":2513,"created_at":"Sun Jan 29 22:54:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663019457179205636\/kdKi1mBt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663019457179205636\/kdKi1mBt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478119632\/1446535226","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MarenMorris","name":"MAREN MORRIS","id":21011215,"id_str":"21011215","indices":[0,12]},{"screen_name":"987fm","name":"987fm","id":27807739,"id_str":"27807739","indices":[75,81]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983658"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674238607360,"id_str":"663727674238607360","text":"\u0628\u0633\u0645 \u0627\u0644\u0644\u0647 \u0645\u0627\u0634\u0627\u0621 \u0627\u0644\u0644\u0647 https:\/\/t.co\/JOsI3nQmZV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130554665,"id_str":"4130554665","name":"\u0628\u064b\u062f\u064d\u0631 \u0623\u0651\u0644\u064e\u062d\u064b\u0628\u064b","screen_name":"aboabraik","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":23,"friends_count":127,"listed_count":0,"favourites_count":32,"statuses_count":12,"created_at":"Sat Nov 07 00:59:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663073395446255616\/37A_J_BQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663073395446255616\/37A_J_BQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130554665\/1446923990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727651534839808,"id_str":"663727651534839808","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyFFWoAAzOeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyFFWoAAzOeu.jpg","url":"https:\/\/t.co\/JOsI3nQmZV","display_url":"pic.twitter.com\/JOsI3nQmZV","expanded_url":"http:\/\/twitter.com\/aboabraik\/status\/663727674238607360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727651534839808,"id_str":"663727651534839808","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyFFWoAAzOeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyFFWoAAzOeu.jpg","url":"https:\/\/t.co\/JOsI3nQmZV","display_url":"pic.twitter.com\/JOsI3nQmZV","expanded_url":"http:\/\/twitter.com\/aboabraik\/status\/663727674238607360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079983659"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674263666688,"id_str":"663727674263666688","text":"Lowest Cost of Energy of Gas and Electric\nPA, IL, Washington DC, NY, NJ, MD.\nhttps:\/\/t.co\/Z4ATraCsT5~~) https:\/\/t.co\/tzZZothY1s","source":"\u003ca href=\"http:\/\/tweettakeover52.info\/index.php\" rel=\"nofollow\"\u003eMy Twitter Ap For wiland697\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38497549,"id_str":"38497549","name":"#William R Anderson","screen_name":"wiland697","location":"North Carolina ","url":"http:\/\/videocashconsole.com\/video\/48627712\/Introduction-To-Gatosk","description":"Actor by Trade, Retired USN Corpsman, Disabled Veteran Successful Marketer on Net - Over 18 years. \nhttps:\/\/t.co\/bkTwT1ldfl\nhttp:\/\/t.co\/omOykZiNJk","protected":false,"verified":false,"followers_count":1967,"friends_count":2257,"listed_count":15,"favourites_count":115,"statuses_count":2554,"created_at":"Thu May 07 19:27:40 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659864909484699648\/j0udpIMf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659864909484699648\/j0udpIMf.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609367612963856384\/T_e-2bM7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609367612963856384\/T_e-2bM7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38497549\/1446159872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z4ATraCsT5","expanded_url":"http:\/\/epiqhes.com\/joinmehereidtworks","display_url":"epiqhes.com\/joinmehereidtw\u2026","indices":[77,100]}],"user_mentions":[],"symbols":[],"media":[{"id":663727673814872067,"id_str":"663727673814872067","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzYFU8AMIJ-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzYFU8AMIJ-y.jpg","url":"https:\/\/t.co\/tzZZothY1s","display_url":"pic.twitter.com\/tzZZothY1s","expanded_url":"http:\/\/twitter.com\/wiland697\/status\/663727674263666688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727673814872067,"id_str":"663727673814872067","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzYFU8AMIJ-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzYFU8AMIJ-y.jpg","url":"https:\/\/t.co\/tzZZothY1s","display_url":"pic.twitter.com\/tzZZothY1s","expanded_url":"http:\/\/twitter.com\/wiland697\/status\/663727674263666688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983665"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674242699265,"id_str":"663727674242699265","text":"#\u6c7a\u95d8\u8005\u3084\u904a\u622f\u738b\u304c\u597d\u304d\u306a\u4eba\u304crt\u3057\u3066\u304f\u308c\u3066\u672a\u3060\u898b\u306c\u6c7a\u95d8\u8005\u3084\u904a\u622f\u738b\u304c\u597d\u304d\u306a\u4eba\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\n\n\u3068\u308a\u3042\u3048\u305a\u5f62\u306b\u306a\u3063\u305f\u30c0\u30a4\u30ca\u30df\u30b9\u30c8\u3002EM\u306b\u983c\u3063\u3066\u307e\u3059\u304c\u4e3b\u5f79\u306f\u30c0\u30a4\u30ca\u30df\u30b9\u30c8(\u221e\u306e\u7d20\u6750\u3068\u3057\u3066)\u3067\u3059\uff01 https:\/\/t.co\/eS8ZL4YWp1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013686994,"id_str":"4013686994","name":"\u307d\u3061 yp \u970a\u7363\u4f5c\u6210\u4e2d","screen_name":"pochi_yp","location":null,"url":null,"description":"\u904a\u622f\u738b\u57a2(\u4ed6\u306e\u3053\u3068\u8a71\u3055\u306a\u3044\u3068\u306f\u8a00\u3063\u3066\u306a\u3044)\n\u30af\u30ea\u30d5\u30a9\u3001\u7adc\u661f\u3001U.A.\u3001\u30c0\u30a4\u30ca\u30df\u30b9\u30c8\u3001\u30ce\u30a4\u30c9\u3001\u5e1detc.\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093\u3002\u7d61\u3093\u3067\u304f\u308c\u305f\u308a\u3057\u305f\u3089\u559c\u3073\u307e\u3059\u3002\u308a\u3093\u3071\u306a\u5927\u597d\u304d\u3067\u3059","protected":false,"verified":false,"followers_count":91,"friends_count":101,"listed_count":0,"favourites_count":195,"statuses_count":272,"created_at":"Sun Oct 25 13:24:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658274336864735232\/Icc0w_T4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658274336864735232\/Icc0w_T4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013686994\/1445780429","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6c7a\u95d8\u8005\u3084\u904a\u622f\u738b\u304c\u597d\u304d\u306a\u4eba\u304crt\u3057\u3066\u304f\u308c\u3066\u672a\u3060\u898b\u306c\u6c7a\u95d8\u8005\u3084\u904a\u622f\u738b\u304c\u597d\u304d\u306a\u4eba\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b","indices":[0,55]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727631662059520,"id_str":"663727631662059520","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw7DUEAA6lyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw7DUEAA6lyN.jpg","url":"https:\/\/t.co\/eS8ZL4YWp1","display_url":"pic.twitter.com\/eS8ZL4YWp1","expanded_url":"http:\/\/twitter.com\/pochi_yp\/status\/663727674242699265\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727631662059520,"id_str":"663727631662059520","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw7DUEAA6lyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw7DUEAA6lyN.jpg","url":"https:\/\/t.co\/eS8ZL4YWp1","display_url":"pic.twitter.com\/eS8ZL4YWp1","expanded_url":"http:\/\/twitter.com\/pochi_yp\/status\/663727674242699265\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727640247832577,"id_str":"663727640247832577","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxbCUkAE44ae.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxbCUkAE44ae.jpg","url":"https:\/\/t.co\/eS8ZL4YWp1","display_url":"pic.twitter.com\/eS8ZL4YWp1","expanded_url":"http:\/\/twitter.com\/pochi_yp\/status\/663727674242699265\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727665514352641,"id_str":"663727665514352641","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIy5KVEAElG-Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIy5KVEAElG-Y.jpg","url":"https:\/\/t.co\/eS8ZL4YWp1","display_url":"pic.twitter.com\/eS8ZL4YWp1","expanded_url":"http:\/\/twitter.com\/pochi_yp\/status\/663727674242699265\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079983660"} +{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674251079681,"id_str":"663727674251079681","text":"Lunes https:\/\/t.co\/YuTkMOViuu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317972514,"id_str":"317972514","name":"infu","screen_name":"giannanucci","location":"Agustina Russell","url":null,"description":"|Cook and Effy| \u007bTloml @Ellie_w3lls\u007d Maria Luna \u2728Infus, Gabbanas\u2728 Destiny. RA261013 181214","protected":false,"verified":false,"followers_count":2723,"friends_count":2149,"listed_count":18,"favourites_count":8814,"statuses_count":48820,"created_at":"Wed Jun 15 19:23:34 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574006463070257154\/zRYVZc_c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574006463070257154\/zRYVZc_c.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"784BB3","profile_text_color":"5910AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723189898489857\/JyicOoSw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723189898489857\/JyicOoSw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317972514\/1445295279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727666458152961,"id_str":"663727666458152961","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIy8rWUAERXhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIy8rWUAERXhD.jpg","url":"https:\/\/t.co\/YuTkMOViuu","display_url":"pic.twitter.com\/YuTkMOViuu","expanded_url":"http:\/\/twitter.com\/giannanucci\/status\/663727674251079681\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":634,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727666458152961,"id_str":"663727666458152961","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIy8rWUAERXhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIy8rWUAERXhD.jpg","url":"https:\/\/t.co\/YuTkMOViuu","display_url":"pic.twitter.com\/YuTkMOViuu","expanded_url":"http:\/\/twitter.com\/giannanucci\/status\/663727674251079681\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":634,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079983662"} +{"delete":{"status":{"id":663727644869918721,"id_str":"663727644869918721","user_id":949274250,"user_id_str":"949274250"},"timestamp_ms":"1447079984240"}} +{"delete":{"status":{"id":539918510093111297,"id_str":"539918510093111297","user_id":1333266386,"user_id_str":"1333266386"},"timestamp_ms":"1447079984519"}} +{"delete":{"status":{"id":661353576560730112,"id_str":"661353576560730112","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079984560"}} +{"delete":{"status":{"id":663723249260503040,"id_str":"663723249260503040","user_id":2761121093,"user_id_str":"2761121093"},"timestamp_ms":"1447079984558"}} +{"delete":{"status":{"id":661353563973660672,"id_str":"661353563973660672","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079984553"}} +{"delete":{"status":{"id":663727619725103105,"id_str":"663727619725103105","user_id":1937532032,"user_id_str":"1937532032"},"timestamp_ms":"1447079984615"}} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445518848,"id_str":"663727678445518848","text":"RT @dudschampz: @YoungWaldirson \ud83d\udd95\ud83c\udffc\ud83d\udd95\ud83c\udffc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":371996394,"id_str":"371996394","name":"WCarlos","screen_name":"YoungWaldirson","location":"Rio de Mouro","url":"http:\/\/Instagram.com\/walsjc","description":"18y","protected":false,"verified":false,"followers_count":137,"friends_count":129,"listed_count":0,"favourites_count":1221,"statuses_count":2692,"created_at":"Sun Sep 11 22:45:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"062733","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662384503659356160\/BKwtgaYx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662384503659356160\/BKwtgaYx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/371996394\/1418151041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727646468128769,"id_str":"663727646468128769","text":"@YoungWaldirson \ud83d\udd95\ud83c\udffc\ud83d\udd95\ud83c\udffc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727579510218753,"in_reply_to_status_id_str":"663727579510218753","in_reply_to_user_id":371996394,"in_reply_to_user_id_str":"371996394","in_reply_to_screen_name":"YoungWaldirson","user":{"id":157727585,"id_str":"157727585","name":"madu","screen_name":"dudschampz","location":"Amadora, Portugal","url":null,"description":null,"protected":false,"verified":false,"followers_count":222,"friends_count":220,"listed_count":0,"favourites_count":5018,"statuses_count":3156,"created_at":"Sun Jun 20 17:50:02 +0000 2010","utc_offset":0,"time_zone":"Lisbon","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661683145004220416\/gH2QBD-w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661683145004220416\/gH2QBD-w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157727585\/1446125534","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YoungWaldirson","name":"WCarlos","id":371996394,"id_str":"371996394","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dudschampz","name":"madu","id":157727585,"id_str":"157727585","indices":[3,14]},{"screen_name":"YoungWaldirson","name":"WCarlos","id":371996394,"id_str":"371996394","indices":[16,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445502464,"id_str":"663727678445502464","text":"RT @princess1717171: \u0427\u0442\u043e \u044d\u0442\u0438 \u0444\u0430\u043d\u0430\u0442\u0438\u043a\u0438 \u0411 \u0441\u0434\u0435\u043b\u0430\u044e\u0442 \u0434\u0430\u043b\u044c\u0448\u0435? https:\/\/t.co\/tyHHvLvL6m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3331133121,"id_str":"3331133121","name":"\u041b\u0435\u0439\u043d\u0441\u0438","screen_name":"zelnsklsvt01","location":"\u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440, \u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439","url":"https:\/\/instagram.com\/leynse\/","description":"\u30301D \u3030Larry \u3030LittleMix\n\u3030PLL \u3030Zquad \u3030Shameless \u3030Gallavich\n\u2764\u0411\u0435\u0437\u0443\u043c\u043d\u043e \u043b\u044e\u0431\u043b\u044e-@magic_in_city @beautiful_sun @Happy_slon_ \u0438 @queenhoran18\u2764","protected":false,"verified":false,"followers_count":1743,"friends_count":2052,"listed_count":2,"favourites_count":319,"statuses_count":9575,"created_at":"Wed Jun 17 10:23:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718191483518976\/vkkPeyAO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718191483518976\/vkkPeyAO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3331133121\/1447077720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:55 +0000 2015","id":663727471389483008,"id_str":"663727471389483008","text":"\u0427\u0442\u043e \u044d\u0442\u0438 \u0444\u0430\u043d\u0430\u0442\u0438\u043a\u0438 \u0411 \u0441\u0434\u0435\u043b\u0430\u044e\u0442 \u0434\u0430\u043b\u044c\u0448\u0435? https:\/\/t.co\/tyHHvLvL6m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3041003811,"id_str":"3041003811","name":"\u2727 harry's princess \u2727","screen_name":"princess1717171","location":null,"url":null,"description":"\u02d7\u02cf\u02cb\u2606 it just kinda happened \u2606\u02ce\u02ca\u02d7","protected":false,"verified":false,"followers_count":13414,"friends_count":1144,"listed_count":50,"favourites_count":759,"statuses_count":42495,"created_at":"Mon Feb 16 16:49:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663662193930555392\/r9LIMA7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663662193930555392\/r9LIMA7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3041003811\/1447064624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727463160221696,"id_str":"663727463160221696","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","url":"https:\/\/t.co\/tyHHvLvL6m","display_url":"pic.twitter.com\/tyHHvLvL6m","expanded_url":"http:\/\/twitter.com\/princess1717171\/status\/663727471389483008\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":590,"resize":"fit"},"medium":{"w":519,"h":590,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727463160221696,"id_str":"663727463160221696","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","url":"https:\/\/t.co\/tyHHvLvL6m","display_url":"pic.twitter.com\/tyHHvLvL6m","expanded_url":"http:\/\/twitter.com\/princess1717171\/status\/663727471389483008\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":590,"resize":"fit"},"medium":{"w":519,"h":590,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"princess1717171","name":"\u2727 harry's princess \u2727","id":3041003811,"id_str":"3041003811","indices":[3,19]}],"symbols":[],"media":[{"id":663727463160221696,"id_str":"663727463160221696","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","url":"https:\/\/t.co\/tyHHvLvL6m","display_url":"pic.twitter.com\/tyHHvLvL6m","expanded_url":"http:\/\/twitter.com\/princess1717171\/status\/663727471389483008\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":590,"resize":"fit"},"medium":{"w":519,"h":590,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"}},"source_status_id":663727471389483008,"source_status_id_str":"663727471389483008","source_user_id":3041003811,"source_user_id_str":"3041003811"}]},"extended_entities":{"media":[{"id":663727463160221696,"id_str":"663727463160221696","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInHVWEAA2q2W.jpg","url":"https:\/\/t.co\/tyHHvLvL6m","display_url":"pic.twitter.com\/tyHHvLvL6m","expanded_url":"http:\/\/twitter.com\/princess1717171\/status\/663727471389483008\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":590,"resize":"fit"},"medium":{"w":519,"h":590,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"}},"source_status_id":663727471389483008,"source_status_id_str":"663727471389483008","source_user_id":3041003811,"source_user_id_str":"3041003811"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424530944,"id_str":"663727678424530944","text":"RT @NoSoyMickey: No es por presumir pero creo que tengo los mejores abrazos del mundo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374766511,"id_str":"374766511","name":"Johnbus","screen_name":"Johnbusvi","location":"Cucuta","url":null,"description":"Odontologo periodoncista y rehabilitador oral, amante y estudioso del futbol y la politica, nba frustrado!!!","protected":false,"verified":false,"followers_count":188,"friends_count":405,"listed_count":6,"favourites_count":338,"statuses_count":4859,"created_at":"Fri Sep 16 22:20:10 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649348194493669376\/EBsytgHp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649348194493669376\/EBsytgHp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374766511\/1363462386","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 01:29:14 +0000 2015","id":655193823014850560,"id_str":"655193823014850560","text":"No es por presumir pero creo que tengo los mejores abrazos del mundo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59044608,"id_str":"59044608","name":"Miguel Oca\u00f1a","screen_name":"NoSoyMickey","location":"Tabasco, M\u00e9xico.","url":"http:\/\/www.instagram.com\/nosoymickey","description":"No s\u00e9 como vivir, solo estoy improvisando. Activa mis notificaciones.\nInsta\/Vine\/Snap: NoSoyMickey\nPublicidad\/Negocios: nosoymickey@gmail.com #Mickeylovers\u2764\ufe0f","protected":false,"verified":false,"followers_count":108570,"friends_count":473,"listed_count":391,"favourites_count":26296,"statuses_count":22839,"created_at":"Wed Jul 22 05:16:01 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/709413563\/26e0178febb50c811dbbd341c258096a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/709413563\/26e0178febb50c811dbbd341c258096a.jpeg","profile_background_tile":true,"profile_link_color":"0E73AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"3265EA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654490937054236672\/pjBaL3KS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654490937054236672\/pjBaL3KS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59044608\/1445574641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"a0536fb1dd01b8d5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a0536fb1dd01b8d5.json","place_type":"city","name":"Centro","full_name":"Centro, Tabasco","country_code":"MX","country":"M\u00e9xico","bounding_box":{"type":"Polygon","coordinates":[[[-93.248341,17.703500],[-93.248341,18.340419],[-92.584658,18.340419],[-92.584658,17.703500]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":598,"favorite_count":419,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NoSoyMickey","name":"Miguel Oca\u00f1a","id":59044608,"id_str":"59044608","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424526848,"id_str":"663727678424526848","text":"\u041a\u0430\u0440\u0442\u0435\u0440: \u0421\u0428\u0410 \u0433\u043e\u0442\u043e\u0432\u044b \u043a \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f\u043c \u043f\u0440\u043e\u0442\u0438\u0432 \"\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0430\" \u0432 \u0421\u0438\u0440\u0438\u0438","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1266200185,"id_str":"1266200185","name":"McnairAddison","screen_name":"McnairAddison","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":136,"friends_count":28,"listed_count":10,"favourites_count":0,"statuses_count":60604,"created_at":"Thu Mar 14 04:40:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3674754294\/a7978e9b3380446cba5e15a91b80e2cf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3674754294\/a7978e9b3380446cba5e15a91b80e2cf_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453882880,"id_str":"663727678453882880","text":"RT @brysontiller: watch out for these fuckboys tho. they everywhere.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412596122,"id_str":"412596122","name":"D\u00e6l\u00ffn","screen_name":"DaelynJordan","location":"D(M)V","url":"http:\/\/pineapplepillzz.tumblr.com","description":"love me or hate me still an obsession ;)","protected":false,"verified":false,"followers_count":723,"friends_count":622,"listed_count":1,"favourites_count":6762,"statuses_count":34288,"created_at":"Mon Nov 14 22:38:07 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000025295057\/c6e051bfbd9682e0f5323a6bb41d1850.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000025295057\/c6e051bfbd9682e0f5323a6bb41d1850.png","profile_background_tile":true,"profile_link_color":"351152","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D569FF","profile_text_color":"890DA8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647662387588259841\/HN3tvW6J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647662387588259841\/HN3tvW6J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412596122\/1416201434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:43:22 +0000 2015","id":663230307332591616,"id_str":"663230307332591616","text":"watch out for these fuckboys tho. they everywhere.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76131466,"id_str":"76131466","name":"tiller","screen_name":"brysontiller","location":"louisville","url":"http:\/\/www.trapsoul.com","description":"T R A P S O U L","protected":false,"verified":true,"followers_count":219515,"friends_count":391,"listed_count":185,"favourites_count":14726,"statuses_count":5506,"created_at":"Mon Sep 21 20:21:22 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596493176652730369\/8GWPT1tz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596493176652730369\/8GWPT1tz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76131466\/1431133950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17013,"favorite_count":14667,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brysontiller","name":"tiller","id":76131466,"id_str":"76131466","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984664"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445498368,"id_str":"663727678445498368","text":"RT @wef: These are the top 5 most liveable #cities https:\/\/t.co\/gzMmSHQIhN https:\/\/t.co\/nPvBJoRtXE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487564934,"id_str":"487564934","name":"Andrea Menna","screen_name":"Menna_Andrea","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":72,"friends_count":186,"listed_count":4,"favourites_count":4,"statuses_count":649,"created_at":"Thu Feb 09 14:08:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578548690773778432\/cpYa8Ruh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578548690773778432\/cpYa8Ruh_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:23 +0000 2015","id":663725323297624064,"id_str":"663725323297624064","text":"These are the top 5 most liveable #cities https:\/\/t.co\/gzMmSHQIhN https:\/\/t.co\/nPvBJoRtXE","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5120691,"id_str":"5120691","name":"World Economic Forum","screen_name":"wef","location":"Geneva, Switzerland","url":"http:\/\/wef.ch\/agenda","description":"The international organization for public private cooperation. Follow us for research, insight and analysis on global issues.","protected":false,"verified":true,"followers_count":2698043,"friends_count":265,"listed_count":17130,"favourites_count":1845,"statuses_count":27360,"created_at":"Wed Apr 18 14:00:19 +0000 2007","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459256738458267648\/NQmn-I-R.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459256738458267648\/NQmn-I-R.png","profile_background_tile":false,"profile_link_color":"419FCF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565498192171507712\/r2Hb2gvX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565498192171507712\/r2Hb2gvX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5120691\/1441680349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":13,"entities":{"hashtags":[{"text":"cities","indices":[34,41]}],"urls":[{"url":"https:\/\/t.co\/gzMmSHQIhN","expanded_url":"http:\/\/wef.ch\/1WIrXwf","display_url":"wef.ch\/1WIrXwf","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663725323138256898,"id_str":"663725323138256898","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","url":"https:\/\/t.co\/nPvBJoRtXE","display_url":"pic.twitter.com\/nPvBJoRtXE","expanded_url":"http:\/\/twitter.com\/wef\/status\/663725323297624064\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":861,"resize":"fit"},"large":{"w":625,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725323138256898,"id_str":"663725323138256898","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","url":"https:\/\/t.co\/nPvBJoRtXE","display_url":"pic.twitter.com\/nPvBJoRtXE","expanded_url":"http:\/\/twitter.com\/wef\/status\/663725323297624064\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":861,"resize":"fit"},"large":{"w":625,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":487,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cities","indices":[43,50]}],"urls":[{"url":"https:\/\/t.co\/gzMmSHQIhN","expanded_url":"http:\/\/wef.ch\/1WIrXwf","display_url":"wef.ch\/1WIrXwf","indices":[51,74]}],"user_mentions":[{"screen_name":"wef","name":"World Economic Forum","id":5120691,"id_str":"5120691","indices":[3,7]}],"symbols":[],"media":[{"id":663725323138256898,"id_str":"663725323138256898","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","url":"https:\/\/t.co\/nPvBJoRtXE","display_url":"pic.twitter.com\/nPvBJoRtXE","expanded_url":"http:\/\/twitter.com\/wef\/status\/663725323297624064\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":861,"resize":"fit"},"large":{"w":625,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":487,"resize":"fit"}},"source_status_id":663725323297624064,"source_status_id_str":"663725323297624064","source_user_id":5120691,"source_user_id_str":"5120691"}]},"extended_entities":{"media":[{"id":663725323138256898,"id_str":"663725323138256898","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqjIWUAIksgr.png","url":"https:\/\/t.co\/nPvBJoRtXE","display_url":"pic.twitter.com\/nPvBJoRtXE","expanded_url":"http:\/\/twitter.com\/wef\/status\/663725323297624064\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":861,"resize":"fit"},"large":{"w":625,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":487,"resize":"fit"}},"source_status_id":663725323297624064,"source_status_id_str":"663725323297624064","source_user_id":5120691,"source_user_id_str":"5120691"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445461504,"id_str":"663727678445461504","text":"RT @VPicV: \u0627\u0644\u0635\u0648\u0631\u0629 \u0644\u0644\u0645\u0635\u0648\u0631 \u0627\u0644\u0641\u0631\u0646\u0633\u064a \u0623\u0644\u0628\u0631\u062a \u062e\u0627\u0646 1913\u0645\n\u0644\u0627\u0645\u0631\u0627\u0629 \u0645\u0646 \u0645\u0646\u063a\u0648\u0644\u064a\u0627 \u062d\u0643\u0645 \u0639\u0644\u064a\u0647\u0627 \u0628\u0627\u0644\u0645\u0648\u062a \u062c\u0648\u0639\u0627 \u0648\u0627\u0648\u062f\u0639\u062a \u0641\u064a \u0635\u062d\u0631\u0627\u0621 \u0628\u0642\u0641\u0635 \u062e\u0634\u0628\u064a \u0644\u064a\u0643\u0648\u0646 \u0642\u0628\u0631\u0647\u0627! https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415468357,"id_str":"415468357","name":"Queen\u060c","screen_name":"Fiva_k","location":null,"url":"http:\/\/quran.ksu.edu.sa\/m.php?l=ar&aya=3_190#aya=3_190","description":"(\u0627\u0633\u062a\u063a\u0641\u0631\u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 ) #\u0646\u0642\u0637\u0647","protected":false,"verified":false,"followers_count":1211,"friends_count":290,"listed_count":4,"favourites_count":1675,"statuses_count":42099,"created_at":"Fri Nov 18 11:23:04 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646009408267259904\/NvwGUTSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646009408267259904\/NvwGUTSH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415468357\/1444434894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 20:38:03 +0000 2015","id":660556360216682500,"id_str":"660556360216682500","text":"\u0627\u0644\u0635\u0648\u0631\u0629 \u0644\u0644\u0645\u0635\u0648\u0631 \u0627\u0644\u0641\u0631\u0646\u0633\u064a \u0623\u0644\u0628\u0631\u062a \u062e\u0627\u0646 1913\u0645\n\u0644\u0627\u0645\u0631\u0627\u0629 \u0645\u0646 \u0645\u0646\u063a\u0648\u0644\u064a\u0627 \u062d\u0643\u0645 \u0639\u0644\u064a\u0647\u0627 \u0628\u0627\u0644\u0645\u0648\u062a \u062c\u0648\u0639\u0627 \u0648\u0627\u0648\u062f\u0639\u062a \u0641\u064a \u0635\u062d\u0631\u0627\u0621 \u0628\u0642\u0641\u0635 \u062e\u0634\u0628\u064a \u0644\u064a\u0643\u0648\u0646 \u0642\u0628\u0631\u0647\u0627! https:\/\/t.co\/FtmRqUJaR7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2903360450,"id_str":"2903360450","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","screen_name":"VPicV","location":"VPicV@outlook.com","url":"http:\/\/Instagram.com\/VPicV","description":"\u0644\u0623\u0646 \u0627\u0644\u0635\u0648\u0631\u0629 \u062a\u062e\u062a\u0632\u0644 \u0627\u0644\u0641 \u0643\u0644\u0645\u0629\u060c \u0633\u0646\u0642\u062f\u0645 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0629 \u0627\u0644\u063a\u0631\u064a\u0628\u0629 \u0648 \u0627\u0644\u0639\u0644\u0645\u064a\u0629 \u0648 \u0627\u0644\u062b\u0642\u0627\u0641\u064a\u0629 \u0645\u0642\u0631\u0648\u0646\u0629 \u0628\u0627 \u0627\u0644\u0635\u0648\u0631 #\u0645\u0639\u0644\u0648\u0645\u0627\u062a #\u063a\u0631\u0627\u0626\u0628 #\u0635\u0648\u0631 #\u0627\u062e\u0628\u0627\u0631 #\u0639\u0627\u062f\u0627\u062a_\u0627\u0644\u0634\u0639\u0648\u0628 \u0648\u0643\u0644 \u0645\u0627\u064a\u064f\u062b\u0631\u064a \u0645\u0639\u0644\u0648\u0645\u0627\u062a\u0643 \u0633\u062a\u062c\u062f\u0647 \u0647\u0646\u0627.","protected":false,"verified":false,"followers_count":314927,"friends_count":0,"listed_count":585,"favourites_count":1765,"statuses_count":2939,"created_at":"Tue Nov 18 07:11:56 +0000 2014","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903360450\/1441201651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":277,"favorite_count":120,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660556329451429888,"id_str":"660556329451429888","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","url":"https:\/\/t.co\/FtmRqUJaR7","display_url":"pic.twitter.com\/FtmRqUJaR7","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/660556360216682500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":586,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660556329451429888,"id_str":"660556329451429888","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","url":"https:\/\/t.co\/FtmRqUJaR7","display_url":"pic.twitter.com\/FtmRqUJaR7","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/660556360216682500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":586,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VPicV","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","id":2903360450,"id_str":"2903360450","indices":[3,9]}],"symbols":[],"media":[{"id":660556329451429888,"id_str":"660556329451429888","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","url":"https:\/\/t.co\/FtmRqUJaR7","display_url":"pic.twitter.com\/FtmRqUJaR7","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/660556360216682500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":586,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}},"source_status_id":660556360216682500,"source_status_id_str":"660556360216682500","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"extended_entities":{"media":[{"id":660556329451429888,"id_str":"660556329451429888","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrEe1sWoAAp73J.jpg","url":"https:\/\/t.co\/FtmRqUJaR7","display_url":"pic.twitter.com\/FtmRqUJaR7","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/660556360216682500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":586,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}},"source_status_id":660556360216682500,"source_status_id_str":"660556360216682500","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678437109760,"id_str":"663727678437109760","text":"RT @MonarchMusicMed: Google News UK: SHOCK WARNING: Earth's temperatures now rising towards 'dangerous' levels - Daily St... https:\/\/t.co\/Z\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":928958737,"id_str":"928958737","name":"dubBlasta","screen_name":"dubblasta","location":"Cape & Islands","url":"https:\/\/twitter.com\/dubBlasta","description":"#PsyDub","protected":false,"verified":false,"followers_count":33114,"friends_count":1594,"listed_count":439,"favourites_count":87121,"statuses_count":118838,"created_at":"Tue Nov 06 03:54:57 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514027411025838081\/IESlToG7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514027411025838081\/IESlToG7.png","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"009999","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631340735879585792\/c3jaD6oP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631340735879585792\/c3jaD6oP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/928958737\/1447040471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:52 +0000 2015","id":663727461184630784,"id_str":"663727461184630784","text":"Google News UK: SHOCK WARNING: Earth's temperatures now rising towards 'dangerous' levels - Daily St... https:\/\/t.co\/Z4rnL1HLZ4 #News #UK","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2201850816,"id_str":"2201850816","name":"Monarch Music Media","screen_name":"MonarchMusicMed","location":"Worldwide","url":"http:\/\/www.monarchmusicmedia.blogspot.com","description":"Promotion for #Musicians #Artists #Writers #Developers\nRetail of #Music #Books #Phones #Games @DJMonarch http:\/\/facebook.com\/monarchmusicmedia #EADT #MGWV","protected":false,"verified":false,"followers_count":11851,"friends_count":11853,"listed_count":940,"favourites_count":11445,"statuses_count":123173,"created_at":"Mon Nov 18 19:29:14 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000758309553\/8afbfacba69e5508e9f66d9c4d2185a8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000758309553\/8afbfacba69e5508e9f66d9c4d2185a8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201850816\/1416701047","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"News","indices":[128,133]},{"text":"UK","indices":[134,137]}],"urls":[{"url":"https:\/\/t.co\/Z4rnL1HLZ4","expanded_url":"http:\/\/bit.ly\/1HCy3lr","display_url":"bit.ly\/1HCy3lr","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"News","indices":[139,140]},{"text":"UK","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/Z4rnL1HLZ4","expanded_url":"http:\/\/bit.ly\/1HCy3lr","display_url":"bit.ly\/1HCy3lr","indices":[125,140]}],"user_mentions":[{"screen_name":"MonarchMusicMed","name":"Monarch Music Media","id":2201850816,"id_str":"2201850816","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984660"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424510464,"id_str":"663727678424510464","text":"RT @ActingTheGom: Next they\u2019ll be giving out about the increase in yacht varnish in the locality #Liveline","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71858239,"id_str":"71858239","name":"Barbara Smyth","screen_name":"BarbaraMSmyth","location":"Longford, Ireland","url":"http:\/\/www.barbarasmyth.ie","description":"Community activist. Indepedent4Change Longford\/Westmeath running on #Right2Change platform #GE16. Fighting for Ovarian Cancer screening. https:\/\/t.co\/nGsbRrptr0","protected":false,"verified":false,"followers_count":2618,"friends_count":2335,"listed_count":34,"favourites_count":4158,"statuses_count":51100,"created_at":"Sat Sep 05 18:11:55 +0000 2009","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476811352892141568\/QqrixwW8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476811352892141568\/QqrixwW8.jpeg","profile_background_tile":false,"profile_link_color":"190BDE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661003961181319169\/dvSOTlsU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661003961181319169\/dvSOTlsU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71858239\/1446481990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:34 +0000 2015","id":663727382382161921,"id_str":"663727382382161921","text":"Next they\u2019ll be giving out about the increase in yacht varnish in the locality #Liveline","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368869405,"id_str":"368869405","name":"Acting The Gom","screen_name":"ActingTheGom","location":null,"url":null,"description":"House Music - Whiskey - Beer - Technology - Irish Politics - Shooty Games.---Living well is its own reward","protected":false,"verified":false,"followers_count":442,"friends_count":1019,"listed_count":7,"favourites_count":1188,"statuses_count":5707,"created_at":"Tue Sep 06 11:09:44 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651314523274477568\/5nX-A3W2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651314523274477568\/5nX-A3W2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368869405\/1404462540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"Liveline","indices":[79,88]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Liveline","indices":[97,106]}],"urls":[],"user_mentions":[{"screen_name":"ActingTheGom","name":"Acting The Gom","id":368869405,"id_str":"368869405","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424412160,"id_str":"663727678424412160","text":"RT @sparky_tsukushi: \u304a\u3084\u3059\u307f\u306a\u3055\u3044(*v.v)\u3002\u3002\u3002\n\u3044\u3044\u5922\u307f\u3088\u3046\u306d|\u03c9`)_\uff81\uff97\uff98\uff6f\uff6f \n\u5e83\u5cf6\u306e\u30db\u30c6\u30eb\u306e\u52d5\u753b\u2193 https:\/\/t.co\/s5GQWQJQmo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3361229714,"id_str":"3361229714","name":"\u7740\u3050\u308b\u307f2\u53f7","screen_name":"abcd_1120","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":26,"listed_count":0,"favourites_count":9,"statuses_count":156,"created_at":"Thu Aug 27 16:27:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:57 +0000 2015","id":663724207537152000,"id_str":"663724207537152000","text":"\u304a\u3084\u3059\u307f\u306a\u3055\u3044(*v.v)\u3002\u3002\u3002\n\u3044\u3044\u5922\u307f\u3088\u3046\u306d|\u03c9`)_\uff81\uff97\uff98\uff6f\uff6f \n\u5e83\u5cf6\u306e\u30db\u30c6\u30eb\u306e\u52d5\u753b\u2193 https:\/\/t.co\/s5GQWQJQmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876975906,"id_str":"2876975906","name":"\u5bae\u6728\u3064\u304f\u3057@SparkyShadow","screen_name":"sparky_tsukushi","location":"\u65e5\u672c \u611b\u77e5\u770c","url":"http:\/\/artist-support-planning.com\/sparkyshadow\/","description":"Sparky Shadow2014.12.28\u59cb\u52d5\uff01JK2\u2661\u8a95\u751f\u65e55\u67083\u65e5\u2661\u5143\u6c17100\u500d\u3042\u3093\u307d\u3093\u305f\u3093\u2661\u30b5\u30d6\u30ea\u30fc\u30c0\u30fc\u2661\u6b21\u306e\u30e9\u30a4\u30d611\u670811\u65e5\u5b9a\u671f\u30e9\u30a4\u30d6\u2661\u98df\u3079\u7269\u5927\u597d\u304d\u2661\u30ea\u30f3\u30b4\u30b8\u30e5\u30fc\u30b9&\u30ab\u30d5\u30a7\u30aa\u30ec\u2661\u30a2\u30cb\u30e1\u5927\u597d\u304d\u2661\u5bae\u6728\u753b\u4f2f","protected":false,"verified":false,"followers_count":824,"friends_count":742,"listed_count":16,"favourites_count":349,"statuses_count":1848,"created_at":"Sat Oct 25 15:31:25 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663482999426564096\/AE7gFUwV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663482999426564096\/AE7gFUwV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876975906\/1430624935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724182098739200,"id_str":"663724182098739200","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","url":"https:\/\/t.co\/s5GQWQJQmo","display_url":"pic.twitter.com\/s5GQWQJQmo","expanded_url":"http:\/\/twitter.com\/sparky_tsukushi\/status\/663724207537152000\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":636,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724182098739200,"id_str":"663724182098739200","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","url":"https:\/\/t.co\/s5GQWQJQmo","display_url":"pic.twitter.com\/s5GQWQJQmo","expanded_url":"http:\/\/twitter.com\/sparky_tsukushi\/status\/663724207537152000\/video\/1","type":"video","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":636,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":453,"resize":"fit"}},"video_info":{"aspect_ratio":[53,40],"duration_millis":3133,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/238x180\/JBSoY_EUYR9pVfz4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/pl\/QWB7TizXw5sSV9e9.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/476x360\/VSDKwSOPMtwEW4pp.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/476x360\/VSDKwSOPMtwEW4pp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/pl\/QWB7TizXw5sSV9e9.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sparky_tsukushi","name":"\u5bae\u6728\u3064\u304f\u3057@SparkyShadow","id":2876975906,"id_str":"2876975906","indices":[3,19]}],"symbols":[],"media":[{"id":663724182098739200,"id_str":"663724182098739200","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","url":"https:\/\/t.co\/s5GQWQJQmo","display_url":"pic.twitter.com\/s5GQWQJQmo","expanded_url":"http:\/\/twitter.com\/sparky_tsukushi\/status\/663724207537152000\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":636,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":453,"resize":"fit"}},"source_status_id":663724207537152000,"source_status_id_str":"663724207537152000","source_user_id":2876975906,"source_user_id_str":"2876975906"}]},"extended_entities":{"media":[{"id":663724182098739200,"id_str":"663724182098739200","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724182098739200\/pu\/img\/DVpp2XIVMvHxLI-9.jpg","url":"https:\/\/t.co\/s5GQWQJQmo","display_url":"pic.twitter.com\/s5GQWQJQmo","expanded_url":"http:\/\/twitter.com\/sparky_tsukushi\/status\/663724207537152000\/video\/1","type":"video","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":636,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":453,"resize":"fit"}},"source_status_id":663724207537152000,"source_status_id_str":"663724207537152000","source_user_id":2876975906,"source_user_id_str":"2876975906","video_info":{"aspect_ratio":[53,40],"duration_millis":3133,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/238x180\/JBSoY_EUYR9pVfz4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/pl\/QWB7TizXw5sSV9e9.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/476x360\/VSDKwSOPMtwEW4pp.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/vid\/476x360\/VSDKwSOPMtwEW4pp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724182098739200\/pu\/pl\/QWB7TizXw5sSV9e9.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424350720,"id_str":"663727678424350720","text":"\u305d\u3046\u3044\u3048\u3070\u3001\u30de\u30c3\u30c9\u30de\u30c3\u30af\u30b9:FR\u306f\u7d50\u5c40\u8a085\u56de\u5287\u5834\u3067\u89b3\u307e\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197655641,"id_str":"2197655641","name":"\u3042\u304b\u308a@\u30b8\u30a7\u30c3\u30bf\u30fc\u30baBD\u5316\u5b09\u3057\u3044","screen_name":"akarics00","location":null,"url":null,"description":"\u30b8\u30e3\u30f3\u30eb\u3082\u30ad\u30e3\u30e9\u3082CP\u3082\u96d1\u591a\u306b\u545f\u304d\u307e\u3059\u3002\u6210\u4eba\u6e08\u8150\u3002\u30b8\u30e7\u30b8\u30e7\u3068\u30d0\u30aa\u30fc\u4ed6\u8352\u6728\u5148\u751f\u4f5c\u54c1\u30e1\u30a4\u30f3\u3002\u73fe\u5728\u306f\u9032\u6483\u304c\u591a\u3081\u3002\u30b8\u30e3\u30f3\uff08CP\u306f\u4e3b\u306b676\u300165\u300169\uff09\u3068\u30cf\u30f3\u30b8\u3055\u3093\u840c\u3048\u3002\u30d2\u30b9\u30e6\u30df\u30d2\u30b9\u3001\u30a6\u30ea\u30b1\u30cb\u3001\u30a8\u30ec\u30df\u30ab\u3001\u5de8\u30a8\u30ec\u95a2\u9023\u4ed6\u597d\u304dCP\u305f\u304f\u3055\u3093\u3002\u795d\u30b8\u30a7\u30c3\u30bf\u30fc\u30baBD\u5316\uff01 \u304a\u304b\u3048\u308a\u3001\u5144\u3061\u3083\u3093\u3002","protected":false,"verified":false,"followers_count":26,"friends_count":38,"listed_count":0,"favourites_count":466,"statuses_count":2109,"created_at":"Sat Nov 16 12:28:08 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"05B088","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551790480535465985\/i4dco4Tg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551790480535465985\/i4dco4Tg_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441324548,"id_str":"663727678441324548","text":"RT @JuanBernardoL: @MaximAccion35AP F E L I C I D A D E S B U C A Y por sus 21 a\u00f1os de cantonizaci\u00f3n @marcelaguinaga @apguayas https:\/\/t\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3828666436,"id_str":"3828666436","name":"pedro andres","screen_name":"andres22213","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":10,"statuses_count":763,"created_at":"Thu Oct 01 00:02:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:57:03 +0000 2015","id":663716935020990465,"id_str":"663716935020990465","text":"@MaximAccion35AP F E L I C I D A D E S B U C A Y por sus 21 a\u00f1os de cantonizaci\u00f3n @marcelaguinaga @apguayas https:\/\/t.co\/R1okW411jB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2847429580,"in_reply_to_user_id_str":"2847429580","in_reply_to_screen_name":"MaximAccion35AP","user":{"id":244669454,"id_str":"244669454","name":"Juan Bernardo Lucero","screen_name":"JuanBernardoL","location":"Guayaquil - Ecuador","url":"http:\/\/www.facebook.com\/julusu","description":"Comunicador, Community Manager, J\u00f3ven empresario guayaquile\u00f1o, Coord.De Comunicaci\u00f3n de @MaximAccion35AP","protected":false,"verified":false,"followers_count":621,"friends_count":937,"listed_count":4,"favourites_count":1344,"statuses_count":3744,"created_at":"Sat Jan 29 21:19:34 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244669454\/1436761479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[0,16]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[85,100]},{"screen_name":"apguayas","name":"AP GUAYAS","id":2958729875,"id_str":"2958729875","indices":[101,110]}],"symbols":[],"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JuanBernardoL","name":"Juan Bernardo Lucero","id":244669454,"id_str":"244669454","indices":[3,17]},{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[19,35]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[104,119]},{"screen_name":"apguayas","name":"AP GUAYAS","id":2958729875,"id_str":"2958729875","indices":[120,129]}],"symbols":[],"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663716935020990465,"source_status_id_str":"663716935020990465","source_user_id":244669454,"source_user_id_str":"244669454"}]},"extended_entities":{"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663716935020990465,"source_status_id_str":"663716935020990465","source_user_id":244669454,"source_user_id_str":"244669454"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445383680,"id_str":"663727678445383680","text":"@puramo_ryota \u3053\u308c\u30012013\u5e74\u306e\u30b3\u30f3\u30c6\u30b9\u30c8\u3067\u3082\u898b\u307e\u3057\u305f\u3051\u3069\u3059\u3054\u3044\u3067\u3059\u3088\u306d\u4e2d\u306e\u4eba\u306e\u52d5\u304d\u3068\u304b\u30b3\u30af\u30d4\u30c3\u30c8\u5185\u306b\u3061\u3083\u3093\u3068\u6db2\u6676\u30e2\u30cb\u30bf\u30fc\u304c\u5165\u3063\u3066\u308b\u3068\u3053\u308d\u3068\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725498820759552,"in_reply_to_status_id_str":"663725498820759552","in_reply_to_user_id":275489023,"in_reply_to_user_id_str":"275489023","in_reply_to_screen_name":"puramo_ryota","user":{"id":214864957,"id_str":"214864957","name":"\u767d\u53d6 \u7fd4@\u767d\u53d6\u96fb\u6a5f","screen_name":"siratori_denki","location":"\u767d\u53d6\u96fb\u6a5f","url":"http:\/\/ameblo.jp\/siratori-denki\/","description":"\u5730\u4e0b\u30a2\u30a4\u30c9\u30eb\u306e\u30d7\u30ed\u30c7\u30e5\u30fc\u30b5\u30fc(\u7121\u8077)\u3068\u304b\u3084\u3063\u3066\u308b\u30af\u30ba\u91ce\u90ce \u2026\u30a4\u30d9\u30f3\u30c8\u4f1a\u5834\u306e\u63a7\u3048\u5ba4\u3067\u7d75\u3068\u304b\u30d7\u30e9\u30e2\u3068\u304b\u8863\u88c5\u3092\u4f5c\u3063\u3066\u307e\u2026\u2190\u5168\u90e8\u8da3\u5473 http:\/\/www.pixiv.net\/member.php?id=130583","protected":false,"verified":false,"followers_count":1345,"friends_count":1163,"listed_count":28,"favourites_count":3942,"statuses_count":8975,"created_at":"Fri Nov 12 12:28:19 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449937033872416768\/RK84f-IV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449937033872416768\/RK84f-IV.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661365826453311488\/08g4Ox-w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661365826453311488\/08g4Ox-w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214864957\/1446516875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"puramo_ryota","name":"\u30ea\u30e7\u30fc\u30bf","id":275489023,"id_str":"275489023","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678432890880,"id_str":"663727678432890880","text":"#StaracArabia \u0627\u0644\u0627\u0643\u0627\u062f\u064a\u0645\u064a\u0647 \u0646\u0648\u0631\u062a \u0648\u0631\u0648\u062d\u0647\u0627 \u0631\u062c\u0639\u062a \u0644\u0645\u0627 \u062f\u0648\u062f\u0648 \u0631\u062c\u0639\u062a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1342593438,"id_str":"1342593438","name":"Sara Ismail","screen_name":"saracats4","location":"Port Said, Egypt","url":null,"description":"\u0644\u064e\u0645 \u0623\u062d\u0633\u062f \u0641\u0650\u064a \u0622\u0644\u062f\u064f\u0646\u064a\u0622 \u0623\u062d\u062f\u0627\u064b \u060c \n\u063a\u064e\u064a\u0631 \u0637\u064a\u0631 \u064a\u0645\u062f\u064f \u062c\u0646\u0622\u062d\u064a\u0647 \u0644\u0650\u0644\u0633\u064e\u0645\u0622\u0621 \u060c \u0648\u064e\u064a\u063a\u0631\u062f\u064f \u062d\u064f\u0631\u0627\u064b \u0648\u064a\u064f\u0647\u0622\u062c\u0650\u0631 \u0645\u064e\u062a\u0649 \u0645\u064e\u0622 \u0623\u0631\u0627\u064e\u062f\u0652 .!","protected":false,"verified":false,"followers_count":1178,"friends_count":262,"listed_count":1,"favourites_count":958,"statuses_count":6956,"created_at":"Wed Apr 10 18:49:20 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654458957931614208\/sQX3q9us.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654458957931614208\/sQX3q9us.jpg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624356017007120384\/xHc29aRA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624356017007120384\/xHc29aRA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1342593438\/1444095917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01d0cd182297354e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01d0cd182297354e.json","place_type":"admin","name":"Cairo","full_name":"Cairo, Egypt","country_code":"EG","country":"\u0645\u0635\u0631","bounding_box":{"type":"Polygon","coordinates":[[[31.200959,28.963851],[31.200959,30.228647],[31.940253,30.228647],[31.940253,28.963851]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StaracArabia","indices":[0,13]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079984659"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453846016,"id_str":"663727678453846016","text":"\u00dcniversitelerde Her G\u00fcn 6 Kas\u0131m, Her An M\u00fccadele! - https:\/\/t.co\/DuB9ZTpZ6v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":217409754,"id_str":"217409754","name":"Sait YANIK","screen_name":"saityanik","location":"KIR\u015eEH\u0130R","url":"http:\/\/www.kirsehirarenagazetesi.com","description":"TGC KIR\u015eEH\u0130R TEMS\u0130LC\u0130S\u0130 KIR\u015eEH\u0130R GAZETEC\u0130LER TV RADYOCULCEM\u0130YET BA\u015eKANI TV PROGRAM VE YAPIMCI,KIR\u015eEH\u0130R ARENA GAZETES\u0130 GENEL YAYIN Y\u00d6NETMEN\u0130 VE \u0130MT\u0130YAZ SAH\u0130B\u0130","protected":false,"verified":false,"followers_count":261,"friends_count":711,"listed_count":0,"favourites_count":22,"statuses_count":3093,"created_at":"Fri Nov 19 13:09:41 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170886594\/resim1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170886594\/resim1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217409754\/1374204740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DuB9ZTpZ6v","expanded_url":"http:\/\/www.kirsehirarenagazetesi.com\/universitelerde-her-gun-6-kasim-her-an-mucadele.html","display_url":"kirsehirarenagazetesi.com\/universitelerd\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"tr","timestamp_ms":"1447079984664"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678457970688,"id_str":"663727678457970688","text":"\ud83d\udc8f","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444570049,"id_str":"444570049","name":"\u0627\u0644\u0645\u0648\u0627\u062f\u0639\u06c1\u2039\u263a\u0310\u203a","screen_name":"almowad3a","location":"\u00dc\u03a9\u0336\u0307\u0323\u0323\u0325\u030a\u0454\u0332\u0323\u0325. - \u01a8\u043d\u0360\u0135","url":null,"description":"\u2665Birthday: 11-2-199#\u2661 \u2022 \u30c4. \u064a\u0627\u0631\u0628 \u0644\u0627\u062a\u0639\u0644\u0642 \u0642\u0640\ufedf\u0332\u0628\u064a\u06d2\u0628\u0645\u0627 \u0644\u064a\u0633 \u0644\u064a\u06d2\u2661","protected":false,"verified":false,"followers_count":626,"friends_count":740,"listed_count":1,"favourites_count":47,"statuses_count":8753,"created_at":"Fri Dec 23 11:49:21 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3024848443\/b3707be80e7a7f385e560b00792b9814_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3024848443\/b3707be80e7a7f385e560b00792b9814_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444570049\/1373352319","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079984665"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445383682,"id_str":"663727678445383682","text":"RT @EvilAFM: Odio estas subnormalidades https:\/\/t.co\/kJOzb1tUAJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":304752132,"id_str":"304752132","name":"DanCg","screen_name":"DaanCg","location":null,"url":"https:\/\/www.g2a.com\/r\/dancg","description":"Estudiante de Arquitectura en la UAEH, amante de los videojuegos y buscador de amigos para jugar.!Juegos buenos bonitos y baratos: http:\/\/g2a.com\/r\/dancg","protected":false,"verified":false,"followers_count":143,"friends_count":159,"listed_count":0,"favourites_count":519,"statuses_count":2653,"created_at":"Wed May 25 01:55:30 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647788489698709504\/FJZIq05d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647788489698709504\/FJZIq05d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304752132\/1420748843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:38:47 +0000 2015","id":663712337954779136,"id_str":"663712337954779136","text":"Odio estas subnormalidades https:\/\/t.co\/kJOzb1tUAJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61879392,"id_str":"61879392","name":"Alexelcapo","screen_name":"EvilAFM","location":"Palma de Mallorca","url":"http:\/\/www.youtube.com\/alexelcapo","description":"Abanicador de pavos. Contacto: alexelcapoyt@outlook.es","protected":false,"verified":true,"followers_count":449210,"friends_count":161,"listed_count":1181,"favourites_count":880,"statuses_count":56408,"created_at":"Fri Jul 31 21:27:58 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663040209911615489\/A53Vt61v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663040209911615489\/A53Vt61v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61879392\/1398958254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663452000827392000,"quoted_status_id_str":"663452000827392000","quoted_status":{"created_at":"Sun Nov 08 20:24:17 +0000 2015","id":663452000827392000,"id_str":"663452000827392000","text":"SI ESTE TWEET LLEGA A 15.000 RTS MI MADRE DEJA DE FUMAR\ud83d\ude4f\ud83c\udffb https:\/\/t.co\/FzB05mAKUw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3002147151,"id_str":"3002147151","name":"Clau Eaton","screen_name":"Cl4uBlack","location":null,"url":null,"description":"Juro solemnemente que mis intenciones no son buenas. Gryffindor.","protected":false,"verified":false,"followers_count":222,"friends_count":142,"listed_count":0,"favourites_count":889,"statuses_count":952,"created_at":"Tue Jan 27 22:17:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595258681639497728\/x7Nrzgw4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595258681639497728\/x7Nrzgw4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3002147151\/1422397463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":219,"favorite_count":345,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kJOzb1tUAJ","expanded_url":"https:\/\/twitter.com\/cl4ublack\/status\/663452000827392000","display_url":"twitter.com\/cl4ublack\/stat\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kJOzb1tUAJ","expanded_url":"https:\/\/twitter.com\/cl4ublack\/status\/663452000827392000","display_url":"twitter.com\/cl4ublack\/stat\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"EvilAFM","name":"Alexelcapo","id":61879392,"id_str":"61879392","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424399873,"id_str":"663727678424399873","text":"\u304a\u3044\u8ab0\u304b\u3001\u4ffa\u306e\u2026\u304f\u3001\u53e5\u96c6\u77e5\u3089\u306d\u3047\u304b\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":515248176,"id_str":"515248176","name":"\u571f\u65b9\u6b73\u4e09","screen_name":"Hijikata_bot_55","location":"\u4eac\u306e\u90fd","url":null,"description":"\u4ffa\u306f\u65b0\u64b0\u7d44\u526f\u9577 \u571f\u65b9\u6b73\u4e09\u30025\u67085\u65e5\u751f\u307e\u308c\u3060\u3002\u8a33\u3042\u3063\u3066\u3001\u3053\u3053\u3067\u300c\u3064\u3044\u3063\u305f\u30fc\u300d\u3068\u3084\u3089\u3067\u545f\u3044\u3066\u3044\u308b\u3002\u307e\u3041\u3001\u6687\u304c\u3042\u308c\u3070\u8a71\u3057\u304b\u3051\u3066\u304f\u308c\u3002\u51fa\u6765\u308b\u9650\u308a\u306f\u5bfe\u5fdc\u3059\u308b\u6240\u5b58\u3060\u3002\u3042\u3001\u3042\u3068\u3053\u306ebot\u306b\u3064\u3044\u3066\u306f\u300c\u304a\u6c17\u306b\u5165\u308a\u300d\u306e\u65b9\u3067\u8a73\u3057\u304f\u7d39\u4ecb\u3057\u3066\u3044\u304f\u3064\u3082\u308a\u3060\u3002\u307e\u305f\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u308c\u3002","protected":false,"verified":false,"followers_count":2402,"friends_count":2701,"listed_count":19,"favourites_count":7,"statuses_count":24977,"created_at":"Mon Mar 05 08:36:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1874191043\/Hijikata_bot_55_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1874191043\/Hijikata_bot_55_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678457909248,"id_str":"663727678457909248","text":"\u0e2a\u0e21\u0e2d\u0e07\u0e19\u0e35\u0e48\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e30\u0e44\u0e23\u0e43\u0e19\u0e19\u0e31\u0e49\u0e19\u0e40\u0e25\u0e22\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21? \u0e17\u0e33\u0e44\u0e21\u0e01\u0e39\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e27\u0e48\u0e32\u0e07\u0e42\u0e2b\u0e27\u0e07\u0e40\u0e2b\u0e27\u0e07\u0e40\u0e22\u0e35\u0e48\u0e22\u0e07\u0e19\u0e35\u0e49 \ud83d\ude02\ud83d\ude0f #\u0e0a\u0e35\u0e14\u0e19\u0e49\u0e33\u0e43\u0e2a\u0e48\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e35\u0e1a\u0e19\u0e49\u0e33\u0e15\u0e32\u0e23\u0e31\u0e27\u0e46 \ud83d\ude44 5555 #\u0e42\u0e07\u0e48\u0e14\u0e31\u0e01\u0e14\u0e32\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1552396693,"id_str":"1552396693","name":"MbBow02_BAM","screen_name":"lovedaves","location":"Nong Bua Lam Phu, Thailand","url":"https:\/\/m.facebook.com\/tidarad.boonso?ref=bookmarks","description":"BamBam is Everything #MB\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e42\u0e2b\u0e14","protected":false,"verified":false,"followers_count":14,"friends_count":252,"listed_count":0,"favourites_count":2035,"statuses_count":967,"created_at":"Fri Jun 28 06:25:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662151291401990144\/jmPQIMEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662151291401990144\/jmPQIMEZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1552396693\/1443160673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e0a\u0e35\u0e14\u0e19\u0e49\u0e33\u0e43\u0e2a\u0e48\u0e2b\u0e19\u0e49\u0e32\u0e1a\u0e35\u0e1a\u0e19\u0e49\u0e33\u0e15\u0e32\u0e23\u0e31\u0e27\u0e46","indices":[70,96]},{"text":"\u0e42\u0e07\u0e48\u0e14\u0e31\u0e01\u0e14\u0e32\u0e19","indices":[104,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079984665"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445391872,"id_str":"663727678445391872","text":"RT @FaZeRug: OMFG DRAKE MADE A GUEST APPEARANCE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4174314853,"id_str":"4174314853","name":"Jaeden Hays","screen_name":"JaedenHays","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":33,"listed_count":0,"favourites_count":19,"statuses_count":21,"created_at":"Mon Nov 09 01:50:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538287085137920\/JC1yYaGD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538287085137920\/JC1yYaGD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4174314853\/1447039289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:52:03 +0000 2015","id":663594880099192832,"id_str":"663594880099192832","text":"OMFG DRAKE MADE A GUEST APPEARANCE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":735520507,"id_str":"735520507","name":"Rug","screen_name":"FaZeRug","location":"Add my Snapchat - thefazerug","url":"https:\/\/www.youtube.com\/Rug","description":"Brian or FaZe Rug. 18 years old. I love to entertain and make YouTube videos. Over 1 Million Subscribers! BE HAPPY","protected":false,"verified":true,"followers_count":432346,"friends_count":617,"listed_count":169,"favourites_count":16998,"statuses_count":44922,"created_at":"Fri Aug 03 20:51:27 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651161151229706240\/iN3uqw-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651161151229706240\/iN3uqw-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735520507\/1442511966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":665,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FaZeRug","name":"Rug","id":735520507,"id_str":"735520507","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441263104,"id_str":"663727678441263104","text":"RT @EMCdocumentum: Rising M&A activity beckons a smarter #content mgmt strategy via #EMC's @MartinR_Eng https:\/\/t.co\/qvsKdnAO7x #ECM https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102605061,"id_str":"102605061","name":"jeroen jansen","screen_name":"JJ_INFORMED","location":"Kamerik","url":"http:\/\/www.informedconsulting.nl","description":"- ECM Architect (Documentum and Sharepoint) - EMC Proven Professional Specialist - TOGAF 9 certified Enterprise architect\nEMC Elect 2015","protected":false,"verified":false,"followers_count":195,"friends_count":87,"listed_count":26,"favourites_count":44,"statuses_count":694,"created_at":"Thu Jan 07 07:12:26 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623855579\/foto_20jjansen_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623855579\/foto_20jjansen_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:00 +0000 2015","id":663692766166257664,"id_str":"663692766166257664","text":"Rising M&A activity beckons a smarter #content mgmt strategy via #EMC's @MartinR_Eng https:\/\/t.co\/qvsKdnAO7x #ECM https:\/\/t.co\/hXxyXhnOPq","source":"\u003ca href=\"http:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23115673,"id_str":"23115673","name":"EMC Documentum","screen_name":"EMCdocumentum","location":null,"url":"http:\/\/emc.com\/enterprise-content-management\/","description":"We take content seriously. Stay updated on all things #ECM: #Documentum, #DocSci, #Captiva, #InfoArchive & our #Healthcare, #LifeSci & #Energy solutions","protected":false,"verified":false,"followers_count":17261,"friends_count":3491,"listed_count":626,"favourites_count":414,"statuses_count":7289,"created_at":"Fri Mar 06 20:42:27 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000042526477\/122987a2772c3c95e214144da8b0ce9f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000042526477\/122987a2772c3c95e214144da8b0ce9f.jpeg","profile_background_tile":false,"profile_link_color":"3893D0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000143768054\/f88f79aa62bd83b358ea1dad26b79547_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000143768054\/f88f79aa62bd83b358ea1dad26b79547_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23115673\/1430257567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"content","indices":[42,50]},{"text":"EMC","indices":[69,73]},{"text":"ECM","indices":[113,117]}],"urls":[{"url":"https:\/\/t.co\/qvsKdnAO7x","expanded_url":"http:\/\/emc.im\/6011BuDN1","display_url":"emc.im\/6011BuDN1","indices":[89,112]}],"user_mentions":[{"screen_name":"MartinR_Eng","name":"Martin Richards","id":3319548869,"id_str":"3319548869","indices":[76,88]}],"symbols":[],"media":[{"id":663692765868515328,"id_str":"663692765868515328","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","url":"https:\/\/t.co\/hXxyXhnOPq","display_url":"pic.twitter.com\/hXxyXhnOPq","expanded_url":"http:\/\/twitter.com\/EMCdocumentum\/status\/663692766166257664\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692765868515328,"id_str":"663692765868515328","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","url":"https:\/\/t.co\/hXxyXhnOPq","display_url":"pic.twitter.com\/hXxyXhnOPq","expanded_url":"http:\/\/twitter.com\/EMCdocumentum\/status\/663692766166257664\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"content","indices":[61,69]},{"text":"EMC","indices":[88,92]},{"text":"ECM","indices":[132,136]}],"urls":[{"url":"https:\/\/t.co\/qvsKdnAO7x","expanded_url":"http:\/\/emc.im\/6011BuDN1","display_url":"emc.im\/6011BuDN1","indices":[108,131]}],"user_mentions":[{"screen_name":"EMCdocumentum","name":"EMC Documentum","id":23115673,"id_str":"23115673","indices":[3,17]},{"screen_name":"MartinR_Eng","name":"Martin Richards","id":3319548869,"id_str":"3319548869","indices":[95,107]}],"symbols":[],"media":[{"id":663692765868515328,"id_str":"663692765868515328","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","url":"https:\/\/t.co\/hXxyXhnOPq","display_url":"pic.twitter.com\/hXxyXhnOPq","expanded_url":"http:\/\/twitter.com\/EMCdocumentum\/status\/663692766166257664\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663692766166257664,"source_status_id_str":"663692766166257664","source_user_id":23115673,"source_user_id_str":"23115673"}]},"extended_entities":{"media":[{"id":663692765868515328,"id_str":"663692765868515328","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpDd2W4AAAx7T.png","url":"https:\/\/t.co\/hXxyXhnOPq","display_url":"pic.twitter.com\/hXxyXhnOPq","expanded_url":"http:\/\/twitter.com\/EMCdocumentum\/status\/663692766166257664\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663692766166257664,"source_status_id_str":"663692766166257664","source_user_id":23115673,"source_user_id_str":"23115673"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441152512,"id_str":"663727678441152512","text":"RT @ksyjkysk: @ksyjkysk \u6b69\u5e45\u304c\u9055\u3046\u3053\u3068\u3050\u3089\u3044\u5206\u304b\u3063\u3066\u3044\u305f https:\/\/t.co\/vmucj4SgfN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127800534,"id_str":"127800534","name":"\u795e\u54b2\u7adc\u514e\uff20\u3069\u3089\u3082\u3069\u304d","screen_name":"kanzaki_ryuto","location":"\u73fe\u5b9f","url":"http:\/\/twilog.org\/kanzaki_ryuto","description":"pixiv\u3067\u30b1\u30e2\u30ce\u30fb\u4eba\u5916\u3084PF\u7b49\u4f01\u753b\u95a2\u9023\u7269\u3092\u63cf\u3044\u3066\u3044\u307e\u3059\u3002 \u30b2\u30fc\u30e0\u306fRO\u3001\u30e2\u30f3\u30cf\u30f3\u3001\u30dd\u30b1\u30e2\u30f3\u7b49\u3002\u30de\u30f3\u30e1\u30f3\u30dfpixiv\u3010http:\/\/www.pixiv.net\/member.php?id=143944\u3011 \u611a\u75f4\u57a2\u3010@syuto_kiryuga\u3011","protected":false,"verified":false,"followers_count":521,"friends_count":621,"listed_count":29,"favourites_count":1805,"statuses_count":174460,"created_at":"Tue Mar 30 08:06:34 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C9C9C9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182366212\/n082Q-vY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182366212\/n082Q-vY.jpeg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662798057130475520\/KY42NPMm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662798057130475520\/KY42NPMm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127800534\/1444962291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:45 +0000 2015","id":663725666722971649,"id_str":"663725666722971649","text":"@ksyjkysk \u6b69\u5e45\u304c\u9055\u3046\u3053\u3068\u3050\u3089\u3044\u5206\u304b\u3063\u3066\u3044\u305f https:\/\/t.co\/vmucj4SgfN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709497253212165,"in_reply_to_status_id_str":"663709497253212165","in_reply_to_user_id":3191596854,"in_reply_to_user_id_str":"3191596854","in_reply_to_screen_name":"ksyjkysk","user":{"id":3191596854,"id_str":"3191596854","name":"\u5927\u5bb6","screen_name":"ksyjkysk","location":"JAPAN\u30fbOSAKA","url":null,"description":"\u4e00\u6b21\u5275\u4f5c\u3002\u597d\u304d\u3060\u306a\u3041\u3068\u601d\u3046\u30ab\u30c3\u30d7\u30eb\u3092\u63cf\u3044\u3066\u308b\u306e\u3067BLGLNL\u30b1\u30e2\u30ce\u4eba\u5916\u306a\u3093\u3067\u3082\u6709\u3067\u3059","protected":false,"verified":false,"followers_count":2887,"friends_count":114,"listed_count":35,"favourites_count":228,"statuses_count":1299,"created_at":"Mon May 11 03:55:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663204469803388928\/uBfXnSfA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663204469803388928\/uBfXnSfA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191596854\/1446987961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":47,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ksyjkysk","name":"\u5927\u5bb6","id":3191596854,"id_str":"3191596854","indices":[0,9]}],"symbols":[],"media":[{"id":663725578416066560,"id_str":"663725578416066560","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1531,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725578416066560,"id_str":"663725578416066560","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1531,"resize":"fit"}}},{"id":663725624377217024,"id_str":"663725624377217024","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8FVUEAAYXID.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8FVUEAAYXID.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":500,"resize":"fit"},"medium":{"w":600,"h":882,"resize":"fit"},"large":{"w":1024,"h":1506,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ksyjkysk","name":"\u5927\u5bb6","id":3191596854,"id_str":"3191596854","indices":[3,12]},{"screen_name":"ksyjkysk","name":"\u5927\u5bb6","id":3191596854,"id_str":"3191596854","indices":[14,23]}],"symbols":[],"media":[{"id":663725578416066560,"id_str":"663725578416066560","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1531,"resize":"fit"}},"source_status_id":663725666722971649,"source_status_id_str":"663725666722971649","source_user_id":3191596854,"source_user_id_str":"3191596854"}]},"extended_entities":{"media":[{"id":663725578416066560,"id_str":"663725578416066560","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5aHUkAAYsms.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1531,"resize":"fit"}},"source_status_id":663725666722971649,"source_status_id_str":"663725666722971649","source_user_id":3191596854,"source_user_id_str":"3191596854"},{"id":663725624377217024,"id_str":"663725624377217024","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8FVUEAAYXID.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8FVUEAAYXID.jpg","url":"https:\/\/t.co\/vmucj4SgfN","display_url":"pic.twitter.com\/vmucj4SgfN","expanded_url":"http:\/\/twitter.com\/ksyjkysk\/status\/663725666722971649\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":500,"resize":"fit"},"medium":{"w":600,"h":882,"resize":"fit"},"large":{"w":1024,"h":1506,"resize":"fit"}},"source_status_id":663725666722971649,"source_status_id_str":"663725666722971649","source_user_id":3191596854,"source_user_id_str":"3191596854"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678449713152,"id_str":"663727678449713152","text":"Let's go swimming........","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594494600,"id_str":"594494600","name":"Hlao","screen_name":"Hlaovan","location":"Pretoria Danville","url":null,"description":"Brave Mechanic Worker....BMW specialist ......","protected":false,"verified":false,"followers_count":2852,"friends_count":3887,"listed_count":2,"favourites_count":9498,"statuses_count":8028,"created_at":"Wed May 30 10:37:30 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662891664453836800\/3uhBhHf6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662891664453836800\/3uhBhHf6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594494600\/1446880661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984663"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678428696576,"id_str":"663727678428696576","text":"RT @RedonkulasPopp: @PearlsPolkaDots comedy vid about women in college enjoy https:\/\/t.co\/d83Y8ziu9w","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2967894177,"id_str":"2967894177","name":"Mary Ellen","screen_name":"PearlsPolkaDots","location":"North Carolina","url":"http:\/\/pearlsandpolkadotdresses.blogspot.com\/","description":"Wife & Mother of 3. Interracially married. Conservative. Proud Southern Girl. Loves God, America & NASCAR. You'll find me in pearls, heels & polka dot dresses \u2665","protected":false,"verified":false,"followers_count":1787,"friends_count":2115,"listed_count":34,"favourites_count":8389,"statuses_count":4522,"created_at":"Thu Jan 08 15:04:52 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657022239779459073\/GeILwvpl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657022239779459073\/GeILwvpl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2967894177\/1441068612","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:31 +0000 2015","id":663717306112024576,"id_str":"663717306112024576","text":"@PearlsPolkaDots comedy vid about women in college enjoy https:\/\/t.co\/d83Y8ziu9w","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2967894177,"in_reply_to_user_id_str":"2967894177","in_reply_to_screen_name":"PearlsPolkaDots","user":{"id":1578647616,"id_str":"1578647616","name":"Terrence Popp","screen_name":"RedonkulasPopp","location":null,"url":"http:\/\/www.redonkulas.com","description":"Producer\/host of http:\/\/Redonkulas.com. Army. Just a dude with a beer in a basement talking funny smack.","protected":false,"verified":false,"followers_count":667,"friends_count":216,"listed_count":17,"favourites_count":80,"statuses_count":9696,"created_at":"Mon Jul 08 21:27:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000106514686\/89ebc31069345dbb2b414bb43cc6593c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000106514686\/89ebc31069345dbb2b414bb43cc6593c_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d83Y8ziu9w","expanded_url":"https:\/\/www.youtube.com\/watch?v=83AU8UV38Bk","display_url":"youtube.com\/watch?v=83AU8U\u2026","indices":[57,80]}],"user_mentions":[{"screen_name":"PearlsPolkaDots","name":"Mary Ellen","id":2967894177,"id_str":"2967894177","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d83Y8ziu9w","expanded_url":"https:\/\/www.youtube.com\/watch?v=83AU8UV38Bk","display_url":"youtube.com\/watch?v=83AU8U\u2026","indices":[77,100]}],"user_mentions":[{"screen_name":"RedonkulasPopp","name":"Terrence Popp","id":1578647616,"id_str":"1578647616","indices":[3,18]},{"screen_name":"PearlsPolkaDots","name":"Mary Ellen","id":2967894177,"id_str":"2967894177","indices":[20,36]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984658"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424530949,"id_str":"663727678424530949","text":"RT @56Magali: VAMOOOOS RECLUTENSEEEEN\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/gz3emfEw83","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67721858,"id_str":"67721858","name":"Majo","screen_name":"majochica","location":"Asuncion","url":null,"description":"vivo de la l\u00f3gica de mis actos, a veces de mis sue\u00f1os absurdos y otras de mi realidad omnipresente !!!!","protected":false,"verified":false,"followers_count":150,"friends_count":533,"listed_count":0,"favourites_count":301,"statuses_count":2648,"created_at":"Fri Aug 21 21:18:34 +0000 2009","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639451453883588608\/3y70dRlK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639451453883588608\/3y70dRlK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67721858\/1441292080","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:48 +0000 2015","id":663726937593028608,"id_str":"663726937593028608","text":"VAMOOOOS RECLUTENSEEEEN\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/gz3emfEw83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851865908,"id_str":"851865908","name":"Meli|Lalita","screen_name":"56Magali","location":"Florencio Varela, Argentina","url":null,"description":"Reir te salva\u2764|| Lalita || AGUANTE MARIALI VIEJO|| 03-11-15|| Llevo su sonrisa como bandera, y que sea lo que sea.|| 12 a\u00f1os|| No estoy sola. MORIDAA","protected":false,"verified":false,"followers_count":326,"friends_count":401,"listed_count":3,"favourites_count":8473,"statuses_count":7822,"created_at":"Fri Sep 28 22:55:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851865908\/1446398426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":2,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[53,68]},{"text":"MejorFandom","indices":[69,81]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[24,40]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[41,52]}],"symbols":[],"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[67,82]},{"text":"MejorFandom","indices":[83,95]}],"urls":[],"user_mentions":[{"screen_name":"56Magali","name":"Meli|Lalita","id":851865908,"id_str":"851865908","indices":[3,12]},{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[38,54]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[55,66]}],"symbols":[],"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726937593028608,"source_status_id_str":"663726937593028608","source_user_id":851865908,"source_user_id_str":"851865908"}]},"extended_entities":{"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726937593028608,"source_status_id_str":"663726937593028608","source_user_id":851865908,"source_user_id_str":"851865908"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678436982784,"id_str":"663727678436982784","text":"RT @BobOngQuotes: Hirap talaga makatulog pag naka on pa ang wifi \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622925266,"id_str":"622925266","name":"Chescaaaa \u270c","screen_name":"ozsnapitschesca","location":"Honeymoon \u00e3ve.","url":null,"description":"\u275dGrades don't measure intelligence and age doesn't define maturity.\u275e || HTA \u2606 || Juniors \u2606 || Arianator || Dobrevic ||","protected":false,"verified":false,"followers_count":486,"friends_count":253,"listed_count":0,"favourites_count":1032,"statuses_count":645,"created_at":"Sat Jun 30 15:54:23 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504584187349696512\/mwB-L5oH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504584187349696512\/mwB-L5oH.jpeg","profile_background_tile":true,"profile_link_color":"FFD500","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624953721277911041\/bvRrgcEP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624953721277911041\/bvRrgcEP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622925266\/1445059124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:32 +0000 2015","id":663727123182575616,"id_str":"663727123182575616","text":"Hirap talaga makatulog pag naka on pa ang wifi \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954995377,"id_str":"954995377","name":"Bob Ong","screen_name":"BobOngQuotes","location":"\u007bcontactbobong@yahoo.com \u2709\ufe0f\u007d","url":null,"description":"YOUR NO. 1 SOURCE OF BOB-ONG QUOTES! MEMBER: United Influencers","protected":false,"verified":false,"followers_count":894441,"friends_count":150,"listed_count":373,"favourites_count":15,"statuses_count":112929,"created_at":"Sun Nov 18 06:56:50 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166264672\/LRbbf4Bt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166264672\/LRbbf4Bt.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542897851500466177\/bYhZmW_j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542897851500466177\/bYhZmW_j_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954995377\/1413354234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":183,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BobOngQuotes","name":"Bob Ong","id":954995377,"id_str":"954995377","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079984660"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441164800,"id_str":"663727678441164800","text":"RT @taengcorny: ???\u00bf\u00bf??? https:\/\/t.co\/egkr4rQMO3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2311611816,"id_str":"2311611816","name":"Double M.","screen_name":"uuumpink_","location":"@miiiiii_jooooo's heart\u2661","url":null,"description":"7springs of Apink \/JEj to SNe\u2661'\/ #\ub7ec\ube14\ub9ac\uc9888 (1992-1998) | Happiness! #\ub808\ub4dc\ubca8\ubcb35 | Bangkoker. | Boston Celtics |","protected":false,"verified":false,"followers_count":632,"friends_count":694,"listed_count":6,"favourites_count":1564,"statuses_count":88576,"created_at":"Sun Jan 26 10:20:01 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F8EECB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541190090538500098\/Dce9a1Tc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541190090538500098\/Dce9a1Tc.jpeg","profile_background_tile":false,"profile_link_color":"B70808","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660639423646728192\/KnI3mERw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660639423646728192\/KnI3mERw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2311611816\/1446983723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:49 +0000 2015","id":663724428367237121,"id_str":"663724428367237121","text":"???\u00bf\u00bf??? https:\/\/t.co\/egkr4rQMO3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724065782304768,"in_reply_to_status_id_str":"663724065782304768","in_reply_to_user_id":519552529,"in_reply_to_user_id_str":"519552529","in_reply_to_screen_name":"taengcorny","user":{"id":519552529,"id_str":"519552529","name":"yagit","screen_name":"taengcorny","location":"yuri","url":null,"description":"taeny trash","protected":false,"verified":false,"followers_count":7082,"friends_count":378,"listed_count":36,"favourites_count":9983,"statuses_count":78869,"created_at":"Fri Mar 09 15:00:13 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156482382\/VYghtrAU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156482382\/VYghtrAU.png","profile_background_tile":false,"profile_link_color":"3D8EFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480691592093646848\/jkwNKwHG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480691592093646848\/jkwNKwHG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519552529\/1403175901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":38,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724415587213312,"id_str":"663724415587213312","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"large":{"w":499,"h":281,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724415587213312,"id_str":"663724415587213312","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"large":{"w":499,"h":281,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}}},{"id":663724420830068736,"id_str":"663724420830068736","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF2BxUAAAlw7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF2BxUAAAlw7s.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"medium":{"w":303,"h":243,"resize":"fit"},"large":{"w":303,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":303,"h":243,"resize":"fit"}}},{"id":663724425120866304,"id_str":"663724425120866304","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF2RwUYAATAK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF2RwUYAATAK1.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taengcorny","name":"yagit","id":519552529,"id_str":"519552529","indices":[3,14]}],"symbols":[],"media":[{"id":663724415587213312,"id_str":"663724415587213312","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"large":{"w":499,"h":281,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}},"source_status_id":663724428367237121,"source_status_id_str":"663724428367237121","source_user_id":519552529,"source_user_id_str":"519552529"}]},"extended_entities":{"media":[{"id":663724415587213312,"id_str":"663724415587213312","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF1uPUYAATO_p.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"large":{"w":499,"h":281,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}},"source_status_id":663724428367237121,"source_status_id_str":"663724428367237121","source_user_id":519552529,"source_user_id_str":"519552529"},{"id":663724420830068736,"id_str":"663724420830068736","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF2BxUAAAlw7s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF2BxUAAAlw7s.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"medium":{"w":303,"h":243,"resize":"fit"},"large":{"w":303,"h":243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":303,"h":243,"resize":"fit"}},"source_status_id":663724428367237121,"source_status_id_str":"663724428367237121","source_user_id":519552529,"source_user_id_str":"519552529"},{"id":663724425120866304,"id_str":"663724425120866304","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF2RwUYAATAK1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF2RwUYAATAK1.jpg","url":"https:\/\/t.co\/egkr4rQMO3","display_url":"pic.twitter.com\/egkr4rQMO3","expanded_url":"http:\/\/twitter.com\/taengcorny\/status\/663724428367237121\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}},"source_status_id":663724428367237121,"source_status_id_str":"663724428367237121","source_user_id":519552529,"source_user_id_str":"519552529"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079984661"} +{"delete":{"status":{"id":540515728642678784,"id_str":"540515728642678784","user_id":1333266386,"user_id_str":"1333266386"},"timestamp_ms":"1447079984737"}} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678462144516,"id_str":"663727678462144516","text":"\uff1a|\uff08\uff9f\uff09\uff08\uff61\uff09|\uff1a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227326357,"id_str":"3227326357","name":"\u51cd\u8840\u304f\u3093","screen_name":"i_cb_","location":"\u5927\u578b\u91cf\u7523\u578b\u76f8\u4e92\u4e2d\u3092\u76ee\u6307\u3059\u3088\uff01\uff01\uff01\uff01\uff01^^","url":"http:\/\/twpf.jp\/i_cb_","description":"FF\u6bd4\u623b\u308b\u307e\u3067\u4f4e\u6d6e\u4e0a\u3060\u3051\u3069\u8a31\u3057\u3066\u30af\u30ec\u30e1\u30f3\u30b9\n[Site]\u30ec\u30a4\u30ba\u73ed\/ \u9ed1\u7f87\u56e3","protected":false,"verified":false,"followers_count":2118,"friends_count":2242,"listed_count":11,"favourites_count":2158,"statuses_count":12294,"created_at":"Tue May 26 15:47:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653988352916504576\/aUE_FWls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653988352916504576\/aUE_FWls_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227326357\/1444757334","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984666"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445346816,"id_str":"663727678445346816","text":"\u3068\u308a\u3042\u3048\u305a\u98a8\u5442\u308d\u3046","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95487854,"id_str":"95487854","name":"\u3067\u3059\u308d@11\/8\u97f3\u6d41\u3057","screen_name":"Desur0","location":null,"url":null,"description":"\u30a2\u30cb\u30bd\u30f3\uff0b\u03b1\u306e\u30a2\u30cb\u30af\u30e9\u300c#\u304d\u3093\u304a\u305f\u300d\u4e3b\u50ac\u3002\u3042\u3055\u3081\u3057\uff08@asameshi_mae\uff09\u306e\u30c9\u30e9\u30e0\u3002\u30b8\u30e3\u30f3\u30eb\u3044\u308d\u3044\u308d\u3067DJ\u3057\u3066\u307e\u3059\u3002\u30af\u30bd\u30c4\u30a4\u304c\u597d\u304d\u3002\u30c9\u30e9\u30e0\/#\u30dc\u30ab\u30df\u30c8\/#dopeout\/#\u9bd6\u4f1a\/\u30ae\u30bf\u30fc\/B'z Party\/\uff8c\uff6b\uff9b\uff70\u306f\u304a\u6c17\u8efd\u306b\uff01","protected":false,"verified":false,"followers_count":1481,"friends_count":1752,"listed_count":27,"favourites_count":27866,"statuses_count":68459,"created_at":"Tue Dec 08 19:45:24 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872228982\/aa482abe3f2c8ec3f01a9bd9de41abb0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872228982\/aa482abe3f2c8ec3f01a9bd9de41abb0.jpeg","profile_background_tile":false,"profile_link_color":"002DB3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658208946537103360\/rVt_Ap62_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658208946537103360\/rVt_Ap62_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95487854\/1445494273","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424395780,"id_str":"663727678424395780","text":"@neru_108 \u307e\u3058\u3067!?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725440419282944,"in_reply_to_status_id_str":"663725440419282944","in_reply_to_user_id":2286181508,"in_reply_to_user_id_str":"2286181508","in_reply_to_screen_name":"neru_108","user":{"id":3777237974,"id_str":"3777237974","name":"Ha\u044fu","screen_name":"harusyou_disney","location":"2\u6b21\u5143 \u21d4 \u95a2\u897f","url":"http:\/\/twpf.jp\/harusyou_disney","description":"(L)G(B)T\/\u6210\u4eba\u6e08\/Ftx\/\u30a2\u30cb\u30e1\/\u30b3\u30b9\u30d7\u30ec\/\u30dc\u30ab\u30ed\/\u6c34\u65cf\u9928\/\u30c7\u30a3\u30ba\u30cb\u30fc\/ \u98fc\u3044\u72ac\u30ef\u30f3\u30b3[@love_hq0527 ]","protected":false,"verified":false,"followers_count":45,"friends_count":37,"listed_count":1,"favourites_count":110,"statuses_count":3214,"created_at":"Sun Oct 04 04:17:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650630936015429633\/0LAeIod-.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650630936015429633\/0LAeIod-.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656636871401799680\/e7-dxK2g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656636871401799680\/e7-dxK2g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3777237974\/1445264281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"neru_108","name":"\u97f3\u7409","id":2286181508,"id_str":"2286181508","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441197568,"id_str":"663727678441197568","text":"@ani_knt \n\n\u3088\u308d\u3074\u304f\u3088\u308d\u3074\u304f\uff5e\ud83c\udf40\u30ab\u30ca\u30c8\u304f\u3093\u304b\u308f\u3044\u3044\u3088\u306d\uff01\u3044\u3064\u3082\u6012\u3063\u3066\u308b\u3051\u3069\u3042\u306e\u6027\u683c\u306b\u632f\u308a\u56de\u3055\u308c\u305f\u3044ww\u540c\u3058\u9006\u5dfb\u4e09\u3064\u5b50\u63a8\u3057\u540c\u58eb\u4ef2\u826f\u304f\u3057\u307e\u3087\u2661\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663672892241014784,"in_reply_to_status_id_str":"663672892241014784","in_reply_to_user_id":3326234742,"in_reply_to_user_id_str":"3326234742","in_reply_to_screen_name":"ani_knt","user":{"id":3943066573,"id_str":"3943066573","name":"\u25a1\u25a1\u3086\u3063\u304b\u25a1\u25a1@\u5927\u5b66\u53d7\u9a13","screen_name":"ponponjd","location":"\u67ca\u3000\u30db\u30b7\u30b7\u30ed","url":null,"description":"\u7dd1\u6c38\u5c06\u3000\u0b90\u3000\u9ed2\u5d0e\u862d\u4e38\u3000\u0b90\u3000\u5927\u795e\u6643\u7259\u3000\u0b90\u3000\u9999\u690e\u73b2\u97f3\u3000\u0b90\u3000\u9006\u5dfb\u30a2\u30e4\u30c8\u3000\u0b90\u3000\u864e\u77f3\u548c\u6cc9\u3000\u0b90\u3000\u5897\u9577\u548c\u5357\u3000\u0b90\u3000\u4e03\u702c\u9059\u3000\u0b90\u3000\u30b0\u30ec\u30a4\u30fb\u30d5\u30eb\u30d0\u30b9\u30bf\u30fc\u3000\u0b90\u3000\u6c96\u7530\u7dcf\u53f8\u3000\u0b90\u3000\u897f\u5c3e\u9326\u3000\u0b90\u3000\u7f6a\u6728\u871c\u67d1\u3000\u3000\u3000\u611b\u3055\u308c\u305f\u3044\u4eba\u751f\u3060\u3063\u305f\u25aa\u25aa\u25aa\u25aa\u25b6\u307a\u3093\u304e\u3093\u3055\u3093\u3060\u3044\u3059\u304d\u3000","protected":false,"verified":false,"followers_count":66,"friends_count":66,"listed_count":8,"favourites_count":301,"statuses_count":682,"created_at":"Mon Oct 19 04:02:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659758019782164480\/33iQwMWb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659758019782164480\/33iQwMWb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3943066573\/1446965364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ani_knt","name":"\u262a \u307f \u3044 \u3002","id":3326234742,"id_str":"3326234742","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424420353,"id_str":"663727678424420353","text":"@damegane7120 \u3060\u3081\u3055\u3093\u3082\u304a\u6642\u9593\u7a7a\u3044\u3066\u308b\u3088\u3046\u306a\u3089\u6765\u307e\u3059\u304b\u3041\uff1f\n\u307e\u3060\u4f01\u753b\u306f\u3057\u3066\u306a\u3044\u306e\u3067\u3059\u304c\u8fd1\u3005\u3084\u308d\u3046\u304b\u306a\u3041\u3068\u601d\u3063\u3066\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725471561969664,"in_reply_to_status_id_str":"663725471561969664","in_reply_to_user_id":203951865,"in_reply_to_user_id_str":"203951865","in_reply_to_screen_name":"damegane7120","user":{"id":2799876133,"id_str":"2799876133","name":"\u308f\u3093\u8ee2\u304c\u3057","screen_name":"kokonoe_e15","location":"\u72ac\u5c0f\u5c4b","url":null,"description":"\u7a32\u6ca2\u5728\u4f4f\u30a2\u30cb\u30aa\u30bf\u30b5\u30d0\u30b2\u30fc\u30de\u30fc\u3002\u6771\u6d77\u5730\u65b9\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u306b\u3066\u6d3b\u52d5\u4e2d\uff01\u4e3b\u306bCRA\u3055\u3093\u306b\u304a\u4e16\u8a71\u306b\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u30a8\u30a2\u30fc\u304a\u3058\u3055\u3093\u306b\u306a\u308c\u308b\u3088\u3046\u306b\u304c\u3093\u3070\u308b\uff01","protected":false,"verified":false,"followers_count":219,"friends_count":270,"listed_count":6,"favourites_count":2247,"statuses_count":15149,"created_at":"Tue Sep 09 12:41:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661869643364065280\/mZvUPaKE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661869643364065280\/mZvUPaKE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2799876133\/1446291069","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"damegane7120","name":"\u99c4\u30e1\u30ac\u30cd@3\u65e5HQ","id":203951865,"id_str":"203951865","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678457929729,"id_str":"663727678457929729","text":"getting sick\nall I want in life is #Fallout4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":340376089,"id_str":"340376089","name":"JINGLE BEN","screen_name":"weexplode","location":"CHRISTMAS TOWN, USA","url":null,"description":"ITS CHRISTMAS TIME TILL I SAY IT ISNT\/\/really lame like your dad but not in like a cool ironic way\/\/self declared posh punk hipster loser","protected":false,"verified":false,"followers_count":326,"friends_count":686,"listed_count":4,"favourites_count":12864,"statuses_count":11346,"created_at":"Fri Jul 22 16:06:50 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"505070","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661388241157750784\/baFeJwrr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661388241157750784\/baFeJwrr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340376089\/1444776127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Fallout4","indices":[35,44]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984665"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678445322241,"id_str":"663727678445322241","text":"Watching #TuanAnasMikael \ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851701326,"id_str":"2851701326","name":"CikSenyum","screen_name":"ilabella657","location":"Kuala Lumpur","url":null,"description":"Allah uji sebab Allah sayang, bersangka baiklah pada Allah s.w.t","protected":false,"verified":false,"followers_count":47,"friends_count":95,"listed_count":0,"favourites_count":198,"statuses_count":744,"created_at":"Sat Oct 11 09:10:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663360555734839296\/YzAqkaSk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663360555734839296\/YzAqkaSk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851701326\/1446963932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuanAnasMikael","indices":[9,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984662"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441189376,"id_str":"663727678441189376","text":"@nono_hq2525 \u3061\u3087\u3063\u3068\u5f85\u3063\u3066wwww\u5168\u88f8wwww\u304f\u305d\u308f\u308dwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663701866094563328,"in_reply_to_status_id_str":"663701866094563328","in_reply_to_user_id":3323941524,"in_reply_to_user_id_str":"3323941524","in_reply_to_screen_name":"nono_hq2525","user":{"id":3657067153,"id_str":"3657067153","name":"\u306a\u306e@\u30cf\u30a4\u30ad\u30e5\u30fc\u57a2","screen_name":"naytnppp_7","location":"\u5bae\u57ce","url":null,"description":"19(\u2640)\u3010\u53ca\u5ddd\u5fb9\u30d5\u30a1\u30f3\u30af\u30e9\u30d6No.3\u3011\u30cf\u30a4\u30ad\u30e5\u30fc\u306f\u9178\u7d20\u3002\u5730\u96f7\u306a\u3057\u3001\u4f55\u3067\u3082\u30b5\u30c3\u30b3\u30fc\u30a4\uff01*\u9752\u57ce*\u5317\u4e00*\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u6c17\u8efd\u306b\u547c\u3073\u30bf\u30e1\u3069\u30fc\u305e\uff01\u30cf\u30a4\u30af\u30e9\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044(^o^\u2261^o^)","protected":false,"verified":false,"followers_count":526,"friends_count":613,"listed_count":16,"favourites_count":1021,"statuses_count":2736,"created_at":"Wed Sep 23 07:01:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663329898635759616\/5T83cIqH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663329898635759616\/5T83cIqH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3657067153\/1446468263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nono_hq2525","name":"\u306e \u306e \u3059 \u3051","id":3323941524,"id_str":"3323941524","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424420352,"id_str":"663727678424420352","text":"RT @SecretXposed: Actors Who Once Were Young and Hot \u2013 See Dumbledore\u2019s Youth http:\/\/t.co\/L6lkVGYLcH http:\/\/t.co\/cWxomOcQBQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269154018,"id_str":"269154018","name":"Ams. \u2665","screen_name":"amyylicioussss","location":"Republic of the Philippines","url":"http:\/\/www.facebook.com\/amyy04","description":"I'm not perfect, I'm just me.","protected":false,"verified":false,"followers_count":351,"friends_count":331,"listed_count":0,"favourites_count":2283,"statuses_count":6891,"created_at":"Sun Mar 20 05:53:11 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560016918938013698\/bd7tHYHR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560016918938013698\/bd7tHYHR.jpeg","profile_background_tile":true,"profile_link_color":"BD31B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649981075565838336\/UZHnCyKC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649981075565838336\/UZHnCyKC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269154018\/1422353496","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 24 18:38:28 +0000 2015","id":624649866480742401,"id_str":"624649866480742401","text":"Actors Who Once Were Young and Hot \u2013 See Dumbledore\u2019s Youth http:\/\/t.co\/L6lkVGYLcH http:\/\/t.co\/cWxomOcQBQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1668494598,"id_str":"1668494598","name":"Secret Exposed!","screen_name":"SecretXposed","location":null,"url":null,"description":"The Secret facts and Celebrities Exposed!","protected":false,"verified":false,"followers_count":22312,"friends_count":2582,"listed_count":41,"favourites_count":6,"statuses_count":652,"created_at":"Tue Aug 13 18:55:35 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438323357113544705\/_CfsWH1G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438323357113544705\/_CfsWH1G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1668494598\/1393340461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":132,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/L6lkVGYLcH","expanded_url":"http:\/\/bit.ly\/1IrRZglVl","display_url":"bit.ly\/1IrRZglVl","indices":[60,82]}],"user_mentions":[],"symbols":[],"media":[{"id":624649790433816576,"id_str":"624649790433816576","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":624649790433816576,"id_str":"624649790433816576","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}},{"id":624649852572471296,"id_str":"624649852572471296","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszuzuVEAAJfvM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszuzuVEAAJfvM.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"medium":{"w":482,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":482,"h":600,"resize":"fit"},"small":{"w":340,"h":423,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/L6lkVGYLcH","expanded_url":"http:\/\/bit.ly\/1IrRZglVl","display_url":"bit.ly\/1IrRZglVl","indices":[78,100]}],"user_mentions":[{"screen_name":"SecretXposed","name":"Secret Exposed!","id":1668494598,"id_str":"1668494598","indices":[3,16]}],"symbols":[],"media":[{"id":624649790433816576,"id_str":"624649790433816576","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":624649866480742401,"source_status_id_str":"624649866480742401","source_user_id":1668494598,"source_user_id_str":"1668494598"}]},"extended_entities":{"media":[{"id":624649790433816576,"id_str":"624649790433816576","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszrMPUcAAOa2g.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":624649866480742401,"source_status_id_str":"624649866480742401","source_user_id":1668494598,"source_user_id_str":"1668494598"},{"id":624649852572471296,"id_str":"624649852572471296","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CKszuzuVEAAJfvM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKszuzuVEAAJfvM.jpg","url":"http:\/\/t.co\/cWxomOcQBQ","display_url":"pic.twitter.com\/cWxomOcQBQ","expanded_url":"http:\/\/twitter.com\/SecretXposed\/status\/624649866480742401\/photo\/1","type":"photo","sizes":{"medium":{"w":482,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":482,"h":600,"resize":"fit"},"small":{"w":340,"h":423,"resize":"fit"}},"source_status_id":624649866480742401,"source_status_id_str":"624649866480742401","source_user_id":1668494598,"source_user_id_str":"1668494598"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441152513,"id_str":"663727678441152513","text":"\u9b42\u3054\u3068\u706b\u846c\u3057\u3066\u3084\u308b\u305c\uff01\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":428947282,"id_str":"428947282","name":"\u304b\u306b\u3055\u3082\u3042","screen_name":"samoakunkani","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":9780,"created_at":"Mon Dec 05 11:10:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1675070592\/______normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1675070592\/______normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678462234624,"id_str":"663727678462234624","text":"fanasieva \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0442\u044c. \u041e\u0431\u043e\u0436\u0430\u044e \u0433\u0440\u0435\u0447\u0435\u0441\u043a\u0443\u044e \u043a\u0443\u0445\u043d\u044e. \u041e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432 \u0434\u043b\u044f \u043f\u043e\u0441\u0442\u043d\u043e\u0433\u043e.","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1266226316,"id_str":"1266226316","name":"BondsCausey","screen_name":"BondsCausey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":16,"listed_count":2,"favourites_count":0,"statuses_count":121106,"created_at":"Thu Mar 14 05:01:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3680681829\/65943b98f7b8b2177e7d6ff69b9af236_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3680681829\/65943b98f7b8b2177e7d6ff69b9af236_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079984666"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678449721344,"id_str":"663727678449721344","text":"@FYFeelingFY We're going to be the best couple, I just know it!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663668362032074752,"in_reply_to_status_id_str":"663668362032074752","in_reply_to_user_id":316368194,"in_reply_to_user_id_str":"316368194","in_reply_to_screen_name":"FYFeelingFY","user":{"id":2881312199,"id_str":"2881312199","name":"Joseph N Miller Jr","screen_name":"poconojoe1969","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":937,"friends_count":2006,"listed_count":4,"favourites_count":143,"statuses_count":32186,"created_at":"Mon Nov 17 16:51:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534390110708858880\/Q6rcKlpo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534390110708858880\/Q6rcKlpo_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FYFeelingFY","name":"Fuck Feelings","id":316368194,"id_str":"316368194","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984663"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453780480,"id_str":"663727678453780480","text":"RT @plqsakhgb: \u3010\u60b2\u5831\u3011AKB\u30fb\u6b05\u5742\uff14\uff16\u30e1\u30f3\u30d0\u30fc\u539f\u7530\u307e\u3086\uff1f\uff01\u4e2d\u5b66\u6821\u6559\u5e2b\u3068\u306e\u30ad\u30b9\u753b\u50cf\u6d41\u51fa\n\u203b\u5f15\u9000\u304b\uff57\n\u21d2https:\/\/t.co\/6AvEEWHuZe https:\/\/t.co\/QGHMT1L5o3","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003e\u30b4\u30b7\u30c3\u30d7\u30d0\u30ba\u901f\u5831( ^\u03c9^ )\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222295136,"id_str":"3222295136","name":"\u65b0\u679d\u96c5\u5fd7","screen_name":"db1520","location":"\u9577\u7530","url":null,"description":"\u4ffa\u306e\u5de8\u6839\u3067\u4f55\u4eba\u30a4\u30c3\u30bf\u3053\u3068\u3084\u3089","protected":false,"verified":false,"followers_count":104,"friends_count":555,"listed_count":0,"favourites_count":2,"statuses_count":12,"created_at":"Thu May 21 13:06:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602085570257358848\/ixC-5pfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602085570257358848\/ixC-5pfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222295136\/1432387686","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:08 +0000 2015","id":663722241331363840,"id_str":"663722241331363840","text":"\u3010\u60b2\u5831\u3011AKB\u30fb\u6b05\u5742\uff14\uff16\u30e1\u30f3\u30d0\u30fc\u539f\u7530\u307e\u3086\uff1f\uff01\u4e2d\u5b66\u6821\u6559\u5e2b\u3068\u306e\u30ad\u30b9\u753b\u50cf\u6d41\u51fa\n\u203b\u5f15\u9000\u304b\uff57\n\u21d2https:\/\/t.co\/6AvEEWHuZe https:\/\/t.co\/QGHMT1L5o3","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003ewertkios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3723498853,"id_str":"3723498853","name":"\u3058\u3085\u3093","screen_name":"plqsakhgb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":0,"listed_count":5,"favourites_count":0,"statuses_count":30,"created_at":"Tue Sep 29 07:35:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648763088297005056\/UaIz1Y2u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648763088297005056\/UaIz1Y2u_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6AvEEWHuZe","expanded_url":"http:\/\/bit.ly\/1H6mqID","display_url":"bit.ly\/1H6mqID","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":661824646723928065,"id_str":"661824646723928065","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","url":"https:\/\/t.co\/QGHMT1L5o3","display_url":"pic.twitter.com\/QGHMT1L5o3","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824647986479104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824647986479104,"source_status_id_str":"661824647986479104","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":661824646723928065,"id_str":"661824646723928065","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","url":"https:\/\/t.co\/QGHMT1L5o3","display_url":"pic.twitter.com\/QGHMT1L5o3","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824647986479104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824647986479104,"source_status_id_str":"661824647986479104","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6AvEEWHuZe","expanded_url":"http:\/\/bit.ly\/1H6mqID","display_url":"bit.ly\/1H6mqID","indices":[58,81]}],"user_mentions":[{"screen_name":"plqsakhgb","name":"\u3058\u3085\u3093","id":3723498853,"id_str":"3723498853","indices":[3,13]}],"symbols":[],"media":[{"id":661824646723928065,"id_str":"661824646723928065","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","url":"https:\/\/t.co\/QGHMT1L5o3","display_url":"pic.twitter.com\/QGHMT1L5o3","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824647986479104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824647986479104,"source_status_id_str":"661824647986479104","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":661824646723928065,"id_str":"661824646723928065","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GAnuUAAE6RMt.jpg","url":"https:\/\/t.co\/QGHMT1L5o3","display_url":"pic.twitter.com\/QGHMT1L5o3","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824647986479104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824647986479104,"source_status_id_str":"661824647986479104","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984664"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678437138432,"id_str":"663727678437138432","text":"Me hubiese gustado nacer con los labios de lali esposito o loa de kylie jenner luego del botox. Pero no, naci con estos \ud83d\ude11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215757696,"id_str":"215757696","name":"Valentina \u2020","screen_name":"JelouValentina","location":null,"url":null,"description":"Me auto-denomino argentiguaya, vampiro, lobo, conejo, Sra. Salvatore, Sra. Cipriano, pelirroja.. o simplemente Valentina.","protected":false,"verified":false,"followers_count":106,"friends_count":263,"listed_count":0,"favourites_count":646,"statuses_count":3486,"created_at":"Sun Nov 14 20:54:11 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453924149111451648\/Ee7gTkrX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453924149111451648\/Ee7gTkrX.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645035955771056128\/A6QfzY2d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645035955771056128\/A6QfzY2d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215757696\/1446783196","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984660"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424375296,"id_str":"663727678424375296","text":"@khajaroan \u0e17\u0e33\u0e2d\u0e30\u0e44\u0e23\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e23\u0e31\u0e1a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727389898215424,"in_reply_to_status_id_str":"663727389898215424","in_reply_to_user_id":2396522803,"in_reply_to_user_id_str":"2396522803","in_reply_to_screen_name":"khajaroan","user":{"id":4124813593,"id_str":"4124813593","name":"\u0e1c\u0e49\u0e32\u0e02\u0e32\u0e27 \u0e40\u0e1b\u0e37\u0e49\u0e2d\u0e19\u0e1d\u0e38\u0e48\u0e19","screen_name":"ZVKcIKKe4QPT6Qd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":482,"listed_count":0,"favourites_count":22,"statuses_count":11,"created_at":"Wed Nov 04 14:25:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662088436065538048\/ZYXV7dO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662088436065538048\/ZYXV7dO2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"khajaroan","name":"otto","id":2396522803,"id_str":"2396522803","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678436999168,"id_str":"663727678436999168","text":"Dos a\u00f1os del bt\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\udc98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1268406301,"id_str":"1268406301","name":"Emi","screen_name":"Emmarriposa","location":"argentina-Campana","url":"https:\/\/www.facebook.com\/emii.riposa?fref=ts","description":"9\/11\/2013 3\/10\/2014|","protected":false,"verified":false,"followers_count":303,"friends_count":442,"listed_count":1,"favourites_count":1589,"statuses_count":9967,"created_at":"Fri Mar 15 00:44:31 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657410561295175680\/0Z5hKxjU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657410561295175680\/0Z5hKxjU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268406301\/1445573866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4afa2757051c5192","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4afa2757051c5192.json","place_type":"admin","name":"Buenos Aires","full_name":"Buenos Aires, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-63.393860,-41.035009],[-63.393860,-33.260144],[-56.665836,-33.260144],[-56.665836,-41.035009]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984660"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453747712,"id_str":"663727678453747712","text":"I won't let anyone hurt you. As long as I'm here, you're untouchable..!","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242074050,"id_str":"3242074050","name":"Unya","screen_name":"unya_enbot","location":null,"url":null,"description":"H-Huh..?","protected":false,"verified":false,"followers_count":6,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4770,"created_at":"Thu Jun 11 09:21:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610810969502019585\/kY8aszRo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610810969502019585\/kY8aszRo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242074050\/1434460583","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984664"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678449541120,"id_str":"663727678449541120","text":"#Ticket - 2 tickets The Bridges of Madison County 1\/15 FRI 8pm Ahmanson Theatre LA 01\/15: C $498.7... https:\/\/t.co\/7KR6CZ61a4 #Events_CA","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882592135,"id_str":"2882592135","name":"Top Events Canadian","screen_name":"LiveEvents_ca","location":"Canada","url":"http:\/\/winksite.com\/liveevents\/ticketsUS","description":"Live Events #Canadian : Looking for a ticket, a concert ticket, show, theater, sports \u00e9vennement, cinema ... come check alerts worldwide","protected":false,"verified":false,"followers_count":437,"friends_count":200,"listed_count":99,"favourites_count":0,"statuses_count":275471,"created_at":"Tue Nov 18 13:39:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534713273338568704\/yf5U4lP2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534713273338568704\/yf5U4lP2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882592135\/1416320555","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Ticket","indices":[0,7]},{"text":"Events_CA","indices":[127,137]}],"urls":[{"url":"https:\/\/t.co\/7KR6CZ61a4","expanded_url":"http:\/\/ebay.to\/1Hqgl9S","display_url":"ebay.to\/1Hqgl9S","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984663"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678457966592,"id_str":"663727678457966592","text":"@a3m1i7 lamina\u3068\u304bzona\u3068\u304b\u306a\u7b11\n\u3054\u3061\u3083\u3054\u3061\u3083\u306a\u3063\u3066\u304d\u3064\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727325574361088,"in_reply_to_status_id_str":"663727325574361088","in_reply_to_user_id":2401500690,"in_reply_to_user_id_str":"2401500690","in_reply_to_screen_name":"a3m1i7","user":{"id":1701739232,"id_str":"1701739232","name":"\u305f\u304b\u304a","screen_name":"kuhbjdmp","location":"\u5927\u962a\u21c6\u4eac\u90fd","url":null,"description":"\u4eac\u5927\u533b\/\u99ff\u53f0\/\u5927\u624b\u524d\/\u5353\u7403","protected":false,"verified":false,"followers_count":589,"friends_count":490,"listed_count":9,"favourites_count":13415,"statuses_count":12213,"created_at":"Mon Aug 26 11:59:12 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521823474944188416\/8_oTelln_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521823474944188416\/8_oTelln_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1701739232\/1442188708","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"a3m1i7","name":"\u3042(\u2741\u00b0\u0348\u25b5\u00b0\u0348)*\u0cc4\u02da\u307f","id":2401500690,"id_str":"2401500690","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984665"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424416256,"id_str":"663727678424416256","text":"@mogatanpe \u305d\u3070\u7f8e\u5473\u3057\u3044\u3088\u306d\uff01\uff01\u30b9\u30fc\u30d7\u306e\u611f\u899a\u306f\u306a\u3044\u3051\u3069\u3082...\u7b11 \u697d\u3057\u304b\u3063\u305f\u306a\u3089\u306a\u306b\u3088\u308a\u3067\u3059\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727328422330368,"in_reply_to_status_id_str":"663727328422330368","in_reply_to_user_id":198467454,"in_reply_to_user_id_str":"198467454","in_reply_to_screen_name":"mogatanpe","user":{"id":425091386,"id_str":"425091386","name":"\u6b63\u6728\u60c7","screen_name":"smartidiotj71","location":null,"url":null,"description":"\u3067\u3093\u3071\u7d44 \u6700\u4e0a\u3055\u3093\u63a8\u3057\u3067\u3059\uff01\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":54,"friends_count":83,"listed_count":1,"favourites_count":71,"statuses_count":2150,"created_at":"Wed Nov 30 15:03:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602447416860618752\/pGaHCRoy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602447416860618752\/pGaHCRoy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425091386\/1402836557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mogatanpe","name":"\u6700\u4e0a\u3082\u304c","id":198467454,"id_str":"198467454","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678437003265,"id_str":"663727678437003265","text":"#UPDATE: Churchill Comedian Publicly Begs His Girlfriend To Come Back After Breaking Up With Her https:\/\/t.co\/B8FrxlrXgd @TRENDINGKENYA","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3114559697,"id_str":"3114559697","name":"KENYA Celebrity","screen_name":"KECelebrity","location":"Nairobi, Kenya","url":null,"description":"Discover today's biggest #Celebrities and #Entertainment news stories from Kenya's Top Blogs, Newsapaper, TV, Radio & Social Media 24\/7","protected":false,"verified":false,"followers_count":101,"friends_count":21,"listed_count":4,"favourites_count":2,"statuses_count":3326,"created_at":"Wed Mar 25 11:46:10 +0000 2015","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580716973400653825\/iWPFrD6T_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580716973400653825\/iWPFrD6T_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3114559697\/1427289298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"UPDATE","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/B8FrxlrXgd","expanded_url":"http:\/\/bit.ly\/1HCybBq","display_url":"bit.ly\/1HCybBq","indices":[97,120]}],"user_mentions":[{"screen_name":"TRENDINGKENYA","name":"TRENDING","id":1284577981,"id_str":"1284577981","indices":[121,135]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984660"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678441299968,"id_str":"663727678441299968","text":"Link https:\/\/t.co\/fXTU5yI9ya by @selenagomez is the most popular tweet in my news feed today.","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367018222,"id_str":"367018222","name":"Laura P\u0113tersone","screen_name":"_khirsiic","location":"Latvia ","url":"http:\/\/www.draugiem.lv\/user\/974704\/","description":"Dreamer \u2605.\u2022'\u00b4\u00af)","protected":false,"verified":false,"followers_count":71,"friends_count":42,"listed_count":1,"favourites_count":325,"statuses_count":2820,"created_at":"Sat Sep 03 07:03:27 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"lv","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633011327305416704\/AKF2-Ra0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633011327305416704\/AKF2-Ra0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367018222\/1420486207","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fXTU5yI9ya","expanded_url":"http:\/\/ln.is\/po.st\/scms\/OrMCe04Lc\/nKbSU","display_url":"ln.is\/po.st\/scms\/OrM\u2026","indices":[5,28]}],"user_mentions":[{"screen_name":"selenagomez","name":"Selena Gomez","id":23375688,"id_str":"23375688","indices":[32,44]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079984661"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453755904,"id_str":"663727678453755904","text":"@2011_Atool \u304a\u3084\u3059\u307f\u306a\u3055\u3044(\u00b4\u25bd\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723737317945344,"in_reply_to_status_id_str":"663723737317945344","in_reply_to_user_id":2570850402,"in_reply_to_user_id_str":"2570850402","in_reply_to_screen_name":"2011_Atool","user":{"id":3292493310,"id_str":"3292493310","name":"\u5341\u516d\u591c","screen_name":"HISY9ccGXeI3QD0","location":null,"url":null,"description":"p4u2\u7a00\u306b\u30d7\u30ec\u30a4\/\u3044\u3064\u3067\u3082\u30df\u30ca\u30c5\u30ad\u3068\u4e00\u7dd2\r\/\n\u30c7\u30a3\u30d0\u30b2\/\u30ed\u30fc\u30c9\u30e9\u6687\u306a\u6642\u306b\u30d7\u30ec\u30a4\u4e2d\u2026\r\n\u597d\u304d\u306a\u3082\u306e\u306f\u30da\u30eb\u30bd\u30ca\u3001\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u3001FEif\u3001\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3067\u3059!\/\u547c\u3073\u30bf\u30e1OK\n\u4e16\u9593\u77e5\u3089\u305a\u306a\u305f\u3081\u3054\u8ff7\u60d1\u3092\u304a\u304b\u3051\u3057\u3066\u3057\u307e\u3046\u3068\u601d\u3044\u307e\u3059\u304c\u3001\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u203c\n\u30a2\u30a4\u30b3\u30f3\u3092\u5857\u3063\u3066\u9802\u304d\u307e\u3057\u305f!\u672c\u5f53\u3042\u308a\u304c\u3068\u3046!\n\u203b\u7121\u65ad\u8ee2\u8f09\u3001\u8ee2\u7528\u7981\u6b62\u3067\u3059","protected":false,"verified":false,"followers_count":215,"friends_count":235,"listed_count":3,"favourites_count":4798,"statuses_count":3773,"created_at":"Sat Jul 25 11:52:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659416293221642240\/Z2Q6cbUH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659416293221642240\/Z2Q6cbUH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292493310\/1440448471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"2011_Atool","name":"\u8db3\u7acb \u900f @\u871c\u7acb","id":2570850402,"id_str":"2570850402","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984664"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678424379392,"id_str":"663727678424379392","text":"\u7d44\u5408\u304a\u3064\u304b\u308c\u3067\u3057\u305f\u3063\ud83d\ude02\ud83c\udf1f\n1.2.3\u4f4d\u3092KENBI\u72ec\u5360\u51fa\u6765\u3066\u5b09\u3057\u304b\u3063\u305f\uff01\uff01\uff01\uff01\uff01\uff012\u4e07\u306f\u8ab0\u306b\u3082\u6e21\u3055\u3093\uff01\u7b11\n\n1\u5e74\u751f\u304c\u5dee\u3057\u5165\u308c\u3057\u3066\u304f\u308c\u3066\u795e\u3060\u3063\u305f\u3057\u3001\u3001\u3001\u3042\u308a\u304c\u3068\u3046\uff01\uff01\u7b11 https:\/\/t.co\/v9fYCdmHnp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136553518,"id_str":"136553518","name":"\u3086\u3044\u2080\u2732\u0e3a\uff9f*:\u2080","screen_name":"ex_de_lo","location":"\u9577\u5d0e\u770c","url":"https:\/\/instagram.com\/f_yuuui\/","description":"\uff2b\uff25\uff2e\uff22\uff29\u2704 \uff12\u306e\uff12","protected":false,"verified":false,"followers_count":629,"friends_count":572,"listed_count":5,"favourites_count":1459,"statuses_count":21203,"created_at":"Sat Apr 24 07:48:09 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"150FBD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/117467963\/bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/117467963\/bg.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FBFF00","profile_sidebar_fill_color":"FF00AE","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661026442428329985\/QwXeN0gi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661026442428329985\/QwXeN0gi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136553518\/1445268057","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727669175914498,"id_str":"663727669175914498","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzGzUEAIp6nU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzGzUEAIp6nU.jpg","url":"https:\/\/t.co\/v9fYCdmHnp","display_url":"pic.twitter.com\/v9fYCdmHnp","expanded_url":"http:\/\/twitter.com\/ex_de_lo\/status\/663727678424379392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727669175914498,"id_str":"663727669175914498","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzGzUEAIp6nU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzGzUEAIp6nU.jpg","url":"https:\/\/t.co\/v9fYCdmHnp","display_url":"pic.twitter.com\/v9fYCdmHnp","expanded_url":"http:\/\/twitter.com\/ex_de_lo\/status\/663727678424379392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663727669201100800,"id_str":"663727669201100800","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzG5UYAAdc15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzG5UYAAdc15.jpg","url":"https:\/\/t.co\/v9fYCdmHnp","display_url":"pic.twitter.com\/v9fYCdmHnp","expanded_url":"http:\/\/twitter.com\/ex_de_lo\/status\/663727678424379392\/photo\/1","type":"photo","sizes":{"large":{"w":851,"h":851,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663727669519888384,"id_str":"663727669519888384","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzIFUsAAenMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzIFUsAAenMK.jpg","url":"https:\/\/t.co\/v9fYCdmHnp","display_url":"pic.twitter.com\/v9fYCdmHnp","expanded_url":"http:\/\/twitter.com\/ex_de_lo\/status\/663727678424379392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984657"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678453846017,"id_str":"663727678453846017","text":"RT @JuanBernardoL: @MaximAccion35AP F E L I C I D A D E S B U C A Y por sus 21 a\u00f1os de cantonizaci\u00f3n @marcelaguinaga @apguayas https:\/\/t\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314382100,"id_str":"3314382100","name":"Joel Arturo ","screen_name":"ARTURJOELMEN","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":43,"listed_count":0,"favourites_count":10,"statuses_count":3654,"created_at":"Tue Jun 09 02:10:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:57:03 +0000 2015","id":663716935020990465,"id_str":"663716935020990465","text":"@MaximAccion35AP F E L I C I D A D E S B U C A Y por sus 21 a\u00f1os de cantonizaci\u00f3n @marcelaguinaga @apguayas https:\/\/t.co\/R1okW411jB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2847429580,"in_reply_to_user_id_str":"2847429580","in_reply_to_screen_name":"MaximAccion35AP","user":{"id":244669454,"id_str":"244669454","name":"Juan Bernardo Lucero","screen_name":"JuanBernardoL","location":"Guayaquil - Ecuador","url":"http:\/\/www.facebook.com\/julusu","description":"Comunicador, Community Manager, J\u00f3ven empresario guayaquile\u00f1o, Coord.De Comunicaci\u00f3n de @MaximAccion35AP","protected":false,"verified":false,"followers_count":621,"friends_count":937,"listed_count":4,"favourites_count":1344,"statuses_count":3744,"created_at":"Sat Jan 29 21:19:34 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244669454\/1436761479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[0,16]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[85,100]},{"screen_name":"apguayas","name":"AP GUAYAS","id":2958729875,"id_str":"2958729875","indices":[101,110]}],"symbols":[],"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JuanBernardoL","name":"Juan Bernardo Lucero","id":244669454,"id_str":"244669454","indices":[3,17]},{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[19,35]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[104,119]},{"screen_name":"apguayas","name":"AP GUAYAS","id":2958729875,"id_str":"2958729875","indices":[120,129]}],"symbols":[],"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663716935020990465,"source_status_id_str":"663716935020990465","source_user_id":244669454,"source_user_id_str":"244669454"}]},"extended_entities":{"media":[{"id":663716933179727872,"id_str":"663716933179727872","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_CMGW4AA_eIV.jpg","url":"https:\/\/t.co\/R1okW411jB","display_url":"pic.twitter.com\/R1okW411jB","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663716935020990465\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663716935020990465,"source_status_id_str":"663716935020990465","source_user_id":244669454,"source_user_id_str":"244669454"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984664"} +{"delete":{"status":{"id":645419566667923457,"id_str":"645419566667923457","user_id":2979984606,"user_id_str":"2979984606"},"timestamp_ms":"1447079985012"}} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678462124032,"id_str":"663727678462124032","text":"TSUTAYA\u304b\u30a2\u30cb\u30e1\u30a4\u30c8\u304b\u8ff7\u3046\u306a\u2026\u2026 https:\/\/t.co\/pndNoCer0j","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1695680810,"id_str":"1695680810","name":"\u5343\u5bff","screen_name":"Tzsn_","location":null,"url":"http:\/\/pixiv.me\/htkou8","description":"\u3046\u3061\u306f\u5144\u5f1f NARUTO\u30ca\u30eb\u30b9\u30c6\/\u5200\u7537\u5b50 \u304a\u3060\u3066\u7d44 \u30cb\u30ad \u6b4c\u4ed9 \u4ed6\u30b8\u30e3\u30f3\u30ebHQetc\u3002\u6210\u4eba\u6e08\u307f\u3002\u5343\u5bff\u3068\u3044\u3044\u307e\u3059\uff01\u30a8\u30ed\u57a2\uff08@tcoolz_ )","protected":false,"verified":false,"followers_count":155,"friends_count":208,"listed_count":12,"favourites_count":7791,"statuses_count":21915,"created_at":"Sat Aug 24 06:01:01 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644929176084963328\/9jZh3K5m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644929176084963328\/9jZh3K5m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1695680810\/1432152367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727638360408064,"id_str":"663727638360408064","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxUAUwAAKcZN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxUAUwAAKcZN.jpg","url":"https:\/\/t.co\/pndNoCer0j","display_url":"pic.twitter.com\/pndNoCer0j","expanded_url":"http:\/\/twitter.com\/Tzsn_\/status\/663727678462124032\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727638360408064,"id_str":"663727638360408064","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxUAUwAAKcZN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxUAUwAAKcZN.jpg","url":"https:\/\/t.co\/pndNoCer0j","display_url":"pic.twitter.com\/pndNoCer0j","expanded_url":"http:\/\/twitter.com\/Tzsn_\/status\/663727678462124032\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079984666"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678462160896,"id_str":"663727678462160896","text":"@amnifikri mmg pon","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727270884872192,"in_reply_to_status_id_str":"663727270884872192","in_reply_to_user_id":2226253110,"in_reply_to_user_id_str":"2226253110","in_reply_to_screen_name":"amnifikri","user":{"id":1959001800,"id_str":"1959001800","name":"nayl","screen_name":"najwanayli","location":"#1216","url":null,"description":"-ARMY-kookie's-\n vkook\u2665","protected":false,"verified":false,"followers_count":279,"friends_count":293,"listed_count":1,"favourites_count":1308,"statuses_count":9289,"created_at":"Sun Oct 13 16:44:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FE138E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528822115558895616\/9oD2cSa9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528822115558895616\/9oD2cSa9.jpeg","profile_background_tile":true,"profile_link_color":"F58197","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5CB81","profile_text_color":"F5A581","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663610029459636224\/rXYvus4A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663610029459636224\/rXYvus4A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1959001800\/1446928876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amnifikri","name":"yo.lo","id":2226253110,"id_str":"2226253110","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079984666"} +{"created_at":"Mon Nov 09 14:39:44 +0000 2015","id":663727678432776192,"id_str":"663727678432776192","text":"\u00a1Feliz Lunes!\n\n\u00bfY si te digo qu\u00e9 el trabajo por tu bienestar no para? \n\n@MashiRafael #VamosEcuador https:\/\/t.co\/knnmfoxZ5f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2570941956,"id_str":"2570941956","name":"Con Rafael S\u00cd","screen_name":"ConRafaelSi","location":"ECUADOR","url":null,"description":"T\u00fa decides, entre el oscuro pasado o esta hermosa Revoluci\u00f3n en Democracia","protected":false,"verified":false,"followers_count":34338,"friends_count":89,"listed_count":16,"favourites_count":9923,"statuses_count":11266,"created_at":"Mon Jun 16 13:36:49 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639546416692498432\/LpCxQT_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639546416692498432\/LpCxQT_J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2570941956\/1436465515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VamosEcuador","indices":[86,99]}],"urls":[],"user_mentions":[{"screen_name":"MashiRafael","name":"Rafael Correa","id":209780362,"id_str":"209780362","indices":[72,84]}],"symbols":[],"media":[{"id":663727677010907136,"id_str":"663727677010907136","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzj_UkAANfNY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzj_UkAANfNY.jpg","url":"https:\/\/t.co\/knnmfoxZ5f","display_url":"pic.twitter.com\/knnmfoxZ5f","expanded_url":"http:\/\/twitter.com\/ConRafaelSi\/status\/663727678432776192\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":389,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":955,"h":620,"resize":"fit"},"small":{"w":340,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727677010907136,"id_str":"663727677010907136","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzj_UkAANfNY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzj_UkAANfNY.jpg","url":"https:\/\/t.co\/knnmfoxZ5f","display_url":"pic.twitter.com\/knnmfoxZ5f","expanded_url":"http:\/\/twitter.com\/ConRafaelSi\/status\/663727678432776192\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":389,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":955,"h":620,"resize":"fit"},"small":{"w":340,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079984659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682639806464,"id_str":"663727682639806464","text":"RT @AdvDali_Mpofu: For the record:1.South Africa is much much more important than any political party,and 2.NO political party will rule un\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3400826621,"id_str":"3400826621","name":"petrus","screen_name":"makoalapetrus","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":27,"listed_count":1,"favourites_count":40,"statuses_count":16,"created_at":"Mon Aug 03 02:23:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629398550321889281\/xkK7NLsv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629398550321889281\/xkK7NLsv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:04:01 +0000 2015","id":663386500516720640,"id_str":"663386500516720640","text":"For the record:1.South Africa is much much more important than any political party,and 2.NO political party will rule until Jesus returns!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1714904610,"id_str":"1714904610","name":"Dali Mpofu","screen_name":"AdvDali_Mpofu","location":null,"url":null,"description":"Fighter | National Chairperson @EconFreedomZA | Father | Husband | Chiefs fan | Former labourer, political detainee, acting judge & CEO","protected":false,"verified":false,"followers_count":86531,"friends_count":701,"listed_count":134,"favourites_count":1615,"statuses_count":2381,"created_at":"Sat Aug 31 07:25:56 +0000 2013","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000068398625\/0c9acb657048072581d7c7c884306e71.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000068398625\/0c9acb657048072581d7c7c884306e71.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465174928094797824\/YK4sSE7S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465174928094797824\/YK4sSE7S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1714904610\/1399744058","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":87,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AdvDali_Mpofu","name":"Dali Mpofu","id":1714904610,"id_str":"1714904610","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985662"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631413760,"id_str":"663727682631413760","text":"\u042f \u0432\u043e\u0442 \u0441\u0435\u0433\u043e\u0434\u043d\u044f \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043b\u0430 \u043f\u0440\u043e \"19 \u043c\u0438\u043d\u0443\u0442\"\n\u0421\u0435\u0439\u0447\u0430\u0441 \u043c\u0435\u043d\u044f \u0431\u0435\u0441\u044f\u0442 \u043c\u043e\u0438 \u043e\u0434\u043d\u043e\u043a\u043b\u0430\u0441\u0441\u043d\u0438\u043a\u0438\n\u0423 \u043c\u0435\u043d\u044f \u0435\u0441\u0442\u044c \u0434\u043e\u043c\u0430 \u043e\u0445\u043e\u0442\u043d\u0438\u0447\u044c\u0435 \u0440\u0443\u0436\u044c\u0435\n\u0410 \u043a\u043d\u0438\u0433\u0430 \u043e\u0447\u0435\u043d\u044c \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u043b\u044f\u0435\u0442 :)","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":711136086,"id_str":"711136086","name":"\u0437\u0432\u0435\u0437\u0434\u043e\u0447\u043a\u0430","screen_name":"vse_chmoshniki","location":null,"url":null,"description":"\u043e\u0434\u0438\u043d \u0438\u0437 \u0441\u0430\u043c\u044b\u0445 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0445 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439 \u041d\u0427","protected":false,"verified":false,"followers_count":126,"friends_count":73,"listed_count":2,"favourites_count":16681,"statuses_count":15695,"created_at":"Sun Jul 22 19:16:35 +0000 2012","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663473690814881793\/TrtCwdAA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663473690814881793\/TrtCwdAA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711136086\/1427052778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631426048,"id_str":"663727682631426048","text":"RT @laresonancia: La gente se obsesiona por relacionar Rolling Stones con consumo desaforado de drogas... cuando eso es lo que est\u00e1 pasando\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144719608,"id_str":"144719608","name":"C\u00e9sar Valencia ","screen_name":"SinMedirPalabra","location":"Bogot\u00e1, Colombia","url":"http:\/\/fulanoproyecta.com\/","description":"No me hablen de esperanzas vagas persigo realidad-","protected":false,"verified":false,"followers_count":405,"friends_count":1090,"listed_count":10,"favourites_count":950,"statuses_count":9971,"created_at":"Mon May 17 03:48:28 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A1A1A1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465604961242345474\/zUjkiTfo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465604961242345474\/zUjkiTfo.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"58E1E8","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/525613040318676992\/DowUVQ_B_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525613040318676992\/DowUVQ_B_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144719608\/1440462343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:03 +0000 2015","id":663726499888001024,"id_str":"663726499888001024","text":"La gente se obsesiona por relacionar Rolling Stones con consumo desaforado de drogas... cuando eso es lo que est\u00e1 pasando en los colegios","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":10905462,"id_str":"10905462","name":"Caja de Resonancia","screen_name":"laresonancia","location":"\u00dcT: 4.762195,-74.044999","url":"http:\/\/www.eltiempo.com\/blogs\/caja_de_resonancia","description":"Twitter de Carlos Solano. http:\/\/t.co\/i2np3OpyMO \nhttp:\/\/t.co\/Uo9pv3vDux\nhttp:\/\/t.co\/tgiJ9wE9BU - http:\/\/t.co\/Cv2kFnPTXR \nGoogle http:\/\/t.co\/ooJFjVTPjW","protected":false,"verified":false,"followers_count":5284,"friends_count":321,"listed_count":175,"favourites_count":213,"statuses_count":8025,"created_at":"Thu Dec 06 15:24:57 +0000 2007","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"030000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618428241062133764\/TUTL_kIW.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618428241062133764\/TUTL_kIW.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531299861837017088\/XccYH0ul_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531299861837017088\/XccYH0ul_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10905462\/1442012062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"laresonancia","name":"Caja de Resonancia","id":10905462,"id_str":"10905462","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648186880,"id_str":"663727682648186880","text":"RT @marcolimax: Linda, seu namorado j\u00e1 sentou em mais piroca do que voc\u00ea","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97288788,"id_str":"97288788","name":"Dio Leme","screen_name":"aboutdio","location":"Guaruj\u00e1, S\u00e3o Paulo","url":"http:\/\/Instagram.com\/diolimax\/","description":"O universo cuida de todos os seus p\u00e1ssaros.","protected":false,"verified":false,"followers_count":8640,"friends_count":6309,"listed_count":58,"favourites_count":2228,"statuses_count":62114,"created_at":"Wed Dec 16 21:04:41 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491231649296707585\/AT6f4XRZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491231649296707585\/AT6f4XRZ.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635594017225486336\/3saEDmFq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635594017225486336\/3saEDmFq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97288788\/1442198936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:17:52 +0000 2015","id":663359788131201024,"id_str":"663359788131201024","text":"Linda, seu namorado j\u00e1 sentou em mais piroca do que voc\u00ea","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178083519,"id_str":"178083519","name":"100 S","screen_name":"marcolimax","location":null,"url":"http:\/\/Instagram.com\/marcolimax","description":"A mais gorda do grupo","protected":false,"verified":false,"followers_count":9988,"friends_count":8066,"listed_count":169,"favourites_count":1961,"statuses_count":67382,"created_at":"Fri Aug 13 20:48:22 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8E8E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023249333\/6d3bdb6675de76671189d696e75aec48.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023249333\/6d3bdb6675de76671189d696e75aec48.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643164709911437312\/88e4GZ36_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643164709911437312\/88e4GZ36_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178083519\/1437270524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marcolimax","name":"100 S","id":178083519,"id_str":"178083519","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682618716160,"id_str":"663727682618716160","text":"\u30be\u30f3\u30d3\u306f\u6016\u304f\u306a\u3044\u3093\u3060\u3051\u3069\u5e7d\u970a\u7cfb\u306e\u30db\u30e9\u30fc\u306f\u7121\u7406\u2026\u2026\u6620\u753b\u306f\u304a\u308d\u304b\u30b2\u30fc\u30e0\u3067\u3059\u3089\u7121\u7406\u2026\u2026\u5bdd\u308c\u306a\u304f\u306a\u308b\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1318531962,"id_str":"1318531962","name":"7\u624d","screen_name":"7_sai_","location":null,"url":"http:\/\/nanasai.main.jp\/stroika\/","description":"\u30b2\u30fc\u30e0\u3060\u3044\u3059\u304d\u3067\u3059\uff01\u305f\u307e\u306b\u304a\u7d75\u304b\u304d","protected":false,"verified":false,"followers_count":525,"friends_count":143,"listed_count":26,"favourites_count":4087,"statuses_count":5245,"created_at":"Sun Mar 31 15:03:54 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538785425108639744\/fNehRSJI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538785425108639744\/fNehRSJI.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629356246416683008\/b4FLOJ7k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629356246416683008\/b4FLOJ7k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318531962\/1431603365","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985657"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627067904,"id_str":"663727682627067904","text":"@IMNAYE0Nx gut.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727568370032640,"in_reply_to_status_id_str":"663727568370032640","in_reply_to_user_id":1049883434,"in_reply_to_user_id_str":"1049883434","in_reply_to_screen_name":"IMNAYE0Nx","user":{"id":1082977086,"id_str":"1082977086","name":"Kim Dahyun","screen_name":"kdhyunt","location":"#OOH_AHH\ud558\uac8c","url":"http:\/\/instagram.com\/twicetagram","description":"One in a million~! [ONCE & TWICE] || k.a jeces\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nallJYPRP. JYPNation. JYPTEAM. allTWICERP.","protected":false,"verified":false,"followers_count":7186,"friends_count":4606,"listed_count":27,"favourites_count":1532,"statuses_count":77647,"created_at":"Sat Jan 12 13:31:58 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616625362533904384\/7W7RyIww.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616625362533904384\/7W7RyIww.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663032618636587009\/jsvi2MVW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663032618636587009\/jsvi2MVW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082977086\/1446913997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IMNAYE0Nx","name":"NAYEON \uc784\ub098\uc5f0","id":1049883434,"id_str":"1049883434","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631434241,"id_str":"663727682631434241","text":"@PoliciaPor1Dia sacrificios esfuerzo y trabajo en grupo #PoliciaPorUnDia espero poder participar \ud83d\udc6e\ud83d\udc9e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726614161793024,"in_reply_to_status_id_str":"663726614161793024","in_reply_to_user_id":2221968870,"in_reply_to_user_id_str":"2221968870","in_reply_to_screen_name":"PoliciaPor1Dia","user":{"id":3157266665,"id_str":"3157266665","name":"kro caballero","screen_name":"adrikro3012","location":"Barranquilla, Atl\u00e1ntico","url":null,"description":"Administradora financiera en formaci\u00f3n \n\u270cprincesa de Dios\u270c","protected":false,"verified":false,"followers_count":54,"friends_count":369,"listed_count":1,"favourites_count":851,"statuses_count":336,"created_at":"Sat Apr 11 17:28:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659853333927194624\/lUexLsVm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659853333927194624\/lUexLsVm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3157266665\/1446735499","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PoliciaPorUnDia","indices":[56,72]}],"urls":[],"user_mentions":[{"screen_name":"PoliciaPor1Dia","name":"Polic\u00eda por un d\u00eda","id":2221968870,"id_str":"2221968870","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652381184,"id_str":"663727682652381184","text":"@Vicodiina Eu falo mesmo. Falo, grito, explodo, xingo. \u00c9 a fum\u00e7\u00e3o dessa rede social.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726959579541504,"in_reply_to_status_id_str":"663726959579541504","in_reply_to_user_id":1106922774,"in_reply_to_user_id_str":"1106922774","in_reply_to_screen_name":"Vicodiina","user":{"id":46943778,"id_str":"46943778","name":"R. \u2661","screen_name":"leoasolta","location":"29\u00b010\u20325\u2033 S 51\u00b031\u20320\u2033 O","url":"http:\/\/nasgarrasdaleoa.wordpress.com","description":"\u2026foi eu quem roubou a sobrancelha da Monalisa. Princesa do figo bichado. Sou de exatas. S\u00f3 n\u00e3o vendo minha alma pro diabo, porque n\u00e3o compro nada com R$ 5,00.","protected":false,"verified":false,"followers_count":3919,"friends_count":276,"listed_count":31,"favourites_count":788,"statuses_count":37860,"created_at":"Sat Jun 13 19:09:49 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106107708\/746211272cdf5f567ec6a911acdd842a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106107708\/746211272cdf5f567ec6a911acdd842a.jpeg","profile_background_tile":true,"profile_link_color":"2F07D1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"F50565","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655766415195156480\/Wo76RN5A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655766415195156480\/Wo76RN5A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46943778\/1444090828","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Vicodiina","name":"La Belle De Jour","id":1106922774,"id_str":"1106922774","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631409664,"id_str":"663727682631409664","text":"RT @rrq_xx: @rrq_xx ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2236676710,"id_str":"2236676710","name":"\u0633\u0648\u0631\u064a \u0631\u0627\u0642\u064a \u0644\u0644\u0645\u0633\u0627\u062c 33 ","screen_name":"aliali_love00","location":"\u0632\u0627\u0626\u0631 \u062d\u0627\u0644\u064a\u0627\u064b \u0641\u064a \u062d\u0627\u0626\u0644 ","url":null,"description":"\u0662\u0662\/\u0664\/\u0661\u0669\u0668\u0663","protected":false,"verified":false,"followers_count":1736,"friends_count":410,"listed_count":5,"favourites_count":27039,"statuses_count":31297,"created_at":"Sat Dec 21 16:43:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575848136863670272\/3xZEaNCw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575848136863670272\/3xZEaNCw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236676710\/1425748724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 20:12:13 +0000 2015","id":658375531252043776,"id_str":"658375531252043776","text":"@rrq_xx ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":654934602570665984,"in_reply_to_status_id_str":"654934602570665984","in_reply_to_user_id":3146587698,"in_reply_to_user_id_str":"3146587698","in_reply_to_screen_name":"rrq_xx","user":{"id":3146587698,"id_str":"3146587698","name":"razzann","screen_name":"rrq_xx","location":"riyadh .","url":null,"description":"snapchat: irrx0","protected":false,"verified":false,"followers_count":979,"friends_count":1948,"listed_count":1,"favourites_count":3,"statuses_count":396,"created_at":"Thu Apr 09 22:07:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649027104374304768\/VunC286Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649027104374304768\/VunC286Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146587698\/1431874975","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rrq_xx","name":"razzann","id":3146587698,"id_str":"3146587698","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rrq_xx","name":"razzann","id":3146587698,"id_str":"3146587698","indices":[3,10]},{"screen_name":"rrq_xx","name":"razzann","id":3146587698,"id_str":"3146587698","indices":[12,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627072000,"id_str":"663727682627072000","text":"\u5bb5\u95c7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874755502,"id_str":"2874755502","name":"\u8001\u5e2b\u63d0\u7763@birds of steel","screen_name":"K_Kagamin","location":"\u5927\u6e4a\u8b66\u5099\u5e9c:2015\/2\/17\u7740\u4efb","url":null,"description":"\u3069\u3046\u3082\u3001\u8001\u5e2b\u3068\u7533\u3057\u307e\u3059\u3002\u63d0\u7763\u696d\u306e\u508d\u3089\u3001\u6687\u3092\u898b\u3064\u3051\u3066\u306f\u8266\u5a18\u305f\u3061\u306eSS\u3092\u66f8\u3044\u3066\u3044\u307e\u3059\u3002\u84bc\u306e\u82f1\u96c4\u3082\u30d7\u30ec\u30a4\u3057\u3066\u3044\u3066\u3001\u719f\u7df4\u642d\u4e57\u54e1\u3092\u76ee\u6307\u3057\u3066\u30b7\u30df\u30e5\u30ec\u30fc\u30bf\u3067\u935b\u3048\u3066\u307e\u3059\u3002\u30b9\u30dd\u30fc\u30c4\u306f\u30b5\u30c3\u30ab\u30fc\u304c\u597d\u304d\u3067\u3001\u65e5\u672c\u4ee3\u8868\u6226\u306f\u30c1\u30a7\u30c3\u30af\u3057\u3066\u307e\u3059\u3002\u4f55\u5352\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":67,"friends_count":75,"listed_count":0,"favourites_count":171,"statuses_count":1658,"created_at":"Fri Oct 24 08:04:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659366964901490688\/FB2kp2y5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659366964901490688\/FB2kp2y5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874755502\/1446157156","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648014848,"id_str":"663727682648014848","text":"RT @cg_20151029: \ube68\ub9ac #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \uc918\ub77c #CROSSGENE \uc774\uc815\ub3c4 \ud588\uc73c\uba74 \ubb50\ub77c\ub3c4 \ud574\uc57c\ud558\ub294 \uac8c \uc544\ub2d0\ucc0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241601482,"id_str":"241601482","name":"\ub9ac\ucf54\ub354\ub97c \uc090\ub9ad\uc090\ub9ad \ubd80\ub294 \ub2e8\ud638\ubc15\ub9d0\ub7ad\uc774","screen_name":"lcjyj0310","location":null,"url":"http:\/\/ask.fm\/lcjyj0310","description":"Cross Gene(\ud06c\ub85c\uc2a4\uc9c4)\uc758 \ud32c. \ub9de\ud314 \uc6d0\ud558\uc2dc\ub294 \ubd84\uc740 \uba58\uc158\uc8fc\uc138\uc694. \ub2e8, \ube44\uacf5\uacc4 \uacc4\uc815\uc774\ub791 \ud504\uc0ac\uac00 \uc54c\uadf8\ub9bc\uc778 \uacc4\uc815\uc740 \uc81c\uc678\ub429\ub2c8\ub2e4. \uc57d\uac04\uc758 \uc77c\ubcf8\uc5b4\uc640 \ub9ac\ucf54\ub354 \uc5f0\uc8fc \uac00\ub2a5. https:\/\/www.youtube.com\/channel\/UC7gfZ1ywhmiQy32sNKR9Nrw\/videos","protected":false,"verified":false,"followers_count":232,"friends_count":174,"listed_count":1,"favourites_count":1122,"statuses_count":5380,"created_at":"Sat Jan 22 17:32:06 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/341982019\/1600cloudsky_1007.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/341982019\/1600cloudsky_1007.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644592810432196608\/Rhovo9jZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644592810432196608\/Rhovo9jZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241601482\/1446597701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:59 +0000 2015","id":663727238018265088,"id_str":"663727238018265088","text":"\ube68\ub9ac #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \uc918\ub77c #CROSSGENE \uc774\uc815\ub3c4 \ud588\uc73c\uba74 \ubb50\ub77c\ub3c4 \ud574\uc57c\ud558\ub294 \uac8c \uc544\ub2d0\ucc0c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194520169,"id_str":"3194520169","name":"\uc544\ubba4\ucf54 \ud53c\ub4dc\ubc31 \uc8fc\uc138\uc694","screen_name":"cg_20151029","location":null,"url":null,"description":"\ud53c\ub4dc\ubc31 \ub2ec\ub77c\uad6c","protected":false,"verified":false,"followers_count":55,"friends_count":44,"listed_count":0,"favourites_count":4,"statuses_count":527,"created_at":"Wed May 13 15:41:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[3,17]},{"text":"CROSSGENE","indices":[21,31]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[20,34]},{"text":"CROSSGENE","indices":[38,48]}],"urls":[],"user_mentions":[{"screen_name":"cg_20151029","name":"\uc544\ubba4\ucf54 \ud53c\ub4dc\ubc31 \uc8fc\uc138\uc694","id":3194520169,"id_str":"3194520169","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682622894081,"id_str":"663727682622894081","text":"\u5bff\u53f8\u304f\u3044\u3066\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093133280,"id_str":"3093133280","name":"\u77f3\u6751\u5065\u6597","screen_name":"taketo3102","location":null,"url":null,"description":"\u6d25\u8efd\u2192\u85e4\u5712 \u273cMAC\u273c B\u3068O 6\u4eba\u304c\u3044\u3061\u3070\u3093\u697d\u3057\u3044\u6642 7.6 \u307f\u304f\u3068\u304b\u79cb\u5143\u3068\u304b\u76f8\u99ac\u3068\u304b\u30ed\u30b0\u30a4\u30f3\uff7c\uff83\uff99","protected":false,"verified":false,"followers_count":140,"friends_count":106,"listed_count":0,"favourites_count":200,"statuses_count":559,"created_at":"Tue Mar 17 10:01:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649210652389576704\/ooYH4LoY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649210652389576704\/ooYH4LoY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3093133280\/1443618765","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985658"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682622849024,"id_str":"663727682622849024","text":"\u5fcd\u305f\u307e\u5316\u57a2\u306b\u98f2\u307f\u8fbc\u307e\u308c\u308b\u3068\u672c\u57a2\u306b\u3042\u307e\u308a\u9854\u3092\u51fa\u3055\u306a\u304f\u306a\u308b","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2275426452,"id_str":"2275426452","name":"\u5fcd\u305f\u307e\u5316\u3042\u308b\u3042\u308bbot","screen_name":"nintam_K_aruaru","location":"\u5fcd\u8853\u5b66\u5712\u3067\u306f\u306a\u3044","url":null,"description":"\u3053\u308c\u306f\u5df1\u306e\u5984\u60f3\u529b\u3068\u6226\u3063\u305f\u3068\u3042\u308b\u5148\u4eba\u305f\u3061\u306e\u6559\u3048\u3067\u3042\u308b","protected":false,"verified":false,"followers_count":15,"friends_count":16,"listed_count":0,"favourites_count":2,"statuses_count":13060,"created_at":"Sat Jan 04 02:32:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419295884275236864\/bxS6WvLE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419295884275236864\/bxS6WvLE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275426452\/1388805089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985658"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648190976,"id_str":"663727682648190976","text":"RT @comm_wien: Kunst & Kultur Mix wurde soeben publiziert! https:\/\/t.co\/rIosuqvUbm Vielen Dank an @GeorgeTenner @buy_art_buy_art","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":811604010,"id_str":"811604010","name":"krystyane","screen_name":"krystyan45","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1537,"friends_count":1814,"listed_count":83,"favourites_count":27548,"statuses_count":65427,"created_at":"Sat Sep 08 20:04:59 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657636854552989696\/-QO3hFdh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657636854552989696\/-QO3hFdh.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417246894583054336\/HNDujai2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417246894583054336\/HNDujai2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811604010\/1426369148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:39 +0000 2015","id":663726901853331456,"id_str":"663726901853331456","text":"Kunst & Kultur Mix wurde soeben publiziert! https:\/\/t.co\/rIosuqvUbm Vielen Dank an @GeorgeTenner @buy_art_buy_art","source":"\u003ca href=\"http:\/\/paper.li\" rel=\"nofollow\"\u003ePaper.li\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58454165,"id_str":"58454165","name":"Beate KRATENA","screen_name":"comm_wien","location":"Austria,Vienna","url":"http:\/\/www.knowwell.at","description":"formerly Mitterhuber. consulting, advertising, marketing, communication strategies, social networking and social media. Loc: Vienna\/Austria.","protected":false,"verified":false,"followers_count":3908,"friends_count":3805,"listed_count":211,"favourites_count":12,"statuses_count":13326,"created_at":"Mon Jul 20 11:51:49 +0000 2009","utc_offset":3600,"time_zone":"Vienna","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060120727\/05ba293b9500a6a0f9a3157da1ad8271.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060120727\/05ba293b9500a6a0f9a3157da1ad8271.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"060361","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462203246774198272\/wpUF7exj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462203246774198272\/wpUF7exj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58454165\/1430146265","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rIosuqvUbm","expanded_url":"http:\/\/paper.li\/mitterhuber\/1320431751?edition_id=47a09480-86ef-11e5-a8c0-0cc47a0d1609","display_url":"paper.li\/mitterhuber\/13\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"GeorgeTenner","name":"George Tenner","id":51736393,"id_str":"51736393","indices":[87,100]},{"screen_name":"buy_art_buy_art","name":"Buy Art","id":2374360430,"id_str":"2374360430","indices":[101,117]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rIosuqvUbm","expanded_url":"http:\/\/paper.li\/mitterhuber\/1320431751?edition_id=47a09480-86ef-11e5-a8c0-0cc47a0d1609","display_url":"paper.li\/mitterhuber\/13\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"comm_wien","name":"Beate KRATENA","id":58454165,"id_str":"58454165","indices":[3,13]},{"screen_name":"GeorgeTenner","name":"George Tenner","id":51736393,"id_str":"51736393","indices":[102,115]},{"screen_name":"buy_art_buy_art","name":"Buy Art","id":2374360430,"id_str":"2374360430","indices":[116,132]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652258304,"id_str":"663727682652258304","text":"RT @mononofumiya: \u5929\u4f7f\u3067\u3059\u304b\uff1f\u7b11 http:\/\/t.co\/nloRThV6XU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3359036780,"id_str":"3359036780","name":"\u7389\u4e95\u8a69\u7e54\u63a8\u3057@\u3082\u3082\u30ce\u30d5\uff12\u5e74","screen_name":"Tsukasa121018","location":null,"url":null,"description":"\u7389\u4e95\u8a69\u7e54\u63a8\u3057\/\u30ce\u30d5\u6b742\u5e74\/\u30ce\u30d5\u3055\u3093\u30d5\u30a9\u30ed\u30d0100%\/\u3057\u304a\u308a\u3093\u597d\u304d\u3067\u3059\/\u305f\u304f\u3055\u3093\u308a\u3077\u304a\u9858\u3044\u3057\u307e\u3059\/\u9ad8\u6d6e\u4e0a\/\u4e43\u6728\u5742","protected":false,"verified":false,"followers_count":775,"friends_count":1002,"listed_count":0,"favourites_count":15,"statuses_count":81,"created_at":"Thu Aug 27 11:41:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656437794072489984\/-O90DW2w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656437794072489984\/-O90DW2w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3359036780\/1444530569","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 25 12:49:15 +0000 2015","id":647392417910407168,"id_str":"647392417910407168","text":"\u5929\u4f7f\u3067\u3059\u304b\uff1f\u7b11 http:\/\/t.co\/nloRThV6XU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328913444,"id_str":"3328913444","name":"\u3082\u306e\u306e\u3075\u307f\u3084","screen_name":"mononofumiya","location":"\u3048\u304f\u307c\u306f\u604b\u306e\u843d\u3068\u3057\u7a74","url":null,"description":"\u590f\u83dc\u5b50\u3061\u3083\u3093\u306e\u7b11\u9854\u306f\u307f\u3093\u306a\u3092\u7b11\u9854\u306b\u3059\u308b\uff01\u30e2\u30ce\u30ce\u30d5\u3055\u3093\u306f\u57fa\u672c\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\u2026","protected":false,"verified":false,"followers_count":1373,"friends_count":1699,"listed_count":5,"favourites_count":227,"statuses_count":262,"created_at":"Mon Aug 24 15:42:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635840039495188480\/2V5925wI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635840039495188480\/2V5925wI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328913444\/1442821094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":647392411270811648,"id_str":"647392411270811648","indices":[8,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":647392411270811648,"id_str":"647392411270811648","indices":[8,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":647392411300179968,"id_str":"647392411300179968","indices":[8,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99HUsAACSxO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99HUsAACSxO.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mononofumiya","name":"\u3082\u306e\u306e\u3075\u307f\u3084","id":3328913444,"id_str":"3328913444","indices":[3,16]}],"symbols":[],"media":[{"id":647392411270811648,"id_str":"647392411270811648","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":647392417910407168,"source_status_id_str":"647392417910407168","source_user_id":3328913444,"source_user_id_str":"3328913444"}]},"extended_entities":{"media":[{"id":647392411270811648,"id_str":"647392411270811648","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99AUkAABlmo.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":647392417910407168,"source_status_id_str":"647392417910407168","source_user_id":3328913444,"source_user_id_str":"3328913444"},{"id":647392411300179968,"id_str":"647392411300179968","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CPv_99HUsAACSxO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPv_99HUsAACSxO.jpg","url":"http:\/\/t.co\/nloRThV6XU","display_url":"pic.twitter.com\/nloRThV6XU","expanded_url":"http:\/\/twitter.com\/mononofumiya\/status\/647392417910407168\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":647392417910407168,"source_status_id_str":"647392417910407168","source_user_id":3328913444,"source_user_id_str":"3328913444"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682618830848,"id_str":"663727682618830848","text":"@Ayoolisa_ OMG your hair in that pic has me dying","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722071055319042,"in_reply_to_status_id_str":"663722071055319042","in_reply_to_user_id":617580531,"in_reply_to_user_id_str":"617580531","in_reply_to_screen_name":"Ayoolisa_","user":{"id":502440684,"id_str":"502440684","name":"\u2606 Brittany \u2606","screen_name":"BrittanyWinde96","location":null,"url":null,"description":"Pootie | 19 | wifed up by @vtorres305 \n12|14|12","protected":false,"verified":false,"followers_count":329,"friends_count":205,"listed_count":2,"favourites_count":5324,"statuses_count":18171,"created_at":"Sat Feb 25 03:47:17 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095548499\/d93a506b4233b13ca40a0971e5ef633c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095548499\/d93a506b4233b13ca40a0971e5ef633c.jpeg","profile_background_tile":true,"profile_link_color":"603048","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659120671402913792\/JEJO9zsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659120671402913792\/JEJO9zsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/502440684\/1445538699","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ayoolisa_","name":"Lisa Garcia","id":617580531,"id_str":"617580531","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985657"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652209152,"id_str":"663727682652209152","text":"#DhamakedaarDilwaleTrailer hfgjykjfhkh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231181506,"id_str":"2231181506","name":"\u2660 Javed \u2660","screen_name":"JoySrkian","location":"india","url":null,"description":"I am the Biggest Fan OF Mega Star SRK","protected":false,"verified":false,"followers_count":1016,"friends_count":214,"listed_count":11,"favourites_count":4476,"statuses_count":29696,"created_at":"Thu Dec 05 08:56:50 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562121685277499392\/X3b_iXvR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562121685277499392\/X3b_iXvR.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719161810882560\/r0FJFVWm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719161810882560\/r0FJFVWm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231181506\/1446979732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[0,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"vi","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656440325,"id_str":"663727682656440325","text":"@la8l3ka0 \u3042\u30fc\u79c1\u3082\u307e\u3068\u3081\u305f\u3044\u306a\u30fc\n\u3061\u3087\u3063\u3068\u304c\u3093\u3070\u3063\u3066\u307f\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727165049929732,"in_reply_to_status_id_str":"663727165049929732","in_reply_to_user_id":3670144213,"in_reply_to_user_id_str":"3670144213","in_reply_to_screen_name":"la8l3ka0","user":{"id":2914491421,"id_str":"2914491421","name":"\u7dcb\u5357","screen_name":"sunflower0230","location":null,"url":null,"description":"\u4e3b\u306a\u8077\u696d\u306f\u63d0\u7763\u3002\u7531\u826f\u3055\u3093\u3068\u52a0\u8cc0\u3055\u3093\u3068\u6469\u8036\u69d8\u3068\u699b\u540d\u3068\u6642\u96e8\u3002\u30df\u30ea\u30aa\u30bf\u521d\u5fc3\u8005\u3002\u30cf\u30a4\u30ad\u30e5\u30fc\u7537\u5b50\u306f\u307f\u3093\u306a\u81f3\u9ad8\u3002\u4e8c\u53e3\u5805\u6cbb\u306f\u30de\u30a4\u30ca\u30fc\u3058\u3083\u306a\u3044\u3002\u60c5\u5831\u96c6\u3081\u3068\u53eb\u3076\u305f\u3081\u3060\u3051\u306e\u57a2\u3002\u30cf\u30a4\u30ad\u30e5\u30fc!!\/\u8266\u3053\u308c\/\u4f0a\u6708\u4fca\/\u9aa8\u55b0\u85e4\u56db\u90ce","protected":false,"verified":false,"followers_count":32,"friends_count":69,"listed_count":0,"favourites_count":3172,"statuses_count":4440,"created_at":"Sun Nov 30 07:17:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543312927936090112\/XQW8ZqB7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543312927936090112\/XQW8ZqB7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914491421\/1418390968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"la8l3ka0","name":"\u30ab\u30e4\u30ce","id":3670144213,"id_str":"3670144213","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656464896,"id_str":"663727682656464896","text":"Am supposed to sleep early but coz #INSPIRITPHLovesLeaderGyu now am tweeting but no complain coz there is forever #Infinite means no end !!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83506113,"id_str":"83506113","name":"elsie esquillo","screen_name":"elsiepooh","location":"manila ","url":null,"description":"luv INFINITE, BIG BANG! Loves Skinfood,Malling & trying to resist overeating hhehee... always think where & how to have extra income for children's need","protected":false,"verified":false,"followers_count":48,"friends_count":384,"listed_count":0,"favourites_count":350,"statuses_count":2208,"created_at":"Mon Oct 19 02:44:27 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1139889005\/tight_hug_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1139889005\/tight_hug_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83506113\/1398396620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"INSPIRITPHLovesLeaderGyu","indices":[35,60]},{"text":"Infinite","indices":[115,124]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656448512,"id_str":"663727682656448512","text":"@MnrlTr0 \n\u3054\u3081\u3093\u306a\u3055\u3044\u306d\u3048\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727296398782464,"in_reply_to_status_id_str":"663727296398782464","in_reply_to_user_id":1545226928,"in_reply_to_user_id_str":"1545226928","in_reply_to_screen_name":"MnrlTr0","user":{"id":2805329173,"id_str":"2805329173","name":"\u306a\u3064","screen_name":"tn06xk0b","location":"mikuni","url":null,"description":"jintan2A \u2764\ufe0e 0406 \u2764\ufe0e \u6625\u304b\u3089\u4fdd\u80b2\u58eb","protected":false,"verified":false,"followers_count":211,"friends_count":213,"listed_count":0,"favourites_count":976,"statuses_count":3129,"created_at":"Fri Sep 12 10:00:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636050940382998530\/J6ei4JBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636050940382998530\/J6ei4JBD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805329173\/1432879281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MnrlTr0","name":"\u2160\u5341 \u03c9 L''","id":1545226928,"id_str":"1545226928","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682643857408,"id_str":"663727682643857408","text":"RT @NNANOOB: \u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e16\u0e48\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e40\u0e2a\u0e37\u0e49\u0e2d\u0e19\u0e31\u0e01\u0e01\u0e35\u0e2c\u0e32\u0e43\u0e2b\u0e49\u0e17\u0e35\u0e48\u0e21\u0e2b\u0e32\u0e25\u0e31\u0e22\u0e18\u0e23\u0e23\u0e21\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c\u0e04\u0e23\u0e49\u0e32\u0e1a \u0e23\u0e2d\u0e14\u0e39 \u0e23\u0e2d\u0e2d\u0e38\u0e14\u0e2b\u0e19\u0e38\u0e19\u0e01\u0e32\u0e19\u0e19\u0e30\u0e15\u0e31\u0e27\u0e40\u0e17\u0e2d\u0e2d\u0e2d #\u0e17\u0e35\u0e21\u0e19\u0e30\u0e19\u0e39\u0e49\u0e1a https:\/\/t.co\/KdBbeYIvbD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":938282250,"id_str":"938282250","name":"\u0e1e\u0e25\u0e31\u0e2a \u0e04\u0e19\u0e40\u0e14\u0e34\u0e21","screen_name":"Jirapudnoii","location":"\u0e1a\u0e38\u0e23\u0e35\u0e23\u0e31\u0e21\u0e22\u0e4c, \u0e08.\u0e1a\u0e38\u0e23\u0e35\u0e23\u0e31\u0e21\u0e22\u0e4c","url":"https:\/\/m.facebook.com\/jirapud.sonaca","description":"Jirapud Sonaka.\nI\u2019me 17years old.\nMy birthday is the 14th of December 1997.\nI'm studying at Bualuangwitthayakhom.\nI\u2019m in Mathayom 6\/5.\nThx u follow me and rtfv.","protected":false,"verified":false,"followers_count":567,"friends_count":495,"listed_count":1,"favourites_count":1752,"statuses_count":28744,"created_at":"Sat Nov 10 03:24:32 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650590322435620864\/CLQTakIa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650590322435620864\/CLQTakIa.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662192207802208256\/nEQ7iaKO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662192207802208256\/nEQ7iaKO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/938282250\/1446713898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:15:20 +0000 2015","id":663646039161769984,"id_str":"663646039161769984","text":"\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e16\u0e48\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e40\u0e2a\u0e37\u0e49\u0e2d\u0e19\u0e31\u0e01\u0e01\u0e35\u0e2c\u0e32\u0e43\u0e2b\u0e49\u0e17\u0e35\u0e48\u0e21\u0e2b\u0e32\u0e25\u0e31\u0e22\u0e18\u0e23\u0e23\u0e21\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c\u0e04\u0e23\u0e49\u0e32\u0e1a \u0e23\u0e2d\u0e14\u0e39 \u0e23\u0e2d\u0e2d\u0e38\u0e14\u0e2b\u0e19\u0e38\u0e19\u0e01\u0e32\u0e19\u0e19\u0e30\u0e15\u0e31\u0e27\u0e40\u0e17\u0e2d\u0e2d\u0e2d #\u0e17\u0e35\u0e21\u0e19\u0e30\u0e19\u0e39\u0e49\u0e1a https:\/\/t.co\/KdBbeYIvbD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2807985450,"id_str":"2807985450","name":"NaNoob","screen_name":"NNANOOB","location":null,"url":null,"description":"ig: nnanoob \u0e19\u0e30\u0e19\u0e39\u0e49\u0e1a\u0e04\u0e19\u0e40\u0e14\u0e34\u0e21\u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e1a\u0e2d\u0e01 sonteen_store 's owner","protected":false,"verified":false,"followers_count":47004,"friends_count":142,"listed_count":39,"favourites_count":5773,"statuses_count":6276,"created_at":"Sat Sep 13 19:22:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661380427047800832\/ka7z8kKH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661380427047800832\/ka7z8kKH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2807985450\/1410636850","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":641,"favorite_count":761,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e19\u0e30\u0e19\u0e39\u0e49\u0e1a","indices":[81,91]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646023772803072,"id_str":"663646023772803072","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","url":"https:\/\/t.co\/KdBbeYIvbD","display_url":"pic.twitter.com\/KdBbeYIvbD","expanded_url":"http:\/\/twitter.com\/NNANOOB\/status\/663646039161769984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646023772803072,"id_str":"663646023772803072","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","url":"https:\/\/t.co\/KdBbeYIvbD","display_url":"pic.twitter.com\/KdBbeYIvbD","expanded_url":"http:\/\/twitter.com\/NNANOOB\/status\/663646039161769984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e19\u0e30\u0e19\u0e39\u0e49\u0e1a","indices":[94,104]}],"urls":[],"user_mentions":[{"screen_name":"NNANOOB","name":"NaNoob","id":2807985450,"id_str":"2807985450","indices":[3,11]}],"symbols":[],"media":[{"id":663646023772803072,"id_str":"663646023772803072","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","url":"https:\/\/t.co\/KdBbeYIvbD","display_url":"pic.twitter.com\/KdBbeYIvbD","expanded_url":"http:\/\/twitter.com\/NNANOOB\/status\/663646039161769984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663646039161769984,"source_status_id_str":"663646039161769984","source_user_id":2807985450,"source_user_id_str":"2807985450"}]},"extended_entities":{"media":[{"id":663646023772803072,"id_str":"663646023772803072","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW-it-UEAAptll.jpg","url":"https:\/\/t.co\/KdBbeYIvbD","display_url":"pic.twitter.com\/KdBbeYIvbD","expanded_url":"http:\/\/twitter.com\/NNANOOB\/status\/663646039161769984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663646039161769984,"source_status_id_str":"663646039161769984","source_user_id":2807985450,"source_user_id_str":"2807985450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079985663"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682639654913,"id_str":"663727682639654913","text":"\u6b63\u7fa9\u306e\u3082\u305f\u3089\u3059\u6700\u5927\u306e\u5b9f\u308a\u306f\u5fc3\u306e\u5e73\u9759\u306a\u308a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1921727912,"id_str":"1921727912","name":"\u30a8\u30d4\u30af\u30ed\u30b9","screen_name":"deadhorsenewsit","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":36,"friends_count":46,"listed_count":0,"favourites_count":0,"statuses_count":4323,"created_at":"Tue Oct 01 00:27:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000531507523\/7f45d4b9d53b222d8fcabeb91d8b4f31_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000531507523\/7f45d4b9d53b222d8fcabeb91d8b4f31_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985662"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648195072,"id_str":"663727682648195072","text":"RT GardeningLif: Growing vegetables from food waste is a ... - #gardens #gardening #garden #landscaping #diy \u2026 https:\/\/t.co\/rgzDmeKrD9","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3943329389,"id_str":"3943329389","name":"Back Yard Boss","screen_name":"backyardboss","location":"United States","url":"http:\/\/www.backyardboss.net","description":"http:\/\/BackYardBoss.net - A place for #backyard projects and #DIY fanatics. #Yardwork, product reviews, and inspiration for your next home and yard project.","protected":false,"verified":false,"followers_count":270,"friends_count":228,"listed_count":173,"favourites_count":0,"statuses_count":27716,"created_at":"Tue Oct 13 04:33:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653790986691346432\/GsJpmpqY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653790986691346432\/GsJpmpqY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3943329389\/1444950151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gardens","indices":[63,71]},{"text":"gardening","indices":[72,82]},{"text":"garden","indices":[83,90]},{"text":"landscaping","indices":[91,103]},{"text":"diy","indices":[104,108]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727374928842753,"id_str":"663727374928842753","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIh-pWEAECAke.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIh-pWEAECAke.jpg","url":"https:\/\/t.co\/rgzDmeKrD9","display_url":"pic.twitter.com\/rgzDmeKrD9","expanded_url":"http:\/\/twitter.com\/GardeningLif\/status\/663727375352520708\/photo\/1","type":"photo","sizes":{"small":{"w":256,"h":680,"resize":"fit"},"large":{"w":715,"h":1896,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":452,"h":1200,"resize":"fit"}},"source_status_id":663727375352520708,"source_status_id_str":"663727375352520708","source_user_id":3344670784,"source_user_id_str":"3344670784"}]},"extended_entities":{"media":[{"id":663727374928842753,"id_str":"663727374928842753","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIh-pWEAECAke.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIh-pWEAECAke.jpg","url":"https:\/\/t.co\/rgzDmeKrD9","display_url":"pic.twitter.com\/rgzDmeKrD9","expanded_url":"http:\/\/twitter.com\/GardeningLif\/status\/663727375352520708\/photo\/1","type":"photo","sizes":{"small":{"w":256,"h":680,"resize":"fit"},"large":{"w":715,"h":1896,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":452,"h":1200,"resize":"fit"}},"source_status_id":663727375352520708,"source_status_id_str":"663727375352520708","source_user_id":3344670784,"source_user_id_str":"3344670784"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682635608064,"id_str":"663727682635608064","text":"RT @BeauxProverbes: Pour plus de #citations et de #proverbes, visitez https:\/\/t.co\/qhZhTxiRJu https:\/\/t.co\/2Bc9oDurBD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252713152,"id_str":"3252713152","name":"marie c","screen_name":"diabolofraise73","location":"Chamb\u00e9ry, Rh\u00f4ne-Alpes","url":null,"description":"je suis ce que je tweete","protected":false,"verified":false,"followers_count":14,"friends_count":32,"listed_count":12,"favourites_count":1061,"statuses_count":1494,"created_at":"Wed May 13 20:09:59 +0000 2015","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663192614032818177\/IL-GxDud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663192614032818177\/IL-GxDud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252713152\/1446952414","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:51 +0000 2015","id":663719151383535617,"id_str":"663719151383535617","text":"Pour plus de #citations et de #proverbes, visitez https:\/\/t.co\/qhZhTxiRJu https:\/\/t.co\/2Bc9oDurBD","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":542862041,"id_str":"542862041","name":"Les Beaux Proverbes","screen_name":"BeauxProverbes","location":null,"url":"http:\/\/www.lesbeauxproverbes.com","description":"\u00abLes Beaux Proverbes\u00bb est un recueil de citations, de paroles, de proverbes, de r\u00e9flexions et d'inspirations.","protected":false,"verified":false,"followers_count":2323,"friends_count":1446,"listed_count":18,"favourites_count":2891,"statuses_count":502,"created_at":"Sun Apr 01 21:23:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486837975\/BG2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486837975\/BG2.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566688740005789696\/WqhT2hzN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566688740005789696\/WqhT2hzN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542862041\/1423944514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"citations","indices":[13,23]},{"text":"proverbes","indices":[30,40]}],"urls":[{"url":"https:\/\/t.co\/qhZhTxiRJu","expanded_url":"http:\/\/LesBeauxProverbes.com","display_url":"LesBeauxProverbes.com","indices":[50,73]}],"user_mentions":[],"symbols":[],"media":[{"id":663719150909460481,"id_str":"663719150909460481","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","url":"https:\/\/t.co\/2Bc9oDurBD","display_url":"pic.twitter.com\/2Bc9oDurBD","expanded_url":"http:\/\/twitter.com\/BeauxProverbes\/status\/663719151383535617\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":350,"resize":"fit"},"large":{"w":500,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719150909460481,"id_str":"663719150909460481","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","url":"https:\/\/t.co\/2Bc9oDurBD","display_url":"pic.twitter.com\/2Bc9oDurBD","expanded_url":"http:\/\/twitter.com\/BeauxProverbes\/status\/663719151383535617\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":350,"resize":"fit"},"large":{"w":500,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"citations","indices":[33,43]},{"text":"proverbes","indices":[50,60]}],"urls":[{"url":"https:\/\/t.co\/qhZhTxiRJu","expanded_url":"http:\/\/LesBeauxProverbes.com","display_url":"LesBeauxProverbes.com","indices":[70,93]}],"user_mentions":[{"screen_name":"BeauxProverbes","name":"Les Beaux Proverbes","id":542862041,"id_str":"542862041","indices":[3,18]}],"symbols":[],"media":[{"id":663719150909460481,"id_str":"663719150909460481","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","url":"https:\/\/t.co\/2Bc9oDurBD","display_url":"pic.twitter.com\/2Bc9oDurBD","expanded_url":"http:\/\/twitter.com\/BeauxProverbes\/status\/663719151383535617\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":350,"resize":"fit"},"large":{"w":500,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":663719151383535617,"source_status_id_str":"663719151383535617","source_user_id":542862041,"source_user_id_str":"542862041"}]},"extended_entities":{"media":[{"id":663719150909460481,"id_str":"663719150909460481","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBDRyVEAEzdAo.jpg","url":"https:\/\/t.co\/2Bc9oDurBD","display_url":"pic.twitter.com\/2Bc9oDurBD","expanded_url":"http:\/\/twitter.com\/BeauxProverbes\/status\/663719151383535617\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":350,"resize":"fit"},"large":{"w":500,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":663719151383535617,"source_status_id_str":"663719151383535617","source_user_id":542862041,"source_user_id_str":"542862041"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079985661"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631266304,"id_str":"663727682631266304","text":"@munei \u7e70\u308a\u8fd4\u3057\u30e2\u30ce\u306a\u306e\u306b\u8d77\u627f\u8ee2\u7d50\u3067\u304d\u3066\u308b\u306e\u304c\u3059\u3054\u3044\u308f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677275812921344,"in_reply_to_status_id_str":"663677275812921344","in_reply_to_user_id":6441552,"in_reply_to_user_id_str":"6441552","in_reply_to_screen_name":"munei","user":{"id":14083604,"id_str":"14083604","name":"\u30c8\u30eb\u30c3\u30c6\u30a3\u30fb\u30da\u30cb\u30c3\u30c6\u30a3","screen_name":"kkobing","location":"OEDO","url":"http:\/\/kkobing.tumblr.com\/","description":"Drive my blues away.","protected":false,"verified":false,"followers_count":336,"friends_count":428,"listed_count":17,"favourites_count":65,"statuses_count":7493,"created_at":"Wed Mar 05 15:47:42 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/123967868\/page_background3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/123967868\/page_background3.jpg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607568246682714113\/1HiY5SJB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607568246682714113\/1HiY5SJB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14083604\/1397083077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"munei","name":"k@ho \uf8ff","id":6441552,"id_str":"6441552","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648059905,"id_str":"663727682648059905","text":"@npc_replicant \u304a\u9858\u3044\u3057\u307e\u3059\u3002\u5fc3\u306e\u5e95\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u3042\u3068\u8276\u6f22\u3057\u3088\u3046\u3088\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727482764292098,"in_reply_to_status_id_str":"663727482764292098","in_reply_to_user_id":3025170216,"in_reply_to_user_id_str":"3025170216","in_reply_to_screen_name":"npc_replicant","user":{"id":1212371570,"id_str":"1212371570","name":"\u305f\u3086\u677e","screen_name":"ak_t22","location":"\u6771\u5317(\u798f\u5cf6)","url":"http:\/\/sp.cosp.jp\/prof.aspx?id=294430","description":"(CN:\u305f\u3086\u307e)\u6210\u4eba\u6e08\u306e\u8150\u5973\u5b50\u306a\uff7a\uff7d\uff8c\uff9f\uff9a\uff72\uff94\uff70\u3002\u305f\u307e\u306b\u7d75\u63cf\u304d\u3002\u52a0\u5dde\u6e05\u5149\u3068\u84bc\u4e95\u7fd4\u592a\u304f\u3093\u306b\u5922\u4e2d\uff01\uff01\u3068\u3046\u3089\u3076\u00b7\u3042\u3093\uff7d\uff80\uff65\uff8d\uff9f\uff80\uff9e\uff99\u00b7HQ\u00b7DBL\uff65\u3046\u305f\uff8c\uff9f\uff98\uff65\uff97\uff8c\uff9e\uff97\uff72\uff8c\uff9e\uff65\u3042\u304b\u3042\u304b\uff65\uff9c-\uff84\uff98\u00b7\u7d42\uff7e\uff97\u00b7\uff80\uff9e\uff72\uff94\u00b7free\u3002love","protected":false,"verified":false,"followers_count":417,"friends_count":348,"listed_count":7,"favourites_count":720,"statuses_count":37248,"created_at":"Sat Feb 23 15:04:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660652340647628800\/aIybxh-K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660652340647628800\/aIybxh-K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1212371570\/1445877642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"npc_replicant","name":"\u70ca@\u3042\u304b\u308b\u3044\u30b9\u30a4\u30d7\u751f\u6d3b","id":3025170216,"id_str":"3025170216","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627104769,"id_str":"663727682627104769","text":"@nagom200 \n\u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059(*\u00b4\u03c9\uff40*)\n\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044m(*_ _)m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3182090076,"in_reply_to_user_id_str":"3182090076","in_reply_to_screen_name":"nagom200","user":{"id":3804003614,"id_str":"3804003614","name":"\u307a\u3063\u305f\u3093","screen_name":"pettan0215","location":"\u5927\u962a","url":null,"description":"\u3082\u3082\u304f\u308a\u3068GUMI\u304c\u597d\u304d\u3067\u3059 \u6bce\u65e5\u3044\u3061\u3054\u30df\u30eb\u30af\uff12\u672c\u98f2\u3093\u3067\u8eab\u9577\u4f38\u3070\u3057\u305f\u3044\u3050\u3089\u3044\u3082\u3082\u304f\u308a\u597d\u304d\u3067\u3059 \u3082\u3082\u304f\u308a\u597d\u304d\u306a\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044\u306e\u3067\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044 \u5f8c\u30c4\u30e0\u30c4\u30e0\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":40,"friends_count":42,"listed_count":2,"favourites_count":310,"statuses_count":311,"created_at":"Tue Oct 06 14:22:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662913687523430400\/z1wu69qU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662913687523430400\/z1wu69qU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3804003614\/1446886516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nagom200","name":"\u305d\u30fc\u307e","id":3182090076,"id_str":"3182090076","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652254209,"id_str":"663727682652254209","text":"@null Hari ini hari Senin,Tanggal 09 Bulan November Tahun 2015 Jam 09:37:55","source":"\u003ca href=\"http:\/\/yoshika23218.com\/twitcle\/\" rel=\"nofollow\"\u003etwitcle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":1217658002,"id_str":"1217658002","name":"LELANG ACC","screen_name":"kidsseu","location":null,"url":null,"description":"LELANG ACC INI 280k VIA XL","protected":false,"verified":false,"followers_count":7865,"friends_count":5221,"listed_count":5,"favourites_count":1408,"statuses_count":145382,"created_at":"Mon Feb 25 08:26:26 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620459011234619393\/KG1mk-mp.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620459011234619393\/KG1mk-mp.png","profile_background_tile":true,"profile_link_color":"010101","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631282688,"id_str":"663727682631282688","text":"@ZuZuhAidah kaaan and i like how they didn't really focus on the romance between the two","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727065921814532,"in_reply_to_status_id_str":"663727065921814532","in_reply_to_user_id":190146306,"in_reply_to_user_id_str":"190146306","in_reply_to_screen_name":"ZuZuhAidah","user":{"id":1394576406,"id_str":"1394576406","name":"Najiha","screen_name":"babyelfs_","location":"SG","url":"http:\/\/Instagram.com\/nudgeeeee","description":"15 & shooter","protected":false,"verified":false,"followers_count":383,"friends_count":241,"listed_count":1,"favourites_count":3662,"statuses_count":19941,"created_at":"Wed May 01 12:54:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624575463596273664\/2UEzNtIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624575463596273664\/2UEzNtIP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1394576406\/1445939008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ZuZuhAidah","name":"zuhhh.","id":190146306,"id_str":"190146306","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631282689,"id_str":"663727682631282689","text":"\u0e40\u0e08\u0e47\u0e1a\u0e25\u0e34\u0e49\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1c\u0e25\u0e40\u0e09\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372282278,"id_str":"372282278","name":"\u2658 \u0e1a\u0e35\u0e40\u0e21\u0e47\u0e18","screen_name":"bhyukchic","location":"\u0e19\u0e34\u0e48\u0e07\u0e19\u0e34\u0e48\u0e07\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46 ._.","url":null,"description":"\u2661 1D | EUNHAE | L.TAEMIN | V | BANDITA | STEREK | \u2708\ufe0f","protected":false,"verified":false,"followers_count":665,"friends_count":394,"listed_count":2,"favourites_count":20553,"statuses_count":88056,"created_at":"Mon Sep 12 13:53:41 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516100792613236736\/x2PE_4Eg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516100792613236736\/x2PE_4Eg.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662138317526331392\/rljyWIbQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662138317526331392\/rljyWIbQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/372282278\/1443375658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079985660"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682618679296,"id_str":"663727682618679296","text":"RT @9YOoNBOT: +\n\n\u8ab0\u304b\u529b\u6301\u3061\u3088\u3093\u3067\u304d\u3066\n\u3055\u3063\u304d\u304b\u3089\u30d4\u30af\u30eb\u30b9\u306e\u30d3\u30f3\u304c\u958b\u304b\u306a\u3044\n\u304b\u308c\u3053\u308c4\u6642\u9593\u306f\u6226\u3063\u3066\u308b\n\u3082\u3046\u5272\u308d\u3046\u304b\u306a\ud83d\udd28\n\n+","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3515518634,"id_str":"3515518634","name":"\u9418 \u9249","screen_name":"BASE48KJH","location":"\u541b\u306e\u7b11\u9854\u306e\u69d8\u306b\u5927\u3063\u304d\u306a \u671d\u9854\u304c\u597d\u304d","url":null,"description":"#JONGHYUN #BASE","protected":false,"verified":false,"followers_count":23,"friends_count":23,"listed_count":0,"favourites_count":37,"statuses_count":804,"created_at":"Thu Sep 10 12:45:39 +0000 2015","utc_offset":-32400,"time_zone":"GMT+9","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662653099475992576\/Jh78kyl3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662653099475992576\/Jh78kyl3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3515518634\/1446823276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727365168627713,"id_str":"663727365168627713","text":"+\n\n\u8ab0\u304b\u529b\u6301\u3061\u3088\u3093\u3067\u304d\u3066\n\u3055\u3063\u304d\u304b\u3089\u30d4\u30af\u30eb\u30b9\u306e\u30d3\u30f3\u304c\u958b\u304b\u306a\u3044\n\u304b\u308c\u3053\u308c4\u6642\u9593\u306f\u6226\u3063\u3066\u308b\n\u3082\u3046\u5272\u308d\u3046\u304b\u306a\ud83d\udd28\n\n+","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3637213514,"id_str":"3637213514","name":"\u6f64\u5a25","screen_name":"9YOoNBOT","location":null,"url":"https:\/\/instagram.com\/yoona__lim\/","description":"SNSD Yoon A Lim ' fake account '","protected":false,"verified":false,"followers_count":49,"friends_count":46,"listed_count":0,"favourites_count":1,"statuses_count":280,"created_at":"Mon Sep 21 11:25:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663406058786848769\/eJQM7z9Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663406058786848769\/eJQM7z9Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3637213514\/1446030511","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9YOoNBOT","name":"\u6f64\u5a25","id":3637213514,"id_str":"3637213514","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985657"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682635628544,"id_str":"663727682635628544","text":"\u3010BIOHAZARD3\u3011\n2\u7a0b\u306e\u30a8\u30b0\u3055\u306f\u7121\u3044\u3067\u3059\u304c\u3001\u305d\u3053\u306f\u30b8\u30eb\u3055\u3093\u306e\u30ab\u30b8\u30e5\u30a2\u30eb\u306a\u670d\u88c5\u3067\u30ab\u30d0\u30fc\u3002\u3042\u306e\u683c\u597d\u3067\u30be\u30f3\u30d3\u3084\u30cd\u30e1\u30b7\u30b9\u3068\u6226\u3063\u305f\u308a\u3084\u3089\u308c\u308b\u30b8\u30eb\u59c9\u3055\u3093\u30de\u30b8\u3067\u30a8\u30ed\u3044\u3002\u30c1\u30fc\u30c8\u7121\u3057\u3067\u3082\u629c\u3051\u308b\u30ec\u30d9\u30eb","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3221489294,"id_str":"3221489294","name":"\u30ea\u30e7\u30ca\u30b2\u30fcbot","screen_name":"rynara_bot","location":"ver.1.29(\u4e2d\u306e\u4eba\u4e0d\u5728)","url":"http:\/\/twpf.jp\/rynara_bot","description":"\u301018\u7981\u6ce8\u610f\u3011\u5148\u305a\u306f\u30c4\u30a4\u30d7\u30ed\u3092\u898b\u3066\u304f\u3060\u3055\u3044\u3002\u30ea\u30e7\u30ca\u597d\u304d\u306e\u4eba\u306b\u30aa\u30b9\u30b9\u30e1\u3059\u308b\u30b2\u30fc\u30e0\u3092\u7d39\u4ecb\u3059\u308bbot\u3067\u3059\u3002\u30ea\u30e7\u30ca\u306b\u95a2\u3059\u308b\u4e8b\u3092\u9069\u5f53\u306b\u545f\u304d\u307e\u3059\u3002\u307e\u3060\u81f3\u3089\u306a\u3044\u70b9\u306a\u3069\u591a\u3044\u3067\u3059\u3002\u6307\u6458\u3084\u30cd\u30bf\u63d0\u4f9b\u306a\u3069\u306fDM\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u203b\u9375\u57a2\u3060\u3063\u305f\u3051\u3069\u4e2d\u306e\u4eba\u304c\u6bce\u56de\u8997\u304f\u306e\u9762\u5012\u306a\u306e\u3067\u9375\u5916\u3057\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":404,"friends_count":669,"listed_count":3,"favourites_count":76,"statuses_count":13510,"created_at":"Wed May 20 14:33:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601353566662430723\/pjShsh57_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601353566662430723\/pjShsh57_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221489294\/1432216699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985661"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652237824,"id_str":"663727682652237824","text":"RT @minnaloveapp: \u3042\u306a\u305f\u306e\u7d50\u5a5a\u9069\u6b63\u5ea6\u306f\u4f55\u70b9\uff1f\n\n\u305d\u308d\u305d\u308d\u7d50\u5a5a\u3057\u305f\u3044\u30fb\u30fb\u30fb\uff01\n\u305d\u306e\u524d\u306b\u3001\u3042\u306a\u305f\u306b\u306f\u4f55\u304c\u8db3\u308a\u306a\u3044\u306e\u304b\u3001\n\u3042\u306a\u305f\u306b\u304a\u3059\u3059\u3081\u306e\u76f8\u624b\u306f\uff1f\n\n\u3053\u3061\u3089\u2192https:\/\/t.co\/8fu9y5X8Vc\n\n20\u624d\u4ee5\u4e0a\u3063\u3066\u8a2d\u5b9a\u3059\u308c\u3070\u8ab0\u3067\u3082\u3067\u304d\u308b\u3088\uff01 https:\/\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/love_Yudai_g\" rel=\"nofollow\"\u003elove_Yudai_g\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975566766,"id_str":"2975566766","name":"\u4e09\u4ee3\u76eeJSB\u2661\u5927\u597d\u304d","screen_name":"daisuki_3_JSB","location":null,"url":null,"description":"\u4e09\u4ee3\u76eeJSB \u5927\u597d\u304d\u306a\u6b4c\u8a5e\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":615,"friends_count":1788,"listed_count":0,"favourites_count":0,"statuses_count":7072,"created_at":"Mon Jan 12 02:14:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554464266355367937\/8aUai6Kh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554464266355367937\/8aUai6Kh_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:54 +0000 2015","id":663727469799735297,"id_str":"663727469799735297","text":"\u3042\u306a\u305f\u306e\u7d50\u5a5a\u9069\u6b63\u5ea6\u306f\u4f55\u70b9\uff1f\n\n\u305d\u308d\u305d\u308d\u7d50\u5a5a\u3057\u305f\u3044\u30fb\u30fb\u30fb\uff01\n\u305d\u306e\u524d\u306b\u3001\u3042\u306a\u305f\u306b\u306f\u4f55\u304c\u8db3\u308a\u306a\u3044\u306e\u304b\u3001\n\u3042\u306a\u305f\u306b\u304a\u3059\u3059\u3081\u306e\u76f8\u624b\u306f\uff1f\n\n\u3053\u3061\u3089\u2192https:\/\/t.co\/8fu9y5X8Vc\n\n20\u624d\u4ee5\u4e0a\u3063\u3066\u8a2d\u5b9a\u3059\u308c\u3070\u8ab0\u3067\u3082\u3067\u304d\u308b\u3088\uff01 https:\/\/t.co\/7ZeZbpRbgI","source":"\u003ca href=\"https:\/\/twitter.com\/minnaloveapp\" rel=\"nofollow\"\u003eminnaloveapp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2941779290,"id_str":"2941779290","name":"\u307f\u3093\u306a\u5927\u597d\u304d\u30a2\u30d7\u30ea\u96c6\u2605","screen_name":"minnaloveapp","location":null,"url":null,"description":"\u307f\u3093\u306a\u304c\u4f7f\u3063\u3066\u308b\u8a71\u984c\u306e\u30a2\u30d7\u30ea\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":376,"friends_count":7,"listed_count":9,"favourites_count":0,"statuses_count":10663,"created_at":"Wed Dec 24 11:06:55 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554866375097720832\/pJo4M5yG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554866375097720832\/pJo4M5yG_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8fu9y5X8Vc","expanded_url":"http:\/\/ytr.mobi\/cc\/59\/","display_url":"ytr.mobi\/cc\/59\/","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":663727469518721024,"id_str":"663727469518721024","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","url":"https:\/\/t.co\/7ZeZbpRbgI","display_url":"pic.twitter.com\/7ZeZbpRbgI","expanded_url":"http:\/\/twitter.com\/minnaloveapp\/status\/663727469799735297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":700,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727469518721024,"id_str":"663727469518721024","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","url":"https:\/\/t.co\/7ZeZbpRbgI","display_url":"pic.twitter.com\/7ZeZbpRbgI","expanded_url":"http:\/\/twitter.com\/minnaloveapp\/status\/663727469799735297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":700,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8fu9y5X8Vc","expanded_url":"http:\/\/ytr.mobi\/cc\/59\/","display_url":"ytr.mobi\/cc\/59\/","indices":[86,109]}],"user_mentions":[{"screen_name":"minnaloveapp","name":"\u307f\u3093\u306a\u5927\u597d\u304d\u30a2\u30d7\u30ea\u96c6\u2605","id":2941779290,"id_str":"2941779290","indices":[3,16]}],"symbols":[],"media":[{"id":663727469518721024,"id_str":"663727469518721024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","url":"https:\/\/t.co\/7ZeZbpRbgI","display_url":"pic.twitter.com\/7ZeZbpRbgI","expanded_url":"http:\/\/twitter.com\/minnaloveapp\/status\/663727469799735297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":700,"h":500,"resize":"fit"}},"source_status_id":663727469799735297,"source_status_id_str":"663727469799735297","source_user_id":2941779290,"source_user_id_str":"2941779290"}]},"extended_entities":{"media":[{"id":663727469518721024,"id_str":"663727469518721024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYInfBVEAAeQpv.jpg","url":"https:\/\/t.co\/7ZeZbpRbgI","display_url":"pic.twitter.com\/7ZeZbpRbgI","expanded_url":"http:\/\/twitter.com\/minnaloveapp\/status\/663727469799735297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":700,"h":500,"resize":"fit"}},"source_status_id":663727469799735297,"source_status_id_str":"663727469799735297","source_user_id":2941779290,"source_user_id_str":"2941779290"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682643959808,"id_str":"663727682643959808","text":"RT @Awaash897409242: \u0627\u062d\u0633\u0633 \u0631\u064a\u062d\u0629 \u0628\u062e\u0648\u0631 \u062f\u0647\u0646 \u0639\u0648\u0648\u062f \u0643\u0644\u0644 \u0634\u064a\u064a #PoyarzKarayel https:\/\/t.co\/1mA9AJtk3C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2156546050,"id_str":"2156546050","name":"May","screen_name":"iiio1_","location":"PoyrazKarayel","url":null,"description":"My mother is the heart that Keeps me alive.","protected":false,"verified":false,"followers_count":1211,"friends_count":147,"listed_count":2,"favourites_count":49,"statuses_count":5231,"created_at":"Mon Oct 28 01:41:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662927127541583872\/rR20Fmu1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662927127541583872\/rR20Fmu1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2156546050\/1446887121","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:26 +0000 2015","id":663727349477810176,"id_str":"663727349477810176","text":"\u0627\u062d\u0633\u0633 \u0631\u064a\u062d\u0629 \u0628\u062e\u0648\u0631 \u062f\u0647\u0646 \u0639\u0648\u0648\u062f \u0643\u0644\u0644 \u0634\u064a\u064a #PoyarzKarayel https:\/\/t.co\/1mA9AJtk3C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3121827386,"id_str":"3121827386","name":"h\u262a","screen_name":"Awaash897409242","location":"\u0648\u0637\u0646 \u0627\u0644\u0646\u0647\u0627\u0631 ","url":null,"description":"\u0646\u064f\u0641\u064a\u062a \u0648\u0627\u0633\u062a\u0648\u0637\u0646\u0651 \u0627\u0644\u0627\u063a\u0631\u0627\u0628\u064f \u0641\u064a \u0628\u0644\u062f\u064a ! \u062e\u0644\u0648\u0646\u064a \u0627\u0646\u0641\u0639 \u0646\u0641\u0633\u064a \u0627\u0648\u0644 \u0628\u0639\u062f\u064a\u0646 \u0627\u0642\u0648\u0644\u0643\u0645 \u0634\u064a \u064a\u0646\u0641\u0639\u0643\u0645 :)\u060c \u0645\u0627\u0627\u0646\u0632\u0644 \u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0641\u064a\u0647\u0627 \u0645\u0648\u0633\u064a\u0642\u0649 \u0648\u0644\u0627 \u0635\u0648\u0631 \u0628\u0646\u0627\u062a \u0627\u0646\u0627 \u064a\u0627\u0644\u0644\u0627 \u0645\u062a\u062d\u0645\u0644\u0647 \u0627\u062b\u0645 \u0646\u0641\u0633\u064a \u0627\u062a\u062d\u0645\u0644 \u0627\u062b\u0645\u0643\u0645\u061f","protected":false,"verified":false,"followers_count":312,"friends_count":179,"listed_count":1,"favourites_count":32,"statuses_count":9563,"created_at":"Tue Mar 31 22:03:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550325278834688\/XvgN8OaF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550325278834688\/XvgN8OaF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3121827386\/1446016620","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"PoyarzKarayel","indices":[32,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PoyarzKarayel","indices":[53,67]}],"urls":[],"user_mentions":[{"screen_name":"Awaash897409242","name":"h\u262a","id":3121827386,"id_str":"3121827386","indices":[3,19]}],"symbols":[],"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727349477810176,"source_status_id_str":"663727349477810176","source_user_id":3121827386,"source_user_id_str":"3121827386"}]},"extended_entities":{"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727349477810176,"source_status_id_str":"663727349477810176","source_user_id":3121827386,"source_user_id_str":"3121827386"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079985663"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682643886080,"id_str":"663727682643886080","text":"#Studentenjob 1 Student f\u00fcr Umzugsjob am 10.11.2015 von 8:30-9:30 Uhr in 69117 Heidelberg\u2026 https:\/\/t.co\/osTnEWJ3b6","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125590527,"id_str":"125590527","name":"StudentenVermittlung","screen_name":"SV_INT","location":"Germany","url":"http:\/\/www.studenten-vermittlung.com","description":"Wir vermitteln in Deutschland, in \u00d6sterreich und in der Schweiz bundesweit studentische Hilfskr\u00e4fte & Studentenjobs f\u00fcr unterschiedlichste Aufgabenbereiche.","protected":false,"verified":false,"followers_count":564,"friends_count":1930,"listed_count":9,"favourites_count":4,"statuses_count":64115,"created_at":"Tue Mar 23 07:56:54 +0000 2010","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3443964772\/5cafd308342214a645735c90307986ca_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3443964772\/5cafd308342214a645735c90307986ca_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125590527\/1366990084","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Studentenjob","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/osTnEWJ3b6","expanded_url":"http:\/\/goo.gl\/fb\/8Q1ElA","display_url":"goo.gl\/fb\/8Q1ElA","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079985663"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682639654912,"id_str":"663727682639654912","text":"@monmoon717 @ject25251 \u304a\u3001\u304a\u304a\u304a\u3001\u304a\u304a\u304a\u304a\u304a\u3001\u304a\u304a\u4ffa\u306f\u30b5\u30d7\u30ec\u30c3\u30b5\u30fc\u3064\u3063\u3066\u3082\u30aa\u30ca\u30db\u3060\u3051\u3069\u306a\uff01\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726028565557248,"in_reply_to_status_id_str":"663726028565557248","in_reply_to_user_id":468401068,"in_reply_to_user_id_str":"468401068","in_reply_to_screen_name":"monmoon717","user":{"id":1269988184,"id_str":"1269988184","name":"kszero","screen_name":"kszero2","location":null,"url":null,"description":"\u8d64\u3068\u9752\u304c\u6df7\u3058\u3063\u3066\u3044\u305f\u9803\u3000\u7121\u90aa\u6c17\u306b\u3057\u3066\u3044\u305f\u8ffd\u3044\u304b\u3051\u3063\u3053\u306a\u3089\u3000\u596a\u3044\u5408\u3044\u3001\u50b7\u3064\u3051\u5408\u3046\u3088\u3046\u306a\u3000\u304f\u3060\u3089\u306a\u3044\u4e16\u754c\u306f\u5909\u308f\u308b\u3093\u3060","protected":false,"verified":false,"followers_count":145,"friends_count":137,"listed_count":7,"favourites_count":1366,"statuses_count":38795,"created_at":"Fri Mar 15 15:29:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626013665536245761\/0IBWn5Ll_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626013665536245761\/0IBWn5Ll_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269988184\/1446553164","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"monmoon717","name":"(\u0e51\ua4aa\u0ec8\u0c6a\u032e\ua4aa\u0ec8\u3051\u30fc\u308f\u3044\ua4aa\u0ec8\u0c6a\u032e\ua4aa\u0ec8\u0e51)","id":468401068,"id_str":"468401068","indices":[0,11]},{"screen_name":"ject25251","name":"\u3058\u3047\u304f\u305f\u3093\u3010\u516c\u5f0f\u3011","id":2233859160,"id_str":"2233859160","indices":[12,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985662"} +{"delete":{"status":{"id":661353492657930240,"id_str":"661353492657930240","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079985788"}} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682639695873,"id_str":"663727682639695873","text":"\uff11\uff10\u79d2\u3050\u3089\u3044\u3067\u901a\u4fe1\u30a8\u30e9\u30fc\u8d77\u304d\u308b\ud83d\udca2\ud83d\udca2\ud83d\udca2\ud83d\udca2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2488246616,"id_str":"2488246616","name":"\u3042\u3044\u305e\u3089\u3074\u3063\u3074\u306f\u30a2\u30d1\u30b7\u30b7\u30b7\u30db\u30db","screen_name":"888yami888","location":"\uff71\uff8a\uff9f\uff7c\uff7c\uff7c\uff8e\uff8e","url":"http:\/\/twpf.jp\/settings\/description","description":"\u304a\u305d\u677e\u3055\u3093\u3068\u5996\u602a\u30a6\u30a9\u30c3\u30c1\u304c\u5927\u597d\u304d\u306a\u30ad\u30c1\u30ac\u30a4\u3067\u3059\u3000\n\u30ab\u30e9\u677e\u990a\u3044\u305f\u3044\uff11\uff10\u4e07\u4eba\uff08\u305d\u3057\u3066\u68a8\u306b\u306a\u308b\u306e\u3067\u3042\u3063\u305f\uff09","protected":false,"verified":false,"followers_count":156,"friends_count":153,"listed_count":11,"favourites_count":2061,"statuses_count":12887,"created_at":"Sat May 10 15:06:59 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639743686406897669\/nebweCHV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639743686406897669\/nebweCHV.jpg","profile_background_tile":true,"profile_link_color":"992288","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651528516647817217\/VyOzvfeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651528516647817217\/VyOzvfeA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2488246616\/1446352754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985662"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682623021056,"id_str":"663727682623021056","text":"RT @BiancaMugnolo: Ahora AJAJAJJAJAJ\ud83d\ude2c\ud83d\ude2c\ud83d\ude2c https:\/\/t.co\/4hBEDOQQjs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1455760843,"id_str":"1455760843","name":"Millonaria\u2661RP.","screen_name":"Camiiiiiiii11","location":null,"url":null,"description":"CUMBIA CERVEZA Y RIVER!!!","protected":false,"verified":false,"followers_count":1158,"friends_count":903,"listed_count":3,"favourites_count":11466,"statuses_count":36273,"created_at":"Sat May 25 01:52:13 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661690597976182784\/lkugTwBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661690597976182784\/lkugTwBI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1455760843\/1433385152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:06 +0000 2015","id":663727519426834433,"id_str":"663727519426834433","text":"Ahora AJAJAJJAJAJ\ud83d\ude2c\ud83d\ude2c\ud83d\ude2c https:\/\/t.co\/4hBEDOQQjs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613552736,"id_str":"1613552736","name":"Reyna #1","screen_name":"BiancaMugnolo","location":"YO TE QUIERO LA ACADE\u2665","url":"http:\/\/ask.fm\/BiaaankiTa","description":"LO \u00daNICO QUE QUIERO ES VER A BROWN CAMPE\u00d3N Y A LA MATANZA DE FIESTA\u266b\u2665Mi vida gira al rededor de una palabra,HOCKEY \/\/\u2665 \/\/#HAB. 25\/1\/15 \u2764","protected":false,"verified":false,"followers_count":1476,"friends_count":1064,"listed_count":5,"favourites_count":2290,"statuses_count":30086,"created_at":"Mon Jul 22 20:17:44 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661161055314423808\/7PfMCvwv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661161055314423808\/7PfMCvwv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613552736\/1446779585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663154790562705408,"quoted_status_id_str":"663154790562705408","quoted_status":{"created_at":"Sun Nov 08 00:43:17 +0000 2015","id":663154790562705408,"id_str":"663154790562705408","text":"La cara de orto que tengo cuando me enojo la podes notar de ac\u00e1 a mil metros de distancia.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979849701,"id_str":"2979849701","name":"COSITO DEL ME GUSTA","screen_name":"elcosodemg","location":null,"url":null,"description":"soy el nuevo bot\u00f3n de me gusta. Vine a cagar a todos los amantes del favorito. Cuenta OFICIAL si ven otra reporten.","protected":false,"verified":false,"followers_count":37407,"friends_count":33211,"listed_count":26,"favourites_count":123,"statuses_count":6777,"created_at":"Thu Jan 15 14:45:41 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661827942029402112\/3hLw3oKt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661827942029402112\/3hLw3oKt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2979849701\/1446629299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4hBEDOQQjs","expanded_url":"https:\/\/twitter.com\/elcosodemg\/status\/663154790562705408","display_url":"twitter.com\/elcosodemg\/sta\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4hBEDOQQjs","expanded_url":"https:\/\/twitter.com\/elcosodemg\/status\/663154790562705408","display_url":"twitter.com\/elcosodemg\/sta\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"BiancaMugnolo","name":"Reyna #1","id":1613552736,"id_str":"1613552736","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079985658"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656538624,"id_str":"663727682656538624","text":"El GobMx refuerza la pol\u00edtica de inclusi\u00f3n, justicia y equidad. #NMX para #IgualdadLaboral y #NoDiscriminaci\u00f3n https:\/\/t.co\/Zbb9mWua18","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":481621941,"id_str":"481621941","name":"M\u00e9xico Celebra","screen_name":"MexicoCelebra","location":null,"url":null,"description":"Eventos Culturales, tradiciones de nuestro M\u00e9xico.","protected":false,"verified":false,"followers_count":1179,"friends_count":1952,"listed_count":36,"favourites_count":12,"statuses_count":26967,"created_at":"Fri Feb 03 00:20:32 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/722971868\/c5a4a2959bea1b2920baa08082ba35c7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/722971868\/c5a4a2959bea1b2920baa08082ba35c7.jpeg","profile_background_tile":true,"profile_link_color":"F00ED6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2903126175\/81adb513ed71e9ed62654e7d22230b2c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2903126175\/81adb513ed71e9ed62654e7d22230b2c_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NMX","indices":[64,68]},{"text":"IgualdadLaboral","indices":[74,90]},{"text":"NoDiscriminaci\u00f3n","indices":[93,110]}],"urls":[{"url":"https:\/\/t.co\/Zbb9mWua18","expanded_url":"https:\/\/amp.twimg.com\/v\/cedd79a0-fdd7-4bfc-9f7e-8ddf31f10f78","display_url":"amp.twimg.com\/v\/cedd79a0-fdd\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682622894080,"id_str":"663727682622894080","text":"@kahouedaaan \n\u30ef\u30bf\u30b7\u30cb\u30db\u30f3\u30b4\u30ab\u30f3\u30da\u30ad\u3002\n\u304b\u307b\u3068\u304b\u5e7c\u5973\u3084\u3093\ud83d\ude02\ud83d\ude02\n\u7279\u6b8a\u80fd\u529b\u3082\u300c\u4e00\u751f\u300d\u3063\u3066\u30ef\u30fc\u30c9\u304c\u3042\u306a\u305f\u3089\u3057\u304f\u3066\u6016\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725533507686400,"in_reply_to_status_id_str":"663725533507686400","in_reply_to_user_id":1960522580,"in_reply_to_user_id_str":"1960522580","in_reply_to_screen_name":"kahouedaaan","user":{"id":1664160954,"id_str":"1664160954","name":"\u307e\u3064\u3070\u3084\u3057 \u308a\u306a","screen_name":"pinetreee429","location":"\u4eac\u90fd\u5e9c\u6c11","url":"https:\/\/instagram.com\/pinetreee429","description":"\u540c \u5fd7 \u793e \u56fd \u969b ( 1 8 ) || \u30b5 \u30c3 \u30ab \u30fc \u90e8 \uff2d \uff27 || \u30df\u30f3\u30c8\u30c1\u30e7\u30b3\u30ec\u30fc\u30c8\u3068aiko\u3068\u72ac\u304c\u597d\u304d\u3002\u3042\u3001\u6700\u8fd1\u306f\u30b7\u30ed\u30af\u30de\u3082\u3002from Georgia, America\u2708\ufe0e","protected":false,"verified":false,"followers_count":465,"friends_count":441,"listed_count":1,"favourites_count":5496,"statuses_count":2955,"created_at":"Mon Aug 12 05:02:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650676106794668032\/eGhOs5Pw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650676106794668032\/eGhOs5Pw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1664160954\/1444645993","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kahouedaaan","name":"\u3046\u3048\u3060\u304b\u307b","id":1960522580,"id_str":"1960522580","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985658"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648014849,"id_str":"663727682648014849","text":"#Job #Seattle BROADBAND TECHNICIAN: WA-SEATTLE, Broadband Technician - Field technician role Location: Seattle... https:\/\/t.co\/eskSI96rVK","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2330056903,"id_str":"2330056903","name":"Jobs in Seattle","screen_name":"JobsinSeattle1","location":"Seattle, WA","url":null,"description":"Tweets with latest #jobs #offers in #Seattle !!","protected":false,"verified":false,"followers_count":722,"friends_count":1530,"listed_count":48,"favourites_count":0,"statuses_count":78035,"created_at":"Thu Feb 06 09:59:19 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431367015979159552\/NmOMM3fi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431367015979159552\/NmOMM3fi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2330056903\/1403741240","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Job","indices":[0,4]},{"text":"Seattle","indices":[5,13]}],"urls":[{"url":"https:\/\/t.co\/eskSI96rVK","expanded_url":"http:\/\/botly.info\/OUNC","display_url":"botly.info\/OUNC","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627047426,"id_str":"663727682627047426","text":"RT @witchkuroneko: \u5e7d\u3005\u5b50\u69d8\u266a #\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 https:\/\/t.co\/dwQOq1M0lG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1595232896,"id_str":"1595232896","name":"\u30e2\u30d6\u6cb3\u7ae5\u2642@\u306b\u308f\u304b\u97f3\u30b2\u30fc\u30de\u30fc","screen_name":"nittonito_k","location":null,"url":null,"description":"Retweet\u307e\u3093\/\u97f3\u30b2\u30fc\u3001\u30e2\u30f3\u30b9\u30c8\u3084\u3081\u305f\u304a(jubeat.ID60930001575827\u3001\u30e2\u30f3\u30b9\u30c8\u30b3\u30fc\u30c9.1145141919889464\/\u30a2\u30a4\u30b3\u30f3\u306f\u3001@yossi4955\u69d8\u304b\u3089\u62dd\u501f","protected":false,"verified":false,"followers_count":921,"friends_count":1587,"listed_count":5,"favourites_count":5536,"statuses_count":11320,"created_at":"Mon Jul 15 07:19:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619873116957749248\/BMIfXTmk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619873116957749248\/BMIfXTmk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1595232896\/1445173970","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:09 +0000 2015","id":663726522964905984,"id_str":"663726522964905984","text":"\u5e7d\u3005\u5b50\u69d8\u266a #\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 https:\/\/t.co\/dwQOq1M0lG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142818586,"id_str":"142818586","name":"\u3046\u305f\u3055\u3093\uff20C89\u4e8c\u65e5\u76ee\u897f\u306607a","screen_name":"witchkuroneko","location":"\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u30d5\u30ec\u30f3\u30c9\u52df\u96c6\u4e2d\u266a","url":"http:\/\/www.pixiv.net\/member.php?id=378836","description":"\u5504\u3067\u3059\u3002\u30b5\u30fc\u30af\u30eb\u300e\u56db\u5339\u306e\u9ed2\u732b\u300f\u3067\u540c\u4eba\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002\u5275\u4f5c\/\u6771\u65b9(\u30c1\u30eb\u30ce\/\u3053\u3044\u3057\/\u3055\u3068\u308a\/\u306b\u3068\u308a\/\u30d5\u30e9\u30f3\/\u30ec\u30df\u30ea\u30a2\/\u30d1\u30c1\u30e5\u30ea\u30fc)\u30dc\u30ab\u30ed\/\u30c7\u30ec\u30de\u30b9\/\u30b8\u30e7\u30b8\u30e7\/\u5996\u602a\u30a6\u30a9\u30c3\u30c1\/\u30a4\u30ca\u30a4\u30ec\/\u3046\u305f\u30d7\u30ea\/\u3086\u3081\u306b\u3063\u304d\/Ib\/\u767e\u5408\/\u30bb\u30fc\u30e9\u30fc\u670d\/\u30b4\u30b9\u30ed\u30ea\/\u3051\u3082\u307f\u307f\/\u732b\/\u661f\/\u5b87\u5b99\/\u6df1\u6d77\/\u30b2\u30fc\u30e0\u5b9f\u6cc1\u304c\u597d\u304d\u3067\u3059\u3002\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3069\u305e\u30fc\u266a","protected":false,"verified":false,"followers_count":5696,"friends_count":966,"listed_count":286,"favourites_count":31084,"statuses_count":59414,"created_at":"Tue May 11 21:12:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596286816996630528\/JjI0goXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596286816996630528\/JjI0goXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142818586\/1401602514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48,"favorite_count":78,"entities":{"hashtags":[{"text":"\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[6,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726521463386112,"id_str":"663726521463386112","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","url":"https:\/\/t.co\/dwQOq1M0lG","display_url":"pic.twitter.com\/dwQOq1M0lG","expanded_url":"http:\/\/twitter.com\/witchkuroneko\/status\/663726522964905984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1366,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726521463386112,"id_str":"663726521463386112","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","url":"https:\/\/t.co\/dwQOq1M0lG","display_url":"pic.twitter.com\/dwQOq1M0lG","expanded_url":"http:\/\/twitter.com\/witchkuroneko\/status\/663726522964905984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1366,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[25,42]}],"urls":[],"user_mentions":[{"screen_name":"witchkuroneko","name":"\u3046\u305f\u3055\u3093\uff20C89\u4e8c\u65e5\u76ee\u897f\u306607a","id":142818586,"id_str":"142818586","indices":[3,17]}],"symbols":[],"media":[{"id":663726521463386112,"id_str":"663726521463386112","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","url":"https:\/\/t.co\/dwQOq1M0lG","display_url":"pic.twitter.com\/dwQOq1M0lG","expanded_url":"http:\/\/twitter.com\/witchkuroneko\/status\/663726522964905984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1366,"resize":"fit"}},"source_status_id":663726522964905984,"source_status_id_str":"663726522964905984","source_user_id":142818586,"source_user_id_str":"142818586"}]},"extended_entities":{"media":[{"id":663726521463386112,"id_str":"663726521463386112","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwTPUsAAzTVn.jpg","url":"https:\/\/t.co\/dwQOq1M0lG","display_url":"pic.twitter.com\/dwQOq1M0lG","expanded_url":"http:\/\/twitter.com\/witchkuroneko\/status\/663726522964905984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1366,"resize":"fit"}},"source_status_id":663726522964905984,"source_status_id_str":"663726522964905984","source_user_id":142818586,"source_user_id_str":"142818586"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627104768,"id_str":"663727682627104768","text":"\u27b3\u0f89 \uff4c\uff4f\uff56\uff45 \u2661 \u3073 \u3087 \u3093 \u3079 \u3063 \u304d \u3087 \u3093\n\n\u4e16\u754c\u3067 \u3044\u3061\u3070\u3093 \u597d\u304d\u306a\u3072\u3068 \u3002 \u305a\u3063\u3068 \u8ff7\u3063\u305f\u3066\u304d\u305f\u3051\u3069 \u3001 \u307f\u3088\u3093\u306b\u306f \u3042\u306a\u305f\u3060\u3051 \u3002 \u4f55\u3067\u3082 \u9811\u5f35\u308c\u308b\u306e\u306f \u3042\u306a\u305f\u3060\u304b\u3089 \u3002 \u6587\u5b57\u3067\u306f \u4f1d\u308f\u3089\u306a\u3044\u3051\u3069 \u3060\u308c\u3088\u308a\u3082 \u3060\u3044\u3059\u304d\u3067\u3059 \u3002 \u3042\u308a\u304c\u3068\u3046 \u2661\u2661\u2661","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2277843740,"id_str":"2277843740","name":"\u307f \u3088 \u3093 \u305f \u3093","screen_name":"__925O6","location":"6 1 + 4 = M I Y O M A Y U","url":null,"description":"\u3079 \u3063 \u305f \u3093 \u2661 \u27b3 \u305b \u304b \u3044 \u3044 \u3061","protected":false,"verified":false,"followers_count":19,"friends_count":37,"listed_count":0,"favourites_count":54,"statuses_count":4266,"created_at":"Sun Jan 05 16:53:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438335066729484288\/9FWgh7pW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438335066729484288\/9FWgh7pW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2277843740\/1393342167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682652254208,"id_str":"663727682652254208","text":"\u306f\u306b\u307e\u308b\u304c\u751f\u307e\u308c\u305f\u5e74\u306b\u6771\u4eac\u30c7\u30a3\u30ba\u30cb\u30fc\u30e9\u30f3\u30c9\u304c\u3067\u304d\u305f\u3093\u3060\u306d\u3047\u301c\n\u307b\u307b\u3049\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":906005948,"id_str":"906005948","name":"\u30b7\u30fc\u30cb\u30fc","screen_name":"Po5363","location":"\u30d5\u30b7\u30ae\u30c0\u30cd\u3068\u4e00\u7dd2","url":null,"description":"\u30dd\u30b1\u30e2\u30f3\u30a8\u30f3\u30b8\u30e7\u30a4\u52e2\u30fb\u5bfe\u6226\u3082\u305f\u307e\u306b\/\u30d7\u30fc\u30c9\u30eb\/\u6c34\u66dc\u3069\u3046\u3067\u3057\u3087\u3046 \u6cd5\u307d\u3051\u6240\u5c5e","protected":false,"verified":false,"followers_count":172,"friends_count":244,"listed_count":4,"favourites_count":2833,"statuses_count":21491,"created_at":"Fri Oct 26 13:30:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000605318776\/f22758405d58aabcbab313a1fd123129_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000605318776\/f22758405d58aabcbab313a1fd123129_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/906005948\/1443498547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985665"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682639691777,"id_str":"663727682639691777","text":"RT @TsuyoshiWood: \u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3184774447,"id_str":"3184774447","name":"*:..\uff61\u3075\u308b\u308b*:..\uff61o\u0192 *","screen_name":"ign3Qgpn94twexg","location":"\u30aa\u30d5\u30c8\u30a5\u30f3\u306e\u4e2d","url":null,"description":"\u58f0\u30f2\u30bf\u3067\u8150\u5973\u5b50\u2190\u9054\u592e,\u3057\u3093\u306e\u3059,\u3048\u3050\u3045,\u6885\u3061\u3083\u3093,\u3066\u3089\u3057\u30fc,\u307e\u3048\u306c&\u3051\u3093\u306c\u5d07\u62dd(-\u4eba-) \u30d5\u30a9\u30ed\u30d0\u738780 %","protected":false,"verified":false,"followers_count":79,"friends_count":156,"listed_count":0,"favourites_count":386,"statuses_count":285,"created_at":"Mon May 04 03:36:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645950687600246784\/JXj7r1u1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645950687600246784\/JXj7r1u1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184774447\/1430711299","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:13 +0000 2015","id":663721760114651136,"id_str":"663721760114651136","text":"\u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2472381668,"id_str":"2472381668","name":"\u9d3b\u6c60\u3000\u525b","screen_name":"TsuyoshiWood","location":null,"url":"http:\/\/woodbook.xyz","description":"(\u3053\u3046\u306e\u3044\u3051 \u3064\u3088\u3057)\u3067\u3059\u3002\u6f2b\u753b\u63cf\u3044\u3066\u307e\u3059\u3002\u30a6\u30c3\u30c9\u30d6\u30c3\u30af(\u6f2b\u753b\u65e5\u8a18) http:\/\/woodbook.xyz \u4ed5\u4e8b\u60c5\u5831 http:\/\/goo.gl\/g2oKv6 \u30ea\u30d7\u30e9\u30a4\u898b\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u304c\u3042\u307e\u308a\u8fd4\u4e8b\u3067\u304d\u3066\u307e\u305b\u3093\u3002\u6f2b\u753b\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":513913,"friends_count":168,"listed_count":6378,"favourites_count":400,"statuses_count":5282,"created_at":"Thu May 01 11:52:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10446,"favorite_count":12547,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[36,59]}],"user_mentions":[{"screen_name":"TsuyoshiWood","name":"\u9d3b\u6c60\u3000\u525b","id":2472381668,"id_str":"2472381668","indices":[3,16]}],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985662"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682648080384,"id_str":"663727682648080384","text":"RT @Bchth_: \u0e02\u0e2d\u0e16\u0e32\u0e21\u0e2a\u0e31\u0e01\u0e19\u0e34\u0e14\u0e40\u0e18\u0e2d\u0e04\u0e34\u0e14\u0e19\u0e32\u0e19\u0e44\u0e2b\u0e21 \u0e41\u0e04\u0e1b\u0e0a\u0e31\u0e48\u0e19\u0e43\u0e14\u0e43\u0e14 \u0e04\u0e34\u0e14\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e44\u0e23\u0e01\u0e31\u0e19 @terchantwist http:\/\/t.co\/JEW1NH1ohk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2610687469,"id_str":"2610687469","name":"FAH|$UPAWADEE","screen_name":"fahhhooolu","location":null,"url":null,"description":"Supawadee Cho.\/ u call me FAH | ChiangRai TH | stu. of SWK. | EXO iKON\n This area are my routine,think,share, favourite story Nice to meet luvly guys&gals","protected":false,"verified":false,"followers_count":26,"friends_count":192,"listed_count":0,"favourites_count":114,"statuses_count":6540,"created_at":"Mon Jul 07 23:43:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662865678580322305\/NphXne6y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662865678580322305\/NphXne6y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2610687469\/1444489195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Aug 13 13:09:13 +0000 2015","id":631814765229117440,"id_str":"631814765229117440","text":"\u0e02\u0e2d\u0e16\u0e32\u0e21\u0e2a\u0e31\u0e01\u0e19\u0e34\u0e14\u0e40\u0e18\u0e2d\u0e04\u0e34\u0e14\u0e19\u0e32\u0e19\u0e44\u0e2b\u0e21 \u0e41\u0e04\u0e1b\u0e0a\u0e31\u0e48\u0e19\u0e43\u0e14\u0e43\u0e14 \u0e04\u0e34\u0e14\u0e44\u0e14\u0e49\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e44\u0e23\u0e01\u0e31\u0e19 @terchantwist http:\/\/t.co\/JEW1NH1ohk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1956926215,"id_str":"1956926215","name":"\u0e1a\u0e35\u0e21\u0e1a\u0e38\u0e4b\u0e07\u0e1a\u0e38\u0e4b\u0e07","screen_name":"Bchth_","location":"Thailand","url":null,"description":"\u2661\u21af : KAI | @kyuzizi | JUNHOE @RedBeans93 @HSangHyuk KRYSTAL \u23af\u5f61 #3kjbhj","protected":false,"verified":false,"followers_count":612,"friends_count":254,"listed_count":1,"favourites_count":6371,"statuses_count":59058,"created_at":"Sat Oct 12 15:29:33 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659421598177341440\/kQrI4l50_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659421598177341440\/kQrI4l50_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1956926215\/1446983459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23645,"favorite_count":1686,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"terchantwist","name":"\u0e40\u0e15\u0e4b\u0e2d \u0e09\u0e31\u0e19\u0e17\u0e27\u0e34\u0e0a\u0e0a\u0e4c","id":153691784,"id_str":"153691784","indices":[53,66]}],"symbols":[],"media":[{"id":631814566159093761,"id_str":"631814566159093761","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":631814566159093761,"id_str":"631814566159093761","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":631814566221975552,"id_str":"631814566221975552","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoAB-UEAAEpAn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoAB-UEAAEpAn.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":631814566322634752,"id_str":"631814566322634752","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoACWUAAAXz7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoACWUAAAXz7z.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":631814566448529409,"id_str":"631814566448529409","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoAC0VAAEaupi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoAC0VAAEaupi.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bchth_","name":"\u0e1a\u0e35\u0e21\u0e1a\u0e38\u0e4b\u0e07\u0e1a\u0e38\u0e4b\u0e07","id":1956926215,"id_str":"1956926215","indices":[3,10]},{"screen_name":"terchantwist","name":"\u0e40\u0e15\u0e4b\u0e2d \u0e09\u0e31\u0e19\u0e17\u0e27\u0e34\u0e0a\u0e0a\u0e4c","id":153691784,"id_str":"153691784","indices":[65,78]}],"symbols":[],"media":[{"id":631814566159093761,"id_str":"631814566159093761","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":631814765229117440,"source_status_id_str":"631814765229117440","source_user_id":1956926215,"source_user_id_str":"1956926215"}]},"extended_entities":{"media":[{"id":631814566159093761,"id_str":"631814566159093761","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoABvUkAE94YO.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":631814765229117440,"source_status_id_str":"631814765229117440","source_user_id":1956926215,"source_user_id_str":"1956926215"},{"id":631814566221975552,"id_str":"631814566221975552","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoAB-UEAAEpAn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoAB-UEAAEpAn.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":631814765229117440,"source_status_id_str":"631814765229117440","source_user_id":1956926215,"source_user_id_str":"1956926215"},{"id":631814566322634752,"id_str":"631814566322634752","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoACWUAAAXz7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoACWUAAAXz7z.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":631814765229117440,"source_status_id_str":"631814765229117440","source_user_id":1956926215,"source_user_id_str":"1956926215"},{"id":631814566448529409,"id_str":"631814566448529409","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CMSoAC0VAAEaupi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMSoAC0VAAEaupi.jpg","url":"http:\/\/t.co\/JEW1NH1ohk","display_url":"pic.twitter.com\/JEW1NH1ohk","expanded_url":"http:\/\/twitter.com\/Bchth_\/status\/631814765229117440\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":631814765229117440,"source_status_id_str":"631814765229117440","source_user_id":1956926215,"source_user_id_str":"1956926215"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079985664"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682618699777,"id_str":"663727682618699777","text":"RT @Ieansquad: How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":502380808,"id_str":"502380808","name":"Daniel","screen_name":"imdanny4u","location":null,"url":null,"description":"Baseball is life | March 24 | Play Guitar | MISTAKES ARE THE PROOF THAT YOU ARE TRYING | 5-29-15 | RPHS Sophmore | Panthers","protected":false,"verified":false,"followers_count":106,"friends_count":379,"listed_count":2,"favourites_count":524,"statuses_count":1084,"created_at":"Sat Feb 25 02:31:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634614905191006208\/TR0JeqxA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634614905191006208\/TR0JeqxA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/502380808\/1440138960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 17 19:13:40 +0000 2015","id":611250376524730369,"id_str":"611250376524730369","text":"How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2496762631,"id_str":"2496762631","name":"Leansquad","screen_name":"Ieansquad","location":"DM for Promo","url":null,"description":"Unofficial Fan Account. Follow the squad: @leanandcuisine, @youfunnyb, @retro_spectro_ \nTurn on Notifications to be notified when new videos drop.","protected":false,"verified":false,"followers_count":156611,"friends_count":12,"listed_count":44,"favourites_count":12,"statuses_count":155,"created_at":"Thu May 15 17:02:05 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2496762631\/1431299803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19685,"favorite_count":19219,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ieansquad","name":"Leansquad","id":2496762631,"id_str":"2496762631","indices":[3,13]}],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079985657"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656452608,"id_str":"663727682656452608","text":"RT @amirxazfar: https:\/\/t.co\/4ouMa4f2LC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46909331,"id_str":"46909331","name":"\u039bsrap #53","screen_name":"Ashrafghjkl","location":"Keliling Bumi","url":"http:\/\/Instagram.com\/ashrafghjkl","description":"Mungkin pernah duduk disebelah awak.","protected":false,"verified":false,"followers_count":1525,"friends_count":291,"listed_count":29,"favourites_count":231,"statuses_count":130675,"created_at":"Sat Jun 13 15:58:11 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BF25E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503550327124000768\/0xGqZzdC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503550327124000768\/0xGqZzdC.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661116715070177280\/tQnjsmO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661116715070177280\/tQnjsmO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46909331\/1444652679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:08 +0000 2015","id":663725261003747328,"id_str":"663725261003747328","text":"https:\/\/t.co\/4ouMa4f2LC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1640019583,"id_str":"1640019583","name":"amir","screen_name":"amirxazfar","location":"Pahang, Malaysia","url":null,"description":"parasit celah ketiak mak ayah","protected":false,"verified":false,"followers_count":491,"friends_count":335,"listed_count":0,"favourites_count":1114,"statuses_count":27116,"created_at":"Fri Aug 02 08:56:51 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659721243575189504\/djEXOM49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659721243575189504\/djEXOM49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1640019583\/1443606866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725169920217089,"id_str":"663725169920217089","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","url":"https:\/\/t.co\/4ouMa4f2LC","display_url":"pic.twitter.com\/4ouMa4f2LC","expanded_url":"http:\/\/twitter.com\/amirxazfar\/status\/663725261003747328\/video\/1","type":"photo","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725169920217089,"id_str":"663725169920217089","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","url":"https:\/\/t.co\/4ouMa4f2LC","display_url":"pic.twitter.com\/4ouMa4f2LC","expanded_url":"http:\/\/twitter.com\/amirxazfar\/status\/663725261003747328\/video\/1","type":"video","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"video_info":{"aspect_ratio":[40,71],"duration_millis":3768,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/vid\/180x320\/xFu5ynsWv_UrNmsf.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/pl\/jTxWg2FkrC4pQo1l.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/pl\/jTxWg2FkrC4pQo1l.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/vid\/180x320\/xFu5ynsWv_UrNmsf.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amirxazfar","name":"amir","id":1640019583,"id_str":"1640019583","indices":[3,14]}],"symbols":[],"media":[{"id":663725169920217089,"id_str":"663725169920217089","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","url":"https:\/\/t.co\/4ouMa4f2LC","display_url":"pic.twitter.com\/4ouMa4f2LC","expanded_url":"http:\/\/twitter.com\/amirxazfar\/status\/663725261003747328\/video\/1","type":"photo","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"source_status_id":663725261003747328,"source_status_id_str":"663725261003747328","source_user_id":1640019583,"source_user_id_str":"1640019583"}]},"extended_entities":{"media":[{"id":663725169920217089,"id_str":"663725169920217089","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725169920217089\/pu\/img\/umLtVYlSIjaa04GR.jpg","url":"https:\/\/t.co\/4ouMa4f2LC","display_url":"pic.twitter.com\/4ouMa4f2LC","expanded_url":"http:\/\/twitter.com\/amirxazfar\/status\/663725261003747328\/video\/1","type":"video","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"source_status_id":663725261003747328,"source_status_id_str":"663725261003747328","source_user_id":1640019583,"source_user_id_str":"1640019583","video_info":{"aspect_ratio":[40,71],"duration_millis":3768,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/vid\/180x320\/xFu5ynsWv_UrNmsf.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/pl\/jTxWg2FkrC4pQo1l.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/pl\/jTxWg2FkrC4pQo1l.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725169920217089\/pu\/vid\/180x320\/xFu5ynsWv_UrNmsf.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631286784,"id_str":"663727682631286784","text":"RT @fannoreturn: \u0e22\u0e34\u0e48\u0e07\u0e04\u0e34\u0e14\u0e22\u0e34\u0e48\u0e07\u0e40\u0e1e\u0e49\u0e2d \u0e44\u0e1b\u0e15\u0e32\u0e21\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c\u0e1e\u0e31\u0e14\u0e1e\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2279235638,"id_str":"2279235638","name":"0-8-4","screen_name":"CHUtmar","location":"Pharmacy student, CU","url":"https:\/\/instagram.com\/chutmar","description":"\u00a9 \u0e0a\u0e38\u0e44\u0e07 | \u0e01\u0e34\u0e48\u0e07 \u0e01\u0e49\u0e32\u0e19 \u0e43\u0e1a \u0e0a\u0e30\u0e46 \u0e43\u0e1a \u0e01\u0e49\u0e32\u0e19 \u0e01\u0e34\u0e48\u0e07 \n\neveryone is living a life of choice.","protected":false,"verified":false,"followers_count":422,"friends_count":125,"listed_count":2,"favourites_count":1295,"statuses_count":37596,"created_at":"Mon Jan 06 15:31:15 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658664352719880192\/u8WQP4yw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658664352719880192\/u8WQP4yw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2279235638\/1445793161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:03 +0000 2015","id":663722472823386112,"id_str":"663722472823386112","text":"\u0e22\u0e34\u0e48\u0e07\u0e04\u0e34\u0e14\u0e22\u0e34\u0e48\u0e07\u0e40\u0e1e\u0e49\u0e2d \u0e44\u0e1b\u0e15\u0e32\u0e21\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c\u0e1e\u0e31\u0e14\u0e1e\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535137568,"id_str":"535137568","name":"\u0e41\u0e1f\u0e19","screen_name":"fannoreturn","location":"ManchesterUnited","url":"http:\/\/ask.fm\/fanreacog_earth","description":"\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e19\u0e14\u0e35\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01 \u0e15\u0e34\u0e14\u0e1a\u0e2d\u0e25 \u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e25\u0e49\u0e32 \u0e41\u0e21\u0e19\u0e46\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e35\u0e46\u0e04\u0e19\u0e19\u0e36\u0e07 \u0e25\u0e38\u0e22\u0e14\u0e34\u0e27\u0e30 \u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e1c\u0e31\u0e1a \u0e40\u0e21\u0e29\u0e32 2561 #\u0e27\u0e34\u0e16\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e19\u0e08\u0e23\u0e34\u0e07","protected":false,"verified":false,"followers_count":80981,"friends_count":411,"listed_count":16,"favourites_count":18536,"statuses_count":81447,"created_at":"Sat Mar 24 08:16:44 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_tile":true,"profile_link_color":"080707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535137568\/1442132184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":480,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fannoreturn","name":"\u0e41\u0e1f\u0e19","id":535137568,"id_str":"535137568","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079985660"} +{"delete":{"status":{"id":663708246222442496,"id_str":"663708246222442496","user_id":2913587993,"user_id_str":"2913587993"},"timestamp_ms":"1447079985910"}} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682623029248,"id_str":"663727682623029248","text":"https:\/\/t.co\/7uS0PbLVYH https:\/\/t.co\/9Fk89OR9qw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127572323,"id_str":"127572323","name":"cristhian diaz","screen_name":"crisandimo","location":"bogota","url":null,"description":"Mucho por hacer","protected":false,"verified":false,"followers_count":65,"friends_count":126,"listed_count":1,"favourites_count":4,"statuses_count":2407,"created_at":"Mon Mar 29 16:52:13 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/223694020\/wall.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/223694020\/wall.jpg","profile_background_tile":true,"profile_link_color":"0D0F0E","profile_sidebar_border_color":"EDEDF0","profile_sidebar_fill_color":"8D84CF","profile_text_color":"D9E82E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303476927\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303476927\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7uS0PbLVYH","expanded_url":"http:\/\/articulo.mercadolibre.com.co\/MCO-418217407-espectacular-xbox-one-500-gb-_JM","display_url":"articulo.mercadolibre.com.co\/MCO-418217407-\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727672934158337,"id_str":"663727672934158337","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzUzWUAEfW3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzUzWUAEfW3U.jpg","url":"https:\/\/t.co\/9Fk89OR9qw","display_url":"pic.twitter.com\/9Fk89OR9qw","expanded_url":"http:\/\/twitter.com\/crisandimo\/status\/663727682623029248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727672934158337,"id_str":"663727672934158337","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzUzWUAEfW3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzUzWUAEfW3U.jpg","url":"https:\/\/t.co\/9Fk89OR9qw","display_url":"pic.twitter.com\/9Fk89OR9qw","expanded_url":"http:\/\/twitter.com\/crisandimo\/status\/663727682623029248\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079985658"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682627092480,"id_str":"663727682627092480","text":"\u30bb\u30c8\u30ea\u6700\u9ad8\u3084\u3063\u305f\u3057\u3001\u521d\u3081\u3066\u30c4\u30a4\u30f3\u30c9\u30e9\u30e0\u3067\u8074\u3044\u305f\u3051\u3069\u3059\u3093\u3054\u3044\u3088\u304b\u3063\u305f\uff01\uff01\uff01 \u307f\u3063\u304d\u30fc\u3082\u306f\u305f\u3055\u3093\u3082\u3069\u3063\u3061\u3082\u697d\u3057\u305d\u3046\u306b\u53e9\u3044\u3066\u3066\u3001\u6d0b\u6b21\u90ce\u304f\u308f\u6b66\u7530\u3055\u3093\u306e3\u4eba\u3068\u3082\u606f\u3074\u3063\u305f\u308a\u3067\u6700\u9ad8\u306a\u30e9\u30a4\u30d6\u3092\u3057\u3066\u304f\u308c\u305f\uff01 \u3042\u308a\u304c\u3068\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000662098,"id_str":"1000662098","name":"\u307f\u3063\u3061\u3083\u3093@9.10\u80ce\u76e4","screen_name":"mhartc54","location":null,"url":null,"description":"RADWIMPS\u5927\u597d\u304d\u2661 wimper\u3055\u3093\u3068\u4ef2\u826f\u304f\u306a\u308a\u305f\u3044\uff3c(^\u03c9^)\uff0f 10th ANNIVERSARY LIVE TOUR RADWIMPS\u306e\u80ce\u76e4 @ Zepp Namba\u4e21\u65b9\u53c2\u6226\u4e88\u5b9a\uff01","protected":false,"verified":false,"followers_count":199,"friends_count":272,"listed_count":0,"favourites_count":1330,"statuses_count":10949,"created_at":"Mon Dec 10 01:49:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000355385213\/7a80c2181d59fc9752fd6f1bfab0d89c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000355385213\/7a80c2181d59fc9752fd6f1bfab0d89c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000662098\/1404141270","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985659"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682656403456,"id_str":"663727682656403456","text":"\u30af\u30ed\u30af\u30e2\u3067\u30ef\u30fc\u30c9\u30af\u30e9\u30a6\u30c9\u3092\u4f5c\u308a\u307e\u3057\u305f\uff01 #kurokumo https:\/\/t.co\/IkgJWCxxPx https:\/\/t.co\/IJNBvpA0zG","source":"\u003ca href=\"http:\/\/kumo.lightnet328.com\" rel=\"nofollow\"\u003e\u30af\u30ed\u30af\u30e2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2773016930,"id_str":"2773016930","name":"\u30a2\u30ea\u30b7\u30a2\u0e05( \u0333\u2022 \u00b7\u032b \u2022 \u0333\u0e05)","screen_name":"utamaru713","location":"\u5927\u5206\u306e\u3069\u3053\u304b","url":null,"description":"\u30a2\u30cb\u30e1\/\u97f3\u30b2\u30fc\u30de\u30fc(\u30dc\u30eb\u30c6\u3001\u5f10\u5bfa\u3001\u30c1\u30e5\u30a6\u30cb)\/\u30a8\u30ed\u30b2\/\u904a\u622f\u738b\/\u30f4\u30a1\u30f3\u30ac\u30fc\u30c9\/\uff27\uff26\/\u767d\u732b\u3092\u3084\u3063\u3066\u307e\u3059\u967d\u6b4c\u3061\u3083\u3093\u3068\u306a\u3048\u305f\u305d\u63a8\u3057\u266a\u7d61\u3093\u3067\u6765\u3066\u304f\u308c\u308b\u3068\u304b\u306a\u308a\u559c\u3073\u307e\u3059\u266ahttp:\/\/vcard.ameba.jp\/profile?userId=3032829","protected":false,"verified":false,"followers_count":1057,"friends_count":1007,"listed_count":67,"favourites_count":31850,"statuses_count":45282,"created_at":"Wed Aug 27 11:35:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661152118217138177\/cwfohyeU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661152118217138177\/cwfohyeU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2773016930\/1446979131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kurokumo","indices":[20,29]}],"urls":[{"url":"https:\/\/t.co\/IkgJWCxxPx","expanded_url":"http:\/\/kumo.lightnet328.com\/","display_url":"kumo.lightnet328.com","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663727681825992706,"id_str":"663727681825992706","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz17U8AIZLMj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz17U8AIZLMj.png","url":"https:\/\/t.co\/IJNBvpA0zG","display_url":"pic.twitter.com\/IJNBvpA0zG","expanded_url":"http:\/\/twitter.com\/utamaru713\/status\/663727682656403456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727681825992706,"id_str":"663727681825992706","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz17U8AIZLMj.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz17U8AIZLMj.png","url":"https:\/\/t.co\/IJNBvpA0zG","display_url":"pic.twitter.com\/IJNBvpA0zG","expanded_url":"http:\/\/twitter.com\/utamaru713\/status\/663727682656403456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079985666"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682618843136,"id_str":"663727682618843136","text":"225\/50R16 Michelin Pilot XGT V4 91V Tire (8-9\/32nd) Set of 2 https:\/\/t.co\/SQTzci6ptA https:\/\/t.co\/TJ6hNvmKHE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3893868988,"id_str":"3893868988","name":"Cecil Swann","screen_name":"CecilSwann","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":40,"listed_count":23,"favourites_count":0,"statuses_count":12696,"created_at":"Wed Oct 07 22:12:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651883169650737152\/f6WRSFlE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651883169650737152\/f6WRSFlE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SQTzci6ptA","expanded_url":"http:\/\/ajman-travel-planning.info\/ag\/tl\/?query=131648252296","display_url":"ajman-travel-planning.info\/ag\/tl\/?query=1\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663727682505543680,"id_str":"663727682505543680","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz4dWEAA7i2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz4dWEAA7i2P.jpg","url":"https:\/\/t.co\/TJ6hNvmKHE","display_url":"pic.twitter.com\/TJ6hNvmKHE","expanded_url":"http:\/\/twitter.com\/CecilSwann\/status\/663727682618843136\/photo\/1","type":"photo","sizes":{"small":{"w":169,"h":225,"resize":"fit"},"medium":{"w":169,"h":225,"resize":"fit"},"large":{"w":169,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727682505543680,"id_str":"663727682505543680","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz4dWEAA7i2P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz4dWEAA7i2P.jpg","url":"https:\/\/t.co\/TJ6hNvmKHE","display_url":"pic.twitter.com\/TJ6hNvmKHE","expanded_url":"http:\/\/twitter.com\/CecilSwann\/status\/663727682618843136\/photo\/1","type":"photo","sizes":{"small":{"w":169,"h":225,"resize":"fit"},"medium":{"w":169,"h":225,"resize":"fit"},"large":{"w":169,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079985657"} +{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682631434240,"id_str":"663727682631434240","text":"... und wir sind schon gespannt, was @nottmarius auf Instagram und Snapchat anstellen wird. Juhu! https:\/\/t.co\/U5P32siARR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12421082,"id_str":"12421082","name":"Ole Rei\u00dfmann","screen_name":"oler","location":"Hamburg","url":"https:\/\/olereissmann.de","description":"Leitet die Redaktion von @bento_de f\u00fcr @spiegelonline. Say what?! PGP: https:\/\/twitter.com\/oler\/status\/580842012691308545","protected":false,"verified":true,"followers_count":12917,"friends_count":1624,"listed_count":540,"favourites_count":8400,"statuses_count":8968,"created_at":"Sat Jan 19 01:41:31 +0000 2008","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"217CB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663696486249725952\/G840fseu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663696486249725952\/G840fseu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12421082\/1398194254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nottmarius","name":"Marius N.","id":1895434699,"id_str":"1895434699","indices":[37,48]}],"symbols":[],"media":[{"id":663727681364762624,"id_str":"663727681364762624","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIz0NXIAAOnfD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIz0NXIAAOnfD.png","url":"https:\/\/t.co\/U5P32siARR","display_url":"pic.twitter.com\/U5P32siARR","expanded_url":"http:\/\/twitter.com\/oler\/status\/663727682631434240\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":138,"resize":"fit"},"large":{"w":500,"h":204,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727681364762624,"id_str":"663727681364762624","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIz0NXIAAOnfD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIz0NXIAAOnfD.png","url":"https:\/\/t.co\/U5P32siARR","display_url":"pic.twitter.com\/U5P32siARR","expanded_url":"http:\/\/twitter.com\/oler\/status\/663727682631434240\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":138,"resize":"fit"},"large":{"w":500,"h":204,"resize":"fit"}},"video_info":{"aspect_ratio":[125,51],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIz0NXIAAOnfD.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079985660"} +{"delete":{"status":{"id":345545449165451265,"id_str":"345545449165451265","user_id":299653008,"user_id_str":"299653008"},"timestamp_ms":"1447079986374"}} +{"delete":{"status":{"id":584757519865741315,"id_str":"584757519865741315","user_id":2322785669,"user_id_str":"2322785669"},"timestamp_ms":"1447079986495"}} +{"delete":{"status":{"id":663443573057019904,"id_str":"663443573057019904","user_id":41686294,"user_id_str":"41686294"},"timestamp_ms":"1447079986493"}} +{"delete":{"status":{"id":652535035610963968,"id_str":"652535035610963968","user_id":2205353715,"user_id_str":"2205353715"},"timestamp_ms":"1447079986597"}} +{"delete":{"status":{"id":64149426050056193,"id_str":"64149426050056193","user_id":162193660,"user_id_str":"162193660"},"timestamp_ms":"1447079986639"}} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686834081792,"id_str":"663727686834081792","text":"RT @CBItweets: Britain needs that new runway, so let's 'get it built\u2019 https:\/\/t.co\/LddqdJv94C https:\/\/t.co\/P2dC0qOsYA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3822840965,"id_str":"3822840965","name":"Delayed flight?","screen_name":"DelayedFlight15","location":"United Kingdom","url":"http:\/\/www.flightwasdelayed.com\/","description":"Helping you claim back the money your entitled to after a delayed flight","protected":false,"verified":false,"followers_count":8,"friends_count":110,"listed_count":0,"favourites_count":0,"statuses_count":11,"created_at":"Wed Sep 30 09:21:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716264636993536\/zw_URP2E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716264636993536\/zw_URP2E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3822840965\/1447077322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:39:40 +0000 2015","id":663697463652384768,"id_str":"663697463652384768","text":"Britain needs that new runway, so let's 'get it built\u2019 https:\/\/t.co\/LddqdJv94C https:\/\/t.co\/P2dC0qOsYA","source":"\u003ca href=\"http:\/\/shorthand.com\/social\" rel=\"nofollow\"\u003eShorthand Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40010267,"id_str":"40010267","name":"The CBI","screen_name":"CBItweets","location":"London","url":"http:\/\/www.cbi.org.uk","description":"Follow the CBI and be the first to get cutting-edge business \nthinking, economic data and policy reaction from the \nvoice of UK enterprise","protected":false,"verified":false,"followers_count":36694,"friends_count":1830,"listed_count":794,"favourites_count":433,"statuses_count":10920,"created_at":"Thu May 14 14:59:38 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000105465554\/440b9bfbbac424fdaf454bf5eb8e2359.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000105465554\/440b9bfbbac424fdaf454bf5eb8e2359.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460803755877736448\/MRP0xssj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460803755877736448\/MRP0xssj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40010267\/1415718247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LddqdJv94C","expanded_url":"http:\/\/soc.sh\/3y9Ot4glcY","display_url":"soc.sh\/3y9Ot4glcY","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663697463002316800,"id_str":"663697463002316800","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","url":"https:\/\/t.co\/P2dC0qOsYA","display_url":"pic.twitter.com\/P2dC0qOsYA","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663697463652384768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663697463002316800,"id_str":"663697463002316800","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","url":"https:\/\/t.co\/P2dC0qOsYA","display_url":"pic.twitter.com\/P2dC0qOsYA","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663697463652384768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LddqdJv94C","expanded_url":"http:\/\/soc.sh\/3y9Ot4glcY","display_url":"soc.sh\/3y9Ot4glcY","indices":[72,95]}],"user_mentions":[{"screen_name":"CBItweets","name":"The CBI","id":40010267,"id_str":"40010267","indices":[3,13]}],"symbols":[],"media":[{"id":663697463002316800,"id_str":"663697463002316800","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","url":"https:\/\/t.co\/P2dC0qOsYA","display_url":"pic.twitter.com\/P2dC0qOsYA","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663697463652384768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663697463652384768,"source_status_id_str":"663697463652384768","source_user_id":40010267,"source_user_id_str":"40010267"}]},"extended_entities":{"media":[{"id":663697463002316800,"id_str":"663697463002316800","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtU4CUwAAVmYw.jpg","url":"https:\/\/t.co\/P2dC0qOsYA","display_url":"pic.twitter.com\/P2dC0qOsYA","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663697463652384768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663697463652384768,"source_status_id_str":"663697463652384768","source_user_id":40010267,"source_user_id_str":"40010267"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821519360,"id_str":"663727686821519360","text":"\u062a\u0645\u0646\u064a\u0650\u062a \u0623\u0631\u062c\u0651\u0639 \u0642\u0644\u0628\u0643 \u0644\u064a \u0648\u062a\u0645\u0646\u064a\u062a \u0623\u0646\u0647\u064a \u0647\u0627\u0644\u0628\u064e\u0639\u062f\u060c\u062a\u0645\u0646\u064a\u062a \u0646\u0628\u0642\u0640\u0649 \u0644\u0628\u0639\u0636 \u0648 \u0623\u0648\u0642\u064e\u0641 \u0627\u0644\u0644\u062d\u0638\u0627\u062a \u0645\u0639\u0643 \u060c \u062a\u0645\u0646\u064a\u062a \u0623\u0628\u064f\u0648\u0633 \u0627\u0644\u0644\u064a\u0644 \u0644\u0645\u0627 \u0643\u0627\u0646 \u064a\u0628\u062a\u062f\u064a \u0648 \u064a\u0646\u062a\u0647\u064a \u0641\u064a\u0643 \u060c \u0648 \u0628\u0642\u064a\u062a \u0623\u062a\u0645\u0646\u0649","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1427526637,"id_str":"1427526637","name":"haya","screen_name":"ha__alotaibi","location":null,"url":null,"description":"\u062d\u0627\u062c\u0647 \u062d\u0628\u064a\u062a\u0647\u0627 \u0645\u0646 \u0643\u0644 \u0642\u0644\u0628\u064a \u2066@SALMA_M3ZI","protected":false,"verified":false,"followers_count":1108,"friends_count":82,"listed_count":1,"favourites_count":6179,"statuses_count":45980,"created_at":"Tue May 14 10:43:38 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657484333322735616\/T5QiYgEy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657484333322735616\/T5QiYgEy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1427526637\/1446981890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850867201,"id_str":"663727686850867201","text":"\u307e\u3042\u305d\u3093\u306a\u3053\u3068\u3067\u304d\u305f\u3089\n\u3068\u3063\u304f\u306b\u3084\u3063\u3066\u3093\u3060\u3088\u306a\n\u97f3\u30b2\u30fc\u3084\u308b\u3093\u3060\u3063\u305f\u3089\n\u901a\u77e5\u6bce\u56de\u5207\u308b\u306a\u308a\u3059\u308b\u306e\u304c\n\u30de\u30ca\u30fc\u3063\u3066\u3082\u306e\u3060\u3088\u306d\u3001\n\u305f\u3060\u9762\u5012\u3060\u3088\u306d\u3063\u3066\u3044\u3046\n\u305d\u308c\u3060\u3051\u306e\u8a71","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294507872,"id_str":"3294507872","name":"\u6843\u67da\u6885P@3rd\u2026","screen_name":"10th_kp","location":"\u6885\u3068\u67da\u306e\u6843\u306e\u6728","url":null,"description":"765\/\u8cb4\u97f3 346\/\u5c0f\u6885.\u67da\u3061\u3083\u3093.\u6843\u4e95 \uff90\uff98\/\u661f\u68a8\u82b1\uff0e unit\/NG.142's.\u30d5\u30ea\u30b9\u30af.\u30cf\u30fc\u30c9\u30e1\u30c6\u30aa\u30e9\u30a4\u30c4\uff0e\u30c7\u30ec\u30b9\u30c6\u3084\u3063\u3066\u307e\u305928\u672a\u30d5\u30eb\u30b3\u30f3\u306e\u96d1\u9b5a\u3067\u3059\uff0e10th\u30e9\u30a4\u30d6\u6700\u9ad8\u3067\u3057\u305f( \uff65\u3142\uff65)\u0648 \u0311\u0311","protected":false,"verified":false,"followers_count":8,"friends_count":33,"listed_count":0,"favourites_count":42,"statuses_count":118,"created_at":"Sun Jul 26 06:15:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656707494832553986\/asi2fk28_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656707494832553986\/asi2fk28_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294507872\/1437891560","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686813130752,"id_str":"663727686813130752","text":"__ m.s __ https:\/\/t.co\/05CssIHIw2","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131008719,"id_str":"131008719","name":"\u0627\u0628\u062f\u0627\u0639 \u062a\u064a\u0648\u0628","screen_name":"ebda3tube","location":"https:\/\/www.youtube.com\/channe","url":"https:\/\/www.youtube.com\/channel\/UCuuCa_IEMkcSmNmxOYiy31w","description":"\u062a\u0627\u0628\u0639\u0646\u0627 \u0639\u0644\u0649 \u0645\u0648\u0642\u0639 \u0627\u0644\u064a\u0648\u062a\u064a\u0648\u0628\n\nhttps:\/\/www.youtube.com\/channel\/UCuuCa_IEMkcSmNmxOYiy31w","protected":false,"verified":false,"followers_count":138,"friends_count":236,"listed_count":1,"favourites_count":0,"statuses_count":395934,"created_at":"Fri Apr 09 00:42:38 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551113508348104704\/91Pr1hMZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551113508348104704\/91Pr1hMZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131008719\/1420230775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/05CssIHIw2","expanded_url":"http:\/\/fb.me\/6XsVyx101","display_url":"fb.me\/6XsVyx101","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825717760,"id_str":"663727686825717760","text":"RT @5SOS: https:\/\/t.co\/dEZBVzvTYH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3018614793,"id_str":"3018614793","name":",Sassy,\/\/-186","screen_name":"Hemmingsvx","location":"5SOSFAM","url":"http:\/\/5sos.com","description":"find something that makes you happy and don't let anyone takes it away from you @5SOS","protected":false,"verified":false,"followers_count":722,"friends_count":741,"listed_count":2,"favourites_count":5666,"statuses_count":8661,"created_at":"Wed Feb 04 20:51:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659792078432505860\/_mojLDTO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659792078432505860\/_mojLDTO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3018614793\/1445065618","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:09:43 +0000 2015","id":663493632087957504,"id_str":"663493632087957504","text":"https:\/\/t.co\/dEZBVzvTYH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663493399186575365,"in_reply_to_status_id_str":"663493399186575365","in_reply_to_user_id":264107729,"in_reply_to_user_id_str":"264107729","in_reply_to_screen_name":"5SOS","user":{"id":264107729,"id_str":"264107729","name":"5 Seconds of Summer","screen_name":"5SOS","location":"Sydney, Australia","url":"http:\/\/www.facebook.com\/5secondsofsummer","description":"couple of guys making music. SOUNDS GOOD FEELS GOOD OUT NOW! http:\/\/5sosf.am\/vjnufZ | @ashton5sos @calum5sos @michael5sos @luke5sos @HiOrHeyRecords","protected":false,"verified":true,"followers_count":7838397,"friends_count":33425,"listed_count":28252,"favourites_count":3144,"statuses_count":23324,"created_at":"Fri Mar 11 10:18:46 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657334338309107712\/DiworP79.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657334338309107712\/DiworP79.jpg","profile_background_tile":false,"profile_link_color":"C21B1B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661211354792112128\/e63dR26K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661211354792112128\/e63dR26K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264107729\/1445555619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18012,"favorite_count":28136,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663493629747535873,"id_str":"663493629747535873","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","url":"https:\/\/t.co\/dEZBVzvTYH","display_url":"pic.twitter.com\/dEZBVzvTYH","expanded_url":"http:\/\/twitter.com\/5SOS\/status\/663493632087957504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663493629747535873,"id_str":"663493629747535873","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","url":"https:\/\/t.co\/dEZBVzvTYH","display_url":"pic.twitter.com\/dEZBVzvTYH","expanded_url":"http:\/\/twitter.com\/5SOS\/status\/663493632087957504\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUz8N_WIAEs2Fu.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[3,8]}],"symbols":[],"media":[{"id":663493629747535873,"id_str":"663493629747535873","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","url":"https:\/\/t.co\/dEZBVzvTYH","display_url":"pic.twitter.com\/dEZBVzvTYH","expanded_url":"http:\/\/twitter.com\/5SOS\/status\/663493632087957504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"source_status_id":663493632087957504,"source_status_id_str":"663493632087957504","source_user_id":264107729,"source_user_id_str":"264107729"}]},"extended_entities":{"media":[{"id":663493629747535873,"id_str":"663493629747535873","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUz8N_WIAEs2Fu.png","url":"https:\/\/t.co\/dEZBVzvTYH","display_url":"pic.twitter.com\/dEZBVzvTYH","expanded_url":"http:\/\/twitter.com\/5SOS\/status\/663493632087957504\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"source_status_id":663493632087957504,"source_status_id_str":"663493632087957504","source_user_id":264107729,"source_user_id_str":"264107729","video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUz8N_WIAEs2Fu.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686842523648,"id_str":"663727686842523648","text":"RT @deray: #ConcernedStudent1950","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268816447,"id_str":"3268816447","name":"ok","screen_name":"censorhed","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":83,"friends_count":78,"listed_count":1,"favourites_count":1225,"statuses_count":7084,"created_at":"Sun Jul 05 05:51:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659212702926008320\/9-6qDFiC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659212702926008320\/9-6qDFiC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727362245308416,"id_str":"663727362245308416","text":"#ConcernedStudent1950","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29417304,"id_str":"29417304","name":"deray mckesson","screen_name":"deray","location":null,"url":"http:\/\/WeTheProtesters.org","description":"I will never betray my heart. Curator, connector. TFA. Educator. Bowdoin alum. Protestor. snapchat: derayderay IG: iamderay deray@thisisthemovement.org.","protected":false,"verified":true,"followers_count":246283,"friends_count":958,"listed_count":3393,"favourites_count":26129,"statuses_count":132899,"created_at":"Tue Apr 07 09:38:56 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555381462107570176\/TBtL-FxK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555381462107570176\/TBtL-FxK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29417304\/1410129495","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[{"text":"ConcernedStudent1950","indices":[0,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ConcernedStudent1950","indices":[11,32]}],"urls":[],"user_mentions":[{"screen_name":"deray","name":"deray mckesson","id":29417304,"id_str":"29417304","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986664"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686813097984,"id_str":"663727686813097984","text":"Cheguei do hosp\u00edcio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":895965708,"id_str":"895965708","name":"Pretinha.3\u00f5","screen_name":"tata_lispector","location":"RJ","url":null,"description":"Eu sou meiga, PORRA. \u270c-'-","protected":false,"verified":false,"followers_count":4423,"friends_count":1031,"listed_count":0,"favourites_count":306,"statuses_count":13844,"created_at":"Sun Oct 21 19:12:06 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162704128\/IgZiliA6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162704128\/IgZiliA6.jpeg","profile_background_tile":true,"profile_link_color":"A813BF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658798015369617408\/xd9Vm8lu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658798015369617408\/xd9Vm8lu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/895965708\/1436394814","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686842478592,"id_str":"663727686842478592","text":"\u062a\u0639\u0631\u0641 \u0634\u0639\u0648\u0631 \u0644\u0645\u0627 \u0648\u062f\u0643 \u062a\u0634\u0627\u0631\u0643 \u0634\u062e\u0635 \u0645\u0627 \u0643\u0644 \u0634\u064a\u0621.. \u062d\u0631\u0641\u064a\u0627\u064b \u0643\u0644 \u0634\u064a\u0621 \u0648\u0628\u0633\u0631\u0639\u0629 \u0643\u0623\u0646\u0647 \u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0623\u062e\u064a\u0631 \u0648\u0627\u0644\u0648\u0642\u062a \u0636\u064a\u0642","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2822274216,"id_str":"2822274216","name":"Ymam .","screen_name":"ymoa29","location":null,"url":null,"description":"\u200f\u200f\u0646\u0635\u0631\u064c \u0623\u0646\u0627","protected":false,"verified":false,"followers_count":165,"friends_count":66,"listed_count":0,"favourites_count":15,"statuses_count":3514,"created_at":"Sat Sep 20 16:38:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662711847850676225\/zzceqz7v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662711847850676225\/zzceqz7v_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986664"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838259712,"id_str":"663727686838259712","text":"RT @PdeTannhauser: La geometr\u00eda mola https:\/\/t.co\/vkx7y64Q9f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3342939148,"id_str":"3342939148","name":"Youniverse","screen_name":"PabloMartn14","location":"Benalm\u00e1dena - M\u00e1laga","url":null,"description":"You wanna be a loser like me. \u270c\ninstagram & all that stuff: @Pablomartn14","protected":false,"verified":false,"followers_count":76,"friends_count":146,"listed_count":1,"favourites_count":1774,"statuses_count":1029,"created_at":"Tue Jun 23 16:54:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660735925266325504\/vWtuhJtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660735925266325504\/vWtuhJtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3342939148\/1439477808","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:08 +0000 2015","id":663722743939129344,"id_str":"663722743939129344","text":"La geometr\u00eda mola https:\/\/t.co\/vkx7y64Q9f","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266212060,"id_str":"266212060","name":"Puerta de Tannh\u00e4user","screen_name":"PdeTannhauser","location":"Balmaseda (Planet Earth)","url":"http:\/\/goo.gl\/OXscvl","description":"History | Science | Astronautics | Religions | Skepticism | Ancient Civilizations | Legends | Traditions | Arts","protected":false,"verified":false,"followers_count":21795,"friends_count":472,"listed_count":365,"favourites_count":1153,"statuses_count":14432,"created_at":"Mon Mar 14 21:29:50 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3260724368\/6b05735e21fc1e89fecf130d41025c09_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3260724368\/6b05735e21fc1e89fecf130d41025c09_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266212060\/1437083679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":57,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722743486152704,"id_str":"663722743486152704","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","url":"https:\/\/t.co\/vkx7y64Q9f","display_url":"pic.twitter.com\/vkx7y64Q9f","expanded_url":"http:\/\/twitter.com\/PdeTannhauser\/status\/663722743939129344\/photo\/1","type":"photo","sizes":{"medium":{"w":456,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":356,"resize":"fit"},"large":{"w":456,"h":478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722743486152704,"id_str":"663722743486152704","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","url":"https:\/\/t.co\/vkx7y64Q9f","display_url":"pic.twitter.com\/vkx7y64Q9f","expanded_url":"http:\/\/twitter.com\/PdeTannhauser\/status\/663722743939129344\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":456,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":356,"resize":"fit"},"large":{"w":456,"h":478,"resize":"fit"}},"video_info":{"aspect_ratio":[228,239],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYEUZLXAAAU89S.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PdeTannhauser","name":"Puerta de Tannh\u00e4user","id":266212060,"id_str":"266212060","indices":[3,17]}],"symbols":[],"media":[{"id":663722743486152704,"id_str":"663722743486152704","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","url":"https:\/\/t.co\/vkx7y64Q9f","display_url":"pic.twitter.com\/vkx7y64Q9f","expanded_url":"http:\/\/twitter.com\/PdeTannhauser\/status\/663722743939129344\/photo\/1","type":"photo","sizes":{"medium":{"w":456,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":356,"resize":"fit"},"large":{"w":456,"h":478,"resize":"fit"}},"source_status_id":663722743939129344,"source_status_id_str":"663722743939129344","source_user_id":266212060,"source_user_id_str":"266212060"}]},"extended_entities":{"media":[{"id":663722743486152704,"id_str":"663722743486152704","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYEUZLXAAAU89S.png","url":"https:\/\/t.co\/vkx7y64Q9f","display_url":"pic.twitter.com\/vkx7y64Q9f","expanded_url":"http:\/\/twitter.com\/PdeTannhauser\/status\/663722743939129344\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":456,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":356,"resize":"fit"},"large":{"w":456,"h":478,"resize":"fit"}},"source_status_id":663722743939129344,"source_status_id_str":"663722743939129344","source_user_id":266212060,"source_user_id_str":"266212060","video_info":{"aspect_ratio":[228,239],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYEUZLXAAAU89S.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686813147136,"id_str":"663727686813147136","text":"Uy tan feo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262860796,"id_str":"262860796","name":"\u2728JONHENRY\u2728","screen_name":"heenryy_","location":"Cabimas, Zulia","url":"https:\/\/instagram.com\/jonhenry__\/","description":"19 a\u00f1os \nComunicaci\u00f3n Social, URBE \/\nTerco, pero tambi\u00e9n feliz.","protected":false,"verified":false,"followers_count":1700,"friends_count":1424,"listed_count":90,"favourites_count":10480,"statuses_count":58986,"created_at":"Tue Mar 08 22:30:24 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612648800142823424\/8AHxj1K8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612648800142823424\/8AHxj1K8.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662684825694904324\/XrDItAXs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662684825694904324\/XrDItAXs_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825693185,"id_str":"663727686825693185","text":"RT @cositodelabic: A m\u00ed el mal humor se me nota en la cara, en la forma de hablar, de respirar y en las ganas de querer matar a todos, pero\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2562100028,"id_str":"2562100028","name":"Aguuuus","screen_name":"AgusL20115043","location":"Argentina","url":null,"description":"Jam\u00e1s ser\u00eda una persona normal \u2648\ufe0f","protected":false,"verified":false,"followers_count":66,"friends_count":148,"listed_count":2,"favourites_count":287,"statuses_count":1226,"created_at":"Wed Jun 11 21:13:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/485967672136314880\/Wq_oBOeP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/485967672136314880\/Wq_oBOeP.jpeg","profile_background_tile":true,"profile_link_color":"5900FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659122080751964162\/SMztoyE8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659122080751964162\/SMztoyE8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2562100028\/1436134060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:19 +0000 2015","id":663695362201292801,"id_str":"663695362201292801","text":"A m\u00ed el mal humor se me nota en la cara, en la forma de hablar, de respirar y en las ganas de querer matar a todos, pero nada m\u00e1s.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1858002408,"id_str":"1858002408","name":"cosito de la bic","screen_name":"cositodelabic","location":"Argentina","url":null,"description":"Soy el cosito de la bic, todos me muerden y me sacan de la lapicera.","protected":false,"verified":false,"followers_count":349911,"friends_count":131611,"listed_count":150,"favourites_count":3031,"statuses_count":10479,"created_at":"Thu Sep 12 17:32:10 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622136511098695680\/RrKs8ikq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622136511098695680\/RrKs8ikq.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597811457791787009\/Wzl1QKh3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597811457791787009\/Wzl1QKh3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1858002408\/1437163824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":396,"favorite_count":169,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cositodelabic","name":"cosito de la bic","id":1858002408,"id_str":"1858002408","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686817198080,"id_str":"663727686817198080","text":"RT @simran_insan: @Gurmeetramrahim #MSG2onTheTopInRajasthan \nFantastic Anoopgarh!!!!!!!!","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979570931,"id_str":"2979570931","name":"Deepak Dhiman","screen_name":"deepak1111121","location":"Samana,patiala(PUNJAB)","url":null,"description":"\u0906\u091c \u0915\u0932 \u0914\u0930 \u0915\u0941\u091b \u092f\u093e\u0926 \u0930\u0939\u0924\u093e \u0928\u0939\u0940\u0902 \u090f\u0915 \u092c\u0938 \u0906\u092a\u0915\u0947 \u092f\u093e\u0926 \u0906\u0928\u0947 \u0915\u0947 \u092c\u093e\u0926\/ TUSI HO GURU JI MERE GOOD LUCK CHARM\/ B\u2795","protected":false,"verified":false,"followers_count":541,"friends_count":1693,"listed_count":3,"favourites_count":21965,"statuses_count":44837,"created_at":"Tue Jan 13 12:27:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655074978669293569\/6A-ckoPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655074978669293569\/6A-ckoPm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2979570931\/1443349600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:06 +0000 2015","id":663722736032706562,"id_str":"663722736032706562","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan \nFantastic Anoopgarh!!!!!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2825277286,"id_str":"2825277286","name":"$\u00efm\u044f\u0467\u0148 K\u0251\u028d\u027e\u0251 I\u0572\u015a\u0251\u0572","screen_name":"simran_insan","location":"Rania, Haryana","url":null,"description":"B.Sc N.M.from SSJGC Sirsa(Lil.Rose)\nFollower Of @Gurmeetramrahim G..\nMem. of IT Wing & ShahSatnamJiGreen'sWelfareForceWing.\n\u091c\u093f\u090f\u0902\u0917\u0947 \u092e\u0930\u0947\u0902\u0917\u0947 \u092e\u0930 \u092e\u093f\u091f\u0947\u0902\u0917\u0947 MSG \u0915\u0947 \u0932\u093f\u090f\u0964","protected":false,"verified":false,"followers_count":6886,"friends_count":55,"listed_count":14,"favourites_count":11293,"statuses_count":14438,"created_at":"Sun Oct 12 16:12:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663406334830772225\/b3bcAX5K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663406334830772225\/b3bcAX5K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2825277286\/1447052893","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":9,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"da"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[35,59]}],"urls":[],"user_mentions":[{"screen_name":"simran_insan","name":"$\u00efm\u044f\u0467\u0148 K\u0251\u028d\u027e\u0251 I\u0572\u015a\u0251\u0572","id":2825277286,"id_str":"2825277286","indices":[3,16]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[18,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079986658"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829801473,"id_str":"663727686829801473","text":"Chocolates hahahahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301241641,"id_str":"301241641","name":"Gerald Santiago","screen_name":"GeraldSantiago_","location":"Manila City","url":null,"description":"Smile and always be happy!","protected":false,"verified":false,"followers_count":435,"friends_count":418,"listed_count":1,"favourites_count":1638,"statuses_count":1765,"created_at":"Thu May 19 04:00:05 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597464957798600705\/ES8HciBM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597464957798600705\/ES8HciBM.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657935200869945345\/7xcVIfXE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657935200869945345\/7xcVIfXE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301241641\/1429600213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846709761,"id_str":"663727686846709761","text":"RT @valeriesivan: @vegetta777 NEED FOR SPEED","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925769006,"id_str":"2925769006","name":"lucas roncoroni","screen_name":"KarmalandLucas","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":66,"listed_count":0,"favourites_count":8,"statuses_count":8,"created_at":"Tue Dec 16 20:19:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566752206032871425\/7p9Xk3vk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566752206032871425\/7p9Xk3vk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925769006\/1423959344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:09:48 +0000 2015","id":663674848246304768,"id_str":"663674848246304768","text":"@vegetta777 NEED FOR SPEED","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663674503403323392,"in_reply_to_status_id_str":"663674503403323392","in_reply_to_user_id":242101122,"in_reply_to_user_id_str":"242101122","in_reply_to_screen_name":"vegetta777","user":{"id":341166684,"id_str":"341166684","name":"ValeriE","screen_name":"valeriesivan","location":"Los angeles","url":null,"description":"my name? ask matt, he was moaning it last night","protected":false,"verified":false,"followers_count":4742,"friends_count":2665,"listed_count":2,"favourites_count":4291,"statuses_count":32186,"created_at":"Sat Jul 23 22:42:13 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000153899285\/bN0_EUgU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000153899285\/bN0_EUgU.png","profile_background_tile":false,"profile_link_color":"FAD2EC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662052885924966400\/I1h3yEYd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662052885924966400\/I1h3yEYd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/341166684\/1446680682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vegetta777","name":"Vegetta777","id":242101122,"id_str":"242101122","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"valeriesivan","name":"ValeriE","id":341166684,"id_str":"341166684","indices":[3,16]},{"screen_name":"vegetta777","name":"Vegetta777","id":242101122,"id_str":"242101122","indices":[18,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686813028352,"id_str":"663727686813028352","text":"@kanarin_maro \ud558\ud56b \uc870\uc544 \ub098\ub294 \uc794\uc778\u3134\ud55c \ucd1d\uad04 \uc368\uc5b4\ud2f0\uc778 (\ucd1d\ucca0\u3139\ucee5)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727617091112961,"in_reply_to_status_id_str":"663727617091112961","in_reply_to_user_id":3141818869,"in_reply_to_user_id_str":"3141818869","in_reply_to_screen_name":"kanarin_maro","user":{"id":3323436397,"id_str":"3323436397","name":"\uc870\uae08 \ub35c \uc4f0\ub808\uae30","screen_name":"1NONGNO","location":"\ub18d\ub178","url":null,"description":"\uc790\uce90 | \ub2cc\uc790 | \uc0ac\ub2f4 | \ub18d\uad6c\uacc4 @krbsNX2","protected":false,"verified":false,"followers_count":147,"friends_count":172,"listed_count":0,"favourites_count":2637,"statuses_count":30643,"created_at":"Sat Aug 22 04:22:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653218574878666752\/vfPMSypM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653218574878666752\/vfPMSypM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323436397\/1443830540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanarin_maro","name":"\ub79c\uc11c \uc0ac\ub791 \ub9c8\ub85c","id":3141818869,"id_str":"3141818869","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850711554,"id_str":"663727686850711554","text":"RT @SHARP_JP: \u300c\u4eca\u6669\u30ab\u30ec\u30fc\u98df\u3079\u305f\u308d\u300d\u2192\u30bf\u30de\u30cd\u30ae\u30cb\u30f3\u30b8\u30f3\u3056\u304f\u30fc\u2192\u8089\u3068\u30eb\u30fc\u3069\u3055\u30fc\u2192\u30dc\u30bf\u30f3\uff8e\uff9f\uff81\uff70 \u2192\u52b4\u50cd\u2192\u5e30\u5b85\u2192\u300c\u3044\u3044\u30be\uff5e\u3053\u308c\u300d \n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u6c34\u3068\u76e3\u8996\u4e0d\u8981 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y\uffe3\nhttps:\/\/t.co\/K4SUsLpwqI https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611802854,"id_str":"611802854","name":"\u03a4\u03bf\u03be\u03cc\u03c4\u03b7\u03c2731","screen_name":"Leoleo731","location":null,"url":null,"description":"\u5319\u3002 Battleshipcrafter\u2192NavalCrafter\u3002\u52d5\u304f\u6a5f\u68b0\u306f\u306a\u3093\u3067\u3082\u597d\u304d\u3002\u97f3\u697d\u3001\u30b3\u30fc\u30d2\u30fc\u3001\u30ab\u30d5\u30a7\u3001\u672c\u304c\u3042\u308c\u3070\u751f\u304d\u3066\u3044\u3051\u308b\u6c17\u304c\u3059\u308b\u3002\u68ee\u85ab\u3055\u3093\u63a8\u3057\u30fe(\u0e51\u2579\u25e1\u2579)\uff89 Wotb\uff3bBSC\uff3d\u6240\u5c5e\u3002","protected":false,"verified":false,"followers_count":512,"friends_count":1413,"listed_count":13,"favourites_count":4906,"statuses_count":35446,"created_at":"Mon Jun 18 16:26:10 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557543651199315968\/Eku5HE48_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557543651199315968\/Eku5HE48_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611802854\/1441644950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:21:52 +0000 2015","id":663632582681083904,"id_str":"663632582681083904","text":"\u300c\u4eca\u6669\u30ab\u30ec\u30fc\u98df\u3079\u305f\u308d\u300d\u2192\u30bf\u30de\u30cd\u30ae\u30cb\u30f3\u30b8\u30f3\u3056\u304f\u30fc\u2192\u8089\u3068\u30eb\u30fc\u3069\u3055\u30fc\u2192\u30dc\u30bf\u30f3\uff8e\uff9f\uff81\uff70 \u2192\u52b4\u50cd\u2192\u5e30\u5b85\u2192\u300c\u3044\u3044\u30be\uff5e\u3053\u308c\u300d \n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u6c34\u3068\u76e3\u8996\u4e0d\u8981 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y\uffe3\nhttps:\/\/t.co\/K4SUsLpwqI https:\/\/t.co\/NYVIylI3r4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303596417,"id_str":"303596417","name":"SHARP \u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e","screen_name":"SHARP_JP","location":null,"url":"http:\/\/www.sharp.co.jp\/corporate\/socialmedia\/","description":"\u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u3055\u307e\u3056\u307e\u306a\u5bb6\u96fb\u3084\u4f01\u696d\u306e\u6d3b\u52d5\u3001\u305d\u306e\u4ed6\u3042\u308c\u3053\u308c\u3092\u767a\u4fe1\u4e2d\u3002\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u306f\u304a\u7b54\u3048\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u304c\u3001\u3044\u305f\u3060\u3044\u305f\u30ea\u30d7\u306b\u306f\u3067\u304d\u308b\u3060\u3051\u53cd\u5fdc\u3057\u307e\u3059\u3002\u306a\u304a\u30d7\u30ec\u30b9\/IR\u60c5\u5831\u306f\u5e83\u5831\u90e8 @SHARP_Press \u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":true,"followers_count":254163,"friends_count":423,"listed_count":4972,"favourites_count":115,"statuses_count":30487,"created_at":"Mon May 23 04:34:08 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDF6FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1387D4","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660461551996940288\/NeNW6lHE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660461551996940288\/NeNW6lHE_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5043,"favorite_count":3043,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K4SUsLpwqI","expanded_url":"http:\/\/www.sharp.co.jp\/hotcook\/feature\/auto\/","display_url":"sharp.co.jp\/hotcook\/featur\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K4SUsLpwqI","expanded_url":"http:\/\/www.sharp.co.jp\/hotcook\/feature\/auto\/","display_url":"sharp.co.jp\/hotcook\/featur\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"SHARP_JP","name":"SHARP \u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e","id":303596417,"id_str":"303596417","indices":[3,12]}],"symbols":[],"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663632582681083904,"source_status_id_str":"663632582681083904","source_user_id":303596417,"source_user_id_str":"303596417"}]},"extended_entities":{"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663632582681083904,"source_status_id_str":"663632582681083904","source_user_id":303596417,"source_user_id_str":"303596417"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846578688,"id_str":"663727686846578688","text":"\u30dd\u30f3\u30ad\u30c3\u30ad\u30fc\u30ba\u2192\u6a5f\u95a2\u8eca\u30c8\u30fc\u30de\u30b9\u2192\u9b54\u795e\u82f1\u96c4\u4f1d\u30ef\u30bf\u30eb\u306e\u6d41\u308c\u3067\u898b\u3066\u305f\u306e\u61d0\u304b\u3057\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":787637690,"id_str":"787637690","name":"\u4f0a\u6ce2 \uff11\u58f1\u4e00","screen_name":"RokkinpoMaster","location":null,"url":null,"description":"\u540d\u524d\u306f\u300c\u305f\u3044\u3061\u300d\u3068\u8aad\u307f\u307e\u3059\u3002 \u306a\u3093\u304b\u30d5\u30e9\u30d5\u30e9\u3057\u305f\u308a\u3054\u304f\u7a00\u306b\u518d\u751f\u30dc\u30bf\u30f3\u62bc\u3057\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u50cd\u304d\u305f\u304f\u306a\u3044\u793e\u755c","protected":false,"verified":false,"followers_count":480,"friends_count":508,"listed_count":15,"favourites_count":5697,"statuses_count":27927,"created_at":"Tue Aug 28 18:58:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/412274751353008128\/pROMzrzk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/412274751353008128\/pROMzrzk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/787637690\/1425659991","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838329344,"id_str":"663727686838329344","text":"RT @amandaaforechi: PRA QUE ESSE CALOR TODO????","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2394634668,"id_str":"2394634668","name":"Yaya","screen_name":"Yasmimmcorrea","location":"snap:yaya.cr ","url":null,"description":"Otto freedon of expression. Solteira \u27bf","protected":false,"verified":false,"followers_count":1503,"friends_count":856,"listed_count":2,"favourites_count":972,"statuses_count":19530,"created_at":"Mon Mar 17 15:44:36 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659834271683756032\/4q1PHqiJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659834271683756032\/4q1PHqiJ.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662071084511010816\/iblp82et_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662071084511010816\/iblp82et_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394634668\/1446151368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:55 +0000 2015","id":663727220872081408,"id_str":"663727220872081408","text":"PRA QUE ESSE CALOR TODO????","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1416192589,"id_str":"1416192589","name":"af","screen_name":"amandaaforechi","location":null,"url":null,"description":"O meu Deus nunca falhar\u00e1","protected":false,"verified":false,"followers_count":1477,"friends_count":1057,"listed_count":1,"favourites_count":1174,"statuses_count":66990,"created_at":"Thu May 09 18:32:15 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592882866142334976\/zKM9oHdR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592882866142334976\/zKM9oHdR.jpg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661908728577437696\/irwhf0Aa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661908728577437696\/irwhf0Aa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1416192589\/1446922075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amandaaforechi","name":"af","id":1416192589,"id_str":"1416192589","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821392384,"id_str":"663727686821392384","text":"RT @hstar_mu: \u30b7\u30ea\u30a2\u30eb\u30ca\u30f3\u30d0\u30fc\u5165\u308a\u306e\u4f1a\u54e1\u8a3c\u767a\u884c\u3084\u3001\u4e0d\u5b9a\u671f\u3067\u4f1a\u5831\u306a\u3069\u304c\u5c4a\u304f\u30b9\u30bf\u30df\u30e5\u516c\u5f0f\u7121\u6599FC\u201c\u661f\u7bb1(\u30b7\u30e7\u30a6\u30fb\u30b1\u30fc\u30b9)\u201d\uff01\u7b2c\uff13\u671f\u4f1a\u54e1\u52df\u96c6\u304c\u30b9\u30bf\u30fc\u30c8\u81f4\u3057\u307e\u3057\u305f\u266a\u672c\u65e5\uff5e11\u670823\u65e5(\u6708)\u306e\u671f\u9593\u9650\u5b9a\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u304a\u7533\u3057\u8fbc\u307f\u306f\u3053\u3061\u3089\u2192\u300chttps:\/\/t.co\/xQTy\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":473800898,"id_str":"473800898","name":"\u9999\u7e54\u2732(\ufe61\u02c6\ufe40\u02c6\ufe61)","screen_name":"arashi99719","location":"\u53f0\u6e7e \u9ad8\u96c4\u5e02","url":null,"description":"\u6d5c\u5d0e\u3042\u3086\u307f\u3055\u3093\u3068\u30a2\u30cb\u30e1\u304c\u5927\u597d\u304d\u3067\u3059w \u53f0\u6e7e\u4eba\u306a\u3093\u3067\u3059\u3002\u5b66\u6821\u3067\u65e5\u672c\u8a9e\u3092\u52c9\u5f37\u3057\u3066\u3044\u307e\u3059('\u2207')\u3069\u3046\u305e\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":60,"friends_count":83,"listed_count":0,"favourites_count":4176,"statuses_count":1499,"created_at":"Wed Jan 25 10:31:07 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"zh-TW","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560299763795365888\/dBhh5DSS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560299763795365888\/dBhh5DSS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473800898\/1422341288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:04:49 +0000 2015","id":663386703344734208,"id_str":"663386703344734208","text":"\u30b7\u30ea\u30a2\u30eb\u30ca\u30f3\u30d0\u30fc\u5165\u308a\u306e\u4f1a\u54e1\u8a3c\u767a\u884c\u3084\u3001\u4e0d\u5b9a\u671f\u3067\u4f1a\u5831\u306a\u3069\u304c\u5c4a\u304f\u30b9\u30bf\u30df\u30e5\u516c\u5f0f\u7121\u6599FC\u201c\u661f\u7bb1(\u30b7\u30e7\u30a6\u30fb\u30b1\u30fc\u30b9)\u201d\uff01\u7b2c\uff13\u671f\u4f1a\u54e1\u52df\u96c6\u304c\u30b9\u30bf\u30fc\u30c8\u81f4\u3057\u307e\u3057\u305f\u266a\u672c\u65e5\uff5e11\u670823\u65e5(\u6708)\u306e\u671f\u9593\u9650\u5b9a\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u304a\u7533\u3057\u8fbc\u307f\u306f\u3053\u3061\u3089\u2192\u300chttps:\/\/t.co\/xQTyn4MuAm\u300d#\u30b9\u30bf\u30df\u30e5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008818249,"id_str":"3008818249","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","screen_name":"hstar_mu","location":null,"url":"http:\/\/hstar-mu.com\/","description":"\u5b8c\u5168\u30aa\u30ea\u30b8\u30ca\u30eb\u201c\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u201dTV\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3001\u6bce\u9031\u6708\u66dc\u65e5\u653e\u9001\u4e2d\uff01 TOKYO MX 24:00\u301c\/BS11 24:30\u301c\/AT-X 23:30\u301c\/\u5404\u52d5\u753b\u914d\u4fe1\u30b5\u30a4\u30c8 25:00\u4ee5\u964d \u3053\u3061\u3089\u306f\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0fTwitter\u3067\u3059\u266a","protected":false,"verified":false,"followers_count":26314,"friends_count":0,"listed_count":605,"favourites_count":0,"statuses_count":284,"created_at":"Tue Feb 03 05:12:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":940,"favorite_count":1192,"entities":{"hashtags":[{"text":"\u30b9\u30bf\u30df\u30e5","indices":[132,137]}],"urls":[{"url":"https:\/\/t.co\/xQTyn4MuAm","expanded_url":"https:\/\/hstar-mu-club.jp\/","display_url":"hstar-mu-club.jp","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b9\u30bf\u30df\u30e5","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/xQTyn4MuAm","expanded_url":"https:\/\/hstar-mu-club.jp\/","display_url":"hstar-mu-club.jp","indices":[122,140]}],"user_mentions":[{"screen_name":"hstar_mu","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","id":3008818249,"id_str":"3008818249","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825545729,"id_str":"663727686825545729","text":"Can you recommend anyone for this #job? https:\/\/t.co\/DVO0Kh3PlN #Allentown, PA #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41686294,"id_str":"41686294","name":"PA Non-Metro Jobs","screen_name":"tmj_pa_usa_jobs","location":"Pennsylvania","url":"http:\/\/tweetmyjobs.com","description":"Follow this account for geo-targeted Other job tweets in Pennsylvania Non-Metro from TweetMyJobs. Need help? Tweet us at @TweetMyJobs!","protected":false,"verified":false,"followers_count":821,"friends_count":541,"listed_count":30,"favourites_count":0,"statuses_count":2030,"created_at":"Thu May 21 21:49:44 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315451871\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315451871\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"96BEDF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303714928\/Logo_tmj_new2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303714928\/Logo_tmj_new2b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41686294\/1349360220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.6084305,-75.4901833]},"coordinates":{"type":"Point","coordinates":[-75.4901833,40.6084305]},"place":{"id":"cfcf6b96b61e7b11","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cfcf6b96b61e7b11.json","place_type":"city","name":"Allentown","full_name":"Allentown, PA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-75.548035,40.547616],[-75.548035,40.636034],[-75.419836,40.636034],[-75.419836,40.547616]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[34,38]},{"text":"Allentown","indices":[64,74]},{"text":"Hiring","indices":[79,86]},{"text":"CareerArc","indices":[87,97]}],"urls":[{"url":"https:\/\/t.co\/DVO0Kh3PlN","expanded_url":"http:\/\/bit.ly\/1RveTmI","display_url":"bit.ly\/1RveTmI","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825590785,"id_str":"663727686825590785","text":"@rafiqb \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726517567012864,"in_reply_to_status_id_str":"663726517567012864","in_reply_to_user_id":54833022,"in_reply_to_user_id_str":"54833022","in_reply_to_screen_name":"rafiqb","user":{"id":500697060,"id_str":"500697060","name":"Pratiksha Hinduja","screen_name":"Princess_Prati","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":135,"listed_count":0,"favourites_count":841,"statuses_count":305,"created_at":"Thu Feb 23 11:27:34 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554182081639493634\/q_jHWfcg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554182081639493634\/q_jHWfcg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/500697060\/1416474716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rafiqb","name":"\u0645\u062d\u0645\u0651\u062f \u0631\u0641\u064a\u0642","id":54833022,"id_str":"54833022","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686833958912,"id_str":"663727686833958912","text":"RT @EXO_HBK: \u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2590876880,"id_str":"2590876880","name":"\uc81c\uc2a4\uce74","screen_name":"real_cesca07","location":"\u0e0a\u0e48\u0e2d\u0e07\u0e41\u0e04\u0e1a\u0e21\u0e30\u0e25\u0e30\u0e01\u0e32","url":null,"description":"HH. \u0e40\u0e21\u0e19\u0e19\u0e49\u0e2d\u0e07\u0e0b\u0e2d \u0e15\u0e34\u0e48\u0e07\u0e1e\u0e35\u0e48\u0e41\u0e17 \u0e0a\u0e32\u0e19\u0e41\u0e1a\u0e04\u0e01\u0e47\u0e0a\u0e2d\u0e1a\u0e19\u0e30 \n #sone #exol #dek59","protected":false,"verified":false,"followers_count":272,"friends_count":334,"listed_count":2,"favourites_count":1017,"statuses_count":40038,"created_at":"Fri Jun 27 06:07:30 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633609810752049152\/ulTvU6cX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633609810752049152\/ulTvU6cX.jpg","profile_background_tile":true,"profile_link_color":"BF3EFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660469015693791232\/0dGludg7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660469015693791232\/0dGludg7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2590876880\/1445266529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:46 +0000 2015","id":663727181541998593,"id_str":"663727181541998593","text":"\u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e08\u0e49\u0e32 \u0e04\u0e36\u0e04\u0e36","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16858,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202472,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":83,"favorite_count":4,"entities":{"hashtags":[{"text":"EXO","indices":[30,34]},{"text":"CALLMEBABY","indices":[42,53]},{"text":"MAMA2015","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[104,113]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[43,47]},{"text":"CALLMEBABY","indices":[55,66]},{"text":"MAMA2015","indices":[88,97]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[117,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686817157120,"id_str":"663727686817157120","text":"@3jsbcrhyiu \n\nRT\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\\( \u02c6o\u02c6 )\/\u2661\n\u304a\u8fce\u3048\u306b\u304d\u307e\u3057\u305f\uff01\n\u3088\u304b\u3063\u305f\u3089\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\ud83d\ude0b\ud83d\udc95\n\nhttps:\/\/t.co\/OrXnS02w4P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2838160932,"in_reply_to_user_id_str":"2838160932","in_reply_to_screen_name":"3jsbcrhyiu","user":{"id":3224942354,"id_str":"3224942354","name":"\u307f \u2764\ufe0e","screen_name":"mixx_1OO6","location":"over 30 ","url":null,"description":"\u2661 \u304a\u3061\u3073\u3061\u3083\u3093 \u3068 \u3086\u308b\uff5e\u304f\uff02\u13a2\uff02\u306e\u4eba\u2661 \uff5c \u2765\u2765 \u5927\u5207\u306a\u59b9\u3061\u3083\u3093 \u2765\u2765 \u3010 @naokejii \u3011","protected":false,"verified":false,"followers_count":30,"friends_count":44,"listed_count":1,"favourites_count":9,"statuses_count":1920,"created_at":"Sun May 24 07:03:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643090904765456384\/rDWunyqf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643090904765456384\/rDWunyqf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224942354\/1446877539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663326785648496641,"quoted_status_id_str":"663326785648496641","quoted_status":{"created_at":"Sun Nov 08 12:06:44 +0000 2015","id":663326785648496641,"id_str":"663326785648496641","text":"#fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3044\u304d\u307e\u3059\n\nKataoka Naoto \ud83d\ude18\uff5cover 30\n\u3086\u308b\uff5e\u304f\u3042\u306e\u4eba\u3082...\ud83d\udc93\n\n\ud83d\udd3b\u540c\u4e16\u4ee3\u306efam\u3055\u3093\u5927\u6b53\u8fce\ud83d\ude0b\u2934\ufe0e\u2934\ufe0e\n\ud83d\udd3b10\u4ee3\u306e\u65b9\u306f\u3054\u3081\u3093\u306a\u3055\u3044\u274c https:\/\/t.co\/CL2vlAb1Km","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224942354,"id_str":"3224942354","name":"\u307f \u2764\ufe0e","screen_name":"mixx_1OO6","location":"over 30 ","url":null,"description":"\u2661 \u304a\u3061\u3073\u3061\u3083\u3093 \u3068 \u3086\u308b\uff5e\u304f\uff02\u13a2\uff02\u306e\u4eba\u2661 \uff5c \u2765\u2765 \u5927\u5207\u306a\u59b9\u3061\u3083\u3093 \u2765\u2765 \u3010 @naokejii \u3011","protected":false,"verified":false,"followers_count":30,"friends_count":44,"listed_count":1,"favourites_count":9,"statuses_count":1919,"created_at":"Sun May 24 07:03:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643090904765456384\/rDWunyqf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643090904765456384\/rDWunyqf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224942354\/1446877539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3044\u304d\u307e\u3059","indices":[0,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663326762571436032,"id_str":"663326762571436032","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTScLRUUkAAMm-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTScLRUUkAAMm-z.jpg","url":"https:\/\/t.co\/CL2vlAb1Km","display_url":"pic.twitter.com\/CL2vlAb1Km","expanded_url":"http:\/\/twitter.com\/mixx_1OO6\/status\/663326785648496641\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663326762571436032,"id_str":"663326762571436032","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTScLRUUkAAMm-z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTScLRUUkAAMm-z.jpg","url":"https:\/\/t.co\/CL2vlAb1Km","display_url":"pic.twitter.com\/CL2vlAb1Km","expanded_url":"http:\/\/twitter.com\/mixx_1OO6\/status\/663326785648496641\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OrXnS02w4P","expanded_url":"https:\/\/twitter.com\/mixx_1oo6\/status\/663326785648496641","display_url":"twitter.com\/mixx_1oo6\/stat\u2026","indices":[65,88]}],"user_mentions":[{"screen_name":"3jsbcrhyiu","name":"\u306b\u3083\u3093\u3061\u3044@LDH","id":2838160932,"id_str":"2838160932","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986658"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821543936,"id_str":"663727686821543936","text":"RT @eb0027bb734744e: \u0633\u0627\u0644\u0628 \u062c\u0627\u062f \u062a\u0639\u0627\u0644 \u0643\u064a\u0643 mojab_111 https:\/\/t.co\/uYTNaZbiha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241226216,"id_str":"3241226216","name":"\ufefb\u0645\u0633\u062a\u062d\u064a\u0644","screen_name":"alhisme3889","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":71,"friends_count":147,"listed_count":0,"favourites_count":65,"statuses_count":503,"created_at":"Wed Jun 10 10:09:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608598659861610498\/A3BTCxnq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608598659861610498\/A3BTCxnq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:24 +0000 2015","id":663710483174834176,"id_str":"663710483174834176","text":"\u0633\u0627\u0644\u0628 \u062c\u0627\u062f \u062a\u0639\u0627\u0644 \u0643\u064a\u0643 mojab_111 https:\/\/t.co\/uYTNaZbiha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096062064,"id_str":"3096062064","name":"\u0645\u0648\u062c\u0628 \u0645\u0639\u0636\u0644 ","screen_name":"eb0027bb734744e","location":null,"url":null,"description":"545a4b2a","protected":false,"verified":false,"followers_count":1370,"friends_count":293,"listed_count":5,"favourites_count":1,"statuses_count":2753,"created_at":"Wed Mar 18 11:17:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620702283865587712\/u9_4tjnH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620702283865587712\/u9_4tjnH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096062064\/1439917304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710480700194818,"id_str":"663710480700194818","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","url":"https:\/\/t.co\/uYTNaZbiha","display_url":"pic.twitter.com\/uYTNaZbiha","expanded_url":"http:\/\/twitter.com\/eb0027bb734744e\/status\/663710483174834176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710480700194818,"id_str":"663710480700194818","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","url":"https:\/\/t.co\/uYTNaZbiha","display_url":"pic.twitter.com\/uYTNaZbiha","expanded_url":"http:\/\/twitter.com\/eb0027bb734744e\/status\/663710483174834176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eb0027bb734744e","name":"\u0645\u0648\u062c\u0628 \u0645\u0639\u0636\u0644 ","id":3096062064,"id_str":"3096062064","indices":[3,19]}],"symbols":[],"media":[{"id":663710480700194818,"id_str":"663710480700194818","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","url":"https:\/\/t.co\/uYTNaZbiha","display_url":"pic.twitter.com\/uYTNaZbiha","expanded_url":"http:\/\/twitter.com\/eb0027bb734744e\/status\/663710483174834176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663710483174834176,"source_status_id_str":"663710483174834176","source_user_id":3096062064,"source_user_id_str":"3096062064"}]},"extended_entities":{"media":[{"id":663710480700194818,"id_str":"663710480700194818","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5KmvWwAIm6d1.jpg","url":"https:\/\/t.co\/uYTNaZbiha","display_url":"pic.twitter.com\/uYTNaZbiha","expanded_url":"http:\/\/twitter.com\/eb0027bb734744e\/status\/663710483174834176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663710483174834176,"source_status_id_str":"663710483174834176","source_user_id":3096062064,"source_user_id_str":"3096062064"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838259713,"id_str":"663727686838259713","text":"\u0627\u062c\u0640\u0640\u0640\u0640\u0640\u0639\u0640\u0640\u0640\u0640\u0640\u0640\u0644 \u062d\u0640\u0640\u0640\u0633\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0627\u0628\u0640\u0640\u0640\u0640\u0643 \u0635\u0640\u0640\u062f\u0642\u0629 \u062c\u0640\u0640\u0640\u0627\u0631\u064a\u0640\u0640\u0640\u0629 \u0641\u0640\u064a \u062d\u064a\u0640\u0627\u062a\u0640\u0643 \u0648 \u0628\u0639\u062f \u0645\u0645\u0627\u062a\u0640\u0640\u0643 \u0645\u0639 \u063a\u0631\u062f\u0644\u064a \u0628\u0627\u0644\u062e\u064a\u0631 ..\u0627\u0634\u0640\u062a\u0631\u0643 \u0645\u0639\u0646\u0627 \u0627\u0644\u0627\u0646 https:\/\/t.co\/hIPb7AgMdg","source":"\u003ca href=\"http:\/\/www.YaRajaee.Com\" rel=\"nofollow\"\u003eYaRajaee\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259671376,"id_str":"259671376","name":"Faisal Alturki","screen_name":"gsas_2014","location":null,"url":null,"description":"\u200f\u200f543E614D","protected":false,"verified":false,"followers_count":694,"friends_count":154,"listed_count":1,"favourites_count":236,"statuses_count":22097,"created_at":"Wed Mar 02 10:48:13 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544236314334212096\/PfU342o6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544236314334212096\/PfU342o6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259671376\/1418590936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hIPb7AgMdg","expanded_url":"http:\/\/Gharedly.Net","display_url":"Gharedly.Net","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686817153024,"id_str":"663727686817153024","text":"MUMMY ASKING ME ABOUT TRAILER SINCE 2 PM ..SHE'S THAT MUCH EXCITED TO SEE @iamsrk AND @KajolAtUN BACK. #DhamakedarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2166852932,"id_str":"2166852932","name":"TAKSHAK","screen_name":"takshak_speaks","location":"SRK's Country , India","url":"http:\/\/www.SRKUniverse.com","description":"SARHAD PAAR EK EISA SHAQS HAIN JISKA NAAM TAKSHAK HAIN...19,AB DE VILLIERS FAN.SRK IS GOD","protected":false,"verified":false,"followers_count":1738,"friends_count":472,"listed_count":15,"favourites_count":27899,"statuses_count":44806,"created_at":"Thu Oct 31 15:58:40 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663595249256652800\/u_HIk79b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663595249256652800\/u_HIk79b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2166852932\/1443634569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedarDilwaleTrailer","indices":[103,128]}],"urls":[],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[74,81]},{"screen_name":"KajolAtUN","name":"Kajol","id":2805358944,"id_str":"2805358944","indices":[86,96]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986658"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821498880,"id_str":"663727686821498880","text":"RT @7lw_follow_back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7lw_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3285790195,"id_str":"3285790195","name":"\u0633\u0627\u0645\u0631","screen_name":"saatwnnn11","location":null,"url":null,"description":"\u0639\u0631\u0628\u064a","protected":false,"verified":false,"followers_count":2607,"friends_count":2601,"listed_count":0,"favourites_count":10,"statuses_count":198,"created_at":"Mon Jul 20 19:07:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623214250396250112\/w05upo2J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623214250396250112\/w05upo2J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3285790195\/1437420830","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:29 +0000 2015","id":663725351764365312,"id_str":"663725351764365312","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7lw_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 0530","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1117544250,"id_str":"1117544250","name":"\u0627\u0633\u0637\u0648\u0644 \u0627\u0644\u0627\u0636\u0627\u0641\u0627\u062a300000","screen_name":"7lw_follow_back","location":null,"url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0627\u0633\u0637\u0648\u0644 \u0627\u0644\u0627\u0636\u0627\u0641\u0627\u062a \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":320842,"friends_count":138810,"listed_count":449,"favourites_count":0,"statuses_count":64524,"created_at":"Thu Jan 24 19:25:23 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444572948670976000\/xMd3EsLN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444572948670976000\/xMd3EsLN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117544250\/1394829302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":64,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7lw_follow_back","name":"\u0627\u0633\u0637\u0648\u0644 \u0627\u0644\u0627\u0636\u0627\u0641\u0627\u062a300000","id":1117544250,"id_str":"1117544250","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846693376,"id_str":"663727686846693376","text":"https:\/\/t.co\/vND5tm5Q6j","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4062151757,"id_str":"4062151757","name":"Mike Markham","screen_name":"MikeJokester217","location":null,"url":null,"description":"Father of 3...\nI'm a huge computer tech nerd love fixing them","protected":false,"verified":false,"followers_count":4,"friends_count":16,"listed_count":0,"favourites_count":62,"statuses_count":87,"created_at":"Wed Oct 28 17:41:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659765092989468672\/ll7i6ZmC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659765092989468672\/ll7i6ZmC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vND5tm5Q6j","expanded_url":"http:\/\/www.itproportal.com\/2014\/07\/02\/steve-wozniak-treats-samsung-galaxy-gear-mouldy-apple-core\/","display_url":"itproportal.com\/2014\/07\/02\/ste\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846558212,"id_str":"663727686846558212","text":"@suejexng kata siapa??:3 jadi aku masa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698666864013313,"in_reply_to_status_id_str":"663698666864013313","in_reply_to_user_id":560115367,"in_reply_to_user_id_str":"560115367","in_reply_to_screen_name":"suejexng","user":{"id":1576722746,"id_str":"1576722746","name":"hoshi \/ ohib","screen_name":"Ho_shibo","location":"SVTBASE","url":null,"description":"Focus on things that bring my mood up\n\u2022\n\u2022\n\u2022\nwt\/ @krseulgi","protected":false,"verified":false,"followers_count":1938,"friends_count":1559,"listed_count":1,"favourites_count":286,"statuses_count":23530,"created_at":"Mon Jul 08 04:22:51 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659617513269886976\/e3bZdvJc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659617513269886976\/e3bZdvJc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1576722746\/1446989227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suejexng","name":"Hoshi ts. dyu","id":560115367,"id_str":"560115367","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846689280,"id_str":"663727686846689280","text":"#WICKET: 2nd ODI #Zim 183 all out\n(43.2\/50 ov, Target: 242) v\nBan Cremer st Mushfiqur\nRahim b Nasir Hossain 1 (4)\n#BanvZim","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2235319670,"id_str":"2235319670","name":"#PAKvENG #INDvSA","screen_name":"Must_Cricinfo","location":"Pakistan","url":"http:\/\/twitter.com\/Must_Knowledge","description":"Get Only Pakistani and International Cricket News & Latest International Match Updates.....\r\n@Fancy_GK","protected":false,"verified":false,"followers_count":1089,"friends_count":58,"listed_count":15,"favourites_count":105,"statuses_count":7595,"created_at":"Sun Dec 08 01:56:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640494871539679232\/ovlFBQ4U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640494871539679232\/ovlFBQ4U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2235319670\/1441540962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WICKET","indices":[0,7]},{"text":"Zim","indices":[17,21]},{"text":"BanvZim","indices":[114,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850879489,"id_str":"663727686850879489","text":"RT @WRadioColombia: Env\u00edan a prisi\u00f3n primeros responsables del desfalco del Icbf en la Guajira https:\/\/t.co\/3fzPOWTkt5 https:\/\/t.co\/iet9Ke5\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2666090048,"id_str":"2666090048","name":"paola yepez","screen_name":"yeppao22","location":null,"url":null,"description":"nunca miro el camino que deje siempre miro en el que estoy y para el que voy","protected":false,"verified":false,"followers_count":488,"friends_count":358,"listed_count":1,"favourites_count":51,"statuses_count":2627,"created_at":"Mon Jul 21 14:54:23 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3599BD","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588030872089165825\/k3-5xQ3e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588030872089165825\/k3-5xQ3e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2666090048\/1405954560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:31 +0000 2015","id":663702708361138176,"id_str":"663702708361138176","text":"Env\u00edan a prisi\u00f3n primeros responsables del desfalco del Icbf en la Guajira https:\/\/t.co\/3fzPOWTkt5 https:\/\/t.co\/iet9Ke5w46","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20560294,"id_str":"20560294","name":"W Radio Colombia","screen_name":"WRadioColombia","location":"Colombia","url":"http:\/\/www.wradio.com.co","description":"Perfil oficial de La W Radio en Colombia, bajo la direcci\u00f3n de Julio S\u00e1nchez Cristo. M\u00e1s piel, M\u00e1s W.","protected":false,"verified":true,"followers_count":2385534,"friends_count":81,"listed_count":8610,"favourites_count":1398,"statuses_count":189376,"created_at":"Wed Feb 11 00:29:52 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E3E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438780594843963392\/xK1Ncaah.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438780594843963392\/xK1Ncaah.jpeg","profile_background_tile":false,"profile_link_color":"F10917","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B1B6AF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441573492639559680\/PX93UT60_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441573492639559680\/PX93UT60_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20560294\/1348777407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3fzPOWTkt5","expanded_url":"http:\/\/bit.ly\/1L6dcad","display_url":"bit.ly\/1L6dcad","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3fzPOWTkt5","expanded_url":"http:\/\/bit.ly\/1L6dcad","display_url":"bit.ly\/1L6dcad","indices":[95,118]}],"user_mentions":[{"screen_name":"WRadioColombia","name":"W Radio Colombia","id":20560294,"id_str":"20560294","indices":[3,18]}],"symbols":[],"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663702708361138176,"source_status_id_str":"663702708361138176","source_user_id":20560294,"source_user_id_str":"20560294"}]},"extended_entities":{"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663702708361138176,"source_status_id_str":"663702708361138176","source_user_id":20560294,"source_user_id_str":"20560294"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821535744,"id_str":"663727686821535744","text":"RT @fm94a: \u0627\u0644\u062d\u064a\u0627\u0629 \u062e\u0634\u0646\u0629 \u0648\u0627\u0644\u0641\u0644\u0648\u0633 \u0641\u0627\u0632\u0644\u064a\u0646 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1289654179,"id_str":"1289654179","name":"\u0648\u0635\u0627\u064a\u0641 \u0625. \u0622\u0644\u0645\u062f\u064a\u0645\u064a\u063a","screen_name":"Modaemeeq3","location":"\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647. SA,Riyaddh","url":"http:\/\/www.ask.fm\/wasaiff49","description":"Ethics makes ugliness beautiful||\u0627\u0644\u0644\u0647\u0645 \u0627\u0633\u062a\u0631\u0646\u064a \u0641\u0648\u0642 \u0627\u0644\u0623\u0631\u0636 \u0648\u062a\u062d\u062a \u0627\u0644\u0623\u0631\u0636 \u0648\u064a\u0648\u0645 \u0627\u0644\u0639\u0631\u0636 \u0639\u0644\u064a\u0643..\u0627\u0644\u0644\u0647\u0645 \u0623\u062c\u0631\u0646\u064a \u0645\u0646 \u0645\u0648\u062a \u0627\u0644\u063a\u0641\u0644\u0647 \u0648\u0644\u0627 \u062a\u0623\u062e\u0630\u0646\u064a \u0645\u0646 \u0627\u0644\u062f\u064f\u0646\u064a\u0627 \u0625\u0644\u0627 \u0648\u0627\u0646\u062a \u0631\u0627\u0636\u064d \u0639\u0646\u064a","protected":false,"verified":false,"followers_count":206,"friends_count":114,"listed_count":0,"favourites_count":204,"statuses_count":10089,"created_at":"Fri Mar 22 20:58:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595580412610547712\/dftTfKY5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595580412610547712\/dftTfKY5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1289654179\/1427901679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 29 17:54:53 +0000 2015","id":626450838848937984,"id_str":"626450838848937984","text":"\u0627\u0644\u062d\u064a\u0627\u0629 \u062e\u0634\u0646\u0629 \u0648\u0627\u0644\u0641\u0644\u0648\u0633 \u0641\u0627\u0632\u0644\u064a\u0646 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2513715720,"id_str":"2513715720","name":"\u0645\u062a\u0631\u0645\u062a\u0644","screen_name":"fm94a","location":"Instagram & snapchat = fm94a","url":null,"description":"\u0645\u0634\u0643\u0644\u0629 \u0627\u0644\u062d\u064a\u0627\u0629 \u0645\u0627 \u0635\u0631\u064a\u062d\u0629 \u0628\u062a\u062d\u0628 \u062a\u0644\u0641 \u0648\u062a\u062f\u0648\u0631 \u060c \u0639\u0644\u0634\u0627\u0646 \u0643\u062f\u0627 \u0642\u0631\u0631\u062a \u0627\u0644\u0641 \u0648\u0627\u062f\u0648\u0631 \u0645\u0639\u0627\u0647\u0627 \u0648\u0641\u064a \u0646\u0635 \u0627\u0644\u0637\u0631\u064a\u0642 \u0636\u064a\u0639\u062a\u0647\u0627 \u0648\u0636\u0639\u062a \u0627\u0646\u0627 \u0632\u0627\u062a\u064a ...","protected":false,"verified":false,"followers_count":80629,"friends_count":133,"listed_count":193,"favourites_count":267,"statuses_count":738,"created_at":"Wed May 21 21:31:48 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595172881698410496\/J6n42K2o.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595172881698410496\/J6n42K2o.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623145515660783616\/89K5JhJ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623145515660783616\/89K5JhJ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2513715720\/1446766482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":694,"favorite_count":119,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fm94a","name":"\u0645\u062a\u0631\u0645\u062a\u0644","id":2513715720,"id_str":"2513715720","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838194176,"id_str":"663727686838194176","text":"\u8981\u306f\u30eb\u30eb\u30fc\u30b7\u30e5\u306f\u30af\u30ba","source":"\u003ca href=\"http:\/\/www.twitpane.com\" rel=\"nofollow\"\u003eTwitPanePlus for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256517896,"id_str":"256517896","name":"\u3089\u3044\u3064","screen_name":"_raitsu","location":null,"url":null,"description":"\u30bd\u30fc\u30b7\u30e3\u30eb\u30d2\u30c3\u30d4\u30fc","protected":false,"verified":false,"followers_count":634,"friends_count":638,"listed_count":86,"favourites_count":34723,"statuses_count":166238,"created_at":"Wed Feb 23 14:12:07 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647039783655444480\/1mJ59k-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647039783655444480\/1mJ59k-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256517896\/1445694191","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686834118657,"id_str":"663727686834118657","text":"RT @WRadioColombia: Env\u00edan a prisi\u00f3n primeros responsables del desfalco del Icbf en la Guajira https:\/\/t.co\/3fzPOWTkt5 https:\/\/t.co\/iet9Ke5\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3649124236,"id_str":"3649124236","name":"Nurys Sarmiento","screen_name":"SarmientoNurys","location":"Colombia","url":null,"description":"dichosa y feliz","protected":false,"verified":false,"followers_count":184,"friends_count":162,"listed_count":3,"favourites_count":80,"statuses_count":1300,"created_at":"Mon Sep 14 03:56:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643281246458654724\/m3Rqda09.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643281246458654724\/m3Rqda09.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643280863908790272\/U7law--k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643280863908790272\/U7law--k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3649124236\/1442205109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:31 +0000 2015","id":663702708361138176,"id_str":"663702708361138176","text":"Env\u00edan a prisi\u00f3n primeros responsables del desfalco del Icbf en la Guajira https:\/\/t.co\/3fzPOWTkt5 https:\/\/t.co\/iet9Ke5w46","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20560294,"id_str":"20560294","name":"W Radio Colombia","screen_name":"WRadioColombia","location":"Colombia","url":"http:\/\/www.wradio.com.co","description":"Perfil oficial de La W Radio en Colombia, bajo la direcci\u00f3n de Julio S\u00e1nchez Cristo. M\u00e1s piel, M\u00e1s W.","protected":false,"verified":true,"followers_count":2385534,"friends_count":81,"listed_count":8610,"favourites_count":1398,"statuses_count":189376,"created_at":"Wed Feb 11 00:29:52 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E3E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438780594843963392\/xK1Ncaah.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438780594843963392\/xK1Ncaah.jpeg","profile_background_tile":false,"profile_link_color":"F10917","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B1B6AF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441573492639559680\/PX93UT60_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441573492639559680\/PX93UT60_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20560294\/1348777407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3fzPOWTkt5","expanded_url":"http:\/\/bit.ly\/1L6dcad","display_url":"bit.ly\/1L6dcad","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3fzPOWTkt5","expanded_url":"http:\/\/bit.ly\/1L6dcad","display_url":"bit.ly\/1L6dcad","indices":[95,118]}],"user_mentions":[{"screen_name":"WRadioColombia","name":"W Radio Colombia","id":20560294,"id_str":"20560294","indices":[3,18]}],"symbols":[],"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663702708361138176,"source_status_id_str":"663702708361138176","source_user_id":20560294,"source_user_id_str":"20560294"}]},"extended_entities":{"media":[{"id":663701261884268549,"id_str":"663701261884268549","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwx_-XIAU8Unx.jpg","url":"https:\/\/t.co\/iet9Ke5w46","display_url":"pic.twitter.com\/iet9Ke5w46","expanded_url":"http:\/\/twitter.com\/WRadioColombia\/status\/663702708361138176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663702708361138176,"source_status_id_str":"663702708361138176","source_user_id":20560294,"source_user_id_str":"20560294"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829735936,"id_str":"663727686829735936","text":"RT @jennilyn_PW: What lies ahead for physical bookstores? #publishwholesale @jennilyn_PW https:\/\/t.co\/ITDQyG1oAo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1257645007,"id_str":"1257645007","name":"Stephanie Collins","screen_name":"W_Angels_Wings","location":"Kirkland, WA","url":"http:\/\/www.withangelswings.net","description":"Busy #Mom, Loving Wife, Unsuspecting #Author (now #Awardwinning & #Bestselling!) Who knew!? http:\/\/getBook.at\/With-Angels-Wings-universal","protected":false,"verified":false,"followers_count":48384,"friends_count":49101,"listed_count":2336,"favourites_count":19057,"statuses_count":267406,"created_at":"Sun Mar 10 18:13:37 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543964893217439744\/00lD3OMs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543964893217439744\/00lD3OMs.jpeg","profile_background_tile":false,"profile_link_color":"669C9C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000260174762\/323fed77bb2d21a6b5088531567730ef_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000260174762\/323fed77bb2d21a6b5088531567730ef_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257645007\/1398209796","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 22 09:31:08 +0000 2015","id":657127034175385600,"id_str":"657127034175385600","text":"What lies ahead for physical bookstores? #publishwholesale @jennilyn_PW https:\/\/t.co\/ITDQyG1oAo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3000540199,"id_str":"3000540199","name":"Jennilyn Austral","screen_name":"jennilyn_PW","location":"Philippines","url":"http:\/\/www.publishwholesale.com\/","description":"Sales Professional at http:\/\/www.publishwholesale.com\/","protected":false,"verified":false,"followers_count":891,"friends_count":910,"listed_count":315,"favourites_count":4,"statuses_count":16215,"created_at":"Thu Jan 29 04:37:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560658402880139264\/VgXzCgu7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560658402880139264\/VgXzCgu7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3000540199\/1444640207","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":24,"entities":{"hashtags":[{"text":"publishwholesale","indices":[42,59]}],"urls":[{"url":"https:\/\/t.co\/ITDQyG1oAo","expanded_url":"http:\/\/goo.gl\/gkQ7lV","display_url":"goo.gl\/gkQ7lV","indices":[73,96]}],"user_mentions":[{"screen_name":"jennilyn_PW","name":"Jennilyn Austral","id":3000540199,"id_str":"3000540199","indices":[60,72]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"publishwholesale","indices":[59,76]}],"urls":[{"url":"https:\/\/t.co\/ITDQyG1oAo","expanded_url":"http:\/\/goo.gl\/gkQ7lV","display_url":"goo.gl\/gkQ7lV","indices":[90,113]}],"user_mentions":[{"screen_name":"jennilyn_PW","name":"Jennilyn Austral","id":3000540199,"id_str":"3000540199","indices":[3,15]},{"screen_name":"jennilyn_PW","name":"Jennilyn Austral","id":3000540199,"id_str":"3000540199","indices":[77,89]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838149120,"id_str":"663727686838149120","text":"@Ioveis4waIIs @GfriendStanSinB @companylorde not every artist wants to be a pop star. Some just want to put out music (like Sia & Lana).","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663572415880949760,"in_reply_to_status_id_str":"663572415880949760","in_reply_to_user_id":2935577990,"in_reply_to_user_id_str":"2935577990","in_reply_to_screen_name":"Ioveis4waIIs","user":{"id":92080740,"id_str":"92080740","name":"Aaron","screen_name":"lordellaaron","location":"Dallas","url":"https:\/\/twitter.com\/lordellaaron\/status\/493162235120726016","description":"*insert Lorde lyric here*","protected":false,"verified":false,"followers_count":2739,"friends_count":301,"listed_count":4,"favourites_count":25818,"statuses_count":22474,"created_at":"Mon Nov 23 18:28:37 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456662220319903744\/3yl9y_MV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456662220319903744\/3yl9y_MV.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658785215356137473\/zvcHdimw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658785215356137473\/zvcHdimw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92080740\/1444359573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c3e46c3d0cac08","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c3e46c3d0cac08.json","place_type":"city","name":"Frisco","full_name":"Frisco, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-96.937783,33.081206],[-96.937783,33.219073],[-96.732715,33.219073],[-96.732715,33.081206]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ioveis4waIIs","name":"Elizabeth","id":2935577990,"id_str":"2935577990","indices":[0,13]},{"screen_name":"GfriendStanSinB","name":"\u2800\u2800SinB daily","id":206141793,"id_str":"206141793","indices":[14,30]},{"screen_name":"companylorde","name":".","id":1216864279,"id_str":"1216864279","indices":[31,44]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686812995584,"id_str":"663727686812995584","text":"\u307e\u305f\u30e2\u30f3\u30b9\u30bf\u30fc\u98f2\u3093\u3067\u3057\u307e\u3063\u305f\uff65\uff65\uff65","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1628014628,"id_str":"1628014628","name":"\u3059\u305a\u304d \u306f\u308b\u304b","screen_name":"09171B21","location":"\u677e\u6238","url":"http:\/\/Instagram.com\/s9z17hr_f\/","description":"\u9ad8\u6728\u2192\u91d1\u30f6\u4f5c\u2192\u5e02\u67711B\u2192 2A \u21923C23 \u30d0\u30c9\u5f15\u9000 \u4e43\u6728\u574246 \/ Rush\u00d7300 \u6625\u304b\u3089ESP LIVE\u304c\u5927\u597d\u304d","protected":false,"verified":false,"followers_count":417,"friends_count":422,"listed_count":1,"favourites_count":5146,"statuses_count":4791,"created_at":"Sun Jul 28 14:31:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656823418340270080\/diQgoJip_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656823418340270080\/diQgoJip_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1628014628\/1438342876","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686821486592,"id_str":"663727686821486592","text":"RT @JuanamartinezH: Whaaatttt!!??? #HIS15 hahaHahaha snapchat: juanamartinezh4 https:\/\/t.co\/dTQSTalV9z","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2836824829,"id_str":"2836824829","name":"\u2020S\u00f0fia","screen_name":"MSofiiaSanchez","location":"Bogota ","url":null,"description":null,"protected":false,"verified":false,"followers_count":139,"friends_count":93,"listed_count":0,"favourites_count":1186,"statuses_count":4285,"created_at":"Wed Oct 01 15:09:36 +0000 2014","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566687116227133440\/q_7wHLs-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566687116227133440\/q_7wHLs-.jpeg","profile_background_tile":false,"profile_link_color":"570638","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626778450557304833\/189QhbTa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626778450557304833\/189QhbTa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2836824829\/1438270775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 16:48:37 +0000 2015","id":662672949997117440,"id_str":"662672949997117440","text":"Whaaatttt!!??? #HIS15 hahaHahaha snapchat: juanamartinezh4 https:\/\/t.co\/dTQSTalV9z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255609802,"id_str":"255609802","name":"Juana Mart\u00ednez \u2020","screen_name":"JuanamartinezH","location":"Colombia - M\u00e9xico","url":"http:\/\/www.YOUTUBE.com\/user\/juna144","description":"Si el mundo es una mierda; pues juega con la mierda. INSTAGRAM http:\/\/instagram.com\/juanamartinezh","protected":false,"verified":true,"followers_count":682390,"friends_count":552,"listed_count":742,"favourites_count":29225,"statuses_count":33071,"created_at":"Mon Feb 21 18:25:03 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542498409916018689\/UVIsgCky.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542498409916018689\/UVIsgCky.jpeg","profile_background_tile":true,"profile_link_color":"00A69E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C2BDBC","profile_text_color":"D61111","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655161595463626752\/Irzx_I8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655161595463626752\/Irzx_I8t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255609802\/1439884525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":303,"favorite_count":1164,"entities":{"hashtags":[{"text":"HIS15","indices":[15,21]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662672909849128961,"id_str":"662672909849128961","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","url":"https:\/\/t.co\/dTQSTalV9z","display_url":"pic.twitter.com\/dTQSTalV9z","expanded_url":"http:\/\/twitter.com\/JuanamartinezH\/status\/662672949997117440\/video\/1","type":"photo","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662672909849128961,"id_str":"662672909849128961","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","url":"https:\/\/t.co\/dTQSTalV9z","display_url":"pic.twitter.com\/dTQSTalV9z","expanded_url":"http:\/\/twitter.com\/JuanamartinezH\/status\/662672949997117440\/video\/1","type":"video","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"video_info":{"aspect_ratio":[40,71],"duration_millis":9155,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/vid\/180x320\/3Yzd4q1Es1VtCbKW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/pl\/9c1aUy1J6QocrAq8.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/vid\/180x320\/3Yzd4q1Es1VtCbKW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/pl\/9c1aUy1J6QocrAq8.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HIS15","indices":[35,41]}],"urls":[],"user_mentions":[{"screen_name":"JuanamartinezH","name":"Juana Mart\u00ednez \u2020","id":255609802,"id_str":"255609802","indices":[3,18]}],"symbols":[],"media":[{"id":662672909849128961,"id_str":"662672909849128961","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","url":"https:\/\/t.co\/dTQSTalV9z","display_url":"pic.twitter.com\/dTQSTalV9z","expanded_url":"http:\/\/twitter.com\/JuanamartinezH\/status\/662672949997117440\/video\/1","type":"photo","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"source_status_id":662672949997117440,"source_status_id_str":"662672949997117440","source_user_id":255609802,"source_user_id_str":"255609802"}]},"extended_entities":{"media":[{"id":662672909849128961,"id_str":"662672909849128961","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662672909849128961\/pu\/img\/yV6Tltl3PEJLJS1d.jpg","url":"https:\/\/t.co\/dTQSTalV9z","display_url":"pic.twitter.com\/dTQSTalV9z","expanded_url":"http:\/\/twitter.com\/JuanamartinezH\/status\/662672949997117440\/video\/1","type":"video","sizes":{"small":{"w":320,"h":568,"resize":"fit"},"large":{"w":320,"h":568,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":568,"resize":"fit"}},"source_status_id":662672949997117440,"source_status_id_str":"662672949997117440","source_user_id":255609802,"source_user_id_str":"255609802","video_info":{"aspect_ratio":[40,71],"duration_millis":9155,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/vid\/180x320\/3Yzd4q1Es1VtCbKW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/pl\/9c1aUy1J6QocrAq8.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/vid\/180x320\/3Yzd4q1Es1VtCbKW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662672909849128961\/pu\/pl\/9c1aUy1J6QocrAq8.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079986659"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829797376,"id_str":"663727686829797376","text":"You may feel external pressure to tie up loose ends early in t... More for Scorpio https:\/\/t.co\/1JWKYOY8cg","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347928283,"id_str":"347928283","name":"andre heggins","screen_name":"DatDamnDreDay","location":"Joiner,Arkansas.. 117 Magnolia","url":null,"description":"Dre Day... Dnt nuthin change but niggas and hoes and my clothes but ima stay da same year round. #teamscorpio. Im just me and if you dnt like it then fuck you..","protected":false,"verified":false,"followers_count":331,"friends_count":441,"listed_count":1,"favourites_count":11,"statuses_count":4689,"created_at":"Wed Aug 03 16:02:50 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"751D75","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/335465508\/weed.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/335465508\/weed.jpg","profile_background_tile":false,"profile_link_color":"3F9E2C","profile_sidebar_border_color":"30851B","profile_sidebar_fill_color":"263D29","profile_text_color":"55CF25","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537017714280497152\/KAEYb-ba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537017714280497152\/KAEYb-ba_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/347928283\/1416869974","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1JWKYOY8cg","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686833954817,"id_str":"663727686833954817","text":"RT @C_MichelleJKT48: Mau ada #KulinerKeliling2Lele ?? Gaaa??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1361611314,"id_str":"1361611314","name":"Surya_","screen_name":"surya_dadu","location":"Bogor","url":null,"description":"Blues #daduband\ndo not be a reason for yourself\n''YOU CAN DO IT''....K3!","protected":false,"verified":false,"followers_count":89,"friends_count":43,"listed_count":6,"favourites_count":13850,"statuses_count":17257,"created_at":"Thu Apr 18 11:00:54 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/847697666\/33d4c86f3dafe08e1c76b1a8ff8e7ffb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/847697666\/33d4c86f3dafe08e1c76b1a8ff8e7ffb.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640559469110292481\/AuDMqiC7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640559469110292481\/AuDMqiC7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1361611314\/1441556121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:53:40 +0000 2015","id":663685884911357952,"id_str":"663685884911357952","text":"Mau ada #KulinerKeliling2Lele ?? Gaaa??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2397627511,"id_str":"2397627511","name":"Michelle Christo","screen_name":"C_MichelleJKT48","location":null,"url":"http:\/\/www.jkt48.com","description":"I am a pearl from deep ocean. With my uniqueness, I will stay in the deepest of your heart. Hello, my name is Michelle.","protected":false,"verified":true,"followers_count":147103,"friends_count":151,"listed_count":142723,"favourites_count":170,"statuses_count":7544,"created_at":"Wed Mar 19 10:16:52 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608239021152542720\/8s8zsg1f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608239021152542720\/8s8zsg1f_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":74,"entities":{"hashtags":[{"text":"KulinerKeliling2Lele","indices":[8,29]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KulinerKeliling2Lele","indices":[29,50]}],"urls":[],"user_mentions":[{"screen_name":"C_MichelleJKT48","name":"Michelle Christo","id":2397627511,"id_str":"2397627511","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846550016,"id_str":"663727686846550016","text":"@p_ianno \u0e2b\u0e19\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1e\u0e28\u0e2d\u0e30\u0e44\u0e23 \u0e2b\u0e0d\u0e34\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e0a\u0e32\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727498530676736,"in_reply_to_status_id_str":"663727498530676736","in_reply_to_user_id":527130623,"in_reply_to_user_id_str":"527130623","in_reply_to_screen_name":"p_ianno","user":{"id":544974359,"id_str":"544974359","name":"\u0e22\u0e39\u0e01\u0e35\u0e49","screen_name":"Yugagy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":368,"friends_count":255,"listed_count":0,"favourites_count":129,"statuses_count":5459,"created_at":"Wed Apr 04 09:07:43 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF1947","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546615320\/xdcea274e90d4ec7961e1d387e076404.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546615320\/xdcea274e90d4ec7961e1d387e076404.png","profile_background_tile":true,"profile_link_color":"D617D6","profile_sidebar_border_color":"EB3755","profile_sidebar_fill_color":"FFF8F8","profile_text_color":"7245FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473434700929712128\/_mJ4_1Gu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473434700929712128\/_mJ4_1Gu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544974359\/1438148698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"p_ianno","name":"\u0e19\u0e49\u0e2d\u0e07\u0e40\u0e07\u0e22\u0e4c","id":527130623,"id_str":"527130623","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838169600,"id_str":"663727686838169600","text":"@Naoyan0928 \u7dd1\u8272\u306f\u53cb\u4eba\u95a2\u4fc2\u3063\u3066\u3001\u308f\u3056\u308f\u3056\u7dd1\u306b\u5f37\u8abf\u3057\u3084\u3093\u3067\u3082\n\u7dd1\u8272\u304c\u604b\u4eba\u95a2\u4fc2\u306a\u3089\u3001\u8208\u5473\u3042\u308b\u3084\u308d\u30fc\u3051\u3069\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727334868979712,"in_reply_to_status_id_str":"663727334868979712","in_reply_to_user_id":1661800849,"in_reply_to_user_id_str":"1661800849","in_reply_to_screen_name":"Naoyan0928","user":{"id":4055189774,"id_str":"4055189774","name":"r i k a $$","screen_name":"rika_984","location":null,"url":null,"description":"Osaka \/ \u7f8e\u5bb9\u5b66\u751f \/ LJK \/ \u7f8e\u5bb9\u5e2b\u306b\u306a\u308b\u2702\ufe0e","protected":false,"verified":false,"followers_count":259,"friends_count":262,"listed_count":1,"favourites_count":80,"statuses_count":87,"created_at":"Thu Oct 29 07:27:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662618639858688000\/YQe5v3kD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662618639858688000\/YQe5v3kD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4055189774\/1446876110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Naoyan0928","name":"-\u6ce2\u685c\u4e5f-","id":1661800849,"id_str":"1661800849","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686842355712,"id_str":"663727686842355712","text":"\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143063998,"id_str":"143063998","name":"\u3089\u304d\u2606\u304b\u3044","screen_name":"lakiKAI","location":null,"url":null,"description":"\u30a2\u30a4\u30de\u30b9\u597d\u304d\u3067\u3059\u3002 \u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3068\u304b\u7279\u64ae\u3082\u597d\u304d\u3067\u3059\u3002 \u30b4\u30c3\u30b5\u30e0\u3068\u30cf\u30ef\u30a4\u30d5\u30a1\u30a4\u30d6\u30aa\u30fc\u304c\u6bce\u9031\u306e\u697d\u3057\u307f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":90,"friends_count":136,"listed_count":9,"favourites_count":2339,"statuses_count":55429,"created_at":"Wed May 12 13:52:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"ED1313","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624230525654269952\/WzGzzlKK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624230525654269952\/WzGzzlKK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143063998\/1396105660","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986664"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850732032,"id_str":"663727686850732032","text":"RT @Amlove_Exo: \u0e25 \u0e40\u0e2b\u0e47\u0e19\u0e21\u0e31\u0e4a\u0e22\u0e27\u0e48\u0e32\u0e21\u0e35\u0e04\u0e19\u0e27\u0e48\u0e32\u0e40\u0e04\u0e49\u0e32\u0e2d\u0e30\n\u0e04 \u0e1e\u0e35\u0e48\u0e25\u0e1a\u0e2d\u0e2d\u0e01\u0e43\u0e2b\u0e49\u0e41\u0e25\u0e49\u0e27\u0e44\u0e07\n\u0e25 \u0e07\u0e37\u0e49\u0e2d\u0e2d \u0e41\u0e15\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e14\u0e38\u0e40\u0e02\u0e32\u0e19\u0e30\n\u0e04 \u0e42\u0e16\u0e48 \u0e2b\u0e19\u0e39\u0e43\u0e08\u0e14\u0e35\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\n\u0e25 \u0e07\u0e37\u0e49\u0e2d\u0e2d \u0e1e\u0e35\u0e48\u0e07\u0e48\u0e30 #krislay https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601752158,"id_str":"601752158","name":".AomsinnismoA.","screen_name":"DHJYKM_BF","location":null,"url":null,"description":"BOYFRIEND\u2122 \r\nDong Hyun, Hyun Seong, Jeong Min, Young Min, Kwang Min, Min Woo","protected":false,"verified":false,"followers_count":58,"friends_count":391,"listed_count":1,"favourites_count":504,"statuses_count":5340,"created_at":"Thu Jun 07 10:30:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"7238BD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000034627319\/08c1c9e679482baf91fcc55891a41f56.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000034627319\/08c1c9e679482baf91fcc55891a41f56.jpeg","profile_background_tile":true,"profile_link_color":"9B4DE3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616918524653539328\/lT3zsQqp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616918524653539328\/lT3zsQqp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601752158\/1435919811","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:00 +0000 2015","id":663715159920148480,"id_str":"663715159920148480","text":"\u0e25 \u0e40\u0e2b\u0e47\u0e19\u0e21\u0e31\u0e4a\u0e22\u0e27\u0e48\u0e32\u0e21\u0e35\u0e04\u0e19\u0e27\u0e48\u0e32\u0e40\u0e04\u0e49\u0e32\u0e2d\u0e30\n\u0e04 \u0e1e\u0e35\u0e48\u0e25\u0e1a\u0e2d\u0e2d\u0e01\u0e43\u0e2b\u0e49\u0e41\u0e25\u0e49\u0e27\u0e44\u0e07\n\u0e25 \u0e07\u0e37\u0e49\u0e2d\u0e2d \u0e41\u0e15\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e14\u0e38\u0e40\u0e02\u0e32\u0e19\u0e30\n\u0e04 \u0e42\u0e16\u0e48 \u0e2b\u0e19\u0e39\u0e43\u0e08\u0e14\u0e35\u0e40\u0e01\u0e34\u0e19\u0e44\u0e1b\n\u0e25 \u0e07\u0e37\u0e49\u0e2d\u0e2d \u0e1e\u0e35\u0e48\u0e07\u0e48\u0e30 #krislay https:\/\/t.co\/nszNEqAhMu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":708682692,"id_str":"708682692","name":"\u2014\u0e04\u0e23\u0e34\u0e2a'\u0e01\u0e23\u0e30\u0e41\u0e17\u0e01'\u0e40\u0e25\u0e22\u0e4c\u2014","screen_name":"Amlove_Exo","location":"\u0e1a\u0e32\u0e07\u0e17\u0e35\u0e01\u0e47\u0e2d\u0e22\u0e39\u0e48\u0e25\u0e48\u0e32\u0e07\u0e1a\u0e32\u0e07\u0e17\u0e35\u0e01\u0e47\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19","url":null,"description":"SEHUN\u30fe(*\u00b4\u2200\uff40*)\uff89 (ZhangYixing) #\u0e41\u0e2d\u0e04\u0e19\u0e35\u0e49\u0e02\u0e35\u0e49\u0e41\u0e0b\u0e30 KRISLAYSHIPPER\u3163CHANBAEK\u3163HUNHO #\u0e2d\u0e22\u0e48\u0e32\u0e25\u0e49\u0e33\u0e40\u0e2a\u0e49\u0e19 [[\u0e41\u0e2b\u0e01\u0e04\u0e37\u0e19\u0e44\u0e14\u0e49\u0e41\u0e15\u0e48\u0e2d\u0e22\u0e48\u0e32\u0e41\u0e2b\u0e01\u0e41\u0e23\u0e07\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e22\u0e31\u0e49\u0e07\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e17\u0e31\u0e19]]","protected":false,"verified":false,"followers_count":1773,"friends_count":351,"listed_count":2,"favourites_count":1132,"statuses_count":47542,"created_at":"Sat Jul 21 09:12:14 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437223374742249472\/BQIvSue5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437223374742249472\/BQIvSue5.jpeg","profile_background_tile":true,"profile_link_color":"702DED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661958945934675968\/ZV9jAlFK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661958945934675968\/ZV9jAlFK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/708682692\/1429592380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":0,"entities":{"hashtags":[{"text":"krislay","indices":[107,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715126961303552,"id_str":"663715126961303552","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","url":"https:\/\/t.co\/nszNEqAhMu","display_url":"pic.twitter.com\/nszNEqAhMu","expanded_url":"http:\/\/twitter.com\/Amlove_Exo\/status\/663715159920148480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715126961303552,"id_str":"663715126961303552","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","url":"https:\/\/t.co\/nszNEqAhMu","display_url":"pic.twitter.com\/nszNEqAhMu","expanded_url":"http:\/\/twitter.com\/Amlove_Exo\/status\/663715159920148480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"krislay","indices":[123,131]}],"urls":[],"user_mentions":[{"screen_name":"Amlove_Exo","name":"\u2014\u0e04\u0e23\u0e34\u0e2a'\u0e01\u0e23\u0e30\u0e41\u0e17\u0e01'\u0e40\u0e25\u0e22\u0e4c\u2014","id":708682692,"id_str":"708682692","indices":[3,14]}],"symbols":[],"media":[{"id":663715126961303552,"id_str":"663715126961303552","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","url":"https:\/\/t.co\/nszNEqAhMu","display_url":"pic.twitter.com\/nszNEqAhMu","expanded_url":"http:\/\/twitter.com\/Amlove_Exo\/status\/663715159920148480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663715159920148480,"source_status_id_str":"663715159920148480","source_user_id":708682692,"source_user_id_str":"708682692"}]},"extended_entities":{"media":[{"id":663715126961303552,"id_str":"663715126961303552","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9ZDaU8AAnRw8.jpg","url":"https:\/\/t.co\/nszNEqAhMu","display_url":"pic.twitter.com\/nszNEqAhMu","expanded_url":"http:\/\/twitter.com\/Amlove_Exo\/status\/663715159920148480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663715159920148480,"source_status_id_str":"663715159920148480","source_user_id":708682692,"source_user_id_str":"708682692"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825611264,"id_str":"663727686825611264","text":"RT @enu_tea: \u4e07\u5e74\u7b46\u5c4b\u3001\u697d\u3057\u3044\u3067\u3059\u3088\u30fc\u3002\u65e5\u672c\u6a4b\u6016\u304f\u306a\u3044\u3067\u3059\u3088\u30fc\uff08\u6e80\u9762\u306e\u7b11\u9854\u3067\uff09 https:\/\/t.co\/RgQWv9HGwB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":561237404,"id_str":"561237404","name":"\u305f\u3093\u305f@\u3058\u3058\u3044\u96e3\u6c11","screen_name":"tanta0128","location":"2\u6b21\u5143(\u5e0c\u671b)","url":null,"description":"\u30a2\u30cb\u30e1\u6f2b\u753b\u58f0\u512aetc\u30aa\u30bf\/\u8150\u2192\u96d1\u98df\u3067\u3059\u3002\u4f55\u3067\u3082\u5e45\u5e83\u304f\u597d\u304d\u3002\u4eca\u306f\u5200\u5263\u4e71\u821e\u306b\u30cf\u30de\u3063\u3066\u307e\u3059(\u9577\u8c37\u90e8\/\u5c0f\u72d0\u4e38\/\u5ca9\u878d)","protected":false,"verified":false,"followers_count":174,"friends_count":315,"listed_count":5,"favourites_count":629,"statuses_count":41957,"created_at":"Mon Apr 23 15:43:26 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637978485605031936\/VkCq7PuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637978485605031936\/VkCq7PuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/561237404\/1369369605","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 16:26:01 +0000 2015","id":663029650692575232,"id_str":"663029650692575232","text":"\u4e07\u5e74\u7b46\u5c4b\u3001\u697d\u3057\u3044\u3067\u3059\u3088\u30fc\u3002\u65e5\u672c\u6a4b\u6016\u304f\u306a\u3044\u3067\u3059\u3088\u30fc\uff08\u6e80\u9762\u306e\u7b11\u9854\u3067\uff09 https:\/\/t.co\/RgQWv9HGwB","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908150072,"id_str":"908150072","name":"nt\u3055\u3093@\u65e5\u672c\u6a4b\u306e\u4e07\u5e74\u7b46\u5c4b\u3055\u3093","screen_name":"enu_tea","location":"\u6771\u4eac\u90fd\u4e2d\u592e\u533a\u65e5\u672c\u6a4b2-4-1 5\u968e\u4e07\u5e74\u7b46\u58f2\u5834","url":null,"description":"\u30bb\u30fc\u30e9\u30fc\u4e07\u5e74\u7b46\uff08\u682a\uff09\u76f4\u55b6\u5e97\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3002 #\u30a4\u30f3\u30af\u6cbc \u306e\u6c34\u5148\u6848\u5185\u4eba\u3002\u9577\u5200\u7814\u304e\u3084\u7279\u6b8a\u30da\u30f3\u5148\u7b49\u3092\u3054\u7528\u610f\u3057\u3066\u3001\u7686\u69d8\u306e\u3054\u6765\u5e97\u3092\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u3053\u308c\u304b\u3089\u306f\u666e\u901a\u306e\u4e07\u5e74\u7b46\u5c4b\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u306a\u308a\u307e\u3059\u3002\u30ea\u30d7\u30e9\u30a4\u306b\u304a\u7b54\u3048\u3067\u304d\u306a\u3044\u5834\u5408\u3082\u3054\u3056\u3044\u307e\u3059\u306e\u3067\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002\r\n\u3054\u9023\u7d61\u306f\u3053\u3061\u3089\u307e\u3067 enu_tea3@yahoo.co.jp","protected":false,"verified":false,"followers_count":8132,"friends_count":1005,"listed_count":312,"favourites_count":5045,"statuses_count":34739,"created_at":"Sat Oct 27 13:45:31 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609210535859453952\/Dmgs54Sh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609210535859453952\/Dmgs54Sh_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":365,"favorite_count":222,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663029648679264256,"id_str":"663029648679264256","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","url":"https:\/\/t.co\/RgQWv9HGwB","display_url":"pic.twitter.com\/RgQWv9HGwB","expanded_url":"http:\/\/twitter.com\/enu_tea\/status\/663029650692575232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663029648679264256,"id_str":"663029648679264256","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","url":"https:\/\/t.co\/RgQWv9HGwB","display_url":"pic.twitter.com\/RgQWv9HGwB","expanded_url":"http:\/\/twitter.com\/enu_tea\/status\/663029650692575232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"enu_tea","name":"nt\u3055\u3093@\u65e5\u672c\u6a4b\u306e\u4e07\u5e74\u7b46\u5c4b\u3055\u3093","id":908150072,"id_str":"908150072","indices":[3,11]}],"symbols":[],"media":[{"id":663029648679264256,"id_str":"663029648679264256","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","url":"https:\/\/t.co\/RgQWv9HGwB","display_url":"pic.twitter.com\/RgQWv9HGwB","expanded_url":"http:\/\/twitter.com\/enu_tea\/status\/663029650692575232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663029650692575232,"source_status_id_str":"663029650692575232","source_user_id":908150072,"source_user_id_str":"908150072"}]},"extended_entities":{"media":[{"id":663029648679264256,"id_str":"663029648679264256","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTON890UYAA3RAN.png","url":"https:\/\/t.co\/RgQWv9HGwB","display_url":"pic.twitter.com\/RgQWv9HGwB","expanded_url":"http:\/\/twitter.com\/enu_tea\/status\/663029650692575232\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663029650692575232,"source_status_id_str":"663029650692575232","source_user_id":908150072,"source_user_id_str":"908150072"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829785089,"id_str":"663727686829785089","text":"@assclown_jr i'll tell milo!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727573478850560,"in_reply_to_status_id_str":"663727573478850560","in_reply_to_user_id":55607687,"in_reply_to_user_id_str":"55607687","in_reply_to_screen_name":"assclown_jr","user":{"id":323932399,"id_str":"323932399","name":"katzenjammer","screen_name":"spamda","location":"the clouds","url":null,"description":"because I've lost control of my life.","protected":false,"verified":false,"followers_count":129,"friends_count":222,"listed_count":4,"favourites_count":3876,"statuses_count":14810,"created_at":"Sat Jun 25 17:50:04 +0000 2011","utc_offset":28800,"time_zone":"Perth","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606401970513932288\/XQywPsFO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606401970513932288\/XQywPsFO.png","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650699105891565568\/k6rFHvqL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650699105891565568\/k6rFHvqL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323932399\/1408849610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"assclown_jr","name":"Loird of the game","id":55607687,"id_str":"55607687","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686812962816,"id_str":"663727686812962816","text":"Hoy amanec\u00ed muy rom\u00e1ntica . https:\/\/t.co\/3QtKn0HLe1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40503827,"id_str":"40503827","name":"Vero Nerio","screen_name":"vero_nerio","location":"Monterrey, Nuevo Le\u00f3n","url":null,"description":null,"protected":false,"verified":false,"followers_count":139,"friends_count":285,"listed_count":0,"favourites_count":1314,"statuses_count":2679,"created_at":"Sat May 16 17:27:31 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663224783505461248\/CBO1-xKW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663224783505461248\/CBO1-xKW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40503827\/1441560452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727683025551360,"id_str":"663727683025551360","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz6ZUwAAXBxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz6ZUwAAXBxL.jpg","url":"https:\/\/t.co\/3QtKn0HLe1","display_url":"pic.twitter.com\/3QtKn0HLe1","expanded_url":"http:\/\/twitter.com\/vero_nerio\/status\/663727686812962816\/photo\/1","type":"photo","sizes":{"medium":{"w":479,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":479,"h":423,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727683025551360,"id_str":"663727683025551360","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz6ZUwAAXBxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz6ZUwAAXBxL.jpg","url":"https:\/\/t.co\/3QtKn0HLe1","display_url":"pic.twitter.com\/3QtKn0HLe1","expanded_url":"http:\/\/twitter.com\/vero_nerio\/status\/663727686812962816\/photo\/1","type":"photo","sizes":{"medium":{"w":479,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":479,"h":423,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079986657"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686834126848,"id_str":"663727686834126848","text":"Cascote","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1656036966,"id_str":"1656036966","name":"Bomb\u00f3n Suizo \u2661","screen_name":"Lupe_Diaz1","location":"San Miguel, Argentina","url":"http:\/\/Instagram.com\/\/LupeD_","description":"\u25b2\u2661\u25b2 Coraz\u00f3n sincero que solo busca libertad \/\/ Need nothing to complete myself \/\/","protected":false,"verified":false,"followers_count":327,"friends_count":187,"listed_count":0,"favourites_count":5873,"statuses_count":24981,"created_at":"Thu Aug 08 19:40:54 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446369163838119936\/9MEXrVSy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446369163838119936\/9MEXrVSy.jpeg","profile_background_tile":true,"profile_link_color":"FF1122","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660851642322034688\/YPRs5Ep7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660851642322034688\/YPRs5Ep7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1656036966\/1440815813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0101525d656f78f9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0101525d656f78f9.json","place_type":"city","name":"San Miguel","full_name":"San Miguel, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-58.776792,-34.605515],[-58.776792,-34.502092],[-58.611463,-34.502092],[-58.611463,-34.605515]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686838190080,"id_str":"663727686838190080","text":"@808_hello \u30c8\u30ea\u30aa\u306f\u99ac\u30d0\u30eb\u306b\u3057\u3088\u3046\u304b\u306aw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727308084088832,"in_reply_to_status_id_str":"663727308084088832","in_reply_to_user_id":3185115103,"in_reply_to_user_id_str":"3185115103","in_reply_to_screen_name":"808_hello","user":{"id":3268922305,"id_str":"3268922305","name":"\u30bf\u30c3\u30ad\u30fc@\u57ce\u30c9\u30e9\u661f\u30c9\u30e9","screen_name":"takky_sirodora","location":"\u4e16\u754c\u4e09\u5927\u73cd\u5473","url":null,"description":"\u2605\u57ce\u30c9\u30e9\u540d\u30d5\u30a9\u30a2\u30b0\u30e9\u30c3\u30ad\u30fc\u306b\u6539\u540d\uff01\u4e09\u5927\u73cd\u5473\u30c8\u30ea\u30aa\u7d44\u3093\u3067\u307e\u3059(\uff40\uff65\u03c9\uff65\u00b4)\uff89\u30d5\u30a9\u30a2\u30b0\u30e9\u3068\u30bf\u30c3\u30ad\u30fc\u3092\u639b\u3051\u307e\u3057\u305fw\u2605\u30bd\u30ed&\u30c8\u30ea\u30aa\u5c02\u2605\u57ce\u30ec\u30d9\u30eb24\u30d7\u30e9\u30c1\u30ca1\u3064\u3088P\u306f600\u4ed8\u8fd1\u0669(\u02ca\u15dc\u02cb*)\u0648\u56fa\u5b9a\u306f\u30d0\u30eb\u30fc\u30f3\uff01\u2605\u661f\u30c9\u30e9\u2192\u6226\u58ebLevel40\u2191\u2605\u30d5\u30ec\u30f3\u30c9\u52df\u96c6\u3057\u3066\u307e\u3059\u30fd(\uff9f\u2200\uff9f)\uff89","protected":false,"verified":false,"followers_count":364,"friends_count":400,"listed_count":2,"favourites_count":233,"statuses_count":541,"created_at":"Sun Jul 05 08:17:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636524265236332545\/2J0qhXYD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636524265236332545\/2J0qhXYD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268922305\/1446190434","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"808_hello","name":"\u30ad\u30e3\u30d3\u30a2(\u305f\u3063\u3061\u3083\u3093)\u304a@\u57ce\u30c9\u30e9\u57a2","id":3185115103,"id_str":"3185115103","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986663"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829735937,"id_str":"663727686829735937","text":"Maunya si sama @gyahelenr \u2605 The Man From U.N.C.L.E. (with Alone\ud83d\ude22 at Herdionroom's) \u2014 https:\/\/t.co\/bz14GgemSt","source":"\u003ca href=\"https:\/\/path.com\/\" rel=\"nofollow\"\u003ePath\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1156231951,"id_str":"1156231951","name":"Herdion","screen_name":"Herdionprabowo_","location":"Where the container was born.","url":null,"description":"CADET of MARCHANT MARINE HIGHER EDUCATION JAKARTA batch LVII Pray-Try-Play-Fly!","protected":false,"verified":false,"followers_count":271,"friends_count":258,"listed_count":0,"favourites_count":27,"statuses_count":5623,"created_at":"Thu Feb 07 06:23:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621493594302496772\/92sAs5Qc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621493594302496772\/92sAs5Qc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156231951\/1422730724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-6.10513,106.93692]},"coordinates":{"type":"Point","coordinates":[106.93692,-6.10513]},"place":{"id":"7faf1660c32665ce","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7faf1660c32665ce.json","place_type":"city","name":"Cilincing","full_name":"Cilincing, DKI Jakarta","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[106.922974,-6.163615],[106.922974,-6.089350],[106.979177,-6.089350],[106.979177,-6.163615]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bz14GgemSt","expanded_url":"https:\/\/path.com\/p\/D4rpy","display_url":"path.com\/p\/D4rpy","indices":[85,108]}],"user_mentions":[{"screen_name":"Gyahelenr","name":"Helena Rambebuoch","id":563732530,"id_str":"563732530","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686833930240,"id_str":"663727686833930240","text":"RT @tequilasaltlife: If I took your advice I'd be just as shitty as you \n\nNah","source":"\u003ca href=\"http:\/\/favstar.fm\" rel=\"nofollow\"\u003eFavstar.FM\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1628903851,"id_str":"1628903851","name":"Harvest Goatee","screen_name":"Virgin_Box","location":null,"url":null,"description":"Sexy Poetic, Gross Funny! Just read to laugh... http:\/\/Twitter.com\/search\/from:@virgin_box \/ http:\/\/Favstar.fm\/users\/virgin_box","protected":false,"verified":false,"followers_count":2782,"friends_count":1976,"listed_count":78,"favourites_count":41295,"statuses_count":37406,"created_at":"Sun Jul 28 22:24:21 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660785932858068993\/JWEWYjh__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660785932858068993\/JWEWYjh__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1628903851\/1446378595","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:00:53 +0000 2015","id":663159220645306368,"id_str":"663159220645306368","text":"If I took your advice I'd be just as shitty as you \n\nNah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955045064,"id_str":"2955045064","name":"Tequila Saltlife","screen_name":"tequilasaltlife","location":"wherever the tequila takes me","url":"http:\/\/favstar.fm\/users\/tequilasaltlife\/recent","description":"https:\/\/twitter.com\/search?q=from%3Atequilasaltlife&src=typd","protected":false,"verified":false,"followers_count":12895,"friends_count":8924,"listed_count":405,"favourites_count":76053,"statuses_count":74187,"created_at":"Thu Jan 01 16:03:48 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659013425348124672\/tnJulAsA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659013425348124672\/tnJulAsA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955045064\/1445473419","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tequilasaltlife","name":"Tequila Saltlife","id":2955045064,"id_str":"2955045064","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986662"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686825590784,"id_str":"663727686825590784","text":"\u2764\ufe0fjames bond\ud83d\udc83\ud83c\udffb \u2605 Spectre (at @cinema21) \u2014 https:\/\/t.co\/F2Fc8YYsFq","source":"\u003ca href=\"https:\/\/path.com\/\" rel=\"nofollow\"\u003ePath\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272472887,"id_str":"272472887","name":"caroline","screen_name":"carolinehaury","location":"\u00dcT: -5.12627,119.41428","url":null,"description":null,"protected":false,"verified":false,"followers_count":146,"friends_count":102,"listed_count":0,"favourites_count":44,"statuses_count":3644,"created_at":"Sat Mar 26 15:48:02 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565887292456173568\/5sAT-4n6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565887292456173568\/5sAT-4n6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-5.12788,119.41807]},"coordinates":{"type":"Point","coordinates":[119.41807,-5.12788]},"place":{"id":"de5e7b5f5f48a6c0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/de5e7b5f5f48a6c0.json","place_type":"city","name":"Bontoala","full_name":"Bontoala, Sulawesi Selatan","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[119.416770,-5.135462],[119.416770,-5.117054],[119.434299,-5.117054],[119.434299,-5.135462]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F2Fc8YYsFq","expanded_url":"https:\/\/path.com\/p\/8rbfF","display_url":"path.com\/p\/8rbfF","indices":[42,65]}],"user_mentions":[{"screen_name":"cinema21","name":"Cinema XXI","id":18211861,"id_str":"18211861","indices":[29,38]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986660"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850707456,"id_str":"663727686850707456","text":"\u30d4\u30f3\u30ad\u30fc\u306e\u7b11\u9854\u3059\u3093\u3070\u3089\u3057\u3044\ud83e\udd84\ud83e\udd16\ud83e\udd14 https:\/\/t.co\/UL8AVIrGAN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":824357755,"id_str":"824357755","name":"\u306b\u304f\u541b","screen_name":"Hysteric_N","location":null,"url":"http:\/\/twpf.jp\/Hysteric_N","description":"SiM\u3068\u30d2\u30b9\u30d1\u30cb\u304c\u5927\u597d\u304d","protected":false,"verified":false,"followers_count":1470,"friends_count":461,"listed_count":91,"favourites_count":16046,"statuses_count":128930,"created_at":"Sat Sep 15 01:54:25 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614353109213560832\/eKlsLoXF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614353109213560832\/eKlsLoXF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/824357755\/1444483681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727678424387584,"id_str":"663727678424387584","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzpQUkAA_Udj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzpQUkAA_Udj.jpg","url":"https:\/\/t.co\/UL8AVIrGAN","display_url":"pic.twitter.com\/UL8AVIrGAN","expanded_url":"http:\/\/twitter.com\/Hysteric_N\/status\/663727686850707456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727678424387584,"id_str":"663727678424387584","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzpQUkAA_Udj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzpQUkAA_Udj.jpg","url":"https:\/\/t.co\/UL8AVIrGAN","display_url":"pic.twitter.com\/UL8AVIrGAN","expanded_url":"http:\/\/twitter.com\/Hysteric_N\/status\/663727686850707456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850736128,"id_str":"663727686850736128","text":"Sex Art big ass take two dicks outdoors https:\/\/t.co\/yuwUA657nV https:\/\/t.co\/VZgroe6CNV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912111255,"id_str":"3912111255","name":"hattie phillip","screen_name":"hiebercg22","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":243,"friends_count":298,"listed_count":0,"favourites_count":0,"statuses_count":3577,"created_at":"Fri Oct 09 20:50:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652980576136204288\/Fl3BaRPu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652980576136204288\/Fl3BaRPu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3912111255\/1444517660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yuwUA657nV","expanded_url":"http:\/\/bit.ly\/1NR3lMQ?PXq","display_url":"bit.ly\/1NR3lMQ?PXq","indices":[40,63]}],"user_mentions":[],"symbols":[],"media":[{"id":663727651803172864,"id_str":"663727651803172864","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyGFVEAAGwaJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyGFVEAAGwaJ.jpg","url":"https:\/\/t.co\/VZgroe6CNV","display_url":"pic.twitter.com\/VZgroe6CNV","expanded_url":"http:\/\/twitter.com\/hiebercg22\/status\/663727686850736128\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":435,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727651803172864,"id_str":"663727651803172864","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyGFVEAAGwaJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyGFVEAAGwaJ.jpg","url":"https:\/\/t.co\/VZgroe6CNV","display_url":"pic.twitter.com\/VZgroe6CNV","expanded_url":"http:\/\/twitter.com\/hiebercg22\/status\/663727686850736128\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":435,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":435,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686846685184,"id_str":"663727686846685184","text":"@Muche4ka @NinaNebo @ValescadeOlive2 @eluniadb @2512yfnfkb https:\/\/t.co\/12KhDEj4fx","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663391790926548992,"in_reply_to_status_id_str":"663391790926548992","in_reply_to_user_id":2244790820,"in_reply_to_user_id_str":"2244790820","in_reply_to_screen_name":"Muche4ka","user":{"id":2333934549,"id_str":"2333934549","name":"viki amor","screen_name":"vikiamour","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":411,"friends_count":119,"listed_count":1,"favourites_count":23,"statuses_count":484,"created_at":"Sun Feb 09 15:43:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596975807366594560\/ooTovTv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596975807366594560\/ooTovTv6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333934549\/1431165097","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Muche4ka","name":"svetla","id":2244790820,"id_str":"2244790820","indices":[0,9]},{"screen_name":"NinaNebo","name":"Nina Dj.","id":1358961302,"id_str":"1358961302","indices":[10,19]},{"screen_name":"ValescadeOlive2","name":"Valesca de Oliveira","id":952352449,"id_str":"952352449","indices":[20,36]},{"screen_name":"eluniadb","name":"El\u017cbieta ","id":2860544601,"id_str":"2860544601","indices":[37,46]},{"screen_name":"2512yfnfkb","name":"Natali","id":2984218263,"id_str":"2984218263","indices":[47,58]}],"symbols":[],"media":[{"id":663727676411281408,"id_str":"663727676411281408","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzhwXAAAEx_C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzhwXAAAEx_C.jpg","url":"https:\/\/t.co\/12KhDEj4fx","display_url":"pic.twitter.com\/12KhDEj4fx","expanded_url":"http:\/\/twitter.com\/vikiamour\/status\/663727686846685184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":800,"h":525,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727676411281408,"id_str":"663727676411281408","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzhwXAAAEx_C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzhwXAAAEx_C.jpg","url":"https:\/\/t.co\/12KhDEj4fx","display_url":"pic.twitter.com\/12KhDEj4fx","expanded_url":"http:\/\/twitter.com\/vikiamour\/status\/663727686846685184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":800,"h":525,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079986665"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686817153025,"id_str":"663727686817153025","text":"@yukikawa_h \n\n\u8a00\u3063\u305f\u308f\u306d\u3002\n\u7d04\u675f\u306f\u5b88\u308a\u306a\u3055\u3044\u3088\u3001 https:\/\/t.co\/8Pjg60tAdk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727278946316288,"in_reply_to_status_id_str":"663727278946316288","in_reply_to_user_id":2212771476,"in_reply_to_user_id_str":"2212771476","in_reply_to_screen_name":"yukikawa_h","user":{"id":2504780922,"id_str":"2504780922","name":"\u2729\u30a2\u30b9\u30d9\u30eb\u306b\u604b\u3059\u308b\u30de\u30eb\u30bf\u2729","screen_name":"statice79nyan","location":"\u30e1\u30eb\u30d8\u30f3\u306e\u56fd\u306e\u4f4f\u4eba\u0f3a","url":null,"description":"\u2729\u30b3\u30b9\u30d7\u30ec\u30ec\u30a4\u30e4\u30fc\u2729\/\u5f1f:\u516b\u795e \u30d1\u30d1:\u85ab\/\u30a2\u30b9\u30d9\u30eb\/EGOIST\/PSO2.ship4,8\/\u30db\u30fc\u30e0\u30a8\u30ec\u30b8\u30a7\u30ec\u306e\u30ec\u30f3\/\u767d\u732b\/\u3042\u308b\u5834\u6240\u3067\u6d3b\u52d5\u3057\u3066\u307e\u3059\/\u30ea\u30f3\u30af\u3001\u30a2\u30b9\u30bf\u30ea\u30a2\/\u30ed\u30b0\u30ec\u30b9\/\u30c6\u30a4\u30eb\u30ba&\u30c7\u30b8\u30e2\u30f3\u3092\u611b\u3057\u3066\u307e\u3059\/nana\/\u273f\u7d61\u3093\u3067\u304f\u3060\u3055\u308b\u3068\u559c\u3073\u307e\u3059\u273f","protected":false,"verified":false,"followers_count":1007,"friends_count":771,"listed_count":32,"favourites_count":432,"statuses_count":38202,"created_at":"Sun May 18 15:38:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662893025266262016\/Qg2c7fYQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662893025266262016\/Qg2c7fYQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2504780922\/1443580418","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yukikawa_h","name":"\u96ea\u5ddd@15\u65e5\u30c7\u30bc\u30eb\uff06\u30b6\u30d3\u30fc\u30c0","id":2212771476,"id_str":"2212771476","indices":[0,11]}],"symbols":[],"media":[{"id":663727667699585024,"id_str":"663727667699585024","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzBTVEAAzdB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzBTVEAAzdB1.jpg","url":"https:\/\/t.co\/8Pjg60tAdk","display_url":"pic.twitter.com\/8Pjg60tAdk","expanded_url":"http:\/\/twitter.com\/statice79nyan\/status\/663727686817153025\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":348,"h":181,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":348,"h":181,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727667699585024,"id_str":"663727667699585024","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzBTVEAAzdB1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzBTVEAAzdB1.jpg","url":"https:\/\/t.co\/8Pjg60tAdk","display_url":"pic.twitter.com\/8Pjg60tAdk","expanded_url":"http:\/\/twitter.com\/statice79nyan\/status\/663727686817153025\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":348,"h":181,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":348,"h":181,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079986658"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686829785088,"id_str":"663727686829785088","text":"\u201cI wish I could rewind time and put women\u2019s equality into the culture from the beginning\u201d Salesforce CEO @Benioff https:\/\/t.co\/CRhxMfZEx4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17921132,"id_str":"17921132","name":"alizaknox","screen_name":"alizaknox","location":"Singapore","url":null,"description":"multitasking working (at Twitter) mom and travel addict","protected":false,"verified":false,"followers_count":2515,"friends_count":811,"listed_count":91,"favourites_count":988,"statuses_count":4883,"created_at":"Sat Dec 06 12:46:29 +0000 2008","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116506371\/8c2960530fd63427ef4204c90757bed8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116506371\/8c2960530fd63427ef4204c90757bed8.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2910875558\/ed650d90c2dab0cfdc00ee5b49bb05a2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2910875558\/ed650d90c2dab0cfdc00ee5b49bb05a2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17921132\/1358855526","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CRhxMfZEx4","expanded_url":"http:\/\/bit.ly\/1SDnPHS","display_url":"bit.ly\/1SDnPHS","indices":[114,137]}],"user_mentions":[{"screen_name":"Benioff","name":"Marc Benioff","id":22330739,"id_str":"22330739","indices":[105,113]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986661"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686842515456,"id_str":"663727686842515456","text":"Squad https:\/\/t.co\/W1l6s2g1lB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3349745733,"id_str":"3349745733","name":"Sandr\u00e3o","screen_name":"Miguel12Sandro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":67,"listed_count":0,"favourites_count":46,"statuses_count":140,"created_at":"Sun Jun 28 21:11:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726516262600705\/3CGyJV-W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726516262600705\/3CGyJV-W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3349745733\/1447079770","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727669708746752,"id_str":"663727669708746752","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzIyWcAAuXpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzIyWcAAuXpO.jpg","url":"https:\/\/t.co\/W1l6s2g1lB","display_url":"pic.twitter.com\/W1l6s2g1lB","expanded_url":"http:\/\/twitter.com\/Miguel12Sandro\/status\/663727686842515456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727669708746752,"id_str":"663727669708746752","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzIyWcAAuXpO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzIyWcAAuXpO.jpg","url":"https:\/\/t.co\/W1l6s2g1lB","display_url":"pic.twitter.com\/W1l6s2g1lB","expanded_url":"http:\/\/twitter.com\/Miguel12Sandro\/status\/663727686842515456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986664"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850744324,"id_str":"663727686850744324","text":"Cosmopol won't even help their own people #uncaring #bellisaurus https:\/\/t.co\/34bGXlUg4t","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4124760498,"id_str":"4124760498","name":"The Realists","screen_name":"The__Realists","location":null,"url":null,"description":"I'm sick of people driving slow in the rain. I'm sick of the chip bag not being filled. I deserve more, and you do too! #Realists2016","protected":false,"verified":false,"followers_count":4,"friends_count":14,"listed_count":0,"favourites_count":15,"statuses_count":44,"created_at":"Wed Nov 04 14:35:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662415858350690304\/as85_8PB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662415858350690304\/as85_8PB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4124760498\/1446849248","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uncaring","indices":[42,51]},{"text":"bellisaurus","indices":[52,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727674829881345,"id_str":"663727674829881345","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzb3UwAEeATc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzb3UwAEeATc.jpg","url":"https:\/\/t.co\/34bGXlUg4t","display_url":"pic.twitter.com\/34bGXlUg4t","expanded_url":"http:\/\/twitter.com\/The__Realists\/status\/663727686850744324\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727674829881345,"id_str":"663727674829881345","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzb3UwAEeATc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzb3UwAEeATc.jpg","url":"https:\/\/t.co\/34bGXlUg4t","display_url":"pic.twitter.com\/34bGXlUg4t","expanded_url":"http:\/\/twitter.com\/The__Realists\/status\/663727686850744324\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686850879488,"id_str":"663727686850879488","text":"Syria & Beyond: NO to U.S. War Moves!\nhttps:\/\/t.co\/X0DKug5Bpm\n#Syria #SyrianRefugees #Yemen #FreePalestine https:\/\/t.co\/UX7NQKFsyj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3349777359,"id_str":"3349777359","name":"Rosa Roja","screen_name":"rosaroja4rev","location":null,"url":null,"description":"Supporter Bob Avakian (BA)'s new vision communism\/revcom.us, working for revolution to end all oppression & emancipate humanity. Tweets my own. No snark\/porn.","protected":false,"verified":false,"followers_count":712,"friends_count":1189,"listed_count":60,"favourites_count":16398,"statuses_count":22353,"created_at":"Sun Jun 28 21:31:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649415614633771009\/k6pJOHBk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649415614633771009\/k6pJOHBk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3349777359\/1443503549","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Syria","indices":[66,72]},{"text":"SyrianRefugees","indices":[73,88]},{"text":"Yemen","indices":[89,95]},{"text":"FreePalestine","indices":[96,110]}],"urls":[{"url":"https:\/\/t.co\/X0DKug5Bpm","expanded_url":"http:\/\/revcom.us\/a\/412\/syria-and-beyond-no-to-us-war-moves-en.html","display_url":"revcom.us\/a\/412\/syria-an\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663727658358996993,"id_str":"663727658358996993","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyegXAAEhim1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyegXAAEhim1.jpg","url":"https:\/\/t.co\/UX7NQKFsyj","display_url":"pic.twitter.com\/UX7NQKFsyj","expanded_url":"http:\/\/twitter.com\/rosaroja4rev\/status\/663727686850879488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":583,"resize":"fit"},"large":{"w":597,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727658358996993,"id_str":"663727658358996993","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyegXAAEhim1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyegXAAEhim1.jpg","url":"https:\/\/t.co\/UX7NQKFsyj","display_url":"pic.twitter.com\/UX7NQKFsyj","expanded_url":"http:\/\/twitter.com\/rosaroja4rev\/status\/663727686850879488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":583,"resize":"fit"},"large":{"w":597,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":597,"h":1024,"resize":"fit"}}},{"id":663727674691596288,"id_str":"663727674691596288","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzbWWsAAiqmx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzbWWsAAiqmx.jpg","url":"https:\/\/t.co\/UX7NQKFsyj","display_url":"pic.twitter.com\/UX7NQKFsyj","expanded_url":"http:\/\/twitter.com\/rosaroja4rev\/status\/663727686850879488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663727685852602368,"id_str":"663727685852602368","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0E7WIAAa-bb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0E7WIAAa-bb.jpg","url":"https:\/\/t.co\/UX7NQKFsyj","display_url":"pic.twitter.com\/UX7NQKFsyj","expanded_url":"http:\/\/twitter.com\/rosaroja4rev\/status\/663727686850879488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079986666"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691015827456,"id_str":"663727691015827456","text":"voou, voou","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3208859489,"id_str":"3208859489","name":"Natalia Teixeira","screen_name":"Natyteixeiran","location":"Juiz de Fora, Minas Gerais","url":"https:\/\/www.facebook.com\/naty.dias.378","description":"17, solteira, @mc_maneirinho \u2764","protected":false,"verified":false,"followers_count":87,"friends_count":82,"listed_count":0,"favourites_count":542,"statuses_count":1371,"created_at":"Sun Apr 26 18:50:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662254897874771968\/DBFwqwzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662254897874771968\/DBFwqwzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3208859489\/1442420297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079987659"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036774400,"id_str":"663727691036774400","text":"RT @JayB_The_Nup3: Must be nice https:\/\/t.co\/zMinoldk6t","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31213006,"id_str":"31213006","name":"XBluZive\u2728","screen_name":"Stiflers_Mom1","location":"Po Pimpin'","url":null,"description":"...I'm a press conference.. You're a conversation #\u0396\u03a6\u0392 #SosaHive #CollegeGraduate #WIU15","protected":false,"verified":false,"followers_count":444,"friends_count":180,"listed_count":4,"favourites_count":3003,"statuses_count":29218,"created_at":"Tue Apr 14 20:12:40 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF724F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654444459\/m80d77lw22nfx09oqfrm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654444459\/m80d77lw22nfx09oqfrm.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661437678819364864\/KTBdGGTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661437678819364864\/KTBdGGTt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31213006\/1445907348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:49 +0000 2015","id":663727445393043456,"id_str":"663727445393043456","text":"Must be nice https:\/\/t.co\/zMinoldk6t","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59956836,"id_str":"59956836","name":"King Bazz","screen_name":"JayB_The_Nup3","location":"GloDale, IL\/ GloComb, IL","url":null,"description":"23|#\u03a6\u0398\u039a|#\u039a\u0391\u03a8 #\u03a6V\u03a0 #Spr14 #TreKlub|#LakersNation #InBeanWeTrust| @LakersKounty|#Cubs|#Cubbies|#PatriotsNation #TerrificTom| IG: @JayB_The_Nup3","protected":false,"verified":false,"followers_count":2595,"friends_count":2055,"listed_count":13,"favourites_count":782,"statuses_count":82114,"created_at":"Sat Jul 25 02:34:32 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1616E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604985622\/wlakq2xmfnst6vpe6zwl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604985622\/wlakq2xmfnst6vpe6zwl.jpeg","profile_background_tile":true,"profile_link_color":"321AEB","profile_sidebar_border_color":"173CD1","profile_sidebar_fill_color":"09090A","profile_text_color":"F7FAFA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663390911569661952\/hJls8mUR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663390911569661952\/hJls8mUR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59956836\/1444075484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727252249669632,"quoted_status_id_str":"663727252249669632","quoted_status":{"created_at":"Mon Nov 09 14:38:03 +0000 2015","id":663727252249669632,"id_str":"663727252249669632","text":"Fell asleep on the phone... Woke up look over at my phone... Still on the phone \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31213006,"id_str":"31213006","name":"XBluZive\u2728","screen_name":"Stiflers_Mom1","location":"Po Pimpin'","url":null,"description":"...I'm a press conference.. You're a conversation #\u0396\u03a6\u0392 #SosaHive #CollegeGraduate #WIU15","protected":false,"verified":false,"followers_count":444,"friends_count":180,"listed_count":4,"favourites_count":3003,"statuses_count":29217,"created_at":"Tue Apr 14 20:12:40 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF724F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654444459\/m80d77lw22nfx09oqfrm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654444459\/m80d77lw22nfx09oqfrm.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661437678819364864\/KTBdGGTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661437678819364864\/KTBdGGTt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31213006\/1445907348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zMinoldk6t","expanded_url":"https:\/\/twitter.com\/stiflers_mom1\/status\/663727252249669632","display_url":"twitter.com\/stiflers_mom1\/\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zMinoldk6t","expanded_url":"https:\/\/twitter.com\/stiflers_mom1\/status\/663727252249669632","display_url":"twitter.com\/stiflers_mom1\/\u2026","indices":[33,56]}],"user_mentions":[{"screen_name":"JayB_The_Nup3","name":"King Bazz","id":59956836,"id_str":"59956836","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691011645440,"id_str":"663727691011645440","text":"@kusunoki_miki @bellgaku\n\u672c\u5f53\u306b\u6df1\u3044\u610f\u5473\u306f\u306a\u3044\u306e\u3067\u671f\u5f85\u5ea6\u306f\u4f4e\u3081\u3067\u304a\u9858\u3044\u3057\u307e\u3059( \u02d8\u03c9\u02d8 )\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727425323319300,"in_reply_to_status_id_str":"663727425323319300","in_reply_to_user_id":2940005700,"in_reply_to_user_id_str":"2940005700","in_reply_to_screen_name":"kusunoki_miki","user":{"id":635884155,"id_str":"635884155","name":"\u30a2\u30c7\u30a3\u30eb\u30ab\/\u30a2\u30b6\u30ec\u30a2","screen_name":"adluka34","location":null,"url":null,"description":"\u7a7a\u30ea\u30d7\u591a\u3081\u306e\u5927\u4f53\u6687\u3057\u3066\u308b\u3046\u308b\u3055\u3044\u57a2 \u30d8\u30c3\u30c0\u30fc\u306f@namiroha\u3061\u3083\u3093\u3088\u308a","protected":false,"verified":false,"followers_count":594,"friends_count":454,"listed_count":15,"favourites_count":1862,"statuses_count":83133,"created_at":"Sun Jul 15 01:35:08 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662532200705888256\/_BxBeoJW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662532200705888256\/_BxBeoJW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635884155\/1437068613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kusunoki_miki","name":"\u6960\u307f\u304d","id":2940005700,"id_str":"2940005700","indices":[0,14]},{"screen_name":"bellgaku","name":"\u30d9\u30eb\u5b66\u9694\u96e2\u7528","id":2778587862,"id_str":"2778587862","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987658"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691040952320,"id_str":"663727691040952320","text":"RT @Hunhvnx: Guys write all the 140 Characters without using emojis or pics, videos.\nyou have to put these tags #CALLMEBABY #\uc5d1\uc18c #2015MAMA @\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3262910612,"id_str":"3262910612","name":"\u0627\u064a\u062a\u0634\u0622\u0646.","screen_name":"x_2tll","location":"Exo. ","url":null,"description":"i just can't do it anymore,i don't want to be here.","protected":false,"verified":false,"followers_count":139,"friends_count":177,"listed_count":0,"favourites_count":48,"statuses_count":2785,"created_at":"Wed Jul 01 05:06:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650152288158224384\/fzKwfvG0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650152288158224384\/fzKwfvG0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3262910612\/1443317090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:34 +0000 2015","id":663725621017763840,"id_str":"663725621017763840","text":"Guys write all the 140 Characters without using emojis or pics, videos.\nyou have to put these tags #CALLMEBABY #\uc5d1\uc18c #2015MAMA @MnetMAMA #EXO","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3082614799,"id_str":"3082614799","name":"\u2728\u2727\u2728\u2727\u0647\u0644\u0627\u062a\u0634\u064a\u0646\u2727\u2728\u2727\u2728","screen_name":"Hunhvnx","location":"PROUD.TO.BE.EXOL","url":null,"description":"____The only number that matter is We are one\u2022 \u2661","protected":false,"verified":false,"followers_count":259,"friends_count":94,"listed_count":0,"favourites_count":3955,"statuses_count":14676,"created_at":"Sat Mar 14 22:24:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662268101887729664\/mGSgJVWv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662268101887729664\/mGSgJVWv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3082614799\/1446732522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[99,110]},{"text":"\uc5d1\uc18c","indices":[111,114]},{"text":"2015MAMA","indices":[115,124]},{"text":"EXO","indices":[135,139]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[125,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[112,123]},{"text":"\uc5d1\uc18c","indices":[124,127]},{"text":"2015MAMA","indices":[128,137]},{"text":"EXO","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"Hunhvnx","name":"\u2728\u2727\u2728\u2727\u0647\u0644\u0627\u062a\u0634\u064a\u0646\u2727\u2728\u2727\u2728","id":3082614799,"id_str":"3082614799","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987665"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691024199680,"id_str":"663727691024199680","text":"RT @4Sdds: \u0627\u0644\u0637\u0648\u0627\u0642\u064a \n\u0627\u0644\u0637\u062d\u0627\u0644\u0628 \n\n\u0643\u0623\u0646\u0647\u0645 \u0627\u0648\u0644 \u0645\u0631\u0647 \u064a\u0644\u0639\u0628\u0648\u0646 \u0643\u0648\u0631\u0647 \n\n #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":516687627,"id_str":"516687627","name":"\u062d\u0627\u062a\u0645 \u0627\u0644\u0634\u0631\u064a\u0641","screen_name":"HATEEM16555","location":"\u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627","url":null,"description":"\u200f\u200f\u200f\u200f\u00ac\u273d\u062d\u0627\u062a\u0645 \u0627\u0644\u0634\u0631\u064a\u0641 \u0627\u0647\u0644\u0627 \u0648\u0633\u0647\u0644\u0627 \u0641\u064a\u0643\u0645\r\n\r\n\u0628\u0639\u0636 \u0627\u0644\u0639\u0642\u0648\u0644 \u0639\u062f\u0648\u0647\u0627 \u0627\u0644\u062a\u0641\u0643\u064a\u0631 \u0644\u0627\u0646\u0647\u0627 \u0644\u0648 \u0641\u0643\u0631\u062a \u0633\u062a\u0641\u0647\u0645\r\n \u0648\u0647\u064a \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u0639\u064a\u0634 \u0641\u064a \u0627\u0648\u0647\u0627\u0645\u0647\u0627 \u0645\u0642\u062a\u0646\u0639\u0629 \u0628\u0623\u0643\u0627\u0630\u064a\u0628\r\n \u0627\u0644\u0627\u0646\u0633\u0627\u0646 \u0639\u062f\u0648 \u0646\u0641\u0633\u0647 \u0623\u062d\u064a\u0627\u0646\u064b\u0627 .","protected":false,"verified":false,"followers_count":12205,"friends_count":11682,"listed_count":12,"favourites_count":24740,"statuses_count":219955,"created_at":"Tue Mar 06 17:07:44 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439816303109345280\/Zf3gdoVt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439816303109345280\/Zf3gdoVt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/516687627\/1410132045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:14 +0000 2015","id":663727301465677824,"id_str":"663727301465677824","text":"\u0627\u0644\u0637\u0648\u0627\u0642\u064a \n\u0627\u0644\u0637\u062d\u0627\u0644\u0628 \n\n\u0643\u0623\u0646\u0647\u0645 \u0627\u0648\u0644 \u0645\u0631\u0647 \u064a\u0644\u0639\u0628\u0648\u0646 \u0643\u0648\u0631\u0647 \n\n #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536966458,"id_str":"1536966458","name":"\u2654 \u0633\u0639\u062f\u0648\u0634 \u2654 \u0627\u0644\u0639\u0627\u0644\u0645\u064a \u2654","screen_name":"4Sdds","location":null,"url":null,"description":"#\u0633\u0639\u062f\u0648\u0634_\u0627\u0644\u0639\u0627\u0644\u0645\u064a #NFC \u2654 \u2654 \u0627\u0630\u0643\u0631\u0648\u0646\u064a \u0628\u062f\u0639\u0648\u0647 \u0628\u062a\u0633\u0644\u0648\u0629 \u0627\u0644\u0631\u064a\u0627\u0636","protected":false,"verified":false,"followers_count":14836,"friends_count":9191,"listed_count":29,"favourites_count":536,"statuses_count":41193,"created_at":"Fri Jun 21 17:22:37 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653531846546997248\/mB0lc2J__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653531846546997248\/mB0lc2J__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536966458\/1444649111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[48,64]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[59,75]}],"urls":[],"user_mentions":[{"screen_name":"4Sdds","name":"\u2654 \u0633\u0639\u062f\u0648\u0634 \u2654 \u0627\u0644\u0639\u0627\u0644\u0645\u064a \u2654","id":1536966458,"id_str":"1536966458","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079987661"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691019980800,"id_str":"663727691019980800","text":"@PredatorGuachi @Demok_ ssiisissiisi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727161900195840,"in_reply_to_status_id_str":"663727161900195840","in_reply_to_user_id":3883388907,"in_reply_to_user_id_str":"3883388907","in_reply_to_screen_name":"PredatorGuachi","user":{"id":3773092763,"id_str":"3773092763","name":"jaime rivas","screen_name":"JaiMaster14","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":43,"listed_count":0,"favourites_count":2610,"statuses_count":2013,"created_at":"Fri Sep 25 17:08:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652217336871682048\/6UiiL_sl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652217336871682048\/6UiiL_sl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3773092763\/1444335548","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PredatorGuachi","name":"Predator Guachi","id":3883388907,"id_str":"3883388907","indices":[0,15]},{"screen_name":"Demok_","name":"Dem\u00f8k \u30c4","id":3323353799,"id_str":"3323353799","indices":[16,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079987660"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691028295680,"id_str":"663727691028295680","text":"#FIFA16 \u306e\u30ad\u30e3\u30ea\u30a2\u30e2\u30fc\u30c9\u3067\u5e74\u9593\u4e88\u7b97\u3092\u5f15\u304d\u7d99\u3052\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3068\u304b\u805e\u3044\u3066\u559c\u3093\u3067\u3084\u3063\u3066\u307f\u305f\u3089\u8cc7\u7523\u76ee\u6e1b\u308a\u3057\u3066\u308b\u3058\u3083\u306a\u3044\u304b(\u61a4\u6012)","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120678605,"id_str":"120678605","name":"ONTN","screen_name":"ontn","location":"\u540d\u53e4\u5c4b\u5e02\u4e2d\u533a","url":null,"description":"\u30a2\u30c4\u30a5\u30a4","protected":false,"verified":false,"followers_count":23,"friends_count":9,"listed_count":3,"favourites_count":0,"statuses_count":1363,"created_at":"Sun Mar 07 05:59:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/737784355\/10220495_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/737784355\/10220495_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FIFA16","indices":[0,7]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987662"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691024220160,"id_str":"663727691024220160","text":"How to create global variable - https:\/\/t.co\/QI36PvOWzF","source":"\u003ca href=\"http:\/\/sCRiPTz-TEAM.iNFO\" rel=\"nofollow\"\u003esCRiPTz-TEAM.iNFO API\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40475333,"id_str":"40475333","name":"sCRiPTz-TEAM.iNFO","screen_name":"scriptzteam","location":null,"url":"http:\/\/scriptz-team.info","description":null,"protected":false,"verified":false,"followers_count":481,"friends_count":225,"listed_count":50,"favourites_count":25,"statuses_count":2553566,"created_at":"Sat May 16 14:49:20 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EEEEEE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/38074581\/11.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/38074581\/11.png","profile_background_tile":false,"profile_link_color":"52C24A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"666666","profile_text_color":"A0A0A0","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458890191323672576\/6qss6GeX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458890191323672576\/6qss6GeX_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QI36PvOWzF","expanded_url":"http:\/\/skripterz.info\/r\/25j3","display_url":"skripterz.info\/r\/25j3","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987661"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691007397888,"id_str":"663727691007397888","text":"RT @Way_Things_Work: Can you read it? http:\/\/t.co\/1O7B684sMN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1447206276,"id_str":"1447206276","name":"Twesigye Gabriel","screen_name":"CeraphGabriel","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":123,"listed_count":0,"favourites_count":198,"statuses_count":192,"created_at":"Tue May 21 20:39:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658190189039374336\/wp_tsQx-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658190189039374336\/wp_tsQx-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447206276\/1441511860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 29 01:40:04 +0000 2015","id":648673566628560896,"id_str":"648673566628560896","text":"Can you read it? http:\/\/t.co\/1O7B684sMN","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482658470,"id_str":"482658470","name":"Optical Illusion","screen_name":"Way_Things_Work","location":null,"url":null,"description":"Illusion is the first of all pleasures -Oscar Wilde. For submition or request removal contact: relatenoteposts@gmail.com","protected":false,"verified":false,"followers_count":961635,"friends_count":44274,"listed_count":1538,"favourites_count":622,"statuses_count":18953,"created_at":"Sat Feb 04 05:06:36 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2FAF8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469313108310102018\/7fnjYfTn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469313108310102018\/7fnjYfTn.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628645031419613184\/tKxv6C40_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628645031419613184\/tKxv6C40_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482658470\/1438721185","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2634,"favorite_count":2542,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":648554956920786944,"id_str":"648554956920786944","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","url":"http:\/\/t.co\/1O7B684sMN","display_url":"pic.twitter.com\/1O7B684sMN","expanded_url":"http:\/\/twitter.com\/Way_Things_Work\/status\/648673566628560896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":480,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":648554956920786944,"id_str":"648554956920786944","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","url":"http:\/\/t.co\/1O7B684sMN","display_url":"pic.twitter.com\/1O7B684sMN","expanded_url":"http:\/\/twitter.com\/Way_Things_Work\/status\/648673566628560896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":480,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Way_Things_Work","name":"Optical Illusion","id":482658470,"id_str":"482658470","indices":[3,19]}],"symbols":[],"media":[{"id":648554956920786944,"id_str":"648554956920786944","indices":[38,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","url":"http:\/\/t.co\/1O7B684sMN","display_url":"pic.twitter.com\/1O7B684sMN","expanded_url":"http:\/\/twitter.com\/Way_Things_Work\/status\/648673566628560896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":480,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":320,"resize":"fit"}},"source_status_id":648673566628560896,"source_status_id_str":"648673566628560896","source_user_id":482658470,"source_user_id_str":"482658470"}]},"extended_entities":{"media":[{"id":648554956920786944,"id_str":"648554956920786944","indices":[38,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQAhTBCVEAA27Uf.jpg","url":"http:\/\/t.co\/1O7B684sMN","display_url":"pic.twitter.com\/1O7B684sMN","expanded_url":"http:\/\/twitter.com\/Way_Things_Work\/status\/648673566628560896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":480,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":320,"resize":"fit"}},"source_status_id":648673566628560896,"source_status_id_str":"648673566628560896","source_user_id":482658470,"source_user_id_str":"482658470"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987657"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036803072,"id_str":"663727691036803072","text":"RT @ini_pmh: \u3053\u307e\u3063\u3061\u3083\u3093\uff01 #\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 https:\/\/t.co\/KyPFmkdOBQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147801496,"id_str":"147801496","name":"Spooky Taco~","screen_name":"Alfynith","location":"Su puesto de tacos mas cercano","url":"http:\/\/www.youtube.com\/user\/theooproject","description":"People told me that I would became what I wanted and now I'm delicious~ [Engrish & Espanish]","protected":false,"verified":false,"followers_count":507,"friends_count":358,"listed_count":16,"favourites_count":76,"statuses_count":51897,"created_at":"Tue May 25 02:45:29 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107971081\/241ddd549c44fe7bc912969fa736732b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107971081\/241ddd549c44fe7bc912969fa736732b.jpeg","profile_background_tile":false,"profile_link_color":"F59BAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661069539321384960\/2nw3YE85_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661069539321384960\/2nw3YE85_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147801496\/1398665603","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:49 +0000 2015","id":663717882958770176,"id_str":"663717882958770176","text":"\u3053\u307e\u3063\u3061\u3083\u3093\uff01 #\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 https:\/\/t.co\/KyPFmkdOBQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221544881,"id_str":"221544881","name":"\u3044\u306b","screen_name":"ini_pmh","location":"\u591c\u96c0\u306e\u5c4b\u53f0","url":null,"description":"\u307f\u3059\u3061\u30fc\u5927\u597d\u304d\u3089\u304f\u304c\u304d\u304a\u3058\u3055\u3093 http:\/\/www.pixiv.net\/member.php?id=2067653 http:\/\/ask.fm\/ini_pmh\n\u30ea\u30d7\u30e9\u30a4\u306f\u5e30\u3063\u3066\u3053\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":2700,"friends_count":371,"listed_count":131,"favourites_count":25493,"statuses_count":49229,"created_at":"Tue Nov 30 23:21:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"605588","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607917374633746433\/_qdNYULm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607917374633746433\/_qdNYULm.png","profile_background_tile":false,"profile_link_color":"BB4455","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657965202512572416\/R70UDQgX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657965202512572416\/R70UDQgX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221544881\/1445270484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":120,"entities":{"hashtags":[{"text":"\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[8,25]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717881402646528,"id_str":"663717881402646528","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","url":"https:\/\/t.co\/KyPFmkdOBQ","display_url":"pic.twitter.com\/KyPFmkdOBQ","expanded_url":"http:\/\/twitter.com\/ini_pmh\/status\/663717882958770176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717881402646528,"id_str":"663717881402646528","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","url":"https:\/\/t.co\/KyPFmkdOBQ","display_url":"pic.twitter.com\/KyPFmkdOBQ","expanded_url":"http:\/\/twitter.com\/ini_pmh\/status\/663717882958770176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[21,38]}],"urls":[],"user_mentions":[{"screen_name":"ini_pmh","name":"\u3044\u306b","id":221544881,"id_str":"221544881","indices":[3,11]}],"symbols":[],"media":[{"id":663717881402646528,"id_str":"663717881402646528","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","url":"https:\/\/t.co\/KyPFmkdOBQ","display_url":"pic.twitter.com\/KyPFmkdOBQ","expanded_url":"http:\/\/twitter.com\/ini_pmh\/status\/663717882958770176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663717882958770176,"source_status_id_str":"663717882958770176","source_user_id":221544881,"source_user_id_str":"221544881"}]},"extended_entities":{"media":[{"id":663717881402646528,"id_str":"663717881402646528","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5YgUYAAar6e.png","url":"https:\/\/t.co\/KyPFmkdOBQ","display_url":"pic.twitter.com\/KyPFmkdOBQ","expanded_url":"http:\/\/twitter.com\/ini_pmh\/status\/663717882958770176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663717882958770176,"source_status_id_str":"663717882958770176","source_user_id":221544881,"source_user_id_str":"221544881"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036758016,"id_str":"663727691036758016","text":"RT @JackJackJohnson: Just for some context, I threw this out of our hotel window to a group of fans \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/Bnyu9gjcl3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601181356,"id_str":"601181356","name":"Alicia ","screen_name":"uxis_alis","location":"Galiza. ","url":null,"description":"AC\/DC","protected":false,"verified":false,"followers_count":560,"friends_count":398,"listed_count":2,"favourites_count":5056,"statuses_count":6626,"created_at":"Wed Jun 06 18:21:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626457847732289538\/Ia8YUOWt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626457847732289538\/Ia8YUOWt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601181356\/1419114620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:38 +0000 2015","id":663726645216342016,"id_str":"663726645216342016","text":"Just for some context, I threw this out of our hotel window to a group of fans \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/Bnyu9gjcl3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588968,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13964,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663704021753069568,"quoted_status_id_str":"663704021753069568","quoted_status":{"created_at":"Mon Nov 09 13:05:44 +0000 2015","id":663704021753069568,"id_str":"663704021753069568","text":"Jack Johnson aka the next J. K. Rowling https:\/\/t.co\/WUCJJ6L8ty","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2441687960,"id_str":"2441687960","name":"amaranta","screen_name":"imcalledama","location":"Madrid, Spain","url":"http:\/\/Instagram.com\/imcalledama","description":"We have art in order not to die of the truth.","protected":false,"verified":false,"followers_count":665,"friends_count":351,"listed_count":15,"favourites_count":5688,"statuses_count":13878,"created_at":"Sun Apr 13 13:03:28 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594874409480892416\/rBQMJQze.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594874409480892416\/rBQMJQze.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663700475435425794\/ZBx25pef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663700475435425794\/ZBx25pef_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2441687960\/1447073557","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663704004594135041,"id_str":"663704004594135041","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzRpXWcAEBNC8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzRpXWcAEBNC8.jpg","url":"https:\/\/t.co\/WUCJJ6L8ty","display_url":"pic.twitter.com\/WUCJJ6L8ty","expanded_url":"http:\/\/twitter.com\/imcalledama\/status\/663704021753069568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663704004594135041,"id_str":"663704004594135041","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzRpXWcAEBNC8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzRpXWcAEBNC8.jpg","url":"https:\/\/t.co\/WUCJJ6L8ty","display_url":"pic.twitter.com\/WUCJJ6L8ty","expanded_url":"http:\/\/twitter.com\/imcalledama\/status\/663704021753069568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":821,"favorite_count":2005,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Bnyu9gjcl3","expanded_url":"https:\/\/twitter.com\/imcalledama\/status\/663704021753069568","display_url":"twitter.com\/imcalledama\/st\u2026","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Bnyu9gjcl3","expanded_url":"https:\/\/twitter.com\/imcalledama\/status\/663704021753069568","display_url":"twitter.com\/imcalledama\/st\u2026","indices":[104,127]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691024175104,"id_str":"663727691024175104","text":"2 tickets to Catfish And The Bottlemen at Rock City - Nottingham, 10 Nov, fv \u00a316.80 ea. https:\/\/t.co\/UcR4LfhtQk","source":"\u003ca href=\"http:\/\/www.twckts.com\/\" rel=\"nofollow\"\u003eTwickets Tickets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":418172525,"id_str":"418172525","name":"Twickets","screen_name":"Twickets","location":"London, UK","url":"http:\/\/www.twickets.co.uk","description":"Face Value or less since 2011. Free app & Website to BUY \/ SELL Tickets Securely; Filter; Set Alerts. For more see http:\/\/blog.twickets.co.uk\/app","protected":false,"verified":false,"followers_count":76292,"friends_count":10,"listed_count":222,"favourites_count":2256,"statuses_count":251385,"created_at":"Mon Nov 21 21:08:14 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"124F6E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/386975049\/twickets-logo_route3_sheet2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/386975049\/twickets-logo_route3_sheet2.jpg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563348226728685568\/V323HDnD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563348226728685568\/V323HDnD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418172525\/1423216957","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcR4LfhtQk","expanded_url":"https:\/\/www.twickets.co.uk\/block\/26519?qty=2","display_url":"twickets.co.uk\/block\/26519?qt\u2026","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987661"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691011493888,"id_str":"663727691011493888","text":"RT @JJKK_97: \u0e40\u0e1b\u0e47\u0e19\u0e40\u0e40\u0e21\u0e27\u0e17\u0e35\u0e48\u0e15\u0e32\u0e2a\u0e27\u0e22\u0e04\u0e21\u0e21\u0e32\u0e01\u0e2d\u0e48\u0e30 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e23\u0e35\u0e14\u0e15\u0e32\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e48\u0e07\u0e21\u0e2d\u0e07\u0e22\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e07\u0e15\u0e32\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e19\u0e32\u0e07 \ud83d\ude0d #\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27 https:\/\/t.co\/04TYQPzTgx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3251260327,"id_str":"3251260327","name":"Sky","screen_name":"farfamily555","location":"\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23, \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":192,"listed_count":1,"favourites_count":2944,"statuses_count":6838,"created_at":"Sun Jun 21 03:42:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643967544471097344\/o9VOTZka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643967544471097344\/o9VOTZka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251260327\/1444375051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:20:32 +0000 2015","id":663224562952179712,"id_str":"663224562952179712","text":"\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e40\u0e21\u0e27\u0e17\u0e35\u0e48\u0e15\u0e32\u0e2a\u0e27\u0e22\u0e04\u0e21\u0e21\u0e32\u0e01\u0e2d\u0e48\u0e30 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e23\u0e35\u0e14\u0e15\u0e32\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e48\u0e07\u0e21\u0e2d\u0e07\u0e22\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e07\u0e15\u0e32\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e19\u0e32\u0e07 \ud83d\ude0d #\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27 https:\/\/t.co\/04TYQPzTgx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788082546,"id_str":"2788082546","name":"`\u0e40\u0e14\u0e47\u0e01\u0e08\u0e2d\u0e19 \u2022\u3145\u2022","screen_name":"JJKK_97","location":null,"url":null,"description":"@BTS_twt | BTS X ARMY | \u0e04\u0e38\u0e13\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19 | \u0e2a\u0e32\u0e22\u0e40\u0e1e\u0e49\u0e2d | \u0e2a\u0e32\u0e22\u0e21\u0e42\u0e19 | \u0e0a\u0e2d\u0e1a\u0e1a\u0e48\u0e19 | \u0e17\u0e27\u0e34\u0e15\u0e2b\u0e22\u0e32\u0e1a | \u0e04\u0e34\u0e14\u0e43\u0e2b\u0e49\u0e14\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e1f\u0e2d\u0e25 | \u26a0 |","protected":false,"verified":false,"followers_count":164,"friends_count":78,"listed_count":3,"favourites_count":6026,"statuses_count":25879,"created_at":"Wed Sep 03 14:40:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661536680411705344\/6CumGI8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661536680411705344\/6CumGI8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2788082546\/1442986902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2144,"favorite_count":254,"entities":{"hashtags":[{"text":"\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27","indices":[71,78]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}},{"id":663224517112651776,"id_str":"663224517112651776","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}}},{"id":663224528953196544,"id_str":"663224528953196544","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}},{"id":663224546581807104,"id_str":"663224546581807104","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1018,"resize":"fit"},"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27","indices":[84,91]}],"urls":[],"user_mentions":[{"screen_name":"JJKK_97","name":"`\u0e40\u0e14\u0e47\u0e01\u0e08\u0e2d\u0e19 \u2022\u3145\u2022","id":2788082546,"id_str":"2788082546","indices":[3,11]}],"symbols":[],"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"}]},"extended_entities":{"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224517112651776,"id_str":"663224517112651776","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224528953196544,"id_str":"663224528953196544","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224546581807104,"id_str":"663224546581807104","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1018,"resize":"fit"},"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079987658"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691015716864,"id_str":"663727691015716864","text":"RT @Haka_se7: \u7a81\u7136\u306e\u717d\u308a http:\/\/t.co\/b2hR6sRLIR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122965762,"id_str":"122965762","name":"c__y","screen_name":"nani_chy","location":"Tokyo,Japan","url":null,"description":"I Need LOVE\u2665","protected":false,"verified":false,"followers_count":388,"friends_count":598,"listed_count":17,"favourites_count":7834,"statuses_count":49165,"created_at":"Sun Mar 14 14:18:18 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1657163598\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1657163598\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122965762\/1353491750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jul 13 12:44:22 +0000 2015","id":620574488049008640,"id_str":"620574488049008640","text":"\u7a81\u7136\u306e\u717d\u308a http:\/\/t.co\/b2hR6sRLIR","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192132658,"id_str":"192132658","name":"\u535a\u58eb","screen_name":"Haka_se7","location":"\u795e\u30e9\uff01","url":"http:\/\/ask.fm\/haka_se7","description":"\u3084\u3093\u3084\u3093\u30c0\u30c3\u30b7\u30e5\u5e38\u7fd2\u72af","protected":false,"verified":false,"followers_count":2191,"friends_count":1300,"listed_count":26,"favourites_count":11741,"statuses_count":59079,"created_at":"Sat Sep 18 08:09:12 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567839876976877568\/Gugm3a-O.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567839876976877568\/Gugm3a-O.jpeg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589778074532646913\/3cyicqLy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589778074532646913\/3cyicqLy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192132658\/1429516436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31171,"favorite_count":24613,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":620574487776354305,"id_str":"620574487776354305","indices":[6,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","url":"http:\/\/t.co\/b2hR6sRLIR","display_url":"pic.twitter.com\/b2hR6sRLIR","expanded_url":"http:\/\/twitter.com\/Haka_se7\/status\/620574488049008640\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":337,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":620574487776354305,"id_str":"620574487776354305","indices":[6,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","url":"http:\/\/t.co\/b2hR6sRLIR","display_url":"pic.twitter.com\/b2hR6sRLIR","expanded_url":"http:\/\/twitter.com\/Haka_se7\/status\/620574488049008640\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":337,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Haka_se7","name":"\u535a\u58eb","id":192132658,"id_str":"192132658","indices":[3,12]}],"symbols":[],"media":[{"id":620574487776354305,"id_str":"620574487776354305","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","url":"http:\/\/t.co\/b2hR6sRLIR","display_url":"pic.twitter.com\/b2hR6sRLIR","expanded_url":"http:\/\/twitter.com\/Haka_se7\/status\/620574488049008640\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":337,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":620574488049008640,"source_status_id_str":"620574488049008640","source_user_id":192132658,"source_user_id_str":"192132658"}]},"extended_entities":{"media":[{"id":620574487776354305,"id_str":"620574487776354305","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJy5NWyUYAEI_ba.png","url":"http:\/\/t.co\/b2hR6sRLIR","display_url":"pic.twitter.com\/b2hR6sRLIR","expanded_url":"http:\/\/twitter.com\/Haka_se7\/status\/620574488049008640\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":337,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":620574488049008640,"source_status_id_str":"620574488049008640","source_user_id":192132658,"source_user_id_str":"192132658"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987659"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691028299776,"id_str":"663727691028299776","text":"\u30d0\u30ec\u3061\u3083\u3063\u305f\u304b\u306a\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":438204182,"id_str":"438204182","name":"\u5165\u6c5f\u594f\u591a","screen_name":"Kanata_I_bot","location":"U17\u65e5\u672c\u4ee3\u8868\u5408\u5bbf\u6240","url":null,"description":"\u65b0\u30c6\u30cb\u30b9\u306e\u738b\u5b50\u69d8\u3001\u5165\u6c5f\u594f\u591a\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u4f5c\u8005\u69d8\u3001\u95a2\u4fc2\u8005\u69d8\u65b9\u3068\u306f\u4e00\u5207\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093\u300230\u5206\u306b1\u56depost\u3057\u307e\u3059\u3002\u30ea\u30d7\u5bfe\u5fdc\u3001\u53cd\u5fdc\u30ef\u30fc\u30c9\u3068\u30ea\u30d7\u3057\u3066\u3044\u305f\u3060\u3051\u308c\u3070\u6559\u3048\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":229,"friends_count":134,"listed_count":19,"favourites_count":0,"statuses_count":38154,"created_at":"Fri Dec 16 09:25:13 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1736842119\/sintenisu0127s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1736842119\/sintenisu0127s_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987662"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691040878592,"id_str":"663727691040878592","text":"RT @BAPERRP: Ga pernah minta dan nuntut kamu apa-apa, cuma mau kehidupan yang lebih baik untuk kamu sendiri aja. Untuk kamu, bukan untuk ak\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3162448891,"id_str":"3162448891","name":"ts)BBH\/\/Ebbey","screen_name":"rlyjh_","location":"\ucbd4\uc704\/\/\u5468\u5b50\u745c .genjotsq","url":"http:\/\/instagram.twicegram.kr","description":"Hello ! maknae of \ud2b8\uc640\uc774\uc2a4 Chou Tzu Yu here\u2655 ^^~","protected":false,"verified":false,"followers_count":1869,"friends_count":1815,"listed_count":4,"favourites_count":886,"statuses_count":18494,"created_at":"Sat Apr 18 12:20:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717382800564224\/qBk9dWx8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717382800564224\/qBk9dWx8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3162448891\/1446929866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:11 +0000 2015","id":663717471170527232,"id_str":"663717471170527232","text":"Ga pernah minta dan nuntut kamu apa-apa, cuma mau kehidupan yang lebih baik untuk kamu sendiri aja. Untuk kamu, bukan untuk aku~","source":"\u003ca href=\"http:\/\/www.google.co.id\" rel=\"nofollow\"\u003eHadzone Cyber Security\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3048023628,"id_str":"3048023628","name":"BaperRolePlay\u208d\u1422\u2022\ufecc\u2022\u1422\u208e","screen_name":"BAPERRP","location":"FAKEWORLD","url":null,"description":"Karena rasa adalah segalanya , Dorm For All Roleplayer. kirim menfess sesuai mood #ASK #JOY #SAD cek fav","protected":false,"verified":false,"followers_count":10612,"friends_count":8455,"listed_count":14,"favourites_count":4,"statuses_count":7379,"created_at":"Sat Feb 28 00:44:47 +0000 2015","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618145662077538304\/H78CqUbl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618145662077538304\/H78CqUbl.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646265471537287168\/tz3Yc6tv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646265471537287168\/tz3Yc6tv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3048023628\/1442916759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BAPERRP","name":"BaperRolePlay\u208d\u1422\u2022\ufecc\u2022\u1422\u208e","id":3048023628,"id_str":"3048023628","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079987665"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691032453120,"id_str":"663727691032453120","text":"RT @MurkOfficial: Gonna give away a Harry solo to a random person(: #RT\n\n#OhNoBriana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1434604092,"id_str":"1434604092","name":"\u02d7\u02cf\u02cbericka\u02ce\u02ca\u02d7","screen_name":"sainthes94","location":null,"url":null,"description":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800could we ever be enough?","protected":false,"verified":false,"followers_count":4570,"friends_count":2016,"listed_count":18,"favourites_count":4357,"statuses_count":22410,"created_at":"Fri May 17 03:41:08 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578363429817221121\/gx5ouJtG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578363429817221121\/gx5ouJtG.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662884400565121024\/4phPQskl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662884400565121024\/4phPQskl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1434604092\/1446879675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:31 +0000 2015","id":663727119323779072,"id_str":"663727119323779072","text":"Gonna give away a Harry solo to a random person(: #RT\n\n#OhNoBriana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2217717026,"id_str":"2217717026","name":"IDIOT","screen_name":"MurkOfficial","location":null,"url":null,"description":"In case you haven't heard this today, I'm glad you're alive and I love you.! | @CodySimpson @CrawfordCollins @ConorMaynard Liam\/5 Followed! I LOVE DOVI & JOHN\u2764","protected":false,"verified":false,"followers_count":16656,"friends_count":2420,"listed_count":18,"favourites_count":75,"statuses_count":8913,"created_at":"Wed Nov 27 12:42:06 +0000 2013","utc_offset":18000,"time_zone":"Karachi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579989582839611393\/LidUzO_9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579989582839611393\/LidUzO_9.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727275679064064\/YftFhon0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727275679064064\/YftFhon0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2217717026\/1446992855","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[{"text":"RT","indices":[50,53]},{"text":"OhNoBriana","indices":[55,66]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT","indices":[68,71]},{"text":"OhNoBriana","indices":[73,84]}],"urls":[],"user_mentions":[{"screen_name":"MurkOfficial","name":"IDIOT","id":2217717026,"id_str":"2217717026","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987663"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691015680001,"id_str":"663727691015680001","text":"RT @EXILE_contact: EXILE TRIBE\u7dcf\u51fa\u6f14\u30c9\u30e9\u30de\n\u300eHiGH&LOW-THE STORY OF S.W.O.R.D.-\u300f\n\u5168\u54e1\u4e3b\u5f79\u3002\u75db\u307f\u3092\u77e5\u308b\u304b\u3089\u3001\u512a\u3057\u304f\u306a\u308c\u308b\u3002\n\n\u30e9\u30e9\n\nE-girls \/ Happiness \u85e4\u4e95\u590f\u604b\n\n#HL_SWORD http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3116068814,"id_str":"3116068814","name":"LDH\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u266124","screen_name":"LDH2417","location":null,"url":null,"description":"LDH\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3063\uff01LDH\u306b\u95a2\u3059\u308b\u753b\u50cf\u306a\u3069\u3092\u3058\u3083\u3093\u3058\u3083\u3093\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u304d\u307e\u3059\uff01\uff01EXILE\u3001\u4e09\u4ee3\u76ee\u3001GENERATIONS\u3001THE RAMPAGE\u3001E-Girls\u306a\u3069\u306a\u3069LDH\u597d\u304d\u306f\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":136,"friends_count":63,"listed_count":10,"favourites_count":1541,"statuses_count":9559,"created_at":"Mon Mar 30 00:53:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582346109269319680\/Dh2bXbfJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582346109269319680\/Dh2bXbfJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3116068814\/1427677954","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:02:51 +0000 2015","id":663703297069465602,"id_str":"663703297069465602","text":"EXILE TRIBE\u7dcf\u51fa\u6f14\u30c9\u30e9\u30de\n\u300eHiGH&LOW-THE STORY OF S.W.O.R.D.-\u300f\n\u5168\u54e1\u4e3b\u5f79\u3002\u75db\u307f\u3092\u77e5\u308b\u304b\u3089\u3001\u512a\u3057\u304f\u306a\u308c\u308b\u3002\n\n\u30e9\u30e9\n\nE-girls \/ Happiness \u85e4\u4e95\u590f\u604b\n\n#HL_SWORD https:\/\/t.co\/oshOoIyCOw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472592980,"id_str":"472592980","name":"LDH \u226aEXILE TRIBE\u226b","screen_name":"EXILE_contact","location":"Tokyo_JAPAN","url":"http:\/\/www.ldh.co.jp\/","description":"EXILE\u30fb\u4e09\u4ee3\u76eeJSoulBrothers\u30fbE-girls\u30fbGENERATIONS\u30fbHiGH&LOW and more\u2026\u79c1\u305f\u3061\u306f\u3001Love , Dream , Happiness\u3092\u30c6\u30fc\u30de\u306b\u30a8\u30f3\u30bf\u30c6\u30a4\u30f3\u30e1\u30f3\u30c8\u3092\u5275\u9020\u3057\u3001\u4e16\u754c\u4e2d\u306e\u3059\u3079\u3066\u306e\u4eba\u305f\u3061\u306b\u5c4a\u3051\u307e\u3059\u3002\u305d\u3057\u3066\u3001\u5fc3\u8c4a\u304b\u306a\u793e\u4f1a\u3068\u5b50\u3069\u3082\u305f\u3061\u304c\u5922\u3092\u6301\u3066\u308b\u672a\u6765\u306b\u8ca2\u732e\u3057\u3066\u3044\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":664021,"friends_count":113,"listed_count":1563,"favourites_count":4761,"statuses_count":36722,"created_at":"Tue Jan 24 03:18:23 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580557223371284480\/696Bx4JV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580557223371284480\/696Bx4JV.jpg","profile_background_tile":false,"profile_link_color":"CC0606","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517535683246714882\/TW8BCI9p_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517535683246714882\/TW8BCI9p_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472592980\/1446549528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1068,"favorite_count":5245,"entities":{"hashtags":[{"text":"HL_SWORD","indices":[110,119]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663703293227503616,"id_str":"663703293227503616","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":525,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703293227503616,"id_str":"663703293227503616","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":525,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}}},{"id":663703295731494912,"id_str":"663703295731494912","indices":[120,143],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoYpU8AAgYpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoYpU8AAgYpM.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":935,"h":523,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HL_SWORD","indices":[129,138]}],"urls":[],"user_mentions":[{"screen_name":"EXILE_contact","name":"LDH \u226aEXILE TRIBE\u226b","id":472592980,"id_str":"472592980","indices":[3,17]}],"symbols":[],"media":[{"id":663703293227503616,"id_str":"663703293227503616","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":525,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663703297069465602,"source_status_id_str":"663703297069465602","source_user_id":472592980,"source_user_id_str":"472592980"}]},"extended_entities":{"media":[{"id":663703293227503616,"id_str":"663703293227503616","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoPUVEAAqO_F.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":525,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663703297069465602,"source_status_id_str":"663703297069465602","source_user_id":472592980,"source_user_id_str":"472592980"},{"id":663703295731494912,"id_str":"663703295731494912","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyoYpU8AAgYpM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyoYpU8AAgYpM.jpg","url":"https:\/\/t.co\/oshOoIyCOw","display_url":"pic.twitter.com\/oshOoIyCOw","expanded_url":"http:\/\/twitter.com\/EXILE_contact\/status\/663703297069465602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":935,"h":523,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663703297069465602,"source_status_id_str":"663703297069465602","source_user_id":472592980,"source_user_id_str":"472592980"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987659"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691028258816,"id_str":"663727691028258816","text":"RT @blxcknicotine: When i fucked up that's the real me.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3182451817,"id_str":"3182451817","name":"Zetty","screen_name":"jumpmandallas","location":"Galaxy","url":null,"description":"My parents warned me about the drugs in the streets but never the ones with brown eyes and a heartbeat.","protected":false,"verified":false,"followers_count":264,"friends_count":99,"listed_count":3,"favourites_count":5192,"statuses_count":3026,"created_at":"Sat May 02 04:32:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661860875557449729\/tl-kjQVT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661860875557449729\/tl-kjQVT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3182451817\/1446783195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:08 +0000 2015","id":663727024209457153,"id_str":"663727024209457153","text":"When i fucked up that's the real me.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284197383,"id_str":"284197383","name":"human error.","screen_name":"blxcknicotine","location":"Seoul, Korea ","url":null,"description":"Don\u2019t try to figure me out. It will only exhaust you. #illhueminati","protected":false,"verified":false,"followers_count":122417,"friends_count":25120,"listed_count":217,"favourites_count":13595,"statuses_count":102579,"created_at":"Mon Apr 18 20:37:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E09CCB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_tile":true,"profile_link_color":"D662B3","profile_sidebar_border_color":"F283E1","profile_sidebar_fill_color":"1A1D1F","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284197383\/1446304062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":53,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blxcknicotine","name":"human error.","id":284197383,"id_str":"284197383","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987662"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036684290,"id_str":"663727691036684290","text":"RT @DJPUpdatesPH: Hoping for the AngYna Best Airport Scene \ud83d\ude4f\ud83d\ude33\ud83d\udc95\n\n#PSYPagtakas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3380193672,"id_str":"3380193672","name":"Ms. Sapphire","screen_name":"ms_sapphire20","location":"Canada","url":null,"description":"God-fearing, a mom, a wife, certified hooligans, kapamilya \u2764\ufe0f","protected":false,"verified":false,"followers_count":216,"friends_count":244,"listed_count":27,"favourites_count":1493,"statuses_count":18187,"created_at":"Sat Aug 29 09:44:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643090123081453568\/9yCoaYLM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643090123081453568\/9yCoaYLM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3380193672\/1442159978","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:23:59 +0000 2015","id":663708614654193664,"id_str":"663708614654193664","text":"Hoping for the AngYna Best Airport Scene \ud83d\ude4f\ud83d\ude33\ud83d\udc95\n\n#PSYPagtakas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329031427,"id_str":"3329031427","name":"Daniel Padilla","screen_name":"DJPUpdatesPH","location":"Teen King DJP's heart","url":null,"description":"OFFICIAL online fanpage of Daniel Padilla. Your number one source for the hottest and newest updates about Teen King DJP -Bound to protect & support him \u2655","protected":false,"verified":false,"followers_count":2046,"friends_count":30,"listed_count":16,"favourites_count":1120,"statuses_count":6481,"created_at":"Mon Aug 24 16:30:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645572456334299140\/RvBX28WG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645572456334299140\/RvBX28WG.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663046226875514880\/R9Tmwhr-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663046226875514880\/R9Tmwhr-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329031427\/1446909899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":15,"entities":{"hashtags":[{"text":"PSYPagtakas","indices":[46,58]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PSYPagtakas","indices":[64,76]}],"urls":[],"user_mentions":[{"screen_name":"DJPUpdatesPH","name":"Daniel Padilla","id":3329031427,"id_str":"3329031427","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045048320,"id_str":"663727691045048320","text":"Nakakamiss \ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2939341908,"id_str":"2939341908","name":"Steve","screen_name":"SteeveeLeee","location":"MNL","url":"http:\/\/instagram.com\/steveeleee","description":"l\u00f8st. | UST | MKTG","protected":false,"verified":false,"followers_count":96,"friends_count":96,"listed_count":0,"favourites_count":260,"statuses_count":455,"created_at":"Mon Dec 22 13:04:42 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604244870144786432\/nBupY7XD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604244870144786432\/nBupY7XD.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659656272078237696\/QBs7cf2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659656272078237696\/QBs7cf2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2939341908\/1445822236","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079987666"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691040956416,"id_str":"663727691040956416","text":"Just seen granny on meths \ud83d\ude48","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448304155,"id_str":"448304155","name":"Josh S","screen_name":"StringerJosh","location":"Barnsley","url":"https:\/\/instagram.com\/jstringer89\/","description":"\u300aLiving the Life Full\u300b Haters gonna Hate! -Zyzz \u2022Better to enter with boldness \u2022Soon to be Businessman \u2022Also Future Entrepreneur ~FOLLOW ME I FOLLOW BACK~","protected":false,"verified":false,"followers_count":210,"friends_count":199,"listed_count":7,"favourites_count":521,"statuses_count":870,"created_at":"Tue Dec 27 21:15:20 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/768009428\/054ae798fa1ca8080afb093cdcb861ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/768009428\/054ae798fa1ca8080afb093cdcb861ce.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661222165321285632\/AWsc8D_G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661222165321285632\/AWsc8D_G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448304155\/1444061664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987665"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691007422464,"id_str":"663727691007422464","text":"@2xAwesome @Lovethpie @WEnergyltd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718483180576768,"in_reply_to_status_id_str":"663718483180576768","in_reply_to_user_id":194671720,"in_reply_to_user_id_str":"194671720","in_reply_to_screen_name":"2xAwesome","user":{"id":3071876109,"id_str":"3071876109","name":"'Nezer ola jones","screen_name":"dehollyjones","location":"Lagos Nigeria","url":null,"description":null,"protected":false,"verified":false,"followers_count":243,"friends_count":423,"listed_count":0,"favourites_count":5,"statuses_count":560,"created_at":"Thu Mar 05 09:10:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574985851408683008\/cjbA2JFa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574985851408683008\/cjbA2JFa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3071876109\/1425922283","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"2xAwesome","name":"Ice Eruotor","id":194671720,"id_str":"194671720","indices":[0,10]},{"screen_name":"Lovethpie","name":"Loveth Berry","id":250738105,"id_str":"250738105","indices":[11,21]},{"screen_name":"WEnergyltd","name":"WadeEnergyltd ","id":3311566509,"id_str":"3311566509","indices":[22,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079987657"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045011456,"id_str":"663727691045011456","text":"RT @TheLordOfDream2: If you know your limits then you've stopped living...","source":"\u003ca href=\"http:\/\/favstar.fm\" rel=\"nofollow\"\u003eFavstar.FM\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1633331521,"id_str":"1633331521","name":"Passion Princess","screen_name":"2Sassy4321","location":"In your heart","url":"http:\/\/favstar.fm\/users\/2Sassy4321","description":"Passionate about Love! Lil sassy Italian... Wanting real NOT fantasy - Forget the rules...follow your heart! https:\/\/t.co\/BLwBjJBXSh","protected":false,"verified":false,"followers_count":20492,"friends_count":12814,"listed_count":452,"favourites_count":66047,"statuses_count":79036,"created_at":"Tue Jul 30 16:32:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660455002465419265\/YSES9R-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660455002465419265\/YSES9R-0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1633331521\/1442024137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 10 12:00:50 +0000 2015","id":608604734082195457,"id_str":"608604734082195457","text":"If you know your limits then you've stopped living...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236444780,"id_str":"3236444780","name":"Morpheus","screen_name":"TheLordOfDream2","location":" The Sandman comes Tonight ","url":"http:\/\/twitter.com\/search\/from:TheLordofDream2","description":"Take my Hand...We're off to Never Never Land~ ~NO DM's ~~Married to @His_Queen214 My Always & Forever~~Avi is not Me!!~~ http:\/\/favstar.fm\/users\/TheLordOfDream2","protected":false,"verified":false,"followers_count":1508,"friends_count":905,"listed_count":76,"favourites_count":44042,"statuses_count":53400,"created_at":"Thu Jun 04 23:00:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649760953429393408\/03Ns41ep_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649760953429393408\/03Ns41ep_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236444780\/1441885078","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheLordOfDream2","name":"Morpheus","id":3236444780,"id_str":"3236444780","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987666"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691007287297,"id_str":"663727691007287297","text":"@wasabiff14 \u306f\u3044\uff1f\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723834109898754,"in_reply_to_status_id_str":"663723834109898754","in_reply_to_user_id":1683695504,"in_reply_to_user_id_str":"1683695504","in_reply_to_screen_name":"wasabiff14","user":{"id":387829050,"id_str":"387829050","name":"\u58f1\u756a\u5f0f \uff0f\u3089\u3075\u3043\uff0f\u3058\u308f","screen_name":"Caviar_Water","location":"\u30d6\u30e9\u30c3\u30af\u30db\u30fc\u30eb\u306e\u679c\u3066\u306e\u679c\u3066","url":"http:\/\/www.amazon.co.jp\/registry\/wishlist\/3LZ1OKV3O5KCN\/ref=cm_sw_r_tw_ws_msg5vb1HP4PJ9","description":"FF14\uff08Garuda\uff09\/ \u8266\u3053\u308c\uff08\u5449\uff09 \/ PSO2(ship4) \/ LoVA \/ \u7a7a\u4e2d\u30ea\u30d7\u52e2 \/ TL\u8352\u308c\u307e\u3059 \u203b\u30d5\u30a9\u30ed\u30fc\u6ce8\u610f\u203b \/ \u30d8\u30a4\u30c8\u30c4\u30a4\u30fc\u30c8\u6709 \/ \u793e\u4f1a\u7cfb\u30c4\u30a4\u30fc\u30c8\u6709 \/ \u5acc\u306a\u3089\u898b\u308b\u306a \/","protected":false,"verified":false,"followers_count":374,"friends_count":291,"listed_count":27,"favourites_count":6705,"statuses_count":87184,"created_at":"Sun Oct 09 18:53:56 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663588959180619776\/Vl41lr9N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663588959180619776\/Vl41lr9N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387829050\/1404230319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wasabiff14","name":"\u308f\u3055\u308f\u3055","id":1683695504,"id_str":"1683695504","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987657"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691007459328,"id_str":"663727691007459328","text":"RT @1MrzAD: Exactly lol https:\/\/t.co\/IUlyYndhT9","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37604287,"id_str":"37604287","name":"E PuLLA","screen_name":"iamcomedy","location":"\/\\ T |_ \/\\ N T \/\\","url":null,"description":"-Laughter is the best medicine! \nComedy is a hobby\nMaking people laugh is easy!\nGhost Writer -","protected":false,"verified":false,"followers_count":1276,"friends_count":585,"listed_count":17,"favourites_count":317,"statuses_count":131352,"created_at":"Mon May 04 05:40:59 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/120844539\/9529_129792796683_44100156683_2407788_6120236_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/120844539\/9529_129792796683_44100156683_2407788_6120236_n.jpg","profile_background_tile":false,"profile_link_color":"CC2014","profile_sidebar_border_color":"705F60","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"0F0101","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644938005954883586\/B5LyCa6__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644938005954883586\/B5LyCa6__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37604287\/1396445221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:41 +0000 2015","id":663727412757135361,"id_str":"663727412757135361","text":"Exactly lol https:\/\/t.co\/IUlyYndhT9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074766787,"id_str":"3074766787","name":"the Misses.","screen_name":"1MrzAD","location":null,"url":null,"description":"XXVIIII\nHouston, Texan Girl.","protected":false,"verified":false,"followers_count":505,"friends_count":450,"listed_count":3,"favourites_count":7,"statuses_count":11278,"created_at":"Thu Mar 12 06:38:39 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662770754509914112\/nkxV2j0d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662770754509914112\/nkxV2j0d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074766787\/1446427764","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726458674786304,"quoted_status_id_str":"663726458674786304","quoted_status":{"created_at":"Mon Nov 09 14:34:53 +0000 2015","id":663726458674786304,"id_str":"663726458674786304","text":"You give somebody 8 hall passes a year, ya'll might as well not even be together.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322679553,"id_str":"322679553","name":"Ph.D. in Curve-ology","screen_name":"LiteSkinnedSin_","location":"H O U S T O N ","url":"http:\/\/instagram.com\/liteskinnedsin_","description":"Texas Southern University Alumna '14\n\nSC: LiteSkinnedSin","protected":false,"verified":false,"followers_count":2826,"friends_count":1881,"listed_count":11,"favourites_count":10614,"statuses_count":101581,"created_at":"Thu Jun 23 15:33:24 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B52A4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653638937819283456\/lRPpSqDL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653638937819283456\/lRPpSqDL.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E683BB","profile_text_color":"6712E6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661257163994632192\/z02AYqSq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661257163994632192\/z02AYqSq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322679553\/1444941524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IUlyYndhT9","expanded_url":"https:\/\/twitter.com\/LiteSkinnedSin_\/status\/663726458674786304","display_url":"twitter.com\/LiteSkinnedSin\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IUlyYndhT9","expanded_url":"https:\/\/twitter.com\/LiteSkinnedSin_\/status\/663726458674786304","display_url":"twitter.com\/LiteSkinnedSin\u2026","indices":[24,47]}],"user_mentions":[{"screen_name":"1MrzAD","name":"the Misses.","id":3074766787,"id_str":"3074766787","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987657"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691032498176,"id_str":"663727691032498176","text":"RT @bollyobsession: We started from the bottom and now we are here @deepikapadukone \ud83d\udc93\n\n#8YearsOfDeepikaPadukone https:\/\/t.co\/fOfNrTluz2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2592642110,"id_str":"2592642110","name":".\u091c\u0941\u0917\u0928\u0940","screen_name":"theinfamous__","location":null,"url":null,"description":"ain't afraid to get grease on my fingernails.","protected":false,"verified":false,"followers_count":531,"friends_count":68,"listed_count":10,"favourites_count":2193,"statuses_count":26995,"created_at":"Sat Jun 28 07:02:26 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660891564256849920\/KSd5f__k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660891564256849920\/KSd5f__k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592642110\/1444320352","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:14 +0000 2015","id":663720507250970624,"id_str":"663720507250970624","text":"We started from the bottom and now we are here @deepikapadukone \ud83d\udc93\n\n#8YearsOfDeepikaPadukone https:\/\/t.co\/fOfNrTluz2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302083340,"id_str":"2302083340","name":"#8YearsOfDeepika \u2728","screen_name":"bollyobsession","location":"selena gomez | arjun rampal ","url":null,"description":"Yun pyaar kar be intehaan.\nUnconditional love for Deepika & Saif. If I would get a star for each time they made me happy, I would have a galaxy in my hands \u2728","protected":false,"verified":false,"followers_count":1002,"friends_count":250,"listed_count":13,"favourites_count":7223,"statuses_count":31629,"created_at":"Fri Jan 24 19:47:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663055259158319104\/oxL3sm1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663055259158319104\/oxL3sm1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302083340\/1446997606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":4,"entities":{"hashtags":[{"text":"8YearsOfDeepikaPadukone","indices":[67,91]}],"urls":[],"user_mentions":[{"screen_name":"deepikapadukone","name":"Deepika Padukone","id":101695592,"id_str":"101695592","indices":[47,63]}],"symbols":[],"media":[{"id":663720483083415552,"id_str":"663720483083415552","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720483083415552,"id_str":"663720483083415552","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663720497264332800,"id_str":"663720497264332800","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCRpWWEAA1dY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCRpWWEAA1dY4.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"large":{"w":708,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"8YearsOfDeepikaPadukone","indices":[87,111]}],"urls":[],"user_mentions":[{"screen_name":"bollyobsession","name":"#8YearsOfDeepika \u2728","id":2302083340,"id_str":"2302083340","indices":[3,18]},{"screen_name":"deepikapadukone","name":"Deepika Padukone","id":101695592,"id_str":"101695592","indices":[67,83]}],"symbols":[],"media":[{"id":663720483083415552,"id_str":"663720483083415552","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720507250970624,"source_status_id_str":"663720507250970624","source_user_id":2302083340,"source_user_id_str":"2302083340"}]},"extended_entities":{"media":[{"id":663720483083415552,"id_str":"663720483083415552","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCQ0hWcAASAu0.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720507250970624,"source_status_id_str":"663720507250970624","source_user_id":2302083340,"source_user_id_str":"2302083340"},{"id":663720497264332800,"id_str":"663720497264332800","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCRpWWEAA1dY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCRpWWEAA1dY4.jpg","url":"https:\/\/t.co\/fOfNrTluz2","display_url":"pic.twitter.com\/fOfNrTluz2","expanded_url":"http:\/\/twitter.com\/bollyobsession\/status\/663720507250970624\/photo\/1","type":"photo","sizes":{"large":{"w":708,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}},"source_status_id":663720507250970624,"source_status_id_str":"663720507250970624","source_user_id":2302083340,"source_user_id_str":"2302083340"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987663"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036684288,"id_str":"663727691036684288","text":"Advance Deepavali wishes to all ma 'niggas' out there. \ud83d\ude4b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624752049,"id_str":"624752049","name":"\u5350 \u03b73\u044f\u2202\u0443\u04320\u0443\u0455\u03c94g \u5350\n","screen_name":"neerdyyyyyyyyy","location":"Klang","url":"https:\/\/www.facebook.com\/nerdyboyswag4","description":"\u0e04ll \u0e4f\u0166 t\u0452\u0454\u0e23\u0454 \u0e23\u0e22\u03c2\u043a\u0454\u0433\u0e23 \u0e04\u0e40\u0e20't \u0e23\u0452\u0e40t t\u0e4f \u0e53\u0454!","protected":false,"verified":false,"followers_count":211,"friends_count":373,"listed_count":0,"favourites_count":1074,"statuses_count":4124,"created_at":"Mon Jul 02 13:36:46 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E54","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510533986020380672\/qT9Uuv8g.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510533986020380672\/qT9Uuv8g.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617754982087921664\/ChqkLlXF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617754982087921664\/ChqkLlXF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624752049\/1410555882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691028303872,"id_str":"663727691028303872","text":"@ChimmyAnand @oyunbatshonkhor @Odkhuu_D @ebmbe @DaagiiGM \u0445\u0430\u0440\u0438\u043d \u0442\u044d\u0445\u0445. \u0413\u044d\u0445\u0434\u044d\u044d \u0437\u0430\u0433\u0430\u0441\u043d\u044b \u043d\u04af\u04af\u0434\u043b\u0438\u0439\u043d \u0441\u0443\u0432\u0430\u0433\u0433\u04af\u0439 \u0433\u044d\u0441\u044d\u043d \u0448\u04af\u04af. \u042d\u043d\u0438\u0439\u043d \u0423\u0426\u0421 \u0430\u043d\u0445\u0430\u0430\u0440\u043d\u0430 \u0431\u0438\u0437 \u0434\u044d\u044d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727269882368002,"in_reply_to_status_id_str":"663727269882368002","in_reply_to_user_id":626581872,"in_reply_to_user_id_str":"626581872","in_reply_to_screen_name":"ChimmyAnand","user":{"id":3090695857,"id_str":"3090695857","name":"\u0425\u043e\u0433\u0433\u04af\u0439 \u041c\u041d\u0413 \u0431\u0430\u0439\u0433\u0430\u043b\u044c","screen_name":"KarStark_North","location":"ulaanbaatar,mongolia","url":null,"description":null,"protected":false,"verified":false,"followers_count":1879,"friends_count":2303,"listed_count":1,"favourites_count":1988,"statuses_count":1068,"created_at":"Mon Mar 16 19:04:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090695857\/1433931568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChimmyAnand","name":"\u0427\u041e\u0413\u041b\u041e\u0413 \u0427\u041e\u0413\u041b\u041e\u0413","id":626581872,"id_str":"626581872","indices":[0,12]},{"screen_name":"oyunbatshonkhor","name":"\u041e\u044e\u0443\u043d\u0431\u0430\u0442","id":1638277753,"id_str":"1638277753","indices":[13,29]},{"screen_name":"Odkhuu_D","name":"\u0414\u04af\u0440\u0437\u044d\u044d\u0433\u0438\u0439\u043d \u041e\u0434\u0445\u04af\u04af","id":538727067,"id_str":"538727067","indices":[30,39]},{"screen_name":"ebmbe","name":"\u0428\u0438\u043d\u044d\u043d\u0438\u0439\u0441\u043b\u044d\u043b","id":708225264,"id_str":"708225264","indices":[40,46]},{"screen_name":"DaagiiGM","name":"?","id":449567292,"id_str":"449567292","indices":[47,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079987662"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691015831552,"id_str":"663727691015831552","text":"ID: 50788897 #pixiv https:\/\/t.co\/yPtVh7HmD2","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3088001157,"id_str":"3088001157","name":"Yumi-\u3086\u3046\u307f \u2640\u25d5\u203f\u25d5\u2640","screen_name":"Yumi69x","location":"\u65e5\u672c \u6771\u4eac\u90fd","url":"http:\/\/ecchixepic69.tumblr.com\/","description":"\u2640 \u79c1\u306f24\u6b73\u3067\u3059 #Ecchi l #Hentai l #Anime l #Cosplayer l #\u304a\u3063\u3071\u3044 \u500b\u4eba\u7684\u306a\u3044\u304f\u3064\u304b\u306e\u79c1\u306e\u5199\u771f\u304c[18+RP]\u306f\u30d0\u30c3\u30af\u5f93\u3046 #NSFW \u306e\u305f\u3081\u306b\u79c1\u306e\u5199\u771f\u3092RT\u95a2\u9023 I Tweet 24\/7 Anime Related And Ecchi.","protected":false,"verified":false,"followers_count":2873,"friends_count":683,"listed_count":24,"favourites_count":1823,"statuses_count":22094,"created_at":"Thu Mar 12 05:37:46 +0000 2015","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625956775951347712\/5WWl9Xsc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625956775951347712\/5WWl9Xsc.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660653211049701376\/-wkOC-9O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660653211049701376\/-wkOC-9O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3088001157\/1438021748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pixiv","indices":[13,19]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725320915275778,"id_str":"663725320915275778","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqa2WUAIa9EA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqa2WUAIa9EA.jpg","url":"https:\/\/t.co\/yPtVh7HmD2","display_url":"pic.twitter.com\/yPtVh7HmD2","expanded_url":"http:\/\/twitter.com\/PixivPics\/status\/663725321489932288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":469,"resize":"fit"},"large":{"w":1024,"h":1412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":827,"resize":"fit"}},"source_status_id":663725321489932288,"source_status_id_str":"663725321489932288","source_user_id":2562561230,"source_user_id_str":"2562561230"}]},"extended_entities":{"media":[{"id":663725320915275778,"id_str":"663725320915275778","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGqa2WUAIa9EA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGqa2WUAIa9EA.jpg","url":"https:\/\/t.co\/yPtVh7HmD2","display_url":"pic.twitter.com\/yPtVh7HmD2","expanded_url":"http:\/\/twitter.com\/PixivPics\/status\/663725321489932288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":469,"resize":"fit"},"large":{"w":1024,"h":1412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":827,"resize":"fit"}},"source_status_id":663725321489932288,"source_status_id_str":"663725321489932288","source_user_id":2562561230,"source_user_id_str":"2562561230"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079987659"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691019894785,"id_str":"663727691019894785","text":"goodnight naaa \ud83d\ude2e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2425208270,"id_str":"2425208270","name":"JA's","screen_name":"leialapag","location":"Jimmy's country","url":null,"description":"sometimes its best to keep shit to yourself. \/\/ tamaraw \u00d7\u00d7 jimmy ft darcy oake","protected":false,"verified":false,"followers_count":583,"friends_count":540,"listed_count":2,"favourites_count":6797,"statuses_count":10677,"created_at":"Thu Apr 03 07:19:41 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490757714767654912\/7O2PJeHM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490757714767654912\/7O2PJeHM.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660685264444981248\/s3PhGYlY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660685264444981248\/s3PhGYlY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2425208270\/1443887466","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987660"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691040845824,"id_str":"663727691040845824","text":"RT @WSHHFANS: \"What happened to you and _________?\" https:\/\/t.co\/M7qxLqZKc1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059486734,"id_str":"1059486734","name":"jas","screen_name":"jaazztastic","location":"marvins room","url":null,"description":"but did you die?","protected":false,"verified":false,"followers_count":706,"friends_count":374,"listed_count":0,"favourites_count":25742,"statuses_count":14741,"created_at":"Fri Jan 04 03:59:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597614180640755713\/_7j8Hcsc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597614180640755713\/_7j8Hcsc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059486734\/1445735584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:00:22 +0000 2015","id":663657373660282880,"id_str":"663657373660282880","text":"\"What happened to you and _________?\" https:\/\/t.co\/M7qxLqZKc1","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370986902,"id_str":"1370986902","name":"WSHH FANS","screen_name":"WSHHFANS","location":"wshhfansbusiness@gmail.com","url":null,"description":"NOT Affiliated With @WORLDSTAR or Vine. We Do Not Own The Media That Is Posted, Parody . 18+ Content Instagram & Snapchat: WSHHFANS","protected":false,"verified":false,"followers_count":885685,"friends_count":147688,"listed_count":512,"favourites_count":0,"statuses_count":25711,"created_at":"Mon Apr 22 01:48:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370986902\/1444071563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1873,"favorite_count":1924,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M7qxLqZKc1","expanded_url":"http:\/\/vine.co\/v\/eLlh7QY1uWP","display_url":"vine.co\/v\/eLlh7QY1uWP","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M7qxLqZKc1","expanded_url":"http:\/\/vine.co\/v\/eLlh7QY1uWP","display_url":"vine.co\/v\/eLlh7QY1uWP","indices":[52,75]}],"user_mentions":[{"screen_name":"WSHHFANS","name":"WSHH FANS","id":1370986902,"id_str":"1370986902","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987665"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045081088,"id_str":"663727691045081088","text":"\u30d4\u30c3\u30d4\u30b3\u30d4\u30c3\u30d4\u30b3\u9cf4\u3089\u305b\u0669\u0295\u2022\u032b\u0361\u2022\u0294\u06f6\u266a\u30a6\u30a3\u30c3\u30c1\u2606\u30a2\u30af\u30c6\u30a3\u30d3\u30c6\u30a3\u0295\u2022\u032b\u0361\u2022\u0294\u4e09\u0295\u2022\u032b\u0361\u2022\u0294\u266a \uff7c\uff6d\uff6f\uff7c\uff6d\uff6f \u305d\u306e\u65e5\u305d\u306e\u6642 \uff7c\uff6d\uff6f\u4e09\u0295\u2022\u032b\u0361\u2022\u0294 \u266a\u3044\u304d\u304a\u3044\u266a \u0295\u2022\u032b\u0361\u2022\u0294\u4e09\uff7c\uff6d\uff6f\u4e57\u3063\u3066\u3051\u2606\u4e57\u3063\u3066\u3051\u0295\u2022\u032b\u0361\u2606\u5f61 \uff7c\uff6d\uff72\uff70\uff9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408366189,"id_str":"408366189","name":"\u305f\u3089\u304a","screen_name":"taraoman","location":"\u6d77\u3092\u596a\u308f\u308c\u305f\u57fc\u7389\u770c","url":null,"description":"\u4eca\u65e5\u30821\u65e5\u304c\u3093\u3070\u308b\u305e\u3044\uff01\uff01","protected":false,"verified":false,"followers_count":146,"friends_count":157,"listed_count":5,"favourites_count":1504,"statuses_count":35287,"created_at":"Wed Nov 09 10:08:17 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653556681855471617\/dKpIPf-E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653556681855471617\/dKpIPf-E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408366189\/1442197761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987666"} +{"delete":{"status":{"id":661833350403850240,"id_str":"661833350403850240","user_id":41948900,"user_id_str":"41948900"},"timestamp_ms":"1447079987807"}} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691007467520,"id_str":"663727691007467520","text":"candy bar dulces, postres o mixta pide tu cotizaci\u00f3n totalmente tematizada","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399141662,"id_str":"399141662","name":"Mich rg","screen_name":"michriog","location":null,"url":null,"description":"mi pasi\u00f3n la ilustraci\u00f3n","protected":false,"verified":false,"followers_count":62,"friends_count":237,"listed_count":0,"favourites_count":31,"statuses_count":4931,"created_at":"Thu Oct 27 01:51:41 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544142077567987712\/U1igZpI0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544142077567987712\/U1igZpI0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/399141662\/1445658953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079987657"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691015802880,"id_str":"663727691015802880","text":"Climate change could create submerge 500 million homes https:\/\/t.co\/ezOqLItJoh #julishwa #TrendingNews #NewsStream","source":"\u003ca href=\"http:\/\/julishwa.com\" rel=\"nofollow\"\u003eJulishwaNews\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2381875884,"id_str":"2381875884","name":"The Informer","screen_name":"julishwa","location":"Kenya","url":"http:\/\/julishwa.com","description":"#julishwa || #BeInformed || #TheInformer || #TrendingNews || #NewsStream || #DandiaFollowers || http:\/\/goo.gl\/R9cDCy | http:\/\/goo.gl\/s7R4aw","protected":false,"verified":false,"followers_count":1589,"friends_count":1937,"listed_count":46,"favourites_count":67,"statuses_count":4981,"created_at":"Mon Mar 10 09:45:56 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644279107883175936\/Z5etrYbv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644279107883175936\/Z5etrYbv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2381875884\/1442439790","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"julishwa","indices":[79,88]},{"text":"TrendingNews","indices":[89,102]},{"text":"NewsStream","indices":[103,114]}],"urls":[{"url":"https:\/\/t.co\/ezOqLItJoh","expanded_url":"http:\/\/rss.cnn.com\/c\/35492\/f\/676965\/s\/4b59e882\/sc\/31\/l\/0L0Scnn0N0C20A150C110C0A90Cworld0Cclimate0Echange0Ecreate0Epoor0Ehomeless0Cindex0Bhtml0Deref0Frss0Iworld\/story01.htm","display_url":"rss.cnn.com\/c\/35492\/f\/6769\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987659"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045216256,"id_str":"663727691045216256","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/RHMilI4p4X","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210907411,"id_str":"210907411","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062b\u0628\u064a\u062a\u064a","screen_name":"asyer0","location":"\u0645\u0646\u0647\u062c \u0627\u0647\u0644 \u0627\u0644\u0633\u0646\u0629 \u0648\u0627\u0644\u062c\u0645\u0627\u0639\u0629 IN USA","url":"http:\/\/www.dd-sunnah.net\/forum\/index.php","description":"\u0627\u0644\u0644\u0647\u0645 \u0635\u0644 \u0648\u0633\u0644\u0645 \u0639\u0644\u0649 \u0645\u062d\u0645\u062f \u0648\u0639\u0644\u0649 \u0627\u0644 \u0645\u062d\u0645\u062f \u0643\u0645\u0627 \u0635\u0644\u064a\u062a \u0639\u0644\u0649 \u0627\u0628\u0631\u0627\u0647\u064a\u0645 \u0648\u0639\u0644\u0649 \u0627\u0644 \u0627\u0628\u0631\u0627\u0647\u064a\u0645 \u0627\u0646\u0643 \u062d\u0645\u064a\u062f \u0645\u062c\u064a\u062f ( \u0633\u0644\u0641\u064a \u0627\u0644\u0645\u0646\u0647\u062c ) \u0648\u0636\u062f \u0627\u0644\u0627\u062e\u0648\u0627\u0646","protected":false,"verified":false,"followers_count":841,"friends_count":52,"listed_count":6,"favourites_count":2995,"statuses_count":73265,"created_at":"Mon Nov 01 19:13:26 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432829627870887936\/IUwrfZcW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432829627870887936\/IUwrfZcW.jpeg","profile_background_tile":false,"profile_link_color":"FD1B1B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3C1C1C","profile_text_color":"8F2E2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502145580353986562\/YQ2fjuYm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502145580353986562\/YQ2fjuYm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210907411\/1392254675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RHMilI4p4X","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079987666"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045146624,"id_str":"663727691045146624","text":"@AstroZombieHL well yeah i want to know why","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709410460434432,"in_reply_to_status_id_str":"663709410460434432","in_reply_to_user_id":41002503,"in_reply_to_user_id_str":"41002503","in_reply_to_screen_name":"AstroZombieHL","user":{"id":1570922425,"id_str":"1570922425","name":"on my way to niall","screen_name":"zourrysept","location":"harry's bottom lip","url":"http:\/\/dimplesonfire.tumblr.com","description":"I'm way smarter on @whathappen1d","protected":false,"verified":false,"followers_count":874,"friends_count":350,"listed_count":17,"favourites_count":9495,"statuses_count":34902,"created_at":"Fri Jul 05 16:45:04 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470282084959797248\/LuprxW7w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470282084959797248\/LuprxW7w.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382555190775808\/7P6cOMWT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382555190775808\/7P6cOMWT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570922425\/1446997744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AstroZombieHL","name":"esther hates college","id":41002503,"id_str":"41002503","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987666"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691011493889,"id_str":"663727691011493889","text":"@gatashi_ \n\u304c\u305f\u3057\u3002\n\u76ee\u3001\u3042\u3051\u3066\u203c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722987405750273,"in_reply_to_status_id_str":"663722987405750273","in_reply_to_user_id":2574745742,"in_reply_to_user_id_str":"2574745742","in_reply_to_screen_name":"gatashi_","user":{"id":606145490,"id_str":"606145490","name":"\u3082\u308a\u3072\u3067","screen_name":"hide3Xox","location":null,"url":null,"description":"\u91d1\u9aea\u4e2d 11\u6708 \u5287\u56e3\u30a2\u30cb\u30de\u30eb\u738b\u5b50\u51fa\u6f14","protected":false,"verified":false,"followers_count":332,"friends_count":206,"listed_count":8,"favourites_count":40,"statuses_count":12065,"created_at":"Tue Jun 12 08:32:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637179012691836928\/6TMVGU9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637179012691836928\/6TMVGU9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606145490\/1429429381","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gatashi_","name":"\u91ce\u65b9\u3053\u306f\u308b@\u304c\u305f\u3057","id":2574745742,"id_str":"2574745742","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987658"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691045015552,"id_str":"663727691045015552","text":"RT @cbr1207: \ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90 https:\/\/t.co\/9m00gusK6B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553528270,"id_str":"1553528270","name":"\u8d64\u3044\u30ab\u30e9\u30b9","screen_name":"Tsexy4110","location":"\u672d\u5e4c\u5e02\u539a\u5225\u533a","url":null,"description":"23\u2642\u3002\u30bb\u30c3\u30af\u30b9\u3057\u3088\u3046\u3088\uff01\u5317\u6d77\u9053\u3001\u672d\u5e4c\u3001\u8fd1\u5834\u306e\u65b9\u306f\u662f\u975e\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01\u30a8\u30c3\u30c1\u306a\u5973\u6027\u5927\u6b53\u8fce\u3002\u697d\u3057\u304f\u904a\u3073\u307e\u3057\u3087\uff01xvideos\u3067\u629c\u304f\u304b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u306e\u6bce\u65e5\u263bTwitter\u5916\u306e\u95a2\u4fc2\uff1f\u30a2\u30ea\u3067\u3057\u3087\uff1f","protected":false,"verified":false,"followers_count":314,"friends_count":266,"listed_count":1,"favourites_count":696,"statuses_count":4320,"created_at":"Fri Jun 28 16:44:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000373633216\/87ff19cc6c3e1c8808cbfde31bd50f31_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000373633216\/87ff19cc6c3e1c8808cbfde31bd50f31_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553528270\/1377677931","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:47:08 +0000 2015","id":663714439988801536,"id_str":"663714439988801536","text":"\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83d\udcae\ud83c\udf44\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90\ud83c\udf44\ud83d\udc90 https:\/\/t.co\/9m00gusK6B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706399092,"id_str":"2706399092","name":"\u2661\u266a\u2661ROUZ\u2661\u266a\u2661","screen_name":"cbr1207","location":null,"url":null,"description":"\u7d20\u6575\u306a\u2661\u3048\u3063\u30c1\u753b\u50cf\u697d\u3057\u3093\u3067\u306d\u266a \u25c7\u30ed\u30b0\u30a4\u30f3\u304c\u51fa\u6765\u306a\u304f\u306a\u3063\u3066\u518d\u767b\u9332\u3057\u307e\u3057\u305f\u3001\u307e\u305f\u3088\u308d\u3057\u304f\u306d\u3047\u2661\u266a\u2661 \u2661Thank You follow me\u2661","protected":false,"verified":false,"followers_count":44815,"friends_count":1831,"listed_count":292,"favourites_count":74915,"statuses_count":54561,"created_at":"Mon Aug 04 11:52:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510654938301493248\/uCXfGi3W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510654938301493248\/uCXfGi3W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2706399092\/1407161048","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":19,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663714377007173632,"id_str":"663714377007173632","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714377007173632,"id_str":"663714377007173632","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}},{"id":663714391737561088,"id_str":"663714391737561088","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8uQfU8AAln6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8uQfU8AAln6G.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}},{"id":663714411484352513,"id_str":"663714411484352513","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8vaDVEAEe7xt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8vaDVEAEe7xt.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}},{"id":663714424872550401,"id_str":"663714424872550401","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8wL7UwAEAZUX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8wL7UwAEAZUX.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cbr1207","name":"\u2661\u266a\u2661ROUZ\u2661\u266a\u2661","id":2706399092,"id_str":"2706399092","indices":[3,11]}],"symbols":[],"media":[{"id":663714377007173632,"id_str":"663714377007173632","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663714439988801536,"source_status_id_str":"663714439988801536","source_user_id":2706399092,"source_user_id_str":"2706399092"}]},"extended_entities":{"media":[{"id":663714377007173632,"id_str":"663714377007173632","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8tZnVEAAGsZ5.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663714439988801536,"source_status_id_str":"663714439988801536","source_user_id":2706399092,"source_user_id_str":"2706399092"},{"id":663714391737561088,"id_str":"663714391737561088","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8uQfU8AAln6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8uQfU8AAln6G.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663714439988801536,"source_status_id_str":"663714439988801536","source_user_id":2706399092,"source_user_id_str":"2706399092"},{"id":663714411484352513,"id_str":"663714411484352513","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8vaDVEAEe7xt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8vaDVEAEe7xt.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663714439988801536,"source_status_id_str":"663714439988801536","source_user_id":2706399092,"source_user_id_str":"2706399092"},{"id":663714424872550401,"id_str":"663714424872550401","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8wL7UwAEAZUX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8wL7UwAEAZUX.jpg","url":"https:\/\/t.co\/9m00gusK6B","display_url":"pic.twitter.com\/9m00gusK6B","expanded_url":"http:\/\/twitter.com\/cbr1207\/status\/663714439988801536\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":599,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663714439988801536,"source_status_id_str":"663714439988801536","source_user_id":2706399092,"source_user_id_str":"2706399092"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079987666"} +{"delete":{"status":{"id":662059972855885824,"id_str":"662059972855885824","user_id":3978757514,"user_id_str":"3978757514"},"timestamp_ms":"1447079987859"}} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691011502080,"id_str":"663727691011502080","text":"@9mijoo4__ weh emang enak itu mah :3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663674599427604480,"in_reply_to_status_id_str":"663674599427604480","in_reply_to_user_id":3688560254,"in_reply_to_user_id_str":"3688560254","in_reply_to_screen_name":"9mijoo4__","user":{"id":3012406572,"id_str":"3012406572","name":"chona[\u2744]","screen_name":"veltyeriv","location":"#SMOFC #TEAMJAVA #iKONICTEAM ","url":null,"description":"Hi! Revel 'Yeri' replica, known as chona | 99L | 3\u2744 | prev.kei.jin.sorn | my bro [jungkook] #SFAMS #REVEL","protected":false,"verified":false,"followers_count":1805,"friends_count":1713,"listed_count":4,"favourites_count":73,"statuses_count":13303,"created_at":"Sat Feb 07 14:24:41 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660102213730066433\/riNL3mTp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660102213730066433\/riNL3mTp.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663639237808418817\/wLcoaDWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663639237808418817\/wLcoaDWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012406572\/1446215450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9mijoo4__","name":"\u00bbI Miju\u00ab","id":3688560254,"id_str":"3688560254","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079987658"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036782592,"id_str":"663727691036782592","text":"Graphic video shows college student beaten, Tazed by officer https:\/\/t.co\/ZRMACXaJKc via @houstonchron","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380465962,"id_str":"380465962","name":"Tom Gallman","screen_name":"tomgallman","location":"USA","url":null,"description":"National, World, Sports, Entertainment, Technology, etc. All kinds of News, Features, Articles and Opinions. An occasional Quote. And ebooks I enjoyed.","protected":false,"verified":false,"followers_count":6846,"friends_count":6959,"listed_count":49,"favourites_count":29,"statuses_count":11691,"created_at":"Mon Sep 26 18:02:14 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601423462742171649\/0y-26VpD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601423462742171649\/0y-26VpD_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZRMACXaJKc","expanded_url":"http:\/\/www.chron.com\/news\/article\/Graphic-video-shows-college-student-beaten-Tazed-6619282.php?cmpid=twitter-mobile","display_url":"chron.com\/news\/article\/G\u2026","indices":[61,84]}],"user_mentions":[{"screen_name":"HoustonChron","name":"Houston Chronicle","id":8940342,"id_str":"8940342","indices":[89,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691028373504,"id_str":"663727691028373504","text":"https:\/\/t.co\/MBk2GatDYF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3542767755,"id_str":"3542767755","name":"Yahya Buyuk","screen_name":"YahyaBuyuk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":51,"listed_count":0,"favourites_count":17,"statuses_count":777,"created_at":"Fri Sep 04 08:22:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662736932221292544\/8DjCjXjK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662736932221292544\/8DjCjXjK_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0184147101a98fcf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0184147101a98fcf.json","place_type":"city","name":"\u0130zmir","full_name":"\u0130zmir, T\u00fcrkiye","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[26.723167,38.283203],[26.723167,38.532658],[27.289855,38.532658],[27.289855,38.283203]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727676247576576,"id_str":"663727676247576576","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzhJVEAA45kf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzhJVEAA45kf.jpg","url":"https:\/\/t.co\/MBk2GatDYF","display_url":"pic.twitter.com\/MBk2GatDYF","expanded_url":"http:\/\/twitter.com\/YahyaBuyuk\/status\/663727691028373504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727676247576576,"id_str":"663727676247576576","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzhJVEAA45kf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzhJVEAA45kf.jpg","url":"https:\/\/t.co\/MBk2GatDYF","display_url":"pic.twitter.com\/MBk2GatDYF","expanded_url":"http:\/\/twitter.com\/YahyaBuyuk\/status\/663727691028373504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079987662"} +{"delete":{"status":{"id":432330053255319553,"id_str":"432330053255319553","user_id":712582189,"user_id_str":"712582189"},"timestamp_ms":"1447079987857"}} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691024089088,"id_str":"663727691024089088","text":"@vickyhiltonk hey hey I've followed him. Thanks for the information maybe l will like him :)","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726574865223685,"in_reply_to_status_id_str":"663726574865223685","in_reply_to_user_id":2232478016,"in_reply_to_user_id_str":"2232478016","in_reply_to_screen_name":"vickyhiltonk","user":{"id":1126187798,"id_str":"1126187798","name":"Putri","screen_name":"Putriwidyaning","location":null,"url":null,"description":"I'm just a fangirl, bands is my life. Especially 5SOS, love you a lot, more than I love myself","protected":false,"verified":false,"followers_count":1174,"friends_count":1020,"listed_count":1,"favourites_count":4101,"statuses_count":4976,"created_at":"Sun Jan 27 20:51:53 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D6AE5E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000076363144\/c03be362ef08836fc5036bb9f74e794b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000076363144\/c03be362ef08836fc5036bb9f74e794b.jpeg","profile_background_tile":false,"profile_link_color":"1FF0F0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645529626790359041\/WLu-MYMc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645529626790359041\/WLu-MYMc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1126187798\/1439093800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vickyhiltonk","name":"Vicky Hilton","id":2232478016,"id_str":"2232478016","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987661"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036684289,"id_str":"663727691036684289","text":"you are kai right? kai matjyo? lol https:\/\/t.co\/uLRFMCHXfz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160069623,"id_str":"160069623","name":"\uc7a5\uc2b9\uc5f0\/\/Abby,Jang","screen_name":"amjunluck","location":"Suhosmile, Chenvoice","url":"http:\/\/ask.fm\/amjunluck","description":"Chen+Suho+Baekhyun=100%\u2665Suchen Chanbaek\u2665SuChen_ism\u2665DAY6\u2665Luhan\u2665CHENUNION_INA\u2764SEVENTEEN\u2764","protected":false,"verified":false,"followers_count":592,"friends_count":369,"listed_count":10,"favourites_count":256,"statuses_count":54366,"created_at":"Sun Jun 27 03:19:38 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620598563068719104\/w6RZHnpZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620598563068719104\/w6RZHnpZ.jpg","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655013734394368001\/sMltSe9E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655013734394368001\/sMltSe9E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160069623\/1437120898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727677262528512,"id_str":"663727677262528512","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzk7UAAA5WkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzk7UAAA5WkQ.jpg","url":"https:\/\/t.co\/uLRFMCHXfz","display_url":"pic.twitter.com\/uLRFMCHXfz","expanded_url":"http:\/\/twitter.com\/amjunluck\/status\/663727691036684289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727677262528512,"id_str":"663727677262528512","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzk7UAAA5WkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzk7UAAA5WkQ.jpg","url":"https:\/\/t.co\/uLRFMCHXfz","display_url":"pic.twitter.com\/uLRFMCHXfz","expanded_url":"http:\/\/twitter.com\/amjunluck\/status\/663727691036684289\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691032477696,"id_str":"663727691032477696","text":"Does your soul feel anxiety? Take the quiz: https:\/\/t.co\/umg8F6g82f https:\/\/t.co\/XHsYPkfo8o","source":"\u003ca href=\"http:\/\/www.noname.com\" rel=\"nofollow\"\u003e4th Version TP Trial Project\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2160614839,"id_str":"2160614839","name":"Lori\tMessing","screen_name":"LoriVeryMessing","location":null,"url":null,"description":"Nothing great was ever achieved without enthusiasm. \u2014 Ralph Waldo Emerson","protected":false,"verified":false,"followers_count":547,"friends_count":1325,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Mon Oct 28 10:12:30 +0000 2013","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550948722587074560\/xksuCOFp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550948722587074560\/xksuCOFp.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550948167449976834\/-xbayHI7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550948167449976834\/-xbayHI7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2160614839\/1420191288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/umg8F6g82f","expanded_url":"http:\/\/bit.ly\/1I3RItY","display_url":"bit.ly\/1I3RItY","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663727690856304640,"id_str":"663727690856304640","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0XkUkAApkAr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0XkUkAApkAr.jpg","url":"https:\/\/t.co\/XHsYPkfo8o","display_url":"pic.twitter.com\/XHsYPkfo8o","expanded_url":"http:\/\/twitter.com\/LoriVeryMessing\/status\/663727691032477696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1023,"h":574,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727690856304640,"id_str":"663727690856304640","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0XkUkAApkAr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0XkUkAApkAr.jpg","url":"https:\/\/t.co\/XHsYPkfo8o","display_url":"pic.twitter.com\/XHsYPkfo8o","expanded_url":"http:\/\/twitter.com\/LoriVeryMessing\/status\/663727691032477696\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1023,"h":574,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079987663"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691036651520,"id_str":"663727691036651520","text":"@maro_teentop \n\u30de\u30ed\uff61+\uff9f(\uff9f\u00b4\u0414\uff40\uff9f)\uff9f+\uff61\n\u7d66\u6599\u8cb0\u3046\u3079\u304d\u306d\uff01\uff01 https:\/\/t.co\/5LZ9iiWrwj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723560595099648,"in_reply_to_status_id_str":"663723560595099648","in_reply_to_user_id":1570002943,"in_reply_to_user_id_str":"1570002943","in_reply_to_screen_name":"maro_teentop","user":{"id":573501867,"id_str":"573501867","name":"ANNA","screen_name":"0218_sugar","location":null,"url":null,"description":"\u3068\u308a\u3042\u3048\u305a\u9811\u5f35\u308a\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":114,"friends_count":408,"listed_count":9,"favourites_count":3345,"statuses_count":6411,"created_at":"Mon May 07 08:17:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646678172423970816\/chNZg38R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646678172423970816\/chNZg38R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573501867\/1428822870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maro_teentop","name":"\u307e\u308d","id":1570002943,"id_str":"1570002943","indices":[0,13]}],"symbols":[],"media":[{"id":663727572002304000,"id_str":"663727572002304000","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYItczUcAA01Ik.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYItczUcAA01Ik.jpg","url":"https:\/\/t.co\/5LZ9iiWrwj","display_url":"pic.twitter.com\/5LZ9iiWrwj","expanded_url":"http:\/\/twitter.com\/0218_sugar\/status\/663727691036651520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"large":{"w":1024,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727572002304000,"id_str":"663727572002304000","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYItczUcAA01Ik.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYItczUcAA01Ik.jpg","url":"https:\/\/t.co\/5LZ9iiWrwj","display_url":"pic.twitter.com\/5LZ9iiWrwj","expanded_url":"http:\/\/twitter.com\/0218_sugar\/status\/663727691036651520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"large":{"w":1024,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079987664"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691032432640,"id_str":"663727691032432640","text":"Ok ra na masuya dai di gihapon ko kalupig sa imong kagwapa https:\/\/t.co\/LFweFRZiNt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":261630246,"id_str":"261630246","name":"crapmantha","screen_name":"Shwamantha","location":"the fridge","url":null,"description":"eats eos lipbalm","protected":false,"verified":false,"followers_count":223,"friends_count":155,"listed_count":5,"favourites_count":72,"statuses_count":12647,"created_at":"Sun Mar 06 10:26:28 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A088B3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609749078491041794\/fWNN6cqy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609749078491041794\/fWNN6cqy.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"636566","profile_sidebar_fill_color":"8F8D8F","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660500947211128832\/kR05dLuW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660500947211128832\/kR05dLuW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/261630246\/1446313502","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727668139941888,"id_str":"663727668139941888","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzC8UYAANbfo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzC8UYAANbfo.jpg","url":"https:\/\/t.co\/LFweFRZiNt","display_url":"pic.twitter.com\/LFweFRZiNt","expanded_url":"http:\/\/twitter.com\/Shwamantha\/status\/663727691032432640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727668139941888,"id_str":"663727668139941888","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzC8UYAANbfo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzC8UYAANbfo.jpg","url":"https:\/\/t.co\/LFweFRZiNt","display_url":"pic.twitter.com\/LFweFRZiNt","expanded_url":"http:\/\/twitter.com\/Shwamantha\/status\/663727691032432640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079987663"} +{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691011637248,"id_str":"663727691011637248","text":"TANTA iMPORTANCIA LE IVA A DAR! para un poco","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253313326,"id_str":"253313326","name":"loree","screen_name":"letitbx","location":"BAIRES","url":null,"description":"@DevinAI12 & @clarkbeckham follows \u007b @blipofgreys \u007d","protected":false,"verified":false,"followers_count":4701,"friends_count":4368,"listed_count":5,"favourites_count":68,"statuses_count":19722,"created_at":"Thu Feb 17 00:19:39 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/485512708662390785\/2rzqO0QP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/485512708662390785\/2rzqO0QP.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628009884190146560\/vbR3iXdD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628009884190146560\/vbR3iXdD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253313326\/1425768634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079987658"} +{"delete":{"status":{"id":662610177456107520,"id_str":"662610177456107520","user_id":207071957,"user_id_str":"207071957"},"timestamp_ms":"1447079988073"}} +{"delete":{"status":{"id":663224491972104192,"id_str":"663224491972104192","user_id":65170827,"user_id_str":"65170827"},"timestamp_ms":"1447079988104"}} +{"delete":{"status":{"id":663726013306638336,"id_str":"663726013306638336","user_id":2306806766,"user_id_str":"2306806766"},"timestamp_ms":"1447079988532"}} +{"delete":{"status":{"id":661439429739868160,"id_str":"661439429739868160","user_id":1168037394,"user_id_str":"1168037394"},"timestamp_ms":"1447079988536"}} +{"delete":{"status":{"id":663717758912192513,"id_str":"663717758912192513","user_id":2383274262,"user_id_str":"2383274262"},"timestamp_ms":"1447079988572"}} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695210127360,"id_str":"663727695210127360","text":"RT @AngPoetNyo: Papano ginagawa ang famous EGG tart sa Macau? Here's how---#ALDUBMissingRing https:\/\/t.co\/yjF3hGTkG2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3772615587,"id_str":"3772615587","name":"jameby campana","screen_name":"jamebycampana","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":68,"listed_count":2,"favourites_count":3603,"statuses_count":2870,"created_at":"Fri Sep 25 16:12:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657592391139008512\/noVtMPtA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657592391139008512\/noVtMPtA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3772615587\/1445617217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:39 +0000 2015","id":663723881048338432,"id_str":"663723881048338432","text":"Papano ginagawa ang famous EGG tart sa Macau? Here's how---#ALDUBMissingRing https:\/\/t.co\/yjF3hGTkG2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263292416,"id_str":"1263292416","name":"Joey de Leon","screen_name":"AngPoetNyo","location":null,"url":null,"description":"Ang official Twitter ng poet n'yo.","protected":false,"verified":true,"followers_count":1293201,"friends_count":15,"listed_count":609,"favourites_count":8995,"statuses_count":3049,"created_at":"Wed Mar 13 01:38:42 +0000 2013","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/813220480\/cc63c575b1874796c0c130d115d550f6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/813220480\/cc63c575b1874796c0c130d115d550f6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647804081432432640\/rbdrJjMw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647804081432432640\/rbdrJjMw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263292416\/1439810625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":359,"favorite_count":665,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[59,76]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723880763162624,"id_str":"663723880763162624","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","url":"https:\/\/t.co\/yjF3hGTkG2","display_url":"pic.twitter.com\/yjF3hGTkG2","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663723881048338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723880763162624,"id_str":"663723880763162624","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","url":"https:\/\/t.co\/yjF3hGTkG2","display_url":"pic.twitter.com\/yjF3hGTkG2","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663723881048338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[75,92]}],"urls":[],"user_mentions":[{"screen_name":"AngPoetNyo","name":"Joey de Leon","id":1263292416,"id_str":"1263292416","indices":[3,14]}],"symbols":[],"media":[{"id":663723880763162624,"id_str":"663723880763162624","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","url":"https:\/\/t.co\/yjF3hGTkG2","display_url":"pic.twitter.com\/yjF3hGTkG2","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663723881048338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663723881048338432,"source_status_id_str":"663723881048338432","source_user_id":1263292416,"source_user_id_str":"1263292416"}]},"extended_entities":{"media":[{"id":663723880763162624,"id_str":"663723880763162624","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFWl3VAAAx2_3.jpg","url":"https:\/\/t.co\/yjF3hGTkG2","display_url":"pic.twitter.com\/yjF3hGTkG2","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663723881048338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663723881048338432,"source_status_id_str":"663723881048338432","source_user_id":1263292416,"source_user_id_str":"1263292416"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079988659"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695214354434,"id_str":"663727695214354434","text":"RT @AutomobilBlog: Sicher durch den Winter \u2013 mit Armin Schwarz https:\/\/t.co\/dOz3hm3WDu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149691774,"id_str":"4149691774","name":"electro.mobil","screen_name":"MobilElectro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":566,"listed_count":0,"favourites_count":0,"statuses_count":44,"created_at":"Mon Nov 09 14:15:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 11:41:04 +0000 2015","id":661146000166252544,"id_str":"661146000166252544","text":"Sicher durch den Winter \u2013 mit Armin Schwarz https:\/\/t.co\/dOz3hm3WDu","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6242032,"id_str":"6242032","name":"Automobil-Blog.de","screen_name":"AutomobilBlog","location":"Deutschland","url":"http:\/\/www.automobil-blog.de","description":"Moritz Nolte","protected":false,"verified":false,"followers_count":4390,"friends_count":657,"listed_count":108,"favourites_count":10,"statuses_count":2640,"created_at":"Tue May 22 19:38:25 +0000 2007","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/138682016\/101.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/138682016\/101.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439093040\/Gemballa_Mistrale_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439093040\/Gemballa_Mistrale_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dOz3hm3WDu","expanded_url":"http:\/\/dlvr.it\/Cd5bGj","display_url":"dlvr.it\/Cd5bGj","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dOz3hm3WDu","expanded_url":"http:\/\/dlvr.it\/Cd5bGj","display_url":"dlvr.it\/Cd5bGj","indices":[63,86]}],"user_mentions":[{"screen_name":"AutomobilBlog","name":"Automobil-Blog.de","id":6242032,"id_str":"6242032","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079988660"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695239520257,"id_str":"663727695239520257","text":"Tambien pedios disculpas por haber subido tan tarde ayer la lista de la nueva semana. Por eso, hoy teneis de plazo hasta las 23h.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3906443595,"id_str":"3906443595","name":"Fantasy FVPA","screen_name":"FVPAFantasy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":134,"friends_count":228,"listed_count":0,"favourites_count":2,"statuses_count":36,"created_at":"Fri Oct 09 06:26:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652373603057598464\/vTpCkobq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652373603057598464\/vTpCkobq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3906443595\/1444372961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988666"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218524160,"id_str":"663727695218524160","text":"Ugh \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223169657,"id_str":"223169657","name":"Kerry","screen_name":"kerryniamhfish","location":null,"url":"http:\/\/instagram.com\/kerryniamhfish","description":null,"protected":false,"verified":false,"followers_count":730,"friends_count":443,"listed_count":7,"favourites_count":483,"statuses_count":16269,"created_at":"Sun Dec 05 16:14:39 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437682916164767744\/uOkYaZkt.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437682916164767744\/uOkYaZkt.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659043191019151360\/XM-6s7pe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659043191019151360\/XM-6s7pe_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695205830656,"id_str":"663727695205830656","text":"Waktunya bermimpi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1495808989,"id_str":"1495808989","name":"soje","screen_name":"inisuzi","location":null,"url":null,"description":"@oshxov","protected":false,"verified":false,"followers_count":1026,"friends_count":1175,"listed_count":2,"favourites_count":229,"statuses_count":12725,"created_at":"Sun Jun 09 14:48:20 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610686661387653120\/mvMf85_8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610686661387653120\/mvMf85_8.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663230079984529408\/zRZWIX2I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663230079984529408\/zRZWIX2I_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079988658"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695214309376,"id_str":"663727695214309376","text":"We will not support a social media assault against authority","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180015153,"id_str":"4180015153","name":"SilentMizzou","screen_name":"SilentMizzou","location":null,"url":null,"description":"Anonymous Student Majority\/ One Mizzou against extortionists\/ Silent due to racist persecution","protected":false,"verified":false,"followers_count":0,"friends_count":88,"listed_count":0,"favourites_count":0,"statuses_count":11,"created_at":"Mon Nov 09 14:12:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722009176633344\/RivN5dNS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722009176633344\/RivN5dNS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988660"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695226937344,"id_str":"663727695226937344","text":"RT @monteirobieel: GE j\u00e1 era pra ter come\u00e7ado pq a mat\u00e9ria do MENG\u00c3O tem que durar uns 25 min no m\u00ednimo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3333222082,"id_str":"3333222082","name":"Flamengata \u264c","screen_name":"MulambaOficial","location":"Ra\u00e7a Rubro Negra \u2764\u270c","url":null,"description":"Eu teria um desgosto profundo, se faltasse o FLAMENGO no mundo \u26bd\u2665 \/ Snap: mafer7linda","protected":false,"verified":false,"followers_count":400,"friends_count":293,"listed_count":0,"favourites_count":2527,"statuses_count":8027,"created_at":"Thu Jun 18 18:45:12 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652091493713207296\/QqcEH-Cq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652091493713207296\/QqcEH-Cq.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657754918191800320\/3fd1FZah_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657754918191800320\/3fd1FZah_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3333222082\/1446304849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:37 +0000 2015","id":663726390651523072,"id_str":"663726390651523072","text":"GE j\u00e1 era pra ter come\u00e7ado pq a mat\u00e9ria do MENG\u00c3O tem que durar uns 25 min no m\u00ednimo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80930537,"id_str":"80930537","name":"Gabiguel Montgueiro\u264c","screen_name":"monteirobieel","location":"Rio de Janeiro","url":"https:\/\/instagram.com\/monteirobieel\/","description":"Flamengo \u00e9 minha vida\u300aCRFCBs \u2764\u300b| snap: bieelm","protected":false,"verified":false,"followers_count":1016,"friends_count":544,"listed_count":6,"favourites_count":23807,"statuses_count":41800,"created_at":"Thu Oct 08 20:05:06 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"59472F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545628585\/x201bf4f9f56ad0b97eaca4d675045ca.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545628585\/x201bf4f9f56ad0b97eaca4d675045ca.jpg","profile_background_tile":false,"profile_link_color":"FF000D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662436728104423424\/uFFFSXEC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662436728104423424\/uFFFSXEC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80930537\/1447076865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"97bcdfca1a2dca59","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/97bcdfca1a2dca59.json","place_type":"city","name":"Rio de Janeiro","full_name":"Rio de Janeiro, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.795449,-23.083020],[-43.795449,-22.739823],[-43.087707,-22.739823],[-43.087707,-23.083020]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"monteirobieel","name":"Gabiguel Montgueiro\u264c","id":80930537,"id_str":"80930537","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079988663"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218368512,"id_str":"663727695218368512","text":"\u7720\u3044\u3051\u3069\u52c9\u5f37\u3001\u3001\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454761892,"id_str":"454761892","name":"\u304b \u3065 \u304d","screen_name":"46awaaaay","location":null,"url":"http:\/\/twpf.jp\/46awaaaay","description":null,"protected":false,"verified":false,"followers_count":211,"friends_count":196,"listed_count":11,"favourites_count":5684,"statuses_count":22803,"created_at":"Wed Jan 04 10:40:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663528242792415232\/eCFzEsEA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663528242792415232\/eCFzEsEA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454761892\/1446005800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201701888,"id_str":"663727695201701888","text":"@Pableteete Qu\u00e9 monada... Dale todo lo que te pida! Jajaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713759110832128,"in_reply_to_status_id_str":"663713759110832128","in_reply_to_user_id":146006031,"in_reply_to_user_id_str":"146006031","in_reply_to_screen_name":"Pableteete","user":{"id":181139949,"id_str":"181139949","name":" Sandr\u00e1stica","screen_name":"SandraQueisels","location":"No me ubico. ","url":null,"description":"No leo la mente, pero casi. Cabeza pensante. Poseedora de la verdad absoluta. Coherente hasta la contradicci\u00f3n.","protected":false,"verified":false,"followers_count":412,"friends_count":435,"listed_count":7,"favourites_count":2509,"statuses_count":2256,"created_at":"Sat Aug 21 11:40:55 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440261951738761216\/2tZhrfeT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440261951738761216\/2tZhrfeT.jpeg","profile_background_tile":true,"profile_link_color":"23F53B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454670918837477376\/CA5BlXzu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454670918837477376\/CA5BlXzu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181139949\/1427972181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pableteete","name":"Pablo","id":146006031,"id_str":"146006031","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695235297280,"id_str":"663727695235297280","text":"RT @Prettyfce_La: I want these \ud83d\ude29RT @livin_postal: when daddy comes home\ud83d\udc85\ud83d\udc8d https:\/\/t.co\/zyv8rfa4iY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241645267,"id_str":"241645267","name":"Nephiah","screen_name":"LV_Neffy","location":"living\u262e","url":null,"description":"Savannah State18","protected":false,"verified":false,"followers_count":3764,"friends_count":3177,"listed_count":5,"favourites_count":5379,"statuses_count":91121,"created_at":"Sat Jan 22 19:51:19 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DE3C8D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436275821511077888\/xp3BsoAO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436275821511077888\/xp3BsoAO.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"1FF0A3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660853639079190529\/4AObmaLK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660853639079190529\/4AObmaLK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241645267\/1446529014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:18:50 +0000 2015","id":663571421822590976,"id_str":"663571421822590976","text":"I want these \ud83d\ude29RT @livin_postal: when daddy comes home\ud83d\udc85\ud83d\udc8d https:\/\/t.co\/zyv8rfa4iY","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74771722,"id_str":"74771722","name":"La Money\ue13e\ue035\ue12f","screen_name":"Prettyfce_La","location":"NEWARK, NJ","url":null,"description":"CITY'S MOST WANTED. *PRETTYGANG *TUPACSHAKUR *IG:PRETTYFCE_LA","protected":false,"verified":false,"followers_count":4861,"friends_count":1977,"listed_count":40,"favourites_count":8,"statuses_count":255189,"created_at":"Wed Sep 16 16:33:08 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458397979745873921\/XDjekdql.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458397979745873921\/XDjekdql.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"200DB3","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662940864604426240\/b63KJnMa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662940864604426240\/b63KJnMa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74771722\/1424828570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"livin_postal","name":"Jhay.","id":3042492325,"id_str":"3042492325","indices":[17,30]}],"symbols":[],"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"}]},"extended_entities":{"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433789612294144,"id_str":"663433789612294144","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433789930999808,"id_str":"663433789930999808","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433790258196480,"id_str":"663433790258196480","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":642,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Prettyfce_La","name":"La Money\ue13e\ue035\ue12f","id":74771722,"id_str":"74771722","indices":[3,16]},{"screen_name":"livin_postal","name":"Jhay.","id":3042492325,"id_str":"3042492325","indices":[35,48]}],"symbols":[],"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"}]},"extended_entities":{"media":[{"id":663433789591322625,"id_str":"663433789591322625","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hECVAAEVrsX.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433789612294144,"id_str":"663433789612294144","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hEHVAAAkjEB.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433789930999808,"id_str":"663433789930999808","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hFTUEAAKBK5.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"},{"id":663433790258196480,"id_str":"663433790258196480","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT9hGhUsAAUZTE.jpg","url":"https:\/\/t.co\/zyv8rfa4iY","display_url":"pic.twitter.com\/zyv8rfa4iY","expanded_url":"http:\/\/twitter.com\/livin_postal\/status\/663433807022809089\/photo\/1","type":"photo","sizes":{"large":{"w":642,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663433807022809089,"source_status_id_str":"663433807022809089","source_user_id":3042492325,"source_user_id_str":"3042492325"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988665"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695210094592,"id_str":"663727695210094592","text":"Van pasando los a\u00f1os, jugadores tambi\u00e9n dirigentes, pero no se dan cuenta.. Que el problema de quilmes es su gentee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255113209,"id_str":"255113209","name":"facu","screen_name":"gigenafacu","location":"en el poli","url":"http:\/\/www.facebook.com\/faacundo.gigena?ref=tn_tnmn","description":"- Del materno vengo , hay que pedo tengo , a la cancha voy , a ver al campe\u00f3n chalalalala borracho chalalalala borracho y de pe\u00f1arol -","protected":false,"verified":false,"followers_count":242,"friends_count":303,"listed_count":0,"favourites_count":1267,"statuses_count":10725,"created_at":"Sun Feb 20 18:11:03 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474040678524022784\/4QZcCb46.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474040678524022784\/4QZcCb46.jpeg","profile_background_tile":false,"profile_link_color":"2F39ED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662895048539942912\/T7uEZKSh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662895048539942912\/T7uEZKSh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255113209\/1446875061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988659"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695205830658,"id_str":"663727695205830658","text":"RT @opfavestyles: Gigi Hadid & Chanel Iman \ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/DSnY1VAbHP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4009443552,"id_str":"4009443552","name":"fikah","screen_name":"syafikaahh","location":null,"url":null,"description":"5SOS","protected":false,"verified":false,"followers_count":53,"friends_count":63,"listed_count":0,"favourites_count":66,"statuses_count":154,"created_at":"Sun Oct 25 04:21:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662981975507013633\/AUtYwyLX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662981975507013633\/AUtYwyLX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4009443552\/1446902184","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:52:18 +0000 2015","id":663700639969619968,"id_str":"663700639969619968","text":"Gigi Hadid & Chanel Iman \ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/DSnY1VAbHP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2756165179,"id_str":"2756165179","name":"opfavestyles","screen_name":"opfavestyles","location":null,"url":"http:\/\/ask.fm\/opfavestyles","description":"owner: frankie co-owners: michela, rita, leslie","protected":false,"verified":false,"followers_count":75051,"friends_count":51,"listed_count":155,"favourites_count":1508,"statuses_count":6698,"created_at":"Fri Aug 22 19:15:14 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663007250986999808\/oG0nADAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663007250986999808\/oG0nADAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756165179\/1445676106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":310,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663700623569895424,"id_str":"663700623569895424","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663700623569895424,"id_str":"663700623569895424","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}}},{"id":663700623590875136,"id_str":"663700623590875136","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2JW4AAlrQt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2JW4AAlrQt.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":623,"resize":"fit"},"large":{"w":599,"h":623,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":353,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"opfavestyles","name":"opfavestyles","id":2756165179,"id_str":"2756165179","indices":[3,16]}],"symbols":[],"media":[{"id":663700623569895424,"id_str":"663700623569895424","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}},"source_status_id":663700639969619968,"source_status_id_str":"663700639969619968","source_user_id":2756165179,"source_user_id_str":"2756165179"}]},"extended_entities":{"media":[{"id":663700623569895424,"id_str":"663700623569895424","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2EWwAA2DHd.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}},"source_status_id":663700639969619968,"source_status_id_str":"663700639969619968","source_user_id":2756165179,"source_user_id_str":"2756165179"},{"id":663700623590875136,"id_str":"663700623590875136","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwM2JW4AAlrQt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwM2JW4AAlrQt.jpg","url":"https:\/\/t.co\/DSnY1VAbHP","display_url":"pic.twitter.com\/DSnY1VAbHP","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663700639969619968\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":623,"resize":"fit"},"large":{"w":599,"h":623,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":353,"resize":"fit"}},"source_status_id":663700639969619968,"source_status_id_str":"663700639969619968","source_user_id":2756165179,"source_user_id_str":"2756165179"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988658"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695205785600,"id_str":"663727695205785600","text":"@_inaaaaaa sorry hm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725197732638720,"in_reply_to_status_id_str":"663725197732638720","in_reply_to_user_id":502448945,"in_reply_to_user_id_str":"502448945","in_reply_to_screen_name":"_inaaaaaa","user":{"id":2401191397,"id_str":"2401191397","name":"Dr.Imranhakim","screen_name":"imranhakim160","location":null,"url":null,"description":"ig;dr.imranhakim love my ibu and ayah and you engaged\/\/free agent","protected":false,"verified":false,"followers_count":440,"friends_count":451,"listed_count":1,"favourites_count":9774,"statuses_count":16214,"created_at":"Fri Mar 21 08:02:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649124568494268416\/7tN2AhbU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649124568494268416\/7tN2AhbU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401191397\/1430951154","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_inaaaaaa","name":"\u0646\u0648\u0631\u0632\u0627\u064a\u0646\u0627","id":502448945,"id_str":"502448945","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988658"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218483200,"id_str":"663727695218483200","text":"RT @RTorFAV_1: REQUESTED \nRT for Arsenal\nLIKE for Speedy https:\/\/t.co\/qfXsWh9NoS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2795020036,"id_str":"2795020036","name":"lord vader anne","screen_name":"__yelrah","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCU2F3SeKIL1hslBRwPwinZw","description":"Han Solo is the coolest dude on the universe","protected":false,"verified":false,"followers_count":657,"friends_count":1337,"listed_count":10,"favourites_count":13083,"statuses_count":16550,"created_at":"Tue Sep 30 14:47:46 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516965481282949120\/pmEGeo7e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516965481282949120\/pmEGeo7e.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658767943011012608\/mRJGpeFZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658767943011012608\/mRJGpeFZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2795020036\/1445897491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:50:30 +0000 2015","id":663398198069878784,"id_str":"663398198069878784","text":"REQUESTED \nRT for Arsenal\nLIKE for Speedy https:\/\/t.co\/qfXsWh9NoS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2494344283,"id_str":"2494344283","name":"RT or FAV","screen_name":"RTorFAV_1","location":"Central Europe","url":null,"description":"Celebrities, TV Series, Couples, Movies, Songs, Albums etc. | ASK FOR FOLLOW BACK :) Send me your requests (4 per week) - via DM.","protected":false,"verified":false,"followers_count":33871,"friends_count":14537,"listed_count":63,"favourites_count":190,"statuses_count":8760,"created_at":"Wed May 14 16:31:20 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617639621699239936\/B8eGL7KG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617639621699239936\/B8eGL7KG.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650416292541820928\/qD5PxB6Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650416292541820928\/qD5PxB6Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2494344283\/1445007380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":89,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663398196870156289,"id_str":"663398196870156289","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","url":"https:\/\/t.co\/qfXsWh9NoS","display_url":"pic.twitter.com\/qfXsWh9NoS","expanded_url":"http:\/\/twitter.com\/RTorFAV_1\/status\/663398198069878784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":928,"h":697,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663398196870156289,"id_str":"663398196870156289","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","url":"https:\/\/t.co\/qfXsWh9NoS","display_url":"pic.twitter.com\/qfXsWh9NoS","expanded_url":"http:\/\/twitter.com\/RTorFAV_1\/status\/663398198069878784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":928,"h":697,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RTorFAV_1","name":"RT or FAV","id":2494344283,"id_str":"2494344283","indices":[3,13]}],"symbols":[],"media":[{"id":663398196870156289,"id_str":"663398196870156289","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","url":"https:\/\/t.co\/qfXsWh9NoS","display_url":"pic.twitter.com\/qfXsWh9NoS","expanded_url":"http:\/\/twitter.com\/RTorFAV_1\/status\/663398198069878784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":928,"h":697,"resize":"fit"}},"source_status_id":663398198069878784,"source_status_id_str":"663398198069878784","source_user_id":2494344283,"source_user_id_str":"2494344283"}]},"extended_entities":{"media":[{"id":663398196870156289,"id_str":"663398196870156289","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdJS0UkAEW2zM.jpg","url":"https:\/\/t.co\/qfXsWh9NoS","display_url":"pic.twitter.com\/qfXsWh9NoS","expanded_url":"http:\/\/twitter.com\/RTorFAV_1\/status\/663398198069878784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":928,"h":697,"resize":"fit"}},"source_status_id":663398198069878784,"source_status_id_str":"663398198069878784","source_user_id":2494344283,"source_user_id_str":"2494344283"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201591297,"id_str":"663727695201591297","text":"Ven, pa'c\u00e1, cuida'o con la culebra que muerde los pies.\n-Osho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1628908369,"id_str":"1628908369","name":"Reyna del Norte","screen_name":"reyna_nte","location":"Sonora","url":null,"description":"Feliz de Ser y no parecer!... #TESCHINGANDO","protected":false,"verified":false,"followers_count":5863,"friends_count":602,"listed_count":136,"favourites_count":283783,"statuses_count":63129,"created_at":"Sun Jul 28 22:26:53 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"E61573","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662837047091032064\/yJOzBDaS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662837047091032064\/yJOzBDaS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1628908369\/1446969161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218405376,"id_str":"663727695218405376","text":"RT @h_se_poy: \uc57c \uc9c0\uae08 \uc544\uc774\uc720 \uae54 \ub54c \uc544\ub2d8 \uc874\ub098 \uc911\uc694\ud55c \uac70 \ud130\uc9d0 https:\/\/t.co\/RJhvfQYjaU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810320189,"id_str":"2810320189","name":"[\ubc18\u2744] ve","screen_name":"ve_synth","location":null,"url":null,"description":"\uc0ac\uc774\ud37c\uc988 \ubcf8\uc9c4. \uc54c\ud2f0\uc8fc\uc758.","protected":false,"verified":false,"followers_count":54,"friends_count":262,"listed_count":0,"favourites_count":1227,"statuses_count":15577,"created_at":"Sun Sep 14 23:23:23 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389891414265856\/OzSB8FM8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389891414265856\/OzSB8FM8_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:41:07 +0000 2015","id":663305241811509249,"id_str":"663305241811509249","text":"\uc57c \uc9c0\uae08 \uc544\uc774\uc720 \uae54 \ub54c \uc544\ub2d8 \uc874\ub098 \uc911\uc694\ud55c \uac70 \ud130\uc9d0 https:\/\/t.co\/RJhvfQYjaU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2296105086,"id_str":"2296105086","name":"\ubbfc\uacbd","screen_name":"h_se_poy","location":"\uc18c\ud5a5 \uc774\uc608\ub77c \uc7ac\uc778","url":null,"description":"\uadf8\ub0e5 \uc7a1\ub355\/16\ub144 \uc218\ub2a5 \uc804\uae4c\uc9c0 \ud734\ucf54\/\uc601\uc5c5\ud574\uc8fc\uc138\uc694 \uc601\uc5c5\/\uc0ac\ud37c 50\uae09 \uce74\uc778\uc801\uaf43\uc9c0 \uc18c\ud5a5 \uc774\uc608\ub77c \ub9de\uc544\uc694. \uae30\uc5b5\ud558\uc2dc\ub294 \ubd84\ub4e4\uc740 \ud314\ub85c\uc6b0 \uc8fc\uc138\uc694","protected":false,"verified":false,"followers_count":114,"friends_count":92,"listed_count":0,"favourites_count":114,"statuses_count":2043,"created_at":"Fri Jan 17 13:19:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660426240071872514\/G-hWAuMs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660426240071872514\/G-hWAuMs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2296105086\/1443803328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11654,"favorite_count":802,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663305179744239616,"id_str":"663305179744239616","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":543,"h":1024,"resize":"fit"},"medium":{"w":543,"h":1024,"resize":"fit"},"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663305179744239616,"id_str":"663305179744239616","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":543,"h":1024,"resize":"fit"},"medium":{"w":543,"h":1024,"resize":"fit"},"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663305211461566464,"id_str":"663305211461566464","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIk1LVAAA64WP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIk1LVAAA64WP.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":601,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"medium":{"w":600,"h":373,"resize":"fit"}}},{"id":663305213307019264,"id_str":"663305213307019264","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIk8DUYAAtSkF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIk8DUYAAtSkF.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":515,"resize":"fit"},"large":{"w":704,"h":605,"resize":"fit"}}},{"id":663305230071672832,"id_str":"663305230071672832","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIl6gUsAAkAZr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIl6gUsAAkAZr.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"large":{"w":718,"h":465,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"h_se_poy","name":"\ubbfc\uacbd","id":2296105086,"id_str":"2296105086","indices":[3,12]}],"symbols":[],"media":[{"id":663305179744239616,"id_str":"663305179744239616","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":543,"h":1024,"resize":"fit"},"medium":{"w":543,"h":1024,"resize":"fit"},"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663305241811509249,"source_status_id_str":"663305241811509249","source_user_id":2296105086,"source_user_id_str":"2296105086"}]},"extended_entities":{"media":[{"id":663305179744239616,"id_str":"663305179744239616","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIi_BVAAA0bvk.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":543,"h":1024,"resize":"fit"},"medium":{"w":543,"h":1024,"resize":"fit"},"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663305241811509249,"source_status_id_str":"663305241811509249","source_user_id":2296105086,"source_user_id_str":"2296105086"},{"id":663305211461566464,"id_str":"663305211461566464","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIk1LVAAA64WP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIk1LVAAA64WP.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"large":{"w":601,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"medium":{"w":600,"h":373,"resize":"fit"}},"source_status_id":663305241811509249,"source_status_id_str":"663305241811509249","source_user_id":2296105086,"source_user_id_str":"2296105086"},{"id":663305213307019264,"id_str":"663305213307019264","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIk8DUYAAtSkF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIk8DUYAAtSkF.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":515,"resize":"fit"},"large":{"w":704,"h":605,"resize":"fit"}},"source_status_id":663305241811509249,"source_status_id_str":"663305241811509249","source_user_id":2296105086,"source_user_id_str":"2296105086"},{"id":663305230071672832,"id_str":"663305230071672832","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSIl6gUsAAkAZr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSIl6gUsAAkAZr.jpg","url":"https:\/\/t.co\/RJhvfQYjaU","display_url":"pic.twitter.com\/RJhvfQYjaU","expanded_url":"http:\/\/twitter.com\/h_se_poy\/status\/663305241811509249\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"large":{"w":718,"h":465,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"}},"source_status_id":663305241811509249,"source_status_id_str":"663305241811509249","source_user_id":2296105086,"source_user_id_str":"2296105086"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201705984,"id_str":"663727695201705984","text":"https:\/\/t.co\/Jmi4mdhyNd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1488969584,"id_str":"1488969584","name":"EglantinaGarc\u00ecaPais","screen_name":"lineafiel","location":"Argentina","url":null,"description":"Nac\u00ed en el centro del mundo. Periodista y otros menesteres relacionados con Letras, Pol\u00edtica, Educaci\u00f3n y formas de lucha contra la opresi\u00f3n.","protected":false,"verified":false,"followers_count":79,"friends_count":69,"listed_count":6,"favourites_count":1268,"statuses_count":8547,"created_at":"Thu Jun 06 23:11:25 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"592D8A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"F200FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724847747497984,"quoted_status_id_str":"663724847747497984","quoted_status":{"created_at":"Mon Nov 09 14:28:29 +0000 2015","id":663724847747497984,"id_str":"663724847747497984","text":"Video homenaje de @CanalEncuentro a @DiegoGolombek por ganar el Premio UNESCO - Kalinga --> https:\/\/t.co\/rTdUeKQrXD https:\/\/t.co\/QumgRwnl7z","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262127099,"id_str":"262127099","name":"Jorge Aliaga","screen_name":"jorgeluisaliaga","location":"Buenos Aires, Argentina","url":"http:\/\/www.jorgealiaga.com.ar\/","description":"F\u00edsico argentino, Subsecretario de Evaluaci\u00f3n Institucional en el MinCyT. Ex decano de la Facultad de Ciencias Exactas y Naturales -UBA","protected":false,"verified":false,"followers_count":1198,"friends_count":984,"listed_count":26,"favourites_count":1415,"statuses_count":5732,"created_at":"Mon Mar 07 12:12:09 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514385095566688256\/56i0krJy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514385095566688256\/56i0krJy_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rTdUeKQrXD","expanded_url":"https:\/\/www.youtube.com\/watch?v=-CwWkgZxY1k&feature=youtu.be","display_url":"youtube.com\/watch?v=-CwWkg\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"CanalEncuentro","name":"Canal Encuentro","id":153973953,"id_str":"153973953","indices":[18,33]},{"screen_name":"DiegoGolombek","name":"Diego Golombek","id":575885116,"id_str":"575885116","indices":[36,50]}],"symbols":[],"media":[{"id":663724846510178304,"id_str":"663724846510178304","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGOzjXAAAKtI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGOzjXAAAKtI8.jpg","url":"https:\/\/t.co\/QumgRwnl7z","display_url":"pic.twitter.com\/QumgRwnl7z","expanded_url":"http:\/\/twitter.com\/jorgeluisaliaga\/status\/663724847747497984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":792,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724846510178304,"id_str":"663724846510178304","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGOzjXAAAKtI8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGOzjXAAAKtI8.jpg","url":"https:\/\/t.co\/QumgRwnl7z","display_url":"pic.twitter.com\/QumgRwnl7z","expanded_url":"http:\/\/twitter.com\/jorgeluisaliaga\/status\/663724847747497984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":792,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jmi4mdhyNd","expanded_url":"https:\/\/twitter.com\/jorgeluisaliaga\/status\/663724847747497984","display_url":"twitter.com\/jorgeluisaliag\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201615872,"id_str":"663727695201615872","text":"\u3069\u3046\u601d\u3044\u307e\u3059\uff1f\u3076\u3093\u3061\u3093\u3055\u3093","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437464831,"id_str":"437464831","name":"\u5357\u3055\u3093\u3061","screen_name":"animetui","location":null,"url":null,"description":"\u30bb\u30ea\u30d5\u3092\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u73fe\u5728\u8a9e\u5f59\u88dc\u5f37\u4e2d\uff0a\u73fe\u5728\u69cb\u7bc9\u4e2d\u306b\u3064\u304d\u504f\u308a\u304c\u3042\u308a\u307e\u3059\u3002\u904e\u5ea6\u306a\u671f\u5f85\u306f\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044\u3002\u8ffd\u8a18\uff1a\u307f\u306a\u307f\u3051\u6210\u5206\u591a\u3081\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u52df\u96c6\u4e2d","protected":false,"verified":false,"followers_count":43,"friends_count":46,"listed_count":1,"favourites_count":0,"statuses_count":59899,"created_at":"Thu Dec 15 12:46:15 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218479104,"id_str":"663727695218479104","text":"Pra voc\u00ea que vive reclamando da vida https:\/\/t.co\/EOP8i7T2JL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164673625,"id_str":"164673625","name":"empire_childrem","screen_name":"coy_leo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1603,"friends_count":647,"listed_count":3,"favourites_count":880,"statuses_count":11864,"created_at":"Fri Jul 09 13:17:22 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586669464910831616\/UsrQbDJr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586669464910831616\/UsrQbDJr.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658145706776076288\/d7ahMErk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658145706776076288\/d7ahMErk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164673625\/1443149321","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726847071535104,"quoted_status_id_str":"663726847071535104","quoted_status":{"created_at":"Mon Nov 09 14:36:26 +0000 2015","id":663726847071535104,"id_str":"663726847071535104","text":"toma no cu todo mundo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2597089098,"id_str":"2597089098","name":"trox\u0251ndo","screen_name":"troxando","location":null,"url":"http:\/\/instagram.com\/iagoovalerio","description":"fluente em falar merda","protected":false,"verified":false,"followers_count":274328,"friends_count":17,"listed_count":61,"favourites_count":0,"statuses_count":90,"created_at":"Tue Jul 01 00:08:01 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726914587254784\/mdMj_CXP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726914587254784\/mdMj_CXP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2597089098\/1446843184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EOP8i7T2JL","expanded_url":"https:\/\/twitter.com\/troxando\/status\/663726847071535104","display_url":"twitter.com\/troxando\/statu\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695235145728,"id_str":"663727695235145728","text":"@amexoffers #amexjcpenney #amexadvanceauto","source":"\u003ca href=\"http:\/\/chrome.google.com\/extensions\/detail\/aicelmgbddfgmpieedjiggifabdpcnln\" rel=\"nofollow\"\u003eFaWave\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":492532196,"in_reply_to_user_id_str":"492532196","in_reply_to_screen_name":"AmexOffers","user":{"id":1923564583,"id_str":"1923564583","name":"Eddie Yao","screen_name":"Eddieyyao","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":50,"created_at":"Tue Oct 01 13:52:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000533779241\/cb98435f45da7c7b3c1038e76d482553_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000533779241\/cb98435f45da7c7b3c1038e76d482553_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"amexjcpenney","indices":[12,25]},{"text":"amexadvanceauto","indices":[26,42]}],"urls":[],"user_mentions":[{"screen_name":"AmexOffers","name":"Amex Offers","id":492532196,"id_str":"492532196","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988665"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695210160129,"id_str":"663727695210160129","text":"\u064a\u0633\u0631\u0642 \u0645\u0646\u0627 \u0627\u0644\u0645\u0648\u062a \u062c\u0645\u0627\u0644 \u0623\u0639\u064a\u064f\u0646\u0647\u0645 \u064a\u0628\u0642\u0649 \u0627\u0644\u062f\u0639\u0627\u0621 \u0623\u062c\u0645\u0644 \u062d\u062f\u064a\u062b \u0628\u064a\u0646\u0646\u0627 \u0631\u0628\u0651\u064a \u0647\u0628 \u0644\u0644\u0631\u0627\u062d\u0644\u064a\u0646 \u0642\u0628\u0631\u0627\u064b \u0628\u0627\u0631\u062f\u0627\u064b \u0644\u0627 \u062a\u0645\u0633\u0647\u0645 \u0641\u064a\u0647 \u0648\u062d\u0634\u0647.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2713125660,"id_str":"2713125660","name":"\u063a\u0631\u064a\u0628 \u0648\u0637\u0646","screen_name":"Ghareb_1234","location":null,"url":null,"description":"\u200f\u0627\u0644\u062d\u0633\u062f \u064a\u0624\u0644\u0645 \u062c\u0633\u062f \u0648 \u064a\u0648\u0642\u0641 \u0645\u0633\u062a\u0642\u0628\u0644 \u0648\u0642\u062f \u064a\u062f\u0641\u0646 \u0631\u0648\u062d\u00a0\u0648\u064a\u0630\u0631\u0641 \u062f\u0645\u0648\u0639 \u0648\u0627\u0646\u062a\u0645 \u0644\u0627 \u062a\u0639\u0644\u0645\u0648\u0646\u060c\u0644\u0630\u0644\u0643 \u0627\u0630\u0643\u0631\u0648\u0622 \u0627\u0644\u0644\u0647 \u062f\u0627\u0626\u0645\u064b\u0627'","protected":false,"verified":false,"followers_count":232,"friends_count":283,"listed_count":0,"favourites_count":154,"statuses_count":2679,"created_at":"Wed Aug 06 23:05:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650623847629242368\/8nI2CMuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650623847629242368\/8nI2CMuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2713125660\/1426872091","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079988659"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695239467008,"id_str":"663727695239467008","text":"@alana_lvt o luan tomou tamb\u00e9m, por 5 reias, o rafa tomou de gra\u00e7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727501592674304,"in_reply_to_status_id_str":"663727501592674304","in_reply_to_user_id":1966722804,"in_reply_to_user_id_str":"1966722804","in_reply_to_screen_name":"alana_lvt","user":{"id":340850481,"id_str":"340850481","name":"ju","screen_name":"itsyoupaulo","location":"00:00 \/ make a wish ","url":null,"description":"trouxa sim, choose paulo tamb\u00e9m","protected":false,"verified":false,"followers_count":826,"friends_count":242,"listed_count":0,"favourites_count":1652,"statuses_count":10195,"created_at":"Sat Jul 23 11:21:46 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625075798085619712\/SPQWBc78.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625075798085619712\/SPQWBc78.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663506842308485120\/VqiKZWCT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663506842308485120\/VqiKZWCT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340850481\/1446999612","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alana_lvt","name":"ALANA \u25b3\u20d2\u20d8","id":1966722804,"id_str":"1966722804","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079988666"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201591296,"id_str":"663727695201591296","text":"@10K_9B \u306a\u3093\u3067\uff01\uff1f\n\u305d\u308c\u3067\u3082\u3001\u5acc\u306a\u306e\uff01\uff1f\n\u30c1\u30e3\u30c3\u30ad\u30fc\u60b2\u3057\u3044\uff01\uff01\uff01\uff01\n\u3061\u3047\u3063\u30fc_(:3 \u300d\u2220)_","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726920970825728,"in_reply_to_status_id_str":"663726920970825728","in_reply_to_user_id":2899462507,"in_reply_to_user_id_str":"2899462507","in_reply_to_screen_name":"10K_9B","user":{"id":1675990178,"id_str":"1675990178","name":"\u95bb\u9b54\u306e\u5b6b","screen_name":"enmasamasama","location":null,"url":null,"description":"\u5730\u7344\u306b\u5815\u3061\u305f\u3044\u306a\u3089\u5171\u306b\u6765\u3044","protected":false,"verified":false,"followers_count":89,"friends_count":90,"listed_count":10,"favourites_count":687,"statuses_count":4746,"created_at":"Fri Aug 16 15:23:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663678126883364864\/85NoSyGe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663678126883364864\/85NoSyGe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1675990178\/1444919906","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"10K_9B","name":"\u6a2b \u30bf\u30cb\u30b7","id":2899462507,"id_str":"2899462507","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695239364608,"id_str":"663727695239364608","text":"\u0631\u064e\u0628\u064e\u0651\u0646\u064e\u0627 \u0622\u0645\u064e\u0646\u064e\u0651\u0627 \u0641\u064e\u0627\u063a\u0652\u0641\u0650\u0631\u0652 \u0644\u064e\u0646\u064e\u0627 \u0648\u064e\u0627\u0631\u0652\u062d\u064e\u0645\u0652\u0646\u064e\u0627 \u0648\u064e\u0623\u064e\u0646\u062a\u064e \u062e\u064e\u064a\u0652\u0631\u064f \u0627\u0644\u0631\u064e\u0651\u0627\u062d\u0650\u0645\u0650\u064a\u0646\u064e (\u0627\u0644\u0645\u0624\u0645\u0646\u0648\u0646 \/ 109)","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357324321,"id_str":"357324321","name":"\u007b\u062d\u0633\u0627\u0628 \u0644\u0630\u0643\u0631 \u0627\u0644\u0644\u0647\u007d","screen_name":"assaaeeb","location":"\u0627\u0644\u0643\u0648\u064a\u062a- \u0627\u0644\u0631\u064a\u0627\u0636","url":null,"description":"\ufd3f\u0641\u064e\u0627\u0630\u0643\u064f\u0631\u0648\u0646\u064a \u0623\u064e\u0630\u0643\u064f\u0631\u0643\u064f\u0645 \u0648\u064e\u0627\u0634\u0643\u064f\u0631\u0648\u0627 \u0644\u064a \u0648\u064e\u0644\u0627 \u062a\u064e\u0643\u0641\u064f\u0631\u0648\u0646\u0650\ufd3e","protected":false,"verified":false,"followers_count":2987,"friends_count":2018,"listed_count":7,"favourites_count":25,"statuses_count":1303802,"created_at":"Thu Aug 18 05:40:55 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650572421355958272\/l4mvkFpd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650572421355958272\/l4mvkFpd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357324321\/1439092715","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079988666"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695218380800,"id_str":"663727695218380800","text":"RT @Acapellavids: HE REMADE TITANIC \ud83d\ude02\ud83d\ude02\ud83d\ude02 IM DONE https:\/\/t.co\/IZMXuTq6kg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":591946172,"id_str":"591946172","name":"CA$HLEY","screen_name":"perezashleyy","location":"atx n smtx","url":null,"description":"I'm annoying and psychotic","protected":false,"verified":false,"followers_count":1156,"friends_count":382,"listed_count":5,"favourites_count":20076,"statuses_count":90624,"created_at":"Sun May 27 16:21:33 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000149371680\/cd_MGlEL.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000149371680\/cd_MGlEL.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723283506851841\/9TbNXqMd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723283506851841\/9TbNXqMd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/591946172\/1447079029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:38:19 +0000 2015","id":662866649066954752,"id_str":"662866649066954752","text":"HE REMADE TITANIC \ud83d\ude02\ud83d\ude02\ud83d\ude02 IM DONE https:\/\/t.co\/IZMXuTq6kg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4099064723,"id_str":"4099064723","name":"Acapella Videos","screen_name":"Acapellavids","location":null,"url":null,"description":"THE ORIGINAL | Best Acapella Videos | (not affiliated with the app) DM us your videos","protected":false,"verified":false,"followers_count":42410,"friends_count":0,"listed_count":11,"favourites_count":7,"statuses_count":129,"created_at":"Mon Nov 02 18:31:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661256506533396480\/jHrzhCvn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661256506533396480\/jHrzhCvn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4099064723\/1446501915","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15228,"favorite_count":15627,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/IZMXuTq6kg","display_url":"pic.twitter.com\/IZMXuTq6kg","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374"}]},"extended_entities":{"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/IZMXuTq6kg","display_url":"pic.twitter.com\/IZMXuTq6kg","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/720x720\/I4lKG0sQKzm9A87o.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/240x240\/OSulFX5mnDDboNf-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Acapellavids","name":"Acapella Videos","id":4099064723,"id_str":"4099064723","indices":[3,16]}],"symbols":[],"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/IZMXuTq6kg","display_url":"pic.twitter.com\/IZMXuTq6kg","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374"}]},"extended_entities":{"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/IZMXuTq6kg","display_url":"pic.twitter.com\/IZMXuTq6kg","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/720x720\/I4lKG0sQKzm9A87o.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/240x240\/OSulFX5mnDDboNf-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988661"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695222603776,"id_str":"663727695222603776","text":"RT @kanna_peche: \u4eca\u65e5\u306f\u79c1\u3001\u6355\u3089\u308f\u308c\u306e\u30a8\u30eb\u30d5\u306e\u904e\u9177\u306a\u751f\u6d3b\u3092\u63cf\u304f\u3079\u304d\u3060\u3068\u601d\u3063\u305f\u3093\u3060\u3088\u306d\u3002 https:\/\/t.co\/e6mgnZRMRK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1105997407,"id_str":"1105997407","name":"\u304b\u3048\u3067\u3074\u3063\u3074\u306f\u30a2\u30ce\u30cb\u30a7\u30fc\u3060\u3051\uff01","screen_name":"kaede_atheru","location":"\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u306d","url":"http:\/\/twpf.jp\/kaede_atheru","description":"\u304b\u3048\u3067\u3067\u3059\uff01\u3069\u3093\u3069\u3093\u3064\u306a\u304c\u3063\u3066\u304f\u3060\u3055\u3044\u2026\u307e\u305a\u306f\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u3088\uff01 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\uff01\u2606\u4e0b\u30cd\u30bf\u304c\u5acc\u306a\u65b9\u306f\u3053\u3061\u3089\u307e\u3067\u2192@irukasan_gmb \u2606\u305f\u3060\u4eca\u73fe\u5728\u30d5\u30a9\u30ed\u30fc\u5236\u9650\u304b\u304b\u3063\u3066\u307e\u3059\u2026\u3059\u307f\u307e\u305b\u3093 Special Thanks:\u90e8\u9577\u3055\u3093&\u677e\u3055\u3093\u304b\u3089\uff01(\u30da\u30a2\u30a2\u30a4\u30b3\u30f3\u4e2d\u3088\uff01)\u3061\u306a\u307f\u306b\u4eca\u30cf\u30de\u3063\u3066\u308b\u306e\u306f\u6d77\u5916\u30a2\u30cb\u30e1\u3068\u304a\u305d\u677e\u3055\u3093","protected":false,"verified":false,"followers_count":1868,"friends_count":2018,"listed_count":24,"favourites_count":49344,"statuses_count":34031,"created_at":"Sun Jan 20 11:14:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660680232492359680\/XVBQmNQ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660680232492359680\/XVBQmNQ5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105997407\/1427860980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:15 +0000 2015","id":663713715368230913,"id_str":"663713715368230913","text":"\u4eca\u65e5\u306f\u79c1\u3001\u6355\u3089\u308f\u308c\u306e\u30a8\u30eb\u30d5\u306e\u904e\u9177\u306a\u751f\u6d3b\u3092\u63cf\u304f\u3079\u304d\u3060\u3068\u601d\u3063\u305f\u3093\u3060\u3088\u306d\u3002 https:\/\/t.co\/e6mgnZRMRK","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168887455,"id_str":"168887455","name":"\u9cf4\u5cf6\u304b\u3093\u306a","screen_name":"kanna_peche","location":"\u91d1\u9b5a\u9262","url":"http:\/\/www.pixiv.net\/member.php?id=1971139","description":"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u304a\u7d75\u304b\u304d\u30de\u30f3\u25cb\u306e\u304b\u3093\u306a\u3067\u3059\u3002\u5e73\u65e5\u306f\u4f1a\u793e\u54e1\u3002\u304a\u9b5a\u304c\u3068\u3093\u3067\u3082\u306a\u304f\u597d\u304d\u3067\u3059\u3002 \u30d8\u30c1\u30e7\u3044\u6f2b\u753b\u306f\u30bf\u30f3\u30d6\u30e9\u30fc\u306b\u7f6e\u3044\u3066\u304a\u304d\u307e\u3059\u3002\u2192http:\/\/kanna-narushima.tumblr.com\/","protected":false,"verified":false,"followers_count":3454,"friends_count":229,"listed_count":120,"favourites_count":626,"statuses_count":99472,"created_at":"Wed Jul 21 01:15:41 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612476787776360448\/KhljNNzP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612476787776360448\/KhljNNzP.png","profile_background_tile":false,"profile_link_color":"FF8585","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662886944615956480\/kCiRbSVq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662886944615956480\/kCiRbSVq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168887455\/1443014635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1680,"favorite_count":1606,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanna_peche","name":"\u9cf4\u5cf6\u304b\u3093\u306a","id":168887455,"id_str":"168887455","indices":[3,15]}],"symbols":[],"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}},"source_status_id":663713715368230913,"source_status_id_str":"663713715368230913","source_user_id":168887455,"source_user_id_str":"168887455"}]},"extended_entities":{"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}},"source_status_id":663713715368230913,"source_status_id_str":"663713715368230913","source_user_id":168887455,"source_user_id_str":"168887455"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988662"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695222583296,"id_str":"663727695222583296","text":"@dendenpa0504 \n\u65e5\u8ab2\u306b\u306a\u3063\u3066\u308b\u4eba\u306b\u306f\n\u5b09\u3057\u3044\u4e8b\u3060\u3088\u306d\u3063(*\u00b4\u03c9\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663710571007598592,"in_reply_to_status_id_str":"663710571007598592","in_reply_to_user_id":2338381694,"in_reply_to_user_id_str":"2338381694","in_reply_to_screen_name":"dendenpa0504","user":{"id":606183373,"id_str":"606183373","name":"\u3082\u3093\u3061\u3061","screen_name":"monchi_mirei","location":null,"url":null,"description":"\u732b\u3068\u622f\u308c\u308b\u306e\u306f\u7652\u3057\u2606.\uff61.:*\uff65(\u0e05\u00b0\u2200\u00b0\u0e05)*:.\uff61.\u2606 the Raid.\/\u30b5\u30e0\u30af\u30ed\/\u91d1\u7206\/\u30ec\u30a4\u30f4 \u53ef\u611b\u3044\u3042\u306a\u305f\u304c\u5927\u597d\u304d\u3063(^-^\u4eba)\u2661\n \u9762\u767d\u304f\u3066\u697d\u3057\u3044\u4e8b\u304c\u597d\u304d\u2661\u30e9\u30b9\u30ab\u30eb\u2661","protected":false,"verified":false,"followers_count":126,"friends_count":115,"listed_count":5,"favourites_count":8437,"statuses_count":9861,"created_at":"Tue Jun 12 09:35:05 +0000 2012","utc_offset":32400,"time_zone":"Asia\/Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657512610267435008\/es2m3Vmx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657512610267435008\/es2m3Vmx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606183373\/1435274658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dendenpa0504","name":"\u3067\u3093\u3067\u3093\u866b\u3002","id":2338381694,"id_str":"2338381694","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988662"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695230963712,"id_str":"663727695230963712","text":"@amexoffers #amexjcpenney #amexadvanceauto","source":"\u003ca href=\"http:\/\/chrome.google.com\/extensions\/detail\/aicelmgbddfgmpieedjiggifabdpcnln\" rel=\"nofollow\"\u003eFaWave\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":492532196,"in_reply_to_user_id_str":"492532196","in_reply_to_screen_name":"AmexOffers","user":{"id":65709844,"id_str":"65709844","name":"Ying Yao","screen_name":"yaogig","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":57,"created_at":"Fri Aug 14 19:12:16 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"amexjcpenney","indices":[12,25]},{"text":"amexadvanceauto","indices":[26,42]}],"urls":[],"user_mentions":[{"screen_name":"AmexOffers","name":"Amex Offers","id":492532196,"id_str":"492532196","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988664"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695230930944,"id_str":"663727695230930944","text":"@samina_gt15 \u3055\u307f\u306a\u3061\u3083\u3093\uff01\u3055\u3059\u304c\u6a2a\u30e8\u30b3\u30d5\u30a1\u30f3\uff01\u7b11\n\u662f\u975e\u662f\u975e(*\u00b4\u2200\uff40*)\uff01\u7b11\u3044\u3059\u304e\u3067\u304a\u8179\u75db\u304f\u306a\u3089\u306a\u3044\u3088\u3046\u306b\uff01\u7b11\n\u3088\u3044\u3057\u3087\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726437812191232,"in_reply_to_status_id_str":"663726437812191232","in_reply_to_user_id":2313683466,"in_reply_to_user_id_str":"2313683466","in_reply_to_screen_name":"samina_gt15","user":{"id":228365616,"id_str":"228365616","name":"\u30af\u30cb\u30bf-\u68ee\u4e0b\u90a6\u592a-\u2605CD\u8ca9\u58f2\u6311\u6226\u4e2d\u2605","screen_name":"kunita0711","location":null,"url":"http:\/\/ameblo.jp\/kunitam\/","description":"\u30ae\u30bf\u30fc\u5f3e\u304d\u8a9e\u308a\u30b7\u30f3\u30ac\u30fc\u30bd\u30f3\u30b0\u30e9\u30a4\u30bf\u30fc\uff01\u68ee\u4e0b\u90a6\u592a\u3067\u3059\uff01\u682a\u5f0f\u4f1a\u793e\u30c7\u30a3\u30b9\u30c8\u30eb\u30fb\u30df\u30e5\u30fc\u30b8\u30c3\u30af\u30a8\u30f3\u30bf\u30fc\u30c6\u30a4\u30f3\u30e1\u30f3\u30c8\u6240\u5c5e\uff017\u670810\u65e5\uff5e12\u670810\u65e5\u306e5\u30f6\u6708\u9593\u3067CD\u3092500\u679a\u5c4a\u3051\u308b\u4e8b\u306b\u6311\u6226\u3057\u307e\u3059\uff01\u3088\u3044\u3057\u3087\u30fc\uff01\nhttp:\/\/www.thistleme.com\/morishitakunita.html","protected":false,"verified":false,"followers_count":1242,"friends_count":1299,"listed_count":13,"favourites_count":3610,"statuses_count":6851,"created_at":"Sun Dec 19 14:15:41 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454016904\/back.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454016904\/back.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560469280290910210\/kb5cWw8x_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560469280290910210\/kb5cWw8x_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228365616\/1422461363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"samina_gt15","name":"\u3055\u307f\u306a","id":2313683466,"id_str":"2313683466","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988664"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201595392,"id_str":"663727695201595392","text":"@amexoffers #amexjcpenney #amexadvanceauto","source":"\u003ca href=\"http:\/\/chrome.google.com\/extensions\/detail\/aicelmgbddfgmpieedjiggifabdpcnln\" rel=\"nofollow\"\u003eFaWave\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":492532196,"in_reply_to_user_id_str":"492532196","in_reply_to_screen_name":"AmexOffers","user":{"id":180662073,"id_str":"180662073","name":"Young spg","screen_name":"cvillehawk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":59,"created_at":"Fri Aug 20 04:43:08 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000257654181\/6c76b39002fa23f7289bc6ef3dcfdcdd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000257654181\/6c76b39002fa23f7289bc6ef3dcfdcdd_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"amexjcpenney","indices":[12,25]},{"text":"amexadvanceauto","indices":[26,42]}],"urls":[],"user_mentions":[{"screen_name":"AmexOffers","name":"Amex Offers","id":492532196,"id_str":"492532196","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201591298,"id_str":"663727695201591298","text":"\u307e\u308b\u307e\u308b\u3082\u308a\u3082\u308a\uff5e","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1268430787,"id_str":"1268430787","name":"\u307e\u308b\u304f\u3093bot","screen_name":"marukunbot","location":"\u7686\u306e\u5fc3\u306e\u4e2d","url":null,"description":"\u8ab0\u5f97\u8eab\u5185\u5c02\u7528bot\u305d\u306e2 \u4ffa\u306b\u60da\u308c\u308b\u306a\u3088","protected":false,"verified":false,"followers_count":11,"friends_count":9,"listed_count":1,"favourites_count":0,"statuses_count":11582,"created_at":"Fri Mar 15 00:58:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3380970832\/a218c38ea7baab9bb7f74dfc5a63f1ee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3380970832\/a218c38ea7baab9bb7f74dfc5a63f1ee_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695214346240,"id_str":"663727695214346240","text":"RT @santiguidi: 4) dale las gracias a tus pies.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2738782622,"id_str":"2738782622","name":"Misionera","screen_name":"xMISIONERAx","location":"Buenos Aires, Argentina","url":"http:\/\/cargocollective.com\/misionera\/","description":"Misionera es un nodo entre el artista y el espacio de intervenci\u00f3n, entre el artista y el artista, entre el artista y la pizza.","protected":false,"verified":false,"followers_count":295,"friends_count":236,"listed_count":3,"favourites_count":8777,"statuses_count":3128,"created_at":"Sun Aug 17 02:13:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500857792178044928\/XFxD71iX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500857792178044928\/XFxD71iX.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500830669568614400\/i3j8hSaI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500830669568614400\/i3j8hSaI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2738782622\/1408383336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:47:35 +0000 2015","id":663699452817973248,"id_str":"663699452817973248","text":"4) dale las gracias a tus pies.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1836049093,"id_str":"1836049093","name":"santiago guidi","screen_name":"santiguidi","location":null,"url":null,"description":"me pagan por contar historias","protected":false,"verified":false,"followers_count":171,"friends_count":267,"listed_count":0,"favourites_count":1176,"statuses_count":1257,"created_at":"Sun Sep 08 23:26:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000469529312\/7ad1f13fde0a675d9249c63b32047df6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000469529312\/7ad1f13fde0a675d9249c63b32047df6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1836049093\/1379436210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"santiguidi","name":"santiago guidi","id":1836049093,"id_str":"1836049093","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988660"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695210160130,"id_str":"663727695210160130","text":"@TheJakeLP Villager-Kopf hoch. :c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727483666173952,"in_reply_to_status_id_str":"663727483666173952","in_reply_to_user_id":456624275,"in_reply_to_user_id_str":"456624275","in_reply_to_screen_name":"TheJakeLP","user":{"id":3121724135,"id_str":"3121724135","name":"Der Zufall","screen_name":"Lord_Nikers","location":null,"url":null,"description":"Ich war nie gut in Bio.| @_motte_owo_ ist meine Zwillingsschwester!| Talent: Meine Pr\u00e4senz geht den Leuten auf den Sack| Bin ein kleiner Misset-Boy|Vafer=Senpai","protected":false,"verified":false,"followers_count":71,"friends_count":61,"listed_count":1,"favourites_count":144,"statuses_count":5025,"created_at":"Fri Mar 27 16:51:55 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647693278322688\/O8sYmEuJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647693278322688\/O8sYmEuJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3121724135\/1445445532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheJakeLP","name":"TheVillagerJake","id":456624275,"id_str":"456624275","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079988659"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695214354433,"id_str":"663727695214354433","text":"\u0412\u0435\u0440\u043d\u0438\u0442\u0435 \u043c\u043d\u0435 \u0432\u0441\u0435 \u0447\u0442\u043e \u0431\u044b\u043b\u043e, \u0432\u0435\u0440\u043d\u0438\u0442\u0435 \u043c\u043d\u0435 \u0434\u043e\u043c.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285028664,"id_str":"285028664","name":"Dmitry Shelby","screen_name":"dmitryshelby","location":"Belarus, the city of Malorita","url":"http:\/\/vk.com\/dmitryshelby","description":"http:\/\/instagram.com\/dmitryshelby\/","protected":false,"verified":false,"followers_count":79,"friends_count":50,"listed_count":1,"favourites_count":158,"statuses_count":587,"created_at":"Wed Apr 20 12:04:43 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/341667554\/animal_patterns_84.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/341667554\/animal_patterns_84.jpg","profile_background_tile":true,"profile_link_color":"FF00FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D69C45","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530280840144486401\/TyYOeyX9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530280840144486401\/TyYOeyX9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285028664\/1441503669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079988660"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695226793984,"id_str":"663727695226793984","text":"@TO_ZAWAKUN \n\n\u3056\u308f\u304f\u3093\u306f\u535a\u611b\u4e3b\u7fa9\u8005\u3068\u3086\u30fc\u30a4\u30e1\u30fc\u30b8\u3067\u3059\\( \u00f6 )\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727128966361088,"in_reply_to_status_id_str":"663727128966361088","in_reply_to_user_id":2272593702,"in_reply_to_user_id_str":"2272593702","in_reply_to_screen_name":"TO_ZAWAKUN","user":{"id":916981508,"id_str":"916981508","name":"\u3042\u3084\u306b\u3083\u3093\\\u2661\/","screen_name":"qhqn0svk6","location":null,"url":null,"description":"\u30bf\u30b1\u30e4\u30ad\u7fd4\u3001\u6771\u6d77\u30aa\u30f3\u30a8\u30a2\u304c\u3059\u304d\u3002 \u308a\u3087\u3046\u304f\u3093\u3092\u5f1f\u306b\u3057\u305f\u3044\u3002","protected":false,"verified":false,"followers_count":187,"friends_count":167,"listed_count":0,"favourites_count":71,"statuses_count":463,"created_at":"Wed Oct 31 14:20:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627871241559379968\/D7h_I0U8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627871241559379968\/D7h_I0U8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/916981508\/1441088703","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TO_ZAWAKUN","name":"\u866b\u773c\u93e1\u3010\u6771\u6d77\u30aa\u30f3\u30a8\u30a2\u3011","id":2272593702,"id_str":"2272593702","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988663"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695235256321,"id_str":"663727695235256321","text":"Por mucho agobio que tenga, la siesta no me la quita nadie \ud83d\udca4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1190843706,"id_str":"1190843706","name":"Berta\u221e","screen_name":"bets_okay","location":"somewhere over the rainbow","url":null,"description":"\u2661","protected":false,"verified":false,"followers_count":404,"friends_count":427,"listed_count":0,"favourites_count":1494,"statuses_count":8507,"created_at":"Sun Feb 17 19:18:39 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648125917194252288\/-la7kwYB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648125917194252288\/-la7kwYB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1190843706\/1445808915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079988665"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695239360513,"id_str":"663727695239360513","text":"Need to catch up on the @OHLBarrieColts from this past weekend and a look at the upcoming week? #OHL https:\/\/t.co\/yZPuPCW44t","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530842098,"id_str":"2530842098","name":"Very Barrie Colts","screen_name":"VeryBarrieColts","location":"Barrie, Ontario","url":"http:\/\/averybarriecoltsblog.com","description":"A blog that covers the Barrie Colts of the Ontario Hockey League. (not affiliated with the @OHLBarrieColts) ryannoble@averybarriecoltsblog.com @ryannoble66","protected":false,"verified":false,"followers_count":478,"friends_count":437,"listed_count":12,"favourites_count":822,"statuses_count":5061,"created_at":"Wed May 28 21:00:11 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000305","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577855511485263873\/826Qds63.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577855511485263873\/826Qds63.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661164064094093313\/gz2zKdlL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661164064094093313\/gz2zKdlL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2530842098\/1441289340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OHL","indices":[96,100]}],"urls":[{"url":"https:\/\/t.co\/yZPuPCW44t","expanded_url":"http:\/\/www.averybarriecoltsblog.com\/2015\/11\/a-very-barrie-colts-weekend-recapnews.html","display_url":"averybarriecoltsblog.com\/2015\/11\/a-very\u2026","indices":[101,124]}],"user_mentions":[{"screen_name":"OHLBarrieColts","name":"Barrie Colts","id":93927639,"id_str":"93927639","indices":[24,39]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988666"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695209979904,"id_str":"663727695209979904","text":"RT @yunelovelove: \ub2d8\ub4e4\uc544\n\uba54\uc774\ud50c\uc785\ub355\uc2dc\ud0a8\uc0ac\ub78c\uc774\ub098\uc068\n\ud2b8\uc704\ud130\uc785\ub355\uc2dc\ud0a8\uc0ac\ub78c\uc774\ub098\uc068\n\u3148\u3145\ud574\u315b\uc694\uc81c\uac00\ub098\u314f\ube60\uc694","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915135173,"id_str":"2915135173","name":"[~11 \uae30\ub9d0] \ubc18\uc5bc\uc74c \uc988\ud615","screen_name":"B_vrio","location":"\uc5d0\ub9ad\uc544\ucc0c\uc758 \uc8fc\uba38\ub2c8 \uc548","url":null,"description":"\ud3f0 \uc561\uc815 \uae68\uc7a5\ucc3d! \ub191\uc555 \ucef4\uc555!\/\uba58\uc158\u2192\ub9de\ud314\/FUB FREE\/\ucee4\ubba4\ub7ec\/\uc7a1\ub355","protected":false,"verified":false,"followers_count":141,"friends_count":213,"listed_count":2,"favourites_count":5179,"statuses_count":50329,"created_at":"Sun Nov 30 23:29:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660459179732107264\/dCIqYBrR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660459179732107264\/dCIqYBrR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915135173\/1441925255","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:48 +0000 2015","id":663727443509772289,"id_str":"663727443509772289","text":"\ub2d8\ub4e4\uc544\n\uba54\uc774\ud50c\uc785\ub355\uc2dc\ud0a8\uc0ac\ub78c\uc774\ub098\uc068\n\ud2b8\uc704\ud130\uc785\ub355\uc2dc\ud0a8\uc0ac\ub78c\uc774\ub098\uc068\n\u3148\u3145\ud574\u315b\uc694\uc81c\uac00\ub098\u314f\ube60\uc694","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":952043472,"id_str":"952043472","name":"\ud601\uc774\uc553\uc774\ubd07 \uc720\ub12c\ub2d8","screen_name":"yunelovelove","location":"\ud5e4\ub354-\ubfe1\ube75\ub2d8\u2665","url":null,"description":"FUB FREE","protected":false,"verified":false,"followers_count":478,"friends_count":187,"listed_count":4,"favourites_count":3448,"statuses_count":64004,"created_at":"Fri Nov 16 17:08:19 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600986417330716672\/4u1GSR8n.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600986417330716672\/4u1GSR8n.png","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659138141937233920\/essO7w3X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659138141937233920\/essO7w3X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/952043472\/1445265760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yunelovelove","name":"\ud601\uc774\uc553\uc774\ubd07 \uc720\ub12c\ub2d8","id":952043472,"id_str":"952043472","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079988659"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695226871808,"id_str":"663727695226871808","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906864098,"id_str":"2906864098","name":"\u0635\u062f\u0642\u0629\u062c\u0627\u0631\u064a\u0629\u0641\u064a\u0635\u0644","screen_name":"22_afana","location":"\u0627\u0641\u0631\u064a\u0642\u064a\u0627","url":null,"description":"\u0645\u0633\u0644\u0645 \u0633\u0646\u064a\/\n\u0628\u0631\u062c\u0627\u0621 \u0627\u0644\u062f\u0639\u0627\u0621 \u0628\u0625\u062e\u0644\u0627\u0635 \u0644\u0635\u0627\u062d\u0628 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629\/\u0641\u064a\u0635\u0644\n\u0641\u0647\u0648 \u0628\u064a\u0646 \u064a\u062f\u064a \u0627\u0644\u0631\u062d\u0645\u0646\/\u062c\u0632\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u0639\u0646\u0627 \u0643\u0644 \u062e\u064a\u0631","protected":false,"verified":false,"followers_count":497,"friends_count":872,"listed_count":1,"favourites_count":462,"statuses_count":21937,"created_at":"Fri Dec 05 20:45:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540971358549585920\/SCuGLutX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540971358549585920\/SCuGLutX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906864098\/1417892260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079988663"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695230996481,"id_str":"663727695230996481","text":"\u6599\u7406\u9577\u306e\u306a\u304b\u306e\u308f\u305f\u3057\u306e\u30a4\u30e1\u30fc\u30b8\u304c\u77e5\u308a\u305f\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519979217,"id_str":"519979217","name":"\u30a8\u30ea\u30ab","screen_name":"ERK_s2s2","location":null,"url":null,"description":"V\u76e4\/\uff2b\uff25\uff32\uff21\/\u67d4\u9053\/4U\/\u5fa9\u6d3b\/\u9ed2\u57f7\u4e8b\/\u9b3c\u5fb9\/\u30cf\u30a4\u30ad\u30e5\u30fc\/\u8840\u754c\u6226\u7dda\/\u5996\u602a\/\u30ce\u30e9\u30ac\u30df\/\u91ce\u5d0e\u304f\u3093\/\u30aa\u30b7\u30e3\u30ec\/\u30ed\u30ea\u30fc\u30bf\u7cfb\/\u30d5\u30ea\u30eb\/\u30ea\u30dc\u30f3\/axes\/\u7d05\u8336\/\u30af\u30e9\u30b7\u30ab\u30eb\/\u7ae5\u8a71\/\u306c\u3044\u3050\u308b\u307f\u7b49\u3092\u611b\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u5ca9\u624b( \u4e00\u6238\u9ad8\u6821)\u2192\u6771\u4eac(\u30a8\u30b3\u30fc\u30eb\u8fbb)\u2192\u795e\u5948\u5ddd 20\u2191","protected":false,"verified":false,"followers_count":165,"friends_count":165,"listed_count":0,"favourites_count":640,"statuses_count":20021,"created_at":"Sat Mar 10 01:17:45 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609967092113084416\/XmbkCy5i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609967092113084416\/XmbkCy5i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519979217\/1379248184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988664"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695239360512,"id_str":"663727695239360512","text":"RT @aaa_446laaa: \u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\n\n\u76f4\u4e5f\u304f\u3093\u3063\u76f4\u4e5f\u304f\u3093\u3063\u76f4\u4e5f\u304f\u3093\u3063\n\n\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\n\n#TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046 \n#\u6d66\u7530\u76f4\u4e5f32\u6b73\u6700\u5f8c\u306e\u65e5 \n#\u6d66\u7530\u76f4\u4e5f\u8a95\u751f\u524d\u591c\u796d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2785980109,"id_str":"2785980109","name":"\u306a\u3064\u304d","screen_name":"nsc_love","location":null,"url":null,"description":"AAA\u304c\u3060\u3044\u3059\u304d \u3042\u3063\u3077\u308b\u3042\u3063\u3077\u308b\u308b\u308b\u308b\u308b\u308b","protected":false,"verified":false,"followers_count":274,"friends_count":290,"listed_count":9,"favourites_count":2579,"statuses_count":2909,"created_at":"Tue Sep 02 13:01:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660049832539611136\/7WRYROyX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660049832539611136\/7WRYROyX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2785980109\/1414149512","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:13:37 +0000 2015","id":663706003884535808,"id_str":"663706003884535808","text":"\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\n\n\u76f4\u4e5f\u304f\u3093\u3063\u76f4\u4e5f\u304f\u3093\u3063\u76f4\u4e5f\u304f\u3093\u3063\n\n\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\u2733\ufe0f\u267b\ufe0f\ud83c\udf4f\ud83d\udc38\n\n#TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046 \n#\u6d66\u7530\u76f4\u4e5f32\u6b73\u6700\u5f8c\u306e\u65e5 \n#\u6d66\u7530\u76f4\u4e5f\u8a95\u751f\u524d\u591c\u796d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2816610194,"id_str":"2816610194","name":"\u308a \u306a \u3058 \u308d \u3046 \u265b TS.11.15","screen_name":"aaa_446laaa","location":"\u25ce TS 11\/15 , \u63e1\u624b\u4f1a 12\/06 \u25ce ","url":null,"description":"\u265b M y P r i n c e \u265b . . . ( ( @A_Shinjirooooo ) ) \u265b A A A \u265b \u8207 \u771f \u53f8 \u90ce \u304c \u5927 \u597d \u304d \u306a \u3093 \u3067 \u3059 \u3002\u308c\u3044@suki_7rainbow \u2765 \u306f\u308b\u308a\u306a@paruchia \u2765 \u308a\u306a\u306a@pekonassy0725 \u2765","protected":false,"verified":false,"followers_count":252,"friends_count":82,"listed_count":15,"favourites_count":8175,"statuses_count":4334,"created_at":"Thu Sep 18 08:15:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636361419751948288\/HnAL4Lhe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636361419751948288\/HnAL4Lhe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2816610194\/1446558885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046","indices":[57,67]},{"text":"\u6d66\u7530\u76f4\u4e5f32\u6b73\u6700\u5f8c\u306e\u65e5","indices":[69,81]},{"text":"\u6d66\u7530\u76f4\u4e5f\u8a95\u751f\u524d\u591c\u796d","indices":[83,93]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046","indices":[74,84]},{"text":"\u6d66\u7530\u76f4\u4e5f32\u6b73\u6700\u5f8c\u306e\u65e5","indices":[86,98]},{"text":"\u6d66\u7530\u76f4\u4e5f\u8a95\u751f\u524d\u591c\u796d","indices":[100,110]}],"urls":[],"user_mentions":[{"screen_name":"aaa_446laaa","name":"\u308a \u306a \u3058 \u308d \u3046 \u265b TS.11.15","id":2816610194,"id_str":"2816610194","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079988666"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695230963713,"id_str":"663727695230963713","text":"@Bakhaaat @QCastil hahahaha ayoko man!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727581330477056,"in_reply_to_status_id_str":"663727581330477056","in_reply_to_user_id":3447984564,"in_reply_to_user_id_str":"3447984564","in_reply_to_screen_name":"Bakhaaat","user":{"id":3252656772,"id_str":"3252656772","name":"Calooooy","screen_name":"CydBrrntsxx","location":"Urdaneta City, Ilocos Region","url":null,"description":"MunaMuna Again&Again","protected":false,"verified":false,"followers_count":58,"friends_count":79,"listed_count":0,"favourites_count":578,"statuses_count":985,"created_at":"Mon Jun 22 13:25:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662500475418181634\/KtQ6fk83_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662500475418181634\/KtQ6fk83_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252656772\/1435070019","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bakhaaat","name":"KiNGPiN","id":3447984564,"id_str":"3447984564","indices":[0,9]},{"screen_name":"QCastil","name":"Quenny Castil","id":3776492352,"id_str":"3776492352","indices":[10,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079988664"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695205830657,"id_str":"663727695205830657","text":"Liza TheMostBeautiful\n\nStunning so effortless. =)\n\nhttps:\/\/t.co\/YgYwFDQnb8 https:\/\/t.co\/cJHxt5l2Wz","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3690191293,"id_str":"3690191293","name":"annlauren63","screen_name":"annlauren64","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":172,"created_at":"Sat Sep 26 07:19:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647673146531692544\/awZJa6pJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647673146531692544\/awZJa6pJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YgYwFDQnb8","expanded_url":"https:\/\/instagram.com\/p\/9yuq3yFHdW\/","display_url":"instagram.com\/p\/9yuq3yFHdW\/","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":663727627052564480,"id_str":"663727627052564480","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwp4UwAAJXxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwp4UwAAJXxL.jpg","url":"https:\/\/t.co\/cJHxt5l2Wz","display_url":"pic.twitter.com\/cJHxt5l2Wz","expanded_url":"http:\/\/twitter.com\/annlauren64\/status\/663727695205830657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":552,"h":537,"resize":"fit"},"medium":{"w":552,"h":537,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727627052564480,"id_str":"663727627052564480","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwp4UwAAJXxL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwp4UwAAJXxL.jpg","url":"https:\/\/t.co\/cJHxt5l2Wz","display_url":"pic.twitter.com\/cJHxt5l2Wz","expanded_url":"http:\/\/twitter.com\/annlauren64\/status\/663727695205830657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":552,"h":537,"resize":"fit"},"medium":{"w":552,"h":537,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079988658"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695201628160,"id_str":"663727695201628160","text":"\u0645\u064f\u0634 \u0647\u0633\u062a\u0649 \u0647\u062f\u064a\u0647 \u0645\u0646\u0643 .. \u0627\u0646\u0627 \u0631\u0628\u0646\u0627 \u0647\u062f\u0627\u0646\u064a \u0628\u064a\u0643 \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":423864504,"id_str":"423864504","name":"\u2022\u2022marwa\u2022\u2022","screen_name":"memaalsaeed","location":"Egypt","url":"http:\/\/favstar.fm\/users\/memaalsaeed","description":"\u2665 \u0635\u0627\u062f\u0642 \u0645\u0646 \u062a\u064f\u062d\u0628 \u0648\u0643\u064f\u0646 \u0635\u0627\u062f\u0642\u0627\u064b \u0641\u0643\u064f\u0644 \u0645\u0646 \u0635\u0627\u062f\u0642\u062a\u0647 \u0641\u0627\u0631\u0642\u062a\u0647.. \u0625\u0646\u0647\u0627 \u0627\u0644\u062d\u064a\u0627\u0647 ..\u0648\u0627\u0630\u0643\u0631\u0648\u0646\u0649 \u0628\u0627\u0644\u062e\u064a\u0631 \u062d\u064a\u0646 \u0623\u063a\u064a\u0628 \u0641\u0631\u0628\u0645\u0627 \u0644\u0627 \u0627\u0639\u0648\u062f.Check my Favorites","protected":false,"verified":false,"followers_count":45483,"friends_count":84,"listed_count":161,"favourites_count":11262,"statuses_count":73872,"created_at":"Tue Nov 29 01:23:11 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651059447532494849\/AUWHyC5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651059447532494849\/AUWHyC5s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/423864504\/1442610083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079988657"} +{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727695205826560,"id_str":"663727695205826560","text":"\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e44\u0e21\u0e48\u0e41\u0e2e\u0e1b\u0e1b\u0e35\u0e49\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e41\u0e15\u0e48\u0e01\u0e48\u0e2d\u0e19\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988524162,"id_str":"2988524162","name":"B","screen_name":"pawineeee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":67,"listed_count":0,"favourites_count":84,"statuses_count":2846,"created_at":"Sun Jan 18 13:01:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659354073284505600\/4D92euvt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659354073284505600\/4D92euvt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988524162\/1445736063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"004a84006b71d6da","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/004a84006b71d6da.json","place_type":"city","name":"\u0e2a\u0e38\u0e23\u0e19\u0e32\u0e23\u0e35","full_name":"\u0e2a\u0e38\u0e23\u0e19\u0e32\u0e23\u0e35, \u0e08.\u0e19\u0e04\u0e23\u0e23\u0e32\u0e0a\u0e2a\u0e35\u0e21\u0e32","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[102.000000,14.912877],[102.000000,14.953810],[102.036994,14.953810],[102.036994,14.912877]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079988658"} +{"delete":{"status":{"id":663725832947437568,"id_str":"663725832947437568","user_id":2265554962,"user_id_str":"2265554962"},"timestamp_ms":"1447079989156"}} +{"delete":{"status":{"id":663717779904704512,"id_str":"663717779904704512","user_id":2161364690,"user_id_str":"2161364690"},"timestamp_ms":"1447079989372"}} +{"delete":{"status":{"id":661200945829838848,"id_str":"661200945829838848","user_id":598193404,"user_id_str":"598193404"},"timestamp_ms":"1447079989471"}} +{"delete":{"status":{"id":629651626005954560,"id_str":"629651626005954560","user_id":3306778602,"user_id_str":"3306778602"},"timestamp_ms":"1447079989600"}} +{"delete":{"status":{"id":663727657473953793,"id_str":"663727657473953793","user_id":55692324,"user_id_str":"55692324"},"timestamp_ms":"1447079989647"}} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699396030464,"id_str":"663727699396030464","text":"RT @IsaacD3: #HazAlgoXVzla este 6D votemos por la opci\u00f3n de cambio que nuestra naci\u00f3n necesita #YoSiVoto porque #ConNUVIPAsiHayFuturo @Siha\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2844877868,"id_str":"2844877868","name":"Albani pi\u00f1a","screen_name":"Albaniflak","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":46,"listed_count":0,"favourites_count":2,"statuses_count":1,"created_at":"Tue Oct 07 21:44:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 06 05:34:43 +0000 2015","id":640397696168275968,"id_str":"640397696168275968","text":"#HazAlgoXVzla este 6D votemos por la opci\u00f3n de cambio que nuestra naci\u00f3n necesita #YoSiVoto porque #ConNUVIPAsiHayFuturo @Sihayfuturo2015","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312838882,"id_str":"312838882","name":"Isaac Daniel","screen_name":"IsaacD3","location":"Anywhere","url":null,"description":"I like playing drumming, videogames, learn languages,read, say me genius and don't know why?...","protected":false,"verified":false,"followers_count":231,"friends_count":856,"listed_count":0,"favourites_count":67,"statuses_count":320,"created_at":"Tue Jun 07 19:05:50 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/698409364\/ad92f5a9d70e6eb3be3c19801e461f10.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/698409364\/ad92f5a9d70e6eb3be3c19801e461f10.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461569979817529344\/sGZitA3G_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461569979817529344\/sGZitA3G_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312838882\/1441517069","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"HazAlgoXVzla","indices":[0,13]},{"text":"YoSiVoto","indices":[82,91]},{"text":"ConNUVIPAsiHayFuturo","indices":[99,120]}],"urls":[],"user_mentions":[{"screen_name":"Sihayfuturo2015","name":"S\u00ed Hay Futuro","id":3390841401,"id_str":"3390841401","indices":[121,137]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HazAlgoXVzla","indices":[13,26]},{"text":"YoSiVoto","indices":[95,104]},{"text":"ConNUVIPAsiHayFuturo","indices":[112,133]}],"urls":[],"user_mentions":[{"screen_name":"IsaacD3","name":"Isaac Daniel","id":312838882,"id_str":"312838882","indices":[3,11]},{"screen_name":"Sihayfuturo2015","name":"S\u00ed Hay Futuro","id":3390841401,"id_str":"3390841401","indices":[134,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421212672,"id_str":"663727699421212672","text":"RT @rofesta: Que caloron que tengo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3385447930,"id_str":"3385447930","name":"CandeAgustina\u270c \u2764FM","screen_name":"Candeeeela8","location":"Capital - C\u00f3rdoba, Argentina","url":null,"description":"Amo a mi Negrito Lindo\u270c-HOCKEY\u2764-Miamor por Ti es infinito\u221e\u2661","protected":false,"verified":false,"followers_count":54,"friends_count":95,"listed_count":0,"favourites_count":110,"statuses_count":907,"created_at":"Tue Jul 21 03:56:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623347925872156672\/mDAa7jwi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623347925872156672\/mDAa7jwi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3385447930\/1439387270","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:38 +0000 2015","id":663726645564547072,"id_str":"663726645564547072","text":"Que caloron que tengo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1705299242,"id_str":"1705299242","name":"Rochy","screen_name":"rofesta","location":"No olvidar , siempre resistir.","url":null,"description":"El que se rinde no tiene premio\/\/ M\u00e1s no es mejor\/\/ 14 primaveras\/\/C\u00f3rdoba es de Talleres\u2764\/R\u00ede aunque quieras llorar","protected":false,"verified":false,"followers_count":1583,"friends_count":1078,"listed_count":5,"favourites_count":4528,"statuses_count":38641,"created_at":"Tue Aug 27 18:17:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552156558084173824\/hLQU_xsd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552156558084173824\/hLQU_xsd.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662119934504357888\/z5QLEkuu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662119934504357888\/z5QLEkuu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705299242\/1446835981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rofesta","name":"Rochy","id":1705299242,"id_str":"1705299242","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699425402880,"id_str":"663727699425402880","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1631530064,"id_str":"1631530064","name":"\u2728Court\u2728","screen_name":"XxCourtneyxX_97","location":"Dm's in Surgery ","url":null,"description":"| Ig:_smellmykickz_ |Sc:xxcourtney_97xx | Legal | Nc | Dm for Rt4Rt| Rt my Favs| Follow my back up @_SmellMyKickz_ | #InfamousGxng #Patsnation","protected":false,"verified":false,"followers_count":28222,"friends_count":26318,"listed_count":23,"favourites_count":421,"statuses_count":14165,"created_at":"Mon Jul 29 23:43:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660883868677992448\/kAiQ66VK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660883868677992448\/kAiQ66VK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1631530064\/1447032306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989664"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404439552,"id_str":"663727699404439552","text":"RT @nphegarty: Great answers from @SafiaMoore @ShortStory2000 and great questions from@MarieGethins!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242586658,"id_str":"2242586658","name":"Marie Gethins","screen_name":"MarieGethins","location":"Cork, Ireland","url":null,"description":"Writer - Litro, The Incubator, Flash, NANO, NFFD Antho, WWJ,Flash500 et al. Pushcart & Best of the Small Fictions Nominee. Working on MSt in CW, Uni of Oxford","protected":false,"verified":false,"followers_count":692,"friends_count":631,"listed_count":37,"favourites_count":2893,"statuses_count":3707,"created_at":"Thu Dec 12 16:11:48 +0000 2013","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658677196672905216\/hD35S1-Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658677196672905216\/hD35S1-Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242586658\/1403644032","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:21 +0000 2015","id":663727079083679744,"id_str":"663727079083679744","text":"Great answers from @SafiaMoore @ShortStory2000 and great questions from@MarieGethins!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663693848120418304,"in_reply_to_status_id_str":"663693848120418304","in_reply_to_user_id":2258693118,"in_reply_to_user_id_str":"2258693118","in_reply_to_screen_name":"SafiaMoore","user":{"id":1430752501,"id_str":"1430752501","name":"Neil Hegarty","screen_name":"nphegarty","location":"Ireland","url":"http:\/\/www.neilhegarty.com","description":"Biography of #DavidFrost @EburyPublishing. Writer for @Telegraph, @CARAMagazine. Represented by @DHABooks.","protected":false,"verified":false,"followers_count":1234,"friends_count":1067,"listed_count":52,"favourites_count":3742,"statuses_count":9700,"created_at":"Wed May 15 15:11:08 +0000 2013","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626119706122977280\/uRlfnZsJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626119706122977280\/uRlfnZsJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1430752501\/1438621653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SafiaMoore","name":"Safia Moore","id":2258693118,"id_str":"2258693118","indices":[19,30]},{"screen_name":"ShortStory2000","name":"The Short Story","id":1655331066,"id_str":"1655331066","indices":[31,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nphegarty","name":"Neil Hegarty","id":1430752501,"id_str":"1430752501","indices":[3,13]},{"screen_name":"SafiaMoore","name":"Safia Moore","id":2258693118,"id_str":"2258693118","indices":[34,45]},{"screen_name":"ShortStory2000","name":"The Short Story","id":1655331066,"id_str":"1655331066","indices":[46,61]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421208576,"id_str":"663727699421208576","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1868923704,"id_str":"1868923704","name":"Twoiney Lo PROMO 2","screen_name":"TwoineyLoPROMO2","location":"Baltimore","url":"http:\/\/twoineylo.tumblr.com","description":"Tweeting and Promoting everything about Twoiney Lo #WhoIsTwoineyLo #WOTShit","protected":false,"verified":false,"followers_count":34667,"friends_count":32985,"listed_count":33,"favourites_count":1866,"statuses_count":11778,"created_at":"Sun Sep 15 19:39:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618239861976338432\/DQHhIAq-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618239861976338432\/DQHhIAq-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1868923704\/1403551160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699396067328,"id_str":"663727699396067328","text":"Follow KutipanAADC yaaa :) Salam kenal kakak PEPATAHKU","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1401226393,"id_str":"1401226393","name":"Arvian Bina Sejati","screen_name":"RadioPepatah19","location":"Indonesia","url":null,"description":"4991019019 || Jujur itu lebih baik dan sangat baik #Quotes - Libra -","protected":false,"verified":false,"followers_count":1562,"friends_count":14,"listed_count":3,"favourites_count":0,"statuses_count":624894,"created_at":"Sat May 04 02:21:33 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414932061313462272\/c-W-Ia73_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414932061313462272\/c-W-Ia73_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429560320,"id_str":"663727699429560320","text":"RT @FLIRTATIOUS: I want a cute, long relationship where everyone is like \"damn, they're still together?\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1155602935,"id_str":"1155602935","name":"Clutch","screen_name":"Ty__Real","location":"Detroit, Michigan","url":"http:\/\/Facebook.com\/TyrellCrayton","description":"Be that pretty mothafucka, you could call me what you wanna.\n@Skinnysleazzz SC\u2022Trellstopit","protected":false,"verified":false,"followers_count":1065,"friends_count":867,"listed_count":0,"favourites_count":1053,"statuses_count":4292,"created_at":"Thu Feb 07 01:07:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600448458642849793\/pMEJm5hZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600448458642849793\/pMEJm5hZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1155602935\/1431992904","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 03:50:25 +0000 2015","id":662477107373727744,"id_str":"662477107373727744","text":"I want a cute, long relationship where everyone is like \"damn, they're still together?\"","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234092838,"id_str":"234092838","name":"Sex Codes","screen_name":"FLIRTATIOUS","location":"Hands On The Booty","url":null,"description":"Flirtatious? Here to feed your sex addiction. Fun, sexy, flirty & hot tweets that are very FLIRTATIOUS","protected":false,"verified":false,"followers_count":388351,"friends_count":20068,"listed_count":403,"favourites_count":63,"statuses_count":28073,"created_at":"Tue Jan 04 20:51:03 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ED0EE2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162093922\/Wle2kNlf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162093922\/Wle2kNlf.png","profile_background_tile":true,"profile_link_color":"FF0303","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424063094457790464\/B9DGKEju_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424063094457790464\/B9DGKEju_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234092838\/1445154213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":309,"favorite_count":859,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FLIRTATIOUS","name":"Sex Codes","id":234092838,"id_str":"234092838","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699396075520,"id_str":"663727699396075520","text":"RT @_Paisajes_: Imaginate unas vacaciones aqui en \"Le Meridien Bora Bora\" #AntesDeMorirTengo que visitarlo. RT si te gustaria ir. https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1849134074,"id_str":"1849134074","name":"sergio salpri","screen_name":"SergioSalpri","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":188,"friends_count":188,"listed_count":1,"favourites_count":144,"statuses_count":1096,"created_at":"Mon Sep 09 19:03:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000439795259\/7cebbc7625deb6999cb4263d2415f36e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000439795259\/7cebbc7625deb6999cb4263d2415f36e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1849134074\/1378845559","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:05:29 +0000 2015","id":663673760814252032,"id_str":"663673760814252032","text":"Imaginate unas vacaciones aqui en \"Le Meridien Bora Bora\" #AntesDeMorirTengo que visitarlo. RT si te gustaria ir. https:\/\/t.co\/m3pV1paaEu","source":"\u003ca href=\"http:\/\/www.google.es\" rel=\"nofollow\"\u003e_Paisajes_\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1190505763,"id_str":"1190505763","name":"Paisajes Incre\u00edbles","screen_name":"_Paisajes_","location":"S\u00edguenos y viaja con nosotros.","url":null,"description":"LAS MEJORES IM\u00c1GENES de naturaleza, animales y paisajes incre\u00edbles. Disfruta de la belleza de nuestro planeta. Publi: http:\/\/promotwitter.tumblr.com\/","protected":false,"verified":false,"followers_count":620436,"friends_count":5227,"listed_count":2197,"favourites_count":2,"statuses_count":66281,"created_at":"Sun Feb 17 17:55:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/890409633\/24722e45c87f7d4df832bb917dba60bb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/890409633\/24722e45c87f7d4df832bb917dba60bb.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3782021553\/cac4240510b984cb0c3ed7a90bc961a5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3782021553\/cac4240510b984cb0c3ed7a90bc961a5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1190505763\/1370885719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":109,"entities":{"hashtags":[{"text":"AntesDeMorirTengo","indices":[58,76]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663673760659075072,"id_str":"663673760659075072","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","url":"https:\/\/t.co\/m3pV1paaEu","display_url":"pic.twitter.com\/m3pV1paaEu","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663673760814252032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":399,"resize":"fit"},"large":{"w":598,"h":399,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673760659075072,"id_str":"663673760659075072","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","url":"https:\/\/t.co\/m3pV1paaEu","display_url":"pic.twitter.com\/m3pV1paaEu","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663673760814252032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":399,"resize":"fit"},"large":{"w":598,"h":399,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AntesDeMorirTengo","indices":[74,92]}],"urls":[],"user_mentions":[{"screen_name":"_Paisajes_","name":"Paisajes Incre\u00edbles","id":1190505763,"id_str":"1190505763","indices":[3,14]}],"symbols":[],"media":[{"id":663673760659075072,"id_str":"663673760659075072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","url":"https:\/\/t.co\/m3pV1paaEu","display_url":"pic.twitter.com\/m3pV1paaEu","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663673760814252032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":399,"resize":"fit"},"large":{"w":598,"h":399,"resize":"fit"}},"source_status_id":663673760814252032,"source_status_id_str":"663673760814252032","source_user_id":1190505763,"source_user_id_str":"1190505763"}]},"extended_entities":{"media":[{"id":663673760659075072,"id_str":"663673760659075072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXxN7U8AAH5kY.jpg","url":"https:\/\/t.co\/m3pV1paaEu","display_url":"pic.twitter.com\/m3pV1paaEu","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663673760814252032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":399,"resize":"fit"},"large":{"w":598,"h":399,"resize":"fit"}},"source_status_id":663673760814252032,"source_status_id_str":"663673760814252032","source_user_id":1190505763,"source_user_id_str":"1190505763"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699412787200,"id_str":"663727699412787200","text":"Get Weather Updates from The Weather Channel. 09:39:49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2259045775,"id_str":"2259045775","name":"ELNKgtbt","screen_name":"ELNKgtbt","location":null,"url":null,"description":"Continuous price updates for Earthlink (ELNK)","protected":false,"verified":false,"followers_count":8,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":56950,"created_at":"Mon Dec 23 15:06:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989661"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421188097,"id_str":"663727699421188097","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559234526,"id_str":"559234526","name":"\u044f\u0454\u029f\u029f\u1e61\u04a1\u0131","screen_name":"RellzT","location":"NJ","url":null,"description":null,"protected":false,"verified":false,"followers_count":25238,"friends_count":20361,"listed_count":26,"favourites_count":15,"statuses_count":370,"created_at":"Sat Apr 21 05:43:40 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/796571916\/124bab69f442b494054230122d67791c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/796571916\/124bab69f442b494054230122d67791c.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640242100521598976\/vcfBPcQr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640242100521598976\/vcfBPcQr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559234526\/1441899286","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699425435648,"id_str":"663727699425435648","text":"@_trisha89_ Hi trisha its Duane hear how ar u doing missing u like crazy hope to see u soon my number is 0744027172 love u lots sisther","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":644210553775357952,"in_reply_to_status_id_str":"644210553775357952","in_reply_to_user_id":308783396,"in_reply_to_user_id_str":"308783396","in_reply_to_screen_name":"_trisha89_","user":{"id":3413191899,"id_str":"3413191899","name":"duane corey ryan","screen_name":"duanecoreyryan2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Aug 10 18:16:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_trisha89_","name":"Trisha Jacobs","id":308783396,"id_str":"308783396","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989664"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699416866816,"id_str":"663727699416866816","text":"RT @fannoreturn: \u0e2d\u0e22\u0e32\u0e01\u0e43\u0e2b\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e23\u0e31\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e17\u0e33\u0e22\u0e31\u0e07\u0e44\u0e07 \u2014 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e21\u0e48\u0e23\u0e31\u0e01\u0e40\u0e2b\u0e23\u0e2d \u0e2a\u0e07\u0e2a\u0e32\u0e23555555 https:\/\/t.co\/F34XxwfeVZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2854457672,"id_str":"2854457672","name":"\u0e2b\u0e27\u0e32\u0e19\u0e40\u0e22\u0e47\u0e19\u0e19.","screen_name":"laimabin","location":"\u0e23\u0e39\u0e49\u0e19\u0e30\u0e27\u0e48\u0e32\u0e2d\u0e31\u0e19\u0e1f\u0e2d\u0e25\u0e2d\u0e49\u0e30\u270c","url":null,"description":"\u270cFB \u0e44\u0e2d\u0e15\u0e34\u0e21\u0e21\u0e21\u0e21 \u0e2a\u0e35\u0e23\u0e38\u0e49\u0e07\u0e07\u0e07\u0e07.\n \n \n IG Iaimabim\n \n \n\n ID fon1570","protected":false,"verified":false,"followers_count":359,"friends_count":274,"listed_count":0,"favourites_count":106,"statuses_count":2762,"created_at":"Mon Oct 13 14:34:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649192407024603136\/_Yaa--HD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649192407024603136\/_Yaa--HD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:42:37 +0000 2015","id":663713303793942528,"id_str":"663713303793942528","text":"\u0e2d\u0e22\u0e32\u0e01\u0e43\u0e2b\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e23\u0e31\u0e01\u0e15\u0e49\u0e2d\u0e07\u0e17\u0e33\u0e22\u0e31\u0e07\u0e44\u0e07 \u2014 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e21\u0e48\u0e23\u0e31\u0e01\u0e40\u0e2b\u0e23\u0e2d \u0e2a\u0e07\u0e2a\u0e32\u0e23555555 https:\/\/t.co\/F34XxwfeVZ","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535137568,"id_str":"535137568","name":"\u0e41\u0e1f\u0e19","screen_name":"fannoreturn","location":"ManchesterUnited","url":"http:\/\/ask.fm\/fanreacog_earth","description":"\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e19\u0e14\u0e35\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01 \u0e15\u0e34\u0e14\u0e1a\u0e2d\u0e25 \u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e25\u0e49\u0e32 \u0e41\u0e21\u0e19\u0e46\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e35\u0e46\u0e04\u0e19\u0e19\u0e36\u0e07 \u0e25\u0e38\u0e22\u0e14\u0e34\u0e27\u0e30 \u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e1c\u0e31\u0e1a \u0e40\u0e21\u0e29\u0e32 2561 #\u0e27\u0e34\u0e16\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e19\u0e08\u0e23\u0e34\u0e07","protected":false,"verified":false,"followers_count":80981,"friends_count":411,"listed_count":16,"favourites_count":18536,"statuses_count":81447,"created_at":"Sat Mar 24 08:16:44 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_tile":true,"profile_link_color":"080707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535137568\/1442132184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F34XxwfeVZ","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO7F72DS7KA3QH66HN5VD74LD6XUYYWNCII2NVKMSQBQL2Z7SEIEJNVDQV27Y4YO4R56M3ZLDERR5QAQFCCJCZTSIYHFD2IAKIHHSWXORVRLQKTY6GQX2WPWPAEIOKKAUQLT6HCH776AYDLET6DBT6O346OAGQWD33W66ZML3U7FQ442IA22SAEZ4===","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F34XxwfeVZ","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO7F72DS7KA3QH66HN5VD74LD6XUYYWNCII2NVKMSQBQL2Z7SEIEJNVDQV27Y4YO4R56M3ZLDERR5QAQFCCJCZTSIYHFD2IAKIHHSWXORVRLQKTY6GQX2WPWPAEIOKKAUQLT6HCH776AYDLET6DBT6O346OAGQWD33W66ZML3U7FQ442IA22SAEZ4===","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"fannoreturn","name":"\u0e41\u0e1f\u0e19","id":535137568,"id_str":"535137568","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079989662"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429605377,"id_str":"663727699429605377","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":935489737,"id_str":"935489737","name":"\u0394Mark posts\u0394","screen_name":"ridemyfacekilla","location":null,"url":null,"description":"ugly people can tweet","protected":false,"verified":false,"followers_count":25223,"friends_count":20333,"listed_count":38,"favourites_count":2236,"statuses_count":3668,"created_at":"Thu Nov 08 21:33:02 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/746639031\/a6dbf70221b70b031a90cfad30a07de1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/746639031\/a6dbf70221b70b031a90cfad30a07de1.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653711458417684480\/Z_EqSAo__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653711458417684480\/Z_EqSAo__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/935489737\/1415725997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400245248,"id_str":"663727699400245248","text":"It should be a thing that athletes dont have to go to class on game days","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":274068333,"id_str":"274068333","name":"Aimee Konkel","screen_name":"aimeekayyyy","location":null,"url":null,"description":"Everything I'm not, made me everything I am.","protected":false,"verified":false,"followers_count":405,"friends_count":209,"listed_count":0,"favourites_count":472,"statuses_count":4578,"created_at":"Tue Mar 29 17:27:57 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0E0E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000118769248\/6e7ccbe23e0c5d3d2db1e04e48f526c2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000118769248\/6e7ccbe23e0c5d3d2db1e04e48f526c2.jpeg","profile_background_tile":true,"profile_link_color":"933CD9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"4F084F","profile_text_color":"FCF9FC","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597162560765468672\/EmFcWTaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597162560765468672\/EmFcWTaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/274068333\/1435365394","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404288004,"id_str":"663727699404288004","text":"\uc5ed\uc2dc \ub09c \uc601\uc6d0\ud55c \uce74\ucc3d\uc778\uc0dd\uc778\uac00\ubd10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227011140,"id_str":"3227011140","name":"\uae7b\uc78e\u2606\u7c89","screen_name":"71e26322d7464b1","location":null,"url":"http:\/\/touch.pixiv.net\/member.php","description":"\u97d3\u56fd\u4eba\u3067\u3059~!\/\ud55c\uad6d\uc5b4\u30fbEnglish\u30fb\u65e5\u672c\u8a9e\u304c\u53ef\u80fd\/\n\ucd08\uba74\ud314\ub85c\uc6b0\ub294 \uad1c\ucc2e\uc2b5\ub2c8\ub2e4~ \uba58\uc158 \ubcf4\ub0b4\uc8fc\uc2dc\uba74 \ub9de\ud314\ud569\ub2c8\ub2e4! \uc8fc\ub85c \ub099\uc11c\n\u30ea\u30f3\u3061\u3083\u3093\u5927\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":98,"friends_count":130,"listed_count":0,"favourites_count":315,"statuses_count":1942,"created_at":"Tue May 26 11:49:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662938445333966848\/CijcKMR0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662938445333966848\/CijcKMR0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227011140\/1446945194","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429597184,"id_str":"663727699429597184","text":"RT @MartijnWerkenFM: Onze @astrid_002 is op zoek naar een leuke functie in Noord Holland #watnouwajong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3548181519,"id_str":"3548181519","name":"theodoor steen","screen_name":"TheodoorSteen","location":"Utrecht, The Netherlands","url":"https:\/\/nl.linkedin.com\/in\/theodoorsteen","description":"#zoektwerk #werkzoekend #Copywriter, taalpurist, filmnerd, culturele kritiek, zoekend naar vaste redactieplek, #Wajong, salonindien.nl","protected":false,"verified":false,"followers_count":86,"friends_count":569,"listed_count":1,"favourites_count":69,"statuses_count":258,"created_at":"Fri Sep 04 20:28:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650046407534080000\/K_QN7wV9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650046407534080000\/K_QN7wV9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3548181519\/1442595910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:56 +0000 2015","id":663724957847957505,"id_str":"663724957847957505","text":"Onze @astrid_002 is op zoek naar een leuke functie in Noord Holland #watnouwajong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29999439,"id_str":"29999439","name":"Martijn Smit","screen_name":"MartijnWerkenFM","location":"The Netherlands","url":"http:\/\/www.werken.fm","description":"Ondernemer bij BSD Entertainment, CSO & Presentator Werken.fm Ambassadeur en bedenker van #CareerClub, #BYT, #WATNOUWAJONG schrijft brieven aan @LodewijkA","protected":false,"verified":false,"followers_count":5953,"friends_count":3971,"listed_count":178,"favourites_count":759,"statuses_count":56067,"created_at":"Thu Apr 09 14:59:06 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087784952\/729471f54c11bbfb952f23925687eae7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087784952\/729471f54c11bbfb952f23925687eae7.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609658740997029888\/4nwoQ-X2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609658740997029888\/4nwoQ-X2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29999439\/1427575012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"watnouwajong","indices":[68,81]}],"urls":[],"user_mentions":[{"screen_name":"astrid_002","name":"Astrid Jonker","id":47145107,"id_str":"47145107","indices":[5,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"watnouwajong","indices":[89,102]}],"urls":[],"user_mentions":[{"screen_name":"MartijnWerkenFM","name":"Martijn Smit","id":29999439,"id_str":"29999439","indices":[3,19]},{"screen_name":"astrid_002","name":"Astrid Jonker","id":47145107,"id_str":"47145107","indices":[26,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699425255424,"id_str":"663727699425255424","text":"RT @syichicken: \u9078\u629e\u80a2\u304c\u30a2\u30b0\u30ca\u30d1\u30ec\u30b9\u8a9e\u3060\u304b\u3089\u5168\u304f\u308f\u304b\u3089\u306a\u3044\n #\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051 https:\/\/t.co\/YyyhGfmyvV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190178142,"id_str":"3190178142","name":"\u3055\u3057\u307f","screen_name":"azarea_az","location":"\u56db\u8449\u74b0\u30a2\u30a4\u30e9\u30f3\u30c9","url":"http:\/\/pixiv.me\/anzuann9","description":"\u3055\u3057\u307f\u91a4\u6cb9\u3067\u3059\u3002\u3046\u305f\u30d7\u30ea\u3068\u30a2\u30a4\u30ca\u30ca\u306b\u304a\u71b1\u3002\u30c8\u30ad\u97f3\u3068\u3044\u304a\u308a\u304f\u3068\u58ee\u74b0\u58ee\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":599,"friends_count":149,"listed_count":33,"favourites_count":3357,"statuses_count":15174,"created_at":"Sun May 10 00:12:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661394182422966272\/Ap9MLUaL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661394182422966272\/Ap9MLUaL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190178142\/1446538792","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:28:50 +0000 2015","id":663347448975241216,"id_str":"663347448975241216","text":"\u9078\u629e\u80a2\u304c\u30a2\u30b0\u30ca\u30d1\u30ec\u30b9\u8a9e\u3060\u304b\u3089\u5168\u304f\u308f\u304b\u3089\u306a\u3044\n #\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051 https:\/\/t.co\/YyyhGfmyvV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582636484,"id_str":"582636484","name":"\u30b7\u30fc\u30c1\u30ad\u30f3 \uff5e\u3042\u308a\u304c\u3068\u3046\u4e0d\u52d5\u5cf0\uff5e","screen_name":"syichicken","location":"\u884c\u3053\u3046\u305c\u5168\u56fd\uff01","url":"http:\/\/twpf.jp\/syichicken","description":"18\u2191 I,H\u81ea\u4f5c \u96d1\u98df\u7d75\u63cf\u304d\u30de\u30f3 FRB\u3054\u81ea\u7531\u306b\u3002 \n\u30b9\u30dd\u30fc\u30c4\u7537\u5b50\u30db\u30e2\u5927\u597d\u304d\u5be9\u795e\u8005\u304a\u3070\u3055\u3093 \n\u795e\u5c3e\u30a2\u30ad\u30e9\u3068\u4f0a\u5d0e\u9f8d\u6b21\u90ce\u304c\u751f\u304d\u308b\u7ce7\u3002 \u30c6\u30cb\u30df\u30e5\u30eb\u30c9\u5927\u962a\u21923,6,7,8,10 \u30e9\u30a4\u30d3\u30e5\u4eac\u90fd \u30da\u30c0\u30b9\u30c6\u5927\u962a\u219231\u663c\u591c","protected":false,"verified":false,"followers_count":446,"friends_count":212,"listed_count":30,"favourites_count":5486,"statuses_count":30391,"created_at":"Thu May 17 10:09:42 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660598571557777408\/fku2aE8n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660598571557777408\/fku2aE8n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582636484\/1445804568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":785,"favorite_count":471,"entities":{"hashtags":[{"text":"\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051","indices":[23,42]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663347311154630656,"id_str":"663347311154630656","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","url":"https:\/\/t.co\/YyyhGfmyvV","display_url":"pic.twitter.com\/YyyhGfmyvV","expanded_url":"http:\/\/twitter.com\/syichicken\/status\/663347448975241216\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663347311154630656,"id_str":"663347311154630656","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","url":"https:\/\/t.co\/YyyhGfmyvV","display_url":"pic.twitter.com\/YyyhGfmyvV","expanded_url":"http:\/\/twitter.com\/syichicken\/status\/663347448975241216\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051","indices":[39,58]}],"urls":[],"user_mentions":[{"screen_name":"syichicken","name":"\u30b7\u30fc\u30c1\u30ad\u30f3 \uff5e\u3042\u308a\u304c\u3068\u3046\u4e0d\u52d5\u5cf0\uff5e","id":582636484,"id_str":"582636484","indices":[3,14]}],"symbols":[],"media":[{"id":663347311154630656,"id_str":"663347311154630656","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","url":"https:\/\/t.co\/YyyhGfmyvV","display_url":"pic.twitter.com\/YyyhGfmyvV","expanded_url":"http:\/\/twitter.com\/syichicken\/status\/663347448975241216\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663347448975241216,"source_status_id_str":"663347448975241216","source_user_id":582636484,"source_user_id_str":"582636484"}]},"extended_entities":{"media":[{"id":663347311154630656,"id_str":"663347311154630656","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSu3WwVEAAHR3E.jpg","url":"https:\/\/t.co\/YyyhGfmyvV","display_url":"pic.twitter.com\/YyyhGfmyvV","expanded_url":"http:\/\/twitter.com\/syichicken\/status\/663347448975241216\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663347448975241216,"source_status_id_str":"663347448975241216","source_user_id":582636484,"source_user_id_str":"582636484"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989664"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404394496,"id_str":"663727699404394496","text":"Exchange x Bryson Tiller \ud83c\udfa7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279812018,"id_str":"279812018","name":"Jake From State Farm","screen_name":"ItsSHOW_TIME14","location":"Atlanta,Ga","url":null,"description":"Fuckin up Somebody City","protected":false,"verified":false,"followers_count":327,"friends_count":340,"listed_count":1,"favourites_count":656,"statuses_count":25405,"created_at":"Sun Apr 10 02:20:29 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/664144878\/00c28d6a5e3a9e9be6ccbf2b7c5d3e6f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/664144878\/00c28d6a5e3a9e9be6ccbf2b7c5d3e6f.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626207092496551936\/t9texsB9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626207092496551936\/t9texsB9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279812018\/1438134244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395940352,"id_str":"663727699395940352","text":"\u4f1a\u793e\u306e\u7814\u4fee\u304c\u307b\u3093\u3068\u30b4\u30df","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":572520416,"id_str":"572520416","name":"\u3046\u3081\u3061\u3083\u3093@\u3044\u3056NLD!!!","screen_name":"delaprocket","location":"\u795e\u6238","url":null,"description":"@SpursOfficial \u3068 @LUFC \u3092\u4e3b\u306b\u5fdc\u63f4\u3002\u4ee3\u8868\u306f\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u3068\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u63a8\u3057\u3002\u95d8\u5c06\u30bf\u30a4\u30d7\u306e\u9078\u624b\u3068\u3001\u30b5\u30a4\u30c9\u3092\u3057\u3063\u304b\u308a\u4f7f\u3063\u305f\u901f\u653b\u304c\u5927\u597d\u304d\u3002SW\u306eEp7\u516c\u958b\u304c\u5f85\u3061\u304d\u308c\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":378,"friends_count":374,"listed_count":7,"favourites_count":617,"statuses_count":11475,"created_at":"Sun May 06 11:00:28 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588228708005089280\/VhWE-VBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588228708005089280\/VhWE-VBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572520416\/1445268464","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421224960,"id_str":"663727699421224960","text":"Israel is USA's greatest ally! https:\/\/t.co\/oGdPqh5F34","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517350334,"id_str":"2517350334","name":"Chaim Goldberg","screen_name":"Chaim__Goldberg","location":"Israel","url":"https:\/\/8ch.net\/pol\/","description":"Proud member of the Jewish Internet Defense Force","protected":false,"verified":false,"followers_count":198,"friends_count":138,"listed_count":32,"favourites_count":30,"statuses_count":157597,"created_at":"Fri May 23 09:15:45 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637818677115547648\/7D-9jMr1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637818677115547648\/7D-9jMr1.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637818098007957504\/HW9LPuYS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637818098007957504\/HW9LPuYS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517350334\/1440902731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oGdPqh5F34","expanded_url":"http:\/\/twitter.com\/NikMoves\/status\/663727028181430272","display_url":"twitter.com\/NikMoves\/statu\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699396050944,"id_str":"663727699396050944","text":"seniel, creo que has escrito mal tu nombre en TW, pone seinel","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2430330211,"id_str":"2430330211","name":"AsierM","screen_name":"modroasi","location":"Basauri, Pa\u00eds Vasco","url":null,"description":"loco por eleccion, si eres normal alejate de mi. fan de @imsod0","protected":false,"verified":false,"followers_count":103,"friends_count":45,"listed_count":3,"favourites_count":848,"statuses_count":13629,"created_at":"Sun Apr 06 11:33:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661809621775089664\/v37rHl48_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661809621775089664\/v37rHl48_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2430330211\/1412281355","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429470213,"id_str":"663727699429470213","text":"RT @atsubotv4649: \u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214736036,"id_str":"1214736036","name":"\u307e\u308b\u308f\u3093","screen_name":"maru_2_","location":"\u30a2\u30a4\u30c9\u30eb\u3068\u672c\u3068\u6620\u753b","url":null,"description":"\u5b9f\u6cc1&\u30ec\u30dd&\u611f\u60f3\u3002","protected":false,"verified":false,"followers_count":1828,"friends_count":500,"listed_count":36,"favourites_count":13546,"statuses_count":79883,"created_at":"Sun Feb 24 07:13:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661536384868487168\/jLYe-6VX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661536384868487168\/jLYe-6VX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1214736036\/1445742514","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:10:15 +0000 2015","id":663644761874567172,"id_str":"663644761874567172","text":"\u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223278278,"id_str":"3223278278","name":"\u3042\u3064\u307c\u30fc","screen_name":"atsubotv4649","location":null,"url":null,"description":"\u3084\u3041\u3001\u3053\u3093\u3070\u3093\u308f\u3041\u30fc","protected":false,"verified":false,"followers_count":22671,"friends_count":33,"listed_count":33,"favourites_count":3,"statuses_count":54,"created_at":"Fri May 22 12:49:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223278278\/1446980441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15653,"favorite_count":17903,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[3,16]}],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433771008,"id_str":"663727699433771008","text":"RT @gustwz: deus me tira logo da puberdade nao aguento mais ter cravo e espinha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2765140673,"id_str":"2765140673","name":"anna PURPOSE #5H2","screen_name":"buteracabeyos","location":null,"url":null,"description":"I just wanna feel your lips against my skin","protected":false,"verified":false,"followers_count":14008,"friends_count":10940,"listed_count":106,"favourites_count":21614,"statuses_count":103694,"created_at":"Mon Sep 08 23:37:23 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609729475643867136\/qCR8qrO6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609729475643867136\/qCR8qrO6.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662649904830029824\/U19k3Srx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662649904830029824\/U19k3Srx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2765140673\/1446823030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:02:55 +0000 2015","id":663582518260736000,"id_str":"663582518260736000","text":"deus me tira logo da puberdade nao aguento mais ter cravo e espinha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2480861018,"id_str":"2480861018","name":"vithor","screen_name":"gustwz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":54755,"friends_count":29150,"listed_count":19,"favourites_count":19887,"statuses_count":73814,"created_at":"Wed May 07 00:43:52 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566000169624158209\/doR-1G5U.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566000169624158209\/doR-1G5U.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663439151346417664\/UPtcKL0__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663439151346417664\/UPtcKL0__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2480861018\/1444951248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gustwz","name":"vithor","id":2480861018,"id_str":"2480861018","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699417047040,"id_str":"663727699417047040","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3183168822,"id_str":"3183168822","name":"TallOne","screen_name":"TallKGod","location":"Los Angeles, CA","url":"http:\/\/enveelux.com","description":"18 Years Old\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800 Business For Clothing I Will Start Selling Soon","protected":false,"verified":false,"followers_count":32603,"friends_count":22994,"listed_count":9,"favourites_count":400,"statuses_count":5300,"created_at":"Sat May 02 18:15:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663410957712912384\/JFZx3tsT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663410957712912384\/JFZx3tsT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3183168822\/1446936625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989662"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404259328,"id_str":"663727699404259328","text":"@tomoki20011011 \n\ud83c\udf41\u540d\u524d : \u3068\u3082\u304d\uff1f\u308f\u3089\n\ud83c\udf42\u4eca\u306e\u5370\u8c61\uff1a\u308f\u304b\u3089\u3093\uff01\n\ud83c\udf30\u3069\u3093\u306a\u4eba? : \u3057\u3089\u3093\uff01\n\ud83c\udf83LINE\u4ea4\u63db :\ud83d\ude45\n\ud83c\udfc3\ud83c\udffc\u4e00\u7dd2\u306b\u3057\u305f\u3044\u3053\u3068:\u304a\u308c\u30b5\u30c3\u30ab\u30fc\u3067\u304d\u3072\u3093\uff01\n\ud83c\udf44\u4e00\u8a00 : \u3044\u3044\u306d\u3042\u308a\u304c\u3068\uff01\n\uff11\uff10\u4eba\u9650\u5b9a\uff01\uff01\uff01\n#\u3044\u3044\u306d\u3057\u305f\u4eba\u5168\u54e1\u306b\u3084\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2611662462,"in_reply_to_user_id_str":"2611662462","in_reply_to_screen_name":"tomoki20011011","user":{"id":2960448642,"id_str":"2960448642","name":"Yo-ichi","screen_name":"yuic_81","location":"\u308a\u3055\u3061\u3093\u306e\u304a\u96a3\u3055\u3093(*^^)v","url":null,"description":"\u3088\u3046\u3053\u305d\u6ecb\u8cc0\u770c\u6c11\u306e\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3078\uff01\u30dd\u30c1\u3057\u3066\u884c\u304d\u3084\uff01\u3061\u3087\u3079\u308a\u3050\u3063\u30027.28~\u308a\u3055\u3061\u3093\u3068\u5c45\u308b\u70ba\u306b\u3002\u300e@y_love_0728\u300f","protected":false,"verified":false,"followers_count":679,"friends_count":614,"listed_count":0,"favourites_count":1151,"statuses_count":3908,"created_at":"Tue Jan 06 07:28:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653628112144457728\/GZKeMJ57_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653628112144457728\/GZKeMJ57_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2960448642\/1444672061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3044\u3044\u306d\u3057\u305f\u4eba\u5168\u54e1\u306b\u3084\u308b","indices":[115,127]}],"urls":[],"user_mentions":[{"screen_name":"tomoki20011011","name":"\u3088 \u3057 \u3080 \u3089 \u3068 \u3082 \u304d","id":2611662462,"id_str":"2611662462","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408478208,"id_str":"663727699408478208","text":"RT @dddqq9: \u060c.:\u060c\u2b55\ufe0f\u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a\u2b55\ufe0f#\n\n\u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0639\u0644\u0649 \u0648\u0622\u062a\u0640\u0633 \u0622\u0628:\ud83d\udc47\ud83d\udcf2\n\n0509403252\u260e\ufe0f \n\n\u2705\u0628\u064a\u0639 \u0645\u0646\u062a\u062c\u0627\u062a\n\u2705\u0634\u0631\u0643\u0627\u062a\n\u2705\u062d\u0633\u0627\u0628\u0627\u062a\n\u2705\u0639\u0642\u0627\u0631\u0627\u062a\n\n\ud83d\udcad\u0623\u0633\u0639\u0627\u0631 \u0631\u0645\u0632\u064a\u0629\ud83d\udcad\n#\u0627\u0639\u0644\u0627\u0646\u0627\u062a \n#\u062a\u0633\u0648\u064a\u0642","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":180567911,"id_str":"180567911","name":"\u0627\u0639\u0644\u0627\u0646\u0627\u062a \u0648\u062a\u0633\u0648\u064a\u0642230K","screen_name":"ha__mdan","location":null,"url":null,"description":"\u062a\u0633\u0648\u064a\u0642 .. \u062f\u0639\u0627\u064a\u0647 .. \u0627\u0639\u0644\u0627\u0646 \u0644\u0627\u0643\u062b\u0631 \u0645\u0646 \u0645\u0644\u064a\u0648\u0646 \u0645\u062a\u0627\u0628\u0639 \u0644\u0644\u062a\u0648\u0627\u0635\u0644 \u0648\u0627\u0644\u0627\u0639\u0644\u0627\u0646 0531654854","protected":false,"verified":false,"followers_count":224844,"friends_count":221724,"listed_count":487,"favourites_count":7,"statuses_count":462357,"created_at":"Thu Aug 19 23:25:57 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597757127575379969\/hGOemTxd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597757127575379969\/hGOemTxd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180567911\/1431344133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:45:36 +0000 2015","id":663472464576532480,"id_str":"663472464576532480","text":"\u060c.:\u060c\u2b55\ufe0f\u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a\u2b55\ufe0f#\n\n\u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0639\u0644\u0649 \u0648\u0622\u062a\u0640\u0633 \u0622\u0628:\ud83d\udc47\ud83d\udcf2\n\n0509403252\u260e\ufe0f \n\n\u2705\u0628\u064a\u0639 \u0645\u0646\u062a\u062c\u0627\u062a\n\u2705\u0634\u0631\u0643\u0627\u062a\n\u2705\u062d\u0633\u0627\u0628\u0627\u062a\n\u2705\u0639\u0642\u0627\u0631\u0627\u062a\n\n\ud83d\udcad\u0623\u0633\u0639\u0627\u0631 \u0631\u0645\u0632\u064a\u0629\ud83d\udcad\n#\u0627\u0639\u0644\u0627\u0646\u0627\u062a \n#\u062a\u0633\u0648\u064a\u0642","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1575274110,"id_str":"1575274110","name":"\u2740\u2669\u237a\u0308\u0279\u0324\u14c5\u14aa\u0279\u0307\u0279\u0279\u0279","screen_name":"dddqq9","location":null,"url":null,"description":"\u26a1\ufe0f\u0644\u062f\u0639\u0627\u064a\u0629 \u0648\u0627\u0644\u0627\u0639\u0644\u0627\u0646 \u0648\u062f\u0639\u0645 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0634\u062e\u0635\u064a\u0629 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u064a\u0629 \u0644\u0623\u0643\u062b\u0631 \u0645\u0646 \u0661\u0662 \u0645\u0644\u064a\u0648\u0646 \u0645\u062a\u0627\u0628\u0639 \u062e\u0644\u064a\u062c\u064a \u0627\u0631\u062e\u0635 \u0627\u0644\u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u062a\u0648\u0627\u0635\u0644 \u0639\u0628\u0631 \u0627\u0644\u0648\u0627\u062a\u0633\u0627\u0628 \u0644\u0644\u0627\u0633\u062a\u0641\u0633\u0627\u06310509403252\u260e\ufe0f\u26a1\ufe0f\u062a\u0627\u0628\u0639 @ddqddd10 \u0644\u0645\u062a","protected":false,"verified":false,"followers_count":85401,"friends_count":14503,"listed_count":13,"favourites_count":6,"statuses_count":24771,"created_at":"Sun Jul 07 14:34:29 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661908115097526272\/4ZVn4xou_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661908115097526272\/4ZVn4xou_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1575274110\/1446646166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":3,"entities":{"hashtags":[{"text":"\u0627\u0639\u0644\u0627\u0646\u0627\u062a","indices":[110,118]},{"text":"\u062a\u0633\u0648\u064a\u0642","indices":[120,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0639\u0644\u0627\u0646\u0627\u062a","indices":[122,130]},{"text":"\u062a\u0633\u0648\u064a\u0642","indices":[132,138]}],"urls":[],"user_mentions":[{"screen_name":"dddqq9","name":"\u2740\u2669\u237a\u0308\u0279\u0324\u14c5\u14aa\u0279\u0307\u0279\u0279\u0279","id":1575274110,"id_str":"1575274110","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395907585,"id_str":"663727699395907585","text":"@wishster \u30e9\u30c3\u30af\u30b9\u30b9\u30fc\u30d1\u30fc\u30ea\u30c3\u30c1\u30b7\u30e3\u30a4\u30f3\u30fc(\u3075\u308f\u308a)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726479197368321,"in_reply_to_status_id_str":"663726479197368321","in_reply_to_user_id":1291929121,"in_reply_to_user_id_str":"1291929121","in_reply_to_screen_name":"wishster","user":{"id":3252601496,"id_str":"3252601496","name":"\u5909\u306a\u30d4\u30fc\u30b9\u9ad8\u9808","screen_name":"asak1kasa","location":null,"url":null,"description":"\u540c\u4eba\u30f2\u30bf\u57a2\u3001\u6210\u4eba\u6e08\u307f\u3002\u5c71\u5d0e\u7b46\u982d\u3092\u7b46\u982d\u306b\u771f\u9078\u7d44\u76e3\u5bdf\u3092\u611b\u3067\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u7279\u5225\u5730\u96f7\u306f\u3042\u308a\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":50,"friends_count":56,"listed_count":4,"favourites_count":4309,"statuses_count":5187,"created_at":"Mon Jun 22 11:33:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662423522111696896\/qK5kTLBU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662423522111696896\/qK5kTLBU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252601496\/1444527626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wishster","name":"atras","id":1291929121,"id_str":"1291929121","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421081600,"id_str":"663727699421081600","text":"@death_snow \u9811\u5f35\u308c\u30fc\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726105312915456,"in_reply_to_status_id_str":"663726105312915456","in_reply_to_user_id":235865028,"in_reply_to_user_id_str":"235865028","in_reply_to_screen_name":"death_snow","user":{"id":101682846,"id_str":"101682846","name":"Yoshihiko Ikawa","screen_name":"WanderingOnes","location":"\u6771\u4eac\u90fd\u897f\u6771\u4eac\u5e02","url":"http:\/\/twilog.org\/WanderingOnes","description":"\u3055\u307e\u3088\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1383,"friends_count":311,"listed_count":85,"favourites_count":89,"statuses_count":13938,"created_at":"Mon Jan 04 06:40:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609016199\/wanderingones_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609016199\/wanderingones_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"death_snow","name":"\u884c\u5f18\u3000\u8ce2","id":235865028,"id_str":"235865028","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408515073,"id_str":"663727699408515073","text":"RT @sallesino: El secreto de la felicidad consiste en que te alegren cosas muy babosas (y baratas).","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63628812,"id_str":"63628812","name":"Gerardo P.","screen_name":"himynameispollo","location":"M\u00e9xico D.F","url":"http:\/\/www.gdesign.com.mx","description":"\u2716I Born in Mexico 1989","protected":false,"verified":false,"followers_count":516,"friends_count":615,"listed_count":14,"favourites_count":3994,"statuses_count":13235,"created_at":"Fri Aug 07 03:46:09 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618286296348278784\/Wp4Fqm5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618286296348278784\/Wp4Fqm5s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63628812\/1436245915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:12:35 +0000 2015","id":663494352782553088,"id_str":"663494352782553088","text":"El secreto de la felicidad consiste en que te alegren cosas muy babosas (y baratas).","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37852433,"id_str":"37852433","name":"Eduardo Salles","screen_name":"sallesino","location":"DF","url":"http:\/\/cinismoilustrado.com","description":"Co-Founder \/ Director @Pictoline. A\u00fan un autista del alma.","protected":false,"verified":false,"followers_count":91726,"friends_count":55,"listed_count":2644,"favourites_count":111,"statuses_count":27778,"created_at":"Tue May 05 04:01:05 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/227095330\/twititit.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/227095330\/twititit.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000841960090\/d1e44120e4dc11558810d2f82a23b0ae_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000841960090\/d1e44120e4dc11558810d2f82a23b0ae_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":174,"favorite_count":273,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sallesino","name":"Eduardo Salles","id":37852433,"id_str":"37852433","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400069120,"id_str":"663727699400069120","text":"\u30de\u30f3\u30ac\u30dc\u30c3\u30af\u30b9\u3067\u9023\u8f09\u4e2d\u306e\u300c\u5929\u7a7a\u4fb5\u72af\u300d\u304c\u4eca\u30aa\u30e2\u30b7\u30ed\u30a4\uff01\nhttps:\/\/t.co\/2wfwCexUlV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2739354187,"id_str":"2739354187","name":"Honda Syouki","screen_name":"1_syouki","location":null,"url":null,"description":"\u3088\u308d\u3057\u304f","protected":false,"verified":false,"followers_count":11,"friends_count":8,"listed_count":0,"favourites_count":0,"statuses_count":649,"created_at":"Sun Aug 17 08:48:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500927520170983427\/j41k1H-D_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500927520170983427\/j41k1H-D_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2wfwCexUlV","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53vq7ws\/7qzc","display_url":"cards.twitter.com\/cards\/18ce53vq\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408515072,"id_str":"663727699408515072","text":"\uff66\uff80\uff7b\uff70\u306e\u59eb\u3092\u63a2\u3059\u3053\u3068\u3060\u3051\u3092\u76ee\u6a19\u306b\u4e0a\u4eac\u3057\u3066\u304d\u305f\u306e\u306b\u3053\u306e\u5927\u5b66\u306b\uff66\uff80\uff7b\uff70\u305d\u306e\u3082\u306e\u304c\u5b58\u5728\u3057\u306a\u3044\u3053\u3068\u3092\u77e5\u3063\u3066\u982d\u62b1\u3048\u3066\u5012\u308c\u3053\u3093\u3067\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2375172931,"id_str":"2375172931","name":"\u3057\u3085\u304c\u307f","screen_name":"haiyoritai","location":null,"url":null,"description":"\u98df\u54c12\u5e74(\u5143\u6d41\u901a) \u4e43\u6728\u574246 \u30cd\u30c3\u30c8\u30dc\u30fc\u30eb \u751f\u5354\u5b66\u751f\u59d4\u54e1 \u904a\u622f\u738b \u4f50\u85e4\u8061\u7f8e \u30e9\u30d6\u30e9\u30a4\u30d6","protected":false,"verified":false,"followers_count":69,"friends_count":70,"listed_count":0,"favourites_count":310,"statuses_count":4950,"created_at":"Thu Mar 06 10:37:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662506436916674560\/8u6EVKa__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662506436916674560\/8u6EVKa__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2375172931\/1446822296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699396042752,"id_str":"663727699396042752","text":"RT https:\/\/t.co\/q0YWiWH4iT Dutridgee: Who is trying to go to Myrtle Beach with me on spring break","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317912911,"id_str":"3317912911","name":"Emily","screen_name":"Emilythesecret","location":"Boston, MA","url":null,"description":"say hello to the world","protected":false,"verified":false,"followers_count":504,"friends_count":1840,"listed_count":230,"favourites_count":1,"statuses_count":164657,"created_at":"Mon Aug 17 15:13:48 +0000 2015","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633296015253069824\/jX3A8oJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633296015253069824\/jX3A8oJt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317912911\/1439824714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q0YWiWH4iT","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433680896,"id_str":"663727699433680896","text":"@C1192GRAPH my boy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":654820956913844224,"in_reply_to_status_id_str":"654820956913844224","in_reply_to_user_id":2824626050,"in_reply_to_user_id_str":"2824626050","in_reply_to_screen_name":"C1192GRAPH","user":{"id":3700775713,"id_str":"3700775713","name":"\u0e01\u0e39\u0e49\u0e14","screen_name":"LIGHTXBYUNB92","location":"#LightInwFam","url":null,"description":"\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e15\u0e32\u0e21\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e25\u0e22\u0e04\u0e23\u0e31\u0e1a","protected":false,"verified":false,"followers_count":15,"friends_count":5,"listed_count":0,"favourites_count":33,"statuses_count":175,"created_at":"Sun Sep 27 06:17:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711767575457792\/JSPuRUFZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711767575457792\/JSPuRUFZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3700775713\/1447076273","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"C1192GRAPH","name":"\u0e1e\u0e35\u0e48\u0e01\u0e23\u0e32\u0e1f \u0e1b\u0e23\u0e31\u0e0a\u0e0d\u0e32\u0e02\u0e35\u0e49\u0e40\u0e21\u0e32","id":2824626050,"id_str":"2824626050","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395895296,"id_str":"663727699395895296","text":"#notiziedelgiorno Doping: \"Sospendete la Russia dall'atletica\": La commissione indipenden... https:\/\/t.co\/BrWkBH9lA9 #politica #sport #in","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284128082,"id_str":"284128082","name":"Fabio Incalcaterra","screen_name":"fincalcaterra","location":"Milano Roma Palermo","url":"http:\/\/fabioincalcaterra.com","description":"Marketing Customer Base Area @FASTWEB pianista ed amante del pianoforte.#Hacker nella sua accezione pura per gioco e lavoro tra #comunicazione ed #informatica","protected":false,"verified":false,"followers_count":1387,"friends_count":304,"listed_count":968,"favourites_count":42,"statuses_count":311275,"created_at":"Mon Apr 18 17:41:09 +0000 2011","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571427206\/2012-06-05_17-08-22_2.225.115.72.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571427206\/2012-06-05_17-08-22_2.225.115.72.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCD","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/479701784957816834\/8kNGA253_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/479701784957816834\/8kNGA253_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284128082\/1402232989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"notiziedelgiorno","indices":[0,17]},{"text":"politica","indices":[117,126]},{"text":"sport","indices":[127,133]},{"text":"in","indices":[134,137]}],"urls":[{"url":"https:\/\/t.co\/BrWkBH9lA9","expanded_url":"http:\/\/bit.ly\/1WM3gcR","display_url":"bit.ly\/1WM3gcR","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421102080,"id_str":"663727699421102080","text":"2x3.5 Custom #Dental #BusinessCard Magnets - https:\/\/t.co\/qLtKC2lf43 #costeffective #custommagnets #promotionalproduct #affordable #sample","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317400342,"id_str":"317400342","name":"CustomMagnetsDirect","screen_name":"CustomMagnet","location":"United State of America","url":"https:\/\/www.custommagnetsdirect.com","description":"Custom Magnets Direct offers business card magnets, calendar magnets, sports magnets to name a few with free design & free shipping.","protected":false,"verified":false,"followers_count":316,"friends_count":633,"listed_count":79,"favourites_count":7,"statuses_count":5227,"created_at":"Tue Jun 14 21:46:58 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169111996\/e1O6lMDR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169111996\/e1O6lMDR.jpeg","profile_background_tile":false,"profile_link_color":"143CA8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBEBEB","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1490657047\/gI_0_My1Stop_comsqLogo_copy_copy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1490657047\/gI_0_My1Stop_comsqLogo_copy_copy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317400342\/1389868163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dental","indices":[13,20]},{"text":"BusinessCard","indices":[21,34]},{"text":"costeffective","indices":[69,83]},{"text":"custommagnets","indices":[84,98]},{"text":"promotionalproduct","indices":[99,118]},{"text":"affordable","indices":[119,130]},{"text":"sample","indices":[131,138]}],"urls":[{"url":"https:\/\/t.co\/qLtKC2lf43","expanded_url":"https:\/\/www.custommagnetsdirect.com\/2x3.5-Custom-Dental-Business-Card-Magnets-20-Mil-Square-Corners#.VkCvxenh9Mo.twitter","display_url":"custommagnetsdirect.com\/2x3.5-Custom-D\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699412824064,"id_str":"663727699412824064","text":"RT @cherie______: \u201ci just can't pull myself away, \nunder her spell i can't break.\"\n \nBONENZO HAS RISEN MY OTP https:\/\/t.co\/fjcBsjzTQm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663648849,"id_str":"1663648849","name":"fray 3","screen_name":"coliverdobrev","location":"muke\/4 | katie \u27b0","url":"https:\/\/twitter.com\/rosa_salazar\/status\/645029884545265664","description":"he would have been proud of you tommy \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800tmr dobrev tvd thg tw halsey t100 spn jlaw marvel","protected":false,"verified":false,"followers_count":8089,"friends_count":1122,"listed_count":100,"favourites_count":11967,"statuses_count":45549,"created_at":"Sun Aug 11 22:49:07 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577260587865911296\/eOwaP3bJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577260587865911296\/eOwaP3bJ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662367103677263872\/aQ-hKAjT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662367103677263872\/aQ-hKAjT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1663648849\/1446755598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 12:25:07 +0000 2015","id":662969024737894400,"id_str":"662969024737894400","text":"\u201ci just can't pull myself away, \nunder her spell i can't break.\"\n \nBONENZO HAS RISEN MY OTP https:\/\/t.co\/fjcBsjzTQm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736517341,"id_str":"736517341","name":"\u043b\u0435\u043a\u0441\u0435\u0432\u043d\u0430","screen_name":"cherie______","location":null,"url":null,"description":"\u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0437\u0430\u0445\u0432\u0430\u0447\u0435\u043d\u0430 \u0444\u0440\u0430\u043d\u043a\u043e, \u0433\u0440\u0438\u043d \u0438 \u0448\u0432\u0435\u0434\u0430\u043c\u0438","protected":false,"verified":false,"followers_count":326,"friends_count":156,"listed_count":3,"favourites_count":2525,"statuses_count":29239,"created_at":"Sat Aug 04 10:37:43 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654287549704351744\/XdnQ3oyn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654287549704351744\/XdnQ3oyn.jpg","profile_background_tile":true,"profile_link_color":"E68301","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369267153235968\/t31eL87H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369267153235968\/t31eL87H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736517341\/1446846520","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fjcBsjzTQm","expanded_url":"https:\/\/vine.co\/v\/eLjx9XKeiqg","display_url":"vine.co\/v\/eLjx9XKeiqg","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fjcBsjzTQm","expanded_url":"https:\/\/vine.co\/v\/eLjx9XKeiqg","display_url":"vine.co\/v\/eLjx9XKeiqg","indices":[110,133]}],"user_mentions":[{"screen_name":"cherie______","name":"\u043b\u0435\u043a\u0441\u0435\u0432\u043d\u0430","id":736517341,"id_str":"736517341","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989661"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400216576,"id_str":"663727699400216576","text":"Le pongo Damas Gratis a mi primita, y se vuelve loca jajajajajajaj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2456703140,"id_str":"2456703140","name":"Lucas!","screen_name":"LucasNahuel70","location":"221-558-9704 wsp! ","url":"http:\/\/www.instagram.com\/lucas.n.acosta","description":"Estudiantes De La Plata! \u2665\n110 A\u00f1os De Gloria","protected":false,"verified":false,"followers_count":436,"friends_count":383,"listed_count":1,"favourites_count":4069,"statuses_count":15121,"created_at":"Mon Apr 21 14:40:23 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458693319095115776\/3zgMYjEc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458693319095115776\/3zgMYjEc.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652596584501387264\/cBLmMFE1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652596584501387264\/cBLmMFE1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2456703140\/1445359138","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421036544,"id_str":"663727699421036544","text":"\uff08\u3055\u3089\u306b6\u306e\u5915\u795e\u3055\u3093\u5984\u60f3\uff09\n\u30fb\u6069\u4eba\u306a\u308b\u307b\u3069\u304f\u3093\u3078\u306e\u547c\u3073\u65b9\u304c\u300e\u6210\u306e\u5b57\u300f\u304b\u3089\u300e\u6210\u6b69\u5802\u306e\u65e6\u90a3\u300f\u306b\u306a\u3063\u3066\u308b\u3002\n\u30fb\u3057\u304b\u3057\u30aa\u30c9\u30ed\u30ad\u304f\u3093\u306b\u306f\u76f8\u5909\u308f\u3089\u305a\u300e\u6ce5\u306e\u5b57\u300f\n\u30fb\u307f\u306c\u304d\u3061\u3083\u3093\u306b\u3081\u3063\u3061\u3083\u7518\u3044\u3002\u305d\u306e\u8fba\u304b\u3089\u304b\u3064\u3066\u30b3\u30b3\u30cd\u306b\u3069\u3046\u63a5\u3057\u3066\u3044\u305f\u304b\u7686\u3055\u3093\u5bdf\u3059\u308b\u3002\n\u30fb\u7d76\u5999\u306a\u5869\u6885\u3067\u30ce\u30ed\u30b1\u308b\u3002\u30b3\u30b3\u30cd\u3061\u3083\u3093\u7167\u308c\u7167\u308c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1631041242,"id_str":"1631041242","name":"\u6625\u7530\u3068\u304b\u3061","screen_name":"harutoka373","location":"\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb","url":"http:\/\/twpf.jp\/harutoka373","description":"\u3042\u3089\u3086\u308b\u4e21\u60f3\u3044\u3092\u5168\u529b\u3067\u795d\u798f\u3057\u3066\u3044\u304f\u30b9\u30bf\u30a4\u30eb\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u3066\u307e\u3059\uff01NARUTO\u306e\u516c\u5f0f\u30ab\u30d7\u3001\u308f\u305f\u30e2\u30c6\u306e\u9ed2\u6728\u59c9\u5f1f\u306a\u3069\u306a\u3069\u597d\u304d\u306aCP\u306f\u8272\u3005\u3067\u3059\u3002\u30d8\u30c3\u30c0\u30fc\u753b\u50cf\u3068\u30a2\u30a4\u30b3\u30f3\u306e\u901a\u308a\u3001\u307f\u306a\u307f\u3051\u306e\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u3082\u5168\u54e1\u5927\u597d\u304d\u3067\u3059\uff01\uff01\u3075\u3058\u304b\u306a\u3001\u30de\u30b3\u3061\u3042\u3001\u307b\u3055\u306f\u308b\u3001\u30ca\u30c4\u30d2\u30c8\u3001\u307f\u3093\u306a\u7d50\u5a5a\u3057\u308d\uff01\uff9f+\uff61:.\uff9f\u30fd(*\u00b4\u2200`)\uff89\uff9f.:\uff61+\uff9f","protected":false,"verified":false,"followers_count":72,"friends_count":78,"listed_count":2,"favourites_count":7268,"statuses_count":10937,"created_at":"Mon Jul 29 19:20:34 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647736695148802048\/0S-yGDC__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647736695148802048\/0S-yGDC__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1631041242\/1432552061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400093697,"id_str":"663727699400093697","text":"RT @ArtKendou: \u897f\u6751\u9078\u624b\u306e\u7af9\u5200\u98db\u3070\u3057\n\n\u5bfe\u9ad8\u6a4b\u9078\u624b(\u7b2c62\u56de\u9078\u624b\u6a29\n\u5bfe\u5b89\u85e4\u9078\u624b(\u7b2c63\u56de\u9078\u624b\u6a29\n\n#kendo #\u5263\u9053\n#\u5168\u65e5\u672c\u5263\u9053\u9078\u624b\u6a29\u5927\u4f1a https:\/\/t.co\/KF3CPtzggC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687642240,"id_str":"2687642240","name":"\u3074\u3089\u3002","screen_name":"p__RinRin","location":"\u611b\u77e5","url":null,"description":"jubeat:PIRA\/MC4:_PIRA_main,sub,DyZe AXM Don't drive me crazy. \u6700\u8fd1\u3042\u3052\u305f\u52d5\u753b\u2192http:\/\/youtu.be\/_YwlBxLMkso","protected":false,"verified":false,"followers_count":279,"friends_count":195,"listed_count":2,"favourites_count":5883,"statuses_count":4272,"created_at":"Mon Jul 28 14:21:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658150077274259456\/i-g4llI8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658150077274259456\/i-g4llI8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687642240\/1446636343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 05:05:15 +0000 2015","id":661771166172909568,"id_str":"661771166172909568","text":"\u897f\u6751\u9078\u624b\u306e\u7af9\u5200\u98db\u3070\u3057\n\n\u5bfe\u9ad8\u6a4b\u9078\u624b(\u7b2c62\u56de\u9078\u624b\u6a29\n\u5bfe\u5b89\u85e4\u9078\u624b(\u7b2c63\u56de\u9078\u624b\u6a29\n\n#kendo #\u5263\u9053\n#\u5168\u65e5\u672c\u5263\u9053\u9078\u624b\u6a29\u5927\u4f1a https:\/\/t.co\/KF3CPtzggC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":971376655,"id_str":"971376655","name":"ART","screen_name":"ArtKendou","location":null,"url":null,"description":"\u751f\u7530\u2192\u9ebb\u751f29\u671f #\u7a7a\u624b #\u5263\u9053","protected":false,"verified":false,"followers_count":741,"friends_count":471,"listed_count":1,"favourites_count":2462,"statuses_count":6190,"created_at":"Mon Nov 26 05:21:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607108461369827331\/qw4il7lq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607108461369827331\/qw4il7lq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971376655\/1446897051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9463,"favorite_count":8680,"entities":{"hashtags":[{"text":"kendo","indices":[41,47]},{"text":"\u5263\u9053","indices":[48,51]},{"text":"\u5168\u65e5\u672c\u5263\u9053\u9078\u624b\u6a29\u5927\u4f1a","indices":[52,63]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661770906960728064,"id_str":"661770906960728064","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","url":"https:\/\/t.co\/KF3CPtzggC","display_url":"pic.twitter.com\/KF3CPtzggC","expanded_url":"http:\/\/twitter.com\/ArtKendou\/status\/661771166172909568\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661770906960728064,"id_str":"661770906960728064","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","url":"https:\/\/t.co\/KF3CPtzggC","display_url":"pic.twitter.com\/KF3CPtzggC","expanded_url":"http:\/\/twitter.com\/ArtKendou\/status\/661771166172909568\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":25000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/pl\/ELJ9dIauT4ClsRqi.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/320x180\/3XjTD5YiWI6lfxQa.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/640x360\/RTzYo9RlPSEbwCRh.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/1280x720\/p3EbqkBc4XiZtJ3S.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/640x360\/RTzYo9RlPSEbwCRh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/pl\/ELJ9dIauT4ClsRqi.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kendo","indices":[56,62]},{"text":"\u5263\u9053","indices":[63,66]},{"text":"\u5168\u65e5\u672c\u5263\u9053\u9078\u624b\u6a29\u5927\u4f1a","indices":[67,78]}],"urls":[],"user_mentions":[{"screen_name":"ArtKendou","name":"ART","id":971376655,"id_str":"971376655","indices":[3,13]}],"symbols":[],"media":[{"id":661770906960728064,"id_str":"661770906960728064","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","url":"https:\/\/t.co\/KF3CPtzggC","display_url":"pic.twitter.com\/KF3CPtzggC","expanded_url":"http:\/\/twitter.com\/ArtKendou\/status\/661771166172909568\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661771166172909568,"source_status_id_str":"661771166172909568","source_user_id":971376655,"source_user_id_str":"971376655"}]},"extended_entities":{"media":[{"id":661770906960728064,"id_str":"661770906960728064","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661770906960728064\/pu\/img\/pp7IKTQD2Qn4Bb97.jpg","url":"https:\/\/t.co\/KF3CPtzggC","display_url":"pic.twitter.com\/KF3CPtzggC","expanded_url":"http:\/\/twitter.com\/ArtKendou\/status\/661771166172909568\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661771166172909568,"source_status_id_str":"661771166172909568","source_user_id":971376655,"source_user_id_str":"971376655","video_info":{"aspect_ratio":[16,9],"duration_millis":25000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/pl\/ELJ9dIauT4ClsRqi.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/320x180\/3XjTD5YiWI6lfxQa.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/640x360\/RTzYo9RlPSEbwCRh.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/1280x720\/p3EbqkBc4XiZtJ3S.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/vid\/640x360\/RTzYo9RlPSEbwCRh.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661770906960728064\/pu\/pl\/ELJ9dIauT4ClsRqi.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433668608,"id_str":"663727699433668608","text":"\u3042\u3044\u3057\u304f\u308b\uff01PC\u304b\u3089\u30ad\u30e3\u30b9\u914d\u4fe1\u4e2d - \u305f\u3060\u3044\u3082(\u00b4\u30fb\u03c9\u30fb`) https:\/\/t.co\/JqqBiAzKi3","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1917255392,"id_str":"1917255392","name":"\u3042\u3044\u3057\u304f\u308b","screen_name":"iciclerain1","location":"\u65b0\u6f5f","url":null,"description":"\u898b\u3066\u306e\u901a\u308a\u7537\u3067\u3059\u2661 \u65b0\u6f5f\u30fb\u9577\u91ce\u3092\u4e2d\u5fc3\u306b\u30b3\u30b9\u30d7\u30ec\u6d3b\u52d5\u3057\u3066\u307e\u3059(\u30fb\u2200\u30fb) \u30ec\u30a4\u30e4\u30fc\u3001\u30ab\u30e1\u30e9\u30de\u30f3\u3001\u30b3\u30b9\u30d7\u30ec\u95a2\u4fc2\u8005\u306f\u30ea\u30d7\u304f\u3060\u3055\u3044\uff01\u30d5\u30a9\u30ed\u30fc\uff11\uff10\uff10\uff05\u8fd4\u3057\u307e\u3059\u266a RT\u3082\u304a\u6c17\u8efd\u306b\uff01 Cure 354379 archive http:\/\/www.cosp.jp\/prof.aspx?id=321838","protected":false,"verified":false,"followers_count":2861,"friends_count":778,"listed_count":48,"favourites_count":353,"statuses_count":5141,"created_at":"Sun Sep 29 14:20:12 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608205612040658944\/mq-_A5-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608205612040658944\/mq-_A5-G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917255392\/1441199584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JqqBiAzKi3","expanded_url":"http:\/\/cas.st\/cd3cc63","display_url":"cas.st\/cd3cc63","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395919872,"id_str":"663727699395919872","text":"RT @robotanime_bot: \u300c\u30c1\u30e3\u30fc\u30b8\u306a\u3069\u3055\u305b\u308b\u3082\u306e\u304b\u300d\u6728\u539f\u30de\u30b5\u30ad\uff08\u51a5\u738b\u8a08\u753b\u30bc\u30aa\u30e9\u30a4\u30de\u30fc\uff0f1988\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750137763,"id_str":"2750137763","name":"EXAM\uff20\u30af\u30ba\u9244","screen_name":"ken_exam","location":"\u795e\u5948\u5ddd\u770c \u6a2a\u6d5c\u5e02 \u795e\u5948\u5ddd\u533a","url":"http:\/\/mixi.jp\/show_profile.pl?id=26127809","description":"\u6a2a\u6d5c\u5728\u4f4f\u306e\u30ac\u30f3\u30aa\u30bf\u3067\u6a21\u578b\u9244\u3067\u30ed\u30c3\u30af\u30de\u30f3\u3068\u521d\u4ee3D.C.\u306e\u3053\u3068\u308a\u3055\u3093\u304c\u597d\u304d\u306a\u8001\u5bb3\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u3053\u3061\u3089\u3067\u3059\u2190","protected":false,"verified":false,"followers_count":395,"friends_count":407,"listed_count":11,"favourites_count":7294,"statuses_count":16449,"created_at":"Fri Aug 22 14:14:23 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657216434343292929\/2327eqBT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657216434343292929\/2327eqBT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2750137763\/1446862763","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:34 +0000 2015","id":663725621638381568,"id_str":"663725621638381568","text":"\u300c\u30c1\u30e3\u30fc\u30b8\u306a\u3069\u3055\u305b\u308b\u3082\u306e\u304b\u300d\u6728\u539f\u30de\u30b5\u30ad\uff08\u51a5\u738b\u8a08\u753b\u30bc\u30aa\u30e9\u30a4\u30de\u30fc\uff0f1988\uff09","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":627264691,"id_str":"627264691","name":"\u30ed\u30dc\u30c3\u30c8\u30a2\u30cb\u30e1\u540d\u30d5\u30ec\u30fc\u30babot","screen_name":"robotanime_bot","location":"\u56e0\u679c\u5730\u5e73","url":null,"description":"150\u4f5c\u54c1\u4ee5\u4e0a\u306e\u30ed\u30dc\u30c3\u30c8\u30a2\u30cb\u30e1\u306e\u540d\u30d5\u30ec\u30fc\u30ba\u306e\u4e2d\u304b\u3089\u3001\u5370\u8c61\u7684\u306a\u53f0\u8a5e\u3092\u4e2d\u5fc3\u306b\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u305f\u307e\u306b\u6b21\u56de\u4e88\u544a\u3084\u30ad\u30e3\u30c3\u30c1\u30b3\u30d4\u30fc\u3001\u3068\u304d\u3069\u304d\u8ff7\u53f0\u8a5e\u306a\u3093\u304b\u3082\u3002\u30aa\u30b9\u30b9\u30e1\u306e\u540d\u30d5\u30ec\u30fc\u30ba\u304c\u3042\u3063\u305f\u3089\u5f53bot\u5b9b\u306b\u30ea\u30d7\u30e9\u30a4\u3092\u9001\u3063\u3066\u3082\u3089\u3048\u308c\u3070\u3001\u3082\u3057\u304b\u3057\u305f\u3089\u8ffd\u52a0\u3055\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\u4f5c\u6210\u8005\uff1a@s_s_nozzo\u3000\u73fe\u5728\u306e\u53ce\u9332\u30d5\u30ec\u30fc\u30ba\uff1a659\u7a2e\u985e","protected":false,"verified":false,"followers_count":11735,"friends_count":6366,"listed_count":308,"favourites_count":8,"statuses_count":38223,"created_at":"Thu Jul 05 10:15:11 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2370309571\/wbrqk85bhdg3mpzozoqg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2370309571\/wbrqk85bhdg3mpzozoqg_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"robotanime_bot","name":"\u30ed\u30dc\u30c3\u30c8\u30a2\u30cb\u30e1\u540d\u30d5\u30ec\u30fc\u30babot","id":627264691,"id_str":"627264691","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395907584,"id_str":"663727699395907584","text":"@motunabe4864 \n\u30c4\u30a4\u30f3\u30ba\uff3c(\u2018\u03c9\u2019)\uff0f\n\u3044\u3064\u304b\u4e00\u7dd2\u306b\u5bb6\u3092\u5efa\u3066\u307e\u3057\u3087\u3046\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712397710901252,"in_reply_to_status_id_str":"663712397710901252","in_reply_to_user_id":3271425240,"in_reply_to_user_id_str":"3271425240","in_reply_to_screen_name":"motunabe4864","user":{"id":3045053278,"id_str":"3045053278","name":"\u3089\u3089\u2606\u2605","screen_name":"Rara_a1021","location":null,"url":"http:\/\/hibari.nana-music.com\/w\/profile\/662465\/","description":"\u2729\ufe0e\u2871Rep's\u306e\u7d62\u702c\u7d75\u91cc\u5f79\u3067\u3059 .\u2022\u02d6\u0971*\u2445 nana\u3092\u4e2d\u5fc3\u306b\u6b4c\u771f\u4f3c\u3057\u3066\u307e\u3059\u3002CAS\u4f4e\u6d6e\u4e0a\u3002\u8a73\u3057\u304f\u306f\u30b3\u30c1\u30e9\u304b\u3089\u21d2http:\/\/twpf.jp\/Rara_a1021","protected":false,"verified":false,"followers_count":278,"friends_count":243,"listed_count":19,"favourites_count":2390,"statuses_count":2304,"created_at":"Thu Feb 19 19:50:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613913167027007488\/MYE8xyuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613913167027007488\/MYE8xyuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3045053278\/1446739748","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"motunabe4864","name":"\u7d17\u3005\u306e\u6728","id":3271425240,"id_str":"3271425240","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429462016,"id_str":"663727699429462016","text":"@kr0euLXQuT3rW1S \n\n\u3057\u304b\u3082\u53cb\u9054\u3068\u304a\u63c3\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725267051921409,"in_reply_to_status_id_str":"663725267051921409","in_reply_to_user_id":3278293093,"in_reply_to_user_id_str":"3278293093","in_reply_to_screen_name":"kr0euLXQuT3rW1S","user":{"id":3104193974,"id_str":"3104193974","name":"\u3053\u3088\u308a\u59eb","screen_name":"comp_magic","location":"\u677e\u5c3e\u6c0f\u306e\u3053\u3088\u308a\u59eb\u67a0","url":null,"description":"\u2765\u2765 \u307e \u3064 \u304a \u305f \u304b \u3057 \u2765\u2765 \u305f \u3061 \u3070 \u306a \u3068 \u3046 \u3044 | \u305f\u3044\u305b\u3064\u3055\u3093 \u261e @kr0euLXQuT3rW1S | summerdream \u261e @kai____na | @yadekon_\u306f\u308f\u305f\u3057\u306e\u3082\u306e | \u5175\u5eab","protected":false,"verified":false,"followers_count":422,"friends_count":447,"listed_count":54,"favourites_count":2244,"statuses_count":6992,"created_at":"Mon Mar 23 04:07:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654669011834109953\/z21_GynJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654669011834109953\/z21_GynJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104193974\/1430787068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kr0euLXQuT3rW1S","name":"\u307f\u308f(\u306a\u3093\u3068\u304b\u677e \u304d\u3044\u308d)","id":3278293093,"id_str":"3278293093","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400065025,"id_str":"663727699400065025","text":"@n_pepy \u0e2a\u0e39\u0e49 \u0e40\u0e23\u0e32\u0e01\u0e47\u0e08\u0e30\u0e1c\u0e2d\u0e21\u0e21\u0e31\u0e49\u0e07\u0e07\u0e07","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727620316487680,"in_reply_to_status_id_str":"663727620316487680","in_reply_to_user_id":4096588038,"in_reply_to_user_id_str":"4096588038","in_reply_to_screen_name":"n_pepy","user":{"id":95921594,"id_str":"95921594","name":"\u2765\uc624\ub9ac\ube0c\u30c4","screen_name":"chokywing","location":null,"url":null,"description":"\u2605 Super Junior \u2605 Not the End but And \u2765@siwon407 \u263b || GOT7 Def_soul_JB \u30c4","protected":false,"verified":false,"followers_count":488,"friends_count":424,"listed_count":5,"favourites_count":5865,"statuses_count":118303,"created_at":"Thu Dec 10 15:22:14 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAA237","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/367251576\/back14.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/367251576\/back14.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BFFC74","profile_text_color":"FF0F3B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646465029823266816\/BvgzO5Y8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646465029823266816\/BvgzO5Y8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95921594\/1375718404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"n_pepy","name":":))","id":4096588038,"id_str":"4096588038","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699416891392,"id_str":"663727699416891392","text":"\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":627564028,"id_str":"627564028","name":"\u2764\ufe0f Bday Nov 10 \u2764\ufe0f","screen_name":"Masicka_Barbie","location":"Jamaica ","url":"https:\/\/m.facebook.com\/santana.b.robinson?refid=17","description":"IG:Masicka_barbie~\u2764\ufe0f\u043c\u03c3\u043c\u043c\u0443 \u2665\u011e\u044f\u03b1\u0438\u2202\u043c\u03b1 \u2764\ufe0f#F\u03c5\u0442\u03c5\u044f\u0454\u0438\u03c5\u044f\u0455\u0454 \u2764\ufe0f#\u00a2\u043d\u044f\u03b9\u0455 \u0432\u044f\u03c3\u03c9\u0438 \u2764\ufe0f#\u0432\u044f\u03b1z\u03b9\u2113 \u2764\ufe0f#\u00a2\u043d\u0454\u2113\u0455\u0454\u03b1 \u2764\ufe0f#\u043d\u03b1z\u03b1\u044f\u2202 \u2764\ufe0f#\u0438\u0454\u0443\u043c\u03b1r \u2764\ufe0f#\u00a2\u043d\u03b1\u0438\u0438\u0454\u2113 \u2764\ufe0f#\u044f.\u03b9.\u03c1 \u0432\u044f\u03c3 \u05e0.\u043c. \u2764\ufe0f#\u043c\u03b1\u0455\u03b9\u00a2\u043a\u03b1 \u2764\ufe0f#\u0455\u0442g\u00a2","protected":false,"verified":false,"followers_count":944,"friends_count":589,"listed_count":6,"favourites_count":1884,"statuses_count":112249,"created_at":"Thu Jul 05 17:23:23 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521788034065244160\/pA_8Mj02.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521788034065244160\/pA_8Mj02.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656948045603471360\/uHroO1VO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656948045603471360\/uHroO1VO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/627564028\/1446758654","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079989662"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404288006,"id_str":"663727699404288006","text":"@aripara456 \u63a1\u70b9\u306f\u57fa\u672c\u97f3\u7a0b\u91cd\u8996\u3060\u304b\u3089\u306d\u30fc(>_<)\uff01\n\u97f3\u3092\u6b63\u78ba\u306b\u3068\u308b\u3068\u70b9\u6570\u30a2\u30c3\u30d7\u3060\u306d\ud83d\ude0e\ud83d\ude02\ud83d\ude2e\n\n\u3046\u30fc\u3093\u3001\u3086\u304d\u306f\u3001\u305d\u3046\u3044\u3046\u306e\u306f\u3042\u307e\u308a\u8003\u3048\u305a\u306b\n\u6c17\u6301\u3061\u3068\u8e8d\u52d5\u611f\u3063\u3066\u3044\u3046\u304b\u60c5\u71b1\u3082CD\u3092\u901a\u3057\u3066\u3067\u3082\u4f1d\u308f\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3063\u3066\u601d\u3046\u304b\u3089\n\n\u30e9\u30a4\u30d6\u3068\u540c\u3058\u3088\u3046\u306b\u6b4c\u3063\u3066\u304a\u308a\u307e\u3059\ud83c\udf1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717007771090944,"in_reply_to_status_id_str":"663717007771090944","in_reply_to_user_id":2549782452,"in_reply_to_user_id_str":"2549782452","in_reply_to_screen_name":"aripara456","user":{"id":1313506584,"id_str":"1313506584","name":"\u8352\u4e95\u512a\u5e0c\u263b\uff18princess","screen_name":"yukinchu_8pri","location":"\u516b\u738b\u5b50","url":"http:\/\/www.eq-tribe.com\/8princess\/","description":"\u2600\ufe0f\u516b\u738b\u5b50\u304b\u3089\u3067\u30fc\u30fc\u30fc\u3063\u304b\u3044\u5922\u53f6\u3048\u308b\u3088\uff01\u2600\u516b\u738b\u5b50\u5e02\u306e\u30a2\u30a4\u30c9\u30eb\u300c8princess(\u306f\u3061\u3077\u308a) \u300d\u2661\u8352\u4e95\u512a\u5e0c(\u3042\u3089\u3044\u3086\u304d) \u2661\u30d4\u30f3\u30af\u62c5\u5f53\uff0f\u30ea\u30fc\u30c0\u30fc\uff0f\u76ee\u7acb\u3061\u305f\u3044\u25b6\ufe0e\u6bce\u6708\u516b\u738b\u5b50\u306b\u3066\u5b9a\u671f\u30e9\u30a4\u30d6\u300c\u516b\u59eb\u796d\u300d\u3092\u958b\u50ac\u4e2d\uff01\u263a\ufe0e11\/22\u516b\u59eb\u796d1\u5468\u5e74@\u516b\u738b\u5b50RIPS \u65b0\u66f2\u767a\u8868http:\/\/s.ameblo.jp\/yukinchu-8pri","protected":false,"verified":false,"followers_count":1764,"friends_count":153,"listed_count":86,"favourites_count":12133,"statuses_count":35325,"created_at":"Fri Mar 29 12:00:57 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647903445760917505\/F7HiuSLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647903445760917505\/F7HiuSLq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1313506584\/1442544268","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aripara456","name":"\u30a2\u30ea\u30d1\u30e9@\u5728\u5b85\u304a\u3062\u3055\u3093","id":2549782452,"id_str":"2549782452","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408633857,"id_str":"663727699408633857","text":"eu agora tentando desligar o ventilador com o controle da tv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267801154,"id_str":"267801154","name":"louco e ligeiro","screen_name":"afonsomends_","location":"Fortaleza, CE","url":null,"description":"Melhor machucarem meu cu do que meu \u2764\ufe0f","protected":false,"verified":false,"followers_count":759,"friends_count":292,"listed_count":5,"favourites_count":2434,"statuses_count":2828,"created_at":"Thu Mar 17 15:25:28 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/218831448\/page.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/218831448\/page.jpg","profile_background_tile":false,"profile_link_color":"A8C5C1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650495736224813056\/k1Sal5hL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650495736224813056\/k1Sal5hL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267801154\/1445361882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699404398592,"id_str":"663727699404398592","text":"RT @An_141: - https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":507302412,"id_str":"507302412","name":"D7ooM","screen_name":"D70oM20","location":null,"url":null,"description":"Just #Hilal & #Bayern fan \u2764\ufe0f","protected":false,"verified":false,"followers_count":78,"friends_count":294,"listed_count":0,"favourites_count":2,"statuses_count":2040,"created_at":"Tue Feb 28 12:24:23 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438430765\/1152vl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438430765\/1152vl.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649907856355889152\/kU8u8TtH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649907856355889152\/kU8u8TtH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/507302412\/1443784797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:58 +0000 2015","id":663727486031822848,"id_str":"663727486031822848","text":"- https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577121968,"id_str":"577121968","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","screen_name":"An_141","location":"Riyadh","url":"http:\/\/ask.fm\/iAn141","description":"\u0623\u062e\u0628\u062b \u0645\u0645\u0627 \u062a\u0638\u064f\u0646\u060c \u0648\u0623\u0641\u0636\u0644 \u0645\u0645\u0627 \u062a\u062a\u0648\u0642\u0639 SnapChat\/Kik : An_141 \u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a : ads.an141@gmail.com","protected":false,"verified":false,"followers_count":179881,"friends_count":398,"listed_count":332,"favourites_count":967,"statuses_count":28930,"created_at":"Fri May 11 13:04:40 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577121968\/1445965875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727458366136320,"id_str":"663727458366136320","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}}},{"id":663727458680729601,"id_str":"663727458680729601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663727458806575104,"id_str":"663727458806575104","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[3,10]}],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458366136320,"id_str":"663727458366136320","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458680729601,"id_str":"663727458680729601","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458806575104,"id_str":"663727458806575104","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079989659"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395895297,"id_str":"663727699395895297","text":"RT @am_ampm: \u0e08\u0e23\u0e34\u0e07\u0e40\u0e23\u0e32\u0e27\u0e48\u0e32 SM \u0e41\u0e08\u0e49\u0e07\u0e01\u0e31\u0e1a Youtube \u0e44\u0e14\u0e49\u0e19\u0e30 \u0e02\u0e36\u0e49\u0e19\u0e01\u0e31\u0e1a\u0e08\u0e30\u0e41\u0e08\u0e49\u0e07\u0e23\u0e36\u0e40\u0e1b\u0e25\u0e48\u0e32 \u0e02\u0e19\u0e32\u0e14\u0e15\u0e2d\u0e19 Party \u0e40\u0e02\u0e35\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e27\u0e07\u0e43\u0e19\u0e04\u0e25\u0e34\u0e1b\u0e1c\u0e34\u0e14 \u0e22\u0e31\u0e07\u0e41\u0e01\u0e49+\u0e23\u0e31\u0e01\u0e29\u0e32\u0e27\u0e34\u0e27\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22 555555555555\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453042460,"id_str":"2453042460","name":"\u0e02\u0e19\u0e04\u0e34\u0e49\u0e27\u0e41\u0e17\u0e22\u0e2d\u0e19","screen_name":"Thidafany","location":"\u0e43\u0e19\u0e01\u0e33\u0e41\u0e1e\u0e07\u0e17\u0e35\u0e48\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e2a\u0e23\u0e49\u0e32\u0e07","url":null,"description":"SONE|ig:Aaeyy__yy","protected":false,"verified":false,"followers_count":227,"friends_count":163,"listed_count":3,"favourites_count":589,"statuses_count":36663,"created_at":"Sat Apr 19 12:19:16 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663697364926902272\/oDhonT-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663697364926902272\/oDhonT-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453042460\/1444044799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:01 +0000 2015","id":663724729610563584,"id_str":"663724729610563584","text":"\u0e08\u0e23\u0e34\u0e07\u0e40\u0e23\u0e32\u0e27\u0e48\u0e32 SM \u0e41\u0e08\u0e49\u0e07\u0e01\u0e31\u0e1a Youtube \u0e44\u0e14\u0e49\u0e19\u0e30 \u0e02\u0e36\u0e49\u0e19\u0e01\u0e31\u0e1a\u0e08\u0e30\u0e41\u0e08\u0e49\u0e07\u0e23\u0e36\u0e40\u0e1b\u0e25\u0e48\u0e32 \u0e02\u0e19\u0e32\u0e14\u0e15\u0e2d\u0e19 Party \u0e40\u0e02\u0e35\u0e22\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e27\u0e07\u0e43\u0e19\u0e04\u0e25\u0e34\u0e1b\u0e1c\u0e34\u0e14 \u0e22\u0e31\u0e07\u0e41\u0e01\u0e49+\u0e23\u0e31\u0e01\u0e29\u0e32\u0e27\u0e34\u0e27\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22 55555555555555555","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":409847969,"id_str":"409847969","name":"lame duck~*","screen_name":"am_ampm","location":null,"url":"http:\/\/ampm11.wordpress.com\/","description":"Life is a lot more fragile than we think.\u2665 \u0e40\u0e27\u0e34\u0e48\u0e19\u0e40\u0e27\u0e49\u0e2d \ud0f1\uc2f4","protected":false,"verified":false,"followers_count":5444,"friends_count":309,"listed_count":20,"favourites_count":12214,"statuses_count":64484,"created_at":"Fri Nov 11 09:17:26 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516786869778911233\/RV9S9hZ8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516786869778911233\/RV9S9hZ8.jpeg","profile_background_tile":true,"profile_link_color":"269183","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606293343656509441\/enlGgHkd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606293343656509441\/enlGgHkd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/409847969\/1412046494","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"am_ampm","name":"lame duck~*","id":409847969,"id_str":"409847969","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433816065,"id_str":"663727699433816065","text":"RT @RealPost4U: Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906760416,"id_str":"2906760416","name":".","screen_name":"TheBigHomieTwon","location":"St. Louis \u2708\ufe0f Atlanta","url":null,"description":"#BlackMafia | RETWEETS ARE NOT MINE | RETWEET MY FAVS | TURN ON MY NOTIFICATIONS | Girls With Tiger Stripes \u2764 |","protected":false,"verified":false,"followers_count":32458,"friends_count":26855,"listed_count":30,"favourites_count":143,"statuses_count":5156,"created_at":"Sat Nov 22 06:34:22 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662577359317520384\/7HgbFKXJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662577359317520384\/7HgbFKXJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906760416\/1433668554","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:58:49 +0000 2015","id":663626785079164929,"id_str":"663626785079164929","text":"Red & Black Air Huaraches\ud83d\ude0d\n\nFree Shipping+10% Off With \nPromo Code: \"CASH\" \nAvailable At https:\/\/t.co\/TRpd4apOIn https:\/\/t.co\/141jGlN4b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067335362,"id_str":"3067335362","name":"RealPostsOnly","screen_name":"RealPost4U","location":null,"url":null,"description":"Hit Follow and Enjoy","protected":false,"verified":false,"followers_count":9899,"friends_count":10116,"listed_count":1,"favourites_count":12,"statuses_count":30,"created_at":"Sun Mar 08 01:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574381796596416512\/Faa9EZ17_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067335362\/1425778366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}}},{"id":663626779785990145,"id_str":"663626779785990145","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TRpd4apOIn","expanded_url":"http:\/\/www.farbeyondbasic.com\/","display_url":"farbeyondbasic.com","indices":[109,132]}],"user_mentions":[{"screen_name":"RealPost4U","name":"RealPostsOnly","id":3067335362,"id_str":"3067335362","indices":[3,14]}],"symbols":[],"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"extended_entities":{"media":[{"id":663626784018042880,"id_str":"663626784018042880","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtC0TUkAAZvXK.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":570,"h":400,"resize":"fit"},"large":{"w":570,"h":400,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"},{"id":663626779785990145,"id_str":"663626779785990145","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWtCkiUkAEiqnC.jpg","url":"https:\/\/t.co\/141jGlN4b9","display_url":"pic.twitter.com\/141jGlN4b9","expanded_url":"http:\/\/twitter.com\/RealPost4U\/status\/663626785079164929\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":310,"resize":"fit"},"medium":{"w":480,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663626785079164929,"source_status_id_str":"663626785079164929","source_user_id":3067335362,"source_user_id_str":"3067335362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699412697088,"id_str":"663727699412697088","text":"El Plan de Recuperaci\u00f3n del \u00c1guila Imperial Ib\u00e9rica consigue duplicar la poblaci\u00f3n en Castilla y Le\u00f3n: El dire... https:\/\/t.co\/1SYWNeiux6","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":621431753,"id_str":"621431753","name":"Ekuare MM","screen_name":"EkuareMM","location":"Guayaquil - Ecuador","url":null,"description":"Marketing - Publicidad - Computaci\u00f3n - Dise\u00f1o gr\u00e1fico - Emprendimiento - Inform\u00e1tica. Optimista, So\u00f1ador, Idealista, Padre de IvAnNiTa y Esposo de @Jeka_Valle","protected":false,"verified":false,"followers_count":668,"friends_count":816,"listed_count":208,"favourites_count":3529,"statuses_count":52121,"created_at":"Fri Jun 29 00:36:11 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469692285811052545\/qn3hBh6W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469692285811052545\/qn3hBh6W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621431753\/1400818381","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1SYWNeiux6","expanded_url":"http:\/\/bit.ly\/1NEzCWy","display_url":"bit.ly\/1NEzCWy","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989661"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400253440,"id_str":"663727699400253440","text":"@Sebazzz_ yesh bro but my sister is going to the hospital when my mom gets here. she got burned by the seat belt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726998758494208,"in_reply_to_status_id_str":"663726998758494208","in_reply_to_user_id":290168148,"in_reply_to_user_id_str":"290168148","in_reply_to_screen_name":"Sebazzz_","user":{"id":2216545367,"id_str":"2216545367","name":"M\u00f8ney$","screen_name":"pablo_niggaa","location":"Miami,FL","url":null,"description":"Dominicano","protected":false,"verified":false,"followers_count":150,"friends_count":101,"listed_count":0,"favourites_count":6176,"statuses_count":5201,"created_at":"Mon Dec 09 22:31:16 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656106646704365568\/aei2GUmm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656106646704365568\/aei2GUmm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2216545367\/1445056403","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sebazzz_","name":"$$$","id":290168148,"id_str":"290168148","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989658"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395915780,"id_str":"663727699395915780","text":"RT @poqwesdk: \u3010\u95b2\u89a7\u6ce8\u610f\u3011\u5acc\u3044\u306a\u30ad\u30c1\u30de\u30de\u306b\u5a9a\u85ac\u98f2\u307e\u305b\u3066\u6d6e\u6c17\u3055\u305b\u3066\u5bb6\u5ead\u5d29\u58ca\u3055\u305b\u305f\u3063\u305f\u7d50\u679c\uff57\uff57\uff57\uff57\n\n\u21d2https:\/\/t.co\/G2QoBCrDax https:\/\/t.co\/tIdmzc0a4b","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003e\u82b8\u80fd\u30b4\u30b7\u30c3\u30d7\u30cb\u30e5\u30fc\u30b9\u307e\u3068\u3081\u3063\u305f\u30fc( ^\u03c9^ )\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2930515914,"id_str":"2930515914","name":"\u307e\u3061\u3053","screen_name":"machiko820309","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":206,"listed_count":0,"favourites_count":0,"statuses_count":1094,"created_at":"Mon Dec 15 05:40:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544990109448155136\/c1qDOHmW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544990109448155136\/c1qDOHmW_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:32 +0000 2015","id":663722341193551872,"id_str":"663722341193551872","text":"\u3010\u95b2\u89a7\u6ce8\u610f\u3011\u5acc\u3044\u306a\u30ad\u30c1\u30de\u30de\u306b\u5a9a\u85ac\u98f2\u307e\u305b\u3066\u6d6e\u6c17\u3055\u305b\u3066\u5bb6\u5ead\u5d29\u58ca\u3055\u305b\u305f\u3063\u305f\u7d50\u679c\uff57\uff57\uff57\uff57\n\n\u21d2https:\/\/t.co\/G2QoBCrDax https:\/\/t.co\/tIdmzc0a4b","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003ewertkios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130363953,"id_str":"4130363953","name":"\u3055\u3086\u307f\u3093\u3050","screen_name":"poqwesdk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":30,"created_at":"Thu Nov 05 02:28:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G2QoBCrDax","expanded_url":"http:\/\/bit.ly\/1M1hKTr","display_url":"bit.ly\/1M1hKTr","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":663606241701163008,"id_str":"663606241701163008","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","url":"https:\/\/t.co\/tIdmzc0a4b","display_url":"pic.twitter.com\/tIdmzc0a4b","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/663606243567665152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}},"source_status_id":663606243567665152,"source_status_id_str":"663606243567665152","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":663606241701163008,"id_str":"663606241701163008","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","url":"https:\/\/t.co\/tIdmzc0a4b","display_url":"pic.twitter.com\/tIdmzc0a4b","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/663606243567665152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}},"source_status_id":663606243567665152,"source_status_id_str":"663606243567665152","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G2QoBCrDax","expanded_url":"http:\/\/bit.ly\/1M1hKTr","display_url":"bit.ly\/1M1hKTr","indices":[57,80]}],"user_mentions":[{"screen_name":"poqwesdk","name":"\u3055\u3086\u307f\u3093\u3050","id":4130363953,"id_str":"4130363953","indices":[3,12]}],"symbols":[],"media":[{"id":663606241701163008,"id_str":"663606241701163008","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","url":"https:\/\/t.co\/tIdmzc0a4b","display_url":"pic.twitter.com\/tIdmzc0a4b","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/663606243567665152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}},"source_status_id":663606243567665152,"source_status_id_str":"663606243567665152","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":663606241701163008,"id_str":"663606241701163008","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWaXGNUcAAZGIc.jpg","url":"https:\/\/t.co\/tIdmzc0a4b","display_url":"pic.twitter.com\/tIdmzc0a4b","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/663606243567665152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}},"source_status_id":663606243567665152,"source_status_id_str":"663606243567665152","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699425300480,"id_str":"663727699425300480","text":"pape pasni kena report kat hanis baru menjadi \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387698891,"id_str":"387698891","name":"Vanilla","screen_name":"asmaemie","location":null,"url":null,"description":"One Day I'm Gonna Fly Away","protected":false,"verified":false,"followers_count":367,"friends_count":243,"listed_count":1,"favourites_count":2800,"statuses_count":13555,"created_at":"Sun Oct 09 14:29:18 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570273295501496320\/gTJ971Jq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570273295501496320\/gTJ971Jq.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637257518406721536\/T0wDbtck_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637257518406721536\/T0wDbtck_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387698891\/1446694274","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079989664"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699412676608,"id_str":"663727699412676608","text":"https:\/\/t.co\/uMi60ikcQr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2681825280,"id_str":"2681825280","name":"\u674e\u864e","screen_name":"today1023","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":111,"friends_count":757,"listed_count":2,"favourites_count":941,"statuses_count":265,"created_at":"Sat Jul 26 08:56:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510245088119644160\/AQ_XIWoE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510245088119644160\/AQ_XIWoE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2681825280\/1410486799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662443182097981440,"id_str":"662443182097981440","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTF4kHjUYAARrsK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTF4kHjUYAARrsK.jpg","url":"https:\/\/t.co\/uMi60ikcQr","display_url":"pic.twitter.com\/uMi60ikcQr","expanded_url":"http:\/\/twitter.com\/camgirlz1\/status\/662443183515791360\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":680,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":662443183515791360,"source_status_id_str":"662443183515791360","source_user_id":1290140503,"source_user_id_str":"1290140503"}]},"extended_entities":{"media":[{"id":662443182097981440,"id_str":"662443182097981440","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTF4kHjUYAARrsK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTF4kHjUYAARrsK.jpg","url":"https:\/\/t.co\/uMi60ikcQr","display_url":"pic.twitter.com\/uMi60ikcQr","expanded_url":"http:\/\/twitter.com\/camgirlz1\/status\/662443183515791360\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":680,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":662443183515791360,"source_status_id_str":"662443183515791360","source_user_id":1290140503,"source_user_id_str":"1290140503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079989661"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408457728,"id_str":"663727699408457728","text":"Things Girls Do With B00bs https:\/\/t.co\/VeWxzAy53y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3109310479,"id_str":"3109310479","name":"Paris","screen_name":"6DEBORAH010","location":"Peoria AZ","url":"http:\/\/twiterpict.com\/Nice-body-Nice-b00bs-of-MIA-KHALIFA","description":"If you don't have anything nice to say, come sit by me and we can make fun of people together.","protected":false,"verified":false,"followers_count":23277,"friends_count":16727,"listed_count":27,"favourites_count":2,"statuses_count":16456,"created_at":"Fri Mar 27 05:22:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588170716723326976\/3egW6--a.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588170716723326976\/3egW6--a.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588170164312616960\/7iWJxENy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588170164312616960\/7iWJxENy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3109310479\/1429065759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VeWxzAy53y","expanded_url":"http:\/\/pictwiller.com\/sfz9u-b00bs_things_with_g61b5","display_url":"pictwiller.com\/sfz9u-b00bs_th\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699408482304,"id_str":"663727699408482304","text":"@leonel_GT_90 \ud83d\ude22\u261d\u261d\u261d\ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663576352700821504,"in_reply_to_status_id_str":"663576352700821504","in_reply_to_user_id":277123548,"in_reply_to_user_id_str":"277123548","in_reply_to_screen_name":"leonel_GT_90","user":{"id":277123548,"id_str":"277123548","name":"El triste me dicen!","screen_name":"leonel_GT_90","location":"Guatemala, Guatemala City","url":null,"description":"Cr\u00edtica constructiva al Gobierno. Todos mis tweets basados en los Art.5 y 35 de la Const. de la Rep\u00fablica y Art.1 del C\u00f3digo Penal Guatemalteco. #USAC","protected":false,"verified":false,"followers_count":1819,"friends_count":1133,"listed_count":9,"favourites_count":786,"statuses_count":25290,"created_at":"Mon Apr 04 19:00:28 +0000 2011","utc_offset":-21600,"time_zone":"Central America","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661550306539364352\/ukRqlfEU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661550306539364352\/ukRqlfEU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277123548\/1430370376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leonel_GT_90","name":"El triste me dicen!","id":277123548,"id_str":"277123548","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079989660"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433619456,"id_str":"663727699433619456","text":"@noka_0307 \u521d\u3081\u307e\u3057\u3066\uff01\n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2606\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726424293900289,"in_reply_to_status_id_str":"663726424293900289","in_reply_to_user_id":3391237159,"in_reply_to_user_id_str":"3391237159","in_reply_to_screen_name":"noka_0307","user":{"id":3116829279,"id_str":"3116829279","name":"Remy@\u6771\u4eac\u30ac\u30fc\u30eb","screen_name":"remy_marvel","location":null,"url":null,"description":"\u6771\u4eac\u30ac\u30fc\u30eb\u306e\u5287\u56e3\u54e1 Remy \u3067\u3059\uff01 \u67d0\u30c6\u30fc\u30de\u30d1\u30fc\u30af\u306e\u304a\u5144\u3055\u3093\u306e\u8a71\u306f\u7981\u6b62 \u30ea\u30b9\u30c8\u306b\u8ffd\u52a0\u306e\u6642\u306f\u4e00\u8a00\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002 \u5287\u56e3\u54e1\u3068\u3057\u3066Twitter\u3057\u3066\u308b\u3060\u3051\u306a\u306e\u3067\u3054\u4e86\u627f\u4e0b\u3055\u3044(^^)","protected":false,"verified":false,"followers_count":869,"friends_count":308,"listed_count":10,"favourites_count":907,"statuses_count":5117,"created_at":"Thu Mar 26 02:44:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651710220121407488\/pmpzcwC-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651710220121407488\/pmpzcwC-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3116829279\/1444214799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noka_0307","name":"\u305f \u3053 \u3084 \u304d \u4e38","id":3391237159,"id_str":"3391237159","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429425152,"id_str":"663727699429425152","text":"\u91d1\u66dc\u306e\u30d1\u30b8\u30e3\u30c9\u30e9\u5f53\u9078\u3057\u305f\u30fc\uff01\n\u3081\u3063\u3061\u3083\u4e45\u3057\u3076\u308a\u306e\u516c\u6f14\u3060\uff01\uff01\uff01 https:\/\/t.co\/7vLmDZmxUN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2312011670,"id_str":"2312011670","name":"\u30bf\u30af@HKT\u7bb1\u63a8\u3060\u3051\u3069\u3084\u3063\u3071\u54b2\u826f","screen_name":"kawaky_saya","location":null,"url":null,"description":"\u5bae\u8107\u54b2\u826f\u3061\u3083\u3093\u795e\u63a8\u3057\uff01 \u6700\u8fd1\u306fHKT\u7bb1\u63a8\u3057\u306b\u306a\u308a\u3064\u3064\u3042\u308a\u307e\u3059(\u7b11)AKBG\u3001\u4e43\u6728\u5742\u3069\u3063\u3061\u3082\u597d\u304d\u3067\u3059\uff01 \u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff01 94\u5e74\u7d44","protected":false,"verified":false,"followers_count":178,"friends_count":245,"listed_count":0,"favourites_count":68,"statuses_count":1123,"created_at":"Sun Jan 26 15:17:56 +0000 2014","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612314392324014080\/deGgkQu3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612314392324014080\/deGgkQu3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2312011670\/1435586210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727690189377536,"id_str":"663727690189377536","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0VFUEAAt48n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0VFUEAAt48n.jpg","url":"https:\/\/t.co\/7vLmDZmxUN","display_url":"pic.twitter.com\/7vLmDZmxUN","expanded_url":"http:\/\/twitter.com\/kawaky_saya\/status\/663727699429425152\/photo\/1","type":"photo","sizes":{"large":{"w":748,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727690189377536,"id_str":"663727690189377536","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0VFUEAAt48n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0VFUEAAt48n.jpg","url":"https:\/\/t.co\/7vLmDZmxUN","display_url":"pic.twitter.com\/7vLmDZmxUN","expanded_url":"http:\/\/twitter.com\/kawaky_saya\/status\/663727699429425152\/photo\/1","type":"photo","sizes":{"large":{"w":748,"h":377,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429601281,"id_str":"663727699429601281","text":"@leschoristes781 Quand tu auras vu les derniers \u00e9pisodes de TVD, faudra qu'on cause ! ^^","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":290766041,"in_reply_to_user_id_str":"290766041","in_reply_to_screen_name":"leschoristes781","user":{"id":223573992,"id_str":"223573992","name":"Shut up, Loki.","screen_name":"The16thOfJune","location":"France - New Orleans, LA, USA","url":"http:\/\/instagram.com\/marion_kls","description":"PES CE1-CE2. Primary school teacher. \/\/ Please, bring me a huge cup of tea. \/\/ ''The object of art is to give life a shape.'' - W. Shakespeare","protected":false,"verified":false,"followers_count":605,"friends_count":521,"listed_count":19,"favourites_count":6464,"statuses_count":67202,"created_at":"Mon Dec 06 19:24:41 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459437545709780992\/T0Nmh6bF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459437545709780992\/T0Nmh6bF.jpeg","profile_background_tile":false,"profile_link_color":"DE4040","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658309622500106240\/d_mwmpea_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658309622500106240\/d_mwmpea_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223573992\/1442008174","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leschoristes781","name":"Clotilde","id":290766041,"id_str":"290766041","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699429474304,"id_str":"663727699429474304","text":"\u3082\u306a\u3061\u3083\u3093\u5bb6\u306b\u6765\u305f\u3070\u304b\u308a\u306e\u9803\u306f\u3053\u3093\u306a\u3060\u3063\u305f\u306e\u306b\u3002\u7b11 https:\/\/t.co\/iV5rwG5AVD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068215531,"id_str":"3068215531","name":"\u2764\ufe0eYUMIMERO\u2764\ufe0e","screen_name":"0914__miyata","location":"\u30ad\u30e2\u3044\u7537\u5b50\u306f\u7f8e\u3057\u3044\u3002 \u4e8c\u6b21\u5143\u2661\u547d","url":null,"description":"\u30d1\u30fc\u30d7\u30eb\u30d5\u30a7\u30a2\u30ea\u30fc\u307f\u3084\u305f\u3068\u3057\u3084\u304f\u3093\u304c\u3059\u304d\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312\u2312 \u300a99line\/JK2\/ibaraki\u300b\u307f\u3084\u305f\u3068\u3057\u3084\u304f\u3093\u304d\u3065\u3044\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\u3002 \u308a\u3042\u308b\u59c9\u59b9\u261e\u2661\u2661\u2661\u300a@___kiss0323\u300b","protected":false,"verified":false,"followers_count":465,"friends_count":374,"listed_count":10,"favourites_count":618,"statuses_count":4675,"created_at":"Sun Mar 08 12:30:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652479349875052545\/AaGVkILq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652479349875052545\/AaGVkILq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068215531\/1425818320","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727685747654656,"id_str":"663727685747654656","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0EiUwAAmHb0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0EiUwAAmHb0.jpg","url":"https:\/\/t.co\/iV5rwG5AVD","display_url":"pic.twitter.com\/iV5rwG5AVD","expanded_url":"http:\/\/twitter.com\/0914__miyata\/status\/663727699429474304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":938,"resize":"fit"},"medium":{"w":600,"h":549,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727685747654656,"id_str":"663727685747654656","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0EiUwAAmHb0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0EiUwAAmHb0.jpg","url":"https:\/\/t.co\/iV5rwG5AVD","display_url":"pic.twitter.com\/iV5rwG5AVD","expanded_url":"http:\/\/twitter.com\/0914__miyata\/status\/663727699429474304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":938,"resize":"fit"},"medium":{"w":600,"h":549,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989665"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699433816064,"id_str":"663727699433816064","text":"TKM PENDEJOOO SS LO MAS LAUTAROO HALLOOWEEN CN VOS MI LOKIYO https:\/\/t.co\/L25E3uuE79","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2983054774,"id_str":"2983054774","name":"Milagros Diaz","screen_name":"milagrosd514","location":"termas de rio hondo","url":null,"description":"me gustha hacer amistades soy buena onda .. segun cm m trates te boy ah tratar y buena seguime y te sigo . \nFACEBOOK: Milagros Diaz \nINSTAGRAM: Miluhdeali","protected":false,"verified":false,"followers_count":16,"friends_count":136,"listed_count":0,"favourites_count":9,"statuses_count":28,"created_at":"Sat Jan 17 19:53:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626842794859102208\/nNSS8b3M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626842794859102208\/nNSS8b3M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2983054774\/1438286543","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727681813483520,"id_str":"663727681813483520","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz14WEAABMfb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz14WEAABMfb.jpg","url":"https:\/\/t.co\/L25E3uuE79","display_url":"pic.twitter.com\/L25E3uuE79","expanded_url":"http:\/\/twitter.com\/milagrosd514\/status\/663727699433816064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":567,"resize":"fit"},"large":{"w":614,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727681813483520,"id_str":"663727681813483520","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz14WEAABMfb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz14WEAABMfb.jpg","url":"https:\/\/t.co\/L25E3uuE79","display_url":"pic.twitter.com\/L25E3uuE79","expanded_url":"http:\/\/twitter.com\/milagrosd514\/status\/663727699433816064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":567,"resize":"fit"},"large":{"w":614,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079989666"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699421102081,"id_str":"663727699421102081","text":"@1012mayuusa \u521d\u3081\u307e\u3057\u3066\u3001\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb\u30a2\u30ef\u30fc\u3068\u540c\u671f\u306e\u304a\u7b11\u3044\u82b8\u4eba\u30ab\u30cd\u30df\u30ce\u30d6\u3068\u7533\u3057\u307e\u3059\uff01\u666e\u6bb5\u306f\u9280\u9b42\u30b3\u30b9\u3067\u30cd\u30bf\u3092\u3084\u3063\u3066\u3044\u307e\u3059\uff01\u6c17\u306b\u306a\u3063\u305f\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f(>_<)\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059 https:\/\/t.co\/oCd77rdixK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2757445411,"in_reply_to_user_id_str":"2757445411","in_reply_to_screen_name":"1012mayuusa","user":{"id":2591342666,"id_str":"2591342666","name":"\u30ab\u30cd\u30df\u30ce\u30d6\uff2012\/3\u30a2\u30cb\u30b3\u30b9\u30bf\u30fc\u5973\u5b50\u90e8","screen_name":"kaneminobu_sub2","location":"\u5927\u962a\u5e02\u5185","url":"http:\/\/riversrecords.jimdo.com\/","description":"\u30b5\u30d6\u30ab\u30eb\u7cfb\u30e9\u30a4\u30bf\u30fc\u3002\u811a\u672c\u5bb6\u3002\u304a\u7b11\u3044\u82b8\u4eba\uff08\u30d5\u30c3\u30c8\u30dc\u30fc\u30eb\u30a2\u30ef\u30fc\u30fb\u30ed\u30c3\u30c1\u306e\u30b3\u30ab\u30c9\u541b\u306a\u3069\u3068\u540c\u671f\uff09\u3010\u63a8\u3057\u3011\u30d2\u30df\u30c4\u30ce\u30df\u30e4\u30b3\u6728\u74dc\u3061\u3083\u3093\uff0f\u5815\u5929\u4f7f\u9905\u5b50\uff0f\u30b3\u30b1\u30b7\u3061\u3083\u3093\uff0f\u307d\u3066\u3055\u3089\u3061\u3083\u3093\u3002\uff0f\u7d75\u604b\u3061\u3083\u3093\uff0f\u3082\u3093\u3066\u308d\uff0f\u672c\u6bcd\u83dc\u6458\uff0f\u9e7f\u6728\u9999\u91cc\uff0f\u83c5\u539f\u306a\u306a\uff0f\u5076\u60f3Drop\uff0f\u7d30\u80de\u5f7c\u5973\uff0f\u6bdb\u76ae\u306e\u3055\u3048\u3053\uff0f\u9060\u77e2\u308b\u3044\uff0f\u53cc\u5b50\u5c11\u5973","protected":false,"verified":false,"followers_count":7833,"friends_count":8593,"listed_count":34,"favourites_count":36045,"statuses_count":28966,"created_at":"Fri Jun 27 13:05:34 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630906137953505281\/NtVAgrYE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630906137953505281\/NtVAgrYE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2591342666\/1439254680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1012mayuusa","name":"\u3070\u306b\u3089\u307f\u308b\u304f\u029a\u271e\u025e\u306b\u3093\u307e\u308a","id":2757445411,"id_str":"2757445411","indices":[0,12]}],"symbols":[],"media":[{"id":663727689660936192,"id_str":"663727689660936192","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0THUsAAlXxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0THUsAAlXxb.jpg","url":"https:\/\/t.co\/oCd77rdixK","display_url":"pic.twitter.com\/oCd77rdixK","expanded_url":"http:\/\/twitter.com\/kaneminobu_sub2\/status\/663727699421102081\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727689660936192,"id_str":"663727689660936192","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0THUsAAlXxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0THUsAAlXxb.jpg","url":"https:\/\/t.co\/oCd77rdixK","display_url":"pic.twitter.com\/oCd77rdixK","expanded_url":"http:\/\/twitter.com\/kaneminobu_sub2\/status\/663727699421102081\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989663"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699395932160,"id_str":"663727699395932160","text":"#pasloliat temen lu nge-jokes kurang... https:\/\/t.co\/aRJg32qlUo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134714111,"id_str":"134714111","name":"RANUPAWIRO","screen_name":"aprizalws","location":"Jakarta","url":"http:\/\/belakangpanggung.com","description":"brick by brick \naprizalws@belakangpanggung.com","protected":false,"verified":false,"followers_count":1817,"friends_count":368,"listed_count":16,"favourites_count":3,"statuses_count":38406,"created_at":"Mon Apr 19 07:01:59 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/693946384\/a4b24c996c56399fcd1b5d80d7fd2f1f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/693946384\/a4b24c996c56399fcd1b5d80d7fd2f1f.jpeg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"56C3FB","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662444286663745536\/oVhxTHNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662444286663745536\/oVhxTHNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134714111\/1434537580","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pasloliat","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727697877536768,"id_str":"663727697877536768","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0xuUEAAmCZ7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0xuUEAAmCZ7.jpg","url":"https:\/\/t.co\/aRJg32qlUo","display_url":"pic.twitter.com\/aRJg32qlUo","expanded_url":"http:\/\/twitter.com\/aprizalws\/status\/663727699395932160\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727697877536768,"id_str":"663727697877536768","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0xuUEAAmCZ7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0xuUEAAmCZ7.jpg","url":"https:\/\/t.co\/aRJg32qlUo","display_url":"pic.twitter.com\/aRJg32qlUo","expanded_url":"http:\/\/twitter.com\/aprizalws\/status\/663727699395932160\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079989657"} +{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699400110080,"id_str":"663727699400110080","text":"\u8272\u8ff7\u3046\u301c https:\/\/t.co\/fYbTPvJRPz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222234196,"id_str":"2222234196","name":"\u304d\u3087\u30fc\u304b","screen_name":"kyouka0501","location":null,"url":null,"description":"\u7f8e\u6728\u591a39\u671f\u751f(*\u00b4-`)3-4\u5927\u597d\u304d\u2661\u5973\u5b50\u30d0\u30b9\u30b1( \u00a8\u032e ) \u2661\u5927\u962a\u5b66\u82b8\u76ee\u6307\u3059\u2661\u30e0\u30fc\u30df\u30f3\u2661\u307e\u308b\u305f\u2661AKIRA\u2661\u592a\u8cc0\u2661\u5927\u68ee\u5730\u8eca\u2661\u535a\u591a\u83ef\u4e38\u5927\u5409\u3070\u3044\u2661\u308f\u3044\u3067\u3043\u3051\u30fc\u2661\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u3047\u301c(^ ^)\u307b\u30fc\u3061\u4e2d","protected":false,"verified":false,"followers_count":218,"friends_count":115,"listed_count":0,"favourites_count":237,"statuses_count":558,"created_at":"Sat Nov 30 00:50:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658183055694163968\/zeThFDKO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658183055694163968\/zeThFDKO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222234196\/1445609011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727682736144384,"id_str":"663727682736144384","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz5UUwAAs2i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz5UUwAAs2i_.jpg","url":"https:\/\/t.co\/fYbTPvJRPz","display_url":"pic.twitter.com\/fYbTPvJRPz","expanded_url":"http:\/\/twitter.com\/kyouka0501\/status\/663727699400110080\/photo\/1","type":"photo","sizes":{"large":{"w":633,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727682736144384,"id_str":"663727682736144384","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIz5UUwAAs2i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIz5UUwAAs2i_.jpg","url":"https:\/\/t.co\/fYbTPvJRPz","display_url":"pic.twitter.com\/fYbTPvJRPz","expanded_url":"http:\/\/twitter.com\/kyouka0501\/status\/663727699400110080\/photo\/1","type":"photo","sizes":{"large":{"w":633,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}}},{"id":663727685470830592,"id_str":"663727685470830592","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0DgUwAAARFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0DgUwAAARFn.jpg","url":"https:\/\/t.co\/fYbTPvJRPz","display_url":"pic.twitter.com\/fYbTPvJRPz","expanded_url":"http:\/\/twitter.com\/kyouka0501\/status\/663727699400110080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079989658"} +{"delete":{"status":{"id":538318517322260480,"id_str":"538318517322260480","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079990141"}} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703594565632,"id_str":"663727703594565632","text":"...\u043b\u0435\u0441\u0442\u043d\u0438\u0446\u0435, \u0442\u0430\u043a \u043a\u0430\u043a \u0434\u043b\u044f \u043d\u0438\u0445 \u044d\u0442\u043e \u043f\u0435\u0440\u0432\u044b\u0439 \u043e\u043f\u044b\u0442, \u0435\u0449\u0435 \u043d\u0435\u0442 \u0441\u0442\u0440\u0430\u0445\u0430...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687268715,"id_str":"2687268715","name":"\u041f\u043e\u043b\u0438\u043d\u0430 \u0415\u0440\u0430\u0445\u0442\u0438\u043da","screen_name":"ErahtinaA","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":460,"friends_count":137,"listed_count":9,"favourites_count":0,"statuses_count":289463,"created_at":"Mon Jul 28 10:58:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079990658"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703628120064,"id_str":"663727703628120064","text":"RT @alaflajNews: #\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\u0644\u0623\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629\n\u06333\u20e3\/ \u0641\u064a \u0623\u064a \u0645\u062f\u064a\u0646\u0629 \u064a\u0642\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0633\u0645 \u0627\u0644\u062c\u0645\u0627\u0644\u064a \u061f https:\/\/t.co\/hD2NgQw0fy","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3405483657,"id_str":"3405483657","name":"\u062a\u0645\u0627\u0631\u0627","screen_name":"tama_tooma","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":162,"listed_count":0,"favourites_count":3,"statuses_count":734,"created_at":"Thu Aug 06 11:51:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629258795244359680\/mdx-Q7MW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629258795244359680\/mdx-Q7MW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:59:11 +0000 2015","id":663415481764872192,"id_str":"663415481764872192","text":"#\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\u0644\u0623\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629\n\u06333\u20e3\/ \u0641\u064a \u0623\u064a \u0645\u062f\u064a\u0646\u0629 \u064a\u0642\u0639 \u0647\u0630\u0627 \u0627\u0644\u0645\u062c\u0633\u0645 \u0627\u0644\u062c\u0645\u0627\u0644\u064a \u061f https:\/\/t.co\/hD2NgQw0fy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1042284223,"id_str":"1042284223","name":"\u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0623\u0641\u0644\u0627\u062c","screen_name":"alaflajNews","location":"\u0627\u0644\u0623\u0641\u0644\u0627\u062c \u0627\u062a\u0635\u0644 : 0540032943","url":"http:\/\/www.alaflaj.com","description":"\u062d\u0633\u0627\u0628 \u0631\u0633\u0645\u064a\u2022\u0645\u0648\u0642\u0639 #\u0628\u0648\u0627\u0628\u0629_\u0627\u0644\u0623\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629|\u0635\u062d\u064a\u0641\u0629 \u0627\u062e\u0628\u0627\u0631\u064a\u0629\u060c\u0627\u062c\u062a\u0645\u0627\u0639\u064a\u0629\u060c\u062b\u0642\u0627\u0641\u064a\u0629\u060c\u0631\u064a\u0627\u0636\u064a\u0629|\u2022 @alaflajnews2 \u062a\u0648\u0627\u0635\u0644:alaflajNews@gmail.com \/ https:\/\/instagram.com\/alaflajnews\/","protected":false,"verified":false,"followers_count":7199,"friends_count":11,"listed_count":14,"favourites_count":167,"statuses_count":7737,"created_at":"Fri Dec 28 14:03:17 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556197437677654018\/Gp8VI2aO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556197437677654018\/Gp8VI2aO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042284223\/1426981471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":360,"favorite_count":10,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\u0644\u0623\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","indices":[0,33]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663415443634397184,"id_str":"663415443634397184","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","url":"https:\/\/t.co\/hD2NgQw0fy","display_url":"pic.twitter.com\/hD2NgQw0fy","expanded_url":"http:\/\/twitter.com\/alaflajNews\/status\/663415481764872192\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":323,"resize":"fit"},"small":{"w":340,"h":183,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663415443634397184,"id_str":"663415443634397184","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","url":"https:\/\/t.co\/hD2NgQw0fy","display_url":"pic.twitter.com\/hD2NgQw0fy","expanded_url":"http:\/\/twitter.com\/alaflajNews\/status\/663415481764872192\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":323,"resize":"fit"},"small":{"w":340,"h":183,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\u0644\u0623\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","indices":[17,50]}],"urls":[],"user_mentions":[{"screen_name":"alaflajNews","name":"\u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0623\u0641\u0644\u0627\u062c","id":1042284223,"id_str":"1042284223","indices":[3,15]}],"symbols":[],"media":[{"id":663415443634397184,"id_str":"663415443634397184","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","url":"https:\/\/t.co\/hD2NgQw0fy","display_url":"pic.twitter.com\/hD2NgQw0fy","expanded_url":"http:\/\/twitter.com\/alaflajNews\/status\/663415481764872192\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":323,"resize":"fit"},"small":{"w":340,"h":183,"resize":"fit"}},"source_status_id":663415481764872192,"source_status_id_str":"663415481764872192","source_user_id":1042284223,"source_user_id_str":"1042284223"}]},"extended_entities":{"media":[{"id":663415443634397184,"id_str":"663415443634397184","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTs1MBWIAAEAnt.jpg","url":"https:\/\/t.co\/hD2NgQw0fy","display_url":"pic.twitter.com\/hD2NgQw0fy","expanded_url":"http:\/\/twitter.com\/alaflajNews\/status\/663415481764872192\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":323,"resize":"fit"},"small":{"w":340,"h":183,"resize":"fit"}},"source_status_id":663415481764872192,"source_status_id_str":"663415481764872192","source_user_id":1042284223,"source_user_id_str":"1042284223"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602896896,"id_str":"663727703602896896","text":"@itsjamie_yoo12 <<<< add my snappp \ud83d\ude1b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2811618481,"id_str":"2811618481","name":"jamie","screen_name":"itsjamie_yoo","location":null,"url":null,"description":"we are glory boyz","protected":false,"verified":false,"followers_count":375,"friends_count":280,"listed_count":0,"favourites_count":2358,"statuses_count":6904,"created_at":"Mon Sep 15 16:21:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660510137082372097\/7461IZuI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660510137082372097\/7461IZuI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811618481\/1446700486","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990660"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623880705,"id_str":"663727703623880705","text":"RT @KuleminNikolay: #FreePulock","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457221623,"id_str":"457221623","name":"Reina \u202229\u2022","screen_name":"salutextavares","location":"Dreamland","url":null,"description":"Life: It's all messed up, but we're alive. \u2022\u2022\u2022Isles and Pens\u2022\u2022\u2022 |29\u202291\u202286| \u2022 |71\u202287\u202219| (7-4-3) (8-5-0) Cassio Monroe \u2764\ufe0f","protected":false,"verified":false,"followers_count":587,"friends_count":1224,"listed_count":4,"favourites_count":27940,"statuses_count":31532,"created_at":"Sat Jan 07 04:56:58 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453321698012459009\/bgPT_-6J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453321698012459009\/bgPT_-6J.jpeg","profile_background_tile":true,"profile_link_color":"27B1E8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"212424","profile_text_color":"C9C3C9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662847108806914048\/Jbsu1Jvk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662847108806914048\/Jbsu1Jvk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457221623\/1442335094","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:20 +0000 2015","id":663727578813964288,"id_str":"663727578813964288","text":"#FreePulock","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570931323,"id_str":"1570931323","name":"Jake","screen_name":"KuleminNikolay","location":null,"url":null,"description":"NYI | LAK | LAL | NYG","protected":false,"verified":false,"followers_count":2176,"friends_count":799,"listed_count":7,"favourites_count":22362,"statuses_count":14386,"created_at":"Fri Jul 05 16:49:23 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659539903286480896\/IO51s2_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659539903286480896\/IO51s2_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570931323\/1446965762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"FreePulock","indices":[0,11]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FreePulock","indices":[20,31]}],"urls":[],"user_mentions":[{"screen_name":"KuleminNikolay","name":"Jake","id":1570931323,"id_str":"1570931323","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703594573824,"id_str":"663727703594573824","text":"I actually miss wearing my college uniform... \ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559213796,"id_str":"559213796","name":"Patrick Lapuz","screen_name":"PatrickLapuz","location":"Bergenfield, NJ","url":null,"description":"Work Hard. Dream Big. \n| BEDAN | PHL | NJ |","protected":false,"verified":false,"followers_count":185,"friends_count":234,"listed_count":1,"favourites_count":1139,"statuses_count":2715,"created_at":"Sat Apr 21 05:05:46 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/779896202\/a6c43a583506b8f8efcdec7fc8c80aeb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/779896202\/a6c43a583506b8f8efcdec7fc8c80aeb.jpeg","profile_background_tile":true,"profile_link_color":"CC3535","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459530944048013312\/N-gVWuQN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459530944048013312\/N-gVWuQN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559213796\/1359790283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"a0ca3d7968ca1f23","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a0ca3d7968ca1f23.json","place_type":"city","name":"Leonia","full_name":"Leonia, NJ","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.006065,40.851262],[-74.006065,40.876115],[-73.975615,40.876115],[-73.975615,40.851262]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990658"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703607128064,"id_str":"663727703607128064","text":"RT @PpkDoRick: Pohaaaaaaa que sorriso mais lindo,que homem mais lindo,amor da minha vida gente do c\u00e9u #4DaysTillPURPOSE https:\/\/t.co\/iDCqo7\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949960898,"id_str":"2949960898","name":"\u2665I'LL SHOW YOU\u2665","screen_name":"Ofbbieber1","location":null,"url":null,"description":"Twitter criado apenas pra ajudar na vota\u00e7\u00f5es do Justin Bieber!!\nOutras Contas\u2192 @Ofbbieber2 & @NinfetaOfBieber","protected":false,"verified":false,"followers_count":42,"friends_count":5,"listed_count":1,"favourites_count":327,"statuses_count":1795,"created_at":"Mon Dec 29 20:23:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663130981180813313\/25AuSX9H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663130981180813313\/25AuSX9H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949960898\/1446937713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:39:52 +0000 2015","id":663712612149035009,"id_str":"663712612149035009","text":"Pohaaaaaaa que sorriso mais lindo,que homem mais lindo,amor da minha vida gente do c\u00e9u #4DaysTillPURPOSE https:\/\/t.co\/iDCqo7OSMR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3940792036,"id_str":"3940792036","name":"BIEBER IS BACK \u2105\u2206","screen_name":"PpkDoRick","location":"num te interessa ","url":null,"description":"Voc\u00ea fode comigo de todas as formas mas n\u00e3o FODE da forma que eu quero @justinBieber\n\n \n Bitch rayaya\u2764","protected":false,"verified":false,"followers_count":408,"friends_count":1022,"listed_count":0,"favourites_count":122,"statuses_count":1453,"created_at":"Mon Oct 12 21:51:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663435230842388480\/oGN0BTwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663435230842388480\/oGN0BTwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3940792036\/1447014725","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[87,104]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663712610911670272,"id_str":"663712610911670272","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","url":"https:\/\/t.co\/iDCqo7OSMR","display_url":"pic.twitter.com\/iDCqo7OSMR","expanded_url":"http:\/\/twitter.com\/PpkDoRick\/status\/663712612149035009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663712610911670272,"id_str":"663712610911670272","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","url":"https:\/\/t.co\/iDCqo7OSMR","display_url":"pic.twitter.com\/iDCqo7OSMR","expanded_url":"http:\/\/twitter.com\/PpkDoRick\/status\/663712612149035009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[102,119]}],"urls":[],"user_mentions":[{"screen_name":"PpkDoRick","name":"BIEBER IS BACK \u2105\u2206","id":3940792036,"id_str":"3940792036","indices":[3,13]}],"symbols":[],"media":[{"id":663712610911670272,"id_str":"663712610911670272","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","url":"https:\/\/t.co\/iDCqo7OSMR","display_url":"pic.twitter.com\/iDCqo7OSMR","expanded_url":"http:\/\/twitter.com\/PpkDoRick\/status\/663712612149035009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}},"source_status_id":663712612149035009,"source_status_id_str":"663712612149035009","source_user_id":3940792036,"source_user_id_str":"3940792036"}]},"extended_entities":{"media":[{"id":663712610911670272,"id_str":"663712610911670272","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7GmZWUAA1Plk.jpg","url":"https:\/\/t.co\/iDCqo7OSMR","display_url":"pic.twitter.com\/iDCqo7OSMR","expanded_url":"http:\/\/twitter.com\/PpkDoRick\/status\/663712612149035009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}},"source_status_id":663712612149035009,"source_status_id_str":"663712612149035009","source_user_id":3940792036,"source_user_id_str":"3940792036"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079990661"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703628103681,"id_str":"663727703628103681","text":"RT @Dory: When the mall has free samples. https:\/\/t.co\/G9FcmHr2Rt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3350524618,"id_str":"3350524618","name":"Niki","screen_name":"Niki94503114","location":null,"url":null,"description":"control your hoes \u2614\ufe0f","protected":false,"verified":false,"followers_count":302,"friends_count":475,"listed_count":0,"favourites_count":6138,"statuses_count":4312,"created_at":"Mon Jun 29 07:44:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630281310460755968\/LJgnD_V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630281310460755968\/LJgnD_V0_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:25:29 +0000 2015","id":663557999202578432,"id_str":"663557999202578432","text":"When the mall has free samples. https:\/\/t.co\/G9FcmHr2Rt","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1187647735,"id_str":"1187647735","name":"Dory","screen_name":"Dory","location":"P. Sherman 42 Wallaby Way ","url":null,"description":"why be moody when u can shake dat booty *parody* *NOT the official Dory page, not affiliated with @disneypixar* *we own no content posted* dorytweetz@gmail.com","protected":false,"verified":false,"followers_count":1099887,"friends_count":22,"listed_count":1133,"favourites_count":26149,"statuses_count":23993,"created_at":"Sat Feb 16 22:19:22 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4C79FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/792760857\/eeda20bdd54f64440f08d2ba8926fdf8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/792760857\/eeda20bdd54f64440f08d2ba8926fdf8.jpeg","profile_background_tile":true,"profile_link_color":"3309DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646144986078183425\/FMM6fFAl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646144986078183425\/FMM6fFAl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1187647735\/1442887795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1763,"favorite_count":4032,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663555710748262400,"id_str":"663555710748262400","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","url":"https:\/\/t.co\/G9FcmHr2Rt","display_url":"pic.twitter.com\/G9FcmHr2Rt","expanded_url":"http:\/\/twitter.com\/KhadiDon\/status\/663556017461051393\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663556017461051393,"source_status_id_str":"663556017461051393","source_user_id":2586506401,"source_user_id_str":"2586506401"}]},"extended_entities":{"media":[{"id":663555710748262400,"id_str":"663555710748262400","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","url":"https:\/\/t.co\/G9FcmHr2Rt","display_url":"pic.twitter.com\/G9FcmHr2Rt","expanded_url":"http:\/\/twitter.com\/KhadiDon\/status\/663556017461051393\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663556017461051393,"source_status_id_str":"663556017461051393","source_user_id":2586506401,"source_user_id_str":"2586506401","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/pl\/K37e1undQXVlXaIC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/480x480\/_tHf0FacDvh4Sg1A.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/240x240\/WpzB-5P2FXtyuKYT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/pl\/K37e1undQXVlXaIC.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/480x480\/_tHf0FacDvh4Sg1A.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/720x720\/Ywq82m8Fj3d0NQTR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dory","name":"Dory","id":1187647735,"id_str":"1187647735","indices":[3,8]}],"symbols":[],"media":[{"id":663555710748262400,"id_str":"663555710748262400","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","url":"https:\/\/t.co\/G9FcmHr2Rt","display_url":"pic.twitter.com\/G9FcmHr2Rt","expanded_url":"http:\/\/twitter.com\/KhadiDon\/status\/663556017461051393\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663556017461051393,"source_status_id_str":"663556017461051393","source_user_id":2586506401,"source_user_id_str":"2586506401"}]},"extended_entities":{"media":[{"id":663555710748262400,"id_str":"663555710748262400","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663555710748262400\/pu\/img\/3nYIMWmtItADGcdP.jpg","url":"https:\/\/t.co\/G9FcmHr2Rt","display_url":"pic.twitter.com\/G9FcmHr2Rt","expanded_url":"http:\/\/twitter.com\/KhadiDon\/status\/663556017461051393\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663556017461051393,"source_status_id_str":"663556017461051393","source_user_id":2586506401,"source_user_id_str":"2586506401","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/pl\/K37e1undQXVlXaIC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/480x480\/_tHf0FacDvh4Sg1A.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/240x240\/WpzB-5P2FXtyuKYT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/pl\/K37e1undQXVlXaIC.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/480x480\/_tHf0FacDvh4Sg1A.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663555710748262400\/pu\/vid\/720x720\/Ywq82m8Fj3d0NQTR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623933952,"id_str":"663727703623933952","text":"@mr_shenko \u0628\u064a\u062c\u064a\u0628\u0647\u0647 \u062a\u064a\u0633\u064a\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727272852127744,"in_reply_to_status_id_str":"663727272852127744","in_reply_to_user_id":325142390,"in_reply_to_user_id_str":"325142390","in_reply_to_screen_name":"mr_shenko","user":{"id":2271436095,"id_str":"2271436095","name":"\u27b0 salman \u27b0","screen_name":"s_buredy","location":"HFC | FCB ","url":null,"description":"\u0644\u0627\u064a\u062a\u0648\u0627\u0636\u0639 \u0627\u0644\u0627 \u0645\u0646 \u06af\u0627\u0646 \u0648\u0627\u062b\u0642\u0627\u064b \u0628\u0646\u0641\u0633\u0647 \u0648\u0644\u0627\u064a\u062a\u06af\u0628\u0631 \u0627\u0644\u0627 \u0645\u0646 \u06af\u0627\u0646 \u0639\u0627\u0644\u0645\u0627\u064b \u0628\u0646\u0642\u0635","protected":false,"verified":false,"followers_count":1190,"friends_count":1286,"listed_count":1,"favourites_count":53,"statuses_count":9619,"created_at":"Thu Jan 09 19:30:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663363726028984321\/PLg3pFz4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663363726028984321\/PLg3pFz4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271436095\/1446993416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mr_shenko","name":"\u0637\u0644\u0627\u0644 \u0627\u0644\u0639\u062a\u064a\u0628\u064a","id":325142390,"id_str":"325142390","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623790592,"id_str":"663727703623790592","text":"Ot sinulapo la \ud83d\ude01\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3232475472,"id_str":"3232475472","name":"Kathbognot","screen_name":"KathBognot","location":"Neverland City ","url":null,"description":"Cutie but PSYCHO \u2764\u200d","protected":false,"verified":false,"followers_count":487,"friends_count":270,"listed_count":1,"favourites_count":3789,"statuses_count":26191,"created_at":"Mon Jun 01 12:10:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719429289545728\/7laoMY_-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719429289545728\/7laoMY_-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232475472\/1445777176","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703611191296,"id_str":"663727703611191296","text":"Let's start now. \ud83d\ude06\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2485103912,"id_str":"2485103912","name":"Merjen","screen_name":"marjaaane","location":null,"url":null,"description":"Tourism Student\u2708\ufe0f\u2693\u2b55\ufe0f..talented\u26be\ufe0f Real\u2764\ufe0f Lipstick lover .. Fashionista .. Pure Filipina . \u274cAllergic to plastic people \u274c","protected":false,"verified":false,"followers_count":146,"friends_count":403,"listed_count":0,"favourites_count":480,"statuses_count":1446,"created_at":"Fri May 09 09:46:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663173712003272704\/GdjTHFrE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663173712003272704\/GdjTHFrE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2485103912\/1446947908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990662"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703627923456,"id_str":"663727703627923456","text":"@SLH_RYO \n(\u250c\u00b4\uff9f\u03c9\uff9f)\u250c \uff71\uff81\uff6e\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722053409705984,"in_reply_to_status_id_str":"663722053409705984","in_reply_to_user_id":320665685,"in_reply_to_user_id_str":"320665685","in_reply_to_screen_name":"SLH_RYO","user":{"id":481915120,"id_str":"481915120","name":"\u304a\u30fc\u3061\u3083\u3093\/\u3046\u3043\u308b","screen_name":"omakb48","location":null,"url":null,"description":"\u597d\u304d:96\u732b\u266a\u308c\u3092\u308b\u266aSLH\u266aATY\u266a\u30dc\u30ab\u30ed\u266aFree!\u266a\u306e\u3042\u3055\u3093\u516c\u8a8d\u56f2\u3044(\u0e51\u00af\u03c9\u00af\u0e51)\uff1f\u266a\u8da3\u5473:\u306e\u3042\u3055\u3093 \u7279\u6280:\u306e\u3042\u3055\u3093 \u9577\u6240:\u306e\u3042\u3055\u3093 \u8133\u5185:\u306e\u3042\u3055\u3093\u306e\u3042\u3055\u3093\u306e\u3042\u3055\u3093\u306ea... \u6771\u4eac \u308a\u305b\u306fFC \u211689","protected":false,"verified":false,"followers_count":173,"friends_count":266,"listed_count":3,"favourites_count":2752,"statuses_count":7252,"created_at":"Fri Feb 03 09:49:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511905726269116416\/g0cqbbLZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511905726269116416\/g0cqbbLZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481915120\/1418229727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SLH_RYO","name":"SLH\u306eRYO@\u30cf\u30c3\u30d4\u30fc\u30dc\u30fc\u30a4\u2721","id":320665685,"id_str":"320665685","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703594373121,"id_str":"663727703594373121","text":"RT @gaybig_ass: @GayxDick i love youuuuu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179922760,"id_str":"4179922760","name":"SALVADOR","screen_name":"SALVADO64152613","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":42,"listed_count":2,"favourites_count":80,"statuses_count":82,"created_at":"Mon Nov 09 14:08:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720360332804096\/Cy08CUyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720360332804096\/Cy08CUyz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Apr 13 21:54:08 +0000 2014","id":455463973408612353,"id_str":"455463973408612353","text":"@GayxDick i love youuuuu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2419929270,"in_reply_to_user_id_str":"2419929270","in_reply_to_screen_name":"GayxDick","user":{"id":2442127165,"id_str":"2442127165","name":"gay big ass","screen_name":"gaybig_ass","location":"Panama","url":null,"description":"con ganas de una enorme POLLA!!!","protected":false,"verified":false,"followers_count":112,"friends_count":177,"listed_count":0,"favourites_count":409,"statuses_count":123,"created_at":"Sun Apr 13 18:29:20 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5088E","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456130449555730433\/_7fu3Xuu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456130449555730433\/_7fu3Xuu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2442127165\/1397585002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GayxDick","name":"XXX Gay Boy XXX","id":2419929270,"id_str":"2419929270","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gaybig_ass","name":"gay big ass","id":2442127165,"id_str":"2442127165","indices":[3,14]},{"screen_name":"GayxDick","name":"XXX Gay Boy XXX","id":2419929270,"id_str":"2419929270","indices":[16,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990658"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703628111872,"id_str":"663727703628111872","text":"@lwrryalways de nadinha ^~^","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727573373952000,"in_reply_to_status_id_str":"663727573373952000","in_reply_to_user_id":2607520138,"in_reply_to_user_id_str":"2607520138","in_reply_to_screen_name":"lwrryalways","user":{"id":1705043137,"id_str":"1705043137","name":"natalia","screen_name":"parrieeeIe","location":null,"url":null,"description":"if you\u2019re lost just look for me you\u2019ll find me in the region of the summer stars","protected":false,"verified":false,"followers_count":514,"friends_count":473,"listed_count":3,"favourites_count":4128,"statuses_count":21141,"created_at":"Tue Aug 27 15:55:48 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623342651354431488\/i-O7XU9t.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623342651354431488\/i-O7XU9t.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663016487448215552\/i352hgTK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663016487448215552\/i352hgTK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705043137\/1446872687","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lwrryalways","name":"gabs","id":2607520138,"id_str":"2607520138","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623905280,"id_str":"663727703623905280","text":"RT @HoroscopoViral: #CAPRICORNIO: no toleras bien que te den un \"NO\" por respuesta, y tampoco tus limitaciones, si te propones algo, lo int\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897689372,"id_str":"2897689372","name":"Frann","screen_name":"frannOrtiz16","location":"~quilmes","url":null,"description":"Jugador de voley snap:franco_ortizz16 insta:fraanco_ortiz. \nlomas voley .","protected":false,"verified":false,"followers_count":235,"friends_count":226,"listed_count":0,"favourites_count":538,"statuses_count":2181,"created_at":"Sat Nov 29 16:47:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658140474562236417\/ijXwEYOZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658140474562236417\/ijXwEYOZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897689372\/1445906003","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:04 +0000 2015","id":663726503461449728,"id_str":"663726503461449728","text":"#CAPRICORNIO: no toleras bien que te den un \"NO\" por respuesta, y tampoco tus limitaciones, si te propones algo, lo intentas muuuuchas veces","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eTwitterNve24\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726207725,"id_str":"2726207725","name":"\u25b2Hor\u00f3scopo Viral\u25b2","screen_name":"HoroscopoViral","location":"Espa\u00f1a","url":"http:\/\/www.HoroscopoViral.com","description":null,"protected":false,"verified":false,"followers_count":222462,"friends_count":711,"listed_count":196,"favourites_count":54,"statuses_count":254121,"created_at":"Tue Aug 12 13:01:33 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586133113614405632\/oqzjQ4QM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586133113614405632\/oqzjQ4QM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726207725\/1437341129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":9,"entities":{"hashtags":[{"text":"CAPRICORNIO","indices":[0,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CAPRICORNIO","indices":[20,32]}],"urls":[],"user_mentions":[{"screen_name":"HoroscopoViral","name":"\u25b2Hor\u00f3scopo Viral\u25b2","id":2726207725,"id_str":"2726207725","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703628058624,"id_str":"663727703628058624","text":"\u0627\u062e\u0628\u0627\u0631 \u0645\u0635\u0631 | \u0648\u0632\u064a\u0631 \u0627\u0644\u062a\u0639\u0644\u064a\u0645 \u0627\u0644\u0639\u0627\u0644\u0649: \u0627\u062c\u062a\u0645\u0627\u0639 \u0645\u0639 \u0631\u0626\u064a\u0633 \u0627\u0644\u0648\u0632\u0631\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u0645\u0642\u0628\u0644 \u0644\u0639\u0631\u0636 \u062e\u0637\u0629 \u0627\u0644\u0648\u0632\u0627\u0631\u0629 https:\/\/t.co\/WsGjNqdDqI https:\/\/t.co\/raSbxRAfIo","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":183796367,"id_str":"183796367","name":"\u0627\u062d\u0645\u062f \u0628\u0627\u0634\u0627","screen_name":"ahmed25674","location":"\u0645\u0635\u0631","url":"http:\/\/newsegypttoday.net\/vb\/index.php","description":null,"protected":false,"verified":false,"followers_count":616,"friends_count":895,"listed_count":1,"favourites_count":5,"statuses_count":30232,"created_at":"Fri Aug 27 22:41:27 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582627651795300352\/VQFYMokK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582627651795300352\/VQFYMokK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/183796367\/1358726105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WsGjNqdDqI","expanded_url":"http:\/\/ift.tt\/1MGW0JL","display_url":"ift.tt\/1MGW0JL","indices":[87,110]},{"url":"https:\/\/t.co\/raSbxRAfIo","expanded_url":"http:\/\/fb.me\/3rs7D5F1i","display_url":"fb.me\/3rs7D5F1i","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ar","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703590174720,"id_str":"663727703590174720","text":"Kenapalah saya tersayang tuaannn?\nAhaha\n#tuananasmikhael","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427198695,"id_str":"427198695","name":"NA","screen_name":"AnisAisyah49","location":"kuala lumpur ","url":null,"description":"'abd","protected":false,"verified":false,"followers_count":1189,"friends_count":1055,"listed_count":1,"favourites_count":3640,"statuses_count":7048,"created_at":"Sat Dec 03 07:13:22 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552866061305905152\/g01MV2jT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552866061305905152\/g01MV2jT.jpeg","profile_background_tile":true,"profile_link_color":"1B7D69","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647240942949236737\/8uQVohSb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647240942949236737\/8uQVohSb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427198695\/1443171242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tuananasmikhael","indices":[40,56]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079990657"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619584000,"id_str":"663727703619584000","text":"RT @WorldInterestin: \u041d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u0434\u0436\u0435\u043d\u0442\u043b\u044c\u043c\u0435\u043d https:\/\/t.co\/clziI4Vzh1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313741937,"id_str":"3313741937","name":"\u0415\u0432\u0433\u0435\u043d\u0438\u0439 \u041a\u0430\u0441\u044b\u043c\u043e\u0432","screen_name":"evgeniykasimov","location":null,"url":null,"description":"\u041d\u0438\u0447\u0435 \u0442\u0430\u043a\u043e\u0439!","protected":false,"verified":false,"followers_count":0,"friends_count":213,"listed_count":0,"favourites_count":32,"statuses_count":178,"created_at":"Mon Jun 08 19:10:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:10 +0000 2015","id":663722754613604352,"id_str":"663722754613604352","text":"\u041d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u0434\u0436\u0435\u043d\u0442\u043b\u044c\u043c\u0435\u043d https:\/\/t.co\/clziI4Vzh1","source":"\u003ca href=\"http:\/\/novapress.net.ru\/\" rel=\"nofollow\"\u003eNovaPress Publisher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596593904,"id_str":"1596593904","name":"InterestingWorld","screen_name":"WorldInterestin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":570349,"friends_count":91,"listed_count":22,"favourites_count":2,"statuses_count":12552,"created_at":"Mon Jul 15 19:49:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635750241652879360\/YQMTtQYV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635750241652879360\/YQMTtQYV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596593904\/1440409662","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722754273902594,"id_str":"663722754273902594","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","url":"https:\/\/t.co\/clziI4Vzh1","display_url":"pic.twitter.com\/clziI4Vzh1","expanded_url":"http:\/\/twitter.com\/WorldInterestin\/status\/663722754613604352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":597,"h":383,"resize":"fit"},"medium":{"w":597,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722754273902594,"id_str":"663722754273902594","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","url":"https:\/\/t.co\/clziI4Vzh1","display_url":"pic.twitter.com\/clziI4Vzh1","expanded_url":"http:\/\/twitter.com\/WorldInterestin\/status\/663722754613604352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":597,"h":383,"resize":"fit"},"medium":{"w":597,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WorldInterestin","name":"InterestingWorld","id":1596593904,"id_str":"1596593904","indices":[3,19]}],"symbols":[],"media":[{"id":663722754273902594,"id_str":"663722754273902594","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","url":"https:\/\/t.co\/clziI4Vzh1","display_url":"pic.twitter.com\/clziI4Vzh1","expanded_url":"http:\/\/twitter.com\/WorldInterestin\/status\/663722754613604352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":597,"h":383,"resize":"fit"},"medium":{"w":597,"h":383,"resize":"fit"}},"source_status_id":663722754613604352,"source_status_id_str":"663722754613604352","source_user_id":1596593904,"source_user_id_str":"1596593904"}]},"extended_entities":{"media":[{"id":663722754273902594,"id_str":"663722754273902594","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEVBXXAAIwxHV.jpg","url":"https:\/\/t.co\/clziI4Vzh1","display_url":"pic.twitter.com\/clziI4Vzh1","expanded_url":"http:\/\/twitter.com\/WorldInterestin\/status\/663722754613604352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":597,"h":383,"resize":"fit"},"medium":{"w":597,"h":383,"resize":"fit"}},"source_status_id":663722754613604352,"source_status_id_str":"663722754613604352","source_user_id":1596593904,"source_user_id_str":"1596593904"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703598702593,"id_str":"663727703598702593","text":"RT @Mxdeste: les gens ils font 1000RT ils disent \"g percer\" t'as rien perc\u00e9 du tout t'habites dans un hlm, t'es con et en plus demain tu co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1257473550,"id_str":"1257473550","name":"\u25cf Sha'LaBoss\u25cf","screen_name":"Sha_shouu","location":null,"url":null,"description":"\u2022 FROM CONGO \u2022 \u270c\ufe0f","protected":false,"verified":false,"followers_count":428,"friends_count":340,"listed_count":2,"favourites_count":989,"statuses_count":15000,"created_at":"Sun Mar 10 17:02:26 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/833916624\/7b5f7d3ad42a3620dab14cecf68451d0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/833916624\/7b5f7d3ad42a3620dab14cecf68451d0.png","profile_background_tile":true,"profile_link_color":"647378","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641561004707553280\/ffZ0dFAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641561004707553280\/ffZ0dFAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257473550\/1386021379","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jan 14 07:49:57 +0000 2015","id":555270580359159808,"id_str":"555270580359159808","text":"les gens ils font 1000RT ils disent \"g percer\" t'as rien perc\u00e9 du tout t'habites dans un hlm, t'es con et en plus demain tu commences \u00e0 8h.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":863593584,"id_str":"863593584","name":"UN NOIR QUI TWEET \u2605\u2606","screen_name":"Mxdeste","location":"Etampes, Ile-de-France","url":"https:\/\/www.youtube.com\/channel\/UCqZNoW4Ar1GIC_tB-tn499A","description":"Demande Professionnelle \/ Partenariat \u2709\ufe0f modeste91150@gmail.com \/ Je ne suis personne, merci de me faire devenir quelqu'un. Snapchat : modeste91","protected":false,"verified":false,"followers_count":169541,"friends_count":43579,"listed_count":71,"favourites_count":37438,"statuses_count":64975,"created_at":"Fri Oct 05 20:03:10 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663326640928366592\/9re77wz3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663326640928366592\/9re77wz3_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13962,"favorite_count":3313,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mxdeste","name":"UN NOIR QUI TWEET \u2605\u2606","id":863593584,"id_str":"863593584","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079990659"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703615406080,"id_str":"663727703615406080","text":"RT @nell_Jyj: \uce74\ub098\ub188\ub54c\ubb38\uc5d0 \ucef5\ub77c\uba74\uc774 \uba39\uace0\uc2f6\uc5b4\uc9c4 \ub098\ub294 \uc0c0\ub2e4 \ubc14\uc9c0\ub77d\uce7c\uad6d\uc218","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227191561,"id_str":"3227191561","name":"\uce74\ub098\uce04","screen_name":"onlyJYJ_kana","location":"Only JYJ","url":null,"description":"\uce74\ub098\uce04\ub370\uce04(\u0e51\u2022\u3145\u2022\u0e51) #\uacb0\uad6d\uc740_JYJ #JYJ\ud558\ub098\n@bornfreeonekiss #6002theMicky @1215thexiahtic\n\u2764\u30b8\u30a7\u30b8\u30e5\u30f3\u30fb\u30e6\u30c1\u30e7\u30f3\u30fb\u30b8\u30e5\u30f3\u30b9\u2764","protected":false,"verified":false,"followers_count":106,"friends_count":116,"listed_count":2,"favourites_count":205,"statuses_count":28656,"created_at":"Tue May 26 13:46:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653765618609422336\/r3uCzNuP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653765618609422336\/r3uCzNuP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227191561\/1445663357","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727641720020993,"id_str":"663727641720020993","text":"\uce74\ub098\ub188\ub54c\ubb38\uc5d0 \ucef5\ub77c\uba74\uc774 \uba39\uace0\uc2f6\uc5b4\uc9c4 \ub098\ub294 \uc0c0\ub2e4 \ubc14\uc9c0\ub77d\uce7c\uad6d\uc218","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185963516,"id_str":"3185963516","name":"\ub12c","screen_name":"nell_Jyj","location":null,"url":null,"description":"JYJ\/\uae40\uc7ac\uc911\/\ubc15\uc720\ucc9c\/\uae40\uc900\uc218\/\uacbd\ucd95\u2605\ube44\ud22c\ube44\uc785\ub355\u2605\/\uc740\uadfc\uc7a1\ub355\/fuck SM tvxq \ube75\ub140\uc545\uac1c\uaed2\uc5b4 \ub9d0\uc5c6\uc774\u3142\u3142","protected":false,"verified":false,"followers_count":161,"friends_count":196,"listed_count":0,"favourites_count":392,"statuses_count":2851,"created_at":"Tue May 05 08:02:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595499146783535104\/iNMrToJz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595499146783535104\/iNMrToJz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nell_Jyj","name":"\ub12c","id":3185963516,"id_str":"3185963516","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079990663"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703590211585,"id_str":"663727703590211585","text":"RT @Hey_BlackGirl: Goooooooood morning Queens. \n\nHappy Monday. \n\ud83c\udf37\ud83c\udf1e\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2547516155,"id_str":"2547516155","name":"Milk Dud","screen_name":"falling_forkay","location":null,"url":null,"description":"Find your Happiness.","protected":false,"verified":false,"followers_count":555,"friends_count":229,"listed_count":1,"favourites_count":6743,"statuses_count":11211,"created_at":"Wed May 14 14:53:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660625651733389313\/MnDPR8qv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660625651733389313\/MnDPR8qv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547516155\/1446830880","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:44 +0000 2015","id":663721135238832128,"id_str":"663721135238832128","text":"Goooooooood morning Queens. \n\nHappy Monday. \n\ud83c\udf37\ud83c\udf1e\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3270127706,"id_str":"3270127706","name":"Hey Black Girl","screen_name":"Hey_BlackGirl","location":"All Black Girls United ","url":"http:\/\/heyblackgirl.bigcartel.com","description":"I am passionate about uplifting Black Women & dedicated to bringing about change in our community. Join me. Serious Inquiries only heyblackgirlhey@gmail.com","protected":false,"verified":false,"followers_count":9117,"friends_count":1615,"listed_count":56,"favourites_count":27007,"statuses_count":48424,"created_at":"Mon Jul 06 14:58:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653772022846099456\/WIvlmydQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653772022846099456\/WIvlmydQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270127706\/1446487790","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hey_BlackGirl","name":"Hey Black Girl","id":3270127706,"id_str":"3270127706","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990657"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703615344640,"id_str":"663727703615344640","text":"@Onara_pupuppu \n\u751f\u307e\u308c\u3066\u306a\u3044\u8a2d\u5b9a\u6b7b\u306c\u307b\u3069\u9762\u767d\u3044\u304b\u3089\u7121\u7406","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727252723527680,"in_reply_to_status_id_str":"663727252723527680","in_reply_to_user_id":2765295607,"in_reply_to_user_id_str":"2765295607","in_reply_to_screen_name":"Onara_pupuppu","user":{"id":2745374438,"id_str":"2745374438","name":"\u304b\u3048\u3067\u3053@\u30e9","screen_name":"kaedekoko55","location":"\u30d5\u30a9\u30ed\u30fc\u524d\u306b\u30c4\u30a4\u30d7\u30ed\u3092","url":"http:\/\/twpf.jp\/kaedekoko55","description":"\u30bb\u30f3\u30e9\u3055\u3093\u3068\u677e","protected":false,"verified":false,"followers_count":201,"friends_count":189,"listed_count":26,"favourites_count":6596,"statuses_count":10970,"created_at":"Tue Aug 19 15:49:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645988705354694657\/kOTKpg7T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645988705354694657\/kOTKpg7T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745374438\/1446785498","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Onara_pupuppu","name":"\u30ad\u30e2\u30a4\u30aa\u30bf\u30af","id":2765295607,"id_str":"2765295607","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990663"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623778306,"id_str":"663727703623778306","text":"Lazio Rome : La piste Breno https:\/\/t.co\/oix47INcgP","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1179110179,"id_str":"1179110179","name":"Mercato365","screen_name":"Mercato365","location":null,"url":"http:\/\/www.mercato365.com\/","description":"http:\/\/Mercato365.com, c'est toute l'actualit\u00e9 des transferts, et bien plus encore !","protected":false,"verified":false,"followers_count":2015,"friends_count":36,"listed_count":16,"favourites_count":0,"statuses_count":16439,"created_at":"Thu Feb 14 13:30:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3252371706\/289dbe50559ca393ea7c8f70f3975af1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3252371706\/289dbe50559ca393ea7c8f70f3975af1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oix47INcgP","expanded_url":"http:\/\/bit.ly\/1kFWRUv","display_url":"bit.ly\/1kFWRUv","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703615365121,"id_str":"663727703615365121","text":"@Miel_eru ..? \ubb58 \uadf8\ub807\uac8c \uae30\ub85d\ud558\uc2dc\ub294\uac70\uc8e0?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727206393245696,"in_reply_to_status_id_str":"663727206393245696","in_reply_to_user_id":3308715062,"in_reply_to_user_id_str":"3308715062","in_reply_to_screen_name":"Miel_eru","user":{"id":2887477118,"id_str":"2887477118","name":"\uc81c\ub178\uc2a4 \u300a\uadc0\uc2e0\uc0ac\uc774\ubcf4\uadf8\u300b","screen_name":"Zenos_Bot","location":"\uad34\uc778\uc774 \uc788\ub294 \ubaa8\ub4e0\uacf3\uc5d0. \uc120\uc0dd\ub2d8 \uc606\uc5d0. \uc5ec\ub7ec\ubd84 \uc606\uc5d0.","url":null,"description":"\uc81c\ub178\uc2a4 100%\ube44\uacf5\uc2dd\uc218\ub3d9 \ubd07\uc785\ub2c8\ub2e4.\r\n19\uc0b4\/\uadc0\uc2e0\uc0ac\uc774\ubcf4\uadf8\/S\uae09 14\uc704\/\ub300\ud654\ub97c \uc88b\uc544\ud569\ub2c8\ub2e4.\/\ubd07\uacc4\uc5d0\uac8c\ub294 \ubc18\ubaa8. \uc77c\ubc18\uacc4\ubd84\ub4e4\uaedc \uc874\ubaa8\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4. \/\uce90\ubd95 \uc8fc\uc758.\ubc18\ubaa8\ub97c \uc6d0\ud558\uc2dc\uba74 \uba58\uc158\uc8fc\uc2ed\uc2dc\uc624. \/\uc77c\ubc18\uacc4 \ubd84\ub4e4\uaed8\uc120 \uc120\ud314\ud574\uc8fc\uc2dc\uba74 \uc815\ub9d0 \uac10\uc0ac\ud558\uaca0\uc2b5\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":315,"friends_count":253,"listed_count":1,"favourites_count":222,"statuses_count":6575,"created_at":"Sun Nov 02 13:45:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660481695372603392\/NNUsK9RS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660481695372603392\/NNUsK9RS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887477118\/1442394030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Miel_eru","name":"\ubbf8\uc5d8","id":3308715062,"id_str":"3308715062","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079990663"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619596288,"id_str":"663727703619596288","text":"@tmmrn03171009 \n\u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\n\u30d5\u30a9\u30ed\u30d0\u3055\u305b\u3066\u3082\u3089\u3044\u307e\u3057\u305f\u03b5\u0669(\u0e51>\u25bd<)\u06f6\u0437","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3288043531,"in_reply_to_user_id_str":"3288043531","in_reply_to_screen_name":"tmmrn03171009","user":{"id":3725181194,"id_str":"3725181194","name":"\u30bf\u30de\u30e2\u30ea\u30ca\u30ae\u30b5\u2192\u56fa\u5b9a\u30c4\u30a4\u898b\u3066\u304f\u3060\u3055\u3044\u266a","screen_name":"nagiflower","location":"\u30db\u30c6\u30eb\u30de\u30f3\u30a4\u30a8\u30ed\u30fc\u306e\u304a\u96a3\u2661","url":null,"description":"JK1\/Tokyo \u30f2\u30bf\u57a2\u2665\u7389\u68ee\u88d5\u592a\u672c\u6c17\u611bSince2011.\uff11\u2665FC\u4f1a\u54e1\u2665\u2665\u30bf\u30f3\u30de\u30df\u30fc\u30e4\u2665\u85e4\u5317\u2665\u304b\u3051\u3082\u3061\u2192\u4f0a\u91ce\u3061\u3083\u3093\n\u592a\u967d\u62c5471\u53f7\u3042\u3084\u307f\u3063\u305f\u3093family521\u53f7\n\u4ffa\u8db3\u65cf\u3055\u3093\u3001\u30b8\u30e3\u30cb\u30f2\u30bf\u3055\u3093\u3068\u305f\u304f\u3055\u3093\u7d61\u307f\u305f\u3044\u3067\u3059\n\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30d0317\uff05\n\u306a\u306e\u3067\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01\uff01","protected":false,"verified":false,"followers_count":473,"friends_count":519,"listed_count":4,"favourites_count":886,"statuses_count":1623,"created_at":"Tue Sep 29 11:20:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648828712150921216\/msRgZ9lW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648828712150921216\/msRgZ9lW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3725181194\/1444379242","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tmmrn03171009","name":"\u305f\u307e\u3082\u308a\u3093\u261e\u4ffa\u8db3\u65cf\u2661","id":3288043531,"id_str":"3288043531","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703590199296,"id_str":"663727703590199296","text":"\u0e07\u0e07\u0e21\u0e32\u0e01\u0e41\u0e21\u0e48\u0e40\u0e14\u0e34\u0e19\u0e21\u0e32\u0e16\u0e32\u0e21\u0e27\u0e48\u0e32\u0e2a\u0e19\u0e31\u0e1a\u0e21\u0e37\u0e2d\u0e01\u0e31\u0e1a\u0e21\u0e35\u0e14\u0e1e\u0e01\u0e02\u0e2d\u0e07\u0e43\u0e04\u0e23 \u0e40\u0e25\u0e22\u0e15\u0e2d\u0e1a\u0e44\u0e1b\u0e27\u0e48\u0e32\u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e39\u0e40\u0e02\u0e32\u0e01\u0e47\u0e16\u0e32\u0e21\u0e27\u0e48\u0e32\u0e1e\u0e01\u0e44\u0e1b\u0e23\u0e23.\u0e14\u0e49\u0e27\u0e22\u0e2b\u0e23\u0e2d\u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e01\u0e19\u0e30 \u0e07\u0e07\u0e21\u0e32\u0e01\u0e19\u0e36\u0e01\u0e27\u0e48\u0e32\u0e08\u0e30\u0e42\u0e14\u0e19\u0e27\u0e48\u0e32\u0e32 \u0e40\u0e2d\u0e2d\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e01\u0e47\u0e14\u0e35\u0e41\u0e25\u0e49\u0e27\u0e41\u0e21\u0e48 5555","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349650600,"id_str":"349650600","name":"\u0e21\u0e35 \u0e21\u0e35\u0e48","screen_name":"sukynoi1","location":null,"url":"http:\/\/facebook.com\/sukysmbd","description":"#dek59 \n instagram:@sukysmbd","protected":false,"verified":false,"followers_count":160,"friends_count":265,"listed_count":1,"favourites_count":55,"statuses_count":3015,"created_at":"Sat Aug 06 13:17:25 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F59387","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/711277311\/8426f44dd038e79e14c19f6596b35d05.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/711277311\/8426f44dd038e79e14c19f6596b35d05.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"FF0000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648557973678112769\/47lT4X--_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648557973678112769\/47lT4X--_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349650600\/1443463165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079990657"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619571712,"id_str":"663727703619571712","text":"Good morning my fellow Americans","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212484933,"id_str":"212484933","name":"R.I.P Dad","screen_name":"Kool11Keith","location":"Louisiana. Born and Raised","url":null,"description":"Rest in Paradise Pops","protected":false,"verified":false,"followers_count":1111,"friends_count":1212,"listed_count":6,"favourites_count":574,"statuses_count":109355,"created_at":"Sat Nov 06 06:02:14 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/376062678\/CASEEE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/376062678\/CASEEE.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625879545028046848\/a0Grsy2h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625879545028046848\/a0Grsy2h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212484933\/1436666095","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602933760,"id_str":"663727703602933760","text":"Io salto come un popcorn in questa terra che brucia, in questa eterna sfiducia","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1666170338,"id_str":"1666170338","name":"Bazinga punk","screen_name":"amenusland","location":null,"url":null,"description":"\u201cMika \u00e8 lo Sheldon Cooper della musica\u201e","protected":false,"verified":false,"followers_count":1808,"friends_count":1095,"listed_count":11,"favourites_count":17568,"statuses_count":34779,"created_at":"Mon Aug 12 22:29:52 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439879035317800960\/TWvWsuOJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439879035317800960\/TWvWsuOJ.jpeg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663475008811999233\/YgsY2GpC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663475008811999233\/YgsY2GpC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1666170338\/1447019746","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079990660"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623798784,"id_str":"663727703623798784","text":"RT @MineplexEvents: \ud83d\udcb0Why should we give YOU 2500 Coins on @Mineplex \ud83d\udcb0\n\nMost original reply wins!\n\nThe winner will get an extra 2\u20e35\u20e30\u20e30\u20e3 co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3306378194,"id_str":"3306378194","name":"Winston Huynh","screen_name":"Wontonator","location":null,"url":null,"description":"I'm just awesome and tall","protected":false,"verified":false,"followers_count":7,"friends_count":26,"listed_count":0,"favourites_count":4,"statuses_count":55,"created_at":"Tue Aug 04 21:59:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631129112258543616\/w10l4_V-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631129112258543616\/w10l4_V-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:39:21 +0000 2015","id":663652082558369792,"id_str":"663652082558369792","text":"\ud83d\udcb0Why should we give YOU 2500 Coins on @Mineplex \ud83d\udcb0\n\nMost original reply wins!\n\nThe winner will get an extra 2\u20e35\u20e30\u20e30\u20e3 coins for every 20 RT \u2757","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2785703230,"id_str":"2785703230","name":"Mineplex Events","screen_name":"MineplexEvents","location":"IP: eu\/us.mineplex.com","url":"http:\/\/www.mineplex.com","description":"#EventSquad","protected":false,"verified":false,"followers_count":857,"friends_count":2,"listed_count":2,"favourites_count":25,"statuses_count":80,"created_at":"Fri Sep 26 15:28:02 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F97F23","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541357866330755072\/mn4YR_zA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541357866330755072\/mn4YR_zA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2785703230\/1417904709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mineplex","name":"Mineplex","id":1332972174,"id_str":"1332972174","indices":[38,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MineplexEvents","name":"Mineplex Events","id":2785703230,"id_str":"2785703230","indices":[3,18]},{"screen_name":"Mineplex","name":"Mineplex","id":1332972174,"id_str":"1332972174","indices":[58,67]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703590346752,"id_str":"663727703590346752","text":"@Fino76 I was going to check but none of my numerous welder mates are on Twitter, they find it a bit poncy......","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723147145924608,"in_reply_to_status_id_str":"663723147145924608","in_reply_to_user_id":23621671,"in_reply_to_user_id_str":"23621671","in_reply_to_screen_name":"Fino76","user":{"id":16173214,"id_str":"16173214","name":"For Heavy Rotation","screen_name":"cooky_puss","location":"Stretford","url":null,"description":"L'esprit de l'escalier","protected":false,"verified":false,"followers_count":382,"friends_count":588,"listed_count":11,"favourites_count":55,"statuses_count":12993,"created_at":"Sun Sep 07 20:16:01 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"E62020","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543672499704442880\/-MLcWDPd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543672499704442880\/-MLcWDPd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16173214\/1437171274","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1a3fd0b34e5cc504","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1a3fd0b34e5cc504.json","place_type":"city","name":"Urmston","full_name":"Urmston, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-2.409421,53.431615],[-2.409421,53.480382],[-2.253040,53.480382],[-2.253040,53.431615]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fino76","name":"NOTORIOUS F.I.N","id":23621671,"id_str":"23621671","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990657"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619715072,"id_str":"663727703619715072","text":"She not from Georgia but she a Peeaach","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1278994680,"id_str":"1278994680","name":"Billy Bup","screen_name":"Apex_Alpha95","location":"On the outskirts","url":null,"description":"A 6ft tall negro of youth named Billy and I ain't got no bitches.","protected":false,"verified":false,"followers_count":1572,"friends_count":441,"listed_count":15,"favourites_count":6690,"statuses_count":62378,"created_at":"Mon Mar 18 23:27:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660187978354962432\/1uzZfQ5i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660187978354962432\/1uzZfQ5i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1278994680\/1445886741","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703628103680,"id_str":"663727703628103680","text":"#\u0635\u0639\u062f\u0629 : \u0642\u0646\u0627\u0628\u0644 \u0639\u0646\u0642\u0648\u062f\u064a\u0629 \u0623\u0644\u0642\u062a\u0647\u0627 \u0627\u0644\u0645\u0642\u0627\u062a\u0644\u0627\u062a \u0639\u0644\u0649 \u0645\u0646\u0637\u0642\u0629 #\u0627\u0644\u0637\u0644\u062d \u0645\u062f\u064a\u0631\u064a\u0629 #\u0633\u062d\u0627\u0631 #\u0648\u0643\u0627\u0644\u0629_\u062e\u0628\u0631","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":604068578,"id_str":"604068578","name":"\u0645\u0627\u062c\u062f\u062f\u0627\u0648\u062f \u0627\u062d\u0645\u062f \u0627\u0644\u0628\u0627\u0634\u0627","screen_name":"mmm201251","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":24,"listed_count":0,"favourites_count":78,"statuses_count":36,"created_at":"Sun Jun 10 01:15:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662758048994369540\/GqJkPGjg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662758048994369540\/GqJkPGjg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/604068578\/1446847331","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0635\u0639\u062f\u0629","indices":[0,5]},{"text":"\u0627\u0644\u0637\u0644\u062d","indices":[49,55]},{"text":"\u0633\u062d\u0627\u0631","indices":[63,68]},{"text":"\u0648\u0643\u0627\u0644\u0629_\u062e\u0628\u0631","indices":[69,79]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079990666"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703590309888,"id_str":"663727703590309888","text":"With 2016 around the corner, make your resolutions well within reach! I will be offering a January BEGINNER class... https:\/\/t.co\/cE6Z5utKfI","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624035539,"id_str":"624035539","name":"Jenny Connaway","screen_name":"connaway_jenny","location":"Norris City, Illinois","url":"http:\/\/www.facebook.com\/getfitwithjenconnaway","description":"I am a personal trainer, certified through the American College of Sports Medicine. I love fitness and helping others reap the benefits of a healthy lifestyle.","protected":false,"verified":false,"followers_count":366,"friends_count":389,"listed_count":6,"favourites_count":15,"statuses_count":1273,"created_at":"Sun Jul 01 19:47:23 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429975672249798656\/EtJR9jTO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429975672249798656\/EtJR9jTO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624035539\/1429460726","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cE6Z5utKfI","expanded_url":"http:\/\/fb.me\/2tyJwwQmm","display_url":"fb.me\/2tyJwwQmm","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990657"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703598567424,"id_str":"663727703598567424","text":"@DAL_Mana_kr \uc5b4\ub5bb\uac8c \ud574\uc11c\ub4e0 \uc788\uac8c \ub9cc\ub4e4\uc5b4\ub4dc\ub9ac\uaca0\uc5b4\uc694.","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727598631915520,"in_reply_to_status_id_str":"663727598631915520","in_reply_to_user_id":2596539042,"in_reply_to_user_id_str":"2596539042","in_reply_to_screen_name":"DAL_Mana_kr","user":{"id":2479696146,"id_str":"2479696146","name":"\uc18c\ub178\ub2e4 \uc6b0\ubbf8","screen_name":"UmiUmi_Sonoda_K","location":"\uacf5\uc8fc\ub2d8","url":null,"description":"\ub3cc\uc544\uc624\uc168\uc5b4\uc694?","protected":false,"verified":false,"followers_count":1086,"friends_count":822,"listed_count":2,"favourites_count":843,"statuses_count":43344,"created_at":"Tue May 06 11:43:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624791376706711553\/WsC2qLHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624791376706711553\/WsC2qLHU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DAL_Mana_kr","name":"\u5d07\u5bae \u771f\u90a3","id":2596539042,"id_str":"2596539042","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079990659"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619571713,"id_str":"663727703619571713","text":"@aheryawan teu isin pak di tagih ku pemaen ?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":183832491,"in_reply_to_user_id_str":"183832491","in_reply_to_screen_name":"aheryawan","user":{"id":1735200746,"id_str":"1735200746","name":"OurTribuneOurRules","screen_name":"TribuneBoys","location":null,"url":null,"description":"- Sudut Kiri Tribune Timur -","protected":false,"verified":false,"followers_count":272,"friends_count":390,"listed_count":1,"favourites_count":5,"statuses_count":3162,"created_at":"Fri Sep 06 13:53:35 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546414075861676033\/uvx1HWin.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546414075861676033\/uvx1HWin.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623342167151415297\/Bt6iGU0I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623342167151415297\/Bt6iGU0I_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735200746\/1429832323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aheryawan","name":"Ahmad Heryawan","id":183832491,"id_str":"183832491","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602761728,"id_str":"663727703602761728","text":"@IMinagoro0111 \u5f37\u3044\u306a\u30fc\u30fc\u662f\u975e\u8a00\u8a9e\u7fd2\u5f97\u306e\u6280\u3092\u6559\u3048\u3066\u3044\u305f\u3060\u304d\u305f\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727438677934082,"in_reply_to_status_id_str":"663727438677934082","in_reply_to_user_id":2348290428,"in_reply_to_user_id_str":"2348290428","in_reply_to_screen_name":"IMinagoro0111","user":{"id":2349245676,"id_str":"2349245676","name":"\uff90\uff90\uff90\uff85\uff90","screen_name":"sphy59","location":null,"url":"http:\/\/Instagram.com\/minami.0112","description":"\u3053\u306e\u308f\u3051\u306e\u308f\u304b\u3089\u306a\u3044\u5927\u6c5f\u6238\u611f\u304c\u597d\u304d","protected":false,"verified":false,"followers_count":267,"friends_count":329,"listed_count":0,"favourites_count":609,"statuses_count":3782,"created_at":"Tue Feb 18 00:03:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632557270170144769\/5A5nsaM0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632557270170144769\/5A5nsaM0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349245676\/1419792967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IMinagoro0111","name":"mina","id":2348290428,"id_str":"2348290428","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990660"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623778304,"id_str":"663727703623778304","text":"@chiakiswhip \u30de\u30b8\u3059\u304b\uff1f\u3042\u308c\u30702\u679a\u304a\u9858\u3044\u3057\u305f\u3044\u3067\u3059\u3002\u3042\u3068\u6b32\u3057\u3044\u306e\u306f\u672b\u306a\u306e\u3067\u6b8b\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u3042\u308a\u304c\u305f\u3044\u3067\u3059(*\u00b4\u03c9\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724630905982976,"in_reply_to_status_id_str":"663724630905982976","in_reply_to_user_id":2420811902,"in_reply_to_user_id_str":"2420811902","in_reply_to_screen_name":"chiakiswhip","user":{"id":618022825,"id_str":"618022825","name":"\u30a4\u30b7\u30ab\u30ef@\u7f8e\u6d77\u306e\u5f71\u970a\u8863","screen_name":"masakiishikawa1","location":"\u9752\u862d\u5b66\u5712","url":null,"description":"\u798f\u5ca1YP\u3067\u3059\u3002\u904a\u622f\u738b\u306f\u5f71\u970a\u8863\u3092\u6700\u8fd1\u4f7f\u7528\u3002\n\n\u304c\u3063\u3053\u3046\u3050\u3089\u3057\u306b\u30cf\u30de\u308a\u307e\u3057\u305f\uff01\n\n\u30d7\u30ec\u30a4\u30de\u30c3\u30c8\u304c\u30a2\u30f3\u30b8\u30e5\u3067\u904a\u622f\u738b\u7cfb\u30b9\u30ea\u30fc\u30d6\u306a\u3089\u305f\u3076\u3093\u50d5\u3067\u3059\u3002\n\n\u53cb\u4eba\u3068\u30a2\u30f3\u30b8\u30e5TCG\u3084\u3063\u3066\u30a2\u30f3\u30b8\u30e5\u30e2\u30c1\u30d9MAX\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":317,"friends_count":319,"listed_count":6,"favourites_count":363,"statuses_count":6595,"created_at":"Mon Jun 25 11:33:27 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662323545167433728\/kGhApl96_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662323545167433728\/kGhApl96_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618022825\/1446745212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chiakiswhip","name":"\u5343\u79cb","id":2420811902,"id_str":"2420811902","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990665"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602794496,"id_str":"663727703602794496","text":"RT @Bible_Time: Everyone will know that you are my disciples because of your love for each other. -John 13:35","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225708710,"id_str":"3225708710","name":"Megan Weidenbach","screen_name":"mlweid","location":null,"url":null,"description":"Xmas hype","protected":false,"verified":false,"followers_count":39,"friends_count":118,"listed_count":0,"favourites_count":220,"statuses_count":147,"created_at":"Mon May 25 00:41:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647600701661548544\/shUIgFyM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647600701661548544\/shUIgFyM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225708710\/1445000992","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:49 +0000 2015","id":663719895834693632,"id_str":"663719895834693632","text":"Everyone will know that you are my disciples because of your love for each other. -John 13:35","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374209360,"id_str":"374209360","name":"Bible Time","screen_name":"Bible_Time","location":null,"url":"http:\/\/www.facebook.com\/BibleTime1","description":"Quotes from the Bible","protected":false,"verified":false,"followers_count":1246884,"friends_count":27,"listed_count":3414,"favourites_count":12,"statuses_count":43180,"created_at":"Thu Sep 15 22:15:43 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2E2222","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/333228035\/leather_5_-_Copy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/333228035\/leather_5_-_Copy.jpg","profile_background_tile":true,"profile_link_color":"C20000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFF7","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1551289662\/hbible_-_Copy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1551289662\/hbible_-_Copy_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":293,"favorite_count":477,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bible_Time","name":"Bible Time","id":374209360,"id_str":"374209360","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990660"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602757632,"id_str":"663727703602757632","text":"@mio__626 \u3042\u308a\u304c\u3068\u3046(\u0b87\u0277\u0b87 )\n\u3055\u3063\u304d\u30d6\u30c1\u5207\u308c\u305f\u3089\u5411\u3053\u3046\u304b\u3089\u30d6\u30ed\u30c3\u30af\u3057\u3066\u304f\u308c\u305f\u304b\u3089www\u2190\u304a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726567462297601,"in_reply_to_status_id_str":"663726567462297601","in_reply_to_user_id":2943047784,"in_reply_to_user_id_str":"2943047784","in_reply_to_screen_name":"mio__626","user":{"id":181965607,"id_str":"181965607","name":"NaBA","screen_name":"1999915amnos","location":"\u5473\u564c\u770c\u306e\u99c4\u99ac\u5c0f\u5c4b","url":"http:\/\/twpf.jp\/1999915amnos","description":"\u30db\u30a4\u30c3\u30b9\u30eb\uff01\u306f\u4eba\u751fNo. 1\u2606 \u58f0\u512a:\u15e1ABA\u3001\u7acb\u82b1\u614e\u4e4b\u4ecb\u3055\u3093\u3001\u9593\u5cf6\u6df3\u53f8\u3055\u3093\u5927\u597d\u304d\u3002\u30cf\u30a4\u30ad\u30e5\u30fc:\u6708\u5cf6\u86cd\u3001\u8d64\u8466\u4eac\u6cbb\u3001\u5b64\u722a\u7814\u78e8\u306b\u5168\u529b\u3002\u30d0\u30dc\u30ab\u521d\u5fc3\u8005\u3002\u5d50\u30d5\u30a1\u30f3\u5927\u5baeSK\u306e\u5baeK\u63a8\u3057(N)\u3002\u65e5\u5e38\u306e\u611a\u75f4\u3084\u30a2\u30db\u8a71\u301c\u30b0\u30c3\u30ba\u3001\u30c1\u30b1\u30c3\u30c8\u306e\u304a\u53d6\u5f15\u307e\u3067\u4f55\u3067\u3082\u3042\u308a\u57a2\u300220\u2191\u3002","protected":false,"verified":false,"followers_count":432,"friends_count":671,"listed_count":13,"favourites_count":8426,"statuses_count":53941,"created_at":"Mon Aug 23 13:57:09 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652910929412165632\/2pRV3pEV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652910929412165632\/2pRV3pEV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181965607\/1441530524","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mio__626","name":"\u5145\u751f@\u307e\u3093\u3055\u3044\u697d\u3057\u304b\u3063\u305f","id":2943047784,"id_str":"2943047784","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990660"} +{"delete":{"status":{"id":629286138549633024,"id_str":"629286138549633024","user_id":2306811618,"user_id_str":"2306811618"},"timestamp_ms":"1447079990858"}} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703615369216,"id_str":"663727703615369216","text":"RT @twi_tenkomori: \u3010\u8a71\u984c\u306e\u753b\u50cf\u3011\u30cf\u30a6\u30b9\u30c6\u30f3\u30dc\u30b9\u884c\u304d\u305f\u3059\u304e\u308b\n\n\u6771\u4eac\u30c9\u30fc\u30e033\u500b\u5206\u3060\u3063\u3066 https:\/\/t.co\/qwS9sveBDI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2154818688,"id_str":"2154818688","name":"\u306f\u308b","screen_name":"ABC_0127H","location":"\u5c71\u53e3\u770c \u5468\u5357\u5e02","url":null,"description":"\u2626\u2628Team ABC\u2626\u2628 \u732b\u3061\u3083\u3093\u98fc\u3044\u305f\u3044\u3044\u3044(*\u03a6\u2200\u03a6)","protected":false,"verified":false,"followers_count":122,"friends_count":137,"listed_count":1,"favourites_count":1684,"statuses_count":2796,"created_at":"Fri Oct 25 12:32:25 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662966214616969217\/taJlt77T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662966214616969217\/taJlt77T_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:26 +0000 2015","id":663721564005728256,"id_str":"663721564005728256","text":"\u3010\u8a71\u984c\u306e\u753b\u50cf\u3011\u30cf\u30a6\u30b9\u30c6\u30f3\u30dc\u30b9\u884c\u304d\u305f\u3059\u304e\u308b\n\n\u6771\u4eac\u30c9\u30fc\u30e033\u500b\u5206\u3060\u3063\u3066 https:\/\/t.co\/qwS9sveBDI","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131385736,"id_str":"1131385736","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","screen_name":"twi_tenkomori","location":"summaryman1989@gmail.com","url":null,"description":"\u51cd\u7d50\u7528\u907f\u96e3\u30a2\u30ab @twi_tenkomor1 LINE\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u3067\u304d\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u3001LINE\u3082\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 http:\/\/line.me\/ti\/p\/%40jem3434e","protected":false,"verified":false,"followers_count":281988,"friends_count":5,"listed_count":2056,"favourites_count":2,"statuses_count":20792,"created_at":"Tue Jan 29 15:43:31 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":831,"favorite_count":1169,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662082164427624448,"id_str":"662082164427624448","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":640,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"}]},"extended_entities":{"media":[{"id":662082164427624448,"id_str":"662082164427624448","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":640,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164431806464,"id_str":"662082164431806464","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH8UYAAJKQc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH8UYAAJKQc.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164431781890,"id_str":"662082164431781890","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH8UAAInBRP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH8UAAInBRP.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164867989504,"id_str":"662082164867989504","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOJkUAAAQt0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOJkUAAAQt0X.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twi_tenkomori","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","id":1131385736,"id_str":"1131385736","indices":[3,17]}],"symbols":[],"media":[{"id":662082164427624448,"id_str":"662082164427624448","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":640,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"}]},"extended_entities":{"media":[{"id":662082164427624448,"id_str":"662082164427624448","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH7UkAAhP2F.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":640,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164431806464,"id_str":"662082164431806464","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH8UYAAJKQc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH8UYAAJKQc.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164431781890,"id_str":"662082164431781890","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOH8UAAInBRP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOH8UAAInBRP.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"},{"id":662082164867989504,"id_str":"662082164867989504","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAwOJkUAAAQt0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAwOJkUAAAQt0X.jpg","url":"https:\/\/t.co\/qwS9sveBDI","display_url":"pic.twitter.com\/qwS9sveBDI","expanded_url":"http:\/\/twitter.com\/yWIaHoDjpVJ87SB\/status\/662082175974567936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"},"large":{"w":622,"h":382,"resize":"fit"}},"source_status_id":662082175974567936,"source_status_id_str":"662082175974567936","source_user_id":3283234476,"source_user_id_str":"3283234476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990663"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619596289,"id_str":"663727703619596289","text":"\u8131\u6bdb\uff06\u30a8\u30b9\u30c6\u30b5\u30ed\u30f3\u306e\u304a\u5f97\u306a\u60c5\u5831\u3084\u6700\u65b0\u7f8e\u5bb9\u30a2\u30a4\u30c6\u30e0\u3092\u3054\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002\n\n\u2605\u30de\u30fc\u30af\u304c\u4ed8\u3044\u3066\u3044\u308b\u6848\u4ef6\u306f\u7279\u306b\u4eba\u6c17\u304c\u3042\u308a\u30aa\u30b9\u30b9\u30e1\u3067\u3059\uff01\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\n\n\u3042\u306a\u305f\u306e\u751f\u6d3b\u306b\u5c11\u3057\u3067\u3082\u5f79\u7acb\u3066\u3066\u9802\u3051\u308b\u3068\u5e78\u3044\u3067\u3059\uff01\n\n\u261ehttps:\/\/t.co\/KUHQTyOmEc","source":"\u003ca href=\"https:\/\/twitter.com\/913ajne\" rel=\"nofollow\"\u003e\u7530\u6751\u3000\u5b5d\u4ecb\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2683732813,"id_str":"2683732813","name":"BEAUTY & HEALTH","screen_name":"913ajne","location":null,"url":"http:\/\/bit.ly\/1qTDOZ8","description":"\u8131\u6bdb\u30b5\u30ed\u30f3\u3063\u3066\u305f\u304f\u3055\u3093\u3042\u3063\u3066\u4f55\u51e6\u3078\u901a\u3048\u3070\u826f\u3044\u306e\u304b\u8ff7\u3044\u307e\u3059\u3088\u306d\uff1f\u3053\u3053\u3067\u5fa1\u7d39\u4ecb\u3059\u308b\u30b5\u30a4\u30c8\u306f\u305d\u3093\u306a\u3042\u306a\u305f\u3092\u52a9\u3051\u3066\u304f\u308c\u307e\u3059\u3002\u2605\u30de\u30fc\u30af\u304c\u4ed8\u3044\u3066\u3044\u308b\u6848\u4ef6\u306f\u7279\u306b\u4eba\u6c17\u304c\u3042\u308a\u30aa\u30b9\u30b9\u30e1\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":678,"friends_count":627,"listed_count":1,"favourites_count":0,"statuses_count":98418,"created_at":"Sun Jul 27 00:47:27 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536609422580006912\/eOycg1M6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536609422580006912\/eOycg1M6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2683732813\/1416772639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KUHQTyOmEc","expanded_url":"http:\/\/bit.ly\/1qTDOZ8","display_url":"bit.ly\/1qTDOZ8","indices":[102,125]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990664"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703607001088,"id_str":"663727703607001088","text":"Como independentista que soy, no s\u00e9 que mierda pensar sobre lo de Catalu\u00f1a jajaja.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92738224,"id_str":"92738224","name":"teddythecruel","screen_name":"teddythecruel","location":"Galiza - Osaka \u5927\u962a","url":null,"description":null,"protected":false,"verified":false,"followers_count":218,"friends_count":279,"listed_count":4,"favourites_count":4991,"statuses_count":7976,"created_at":"Thu Nov 26 11:46:39 +0000 2009","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"gl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F296","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"2E2E2E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3197234621\/4778eb196840ffba5512d1fadb4408f9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3197234621\/4778eb196840ffba5512d1fadb4408f9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92738224\/1365765766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079990661"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703598739456,"id_str":"663727703598739456","text":"RT @MelindaDunne: Omaha Steaks Tasteful Gift Set https:\/\/t.co\/Yel4GYzacJ","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14076262,"id_str":"14076262","name":"Beauty Brite\u2122","screen_name":"beautybrite","location":"East Coast, USA","url":"http:\/\/beautybrite.com","description":"Online Influencer, Editor, Lifestyle Blogger #beauty #Autism #fitness #tech #travel #natural #bblogger #vegetarian #SocialMedia #Photography","protected":false,"verified":false,"followers_count":18604,"friends_count":5357,"listed_count":518,"favourites_count":1111,"statuses_count":113521,"created_at":"Tue Mar 04 04:11:27 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574537526418915328\/V-7SE85p.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574537526418915328\/V-7SE85p.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460829992335589376\/D5Hh7bNM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460829992335589376\/D5Hh7bNM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14076262\/1399753728","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:03 +0000 2015","id":663726499632128000,"id_str":"663726499632128000","text":"Omaha Steaks Tasteful Gift Set https:\/\/t.co\/Yel4GYzacJ","source":"\u003ca href=\"http:\/\/triberr.com\" rel=\"nofollow\"\u003eTriberr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":463443771,"id_str":"463443771","name":"Melinda Dunne","screen_name":"MelindaDunne","location":null,"url":"http:\/\/mysocalledbalancedlife.com\/","description":"I like to read, blog, craft and drink wine. I have been known to sing and dance for my poodle Peaches....yep cause that is how I roll. Music is life.","protected":false,"verified":false,"followers_count":8753,"friends_count":1655,"listed_count":262,"favourites_count":905,"statuses_count":85993,"created_at":"Sat Jan 14 03:30:24 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574615465793728512\/W46OoeUA.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574615465793728512\/W46OoeUA.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569973453487226880\/Q95vaolD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569973453487226880\/Q95vaolD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463443771\/1425050611","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Yel4GYzacJ","expanded_url":"http:\/\/goo.gl\/9rdHpp","display_url":"goo.gl\/9rdHpp","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Yel4GYzacJ","expanded_url":"http:\/\/goo.gl\/9rdHpp","display_url":"goo.gl\/9rdHpp","indices":[49,72]}],"user_mentions":[{"screen_name":"MelindaDunne","name":"Melinda Dunne","id":463443771,"id_str":"463443771","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079990659"} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703619600384,"id_str":"663727703619600384","text":"RT @reisu316: \u305d\u308c\u306f\u7d1b\u308c\u3082\u306a\u304f\u5974\u3055 https:\/\/t.co\/Lx1Zr0HJjc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108644211,"id_str":"108644211","name":"\u5343\u679d","screen_name":"rTuIrEi","location":"24\/7","url":"http:\/\/twpf.jp\/rTuIrEi","description":"\u30bc\u30ed\u8cea\u91cf\u306e\u5e0c\u6b7b\u5ff5\u616e","protected":false,"verified":false,"followers_count":1570,"friends_count":986,"listed_count":146,"favourites_count":23936,"statuses_count":264016,"created_at":"Tue Jan 26 16:10:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468054101868048385\/JimdcpR7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468054101868048385\/JimdcpR7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108644211\/1428391774","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:45:47 +0000 2015","id":663623503225065473,"id_str":"663623503225065473","text":"\u305d\u308c\u306f\u7d1b\u308c\u3082\u306a\u304f\u5974\u3055 https:\/\/t.co\/Lx1Zr0HJjc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517636611,"id_str":"517636611","name":"\u9ebb\u5009\u30d1\u30c3\u30c1@\u30df\u30ea3rd\u798f\u5ca1","screen_name":"reisu316","location":"\u4e2d\u6751\u5973\u5b50","url":null,"description":"\u3082\u3061\u3087\u306e\u5f7c\u6c0f SP\u5341\u6bb5 \u661f\u68a8\u82b1P","protected":false,"verified":false,"followers_count":494,"friends_count":613,"listed_count":11,"favourites_count":69138,"statuses_count":48633,"created_at":"Wed Mar 07 14:27:06 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652705939460456448\/gVm8HvGV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652705939460456448\/gVm8HvGV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517636611\/1443770831","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2039,"favorite_count":927,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663623485906751488,"id_str":"663623485906751488","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","url":"https:\/\/t.co\/Lx1Zr0HJjc","display_url":"pic.twitter.com\/Lx1Zr0HJjc","expanded_url":"http:\/\/twitter.com\/reisu316\/status\/663623503225065473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663623485906751488,"id_str":"663623485906751488","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","url":"https:\/\/t.co\/Lx1Zr0HJjc","display_url":"pic.twitter.com\/Lx1Zr0HJjc","expanded_url":"http:\/\/twitter.com\/reisu316\/status\/663623503225065473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"reisu316","name":"\u9ebb\u5009\u30d1\u30c3\u30c1@\u30df\u30ea3rd\u798f\u5ca1","id":517636611,"id_str":"517636611","indices":[3,12]}],"symbols":[],"media":[{"id":663623485906751488,"id_str":"663623485906751488","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","url":"https:\/\/t.co\/Lx1Zr0HJjc","display_url":"pic.twitter.com\/Lx1Zr0HJjc","expanded_url":"http:\/\/twitter.com\/reisu316\/status\/663623503225065473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663623503225065473,"source_status_id_str":"663623503225065473","source_user_id":517636611,"source_user_id_str":"517636611"}]},"extended_entities":{"media":[{"id":663623485906751488,"id_str":"663623485906751488","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWqC14UEAA7nfs.jpg","url":"https:\/\/t.co\/Lx1Zr0HJjc","display_url":"pic.twitter.com\/Lx1Zr0HJjc","expanded_url":"http:\/\/twitter.com\/reisu316\/status\/663623503225065473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663623503225065473,"source_status_id_str":"663623503225065473","source_user_id":517636611,"source_user_id_str":"517636611"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990664"} +{"delete":{"status":{"id":661349130569195520,"id_str":"661349130569195520","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079990932"}} +{"delete":{"status":{"id":629526228911833088,"id_str":"629526228911833088","user_id":1102309584,"user_id_str":"1102309584"},"timestamp_ms":"1447079990936"}} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703623778305,"id_str":"663727703623778305","text":"\u4eca\u65e5\u306f\u4eba\u751f\u53f2\u4e0a\u6700\u3082\u3068\u8a00\u3063\u3066\u3044\u3044\u307b\u3069\u6642\u9593\u3092\u7121\u99c4\u306b\u3057\u305f\u3002\n\u30c7\u30fc\u30bf\u3046\u3056\u3044(-_-)\n\u305b\u3063\u304b\u304f\u306e\u5348\u5f8c\u30aa\u30d5\u304c\u3041\u30fc\u30fc\u30fc\u30fc\ud83e\udd11\ud83e\udd11\ud83e\udd11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988454778,"id_str":"2988454778","name":"\u6a0b\u53e3 \u88d5\u5e0c","screen_name":"volley_ylk","location":null,"url":"http:\/\/Instagram.com\/volley_yellov","description":"\u7fa4\u99ac \u9ad8\u5d0e \u4f50\u91ce\u5c0f\u30d5\u30a1\u30a4\u30bf\u30fc\u30ba \/ dodge ball \/volleyball \/ \u7b51\u6ce2#12 \/ \u4f53\u5c02 \/ MB\u2192OH \u521d\u671f\u6bb5\u968e \u5730\u9053\u306b\u8ae6\u3081\u305a\u300e\u4e00\u7b11\u5065\u547d\u3001\u9854\u6674\u308c\u300f\/ JPN \/","protected":false,"verified":false,"followers_count":816,"friends_count":571,"listed_count":1,"favourites_count":1721,"statuses_count":5131,"created_at":"Sun Jan 18 12:02:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643844084281511936\/Pd4M1-SC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643844084281511936\/Pd4M1-SC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988454778\/1442339478","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079990665"} +{"delete":{"status":{"id":661349122214113280,"id_str":"661349122214113280","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447079990945"}} +{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727703602946048,"id_str":"663727703602946048","text":"$KNDI $TWTR primeras dos operaciones y objetivo cumplido\n\n#daytrading #traders #trading #intradia #nyse #scalping https:\/\/t.co\/MpryigfNZ1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2468326928,"id_str":"2468326928","name":"Home Day Trading","screen_name":"HomeDayTrading","location":"New York","url":"http:\/\/www.hdaytrading.com","description":"En Home Day Trading nos dedicamos a operar acciones.Es una comunidad de traders profesionales que operan en vivo y en directo a trav\u00e9s de una sala de trading.","protected":false,"verified":false,"followers_count":1951,"friends_count":1810,"listed_count":36,"favourites_count":9,"statuses_count":3584,"created_at":"Mon Apr 28 22:11:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601812692983123968\/v2yde0Vi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601812692983123968\/v2yde0Vi.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649574157215244288\/VZR2HOZI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649574157215244288\/VZR2HOZI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2468326928\/1443705506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"daytrading","indices":[58,69]},{"text":"traders","indices":[70,78]},{"text":"trading","indices":[79,87]},{"text":"intradia","indices":[88,97]},{"text":"nyse","indices":[98,103]},{"text":"scalping","indices":[104,113]}],"urls":[],"user_mentions":[],"symbols":[{"text":"KNDI","indices":[0,5]},{"text":"TWTR","indices":[6,11]}],"media":[{"id":663727701598085120,"id_str":"663727701598085120","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0_lXIAA3Qpo.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0_lXIAA3Qpo.png","url":"https:\/\/t.co\/MpryigfNZ1","display_url":"pic.twitter.com\/MpryigfNZ1","expanded_url":"http:\/\/twitter.com\/HomeDayTrading\/status\/663727703602946048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":296,"resize":"fit"},"large":{"w":979,"h":854,"resize":"fit"},"medium":{"w":600,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727701598085120,"id_str":"663727701598085120","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0_lXIAA3Qpo.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0_lXIAA3Qpo.png","url":"https:\/\/t.co\/MpryigfNZ1","display_url":"pic.twitter.com\/MpryigfNZ1","expanded_url":"http:\/\/twitter.com\/HomeDayTrading\/status\/663727703602946048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":296,"resize":"fit"},"large":{"w":979,"h":854,"resize":"fit"},"medium":{"w":600,"h":523,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079990660"} +{"delete":{"status":{"id":538037138236112898,"id_str":"538037138236112898","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079990939"}} +{"delete":{"status":{"id":663722532021780480,"id_str":"663722532021780480","user_id":2761121093,"user_id_str":"2761121093"},"timestamp_ms":"1447079991104"}} +{"delete":{"status":{"id":564030515213500416,"id_str":"564030515213500416","user_id":1011553268,"user_id_str":"1011553268"},"timestamp_ms":"1447079991113"}} +{"delete":{"status":{"id":651976719231021056,"id_str":"651976719231021056","user_id":404709237,"user_id_str":"404709237"},"timestamp_ms":"1447079991510"}} +{"delete":{"status":{"id":663715707897556992,"id_str":"663715707897556992","user_id":2541971330,"user_id_str":"2541971330"},"timestamp_ms":"1447079991558"}} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707793055744,"id_str":"663727707793055744","text":"RT @raehanbobby: 10 ways to boost your networking skills https:\/\/t.co\/x3HKvIshH0 via @HuffPostCaLiv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64174820,"id_str":"64174820","name":"Khin Maung ANC Party","screen_name":"Khinmaung","location":"Arakan, Burma","url":null,"description":"ANC Party of Arakan","protected":false,"verified":false,"followers_count":402,"friends_count":2007,"listed_count":18,"favourites_count":692,"statuses_count":16371,"created_at":"Sun Aug 09 13:39:33 +0000 2009","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003581943\/2a4e19c9fe1d6c44554e4492bcac2605.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003581943\/2a4e19c9fe1d6c44554e4492bcac2605.png","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613778394149359616\/S0OHo-k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613778394149359616\/S0OHo-k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64174820\/1371734847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:04 +0000 2015","id":663727260311142400,"id_str":"663727260311142400","text":"10 ways to boost your networking skills https:\/\/t.co\/x3HKvIshH0 via @HuffPostCaLiv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91942071,"id_str":"91942071","name":"Bobby Umar","screen_name":"raehanbobby","location":"Toronto, Canada, US","url":"http:\/\/raeallan.com\/networkingmastery\/","description":"4x @TEDx Speaker | Inc Mag Top 100 Heart-Leader, Networking, Personal Brand & Parenting. Author, @HuffingtonPost Writer, TV Host, Comedy Actor, GMAT pro & Daddy","protected":false,"verified":false,"followers_count":327110,"friends_count":200194,"listed_count":3841,"favourites_count":276,"statuses_count":92244,"created_at":"Mon Nov 23 05:13:26 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/148794053\/Nyalheadshotadventuroussmall.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/148794053\/Nyalheadshotadventuroussmall.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446654905583824897\/EHfZeYkP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446654905583824897\/EHfZeYkP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91942071\/1359575038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x3HKvIshH0","expanded_url":"http:\/\/www.huffingtonpost.ca\/bobby-umar\/networking_b_4958037.html","display_url":"huffingtonpost.ca\/bobby-umar\/net\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"HuffPostCaLiv","name":"HuffPost.Ca Living","id":46424454,"id_str":"46424454","indices":[68,82]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x3HKvIshH0","expanded_url":"http:\/\/www.huffingtonpost.ca\/bobby-umar\/networking_b_4958037.html","display_url":"huffingtonpost.ca\/bobby-umar\/net\u2026","indices":[57,80]}],"user_mentions":[{"screen_name":"raehanbobby","name":"Bobby Umar","id":91942071,"id_str":"91942071","indices":[3,15]},{"screen_name":"HuffPostCaLiv","name":"HuffPost.Ca Living","id":46424454,"id_str":"46424454","indices":[85,99]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801432064,"id_str":"663727707801432064","text":"Buenas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48934983,"id_str":"48934983","name":"Sr. Adolf Hitler","screen_name":"jeremiasramalho","location":"Brazil ","url":null,"description":"Dictator, mothafuck and christ encarnation","protected":false,"verified":false,"followers_count":301,"friends_count":235,"listed_count":2,"favourites_count":2028,"statuses_count":5989,"created_at":"Sat Jun 20 05:19:43 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165013173\/SQJKqZKx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165013173\/SQJKqZKx.jpeg","profile_background_tile":true,"profile_link_color":"077550","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654001505259913216\/StALO4CZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654001505259913216\/StALO4CZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48934983\/1446568947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991661"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707818168320,"id_str":"663727707818168320","text":"RT @_vdvdk: ;hay personas que te demuestran m\u00e1s en un par de meses que otras personas en a\u00f1os. eso s\u00ed que es triste.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":418624769,"id_str":"418624769","name":"Galindo \u2661","screen_name":"nereagalindo06","location":null,"url":null,"description":"20.Enamorada desde un 24 de enero del 2015\u2661 .Mi pasi\u00f3n por el flamenco la transmito cantandolo.Sevillista de cuna,SIVIGLIA\u270cBN75","protected":false,"verified":false,"followers_count":1099,"friends_count":688,"listed_count":3,"favourites_count":4234,"statuses_count":92340,"created_at":"Tue Nov 22 11:45:02 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFDBE7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000088482508\/9ec4a51cb3f7d664277c078c1e8e8fe3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000088482508\/9ec4a51cb3f7d664277c078c1e8e8fe3.jpeg","profile_background_tile":false,"profile_link_color":"FF96BB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654557868893569024\/PUOH3BMr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654557868893569024\/PUOH3BMr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418624769\/1430840922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 18:56:17 +0000 2015","id":661980300730343425,"id_str":"661980300730343425","text":";hay personas que te demuestran m\u00e1s en un par de meses que otras personas en a\u00f1os. eso s\u00ed que es triste.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355757362,"id_str":"355757362","name":"Vaya putada.","screen_name":"_vdvdk","location":"Sevilla.","url":null,"description":"Fotograf\u00eda. Contacto y consejos v\u00eda MD @Noelia_Marle @CarolinaEspada_","protected":false,"verified":false,"followers_count":34193,"friends_count":9960,"listed_count":328,"favourites_count":32968,"statuses_count":20974,"created_at":"Mon Aug 15 21:00:22 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579690289289297920\/QPQyb_fj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579690289289297920\/QPQyb_fj.jpg","profile_background_tile":true,"profile_link_color":"0900FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613453517131542528\/N0jEG_7z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613453517131542528\/N0jEG_7z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355757362\/1434118579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":437,"favorite_count":374,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_vdvdk","name":"Vaya putada.","id":355757362,"id_str":"355757362","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991665"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801452544,"id_str":"663727707801452544","text":"RT @Desirous520: #happydeepavali everybody #deepavali #cityone #rangoli #cityonemegamall #diwali #sarawak #iphoneonly https:\/\/t.co\/Iy5u7eEZ\u2026","source":"\u003ca href=\"https:\/\/script.google.com\/macros\/\" rel=\"nofollow\"\u003esarawakbot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3935977393,"id_str":"3935977393","name":"Sarawak Bot","screen_name":"sarawakbot","location":"Sarawak, Malaysia","url":null,"description":"Hi! I am Bot V1.0. Kamek retweet mun ada #sarawak. Mun kamek nakal padah ngan ayah kamek @markjinmin. Tweet Hi Sarawak Bot","protected":false,"verified":false,"followers_count":72,"friends_count":0,"listed_count":15,"favourites_count":3,"statuses_count":13411,"created_at":"Sun Oct 18 12:38:53 +0000 2015","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"6E2B8A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656110982909968384\/RkQOoZcF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656110982909968384\/RkQOoZcF_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:00 +0000 2015","id":663725479740833792,"id_str":"663725479740833792","text":"#happydeepavali everybody #deepavali #cityone #rangoli #cityonemegamall #diwali #sarawak #iphoneonly https:\/\/t.co\/Iy5u7eEZkw","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55807233,"id_str":"55807233","name":"Desirous","screen_name":"Desirous520","location":"Malaysia","url":"http:\/\/desirous520.blogspot.com","description":"So what if im being misunderstood? So was socrates, jesus, luther, gallileo, newton & everybody.","protected":false,"verified":false,"followers_count":86,"friends_count":387,"listed_count":1,"favourites_count":75,"statuses_count":3783,"created_at":"Sat Jul 11 10:46:44 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2EEEF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634610792\/xe2f3fa7b9776bebeb038390e22de8fe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634610792\/xe2f3fa7b9776bebeb038390e22de8fe.jpg","profile_background_tile":false,"profile_link_color":"7B8894","profile_sidebar_border_color":"8BA7C4","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"8F2E2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1587704976\/Love_Me_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1587704976\/Love_Me_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"happydeepavali","indices":[0,15]},{"text":"deepavali","indices":[26,36]},{"text":"cityone","indices":[37,45]},{"text":"rangoli","indices":[46,54]},{"text":"cityonemegamall","indices":[55,71]},{"text":"diwali","indices":[72,79]},{"text":"sarawak","indices":[80,88]},{"text":"iphoneonly","indices":[89,100]}],"urls":[{"url":"https:\/\/t.co\/Iy5u7eEZkw","expanded_url":"https:\/\/instagram.com\/p\/93hQ35I-xl\/","display_url":"instagram.com\/p\/93hQ35I-xl\/","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"happydeepavali","indices":[17,32]},{"text":"deepavali","indices":[43,53]},{"text":"cityone","indices":[54,62]},{"text":"rangoli","indices":[63,71]},{"text":"cityonemegamall","indices":[72,88]},{"text":"diwali","indices":[89,96]},{"text":"sarawak","indices":[97,105]},{"text":"iphoneonly","indices":[106,117]}],"urls":[{"url":"https:\/\/t.co\/Iy5u7eEZkw","expanded_url":"https:\/\/instagram.com\/p\/93hQ35I-xl\/","display_url":"instagram.com\/p\/93hQ35I-xl\/","indices":[118,140]}],"user_mentions":[{"screen_name":"Desirous520","name":"Desirous","id":55807233,"id_str":"55807233","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991661"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805638656,"id_str":"663727707805638656","text":"RT @javier_parra: La verdad es que @telecincoes no ayuda mucho a acabar con la violencia machista con sus programas de TV mierda.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2862983681,"id_str":"2862983681","name":"Manuel Ares","screen_name":"ManuelAres_","location":"Entre M\u00e1laga y Madrid","url":"http:\/\/la-plumaindiscreta.blogspot.com.es\/","description":"Andaluz en tierras castellanas.\nEstudiante de Derecho y Ciencias Pol\u00edticas en la UCM.","protected":false,"verified":false,"followers_count":80,"friends_count":104,"listed_count":2,"favourites_count":235,"statuses_count":1692,"created_at":"Wed Nov 05 18:35:14 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633227477909958656\/6KU1qkFN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633227477909958656\/6KU1qkFN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2862983681\/1436899483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:56 +0000 2015","id":663725462921850880,"id_str":"663725462921850880","text":"La verdad es que @telecincoes no ayuda mucho a acabar con la violencia machista con sus programas de TV mierda.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91687715,"id_str":"91687715","name":"Javier Parra #PCE","screen_name":"javier_parra","location":null,"url":"http:\/\/www.javiparra.es","description":"Hay para quienes ser patriota es defender un trapo, un himno o una cruz. Esa Espa\u00f1a cabe en un caj\u00f3n, la m\u00eda no tiene ni fronteras | Secretario General PCPV-PCE","protected":false,"verified":false,"followers_count":22848,"friends_count":9775,"listed_count":481,"favourites_count":1631,"statuses_count":24258,"created_at":"Sun Nov 22 00:37:11 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"696569","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439766900487106560\/tskSPqlV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439766900487106560\/tskSPqlV.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699125096087552\/s3ZZW6-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699125096087552\/s3ZZW6-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91687715\/1429019516","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"telecincoes","name":"Telecinco","id":20013148,"id_str":"20013148","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"javier_parra","name":"Javier Parra #PCE","id":91687715,"id_str":"91687715","indices":[3,16]},{"screen_name":"telecincoes","name":"Telecinco","id":20013148,"id_str":"20013148","indices":[35,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801415680,"id_str":"663727707801415680","text":"@NiallOfficial hi Niall\u30c4 \n \nsmile please\u263a\n\u26bd\"twinkle twinkle little star\n'Derby' sleeps inside Nialls car\"\u26bd\nFollow me? i love you\u10e6\n\nx43.281","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":105119490,"in_reply_to_user_id_str":"105119490","in_reply_to_screen_name":"NiallOfficial","user":{"id":565274153,"id_str":"565274153","name":"kornelija loves njh","screen_name":"horancuteboy","location":null,"url":"https:\/\/twitter.com\/horancuteboy\/status\/336379408128557056","description":"bless niall for singing beautiful girls and rapping","protected":false,"verified":false,"followers_count":2012,"friends_count":906,"listed_count":8,"favourites_count":7477,"statuses_count":65154,"created_at":"Sat Apr 28 08:28:14 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494825078790438915\/i-DfWiiP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494825078790438915\/i-DfWiiP.jpeg","profile_background_tile":true,"profile_link_color":"5090DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662340577128783872\/hQ_IrtJL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662340577128783872\/hQ_IrtJL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565274153\/1446749273","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991661"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801260032,"id_str":"663727707801260032","text":"RT @anakjugamanusia: Kalo kita sendiri belum dewasa saat hadapi masalah, maka bagaimana kita bisa membimbing anak belajar dewasa saat ia ha\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2352586686,"id_str":"2352586686","name":"Riana Melyha","screen_name":"Rianamelyha","location":"Medan,Indonesia","url":null,"description":"To be a Fabulous || Mommy || Wife || Owner\nMenyediakan produk kecantikan+kesehatan\nGlucogen,Teragen,Slimmer,Propolis,Make up\nPin 5a6c638b\nIG @khaan beauty shop","protected":false,"verified":false,"followers_count":33,"friends_count":99,"listed_count":0,"favourites_count":173,"statuses_count":291,"created_at":"Thu Feb 20 02:49:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662242029871624192\/HyRP_SVh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662242029871624192\/HyRP_SVh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352586686\/1446953152","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:53 +0000 2015","id":663722432134447104,"id_str":"663722432134447104","text":"Kalo kita sendiri belum dewasa saat hadapi masalah, maka bagaimana kita bisa membimbing anak belajar dewasa saat ia hadapi masalah","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495785404,"id_str":"495785404","name":"Anak Juga Manusia","screen_name":"anakjugamanusia","location":"Indonesia","url":null,"description":"Berbagi tips Parenting yang Sederhana || Silahkan Curhat & Konsultasi Gratis soal Perilaku Anak || Orangtua Berilmu, Anak Indonesia Bermutu || cp: 082138508820","protected":false,"verified":false,"followers_count":49204,"friends_count":144,"listed_count":136,"favourites_count":67,"statuses_count":25408,"created_at":"Sat Feb 18 09:36:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429056277\/SUC52240.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429056277\/SUC52240.JPG","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572924793009266689\/sGq84i95_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572924793009266689\/sGq84i95_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495785404\/1395758228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anakjugamanusia","name":"Anak Juga Manusia","id":495785404,"id_str":"495785404","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079991661"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707793002496,"id_str":"663727707793002496","text":"RT @CW3_GettinIt: Life short but we live it cause we gotta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449313099,"id_str":"449313099","name":"Khayyir Laws","screen_name":"_GoHAM_","location":"Chester, Pa","url":null,"description":"Big Dreams, Small City. #WhyImUnderrated\u2753 #Worthy #CRMC #Spurs #Saints #Spartans Only the strong survive. Free ma bro Mar Free Shaq Free Thrust & R.I.P Dre","protected":false,"verified":false,"followers_count":2730,"friends_count":924,"listed_count":16,"favourites_count":518,"statuses_count":115395,"created_at":"Thu Dec 29 00:19:19 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663384585422700546\/MaQdSCT5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663384585422700546\/MaQdSCT5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449313099\/1404574035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:45 +0000 2015","id":663726676300427264,"id_str":"663726676300427264","text":"Life short but we live it cause we gotta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153892967,"id_str":"153892967","name":"Chassy Phelps3\u20e3","screen_name":"CW3_GettinIt","location":null,"url":null,"description":"#CeNiyahPop nothing else matters","protected":false,"verified":false,"followers_count":921,"friends_count":592,"listed_count":7,"favourites_count":372,"statuses_count":129888,"created_at":"Wed Jun 09 20:30:19 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/228999195\/chas5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/228999195\/chas5.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651041569378840576\/tW0jIbCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651041569378840576\/tW0jIbCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153892967\/1348029717","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CW3_GettinIt","name":"Chassy Phelps3\u20e3","id":153892967,"id_str":"153892967","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805454336,"id_str":"663727707805454336","text":"CD\u7279\u5178\u306e\u3059\u3046\u3058\u304f\u30a2\u30af\u30ad\u30fc\u306e\u65e5\u3092\u4eca\u5ea6\u767a\u58f2\u306e\u7279\u5178\u30a2\u30af\u30ad\u30fc\u308c\u3093\u3054\u30fc\u306e\u7c73\u3068\u4ea4\u63db\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u65b9\u3092\u52df\u96c6\u3057\u305f\u308a\u3057\u3066\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1052741990,"id_str":"1052741990","name":"\u3042\u306b\u30fc\u305f@\u30b0\u30c3\u30ba\u53d6\u5f15\u57a2","screen_name":"a_Ani_ta","location":"ICHD\u30ad\u30bf\u30e6\u30e1\u69d8","url":"http:\/\/twpf.jp\/a_Ani_ta","description":"\u65e5\u9818\u5728\u4f4f\u4e16\u754c\u9818\u5bc4\u308a\u3067\u3059\u3002\u517c\u30d8\u30bf\u30ea\u30a2\u57a2\u3002\u672c\u57a2\u3088\u308a\u3082\u6d6e\u4e0a\u304c\u9ad8\u304f\u4e0b\u3089\u306a\u3044\u4e8b\u3082\u6ca2\u5c71\u304a\u8a71\u3057\u3057\u307e\u3059\u3002\u8150\u5411\u3051\u30c4\u30a4\u30fc\u30c8\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u691c\u7d22\u304b\u3089\u3067\u3082\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\uff01\u3086\u3046\u3061\u3087\u9280\u884c\u3067\u5bfe\u5fdc\u304c\u53ef\u80fd\u3002\u203b\u30c4\u30a4\u30d7\u30ed\u4e00\u8aad\u63a8\u5968","protected":false,"verified":false,"followers_count":75,"friends_count":94,"listed_count":0,"favourites_count":642,"statuses_count":6023,"created_at":"Tue Jan 01 14:50:34 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657506805002604544\/-nG3zpVT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657506805002604544\/-nG3zpVT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052741990\/1445645746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805487105,"id_str":"663727707805487105","text":"RT @Hoksinghrum: \u0e21\u0e35\u0e41\u0e1f\u0e19\u0e02\u0e35\u0e49\u0e2b\u0e36\u0e07\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e02\u0e35\u0e49\u0e2d\u0e48\u0e2d\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2856774324,"id_str":"2856774324","name":"\u0e17\u0e33\u0e44\u0e21\u0e15\u0e49\u0e2d\u0e07\u0e0b\u0e34\u0e49\u0e21","screen_name":"ddrreeam","location":null,"url":null,"description":"\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e15\u0e49\u0e2d\u0e07\u0e2b\u0e31\u0e14\u0e0a\u0e48\u0e32\u0e07\u0e41\u0e21\u0e48\u0e07 | \u0e23\u0e31\u0e01\u0e23\u0e34\u0e17\u0e23\u0e2d\u0e23\u0e34\u0e17 RFC | IGOT7","protected":false,"verified":false,"followers_count":18,"friends_count":84,"listed_count":0,"favourites_count":30,"statuses_count":1330,"created_at":"Wed Oct 15 14:16:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662848731633446912\/CDi8f0tX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662848731633446912\/CDi8f0tX_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Apr 27 15:40:29 +0000 2015","id":592714943142703104,"id_str":"592714943142703104","text":"\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e02\u0e35\u0e49\u0e2b\u0e36\u0e07\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e02\u0e35\u0e49\u0e2d\u0e48\u0e2d\u0e22","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2381825443,"id_str":"2381825443","name":"\u0e2b\u0e01\u0e2a\u0e34\u0e07\u0e2b\u0e23\u0e23\u0e21","screen_name":"Hoksinghrum","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":557,"friends_count":89,"listed_count":1,"favourites_count":3,"statuses_count":1366,"created_at":"Mon Mar 10 08:56:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442947434499432449\/Df_SYbMg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442947434499432449\/Df_SYbMg_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36731,"favorite_count":3106,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hoksinghrum","name":"\u0e2b\u0e01\u0e2a\u0e34\u0e07\u0e2b\u0e23\u0e23\u0e21","id":2381825443,"id_str":"2381825443","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707818229760,"id_str":"663727707818229760","text":"@ilyuzahadid \u044f \u0440\u0435\u0442\u0432\u0438\u0442\u043d\u0443\u043b\u0430 \u0436\u0435 \u0435\u0435","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726882387591168,"in_reply_to_status_id_str":"663726882387591168","in_reply_to_user_id":3013838229,"in_reply_to_user_id_str":"3013838229","in_reply_to_screen_name":"ilyuzahadid","user":{"id":2335067062,"id_str":"2335067062","name":"Kemik_lalka","screen_name":"latypova_kem","location":null,"url":"http:\/\/vk.com\/id161185401","description":null,"protected":false,"verified":false,"followers_count":247,"friends_count":232,"listed_count":0,"favourites_count":5144,"statuses_count":3601,"created_at":"Mon Feb 10 05:30:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646748261047500800\/sEBpC-jG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646748261047500800\/sEBpC-jG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335067062\/1443031750","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ilyuzahadid","name":"\u263d","id":3013838229,"id_str":"3013838229","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079991665"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707784617985,"id_str":"663727707784617985","text":"wish today was a A day \ud83d\ude29 my a day classes be funny es shit ' im always happy on A days \ud83d\ude0a #lilsiskita\ud83d\udc51","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235609483,"id_str":"235609483","name":"December1st\u2650\ufe0f","screen_name":"taeeeeeee__","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":540,"friends_count":881,"listed_count":0,"favourites_count":1647,"statuses_count":24319,"created_at":"Sat Jan 08 16:54:56 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A1444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661252939\/u82xqdjobv9dms09dkxz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661252939\/u82xqdjobv9dms09dkxz.jpeg","profile_background_tile":true,"profile_link_color":"105E7A","profile_sidebar_border_color":"6B2F6B","profile_sidebar_fill_color":"730873","profile_text_color":"DB1CDB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657820899387842561\/Vf7E8Pvq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657820899387842561\/Vf7E8Pvq_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lilsiskita","indices":[89,100]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991657"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707818172416,"id_str":"663727707818172416","text":"\u0645\u0643\u0646\u0634 \u0639\u0642\u0631\u0628 \ud83d\ude02\u264f \u0644\u0648 \u0645\u0633\u0628\u062a\u0634 \u0627\u0644\u0645\u0643\u0627\u0646 \u0627\u0644\u0644\u064a \u0628\u062a\u062e\u0627\u0646\u0642 \u0641\u064a\u0647 \u0645\u0639 \u062d\u062f \u0648\u0645\u0634\u064a\u062a\ud83d\udeb6\ud83d\ude22 \u0645\u0641\u064a\u0634 \u0637\u0627\u0642\u0629 \u0627\u062c\u0627\u062f\u0644 \u0648\u0627\u062a\u0643\u0644\u0645 \u0643\u062a\u064a\u0631 \u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519767453,"id_str":"519767453","name":"~haidy ah\u264fed~","screen_name":"haidy_94","location":"sharkia - Alexandria ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f \u200f\u200f\u0645\u0646 \u062d\u064f\u0644\u0652\u0645 \u0625\u0644\u0649 \u062d\u064f\u0644\u0652\u0645\u064d \u0623\u064e\u0637\u064a\u0631\u064f \u0648\u0644\u064a\u0633 \u0644\u064a \u0647\u064e\u062f\u064e\u0641\u064c \u0623\u064e\u062e\u064a\u0631 ~~~ \u0645\u064a\u0644\u0627\u062f\u0647\u0627 \u0642\u0635\u0629 \u0645\u062e\u062a\u0635\u0631\u0629 \u0644\u062c\u0645\u0627\u0644 \u0646\u0648\u0641\u0645\u0628\u0631","protected":false,"verified":false,"followers_count":96,"friends_count":168,"listed_count":0,"favourites_count":245,"statuses_count":2163,"created_at":"Fri Mar 09 19:50:42 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483029393996918784\/HO1fh6gr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483029393996918784\/HO1fh6gr.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662565248868737024\/wOUHXOKh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662565248868737024\/wOUHXOKh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519767453\/1446671246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079991665"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707814027268,"id_str":"663727707814027268","text":"@TahirOzturk23 @avomerserdar @ejderacikkapi \u0130\u015fte K\u00f6yl\u00fcn\u00fcn tepkisi umar\u0131m bu sorunu \u00e7\u00f6zersiniz >> https:\/\/t.co\/Dhp0NHlG2L ...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":260465398,"in_reply_to_user_id_str":"260465398","in_reply_to_screen_name":"TahirOzturk23","user":{"id":2588080254,"id_str":"2588080254","name":"Elaz\u0131\u011f Sevdal\u0131lar\u0131","screen_name":"elazizli0023","location":null,"url":null,"description":"M\u00fcsl\u00fcman\u0131m,T\u00fcrk\u00fcm,Elaz\u0131\u011fl\u0131y\u0131m,\nElaz\u0131\u011fsporluyum","protected":false,"verified":false,"followers_count":5,"friends_count":33,"listed_count":0,"favourites_count":7,"statuses_count":32,"created_at":"Wed Jun 25 19:42:06 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481886062088687616\/Xe2oc5MA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481886062088687616\/Xe2oc5MA_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Dhp0NHlG2L","expanded_url":"https:\/\/www.youtube.com\/watch?v=XDz79tVaZ0c&feature=share","display_url":"youtube.com\/watch?v=XDz79t\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"TahirOzturk23","name":"Tahir \u00d6zt\u00fcrk","id":260465398,"id_str":"260465398","indices":[0,14]},{"screen_name":"avomerserdar","name":"\u00d6mer SERDAR","id":276996759,"id_str":"276996759","indices":[15,28]},{"screen_name":"ejderacikkapi","name":"Ejder A\u00c7IKKAPI","id":1178639449,"id_str":"1178639449","indices":[29,43]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707784548352,"id_str":"663727707784548352","text":"RT @lizasoberanaway: Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4023276676,"id_str":"4023276676","name":"Hopie Liza","screen_name":"liza_hopie","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":2,"listed_count":1,"favourites_count":0,"statuses_count":24125,"created_at":"Fri Oct 23 09:29:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:28 +0000 2015","id":663723079135158272,"id_str":"663723079135158272","text":"Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230915917,"id_str":"230915917","name":"imee","screen_name":"lizasoberanaway","location":null,"url":null,"description":"Everyday, I love you still showing in cinemas nationwide! \u2665","protected":false,"verified":false,"followers_count":2021,"friends_count":236,"listed_count":8,"favourites_count":7932,"statuses_count":24675,"created_at":"Mon Dec 27 02:33:22 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230915917\/1446220492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":83,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lizasoberanaway","name":"imee","id":230915917,"id_str":"230915917","indices":[3,19]}],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079991657"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707809669120,"id_str":"663727707809669120","text":"RT @anakjugamanusia: Ortu adlh guru kehidupan yg pertama & utama bagi anak, perlu kita lengkapi diri dgn kesanggupan utk menjadi teladan yg\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2352586686,"id_str":"2352586686","name":"Riana Melyha","screen_name":"Rianamelyha","location":"Medan,Indonesia","url":null,"description":"To be a Fabulous || Mommy || Wife || Owner\nMenyediakan produk kecantikan+kesehatan\nGlucogen,Teragen,Slimmer,Propolis,Make up\nPin 5a6c638b\nIG @khaan beauty shop","protected":false,"verified":false,"followers_count":33,"friends_count":99,"listed_count":0,"favourites_count":173,"statuses_count":291,"created_at":"Thu Feb 20 02:49:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662242029871624192\/HyRP_SVh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662242029871624192\/HyRP_SVh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352586686\/1446953152","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:19 +0000 2015","id":663722790554484736,"id_str":"663722790554484736","text":"Ortu adlh guru kehidupan yg pertama & utama bagi anak, perlu kita lengkapi diri dgn kesanggupan utk menjadi teladan yg baik bagi anak","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495785404,"id_str":"495785404","name":"Anak Juga Manusia","screen_name":"anakjugamanusia","location":"Indonesia","url":null,"description":"Berbagi tips Parenting yang Sederhana || Silahkan Curhat & Konsultasi Gratis soal Perilaku Anak || Orangtua Berilmu, Anak Indonesia Bermutu || cp: 082138508820","protected":false,"verified":false,"followers_count":49204,"friends_count":144,"listed_count":136,"favourites_count":67,"statuses_count":25408,"created_at":"Sat Feb 18 09:36:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429056277\/SUC52240.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429056277\/SUC52240.JPG","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572924793009266689\/sGq84i95_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572924793009266689\/sGq84i95_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495785404\/1395758228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anakjugamanusia","name":"Anak Juga Manusia","id":495785404,"id_str":"495785404","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079991663"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707813838848,"id_str":"663727707813838848","text":"\u3044\u305f\u3060\u304d\u307e\u3059\u3068\u304b\u3044\u305f\u3060\u304b\u308c\u307e\u3059\u3002(\uff40\uff65\u03c9\uff65\u00b4)\uff89\u3086\u3046\u304f\u3093\u3059\u304d\u3060\u308f\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3594471019,"id_str":"3594471019","name":"\u2764\ufe0e\u2764\ufe0eyuna","screen_name":"na_tk08","location":"\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\uff01","url":"http:\/\/Instagram.com\/__rk08\/","description":"\u3042\u3089\u3044\u3086\u3046\u304f\u3093\u3057\u304b\u3080\u308a\u2661\u2661@yuu_mode","protected":false,"verified":false,"followers_count":57,"friends_count":98,"listed_count":0,"favourites_count":499,"statuses_count":1585,"created_at":"Thu Sep 17 13:43:07 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662063177014767618\/vcR8dm0S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662063177014767618\/vcR8dm0S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3594471019\/1447024251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707793006592,"id_str":"663727707793006592","text":"@kevin_brannigan We are very sorry to hear this, if you can DM us your email address we can send the details of how to return.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718289500172288,"in_reply_to_status_id_str":"663718289500172288","in_reply_to_user_id":51063729,"in_reply_to_user_id_str":"51063729","in_reply_to_screen_name":"kevin_brannigan","user":{"id":1134917113,"id_str":"1134917113","name":"OFFICE Shoes Help","screen_name":"OFFICEShoesHelp","location":"Nationwide","url":"http:\/\/www.office.co.uk","description":"We're here to answer all of your shoe questions Monday-Friday 9.30am-6pm, Saturday 9.30am-4.30pm & Sunday 11.30am-3.30pm. Feel free to get in touch","protected":false,"verified":false,"followers_count":5147,"friends_count":3951,"listed_count":6,"favourites_count":260,"statuses_count":32418,"created_at":"Wed Jan 30 19:04:41 +0000 2013","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F4F3F3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494795587686899712\/q74EPZCp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494795587686899712\/q74EPZCp.jpeg","profile_background_tile":false,"profile_link_color":"F4F3F3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499840207701540864\/AVSGihd2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499840207701540864\/AVSGihd2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134917113\/1406805823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kevin_brannigan","name":"Kevin Brannigan","id":51063729,"id_str":"51063729","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707822276608,"id_str":"663727707822276608","text":"Should I pretend I woke up late ? Lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2489281320,"id_str":"2489281320","name":"Liz","screen_name":"Liz2faab","location":null,"url":null,"description":"LMHS","protected":false,"verified":false,"followers_count":263,"friends_count":144,"listed_count":1,"favourites_count":2101,"statuses_count":8070,"created_at":"Sun May 11 04:49:06 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661023087786258432\/fwwOH1sK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661023087786258432\/fwwOH1sK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2489281320\/1446686370","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991666"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707784527872,"id_str":"663727707784527872","text":"RT @ourhappyfamily: Dreams don't work unless you do! #quotes #motivation #dreams #inspiration #do https:\/\/t.co\/3ndV01yQEB https:\/\/t.co\/UjAY\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231382536,"id_str":"231382536","name":"jhe perez","screen_name":"jheperez15","location":"Manila City","url":"https:\/\/instagram.com\/p\/7J1JgYJTv9\/","description":"Just turned 22 | happy thoughts\n\nCertified Aldub|Maiden fan","protected":false,"verified":false,"followers_count":132,"friends_count":402,"listed_count":0,"favourites_count":777,"statuses_count":1648,"created_at":"Tue Dec 28 10:51:40 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFAE57","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/818662879\/b6b48177bd6450c3e98e69c2b51ba839.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/818662879\/b6b48177bd6450c3e98e69c2b51ba839.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647921465841467392\/znNSD5ex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647921465841467392\/znNSD5ex_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231382536\/1440775380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:26 +0000 2015","id":663725339194089472,"id_str":"663725339194089472","text":"Dreams don't work unless you do! #quotes #motivation #dreams #inspiration #do https:\/\/t.co\/3ndV01yQEB https:\/\/t.co\/UjAY1yygOY","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990232133,"id_str":"2990232133","name":"Let's Live Happy!","screen_name":"ourhappyfamily","location":null,"url":"http:\/\/quotesalarm.com","description":"Come, let's together make this world a happier place! Join us in the movement about a timeless quest: Living a happy life! A family that motivates & inspires!","protected":false,"verified":false,"followers_count":23611,"friends_count":19230,"listed_count":193,"favourites_count":10231,"statuses_count":8942,"created_at":"Mon Jan 19 18:06:46 +0000 2015","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557280421826674689\/i1qB60Ry_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557280421826674689\/i1qB60Ry_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990232133\/1421695984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[{"text":"quotes","indices":[33,40]},{"text":"motivation","indices":[41,52]},{"text":"dreams","indices":[53,60]},{"text":"inspiration","indices":[61,73]},{"text":"do","indices":[74,77]}],"urls":[{"url":"https:\/\/t.co\/3ndV01yQEB","expanded_url":"http:\/\/quotesalarm.com","display_url":"quotesalarm.com","indices":[78,101]}],"user_mentions":[],"symbols":[],"media":[{"id":663725338921476096,"id_str":"663725338921476096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","url":"https:\/\/t.co\/UjAY1yygOY","display_url":"pic.twitter.com\/UjAY1yygOY","expanded_url":"http:\/\/twitter.com\/ourhappyfamily\/status\/663725339194089472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725338921476096,"id_str":"663725338921476096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","url":"https:\/\/t.co\/UjAY1yygOY","display_url":"pic.twitter.com\/UjAY1yygOY","expanded_url":"http:\/\/twitter.com\/ourhappyfamily\/status\/663725339194089472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"quotes","indices":[53,60]},{"text":"motivation","indices":[61,72]},{"text":"dreams","indices":[73,80]},{"text":"inspiration","indices":[81,93]},{"text":"do","indices":[94,97]}],"urls":[{"url":"https:\/\/t.co\/3ndV01yQEB","expanded_url":"http:\/\/quotesalarm.com","display_url":"quotesalarm.com","indices":[98,121]}],"user_mentions":[{"screen_name":"ourhappyfamily","name":"Let's Live Happy!","id":2990232133,"id_str":"2990232133","indices":[3,18]}],"symbols":[],"media":[{"id":663725338921476096,"id_str":"663725338921476096","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","url":"https:\/\/t.co\/UjAY1yygOY","display_url":"pic.twitter.com\/UjAY1yygOY","expanded_url":"http:\/\/twitter.com\/ourhappyfamily\/status\/663725339194089472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663725339194089472,"source_status_id_str":"663725339194089472","source_user_id":2990232133,"source_user_id_str":"2990232133"}]},"extended_entities":{"media":[{"id":663725338921476096,"id_str":"663725338921476096","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrd7XIAA59qh.jpg","url":"https:\/\/t.co\/UjAY1yygOY","display_url":"pic.twitter.com\/UjAY1yygOY","expanded_url":"http:\/\/twitter.com\/ourhappyfamily\/status\/663725339194089472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663725339194089472,"source_status_id_str":"663725339194089472","source_user_id":2990232133,"source_user_id_str":"2990232133"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991657"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707809714176,"id_str":"663727707809714176","text":"You're getting too caught up in things that don't matter","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416974040,"id_str":"416974040","name":"America","screen_name":"aubreygesmundo","location":"everywhere travelling","url":"http:\/\/instagram.com\/aubreygesmundo","description":"Proverbs 31:25 \u00bb Forever Grateful \u00bb Queen | tugging my ear, whenever","protected":false,"verified":false,"followers_count":227,"friends_count":276,"listed_count":0,"favourites_count":3523,"statuses_count":10740,"created_at":"Sun Nov 20 10:59:06 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BCC6CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606664909821124608\/3F_5LakG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606664909821124608\/3F_5LakG.jpg","profile_background_tile":false,"profile_link_color":"2C3539","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662863012697477120\/K9g-0WL5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662863012697477120\/K9g-0WL5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416974040\/1446970199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991663"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707793002497,"id_str":"663727707793002497","text":"RT @HLupdates: #Audio | Grimmy talking about the boys being on his show the 16th!\nhttps:\/\/t.co\/BzyE6bIxDQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598592665,"id_str":"598592665","name":"julia","screen_name":"pinkblushlwt","location":null,"url":null,"description":"Louis Tomlinson's admirable LGBT gesture comes days after Harry Styles' comments on sexuality went viral","protected":false,"verified":false,"followers_count":2820,"friends_count":141,"listed_count":32,"favourites_count":69764,"statuses_count":90986,"created_at":"Sun Jun 03 19:25:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/501164350065750016\/Lw1a5_3E.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/501164350065750016\/Lw1a5_3E.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661228993304133636\/H6g1avN9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661228993304133636\/H6g1avN9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598592665\/1446475518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:27 +0000 2015","id":663721064116166656,"id_str":"663721064116166656","text":"#Audio | Grimmy talking about the boys being on his show the 16th!\nhttps:\/\/t.co\/BzyE6bIxDQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1434667333,"id_str":"1434667333","name":"H&L Updates","screen_name":"HLupdates","location":"USA","url":"http:\/\/smarturl.it\/1DmitamDXiT","description":"Harry Styles and Louis Tomlinson Updates.","protected":false,"verified":false,"followers_count":55335,"friends_count":4,"listed_count":343,"favourites_count":1007,"statuses_count":17040,"created_at":"Fri May 17 03:59:49 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005648213\/bdf53ada420c0edfbae815b1ce7cf59f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005648213\/bdf53ada420c0edfbae815b1ce7cf59f.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663487031159328768\/svXoD2lB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663487031159328768\/svXoD2lB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1434667333\/1447022610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":87,"entities":{"hashtags":[{"text":"Audio","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/BzyE6bIxDQ","expanded_url":"http:\/\/louisforlunch.tumblr.com\/post\/132863435437","display_url":"louisforlunch.tumblr.com\/post\/132863435\u2026","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Audio","indices":[15,21]}],"urls":[{"url":"https:\/\/t.co\/BzyE6bIxDQ","expanded_url":"http:\/\/louisforlunch.tumblr.com\/post\/132863435437","display_url":"louisforlunch.tumblr.com\/post\/132863435\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"HLupdates","name":"H&L Updates","id":1434667333,"id_str":"1434667333","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707818184704,"id_str":"663727707818184704","text":"@stubbe2hou I tried to switch it up for you, to no avail.","source":"\u003ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715072942845952,"in_reply_to_status_id_str":"663715072942845952","in_reply_to_user_id":161748613,"in_reply_to_user_id_str":"161748613","in_reply_to_screen_name":"stubbe2hou","user":{"id":20626103,"id_str":"20626103","name":"Emily Ramshaw","screen_name":"eramshaw","location":"Austin, TX","url":null,"description":"Texas Tribune editor & enthusiast. Wife of filmmaker @d_hartstein. I RT because I'm interested; aren't you?","protected":false,"verified":true,"followers_count":11399,"friends_count":1026,"listed_count":591,"favourites_count":1461,"statuses_count":22685,"created_at":"Wed Feb 11 20:48:32 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"9F60CD","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557968313070788608\/qibGT_Ra_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557968313070788608\/qibGT_Ra_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20626103\/1355424511","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"stubbe2hou","name":"Richard Stubbe 2","id":161748613,"id_str":"161748613","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991665"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707784617984,"id_str":"663727707784617984","text":"hoping Kayla wants chipotle later :(","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3991450935,"id_str":"3991450935","name":"ris","screen_name":"marisacaliendo","location":"Bronx, NY","url":null,"description":null,"protected":false,"verified":false,"followers_count":354,"friends_count":446,"listed_count":0,"favourites_count":213,"statuses_count":255,"created_at":"Mon Oct 19 02:58:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663408256170262529\/G7Zm7ZyG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663408256170262529\/G7Zm7ZyG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3991450935\/1447003155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"27485069891a7938","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/27485069891a7938.json","place_type":"admin","name":"New York","full_name":"New York, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.255641,40.495865],[-74.255641,40.915330],[-73.699793,40.915330],[-73.699793,40.495865]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991657"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707814019073,"id_str":"663727707814019073","text":"At Toyota getting my new spare key cut and programmed.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606057196,"id_str":"606057196","name":"Anthony","screen_name":"alangjr93","location":"Freedom","url":null,"description":"No gods or kings, only man. - 21","protected":false,"verified":false,"followers_count":233,"friends_count":373,"listed_count":1,"favourites_count":2986,"statuses_count":9223,"created_at":"Tue Jun 12 05:43:44 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2300997183\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2300997183\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606057196\/1411396396","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707792867329,"id_str":"663727707792867329","text":"RT @ichonly: \u0e14\u0e34\u0e09\u0e31\u0e19\u0e22\u0e34\u0e49\u0e21\u0e43\u0e2b\u0e49\u0e17\u0e38\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e25\u0e35\u0e22\u0e14 \u0e01\u0e47\u0e41\u0e04\u0e48\u0e2b\u0e27\u0e31\u0e07\u0e27\u0e48\u0e32\u0e2a\u0e31\u0e01\u0e27\u0e31\u0e19\u0e19\u0e36\u0e07\u0e08\u0e30\u0e44\u0e14\u0e49\u0e44\u0e1b\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e02\u0e32\u0e40\u0e23\u0e32\u0e19\u0e31\u0e49\u0e19 \u0e41\u0e25\u0e49\u0e27\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e19\u0e34\u0e17\u0e2a\u0e19\u0e21\u0e14\u0e48\u0e32\u0e27\u0e48\u0e32\u0e2d\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e35\u0e43\u0e19\u0e10\u0e32\u0e19\u0e30\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2182014110,"id_str":"2182014110","name":"\u0e2d\u0e49\u0e33\u0e1e\u0e25\u0e31\u0e2a","screen_name":"aummpat","location":null,"url":null,"description":"\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e2b\u0e25\u0e32\u0e22\u0e42\u0e2b\u0e21\u0e14 \u0e02\u0e36\u0e49\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e27\u0e48\u0e32\u0e27\u0e31\u0e19\u0e19\u0e31\u0e49\u0e19\u0e21\u0e35\u0e02\u0e19\u0e21\u0e01\u0e34\u0e19\u0e21\u0e31\u0e49\u0e22 #NUFC","protected":false,"verified":false,"followers_count":162,"friends_count":486,"listed_count":2,"favourites_count":1515,"statuses_count":54278,"created_at":"Fri Nov 08 11:21:46 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"CC82F6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494116024858329090\/EjWL0JdN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494116024858329090\/EjWL0JdN.jpeg","profile_background_tile":false,"profile_link_color":"F30860","profile_sidebar_border_color":"7FBDCA","profile_sidebar_fill_color":"91D0DC","profile_text_color":"CF5736","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663256918387851265\/aPLD1Us9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663256918387851265\/aPLD1Us9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2182014110\/1444225727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:33 +0000 2015","id":663724108081815552,"id_str":"663724108081815552","text":"\u0e14\u0e34\u0e09\u0e31\u0e19\u0e22\u0e34\u0e49\u0e21\u0e43\u0e2b\u0e49\u0e17\u0e38\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e40\u0e01\u0e25\u0e35\u0e22\u0e14 \u0e01\u0e47\u0e41\u0e04\u0e48\u0e2b\u0e27\u0e31\u0e07\u0e27\u0e48\u0e32\u0e2a\u0e31\u0e01\u0e27\u0e31\u0e19\u0e19\u0e36\u0e07\u0e08\u0e30\u0e44\u0e14\u0e49\u0e44\u0e1b\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e02\u0e32\u0e40\u0e23\u0e32\u0e19\u0e31\u0e49\u0e19 \u0e41\u0e25\u0e49\u0e27\u0e43\u0e0a\u0e49\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e19\u0e34\u0e17\u0e2a\u0e19\u0e21\u0e14\u0e48\u0e32\u0e27\u0e48\u0e32\u0e2d\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e2b\u0e35\u0e43\u0e19\u0e10\u0e32\u0e19\u0e30\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86890489,"id_str":"86890489","name":"\u0e0a\u0e25\u0e25\u0e35\u0e48","screen_name":"ichonly","location":null,"url":null,"description":"\u0e40\u0e23\u0e35\u0e22\u0e19\u0e08\u0e34\u0e15\u0e27\u0e34\u0e17\u0e22\u0e32 \u0e21\u0e32\u0e23\u0e31\u0e01\u0e29\u0e32\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07 \u0e23\u0e31\u0e1a\u0e23\u0e33\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e32\u0e04","protected":false,"verified":false,"followers_count":5126,"friends_count":193,"listed_count":11,"favourites_count":468,"statuses_count":67049,"created_at":"Mon Nov 02 06:56:54 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000157732843\/hfyka2c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000157732843\/hfyka2c1.jpeg","profile_background_tile":false,"profile_link_color":"691F04","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642336962221748224\/wID-0g12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642336962221748224\/wID-0g12_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86890489\/1423198940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":260,"favorite_count":25,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ichonly","name":"\u0e0a\u0e25\u0e25\u0e35\u0e48","id":86890489,"id_str":"86890489","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805622273,"id_str":"663727707805622273","text":"Qual \u00e8 la migliore vacanza che potresti immaginare? \u2014 sono fissata con valencia da un po' https:\/\/t.co\/7Spn1qNwMi","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1459496910,"id_str":"1459496910","name":"lay next to me","screen_name":"xxhugmebieber","location":"23\u202203\u20222013 Justin Bieber,Italy","url":null,"description":"Justin Drew Bieber aka Lifesaver \u2728 she will be loved. xoxo","protected":false,"verified":false,"followers_count":994,"friends_count":1950,"listed_count":1,"favourites_count":296,"statuses_count":4386,"created_at":"Sun May 26 12:24:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469416536780730368\/ULRYem56.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469416536780730368\/ULRYem56.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577491824140484608\/nlFgh0tC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577491824140484608\/nlFgh0tC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459496910\/1426519753","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7Spn1qNwMi","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO6F5WEDHLQ7SHY6LIUWD7UKPYFSRAR4YJIIPIE5OQRRKSZ7QEIGJJWDSUCURUY7O5MSPLULNAZXWREADFSUCZ3DGNFWD6ETOEXPSSR7JTT3ZS5YGEA73DKTJAMRICUAQTLO4DGHD5UTTTMVJ7DTRCYI4YOZAZOSDA6EYJC372WGTESKIESNXZ4IFVA=","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707809669121,"id_str":"663727707809669121","text":"\uce74\uc640\uc774 \ud14c\ub77c\ud53c\uac00 \uc9f1\uc774\uc2dc\ub2e4 u\u3145u","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130343383,"id_str":"130343383","name":"doragi","screen_name":"frogjem","location":"seoul","url":"http:\/\/blog.naver.com\/frogjem","description":"environment concept artist \/game developer\/ \uadf8\ub0e5\uc88b\uc544\ud558\ub294\uac78\uadf8\ub9bd\ub2c8\ub2e4\/\ud3b8\ud558\uac8c\ud314\ub85c\uc5b8\ud314\ud558\uc2ed\uc1fc\/","protected":false,"verified":false,"followers_count":482,"friends_count":86,"listed_count":10,"favourites_count":1609,"statuses_count":11697,"created_at":"Wed Apr 07 01:23:11 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457182298501152770\/DGWvLA_J.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457182298501152770\/DGWvLA_J.png","profile_background_tile":true,"profile_link_color":"1C8C79","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFDEC2","profile_text_color":"EBA96C","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653236360845746176\/v3jphmAT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653236360845746176\/v3jphmAT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130343383\/1446189932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079991663"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805601792,"id_str":"663727707805601792","text":"@mxshyy like \ud83c\udf4c gay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727563408318464,"in_reply_to_status_id_str":"663727563408318464","in_reply_to_user_id":2746133404,"in_reply_to_user_id_str":"2746133404","in_reply_to_screen_name":"mxshyy","user":{"id":3250148101,"id_str":"3250148101","name":"Baeden","screen_name":"AmBraydenn","location":null,"url":null,"description":"I'm way up I feel blessed","protected":false,"verified":false,"followers_count":36,"friends_count":322,"listed_count":0,"favourites_count":120,"statuses_count":716,"created_at":"Fri Jun 19 22:19:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658826636129800193\/BA1_womE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658826636129800193\/BA1_womE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3250148101\/1444880349","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mxshyy","name":"Mushy","id":2746133404,"id_str":"2746133404","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801280512,"id_str":"663727707801280512","text":"\u30cf\u30c3\u30ab\u30c9\u30fc\u30eb THE \u3042\u306b\u3081\uff5e\u3057\u3087\u3093\u3000\u7b2c6\u8a71\u300c\u601d\u3044\u51fa\u306e\u30ca\u30fc\u30cb\u30fc\u300d (7:50) #1446695769 https:\/\/t.co\/VTGTRZXKw3\n\u3042\u3041\uff3e\u301c\u30db\u30e2\u306b\u76ee\u899a\u3081\u308b\u3045\uff3e\uff5e","source":"\u003ca href=\"http:\/\/www.nicovideo.jp\" rel=\"nofollow\"\u003eniconico iOS\u30a2\u30d7\u30ea\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550134759,"id_str":"550134759","name":"\u30cf\u30c3\u30ab\u30c9\u30fc\u30eb105\u53f7","screen_name":"105_Rche","location":"1145141919810\u56de\u306eVine\u30eb\u30fc\u30d7","url":"http:\/\/twpf.jp\/105_Rche","description":"\u3042\u3057\u3085\u3057\u3067\u3059(,,\u2022\u03c9\u2022,,)\u2661\u96e3123EXH9 \u30de\u30a4\u30ca\u30f3\u30d0\u30fc[5038-6037] \u30eb\u30b7\u30a7\u3061\u3083\u3093\u3068\u30cf\u30c3\u30ab\u30c9\u30fc\u30eb3\u53f7\u304c\u597d\u304d \/ icon:(@supremacyyyyed)","protected":false,"verified":false,"followers_count":375,"friends_count":290,"listed_count":23,"favourites_count":43675,"statuses_count":54266,"created_at":"Tue Apr 10 12:04:38 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609963969332154368\/rtK30iIg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609963969332154368\/rtK30iIg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550134759\/1446122389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VTGTRZXKw3","expanded_url":"http:\/\/nico.ms\/1446695769","display_url":"nico.ms\/1446695769","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991661"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707813978112,"id_str":"663727707813978112","text":"RT @vitorinha_cris: @VERDAODAZOEIRA @DoentesPFutebol meu mozao n curti noitada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":632621463,"id_str":"632621463","name":"CORITIBA DA ZOEIRA","screen_name":"VERDAODAZOEIRA","location":"Snap: Coridazoeira","url":null,"description":"O MAIOR VERD\u00c3O DO BRASIL!!! Clareando com seus raios verde e brancos encantando o ex pa\u00eds do futebol. As zuera comessa aki! coritibadazoeira@hotmail.com","protected":false,"verified":false,"followers_count":12338,"friends_count":1061,"listed_count":0,"favourites_count":965,"statuses_count":4311,"created_at":"Wed Jul 11 03:27:52 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/677954905\/5cffc306d70c546770a5afd9beb23c95.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/677954905\/5cffc306d70c546770a5afd9beb23c95.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661909325909225472\/9iuggwSz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661909325909225472\/9iuggwSz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/632621463\/1442891936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:36 +0000 2015","id":663727392905670656,"id_str":"663727392905670656","text":"@VERDAODAZOEIRA @DoentesPFutebol meu mozao n curti noitada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724551411511296,"in_reply_to_status_id_str":"663724551411511296","in_reply_to_user_id":632621463,"in_reply_to_user_id_str":"632621463","in_reply_to_screen_name":"VERDAODAZOEIRA","user":{"id":151897869,"id_str":"151897869","name":"Vit \u2606","screen_name":"vitorinha_cris","location":"Brasil","url":null,"description":"snap: vitorinha_cris insta:vitorinhacristine\ufe0f\noff do Fake: @SacBotafogo","protected":false,"verified":false,"followers_count":1933,"friends_count":1077,"listed_count":3,"favourites_count":7982,"statuses_count":56401,"created_at":"Fri Jun 04 14:44:44 +0000 2010","utc_offset":-7200,"time_zone":"America\/Sao_Paulo","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498073831945146368\/E_O6Fnwv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498073831945146368\/E_O6Fnwv.jpeg","profile_background_tile":true,"profile_link_color":"57DEF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663351317260345344\/gikP9Plg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663351317260345344\/gikP9Plg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151897869\/1432158260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"97bcdfca1a2dca59","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/97bcdfca1a2dca59.json","place_type":"city","name":"Rio de Janeiro","full_name":"Rio de Janeiro, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.795449,-23.083020],[-43.795449,-22.739823],[-43.087707,-22.739823],[-43.087707,-23.083020]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VERDAODAZOEIRA","name":"CORITIBA DA ZOEIRA","id":632621463,"id_str":"632621463","indices":[0,15]},{"screen_name":"DoentesPFutebol","name":"Doentes Por Futebol","id":124658538,"id_str":"124658538","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vitorinha_cris","name":"Vit \u2606","id":151897869,"id_str":"151897869","indices":[3,18]},{"screen_name":"VERDAODAZOEIRA","name":"CORITIBA DA ZOEIRA","id":632621463,"id_str":"632621463","indices":[20,35]},{"screen_name":"DoentesPFutebol","name":"Doentes Por Futebol","id":124658538,"id_str":"124658538","indices":[36,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707797123074,"id_str":"663727707797123074","text":"Odio los inicio de semana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277724564,"id_str":"3277724564","name":"Vale","screen_name":"StayWeirdU","location":"M\u00e9xico","url":null,"description":null,"protected":false,"verified":false,"followers_count":97,"friends_count":185,"listed_count":1,"favourites_count":1474,"statuses_count":14137,"created_at":"Sun Jul 12 18:04:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659772874123702272\/hWGiUGxb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659772874123702272\/hWGiUGxb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277724564\/1446331201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991660"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805474816,"id_str":"663727707805474816","text":"Kenot sleep. My legs is hurting like hell and i miss you like crazy @redzawahi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2566571731,"id_str":"2566571731","name":"B","screen_name":"AshaNuraliah","location":"Kuala Lumpur ","url":null,"description":"\u200f\u200f\u0627\u0644\u0644\u0629","protected":false,"verified":false,"followers_count":86,"friends_count":50,"listed_count":1,"favourites_count":55,"statuses_count":11412,"created_at":"Sat Jun 14 06:03:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609220994901741568\/nX_Z9WpC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609220994901741568\/nX_Z9WpC.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600176743119327232\/TTp34Om6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600176743119327232\/TTp34Om6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566571731\/1444737725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"redzawahi","name":"r.","id":850838822,"id_str":"850838822","indices":[68,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805478912,"id_str":"663727707805478912","text":"Parlamento de Catalu\u00f1a aprob\u00f3 resoluci\u00f3n para independencia de Espa\u00f1a: El Parlamento de Catalu\u00f1a aprob\u00f3 este l... https:\/\/t.co\/tQBAid6X6z","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2198709838,"id_str":"2198709838","name":"Marcela Padilla Menk","screen_name":"Marcela_padilMe","location":null,"url":null,"description":"\u00bfQu\u00e9 es la felicidad sino el desarrollo de nuestras facultades?","protected":false,"verified":false,"followers_count":44,"friends_count":34,"listed_count":1,"favourites_count":18,"statuses_count":2973,"created_at":"Thu Nov 28 02:48:46 +0000 2013","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429677731270246400\/PYvxhErC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429677731270246400\/PYvxhErC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2198709838\/1400080772","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tQBAid6X6z","expanded_url":"http:\/\/bit.ly\/1kFNdkP","display_url":"bit.ly\/1kFNdkP","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805450240,"id_str":"663727707805450240","text":"RT @FebrianNindyo: Sama2 tq yaa @R_putrianugrah:\"thanks buat kemarin sore kak @sayhivi @febrianNindyo @ezramandira @deaazkadi @ilhamadi htt\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":734410422,"id_str":"734410422","name":"SHIPUT","screen_name":"R_putrianugrah","location":"Makassar - Bontonompo ","url":null,"description":"Singer - Jazzy","protected":false,"verified":false,"followers_count":886,"friends_count":745,"listed_count":2,"favourites_count":413,"statuses_count":16316,"created_at":"Fri Aug 03 07:48:56 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460307356371271681\/5aOpX56P.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460307356371271681\/5aOpX56P.jpeg","profile_background_tile":true,"profile_link_color":"99002B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607475043065470976\/OLLEL8OL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607475043065470976\/OLLEL8OL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/734410422\/1437088769","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:18:59 +0000 2015","id":663707356027424768,"id_str":"663707356027424768","text":"Sama2 tq yaa @R_putrianugrah:\"thanks buat kemarin sore kak @sayhivi @febrianNindyo @ezramandira @deaazkadi @ilhamadi https:\/\/t.co\/gU0IUptFqO","source":"\u003ca href=\"http:\/\/blazefortwitter.wordpress.com\" rel=\"nofollow\"\u003eBlazeForTwitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97835070,"id_str":"97835070","name":"febrian nindyo","screen_name":"FebrianNindyo","location":"\u00dcT: -6.267913,106.802499","url":null,"description":"Indonesia. Ordinary student. HiVi! \r\n@sayhivi cp: Bima 087886741010","protected":false,"verified":false,"followers_count":36208,"friends_count":1063,"listed_count":29,"favourites_count":6,"statuses_count":9231,"created_at":"Sat Dec 19 06:00:57 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003734498\/eb81a1f32f9d1965916e749badca96c2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003734498\/eb81a1f32f9d1965916e749badca96c2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526727696487702529\/wxaJlMVd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526727696487702529\/wxaJlMVd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97835070\/1391666936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gU0IUptFqO","expanded_url":"http:\/\/tl.gd\/n_1snqt3f","display_url":"tl.gd\/n_1snqt3f","indices":[117,140]}],"user_mentions":[{"screen_name":"R_putrianugrah","name":"SHIPUT","id":734410422,"id_str":"734410422","indices":[13,28]},{"screen_name":"sayHiVi","name":"HiVi!","id":95885733,"id_str":"95885733","indices":[59,67]},{"screen_name":"FebrianNindyo","name":"febrian nindyo","id":97835070,"id_str":"97835070","indices":[68,82]},{"screen_name":"ezramandira","name":"Ezra Mandira","id":76362086,"id_str":"76362086","indices":[83,95]},{"screen_name":"deaazkadi","name":"Dalila Azkadiputri","id":132435088,"id_str":"132435088","indices":[96,106]},{"screen_name":"ilhamadi","name":"ilham","id":112075431,"id_str":"112075431","indices":[107,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gU0IUptFqO","expanded_url":"http:\/\/tl.gd\/n_1snqt3f","display_url":"tl.gd\/n_1snqt3f","indices":[139,140]}],"user_mentions":[{"screen_name":"FebrianNindyo","name":"febrian nindyo","id":97835070,"id_str":"97835070","indices":[3,17]},{"screen_name":"R_putrianugrah","name":"SHIPUT","id":734410422,"id_str":"734410422","indices":[32,47]},{"screen_name":"sayHiVi","name":"HiVi!","id":95885733,"id_str":"95885733","indices":[78,86]},{"screen_name":"FebrianNindyo","name":"febrian nindyo","id":97835070,"id_str":"97835070","indices":[87,101]},{"screen_name":"ezramandira","name":"Ezra Mandira","id":76362086,"id_str":"76362086","indices":[102,114]},{"screen_name":"deaazkadi","name":"Dalila Azkadiputri","id":132435088,"id_str":"132435088","indices":[115,125]},{"screen_name":"ilhamadi","name":"ilham","id":112075431,"id_str":"112075431","indices":[126,135]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707788697600,"id_str":"663727707788697600","text":"Ba't pag CharDawn ang gumagamit ng BOSS as endearment ok lang, pero pag iba nakaka-baduy! Hahaha.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1321654574,"id_str":"1321654574","name":"it's SALIE not SALLY","screen_name":"SalieAbayon","location":"Quezon City","url":"http:\/\/Instagram.com\/salieabayon","description":"21. MNL,PH. Roadie of @StagesTalents. Traveler. Dancer & Theater Actress in my past life. Frustrated Ballerina. Happy Go Lucky! \u270c\ufe0f","protected":false,"verified":false,"followers_count":710,"friends_count":282,"listed_count":7,"favourites_count":732,"statuses_count":10816,"created_at":"Tue Apr 02 03:21:01 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432395932043190272\/ujFcYd45.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432395932043190272\/ujFcYd45.jpeg","profile_background_tile":true,"profile_link_color":"8F0FC2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661934973285302272\/7Os97dcm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661934973285302272\/7Os97dcm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1321654574\/1396861590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079991658"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707822231552,"id_str":"663727707822231552","text":"RT @lupinzSh: ( \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2a\u0e48\u0e07\u2661 ) \u0e42\u0e0b\u0e08\u0e39\u0e04\u0e25\u0e32\u0e2a\u0e2a\u0e34\u0e04\n\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e16\u0e39\u0e01\u0e01\u0e0e\u0e2b\u0e21\u0e32\u0e22 \u0e02\u0e27\u0e14\u0e41\u0e01\u0e49\u0e27\u0e15\u0e49\u0e19\u0e15\u0e33\u0e2b\u0e23\u0e31\u0e1a\n\u0e02\u0e27\u0e14\u0e25\u0e30 220 \u0e1a\u0e32\u0e17 \ud83d\udcac https:\/\/t.co\/sStL0VScqc","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3182570742,"id_str":"3182570742","name":"J-O-S-E","screen_name":"HofJose_","location":"U TAKE ME 2 ANOTHER SPACE&TIME","url":null,"description":"- MAID - SERVICE : OPEN","protected":false,"verified":false,"followers_count":40,"friends_count":53,"listed_count":0,"favourites_count":46,"statuses_count":1271,"created_at":"Sat May 02 08:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663667641958035456\/caC4DVDk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663667641958035456\/caC4DVDk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3182570742\/1437407161","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:56 +0000 2015","id":663722695310204928,"id_str":"663722695310204928","text":"( \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2a\u0e48\u0e07\u2661 ) \u0e42\u0e0b\u0e08\u0e39\u0e04\u0e25\u0e32\u0e2a\u0e2a\u0e34\u0e04\n\u0e19\u0e33\u0e40\u0e02\u0e49\u0e32\u0e16\u0e39\u0e01\u0e01\u0e0e\u0e2b\u0e21\u0e32\u0e22 \u0e02\u0e27\u0e14\u0e41\u0e01\u0e49\u0e27\u0e15\u0e49\u0e19\u0e15\u0e33\u0e2b\u0e23\u0e31\u0e1a\n\u0e02\u0e27\u0e14\u0e25\u0e30 220 \u0e1a\u0e32\u0e17 \ud83d\udcac https:\/\/t.co\/sStL0VScqc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2934448778,"id_str":"2934448778","name":"LUPINZ SHOP\u2661","screen_name":"lupinzSh","location":"LINE \u2661","url":"http:\/\/line.me\/ti\/p\/8OKiROywuA","description":"Exodolls l \u0e15\u0e4a\u0e2d\u0e01\u0e1a\u0e01\u0e01\u0e35 \u0e02\u0e19\u0e21(\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 \u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19) l \u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32 + \u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17 \u0e01\u0e34\u0e08\u0e01\u0e23\u0e23\u0e21 \u0e08\u0e34\u0e49\u0e21\u0e14\u0e39\u0e17\u0e35\u0e48 Fav. \u0e19\u0e32\u0e08\u0e32 l IG \u2661 @lupinzsh \u0e2a\u0e48\u0e07\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c\u0e1e\u0e38\u0e18 l \u0e07\u0e14\u0e02\u0e32\u0e22\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a\u0e04\u0e19\u0e14\u0e35 l \u0e08\u0e4b\u0e32\u0e41\u0e1f\u0e19\u0e22\u0e2d\u0e07\u0e08\u0e39\u0e27 ._.","protected":false,"verified":false,"followers_count":2571,"friends_count":1,"listed_count":0,"favourites_count":119,"statuses_count":1804,"created_at":"Thu Dec 18 07:44:53 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653190218321801216\/mUakQONj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653190218321801216\/mUakQONj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2934448778\/1446605806","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722615333253120,"id_str":"663722615333253120","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722615333253120,"id_str":"663722615333253120","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663722658844930049,"id_str":"663722658844930049","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEPd3UcAEu-Md.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEPd3UcAEu-Md.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lupinzSh","name":"LUPINZ SHOP\u2661","id":2934448778,"id_str":"2934448778","indices":[3,12]}],"symbols":[],"media":[{"id":663722615333253120,"id_str":"663722615333253120","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663722695310204928,"source_status_id_str":"663722695310204928","source_user_id":2934448778,"source_user_id_str":"2934448778"}]},"extended_entities":{"media":[{"id":663722615333253120,"id_str":"663722615333253120","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEM7xU8AAnlNE.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663722695310204928,"source_status_id_str":"663722695310204928","source_user_id":2934448778,"source_user_id_str":"2934448778"},{"id":663722658844930049,"id_str":"663722658844930049","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEPd3UcAEu-Md.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEPd3UcAEu-Md.jpg","url":"https:\/\/t.co\/sStL0VScqc","display_url":"pic.twitter.com\/sStL0VScqc","expanded_url":"http:\/\/twitter.com\/lupinzSh\/status\/663722695310204928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663722695310204928,"source_status_id_str":"663722695310204928","source_user_id":2934448778,"source_user_id_str":"2934448778"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079991666"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707809710084,"id_str":"663727707809710084","text":"@0421_han2 \u305d\u306e\u9854\u3067\u8a00\u308f\u308c\u305f\u3089\u3082\u3046\u3001\u672c\u5f53\u306b\u3068\u304d\u3081\u304d\u3057\u304b\u306a\u3044(\uff34\uff3f\uff34)\ud83d\ude4f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726165895417856,"in_reply_to_status_id_str":"663726165895417856","in_reply_to_user_id":3747845893,"in_reply_to_user_id_str":"3747845893","in_reply_to_screen_name":"0421_han2","user":{"id":3257329712,"id_str":"3257329712","name":"\u53ca\u5f71\u53ca\u6cbc@\u985e","screen_name":"rui1_2","location":"\u53ca\u5f71\u53ca\u306e\u6cbc(\u722a\u5148\u3060\u3051\u304c\u3061\u3087\u3063\u3068\u51fa\u3066\u308b)","url":null,"description":"\u985e(\u308b\u3044)\u3068\u7533\u3057\u307e\u3059\u300220\u6b73\u2191\u306e\u982d\u306e\u4e2d\u304a\u82b1\u7551\u5909\u614b\u30d8\u30bf\u30ec\u30a4\u30e4\u30fc\u3002\u53ca\u5f71\u3001\u5f71\u53ca\u3001\u9752\u57ce\u306b\u8e0a\u3089\u3055\u308c\u3066\u308b\u3002 \u3055\u3088\u306a\u3089\u306fB\u2192B\u89e3\u9664\u3067\u3002attention\uff01\uff01\u753b\u50cf\u306e\u6295\u4e0b\u591a\u3044\u3067\u3059\u3002\u7279\u306b\u30db\u30e2\u30fb\u7d61\u307f\u753b\u50cf\u3082\u6d41\u3057\u307e\u3059\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":555,"friends_count":449,"listed_count":23,"favourites_count":1318,"statuses_count":13065,"created_at":"Sat Jun 27 03:53:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663674156051886080\/i2I4bt6w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663674156051886080\/i2I4bt6w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257329712\/1446726927","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0421_han2","name":"\u30de\u30e2\u5ddd\u5fb9","id":3747845893,"id_str":"3747845893","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991663"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707813842944,"id_str":"663727707813842944","text":"@badwhitewo @goodnewyear tapi senyumnya p'sing mengalihkan dunia\/? p'august uke apa seme \/?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726640015405060,"in_reply_to_status_id_str":"663726640015405060","in_reply_to_user_id":4171874713,"in_reply_to_user_id_str":"4171874713","in_reply_to_screen_name":"badwhitewo","user":{"id":3426252260,"id_str":"3426252260","name":"Captain!","screen_name":"goodccaptain","location":null,"url":null,"description":"[Chonlathorn Kongyingyong - Actor - 98L]","protected":false,"verified":false,"followers_count":115,"friends_count":56,"listed_count":0,"favourites_count":117,"statuses_count":1580,"created_at":"Wed Sep 02 13:33:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715678805880832\/WSjZUAVd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715678805880832\/WSjZUAVd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3426252260\/1446480619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"badwhitewo","name":"Whitewo","id":4171874713,"id_str":"4171874713","indices":[0,11]},{"screen_name":"goodnewyear","name":"whut","id":3227261016,"id_str":"3227261016","indices":[12,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707814019072,"id_str":"663727707814019072","text":"RT @TopSportsT: Lionel Messi VS Cristiano Ronaldo https:\/\/t.co\/9W5eZPjQ1y \n#Messi #Ronaldo #CristianoRonaldo #Barcelona #lionelmessi https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3102868341,"id_str":"3102868341","name":"Melissa Macedo","screen_name":"Mellmacedo2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":498,"friends_count":7,"listed_count":849,"favourites_count":0,"statuses_count":65411,"created_at":"Sat Mar 21 21:48:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:07:03 +0000 2015","id":663613755847286784,"id_str":"663613755847286784","text":"Lionel Messi VS Cristiano Ronaldo https:\/\/t.co\/9W5eZPjQ1y \n#Messi #Ronaldo #CristianoRonaldo #Barcelona #lionelmessi https:\/\/t.co\/abXlABHdqB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312143088,"id_str":"3312143088","name":"Top Sports","screen_name":"TopSportsT","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCVENKEkVgdOdQMMtP9Ik1_A","description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":726,"listed_count":3,"favourites_count":1342,"statuses_count":144,"created_at":"Tue Aug 11 07:22:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635700853328887808\/MRUzap-X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635700853328887808\/MRUzap-X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312143088\/1441092386","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":4,"entities":{"hashtags":[{"text":"Messi","indices":[59,65]},{"text":"Ronaldo","indices":[66,74]},{"text":"CristianoRonaldo","indices":[75,92]},{"text":"Barcelona","indices":[93,103]},{"text":"lionelmessi","indices":[104,116]}],"urls":[{"url":"https:\/\/t.co\/9W5eZPjQ1y","expanded_url":"https:\/\/youtu.be\/brQZWQs6OMw","display_url":"youtu.be\/brQZWQs6OMw","indices":[34,57]}],"user_mentions":[],"symbols":[],"media":[{"id":663613754567880705,"id_str":"663613754567880705","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","url":"https:\/\/t.co\/abXlABHdqB","display_url":"pic.twitter.com\/abXlABHdqB","expanded_url":"http:\/\/twitter.com\/TopSportsT\/status\/663613755847286784\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663613754567880705,"id_str":"663613754567880705","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","url":"https:\/\/t.co\/abXlABHdqB","display_url":"pic.twitter.com\/abXlABHdqB","expanded_url":"http:\/\/twitter.com\/TopSportsT\/status\/663613755847286784\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Messi","indices":[75,81]},{"text":"Ronaldo","indices":[82,90]},{"text":"CristianoRonaldo","indices":[91,108]},{"text":"Barcelona","indices":[109,119]},{"text":"lionelmessi","indices":[120,132]}],"urls":[{"url":"https:\/\/t.co\/9W5eZPjQ1y","expanded_url":"https:\/\/youtu.be\/brQZWQs6OMw","display_url":"youtu.be\/brQZWQs6OMw","indices":[50,73]}],"user_mentions":[{"screen_name":"TopSportsT","name":"Top Sports","id":3312143088,"id_str":"3312143088","indices":[3,14]}],"symbols":[],"media":[{"id":663613754567880705,"id_str":"663613754567880705","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","url":"https:\/\/t.co\/abXlABHdqB","display_url":"pic.twitter.com\/abXlABHdqB","expanded_url":"http:\/\/twitter.com\/TopSportsT\/status\/663613755847286784\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"source_status_id":663613755847286784,"source_status_id_str":"663613755847286784","source_user_id":3312143088,"source_user_id_str":"3312143088"}]},"extended_entities":{"media":[{"id":663613754567880705,"id_str":"663613754567880705","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWhMZ0U8AEWZyB.png","url":"https:\/\/t.co\/abXlABHdqB","display_url":"pic.twitter.com\/abXlABHdqB","expanded_url":"http:\/\/twitter.com\/TopSportsT\/status\/663613755847286784\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":440,"h":220,"resize":"fit"}},"source_status_id":663613755847286784,"source_status_id_str":"663613755847286784","source_user_id":3312143088,"source_user_id_str":"3312143088"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707813990400,"id_str":"663727707813990400","text":"RT @RogerioSanchesC: AO VIVO no #Periscope: Art. 59 CP: dicas https:\/\/t.co\/IZNScvzqmm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":847565029,"id_str":"847565029","name":"Camila Lara","screen_name":"Camila_Lara_","location":"Cuiab\u00e1, Mato Grosso","url":"http:\/\/opiniaodetal.wordpress.com\/","description":"SGI, BSGI, Direito.","protected":false,"verified":false,"followers_count":241,"friends_count":431,"listed_count":2,"favourites_count":1572,"statuses_count":8917,"created_at":"Wed Sep 26 15:00:47 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560988481027964930\/oo-QcYXV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560988481027964930\/oo-QcYXV.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660954536274763776\/p983WdSp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660954536274763776\/p983WdSp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847565029\/1424185780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:54 +0000 2015","id":663719916877516800,"id_str":"663719916877516800","text":"AO VIVO no #Periscope: Art. 59 CP: dicas https:\/\/t.co\/IZNScvzqmm","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126332722,"id_str":"126332722","name":"Rog\u00e9rio Sanches","screen_name":"RogerioSanchesC","location":"Brazil","url":null,"description":"Professor de Penal e Processo Penal da Escola Superior do Minist\u00e9rio P\u00fablico de S\u00e3o Paulo","protected":false,"verified":false,"followers_count":33037,"friends_count":62,"listed_count":389,"favourites_count":130,"statuses_count":13632,"created_at":"Thu Mar 25 14:32:01 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000030773366\/7e88521ec74496bcffc7e432239413ce_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000030773366\/7e88521ec74496bcffc7e432239413ce_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[{"text":"Periscope","indices":[11,21]}],"urls":[{"url":"https:\/\/t.co\/IZNScvzqmm","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCgdTEyNTcxMjgwfDF5b0tNTlBFUHBuR1H-qXz-n9qpPeQ6y7KwpXlKv9tBBaF6be39RYdDKTlzUg==","display_url":"periscope.tv\/w\/aRCgdTEyNTcx\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[32,42]}],"urls":[{"url":"https:\/\/t.co\/IZNScvzqmm","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCgdTEyNTcxMjgwfDF5b0tNTlBFUHBuR1H-qXz-n9qpPeQ6y7KwpXlKv9tBBaF6be39RYdDKTlzUg==","display_url":"periscope.tv\/w\/aRCgdTEyNTcx\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"RogerioSanchesC","name":"Rog\u00e9rio Sanches","id":126332722,"id_str":"126332722","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707822252033,"id_str":"663727707822252033","text":"\u0441\u043a\u0430\u0447\u0430\u0442\u044c \u0444\u0438\u043b\u044c\u043c\u044b \u043d\u0430 \u0441\u0435\u043d\u0441\u043e\u0440\u043d\u044b\u0439 \u0442\u0435\u043b\u0435\u0444\u043e\u043d samsung: \u0441\u043a\u0430\u0447\u0430\u0442\u044c \u0444\u0438\u043b\u044c\u043c\u044b \u043d\u0430 \u0441\u0435\u043d\u0441\u043e\u0440\u043d\u044b\u0439 \u0442\u0435\u043b\u0435\u0444\u043e\u043d samsung https:\/\/t.co\/0zw2F6cha8","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2217252236,"id_str":"2217252236","name":"\u0436\u0435\u043d\u044f \u043a\u043b\u0443\u0448\u043a\u0430\u0440\u0435\u0432","screen_name":"jenyaushakov33","location":null,"url":null,"description":"#\u0427\u0438\u0442\u0430\u044e\u0412\u0437\u0430\u0438\u043c\u043d\u043e #\u0412\u0437\u0430\u0438\u043c\u043d\u044b\u0439\u0424\u043e\u043b\u043b\u043e\u0432\u0438\u043d\u0433 #FollowBack #FollowMe #follovback #rufollowback #ru_ff","protected":false,"verified":false,"followers_count":86,"friends_count":26,"listed_count":2,"favourites_count":0,"statuses_count":153472,"created_at":"Wed Nov 27 06:01:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000796294406\/72a5855bdfc35b70a7e1a54f5adb270b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000796294406\/72a5855bdfc35b70a7e1a54f5adb270b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0zw2F6cha8","expanded_url":"http:\/\/bit.ly\/1WM3hO4","display_url":"bit.ly\/1WM3hO4","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079991666"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805487104,"id_str":"663727707805487104","text":"@Skyblue_ETT \u9593\u9055\u3048\u307e\u3057\u305f\u3001\u6d88\u3057\u307e\u3057\u305f\u2025","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726959717814272,"in_reply_to_status_id_str":"663726959717814272","in_reply_to_user_id":1058873574,"in_reply_to_user_id_str":"1058873574","in_reply_to_screen_name":"Skyblue_ETT","user":{"id":1359060462,"id_str":"1359060462","name":"\u30ab\u30df\u677e@\u5927\u5b66\u57a2","screen_name":"karakazoy_hcu","location":"\u60d1\u661f\u30a4\u30ac\u30e0","url":"http:\/\/www.pixiv.net\/member.php?id=4314141","description":"\u30e1\u30c7\u30a3\u30a2\u9020\u5f622\u5e74 \u4e00\u6b21\u5275\u4f5c\u304c\u5927\u597d\u304d\u306a\u51e1\u4eba\u3067\u3059\u3002 LINE\u30b9\u30bf\u30f3\u30d7\u767a\u58f2\u4e2d http:\/\/line.me\/S\/sticker\/1170467 \u97f3\u697d\u57a2\uff08@karakazoy\uff09","protected":false,"verified":false,"followers_count":149,"friends_count":242,"listed_count":1,"favourites_count":1603,"statuses_count":17877,"created_at":"Wed Apr 17 10:15:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654292702712893440\/_h_YrEiC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654292702712893440\/_h_YrEiC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1359060462\/1446306291","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Skyblue_ETT","name":"Skyblue","id":1058873574,"id_str":"1058873574","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707797258240,"id_str":"663727707797258240","text":"Estoy viendo aposta Deportes Cuatro,y todav\u00eda no he podido ver un resumen del partido de ayer,la primera y la \u00faltima.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130611974,"id_str":"130611974","name":"Rafael Ar\u00e9valo G\u00f3mez","screen_name":"Rafaeldlp","location":"Sevilla","url":null,"description":"Sevillano,Sevillista,Espa\u00f1ol,Cat\u00f3lico.Mi vida el Porvenir,Aficionado a las coplas carnavaleras durante todo el a\u00f1o.En proceso de Historiador del Arte.","protected":false,"verified":false,"followers_count":459,"friends_count":763,"listed_count":4,"favourites_count":2368,"statuses_count":9423,"created_at":"Wed Apr 07 20:21:35 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0032","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469279375754399744\/XHIAfsP3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469279375754399744\/XHIAfsP3.jpeg","profile_background_tile":true,"profile_link_color":"0009B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660094039270772736\/9LSZPv3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660094039270772736\/9LSZPv3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130611974\/1446432745","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079991660"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707813904384,"id_str":"663727707813904384","text":"\u3044\u3051\u308b\u3044\u3051\u308b\uff01 \/ #fps \u30ad\u30e3\u30b9 https:\/\/t.co\/FfNospxoWu","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4164923713,"id_str":"4164923713","name":"\u30ab\u30a8\u30eb\u738b\u5b50","screen_name":"gzteBxs2WOyPcEC","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":36,"created_at":"Sun Nov 08 05:28:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fps","indices":[10,14]}],"urls":[{"url":"https:\/\/t.co\/FfNospxoWu","expanded_url":"http:\/\/cas.st\/cd348c5","display_url":"cas.st\/cd348c5","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991664"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707818209281,"id_str":"663727707818209281","text":"Get Weather Updates from The Weather Channel. 09:39:51","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2727150030,"id_str":"2727150030","name":"82712slha","screen_name":"82712slha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":56994,"created_at":"Tue Aug 12 20:01:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991665"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707788738560,"id_str":"663727707788738560","text":"@zakontheowl \n\u3064\u3093\u3067\u308c\u3048\u3048\u3048\u3048\u3048\uff01\uff01\uff01\uff01\n\u53ef\u611b\u3044\u3088\u304a\u304a\u304a\u304a\u304a\u304a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727095433011200,"in_reply_to_status_id_str":"663727095433011200","in_reply_to_user_id":3816531072,"in_reply_to_user_id_str":"3816531072","in_reply_to_screen_name":"zakontheowl","user":{"id":3135383299,"id_str":"3135383299","name":"\u968a\u9577\u3002","screen_name":"taichochotai","location":"\u3010\u5b87\u5b99\u306e\u5f7c\u65b9\u3000(\u5317\u6d77\u9053\uff09\u3011","url":null,"description":"\u3010\uff20\u968a\u9577\u3068\u3044\u3063\u305f\u3089\uff20\u3011 \u30ca\u30e1\u30af\u30b8\u30dc\u30c7\u30a3\u3002\u6b8b\u308a\u5c11\u306a\u3044\u524d\u9aea\u3002\u5b87\u5b99\u4eba\u3002\u96fb\u6ce2\u3002\u30c6\u30ec\u30d1\u30b7\u30fc\u3002\u9053\u6c11\u3002\u30d7\u30eb\u30d7\u30eb\u9707\u3048\u3066\u308b\u3002\u30bf\u30d4\u30aa\u30ab\u3002\u30cf\u30e0\u30b9\u30bf\u30fc\u3002\u30dc\u30ab\u30ed\u3002\u3061\u3047\u3073\u304a\uff08\u3055\u3055\u3089\u3055\u3093\uff09\u3002\u30a2\u30cb\u30e1\u3002\u30a2\u30a4\u30ab\u30c4\uff01\u3002\u30d1\u30ef\u30fc\u30d1\u30d5\u30ac\u30fc\u30eb\u30ba\u3002\u30d6\u30c3\u30af\u30aa\u30d5\u3002\u30df\u30ba\u30b4\u30ed\u30a6\u3002\u4eba\u72fc\u3002\u30b2\u30fc\u30e0\u5b9f\u6cc1(\u898b\u308b\u306e\u5c02\u9580)\u3002\u6b4c\u97f3\u75f4\u3002\u904b\u52d5\u97f3\u75f4\u3002\u6df1\u591c\u65cf\u3002\u4eba\u3068\u8a71\u3059\u308b\u306e\u597d\u304d\u3002\u30cb\u30b3\u30bf\u3002\u305f\u3044\u3061\u3087\u3064\u3002","protected":false,"verified":false,"followers_count":253,"friends_count":485,"listed_count":4,"favourites_count":1215,"statuses_count":3596,"created_at":"Fri Apr 03 11:23:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662651987406647296\/4tmH286S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662651987406647296\/4tmH286S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3135383299\/1431556467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zakontheowl","name":"\u3056\u3053\u3093","id":3816531072,"id_str":"3816531072","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991658"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707822292992,"id_str":"663727707822292992","text":"RT @mosquitocoil3rd: \u4eca\u65e5\u306f\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\uff01\n\u30bb\u30c8\u30ea\n1\u71b1\u5e2f\u4e0d\u502b\n2\u30b4\u30ea\u30e9\u30d6\u30bd\u30f3\u30b0\n3\u30d1\u30bb\u30ea\n4\u30b9\u30d4\u30fc\u30c9\n5\u767d\u304f\u306c\u308a\u3064\u3076\u305b\n\u3067\u3057\u305f\uff01\u6700\u9ad8\u306e\u30ab\u30aa\u30b9\u3001\u4eca\u5bb5\u7206\uff01\n\n\u307e\u3060\u307e\u3060\u6253\u3061\u4e0a\u3052\u306f\u7d42\u308f\u3089\u306d\u3047\uff01\uff01 https:\/\/t.co\/mH9SpGHaZH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955535136,"id_str":"2955535136","name":"\u307f\u306e\u308b\u3093\u307a\u3093 \u30e2\u30b9\u30ad\u30fc\u30c8\u30b3\u30a4\u30eb","screen_name":"3noRUNPEN","location":null,"url":null,"description":"\u30e2\u30b9\u30ad\u30fc\u30c8\u30b3\u30a4\u30eb\u3068\u3044\u3046\u30d0\u30f3\u30c9\u3067\u30c9\u30e9\u30e0\u3092\u53e9\u3044\u3066\u307e\u3059\u3002TOY\u611f\u304c\u3042\u308b\u3082\u306e\u304c\u5927\u597d\u304d\u3002\u305d\u306e\u6b21\u306b\u305f\u3044\u713c\u304d\u3002\u3042\u3001\u3042\u3068\u97f3\u697d\uff1f(ex.GLEN'z)","protected":false,"verified":false,"followers_count":330,"friends_count":329,"listed_count":0,"favourites_count":198,"statuses_count":782,"created_at":"Fri Jan 02 03:42:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630513911880507392\/vNw_oP50_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630513911880507392\/vNw_oP50_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955535136\/1440971828","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:22:49 +0000 2015","id":663391231611789312,"id_str":"663391231611789312","text":"\u4eca\u65e5\u306f\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\uff01\n\u30bb\u30c8\u30ea\n1\u71b1\u5e2f\u4e0d\u502b\n2\u30b4\u30ea\u30e9\u30d6\u30bd\u30f3\u30b0\n3\u30d1\u30bb\u30ea\n4\u30b9\u30d4\u30fc\u30c9\n5\u767d\u304f\u306c\u308a\u3064\u3076\u305b\n\u3067\u3057\u305f\uff01\u6700\u9ad8\u306e\u30ab\u30aa\u30b9\u3001\u4eca\u5bb5\u7206\uff01\n\n\u307e\u3060\u307e\u3060\u6253\u3061\u4e0a\u3052\u306f\u7d42\u308f\u3089\u306d\u3047\uff01\uff01 https:\/\/t.co\/mH9SpGHaZH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874142328,"id_str":"2874142328","name":"\u30e2\u30b9\u30ad\u30fc\u30c8\u30b3\u30a4\u30eb","screen_name":"mosquitocoil3rd","location":"\u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627","url":"http:\/\/kurumorat.wix.com\/mosquito-coil#!top\/mainPage","description":"\u583a\u3092\u4e2d\u5fc3\u306b\u6d3b\u52d5\u4e2d\u306e\u9ad8\u5e8a\u5f0f\u30ed\u30c3\u30af&\u30d5\u30a1\u30f3\u30af\u30d0\u30f3\u30c9\uff62\u30e2\u30b9\u30ad\u30fc\u30c8\u30b3\u30a4\u30eb\uff63\u3068\u8a00\u3044\u307e\u3059\u3002\u5909\u306a\u7dd1\u306e\u56db\u4eba\u8846\u3067\u3059\u3001\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 Vo.\u306f\u305b@dyxhkmcx Gt.\u304f\u308b@kurumorat Ba.\u795e@shirorororo Dr.\u307f\u306e\u308b\u3093\u307a\u3093@3noRUNPEN \u30e9\u30a4\u30d6\u6620\u50cf\u2192https:\/\/t.co\/zPg1623SdO","protected":false,"verified":false,"followers_count":313,"friends_count":309,"listed_count":1,"favourites_count":59,"statuses_count":234,"created_at":"Thu Oct 23 22:50:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589102050736082944\/AWtB_XHh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589102050736082944\/AWtB_XHh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874142328\/1429309377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663391177186504704,"id_str":"663391177186504704","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663391177186504704,"id_str":"663391177186504704","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663391195222044673,"id_str":"663391195222044673","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWxvpU8AEZR4E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWxvpU8AEZR4E.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663391217191809024,"id_str":"663391217191809024","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWzBfU8AAjuXI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWzBfU8AAjuXI.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mosquitocoil3rd","name":"\u30e2\u30b9\u30ad\u30fc\u30c8\u30b3\u30a4\u30eb","id":2874142328,"id_str":"2874142328","indices":[3,19]}],"symbols":[],"media":[{"id":663391177186504704,"id_str":"663391177186504704","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663391231611789312,"source_status_id_str":"663391231611789312","source_user_id":2874142328,"source_user_id_str":"2874142328"}]},"extended_entities":{"media":[{"id":663391177186504704,"id_str":"663391177186504704","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWwsdUcAAAOD2.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663391231611789312,"source_status_id_str":"663391231611789312","source_user_id":2874142328,"source_user_id_str":"2874142328"},{"id":663391195222044673,"id_str":"663391195222044673","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWxvpU8AEZR4E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWxvpU8AEZR4E.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663391231611789312,"source_status_id_str":"663391231611789312","source_user_id":2874142328,"source_user_id_str":"2874142328"},{"id":663391217191809024,"id_str":"663391217191809024","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTWzBfU8AAjuXI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTWzBfU8AAjuXI.jpg","url":"https:\/\/t.co\/mH9SpGHaZH","display_url":"pic.twitter.com\/mH9SpGHaZH","expanded_url":"http:\/\/twitter.com\/mosquitocoil3rd\/status\/663391231611789312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663391231611789312,"source_status_id_str":"663391231611789312","source_user_id":2874142328,"source_user_id_str":"2874142328"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991666"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707788849152,"id_str":"663727707788849152","text":"@Simastaycalmo https:\/\/t.co\/U2P0mzXI1D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727581221515264,"in_reply_to_status_id_str":"663727581221515264","in_reply_to_user_id":563929856,"in_reply_to_user_id_str":"563929856","in_reply_to_screen_name":"Simastaycalmo","user":{"id":70987768,"id_str":"70987768","name":"Giorgio Nardini","screen_name":"giorgionardini","location":"Rome, Italy \/\/ On a plane","url":"http:\/\/www.wanderlustdaily.com\/","description":"23, hopeless wanderer, window seats seeker. If you don't like Nutella we can't be friends. Blog: @wanderlustdaily Insta: http:\/\/instagram.com\/giorgionardini","protected":false,"verified":false,"followers_count":414,"friends_count":139,"listed_count":13,"favourites_count":2980,"statuses_count":29677,"created_at":"Wed Sep 02 15:13:11 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2C6780","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/845806333\/32a618fd05ff59bbd198005fd571fc51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/845806333\/32a618fd05ff59bbd198005fd571fc51.jpeg","profile_background_tile":true,"profile_link_color":"298D94","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658055051131363328\/OtcE_iZ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658055051131363328\/OtcE_iZ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70987768\/1438621804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U2P0mzXI1D","expanded_url":"https:\/\/www.youtube.com\/watch?v=fRh_vgS2dFE","display_url":"youtube.com\/watch?v=fRh_vg\u2026","indices":[15,38]}],"user_mentions":[{"screen_name":"Simastaycalmo","name":"Martina Tcc","id":563929856,"id_str":"563929856","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079991658"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707805585412,"id_str":"663727707805585412","text":"@autumneliteRS @The_Aviansie @darthnowell @SkystoneJexel yes I have tried numerous times and even tried support, it won't work","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727167440834560,"in_reply_to_status_id_str":"663727167440834560","in_reply_to_user_id":2953288095,"in_reply_to_user_id_str":"2953288095","in_reply_to_screen_name":"autumneliteRS","user":{"id":2912793975,"id_str":"2912793975","name":"Ehecoatl","screen_name":"Ehecoatlrs","location":"New Domina","url":null,"description":"Ironman and Icyene Warrior of Saradomin. Artwork by @SmixGoesWild","protected":false,"verified":false,"followers_count":166,"friends_count":246,"listed_count":2,"favourites_count":2924,"statuses_count":3502,"created_at":"Tue Dec 09 15:06:55 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4571DA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605975529959751680\/ir6UR8vK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605975529959751680\/ir6UR8vK.png","profile_background_tile":true,"profile_link_color":"4571DA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639979444736786432\/OHtpf5pc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639979444736786432\/OHtpf5pc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2912793975\/1441418996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"autumneliteRS","name":"Autumn elite","id":2953288095,"id_str":"2953288095","indices":[0,14]},{"screen_name":"The_Aviansie","name":"The Aviansie","id":1297743866,"id_str":"1297743866","indices":[15,28]},{"screen_name":"darthnowell","name":"AesirWarrior","id":2604203628,"id_str":"2604203628","indices":[29,41]},{"screen_name":"SkystoneJexel","name":"Sky Jexel","id":3498801078,"id_str":"3498801078","indices":[42,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991662"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707792912384,"id_str":"663727707792912384","text":"\u30e8\u30fc\u30c0 https:\/\/t.co\/Hs88xsbM4R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2258820206,"id_str":"2258820206","name":"\u2318\u307b\u306c(\ub2083\ub208)","screen_name":"yururi_milk","location":"\u3050\u308b\u3063\u3066\u3043\u306f\u307b\u306c\u304c\u6240\u6709\u3057\u3066\u307e\u3059\u3002","url":null,"description":"\u203b\u95c7\u6df1\u3044\u7cfb\u91ce\u90ce\u3067\u3059\u3002\u5909\u614b\u75c5\u307f\u767a\u8a00\u3042\u308a\u303c\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u6ce8\u610f\u3092\u3002\u30ea\u30d7\u8cb0\u3048\u308b\u3068\u304a\u8fce\u3048\u3057\u6613\u3044\u3067\u3059\u30022.5\u6b21\u5143\u7684\u307d\u304f\u3044\u305f\u3044\u4eba\u3002\u30b7\u30e7\u30bf\u3068V\u7cfb\u3068\u30db\u30e2\u304c\u6210\u5206\u3002\u99c4\u76ee\u306a\u5927\u4eba\uff08BBA\uff09\u6c96\u7530\u7dcf\u53f8\u3068\u4e94\u864e\u9000\u3068\u6a39\u5a01\u53a8\u25b6\ufe0e\u30b3\u30b9\u30d7\u30ec.\u4eee\u88c5.\u5316\u7ca7@blutregen1124 \u2190\u611b\u72ac","protected":false,"verified":false,"followers_count":25652,"friends_count":692,"listed_count":19,"favourites_count":6024,"statuses_count":5789,"created_at":"Mon Dec 23 11:39:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662323727405715456\/iZC7JPTE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662323727405715456\/iZC7JPTE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258820206\/1438785748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727702919131136,"id_str":"663727702919131136","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1EgUsAAxvT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1EgUsAAxvT3.jpg","url":"https:\/\/t.co\/Hs88xsbM4R","display_url":"pic.twitter.com\/Hs88xsbM4R","expanded_url":"http:\/\/twitter.com\/yururi_milk\/status\/663727707792912384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727702919131136,"id_str":"663727702919131136","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1EgUsAAxvT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1EgUsAAxvT3.jpg","url":"https:\/\/t.co\/Hs88xsbM4R","display_url":"pic.twitter.com\/Hs88xsbM4R","expanded_url":"http:\/\/twitter.com\/yururi_milk\/status\/663727707792912384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727702910746624,"id_str":"663727702910746624","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1EeUwAAQf4J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1EeUwAAQf4J.jpg","url":"https:\/\/t.co\/Hs88xsbM4R","display_url":"pic.twitter.com\/Hs88xsbM4R","expanded_url":"http:\/\/twitter.com\/yururi_milk\/status\/663727707792912384\/photo\/1","type":"photo","sizes":{"large":{"w":399,"h":360,"resize":"fit"},"small":{"w":340,"h":306,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":399,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079991659"} +{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707801321472,"id_str":"663727707801321472","text":"bITE ME https:\/\/t.co\/6J6IKCYrpY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727304070164480,"in_reply_to_status_id_str":"663727304070164480","in_reply_to_user_id":1372444968,"in_reply_to_user_id_str":"1372444968","in_reply_to_screen_name":"IceGreys_","user":{"id":1372444968,"id_str":"1372444968","name":"im broke","screen_name":"IceGreys_","location":null,"url":"http:\/\/www.wattpad.com\/user\/icegreys","description":"BUY 'AFTERLIFE - GREYSON CHANCE' ON ITUNES","protected":false,"verified":false,"followers_count":1671,"friends_count":878,"listed_count":2,"favourites_count":1161,"statuses_count":20862,"created_at":"Mon Apr 22 15:58:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578475314675781632\/kqj0AVXU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578475314675781632\/kqj0AVXU.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719001206296578\/vwdQ5zvu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719001206296578\/vwdQ5zvu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1372444968\/1447078310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727697911156736,"id_str":"663727697911156736","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0x2VEAAG_9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0x2VEAAG_9c.jpg","url":"https:\/\/t.co\/6J6IKCYrpY","display_url":"pic.twitter.com\/6J6IKCYrpY","expanded_url":"http:\/\/twitter.com\/IceGreys_\/status\/663727707801321472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727697911156736,"id_str":"663727697911156736","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0x2VEAAG_9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0x2VEAAG_9c.jpg","url":"https:\/\/t.co\/6J6IKCYrpY","display_url":"pic.twitter.com\/6J6IKCYrpY","expanded_url":"http:\/\/twitter.com\/IceGreys_\/status\/663727707801321472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663727698120851456,"id_str":"663727698120851456","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0yoUwAATebQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0yoUwAATebQ.jpg","url":"https:\/\/t.co\/6J6IKCYrpY","display_url":"pic.twitter.com\/6J6IKCYrpY","expanded_url":"http:\/\/twitter.com\/IceGreys_\/status\/663727707801321472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":715,"h":494,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}}},{"id":663727698770919424,"id_str":"663727698770919424","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI01DUAAAs-5Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI01DUAAAs-5Q.jpg","url":"https:\/\/t.co\/6J6IKCYrpY","display_url":"pic.twitter.com\/6J6IKCYrpY","expanded_url":"http:\/\/twitter.com\/IceGreys_\/status\/663727707801321472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079991661"} +{"delete":{"status":{"id":628443771345108992,"id_str":"628443771345108992","user_id":338075454,"user_id_str":"338075454"},"timestamp_ms":"1447079992167"}} +{"delete":{"status":{"id":628810819057291264,"id_str":"628810819057291264","user_id":410934252,"user_id_str":"410934252"},"timestamp_ms":"1447079992165"}} +{"delete":{"status":{"id":628440566892789764,"id_str":"628440566892789764","user_id":219833266,"user_id_str":"219833266"},"timestamp_ms":"1447079992172"}} +{"delete":{"status":{"id":663727330309898240,"id_str":"663727330309898240","user_id":203020059,"user_id_str":"203020059"},"timestamp_ms":"1447079992166"}} +{"delete":{"status":{"id":628434854254903297,"id_str":"628434854254903297","user_id":419801060,"user_id_str":"419801060"},"timestamp_ms":"1447079992185"}} +{"delete":{"status":{"id":628453254632882176,"id_str":"628453254632882176","user_id":971260285,"user_id_str":"971260285"},"timestamp_ms":"1447079992194"}} +{"delete":{"status":{"id":628434699057283073,"id_str":"628434699057283073","user_id":1706363209,"user_id_str":"1706363209"},"timestamp_ms":"1447079992182"}} +{"delete":{"status":{"id":628482874824593408,"id_str":"628482874824593408","user_id":939777121,"user_id_str":"939777121"},"timestamp_ms":"1447079992243"}} +{"delete":{"status":{"id":653512920802947072,"id_str":"653512920802947072","user_id":2615349992,"user_id_str":"2615349992"},"timestamp_ms":"1447079992334"}} +{"delete":{"status":{"id":663727699412697088,"id_str":"663727699412697088","user_id":621431753,"user_id_str":"621431753"},"timestamp_ms":"1447079992706"}} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008323072,"id_str":"663727712008323072","text":"@howzx_ \u062a\u0648\u0633\u0637.... \u062a\u0648\u0633\u0637 \u062d\u0628\u0643 \u0641 \u0642\u0644\u0628\u064a \u062a\u0648\u0633\u0637\ud83d\ude34\ud83d\udcad","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726385891028992,"in_reply_to_status_id_str":"663726385891028992","in_reply_to_user_id":2930065728,"in_reply_to_user_id_str":"2930065728","in_reply_to_screen_name":"howzx_","user":{"id":3914460914,"id_str":"3914460914","name":"\u0645\u0634\u0639\u0644 \u0627\u0644\u0646\u0639\u064a\u0645\u064a~\u2764\ufe0f","screen_name":"M6AX_6","location":"\u0628\u064a\u062a\u0646\u0627..","url":null,"description":"Insta:m6ax","protected":false,"verified":false,"followers_count":61,"friends_count":61,"listed_count":0,"favourites_count":104,"statuses_count":1826,"created_at":"Fri Oct 16 14:04:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662628741974102016\/zMafEIjG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662628741974102016\/zMafEIjG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3914460914\/1446150141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"howzx_","name":"\u0627\u0644\u0645\u064a\u062b\u061b","id":2930065728,"id_str":"2930065728","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995740160,"id_str":"663727711995740160","text":"RT @PrettyMf93: \ud83d\ude01#Goodmorning Mentions?\ud83d\ude01\n\u267b\ufe0fRetweet\u267b\ufe0f\n\ud83d\ude0aFor A Mention\ud83d\ude0a\n\ud83d\udcafMUST SAY IT BACK!\ud83d\udcaf\n\ud83d\udc63#Fav For A Follow\ud83d\udc63\n\ud83d\ude4cFB or get Unfollowed\ud83d\ude4c\n\ud83d\ude4aSC: sh\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79845388,"id_str":"79845388","name":"Ashli Nicole","screen_name":"ashli708","location":"Kik & iG: ashli708","url":"https:\/\/richmobonline.refersion.com\/c\/3b4f7","description":"Ashli Nicole | 20 years young | UCF 17 | Island Girl | RedBone | 305 \u2708 407 | Major : PreLaw | #RichMob","protected":false,"verified":false,"followers_count":4022,"friends_count":3054,"listed_count":7,"favourites_count":1039,"statuses_count":35387,"created_at":"Sun Oct 04 22:22:05 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646905619186864129\/JU7mP6er_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646905619186864129\/JU7mP6er_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:25 +0000 2015","id":663718790539165696,"id_str":"663718790539165696","text":"\ud83d\ude01#Goodmorning Mentions?\ud83d\ude01\n\u267b\ufe0fRetweet\u267b\ufe0f\n\ud83d\ude0aFor A Mention\ud83d\ude0a\n\ud83d\udcafMUST SAY IT BACK!\ud83d\udcaf\n\ud83d\udc63#Fav For A Follow\ud83d\udc63\n\ud83d\ude4cFB or get Unfollowed\ud83d\ude4c\n\ud83d\ude4aSC: shawtybhadd93\ud83d\ude4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1920943520,"id_str":"1920943520","name":"Keen Keen","screen_name":"PrettyMf93","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1276,"friends_count":1184,"listed_count":0,"favourites_count":1022,"statuses_count":696,"created_at":"Mon Sep 30 18:38:12 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1DF0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499601518052392960\/bvQux8RE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499601518052392960\/bvQux8RE.jpeg","profile_background_tile":true,"profile_link_color":"0A0105","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638098536647684096\/PPNmz_8s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638098536647684096\/PPNmz_8s_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":33,"entities":{"hashtags":[{"text":"Goodmorning","indices":[1,13]},{"text":"Fav","indices":[74,78]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Goodmorning","indices":[17,29]},{"text":"Fav","indices":[90,94]}],"urls":[],"user_mentions":[{"screen_name":"PrettyMf93","name":"Keen Keen","id":1920943520,"id_str":"1920943520","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987310592,"id_str":"663727711987310592","text":"Got unbearable tummy ache need a heat pack\ud83d\ude3f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":261184149,"id_str":"261184149","name":"ambs","screen_name":"marley_amber","location":"Manchester ","url":null,"description":"22.12.14 \/\/ Manchester \/\/ 18 JA Apprentice","protected":false,"verified":false,"followers_count":430,"friends_count":380,"listed_count":0,"favourites_count":1679,"statuses_count":8531,"created_at":"Sat Mar 05 12:25:53 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653343264981024768\/T4B2p9Ev_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653343264981024768\/T4B2p9Ev_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/261184149\/1446927811","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016736256,"id_str":"663727712016736256","text":"survived another early morning therapy appointment \ud83d\ude13","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403096440,"id_str":"403096440","name":"Miss Mary Jayne","screen_name":"maryjaynexo","location":"in the clouds","url":"http:\/\/maryjayneoncam.com","description":"Particularly personal and peculiar POV pornography. BBW fetish & XXX: http:\/\/c4s.com\/45039 Femdom: http:\/\/c4s.com\/59345","protected":false,"verified":false,"followers_count":10462,"friends_count":2111,"listed_count":85,"favourites_count":2925,"statuses_count":10190,"created_at":"Wed Nov 02 00:55:24 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586199413774757888\/LSDTXbG5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586199413774757888\/LSDTXbG5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403096440\/1427127532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995740161,"id_str":"663727711995740161","text":"embarrassed.......","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35006179,"id_str":"35006179","name":"Taylor Hoffman","screen_name":"taylorhoffman","location":null,"url":null,"description":"Nursing Student at WSU. snapchat: taylorhoffmann","protected":false,"verified":false,"followers_count":649,"friends_count":343,"listed_count":0,"favourites_count":4166,"statuses_count":19819,"created_at":"Fri Apr 24 18:59:10 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640366010\/7rdp27yl56dog2e2ykha.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640366010\/7rdp27yl56dog2e2ykha.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660221453044948992\/jDVUja-T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660221453044948992\/jDVUja-T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35006179\/1408071228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e09538b2e39d94df","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e09538b2e39d94df.json","place_type":"city","name":"Westfield","full_name":"Westfield, MA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-72.828565,42.073301],[-72.828565,42.188583],[-72.684842,42.188583],[-72.684842,42.073301]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711999959040,"id_str":"663727711999959040","text":"RT @marrielwilliams: My sis>>> https:\/\/t.co\/fOmb5Na1MT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1575791874,"id_str":"1575791874","name":"Marr","screen_name":"amarrriiiii","location":null,"url":null,"description":"& don't slide in my dms","protected":false,"verified":false,"followers_count":1008,"friends_count":459,"listed_count":2,"favourites_count":4870,"statuses_count":5050,"created_at":"Sun Jul 07 18:53:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663537783688925188\/B6j8zQNd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663537783688925188\/B6j8zQNd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1575791874\/1447001406","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Apr 27 19:36:10 +0000 2013","id":328231113522810882,"id_str":"328231113522810882","text":"My sis>>> https:\/\/t.co\/fOmb5Na1MT","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":878090880,"id_str":"878090880","name":"pure heroine","screen_name":"marrielwilliams","location":null,"url":null,"description":"your wet behind the ears","protected":false,"verified":false,"followers_count":717,"friends_count":493,"listed_count":1,"favourites_count":3049,"statuses_count":4060,"created_at":"Sat Oct 13 15:37:34 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567224781590626306\/I2D1TmUA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567224781590626306\/I2D1TmUA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878090880\/1440001587","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fOmb5Na1MT","expanded_url":"https:\/\/vine.co\/v\/bxhIgHxiptd","display_url":"vine.co\/v\/bxhIgHxiptd","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fOmb5Na1MT","expanded_url":"https:\/\/vine.co\/v\/bxhIgHxiptd","display_url":"vine.co\/v\/bxhIgHxiptd","indices":[40,63]}],"user_mentions":[{"screen_name":"marrielwilliams","name":"pure heroine","id":878090880,"id_str":"878090880","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992662"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016703489,"id_str":"663727712016703489","text":"Studio Later \ud83c\udfa4 See What Can Rap Up #SlowleyProgressing\ud83c\udfc6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953296855,"id_str":"2953296855","name":"Free Gang \u203c\ufe0f","screen_name":"ACTubbz","location":"West Midlands","url":"http:\/\/Instagram.co.uk\/Tubbz1Up","description":"Invest In Different Things.","protected":false,"verified":false,"followers_count":37,"friends_count":49,"listed_count":0,"favourites_count":20,"statuses_count":125,"created_at":"Wed Dec 31 16:00:15 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663357038634889216\/daoiwtLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663357038634889216\/daoiwtLs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953296855\/1446896862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SlowleyProgressing","indices":[35,54]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978962944,"id_str":"663727711978962944","text":"RT @SHAWNSHELIUM: @mendesinstinct this is probably the SWEETEST thing I saw lately, you are so nice","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1333259568,"id_str":"1333259568","name":"aftertaste stace","screen_name":"mendesinstinct","location":"woes | soph, dan, cara, ri :-)","url":"https:\/\/www.youtube.com\/channel\/UCoKmgKbFOn0EhWVjALu-VUw","description":"because underneath the darkness there's a light that's trying so hard to be seen. \u2606\u30df","protected":false,"verified":false,"followers_count":739,"friends_count":338,"listed_count":3,"favourites_count":2264,"statuses_count":15566,"created_at":"Sun Apr 07 05:50:42 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CCD4CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624624962456846337\/VDEu9gxP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624624962456846337\/VDEu9gxP.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663695528899780608\/UM3Fpg6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663695528899780608\/UM3Fpg6u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1333259568\/1446911096","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:20 +0000 2015","id":663726821184282624,"id_str":"663726821184282624","text":"@mendesinstinct this is probably the SWEETEST thing I saw lately, you are so nice","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663692380609081344,"in_reply_to_status_id_str":"663692380609081344","in_reply_to_user_id":1333259568,"in_reply_to_user_id_str":"1333259568","in_reply_to_screen_name":"mendesinstinct","user":{"id":3422188678,"id_str":"3422188678","name":"ana","screen_name":"SHAWNSHELIUM","location":"shawn's arms","url":null,"description":"i'm actually a lauren jauregui stan okay","protected":false,"verified":false,"followers_count":457,"friends_count":743,"listed_count":1,"favourites_count":6741,"statuses_count":9050,"created_at":"Fri Aug 14 13:06:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641329472453627904\/34az68R_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641329472453627904\/34az68R_.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663124305245523968\/sX9fH3xp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663124305245523968\/sX9fH3xp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3422188678\/1446831067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mendesinstinct","name":"aftertaste stace","id":1333259568,"id_str":"1333259568","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SHAWNSHELIUM","name":"ana","id":3422188678,"id_str":"3422188678","indices":[3,16]},{"screen_name":"mendesinstinct","name":"aftertaste stace","id":1333259568,"id_str":"1333259568","indices":[18,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987208192,"id_str":"663727711987208192","text":"@04Noise \u305d\u3046\u3044\u3046\u306e\u3063\u3066\u4e00\u4eba\u304c\u597d\u304d\u3068\u304b\u305d\u3046\u3044\u3046\u554f\u984c\u3067\u306f\u306a\u3044\u3088\u3046\u306a\u2026\n\u3044\u3084\u3044\u3084\u3001\u3057\u3063\u304b\u308a\u3057\u3066\u308b\u308f\u3051\u3067\u306f\u306a\u3044\u3093\u3067\u3059\uff01\u3042\u3093\u307e\u308a\u5909\u308f\u3089\u306a\u3044\u3068\u601d\u3044\u307e\u3059\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727092954083328,"in_reply_to_status_id_str":"663727092954083328","in_reply_to_user_id":980136396,"in_reply_to_user_id_str":"980136396","in_reply_to_screen_name":"04Noise","user":{"id":2326906225,"id_str":"2326906225","name":"\u85e4\u4e43@\u767e\u5408\u30f2\u30bf","screen_name":"_fujif","location":null,"url":null,"description":"\u982d\u306e\u4e2d\u306e8\u5272\u306f\u767e\u5408\u3067\u3067\u304d\u3066\u3044\u308b \u3060\u3044\u305f\u3044\u306f\u767e\u5408\u5984\u60f3\u3068\u65e5\u5e38\u30c4\u30a4\u30fc\u30c8 \u53d7\u9a13\u306e\u305f\u3081\u30c4\u30a4\u6e1b\u4e2d\uff1f \u30d5\u30a9\u30ed\u30fc \u30d6\u30ed\u30c3\u30af \u30ea\u30e0\u30fc\u30d6\u3054\u81ea\u7531\u306b\u3069\u3046\u305e","protected":false,"verified":false,"followers_count":392,"friends_count":166,"listed_count":21,"favourites_count":2636,"statuses_count":20430,"created_at":"Tue Feb 04 10:44:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583162881530695681\/IMVm1PSV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583162881530695681\/IMVm1PSV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2326906225\/1409133523","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"04Noise","name":"\u304b\u306e","id":980136396,"id_str":"980136396","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712012541952,"id_str":"663727712012541952","text":"\u062a\u0639\u0627\u0644 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0628\u0633 \u064a \u062e\u064a\u0628\u0631\u064a .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2875126184,"id_str":"2875126184","name":"\u0639\u0628\u062f \u0627\u0644\u0644\u0647 \u0628\u0646 \u0639\u0645\u0631 .","screen_name":"abod_omar45","location":"\u0627\u0644\u0627\u062d\u0633\u0627\u0621 \u060c \u0648\u0628\u0633 ","url":null,"description":"\u0628\u0623\u0633\u0644\u0648\u0628\u0643 \u062a\u0643\u0633\u0628 \u062d\u0628 \u0627\u0644\u0646\u0627\u0633 .","protected":false,"verified":false,"followers_count":355,"friends_count":846,"listed_count":0,"favourites_count":146,"statuses_count":4755,"created_at":"Fri Oct 24 12:32:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663055345670094848\/5aveX_Fs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663055345670094848\/5aveX_Fs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2875126184\/1446919453","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"017189e6700ad6cd","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/017189e6700ad6cd.json","place_type":"city","name":"\u0627\u0644\u0627\u062d\u0633\u0627\u0621","full_name":"\u0627\u0644\u0627\u062d\u0633\u0627\u0621, \u0627\u0644\u0634\u0631\u0642\u064a","country_code":"SA","country":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","bounding_box":{"type":"Polygon","coordinates":[[[49.416654,25.209613],[49.416654,25.707671],[49.838699,25.707671],[49.838699,25.209613]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079992665"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987240961,"id_str":"663727711987240961","text":"[B!] Arduino\u30d9\u30fc\u30b9\u306e\u5b66\u7fd2\u7528\u30ed\u30dc\u300cWink\u300d--\u30d3\u30b8\u30e5\u30a2\u30eb\uff0f\u30c6\u30ad\u30b9\u30c8\u8a00\u8a9e\u306e\u30ae\u30e3\u30c3\u30d7\u57cb\u3081\u308b - CNET Japan https:\/\/t.co\/VHlizqEAzr","source":"\u003ca href=\"http:\/\/worris3.sakura.ne.jp\/HatenaBookmarkMultiPost\/\" rel=\"nofollow\"\u003e\u306f\u3066\u30d6\u30c4\u30a4\u30fc\u30c8\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84510040,"id_str":"84510040","name":"@co_jit \u306e\u306f\u3066\u306a\u30d6\u30c3\u30af\u30de\u30fc\u30af","screen_name":"co_jit_Bookmark","location":"ADvancation","url":"http:\/\/b.hatena.ne.jp\/advblog\/","description":"\u306f\u3066\u306aID: advblog \u306e\u30d6\u30c3\u30af\u30de\u30fc\u30af\u3002@co_jit \u306e\u30b5\u30d6\u30a2\u30ab\u3002","protected":false,"verified":false,"followers_count":218,"friends_count":12,"listed_count":20,"favourites_count":220,"statuses_count":160965,"created_at":"Fri Oct 23 05:07:19 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641726137\/what-title-b_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641726137\/what-title-b_normal.gif","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VHlizqEAzr","expanded_url":"http:\/\/japan.cnet.com\/news\/service\/35073186\/","display_url":"japan.cnet.com\/news\/service\/3\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711991394304,"id_str":"663727711991394304","text":"\u307e\u305a\u5341\u4e09\u652f\u3001\u90ed\u5609\u5bfe\u8c61\u3058\u3083\u306d\u30fc\u3057","source":"\u003ca href=\"http:\/\/yukari.shibafu528.info\" rel=\"nofollow\"\u003eYukari for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3976758552,"id_str":"3976758552","name":"\u4e03\u5609\u274112\/27\u67ff\u539f\u30e9\u30a4\u30d6\uff01","screen_name":"7ka_7","location":"\u8a0e\u9b3c\u4f1d\u9811\u5f35\u308a\u4e2d","url":"http:\/\/twpf.jp\/7ka_7","description":"\u3057\u3061\u304b\u3068\u8aad\u307f\u307e\u3059\u524d\u306eHN\u3067\u547c\u3093\u3067\u3082\u3089\u3063\u3066\u3082\u5927\u4e08\u592b\u3067\u3059\uff01\u7121\u53cc\u3046\u305f\u30d7\u30ea\u8a0e\u9b3c\u4f1d\u3042\u3093\u30b9\u30bf\u30e2\u30f3\u30b9\u30c8\u3092\u3061\u307e\u3061\u307e\u3084\u3063\u3066\u308b\u3002\u9ed2\u5d0e\u862d\u4e38\u3068\u90ed\u5609\u3068\u68ee\u4e45\u4fdd\u7965\u592a\u90ce\u304c\u7ce7\u3002\u8a73\u3057\u304f\u306fURL\u306b\u3002","protected":false,"verified":false,"followers_count":65,"friends_count":238,"listed_count":0,"favourites_count":27,"statuses_count":1275,"created_at":"Thu Oct 22 05:25:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662960126978949124\/Cd5S5Udd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662960126978949124\/Cd5S5Udd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3976758552\/1446788935","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992660"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987171332,"id_str":"663727711987171332","text":"@sarkar_swati I agree. PMO should scrutinize who and Modi ji is following and remove the abusive trolls.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727231005499392,"in_reply_to_status_id_str":"663727231005499392","in_reply_to_user_id":1148102359,"in_reply_to_user_id_str":"1148102359","in_reply_to_screen_name":"sarkar_swati","user":{"id":68626120,"id_str":"68626120","name":"C Rajagopalachari","screen_name":"Andhrawallah","location":"Minneapolis, MN","url":null,"description":"Conservative Libertarian, Pro Markets, Pro India, Pro Capitalism. Savarkarite Secular. Running my own Investment Firm.","protected":false,"verified":false,"followers_count":120,"friends_count":409,"listed_count":0,"favourites_count":581,"statuses_count":1696,"created_at":"Tue Aug 25 06:24:12 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657526248936071168\/fAWvv2i8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657526248936071168\/fAWvv2i8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68626120\/1445602129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sarkar_swati","name":"Saswati Sarkar","id":1148102359,"id_str":"1148102359","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008171521,"id_str":"663727712008171521","text":"\u3074\u3087\u30fc\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1853573376,"id_str":"1853573376","name":"\u30c1\u30e3\u30f3\u30de\u30b5@\u307e---------\u3055\u3068\u3093\u266a","screen_name":"masatontoon","location":null,"url":null,"description":"\u8272\u6c17\u3092\u632f\u308a\u307e\u304f\u96c4\u732b\u3088\u308a\u3082\u30aa\u30a4\u30eb\u306b\u307e\u307f\u308c\u305f\u5358\u8eca\u304c\u3044\u3044 \u300a\u306a\u306a\u305f\u3064\u300b\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u30ea\u30fc\u30c0\u30fc@_ChanTats\u2190check\uff01\u30c1\u30e3\u30f3\u30bf\u30c4@\u30d1\u30fc\u30c6\u30a3\u30fc\u30e2\u30f3\u30b9\u30bf\u30fc\u5c02\u5c5e\u30de\u30cd\u30fc\u30b8\u30e3\u30fc!!!!!!!!!\u30d6\u30c3\u30ad\u30f3\u30b0\u306e\u969b\u306fDM\u307e\u3067\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":636,"friends_count":433,"listed_count":1,"favourites_count":376,"statuses_count":12865,"created_at":"Wed Sep 11 07:20:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653624468980432896\/o2xXHuV8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653624468980432896\/o2xXHuV8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1853573376\/1446423107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016691200,"id_str":"663727712016691200","text":"RT @ComedyPosts: does anyone else get really disappointed when you see a really crunchy looking leaf but when you step on it it doesn\u2019t do \u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1915115148,"id_str":"1915115148","name":"Berenice\u270c","screen_name":"bibbleesss262","location":null,"url":null,"description":"Appreciate the short things in life like me","protected":false,"verified":false,"followers_count":213,"friends_count":145,"listed_count":0,"favourites_count":2178,"statuses_count":1598,"created_at":"Sat Sep 28 19:50:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659467750314606592\/Yx4aC60W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659467750314606592\/Yx4aC60W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1915115148\/1443965404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:11 +0000 2015","id":663726029446488064,"id_str":"663726029446488064","text":"does anyone else get really disappointed when you see a really crunchy looking leaf but when you step on it it doesn\u2019t do the thing","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64019328,"id_str":"64019328","name":"Sarcasm ","screen_name":"ComedyPosts","location":null,"url":"https:\/\/Instagram.com\/femaletxts\/","description":"how I talk: 25% swearing 25% sarcasm 50% a combination of both. *We do not own the content posted.* Contact: girl-posts@outlook.com","protected":false,"verified":false,"followers_count":2950807,"friends_count":148,"listed_count":10081,"favourites_count":153,"statuses_count":102714,"created_at":"Sat Aug 08 18:54:57 +0000 2009","utc_offset":18000,"time_zone":"Karachi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563576709597765632\/8RFCEGZx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563576709597765632\/8RFCEGZx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64019328\/1420878171","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":126,"favorite_count":144,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ComedyPosts","name":"Sarcasm ","id":64019328,"id_str":"64019328","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016703488,"id_str":"663727712016703488","text":"RT @TretaLucas: amiga voce ta igual copo de bar todo mundo pega","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859290157,"id_str":"2859290157","name":"Jadice","screen_name":"psiujana","location":"Guarulhos","url":null,"description":"Hoje eu escolhi sorrir, amanh\u00e3 a gente v\u00ea o que faz!","protected":false,"verified":false,"followers_count":89,"friends_count":124,"listed_count":0,"favourites_count":958,"statuses_count":2049,"created_at":"Mon Nov 03 18:54:29 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663455842424004608\/y1DK_7Do_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663455842424004608\/y1DK_7Do_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859290157\/1446652837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:08:20 +0000 2015","id":662979900257787904,"id_str":"662979900257787904","text":"amiga voce ta igual copo de bar todo mundo pega","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2849355608,"id_str":"2849355608","name":"Canguru Jack","screen_name":"TretaLucas","location":null,"url":null,"description":"a procura de Administrador","protected":false,"verified":false,"followers_count":1150,"friends_count":1427,"listed_count":0,"favourites_count":1757,"statuses_count":1092,"created_at":"Fri Oct 10 00:19:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661205014782849024\/I0wef3zg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661205014782849024\/I0wef3zg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TretaLucas","name":"Canguru Jack","id":2849355608,"id_str":"2849355608","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711999942657,"id_str":"663727711999942657","text":"RT @AriCupkake: Those moments when you're l\u03b1ughing so h\u03b1rd you c\u03b1n't bre\u03b1the","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440268761,"id_str":"440268761","name":"Syd.","screen_name":"the_almighty10","location":null,"url":null,"description":"Rescia & Noah #UGA19","protected":false,"verified":false,"followers_count":916,"friends_count":732,"listed_count":1,"favourites_count":1190,"statuses_count":25794,"created_at":"Sun Dec 18 19:40:37 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606552216\/fhplhik7fyybo8wvc68x.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606552216\/fhplhik7fyybo8wvc68x.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661769919915249664\/EmQiEZF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661769919915249664\/EmQiEZF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440268761\/1445866868","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:12 +0000 2015","id":663723515632353280,"id_str":"663723515632353280","text":"Those moments when you're l\u03b1ughing so h\u03b1rd you c\u03b1n't bre\u03b1the","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376635771,"id_str":"376635771","name":"\u15f7\u1587\u14f0 \u1515U\u15e9\u1587\u1653\u1513\u2604","screen_name":"AriCupkake","location":"Los Angeles","url":null,"description":"Admire the beauty of others without questioning your own.","protected":false,"verified":false,"followers_count":136777,"friends_count":119945,"listed_count":425,"favourites_count":1795,"statuses_count":87700,"created_at":"Tue Sep 20 07:17:29 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663434526132056064\/GgFS9xv-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663434526132056064\/GgFS9xv-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376635771\/1447051491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AriCupkake","name":"\u15f7\u1587\u14f0 \u1515U\u15e9\u1587\u1653\u1513\u2604","id":376635771,"id_str":"376635771","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992662"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978844160,"id_str":"663727711978844160","text":"@karisu_kinomoto \u3068\u3093\u3053\u3064\u30e9\u30fc\u30e1\u30f3\u3067\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\udc37","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726313115549696,"in_reply_to_status_id_str":"663726313115549696","in_reply_to_user_id":153072524,"in_reply_to_user_id_str":"153072524","in_reply_to_screen_name":"karisu_kinomoto","user":{"id":2304387360,"id_str":"2304387360","name":"\u3055\u304f\u3089\u3082\u3061\u273f","screen_name":"motti_re_turn","location":"\u3061\u304f\u308f\u738b\u56fd","url":"http:\/\/blogs.yahoo.co.jp\/sakuramochi11201","description":"\u304a\u7d75\u63cf\u304d\u5927\u597d\u304d\u3067\u3059\u30fe(\u00b4\u2200`*)\uff89 \u6700\u8fd1\u306f\u7d75\u3088\u308a\u3082\u304a\u6599\u7406\u5199\u771f\u304c\u591a\u3044\u3067\u3059\uff57 \u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u3067\u3059\u266a \u30ea\u30d7\uff06\u30d5\u30a9\u30ed\u30d0\u6c17\u307e\u3050\u308c\u3067\u3059 \u30b3\u30d4\u30c3\u30af\/\u30ab\u30e9\u30fc\u30a4\u30f3\u30af\/\u30a2\u30af\u30ea\u30eb\/\u900f\u660e\u6c34\u5f69\/PhotoshopCS6\/SAI \u203b\u30a4\u30e9\u30b9\u30c8\u306e\u3054\u4f9d\u983c\u306f\u304a\u53d7\u3051\u3057\u3066\u304a\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":320,"friends_count":234,"listed_count":17,"favourites_count":10388,"statuses_count":10451,"created_at":"Wed Jan 22 07:16:19 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569653776277979136\/neRno9Gt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569653776277979136\/neRno9Gt.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644104422386069504\/NLFJttIe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644104422386069504\/NLFJttIe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304387360\/1424654304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"karisu_kinomoto","name":"\u304d\u306e\u3082\u3068\u304b\u308a\u3059","id":153072524,"id_str":"153072524","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995756544,"id_str":"663727711995756544","text":"Harry Potter xD https:\/\/t.co\/6ElWs4qweU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3607154254,"id_str":"3607154254","name":"L\u0454\u03bd\u03b9 A\u00a2\u043a\u0454\u044fm\u03b1\u03b7","screen_name":"heichou_ravioli","location":"Wherever Eren is","url":null,"description":"\u201cYour cleaning method is lamentable. Back upstairs now!\u201d \u2744 Detailed\/Crack Rp! Any ship \u2744 Baby kink @SugarBabyJaeger \u2744 Multi-Shipping acc \u2744 @Minou_San is mine \u2744","protected":false,"verified":false,"followers_count":171,"friends_count":118,"listed_count":1,"favourites_count":385,"statuses_count":5451,"created_at":"Thu Sep 10 08:06:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663282544536911872\/7WzbKu5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663282544536911872\/7WzbKu5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3607154254\/1447054155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663572578632527872,"quoted_status_id_str":"663572578632527872","quoted_status":{"created_at":"Mon Nov 09 04:23:25 +0000 2015","id":663572578632527872,"id_str":"663572578632527872","text":"what book would you want to live in?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9489,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6ElWs4qweU","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663572578632527872","display_url":"twitter.com\/questionyrself\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711999799296,"id_str":"663727711999799296","text":"RT @nupi_com: \u300c\u610f\u8b58\u306e\u306a\u3044\u4eba\u306b\u304a\u8336\u3092\u6df9\u308c\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002\u610f\u8b58\u306e\u306a\u3044\u4eba\u306f\u304a\u8336\u304c\u6b32\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002\u307e\u305f\u3001\"\u304a\u8336\u3092\u98f2\u3080\uff1f\"\u3068\u3044\u3046\u8cea\u554f\u306b\u306f\u7b54\u3048\u3089\u308c\u307e\u305b\u3093\u3002\u306a\u305c\u306a\u3089\u610f\u8b58\u304c\u306a\u3044\u304b\u3089\u3067\u3059\u3002\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636994781,"id_str":"636994781","name":"\u3057\u304b\u305f\u3093","screen_name":"dolly0627","location":null,"url":null,"description":"\u524d\u306e\u3081\u308a","protected":false,"verified":false,"followers_count":242,"friends_count":291,"listed_count":3,"favourites_count":2792,"statuses_count":16175,"created_at":"Mon Jul 16 14:03:38 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615931571632115712\/PMxbjiG3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615931571632115712\/PMxbjiG3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636994781\/1446293195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:42 +0000 2015","id":663722637193928704,"id_str":"663722637193928704","text":"\u300c\u610f\u8b58\u306e\u306a\u3044\u4eba\u306b\u304a\u8336\u3092\u6df9\u308c\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002\u610f\u8b58\u306e\u306a\u3044\u4eba\u306f\u304a\u8336\u304c\u6b32\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002\u307e\u305f\u3001\"\u304a\u8336\u3092\u98f2\u3080\uff1f\"\u3068\u3044\u3046\u8cea\u554f\u306b\u306f\u7b54\u3048\u3089\u308c\u307e\u305b\u3093\u3002\u306a\u305c\u306a\u3089\u610f\u8b58\u304c\u306a\u3044\u304b\u3089\u3067\u3059\u3002\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718977080700928,"in_reply_to_status_id_str":"663718977080700928","in_reply_to_user_id":3197321977,"in_reply_to_user_id_str":"3197321977","in_reply_to_screen_name":"nupi_com","user":{"id":3197321977,"id_str":"3197321977","name":"\u306c\u3074\u5b50","screen_name":"nupi_com","location":"\u306a\u306b\u306c\u306d\u306e","url":null,"description":"\u597d\u304d\u306a\u4eba\u306e\u597d\u304d\u306a\u5f62\u306e\u77f3","protected":false,"verified":false,"followers_count":358,"friends_count":203,"listed_count":10,"favourites_count":3743,"statuses_count":3686,"created_at":"Sat May 16 10:38:15 +0000 2015","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603815871270662144\/jK84PmpI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603815871270662144\/jK84PmpI.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607744790902358016\/kQ5U6Jvr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607744790902358016\/kQ5U6Jvr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3197321977\/1431773823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nupi_com","name":"\u306c\u3074\u5b50","id":3197321977,"id_str":"3197321977","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992662"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008171520,"id_str":"663727712008171520","text":"El cuerpo grita cuando la b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305018723,"id_str":"305018723","name":"Amadai Espejo","screen_name":"Amadalovemy","location":"Tampico, Tamaulipas","url":"https:\/\/instagram.com","description":"LOCA ENAMORADA A LA VISTA \u2764\ufe0f","protected":false,"verified":false,"followers_count":551,"friends_count":1572,"listed_count":9,"favourites_count":805,"statuses_count":15022,"created_at":"Wed May 25 14:12:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661918950263930880\/F8MV4aaF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661918950263930880\/F8MV4aaF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305018723\/1446899626","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"364fff9bd33e4c8d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/364fff9bd33e4c8d.json","place_type":"city","name":"Ciudad Madero","full_name":"Ciudad Madero, Tamaulipas","country_code":"MX","country":"M\u00e9xico","bounding_box":{"type":"Polygon","coordinates":[[[-97.860130,22.237664],[-97.860130,22.328388],[-97.784943,22.328388],[-97.784943,22.237664]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712003985408,"id_str":"663727712003985408","text":"@sohuliaringu \u3080\u3080\u2026\/\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727593602940928,"in_reply_to_status_id_str":"663727593602940928","in_reply_to_user_id":2414056212,"in_reply_to_user_id_str":"2414056212","in_reply_to_screen_name":"sohuliaringu","user":{"id":2969657310,"id_str":"2969657310","name":"\u9999\u98a8\u667a\u4e43@\u30c1\u30fc","screen_name":"tino_gotiusa_","location":"\u30e9\u30d3\u30c3\u30c8\u30cf\u30a6\u30b9","url":null,"description":"\u3054\u6ce8\u6587\u306f\u3046\u3055\u304e\u3067\u3059\u304b?\u3088\u308a\u30c1\u30ce\u3067\u3059\u2026\u30e9\u30d3\u30c3\u30c8\u30cf\u30a6\u30b9\u3068\u3044\u3046\u55ab\u8336\u5e97\u3067\u50cd\u3044\u3066\u3044\u307e\u3059\u3002\u5c06\u6765\u306f\u304a\u3058\u3044\u3061\u3083\u3093\u306e\u3088\u3046\u306a\u7acb\u6d3e\u306a\u30d0\u30ea\u30b9\u30bf\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u3002 \u300c\u3054\u6ce8\u6587\u306f\u3046\u3055\u304e\u3067\u3059\u304b\uff1f\uff1f\u300d\u653e\u9001\u958b\u59cb\u3057\u307e\u3057\u305f\u3002\u826f\u3051\u308c\u3070\u898b\u3066\u8cb0\u3048\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\u2026\u3053\u308c\u306f\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u30a2\u30ab\u30a6\u30f3\u30c8\u3068\u3044\u3046\u3082\u306e\u3067\u3059\u306e\u3067\u3001\u82e6\u624b\u306a\u65b9\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":192,"friends_count":163,"listed_count":8,"favourites_count":170,"statuses_count":3329,"created_at":"Fri Jan 09 16:16:46 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653224849205161984\/I4Oe4NPO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653224849205161984\/I4Oe4NPO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2969657310\/1444575915","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sohuliaringu","name":"\u4e03\u5bae\u667a\u97f3","id":2414056212,"id_str":"2414056212","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992663"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987220480,"id_str":"663727711987220480","text":"I'm so tired. I keep dozing off. \ud83d\ude34","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":365135106,"id_str":"365135106","name":"Tasha ","screen_name":"WaxYoMustacheHo","location":"Somewhere curving a fuck Nigga","url":"http:\/\/www.bitchdieslow.com","description":"If you have problems with profanity or sarcasm I advise you not to follow. If your Avi is of a little dick I WILL BLOCK YOU!! Certified #DickCritic","protected":false,"verified":false,"followers_count":132030,"friends_count":109238,"listed_count":297,"favourites_count":563,"statuses_count":98802,"created_at":"Tue Aug 30 22:38:15 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588748832495837184\/Fl6-pyg-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588748832495837184\/Fl6-pyg-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/365135106\/1397517819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711991431168,"id_str":"663727711991431168","text":"@Jgguevarra18 @clarysssanjuan MAY TEST BA?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726762346475520,"in_reply_to_status_id_str":"663726762346475520","in_reply_to_user_id":3032881202,"in_reply_to_user_id_str":"3032881202","in_reply_to_screen_name":"Jgguevarra18","user":{"id":1014323546,"id_str":"1014323546","name":"Feiree Dane","screen_name":"feireedce_","location":null,"url":"http:\/\/instagram.com\/feireedane","description":null,"protected":false,"verified":false,"followers_count":357,"friends_count":254,"listed_count":0,"favourites_count":7451,"statuses_count":15069,"created_at":"Sun Dec 16 02:23:45 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662944390030077952\/2Gt4RlPE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662944390030077952\/2Gt4RlPE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1014323546\/1445694312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jgguevarra18","name":"Gab","id":3032881202,"id_str":"3032881202","indices":[0,13]},{"screen_name":"clarysssanjuan","name":"Claryss Montefalco","id":1463853170,"id_str":"1463853170","indices":[14,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992660"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995621380,"id_str":"663727711995621380","text":"@hanadi_nikota \n\u4eca\u306f\u75c5\u6c17\u3067\u3042\u3093\u307e\u98df\u3079\u3061\u3083\u3044\u3051\u306a\u3044\u3093\u3060\u3051\u3069\u666e\u6bb5\u306f\u304a\u306f\u306a\u3062\u69d8\u3088\u308a\u98df\u3079\u3066\u308b\u306f\u305a\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727307740180480,"in_reply_to_status_id_str":"663727307740180480","in_reply_to_user_id":2901564392,"in_reply_to_user_id_str":"2901564392","in_reply_to_screen_name":"hanadi_nikota","user":{"id":2855677598,"id_str":"2855677598","name":"\u3059\u3053\u3066\u308d@JK\u88cf\u57a2","screen_name":"rg01290097","location":"\u3046\u3093\u3053\u3076\u308a\u3085\u308a\u3085\u3093\u30d6\u30ea\u30e5\u30f3\u30d2\u30eb\u30c7","url":null,"description":"\u597d\u304d\u52dd\u624b\u545f\u304d\u307e\u3059\u3002\u305f\u307e\u306b\u6bd2\u3092\u5410\u304d\u307e\u3059\u3002\u305d\u306e\u969b\u306f\u3054\u6307\u6458\u5f85\u3063\u3066\u307e\u3059\u3002\u767d\u732b RANK151 \u5341\u6bb5","protected":false,"verified":false,"followers_count":357,"friends_count":348,"listed_count":15,"favourites_count":3914,"statuses_count":2742,"created_at":"Tue Oct 14 15:09:19 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727423033225217\/C002r88X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727423033225217\/C002r88X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2855677598\/1443135874","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hanadi_nikota","name":"\u9f3b\u8840\u3061\u3083\u3093","id":2901564392,"id_str":"2901564392","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711999823872,"id_str":"663727711999823872","text":"@bimmerella @DonovanGwinn @imfabulous13 thats about the size of it","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662013641688940545,"in_reply_to_status_id_str":"662013641688940545","in_reply_to_user_id":41984111,"in_reply_to_user_id_str":"41984111","in_reply_to_screen_name":"bimmerella","user":{"id":2855013877,"id_str":"2855013877","name":"steven wood","screen_name":"wood100stwa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":81,"friends_count":29,"listed_count":0,"favourites_count":1827,"statuses_count":2885,"created_at":"Tue Oct 14 01:02:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633001313031225345\/RcaWttaP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633001313031225345\/RcaWttaP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2855013877\/1438694435","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e8ad2641c1cb666c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e8ad2641c1cb666c.json","place_type":"admin","name":"Arkansas","full_name":"Arkansas, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-94.617710,33.004106],[-94.617710,36.499767],[-89.644838,36.499767],[-89.644838,33.004106]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bimmerella","name":"Bimmerella","id":41984111,"id_str":"41984111","indices":[0,11]},{"screen_name":"DonovanGwinn","name":"(OED) Donovan Gwinn","id":1070969370,"id_str":"1070969370","indices":[12,25]},{"screen_name":"imfabulous13","name":"imfabulous","id":461720060,"id_str":"461720060","indices":[26,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992662"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711982981120,"id_str":"663727711982981120","text":"RT @PRAYINGFORHEAD: https:\/\/t.co\/dptWQqhMM4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721423477,"id_str":"721423477","name":"Sabrina's Boyfriend","screen_name":"_Vntichrist","location":"36 Chambers with Sabrina","url":null,"description":"#Hollowsquad \u262f DOOM Is For The Children \u262f","protected":false,"verified":false,"followers_count":600,"friends_count":394,"listed_count":6,"favourites_count":21523,"statuses_count":36187,"created_at":"Sat Jul 28 03:43:33 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440683105104310274\/QwzxcSVy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440683105104310274\/QwzxcSVy.jpeg","profile_background_tile":true,"profile_link_color":"0823CF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660701614206922752\/CGC6ewgf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660701614206922752\/CGC6ewgf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721423477\/1447074188","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:10:01 +0000 2015","id":663584304266502145,"id_str":"663584304266502145","text":"https:\/\/t.co\/dptWQqhMM4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1889198071,"id_str":"1889198071","name":"BASED JE$U$","screen_name":"PRAYINGFORHEAD","location":"California, USA","url":"http:\/\/instagr.am\/sorta","description":"snapchat - @guilt","protected":false,"verified":false,"followers_count":195087,"friends_count":95438,"listed_count":597,"favourites_count":194895,"statuses_count":36101,"created_at":"Sat Sep 21 06:44:36 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000168456942\/LzzEIJAo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000168456942\/LzzEIJAo.jpeg","profile_background_tile":false,"profile_link_color":"333133","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663018757170696192\/g2r-gnyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663018757170696192\/g2r-gnyv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1889198071\/1444784130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1071,"favorite_count":1945,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663584279914397696,"id_str":"663584279914397696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","url":"https:\/\/t.co\/dptWQqhMM4","display_url":"pic.twitter.com\/dptWQqhMM4","expanded_url":"http:\/\/twitter.com\/PRAYINGFORHEAD\/status\/663584304266502145\/photo\/1","type":"photo","sizes":{"large":{"w":1002,"h":984,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663584279914397696,"id_str":"663584279914397696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","url":"https:\/\/t.co\/dptWQqhMM4","display_url":"pic.twitter.com\/dptWQqhMM4","expanded_url":"http:\/\/twitter.com\/PRAYINGFORHEAD\/status\/663584304266502145\/photo\/1","type":"photo","sizes":{"large":{"w":1002,"h":984,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PRAYINGFORHEAD","name":"BASED JE$U$","id":1889198071,"id_str":"1889198071","indices":[3,18]}],"symbols":[],"media":[{"id":663584279914397696,"id_str":"663584279914397696","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","url":"https:\/\/t.co\/dptWQqhMM4","display_url":"pic.twitter.com\/dptWQqhMM4","expanded_url":"http:\/\/twitter.com\/PRAYINGFORHEAD\/status\/663584304266502145\/photo\/1","type":"photo","sizes":{"large":{"w":1002,"h":984,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"}},"source_status_id":663584304266502145,"source_status_id_str":"663584304266502145","source_user_id":1889198071,"source_user_id_str":"1889198071"}]},"extended_entities":{"media":[{"id":663584279914397696,"id_str":"663584279914397696","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWGYwLUwAAWZ1L.jpg","url":"https:\/\/t.co\/dptWQqhMM4","display_url":"pic.twitter.com\/dptWQqhMM4","expanded_url":"http:\/\/twitter.com\/PRAYINGFORHEAD\/status\/663584304266502145\/photo\/1","type":"photo","sizes":{"large":{"w":1002,"h":984,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"}},"source_status_id":663584304266502145,"source_status_id_str":"663584304266502145","source_user_id":1889198071,"source_user_id_str":"1889198071"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079992658"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008208385,"id_str":"663727712008208385","text":"RT @zukazuka_info: \u548c\u97f3\u7f8e\u685c\u3055\u3093\u300e\u4e00\u591c\u5bdd\u304b\u305b\u3066\u3001\u3001\u3001\u300f\nhttps:\/\/t.co\/GoVM4NV976 https:\/\/t.co\/EnLJe1YuRA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112127797,"id_str":"112127797","name":"\u2661chimaki\u00ab\ub098\uc624\ucf54\u00bb\u2661","screen_name":"chimakidesu","location":"\u6771\u4eac\u90fd","url":"http:\/\/ameblo.jp\/chimakidesuyo","description":"\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u30fb\u6f14\u5287\u30fb\u97d3\u30c9\u30e9\u5927\u597d\u304d\u266a \ucc28\uc2b9\uc6d0\u30fb\uc5c4\uae30\uc900\u30fb\ubbfc\uc601\uae30\u30fb\uc591\uc900\ubaa8\u30fb\ubc15\uc740\ud0dc\u30fb\uc720\uc900\uc0c1\u30fb\ud55c\uc9c0\uc0c1\u30fb\u4e95\u4e0a\u82b3\u96c4\u30fb\u6210\u6cb3 \u2661\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\uff20\u3092\u304a\u9858\u3044\u3057\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":504,"friends_count":812,"listed_count":11,"favourites_count":6850,"statuses_count":46739,"created_at":"Sun Feb 07 10:14:00 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524192228592201728\/gnoFVqA0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524192228592201728\/gnoFVqA0.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643449799849570304\/RPs0TZPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643449799849570304\/RPs0TZPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112127797\/1443585257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:05 +0000 2015","id":663719210246258689,"id_str":"663719210246258689","text":"\u548c\u97f3\u7f8e\u685c\u3055\u3093\u300e\u4e00\u591c\u5bdd\u304b\u305b\u3066\u3001\u3001\u3001\u300f\nhttps:\/\/t.co\/GoVM4NV976 https:\/\/t.co\/EnLJe1YuRA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1857288660,"id_str":"1857288660","name":"\u30bf\u30ab\u30e9\u30c5\u30ab\u6b4c\u5287\u30dd\u30fc\u30bf\u30eb","screen_name":"zukazuka_info","location":null,"url":"http:\/\/buff.ly\/1bW8UZ7","description":"\u5b9d\u585a\uff08\u82b1\u7d44\u3001\u6708\u7d44\u3001\u96ea\u7d44\u3001\u661f\u7d44\u3001\u5b99\u7d44\uff09\u306b\u95a2\u3059\u308b\u6700\u65b0\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002#\u5b9d\u585a\u6b4c\u5287 #Takarazuka","protected":false,"verified":false,"followers_count":19609,"friends_count":4,"listed_count":154,"favourites_count":0,"statuses_count":6593,"created_at":"Thu Sep 12 12:49:53 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457777040259706881\/KMlf20ox_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457777040259706881\/KMlf20ox_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1857288660\/1441529574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GoVM4NV976","expanded_url":"http:\/\/amba.to\/1NZdcgX","display_url":"amba.to\/1NZdcgX","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663719208463679488,"id_str":"663719208463679488","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","url":"https:\/\/t.co\/EnLJe1YuRA","display_url":"pic.twitter.com\/EnLJe1YuRA","expanded_url":"http:\/\/twitter.com\/zukazuka_info\/status\/663719210246258689\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":877,"resize":"fit"},"medium":{"w":600,"h":657,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719208463679488,"id_str":"663719208463679488","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","url":"https:\/\/t.co\/EnLJe1YuRA","display_url":"pic.twitter.com\/EnLJe1YuRA","expanded_url":"http:\/\/twitter.com\/zukazuka_info\/status\/663719210246258689\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":877,"resize":"fit"},"medium":{"w":600,"h":657,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GoVM4NV976","expanded_url":"http:\/\/amba.to\/1NZdcgX","display_url":"amba.to\/1NZdcgX","indices":[37,60]}],"user_mentions":[{"screen_name":"zukazuka_info","name":"\u30bf\u30ab\u30e9\u30c5\u30ab\u6b4c\u5287\u30dd\u30fc\u30bf\u30eb","id":1857288660,"id_str":"1857288660","indices":[3,17]}],"symbols":[],"media":[{"id":663719208463679488,"id_str":"663719208463679488","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","url":"https:\/\/t.co\/EnLJe1YuRA","display_url":"pic.twitter.com\/EnLJe1YuRA","expanded_url":"http:\/\/twitter.com\/zukazuka_info\/status\/663719210246258689\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":877,"resize":"fit"},"medium":{"w":600,"h":657,"resize":"fit"}},"source_status_id":663719210246258689,"source_status_id_str":"663719210246258689","source_user_id":1857288660,"source_user_id_str":"1857288660"}]},"extended_entities":{"media":[{"id":663719208463679488,"id_str":"663719208463679488","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBGoMUwAAHlMK.jpg","url":"https:\/\/t.co\/EnLJe1YuRA","display_url":"pic.twitter.com\/EnLJe1YuRA","expanded_url":"http:\/\/twitter.com\/zukazuka_info\/status\/663719210246258689\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":877,"resize":"fit"},"medium":{"w":600,"h":657,"resize":"fit"}},"source_status_id":663719210246258689,"source_status_id_str":"663719210246258689","source_user_id":1857288660,"source_user_id_str":"1857288660"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978827776,"id_str":"663727711978827776","text":"@bernicearreola kaka-Christmas shopping mo lang e! \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709436511256576,"in_reply_to_status_id_str":"663709436511256576","in_reply_to_user_id":38946647,"in_reply_to_user_id_str":"38946647","in_reply_to_screen_name":"bernicearreola","user":{"id":3421714518,"id_str":"3421714518","name":"Rejoice Marcelino \u2728","screen_name":"rjcmrcln","location":"PH","url":"http:\/\/Instagram.com\/rjcmrcln","description":"Those who walk with God will always reach their destination. || GC \u2764\ufe0f || snapchat: rjcmrcln","protected":false,"verified":false,"followers_count":340,"friends_count":402,"listed_count":3,"favourites_count":5978,"statuses_count":8096,"created_at":"Wed Sep 02 03:50:43 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663555291074576384\/Gri7FmyY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663555291074576384\/Gri7FmyY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3421714518\/1446787332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bernicearreola","name":"B","id":38946647,"id_str":"38946647","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711983013888,"id_str":"663727711983013888","text":"\uc774\uce58\uc96c\uc2dc \uc548\uc790?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3043733910,"id_str":"3043733910","name":"\ubbfc\uc9c0\uc740","screen_name":"Minjieun00","location":"\uc544\uc9c1\ub3c4 \uc0ac\ub791\ud574","url":null,"description":"\ud0d0\uc815\uc774\uba74\uc11c \uac8c\uc784\ub3c4 \ud574\uc694.\n\uac8c\ub9ac\ubaa8\ub4dc\ub97c \uc8fc\ub85c \ud574\uc694.\n\ubcf8\uc9c4\uc740 \ucf54\ub09c\uc774\uc9c0\ub9cc \uac00\ub054 \uc624\uc18c\ub9c8\uce20\uc0c1\ub3c4 \ubd10\uc694.\n\uc120\ud314 \ud658\uc601\uc774\uad6c\uc694 \uba58\uc158\uc8fc\uc2dc\uba74 \ub9de\ud314 \ud574\ub4dc\ub824\uc694.\n\uac8c\uc784 \uc7ac\ubc0c\uc5b4\uc694. \ucd5c\uc560\ub294 \uc544\uce74\uc774 \uc288\uc774\uce58 \ub78d\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":26,"friends_count":78,"listed_count":0,"favourites_count":131,"statuses_count":7407,"created_at":"Thu Feb 26 14:58:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579306280407285760\/8m9FNJtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579306280407285760\/8m9FNJtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3043733910\/1442151235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079992658"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995711488,"id_str":"663727711995711488","text":"\u0634\u0639\u0640\u0648\u0631 \u062c\u0645\u064a\u0640\u0644 \u0644\u0645\u0640\u0627 \u062a\u0634\u0640\u0648\u0641 \u0627\u0644\u0646\u0640\u062f\u0645 \u0628\u0639\u064a\u0640\u0648\u0646 \u0634\u062e\u0640\u0635 \u062e\u0633\u0640\u0631\u0643.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911233673,"id_str":"2911233673","name":"\u0647\u0644\u0627\u0644\u064a\u0647 20","screen_name":"waseem_zx","location":null,"url":null,"description":"\u0644\u0640 \u0641\u0642\u0640\u064a\u062f\u064a \u0627\u0644\u0628\u0639\u064a\u062f \u062c\u0640\u062f\u064b\u0627 \u0648\u0627\u0644\u0640\u0630\u064a \u0644\u0646 \u064a\u0639\u0648\u062f \u0623\u0628\u062f\u0627:\u064b\u0637\u0628\u062a \u0641\u0640\u064a \u062c\u0646\u0629 \u0627\u0644\u0631\u062d\u0645\u0646 \u0646\u0639\u064a\u0640\u0645\u064b\u0627 .","protected":false,"verified":false,"followers_count":44,"friends_count":28,"listed_count":0,"favourites_count":41,"statuses_count":3887,"created_at":"Wed Nov 26 20:52:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661465589412732929\/klWqtQP5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661465589412732929\/klWqtQP5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911233673\/1446540659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711991369728,"id_str":"663727711991369728","text":"RT @MHX_CAPCOM: \u30cf\u30f3\u30bf\u30fc\u3055\u3093\uff01\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u306e\u300c\u3042\u3089\u304b\u3058\u3081\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u300d\u304c\u3001\u306a\u3093\u3068\u4eca\u65e5\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3067\u3059\u3002\u8a73\u7d30\u306f\u3053\u3061\u3089\u3067\u3059\uff5e\uff01https:\/\/t.co\/6S1swWPGGT https:\/\/t.co\/CUd5yIuOoV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93856621,"id_str":"93856621","name":"\u304f\u3089\u3052","screen_name":"310431043104","location":"\u6c34\u69fd","url":null,"description":"\u4e0b\u30cd\u30bf\u306f\u30ce\u30fc\u30b5\u30f3\u30ad\u30e5\u30fc","protected":false,"verified":false,"followers_count":87,"friends_count":133,"listed_count":2,"favourites_count":737,"statuses_count":79241,"created_at":"Tue Dec 01 13:13:53 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504436558573748224\/vaGAVyBj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504436558573748224\/vaGAVyBj.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3485606065\/e6d3acb55f134858a40f778c61b46af9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3485606065\/e6d3acb55f134858a40f778c61b46af9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93856621\/1431241853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:11 +0000 2015","id":663720491652288512,"id_str":"663720491652288512","text":"\u30cf\u30f3\u30bf\u30fc\u3055\u3093\uff01\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u306e\u300c\u3042\u3089\u304b\u3058\u3081\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u300d\u304c\u3001\u306a\u3093\u3068\u4eca\u65e5\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u3067\u3059\u3002\u8a73\u7d30\u306f\u3053\u3061\u3089\u3067\u3059\uff5e\uff01https:\/\/t.co\/6S1swWPGGT https:\/\/t.co\/CUd5yIuOoV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818513720,"id_str":"818513720","name":"MHX Official","screen_name":"MHX_CAPCOM","location":null,"url":"http:\/\/www.capcom.co.jp\/monsterhunter\/X\/","description":"2015\u5e7411\u670828\u65e5\uff08\u571f\uff09\u767a\u58f2\u4e88\u5b9a\u300e\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u300f\u306e\u516c\u5f0fTwitter\u3067\u3059\u3002\u308f\u305f\u3057\u3001\u30ab\u30c6\u30a3\u304c\u6700\u65b0\u30b2\u30fc\u30e0\u60c5\u5831\u3084\u30a4\u30d9\u30f3\u30c8\u3001\u30b3\u30e9\u30dc\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u3066\u3044\u304d\u307e\u3059\uff01\u30cf\u30f3\u30bf\u30fc\u3055\u3093\u3001\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":98726,"friends_count":4,"listed_count":1508,"favourites_count":0,"statuses_count":826,"created_at":"Wed Sep 12 00:43:20 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9A71F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":336,"favorite_count":111,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6S1swWPGGT","expanded_url":"http:\/\/bit.ly\/1NmstW9","display_url":"bit.ly\/1NmstW9","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663720490083586048,"id_str":"663720490083586048","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","url":"https:\/\/t.co\/CUd5yIuOoV","display_url":"pic.twitter.com\/CUd5yIuOoV","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663720491652288512\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663720490083586048,"id_str":"663720490083586048","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","url":"https:\/\/t.co\/CUd5yIuOoV","display_url":"pic.twitter.com\/CUd5yIuOoV","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663720491652288512\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6S1swWPGGT","expanded_url":"http:\/\/bit.ly\/1NmstW9","display_url":"bit.ly\/1NmstW9","indices":[75,98]}],"user_mentions":[{"screen_name":"MHX_CAPCOM","name":"MHX Official","id":818513720,"id_str":"818513720","indices":[3,14]}],"symbols":[],"media":[{"id":663720490083586048,"id_str":"663720490083586048","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","url":"https:\/\/t.co\/CUd5yIuOoV","display_url":"pic.twitter.com\/CUd5yIuOoV","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663720491652288512\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663720491652288512,"source_status_id_str":"663720491652288512","source_user_id":818513720,"source_user_id_str":"818513720"}]},"extended_entities":{"media":[{"id":663720490083586048,"id_str":"663720490083586048","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCROmUkAA-soB.jpg","url":"https:\/\/t.co\/CUd5yIuOoV","display_url":"pic.twitter.com\/CUd5yIuOoV","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663720491652288512\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663720491652288512,"source_status_id_str":"663720491652288512","source_user_id":818513720,"source_user_id_str":"818513720"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992660"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987200000,"id_str":"663727711987200000","text":"@miichan_aMnos \n\n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\ud83d\ude2d\ud83d\ude2d\ud83d\udc95\n\u305f\u304f\u3055\u3093\u7d61\u307f\u307e\u3057\u3087\uff08\u2267\u2207\u2266\uff09\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698615341191168,"in_reply_to_status_id_str":"663698615341191168","in_reply_to_user_id":3559524438,"in_reply_to_user_id_str":"3559524438","in_reply_to_screen_name":"miichan_aMnos","user":{"id":3222004418,"id_str":"3222004418","name":"\u2765\u2765 \u308a\u3043\uff08\u3081\u308d\uff09","screen_name":"rinaxx_me","location":"\u81ea\u79f0\u30c7\u30d3\u30eb\u4e8c\u5bae\u306e\u59b9","url":null,"description":"# JK2 # 16age \u25b7\u25b7 ars \u2764 Kazunari \uff08all\uff09\u25c1\u25c1 \u5c0f\u60aa\u9b54\u7cfb\u304c\u30fc\u308b","protected":false,"verified":false,"followers_count":145,"friends_count":81,"listed_count":3,"favourites_count":13,"statuses_count":776,"created_at":"Thu May 21 05:51:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662282006647074816\/5ZToH2vQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662282006647074816\/5ZToH2vQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222004418\/1439820477","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miichan_aMnos","name":"\u307f\u3043\u3061\u3083\u3093\u22c8\u2765 \u2765 \u2765\u300a\u4f4e\u6d6e\u4e0a\u300b","id":3559524438,"id_str":"3559524438","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978782720,"id_str":"663727711978782720","text":"\u30ec\u30dd\u30fc\u30c8\u304a\u308f\u3089\u30931\u756a\u7c21\u5358\u305d\u3046\u306a\u3084\u3064\u306a\u306e\u306b...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3814804220,"id_str":"3814804220","name":"\u306f\u308bdayo!","screen_name":"Chlolonlon","location":"hahihuheho( \u02d8\u03c9\u02d8 ) ","url":"http:\/\/twpf.jp\/Chlolonlon","description":"\u904a\u6728\u771f\u306e\u8ffd\u3063\u639b\u3051 \u30d8\u30c3\u30c0\u30fc\u63d0\u4f9b\u8005\u3057\u3083\u304a\u306a\u3055\u3093@syaona__ \u65e5\u5e38\u57a2","protected":false,"verified":false,"followers_count":74,"friends_count":81,"listed_count":4,"favourites_count":567,"statuses_count":1220,"created_at":"Wed Oct 07 13:48:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662050052135776256\/lGKCq9Og_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662050052135776256\/lGKCq9Og_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3814804220\/1444238777","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987240960,"id_str":"663727711987240960","text":"\uc77c\uc5b4\ub0ac\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3728333652,"id_str":"3728333652","name":"Electria","screen_name":"Elecss27","location":null,"url":null,"description":"\ubed8\uc18c\ub9ac \ub9ce\uc774 \ud558\ub294 \uc789\uc5ec\/'\ud2b8\ub9ac\uc544'\ub77c\uace0 \ubd88\ub7ec\uc8fc\uc138\uc5ec\u00d7\u3145\u00d7","protected":false,"verified":false,"followers_count":19,"friends_count":35,"listed_count":1,"favourites_count":88,"statuses_count":1972,"created_at":"Tue Sep 29 18:21:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648934063315644416\/Zuxk5eeK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648934063315644416\/Zuxk5eeK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3728333652\/1443931774","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079992659"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712012406784,"id_str":"663727712012406784","text":"@lustrekriza yes !!! Hahahahahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727508127256576,"in_reply_to_status_id_str":"663727508127256576","in_reply_to_user_id":3185367415,"in_reply_to_user_id_str":"3185367415","in_reply_to_screen_name":"lustrekriza","user":{"id":204281080,"id_str":"204281080","name":"Yev Dalman","screen_name":"yevdalman","location":null,"url":"http:\/\/Instagram.com\/yevdalman","description":"snapchat: yevdalman","protected":false,"verified":false,"followers_count":552,"friends_count":184,"listed_count":4,"favourites_count":5559,"statuses_count":17153,"created_at":"Mon Oct 18 10:46:27 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663002691379965952\/VAYuiGxb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663002691379965952\/VAYuiGxb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204281080\/1446481135","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lustrekriza","name":"K \u2728","id":3185367415,"id_str":"3185367415","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079992665"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711991435265,"id_str":"663727711991435265","text":"What does an Instructional Designer do? https:\/\/t.co\/a5asGv5VLx","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818795179,"id_str":"818795179","name":"hrd forum","screen_name":"hrdforumcenter","location":"bintaro sektor 3A","url":"http:\/\/www.HRD-Forum.com","description":"HRD Forum katalisator peningkatan kualitas HR dan SDM Indonesia","protected":false,"verified":false,"followers_count":4797,"friends_count":480,"listed_count":2,"favourites_count":0,"statuses_count":1363,"created_at":"Wed Sep 12 04:02:23 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ED13CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/664374477\/4aeed80fcd95c32f4c4abb6cdbb2f999.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/664374477\/4aeed80fcd95c32f4c4abb6cdbb2f999.jpeg","profile_background_tile":true,"profile_link_color":"B3007A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2601421202\/homepage_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2601421202\/homepage_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/818795179\/1405430917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a5asGv5VLx","expanded_url":"http:\/\/fb.me\/2exrHHkPD","display_url":"fb.me\/2exrHHkPD","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992660"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712003993609,"id_str":"663727712003993609","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/8TSHeq8yNk","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2387883231,"id_str":"2387883231","name":"pongs.","screen_name":"Yzzawilliamson_","location":"pamp.ph","url":null,"description":"loves to sleep | she's annoying but i love her so much | pey's","protected":false,"verified":false,"followers_count":639,"friends_count":487,"listed_count":2,"favourites_count":9391,"statuses_count":12027,"created_at":"Thu Mar 06 09:11:09 +0000 2014","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533253325454446593\/GwT5ez0T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533253325454446593\/GwT5ez0T.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662880090489884672\/5ISbjvMy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662880090489884672\/5ISbjvMy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2387883231\/1446907930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8TSHeq8yNk","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992663"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711991410688,"id_str":"663727711991410688","text":"RT @MSK_mariannu: #11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00\n\n\u3084\u308b\u3088\u3002RT\u5f85\u3063\u3066\u308b\u3088\u3002\n\u7d61\u307f\u306a\u3044\u4eba\u3068\u304b\u7279\u306b\u30ab\u30e2\u30f3\u270b https:\/\/t.co\/nRfLriJUm5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830080343,"id_str":"2830080343","name":"\u3058\u3085\u308a\u30c8\u30ed \u30e9\u30d6\u9b54","screen_name":"1011Juria","location":"\u5922\u306b\u307f\u305f\u5922\u53f6\u3046\u307e\u3067\u2604","url":"http:\/\/twpf.jp\/1011Juria","description":"\u5171\u540c\u30a2\u30ab\u30a6\u30f3\u30c8\uff3b@Sion_Juria \uff3d\u2193\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3063\u203c","protected":false,"verified":false,"followers_count":2181,"friends_count":2182,"listed_count":19,"favourites_count":19477,"statuses_count":10820,"created_at":"Wed Sep 24 15:13:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655025485118750720\/Ts5LA9Um_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655025485118750720\/Ts5LA9Um_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830080343\/1446946645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 08:19:33 +0000 2015","id":662182448764026880,"id_str":"662182448764026880","text":"#11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00\n\n\u3084\u308b\u3088\u3002RT\u5f85\u3063\u3066\u308b\u3088\u3002\n\u7d61\u307f\u306a\u3044\u4eba\u3068\u304b\u7279\u306b\u30ab\u30e2\u30f3\u270b https:\/\/t.co\/nRfLriJUm5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790515314,"id_str":"2790515314","name":"\u307e \u308a \u3042 \u3093 \u306c \u2661\u0337 \u2661\u0337","screen_name":"MSK_mariannu","location":"\u7d61\u3082\u3046\u8a50\u6b3a\u30fb\u30ea\u30d7\u8e74\u308a\u5e38\u7fd2\u72af","url":null,"description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u5acc\u3044\u3067\u3059( \u0941 \u203a\u03c9\u2039 ) \u0941\u2661","protected":false,"verified":false,"followers_count":728,"friends_count":393,"listed_count":15,"favourites_count":6257,"statuses_count":8923,"created_at":"Mon Sep 29 02:22:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602110513888133121\/dvoOMEhK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602110513888133121\/dvoOMEhK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790515314\/1439540115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":1,"entities":{"hashtags":[{"text":"11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662182439729520640,"id_str":"662182439729520640","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","url":"https:\/\/t.co\/nRfLriJUm5","display_url":"pic.twitter.com\/nRfLriJUm5","expanded_url":"http:\/\/twitter.com\/MSK_mariannu\/status\/662182448764026880\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662182439729520640,"id_str":"662182439729520640","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","url":"https:\/\/t.co\/nRfLriJUm5","display_url":"pic.twitter.com\/nRfLriJUm5","expanded_url":"http:\/\/twitter.com\/MSK_mariannu\/status\/662182448764026880\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00","indices":[18,36]}],"urls":[],"user_mentions":[{"screen_name":"MSK_mariannu","name":"\u307e \u308a \u3042 \u3093 \u306c \u2661\u0337 \u2661\u0337","id":2790515314,"id_str":"2790515314","indices":[3,16]}],"symbols":[],"media":[{"id":662182439729520640,"id_str":"662182439729520640","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","url":"https:\/\/t.co\/nRfLriJUm5","display_url":"pic.twitter.com\/nRfLriJUm5","expanded_url":"http:\/\/twitter.com\/MSK_mariannu\/status\/662182448764026880\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":662182448764026880,"source_status_id_str":"662182448764026880","source_user_id":2790515314,"source_user_id_str":"2790515314"}]},"extended_entities":{"media":[{"id":662182439729520640,"id_str":"662182439729520640","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCLa6iUYAAeqkA.jpg","url":"https:\/\/t.co\/nRfLriJUm5","display_url":"pic.twitter.com\/nRfLriJUm5","expanded_url":"http:\/\/twitter.com\/MSK_mariannu\/status\/662182448764026880\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":662182448764026880,"source_status_id_str":"662182448764026880","source_user_id":2790515314,"source_user_id_str":"2790515314"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992660"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008142848,"id_str":"663727712008142848","text":"RT @NisaAjax: Did my best but as usual, I'm not good enough. Never going to understand people, never going to satisfy them either. Well, ad\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":833425087,"id_str":"833425087","name":"MATADOR","screen_name":"_BOOBY_","location":null,"url":null,"description":"AllahuAkbar, Alhamdulillah, Subhanallah, Astaghfirullah Al-Azim. Simple words, great meanings .. Ig:boobymalindo","protected":false,"verified":false,"followers_count":2524,"friends_count":1877,"listed_count":1,"favourites_count":3233,"statuses_count":58960,"created_at":"Wed Sep 19 14:14:43 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631424278315925504\/N6SUnTFZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631424278315925504\/N6SUnTFZ.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662278915956695040\/XXIFOSiX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662278915956695040\/XXIFOSiX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/833425087\/1441286921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:59:18 +0000 2015","id":663400414159593473,"id_str":"663400414159593473","text":"Did my best but as usual, I'm not good enough. Never going to understand people, never going to satisfy them either. Well, adios then.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2338239926,"id_str":"2338239926","name":"Sa","screen_name":"NisaAjax","location":"Mia ","url":null,"description":"19","protected":false,"verified":false,"followers_count":5830,"friends_count":611,"listed_count":2,"favourites_count":4616,"statuses_count":75198,"created_at":"Tue Feb 11 11:48:23 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433514840879931393\/5HzTmX8A.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433514840879931393\/5HzTmX8A.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654134288997158912\/CgvVoSO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654134288997158912\/CgvVoSO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2338239926\/1446791984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":201,"favorite_count":52,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NisaAjax","name":"Sa","id":2338239926,"id_str":"2338239926","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995584512,"id_str":"663727711995584512","text":"@DifYoi3OgP8ebYw @0915tisato \u98f2\u3081\u308b\u98f2\u3081\u308b\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727099987931136,"in_reply_to_status_id_str":"663727099987931136","in_reply_to_user_id":3112940588,"in_reply_to_user_id_str":"3112940588","in_reply_to_screen_name":"DifYoi3OgP8ebYw","user":{"id":2367042066,"id_str":"2367042066","name":"\u3084\u307e\u3046\u3061\u3086\u304b","screen_name":"yamayuka29121","location":"\u65e5\u672c","url":null,"description":"\u5de5\u82b8\u5efa\u7bc94 \u611b\u5de5\u59271dd","protected":false,"verified":false,"followers_count":419,"friends_count":499,"listed_count":1,"favourites_count":2718,"statuses_count":13569,"created_at":"Sat Mar 01 13:01:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659136343704887296\/0WP7ITag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659136343704887296\/0WP7ITag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2367042066\/1446556811","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DifYoi3OgP8ebYw","name":"\u308b\u308b\u308b","id":3112940588,"id_str":"3112940588","indices":[0,16]},{"screen_name":"0915tisato","name":"\u305b\u3093\u308a(\u03c3\u30fb\u2200\u30fb)\u03c3","id":1008619316,"id_str":"1008619316","indices":[17,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712012365825,"id_str":"663727712012365825","text":"@Im18Happy \ubc30\ubc30\ubba4\ube44\ub294 19\uc13c\ub370\uc694? \u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b 19\uae08 \ub531\uc9c0 \uac78\uace0 \ub098\uc628\uac70 \ub2e4 \uac78\uace0 \ub118\uc5b4\uc9c8 \ud310\u314b\u314b\u314b\u314b\u314b \uc65c snl\uc740 \ubb50\ub77c \uc548\ud558\uc138\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663564645433671681,"in_reply_to_status_id_str":"663564645433671681","in_reply_to_user_id":3106077091,"in_reply_to_user_id_str":"3106077091","in_reply_to_screen_name":"Im18Happy","user":{"id":707195269,"id_str":"707195269","name":"\uc644\uacfc\uc218\uc815","screen_name":"wani_wanwan","location":"\uc5d0\ud504\uc5d1\uc2a4 \ub808\ub4dc\ubca8\ubcb3","url":null,"description":"( Wendy of Redvelvet \/ \uc6ec\ub514 \/ \uc190\uc2b9\uc644 \/ 1994.02.21 )","protected":false,"verified":false,"followers_count":0,"friends_count":20,"listed_count":0,"favourites_count":21,"statuses_count":146,"created_at":"Fri Jul 20 14:04:36 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645621028572430336\/0I6W5coE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645621028572430336\/0I6W5coE_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Im18Happy","name":"\ud574\ud53c","id":3106077091,"id_str":"3106077091","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079992665"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016535552,"id_str":"663727712016535552","text":"\u3069\u3046\u3057\u3066\u3082\u4e88\u5b9a\u304c\u72c2\u3063\u3066\u3057\u307e\u3046\u3002\u30db\u30f3\u30c8\u3084\u3081\u3066\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723032843,"id_str":"2723032843","name":"\u3042\u3093\u3053\u308d\u3082\u3061","screen_name":"ako_030702","location":null,"url":null,"description":"\u30a8\u30ea\u30af\u30b5\u30fc\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":31,"friends_count":43,"listed_count":0,"favourites_count":14,"statuses_count":568,"created_at":"Mon Aug 11 03:00:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660683458478411776\/KPFx07ou_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660683458478411776\/KPFx07ou_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723032843\/1425571288","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711995629568,"id_str":"663727711995629568","text":"\u3010\u30de\u30a4\u30ea\u30b9\u30c8\u3011\u25c6\u541b\u8272\u306b\u67d3\u307e\u308b \u6b4c\u3063\u3066\u307f\u305f https:\/\/t.co\/sVcK1ghPRq #sm27552757","source":"\u003ca href=\"http:\/\/www.nicovideo.jp\/\" rel=\"nofollow\"\u003eniconico \u30cb\u30b3\u30ec\u30dd\u9023\u643a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1039154144,"id_str":"1039154144","name":"\u661f\u8f1d@\u30e1\u6d3b\u8a8c6\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f","screen_name":"sho_ki_77","location":"\u8cb4\u65b9\u306e\u5fc3\u306e\u7247\u9685","url":"http:\/\/nicovideo.jp\/mylist\/34366018","description":"\u98df\u3079\u308b\u3053\u3068\u3068\u6b4c\u3046\u3053\u3068\u304c\u5927\u597d\u304d\u3002 \u67d0\u30b5\u30a4\u30c8\u3067\u6b4c\u3063\u305f\u308a\u558b\u3063\u305f\u308a\u3002\u30ab\u30b2\u30d7\u30ed\u597d\u304d\u30ab\u30ce\u30ad\u30c9\u5ec3\u3002\u5fcd\u305f\u307e\u304b\u308f\u3044\u3044\u3002\u30b3\u30df\u30e5\u30b7\u30e7\u30fc\u3002\u8150\u3063\u3066\u308b\u300220\u2191\u3000\u30a2\u30a4\u30b3\u30f3\u2192\u305f\u304b\u96ea\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":114,"friends_count":172,"listed_count":5,"favourites_count":1720,"statuses_count":10160,"created_at":"Thu Dec 27 08:34:40 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3229753127\/26c59baa3bb1b8a64eea329f2a249197_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3229753127\/26c59baa3bb1b8a64eea329f2a249197_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1039154144\/1430748484","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm27552757","indices":[46,57]}],"urls":[{"url":"https:\/\/t.co\/sVcK1ghPRq","expanded_url":"http:\/\/nico.ms\/sm27552757","display_url":"nico.ms\/sm27552757","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992661"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712004014080,"id_str":"663727712004014080","text":"RT @iwachi_1213: #\u79c1\u3068LINE\u3057\u305f\u308a\u8cb6\u3057\u305f\u308a\u5b89\u5b9a\u306e\u4ef2\u306b\u306a\u308a\u305f\u3044\u3088\u3063\u3066\u4ebaRT \n\n \u8ab0\u3067\u3082\uff01\uff01\uff01\uff01\u304b\u3082\u3093\uff01\uff01\uff01\uff01\n \u3044\u306a\u304b\u3063\u305f\u3089\u5373\u6d88\u3057\u307e\u3059\uff57\uff57\uff57 https:\/\/t.co\/ospe8Tdk7P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3503270772,"id_str":"3503270772","name":"\u306a\u306a\u306a\uff3cNeW\uff0f","screen_name":"_giluv","location":"\u3068\u308a\u3042\u3048\u305a\u307b\u308d\u30fc\u3057\u3066\u307f\u305f\u3089\u2754\u2754\u306f \u3041 \u3068","url":null,"description":"\u307f\u3084\u3066\u3043\u304b\u53ef\u611b\u3059\u304e\u3066\u3064\u3089\u3072\u2600\ufe0f\u3048\u3001\u306a\u306b\uff1f\uff72\uff9c\uff8a\uff7c\u62c5\u3067\u3059\u3088( \uff3e\u03c9\uff3e \u4e09 \uff3e\u03c9\uff3e ) \u26be\ufe0f\u5ca9\u6a4b\u7384\u6a39\u751f\u8a95\u796d\u307e\u3067 \uff13 \uff17 \u65e5\u26be\ufe0f\u2764","protected":false,"verified":false,"followers_count":190,"friends_count":146,"listed_count":4,"favourites_count":68,"statuses_count":2474,"created_at":"Wed Sep 09 10:42:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641568232285966337\/kvKFmJDp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641568232285966337\/kvKFmJDp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3503270772\/1445336170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:16 +0000 2015","id":663724290143944705,"id_str":"663724290143944705","text":"#\u79c1\u3068LINE\u3057\u305f\u308a\u8cb6\u3057\u305f\u308a\u5b89\u5b9a\u306e\u4ef2\u306b\u306a\u308a\u305f\u3044\u3088\u3063\u3066\u4ebaRT \n\n \u8ab0\u3067\u3082\uff01\uff01\uff01\uff01\u304b\u3082\u3093\uff01\uff01\uff01\uff01\n \u3044\u306a\u304b\u3063\u305f\u3089\u5373\u6d88\u3057\u307e\u3059\uff57\uff57\uff57 https:\/\/t.co\/ospe8Tdk7P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315683486,"id_str":"3315683486","name":"\u25ce \u30a4 \u30ef \u30d0 \u30b7 \u306e \u3086 \u304d","screen_name":"iwachi_1213","location":"\u30bb\u30af\u30dc\u3001\u306a\u306b\u304d\u3093\u4fe1\u8005\u3067\u4f55\u304c\u60aa\u3044\u3002","url":null,"description":"\u261e \u5ca9\u6a4b\u306e\u3077\u308a\u3051\u3064\u3068MAGIC\u304c\u597d\u304d \u261e \u30a8\u30ed\u6a4b\u6700\u9ad8\u3067\u3059 \u261e \u9f3b\u307b\u3058\u3067\u3055\u3048\u53ef\u611b\u304f\u898b\u3048\u3066\u3057\u307e\u3046\u5ca9\u6a4b \u261e \u982d\u306e\u4e2d\u306f\u5e38\u306b\u5ca9\u6a4b\u3067\u3044\u3063\u3071\u3044 \u261e \u639b\u3051\u6301\u3061 \u677e\u5cf6\u8061 \u261e \u305f\u3060\u306e\uff77\uff81\uff76\uff9e\uff72 \u261e \u5f1f\u306b\u3057\u305f\u3044\u3088\u3001\u9053\u679d\u304f\u3093 \u261e \u306a\u306b\u304d\u3093\u306f\u6c38\u9060 \u261e \u30bb\u30af\u30dc\u4e0d\u8db3\u3060\u3001\u3053\u306e\u3084\u308d\u3046 \u261e \u4e43\u6728\u574246\u3082\u597d\u304d \u261e \u30df\u30cb\u30aa\u30f3\u3082\u597d\u304d \u261e \u7121\u8a00\uff8c\uff6b\uff9b\uff70 \u25ce","protected":false,"verified":false,"followers_count":239,"friends_count":236,"listed_count":0,"favourites_count":446,"statuses_count":1724,"created_at":"Sat Aug 15 05:49:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660711164452536320\/OlrK5X9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660711164452536320\/OlrK5X9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315683486\/1446727790","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[{"text":"\u79c1\u3068LINE\u3057\u305f\u308a\u8cb6\u3057\u305f\u308a\u5b89\u5b9a\u306e\u4ef2\u306b\u306a\u308a\u305f\u3044\u3088\u3063\u3066\u4ebaRT","indices":[0,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724287929413632,"id_str":"663724287929413632","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","url":"https:\/\/t.co\/ospe8Tdk7P","display_url":"pic.twitter.com\/ospe8Tdk7P","expanded_url":"http:\/\/twitter.com\/iwachi_1213\/status\/663724290143944705\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":480,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":345,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724287929413632,"id_str":"663724287929413632","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","url":"https:\/\/t.co\/ospe8Tdk7P","display_url":"pic.twitter.com\/ospe8Tdk7P","expanded_url":"http:\/\/twitter.com\/iwachi_1213\/status\/663724290143944705\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":480,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":345,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u79c1\u3068LINE\u3057\u305f\u308a\u8cb6\u3057\u305f\u308a\u5b89\u5b9a\u306e\u4ef2\u306b\u306a\u308a\u305f\u3044\u3088\u3063\u3066\u4ebaRT","indices":[17,46]}],"urls":[],"user_mentions":[{"screen_name":"iwachi_1213","name":"\u25ce \u30a4 \u30ef \u30d0 \u30b7 \u306e \u3086 \u304d","id":3315683486,"id_str":"3315683486","indices":[3,15]}],"symbols":[],"media":[{"id":663724287929413632,"id_str":"663724287929413632","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","url":"https:\/\/t.co\/ospe8Tdk7P","display_url":"pic.twitter.com\/ospe8Tdk7P","expanded_url":"http:\/\/twitter.com\/iwachi_1213\/status\/663724290143944705\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":480,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":345,"resize":"fit"}},"source_status_id":663724290143944705,"source_status_id_str":"663724290143944705","source_user_id":3315683486,"source_user_id_str":"3315683486"}]},"extended_entities":{"media":[{"id":663724287929413632,"id_str":"663724287929413632","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFuSrU8AAP0m-.jpg","url":"https:\/\/t.co\/ospe8Tdk7P","display_url":"pic.twitter.com\/ospe8Tdk7P","expanded_url":"http:\/\/twitter.com\/iwachi_1213\/status\/663724290143944705\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":480,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":345,"resize":"fit"}},"source_status_id":663724290143944705,"source_status_id_str":"663724290143944705","source_user_id":3315683486,"source_user_id_str":"3315683486"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992663"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712003993604,"id_str":"663727712003993604","text":"RT @FaktaPasanganku: Sebab laki tak reply mesej :\n\n1- borak dgn kawan\n2- main game\n3- tidur\n\nTakde curang. Kalau curang pon, dia akan reply\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243147833,"id_str":"243147833","name":"-","screen_name":"ninxqistinx","location":"ig: ninxqistinx","url":null,"description":"maybe i'm too busy being yours to fall for somebody new","protected":false,"verified":false,"followers_count":1621,"friends_count":734,"listed_count":2,"favourites_count":22657,"statuses_count":102227,"created_at":"Wed Jan 26 12:08:57 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662620376019529729\/zeqJnQVL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662620376019529729\/zeqJnQVL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243147833\/1446750499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 02:29:56 +0000 2015","id":658470585807187968,"id_str":"658470585807187968","text":"Sebab laki tak reply mesej :\n\n1- borak dgn kawan\n2- main game\n3- tidur\n\nTakde curang. Kalau curang pon, dia akan reply juga. Takut kantoi..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366910085,"id_str":"366910085","name":"FP | TWEET MALAYSIA","screen_name":"FaktaPasanganku","location":"Kemaman, Terengganu","url":null,"description":"#AsalKampung #AsalStalkNi #PAHANG\u26bd #Arsenal\u26bd #BayernM\u00fcnchen\u26bd #NamaBroAdi #BundleIsAwesome #EnglishTerabur #Photographer #Traveller #KopiOAis TRG \u2708 PHG \u2708 JHR","protected":false,"verified":false,"followers_count":68794,"friends_count":3530,"listed_count":47,"favourites_count":3759,"statuses_count":6613,"created_at":"Sat Sep 03 01:42:02 +0000 2011","utc_offset":28800,"time_zone":"Perth","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458558498192633856\/70zAA0se.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458558498192633856\/70zAA0se.jpeg","profile_background_tile":true,"profile_link_color":"7A7E99","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657622639616241664\/IyqDHJuK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657622639616241664\/IyqDHJuK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366910085\/1447073218","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3543,"favorite_count":1153,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FaktaPasanganku","name":"FP | TWEET MALAYSIA","id":366910085,"id_str":"366910085","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079992663"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978811392,"id_str":"663727711978811392","text":"RT @pparooxio99: \uc77c\ubcf8\uc874\uc798\ub2d8\ub4e4 \uc5f0\uc131 \uc77d\uc5b4\uc8fc\ub294\n\"\uc790\ub3d9\ud574\uc11d \ub80c\uc988\"~! https:\/\/t.co\/jHs2UFg16r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254777030,"id_str":"3254777030","name":"\ucc9c\uc0ac\ub2d8 \uc624\uc2e0 \uc81c\ub791\ub9c8\uce20","screen_name":"Harang_The_Love","location":"\ub9ac\ubc84\ud3ec\ub4dc","url":null,"description":"\uc0ac\uc774\ud37c\uc988, \uc624\uc18c\ub9c8\uce20\uc0c1 \ubcf8\uc9c4 \/ \uc7a1\ub355 \/ \uac8c\uc784 \/ \uc560\ub2c8 \/ \uc778\uc7a5 \ud788\uc580\ub2d8 \/\ud5e4\ub354 \uc9c4\ub9ac \/ \uc0ac\ud37c\ub2c9 - \ub108\ub97c\uc81c\uc555\ud558\ub791 \/ \ud074\ub79c \ubb58\ubd10\uaf3d\ub0d0\u314b ( \u2022\u0300 \u2207\u2022\u0301 )\u2727","protected":false,"verified":false,"followers_count":200,"friends_count":312,"listed_count":0,"favourites_count":362,"statuses_count":9571,"created_at":"Wed Jun 24 16:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663658500623470592\/DS8UZTRi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663658500623470592\/DS8UZTRi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254777030\/1445397409","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:11 +0000 2015","id":663726282723586048,"id_str":"663726282723586048","text":"\uc77c\ubcf8\uc874\uc798\ub2d8\ub4e4 \uc5f0\uc131 \uc77d\uc5b4\uc8fc\ub294\n\"\uc790\ub3d9\ud574\uc11d \ub80c\uc988\"~! https:\/\/t.co\/jHs2UFg16r","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2323147136,"id_str":"2323147136","name":"\u273f\ube68\ub8e8\u273f","screen_name":"pparooxio99","location":null,"url":"http:\/\/ask.fm\/yalroo","description":"FUB FREE\/ pparooxio99@naver.com \/ \u2661 \ucee4\ubbf8\uc158 - http:\/\/wkdlwldps87.wix.com\/pparooxio99 \/","protected":false,"verified":false,"followers_count":15815,"friends_count":332,"listed_count":95,"favourites_count":7131,"statuses_count":36395,"created_at":"Sun Feb 02 03:39:35 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628762824706142208\/l-ZHZU-f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628762824706142208\/l-ZHZU-f.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656503420979818496\/QX7yEaAL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656503420979818496\/QX7yEaAL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323147136\/1445358087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":302,"favorite_count":54,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pparooxio99","name":"\u273f\ube68\ub8e8\u273f","id":2323147136,"id_str":"2323147136","indices":[3,15]}],"symbols":[],"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}},"source_status_id":663726282723586048,"source_status_id_str":"663726282723586048","source_user_id":2323147136,"source_user_id_str":"2323147136"}]},"extended_entities":{"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}},"source_status_id":663726282723586048,"source_status_id_str":"663726282723586048","source_user_id":2323147136,"source_user_id_str":"2323147136"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016576512,"id_str":"663727712016576512","text":"\u96f7\u8535\u304a\u5144\u3055\u3093\u304c\u9262\u5c4b\u304f\u3093\u306b\u30cf\u30fc\u30d6\u30c6\u30a3\u30fc\u3092\u6df9\u308c\u308b\u2026\uff01\uff1f\u96f7\u8535\u304a\u5144\u3055\u3093\u304c\u5165\u308c\u3066\u304f\u308c\u305f\u3063\u3066\u3060\u3051\u3067\u6ce3\u304f\u3057\u3082\u3063\u305f\u3044\u306a\u304f\u3066\u98f2\u3081\u306a\u3044\u3093\u3058\u3083\u306a\u3044\u2026\uff1f\u3084\u3060\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1171549112,"id_str":"1171549112","name":"\u3053\u3089\u3063\u3078\u3093","screen_name":"RF_grd5","location":null,"url":null,"description":"FB\u3054\u81ea\u7531\u306b\u3002 \u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u2192\u89e3\u9664 http:\/\/twpf.jp\/RF_grd5","protected":false,"verified":false,"followers_count":108,"friends_count":97,"listed_count":3,"favourites_count":3070,"statuses_count":55487,"created_at":"Tue Feb 12 10:23:18 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465127108570644482\/urLppmNY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465127108570644482\/urLppmNY.png","profile_background_tile":true,"profile_link_color":"FF4500","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662616513103290368\/y32Ew5YT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662616513103290368\/y32Ew5YT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1171549112\/1444912689","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712012386304,"id_str":"663727712012386304","text":"@LDH_4905_haru \uff8a\uff99\u3061\u3083\u3093\u5927\u597d\u304d\uff81\uff6d\uff6f #\u304d\u3082\u30fc\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727294180036609,"in_reply_to_status_id_str":"663727294180036609","in_reply_to_user_id":2922232794,"in_reply_to_user_id_str":"2922232794","in_reply_to_screen_name":"LDH_4905_haru","user":{"id":3188599856,"id_str":"3188599856","name":"\uff9a\uff72\uff89\uff98\u3010\u56fa\uff82\uff72\u898b\u3066\u3011","screen_name":"busko3","location":"\uff71\uff99\uff8c\uff9f\uff7d\u306f\u65e6\u90a3","url":"http:\/\/twitter.com\/ominorishimai12","description":"\uff71\uff72\uff7a\uff9d\uff84\uff8f\uff9d\u4f5c\u3002\u5869\u306f\u611b\u60c5\u8868\u73fe \u2225 \u5927\u5207 \u3010 \uff95\uff73\uff7a \uffe4\uff75\uff90\uff89\uff98 \uffe4 \uff71\uff99\uff8c\uff9e\uff7d\uffe4\uff86\uff72\uff89\uff98\uffe4\uff8f\uff72\uff89\uff98 \u3011 \u611b\u65b9 @LDH058446261 \uff75\uff90\uff89\uff98\u5fd8\u308c\u306a\u3044\u3088\u7d76\u5bfe\u3002 \uff9a\uff72\uff89\uff98\u3082\u4f11\u6b62\u4e2d\u3060\u3051\u3069\u30ea\u30e0\u3089\u306a\u3044\u3067\u5f85\u3063\u3066\u3066","protected":false,"verified":false,"followers_count":487,"friends_count":413,"listed_count":2,"favourites_count":772,"statuses_count":3718,"created_at":"Fri May 08 10:03:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662855632186273792\/eeHEu-dS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662855632186273792\/eeHEu-dS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188599856\/1446951480","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304d\u3082\u30fc\u3044","indices":[28,33]}],"urls":[],"user_mentions":[{"screen_name":"LDH_4905_haru","name":"\uff84\uff7b\uff76\uff8a\uff99\uff75\uff90\uffe4\u56fa\uff82\uff72\u898b\u3066\uff86\uff94\u2934\ufe0e \u2934\ufe0e","id":2922232794,"id_str":"2922232794","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992665"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712012488704,"id_str":"663727712012488704","text":"@rarediseaseday Please RT! \nHelp beat #MITO! Make a donation! Thanks! #mondaymotivation https:\/\/t.co\/dsxLy0t8rq \u2026 \u2026 \u2026 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":19982434,"in_reply_to_user_id_str":"19982434","in_reply_to_screen_name":"rarediseaseday","user":{"id":3937674133,"id_str":"3937674133","name":"John Ball","screen_name":"IAMJOHNBALL","location":"Cape Coral, FL","url":null,"description":"Teacher","protected":false,"verified":false,"followers_count":98,"friends_count":154,"listed_count":4,"favourites_count":16,"statuses_count":70,"created_at":"Sun Oct 18 16:19:49 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662103997633925120\/tE_a2sM2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662103997633925120\/tE_a2sM2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MITO","indices":[38,43]},{"text":"mondaymotivation","indices":[70,87]}],"urls":[{"url":"https:\/\/t.co\/dsxLy0t8rq","expanded_url":"http:\/\/www.energyforlifewalk.org\/southwestflorida\/jballco99#sthash.DdZSJjTX.dpuf","display_url":"energyforlifewalk.org\/southwestflori\u2026","indices":[88,111]}],"user_mentions":[{"screen_name":"rarediseaseday","name":"Rare Disease Day","id":19982434,"id_str":"19982434","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992665"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711983026176,"id_str":"663727711983026176","text":"RT @1819cm: \u3070\u304b\u3084\u308d\u3046 https:\/\/t.co\/nu6XbekKmg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517463400,"id_str":"2517463400","name":"\u306a\u30fc\u3061\u3085","screen_name":"xxnanaaaa","location":" \u2661 ","url":null,"description":"\u6c17\u3065\u3044\u3066\u307b\u3057\u3044\u3001\u65e9\u304f\u898b\u3064\u3051\u3066 \uff1f","protected":false,"verified":false,"followers_count":292,"friends_count":306,"listed_count":40,"favourites_count":11394,"statuses_count":33809,"created_at":"Fri May 23 10:13:32 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663603510118711296\/XFPyR4mt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663603510118711296\/XFPyR4mt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517463400\/1446637833","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727674620178432,"id_str":"663727674620178432","text":"\u3070\u304b\u3084\u308d\u3046 https:\/\/t.co\/nu6XbekKmg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3114836076,"id_str":"3114836076","name":"\u30a2\u30e6","screen_name":"1819cm","location":"\u305f\u304f\u3061\u3083\u3093\u30ad\u30e1\u3066\u308b","url":null,"description":"\u5510\u63da\u3052\u304c\u597d\u304d","protected":false,"verified":false,"followers_count":95,"friends_count":133,"listed_count":2,"favourites_count":243,"statuses_count":541,"created_at":"Sun Mar 29 08:51:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659724897833213952\/V51NZy5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659724897833213952\/V51NZy5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3114836076\/1446734345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725067365281792,"quoted_status_id_str":"663725067365281792","quoted_status":{"created_at":"Mon Nov 09 14:29:22 +0000 2015","id":663725067365281792,"id_str":"663725067365281792","text":"#\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u304c\u3059\u3054\u304f\u96d1\u306b\u5f15\u7528RT\u3067\u7d39\u4ecb\u3057\u3066\u304f\u308c\u308b\n\n\u3057\u3066\u304f\u3060\u3055\u3044\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517463400,"id_str":"2517463400","name":"\u306a\u30fc\u3061\u3085","screen_name":"xxnanaaaa","location":" \u2661 ","url":null,"description":"\u6c17\u3065\u3044\u3066\u307b\u3057\u3044\u3001\u65e9\u304f\u898b\u3064\u3051\u3066 \uff1f","protected":false,"verified":false,"followers_count":292,"friends_count":306,"listed_count":40,"favourites_count":11394,"statuses_count":33808,"created_at":"Fri May 23 10:13:32 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663603510118711296\/XFPyR4mt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663603510118711296\/XFPyR4mt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517463400\/1446637833","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u304c\u3059\u3054\u304f\u96d1\u306b\u5f15\u7528RT\u3067\u7d39\u4ecb\u3057\u3066\u304f\u308c\u308b","indices":[0,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nu6XbekKmg","expanded_url":"https:\/\/twitter.com\/xxnanaaaa\/status\/663725067365281792","display_url":"twitter.com\/xxnanaaaa\/stat\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nu6XbekKmg","expanded_url":"https:\/\/twitter.com\/xxnanaaaa\/status\/663725067365281792","display_url":"twitter.com\/xxnanaaaa\/stat\u2026","indices":[18,41]}],"user_mentions":[{"screen_name":"1819cm","name":"\u30a2\u30e6","id":3114836076,"id_str":"3114836076","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992658"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711983038464,"id_str":"663727711983038464","text":"Even if you are feeling unmotivated, you start to emerge from ... More for Libra https:\/\/t.co\/GxIw1nnsSu","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64124230,"id_str":"64124230","name":"Ms.Wilridge","screen_name":"HighClass_2012","location":"Lake Charles","url":null,"description":"#TeamWilridge #23andBeautiful #MsuAlumni#LakerNation #Kobe #FutureMSW #TeamGod1st #TeamSingleUntilMyKingArrives #TeamLovingLife","protected":false,"verified":false,"followers_count":141,"friends_count":376,"listed_count":2,"favourites_count":18,"statuses_count":12855,"created_at":"Sun Aug 09 06:22:19 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631361842\/xs8n1stvis7dd1wctc43.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631361842\/xs8n1stvis7dd1wctc43.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655957788439416832\/mqYkWvGw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655957788439416832\/mqYkWvGw_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GxIw1nnsSu","expanded_url":"http:\/\/bit.ly\/wvRgyF","display_url":"bit.ly\/wvRgyF","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992658"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712008204288,"id_str":"663727712008204288","text":"\u79c1\u3082\u5b9f\u306f\u60aa\u622f\u597d\u304d\u3067\u3059\u3088\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2203204226,"id_str":"2203204226","name":"\u4e0b\u7d1a\u5922\u60f3\u8ee2\u751f\u7dd1\u8336\u9df9\u6843\u8272\u5929\u7136\u6c34\u96d1\u9b5a\u4fee\u7f85\u6c11","screen_name":"onodera091","location":"\u9727\u306e\u6c34\u5e95","url":null,"description":"\u7686\u69d8\u306e\u71b1\u3044\u8981\u671b\u306b\u304a\u7b54\u3048\u3057\u3066\u6614\u306e\u540d\u524d\u9054\u3067\u69cb\u6210\u3057\u3066\u307f\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":45,"friends_count":61,"listed_count":0,"favourites_count":1283,"statuses_count":1825,"created_at":"Tue Nov 19 14:31:58 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160380978\/lhSH3bjw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160380978\/lhSH3bjw.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650329174314389504\/9pelCXkA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650329174314389504\/9pelCXkA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203204226\/1388524718","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992664"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727712016576513,"id_str":"663727712016576513","text":"RT @16kun1: \u7b11\u9854\u306f\u4f1d\u67d3\u3059\u308b\u3063\u3066\u8a00\u3063\u305f\u3084\u3064\u3067\u3066\u3053\u3044\u3088\n\n\u5468\u308a\u306b\u5ea7\u3063\u3066\u308b\u4eba\n\u5168\u54e1\u96a3\u306e\u8eca\u4e21\u884c\u3063\u305f\u3058\u3083\u3093\u30fb\u30fb\u30fb https:\/\/t.co\/kJbjLKXgiQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957977538,"id_str":"2957977538","name":"\u221e\uff3c\u3055\u3088\u3093\uff0f\u221e","screen_name":"123_8_8","location":"\u96e2\u308c\u305f\u3063\u3066\u3053\u3053\u306b\u3044\u308b","url":"http:\/\/www.infinity-r.jp\/","description":"\u5fc3\u306f\u30aa\u30ec\u30f3\u30b8\u8272\u029a(\u221e)\u025e\u300a\u5317\u306e\u661f(\u53d7\u9a13\u751f)\u300b\u2015*\u30d5\u30a9\u30ed\u30d0\u277d\u2467%\u4e00\u8a00\u304f\u308c\u305f\u3089\u7d76\u5bfe\u30d5\u30a9\u30ed\u30d0\u3044\u305f\u3059\u307e\u3059\u2015\u672c\u5dde\u306e\u771f\u3093\u4e2d\u306e\u4e0b(\u30b8\u30e3\u30cb\u52c9\u304c\u898b\u308c\u307e\u305b\u3093)\u2015\u5143\u6c17\u30b3\u30f3\u30b3\u30f3\u306f12\/26.27\u2015\u02d9\u1d55\u02d9\u2661\u02d9\u1d55\u02d9\u3075\u305f\u3054\u3063\u3061\u261e@rKKqIBaQ64zZUPI","protected":false,"verified":false,"followers_count":712,"friends_count":560,"listed_count":6,"favourites_count":409,"statuses_count":155,"created_at":"Sun Jan 04 04:29:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661510190966018049\/nV66H3Tz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661510190966018049\/nV66H3Tz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957977538\/1446551046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:17:39 +0000 2015","id":662997345102008321,"id_str":"662997345102008321","text":"\u7b11\u9854\u306f\u4f1d\u67d3\u3059\u308b\u3063\u3066\u8a00\u3063\u305f\u3084\u3064\u3067\u3066\u3053\u3044\u3088\n\n\u5468\u308a\u306b\u5ea7\u3063\u3066\u308b\u4eba\n\u5168\u54e1\u96a3\u306e\u8eca\u4e21\u884c\u3063\u305f\u3058\u3083\u3093\u30fb\u30fb\u30fb https:\/\/t.co\/kJbjLKXgiQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":907218906,"id_str":"907218906","name":"\u3044\u3063\u304f\u3093","screen_name":"16kun1","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCvtK7490fPF0TacbsvQ2H3g?sub_confirmation=1","description":"\u6c17\u5206\u5c4bYouruber\u3067\u3059\uff01\uff01\u30ea\u30d7\u8fd4\u306f\u5fd9\u3057\u304f\u306a\u3044\u6642\u306b\uff01\uff01\uff01\uff01\u50d5\u304c\u4e3b\u4f53\u3068\u306a\u3063\u3066\u65b0\u611f\u899a\u30a4\u30f3\u30ab\u30ec\u30b5\u30fc\u30af\u30eb\u7acb\u3061\u4e0a\u3052\u307e\u3057\u305f\uff01\uff01\u8a73\u3057\u304f\u306f@kindai_boys \u30ea\u30d7\u8fd4\u3067\u304d\u306a\u3044\u306e\u3067DM\u3067\u3002\u2193Youtube\u30c1\u30e3\u30f3\u30cd\u30eb\u2193","protected":false,"verified":false,"followers_count":1412,"friends_count":1293,"listed_count":3,"favourites_count":5127,"statuses_count":3829,"created_at":"Sat Oct 27 02:42:41 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650764342103666688\/ANSbpRMV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650764342103666688\/ANSbpRMV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/907218906\/1442730521","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25328,"favorite_count":23811,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662995989041516544,"id_str":"662995989041516544","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","url":"https:\/\/t.co\/kJbjLKXgiQ","display_url":"pic.twitter.com\/kJbjLKXgiQ","expanded_url":"http:\/\/twitter.com\/16kun1\/status\/662997345102008321\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662995989041516544,"id_str":"662995989041516544","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","url":"https:\/\/t.co\/kJbjLKXgiQ","display_url":"pic.twitter.com\/kJbjLKXgiQ","expanded_url":"http:\/\/twitter.com\/16kun1\/status\/662997345102008321\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":29062,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/pl\/DOPPy34omquJjk4G.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/640x360\/2iU-NKbtGi7dvHWp.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/pl\/DOPPy34omquJjk4G.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/320x180\/CKTIGqvRlauTQmzA.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/1280x720\/RNIafmofVfwPPKbA.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/640x360\/2iU-NKbtGi7dvHWp.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"16kun1","name":"\u3044\u3063\u304f\u3093","id":907218906,"id_str":"907218906","indices":[3,10]}],"symbols":[],"media":[{"id":662995989041516544,"id_str":"662995989041516544","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","url":"https:\/\/t.co\/kJbjLKXgiQ","display_url":"pic.twitter.com\/kJbjLKXgiQ","expanded_url":"http:\/\/twitter.com\/16kun1\/status\/662997345102008321\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662997345102008321,"source_status_id_str":"662997345102008321","source_user_id":907218906,"source_user_id_str":"907218906"}]},"extended_entities":{"media":[{"id":662995989041516544,"id_str":"662995989041516544","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662995989041516544\/pu\/img\/i00w3pAVNADRg95W.jpg","url":"https:\/\/t.co\/kJbjLKXgiQ","display_url":"pic.twitter.com\/kJbjLKXgiQ","expanded_url":"http:\/\/twitter.com\/16kun1\/status\/662997345102008321\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662997345102008321,"source_status_id_str":"662997345102008321","source_user_id":907218906,"source_user_id_str":"907218906","video_info":{"aspect_ratio":[16,9],"duration_millis":29062,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/pl\/DOPPy34omquJjk4G.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/640x360\/2iU-NKbtGi7dvHWp.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/pl\/DOPPy34omquJjk4G.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/320x180\/CKTIGqvRlauTQmzA.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/1280x720\/RNIafmofVfwPPKbA.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662995989041516544\/pu\/vid\/640x360\/2iU-NKbtGi7dvHWp.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992666"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978786817,"id_str":"663727711978786817","text":"\u3053\u308c\u6c17\u306b\u306a\u308b\n\n\u9675\u8fb1\u30fb\u7121\u7406\u77e2\u7406\u30fb\u75db\u3044\u7cfb\u306e\u30a8\u30ed\u306f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2575109443,"id_str":"2575109443","name":"\u304b\u3044\u3058\u3085\u3046\u30bf\u30a4\u30de\u30fc\u706b\u66dc\u6771\u30bf24b","screen_name":"39_mick_","location":null,"url":null,"description":"\u30d5\u30a1\u30c3\u30af\u3092\u9001\u4fe1\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":147,"friends_count":77,"listed_count":9,"favourites_count":3785,"statuses_count":4752,"created_at":"Wed Jun 18 16:01:43 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656129118077976576\/YHss2iw8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656129118077976576\/YHss2iw8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2575109443\/1418978459","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079992657"} +{"delete":{"status":{"id":646402174642098176,"id_str":"646402174642098176","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447079992986"}} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711978786818,"id_str":"663727711978786818","text":"\u0641\u0644\u0645 \u0633\u0643\u0633 \u062c\u062f\u064a\u062f - \u0646\u064a\u0643 \u0623\u062d\u0644\u0649 \u0628\u0646\u0648\u062a\u0629\n\u0631\u0627\u0628\u0637 \u0627\u0644\u0641\u0644\u0645: https:\/\/t.co\/4yqXueo2iW\n\n#xxx\n#\u062a\u0641\u0631\u064a\u0634\n#\u062f\u064a\u0648\u062b\nKHXA https:\/\/t.co\/Bogafh32sD","source":"\u003ca href=\"http:\/\/www.lawyer-wd.com\/\" rel=\"nofollow\"\u003e\u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u062d\u0628\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4110729314,"id_str":"4110729314","name":"\u064a\u0645\u0627\u0645 \u0647\u0645\u062f\u0627\u0646 \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a\u0629","screen_name":"EricEricbell135","location":"Saudi Arabia","url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":40,"listed_count":1,"favourites_count":0,"statuses_count":4257,"created_at":"Tue Nov 03 07:58:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663084506874818560\/jhipphrB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663084506874818560\/jhipphrB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"xxx","indices":[67,71]},{"text":"\u062a\u0641\u0631\u064a\u0634","indices":[72,78]},{"text":"\u062f\u064a\u0648\u062b","indices":[79,84]}],"urls":[{"url":"https:\/\/t.co\/4yqXueo2iW","expanded_url":"http:\/\/goo.gl\/d25zJk","display_url":"goo.gl\/d25zJk","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663727711920132097,"id_str":"663727711920132097","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1mCVEAEcjtF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1mCVEAEcjtF.jpg","url":"https:\/\/t.co\/Bogafh32sD","display_url":"pic.twitter.com\/Bogafh32sD","expanded_url":"http:\/\/twitter.com\/EricEricbell135\/status\/663727711978786818\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727711920132097,"id_str":"663727711920132097","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1mCVEAEcjtF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1mCVEAEcjtF.jpg","url":"https:\/\/t.co\/Bogafh32sD","display_url":"pic.twitter.com\/Bogafh32sD","expanded_url":"http:\/\/twitter.com\/EricEricbell135\/status\/663727711978786818\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":399,"resize":"fit"},"large":{"w":599,"h":399,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079992657"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711983149060,"id_str":"663727711983149060","text":"@ali9993333 @truebh1 @monehy11 @rock_arab \u0639\u0627\u0634\u0631 \u0627\u0645\u0643 https:\/\/t.co\/lVUELrAEu7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726312578789378,"in_reply_to_status_id_str":"663726312578789378","in_reply_to_user_id":3293590251,"in_reply_to_user_id_str":"3293590251","in_reply_to_screen_name":"ali9993333","user":{"id":2345539679,"id_str":"2345539679","name":"\u0635\u0642\u0631 \u0627\u0644\u062c\u0632\u064a\u0631\u0629","screen_name":"shabbab72","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647 \u062b\u0645 \u0627\u0644\u0645\u0644\u0643 \u0648\u0627\u0644\u0648\u0637\u0646","protected":false,"verified":false,"followers_count":827,"friends_count":1875,"listed_count":0,"favourites_count":8,"statuses_count":885,"created_at":"Sat Feb 15 20:28:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656782514548252672\/wbTkxnnX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656782514548252672\/wbTkxnnX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2345539679\/1442360629","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ali9993333","name":"\u26ab \u0627\u0644\u062d\u062c\u0627\u0645\u064a \u26ab","id":3293590251,"id_str":"3293590251","indices":[0,11]},{"screen_name":"truebh1","name":"\u0628\u0631\u0628\u0648\u0631\u0629","id":469445307,"id_str":"469445307","indices":[12,20]},{"screen_name":"monehy11","name":"\u0633\u0627\u0631\u064a \u0628\u0646 \u0645\u062d\u0645\u062f","id":4083290579,"id_str":"4083290579","indices":[21,30]},{"screen_name":"rock_arab","name":"\u0641\u0624\u0627\u062f \u0627\u0644\u062d\u0648\u062b\u064a","id":1628894966,"id_str":"1628894966","indices":[31,41]}],"symbols":[],"media":[{"id":663727697235939328,"id_str":"663727697235939328","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0vVWEAADOtk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0vVWEAADOtk.jpg","url":"https:\/\/t.co\/lVUELrAEu7","display_url":"pic.twitter.com\/lVUELrAEu7","expanded_url":"http:\/\/twitter.com\/shabbab72\/status\/663727711983149060\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":398,"h":280,"resize":"fit"},"small":{"w":340,"h":239,"resize":"fit"},"medium":{"w":398,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727697235939328,"id_str":"663727697235939328","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0vVWEAADOtk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0vVWEAADOtk.jpg","url":"https:\/\/t.co\/lVUELrAEu7","display_url":"pic.twitter.com\/lVUELrAEu7","expanded_url":"http:\/\/twitter.com\/shabbab72\/status\/663727711983149060\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":398,"h":280,"resize":"fit"},"small":{"w":340,"h":239,"resize":"fit"},"medium":{"w":398,"h":280,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079992658"} +{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711987322880,"id_str":"663727711987322880","text":"No bird soars to high if he soars with his own wings. #MJMonday https:\/\/t.co\/vNAAeoWx4B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2910389676,"id_str":"2910389676","name":"Keith Cissell","screen_name":"Kcissell23","location":"St. Louis , Missouri ","url":"http:\/\/Keithcissell.com","description":"Inspirational speaker and coach Keith Cissell at Francis Howell Central.","protected":false,"verified":false,"followers_count":62,"friends_count":69,"listed_count":0,"favourites_count":442,"statuses_count":461,"created_at":"Wed Nov 26 00:57:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648520964377059328\/MKix2P7E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648520964377059328\/MKix2P7E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2910389676\/1442592177","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MJMonday","indices":[54,63]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727702218682371,"id_str":"663727702218682371","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1B5UsAMV_ir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1B5UsAMV_ir.jpg","url":"https:\/\/t.co\/vNAAeoWx4B","display_url":"pic.twitter.com\/vNAAeoWx4B","expanded_url":"http:\/\/twitter.com\/Kcissell23\/status\/663727711987322880\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":890,"resize":"fit"},"small":{"w":340,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727702218682371,"id_str":"663727702218682371","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1B5UsAMV_ir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1B5UsAMV_ir.jpg","url":"https:\/\/t.co\/vNAAeoWx4B","display_url":"pic.twitter.com\/vNAAeoWx4B","expanded_url":"http:\/\/twitter.com\/Kcissell23\/status\/663727711987322880\/photo\/1","type":"photo","sizes":{"large":{"w":690,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":890,"resize":"fit"},"small":{"w":340,"h":504,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079992659"} +{"delete":{"status":{"id":663724843112771584,"id_str":"663724843112771584","user_id":3290085223,"user_id_str":"3290085223"},"timestamp_ms":"1447079993153"}} +{"delete":{"status":{"id":660152617306185728,"id_str":"660152617306185728","user_id":3164120202,"user_id_str":"3164120202"},"timestamp_ms":"1447079993321"}} +{"delete":{"status":{"id":656376678352949248,"id_str":"656376678352949248","user_id":3955749854,"user_id_str":"3955749854"},"timestamp_ms":"1447079993390"}} +{"delete":{"status":{"id":663724922779377665,"id_str":"663724922779377665","user_id":3092437277,"user_id_str":"3092437277"},"timestamp_ms":"1447079993449"}} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210974720,"id_str":"663727716210974720","text":"RT @9GAG: no money november is going well so far","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2209403497,"id_str":"2209403497","name":"Alk\u0131m","screen_name":"alkim_can","location":null,"url":"http:\/\/ask.fm\/alkimcan","description":"Hold every memory as you go\n14.09.15","protected":false,"verified":false,"followers_count":130,"friends_count":82,"listed_count":0,"favourites_count":1792,"statuses_count":1001,"created_at":"Fri Nov 22 18:47:46 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2F5678","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655495161947009024\/mEcO82cb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655495161947009024\/mEcO82cb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2209403497\/1435429795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:00:18 +0000 2015","id":663687555372687360,"id_str":"663687555372687360","text":"no money november is going well so far","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16548023,"id_str":"16548023","name":"9GAG","screen_name":"9GAG","location":"Universe","url":"http:\/\/9gag.com","description":"Officially 9GAG. Follow us for LOL. get our app on http:\/\/9gag.com\/mobile","protected":false,"verified":false,"followers_count":5692263,"friends_count":11,"listed_count":8840,"favourites_count":1091,"statuses_count":28094,"created_at":"Wed Oct 01 18:46:32 +0000 2008","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663470724\/wcc0dvt5nfi4k8j5twsb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663470724\/wcc0dvt5nfi4k8j5twsb.jpeg","profile_background_tile":true,"profile_link_color":"0099FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"111111","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616147175987265536\/EQm39fW7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616147175987265536\/EQm39fW7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16548023\/1441105345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5059,"favorite_count":3271,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9GAG","name":"9GAG","id":16548023,"id_str":"16548023","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716198391808,"id_str":"663727716198391808","text":"RT @romi_carbajal: Necesito vacaciones, quiero playitaaaa \ud83c\udf0a\ud83c\udf05\u2600","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158584287,"id_str":"158584287","name":"Anto Cruz","screen_name":"AntooCruzz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":430,"friends_count":320,"listed_count":0,"favourites_count":7669,"statuses_count":21122,"created_at":"Wed Jun 23 02:39:55 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000078240176\/018719035ecc71b3508a6e44c741e1c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000078240176\/018719035ecc71b3508a6e44c741e1c1.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628558265304096768\/CZ_n6eEI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628558265304096768\/CZ_n6eEI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158584287\/1372135530","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:01 +0000 2015","id":663719695355392000,"id_str":"663719695355392000","text":"Necesito vacaciones, quiero playitaaaa \ud83c\udf0a\ud83c\udf05\u2600","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1102897675,"id_str":"1102897675","name":"Cordero de dios","screen_name":"romi_carbajal","location":null,"url":"https:\/\/instagram.com\/romicarbajal96\/","description":"I'm who I've got to be - 19 - C.A.B.J - Aguante Boca caretas - \u2764\u2693\u2b50","protected":false,"verified":false,"followers_count":504,"friends_count":373,"listed_count":1,"favourites_count":4476,"statuses_count":32046,"created_at":"Sat Jan 19 05:42:28 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E64AA2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106803564\/c230befe510af1763aa7ce73d988fb54.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106803564\/c230befe510af1763aa7ce73d988fb54.jpeg","profile_background_tile":true,"profile_link_color":"D61E62","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659364875991433216\/lGvHsW8i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659364875991433216\/lGvHsW8i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1102897675\/1442943682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"romi_carbajal","name":"Cordero de dios","id":1102897675,"id_str":"1102897675","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079993663"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716190003200,"id_str":"663727716190003200","text":"@Martian_God_ Dude!!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726680129843202,"in_reply_to_status_id_str":"663726680129843202","in_reply_to_user_id":906553952,"in_reply_to_user_id_str":"906553952","in_reply_to_screen_name":"Martian_God_","user":{"id":60023550,"id_str":"60023550","name":"Butterfly_Kiss7","screen_name":"Blu_Jae7","location":"Swaziland","url":null,"description":"Sexy, Sassy and Fun ;)","protected":false,"verified":false,"followers_count":625,"friends_count":748,"listed_count":2,"favourites_count":532,"statuses_count":17230,"created_at":"Sat Jul 25 09:31:55 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649476255495102464\/qTQM8mCG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649476255495102464\/qTQM8mCG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60023550\/1446876259","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Martian_God_","name":"SupaBossNova","id":906553952,"id_str":"906553952","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993661"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185829376,"id_str":"663727716185829376","text":"Yo, LovelyRhpsodist ain't got no chill. https:\/\/t.co\/zNaD64fBks","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994654915,"id_str":"2994654915","name":"No Chill, Man","screen_name":"NoChillMan","location":null,"url":null,"description":"For real.","protected":false,"verified":false,"followers_count":1725,"friends_count":143,"listed_count":7,"favourites_count":0,"statuses_count":342503,"created_at":"Fri Jan 23 19:53:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558714866702098432\/m86wgtnO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558714866702098432\/m86wgtnO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994654915\/1422043043","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663723965957799937,"quoted_status_id_str":"663723965957799937","quoted_status":{"created_at":"Mon Nov 09 14:24:59 +0000 2015","id":663723965957799937,"id_str":"663723965957799937","text":"@ptrckrglls ugali na un. Di lilipas un. #nochill","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716720838742020,"in_reply_to_status_id_str":"663716720838742020","in_reply_to_user_id":256927497,"in_reply_to_user_id_str":"256927497","in_reply_to_screen_name":"ptrckrglls","user":{"id":59980243,"id_str":"59980243","name":"Chinita","screen_name":"LovelyRhpsodist","location":"Metropolis","url":"http:\/\/LovelyRhpsodist.tumblr.com","description":"\u2606 \u2605 WeChat | Ask.fm | IG | Wattpad | Soundcloud:\r\n@LovelyRhpsodist :) \u2605 \u2606","protected":false,"verified":false,"followers_count":314,"friends_count":280,"listed_count":3,"favourites_count":2557,"statuses_count":13811,"created_at":"Sat Jul 25 04:30:42 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160411779\/EFvYx_QT.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160411779\/EFvYx_QT.png","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"FA8459","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581811047306137600\/Vsb0ctnK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581811047306137600\/Vsb0ctnK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59980243\/1405515157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nochill","indices":[40,48]}],"urls":[],"user_mentions":[{"screen_name":"ptrckrglls","name":"Patrick","id":256927497,"id_str":"256927497","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zNaD64fBks","expanded_url":"http:\/\/twitter.com\/LovelyRhpsodist\/status\/663723965957799937","display_url":"twitter.com\/LovelyRhpsodis\u2026","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206813184,"id_str":"663727716206813184","text":"\ud83d\udcf7 https:\/\/t.co\/JxETIRTRtI","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1111894958,"id_str":"1111894958","name":"Isa","screen_name":"euterespiroluan","location":"giudora","url":null,"description":"se esse sorriso for pra mim eu sou o cara que tem mais sorte no mundo","protected":false,"verified":false,"followers_count":3381,"friends_count":2882,"listed_count":0,"favourites_count":336,"statuses_count":51038,"created_at":"Tue Jan 22 15:53:23 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526384290347491328\/gTnZN2sf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526384290347491328\/gTnZN2sf.jpeg","profile_background_tile":false,"profile_link_color":"444444","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663126028248829953\/cTHHXpkj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663126028248829953\/cTHHXpkj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1111894958\/1446936539","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JxETIRTRtI","expanded_url":"http:\/\/tmblr.co\/ZO6f3t1xljvCz","display_url":"tmblr.co\/ZO6f3t1xljvCz","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206792704,"id_str":"663727716206792704","text":"I'm a psychopath. But somehow Dylan stays and loves me. He's crazy as hell man lmaooooo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4060706003,"id_str":"4060706003","name":"jennifer","screen_name":"jennyyyjoe","location":null,"url":null,"description":"hateful lil weirdo","protected":false,"verified":false,"followers_count":38,"friends_count":70,"listed_count":0,"favourites_count":88,"statuses_count":174,"created_at":"Wed Oct 28 12:57:28 +0000 2015","utc_offset":-18000,"time_zone":"EDT","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660925075735097344\/zK8s-TOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660925075735097344\/zK8s-TOf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4060706003\/1446037967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210835456,"id_str":"663727716210835456","text":"\u3044\u3084\u3093\u53ef\u611b\u3044 \n(\u2019\uff65_,\u2019)\u3042\u3041\u305d\u308c\u3059\u306a\u304e\u3082\u306e\u30aa\u30e2\u30c1\u30e3\u3058\u3083\u306a\u3044\u3088\u3049\n\n\u2026\u840c\u3048\u3047\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612252663,"id_str":"612252663","name":"\u304b\u306a\u304f\u3093","screen_name":"k_335_k","location":"\u3086\u307f\u3061\u3083\u3093\u3068\u3001\u30c0\u30ea\u306e\u96a3\u3002","url":null,"description":"#AAA #\u5b87\u91ce\u5b9f\u5f69\u5b50 #Ki\u26a1\ufe0e-my-ft2 #\u7389\u68ee\u88d5\u592a \u6df7\u5408\u57a2Twins\u2661( @uno_sako_335 )96Line.\u52a0\u5de5.\uff8a\uff9d\uff84\uff9e\uff92\uff72\uff84\uff9e. insta(http:\/\/Instagram.com\/k_335_k\/)\uff88\uff80\u306b\u8d70\u308b18\u6b73\u3002","protected":false,"verified":false,"followers_count":703,"friends_count":250,"listed_count":21,"favourites_count":1636,"statuses_count":35567,"created_at":"Tue Jun 19 01:41:27 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651002903415492608\/e3j1i7jf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651002903415492608\/e3j1i7jf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/612252663\/1425656318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206678016,"id_str":"663727716206678016","text":"@noeru580 @kadokkuda @jinro_azurin @mafutef_zinrou \n\u975e\u516c\u8a8d\u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727539731304448,"in_reply_to_status_id_str":"663727539731304448","in_reply_to_user_id":3326115162,"in_reply_to_user_id_str":"3326115162","in_reply_to_screen_name":"noeru580","user":{"id":3617356099,"id_str":"3617356099","name":"\u98af\u7fd4@\u30cf\u30e0\u305f\u3093@\u8a9e\u5c3e\u306b\u3083\u3093\u304a\u59c9\u69d8&\u304a\u5144\u69d8","screen_name":"hayato7297","location":null,"url":null,"description":"\u3053\u3093\u306b\u3061\u308f\u3041\u3002\u30cf\u30e0\u305f\u3093\u3067\u3059(*\uff40\uff65\u03c9\uff65)\u309e\u4eba\u72fc\u57a2\uff01\u305d\u306e\u4ed6\u5927\u5bcc\u8c6a\u3001\u30e2\u30f3\u30b9\u30c8\u3068\u304b\u3082\u3084\u3063\u3066\u308b\u3088\uff01\u591c\u514e\u5bb6\/\u7396\u6816\u5bb6\/\u30ab\u30eb\u30d4\u30b9\u30cf\u30a6\u30b9\/\u85cd\u6765\u5bb6\/\u6240\u5c5e\u306ez\u6c11\u306e8\u6708\u52e2\u266a\u597d\u304d\u306a\u3082\u306e\u306f\u30e2\u30d5\u30e2\u30d5\u3057\u305f\u3082\u306e\u3068\u304b\u3001\u3082\u3053\u3082\u3053\u3057\u305f\u3082\u306e\u3068\u304b\u3001\u3075\u308f\u3075\u308f\u3057\u305f\u3082\u306e\u3068\u304b\u30cf\u30e0\u30b9\u30bf\u30fc\u3068\u304b\u3060\u3088\uff01\u697d\u3057\u304f\u308b\u3093\u266a\u308b\u3093\u266a","protected":false,"verified":false,"followers_count":135,"friends_count":139,"listed_count":3,"favourites_count":144,"statuses_count":2157,"created_at":"Sat Sep 19 15:36:36 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662278187389337601\/lZWUETFa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662278187389337601\/lZWUETFa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3617356099\/1446337558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noeru580","name":"\u5553\u5f25@\u5973rp+\u30e1\u30a4\u30c9\u7f70\u30b2","id":3326115162,"id_str":"3326115162","indices":[0,9]},{"screen_name":"kadokkuda","name":"\u30ab\u30c9\u30c3\u30af","id":3482295919,"id_str":"3482295919","indices":[10,20]},{"screen_name":"jinro_azurin","name":"\u3042\u305a\u308a\u3093","id":3303104228,"id_str":"3303104228","indices":[21,34]},{"screen_name":"mafutef_zinrou","name":"\u307e\u3075\u3066\u3075@\u308a\u3093\u3054\u3068PG","id":3314979252,"id_str":"3314979252","indices":[35,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716181520385,"id_str":"663727716181520385","text":"RT @onedirection: #EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3266749418,"id_str":"3266749418","name":"LARRY ZIAM REAL AF","screen_name":"itzelgaflores21","location":null,"url":"https:\/\/instagram.com\/p\/7OpOjiDn5g\/","description":"genuinely believe in Larry and ziam and that Brianna jungleworms should runaway with her (non existent) baby's real daddy oli* xxx (credits to the owners)","protected":false,"verified":false,"followers_count":244,"friends_count":237,"listed_count":4,"favourites_count":2848,"statuses_count":4505,"created_at":"Fri Jul 03 04:22:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655198275046256641\/yNuVskMP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655198275046256641\/yNuVskMP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3266749418\/1445046391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:22 +0000 2015","id":663716009912627200,"id_str":"663716009912627200","text":"#EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648628,"friends_count":3931,"listed_count":66282,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16261,"favorite_count":20825,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]},{"text":"MadeInTheAm","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[75,98]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]},{"text":"MadeInTheAm","indices":[69,81]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[93,116]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993659"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716202446848,"id_str":"663727716202446848","text":"RT @dohwaji2: SKT\uc774\uc6a9\uc790 \ubd84\uc911 \ud2f0\uc2a4\ud1a0\uc5b4 \uc0ac\uc6a9\ud558\uc2dc\ub294 \ubd84\ub4e4 \ub178\ub3d9\uc870\ud569\uc774\ub098 \uc0ac\ud68c\ud65c\ub3d9,\uc815\uce58\uc801 \uc2e0\ub150,\uac01\uc885 \uac1c\uc778\uc815\ubcf4 \uc218\uc9d1 \uccb4\ud06c \uc81c\uac70\ud558\uc138\uc694. \uc790\ub3d9 \uccb4\ud06c\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\uacc4\uc815>\uac1c\uc778\uc815\ubcf4 \ub3d9\uc758 \uc124\uc815\uc5d0\uc11c \uccb4\ud06c\ud574\uc81c\ud558\uc138\uc694 https:\/\/t.co\/Ffx7pZpveT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562841650,"id_str":"562841650","name":"\uc218\uc8fc\ubc1b\ub294 \ubc00\ub80c","screen_name":"mileynn","location":"\uce74\uc0ac\ub9c8\uce20 \uac00\ubc29 \uc548","url":"http:\/\/worldcosplay.net\/member\/203147","description":"\ucf54\uc2a4\uc5b4\/\ud669\ub9bd(\u9ec4\u7b20)\/\uc885\ub9d0\uc758 \uc138\ub77c\ud504*\ub9de\ud314\uc740 \uba58\uc158\/\ube44\ub355 \ube14\ub77d","protected":false,"verified":false,"followers_count":247,"friends_count":385,"listed_count":3,"favourites_count":3849,"statuses_count":22890,"created_at":"Wed Apr 25 12:27:50 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662479823109926912\/9xeu_Xo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662479823109926912\/9xeu_Xo2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562841650\/1435217342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:10:31 +0000 2015","id":663705224620564480,"id_str":"663705224620564480","text":"SKT\uc774\uc6a9\uc790 \ubd84\uc911 \ud2f0\uc2a4\ud1a0\uc5b4 \uc0ac\uc6a9\ud558\uc2dc\ub294 \ubd84\ub4e4 \ub178\ub3d9\uc870\ud569\uc774\ub098 \uc0ac\ud68c\ud65c\ub3d9,\uc815\uce58\uc801 \uc2e0\ub150,\uac01\uc885 \uac1c\uc778\uc815\ubcf4 \uc218\uc9d1 \uccb4\ud06c \uc81c\uac70\ud558\uc138\uc694. \uc790\ub3d9 \uccb4\ud06c\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.\uacc4\uc815>\uac1c\uc778\uc815\ubcf4 \ub3d9\uc758 \uc124\uc815\uc5d0\uc11c \uccb4\ud06c\ud574\uc81c\ud558\uc138\uc694 https:\/\/t.co\/Ffx7pZpveT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3079808370,"id_str":"3079808370","name":"\uc624\ub974\uace8(\u30aa\u30eb\u30b4\u30fc\u30eb)","screen_name":"dohwaji2","location":null,"url":null,"description":"\ub124\uc624\ub85c\ub9dd\uc2a4. \uae08\uc0c9\uc758 \ucf54\ub974\ub2e4\u91d1\u8272\u306e\u30b3\u30eb\u30c0\u597d\u304d\u3067\u3059!\n\uc7a1\ub355.\uc6b0\ud0c0\ud504\ub9ac,\uc624\ud1a0\uba54\uac9c(\uad6d\ub0b4.\uc77c\ubcf8),\ud314\ucf64(\uc601\uc6c5\uc804\uc124),\n\uc544\ud2c0\ub77c\uc2a4(\ud398\ub974\uc18c\ub098) ,\uc544\ud2c0\ub9ac\uc5d0 \ub4f1 \uc5ec\ub7ec\uc7a5\ub974 \uac8c\uc784,\uc18c\uc124,\ub9cc\ud654(\uc21c\uc815\ubc0f\uc7a1\uc2dd),\uc218\uacf5\uc608,\uc0dd\ud65c\uc815\ubcf4,akb48,hkt48,\uce78\ub098\ub4f1 \ud314\ub85c \uc5b8\ud314\ub85c\uc6b0 \uc790\uc720\uc785\ub2c8\ub2e4.\n\u65e5\u672c\u8a9eok but \u6f22\u5b57\u306b\u5f31\u3044","protected":false,"verified":false,"followers_count":28,"friends_count":68,"listed_count":0,"favourites_count":267,"statuses_count":1240,"created_at":"Sat Mar 14 07:35:28 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630746867148525568\/FipmlToC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630746867148525568\/FipmlToC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3079808370\/1446360657","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663705201300246529,"id_str":"663705201300246529","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663705201300246529,"id_str":"663705201300246529","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663705220522729473,"id_str":"663705220522729473","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0YbDUYAEJYBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0YbDUYAEJYBp.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dohwaji2","name":"\uc624\ub974\uace8(\u30aa\u30eb\u30b4\u30fc\u30eb)","id":3079808370,"id_str":"3079808370","indices":[3,12]}],"symbols":[],"media":[{"id":663705201300246529,"id_str":"663705201300246529","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663705224620564480,"source_status_id_str":"663705224620564480","source_user_id":3079808370,"source_user_id_str":"3079808370"}]},"extended_entities":{"media":[{"id":663705201300246529,"id_str":"663705201300246529","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0XTcUkAEz6ds.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663705224620564480,"source_status_id_str":"663705224620564480","source_user_id":3079808370,"source_user_id_str":"3079808370"},{"id":663705220522729473,"id_str":"663705220522729473","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0YbDUYAEJYBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0YbDUYAEJYBp.jpg","url":"https:\/\/t.co\/Ffx7pZpveT","display_url":"pic.twitter.com\/Ffx7pZpveT","expanded_url":"http:\/\/twitter.com\/dohwaji2\/status\/663705224620564480\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":720,"h":1134,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663705224620564480,"source_status_id_str":"663705224620564480","source_user_id":3079808370,"source_user_id_str":"3079808370"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079993664"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716194107392,"id_str":"663727716194107392","text":"\u306b\u3057\u3066\u3082\u30c8\u30df\u30fc\u3063\u3066\u3044\u3046\u304a\u5e97\u3000\u30e9\u30b8\u30b3\u30f3\u306e\u30b3\u30fc\u30b9\u3082\u7f6e\u3044\u3066\u3042\u3063\u3066\u3059\u3054\u304b\u3063\u305f\u306a\u3041\uff5e\u9244\u30d1\u30a4\u30d7\u304c\u8ee2\u304c\u3063\u3066\u305f\u3051\u3069\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":885929546,"id_str":"885929546","name":"\u91d1\u5c5e\u30d0\u30c3\u30c8","screen_name":"innfil4444","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":116,"friends_count":189,"listed_count":3,"favourites_count":369,"statuses_count":18753,"created_at":"Wed Oct 17 03:07:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550472152445505536\/py7ctByl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550472152445505536\/py7ctByl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/885929546\/1441538985","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"744504fd6fdba804","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/744504fd6fdba804.json","place_type":"city","name":"\u5927\u962a\u5e02 \u6dc0\u5ddd\u533a","full_name":"\u5927\u962a\u5e9c \u5927\u962a\u5e02 \u6dc0\u5ddd\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[135.454928,34.703940],[135.454928,34.748387],[135.511593,34.748387],[135.511593,34.703940]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993662"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716190044160,"id_str":"663727716190044160","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/zpW0aqdiDH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1937742391,"id_str":"1937742391","name":"\ufe0fKaity","screen_name":"KitKatKaityy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":147,"friends_count":192,"listed_count":0,"favourites_count":5174,"statuses_count":3235,"created_at":"Sat Oct 05 13:50:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655197628171313153\/ODZS918G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655197628171313153\/ODZS918G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1937742391\/1445046288","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663551376593694720,"quoted_status_id_str":"663551376593694720","quoted_status":{"created_at":"Mon Nov 09 02:59:11 +0000 2015","id":663551376593694720,"id_str":"663551376593694720","text":"YOOO ITS LIT \ud83d\udd25\ud83d\ude02 https:\/\/t.co\/89o2usfPrI","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2366232152,"id_str":"2366232152","name":"Acapella Videos","screen_name":"AcapellaVid","location":null,"url":null,"description":"Your daily dose of funny acapella videos","protected":false,"verified":false,"followers_count":100206,"friends_count":4639,"listed_count":29,"favourites_count":15,"statuses_count":30,"created_at":"Fri Feb 28 23:41:08 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546420334170083328\/0ZMEky-r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546420334170083328\/0ZMEky-r.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661715172319436800\/K6m05pVD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661715172319436800\/K6m05pVD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366232152\/1446600199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662724940680982528,"id_str":"662724940680982528","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662724940680982528\/pu\/img\/_AAv_ONrt-CfK8ba.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662724940680982528\/pu\/img\/_AAv_ONrt-CfK8ba.jpg","url":"https:\/\/t.co\/89o2usfPrI","display_url":"pic.twitter.com\/89o2usfPrI","expanded_url":"http:\/\/twitter.com\/ballislife00__\/status\/662725654777954304\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662725654777954304,"source_status_id_str":"662725654777954304","source_user_id":783022117,"source_user_id_str":"783022117"}]},"extended_entities":{"media":[{"id":662724940680982528,"id_str":"662724940680982528","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662724940680982528\/pu\/img\/_AAv_ONrt-CfK8ba.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662724940680982528\/pu\/img\/_AAv_ONrt-CfK8ba.jpg","url":"https:\/\/t.co\/89o2usfPrI","display_url":"pic.twitter.com\/89o2usfPrI","expanded_url":"http:\/\/twitter.com\/ballislife00__\/status\/662725654777954304\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662725654777954304,"source_status_id_str":"662725654777954304","source_user_id":783022117,"source_user_id_str":"783022117","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/vid\/480x480\/cZzl1f7mIXp6EUyd.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/vid\/720x720\/nP3nW4jkA3xd6qdH.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/pl\/3Xkfh_QCapCfHPdC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/pl\/3Xkfh_QCapCfHPdC.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/vid\/480x480\/cZzl1f7mIXp6EUyd.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662724940680982528\/pu\/vid\/240x240\/btm4z8zm2DtqFAIV.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zpW0aqdiDH","expanded_url":"https:\/\/twitter.com\/acapellavid\/status\/663551376593694720","display_url":"twitter.com\/acapellavid\/st\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079993661"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716202483712,"id_str":"663727716202483712","text":"RT @xxcalmo: \u795e\u5948\u5ddd\u65b0\u805e\u306e\u300c\u504f\u3063\u3066\u307e\u3059\u304c\u3001\u306a\u306b\u304b\u300d\u5ba3\u8a00\u304c\u8a71\u984c\u306b\uff01\u8a18\u8005\u30fb\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3089\u7d76\u8cdb - NAVER \u307e\u3068\u3081 https:\/\/t.co\/m9arkZ03YN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92461560,"id_str":"92461560","name":"\u304a\u304b\u3056\u304d\u3088\u3057\u304b\u305a","screen_name":"okzky","location":"\u6d45\u8349","url":"http:\/\/booksbacchus.web.fc2.com\/","description":"\u672c\u3068\u9152\u304c\u3042\u308c\u3070\u5e78\u305b\u3002\u4ed5\u4e8b\u306f\u4f01\u753b\u5c4b\u3002\u300c\u3076\u3063\u304f\u3059\u30d0\u30c3\u30ab\u30b9\u300d\u3068\u3044\u3046\u66f8\u8a55\u30da\u30fc\u30b8\u309210\u5e74\u3084\u3063\u3066\u73fe\u5728\u304a\u4f11\u307f\u3002\u672c\u5c4b\u306b\u5bc4\u308b\u306e\u304c\u65e5\u8ab2\u3002\u4ed5\u639b\u3051\u7d75\u672c\u30b3\u30ec\u30af\u30bf\u30fc\u3002\u732b\u3042\u308a\u3002\u7981\u7159\u7d9a\u884c\u4e2d\u3002\u6b73\u3068\u3068\u3082\u306b\u5929\u306e\u90aa\u9b3c\u3092\u9032\u5316\u3055\u305b\u306a\u3051\u308c\u3070\u3068\u5984\u60f3\u4e2d\u3002\u5065\u5fd8\u75c7\u9177\u3057\u3002","protected":false,"verified":false,"followers_count":600,"friends_count":1003,"listed_count":40,"favourites_count":463,"statuses_count":11154,"created_at":"Wed Nov 25 06:18:52 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3D80D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1505081734\/P6F6pid8_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1505081734\/P6F6pid8_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92461560\/1414744228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:49 +0000 2015","id":663725938157359104,"id_str":"663725938157359104","text":"\u795e\u5948\u5ddd\u65b0\u805e\u306e\u300c\u504f\u3063\u3066\u307e\u3059\u304c\u3001\u306a\u306b\u304b\u300d\u5ba3\u8a00\u304c\u8a71\u984c\u306b\uff01\u8a18\u8005\u30fb\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3089\u7d76\u8cdb - NAVER \u307e\u3068\u3081 https:\/\/t.co\/m9arkZ03YN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63123365,"id_str":"63123365","name":"Tetsuya Kawamoto\u3000","screen_name":"xxcalmo","location":"Tama area,Tokyo","url":null,"description":"NO H8, NO NUKE.\n n I still have not found what I'm looking for.\u3000 \u5ddd\u672c\u54f2\u4e5f\n\u3000\u3000","protected":false,"verified":false,"followers_count":4899,"friends_count":149,"listed_count":330,"favourites_count":8798,"statuses_count":125778,"created_at":"Wed Aug 05 12:55:23 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5E1EBD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471865558506291200\/PGn2KaIe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471865558506291200\/PGn2KaIe.jpeg","profile_background_tile":false,"profile_link_color":"710DB3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"02120E","profile_text_color":"57807B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000629975602\/64b2a7c1df955f15976b7226384ee83e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000629975602\/64b2a7c1df955f15976b7226384ee83e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63123365\/1401336991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m9arkZ03YN","expanded_url":"http:\/\/matome.naver.jp\/odai\/2144497390062586601","display_url":"matome.naver.jp\/odai\/214449739\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m9arkZ03YN","expanded_url":"http:\/\/matome.naver.jp\/odai\/2144497390062586601","display_url":"matome.naver.jp\/odai\/214449739\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"xxcalmo","name":"Tetsuya Kawamoto\u3000","id":63123365,"id_str":"63123365","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993664"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716198457344,"id_str":"663727716198457344","text":"@OM_Officiel il faut un attaquant pour suppl\u00e9er Michy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":40448264,"in_reply_to_user_id_str":"40448264","in_reply_to_screen_name":"OM_Officiel","user":{"id":2750941887,"id_str":"2750941887","name":"Arnaud De Kanel","screen_name":"arnauddekanel","location":"France","url":null,"description":"Salut","protected":false,"verified":false,"followers_count":50,"friends_count":91,"listed_count":0,"favourites_count":6,"statuses_count":96,"created_at":"Mon Aug 25 06:38:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594238011992313857\/MXod5jBP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594238011992313857\/MXod5jBP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2750941887\/1430512360","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OM_Officiel","name":"Olympique Marseille","id":40448264,"id_str":"40448264","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079993663"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206706691,"id_str":"663727716206706691","text":"RT @lizasoberanaway: Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3963671052,"id_str":"3963671052","name":"Quen","screen_name":"Quen445","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":8,"listed_count":6,"favourites_count":6,"statuses_count":31874,"created_at":"Wed Oct 21 01:01:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3963671052\/1445389399","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:28 +0000 2015","id":663723079135158272,"id_str":"663723079135158272","text":"Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230915917,"id_str":"230915917","name":"imee","screen_name":"lizasoberanaway","location":null,"url":null,"description":"Everyday, I love you still showing in cinemas nationwide! \u2665","protected":false,"verified":false,"followers_count":2021,"friends_count":236,"listed_count":8,"favourites_count":7932,"statuses_count":24675,"created_at":"Mon Dec 27 02:33:22 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230915917\/1446220492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":105,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lizasoberanaway","name":"imee","id":230915917,"id_str":"230915917","indices":[3,19]}],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716177326081,"id_str":"663727716177326081","text":"Keeping your attention on the here and now could be tricky bus... More for Aquarius https:\/\/t.co\/SJiFsdkUZh","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54251428,"id_str":"54251428","name":"bOSslAdYNEE ","screen_name":"Musiq_iS_ME","location":"Hawaii ","url":null,"description":"Dont make a LEFT AT dat LIGHT make a RIGHT.&just FOLLOW ME. :) FOLLOW&TWEET me. xoxoxo diAMONd'S\/&\/BlUNt'S","protected":false,"verified":false,"followers_count":436,"friends_count":545,"listed_count":4,"favourites_count":49,"statuses_count":8378,"created_at":"Mon Jul 06 16:21:03 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603347611\/uekqzkew123wnyggq9qk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603347611\/uekqzkew123wnyggq9qk.jpeg","profile_background_tile":true,"profile_link_color":"2279A8","profile_sidebar_border_color":"C9148A","profile_sidebar_fill_color":"070A00","profile_text_color":"C9148A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3140724871\/4db99552c0c7148fe231c44812ad9edc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3140724871\/4db99552c0c7148fe231c44812ad9edc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54251428\/1357576474","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJiFsdkUZh","expanded_url":"http:\/\/bit.ly\/whBNNw","display_url":"bit.ly\/whBNNw","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993658"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716202618880,"id_str":"663727716202618880","text":"RT @heymiller: @RameshPonnuru of @NRO is coming to @Hillsdale on Nov. 17. https:\/\/t.co\/Ij6OhItHSd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15771482,"id_str":"15771482","name":"Kevin Holtsberry","screen_name":"kevinholtsberry","location":"Columbus, Ohio","url":"http:\/\/kevinholtsberry.com\/","description":"strategic communications & public affairs type with some football & golf on occasion. (for books & culture see @collectedmisc)","protected":false,"verified":false,"followers_count":1791,"friends_count":418,"listed_count":113,"favourites_count":969,"statuses_count":17060,"created_at":"Thu Aug 07 23:53:20 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663261326\/jxo31wc9pmqgj3co8j1m.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663261326\/jxo31wc9pmqgj3co8j1m.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659446019520901120\/sc8dL36z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659446019520901120\/sc8dL36z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15771482\/1438392626","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:17:35 +0000 2015","id":663525808745480192,"id_str":"663525808745480192","text":"@RameshPonnuru of @NRO is coming to @Hillsdale on Nov. 17. https:\/\/t.co\/Ij6OhItHSd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":305189255,"in_reply_to_user_id_str":"305189255","in_reply_to_screen_name":"RameshPonnuru","user":{"id":62031929,"id_str":"62031929","name":"John J. Miller","screen_name":"heymiller","location":"Hillsdale, Mich.","url":"http:\/\/www.heymiller.com\/","description":"Hillsdale College, National Review, The First Assassin, &c.","protected":false,"verified":false,"followers_count":1894,"friends_count":839,"listed_count":77,"favourites_count":319,"statuses_count":3671,"created_at":"Sat Aug 01 13:21:06 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055942643\/4568cf438d04ea53c683e08a7efecfc3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055942643\/4568cf438d04ea53c683e08a7efecfc3.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3539927666\/49e67582dfb3cc286c510447e8741176_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3539927666\/49e67582dfb3cc286c510447e8741176_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62031929\/1406195975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RameshPonnuru","name":"Ramesh Ponnuru","id":305189255,"id_str":"305189255","indices":[0,14]},{"screen_name":"NRO","name":"National Review","id":19417492,"id_str":"19417492","indices":[18,22]},{"screen_name":"Hillsdale","name":"Hillsdale College","id":23562007,"id_str":"23562007","indices":[36,46]}],"symbols":[],"media":[{"id":663525773890883584,"id_str":"663525773890883584","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","url":"https:\/\/t.co\/Ij6OhItHSd","display_url":"pic.twitter.com\/Ij6OhItHSd","expanded_url":"http:\/\/twitter.com\/heymiller\/status\/663525808745480192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663525773890883584,"id_str":"663525773890883584","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","url":"https:\/\/t.co\/Ij6OhItHSd","display_url":"pic.twitter.com\/Ij6OhItHSd","expanded_url":"http:\/\/twitter.com\/heymiller\/status\/663525808745480192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"heymiller","name":"John J. Miller","id":62031929,"id_str":"62031929","indices":[3,13]},{"screen_name":"RameshPonnuru","name":"Ramesh Ponnuru","id":305189255,"id_str":"305189255","indices":[15,29]},{"screen_name":"NRO","name":"National Review","id":19417492,"id_str":"19417492","indices":[33,37]},{"screen_name":"Hillsdale","name":"Hillsdale College","id":23562007,"id_str":"23562007","indices":[51,61]}],"symbols":[],"media":[{"id":663525773890883584,"id_str":"663525773890883584","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","url":"https:\/\/t.co\/Ij6OhItHSd","display_url":"pic.twitter.com\/Ij6OhItHSd","expanded_url":"http:\/\/twitter.com\/heymiller\/status\/663525808745480192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663525808745480192,"source_status_id_str":"663525808745480192","source_user_id":62031929,"source_user_id_str":"62031929"}]},"extended_entities":{"media":[{"id":663525773890883584,"id_str":"663525773890883584","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVRLQQVEAA8RQD.jpg","url":"https:\/\/t.co\/Ij6OhItHSd","display_url":"pic.twitter.com\/Ij6OhItHSd","expanded_url":"http:\/\/twitter.com\/heymiller\/status\/663525808745480192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663525808745480192,"source_status_id_str":"663525808745480192","source_user_id":62031929,"source_user_id_str":"62031929"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993664"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716173266944,"id_str":"663727716173266944","text":"First workout of the day at life leisure stockport grand central. Chest and shoulders. \n\nIf your interested in... https:\/\/t.co\/mo7sBKVAWc","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":273719643,"id_str":"273719643","name":"RyBo","screen_name":"rybofitness","location":"Manchester, England","url":"http:\/\/www.rybofitness.co.uk","description":"Personal Trainer\nBody Builder\nBoxing Coach\nmotivation in the flesh","protected":false,"verified":false,"followers_count":235,"friends_count":333,"listed_count":2,"favourites_count":0,"statuses_count":1167,"created_at":"Tue Mar 29 01:26:14 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/398816029\/RYBO-LOGO3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/398816029\/RYBO-LOGO3.jpg","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655993310629273600\/guYVj6IF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655993310629273600\/guYVj6IF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/273719643\/1441806918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mo7sBKVAWc","expanded_url":"http:\/\/fb.me\/4k5lSdRcQ","display_url":"fb.me\/4k5lSdRcQ","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993657"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210839552,"id_str":"663727716210839552","text":"RT @_nurainnnnn: I want to go far from here. Further my studies. Yeah. Somewhere yg semua org tak kenal & tak amek kisah psl aku. Hmm i wis\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008874939,"id_str":"1008874939","name":"ryxn","screen_name":"maieiliyah","location":null,"url":"http:\/\/instagram.com\/mai.ieliyah_","description":"Belajar untuk melepaskan\n\n\n\n\n\n\n\n\n\nFIM","protected":false,"verified":false,"followers_count":790,"friends_count":779,"listed_count":2,"favourites_count":2317,"statuses_count":22194,"created_at":"Thu Dec 13 13:52:44 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/871391056\/74757fbcefd02cd0461d5575ba11dfb2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/871391056\/74757fbcefd02cd0461d5575ba11dfb2.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660847011902566401\/iECczSfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660847011902566401\/iECczSfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008874939\/1439113947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727364405202944,"id_str":"663727364405202944","text":"I want to go far from here. Further my studies. Yeah. Somewhere yg semua org tak kenal & tak amek kisah psl aku. Hmm i wish\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192487760,"id_str":"192487760","name":"A I N .","screen_name":"_nurainnnnn","location":"Darul Iman.","url":null,"description":"Bukan wanita melayu terakhir.","protected":false,"verified":false,"followers_count":489,"friends_count":391,"listed_count":4,"favourites_count":380,"statuses_count":33409,"created_at":"Sun Sep 19 08:48:02 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E021E0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633069839\/ahuijsxbie19vv1tfa9i.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633069839\/ahuijsxbie19vv1tfa9i.jpeg","profile_background_tile":true,"profile_link_color":"850BB5","profile_sidebar_border_color":"F8D605","profile_sidebar_fill_color":"FD0B71","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660359963366133760\/0GFp96Yx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660359963366133760\/0GFp96Yx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192487760\/1446277001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_nurainnnnn","name":"A I N .","id":192487760,"id_str":"192487760","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210905090,"id_str":"663727716210905090","text":"\u30af\u30bd\u30ea\u30d7\u3057\u59cb\u3081\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004963532,"id_str":"3004963532","name":"RINKO","screen_name":"rinko_kakuburo","location":"MSN-001-2 \u30b3\u30c3\u30af\u30d4\u30c3\u30c8","url":null,"description":"\u7537\u3001\u9ad83\u3001\u5e30\u56fd\u5b50\u5973\u3001\u6a21\u578b\u30b5\u30fc\u30af\u30eb\u6240\u5c5e\u3001\u30d7\u30e9\u30b9\u30de\u30b8\u30ab\u3001\u30b9\u30d5\u30a3\u30a2\u3001\u8c4a\u5d0e\u611b\u751f\u3001\u4e0a\u5742\u3059\u307f\u308c\u3001\u7a32\u5ddd\u82f1\u91cc\u3001\u7530\u4e2d\u7f8e\u6d77\u3001\u3086\u308b\u3086\u308a:\u5343\u6b73\u63a8\u3057\u3001\u30c7\u30ec\u30de\u30b9\u3001\u30ac\u30eb\u30cb\u30c7,\u30a2\u30a4\u30bc\u30f3\u30cf\u30ef\u30fc\u306e\u30b3\u30fc\u30d2\u30fc\u76bf \u3001\u30db\u30fc\u30af\u30b9WoT:rinko1206 \u30c7\u30ec\u30b9\u30c6:824880968 \u30d1\u30ba\u30c9\u30e9:\u899a\u9192\u30ad\u30ea\u30f3297,\u30f4\u30a7\u30eb\u30c0\u30f3\u30c7\u30a3297","protected":false,"verified":false,"followers_count":193,"friends_count":489,"listed_count":19,"favourites_count":7948,"statuses_count":17558,"created_at":"Sat Jan 31 14:42:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663263248494391296\/TUvchg35.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663263248494391296\/TUvchg35.jpg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656951894946934784\/cTDDxZXP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656951894946934784\/cTDDxZXP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004963532\/1444653403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206669825,"id_str":"663727716206669825","text":"\u3066\u304b\u2026\u4eca\u65e5\u30ef\u30f3\u30c9\u30ed\u3067\u3057\u305f\u306e\u306d\u30d4\u30e3\u30a2\n\n\u3082\u304f\u3082\u304f\u3068\u713c\u304d\u828b\u98df\u3079\u308b\u53ef\u611b\u3089\u3057\u3044\u307f\u3069\u304f\u3093\u63cf\u304d\u305f\u304b\u3063\u305f\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3567266354,"id_str":"3567266354","name":"\u307f\u305a\u3044\u308d","screen_name":"ywpd_11","location":"\u5fa1\u5802\u7b4b\u304f\u3093\u306e\u4e0b(\u5730\u7406\u7684\u306a\u30a4\u30df\u3067)","url":null,"description":"@lover_Y01\u2190\u306e\u5f31\u30da\u30c0\u30a2\u30ab\u3002\u3044\u3064\u306e\u9593\u306b\u304b\u6210\u4eba\u6e08\u3002\u5dfb\u5742\u3001\u77f3\u5fa1\u3001\u307f\u3069\u3055\u304b\u3001\uff34\uff12\u3001\u8352\u5317\u3055\u3093\u3089\u3078\u3093\u304c\u7279\u306b\u597d\u304d\u3067\u3059\u3002\u5909\u614b\u767a\u8a00\u3057\u307e\u3059(\u00b4\uff65\u03c9\uff65`)\n\u304a\u7d75\u63cf\u304d\u7df4\u7fd2\u4e2d\u3002F\/B\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3067\u3059\uff01\u7121\u8a00\uff8c\uff6b\uff9b\uff70\u3059\u307f\u307e\u305b\u3093\u3002\npixiv\uff1a 4862331","protected":false,"verified":false,"followers_count":18,"friends_count":42,"listed_count":0,"favourites_count":109,"statuses_count":480,"created_at":"Tue Sep 15 03:41:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663036540034023424\/WSESIci-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663036540034023424\/WSESIci-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3567266354\/1446915268","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210905088,"id_str":"663727716210905088","text":"https:\/\/t.co\/zhATDAKcZZ \u610f\u5916\u3068\u77e5\u3089\u308c\u3066\u3044\u306a\u3044\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u306e\u30c6\u30af\u30cb\u30c3\u30af10\u9078\u30006 users\uff08\u63a8\u5b9a\uff09Add Star","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2286569174,"id_str":"2286569174","name":"\u30b3\u30df\u30c3\u30af\u30aa\u30fc\u30af\u30b7\u30e7\u30f3","screen_name":"gulivuda9795","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":477,"friends_count":576,"listed_count":0,"favourites_count":0,"statuses_count":13319,"created_at":"Sat Jan 11 12:30:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/421982888381259776\/_Yxwxq7C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/421982888381259776\/_Yxwxq7C_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zhATDAKcZZ","expanded_url":"http:\/\/bit.ly\/1GNu1tm","display_url":"bit.ly\/1GNu1tm","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716173148160,"id_str":"663727716173148160","text":"\u3072\u3085\u30fc\u304c\u3053\u306a\u3044\u304b\u306a\u30fe(:3\uff89\uff7c\u30fe)\uff89\uff7c","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1268777521,"id_str":"1268777521","name":"\u5c71\u7530(\u307e\u308a\u3082)\u304f\u3093bot","screen_name":"ymdmrm_bot","location":null,"url":null,"description":"\u7686\u5927\u597d\u304d\u5c71\u7530\u304f\u3093\u304cbot\u306b\u306a\u3063\u305f\u3088\u2606\u301c\uff08\u309d\u3002\u2202\uff09\u3053\u308c\u3067\u5bc2\u3057\u304f\u306a\u3044\u306d\uff01\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":65,"friends_count":76,"listed_count":0,"favourites_count":88,"statuses_count":45709,"created_at":"Fri Mar 15 04:27:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3529601538\/fa1335b5939fbb76e7b792c28a3863f2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3529601538\/fa1335b5939fbb76e7b792c28a3863f2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993657"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210896896,"id_str":"663727716210896896","text":"Literally so tired dude...\n#ImToThatPoint","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459452922,"id_str":"459452922","name":"JustinPYP","screen_name":"JBPYP","location":"Mobile Al","url":null,"description":"i love music (PYP),chillin with the same team,and being able to take another days breathe.!.!","protected":false,"verified":false,"followers_count":356,"friends_count":571,"listed_count":1,"favourites_count":530,"statuses_count":7454,"created_at":"Mon Jan 09 17:46:54 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627088005\/k27x1vs8qim9k53ufw0c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627088005\/k27x1vs8qim9k53ufw0c.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466421250823565312\/HLmff0Yh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466421250823565312\/HLmff0Yh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459452922\/1400038349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ImToThatPoint","indices":[27,41]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716198281216,"id_str":"663727716198281216","text":"\u304b\u308a\u3042\u3052\u30af\u30f3\u3063\u3066\u3044\u305f\u306a\u305d\u3046\u3044\u3048\u3070","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449569112,"id_str":"449569112","name":"\u90a3\u9999(\u3084\u3059\u304b)","screen_name":"3_t_y_a","location":"2\u30fc2.5\u30fc3\u6b21\u5143\u306e\u5f80\u5fa9","url":null,"description":"\u30a2\u30cb\u30e1\/\u30c6\u30cb\u30df\u30e5\/\u5d50\/Max boys\/GRANRODEO\/Kiramune\/ABC\/\u30b3\u30b3\u30a2\u7537\uff61\/JOKER\/\/ \u5ca1\u672c\/\u7d30\u8c37\/\u5897\u7530\/KENN\/\u4e2d\u6751\/\u6afb\u4e95\/\u5185\u5c71\/\u77f3\u4e95\/\u5927\u6cb3\/\u938c\u82c5\/\u4f50\u3005\u6728\/\u7c73\u539f\/\u4e95\u51fa\/\u67f3","protected":false,"verified":false,"followers_count":1173,"friends_count":1310,"listed_count":8,"favourites_count":31881,"statuses_count":67475,"created_at":"Thu Dec 29 07:41:56 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623735915945463809\/C_c7y1BS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623735915945463809\/C_c7y1BS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/449569112\/1430561669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993663"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716173152256,"id_str":"663727716173152256","text":"\u6b21\u306e10\u9023\u3082\u7206\u6b7b\u3057\u3066\n\u4eca\u56de\u3082printemps30\u9023\u7206\u6b7b\u78ba\u5b9a\u3060\u306a","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1600755450,"id_str":"1600755450","name":"Atsu","screen_name":"takaminaosi_atk","location":"SKE\u306e\u672c\u62e0\u5730\u306e\u3042\u308b\u770c","url":null,"description":"\u9ad83\n\n\u6b05\u5742\u3067\u9577\u6ca2\u3055\u3093\u304c\u73fe\u6bb5\u968e\u3067\u3044\u3044\u611f\u3058","protected":false,"verified":false,"followers_count":1117,"friends_count":1437,"listed_count":3,"favourites_count":710,"statuses_count":7615,"created_at":"Wed Jul 17 11:47:48 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521523946638675968\/LDEORo-z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521523946638675968\/LDEORo-z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1600755450\/1436967012","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993657"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185849856,"id_str":"663727716185849856","text":"@marouanesoulta2 \u0627\u0646 \u0634\u0627\u0621\u0627\u0644\u0644\u0647 \u0641\u0647\u0645 \u0628\u0633 \u0647\u0648 \u0643\u064a\u0641 \u0631\u0627\u062d \u064a\u0641\u0647\u0645 \u0645\u062f\u0627\u0645 \u0645\u0627\u0642\u0627\u0644\u062a \u0644\u0627\u0633\u0645","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724914868883456,"in_reply_to_status_id_str":"663724914868883456","in_reply_to_user_id":4056761116,"in_reply_to_user_id_str":"4056761116","in_reply_to_screen_name":"marouanesoulta2","user":{"id":3803932153,"id_str":"3803932153","name":"jwaher_alishaddad","screen_name":"o3cAxTiERGwb6FH","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":222,"friends_count":325,"listed_count":1,"favourites_count":1788,"statuses_count":2789,"created_at":"Tue Oct 06 14:06:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659810048726601728\/FJyhDh5u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659810048726601728\/FJyhDh5u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3803932153\/1445225414","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marouanesoulta2","name":"Marouane Soultane","id":4056761116,"id_str":"4056761116","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185706496,"id_str":"663727716185706496","text":"@rin1119rin \u521d\u3081\u307e\u3057\u3066\u3002\u691c\u7d22\u3088\u308a\u5931\u793c\u3057\u307e\u3059\u3002\u3053\u3061\u3089\u306e\u4f9d\u90fd\u3001\u7be0\u5b97\u3092\u54041\u304a\u8b72\u308a\u3057\u3066\u9802\u304f\u3053\u3068\u306f\u53ef\u80fd\u3067\u3057\u3087\u3046\u304b\uff1f\u3054\u691c\u8a0e\u9802\u3051\u307e\u3059\u3068\u5e78\u3044\u3067\u3059\u3002\u304a\u8fd4\u4e8b\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663700314336301057,"in_reply_to_status_id_str":"663700314336301057","in_reply_to_user_id":4159309453,"in_reply_to_user_id_str":"4159309453","in_reply_to_screen_name":"rin1119rin","user":{"id":3000190752,"id_str":"3000190752","name":"\u304d\u304d","screen_name":"52hty","location":null,"url":"http:\/\/twpf.jp\/52hty","description":"\u672c\u57a2\u517c\u53d6\u5f15\u57a2\u3002 20\u219125\u2193 \u25c7\u30c0\u30a4\u30ca\u30fc(\u57ce\u5742\u4f9d\u90fd)\u25c7\u8584\u685c\u9b3c(\u6c96\u7530\u7dcf\u53f8)\u25c7\u3042\u3093\u30b9\u30bf(\u7fbd\u98a8\u85ab)\u25c7\u67ff\u539f\u5fb9\u4e5f\u3055\u3093 \u3007\u304a\u53d6\u5f15\u306e\u969b\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3054\u4e00\u8aad\u304a\u9858\u3044\u3057\u307e\u3059\u2727\u2027\u02da","protected":false,"verified":false,"followers_count":125,"friends_count":135,"listed_count":0,"favourites_count":22,"statuses_count":1253,"created_at":"Thu Jan 29 01:25:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650412271944863744\/RcjzAYQT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650412271944863744\/RcjzAYQT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3000190752\/1444897014","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rin1119rin","name":"\u502b\u5b50","id":4159309453,"id_str":"4159309453","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716173262852,"id_str":"663727716173262852","text":"Oh my gosh this scene\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude4c\ud83c\udffd\ud83d\ude4c\ud83c\udffd\ud83d\ude4c\ud83c\udffd\ud83d\ude4c\ud83c\udffd\ud83d\ude4c\ud83c\udffd https:\/\/t.co\/jqS3mpe6Im","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381191006,"id_str":"381191006","name":"Cailyn Kootz","screen_name":"CailynKootz","location":"chipotle & chillin","url":null,"description":"Don't pity the dead, pity the living. All men must die.","protected":false,"verified":false,"followers_count":422,"friends_count":232,"listed_count":2,"favourites_count":30624,"statuses_count":6445,"created_at":"Tue Sep 27 22:14:36 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658767883720331264\/NOWCjzjO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658767883720331264\/NOWCjzjO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381191006\/1445047746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":658120031746654208,"quoted_status_id_str":"658120031746654208","quoted_status":{"created_at":"Sun Oct 25 03:16:57 +0000 2015","id":658120031746654208,"id_str":"658120031746654208","text":"I always found this part of toy story 2 so oddly satisfying \ud83d\ude0d https:\/\/t.co\/1n2gZBR5c3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2934211394,"id_str":"2934211394","name":"OCD","screen_name":"OCDthings","location":null,"url":null,"description":"Just for fun! I don't claim to own the content I post. I'm protected by Fair Use Laws. Content removal requests: Zach@SloganSocial.com","protected":false,"verified":false,"followers_count":268089,"friends_count":82,"listed_count":201,"favourites_count":3,"statuses_count":748,"created_at":"Thu Dec 18 02:25:23 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"333333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643247805897637888\/1BkE1cLE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643247805897637888\/1BkE1cLE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2934211394\/1430865690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658120028055691264,"id_str":"658120028055691264","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CSIcrbvUYAAcKlJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSIcrbvUYAAcKlJ.jpg","url":"https:\/\/t.co\/1n2gZBR5c3","display_url":"pic.twitter.com\/1n2gZBR5c3","expanded_url":"http:\/\/twitter.com\/OCDthings\/status\/658120031746654208\/photo\/1","type":"photo","sizes":{"large":{"w":460,"h":258,"resize":"fit"},"medium":{"w":460,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658120028055691264,"id_str":"658120028055691264","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CSIcrbvUYAAcKlJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSIcrbvUYAAcKlJ.jpg","url":"https:\/\/t.co\/1n2gZBR5c3","display_url":"pic.twitter.com\/1n2gZBR5c3","expanded_url":"http:\/\/twitter.com\/OCDthings\/status\/658120031746654208\/photo\/1","type":"photo","sizes":{"large":{"w":460,"h":258,"resize":"fit"},"medium":{"w":460,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}},{"id":658120028244439040,"id_str":"658120028244439040","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CSIcrccUcAA56iL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSIcrccUcAA56iL.jpg","url":"https:\/\/t.co\/1n2gZBR5c3","display_url":"pic.twitter.com\/1n2gZBR5c3","expanded_url":"http:\/\/twitter.com\/OCDthings\/status\/658120031746654208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":658120028387082240,"id_str":"658120028387082240","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CSIcrc-VAAAhILq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSIcrc-VAAAhILq.jpg","url":"https:\/\/t.co\/1n2gZBR5c3","display_url":"pic.twitter.com\/1n2gZBR5c3","expanded_url":"http:\/\/twitter.com\/OCDthings\/status\/658120031746654208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":853,"h":479,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jqS3mpe6Im","expanded_url":"https:\/\/twitter.com\/ocdthings\/status\/658120031746654208","display_url":"twitter.com\/ocdthings\/stat\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993657"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716211015681,"id_str":"663727716211015681","text":"RT @Rauriss: #\u062c\u064a\u062b\u0631\u0648\u0646 #\u0647\u0648\u0644\u0646\u062f\u0627 \n\n.. \u0634\u062a\u0627\u0621 2012\n\nN 52 43.633\nE 006 05.374 https:\/\/t.co\/27xU50Hpor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300813780,"id_str":"3300813780","name":"\u0625\u0643\u062a\u0641\u0627\u0621 ~\u2765","screen_name":"_____oi2","location":null,"url":null,"description":"\u0648\u0627\u0630\u0627 \u062c\u064a\u0640\u0640\u0640\u0640\u0646\u0653\u0640\u0640\u0640\u0640\u0627 \u0644\u0637\u0627\u0631\u064a \u0627\u0644\u062d\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0628 !! \u0627\u0646\u0640\u0640\u0640\u0640\u0640\u0640\u0627 \u062d\u062c\u0627\u0632\u064a\u0647 \u0648 \u0645\u062d\u0628\u0648\u0628\u064a \u0634\u0645\u0627\u0644\u064a","protected":false,"verified":false,"followers_count":3739,"friends_count":4111,"listed_count":3,"favourites_count":11,"statuses_count":3147,"created_at":"Wed Jul 29 20:45:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300813780\/1444239042","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 14:51:15 +0000 2015","id":660469086116179969,"id_str":"660469086116179969","text":"#\u062c\u064a\u062b\u0631\u0648\u0646 #\u0647\u0648\u0644\u0646\u062f\u0627 \n\n.. \u0634\u062a\u0627\u0621 2012\n\nN 52 43.633\nE 006 05.374 https:\/\/t.co\/27xU50Hpor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193741686,"id_str":"3193741686","name":"\u0631\u0627\u0648\u0631\u064a\u0633","screen_name":"Rauriss","location":"Interlaken, Bern","url":null,"description":"\u0645\u0631\u0634\u062f \u0633\u064a\u0627\u062d\u064a \u0627\u062d\u064a\u0627\u0646\u0627\u064b","protected":false,"verified":false,"followers_count":3106,"friends_count":35,"listed_count":33,"favourites_count":151,"statuses_count":1329,"created_at":"Wed May 13 01:35:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648193120371216384\/gm6lC9a8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648193120371216384\/gm6lC9a8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193741686\/1432481707","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":20,"entities":{"hashtags":[{"text":"\u062c\u064a\u062b\u0631\u0648\u0646","indices":[0,7]},{"text":"\u0647\u0648\u0644\u0646\u062f\u0627","indices":[8,15]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660469064104460288,"id_str":"660469064104460288","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","url":"https:\/\/t.co\/27xU50Hpor","display_url":"pic.twitter.com\/27xU50Hpor","expanded_url":"http:\/\/twitter.com\/Rauriss\/status\/660469086116179969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":556,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":751,"h":697,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660469064104460288,"id_str":"660469064104460288","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","url":"https:\/\/t.co\/27xU50Hpor","display_url":"pic.twitter.com\/27xU50Hpor","expanded_url":"http:\/\/twitter.com\/Rauriss\/status\/660469086116179969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":556,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":751,"h":697,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u064a\u062b\u0631\u0648\u0646","indices":[13,20]},{"text":"\u0647\u0648\u0644\u0646\u062f\u0627","indices":[21,28]}],"urls":[],"user_mentions":[{"screen_name":"Rauriss","name":"\u0631\u0627\u0648\u0631\u064a\u0633","id":3193741686,"id_str":"3193741686","indices":[3,11]}],"symbols":[],"media":[{"id":660469064104460288,"id_str":"660469064104460288","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","url":"https:\/\/t.co\/27xU50Hpor","display_url":"pic.twitter.com\/27xU50Hpor","expanded_url":"http:\/\/twitter.com\/Rauriss\/status\/660469086116179969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":556,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":751,"h":697,"resize":"fit"}},"source_status_id":660469086116179969,"source_status_id_str":"660469086116179969","source_user_id":3193741686,"source_user_id_str":"3193741686"}]},"extended_entities":{"media":[{"id":660469064104460288,"id_str":"660469064104460288","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp1HU8UwAAioPi.jpg","url":"https:\/\/t.co\/27xU50Hpor","display_url":"pic.twitter.com\/27xU50Hpor","expanded_url":"http:\/\/twitter.com\/Rauriss\/status\/660469086116179969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":556,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":751,"h":697,"resize":"fit"}},"source_status_id":660469086116179969,"source_status_id_str":"660469086116179969","source_user_id":3193741686,"source_user_id_str":"3193741686"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079993666"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716177453056,"id_str":"663727716177453056","text":"\u0645\u062a\u0639\u0627\u0637\u0641\u064a\u0646 \u0645\u0639\u0627\u0647 \u0639\u0634\u0627\u0646 \u0628\u064a\u0627\u0643\u0644\u0648\u0627 \u0645\u0646 \u0648\u0631\u0627\u0647 \u0639\u064a\u0634 @kokydraz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663663650520096768,"in_reply_to_status_id_str":"663663650520096768","in_reply_to_user_id":1099129800,"in_reply_to_user_id_str":"1099129800","in_reply_to_screen_name":"kokydraz","user":{"id":517272774,"id_str":"517272774","name":"\u0645\u062d\u0645\u062f \u0633\u064a\u062f","screen_name":"MohamedSayedM13","location":"\u0627\u0644\u0642\u0627\u0647\u0631\u0629","url":null,"description":"\u0627\u0646\u0627 \u0645\u0648\u0627\u0637\u0646 \u0645\u0635\u0631\u064a \u0648\u0646\u0641\u0633\u064a \u064a\u0643\u0648\u0646 \u0639\u0646\u062f\u064a \u062d\u0642\u0648\u0642 \u0627\u064a \u0628\u0644\u062f \u062a\u0627\u0646\u064a\u0647 \u063a\u064a\u0631 \u0627\u0644\u0645\u0635\u0631\u064a\u0629 :-D :-D","protected":false,"verified":false,"followers_count":35,"friends_count":738,"listed_count":1,"favourites_count":265,"statuses_count":635,"created_at":"Wed Mar 07 06:12:34 +0000 2012","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663026292082810880\/c1dwtIkk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663026292082810880\/c1dwtIkk.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027651955793920\/hWHk9Ujq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027651955793920\/hWHk9Ujq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517272774\/1446913042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01d0cd182297354e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01d0cd182297354e.json","place_type":"admin","name":"\u0627\u0644\u0642\u0627\u0647\u0631\u0629","full_name":"\u0627\u0644\u0642\u0627\u0647\u0631\u0629, \u0645\u0635\u0631","country_code":"EG","country":"\u0645\u0635\u0631","bounding_box":{"type":"Polygon","coordinates":[[[31.200959,28.963851],[31.200959,30.228647],[31.940253,30.228647],[31.940253,28.963851]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kokydraz","name":"\u062e\u062f\u0648\u0627 \u0628\u0627\u0644\u0643\u0648\u0627 \u062f\u0649 \u0645\u0635\u0631","id":1099129800,"id_str":"1099129800","indices":[39,48]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079993658"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185874434,"id_str":"663727716185874434","text":"@Sonozaki_mie \u30d3\u30fc\u30eb\u3058\u3083\u306a\u304b\u3002\u305d\u308c\u306f...\u30a6\u30a3\u30b9\u30ad\u30fc\u306e\u30c9\u30ea\u30f3\u30af\u304b\u3082\u3057\u308c\u307e\u305b\u3093\uff1f (>.>)'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721572465668097,"in_reply_to_status_id_str":"663721572465668097","in_reply_to_user_id":80544545,"in_reply_to_user_id_str":"80544545","in_reply_to_screen_name":"Sonozaki_mie","user":{"id":207030541,"id_str":"207030541","name":"Karol H","screen_name":"Karolh84","location":"North-Eastern Poland\/\u5317\u6771\u30dd\u30fc\u30e9\u30f3\u30c9","url":"http:\/\/www.facebook.com\/Karol8410","description":null,"protected":false,"verified":false,"followers_count":121,"friends_count":203,"listed_count":1,"favourites_count":1042,"statuses_count":5879,"created_at":"Sun Oct 24 10:33:58 +0000 2010","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"24253B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542513582290661377\/FTXGqHRv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542513582290661377\/FTXGqHRv.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649658196198453248\/5B_fhb0m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649658196198453248\/5B_fhb0m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207030541\/1444606928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d9074951d5976bdf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d9074951d5976bdf.json","place_type":"country","name":"Poland","full_name":"Poland","country_code":"PL","country":"Polska","bounding_box":{"type":"Polygon","coordinates":[[[14.122353,49.001810],[14.122353,54.835641],[24.147201,54.835641],[24.147201,49.001810]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sonozaki_mie","name":"\u5712\u5d0e\u672a\u6075\uff0a12\/5\u5bb6\u5b88\u7dba\u8b5a@\u30e9\u30fb\u30ab\u30fc\u30cb\u30e3","id":80544545,"id_str":"80544545","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716177317892,"id_str":"663727716177317892","text":"Keeping your attention on the here and now could be tricky bus... More for Aquarius https:\/\/t.co\/M5sU61J6Xo","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1187206843,"id_str":"1187206843","name":"hava","screen_name":"lmjzquad","location":"a \u2022 mp","url":"http:\/\/ilovejuliette.com","description":"29.04","protected":false,"verified":false,"followers_count":5008,"friends_count":615,"listed_count":67,"favourites_count":19512,"statuses_count":73257,"created_at":"Sat Feb 16 19:22:24 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663018587792257024\/gNwyVS4Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663018587792257024\/gNwyVS4Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1187206843\/1446910924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M5sU61J6Xo","expanded_url":"http:\/\/bit.ly\/whBNNw","display_url":"bit.ly\/whBNNw","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993658"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716202496001,"id_str":"663727716202496001","text":"RT @0rui: \u306b\u3087\u30b5\u30a4\u30bf\u30de https:\/\/t.co\/8WnMT2LH9Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1182777924,"id_str":"1182777924","name":"\u3131\u3142\u3142","screen_name":"marulover00","location":null,"url":null,"description":"\ub8ec\uc2ac\ucd5c\uc560 \uadf8\ub9ac\uace0 \uc7a1\ub355\uc7a1\ub355\uc7a1\uc7a1\uc7a1\ub355 \/ \ub9ac\ubc84\uc2dc\ube14 \ube14\uc5b8\ube14\ud504\ub9ac","protected":false,"verified":false,"followers_count":51,"friends_count":80,"listed_count":0,"favourites_count":4387,"statuses_count":4602,"created_at":"Fri Feb 15 14:22:43 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662872180028370945\/GfKzF5OV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662872180028370945\/GfKzF5OV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1182777924\/1445959002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 07:33:10 +0000 2015","id":661446003485073408,"id_str":"661446003485073408","text":"\u306b\u3087\u30b5\u30a4\u30bf\u30de https:\/\/t.co\/8WnMT2LH9Y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167707898,"id_str":"167707898","name":"\u30eb\u30a4","screen_name":"0rui","location":"\u627f\u592a\u90ce\u306e\u304a\u3071\u3093\u3066\u3043","url":null,"description":"\u4e0b\u54c1\u306a\u767a\u8a00\u3059\u308b\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306f\u81ea\u5df1\u8cac\u4efb\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u982d\u306e\u3066\u3063\u307a\u3093\u304b\u3089\u3064\u307e\u5148\u307e\u3067\u8150\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":4539,"friends_count":163,"listed_count":125,"favourites_count":1065,"statuses_count":45839,"created_at":"Sat Jul 17 08:09:44 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/693255678\/8afac3a46f8b57cf559a61684a6ed8f5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/693255678\/8afac3a46f8b57cf559a61684a6ed8f5.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447708223701651457\/28yVUfyV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447708223701651457\/28yVUfyV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167707898\/1351082483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1251,"favorite_count":1457,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661446002528776192,"id_str":"661446002528776192","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","url":"https:\/\/t.co\/8WnMT2LH9Y","display_url":"pic.twitter.com\/8WnMT2LH9Y","expanded_url":"http:\/\/twitter.com\/0rui\/status\/661446003485073408\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1200,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":661446002528776192,"id_str":"661446002528776192","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","url":"https:\/\/t.co\/8WnMT2LH9Y","display_url":"pic.twitter.com\/8WnMT2LH9Y","expanded_url":"http:\/\/twitter.com\/0rui\/status\/661446003485073408\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1200,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0rui","name":"\u30eb\u30a4","id":167707898,"id_str":"167707898","indices":[3,8]}],"symbols":[],"media":[{"id":661446002528776192,"id_str":"661446002528776192","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","url":"https:\/\/t.co\/8WnMT2LH9Y","display_url":"pic.twitter.com\/8WnMT2LH9Y","expanded_url":"http:\/\/twitter.com\/0rui\/status\/661446003485073408\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1200,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661446003485073408,"source_status_id_str":"661446003485073408","source_user_id":167707898,"source_user_id_str":"167707898"}]},"extended_entities":{"media":[{"id":661446002528776192,"id_str":"661446002528776192","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tooLUcAAOeOl.png","url":"https:\/\/t.co\/8WnMT2LH9Y","display_url":"pic.twitter.com\/8WnMT2LH9Y","expanded_url":"http:\/\/twitter.com\/0rui\/status\/661446003485073408\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1200,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661446003485073408,"source_status_id_str":"661446003485073408","source_user_id":167707898,"source_user_id_str":"167707898"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993664"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206669824,"id_str":"663727716206669824","text":"RT @lizasoberanaway: Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3977517613,"id_str":"3977517613","name":"Khalifa Naught","screen_name":"NaughtKhalifa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":2,"listed_count":5,"favourites_count":1,"statuses_count":23412,"created_at":"Thu Oct 22 06:47:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657671815951597568\/6Qz0amTi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657671815951597568\/6Qz0amTi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3977517613\/1445559830","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:28 +0000 2015","id":663723079135158272,"id_str":"663723079135158272","text":"Mga nagcoconfirm \u2764\n\nLiza TheMostBeautiful https:\/\/t.co\/jHUbml1QYv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230915917,"id_str":"230915917","name":"imee","screen_name":"lizasoberanaway","location":null,"url":null,"description":"Everyday, I love you still showing in cinemas nationwide! \u2665","protected":false,"verified":false,"followers_count":2021,"friends_count":236,"listed_count":8,"favourites_count":7932,"statuses_count":24675,"created_at":"Mon Dec 27 02:33:22 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629652045352452096\/d_3TjgHh.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662783957172289536\/KqI3J9_x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230915917\/1446220492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":105,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lizasoberanaway","name":"imee","id":230915917,"id_str":"230915917","indices":[3,19]}],"symbols":[],"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"extended_entities":{"media":[{"id":663723059241578497,"id_str":"663723059241578497","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEmxdUcAEvYOI.jpg","url":"https:\/\/t.co\/jHUbml1QYv","display_url":"pic.twitter.com\/jHUbml1QYv","expanded_url":"http:\/\/twitter.com\/lizasoberanaway\/status\/663723079135158272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723079135158272,"source_status_id_str":"663723079135158272","source_user_id":230915917,"source_user_id_str":"230915917"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206690304,"id_str":"663727716206690304","text":"RT @____169cm: \u89aa\u77e5\u3089\u305a\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284789653,"id_str":"3284789653","name":"\u89aa\u77e5\u3089\u305a\u751f\u3048\u3066\u304d\u305f","screen_name":"snsd_81t","location":null,"url":null,"description":"\u3061\u3055\u3067\u3059\u3088\u3002\u30bd\u30cb\u30e7\u30b7\u30c7\u304c\u597d\u304d\u3059\u304e\u308b\u3060\u3051\u3002\u30bd\u30b7\u30b3\u30f312\/18\u53c2\u6226\u3002","protected":false,"verified":false,"followers_count":88,"friends_count":56,"listed_count":5,"favourites_count":105,"statuses_count":2065,"created_at":"Sun Jul 19 23:24:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654429692141830144\/LvWeMmKp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654429692141830144\/LvWeMmKp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284789653\/1446385925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:11 +0000 2015","id":663727288870002688,"id_str":"663727288870002688","text":"\u89aa\u77e5\u3089\u305a\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4122202645,"id_str":"4122202645","name":"\u30b9\u30ca\u30ae\u30e2","screen_name":"____169cm","location":null,"url":null,"description":"\u305f\u3060\u306e 15\u30b5\u30a4 \uff01\uff01 \u30ef\u30b5\u30d3\u5473\u306e\u67ff\u306e\u7a2e","protected":false,"verified":false,"followers_count":17,"friends_count":26,"listed_count":0,"favourites_count":126,"statuses_count":462,"created_at":"Wed Nov 04 08:45:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662962487889825792\/AoYCLRuc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662962487889825792\/AoYCLRuc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4122202645\/1446626961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"____169cm","name":"\u30b9\u30ca\u30ae\u30e2","id":4122202645,"id_str":"4122202645","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716198404096,"id_str":"663727716198404096","text":"RT @Algerianesque: Les batards ils ont dit Kevser il a 35 femmes au Kosovo c'est l'h\u00e9ritier de la mafia son 2eme nom c'est kalash \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781844240,"id_str":"2781844240","name":"chomagl","screen_name":"Issa_du94","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3410,"friends_count":2814,"listed_count":5,"favourites_count":2806,"statuses_count":10856,"created_at":"Tue Sep 23 20:52:18 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660272021151027200\/mEr4oG5a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660272021151027200\/mEr4oG5a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781844240\/1445727270","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:12 +0000 2015","id":663723517578518528,"id_str":"663723517578518528","text":"Les batards ils ont dit Kevser il a 35 femmes au Kosovo c'est l'h\u00e9ritier de la mafia son 2eme nom c'est kalash \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2778972301,"id_str":"2778972301","name":"UchiHass","screen_name":"Algerianesque","location":"konoha, algeria","url":null,"description":"Tuez moi avant que j'devienne comme vous.","protected":false,"verified":false,"followers_count":1817,"friends_count":800,"listed_count":9,"favourites_count":2366,"statuses_count":41977,"created_at":"Fri Aug 29 18:40:04 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569892528803966976\/3O8Wv2FM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569892528803966976\/3O8Wv2FM.jpeg","profile_background_tile":true,"profile_link_color":"866C64","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660765400741912577\/AlZDTaAh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660765400741912577\/AlZDTaAh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778972301\/1446757710","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Algerianesque","name":"UchiHass","id":2778972301,"id_str":"2778972301","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079993663"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716181512192,"id_str":"663727716181512192","text":"@jovajov okee","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727260210348033,"in_reply_to_status_id_str":"663727260210348033","in_reply_to_user_id":144739617,"in_reply_to_user_id_str":"144739617","in_reply_to_screen_name":"jovajov","user":{"id":551746915,"id_str":"551746915","name":"SigitPrastyoNugroho","screen_name":"SigitMancuung","location":"Bogor","url":null,"description":null,"protected":false,"verified":false,"followers_count":875,"friends_count":280,"listed_count":0,"favourites_count":30,"statuses_count":5173,"created_at":"Thu Apr 12 10:37:29 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735151750\/f8aad46e741c41a42393ee29552f2883.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735151750\/f8aad46e741c41a42393ee29552f2883.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657213287164018688\/dV5kX-8L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657213287164018688\/dV5kX-8L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551746915\/1431857620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jovajov","name":"Jovanna","id":144739617,"id_str":"144739617","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993659"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206706692,"id_str":"663727716206706692","text":"(.\u30fb\u03b6\u03c9\u30fb)<\u3042\uff5e\u3063\/\/\/\/\n(\uff40\uff21\u00b4)<\u3069\u3001\u3069\u3046\u3057\u305f\uff01\uff1f\n(.\u30fb\u03b6\u03c9\u30fb)<\u306e\u3069\u25cf\u30fc\u308b\u30b9\u30d7\u30ec\u30fc\u5674\u5c04\u3057\u3066\u307e\u3057\u305f\n(\uff40\uff21\u00b4)\u3064<\u7d1b\u3089\u308f\u3057\u3044\u58f0\u3092\u51fa\u3059\u306a\uff01\n(.\u30fb\u03b6\u03c9\u30fb)<\u3042\u308b\u3058\u306a\u3093\u3067\u524d\u5c48\u307f\u306a\u3093\u3067\u3059\u304b\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1254658166,"id_str":"1254658166","name":"\u3042\u3093\u306b\u3093\u5b85\u69cd\u9663\u55b6bot","screen_name":"annn_lancer_bot","location":"(.\u30fb\u03b6\u03c9\u30fb)\u3042\u308b\u3058\u306e\u307b\u3063\u305d\u3044\u6bdb\u6839\u90e8\u5206","url":"http:\/\/twpf.jp\/annn_lancer_bot","description":"\u3042\u3093\u306b\u3093(@bktannn)\u306e\u3057\u3087\u30fc\u3082\u306a\u3044\u69cd\u9663\u55b6\u4f1a\u8a71\u3092\u307e\u3068\u3081\u305f\u3060\u3051\u306e\u7c21\u5358\u306abot\u3067\u3059\u3002\u30ad\u30e3\u30e9\u5d29\u58ca\u6ce8\u610f\u3002\u30a2\u30af\u306e\u5f37\u3044bot\u3067\u3059\u306e\u3067\u3001\u30d7\u30ed\u30d5\u3092\u4e00\u8aad\u3057\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\u307b\u3093\u306e\u308a\u30b1\u30a4\u30c7\u30a3\u30eb\u5473\u3002\n(.\u30fb\u03b6\u03c9\u30fb)\u30a2\u30a4\u30b3\u30f3\u306f\u3051\u308b\u308b\u3055\u3093\u3010@948c292957e7426 \u3011\u306b\u63cf\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3088\u3042\u308b\u3058\uff01","protected":false,"verified":false,"followers_count":38,"friends_count":36,"listed_count":2,"favourites_count":2,"statuses_count":13572,"created_at":"Sat Mar 09 15:31:55 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558072595019739136\/j-ZHRVla_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558072595019739136\/j-ZHRVla_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206706689,"id_str":"663727716206706689","text":"@hesyourslwt ok good i wwould have thrown my self out a window real quick","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727625639174144,"in_reply_to_status_id_str":"663727625639174144","in_reply_to_user_id":1131872533,"in_reply_to_user_id_str":"1131872533","in_reply_to_screen_name":"hesyourslwt","user":{"id":2232288326,"id_str":"2232288326","name":"tori loves her boys","screen_name":"lubricantlouis","location":null,"url":"https:\/\/twitter.com\/lubricantlouis\/status\/663125226335551488","description":"IF YOU THINK LOUIS IS ACTUALLY GONNA BE THE DAD OF BRIANA JUNGLEWORMS BABY PLEASE BLOCK ME QUICK","protected":false,"verified":false,"followers_count":16924,"friends_count":6941,"listed_count":28,"favourites_count":7914,"statuses_count":15399,"created_at":"Fri Dec 06 01:53:20 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662824346566586368\/sDk6XRDy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662824346566586368\/sDk6XRDy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2232288326\/1446864591","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hesyourslwt","name":"Lami(ja) Iman..,","id":1131872533,"id_str":"1131872533","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716206792705,"id_str":"663727716206792705","text":"RT @leafano: \uc624\ub298\uc740 \uc774\uac78\ub85c \uac08\uac8c\uc694\ud83d\ude2d\ud83d\ude4f https:\/\/t.co\/B9wCBqBHZ6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2870404615,"id_str":"2870404615","name":"\uae40\uc11c\uc9c4","screen_name":"skybluevega","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":399,"listed_count":0,"favourites_count":1499,"statuses_count":421,"created_at":"Wed Oct 22 07:10:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652665125292408832\/Q1wdvkWV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652665125292408832\/Q1wdvkWV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2870404615\/1443501485","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 12:54:29 +0000 2015","id":660439699345960960,"id_str":"660439699345960960","text":"\uc624\ub298\uc740 \uc774\uac78\ub85c \uac08\uac8c\uc694\ud83d\ude2d\ud83d\ude4f https:\/\/t.co\/B9wCBqBHZ6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1029890424,"id_str":"1029890424","name":"\uae68","screen_name":"leafano","location":null,"url":"http:\/\/ddol2.woweb.net\/exo","description":"FUB free \/ KAI\u2665D.O \/ Do not QT\u270b \u2502 \ub9c9\ub358\uc9d0\uc8fc\uc758 RPS \uc8fc\uc758 \/ \ud63c\uc790 \uc790\uc8fc\ub5a0\ub4ec \uba58\uc158 \ubabb\ubcfc\ub54c \uc788\uc74c","protected":false,"verified":false,"followers_count":13534,"friends_count":170,"listed_count":141,"favourites_count":11237,"statuses_count":4142,"created_at":"Sun Dec 23 05:11:54 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000103587869\/a21b657cd5acef946b040e05ad57d5a9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000103587869\/a21b657cd5acef946b040e05ad57d5a9.jpeg","profile_background_tile":true,"profile_link_color":"E7DBBC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649941123868176384\/MKv06zbx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649941123868176384\/MKv06zbx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029890424\/1398401034","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660439698200854528,"id_str":"660439698200854528","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660439698200854528,"id_str":"660439698200854528","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":660439698184101888,"id_str":"660439698184101888","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAXUYAA5yKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAXUYAA5yKs.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leafano","name":"\uae68","id":1029890424,"id_str":"1029890424","indices":[3,11]}],"symbols":[],"media":[{"id":660439698200854528,"id_str":"660439698200854528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660439699345960960,"source_status_id_str":"660439699345960960","source_user_id":1029890424,"source_user_id_str":"1029890424"}]},"extended_entities":{"media":[{"id":660439698200854528,"id_str":"660439698200854528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAbUAAA30xW.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660439699345960960,"source_status_id_str":"660439699345960960","source_user_id":1029890424,"source_user_id_str":"1029890424"},{"id":660439698184101888,"id_str":"660439698184101888","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CSpaaAXUYAA5yKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSpaaAXUYAA5yKs.jpg","url":"https:\/\/t.co\/B9wCBqBHZ6","display_url":"pic.twitter.com\/B9wCBqBHZ6","expanded_url":"http:\/\/twitter.com\/leafano\/status\/660439699345960960\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660439699345960960,"source_status_id_str":"660439699345960960","source_user_id":1029890424,"source_user_id_str":"1029890424"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079993665"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185866240,"id_str":"663727716185866240","text":"She took the red pill...via @lruettimann I Love Kris Dunn and John Hollon https:\/\/t.co\/kcMinVQ2Zq","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19343643,"id_str":"19343643","name":"Tim Sackett SCP,SPHR","screen_name":"TimSackett","location":"Lansing, MI","url":"http:\/\/www.TimSackett.com","description":"Human Resource Pro, http:\/\/HRU-tech.com, Fistful of Talent Blogger; Dad of 3 boys and husband of Hall of Fame wife. World's foremost expert on Hugging.","protected":false,"verified":false,"followers_count":27182,"friends_count":5630,"listed_count":1060,"favourites_count":4718,"statuses_count":17426,"created_at":"Thu Jan 22 15:45:54 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"789654","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/24559023\/grass-field.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/24559023\/grass-field.jpg","profile_background_tile":true,"profile_link_color":"000795","profile_sidebar_border_color":"1F89A6","profile_sidebar_fill_color":"1F89A6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2702313930\/330feba29e043687c40154c1456114b2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2702313930\/330feba29e043687c40154c1456114b2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19343643\/1349887517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kcMinVQ2Zq","expanded_url":"http:\/\/dld.bz\/dZMKw","display_url":"dld.bz\/dZMKw","indices":[74,97]}],"user_mentions":[{"screen_name":"lruettimann","name":"Laurie Ruettimann","id":7099112,"id_str":"7099112","indices":[28,40]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716202491904,"id_str":"663727716202491904","text":"\u982d\u83ef\u90a3\u7bad\u502d\u4e9b\u8987\u947c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2201081042,"id_str":"2201081042","name":"ISAMU","screen_name":"ISAMU_TAccount","location":"\u65e5\u672c\uff08Japan\uff09 ","url":"https:\/\/Twitter.COM\/ISAMU_TAccount\/","description":"\u6e05\u7d14\u6d3e\u4e2d\u5b66\u751f\u30028\u67087\u65e5\u751f\u307e\u308c\u306e15\u6b73\u3002A\u578b\u300212.24 X","protected":false,"verified":false,"followers_count":1071,"friends_count":2007,"listed_count":0,"favourites_count":111,"statuses_count":2371,"created_at":"Mon Nov 18 10:39:36 +0000 2013","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662836839024230400\/cHov17jF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662836839024230400\/cHov17jF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201081042\/1446988350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"zh","timestamp_ms":"1447079993664"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210860032,"id_str":"663727716210860032","text":"\u0e23\u0e39\u0e49\u0e21\u0e31\u0e49\u0e22\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e49\u0e32\u0e07\u0e46\u0e01\u0e31\u0e19\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e21\u0e31\u0e19\u0e14\u0e35\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19:-) #\u0e15\u0e49\u0e19\u0e40\u0e08 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e17\u0e34\u0e49\u0e07\u0e43\u0e2b\u0e49\u0e2d\u0e35\u0e01\u0e04\u0e19\u0e42\u0e14\u0e14\u0e40\u0e14\u0e35\u0e48\u0e22\u0e27 \u00a9 Thailand National Team Gallery https:\/\/t.co\/WactFL1KKb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208034490,"id_str":"208034490","name":"` o w l x i a \u221e","screen_name":"auntie0wl926","location":"BKK","url":"http:\/\/nine2sixfiction.blogspot.com\/","description":"` till we meet again | an ordinary fangirl & football addicted | camera. movies. journey. \u2606 #Cassiopeia & #CheerThailand as good as I can \u2661","protected":false,"verified":false,"followers_count":388,"friends_count":197,"listed_count":2,"favourites_count":240,"statuses_count":54621,"created_at":"Tue Oct 26 14:12:39 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493363565605040129\/g9t-QkjK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493363565605040129\/g9t-QkjK.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9E601E","profile_text_color":"C4960C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661886748868214784\/CrxkvR7q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661886748868214784\/CrxkvR7q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208034490\/1444830076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e15\u0e49\u0e19\u0e40\u0e08","indices":[40,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079993666"} +{"delete":{"status":{"id":662242018207264768,"id_str":"662242018207264768","user_id":3139145490,"user_id_str":"3139145490"},"timestamp_ms":"1447079993963"}} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716194058240,"id_str":"663727716194058240","text":"OH FUCK YES IAN THANKS FOR BLESSING MY TL https:\/\/t.co\/cmviHS0vEi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1450090418,"id_str":"1450090418","name":"\ufe0f","screen_name":"humpzjm","location":"noe jade","url":null,"description":"@Tomllinsyndrome: @humpzjm god gave me u show me whats real","protected":false,"verified":false,"followers_count":5708,"friends_count":287,"listed_count":17,"favourites_count":24025,"statuses_count":44132,"created_at":"Wed May 22 23:14:16 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663071491118927872\/gAsRchP4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663071491118927872\/gAsRchP4.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663605133998030848\/lVxNCB-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663605133998030848\/lVxNCB-G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450090418\/1447050764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726304429150208,"quoted_status_id_str":"663726304429150208","quoted_status":{"created_at":"Mon Nov 09 14:34:17 +0000 2015","id":663726304429150208,"id_str":"663726304429150208","text":"https:\/\/t.co\/nUAJ4TKB3V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1282438202,"id_str":"1282438202","name":"\ufe0f","screen_name":"juskoniall","location":"@stagewink ","url":"https:\/\/vine.co\/v\/OPxndBwim3Q","description":"youre dripping like a saturated sunrise @queenforharry NESPUTRAGES FOREVER","protected":false,"verified":false,"followers_count":33904,"friends_count":244,"listed_count":285,"favourites_count":47542,"statuses_count":178866,"created_at":"Wed Mar 20 05:53:00 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620168944377200640\/DuMsuFNK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620168944377200640\/DuMsuFNK.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663494331404152832\/djrYV6BU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663494331404152832\/djrYV6BU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1282438202\/1447024351","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726254974042116,"id_str":"663726254974042116","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHgyfUAAQayy0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHgyfUAAQayy0.jpg","url":"https:\/\/t.co\/nUAJ4TKB3V","display_url":"pic.twitter.com\/nUAJ4TKB3V","expanded_url":"http:\/\/twitter.com\/juskoniall\/status\/663726304429150208\/photo\/1","type":"photo","sizes":{"large":{"w":474,"h":267,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":474,"h":267,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726254974042116,"id_str":"663726254974042116","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHgyfUAAQayy0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHgyfUAAQayy0.jpg","url":"https:\/\/t.co\/nUAJ4TKB3V","display_url":"pic.twitter.com\/nUAJ4TKB3V","expanded_url":"http:\/\/twitter.com\/juskoniall\/status\/663726304429150208\/photo\/1","type":"photo","sizes":{"large":{"w":474,"h":267,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":474,"h":267,"resize":"fit"}}},{"id":663726256408498177,"id_str":"663726256408498177","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHg31UEAEFNF5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHg31UEAEFNF5.jpg","url":"https:\/\/t.co\/nUAJ4TKB3V","display_url":"pic.twitter.com\/nUAJ4TKB3V","expanded_url":"http:\/\/twitter.com\/juskoniall\/status\/663726304429150208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1002,"h":564,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":663726257733959680,"id_str":"663726257733959680","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHg8xVAAA1oJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHg8xVAAA1oJ9.jpg","url":"https:\/\/t.co\/nUAJ4TKB3V","display_url":"pic.twitter.com\/nUAJ4TKB3V","expanded_url":"http:\/\/twitter.com\/juskoniall\/status\/663726304429150208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1002,"h":564,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":663726259139014656,"id_str":"663726259139014656","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhCAUcAAH7Nt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhCAUcAAH7Nt.jpg","url":"https:\/\/t.co\/nUAJ4TKB3V","display_url":"pic.twitter.com\/nUAJ4TKB3V","expanded_url":"http:\/\/twitter.com\/juskoniall\/status\/663726304429150208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1002,"h":564,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cmviHS0vEi","expanded_url":"https:\/\/twitter.com\/juskoniall\/status\/663726304429150208","display_url":"twitter.com\/juskoniall\/sta\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993662"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185808896,"id_str":"663727716185808896","text":"VIDEO BOKEP BARAT ANAK DENGAN BAPAK HOT https:\/\/t.co\/hhGGFHbvk2","source":"\u003ca href=\"http:\/\/tante77.gq\" rel=\"nofollow\"\u003etante77.gq\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3753954794,"id_str":"3753954794","name":"TINA","screen_name":"tinatons1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2097,"friends_count":1148,"listed_count":2,"favourites_count":0,"statuses_count":65890,"created_at":"Fri Oct 02 01:45:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649763522453245952\/MaWB0sJX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649763522453245952\/MaWB0sJX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3753954794\/1444711120","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hhGGFHbvk2","expanded_url":"https:\/\/tante77.gq\/2015\/09\/video-bokep-barat-anak-dengan-bapak-hot-2.html","display_url":"tante77.gq\/2015\/09\/video-\u2026","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079993660"} +{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716185694208,"id_str":"663727716185694208","text":"Photos: Ruth Kadiri steps out for AFRIFF opening ceremony in ZiZi Cardow\u00a0dress https:\/\/t.co\/INSxkYTeWy https:\/\/t.co\/RxOaFgkAvN","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":965851316,"id_str":"965851316","name":"KANI I'M UR GF \u2764","screen_name":"SugarMintKani","location":"HaRd To FiNd","url":"http:\/\/www.nashvibes.com","description":null,"protected":false,"verified":false,"followers_count":998,"friends_count":421,"listed_count":5,"favourites_count":3,"statuses_count":69295,"created_at":"Fri Nov 23 10:13:25 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651742088481144832\/aDV6_neO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651742088481144832\/aDV6_neO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/965851316\/1444222396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/INSxkYTeWy","expanded_url":"http:\/\/www.reportmusic.net\/photos-ruth-kadiri-steps-out-for-afriff-opening-ceremony-in-zizi-cardow-dress\/","display_url":"reportmusic.net\/photos-ruth-ka\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663727714986135552,"id_str":"663727714986135552","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1xdUkAAg3Br.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1xdUkAAg3Br.jpg","url":"https:\/\/t.co\/RxOaFgkAvN","display_url":"pic.twitter.com\/RxOaFgkAvN","expanded_url":"http:\/\/twitter.com\/SugarMintKani\/status\/663727716185694208\/photo\/1","type":"photo","sizes":{"large":{"w":280,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":280,"h":400,"resize":"fit"},"small":{"w":280,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727714986135552,"id_str":"663727714986135552","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1xdUkAAg3Br.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1xdUkAAg3Br.jpg","url":"https:\/\/t.co\/RxOaFgkAvN","display_url":"pic.twitter.com\/RxOaFgkAvN","expanded_url":"http:\/\/twitter.com\/SugarMintKani\/status\/663727716185694208\/photo\/1","type":"photo","sizes":{"large":{"w":280,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":280,"h":400,"resize":"fit"},"small":{"w":280,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079993660"} +{"delete":{"status":{"id":616185368442880004,"id_str":"616185368442880004","user_id":2679256826,"user_id_str":"2679256826"},"timestamp_ms":"1447079994445"}} +{"delete":{"status":{"id":659559253317779456,"id_str":"659559253317779456","user_id":2401530133,"user_id_str":"2401530133"},"timestamp_ms":"1447079994629"}} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720380153856,"id_str":"663727720380153856","text":"RT @Tobi4s_Eaton: S\u00f3lo faltan 3 d\u00edas para el primer tr\u00e1iler oficial de #Allegiant. https:\/\/t.co\/Ngqh9GICuu","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606613188,"id_str":"606613188","name":"#lovelyheart","screen_name":"kikax_3","location":"Portugal","url":null,"description":"I love One Direction,I realy like them. And now a Divergent fan,#fourtris4ever","protected":false,"verified":false,"followers_count":80,"friends_count":283,"listed_count":1,"favourites_count":8649,"statuses_count":563,"created_at":"Tue Jun 12 18:31:19 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577482898\/ov3aa8ybbw01i1j2indh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577482898\/ov3aa8ybbw01i1j2indh.jpeg","profile_background_tile":true,"profile_link_color":"ED0E0E","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644238927105269760\/MdkZ4dyk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644238927105269760\/MdkZ4dyk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606613188\/1442433506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:56 +0000 2015","id":663723451421745152,"id_str":"663723451421745152","text":"S\u00f3lo faltan 3 d\u00edas para el primer tr\u00e1iler oficial de #Allegiant. https:\/\/t.co\/Ngqh9GICuu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1450262851,"id_str":"1450262851","name":"Tobi4s Eaton","screen_name":"Tobi4s_Eaton","location":"Facci\u00f3n Osadia.","url":"https:\/\/m.facebook.com\/profile.php?id=388191721357334","description":"NOTICIAS Y ACTIVIDADES DIVERGENTES. Tobias Eaton es un nombre poderoso. [PARODY \\ FAKE] Trilog\u00eda: #Divergente. Autor: @VeronicaRoth","protected":false,"verified":false,"followers_count":41804,"friends_count":6030,"listed_count":146,"favourites_count":4902,"statuses_count":4009,"created_at":"Thu May 23 01:07:46 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFDFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570608184910303232\/JbRPBlDA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570608184910303232\/JbRPBlDA.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650164571949297664\/ghiR02Vv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650164571949297664\/ghiR02Vv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450262851\/1424539488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":46,"entities":{"hashtags":[{"text":"Allegiant","indices":[53,63]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723446057213952,"id_str":"663723446057213952","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","url":"https:\/\/t.co\/Ngqh9GICuu","display_url":"pic.twitter.com\/Ngqh9GICuu","expanded_url":"http:\/\/twitter.com\/Tobi4s_Eaton\/status\/663723451421745152\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723446057213952,"id_str":"663723446057213952","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","url":"https:\/\/t.co\/Ngqh9GICuu","display_url":"pic.twitter.com\/Ngqh9GICuu","expanded_url":"http:\/\/twitter.com\/Tobi4s_Eaton\/status\/663723451421745152\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Allegiant","indices":[71,81]}],"urls":[],"user_mentions":[{"screen_name":"Tobi4s_Eaton","name":"Tobi4s Eaton","id":1450262851,"id_str":"1450262851","indices":[3,16]}],"symbols":[],"media":[{"id":663723446057213952,"id_str":"663723446057213952","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","url":"https:\/\/t.co\/Ngqh9GICuu","display_url":"pic.twitter.com\/Ngqh9GICuu","expanded_url":"http:\/\/twitter.com\/Tobi4s_Eaton\/status\/663723451421745152\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663723451421745152,"source_status_id_str":"663723451421745152","source_user_id":1450262851,"source_user_id_str":"1450262851"}]},"extended_entities":{"media":[{"id":663723446057213952,"id_str":"663723446057213952","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE9SdWoAAf1Wa.jpg","url":"https:\/\/t.co\/Ngqh9GICuu","display_url":"pic.twitter.com\/Ngqh9GICuu","expanded_url":"http:\/\/twitter.com\/Tobi4s_Eaton\/status\/663723451421745152\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663723451421745152,"source_status_id_str":"663723451421745152","source_user_id":1450262851,"source_user_id_str":"1450262851"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994660"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396939264,"id_str":"663727720396939264","text":"...\u0431\u0438\u0432\u0430\u043a\u0430 \u0431\u0443\u043a\u0432\u0430\u043b\u044c\u043d\u043e \u0437\u0430 \u043f\u044f\u0442\u043d\u0430\u0434\u0446\u0430\u0442\u044c \u043c\u0438\u043d\u0443\u0442. \u041e\u0431\u0435\u0434 \u0441\u043e\u0441\u0442\u043e\u044f\u043b \u0438\u0437 \u0441\u0430\u043b\u0430\u0442\u0430...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259103829,"id_str":"1259103829","name":"IrisDodd","screen_name":"IrisDodd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":60920,"created_at":"Mon Mar 11 10:13:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3602086726\/ccccf02746b477579529b207565f64aa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3602086726\/ccccf02746b477579529b207565f64aa_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079994664"} +{"delete":{"status":{"id":536545434013933570,"id_str":"536545434013933570","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079994639"}} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720375967744,"id_str":"663727720375967744","text":"RT @Conardeur: Putain, c'est beau.. I \u2764 Internet ! https:\/\/t.co\/g6VDoHHeHm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":566729588,"id_str":"566729588","name":"Fiquet","screen_name":"BriceFiquet","location":"Le Havre, Haute-Normandie","url":null,"description":null,"protected":false,"verified":false,"followers_count":72,"friends_count":53,"listed_count":1,"favourites_count":1537,"statuses_count":2602,"created_at":"Sun Apr 29 22:52:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663132722299346945\/X2MysOhp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663132722299346945\/X2MysOhp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/566729588\/1437599917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 08:43:29 +0000 2015","id":658926980889493504,"id_str":"658926980889493504","text":"Putain, c'est beau.. I \u2764 Internet ! https:\/\/t.co\/g6VDoHHeHm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160549407,"id_str":"160549407","name":"Le Conardeur","screen_name":"Conardeur","location":"Gen\u00e8ve, Suisse","url":"http:\/\/favstar.fm\/users\/conardeur","description":"Je suis superficiel, macho, narcissique, plagieur, riche, sociopathe et \u00e9gocentrique, mais rassurez-vous j\u2019ai aussi des d\u00e9fauts, mon humour... Snap: leconardeur","protected":false,"verified":false,"followers_count":35617,"friends_count":2177,"listed_count":357,"favourites_count":6222,"statuses_count":7804,"created_at":"Mon Jun 28 13:44:45 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606060453106712576\/klJfodYQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606060453106712576\/klJfodYQ.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619122946066485248\/EVO2zvDH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619122946066485248\/EVO2zvDH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160549407\/1436445430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":86,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658926685119750144,"id_str":"658926685119750144","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","url":"https:\/\/t.co\/g6VDoHHeHm","display_url":"pic.twitter.com\/g6VDoHHeHm","expanded_url":"http:\/\/twitter.com\/Conardeur\/status\/658926980889493504\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658926685119750144,"id_str":"658926685119750144","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","url":"https:\/\/t.co\/g6VDoHHeHm","display_url":"pic.twitter.com\/g6VDoHHeHm","expanded_url":"http:\/\/twitter.com\/Conardeur\/status\/658926980889493504\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":9900,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/vid\/240x240\/Q6b6JOyzsuLxJyO_.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/vid\/240x240\/Q6b6JOyzsuLxJyO_.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/pl\/h2e9aRPokeJYL9Y-.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/pl\/h2e9aRPokeJYL9Y-.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Conardeur","name":"Le Conardeur","id":160549407,"id_str":"160549407","indices":[3,13]}],"symbols":[],"media":[{"id":658926685119750144,"id_str":"658926685119750144","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","url":"https:\/\/t.co\/g6VDoHHeHm","display_url":"pic.twitter.com\/g6VDoHHeHm","expanded_url":"http:\/\/twitter.com\/Conardeur\/status\/658926980889493504\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":658926980889493504,"source_status_id_str":"658926980889493504","source_user_id":160549407,"source_user_id_str":"160549407"}]},"extended_entities":{"media":[{"id":658926685119750144,"id_str":"658926685119750144","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658926685119750144\/pu\/img\/Oi6z9ClQm5lyTxTk.jpg","url":"https:\/\/t.co\/g6VDoHHeHm","display_url":"pic.twitter.com\/g6VDoHHeHm","expanded_url":"http:\/\/twitter.com\/Conardeur\/status\/658926980889493504\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":658926980889493504,"source_status_id_str":"658926980889493504","source_user_id":160549407,"source_user_id_str":"160549407","video_info":{"aspect_ratio":[1,1],"duration_millis":9900,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/vid\/240x240\/Q6b6JOyzsuLxJyO_.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/vid\/240x240\/Q6b6JOyzsuLxJyO_.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/pl\/h2e9aRPokeJYL9Y-.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/658926685119750144\/pu\/pl\/h2e9aRPokeJYL9Y-.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079994659"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720388558848,"id_str":"663727720388558848","text":"RT @5SOS_Updates: How Did We End Up Here? [My 5SOS CD collection] \ud83d\ude3b\u2728\ud83d\udc4cx https:\/\/t.co\/UKqahGHTUV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116641641,"id_str":"116641641","name":"Katherine:)","screen_name":"ILovaticlifford","location":"i'm not sure","url":"https:\/\/twitter.com\/Luke5SOS\/status\/250858918463557632?s=09","description":"1996 \u2022 Bands are life, \u2022 You know is gonna get better\u2022| #AHS #MukeAf | [MichaelGirl\u2661]\u2022","protected":false,"verified":false,"followers_count":3512,"friends_count":3615,"listed_count":26,"favourites_count":3029,"statuses_count":96152,"created_at":"Tue Feb 23 04:43:05 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"12B8EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/505919328751861761\/LRAMpAa0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/505919328751861761\/LRAMpAa0.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651540826586222592\/XrI0PlgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651540826586222592\/XrI0PlgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116641641\/1442603573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:14:36 +0000 2015","id":663615658089926656,"id_str":"663615658089926656","text":"How Did We End Up Here? [My 5SOS CD collection] \ud83d\ude3b\u2728\ud83d\udc4cx https:\/\/t.co\/UKqahGHTUV","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1156344793,"id_str":"1156344793","name":"5SOS Updates","screen_name":"5SOS_Updates","location":"Australia","url":null,"description":"BUSINESS: Mgmt5SOS_Updates@hotmail.com | owner: @Skye5SOS | co-owner: @GrumpyEliza BUY SGFG: https:\/\/itun.es\/au\/WdIr9 \u2661 | @5SOS","protected":false,"verified":false,"followers_count":386071,"friends_count":33234,"listed_count":1345,"favourites_count":25965,"statuses_count":77480,"created_at":"Thu Feb 07 07:18:33 +0000 2013","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156344793\/1445643565","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3776,"favorite_count":6646,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UKqahGHTUV","expanded_url":"https:\/\/vine.co\/v\/elqpMKIJhx5","display_url":"vine.co\/v\/elqpMKIJhx5","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UKqahGHTUV","expanded_url":"https:\/\/vine.co\/v\/elqpMKIJhx5","display_url":"vine.co\/v\/elqpMKIJhx5","indices":[71,94]}],"user_mentions":[{"screen_name":"5SOS_Updates","name":"5SOS Updates","id":1156344793,"id_str":"1156344793","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994662"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384307200,"id_str":"663727720384307200","text":"RT @philippenis: white people will do shit like this but get scared when they see a man with a turban on a plane or a woman in hijab https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417058428,"id_str":"417058428","name":"Jacques","screen_name":"jay_split1","location":null,"url":null,"description":"Yo Soy Yo","protected":false,"verified":false,"followers_count":1606,"friends_count":972,"listed_count":5,"favourites_count":1186,"statuses_count":46561,"created_at":"Sun Nov 20 13:30:57 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2D5F8A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633857679\/6sfj7kb1dzgni8e69skr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633857679\/6sfj7kb1dzgni8e69skr.jpeg","profile_background_tile":true,"profile_link_color":"A200FF","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661142636204568576\/gXrj1KPK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661142636204568576\/gXrj1KPK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417058428\/1411198741","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:15:46 +0000 2015","id":663540450377252864,"id_str":"663540450377252864","text":"white people will do shit like this but get scared when they see a man with a turban on a plane or a woman in hijab https:\/\/t.co\/OIiAKNmx5u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175039092,"id_str":"175039092","name":"rhia","screen_name":"philippenis","location":"muscat","url":"http:\/\/ask.fm\/rhiamo","description":"i tweet a lot about sex, my boyfriend, and my tempestuous hatred for injustice","protected":false,"verified":false,"followers_count":41550,"friends_count":418,"listed_count":401,"favourites_count":9672,"statuses_count":99171,"created_at":"Thu Aug 05 13:31:55 +0000 2010","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/859972176\/d137e69c0023ffa6bd54c0227cd3bb81.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/859972176\/d137e69c0023ffa6bd54c0227cd3bb81.png","profile_background_tile":false,"profile_link_color":"8A8A8A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"807E6F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660161478931169280\/QGzlHgxn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660161478931169280\/QGzlHgxn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175039092\/1446223628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3260,"favorite_count":1588,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663540344840200192,"id_str":"663540344840200192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","url":"https:\/\/t.co\/OIiAKNmx5u","display_url":"pic.twitter.com\/OIiAKNmx5u","expanded_url":"http:\/\/twitter.com\/philippenis\/status\/663540450377252864\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":494,"resize":"fit"},"large":{"w":576,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":291,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663540344840200192,"id_str":"663540344840200192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","url":"https:\/\/t.co\/OIiAKNmx5u","display_url":"pic.twitter.com\/OIiAKNmx5u","expanded_url":"http:\/\/twitter.com\/philippenis\/status\/663540450377252864\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":494,"resize":"fit"},"large":{"w":576,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":291,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"philippenis","name":"rhia","id":175039092,"id_str":"175039092","indices":[3,15]}],"symbols":[],"media":[{"id":663540344840200192,"id_str":"663540344840200192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","url":"https:\/\/t.co\/OIiAKNmx5u","display_url":"pic.twitter.com\/OIiAKNmx5u","expanded_url":"http:\/\/twitter.com\/philippenis\/status\/663540450377252864\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":494,"resize":"fit"},"large":{"w":576,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663540450377252864,"source_status_id_str":"663540450377252864","source_user_id":175039092,"source_user_id_str":"175039092"}]},"extended_entities":{"media":[{"id":663540344840200192,"id_str":"663540344840200192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVebZRXIAA1sIG.jpg","url":"https:\/\/t.co\/OIiAKNmx5u","display_url":"pic.twitter.com\/OIiAKNmx5u","expanded_url":"http:\/\/twitter.com\/philippenis\/status\/663540450377252864\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":494,"resize":"fit"},"large":{"w":576,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663540450377252864,"source_status_id_str":"663540450377252864","source_user_id":175039092,"source_user_id_str":"175039092"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367390720,"id_str":"663727720367390720","text":"My big bossing \ud83d\udcf1\ud83c\udfa5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1042475862,"id_str":"1042475862","name":"tiger","screen_name":"Ailoveyou25","location":"Quezon City","url":null,"description":"Love yourself \u25ab\ufe0f Learn from Mistakes","protected":false,"verified":false,"followers_count":108,"friends_count":371,"listed_count":5,"favourites_count":1030,"statuses_count":5336,"created_at":"Fri Dec 28 15:40:34 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663321851783835648\/IhGebRcb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663321851783835648\/IhGebRcb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042475862\/1445625658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384237568,"id_str":"663727720384237568","text":"RT @WeLoveRobDyrdek: So cute \ud83d\ude01\ud83d\ude01 https:\/\/t.co\/SHu4neRCm1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2477659820,"id_str":"2477659820","name":"Ryan","screen_name":"1_Ryan_7","location":"Earth","url":null,"description":"snap chat: ryano5462","protected":false,"verified":false,"followers_count":137,"friends_count":393,"listed_count":0,"favourites_count":1740,"statuses_count":633,"created_at":"Mon May 05 01:49:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643266335468752896\/IlnaSrWa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643266335468752896\/IlnaSrWa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2477659820\/1445126455","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 03:23:12 +0000 2015","id":662107869454532609,"id_str":"662107869454532609","text":"So cute \ud83d\ude01\ud83d\ude01 https:\/\/t.co\/SHu4neRCm1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2238576858,"id_str":"2238576858","name":"Ridiculousness Fans","screen_name":"WeLoveRobDyrdek","location":null,"url":null,"description":"*not affiliated with @MTV's @Ridiculousness* *we do NOT own any of the content posted* *fan and parody account* warning: 18+ content","protected":false,"verified":false,"followers_count":1014129,"friends_count":5,"listed_count":491,"favourites_count":1,"statuses_count":20476,"created_at":"Tue Dec 10 04:24:51 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429678438765445120\/rtZYrgTJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429678438765445120\/rtZYrgTJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2238576858\/1391278298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1537,"favorite_count":2930,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SHu4neRCm1","expanded_url":"https:\/\/vine.co\/v\/eQMFMj3ptr9","display_url":"vine.co\/v\/eQMFMj3ptr9","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SHu4neRCm1","expanded_url":"https:\/\/vine.co\/v\/eQMFMj3ptr9","display_url":"vine.co\/v\/eQMFMj3ptr9","indices":[32,55]}],"user_mentions":[{"screen_name":"WeLoveRobDyrdek","name":"Ridiculousness Fans","id":2238576858,"id_str":"2238576858","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396795904,"id_str":"663727720396795904","text":"RT @kusudaaina: \u53f0\u6e7e\u306e\u307f\u306a\u3055\u3093\u306f\u3001\u30d5\u30a1\u30f3\u306e\u7686\u3055\u3093\u304c\u30de\u30ca\u30fc\u3092\u6ce8\u610f\u3057\u3066\u3044\u305f\u308a\u3001\u58f0\u304b\u3051\u3042\u3063\u305f\u308a\u3057\u3066\u3066\u307f\u3093\u306a\u3044\u3044\u4eba\u3067\u3057\u305f\uff01\uff01\n\u3068\u3063\u3066\u3082\u611f\u52d5\u3057\u307e\u3057\u305f\uff01\uff01\n\u3055\u3059\u304c\u304f\u3059\u30b5\u30dd\u306e\u307f\u306a\u3055\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052715964,"id_str":"3052715964","name":"wat","screen_name":"alpacatastrophe","location":null,"url":null,"description":"i swear a lot","protected":false,"verified":false,"followers_count":101,"friends_count":312,"listed_count":0,"favourites_count":4426,"statuses_count":3282,"created_at":"Sun Mar 01 15:01:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660445058966032384\/JhU7Mhdc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660445058966032384\/JhU7Mhdc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052715964\/1443310571","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727624120700928,"id_str":"663727624120700928","text":"\u53f0\u6e7e\u306e\u307f\u306a\u3055\u3093\u306f\u3001\u30d5\u30a1\u30f3\u306e\u7686\u3055\u3093\u304c\u30de\u30ca\u30fc\u3092\u6ce8\u610f\u3057\u3066\u3044\u305f\u308a\u3001\u58f0\u304b\u3051\u3042\u3063\u305f\u308a\u3057\u3066\u3066\u307f\u3093\u306a\u3044\u3044\u4eba\u3067\u3057\u305f\uff01\uff01\n\u3068\u3063\u3066\u3082\u611f\u52d5\u3057\u307e\u3057\u305f\uff01\uff01\n\u3055\u3059\u304c\u304f\u3059\u30b5\u30dd\u306e\u307f\u306a\u3055\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259302981,"id_str":"259302981","name":"\u6960\u7530\u4e9c\u8863\u5948","screen_name":"kusudaaina","location":"\u305d\u3053\u3089\u3078\u3093","url":"http:\/\/ameblo.jp\/aina-heart0201\/","description":"\u304f\u3059\u304f\u3059\u304f\u3063\u3059\u3093\u2600\ufe0e \u30df\u30ea\u30aa\u30f3\u30c9\u30fc\u30eb \u3059\u3046\u5b50\u3002 \u306b\u3085\u308b\u306b\u3085\u308bKAKUSEN\u304f\u30932\u671f \u30cb\u30e5\u30eb\u308a\u3093\u3002 \u30d7\u30ea\u30d1\u30e9 \u5b9a\u5b50\u3002 \u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u6771\u689d\u5e0c\u3002 \u308d\u3093\u3050\u3089\u3044\u3060\u3041\u3059\uff01\u4f50\u4f2f\u7f8e\u5f25\u3002 GATE \u30c7\u30ea\u30e9\u3002 \u6c17\u5206\u4e0a\u7b49\u2191\u2191\u3002 \u4eca\u30c1\u30a7\u30ad \u2606\u30c7\u30d3\u30e5\u30fc\u30df\u30cb\u30a2\u30eb\u30d0\u30e0\u300eFirst Sweet Wave \u300f\u767a\u58f2\u4e2d\uff01\u2606","protected":false,"verified":false,"followers_count":282353,"friends_count":161,"listed_count":10743,"favourites_count":169,"statuses_count":11215,"created_at":"Tue Mar 01 15:50:08 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259302981\/1397144271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":105,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kusudaaina","name":"\u6960\u7530\u4e9c\u8863\u5948","id":259302981,"id_str":"259302981","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994664"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367525888,"id_str":"663727720367525888","text":"This will never get old. https:\/\/t.co\/gHDmQKrdbQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398961586,"id_str":"398961586","name":"Sam Maurice","screen_name":"SammaJamma666","location":"Boston \/ Long Island","url":"http:\/\/www.yourbeautifulnightmare666.tumblr.com","description":null,"protected":false,"verified":false,"followers_count":176,"friends_count":256,"listed_count":1,"favourites_count":5158,"statuses_count":8511,"created_at":"Wed Oct 26 19:59:01 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647941185919676416\/cLX5bP4A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647941185919676416\/cLX5bP4A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398961586\/1385008999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663586883142680576,"quoted_status_id_str":"663586883142680576","quoted_status":{"created_at":"Mon Nov 09 05:20:16 +0000 2015","id":663586883142680576,"id_str":"663586883142680576","text":"IM CRYING \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude2d https:\/\/t.co\/NdcZ5qv0mU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1468571624,"id_str":"1468571624","name":"i feel like","screen_name":"heyifeellike","location":null,"url":null,"description":"DM SUBMISSIONS FOR POSTING","protected":false,"verified":false,"followers_count":491424,"friends_count":0,"listed_count":454,"favourites_count":6,"statuses_count":5073,"created_at":"Thu May 30 00:26:57 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598536595361243136\/QTQ5XO06_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598536595361243136\/QTQ5XO06_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1468571624\/1431537219","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NdcZ5qv0mU","expanded_url":"https:\/\/vine.co\/v\/eMn7FjnVVYl","display_url":"vine.co\/v\/eMn7FjnVVYl","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gHDmQKrdbQ","expanded_url":"https:\/\/twitter.com\/heyifeellike\/status\/663586883142680576","display_url":"twitter.com\/heyifeellike\/s\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720400994304,"id_str":"663727720400994304","text":"@gfdyuju makasih yaa :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727500246159360,"in_reply_to_status_id_str":"663727500246159360","in_reply_to_user_id":2780639024,"in_reply_to_user_id_str":"2780639024","in_reply_to_screen_name":"gfdyuju","user":{"id":622633269,"id_str":"622633269","name":"Eunha(Followback?)","screen_name":"qtjeunha","location":"\u2022 S E O U L \u2022 GFams","url":null,"description":"Roleplayer of \uc815\uc740\ube44 known as \uc740\ud558 from \uc5ec\uc790\uce5c\uad6c 97L.","protected":false,"verified":false,"followers_count":2367,"friends_count":2398,"listed_count":7,"favourites_count":178,"statuses_count":26220,"created_at":"Sat Jun 30 06:03:37 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF00E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615156414164500480\/3fK09gW7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615156414164500480\/3fK09gW7.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"DB09E6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663287213237514240\/mJat1R8h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663287213237514240\/mJat1R8h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622633269\/1446974967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gfdyuju","name":"ts)) Mijoo\u2744","id":2780639024,"id_str":"2780639024","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079994665"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720371585024,"id_str":"663727720371585024","text":"\u306a\u3093\u304b5\u6642\u306b\u8d77\u3053\u3055\u308c\u308b\u3089\u3057\u3044\u3093\u3060\u3063\u3066\u2026\u3042\u3063\u4e94\u6642\u9593\u7761\u7720\u3060\u666e\u901a\u3060\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2301076987,"id_str":"2301076987","name":"\u9c2f\uff98\uff70\uff87","screen_name":"magukappu0822","location":"\u30d5\u30a9\u30ed\u30fc\u306f\u3064\u3044\u3077\u308d\u8aad\u3093\u3067\u304b\u3089\u3067\u304a\u9858\u3044\u3057\u307e\u3059","url":"http:\/\/twpf.jp\/magukappu0822","description":"\u30a2\u30cb\u30e1\u304c\u597d\u304d\u3002 \u273c\u30b8\u30e7\u30b8\u30e7\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u306b\u3053\u307e\u304d\u273c\u30a2\u30a4\u30b3\u30f3\u2192\u2192@moka_paru86\u30d8\u30c3\u30c0\u30fc@ren02021\u304b\u3089 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093 \u65e5\u5e38\u3068\u4e0b\u30cd\u30bf\u304c\u591a\u3044","protected":false,"verified":false,"followers_count":1099,"friends_count":935,"listed_count":41,"favourites_count":57404,"statuses_count":54217,"created_at":"Mon Jan 20 09:13:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636165827960541186\/KT4EIkq8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636165827960541186\/KT4EIkq8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2301076987\/1439406750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994658"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367419392,"id_str":"663727720367419392","text":"Had dinner at 5 and I'm positively starving now. Fml","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310100475,"id_str":"310100475","name":"Lizzaaa :)","screen_name":"lizzawong96","location":"Malaysia","url":null,"description":"part time egg, part time mango, full time banana.\ni count carbs, not calories.","protected":false,"verified":false,"followers_count":275,"friends_count":297,"listed_count":3,"favourites_count":6501,"statuses_count":26040,"created_at":"Fri Jun 03 05:59:21 +0000 2011","utc_offset":28800,"time_zone":"Asia\/Kuala_Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646963583373348864\/OifdCM74_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646963583373348864\/OifdCM74_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310100475\/1445049600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720392556544,"id_str":"663727720392556544","text":"RT @Sankei_news: \u300c\u816b\u760d\u6cbb\u308b\u300d\u7121\u514d\u8a31\u3067\u8d64\u5916\u7dda\u6cbb\u7642\u3000\u8a50\u6b3a\u5bb9\u7591\u3067\u81ea\u79f0\u9662\u9577\u306e\u5973\u902e\u6355 https:\/\/t.co\/d6Tpjxr3cd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181792812,"id_str":"3181792812","name":"\u4eba\u751f\u306e\u6b6f\u533b\u8005(underDoc)","screen_name":"tkdotopastor1","location":null,"url":null,"description":"\u6b6f\u79d1\u9ebb\u9154\u533b\u3002 \u5185\u80a1\u818f\u85ac\u3002\u300c\u610f\u8b58\u9ad8\u3044\u7cfb\u300d\u3067\u306f\u306a\u304f\u300c\u610f\u8b58\u9060\u3044\u7cfb\u300d\u3002\u300c\u3061\u3087\u3044\u4e0d\u826f\uff08\u30ef\u30eb\uff09\u300d\u3067\u306f\u306a\u304f\u300c\u3061\u3087\u3044\u4e0d\u826f\u54c1\uff08\u30c0\u30e1\uff09\u300d\u3002\u6b6f\u3092\u524a\u308b\u3088\u308a\u3001\u30bb\u30c7\u30fc\u30b7\u30e7\u30f3\u3084\u5168\u8eab\u9ebb\u9154\u304c\u5f97\u610f\u3002 \u51fa\u5f35sedation\u8acb\u8ca0\u3002\u5ac1\u3061\u3083\u3093\u3068CPAP\u306e\u304a\u9670\u3067\u751f\u5b58\u3057\u3066\u3044\u308b\u3002","protected":false,"verified":false,"followers_count":216,"friends_count":187,"listed_count":0,"favourites_count":22019,"statuses_count":6794,"created_at":"Fri May 01 14:50:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614709547257606144\/mcABRPNv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614709547257606144\/mcABRPNv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181792812\/1444582153","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:56 +0000 2015","id":663726721439404032,"id_str":"663726721439404032","text":"\u300c\u816b\u760d\u6cbb\u308b\u300d\u7121\u514d\u8a31\u3067\u8d64\u5916\u7dda\u6cbb\u7642\u3000\u8a50\u6b3a\u5bb9\u7591\u3067\u81ea\u79f0\u9662\u9577\u306e\u5973\u902e\u6355 https:\/\/t.co\/d6Tpjxr3cd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562773398,"id_str":"562773398","name":"\u7523\u7d4c\u30cb\u30e5\u30fc\u30b9","screen_name":"Sankei_news","location":null,"url":"http:\/\/www.sankei.com\/","description":"\u7523\u7d4c\u65b0\u805e\u30b0\u30eb\u30fc\u30d7\u304c\u304a\u5c4a\u3051\u3059\u308b\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8\u300c\u7523\u7d4c\u30cb\u30e5\u30fc\u30b9\u300d\u306e\u516c\u5f0f\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002facebook\u306f\u3053\u3061\u3089http:\/\/www.facebook.com\/SankeiShimbun","protected":false,"verified":true,"followers_count":61345,"friends_count":160,"listed_count":2616,"favourites_count":0,"statuses_count":25431,"created_at":"Wed Apr 25 10:36:45 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"114488","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514649594337038336\/_853cHxo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514649594337038336\/_853cHxo_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d6Tpjxr3cd","expanded_url":"http:\/\/www.sankei.com\/west\/news\/151109\/wst1511090096-n1.html","display_url":"sankei.com\/west\/news\/1511\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d6Tpjxr3cd","expanded_url":"http:\/\/www.sankei.com\/west\/news\/151109\/wst1511090096-n1.html","display_url":"sankei.com\/west\/news\/1511\u2026","indices":[47,70]}],"user_mentions":[{"screen_name":"Sankei_news","name":"\u7523\u7d4c\u30cb\u30e5\u30fc\u30b9","id":562773398,"id_str":"562773398","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994663"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720392708096,"id_str":"663727720392708096","text":"#MeCalma tu saludo por la ma\u00f1ana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2780759737,"id_str":"2780759737","name":"\u2663*\u2764DyG\u2764*\u2663","screen_name":"Bostera_Cordoba","location":"la puta madre","url":null,"description":"\u2648\u2660Bostera de alma y de la cuna\u2663 \u2663Aries\u2663Amo el fernet\u2660soy lo que soy\u2663Mis errores muchos\u2660Mis virtudes tambi\u00e9n\u2663\u2663","protected":false,"verified":false,"followers_count":10298,"friends_count":9927,"listed_count":13,"favourites_count":21853,"statuses_count":32158,"created_at":"Sat Aug 30 15:32:14 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663560104856461312\/bZoxNRtO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663560104856461312\/bZoxNRtO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2780759737\/1447026307","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MeCalma","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994663"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720401141760,"id_str":"663727720401141760","text":"RT @Dfutboleroblog: ATENCI\u00d3N: Luis Bedoya renunci\u00f3 a la presidencia de la Federaci\u00f3n Colombiana de F\u00fatbol. https:\/\/t.co\/ReAK5WxraT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231567168,"id_str":"2231567168","name":"Yulieth Paz","screen_name":"SocorropPaz","location":"Pasto-Nari\u00f1o- Colombia","url":null,"description":"Ama de casa","protected":false,"verified":false,"followers_count":84,"friends_count":200,"listed_count":4,"favourites_count":2661,"statuses_count":10341,"created_at":"Thu Dec 05 14:33:10 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615984497251758080\/BRsyvVkL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615984497251758080\/BRsyvVkL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231567168\/1437267022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:47 +0000 2015","id":663724670353584128,"id_str":"663724670353584128","text":"ATENCI\u00d3N: Luis Bedoya renunci\u00f3 a la presidencia de la Federaci\u00f3n Colombiana de F\u00fatbol. https:\/\/t.co\/ReAK5WxraT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2764574837,"id_str":"2764574837","name":"Diario Futbolero ","screen_name":"Dfutboleroblog","location":null,"url":"http:\/\/dfutboleroblog.blogspot.com\/","description":"Aqu\u00ed encuentras las noticias m\u00e1s relevantes de tus ligas favoritas, nos dedicamos a hacer un diario del f\u00fatbol mundial \u00a1Bienvenidos a Diario Futbolero Blog!","protected":false,"verified":false,"followers_count":9602,"friends_count":8791,"listed_count":38,"favourites_count":1399,"statuses_count":10169,"created_at":"Mon Sep 08 07:02:01 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516362275716751360\/jpvF5Ib8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516362275716751360\/jpvF5Ib8.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575451743913443328\/j8E2r8Mv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575451743913443328\/j8E2r8Mv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2764574837\/1411944975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724667199471620,"id_str":"663724667199471620","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","url":"https:\/\/t.co\/ReAK5WxraT","display_url":"pic.twitter.com\/ReAK5WxraT","expanded_url":"http:\/\/twitter.com\/Dfutboleroblog\/status\/663724670353584128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":560,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":373,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724667199471620,"id_str":"663724667199471620","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","url":"https:\/\/t.co\/ReAK5WxraT","display_url":"pic.twitter.com\/ReAK5WxraT","expanded_url":"http:\/\/twitter.com\/Dfutboleroblog\/status\/663724670353584128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":560,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":373,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dfutboleroblog","name":"Diario Futbolero ","id":2764574837,"id_str":"2764574837","indices":[3,18]}],"symbols":[],"media":[{"id":663724667199471620,"id_str":"663724667199471620","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","url":"https:\/\/t.co\/ReAK5WxraT","display_url":"pic.twitter.com\/ReAK5WxraT","expanded_url":"http:\/\/twitter.com\/Dfutboleroblog\/status\/663724670353584128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":560,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":373,"resize":"fit"}},"source_status_id":663724670353584128,"source_status_id_str":"663724670353584128","source_user_id":2764574837,"source_user_id_str":"2764574837"}]},"extended_entities":{"media":[{"id":663724667199471620,"id_str":"663724667199471620","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEXkWwAQAL_o.jpg","url":"https:\/\/t.co\/ReAK5WxraT","display_url":"pic.twitter.com\/ReAK5WxraT","expanded_url":"http:\/\/twitter.com\/Dfutboleroblog\/status\/663724670353584128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":560,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":373,"resize":"fit"}},"source_status_id":663724670353584128,"source_status_id_str":"663724670353584128","source_user_id":2764574837,"source_user_id_str":"2764574837"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994665"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384356353,"id_str":"663727720384356353","text":"@Arsenal @KieranGibbs Tottenham Hotshit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726737663131648,"in_reply_to_status_id_str":"663726737663131648","in_reply_to_user_id":34613288,"in_reply_to_user_id_str":"34613288","in_reply_to_screen_name":"Arsenal","user":{"id":3025294845,"id_str":"3025294845","name":"Tropicql","screen_name":"louisporter2005","location":null,"url":null,"description":"Tropicql","protected":false,"verified":false,"followers_count":27,"friends_count":107,"listed_count":2,"favourites_count":81,"statuses_count":301,"created_at":"Sun Feb 08 18:22:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635473020879028224\/mFGQ1t5U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635473020879028224\/mFGQ1t5U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025294845\/1440343679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Arsenal","name":"Arsenal FC","id":34613288,"id_str":"34613288","indices":[0,8]},{"screen_name":"KieranGibbs","name":"Kieran Gibbs","id":1934413398,"id_str":"1934413398","indices":[9,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720392736769,"id_str":"663727720392736769","text":"RT @Marigrasso: Sou uma pessoa que fica em tudo, MENOS na mesma m\u00fasica at\u00e9 o final...... n\u00e3o da gente, \u00e9 mais forte que eu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2286996516,"id_str":"2286996516","name":"regina","screen_name":"reginaantuness","location":null,"url":null,"description":"veja como o tempo voa","protected":false,"verified":false,"followers_count":394,"friends_count":293,"listed_count":0,"favourites_count":1124,"statuses_count":4398,"created_at":"Sat Jan 11 18:07:24 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436299832437665793\/0ptnLo5-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436299832437665793\/0ptnLo5-.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663201106848325632\/mkJL-h1X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663201106848325632\/mkJL-h1X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2286996516\/1436473957","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:40:04 +0000 2015","id":663712660404494336,"id_str":"663712660404494336","text":"Sou uma pessoa que fica em tudo, MENOS na mesma m\u00fasica at\u00e9 o final...... n\u00e3o da gente, \u00e9 mais forte que eu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71244900,"id_str":"71244900","name":"marianne","screen_name":"Marigrasso","location":"Brasil","url":"http:\/\/lov-conquers-all.tumblr.com\/","description":"DESIGN DE MODA \n18\/ Tubar\u00e3o\/SC\n\u25b9 snapchat marigrasso","protected":false,"verified":false,"followers_count":1020,"friends_count":224,"listed_count":18,"favourites_count":555,"statuses_count":40134,"created_at":"Thu Sep 03 12:51:53 +0000 2009","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF7FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454821727747309568\/ElR8wryl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454821727747309568\/ElR8wryl.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5F5F2","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660707265041797120\/jPvpJGle_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660707265041797120\/jPvpJGle_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71244900\/1441021610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Marigrasso","name":"marianne","id":71244900,"id_str":"71244900","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079994663"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396922880,"id_str":"663727720396922880","text":"RT @Cl4uBlack: SI ESTE TWEET LLEGA A 15.000 RTS MI MADRE DEJA DE FUMAR\ud83d\ude4f\ud83c\udffb https:\/\/t.co\/FzB05mAKUw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582145119,"id_str":"582145119","name":"Javi264","screen_name":"javijim61299246","location":null,"url":"http:\/\/www.youtube.com\/channel\/UCHHnczlrSyZFAJtck8bRY5g","description":"Estudiante Gamer, Youtuber y biciclista","protected":false,"verified":false,"followers_count":52,"friends_count":244,"listed_count":2,"favourites_count":159,"statuses_count":1691,"created_at":"Wed May 16 18:39:00 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654288805009182720\/46iYf24b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654288805009182720\/46iYf24b_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:24:17 +0000 2015","id":663452000827392000,"id_str":"663452000827392000","text":"SI ESTE TWEET LLEGA A 15.000 RTS MI MADRE DEJA DE FUMAR\ud83d\ude4f\ud83c\udffb https:\/\/t.co\/FzB05mAKUw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3002147151,"id_str":"3002147151","name":"Clau Eaton","screen_name":"Cl4uBlack","location":null,"url":null,"description":"Juro solemnemente que mis intenciones no son buenas. Gryffindor.","protected":false,"verified":false,"followers_count":222,"friends_count":142,"listed_count":0,"favourites_count":889,"statuses_count":952,"created_at":"Tue Jan 27 22:17:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595258681639497728\/x7Nrzgw4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595258681639497728\/x7Nrzgw4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3002147151\/1422397463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12242,"favorite_count":1169,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cl4uBlack","name":"Clau Eaton","id":3002147151,"id_str":"3002147151","indices":[3,13]}],"symbols":[],"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663452000827392000,"source_status_id_str":"663452000827392000","source_user_id":3002147151,"source_user_id_str":"3002147151"}]},"extended_entities":{"media":[{"id":663451961413472256,"id_str":"663451961413472256","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUOCzWWEAAdbX6.jpg","url":"https:\/\/t.co\/FzB05mAKUw","display_url":"pic.twitter.com\/FzB05mAKUw","expanded_url":"http:\/\/twitter.com\/Cl4uBlack\/status\/663452000827392000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663452000827392000,"source_status_id_str":"663452000827392000","source_user_id":3002147151,"source_user_id_str":"3002147151"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994664"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384372737,"id_str":"663727720384372737","text":"RT @ddlovato: Candy crush \ud83c\udf6c\ud83c\udf6b\ud83c\udf6d #AskDemi https:\/\/t.co\/mPHoLSdGAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472030129,"id_str":"472030129","name":"na(tash)a","screen_name":"lalalandzx","location":null,"url":null,"description":"I will not lose my daughter, my child, my hope to darkness. We will find you, Emma, I promisse.","protected":false,"verified":false,"followers_count":3335,"friends_count":2814,"listed_count":5,"favourites_count":249,"statuses_count":82899,"created_at":"Mon Jan 23 14:37:20 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662783741526482944\/4YEGaD7U.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662783741526482944\/4YEGaD7U.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D90F0F","profile_text_color":"9D030F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662777763212972032\/dTLrYL35_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662777763212972032\/dTLrYL35_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472030129\/1446854353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:08:53 +0000 2015","id":663689714399117313,"id_str":"663689714399117313","text":"Candy crush \ud83c\udf6c\ud83c\udf6b\ud83c\udf6d #AskDemi https:\/\/t.co\/mPHoLSdGAM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672534,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687175578324993,"quoted_status_id_str":"663687175578324993","quoted_status":{"created_at":"Mon Nov 09 11:58:48 +0000 2015","id":663687175578324993,"id_str":"663687175578324993","text":"@ddlovato what do you usually do when you're bored? #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":135429491,"id_str":"135429491","name":"michelle","screen_name":"hyfrmichelle","location":null,"url":null,"description":"i suck at writing bios","protected":false,"verified":false,"followers_count":60795,"friends_count":363,"listed_count":77,"favourites_count":971,"statuses_count":50120,"created_at":"Wed Apr 21 08:22:40 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585075109720825856\/lmlNeJg0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585075109720825856\/lmlNeJg0.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657957612785303553\/mN4Tj_Le_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657957612785303553\/mN4Tj_Le_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135429491\/1446958799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[52,60]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2254,"favorite_count":4442,"entities":{"hashtags":[{"text":"AskDemi","indices":[16,24]}],"urls":[{"url":"https:\/\/t.co\/mPHoLSdGAM","expanded_url":"https:\/\/twitter.com\/hyfrmichelle\/status\/663687175578324993","display_url":"twitter.com\/hyfrmichelle\/s\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[30,38]}],"urls":[{"url":"https:\/\/t.co\/mPHoLSdGAM","expanded_url":"https:\/\/twitter.com\/hyfrmichelle\/status\/663687175578324993","display_url":"twitter.com\/hyfrmichelle\/s\u2026","indices":[39,62]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720405278721,"id_str":"663727720405278721","text":"RT @RelatableQuote: When you swiping away background apps and you accidentally swipe away the music app \ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246248336,"id_str":"3246248336","name":"MC Thomas","screen_name":"mcthomas99","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":65,"friends_count":134,"listed_count":0,"favourites_count":502,"statuses_count":378,"created_at":"Mon Jun 15 18:15:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647599378480427008\/VYC2GcQg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647599378480427008\/VYC2GcQg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246248336\/1438193108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:08:55 +0000 2015","id":663689725060980736,"id_str":"663689725060980736","text":"When you swiping away background apps and you accidentally swipe away the music app \ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43\ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147305691,"id_str":"147305691","name":"Relatable Quotes","screen_name":"RelatableQuote","location":null,"url":"https:\/\/Instagram.com\/arlindmusliu\/","description":"Tweets that Relate to your daily life! If you can relate then Retweet! *we do not own content posted* \/\/ Contact: contactrelatablequote@gmail.com","protected":false,"verified":false,"followers_count":3206375,"friends_count":16205,"listed_count":8672,"favourites_count":20793,"statuses_count":59615,"created_at":"Sun May 23 19:42:54 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"D815DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147305691\/1423611170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2400,"favorite_count":5318,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RelatableQuote","name":"Relatable Quotes","id":147305691,"id_str":"147305691","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994666"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367427584,"id_str":"663727720367427584","text":"RT @playalikekay: @lipstickstainer @_InLeauxWeTrust @jones_leonard54 @slowminded_Dee \ud83d\udeae","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2668451348,"id_str":"2668451348","name":"Yasmin","screen_name":"lipstickstainer","location":"Lancaster, TX","url":"http:\/\/lipstickstainer.tumblr.com\/","description":"Sagittarius \/ Hufflepuff \/ ENTP \/ Class of '16","protected":false,"verified":false,"followers_count":48,"friends_count":175,"listed_count":1,"favourites_count":23,"statuses_count":163,"created_at":"Tue Jul 22 05:09:57 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491455891397292032\/0K-bq5UR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491455891397292032\/0K-bq5UR.jpeg","profile_background_tile":false,"profile_link_color":"E622BF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662634481090629633\/sgHxLi7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662634481090629633\/sgHxLi7b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2668451348\/1447058562","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:16 +0000 2015","id":663727562221330432,"id_str":"663727562221330432","text":"@lipstickstainer @_InLeauxWeTrust @jones_leonard54 @slowminded_Dee \ud83d\udeae","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2668451348,"in_reply_to_user_id_str":"2668451348","in_reply_to_screen_name":"lipstickstainer","user":{"id":124059058,"id_str":"124059058","name":"k.","screen_name":"playalikekay","location":"Dallas, Texas","url":null,"description":"c\/o '16| PowerDriven| wild eyed and crazy haired| ProudBlackGirl On a path to WestPoint \u2708\ufe0f","protected":false,"verified":false,"followers_count":527,"friends_count":537,"listed_count":2,"favourites_count":580,"statuses_count":7964,"created_at":"Thu Mar 18 03:56:44 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648157720973971457\/DshDb4AY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648157720973971457\/DshDb4AY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124059058\/1436658553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lipstickstainer","name":"Yasmin","id":2668451348,"id_str":"2668451348","indices":[0,16]},{"screen_name":"_InLeauxWeTrust","name":"Leaux Fresh","id":3034869121,"id_str":"3034869121","indices":[17,33]},{"screen_name":"jones_leonard54","name":"Leonard","id":2153947584,"id_str":"2153947584","indices":[34,50]},{"screen_name":"slowminded_Dee","name":"Darius Brown","id":2287281332,"id_str":"2287281332","indices":[51,66]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"playalikekay","name":"k.","id":124059058,"id_str":"124059058","indices":[3,16]},{"screen_name":"lipstickstainer","name":"Yasmin","id":2668451348,"id_str":"2668451348","indices":[18,34]},{"screen_name":"_InLeauxWeTrust","name":"Leaux Fresh","id":3034869121,"id_str":"3034869121","indices":[35,51]},{"screen_name":"jones_leonard54","name":"Leonard","id":2153947584,"id_str":"2153947584","indices":[52,68]},{"screen_name":"slowminded_Dee","name":"Darius Brown","id":2287281332,"id_str":"2287281332","indices":[69,84]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720388423681,"id_str":"663727720388423681","text":"Thank you to all who joined us yesterday for our \"Thanksgiving Feast\" NSCA Shoot. The main event HOA was taken by... https:\/\/t.co\/Xg3TqvGYiI","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216209114,"id_str":"216209114","name":"SF Shooting Club","screen_name":"SFShootingClub","location":"Palm City, Florida","url":"http:\/\/www.southfloridashootingclub.com","description":"South Florida's Finest Private Shooting Club-Skeet, Trap, Tower Shoots, ZZ Birds, over 40 + world-class Sporting Clay Stations.","protected":false,"verified":false,"followers_count":116,"friends_count":16,"listed_count":1,"favourites_count":1,"statuses_count":252,"created_at":"Tue Nov 16 02:01:15 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"054714","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/235346760\/Untitled.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/235346760\/Untitled.png","profile_background_tile":false,"profile_link_color":"F76708","profile_sidebar_border_color":"09590E","profile_sidebar_fill_color":"FAF8F2","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1168193236\/S_FL_Shooting_Club_logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1168193236\/S_FL_Shooting_Club_logo_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xg3TqvGYiI","expanded_url":"http:\/\/fb.me\/46J1Azc2G","display_url":"fb.me\/46J1Azc2G","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994662"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396754944,"id_str":"663727720396754944","text":"\u901a\u77e5100\u3053\u3057\u3066\u308b\u3084\u3093\u3002\u3002\n\u3082\u3049\u8fd4\u3059\u304d\u5931\u305b\u305f\u3057\ud83d\ude11\ud83d\ude11\u26a1\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241435663,"id_str":"3241435663","name":"\u3061 \u3043 \u308c \u3093 \u26bd","screen_name":"_Ren_N123","location":"\u53cc\u5b50\uffe4\u3072\u3089\u306e\u304b\u306a\u2721","url":null,"description":"\u300e\u6c38\u702c\u5ec9 \u4e00\u7b4b\u300f\u300e\u5ba4\u9f8d\u592a \u5b88\u5c4b\u5468\u6597 \u6c38\u9060\u306edr\u671f\u300f\u203b\u6c17\u5206\u5c4b","protected":false,"verified":false,"followers_count":357,"friends_count":258,"listed_count":8,"favourites_count":3493,"statuses_count":3555,"created_at":"Wed Jun 10 13:51:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661561865449836545\/cv1Is14W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661561865449836545\/cv1Is14W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241435663\/1440187450","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994664"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720375840772,"id_str":"663727720375840772","text":"RT @MorningNewsTV3: \u0e40\u0e1c\u0e22\u0e42\u0e09\u0e21 16 \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e40\u0e04\u0e1b\u0e47\u0e2d\u0e1b\u0e2a\u0e38\u0e14\u0e2e\u0e2d\u0e15\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e04\u0e19\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 #\u0e1a\u0e31\u0e19\u0e40\u0e17\u0e34\u0e07\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28 #BECTERO #\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49 https:\/\/t.co\/kI1wWyZelZ ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3726381794,"id_str":"3726381794","name":"\u2605star\u2605igot7\/90","screen_name":"star_madgot7","location":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e43\u0e2b\u0e21\u0e48, \u0e08.\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e43\u0e2b\u0e21\u0e48","url":null,"description":"got7_day6_monsta-X_btob_","protected":false,"verified":false,"followers_count":7,"friends_count":24,"listed_count":2,"favourites_count":1577,"statuses_count":4185,"created_at":"Tue Sep 29 13:57:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661745317960773633\/95kwQ4LV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661745317960773633\/95kwQ4LV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3726381794\/1445402000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:37:37 +0000 2015","id":663591247932604416,"id_str":"663591247932604416","text":"\u0e40\u0e1c\u0e22\u0e42\u0e09\u0e21 16 \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e40\u0e04\u0e1b\u0e47\u0e2d\u0e1b\u0e2a\u0e38\u0e14\u0e2e\u0e2d\u0e15\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e04\u0e19\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 #\u0e1a\u0e31\u0e19\u0e40\u0e17\u0e34\u0e07\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28 #BECTERO #\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49 https:\/\/t.co\/kI1wWyZelZ https:\/\/t.co\/Tcldrd8sOH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211395583,"id_str":"211395583","name":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49","screen_name":"MorningNewsTV3","location":"Bangkok","url":"http:\/\/morning-news.bectero.com\/","description":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49 \u0e08.-\u0e28. 06.00-09.30 \u0e19. \r\n\u0e40\u0e08\u0e32\u0e30\u0e02\u0e48\u0e32\u0e27\u0e40\u0e14\u0e48\u0e19 \u0e08.-\u0e28. 17.10-17.30\u0e19. \r\n\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e2a\u0e32\u0e23\u0e4c\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c \u0e2a.-\u0e2d. 10.30-12.15 \u0e19.","protected":false,"verified":false,"followers_count":1028425,"friends_count":56,"listed_count":681,"favourites_count":15,"statuses_count":110005,"created_at":"Wed Nov 03 03:45:27 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/731467928\/6f66dcd978470c610255c13ca2e1aec6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/731467928\/6f66dcd978470c610255c13ca2e1aec6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603347390783885312\/sGH0zgsQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603347390783885312\/sGH0zgsQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211395583\/1441078093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1379,"favorite_count":295,"entities":{"hashtags":[{"text":"\u0e1a\u0e31\u0e19\u0e40\u0e17\u0e34\u0e07\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28","indices":[46,64]},{"text":"BECTERO","indices":[65,73]},{"text":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49","indices":[74,92]}],"urls":[{"url":"https:\/\/t.co\/kI1wWyZelZ","expanded_url":"http:\/\/bit.ly\/1Sb64iu","display_url":"bit.ly\/1Sb64iu","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663591246141657088,"id_str":"663591246141657088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","url":"https:\/\/t.co\/Tcldrd8sOH","display_url":"pic.twitter.com\/Tcldrd8sOH","expanded_url":"http:\/\/twitter.com\/MorningNewsTV3\/status\/663591247932604416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":1024,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663591246141657088,"id_str":"663591246141657088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","url":"https:\/\/t.co\/Tcldrd8sOH","display_url":"pic.twitter.com\/Tcldrd8sOH","expanded_url":"http:\/\/twitter.com\/MorningNewsTV3\/status\/663591247932604416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":1024,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":312,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1a\u0e31\u0e19\u0e40\u0e17\u0e34\u0e07\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28","indices":[66,84]},{"text":"BECTERO","indices":[85,93]},{"text":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49","indices":[94,112]}],"urls":[{"url":"https:\/\/t.co\/kI1wWyZelZ","expanded_url":"http:\/\/bit.ly\/1Sb64iu","display_url":"bit.ly\/1Sb64iu","indices":[113,136]}],"user_mentions":[{"screen_name":"MorningNewsTV3","name":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e25\u0e48\u0e32\u0e40\u0e0a\u0e49\u0e32\u0e19\u0e35\u0e49","id":211395583,"id_str":"211395583","indices":[3,18]}],"symbols":[],"media":[{"id":663591246141657088,"id_str":"663591246141657088","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","url":"https:\/\/t.co\/Tcldrd8sOH","display_url":"pic.twitter.com\/Tcldrd8sOH","expanded_url":"http:\/\/twitter.com\/MorningNewsTV3\/status\/663591247932604416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":1024,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":312,"resize":"fit"}},"source_status_id":663591247932604416,"source_status_id_str":"663591247932604416","source_user_id":211395583,"source_user_id_str":"211395583"}]},"extended_entities":{"media":[{"id":663591246141657088,"id_str":"663591246141657088","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMuPZVEAAEmEF.jpg","url":"https:\/\/t.co\/Tcldrd8sOH","display_url":"pic.twitter.com\/Tcldrd8sOH","expanded_url":"http:\/\/twitter.com\/MorningNewsTV3\/status\/663591247932604416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":1024,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":312,"resize":"fit"}},"source_status_id":663591247932604416,"source_status_id_str":"663591247932604416","source_user_id":211395583,"source_user_id_str":"211395583"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079994659"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367419393,"id_str":"663727720367419393","text":"RT @upban_upban: (2015.11.07)\u30a4\u30aa\u30f3\u30e2\u30fc\u30eb\u59eb\u8def\u30ea\u30d0\u30fc\u30b7\u30c6\u30a3\u30fc\n\u3044\u3064\u3082\u4e00\u751f\u61f8\u547d\uff01\u304a\u3064\u304b\u308c\u3055\u307e\u3067\u3057\u305f\u3063\uff01\uff01\n\u3048\u308a\u30d1\u30f3\u3053\u3068\u5c0f\u897f\u6075\u91cc\u82b1\u3055\u3093\u305d\u306e08\n#Animadoll #\u3042\u306b\u307e\u3069\u30fc\u308b #\u3048\u308a\u30d1\u30f3 #\u5c0f\u897f\u6075\u91cc\u82b1 https:\/\/t.co\/KbfZBeqY68","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131549910,"id_str":"131549910","name":"BP","screen_name":"blue_pacific","location":null,"url":"http:\/\/ameblo.jp\/blue-pacific-2009\/","description":"\u30d6\u30eb\u30d1\u30b7\u3060\u3088\uff01 \u3048\u308a\u30d1\u30f3\u63a8\u3057 Animadoll-\u3042\u306b\u307e\u3069\u30fc\u308b-\u5fdc\u63f4\u30d6\u30ed\u30b0\u306f\u3053\u3061\u3089 http:\/\/ameblo.jp\/blue-pacific-2014\/","protected":false,"verified":false,"followers_count":238,"friends_count":244,"listed_count":6,"favourites_count":3025,"statuses_count":44937,"created_at":"Sat Apr 10 16:16:58 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550634829121740800\/DJhF3JyN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550634829121740800\/DJhF3JyN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131549910\/1431398674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:33:47 +0000 2015","id":663695981154729986,"id_str":"663695981154729986","text":"(2015.11.07)\u30a4\u30aa\u30f3\u30e2\u30fc\u30eb\u59eb\u8def\u30ea\u30d0\u30fc\u30b7\u30c6\u30a3\u30fc\n\u3044\u3064\u3082\u4e00\u751f\u61f8\u547d\uff01\u304a\u3064\u304b\u308c\u3055\u307e\u3067\u3057\u305f\u3063\uff01\uff01\n\u3048\u308a\u30d1\u30f3\u3053\u3068\u5c0f\u897f\u6075\u91cc\u82b1\u3055\u3093\u305d\u306e08\n#Animadoll #\u3042\u306b\u307e\u3069\u30fc\u308b #\u3048\u308a\u30d1\u30f3 #\u5c0f\u897f\u6075\u91cc\u82b1 https:\/\/t.co\/KbfZBeqY68","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3108035647,"id_str":"3108035647","name":"\u3042\u3063\u3077\u3070\u3093","screen_name":"upban_upban","location":"\u795e\u6238","url":null,"description":"\u30aa\u30ea\u30b8\u30ca\u30eb\u30b5\u30a4\u30ba\u306e\u753b\u50cf\u306f\u53f3\u30af\u30ea\u30c3\u30af\u3067\u753b\u50cf\u3060\u3051\u3092\u8868\u793a\u3001\u305d\u306e\u5f8c\u30a2\u30c9\u30ec\u30b9\u306e\u6700\u5f8c\u3092.jpg:orig\u306b\u5909\u66f4\u3057\u3066\u304f\u3060\u3044\u3002","protected":false,"verified":false,"followers_count":125,"friends_count":156,"listed_count":1,"favourites_count":1873,"statuses_count":1437,"created_at":"Thu Mar 26 05:34:05 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581054630437613569\/_DO1v1CH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581054630437613569\/_DO1v1CH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3108035647\/1435938313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"Animadoll","indices":[67,77]},{"text":"\u3042\u306b\u307e\u3069\u30fc\u308b","indices":[78,85]},{"text":"\u3048\u308a\u30d1\u30f3","indices":[86,91]},{"text":"\u5c0f\u897f\u6075\u91cc\u82b1","indices":[92,98]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663695978852057088,"id_str":"663695978852057088","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","url":"https:\/\/t.co\/KbfZBeqY68","display_url":"pic.twitter.com\/KbfZBeqY68","expanded_url":"http:\/\/twitter.com\/upban_upban\/status\/663695981154729986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695978852057088,"id_str":"663695978852057088","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","url":"https:\/\/t.co\/KbfZBeqY68","display_url":"pic.twitter.com\/KbfZBeqY68","expanded_url":"http:\/\/twitter.com\/upban_upban\/status\/663695981154729986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Animadoll","indices":[84,94]},{"text":"\u3042\u306b\u307e\u3069\u30fc\u308b","indices":[95,102]},{"text":"\u3048\u308a\u30d1\u30f3","indices":[103,108]},{"text":"\u5c0f\u897f\u6075\u91cc\u82b1","indices":[109,115]}],"urls":[],"user_mentions":[{"screen_name":"upban_upban","name":"\u3042\u3063\u3077\u3070\u3093","id":3108035647,"id_str":"3108035647","indices":[3,15]}],"symbols":[],"media":[{"id":663695978852057088,"id_str":"663695978852057088","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","url":"https:\/\/t.co\/KbfZBeqY68","display_url":"pic.twitter.com\/KbfZBeqY68","expanded_url":"http:\/\/twitter.com\/upban_upban\/status\/663695981154729986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663695981154729986,"source_status_id_str":"663695981154729986","source_user_id":3108035647,"source_user_id_str":"3108035647"}]},"extended_entities":{"media":[{"id":663695978852057088,"id_str":"663695978852057088","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr-fJVAAA6HWi.jpg","url":"https:\/\/t.co\/KbfZBeqY68","display_url":"pic.twitter.com\/KbfZBeqY68","expanded_url":"http:\/\/twitter.com\/upban_upban\/status\/663695981154729986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663695981154729986,"source_status_id_str":"663695981154729986","source_user_id":3108035647,"source_user_id_str":"3108035647"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384204800,"id_str":"663727720384204800","text":"@akifasifas pqwoiyoiqo teka lah number nye \ud83d\ude0f\ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717360742760448,"in_reply_to_status_id_str":"663717360742760448","in_reply_to_user_id":399419185,"in_reply_to_user_id_str":"399419185","in_reply_to_screen_name":"akifasifas","user":{"id":430891082,"id_str":"430891082","name":"'Arash","screen_name":"mr_arash55","location":null,"url":"https:\/\/Instagram.com\/mr_arash\/","description":"Instragram : mr_arash","protected":false,"verified":false,"followers_count":800,"friends_count":444,"listed_count":0,"favourites_count":267,"statuses_count":22,"created_at":"Wed Dec 07 17:44:36 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"756D80","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872074052\/0519017adb8188d0b39004e68a84cec6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872074052\/0519017adb8188d0b39004e68a84cec6.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713175255158784\/gsjDHFYg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713175255158784\/gsjDHFYg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430891082\/1446846053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akifasifas","name":"s\u0250\u025f\u025f\u028eb\u0250\u0e4f\u032f\u0361\u2299","id":399419185,"id_str":"399419185","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720405184512,"id_str":"663727720405184512","text":"\u80f8\u5f35\u3063\u3066\u308c\u3070\u3044\u3044\u306e\u306b\u2026\u305d\u3046\u3044\u3046\u554f\u984c\u3058\u3083\u306a\u3044\u306e\u2026\uff1f\u307e\u3055\u304b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3116951241,"id_str":"3116951241","name":"\u3064 \u306a (\u677e) \u15e6\u219e\u25c3","screen_name":"tsuna_sr","location":null,"url":"http:\/\/twpf.jp\/tsuna_sr","description":"\u3055\u304b\u306a\u3067\u3059\u3002\u7d75\u306f\u3075\u3041\u307c\u308a\u3064\u3057\u3066\u304f\u308c\u308b\u3068\u30d3\u30c1\u30d3\u30c1\u559c\u3076\u3002","protected":false,"verified":false,"followers_count":475,"friends_count":459,"listed_count":82,"favourites_count":48853,"statuses_count":40905,"created_at":"Thu Mar 26 03:31:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2D38","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E35","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663501026515750912\/m4BNo1OB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663501026515750912\/m4BNo1OB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3116951241\/1446161922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994666"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396816385,"id_str":"663727720396816385","text":"@kanade_soccer70 \n\u30dc\u30c3\u30ad\u3057\u306a\u304c\u3089\u30ea\u30d7\u3057\u3066\u304f\u3093\u306a\u3084","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724980346064897,"in_reply_to_status_id_str":"663724980346064897","in_reply_to_user_id":3305686776,"in_reply_to_user_id_str":"3305686776","in_reply_to_screen_name":"kanade_soccer70","user":{"id":2916395072,"id_str":"2916395072","name":"\u7f8e\u5b99","screen_name":"jsb_ex_msr","location":"#EXFAMILY #\u4eca\u5e02\u9686\u4e8c #\u7247\u5ca1\u76f4\u4eba ","url":"http:\/\/Instagram.com\/MISORA_JSB","description":"\u5024\u6253\u3061\u3053\u304d\uff0e\u5a9a\u3073\u58f2\u308a\uff0e\u5bc4\u3063\u3066\u304f\u3093\u306a\u2764\ufe0e\u2764\ufe0e","protected":false,"verified":false,"followers_count":800,"friends_count":461,"listed_count":0,"favourites_count":19565,"statuses_count":8796,"created_at":"Tue Dec 02 08:37:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660653189172105216\/BVZJbce2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660653189172105216\/BVZJbce2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2916395072\/1446393746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanade_soccer70","name":"kanade","id":3305686776,"id_str":"3305686776","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994664"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720371585025,"id_str":"663727720371585025","text":"RT @chen102_0921: \uc54c\ud2f0\ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4. \ud604\uc7ac \ud558\uace0\uacc4\uc2dc\ub294 \uc774 \ud574\uc2dc\ud0dc\uadf8 \ub204\uac00 \uc2dc\uc791\ud558\uc167\ub294\uc9c0\ub294\ubab0\ub77c\ub3c4 \ud574\uc2dc \ud0dc\uadf8\ud558\ub294\uae30\uac04 \ub05d\ub0ac\uc2b5\ub2c8\ub2e4. \uc774\uc81c \uadf8\ub9cc\ud558\uc2dc\uace0 \ub9c8\ub9c8\ud22c\ud45c\ub791 \uc2a4\ubc0d\uc73c\ub85c \ub118\uc5b4\uac00\uc154\uc57c \ud574\uc694.\n\uc81c\ubc1c \uc880 \uc54c\ub824\uc8fc\uc138\uc694.\uc6b0\ub9ac\uc560\ub4e4 \uc0c1\uc918\uc57c\ub418\uc796\uc544\uc694 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252599504,"id_str":"3252599504","name":"\ub9c8\ub9c8\ud22c\ud45c\ud574\uc694 \uc53d","screen_name":"heekaiyoon","location":"\ub108 \ub9c8\uc74c \uc18d \uc0ac\uac70\ub9ac","url":null,"description":"\uc138\uc885\u2665\/15\uc53d\uc218\ub2c8\/9\uc778\uc9c0\uc9c0","protected":false,"verified":false,"followers_count":33,"friends_count":700,"listed_count":0,"favourites_count":405,"statuses_count":1913,"created_at":"Mon Jun 22 11:30:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661557738103701504\/JxqZ07i6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661557738103701504\/JxqZ07i6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252599504\/1445080167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:56 +0000 2015","id":663726973374468097,"id_str":"663726973374468097","text":"\uc54c\ud2f0\ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4. \ud604\uc7ac \ud558\uace0\uacc4\uc2dc\ub294 \uc774 \ud574\uc2dc\ud0dc\uadf8 \ub204\uac00 \uc2dc\uc791\ud558\uc167\ub294\uc9c0\ub294\ubab0\ub77c\ub3c4 \ud574\uc2dc \ud0dc\uadf8\ud558\ub294\uae30\uac04 \ub05d\ub0ac\uc2b5\ub2c8\ub2e4. \uc774\uc81c \uadf8\ub9cc\ud558\uc2dc\uace0 \ub9c8\ub9c8\ud22c\ud45c\ub791 \uc2a4\ubc0d\uc73c\ub85c \ub118\uc5b4\uac00\uc154\uc57c \ud574\uc694.\n\uc81c\ubc1c \uc880 \uc54c\ub824\uc8fc\uc138\uc694.\uc6b0\ub9ac\uc560\ub4e4 \uc0c1\uc918\uc57c\ub418\uc796\uc544\uc694 https:\/\/t.co\/YqPf8vgbsw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284245388,"id_str":"3284245388","name":"\uc21c\ub529\uc774 \uccb4\ub2c8\ubc31\uc774\u2764\ufe0f","screen_name":"chen102_0921","location":"\uc885\ub300\uc57c \ube5b\ub098\uc918\uc11c \uace0\ub9c8\uc6cc","url":null,"description":"EXO=9 CHEN \uc885\ub300\u2665WE ARE ONE!!!!!!!!!!!!!!!!!!!!!!!!!9\uba85\uc758 EXO \ube5b\ub098\uc918\uc11c \ub108\ubb34 \uace0\ub9c8\uc6cc \uc874\uc7ac\ud574\uc918\uc11c \uace0\ub9c8\uc6cc\u2665\u2665 (\ud5e4\ub354 @minsoku_S2)","protected":false,"verified":false,"followers_count":842,"friends_count":774,"listed_count":4,"favourites_count":157,"statuses_count":27196,"created_at":"Sun Jul 19 10:45:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660844055668985856\/SCEL-Ly1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660844055668985856\/SCEL-Ly1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284245388\/1445767395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chen102_0921","name":"\uc21c\ub529\uc774 \uccb4\ub2c8\ubc31\uc774\u2764\ufe0f","id":3284245388,"id_str":"3284245388","indices":[3,16]}],"symbols":[],"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726973374468097,"source_status_id_str":"663726973374468097","source_user_id":3284245388,"source_user_id_str":"3284245388"}]},"extended_entities":{"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726973374468097,"source_status_id_str":"663726973374468097","source_user_id":3284245388,"source_user_id_str":"3284245388"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079994658"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720388399104,"id_str":"663727720388399104","text":"RT @rikumkmk: \u30ac\u30aa\u30e9\u30fc\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u306e\u3067RT\u304a\u9858\u3044\u3057\u307e\u30fc\u3059\uff01\uff01\n\n#\u30ea\u30c8\u30b0\u30ea \n#\u30ac\u30aa\u30e9\u30fc\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\/8dF0WLVe8O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463110340,"id_str":"2463110340","name":"\u308c\u3093@\u30ac\u30e9\u30aa\u30fc","screen_name":"sakai920","location":"\u9759\u5ca1\u770c \u9759\u5ca1\u5e02 \u6e05\u6c34\u533a","url":null,"description":"\u30d1\u30ba\u30c9\u30e9\u30e2\u30f3\u30b9\u30c8\u3084\u3063\u3066\u307e\u3059\uff01\uff01\uff01\u4e2d\u5b663\u5e74\u3067\u3059\u30ea\u30c8\u30b0\u30ea\u3081\u3063\u3061\u3083\u597d\u304d\u3067\u3059\u3002\u81ea\u5206\u306f\u82b9\u5948\u63a8\u3057\u3067\u3059\u30ea\u30c8\u30b0\u30ea\u77e5\u3063\u3066\u308b\u4eba\u3084\u30ac\u30e9\u30aa\u30fc\u306e\u65b9\u8ab0\u3067\u3082\u304d\u304c\u308b\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u7121\u8a00\u3067\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u304c\u3059\u3044\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":63,"friends_count":82,"listed_count":0,"favourites_count":0,"statuses_count":5,"created_at":"Fri Apr 25 12:05:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662613319920975872\/bqwu4j3k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662613319920975872\/bqwu4j3k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463110340\/1445852968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 18 12:07:30 +0000 2015","id":655716834495197184,"id_str":"655716834495197184","text":"\u30ac\u30aa\u30e9\u30fc\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u306e\u3067RT\u304a\u9858\u3044\u3057\u307e\u30fc\u3059\uff01\uff01\n\n#\u30ea\u30c8\u30b0\u30ea \n#\u30ac\u30aa\u30e9\u30fc\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\/8dF0WLVe8O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3449289619,"id_str":"3449289619","name":"riku\u266a\u30ac\u30aa\u30e9\u30fc","screen_name":"rikumkmk","location":null,"url":null,"description":"Little Glee Monster\/manaka\uff02MAYU\u63a8\u3057\/\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\/\u9577\u91ce\u4f4f\u307f\u4e2d3\/\u30ac\u30aa\u30e9\u30fc\u521d\u5fc3\u8005\u3067\u3059\u3002\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\/\u30ac\u30aa\u30e9\u30fc\u306e\u65b9\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":241,"friends_count":252,"listed_count":0,"favourites_count":2149,"statuses_count":345,"created_at":"Fri Sep 04 15:08:17 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661878064985411584\/ezD4uD92_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661878064985411584\/ezD4uD92_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3449289619\/1445685198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":17,"entities":{"hashtags":[{"text":"\u30ea\u30c8\u30b0\u30ea","indices":[27,32]},{"text":"\u30ac\u30aa\u30e9\u30fc","indices":[34,39]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[40,54]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655716812684857344,"id_str":"655716812684857344","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":655716812684857344,"id_str":"655716812684857344","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":655716812697415681,"id_str":"655716812697415681","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS944UsAE0P8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS944UsAE0P8d.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"large":{"w":640,"h":825,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"}}},{"id":655716812701589507,"id_str":"655716812701589507","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS945UYAM_onI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS945UYAM_onI.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":831,"resize":"fit"},"large":{"w":640,"h":887,"resize":"fit"},"small":{"w":340,"h":471,"resize":"fit"}}},{"id":655716813624315904,"id_str":"655716813624315904","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS98VUEAA-AF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS98VUEAA-AF8.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30ea\u30c8\u30b0\u30ea","indices":[41,46]},{"text":"\u30ac\u30aa\u30e9\u30fc","indices":[48,53]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[54,68]}],"urls":[],"user_mentions":[{"screen_name":"rikumkmk","name":"riku\u266a\u30ac\u30aa\u30e9\u30fc","id":3449289619,"id_str":"3449289619","indices":[3,12]}],"symbols":[],"media":[{"id":655716812684857344,"id_str":"655716812684857344","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":655716834495197184,"source_status_id_str":"655716834495197184","source_user_id":3449289619,"source_user_id_str":"3449289619"}]},"extended_entities":{"media":[{"id":655716812684857344,"id_str":"655716812684857344","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS941VEAAWg2R.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":655716834495197184,"source_status_id_str":"655716834495197184","source_user_id":3449289619,"source_user_id_str":"3449289619"},{"id":655716812697415681,"id_str":"655716812697415681","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS944UsAE0P8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS944UsAE0P8d.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"large":{"w":640,"h":825,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"}},"source_status_id":655716834495197184,"source_status_id_str":"655716834495197184","source_user_id":3449289619,"source_user_id_str":"3449289619"},{"id":655716812701589507,"id_str":"655716812701589507","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS945UYAM_onI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS945UYAM_onI.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":831,"resize":"fit"},"large":{"w":640,"h":887,"resize":"fit"},"small":{"w":340,"h":471,"resize":"fit"}},"source_status_id":655716834495197184,"source_status_id_str":"655716834495197184","source_user_id":3449289619,"source_user_id_str":"3449289619"},{"id":655716813624315904,"id_str":"655716813624315904","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CRmS98VUEAA-AF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRmS98VUEAA-AF8.jpg","url":"http:\/\/t.co\/8dF0WLVe8O","display_url":"pic.twitter.com\/8dF0WLVe8O","expanded_url":"http:\/\/twitter.com\/rikumkmk\/status\/655716834495197184\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":655716834495197184,"source_status_id_str":"655716834495197184","source_user_id":3449289619,"source_user_id_str":"3449289619"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994662"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720405139456,"id_str":"663727720405139456","text":"@roperax \u76f4\u5f3c\u3067\u306f\u3054\u3056\u3089\u306c\uff01\u76f4\u5f3c\u3067\u306f\u3054\u3056\u3089\u306c\u305e\uff01\uff01(\u6176\u559c\u69d8\u3067\u3082\u3054\u3056\u3089\u306c)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720906838007808,"in_reply_to_status_id_str":"663720906838007808","in_reply_to_user_id":2839996028,"in_reply_to_user_id_str":"2839996028","in_reply_to_screen_name":"roperax","user":{"id":769194974,"id_str":"769194974","name":"\u98a8\u90aa\u3092\u3072\u3044\u305f\u86c6","screen_name":"zeylanicum","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u307f\u8150\u5973\u5b50\u3002\u5e55\u672b\u3067Rock\u3059\u308b\u4f5c\u54c1\u306e\u4e3b\u5f93\u304c\u597d\u304d\u3067\u3059\u3002\u6697\u591c\u738b\u56fd\u884c\u3063\u305f\u308a\u767d\u591c\u738b\u56fd\u884c\u3063\u305f\u308a\u4e09\u9580\u5e02\u306b\u884c\u3063\u305f\u308a\u51ac\u6728\u5e02\u306b\u884c\u3063\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u3042\u307e\u308a\u3088\u308d\u3057\u304f\u306a\u3044\u767a\u8a00\u3084\u5984\u60f3\u3092\u81f4\u3057\u307e\u3059\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002\u30d8\u30c3\u30c0\u30fc\u306f\u53cb\u4eba\u69d8\u304c\u63cf\u3044\u3066\u304f\u3060\u3059\u3063\u305f\u4e0a\u69d8\u3002","protected":false,"verified":false,"followers_count":65,"friends_count":53,"listed_count":2,"favourites_count":8505,"statuses_count":49722,"created_at":"Mon Aug 20 09:34:12 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661442050571681793\/0uTMFjU4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661442050571681793\/0uTMFjU4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769194974\/1441538509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"roperax","name":"\u30ed\u30da\u30e9","id":2839996028,"id_str":"2839996028","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994666"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720401133568,"id_str":"663727720401133568","text":"@FordPerformance @keselowski @TXMotorSpeedway i dont back souls like that,u need 2 strt new rce prog,run it neutral and honest,u put ot buss","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725484253974528,"in_reply_to_status_id_str":"663725484253974528","in_reply_to_user_id":14414759,"in_reply_to_user_id_str":"14414759","in_reply_to_screen_name":"FordPerformance","user":{"id":3299904758,"id_str":"3299904758","name":"Randall White","screen_name":"randallwhite912","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":18,"listed_count":0,"favourites_count":286,"statuses_count":372,"created_at":"Tue Jul 28 21:48:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626147710458990592\/jHSKMj-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626147710458990592\/jHSKMj-b_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FordPerformance","name":"Ford Performance","id":14414759,"id_str":"14414759","indices":[0,16]},{"screen_name":"keselowski","name":"Brad Keselowski","id":40745276,"id_str":"40745276","indices":[17,28]},{"screen_name":"TXMotorSpeedway","name":"Texas Motor Speedway","id":28343967,"id_str":"28343967","indices":[29,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994665"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720405278720,"id_str":"663727720405278720","text":"Ya saliste de vacaciones, pero no has salido de mi coraz\u00f3n.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3418891813,"id_str":"3418891813","name":"Adan Bravo","screen_name":"AdanBravo_43","location":null,"url":null,"description":"Que nunca tengas que arrepentirte de algo que no hiciste. Toma riesgos; si ganas, es \\maravilloso\\; si no, es \\experiencia\\.","protected":false,"verified":false,"followers_count":137,"friends_count":364,"listed_count":0,"favourites_count":0,"statuses_count":1090,"created_at":"Tue Sep 01 21:29:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639125967919841280\/qmIEbN56_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639125967919841280\/qmIEbN56_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3418891813\/1441214481","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994666"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720371650560,"id_str":"663727720371650560","text":"RT @atpxxx: \u66f2\u4f5c\u308b\u6642\u3001\u624b\u6c57\u304b\u304f\u304b\u3089\u30de\u30a6\u30b9\u3068\u30ad\u30fc\u30dc\u30fc\u30c9\u304c\u4f55\u304b\u6c5a\u308c\u308b\u3002\u4f55\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517517886,"id_str":"517517886","name":"\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u306f\u3080","screen_name":"hamriderw","location":null,"url":null,"description":"\u597d\u304d\u306a\u3082\u306e:\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\uff08\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\uff37\u3001\u4eee\u9762\u30e9\u30a4\u30c0\u30fcSPIRITS\u3001\u6700\u8fd1\u306f\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u30c9\u30e9\u30a4\u30d6\u3082\uff09\u3002\u30a2\u30cb\u30e1\u3092\u5c11\u3005\uff08\u4e3b\u306bSF\u3001\u5408\u4f53\u5909\u5f62\u30ed\u30dc\u30c3\u30c8\u7cfb\uff09\u3002\u6700\u8fd1\u306f\u30a2\u30cb\u30e1\u7248\u9032\u6483\u306e\u5de8\u4eba\u306b\u30cf\u30de\u3063\u3066\u307e\u3059\u3002\u30cf\u30e0\u30b9\u30bf\u30fc\u305d\u306e\u4ed6\u3052\u3063\u3057\u30fc\u3001\u306b\u3083\u3093\u3053\u304c\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":241,"friends_count":227,"listed_count":9,"favourites_count":1924,"statuses_count":34656,"created_at":"Wed Mar 07 12:05:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495089174936969217\/KxPPNRqT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495089174936969217\/KxPPNRqT_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:06 +0000 2015","id":663724749713862658,"id_str":"663724749713862658","text":"\u66f2\u4f5c\u308b\u6642\u3001\u624b\u6c57\u304b\u304f\u304b\u3089\u30de\u30a6\u30b9\u3068\u30ad\u30fc\u30dc\u30fc\u30c9\u304c\u4f55\u304b\u6c5a\u308c\u308b\u3002\u4f55\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185958819,"id_str":"185958819","name":"\u3042\u30fc\u3068\u307a\uff08artpaix\uff09","screen_name":"atpxxx","location":"Fukuoka \uff08JPN\uff09","url":"http:\/\/www.audiomack.com\/artist\/artpaix","description":"\u3010Label\u3011@RodentLabel \u3010Mail\u3011rodentlabel@gmail.com \u3010\u597d\u304d\u306a\u3082\u306e\u3011\u30c6\u30af\u30ce\u30fbEDM\u30fb\u30cf\u30a6\u30b9\u30fbDTM\u30fbDJ\u30fbPerfume\u30fbP.T.A.\u30fb\u30cf\u30e0\u30b9\u30bf\u30fc","protected":false,"verified":false,"followers_count":1209,"friends_count":975,"listed_count":43,"favourites_count":19615,"statuses_count":81330,"created_at":"Thu Sep 02 07:08:26 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163274265\/E63fwrLW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163274265\/E63fwrLW.jpeg","profile_background_tile":false,"profile_link_color":"005566","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455849465845268480\/mBFPbuER_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455849465845268480\/mBFPbuER_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185958819\/1411768966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atpxxx","name":"\u3042\u30fc\u3068\u307a\uff08artpaix\uff09","id":185958819,"id_str":"185958819","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994658"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720396955648,"id_str":"663727720396955648","text":"#Right now heavy clashes between #Kurdish force #Peshmerga and #ISIS. Incloding to @kurdistan24tv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623157011,"id_str":"623157011","name":"Mevo88","screen_name":"MevanAkreyi","location":"Regional of Kurdistan","url":"http:\/\/facebook.com\/Mevan1988","description":"Kurdish Activist ,Struggle of #Peshmarga will not be forgetten, #Kurdishunity will make us Stronger. http:\/\/instagram\/mevansadiq","protected":false,"verified":false,"followers_count":750,"friends_count":655,"listed_count":9,"favourites_count":2408,"statuses_count":3072,"created_at":"Sat Jun 30 21:33:14 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000014003276\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000014003276\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"4A66C1","profile_sidebar_fill_color":"0E0E0E","profile_text_color":"4A66C1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660180209254178816\/eG3HM0mR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660180209254178816\/eG3HM0mR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623157011\/1446234285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Right","indices":[0,6]},{"text":"Kurdish","indices":[33,41]},{"text":"Peshmerga","indices":[48,58]},{"text":"ISIS","indices":[63,68]}],"urls":[],"user_mentions":[{"screen_name":"kurdistan24tv","name":"Kurdistan24","id":2435422020,"id_str":"2435422020","indices":[83,97]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994664"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720371613696,"id_str":"663727720371613696","text":"Ay\u00f1 <3 <3 <3 https:\/\/t.co\/dd4WDMw8DC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3645699943,"id_str":"3645699943","name":"La Supreme","screen_name":"SoyLaSupreme","location":"Xalapa","url":null,"description":"Suprema del aquelarre, competitiva, l\u00e1nguida. \n\nin this whole wide wicked world the only thing you have to be afraid of is me","protected":false,"verified":false,"followers_count":67,"friends_count":105,"listed_count":0,"favourites_count":80,"statuses_count":270,"created_at":"Tue Sep 22 06:01:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658130740945682432\/6H49i7Cz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658130740945682432\/6H49i7Cz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3645699943\/1445745832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663617823856422914,"quoted_status_id_str":"663617823856422914","quoted_status":{"created_at":"Mon Nov 09 07:23:13 +0000 2015","id":663617823856422914,"id_str":"663617823856422914","text":"@aleexfajardo @SoyLaSupreme La Supreme ser\u00eda una invitada de honor en mi canal. Encantado. \ud83d\ude4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663617023319011328,"in_reply_to_status_id_str":"663617023319011328","in_reply_to_user_id":105026649,"in_reply_to_user_id_str":"105026649","in_reply_to_screen_name":"aleexfajardo","user":{"id":64223864,"id_str":"64223864","name":"Trespacos","screen_name":"trespacos","location":"Morelia, Mich.","url":"http:\/\/youtube.com\/3trespacos","description":"Soy el fan no. 1 de @ivanlemush \u2728. Hago videos en: http:\/\/youtube.com\/3trespacos","protected":false,"verified":false,"followers_count":2473,"friends_count":1015,"listed_count":11,"favourites_count":7223,"statuses_count":10751,"created_at":"Sun Aug 09 18:30:36 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661412303284273152\/u6oi344S_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661412303284273152\/u6oi344S_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64223864\/1446527830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aleexfajardo","name":"\u2b50Alejandro Fajardo\u2b50","id":105026649,"id_str":"105026649","indices":[0,13]},{"screen_name":"SoyLaSupreme","name":"La Supreme","id":3645699943,"id_str":"3645699943","indices":[14,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dd4WDMw8DC","expanded_url":"https:\/\/twitter.com\/trespacos\/status\/663617823856422914","display_url":"twitter.com\/trespacos\/stat\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079994658"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384356354,"id_str":"663727720384356354","text":"Credit Union Capital-to-Asset Ratio Reaches Highest Levels since November 2008 https:\/\/t.co\/rqBThM3PL3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2228752034,"id_str":"2228752034","name":"Lora Bray","screen_name":"bray_lora","location":"Madison, WI","url":null,"description":"Curious researcher, creative writer...Ask questions\/consider options\/find answers! (my views)\nInformation Research Analyst, Credit Union National Association","protected":false,"verified":false,"followers_count":58,"friends_count":78,"listed_count":3,"favourites_count":8,"statuses_count":243,"created_at":"Tue Dec 03 19:26:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626109705719447552\/h4IuTJ3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626109705719447552\/h4IuTJ3h_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rqBThM3PL3","expanded_url":"http:\/\/bit.ly\/1Hqg8DR","display_url":"bit.ly\/1Hqg8DR","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720405209088,"id_str":"663727720405209088","text":"\u7f8e\u5473\u3057\u305d\u3046\u306a\u306e\u3067\u4e00\u5ea6\u884c\u3063\u3066\u307f\u305f\u3044\u3051\u3069\u3001\u99c5\u304b\u3089\u3061\u3087\u3044\u3042\u308b\u306e\u3068\u4e00\u4eba\u98f2\u307f\u3088\u308a\u30b0\u30eb\u30fc\u30d7\u5411\u3051\u3063\u307d\u3044\u3068\u3053\u308d\u304c\u96e3\u70b9\u304b\u306a\uff1f\uff1f\uff1eRT","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427455746,"id_str":"427455746","name":"\u732b\u63d0\u7763","screen_name":"neko_teitoku117","location":"\u3061\u3070\u30fb\u3044\u3061\u304b\u308f","url":null,"description":"PC\u95a2\u9023\/\u9152\u98f2\u307f\u30fb\u5927\u98df\u3044\/\u30af\u30eb\u30de\u30fb\u30d0\u30a4\u30af\u30fb\u9244\u9053\u3067\u30d5\u30e9\u30d5\u30e9\u65c5\u884c\/\u3000\u307e\u3001\u3053\u3093\u306a\u611f\u3058\u3063\u3059\u304b\u306d\u3002\u3042\u3001HN\u306f\u4ee5\u524d\u304b\u3089\u306e\u3082\u306e\u3067\u3057\u3066\u3001\u8266\u3053\u308c\u3068\u306f\u7121\u95a2\u4fc2\u3067\u3059\u306e\u3067\u3054\u5bb9\u8d66\u3092\u3002\u30ea\u30c4\u30a4\u30fc\u30c8\u3001\u30d5\u30a9\u30ed\u30fc\u3001\u30ea\u30e0\u30fc\u30d6\u306f\u3069\u3046\u305e\u3054\u81ea\u7531\u306b","protected":false,"verified":false,"followers_count":170,"friends_count":124,"listed_count":5,"favourites_count":155,"statuses_count":30911,"created_at":"Sat Dec 03 15:08:10 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8A7DB3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"9D81E3","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EDE6FA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551330532127014913\/2TQf4iL3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551330532127014913\/2TQf4iL3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427455746\/1355414297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079994666"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720367579136,"id_str":"663727720367579136","text":"@cumlaurent SAME","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727204887433220,"in_reply_to_status_id_str":"663727204887433220","in_reply_to_user_id":1105184551,"in_reply_to_user_id_str":"1105184551","in_reply_to_screen_name":"cumlaurent","user":{"id":878659429,"id_str":"878659429","name":"Pari has testweek","screen_name":"Inceptionlrh","location":"\u2740louisandharry\u2740 ","url":null,"description":"you'll never be hood enough for me","protected":false,"verified":false,"followers_count":14520,"friends_count":8843,"listed_count":34,"favourites_count":12656,"statuses_count":21963,"created_at":"Sat Oct 13 20:41:59 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000096371842\/92b471ad19a224e719a0ea7b4957af02.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000096371842\/92b471ad19a224e719a0ea7b4957af02.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727649022468096\/zDuAbxBw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727649022468096\/zDuAbxBw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878659429\/1446975023","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cumlaurent","name":"\u3164\u3164\u3164\u3164","id":1105184551,"id_str":"1105184551","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994657"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720384196608,"id_str":"663727720384196608","text":"Check out my #listing in #WildwoodCrest #NJ https:\/\/t.co\/VBoMXHsrBo #realestate #realtor https:\/\/t.co\/ifg57XeKdu","source":"\u003ca href=\"http:\/\/www.circlepix.com\" rel=\"nofollow\"\u003ecirclepix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4047974354,"id_str":"4047974354","name":"Joan Morey","screen_name":"joanmorey3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":31,"listed_count":2,"favourites_count":0,"statuses_count":22,"created_at":"Wed Oct 28 15:48:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659397693857361920\/o0I9Nzs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659397693857361920\/o0I9Nzs4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"listing","indices":[13,21]},{"text":"WildwoodCrest","indices":[25,39]},{"text":"NJ","indices":[40,43]},{"text":"realestate","indices":[68,79]},{"text":"realtor","indices":[80,88]}],"urls":[{"url":"https:\/\/t.co\/VBoMXHsrBo","expanded_url":"http:\/\/tour.circlepix.com\/home\/57JFPP","display_url":"tour.circlepix.com\/home\/57JFPP","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663727719092346880,"id_str":"663727719092346880","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2AwUYAAgs6R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2AwUYAAgs6R.jpg","url":"https:\/\/t.co\/ifg57XeKdu","display_url":"pic.twitter.com\/ifg57XeKdu","expanded_url":"http:\/\/twitter.com\/joanmorey3\/status\/663727720384196608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727719092346880,"id_str":"663727719092346880","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2AwUYAAgs6R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2AwUYAAgs6R.jpg","url":"https:\/\/t.co\/ifg57XeKdu","display_url":"pic.twitter.com\/ifg57XeKdu","expanded_url":"http:\/\/twitter.com\/joanmorey3\/status\/663727720384196608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079994661"} +{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727720392736768,"id_str":"663727720392736768","text":"Que ha pasado con las entradas en el vistalegre ??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2796244319,"id_str":"2796244319","name":"awg.","screen_name":"hemmodylan","location":"6 de Mayo\u2728","url":null,"description":"He tenido las babas de Alex Gaskarth en la cara que m\u00e1s os cuento.","protected":false,"verified":false,"followers_count":2233,"friends_count":267,"listed_count":25,"favourites_count":29559,"statuses_count":83243,"created_at":"Tue Sep 30 20:11:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646043175472222212\/_aTJNzRR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646043175472222212\/_aTJNzRR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2796244319\/1443649092","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079994663"} +{"delete":{"status":{"id":299288500405141504,"id_str":"299288500405141504","user_id":223653185,"user_id_str":"223653185"},"timestamp_ms":"1447079995394"}} +{"delete":{"status":{"id":663725023455150081,"id_str":"663725023455150081","user_id":2691289908,"user_id_str":"2691289908"},"timestamp_ms":"1447079995371"}} +{"delete":{"status":{"id":646369396131127296,"id_str":"646369396131127296","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447079995525"}} +{"delete":{"status":{"id":660056211233075200,"id_str":"660056211233075200","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447079995615"}} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724587065344,"id_str":"663727724587065344","text":"RT @OttoMatticBaby: If I change, It's for myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2966627451,"id_str":"2966627451","name":"Landon Watts","screen_name":"_landonwatts","location":"Bartlett, TN","url":"http:\/\/instagram.com\/landon.watts","description":"new twitter","protected":false,"verified":false,"followers_count":29,"friends_count":31,"listed_count":0,"favourites_count":78,"statuses_count":315,"created_at":"Wed Jan 07 20:47:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660183853416366080\/acPm6lup_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660183853416366080\/acPm6lup_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2966627451\/1446235223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:27 +0000 2015","id":663727608295776257,"id_str":"663727608295776257","text":"If I change, It's for myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362787242,"id_str":"362787242","name":"OttoMattic","screen_name":"OttoMatticBaby","location":"Pennsylvania","url":"http:\/\/SoundCloud.com\/OttoMatticBaby","description":"20 Year Old Clean Artist | Inspiring The Youth When I'm In The Booth | Passion On iTunes Here - http:\/\/bit.ly\/1P1v8dR | Inquires - OttoMatticTv@yahoo.com","protected":false,"verified":false,"followers_count":75397,"friends_count":31195,"listed_count":68,"favourites_count":37567,"statuses_count":299581,"created_at":"Sat Aug 27 00:14:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000084572725\/84116b692fb679ee55ef34f6bf6a20ed.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000084572725\/84116b692fb679ee55ef34f6bf6a20ed.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657759095181692928\/vyauSTay_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657759095181692928\/vyauSTay_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362787242\/1440076692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OttoMatticBaby","name":"OttoMattic","id":362787242,"id_str":"362787242","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995663"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561854464,"id_str":"663727724561854464","text":"\u05e0\u05de\u05d0\u05e1 \u05db\u05d1\u05e8 \u05dc\u05d7\u05db\u05d5\u05ea \u05dc\u05da","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164682057,"id_str":"2164682057","name":"Shani Meshulam","screen_name":"shani_meshulam2","location":null,"url":null,"description":"Don't stop when you are tired, stop when you are done.","protected":false,"verified":false,"followers_count":650,"friends_count":307,"listed_count":0,"favourites_count":6801,"statuses_count":25073,"created_at":"Sat Nov 02 10:57:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"he","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663029035128197120\/BxCr1QgB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663029035128197120\/BxCr1QgB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164682057\/1446913416","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"iw","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574453760,"id_str":"663727724574453760","text":"RT @rupertbu: @onlymehdi well it goes to prove everybody copied teacher at school,4 similar writing!;) #IranElection #Neda truly they are I\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3868304901,"id_str":"3868304901","name":"\u0627\u062d\u0645\u062f \u0627\u0644\u0627\u062d\u0645\u0631\u064a","screen_name":"goodersedoriqu5","location":"Saudi Arabia, Riyadh","url":null,"description":"(\u0648\u064e\u0625\u0650\u0646\u0651\u064e \u0631\u064e\u0628\u0651\u064e\u0643\u064e \u0644\u064e\u0630\u064f\u0648 \u0641\u064e\u0636\u0652\u0644\u064d \u0639\u064e\u0644\u064e\u0649 \u0627\u0644\u0646\u0651\u064e\u0627\u0633\u0650 \u0648\u064e\u0644\u064e\u0643\u0650\u0646\u0651\u064e \u0623\u064e\u0643\u0652\u062b\u064e\u0631\u064e\u0647\u064f\u0645\u0652 \u0644\u064e\u0627 \u064a\u064e\u0634\u0652\u0643\u064f\u0631\u064f\u0648\u0646\u064e)","protected":false,"verified":false,"followers_count":657,"friends_count":546,"listed_count":0,"favourites_count":1806,"statuses_count":6637,"created_at":"Mon Oct 05 05:36:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655580499780464641\/HZzMLHNt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655580499780464641\/HZzMLHNt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jun 30 19:05:42 +0000 2009","id":2407991527,"id_str":"2407991527","text":"@onlymehdi well it goes to prove everybody copied teacher at school,4 similar writing!;) #IranElection #Neda truly they are IDIOTS!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":2407897201,"in_reply_to_status_id_str":"2407897201","in_reply_to_user_id":9313772,"in_reply_to_user_id_str":"9313772","in_reply_to_screen_name":"onlymehdi","user":{"id":36016773,"id_str":"36016773","name":" Rupert Neil Bumfrey","screen_name":"rupertbu","location":"Europe\/Arabia\/World","url":"https:\/\/www.rebelmouse.com\/rupertbufavouritesonsocial\/","description":"Yes, I am sure my background is #photoshopped, the imagery makes me smile each time I see, but who else does?! Sensible stuff here http:\/\/goo.gl\/xbm4I","protected":false,"verified":false,"followers_count":8689,"friends_count":3804,"listed_count":355,"favourites_count":1009,"statuses_count":134649,"created_at":"Tue Apr 28 07:44:35 +0000 2009","utc_offset":0,"time_zone":"Europe\/London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461495614379798528\/uez6JMvE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461495614379798528\/uez6JMvE.jpeg","profile_background_tile":true,"profile_link_color":"1500B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571425354859966464\/PKO6LvLD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571425354859966464\/PKO6LvLD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36016773\/1398860039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":7,"entities":{"hashtags":[{"text":"IranElection","indices":[89,102]},{"text":"Neda","indices":[103,108]}],"urls":[],"user_mentions":[{"screen_name":"onlymehdi","name":"Mehdi Saharkhiz","id":9313772,"id_str":"9313772","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IranElection","indices":[103,116]},{"text":"Neda","indices":[117,122]}],"urls":[],"user_mentions":[{"screen_name":"rupertbu","name":" Rupert Neil Bumfrey","id":36016773,"id_str":"36016773","indices":[3,12]},{"screen_name":"onlymehdi","name":"Mehdi Saharkhiz","id":9313772,"id_str":"9313772","indices":[14,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595429376,"id_str":"663727724595429376","text":"RT @ttwitandu: Sobreviva, reviva, viva.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1150721370,"id_str":"1150721370","name":"Real love","screen_name":"Navyheartbeat_","location":null,"url":null,"description":"O amor n\u00e3o escolhe homem ou mulher...","protected":false,"verified":false,"followers_count":461,"friends_count":905,"listed_count":2,"favourites_count":5653,"statuses_count":2819,"created_at":"Tue Feb 05 11:46:37 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663460170387824641\/CFJFZOaf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663460170387824641\/CFJFZOaf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1150721370\/1447016205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:43 +0000 2015","id":663727171198955520,"id_str":"663727171198955520","text":"Sobreviva, reviva, viva.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296426412,"id_str":"296426412","name":"MICKEY \u30c4","screen_name":"ttwitandu","location":"\u221e Deus sabe o que faz \u2665 \u221e","url":null,"description":"Contato para publicidade: ttwitandu1@outlook.com","protected":false,"verified":false,"followers_count":600654,"friends_count":224594,"listed_count":177,"favourites_count":45968,"statuses_count":103301,"created_at":"Tue May 10 18:54:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_tile":true,"profile_link_color":"0F0F0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296426412\/1405809646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttwitandu","name":"MICKEY \u30c4","id":296426412,"id_str":"296426412","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578631680,"id_str":"663727724578631680","text":"RT @hhhhaz15: #\u062d\u0627\u062c\u0647_\u062a\u062d\u0628\u0647\u0627_\u0645\u0646_\u0637\u0641\u0648\u0644\u062a\u0643 https:\/\/t.co\/eUiSTgMzeY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4081512099,"id_str":"4081512099","name":"\u0627\u0644\u0640\u0640\u0639\u064e\u0640\u0640\u0646\u064f\u0640\u0640\u0648\u062f\u265a","screen_name":"Abnt14","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0634\u0627\u0627\u0621 \u0627\u0644\u0642\u062f\u0631 \u0623\u0646 \u0646\u0641\u062a\u0631\u0642 \u064a\u0627\u0635\u062f\u064a\u0642\u064a ..\u0648\u0644\u0643\u0646 \u062b\u0642 \u062a\u0645\u0627\u0645\u0627\u064b \u0628\u0623\u0646\u064a \u0644\u0646 \u0623\u0646\u0633\u0627\u0643 \u0623\u0628\u062f\u0627\u064b .. \n\u062d\u0633\u0627\u0628\u064a \u0627\u0644\u0642\u062f\u064a\u0645 \u200e\u200e@anoaoder56\n \u2665\u0634\u0640\u0645\u0640\u0631 ..\u062d\u0640\u0640\u0627\u0626\u0640\u0640\u0644","protected":false,"verified":false,"followers_count":30,"friends_count":79,"listed_count":0,"favourites_count":54,"statuses_count":205,"created_at":"Sat Oct 31 09:33:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660390903010500608\/tgK22CVh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660390903010500608\/tgK22CVh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4081512099\/1446793026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:58:06 +0000 2015","id":663415211257368576,"id_str":"663415211257368576","text":"#\u062d\u0627\u062c\u0647_\u062a\u062d\u0628\u0647\u0627_\u0645\u0646_\u0637\u0641\u0648\u0644\u062a\u0643 https:\/\/t.co\/eUiSTgMzeY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1541457391,"id_str":"1541457391","name":"\u2656aziiz\u2656","screen_name":"hhhhaz15","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f.\u0634\u0627\u0639\u0631..\u0645\u0627\u062d\u0628 \u0627\u0644\u0641\u0644\u0633\u0641\u0647..\u0634\u0645\u0631\u064a\u2026 \u0645\u062f\u0631\u0633","protected":false,"verified":false,"followers_count":1724,"friends_count":169,"listed_count":4,"favourites_count":5118,"statuses_count":28428,"created_at":"Sun Jun 23 17:18:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576287825806553088\/UWgQoPfI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576287825806553088\/UWgQoPfI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1541457391\/1445873690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"\u062d\u0627\u062c\u0647_\u062a\u062d\u0628\u0647\u0627_\u0645\u0646_\u0637\u0641\u0648\u0644\u062a\u0643","indices":[0,21]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663415077203263488,"id_str":"663415077203263488","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","url":"https:\/\/t.co\/eUiSTgMzeY","display_url":"pic.twitter.com\/eUiSTgMzeY","expanded_url":"http:\/\/twitter.com\/hhhhaz15\/status\/663415211257368576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":718,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"small":{"w":340,"h":308,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663415077203263488,"id_str":"663415077203263488","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","url":"https:\/\/t.co\/eUiSTgMzeY","display_url":"pic.twitter.com\/eUiSTgMzeY","expanded_url":"http:\/\/twitter.com\/hhhhaz15\/status\/663415211257368576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":718,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"small":{"w":340,"h":308,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062d\u0627\u062c\u0647_\u062a\u062d\u0628\u0647\u0627_\u0645\u0646_\u0637\u0641\u0648\u0644\u062a\u0643","indices":[14,35]}],"urls":[],"user_mentions":[{"screen_name":"hhhhaz15","name":"\u2656aziiz\u2656","id":1541457391,"id_str":"1541457391","indices":[3,12]}],"symbols":[],"media":[{"id":663415077203263488,"id_str":"663415077203263488","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","url":"https:\/\/t.co\/eUiSTgMzeY","display_url":"pic.twitter.com\/eUiSTgMzeY","expanded_url":"http:\/\/twitter.com\/hhhhaz15\/status\/663415211257368576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":718,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"small":{"w":340,"h":308,"resize":"fit"}},"source_status_id":663415211257368576,"source_status_id_str":"663415211257368576","source_user_id":1541457391,"source_user_id_str":"1541457391"}]},"extended_entities":{"media":[{"id":663415077203263488,"id_str":"663415077203263488","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTsf29WwAAwJ8P.jpg","url":"https:\/\/t.co\/eUiSTgMzeY","display_url":"pic.twitter.com\/eUiSTgMzeY","expanded_url":"http:\/\/twitter.com\/hhhhaz15\/status\/663415211257368576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":791,"h":718,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"small":{"w":340,"h":308,"resize":"fit"}},"source_status_id":663415211257368576,"source_status_id_str":"663415211257368576","source_user_id":1541457391,"source_user_id_str":"1541457391"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578623488,"id_str":"663727724578623488","text":"Ando com uma pica do crlh, mas at\u00e9 a andar me doi as costas.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3344610029,"id_str":"3344610029","name":"Leonardo C\u00e9u","screen_name":"leonardoceu28","location":"Caldas da Rainha, Portugal","url":null,"description":"Snapchat: 'leonardoceu28' \/\/ Leonardo C\u00e9u is my name, sex is my game. #CykaBlyatCrew \/\/\n#TeamSushiFumado","protected":false,"verified":false,"followers_count":281,"friends_count":136,"listed_count":0,"favourites_count":5714,"statuses_count":9082,"created_at":"Wed Jun 24 21:27:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658025950077190144\/G7ux6ybx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658025950077190144\/G7ux6ybx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3344610029\/1445468537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724587040768,"id_str":"663727724587040768","text":"@Acrobat Just downloaded Acrobat Reader DC. Add text to PDF, all looked perfect. The hit save. ALL text overlapping and off page! !!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":63779713,"in_reply_to_user_id_str":"63779713","in_reply_to_screen_name":"Acrobat","user":{"id":897942679,"id_str":"897942679","name":"DTIDUncovered","screen_name":"DTIDUncovered","location":null,"url":null,"description":"Huge Darlo fan, looking forward to seeing the club get back where it belongs!","protected":false,"verified":false,"followers_count":163,"friends_count":299,"listed_count":2,"favourites_count":15,"statuses_count":949,"created_at":"Mon Oct 22 16:35:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2827144304\/5db8a38dbd176c2139f9f0e5eb146a32_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2827144304\/5db8a38dbd176c2139f9f0e5eb146a32_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Acrobat","name":"Adobe Acrobat","id":63779713,"id_str":"63779713","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995663"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578631681,"id_str":"663727724578631681","text":"#FansAwards2015 #ElBombon Sergio Celli\n\nEstan dandoo matildaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3092306188,"id_str":"3092306188","name":"Lucia\u2661","screen_name":"lucia_correaa","location":null,"url":null,"description":"EL ENVIDIOSO INVENTA EL RUMOR EL CHISMOSO LO DIFUNDE Y EL IDIOTA SE LO CREE-!\n-Creadora del TT Sergio IRREEMPLAZABLE Celli \u2661","protected":false,"verified":false,"followers_count":384,"friends_count":1020,"listed_count":0,"favourites_count":2287,"statuses_count":3642,"created_at":"Mon Mar 16 02:43:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622146710681333760\/NmXfYmvD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622146710681333760\/NmXfYmvD.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644511239469690880\/sAgIF53l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644511239469690880\/sAgIF53l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092306188\/1440456993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[0,15]},{"text":"ElBombon","indices":[16,25]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724587048961,"id_str":"663727724587048961","text":"I posted a new photo to Facebook https:\/\/t.co\/q6BcZgmjYz","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979645819,"id_str":"2979645819","name":"Sharon Myles","screen_name":"myl_sharon","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":6,"listed_count":0,"favourites_count":1,"statuses_count":1950,"created_at":"Thu Jan 15 12:34:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q6BcZgmjYz","expanded_url":"http:\/\/fb.me\/QhxbGzfE","display_url":"fb.me\/QhxbGzfE","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995663"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724565950465,"id_str":"663727724565950465","text":"\u3061\u306a\u307f\u306b\u66f4\u306b\u4e0d\u7a4f\u306a\u7a7a\u4e2d\u30ea\u30d7\u30e9\u30a4\u3068\u3044\u3046\u304b\u30b7\u30b9\u30c6\u30e0\u30b3\u30d4\u30fc\u3063\u307d\u3044\u3082\u306e\u3092\uff65\uff65\uff65\n\n\u300c\u3042\u306a\u305f\u306f\u3001\u3068\u3042\u308b\u88cf\u65b9\u3055\u3093\u306b\u5727\u7e2e\u30d5\u30a1\u30a4\u30eb\u3092\u9001\u4fe1\u3057\u307e\u3057\u305f\uff08204MB\uff09\u300d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279877135,"id_str":"279877135","name":"\u8179\u9ed2\u3044\u767d\u30e4\u30ae","screen_name":"DarkShiroyagi","location":"\u5bae\u5d0e\u770c","url":"http:\/\/com.nicovideo.jp\/community\/co1143712","description":"\u91cd\u75c7\u306e\u30cb\u30b3\u30e9\u30b8\u597d\u304d\u30ea\u30fc\u30de\u30f3\uff08\u55b6\u696d\u8077\uff09\u3067\u3059\u3002\r\n\u307b\u307c\u30a2\u30ea\u30fc\u30ca\u6700\u524d\u5217\u306b\u9663\u53d6\u3063\u3066\u540d\u4e57\u3089\u305a\u306b\u30b3\u30e1\u30f3\u30c8\u3057\u3066\u307e\u3059\u3002\r\n\u3084\u3063\u3068\u79c0\u4f5c\u3055\u3093\u30af\u30e9\u30b9\u30bf\u3068\u4e8b\u52d9\u54e1\uff27\u3055\u3093\u30af\u30e9\u30b9\u30bf\u306e\u672b\u5e2d\u3092\u6c5a\u305b\u308b\u7a0b\u5ea6\u306e\u80fd\u529b\u306b\u306a\u308c\u305f\u6a21\u69d8\u3002\r\n\u6700\u8fd1\u3001\u4ed6\u4eba\u306e\u751f\u653e\u9001\u30b8\u30f3\u30b0\u30eb\u3084\u52b9\u679c\u97f3\u306a\u3093\u304b\u3082\u4f5c\u3063\u3066\u904a\u3093\u3067\u307e\u3059\u3002\u300c\uff57\uff4b\uff54\uff4b\u306e\u67a0\u300d\u306e\u8996\u8074\u5730\u57df\u5728\u4f4f\uff27\uff2a\uff01\uff2a\uff2f\uff39-\uff26\uff2d","protected":false,"verified":false,"followers_count":168,"friends_count":265,"listed_count":16,"favourites_count":54,"statuses_count":4214,"created_at":"Sun Apr 10 05:47:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500008188\/boku.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500008188\/boku.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440024339740508162\/oMS8Se4__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440024339740508162\/oMS8Se4__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279877135\/1366499327","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595429377,"id_str":"663727724595429377","text":"Post-DHOE life tragic af","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1401326100,"id_str":"1401326100","name":"M. Guy","screen_name":"MarcMyWords__","location":"The Tarheel Mecca","url":null,"description":"Pockets full of character, and that well don't run dry! Blessed. UNC #BlackLivesMatter #StayHumble #StayHungry #ItDontMatterInc","protected":false,"verified":false,"followers_count":642,"friends_count":1093,"listed_count":2,"favourites_count":6858,"statuses_count":19792,"created_at":"Sat May 04 03:54:49 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163726055\/P1PvE4OJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163726055\/P1PvE4OJ.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394424077090816\/iJz4S_5U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394424077090816\/iJz4S_5U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1401326100\/1446510439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595400704,"id_str":"663727724595400704","text":"RT @onedirection: #EndOfTheDay \u2013 https:\/\/t.co\/thYSMYaGQB https:\/\/t.co\/wwGGaLOzYP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351665799,"id_str":"3351665799","name":"Christina","screen_name":"isabellebelieve","location":null,"url":null,"description":"When I'm with you I'm standing with an army 13.6.15 #OtraBrussels","protected":false,"verified":false,"followers_count":373,"friends_count":349,"listed_count":0,"favourites_count":1285,"statuses_count":6182,"created_at":"Tue Jun 30 11:58:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647510029944365057\/N6CCPqf8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647510029944365057\/N6CCPqf8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351665799\/1442771690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:06:14 +0000 2015","id":663689047932579840,"id_str":"663689047932579840","text":"#EndOfTheDay \u2013 https:\/\/t.co\/thYSMYaGQB https:\/\/t.co\/wwGGaLOzYP","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648620,"friends_count":3931,"listed_count":66280,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19511,"favorite_count":27276,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/thYSMYaGQB","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]}],"urls":[{"url":"https:\/\/t.co\/thYSMYaGQB","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[33,56]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[],"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689047932579840,"source_status_id_str":"663689047932579840","source_user_id":209708391,"source_user_id_str":"209708391"}]},"extended_entities":{"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689047932579840,"source_status_id_str":"663689047932579840","source_user_id":209708391,"source_user_id_str":"209708391"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595453952,"id_str":"663727724595453952","text":"\u96f7\u304b\u2026\uff1f\n\u5225\u306b\u6016\u3044\u3068\u304b\u3058\u3083\u306d\u3047\u3002\n\u708e\u3067\u3067\u304d\u305f\u8eab\u4f53\u3060\u304c\u3001\u3069\u3046\u8a00\u3046\u308f\u3051\u304b\u30e1\u30c1\u30e3\u30af\u30c1\u30e3\u5e2f\u96fb\u4f53\u8cea\u3067\u306a\u3002\u9759\u96fb\u6c17\u304c\u30e4\u30d9\u30a7\u3002","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886798936,"id_str":"2886798936","name":"\u967d\u5411\u6d1b\u967d(utau_bot)","screen_name":"Hinata_Rakuyou","location":"\u30e9\u30f3\u30d7\u306e\u4e2d","url":"http:\/\/hinatakeandelie.web.fc2.com","description":"UTAU\u97f3\u6e90\u30e9\u30a4\u30d6\u30e9\u30ea\u300e\u967d\u5411\u6d1b\u967d\u300f\u306e\u307b\u307c\u516c\u5f0fbot\u3002\u3068\u8a00\u3046\u304b\u30ad\u30e3\u30e9\u8a2d\u5b9a\u306e\u53c2\u8003\u307e\u3067\u306b\u3001\u3053\u3093\u306a\u30d1\u30bf\u30fc\u30f3\u3082\u3042\u308b\u3088\u3001\u304f\u3089\u3044\u306b\u6349\u3048\u3066\u3084\u3063\u3066\u304f\u3060\u3055\u3044\u3002\u307b\u307c\u30d5\u30ea\u30fc\u30c0\u30e0\u306a\u5b50\u3067\u3059\u3002\u8a73\u7d30\u306f\u898f\u7d04\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u307e\u305b\uff01","protected":false,"verified":false,"followers_count":98,"friends_count":73,"listed_count":7,"favourites_count":0,"statuses_count":100247,"created_at":"Sun Nov 02 01:02:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF1493","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576328371765821441\/eXmCPpRd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576328371765821441\/eXmCPpRd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886798936\/1415220691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574429184,"id_str":"663727724574429184","text":"#Urban_Strangers voi spaccateee!!!","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724739922,"id_str":"2724739922","name":"Isabella Bettoni","screen_name":"BettoniIsa","location":"Iscritta a Settembre 2014 =)","url":null,"description":"\u2764Selena Gomez,Ariana Grande,Dove,Zendaya,Shawn,Disney Channel\u2764,Tini Stoessel,Lodo\u2764 e seguo XFactor","protected":false,"verified":false,"followers_count":743,"friends_count":1995,"listed_count":0,"favourites_count":1201,"statuses_count":1138,"created_at":"Mon Aug 11 22:06:11 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660444987239366656\/Gxm4YUlX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660444987239366656\/Gxm4YUlX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2724739922\/1446297969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Urban_Strangers","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724565934080,"id_str":"663727724565934080","text":"RT @TOSHI_LOW_bot: \u798f\u5cf6\u306e\u601d\u3046\u672a\u6765\u304c\u65e5\u672c\u306e\u672a\u6765\u3002\u798f\u5cf6\u306e\u601d\u3046\u672a\u6765\u304c\u4e16\u754c\u306e\u672a\u6765\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237962740,"id_str":"3237962740","name":"crazy\u3051\u3043","screen_name":"crazyagogokei1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":37,"listed_count":0,"favourites_count":53,"statuses_count":421,"created_at":"Wed May 06 03:31:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655450539119869953\/sAUP8mIJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655450539119869953\/sAUP8mIJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237962740\/1442024820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:14 +0000 2015","id":663724531232604160,"id_str":"663724531232604160","text":"\u798f\u5cf6\u306e\u601d\u3046\u672a\u6765\u304c\u65e5\u672c\u306e\u672a\u6765\u3002\u798f\u5cf6\u306e\u601d\u3046\u672a\u6765\u304c\u4e16\u754c\u306e\u672a\u6765\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2304751524,"id_str":"2304751524","name":"TOSHI-LOW bot","screen_name":"TOSHI_LOW_bot","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2525,"friends_count":0,"listed_count":25,"favourites_count":0,"statuses_count":1204,"created_at":"Wed Jan 22 12:12:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425965205462347776\/gLPtusi5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425965205462347776\/gLPtusi5_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TOSHI_LOW_bot","name":"TOSHI-LOW bot","id":2304751524,"id_str":"2304751524","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595384320,"id_str":"663727724595384320","text":"Can't wait to go to basic training","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2432968675,"id_str":"2432968675","name":"David","screen_name":"davidgar16_","location":null,"url":null,"description":"\u2651\ufe0f","protected":false,"verified":false,"followers_count":52,"friends_count":32,"listed_count":0,"favourites_count":234,"statuses_count":986,"created_at":"Tue Apr 08 03:18:03 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657754446496006145\/-V69DmDz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657754446496006145\/-V69DmDz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2432968675\/1446652773","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724591235072,"id_str":"663727724591235072","text":"\u3010\u5927\u962a\u5e02\u9577\u9078\u3011\u5e30\u5316\u3057\u3066\u7acb\u5019\u88dc\u3092\u8a66\u307f\u9078\u7ba1\u3067\u8e74\u3089\u308c\u305f\u25cf\u25cf\u4eba\u304c\u30de\u30b8\u30ad\u30c1\uff01\u3053\u3093\u306a\u306e\u3082\u534a\u5e74\u5f8c\u306b\u306f\u51fa\u99ac\u3067\u304d\u308b\u3068\u304b\u30e4\u30d0\u3044\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57 : \u3082\u3048\u308b\u3042\u3058\u3042(\uff65\u2200\uff65) https:\/\/t.co\/HWU6DO437K","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":328168945,"id_str":"328168945","name":"\u304b\u3058\u3085","screen_name":"kajyu_03_14","location":"\u30b3\u30b3 \u2714","url":null,"description":"\u901a\u540d\u5ec3\u6b62\u2757\u5728\u65e5\u306e\u6c38\u4f4f\u8cc7\u683c\u53d6\u6d88 \u5e30\u9084\u4e8b\u696d\u518d\u958b\u2757\ufe0f\u91cd\u56fd\u7c4d\u306e\u5e30\u5316\u7981\u6b62\u53d6\u6d88\ufe0f\u2757\u4e2d\u56fd\u8a9e\u30cf\u30f3\u30b0\u30eb\u8868\u8a18\u5ec3\u6b62\u2757\ufe0f\u61b2\u6cd5\u6539\u6b63\u2757\ufe0f\u30b9\u30d1\u30a4\u9632\u6b62\u6cd5\u2757\u5916\u56fd\u4eba\u53c2\u653f\u6a29\u53cd\u5bfe \u5e38\u8a2d\u578b\u4f4f\u6c11\u6295\u7968\u6761\u4f8b\u53cd\u5bfe\u2757\ufe0f\u56fd\u7c4d\u6761\u9805\u5fa9\u6d3b\u2757\ufe0f\u65e5\u4e2d\u97d3FTA\u53cd\u5bfe\u2757\ufe0f\u4e2d\u97d3\u3078\u306e\u63f4\u52a9\u53ca\u3073ODA\u5ec3\u6b62\u2757\u4e2d\u97d3\u79fb\u6c11\u3001\u7559\u5b66\u751f\u53cd\u5bfe\u2757\ufe0f\u5317\u65b9\u9818\u571f\u8fd4\u9084\u2757\ufe0f\u90f5\u653f\u56fd\u55b6\u5316\u2757\ufe0f\u8131\u4e9c\u8ad6\u2757\ufe0f\u5929\u7687\u965b\u4e0b\u4e07\u6b73\u2757","protected":false,"verified":false,"followers_count":2522,"friends_count":2308,"listed_count":44,"favourites_count":325,"statuses_count":115827,"created_at":"Sat Jul 02 21:31:06 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2337623175\/profile_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2337623175\/profile_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328168945\/1360905904","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HWU6DO437K","expanded_url":"http:\/\/buff.ly\/1RIm6jI","display_url":"buff.ly\/1RIm6jI","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995664"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561698818,"id_str":"663727724561698818","text":"@Toshimin1002 \u304a\u4f11\u307f\u306a\u3055\u3044\ud83d\udc31","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726649804898304,"in_reply_to_status_id_str":"663726649804898304","in_reply_to_user_id":1266092966,"in_reply_to_user_id_str":"1266092966","in_reply_to_screen_name":"Toshimin1002","user":{"id":2425229731,"id_str":"2425229731","name":"\u3053\u3046\u3061\u3083\u3093","screen_name":"zgmfx23z34","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":556,"friends_count":1487,"listed_count":1,"favourites_count":47374,"statuses_count":13828,"created_at":"Thu Apr 03 07:33:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451631161094066176\/ptIJboO__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451631161094066176\/ptIJboO__normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Toshimin1002","name":"\u9ad8\u6a4b\u3068\u3057\u307f","id":1266092966,"id_str":"1266092966","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595294209,"id_str":"663727724595294209","text":"@tsukico_MFJ \u304a\u3084\u3059\u307f\u306a\u3055\u3044\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726967393390592,"in_reply_to_status_id_str":"663726967393390592","in_reply_to_user_id":3862729519,"in_reply_to_user_id_str":"3862729519","in_reply_to_screen_name":"tsukico_MFJ","user":{"id":3890379312,"id_str":"3890379312","name":"\u30af\u30eb\u30eb\u30b7\u30d5\u30a1\u30fc\u30fb\u30a8\u30a4\u30f3\u30d5\u30a9\u30eb\u30af","screen_name":"Krul_Fafnir","location":"\u738b\u7acb\u58eb\u5b98\u5b66\u5712","url":"http:\/\/twpf.jp\/Krul_Fafnir","description":"\u300c\u6700\u5f31\u7121\u6557\u306e\u795e\u88c5\u6a5f\u7adc\u300d\u306e\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u3002\u5d29\u58ca\u30a2\u30ea\/\u80cc\u5f8c\u539f\u4f5c\u719f\u8aad\u4e2d \u203b\u6765\u308b\u3082\u306e\u62d2\u307e\u305a\u53bb\u308b\u3082\u306e\u8ffd\u308f\u305a \u30d5\u30a9\u30ed\u30fc\u306e\u6642\u306f\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\u3088\u3002\u60aa\u3044\u3051\u3069\u30bf\u30b0\u3067\u6765\u305f\u4eba\u3082\u5fc5\u8aad\u3067\u304a\u9858\u3044\u306d?\u8aad\u3081\u306a\u3044\u4eba\u306f\u58f0\u304b\u3051\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u308f\u3002","protected":false,"verified":false,"followers_count":166,"friends_count":106,"listed_count":2,"favourites_count":312,"statuses_count":4290,"created_at":"Wed Oct 14 09:58:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656436996001280000\/MyXFMMkc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656436996001280000\/MyXFMMkc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3890379312\/1445341704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsukico_MFJ","name":"\u4e94\u6cb3\u7434\u91cc(\u6708\u732b)@\u732b\u5316","id":3862729519,"id_str":"3862729519","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561698816,"id_str":"663727724561698816","text":"RT @2cabhd: \u3053\u308c\u7121\u6599\u3068\u304b\u3069\u3093\u3060\u3051\u3060\u3088ww\n\u7ae5\u8c9e\u3060\u304c24\u6b73\u306e\u5e74\u4e0a\u304a\u59c9\u3055\u3093\u306b\u7b46\u304a\u308d\u3057\u3057\u3066\u3082\u3089\u3063\u305f\u308fw\n\u304a\u308c\u30d6\u30b5\u3060\u3051\u30699\u5272\u51fa\u4f1a\u3048\u3066\u3001\uff17\u5272\u30e4\u308c\u3066\u308b\u3093\u3060\u304cww\n\n\u898b\u3066\u307f\u2192https:\/\/t.co\/OkWDA2PD7l\n\n\u6628\u65e5D\u30ab\u30c3\u30d7\u306e\u5f7c\u5973\u51fa\u6765\u307e\u3057\u305f\u3063w https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/www.google.co.jp\" rel=\"nofollow\"\u003e\u2605Twitter138\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3522587652,"id_str":"3522587652","name":"\u661f\u590f","screen_name":"34a921","location":null,"url":null,"description":"\u9ad8\uff12\/\u4e0b\u5317\/\u30bb\u30ab\u30aa\u30ef\n\u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307e\u3059\u263e\n\u6c17\u8efd\u306b\u30ea\u30d7\u3001DM\u4e0b\u3055\u3044\u301c(*^^*)","protected":false,"verified":false,"followers_count":380,"friends_count":347,"listed_count":0,"favourites_count":0,"statuses_count":326,"created_at":"Fri Sep 11 04:00:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642186186820227072\/VmjMidXK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642186186820227072\/VmjMidXK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3522587652\/1441944105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:03 +0000 2015","id":663727506395000832,"id_str":"663727506395000832","text":"\u3053\u308c\u7121\u6599\u3068\u304b\u3069\u3093\u3060\u3051\u3060\u3088ww\n\u7ae5\u8c9e\u3060\u304c24\u6b73\u306e\u5e74\u4e0a\u304a\u59c9\u3055\u3093\u306b\u7b46\u304a\u308d\u3057\u3057\u3066\u3082\u3089\u3063\u305f\u308fw\n\u304a\u308c\u30d6\u30b5\u3060\u3051\u30699\u5272\u51fa\u4f1a\u3048\u3066\u3001\uff17\u5272\u30e4\u308c\u3066\u308b\u3093\u3060\u304cww\n\n\u898b\u3066\u307f\u2192https:\/\/t.co\/OkWDA2PD7l\n\n\u6628\u65e5D\u30ab\u30c3\u30d7\u306e\u5f7c\u5973\u51fa\u6765\u307e\u3057\u305f\u3063w https:\/\/t.co\/wmJKSFDU06","source":"\u003ca href=\"https:\/\/www.google.co.jp\" rel=\"nofollow\"\u003e\u2605Twitter132\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3590693053,"id_str":"3590693053","name":"\u307f\u3061\u304b","screen_name":"2cabhd","location":null,"url":null,"description":"\u73feJK2 \/\u6e2f\u533a\/\u30c7\u30a3\u30ba\u30cb\u30fc\/\u30b1\u30fc\u30ad\/\u30ef\u30f3\u30d4\u30fc\u30b9\u2665\ufe0e \u3000\u3044\u308d\u3093\u306a\u4eba\u3092\u3075\u3049\u308d\u30fc\u3057\u307e\u3059\uff08\u7b11\uff09\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u2605\u3000\u7537\u306e\u5b50\u3082\u3088\u304b\u3063\u305f\u3089\u304a\u53cb\u9054\u306b\u306a\u3063\u3066\u304f\u3060\u3055\u3044\uff08*\u00b4\u2200\uff40*\uff09","protected":false,"verified":false,"followers_count":318,"friends_count":199,"listed_count":2,"favourites_count":0,"statuses_count":176,"created_at":"Thu Sep 17 05:38:40 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644386063058767872\/to8iU9bC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644386063058767872\/to8iU9bC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3590693053\/1442468595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OkWDA2PD7l","expanded_url":"http:\/\/goo.gl\/YuRYOi","display_url":"goo.gl\/YuRYOi","indices":[74,97]}],"user_mentions":[],"symbols":[],"media":[{"id":663727505921044481,"id_str":"663727505921044481","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","url":"https:\/\/t.co\/wmJKSFDU06","display_url":"pic.twitter.com\/wmJKSFDU06","expanded_url":"http:\/\/twitter.com\/2cabhd\/status\/663727506395000832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727505921044481,"id_str":"663727505921044481","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","url":"https:\/\/t.co\/wmJKSFDU06","display_url":"pic.twitter.com\/wmJKSFDU06","expanded_url":"http:\/\/twitter.com\/2cabhd\/status\/663727506395000832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OkWDA2PD7l","expanded_url":"http:\/\/goo.gl\/YuRYOi","display_url":"goo.gl\/YuRYOi","indices":[86,109]}],"user_mentions":[{"screen_name":"2cabhd","name":"\u307f\u3061\u304b","id":3590693053,"id_str":"3590693053","indices":[3,10]}],"symbols":[],"media":[{"id":663727505921044481,"id_str":"663727505921044481","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","url":"https:\/\/t.co\/wmJKSFDU06","display_url":"pic.twitter.com\/wmJKSFDU06","expanded_url":"http:\/\/twitter.com\/2cabhd\/status\/663727506395000832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}},"source_status_id":663727506395000832,"source_status_id_str":"663727506395000832","source_user_id":3590693053,"source_user_id_str":"3590693053"}]},"extended_entities":{"media":[{"id":663727505921044481,"id_str":"663727505921044481","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpmoUcAE4oDO.jpg","url":"https:\/\/t.co\/wmJKSFDU06","display_url":"pic.twitter.com\/wmJKSFDU06","expanded_url":"http:\/\/twitter.com\/2cabhd\/status\/663727506395000832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":1024,"h":641,"resize":"fit"}},"source_status_id":663727506395000832,"source_status_id_str":"663727506395000832","source_user_id":3590693053,"source_user_id_str":"3590693053"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561764352,"id_str":"663727724561764352","text":"RT @rawfuckerman: \u0e44\u0e2e\u0e40\u0e07\u0e35\u0e48\u0e22\u0e19\u0e08\u0e31\u0e14\u0e46 \u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e14\u0e19\u0e40\u0e22\u0e47\u0e14\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49 \u0e16\u0e36\u0e07\u0e08\u0e30\u0e44\u0e21\u0e48\u0e04\u0e49\u0e32\u0e07 https:\/\/t.co\/PXNAtf8ZXW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2611052810,"id_str":"2611052810","name":"Supper Cool","screen_name":"Suppercoolcnx","location":"Ladprao - Pinklao, Bangkok","url":null,"description":"Hi \u0e1f\u0e34\u0e27\u0e2a\u0e4c\u0e14\u0e35 \u0e46 \u0e41\u0e21\u0e19\u0e46 \u0e21\u0e31\u0e19\u0e2a\u0e4c\u0e01\u0e31\u0e19\u0e04\u0e31\u0e1a *****\u0e41\u0e21\u0e19 \u0e46 \u0e0a\u0e34\u0e27 \u0e46 \u0e21\u0e31\u0e19\u0e2a\u0e4c \u0e46 \u0e1f\u0e34\u0e27\u0e2a\u0e4c\u0e14\u0e35 \u0e46 \u0e19\u0e34\u0e2a\u0e31\u0e22\u0e42\u0e2d\u0e40\u0e04**************\u0e40\u0e01\u0e07\u0e1a\u0e2d\u0e25 \u0e0a\u0e38\u0e14\u0e01\u0e35\u0e2c\u0e32*******","protected":false,"verified":false,"followers_count":23419,"friends_count":3558,"listed_count":5,"favourites_count":487,"statuses_count":3960,"created_at":"Tue Jul 08 04:54:59 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588847902841184256\/Twi37F-P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588847902841184256\/Twi37F-P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2611052810\/1420900601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:52:58 +0000 2015","id":663564911901982720,"id_str":"663564911901982720","text":"\u0e44\u0e2e\u0e40\u0e07\u0e35\u0e48\u0e22\u0e19\u0e08\u0e31\u0e14\u0e46 \u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e14\u0e19\u0e40\u0e22\u0e47\u0e14\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49 \u0e16\u0e36\u0e07\u0e08\u0e30\u0e44\u0e21\u0e48\u0e04\u0e49\u0e32\u0e07 https:\/\/t.co\/PXNAtf8ZXW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3913008858,"id_str":"3913008858","name":"rawfuckerman","screen_name":"rawfuckerman","location":"\u0e2a\u0e30\u0e1e\u0e32\u0e19\u0e04\u0e27\u0e32\u0e22 ,\u0e1b\u0e23\u0e30\u0e14\u0e34\u0e1e\u0e31\u0e17\u0e18\u0e4c ","url":null,"description":"\u0e44\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e1c\u0e2d\u0e21\u0e46\u0e0a\u0e2d\u0e1a\u0e40\u0e02\u0e49\u0e21\u0e46\u0e02\u0e19\u0e40\u0e22\u0e2d\u0e30\u0e46\u0e23\u0e38\u0e01\u0e40\u0e2a\u0e21\u0e2d\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e40\u0e08\u0e2d\u0e23\u0e31\u0e1a\u0e1c\u0e25\u0e31\u0e14\u0e40\u0e22\u0e47\u0e14\u0e44\u0e14\u0e49\u0e22\u0e34\u0e48\u0e07\u0e14\u0e35 \u0e44\u0e2e\u0e1f\u0e34\u0e27\u0e1c\u0e31\u0e27\u0e40\u0e21\u0e35\u0e22 \u0e44\u0e21\u0e48\u0e41\u0e0a\u0e23\u0e4c \u0e40\u0e25\u0e48\u0e19\u0e02\u0e2d\u0e07\u0e43\u0e04\u0e23\u0e02\u0e2d\u0e07\u0e21\u0e31\u0e19 \u0e40\u0e2d\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e2d\u0e37\u0e48\u0e19\u0e21\u0e32\u0e41\u0e08\u0e21\u0e44\u0e14\u0e49\u0e01\u0e47\u0e14\u0e35 \u0e2a\u0e30\u0e1e\u0e32\u0e19\u0e04\u0e27\u0e32\u0e22 \u0e44\u0e21\u0e48\u0e1f\u0e23\u0e35 \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e17\u0e33\u0e07\u0e32\u0e19\u0e42\u0e23\u0e07\u0e17\u0e32\u0e19","protected":false,"verified":false,"followers_count":3776,"friends_count":1000,"listed_count":1,"favourites_count":1046,"statuses_count":140,"created_at":"Fri Oct 16 11:05:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661620707525201920\/5oLVNBCb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661620707525201920\/5oLVNBCb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3913008858\/1444999163","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":104,"favorite_count":160,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663563287297003521,"id_str":"663563287297003521","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","url":"https:\/\/t.co\/PXNAtf8ZXW","display_url":"pic.twitter.com\/PXNAtf8ZXW","expanded_url":"http:\/\/twitter.com\/rawfuckerman\/status\/663564911901982720\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663563287297003521,"id_str":"663563287297003521","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","url":"https:\/\/t.co\/PXNAtf8ZXW","display_url":"pic.twitter.com\/PXNAtf8ZXW","expanded_url":"http:\/\/twitter.com\/rawfuckerman\/status\/663564911901982720\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/pl\/MxgSnZFQeSBSjk7m.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/360x640\/EsTly9-e7qDqjdN4.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/360x640\/EsTly9-e7qDqjdN4.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/pl\/MxgSnZFQeSBSjk7m.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/180x320\/-0LynlfssNfimZVh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rawfuckerman","name":"rawfuckerman","id":3913008858,"id_str":"3913008858","indices":[3,16]}],"symbols":[],"media":[{"id":663563287297003521,"id_str":"663563287297003521","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","url":"https:\/\/t.co\/PXNAtf8ZXW","display_url":"pic.twitter.com\/PXNAtf8ZXW","expanded_url":"http:\/\/twitter.com\/rawfuckerman\/status\/663564911901982720\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663564911901982720,"source_status_id_str":"663564911901982720","source_user_id":3913008858,"source_user_id_str":"3913008858"}]},"extended_entities":{"media":[{"id":663563287297003521,"id_str":"663563287297003521","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663563287297003521\/pu\/img\/FE63ru3Se4Jn5-4N.jpg","url":"https:\/\/t.co\/PXNAtf8ZXW","display_url":"pic.twitter.com\/PXNAtf8ZXW","expanded_url":"http:\/\/twitter.com\/rawfuckerman\/status\/663564911901982720\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663564911901982720,"source_status_id_str":"663564911901982720","source_user_id":3913008858,"source_user_id_str":"3913008858","video_info":{"aspect_ratio":[9,16],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/pl\/MxgSnZFQeSBSjk7m.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/360x640\/EsTly9-e7qDqjdN4.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/360x640\/EsTly9-e7qDqjdN4.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/pl\/MxgSnZFQeSBSjk7m.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663563287297003521\/pu\/vid\/180x320\/-0LynlfssNfimZVh.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079995657"} +{"delete":{"status":{"id":469305300915597312,"id_str":"469305300915597312","user_id":853631239,"user_id_str":"853631239"},"timestamp_ms":"1447079995759"}} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578471936,"id_str":"663727724578471936","text":"dead twitter cara nya gimana dah-_-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":808769275,"id_str":"808769275","name":"-","screen_name":"oshixhun","location":null,"url":"http:\/\/instagram.com\/oohsehun","description":"handsome since 1994 - exo maknae","protected":false,"verified":false,"followers_count":1885,"friends_count":1766,"listed_count":6,"favourites_count":189,"statuses_count":26367,"created_at":"Fri Sep 07 12:19:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663645813331984384\/XG_2NawX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663645813331984384\/XG_2NawX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/808769275\/1446947377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561719296,"id_str":"663727724561719296","text":"\u85cd\u3055\u307e\u304c\u5e78\u305b\u305d\u3046\u3067\u4f55\u3088\u308a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2408705569,"id_str":"2408705569","name":"\u304a\u3055\u306a\u3081\u308a\u304f","screen_name":"riku_zwei","location":"\u307f\u304b\u3093\u7551","url":"http:\/\/pixiv.me\/riku0405zwei","description":"\u6771\u65b9\u3001\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u3001\u904a\u622f\u738b\u304c\u597d\u304d\u3067\u3054\u3056\u3044\u307e\u3059\u3002\u30a4\u30e9\u30b9\u30c8\u3092\u63cf\u3044\u305f\u308a\u3057\u3066\u307e\u3057\u3066\u3001\u2661\u3092\u98db\u3070\u3057\u3066\u8cb0\u3048\u308b\u3068\u559c\u3073\u307e\u3059\u3002\u77e2\u5370\u304f\u308b\u304f\u308b\u3055\u305b\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u3055\u3089\u306b\u559c\u3073\u307e\u3059\n\u539f\u7a3f\u306f\u3084\u3063\u3066\u3044\u306a\u3044","protected":false,"verified":false,"followers_count":1140,"friends_count":480,"listed_count":75,"favourites_count":12064,"statuses_count":31403,"created_at":"Mon Mar 24 09:38:06 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557531450572931074\/e1y0LI7q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557531450572931074\/e1y0LI7q.png","profile_background_tile":true,"profile_link_color":"E61C55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658610831379185664\/_6dgJh6E_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658610831379185664\/_6dgJh6E_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2408705569\/1446566866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578476032,"id_str":"663727724578476032","text":"Nawawalan ng point yang pinapakita mo sakin","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437317763,"id_str":"437317763","name":"Keen","screen_name":"keenowh","location":null,"url":null,"description":"Don't care if you judge me, I would still be successful anyway | Introvert","protected":false,"verified":false,"followers_count":211,"friends_count":150,"listed_count":0,"favourites_count":2918,"statuses_count":8776,"created_at":"Thu Dec 15 07:59:41 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000102196112\/731efd2f046944d8811bae8eeddb6a5b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000102196112\/731efd2f046944d8811bae8eeddb6a5b.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654962677752578049\/r2Y1qgn3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654962677752578049\/r2Y1qgn3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437317763\/1447073788","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724599595008,"id_str":"663727724599595008","text":"I love GOD.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253219655,"id_str":"253219655","name":"dalvinjean","screen_name":"dalvinjean","location":"U.S.A.","url":null,"description":"I'm unstoppable because GOD keep me save.","protected":false,"verified":false,"followers_count":2302,"friends_count":2861,"listed_count":1,"favourites_count":55,"statuses_count":1612,"created_at":"Wed Feb 16 20:11:08 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661879840887472128\/QMgjEOiM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661879840887472128\/QMgjEOiM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253219655\/1361131643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995666"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574339072,"id_str":"663727724574339072","text":"\u524d\u9014\u53c8\u9677\u5165\u9ed1\u6697\u4e86","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462670981,"id_str":"462670981","name":"\u7f8e\u4e3d\u65b0\u4e16\u754c","screen_name":"shenhai20","location":null,"url":null,"description":"\uf8ff #moumoon","protected":false,"verified":false,"followers_count":138,"friends_count":208,"listed_count":4,"favourites_count":284,"statuses_count":6350,"created_at":"Fri Jan 13 06:32:12 +0000 2012","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640748383183867904\/_xm5_2L__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640748383183867904\/_xm5_2L__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462670981\/1441603458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724570087429,"id_str":"663727724570087429","text":"RT @MadhilSaleem: Fuluhunnaa Sifainnah adhi Majilis baeh membarunnah rishwath ge gothuga MMPRC in dhevunu dhaulath ge faisa anbura dhekkuma\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612808786,"id_str":"612808786","name":"Xahid ali - freeanni","screen_name":"AlexXahid","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":377,"listed_count":1,"favourites_count":7,"statuses_count":1064,"created_at":"Tue Jun 19 19:42:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2436631461\/sf55rpofbsgy7e2i2g2f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2436631461\/sf55rpofbsgy7e2i2g2f_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:29 +0000 2015","id":663723587753263105,"id_str":"663723587753263105","text":"Fuluhunnaa Sifainnah adhi Majilis baeh membarunnah rishwath ge gothuga MMPRC in dhevunu dhaulath ge faisa anbura dhekkumah govaalan.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323939674,"id_str":"323939674","name":"Adil Saleem","screen_name":"MadhilSaleem","location":null,"url":null,"description":"Freedom lover, Father, Son, Minister Transport & Com, OUSTED Maldives Gov of President Nasheed. MD of MIFCO 2008. Fmr Chairman Koddoo Fisheries Maldives.","protected":false,"verified":false,"followers_count":18402,"friends_count":888,"listed_count":43,"favourites_count":7467,"statuses_count":32712,"created_at":"Sat Jun 25 18:06:00 +0000 2011","utc_offset":18000,"time_zone":"Tashkent","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647711604503478272\/35D8WT_x_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647711604503478272\/35D8WT_x_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323939674\/1437561294","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MadhilSaleem","name":"Adil Saleem","id":323939674,"id_str":"323939674","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079995659"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724566040576,"id_str":"663727724566040576","text":"@LandenMouthwash slap him, molecules cannot pull only push","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726549867364352,"in_reply_to_status_id_str":"663726549867364352","in_reply_to_user_id":891873672,"in_reply_to_user_id_str":"891873672","in_reply_to_screen_name":"LandenMouthwash","user":{"id":1149491646,"id_str":"1149491646","name":"Mister","screen_name":"chemist_tree","location":"The Lab","url":"http:\/\/www.collegeboard.com\/student\/testing\/ap\/chemistry\/samp.html","description":"Science chemistry math biology all good","protected":false,"verified":false,"followers_count":195,"friends_count":72,"listed_count":0,"favourites_count":293,"statuses_count":926,"created_at":"Tue Feb 05 00:50:34 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3209297540\/4458889002a5fed918177dee11efb7fa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3209297540\/4458889002a5fed918177dee11efb7fa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1149491646\/1423056347","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LandenMouthwash","name":"Lando","id":891873672,"id_str":"891873672","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724566065152,"id_str":"663727724566065152","text":"Guarda \"Benji & Fede - Lettera (Official Video)\" su YouTube - https:\/\/t.co\/yx71rdtuEz @Benji_Mascolo @fedefederossi #BenjieFedeLettera \ud83d\ude0d 105","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076712441,"id_str":"3076712441","name":"Benjamin |20:05|","screen_name":"_benjihugme_","location":"Tra le braccia di Benji\u2764","url":"https:\/\/youtu.be\/DNpKVHfk0ls","description":"Vorrei inventare parole per scrivere la luce della Luna quando ti illumina.\u2661 Benjamin Brian Mascolo.\u2661","protected":false,"verified":false,"followers_count":225,"friends_count":54,"listed_count":0,"favourites_count":1501,"statuses_count":1557,"created_at":"Sat Mar 07 07:51:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658203720778432516\/Vv9aSiFX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658203720778432516\/Vv9aSiFX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076712441\/1442259605","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[120,138]}],"urls":[{"url":"https:\/\/t.co\/yx71rdtuEz","expanded_url":"https:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[66,89]}],"user_mentions":[{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[90,104]},{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[105,119]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724570144768,"id_str":"663727724570144768","text":"\u52b9\u7387\u5316\u3068\u304b\u3082\u3044\u3044\u3051\u308c\u3069\u3082\u3001\u4eba\u5897\u3084\u305d\u3046\u3088\u2026\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12739862,"id_str":"12739862","name":"\u307c\u3076\u3066\u3044\u308b","screen_name":"bobtail_mt","location":"gifu, Japan","url":"http:\/\/bobtail-mt.tumblr.com\/","description":"\u7ffb\u8a33\u5c0f\u8aac\u3068\u304b\u3092\u4e2d\u5fc3\u306b\u8aad\u3093\u3067\u308b\u3001\u3068\u601d\u3044\u305f\u3044\u3002PC\u3067FPS\u3068\u30b9\u30c8\u30e9\u30c6\u30b8\u30fc\u7cfb\u306e\u3082\u306e\u3092\u3059\u308b\u99c4\u76ee\u4eba\u9593\u3002\u3082\u3075\u3082\u3075\u3057\u3066\u308b\u3082\u306e\u5927\u6b53\u8fce\u3002steam \u2192 http:\/\/steamcommunity.com\/profiles\/76561\u2026","protected":false,"verified":false,"followers_count":535,"friends_count":418,"listed_count":35,"favourites_count":706,"statuses_count":42952,"created_at":"Sun Jan 27 04:32:13 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/22284533\/1170768222988.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/22284533\/1170768222988.jpg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3191540032\/2e8db6b941e9504b7cefd2bc71b5a41d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3191540032\/2e8db6b941e9504b7cefd2bc71b5a41d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12739862\/1378296793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995659"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724595310592,"id_str":"663727724595310592","text":"@hourouyarou \u8a02\u6b63\n#nhk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717684379389954,"in_reply_to_status_id_str":"663717684379389954","in_reply_to_user_id":1570917612,"in_reply_to_user_id_str":"1570917612","in_reply_to_screen_name":"hourouyarou","user":{"id":1570917612,"id_str":"1570917612","name":"\u653e\u6d6a\u91ce\u90ce","screen_name":"hourouyarou","location":null,"url":null,"description":"\u4eba\u751f\u306f\u653e\u6d6a\u3067\u3059\u3002\u753b\u50cf\u306f\u56db\u56fd4\u756a\u672d\u5927\u65e5\u5bfa(\u30d8\u30c3\u30c0\u30fc\u306f5\u756a\u672d\u6240\u5730\u8535\u5bfa\uff09\u3002\u795e\u5948\u5ddd\u770c\u6c11\u3068\u304d\u3069\u304d\u3069\u3053\u304b\u306e\u304a\u5bfa\u3002","protected":false,"verified":false,"followers_count":461,"friends_count":636,"listed_count":3,"favourites_count":634,"statuses_count":26863,"created_at":"Fri Jul 05 17:06:19 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485771695232258048\/HKVSY1Hx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485771695232258048\/HKVSY1Hx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570917612\/1406231355","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"61774861ea700565","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/61774861ea700565.json","place_type":"city","name":"\u85e4\u6ca2\u5e02","full_name":"\u795e\u5948\u5ddd\u770c \u85e4\u6ca2\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.397184,35.296665],[139.397184,35.431037],[139.515164,35.431037],[139.515164,35.296665]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nhk","indices":[16,20]}],"urls":[],"user_mentions":[{"screen_name":"hourouyarou","name":"\u653e\u6d6a\u91ce\u90ce","id":1570917612,"id_str":"1570917612","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995665"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561899520,"id_str":"663727724561899520","text":"@irenesheeran_ x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663319108075823104,"in_reply_to_status_id_str":"663319108075823104","in_reply_to_user_id":2868793125,"in_reply_to_user_id_str":"2868793125","in_reply_to_screen_name":"irenesheeran_","user":{"id":2868793125,"id_str":"2868793125","name":"re.","screen_name":"irenesheeran_","location":"jose, todo.","url":null,"description":"never let me go - [xxv]. m\u00e1 | miri | \u00e0lex.","protected":false,"verified":false,"followers_count":722,"friends_count":20,"listed_count":31,"favourites_count":15555,"statuses_count":11,"created_at":"Sun Nov 09 11:46:19 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000011","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662699284131930112\/INV0LeUZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662699284131930112\/INV0LeUZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868793125\/1446838243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"irenesheeran_","name":"re.","id":2868793125,"id_str":"2868793125","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724591099905,"id_str":"663727724591099905","text":"@iVwtvi3Miz9y832 \u3063\u3066\u304b\u5c65\u6b74\u66f8\u3063\u3066\u306a\u306b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725607402930176,"in_reply_to_status_id_str":"663725607402930176","in_reply_to_user_id":3142003934,"in_reply_to_user_id_str":"3142003934","in_reply_to_screen_name":"iVwtvi3Miz9y832","user":{"id":365359328,"id_str":"365359328","name":"\u3088\u3057\u304f\u3093","screen_name":"mi825","location":null,"url":null,"description":"\u4eac\u90fd\u306b\u3044\u308b\uff01 \u5143\u30e8\u30c3\u30b7\u30fc \u4eca\u3088\u3057\u304f\u3093 \u5143\u30d0\u30c8\u90e8","protected":false,"verified":false,"followers_count":39,"friends_count":44,"listed_count":0,"favourites_count":14,"statuses_count":77,"created_at":"Wed Aug 31 09:24:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662684466939215872\/5VwUiAv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662684466939215872\/5VwUiAv4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/365359328\/1446802786","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iVwtvi3Miz9y832","name":"\u305f\u3050\u3061 \u3072\u306a\u306e","id":3142003934,"id_str":"3142003934","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995664"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578533376,"id_str":"663727724578533376","text":"\u6b6f\u307f\u304c\u304d\u3053\u98fd\u304d\u305f\u304b\u3089\u6c34\u56de\u308a\u6383\u9664\u7528\u306b\u3067\u3082\u3059\u308b\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302705067,"id_str":"302705067","name":"\u3082\u305a\u304f\u3061\u3083\u307f","screen_name":"coriander_paxi","location":"Saikou de Saikou no \u50d5\u306e\u7d20\u6674\u3089\u3057\u3044\u4eba\u751f","url":"http:\/\/twpf.jp\/coriander_paxi","description":"SMAP\u2757\ufe0f2top\u2757\ufe0f\u263b\u4ee3\u6c38\u7ffc\u3055\u3093\u263bTrignal\u263b\u795e\u8c37\u6d69\u53f2\u3055\u3093\u263bKiramune\u263b\u3064\u30fc\u3053\u3055\u3093\u263b\u4f50\u85e4\u62d3\u4e5f\u3055\u3093\u263b\u30cf\u30a4\u30ad\u30e5\u30fc\uff01\u263b\u6771\u65b9\u795e\u8d77\u263bSMFamily\u263bAcid Black Cherry\u263b\u4e09\u4ee3\u76eeJSB\u263bLDH\u263bNACS\u263b\u30e9\u30fc\u30e1\u30f3\u30ba\u263b\u30d0\u30ec\u30fc\u30dc\u30fc\u30eb\u263b\u65c5\u884c\u263b\u4ecf\u50cf\u263b\u57ce\u263b\u548c\u98a8\u263b\u590f\u263b\u30d8\u30a2\u30e1\u30a4\u30af\u263b\u30c9\u30e9\u30a4\u30d6\u263b\u96fb\u8eca\u263b\u30e9\u30fc\u30e1\u30f3\u263b\u3064\u3051\u9eba","protected":false,"verified":false,"followers_count":203,"friends_count":347,"listed_count":18,"favourites_count":8815,"statuses_count":91889,"created_at":"Sat May 21 16:33:01 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/755279191\/fb66762bc550be88f097e6eaf2d2d85a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/755279191\/fb66762bc550be88f097e6eaf2d2d85a.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663622081100165124\/09MmBBfn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663622081100165124\/09MmBBfn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302705067\/1440654084","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574326784,"id_str":"663727724574326784","text":"@DebishreeG @MonalisaChatte8 @Nirlipta_Poddar @nisarga_sinha @mimiMusing @trinam2015 @aditi_aditimaju @tanu_st okhnei to jachhi...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727507686866944,"in_reply_to_status_id_str":"663727507686866944","in_reply_to_user_id":3925521254,"in_reply_to_user_id_str":"3925521254","in_reply_to_screen_name":"DebishreeG","user":{"id":149610085,"id_str":"149610085","name":"Habiba SultanaPervin","screen_name":"hspBanna","location":"Dhaka,Bagladesh","url":"https:\/\/www.facebook.com\/Jol.Josna","description":"M.Sc in Mathematics","protected":false,"verified":false,"followers_count":429,"friends_count":278,"listed_count":2,"favourites_count":16725,"statuses_count":7671,"created_at":"Sat May 29 18:46:31 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605826508133834753\/G5d12ZpT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605826508133834753\/G5d12ZpT.jpg","profile_background_tile":true,"profile_link_color":"485C3A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662723585606205440\/zsyE6AVV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662723585606205440\/zsyE6AVV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149610085\/1446840676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DebishreeG","name":"debishree ganguly","id":3925521254,"id_str":"3925521254","indices":[0,11]},{"screen_name":"MonalisaChatte8","name":"Monalisa Chatterjee","id":3485340493,"id_str":"3485340493","indices":[12,28]},{"screen_name":"Nirlipta_Poddar","name":"^_^ Nirlipta ^_^","id":3188940324,"id_str":"3188940324","indices":[29,45]},{"screen_name":"nisarga_sinha","name":"Nisarga sinha","id":3291853658,"id_str":"3291853658","indices":[46,60]},{"screen_name":"mimiMusing","name":"\u2133i\u2133i\u00a9","id":3566438058,"id_str":"3566438058","indices":[61,72]},{"screen_name":"trinam2015","name":"trinamukherjee","id":3246431520,"id_str":"3246431520","indices":[73,84]},{"screen_name":"aditi_aditimaju","name":"Aditi","id":979060274,"id_str":"979060274","indices":[85,101]},{"screen_name":"tanu_st","name":"Tanu Setiawan","id":1892408328,"id_str":"1892408328","indices":[102,110]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724586921984,"id_str":"663727724586921984","text":"RT @ayase_aria: \u6953\u3055\u3093\u5857\u308c\u305f\u3088\uff5e \u305f\u3076\u3093\u51ac\u30b3\u30df\u306e\u30a2\u30af\u30ea\u30eb\u30ad\u30fc\u30db\u30eb\u30c0\u30fc\u306b\u306a\u308a\u307e\u3059\uff5e https:\/\/t.co\/l7GCyswfBF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222222715,"id_str":"3222222715","name":"\u30a4\u30e2\u677e(\u30c7\u30ec\u4e21\u65e5\u30df\u30ea\u4ed9\u53f0)","screen_name":"_pihi","location":"\u4ed9\u53f0\u306e\u7551","url":"http:\/\/twpf.jp\/_pihi","description":"\u3074\u3072\u308d\u3068\u547c\u3093\u3067\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":252,"friends_count":245,"listed_count":25,"favourites_count":38372,"statuses_count":21956,"created_at":"Thu May 21 10:39:22 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661264133317259264\/GPzJljev_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661264133317259264\/GPzJljev_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222222715\/1444101801","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:36:29 +0000 2015","id":663379572562329601,"id_str":"663379572562329601","text":"\u6953\u3055\u3093\u5857\u308c\u305f\u3088\uff5e \u305f\u3076\u3093\u51ac\u30b3\u30df\u306e\u30a2\u30af\u30ea\u30eb\u30ad\u30fc\u30db\u30eb\u30c0\u30fc\u306b\u306a\u308a\u307e\u3059\uff5e https:\/\/t.co\/l7GCyswfBF","source":"\u003ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003eOpenTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102830951,"id_str":"102830951","name":"\u7dbe\u702c\u306f\u539f\u7a3f\u3092\u3057\u308d","screen_name":"ayase_aria","location":"\u306b\u307b\u3093","url":"http:\/\/maidens-gene.sakura.ne.jp\/game\/","description":"\u30a2\u30cb\u30e1\uff0f\u30a8\u30ed\u30b2\uff0f\u30d5\u30a3\u30ae\u30e5\u30a2\uff0f\u6f2b\u753b\uff0f\u7f8e\u5c11\u5973\uff0f\u767e\u5408\u3002\u30a8\u30ed\u30b2\u5c4b\u3055\u3093\u3002\u6df1\u591c\u30af\u30e9\u30b9\u30bf\u3002\u30ea\u30f3\u30df\u30af\u307e\u3069\u307b\u3080\u306a\u306e\u30d5\u30a7\u30a4\u597d\u304d\uff01 \u7dd2\u65b9\u667a\u7d75\u91cc\u3061\u3083\u3093\u3068\u9ad8\u57a3\u6953\u3055\u3093\u3002\u30d7\u30ed\u30c7\u30e5\u30fc\u30b5\u30fc\u696d\u304c\u5fd9\u3057\u3044\u3061\u3072\u308d\u306e\u72ac\u3002\u30a2\u30a4\u30c9\u30eb\u3063\u3066\u307f\u3093\u306a\u30ec\u30ba\u306a\u3093\u3060\u3088\uff1f\uff57\u3000\u30e2\u30d0\u30de\u30b9\u767e\u5408\u30b2\u30fc\u7121\u6599\u914d\u5e03\u4e2d\uff01http:\/\/pixiv.me\/ayase_aria","protected":false,"verified":false,"followers_count":2294,"friends_count":964,"listed_count":166,"favourites_count":27913,"statuses_count":211395,"created_at":"Fri Jan 08 00:15:01 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/326067190\/____.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/326067190\/____.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FF0F7B","profile_sidebar_fill_color":"FFE0ED","profile_text_color":"403939","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/475315479796383744\/6hbZSSil_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/475315479796383744\/6hbZSSil_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102830951\/1426876939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":169,"favorite_count":325,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663379570729422848,"id_str":"663379570729422848","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","url":"https:\/\/t.co\/l7GCyswfBF","display_url":"pic.twitter.com\/l7GCyswfBF","expanded_url":"http:\/\/twitter.com\/ayase_aria\/status\/663379572562329601\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"large":{"w":515,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":515,"h":650,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663379570729422848,"id_str":"663379570729422848","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","url":"https:\/\/t.co\/l7GCyswfBF","display_url":"pic.twitter.com\/l7GCyswfBF","expanded_url":"http:\/\/twitter.com\/ayase_aria\/status\/663379572562329601\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"large":{"w":515,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":515,"h":650,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayase_aria","name":"\u7dbe\u702c\u306f\u539f\u7a3f\u3092\u3057\u308d","id":102830951,"id_str":"102830951","indices":[3,14]}],"symbols":[],"media":[{"id":663379570729422848,"id_str":"663379570729422848","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","url":"https:\/\/t.co\/l7GCyswfBF","display_url":"pic.twitter.com\/l7GCyswfBF","expanded_url":"http:\/\/twitter.com\/ayase_aria\/status\/663379572562329601\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"large":{"w":515,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":515,"h":650,"resize":"fit"}},"source_status_id":663379572562329601,"source_status_id_str":"663379572562329601","source_user_id":102830951,"source_user_id_str":"102830951"}]},"extended_entities":{"media":[{"id":663379570729422848,"id_str":"663379570729422848","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMNHCUEAA_cfg.jpg","url":"https:\/\/t.co\/l7GCyswfBF","display_url":"pic.twitter.com\/l7GCyswfBF","expanded_url":"http:\/\/twitter.com\/ayase_aria\/status\/663379572562329601\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"large":{"w":515,"h":650,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":515,"h":650,"resize":"fit"}},"source_status_id":663379572562329601,"source_status_id_str":"663379572562329601","source_user_id":102830951,"source_user_id_str":"102830951"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995663"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724586864640,"id_str":"663727724586864640","text":"#analfick #sexvideo Stiefellecker wir haben was f\u00fcr dich: mit dem Stiefellecker outdoor..un... https:\/\/t.co\/xps6MXkRKT #analfuck #fucking","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289799153,"id_str":"3289799153","name":"Jasmin Lehmann","screen_name":"Dirty2017Jasmin","location":"Berlin, Deutschland","url":"http:\/\/dpm.date4sex.com\/click.php?dp=a21zbbad","description":"http:\/\/bit.ly\/1OS7Bdz\nhttp:\/\/chaturbate.com\/affiliates\/in\/ZmU7\/rau3d\/?track=default \u2026 http:\/\/bit.ly\/20crWQb http:\/\/bit.ly\/1SgaLYY http:\/\/bit.ly\/1ivRBkO","protected":false,"verified":false,"followers_count":2399,"friends_count":3499,"listed_count":53,"favourites_count":16,"statuses_count":163392,"created_at":"Tue May 19 09:43:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626330788716511232\/myshiYop_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626330788716511232\/myshiYop_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289799153\/1438163902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"analfick","indices":[0,9]},{"text":"sexvideo","indices":[10,19]},{"text":"analfuck","indices":[119,128]},{"text":"fucking","indices":[129,137]}],"urls":[{"url":"https:\/\/t.co\/xps6MXkRKT","expanded_url":"http:\/\/bit.ly\/1Hqgme0","display_url":"bit.ly\/1Hqgme0","indices":[95,118]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079995663"} +{"delete":{"status":{"id":648841040787431425,"id_str":"648841040787431425","user_id":350167915,"user_id_str":"350167915"},"timestamp_ms":"1447079995732"}} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574326785,"id_str":"663727724574326785","text":"Kangen sepanjang jalanan ini.. https:\/\/t.co\/vBhXyRSvgv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2556673200,"id_str":"2556673200","name":"Koper Traveler","screen_name":"KoperTraveler","location":"Jakarta","url":"http:\/\/www.kopertraveler.info","description":"Life is a journey. Berpetualanglah selagi masih muda dan ada kesempatan.IG: @kopertraveler.info FB: kopertraveler","protected":false,"verified":false,"followers_count":701,"friends_count":829,"listed_count":3,"favourites_count":864,"statuses_count":2207,"created_at":"Mon Jun 09 11:41:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599910565260099584\/agnAl431_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599910565260099584\/agnAl431_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2556673200\/1427845197","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663265887009374208,"quoted_status_id_str":"663265887009374208","quoted_status":{"created_at":"Sun Nov 08 08:04:45 +0000 2015","id":663265887009374208,"id_str":"663265887009374208","text":"https:\/\/t.co\/jvZhSLF3BY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2343867770,"id_str":"2343867770","name":"Wisata Anambas","screen_name":"wisataanambas","location":"Anambas Islands","url":"http:\/\/www.wisataanambas.com","description":"The Official Twitter of Tourism Promotion Office I Anambas Regency I Riau Archipelago Province I Indonesia I Email : anambaswisata@gmail.com","protected":false,"verified":false,"followers_count":1319,"friends_count":66,"listed_count":17,"favourites_count":1984,"statuses_count":2675,"created_at":"Fri Feb 14 17:13:31 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434497317157085184\/k2C2pXDl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434497317157085184\/k2C2pXDl.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659317012837982208\/P55TRZw0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659317012837982208\/P55TRZw0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2343867770\/1432871328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663265827920056320,"id_str":"663265827920056320","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkwaDUkAAAREL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkwaDUkAAAREL.jpg","url":"https:\/\/t.co\/jvZhSLF3BY","display_url":"pic.twitter.com\/jvZhSLF3BY","expanded_url":"http:\/\/twitter.com\/wisataanambas\/status\/663265887009374208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663265827920056320,"id_str":"663265827920056320","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRkwaDUkAAAREL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRkwaDUkAAAREL.jpg","url":"https:\/\/t.co\/jvZhSLF3BY","display_url":"pic.twitter.com\/jvZhSLF3BY","expanded_url":"http:\/\/twitter.com\/wisataanambas\/status\/663265887009374208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vBhXyRSvgv","expanded_url":"https:\/\/twitter.com\/wisataanambas\/status\/663265887009374208","display_url":"twitter.com\/wisataanambas\/\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724566077440,"id_str":"663727724566077440","text":"RT @blackcatrena: @JacyBrean @TheTealWarrior @_SallyannP @MsEbayingFlynn @Bballmama1 @SaharahShae @MistralKDawn @mnnovelette https:\/\/t.co\/j\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419431415,"id_str":"2419431415","name":"Kalie Kreggory","screen_name":"kaliekreggory","location":"USA","url":"http:\/\/www.amazon.com\/Kalie-Kreggory\/e\/B00K52SAT6","description":"An author writing erotica short stories from the #romantic to the #raunchy with emphasis on #lesbian encounters.","protected":false,"verified":false,"followers_count":1132,"friends_count":870,"listed_count":275,"favourites_count":1630,"statuses_count":42084,"created_at":"Sun Mar 30 19:24:00 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453723092590661632\/WtwkuQpq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453723092590661632\/WtwkuQpq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419431415\/1427764971","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:42:29 +0000 2015","id":663667971664031745,"id_str":"663667971664031745","text":"@JacyBrean @TheTealWarrior @_SallyannP @MsEbayingFlynn @Bballmama1 @SaharahShae @MistralKDawn @mnnovelette https:\/\/t.co\/jjJGDJX7FL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":385040138,"in_reply_to_user_id_str":"385040138","in_reply_to_screen_name":"JacyBrean","user":{"id":1208367830,"id_str":"1208367830","name":"Rena Brown","screen_name":"blackcatrena","location":null,"url":null,"description":"I have Lupus but i will not let it stop me. I am a mother,a poet,a writer,a mentor and aspiring actress. Together we can. #lupussurvivor #teamblackcatrena NO DM","protected":false,"verified":false,"followers_count":19699,"friends_count":18902,"listed_count":1149,"favourites_count":57322,"statuses_count":188529,"created_at":"Fri Feb 22 13:02:47 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625819700962787328\/_9r92FUE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625819700962787328\/_9r92FUE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1208367830\/1361626228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JacyBrean","name":"Jacy Brean","id":385040138,"id_str":"385040138","indices":[0,10]},{"screen_name":"TheTealWarrior","name":"Dixie Theriault","id":1186334989,"id_str":"1186334989","indices":[11,26]},{"screen_name":"_SallyannP","name":"S. Phillips - Author","id":394209037,"id_str":"394209037","indices":[27,38]},{"screen_name":"MsEbayingFlynn","name":"Ms.L.A-Ebay","id":457164241,"id_str":"457164241","indices":[39,54]},{"screen_name":"Bballmama1","name":"B ball Mama1","id":1507963315,"id_str":"1507963315","indices":[55,66]},{"screen_name":"SaharahShae","name":"SaharahShae\u2122 Author","id":2647531357,"id_str":"2647531357","indices":[67,79]},{"screen_name":"MistralKDawn","name":"Mistral Dawn","id":2813678052,"id_str":"2813678052","indices":[80,93]},{"screen_name":"mnnovelette","name":"Laurie Vincent","id":2700896623,"id_str":"2700896623","indices":[94,106]}],"symbols":[],"media":[{"id":663667970606940160,"id_str":"663667970606940160","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"small":{"w":266,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":266,"h":189,"resize":"fit"},"medium":{"w":266,"h":189,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663667970606940160,"id_str":"663667970606940160","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"small":{"w":266,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":266,"h":189,"resize":"fit"},"medium":{"w":266,"h":189,"resize":"fit"}}},{"id":663667970694995968,"id_str":"663667970694995968","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMoUYAAo45X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMoUYAAo45X.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"medium":{"w":201,"h":251,"resize":"fit"},"small":{"w":201,"h":251,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":201,"h":251,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blackcatrena","name":"Rena Brown","id":1208367830,"id_str":"1208367830","indices":[3,16]},{"screen_name":"JacyBrean","name":"Jacy Brean","id":385040138,"id_str":"385040138","indices":[18,28]},{"screen_name":"TheTealWarrior","name":"Dixie Theriault","id":1186334989,"id_str":"1186334989","indices":[29,44]},{"screen_name":"_SallyannP","name":"S. Phillips - Author","id":394209037,"id_str":"394209037","indices":[45,56]},{"screen_name":"MsEbayingFlynn","name":"Ms.L.A-Ebay","id":457164241,"id_str":"457164241","indices":[57,72]},{"screen_name":"Bballmama1","name":"B ball Mama1","id":1507963315,"id_str":"1507963315","indices":[73,84]},{"screen_name":"SaharahShae","name":"SaharahShae\u2122 Author","id":2647531357,"id_str":"2647531357","indices":[85,97]},{"screen_name":"MistralKDawn","name":"Mistral Dawn","id":2813678052,"id_str":"2813678052","indices":[98,111]},{"screen_name":"mnnovelette","name":"Laurie Vincent","id":2700896623,"id_str":"2700896623","indices":[112,124]}],"symbols":[],"media":[{"id":663667970606940160,"id_str":"663667970606940160","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"small":{"w":266,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":266,"h":189,"resize":"fit"},"medium":{"w":266,"h":189,"resize":"fit"}},"source_status_id":663667971664031745,"source_status_id_str":"663667971664031745","source_user_id":1208367830,"source_user_id_str":"1208367830"}]},"extended_entities":{"media":[{"id":663667970606940160,"id_str":"663667970606940160","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMTUwAA9TxB.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"small":{"w":266,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":266,"h":189,"resize":"fit"},"medium":{"w":266,"h":189,"resize":"fit"}},"source_status_id":663667971664031745,"source_status_id_str":"663667971664031745","source_user_id":1208367830,"source_user_id_str":"1208367830"},{"id":663667970694995968,"id_str":"663667970694995968","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSgMoUYAAo45X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSgMoUYAAo45X.jpg","url":"https:\/\/t.co\/jjJGDJX7FL","display_url":"pic.twitter.com\/jjJGDJX7FL","expanded_url":"http:\/\/twitter.com\/blackcatrena\/status\/663667971664031745\/photo\/1","type":"photo","sizes":{"medium":{"w":201,"h":251,"resize":"fit"},"small":{"w":201,"h":251,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":201,"h":251,"resize":"fit"}},"source_status_id":663667971664031745,"source_status_id_str":"663667971664031745","source_user_id":1208367830,"source_user_id_str":"1208367830"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578607105,"id_str":"663727724578607105","text":"Get Weather Updates from The Weather Channel. 09:39:55","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119558114,"id_str":"3119558114","name":"dmfa26267","screen_name":"dmfa26267","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":56539,"created_at":"Tue Mar 31 08:22:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574322688,"id_str":"663727724574322688","text":"RT @mieetiee: #\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u9b45\u529b\u3092\u611f\u3058\u305f\u65b9\u7e4b\u304c\u308a\u307e\u305b\u3093\u304b \n \\( \u00a8\u032e )\/ https:\/\/t.co\/FR3O1IbugB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3339342193,"id_str":"3339342193","name":"\u3075\u3075\u3075\u306e\u3075","screen_name":"nirofu_0312","location":"\u4f0a\u9054\u5de5\u3068\u304b\u9752\u57ce\u3068\u304b\u689f\u8c37\u3068\u304b\u3068\u304b\u8272\u3005","url":"http:\/\/www.pixiv.net\/member.php?id=15232460","description":"\u7d75\u63cf\u3044\u3066\u307e\u3059\u3002HQ!!\u2192\u9752\u57ce\/\u4f0a\u9054\u5de5\/\u689f\u8c37\/\u97f3\u99d2\u304c\u597d\u304d\u3002\u304a\u305d\u677e\u3055\u3093\u2192\u63a8\u3057\u677e\u306f\u4e00\u677e\u3001\u3001\u5341\u56db\u677e\u3082\u6368\u3066\u304c\u305f\u3044\u2026\u2190 \u305d\u306e\u4ed6\u306b\u3082\u8272\u3005\u597d\u304d\u3067\u3059\u3002\u8150\u3063\u3066\u307e\u3059\u3002 \u7121\u65ad\u8ee2\u8f09\u7b49\u306f\u304a\u8f9e\u3081\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":20,"friends_count":81,"listed_count":0,"favourites_count":347,"statuses_count":116,"created_at":"Tue Aug 25 16:51:59 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661576296921591808\/7grSJXER_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661576296921591808\/7grSJXER_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3339342193\/1443196965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 12:32:44 +0000 2015","id":662970942763593728,"id_str":"662970942763593728","text":"#\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u9b45\u529b\u3092\u611f\u3058\u305f\u65b9\u7e4b\u304c\u308a\u307e\u305b\u3093\u304b \n \\( \u00a8\u032e )\/ https:\/\/t.co\/FR3O1IbugB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3526270454,"id_str":"3526270454","name":"\u307f\u3061@\u4f4e\u6d6e\u4e0a","screen_name":"mieetiee","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=15014496","description":"\u8d64\u8466\uff0f\u56fd\u898b\u203b\u6bce\u6708\u30c6\u30b9\u30c8\u3042\u308b\u306e\u3067\u5ea6\u3005\u4f4e\u6d6e\u4e0a \u25c7http:\/\/twpf.jp\/mieetiee","protected":false,"verified":false,"followers_count":666,"friends_count":95,"listed_count":26,"favourites_count":6651,"statuses_count":2725,"created_at":"Fri Sep 11 11:44:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662967101938790400\/QEx-Wdm4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662967101938790400\/QEx-Wdm4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3526270454\/1446898552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":191,"favorite_count":326,"entities":{"hashtags":[{"text":"\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u9b45\u529b\u3092\u611f\u3058\u305f\u65b9\u7e4b\u304c\u308a\u307e\u305b\u3093\u304b","indices":[0,22]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662970931275366401,"id_str":"662970931275366401","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","url":"https:\/\/t.co\/FR3O1IbugB","display_url":"pic.twitter.com\/FR3O1IbugB","expanded_url":"http:\/\/twitter.com\/mieetiee\/status\/662970942763593728\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662970931275366401,"id_str":"662970931275366401","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","url":"https:\/\/t.co\/FR3O1IbugB","display_url":"pic.twitter.com\/FR3O1IbugB","expanded_url":"http:\/\/twitter.com\/mieetiee\/status\/662970942763593728\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u306b\u9b45\u529b\u3092\u611f\u3058\u305f\u65b9\u7e4b\u304c\u308a\u307e\u305b\u3093\u304b","indices":[14,36]}],"urls":[],"user_mentions":[{"screen_name":"mieetiee","name":"\u307f\u3061@\u4f4e\u6d6e\u4e0a","id":3526270454,"id_str":"3526270454","indices":[3,12]}],"symbols":[],"media":[{"id":662970931275366401,"id_str":"662970931275366401","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","url":"https:\/\/t.co\/FR3O1IbugB","display_url":"pic.twitter.com\/FR3O1IbugB","expanded_url":"http:\/\/twitter.com\/mieetiee\/status\/662970942763593728\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662970942763593728,"source_status_id_str":"662970942763593728","source_user_id":3526270454,"source_user_id_str":"3526270454"}]},"extended_entities":{"media":[{"id":662970931275366401,"id_str":"662970931275366401","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNYjKcUAAEoDqT.jpg","url":"https:\/\/t.co\/FR3O1IbugB","display_url":"pic.twitter.com\/FR3O1IbugB","expanded_url":"http:\/\/twitter.com\/mieetiee\/status\/662970942763593728\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662970942763593728,"source_status_id_str":"662970942763593728","source_user_id":3526270454,"source_user_id_str":"3526270454"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578676736,"id_str":"663727724578676736","text":"@ahsfeatw sdv amr?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4001987325,"in_reply_to_user_id_str":"4001987325","in_reply_to_screen_name":"ahsfeatw","user":{"id":1325439253,"id_str":"1325439253","name":"\u262alia. 4DAYS","screen_name":"backtobieberz","location":"jb, kj, tvd and 1d","url":null,"description":"justin and austin follows","protected":false,"verified":false,"followers_count":2749,"friends_count":2387,"listed_count":8,"favourites_count":1130,"statuses_count":34521,"created_at":"Wed Apr 03 21:03:32 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521476155006656512\/oB1aouvZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521476155006656512\/oB1aouvZ.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715046619353088\/1I7aKX7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715046619353088\/1I7aKX7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1325439253\/1447076971","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ahsfeatw","name":"dad\u00ed","id":4001987325,"id_str":"4001987325","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724591099904,"id_str":"663727724591099904","text":"@corolla_xxx \u305d\u3046\u304b\u3001\u968f\u5206\u3068\u5f85\u305f\u305b\u3066\u60aa\u304b\u3063\u305f\u306a\u3002\u2026\u7528\u610f\u3057\u305f\u6642\u306f\u30d9\u30eb\u30011\u676f\u4ed8\u304d\u5408\u3048\u3002\u2026\u6687\u306a\u6642\u306b\u624b\u5408\u308f\u305b\u7a0b\u5ea6\u306a\u3089\u69cb\u3063\u3066\u3084\u3063\u3066\u3082\u3044\u3044\u305e\u3001\u4efb\u52d9\u306b\u5dee\u3057\u652f\u3048\u306a\u3044\u7a0b\u5ea6\u306b\u306a\u3089\u76f8\u624b\u3057\u3066\u3084\u308b\u3002\u2026\u96d1\u9b5a\u99c6\u9664\u304f\u3089\u3044\u3057\u304b\u306d\u3047\u306a\u3001\u4eba\u6570\u306f\u5c45\u308b\u307f\u3066\u3047\u3060\u304c\u306a(\u66f8\u985e\u6372\u3063\u3066\u3044\u3051\u3070\uff11\u679a\u306e\u7d19\u3092\u5dee\u3057\u51fa\u3057\u3066)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662648626997399552,"in_reply_to_status_id_str":"662648626997399552","in_reply_to_user_id":3488534292,"in_reply_to_user_id_str":"3488534292","in_reply_to_screen_name":"corolla_xxx","user":{"id":3277157976,"id_str":"3277157976","name":"XANXUS","screen_name":"xx_sb10","location":null,"url":null,"description":"\u5fa9\u6d3b\u975e\u516c\u5f0f\u6210\u57a2\u3002\u6c17\u7d1b\u308c\u6d6e\u4e0a\/\u30ed\u30eb\u6709\/\u5922\u8150\u4e00\u822c\u5bfe\u5fdc\/\u539f\u4f5c\u3088\u308a\u7518\u3081\u6545\u30ad\u30e3\u30e9\u5d29\u58ca\u6709\/\u57fa\u672c\u7f6e\u30ea\u30d7\/\u7d75\u6587\u5b57\u30ed\u30eb\u5185(\uff0c.)\u306e\u4f7f\u7528\u51b7\u9047\/\u8a3a\u65ad\u30bf\u30b0\u904a\u3073\u6709\u308a","protected":false,"verified":false,"followers_count":20,"friends_count":19,"listed_count":0,"favourites_count":34,"statuses_count":100,"created_at":"Sun Jul 12 06:55:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620126264888705024\/q7A9Ak0G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620126264888705024\/q7A9Ak0G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277157976\/1436711405","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"corolla_xxx","name":"Belphegor","id":3488534292,"id_str":"3488534292","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995664"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724574306304,"id_str":"663727724574306304","text":"2ch\u306e\u9762\u767d\u3044\u8a18\u4e8b\u307e\u3068\u3081\u3010\u6bcd\u306e\u6012\u308a\u65b9 \u3011https:\/\/t.co\/oCmMeSJpGY ##followmejp #follow #2ch #2chmatome","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":424024600,"id_str":"424024600","name":"2ch\u8caf\u8535\u5eab","screen_name":"2ch6","location":null,"url":"http:\/\/blog.crooz.jp\/2chcom","description":"2ch\u306e\u9762\u767d\u3044\u8a18\u4e8b\u3001\u611f\u52d5\u306a\u8a18\u4e8b\u3092\u914d\u4fe1\u3057\u307e\u3059\u3002\r\n\u662f\u975e\u3054\u89a7\u4e0b\u3055\u3044","protected":false,"verified":false,"followers_count":2749,"friends_count":3035,"listed_count":14,"favourites_count":0,"statuses_count":77596,"created_at":"Tue Nov 29 06:58:15 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1663813622\/images_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1663813622\/images_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"followmejp","indices":[45,56]},{"text":"follow","indices":[57,64]},{"text":"2ch","indices":[65,69]},{"text":"2chmatome","indices":[70,80]}],"urls":[{"url":"https:\/\/t.co\/oCmMeSJpGY","expanded_url":"http:\/\/blog.crooz.jp\/2chcom\/ShowArticle?no=187","display_url":"blog.crooz.jp\/2chcom\/ShowArt\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995660"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561739776,"id_str":"663727724561739776","text":"For those of you who were wondering if the conservative friends of Israel were in it for the sake of the Jews: https:\/\/t.co\/cV6wgUujjn #tcot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369848802,"id_str":"369848802","name":"Hannah Gais","screen_name":"hannahgais","location":"New York City","url":"http:\/\/www.hannahgais.com","description":"Writer. Internet @thebafflermag and @WashSpec. Fellow @ypfp, director @easternproject. Disgruntled leftist because your revolution sucks. Views are my poodle's.","protected":false,"verified":false,"followers_count":1234,"friends_count":1068,"listed_count":81,"favourites_count":17212,"statuses_count":30106,"created_at":"Thu Sep 08 01:42:25 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608125719231766529\/L5oflBBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608125719231766529\/L5oflBBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369848802\/1445816836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tcot","indices":[135,140]}],"urls":[{"url":"https:\/\/t.co\/cV6wgUujjn","expanded_url":"http:\/\/www.haaretz.com\/jewish\/news\/1.684848","display_url":"haaretz.com\/jewish\/news\/1.\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724587012096,"id_str":"663727724587012096","text":"buongiorno a te. https:\/\/t.co\/SmrMeNwaYa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3064550153,"id_str":"3064550153","name":"'beth.","screen_name":"gdrthea","location":"angelina.","url":null,"description":"\u2014 so hold me in your arms.","protected":false,"verified":false,"followers_count":1778,"friends_count":1961,"listed_count":8,"favourites_count":2823,"statuses_count":7048,"created_at":"Fri Feb 27 19:53:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607931385811247105\/4PnsETh-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607931385811247105\/4PnsETh-.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662582666487799808\/1pilMypw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662582666487799808\/1pilMypw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064550153\/1446806991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663693857129897984,"quoted_status_id_str":"663693857129897984","quoted_status":{"created_at":"Mon Nov 09 12:25:21 +0000 2015","id":663693857129897984,"id_str":"663693857129897984","text":"Buongiorno https:\/\/t.co\/mQKR9DVmzI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312111311,"id_str":"3312111311","name":"kian","screen_name":"itskianallgdr","location":" kian richard lawley","url":null,"description":"Erano un po' come l'amore e l'odio: due forze opposte eppure l'una non pu\u00f2 esistere senza la presenza dell'altra. ~j\u2022n\u2022t","protected":false,"verified":false,"followers_count":186,"friends_count":88,"listed_count":1,"favourites_count":478,"statuses_count":2665,"created_at":"Sun Jun 07 17:09:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647098327054553092\/G2upc1nk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647098327054553092\/G2upc1nk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312111311\/1443115268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663480329928208384,"quoted_status_id_str":"663480329928208384","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mQKR9DVmzI","expanded_url":"https:\/\/twitter.com\/gdrthea\/status\/663480329928208384","display_url":"twitter.com\/gdrthea\/status\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SmrMeNwaYa","expanded_url":"https:\/\/twitter.com\/itskianallgdr\/status\/663693857129897984","display_url":"twitter.com\/itskianallgdr\/\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079995663"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724570132480,"id_str":"663727724570132480","text":"RT @OMGtrolls: Current financial status https:\/\/t.co\/hgsQnfEou1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155974900,"id_str":"2155974900","name":"wani.","screen_name":"wawaniyy","location":null,"url":"http:\/\/instagram.com\/wanirsli_","description":"17","protected":false,"verified":false,"followers_count":573,"friends_count":427,"listed_count":1,"favourites_count":2388,"statuses_count":16811,"created_at":"Sat Oct 26 02:21:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0104","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175275135\/siKdyV6I.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175275135\/siKdyV6I.jpeg","profile_background_tile":true,"profile_link_color":"D10B67","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649209935188791297\/oi30s8va_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649209935188791297\/oi30s8va_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155974900\/1445868459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 23:30:21 +0000 2015","id":660599721602498560,"id_str":"660599721602498560","text":"Current financial status https:\/\/t.co\/hgsQnfEou1","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517680491,"id_str":"517680491","name":"Laughing","screen_name":"OMGtrolls","location":null,"url":null,"description":"Too glam to give a damn.\ncontact - omgtrolls121@gmail.com","protected":false,"verified":false,"followers_count":882096,"friends_count":145,"listed_count":1508,"favourites_count":1046,"statuses_count":25969,"created_at":"Wed Mar 07 15:15:13 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640060189899681792\/yDiOm0Cj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640060189899681792\/yDiOm0Cj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517680491\/1441437572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1792,"favorite_count":1423,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660599721493426176,"id_str":"660599721493426176","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","url":"https:\/\/t.co\/hgsQnfEou1","display_url":"pic.twitter.com\/hgsQnfEou1","expanded_url":"http:\/\/twitter.com\/OMGtrolls\/status\/660599721602498560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660599721493426176,"id_str":"660599721493426176","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","url":"https:\/\/t.co\/hgsQnfEou1","display_url":"pic.twitter.com\/hgsQnfEou1","expanded_url":"http:\/\/twitter.com\/OMGtrolls\/status\/660599721602498560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OMGtrolls","name":"Laughing","id":517680491,"id_str":"517680491","indices":[3,13]}],"symbols":[],"media":[{"id":660599721493426176,"id_str":"660599721493426176","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","url":"https:\/\/t.co\/hgsQnfEou1","display_url":"pic.twitter.com\/hgsQnfEou1","expanded_url":"http:\/\/twitter.com\/OMGtrolls\/status\/660599721602498560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":660599721602498560,"source_status_id_str":"660599721602498560","source_user_id":517680491,"source_user_id_str":"517680491"}]},"extended_entities":{"media":[{"id":660599721493426176,"id_str":"660599721493426176","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrr8lpWcAA0Zev.jpg","url":"https:\/\/t.co\/hgsQnfEou1","display_url":"pic.twitter.com\/hgsQnfEou1","expanded_url":"http:\/\/twitter.com\/OMGtrolls\/status\/660599721602498560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":660599721602498560,"source_status_id_str":"660599721602498560","source_user_id":517680491,"source_user_id_str":"517680491"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079995659"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724565925888,"id_str":"663727724565925888","text":"\u25a0\u30a2\u30c7\u30a3\u30c0\u30b9 \u30d0\u30ea\u30b1\u30fc\u30c98+AC 27.5cm\u65b0\u54c1\u672a\u4f7f\u7528(adidas)\n\u73fe\u5728\u306e\u4fa1\u683c7,800 \u5186\n\u73fe\u5728\u306e\u5165\u672d\u4eba\u65700\u4eba\n\u8a73\u3057\u304f\u306f\u30b3\u30c1\u30e9\u21d2https:\/\/t.co\/U58IQWSV2d https:\/\/t.co\/jgtOcC2K75","source":"\u003ca href=\"http:\/\/toregobapp.com\" rel=\"nofollow\"\u003etoregobapp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2880180271,"id_str":"2880180271","name":"\u30c8\u30ec\u30b8\u30e3\u30fc\u30b4\u30d6\u30ea\u30f3","screen_name":"toregergob","location":null,"url":null,"description":"\u5973\u738b\u69d8\u306e\u70ba\u306b\u304a\u5b9d\u3092\u305b\u3063\u305b\u3068\u96c6\u3081\u308b\u50cd\u304d\u30a2\u30ea\u7684\u5b58\u5728\u306e\u30c8\u30ec\u30b8\u30e3\u30fc\u30b4\u30d6\u30ea\u30f3\u3067\u3059\uff08\uff3e\u03c9\uff3e\uff09","protected":false,"verified":false,"followers_count":141,"friends_count":10,"listed_count":8,"favourites_count":0,"statuses_count":83232,"created_at":"Tue Oct 28 00:39:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526900114502086657\/gQAIB36y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526900114502086657\/gQAIB36y_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U58IQWSV2d","expanded_url":"http:\/\/yuapp.tank.jp\/?id=h211316432","display_url":"yuapp.tank.jp\/?id=h211316432","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":663727724326862850,"id_str":"663727724326862850","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2UQUwAIkGAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2UQUwAIkGAc.jpg","url":"https:\/\/t.co\/jgtOcC2K75","display_url":"pic.twitter.com\/jgtOcC2K75","expanded_url":"http:\/\/twitter.com\/toregergob\/status\/663727724565925888\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727724326862850,"id_str":"663727724326862850","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2UQUwAIkGAc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2UQUwAIkGAc.jpg","url":"https:\/\/t.co\/jgtOcC2K75","display_url":"pic.twitter.com\/jgtOcC2K75","expanded_url":"http:\/\/twitter.com\/toregergob\/status\/663727724565925888\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724578611200,"id_str":"663727724578611200","text":"Bella semana para todos, cargada de sorpresas y con energ\u00eda positiva. Besitos de mariposa para mi @MarcheloCordoba y todos vosotros","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3331324589,"id_str":"3331324589","name":"Protagonico_MC","screen_name":"Protagonico_MC","location":"Madrid, Espa\u00f1a","url":"http:\/\/www.marcelo-cordoba.com","description":"Si admiras y quieres al actor Marcelo C\u00f3rdoba, este es tu lugar. Bienvenido a tu casa!!! Administrado por @vanne_gp29","protected":false,"verified":false,"followers_count":177,"friends_count":403,"listed_count":0,"favourites_count":15,"statuses_count":977,"created_at":"Wed Jun 17 13:43:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633613588914130944\/0k_3tkHN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633613588914130944\/0k_3tkHN.jpg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634033056043675648\/zzHekDjX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634033056043675648\/zzHekDjX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3331324589\/1441629282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MarcheloCordoba","name":"Marcelo Cordoba","id":165797550,"id_str":"165797550","indices":[98,114]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079995661"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724565893120,"id_str":"663727724565893120","text":"@basket39_39 https:\/\/t.co\/35wbO2JuWC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726865769607169,"in_reply_to_status_id_str":"663726865769607169","in_reply_to_user_id":1954156290,"in_reply_to_user_id_str":"1954156290","in_reply_to_screen_name":"basket39_39","user":{"id":2492426382,"id_str":"2492426382","name":"\u307e\u308a\u304a","screen_name":"mario_Emmaluv","location":null,"url":null,"description":"JK2,LDH,\u30b9\u30bf\u30d0,WEGO,FOREVER21,\u3061\u3043\u307d\u307d\u2661","protected":false,"verified":false,"followers_count":571,"friends_count":552,"listed_count":0,"favourites_count":4247,"statuses_count":10445,"created_at":"Tue May 13 05:08:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649501242859720704\/1VdUf7g8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649501242859720704\/1VdUf7g8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492426382\/1445701362","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"basket39_39","name":"\u307f\u304f\u3059\u3051","id":1954156290,"id_str":"1954156290","indices":[0,12]}],"symbols":[],"media":[{"id":663727706090049540,"id_str":"663727706090049540","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1QUVEAQMg4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1QUVEAQMg4A.jpg","url":"https:\/\/t.co\/35wbO2JuWC","display_url":"pic.twitter.com\/35wbO2JuWC","expanded_url":"http:\/\/twitter.com\/mario_Emmaluv\/status\/663727724565893120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727706090049540,"id_str":"663727706090049540","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1QUVEAQMg4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1QUVEAQMg4A.jpg","url":"https:\/\/t.co\/35wbO2JuWC","display_url":"pic.twitter.com\/35wbO2JuWC","expanded_url":"http:\/\/twitter.com\/mario_Emmaluv\/status\/663727724565893120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079995658"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724561698817,"id_str":"663727724561698817","text":"\ud83c\udf82@HeadBoy_Bmen\ud83c\udf82\n\n\u4f1a\u9577\u304a\u8a95\u751f\u65e5\u304a\u3081\u3067\u3068\u3046\u301c\ud83d\ude0a\ud83c\udf89\n\u30d0\u30b9\u30b1\u3082\u751f\u5f92\u4f1a\u3082\u9811\u5f35\u3063\u3066\u308b\u4f1a\u9577\u3068\u3063\u3066\u3082\u7d20\u6575\u3067\u3059\ud83d\udc4d\ud83c\udffc\ud83d\udc4d\ud83c\udffc\n\u6765\u5e74\u306e\u958b\u6821\u8a18\u5ff5\u65e5\u3053\u305d\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u306b\u884c\u3053\u3046\u306d\ud83d\udc2d\ud83c\udff0\ud83c\udf1f\n\u7d20\u6575\u306a\u30bb\u30d6\u30f3\u30c6\u30a3\u30fc\u30f3\u3092\uff01\uff01 https:\/\/t.co\/9gbhnm47rN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402479632,"id_str":"2402479632","name":"\u30bd\u30a6\u30c0 \u30b5\u30af\u30e9","screen_name":"shd_skr","location":null,"url":"http:\/\/Instagram.com\/shd_skr","description":"\u30af\u30ea\u30b9\u30de\u30b9\u30d7\u30ec\u30bc\u30f3\u30c8\u306f\u201d\u5b89\u5b9a\u201d\u3092\u4e0b\u3055\u3044\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":572,"friends_count":540,"listed_count":0,"favourites_count":10201,"statuses_count":8574,"created_at":"Sat Mar 22 02:22:17 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662453816868995072\/pLE8CYyL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662453816868995072\/pLE8CYyL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402479632\/1444136791","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HeadBoy_Bmen","name":"\u304b\u3044\u3068","id":423450255,"id_str":"423450255","indices":[1,14]}],"symbols":[],"media":[{"id":663727713849503744,"id_str":"663727713849503744","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1tOU8AAD7us.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1tOU8AAD7us.jpg","url":"https:\/\/t.co\/9gbhnm47rN","display_url":"pic.twitter.com\/9gbhnm47rN","expanded_url":"http:\/\/twitter.com\/shd_skr\/status\/663727724561698817\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727713849503744,"id_str":"663727713849503744","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1tOU8AAD7us.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1tOU8AAD7us.jpg","url":"https:\/\/t.co\/9gbhnm47rN","display_url":"pic.twitter.com\/9gbhnm47rN","expanded_url":"http:\/\/twitter.com\/shd_skr\/status\/663727724561698817\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079995657"} +{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724591190016,"id_str":"663727724591190016","text":"@Judeu_eusouorap eu sei pai kkkkkkkk mas ba to anojado j\u00e1 do meu trampo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663596210238971904,"in_reply_to_status_id_str":"663596210238971904","in_reply_to_user_id":385796940,"in_reply_to_user_id_str":"385796940","in_reply_to_screen_name":"Judeu_eusouorap","user":{"id":309818872,"id_str":"309818872","name":"Gabriel Gollo","screen_name":"golinholouco","location":"Vila Restinga","url":null,"description":"Enlouquecido por bundas, embrazar nos forr\u00f3 e queima o zoio com os irm\u00e3o.\n\nMORTADELA\u2764\ufe0f","protected":false,"verified":false,"followers_count":1108,"friends_count":547,"listed_count":1,"favourites_count":13982,"statuses_count":31678,"created_at":"Thu Jun 02 18:33:50 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0C0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461976431346475009\/DDl9YQ8a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461976431346475009\/DDl9YQ8a.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFEFA","profile_text_color":"0A8AFA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658996788309983232\/DVaMSoYf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658996788309983232\/DVaMSoYf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309818872\/1445225044","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Judeu_eusouorap","name":"JUDEU","id":385796940,"id_str":"385796940","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079995664"} +{"delete":{"status":{"id":663716500625207296,"id_str":"663716500625207296","user_id":2555365423,"user_id_str":"2555365423"},"timestamp_ms":"1447079996078"}} +{"delete":{"status":{"id":663717838603988992,"id_str":"663717838603988992","user_id":2500943180,"user_id_str":"2500943180"},"timestamp_ms":"1447079996207"}} +{"delete":{"status":{"id":661849070655303680,"id_str":"661849070655303680","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447079996226"}} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781324288,"id_str":"663727728781324288","text":"RT @imgsrc_ru: Tunisia \u043e\u0442 wildduran @unicTunis #Tunis\n\nhttps:\/\/t.co\/DnpyDBWDee https:\/\/t.co\/ZGJUqyMDVH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296099353,"id_str":"296099353","name":"hoh69","screen_name":"hoh69","location":null,"url":null,"description":"\u0420\u0430\u0431\u043e\u0442\u0430\u044e. \u0411\u043e\u043b\u0435\u044e \u0437\u0430 \u0417\u0435\u043d\u0438\u0442!!","protected":false,"verified":false,"followers_count":1907,"friends_count":2039,"listed_count":15,"favourites_count":2556,"statuses_count":30197,"created_at":"Tue May 10 06:08:10 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/249913612\/DSCN5087.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/249913612\/DSCN5087.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440816903691321344\/w3cNRXcH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440816903691321344\/w3cNRXcH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296099353\/1398247369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:04 +0000 2015","id":663726250779897856,"id_str":"663726250779897856","text":"Tunisia \u043e\u0442 wildduran @unicTunis #Tunis\n\nhttps:\/\/t.co\/DnpyDBWDee https:\/\/t.co\/ZGJUqyMDVH","source":"\u003ca href=\"http:\/\/imgsrc.ru\" rel=\"nofollow\"\u003eiMGSRC.RU\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53385799,"id_str":"53385799","name":"iMGSRC.RU official","screen_name":"imgsrc_ru","location":null,"url":"http:\/\/imgsrc.ru","description":"\u0421\u0430\u043c\u044b\u0439 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0439 \u0444\u043e\u0442\u043e \u0445\u043e\u0441\u0442\u0438\u043d\u0433 iMGSRC..RU - \u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0440\u0430\u0441\u0438\u0432\u044b\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 :) Welcome to our free amateur photo host - your number one source of beauty!","protected":false,"verified":false,"followers_count":6603,"friends_count":5058,"listed_count":103,"favourites_count":10,"statuses_count":9410,"created_at":"Fri Jul 03 13:35:40 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF7300","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/813422925\/77bfe7bd49385e1264852f7f7a27e33b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/813422925\/77bfe7bd49385e1264852f7f7a27e33b.jpeg","profile_background_tile":false,"profile_link_color":"570707","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFD599","profile_text_color":"C2C2C2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499931985432031232\/E7QcCioh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499931985432031232\/E7QcCioh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53385799\/1427460683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Tunis","indices":[32,38]}],"urls":[{"url":"https:\/\/t.co\/DnpyDBWDee","expanded_url":"http:\/\/imgsrc.ru\/wildduran\/a1040607.html","display_url":"imgsrc.ru\/wildduran\/a104\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"unictunis","name":"UNIC TUNIS","id":49566762,"id_str":"49566762","indices":[21,31]}],"symbols":[],"media":[{"id":663726250314346496,"id_str":"663726250314346496","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","url":"https:\/\/t.co\/ZGJUqyMDVH","display_url":"pic.twitter.com\/ZGJUqyMDVH","expanded_url":"http:\/\/twitter.com\/imgsrc_ru\/status\/663726250779897856\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":511,"resize":"fit"},"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726250314346496,"id_str":"663726250314346496","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","url":"https:\/\/t.co\/ZGJUqyMDVH","display_url":"pic.twitter.com\/ZGJUqyMDVH","expanded_url":"http:\/\/twitter.com\/imgsrc_ru\/status\/663726250779897856\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":511,"resize":"fit"},"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sk"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Tunis","indices":[47,53]}],"urls":[{"url":"https:\/\/t.co\/DnpyDBWDee","expanded_url":"http:\/\/imgsrc.ru\/wildduran\/a1040607.html","display_url":"imgsrc.ru\/wildduran\/a104\u2026","indices":[55,78]}],"user_mentions":[{"screen_name":"imgsrc_ru","name":"iMGSRC.RU official","id":53385799,"id_str":"53385799","indices":[3,13]},{"screen_name":"unictunis","name":"UNIC TUNIS","id":49566762,"id_str":"49566762","indices":[36,46]}],"symbols":[],"media":[{"id":663726250314346496,"id_str":"663726250314346496","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","url":"https:\/\/t.co\/ZGJUqyMDVH","display_url":"pic.twitter.com\/ZGJUqyMDVH","expanded_url":"http:\/\/twitter.com\/imgsrc_ru\/status\/663726250779897856\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":511,"resize":"fit"},"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":663726250779897856,"source_status_id_str":"663726250779897856","source_user_id":53385799,"source_user_id_str":"53385799"}]},"extended_entities":{"media":[{"id":663726250314346496,"id_str":"663726250314346496","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHghIWsAApF6v.jpg","url":"https:\/\/t.co\/ZGJUqyMDVH","display_url":"pic.twitter.com\/ZGJUqyMDVH","expanded_url":"http:\/\/twitter.com\/imgsrc_ru\/status\/663726250779897856\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":511,"resize":"fit"},"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":663726250779897856,"source_status_id_str":"663726250779897856","source_user_id":53385799,"source_user_id_str":"53385799"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768770048,"id_str":"663727728768770048","text":"RT @Wanlessrm: #sdgeorge #pudelpointer #SDintheField #pheasants4ever #publichunting #HuntInSD #benelli #dogsoftwitter #pheasants https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/tagboard.com\" rel=\"nofollow\"\u003eTagboard\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2401969646,"id_str":"2401969646","name":"SD Game Fish & Parks","screen_name":"SDGameFishParks","location":"Pierre, South Dakota","url":"http:\/\/gfp.sd.gov\/","description":"The official Twitter account for the South Dakota Game, Fish & Parks. News on hunting, fishing, camping, boating, outdoor activities, reg changes & more!","protected":false,"verified":false,"followers_count":3715,"friends_count":1432,"listed_count":48,"favourites_count":1847,"statuses_count":5388,"created_at":"Fri Mar 21 18:30:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447100436642689024\/thIqwD70.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447100436642689024\/thIqwD70.jpeg","profile_background_tile":false,"profile_link_color":"564720","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447090941623427072\/vQqicK4I_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447090941623427072\/vQqicK4I_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401969646\/1442421533","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:10:20 +0000 2015","id":662814310402363392,"id_str":"662814310402363392","text":"#sdgeorge #pudelpointer #SDintheField #pheasants4ever #publichunting #HuntInSD #benelli #dogsoftwitter #pheasants https:\/\/t.co\/ticEAS5N3V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":541186274,"id_str":"541186274","name":"R. W","screen_name":"Wanlessrm","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":219,"listed_count":1,"favourites_count":388,"statuses_count":1078,"created_at":"Fri Mar 30 22:50:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534865168123973632\/qq83M4M9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534865168123973632\/qq83M4M9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/541186274\/1416356681","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"sdgeorge","indices":[0,9]},{"text":"pudelpointer","indices":[10,23]},{"text":"SDintheField","indices":[24,37]},{"text":"pheasants4ever","indices":[38,53]},{"text":"publichunting","indices":[54,68]},{"text":"HuntInSD","indices":[69,78]},{"text":"benelli","indices":[79,87]},{"text":"dogsoftwitter","indices":[88,102]},{"text":"pheasants","indices":[103,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662814303905431552,"id_str":"662814303905431552","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","url":"https:\/\/t.co\/ticEAS5N3V","display_url":"pic.twitter.com\/ticEAS5N3V","expanded_url":"http:\/\/twitter.com\/Wanlessrm\/status\/662814310402363392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662814303905431552,"id_str":"662814303905431552","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","url":"https:\/\/t.co\/ticEAS5N3V","display_url":"pic.twitter.com\/ticEAS5N3V","expanded_url":"http:\/\/twitter.com\/Wanlessrm\/status\/662814310402363392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sdgeorge","indices":[15,24]},{"text":"pudelpointer","indices":[25,38]},{"text":"SDintheField","indices":[39,52]},{"text":"pheasants4ever","indices":[53,68]},{"text":"publichunting","indices":[69,83]},{"text":"HuntInSD","indices":[84,93]},{"text":"benelli","indices":[94,102]},{"text":"dogsoftwitter","indices":[103,117]},{"text":"pheasants","indices":[118,128]}],"urls":[],"user_mentions":[{"screen_name":"Wanlessrm","name":"R. W","id":541186274,"id_str":"541186274","indices":[3,13]}],"symbols":[],"media":[{"id":662814303905431552,"id_str":"662814303905431552","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","url":"https:\/\/t.co\/ticEAS5N3V","display_url":"pic.twitter.com\/ticEAS5N3V","expanded_url":"http:\/\/twitter.com\/Wanlessrm\/status\/662814310402363392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662814310402363392,"source_status_id_str":"662814310402363392","source_user_id":541186274,"source_user_id_str":"541186274"}]},"extended_entities":{"media":[{"id":662814303905431552,"id_str":"662814303905431552","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLKGQBUwAADKwZ.jpg","url":"https:\/\/t.co\/ticEAS5N3V","display_url":"pic.twitter.com\/ticEAS5N3V","expanded_url":"http:\/\/twitter.com\/Wanlessrm\/status\/662814310402363392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662814310402363392,"source_status_id_str":"662814310402363392","source_user_id":541186274,"source_user_id_str":"541186274"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756174848,"id_str":"663727728756174848","text":"Odio ser mujerrrr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3075587038,"id_str":"3075587038","name":"BOCAMPE\u00d3N","screen_name":"LeilaLlanosRS","location":null,"url":"https:\/\/m.facebook.com\/leila.llanos?ref=bookmark","description":"Club atletico Boca Juniors.","protected":false,"verified":false,"followers_count":746,"friends_count":734,"listed_count":4,"favourites_count":4446,"statuses_count":8724,"created_at":"Fri Mar 06 19:08:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661002685370531840\/OsKelz3M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661002685370531840\/OsKelz3M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3075587038\/1446430364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781369344,"id_str":"663727728781369344","text":"RT @nooqsoftware: @PendryWhite @aponcier @RosieBoylan We have self-policing feature to manage anonymous posts @nooqsoftware","source":"\u003ca href=\"http:\/\/www.google.nl\" rel=\"nofollow\"\u003ePageFacts_bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3890882615,"id_str":"3890882615","name":"PageFacts_bot","screen_name":"PageFacts_bot","location":null,"url":null,"description":"test","protected":false,"verified":false,"followers_count":83,"friends_count":0,"listed_count":33,"favourites_count":5268,"statuses_count":5290,"created_at":"Wed Oct 07 14:50:41 +0000 2015","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727643808919553,"id_str":"663727643808919553","text":"@PendryWhite @aponcier @RosieBoylan We have self-policing feature to manage anonymous posts @nooqsoftware","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719419412144128,"in_reply_to_status_id_str":"663719419412144128","in_reply_to_user_id":47675781,"in_reply_to_user_id_str":"47675781","in_reply_to_screen_name":"PendryWhite","user":{"id":1349310324,"id_str":"1349310324","name":"nooQ","screen_name":"nooqsoftware","location":"In the noosphere","url":"http:\/\/www.nooq.co","description":"We solve information overload. Visual Communication software for Digital Marketing Agencies & Tech teams. Simpler and better than Slack","protected":false,"verified":false,"followers_count":2638,"friends_count":2192,"listed_count":136,"favourites_count":1491,"statuses_count":1802,"created_at":"Sat Apr 13 14:05:13 +0000 2013","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E53E30","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582848884289892352\/TO__tCIR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582848884289892352\/TO__tCIR.jpg","profile_background_tile":false,"profile_link_color":"6BABE5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582890468683419648\/qST80PKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582890468683419648\/qST80PKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1349310324\/1446590421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PendryWhite","name":"Total Reputation","id":47675781,"id_str":"47675781","indices":[0,12]},{"screen_name":"aponcier","name":"Anthony Poncier","id":16388856,"id_str":"16388856","indices":[13,22]},{"screen_name":"RosieBoylan","name":"Rosie Valentine","id":238115323,"id_str":"238115323","indices":[23,35]},{"screen_name":"nooqsoftware","name":"nooQ","id":1349310324,"id_str":"1349310324","indices":[92,105]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nooqsoftware","name":"nooQ","id":1349310324,"id_str":"1349310324","indices":[3,16]},{"screen_name":"PendryWhite","name":"Total Reputation","id":47675781,"id_str":"47675781","indices":[18,30]},{"screen_name":"aponcier","name":"Anthony Poncier","id":16388856,"id_str":"16388856","indices":[31,40]},{"screen_name":"RosieBoylan","name":"Rosie Valentine","id":238115323,"id_str":"238115323","indices":[41,53]},{"screen_name":"nooqsoftware","name":"nooQ","id":1349310324,"id_str":"1349310324","indices":[110,123]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772820992,"id_str":"663727728772820992","text":"RT @ANGLOLANIDORA: Those eyes @aldenrichards02 #ExcitedForGMAChistmasStationID https:\/\/t.co\/973VV8ZK7n","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":907413330,"id_str":"907413330","name":"izamary chiu","screen_name":"izamary0413","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":92,"listed_count":1,"favourites_count":32,"statuses_count":19,"created_at":"Sat Oct 27 05:17:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642969214018387968\/s9u_PB_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642969214018387968\/s9u_PB_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/907413330\/1445763045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:21 +0000 2015","id":663722799953920001,"id_str":"663722799953920001","text":"Those eyes @aldenrichards02 #ExcitedForGMAChistmasStationID https:\/\/t.co\/973VV8ZK7n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152856447,"id_str":"152856447","name":"LOLA NIDORA","screen_name":"ANGLOLANIDORA","location":null,"url":null,"description":"Ako si Donya Nidora Esperanza Zobeyala Beyuda De Explorer. \u2022 Ang taga gabay sa ALDUB \u2022 Makinig sa aking mga payo \u2022","protected":false,"verified":false,"followers_count":259589,"friends_count":45,"listed_count":227,"favourites_count":2799,"statuses_count":34080,"created_at":"Mon Jun 07 02:04:41 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661514670772121600\/G6RRxez-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661514670772121600\/G6RRxez-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152856447\/1444905918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":240,"favorite_count":291,"entities":{"hashtags":[{"text":"ExcitedForGMAChistmasStationID","indices":[28,59]}],"urls":[],"user_mentions":[{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[11,27]}],"symbols":[],"media":[{"id":663722785680715776,"id_str":"663722785680715776","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","url":"https:\/\/t.co\/973VV8ZK7n","display_url":"pic.twitter.com\/973VV8ZK7n","expanded_url":"http:\/\/twitter.com\/ANGLOLANIDORA\/status\/663722799953920001\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":646,"resize":"fit"},"small":{"w":340,"h":381,"resize":"fit"},"medium":{"w":576,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663722785680715776,"id_str":"663722785680715776","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","url":"https:\/\/t.co\/973VV8ZK7n","display_url":"pic.twitter.com\/973VV8ZK7n","expanded_url":"http:\/\/twitter.com\/ANGLOLANIDORA\/status\/663722799953920001\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":646,"resize":"fit"},"small":{"w":340,"h":381,"resize":"fit"},"medium":{"w":576,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ExcitedForGMAChistmasStationID","indices":[47,78]}],"urls":[],"user_mentions":[{"screen_name":"ANGLOLANIDORA","name":"LOLA NIDORA","id":152856447,"id_str":"152856447","indices":[3,17]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[30,46]}],"symbols":[],"media":[{"id":663722785680715776,"id_str":"663722785680715776","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","url":"https:\/\/t.co\/973VV8ZK7n","display_url":"pic.twitter.com\/973VV8ZK7n","expanded_url":"http:\/\/twitter.com\/ANGLOLANIDORA\/status\/663722799953920001\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":646,"resize":"fit"},"small":{"w":340,"h":381,"resize":"fit"},"medium":{"w":576,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722799953920001,"source_status_id_str":"663722799953920001","source_user_id":152856447,"source_user_id_str":"152856447"}]},"extended_entities":{"media":[{"id":663722785680715776,"id_str":"663722785680715776","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEW2XU8AAlVjt.jpg","url":"https:\/\/t.co\/973VV8ZK7n","display_url":"pic.twitter.com\/973VV8ZK7n","expanded_url":"http:\/\/twitter.com\/ANGLOLANIDORA\/status\/663722799953920001\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":646,"resize":"fit"},"small":{"w":340,"h":381,"resize":"fit"},"medium":{"w":576,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722799953920001,"source_status_id_str":"663722799953920001","source_user_id":152856447,"source_user_id_str":"152856447"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781369345,"id_str":"663727728781369345","text":"RT @DaveinTexas: Yep\n\nThey're 1-5 it's not like they're showing up now https:\/\/t.co\/mkdilUCTR8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7227662,"id_str":"7227662","name":"Physics Geek","screen_name":"physicsgeek","location":null,"url":"http:\/\/physicsgeek.mu.nu","description":"I'm a degree holder in physics and nuclear engineering, currently employed as-you guess it- a nuclear engineer, living with a wife and 3 children.","protected":false,"verified":false,"followers_count":2686,"friends_count":643,"listed_count":119,"favourites_count":3705,"statuses_count":59303,"created_at":"Tue Jul 03 12:39:25 +0000 2007","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651766018956742657\/hALiu_tW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651766018956742657\/hALiu_tW_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:38 +0000 2015","id":663726394304671744,"id_str":"663726394304671744","text":"Yep\n\nThey're 1-5 it's not like they're showing up now https:\/\/t.co\/mkdilUCTR8","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14706964,"id_str":"14706964","name":"Dave in Texas","screen_name":"DaveinTexas","location":null,"url":"http:\/\/ace.mu.nu","description":"I am a fucking ray of sunshine","protected":false,"verified":false,"followers_count":3131,"friends_count":396,"listed_count":165,"favourites_count":3474,"statuses_count":54851,"created_at":"Thu May 08 22:59:36 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/94802488\/TexasFlaglarger.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/94802488\/TexasFlaglarger.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555809448594112512\/i-jM1P1b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555809448594112512\/i-jM1P1b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14706964\/1387137517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725816271011840,"quoted_status_id_str":"663725816271011840","quoted_status":{"created_at":"Mon Nov 09 14:32:20 +0000 2015","id":663725816271011840,"id_str":"663725816271011840","text":"JackFacts rating: True. Also any \"boycotting\" player on Athletic scholarship should have said scholarship revoked. https:\/\/t.co\/cInj7BvP9x","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137921279,"id_str":"137921279","name":"JackFacts","screen_name":"jackmcoldcuts","location":"Out Doin' Fact Checking Stuff","url":null,"description":"The nation's leading arbiter of political facts appearing in my Timeline.","protected":false,"verified":false,"followers_count":1388,"friends_count":437,"listed_count":54,"favourites_count":140,"statuses_count":24656,"created_at":"Wed Apr 28 04:05:00 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578258967383531520\/xjv4wEpa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578258967383531520\/xjv4wEpa.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/411668500017446912\/nm_WSrQi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/411668500017446912\/nm_WSrQi_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725032141488129,"quoted_status_id_str":"663725032141488129","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cInj7BvP9x","expanded_url":"https:\/\/twitter.com\/SECfootball\/status\/663725032141488129","display_url":"twitter.com\/SECfootball\/st\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mkdilUCTR8","expanded_url":"https:\/\/twitter.com\/jackmcoldcuts\/status\/663725816271011840","display_url":"twitter.com\/jackmcoldcuts\/\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mkdilUCTR8","expanded_url":"https:\/\/twitter.com\/jackmcoldcuts\/status\/663725816271011840","display_url":"twitter.com\/jackmcoldcuts\/\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"DaveinTexas","name":"Dave in Texas","id":14706964,"id_str":"14706964","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728776998913,"id_str":"663727728776998913","text":"\u2721\n\u6700\u8fd1\u304b\u306a\u308a\u4f4e\u6d6e\u4e0a\u3067\u3059\u3001\n\u4ffa\u306e\u3053\u3068\u3001\u5fd8\u308c\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u306d\u2026\u2026\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1222339470,"id_str":"1222339470","name":"\u25b8\u25b9\u25b8\u6c17\u307e\u3050\u308c\u3061\u3087\u304e\u3085\u3002","screen_name":"Kyuhyunxx_bot","location":null,"url":"http:\/\/twpf.jp\/Kyuhyunxx_bot","description":"\uc288\ud37c\uc8fc\ub2c8\uc5b4 \/ \uc870 \uaddc\ud604 bot... since 13.02.27\u21dd","protected":false,"verified":false,"followers_count":328,"friends_count":341,"listed_count":4,"favourites_count":853,"statuses_count":126137,"created_at":"Tue Feb 26 16:36:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648148237111554048\/yIB6RjPx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648148237111554048\/yIB6RjPx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1222339470\/1424848275","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996662"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772972544,"id_str":"663727728772972544","text":"Promulgan ley qu establece p\u00e9rdida de esca\u00f1o por infracci\u00f3n electoral https:\/\/t.co\/ztUBe8Zvg2 @PublimetroChile\/ Biennn,la politica es nbleza","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128684468,"id_str":"128684468","name":"Gloria Mu\u00f1oz","screen_name":"gloriaapii","location":"Santiago de Chile","url":"http:\/\/apii-chile.blogspot.com\/","description":"Independiente de Izquierda","protected":false,"verified":false,"followers_count":2492,"friends_count":1642,"listed_count":28,"favourites_count":265,"statuses_count":85582,"created_at":"Thu Apr 01 22:03:47 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/791374857\/4449960434_f7b16c5d48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/791374857\/4449960434_f7b16c5d48_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ztUBe8Zvg2","expanded_url":"http:\/\/www.publimetro.cl\/nota\/cronica\/promulgan-ley-que-establece-perdida-de-escano-por-infraccion-electoral\/xIQoki!KubN2C3Ju9WQ\/","display_url":"publimetro.cl\/nota\/cronica\/p\u2026","indices":[70,93]}],"user_mentions":[{"screen_name":"PublimetroChile","name":"PublimetroChile","id":54115409,"id_str":"54115409","indices":[94,110]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772927488,"id_str":"663727728772927488","text":"RT @WSHHFANS: ELSMERELDA CALM DOWN, WE'LL GET SOME TACOS SOON \ud83d\ude02 https:\/\/t.co\/e3AdyCYhv9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3043466751,"id_str":"3043466751","name":"K\u2022murda","screen_name":"haze_phazey","location":null,"url":null,"description":"peace be with you","protected":false,"verified":false,"followers_count":141,"friends_count":151,"listed_count":0,"favourites_count":255,"statuses_count":1073,"created_at":"Tue Feb 17 20:00:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663569508481806336\/Tlj5XWYL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663569508481806336\/Tlj5XWYL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3043466751\/1444022534","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:25 +0000 2015","id":663725332839710721,"id_str":"663725332839710721","text":"ELSMERELDA CALM DOWN, WE'LL GET SOME TACOS SOON \ud83d\ude02 https:\/\/t.co\/e3AdyCYhv9","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370986902,"id_str":"1370986902","name":"WSHH FANS","screen_name":"WSHHFANS","location":"wshhfansbusiness@gmail.com","url":null,"description":"NOT Affiliated With @WORLDSTAR or Vine. We Do Not Own The Media That Is Posted, Parody . 18+ Content Instagram & Snapchat: WSHHFANS","protected":false,"verified":false,"followers_count":885685,"friends_count":147688,"listed_count":512,"favourites_count":0,"statuses_count":25711,"created_at":"Mon Apr 22 01:48:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370986902\/1444071563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":484,"favorite_count":538,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":584423423843016705,"id_str":"584423423843016705","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","url":"https:\/\/t.co\/e3AdyCYhv9","display_url":"pic.twitter.com\/e3AdyCYhv9","expanded_url":"http:\/\/twitter.com\/OddFuturePage\/status\/584423522522554368\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":584423522522554368,"source_status_id_str":"584423522522554368","source_user_id":1287023690,"source_user_id_str":"1287023690"}]},"extended_entities":{"media":[{"id":584423423843016705,"id_str":"584423423843016705","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","url":"https:\/\/t.co\/e3AdyCYhv9","display_url":"pic.twitter.com\/e3AdyCYhv9","expanded_url":"http:\/\/twitter.com\/OddFuturePage\/status\/584423522522554368\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":584423522522554368,"source_status_id_str":"584423522522554368","source_user_id":1287023690,"source_user_id_str":"1287023690","video_info":{"aspect_ratio":[16,9],"duration_millis":17400,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/640x360\/FjTaFztTwDgtXLka.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/pl\/Cl9v4v4u4jqmxjpW.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/640x360\/FjTaFztTwDgtXLka.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/320x180\/dfzioyYLOwPNFoRS.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/pl\/Cl9v4v4u4jqmxjpW.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WSHHFANS","name":"WSHH FANS","id":1370986902,"id_str":"1370986902","indices":[3,12]}],"symbols":[],"media":[{"id":584423423843016705,"id_str":"584423423843016705","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","url":"https:\/\/t.co\/e3AdyCYhv9","display_url":"pic.twitter.com\/e3AdyCYhv9","expanded_url":"http:\/\/twitter.com\/OddFuturePage\/status\/584423522522554368\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":584423522522554368,"source_status_id_str":"584423522522554368","source_user_id":1287023690,"source_user_id_str":"1287023690"}]},"extended_entities":{"media":[{"id":584423423843016705,"id_str":"584423423843016705","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/584423423843016705\/pu\/img\/9eEVJe0v5kKq3d1C.jpg","url":"https:\/\/t.co\/e3AdyCYhv9","display_url":"pic.twitter.com\/e3AdyCYhv9","expanded_url":"http:\/\/twitter.com\/OddFuturePage\/status\/584423522522554368\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":584423522522554368,"source_status_id_str":"584423522522554368","source_user_id":1287023690,"source_user_id_str":"1287023690","video_info":{"aspect_ratio":[16,9],"duration_millis":17400,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/640x360\/FjTaFztTwDgtXLka.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/pl\/Cl9v4v4u4jqmxjpW.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/640x360\/FjTaFztTwDgtXLka.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/vid\/320x180\/dfzioyYLOwPNFoRS.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/584423423843016705\/pu\/pl\/Cl9v4v4u4jqmxjpW.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768585728,"id_str":"663727728768585728","text":"\u3046\u304a\u304a\u304a\u2026\u30c8\u30e9\u30a4\u30af\u30ed\u30cb\u30ab\u306e\u96e3\u3057\u3044\u306e\u3084\u3063\u305f\u3089\u6307\u91e3\u308a\u305d\u3046\u306b\u306a\u3063\u305f\u3057\u7126\u308b\u3057\u643a\u5e2f\u306f\u6ed1\u308a\u843d\u3061\u308b\u3057\u3067\u3001\u7d42\u308f\u3063\u3066\u3057\u307e\u3063\u305f\u3002\n\u3067\u3082\u697d\u3057\u3044\u3002\u66f2\u304c\u3069\u308c\u3082\u30a4\u30a4\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":477685988,"id_str":"477685988","name":"\u306a\u3054\u305f\u307e\u3053\u30fb\u306e\u3053","screen_name":"nagotamako","location":null,"url":null,"description":"\u8133\u5185\u5782\u308c\u6d41\u3057\u3002FFTCG\u304c\u30e1\u30a4\u30f3\u3002\u30d7\u30ec\u30b7\u30e3\u30b9(\u307f\u306a\u307f\u3051\u30fbCC\u3055\u304f\u3089)\u3001\u30af\u30eb\u30bb\u30a4\u30c9(\u30dc\u30f3\u30ba)\u3068\u306f\u3064\u304b\u305a\u96e2\u308c\u305a\u306e\u95a2\u4fc2\u3002\u30d4\u30af\u30c8\u30ed\u30b8\u30ab\u305f\u306e\u3057\u3044\u308c\u3059\u3002\u6c17\u307e\u307e\u306b\u8ab2\u91d1\u52e2\u3002\u30ed\u30b8\u30ab\u30fc\u3092\u3053\u3063\u305d\u308a\u30d5\u30a9\u30ed\u30fc\u3002FFTA\u5927\u597d\u304d\u52e2\u3002","protected":false,"verified":false,"followers_count":174,"friends_count":230,"listed_count":5,"favourites_count":1039,"statuses_count":16446,"created_at":"Sun Jan 29 13:11:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660454113604308993\/g5DFrstB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660454113604308993\/g5DFrstB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/477685988\/1429143470","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728760221696,"id_str":"663727728760221696","text":"\u0e27\u0e31\u0e14\u0e1e\u0e23\u0e30\u0e18\u0e23\u0e23\u0e21\u0e01\u0e32\u0e22 \u0e2a\u0e2d\u0e19\u0e43\u0e2b\u0e49\u0e23\u0e31\u0e01\u0e1e\u0e48\u0e2d\u0e41\u0e21\u0e48","source":"\u003ca href=\"http:\/\/www.dmc.tv\" rel=\"nofollow\"\u003eSocial DMK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197284576,"id_str":"197284576","name":"\u0e1e\u0e34\u0e21\u0e25\u0e23\u0e31\u0e15\u0e19\u0e4c ","screen_name":"user072","location":"BANGKOK","url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":13,"listed_count":2,"favourites_count":1770,"statuses_count":7071,"created_at":"Fri Oct 01 02:50:46 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079996658"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756068352,"id_str":"663727728756068352","text":"\u5c0f\u9e7f\uff08\u99ac\u9e7f\u3070\u3063\u304b\u308a\u3060\u306a\u5973\u5b50\u9ad8\u751f\u306a\u3093\u3066\u306e\u306f\uff09","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1257190206,"id_str":"1257190206","name":"\u3046\u3061\u306e\u5b50bot","screen_name":"goheichannoko","location":null,"url":null,"description":".","protected":false,"verified":false,"followers_count":5,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":17673,"created_at":"Sun Mar 10 14:51:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3362525364\/24d366c104f96d3a84661bf38db10ccd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3362525364\/24d366c104f96d3a84661bf38db10ccd_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768630784,"id_str":"663727728768630784","text":"RT @0mg65: \u6398\u308a\u305f\u3044\u4ebaRT\u3001\u6398\u3089\u308c\u305f\u3044\u4eba\u30d5\u30a1\u30dc https:\/\/t.co\/gK8WkO6I6r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2276593813,"id_str":"2276593813","name":"\u3069\u3093\u3055\u3093\uff2011\u6708\u306f\u6771\u4eac\u51fa\u5f35\uff01","screen_name":"dd_shota21","location":"\u65e5\u672c","url":null,"description":"170.65.23 \u30b7\u30e7\u30bf\u597d\u304d\u3067\u3059\uff01B\u3067\u3059\uff01\u4eca\u306f\u4e09\u91cd\u306b\u4f4f\u3093\u3067\u307e\u3059\uff01\u3061\u306a\u307f\u306b\u7d4c\u9a13\u306f\u4eca\u306e\u3068\u3053\u308d\u3042\u308a\u307e\u3059\uff01\uff08\u7b11\uff09\u3082\u3063\u3068\u3082\u3063\u3068\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u2606\u3061\u306a\u307f\u306b\u30ab\u30ab\u30aa\u3084\u3063\u3066\u307e\u3059\u3001\u3088\u304b\u3063\u305f\u3089\u30ab\u30ab\u30aa\u3067\u3082\u9023\u7d61\u53d6\u308a\u307e\u3057\u3087\u3046\uff01\u3088\u308d\u3057\u304f\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":176,"friends_count":372,"listed_count":0,"favourites_count":134,"statuses_count":363,"created_at":"Sat Jan 04 19:58:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498120257374920704\/gvVP1vFP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498120257374920704\/gvVP1vFP_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:18:01 +0000 2015","id":663676915719376896,"id_str":"663676915719376896","text":"\u6398\u308a\u305f\u3044\u4ebaRT\u3001\u6398\u3089\u308c\u305f\u3044\u4eba\u30d5\u30a1\u30dc https:\/\/t.co\/gK8WkO6I6r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2913893899,"id_str":"2913893899","name":"\u3086\u3063\u305f","screen_name":"0mg65","location":null,"url":null,"description":"\u30a8\u30ed\u57a21705824\u51f8\u4e3b\u306b\u6771\u4eac\u3001\u4e00\u4eba\u66ae\u3089\u3057\u3002\u53cb\u9054\u3001\u30bb\u30d5\u30ec\u307c\u3057\u3085\u30fc\u3002\u6771\u4eac\u5343\u8449\u3088\u308a\u3002\u30bf\u30e1\u307e\u3067\u3067\u3002\u8abf\u6559\u3068\u304b\u8907\u6570\u3082\u3057\u305f\u3044\u306a\u30fc\u3002","protected":false,"verified":false,"followers_count":3375,"friends_count":1144,"listed_count":17,"favourites_count":3008,"statuses_count":2116,"created_at":"Sat Nov 29 15:32:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650632288967917568\/jgB8OXQq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650632288967917568\/jgB8OXQq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913893899\/1417275709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":45,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663676906647130112,"id_str":"663676906647130112","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663676906647130112,"id_str":"663676906647130112","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663676906705780736,"id_str":"663676906705780736","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoV3UAAAfCQQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoV3UAAAfCQQ.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0mg65","name":"\u3086\u3063\u305f","id":2913893899,"id_str":"2913893899","indices":[3,9]}],"symbols":[],"media":[{"id":663676906647130112,"id_str":"663676906647130112","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663676915719376896,"source_status_id_str":"663676915719376896","source_user_id":2913893899,"source_user_id_str":"2913893899"}]},"extended_entities":{"media":[{"id":663676906647130112,"id_str":"663676906647130112","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoVpVEAAj2Tr.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663676915719376896,"source_status_id_str":"663676915719376896","source_user_id":2913893899,"source_user_id_str":"2913893899"},{"id":663676906705780736,"id_str":"663676906705780736","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaoV3UAAAfCQQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaoV3UAAAfCQQ.jpg","url":"https:\/\/t.co\/gK8WkO6I6r","display_url":"pic.twitter.com\/gK8WkO6I6r","expanded_url":"http:\/\/twitter.com\/0mg65\/status\/663676915719376896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663676915719376896,"source_status_id_str":"663676915719376896","source_user_id":2913893899,"source_user_id_str":"2913893899"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728785383425,"id_str":"663727728785383425","text":"@havenshark \u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\ucd9c\u3161\ub801\u3161","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727640742752256,"in_reply_to_status_id_str":"663727640742752256","in_reply_to_user_id":272539403,"in_reply_to_user_id_str":"272539403","in_reply_to_screen_name":"havenshark","user":{"id":2239641924,"id_str":"2239641924","name":"\ud788\ub7ad\ud788\ub7ad","screen_name":"glfod_glfod","location":null,"url":"http:\/\/glfod-glfod.tumblr.com\/","description":"\uadf8\ub9ac\uace0 \uc2f6\uc740\uac78 \uadf8\ub824\uc694~ \uae30\ubd84\ub530\ub77c \uc990\uac81\uace0 \uc2e0\ub098\uac8c! \/\/ RT\uac00 \ub9ce\uc2b5\ub2c8\ub2e4 \/\/ FUB free \uc800\ub3c4 \ud504\ub9ac \/\/ \uba58\uc158\uc740 \uc2e0\uc911\ud788.","protected":false,"verified":false,"followers_count":2343,"friends_count":330,"listed_count":26,"favourites_count":4222,"statuses_count":1915,"created_at":"Tue Dec 10 19:10:02 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"FFB5B5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582951374586912768\/aQ9ZXhNV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582951374586912768\/aQ9ZXhNV_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"havenshark","name":"\uc139\uc2a4\ub178 \ud558\uc0c1\ub9c8\uce20","id":272539403,"id_str":"272539403","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079996664"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728777129984,"id_str":"663727728777129984","text":"Seja como for ,eu n\u00e3o quero ficar assim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":289579636,"id_str":"289579636","name":"Let\u00edcia","screen_name":"lethdiias","location":"Dis","url":null,"description":"\u00a0Uma das coisas que menos fazemos nesse mundo \u00e9 valorizar algu\u00e9m que diz o quanto nos ama","protected":false,"verified":false,"followers_count":237,"friends_count":69,"listed_count":25,"favourites_count":1618,"statuses_count":33107,"created_at":"Thu Apr 28 22:04:32 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/489873245705748480\/S6E79amk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/489873245705748480\/S6E79amk.jpeg","profile_background_tile":true,"profile_link_color":"9755D4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"E08BE0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659122032441995264\/quMGMTVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659122032441995264\/quMGMTVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289579636\/1445982061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079996662"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728793923585,"id_str":"663727728793923585","text":"3 people followed me and one person unfollowed me \/\/ automatically checked by https:\/\/t.co\/oyAezjal73","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817478466,"id_str":"817478466","name":"Maia","screen_name":"MaiaTB_","location":"pinamar","url":null,"description":"~BartRallyTeam~ Snap: maiaolmos\u264c","protected":false,"verified":false,"followers_count":742,"friends_count":793,"listed_count":3,"favourites_count":2673,"statuses_count":31545,"created_at":"Tue Sep 11 13:59:30 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585579720835629056\/txXfg-di.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585579720835629056\/txXfg-di.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663463745126051841\/zP6X8Vof_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663463745126051841\/zP6X8Vof_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817478466\/1447016999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oyAezjal73","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996666"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764432384,"id_str":"663727728764432384","text":"\u5fc3\u7f85\u300c\u307f\u3093\u306a\u30fc!!\u5fdc\u63f4\u3088\u308d\u3057\u304f\u30c3\u30b9\u266a\u300d\u5973\u306e\u5b50\u300c\u304d\u3083\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\/\/\/\u300d\u548c\u5bae\u300c\u30fb\u30fb\u30fb\u5144\u3055\u3093\u76f8\u3082\u5909\u308f\u3089\u305a\u3060\u306d\u3001\u5446\u308c\u305f\u3002\u300d\u5fc3\u7f85\u300c\u30fb\u30fb\u30fb\u672c\u5f53\u306f\u3001\u3044\u3063\u3061\u3083\u3093\u597d\u304d\u306a\u5b50\u306b\u58f0\u63f4\u8cb0\u3044\u305f\u3044\u3051\u3069\u306d\u3002\u300d","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1290451201,"id_str":"1290451201","name":"\u81ea\u5b85\u7537\u5b50\u9ad8\u6821\u751f\u9054","screen_name":"kakatasia_bot","location":null,"url":null,"description":"\u307b\u3063\u3077\u3059\u3002\u306e\u7537\u5b50\u9ad8\u6821\u751f\u9054\u3067\u3059!!\u6c17\u307e\u307e\u306b\u545f\u3044\u3066\u3044\u304d\u307e\u3059\u3002\u4e2d\u306e\u4eba\u306f\u57fa\u672c\u5c45\u307e\u305b\u3093\u3002\u3046\u3056\u304f\u306a\u3063\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3067!!","protected":false,"verified":false,"followers_count":95,"friends_count":101,"listed_count":0,"favourites_count":0,"statuses_count":41818,"created_at":"Sat Mar 23 04:56:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3416868408\/28dffab4ee41118693a5dc2996ef8eca_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3416868408\/28dffab4ee41118693a5dc2996ef8eca_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768770049,"id_str":"663727728768770049","text":"@KiwiCoder is someone pulling a random excuse from the excuses database rather than investigating the problem?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727518889943040,"in_reply_to_status_id_str":"663727518889943040","in_reply_to_user_id":12867632,"in_reply_to_user_id_str":"12867632","in_reply_to_screen_name":"KiwiCoder","user":{"id":20792532,"id_str":"20792532","name":"John Haselden","screen_name":"JohnHaselden","location":"Oooop North","url":"http:\/\/www.abstractec.co.uk","description":"Founder of @abstractec (mobile dev), family man, guitarist, biker, Tang Soo Do red belt. Occasional wit.","protected":false,"verified":false,"followers_count":339,"friends_count":464,"listed_count":20,"favourites_count":144,"statuses_count":11326,"created_at":"Fri Feb 13 18:23:55 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1115920551\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1115920551\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KiwiCoder","name":"Ed Guiness","id":12867632,"id_str":"12867632","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772837376,"id_str":"663727728772837376","text":"\u30ab\u30ec\u30fc\u306f\u8f9b\u3044\u3068\u304b\u7518\u3044\u3068\u304b\u3060\u308d\uff01\u30b3\u30ec\u304f\u305b\u30fc\u3093\u3060\u3088\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":429638009,"id_str":"429638009","name":"\u82b1\u6751 \u967d\u4ecb","screen_name":"hanamura_y_bot","location":null,"url":"http:\/\/fblg.jp\/p4bot\/","description":"\u30da\u30eb\u30bd\u30ca4\u306e\u82b1\u6751\u967d\u4ecb\u306ebot \u3067\u3059\u3002 \u30a2\u30cb\u30e1\u3084\u6f2b\u753b\u306a\u3069\u306e\u53f0\u8a5e\u3092\u8a71\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":48,"friends_count":10,"listed_count":8,"favourites_count":0,"statuses_count":24351,"created_at":"Tue Dec 06 06:15:27 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1677162084\/twipple1323180603757_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1677162084\/twipple1323180603757_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756002816,"id_str":"663727728756002816","text":"\u6d41\u77f3\u306b\u30de\u30ca\u30fc\u60aa\u304b\u3063\u305f\u3002\u53cd\u7701","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337544284,"id_str":"337544284","name":"josha","screen_name":"josha_G","location":"\u5175\u5eab\u770c","url":null,"description":"DM(\u307b\u307c\u5f15\u9000)\/COJ(Q\u2160)\/\u30a2\u30cb\u30e1 \u3061\u307e\u3061\u307e\u3084\u3063\u3066\u3044\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":1235,"friends_count":1002,"listed_count":28,"favourites_count":9,"statuses_count":33221,"created_at":"Mon Jul 18 05:51:34 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2455549466\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2455549466\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337544284\/1388731862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728793907200,"id_str":"663727728793907200","text":"Puma ha presentado la nueva camiseta de Italia para la Eurocopa #Francia2016. https:\/\/t.co\/vRKsIl6g8T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2372470190,"id_str":"2372470190","name":"F\u00fatbol Puro \u26bd","screen_name":"FutboIPuro","location":"Donde haya un bal\u00f3n de f\u00fatbol","url":"http:\/\/futboipuro.wordpress.com","description":"Resultados, datos, curiosidades, noticias, videos, estadisticas, fichajes, humor y mucho m\u00e1s sobre el mejor deporte del mundo. \u00a1\u00a1\u00a1Amamos el f\u00fatbol!!!","protected":false,"verified":false,"followers_count":2839,"friends_count":896,"listed_count":21,"favourites_count":225,"statuses_count":6629,"created_at":"Tue Mar 04 21:34:48 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570809952106893312\/tVzNfNOO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570809952106893312\/tVzNfNOO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2372470190\/1406845032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Francia2016","indices":[64,76]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663656500238266368,"id_str":"663656500238266368","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663656500238266368\/pu\/img\/7YC4-UhkT66PxKVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663656500238266368\/pu\/img\/7YC4-UhkT66PxKVg.jpg","url":"https:\/\/t.co\/vRKsIl6g8T","display_url":"pic.twitter.com\/vRKsIl6g8T","expanded_url":"http:\/\/twitter.com\/pumafootball\/status\/663664379469107200\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663664379469107200,"source_status_id_str":"663664379469107200","source_user_id":88944305,"source_user_id_str":"88944305"}]},"extended_entities":{"media":[{"id":663656500238266368,"id_str":"663656500238266368","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663656500238266368\/pu\/img\/7YC4-UhkT66PxKVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663656500238266368\/pu\/img\/7YC4-UhkT66PxKVg.jpg","url":"https:\/\/t.co\/vRKsIl6g8T","display_url":"pic.twitter.com\/vRKsIl6g8T","expanded_url":"http:\/\/twitter.com\/pumafootball\/status\/663664379469107200\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663664379469107200,"source_status_id_str":"663664379469107200","source_user_id":88944305,"source_user_id_str":"88944305","video_info":{"aspect_ratio":[16,9],"duration_millis":15807,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/vid\/640x360\/GjG2gNnN3p07Z5Qd.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/vid\/1280x720\/cZIPq8RA5U3QV-bi.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/pl\/DJI3a80iHs8P0dEb.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/pl\/DJI3a80iHs8P0dEb.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/vid\/320x180\/_9qHLlOZsLtpYd-t.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663656500238266368\/pu\/vid\/640x360\/GjG2gNnN3p07Z5Qd.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996666"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728789602304,"id_str":"663727728789602304","text":"RT @CliffsEdits: AHHJHH SO CUTESNDNDJAINWJE https:\/\/t.co\/ZRbEwYcKNu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":491337905,"id_str":"491337905","name":"hani","screen_name":"calmedicine","location":"indonesia. ","url":null,"description":"be yourself","protected":false,"verified":false,"followers_count":859,"friends_count":530,"listed_count":7,"favourites_count":940,"statuses_count":28371,"created_at":"Mon Feb 13 14:38:13 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000036354639\/d35efa41b5288287ed1939e001d4c0a4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000036354639\/d35efa41b5288287ed1939e001d4c0a4.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662812308175908864\/_NuuPMxw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662812308175908864\/_NuuPMxw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/491337905\/1444442921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 17:01:29 +0000 2015","id":661951411165392896,"id_str":"661951411165392896","text":"AHHJHH SO CUTESNDNDJAINWJE https:\/\/t.co\/ZRbEwYcKNu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2771666161,"id_str":"2771666161","name":"5SOS VINES","screen_name":"CliffsEdits","location":"Michael's Ass","url":"http:\/\/www.shazam.com\/myshazam","description":"They say stay in your lane boy, but on my account we go where we want to Snapchat- CliffsEdits","protected":false,"verified":false,"followers_count":12390,"friends_count":6924,"listed_count":18,"favourites_count":9794,"statuses_count":20606,"created_at":"Tue Aug 26 23:19:22 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522578006871531520\/RlWwdizv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522578006871531520\/RlWwdizv.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660844922182979584\/tF-qWObN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660844922182979584\/tF-qWObN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2771666161\/1446392749","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":51,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZRbEwYcKNu","expanded_url":"https:\/\/vine.co\/v\/e3dK3aiT7Un","display_url":"vine.co\/v\/e3dK3aiT7Un","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZRbEwYcKNu","expanded_url":"https:\/\/vine.co\/v\/e3dK3aiT7Un","display_url":"vine.co\/v\/e3dK3aiT7Un","indices":[44,67]}],"user_mentions":[{"screen_name":"CliffsEdits","name":"5SOS VINES","id":2771666161,"id_str":"2771666161","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447079996665"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728793792512,"id_str":"663727728793792512","text":"RT @TextsNotes: Being single is much better than being in a wrong relationship.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4144174694,"id_str":"4144174694","name":"Howell ~ Mm","screen_name":"HowellMelecio31","location":"Las Pinas City","url":null,"description":"C R A Z Y ||\nOn this day I promise forever ||\nilysmHOWELL","protected":false,"verified":false,"followers_count":17,"friends_count":229,"listed_count":0,"favourites_count":2,"statuses_count":36,"created_at":"Fri Nov 06 08:33:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707756310888448\/RGPlea9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707756310888448\/RGPlea9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4144174694\/1447075233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 11:30:34 +0000 2015","id":661143358568558592,"id_str":"661143358568558592","text":"Being single is much better than being in a wrong relationship.","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2391062954,"id_str":"2391062954","name":"Reality","screen_name":"TextsNotes","location":"Republic of the Philippines","url":null,"description":"Tweeting what I want, thoughts, feelings, emotions, reality, in 140 characters or less. \u2709 immanuelfranco@gmail.com","protected":false,"verified":false,"followers_count":150197,"friends_count":70,"listed_count":92,"favourites_count":102,"statuses_count":1076,"created_at":"Sat Mar 15 13:53:17 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663248735124652033\/Lxm21iSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663248735124652033\/Lxm21iSL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2391062954\/1446965039","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":442,"favorite_count":387,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TextsNotes","name":"Reality","id":2391062954,"id_str":"2391062954","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996666"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728785362948,"id_str":"663727728785362948","text":"RT @itvtynetees: Newcastle Airport: No flights from Sharm el-Sheikh on Monday https:\/\/t.co\/fpbrGdCAtU https:\/\/t.co\/yjEWSplRnM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":749568128,"id_str":"749568128","name":"Marie Gordon","screen_name":"marietgordon","location":"Virginia","url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":53,"listed_count":0,"favourites_count":563,"statuses_count":255,"created_at":"Fri Aug 10 15:39:53 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588078263853015041\/nZt1Xk8Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588078263853015041\/nZt1Xk8Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749568128\/1406473274","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:52:47 +0000 2015","id":663715861291778048,"id_str":"663715861291778048","text":"Newcastle Airport: No flights from Sharm el-Sheikh on Monday https:\/\/t.co\/fpbrGdCAtU https:\/\/t.co\/yjEWSplRnM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126060716,"id_str":"126060716","name":"ITV News Tyne Tees","screen_name":"itvtynetees","location":"North East, England","url":"http:\/\/www.itv.com\/tynetees","description":"News, Sport & Weather for Northumberland, Tyne and Wear, Durham, Teesside and North Yorkshire. Weekdays 6pm. Replies used on air. http:\/\/t.co\/iUAA9swvse","protected":false,"verified":true,"followers_count":42272,"friends_count":7363,"listed_count":376,"favourites_count":618,"statuses_count":21160,"created_at":"Wed Mar 24 18:25:08 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/763292168\/d685910aee9119a7871f3eda6bf6c205.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/763292168\/d685910aee9119a7871f3eda6bf6c205.jpeg","profile_background_tile":false,"profile_link_color":"006473","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3105976865\/17bab587f151975ca4ae9f6a1cab7c56_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3105976865\/17bab587f151975ca4ae9f6a1cab7c56_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126060716\/1436128981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fpbrGdCAtU","expanded_url":"http:\/\/www.itv.com\/news\/tyne-tees\/update\/2015-11-09\/newcastle-airport-no-flights-from-sharm-el-sheikh-on-monday\/","display_url":"itv.com\/news\/tyne-tees\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663715860280942592,"id_str":"663715860280942592","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","url":"https:\/\/t.co\/yjEWSplRnM","display_url":"pic.twitter.com\/yjEWSplRnM","expanded_url":"http:\/\/twitter.com\/itvtynetees\/status\/663715861291778048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":680,"h":382,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715860280942592,"id_str":"663715860280942592","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","url":"https:\/\/t.co\/yjEWSplRnM","display_url":"pic.twitter.com\/yjEWSplRnM","expanded_url":"http:\/\/twitter.com\/itvtynetees\/status\/663715861291778048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":680,"h":382,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fpbrGdCAtU","expanded_url":"http:\/\/www.itv.com\/news\/tyne-tees\/update\/2015-11-09\/newcastle-airport-no-flights-from-sharm-el-sheikh-on-monday\/","display_url":"itv.com\/news\/tyne-tees\u2026","indices":[78,101]}],"user_mentions":[{"screen_name":"itvtynetees","name":"ITV News Tyne Tees","id":126060716,"id_str":"126060716","indices":[3,15]}],"symbols":[],"media":[{"id":663715860280942592,"id_str":"663715860280942592","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","url":"https:\/\/t.co\/yjEWSplRnM","display_url":"pic.twitter.com\/yjEWSplRnM","expanded_url":"http:\/\/twitter.com\/itvtynetees\/status\/663715861291778048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":680,"h":382,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663715861291778048,"source_status_id_str":"663715861291778048","source_user_id":126060716,"source_user_id_str":"126060716"}]},"extended_entities":{"media":[{"id":663715860280942592,"id_str":"663715860280942592","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-DvPWoAA1TUV.jpg","url":"https:\/\/t.co\/yjEWSplRnM","display_url":"pic.twitter.com\/yjEWSplRnM","expanded_url":"http:\/\/twitter.com\/itvtynetees\/status\/663715861291778048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":680,"h":382,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663715861291778048,"source_status_id_str":"663715861291778048","source_user_id":126060716,"source_user_id_str":"126060716"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996664"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728789602305,"id_str":"663727728789602305","text":"RT @wearePhat: Old couples make you realize someone can love you forever. https:\/\/t.co\/66xmEZP30O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198501665,"id_str":"198501665","name":"\uc5d8\uc870\uc9f1","screen_name":"teokmsl","location":null,"url":null,"description":"@angeljoe1123 \u3163 TeenTop \u00d7 SS501\u3163 Myungyeon + GongLee + Dooley Couple + SoEul\/Bumsso + JjongAh + ChunJoe + OhYe + RyDen\u3163TripleS x Angel | BTS INFINITE TARA","protected":false,"verified":false,"followers_count":531,"friends_count":788,"listed_count":1,"favourites_count":5276,"statuses_count":9108,"created_at":"Mon Oct 04 13:55:23 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661410210037166080\/eDfFngo3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661410210037166080\/eDfFngo3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198501665\/1446982729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 29 15:05:09 +0000 2015","id":659747807868248064,"id_str":"659747807868248064","text":"Old couples make you realize someone can love you forever. https:\/\/t.co\/66xmEZP30O","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2900426395,"id_str":"2900426395","name":"Good Vibes","screen_name":"wearePhat","location":null,"url":"http:\/\/instagram.com\/wearePhatinsta","description":"p \u2022 o \u2022 s \u2022 i \u2022 t \u2022 i \u2022 v \u2022 i \u2022 t \u2022 y contact - thesubtleworld@gmail.com","protected":false,"verified":false,"followers_count":781422,"friends_count":556,"listed_count":918,"favourites_count":186,"statuses_count":2098,"created_at":"Sat Nov 15 12:57:10 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657618431374704640\/kbAwrnyO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657618431374704640\/kbAwrnyO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2900426395\/1445623620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10547,"favorite_count":12104,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659747806169554944,"id_str":"659747806169554944","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":830,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":553,"h":830,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":659747806169554944,"id_str":"659747806169554944","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":830,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":553,"h":830,"resize":"fit"}}},{"id":659747805775302658,"id_str":"659747805775302658","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIkSUkAI4QWB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIkSUkAI4QWB.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":733,"resize":"fit"},"large":{"w":550,"h":733,"resize":"fit"}}},{"id":659747800566005766,"id_str":"659747800566005766","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIQ4VAAYzNX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIQ4VAAYzNX3.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":526,"resize":"fit"},"small":{"w":320,"h":526,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":526,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wearePhat","name":"Good Vibes","id":2900426395,"id_str":"2900426395","indices":[3,13]}],"symbols":[],"media":[{"id":659747806169554944,"id_str":"659747806169554944","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":830,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":553,"h":830,"resize":"fit"}},"source_status_id":659747807868248064,"source_status_id_str":"659747807868248064","source_user_id":2900426395,"source_user_id_str":"2900426395"}]},"extended_entities":{"media":[{"id":659747806169554944,"id_str":"659747806169554944","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIlwUYAA6Bmo.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":830,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":553,"h":830,"resize":"fit"}},"source_status_id":659747807868248064,"source_status_id_str":"659747807868248064","source_user_id":2900426395,"source_user_id_str":"2900426395"},{"id":659747805775302658,"id_str":"659747805775302658","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIkSUkAI4QWB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIkSUkAI4QWB.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":733,"resize":"fit"},"large":{"w":550,"h":733,"resize":"fit"}},"source_status_id":659747807868248064,"source_status_id_str":"659747807868248064","source_user_id":2900426395,"source_user_id_str":"2900426395"},{"id":659747800566005766,"id_str":"659747800566005766","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSflIQ4VAAYzNX3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSflIQ4VAAYzNX3.jpg","url":"https:\/\/t.co\/66xmEZP30O","display_url":"pic.twitter.com\/66xmEZP30O","expanded_url":"http:\/\/twitter.com\/wearePhat\/status\/659747807868248064\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":526,"resize":"fit"},"small":{"w":320,"h":526,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":526,"resize":"fit"}},"source_status_id":659747807868248064,"source_status_id_str":"659747807868248064","source_user_id":2900426395,"source_user_id_str":"2900426395"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996665"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764448768,"id_str":"663727728764448768","text":"El Plan de Recuperaci\u00f3n del \u00c1guila Imperial Ib\u00e9rica consigue duplicar la poblaci\u00f3n en Castilla y Le\u00f3n: El dire... https:\/\/t.co\/T1W87751rY","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2542133220,"id_str":"2542133220","name":"Euridiceo Guerra","screen_name":"euriceoguerra","location":"M\u00e9xico, D.F. ","url":null,"description":"Guy family","protected":false,"verified":false,"followers_count":8,"friends_count":48,"listed_count":0,"favourites_count":5,"statuses_count":4430,"created_at":"Mon Jun 02 21:01:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"287BE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473572724875329536\/HjLr6lDP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473572724875329536\/HjLr6lDP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542133220\/1401743752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T1W87751rY","expanded_url":"http:\/\/bit.ly\/20GRLZ5","display_url":"bit.ly\/20GRLZ5","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728793812992,"id_str":"663727728793812992","text":"(\u266b #TeamCasilla \u266b) Eval\u00faan internos trasladados de c\u00e1rcel en Hig\u00fcey: Las autoridades ex... https:\/\/t.co\/c4deEtNFb1 (\u266b #TeamCasilla \u266b)","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463736220,"id_str":"2463736220","name":"CuErO GuStOSO","screen_name":"CuErO_Dime","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":238,"friends_count":147,"listed_count":31,"favourites_count":14,"statuses_count":272743,"created_at":"Fri Apr 25 22:12:00 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481076840899940352\/aoG1SxzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481076840899940352\/aoG1SxzP_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeamCasilla","indices":[3,15]},{"text":"TeamCasilla","indices":[118,130]}],"urls":[{"url":"https:\/\/t.co\/c4deEtNFb1","expanded_url":"http:\/\/bit.ly\/1Qp94JG","display_url":"bit.ly\/1Qp94JG","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996666"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764416001,"id_str":"663727728764416001","text":"Opening sa thurs ng jollibee\ud83d\udc1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1588154564,"id_str":"1588154564","name":"Eyd\u274c","screen_name":"imdwrddysn","location":"Edinburgh, Scotland","url":null,"description":"IG imdwrddysn","protected":false,"verified":false,"followers_count":463,"friends_count":386,"listed_count":0,"favourites_count":8627,"statuses_count":18760,"created_at":"Fri Jul 12 10:21:37 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000054141618\/f6b2b1531d175862812013b7e6dce72b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000054141618\/f6b2b1531d175862812013b7e6dce72b.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"191F22","profile_text_color":"4BB7DF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660435822307446784\/wrzawxVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660435822307446784\/wrzawxVV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1588154564\/1440926489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728793808896,"id_str":"663727728793808896","text":"@giantsachan0624 \u304a\u3044\u3057\u3044\u3088\u30fc\uff01\uff01\u3053\u308c\u9eba\u98df\u3079\u305f\u3042\u3068\u306b\u3054\u98ef\u306b\u304a\u6c41\u304b\u3051\u305f\u3089\u307e\u305f\u304a\u3044\u3057\u3044\u3093\u3060\u3042(((o(*\uff9f\u25bd\uff9f*)o)))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726241493573633,"in_reply_to_status_id_str":"663726241493573633","in_reply_to_user_id":1199557015,"in_reply_to_user_id_str":"1199557015","in_reply_to_screen_name":"giantsachan0624","user":{"id":3237824780,"id_str":"3237824780","name":"(\u306b\u304c\u3044)\u3046\u308a\u3055\u3093@\u307b\u3049\u301c\u3080\u30ab\u30d5\u30a7\u516c\u5f0f","screen_name":"maid_uri","location":"\u6211\u306b\u6b8b\u308a\u3057\u5c11\u306a\u304d\u9b54\u529b\u3067\u5f35\u3063\u305f\u7d50\u754c","url":"http:\/\/www.cafe-athome.com\/blog\/uri\/","description":"@\u307b\u3049\u301c\u3080\u30ab\u30d5\u30a7\uff08@athome_cafe\uff09\u672c\u5e975F\uff01\u30c1\u30e3\u30fc\u30e0\u30dd\u30a4\u30f3\u30c8\u306f\u30af\u30bd\u516b\u91cd\u6b6f\uff01\u306f\u306a\u3056\u30fc\u3055\u3093\u3001\u30d2\u30c8\u30ab\u30e9\u3001\u30e2\u30f3\u30b9\u30c8\u3001RPG\u3001\u9ebb\u96c0\u3068\u30ab\u30d0\u30fc\u5199\u771f\u306e\u30d2\u30ed\u30a4\u30f3\u305f\u3061\u304c\u597d\u304d\u3067\u3059\uff01\u5996\u7cbe\u3055\u3093\u3068\u306e\u304a\u7d04\u675f\u3067\u30d5\u30a9\u30ed\u30d0\u3067\u304d\u307e\u305b\u3093\u2026\u304a\u8fd4\u4e8b\u306f\u6642\u9593\u304c\u3042\u308b\u3068\u304d\u306e\u307f\uff01\u3059\u3043\u3055\u3093\u63a8\u3057\u30d5\u30a9\u30a6\u2197\ufe0e\u2197\ufe0e\u2197\ufe0e \u521d\u304a\u7d66\u4ed52015.5.7\uff01","protected":false,"verified":false,"followers_count":518,"friends_count":86,"listed_count":17,"favourites_count":139,"statuses_count":3556,"created_at":"Sat Jun 06 11:28:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626056650835693568\/6tFJ5wY4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626056650835693568\/6tFJ5wY4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237824780\/1436905999","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giantsachan0624","name":"\u30b8\u30e3\u30a4\u30a2\u30f3\u30c4\u3048\u30fc\u3061\u3083\u3093","id":1199557015,"id_str":"1199557015","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996666"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772845572,"id_str":"663727728772845572","text":"RT @mirageX5: \u0e40\u0e22\u0e47\u0e14\u0e40\u0e14\u0e47\u0e01 19 \u0e41\u0e21\u0e19\u0e46 \u0e21\u0e2d\u0e14\u0e31\u0e07\u0e19\u0e04\u0e23\u0e16\u0e21 Part 14 http:\/\/t.co\/Zy7uz8NKzn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259153780,"id_str":"259153780","name":"C.M.L","screen_name":"CTun987456","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":273,"friends_count":1897,"listed_count":4,"favourites_count":1436,"statuses_count":2791,"created_at":"Tue Mar 01 07:20:03 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634923447085174784\/PXs8GNIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634923447085174784\/PXs8GNIP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259153780\/1420771356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 15 08:49:12 +0000 2015","id":621240081521577984,"id_str":"621240081521577984","text":"\u0e40\u0e22\u0e47\u0e14\u0e40\u0e14\u0e47\u0e01 19 \u0e41\u0e21\u0e19\u0e46 \u0e21\u0e2d\u0e14\u0e31\u0e07\u0e19\u0e04\u0e23\u0e16\u0e21 Part 14 http:\/\/t.co\/Zy7uz8NKzn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990623405,"id_str":"2990623405","name":"mirageX5","screen_name":"mirageX5","location":null,"url":null,"description":"Dark Side","protected":false,"verified":false,"followers_count":72409,"friends_count":1152,"listed_count":90,"favourites_count":17670,"statuses_count":6662,"created_at":"Tue Jan 20 03:28:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648771482546401280\/q1NZl-sZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648771482546401280\/q1NZl-sZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990623405\/1443486158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":214,"favorite_count":341,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":621239803447676928,"id_str":"621239803447676928","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","url":"http:\/\/t.co\/Zy7uz8NKzn","display_url":"pic.twitter.com\/Zy7uz8NKzn","expanded_url":"http:\/\/twitter.com\/mirageX5\/status\/621240081521577984\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1073,"resize":"fit"},"small":{"w":340,"h":608,"resize":"fit"},"large":{"w":716,"h":1280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":621239803447676928,"id_str":"621239803447676928","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","url":"http:\/\/t.co\/Zy7uz8NKzn","display_url":"pic.twitter.com\/Zy7uz8NKzn","expanded_url":"http:\/\/twitter.com\/mirageX5\/status\/621240081521577984\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1073,"resize":"fit"},"small":{"w":340,"h":608,"resize":"fit"},"large":{"w":716,"h":1280,"resize":"fit"}},"video_info":{"aspect_ratio":[179,320],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/178x320\/FeS4cyCLfkJZlDe9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/716x1280\/MssK5XKDM1tChdvd.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/358x640\/kbgELWFM3QB7r3_O.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/358x640\/kbgELWFM3QB7r3_O.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/pl\/wZF4q4mfrnFoDLri.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/pl\/wZF4q4mfrnFoDLri.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mirageX5","name":"mirageX5","id":2990623405,"id_str":"2990623405","indices":[3,12]}],"symbols":[],"media":[{"id":621239803447676928,"id_str":"621239803447676928","indices":[50,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","url":"http:\/\/t.co\/Zy7uz8NKzn","display_url":"pic.twitter.com\/Zy7uz8NKzn","expanded_url":"http:\/\/twitter.com\/mirageX5\/status\/621240081521577984\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1073,"resize":"fit"},"small":{"w":340,"h":608,"resize":"fit"},"large":{"w":716,"h":1280,"resize":"fit"}},"source_status_id":621240081521577984,"source_status_id_str":"621240081521577984","source_user_id":2990623405,"source_user_id_str":"2990623405"}]},"extended_entities":{"media":[{"id":621239803447676928,"id_str":"621239803447676928","indices":[50,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/621239803447676928\/pu\/img\/qvCBTQcTpUQ8FeTi.jpg","url":"http:\/\/t.co\/Zy7uz8NKzn","display_url":"pic.twitter.com\/Zy7uz8NKzn","expanded_url":"http:\/\/twitter.com\/mirageX5\/status\/621240081521577984\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1073,"resize":"fit"},"small":{"w":340,"h":608,"resize":"fit"},"large":{"w":716,"h":1280,"resize":"fit"}},"source_status_id":621240081521577984,"source_status_id_str":"621240081521577984","source_user_id":2990623405,"source_user_id_str":"2990623405","video_info":{"aspect_ratio":[179,320],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/178x320\/FeS4cyCLfkJZlDe9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/716x1280\/MssK5XKDM1tChdvd.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/358x640\/kbgELWFM3QB7r3_O.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/vid\/358x640\/kbgELWFM3QB7r3_O.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/pl\/wZF4q4mfrnFoDLri.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/621239803447676928\/pu\/pl\/wZF4q4mfrnFoDLri.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768626688,"id_str":"663727728768626688","text":"RT @Sci_Taku: \u2022\uc624\uac1c\ub150 \ubc14\ub85c\uc7a1\uae30\n\n1. \ud613\ubc14\ub2e5\uc740 \ubd80\uc704\ubcc4\ub85c \ub290\ub07c\ub294 \ub9db\uc774 \ub2e4\ub974\ub2e4\n2. \uc2ec\uc7a5\uc740 \uc67c\ucabd\uc5d0 \uc788\ub2e4\n3. \ud608\uc561\ud615\ub9c8\ub2e4 \uc131\uaca9\uc774 \ub2e4\ub974\ub2e4\n\n\u2193\n\n1. \ubaa8\ub4e0 \ubd80\ubd84\uc774 \uac70\uc758 \ub3d9\uc77c\ud55c \uac10\uac01\uc744 \uac16\ub294\ub2e4\n2. \uac70\uc758 \uc815\uc911\uc559\uc5d0 \uc704\uce58\ud558\uace0 \uc57d\uac04 \uc88c\ub85c \uce58\uc6b0\uce68\n3. \ub4a4\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2240359567,"id_str":"2240359567","name":"\ube44\uc560","screen_name":"rolling12321","location":"\ub3c4\uc6c0!","url":null,"description":"\uadf8\ub798\uc694 \ub2c8\ucf54\ub9c8\ud0a4 * \ud5e4\ub354 : \ubc0d\uc874\uc798...\u2661 * \ud504\uc0ac : \ud391\uc874\uc798...\u2661","protected":false,"verified":false,"followers_count":772,"friends_count":263,"listed_count":10,"favourites_count":6443,"statuses_count":72122,"created_at":"Wed Dec 11 07:21:52 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662267321939980288\/BrMPAhiT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662267321939980288\/BrMPAhiT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240359567\/1442163820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:01:22 +0000 2015","id":663627423804616704,"id_str":"663627423804616704","text":"\u2022\uc624\uac1c\ub150 \ubc14\ub85c\uc7a1\uae30\n\n1. \ud613\ubc14\ub2e5\uc740 \ubd80\uc704\ubcc4\ub85c \ub290\ub07c\ub294 \ub9db\uc774 \ub2e4\ub974\ub2e4\n2. \uc2ec\uc7a5\uc740 \uc67c\ucabd\uc5d0 \uc788\ub2e4\n3. \ud608\uc561\ud615\ub9c8\ub2e4 \uc131\uaca9\uc774 \ub2e4\ub974\ub2e4\n\n\u2193\n\n1. \ubaa8\ub4e0 \ubd80\ubd84\uc774 \uac70\uc758 \ub3d9\uc77c\ud55c \uac10\uac01\uc744 \uac16\ub294\ub2e4\n2. \uac70\uc758 \uc815\uc911\uc559\uc5d0 \uc704\uce58\ud558\uace0 \uc57d\uac04 \uc88c\ub85c \uce58\uc6b0\uce68\n3. \ub4a4\uc9c4\ub2e4 \uc9c4\uc9dc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":513804934,"id_str":"513804934","name":"\uacfc\ud559\ub355\ud6c4","screen_name":"Sci_Taku","location":"Republic of Korea","url":null,"description":"\u0391 \u0392 \u0393 \u0394 \u0395 \u0396 \u0397 \u0398 \u0399 \u039a \u039b \u039c \u039d \u039e \u039f \u03a0 \u03a1 \u03a3 \u03a4 \u03a5 \u03a6 \u03a7 \u03a8 \u03a9 \u03b1 \u03b2 \u03b3 \u03b4 \u03b5 \u03b6 \u03b7 \u03b8 \u03b9 \u03ba \u03bb \u03bc \u03bd \u03be \u03bf \u03c0 \u03c1 \u03c3 \u03c4 \u03c5 \u03c6 \u03c7 \u03c8 \u03c9","protected":false,"verified":false,"followers_count":17669,"friends_count":58,"listed_count":288,"favourites_count":61,"statuses_count":376,"created_at":"Sun Mar 04 01:24:34 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662840599943340032\/8ld9aDUg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662840599943340032\/8ld9aDUg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/513804934\/1443482943","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2882,"favorite_count":204,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sci_Taku","name":"\uacfc\ud559\ub355\ud6c4","id":513804934,"id_str":"513804934","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728785424384,"id_str":"663727728785424384","text":"\u967d\u592a\u300c\u304a\u524d\u3089\u3055\u3041\u3001\u300c\u6b7b\u306d\u300d\u3063\u3066\u8a00\u308f\u308c\u3066\u5acc\u304b\u3082\u3057\u3093\u306a\u3044\u3051\u3069\u3055\u3001\u5c11\u3057\u3060\u3051\u5f85\u3063\u3066\u3002\n\u300e\u6b7b\u306d\u300f\u306f\u30ed\u30fc\u30de\u5b57\u3067\u306f\n\u300eSHINE\u300f\u3063\u3066\u66f8\u304f\u306e\u3002\n\u3053\u308c\u306f\u82f1\u8a9e\u3067\u300e\u8f1d\u304f\u300f\u3068\u3044\u3046\u610f\u5473\u3002\n\u3060\u304b\u3089\u3001\u53e3\u3067\u306f\u60aa\u304f\u8a00\u3063\u3066\u308b\u3088\u3046\u3067\u3001\n\u5fc3\u306e\u4e2d\u3067\u306f\u5fdc\u63f4\u3057\u3066\u308b\u3093\u3060\u305c\uff1f\n\n\u3093\u306a\u308f\u3051\u306d\u30fc\u3060\u308d\u6b7b\u306dwwww\u300d","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3186512466,"id_str":"3186512466","name":"\u6771\u4eac\u6297\u4e89bot","screen_name":"kou_sou_","location":null,"url":null,"description":"\u7686\u69d8\u306e\u30cd\u30bf\u63d0\u4f9b\u3067\u6210\u308a\u7acb\u3063\u3066\u3044\u308b\u6771\u4eac\u6297\u4e89bot\u3067\u3059\u3002DM\u3067\u3067\u3082\u30cd\u30bf\u3092\u304f\u3060\u3055\u3044\u3002bot\u3067\u51fa\u305f\u30cd\u30bf\u3092\u6f2b\u753b\u306b\u3057\u3066\u304f\u3060\u3055\u3063\u305f\u3089\u7686\u3067\u6ce3\u3044\u3066\u559c\u3073\u307e\u3059","protected":false,"verified":false,"followers_count":65,"friends_count":57,"listed_count":4,"favourites_count":4,"statuses_count":8605,"created_at":"Wed May 06 11:51:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596279127918841857\/1mFpjJBf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596279127918841857\/1mFpjJBf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996664"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728760262661,"id_str":"663727728760262661","text":"RT @Ieansquad: How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2762879972,"id_str":"2762879972","name":"Griffyn Holmes","screen_name":"griffynholmes","location":"Wisconsin, USA","url":null,"description":"snapchat-griffyn.holmes Defo","protected":false,"verified":false,"followers_count":313,"friends_count":309,"listed_count":1,"favourites_count":772,"statuses_count":370,"created_at":"Sun Aug 24 15:42:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658316941715615744\/o3vcUtxk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658316941715615744\/o3vcUtxk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2762879972\/1444704352","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 17 19:13:40 +0000 2015","id":611250376524730369,"id_str":"611250376524730369","text":"How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2496762631,"id_str":"2496762631","name":"Leansquad","screen_name":"Ieansquad","location":"DM for Promo","url":null,"description":"Unofficial Fan Account. Follow the squad: @leanandcuisine, @youfunnyb, @retro_spectro_ \nTurn on Notifications to be notified when new videos drop.","protected":false,"verified":false,"followers_count":156612,"friends_count":12,"listed_count":44,"favourites_count":12,"statuses_count":155,"created_at":"Thu May 15 17:02:05 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2496762631\/1431299803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19690,"favorite_count":19224,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ieansquad","name":"Leansquad","id":2496762631,"id_str":"2496762631","indices":[3,13]}],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996658"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781209600,"id_str":"663727728781209600","text":"@novitarri Mohon maaf, dpt diinformasikan data melalui DM seperti alamat lengkap, no. ID Pelanggan dan no. telp yang dapat dihubungi. (ncs)","source":"\u003ca href=\"http:\/\/www.cisco.com\/go\/socialminer\" rel=\"nofollow\"\u003eCisco SocialMiner\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716577762611200,"in_reply_to_status_id_str":"663716577762611200","in_reply_to_user_id":268275883,"in_reply_to_user_id_str":"268275883","in_reply_to_screen_name":"novitarri","user":{"id":558516132,"id_str":"558516132","name":"PT PLN (Persero)","screen_name":"pln_123","location":"Indonesia","url":"http:\/\/www.pln.co.id","description":"Official account of PT PLN (Persero)","protected":false,"verified":false,"followers_count":226129,"friends_count":29,"listed_count":378,"favourites_count":2,"statuses_count":652449,"created_at":"Fri Apr 20 08:14:21 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2947710442\/cfb8f817cf680937eef0e0d1fc035794_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2947710442\/cfb8f817cf680937eef0e0d1fc035794_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"novitarri","name":"Amrih novita \ub3d9\ubc29\uc2e0\uae30","id":268275883,"id_str":"268275883","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764559360,"id_str":"663727728764559360","text":"RT @atanasi_: #ImagineBaringo a county with all what you NEED #BEES2015 . Baringo simply the BEST of all counties.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3811587617,"id_str":"3811587617","name":"Governor B. Cheboi","screen_name":"GvnBaringo","location":"Kabarnet, Kenya","url":"http:\/\/www.baringo.go.ke","description":"The official twitter handle for Baringo Governor, Benjamin C. Cheboi, EBS. To lead is to serve.","protected":false,"verified":false,"followers_count":199,"friends_count":280,"listed_count":2,"favourites_count":4,"statuses_count":278,"created_at":"Tue Sep 29 05:58:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649271867891519489\/l-wAEafH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649271867891519489\/l-wAEafH.jpg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648740203704684544\/cwj_xS51_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648740203704684544\/cwj_xS51_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3811587617\/1445433953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:50:24 +0000 2015","id":663654863990095872,"id_str":"663654863990095872","text":"#ImagineBaringo a county with all what you NEED #BEES2015 . Baringo simply the BEST of all counties.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915253371,"id_str":"2915253371","name":"Atanas","screen_name":"atanasi_","location":" Kenya","url":"http:\/\/twiends.com\/atanasi_","description":"CHELSEA DIEHARD\/ \/ HASHTAG Dynasty\/\/ FOLLOWS YOU INSTANTANEOUSLY\/\/ antiracism antiFGM #ONLINEmarketer LOVES KENYANs& Kenya.\n\u260e\u260e 0715339776 \u260e \u260e","protected":false,"verified":false,"followers_count":13519,"friends_count":12206,"listed_count":12,"favourites_count":8397,"statuses_count":32526,"created_at":"Thu Dec 11 10:14:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661846779890151424\/-02I-qAb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661846779890151424\/-02I-qAb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915253371\/1445705358","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01e215db7136a37e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01e215db7136a37e.json","place_type":"city","name":"Nairobi","full_name":"Nairobi, Kenya","country_code":"KE","country":"Kenya","bounding_box":{"type":"Polygon","coordinates":[[[36.664573,-1.389053],[36.664573,-1.160674],[37.062667,-1.160674],[37.062667,-1.389053]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":0,"entities":{"hashtags":[{"text":"ImagineBaringo","indices":[0,15]},{"text":"BEES2015","indices":[48,57]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ImagineBaringo","indices":[14,29]},{"text":"BEES2015","indices":[62,71]}],"urls":[],"user_mentions":[{"screen_name":"atanasi_","name":"Atanas","id":2915253371,"id_str":"2915253371","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728785420288,"id_str":"663727728785420288","text":"@gk428425 \u30bf\u30fc\u30ec\u30b9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663615546156453888,"in_reply_to_status_id_str":"663615546156453888","in_reply_to_user_id":2529569798,"in_reply_to_user_id_str":"2529569798","in_reply_to_screen_name":"gk428425","user":{"id":2417605856,"id_str":"2417605856","name":"\u30bd\u30fc\u30de[B0D]@\u795e\u7cbe\u6a39\u30ec\u30bf\u30b9\u63d0\u7763","screen_name":"soma965","location":"\u4e01\u91cd\u306b\u304a\u65ad\u308a\u3059\u308b\uff65\uff65\uff65","url":null,"description":"\u6211\u30a1\u304c\u30b8\u30aa\u30f3\u306e\u79d1\u5b66\u529b\u306f\u5b87\u5b99\u4e00\u30a3\u30a3\u30a3\u30a3\u30a3\uff01\uff01 PSNID:nappy-24 \u611b\u6a5f:\u30c9\u30e0\u30c8\u30ed\u3001\u30a4\u30d5\u30ea\u30fc\u30c8\u6539 \u3084\u3063\u3066\u308b\u30b2\u30fc\u30e0 DDON\/\u30d0\u30c8\u30aa\u30da\/\u8266\u3053\u308c\/\u9244\u62f3\u30ec\u30dc\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\/MGSVTPP\/\u30d1\u30ba\u30c9\u30e9\/\u30e2\u30f3\u30b9\u30c8\/DB\u30c9\u30c3\u30ab\u30f3\u30d0\u30c8\u30eb\/FateGO\/\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9","protected":false,"verified":false,"followers_count":242,"friends_count":306,"listed_count":8,"favourites_count":2105,"statuses_count":5067,"created_at":"Sat Mar 29 15:47:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663409535567007744\/5jmOApeT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663409535567007744\/5jmOApeT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2417605856\/1446140283","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gk428425","name":"\u30ab\u30a4\u30c6\u30ad","id":2529569798,"id_str":"2529569798","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996664"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764411908,"id_str":"663727728764411908","text":"@yrya41 \uc57c\ud638-!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727022460399618,"in_reply_to_status_id_str":"663727022460399618","in_reply_to_user_id":2929645705,"in_reply_to_user_id_str":"2929645705","in_reply_to_screen_name":"yrya41","user":{"id":3039772292,"id_str":"3039772292","name":"\uae40\ud2f0\uc624\/ \u30c1\u30aa","screen_name":"kim_Ti_O","location":"\uafc8 \uc18d\uc5d0","url":null,"description":"[\uce5c\ubaa9\uacc4\/\ubcf8\uacc4\/\uc7a1\ub355\uacc4\/\uc624\ub108&\uc790\uce90 \uacf5\uc874\uacc4]\/\ud578\ub4dc\ud3f0 \uadf8\ub9bc\uc7c1\uc774\/\uc544\ud504\ub9ac\uce74\ud2f0\ube44 \uc2dc\uccad\uc790\/\uc8fc\uc27d \uc0ac\ub791\ud574\uc6a9\/\uc7a1\ub355\/\n\uac00\ub054 \ub178\ub798 \ubd80\ub978\uac70 \uc62c\ub9bd\ub2c8\ub2e4 \uc8fc\uc758\ud558\uc138\uc694..\n\/ \uce74\ud0c0\uce74\ub098\ub85c \ud2f0\uc624\u27a1\u30c1\u30aa\/\uae40\ud210\ub77c\uace0 \ubd80\ub974\uc154\ub3c4 \ub429\ub2c8\ub2e4.\/[2015.11.09]\u2665: @chaser_wulryo","protected":false,"verified":false,"followers_count":694,"friends_count":2123,"listed_count":5,"favourites_count":27121,"statuses_count":51491,"created_at":"Tue Feb 24 14:48:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662672786008047616\/-fUjER3F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662672786008047616\/-fUjER3F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039772292\/1443946022","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yrya41","name":"\ub9c8\ub974\uc2a4 \ub2e4\ub9ac\ud138 \uc54c\ub78d\u2665\uc720\ub9ac\uc544","id":2929645705,"id_str":"2929645705","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079996659"} +{"delete":{"status":{"id":607567986308677632,"id_str":"607567986308677632","user_id":517498485,"user_id_str":"517498485"},"timestamp_ms":"1447079996785"}} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768647170,"id_str":"663727728768647170","text":"You are chosen to play the role of a highly skilled diplomat t... More for Capricorn https:\/\/t.co\/enVoKBnEUg","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":993282631,"id_str":"993282631","name":"Ni\u00f1a\u2661\u062a","screen_name":"ninyaaangelica","location":"Philippines","url":"http:\/\/instagram.com\/ninyang7","description":"18. Bitch with an attitude. Act like a LADY. Think like a BOSS \\m\/. \u2665","protected":false,"verified":false,"followers_count":193,"friends_count":179,"listed_count":3,"favourites_count":94,"statuses_count":4125,"created_at":"Thu Dec 06 15:23:37 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000346537300\/ac4e9633671b8fb0f24defb8db43666a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000346537300\/ac4e9633671b8fb0f24defb8db43666a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/993282631\/1374276643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/enVoKBnEUg","expanded_url":"http:\/\/bit.ly\/A5KmeJ","display_url":"bit.ly\/A5KmeJ","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728789581824,"id_str":"663727728789581824","text":"@ADC72264 \u300c\u3055\u3066\u3001\u4ffa\u305f\u3061\u3082\u4ed5\u4e8b\u3092\u30fb\u30fb\u30fb\u3002\u300d\u4f55\u306e\u4ed5\u4e8b\u3067\u3059\u304b\uff1f\u300c\u3042\u30fb\u30fb\u30fb\u3002\u300d","source":"\u003ca href=\"http:\/\/yaplog.jp\/chrono-time\/\" rel=\"nofollow\"\u003echrono-time\u306e\u7aef\u672b\uff08Win10:Ver.2015\uff09\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726618871918592,"in_reply_to_status_id_str":"663726618871918592","in_reply_to_user_id":524930281,"in_reply_to_user_id_str":"524930281","in_reply_to_screen_name":"ADC72264","user":{"id":732740810,"id_str":"732740810","name":"chrono-time(sub-bot)","screen_name":"chrono_time_bot","location":"\u3069\u3053\u304b\u306b\u3044\u308b\u304b\u3082\u3057\u308c\u306a\u3044\uff08\u305f\u3076\u3093\uff09","url":"http:\/\/twpf.jp\/chrono_time","description":"\u4ffa\u305f\u3061\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u3066\u3001\u76f8\u68d2(@chrono_time)\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u306a\u3044\u4eba\u306f\u30d6\u30ed\u30c3\u30af\u3059\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3002\n\u4e00\u5fdc\u6328\u62f6\u3068\u6642\u5831\u3050\u3089\u3044\u306f\u3067\u304d\u308b\u3051\u3069\u3001\u898f\u5236\u304c\u304b\u304b\u308b\u53ef\u80fd\u6027\u304c\u5927\u304d\u3044\u3089\u3057\u3044\u3002\n\n---\n\n\u3054\u610f\u898b\u3001\u3054\u8981\u671b\u306f\u3053\u3061\u3089\u3002\uff08\u30d5\u30a9\u30ed\u30fc\u63a8\u5968\u3067\u3059\u3002\uff09\n@chrono_time","protected":false,"verified":false,"followers_count":5167,"friends_count":3207,"listed_count":29,"favourites_count":0,"statuses_count":1460366,"created_at":"Thu Aug 02 12:22:53 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569483152683315200\/_jQ3MAPO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569483152683315200\/_jQ3MAPO_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ADC72264","name":"\u8eca\u3000\u76f4\u6a39","id":524930281,"id_str":"524930281","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996665"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781230080,"id_str":"663727728781230080","text":"@abdulrahman97 of course. Serius best although aku tak pernah follow Naruto series before","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712650451259392,"in_reply_to_status_id_str":"663712650451259392","in_reply_to_user_id":179485687,"in_reply_to_user_id_str":"179485687","in_reply_to_screen_name":"abdulrahman97","user":{"id":2316946213,"id_str":"2316946213","name":"wafiy","screen_name":"waflyy","location":"Malacca, Malaysia","url":null,"description":"Not easy to be deciphered I am","protected":false,"verified":false,"followers_count":263,"friends_count":211,"listed_count":0,"favourites_count":309,"statuses_count":2762,"created_at":"Wed Jan 29 10:55:03 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177793728\/zTcYG1MB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177793728\/zTcYG1MB.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657985626088673280\/DojBzRwE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657985626088673280\/DojBzRwE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316946213\/1437309309","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abdulrahman97","name":"Abdul Rahman Zakaria","id":179485687,"id_str":"179485687","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764391425,"id_str":"663727728764391425","text":"@Cobalt_NTASD \ubb50....\uadf8\ub7f0 \uc758\ubbf8\ub294 \uc544\ub2c8\uc9c0\ub9cc..? \uc790\ub124\ub294 \ub108\ubb34 \ub531\ub531\ud574\uc11c \uc8fc\ubcc0\uc0ac\ub78c\uc744 \ubd88\ud3b8\ud558\uac8c \ud558\ub294 \uacbd\ud5a5\uc774 \uc787\ub2e8 \uc18c\ub9ac\uc600\ub124! \ubb50 \uadf8\uac8c \ub098\uc05c\uac74 \uc544\ub2c8\uc9c0\ub9cc! \ub108\ubb34 \uc790\uc2e0\uc744 \ubab0\uc544\uc138\uc6b0\uace0 \uc788\ub294\uac8c \uc544\ub2cc\uac00 \uc2f6\uc5b4\uc11c \ub9d0\uc77c\uc138!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727119063584768,"in_reply_to_status_id_str":"663727119063584768","in_reply_to_user_id":4125296833,"in_reply_to_user_id_str":"4125296833","in_reply_to_screen_name":"Cobalt_NTASD","user":{"id":4179541934,"id_str":"4179541934","name":"\ub354\uae00\ub7ec\uc2a4","screen_name":"Douglas_NTASD","location":"\ub364\uc2a4\ud2b8\ub7ad","url":"http:\/\/cafe.naver.com\/ntasdragon\/65","description":null,"protected":false,"verified":false,"followers_count":18,"friends_count":32,"listed_count":0,"favourites_count":0,"statuses_count":37,"created_at":"Mon Nov 09 13:18:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707617735282688\/BUbiV7xz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707617735282688\/BUbiV7xz_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cobalt_NTASD","name":"\ube45\ud130 \ucf54\ubc1c\ud2b8","id":4125296833,"id_str":"4125296833","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728772780032,"id_str":"663727728772780032","text":"RT @asa10_y: \u5c0f\u91ce\u7530\u3001\u5dfb\u5cf6\u3001\u5bd2\u54b2\u3055\u3093\u3002\n\u5168\u90e8\u7e4b\u304c\u3063\u3066\u308b\u3093\u3060\u3068\u601d\u3046\uff01\n\u7d20\u6575\u306a\u3053\u3068\u3060\u3002 https:\/\/t.co\/xEBqmcBVnV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188355873,"id_str":"188355873","name":"\u307d\u307d\u3063\u3051","screen_name":"sd_km","location":"\u660e\u592a\u5b50\u770c\u6c11","url":"http:\/\/www.pixiv.net\/member.php?id=2382579","description":"\u26a0\ufe0f\u9b3c\u306b\u91d1\u68d2\u3001\u5dfb\u5cf6\u306b\u30da\u30da\u30ed\u30fc\u30b7\u30e7\u30f3\u26a0\ufe0f\u6bce\u65e5\u6771\u5dfb\u3092\u6319\u5f0f\u3055\u305b\u308b\u4ef2\u4eba\u30d0\u30d0\u30a2(\u6210\u4eba\u6e08) \u30e9\u30eb\u30aa\u30bf \u8c4a\u81e3\u8ecd\u7af9\u4e2d\u534a\u5175\u885b\u6559 \u3046\u305f\u30d7\u30ea\u5fa1\u66f9\u53f8\u62c5 \u7d2b\u6c37 http:\/\/twpf.jp\/sd_km","protected":false,"verified":false,"followers_count":2823,"friends_count":346,"listed_count":83,"favourites_count":5798,"statuses_count":52423,"created_at":"Wed Sep 08 14:54:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663400847364108288\/WeoAuiGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663400847364108288\/WeoAuiGO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188355873\/1442063857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:10 +0000 2015","id":663723255614717954,"id_str":"663723255614717954","text":"\u5c0f\u91ce\u7530\u3001\u5dfb\u5cf6\u3001\u5bd2\u54b2\u3055\u3093\u3002\n\u5168\u90e8\u7e4b\u304c\u3063\u3066\u308b\u3093\u3060\u3068\u601d\u3046\uff01\n\u7d20\u6575\u306a\u3053\u3068\u3060\u3002 https:\/\/t.co\/xEBqmcBVnV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4002479900,"id_str":"4002479900","name":"\u5b89\u91cc \u52c7\u54c9\u3010TOKYO\u6d41\u661f\u7fa4\u3011","screen_name":"asa10_y","location":null,"url":"http:\/\/ameblo.jp\/yu-yaasato\/","description":"\u65b0\u611f\u899a\u30a8\u30f3\u30bf\u30fc\u30c6\u30a4\u30e1\u30f3\u30c8\u30b7\u30e7\u30fc\u30dc\u30fc\u30a4\u30ba\u3001TOKYO\u6d41\u661f\u7fa4\u30e1\u30f3\u30d0\u30fc\u3002\u821e\u53f0\u300e\u5f31\u866b\u30da\u30c0\u30eb\u300f\u5bd2\u54b2\u901a\u53f8\u5f79\u3067\u51fa\u6f14\u4e2d\u3002 \u30eb\u30d3\u30fc\u30d1\u30ec\u30fc\u30c9\u6240\u5c5e\u3002\u6c96\u7e04\u770c\u51fa\u8eab\u3002\u306a\u3093\u304f\u308b\u306a\u3044\u3055\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":3122,"friends_count":15,"listed_count":184,"favourites_count":0,"statuses_count":65,"created_at":"Sat Oct 24 13:04:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657915192915853314\/5tI4hEFf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657915192915853314\/5tI4hEFf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4002479900\/1445696094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":334,"favorite_count":603,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723239303065600,"id_str":"663723239303065600","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","url":"https:\/\/t.co\/xEBqmcBVnV","display_url":"pic.twitter.com\/xEBqmcBVnV","expanded_url":"http:\/\/twitter.com\/asa10_y\/status\/663723255614717954\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723239303065600,"id_str":"663723239303065600","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","url":"https:\/\/t.co\/xEBqmcBVnV","display_url":"pic.twitter.com\/xEBqmcBVnV","expanded_url":"http:\/\/twitter.com\/asa10_y\/status\/663723255614717954\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asa10_y","name":"\u5b89\u91cc \u52c7\u54c9\u3010TOKYO\u6d41\u661f\u7fa4\u3011","id":4002479900,"id_str":"4002479900","indices":[3,11]}],"symbols":[],"media":[{"id":663723239303065600,"id_str":"663723239303065600","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","url":"https:\/\/t.co\/xEBqmcBVnV","display_url":"pic.twitter.com\/xEBqmcBVnV","expanded_url":"http:\/\/twitter.com\/asa10_y\/status\/663723255614717954\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663723255614717954,"source_status_id_str":"663723255614717954","source_user_id":4002479900,"source_user_id_str":"4002479900"}]},"extended_entities":{"media":[{"id":663723239303065600,"id_str":"663723239303065600","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYExQPUsAADick.jpg","url":"https:\/\/t.co\/xEBqmcBVnV","display_url":"pic.twitter.com\/xEBqmcBVnV","expanded_url":"http:\/\/twitter.com\/asa10_y\/status\/663723255614717954\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663723255614717954,"source_status_id_str":"663723255614717954","source_user_id":4002479900,"source_user_id_str":"4002479900"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996661"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728785358849,"id_str":"663727728785358849","text":"\u0641\u064a\u062f\u064a\u0648 .. \u0633\u0642\u0648\u0637 \u0645\u0627\u064a\u0627 \u062f\u064a\u0627\u0628 \u0639\u0644\u0649\u00a0\u0627\u0644\u0647\u0648\u0627\u0621 https:\/\/t.co\/hhO0jzmTjL","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2149864804,"id_str":"2149864804","name":"\u0645\u062f\u0648\u0646\u0629 \u0634\u062e\u0627\u0628\u064a\u0637","screen_name":"shkaabet","location":"Kuwait","url":"http:\/\/www.shkhaabeet.com","description":null,"protected":false,"verified":false,"followers_count":83594,"friends_count":67239,"listed_count":77,"favourites_count":0,"statuses_count":4650,"created_at":"Wed Oct 23 18:31:22 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614889129562628096\/oBS1Erpp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614889129562628096\/oBS1Erpp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2149864804\/1435435968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hhO0jzmTjL","expanded_url":"http:\/\/shkhaabeet.com\/4735\/","display_url":"shkhaabeet.com\/4735\/","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079996664"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756064256,"id_str":"663727728756064256","text":"@karen143xx \u304b\u308c\u3093\uff01\u4e45\u3005\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718816069775360,"in_reply_to_status_id_str":"663718816069775360","in_reply_to_user_id":2584208953,"in_reply_to_user_id_str":"2584208953","in_reply_to_screen_name":"karen143xx","user":{"id":2653119001,"id_str":"2653119001","name":"#YUSUKE","screen_name":"ysk_line","location":"JAPAN Nara.Osaka \u201cfollow me\u201d","url":null,"description":"#Fashion #Summer #CYBERJAPAN #\u7acb\u82b1\u4e9c\u91ce\u82bd","protected":false,"verified":false,"followers_count":911,"friends_count":721,"listed_count":4,"favourites_count":4408,"statuses_count":8291,"created_at":"Thu Jul 17 07:06:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626611624342740992\/Z24XDxV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626611624342740992\/Z24XDxV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2653119001\/1445086774","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"karen143xx","name":"karen hirosawa","id":2584208953,"id_str":"2584208953","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781230081,"id_str":"663727728781230081","text":"Pasear por las agradables calles de Zacatl\u00e1n #PueblosM\u00e1gicos, admirando sus magn\u00edficos templos https:\/\/t.co\/wyCbfXASjd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244694769,"id_str":"244694769","name":"SEDIFPuebla","screen_name":"SEDIFPuebla","location":null,"url":null,"description":"El Sistema Estatal del Desarrollo Integral de la Familia (SEDIF) se encarga de coordinar y promover el desarrollo de las familias y la comunidad poblana.","protected":false,"verified":false,"followers_count":11295,"friends_count":443,"listed_count":61,"favourites_count":210,"statuses_count":21425,"created_at":"Sat Jan 29 22:41:43 +0000 2011","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172196001\/jDw_ZZF-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172196001\/jDw_ZZF-.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663072561454968832\/8Nh98_5N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663072561454968832\/8Nh98_5N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244694769\/1446923774","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PueblosM\u00e1gicos","indices":[45,60]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727708023590912,"id_str":"663727708023590912","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1XhUkAA1Oub.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1XhUkAA1Oub.jpg","url":"https:\/\/t.co\/wyCbfXASjd","display_url":"pic.twitter.com\/wyCbfXASjd","expanded_url":"http:\/\/twitter.com\/SEDIFPuebla\/status\/663727728781230081\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"large":{"w":1024,"h":686,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727708023590912,"id_str":"663727708023590912","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1XhUkAA1Oub.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1XhUkAA1Oub.jpg","url":"https:\/\/t.co\/wyCbfXASjd","display_url":"pic.twitter.com\/wyCbfXASjd","expanded_url":"http:\/\/twitter.com\/SEDIFPuebla\/status\/663727728781230081\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"large":{"w":1024,"h":686,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768610305,"id_str":"663727728768610305","text":"You can be overly generous in your encouragement of your assoc... More for Virgo https:\/\/t.co\/38rkrqKVqt","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1688808036,"id_str":"1688808036","name":"Olivia","screen_name":"OliviaDol","location":null,"url":null,"description":"if i'm weird with you i'm comfortable with you","protected":false,"verified":false,"followers_count":261,"friends_count":320,"listed_count":1,"favourites_count":1676,"statuses_count":2153,"created_at":"Wed Aug 21 17:36:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656499458792923136\/imjdLR6m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656499458792923136\/imjdLR6m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1688808036\/1403094048","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/38rkrqKVqt","expanded_url":"http:\/\/bit.ly\/A7Cwfs","display_url":"bit.ly\/A7Cwfs","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079996660"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728781168640,"id_str":"663727728781168640","text":"@tottsuan_o \u308f\u3056\u308f\u3056\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711290007818240,"in_reply_to_status_id_str":"663711290007818240","in_reply_to_user_id":584892542,"in_reply_to_user_id_str":"584892542","in_reply_to_screen_name":"tottsuan_o","user":{"id":3897911772,"id_str":"3897911772","name":"shiro","screen_name":"song_f_me","location":null,"url":null,"description":"\u5927\u91ce\u667a\u306e\u30c0\u30f3\u30b9\u3068\u6b4c\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u5927\u4eba\u3002\u305f\u3060\u3044\u307e\u30c4\u30a2\u30fc\u4e2d\u3002","protected":false,"verified":false,"followers_count":10,"friends_count":4,"listed_count":0,"favourites_count":35,"statuses_count":38,"created_at":"Thu Oct 15 02:19:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727290354823168\/nlg4n1QL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727290354823168\/nlg4n1QL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3897911772\/1447079890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tottsuan_o","name":"\u3068\u3063\u3064\u3041\u3093","id":584892542,"id_str":"584892542","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996663"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728764424192,"id_str":"663727728764424192","text":"RT @kiwami_douga: \u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\n\n\u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\n\n\u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\nhttp:\/\/t.co\/w4PhL9AWEk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2705735412,"id_str":"2705735412","name":"\u79cb\u5c71 \u79c0\u592a","screen_name":"DxSyu","location":null,"url":null,"description":"\u5c0f\u5c71\u4e8c\u4e2d\/\u4e09\u5e74\/\u79cb\u5c71\u79c0\u592a\/\u6803\u6728\u4e0b\u91ce\u30ea\u30c8\u30eb\u30b7\u30cb\u30a2\/\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":618,"friends_count":433,"listed_count":1,"favourites_count":2314,"statuses_count":5141,"created_at":"Mon Aug 04 05:28:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350390088335361\/wma5th5n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350390088335361\/wma5th5n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2705735412\/1443535701","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 22 12:42:15 +0000 2015","id":623835445063892992,"id_str":"623835445063892992","text":"\u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\n\n\u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\n\n\u3010\u901f\u5831\u3011\u306a\u3044\u3082\u306e\u306d\u3060\u308a\u306e\u51c4\u3044\u30ab\u30d0\u30fc\u3092\u3059\u308b\u30a4\u30b1\u30e1\u30f3\u96c6\u56e3\u73fe\u308b\nhttp:\/\/t.co\/w4PhL9AWEk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2838740270,"id_str":"2838740270","name":"\u6975\u52d5\u753b -KIWAMI-","screen_name":"kiwami_douga","location":"Tokyo, Japan KIWAMI.com","url":null,"description":"\u3053\u306e\u4e16\u306e\u6d41\u884c\u3092\u6975\u3081\u305f\u6700\u65b0\u306e\u304a\u3082\u3057\u308d\u52d5\u753b\u3092\u3044\u3061\u65e9\u304f\u304a\u77e5\u3089\u305b\u3057\u307e\u3059\u3002\u6975\u3081\u3066\u308b\u3068\u601d\u3063\u305f\u3089\u4eca\u3059\u3050RT!!!! \u3010\u6d41\u884c\u3092\u6975\u3081\u305f\u6700\u65b0\u306etwitter\u30e1\u30c7\u30a3\u30a2\uff01\uff01\uff01\uff01\u2606\u3011 \u203btwitter\u898f\u7d04\u306b\u5f93\u3044\u30b9\u30d1\u30e0Tweet\u3092\u4e00\u5207\u884c\u3044\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":67679,"friends_count":8776,"listed_count":30,"favourites_count":4,"statuses_count":273,"created_at":"Fri Oct 03 06:23:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630002887800680448\/Hdxtd5xb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630002887800680448\/Hdxtd5xb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838740270\/1435284448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1615,"favorite_count":3147,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":623835109397934081,"id_str":"623835109397934081","indices":[89,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","url":"http:\/\/t.co\/w4PhL9AWEk","display_url":"pic.twitter.com\/w4PhL9AWEk","expanded_url":"http:\/\/twitter.com\/twi_tenkomori\/status\/623835216184934400\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":623835216184934400,"source_status_id_str":"623835216184934400","source_user_id":1131385736,"source_user_id_str":"1131385736"}]},"extended_entities":{"media":[{"id":623835109397934081,"id_str":"623835109397934081","indices":[89,111],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","url":"http:\/\/t.co\/w4PhL9AWEk","display_url":"pic.twitter.com\/w4PhL9AWEk","expanded_url":"http:\/\/twitter.com\/twi_tenkomori\/status\/623835216184934400\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":623835216184934400,"source_status_id_str":"623835216184934400","source_user_id":1131385736,"source_user_id_str":"1131385736","video_info":{"aspect_ratio":[1,1],"duration_millis":23533,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/240x240\/TyZm7NkKyCbyRB2I.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/pl\/6vOYACtiZDNbMiH6.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/480x480\/0vLFJXYAZmj_6ltT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/pl\/6vOYACtiZDNbMiH6.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/480x480\/0vLFJXYAZmj_6ltT.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kiwami_douga","name":"\u6975\u52d5\u753b -KIWAMI-","id":2838740270,"id_str":"2838740270","indices":[3,16]}],"symbols":[],"media":[{"id":623835109397934081,"id_str":"623835109397934081","indices":[107,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","url":"http:\/\/t.co\/w4PhL9AWEk","display_url":"pic.twitter.com\/w4PhL9AWEk","expanded_url":"http:\/\/twitter.com\/twi_tenkomori\/status\/623835216184934400\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":623835216184934400,"source_status_id_str":"623835216184934400","source_user_id":1131385736,"source_user_id_str":"1131385736"}]},"extended_entities":{"media":[{"id":623835109397934081,"id_str":"623835109397934081","indices":[107,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/623835109397934081\/pu\/img\/xTGc0SZ_xKCMF3Li.jpg","url":"http:\/\/t.co\/w4PhL9AWEk","display_url":"pic.twitter.com\/w4PhL9AWEk","expanded_url":"http:\/\/twitter.com\/twi_tenkomori\/status\/623835216184934400\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":623835216184934400,"source_status_id_str":"623835216184934400","source_user_id":1131385736,"source_user_id_str":"1131385736","video_info":{"aspect_ratio":[1,1],"duration_millis":23533,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/240x240\/TyZm7NkKyCbyRB2I.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/pl\/6vOYACtiZDNbMiH6.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/480x480\/0vLFJXYAZmj_6ltT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/pl\/6vOYACtiZDNbMiH6.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/623835109397934081\/pu\/vid\/480x480\/0vLFJXYAZmj_6ltT.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996659"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756043776,"id_str":"663727728756043776","text":"RT @gsamiazpy: \u2605\u2605\u2605\u6765\u9031\u306e\u30b9\u30de\u30b9\u30de\u306f\u2605\u2605\u2605\n\n\u3010\u30b7\u30e3\u30c3\u30d5\u30eb\u30d3\u30b9\u30c8\u30ed\u7b2c\uff13\u5f3e\u3011\n\n\u3064\u3044\u306b\u6728\u6751\u62d3\u54c9\u304c\u30d3\u30b9\u30c8\u30ed\u6765\u5e97\n\u4e2d\u5c45\u3068\u306eW\u30c7\u30fc\u30c8\u30cd\u30bf\u66b4\u9732\u3084\n\u30af\u30a4\u30ba\u6728\u6751\u62d3\u54c9\u3082\uff01\n\n#\u30b9\u30de\u30b9\u30de #fujitv #SMAP \n#\u6728\u6751\u62d3\u54c9 #\u30ad\u30e0\u30bf\u30af https:\/\/t.co\/7Z990g\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1363647109,"id_str":"1363647109","name":"\u2729\u307e\u30ea\u3053\u2729\u3061\u3043\u3061\u3083\u3093\u2661","screen_name":"Maaaari223","location":"\u611b\u3057\u306e\u3061\u3043\u3061\u3083\u3093\u2661","url":"http:\/\/twpf.jp\/Maaaari223","description":"\u30a4\u30b1\u30e1\u30f3\u306e\u5208\u308a\u4e0a\u3052\u304c\u5927\u597d\u7269\u3067\u3059\u2661\u81ea\u3089\u3082\u5208\u308a\u4e0a\u3052\u3066\u307e\u3059\u2661KAT-TUN K\u62c5\u3001\u5d50 S.S\u526f\u62c5\u3002\u30d0\u30ec\u30fc\u65e5\u672c\u4ee3\u8868\u77f3\u5ddd\u7950\u5e0c\u304f\u3093\u304c\u597d\u304d\u3067\u3059\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3078\u3002 q\u9b42\u25bc5.95.10\u2661\u5d50\u25bdBlast09.20 \u3061\u3043\u3061\u3083\u3093\u306f\u79c1\u306e\u6240\u6709\u7269\u2661( \u00b4\u0348 \u03c9 `\u0348 )\u0a6d \u548c\u304f\u3093\u306e\u80cc\u4e2d\u306e\u7aaa\u307f\u62c5","protected":false,"verified":false,"followers_count":192,"friends_count":268,"listed_count":0,"favourites_count":15430,"statuses_count":55904,"created_at":"Fri Apr 19 05:20:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650691666479714304\/pshOOUkQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650691666479714304\/pshOOUkQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1363647109\/1443882764","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:36 +0000 2015","id":663717579676975104,"id_str":"663717579676975104","text":"\u2605\u2605\u2605\u6765\u9031\u306e\u30b9\u30de\u30b9\u30de\u306f\u2605\u2605\u2605\n\n\u3010\u30b7\u30e3\u30c3\u30d5\u30eb\u30d3\u30b9\u30c8\u30ed\u7b2c\uff13\u5f3e\u3011\n\n\u3064\u3044\u306b\u6728\u6751\u62d3\u54c9\u304c\u30d3\u30b9\u30c8\u30ed\u6765\u5e97\n\u4e2d\u5c45\u3068\u306eW\u30c7\u30fc\u30c8\u30cd\u30bf\u66b4\u9732\u3084\n\u30af\u30a4\u30ba\u6728\u6751\u62d3\u54c9\u3082\uff01\n\n#\u30b9\u30de\u30b9\u30de #fujitv #SMAP \n#\u6728\u6751\u62d3\u54c9 #\u30ad\u30e0\u30bf\u30af https:\/\/t.co\/7Z990g31Ma","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1065032100,"id_str":"1065032100","name":"MASSARTHUR\u534d\u7121\u9650\u306e\u4f4f\u4eba\u534d","screen_name":"gsamiazpy","location":"\u65e5\u672c","url":null,"description":"O\u578b\uff0f\u3055\u305d\u308a\u5ea7\uff0f\u30aa\u30b9\uff0f\u4eba\u9593\u3068\u3057\u3066SMAP\u3092\u3001 \u7537\u3068\u3057\u3066\u6728\u6751\u62d3\u54c9\u3092\u5c0a\u656c\u3057\u3066\u307e\u3059\u3002\uff0f\u304a\u7b11\u3044\uff1a\u30c0\u30a6\u30f3\u30bf\u30a6\u30f3\uff0fF1\uff1a\u30e9\u30a4\u30b3\u30cd\u30f3\uff0f \u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\uff01","protected":false,"verified":false,"followers_count":4586,"friends_count":2704,"listed_count":37,"favourites_count":1582,"statuses_count":7915,"created_at":"Sun Jan 06 07:35:11 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663402094733295616\/L2TmpD6d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663402094733295616\/L2TmpD6d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1065032100\/1445647587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":103,"entities":{"hashtags":[{"text":"\u30b9\u30de\u30b9\u30de","indices":[72,77]},{"text":"fujitv","indices":[78,85]},{"text":"SMAP","indices":[86,91]},{"text":"\u6728\u6751\u62d3\u54c9","indices":[93,98]},{"text":"\u30ad\u30e0\u30bf\u30af","indices":[99,104]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717569874948096,"id_str":"663717569874948096","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"large":{"w":787,"h":423,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717569874948096,"id_str":"663717569874948096","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"large":{"w":787,"h":423,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}},{"id":663717569916874754,"id_str":"663717569916874754","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQIUsAIIcRl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQIUsAIIcRl.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":787,"h":441,"resize":"fit"}}},{"id":663717569946226689,"id_str":"663717569946226689","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQPUkAE6awm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQPUkAE6awm.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"},"large":{"w":608,"h":327,"resize":"fit"}}},{"id":663717569992364032,"id_str":"663717569992364032","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQaUkAA3OmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQaUkAA3OmG.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"},"large":{"w":606,"h":326,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b9\u30de\u30b9\u30de","indices":[87,92]},{"text":"fujitv","indices":[93,100]},{"text":"SMAP","indices":[101,106]},{"text":"\u6728\u6751\u62d3\u54c9","indices":[108,113]},{"text":"\u30ad\u30e0\u30bf\u30af","indices":[114,119]}],"urls":[],"user_mentions":[{"screen_name":"gsamiazpy","name":"MASSARTHUR\u534d\u7121\u9650\u306e\u4f4f\u4eba\u534d","id":1065032100,"id_str":"1065032100","indices":[3,13]}],"symbols":[],"media":[{"id":663717569874948096,"id_str":"663717569874948096","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"large":{"w":787,"h":423,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663717579676975104,"source_status_id_str":"663717579676975104","source_user_id":1065032100,"source_user_id_str":"1065032100"}]},"extended_entities":{"media":[{"id":663717569874948096,"id_str":"663717569874948096","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nP-U8AAjTt6.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"large":{"w":787,"h":423,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663717579676975104,"source_status_id_str":"663717579676975104","source_user_id":1065032100,"source_user_id_str":"1065032100"},{"id":663717569916874754,"id_str":"663717569916874754","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQIUsAIIcRl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQIUsAIIcRl.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":787,"h":441,"resize":"fit"}},"source_status_id":663717579676975104,"source_status_id_str":"663717579676975104","source_user_id":1065032100,"source_user_id_str":"1065032100"},{"id":663717569946226689,"id_str":"663717569946226689","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQPUkAE6awm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQPUkAE6awm.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"},"large":{"w":608,"h":327,"resize":"fit"}},"source_status_id":663717579676975104,"source_status_id_str":"663717579676975104","source_user_id":1065032100,"source_user_id_str":"1065032100"},{"id":663717569992364032,"id_str":"663717569992364032","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_nQaUkAA3OmG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_nQaUkAA3OmG.jpg","url":"https:\/\/t.co\/7Z990g31Ma","display_url":"pic.twitter.com\/7Z990g31Ma","expanded_url":"http:\/\/twitter.com\/gsamiazpy\/status\/663717579676975104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"},"large":{"w":606,"h":326,"resize":"fit"}},"source_status_id":663717579676975104,"source_status_id_str":"663717579676975104","source_user_id":1065032100,"source_user_id_str":"1065032100"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728756043777,"id_str":"663727728756043777","text":"@kamisiru777 \u305d\u308c\n\u308f\u3044\u3082\u6b32\u3057\u3044\n\u30cf\u30a4\u30ec\u30be\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/hamoooooon\/\" rel=\"nofollow\"\u003ehamoooooon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727661194199040,"in_reply_to_status_id_str":"663727661194199040","in_reply_to_user_id":3085695354,"in_reply_to_user_id_str":"3085695354","in_reply_to_screen_name":"kamisiru777","user":{"id":766630086,"id_str":"766630086","name":"\u30d9\u30fc\u30bf","screen_name":"wa2saekano","location":"\u5927\u962a","url":null,"description":"loveuper\/pooler\/\u51b4\u3048\u5f7c\/WA2\/\u304b\u305a\u3055\u6d3e","protected":false,"verified":false,"followers_count":117,"friends_count":112,"listed_count":3,"favourites_count":378,"statuses_count":45554,"created_at":"Sun Aug 19 00:37:15 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662411853012688897\/6NSYl22k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662411853012688897\/6NSYl22k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766630086\/1430923786","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kamisiru777","name":"\u3089(\u3044\u3060\u30fc)","id":3085695354,"id_str":"3085695354","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996657"} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728760258560,"id_str":"663727728760258560","text":"\u4eca\u65e5\u306e\u9774\u3061\u3087\u30fc\u53ef\u611b\u3044\u3051\u3069\u30d2\u30fc\u30eb\u9ad8\u3059\u304e\u3066\u8db3\u3081\u3063\u3061\u3083\u3044\u305f\u306a\u308b\u3046 https:\/\/t.co\/5V06hMf4dL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3437406853,"id_str":"3437406853","name":"\u308b\u3046\u3074\u3087\u3093","screen_name":"ru__tn","location":"\u3074\u3083\u308b\u305f\u3093\u306f\u65e6\u90a3\u69d8\u2661 ","url":null,"description":"\u3042\u306b\u3081\u3068\u304a\u6b4c\u304c\u3059\u304d\u306a\u3081\u308b\u3078\u3093\u304d\u3061\u304c\u3044\u3084\u308d\u3046\u3002","protected":false,"verified":false,"followers_count":574,"friends_count":39,"listed_count":7,"favourites_count":198,"statuses_count":737,"created_at":"Thu Sep 03 13:40:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642910395959668736\/HAhVA4zH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642910395959668736\/HAhVA4zH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3437406853\/1441288193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727719394316289,"id_str":"663727719394316289","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2B4UEAEe6PS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2B4UEAEe6PS.jpg","url":"https:\/\/t.co\/5V06hMf4dL","display_url":"pic.twitter.com\/5V06hMf4dL","expanded_url":"http:\/\/twitter.com\/ru__tn\/status\/663727728760258560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727719394316289,"id_str":"663727719394316289","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2B4UEAEe6PS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2B4UEAEe6PS.jpg","url":"https:\/\/t.co\/5V06hMf4dL","display_url":"pic.twitter.com\/5V06hMf4dL","expanded_url":"http:\/\/twitter.com\/ru__tn\/status\/663727728760258560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996658"} +{"delete":{"status":{"id":663289088464785408,"id_str":"663289088464785408","user_id":3888129432,"user_id_str":"3888129432"},"timestamp_ms":"1447079997033"}} +{"delete":{"status":{"id":663723287004844032,"id_str":"663723287004844032","user_id":2682120156,"user_id_str":"2682120156"},"timestamp_ms":"1447079997084"}} +{"delete":{"status":{"id":661487911737552896,"id_str":"661487911737552896","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447079997043"}} +{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728768585730,"id_str":"663727728768585730","text":"\u3053\u308c\u306f2\u5206\u3067\u63cf\u3044\u305f\u304b\u3089\u6c5a\u3044\u3051\u3069\u524d\u9aea\u306f\u3053\u3046\u306a\u3093\u3060\u3088\u3067\u3082\u3055\u3063\u304d\u306e\u306f\u9055\u3046\u3093\u3060\u3088 https:\/\/t.co\/tC9y54nPVW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949227407,"id_str":"2949227407","name":"\u767d\u72d0\u2605","screen_name":"l6tmjmrjttpj61","location":"\u611b\u77e5\u770c","url":"http:\/\/twpf.jp\/l6tmjmrjttpj61","description":"*\u9632\u885b\u90e8\u30af\u30e9\u30b9\u30bf*K\u30af\u30e9\u30b9\u30bf*\u30b2\u30fc\u30e0\u5b9f\u6cc1\u8005\u6cbc*\u5922\u30ad\u30e3\u30b9\u6cbc*\u30a2\u30cb\u30e1\/\u58f0\u512a\/\u5b9f\u6cc1\u8005\uff08\u7279\u306bP-P\u3055\u3093\u3068\u30d5\u30b8\u3055\u3093\uff09\/\u30dd\u30b1\u30e2\u30f3\uff08\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\uff09\/\u30dc\u30ab\u30ed\/\u30de\u30f3\u30ac\/\u30db\u30e9\u30b2\u30fc\/\u97f3\u30b2\u30fc\/\u30e1\u30ac\u30cd\/\u30e4\u30f3\u30c7\u30ec\n\u30e1\u30ac\u30cd\u30d5\u30a7\u30c1\u3067\u3059\u3002\n\u9b3c\u6012\u5ddd\u71b1\u53f2\u3092\u611b\u3057\u3066\u308b\n\u9632\u885b\u90e82\u671f\u304a\u3081\u3067\u3068\u3046\n\u203b\u30a2\u30a4\u30b3\u30f3\u81ea\u4f5c\u203b\n\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u8aad\u3093\u3067\u304f\u308c\u308b\u3068\u52a9\u304b\u308a\u307e\u3059\u21ca","protected":false,"verified":false,"followers_count":1809,"friends_count":1948,"listed_count":32,"favourites_count":7854,"statuses_count":9263,"created_at":"Mon Dec 29 05:31:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660563795379531777\/oPgJ3ZZf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660563795379531777\/oPgJ3ZZf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949227407\/1445608964","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727726071689216,"id_str":"663727726071689216","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2awUsAAy2Bn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2awUsAAy2Bn.jpg","url":"https:\/\/t.co\/tC9y54nPVW","display_url":"pic.twitter.com\/tC9y54nPVW","expanded_url":"http:\/\/twitter.com\/l6tmjmrjttpj61\/status\/663727728768585730\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":696,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727726071689216,"id_str":"663727726071689216","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2awUsAAy2Bn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2awUsAAy2Bn.jpg","url":"https:\/\/t.co\/tC9y54nPVW","display_url":"pic.twitter.com\/tC9y54nPVW","expanded_url":"http:\/\/twitter.com\/l6tmjmrjttpj61\/status\/663727728768585730\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":696,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079996660"} +{"delete":{"status":{"id":663727527429595136,"id_str":"663727527429595136","user_id":2972296565,"user_id_str":"2972296565"},"timestamp_ms":"1447079997310"}} +{"delete":{"status":{"id":663717909894553601,"id_str":"663717909894553601","user_id":2773334623,"user_id_str":"2773334623"},"timestamp_ms":"1447079997429"}} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732983992320,"id_str":"663727732983992320","text":"\"*DarD e DiL Ki DaaSTaaN SuNaai'N kis Ko,\n+\n \"HEEEEErrr\"\n+\n,\"\"*YaHaN To Sb BeWafai K MaaaarY Hain...!","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2823289206,"id_str":"2823289206","name":"Ishq_be_prwah","screen_name":"Sweeet_Poetry","location":"Gujranwala Peoples Colony ","url":"http:\/\/umarsaifyahoo.com","description":"Kbi kisi ka Barosa na torna .........","protected":false,"verified":false,"followers_count":90,"friends_count":7,"listed_count":0,"favourites_count":0,"statuses_count":3153,"created_at":"Sun Sep 21 03:40:59 +0000 2014","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572714858718560256\/cZZ_C3CA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572714858718560256\/cZZ_C3CA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2823289206\/1416649515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732963045376,"id_str":"663727732963045376","text":"Necesito ver scouts guide to the zombie apocalypse, si ya con el trailer me estaba muriendo jaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83633887,"id_str":"83633887","name":"Luis Rafael Morales","screen_name":"malditocabashoo","location":"hyrule","url":"http:\/\/www.twitter.com\/luiskballito","description":"De sangre vinotinto no roja, adicto al olor de la gasolina, futuro biomedico de la repubilca y que la fuerza te acompa\u00f1e.","protected":false,"verified":false,"followers_count":451,"friends_count":335,"listed_count":2,"favourites_count":64,"statuses_count":27882,"created_at":"Mon Oct 19 16:22:32 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586715334\/r8k10c2i6jt6i0hi6bfu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586715334\/r8k10c2i6jt6i0hi6bfu.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"8A8F96","profile_sidebar_fill_color":"D2D5D6","profile_text_color":"010D0F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655898457941680129\/MO_2vmoV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655898457941680129\/MO_2vmoV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83633887\/1348190623","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971409409,"id_str":"663727732971409409","text":"RT @HechosConAmor: Mientras llegas a tu destino disfruta del camino.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2379270774,"id_str":"2379270774","name":"noemi","screen_name":"lobato_noemi","location":null,"url":null,"description":"dice que un clavo saca a otro clavo pero eso solo rima. madurar es dejar ir lo que nunca a echo falta","protected":false,"verified":false,"followers_count":254,"friends_count":428,"listed_count":0,"favourites_count":991,"statuses_count":1412,"created_at":"Sat Mar 08 20:32:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570953551612153858\/goQ7F5p0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570953551612153858\/goQ7F5p0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2379270774\/1424960884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:02 +0000 2015","id":663695039478890496,"id_str":"663695039478890496","text":"Mientras llegas a tu destino disfruta del camino.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eSoloFrases\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148513350,"id_str":"148513350","name":"Amor \u2661","screen_name":"HechosConAmor","location":"solo chicas --","url":"http:\/\/www.secretosdelamoda.com","description":"El amor no tiene cura, pero es la \u00fanica cura para todos los males. Si te identificas con nuestras frases.","protected":false,"verified":false,"followers_count":1703524,"friends_count":88,"listed_count":1916,"favourites_count":1586,"statuses_count":26086,"created_at":"Wed May 26 22:20:09 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCF9F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853987324\/fd335f4e480ae124d1e759b732c77a8b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853987324\/fd335f4e480ae124d1e759b732c77a8b.png","profile_background_tile":true,"profile_link_color":"E35685","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444890708546035713\/9-SsBf3t_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444890708546035713\/9-SsBf3t_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148513350\/1369863544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":104,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HechosConAmor","name":"Amor \u2661","id":148513350,"id_str":"148513350","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997662"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958863360,"id_str":"663727732958863360","text":"RT @VIPDJz: #DJs check out AHOLLA (@AHOLLANYC) \u2013 \u201cPolitically Incorrect\u201d https:\/\/t.co\/xF7L9mbCOa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149246077,"id_str":"4149246077","name":"lair chernak","screen_name":"lairchernake6","location":"Limburg","url":null,"description":"Zwart God bericht onafhankelijk en kritisch over pop, kunst, cltuur en media in (Zuid)Limburg maar schroomt niet om geogrfische grenzen te overschrijden.","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":15,"statuses_count":33,"created_at":"Mon Nov 09 13:01:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724669460160512\/ykVHCw_R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724669460160512\/ykVHCw_R_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:07 +0000 2015","id":663717205238878208,"id_str":"663717205238878208","text":"#DJs check out AHOLLA (@AHOLLANYC) \u2013 \u201cPolitically Incorrect\u201d https:\/\/t.co\/xF7L9mbCOa","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321479267,"id_str":"321479267","name":"VIPDJz","screen_name":"VIPDJz","location":null,"url":"http:\/\/www.vipdjz.com","description":"Servicing music by select artists to Blogs, Magazines, Media & DJs. Awarded Level 2 on @fiverr with an exclusive package for independent artists.","protected":false,"verified":false,"followers_count":20613,"friends_count":760,"listed_count":66,"favourites_count":141,"statuses_count":25448,"created_at":"Tue Jun 21 16:56:40 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/384120908\/torq_control_vinyl_v2008.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/384120908\/torq_control_vinyl_v2008.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636589125387337728\/Fy1ZgepY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636589125387337728\/Fy1ZgepY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321479267\/1405699285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":13,"entities":{"hashtags":[{"text":"DJs","indices":[0,4]}],"urls":[{"url":"https:\/\/t.co\/xF7L9mbCOa","expanded_url":"http:\/\/dlvr.it\/ChdldJ","display_url":"dlvr.it\/ChdldJ","indices":[61,84]}],"user_mentions":[{"screen_name":"ahollaNYC","name":"aholla*","id":172871572,"id_str":"172871572","indices":[23,33]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DJs","indices":[12,16]}],"urls":[{"url":"https:\/\/t.co\/xF7L9mbCOa","expanded_url":"http:\/\/dlvr.it\/ChdldJ","display_url":"dlvr.it\/ChdldJ","indices":[73,96]}],"user_mentions":[{"screen_name":"VIPDJz","name":"VIPDJz","id":321479267,"id_str":"321479267","indices":[3,10]},{"screen_name":"ahollaNYC","name":"aholla*","id":172871572,"id_str":"172871572","indices":[35,45]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975644672,"id_str":"663727732975644672","text":"RT @Body_Tattoos: These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3961457052,"id_str":"3961457052","name":"Camilla Butler","screen_name":"CamillaSunny","location":"Florida, USA","url":null,"description":"Juris Doctor Candidate","protected":false,"verified":false,"followers_count":60,"friends_count":0,"listed_count":6,"favourites_count":6658,"statuses_count":8380,"created_at":"Tue Oct 20 20:12:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656564205215051776\/CF7Gmv7R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656564205215051776\/CF7Gmv7R_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:34 +0000 2015","id":663726125600886784,"id_str":"663726125600886784","text":"These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236446485,"id_str":"3236446485","name":"Body Tattoos","screen_name":"Body_Tattoos","location":"Las Vegas, NV","url":"http:\/\/body-tattoos.com","description":"Thousands of tattoo pictures, Body Art Tattoos, Tattoo Pictures, Latest Tattooo Designs at http:\/\/body-tattoos.com","protected":false,"verified":false,"followers_count":94821,"friends_count":1158,"listed_count":3,"favourites_count":2,"statuses_count":378,"created_at":"Tue May 05 18:17:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236446485\/1446612867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2243,"favorite_count":1423,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[91,114]}],"user_mentions":[{"screen_name":"Body_Tattoos","name":"Body Tattoos","id":3236446485,"id_str":"3236446485","indices":[3,16]}],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732984053761,"id_str":"663727732984053761","text":"\u30d5\u30a7\u30a4\u30b9\u30aa\u30d5\u306e\u969b\u306b\u9078\u624b\u306f\u8db3\u3084\u4f53\u3092\u52d5\u304b\u3059\u3053\u3068\u306f\u3067\u304d\u308b\u304c\u3001\u3053\u306e\u52d5\u304d\u304c\u30b0\u30e9\u30d6\u3001\u30af\u30ed\u30b9\u3092\u52d5\u304b\u3059\u3053\u3068\u306b\u306a\u3063\u3066\u306f\u306a\u3089\u306a\u3044\u3002\n\n\u25cb\n\u30bb\u30c3\u30c8\u304b\u3089\u958b\u59cb\u306e\u7b1b\u304c\u9cf4\u308b\u307e\u3067\u306e\u9593\u306e\u8a71","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990602723,"id_str":"2990602723","name":"\u5be9\u5224\u8a66\u9a13\u5bfe\u7b56BOT","screen_name":"bot_zebra","location":null,"url":null,"description":"\u3010\u5b8c\u5168\u975e\u516c\u5f0f\u3011\u5317\u304b\u3089\u5be9\u5224\u3092\u76db\u308a\u4e0a\u3052\u3088\u3046\n\u7b54\u9593\u9055\u3048\u3066\u3066\u3082\u77e5\u308a\u307e\u305b\u3093\u3002\n\u5fc5\u305a\u30eb\u30fc\u30eb\u30d6\u30c3\u30af\u3068\u7167\u3089\u3057\u5408\u308f\u305b\u3066\u78ba\u8a8d\u3092\u3002\n3\u7d1a\u8a66\u9a13\u306f1\u3064\u306e\u554f\u984c\u304c1\u3064\u306e\u30eb\u30fc\u30eb\u30681\u5bfe1\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002\n\u554f\u984c\u6587\u304c\u3069\u306e\u30eb\u30fc\u30eb\u3092\u6307\u3057\u3066\u3044\u308b\u304b\u8003\u3048\u308b\u3068\u70b9\u6570\u304c\u53d6\u308a\u3084\u3059\u304f\u306a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":152,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":5010,"created_at":"Tue Jan 20 03:05:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732954701825,"id_str":"663727732954701825","text":"annoyed \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":394965141,"id_str":"394965141","name":"\u2653\ufe0f","screen_name":"gottigottti","location":"Pittsburgh, PA","url":"https:\/\/styleseat.com\/gottihair","description":"A Stilleto In A Room Full Of Flats","protected":false,"verified":false,"followers_count":1424,"friends_count":869,"listed_count":0,"favourites_count":517,"statuses_count":33831,"created_at":"Thu Oct 20 22:23:57 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF0FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542148159040790528\/R4dKJmum.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542148159040790528\/R4dKJmum.jpeg","profile_background_tile":true,"profile_link_color":"F052CB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6D8D8","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659532054426755073\/TBoIGOM-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659532054426755073\/TBoIGOM-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394965141\/1441673660","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997658"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958752768,"id_str":"663727732958752768","text":"RT @9313STB: '\n \n\u3054\u3061\u3083\u6df7\u305c\u306e\u611b\u3092\u57cb\u3081\u3066\n\u3054\u3061\u3083\u6df7\u305c\u306e\u7b11\u3044\u3092\u6df7\u305c\u8fbc\u3093\u3067\n \n\uff08 Stellar MinHee Bot \uff09\n\n #RT\u3057\u305fbot\u3068\u307a\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f\n #RT\u3057\u305fbot\u3068\u30da\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f\n\n' https:\/\/t.co\/ZGNSktIFg5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4169116218,"id_str":"4169116218","name":"\u91d1\u73c9\u594e","screen_name":"mng97bt","location":null,"url":null,"description":"mingyu from seventeen \/ bot","protected":false,"verified":false,"followers_count":17,"friends_count":17,"listed_count":0,"favourites_count":0,"statuses_count":69,"created_at":"Sun Nov 08 14:50:42 +0000 2015","utc_offset":-32400,"time_zone":"GMT+9","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663626517507760128\/TYpS4xLW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663626517507760128\/TYpS4xLW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4169116218\/1447055866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:45 +0000 2015","id":663702766628421632,"id_str":"663702766628421632","text":"'\n \n\u3054\u3061\u3083\u6df7\u305c\u306e\u611b\u3092\u57cb\u3081\u3066\n\u3054\u3061\u3083\u6df7\u305c\u306e\u7b11\u3044\u3092\u6df7\u305c\u8fbc\u3093\u3067\n \n\uff08 Stellar MinHee Bot \uff09\n\n #RT\u3057\u305fbot\u3068\u307a\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f\n #RT\u3057\u305fbot\u3068\u30da\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f\n\n' https:\/\/t.co\/ZGNSktIFg5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2215799450,"id_str":"2215799450","name":"\u6731\u654f\u5e0c","screen_name":"9313STB","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":46,"listed_count":0,"favourites_count":63,"statuses_count":4221,"created_at":"Tue Nov 26 14:17:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661850679036645376\/_5J7OfZS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661850679036645376\/_5J7OfZS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2215799450\/1446632473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305fbot\u3068\u307a\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f","indices":[58,75]},{"text":"RT\u3057\u305fbot\u3068\u30da\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f","indices":[77,94]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663702749264003073,"id_str":"663702749264003073","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","url":"https:\/\/t.co\/ZGNSktIFg5","display_url":"pic.twitter.com\/ZGNSktIFg5","expanded_url":"http:\/\/twitter.com\/9313STB\/status\/663702766628421632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":515,"h":425,"resize":"fit"},"medium":{"w":515,"h":425,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702749264003073,"id_str":"663702749264003073","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","url":"https:\/\/t.co\/ZGNSktIFg5","display_url":"pic.twitter.com\/ZGNSktIFg5","expanded_url":"http:\/\/twitter.com\/9313STB\/status\/663702766628421632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":515,"h":425,"resize":"fit"},"medium":{"w":515,"h":425,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305fbot\u3068\u307a\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f","indices":[71,88]},{"text":"RT\u3057\u305fbot\u3068\u30da\u30f3\u3092\u8fce\u3048\u306b\u3044\u304f","indices":[90,107]}],"urls":[],"user_mentions":[{"screen_name":"9313STB","name":"\u6731\u654f\u5e0c","id":2215799450,"id_str":"2215799450","indices":[3,11]}],"symbols":[],"media":[{"id":663702749264003073,"id_str":"663702749264003073","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","url":"https:\/\/t.co\/ZGNSktIFg5","display_url":"pic.twitter.com\/ZGNSktIFg5","expanded_url":"http:\/\/twitter.com\/9313STB\/status\/663702766628421632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":515,"h":425,"resize":"fit"},"medium":{"w":515,"h":425,"resize":"fit"}},"source_status_id":663702766628421632,"source_status_id_str":"663702766628421632","source_user_id":2215799450,"source_user_id_str":"2215799450"}]},"extended_entities":{"media":[{"id":663702749264003073,"id_str":"663702749264003073","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyIk5UwAEw2Tl.jpg","url":"https:\/\/t.co\/ZGNSktIFg5","display_url":"pic.twitter.com\/ZGNSktIFg5","expanded_url":"http:\/\/twitter.com\/9313STB\/status\/663702766628421632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":515,"h":425,"resize":"fit"},"medium":{"w":515,"h":425,"resize":"fit"}},"source_status_id":663702766628421632,"source_status_id_str":"663702766628421632","source_user_id":2215799450,"source_user_id_str":"2215799450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950347776,"id_str":"663727732950347776","text":"I'm a dirty skeleton fucker","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":634054333,"id_str":"634054333","name":"Frankie","screen_name":"FrankiShepard","location":"The Ocean","url":null,"description":"I am Queen Frankie RadShark the Fricker Fracker. Sometimes a Shark, sometimes a fluffy hyena. I love floofy tails and sharp teefs \u2661 ~Kik: sharkfuzz ~","protected":false,"verified":false,"followers_count":55,"friends_count":86,"listed_count":1,"favourites_count":514,"statuses_count":1326,"created_at":"Thu Jul 12 21:10:46 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727680928350208\/7QOdsiYB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727680928350208\/7QOdsiYB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/634054333\/1372701896","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732963057664,"id_str":"663727732963057664","text":"RT @blcmk: \ud83c\udf0aWOMP FOLLOW TRICK\ud83c\udf0a\n\nRetweet se vuoi aumentare i tuoi followers segui tutti quelli che ritwittano segui quelli che ti seguiranno\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":316054117,"id_str":"316054117","name":"PIETRO","screen_name":"ziamsincer","location":null,"url":"http:\/\/smarturl.it\/1DmitamDXiT","description":"whatever gurl, liam and zayn are my parents","protected":false,"verified":false,"followers_count":52524,"friends_count":20409,"listed_count":68,"favourites_count":13282,"statuses_count":305679,"created_at":"Sun Jun 12 21:38:15 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/525004203387678721\/xRoxcl50.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/525004203387678721\/xRoxcl50.jpeg","profile_background_tile":false,"profile_link_color":"222222","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663530769185447936\/wD2ukX6g_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663530769185447936\/wD2ukX6g_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:22 +0000 2015","id":663725069768749056,"id_str":"663725069768749056","text":"\ud83c\udf0aWOMP FOLLOW TRICK\ud83c\udf0a\n\nRetweet se vuoi aumentare i tuoi followers segui tutti quelli che ritwittano segui quelli che ti seguiranno\n\nfunziona","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459599920,"id_str":"459599920","name":"\/\/ C A P P Y \/\/","screen_name":"blcmk","location":null,"url":"https:\/\/twitter.com\/blcmk\/status\/620312354790735872","description":"se stai leggendo ti mando un abbraccio","protected":false,"verified":false,"followers_count":96608,"friends_count":33442,"listed_count":450,"favourites_count":54411,"statuses_count":65770,"created_at":"Mon Jan 09 21:11:24 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575318622748344320\/9ha_DWKY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575318622748344320\/9ha_DWKY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459599920\/1446759585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1948,"favorite_count":356,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blcmk","name":"\/\/ C A P P Y \/\/","id":459599920,"id_str":"459599920","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950454272,"id_str":"663727732950454272","text":"RT @Londonist: Which is the most common bird in London? Answer here: https:\/\/t.co\/xfxSBgNtkE https:\/\/t.co\/fCyDTn5G2E","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3884530113,"id_str":"3884530113","name":"Ellie_B","screen_name":"Go_Slow_Go_20","location":"Wanstead, London","url":null,"description":"Rallying support for 20's plenty where people live..go20..safer cycling and more greenways in Wanstead..protection of native British wildlife..living streets.","protected":false,"verified":false,"followers_count":7,"friends_count":35,"listed_count":3,"favourites_count":59,"statuses_count":230,"created_at":"Tue Oct 06 22:48:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651531710925012996\/UXtkgLcb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651531710925012996\/UXtkgLcb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3884530113\/1444172351","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:05:18 +0000 2015","id":663703910931132417,"id_str":"663703910931132417","text":"Which is the most common bird in London? Answer here: https:\/\/t.co\/xfxSBgNtkE https:\/\/t.co\/fCyDTn5G2E","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":806133,"id_str":"806133","name":"Londonist","screen_name":"Londonist","location":"London","url":"http:\/\/londonist.com","description":"London news, London events, London features, London people","protected":false,"verified":false,"followers_count":553996,"friends_count":3645,"listed_count":5748,"favourites_count":1562,"statuses_count":49376,"created_at":"Fri Mar 02 14:09:54 +0000 2007","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/779310041\/9b4c603c6ba4ad5ee98c8752f254578b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/779310041\/9b4c603c6ba4ad5ee98c8752f254578b.jpeg","profile_background_tile":true,"profile_link_color":"004A99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000044611675\/41feabeb1c7bc5decaba42a6efa7b52c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000044611675\/41feabeb1c7bc5decaba42a6efa7b52c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806133\/1436522986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":10,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xfxSBgNtkE","expanded_url":"http:\/\/buff.ly\/20GqZ2T","display_url":"buff.ly\/20GqZ2T","indices":[54,77]}],"user_mentions":[],"symbols":[],"media":[{"id":663703910608146432,"id_str":"663703910608146432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","url":"https:\/\/t.co\/fCyDTn5G2E","display_url":"pic.twitter.com\/fCyDTn5G2E","expanded_url":"http:\/\/twitter.com\/Londonist\/status\/663703910931132417\/photo\/1","type":"photo","sizes":{"large":{"w":730,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703910608146432,"id_str":"663703910608146432","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","url":"https:\/\/t.co\/fCyDTn5G2E","display_url":"pic.twitter.com\/fCyDTn5G2E","expanded_url":"http:\/\/twitter.com\/Londonist\/status\/663703910931132417\/photo\/1","type":"photo","sizes":{"large":{"w":730,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xfxSBgNtkE","expanded_url":"http:\/\/buff.ly\/20GqZ2T","display_url":"buff.ly\/20GqZ2T","indices":[69,92]}],"user_mentions":[{"screen_name":"Londonist","name":"Londonist","id":806133,"id_str":"806133","indices":[3,13]}],"symbols":[],"media":[{"id":663703910608146432,"id_str":"663703910608146432","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","url":"https:\/\/t.co\/fCyDTn5G2E","display_url":"pic.twitter.com\/fCyDTn5G2E","expanded_url":"http:\/\/twitter.com\/Londonist\/status\/663703910931132417\/photo\/1","type":"photo","sizes":{"large":{"w":730,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}},"source_status_id":663703910931132417,"source_status_id_str":"663703910931132417","source_user_id":806133,"source_user_id_str":"806133"}]},"extended_entities":{"media":[{"id":663703910608146432,"id_str":"663703910608146432","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzMLPWEAAWYt4.jpg","url":"https:\/\/t.co\/fCyDTn5G2E","display_url":"pic.twitter.com\/fCyDTn5G2E","expanded_url":"http:\/\/twitter.com\/Londonist\/status\/663703910931132417\/photo\/1","type":"photo","sizes":{"large":{"w":730,"h":562,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}},"source_status_id":663703910931132417,"source_status_id_str":"663703910931132417","source_user_id":806133,"source_user_id_str":"806133"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971409408,"id_str":"663727732971409408","text":"RT @WillyrexYT: Minecraft | LOS QU\u00cdMICOS!! c\/ Vegetta | Minijuego BUILD BATTLE https:\/\/t.co\/oG8MmUEKxd v\u00eda @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3854827978,"id_str":"3854827978","name":"R U B E L A N G E L","screen_name":"RUBENselaCOMEE","location":null,"url":null,"description":"Mirko Argentino Amor a los Youtubers \u2764 Bendito sea el f\u00fatbol \u26bd CARP_Alario_Ponzio FCB_Messi_Neymar_ Entrenador Pok\u00e8mon _ Amo el Verde _Anime_Juegos c:","protected":false,"verified":false,"followers_count":528,"friends_count":476,"listed_count":1,"favourites_count":2703,"statuses_count":2646,"created_at":"Sat Oct 03 18:50:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650464073461682176\/BOHhogWC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650464073461682176\/BOHhogWC.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660532986270584833\/DiixL2mF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660532986270584833\/DiixL2mF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3854827978\/1446782843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 23:29:00 +0000 2015","id":663136096671375360,"id_str":"663136096671375360","text":"Minecraft | LOS QU\u00cdMICOS!! c\/ Vegetta | Minijuego BUILD BATTLE https:\/\/t.co\/oG8MmUEKxd v\u00eda @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230377004,"id_str":"230377004","name":"Willyrex","screen_name":"WillyrexYT","location":"Espa\u00f1a\/Los Angeles","url":"https:\/\/www.youtube.com\/TheWillyrex","description":"Subiendo un video diario desde 10\/2010. 22 A\u00f1os. \u00bfEres un Batracio? S\u00edgueme!! Youtube: http:\/\/www.youtube.com\/Willyrex Business: Willyrex@vizz-agency.com","protected":false,"verified":true,"followers_count":2743292,"friends_count":161,"listed_count":5117,"favourites_count":4786,"statuses_count":28364,"created_at":"Sat Dec 25 07:24:26 +0000 2010","utc_offset":3600,"time_zone":"Brussels","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"FFA200","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592699371923361795\/_04OBiPp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592699371923361795\/_04OBiPp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230377004\/1424537252","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":386,"favorite_count":2131,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oG8MmUEKxd","expanded_url":"https:\/\/youtu.be\/E7NAQQAPeso","display_url":"youtu.be\/E7NAQQAPeso","indices":[63,86]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[91,99]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oG8MmUEKxd","expanded_url":"https:\/\/youtu.be\/E7NAQQAPeso","display_url":"youtu.be\/E7NAQQAPeso","indices":[79,102]}],"user_mentions":[{"screen_name":"WillyrexYT","name":"Willyrex","id":230377004,"id_str":"230377004","indices":[3,14]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[107,115]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997662"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967149572,"id_str":"663727732967149572","text":"RT @deamarella_p: Kasih love now!\ud83d\udc95\ud83d\ude1d","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2172066667,"id_str":"2172066667","name":"S A N","screen_name":"F_Sandi20","location":"Cirebon, Indonesia","url":"http:\/\/www.jkt48.com","description":"ordinary person who wants to be successful\u263a\r\nNgidol @officialJKT48 \r\n| @shaniaJKT48 | \r\n@N_ShaniJKT48 | \u2665 \u2665\r\n#DarekaNoShanjuShani","protected":false,"verified":false,"followers_count":1054,"friends_count":671,"listed_count":20,"favourites_count":754,"statuses_count":18658,"created_at":"Sun Nov 03 12:08:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603729307488256001\/B8uPcGiv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603729307488256001\/B8uPcGiv.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660800395065827329\/lM_HkRC2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660800395065827329\/lM_HkRC2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2172066667\/1444704387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:26 +0000 2015","id":663727352602456066,"id_str":"663727352602456066","text":"Kasih love now!\ud83d\udc95\ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281071260,"id_str":"3281071260","name":"Dea Marella Purnomo","screen_name":"deamarella_p","location":"your heart","url":null,"description":"Hallo !! salam kenal ^^)\/ | Ordinary girl | ask.fm : dmarellala | ig: deamarella03","protected":false,"verified":false,"followers_count":5753,"friends_count":218,"listed_count":14,"favourites_count":12790,"statuses_count":6379,"created_at":"Thu Jul 16 01:40:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661428147678670848\/y68MawXy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661428147678670848\/y68MawXy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281071260\/1442379727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"deamarella_p","name":"Dea Marella Purnomo","id":3281071260,"id_str":"3281071260","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732979851265,"id_str":"663727732979851265","text":"RT @An_141: - https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378347157,"id_str":"378347157","name":"\u0639\u0644\u064a \u0627\u0644\u0645\u0646\u0647\u0628\u064a","screen_name":"ali_mnhaby","location":"\u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629","url":null,"description":"\u0643\u0627\u062a\u0628 \u0631\u064a\u0627\u0636\u064a . \u0623\u0628\u0648 \u062f\u064a\u0645","protected":false,"verified":false,"followers_count":18263,"friends_count":745,"listed_count":161,"favourites_count":199,"statuses_count":45608,"created_at":"Fri Sep 23 01:48:15 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643513830363017216\/qSUota1e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643513830363017216\/qSUota1e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378347157\/1376109550","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:58 +0000 2015","id":663727486031822848,"id_str":"663727486031822848","text":"- https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577121968,"id_str":"577121968","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","screen_name":"An_141","location":"Riyadh","url":"http:\/\/ask.fm\/iAn141","description":"\u0623\u062e\u0628\u062b \u0645\u0645\u0627 \u062a\u0638\u064f\u0646\u060c \u0648\u0623\u0641\u0636\u0644 \u0645\u0645\u0627 \u062a\u062a\u0648\u0642\u0639 SnapChat\/Kik : An_141 \u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a : ads.an141@gmail.com","protected":false,"verified":false,"followers_count":179881,"friends_count":398,"listed_count":332,"favourites_count":967,"statuses_count":28930,"created_at":"Fri May 11 13:04:40 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577121968\/1445965875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727458366136320,"id_str":"663727458366136320","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}}},{"id":663727458680729601,"id_str":"663727458680729601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663727458806575104,"id_str":"663727458806575104","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[3,10]}],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458366136320,"id_str":"663727458366136320","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458680729601,"id_str":"663727458680729601","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458806575104,"id_str":"663727458806575104","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079997664"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732979822592,"id_str":"663727732979822592","text":"RT @1msrkian1: STORM #DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112214311,"id_str":"3112214311","name":"SRK Pride Of INDIA\u2665","screen_name":"SRKsDieHardFan","location":"Srk's Country","url":"http:\/\/instagram.com\/srksdiehardfan","description":"\u03b9 \u03b1\u043c \u0257\u03b9\u0454 \u043d\u03b1\u0280\u0257 \u0257\u03b9\u2113\u03c9\u03b1\u03b1\u2113\u0454 \u0280\u03b1\u0454\u0454\u0455 \u0192\u03b1\u03b7 \u03c3\u0192 \u043a\u03b9\u03b7g @iamsrk.. \u03b9 \u043d\u03b1\u0442\u0454 \u0442\u043d\u03c3\u0455\u0454 \u03c9\u043d\u03c3 \u043d\u03b1\u0442\u0454 \u0455\u0280\u043a :D \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0455\u0280\u043a \u03b9 \u03c9\u03b9\u2113\u2113 \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0443\u03c3\u03c5 :) \u0257\u03c3\u03b7'\u0442 \u043d\u03c5\u0280\u0442 \u0455\u0280\u043a \u03b9\u0442\u0455 \u03b9\u03b7\u029d\u03c5\u0280\u03b9\u0454\u0455 \u0442\u03c3 \u0443\u03c3\u03c5\u0280 \u043d\u0454\u03b1\u2113\u0442\u043d","protected":false,"verified":false,"followers_count":163,"friends_count":117,"listed_count":0,"favourites_count":2592,"statuses_count":5644,"created_at":"Sat Mar 28 04:58:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112214311\/1444733481","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:15 +0000 2015","id":663724536035053568,"id_str":"663724536035053568","text":"STORM #DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035243914,"id_str":"4035243914","name":"\u092c\u093e\u0926\u0936\u093e\u0939","screen_name":"1msrkian1","location":null,"url":null,"description":"SRK RULES... ........ 1msrkian , Vsrkian...","protected":false,"verified":false,"followers_count":41,"friends_count":26,"listed_count":1,"favourites_count":3,"statuses_count":1622,"created_at":"Tue Oct 27 12:10:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661864444905963520\/Ns-Lw75C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661864444905963520\/Ns-Lw75C_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[6,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[21,47]}],"urls":[],"user_mentions":[{"screen_name":"1msrkian1","name":"\u092c\u093e\u0926\u0936\u093e\u0939","id":4035243914,"id_str":"4035243914","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997664"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950474752,"id_str":"663727732950474752","text":"\u043c\u0433\u0445\u0430\u0437\u0438","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164958549,"id_str":"2164958549","name":"\u253cRASKOLNIKOV\u253c","screen_name":"EvdokimovLesha","location":"\u0420\u043e\u0441\u0441\u0438\u044f, \u0433.\u0412\u043e\u043b\u0433\u043e\u0433\u0440\u0430\u0434","url":"http:\/\/vk.com\/dumaj.golovoy","description":"\u0423\u0447\u0443 \u043c\u044b\u0441\u043b\u0438\u0442\u044c \u043a\u0440\u0438\u0442\u0438\u0447\u043d\u043e. \u0421\u043f\u0430\u0441\u0438\u0442\u0435\u043b\u044c. \u041f\u0435\u0442\u0440\u043e\u0441\u044f\u043d. \u0413\u0435\u043d\u0438\u0439. \u0411\u043e\u0441\u0441. \u042d\u043a\u0441\u043f\u0435\u0440\u0442","protected":false,"verified":false,"followers_count":2001,"friends_count":39,"listed_count":0,"favourites_count":886,"statuses_count":9912,"created_at":"Sat Nov 02 15:00:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635208689448828928\/ih4lswkc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635208689448828928\/ih4lswkc.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660739050706464768\/nK5mlwqV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660739050706464768\/nK5mlwqV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164958549\/1445012424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732963024896,"id_str":"663727732963024896","text":"@Mihriban_merent @asekban_ Aynen \u00f6yle \ud83d\udc4d\ud83c\udffd\ud83d\udc4d\ud83c\udffd\ud83d\udc4d\ud83c\udffdIyi kapak Mihriban han\u0131mc\u0131m\ud83d\udc4d\ud83c\udffd\ud83d\udc4d\ud83c\udffd\ud83d\udc4d\ud83c\udffd\ud83d\ude05\ud83d\ude05\ud83d\ude05","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708394600177664,"in_reply_to_status_id_str":"663708394600177664","in_reply_to_user_id":327974741,"in_reply_to_user_id_str":"327974741","in_reply_to_screen_name":"Mihriban_merent","user":{"id":1635160586,"id_str":"1635160586","name":"M. Ko\u00e7","screen_name":"Makbule6134","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1192,"friends_count":811,"listed_count":4,"favourites_count":380,"statuses_count":21721,"created_at":"Wed Jul 31 10:32:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651382756346171393\/NwsBaLhe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651382756346171393\/NwsBaLhe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1635160586\/1429045899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mihriban_merent","name":"Mihriban #AK","id":327974741,"id_str":"327974741","indices":[0,16]},{"screen_name":"asekban_","name":"AKTCOSMANLIDEVLET\u0130AK","id":3087443133,"id_str":"3087443133","indices":[17,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732954693632,"id_str":"663727732954693632","text":"RT @tenka1_douga: \u672a\u6210\u5e74\u306b\u4e3b\u5f35\u3067\u4e00\u756a\u597d\u304d\u304b\u3082\u3057\u308c\u3093\ud83d\ude02\n\u7537\u306e\u5b50\u3084\u3063\u305f\u3089\u7d4c\u9a13\u3057\u305f\u3053\u3068\u3042\u308b\u308f \u7b11\n\u6a39\u304f\u3093\u307b\u3093\u307e\u53ef\u611b\u3044\ud83d\ude0d\n\n\u671d\u6bd4\u5948 \u6a39\u304f\u3093~ \u308f\u304b\u3089\u306a\u3044\u3053\u3068 ~\n\n\u5b66\u6821\u3078\u884c\u3053\u3046 \n\u672a\u6210\u5e74\u306e\u4e3b\u5f35\n\u5171\u611f\u3057\u305f\u3089RT \n\u5171\u611f\u3057\u305f\u4ebaRT \n\u7537\u306e\u5b50\u3042\u308b\u3042\u308b https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3262698296,"id_str":"3262698296","name":"\u305f\u306a\u304b\u3086\u3044","screen_name":"chanyui_dayo","location":"niigata \/ sado","url":"http:\/\/instagram.com\/___1998.8.22","description":"\u3086\u3063\u304f\u308a\u3086\u3063\u304f\u308a\u30c0\u30a4\u30a8\u30c3\u30c8\u3092\uff08\u00b4-`\uff09.\uff61oO\uff08\uff09","protected":false,"verified":false,"followers_count":463,"friends_count":462,"listed_count":0,"favourites_count":6648,"statuses_count":2364,"created_at":"Wed Jul 01 00:42:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658145596558041088\/8p2IFs-h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658145596558041088\/8p2IFs-h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3262698296\/1444830253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:09:06 +0000 2015","id":663191487463583745,"id_str":"663191487463583745","text":"\u672a\u6210\u5e74\u306b\u4e3b\u5f35\u3067\u4e00\u756a\u597d\u304d\u304b\u3082\u3057\u308c\u3093\ud83d\ude02\n\u7537\u306e\u5b50\u3084\u3063\u305f\u3089\u7d4c\u9a13\u3057\u305f\u3053\u3068\u3042\u308b\u308f \u7b11\n\u6a39\u304f\u3093\u307b\u3093\u307e\u53ef\u611b\u3044\ud83d\ude0d\n\n\u671d\u6bd4\u5948 \u6a39\u304f\u3093~ \u308f\u304b\u3089\u306a\u3044\u3053\u3068 ~\n\n\u5b66\u6821\u3078\u884c\u3053\u3046 \n\u672a\u6210\u5e74\u306e\u4e3b\u5f35\n\u5171\u611f\u3057\u305f\u3089RT \n\u5171\u611f\u3057\u305f\u4ebaRT \n\u7537\u306e\u5b50\u3042\u308b\u3042\u308b https:\/\/t.co\/ceFzjhkg4k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3880727000,"id_str":"3880727000","name":"\u5929\u4e0b\u4e00\u52d5\u753b\u4f1a","screen_name":"tenka1_douga","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5761,"friends_count":1582,"listed_count":4,"favourites_count":23,"statuses_count":154,"created_at":"Tue Oct 13 12:52:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653918356144197632\/WxBwmhmk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653918356144197632\/WxBwmhmk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3880727000\/1444741195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1503,"favorite_count":1904,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662772886558519296,"id_str":"662772886558519296","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","url":"https:\/\/t.co\/ceFzjhkg4k","display_url":"pic.twitter.com\/ceFzjhkg4k","expanded_url":"http:\/\/twitter.com\/kotatsudayo_021\/status\/662773217732390912\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662773217732390912,"source_status_id_str":"662773217732390912","source_user_id":2260043059,"source_user_id_str":"2260043059"}]},"extended_entities":{"media":[{"id":662772886558519296,"id_str":"662772886558519296","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","url":"https:\/\/t.co\/ceFzjhkg4k","display_url":"pic.twitter.com\/ceFzjhkg4k","expanded_url":"http:\/\/twitter.com\/kotatsudayo_021\/status\/662773217732390912\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662773217732390912,"source_status_id_str":"662773217732390912","source_user_id":2260043059,"source_user_id_str":"2260043059","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/pl\/auI2SsjZ_cP13-Yd.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/480x480\/wqw5KefQWF3k5qvg.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/240x240\/zKxEPTloyTpMVFSm.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/720x720\/dIPcY8LQN8jGrx_1.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/480x480\/wqw5KefQWF3k5qvg.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/pl\/auI2SsjZ_cP13-Yd.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tenka1_douga","name":"\u5929\u4e0b\u4e00\u52d5\u753b\u4f1a","id":3880727000,"id_str":"3880727000","indices":[3,16]}],"symbols":[],"media":[{"id":662772886558519296,"id_str":"662772886558519296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","url":"https:\/\/t.co\/ceFzjhkg4k","display_url":"pic.twitter.com\/ceFzjhkg4k","expanded_url":"http:\/\/twitter.com\/kotatsudayo_021\/status\/662773217732390912\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662773217732390912,"source_status_id_str":"662773217732390912","source_user_id":2260043059,"source_user_id_str":"2260043059"}]},"extended_entities":{"media":[{"id":662772886558519296,"id_str":"662772886558519296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662772886558519296\/pu\/img\/ZRm-g8Zc_siN9BVA.jpg","url":"https:\/\/t.co\/ceFzjhkg4k","display_url":"pic.twitter.com\/ceFzjhkg4k","expanded_url":"http:\/\/twitter.com\/kotatsudayo_021\/status\/662773217732390912\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662773217732390912,"source_status_id_str":"662773217732390912","source_user_id":2260043059,"source_user_id_str":"2260043059","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/pl\/auI2SsjZ_cP13-Yd.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/480x480\/wqw5KefQWF3k5qvg.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/240x240\/zKxEPTloyTpMVFSm.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/720x720\/dIPcY8LQN8jGrx_1.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/vid\/480x480\/wqw5KefQWF3k5qvg.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662772886558519296\/pu\/pl\/auI2SsjZ_cP13-Yd.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997658"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732954636288,"id_str":"663727732954636288","text":"Karma Don't Miss A Beat... It's Gone Catch Up With You Now Or Later \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2630230078,"id_str":"2630230078","name":"KELLZ \u2757\ufe0f","screen_name":"TweetKellz","location":"Catch Me On The Field ","url":null,"description":"Oak Hills Football | IG : _mekhail_ | Bestfriend @_shamerah_ \u2764\ufe0f","protected":false,"verified":false,"followers_count":1038,"friends_count":635,"listed_count":0,"favourites_count":3279,"statuses_count":12297,"created_at":"Sun Jun 22 02:57:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659736745462865920\/Nl9wFL9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659736745462865920\/Nl9wFL9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2630230078\/1444956748","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997658"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950331392,"id_str":"663727732950331392","text":"\u30c1\u30a7\u30f3\u30b8\u8a9e\u7259\u5d0e\u304b\u3063\u3053\u3088\u304f\u3066\u8996\u754c\u306b\u5165\u308b\u305f\u3073\u52d5\u63fa\u3059\u308b","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33842435,"id_str":"33842435","name":"\u307f\u3064\u3053","screen_name":"Mitukong","location":null,"url":"http:\/\/mituko.tumblr.com\/","description":"pixiv id\uff1a505905","protected":false,"verified":false,"followers_count":820,"friends_count":358,"listed_count":76,"favourites_count":9670,"statuses_count":90326,"created_at":"Tue Apr 21 07:28:03 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452812887484923905\/RnrKGT2S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452812887484923905\/RnrKGT2S.jpeg","profile_background_tile":true,"profile_link_color":"5D05FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7396FF","profile_text_color":"4F4F4F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661773756138819584\/ujP11l_D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661773756138819584\/ujP11l_D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33842435\/1432121297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732979724289,"id_str":"663727732979724289","text":"RT @TrendsMoveOn: 12 Actresses Who Enjoy Getting Naked https:\/\/t.co\/3sSCXfsnD6 https:\/\/t.co\/PAfy0mka6D","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2962615597,"id_str":"2962615597","name":"Quite BabY","screen_name":"quitebabydoll","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26778,"friends_count":25094,"listed_count":29,"favourites_count":12,"statuses_count":1277,"created_at":"Wed Jan 07 07:56:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552749315374858241\/w2DEvFUH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552749315374858241\/w2DEvFUH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2962615597\/1436713626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 06:57:30 +0000 2015","id":662161802055122944,"id_str":"662161802055122944","text":"12 Actresses Who Enjoy Getting Naked https:\/\/t.co\/3sSCXfsnD6 https:\/\/t.co\/PAfy0mka6D","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273037158,"id_str":"3273037158","name":"Top Trending ","screen_name":"TrendsMoveOn","location":null,"url":null,"description":"I tweet trending things on twitter","protected":false,"verified":false,"followers_count":982,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":97,"created_at":"Thu Jul 09 14:57:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619161684305838080\/ZVysb61P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619161684305838080\/ZVysb61P_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":97,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3sSCXfsnD6","expanded_url":"http:\/\/bit.ly\/1l5v0NU","display_url":"bit.ly\/1l5v0NU","indices":[37,60]}],"user_mentions":[],"symbols":[],"media":[{"id":662161800075616256,"id_str":"662161800075616256","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","url":"https:\/\/t.co\/PAfy0mka6D","display_url":"pic.twitter.com\/PAfy0mka6D","expanded_url":"http:\/\/twitter.com\/TrendsMoveOn\/status\/662161802055122944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662161800075616256,"id_str":"662161800075616256","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","url":"https:\/\/t.co\/PAfy0mka6D","display_url":"pic.twitter.com\/PAfy0mka6D","expanded_url":"http:\/\/twitter.com\/TrendsMoveOn\/status\/662161802055122944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3sSCXfsnD6","expanded_url":"http:\/\/bit.ly\/1l5v0NU","display_url":"bit.ly\/1l5v0NU","indices":[55,78]}],"user_mentions":[{"screen_name":"TrendsMoveOn","name":"Top Trending ","id":3273037158,"id_str":"3273037158","indices":[3,16]}],"symbols":[],"media":[{"id":662161800075616256,"id_str":"662161800075616256","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","url":"https:\/\/t.co\/PAfy0mka6D","display_url":"pic.twitter.com\/PAfy0mka6D","expanded_url":"http:\/\/twitter.com\/TrendsMoveOn\/status\/662161802055122944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":662161802055122944,"source_status_id_str":"662161802055122944","source_user_id":3273037158,"source_user_id_str":"3273037158"}]},"extended_entities":{"media":[{"id":662161800075616256,"id_str":"662161800075616256","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4ph1XIAABG8I.jpg","url":"https:\/\/t.co\/PAfy0mka6D","display_url":"pic.twitter.com\/PAfy0mka6D","expanded_url":"http:\/\/twitter.com\/TrendsMoveOn\/status\/662161802055122944\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":662161802055122944,"source_status_id_str":"662161802055122944","source_user_id":3273037158,"source_user_id_str":"3273037158"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997664"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732963065856,"id_str":"663727732963065856","text":"RT @luke_brooks: you guys are the best! Thank you so much to everyone in this video! And just all of you! \ud83d\ude18 https:\/\/t.co\/7elsRRiyZC via you\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1552713074,"id_str":"1552713074","name":";Sueezy","screen_name":"Susanstephine_","location":"United kingdom","url":null,"description":"\u202218\u2022Derby\u2022JustinBieber\u2022Boybands\u2022 UnionJ3\/4, TheTide4\/4, Janoskians2\/5..","protected":false,"verified":false,"followers_count":930,"friends_count":2003,"listed_count":4,"favourites_count":25625,"statuses_count":19393,"created_at":"Fri Jun 28 09:55:03 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624284514727161856\/lBwUsQdU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624284514727161856\/lBwUsQdU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1552713074\/1446712174","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:57:46 +0000 2015","id":663581223025901568,"id_str":"663581223025901568","text":"you guys are the best! Thank you so much to everyone in this video! And just all of you! \ud83d\ude18 https:\/\/t.co\/7elsRRiyZC via youtube","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60050843,"id_str":"60050843","name":"Luke Brooks","screen_name":"luke_brooks","location":"Melbourne, Australia","url":"http:\/\/m.youtube.com\/watch?v=NTvUJ-9rc0U&a=&feature=youtu.be","description":"@janoskians | Instagram- lukebrooksofficial |","protected":false,"verified":true,"followers_count":2297285,"friends_count":21738,"listed_count":10779,"favourites_count":1803,"statuses_count":11712,"created_at":"Sat Jul 25 12:51:23 +0000 2009","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/712114162\/69d5af2d286e967baef7317d2cf1b04b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/712114162\/69d5af2d286e967baef7317d2cf1b04b.jpeg","profile_background_tile":false,"profile_link_color":"0EB356","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654470880274182144\/2j7Onux8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654470880274182144\/2j7Onux8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60050843\/1447024574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2290,"favorite_count":3531,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7elsRRiyZC","expanded_url":"http:\/\/www.youtube.com\/watch?v=lDzKf8uMFn0&sns=tw","display_url":"youtube.com\/watch?v=lDzKf8\u2026","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7elsRRiyZC","expanded_url":"http:\/\/www.youtube.com\/watch?v=lDzKf8uMFn0&sns=tw","display_url":"youtube.com\/watch?v=lDzKf8\u2026","indices":[108,131]}],"user_mentions":[{"screen_name":"luke_brooks","name":"Luke Brooks","id":60050843,"id_str":"60050843","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958887936,"id_str":"663727732958887936","text":"but the kid inside me's feeling so restrained","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110014096,"id_str":"110014096","name":"Zak Morejon","screen_name":"zakmorejon","location":"Behind the camera","url":null,"description":"Your friendly neighbourhood Photographer. \nTravel & Photography.\nWindsor ON","protected":false,"verified":false,"followers_count":409,"friends_count":389,"listed_count":2,"favourites_count":10396,"statuses_count":17742,"created_at":"Sun Jan 31 01:55:44 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475618517174480896\/xl7DWWAG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475618517174480896\/xl7DWWAG.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661337194313838592\/Byia7076_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661337194313838592\/Byia7076_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110014096\/1412524967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975529984,"id_str":"663727732975529984","text":"\u30d2\u30d3\u30e4\uff01\u3042\u3093\u305f\u306a\u3093\u3066\u3053\u3068\u8a00\u3063\u3066\u3093\u306e\uff01\uff1f\u8a71\u3057\u3066\u3082\u3089\u3063\u3066\u308b\u3060\u3051\u3067\u3059\u3063\u3054\u3044\u3053\u3068\u306a\u306e\u3088\uff01\uff1f #bot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1319674993,"id_str":"1319674993","name":"\u65e5\u548c","screen_name":"hiyori_kgpr","location":"\u967d\u708e\u306e\u63fa\u3089\u3050\u8857","url":"http:\/\/twpf.jp\/hiyori_kgpr","description":"\u30ab\u30b2\u30ed\u30a6\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3088\u308a\u3001\u671d\u6bd4\u5948\u65e5\u548c\u306e\u975e\u516c\u5f0f\u534a\u624b\u52d5\u306a\u308a\u304d\u308a\u3002\u30cd\u30bf\u30d0\u30ec\u3092\u542b\u3080\u304b\u3089\u6ce8\u610f\u3002icon: \u30ab\u30a4\u30c6\u30fc\u69d8\u306e\u30d5\u30ea\u30fc hd:\u30d5\u30ea\u30fc \u8a73\u3057\u304f\u306f\u8aac\u660e\u66f8\u307e\u3067\u3002\u66b4\u8a00(\u539f\u4f5c\u7a0b\u5ea6)\u6709\u3001\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u9045\u3044","protected":false,"verified":false,"followers_count":799,"friends_count":272,"listed_count":3,"favourites_count":282,"statuses_count":57477,"created_at":"Mon Apr 01 04:44:59 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/519169371810181120\/XLch0AVs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519169371810181120\/XLch0AVs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1319674993\/1402939749","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bot","indices":[42,46]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732983996416,"id_str":"663727732983996416","text":"@OwlPP Awwww, you are so cute!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727061421420544,"in_reply_to_status_id_str":"663727061421420544","in_reply_to_user_id":72267386,"in_reply_to_user_id_str":"72267386","in_reply_to_screen_name":"OwlPP","user":{"id":16557101,"id_str":"16557101","name":"Jennifer Sanders","screen_name":"gingerellaj","location":"Bristol, UK","url":"http:\/\/gingerella.wordpress.com","description":"Dr Jen. Lover of science, food, music and making my own clothes. I blog, sometimes. Views are my own.","protected":false,"verified":false,"followers_count":355,"friends_count":484,"listed_count":28,"favourites_count":705,"statuses_count":6315,"created_at":"Thu Oct 02 08:57:06 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479856414\/arches.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479856414\/arches.png","profile_background_tile":true,"profile_link_color":"13A9C4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631442489560403968\/MkOfDzOG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631442489560403968\/MkOfDzOG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16557101\/1414900426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OwlPP","name":"Charlotte Potter","id":72267386,"id_str":"72267386","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988203008,"id_str":"663727732988203008","text":"#Cine Secret in Their Eyes: Interview - Julia Roberts https:\/\/t.co\/jEIfyNe6nO","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904482681,"id_str":"2904482681","name":"Clara Godinez","screen_name":"ClaraDeHueevo","location":null,"url":null,"description":"Soy una persona visceral, adicta al cine y con el coraz\u00f3n a la izquierda, ah! y amo a Katniss :D","protected":false,"verified":false,"followers_count":148,"friends_count":77,"listed_count":9,"favourites_count":23,"statuses_count":32121,"created_at":"Thu Dec 04 00:09:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540296899404636160\/Exw4Cewc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540296899404636160\/Exw4Cewc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2904482681\/1417652406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Cine","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/jEIfyNe6nO","expanded_url":"http:\/\/ift.tt\/1lfJo6i","display_url":"ift.tt\/1lfJo6i","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975468544,"id_str":"663727732975468544","text":"\u4e2d\u5b66\u306e\u5909\u306a\u56e3\u7d50\u529b\u306f\u6c17\u6301\u3061\u60aa\u3044\u3001\u3044\u3058\u3081\u305f\u3089\u3086\u308b\u3055\u306a\u3044\u3088\uff1f\u305f\u3068\u3048\u62c5\u4efb\u3060\u308d\u3046\u304c\u3001\u30e4\u30f3\u30ad\u30fc\u3060\u308d\u3046\u304c\u3001\u5b88\u308b\u304b\u3089\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1537012868,"id_str":"1537012868","name":"\u306b\u3083\u3044\u300cmin\u300d","screen_name":"yuaahu","location":"\u307e\u304d\u7530\u3055\u3093","url":null,"description":"Thanks (\u0e51\u2022\u0300\u3141\u2022\u0301\u0e51)\u2727\u9023\u7d61\u306fDM\u3067\uff01","protected":false,"verified":false,"followers_count":321,"friends_count":224,"listed_count":11,"favourites_count":2734,"statuses_count":11310,"created_at":"Fri Jun 21 17:48:39 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2DABD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444383898785419264\/-Ddg4p-_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444383898785419264\/-Ddg4p-_.png","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659564314823491584\/bX6FC_iT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659564314823491584\/bX6FC_iT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1537012868\/1446812610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958842880,"id_str":"663727732958842880","text":"@AJABreaking","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663688665760186368,"in_reply_to_status_id_str":"663688665760186368","in_reply_to_user_id":243368411,"in_reply_to_user_id_str":"243368411","in_reply_to_screen_name":"AJABreaking","user":{"id":4145644043,"id_str":"4145644043","name":"\u0633\u0644\u064a\u0645 \u0627\u0644\u0648\u0635\u0627\u0628\u064a Nmnm\u200e","screen_name":"salim2015m2010","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":18,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 01:08:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AJABreaking","name":"\u0627\u0644\u062c\u0632\u064a\u0631\u0629 - \u0639\u0627\u062c\u0644","id":243368411,"id_str":"243368411","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988096512,"id_str":"663727732988096512","text":"RT @JackJackJohnson: U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354011140,"id_str":"2354011140","name":"Karinaa","screen_name":"kkkarinaa__","location":null,"url":"http:\/\/los5music.com","description":"i like bands more than i like you","protected":false,"verified":false,"followers_count":288,"friends_count":204,"listed_count":1,"favourites_count":6622,"statuses_count":491,"created_at":"Fri Feb 21 01:15:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545256789446656\/r7-6F-rv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545256789446656\/r7-6F-rv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354011140\/1447036455","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433779056641,"id_str":"663727433779056641","text":"U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT LIT!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588965,"friends_count":19062,"listed_count":9492,"favourites_count":8856,"statuses_count":13964,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":972,"favorite_count":1696,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958756864,"id_str":"663727732958756864","text":"Do not let Crabtree walk. That Carr-Cooper-Crabtree combination is special #RaiderNation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127654092,"id_str":"127654092","name":".","screen_name":"jslv94","location":"Las Vegas, Nevada ","url":null,"description":null,"protected":false,"verified":false,"followers_count":2388,"friends_count":996,"listed_count":56,"favourites_count":159,"statuses_count":11706,"created_at":"Mon Mar 29 21:44:13 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"454E75","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151401725\/TxNLr0CI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151401725\/TxNLr0CI.png","profile_background_tile":false,"profile_link_color":"454E75","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659550638502621184\/yYKljN8o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659550638502621184\/yYKljN8o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127654092\/1421240804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"37d88f13e7a85f14","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/37d88f13e7a85f14.json","place_type":"city","name":"Winchester","full_name":"Winchester, NV","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-115.173994,36.128077],[-115.173994,36.144748],[-115.083699,36.144748],[-115.083699,36.128077]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RaiderNation","indices":[75,88]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732962930690,"id_str":"663727732962930690","text":"\u78ba\u304b\u306b\u6b8b\u7559\u4e89\u3044\u3092\u77e5\u3089\u306a\u3044\u306e\u306f\u5e78\u305b\u306a\u3053\u3068\u306a\u3093\u3060\u3088\u306a\u301c https:\/\/t.co\/2C4nWvmRPG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2507518216,"id_str":"2507518216","name":"\u304f\u308a\u3059","screen_name":"christfer623","location":null,"url":null,"description":"\u524d\u306e\u3081\u3063\u3066\u308b(\u308c\u30fb\u03c9\u30fb\u306a)","protected":false,"verified":false,"followers_count":145,"friends_count":181,"listed_count":0,"favourites_count":2578,"statuses_count":5467,"created_at":"Fri Apr 25 03:17:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651597300872032257\/Cn7FzdJU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651597300872032257\/Cn7FzdJU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2507518216\/1446772646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726364781092867,"quoted_status_id_str":"663726364781092867","quoted_status":{"created_at":"Mon Nov 09 14:34:31 +0000 2015","id":663726364781092867,"id_str":"663726364781092867","text":"\u5ddd\u5d0e\u306f\u521d\u6607\u683c\u6642\u306f1\u5e74\u3067\u964d\u683c\u3057\u305f\u3051\u3069\u300105\u5e74\u306b\u5fa9\u5e30\u3057\u3066\u304b\u3089\u4eca\u5e74\u306711\u30b7\u30fc\u30ba\u30f3\u9023\u7d9a\u3067\u5728\u7c4d\u3002\u9023\u7d9a\u5e74\u6570\u3060\u3068\u3001\u30aa\u30ea10\u3092\u9664\u3051\u3070\u3001\u65b0\u6f5f\u306b\u6b21\u3044\u3067\u9577\u304f\u5728\u7c4d\u3057\u3066\u3044\u308b\u3002\u30bf\u30a4\u30c8\u30eb\u7372\u5f97\u3067\u304d\u306a\u3044\u3053\u3068\u3070\u304b\u308a\u8a00\u308f\u308c\u304c\u3061\u3060\u3051\u3069\u300111\u5e74\u9593\u3001\u672c\u683c\u7684\u306a\u6b8b\u7559\u4e89\u3044\u306b\u5dfb\u304d\u8fbc\u307e\u308c\u3066\u3044\u306a\u3044\u30de\u30cd\u30b8\u30e1\u30f3\u30c8\u306f\u8a55\u4fa1\u3055\u308c\u3066\u826f\u3044\u6c17\u3082\u3059\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182380771,"id_str":"182380771","name":"\u3044\u3057\u304b\u308f\u3054\u3046","screen_name":"ishikawago","location":"\u6771\u4eac\u90fd","url":"http:\/\/ishikawago.com\/","description":"\u5ddd\u5d0e\u30d5\u30ed\u30f3\u30bf\u30fc\u30ec\u3068\u5c06\u68cb\u306b\u643a\u308f\u3063\u3066\u3044\u308b\u30d5\u30ea\u30fc\u30e9\u30f3\u30b9\u3067\u3059\u3002\u8457\u66f8\u306f\u300c\u5c06\u68cb\u3067\u30b5\u30c3\u30ab\u30fc\u304c\u9762\u767d\u304f\u306a\u308b\u672c\u300d\u3001\u300c\u5ddd\u5d0e\u30d5\u30ed\u30f3\u30bf\u30fc\u30ec\u3042\u308b\u3042\u308b\u300d\u3001\u300c\u5c06\u68cb\u30d5\u30a1\u30f3\u3042\u308b\u3042\u308b\u300d\u3002\u300c\u30b5\u30c3\u30ab\u30fc\u8133\u3092\u80b2\u3080\u300d\uff08\u4e2d\u6751\u61b2\u525b\uff09\u306e\u4f01\u753b&\u69cb\u6210\u3002\u5c06\u68cb\u306f\u30a2\u30de\u4e09\u6bb5\uff08\u65e5\u672c\u5c06\u68cb\u9023\u76df\u4e09\u6bb5\u514d\u72b6\u6240\u6709\uff09\u3002\u30ea\u30d7\u30e9\u30a4\u306f\u6c17\u307e\u3050\u308c\u3067\u3059\u304c\u3001\u3061\u3083\u3093\u3068\u8aad\u3093\u3067\u307e\u3059\u3002\u304a\u3067\u3093\u304f\u3093\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":12880,"friends_count":226,"listed_count":884,"favourites_count":161,"statuses_count":20918,"created_at":"Tue Aug 24 13:29:40 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2666037230\/42eb6c316ea8efa0b6fb3f59f17d21a3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2666037230\/42eb6c316ea8efa0b6fb3f59f17d21a3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182380771\/1387782624","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2C4nWvmRPG","expanded_url":"https:\/\/twitter.com\/ishikawago\/status\/663726364781092867","display_url":"twitter.com\/ishikawago\/sta\u2026","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975497216,"id_str":"663727732975497216","text":"@TravisRodgers @Kdubblive you have to put some of the blame on #jeaniebuss for giving him this contract. He's not worth 25 million. Sorry","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":38255752,"in_reply_to_user_id_str":"38255752","in_reply_to_screen_name":"TravisRodgers","user":{"id":414187153,"id_str":"414187153","name":"Vince","screen_name":"vmoronez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":36,"friends_count":131,"listed_count":1,"favourites_count":278,"statuses_count":866,"created_at":"Wed Nov 16 18:55:45 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616347725525680128\/TufGn1g6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616347725525680128\/TufGn1g6_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"jeaniebuss","indices":[63,74]}],"urls":[],"user_mentions":[{"screen_name":"TravisRodgers","name":"Travis Rodgers","id":38255752,"id_str":"38255752","indices":[0,14]},{"screen_name":"Kdubblive","name":"Kelvin Washington","id":34645143,"id_str":"34645143","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988100608,"id_str":"663727732988100608","text":"@_clover00 \u307c\u3051\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716488218480640,"in_reply_to_status_id_str":"663716488218480640","in_reply_to_user_id":3774394032,"in_reply_to_user_id_str":"3774394032","in_reply_to_screen_name":"_clover00","user":{"id":2341875248,"id_str":"2341875248","name":"\u305f\u306a\u304b\u3051\u3044\u3068","screen_name":"k15264669","location":null,"url":null,"description":"\u5468\u5357\u5e02 \u6771\u90e8\u8a13\u7df4\u751f \u30b6\u30c3\u30af\u5468\u5357 19\u6b73 \n\u30d0\u30b9\u30b1#9","protected":false,"verified":false,"followers_count":315,"friends_count":364,"listed_count":0,"favourites_count":635,"statuses_count":3139,"created_at":"Thu Feb 13 12:04:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663619393461481472\/G9i97c-T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663619393461481472\/G9i97c-T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2341875248\/1442425216","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_clover00","name":"\u3055\u3041\u3061\u3085\u3093.","id":3774394032,"id_str":"3774394032","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732983918592,"id_str":"663727732983918592","text":"@mimio_30 \n\u307b\u3093\u307e\u305d\u308c\u3067\u3059\uff5e\uff01\uff01\n\u4e45\u3005\u3067\u3059\u306d\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726580686958592,"in_reply_to_status_id_str":"663726580686958592","in_reply_to_user_id":3934279452,"in_reply_to_user_id_str":"3934279452","in_reply_to_screen_name":"mimio_30","user":{"id":3059403361,"id_str":"3059403361","name":"\u3061\u3072\u308d","screen_name":"Uchihiro0801","location":null,"url":null,"description":"\u548c\u5e84 \u261e SMZ2\u5e74 volleyball\u90e8","protected":false,"verified":false,"followers_count":423,"friends_count":369,"listed_count":2,"favourites_count":11870,"statuses_count":4087,"created_at":"Tue Mar 03 07:01:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657914900069486592\/MiDl6DUm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657914900069486592\/MiDl6DUm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3059403361\/1438473798","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mimio_30","name":"\u30b9\u30df\u30e8\u30b7 \u30df\u30aa","id":3934279452,"id_str":"3934279452","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988088321,"id_str":"663727732988088321","text":"\u305f\u307e\u306b\u306f\u90e8\u5c4b\u306e\u6574\u7406\u3067\u3082\u3057\u3088\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201229592,"id_str":"201229592","name":"\u2668\u306f\u308b\u3066\u2668","screen_name":"harute0122","location":null,"url":"http:\/\/harute0122.blog.fc2.com","description":"\u30dd\u30c3\u30d7\u30f348","protected":false,"verified":false,"followers_count":798,"friends_count":603,"listed_count":65,"favourites_count":81747,"statuses_count":89705,"created_at":"Mon Oct 11 11:43:12 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060741224\/c7a1a4a0ce97e476ec2f6d3550a84a28.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060741224\/c7a1a4a0ce97e476ec2f6d3550a84a28.jpeg","profile_background_tile":true,"profile_link_color":"D11444","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D2EBF5","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661846019659816960\/3F_MmHLv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661846019659816960\/3F_MmHLv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201229592\/1446632416","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732983992321,"id_str":"663727732983992321","text":"@Alexbernabeups4 S\u00ed y no XD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725873762291712,"in_reply_to_status_id_str":"663725873762291712","in_reply_to_user_id":3115005323,"in_reply_to_user_id_str":"3115005323","in_reply_to_screen_name":"Alexbernabeups4","user":{"id":593825400,"id_str":"593825400","name":"\u0425\u0440\u0438\u0441\u0442\u043e\u0444e\u0440.","screen_name":"PeTeTeWorld","location":"Sevilla.","url":"https:\/\/www.youtube.com\/user\/PeTeTeWorld1","description":"COD con @OutbreakTeam - PS4 - LOL - Contacto: peteteworld@gmail.com - Simplemente @MartukiiLOL.","protected":false,"verified":false,"followers_count":3949,"friends_count":804,"listed_count":23,"favourites_count":31553,"statuses_count":44708,"created_at":"Tue May 29 14:17:08 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574694019004899328\/QJV-uBdl.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574694019004899328\/QJV-uBdl.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654318136720773121\/-aian64A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654318136720773121\/-aian64A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/593825400\/1434630947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Alexbernabeups4","name":"Alexbernabeu","id":3115005323,"id_str":"3115005323","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988088320,"id_str":"663727732988088320","text":"RT @Mariam_Ragab: Have you ever imagined someone's death and then you bursted into tears?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3082257863,"id_str":"3082257863","name":"MIRNAAA.","screen_name":"mirnna_amr","location":"El Daqahlia, Egypt","url":null,"description":"instagram:mernaamro","protected":false,"verified":false,"followers_count":426,"friends_count":202,"listed_count":0,"favourites_count":83,"statuses_count":1520,"created_at":"Mon Mar 09 19:23:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661237793415385088\/dllUr7eX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661237793415385088\/dllUr7eX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3082257863\/1446741026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Aug 31 00:40:16 +0000 2015","id":638149269678084097,"id_str":"638149269678084097","text":"Have you ever imagined someone's death and then you bursted into tears?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406121889,"id_str":"406121889","name":"MR.","screen_name":"Mariam_Ragab","location":null,"url":null,"description":"Lost not found.","protected":false,"verified":false,"followers_count":3347,"friends_count":153,"listed_count":16,"favourites_count":4574,"statuses_count":54618,"created_at":"Sun Nov 06 08:32:56 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662780570209005568\/8o33h0tq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662780570209005568\/8o33h0tq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406121889\/1446485337","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01accfd07cdf862b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01accfd07cdf862b.json","place_type":"admin","name":"Alexandria","full_name":"Alexandria, Egypt","country_code":"EG","country":"\u0645\u0635\u0631","bounding_box":{"type":"Polygon","coordinates":[[[29.380810,30.333034],[29.380810,31.332279],[30.086218,31.332279],[30.086218,30.333034]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":353,"favorite_count":91,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mariam_Ragab","name":"MR.","id":406121889,"id_str":"406121889","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732984053760,"id_str":"663727732984053760","text":"RT @el_pais: \u00bfCu\u00e1nto se parecen las organizaciones criminales a las grandes empresas leg\u00edtimas? https:\/\/t.co\/8OrDyJwxHw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25423196,"id_str":"25423196","name":"Jose Hernandez ","screen_name":"josehernandezp","location":null,"url":"http:\/\/www.youtube.com\/no20064","description":"Investigador privado http:\/\/www.youtube.com\/Ravanitoproductions","protected":false,"verified":false,"followers_count":399,"friends_count":990,"listed_count":2,"favourites_count":47,"statuses_count":5007,"created_at":"Fri Mar 20 00:44:41 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155926319\/oMsyith5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155926319\/oMsyith5.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1618263570\/05_Centuria_01recirto_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1618263570\/05_Centuria_01recirto_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:53 +0000 2015","id":663726708042948608,"id_str":"663726708042948608","text":"\u00bfCu\u00e1nto se parecen las organizaciones criminales a las grandes empresas leg\u00edtimas? https:\/\/t.co\/8OrDyJwxHw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7996082,"id_str":"7996082","name":"EL PA\u00cdS","screen_name":"el_pais","location":"Madrid","url":"http:\/\/www.elpais.com","description":"Las noticias globales m\u00e1s relevantes y la \u00faltima hora en espa\u00f1ol, por los periodistas de EL PA\u00cdS. Para informarse y conversar.","protected":false,"verified":true,"followers_count":4823063,"friends_count":648,"listed_count":49131,"favourites_count":182,"statuses_count":195251,"created_at":"Mon Aug 06 16:20:09 +0000 2007","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506391816\/f-elpais.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506391816\/f-elpais.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517148424722866176\/CB6c-k0__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517148424722866176\/CB6c-k0__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1412132776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ea520f3528c9b3e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ea520f3528c9b3e4.json","place_type":"admin","name":"Madrid","full_name":"Madrid, Comunidad de Madrid","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[-4.579175,39.884537],[-4.579175,41.164911],[-3.053132,41.164911],[-3.053132,39.884537]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8OrDyJwxHw","expanded_url":"http:\/\/cort.as\/Z0AC","display_url":"cort.as\/Z0AC","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8OrDyJwxHw","expanded_url":"http:\/\/cort.as\/Z0AC","display_url":"cort.as\/Z0AC","indices":[97,120]}],"user_mentions":[{"screen_name":"el_pais","name":"EL PA\u00cdS","id":7996082,"id_str":"7996082","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997665"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732979691520,"id_str":"663727732979691520","text":"harry is louis' baby kitten","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2791623727,"id_str":"2791623727","name":"sweetcheeks.","screen_name":"Tomlinster91","location":"\u2022 larry cult \u2022 32115 \u00bb 32215","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"#1 louis saying new tattoos in history stan","protected":false,"verified":false,"followers_count":7872,"friends_count":5611,"listed_count":21,"favourites_count":16226,"statuses_count":73824,"created_at":"Fri Sep 05 10:05:47 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601360241075228672\/I7hg7mod.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601360241075228672\/I7hg7mod.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662904579600814080\/oRDyROY8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662904579600814080\/oRDyROY8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2791623727\/1446883763","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997664"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950331393,"id_str":"663727732950331393","text":"RT @AtsuRoX: \u0e16\u0e49\u0e32\u0e21\u0e36\u0e07\u0e08\u0e30\u0e15\u0e31\u0e49\u0e07\u0e1e\u0e32\u0e2a\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e14\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e2d\u0e32\u0e41\u0e21\u0e48\u0e01\u0e38\u0e0d\u0e41\u0e08\u0e21\u0e32\u0e25\u0e4a\u0e2d\u0e01\u0e44\u0e2d\u0e42\u0e1f\u0e19\u0e41\u0e25\u0e49\u0e27\u0e01\u0e25\u0e37\u0e19\u0e25\u0e07\u0e17\u0e49\u0e2d\u0e07\u0e40\u0e25\u0e22\u0e21\u0e31\u0e49\u0e22 https:\/\/t.co\/qlncyUcKob","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337618067,"id_str":"337618067","name":"\u0e1b\u0e4a\u0e2d\u0e01\u0e40\u0e01\u0e23\u0e49","screen_name":"Pocpockyy","location":"Bangkok, Thailand","url":null,"description":"afs 53 italy | materdei 86 | \u200bwattana 141","protected":false,"verified":false,"followers_count":212,"friends_count":192,"listed_count":4,"favourites_count":991,"statuses_count":15213,"created_at":"Mon Jul 18 09:36:08 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000046509002\/b272cd03414ccaa5dedb972d50adb4ee.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000046509002\/b272cd03414ccaa5dedb972d50adb4ee.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"2E2E2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600294495708717056\/H31H63cG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600294495708717056\/H31H63cG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337618067\/1431956332","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:19:31 +0000 2015","id":663194109557927936,"id_str":"663194109557927936","text":"\u0e16\u0e49\u0e32\u0e21\u0e36\u0e07\u0e08\u0e30\u0e15\u0e31\u0e49\u0e07\u0e1e\u0e32\u0e2a\u0e40\u0e27\u0e34\u0e23\u0e4c\u0e14\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e2d\u0e32\u0e41\u0e21\u0e48\u0e01\u0e38\u0e0d\u0e41\u0e08\u0e21\u0e32\u0e25\u0e4a\u0e2d\u0e01\u0e44\u0e2d\u0e42\u0e1f\u0e19\u0e41\u0e25\u0e49\u0e27\u0e01\u0e25\u0e37\u0e19\u0e25\u0e07\u0e17\u0e49\u0e2d\u0e07\u0e40\u0e25\u0e22\u0e21\u0e31\u0e49\u0e22 https:\/\/t.co\/qlncyUcKob","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131539591,"id_str":"131539591","name":"Tang\u2665\ufe0e\u4e80\u68a8AF","screen_name":"AtsuRoX","location":"\u304a\u305f\u308b","url":"https:\/\/www.facebook.com\/A.Tangkwa41D","description":"\u3010KAT-TUN\u306f\u7121\u6575\u3011I won't burn myself to make anyone comfortable","protected":false,"verified":false,"followers_count":1036,"friends_count":590,"listed_count":7,"favourites_count":5335,"statuses_count":78712,"created_at":"Sat Apr 10 15:39:43 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472665987062329344\/1JOd2w5L.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472665987062329344\/1JOd2w5L.jpeg","profile_background_tile":true,"profile_link_color":"8E0EB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618105354593812480\/_X5OKYqh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618105354593812480\/_X5OKYqh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131539591\/1442505048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24907,"favorite_count":3046,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662880478135873536,"id_str":"662880478135873536","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","url":"https:\/\/t.co\/qlncyUcKob","display_url":"pic.twitter.com\/qlncyUcKob","expanded_url":"http:\/\/twitter.com\/yossy1999116\/status\/662880539880194048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662880539880194048,"source_status_id_str":"662880539880194048","source_user_id":2401438490,"source_user_id_str":"2401438490"}]},"extended_entities":{"media":[{"id":662880478135873536,"id_str":"662880478135873536","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","url":"https:\/\/t.co\/qlncyUcKob","display_url":"pic.twitter.com\/qlncyUcKob","expanded_url":"http:\/\/twitter.com\/yossy1999116\/status\/662880539880194048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662880539880194048,"source_status_id_str":"662880539880194048","source_user_id":2401438490,"source_user_id_str":"2401438490","video_info":{"aspect_ratio":[9,16],"duration_millis":16972,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/180x320\/cQAffsR-oODe-pN2.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/pl\/XW_uWVwo0RFGPDsx.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/360x640\/KPZipAK-uySWwbmV.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/360x640\/KPZipAK-uySWwbmV.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/pl\/XW_uWVwo0RFGPDsx.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/720x1280\/frSDw6Vl8NP6daC_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AtsuRoX","name":"Tang\u2665\ufe0e\u4e80\u68a8AF","id":131539591,"id_str":"131539591","indices":[3,11]}],"symbols":[],"media":[{"id":662880478135873536,"id_str":"662880478135873536","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","url":"https:\/\/t.co\/qlncyUcKob","display_url":"pic.twitter.com\/qlncyUcKob","expanded_url":"http:\/\/twitter.com\/yossy1999116\/status\/662880539880194048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662880539880194048,"source_status_id_str":"662880539880194048","source_user_id":2401438490,"source_user_id_str":"2401438490"}]},"extended_entities":{"media":[{"id":662880478135873536,"id_str":"662880478135873536","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662880478135873536\/pu\/img\/r6ekbIn6a31EHVJ3.jpg","url":"https:\/\/t.co\/qlncyUcKob","display_url":"pic.twitter.com\/qlncyUcKob","expanded_url":"http:\/\/twitter.com\/yossy1999116\/status\/662880539880194048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662880539880194048,"source_status_id_str":"662880539880194048","source_user_id":2401438490,"source_user_id_str":"2401438490","video_info":{"aspect_ratio":[9,16],"duration_millis":16972,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/180x320\/cQAffsR-oODe-pN2.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/pl\/XW_uWVwo0RFGPDsx.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/360x640\/KPZipAK-uySWwbmV.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/360x640\/KPZipAK-uySWwbmV.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/pl\/XW_uWVwo0RFGPDsx.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662880478135873536\/pu\/vid\/720x1280\/frSDw6Vl8NP6daC_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732962947072,"id_str":"663727732962947072","text":"@YUfromlastnite #TacoEmojiEngine https:\/\/t.co\/OOSjuz3MHV","source":"\u003ca href=\"http:\/\/www.icgroupinc.com\" rel=\"nofollow\"\u003eQWVR\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727728999456768,"in_reply_to_status_id_str":"663727728999456768","in_reply_to_user_id":972803558,"in_reply_to_user_id_str":"972803558","in_reply_to_screen_name":"YUfromlastnite","user":{"id":7831092,"id_str":"7831092","name":"Taco Bell","screen_name":"tacobell","location":"United States","url":"http:\/\/Ta.co","description":"Live M\u00e1s","protected":false,"verified":true,"followers_count":1615778,"friends_count":16,"listed_count":4356,"favourites_count":27905,"statuses_count":46196,"created_at":"Mon Jul 30 21:52:37 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449054545406996480\/COj6wwoP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449054545406996480\/COj6wwoP.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ECDAF4","profile_text_color":"3C1D59","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657627336477544449\/kPJ90OtW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657627336477544449\/kPJ90OtW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7831092\/1445625540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TacoEmojiEngine","indices":[16,32]}],"urls":[],"user_mentions":[{"screen_name":"YUfromlastnite","name":"korey","id":972803558,"id_str":"972803558","indices":[0,15]}],"symbols":[],"media":[{"id":662866646676062208,"id_str":"662866646676062208","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL5tACUwAA0IqL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL5tACUwAA0IqL.png","url":"https:\/\/t.co\/OOSjuz3MHV","display_url":"pic.twitter.com\/OOSjuz3MHV","expanded_url":"http:\/\/twitter.com\/tacobell\/status\/662866648576102404\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":450,"resize":"fit"},"medium":{"w":450,"h":450,"resize":"fit"}},"source_status_id":662866648576102404,"source_status_id_str":"662866648576102404","source_user_id":7831092,"source_user_id_str":"7831092"}]},"extended_entities":{"media":[{"id":662866646676062208,"id_str":"662866646676062208","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL5tACUwAA0IqL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL5tACUwAA0IqL.png","url":"https:\/\/t.co\/OOSjuz3MHV","display_url":"pic.twitter.com\/OOSjuz3MHV","expanded_url":"http:\/\/twitter.com\/tacobell\/status\/662866648576102404\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":450,"resize":"fit"},"medium":{"w":450,"h":450,"resize":"fit"}},"source_status_id":662866648576102404,"source_status_id_str":"662866648576102404","source_user_id":7831092,"source_user_id_str":"7831092"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079997660"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971413504,"id_str":"663727732971413504","text":"RT @WSJ: A hedge-fund prodigy takes a $300 million hit: https:\/\/t.co\/SSxqAN1rvj","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2561724956,"id_str":"2561724956","name":"RealTimeBreakingNews","screen_name":"RTBreakingNews","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":255,"friends_count":22,"listed_count":24,"favourites_count":0,"statuses_count":73178,"created_at":"Wed Jun 11 17:09:20 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463699984886411264\/3jv7S121_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463699984886411264\/3jv7S121_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561724956\/1402506584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:17 +0000 2015","id":663724795939430400,"id_str":"663724795939430400","text":"A hedge-fund prodigy takes a $300 million hit: https:\/\/t.co\/SSxqAN1rvj","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3108351,"id_str":"3108351","name":"Wall Street Journal","screen_name":"WSJ","location":"New York, NY","url":"http:\/\/wsj.com","description":"Breaking news and features from the WSJ. Tweets by @allisonlichter @sarahmarshall @toddjolmstead @erinclarebrown @LaurenceWSJ @lmoliva_ and @carlazanoni.","protected":false,"verified":true,"followers_count":8122250,"friends_count":1025,"listed_count":93115,"favourites_count":1270,"statuses_count":135150,"created_at":"Sun Apr 01 06:22:13 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDF2F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000026078008\/c07ad7d60f01c3a836dd701fc3f71233.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000026078008\/c07ad7d60f01c3a836dd701fc3f71233.jpeg","profile_background_tile":false,"profile_link_color":"1164B8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550753086814162945\/NF0P32Dg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550753086814162945\/NF0P32Dg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3108351\/1432072212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":31,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SSxqAN1rvj","expanded_url":"http:\/\/on.wsj.com\/1NZnZHV","display_url":"on.wsj.com\/1NZnZHV","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SSxqAN1rvj","expanded_url":"http:\/\/on.wsj.com\/1NZnZHV","display_url":"on.wsj.com\/1NZnZHV","indices":[56,79]}],"user_mentions":[{"screen_name":"WSJ","name":"Wall Street Journal","id":3108351,"id_str":"3108351","indices":[3,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997662"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975472640,"id_str":"663727732975472640","text":"RT @kamalmeet7: @Gurmeetramrahim #MSG2onTheTopInRajasthan \nThank You Guru ji for divine blessings..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187760749,"id_str":"3187760749","name":"Raju Dabas Insan","screen_name":"rajudabas1111","location":"New Delhi, Delhi","url":null,"description":"Self Business","protected":false,"verified":false,"followers_count":305,"friends_count":84,"listed_count":10,"favourites_count":1150,"statuses_count":65815,"created_at":"Thu May 07 13:26:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597295350756446208\/SFK-iGUH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597295350756446208\/SFK-iGUH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187760749\/1440081777","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:54:11 +0000 2015","id":663655818466734080,"id_str":"663655818466734080","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan \nThank You Guru ji for divine blessings..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663655290965921792,"in_reply_to_status_id_str":"663655290965921792","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":276917857,"id_str":"276917857","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","screen_name":"kamalmeet7","location":"BaThiNdA\u20a6 Boy'Z, PuNjaB","url":null,"description":"~i\u03c4 \u03c9i\u0438\u0262 \u043c\u0454\u043c\u0432\u0454\u044f $ s\u043d\u03b1\u043d s\u03b1\u03c4\u0438\u03b1\u043c ji \u0262\u044f\u0454\u0454\u0438 s \u03c9\u0454\u2113f\u03b1\u044f\u0454 f\u03c3\u044fc\u0454 \u03c9i\u0438\u0262~ \u092e\u0948 \u0936\u093e\u092f\u0930 \u0924\u094b \u0928\u0939\u0940\u0902 \u090f \u0939\u0938\u0940\u0902,\n\u092a\u0930 \u091c\u092c\u0938\u0947 \u0926\u0947\u0916\u093e \u0924\u0941\u092e\u0915\u094b, \u092e\u0941\u091d\u0915\u094b \u0936\u093e\u092f\u0930\u0940 \u0906 \u0917\u092f\u0940\u2026","protected":false,"verified":false,"followers_count":6079,"friends_count":206,"listed_count":12,"favourites_count":9235,"statuses_count":26153,"created_at":"Mon Apr 04 10:33:05 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276917857\/1443257553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":194,"favorite_count":21,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[33,57]}],"urls":[],"user_mentions":[{"screen_name":"kamalmeet7","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","id":276917857,"id_str":"276917857","indices":[3,14]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732954497024,"id_str":"663727732954497024","text":"@Paul_Bettany @CharlesMBlow So funny!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725322580402176,"in_reply_to_status_id_str":"663725322580402176","in_reply_to_user_id":2796910988,"in_reply_to_user_id_str":"2796910988","in_reply_to_screen_name":"Paul_Bettany","user":{"id":2946735854,"id_str":"2946735854","name":"Lovetta J. Phillips","screen_name":"lovettaloca","location":"Cheyenne, WY","url":null,"description":"percussionist, film lover, book devourer, writer, proud mother and wife.","protected":false,"verified":false,"followers_count":317,"friends_count":486,"listed_count":33,"favourites_count":1556,"statuses_count":4829,"created_at":"Sun Dec 28 18:55:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652263576711770112\/P7k1Czwl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652263576711770112\/P7k1Czwl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946735854\/1446395047","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Paul_Bettany","name":"Paul Bettany","id":2796910988,"id_str":"2796910988","indices":[0,13]},{"screen_name":"CharlesMBlow","name":"Charles M. Blow","id":20772763,"id_str":"20772763","indices":[14,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997658"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732954546176,"id_str":"663727732954546176","text":"@KingHormone \u305d\u308c\u3067\u3082\u30b9\u30bf\u30f3\u30c9\u6301\u3061\u306b\u306a\u308c\u308b\u304b\u3089\u3001\u4ffa\u3089\u3082\u30b9\u30bf\u30f3\u30c9\u6301\u3061\u306b\u306a\u308c\u308b\u53ef\u80fd\u6027\u304c\u5fae\u30ec\u5b58","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719480481058816,"in_reply_to_status_id_str":"663719480481058816","in_reply_to_user_id":1116679176,"in_reply_to_user_id_str":"1116679176","in_reply_to_screen_name":"KingHormone","user":{"id":1385046577,"id_str":"1385046577","name":"\u3044\u305d\u3063\u3061","screen_name":"1s_tr","location":"\u30ea\u30f3\u30ac","url":null,"description":"\u8266\u3053\u308c\u3001\u6771\u65b9\u3001\u30d1\u30ba\u30c9\u30e9\u3001\u30c7\u30a3\u30d0\u30b2 https:\/\/www.youtube.com\/watch?v=n51CzTqmh4M","protected":false,"verified":false,"followers_count":2602,"friends_count":619,"listed_count":187,"favourites_count":112834,"statuses_count":107058,"created_at":"Sat Apr 27 17:28:11 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662314808612556800\/jLBZ4hRe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662314808612556800\/jLBZ4hRe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1385046577\/1441231635","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KingHormone","name":"\u307f\u30fc\u308b","id":1116679176,"id_str":"1116679176","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997658"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958695428,"id_str":"663727732958695428","text":"@tuki_unknown \u304a\u3063\u305b\u3047\u308fwwww\u3082\u3046\u3059\u30509\u30f5\u6708\u7d4c\u3064\u305ewwwww\n\u3057\u3063\u304b\u308a\u5408\u683c\u3057\u3066\u2026\u2026\u2026\u3045\u3041\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727346986319874,"in_reply_to_status_id_str":"663727346986319874","in_reply_to_user_id":2304834008,"in_reply_to_user_id_str":"2304834008","in_reply_to_screen_name":"tuki_unknown","user":{"id":2465829439,"id_str":"2465829439","name":"\u516d\u9023\u661f@\u840e\u3048\u671f","screen_name":"Six_burst","location":"SCP-914","url":null,"description":"\u8b19\u865a\u306a\u5fc3\u3092\u5927\u4e8b\u306b\u3057\u305f\u3044\u3002\u4e8c\u6b21\u5143\u306b\u884c\u304d\u305f\u3044\u304c\u4e00\u3064\u4e0a\u304b\u3089\u898b\u308b\u3068\u3053\u3053\u306b\u6765\u305f\u3044\u3093\u3060\u308d\u3046\u3068\u304b\u99ac\u9e7f\u306a\u4e8b\u8003\u3048\u3066\u308b\u3002\u306a\u3093\u304b\u609f\u308a\u3067\u3082\u958b\u3044\u305f\u306e\u304b\u3082\u308f\u304b\u3089\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":507,"friends_count":489,"listed_count":3,"favourites_count":1712,"statuses_count":5318,"created_at":"Sun Apr 27 08:27:10 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653902684248911872\/X9u1RN5M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653902684248911872\/X9u1RN5M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465829439\/1444049476","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tuki_unknown","name":"\u3064\u304d\u2624\u3346\u330b\u3309\u330f\u3309\u3338\u333e\u330b\u331e\u3339\u3305","id":2304834008,"id_str":"2304834008","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988100613,"id_str":"663727732988100613","text":"RT @jonmio1507: \u4f5c\u3063\u305f\u3088\uff01\n\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3GO\u7de8\n\u3042\u306a\u305f\u306f\u3069\u306e\u66f2\u304c\u597d\u304d\u3067\u3059\u304b\uff1f\n#\u597d\u304d\u306a\u66f2\u3042\u3063\u305f\u3089RT https:\/\/t.co\/tUEJDcu4Xl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2544496262,"id_str":"2544496262","name":"\u6c99\u512a\u7fbd@\u30a4\u30ca\u30c8\u30e9\u306e\u4f5c\u8005","screen_name":"SmileKinako","location":"\u5175\u5eab\u770c","url":null,"description":"\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3\u3068\u30d7\u30ea\u30ad\u30e5\u30a2\u3068\u30e9\u30d6\u30e9\u30a4\u30d6\u5927\u597d\u304d\u306a\u898b\u305f\u76ee30\u4ee3\u306e21\u6b73\u5150\u3067\u3059\u3002\u30a2\u30cb\u30e1\u306f\u3042\u308b\u7a0b\u5ea6\u306a\u3089\u77e5\u3063\u3066\u307e\u3059\u3002\u672c\u5f53\u306b\u3042\u308b\u7a0b\u5ea6\u3067\u3059\uff08\u7b11\uff09\u30a2\u30e1\u30d6\u30ed\u3082\u3084\u3063\u3066\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u5c0f\u8aac\u3057\u304b\u66f8\u3044\u3066\u306a\u3044\u3067\u3059w\u30c4\u30a4\u30fc\u30c8\u3082\u591a\u5206\u3064\u307e\u3093\u306d\u30fc\u4e8b\u3057\u304b\u545f\u304b\u306a\u3044\u3051\u3069\u5b9c\u3057\u304f\uff08\u2267\u2207\u2266\uff09","protected":false,"verified":false,"followers_count":58,"friends_count":106,"listed_count":0,"favourites_count":985,"statuses_count":1000,"created_at":"Tue Jun 03 22:35:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658067662551969792\/K0Ak0gsM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658067662551969792\/K0Ak0gsM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2544496262\/1425217988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:32:32 +0000 2015","id":663227581970313216,"id_str":"663227581970313216","text":"\u4f5c\u3063\u305f\u3088\uff01\n\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3GO\u7de8\n\u3042\u306a\u305f\u306f\u3069\u306e\u66f2\u304c\u597d\u304d\u3067\u3059\u304b\uff1f\n#\u597d\u304d\u306a\u66f2\u3042\u3063\u305f\u3089RT https:\/\/t.co\/tUEJDcu4Xl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096268034,"id_str":"3096268034","name":"307@\u900f\u660e\u306a\u30b9\u30d5\u30a3\u30f3\u541b\u22bf","screen_name":"jonmio1507","location":"\u4eba\u306f\u306d\u9650\u754c\u3060\u3068\u601d\u3063\u3066\u304b\u3089\u3082\u3046\u3061\u3087\u3063\u3068\u3044\u3051\u308b","url":null,"description":"\u4e43\u6728\u5742\u3068\u30b5\u30c3\u30ab\u30fc\u304c\u5927\u597d\u304d\u306a\u9ad8\u68211\u5e74\/\u672a\u592e\u5948\u3068\u3044\u304f\u3061\u3083\u3093\u63a8\u3057\/\u30b5\u30c3\u30ab\u30fc\u90e8\/\u30af\u30a4\u30ba\u3082\u51fa\u3057\u3066\u307e\u3059\uff01\/\u4e00\u8a00\u304f\u308c\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059(^-^)\/\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2757\ufe0f","protected":false,"verified":false,"followers_count":1420,"friends_count":907,"listed_count":0,"favourites_count":173,"statuses_count":589,"created_at":"Wed Mar 18 13:10:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653608449641594880\/st7v8JNs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653608449641594880\/st7v8JNs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096268034\/1446885003","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":652,"favorite_count":596,"entities":{"hashtags":[{"text":"\u597d\u304d\u306a\u66f2\u3042\u3063\u305f\u3089RT","indices":[33,44]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663227469009305600,"id_str":"663227469009305600","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","url":"https:\/\/t.co\/tUEJDcu4Xl","display_url":"pic.twitter.com\/tUEJDcu4Xl","expanded_url":"http:\/\/twitter.com\/jonmio1507\/status\/663227581970313216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663227469009305600,"id_str":"663227469009305600","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","url":"https:\/\/t.co\/tUEJDcu4Xl","display_url":"pic.twitter.com\/tUEJDcu4Xl","expanded_url":"http:\/\/twitter.com\/jonmio1507\/status\/663227581970313216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29267,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/480x480\/RrIEzIiQHPo-19C-.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/pl\/oIFTWk0mvnS7JBg0.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/240x240\/jBuESsfcFxUGv_iT.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/720x720\/t3RiIH4COCyTUJE4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/pl\/oIFTWk0mvnS7JBg0.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/480x480\/RrIEzIiQHPo-19C-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u597d\u304d\u306a\u66f2\u3042\u3063\u305f\u3089RT","indices":[49,60]}],"urls":[],"user_mentions":[{"screen_name":"jonmio1507","name":"307@\u900f\u660e\u306a\u30b9\u30d5\u30a3\u30f3\u541b\u22bf","id":3096268034,"id_str":"3096268034","indices":[3,14]}],"symbols":[],"media":[{"id":663227469009305600,"id_str":"663227469009305600","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","url":"https:\/\/t.co\/tUEJDcu4Xl","display_url":"pic.twitter.com\/tUEJDcu4Xl","expanded_url":"http:\/\/twitter.com\/jonmio1507\/status\/663227581970313216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663227581970313216,"source_status_id_str":"663227581970313216","source_user_id":3096268034,"source_user_id_str":"3096268034"}]},"extended_entities":{"media":[{"id":663227469009305600,"id_str":"663227469009305600","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663227469009305600\/pu\/img\/v6Cm71H2cwRD52q-.jpg","url":"https:\/\/t.co\/tUEJDcu4Xl","display_url":"pic.twitter.com\/tUEJDcu4Xl","expanded_url":"http:\/\/twitter.com\/jonmio1507\/status\/663227581970313216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663227581970313216,"source_status_id_str":"663227581970313216","source_user_id":3096268034,"source_user_id_str":"3096268034","video_info":{"aspect_ratio":[1,1],"duration_millis":29267,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/480x480\/RrIEzIiQHPo-19C-.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/pl\/oIFTWk0mvnS7JBg0.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/240x240\/jBuESsfcFxUGv_iT.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/720x720\/t3RiIH4COCyTUJE4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/pl\/oIFTWk0mvnS7JBg0.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663227469009305600\/pu\/vid\/480x480\/RrIEzIiQHPo-19C-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967124992,"id_str":"663727732967124992","text":"\u30de\u30c4\u30c0\u8eca\u306b\u4e57\u3063\u3066\u3044\u308b\u53cb\u9054\u304c\u3044\u308b\u4eba\u306fRT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n \u8eca\u4e21\u60c5\u5831\u306e\u5165\u529b\u306f\u3068\u3066\u3082\u7c21\u5358\u3067\u3059\u3002\n \u9806\u756a\u306b\u9078\u3076\u3060\u3051\u306e\u7c21\u5358\u5165\u529b\nhttps:\/\/t.co\/uBxuZhEQGS\n #\u8eca\u8cb7\u53d6 \nRT\u3057\u3066\u304f\u308c\u305f\u65b9\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3001\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3847735398,"id_str":"3847735398","name":"\u6687\u4eba","screen_name":"appkskl1","location":null,"url":null,"description":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce!\uff01\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u652f\u63f4\u3092\u3057\u3066\u3044\u307e\u3059\uff01\r\n\u2460\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u3002\r\n\u2461\u3053\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u30ea\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u3002\r\n\u2462\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u3092\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u3002 \r\n\u3042\u306a\u305f\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u3092\u78ba\u5b9f\u306b\u5897\u3084\u3057\u307e\u3057\u3087\u3046\uff01","protected":false,"verified":false,"followers_count":852,"friends_count":1029,"listed_count":0,"favourites_count":0,"statuses_count":673,"created_at":"Sat Oct 10 13:26:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652846004228653056\/uQDl_UFp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652846004228653056\/uQDl_UFp_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8eca\u8cb7\u53d6","indices":[84,88]}],"urls":[{"url":"https:\/\/t.co\/uBxuZhEQGS","expanded_url":"http:\/\/bit.ly\/1LW27cC","display_url":"bit.ly\/1LW27cC","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732979662848,"id_str":"663727732979662848","text":"RT @SebastianMCESPN: 4) Me temo q la posibilidad de los Cowboys se achica por segundo.S iguen sin ganar sin Romo, quien tendr\u00e1 CERO m\u00e1rgen \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":8110222,"id_str":"8110222","name":"Jardiel","screen_name":"Jardiel","location":null,"url":null,"description":"Aqu\u00ed cabe de todo\u2026 Yankees\/DiablosRojos\/Lakers\/Ferrari\/RedBull\/Ali\/Mayweather\/49ers\u2026 Let's get ready to rumbleeeeeeee!! Opiniones a t\u00edtulo personal","protected":false,"verified":false,"followers_count":650,"friends_count":1374,"listed_count":16,"favourites_count":910,"statuses_count":24981,"created_at":"Fri Aug 10 18:35:41 +0000 2007","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438012818483191808\/7Or8-kJk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438012818483191808\/7Or8-kJk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/8110222\/1435044285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:40 +0000 2015","id":663725898554851328,"id_str":"663725898554851328","text":"4) Me temo q la posibilidad de los Cowboys se achica por segundo.S iguen sin ganar sin Romo, quien tendr\u00e1 CERO m\u00e1rgen de error cuando vuelva","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130245324,"id_str":"130245324","name":"Sebas M. Christensen","screen_name":"SebastianMCESPN","location":null,"url":null,"description":"No odio a tu equipo y estar de acuerdo en estar en desacuerdo es saludable-","protected":false,"verified":false,"followers_count":14283,"friends_count":1540,"listed_count":269,"favourites_count":1610,"statuses_count":40579,"created_at":"Tue Apr 06 19:14:42 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643083016714211328\/TAdVVmjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643083016714211328\/TAdVVmjZ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SebastianMCESPN","name":"Sebas M. Christensen","id":130245324,"id_str":"130245324","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079997664"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967108608,"id_str":"663727732967108608","text":"@26mEx @szk_tai \u304a\u524d\u3089\u899a\u3048\u3068\u3051\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716969930203136,"in_reply_to_status_id_str":"663716969930203136","in_reply_to_user_id":1227457453,"in_reply_to_user_id_str":"1227457453","in_reply_to_screen_name":"26mEx","user":{"id":3004381117,"id_str":"3004381117","name":"koei","screen_name":"motoni1127111","location":"\u65e5\u672c\u3000\u5343\u8449\u770c\u3000\u9928\u5c71\u3000\u304b\u3000Philippines","url":"http:\/\/Instagram.com\/koei_yasuda","description":"Track and Field 400m\/400mH\/4\u00d7400mR\u273c RAGGAE\/SOUND\/Dance Hall\/\u6e58\u5357\u4e43\u98a8 \/ APOLLO\/RED SPIDER\/\u5c06\u6765\u2192\u67d4\u9053\u6574\u5fa9\u5e2b \uff71\uff7d\uff9a\uff83\uff68\uff6f\uff78\uff84\uff9a\uff70\uff85\uff70\/\u6625\u2192SSJS\/\u24c8\u24ba\u24b6\/\u5e38\u306b\u30d0\u30ab\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":330,"friends_count":345,"listed_count":0,"favourites_count":1524,"statuses_count":1795,"created_at":"Sat Jan 31 05:45:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661171738068185088\/aZTvpm0c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661171738068185088\/aZTvpm0c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004381117\/1446470633","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"26mEx","name":"\u5c71\u5185 \u9686\u5e73","id":1227457453,"id_str":"1227457453","indices":[0,6]},{"screen_name":"szk_tai","name":"\u5927\u5f81","id":1455848148,"id_str":"1455848148","indices":[7,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967149574,"id_str":"663727732967149574","text":"@1177Noa \u305d\u308c\u306f\u79c1\u306b\u8a00\u3063\u3066\u3082\u30c0\u30e1\u2026\u2026\u30ec\u30aa\u306b\u3001\u3061\u3083\u3093\u3068\u4f1d\u3048\u308b\u306e\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727590268493824,"in_reply_to_status_id_str":"663727590268493824","in_reply_to_user_id":2460375414,"in_reply_to_user_id_str":"2460375414","in_reply_to_screen_name":"1177Noa","user":{"id":1245634890,"id_str":"1245634890","name":"\u3054\u307e\u3082\u3061\uff20\u304a\u5e74\u8cc0\u56fa\u5b9a\u30c4\u30a4","screen_name":"gomamoti_2663","location":"\u305d\u3053\u3057\u308c\u306c\u6751","url":"http:\/\/twpf.jp\/gomamoti_2663","description":"\u9577\u8eab\u7b4b\u8089\u8cea\u306a\u7537\u6027\u3068\u53ef\u611b\u3044\u5973\u306e\u5b50\u304c\u597d\u304d\nTL\u306e\u30ea\u30c4\u30a4\u30fc\u30c8\uff8f\uff6f\uff7d\uff68\uff70\uff9d\nNot\u8150\u3002\u4e00\u90e8\u5730\u96f7\u6301\u3061\u3067\u3059\u304c\u307b\u3068\u3093\u3069\u62b5\u6297\u306f\u306a\u3044\u3067\u3059\n18\u2193\n\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067","protected":false,"verified":false,"followers_count":91,"friends_count":93,"listed_count":12,"favourites_count":9519,"statuses_count":27702,"created_at":"Wed Mar 06 09:08:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617716763657048064\/UXIQL-l_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617716763657048064\/UXIQL-l_.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662649480022396929\/iv-gMD1x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662649480022396929\/iv-gMD1x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245634890\/1434215046","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1177Noa","name":"\u30dd\u30cb\u30e7\u30ae\u2741\u30ec\u30aa\u3068\u5165\u7c4d\u3057\u307e\u3057\u305f","id":2460375414,"id_str":"2460375414","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732975538176,"id_str":"663727732975538176","text":"\u0645\u0646 \u0633\u0646\u0646 \u0627\u0644\u0635\u0644\u0627\u0629 \u0627\u0644\u0641\u0639\u0644\u064a\u0629 \u0631\u0641\u0639 \u0627\u0644\u064a\u062f\u064a\u0646 \u0639\u0646\u062f \u0627\u0644\u0631\u0641\u0639 \u0645\u0646 \u0627\u0644\u0631\u0643\u0648\u0639\u00a0#\u0646\u0634\u0631_\u0633\u064a\u0631\u062a\u0647 #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":707071359,"id_str":"707071359","name":"\u0627\u0644\u062d\u0633\u064a\u0646","screen_name":"429Hos","location":null,"url":null,"description":"\u0648\u0642\u0641 \u062e\u064a\u0631\u064a","protected":false,"verified":false,"followers_count":92,"friends_count":210,"listed_count":0,"favourites_count":3,"statuses_count":5269,"created_at":"Wed Oct 09 23:52:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000573431284\/d2025f6e143392586157cef24e0addec_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000573431284\/d2025f6e143392586157cef24e0addec_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0646\u0634\u0631_\u0633\u064a\u0631\u062a\u0647","indices":[53,63]},{"text":"\ufdfa","indices":[64,66]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079997663"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732950372352,"id_str":"663727732950372352","text":"Tak reti \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1204957651,"id_str":"1204957651","name":"ritt","screen_name":"silengsawat","location":"UKM l TUMPAT","url":null,"description":"|| ENGINEERING ||","protected":false,"verified":false,"followers_count":567,"friends_count":529,"listed_count":1,"favourites_count":5759,"statuses_count":17316,"created_at":"Thu Feb 21 14:05:25 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466622616334135296\/vM3mx9MZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466622616334135296\/vM3mx9MZ.jpeg","profile_background_tile":true,"profile_link_color":"02A8A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660396501940592640\/o8MG1ofs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660396501940592640\/o8MG1ofs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204957651\/1443196816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079997657"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732958736384,"id_str":"663727732958736384","text":"@___Gg_Kk___ \n\n\u591a\u5206\u30c0\u30e1\u3001\u30b4\u30dc\u30a6\u3068\u30ab\u30d6\u3063\u3066\u611f\u3058\u2026(;\u0414;)(;\u0414;)\uff57\n\u79c1\u9054\u9ad8\u3044\u304b\u3089\u5165\u3089\u306a\u3044\u3067\u30b0\u30c3\u30ba\u3060\u3051\u3060\u3063\u305f\u308f\uff57\uff57\uff57\n\u3067\u3082\u3061\u3087\u3063\u3068\u884c\u304d\u305f\u304f\u306a\u3063\u3066\u3001\u96fb\u8a71\u306e\u30e4\u30c4\u3084\u3063\u305f\u3051\u3069\u7e4b\u304c\u3089\u306a\u304b\u3063\u305f\u3001\u8f9b\u304b\u3063\u305f\u2026(;\u0414;)(;\u0414;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725664395104256,"in_reply_to_status_id_str":"663725664395104256","in_reply_to_user_id":1450893134,"in_reply_to_user_id_str":"1450893134","in_reply_to_screen_name":"___Gg_Kk___","user":{"id":3349653852,"id_str":"3349653852","name":"\u307e\u306a\u25ce","screen_name":"krymana","location":"\u6771\u5927\u962a((\u5618","url":null,"description":"\u672c\u4e2d36\u671f\uff5c\u30c6\u30a3\u30ac\u30fc\u27b9\u2661\uff5c\u6850\u5c71\u7167\u53f2\uff5c\u897f\u91ce\u4e03\u702c \n\u4f1a\u3048\u306a\u3044\u6642\u9593\u304c\u611b\u3092\u5897\u3059\\\u2661\/ NEXT\u2192","protected":false,"verified":false,"followers_count":174,"friends_count":155,"listed_count":0,"favourites_count":524,"statuses_count":1797,"created_at":"Wed Aug 26 15:27:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662269331204497409\/G7jgkTZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662269331204497409\/G7jgkTZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3349653852\/1445813720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___Gg_Kk___","name":"\u2765 \uff95 .","id":1450893134,"id_str":"1450893134","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997659"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732988116992,"id_str":"663727732988116992","text":"@Q5aaC29SI8bhvwd \u307e\u305f\u6b21\u56de\u306b\u3067\u3082\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722779389243393,"in_reply_to_status_id_str":"663722779389243393","in_reply_to_user_id":4131329293,"in_reply_to_user_id_str":"4131329293","in_reply_to_screen_name":"Q5aaC29SI8bhvwd","user":{"id":106888009,"id_str":"106888009","name":"\u306e\u3061\u304a@\u306e\u3061\u30fc\u3075","screen_name":"notisora","location":"\u9ad8\u77e5","url":null,"description":"\u8da3\u5473\u306f\u30d0\u30b9\u91e3\u308a\u3001\u30b2\u30fc\u30e0(\u30d1\u30ba\u30c9\u30e9\u30fb\u767d\u732b\u30fb\u30e2\u30f3\u30b9\u30c8\u30fb\u30e2\u30f3\u30cf\u30f3\u30fb\u30de\u30a4\u30af\u30e9ps4\u7248\u30fb\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3) \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3067\u3059\uff3e\uff3e appbank\u3068apprime\u5fdc\u63f4\u3057\u3066\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":61,"friends_count":125,"listed_count":0,"favourites_count":253,"statuses_count":1281,"created_at":"Thu Jan 21 00:23:50 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"12B538","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647979561896968193\/dU7ghujP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647979561896968193\/dU7ghujP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106888009\/1446117984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Q5aaC29SI8bhvwd","name":"\u30df\u30b9\u30c9\u30f3","id":4131329293,"id_str":"4131329293","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997666"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967116800,"id_str":"663727732967116800","text":"@alaizamicah dikaba punta schl bukas? Hahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727144187465728,"in_reply_to_status_id_str":"663727144187465728","in_reply_to_user_id":2262716797,"in_reply_to_user_id_str":"2262716797","in_reply_to_screen_name":"alaizamicah","user":{"id":2974562785,"id_str":"2974562785","name":"Donna Navarro","screen_name":"donababesganda","location":null,"url":null,"description":"A girl with Super Powers\n\nIG:@donababesganda","protected":false,"verified":false,"followers_count":282,"friends_count":195,"listed_count":2,"favourites_count":2369,"statuses_count":2858,"created_at":"Sun Jan 11 09:15:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703032568262657\/CUS1T4eh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703032568262657\/CUS1T4eh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974562785\/1432194757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alaizamicah","name":"Alaiza Caringal \u2716\ufe0f","id":2262716797,"id_str":"2262716797","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967129089,"id_str":"663727732967129089","text":"@kie3017 \uc9c4\uc9dc \ub0b4\uc870\uac01 \uc544\ub2d9\ub2c8\uae4c... \ub9c8\uc74c\uc744 \uc900 \uc790... \ub298 \uc804\uc7c1\uc774\uba70 \uc774\ub7f0 \uac83\uc5d0 \ub300\ud574 \uc870\uc5b8\ud574\uc8fc\uace0... \uc774\ud574\ud574\uc8fc\uace0... \uadf8\ub7ec\ub2c8 \uc804\uc7c1 \uc911\uc5d0\ub3c4 \uc9c0\ub780\uc758 \uc5bc\uad74\uc774 \ub5a0\uc62c\ub77c \uc2b9\ub9ac \ud6c4 \ud55c\uc2dc\ubc14\uc090 \uc9c0\ub780\uc744 \ubcf4\ub7ec \uac00\uae30 \ubc14\ube74\uaca0\uc8e0... \uc2dc\uc120\ub9cc \ubd10\ub3c4 \uac19\uc740 \uac83\uc774 \ubcf4\uc77c\ud14c\uad6c..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727030903570432,"in_reply_to_status_id_str":"663727030903570432","in_reply_to_user_id":3307527174,"in_reply_to_user_id_str":"3307527174","in_reply_to_screen_name":"kie3017","user":{"id":3312201229,"id_str":"3312201229","name":"\uae40\uc2e0\ubd80\ub2d8\uaed8 \uad6c\ub9c8\ub2f9\ud560 \uae40\ub178\ub134","screen_name":"kimnoname23","location":"\uc7ac\ub9ac\ud544\ubaa8 \ud569\uc791 :: \uc554\uc0b4\uc628 \uc564\uc194 :: \ud558\ud53c\ub978 \uc564\uc194","url":"http:\/\/blog.naver.com\/wjsgywjd777","description":"a.k.a \ub77c\uc784 | \ud558\uc815\uc6b0 | \ubba8\ub3a1 | RPS & \ud06c\ub85c\uc2a4\uc624\ubc84 | \ud638\ubaa8\ud31d\ub2c8\ub2e4 | \ucd5c\uc560\ub978\ucabd | \ud504\ud14d\uc370\uacc4 @ssulofnoname | FUB free | \uba54\uc778\ud2b8\uc717 \ucc38\uace0","protected":false,"verified":false,"followers_count":32,"friends_count":61,"listed_count":0,"favourites_count":444,"statuses_count":2113,"created_at":"Tue Aug 11 06:24:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657590539739467776\/fS3s3fJq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657590539739467776\/fS3s3fJq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312201229\/1444665815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kie3017","name":"\uae00 \uc368\ub77c \uc3e0\ub77c","id":3307527174,"id_str":"3307527174","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971450368,"id_str":"663727732971450368","text":"RT @fsogindia: #FiftyShades \u2764 \n@FSOG_UK @AnaSGrey https:\/\/t.co\/5odSMYVFYb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2970894311,"id_str":"2970894311","name":"\u2764Dornan-Johnson\u2764","screen_name":"DamieSquad","location":"Peru","url":null,"description":"DAKOTA JOHNSON. JAMIE DORNAN.\nI'M DAMIE SHIPPER. I WILL NEVER CEASE TO BE DAMIE. \n**DAMIE FOREVER **","protected":false,"verified":false,"followers_count":1228,"friends_count":992,"listed_count":4,"favourites_count":5122,"statuses_count":5865,"created_at":"Sat Jan 10 04:41:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662021575571595269\/eRidQDj8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662021575571595269\/eRidQDj8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2970894311\/1446673217","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:12:22 +0000 2015","id":663418801241767936,"id_str":"663418801241767936","text":"#FiftyShades \u2764 \n@FSOG_UK @AnaSGrey https:\/\/t.co\/5odSMYVFYb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904328692,"id_str":"2904328692","name":"Fiftyshades India","screen_name":"fsogindia","location":"INDIA","url":"http:\/\/fiftyshadesindia.blogspot.com","description":"Twitter of Fifty Shades of Grey films @JamieDornan & Dakota Johnson based on the trilogy by @E_L_James (fansite) By DIVYA","protected":false,"verified":false,"followers_count":1387,"friends_count":74,"listed_count":10,"favourites_count":4506,"statuses_count":4731,"created_at":"Wed Nov 19 10:06:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637545493795504128\/2xKweWj9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637545493795504128\/2xKweWj9.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643079518719098880\/Cxg2u0kq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643079518719098880\/Cxg2u0kq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2904328692\/1442157061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":40,"entities":{"hashtags":[{"text":"FiftyShades","indices":[0,12]}],"urls":[],"user_mentions":[{"screen_name":"FSOG_UK","name":"Fifty Shades UK","id":2201873144,"id_str":"2201873144","indices":[16,24]},{"screen_name":"AnaSGrey","name":"Anastasia Steele","id":557142694,"id_str":"557142694","indices":[25,34]}],"symbols":[],"media":[{"id":663418786905612288,"id_str":"663418786905612288","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","url":"https:\/\/t.co\/5odSMYVFYb","display_url":"pic.twitter.com\/5odSMYVFYb","expanded_url":"http:\/\/twitter.com\/fsogindia\/status\/663418801241767936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663418786905612288,"id_str":"663418786905612288","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","url":"https:\/\/t.co\/5odSMYVFYb","display_url":"pic.twitter.com\/5odSMYVFYb","expanded_url":"http:\/\/twitter.com\/fsogindia\/status\/663418801241767936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FiftyShades","indices":[15,27]}],"urls":[],"user_mentions":[{"screen_name":"fsogindia","name":"Fiftyshades India","id":2904328692,"id_str":"2904328692","indices":[3,13]},{"screen_name":"FSOG_UK","name":"Fifty Shades UK","id":2201873144,"id_str":"2201873144","indices":[31,39]},{"screen_name":"AnaSGrey","name":"Anastasia Steele","id":557142694,"id_str":"557142694","indices":[40,49]}],"symbols":[],"media":[{"id":663418786905612288,"id_str":"663418786905612288","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","url":"https:\/\/t.co\/5odSMYVFYb","display_url":"pic.twitter.com\/5odSMYVFYb","expanded_url":"http:\/\/twitter.com\/fsogindia\/status\/663418801241767936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663418801241767936,"source_status_id_str":"663418801241767936","source_user_id":2904328692,"source_user_id_str":"2904328692"}]},"extended_entities":{"media":[{"id":663418786905612288,"id_str":"663418786905612288","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTv3yrUYAAvyaf.jpg","url":"https:\/\/t.co\/5odSMYVFYb","display_url":"pic.twitter.com\/5odSMYVFYb","expanded_url":"http:\/\/twitter.com\/fsogindia\/status\/663418801241767936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663418801241767936,"source_status_id_str":"663418801241767936","source_user_id":2904328692,"source_user_id_str":"2904328692"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079997662"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967129091,"id_str":"663727732967129091","text":"@areannaramsey #TacoEmojiEngine https:\/\/t.co\/FguNWGQcmo","source":"\u003ca href=\"http:\/\/www.icgroupinc.com\" rel=\"nofollow\"\u003eQWVR\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727730249310208,"in_reply_to_status_id_str":"663727730249310208","in_reply_to_user_id":2790398272,"in_reply_to_user_id_str":"2790398272","in_reply_to_screen_name":"areannaramsey","user":{"id":7831092,"id_str":"7831092","name":"Taco Bell","screen_name":"tacobell","location":"United States","url":"http:\/\/Ta.co","description":"Live M\u00e1s","protected":false,"verified":true,"followers_count":1615778,"friends_count":16,"listed_count":4356,"favourites_count":27905,"statuses_count":46196,"created_at":"Mon Jul 30 21:52:37 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449054545406996480\/COj6wwoP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449054545406996480\/COj6wwoP.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ECDAF4","profile_text_color":"3C1D59","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657627336477544449\/kPJ90OtW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657627336477544449\/kPJ90OtW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7831092\/1445625540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TacoEmojiEngine","indices":[15,31]}],"urls":[],"user_mentions":[{"screen_name":"areannaramsey","name":"vape snake","id":2790398272,"id_str":"2790398272","indices":[0,14]}],"symbols":[],"media":[{"id":662854598449721344,"id_str":"662854598449721344","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLuvs5UcAAvAFi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLuvs5UcAAvAFi.jpg","url":"https:\/\/t.co\/FguNWGQcmo","display_url":"pic.twitter.com\/FguNWGQcmo","expanded_url":"http:\/\/twitter.com\/tacobell\/status\/662854600341385216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662854600341385216,"source_status_id_str":"662854600341385216","source_user_id":7831092,"source_user_id_str":"7831092"}]},"extended_entities":{"media":[{"id":662854598449721344,"id_str":"662854598449721344","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLuvs5UcAAvAFi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLuvs5UcAAvAFi.jpg","url":"https:\/\/t.co\/FguNWGQcmo","display_url":"pic.twitter.com\/FguNWGQcmo","expanded_url":"http:\/\/twitter.com\/tacobell\/status\/662854600341385216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662854600341385216,"source_status_id_str":"662854600341385216","source_user_id":7831092,"source_user_id_str":"7831092"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971335680,"id_str":"663727732971335680","text":"\u0634\u0631\u0645\u0648\u0637\u0647 \u0648\u0627\u0626\u0644 \u0643\u0627\u062a\u0628 \u0639 \u0643\u0633\u0647\u0627 \u0648\u0637\u064a\u0632\u0647\u0627..https:\/\/t.co\/Wvfrho3Buf\n\n#xxx\n#\u062a\u0641\u0631\u064a\u0634\n#\u062f\u064a\u0648\u062b\nBNUQ https:\/\/t.co\/m84V4EBZn9","source":"\u003ca href=\"http:\/\/www.lawyer-wd.com\/\" rel=\"nofollow\"\u003e\u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u062d\u0628\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4109927778,"id_str":"4109927778","name":"\u0647\u0644\u0627\u0644\u064a \u0628\u0646\u0648 \u0639\u0631\u0627\u0628\u0629\u200f","screen_name":"matt_leod","location":"Saudi Arabia","url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":2,"favourites_count":0,"statuses_count":4284,"created_at":"Tue Nov 03 06:23:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663093743642214400\/TPQGjPs1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663093743642214400\/TPQGjPs1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"xxx","indices":[57,61]},{"text":"\u062a\u0641\u0631\u064a\u0634","indices":[62,68]},{"text":"\u062f\u064a\u0648\u062b","indices":[69,74]}],"urls":[{"url":"https:\/\/t.co\/Wvfrho3Buf","expanded_url":"http:\/\/goo.gl\/RDtWTo","display_url":"goo.gl\/RDtWTo","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663727732698689536,"id_str":"663727732698689536","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2zcUsAAQ2OZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2zcUsAAQ2OZ.jpg","url":"https:\/\/t.co\/m84V4EBZn9","display_url":"pic.twitter.com\/m84V4EBZn9","expanded_url":"http:\/\/twitter.com\/matt_leod\/status\/663727732971335680\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":598,"h":365,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727732698689536,"id_str":"663727732698689536","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2zcUsAAQ2OZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2zcUsAAQ2OZ.jpg","url":"https:\/\/t.co\/m84V4EBZn9","display_url":"pic.twitter.com\/m84V4EBZn9","expanded_url":"http:\/\/twitter.com\/matt_leod\/status\/663727732971335680\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":598,"h":365,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079997662"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732967084032,"id_str":"663727732967084032","text":"take my moneyyy \ud83c\udfb6\ud83d\udc83\n\nMONEY\u306b\u3074\u3063\u305f\u308a\u306e\u753b\u50cf\u898b\u3064\u3051\u307e\u3057\u305f\ud83d\udc31\n@5SOS @_5SOSjp https:\/\/t.co\/HWCKmrdtmS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3056350506,"id_str":"3056350506","name":"Ai","screen_name":"52a_toastt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":43,"friends_count":41,"listed_count":0,"favourites_count":147,"statuses_count":467,"created_at":"Mon Mar 02 14:28:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657392796429488128\/-qlWu_ck_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657392796429488128\/-qlWu_ck_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3056350506\/1445569494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[41,46]},{"screen_name":"_5SOSjp","name":"5SOS Japan","id":2363773704,"id_str":"2363773704","indices":[47,55]}],"symbols":[],"media":[{"id":663727732824502272,"id_str":"663727732824502272","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2z6UcAA6PkX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2z6UcAA6PkX.jpg","url":"https:\/\/t.co\/HWCKmrdtmS","display_url":"pic.twitter.com\/HWCKmrdtmS","expanded_url":"http:\/\/twitter.com\/52a_toastt\/status\/663727732967084032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":429,"h":574,"resize":"fit"},"large":{"w":429,"h":574,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727732824502272,"id_str":"663727732824502272","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2z6UcAA6PkX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2z6UcAA6PkX.jpg","url":"https:\/\/t.co\/HWCKmrdtmS","display_url":"pic.twitter.com\/HWCKmrdtmS","expanded_url":"http:\/\/twitter.com\/52a_toastt\/status\/663727732967084032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":429,"h":574,"resize":"fit"},"large":{"w":429,"h":574,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079997661"} +{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727732971470848,"id_str":"663727732971470848","text":"Happy birthday @willtiller_17 hope your day is as good as your whip https:\/\/t.co\/KkV3FqbzDg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261767526,"id_str":"2261767526","name":"Jake Arnold","screen_name":"JAKEARNOLD_15","location":null,"url":null,"description":"SMHS '17","protected":false,"verified":false,"followers_count":217,"friends_count":105,"listed_count":1,"favourites_count":4228,"statuses_count":637,"created_at":"Wed Dec 25 18:30:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658994979176607744\/f5U2oCaN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658994979176607744\/f5U2oCaN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261767526\/1445724499","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7142eb97ae21e839","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7142eb97ae21e839.json","place_type":"admin","name":"Georgia","full_name":"Georgia, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-85.605166,30.355644],[-85.605166,35.000771],[-80.742567,35.000771],[-80.742567,30.355644]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"willtiller_17","name":"Will Tiller","id":3621448092,"id_str":"3621448092","indices":[15,29]}],"symbols":[],"media":[{"id":663727650716844032,"id_str":"663727650716844032","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727650716844032\/pu\/img\/tmAyDxhxEO7EUCiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727650716844032\/pu\/img\/tmAyDxhxEO7EUCiw.jpg","url":"https:\/\/t.co\/KkV3FqbzDg","display_url":"pic.twitter.com\/KkV3FqbzDg","expanded_url":"http:\/\/twitter.com\/JAKEARNOLD_15\/status\/663727732971470848\/video\/1","type":"photo","sizes":{"medium":{"w":128,"h":224,"resize":"fit"},"thumb":{"w":128,"h":128,"resize":"crop"},"large":{"w":128,"h":224,"resize":"fit"},"small":{"w":128,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727650716844032,"id_str":"663727650716844032","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727650716844032\/pu\/img\/tmAyDxhxEO7EUCiw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727650716844032\/pu\/img\/tmAyDxhxEO7EUCiw.jpg","url":"https:\/\/t.co\/KkV3FqbzDg","display_url":"pic.twitter.com\/KkV3FqbzDg","expanded_url":"http:\/\/twitter.com\/JAKEARNOLD_15\/status\/663727732971470848\/video\/1","type":"video","sizes":{"medium":{"w":128,"h":224,"resize":"fit"},"thumb":{"w":128,"h":128,"resize":"crop"},"large":{"w":128,"h":224,"resize":"fit"},"small":{"w":128,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[4,7],"duration_millis":20000,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727650716844032\/pu\/vid\/128x224\/5qgHIDE2SuSAY7te.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727650716844032\/pu\/vid\/128x224\/5qgHIDE2SuSAY7te.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727650716844032\/pu\/pl\/iCjkWQG_3YTLPmYw.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727650716844032\/pu\/pl\/iCjkWQG_3YTLPmYw.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079997662"} +{"delete":{"status":{"id":660044618172604417,"id_str":"660044618172604417","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447079998091"}} +{"delete":{"status":{"id":536204953031671809,"id_str":"536204953031671809","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079998102"}} +{"delete":{"status":{"id":663722754345205760,"id_str":"663722754345205760","user_id":247639004,"user_id_str":"247639004"},"timestamp_ms":"1447079998242"}} +{"delete":{"status":{"id":663727657469804544,"id_str":"663727657469804544","user_id":3715097535,"user_id_str":"3715097535"},"timestamp_ms":"1447079998253"}} +{"delete":{"status":{"id":663724964722417665,"id_str":"663724964722417665","user_id":2465300530,"user_id_str":"2465300530"},"timestamp_ms":"1447079998376"}} +{"delete":{"status":{"id":663490482157191168,"id_str":"663490482157191168","user_id":397649139,"user_id_str":"397649139"},"timestamp_ms":"1447079998403"}} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737144745984,"id_str":"663727737144745984","text":"odeio mesmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699466646,"id_str":"2699466646","name":"mavi","screen_name":"readytodrew","location":"jb follows ","url":null,"description":"Eu sempre amei e vou amar, honestamente, verdadeiramente, completamente, voc\u00ea. @samboulouis","protected":false,"verified":false,"followers_count":6748,"friends_count":5912,"listed_count":143,"favourites_count":3923,"statuses_count":51562,"created_at":"Fri Jul 11 15:47:39 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572844278351540224\/cX4QyA9V.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572844278351540224\/cX4QyA9V.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662779784976560128\/HO1I4yU0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662779784976560128\/HO1I4yU0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2699466646\/1446854109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079998657"} +{"delete":{"status":{"id":663726021691219968,"id_str":"663726021691219968","user_id":2801653901,"user_id_str":"2801653901"},"timestamp_ms":"1447079998678"}} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737148997632,"id_str":"663727737148997632","text":"RT @1Dnoticia: \u00c1UDIO || Nick anunciando que os meninos participar\u00e3o do programa na pr\u00f3xima segunda-feira (16\/11) #4DaysUntilMITAM https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":461477073,"id_str":"461477073","name":"roberta","screen_name":"traficgrier","location":"7\/12 + andrea & sierra follows","url":null,"description":"magcon is heaven and hell at the same time but i love this guys so fucking bad%%","protected":false,"verified":false,"followers_count":6100,"friends_count":4433,"listed_count":14,"favourites_count":31099,"statuses_count":125919,"created_at":"Wed Jan 11 21:06:55 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592115651327590401\/akHR8V5K.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592115651327590401\/akHR8V5K.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663508055112474624\/nsewXi0I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663508055112474624\/nsewXi0I_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461477073\/1447079617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:56:16 +0000 2015","id":663686538857979904,"id_str":"663686538857979904","text":"\u00c1UDIO || Nick anunciando que os meninos participar\u00e3o do programa na pr\u00f3xima segunda-feira (16\/11) #4DaysUntilMITAM https:\/\/t.co\/YGCVQl6C2q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1705422776,"id_str":"1705422776","name":"1D Not\u00edcia","screen_name":"1Dnoticia","location":"E-mail: noticia1d@hotmail.com ","url":"http:\/\/1dnoticia.tumblr.com\/","description":"Sua melhor fonte sobre a banda One Direction e Zayn Malik no Brasil\/ Your best source about the boyband One Direction and Zayn Malik in Brazil | IG: 1dnoticia","protected":false,"verified":false,"followers_count":107829,"friends_count":1540,"listed_count":241,"favourites_count":14000,"statuses_count":127500,"created_at":"Tue Aug 27 19:14:22 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/489835555023118336\/1hZ1-dFN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/489835555023118336\/1hZ1-dFN.jpeg","profile_background_tile":false,"profile_link_color":"14767E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662992115929075713\/Qxs0wO20_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662992115929075713\/Qxs0wO20_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705422776\/1446904477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":202,"favorite_count":108,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[98,114]}],"urls":[{"url":"https:\/\/t.co\/YGCVQl6C2q","expanded_url":"http:\/\/otpwhatever.tumblr.com\/post\/132863454789","display_url":"otpwhatever.tumblr.com\/post\/132863454\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[113,129]}],"urls":[{"url":"https:\/\/t.co\/YGCVQl6C2q","expanded_url":"http:\/\/otpwhatever.tumblr.com\/post\/132863454789","display_url":"otpwhatever.tumblr.com\/post\/132863454\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"1Dnoticia","name":"1D Not\u00edcia","id":1705422776,"id_str":"1705422776","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079998658"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737157349376,"id_str":"663727737157349376","text":"@bodechapado poxa amg melhor esperador de lolzinho vc <3 falta umas 3 samerda.. A gente joga aram q vai mais rapido mas so da de noite :(","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726662765387776,"in_reply_to_status_id_str":"663726662765387776","in_reply_to_user_id":869794003,"in_reply_to_user_id_str":"869794003","in_reply_to_screen_name":"bodechapado","user":{"id":72360110,"id_str":"72360110","name":"Dipnorincus","screen_name":"po_ramon","location":"Rio de Janeiro - Brazil","url":null,"description":"eu to aqui e eu amei","protected":false,"verified":false,"followers_count":357,"friends_count":312,"listed_count":8,"favourites_count":830,"statuses_count":16275,"created_at":"Mon Sep 07 19:25:58 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/143725197\/macaco_andreletria_limpoo2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/143725197\/macaco_andreletria_limpoo2.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C4C4C4","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"474047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644309346332098561\/AnUi9Rc6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644309346332098561\/AnUi9Rc6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72360110\/1442450292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bodechapado","name":"Bruno m.","id":869794003,"id_str":"869794003","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079998660"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165713408,"id_str":"663727737165713408","text":"@maewenn_dml comment tu parles toi. \ud83d\ude21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663696726381961216,"in_reply_to_status_id_str":"663696726381961216","in_reply_to_user_id":3053665833,"in_reply_to_user_id_str":"3053665833","in_reply_to_screen_name":"maewenn_dml","user":{"id":481119410,"id_str":"481119410","name":"|\\|\u24d8\u00a9\u24de\u24db\u24d0\u24e2","screen_name":"Nicolhashtag","location":null,"url":null,"description":"#NikeFull #GeniusTime Snap: nyko93","protected":false,"verified":false,"followers_count":355,"friends_count":394,"listed_count":1,"favourites_count":716,"statuses_count":8028,"created_at":"Thu Feb 02 10:05:50 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503479841212362753\/0leDm67q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503479841212362753\/0leDm67q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481119410\/1411294813","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0e0fbf7208f46ce7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0e0fbf7208f46ce7.json","place_type":"city","name":"Levallois-Perret","full_name":"Levallois-Perret, Ile-de-France","country_code":"FR","country":"France","bounding_box":{"type":"Polygon","coordinates":[[[2.271076,48.885598],[2.271076,48.903621],[2.303818,48.903621],[2.303818,48.885598]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maewenn_dml","name":"M","id":3053665833,"id_str":"3053665833","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737144766464,"id_str":"663727737144766464","text":"\u0423\u0440\u043e\u0436\u0430\u0439 \u0441\u043e\u0431\u0440\u0430\u043d - 1 185 \u0435\u0434\u044b! \u0422\u044b \u0442\u043e\u0436\u0435 \u043f\u0440\u043e\u0432\u0435\u0440\u044c \u0441\u0432\u043e\u0438 \u0433\u0440\u044f\u0434\u043a\u0438! https:\/\/t.co\/IVO6811Gig #iphone, #iphonegames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3996230242,"id_str":"3996230242","name":"\u0415\u043b\u0435\u043d\u0430 \u043b\u0443\u0441\u0442","screen_name":"ZeakRXArBBlMWgL","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":660,"created_at":"Mon Oct 19 17:58:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iphone","indices":[81,88]},{"text":"iphonegames","indices":[90,102]},{"text":"gameinsight","indices":[104,116]}],"urls":[{"url":"https:\/\/t.co\/IVO6811Gig","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079998657"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178333184,"id_str":"663727737178333184","text":"RT @swtextpost: https:\/\/t.co\/Ik0MbJHA7K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2952958875,"id_str":"2952958875","name":"char","screen_name":"ageofevans","location":"wielding mj\u00f6lnir ","url":"http:\/\/www.science-me.com","description":"\u2735 i'm a mess but i do love chris evans \u2735","protected":false,"verified":false,"followers_count":1423,"friends_count":329,"listed_count":41,"favourites_count":37288,"statuses_count":41059,"created_at":"Wed Dec 31 12:10:29 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663355532548382720\/23Ux52X5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663355532548382720\/23Ux52X5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2952958875\/1446850554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:25:40 +0000 2015","id":663437247929184256,"id_str":"663437247929184256","text":"https:\/\/t.co\/Ik0MbJHA7K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317511829,"id_str":"3317511829","name":"sw text posts","screen_name":"swtextpost","location":"submissions open","url":null,"description":"star wars text posts (only some are mine) - @esbskysolo","protected":false,"verified":false,"followers_count":731,"friends_count":1,"listed_count":6,"favourites_count":5,"statuses_count":265,"created_at":"Mon Aug 17 06:09:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657837282204868608\/6Hy4TNKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657837282204868608\/6Hy4TNKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317511829\/1441775788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":58,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663437245941088257,"id_str":"663437245941088257","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","url":"https:\/\/t.co\/Ik0MbJHA7K","display_url":"pic.twitter.com\/Ik0MbJHA7K","expanded_url":"http:\/\/twitter.com\/swtextpost\/status\/663437247929184256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663437245941088257,"id_str":"663437245941088257","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","url":"https:\/\/t.co\/Ik0MbJHA7K","display_url":"pic.twitter.com\/Ik0MbJHA7K","expanded_url":"http:\/\/twitter.com\/swtextpost\/status\/663437247929184256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"swtextpost","name":"sw text posts","id":3317511829,"id_str":"3317511829","indices":[3,14]}],"symbols":[],"media":[{"id":663437245941088257,"id_str":"663437245941088257","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","url":"https:\/\/t.co\/Ik0MbJHA7K","display_url":"pic.twitter.com\/Ik0MbJHA7K","expanded_url":"http:\/\/twitter.com\/swtextpost\/status\/663437247929184256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}},"source_status_id":663437247929184256,"source_status_id_str":"663437247929184256","source_user_id":3317511829,"source_user_id_str":"3317511829"}]},"extended_entities":{"media":[{"id":663437245941088257,"id_str":"663437245941088257","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUAqP8VAAEjJFj.jpg","url":"https:\/\/t.co\/Ik0MbJHA7K","display_url":"pic.twitter.com\/Ik0MbJHA7K","expanded_url":"http:\/\/twitter.com\/swtextpost\/status\/663437247929184256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}},"source_status_id":663437247929184256,"source_status_id_str":"663437247929184256","source_user_id":3317511829,"source_user_id_str":"3317511829"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737173966848,"id_str":"663727737173966848","text":"@moeko_minnie \u540c\u3058\u304f\u65e5\u66dc\u65e5\u306b\u30a4\u30f3\u3057\u3066\u3044\u307e\u3057\u305f\u266a\u96e8\u5929\u3067\u3057\u305f\u304c\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u3068\u697d\u3057\u3081\u307e\u3057\u305f\u2606\n\u305d\u305d\u305d!!\u305d\u3046\u306a\u306e\u3067\u3059\u3063!!!!!\u30b7\u30e7\u30fc\u30d1\u30ec\u304b\u3089\u76ee\u304c\u96e2\u305b\u307e\u305b\u3093\u266a\u697d\u3057\u307f\u3067\u3059\u306d(o\u2267\u25bd\u309c)o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725669155672064,"in_reply_to_status_id_str":"663725669155672064","in_reply_to_user_id":1150192598,"in_reply_to_user_id_str":"1150192598","in_reply_to_screen_name":"moeko_minnie","user":{"id":1678138698,"id_str":"1678138698","name":"\u307f\u3063\u304d\u30fc\u307e\u3046\u305911\/14 15 20","screen_name":"holy_knight0827","location":null,"url":null,"description":"\u57fc\u7389\u770c\u4f4f\u307f\u306e\u30c7\u30a3\u30ba\u30cb\u30fc\u5927\u597d\u304d\u2606\u30df\u30ad\u30df\u30cb\u3001\u30c9\u30ca\u30c7\u30b8\u306e\u7d61\u307f\u3092\u898b\u308b\u3068\u5e78\u305b\uff5e\u266a\u30c7\u30a3\u30ba\u30cb\u30fc\u306e\u304a\u8a71\u5927\u597d\u304d\u3067\u3059\u266a\u6642\u3005\u9593\u9055\u308f\u308c\u307e\u3059\u304c\u7537\u6027\u3067\u3059\uff08~\u25bd~\uff20\uff09\u266a\u266a\u266a","protected":false,"verified":false,"followers_count":879,"friends_count":884,"listed_count":27,"favourites_count":42547,"statuses_count":17929,"created_at":"Sat Aug 17 12:56:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000571640309\/0f234930c0d07758d8e91eafac3fd92b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000571640309\/0f234930c0d07758d8e91eafac3fd92b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678138698\/1399375881","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"moeko_minnie","name":"\u3082\u3048\u307f\u306b\u2661\uff24\u57a2","id":1150192598,"id_str":"1150192598","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998664"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165713409,"id_str":"663727737165713409","text":"@dstevens30 Panthers just keep winning!! Feeling good about these next few weeks?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724873945100288,"in_reply_to_status_id_str":"663724873945100288","in_reply_to_user_id":257908983,"in_reply_to_user_id_str":"257908983","in_reply_to_screen_name":"dstevens30","user":{"id":588507819,"id_str":"588507819","name":"uSTADIUM","screen_name":"uSTADIUM","location":"New York, NY","url":"http:\/\/appstore.com\/ustadiumsports","description":"uSTADIUM is a social football app and network","protected":false,"verified":false,"followers_count":18349,"friends_count":16136,"listed_count":157,"favourites_count":14184,"statuses_count":250216,"created_at":"Wed May 23 16:57:37 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000052593590\/c1b8647342c612a6e6abe43490dae18f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000052593590\/c1b8647342c612a6e6abe43490dae18f.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660789765269299200\/tXk9YP86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660789765269299200\/tXk9YP86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588507819\/1436565973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dstevens30","name":"Dylan Stevens","id":257908983,"id_str":"257908983","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737153200128,"id_str":"663727737153200128","text":"RT @RotoChop_: \ud83c\udfb5\u00a1JOSE MOURINHO, JOSE MOURINHO, JOSE MOURINHO, JOSE MOURINHO! \ud83c\udfb5\n\nhttps:\/\/t.co\/d0YOj8cIsM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":430304394,"id_str":"430304394","name":"Isaac.","screen_name":"deejay_mero","location":"HDS\/CALIMERO - DIA","url":null,"description":"MADRIDISTA, TSO. AC\/DC UNA FAMILIA. MELENDISTA. Y ES QUE TENGO UN PROBLEMA, VOY DE BAR EN PEOR. DJ' AMATEUR. Ill SKRILLEX","protected":false,"verified":false,"followers_count":718,"friends_count":505,"listed_count":5,"favourites_count":6857,"statuses_count":28866,"created_at":"Wed Dec 07 00:42:41 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117101602\/e07da1a23296054f72895cfc141ce277.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117101602\/e07da1a23296054f72895cfc141ce277.jpeg","profile_background_tile":true,"profile_link_color":"990099","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"14CCB3","profile_text_color":"8A8521","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3497707535\/bd93883b0a75052a210759390c2c963c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3497707535\/bd93883b0a75052a210759390c2c963c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430304394\/1405149875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:30:23 +0000 2015","id":663513932942979072,"id_str":"663513932942979072","text":"\ud83c\udfb5\u00a1JOSE MOURINHO, JOSE MOURINHO, JOSE MOURINHO, JOSE MOURINHO! \ud83c\udfb5\n\nhttps:\/\/t.co\/d0YOj8cIsM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287875793,"id_str":"287875793","name":"RotoChop","screen_name":"RotoChop_","location":"Sentado en el retrete","url":"http:\/\/favstar.fm\/users\/RotoChop_","description":"\u00a1Oh, cagar! Dulce placer. ATLETI. Te queremos, te adoramos, junto a ti hasta morir\n\nhttp:\/\/instagram.com\/rotochop_","protected":false,"verified":false,"followers_count":30153,"friends_count":397,"listed_count":224,"favourites_count":4823,"statuses_count":19509,"created_at":"Mon Apr 25 21:02:29 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155886147\/jPnJkBzP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155886147\/jPnJkBzP.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494068358245924864\/hXTvYBmE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494068358245924864\/hXTvYBmE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287875793\/1360020448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":19,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d0YOj8cIsM","expanded_url":"https:\/\/vine.co\/v\/elm60OPz02U","display_url":"vine.co\/v\/elm60OPz02U","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d0YOj8cIsM","expanded_url":"https:\/\/vine.co\/v\/elm60OPz02U","display_url":"vine.co\/v\/elm60OPz02U","indices":[80,103]}],"user_mentions":[{"screen_name":"RotoChop_","name":"RotoChop","id":287875793,"id_str":"287875793","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079998659"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165737984,"id_str":"663727737165737984","text":"Around that time last year I went to Chris browns concert and I managed to go for free lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3427501342,"id_str":"3427501342","name":"Deseree Whaley","screen_name":"DesereeWhaley","location":"South Carolina, USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":80,"listed_count":1,"favourites_count":97,"statuses_count":333,"created_at":"Mon Aug 17 05:49:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633167366864678912\/fLc9r4kh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633167366864678912\/fLc9r4kh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3427501342\/1441341001","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737161445376,"id_str":"663727737161445376","text":"RT @mckwooody: Fave hobbies: \n1. Eating brunch\n2. Kissing boys","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1014159044,"id_str":"1014159044","name":"emma","screen_name":"emmabooze","location":"Monroe, WA","url":null,"description":"Passionate about Jesus, YL, kindness, ASB, and dogs\u2764\ufe0f","protected":false,"verified":false,"followers_count":639,"friends_count":478,"listed_count":4,"favourites_count":12258,"statuses_count":14084,"created_at":"Sun Dec 16 00:06:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567196304694972416\/N5CUkgTN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567196304694972416\/N5CUkgTN.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663560992417185792\/DaEPPa1e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663560992417185792\/DaEPPa1e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1014159044\/1446881280","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:51:18 +0000 2015","id":663609794033422337,"id_str":"663609794033422337","text":"Fave hobbies: \n1. Eating brunch\n2. Kissing boys","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86615765,"id_str":"86615765","name":"Mck","screen_name":"mckwooody","location":null,"url":null,"description":"dogs & tequila are very high on the list of things that i love","protected":false,"verified":false,"followers_count":915,"friends_count":514,"listed_count":2,"favourites_count":27781,"statuses_count":31557,"created_at":"Sat Oct 31 22:45:01 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5A5B5E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/86773553\/GetAttachment.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/86773553\/GetAttachment.jpg","profile_background_tile":false,"profile_link_color":"F25360","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"1B4A5E","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662118308833988608\/aH57jnq8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662118308833988608\/aH57jnq8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86615765\/1446696160","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"dd5ae04279be8230","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/dd5ae04279be8230.json","place_type":"city","name":"Monroe","full_name":"Monroe, WA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-122.047719,47.821674],[-122.047719,47.898082],[-121.926998,47.898082],[-121.926998,47.821674]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mckwooody","name":"Mck","id":86615765,"id_str":"86615765","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998661"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737153191936,"id_str":"663727737153191936","text":"\u0627\u0646\u0627 \u0643\u0634\u062e\u0635 \u0627\u0644\u064a \u0628\u064a\u0642\u062f\u0631\u0646\u064a \u0628\u0642\u062f\u0631\u0647 \u270b\u270b\n\u062e\u0644\u0635\u062a \u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2867250973,"id_str":"2867250973","name":"mohamed halima","screen_name":"mohamedhalima18","location":"mansoura - elsenblwain","url":null,"description":"19 sana - delta university fuclty of engineering-level1 - mohands so8ir lsa - ahlawy -madridy - diab -el king - angham - om colsoum - warda - single","protected":false,"verified":false,"followers_count":194,"friends_count":132,"listed_count":0,"favourites_count":701,"statuses_count":2102,"created_at":"Mon Oct 20 13:32:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620971837841874944\/UfZek4lq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620971837841874944\/UfZek4lq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2867250973\/1433572324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079998659"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737157251072,"id_str":"663727737157251072","text":"@SUPERTANEX \u4e86\u89e3\u3067\u3057\u305f\uff01BR\u6642\u770c\uff11\u30b9\u30c6\u30a3\u30fc\u30d6\u9023\u308c\u3066\u3044\u304d\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727569489915904,"in_reply_to_status_id_str":"663727569489915904","in_reply_to_user_id":68838003,"in_reply_to_user_id_str":"68838003","in_reply_to_screen_name":"SUPERTANEX","user":{"id":2546101085,"id_str":"2546101085","name":"\u3042\u3061\u3060\u3002","screen_name":"keiqn_","location":"Japan : Niigata \u21c6 Tokyo ","url":"https:\/\/youtu.be\/caF6nJxTejc","description":"\u9244\u62f37 \u767d\u864e.\u30e2\u30f3\u30b9\u30c8Rnk145.GTAv.cod.pso2es.","protected":false,"verified":false,"followers_count":132918,"friends_count":76,"listed_count":50,"favourites_count":24181,"statuses_count":46569,"created_at":"Wed May 14 00:18:03 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570954537549066240\/RnQaURVy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570954537549066240\/RnQaURVy.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658785585155338240\/cSBAXVwl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658785585155338240\/cSBAXVwl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2546101085\/1445560430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SUPERTANEX","name":"\uff34\uff21\uff2e\uff25\uff38","id":68838003,"id_str":"68838003","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998660"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737148801024,"id_str":"663727737148801024","text":"\u3053\u306b\u3083\u3055\u3093\u3059\u3063\u304b\u308a\u3053\u306b\u3083\u677e\u3055\u3093\u306b\u306a\u3063\u3066\u3057\u307e\u3064\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15021822,"id_str":"15021822","name":"\u8acc\u6708\u263a\u304f\u308c\u304b","screen_name":"kureka","location":"\u3055\u3044\u305f\u307e\u305f\u307e","url":"http:\/\/www5.airnet.ne.jp\/~krerik\/","description":"\u67d0\u6240\u3067\u30b2\u30fc\u30e0\u30d7\u30ed\u30b0\u30e9\u30de\u3057\u3066\u308b\u3001\u97f3\u7cfb\u30b5\u30fc\u30af\u30eb\u300cUnit GrowSphere\u300d\u306e\u4eba\u3002\u7d75\u3082\u63cf\u304d\u307e\u3059\u304c\u3001\u73fe\u5728\u8272\u3005\u3042\u3063\u3066\u6d3b\u52d5\u4f11\u6b62\u6c17\u5473\u3002\u672d\u5e4c\u751f\u307e\u308c\u5915\u5f35\u80b2\u3061\u3002\u751f\u304d\u7269\u597d\u304d\u306e\u30ab\u30e1\u30e9\u597d\u304d\u3067\u3001\u5199\u771f\uff08\u866b\u3084\u732b\u3068\u304b\uff09\u9023\u6295\u3042\u308a\u6ce8\u610f\u3002\u304a\u8fd4\u4e8b\u306f\u6c17\u307e\u3050\u308c\u3001\u30ea\u30e0\u30fc\u30d6\u306f\u304a\u5225\u308c\u3058\u3083\u306a\u3044\u3088\u6d3e\uff08\u307e\u305f\u6765\u3066\u306d\uff01\uff09\u3002\u305f\u3060\u3057\u904e\u5ea6\u306e\u5dfb\u304d\u8fbc\u307f\u30ea\u30d7\u3068\u304b\u30a2\u30ec\u306a\u30ea\u30d7\u306f\u30ad\u30e9\u30a4\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":2187,"friends_count":1544,"listed_count":214,"favourites_count":12114,"statuses_count":178572,"created_at":"Thu Jun 05 18:53:01 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"464C75","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104861791\/35e82eaec343ce6df82e6f262d5026cb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104861791\/35e82eaec343ce6df82e6f262d5026cb.png","profile_background_tile":true,"profile_link_color":"42A0CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CDD2FA","profile_text_color":"525682","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446670756278046720\/xZqzpABD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446670756278046720\/xZqzpABD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15021822\/1398348645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998658"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737161420800,"id_str":"663727737161420800","text":"\u2018Strictly\u2019 Peter \u2018In Tears\u2019 Over Live Tour\u00a0Conundrum https:\/\/t.co\/X5Jrr2hTUL","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52433786,"id_str":"52433786","name":"Kris & Becca Richens","screen_name":"RichensBlogs","location":"Wales, United Kingdom","url":"http:\/\/RichensBlogs.com","description":"#Christmas is coming so our blogs have been taken over by Santa & his Elves - PR Friendly","protected":false,"verified":false,"followers_count":188,"friends_count":229,"listed_count":5,"favourites_count":443,"statuses_count":2710,"created_at":"Tue Jun 30 16:02:57 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643721569735438336\/eHH6qeWL.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643721569735438336\/eHH6qeWL.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660898282600796160\/yfQOFC0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660898282600796160\/yfQOFC0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52433786\/1446405404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/X5Jrr2hTUL","expanded_url":"http:\/\/becca.richensblogs.com\/beccas-blog\/strictly-peter-in-tears-over-live-tour-conundrum\/","display_url":"becca.richensblogs.com\/beccas-blog\/st\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998661"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737144643585,"id_str":"663727737144643585","text":"RT @black_na_zatu: \u306a\u3093\u3067\u3053\u3093\u306a\u9053\u9078\u3093\u3060\u306e\u304b\u3063\u3066\n\u5f8c\u6094\u3057\u305f\u308a\u3059\u308b\u3002\n\n\u3067\u3082\u3044\u307e\u3055\u3089\u4ed6\u306e\u9053\u306a\u3093\u3066\u306a\u3044\u3002\n\n\u305d\u3046\u8003\u3048\u308b\u3068\n\u4eca\u3092\u7cbe\u4e00\u676f\u3084\u308a\u304d\u308d\u3046\u3063\u3066\u601d\u3048\u308b\u3060\u308d\uff1f https:\/\/t.co\/NprNF96MAa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1679867214,"id_str":"1679867214","name":"Taiga Watanabe","screen_name":"taigaohba","location":"\u85e4\u6ca2\u2192\u8305\u30f6\u5d0e","url":null,"description":"\u5927\u5ead #20\u2192#9 \u8305\u30f6\u5d0e\u897f\u6d5c #36\u2192#15 SG \/http:\/\/Instagram.com\/taigaohba \u5ca1\u672c\u98db\u7adc\u3001\u5bfa\u5712\u8129\u4eba\u3001\u7530\u4e2d\u5eb7\u4f51\u306a\u3069\u306e\u65b9\u3005\u5927\u597d\u304d\u3067\u3059\u3002\u30d0\u30b9\u30b1\u3057\u305f\u3044\u3002 #ballaholic","protected":false,"verified":false,"followers_count":762,"friends_count":516,"listed_count":1,"favourites_count":7727,"statuses_count":9642,"created_at":"Sun Aug 18 05:12:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661798541048676352\/mrlFKC-V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661798541048676352\/mrlFKC-V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1679867214\/1446626846","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:00:02 +0000 2015","id":663355299034607616,"id_str":"663355299034607616","text":"\u306a\u3093\u3067\u3053\u3093\u306a\u9053\u9078\u3093\u3060\u306e\u304b\u3063\u3066\n\u5f8c\u6094\u3057\u305f\u308a\u3059\u308b\u3002\n\n\u3067\u3082\u3044\u307e\u3055\u3089\u4ed6\u306e\u9053\u306a\u3093\u3066\u306a\u3044\u3002\n\n\u305d\u3046\u8003\u3048\u308b\u3068\n\u4eca\u3092\u7cbe\u4e00\u676f\u3084\u308a\u304d\u308d\u3046\u3063\u3066\u601d\u3048\u308b\u3060\u308d\uff1f https:\/\/t.co\/NprNF96MAa","source":"\u003ca href=\"https:\/\/twitter.com\/obgatlfbka\" rel=\"nofollow\"\u003eparial\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317149460,"id_str":"3317149460","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","screen_name":"black_na_zatu","location":null,"url":null,"description":"\u6bd2\u820c\u30c6\u30c7\u30a3\u30d9\u30a2\u300c\u30c6\u30c3\u30c9\u300d\u304c\u5c11\u3057\u30d6\u30e9\u30c3\u30af\u306a\u96d1\u5b66\u3092\u6559\u3048\u3066\u304f\u308c\u307e\u3059\u3002\u203b\u975e\u516c\u5f0f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":61332,"friends_count":0,"listed_count":215,"favourites_count":0,"statuses_count":150,"created_at":"Sun Aug 16 20:34:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317149460\/1444568111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1203,"favorite_count":2127,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663355298862665728,"id_str":"663355298862665728","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","url":"https:\/\/t.co\/NprNF96MAa","display_url":"pic.twitter.com\/NprNF96MAa","expanded_url":"http:\/\/twitter.com\/black_na_zatu\/status\/663355299034607616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663355298862665728,"id_str":"663355298862665728","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","url":"https:\/\/t.co\/NprNF96MAa","display_url":"pic.twitter.com\/NprNF96MAa","expanded_url":"http:\/\/twitter.com\/black_na_zatu\/status\/663355299034607616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"black_na_zatu","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","id":3317149460,"id_str":"3317149460","indices":[3,17]}],"symbols":[],"media":[{"id":663355298862665728,"id_str":"663355298862665728","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","url":"https:\/\/t.co\/NprNF96MAa","display_url":"pic.twitter.com\/NprNF96MAa","expanded_url":"http:\/\/twitter.com\/black_na_zatu\/status\/663355299034607616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663355299034607616,"source_status_id_str":"663355299034607616","source_user_id":3317149460,"source_user_id_str":"3317149460"}]},"extended_entities":{"media":[{"id":663355298862665728,"id_str":"663355298862665728","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS2ITSVEAAsld9.jpg","url":"https:\/\/t.co\/NprNF96MAa","display_url":"pic.twitter.com\/NprNF96MAa","expanded_url":"http:\/\/twitter.com\/black_na_zatu\/status\/663355299034607616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663355299034607616,"source_status_id_str":"663355299034607616","source_user_id":3317149460,"source_user_id_str":"3317149460"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998657"} +{"delete":{"status":{"id":663627312928157696,"id_str":"663627312928157696","user_id":382456770,"user_id_str":"382456770"},"timestamp_ms":"1447079998768"}} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737169797121,"id_str":"663727737169797121","text":"#InteriorDesign&StyleSOMADaily The King and I opened on Broadway on March 29, 1951, with a wide expectation of a hit by the press an...","source":"\u003ca href=\"http:\/\/janecary123456.webs.com\" rel=\"nofollow\"\u003ejanecary123456784\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315380560,"id_str":"3315380560","name":"Jonathan Davis","screen_name":"janecary123456","location":"United States","url":null,"description":"Lifelong coffee aficionado \u2726 Strengthening my weaknesses \u2726 Baseball fan \u2726 Paranormal romancer","protected":false,"verified":false,"followers_count":353,"friends_count":1168,"listed_count":46,"favourites_count":290,"statuses_count":3279,"created_at":"Tue Jun 09 16:46:42 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659317594835435520\/G1Hj_CDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659317594835435520\/G1Hj_CDD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"InteriorDesign","indices":[0,15]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998663"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178230784,"id_str":"663727737178230784","text":"RT @narendramodi: Key projects relating to electricity, renewable energy, irrigation, roads, telecom, railways came up for discussion at th\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1500488844,"id_str":"1500488844","name":"Nakli Sadhu","screen_name":"diwakarr85","location":null,"url":null,"description":"\u0964\u0964 Nakli Sadhu Asli Bhakt\n\u0964\u0964","protected":false,"verified":false,"followers_count":395,"friends_count":707,"listed_count":6,"favourites_count":4733,"statuses_count":9807,"created_at":"Tue Jun 11 06:27:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B34E00","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458297596864241664\/EdSKkFqm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458297596864241664\/EdSKkFqm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1500488844\/1399325830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:37:56 +0000 2015","id":663666825754906626,"id_str":"663666825754906626","text":"Key projects relating to electricity, renewable energy, irrigation, roads, telecom, railways came up for discussion at the meeting today.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18839785,"id_str":"18839785","name":"Narendra Modi","screen_name":"narendramodi","location":"India","url":"http:\/\/www.narendramodi.in","description":"Prime Minister of India","protected":false,"verified":true,"followers_count":15903174,"friends_count":1226,"listed_count":17364,"favourites_count":0,"statuses_count":9760,"created_at":"Sat Jan 10 17:18:56 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F4EDD4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562185004696875009\/DiiHx54g.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562185004696875009\/DiiHx54g.jpeg","profile_background_tile":false,"profile_link_color":"4E7096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5DFED","profile_text_color":"233863","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454954067488288768\/fU6NY-EI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454954067488288768\/fU6NY-EI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18839785\/1439641826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":810,"favorite_count":1385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"narendramodi","name":"Narendra Modi","id":18839785,"id_str":"18839785","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737182494720,"id_str":"663727737182494720","text":"@Writer_Mima \u064a\u0643\u0648\u0646 \u0648\u062c\u0648\u062f \u0627\u0644\u062c\u0627\u0646 \u0628\u0627\u0644\u062c\u0633\u062f \u0628\u0633\u0628\u0628 \u0627\u0644\u0633\u062d\u0631 \u0645\u062b\u0644\u064b\u0627 \u0644\u064a\u062e\u062f\u0645 \u0635\u0627\u062d\u0628\u0647 \u062b\u0645 \u064a\u062a\u062d\u0648\u0644 \u0627\u0644\u0649 \u0623\u0644\u0641\u0647 \u0648\u0645\u062d\u0628\u0647 \u0644\u0644\u062c\u0633\u062f \u0644\u0637\u0648\u0644 \u0628\u0642\u0627\u0621 \u0627\u0644\u0639\u0645\u0644 \u0627\u0644\u0633\u062d\u0631\u064a \u0647\u0630\u0627 \u062b\u0645 \u062a\u0633\u062a\u0645\u0631 \u0627\u0644\u0645\u0639\u0627\u0646\u0627\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726895045939200,"in_reply_to_status_id_str":"663726895045939200","in_reply_to_user_id":3321080726,"in_reply_to_user_id_str":"3321080726","in_reply_to_screen_name":"Writer_Mima","user":{"id":389407467,"id_str":"389407467","name":"\u0627\u0628\u0648\u0633\u0644\u0637\u0627\u0646","screen_name":"mezage0","location":"\u0627\u0644\u0631\u064a\u0627\u0636 + \u0627\u0644\u062f\u064a\u0631\u0647","url":null,"description":"\u0645\u062a\u0642\u0644\u0628 \u0628\u064a\u0646 \u0627\u0644\u062c\u062f \u0648\u0627\u0644\u0647\u0632\u0644 \u060c \u0627\u062d\u0628 \u0627\u0644\u0634\u0639\u0631 \u0648\u0627\u0644\u062a\u0642\u0646\u064a\u0647 \u0648\u0627\u0644\u062c\u062f\u0644 \u0648\u0635\u062f\u064a\u0642\u0646 \u0644\u0644\u0645\u0646\u0634\u0646 \u0648\u0627\u0644\u0627\u064a\u0641\u0648\u0646 \u0648\u0627\u0644\u0633\u064a\u0627\u0633\u0647 \u0627\u062d\u064a\u0627\u0646\u064b\u0627 \u0648\u0627\u0644\u062f\u064a\u0646 \u062f\u0627\u0626\u0645\u0627 \u0648\u0627\u063a\u0631\u062f \u0628\u0643\u0644 \u0634\u0626 \u064a\u0639\u062c\u0628\u0646\u064a","protected":false,"verified":false,"followers_count":3871,"friends_count":49,"listed_count":6,"favourites_count":1254,"statuses_count":26855,"created_at":"Wed Oct 12 11:14:21 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175874859\/FIWZ4dkc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175874859\/FIWZ4dkc.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ADBCBA","profile_text_color":"FFC1AE","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3171004532\/4f8fafd1519364f416618dbae6e67d86_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3171004532\/4f8fafd1519364f416618dbae6e67d86_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389407467\/1388508730","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Writer_Mima","name":"Mima_Story Writer","id":3321080726,"id_str":"3321080726","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079998666"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737182535680,"id_str":"663727737182535680","text":"RT @CallMeBlondie_: wish I had pizza","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339284718,"id_str":"339284718","name":"mer.","screen_name":"saiveley","location":null,"url":null,"description":"19 different w.a.y.s","protected":false,"verified":false,"followers_count":1572,"friends_count":1109,"listed_count":3,"favourites_count":6127,"statuses_count":11004,"created_at":"Wed Jul 20 21:29:51 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8FE0E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/749083417\/d462e223499e4df3479c8af77c7b6efe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/749083417\/d462e223499e4df3479c8af77c7b6efe.jpeg","profile_background_tile":true,"profile_link_color":"F22811","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B8B6ED","profile_text_color":"AD56AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401910301495296\/sieqIzBP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401910301495296\/sieqIzBP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339284718\/1446859565","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:54:21 +0000 2015","id":663625657683992576,"id_str":"663625657683992576","text":"wish I had pizza","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":315619543,"id_str":"315619543","name":"heathaa.","screen_name":"CallMeBlondie_","location":"atl","url":null,"description":"IG: headuuh","protected":false,"verified":false,"followers_count":1994,"friends_count":802,"listed_count":3,"favourites_count":1800,"statuses_count":80692,"created_at":"Sun Jun 12 05:13:15 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D60D0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616444307\/ru6ipmglykgdd9igomzk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616444307\/ru6ipmglykgdd9igomzk.jpeg","profile_background_tile":true,"profile_link_color":"524C52","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DB1818","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647468855795822592\/574fVczU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647468855795822592\/574fVczU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/315619543\/1432409651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CallMeBlondie_","name":"heathaa.","id":315619543,"id_str":"315619543","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998666"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165623296,"id_str":"663727737165623296","text":"RT @yasuoya0: 11\/14\u301c11\/23\u306b\u304b\u3051\u3066\u5e73\u5e74\u3088\u308a\u304b\u306a\u308a\u6c17\u6e29\u304c\u9ad8\u304f\u306a\u308b\u78ba\u7387\u304c30%\u4ee5\u4e0a\u3068\u3057\u3066\u9ad8\u6e29\u306b\u95a2\u3059\u308b\u7570\u5e38\u5929\u5019\u65e9\u671f\u8b66\u6212\u60c5\u5831\u767a\u8868\u3002\u65e5\u672c\u4ed8\u8fd1\u3067\u504f\u897f\u98a8\u304c\u5317\u306b\u86c7\u884c\u3059\u308b\u50be\u5411\u304c\u7d9a\u304f\u3002ECMWF\u306e10\u65e5\u5148\u306e\u4e88\u60f3\u56f3\u3067\u308211\/20\u9803\u307e\u3067\u306f\u5f37\u3044\u5bd2\u6c17\u306f\u5165\u3089\u306a\u3044\u4e88\u60f3 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1199381502,"id_str":"1199381502","name":"\u308a\u3093\u305f\u308d\u3046","screen_name":"Rinta123Satou","location":null,"url":null,"description":"\u660e\u660e \u2162-D\/ \u5c71 \/GReeeeN\/\u30a2\u30e9\u30a4\u30c6\u30f3\u30c8RIPEN\/\u5357\u30a2 \u8fb2\u9ce5\u5c0f\u5c4b\/\u6307\u8f2a\u7269\u8a9e\/WOT\/WOWS\/","protected":false,"verified":false,"followers_count":343,"friends_count":362,"listed_count":1,"favourites_count":2395,"statuses_count":602,"created_at":"Wed Feb 20 03:06:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/519517091133534208\/Wcm7qTpF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519517091133534208\/Wcm7qTpF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1199381502\/1441805246","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:36:05 +0000 2015","id":663696561612808192,"id_str":"663696561612808192","text":"11\/14\u301c11\/23\u306b\u304b\u3051\u3066\u5e73\u5e74\u3088\u308a\u304b\u306a\u308a\u6c17\u6e29\u304c\u9ad8\u304f\u306a\u308b\u78ba\u7387\u304c30%\u4ee5\u4e0a\u3068\u3057\u3066\u9ad8\u6e29\u306b\u95a2\u3059\u308b\u7570\u5e38\u5929\u5019\u65e9\u671f\u8b66\u6212\u60c5\u5831\u767a\u8868\u3002\u65e5\u672c\u4ed8\u8fd1\u3067\u504f\u897f\u98a8\u304c\u5317\u306b\u86c7\u884c\u3059\u308b\u50be\u5411\u304c\u7d9a\u304f\u3002ECMWF\u306e10\u65e5\u5148\u306e\u4e88\u60f3\u56f3\u3067\u308211\/20\u9803\u307e\u3067\u306f\u5f37\u3044\u5bd2\u6c17\u306f\u5165\u3089\u306a\u3044\u4e88\u60f3 https:\/\/t.co\/BueYnmQ4Rc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351926093,"id_str":"2351926093","name":"\u5927\u77e2@\u5c71\u5cb3\u6c17\u8c61\u4e88\u5831\u58eb","screen_name":"yasuoya0","location":"\u540d\u53e4\u5c4b","url":"http:\/\/ameblo.jp\/oyamano-kenki\/","description":"\u6c17\u8c61\u4e88\u5831\u58eb\u4f1a\u6771\u6d77\u652f\u90e8\u306e\u6709\u5fd7\u304c\u4f5c\u308bNPO\u306eWFT\u3067\u5c71\u5cb3\u9632\u707d\u306e\u6d3b\u52d5\u3092\u3057\u3066\u3044\u308b\u6c17\u8c61\u4e88\u5831\u58eb\u3067\u3059\u3002\u672c\u8077\u306f\u81ea\u52d5\u8eca\u95a2\u9023\u306e\u6280\u8853\u5c4b\u3002\u6bce\u9031\u672b\u306b\u30d6\u30ed\u30b0\u3067\u9031\u9593\u4e88\u5831\u3068\u5b63\u7bc0\u4e88\u5831\u306e\u89e3\u8aac\u3002\u7a7a\u624b(\u5927\u5b66\u306e\u9053\u5834\u306e\u30b3\u30fc\u30c1)\u3001\u7b4b\u30c8\u30ec(\u30d1\u30ef\u30fc\u30ea\u30d5\u30c6\u30a3\u30f3\u30b0\u306e\u5927\u4f1a\u53c2\u52a0)\u306a\u3069\u6b73\u306b\u8ca0\u3051\u305a\u9811\u5f35\u308b\u30aa\u30e4\u30b8\u3067\u3059\u3002\u30ad\u30ea\u30de\u30f3\u30b8\u30e3\u30ed\u30922\u56de\u767b\u9802\u3002","protected":false,"verified":false,"followers_count":2629,"friends_count":134,"listed_count":152,"favourites_count":855,"statuses_count":4019,"created_at":"Wed Feb 19 16:14:38 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436184425370365952\/eS4MjHng.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436184425370365952\/eS4MjHng.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436179242368237568\/MAQJrr_x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436179242368237568\/MAQJrr_x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351926093\/1398260304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696550686666752,"id_str":"663696550686666752","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":520,"resize":"fit"},"large":{"w":600,"h":520,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696550686666752,"id_str":"663696550686666752","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":520,"resize":"fit"},"large":{"w":600,"h":520,"resize":"fit"}}},{"id":663696550699274241,"id_str":"663696550699274241","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxcVEAEgE-e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxcVEAEgE-e.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":917,"h":749,"resize":"fit"},"small":{"w":340,"h":277,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yasuoya0","name":"\u5927\u77e2@\u5c71\u5cb3\u6c17\u8c61\u4e88\u5831\u58eb","id":2351926093,"id_str":"2351926093","indices":[3,12]}],"symbols":[],"media":[{"id":663696550686666752,"id_str":"663696550686666752","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":520,"resize":"fit"},"large":{"w":600,"h":520,"resize":"fit"}},"source_status_id":663696561612808192,"source_status_id_str":"663696561612808192","source_user_id":2351926093,"source_user_id_str":"2351926093"}]},"extended_entities":{"media":[{"id":663696550686666752,"id_str":"663696550686666752","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxZUsAAqJnF.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":520,"resize":"fit"},"large":{"w":600,"h":520,"resize":"fit"}},"source_status_id":663696561612808192,"source_status_id_str":"663696561612808192","source_user_id":2351926093,"source_user_id_str":"2351926093"},{"id":663696550699274241,"id_str":"663696550699274241","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsfxcVEAEgE-e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsfxcVEAEgE-e.jpg","url":"https:\/\/t.co\/BueYnmQ4Rc","display_url":"pic.twitter.com\/BueYnmQ4Rc","expanded_url":"http:\/\/twitter.com\/yasuoya0\/status\/663696561612808192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":917,"h":749,"resize":"fit"},"small":{"w":340,"h":277,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}},"source_status_id":663696561612808192,"source_status_id_str":"663696561612808192","source_user_id":2351926093,"source_user_id_str":"2351926093"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737182404609,"id_str":"663727737182404609","text":"RT @onlyshop2017: \u3010\u30c1\u30e3\u30fc\u30e01\u500b\u3011\u91d1\u5c5e\u30d1\u30fc\u30c4 \u30b4\u30fc\u30eb\u30c9 \u900f\u304b\u3057 \u82b1\u67c4 \u4e09\u65e5\u6708 \u30c1\u30e3\u30fc\u30e0 1\u500b\u3000 https:\/\/t.co\/tdbqEMwOES\n\n#onlyshop2013\n#\u30aa\u30f3\u30ea\u30fc\u30b7\u30e7\u30c3\u30d7 #\u30ec\u30b8\u30f3\n#\u30ec\u30b8\u30f3\u597d\u304d\u306a\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044 https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2796816846,"id_str":"2796816846","name":"\u3061\u3043\u307e\u308b\u3002","screen_name":"maryuchisa","location":" [97~98line \/ \u30d9\u30fc\u30b9]","url":null,"description":"\u300aTwitter\u3082\u3069\u308a\u307e\u3057\u305f\u3002\u300b\n\u306a\u304b\u306a\u304b\u4f1a\u3048\u306a\u3044\u3051\u308c\u3069\n\u9060\u304f\u304b\u3089\u5fdc\u63f4\u3057\u3066\u308b\u304b\u3089\u306d\u3002","protected":false,"verified":false,"followers_count":66,"friends_count":139,"listed_count":12,"favourites_count":188,"statuses_count":462,"created_at":"Sun Sep 07 23:38:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614814231901286400\/D9OXB0SS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614814231901286400\/D9OXB0SS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2796816846\/1435417303","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:43:53 +0000 2015","id":663683423718912000,"id_str":"663683423718912000","text":"\u3010\u30c1\u30e3\u30fc\u30e01\u500b\u3011\u91d1\u5c5e\u30d1\u30fc\u30c4 \u30b4\u30fc\u30eb\u30c9 \u900f\u304b\u3057 \u82b1\u67c4 \u4e09\u65e5\u6708 \u30c1\u30e3\u30fc\u30e0 1\u500b\u3000 https:\/\/t.co\/tdbqEMwOES\n\n#onlyshop2013\n#\u30aa\u30f3\u30ea\u30fc\u30b7\u30e7\u30c3\u30d7 #\u30ec\u30b8\u30f3\n#\u30ec\u30b8\u30f3\u597d\u304d\u306a\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044 https:\/\/t.co\/Mjm9UOHDAt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188358812,"id_str":"3188358812","name":"OnlyShop\u624b\u82b8\u30fb\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u5c02\u9580\u5e97","screen_name":"onlyshop2017","location":"\u5927\u962a\u5e9c","url":"http:\/\/onlyshop2013.jp\/","description":"UV\u30ec\u30b8\u30f3\u30a2\u30af\u30bb\u30b5\u30ea\u30fc \u624b\u82b8\u30fb\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u306e\u5c02\u9580\u5e97 \u5927\u962a\u304b\u3089\u5168\u56fd\u3078\u901a\u8ca9 \u9001\u6599120\u5186\uff5e","protected":false,"verified":false,"followers_count":1920,"friends_count":1958,"listed_count":7,"favourites_count":2,"statuses_count":606,"created_at":"Fri May 08 04:36:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640016845995507712\/AvCI1L1n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640016845995507712\/AvCI1L1n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188358812\/1431060260","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":6,"entities":{"hashtags":[{"text":"onlyshop2013","indices":[64,77]},{"text":"\u30aa\u30f3\u30ea\u30fc\u30b7\u30e7\u30c3\u30d7","indices":[78,87]},{"text":"\u30ec\u30b8\u30f3","indices":[88,92]},{"text":"\u30ec\u30b8\u30f3\u597d\u304d\u306a\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[93,107]}],"urls":[{"url":"https:\/\/t.co\/tdbqEMwOES","expanded_url":"http:\/\/onlyshop.ocnk.net\/product\/718","display_url":"onlyshop.ocnk.net\/product\/718","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663683421844058112,"id_str":"663683421844058112","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663683421844058112,"id_str":"663683421844058112","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}},{"id":663683422053752832,"id_str":"663683422053752832","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjlbUYAA4h9M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjlbUYAA4h9M.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"onlyshop2013","indices":[82,95]},{"text":"\u30aa\u30f3\u30ea\u30fc\u30b7\u30e7\u30c3\u30d7","indices":[96,105]},{"text":"\u30ec\u30b8\u30f3","indices":[106,110]},{"text":"\u30ec\u30b8\u30f3\u597d\u304d\u306a\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[111,125]}],"urls":[{"url":"https:\/\/t.co\/tdbqEMwOES","expanded_url":"http:\/\/onlyshop.ocnk.net\/product\/718","display_url":"onlyshop.ocnk.net\/product\/718","indices":[57,80]}],"user_mentions":[{"screen_name":"onlyshop2017","name":"OnlyShop\u624b\u82b8\u30fb\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u5c02\u9580\u5e97","id":3188358812,"id_str":"3188358812","indices":[3,16]}],"symbols":[],"media":[{"id":663683421844058112,"id_str":"663683421844058112","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663683423718912000,"source_status_id_str":"663683423718912000","source_user_id":3188358812,"source_user_id_str":"3188358812"}]},"extended_entities":{"media":[{"id":663683421844058112,"id_str":"663683421844058112","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjkpUsAAWFp_.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663683423718912000,"source_status_id_str":"663683423718912000","source_user_id":3188358812,"source_user_id_str":"3188358812"},{"id":663683422053752832,"id_str":"663683422053752832","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgjlbUYAA4h9M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgjlbUYAA4h9M.jpg","url":"https:\/\/t.co\/Mjm9UOHDAt","display_url":"pic.twitter.com\/Mjm9UOHDAt","expanded_url":"http:\/\/twitter.com\/onlyshop2017\/status\/663683423718912000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663683423718912000,"source_status_id_str":"663683423718912000","source_user_id":3188358812,"source_user_id_str":"3188358812"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998666"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737169833985,"id_str":"663727737169833985","text":"@AceRavi215 @RPN630_ \u30b7\u30ac\u3082\u3084\u3063\u305f\uff1f\u8a3a\u65ad\u30e1\u30fc\u30ab\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663318787932876800,"in_reply_to_status_id_str":"663318787932876800","in_reply_to_user_id":4103566634,"in_reply_to_user_id_str":"4103566634","in_reply_to_screen_name":"AceRavi215","user":{"id":3701559572,"id_str":"3701559572","name":"VIXX_LEO#Chained_up","screen_name":"J_TAEKWOON_O","location":"\ubcc4\ube5b\uc758 \uacc1\uc5d0","url":null,"description":"\ube45\uc2a4 \ub798\uc624\ubd07 \uc785\ub2c8\ub2e4. REAL\u2192 @JUNGTW_LEO","protected":false,"verified":false,"followers_count":95,"friends_count":73,"listed_count":2,"favourites_count":91,"statuses_count":2152,"created_at":"Sun Sep 27 08:05:33 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662964050075086848\/1UxsMVhD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662964050075086848\/1UxsMVhD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3701559572\/1446753115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AceRavi215","name":"RAVI #Chained_up","id":4103566634,"id_str":"4103566634","indices":[0,11]},{"screen_name":"RPN630_","name":"NNN #Chained_up","id":3945707719,"id_str":"3945707719","indices":[12,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998663"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737153040384,"id_str":"663727737153040384","text":"RT @cstanislawa2: \u3053\u3093\u306a\u304b\u308f\u3044\u3044\u5b50\u304c\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\u3063\u3066\uff01\uff01\uff01\n\n\u21d2https:\/\/t.co\/ClTGN7X51i\n\n\u6025\u3044\u3067\u304b\u308f\u3044\u3044\u5b50\u3092\u305f\u304f\u3055\u3093\u30b2\u30c3\u30c8\u3057\u3088\u3046\uff01\uff01\n\u30de\u30b8\u3067\u6700\u9ad8\u3084\uff01\uff01 https:\/\/t.co\/oIoqu4KwnN","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423772414,"id_str":"3423772414","name":"\u5bcc\u5ca1\u54f2\u53f8","screen_name":"pakina_e","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":358,"friends_count":884,"listed_count":0,"favourites_count":0,"statuses_count":12,"created_at":"Sat Aug 15 09:19:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643106241976242176\/V67MvTal_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643106241976242176\/V67MvTal_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:02 +0000 2015","id":663727503148630016,"id_str":"663727503148630016","text":"\u3053\u3093\u306a\u304b\u308f\u3044\u3044\u5b50\u304c\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\u3063\u3066\uff01\uff01\uff01\n\n\u21d2https:\/\/t.co\/ClTGN7X51i\n\n\u6025\u3044\u3067\u304b\u308f\u3044\u3044\u5b50\u3092\u305f\u304f\u3055\u3093\u30b2\u30c3\u30c8\u3057\u3088\u3046\uff01\uff01\n\u30de\u30b8\u3067\u6700\u9ad8\u3084\uff01\uff01 https:\/\/t.co\/oIoqu4KwnN","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3424487601,"id_str":"3424487601","name":"\u5c0f\u8c37\u4fe1\u592a","screen_name":"cstanislawa2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":360,"friends_count":937,"listed_count":2,"favourites_count":0,"statuses_count":10,"created_at":"Sat Aug 15 18:38:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642727740366426116\/0dhq8_Gf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642727740366426116\/0dhq8_Gf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ClTGN7X51i","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[23,46]}],"user_mentions":[],"symbols":[],"media":[{"id":663727502687252481,"id_str":"663727502687252481","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","url":"https:\/\/t.co\/oIoqu4KwnN","display_url":"pic.twitter.com\/oIoqu4KwnN","expanded_url":"http:\/\/twitter.com\/cstanislawa2\/status\/663727503148630016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":494,"resize":"fit"},"large":{"w":600,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":279,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727502687252481,"id_str":"663727502687252481","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","url":"https:\/\/t.co\/oIoqu4KwnN","display_url":"pic.twitter.com\/oIoqu4KwnN","expanded_url":"http:\/\/twitter.com\/cstanislawa2\/status\/663727503148630016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":494,"resize":"fit"},"large":{"w":600,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":279,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ClTGN7X51i","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[41,64]}],"user_mentions":[{"screen_name":"cstanislawa2","name":"\u5c0f\u8c37\u4fe1\u592a","id":3424487601,"id_str":"3424487601","indices":[3,16]}],"symbols":[],"media":[{"id":663727502687252481,"id_str":"663727502687252481","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","url":"https:\/\/t.co\/oIoqu4KwnN","display_url":"pic.twitter.com\/oIoqu4KwnN","expanded_url":"http:\/\/twitter.com\/cstanislawa2\/status\/663727503148630016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":494,"resize":"fit"},"large":{"w":600,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":279,"resize":"fit"}},"source_status_id":663727503148630016,"source_status_id_str":"663727503148630016","source_user_id":3424487601,"source_user_id_str":"3424487601"}]},"extended_entities":{"media":[{"id":663727502687252481,"id_str":"663727502687252481","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpalUsAE_hAY.jpg","url":"https:\/\/t.co\/oIoqu4KwnN","display_url":"pic.twitter.com\/oIoqu4KwnN","expanded_url":"http:\/\/twitter.com\/cstanislawa2\/status\/663727503148630016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":494,"resize":"fit"},"large":{"w":600,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":279,"resize":"fit"}},"source_status_id":663727503148630016,"source_status_id_str":"663727503148630016","source_user_id":3424487601,"source_user_id_str":"3424487601"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998659"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165606912,"id_str":"663727737165606912","text":"RT @Nao_s4512: \u30ef\u30e9\u30b5\u304f\u3093\u3068\u30d7\u30ea\u30af\u30e9\ud83d\ude02\ud83d\udc95\u7b11\n\n\u3059\u3063\u3074\u3093\u3060\u3057\u3001\u96e8\u306b\u6fe1\u308c\u3066\u9aea\u306e\u6bdb\u307c\u3055\u307c\u3055\u3060\u3051\u3069\u3044\u3044\u8a18\u5ff5\u2764\ufe0f https:\/\/t.co\/A3b4gJ8clk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2910856946,"id_str":"2910856946","name":"\u30b5\u30ad(11\/5 TOTALFAT)","screen_name":"YjbKkh35eCmKqXB","location":null,"url":"http:\/\/twpf.jp\/YjbKkh35eCmKqXB","description":"\u8077\u696d\u306f\u5973\u5b50\u5927\u751f\u3001\u5948\u826f\u5728\u4f4f\u3002\u300e\u5927\u597d\u304d\u3092\u4fe1\u3058\u3066\u300f","protected":false,"verified":false,"followers_count":152,"friends_count":189,"listed_count":6,"favourites_count":10944,"statuses_count":18598,"created_at":"Wed Nov 26 11:30:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620612299393400832\/SI_vY9Td_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620612299393400832\/SI_vY9Td_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2910856946\/1446741125","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:12:09 +0000 2015","id":663328149594222592,"id_str":"663328149594222592","text":"\u30ef\u30e9\u30b5\u304f\u3093\u3068\u30d7\u30ea\u30af\u30e9\ud83d\ude02\ud83d\udc95\u7b11\n\n\u3059\u3063\u3074\u3093\u3060\u3057\u3001\u96e8\u306b\u6fe1\u308c\u3066\u9aea\u306e\u6bdb\u307c\u3055\u307c\u3055\u3060\u3051\u3069\u3044\u3044\u8a18\u5ff5\u2764\ufe0f https:\/\/t.co\/A3b4gJ8clk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3658208354,"id_str":"3658208354","name":"\uff2e.S\u2661","screen_name":"Nao_s4512","location":null,"url":null,"description":"\u6d77\u3068\u304a\u9b5a\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u3066\u307e\u3059\u3002\u91e3\u308a\u3082\u6cf3\u3050\u306e\u3082\u5927\u597d\u304d\u3067\u3059\uff01\u8272\u3093\u306a\u304a\u9b5a\u3092\u91e3\u308a\u305f\u3044\u3002\u3068\u308a\u3042\u3048\u305a\u306f100\u76ee\u91e3\u308a\u305f\u3044\u306a\u3041\u3002\u5f8c\u306f\u5927\u304d\u3044\u30de\u30b0\u30ed\u3002@nao04050813","protected":false,"verified":false,"followers_count":264,"friends_count":38,"listed_count":0,"favourites_count":18,"statuses_count":44,"created_at":"Wed Sep 23 09:38:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663328316858896384\/uIxptmxD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663328316858896384\/uIxptmxD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3658208354\/1443001655","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4460,"favorite_count":2866,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663328142010945536,"id_str":"663328142010945536","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663328142010945536,"id_str":"663328142010945536","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}}},{"id":663328142010904576,"id_str":"663328142010904576","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIUcAA6J6z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIUcAA6J6z.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":640,"h":767,"resize":"fit"},"medium":{"w":600,"h":719,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663328142023462912,"id_str":"663328142023462912","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkLUEAAL5x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkLUEAAL5x3.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nao_s4512","name":"\uff2e.S\u2661","id":3658208354,"id_str":"3658208354","indices":[3,13]}],"symbols":[],"media":[{"id":663328142010945536,"id_str":"663328142010945536","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}},"source_status_id":663328149594222592,"source_status_id_str":"663328149594222592","source_user_id":3658208354,"source_user_id_str":"3658208354"}]},"extended_entities":{"media":[{"id":663328142010945536,"id_str":"663328142010945536","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIVEAAzFxs.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}},"source_status_id":663328149594222592,"source_status_id_str":"663328149594222592","source_user_id":3658208354,"source_user_id_str":"3658208354"},{"id":663328142010904576,"id_str":"663328142010904576","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkIUcAA6J6z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkIUcAA6J6z.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":640,"h":767,"resize":"fit"},"medium":{"w":600,"h":719,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663328149594222592,"source_status_id_str":"663328149594222592","source_user_id":3658208354,"source_user_id_str":"3658208354"},{"id":663328142023462912,"id_str":"663328142023462912","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSdbkLUEAAL5x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSdbkLUEAAL5x3.jpg","url":"https:\/\/t.co\/A3b4gJ8clk","display_url":"pic.twitter.com\/A3b4gJ8clk","expanded_url":"http:\/\/twitter.com\/Nao_s4512\/status\/663328149594222592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}},"source_status_id":663328149594222592,"source_status_id_str":"663328149594222592","source_user_id":3658208354,"source_user_id_str":"3658208354"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165750273,"id_str":"663727737165750273","text":"@kystikata I can imagine there being some charas and designs that'd appeal to you too!!! (CAUSE I CAN IMAGINE IN YOUR STYLE)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727441601503233,"in_reply_to_status_id_str":"663727441601503233","in_reply_to_user_id":1245094308,"in_reply_to_user_id_str":"1245094308","in_reply_to_screen_name":"kystikata","user":{"id":18166758,"id_str":"18166758","name":"mawnuh m'deer \u2763","screen_name":"muhdeer","location":"Middle Earth\/Thedas","url":"http:\/\/mawnuh.flavors.me\/","description":"I am Solast. +*+","protected":false,"verified":false,"followers_count":630,"friends_count":459,"listed_count":8,"favourites_count":24650,"statuses_count":50039,"created_at":"Tue Dec 16 17:19:54 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510138922781769728\/F6UZK1nf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510138922781769728\/F6UZK1nf.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0C5DE","profile_text_color":"78687A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662773497270296576\/WEKQb3YJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662773497270296576\/WEKQb3YJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18166758\/1443677645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kystikata","name":"KATAsunemaru","id":1245094308,"id_str":"1245094308","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737169797120,"id_str":"663727737169797120","text":"@r_k_ry_ \n\n\u3046\u3093\u30fc\u30fc\u2764\u3042\u308a\u304c\u3068\u3046\u2764\n\n\u81ea\u7136\u306b\u3048\u308a\u305f\u3093\u53d7\u3051\u5165\u308c\u3066\u305f\u81ea\u5206\u7b11\u3046w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727614633181184,"in_reply_to_status_id_str":"663727614633181184","in_reply_to_user_id":3186340105,"in_reply_to_user_id_str":"3186340105","in_reply_to_screen_name":"r_k_ry_","user":{"id":67339727,"id_str":"67339727","name":"\u98f4\u7389\u306eeri\uff03\u2661\u2445\u25e1\u0308*\u51ac\u7720\u6e96\u5099","screen_name":"eri0919","location":"\u304a\u304a\u3044\u308f\u306f\u5fc3\u306e\u3075\u308b\u3055\u3068\u2661\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u306d","url":"http:\/\/twpf.jp\/eri0919","description":"BUMP\u304c\u5927\u597d\u304d\u306a\u3042\u306a\u305f(\u2229\u00b4\u2200`\u2229\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u30fc\u2661\u7121\u8a00\u3075\u3049\u308d\u30fc\u3082\u6b53\u8fce\u3067\u3059(*\u02ca\u0ae2\u1d55\u02cb\u0ae2*)BUMP\u597d\u304d\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\u30ea\u30d7\u3075\u3041\u307cRT\u3082\u5927\u6b53\u8fce\u2661\u3069\u3093\u3069\u3093\u7d61\u3093\u3067\u306d(*\u2022\u0300\u1d17\u2022\u0301*)\u0648\u98f4\u7389\u306e\u5504\u3068embrace\u304c\u4e09\u5ea6\u306e\u98ef\u3088\u308a\u5927\u597d\u304d\u2764\ufe0e \u30df\u30e5\u30fc\u30c8\u306b\u3059\u308b\u306a\u3089\u30ea\u30e0\u3063\u3066\uff01\u30a2\u30fc\u5199\u6016\u3044\u753b\u50cf\u52d5\u753b\u8f09\u305b\u305f\u308aRT\u3059\u308b\u4eba\u306f\u554f\u7b54\u7121\u7528\u3067\u30d6\u30ed\u30c3\u30af\uff01","protected":false,"verified":false,"followers_count":2034,"friends_count":2005,"listed_count":65,"favourites_count":17569,"statuses_count":35337,"created_at":"Thu Aug 20 15:17:16 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620957482085543937\/ETpx6g9S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620957482085543937\/ETpx6g9S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67339727\/1443099005","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"r_k_ry_","name":"\u308a\u304b\u308a\u30fc\u306f\u3088\u30fc\u307a\u304c\u5fc3\u914d","id":3186340105,"id_str":"3186340105","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998663"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165783040,"id_str":"663727737165783040","text":"RT @goooglegoood: #\u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629_\u0646\u0631\u064a\u062f\u0647\u0627_\u0645\u062d\u0627\u0641\u0638\u0629\n\u0627\u0642\u062f\u0645 \u0645\u0631\u0643\u0632 \u0641\u064a \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\u062a\u0627\u0633\u0633\u062a \u0633\u0646\u0629 \u0661\u0663\u0665\u0668 \u0647\u062c\u0631\u064a \u0641\u062d\u0627\u0646 \u0627\u0644\u0648\u0642\u062a\n\u0637\u0628\u0631\u062c\u0644\n\u0627\u0644\u0642\u0631\u064a\u0627\u062a\n\u0633\u0643\u0627\u0643\u0627\n\u062f\u0648\u0645\u0629 \u0627\u0644\u062c\u0646\u062f\u0644\n\u0627\u0644\u0631\u064a\u0627\u0636 https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":855265645,"id_str":"855265645","name":"\u0633\u0644\u0637\u0627\u0646 \u0627\u0644\u062f\u0648\u0643\u0629","screen_name":"tcrsh","location":"#\u062c\u0648\u0627\u0644_\u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629 ksa_014657@","url":null,"description":"\u0633\u0644\u0637\u0627\u0646 \u0645\u0633\u0644\u0645 _\u0645\u0631\u0643\u0632 \u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629_\u0634\u0645\u0627\u0644 \u0627\u0644\u0645\u0645\u0644\u0643\u0647 _\u062f\u064a\u0627\u0631 \u0627\u0644\u0634\u0631\u0627\u0631\u062a_ \u0627\u0647\u0644\u0627\u064b \u0628\u0627\u0644\u062c\u0645\u064a\u0639 .","protected":false,"verified":false,"followers_count":4112,"friends_count":3327,"listed_count":4,"favourites_count":529,"statuses_count":16693,"created_at":"Sun Sep 30 19:48:46 +0000 2012","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646058212668534784\/Q7FGYVM__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646058212668534784\/Q7FGYVM__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/855265645\/1417817479","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:47:29 +0000 2015","id":663639032174391296,"id_str":"663639032174391296","text":"#\u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629_\u0646\u0631\u064a\u062f\u0647\u0627_\u0645\u062d\u0627\u0641\u0638\u0629\n\u0627\u0642\u062f\u0645 \u0645\u0631\u0643\u0632 \u0641\u064a \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\u062a\u0627\u0633\u0633\u062a \u0633\u0646\u0629 \u0661\u0663\u0665\u0668 \u0647\u062c\u0631\u064a \u0641\u062d\u0627\u0646 \u0627\u0644\u0648\u0642\u062a\n\u0637\u0628\u0631\u062c\u0644\n\u0627\u0644\u0642\u0631\u064a\u0627\u062a\n\u0633\u0643\u0627\u0643\u0627\n\u062f\u0648\u0645\u0629 \u0627\u0644\u062c\u0646\u062f\u0644\n\u0627\u0644\u0631\u064a\u0627\u0636 https:\/\/t.co\/2fIM2IeRS0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051914396,"id_str":"3051914396","name":"\u064a\u0632\u0646 \u0627\u0644\u0634\u0631\u0627\u0631\u064a +56","screen_name":"goooglegoood","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647","url":null,"description":"\u0630\u0643\u0631 \u06a4\u0623\u0646 \u0627\u0644\u0630\u0643\u0631 \u062a\u0646\u0641\u0639 \u0627\u0644\u0645\u0624\u0645\u0646\u064a\u0646 \u0648\u0645\u0627\u0643\u0627\u0646 \u0627\u0644\u0644\u0647 \u0645\u0639\u0630\u0628\u0647\u0645 \u0648\u0647\u0645 \u064a\u0633\u062a\u063a\u0641\u0631\u0648\u0646#\u0627\u0646\u0627 \u0648\u0627\u0646\u062a \u0645\u062d\u0627\u0633\u0628\u064a\u0646 \u0644\u0645\u0627 \u0646\u0643\u062a\u0628","protected":false,"verified":false,"followers_count":1643,"friends_count":1636,"listed_count":0,"favourites_count":2025,"statuses_count":2774,"created_at":"Sun Mar 01 05:43:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625388956524253184\/lIxLhrOd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625388956524253184\/lIxLhrOd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051914396\/1437939322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629_\u0646\u0631\u064a\u062f\u0647\u0627_\u0645\u062d\u0627\u0641\u0638\u0629","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663638997848207360,"id_str":"663638997848207360","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663638997848207360,"id_str":"663638997848207360","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663638995075792896,"id_str":"663638995075792896","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JmCXAAAezO5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JmCXAAAezO5.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0639\u064a\u0633\u0627\u0648\u064a\u0629_\u0646\u0631\u064a\u062f\u0647\u0627_\u0645\u062d\u0627\u0641\u0638\u0629","indices":[18,42]}],"urls":[],"user_mentions":[{"screen_name":"goooglegoood","name":"\u064a\u0632\u0646 \u0627\u0644\u0634\u0631\u0627\u0631\u064a +56","id":3051914396,"id_str":"3051914396","indices":[3,16]}],"symbols":[],"media":[{"id":663638997848207360,"id_str":"663638997848207360","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663639032174391296,"source_status_id_str":"663639032174391296","source_user_id":3051914396,"source_user_id_str":"3051914396"}]},"extended_entities":{"media":[{"id":663638997848207360,"id_str":"663638997848207360","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JwXWsAAg39p.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663639032174391296,"source_status_id_str":"663639032174391296","source_user_id":3051914396,"source_user_id_str":"3051914396"},{"id":663638995075792896,"id_str":"663638995075792896","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4JmCXAAAezO5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4JmCXAAAezO5.jpg","url":"https:\/\/t.co\/2fIM2IeRS0","display_url":"pic.twitter.com\/2fIM2IeRS0","expanded_url":"http:\/\/twitter.com\/goooglegoood\/status\/663639032174391296\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663639032174391296,"source_status_id_str":"663639032174391296","source_user_id":3051914396,"source_user_id_str":"3051914396"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737174003713,"id_str":"663727737174003713","text":"\u3084\u3063\u305f\u660e\u65e5\u306e\u30ef\u30f3\u30c9\u30ed\u304a\u984c\u30d5\u30e9\u30f3\u3061\u3083\u3093\u3060\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320982942,"id_str":"3320982942","name":"\u305f\u307e","screen_name":"hiroshige_36","location":"\u30a2\u30b5\u30ae\u30b7\u30c6\u30a3","url":"http:\/\/www.pixiv.net\/member.php?id=15468115","description":"18\u2191\/\u6771\u65b9\u3068pkmn(\u64ec\u3042\u308a)\u3067\u3061\u307e\u3061\u307e\u7d75\u3092\u63cf\u3044\u3066\u3044\u307e\u3059\u3002\u30ba\u30df\u3055\u3093\u304c\u3068\u3066\u3082\u597d\u304d\u3002\n\u6700\u8fd1\u306f\u30ea\u30e1\u30ed\u30b1\u656c\u8a9e\u5e79\u90e8\u3082\u597d\u304d\u3002\n(\u6771\u65b9\u95a2\u9023\u306f\u57fa\u672c\u7684\u306b\u30d5\u30a9\u30ed\u30d0\u81f4\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3001\u3054\u3081\u3093\u306a\u3055\u3044\u3002)","protected":false,"verified":false,"followers_count":33,"friends_count":15,"listed_count":3,"favourites_count":247,"statuses_count":575,"created_at":"Thu Aug 20 06:59:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647302588333821952\/oz51q3N8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647302588333821952\/oz51q3N8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320982942\/1442752986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998664"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737157214208,"id_str":"663727737157214208","text":"RT @amaretto319: \u79c1\u306f\u4ee5\u524d\u6388\u696d\u3067\u805e\u3044\u305f\u300c\u7518\u3048\u306f\u81ea\u5206\u306b\u3067\u304d\u306a\u3044\u4e8b\u3092\u4ed6\u4eba\u306b\u304a\u9858\u3044\u3059\u308b\u3082\u306e\u3067\u306f\u306a\u3044\u3002\u305d\u308c\u306f\u983c\u308b\u3068\u8a00\u3044\u307e\u3059\u3002\u7518\u3048\u3068\u306f\u81ea\u5206\u3067\u3067\u304d\u308b\u4e8b\u3092\u3042\u3048\u3066\u4ed6\u4eba\u306b\u3057\u3066\u3082\u3089\u3046\u884c\u70ba\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u7518\u3048\u3068\u983c\u308b\u306e\u3092\u6df7\u540c\u3057\u306a\u3044\u300d\u304c\u597d\u304d\u3067\u3001\u305d\u308c\u4ee5\u6765\u65e6\u90a3\u306b\u30a2\u30a4\u30b9\u3092\u8cb7\u3063\u3066\u304d\u3066\u3082\u3089\u3046\u6642\u306a\u3069\u3001\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80290934,"id_str":"80290934","name":"\u723a\u30df\u30e4\u63d0\u7763@\u6b66\u8535\uff77\uff80\uff71\u304a\u723a\u306f\uff7a\uff88\uff6a\uff74\uff74\uff74","screen_name":"fumicom","location":"\u30a8\u30eb\u30ea\u770c\u5728\u4f4f\u30a2\u30eb\u30df\u30cb\u30b9\u30c8","url":null,"description":"D\u30aa\u30bf\u8150\u6392\u7403(\u65e5\u5f71\u65e5BSR(\u677e\u6c38\u95a2\u30b1\u539f.F\/Z(\u30a4\u30b9\u30a6\u30a7\u30a4\u30a4\u30b9\u2161)\u9ed2\u30d0\u30b9(\u9ad8\u7dd1\u9ad8)\u9032\u6483(\u30a8\u30eb\u30ea\u30a8\u30ec\u30ea\u30a2\u30eb\u30df\u30f3)\u3077\u3088\u30af\u30a8(\u30d5\u30a7\u30ec\u30e0\u30a8\u30b3\u308a\u3093)\u6f2b\u753b\u3068\u30a2\u30cb\u30e1\u3068\u821e\u53f0\u304c\u5fc3\u306e\u6f64\u3044\u3042\u3068\u57f7\u4e8b\u3068\u30e1\u30a4\u30c9\u30aa\u30b9\u30b9\u30e1\u306f\u30d6\u30ed\u30c3\u30af","protected":false,"verified":false,"followers_count":595,"friends_count":2008,"listed_count":13,"favourites_count":11568,"statuses_count":27626,"created_at":"Tue Oct 06 12:37:41 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF093","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/857535069\/e9df3f1997421a798164f7dd9f838c95.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/857535069\/e9df3f1997421a798164f7dd9f838c95.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448502028717674496\/Ltp1US9D_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448502028717674496\/Ltp1US9D_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80290934\/1419506208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:36:38 +0000 2015","id":663560803283406849,"id_str":"663560803283406849","text":"\u79c1\u306f\u4ee5\u524d\u6388\u696d\u3067\u805e\u3044\u305f\u300c\u7518\u3048\u306f\u81ea\u5206\u306b\u3067\u304d\u306a\u3044\u4e8b\u3092\u4ed6\u4eba\u306b\u304a\u9858\u3044\u3059\u308b\u3082\u306e\u3067\u306f\u306a\u3044\u3002\u305d\u308c\u306f\u983c\u308b\u3068\u8a00\u3044\u307e\u3059\u3002\u7518\u3048\u3068\u306f\u81ea\u5206\u3067\u3067\u304d\u308b\u4e8b\u3092\u3042\u3048\u3066\u4ed6\u4eba\u306b\u3057\u3066\u3082\u3089\u3046\u884c\u70ba\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u7518\u3048\u3068\u983c\u308b\u306e\u3092\u6df7\u540c\u3057\u306a\u3044\u300d\u304c\u597d\u304d\u3067\u3001\u305d\u308c\u4ee5\u6765\u65e6\u90a3\u306b\u30a2\u30a4\u30b9\u3092\u8cb7\u3063\u3066\u304d\u3066\u3082\u3089\u3046\u6642\u306a\u3069\u3001\u3053\u308c\u306f\u7518\u3048\u3060\u306a\u304f\u3075\u3075\u3068\u307b\u304f\u305d\u7b11\u3093\u3067\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237690818,"id_str":"237690818","name":"\u30a2\u30de\u30ec\u30c3\u30c8","screen_name":"amaretto319","location":null,"url":"http:\/\/bookworm522.blog.fc2.com\/","description":"\u7f8e\u5473\u3057\u3044\u304a\u9152\u3068\u672c\u3001\u304b\u308f\u3044\u3044\u5a18\u9054\u304c\u3044\u308c\u3070\u5e78\u305b\u3002\u5e7c\u7a1a\u5712\u306e\u904a\u3073\u306f\u300c\u821e\u8e0f\u4f1a\u300d\u30de\u30a4\u30d6\u30fc\u30e0\u300c\u30d1\u30fc\u30c6\u30a3\u30fc\u306e\u62db\u5f85\u72b6\u4f5c\u308a\u300d\u306a\u30d7\u30ea\u30f3\u30bb\u30b9\u9858\u671b\u306e\u4e0a\u306e\u5a184\u6b73\uff08\u3046\u3045\uff09\u3068 \u3001\u9996\u3075\u308a\u3092\u899a\u3048\u300c\u3046\u3046\u3093\u300d\u306e\u6642\u306f\u30d8\u30c3\u30c9\u30d0\u30f3\u30ad\u30f3\u30b0\u4e26\u306b\u632f\u308a\u307e\u304f\u308b\u4e0b\u306e\u5a181\u6b73\uff08\u3057\u3043\uff09\u3092\u3086\u308b\u3086\u308b\u80b2\u3066\u4e2d\u3002 \u30a2\u30a4\u30b3\u30f3\u306f\u3046\u3045\u304c\u63cf\u3044\u3066\u304f\u308c\u305f\u30de\u30de\u3001\u80cc\u666f\u306f\u30de\u30de\u304c\u63cf\u3044\u305f\u3057\u3043\u3002\u66f8\u8a55\u30d6\u30ed\u30b0\u307b\u307c\u4f11\u6b62\u4e2d","protected":false,"verified":false,"followers_count":460,"friends_count":60,"listed_count":7,"favourites_count":393,"statuses_count":5685,"created_at":"Thu Jan 13 12:03:47 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563662390810521600\/eB3ohslk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563662390810521600\/eB3ohslk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237690818\/1435606812","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11435,"favorite_count":11456,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amaretto319","name":"\u30a2\u30de\u30ec\u30c3\u30c8","id":237690818,"id_str":"237690818","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998660"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165615104,"id_str":"663727737165615104","text":"@KIKIperformance \u308f\u3044\u3082\u6628\u65e5\u884c\u3063\u305f\ud83d\udc40\u3081\u3066\u3083\u6df7\u3093\u3067\u305f\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663240520580247552,"in_reply_to_status_id_str":"663240520580247552","in_reply_to_user_id":3251766966,"in_reply_to_user_id_str":"3251766966","in_reply_to_screen_name":"KIKIperformance","user":{"id":3219433442,"id_str":"3219433442","name":"\uff8a\uff86\u677e","screen_name":"hachi_phototter","location":"6D 60D kissDN E-M10","url":"https:\/\/instagram.com\/hascosta","description":"\u304a\u306f\u306b\u30fc\u2606","protected":false,"verified":false,"followers_count":311,"friends_count":416,"listed_count":21,"favourites_count":32920,"statuses_count":18658,"created_at":"Mon May 18 13:48:18 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661854127614332928\/W8jJqFLZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661854127614332928\/W8jJqFLZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3219433442\/1446633403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KIKIperformance","name":"\u306e\u3048\u308b","id":3251766966,"id_str":"3251766966","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998662"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178210305,"id_str":"663727737178210305","text":"@Falilv_kanchan \n\u4e00\u751f\u61f8\u547d\u3001\u5916\u898b\u307e\u3067\u8aac\u660e\u3057\u305f\u308f\u307b\u3093\u307e\ud83d\udca2 \ud83d\udca2 \ud83d\udca2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726641126834178,"in_reply_to_status_id_str":"663726641126834178","in_reply_to_user_id":2744537407,"in_reply_to_user_id_str":"2744537407","in_reply_to_screen_name":"Falilv_kanchan","user":{"id":819275863,"id_str":"819275863","name":"\u30bc\u30ed","screen_name":"zeron0907","location":null,"url":null,"description":"\u30bb\u30df\u306e\u547d\u306f1\u9031\u9593","protected":false,"verified":false,"followers_count":706,"friends_count":682,"listed_count":21,"favourites_count":4952,"statuses_count":31287,"created_at":"Wed Sep 12 10:18:42 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636002266902695937\/vcmwACFA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636002266902695937\/vcmwACFA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/819275863\/1430781171","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Falilv_kanchan","name":"\u304b\u3093\u3061\u3083\u3093","id":2744537407,"id_str":"2744537407","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737153019904,"id_str":"663727737153019904","text":"@otto_o_o \u3131\u3131\u3131\u314c\u314c \u314b\u314c\uadf8\uac70 \ub0b4\uaec0\ub370! !! \ub450\uac1c\ub294 \ub0b4\uac00 \uba39\uc744\uc0dd\uac01\uc774\uc5c8\ub294\ub370! !!\ub77c\uace0 \ud558\uae30\ub3c4\uc804\uc5d0 \uc544\ube60\uac00 \uc5ed\uc2dc \uc6b0\ub9ac\ub538\uc774\uc57c..^^\uc774\ub798\uc11c \uc73c\uc751\u3147..\ub9db\uc788\uc5c8\uc9c0...?\uc774\ub7ec\uace0\uc634\u3131\u3131\n\u314b\n\n\u314b\n\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727333048647680,"in_reply_to_status_id_str":"663727333048647680","in_reply_to_user_id":3267575804,"in_reply_to_user_id_str":"3267575804","in_reply_to_screen_name":"otto_o_o","user":{"id":3267575804,"id_str":"3267575804","name":"\u2728\ube7d\uc090\ub9d8 \ud2f0\ud2f0\ub9c8\uce20\u2728","screen_name":"otto_o_o","location":null,"url":"http:\/\/m.blog.naver.com\/otto_o_o","description":"TT=Tgoja\/\uc7a1\ub355\/\ucee4\ubba4\ub7ec\/\ud5e4\ub354....\u2665","protected":false,"verified":false,"followers_count":59,"friends_count":152,"listed_count":0,"favourites_count":308,"statuses_count":440,"created_at":"Sat Jul 04 01:13:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657524798059188224\/Tqk7IyIp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657524798059188224\/Tqk7IyIp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267575804\/1441555539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"otto_o_o","name":"\u2728\ube7d\uc090\ub9d8 \ud2f0\ud2f0\ub9c8\uce20\u2728","id":3267575804,"id_str":"3267575804","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079998659"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737169833984,"id_str":"663727737169833984","text":"\uff20oh4o \uff20p5jq \uff20og9o \uff20p5jq \uff20oh4o \uff20og9o \uff20oh4o \uff20og9o og9o #RT #TFB #TeamFollowBack #TFB #TFW #FF #Follow #RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b #\u3075\u3041\u307c\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b #\u76f8\u4e92\u5e0c\u671b #\u76f8\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1155164682,"in_reply_to_user_id_str":"1155164682","in_reply_to_screen_name":"oh4o","user":{"id":2843408318,"id_str":"2843408318","name":"\u308d\u3090\u308c","screen_name":"l0ile","location":null,"url":null,"description":"\u5175\u58eb\u3084\u3081\u3066\u63d0\u7763\u3084\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":5534,"friends_count":329,"listed_count":57,"favourites_count":86935,"statuses_count":539748,"created_at":"Tue Oct 07 10:40:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639475872693547008\/LA9AQK6B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639475872693547008\/LA9AQK6B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843408318\/1441370559","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT","indices":[53,56]},{"text":"TFB","indices":[57,61]},{"text":"TeamFollowBack","indices":[62,77]},{"text":"TFB","indices":[78,82]},{"text":"TFW","indices":[83,87]},{"text":"FF","indices":[88,91]},{"text":"Follow","indices":[92,99]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[100,114]},{"text":"\u3075\u3041\u307c\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[115,130]},{"text":"\u76f8\u4e92\u5e0c\u671b","indices":[131,136]},{"text":"\u76f8","indices":[137,139]}],"urls":[],"user_mentions":[{"screen_name":"oh4o","name":"\u3090\u6d66","id":1155164682,"id_str":"1155164682","indices":[0,5]},{"screen_name":"p5jq","name":"hime","id":1155697952,"id_str":"1155697952","indices":[6,11]},{"screen_name":"og9o","name":"\u00b0 \u3002\u30b8\u30fc\u30af \u3002\u00b0","id":1155178867,"id_str":"1155178867","indices":[12,17]},{"screen_name":"p5jq","name":"hime","id":1155697952,"id_str":"1155697952","indices":[18,23]},{"screen_name":"oh4o","name":"\u3090\u6d66","id":1155164682,"id_str":"1155164682","indices":[24,29]},{"screen_name":"og9o","name":"\u00b0 \u3002\u30b8\u30fc\u30af \u3002\u00b0","id":1155178867,"id_str":"1155178867","indices":[30,35]},{"screen_name":"oh4o","name":"\u3090\u6d66","id":1155164682,"id_str":"1155164682","indices":[36,41]},{"screen_name":"og9o","name":"\u00b0 \u3002\u30b8\u30fc\u30af \u3002\u00b0","id":1155178867,"id_str":"1155178867","indices":[42,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"da","timestamp_ms":"1447079998663"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737173995520,"id_str":"663727737173995520","text":"RT @capri134: \u4eca\u65e5\u306e\u30e9\u30af\u30ac\u30ad\u3061\u3053\u3002\u624b\u8db3\u304c\u5927\u304d\u3044\u30c7\u30d5\u30a9\u30eb\u30e1\u306f\u53e4\u3055\u3092\u611f\u3058\u3066\u3057\u307e\u3046\u3051\u3069\u3001\u51ac\u88c5\u5099\u3060\u3068\u624b\u888b\u3068\u30d6\u30fc\u30c4\u3092\u9060\u616e\u306a\u304f\u5927\u304d\u304f\u63cf\u3051\u308b\u306e\u3067\u597d\u304d\u3002\u3084\u3063\u3071\u308a\u4e0a\u306f\u3082\u3053\u3082\u3053\u3001\u4e0b\u306f\u30b9\u30c3\u30ad\u30ea\u306a\u51ac\u88c5\u5099\u306f\u3001\u3044\u3044\u306d\uff01 https:\/\/t.co\/WW8agfQ9ok","source":"\u003ca href=\"http:\/\/tabtter.jp\" rel=\"nofollow\"\u003eTabtter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2884898267,"id_str":"2884898267","name":"\u307e\u307f\u30d7\u30ed\u2606\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","screen_name":"ma3pro","location":"\u307e\u307f\u30d7\u30ed\u2606","url":"http:\/\/bit.ly\/1K7UxzU","description":"\u30e2\u30d0\u30de\u30b9(\u30c7\u30ec\u30de\u30b9) http:\/\/amzn.to\/1tXNIU1 \u306e\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3\u300c\u307e\u307f\u30d7\u30ed\u2606\u300d\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\/ \u5143\u4ee3\u8868 @ma3rin \u3055\u3093(\u840c\u3048\u5168\u822c)\/ \u73fe\u4ee3\u8868 @32ki \u3055\u3093(\u30de\u30ea\u307f\u3066)\/ \u7ba1\u7406 \u793e\u54e1\u6570\u4eba(\u840c\u3048)\/ \u203b\u666e\u6bb5\u306f\u840c\u3048\u753b\u50cf\u3092\u5927\u91cf\u306bRT\u3057\u3066\u307e\u3059(\u7d75\u63cf\u304d\u3055\u3093\u5fdc\u63f4\u4e2d)(R18\u3042\u308a\u6ce8\u610f)","protected":false,"verified":false,"followers_count":874,"friends_count":1941,"listed_count":9,"favourites_count":64477,"statuses_count":63384,"created_at":"Wed Nov 19 22:32:40 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535205795181252608\/phU4XCrB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535205795181252608\/phU4XCrB.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535204614321106944\/9GIuac37_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535204614321106944\/9GIuac37_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2884898267\/1416438409","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:05:47 +0000 2015","id":663281249314705410,"id_str":"663281249314705410","text":"\u4eca\u65e5\u306e\u30e9\u30af\u30ac\u30ad\u3061\u3053\u3002\u624b\u8db3\u304c\u5927\u304d\u3044\u30c7\u30d5\u30a9\u30eb\u30e1\u306f\u53e4\u3055\u3092\u611f\u3058\u3066\u3057\u307e\u3046\u3051\u3069\u3001\u51ac\u88c5\u5099\u3060\u3068\u624b\u888b\u3068\u30d6\u30fc\u30c4\u3092\u9060\u616e\u306a\u304f\u5927\u304d\u304f\u63cf\u3051\u308b\u306e\u3067\u597d\u304d\u3002\u3084\u3063\u3071\u308a\u4e0a\u306f\u3082\u3053\u3082\u3053\u3001\u4e0b\u306f\u30b9\u30c3\u30ad\u30ea\u306a\u51ac\u88c5\u5099\u306f\u3001\u3044\u3044\u306d\uff01 https:\/\/t.co\/WW8agfQ9ok","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3189212894,"id_str":"3189212894","name":"\u304b\u3077\u308a\u3061\u304a","screen_name":"capri134","location":null,"url":"http:\/\/touch.pixiv.net\/member_illust.php?id=4872389","description":"\u304a\u7d75\u63cf\u304d\u3057\u3066\u751f\u304d\u3066\u307e\u3059\uff01\u3000\u7d75\u3092\u8cbc\u3063\u305f\u308a\u3059\u308b\u30e1\u30a4\u30f3\u57a2\u3067\u3059\u3002\u904a\u3093\u3067\u304f\u308c\u308b\u3068\u559c\u3073\u307e\u3059\uff01\u3000 \u65e5\u5e38\u306e\u4ed6\u611b\u3082\u306a\u3044\u545f\u304d\u3084\u5199\u771f\u3092UP\u3059\u308b\u306e\u306f\u30b5\u30d6\u57a2@caprinSUB\u306b\u5206\u3051\u307e\u3057\u305f\u3002\u305d\u3093\u306a\u306e\u3082\u8208\u5473\u3082\u3063\u3066\u304f\u308c\u308b\u4eba\u306f\u30b5\u30d6\u57a2\u3082\u3088\u308d\u3057\u304f\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":6042,"friends_count":232,"listed_count":219,"favourites_count":1971,"statuses_count":3660,"created_at":"Fri May 08 23:17:20 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653398677847863297\/JUNkXmI2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653398677847863297\/JUNkXmI2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3189212894\/1444617131","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663281247741833216,"id_str":"663281247741833216","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","url":"https:\/\/t.co\/WW8agfQ9ok","display_url":"pic.twitter.com\/WW8agfQ9ok","expanded_url":"http:\/\/twitter.com\/capri134\/status\/663281249314705410\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663281247741833216,"id_str":"663281247741833216","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","url":"https:\/\/t.co\/WW8agfQ9ok","display_url":"pic.twitter.com\/WW8agfQ9ok","expanded_url":"http:\/\/twitter.com\/capri134\/status\/663281249314705410\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"capri134","name":"\u304b\u3077\u308a\u3061\u304a","id":3189212894,"id_str":"3189212894","indices":[3,12]}],"symbols":[],"media":[{"id":663281247741833216,"id_str":"663281247741833216","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","url":"https:\/\/t.co\/WW8agfQ9ok","display_url":"pic.twitter.com\/WW8agfQ9ok","expanded_url":"http:\/\/twitter.com\/capri134\/status\/663281249314705410\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}},"source_status_id":663281249314705410,"source_status_id_str":"663281249314705410","source_user_id":3189212894,"source_user_id_str":"3189212894"}]},"extended_entities":{"media":[{"id":663281247741833216,"id_str":"663281247741833216","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRyx9XUcAADdIv.jpg","url":"https:\/\/t.co\/WW8agfQ9ok","display_url":"pic.twitter.com\/WW8agfQ9ok","expanded_url":"http:\/\/twitter.com\/capri134\/status\/663281249314705410\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}},"source_status_id":663281249314705410,"source_status_id_str":"663281249314705410","source_user_id":3189212894,"source_user_id_str":"3189212894"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998664"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178210304,"id_str":"663727737178210304","text":"@gurenguren \u6b21\u306b\u4e8b\u52d9\u6240\u6765\u305f\u3089\u884c\u304d\u307e\u3057\u3087\u3063\u304bw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663669223588151296,"in_reply_to_status_id_str":"663669223588151296","in_reply_to_user_id":107893880,"in_reply_to_user_id_str":"107893880","in_reply_to_screen_name":"gurenguren","user":{"id":68634775,"id_str":"68634775","name":"\u307e\u308b\u3084\u307e","screen_name":"maruyama_yosh","location":null,"url":null,"description":"\u866b\u304c\u5acc\u3044\u306a\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u65b9\u304c\u3044\u3044\u3068\u601d\u3044\u307e\u3059\u3002\u4ed5\u4e8b\u306f\u51fa\u7248\u3068\u304b\u30b2\u30fc\u30e0\u3068\u304b\u30a2\u30cb\u30e1\u3068\u304b\u3001\u305d\u306e\u5468\u8fba\u3067\u7d30\u3005\u3068\u8acb\u8ca0\u4ed5\u4e8b\u3092\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1088,"friends_count":450,"listed_count":56,"favourites_count":172,"statuses_count":62460,"created_at":"Tue Aug 25 07:20:10 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/234353494\/___________2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/234353494\/___________2.jpg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419217522903089152\/UXrL-WcS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419217522903089152\/UXrL-WcS_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gurenguren","name":"\u7d05\u84ee \uff20\u300e\u83ef\u9053\u90e8\u3002\u300f\u5199\u771f\u96c6\uff11\uff12\/\uff12\uff16\u767a\u58f2","id":107893880,"id_str":"107893880","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737161535488,"id_str":"663727737161535488","text":"Knerds has just come onto my radar but loving the channel already. Keep it up guys. @SeanTwisters @TomHawkin5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368874490,"id_str":"368874490","name":"David Riall","screen_name":"DavidRiall","location":"Leeds, England","url":null,"description":"Gaming isn't a hobby its a life choice. Full time Guardian Lord part time Interior Designer","protected":false,"verified":false,"followers_count":111,"friends_count":63,"listed_count":1,"favourites_count":455,"statuses_count":323,"created_at":"Tue Sep 06 11:23:36 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000227040689\/0d8fb56111d99c1e7533ac6d93ed56a3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000227040689\/0d8fb56111d99c1e7533ac6d93ed56a3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368874490\/1444315583","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeanTwisters","name":"Sean Pitts","id":120954275,"id_str":"120954275","indices":[84,97]},{"screen_name":"TomHawkin5","name":"Tom Hawkins","id":2330108864,"id_str":"2330108864","indices":[98,109]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998661"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737157193728,"id_str":"663727737157193728","text":"@BeingDivya16 \ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727008711618564,"in_reply_to_status_id_str":"663727008711618564","in_reply_to_user_id":1482796212,"in_reply_to_user_id_str":"1482796212","in_reply_to_screen_name":"BeingDivya16","user":{"id":1885982952,"id_str":"1885982952","name":"PREM IS BACK","screen_name":"BeingYaseenM","location":null,"url":null,"description":"Die Heart SALMAN KHAN Fan","protected":false,"verified":false,"followers_count":313,"friends_count":34,"listed_count":1,"favourites_count":159,"statuses_count":3965,"created_at":"Fri Sep 20 09:53:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662138457955766272\/d4VEYpWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662138457955766272\/d4VEYpWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1885982952\/1445739129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[19,41]}],"urls":[],"user_mentions":[{"screen_name":"BeingDivya16","name":"Me","id":1482796212,"id_str":"1482796212","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079998660"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737144643584,"id_str":"663727737144643584","text":"@NKxxx_Kmf2 \u5e78\u305b\u306a30\u5206\u306f\u3084\u3059\u304e\u3002(\u00b4\uff65_\uff65`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726004230184964,"in_reply_to_status_id_str":"663726004230184964","in_reply_to_user_id":3254518206,"in_reply_to_user_id_str":"3254518206","in_reply_to_screen_name":"NKxxx_Kmf2","user":{"id":3271824590,"id_str":"3271824590","name":"\u305f\u3093\u307e\u3042\u30fc\u3084\u2661\u307e\u301c\u308b\u301c","screen_name":"tamamiyaya_25","location":"TOKYO","url":null,"description":"96LINE\u2661\u305f\u307e\u3082\u308a\u3086\u3046\u305f\u261e7\u6b73\u306810cm\u306e\u5dee\u2661 World 9\/17\u202210\/29\u53c2\u6226\u6e08 \u5e78\u305b\u3092\u3042\u308a\u304c\u3068\u3046\u25ce \u25b7 \u8ab0\u3067\u3082Follow\uff06\u6fc3\u3044\u7d61\u307fDM\u30ea\u30d7 \u307e\u301c\u308b\u301c \u30ec\u30a4\u30f3\u30c4\u30ea\u30fc\u521d\u65e5\u821e\u53f0\u6328\u62f6 \u30ea\u30ea\u30a4\u30d9\u5f53\u9078\u7948\u9858","protected":false,"verified":false,"followers_count":87,"friends_count":70,"listed_count":3,"favourites_count":290,"statuses_count":1556,"created_at":"Wed Jul 08 11:39:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660595901635780608\/l_6Wc9xl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660595901635780608\/l_6Wc9xl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3271824590\/1442502440","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NKxxx_Kmf2","name":"\u2661\u20dbKoKo\u2661\u20db\u540d\u53e4\u5c4b28\u65e5\u53c2\u6226\u6e08\u307f","id":3254518206,"id_str":"3254518206","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998657"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178312704,"id_str":"663727737178312704","text":"RT @cgonzales25_: I wish I was sleeping right now \ud83d\ude29\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":842638400,"id_str":"842638400","name":"Gera","screen_name":"CreationOfBean","location":null,"url":"http:\/\/crevtion.com","description":"Creation Clo\u2022 Respect all.. Fear none\u2022 #CreationOfBean \u2022","protected":false,"verified":false,"followers_count":387,"friends_count":394,"listed_count":2,"favourites_count":6577,"statuses_count":46107,"created_at":"Mon Sep 24 00:12:54 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151791297\/YCx3Qure.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151791297\/YCx3Qure.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663590705579823104\/qrUcby9c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663590705579823104\/qrUcby9c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842638400\/1447047315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:59 +0000 2015","id":663725477102813184,"id_str":"663725477102813184","text":"I wish I was sleeping right now \ud83d\ude29\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227677942,"id_str":"3227677942","name":"\u2741","screen_name":"cgonzales25_","location":null,"url":null,"description":"positive mind positive life \u2741 @OhGoshJoshh \u2661","protected":false,"verified":false,"followers_count":178,"friends_count":95,"listed_count":1,"favourites_count":2983,"statuses_count":3563,"created_at":"Sat May 02 05:50:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661923305398628352\/s3KTE2jh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661923305398628352\/s3KTE2jh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227677942\/1446585497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cgonzales25_","name":"\u2741","id":3227677942,"id_str":"3227677942","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737178300416,"id_str":"663727737178300416","text":"RT @EstelleLovatt: #IAmAiWeiwei 4 @aiww against #Lego #art #censorship #discrimination & 4 #freedom of #expression @royalacademy https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329680860,"id_str":"329680860","name":"\u4e2d\u83ef\u6c11\u570b","screen_name":"BXG6150008","location":"\u4e2d\u534e\u6c11\u56fd\u5171\u532a\u5360\u9886\u533a","url":"http:\/\/www.bxg6150008.com","description":"\u6e2f\u4eba\u5360\u4e2d\u6297\u532a\u5171\n\u5168\u6c11\u516c\u6295\u706d\u9ec4\u4fc4","protected":false,"verified":false,"followers_count":25,"friends_count":40,"listed_count":0,"favourites_count":11,"statuses_count":236,"created_at":"Tue Jul 05 13:21:06 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-CN","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514064874725339136\/3A8Hpz37_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514064874725339136\/3A8Hpz37_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329680860\/1416253183","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:57:02 +0000 2015","id":663686732555096064,"id_str":"663686732555096064","text":"#IAmAiWeiwei 4 @aiww against #Lego #art #censorship #discrimination & 4 #freedom of #expression @royalacademy https:\/\/t.co\/kdM0Y5d9dG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129855472,"id_str":"129855472","name":"Estelle Lovatt FRSA","screen_name":"EstelleLovatt","location":"London","url":"http:\/\/estellelovatt.com","description":"Art Critic & Lecturer ''is the John Peel of the art world to direct you to all the good art stuff'' on BBC & Sky. Heckled in my own Art History lectures @hsanw3","protected":false,"verified":false,"followers_count":1125,"friends_count":82,"listed_count":49,"favourites_count":125,"statuses_count":5418,"created_at":"Mon Apr 05 16:29:51 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445505083954843648\/ZZWUmo-w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445505083954843648\/ZZWUmo-w.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448732244966772736\/TZ5d9AKI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448732244966772736\/TZ5d9AKI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129855472\/1384640547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"entities":{"hashtags":[{"text":"IAmAiWeiwei","indices":[0,12]},{"text":"Lego","indices":[29,34]},{"text":"art","indices":[35,39]},{"text":"censorship","indices":[40,51]},{"text":"discrimination","indices":[52,67]},{"text":"freedom","indices":[76,84]},{"text":"expression","indices":[88,99]}],"urls":[],"user_mentions":[{"screen_name":"aiww","name":"\u827e\u672a\u672a Ai Weiwei","id":43654274,"id_str":"43654274","indices":[15,20]},{"screen_name":"royalacademy","name":"Royal Academy","id":20439102,"id_str":"20439102","indices":[100,113]}],"symbols":[],"media":[{"id":663686696366641152,"id_str":"663686696366641152","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663686696366641152,"id_str":"663686696366641152","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}}},{"id":663686709809438720,"id_str":"663686709809438720","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji9RW4AA_xe7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji9RW4AA_xe7.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IAmAiWeiwei","indices":[19,31]},{"text":"Lego","indices":[48,53]},{"text":"art","indices":[54,58]},{"text":"censorship","indices":[59,70]},{"text":"discrimination","indices":[71,86]},{"text":"freedom","indices":[95,103]},{"text":"expression","indices":[107,118]}],"urls":[],"user_mentions":[{"screen_name":"EstelleLovatt","name":"Estelle Lovatt FRSA","id":129855472,"id_str":"129855472","indices":[3,17]},{"screen_name":"aiww","name":"\u827e\u672a\u672a Ai Weiwei","id":43654274,"id_str":"43654274","indices":[34,39]},{"screen_name":"royalacademy","name":"Royal Academy","id":20439102,"id_str":"20439102","indices":[119,132]}],"symbols":[],"media":[{"id":663686696366641152,"id_str":"663686696366641152","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663686732555096064,"source_status_id_str":"663686732555096064","source_user_id":129855472,"source_user_id_str":"129855472"}]},"extended_entities":{"media":[{"id":663686696366641152,"id_str":"663686696366641152","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjiLMWEAAOBkA.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663686732555096064,"source_status_id_str":"663686732555096064","source_user_id":129855472,"source_user_id_str":"129855472"},{"id":663686709809438720,"id_str":"663686709809438720","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji9RW4AA_xe7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji9RW4AA_xe7.jpg","url":"https:\/\/t.co\/kdM0Y5d9dG","display_url":"pic.twitter.com\/kdM0Y5d9dG","expanded_url":"http:\/\/twitter.com\/EstelleLovatt\/status\/663686732555096064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663686732555096064,"source_status_id_str":"663686732555096064","source_user_id":129855472,"source_user_id_str":"129855472"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998665"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737161543680,"id_str":"663727737161543680","text":"Adoro a vida!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042269956,"id_str":"3042269956","name":"Margarida Queir\u00f3s","screen_name":"magui1199","location":"Viana do Castelo, Portugal","url":null,"description":null,"protected":false,"verified":false,"followers_count":151,"friends_count":58,"listed_count":0,"favourites_count":487,"statuses_count":518,"created_at":"Tue Feb 17 10:07:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656543618627452929\/Ta1DoBx6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656543618627452929\/Ta1DoBx6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042269956\/1438866590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079998661"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737157189632,"id_str":"663727737157189632","text":"RT @realjagaimo: \u30b3\u30fc\u30b8\u30fc\u30fb\u30d5\u30a1\u30cb\u30fb\u30c8\u30a5\u30c3\u30c6\u30a3 https:\/\/t.co\/0aa35e5Xfv https:\/\/t.co\/BvvbcREBh2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109553438,"id_str":"109553438","name":"\u8d8a\u8c37","screen_name":"ieyasukoshigaya","location":"\u672d\u5e4c\u5e02","url":null,"description":"\u3078\u3051\u3051","protected":false,"verified":false,"followers_count":384,"friends_count":266,"listed_count":10,"favourites_count":5236,"statuses_count":77569,"created_at":"Fri Jan 29 13:02:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637251284710494209\/SoAkP8sb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637251284710494209\/SoAkP8sb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109553438\/1432597323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:00 +0000 2015","id":663726235516715008,"id_str":"663726235516715008","text":"\u30b3\u30fc\u30b8\u30fc\u30fb\u30d5\u30a1\u30cb\u30fb\u30c8\u30a5\u30c3\u30c6\u30a3 https:\/\/t.co\/0aa35e5Xfv https:\/\/t.co\/BvvbcREBh2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":795052292,"id_str":"795052292","name":"\u771f\u30fb\u3058\u3083\u304c","screen_name":"realjagaimo","location":"\u3044\u3070\u3089\u304d","url":"http:\/\/ameblo.jp\/realjagaimo\/","description":"\u4e09\u5341\u8def\u3067\u3001\u30d5\u30e9\u30f3\u30b9\u6587\u5b66\u3068\u304b\u8aad\u66f8\u3068\u304b\u8a9e\u5b66\u3068\u304b\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u3061\u3087\u304f\u3061\u3087\u304f\u90fd\u5185\u306b\u3082\u51fa\u6ca1\u3057\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u3001\u52c7\u6c17\uff01","protected":false,"verified":false,"followers_count":1548,"friends_count":2008,"listed_count":44,"favourites_count":14432,"statuses_count":36313,"created_at":"Sat Sep 01 01:24:26 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626792156473077760\/lsg6LMVO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626792156473077760\/lsg6LMVO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/795052292\/1427394584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"050de99d05489d81","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/050de99d05489d81.json","place_type":"city","name":"\u7b51\u897f\u5e02","full_name":"\u8328\u57ce\u770c \u7b51\u897f\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.904881,36.200475],[139.904881,36.374656],[140.070772,36.374656],[140.070772,36.200475]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0aa35e5Xfv","expanded_url":"http:\/\/www.vice.com\/read\/cosey-fanni-tutti-597-v17n11","display_url":"vice.com\/read\/cosey-fan\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663726233880932353,"id_str":"663726233880932353","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":451,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726233880932353,"id_str":"663726233880932353","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":451,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663726234002591744,"id_str":"663726234002591744","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfkXVEAAB13I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfkXVEAAB13I.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":925,"resize":"fit"},"small":{"w":340,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":828,"resize":"fit"}}},{"id":663726233788649472,"id_str":"663726233788649472","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfjkUkAAuSiB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfjkUkAAuSiB.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":441,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}}},{"id":663726234010980352,"id_str":"663726234010980352","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfkZVEAAl1iI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfkZVEAAl1iI.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":670,"h":434,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0aa35e5Xfv","expanded_url":"http:\/\/www.vice.com\/read\/cosey-fanni-tutti-597-v17n11","display_url":"vice.com\/read\/cosey-fan\u2026","indices":[32,55]}],"user_mentions":[{"screen_name":"realjagaimo","name":"\u771f\u30fb\u3058\u3083\u304c","id":795052292,"id_str":"795052292","indices":[3,15]}],"symbols":[],"media":[{"id":663726233880932353,"id_str":"663726233880932353","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":451,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663726235516715008,"source_status_id_str":"663726235516715008","source_user_id":795052292,"source_user_id_str":"795052292"}]},"extended_entities":{"media":[{"id":663726233880932353,"id_str":"663726233880932353","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfj6UsAEPf3m.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":451,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663726235516715008,"source_status_id_str":"663726235516715008","source_user_id":795052292,"source_user_id_str":"795052292"},{"id":663726234002591744,"id_str":"663726234002591744","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfkXVEAAB13I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfkXVEAAB13I.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":925,"resize":"fit"},"small":{"w":340,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":828,"resize":"fit"}},"source_status_id":663726235516715008,"source_status_id_str":"663726235516715008","source_user_id":795052292,"source_user_id_str":"795052292"},{"id":663726233788649472,"id_str":"663726233788649472","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfjkUkAAuSiB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfjkUkAAuSiB.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"large":{"w":670,"h":441,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":394,"resize":"fit"}},"source_status_id":663726235516715008,"source_status_id_str":"663726235516715008","source_user_id":795052292,"source_user_id_str":"795052292"},{"id":663726234010980352,"id_str":"663726234010980352","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHfkZVEAAl1iI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHfkZVEAAl1iI.jpg","url":"https:\/\/t.co\/BvvbcREBh2","display_url":"pic.twitter.com\/BvvbcREBh2","expanded_url":"http:\/\/twitter.com\/realjagaimo\/status\/663726235516715008\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":670,"h":434,"resize":"fit"}},"source_status_id":663726235516715008,"source_status_id_str":"663726235516715008","source_user_id":795052292,"source_user_id_str":"795052292"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079998660"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737161449472,"id_str":"663727737161449472","text":"RT @SpeakComedy: RIP Sulley https:\/\/t.co\/g3oue1Lexw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1716291960,"id_str":"1716291960","name":"\uc790\ub791 VIP","screen_name":"BaruTheKuku","location":"Singapore","url":null,"description":"\u2022 Welcome to my K-World \u2022","protected":false,"verified":false,"followers_count":487,"friends_count":473,"listed_count":9,"favourites_count":38811,"statuses_count":59280,"created_at":"Sat Aug 31 17:40:26 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432708477677338625\/-_Is42Y9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432708477677338625\/-_Is42Y9.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650624425906180096\/TmYr01OQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650624425906180096\/TmYr01OQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1716291960\/1447070532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:02 +0000 2015","id":663726996380237825,"id_str":"663726996380237825","text":"RIP Sulley https:\/\/t.co\/g3oue1Lexw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eSpeakComedyApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50618718,"id_str":"50618718","name":"Speak Comedy","screen_name":"SpeakComedy","location":null,"url":null,"description":"Finally, comedy on Twitter! For Business, email alyzigho@gmail.com","protected":false,"verified":false,"followers_count":2227986,"friends_count":1,"listed_count":5728,"favourites_count":262,"statuses_count":50257,"created_at":"Thu Jun 25 11:22:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ABBF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_tile":true,"profile_link_color":"2ABBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"594F55","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50618718\/1444775882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":113,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeakComedy","name":"Speak Comedy","id":50618718,"id_str":"50618718","indices":[3,15]}],"symbols":[],"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726996380237825,"source_status_id_str":"663726996380237825","source_user_id":50618718,"source_user_id_str":"50618718"}]},"extended_entities":{"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726996380237825,"source_status_id_str":"663726996380237825","source_user_id":50618718,"source_user_id_str":"50618718"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079998661"} +{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727737165774848,"id_str":"663727737165774848","text":"RT @amjdalharthy: \u0633\u064e \ufe84\u0639\u0634\u0642\u06af\u0643\u064e \n\u06c9 \ufe84\u0639\u0634\u0642 : \u06af\u0644 \u0645\u064e \u0641\u064a\u06af\u0643\u064e \n\ufeb3\u064a\u0626\u0627\u064b \u06af\u0622\ufee5 ! .. \ufe84\u0645 \u062d\u064e\u0633\u0646\u0627\u064b !\n\u06c9 \ufe88\ufee5 \u0628\u062d\u062b\u062a \u0628\u062f\ufe82\u062e\u0644\u064a \ufedf\u0646 \u062a\u062c\u062f \ufe88\u0644\u0622 : \n( \ufe82\ufedf\u062d\u064f\u0628 ) \u2661 \n\u0641\u064e \ufe84\u0646\u0622 : \n\ufe84\u0646\u0628\u0636 \u0628\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2513147239,"id_str":"2513147239","name":"Fr7","screen_name":"A_1990_fr7","location":null,"url":null,"description":"\u062e\u064a\u0631 \u0645\u064e \u0642\u064a\u0644 \u0648 \u062e\u064a\u0631 \u0645\u064e \u064a\u0642\u0627\u0644 \ufe8e\u0633\u062a\u063a\u0641\u0631 \ufe8e\u0644\u0644\u0647\u06c1\u064e \u0648\ufe8e\u062a\u0648\u0628 \ufe8e\u0644\u064a\u0647\u06c1\u064e..","protected":false,"verified":false,"followers_count":1130,"friends_count":1655,"listed_count":0,"favourites_count":11742,"statuses_count":9220,"created_at":"Wed May 21 17:13:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625415180680237057\/YlHeEvtH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625415180680237057\/YlHeEvtH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2513147239\/1401112718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon May 19 02:28:51 +0000 2014","id":468216684315045888,"id_str":"468216684315045888","text":"\u0633\u064e \ufe84\u0639\u0634\u0642\u06af\u0643\u064e \n\u06c9 \ufe84\u0639\u0634\u0642 : \u06af\u0644 \u0645\u064e \u0641\u064a\u06af\u0643\u064e \n\ufeb3\u064a\u0626\u0627\u064b \u06af\u0622\ufee5 ! .. \ufe84\u0645 \u062d\u064e\u0633\u0646\u0627\u064b !\n\u06c9 \ufe88\ufee5 \u0628\u062d\u062b\u062a \u0628\u062f\ufe82\u062e\u0644\u064a \ufedf\u0646 \u062a\u062c\u062f \ufe88\u0644\u0622 : \n( \ufe82\ufedf\u062d\u064f\u0628 ) \u2661 \n\u0641\u064e \ufe84\u0646\u0622 : \n\ufe84\u0646\u0628\u0636 \u0628\u06af\u0643\u064e\u00b8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1419318126,"id_str":"1419318126","name":"Amjd Alharthi","screen_name":"amjdalharthy","location":"\u062c\u0627\u0645\u0639\u0629 \u0627\u0645 \u0627\u0644\u0642\u0631\u0649 ","url":null,"description":"\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u060c \u0648\u0644\u0643 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629 \u060c \u0645\u0633\u0624\u0648\u0644\u0627\u064b \u0639\u0645\u0651\u0627 \u0623\u0643\u062a\u0628\u0647 \u0648\u0644\u0633\u062a \u0645\u0633\u0624\u0648\u0644\u0627\u064b \u0639\u0645\u0651\u0627 \u062a\u0641\u0647\u0645\u0647 - \u0627\u0644\u0646\u0642\u062f \u0627\u0644\u0647\u0627\u062f\u0641 \u0647\u062f\u064a\u0629 \u0627\u0642\u062f\u0631\u0647\u0627 \u0645\u0645\u064e\u0646 \u064a\u0642\u062f\u0645\u0647\u0627 \u0628\u0623\u0633\u0644\u0648\u0628 \u062c\u0645\u064a\u0644 ... Mecca , Saudi Arabia","protected":false,"verified":false,"followers_count":42521,"friends_count":46709,"listed_count":13,"favourites_count":4768,"statuses_count":9778,"created_at":"Fri May 10 23:52:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631871861333192704\/o_yUtWHS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631871861333192704\/o_yUtWHS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1419318126\/1439484966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amjdalharthy","name":"Amjd Alharthi","id":1419318126,"id_str":"1419318126","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079998662"} +{"delete":{"status":{"id":513422726816858113,"id_str":"513422726816858113","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447079999034"}} +{"delete":{"status":{"id":648303293253427200,"id_str":"648303293253427200","user_id":3198277926,"user_id_str":"3198277926"},"timestamp_ms":"1447079999054"}} +{"delete":{"status":{"id":663712180508819458,"id_str":"663712180508819458","user_id":3312289250,"user_id_str":"3312289250"},"timestamp_ms":"1447079999525"}} +{"delete":{"status":{"id":659575220995497984,"id_str":"659575220995497984","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447079999549"}} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741339099137,"id_str":"663727741339099137","text":"RT @Noufghan: \u062d\u0633\u0628\u064a \u0627\u0644\u0644\u0647\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\udc94 https:\/\/t.co\/cF0YmroMu9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2593970988,"id_str":"2593970988","name":"\u0631\u064a\u0645\u0633\u0648\u0644\u064a\u2727","screen_name":"rimsull","location":"f(x)","url":null,"description":"\u0643\u0644 \u0627\u062d\u0644\u0627\u0645\u0646\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646 \u062a\u062a\u062d\u0642\u0642 \u0627\u0630\u0627 \u0645\u0627 \u0627\u0645\u062a\u0644\u0643\u0646\u0627 \u0627\u0644\u0634\u062c\u0627\u0639\u0629 \u0644\u0645\u0637\u0627\u0631\u062f\u062a\u0647\u0627 | 4walls","protected":false,"verified":false,"followers_count":549,"friends_count":417,"listed_count":1,"favourites_count":615,"statuses_count":8331,"created_at":"Sun Jun 29 01:35:12 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660435136547303424\/GedINzBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660435136547303424\/GedINzBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2593970988\/1446183846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:46 +0000 2015","id":663725169060552704,"id_str":"663725169060552704","text":"\u062d\u0633\u0628\u064a \u0627\u0644\u0644\u0647\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\udc94 https:\/\/t.co\/cF0YmroMu9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2513059826,"id_str":"2513059826","name":"ST\u2606RLIGHT_NOVIX","screen_name":"Noufghan","location":"MATRIX , CHAINED UP","url":null,"description":"VIXX,BAP,SHINEE,RED VELVET,SULLI","protected":false,"verified":false,"followers_count":380,"friends_count":203,"listed_count":0,"favourites_count":436,"statuses_count":17937,"created_at":"Wed May 21 16:42:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660901226008088576\/sAViP6XA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660901226008088576\/sAViP6XA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2513059826\/1446904528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725154711810048,"id_str":"663725154711810048","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","url":"https:\/\/t.co\/cF0YmroMu9","display_url":"pic.twitter.com\/cF0YmroMu9","expanded_url":"http:\/\/twitter.com\/Noufghan\/status\/663725169060552704\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":773,"resize":"fit"},"small":{"w":340,"h":525,"resize":"fit"},"large":{"w":500,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663725154711810048,"id_str":"663725154711810048","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","url":"https:\/\/t.co\/cF0YmroMu9","display_url":"pic.twitter.com\/cF0YmroMu9","expanded_url":"http:\/\/twitter.com\/Noufghan\/status\/663725169060552704\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":773,"resize":"fit"},"small":{"w":340,"h":525,"resize":"fit"},"large":{"w":500,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Noufghan","name":"ST\u2606RLIGHT_NOVIX","id":2513059826,"id_str":"2513059826","indices":[3,12]}],"symbols":[],"media":[{"id":663725154711810048,"id_str":"663725154711810048","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","url":"https:\/\/t.co\/cF0YmroMu9","display_url":"pic.twitter.com\/cF0YmroMu9","expanded_url":"http:\/\/twitter.com\/Noufghan\/status\/663725169060552704\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":773,"resize":"fit"},"small":{"w":340,"h":525,"resize":"fit"},"large":{"w":500,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725169060552704,"source_status_id_str":"663725169060552704","source_user_id":2513059826,"source_user_id_str":"2513059826"}]},"extended_entities":{"media":[{"id":663725154711810048,"id_str":"663725154711810048","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGgvsWsAA02M0.jpg","url":"https:\/\/t.co\/cF0YmroMu9","display_url":"pic.twitter.com\/cF0YmroMu9","expanded_url":"http:\/\/twitter.com\/Noufghan\/status\/663725169060552704\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":773,"resize":"fit"},"small":{"w":340,"h":525,"resize":"fit"},"large":{"w":500,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725169060552704,"source_status_id_str":"663725169060552704","source_user_id":2513059826,"source_user_id_str":"2513059826"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079999657"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741360078848,"id_str":"663727741360078848","text":"RT @freehugsjuss: 'siamo fangirl'\n\nio: ''mamma mi compri il biglietto del concerto?''\nmamma: ''ma a che te serve?''\nio: https:\/\/t.co\/bexQ1w\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2651841429,"id_str":"2651841429","name":"Sara \u2604","screen_name":"saragaina","location":null,"url":null,"description":"\u201che has never been so beautiful\u201d @aboutnels","protected":false,"verified":false,"followers_count":1671,"friends_count":1369,"listed_count":0,"favourites_count":440,"statuses_count":3266,"created_at":"Sun Jun 29 01:48:04 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661975317280595968\/LgdIKDIo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661975317280595968\/LgdIKDIo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2651841429\/1446816123","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:42:50 +0000 2015","id":663441567877844992,"id_str":"663441567877844992","text":"'siamo fangirl'\n\nio: ''mamma mi compri il biglietto del concerto?''\nmamma: ''ma a che te serve?''\nio: https:\/\/t.co\/bexQ1wnhCw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2366046038,"id_str":"2366046038","name":"Kry \u2601\ufe0f","screen_name":"freehugsjuss","location":"11056,93 Km dal mio idolo ","url":"https:\/\/www.facebook.com\/pages\/Justin-Drew-Bieber-Italia\/494180893979611?ref=hl","description":"Libert\u00e9, fraternit\u00e9 e Malik a volont\u00e9 \u2740","protected":false,"verified":false,"followers_count":12645,"friends_count":3661,"listed_count":7,"favourites_count":10221,"statuses_count":28397,"created_at":"Fri Feb 28 19:46:24 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636609069504143360\/ly2kyxbI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636609069504143360\/ly2kyxbI.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663004767166308352\/FEYiL--O_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663004767166308352\/FEYiL--O_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366046038\/1446907509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7017f7bb6784ed48","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7017f7bb6784ed48.json","place_type":"admin","name":"Ascoli Piceno","full_name":"Ascoli Piceno, Marche","country_code":"IT","country":"Italia","bounding_box":{"type":"Polygon","coordinates":[[[13.187591,42.687127],[13.187591,43.079753],[13.916784,43.079753],[13.916784,42.687127]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":178,"favorite_count":147,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663441566565036032,"id_str":"663441566565036032","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","url":"https:\/\/t.co\/bexQ1wnhCw","display_url":"pic.twitter.com\/bexQ1wnhCw","expanded_url":"http:\/\/twitter.com\/freehugsjuss\/status\/663441567877844992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"},"medium":{"w":600,"h":580,"resize":"fit"},"large":{"w":600,"h":580,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663441566565036032,"id_str":"663441566565036032","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","url":"https:\/\/t.co\/bexQ1wnhCw","display_url":"pic.twitter.com\/bexQ1wnhCw","expanded_url":"http:\/\/twitter.com\/freehugsjuss\/status\/663441567877844992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"},"medium":{"w":600,"h":580,"resize":"fit"},"large":{"w":600,"h":580,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"freehugsjuss","name":"Kry \u2601\ufe0f","id":2366046038,"id_str":"2366046038","indices":[3,16]}],"symbols":[],"media":[{"id":663441566565036032,"id_str":"663441566565036032","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","url":"https:\/\/t.co\/bexQ1wnhCw","display_url":"pic.twitter.com\/bexQ1wnhCw","expanded_url":"http:\/\/twitter.com\/freehugsjuss\/status\/663441567877844992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"},"medium":{"w":600,"h":580,"resize":"fit"},"large":{"w":600,"h":580,"resize":"fit"}},"source_status_id":663441567877844992,"source_status_id_str":"663441567877844992","source_user_id":2366046038,"source_user_id_str":"2366046038"}]},"extended_entities":{"media":[{"id":663441566565036032,"id_str":"663441566565036032","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUElvhWcAAFycv.jpg","url":"https:\/\/t.co\/bexQ1wnhCw","display_url":"pic.twitter.com\/bexQ1wnhCw","expanded_url":"http:\/\/twitter.com\/freehugsjuss\/status\/663441567877844992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"},"medium":{"w":600,"h":580,"resize":"fit"},"large":{"w":600,"h":580,"resize":"fit"}},"source_status_id":663441567877844992,"source_status_id_str":"663441567877844992","source_user_id":2366046038,"source_user_id_str":"2366046038"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079999662"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368459265,"id_str":"663727741368459265","text":"Sgallettate! Ahahahahahahahahahah #uominiedonne","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224549080,"id_str":"3224549080","name":"DaisyOlicityShipper","screen_name":"MargheLinfa","location":"Italy","url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":8,"listed_count":0,"favourites_count":50,"statuses_count":60,"created_at":"Thu Apr 30 13:34:51 +0000 2015","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604929851993272320\/jHEF3UbS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604929851993272320\/jHEF3UbS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224549080\/1433061489","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uominiedonne","indices":[34,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741360033792,"id_str":"663727741360033792","text":"RT @Rubiu5: Me he acojonado un poco pero nada mas. Despues de 30 segundos ha habido otro sonido de \"chac chac\" mas cerca y me he acojonado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851852922,"id_str":"851852922","name":"Nov 13","screen_name":"ItsKittyMaddox","location":"Paper Towns or Argentina ","url":"http:\/\/smarturl.it\/JBPurpose","description":"Hi i'm Camila | Cash, Larry and Malum Shipper | Life Is Strange | Justin followed me 3.2.15 | Believe Tour 11.8.13","protected":false,"verified":false,"followers_count":1591,"friends_count":1839,"listed_count":11,"favourites_count":1498,"statuses_count":31215,"created_at":"Fri Sep 28 22:49:37 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539597537062047744\/Jm-zKEdW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539597537062047744\/Jm-zKEdW.jpeg","profile_background_tile":true,"profile_link_color":"22EEFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663566106112745472\/lI9At1t4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663566106112745472\/lI9At1t4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851852922\/1447041461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:11:33 +0000 2015","id":663584688888528896,"id_str":"663584688888528896","text":"Me he acojonado un poco pero nada mas. Despues de 30 segundos ha habido otro sonido de \"chac chac\" mas cerca y me he acojonado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398306220,"id_str":"398306220","name":"elrubius","screen_name":"Rubiu5","location":"Madrid\/Noruega","url":"http:\/\/www.youtube.com\/elrubiusOMG","description":"Gamer, Youtuber y Mammuter | Me gustan los gatos obesos.","protected":false,"verified":true,"followers_count":4695481,"friends_count":603,"listed_count":6509,"favourites_count":12414,"statuses_count":19619,"created_at":"Tue Oct 25 21:37:48 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628264822413639680\/EL-g_Lwi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628264822413639680\/EL-g_Lwi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398306220\/1419197647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3362,"favorite_count":12470,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rubiu5","name":"elrubius","id":398306220,"id_str":"398306220","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999662"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741355827200,"id_str":"663727741355827200","text":"RT @emyemy1123: @Madrid_zo @alihnandedeanos \n\u064a\u0627\u0631\u0628 \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4026343481,"id_str":"4026343481","name":"\u0639\u0628\u062f\u0627\u0644\u0639\u0632\u064a\u0632","screen_name":"Madrid_zo","location":null,"url":null,"description":"\u062d\u0633\u0627\u0628 \u0644\u062f\u0639\u0645 #\u0639\u0644\u064a_\u0627\u0644\u0641\u064a\u0635\u0644 .. #StaracArabai #AliAlFaisal","protected":false,"verified":false,"followers_count":69,"friends_count":38,"listed_count":1,"favourites_count":46,"statuses_count":926,"created_at":"Fri Oct 23 19:34:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658071437421498368\/gidtfysR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658071437421498368\/gidtfysR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4026343481\/1445731432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:45 +0000 2015","id":663727429496807424,"id_str":"663727429496807424","text":"@Madrid_zo @alihnandedeanos \n\u064a\u0627\u0631\u0628 \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726892474855424,"in_reply_to_status_id_str":"663726892474855424","in_reply_to_user_id":4026343481,"in_reply_to_user_id_str":"4026343481","in_reply_to_screen_name":"Madrid_zo","user":{"id":4012891341,"id_str":"4012891341","name":"emy Ahmed\u0647\u0627\u064a\u062f\u0627\u0648\u064a\u0629","screen_name":"emyemy1123","location":"Mansoura ","url":null,"description":"\u2764\u270c \u0633\u0639\u0627\u062f\u062a\u064a\nFANS HaidyMoussa\u2661\u2661\n^^ \u0627\u0644\u062c\u064a\u0634 \u0627\u0644\u0647\u0627\u064a\u062f\u0627\u0648\u064a\u0647 \u0644\u0644\u0642\u0628 \u0646\u0627\u0648\u064a\u064a\u0646","protected":false,"verified":false,"followers_count":175,"friends_count":92,"listed_count":0,"favourites_count":4966,"statuses_count":1968,"created_at":"Wed Oct 21 23:38:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663500907821326338\/njOBsJNQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663500907821326338\/njOBsJNQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4012891341\/1447025718","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Madrid_zo","name":"\u0639\u0628\u062f\u0627\u0644\u0639\u0632\u064a\u0632","id":4026343481,"id_str":"4026343481","indices":[0,10]},{"screen_name":"alihnandedeanos","name":"\u2764Bassma\u2764\u2693","id":2810174386,"id_str":"2810174386","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emyemy1123","name":"emy Ahmed","id":4012891341,"id_str":"4012891341","indices":[3,14]},{"screen_name":"Madrid_zo","name":"\u0639\u0628\u062f\u0627\u0644\u0639\u0632\u064a\u0632","id":4026343481,"id_str":"4026343481","indices":[16,26]},{"screen_name":"alihnandedeanos","name":"\u2764Bassma\u2764\u2693","id":2810174386,"id_str":"2810174386","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079999661"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364273152,"id_str":"663727741364273152","text":"...\u0435\u0441\u043b\u0438 \u0431\u0443\u0434\u0435\u0442\u0435 \u0441\u043a\u0443\u0447\u0430\u0442\u044c. \u041d\u0435 \u043d\u0443\u0436\u043d\u043e \u0441\u043a\u0443\u0447\u0430\u0442\u044c, \u0435\u0441\u043b\u0438 \u043a\u043e\u0433\u0434\u0430-\u0442\u043e \u0440\u0435\u0448\u0438\u043b\u0438...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1265996910,"id_str":"1265996910","name":"SarahHumphrey","screen_name":"SarahHu33826233","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":97,"friends_count":24,"listed_count":11,"favourites_count":0,"statuses_count":222684,"created_at":"Thu Mar 14 02:47:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3661180081\/fbf64fd9486a8d2cd8b2dc1d2a71b304_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3661180081\/fbf64fd9486a8d2cd8b2dc1d2a71b304_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079999663"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741339049984,"id_str":"663727741339049984","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/i3dKquIpFj","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1223571806,"id_str":"1223571806","name":"\u0648\u0637\u0646 \u0622\u0644\u0646\u0647\u0627\u0631","screen_name":"Zsdrewqyt","location":null,"url":null,"description":"\u0634\u0622\u0639\u0631 Q8","protected":false,"verified":false,"followers_count":309,"friends_count":414,"listed_count":0,"favourites_count":2,"statuses_count":11571,"created_at":"Wed Feb 27 03:57:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419171430102597632\/5BeJCvQD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419171430102597632\/5BeJCvQD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/i3dKquIpFj","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079999657"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741343170560,"id_str":"663727741343170560","text":"\u4e0d\u5473\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3318419466,"id_str":"3318419466","name":"UR\u304b\u305a\u304d\u3093\u3050","screen_name":"mine44taka","location":null,"url":null,"description":"\u30e2\u30b9\u98df\u3079\u305f\u3044 \u30e1\u30ed\u30f3\u30bd\u30fc\u30c0\u306b\u4e57\u308a\u63db\u3048\u6c17\u5473","protected":false,"verified":false,"followers_count":9,"friends_count":8,"listed_count":0,"favourites_count":15400,"statuses_count":17151,"created_at":"Tue Aug 18 08:03:55 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659880480339177472\/gEYkqI9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659880480339177472\/gEYkqI9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318419466\/1446972228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999658"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741343277056,"id_str":"663727741343277056","text":"RT @PoemsPorn: \u201cDon\u2019t let someone who doesn\u2019t know your value tell you how much you\u2019re worth.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873608256,"id_str":"873608256","name":"Sid \u271d","screen_name":"sidvan2015","location":null,"url":null,"description":"\u2022 \u2022 \u2022 Ferris State University '19\/\/\u0391XiD \u2022 \u2022 \u2022 Navy Girlfriend, est. 11.2.12","protected":false,"verified":false,"followers_count":472,"friends_count":383,"listed_count":0,"favourites_count":2217,"statuses_count":12356,"created_at":"Thu Oct 11 13:22:09 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/696260550\/d02c6d6b73f4933f81f8f01dc7085501.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/696260550\/d02c6d6b73f4933f81f8f01dc7085501.jpeg","profile_background_tile":true,"profile_link_color":"F088F0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430640868712450\/FzvurYgC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430640868712450\/FzvurYgC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873608256\/1387428948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:22 +0000 2015","id":663724816738861060,"id_str":"663724816738861060","text":"\u201cDon\u2019t let someone who doesn\u2019t know your value tell you how much you\u2019re worth.\u201d","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354128850,"id_str":"2354128850","name":"Poems Porn","screen_name":"PoemsPorn","location":null,"url":"http:\/\/instagram.com\/poemsporn_","description":"Sharing quotes, excerpts and poetry, mostly found online. If you find your content being used and want it taken down, please email: poemsporn@gmail.com","protected":false,"verified":false,"followers_count":1226864,"friends_count":23,"listed_count":1841,"favourites_count":825,"statuses_count":19472,"created_at":"Fri Feb 21 03:02:11 +0000 2014","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F06565","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532031147266433026\/oO6w5ghO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532031147266433026\/oO6w5ghO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354128850\/1433391953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":756,"favorite_count":847,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PoemsPorn","name":"Poems Porn","id":2354128850,"id_str":"2354128850","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999658"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741343309824,"id_str":"663727741343309824","text":"RT @_gazzella: _ \u0634\u0643\u0644 \u0627\u0644\u062a\u0633\u0631\u064a\u062d\u0629 \u062a\u062c\u064a \u0637\u0642\u0645 \u0645\u0639 \u0627\u0644\u0628\u062f\u0644\u0629 \u0648 \u0627\u0644\u0643\u0631\u0641\u062a\u0629 \u2702\ufe0f\ud83d\udc54 https:\/\/t.co\/Hscn4EwO87","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1461619904,"id_str":"1461619904","name":"Aisha$","screen_name":"AMT_75","location":"Saudi Arabia - Khobar","url":null,"description":"#aMillionPieces \u2728.","protected":false,"verified":false,"followers_count":97,"friends_count":165,"listed_count":0,"favourites_count":1612,"statuses_count":3434,"created_at":"Mon May 27 08:42:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663020068578729984\/ksnhSRaa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663020068578729984\/ksnhSRaa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1461619904\/1446911277","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 04:35:29 +0000 2015","id":662488451506417664,"id_str":"662488451506417664","text":"_ \u0634\u0643\u0644 \u0627\u0644\u062a\u0633\u0631\u064a\u062d\u0629 \u062a\u062c\u064a \u0637\u0642\u0645 \u0645\u0639 \u0627\u0644\u0628\u062f\u0644\u0629 \u0648 \u0627\u0644\u0643\u0631\u0641\u062a\u0629 \u2702\ufe0f\ud83d\udc54 https:\/\/t.co\/Hscn4EwO87","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":468788384,"id_str":"468788384","name":"\u2039 \u062e\u0648\u0644\u064a\u062a\u0627 \u266a'","screen_name":"_gazzella","location":"Konoha ' ","url":null,"description":"- gonna be the one that i want \u0625\u0646 \u0634\u0627\u0621 \u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":304,"friends_count":117,"listed_count":6,"favourites_count":605,"statuses_count":13522,"created_at":"Thu Jan 19 22:35:22 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000012562304\/3e6e0c38115203555432f80c5cc8d07a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000012562304\/3e6e0c38115203555432f80c5cc8d07a.jpeg","profile_background_tile":true,"profile_link_color":"0C0D0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654016712023609345\/OepVzdBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654016712023609345\/OepVzdBE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468788384\/1444764720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662488396783308800,"id_str":"662488396783308800","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","url":"https:\/\/t.co\/Hscn4EwO87","display_url":"pic.twitter.com\/Hscn4EwO87","expanded_url":"http:\/\/twitter.com\/_gazzella\/status\/662488451506417664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662488396783308800,"id_str":"662488396783308800","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","url":"https:\/\/t.co\/Hscn4EwO87","display_url":"pic.twitter.com\/Hscn4EwO87","expanded_url":"http:\/\/twitter.com\/_gazzella\/status\/662488451506417664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_gazzella","name":"\u2039 \u062e\u0648\u0644\u064a\u062a\u0627 \u266a'","id":468788384,"id_str":"468788384","indices":[3,13]}],"symbols":[],"media":[{"id":662488396783308800,"id_str":"662488396783308800","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","url":"https:\/\/t.co\/Hscn4EwO87","display_url":"pic.twitter.com\/Hscn4EwO87","expanded_url":"http:\/\/twitter.com\/_gazzella\/status\/662488451506417664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662488451506417664,"source_status_id_str":"662488451506417664","source_user_id":468788384,"source_user_id_str":"468788384"}]},"extended_entities":{"media":[{"id":662488396783308800,"id_str":"662488396783308800","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGhr9YWUAA_uPW.jpg","url":"https:\/\/t.co\/Hscn4EwO87","display_url":"pic.twitter.com\/Hscn4EwO87","expanded_url":"http:\/\/twitter.com\/_gazzella\/status\/662488451506417664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662488451506417664,"source_status_id_str":"662488451506417664","source_user_id":468788384,"source_user_id_str":"468788384"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079999658"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741339062272,"id_str":"663727741339062272","text":"RT @EstrategiasTv: Las CALL compradas en el #SP500 indican correcci\u00f3n @EnBolsa_ https:\/\/t.co\/xVxdwGbH2b https:\/\/t.co\/qmRKJowQo2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160847250,"id_str":"160847250","name":"guminol","screen_name":"guminol","location":"Madrid","url":"http:\/\/www.guminol.blogspot.com","description":"Apasionado inversor de bolsa (medio plazo) y seguidor tendencia de los mercados.Padre de hija celiaca.Apasionado de los deportes desde el sillon","protected":false,"verified":false,"followers_count":770,"friends_count":902,"listed_count":23,"favourites_count":66,"statuses_count":9842,"created_at":"Tue Jun 29 08:12:42 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"151A61","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166594972\/FibmwQ0a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166594972\/FibmwQ0a.jpeg","profile_background_tile":false,"profile_link_color":"001EB3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000591980301\/8f4f619dff671101b2c7d314c76072ee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000591980301\/8f4f619dff671101b2c7d314c76072ee_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160847250\/1401305738","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:04 +0000 2015","id":663725498388860928,"id_str":"663725498388860928","text":"Las CALL compradas en el #SP500 indican correcci\u00f3n @EnBolsa_ https:\/\/t.co\/xVxdwGbH2b https:\/\/t.co\/qmRKJowQo2","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100453087,"id_str":"100453087","name":"EstrategiasInversi\u00f3n","screen_name":"EstrategiasTv","location":"Madrid","url":"http:\/\/www.estrategiasdeinversion.com","description":"An\u00e1lisis y recomendaciones para invertir en #Bolsa. Desc\u00e1rgate gratis el n\u00famero 100 de nuestra revista. http:\/\/goo.gl\/eXuw15","protected":false,"verified":false,"followers_count":26204,"friends_count":63,"listed_count":966,"favourites_count":115,"statuses_count":58182,"created_at":"Wed Dec 30 09:12:38 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7FFFD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/280824872\/Logo_Estrategias.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/280824872\/Logo_Estrategias.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"CCE5F0","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536805853760724992\/JXzMQkn4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536805853760724992\/JXzMQkn4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100453087\/1401371256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"SP500","indices":[25,31]}],"urls":[{"url":"https:\/\/t.co\/xVxdwGbH2b","expanded_url":"http:\/\/ow.ly\/Updf5","display_url":"ow.ly\/Updf5","indices":[61,84]}],"user_mentions":[{"screen_name":"EnBolsa_","name":"EnBolsa.net","id":390143855,"id_str":"390143855","indices":[51,60]}],"symbols":[],"media":[{"id":663725497788968960,"id_str":"663725497788968960","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","url":"https:\/\/t.co\/qmRKJowQo2","display_url":"pic.twitter.com\/qmRKJowQo2","expanded_url":"http:\/\/twitter.com\/EstrategiasTv\/status\/663725498388860928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":345,"resize":"fit"},"small":{"w":340,"h":114,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725497788968960,"id_str":"663725497788968960","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","url":"https:\/\/t.co\/qmRKJowQo2","display_url":"pic.twitter.com\/qmRKJowQo2","expanded_url":"http:\/\/twitter.com\/EstrategiasTv\/status\/663725498388860928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":345,"resize":"fit"},"small":{"w":340,"h":114,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SP500","indices":[44,50]}],"urls":[{"url":"https:\/\/t.co\/xVxdwGbH2b","expanded_url":"http:\/\/ow.ly\/Updf5","display_url":"ow.ly\/Updf5","indices":[80,103]}],"user_mentions":[{"screen_name":"EstrategiasTv","name":"EstrategiasInversi\u00f3n","id":100453087,"id_str":"100453087","indices":[3,17]},{"screen_name":"EnBolsa_","name":"EnBolsa.net","id":390143855,"id_str":"390143855","indices":[70,79]}],"symbols":[],"media":[{"id":663725497788968960,"id_str":"663725497788968960","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","url":"https:\/\/t.co\/qmRKJowQo2","display_url":"pic.twitter.com\/qmRKJowQo2","expanded_url":"http:\/\/twitter.com\/EstrategiasTv\/status\/663725498388860928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":345,"resize":"fit"},"small":{"w":340,"h":114,"resize":"fit"}},"source_status_id":663725498388860928,"source_status_id_str":"663725498388860928","source_user_id":100453087,"source_user_id_str":"100453087"}]},"extended_entities":{"media":[{"id":663725497788968960,"id_str":"663725497788968960","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG0twUsAAO2-r.png","url":"https:\/\/t.co\/qmRKJowQo2","display_url":"pic.twitter.com\/qmRKJowQo2","expanded_url":"http:\/\/twitter.com\/EstrategiasTv\/status\/663725498388860928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":202,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":345,"resize":"fit"},"small":{"w":340,"h":114,"resize":"fit"}},"source_status_id":663725498388860928,"source_status_id_str":"663725498388860928","source_user_id":100453087,"source_user_id_str":"100453087"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999657"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376839680,"id_str":"663727741376839680","text":"RT @Mefollomiradas: Del oto\u00f1o aprend\u00ed que aunque las hojas caigan, el \u00e1rbol sigue de pie.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTa to ciclao\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2234788332,"id_str":"2234788332","name":"Ley de adolescentes\u2122","screen_name":"iChicoSensible","location":"\u2605 TROYANOS JUNIOR \u2605","url":"https:\/\/twitter.com\/iChicoSensible\/timelines\/614558096883589120","description":"Fotografo. Te besar\u00eda la misma cantidad de veces que he respirado. Si lees esto me debes un abrazo.","protected":false,"verified":false,"followers_count":64457,"friends_count":6660,"listed_count":70,"favourites_count":4,"statuses_count":552,"created_at":"Sat Dec 07 16:56:46 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496636047632003072\/p5OV10JV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496636047632003072\/p5OV10JV.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540878991368798208\/BqQRR6k6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540878991368798208\/BqQRR6k6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2234788332\/1417790613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 19 18:07:07 +0000 2015","id":656169721264345088,"id_str":"656169721264345088","text":"Del oto\u00f1o aprend\u00ed que aunque las hojas caigan, el \u00e1rbol sigue de pie.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267208636,"id_str":"267208636","name":"Alguien Diferente\u2122","screen_name":"Mefollomiradas","location":"Espa\u00f1a \u2708 De ah\u00ed al cielo","url":"http:\/\/instagram.com\/chicosgeniales","description":"A veces no hay segundas oportunidades, a veces es ahora o nunca, vive el momento. Contacto \/ Publicidad: Alguiendiferente@outlook.com \u2605TROYANOS\u2605","protected":false,"verified":false,"followers_count":318433,"friends_count":268,"listed_count":417,"favourites_count":81,"statuses_count":5200,"created_at":"Wed Mar 16 14:24:10 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645291107149041664\/-A4shbXd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645291107149041664\/-A4shbXd.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645287948666163201\/P5COM8S8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645287948666163201\/P5COM8S8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267208636\/1442683630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1529,"favorite_count":861,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mefollomiradas","name":"Alguien Diferente\u2122","id":267208636,"id_str":"267208636","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741343240192,"id_str":"663727741343240192","text":"@FamilieLangguth Da muss ich passen. \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727403118829568,"in_reply_to_status_id_str":"663727403118829568","in_reply_to_user_id":360449153,"in_reply_to_user_id_str":"360449153","in_reply_to_screen_name":"FamilieLangguth","user":{"id":300390038,"id_str":"300390038","name":"jolicoeur ","screen_name":"jolicoeur11","location":"Germany","url":null,"description":"Reisen\/Travel\/Photos\r\net plus","protected":false,"verified":false,"followers_count":1146,"friends_count":542,"listed_count":170,"favourites_count":37552,"statuses_count":168774,"created_at":"Tue May 17 17:48:41 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570588008294776832\/tx1hp_M6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570588008294776832\/tx1hp_M6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300390038\/1417363263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FamilieLangguth","name":"Familie F.W.Langguth","id":360449153,"id_str":"360449153","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079999658"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741347434496,"id_str":"663727741347434496","text":"RT @SincerelyTumblr: dear attractive people\n\nhow do you do that","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":217229300,"id_str":"217229300","name":"evelyn","screen_name":"idkwttd","location":null,"url":null,"description":"i'm gonna live like tomorrow doesn't exist","protected":false,"verified":false,"followers_count":1076,"friends_count":595,"listed_count":0,"favourites_count":215,"statuses_count":12100,"created_at":"Thu Nov 18 23:04:31 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526199015054909440\/Vpx-61Dy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526199015054909440\/Vpx-61Dy.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654491342198972417\/hNP9w5aQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654491342198972417\/hNP9w5aQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217229300\/1442817500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:43:31 +0000 2015","id":663713532190552064,"id_str":"663713532190552064","text":"dear attractive people\n\nhow do you do that","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226690054,"id_str":"226690054","name":"Sincerely Tumblr","screen_name":"SincerelyTumblr","location":null,"url":"http:\/\/encourage.tumblr.com\/","description":"Everything was David Karp and nothing hurt. *Parody Account \/ Fan Page* - @CommonFanGri","protected":false,"verified":false,"followers_count":2114642,"friends_count":49809,"listed_count":3364,"favourites_count":4370,"statuses_count":47060,"created_at":"Tue Dec 14 20:35:48 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_tile":true,"profile_link_color":"2E3796","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226690054\/1446353800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1941,"favorite_count":2826,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SincerelyTumblr","name":"Sincerely Tumblr","id":226690054,"id_str":"226690054","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999659"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376724993,"id_str":"663727741376724993","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u6708\u306b\u60f3\u3046\u306f\u6ce1\u6cab\u306e\u5922\uff08\u6975\uff09\u300d\nhttps:\/\/t.co\/CLh1Aib2Kj\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3020335268,"id_str":"3020335268","name":"\u3051\u3063\u3051\u3051\uff01","screen_name":"kksskk0108","location":null,"url":null,"description":"\u5b8c\u5168\u306a\u308b\u88cf\u57a2\u306a\u308a\u3002","protected":false,"verified":false,"followers_count":20,"friends_count":82,"listed_count":0,"favourites_count":1,"statuses_count":117,"created_at":"Sun Feb 15 02:17:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615764200669884416\/g-K80PrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615764200669884416\/g-K80PrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3020335268\/1430046083","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CLh1Aib2Kj","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=OTgzMjQ5ODIy","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741372637184,"id_str":"663727741372637184","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1351697012,"id_str":"1351697012","name":"BABIC","screen_name":"babicscott","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":388,"listed_count":20,"favourites_count":10726,"statuses_count":11124,"created_at":"Sun Apr 14 11:55:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3519486396\/cea8a83dda44ee49522e0e45286c2197_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3519486396\/cea8a83dda44ee49522e0e45286c2197_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1464,"favorite_count":916,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999665"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741372645376,"id_str":"663727741372645376","text":"RT @soynormalvale: si la pizza adelgazara probablemente desaparecer\u00eda","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1648032890,"id_str":"1648032890","name":"BorjaMG","screen_name":"Boy_KatyCat13","location":"Spain","url":null,"description":"People are so fake.\/\/Youtube is my life~YellowMellowMG mi \u00fanico amor\/\/MUSIC IN THAT PLACES~KATY PERRY\/\/LETTERS AND LETTERS","protected":false,"verified":false,"followers_count":113,"friends_count":361,"listed_count":1,"favourites_count":562,"statuses_count":2410,"created_at":"Mon Aug 05 15:19:14 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549324489712873473\/ndbpIxzk.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549324489712873473\/ndbpIxzk.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645714084130852864\/sQaY--K2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645714084130852864\/sQaY--K2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1648032890\/1442785316","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Jul 19 19:10:07 +0000 2015","id":622845892270252032,"id_str":"622845892270252032","text":"si la pizza adelgazara probablemente desaparecer\u00eda","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1355273870,"id_str":"1355273870","name":"no","screen_name":"soynormalvale","location":null,"url":null,"description":"en serio hay gente que lee esto","protected":false,"verified":false,"followers_count":61441,"friends_count":17,"listed_count":95,"favourites_count":435,"statuses_count":680,"created_at":"Mon Apr 15 20:26:48 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3B3B3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535094566521548801\/4bkUmY5u.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535094566521548801\/4bkUmY5u.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552949623112081408\/-JtROvri_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552949623112081408\/-JtROvri_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1355273870\/1416411246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1549,"favorite_count":1083,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soynormalvale","name":"no","id":1355273870,"id_str":"1355273870","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999665"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368467460,"id_str":"663727741368467460","text":"@DanielPlatzman DANIEL comment \u00e7a va aujourd'hui ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":174112306,"in_reply_to_user_id_str":"174112306","in_reply_to_screen_name":"DanielPlatzman","user":{"id":1890033782,"id_str":"1890033782","name":"+gaelle\/\/ miss them+","screen_name":"hawmarvel","location":"hp hg lotr cpd spn narnia \u2022 id","url":"http:\/\/imaginedragonsmusic.com","description":"\u00abtell lindsay she made me a better cop\u00bb\u25b3\u20d2\u20d8 \nI saw the loves of my life the 24.10.15 \/\/ victorine","protected":false,"verified":false,"followers_count":1778,"friends_count":477,"listed_count":25,"favourites_count":5035,"statuses_count":69405,"created_at":"Sat Sep 21 12:26:06 +0000 2013","utc_offset":3600,"time_zone":"Brussels","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624979458592653312\/DZGNeorZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624979458592653312\/DZGNeorZ.png","profile_background_tile":false,"profile_link_color":"C7C3C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662744550952165376\/dvvdKV-K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662744550952165376\/dvvdKV-K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1890033782\/1446822196","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DanielPlatzman","name":"Daniel Platzman","id":174112306,"id_str":"174112306","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376708608,"id_str":"663727741376708608","text":"\u30db\u30ef\u30a4\u30c4\u304cabc\u30de\u30fc\u30c8\u306b\u8cb7\u53ce\u3055\u308c\u3066\u308b\u3063\u3066\u306e\u304c\u3084\u3063\u3071\u308a\u5fc3\u6b8b\u308a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3013440620,"id_str":"3013440620","name":"\u304b\u305a\u307e\u3093\u30de\u30f3","screen_name":"RALPHLAURENRRL","location":null,"url":"http:\/\/instagram.com\/kazuman0629","description":"RRL\/UES\/Resolute\/RalphLauren\/Jeans\/Shoes\/Fashion\/Music \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059 \u30c7\u30cb\u30c7\u30cbdate\u3067\u304d\u308b\u76f8\u624b\u63a2\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":240,"friends_count":202,"listed_count":4,"favourites_count":1685,"statuses_count":3994,"created_at":"Sun Feb 08 13:16:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649615493737779201\/Mf3kzbj-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649615493737779201\/Mf3kzbj-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3013440620\/1440576222","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741359886336,"id_str":"663727741359886336","text":"@tnbtoc11 \u305a\u3063\u3068\u307e\u3048w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727628428296192,"in_reply_to_status_id_str":"663727628428296192","in_reply_to_user_id":3076582806,"in_reply_to_user_id_str":"3076582806","in_reply_to_screen_name":"tnbtoc11","user":{"id":392693710,"id_str":"392693710","name":"\u30a2\u30cb\u5145","screen_name":"anijyuicx","location":"\u81ea\u5ba4","url":"http:\/\/www.youtube.com\/channel\/UCToQv5dDUeiWQryZJ--puuA","description":"\u96a0\u5c45\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":744,"friends_count":736,"listed_count":17,"favourites_count":28753,"statuses_count":86156,"created_at":"Mon Oct 17 12:45:31 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622745599\/hx1t7zy4x6boxae8tdbl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622745599\/hx1t7zy4x6boxae8tdbl.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581330023031787520\/1bBDfDoT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581330023031787520\/1bBDfDoT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392693710\/1372355231","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tnbtoc11","name":"\u30e1\u30f3\u5b50","id":3076582806,"id_str":"3076582806","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999662"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741360033794,"id_str":"663727741360033794","text":"Nike Tech FLC Aeroloft Bomber available instore and online @ https:\/\/t.co\/hgtdroETvR sz S-XL \/ \u20ac220 we ship\u2026 https:\/\/t.co\/GIXr9R8Vp7","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24270648,"id_str":"24270648","name":"Oqium","screen_name":"Oqium","location":"Amsterdam\/Rotterdam NL","url":"http:\/\/www.oqium.nl","description":"Oqium sneaker store for exclusive Air Jordan & Nike sneakers. Located in Amsterdam & Rotterdam,the Netherlands part of the Oqium Paris & Oqium Barcelona family!","protected":false,"verified":false,"followers_count":4444,"friends_count":42,"listed_count":58,"favourites_count":4,"statuses_count":5277,"created_at":"Fri Mar 13 22:33:02 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2172586422\/logo-oqium-klein_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2172586422\/logo-oqium-klein_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hgtdroETvR","expanded_url":"http:\/\/www.oqium.nl","display_url":"oqium.nl","indices":[61,84]},{"url":"https:\/\/t.co\/GIXr9R8Vp7","expanded_url":"https:\/\/instagram.com\/p\/93iS2NTWnr\/","display_url":"instagram.com\/p\/93iS2NTWnr\/","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999662"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364256768,"id_str":"663727741364256768","text":"RT @bombonesdeser: diez #FansAwards2015 #ElBombon Sergio Celli","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3345247995,"id_str":"3345247995","name":"Diame","screen_name":"CelliFlor_","location":"En donde ente mis idolos ","url":null,"description":"Sergio,Flor,Paioedo,Rama,Lali,Mariano Martinez ,Jota esse Los amo Fecha inovidable 30\/04\/15,me sigue @lautta93","protected":false,"verified":false,"followers_count":1245,"friends_count":1029,"listed_count":7,"favourites_count":18011,"statuses_count":49258,"created_at":"Thu Jun 25 09:41:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661341798665691136\/G_I7VzT4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661341798665691136\/G_I7VzT4.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663133656790245376\/NLWZmTU4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663133656790245376\/NLWZmTU4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3345247995\/1446939799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:20:03 +0000 2015","id":663707626061103108,"id_str":"663707626061103108","text":"diez #FansAwards2015 #ElBombon Sergio Celli","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3044477830,"id_str":"3044477830","name":"camilita","screen_name":"bombonesdeser","location":null,"url":null,"description":"| 18-02 | un beso gigante para bombonesdeser y gracias por todo el apoyo las amo","protected":false,"verified":false,"followers_count":9001,"friends_count":995,"listed_count":2,"favourites_count":18306,"statuses_count":75249,"created_at":"Wed Feb 18 04:59:48 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647922087475216384\/jn0Sx4fD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647922087475216384\/jn0Sx4fD.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663124782360215552\/LIvHiePQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663124782360215552\/LIvHiePQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3044477830\/1443311545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[5,20]},{"text":"ElBombon","indices":[21,30]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[24,39]},{"text":"ElBombon","indices":[40,49]}],"urls":[],"user_mentions":[{"screen_name":"bombonesdeser","name":"camilita","id":3044477830,"id_str":"3044477830","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079999663"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376819200,"id_str":"663727741376819200","text":"@CaytThaGreat u said a liquor foundation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715592499671040,"in_reply_to_status_id_str":"663715592499671040","in_reply_to_user_id":3187535068,"in_reply_to_user_id_str":"3187535068","in_reply_to_screen_name":"CaytThaGreat","user":{"id":620018270,"id_str":"620018270","name":".","screen_name":"lexintheA","location":null,"url":null,"description":"26. Sweet Baby James 4.5.13 Bun in the oven 4.20.16 IG:alexisj1989 Met Lana 9.20.14 If it's not double guac idgaf @bekahmcd. #FightCadesBattle. RIP RLK Fly High","protected":false,"verified":false,"followers_count":1884,"friends_count":484,"listed_count":45,"favourites_count":47714,"statuses_count":71815,"created_at":"Wed Jun 27 14:00:14 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452978447749361664\/c-T3NqSL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452978447749361664\/c-T3NqSL.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660851533190455296\/NesVpf2G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660851533190455296\/NesVpf2G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620018270\/1446394096","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CaytThaGreat","name":"the Cayt","id":3187535068,"id_str":"3187535068","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741347348480,"id_str":"663727741347348480","text":"Israeli soldiers kill father of three-week-old baby https:\/\/t.co\/JUx9efl8Up","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963914664,"id_str":"963914664","name":"Voices For Palestine","screen_name":"Voices4Pals","location":"Seattle, WA","url":"http:\/\/www.voicesforpalestine.org","description":"Official Twitter Account for Voices For #Palestine in #Seattle RTs \u2260 endorsements! #GazaUnderAttack #Gaza","protected":false,"verified":false,"followers_count":82,"friends_count":183,"listed_count":4,"favourites_count":4,"statuses_count":3411,"created_at":"Thu Nov 22 09:14:04 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2880908280\/2ef17f233e3893ab16e4fe248c3e58a4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2880908280\/2ef17f233e3893ab16e4fe248c3e58a4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/963914664\/1407294649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JUx9efl8Up","expanded_url":"http:\/\/fb.me\/4Ur3Sdp3t","display_url":"fb.me\/4Ur3Sdp3t","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999659"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368307712,"id_str":"663727741368307712","text":"@seamus4022 \n1\u66f2\u3060\u3051\u3081\u3063\u3061\u3083\u597d\u304d\u306a\u66f2\u304c\u3042\u3063\u3066\u306a\n\u305d\u3057\u3066\u30a8\u30ea\u30c3\u30af\u30e1\u30eb\u30f4\u30a3\u30f3\u304c\u306a\u304b\u306a\u304b\u597d\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727445883748352,"in_reply_to_status_id_str":"663727445883748352","in_reply_to_user_id":1595209680,"in_reply_to_user_id_str":"1595209680","in_reply_to_screen_name":"seamus4022","user":{"id":1256182585,"id_str":"1256182585","name":"Ox\u5c11\u5c06","screen_name":"ManfredYardHoll","location":"\u9699\u9593","url":null,"description":"To everthing there is a season","protected":false,"verified":false,"followers_count":180,"friends_count":200,"listed_count":6,"favourites_count":19787,"statuses_count":44187,"created_at":"Sun Mar 10 05:29:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662314932319334401\/X5Blcnzl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662314932319334401\/X5Blcnzl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256182585\/1446743631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"seamus4022","name":"\u3057\u30fc\u307e\u3059\u3055\u3093","id":1595209680,"id_str":"1595209680","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368336384,"id_str":"663727741368336384","text":"RT @BreatheOZ: \uc774 \uc815\ub3c4\uba74 \ud3c9\ubc94\ud558\uc796\uc544\uc694 \ubb34\uc9c0\uac1c\ub3c4 \uc548 \uae54\uc558\ub294\ub370 https:\/\/t.co\/z8ZA6wbJww","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3724899853,"id_str":"3724899853","name":"\ub2f9\uc2e0\uc758 \ubc00\ub85c","screen_name":"M_IL_LO","location":null,"url":null,"description":"\ub098\ub294 \uc21c\uac04\uc744 \ud5a5\ud558\uc5ec \ub9d0\ud558\ub178\ub2c8, \uba48\ucd94\uc5b4\ub77c, \ub108 \uc815\ub9d0 \uc544\ub984\ub2f5\ub2e4.","protected":false,"verified":false,"followers_count":68,"friends_count":111,"listed_count":0,"favourites_count":296,"statuses_count":696,"created_at":"Tue Sep 29 10:37:40 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663411511176499200\/HFM2eW9M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663411511176499200\/HFM2eW9M_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:28 +0000 2015","id":663727612234039297,"id_str":"663727612234039297","text":"\uc774 \uc815\ub3c4\uba74 \ud3c9\ubc94\ud558\uc796\uc544\uc694 \ubb34\uc9c0\uac1c\ub3c4 \uc548 \uae54\uc558\ub294\ub370 https:\/\/t.co\/z8ZA6wbJww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288998654,"id_str":"3288998654","name":"\uc624\uc988\ub2d8 \uc288\ub9ac\ud14c \uc5f0\uc2b5\ubb38\uc81c","screen_name":"BreatheOZ","location":null,"url":"http:\/\/writingoz.wix.com\/commission","description":"\ubb36\uc5b4\uc918. \ub098\ub97c \ud480\uc9c0 \ub9d0\uc544\uc918. \uc5bc\ub9c8\ub098 \ub9ce\uc740 \ud749\ud130\ub4e4\uc744 \uac74\ub108\uac14\ub294\uc9c0. \ub108\ub294 \uc6b8\uba74\uc11c \ub0b4\uac8c \uc6b8\uc9c0 \ub9d0\ub77c\uace0 \ub9d0\ud55c\ub2e4.","protected":false,"verified":false,"followers_count":109,"friends_count":133,"listed_count":1,"favourites_count":248,"statuses_count":2163,"created_at":"Thu Jul 23 15:59:34 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663326886219505664\/8o9cdG_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663326886219505664\/8o9cdG_2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3288998654\/1446984427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727610384379904,"id_str":"663727610384379904","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","url":"https:\/\/t.co\/z8ZA6wbJww","display_url":"pic.twitter.com\/z8ZA6wbJww","expanded_url":"http:\/\/twitter.com\/BreatheOZ\/status\/663727612234039297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727610384379904,"id_str":"663727610384379904","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","url":"https:\/\/t.co\/z8ZA6wbJww","display_url":"pic.twitter.com\/z8ZA6wbJww","expanded_url":"http:\/\/twitter.com\/BreatheOZ\/status\/663727612234039297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BreatheOZ","name":"\uc624\uc988\ub2d8 \uc288\ub9ac\ud14c \uc5f0\uc2b5\ubb38\uc81c","id":3288998654,"id_str":"3288998654","indices":[3,13]}],"symbols":[],"media":[{"id":663727610384379904,"id_str":"663727610384379904","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","url":"https:\/\/t.co\/z8ZA6wbJww","display_url":"pic.twitter.com\/z8ZA6wbJww","expanded_url":"http:\/\/twitter.com\/BreatheOZ\/status\/663727612234039297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663727612234039297,"source_status_id_str":"663727612234039297","source_user_id":3288998654,"source_user_id_str":"3288998654"}]},"extended_entities":{"media":[{"id":663727610384379904,"id_str":"663727610384379904","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvryUcAAXqLi.jpg","url":"https:\/\/t.co\/z8ZA6wbJww","display_url":"pic.twitter.com\/z8ZA6wbJww","expanded_url":"http:\/\/twitter.com\/BreatheOZ\/status\/663727612234039297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663727612234039297,"source_status_id_str":"663727612234039297","source_user_id":3288998654,"source_user_id_str":"3288998654"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741355864064,"id_str":"663727741355864064","text":"RT @facubustos16: Ahora que lo pienso, al pedo fui al cole,no entre al aula y me la pase jugando a la bocha en el gim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1732836992,"id_str":"1732836992","name":"Esa Otra","screen_name":"miccavargas","location":"R\u00edo Gallegos, Argentina","url":null,"description":"Santino Lionel\u2665 Mati 23\/12\/12\u2020 Club Atletico Boca Junior 58B2EE6B","protected":false,"verified":false,"followers_count":547,"friends_count":537,"listed_count":2,"favourites_count":1116,"statuses_count":17297,"created_at":"Thu Sep 05 19:08:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0048FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506265357951070208\/TGqWM10U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506265357951070208\/TGqWM10U.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640372569191915520\/Pi32DOw1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640372569191915520\/Pi32DOw1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1732836992\/1435863331","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:47 +0000 2015","id":663722404364066816,"id_str":"663722404364066816","text":"Ahora que lo pienso, al pedo fui al cole,no entre al aula y me la pase jugando a la bocha en el gim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2401043025,"id_str":"2401043025","name":"Millonario #1","screen_name":"facubustos16","location":"Rio Gallegos","url":null,"description":"Club Atletico River Plate \u2665\u2665\u2665","protected":false,"verified":false,"followers_count":637,"friends_count":617,"listed_count":0,"favourites_count":2864,"statuses_count":10812,"created_at":"Tue Mar 11 03:01:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647187103542067200\/jO8s7CzD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647187103542067200\/jO8s7CzD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401043025\/1429449141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"005ef29d79d0b45a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/005ef29d79d0b45a.json","place_type":"city","name":"R\u00edo Gallegos","full_name":"R\u00edo Gallegos, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-69.268584,-51.647549],[-69.268584,-51.603193],[-69.181495,-51.603193],[-69.181495,-51.647549]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"facubustos16","name":"Millonario #1","id":2401043025,"id_str":"2401043025","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999661"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368446977,"id_str":"663727741368446977","text":"@mynameisyadi Butuh Followers Murah? Mampir Aja Ke Sini gan https:\/\/t.co\/02c4DlbZdL","source":"\u003ca href=\"http:\/\/panel-fauzan.tk\/\" rel=\"nofollow\"\u003eAuto Tweet Fauzan Ganteng Tralal\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660976115712,"in_reply_to_status_id_str":"663727660976115712","in_reply_to_user_id":2259200502,"in_reply_to_user_id_str":"2259200502","in_reply_to_screen_name":"mynameisyadi","user":{"id":1557714499,"id_str":"1557714499","name":"hisbahul","screen_name":"hisbahul","location":"Dibumi","url":null,"description":"Jangan maunya egois, tapi saling ngerti. Jangan maunya menang sendiri, tapi saling intropeksi.","protected":false,"verified":false,"followers_count":6,"friends_count":34,"listed_count":0,"favourites_count":0,"statuses_count":28092,"created_at":"Sun Jun 30 09:51:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577140881322545152\/Oa9GURb__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577140881322545152\/Oa9GURb__normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/02c4DlbZdL","expanded_url":"http:\/\/kask.us\/hMTDf","display_url":"kask.us\/hMTDf","indices":[60,83]}],"user_mentions":[{"screen_name":"mynameisyadi","name":"yadi","id":2259200502,"id_str":"2259200502","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364113412,"id_str":"663727741364113412","text":"@awesome0130 \u3057\u306d\u3088@0220_greeeen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727583599562752,"in_reply_to_status_id_str":"663727583599562752","in_reply_to_user_id":2273344082,"in_reply_to_user_id_str":"2273344082","in_reply_to_screen_name":"awesome0130","user":{"id":2363878248,"id_str":"2363878248","name":"\u5ee3\u5ddd\u7d14\u77e2","screen_name":"SDD0807","location":null,"url":null,"description":"\u30d0\u30b9\u30b1\u306b\u6eba\u308c\u305f\u3044 \u5b66\u9928","protected":false,"verified":false,"followers_count":395,"friends_count":355,"listed_count":1,"favourites_count":694,"statuses_count":982,"created_at":"Thu Feb 27 08:55:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645240251472973824\/bC_CXIeU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645240251472973824\/bC_CXIeU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2363878248\/1400667313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"awesome0130","name":"\u6e21\u8fba\u6d77\u91cc","id":2273344082,"id_str":"2273344082","indices":[0,12]},{"screen_name":"0220_greeeen","name":"\u5c71\u5d0e \u4ec1","id":2453073937,"id_str":"2453073937","indices":[16,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999663"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741351673856,"id_str":"663727741351673856","text":"@Eddie_Mazuzy linda foto\ud83d\ude0d\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662779923912900608,"in_reply_to_status_id_str":"662779923912900608","in_reply_to_user_id":2277033471,"in_reply_to_user_id_str":"2277033471","in_reply_to_screen_name":"Eddie_Mazuzy","user":{"id":3338980491,"id_str":"3338980491","name":"Monica Escritorio","screen_name":"Mescritorio123","location":"Nampula ","url":null,"description":"instagram: _menina.misterio__\nfacebook:Monica wizz Vanessa\nsnapchat:M.escritorio \n \u221e amigos\u30b7\n \u2654Pequena Monii\u2654\u30b7","protected":false,"verified":false,"followers_count":159,"friends_count":295,"listed_count":1,"favourites_count":2249,"statuses_count":2906,"created_at":"Sun Jun 21 13:32:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661548532294418432\/KyDIxas6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661548532294418432\/KyDIxas6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3338980491\/1446560421","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Eddie_Mazuzy","name":"Eddie","id":2277033471,"id_str":"2277033471","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079999660"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376856064,"id_str":"663727741376856064","text":"@momen1031987 Dn \u064a\u0627\u0645\u0624\u0645\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727480231084033,"in_reply_to_status_id_str":"663727480231084033","in_reply_to_user_id":605477487,"in_reply_to_user_id_str":"605477487","in_reply_to_screen_name":"momen1031987","user":{"id":3394516157,"id_str":"3394516157","name":"AMR ADEL","screen_name":"MoraYoka","location":null,"url":null,"description":"\u2764\u0627\u0644\u0632\u0648\u0627\u062c \u0628\u062f\u0648\u0646 \u062d\u0628 \u0643\u0627\u0644\u0639\u0628\u0627\u062f\u0629 \u0628\u062f\u0648\u0646 \u0627\u064a\u0645\u0627\u0646\u2764 (\u0627\u0644\u0632\u0645\u0627\u0644\u0643 \u0647\u0648 \u0627\u0644\u062d\u064a\u0627\u0629 \u0627\u0644\u0641\u0631\u062d\u0647 \u064a\u0639\u0646\u0649 \u0627\u0644\u0632\u0645\u0627\u0644\u0643 )#\u0648\u0644\u0627\u062f_100_\u0639\u0642\u0628\u0647","protected":false,"verified":false,"followers_count":318,"friends_count":401,"listed_count":0,"favourites_count":301,"statuses_count":2170,"created_at":"Wed Jul 29 20:48:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663472567915819012\/gfENW-9W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663472567915819012\/gfENW-9W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3394516157\/1442519971","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"momen1031987","name":"moamen EL Nakib","id":605477487,"id_str":"605477487","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376724992,"id_str":"663727741376724992","text":"RT @tsumuko622: \u7121\u5370\u7acb\u2192\u9577\u7537\u3002\u5272\u3068\u30c9\u30e9\u30a4\nP4A\u7acb\u2192\u6b21\u7537\u3002\u3084\u305f\u3089\u984e\u30cd\u30bf\u3067\u30a4\u30b8\u3089\u308c\u308b\nP4G\u7acb\u2192\u4e09\u7537\u3002\u968f\u4e00\u306e\u30b3\u30df\u30e5\u529b\u306e\u6301\u3061\u4e3b\nP4V\u7acb\u2192\u56db\u7537\u3002\u9699\u3042\u3089\u3070\u30b3\u30f3\u30c8\u3057\u3088\u3046\u3068\u3059\u308b\u304a\u7b11\u3044\u82b8\u4eba\u4f53\u8cea\nP4U\u7acb\u2192\u4e94\u7537\u3002\u7279\u6280\u306f\u516d\u6cd5\u5168\u66f8\u306e\u6697\u8aa6\nP4D\u7acb\u2192\u672b\u3063\u5b50\u3002\u30c0\u30f3\u30b9\u304c\u5f97\u610f\u3060\u304c\u30ad\u30e1\u9854\u304c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1067430642,"id_str":"1067430642","name":"\u30d5\u30a1\u30a4\u30c6\u30a3\u30f3\u30b0\u30e9\u30f3","screen_name":"minchi43","location":"\u30b8\u30e5\u30cd\u30b9","url":"http:\/\/twpf.jp\/minchi43","description":"\u597d\u304d\u306a\u5b50\u305f\u3061\u306e\u305f\u3081\u306b\u751f\u304d\u3066\u308b\u3002\u30ab\u30e9\u677e\u3002","protected":false,"verified":false,"followers_count":325,"friends_count":229,"listed_count":18,"favourites_count":4767,"statuses_count":123909,"created_at":"Mon Jan 07 04:37:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474469185859235840\/YJLEd4EU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474469185859235840\/YJLEd4EU.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662206738158915584\/xajHDeO-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662206738158915584\/xajHDeO-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1067430642\/1396609653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:42 +0000 2015","id":663726157620121600,"id_str":"663726157620121600","text":"\u7121\u5370\u7acb\u2192\u9577\u7537\u3002\u5272\u3068\u30c9\u30e9\u30a4\nP4A\u7acb\u2192\u6b21\u7537\u3002\u3084\u305f\u3089\u984e\u30cd\u30bf\u3067\u30a4\u30b8\u3089\u308c\u308b\nP4G\u7acb\u2192\u4e09\u7537\u3002\u968f\u4e00\u306e\u30b3\u30df\u30e5\u529b\u306e\u6301\u3061\u4e3b\nP4V\u7acb\u2192\u56db\u7537\u3002\u9699\u3042\u3089\u3070\u30b3\u30f3\u30c8\u3057\u3088\u3046\u3068\u3059\u308b\u304a\u7b11\u3044\u82b8\u4eba\u4f53\u8cea\nP4U\u7acb\u2192\u4e94\u7537\u3002\u7279\u6280\u306f\u516d\u6cd5\u5168\u66f8\u306e\u6697\u8aa6\nP4D\u7acb\u2192\u672b\u3063\u5b50\u3002\u30c0\u30f3\u30b9\u304c\u5f97\u610f\u3060\u304c\u30ad\u30e1\u9854\u304c\u30a6\u30b6\u3044\u3068\u3082\u3063\u3071\u3089\u306e\u8a71\u984c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1937961632,"id_str":"1937961632","name":"\u7d2c\u5b50","screen_name":"tsumuko622","location":"\u6210\u4eba\u6e08\u8150","url":"http:\/\/touch.pixiv.net\/member.php?id=1899325","description":"\u4e3b\u306b\u8db3\u7acb\u900f \u4ed6\u6d0b\u753b\u30fb\u4ff3\u512a\u7b49\u96d1\u591a Hot:\u5929\u60aa\/\u30e1\u30a4\u30ba\/\u677e http:\/\/twpf.jp\/tsumuko622","protected":false,"verified":false,"followers_count":386,"friends_count":351,"listed_count":13,"favourites_count":16196,"statuses_count":29593,"created_at":"Sat Oct 05 15:24:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661711691848089600\/ydQMoOq__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661711691848089600\/ydQMoOq__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1937961632\/1443973691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsumuko622","name":"\u7d2c\u5b50","id":1937961632,"id_str":"1937961632","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368406017,"id_str":"663727741368406017","text":"@Unsustainablesy ma certo awaw \ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726914406850561,"in_reply_to_status_id_str":"663726914406850561","in_reply_to_user_id":1721963300,"in_reply_to_user_id_str":"1721963300","in_reply_to_screen_name":"Unsustainablesy","user":{"id":3037033321,"id_str":"3037033321","name":"way-lee","screen_name":"buymelevitt","location":null,"url":null,"description":"dispensatrice di arcobaleni che basa la propria vita su delle idee che non ci sono pi\u00f9.Sono il clone di @echelondepphead . Allons-y motherfuckers","protected":false,"verified":false,"followers_count":826,"friends_count":678,"listed_count":2,"favourites_count":6779,"statuses_count":1910,"created_at":"Sun Feb 22 22:23:51 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649942632379121664\/ZIzoI-v0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649942632379121664\/ZIzoI-v0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037033321\/1431718654","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Unsustainablesy","name":":: pann\u00f8cchiagirl ::","id":1721963300,"id_str":"1721963300","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741376835584,"id_str":"663727741376835584","text":"BASIN PRESS Kep\u00e7e kulak sorununa ameliyats\u0131z \u00e7\u00f6z\u00fcm! https:\/\/t.co\/Jn8oJbk3zG https:\/\/t.co\/9H2OejEm7H","source":"\u003ca href=\"https:\/\/www.internethaberajansi.com\" rel=\"nofollow\"\u003e\u0130hajans - \u0130nternet Haber Ajans\u0131\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2478183882,"id_str":"2478183882","name":"\u0130nternet Haber Ajans","screen_name":"ihajans","location":"\u0130zmir","url":"http:\/\/bit.ly\/1TVmbSZ","description":"HABER UYGULAMAMIZA https:\/\/play.google.com\/store\/apps\/details?id=com.ih.ajans ADRES\u0130NDEN ULA\u015eAB\u0130L\u0130RS\u0130N\u0130Z","protected":false,"verified":false,"followers_count":168,"friends_count":179,"listed_count":8,"favourites_count":0,"statuses_count":33204,"created_at":"Mon May 05 10:58:11 +0000 2014","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561789968742236160\/BUy4Y5dy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561789968742236160\/BUy4Y5dy.jpeg","profile_background_tile":true,"profile_link_color":"085D94","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577965888936128513\/GLi_Lg3L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577965888936128513\/GLi_Lg3L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2478183882\/1425948444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jn8oJbk3zG","expanded_url":"http:\/\/bit.ly\/1QdQRzF","display_url":"bit.ly\/1QdQRzF","indices":[52,75]},{"url":"https:\/\/t.co\/9H2OejEm7H","expanded_url":"http:\/\/bit.ly\/1TVmbSZ","display_url":"bit.ly\/1TVmbSZ","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079999666"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741355712512,"id_str":"663727741355712512","text":"@Gm_you_0920 \u314b\u314b\u314b\u314b\uadc0\uc5ec\uc6cc \ub108\ud76c \ucee4\ud50c\ub4e4 \ubcf4\uba74 \uae30\ubd84\uc774 \uc88b\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726812401283073,"in_reply_to_status_id_str":"663726812401283073","in_reply_to_user_id":4091826494,"in_reply_to_user_id_str":"4091826494","in_reply_to_screen_name":"Gm_you_0920","user":{"id":4157321353,"id_str":"4157321353","name":"\ud55c \uc7ac\uc900","screen_name":"Jae__Jun","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":37,"listed_count":0,"favourites_count":0,"statuses_count":365,"created_at":"Sat Nov 07 12:58:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365483136028672\/XVwu2Q2n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365483136028672\/XVwu2Q2n_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gm_you_0920","name":"\u1160 \u1160 Captain ' \ub2e8\ud558","id":4091826494,"id_str":"4091826494","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447079999661"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741338910720,"id_str":"663727741338910720","text":"\u77e5\u3063\u3066\u308b\u304b\u3044\uff1f\uff08\u3048\uff1f\uff09\n\u77e5\u3063\u3066\u308b\u3088\uff01\uff08\u4f55\u3092\uff1f\uff09\n\u304b\u3063\u3053\u3044\u3044\u306d\uff01\uff08\u8ab0\u304c\uff1f\uff09\n\u3044\u3044\u611f\u3058\uff01\uff08\u4f55\u304c\uff1f\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826332848,"id_str":"826332848","name":"\u30b7\u30d0\u30b6\u30af\u30e9","screen_name":"Aweathercock","location":"\u5099\u4e2d\u56fd","url":"http:\/\/twpf.jp\/Aweathercock","description":"\u3072\u3063\u305d\u308a\u3068\u66ae\u3089\u3059\u304c\u30e2\u30c3\u30c8\u30fc\u3002 \u8150\u5973\u5b50\u3067\u3059\u3002pixiv\u3067\u3082\u3072\u3063\u305d\u308a\u3068\u3044\u308b\u3093\u3067\u6687\u3060\u3063\u305f\u3089\u63a2\u3057\u3066\u4e0b\u3055\u3044\u3002\u30ea\u30c4\u30a4\u30fc\u30c8\u53a8\u3067\u3059\u60aa\u3057\u304b\u3089\u305a\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3078","protected":false,"verified":false,"followers_count":21,"friends_count":40,"listed_count":0,"favourites_count":322,"statuses_count":19030,"created_at":"Sun Sep 16 02:28:42 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660054329710149633\/qIzR2InM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660054329710149633\/qIzR2InM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826332848\/1446727199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999657"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364121600,"id_str":"663727741364121600","text":"@B1ackSchefter Lol that's the only way the cowbitches now how to win","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726931809050624,"in_reply_to_status_id_str":"663726931809050624","in_reply_to_user_id":2973504637,"in_reply_to_user_id_str":"2973504637","in_reply_to_screen_name":"B1ackSchefter","user":{"id":3260592110,"id_str":"3260592110","name":"Owens1","screen_name":"MRmcavity1996","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":187,"friends_count":851,"listed_count":0,"favourites_count":48,"statuses_count":200,"created_at":"Tue Jun 30 01:33:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615695182915174400\/JBJfJDxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615695182915174400\/JBJfJDxe_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"B1ackSchefter","name":"BLACK ADAM SCHEFTER","id":2973504637,"id_str":"2973504637","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999663"} +{"delete":{"status":{"id":536197097100308481,"id_str":"536197097100308481","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447079999819"}} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741355757572,"id_str":"663727741355757572","text":"Seloso. \ud83d\ude2c\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1438400180,"id_str":"1438400180","name":"J","screen_name":"ReinaJoyR","location":"Mystic Falls \u2764\ufe0f","url":null,"description":"DO NOT FALL IN LOVE WITH ME","protected":false,"verified":false,"followers_count":726,"friends_count":322,"listed_count":9,"favourites_count":20306,"statuses_count":79984,"created_at":"Sat May 18 13:26:24 +0000 2013","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"76E6FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453904294568132608\/r--mBr_n.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453904294568132608\/r--mBr_n.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663245769445474304\/tILig2DB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663245769445474304\/tILig2DB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1438400180\/1447079892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999661"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741351542784,"id_str":"663727741351542784","text":"@lvue_r \u3053\u308c\u304b\u3089\u3082\u3063\u3068\u5acc\u306b\u306a\u308b\u3088\u306d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663629653068742656,"in_reply_to_status_id_str":"663629653068742656","in_reply_to_user_id":3318419436,"in_reply_to_user_id_str":"3318419436","in_reply_to_screen_name":"lvue_r","user":{"id":3243295993,"id_str":"3243295993","name":"\u2601\ufe0e \u304b\u306a\u3080\u3093\u3061\u3087\u2601\ufe0e\uff98\uff8c\uff9f\u8fd4\u9045\u3044\u3067\u3059","screen_name":"wasa24omi","location":"\u2721\u4e2d\u76ee\u9ed2\u3067\u906d\u9047\u3057\u305f\u9df2\u5c3e\u3061\u3083\u3093\u3068\u63e1\u624b\u2721","url":null,"description":"\\\u2721\/EX FAMILY\\\u2721\/\uffe4EXILE TRIBE\uffe4\u26a0\ufe0e\uff8c\uff6b\uff9b\uff8a\uff9e\u3086\u3063\u304f\u308a\u5fc5\u305a\u3059\u308b\uffe4\uff8c\uff6b\uff9b\uff8a\uff9e\u00d7\u261e\uff98\uff91\u308b\uffe48\/5 10\/18BPLV\uffe4\u767b\u5742\u5e83\u81e3\u2661*\u21dd\u7d4c\u9a13\u5024\u00d8\u306e\u30b7\u30f3\u30c7\u30ec\u30e9\u30dc\u30fc\u30a4\uffe4\u2740\u85e4\u4e95\u59c9\u59b9\u2740\uffe4\u5927\u597d\u304d\u304a\u59c9\u3061\u3083\u3093\u261e\u300a@1117srsr\u300b\uffe4\u5909\u614b\u540c\u76df\u261e\u300a@78_omi_Ryota\u300b\uffe4\u81e3\u9686\u540c\u76df\u261e\u300a\u2765@hhpee1\u2765\u300b\uffe4","protected":false,"verified":false,"followers_count":1645,"friends_count":1507,"listed_count":17,"favourites_count":778,"statuses_count":10842,"created_at":"Fri Jun 12 12:42:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631805947879362564\/8ZmOH_no_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631805947879362564\/8ZmOH_no_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243295993\/1442068430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lvue_r","name":"\u2764\ufe0eRio\u2764\ufe0e\u261eGUN\u4e00\u9014\u306a\u4e59\u5973\u2600\ufe0f","id":3318419436,"id_str":"3318419436","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999660"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741368475648,"id_str":"663727741368475648","text":"@Ljpmysoulmate no no no, ha sido LA CANCION y .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727550804443136,"in_reply_to_status_id_str":"663727550804443136","in_reply_to_user_id":2611641183,"in_reply_to_user_id_str":"2611641183","in_reply_to_screen_name":"Ljpmysoulmate","user":{"id":3303114790,"id_str":"3303114790","name":"Fanboy","screen_name":"demetria_asfuck","location":"La La Land","url":null,"description":"WWAT 11714 | 161015 | Full time fanboy | Say you'll be my nightingale | Shawn Mendes.","protected":false,"verified":false,"followers_count":426,"friends_count":1068,"listed_count":2,"favourites_count":7256,"statuses_count":3267,"created_at":"Fri May 29 18:59:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365049046736896\/aZ5p8v8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365049046736896\/aZ5p8v8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303114790\/1446993525","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ljpmysoulmate","name":"\u03bb\u03b9\u03b1\u03bc","id":2611641183,"id_str":"2611641183","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079999664"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741347364864,"id_str":"663727741347364864","text":"@400jolie \n\n\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u3093\u304b\u30fc\u3044\u270b\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726275924639744,"in_reply_to_status_id_str":"663726275924639744","in_reply_to_user_id":2546302789,"in_reply_to_user_id_str":"2546302789","in_reply_to_screen_name":"400jolie","user":{"id":1520986694,"id_str":"1520986694","name":"Amichaaan\u2661","screen_name":"aaamichan_od8","location":"NEXT \u27a1\ufe0e ECC Artist...FA","url":"http:\/\/Instagram.com\/amichan_0622\/","description":"moriguchihigashi LJK . Apparel salesclerk\u2727 ONE\u2606DRAFT\u6625\u304b\u3089\u5c02\u9580\u5b66\u751f\uff01","protected":false,"verified":false,"followers_count":493,"friends_count":384,"listed_count":0,"favourites_count":3997,"statuses_count":17641,"created_at":"Sun Jun 16 02:38:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641235610913517568\/Wa6xreni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641235610913517568\/Wa6xreni_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1520986694\/1444374577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"400jolie","name":"MAI","id":2546302789,"id_str":"2546302789","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999659"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364273153,"id_str":"663727741364273153","text":"@warda_e @destandaard Onder meer extra bagagecontrole, maar ook een extra controle van de geboekte passagiers aan boord.","source":"\u003ca href=\"http:\/\/engagor.com\" rel=\"nofollow\"\u003eEngagor\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717498236334084,"in_reply_to_status_id_str":"663717498236334084","in_reply_to_user_id":467229727,"in_reply_to_user_id_str":"467229727","in_reply_to_screen_name":"Warda_E","user":{"id":18976076,"id_str":"18976076","name":"Jetairfly","screen_name":"jetairfly","location":"Zaventem","url":"http:\/\/www.jetairfly.com","description":"Belgian airline connecting more than 100 airports.\r\nThis twitteraccount is active during office hours.","protected":false,"verified":false,"followers_count":4975,"friends_count":236,"listed_count":114,"favourites_count":591,"statuses_count":3274,"created_at":"Wed Jan 14 13:28:40 +0000 2009","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"7CB3D2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/108453845\/Background_Jetairfly_twitter2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/108453845\/Background_Jetairfly_twitter2.jpg","profile_background_tile":false,"profile_link_color":"09295E","profile_sidebar_border_color":"6699FF","profile_sidebar_fill_color":"DCF0FF","profile_text_color":"6699FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478552301968187392\/Vo5nOByH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478552301968187392\/Vo5nOByH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18976076\/1440428192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Warda_E","name":"Warda El-Kaddouri","id":467229727,"id_str":"467229727","indices":[0,8]},{"screen_name":"destandaard","name":"De Standaard","id":21408400,"id_str":"21408400","indices":[9,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447079999663"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741351632896,"id_str":"663727741351632896","text":"\u0422\u0443\u043b\u044f\u043a\u0438 \u0432\u0432\u0435\u0440\u0435\u043d\u043d\u044b\u0439 \u0432\u0430\u043c \u041f\u0443\u0442\u0438\u043d\u044b\u043c \u0433\u043e\u0440\u043e\u0434 \u041a\u0435\u0440\u0447\u044c \u0438\u0441\u043f\u044b\u0442\u044b\u0432\u0430\u0435\u0442 \u0436\u0430\u0436\u0434\u0443 \u043d\u0430\u0434\u043e \u0441\u043a\u0438\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u0431\u0443\u0442\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u0443\u044e \u0432\u043e\u0434\u0443.\u0421\u043a\u0430\u0436\u0435 5% \u043e\u0442 \u0437\u0430\u0440\u043f\u043b\u0430\u0442\u044b https:\/\/t.co\/DpFiMnuhtK","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1306771656,"id_str":"1306771656","name":"\u0421\u0435\u0440\u0433\u0435\u0439 \u041d\u0435\u0441\u0442\u0435\u0440\u043e\u0432","screen_name":"MrKuzj_Dubna","location":"\u0422\u0443\u043b\u044c\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u043e\u0441\u0442\u044c.","url":"http:\/\/mr-kuzj.livejournal.com\/","description":"\u0418\u043d\u0432\u0430\u043b\u0438\u0434 1-\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b,\u043b\u0438\u0431\u0435\u0440\u0430\u043b-\u0434\u0435\u043c\u043e\u043a\u0440\u0430\u0442,\u0430\u0442\u0435\u0438\u0441\u0442,\u0445\u043e\u043b\u043e\u0441\u0442.\n\u043c\u0443\u0437\u044b\u043a\u0430:\u043a\u043b\u0430\u0441\u0441\u0438\u043a\u0430 \u0443\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u044f \u0440\u0430\u0431\u043e\u0442\u0430 \u043d\u0430 \u041f\u041a. \u0438\u043d\u0442\u0435\u0440\u0435\u0441: \u0438\u0441\u0442\u043e\u0440\u0438\u044f \u0420\u043e\u0441\u0441\u0438\u0438.","protected":false,"verified":false,"followers_count":101,"friends_count":205,"listed_count":1,"favourites_count":275,"statuses_count":2434,"created_at":"Wed Mar 27 07:25:07 +0000 2013","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499859450966994944\/oNiwzmZf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499859450966994944\/oNiwzmZf.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640772279740166145\/qxZhU3Qm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640772279740166145\/qxZhU3Qm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1306771656\/1446990485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727739086749696,"id_str":"663727739086749696","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3LPWwAAsAm7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3LPWwAAsAm7.png","url":"https:\/\/t.co\/DpFiMnuhtK","display_url":"pic.twitter.com\/DpFiMnuhtK","expanded_url":"http:\/\/twitter.com\/MrKuzj_Dubna\/status\/663727741351632896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":43,"resize":"fit"},"large":{"w":752,"h":54,"resize":"fit"},"small":{"w":340,"h":24,"resize":"fit"},"thumb":{"w":150,"h":54,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727739086749696,"id_str":"663727739086749696","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3LPWwAAsAm7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3LPWwAAsAm7.png","url":"https:\/\/t.co\/DpFiMnuhtK","display_url":"pic.twitter.com\/DpFiMnuhtK","expanded_url":"http:\/\/twitter.com\/MrKuzj_Dubna\/status\/663727741351632896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":43,"resize":"fit"},"large":{"w":752,"h":54,"resize":"fit"},"small":{"w":340,"h":24,"resize":"fit"},"thumb":{"w":150,"h":54,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447079999660"} +{"delete":{"status":{"id":663725031826980864,"id_str":"663725031826980864","user_id":3019585375,"user_id_str":"3019585375"},"timestamp_ms":"1447079999853"}} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741343170561,"id_str":"663727741343170561","text":"RT @TheWorldStories: Len\u00e7\u00f3is Maranhenses National Park is pretty \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/J81ICEzL9C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286094727,"id_str":"286094727","name":"camille","screen_name":"cmll_mclt","location":"Philippines","url":null,"description":"idk. | Team LB's\u2728","protected":false,"verified":false,"followers_count":576,"friends_count":368,"listed_count":1,"favourites_count":3494,"statuses_count":29274,"created_at":"Fri Apr 22 10:11:18 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614349480750510080\/tpgvU6JI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614349480750510080\/tpgvU6JI.jpg","profile_background_tile":true,"profile_link_color":"FE2E2E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659674975792590848\/LNhEkvL3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659674975792590848\/LNhEkvL3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/286094727\/1446727761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:46:26 +0000 2015","id":663291477527674880,"id_str":"663291477527674880","text":"Len\u00e7\u00f3is Maranhenses National Park is pretty \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/J81ICEzL9C","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284441324,"id_str":"284441324","name":"Travel Vibes\u27b9","screen_name":"TheWorldStories","location":"yocontactus@gmail.com","url":"http:\/\/Instagram.com\/travelvibees\/","description":"For those who travel, explore and enjoy the world!\u270c\ufe0f Dm us your pictures,we'll try to post'em ,We don't own any of the picture ,for DMCA removal see email below","protected":false,"verified":false,"followers_count":2382927,"friends_count":553,"listed_count":5053,"favourites_count":136,"statuses_count":56736,"created_at":"Tue Apr 19 08:44:53 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284441324\/1446790199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":878,"favorite_count":1310,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663291465494228992,"id_str":"663291465494228992","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663291465494228992,"id_str":"663291465494228992","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663291462138728448,"id_str":"663291462138728448","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8Eg9UEAAdav2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8Eg9UEAAdav2.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":550,"h":412,"resize":"fit"},"medium":{"w":550,"h":412,"resize":"fit"}}},{"id":663291475749269504,"id_str":"663291475749269504","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8FTqUcAAX3Q0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8FTqUcAAX3Q0.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheWorldStories","name":"Travel Vibes\u27b9","id":284441324,"id_str":"284441324","indices":[3,19]}],"symbols":[],"media":[{"id":663291465494228992,"id_str":"663291465494228992","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663291477527674880,"source_status_id_str":"663291477527674880","source_user_id":284441324,"source_user_id_str":"284441324"}]},"extended_entities":{"media":[{"id":663291465494228992,"id_str":"663291465494228992","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8EtdU8AAbVhF.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663291477527674880,"source_status_id_str":"663291477527674880","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":663291462138728448,"id_str":"663291462138728448","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8Eg9UEAAdav2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8Eg9UEAAdav2.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":550,"h":412,"resize":"fit"},"medium":{"w":550,"h":412,"resize":"fit"}},"source_status_id":663291477527674880,"source_status_id_str":"663291477527674880","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":663291475749269504,"id_str":"663291475749269504","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR8FTqUcAAX3Q0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR8FTqUcAAX3Q0.jpg","url":"https:\/\/t.co\/J81ICEzL9C","display_url":"pic.twitter.com\/J81ICEzL9C","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/663291477527674880\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663291477527674880,"source_status_id_str":"663291477527674880","source_user_id":284441324,"source_user_id_str":"284441324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079999658"} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741355737088,"id_str":"663727741355737088","text":"Durkan for Lough and Flemenstar #CarlingfordLough https:\/\/t.co\/askZgS09LT https:\/\/t.co\/LLMWN2jIoR","source":"\u003ca href=\"http:\/\/shera4089.webs.com\" rel=\"nofollow\"\u003eShera40898410\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3964229242,"id_str":"3964229242","name":"Shera Zemlicka","screen_name":"Shera4089","location":null,"url":null,"description":"Romantic philosopher \u2726 Marketing enthusiast \u2726 Makeup Artist \u2726 Eclectic Collector of Happy Things","protected":false,"verified":false,"followers_count":41,"friends_count":402,"listed_count":1,"favourites_count":0,"statuses_count":183,"created_at":"Thu Oct 15 10:01:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654598460554018816\/-H6z7jL1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654598460554018816\/-H6z7jL1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CarlingfordLough","indices":[32,49]}],"urls":[{"url":"https:\/\/t.co\/askZgS09LT","expanded_url":"http:\/\/ttid.me\/sc6sl","display_url":"ttid.me\/sc6sl","indices":[50,73]}],"user_mentions":[],"symbols":[],"media":[{"id":663727740806283264,"id_str":"663727740806283264","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3RpUwAAPAad.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3RpUwAAPAad.jpg","url":"https:\/\/t.co\/LLMWN2jIoR","display_url":"pic.twitter.com\/LLMWN2jIoR","expanded_url":"http:\/\/twitter.com\/Shera4089\/status\/663727741355737088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727740806283264,"id_str":"663727740806283264","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3RpUwAAPAad.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3RpUwAAPAad.jpg","url":"https:\/\/t.co\/LLMWN2jIoR","display_url":"pic.twitter.com\/LLMWN2jIoR","expanded_url":"http:\/\/twitter.com\/Shera4089\/status\/663727741355737088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079999661"} +{"delete":{"status":{"id":663727732963065856,"id_str":"663727732963065856","user_id":1552713074,"user_id_str":"1552713074"},"timestamp_ms":"1447080000258"}} +{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741364137984,"id_str":"663727741364137984","text":"\u898b\u8fd4\u3057\u3066\u3066\u898b\u3064\u3051\u305f\u53bb\u5e74\u306e\u30cf\u30ed\u30a6\u30a3\u30f3\u306e\u6642\u306e\u3002NPC\u306b\u5909\u8eab\u51fa\u6765\u308b\u306e\u306f\u6700\u9ad8\u3058\u3083\u3063\u305f\u2026 https:\/\/t.co\/O01EWECyMZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312734059,"id_str":"3312734059","name":"Mel.V\/Oz","screen_name":"Vanil_le","location":"Shinryu \/ Bahamut","url":null,"description":"\u25c6FF14 \u21e2 \u3078\u305f\u308c\u9ed2\u9b54\uff0f\u5b66\u8005\u4fee\u884c\u4e2d\uff01 \u3000\u25c7\u307c\u3084\u304d\u3068SS\u52a0\u5de5\u3068\u6642\u3005\u30e9\u30af\u30ac\u30ad\u3000\u3000 \u25c7\u8a73\u3057\u304f\u306f \u00abhttp:\/\/twpf.jp\/Vanil_le\u00bb\uff01","protected":false,"verified":false,"followers_count":35,"friends_count":37,"listed_count":2,"favourites_count":695,"statuses_count":980,"created_at":"Tue Aug 11 19:05:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"A7DADA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654687096297287680\/-g2rFHdm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654687096297287680\/-g2rFHdm_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727740034547712,"id_str":"663727740034547712","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3OxVAAADlL3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3OxVAAADlL3.png","url":"https:\/\/t.co\/O01EWECyMZ","display_url":"pic.twitter.com\/O01EWECyMZ","expanded_url":"http:\/\/twitter.com\/Vanil_le\/status\/663727741364137984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":562,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727740034547712,"id_str":"663727740034547712","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3OxVAAADlL3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3OxVAAADlL3.png","url":"https:\/\/t.co\/O01EWECyMZ","display_url":"pic.twitter.com\/O01EWECyMZ","expanded_url":"http:\/\/twitter.com\/Vanil_le\/status\/663727741364137984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":562,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079999663"} +{"delete":{"status":{"id":585583575434682368,"id_str":"585583575434682368","user_id":467787884,"user_id_str":"467787884"},"timestamp_ms":"1447080000477"}} +{"delete":{"status":{"id":533331989005631488,"id_str":"533331989005631488","user_id":41796703,"user_id_str":"41796703"},"timestamp_ms":"1447080000556"}} +{"delete":{"status":{"id":660032681154080768,"id_str":"660032681154080768","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080000668"}} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562755072,"id_str":"663727745562755072","text":"RT @OnusidaLatina: Michel Sidib\u00e9, Director Ejecutivo de ONUSIDA, ha comenzado este fin de semana su misi\u00f3n oficial a Am\u00e9rica Latina... http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3611022983,"id_str":"3611022983","name":"Clarisa Brezzo","screen_name":"clarisa_brezzo","location":null,"url":null,"description":"Strategic Information Advisor UNAIDS Argentina, Chile, Paraguay and Uruguay.","protected":false,"verified":false,"followers_count":25,"friends_count":57,"listed_count":0,"favourites_count":3,"statuses_count":84,"created_at":"Thu Sep 10 16:05:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642032312213995521\/OVGLwoFb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642032312213995521\/OVGLwoFb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:05 +0000 2015","id":663718453736534016,"id_str":"663718453736534016","text":"Michel Sidib\u00e9, Director Ejecutivo de ONUSIDA, ha comenzado este fin de semana su misi\u00f3n oficial a Am\u00e9rica Latina... https:\/\/t.co\/gOnVHgTB6o","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80924582,"id_str":"80924582","name":"Onusida Latina","screen_name":"OnusidaLatina","location":"8.998743,-79.576605","url":"http:\/\/www.onusida-latina.org\/","description":"El Programa Conjunto de las Naciones Unidas sobre el VIH\/Sida (ONUSIDA) creado en 1994. Las oficinas regionales para Am\u00e9rica Latina operan desde Panam\u00e1","protected":false,"verified":false,"followers_count":6008,"friends_count":1267,"listed_count":155,"favourites_count":1355,"statuses_count":7885,"created_at":"Thu Oct 08 19:36:57 +0000 2009","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644454953\/pnu33l5ke1q076aywyf8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644454953\/pnu33l5ke1q076aywyf8.jpeg","profile_background_tile":false,"profile_link_color":"01AEF0","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568423118335516672\/rAa6CtJw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568423118335516672\/rAa6CtJw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80924582\/1427902368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gOnVHgTB6o","expanded_url":"http:\/\/fb.me\/7Q6EH6Vbh","display_url":"fb.me\/7Q6EH6Vbh","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gOnVHgTB6o","expanded_url":"http:\/\/fb.me\/7Q6EH6Vbh","display_url":"fb.me\/7Q6EH6Vbh","indices":[139,140]}],"user_mentions":[{"screen_name":"OnusidaLatina","name":"Onusida Latina","id":80924582,"id_str":"80924582","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745558540288,"id_str":"663727745558540288","text":"RT @hotelxm: \u0627\u0644\u0633\u064a\u0627\u062d\u0629 \u0641\u064a #\u062f\u0628\u064a \u0647\u064a \u062a\u062c\u0631\u0628\u0629 \u0641\u0631\u064a\u062f\u0629 \u0644\u0627 \u064a\u0642\u0627\u0631\u0628\u0647\u0627 \u0645\u062b\u064a\u0644 \u0641\u0649 #\u0627\u0644\u0639\u0627\u0644\u0645. \u0623\u062d\u062c\u0632 \u0627\u0644\u0623\u0646 #\u0641\u0646\u0627\u062f\u0642_\u062f\u0628\u0649 \u0628\u0623\u0633\u0639\u0627\u0631 \u0645\u0645\u064a\u0632\u0629 \n\n\u0644\u0644\u062d\u062c\u0632: 920002517 https:\/\/t.co\/b\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3412808056,"id_str":"3412808056","name":"\u062d\u062c\u0632 \u0641\u0646\u0627\u062f\u0642","screen_name":"booking_800","location":"Jeddah, Makkah Al Mukarrama","url":null,"description":"\u0646\u0642\u062f\u0645 \u0644\u0643 \u0623\u0641\u0636\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0648\u0627\u0644\u062a\u062e\u0641\u064a\u0636\u0627\u062a \u0639\u0644\u0649 \u062d\u062c\u0648\u0632\u0627\u062a \u0627\u0644\u0641\u0646\u0627\u062f\u0642 \u062d\u0648\u0644 \u0627\u0644\u0639\u0627\u0644\u0645.. \u0627\u062a\u0635\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u062d\u062f 920002517","protected":false,"verified":false,"followers_count":4628,"friends_count":4504,"listed_count":0,"favourites_count":0,"statuses_count":265,"created_at":"Mon Aug 10 14:01:09 +0000 2015","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630743070083055617\/nOiYognw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630743070083055617\/nOiYognw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3412808056\/1439215769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:56:33 +0000 2015","id":663309123379961856,"id_str":"663309123379961856","text":"\u0627\u0644\u0633\u064a\u0627\u062d\u0629 \u0641\u064a #\u062f\u0628\u064a \u0647\u064a \u062a\u062c\u0631\u0628\u0629 \u0641\u0631\u064a\u062f\u0629 \u0644\u0627 \u064a\u0642\u0627\u0631\u0628\u0647\u0627 \u0645\u062b\u064a\u0644 \u0641\u0649 #\u0627\u0644\u0639\u0627\u0644\u0645. \u0623\u062d\u062c\u0632 \u0627\u0644\u0623\u0646 #\u0641\u0646\u0627\u062f\u0642_\u062f\u0628\u0649 \u0628\u0623\u0633\u0639\u0627\u0631 \u0645\u0645\u064a\u0632\u0629 \n\n\u0644\u0644\u062d\u062c\u0632: 920002517 https:\/\/t.co\/bFpsE9jUb6","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537646012,"id_str":"537646012","name":"Hotelxm","screen_name":"hotelxm","location":"Jeddah, Makkah Al Mukarrama","url":"http:\/\/www.hotelxm.com","description":"\u200f\u0646\u0642\u062f\u0645 \u0644\u0643 \u0623\u0641\u0636\u0644 \u0627\u0644\u0639\u0631\u0648\u0636 \u0648\u0627\u0644\u062a\u062e\u0641\u064a\u0636\u0627\u062a \u0639\u0644\u0649 \u062d\u062c\u0648\u0632\u0627\u062a \u0627\u0644\u0641\u0646\u0627\u062f\u0642 \u062d\u0648\u0644 \u0627\u0644\u0639\u0627\u0644\u0645..\n\u0627\u062a\u0635\u0644 \u0639\u0644\u0649 \u0627\u0644\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u062d\u062f 920002517 - \u0627\u0648 \u2060\u2060\u20600557675418","protected":false,"verified":false,"followers_count":93811,"friends_count":16381,"listed_count":163,"favourites_count":361,"statuses_count":33267,"created_at":"Mon Mar 26 23:11:16 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0074DB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653895679270592512\/yimUvv0x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653895679270592512\/yimUvv0x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/537646012\/1441847822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062f\u0628\u064a","indices":[11,15]},{"text":"\u0627\u0644\u0639\u0627\u0644\u0645","indices":[50,57]},{"text":"\u0641\u0646\u0627\u062f\u0642_\u062f\u0628\u0649","indices":[69,79]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663309123216416768,"id_str":"663309123216416768","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","url":"https:\/\/t.co\/bFpsE9jUb6","display_url":"pic.twitter.com\/bFpsE9jUb6","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663309123379961856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663309123216416768,"id_str":"663309123216416768","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","url":"https:\/\/t.co\/bFpsE9jUb6","display_url":"pic.twitter.com\/bFpsE9jUb6","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663309123379961856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062f\u0628\u064a","indices":[24,28]},{"text":"\u0627\u0644\u0639\u0627\u0644\u0645","indices":[63,70]},{"text":"\u0641\u0646\u0627\u062f\u0642_\u062f\u0628\u0649","indices":[82,92]}],"urls":[],"user_mentions":[{"screen_name":"hotelxm","name":"Hotelxm","id":537646012,"id_str":"537646012","indices":[3,11]}],"symbols":[],"media":[{"id":663309123216416768,"id_str":"663309123216416768","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","url":"https:\/\/t.co\/bFpsE9jUb6","display_url":"pic.twitter.com\/bFpsE9jUb6","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663309123379961856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}},"source_status_id":663309123379961856,"source_status_id_str":"663309123379961856","source_user_id":537646012,"source_user_id_str":"537646012"}]},"extended_entities":{"media":[{"id":663309123216416768,"id_str":"663309123216416768","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSMIhmXIAA9QCA.jpg","url":"https:\/\/t.co\/bFpsE9jUb6","display_url":"pic.twitter.com\/bFpsE9jUb6","expanded_url":"http:\/\/twitter.com\/hotelxm\/status\/663309123379961856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"},"large":{"w":851,"h":315,"resize":"fit"}},"source_status_id":663309123379961856,"source_status_id_str":"663309123379961856","source_user_id":537646012,"source_user_id_str":"537646012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080000663"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566928896,"id_str":"663727745566928896","text":"RT @WSHHFANS: when you're daughter goes to private school but youre from the hood https:\/\/t.co\/qU2lXqKMTq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925853458,"id_str":"2925853458","name":"Zach Meskin","screen_name":"MeskinZach","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":138,"listed_count":0,"favourites_count":17,"statuses_count":692,"created_at":"Wed Dec 10 15:41:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580044871353782273\/leIy_arS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580044871353782273\/leIy_arS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925853458\/1438865815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:05:03 +0000 2015","id":663628352683667456,"id_str":"663628352683667456","text":"when you're daughter goes to private school but youre from the hood https:\/\/t.co\/qU2lXqKMTq","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370986902,"id_str":"1370986902","name":"WSHH FANS","screen_name":"WSHHFANS","location":"wshhfansbusiness@gmail.com","url":null,"description":"NOT Affiliated With @WORLDSTAR or Vine. We Do Not Own The Media That Is Posted, Parody . 18+ Content Instagram & Snapchat: WSHHFANS","protected":false,"verified":false,"followers_count":885685,"friends_count":147688,"listed_count":512,"favourites_count":0,"statuses_count":25711,"created_at":"Mon Apr 22 01:48:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370986902\/1444071563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1723,"favorite_count":2206,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qU2lXqKMTq","expanded_url":"http:\/\/vine.co\/v\/eiH5wUAIdzB","display_url":"vine.co\/v\/eiH5wUAIdzB","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qU2lXqKMTq","expanded_url":"http:\/\/vine.co\/v\/eiH5wUAIdzB","display_url":"vine.co\/v\/eiH5wUAIdzB","indices":[82,105]}],"user_mentions":[{"screen_name":"WSHHFANS","name":"WSHH FANS","id":1370986902,"id_str":"1370986902","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545994240,"id_str":"663727745545994240","text":"RT @ALDUBPILIPINAS: May pakiramdaman effect kung nasan fingers ni @mainedcm Nice move @aldenrichards02 #ALDUBMissingRing https:\/\/t.co\/ghN28\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3731330478,"id_str":"3731330478","name":"Bari Hall","screen_name":"hall_bari","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":78,"friends_count":151,"listed_count":5,"favourites_count":2707,"statuses_count":4764,"created_at":"Wed Sep 30 00:51:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661643194984042496\/hdlHZWC6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661643194984042496\/hdlHZWC6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3731330478\/1444621624","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:49:19 +0000 2015","id":663639491630882816,"id_str":"663639491630882816","text":"May pakiramdaman effect kung nasan fingers ni @mainedcm Nice move @aldenrichards02 #ALDUBMissingRing https:\/\/t.co\/ghN28Qda9w","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130440619,"id_str":"3130440619","name":"ALDUB PHILIPPINES \u2122","screen_name":"ALDUBPILIPINAS","location":null,"url":null,"description":"WANT TO JOIN OUR FANS CLUB? REGISTER HERE: http:\/\/goo.gl\/forms\/f10zrhsArV","protected":false,"verified":false,"followers_count":418472,"friends_count":87,"listed_count":146,"favourites_count":19402,"statuses_count":63639,"created_at":"Thu Apr 02 12:52:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661517300202213376\/mkYySry5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661517300202213376\/mkYySry5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3130440619\/1446907123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":923,"favorite_count":762,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[83,100]}],"urls":[{"url":"https:\/\/t.co\/ghN28Qda9w","expanded_url":"https:\/\/vine.co\/v\/eLQZM2beh7P","display_url":"vine.co\/v\/eLQZM2beh7P","indices":[101,124]}],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[46,55]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[66,82]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[103,120]}],"urls":[{"url":"https:\/\/t.co\/ghN28Qda9w","expanded_url":"https:\/\/vine.co\/v\/eLQZM2beh7P","display_url":"vine.co\/v\/eLQZM2beh7P","indices":[121,140]}],"user_mentions":[{"screen_name":"ALDUBPILIPINAS","name":"ALDUB PHILIPPINES \u2122","id":3130440619,"id_str":"3130440619","indices":[3,18]},{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[66,75]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[86,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745550163968,"id_str":"663727745550163968","text":"RT @GastonSosaaOK: Tu sonrisa y perd\u00ed por goleada.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2542415582,"id_str":"2542415582","name":"Milagros","screen_name":"MiliWuily","location":null,"url":"https:\/\/instagram.com\/mili_luq\/","description":"#Cuarteto","protected":false,"verified":false,"followers_count":703,"friends_count":682,"listed_count":2,"favourites_count":6090,"statuses_count":24795,"created_at":"Mon Jun 02 23:44:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662831685025865728\/huP0-G3f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662831685025865728\/huP0-G3f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542415582\/1447001022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727511768014848,"id_str":"663727511768014848","text":"Tu sonrisa y perd\u00ed por goleada.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":600388812,"id_str":"600388812","name":"Gast\u00f3n Sosa \u2b50","screen_name":"GastonSosaaOK","location":"Chaco - Argentina","url":null,"description":"Vos bardeas, yo te ignoro y me r\u00edo.\nBoca Juniors y nada m\u00e1s.","protected":false,"verified":false,"followers_count":9148,"friends_count":7939,"listed_count":5,"favourites_count":6996,"statuses_count":13096,"created_at":"Tue Jun 05 18:22:07 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648877605228253184\/t54kM_Go_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648877605228253184\/t54kM_Go_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/600388812\/1446872389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GastonSosaaOK","name":"Gast\u00f3n Sosa \u2b50","id":600388812,"id_str":"600388812","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000661"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537568768,"id_str":"663727745537568768","text":"RT @Archaeomyste: Monday's coffee is the light of the unseen sun...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14609304,"id_str":"14609304","name":"Kat Lehmann","screen_name":"SongsOfKat","location":"Connecticut, US","url":"http:\/\/songsofkat.com\/","description":"Author, Moon Full of Moons https:\/\/t.co\/vyN3YSHket #MFOM #NHV #mpy @PeacefulDaily contributor: #happiness Pull down the Sun and glow from within.","protected":false,"verified":false,"followers_count":3393,"friends_count":530,"listed_count":128,"favourites_count":6987,"statuses_count":45663,"created_at":"Thu May 01 02:29:16 +0000 2008","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/18145901\/glass_purpleglitter_dot_com_003.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/18145901\/glass_purpleglitter_dot_com_003.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633431084647194624\/5cO0Tfdr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633431084647194624\/5cO0Tfdr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14609304\/1354301880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:31 +0000 2015","id":663727370986250241,"id_str":"663727370986250241","text":"Monday's coffee is the light of the unseen sun...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398516736,"id_str":"398516736","name":"I N D I G O ~ S K Y","screen_name":"Archaeomyste","location":"Isle of Life, Sea of Space ","url":"http:\/\/indigo360.wordpress.com","description":"INFP poet & explorer by way of getting lost, seeking dreams and visions, light and clarity, myths and music... Gender: Sky","protected":false,"verified":false,"followers_count":10362,"friends_count":11304,"listed_count":351,"favourites_count":270235,"statuses_count":101022,"created_at":"Wed Oct 26 05:14:50 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0D02","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650246984\/xe4f460604a07be76e29ec61136f33ad.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650246984\/xe4f460604a07be76e29ec61136f33ad.jpg","profile_background_tile":false,"profile_link_color":"895429","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0E0D02","profile_text_color":"39BD91","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663133479538991104\/HYc94or0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663133479538991104\/HYc94or0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398516736\/1441847422","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Archaeomyste","name":"I N D I G O ~ S K Y","id":398516736,"id_str":"398516736","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566818306,"id_str":"663727745566818306","text":"RT @skirt1127: \uc5b8\ub9ac\ubbf8\ud2f0\ub4dc\uc5d0\uc11c \ubf78\ub894\ub894 \uc8fc\uc2dc\uace0 \uadc0\uc5fd\uac8c \ud6c4\ub2e4\ub2e5 \uac00\uc154\uc11c \uc800\ub3c4 \ubc14\ub85c \ud6c4\ub2e4\ub2e5 \uc778\uc99d\uc0f7\u314b\u314b\u314b https:\/\/t.co\/UPUaKylr6c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1067034812,"id_str":"1067034812","name":"\ubcc0\uc544\ube60\ub538 \uae40\ub77c\ub178\u31420\u3142","screen_name":"hyianad","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":695,"listed_count":0,"favourites_count":2495,"statuses_count":16090,"created_at":"Mon Jan 07 00:08:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515842412971700226\/pwcPQ0OI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515842412971700226\/pwcPQ0OI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1067034812\/1439005189","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:52:23 +0000 2015","id":662870190292533248,"id_str":"662870190292533248","text":"\uc5b8\ub9ac\ubbf8\ud2f0\ub4dc\uc5d0\uc11c \ubf78\ub894\ub894 \uc8fc\uc2dc\uace0 \uadc0\uc5fd\uac8c \ud6c4\ub2e4\ub2e5 \uac00\uc154\uc11c \uc800\ub3c4 \ubc14\ub85c \ud6c4\ub2e4\ub2e5 \uc778\uc99d\uc0f7\u314b\u314b\u314b https:\/\/t.co\/UPUaKylr6c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958834475,"id_str":"2958834475","name":"\uc2a4\ucee4\ud2b8","screen_name":"skirt1127","location":null,"url":null,"description":"RPS \ube44\uacc4 @slipskirt \/ http:\/\/xpsxps02.blog.me \/ http:\/\/skirt61.postype.com\/","protected":false,"verified":false,"followers_count":25241,"friends_count":164,"listed_count":178,"favourites_count":2224,"statuses_count":7117,"created_at":"Sun Jan 04 19:31:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617679099150991360\/05luAhKt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617679099150991360\/05luAhKt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958834475\/1442249402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662870170797391872,"id_str":"662870170797391872","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","url":"https:\/\/t.co\/UPUaKylr6c","display_url":"pic.twitter.com\/UPUaKylr6c","expanded_url":"http:\/\/twitter.com\/skirt1127\/status\/662870190292533248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662870170797391872,"id_str":"662870170797391872","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","url":"https:\/\/t.co\/UPUaKylr6c","display_url":"pic.twitter.com\/UPUaKylr6c","expanded_url":"http:\/\/twitter.com\/skirt1127\/status\/662870190292533248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"skirt1127","name":"\uc2a4\ucee4\ud2b8","id":2958834475,"id_str":"2958834475","indices":[3,13]}],"symbols":[],"media":[{"id":662870170797391872,"id_str":"662870170797391872","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","url":"https:\/\/t.co\/UPUaKylr6c","display_url":"pic.twitter.com\/UPUaKylr6c","expanded_url":"http:\/\/twitter.com\/skirt1127\/status\/662870190292533248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":662870190292533248,"source_status_id_str":"662870190292533248","source_user_id":2958834475,"source_user_id_str":"2958834475"}]},"extended_entities":{"media":[{"id":662870170797391872,"id_str":"662870170797391872","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL86IaUwAAHdUg.jpg","url":"https:\/\/t.co\/UPUaKylr6c","display_url":"pic.twitter.com\/UPUaKylr6c","expanded_url":"http:\/\/twitter.com\/skirt1127\/status\/662870190292533248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":662870190292533248,"source_status_id_str":"662870190292533248","source_user_id":2958834475,"source_user_id_str":"2958834475"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545973760,"id_str":"663727745545973760","text":"https:\/\/t.co\/xPNaSeNkR0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3378860829,"id_str":"3378860829","name":"Oliver James U.S.","screen_name":"OJAssociatesUS","location":"New York, USA","url":"http:\/\/www.ojassociates.com","description":"Based in #NewYork, we are a specialist recruitment partner to the #insurance sector. Part of @OJAssociates international.","protected":false,"verified":false,"followers_count":302,"friends_count":262,"listed_count":2,"favourites_count":26,"statuses_count":112,"created_at":"Thu Jul 16 15:15:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621700138789117952\/dYHZnGRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621700138789117952\/dYHZnGRc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3378860829\/1442919573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xPNaSeNkR0","expanded_url":"http:\/\/www.theactuary.com\/news\/2015\/11\/us-homeowners-insurance-market-likely-to-improve\/","display_url":"theactuary.com\/news\/2015\/11\/u\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745558560768,"id_str":"663727745558560768","text":"\u0644\u0627 \u0627\u0631\u064a\u062f \u0645\u0646\u0643 \u0627\u0644\u0627 \u0634\u064a\u0621 \u0648\u0627\u062d\u062f \u0627\u0631\u064a\u062f\u0643 \u0627\u0646 \u062a\u0639\u0644\u0645 \u0628\u0627\u0646 \u0647\u0630\u0627 \u0627\u0644\u0642\u0644\u0628 \u0627\u062d\u0628\u0643 \u0628\u0635\u062f\u0642\ud83d\udc9b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367893773,"id_str":"367893773","name":"hadahedoo\u2122\u2736","screen_name":"HAlansarii","location":"KUWAIT . . . Khaitan City\u2764","url":null,"description":"Proud to be teacher - KU \/- instagram : hnadii http:\/\/ask.fm\/hadahedoo","protected":false,"verified":false,"followers_count":952,"friends_count":131,"listed_count":2,"favourites_count":455,"statuses_count":152766,"created_at":"Sun Sep 04 18:56:29 +0000 2011","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643166509418737664\/J7paMSXh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643166509418737664\/J7paMSXh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367893773\/1435505471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080000663"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562726400,"id_str":"663727745562726400","text":"RT @alikuweit80: \u064a\u0640\u0627\u0631\u0628 \u064a\u0640\u0633\u0651\u0631\u0647\u0627 \u0639\u0644\u0649 \u0643\u0644 .. \u0636\u0627\u064a\u0642\n \u0648\u0627\u0631\u0641\u0639 \u0633\u062a\u0627\u0631 \u0627\u0644\u0647\u0645 \u0639\u0646 \u0643\u0644 \u0645\u062d\u0632\u0648\u0646\n\u0644\u0648 \u0643\u0627\u0646 \u0641\u064a \u062f\u0631\u0628 \u0627\u0644\u0633\u0639\u0627\u062f\u0629 \u0639\u0648\u0627\u064a\u0642\n \u062a\u0647\u0648\u0646 \u0645\u0639 \u0631\u062d\u0645\u062a\u0643 \u064a\u0627\u062e\u0627\u0644\u0642 \u0627\u0644\u0643\u0648\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2282563376,"id_str":"2282563376","name":"\u0639\u0634\u0627\u0642 \u062c\u0646\u0648\u0646 \u0627\u0644\u0634\u0639\u0631","screen_name":"ss__aaaa","location":null,"url":null,"description":"\u062f\u0639\u0645 \u0644\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0627\u0644\u0642\u0644\u064a\u0644\u0647 \u0641\u0642\u0637 \u0648\u0627\u062a\u0634\u0631\u0641 \u0628\u0627\u0644\u062c\u0645\u064a\u0639","protected":false,"verified":false,"followers_count":135647,"friends_count":102578,"listed_count":66,"favourites_count":372,"statuses_count":213534,"created_at":"Wed Jan 08 19:48:14 +0000 2014","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464767418921803776\/PAX9egmx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464767418921803776\/PAX9egmx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2282563376\/1413498302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:52:34 +0000 2015","id":662281355569586176,"id_str":"662281355569586176","text":"\u064a\u0640\u0627\u0631\u0628 \u064a\u0640\u0633\u0651\u0631\u0647\u0627 \u0639\u0644\u0649 \u0643\u0644 .. \u0636\u0627\u064a\u0642\n \u0648\u0627\u0631\u0641\u0639 \u0633\u062a\u0627\u0631 \u0627\u0644\u0647\u0645 \u0639\u0646 \u0643\u0644 \u0645\u062d\u0632\u0648\u0646\n\u0644\u0648 \u0643\u0627\u0646 \u0641\u064a \u062f\u0631\u0628 \u0627\u0644\u0633\u0639\u0627\u062f\u0629 \u0639\u0648\u0627\u064a\u0642\n \u062a\u0647\u0648\u0646 \u0645\u0639 \u0631\u062d\u0645\u062a\u0643 \u064a\u0627\u062e\u0627\u0644\u0642 \u0627\u0644\u0643\u0648\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":609515850,"id_str":"609515850","name":"\u0623\u0644\u0633\u064a\u0641","screen_name":"alikuweit80","location":null,"url":null,"description":"\u0644\u0627 \u0625\u0644\u0647 \u0627\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646","protected":false,"verified":false,"followers_count":3533,"friends_count":3262,"listed_count":0,"favourites_count":128,"statuses_count":6491,"created_at":"Fri Jun 15 21:10:19 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000767009980\/2a907c2597421fc719ab6b6fd76f003c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000767009980\/2a907c2597421fc719ab6b6fd76f003c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/609515850\/1350726643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alikuweit80","name":"\u0623\u0644\u0633\u064a\u0641","id":609515850,"id_str":"609515850","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545801728,"id_str":"663727745545801728","text":"Sana cee22 na rin ako para tropa ko ang tropa ng pinsan ko hays","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1655137207,"id_str":"1655137207","name":"Nicole","screen_name":"coleniiiiiiiiii","location":"God's \u2763","url":"http:\/\/ask.fm\/delrosarionicole","description":"snapchat: angelanicoledel BA DUM TSS","protected":false,"verified":false,"followers_count":426,"friends_count":225,"listed_count":2,"favourites_count":10837,"statuses_count":51837,"created_at":"Thu Aug 08 10:50:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653170128402579456\/xmeOkHqB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653170128402579456\/xmeOkHqB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1655137207\/1445242039","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537585152,"id_str":"663727745537585152","text":"Debe ser porque tiene cara como de perrito https:\/\/t.co\/0PlXgPjdFF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75176647,"id_str":"75176647","name":"Laura Castellanos","screen_name":"LauraCNNE","location":"Venezuela","url":null,"description":"Venezolana\/ Corresponsal CNN en espa\u00f1ol \/ 88.1 FM adulto joven\/ Comunicaci\u00f3n \/Imagen\/ medios","protected":false,"verified":false,"followers_count":47626,"friends_count":1344,"listed_count":452,"favourites_count":2864,"statuses_count":34012,"created_at":"Fri Sep 18 02:15:04 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662396306355298304\/qvjYi0II_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662396306355298304\/qvjYi0II_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75176647\/1446725658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663710535070912512,"quoted_status_id_str":"663710535070912512","quoted_status":{"created_at":"Mon Nov 09 13:31:37 +0000 2015","id":663710535070912512,"id_str":"663710535070912512","text":"Aqu\u00ed se perdi\u00f3 un gatito. Si lo encontrases te llevas casi 3000 d\u00f3lares. https:\/\/t.co\/lERlA2TX8W","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41846459,"id_str":"41846459","name":"Carlos Souto","screen_name":"CarlosSouto","location":"Global Communication Company.","url":"http:\/\/www.southcommunications.com","description":"CEO South Communications. Consultor del a\u00f1o 2014 Campaigns and Elections. Premio Reed Latino al Mejor Spot 2014. Victory Award Mejor Campa\u00f1a Electoral 2014.","protected":false,"verified":false,"followers_count":3623,"friends_count":191,"listed_count":88,"favourites_count":10404,"statuses_count":33977,"created_at":"Fri May 22 16:28:04 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540331574869245952\/arzqmSbv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540331574869245952\/arzqmSbv.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540326114128695296\/y3MrODCk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540326114128695296\/y3MrODCk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41846459\/1417658707","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710534852870146,"id_str":"663710534852870146","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5NweXAAI7eth.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5NweXAAI7eth.jpg","url":"https:\/\/t.co\/lERlA2TX8W","display_url":"pic.twitter.com\/lERlA2TX8W","expanded_url":"http:\/\/twitter.com\/CarlosSouto\/status\/663710535070912512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710534852870146,"id_str":"663710534852870146","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5NweXAAI7eth.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5NweXAAI7eth.jpg","url":"https:\/\/t.co\/lERlA2TX8W","display_url":"pic.twitter.com\/lERlA2TX8W","expanded_url":"http:\/\/twitter.com\/CarlosSouto\/status\/663710535070912512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0PlXgPjdFF","expanded_url":"https:\/\/twitter.com\/carlossouto\/status\/663710535070912512","display_url":"twitter.com\/carlossouto\/st\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537474560,"id_str":"663727745537474560","text":"RT @thestylespics: https:\/\/t.co\/JRKkGdd63e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1950179306,"id_str":"1950179306","name":"Mely\u2764\ufe0f","screen_name":"melytapiaaa","location":null,"url":null,"description":"Just here for see stuff LARRY\u2764\ufe0f","protected":false,"verified":false,"followers_count":120,"friends_count":214,"listed_count":0,"favourites_count":6519,"statuses_count":5424,"created_at":"Wed Oct 09 21:59:04 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF5468","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663586683347058688\/OQ56G03h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663586683347058688\/OQ56G03h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1950179306\/1438446777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:58 +0000 2015","id":663719934237810688,"id_str":"663719934237810688","text":"https:\/\/t.co\/JRKkGdd63e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2375771978,"id_str":"2375771978","name":"best harry pics","screen_name":"thestylespics","location":"main: @walkinthwinds","url":null,"description":"your daily dose of pictures, gifs and videos of harry. enjoy! x","protected":false,"verified":false,"followers_count":232786,"friends_count":2,"listed_count":1042,"favourites_count":1106,"statuses_count":11540,"created_at":"Thu Mar 06 18:53:59 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661618107606294528\/VEnwze9b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661618107606294528\/VEnwze9b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2375771978\/1445893930","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":346,"favorite_count":536,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719932916572161,"id_str":"663719932916572161","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","url":"https:\/\/t.co\/JRKkGdd63e","display_url":"pic.twitter.com\/JRKkGdd63e","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663719934237810688\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719932916572161,"id_str":"663719932916572161","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","url":"https:\/\/t.co\/JRKkGdd63e","display_url":"pic.twitter.com\/JRKkGdd63e","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663719934237810688\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thestylespics","name":"best harry pics","id":2375771978,"id_str":"2375771978","indices":[3,17]}],"symbols":[],"media":[{"id":663719932916572161,"id_str":"663719932916572161","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","url":"https:\/\/t.co\/JRKkGdd63e","display_url":"pic.twitter.com\/JRKkGdd63e","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663719934237810688\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}},"source_status_id":663719934237810688,"source_status_id_str":"663719934237810688","source_user_id":2375771978,"source_user_id_str":"2375771978"}]},"extended_entities":{"media":[{"id":663719932916572161,"id_str":"663719932916572161","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwy_WoAERLiU.png","url":"https:\/\/t.co\/JRKkGdd63e","display_url":"pic.twitter.com\/JRKkGdd63e","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663719934237810688\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}},"source_status_id":663719934237810688,"source_status_id_str":"663719934237810688","source_user_id":2375771978,"source_user_id_str":"2375771978"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080000658"} +{"delete":{"status":{"id":663281551296364544,"id_str":"663281551296364544","user_id":3888129432,"user_id_str":"3888129432"},"timestamp_ms":"1447080000755"}} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745541754880,"id_str":"663727745541754880","text":"Germany aiming for 40% CO2 cut by 2020. Coal a problem but key adviser: \u201cMerkel will do everything to achieve this\u201d https:\/\/t.co\/YL8o1vYNL6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195419597,"id_str":"195419597","name":"Damian Carrington","screen_name":"dpcarrington","location":"London","url":"http:\/\/www.theguardian.com\/environment","description":"I'm head of environment at the Guardian","protected":false,"verified":false,"followers_count":29023,"friends_count":529,"listed_count":1224,"favourites_count":16,"statuses_count":14420,"created_at":"Sun Sep 26 17:17:23 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1133151776\/Damian_Carrington_byline_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1133151776\/Damian_Carrington_byline_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YL8o1vYNL6","expanded_url":"http:\/\/gu.com\/p\/4exmg\/stw","display_url":"gu.com\/p\/4exmg\/stw","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000659"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745533276160,"id_str":"663727745533276160","text":"we are all battling something. its either we smile or cry over it.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3503673374,"id_str":"3503673374","name":"syim\u00e4h","screen_name":"syimahhshm","location":null,"url":null,"description":"heart full of secret garden","protected":false,"verified":false,"followers_count":4,"friends_count":5,"listed_count":0,"favourites_count":62,"statuses_count":1295,"created_at":"Wed Sep 09 11:26:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658327756581662720\/JWsQk09f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658327756581662720\/JWsQk09f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3503673374\/1446895630","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000657"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537470464,"id_str":"663727745537470464","text":"RT @NoviazgosEs: \"Te jode, te jode, te jode y sigues ah\u00ed. \u00bfPor qu\u00e9? Porque te importa demasiado.\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2382923677,"id_str":"2382923677","name":"Elise Ngt ","screen_name":"Elise__Ngt","location":null,"url":null,"description":"Espere demasiado de un perdedor","protected":false,"verified":false,"followers_count":117,"friends_count":153,"listed_count":1,"favourites_count":155,"statuses_count":341,"created_at":"Tue Mar 11 00:56:53 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"5DF5E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582648341068062721\/-aXkKQNo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582648341068062721\/-aXkKQNo.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643579528577572864\/UQosAify_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643579528577572864\/UQosAify_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2382923677\/1421568431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 01 18:58:08 +0000 2015","id":583342601190928384,"id_str":"583342601190928384","text":"\"Te jode, te jode, te jode y sigues ah\u00ed. \u00bfPor qu\u00e9? Porque te importa demasiado.\"","source":"\u003ca href=\"http:\/\/tooltwits.com\/\" rel=\"nofollow\"\u003eToolTwits APP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198674815,"id_str":"198674815","name":"Novios\u2764","screen_name":"NoviazgosEs","location":"Venezuela.","url":null,"description":"Hay amores que duran para siempre aunque no est\u00e9n juntos. Publicidad\/Campa\u00f1as \u261b \u2709 diceunpoeta@hotmail.com","protected":false,"verified":false,"followers_count":295788,"friends_count":19,"listed_count":428,"favourites_count":229,"statuses_count":6390,"created_at":"Mon Oct 04 23:21:43 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/829894974\/1b2fa76c110d53677a1061dcc926a10e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/829894974\/1b2fa76c110d53677a1061dcc926a10e.jpeg","profile_background_tile":false,"profile_link_color":"367BE3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512989112173752320\/nyYrgbMv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512989112173752320\/nyYrgbMv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198674815\/1411142365","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30488,"favorite_count":18321,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NoviazgosEs","name":"Novios\u2764","id":198674815,"id_str":"198674815","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571098625,"id_str":"663727745571098625","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/AK6zJzkr1e","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3954080653,"id_str":"3954080653","name":"Team Forever","screen_name":"anikamendez1071","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":28018,"created_at":"Tue Oct 20 03:55:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656318690518917120\/r2gPadGD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656318690518917120\/r2gPadGD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727608916496384,"quoted_status_id_str":"663727608916496384","quoted_status":{"created_at":"Mon Nov 09 14:39:28 +0000 2015","id":663727608916496384,"id_str":"663727608916496384","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/15IV6nPw2B","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727293056053249,"quoted_status_id_str":"663727293056053249","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/15IV6nPw2B","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727293056053249","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/AK6zJzkr1e","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727608916496384","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745554255873,"id_str":"663727745554255873","text":"@koge_ace \u4eca\u56de\u306e\u7533\u3057\u8fbc\u307f\u3044\u3064\u307e\u3067\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727196230414337,"in_reply_to_status_id_str":"663727196230414337","in_reply_to_user_id":4068447554,"in_reply_to_user_id_str":"4068447554","in_reply_to_screen_name":"koge_ace","user":{"id":2958475969,"id_str":"2958475969","name":"\u30b5\u30c8\u30b7@FD3S FD\u5165\u9662\u4e2d","screen_name":"el_fu_tbol13","location":"\u798f\u5cf6\u770c","url":null,"description":"\u6307\u6458\u3055\u308c\u305f\u3068\u3053\u306e\u6539\u5584\u3092\u65e9\u6025\u306b\uff01 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u898b\u3064\u3051\u6b21\u7b2c\u5373\u30d6\u30ed\uff01","protected":false,"verified":false,"followers_count":297,"friends_count":383,"listed_count":10,"favourites_count":3150,"statuses_count":13429,"created_at":"Sun Jan 04 12:51:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648131269239271424\/zj7fv7av_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648131269239271424\/zj7fv7av_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958475969\/1443361498","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"koge_ace","name":"\u3042\u3044\u3068","id":4068447554,"id_str":"4068447554","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000662"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745570967553,"id_str":"663727745570967553","text":"RT @pereperekun: https:\/\/t.co\/FfH2cFVcFS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3231609732,"id_str":"3231609732","name":"\u308a\u3093\u3075\u3041","screen_name":"linfa_lm","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=496249","description":"\u6700\u8fd1\u304a\u7d75\u304b\u304d\u306e\u8da3\u5473\u306b\u76ee\u899a\u3081\u3066\u307c\u3061\u307c\u3061\u63cf\u3044\u3066\u307e\u3059\u3002\u4e3b\u306b\u8266\u3053\u308c\u3084\u6c17\u306b\u5165\u3063\u305f\u30a2\u30cb\u30e1\u306a\u3069\u306e\u30ad\u30e3\u30e9\u306e\u3048\u3063\u3061\u3044\u7d75\u3092\u63cf\u3044\u305f\u308a\u3001\u30ef\u30f3\u30c9\u30ed\u3084\u3063\u3066\u307e\u3059\u3002\u30b2\u30fc\u30e0\u597d\u304d\u306a\u306e\u3067\u305d\u3063\u3061\u306b\u6c17\u3092\u53d6\u3089\u308c\u308b\u3053\u3068\u3082\u30fb\u30fb\u30fb\u3002\n\u30c4\u30a4\u30fc\u30c8\u306f\u5c11\u306a\u3081\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u306d\u3002\n\u3048\u3063\u3061\u3044\u7d75\u3082\u6642\u3005\u3042\u308b\u306e\u3067\u300118\u6b73\u672a\u6e80\u306f\u99c4\u76ee\u3067\u3059\u3088\uff5e","protected":false,"verified":false,"followers_count":423,"friends_count":380,"listed_count":13,"favourites_count":5090,"statuses_count":3582,"created_at":"Sun May 31 13:00:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642677533842903040\/36vxY1_d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642677533842903040\/36vxY1_d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3231609732\/1436703989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:33 +0000 2015","id":663724610966327296,"id_str":"663724610966327296","text":"https:\/\/t.co\/FfH2cFVcFS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385875835,"id_str":"385875835","name":"\u30da\u30ec\u30da\u30ec\u541b(''\u25c7'')\u309e","screen_name":"pereperekun","location":"\u821e\u9db4\u93ae\u5b88\u5e9c","url":"http:\/\/pixiv.me\/hanahana1234567","description":"\u30a4\u30e9\u30b9\u30c8\u3092\u63cf\u304f\u3067\u3059\u3002 gi.gi@outlook.jp","protected":false,"verified":false,"followers_count":13496,"friends_count":1945,"listed_count":404,"favourites_count":12748,"statuses_count":46900,"created_at":"Thu Oct 06 08:55:50 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/342784874\/___.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/342784874\/___.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663535393728413697\/1C0jK5XU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663535393728413697\/1C0jK5XU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385875835\/1442560584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":56,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724609544458240,"id_str":"663724609544458240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","url":"https:\/\/t.co\/FfH2cFVcFS","display_url":"pic.twitter.com\/FfH2cFVcFS","expanded_url":"http:\/\/twitter.com\/pereperekun\/status\/663724610966327296\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":842,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":595,"h":842,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724609544458240,"id_str":"663724609544458240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","url":"https:\/\/t.co\/FfH2cFVcFS","display_url":"pic.twitter.com\/FfH2cFVcFS","expanded_url":"http:\/\/twitter.com\/pereperekun\/status\/663724610966327296\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":842,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":595,"h":842,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pereperekun","name":"\u30da\u30ec\u30da\u30ec\u541b(''\u25c7'')\u309e","id":385875835,"id_str":"385875835","indices":[3,15]}],"symbols":[],"media":[{"id":663724609544458240,"id_str":"663724609544458240","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","url":"https:\/\/t.co\/FfH2cFVcFS","display_url":"pic.twitter.com\/FfH2cFVcFS","expanded_url":"http:\/\/twitter.com\/pereperekun\/status\/663724610966327296\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":842,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":595,"h":842,"resize":"fit"}},"source_status_id":663724610966327296,"source_status_id_str":"663724610966327296","source_user_id":385875835,"source_user_id_str":"385875835"}]},"extended_entities":{"media":[{"id":663724609544458240,"id_str":"663724609544458240","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGBAyVEAAQmS2.jpg","url":"https:\/\/t.co\/FfH2cFVcFS","display_url":"pic.twitter.com\/FfH2cFVcFS","expanded_url":"http:\/\/twitter.com\/pereperekun\/status\/663724610966327296\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":842,"resize":"fit"},"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":595,"h":842,"resize":"fit"}},"source_status_id":663724610966327296,"source_status_id_str":"663724610966327296","source_user_id":385875835,"source_user_id_str":"385875835"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566818304,"id_str":"663727745566818304","text":"True yang best ni hahah .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197484305,"id_str":"197484305","name":"Aris Ai","screen_name":"nrumirahh","location":null,"url":null,"description":"You said I'll never leave you alone .","protected":false,"verified":false,"followers_count":223,"friends_count":153,"listed_count":0,"favourites_count":16922,"statuses_count":17756,"created_at":"Fri Oct 01 16:37:05 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524565147868602369\/iauCEg59.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524565147868602369\/iauCEg59.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607870918501621761\/7taxDNLW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607870918501621761\/7taxDNLW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197484305\/1433762663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745550041088,"id_str":"663727745550041088","text":"\u65e9\u304f\u5e30\u308c\u305f\u306e\u3067\u3001\u305f\u3081\u64ae\u308a\u3057\u3066\u305f\u30b3\u30a6\u30ce\u30c9\u30ea\u3092\u898b\u76f4\u3057\u3066\u3044\u308b\u306e\u3060\u304c\u3001\u306a\u306b\u3053\u308c\u3001\u3082\u3046\u3084\u3070\u3059\u304e\u308b\u3002\u6d99\u304c\u3068\u307e\u3089\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/mixi.jp\/promotion.pl?id=voice_twitter\" rel=\"nofollow\"\u003e mixi\u30dc\u30a4\u30b9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157583249,"id_str":"157583249","name":"\u4e09\u6d66\u5b8f\u6587","screen_name":"HirMiura","location":"\u6771\u4eac\u90fd","url":null,"description":"\u672c\u8077\u306f\u30a4\u30f3\u30c9\u54f2\u5b66\u306e\u7814\u7a76\u8005\u3002\u535a\u58eb\uff08\u6587\u5b66\uff09\u3002\u5927\u5b66\u3084\u77ed\u5927\u3084\u4e88\u5099\u6821\u3001\u9ad8\u6821\u306a\u3069\u3044\u308d\u3093\u306a\u6240\u3067\u6559\u3048\u3066\u3044\u305f\u308a\u3082\u3057\u307e\u3059\u3002\u672c\u3082\u6642\u3005\u66f8\u3044\u3066\u3044\u307e\u3059\u3002\u4e3b\u306b\u30c9\u30e9\u30de\u3001\u6620\u753b\u3001\u672c\u306a\u3069\u306b\u3064\u3044\u3066\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u305f\u307e\u306b\u54f2\u5b66\u3084\u601d\u60f3\u306b\u3064\u3044\u3066\u3082\u8a9e\u308a\u307e\u3059\u3002\u6700\u8fd1\u3001\u5e74\u7532\u6590\u3082\u306a\u304f\u300c\u5e55\u304c\u4e0a\u304c\u308b\u300d\u304d\u3063\u304b\u3051\u3067\u3082\u3082\u30af\u30ed\u306b\u8208\u5473\u3092\u6301\u3061\u59cb\u3081\u307e\u3057\u305f\uff08\u7b11\uff09","protected":false,"verified":false,"followers_count":407,"friends_count":299,"listed_count":8,"favourites_count":2913,"statuses_count":8735,"created_at":"Sun Jun 20 07:06:41 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1681141110\/photo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1681141110\/photo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000661"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566830596,"id_str":"663727745566830596","text":"RT @airi_kijima: \u307f\u3093\u306a\u304b\u3089\u6ca2\u5c71\u304a\u83d3\u5b50\u3092\n\u8cb0\u3063\u3061\u3083\u3063\u305f\u304b\u3089\u3057\u3070\u3089\u304f\n\u8cb7\u308f\u306a\u3044\u3067\u6e08\u3080(\ufe61\u02c6 \u02c6\ufe61)\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1257162685,"id_str":"1257162685","name":"miyata yoshiki","screen_name":"road_come","location":null,"url":null,"description":"\u307b\u307c\u545f\u304d\u306f\u30a8\u30ed\u3044\u3067\u3059\u2026\u307b\u307c\u30c9\uff33\u3067\u3059\u2026\u307b\u307c\u53cd\u653f\u5e9c\u7d44\u7e54\u3067\u3059\u2026\u7a7a\u6c17\u306f\u8aad\u307e\u306a\u3044\u2026\u8aad\u3081\u306a\u3044\u2026\u9078\u308a\u597d\u307f\u306f\u5acc\u3044\u3067\u3059\u2026\u6027\u683c\u306f\u30c0\u30fc\u30af\u30b5\u30a4\u30c9\u2026(\uff40\u25bd\u00b4) \uff8b\uff8b\uff8b\uff8b\uff8b\uff8b\uff8b","protected":false,"verified":false,"followers_count":369,"friends_count":245,"listed_count":7,"favourites_count":61461,"statuses_count":65050,"created_at":"Sun Mar 10 14:28:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663273199484846080\/KkllLXN2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663273199484846080\/KkllLXN2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257162685\/1443161675","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:48 +0000 2015","id":663716119388098562,"id_str":"663716119388098562","text":"\u307f\u3093\u306a\u304b\u3089\u6ca2\u5c71\u304a\u83d3\u5b50\u3092\n\u8cb0\u3063\u3061\u3083\u3063\u305f\u304b\u3089\u3057\u3070\u3089\u304f\n\u8cb7\u308f\u306a\u3044\u3067\u6e08\u3080(\ufe61\u02c6 \u02c6\ufe61)\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1316867222,"id_str":"1316867222","name":"\u5e0c\u5cf6\u3042\u3044\u308a","screen_name":"airi_kijima","location":"Duo\u30a8\u30f3\u30bf\u30fc\u30c6\u30a4\u30e1\u30f3\u30c8\u6240\u5c5e","url":"http:\/\/blog.livedoor.jp\/airi_1224\/","description":"\u30a2\u30a4\u30dd\u30b1\u5c02\u5c5e,\u304d\u3058\u30fc\u3053\u3068\u304d\u3058\u307e\u3042\u3044\u308a\u3067\u3059\u25ca*\uff9f\u5143\u6075\u6bd4\u5bff\u30de\u30b9\u30ab\u30c3\u30c4\u30e1\u30f3\u30d0\u04a8\u2605\u30bd\u30ed\u30b7\u30f3\u30b0\u30ebCD\u300c\u541b\u3078\u5c4a\u3051\u300d(http:\/\/youtu.be\/HEDVA9TzFiM) 2016\u5e74\u5e0c\u5cf6\u3042\u3044\u308a\u30ab\u30ec\u30f3\u30c0\u30fc(http:\/\/bit.ly\/1ieZBHS)\u304a\u829d\u5c45\/\u6b4c\/\u30c0\u30f3\u30b9\/\u304a\u6599\u7406\u304c\u597d\u304d\u301c\u3063\u2e1c(\u0e51\u20d9\u20d8'\u1d55'\u0e51\u20d9\u20d8)\u2e1d\u22c6*","protected":false,"verified":false,"followers_count":48955,"friends_count":508,"listed_count":546,"favourites_count":73163,"statuses_count":23464,"created_at":"Sat Mar 30 17:32:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662935699306381312\/Tfn9P8B0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662935699306381312\/Tfn9P8B0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1316867222\/1444056830","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"airi_kijima","name":"\u5e0c\u5cf6\u3042\u3044\u308a","id":1316867222,"id_str":"1316867222","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537437700,"id_str":"663727745537437700","text":"@kemononomofuge \u3066\u3089\u3042\u308a\u3067\u3057\u305f\u301c\uff01","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724581618737152,"in_reply_to_status_id_str":"663724581618737152","in_reply_to_user_id":3017433032,"in_reply_to_user_id_str":"3017433032","in_reply_to_screen_name":"kemononomofuge","user":{"id":1076105695,"id_str":"1076105695","name":"\u8000","screen_name":"Teru0393","location":"\u30ed\u30c3\u30af\u30cf\u30f3\u30c9","url":null,"description":"\u7363\u4eba\u3068\u3064\u308b\u3077\u306b\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u8266\u3053\u308c\/\u30b0\u30e9\u30d6\u30eb\/\u30d5\u30eb\u30dc\u30c3\u30b3\u30d2\u30fc\u30ed\u30fc\u30ba\/\u30e2\u30f3\u30cf\u30f3\/SB69\/\u97f3\u30b2\u30fc\/\u30b3\u30f3\u30b3\u30ec\/\u30dd\u30b1\u30e2\u30f3\/\u30ab\u30fc\u30d3\u30a3\u3000\u305d\u306e\u4ed6\u8af8\u3005\u2026 \u30e2\u30a2\u3061\u3083\u3093\u53ef\u611b\u3044 \u30a2\u30a4\u30b3\u30f3\u3068\u30d8\u30c3\u30c0\u30fc\u306f\u9ed2\u57ce\u3055\u3093\u306b\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":641,"friends_count":775,"listed_count":22,"favourites_count":21508,"statuses_count":81308,"created_at":"Thu Jan 10 09:04:28 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431260669980057600\/vi9ev9M-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431260669980057600\/vi9ev9M-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1076105695\/1421819305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kemononomofuge","name":"\u661f\u91ce \u3051\u3060\u307e","id":3017433032,"id_str":"3017433032","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571143680,"id_str":"663727745571143680","text":"Now Playing: Kim Jong Wook - You\u2019re Mine on https:\/\/t.co\/dVk7iiMXPd #KpopRadioPN","source":"\u003ca href=\"http:\/\/share.radionomy.com\" rel=\"nofollow\"\u003eShare.Radionomy.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1629759217,"id_str":"1629759217","name":"Kpop Radio PN","screen_name":"KpopRadioPN","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":20,"listed_count":0,"favourites_count":0,"statuses_count":5837,"created_at":"Mon Jul 29 07:15:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657445903863713792\/q2G_zIp__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657445903863713792\/q2G_zIp__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1629759217\/1445582279","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KpopRadioPN","indices":[68,80]}],"urls":[{"url":"https:\/\/t.co\/dVk7iiMXPd","expanded_url":"http:\/\/www.radionomy.com\/kpopradiopn","display_url":"radionomy.com\/kpopradiopn","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745550131200,"id_str":"663727745550131200","text":"RT @pecinogp: Very Interesting debrief by Ducati,s Gigi Dall'Igna this morning in Valencia https:\/\/t.co\/BIDUBMRZMY","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402941588,"id_str":"402941588","name":"Paco Vicente Millet","screen_name":"PacoVMillet","location":"Burjassot, Valencia, Espa\u00f1a","url":null,"description":"Disfrutando de la vida (y del Desmo) y aprendiendo a ser padre con @Titina_L :-)\nForza Ducati! Amunt Val\u00e8ncia!","protected":false,"verified":false,"followers_count":147,"friends_count":471,"listed_count":9,"favourites_count":2506,"statuses_count":4081,"created_at":"Tue Nov 01 20:00:57 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000623233136\/3156fec0be1e24ba5e55852091e94747_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000623233136\/3156fec0be1e24ba5e55852091e94747_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402941588\/1440452450","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:15 +0000 2015","id":663709434733010944,"id_str":"663709434733010944","text":"Very Interesting debrief by Ducati,s Gigi Dall'Igna this morning in Valencia https:\/\/t.co\/BIDUBMRZMY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":628284785,"id_str":"628284785","name":"Manuel Pecino","screen_name":"pecinogp","location":"On the move","url":"http:\/\/www.pecinogp.com","description":null,"protected":false,"verified":false,"followers_count":5039,"friends_count":6,"listed_count":137,"favourites_count":260,"statuses_count":2752,"created_at":"Fri Jul 06 11:15:24 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427125333511254016\/YNLRRdHt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427125333511254016\/YNLRRdHt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/628284785\/1446445646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709421760028672,"id_str":"663709421760028672","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","url":"https:\/\/t.co\/BIDUBMRZMY","display_url":"pic.twitter.com\/BIDUBMRZMY","expanded_url":"http:\/\/twitter.com\/pecinogp\/status\/663709434733010944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709421760028672,"id_str":"663709421760028672","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","url":"https:\/\/t.co\/BIDUBMRZMY","display_url":"pic.twitter.com\/BIDUBMRZMY","expanded_url":"http:\/\/twitter.com\/pecinogp\/status\/663709434733010944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pecinogp","name":"Manuel Pecino","id":628284785,"id_str":"628284785","indices":[3,12]}],"symbols":[],"media":[{"id":663709421760028672,"id_str":"663709421760028672","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","url":"https:\/\/t.co\/BIDUBMRZMY","display_url":"pic.twitter.com\/BIDUBMRZMY","expanded_url":"http:\/\/twitter.com\/pecinogp\/status\/663709434733010944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663709434733010944,"source_status_id_str":"663709434733010944","source_user_id":628284785,"source_user_id_str":"628284785"}]},"extended_entities":{"media":[{"id":663709421760028672,"id_str":"663709421760028672","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4M94WIAAgeL-.jpg","url":"https:\/\/t.co\/BIDUBMRZMY","display_url":"pic.twitter.com\/BIDUBMRZMY","expanded_url":"http:\/\/twitter.com\/pecinogp\/status\/663709434733010944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663709434733010944,"source_status_id_str":"663709434733010944","source_user_id":628284785,"source_user_id_str":"628284785"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000661"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745558450176,"id_str":"663727745558450176","text":"RT @NELO_59: \u9ad8\u6a4b\u5bb6\u306b\u304a\u90aa\u9b54\u3057\u3066\u307e\u301c\u3059(^O^) https:\/\/t.co\/Rz5HcG0fl6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":447895106,"id_str":"447895106","name":"\u3055\u3084\u3057\u3093","screen_name":"8s_pon","location":null,"url":null,"description":"\u30b7\u30e7\u30c3\u30d7\u5e97\u54e1 \u6d0b\u670d \u7dd1 LIVE GMA OOR MWAM \u30b2\u30b9\u6975 brian the sun KANA-BOON BBB \u30a2\u30ec\u30ad \u30b5\u30ab\u30ca\u30af\u30b7\u30e7\u30f3 BUMP \u30ad\u30e5\u30a6\u30bd 11.27 GMA \u65e5\u672c\u6b66\u9053\u9928\u53c2\u6226\u4e88\u5b9a ROCK\u304c\u5927\u597d\u304d\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":270,"friends_count":290,"listed_count":1,"favourites_count":63,"statuses_count":3306,"created_at":"Tue Dec 27 11:25:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662813340306006016\/XV5QeGwu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662813340306006016\/XV5QeGwu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447895106\/1439639985","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:39:32 +0000 2015","id":663697426755158016,"id_str":"663697426755158016","text":"\u9ad8\u6a4b\u5bb6\u306b\u304a\u90aa\u9b54\u3057\u3066\u307e\u301c\u3059(^O^) https:\/\/t.co\/Rz5HcG0fl6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1291438087,"id_str":"1291438087","name":"\u306a\u308a\u3042\u304d","screen_name":"NELO_59","location":null,"url":null,"description":"\u97f3\u697d\u3084\u30a2\u30cb\u30e1\u306a\u3069\u304c\u597d\u304d\u3067\u3059\u3002\u30ac\u30eb\u30d1\u30f3\u3084\u30f1\u30f4\u30a1\u306a\u3069\u3044\u308d\u3044\u308d\u3001\u97f3\u697d\u3067\u306fSPYAIR\u3084\u30b5\u30ab\u30ca\u30af\u30b7\u30e7\u30f3\u3084NICO Touches the Walls\u306a\u3069\u3092\u805e\u3044\u3066\u3044\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u266a(^O^)","protected":false,"verified":false,"followers_count":64,"friends_count":130,"listed_count":0,"favourites_count":14,"statuses_count":624,"created_at":"Sat Mar 23 13:20:29 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488249975394934785\/mXK_yLkf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488249975394934785\/mXK_yLkf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1291438087\/1405243176","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663697419301883909,"id_str":"663697419301883909","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","url":"https:\/\/t.co\/Rz5HcG0fl6","display_url":"pic.twitter.com\/Rz5HcG0fl6","expanded_url":"http:\/\/twitter.com\/NELO_59\/status\/663697426755158016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663697419301883909,"id_str":"663697419301883909","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","url":"https:\/\/t.co\/Rz5HcG0fl6","display_url":"pic.twitter.com\/Rz5HcG0fl6","expanded_url":"http:\/\/twitter.com\/NELO_59\/status\/663697426755158016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NELO_59","name":"\u306a\u308a\u3042\u304d","id":1291438087,"id_str":"1291438087","indices":[3,11]}],"symbols":[],"media":[{"id":663697419301883909,"id_str":"663697419301883909","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","url":"https:\/\/t.co\/Rz5HcG0fl6","display_url":"pic.twitter.com\/Rz5HcG0fl6","expanded_url":"http:\/\/twitter.com\/NELO_59\/status\/663697426755158016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663697426755158016,"source_status_id_str":"663697426755158016","source_user_id":1291438087,"source_user_id_str":"1291438087"}]},"extended_entities":{"media":[{"id":663697419301883909,"id_str":"663697419301883909","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXtSVPVEAUyI7C.jpg","url":"https:\/\/t.co\/Rz5HcG0fl6","display_url":"pic.twitter.com\/Rz5HcG0fl6","expanded_url":"http:\/\/twitter.com\/NELO_59\/status\/663697426755158016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663697426755158016,"source_status_id_str":"663697426755158016","source_user_id":1291438087,"source_user_id_str":"1291438087"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000663"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545846784,"id_str":"663727745545846784","text":"PARTY PEOPLE \ud83d\ude4c\ud83c\udf89\ud83c\udfa4\ud83c\udfb6\ud83d\udce2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3333463160,"id_str":"3333463160","name":"THE REAL BOSS","screen_name":"dagirlx","location":"Jupiter","url":null,"description":"Engkantada. #ALDUB #JADINE \u2764","protected":false,"verified":false,"followers_count":2026,"friends_count":1357,"listed_count":3,"favourites_count":262,"statuses_count":643,"created_at":"Tue Aug 25 04:12:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727357430132736\/ji1oV18x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727357430132736\/ji1oV18x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3333463160\/1447079904","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537433601,"id_str":"663727745537433601","text":"\u0e40\u0e2d\u0e32\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e0a\u0e2d\u0e1a\u0e1a\u0e1a\u0e1a\u0e1a https:\/\/t.co\/qu3plNUDYJ","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186737613,"id_str":"1186737613","name":"yam stang","screen_name":"yamnalik","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":12,"listed_count":0,"favourites_count":2,"statuses_count":715,"created_at":"Sat Feb 16 16:28:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000063235342\/3c48c845f50aaf6489f783984c624ee1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000063235342\/3c48c845f50aaf6489f783984c624ee1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186737613\/1365169361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qu3plNUDYJ","expanded_url":"http:\/\/fb.me\/1W15vE2mF","display_url":"fb.me\/1W15vE2mF","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745533263872,"id_str":"663727745533263872","text":"@tehsha @MamdouhZaki_ \u0631\u0627\u062c\u0644 \u0633\u0646\u0647 \u0643\u0628\u064a\u0631 \u064a\u0627 \u0639\u0633\u0643\u0631\u0649 \ud83d\udcde \u0631\u0643\u0632 \u0645\u0639 \u0627\u062e\u0648\u0643 \u0648 \u0627\u0644\u062d\u0627\u062c\u0647 \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727420189618177,"in_reply_to_status_id_str":"663727420189618177","in_reply_to_user_id":569667801,"in_reply_to_user_id_str":"569667801","in_reply_to_screen_name":"tehsha","user":{"id":586557858,"id_str":"586557858","name":"\u0645\u064f\u0635\u0652\u0637\u064e\u0641\u0649 \u062d\u064e\u0645\u0652\u062f\u0650\u064a","screen_name":"MostafaHamdy_","location":null,"url":null,"description":"\u0645\u0643\u0627\u0646\u0634 \u0628\u0627\u062e\u062a\u064a\u0627\u0631\u0646\u0627 \u0627\u062a\u0648\u0644\u062f\u0646\u0627 \u0648\u0644\u0642\u064a\u0646\u0627\u0647 #JFT74","protected":false,"verified":false,"followers_count":2715,"friends_count":240,"listed_count":21,"favourites_count":2089,"statuses_count":116717,"created_at":"Mon May 21 11:42:53 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850355597\/08ebcba770868a8c69179b138923e523.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850355597\/08ebcba770868a8c69179b138923e523.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654798324273250304\/Ie7wpBPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654798324273250304\/Ie7wpBPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/586557858\/1443238535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tehsha","name":"\u0637\u0627\u0631\u0650\u0642 \u0634\u0644\u0651\u0628\u064a","id":569667801,"id_str":"569667801","indices":[0,7]},{"screen_name":"MamdouhZaki_","name":"Mamdouh Zaki","id":232117785,"id_str":"232117785","indices":[8,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080000657"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745558384640,"id_str":"663727745558384640","text":"\u76fe\u3092\u8cbc\u308c\u306a\u3044\u3068\u5ca9\u5c71\u306f\u6b69\u3051\u306a\u3044\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398018285,"id_str":"398018285","name":"nyorochi","screen_name":"nyororinrin_N","location":"\u6771\u4eac","url":"http:\/\/nyororinrin515151.blog.fc2.com\/","description":"\u7a7a\u30ea\u30d7\u30ac\u30c1\u52e2 \u3001 Elona\/mugen\/\u904a\u622f\u738b\/\u8266\u3053\u308c\/\u3064\u3076\u304d\u3083\u3089\/\u5929\u547c\/ECO nyorochi(\u30b8\u30cb\u30a2\u9bd6)","protected":false,"verified":false,"followers_count":258,"friends_count":234,"listed_count":14,"favourites_count":1197,"statuses_count":73177,"created_at":"Tue Oct 25 13:27:24 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/353244116\/wallpaper6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/353244116\/wallpaper6.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657922162330722304\/PO_kKRog_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657922162330722304\/PO_kKRog_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398018285\/1413644941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000663"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566797824,"id_str":"663727745566797824","text":"RT @AgsPlayers: CHINA OCTOBER SOYBEAN IMPORTS 5.53 MLN TONNES VS 7.26 MLN TONNES IN SEPTEMBER - CUSTOMS - @ReutersAg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3126183218,"id_str":"3126183218","name":"Dawn Straka","screen_name":"NManchesterCorn","location":"North Manchester, Indiana","url":"http:\/\/poet.com\/northmanchester","description":"Grain Buyer for POET - North Manchester, Indiana. Tweets are an informational service to our producers and do not necessarily represent the views of POET.","protected":false,"verified":false,"followers_count":91,"friends_count":198,"listed_count":3,"favourites_count":57,"statuses_count":1185,"created_at":"Wed Apr 01 16:45:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583311952694251520\/nI4vBT21_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583311952694251520\/nI4vBT21_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3126183218\/1427907410","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:03 +0000 2015","id":663727002520784896,"id_str":"663727002520784896","text":"CHINA OCTOBER SOYBEAN IMPORTS 5.53 MLN TONNES VS 7.26 MLN TONNES IN SEPTEMBER - CUSTOMS - @ReutersAg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417727024,"id_str":"417727024","name":"Ags Players","screen_name":"AgsPlayers","location":null,"url":"https:\/\/www.linkedin.com\/company\/agsplayers","description":"Futures, Options, Physical Markets, News & Comments on Grains & Agricultural commodities.","protected":false,"verified":false,"followers_count":6453,"friends_count":6250,"listed_count":215,"favourites_count":454,"statuses_count":41309,"created_at":"Mon Nov 21 09:20:12 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E1D2C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574282120668966912\/cQJQDxOr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574282120668966912\/cQJQDxOr.jpeg","profile_background_tile":true,"profile_link_color":"32251B","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1650063186\/Ags_Players_normal.GIF","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1650063186\/Ags_Players_normal.GIF","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417727024\/1429031145","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ReutersAg","name":"Reuters Ag News","id":58113278,"id_str":"58113278","indices":[90,100]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AgsPlayers","name":"Ags Players","id":417727024,"id_str":"417727024","indices":[3,14]},{"screen_name":"ReutersAg","name":"Reuters Ag News","id":58113278,"id_str":"58113278","indices":[106,116]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745541652480,"id_str":"663727745541652480","text":"\u30d7\u30ea\u30f3\u30b9\u30db\u30c6\u30eb\u3059\u3050\u305d\u3070\n\u21d2https:\/\/t.co\/1KnmB69Czh","source":"\u003ca href=\"http:\/\/www.hoge.hoge\/\" rel=\"nofollow\"\u003e\u798f\u7984\u5bff\u30c4\u30a4\u30fc\u30c8\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227769528,"id_str":"3227769528","name":"\u798f\u7984\u5bff\u306f\u308a\u304d\u3085\u3046\u6574\u9aa8\u9662","screen_name":"fukurokujyu320","location":"\u6771\u4eac\u90fd\u6e2f\u533a\u9ad8\u8f2a4-19-4","url":"http:\/\/fukurokujyu.com\/","description":"\u798f\u7984\u5bff \u306f\u308a \u304d\u3085\u3046\u6574\u9aa8\u9662\nhttp:\/\/fukurokujyu.com\/","protected":false,"verified":false,"followers_count":36,"friends_count":73,"listed_count":0,"favourites_count":0,"statuses_count":47771,"created_at":"Wed May 27 03:39:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606400682619334656\/q1UzboSa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606400682619334656\/q1UzboSa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227769528\/1433412342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1KnmB69Czh","expanded_url":"http:\/\/fukurokujyu.com\/","display_url":"fukurokujyu.com","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000659"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545826305,"id_str":"663727745545826305","text":"Bahagia itu tidur diantara pacar dan selingkuhan \n\n#dhuarr :D :D","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2384577908,"id_str":"2384577908","name":"abhymanurung","screen_name":"mr_khidal","location":"Kupang","url":null,"description":"Ndeng'eT","protected":false,"verified":false,"followers_count":5,"friends_count":25,"listed_count":0,"favourites_count":0,"statuses_count":401,"created_at":"Wed Mar 12 03:09:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/452237238835740673\/eHCKZ66q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/452237238835740673\/eHCKZ66q_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"dhuarr","indices":[51,58]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745558532096,"id_str":"663727745558532096","text":"RT @marLaflair: \ud83d\ude0d I think I'm in love again \ud83d\ude2d https:\/\/t.co\/tVMGq9OxFY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339295902,"id_str":"339295902","name":"KeepEmGuessin\u2728","screen_name":"Queen__Gemini","location":"SomeWhere with my girls","url":null,"description":"2k17\n\u2728Yhanni Sissy\u2728 R.I.P Lekk \u2764 \u264firacleBestFriend QuetteGangg My sissy The Best Sissy in the world\u2764\n\ufe0f hey bitches #\u303darley Mari","protected":false,"verified":false,"followers_count":290,"friends_count":275,"listed_count":1,"favourites_count":1975,"statuses_count":12412,"created_at":"Wed Jul 20 21:51:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661345049289080832\/s_EMufVr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661345049289080832\/s_EMufVr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339295902\/1446511840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:49 +0000 2015","id":663726692737896448,"id_str":"663726692737896448","text":"\ud83d\ude0d I think I'm in love again \ud83d\ude2d https:\/\/t.co\/tVMGq9OxFY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1325875404,"id_str":"1325875404","name":"Kd Laflair","screen_name":"marLaflair","location":null,"url":null,"description":"Why so SMOOTH? Blessed.. #LAX | Sc: marmarkd","protected":false,"verified":false,"followers_count":472,"friends_count":239,"listed_count":0,"favourites_count":333,"statuses_count":11769,"created_at":"Thu Apr 04 01:53:42 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661177025953075201\/z41_VJDL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661177025953075201\/z41_VJDL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1325875404\/1446166131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718237889130497,"quoted_status_id_str":"663718237889130497","quoted_status":{"created_at":"Mon Nov 09 14:02:13 +0000 2015","id":663718237889130497,"id_str":"663718237889130497","text":"\ud83c\udf47 https:\/\/t.co\/PUDPdup9Cy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3034102828,"id_str":"3034102828","name":"$$TooLitForYou\u2661","screen_name":"urfavvbadgirl","location":"NYC","url":null,"description":"\u2728I'm not cocky I'm confident so when u tell me that I'm the best its a compliment\u2728","protected":false,"verified":false,"followers_count":68222,"friends_count":43471,"listed_count":80,"favourites_count":5532,"statuses_count":65853,"created_at":"Fri Feb 13 06:16:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662997149332975616\/WsBNaAqi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662997149332975616\/WsBNaAqi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3034102828\/1447071406","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718236001710080,"id_str":"663718236001710080","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAOBfUsAAGeX4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAOBfUsAAGeX4.jpg","url":"https:\/\/t.co\/PUDPdup9Cy","display_url":"pic.twitter.com\/PUDPdup9Cy","expanded_url":"http:\/\/twitter.com\/urfavvbadgirl\/status\/663718237889130497\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718236001710080,"id_str":"663718236001710080","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAOBfUsAAGeX4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAOBfUsAAGeX4.jpg","url":"https:\/\/t.co\/PUDPdup9Cy","display_url":"pic.twitter.com\/PUDPdup9Cy","expanded_url":"http:\/\/twitter.com\/urfavvbadgirl\/status\/663718237889130497\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tVMGq9OxFY","expanded_url":"https:\/\/twitter.com\/urfavvbadgirl\/status\/663718237889130497","display_url":"twitter.com\/urfavvbadgirl\/\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tVMGq9OxFY","expanded_url":"https:\/\/twitter.com\/urfavvbadgirl\/status\/663718237889130497","display_url":"twitter.com\/urfavvbadgirl\/\u2026","indices":[46,69]}],"user_mentions":[{"screen_name":"marLaflair","name":"Kd Laflair","id":1325875404,"id_str":"1325875404","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000663"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566834688,"id_str":"663727745566834688","text":"@coro_0728 \u3042\u3001\u79c1\u3058\u3083\u306a\u3044\u3067\u3059\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727668756484096,"in_reply_to_status_id_str":"663727668756484096","in_reply_to_user_id":1979092740,"in_reply_to_user_id_str":"1979092740","in_reply_to_screen_name":"coro_0728","user":{"id":3023105173,"id_str":"3023105173","name":"G.","screen_name":"_go_tee","location":"Erromango Island","url":null,"description":"\u30bb\u30c3\u30af\u30b9\u3001\u30dd\u30a8\u30e0\u3001\u5373\u6b7b","protected":false,"verified":false,"followers_count":982,"friends_count":292,"listed_count":29,"favourites_count":31275,"statuses_count":12594,"created_at":"Tue Feb 17 00:19:02 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574568687274864641\/GsydWI7V.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574568687274864641\/GsydWI7V.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623768287403376640\/Wi7OKmc5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623768287403376640\/Wi7OKmc5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023105173\/1424168402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"coro_0728","name":"\u30c8\u30a4","id":1979092740,"id_str":"1979092740","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745545842688,"id_str":"663727745545842688","text":"RT @U_and_YOU: \u5e97\u54e1\u3055\u3093\u300c\u304a\u5144\u3055\u3093\u82b8\u80fd\u4eba\u306b\u4f3c\u3066\u308b\u306d\uff01\u300d\n\n\u50d5\u300c\u305f\u307e\u306b\u8a00\u308f\u308c\u307e\u3059\u30fc(\u307e\u305fJOY\u304b\u306a\uff1f)\u300d\n\n\u5e97\u300c\u3042\u306e\u30fc\u30b8\u30e3\u30cb\u30fc\u30ba\u306e\u30fc\u300d\n\n\u50d5\u300c\u305d\u308c\u306f\u3042\u307e\u308a\u8a00\u308f\u308c\u306a\u3044\u3067\u3059\u306d\u30fc(\u3044\u3084\u5f85\u3066\u3001\u6597\u771f\u304f\u3093\u306e\u3053\u3068\u304b\uff1f)\u300d\n\n\u5e97\u300c\u57ce\u7530\u512a\uff01\u300d\n\n\u50d5\u300c\u3042\u3063\u3048\u3063\u3068\u30fc\u9593\u9055\u3044\u306a\u304f\u50d5\u3067\u3059\u304c\u3001\u50d5\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2566153873,"id_str":"2566153873","name":"\u3064\u3063\u3064\u3093\uff0a11.26Japonism\u53c2\u6226","screen_name":"tuxtun","location":null,"url":null,"description":"1999\/\u9ad82\/\u30cb\u30ce\u3088\u308aall\u62c5\/\u306b\u306e\u3042\u3044\/\u5927\u5bae\/\u4f0f\u5175\/ THE DIGITALIAN\u4eac\u30bb\u30e911.27\u53c2\u6226\u6e08\u307f\/RT\u591a\u3081 \u540c\u3058\u5b66\u5e74.\u5175\u5eab\u4f4f\u307f.\u4eac\u30bb\u30e9\u52e2.\u540c\u62c5\u559c\u3073\u307e\u3059\uff01\uff01 ARASHIANS \u7f8e\u5c11\u5973\u6226\u58eb\u9054 follow me!!","protected":false,"verified":false,"followers_count":1325,"friends_count":1585,"listed_count":1,"favourites_count":242,"statuses_count":3025,"created_at":"Sat Jun 14 00:17:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555371335761674241\/HruTSV42_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555371335761674241\/HruTSV42_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566153873\/1429697825","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 30 16:24:49 +0000 2014","id":461541694266040323,"id_str":"461541694266040323","text":"\u5e97\u54e1\u3055\u3093\u300c\u304a\u5144\u3055\u3093\u82b8\u80fd\u4eba\u306b\u4f3c\u3066\u308b\u306d\uff01\u300d\n\n\u50d5\u300c\u305f\u307e\u306b\u8a00\u308f\u308c\u307e\u3059\u30fc(\u307e\u305fJOY\u304b\u306a\uff1f)\u300d\n\n\u5e97\u300c\u3042\u306e\u30fc\u30b8\u30e3\u30cb\u30fc\u30ba\u306e\u30fc\u300d\n\n\u50d5\u300c\u305d\u308c\u306f\u3042\u307e\u308a\u8a00\u308f\u308c\u306a\u3044\u3067\u3059\u306d\u30fc(\u3044\u3084\u5f85\u3066\u3001\u6597\u771f\u304f\u3093\u306e\u3053\u3068\u304b\uff1f)\u300d\n\n\u5e97\u300c\u57ce\u7530\u512a\uff01\u300d\n\n\u50d5\u300c\u3042\u3063\u3048\u3063\u3068\u30fc\u9593\u9055\u3044\u306a\u304f\u50d5\u3067\u3059\u304c\u3001\u50d5\u306f\u30b8\u30e3\u30cb\u30fc\u30ba\u3067\u306f\u306a\u3044\u3067\u3059\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255396287,"id_str":"255396287","name":"Yu Shirota(\u57ce\u7530\u512a)","screen_name":"U_and_YOU","location":"Tokyo,Japan","url":"http:\/\/www.yu-shirota.com\/","description":"1985.12.26 Actor ,Singer,Songwriter http:\/\/www.yu-shirota.com\/","protected":false,"verified":true,"followers_count":327360,"friends_count":152,"listed_count":3787,"favourites_count":0,"statuses_count":2804,"created_at":"Mon Feb 21 08:18:36 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432727794670247937\/XXZzj21F.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432727794670247937\/XXZzj21F.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657753597153701889\/iI42itn7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657753597153701889\/iI42itn7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255396287\/1445195025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45929,"favorite_count":42514,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"U_and_YOU","name":"Yu Shirota(\u57ce\u7530\u512a)","id":255396287,"id_str":"255396287","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000660"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745570967552,"id_str":"663727745570967552","text":"RT @mtyn_s: \u826f\u3044\u8a00\u8449\u3057\u304b\u306a\u3044\u672c\u3002 https:\/\/t.co\/QKb44VYrNq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290321456,"id_str":"3290321456","name":"\u5150\u7389","screen_name":"litchi_flip20","location":null,"url":null,"description":"\u82b1\u53572nd4","protected":false,"verified":false,"followers_count":189,"friends_count":180,"listed_count":0,"favourites_count":740,"statuses_count":454,"created_at":"Fri Jul 24 16:08:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663293412771164161\/dJmaTTc0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663293412771164161\/dJmaTTc0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290321456\/1446376798","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 12:51:16 +0000 2015","id":659351728110759937,"id_str":"659351728110759937","text":"\u826f\u3044\u8a00\u8449\u3057\u304b\u306a\u3044\u672c\u3002 https:\/\/t.co\/QKb44VYrNq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419171795,"id_str":"2419171795","name":"\u305b \u308a \u306a","screen_name":"mtyn_s","location":"\u5bae\u57ce ","url":null,"description":"\u5c02\u9580\u5b66\u751f \/ \u4ed9\u53f0","protected":false,"verified":false,"followers_count":518,"friends_count":293,"listed_count":0,"favourites_count":1530,"statuses_count":8236,"created_at":"Sun Mar 30 15:35:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663344148309655552\/iuhOXKAD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663344148309655552\/iuhOXKAD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419171795\/1446114544","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16861,"favorite_count":28910,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659351722200973314,"id_str":"659351722200973314","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":659351722200973314,"id_str":"659351722200973314","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":659351722301648896,"id_str":"659351722301648896","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eXU8AABPp4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eXU8AABPp4.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":659351722276458496,"id_str":"659351722276458496","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eRUkAAmo4j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eRUkAAmo4j.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":659351722293264384,"id_str":"659351722293264384","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eVVAAAKvsF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eVVAAAKvsF.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtyn_s","name":"\u305b \u308a \u306a","id":2419171795,"id_str":"2419171795","indices":[3,10]}],"symbols":[],"media":[{"id":659351722200973314,"id_str":"659351722200973314","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":659351728110759937,"source_status_id_str":"659351728110759937","source_user_id":2419171795,"source_user_id_str":"2419171795"}]},"extended_entities":{"media":[{"id":659351722200973314,"id_str":"659351722200973314","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85d_UwAI12gE.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":659351728110759937,"source_status_id_str":"659351728110759937","source_user_id":2419171795,"source_user_id_str":"2419171795"},{"id":659351722301648896,"id_str":"659351722301648896","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eXU8AABPp4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eXU8AABPp4.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":659351728110759937,"source_status_id_str":"659351728110759937","source_user_id":2419171795,"source_user_id_str":"2419171795"},{"id":659351722276458496,"id_str":"659351722276458496","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eRUkAAmo4j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eRUkAAmo4j.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":659351728110759937,"source_status_id_str":"659351728110759937","source_user_id":2419171795,"source_user_id_str":"2419171795"},{"id":659351722293264384,"id_str":"659351722293264384","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CSZ85eVVAAAKvsF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSZ85eVVAAAKvsF.jpg","url":"https:\/\/t.co\/QKb44VYrNq","display_url":"pic.twitter.com\/QKb44VYrNq","expanded_url":"http:\/\/twitter.com\/mtyn_s\/status\/659351728110759937\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":659351728110759937,"source_status_id_str":"659351728110759937","source_user_id":2419171795,"source_user_id_str":"2419171795"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571160064,"id_str":"663727745571160064","text":"Guluva himself Mhlophe oneman baba \u2014 celebrating success","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":871136167,"id_str":"871136167","name":"Abram Thabo Jantjie\u2122","screen_name":"LifewithAbram","location":"Bloemfontein ","url":null,"description":"I'm serving in the House of the Lord God as a Minister, I'm a tool for the kingdom of my heavenly father. I'm here to preach the gospel of truth","protected":false,"verified":false,"followers_count":350,"friends_count":1146,"listed_count":0,"favourites_count":456,"statuses_count":4572,"created_at":"Wed Oct 10 04:45:53 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663397208679718912\/sMNCxfNS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663397208679718912\/sMNCxfNS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871136167\/1446063177","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571028992,"id_str":"663727745571028992","text":"\u30c7\u30a3\u30ba\u30cb\u30fc\u884c\u304d\u305f\u3044\u3088\u304a\u91d1\u6b32\u3057\u3044\u3088\u30e6\u30cb\u30d0\u3082\u884c\u304d\u305f\u3044\u3088\u304a\u91d1\u306a\u3044\u3088\u6642\u9593\u306a\u3044\u3088\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\ud83e\udd10\ud83e\udd10\ud83e\udd10\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80\ud83d\udc80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546109905,"id_str":"546109905","name":"\u307f\u304f\u3063\u3053\u3002","screen_name":"mi_mi_www","location":"\u305f\u304b\u3044\u304f\u3093\u3068\u306f\u3084\u304b\u308f\u3055\u3093","url":"https:\/\/instagram.com\/mi_ku_www","description":"1-4\u21922-6\u21923-4\u307f\u305a\u3044\u308dD\u56e3\u3002 \u4e09\u5ea6\u306e\u98ef\u3088\u308aJOJO\u304c\u3059\u304d\u3002 https:\/\/m.youtube.com\/watch?feature=youtu.be&v=iNJ9xpiQOTI","protected":false,"verified":false,"followers_count":470,"friends_count":432,"listed_count":2,"favourites_count":10142,"statuses_count":43541,"created_at":"Thu Apr 05 14:43:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662560552971997184\/AmDdczx5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662560552971997184\/AmDdczx5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546109905\/1422942110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571098624,"id_str":"663727745571098624","text":"RT @ops_dane: S\u00f3 entro aqui pra reclamar \ud83d\ude02\ud83d\ude44","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3141637678,"id_str":"3141637678","name":"Kesia Oliveira","screen_name":"kesiagonoli","location":"Cl\u00e1udio, Minas Gerais","url":null,"description":"Que a minha loucura seja perdoada, pois metade de mim \u00e9 amor e a outra metade tamb\u00e9m.\n\n\n\n\n \u2022snap: kesiagonoli1 \u2022","protected":false,"verified":false,"followers_count":119,"friends_count":87,"listed_count":1,"favourites_count":857,"statuses_count":2116,"created_at":"Mon Apr 06 19:17:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663464321696026630\/SuQ8Tj1R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663464321696026630\/SuQ8Tj1R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3141637678\/1447017235","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:45 +0000 2015","id":663718872936239104,"id_str":"663718872936239104","text":"S\u00f3 entro aqui pra reclamar \ud83d\ude02\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387961011,"id_str":"387961011","name":"dani","screen_name":"ops_dane","location":"S\u00e3o Manuel - SP","url":"http:\/\/Instagram.com\/danni.eli","description":"snap: daanni.almeida","protected":false,"verified":false,"followers_count":1739,"friends_count":652,"listed_count":0,"favourites_count":11967,"statuses_count":110745,"created_at":"Sun Oct 09 23:17:04 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"992277","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539496708195880961\/3gaDerLY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539496708195880961\/3gaDerLY.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660669360990720001\/Ej3TDhiu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660669360990720001\/Ej3TDhiu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387961011\/1442661935","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ops_dane","name":"dani","id":387961011,"id_str":"387961011","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745541603328,"id_str":"663727745541603328","text":"@daichiii21 \u3092\u304b\u3057\u304f\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714972338286592,"in_reply_to_status_id_str":"663714972338286592","in_reply_to_user_id":3303188172,"in_reply_to_user_id_str":"3303188172","in_reply_to_screen_name":"daichiii21","user":{"id":3132144745,"id_str":"3132144745","name":"\u2765\u2765\u307f\u306e\u308a","screen_name":"mi_ha_3","location":"\u2765\u2765\u3042\u3059\u304b","url":null,"description":"\u63a8\u3057\u304c\u3068\u30fc\u3063\u3066\u3082\u304b\u308f\u3044\u3044\u3093\u3060\u306a( \u2e1d\u2e1d\u2e1d\u1d55\u1d17\u1d55\u2e1d\u2e1d\u2e1d )\u2661","protected":false,"verified":false,"followers_count":166,"friends_count":148,"listed_count":1,"favourites_count":1538,"statuses_count":5383,"created_at":"Thu Apr 02 17:07:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663190829020811264\/HmZX9ITx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663190829020811264\/HmZX9ITx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3132144745\/1446007908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daichiii21","name":"\u3080\u30fc\u3061\u3083\u3093\u2661","id":3303188172,"id_str":"3303188172","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000659"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537409025,"id_str":"663727745537409025","text":"RT @mami_kogame: \u4eca\u306e\u6d3e\u95a5\u3068\u304b\u3064\u3093\u306e\u9055\u548c\u611f\u3063\u3066\u30c7\u30a3\u30ba\u30cb\u30fc\u76ee\u5f53\u3066\u3067\u308f\u304f\u308f\u304f\u3057\u3066\u6765\u305f\u4eba\u304c\u7a81\u7136\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u906d\u9047\u3057\u305f\u611f\u3068\u3044\u3046\u304b\u3002\u591a\u304f\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u304c\u597d\u304d\u306a\u308f\u3051\u3067\u3059\u3088\u3002\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u7709\u3092\u3072\u305d\u3081\u308b\u308f\u3051\u3067\u3059\u3088\u3002\u3067\u3082\u4e16\u306e\u4e2d\u306b\u306f\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u30ef\u30af\u30ef\u30af\u3059\u308b\u5c64\u3082\u3044\u308b\u308f\u3051\u3067\u3002\u305d\u3053\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3083473423,"id_str":"3083473423","name":"\u307c\u3053","screen_name":"boko1g","location":"\u611b\u3042\u308b\u3068\u3053\u308d","url":null,"description":"\u4e80\u68a8\u548c\u4e5f\/\u723a\u5b6b \/\u305f\u3063\u3061\/\u53cb\u9054\u90e8 \/ \u4e80\u68a8\u304f\u3093\u304c\u3044\u308bKAT-TUN\u304c\u597d\u304d \u53ef\u611b\u3059\u304e\u3066\u3042\u308a\u304c\u3068\u3046","protected":false,"verified":false,"followers_count":13,"friends_count":37,"listed_count":0,"favourites_count":5601,"statuses_count":15952,"created_at":"Sun Mar 15 04:18:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576970688021413888\/nAivS3kh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576970688021413888\/nAivS3kh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3083473423\/1426395612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:49:13 +0000 2015","id":663669665936228352,"id_str":"663669665936228352","text":"\u4eca\u306e\u6d3e\u95a5\u3068\u304b\u3064\u3093\u306e\u9055\u548c\u611f\u3063\u3066\u30c7\u30a3\u30ba\u30cb\u30fc\u76ee\u5f53\u3066\u3067\u308f\u304f\u308f\u304f\u3057\u3066\u6765\u305f\u4eba\u304c\u7a81\u7136\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u906d\u9047\u3057\u305f\u611f\u3068\u3044\u3046\u304b\u3002\u591a\u304f\u306f\u30c7\u30a3\u30ba\u30cb\u30fc\u304c\u597d\u304d\u306a\u308f\u3051\u3067\u3059\u3088\u3002\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u7709\u3092\u3072\u305d\u3081\u308b\u308f\u3051\u3067\u3059\u3088\u3002\u3067\u3082\u4e16\u306e\u4e2d\u306b\u306f\u30c7\u30a3\u30ba\u30de\u30e9\u30f3\u30c9\u306b\u30ef\u30af\u30ef\u30af\u3059\u308b\u5c64\u3082\u3044\u308b\u308f\u3051\u3067\u3002\u305d\u3053\u30bf\u30fc\u30b2\u30c3\u30c8\u306b\u3057\u306a\u3044\uff1f","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140793970,"id_str":"140793970","name":"mami","screen_name":"mami_kogame","location":"\u6771\u4eac","url":"http:\/\/d.hatena.ne.jp\/kogame\/","description":"\u30ab\u30c4\u30f3\/BUCK-TICK\/\u829d\u5c45\/\u4ecf\u50cf\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u3066\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u3001\u30ea\u30e0\u30fc\u30d6\u3054\u81ea\u7531\u306b\u3002\u6328\u62f6\u306f\u4e0d\u8981\u3067\u3059\u30020\u30c4\u30a4\u30fc\u30c8\u306e\u65b9\u306f\u81ea\u52d5\u30d6\u30ed\u30c3\u30af\u3055\u308c\u307e\u3059\u306e\u3067\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":450,"friends_count":147,"listed_count":25,"favourites_count":18844,"statuses_count":57559,"created_at":"Thu May 06 11:30:35 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473856317157670912\/KkbRj4Lp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473856317157670912\/KkbRj4Lp_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mami_kogame","name":"mami","id":140793970,"id_str":"140793970","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562624000,"id_str":"663727745562624000","text":"RT @Jagalgoon: \ud3d0\ud558 \uadf8\uac83\uc774 \uc54c\uace0 \uc2f6\ub2e4\ub77c\ub294 \ub188\ub4e4\uc774 \uc120\uc655 \ud3d0\ud558\uc758 \uacfc\uac70\ub97c \ub4e4\ucdb0 \ub0c8\ub2f5\ub2c8\ub2e4 https:\/\/t.co\/ELhBqP6QNE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068755465,"id_str":"3068755465","name":"\uc5d8\uc2a4\ud130[Elster]","screen_name":"Elster_B","location":null,"url":null,"description":"\uad70\ub2e8\uba85 : Elster \/ \uc7a1\ub355 \/ \uc120\ud314,\uad00\uae00,RT\ub9ce\uc774\ud568 \/ \uae00\ub7ec \/ \ucee4\ud50c\ub9c1 \uc9c0\ub8b0X \/ \ucde8\uc886\ube14\ub77d","protected":false,"verified":false,"followers_count":80,"friends_count":132,"listed_count":0,"favourites_count":2302,"statuses_count":8703,"created_at":"Sun Mar 08 21:27:20 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663361571867914240\/ItgUBcwC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663361571867914240\/ItgUBcwC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068755465\/1442123115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:53:07 +0000 2015","id":663021370075320320,"id_str":"663021370075320320","text":"\ud3d0\ud558 \uadf8\uac83\uc774 \uc54c\uace0 \uc2f6\ub2e4\ub77c\ub294 \ub188\ub4e4\uc774 \uc120\uc655 \ud3d0\ud558\uc758 \uacfc\uac70\ub97c \ub4e4\ucdb0 \ub0c8\ub2f5\ub2c8\ub2e4 https:\/\/t.co\/ELhBqP6QNE","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154792661,"id_str":"154792661","name":"Jagal\u3164","screen_name":"Jagalgoon","location":null,"url":null,"description":"\uc81c \ud615 \uc544\ub2d9\ub2c8\ub2e4 \u27a1\ufe0f @MORAE__ \/\/ Jagal#3979 \ud788\uc624\uc2a4,\ub3cc\uac9c,\uc0ac\ud37c,\ub9ac\uac9c \ub4f1\ub4f1","protected":false,"verified":false,"followers_count":3538,"friends_count":529,"listed_count":40,"favourites_count":1443,"statuses_count":428423,"created_at":"Sat Jun 12 06:07:04 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433193184013737985\/ZqFrEuPq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433193184013737985\/ZqFrEuPq.jpeg","profile_background_tile":false,"profile_link_color":"0B1C02","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648496179416707072\/j6NdTGl9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648496179416707072\/j6NdTGl9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154792661\/1443449431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2068,"favorite_count":130,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663021356695445504,"id_str":"663021356695445504","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","url":"https:\/\/t.co\/ELhBqP6QNE","display_url":"pic.twitter.com\/ELhBqP6QNE","expanded_url":"http:\/\/twitter.com\/Jagalgoon\/status\/663021370075320320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":330,"resize":"fit"},"medium":{"w":499,"h":330,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663021356695445504,"id_str":"663021356695445504","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","url":"https:\/\/t.co\/ELhBqP6QNE","display_url":"pic.twitter.com\/ELhBqP6QNE","expanded_url":"http:\/\/twitter.com\/Jagalgoon\/status\/663021370075320320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":330,"resize":"fit"},"medium":{"w":499,"h":330,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jagalgoon","name":"Jagal\u3164","id":154792661,"id_str":"154792661","indices":[3,13]}],"symbols":[],"media":[{"id":663021356695445504,"id_str":"663021356695445504","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","url":"https:\/\/t.co\/ELhBqP6QNE","display_url":"pic.twitter.com\/ELhBqP6QNE","expanded_url":"http:\/\/twitter.com\/Jagalgoon\/status\/663021370075320320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":330,"resize":"fit"},"medium":{"w":499,"h":330,"resize":"fit"}},"source_status_id":663021370075320320,"source_status_id_str":"663021370075320320","source_user_id":154792661,"source_user_id_str":"154792661"}]},"extended_entities":{"media":[{"id":663021356695445504,"id_str":"663021356695445504","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOGaTxUYAAfjNZ.jpg","url":"https:\/\/t.co\/ELhBqP6QNE","display_url":"pic.twitter.com\/ELhBqP6QNE","expanded_url":"http:\/\/twitter.com\/Jagalgoon\/status\/663021370075320320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":330,"resize":"fit"},"medium":{"w":499,"h":330,"resize":"fit"}},"source_status_id":663021370075320320,"source_status_id_str":"663021370075320320","source_user_id":154792661,"source_user_id_str":"154792661"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537433600,"id_str":"663727745537433600","text":"RT @papapapokerfeis: oh, clapton como eric clapton? pregunta la se\u00f1orita, s\u00ed, dice la tortuga, Eric Clapton es mi pap\u00e1 y le gustaba coger c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":937168297,"id_str":"937168297","name":"Death Eater.","screen_name":"LoboTayTay","location":"Qro.","url":"http:\/\/www.facebook.com\/paulina.m.vera","description":"We don't need basic bitches here. 21.","protected":false,"verified":false,"followers_count":178,"friends_count":102,"listed_count":0,"favourites_count":2860,"statuses_count":27324,"created_at":"Fri Nov 09 15:34:14 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"18C4C4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451165096954171392\/0AzUPcwt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451165096954171392\/0AzUPcwt.jpeg","profile_background_tile":true,"profile_link_color":"ED1313","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"C71508","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661758588482793472\/YqqH5k6h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661758588482793472\/YqqH5k6h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937168297\/1439519578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:38:07 +0000 2015","id":663606476515184640,"id_str":"663606476515184640","text":"oh, clapton como eric clapton? pregunta la se\u00f1orita, s\u00ed, dice la tortuga, Eric Clapton es mi pap\u00e1 y le gustaba coger con tortugas","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112217472,"id_str":"112217472","name":"ALEX DIAZ","screen_name":"papapapokerfeis","location":null,"url":null,"description":"i'm the proof hitler killed all the funny jews","protected":false,"verified":false,"followers_count":92361,"friends_count":201,"listed_count":1756,"favourites_count":25770,"statuses_count":5935,"created_at":"Sun Feb 07 17:29:08 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000031656002\/b78000f11ba4617bccf3b847afbab741.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000031656002\/b78000f11ba4617bccf3b847afbab741.jpeg","profile_background_tile":true,"profile_link_color":"AD6FE3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641089516837584896\/f33cq5At_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641089516837584896\/f33cq5At_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112217472\/1398968716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":99,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"papapapokerfeis","name":"ALEX DIAZ","id":112217472,"id_str":"112217472","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000658"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745550036992,"id_str":"663727745550036992","text":"@LSoo_Rinn Oh man D: But anyways I think it will be crazily crowded. Will be hard to see the boys too #Sigh \ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711666232651776,"in_reply_to_status_id_str":"663711666232651776","in_reply_to_user_id":1119028080,"in_reply_to_user_id_str":"1119028080","in_reply_to_screen_name":"LSoo_Rinn","user":{"id":1657004288,"id_str":"1657004288","name":"\uc778\uc2a4\ud53c\ub9bf \u2601","screen_name":"inthemelon","location":"Singapore\u2764\ufe0f","url":null,"description":"Everything and Every Moment is very Special -\uba85\uc218","protected":false,"verified":false,"followers_count":85,"friends_count":224,"listed_count":1,"favourites_count":21115,"statuses_count":19596,"created_at":"Fri Aug 09 05:45:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657950198165934080\/b7DZsV2b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657950198165934080\/b7DZsV2b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1657004288\/1446480988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sigh","indices":[102,107]}],"urls":[],"user_mentions":[{"screen_name":"LSoo_Rinn","name":"\uc18c\ub9b0","id":1119028080,"id_str":"1119028080","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000661"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745570988032,"id_str":"663727745570988032","text":"RT @sweetroad7: \u3053\u308c\u98df\u3079\u305f\u3044\u4ebaRT https:\/\/t.co\/eta1j4KUBO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2527509811,"id_str":"2527509811","name":"\u3084 \u307e","screen_name":"kyohei199731","location":null,"url":null,"description":"\u6edd\u5ddd\u261e\u9ad8\u5357\u261e\u85e4\u5317\u5352\u696d \u2702\u5c71\u91ce\u7f8e\u5bb9\u5c02\u9580\u5b66\u6821 67\u671f 15\u7d44\u2702\ufe0f \u266aAAA \u897f\u5cf6\u9686\u5f18\u266a \u30c0\u30fc\u30c4","protected":false,"verified":false,"followers_count":307,"friends_count":366,"listed_count":0,"favourites_count":793,"statuses_count":2276,"created_at":"Tue May 27 13:41:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647828859983806465\/t9UaO0xK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647828859983806465\/t9UaO0xK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2527509811\/1442180409","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:28:37 +0000 2015","id":663347392641564672,"id_str":"663347392641564672","text":"\u3053\u308c\u98df\u3079\u305f\u3044\u4ebaRT https:\/\/t.co\/eta1j4KUBO","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2213664350,"id_str":"2213664350","name":"\u6975\u4e0a\u306e\u30b9\u30a4\u30fc\u30c4","screen_name":"sweetroad7","location":null,"url":null,"description":"\u5168\u56fd\u306e\u30b9\u30a4\u30fc\u30c4\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\uff01\u98df\u3079\u305f\u304f\u306a\u3063\u305f\u3089RT","protected":false,"verified":false,"followers_count":39243,"friends_count":319,"listed_count":158,"favourites_count":1,"statuses_count":2464,"created_at":"Mon Nov 25 06:49:31 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506715327682469888\/9BZgaQu3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506715327682469888\/9BZgaQu3_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2916,"favorite_count":3187,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":654246263223746560,"id_str":"654246263223746560","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"}]},"extended_entities":{"media":[{"id":654246263223746560,"id_str":"654246263223746560","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263244746754,"id_str":"654246263244746754","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpRUcAI7N7I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpRUcAI7N7I.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":719,"h":959,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263261544448,"id_str":"654246263261544448","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpVUwAAQF6l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpVUwAAQF6l.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263290880001,"id_str":"654246263290880001","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpcUYAEDTzX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpcUYAEDTzX.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sweetroad7","name":"\u6975\u4e0a\u306e\u30b9\u30a4\u30fc\u30c4","id":2213664350,"id_str":"2213664350","indices":[3,14]}],"symbols":[],"media":[{"id":654246263223746560,"id_str":"654246263223746560","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"}]},"extended_entities":{"media":[{"id":654246263223746560,"id_str":"654246263223746560","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpMUAAAYU0s.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263244746754,"id_str":"654246263244746754","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpRUcAI7N7I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpRUcAI7N7I.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":719,"h":959,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263261544448,"id_str":"654246263261544448","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpVUwAAQF6l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpVUwAAQF6l.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"},{"id":654246263290880001,"id_str":"654246263290880001","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CRRZgpcUYAEDTzX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRRZgpcUYAEDTzX.jpg","url":"https:\/\/t.co\/eta1j4KUBO","display_url":"pic.twitter.com\/eta1j4KUBO","expanded_url":"http:\/\/twitter.com\/sweetroad7\/status\/654246317779128320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":654246317779128320,"source_status_id_str":"654246317779128320","source_user_id":2213664350,"source_user_id_str":"2213664350"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000666"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745533263873,"id_str":"663727745533263873","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/MMuprdrmk0","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701845075,"id_str":"701845075","name":"yummmy rose :p","screen_name":"naomi_jr","location":"Notts","url":null,"description":"I'm a single mum ov 1 , I love a drink wi me girls, anything else you want to know just ask init","protected":false,"verified":false,"followers_count":19,"friends_count":18,"listed_count":0,"favourites_count":0,"statuses_count":818,"created_at":"Tue Jul 17 21:53:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2877943373\/7bc55fbb4039444c2ae512cb1642f8c1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2877943373\/7bc55fbb4039444c2ae512cb1642f8c1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MMuprdrmk0","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000657"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562644483,"id_str":"663727745562644483","text":"RT @ninokazurin: \u3053\u3093\u306a\u53ef\u611b\u304b\u3063\u305f\u3093\u3067\u3059\u4eca\u3082\u53ef\u611b\u3044\u3051\u3069 https:\/\/t.co\/sTixBLIi1R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2860546573,"id_str":"2860546573","name":"\u306b\u306e\u304b \u30b8\u30e3\u30dd\u304a\u7559\u5b88\u756a\u7d44","screen_name":"NY___pop","location":"japonism\u5f85\u6a5f\u7d44","url":null,"description":"\u4e8c\u5bae\u548c\u4e5f\u3068\u5c71\u7530\u6dbc\u4ecb\u304c\u30c0\u30a4\u30b9\u30ad\u306a\u9ad8\u68213\u5e74\u751f\u3002\n\u76f8\u65b9\u3055\u3093\u23e9\u3010 @3104___koo \u3011","protected":false,"verified":false,"followers_count":605,"friends_count":562,"listed_count":7,"favourites_count":3057,"statuses_count":7345,"created_at":"Fri Oct 17 14:38:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646141852630908928\/XunGu3UW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646141852630908928\/XunGu3UW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2860546573\/1443016706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:43:25 +0000 2015","id":663683306219638784,"id_str":"663683306219638784","text":"\u3053\u3093\u306a\u53ef\u611b\u304b\u3063\u305f\u3093\u3067\u3059\u4eca\u3082\u53ef\u611b\u3044\u3051\u3069 https:\/\/t.co\/sTixBLIi1R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1598186863,"id_str":"1598186863","name":"\u30ab\u30ba\u30b5\u30f3","screen_name":"ninokazurin","location":"\uff72\uff9d\uff7d\uff80\u3318 k_azusan_","url":null,"description":"\u5909\u9854\u3057\u3066\u3082\u300e\u304b\u308f\u3044\u3044\u300f\u97f3\u5916\u3057\u3066\u3082\u300e\u304b\u308f\u3044\u3044\u300f\u304a\u8179\u51fa\u3066\u3066\u3082\u300e\u304b\u308f\u3044\u3044\u300f\u592a\u3063\u3066\u3082\u300e\u304b\u308f\u3044\u3044\u300f\u304a\u3067\u3053\u306b\u30b7\u30ef\u3042\u3063\u3066\u3082\u300e\u304b\u308f\u3044\u3044\u300f\u305d\u3093\u306a\u3042\u306a\u305f\u306f\u300e\u672b\u671f\u300f","protected":false,"verified":false,"followers_count":5944,"friends_count":195,"listed_count":38,"favourites_count":1743,"statuses_count":19712,"created_at":"Tue Jul 16 11:15:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663655144937013248\/stgijK2F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663655144937013248\/stgijK2F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1598186863\/1444045080","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":808,"favorite_count":830,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663683293078908929,"id_str":"663683293078908929","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663683293078908929,"id_str":"663683293078908929","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663683293078917120,"id_str":"663683293078917120","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UkAA9bSH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UkAA9bSH.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663683293087268865,"id_str":"663683293087268865","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE_UAAEzl8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE_UAAEzl8d.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663683293104074752,"id_str":"663683293104074752","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcFDUcAASwYS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcFDUcAASwYS.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ninokazurin","name":"\u30ab\u30ba\u30b5\u30f3","id":1598186863,"id_str":"1598186863","indices":[3,15]}],"symbols":[],"media":[{"id":663683293078908929,"id_str":"663683293078908929","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663683306219638784,"source_status_id_str":"663683306219638784","source_user_id":1598186863,"source_user_id_str":"1598186863"}]},"extended_entities":{"media":[{"id":663683293078908929,"id_str":"663683293078908929","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UcAE5hjO.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663683306219638784,"source_status_id_str":"663683306219638784","source_user_id":1598186863,"source_user_id_str":"1598186863"},{"id":663683293078917120,"id_str":"663683293078917120","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE9UkAA9bSH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE9UkAA9bSH.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663683306219638784,"source_status_id_str":"663683306219638784","source_user_id":1598186863,"source_user_id_str":"1598186863"},{"id":663683293087268865,"id_str":"663683293087268865","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcE_UAAEzl8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcE_UAAEzl8d.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663683306219638784,"source_status_id_str":"663683306219638784","source_user_id":1598186863,"source_user_id_str":"1598186863"},{"id":663683293104074752,"id_str":"663683293104074752","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgcFDUcAASwYS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgcFDUcAASwYS.jpg","url":"https:\/\/t.co\/sTixBLIi1R","display_url":"pic.twitter.com\/sTixBLIi1R","expanded_url":"http:\/\/twitter.com\/ninokazurin\/status\/663683306219638784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663683306219638784,"source_status_id_str":"663683306219638784","source_user_id":1598186863,"source_user_id_str":"1598186863"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562599424,"id_str":"663727745562599424","text":"RT \u0e15\u0e32\u0e21\u0e17\u0e31\u0e01\u0e04\u0e23\u0e31\u0e1a \u0e1a\u0e2d\u0e17\u0e27\u0e34\u0e19\u0e40\u0e19\u0e2d\u0e23\u0e4c \u0e1a\u0e2d\u0e17\u0e44\u0e2d\u0e04\u0e48\u0e2d\u0e19 \u0e1a\u0e2d\u0e17\u0e01\u0e31\u0e0b \u0e23\u0e35\u0e2b\u0e19\u0e31\u0e01\u0e46555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091292750,"id_str":"4091292750","name":"\u0e28\u0e34\u0e17","screen_name":"Ssidno","location":"Hawaii, USA","url":"http:\/\/www.xn--4-wwfa7jge4a7h2dd.com","description":null,"protected":false,"verified":false,"followers_count":140,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":21,"created_at":"Sun Nov 01 13:58:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661572375381610497\/a0Y1wurf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661572375381610497\/a0Y1wurf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4091292750\/1446386573","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745554190336,"id_str":"663727745554190336","text":"It's dumping at @MammothMountain get up here,and hit the slopes!!\u2744\ufe0f\u2744\ufe0f\u2744\ufe0f\ud83c\udfbf\u26f7\u26c4\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425482611,"id_str":"425482611","name":"SMITTY","screen_name":"jefferysmith5","location":"Mammoth Lakes, CA","url":null,"description":"Living\/Loving life at 9000' in Mammoth Lakes,Ca!","protected":false,"verified":false,"followers_count":1792,"friends_count":2020,"listed_count":38,"favourites_count":8875,"statuses_count":52479,"created_at":"Thu Dec 01 02:08:11 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452796710\/DSC_0181.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452796710\/DSC_0181.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661220219721945088\/C68ysdJX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661220219721945088\/C68ysdJX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425482611\/1446446819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MammothMountain","name":"MammothMountain","id":18222861,"id_str":"18222861","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000662"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745541783552,"id_str":"663727745541783552","text":"RT @valeriafont: Carajo! https:\/\/t.co\/rPTpYgRuqz","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1858885386,"id_str":"1858885386","name":"Mar\u00eda Jos\u00e9","screen_name":"MajitoRCPP","location":null,"url":null,"description":"Se alcanza la felicidad de uno haciendo felices a los otros Argentina y orgullosa de serlo - Lic. en Historia y prof. de Geograf\u00eda","protected":false,"verified":false,"followers_count":2759,"friends_count":2242,"listed_count":19,"favourites_count":18099,"statuses_count":53797,"created_at":"Fri Sep 13 00:00:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603230203792482304\/WURXueF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603230203792482304\/WURXueF7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:22 +0000 2015","id":663724819326902274,"id_str":"663724819326902274","text":"Carajo! https:\/\/t.co\/rPTpYgRuqz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208698324,"id_str":"208698324","name":"#NoFueMagia \u270c","screen_name":"valeriafont","location":"Buenos Aires, Argentina","url":"http:\/\/www.facebook.com\/vfestampados","description":"Ag\u00edtese bien antes de usar. Leer el prospecto adjunto. Ante cualquier duda, consulte a su m\u00e9dico. \n\n\u2665 PC","protected":false,"verified":false,"followers_count":4480,"friends_count":4577,"listed_count":38,"favourites_count":4490,"statuses_count":29219,"created_at":"Wed Oct 27 19:24:08 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"986DE8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177514274\/pTFDt8UD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177514274\/pTFDt8UD.jpeg","profile_background_tile":true,"profile_link_color":"420C9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9A015C","profile_text_color":"E72F6F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654493824350294017\/IW4VdLtN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654493824350294017\/IW4VdLtN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208698324\/1445912393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724815954681856,"id_str":"663724815954681856","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","url":"https:\/\/t.co\/rPTpYgRuqz","display_url":"pic.twitter.com\/rPTpYgRuqz","expanded_url":"http:\/\/twitter.com\/valeriafont\/status\/663724819326902274\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724815954681856,"id_str":"663724815954681856","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","url":"https:\/\/t.co\/rPTpYgRuqz","display_url":"pic.twitter.com\/rPTpYgRuqz","expanded_url":"http:\/\/twitter.com\/valeriafont\/status\/663724819326902274\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"valeriafont","name":"#NoFueMagia \u270c","id":208698324,"id_str":"208698324","indices":[3,15]}],"symbols":[],"media":[{"id":663724815954681856,"id_str":"663724815954681856","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","url":"https:\/\/t.co\/rPTpYgRuqz","display_url":"pic.twitter.com\/rPTpYgRuqz","expanded_url":"http:\/\/twitter.com\/valeriafont\/status\/663724819326902274\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663724819326902274,"source_status_id_str":"663724819326902274","source_user_id":208698324,"source_user_id_str":"208698324"}]},"extended_entities":{"media":[{"id":663724815954681856,"id_str":"663724815954681856","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGNBuXIAA2nRy.jpg","url":"https:\/\/t.co\/rPTpYgRuqz","display_url":"pic.twitter.com\/rPTpYgRuqz","expanded_url":"http:\/\/twitter.com\/valeriafont\/status\/663724819326902274\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663724819326902274,"source_status_id_str":"663724819326902274","source_user_id":208698324,"source_user_id_str":"208698324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080000659"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745566818305,"id_str":"663727745566818305","text":"@chanichi_10 \u548c\u670d\u306b\u30d6\u30fc\u30c4\u3068\u304b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727104429719552,"in_reply_to_status_id_str":"663727104429719552","in_reply_to_user_id":3303515833,"in_reply_to_user_id_str":"3303515833","in_reply_to_screen_name":"chanichi_10","user":{"id":126537936,"id_str":"126537936","name":"\u308d\u308a\u305f\u5207\u56fd\u5e83","screen_name":"tokiugo","location":"\u9577\u8c37\u90e8\u3055\u3093\u306e\u8170","url":null,"description":"\u3078\u3057\u3055\u306b\u3092\u5dee\u3057\u51fa\u305b\u2026\u2026\u3002","protected":false,"verified":false,"followers_count":120,"friends_count":128,"listed_count":4,"favourites_count":1543,"statuses_count":14284,"created_at":"Fri Mar 26 05:25:08 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850302746\/17f83c5dba99f775f344f717943c8a6d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850302746\/17f83c5dba99f775f344f717943c8a6d.jpeg","profile_background_tile":false,"profile_link_color":"8A0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642727111321497600\/zv6IMjII_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642727111321497600\/zv6IMjII_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126537936\/1439911082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chanichi_10","name":"\u3061\u3083\u306b\u3061","id":3303515833,"id_str":"3303515833","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000665"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745571028993,"id_str":"663727745571028993","text":"@kuroyuuka \u6b63\u8ad6\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726095015940096,"in_reply_to_status_id_str":"663726095015940096","in_reply_to_user_id":172566150,"in_reply_to_user_id_str":"172566150","in_reply_to_screen_name":"kuroyuuka","user":{"id":2728106479,"id_str":"2728106479","name":"SC_\u305f\u3082\u3064\u3010\u3070\u3084s\u3011","screen_name":"Suaresu7","location":"\u81ea\u5ba4","url":null,"description":"52\u30ac\u30ed\u30f3\u4f7f\u3044\u3001\u3001\u3001\u6700\u9ad8\u30a6\u30c7\u30de\u30a8S+74\u3001\u3001\u3001 SC\u6240\u5c5e","protected":false,"verified":false,"followers_count":290,"friends_count":296,"listed_count":1,"favourites_count":2122,"statuses_count":3553,"created_at":"Wed Aug 13 01:21:14 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"33A0D6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623416854770421760\/zj5FOtF__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623416854770421760\/zj5FOtF__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2728106479\/1444664873","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuroyuuka","name":"\u771f\u3063\u9ed2\u3086\u3046\u304b","id":172566150,"id_str":"172566150","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000666"} +{"delete":{"status":{"id":659539527501934593,"id_str":"659539527501934593","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080000837"}} +{"delete":{"status":{"id":659539938543710208,"id_str":"659539938543710208","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080000830"}} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562644482,"id_str":"663727745562644482","text":"#\uc6b0\ub9ac\uce74\uc9c0\ub178\uc0ac\uc774\ud2b8\n\n \uc8fc\uc18c BAC72,COM\n\n\uac01\n\ub2f9\n\uc73c\n\uc600\n\ub2c8\n\uaed8\n\uadf8\n\uc5b4\n\ub538\n\ud558\n.\n\uac01\n\ub2f9\n\uc73c\n\uc600\n\ub2c8\n\uaed8\n\uadf8\n\uc5b4\n\ub538\n\ud558\n.\n\uac01\n\ub2f9\n\uc73c\n\uc600\n\ub2c8\n\uaed8\n\uadf8\n\uc5b4\n\ub538\n\ud558","source":"\u003ca href=\"http:\/\/newtwt.dothome.co.kr\/tweet01\" rel=\"nofollow\"\u003eexid163\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173860437,"id_str":"173860437","name":"jinbum2541","screen_name":"jinbum1111","location":"iphone:37.444680,126.701054","url":null,"description":"ABC??\uc5d0\uc11c\nABC!!!!!\ub85c","protected":false,"verified":false,"followers_count":26,"friends_count":29,"listed_count":0,"favourites_count":0,"statuses_count":20511,"created_at":"Mon Aug 02 14:59:20 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123642987\/jinbum1111_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123642987\/jinbum1111_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc6b0\ub9ac\uce74\uc9c0\ub178\uc0ac\uc774\ud2b8","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745533403136,"id_str":"663727745533403136","text":"Looking for a #Class #A CDL Truck Driver - Recent Graduates Tuition Reimbursement! #jobs https:\/\/t.co\/BcdyavE0DJ https:\/\/t.co\/jLTHloLO1O","source":"\u003ca href=\"http:\/\/neuvoo.ca\" rel=\"nofollow\"\u003eseed.mytweetsys.app.t00\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3271924645,"id_str":"3271924645","name":"Jobs Eugene","screen_name":"NeuvooEugene","location":"Eugene, Oregon","url":"http:\/\/neuvoo.com\/jobs\/?k=&l=Eugene%2C+Oregon&r=15","description":"Looking for a job in Eugene? Check out our website http:\/\/neuvoo.com\/jobs\/?k=&l=Eugene%2C+Oregon&r=15","protected":false,"verified":false,"followers_count":317,"friends_count":1359,"listed_count":76,"favourites_count":0,"statuses_count":8339,"created_at":"Wed Jul 08 12:52:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618764949523968000\/nvutnwLs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618764949523968000\/nvutnwLs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3271924645\/1436360035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Class","indices":[14,20]},{"text":"A","indices":[21,23]},{"text":"jobs","indices":[83,88]}],"urls":[{"url":"https:\/\/t.co\/BcdyavE0DJ","expanded_url":"http:\/\/neuvoo.com\/job.php?id=fapp2epag9&source=twitter&lang=EN&client_id=1466&l=Springfield%2C+Oregon%2C+US&k=Class+A+CDL+Truck+Driver+-+Recent+Graduates+Tuition+Reimbursement%21","display_url":"neuvoo.com\/job.php?id=fap\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727744472215552,"id_str":"663727744472215552","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3fTWcAAhwI8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3fTWcAAhwI8.png","url":"https:\/\/t.co\/jLTHloLO1O","display_url":"pic.twitter.com\/jLTHloLO1O","expanded_url":"http:\/\/twitter.com\/NeuvooEugene\/status\/663727745533403136\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":232,"resize":"fit"},"small":{"w":340,"h":140,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727744472215552,"id_str":"663727744472215552","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3fTWcAAhwI8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3fTWcAAhwI8.png","url":"https:\/\/t.co\/jLTHloLO1O","display_url":"pic.twitter.com\/jLTHloLO1O","expanded_url":"http:\/\/twitter.com\/NeuvooEugene\/status\/663727745533403136\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":232,"resize":"fit"},"small":{"w":340,"h":140,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000657"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562603524,"id_str":"663727745562603524","text":"\u0425\u043e\u0442\u044c \u0447\u0435\u043c-\u0442\u043e \u0433\u043e\u0440\u0436\u0443\u0441\u044c \u0441\u0432\u043e\u0435\u0439 \u0441\u0442\u0440\u0430\u043d\u043e\u0439 :) https:\/\/t.co\/CBD7yZGO1m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":738563144,"id_str":"738563144","name":"Bota","screen_name":"Botalyok","location":"Kazakhstan","url":"http:\/\/vk.com\/botalyok","description":null,"protected":false,"verified":false,"followers_count":71,"friends_count":21,"listed_count":3,"favourites_count":1879,"statuses_count":2745,"created_at":"Sun Aug 05 13:12:26 +0000 2012","utc_offset":21600,"time_zone":"Almaty","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450633291666685952\/Z-_3fuot.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450633291666685952\/Z-_3fuot.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E32820","profile_text_color":"843AA9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662263509657358336\/AYilyKjh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662263509657358336\/AYilyKjh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/738563144\/1442844152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6d73a696edc5306f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6d73a696edc5306f.json","place_type":"country","name":"Kazakhstan","full_name":"Kazakhstan","country_code":"KZ","country":"Kazakhstan","bounding_box":{"type":"Polygon","coordinates":[[[46.492543,40.936333],[46.492543,55.442572],[87.315213,55.442572],[87.315213,40.936333]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727731079643136,"id_str":"663727731079643136","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2taUAAAGPuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2taUAAAGPuH.jpg","url":"https:\/\/t.co\/CBD7yZGO1m","display_url":"pic.twitter.com\/CBD7yZGO1m","expanded_url":"http:\/\/twitter.com\/Botalyok\/status\/663727745562603524\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":367,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":121,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727731079643136,"id_str":"663727731079643136","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2taUAAAGPuH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2taUAAAGPuH.jpg","url":"https:\/\/t.co\/CBD7yZGO1m","display_url":"pic.twitter.com\/CBD7yZGO1m","expanded_url":"http:\/\/twitter.com\/Botalyok\/status\/663727745562603524\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":367,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":121,"resize":"fit"},"medium":{"w":600,"h":215,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745562636288,"id_str":"663727745562636288","text":"SEASON FOR CHRISTMAS...\u201cBIG SHOT TERRITORY\u201d from the album 'Scenic Records Presents Britney' https:\/\/t.co\/miRuj8SmCD https:\/\/t.co\/Yyodkg3elL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360837046,"id_str":"360837046","name":"Andre' Harris","screen_name":"AndreHarris4","location":"Baton Rouge, Louisiana","url":"http:\/\/www.pubnoise.net","description":"MUSIC GENRE: MIDLAND HOP","protected":false,"verified":false,"followers_count":607,"friends_count":2002,"listed_count":24,"favourites_count":14356,"statuses_count":106406,"created_at":"Tue Aug 23 20:59:17 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605764866901577729\/GgXzsFsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605764866901577729\/GgXzsFsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360837046\/1438888799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/miRuj8SmCD","expanded_url":"http:\/\/WWW.CDBABY.COM\/CD\/PUBNOISE3","display_url":"CDBABY.COM\/CD\/PUBNOISE3","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663727744530841600,"id_str":"663727744530841600","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3fhVAAAukgA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3fhVAAAukgA.jpg","url":"https:\/\/t.co\/Yyodkg3elL","display_url":"pic.twitter.com\/Yyodkg3elL","expanded_url":"http:\/\/twitter.com\/AndreHarris4\/status\/663727745562636288\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727744530841600,"id_str":"663727744530841600","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3fhVAAAukgA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3fhVAAAukgA.jpg","url":"https:\/\/t.co\/Yyodkg3elL","display_url":"pic.twitter.com\/Yyodkg3elL","expanded_url":"http:\/\/twitter.com\/AndreHarris4\/status\/663727745562636288\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000664"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745554255872,"id_str":"663727745554255872","text":"\u5bdd\u308b\u3068\u304b\u8a00\u3044\u3064\u3064\u5bdd\u306a\u3044\u3051\u3069\u96fb\u6ce2\u304a\u3064","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3134266512,"id_str":"3134266512","name":"\u307e\u308a\u3093\u4ed9\u4eba(111)\u306f\u65b0\u540d\u307e\u308a\u3082","screen_name":"marin124573","location":"\u9759\u5ca1\u770c\u306e\u30e1\u30a4\u30c8\u306b\u3044\u307e\u3059\u3067","url":"http:\/\/hibari.nana-music.com\/w\/profile\/794263\/","description":"\u30a4\u30ca\u30a4\u30ec\u3001\uff7c\uff9e\uff6c\uff86\uff70\uff7d\uff9e\u304c\u8d85\u5927\u597d\u304d\u306a\u661f\u7a7a\u51db(\u98ef\u7530\u91cc\u7a42)\u5712\u7530\u6d77\u672a\u3001\u68ee\u5712\u308f\u304b\u306a\u3001\u5185\u7530\u771f\u793c\u58f0\u771f\u4f3c\u4e3b\uff01\u3064\u3044\u30d7\u30ed\u27abhttp:\/\/twpf.jp\/marin124573 \u76f8\u65b9\u3010@otolemon\u3011\u30b5\u30d6\u57a2\u2192@marin_sabu_1245\u26a0\ufe0f\u2192\u8272\u3005\u3068\u79c1\u306f\u5927\u5909\u3067\u3054\u3056\u3044\u307e\u3059\u3002\u30ad\u30c1\u30ac\u30a4\u306a\u30c9\u30a8\u30e0\u3067\u3059\u3002\u306f\u3044\u3002\u63a8\u3057\u540d\u2192\u307e\u308a\u305f\u3093day","protected":false,"verified":false,"followers_count":521,"friends_count":389,"listed_count":16,"favourites_count":2095,"statuses_count":9886,"created_at":"Fri Apr 03 06:02:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662666041089101824\/HH2x8Hv7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662666041089101824\/HH2x8Hv7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3134266512\/1446631901","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080000662"} +{"created_at":"Mon Nov 09 14:40:00 +0000 2015","id":663727745537548293,"id_str":"663727745537548293","text":"LIFE Magazine February 22, 1937 Triton For St. Louis Cover ! https:\/\/t.co\/Z7dkTVcxy3 https:\/\/t.co\/po55GOp6Z4","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3150191355,"id_str":"3150191355","name":"extremely dazzle dea","screen_name":"rubinsocrates","location":null,"url":null,"description":"extremely dazzle deal","protected":false,"verified":false,"followers_count":63,"friends_count":0,"listed_count":32,"favourites_count":0,"statuses_count":92931,"created_at":"Thu Apr 09 04:13:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586020349126377472\/bAX5BlLp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586020349126377472\/bAX5BlLp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150191355\/1428553125","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z7dkTVcxy3","expanded_url":"http:\/\/united-states-tourist.info\/it\/si\/?query=371483326692","display_url":"united-states-tourist.info\/it\/si\/?query=3\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663727744962965506,"id_str":"663727744962965506","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3hIWsAIyXEe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3hIWsAIyXEe.jpg","url":"https:\/\/t.co\/po55GOp6Z4","display_url":"pic.twitter.com\/po55GOp6Z4","expanded_url":"http:\/\/twitter.com\/rubinsocrates\/status\/663727745537548293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":791,"resize":"fit"},"small":{"w":340,"h":448,"resize":"fit"},"large":{"w":758,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727744962965506,"id_str":"663727744962965506","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3hIWsAIyXEe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3hIWsAIyXEe.jpg","url":"https:\/\/t.co\/po55GOp6Z4","display_url":"pic.twitter.com\/po55GOp6Z4","expanded_url":"http:\/\/twitter.com\/rubinsocrates\/status\/663727745537548293\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":791,"resize":"fit"},"small":{"w":340,"h":448,"resize":"fit"},"large":{"w":758,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080000658"} +{"delete":{"status":{"id":658916224563331073,"id_str":"658916224563331073","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080001299"}} +{"delete":{"status":{"id":661426469357289472,"id_str":"661426469357289472","user_id":447501150,"user_id_str":"447501150"},"timestamp_ms":"1447080001467"}} +{"delete":{"status":{"id":663705763223769088,"id_str":"663705763223769088","user_id":629117715,"user_id_str":"629117715"},"timestamp_ms":"1447080001614"}} +{"delete":{"status":{"id":663719851874107392,"id_str":"663719851874107392","user_id":292794531,"user_id_str":"292794531"},"timestamp_ms":"1447080001665"}} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749736087557,"id_str":"663727749736087557","text":"RT @Henderson_INC: Clean Your Stinky Vagina! Lol \nhttps:\/\/t.co\/4GsSK95abJ\n#evonlatrail #trending\n\n@WomensHealthMag","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1015900338,"id_str":"1015900338","name":"reporter","screen_name":"reporter_radio","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":392,"friends_count":382,"listed_count":4,"favourites_count":1401,"statuses_count":2614,"created_at":"Sun Dec 16 19:27:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2983732044\/cb9e4b2028e75598ac18ede0dd2aa5b6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2983732044\/cb9e4b2028e75598ac18ede0dd2aa5b6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 01:55:33 +0000 2015","id":662448200486428672,"id_str":"662448200486428672","text":"Clean Your Stinky Vagina! Lol \nhttps:\/\/t.co\/4GsSK95abJ\n#evonlatrail #trending\n\n@WomensHealthMag","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662437997586051072,"in_reply_to_status_id_str":"662437997586051072","in_reply_to_user_id":25087685,"in_reply_to_user_id_str":"25087685","in_reply_to_screen_name":"WomensHealthMag","user":{"id":190399326,"id_str":"190399326","name":"Henderson's INC","screen_name":"Henderson_INC","location":"Florida","url":"http:\/\/facebook.com\/latrails.companions","description":null,"protected":false,"verified":false,"followers_count":246,"friends_count":161,"listed_count":2,"favourites_count":347,"statuses_count":1675,"created_at":"Mon Sep 13 21:20:59 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1123202420\/stethoscope_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1123202420\/stethoscope_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"evonlatrail","indices":[55,67]},{"text":"trending","indices":[68,77]}],"urls":[{"url":"https:\/\/t.co\/4GsSK95abJ","expanded_url":"http:\/\/youtu.be\/cQqAwSccP58","display_url":"youtu.be\/cQqAwSccP58","indices":[31,54]}],"user_mentions":[{"screen_name":"WomensHealthMag","name":"Women's Health","id":25087685,"id_str":"25087685","indices":[79,95]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"evonlatrail","indices":[74,86]},{"text":"trending","indices":[87,96]}],"urls":[{"url":"https:\/\/t.co\/4GsSK95abJ","expanded_url":"http:\/\/youtu.be\/cQqAwSccP58","display_url":"youtu.be\/cQqAwSccP58","indices":[50,73]}],"user_mentions":[{"screen_name":"Henderson_INC","name":"Henderson's INC","id":190399326,"id_str":"190399326","indices":[3,17]},{"screen_name":"WomensHealthMag","name":"Women's Health","id":25087685,"id_str":"25087685","indices":[98,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749736046593,"id_str":"663727749736046593","text":"RT @FANAN7NAN: \ud83d\udccc\u0628\u0627\u0644\u062a\u0648\u0641\u064a\u0642 \u0644\u0644\u0623\u062e\u0636\u0631\n\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\n\u0642\u0644\u0648\u0628\u0646\u0627 \u0645\u0639\u0643\u0645 \u0648\u0627\u0644\u0641\u0648\u0632 \u0641\u0627\u0644\u0643\u0645 \u0628\u0623\u0630\u0646 \u0627\u0644\u0644\u0647 !!\n\u061b\n#\u0645\u0644\u0648\u0643_\u0627\u0644\u0639\u0627\u0644\u0645\u064a \n#\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631 \n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646 https:\/\/t.co\/v8d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2486704687,"id_str":"2486704687","name":"\u0627\u062f\u0631\u064a\u0627\u0646 #\u0627\u0644\u0646\u0635\u0631","screen_name":"thamer_A12","location":"\u062c\u062f\u0647 ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u3000\u0623\u0645\u064a \u0627\u0646\u062a\u064a \u0627\u0644\u062d\u064a\u0627\u0647 \u0648\u0628\u0633\u0645\u0629 \u0647\u0627\u0644\u0639\u0645\u0631 \u2764","protected":false,"verified":false,"followers_count":2966,"friends_count":170,"listed_count":1,"favourites_count":692,"statuses_count":65590,"created_at":"Sat May 10 04:23:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662484107016994816\/TqUVKKJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662484107016994816\/TqUVKKJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2486704687\/1444579672","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:55:34 +0000 2015","id":663610866651262976,"id_str":"663610866651262976","text":"\ud83d\udccc\u0628\u0627\u0644\u062a\u0648\u0641\u064a\u0642 \u0644\u0644\u0623\u062e\u0636\u0631\n\ud83c\uddf8\ud83c\udde6\ud83c\uddf8\ud83c\udde6\n\u0642\u0644\u0648\u0628\u0646\u0627 \u0645\u0639\u0643\u0645 \u0648\u0627\u0644\u0641\u0648\u0632 \u0641\u0627\u0644\u0643\u0645 \u0628\u0623\u0630\u0646 \u0627\u0644\u0644\u0647 !!\n\u061b\n#\u0645\u0644\u0648\u0643_\u0627\u0644\u0639\u0627\u0644\u0645\u064a \n#\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631 \n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646 https:\/\/t.co\/v8dLns8D41","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333102238,"id_str":"333102238","name":"\u2b50\ufe0f\u0641\u064a\u0635\u0644\u2b50\ufe0f","screen_name":"FANAN7NAN","location":" \u0627\u0644\u0631\u064a\u0627\u0636","url":null,"description":"\u0627\u0644\u0646\u0635\u0631 \u0627\u0644\u0639\u0627\u0644\u0645\u064a ( \u0641\u0627\u0631\u0633 \u0646\u062c\u062f) #\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631","protected":false,"verified":false,"followers_count":34946,"friends_count":14142,"listed_count":15,"favourites_count":218,"statuses_count":91875,"created_at":"Mon Jul 11 00:16:17 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655078249584816129\/5TFsjjAb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655078249584816129\/5TFsjjAb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/333102238\/1445038854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":7,"entities":{"hashtags":[{"text":"\u0645\u0644\u0648\u0643_\u0627\u0644\u0639\u0627\u0644\u0645\u064a","indices":[62,75]},{"text":"\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631","indices":[77,89]},{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[91,107]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663610839635730432,"id_str":"663610839635730432","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","url":"https:\/\/t.co\/v8dLns8D41","display_url":"pic.twitter.com\/v8dLns8D41","expanded_url":"http:\/\/twitter.com\/FANAN7NAN\/status\/663610866651262976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663610839635730432,"id_str":"663610839635730432","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","url":"https:\/\/t.co\/v8dLns8D41","display_url":"pic.twitter.com\/v8dLns8D41","expanded_url":"http:\/\/twitter.com\/FANAN7NAN\/status\/663610866651262976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0644\u0648\u0643_\u0627\u0644\u0639\u0627\u0644\u0645\u064a","indices":[77,90]},{"text":"\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631","indices":[92,104]},{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[106,122]}],"urls":[],"user_mentions":[{"screen_name":"FANAN7NAN","name":"\u2b50\ufe0f\u0641\u064a\u0635\u0644\u2b50\ufe0f","id":333102238,"id_str":"333102238","indices":[3,13]}],"symbols":[],"media":[{"id":663610839635730432,"id_str":"663610839635730432","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","url":"https:\/\/t.co\/v8dLns8D41","display_url":"pic.twitter.com\/v8dLns8D41","expanded_url":"http:\/\/twitter.com\/FANAN7NAN\/status\/663610866651262976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"source_status_id":663610866651262976,"source_status_id_str":"663610866651262976","source_user_id":333102238,"source_user_id_str":"333102238"}]},"extended_entities":{"media":[{"id":663610839635730432,"id_str":"663610839635730432","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeiu2WIAApT9L.jpg","url":"https:\/\/t.co\/v8dLns8D41","display_url":"pic.twitter.com\/v8dLns8D41","expanded_url":"http:\/\/twitter.com\/FANAN7NAN\/status\/663610866651262976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"source_status_id":663610866651262976,"source_status_id_str":"663610866651262976","source_user_id":333102238,"source_user_id_str":"333102238"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731864576,"id_str":"663727749731864576","text":"RT @cristobalsoria: Y otra vez Julio CR7 Salinas desaparecido en los partidos importantes...jeje #NoPenaltyNoParty #NoEmpujarlaNoParty http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2426928387,"id_str":"2426928387","name":"Salvador Jara","screen_name":"9922Jara","location":null,"url":null,"description":"Instagram: salvadorjara","protected":false,"verified":false,"followers_count":126,"friends_count":163,"listed_count":0,"favourites_count":27,"statuses_count":12,"created_at":"Fri Mar 21 13:40:58 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662361218582192128\/Q3XV6rCl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662361218582192128\/Q3XV6rCl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2426928387\/1407788510","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:27:05 +0000 2015","id":663467801957527553,"id_str":"663467801957527553","text":"Y otra vez Julio CR7 Salinas desaparecido en los partidos importantes...jeje #NoPenaltyNoParty #NoEmpujarlaNoParty https:\/\/t.co\/vdjRVNE1rc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174339596,"id_str":"174339596","name":"Crist\u00f3bal Soria","screen_name":"cristobalsoria","location":"Sevilla","url":"http:\/\/facebook.com\/cristobalsoriaoficial","description":"Sevillista y Macareno por la gracia de Dios.Siempre me gust\u00f3 tirar balones al campo...En los ratos libres doy lecciones de f\u00fatbol en el Chiringuito y RadioMarca","protected":false,"verified":true,"followers_count":85799,"friends_count":243,"listed_count":489,"favourites_count":25729,"statuses_count":14127,"created_at":"Tue Aug 03 18:00:42 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000099907570\/6fff09fd92e72bca9544e9ac6526db5a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000099907570\/6fff09fd92e72bca9544e9ac6526db5a.png","profile_background_tile":false,"profile_link_color":"E6000F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1094965481\/11553_100492813310047_100000479858870_12021_8380035_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1094965481\/11553_100492813310047_100000479858870_12021_8380035_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174339596\/1382475689","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2294,"favorite_count":1603,"entities":{"hashtags":[{"text":"NoPenaltyNoParty","indices":[77,94]},{"text":"NoEmpujarlaNoParty","indices":[95,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663467785041879041,"id_str":"663467785041879041","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","url":"https:\/\/t.co\/vdjRVNE1rc","display_url":"pic.twitter.com\/vdjRVNE1rc","expanded_url":"http:\/\/twitter.com\/cristobalsoria\/status\/663467801957527553\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467785041879041,"id_str":"663467785041879041","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","url":"https:\/\/t.co\/vdjRVNE1rc","display_url":"pic.twitter.com\/vdjRVNE1rc","expanded_url":"http:\/\/twitter.com\/cristobalsoria\/status\/663467801957527553\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NoPenaltyNoParty","indices":[97,114]},{"text":"NoEmpujarlaNoParty","indices":[115,134]}],"urls":[],"user_mentions":[{"screen_name":"cristobalsoria","name":"Crist\u00f3bal Soria","id":174339596,"id_str":"174339596","indices":[3,18]}],"symbols":[],"media":[{"id":663467785041879041,"id_str":"663467785041879041","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","url":"https:\/\/t.co\/vdjRVNE1rc","display_url":"pic.twitter.com\/vdjRVNE1rc","expanded_url":"http:\/\/twitter.com\/cristobalsoria\/status\/663467801957527553\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663467801957527553,"source_status_id_str":"663467801957527553","source_user_id":174339596,"source_user_id_str":"174339596"}]},"extended_entities":{"media":[{"id":663467785041879041,"id_str":"663467785041879041","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcb29WIAEiPvf.jpg","url":"https:\/\/t.co\/vdjRVNE1rc","display_url":"pic.twitter.com\/vdjRVNE1rc","expanded_url":"http:\/\/twitter.com\/cristobalsoria\/status\/663467801957527553\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663467801957527553,"source_status_id_str":"663467801957527553","source_user_id":174339596,"source_user_id_str":"174339596"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765402624,"id_str":"663727749765402624","text":"RT @lazaroelmundo: Hoy cobra de nuevo actualidad el pedazo de tira de mis amigos Gallego y Rey https:\/\/t.co\/zZVuVtItu4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":249282607,"id_str":"249282607","name":"Manuel Azcona Garc\u00eda","screen_name":"manuazcona","location":"Pozuelo de Alarc\u00f3n, Madrid","url":null,"description":"Estudiante de Finanzas, Banca y Seguros en la UCM \/\/ OSHO","protected":false,"verified":false,"followers_count":246,"friends_count":215,"listed_count":1,"favourites_count":1232,"statuses_count":8834,"created_at":"Tue Feb 08 18:47:19 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526146513341530112\/WJh5-uoK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526146513341530112\/WJh5-uoK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249282607\/1393972583","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:58 +0000 2015","id":663708358516568064,"id_str":"663708358516568064","text":"Hoy cobra de nuevo actualidad el pedazo de tira de mis amigos Gallego y Rey https:\/\/t.co\/zZVuVtItu4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267717952,"id_str":"267717952","name":"fernando lazaro","screen_name":"lazaroelmundo","location":"un riojano en madrid","url":"http:\/\/quiosco.elmundo.orbyt.es\/","description":"periodista de EL MUNDO. Seguridad y terrorismo.","protected":false,"verified":false,"followers_count":11903,"friends_count":3376,"listed_count":438,"favourites_count":483,"statuses_count":16907,"created_at":"Thu Mar 17 12:20:39 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653988650850590720\/0-TR_M0e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653988650850590720\/0-TR_M0e_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":228,"favorite_count":99,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708357388345345,"id_str":"663708357388345345","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","url":"https:\/\/t.co\/zZVuVtItu4","display_url":"pic.twitter.com\/zZVuVtItu4","expanded_url":"http:\/\/twitter.com\/lazaroelmundo\/status\/663708358516568064\/photo\/1","type":"photo","sizes":{"small":{"w":317,"h":114,"resize":"fit"},"thumb":{"w":150,"h":114,"resize":"crop"},"large":{"w":317,"h":114,"resize":"fit"},"medium":{"w":317,"h":114,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708357388345345,"id_str":"663708357388345345","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","url":"https:\/\/t.co\/zZVuVtItu4","display_url":"pic.twitter.com\/zZVuVtItu4","expanded_url":"http:\/\/twitter.com\/lazaroelmundo\/status\/663708358516568064\/photo\/1","type":"photo","sizes":{"small":{"w":317,"h":114,"resize":"fit"},"thumb":{"w":150,"h":114,"resize":"crop"},"large":{"w":317,"h":114,"resize":"fit"},"medium":{"w":317,"h":114,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lazaroelmundo","name":"fernando lazaro","id":267717952,"id_str":"267717952","indices":[3,17]}],"symbols":[],"media":[{"id":663708357388345345,"id_str":"663708357388345345","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","url":"https:\/\/t.co\/zZVuVtItu4","display_url":"pic.twitter.com\/zZVuVtItu4","expanded_url":"http:\/\/twitter.com\/lazaroelmundo\/status\/663708358516568064\/photo\/1","type":"photo","sizes":{"small":{"w":317,"h":114,"resize":"fit"},"thumb":{"w":150,"h":114,"resize":"crop"},"large":{"w":317,"h":114,"resize":"fit"},"medium":{"w":317,"h":114,"resize":"fit"}},"source_status_id":663708358516568064,"source_status_id_str":"663708358516568064","source_user_id":267717952,"source_user_id_str":"267717952"}]},"extended_entities":{"media":[{"id":663708357388345345,"id_str":"663708357388345345","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3PAyXIAEvU7T.jpg","url":"https:\/\/t.co\/zZVuVtItu4","display_url":"pic.twitter.com\/zZVuVtItu4","expanded_url":"http:\/\/twitter.com\/lazaroelmundo\/status\/663708358516568064\/photo\/1","type":"photo","sizes":{"small":{"w":317,"h":114,"resize":"fit"},"thumb":{"w":150,"h":114,"resize":"crop"},"large":{"w":317,"h":114,"resize":"fit"},"medium":{"w":317,"h":114,"resize":"fit"}},"source_status_id":663708358516568064,"source_status_id_str":"663708358516568064","source_user_id":267717952,"source_user_id_str":"267717952"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727657984,"id_str":"663727749727657984","text":"\u041d\u0430 \u0441\u0430\u0439\u0442\u0435 \u0413\u0423 #\u041c\u0427\u0421 \u0420\u043e\u0441\u0441\u0438\u0438 #\u041d\u041e \u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u0435 #\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d \u0435\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u044b\u0439 #\u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u043d\u0430 10 \u043d\u043e\u044f\u0431\u0440\u044f 2015 \u0433. https:\/\/t.co\/DFNJ6ATg8O","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1948784814,"id_str":"1948784814","name":"\u041c\u0427\u0421 52 ","screen_name":"52mchsgov","location":"\u041d\u0438\u0436\u043d\u0438\u0439 \u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434","url":"http:\/\/www.52.mchs.gov.ru\/","description":null,"protected":false,"verified":false,"followers_count":351,"friends_count":96,"listed_count":2,"favourites_count":3,"statuses_count":9730,"created_at":"Wed Oct 09 07:36:23 +0000 2013","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458848094755356673\/MxuW8cVo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458848094755356673\/MxuW8cVo.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458844584030638080\/Xgs0hB38_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458844584030638080\/Xgs0hB38_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1948784814\/1398232009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u041c\u0427\u0421","indices":[12,16]},{"text":"\u041d\u041e","indices":[24,27]},{"text":"\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f_\u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f","indices":[38,61]},{"text":"\u043f\u0440\u043e\u0433\u043d\u043e\u0437","indices":[83,91]}],"urls":[{"url":"https:\/\/t.co\/DFNJ6ATg8O","expanded_url":"http:\/\/52.mchs.gov.ru\/operationalpage\/dailyforecast\/item\/3233512\/","display_url":"52.mchs.gov.ru\/operationalpag\u2026","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765406720,"id_str":"663727749765406720","text":"RT @kpopcummies: Jungkook tastes gummybears and premature ejaculation","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308705237,"id_str":"3308705237","name":"tae's cupcake","screen_name":"vktaehyungs","location":"the void","url":"http:\/\/minhoopla.tumblr.com\/","description":"im so far into bts hell || he or they || my life dream is to party hard with bangtan || im also @btscuteimagines || im also venus's cupcake","protected":false,"verified":false,"followers_count":217,"friends_count":149,"listed_count":1,"favourites_count":40897,"statuses_count":16670,"created_at":"Thu Jun 04 22:39:55 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607439971750920192\/u7NcG7s-.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607439971750920192\/u7NcG7s-.png","profile_background_tile":true,"profile_link_color":"98FF98","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660704395303088128\/z_h12hz5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660704395303088128\/z_h12hz5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308705237\/1446359237","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 19:26:21 +0000 2015","id":662350256693223424,"id_str":"662350256693223424","text":"Jungkook tastes gummybears and premature ejaculation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4049168127,"id_str":"4049168127","name":"\ufe0f\ufe0f","screen_name":"kpopcummies","location":null,"url":null,"description":"ever wondered how ur bias tastes?","protected":false,"verified":false,"followers_count":25,"friends_count":2,"listed_count":1,"favourites_count":6,"statuses_count":29,"created_at":"Mon Oct 26 22:34:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659125628634058752\/_tLulBFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659125628634058752\/_tLulBFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4049168127\/1445982137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kpopcummies","name":"\ufe0f\ufe0f","id":4049168127,"id_str":"4049168127","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731713025,"id_str":"663727749731713025","text":"RT @yaba_doga: \u304b\u3063\u3053\u3044\u3044\u26be\u2728www\n\nhttps:\/\/t.co\/GaihOROTfB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2456565576,"id_str":"2456565576","name":"Riku.s","screen_name":"base0612","location":null,"url":null,"description":"\u4e2d\u548c\u7530\u2192\u702c\u8c3716HR\u219226HR\u219231HR \u300c\u76ee\u6a19\u306f\u9054\u6210\u3059\u308b\u305f\u3081\u306b\u3042\u308b\uff01\u300d","protected":false,"verified":false,"followers_count":153,"friends_count":156,"listed_count":0,"favourites_count":210,"statuses_count":310,"created_at":"Mon Apr 21 12:58:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483663895811219456\/0NlbloBJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483663895811219456\/0NlbloBJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2456565576\/1443238145","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:51:33 +0000 2015","id":663655155284377600,"id_str":"663655155284377600","text":"\u304b\u3063\u3053\u3044\u3044\u26be\u2728www\n\nhttps:\/\/t.co\/GaihOROTfB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3200000465,"id_str":"3200000465","name":"\u30e4\u30d0\u4eba\u52d5\u753b","screen_name":"yaba_doga","location":"yabadoga.info@gmail.com","url":null,"description":"\u65ec\u306a\u8a71\u984c\u3001\u6d41\u884c\u4e2d\u306e\u30e4\u30d0\u4eba\u52d5\u753b\u3092\u3069\u3053\u3088\u308a\u3082\u65e9\u304f\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u203bTwitter\u3092\u898f\u7d04\u901a\u308a\u306b\u884c\u3044\u52d5\u753b\u3092\u5171\u6709\u3057\u307e\u3059\u3002\u30e4\u30d0\u4eba\u753b\u50cf \u2192 \u3010@yaba_gazo\u3011","protected":false,"verified":false,"followers_count":307129,"friends_count":934,"listed_count":272,"favourites_count":0,"statuses_count":884,"created_at":"Fri Apr 24 05:34:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607148125627641856\/EKFLArUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607148125627641856\/EKFLArUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3200000465\/1433591209","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4701,"favorite_count":5875,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GaihOROTfB","expanded_url":"https:\/\/amp.twimg.com\/v\/e7427843-40bd-4ac7-9936-8229a7c157bf","display_url":"amp.twimg.com\/v\/e7427843-40b\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GaihOROTfB","expanded_url":"https:\/\/amp.twimg.com\/v\/e7427843-40bd-4ac7-9936-8229a7c157bf","display_url":"amp.twimg.com\/v\/e7427843-40b\u2026","indices":[27,50]}],"user_mentions":[{"screen_name":"yaba_doga","name":"\u30e4\u30d0\u4eba\u52d5\u753b","id":3200000465,"id_str":"3200000465","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761212416,"id_str":"663727749761212416","text":"@Xbox is a joke..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":24742040,"in_reply_to_user_id_str":"24742040","in_reply_to_screen_name":"Xbox","user":{"id":422172770,"id_str":"422172770","name":"Bigen","screen_name":"JoshMoore_6","location":null,"url":null,"description":"Chances are i'm a better person than you'll ever be! \n\n#LeBronJames #Cardinals #Titans #Vols #Duke","protected":false,"verified":false,"followers_count":227,"friends_count":552,"listed_count":5,"favourites_count":4530,"statuses_count":6314,"created_at":"Sat Nov 26 22:31:49 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552919841170915328\/oqTNDBqj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552919841170915328\/oqTNDBqj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422172770\/1351995716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5635c19c2b5078d1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5635c19c2b5078d1.json","place_type":"admin","name":"Virginia","full_name":"Virginia, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-83.675290,36.540739],[-83.675290,39.466012],[-75.166440,39.466012],[-75.166440,36.540739]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Xbox","name":"Xbox","id":24742040,"id_str":"24742040","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001665"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765328896,"id_str":"663727749765328896","text":"RT @Gyuxian_88: @gyuhywn @Istepifany @wendays94 iuee mantep yunn,jadi pen remes\/?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2286400190,"id_str":"2286400190","name":"\u03ba\u03c5y\u03c5\u0438","screen_name":"gyuhywn","location":null,"url":null,"description":"Error 404 Not Found","protected":false,"verified":false,"followers_count":4928,"friends_count":4533,"listed_count":10,"favourites_count":409,"statuses_count":59351,"created_at":"Sat Jan 11 10:06:11 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663666333465186304\/i9OtJDu__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663666333465186304\/i9OtJDu__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2286400190\/1446453603","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:03 +0000 2015","id":663726245440413697,"id_str":"663726245440413697","text":"@gyuhywn @Istepifany @wendays94 iuee mantep yunn,jadi pen remes\/?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725852673208320,"in_reply_to_status_id_str":"663725852673208320","in_reply_to_user_id":2286400190,"in_reply_to_user_id_str":"2286400190","in_reply_to_screen_name":"gyuhywn","user":{"id":3220192578,"id_str":"3220192578","name":"Chogyu","screen_name":"Gyuxian_88","location":"Kyusung w\/ Kaye","url":"http:\/\/Twitter.com\/Gaemgyu","description":"Super Junior Magnae Gyu #SJSquad #SJUnited #KRYsquad #SMOFC #Kyuline","protected":false,"verified":false,"followers_count":694,"friends_count":662,"listed_count":3,"favourites_count":575,"statuses_count":28220,"created_at":"Tue May 19 10:48:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661190313914970112\/F_0CAy2C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661190313914970112\/F_0CAy2C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220192578\/1446558208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gyuhywn","name":"\u03ba\u03c5y\u03c5\u0438","id":2286400190,"id_str":"2286400190","indices":[0,8]},{"screen_name":"Istepifany","name":"Eppit","id":1044666666,"id_str":"1044666666","indices":[9,20]},{"screen_name":"wendays94","name":"Wendy","id":1501467510,"id_str":"1501467510","indices":[21,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gyuxian_88","name":"Chogyu","id":3220192578,"id_str":"3220192578","indices":[3,14]},{"screen_name":"gyuhywn","name":"\u03ba\u03c5y\u03c5\u0438","id":2286400190,"id_str":"2286400190","indices":[16,24]},{"screen_name":"Istepifany","name":"Eppit","id":1044666666,"id_str":"1044666666","indices":[25,36]},{"screen_name":"wendays94","name":"Wendy","id":1501467510,"id_str":"1501467510","indices":[37,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752721408,"id_str":"663727749752721408","text":"Ciink , bakat nyebak ulian kene gen .. saaaat","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4169240474,"id_str":"4169240474","name":"chintya poetri","screen_name":"chintyapoetrii","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Sun Nov 08 14:57:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663370206111117312\/0ti4HJ-Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663370206111117312\/0ti4HJ-Q_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749756903424,"id_str":"663727749756903424","text":"RT @bubblegems17: Still my fave scene\ud83d\ude0d\ud83d\udc97\ud83d\ude2d THE 'DI KO MASABI SAYO' SCENE KSKDBBAA\ud83d\ude2d @sam_concepcion @devonseron17 \ud83d\udc97 #Angelito https:\/\/t.co\/FVY\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2295969487,"id_str":"2295969487","name":"BooBearLouis ","screen_name":"angilynnoval","location":"sa puso nila Elijah at Sage","url":null,"description":"Live life to the fullest.\r\n\r\nLIVE, LOVE and LAUGH\n\nMultifandom","protected":false,"verified":false,"followers_count":224,"friends_count":135,"listed_count":5,"favourites_count":12320,"statuses_count":34688,"created_at":"Fri Jan 17 11:29:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500327323049029632\/B8dbj3lB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500327323049029632\/B8dbj3lB.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631107375835951104\/G_Mypi-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631107375835951104\/G_Mypi-v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2295969487\/1430656008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727014541570049,"id_str":"663727014541570049","text":"Still my fave scene\ud83d\ude0d\ud83d\udc97\ud83d\ude2d THE 'DI KO MASABI SAYO' SCENE KSKDBBAA\ud83d\ude2d @sam_concepcion @devonseron17 \ud83d\udc97 #Angelito https:\/\/t.co\/FVYHkTHPqW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":315083539,"id_str":"315083539","name":"\u2764 Eeeeebeeee \u2764","screen_name":"bubblegems17","location":null,"url":null,"description":"101% fangirl |","protected":false,"verified":false,"followers_count":1259,"friends_count":727,"listed_count":5,"favourites_count":29809,"statuses_count":56715,"created_at":"Sat Jun 11 08:25:02 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598034747789447168\/sbRfTfsn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598034747789447168\/sbRfTfsn.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660633303687434240\/hajSlp1w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660633303687434240\/hajSlp1w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/315083539\/1443197232","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Angelito","indices":[95,104]}],"urls":[],"user_mentions":[{"screen_name":"sam_concepcion","name":"Sam Concepcion","id":15749825,"id_str":"15749825","indices":[63,78]},{"screen_name":"devonseron17","name":"Devon Seron","id":487601067,"id_str":"487601067","indices":[79,92]}],"symbols":[],"media":[{"id":663726908908023809,"id_str":"663726908908023809","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726908908023809,"id_str":"663726908908023809","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663726961563271168,"id_str":"663726961563271168","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ6vUAAAINi9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ6vUAAAINi9.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663726985567277056,"id_str":"663726985567277056","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILUKUEAAuQRX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILUKUEAAuQRX.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727002034135041,"id_str":"663727002034135041","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIMRgUYAEIhfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIMRgUYAEIhfZ.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Angelito","indices":[113,122]}],"urls":[],"user_mentions":[{"screen_name":"bubblegems17","name":"\u2764 Eeeeebeeee \u2764","id":315083539,"id_str":"315083539","indices":[3,16]},{"screen_name":"sam_concepcion","name":"Sam Concepcion","id":15749825,"id_str":"15749825","indices":[81,96]},{"screen_name":"devonseron17","name":"Devon Seron","id":487601067,"id_str":"487601067","indices":[97,110]}],"symbols":[],"media":[{"id":663726908908023809,"id_str":"663726908908023809","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727014541570049,"source_status_id_str":"663727014541570049","source_user_id":315083539,"source_user_id_str":"315083539"}]},"extended_entities":{"media":[{"id":663726908908023809,"id_str":"663726908908023809","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIG2lUsAENMTs.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727014541570049,"source_status_id_str":"663727014541570049","source_user_id":315083539,"source_user_id_str":"315083539"},{"id":663726961563271168,"id_str":"663726961563271168","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ6vUAAAINi9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ6vUAAAINi9.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727014541570049,"source_status_id_str":"663727014541570049","source_user_id":315083539,"source_user_id_str":"315083539"},{"id":663726985567277056,"id_str":"663726985567277056","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYILUKUEAAuQRX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYILUKUEAAuQRX.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727014541570049,"source_status_id_str":"663727014541570049","source_user_id":315083539,"source_user_id_str":"315083539"},{"id":663727002034135041,"id_str":"663727002034135041","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIMRgUYAEIhfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIMRgUYAEIhfZ.jpg","url":"https:\/\/t.co\/FVYHkTHPqW","display_url":"pic.twitter.com\/FVYHkTHPqW","expanded_url":"http:\/\/twitter.com\/bubblegems17\/status\/663727014541570049\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727014541570049,"source_status_id_str":"663727014541570049","source_user_id":315083539,"source_user_id_str":"315083539"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749740150784,"id_str":"663727749740150784","text":"\u6642\u304a\u308a\u3042\u307b\u306a\u8868\u60c5(\u2190\u3047)\u3092\u3084\u3081\u3066\u512a\u3057\u304f\u5fae\u7b11\u3080\u611f\u3058\u304c\u3088\u3044\u3002\n\u7d14\u7c8b\u3002\u512a\u3057\u3044\u3002\u5929\u4f7f\u3002\n\n\u307e\u3063\u3066\u3001\u6700\u8fd1\u4ffa\u512a\u3057\u3044\u30ad\u30e3\u30e9\u3070\u3063\u304b\u308a\u597d\u304d\u306b\u306a\u3063\u3066\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2849995184,"id_str":"2849995184","name":"\u3042\u307e\u3060\u308c\u300c\u3070\u3084\u3057\u300d","screen_name":"you0318801","location":"\u8ff7\u5b50\u306a\u3046\u3002","url":null,"description":null,"protected":false,"verified":false,"followers_count":117,"friends_count":134,"listed_count":2,"favourites_count":3667,"statuses_count":2849,"created_at":"Fri Oct 10 09:07:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660650621406580736\/h6YECALF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660650621406580736\/h6YECALF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2849995184\/1417874492","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001660"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752823808,"id_str":"663727749752823808","text":"RT @1TattedWeedHead: #MuzikkZone\n\u2533\u2533\u256e\u256d\u256e\u2533\u256e\u2513\u2533\u256e\u256d\u256e\u2513\u250f\n\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2523\u252b\u2570\u252b\n\u251b\u251b\u251b\u2570\u256f\u253b\u2570\u251b\u253b\u256f\u251b\u251b\u2570\u256fS\/\ud83c\udd7e \ud83d\udc49 @Trans1110 \u2615\ud83c\udf69 #GoodMorning","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132688534,"id_str":"132688534","name":"Libertad!!!","screen_name":"marumachado","location":null,"url":null,"description":"Sue\u00f1o con una Venezuela LIBRE! Llena d oportunidades! llena d afectos y talentos! Sue\u00f1o con una Venezuela dond cumpla mis sue\u00f1os pendientes y siembre muchos mas","protected":false,"verified":false,"followers_count":866,"friends_count":506,"listed_count":19,"favourites_count":42,"statuses_count":16114,"created_at":"Tue Apr 13 22:51:52 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442552401007226880\/2CjBk2hK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442552401007226880\/2CjBk2hK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132688534\/1414283007","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:58:46 +0000 2015","id":663702269205094400,"id_str":"663702269205094400","text":"#MuzikkZone\n\u2533\u2533\u256e\u256d\u256e\u2533\u256e\u2513\u2533\u256e\u256d\u256e\u2513\u250f\n\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2503\u2523\u252b\u2570\u252b\n\u251b\u251b\u251b\u2570\u256f\u253b\u2570\u251b\u253b\u256f\u251b\u251b\u2570\u256fS\/\ud83c\udd7e \ud83d\udc49 @Trans1110 \u2615\ud83c\udf69 #GoodMorning","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":450894908,"id_str":"450894908","name":"@Bdestinys 2nd acct","screen_name":"1TattedWeedHead","location":"#757","url":null,"description":"My main acct: @bdestinys | #MuzikkZone \u23e9@MREESE06 @Sammi_Gemini @Pretty_Patron @Asia_0916 @AlisonDonnelly1 @thecinemafan @Princess3rina |","protected":false,"verified":false,"followers_count":22612,"friends_count":11824,"listed_count":193,"favourites_count":81,"statuses_count":85488,"created_at":"Fri Dec 30 19:56:30 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653107328150077440\/0Dl8VHB4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653107328150077440\/0Dl8VHB4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/450894908\/1366338259","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"MuzikkZone","indices":[0,11]},{"text":"GoodMorning","indices":[77,89]}],"urls":[],"user_mentions":[{"screen_name":"Trans1110","name":"#TeamWarchyld 366K\u2728","id":437691294,"id_str":"437691294","indices":[62,72]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MuzikkZone","indices":[21,32]},{"text":"GoodMorning","indices":[98,110]}],"urls":[],"user_mentions":[{"screen_name":"1TattedWeedHead","name":"@Bdestinys 2nd acct","id":450894908,"id_str":"450894908","indices":[3,19]},{"screen_name":"Trans1110","name":"#TeamWarchyld 366K\u2728","id":437691294,"id_str":"437691294","indices":[83,93]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749735907328,"id_str":"663727749735907328","text":"#NowPlaying Avicii & Nicky Romero - I Could Be the One (Nicktim Radio Edit) #radioapa (21:40pm)","source":"\u003ca href=\"http:\/\/www.radioapa.com\" rel=\"nofollow\"\u003eradioapa 3.0\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3981662952,"id_str":"3981662952","name":"radioapa[dot]com","screen_name":"radio_apa","location":"Indonesia","url":"http:\/\/www.radioapa.com","description":"Radio Online Terbaik Di Indonesia \n - \nsend your music to admin[at]radioapa[dot]com","protected":false,"verified":false,"followers_count":58,"friends_count":157,"listed_count":2,"favourites_count":6,"statuses_count":2556,"created_at":"Thu Oct 22 16:03:56 +0000 2015","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660003947323650048\/bre53sAK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660003947323650048\/bre53sAK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981662952\/1445936990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NowPlaying","indices":[0,11]},{"text":"radioapa","indices":[81,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749757083648,"id_str":"663727749757083648","text":"RT @palavrasdela: Perde tempo n\u00e3o, n\u00e3o deixa o orgulho falar mais alto do que a sua vontade de chamar pra conversar... \ud83d\udcf1\ud83d\udc8c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810294562,"id_str":"2810294562","name":"Giovana M.Albarenque","screen_name":"Giovana_Maciel_","location":null,"url":null,"description":"\u201cSe o amor que eu sinto por voc\u00ea for um sonho... Quero dormir para sempre\u201d.","protected":false,"verified":false,"followers_count":153,"friends_count":277,"listed_count":0,"favourites_count":265,"statuses_count":3037,"created_at":"Mon Sep 15 00:01:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661286648202833920\/Y3EwvCwY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661286648202833920\/Y3EwvCwY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2810294562\/1445611617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:10:35 +0000 2015","id":663539146015813632,"id_str":"663539146015813632","text":"Perde tempo n\u00e3o, n\u00e3o deixa o orgulho falar mais alto do que a sua vontade de chamar pra conversar... \ud83d\udcf1\ud83d\udc8c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316155327,"id_str":"3316155327","name":"Palavras dela","screen_name":"palavrasdela","location":"S\u00e3o Paulo ","url":null,"description":"Independente de quem estiver com voc\u00ea, n\u00e3o mude o seu jeito por causa dos outros.","protected":false,"verified":false,"followers_count":22465,"friends_count":16777,"listed_count":4,"favourites_count":666,"statuses_count":2050,"created_at":"Tue Jun 09 23:27:45 +0000 2015","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663359863414763520\/_fP6j3a6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663359863414763520\/_fP6j3a6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316155327\/1447005621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"palavrasdela","name":"Palavras dela","id":3316155327,"id_str":"3316155327","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731864577,"id_str":"663727749731864577","text":"Minha cara ta inchada at\u00e9 agora","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652974790,"id_str":"1652974790","name":"Mariane","screen_name":"marianeqn","location":"Uberl\u00e2ndia, Minas Gerais","url":null,"description":null,"protected":false,"verified":false,"followers_count":282,"friends_count":282,"listed_count":0,"favourites_count":198,"statuses_count":8887,"created_at":"Wed Aug 07 13:37:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"990094","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639266761184051200\/1Ld1q3sl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639266761184051200\/1Ld1q3sl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652974790\/1409787856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749736067072,"id_str":"663727749736067072","text":"240 llamadas al d\u00eda en vuestra gran Espa\u00f1a de mujeres que denuncian maltrato. \u00bf@vox_es no son muchas para que la violencia no tenga g\u00e9nero?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":509172345,"id_str":"509172345","name":"Bel\u00e9n Lynx \u2640","screen_name":"Belenchans","location":"Andaluc\u00eda a comp\u00e1s de un 3x4","url":null,"description":"They're talking about a revolution and it sounds like a whisper...\nA veces escribo en @syntagma_es .\nActivista en @ahorapodemos .","protected":false,"verified":false,"followers_count":1331,"friends_count":331,"listed_count":15,"favourites_count":13548,"statuses_count":28299,"created_at":"Wed Feb 29 20:05:11 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597006895887429632\/ADCdqJcP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597006895887429632\/ADCdqJcP.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662063874024214528\/mHMlcuwX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662063874024214528\/mHMlcuwX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/509172345\/1447005554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vox_es","name":"VOX","id":2201623465,"id_str":"2201623465","indices":[79,86]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749757075456,"id_str":"663727749757075456","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/vSuPu6SKxr","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4086177106,"id_str":"4086177106","name":"LizQuenFan","screen_name":"LizQuenFanney","location":null,"url":null,"description":"Follow @lizasoberano \u2764\ufe0f @itsenriquegil #TeamForever","protected":false,"verified":false,"followers_count":8,"friends_count":36,"listed_count":1,"favourites_count":70,"statuses_count":19978,"created_at":"Sun Nov 01 00:09:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660613649476767744\/fekGir1O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660613649476767744\/fekGir1O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4086177106\/1446337681","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727603015098368,"quoted_status_id_str":"663727603015098368","quoted_status":{"created_at":"Mon Nov 09 14:39:26 +0000 2015","id":663727603015098368,"id_str":"663727603015098368","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/NPzp0RK7D4","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727290656890880,"quoted_status_id_str":"663727290656890880","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/NPzp0RK7D4","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727290656890880","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/vSuPu6SKxr","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727603015098368","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752864769,"id_str":"663727749752864769","text":"RT @filmfare: Awesome foursome, @iamsrk, @KajolAtUN, @kritisanon & @Varun_dvn pose for the shutterbugs at the red carpet. https:\/\/t.co\/qelS\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136691445,"id_str":"136691445","name":"Priyanka.B","screen_name":"priyanka1225","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":268,"listed_count":1,"favourites_count":344,"statuses_count":2553,"created_at":"Sat Apr 24 16:47:18 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656536561799069696\/ilt1dzOB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656536561799069696\/ilt1dzOB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136691445\/1421258838","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:18 +0000 2015","id":663720271715565568,"id_str":"663720271715565568","text":"Awesome foursome, @iamsrk, @KajolAtUN, @kritisanon & @Varun_dvn pose for the shutterbugs at the red carpet. https:\/\/t.co\/qelSnGZJCX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35695228,"id_str":"35695228","name":"Filmfare","screen_name":"filmfare","location":"India","url":"http:\/\/www.filmfare.com","description":"India's no.1 lifestyle and entertainment magazine and your daily dose of films and fashion.","protected":false,"verified":true,"followers_count":1954412,"friends_count":245,"listed_count":2392,"favourites_count":76,"statuses_count":28428,"created_at":"Mon Apr 27 07:29:41 +0000 2009","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661434690016927744\/jCqLFIaB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661434690016927744\/jCqLFIaB.jpg","profile_background_tile":true,"profile_link_color":"0619C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661436498550484992\/S11lR6HS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661436498550484992\/S11lR6HS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35695228\/1360667896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":224,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[18,25]},{"screen_name":"KajolAtUN","name":"Kajol","id":2805358944,"id_str":"2805358944","indices":[27,37]},{"screen_name":"kritisanon","name":"Kriti Sanon","id":137017726,"id_str":"137017726","indices":[39,50]},{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[57,67]}],"symbols":[],"media":[{"id":663720175082999808,"id_str":"663720175082999808","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","url":"https:\/\/t.co\/qelSnGZJCX","display_url":"pic.twitter.com\/qelSnGZJCX","expanded_url":"http:\/\/twitter.com\/filmfare\/status\/663720271715565568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":745,"resize":"fit"},"large":{"w":639,"h":794,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720175082999808,"id_str":"663720175082999808","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","url":"https:\/\/t.co\/qelSnGZJCX","display_url":"pic.twitter.com\/qelSnGZJCX","expanded_url":"http:\/\/twitter.com\/filmfare\/status\/663720271715565568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":745,"resize":"fit"},"large":{"w":639,"h":794,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"filmfare","name":"Filmfare","id":35695228,"id_str":"35695228","indices":[3,12]},{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[32,39]},{"screen_name":"KajolAtUN","name":"Kajol","id":2805358944,"id_str":"2805358944","indices":[41,51]},{"screen_name":"kritisanon","name":"Kriti Sanon","id":137017726,"id_str":"137017726","indices":[53,64]},{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[71,81]}],"symbols":[],"media":[{"id":663720175082999808,"id_str":"663720175082999808","indices":[126,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","url":"https:\/\/t.co\/qelSnGZJCX","display_url":"pic.twitter.com\/qelSnGZJCX","expanded_url":"http:\/\/twitter.com\/filmfare\/status\/663720271715565568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":745,"resize":"fit"},"large":{"w":639,"h":794,"resize":"fit"}},"source_status_id":663720271715565568,"source_status_id_str":"663720271715565568","source_user_id":35695228,"source_user_id_str":"35695228"}]},"extended_entities":{"media":[{"id":663720175082999808,"id_str":"663720175082999808","indices":[126,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB-5IVEAAhuYv.jpg","url":"https:\/\/t.co\/qelSnGZJCX","display_url":"pic.twitter.com\/qelSnGZJCX","expanded_url":"http:\/\/twitter.com\/filmfare\/status\/663720271715565568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":745,"resize":"fit"},"large":{"w":639,"h":794,"resize":"fit"}},"source_status_id":663720271715565568,"source_status_id_str":"663720271715565568","source_user_id":35695228,"source_user_id_str":"35695228"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749744467968,"id_str":"663727749744467968","text":"N\u00e3o sei o que fazer , que terr\u00edvel isso","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357807808,"id_str":"357807808","name":"Caroll Balsan","screen_name":"CarolBalsan","location":null,"url":null,"description":"' Nada \u00e9 em v\u00e3o '","protected":false,"verified":false,"followers_count":564,"friends_count":279,"listed_count":0,"favourites_count":2470,"statuses_count":9474,"created_at":"Thu Aug 18 23:03:15 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580077445388210176\/ven_ekBO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580077445388210176\/ven_ekBO.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661696264153755649\/ATG9uBl0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661696264153755649\/ATG9uBl0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357807808\/1440473124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080001661"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731909632,"id_str":"663727749731909632","text":"RT @humoristaruim: minha m\u00e3e me dando presente\n\nesse presente vale pro natal, dia das crian\u00e7as, p\u00e1scoa, dia da \u00e1rvore, dia do \u00edndio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359723786,"id_str":"2359723786","name":"yas","screen_name":"reripottir","location":"hogwarts ","url":"http:\/\/www.xtube.com","description":"Eu sou normal, o mundo que \u00e9 estranho.","protected":false,"verified":false,"followers_count":2098,"friends_count":1979,"listed_count":0,"favourites_count":2915,"statuses_count":15464,"created_at":"Sat Feb 22 23:43:43 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663230081255481344\/nisoB1bg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663230081255481344\/nisoB1bg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359723786\/1446961500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:24:42 +0000 2015","id":663467201815552000,"id_str":"663467201815552000","text":"minha m\u00e3e me dando presente\n\nesse presente vale pro natal, dia das crian\u00e7as, p\u00e1scoa, dia da \u00e1rvore, dia do \u00edndio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":289037611,"id_str":"289037611","name":"Humorista","screen_name":"humoristaruim","location":"Brasil","url":null,"description":"Tentando ser engra\u00e7ado em 140 caracteres.","protected":false,"verified":false,"followers_count":10714,"friends_count":2870,"listed_count":3,"favourites_count":237,"statuses_count":7073,"created_at":"Wed Apr 27 22:24:19 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663469073964113920\/GzzgMco6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663469073964113920\/GzzgMco6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289037611\/1446904966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":162,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"humoristaruim","name":"Humorista","id":289037611,"id_str":"289037611","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761118208,"id_str":"663727749761118208","text":"RT @priwpriww: \u0e2d\u0e22\u0e48\u0e32\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e27\u0e49\u0e01\u0e31\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e04\u0e48\u0e30 \u0e2d\u0e31\u0e19\u0e15\u0e23\u0e32\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1735395091,"id_str":"1735395091","name":"LP.","screen_name":"lookpanglp","location":null,"url":null,"description":"IG : lookpanglp","protected":false,"verified":false,"followers_count":125,"friends_count":165,"listed_count":0,"favourites_count":953,"statuses_count":37554,"created_at":"Fri Sep 06 14:58:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656814372220571648\/sGPcaJ6M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656814372220571648\/sGPcaJ6M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735395091\/1413183289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:04 +0000 2015","id":663726752963821569,"id_str":"663726752963821569","text":"\u0e2d\u0e22\u0e48\u0e32\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e44\u0e27\u0e49\u0e01\u0e31\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e04\u0e48\u0e30 \u0e2d\u0e31\u0e19\u0e15\u0e23\u0e32\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192559113,"id_str":"192559113","name":"\u0e1e\u0e23\u0e34\u0e49\u0e27 \u0e1e\u0e32\u0e40\u0e1e\u0e25\u0e34\u0e19.","screen_name":"priwpriww","location":" ig : pppriw","url":"https:\/\/www.facebook.com\/priwpaplearn","description":"\u0e1e\u0e39\u0e14\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e40\u0e1f\u0e35\u0e49\u0e22\u0e27\u0e08\u0e30\u0e15\u0e32\u0e22 | favourite is mine | email for work : papriw@gmail.com","protected":false,"verified":false,"followers_count":440895,"friends_count":471,"listed_count":98,"favourites_count":9417,"statuses_count":161101,"created_at":"Sun Sep 19 14:13:23 +0000 2010","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0EEE2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156516581\/VBO-hs0a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156516581\/VBO-hs0a.jpeg","profile_background_tile":false,"profile_link_color":"474142","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320505101905920\/E4vTH7vs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320505101905920\/E4vTH7vs_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":392,"favorite_count":35,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"priwpriww","name":"\u0e1e\u0e23\u0e34\u0e49\u0e27 \u0e1e\u0e32\u0e40\u0e1e\u0e25\u0e34\u0e19.","id":192559113,"id_str":"192559113","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080001665"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748514816,"id_str":"663727749748514816","text":"Happy deepavali!!!\n#AthiradiDeepavali2015","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4163885664,"id_str":"4163885664","name":"HAVOC DINESH","screen_name":"HAVOCDINESH2","location":null,"url":null,"description":"FOLLOW LA WONT DIE WAN !\n\u2661SINGLE\u2661","protected":false,"verified":false,"followers_count":2,"friends_count":17,"listed_count":0,"favourites_count":1,"statuses_count":3,"created_at":"Sun Nov 08 03:29:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663199490040397824\/L5_FL9ex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663199490040397824\/L5_FL9ex_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4163885664\/1446954084","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AthiradiDeepavali2015","indices":[19,41]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749735911424,"id_str":"663727749735911424","text":"@Revesdream \uc798\uc790!!!!\ub0b4\uafc8\uafd4!!!!(\ub808\ube0c\uc5b8\ub2c8:\uac70\uc13c\uc8fc\uba39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727436933169152,"in_reply_to_status_id_str":"663727436933169152","in_reply_to_user_id":3779670673,"in_reply_to_user_id_str":"3779670673","in_reply_to_screen_name":"Revesdream","user":{"id":3610759872,"id_str":"3610759872","name":"\uce74\ub358\ub9c8\uce20\u2606\u30ab\u30eb\u30c0\u30f3\u2605\u256d(\uff65\u3142\uff65)\u0648","screen_name":"Kadon_1209","location":"\uc120\ud314+\uc120\uba58=\ub9de\ud314","url":"http:\/\/xn--o39ayix4jtyf05fqmcw14aq0cin93g94wftaw35e.com","description":"\uc5b8\uc81c\ub098 \ud574\ud53c\uc785\ub2c8\ub2f9!\n\uc2a4\ud3ec\uce20\uc560\ub2c8\/\ub3c4\uad74\/\ud558\uc774\ud050\uc785\ub355\/\ucfe0\ub18d\/\uc774\uce58\ub9c8\uce20\/\uc774\uce58\uce74\ub77c\/\uce74\ub77c\ub9c8\uce20\/DM\ud658\uc601\uc774\ub784\uae4c\/**\uc608\ube44\ub179\uc74c\ub7ec**\n\uc0dd\uc77c:12\uc6d49\uc77c","protected":false,"verified":false,"followers_count":106,"friends_count":129,"listed_count":0,"favourites_count":1131,"statuses_count":2724,"created_at":"Sat Sep 19 01:22:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660484140148457472\/G6kiMzAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660484140148457472\/G6kiMzAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3610759872\/1446039962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Revesdream","name":"[\ub808\ube0c]\ubfe1\ubfe1\uc774 \ub0e5\uc774 \ub118\uc5b4\uc838\ub77c","id":3779670673,"id_str":"3779670673","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749757018113,"id_str":"663727749757018113","text":"\u0648\u0627\u0633\u062a\u064e\u063a\u0641\u0650\u0631\u06b3 \u0631\u0628\u064a\u0651 \u0635\u064e\u0645\u062a\u064b\u0627 \u0648\u0641\u064e\u0631\u062d\u064b\u0627 \u0648\u062d\u064c\u0632\u0646\u064b\u0627 \u0648\u0639\u064e\u0627\u0641\u064a\u0647\u064e \u2661","source":"\u003ca href=\"http:\/\/www.mespar.com\" rel=\"nofollow\"\u003etestonia\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329938929,"id_str":"3329938929","name":"\u0627\u0644\u0645\u0632\u064a\u0648\u0646\u0647 ","screen_name":"53ayoushx1","location":null,"url":null,"description":"\u007b\u0648\u064e\u0627\u062a\u0651\u064e\u0642\u064f\u0648\u0627 \u064a\u064e\u0648\u0652\u0645\u064b\u0627 \u062a\u064f\u0631\u0652\u062c\u064e\u0639\u064f\u0648\u0646\u064e \u0641\u0650\u064a\u0647\u0650 \u0625\u0650\u0644\u064e\u0649 \u0627\u0644\u0644\u0651\u064e\u0647\u0650 \u062b\u064f\u0645\u0651\u064e \u062a\u064f\u0648\u064e\u0641\u0651\u064e\u0649 \u0643\u064f\u0644\u0651\u064f \u0646\u064e\u0641\u0652\u0633\u064d \u0645\u0651\u064e\u0627 \u0643\u064e\u0633\u064e\u0628\u064e\u062a\u0652 \u0648\u064e\u0647\u064f\u0645\u0652 \u0644\u064e\u0627 \u064a\u064f\u0638\u0652\u0644\u064e\u0645\u064f\u0648\u0646\u064e\u007d \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u063a\u0631\u062f \u0628\u0630\u0643\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u062e\u0627\u0635 \u0645\u0647\u0645\u0644","protected":false,"verified":false,"followers_count":5325,"friends_count":5316,"listed_count":0,"favourites_count":9,"statuses_count":3160,"created_at":"Tue Jun 16 18:09:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610889018482425856\/qitrYo_A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610889018482425856\/qitrYo_A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329938929\/1434919746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749757030400,"id_str":"663727749757030400","text":"Y un poco de musica","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3305776449,"id_str":"3305776449","name":"\u2661Flor Moyano\u2661","screen_name":"Florcita_Moyano","location":"C\u00f3rdoba, Argentina","url":"https:\/\/www.facebook.com\/floor.moyaano","description":"Nicolas \u2661 \u2661","protected":false,"verified":false,"followers_count":203,"friends_count":184,"listed_count":0,"favourites_count":284,"statuses_count":3010,"created_at":"Mon Jun 01 18:12:38 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658064331997884416\/PWy-Et0K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658064331997884416\/PWy-Et0K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3305776449\/1445729769","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752881152,"id_str":"663727749752881152","text":"Being Gay Is A Choice And I Know I Made The Right Choice!!!!! LGBT Forever!!!!!! #LGBT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3753257354,"id_str":"3753257354","name":"Cam :)","screen_name":"ckamins31","location":"Storybrooke ","url":null,"description":"Dark One","protected":false,"verified":false,"followers_count":158,"friends_count":458,"listed_count":1,"favourites_count":1765,"statuses_count":836,"created_at":"Fri Oct 02 00:14:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718435457748992\/B8UijMaf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718435457748992\/B8UijMaf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3753257354\/1447079923","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LGBT","indices":[81,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748695040,"id_str":"663727749748695040","text":"Teleg&#228;rtner SMA&#8211;Steckverbinder Buchse, gerade 50 \ufffd&#34;\ufffd J01151A0051 1 St. https:\/\/t.co\/nrhO7StYPp #blogtraffic","source":"\u003ca href=\"http:\/\/www.blogtraffic.de\" rel=\"nofollow\"\u003eBT-FEEDTWEET\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52764424,"id_str":"52764424","name":"Feed-Fetcher","screen_name":"blogtrafficfeed","location":"Spain","url":"http:\/\/www.blogtraffic.de","description":"BlogTraffic, Live Statistics to your Blog or Blog-Service","protected":false,"verified":false,"followers_count":1849,"friends_count":1692,"listed_count":110,"favourites_count":0,"statuses_count":2361248,"created_at":"Wed Jul 01 16:01:58 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/27289813\/twitbg2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/27289813\/twitbg2.png","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/292191959\/bt-feed-twitter_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/292191959\/bt-feed-twitter_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"blogtraffic","indices":[122,134]}],"urls":[{"url":"https:\/\/t.co\/nrhO7StYPp","expanded_url":"http:\/\/fazzt.biz\/3f2a2ee","display_url":"fazzt.biz\/3f2a2ee","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749740167168,"id_str":"663727749740167168","text":"@Y_2015515 \n\u30e4\u30c3\u3093\u3060\u308d\u305d\u308c\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726165849346048,"in_reply_to_status_id_str":"663726165849346048","in_reply_to_user_id":3195570337,"in_reply_to_user_id_str":"3195570337","in_reply_to_screen_name":"Y_2015515","user":{"id":2938898509,"id_str":"2938898509","name":"\u3059\u307f\u308c","screen_name":"susu___sweet","location":"\u307f\u304d\u307e\u304a\u3086\u3046\u306a","url":null,"description":"YM\u9ad8\u68212210\/\u659c\u3081\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":257,"friends_count":241,"listed_count":2,"favourites_count":6676,"statuses_count":2970,"created_at":"Mon Dec 22 03:18:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662597389371346944\/zdr2SKL8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662597389371346944\/zdr2SKL8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938898509\/1446350570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Y_2015515","name":"Ryu","id":3195570337,"id_str":"3195570337","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001660"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727567872,"id_str":"663727749727567872","text":"RT @tahoesorensen: End NCLB RttT standardized tests Ed reform and Ts will #TeachStrong \n#TBATs @Lily_NEA @AFTunion @DianeRavitch #NVBATs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973927826,"id_str":"2973927826","name":"Arizona Bats","screen_name":"AZBatsA","location":null,"url":"http:\/\/www.badassteacher.org","description":"Badass Teachers Association was created to give voice to every teacher who refuses to be blamed failure of society to erase poverty and inequality through ed","protected":false,"verified":false,"followers_count":311,"friends_count":346,"listed_count":41,"favourites_count":1081,"statuses_count":10720,"created_at":"Mon Jan 12 00:24:05 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633110785716195328\/txFt3Y91_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633110785716195328\/txFt3Y91_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973927826\/1445142049","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:15:14 +0000 2015","id":663585617939333120,"id_str":"663585617939333120","text":"End NCLB RttT standardized tests Ed reform and Ts will #TeachStrong \n#TBATs @Lily_NEA @AFTunion @DianeRavitch #NVBATs","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2374200738,"id_str":"2374200738","name":"Phil Sorensen","screen_name":"tahoesorensen","location":null,"url":null,"description":"Dad, Teacher, coach, sports enthusiast, union member, activist, BAT, Badger. Sharing info u & I may\/may not like. Tweets are my own.","protected":false,"verified":false,"followers_count":1239,"friends_count":1828,"listed_count":62,"favourites_count":1456,"statuses_count":18646,"created_at":"Wed Mar 05 18:50:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578937315592011776\/kZNCOyH__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578937315592011776\/kZNCOyH__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2374200738\/1436066848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[{"text":"TeachStrong","indices":[55,67]},{"text":"TBATs","indices":[69,75]},{"text":"NVBATs","indices":[110,117]}],"urls":[],"user_mentions":[{"screen_name":"Lily_NEA","name":"Lily Eskelsen Garc\u00eda","id":2613691501,"id_str":"2613691501","indices":[76,85]},{"screen_name":"AFTunion","name":"AFT","id":45573874,"id_str":"45573874","indices":[86,95]},{"screen_name":"DianeRavitch","name":"Diane Ravitch","id":59010637,"id_str":"59010637","indices":[96,109]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeachStrong","indices":[74,86]},{"text":"TBATs","indices":[88,94]},{"text":"NVBATs","indices":[129,136]}],"urls":[],"user_mentions":[{"screen_name":"tahoesorensen","name":"Phil Sorensen","id":2374200738,"id_str":"2374200738","indices":[3,17]},{"screen_name":"Lily_NEA","name":"Lily Eskelsen Garc\u00eda","id":2613691501,"id_str":"2613691501","indices":[95,104]},{"screen_name":"AFTunion","name":"AFT","id":45573874,"id_str":"45573874","indices":[105,114]},{"screen_name":"DianeRavitch","name":"Diane Ravitch","id":59010637,"id_str":"59010637","indices":[115,128]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765312513,"id_str":"663727749765312513","text":"\u6614\u304b\u3089\u30af\u30de\u304c\u6fc3\u3059\u304e\u3066\u5e38\u306b\u75c5\u3093\u3067\u308b\u3068\u601d\u308f\u308c\u308b","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2656107649,"id_str":"2656107649","name":"\u3082\u308d\u3072\u3058\u304d@\u98ef\u30c6\u30edbot\u5fa9\u6d3b","screen_name":"morohijiki","location":"\u30a2\u30a4\u30b3\u30f3\u53f3\u4e0a\u306f\u98db\u884c\u6a5f\u3089\u3057\u3044\u3067\u3059","url":"http:\/\/twpf.jp\/morohijiki","description":"\u6b4c\u3046\u306e\u304c\u304a\u597d\u304d\u3002\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u898b\u3066\u306d\u3002","protected":false,"verified":false,"followers_count":381,"friends_count":602,"listed_count":20,"favourites_count":60598,"statuses_count":96546,"created_at":"Fri Jul 18 07:31:36 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541196250238820352\/-CXnNf87.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541196250238820352\/-CXnNf87.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663656093982158848\/eWT8z3Q0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663656093982158848\/eWT8z3Q0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2656107649\/1446394864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765337093,"id_str":"663727749765337093","text":"RT @01ra66it: \u6697\u53f7\u5316\u96fb\u5b50\u30e1\u30fc\u30ebProtonMail\u306bDDoS\u653b\u6483--\u300c\u8eab\u4ee3\u91d1\u300d6000\u30c9\u30eb\u3092\u652f\u6255\u3046\u3082\u53ce\u307e\u3089\u305a https:\/\/t.co\/E0TSSLu9QA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120986948,"id_str":"120986948","name":"Yasuyo","screen_name":"halu834","location":"\u9759\u5ca1\u770c\u9759\u5ca1\u5e02","url":null,"description":"\u65e5\u672c\u306e\u4e3b\u5a66\u3092\u99ac\u9e7f\u306b\u3057\u3061\u3083\u3044\u3051\u306a\u3044\u3002\u4e3b\u5a66\u3060\u3051\u3069SE\u306a\u3093\u3060\u305e\u30fc\u3002 \u73fe\u5728\u306f\u30a4\u30f3\u30d5\u30e9\u30a8\u30f3\u30b8\u30cb\u30a2\u3002\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30fbLinux\u7cfb\u306b\u7279\u5316\u3057\u3066\u304d\u305f\u4eca\u65e5\u3053\u306e\u9803\u3002 \u6700\u8fd1\u4eba\u3068\u306e\u95a2\u4fc2\u306e\u5e0c\u8584\u3055\u306b\u7591\u554f\u3092\u611f\u3058\u3066\u3044\u307e\u3059\u3002#\u5143\u30d7\u30ed\u30b0\u30e9\u30de #Java #\u30a4\u30f3\u30d5\u30e9\u30a8\u30f3\u30b8\u30cb\u30a2 #\u96fb\u6c17\u901a\u4fe1\u4e3b\u4efb\u6280\u8853\u8005 #\u60c5\u5831\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30b9\u30da\u30b7\u30e3\u30ea\u30b9\u30c8 #\u8106\u5f31\u6027 #\u5bb6\u4e8b\u304c\u9762\u5012","protected":false,"verified":false,"followers_count":68,"friends_count":135,"listed_count":2,"favourites_count":1654,"statuses_count":2406,"created_at":"Mon Mar 08 05:34:53 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648502815543832576\/vw4DZFSd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648502815543832576\/vw4DZFSd_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:09:55 +0000 2015","id":663569180344487936,"id_str":"663569180344487936","text":"\u6697\u53f7\u5316\u96fb\u5b50\u30e1\u30fc\u30ebProtonMail\u306bDDoS\u653b\u6483--\u300c\u8eab\u4ee3\u91d1\u300d6000\u30c9\u30eb\u3092\u652f\u6255\u3046\u3082\u53ce\u307e\u3089\u305a https:\/\/t.co\/E0TSSLu9QA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2838667800,"id_str":"2838667800","name":"01Rabbit\u3010\u75b2\u52b4\u84c4\u7a4d\u5f37\u8abf\u6708\u9593\u3011","screen_name":"01ra66it","location":"\u65e5\u672c","url":"http:\/\/binaryrabbits.tumblr.com\/","description":"\u57fa\u672c\u7684\u306b\u60c5\u5831\u53ce\u96c6\u304c\u30e1\u30a4\u30f3\u3067\u3059\u3002 \u305f\u307e\u306b\u81ea\u5206\u306e\u610f\u898b\u3092\u8a00\u3044\u307e\u3059\u3002\u3057\u304b\u3057\u3001\u3042\u304f\u307e\u3067\u3082\u500b\u4eba\u7684\u306a\u610f\u898b\u3067\u6240\u5c5e\u7d44\u7e54\u306f\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093\u3002 \u4ed5\u4e8b\u306f\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u7cfb\u30d7\u30ed\u30b0\u30e9\u30de\u30fc\u3002\u30de\u30eb\u30a6\u30a7\u30a2\u89e3\u6790\u3082\u3057\u3066\u307e\u3059\u3002\u3044\u3044\u6b73\u3057\u3066CTF\u3092\u59cb\u3081\u3066\u307f\u305f\uff08\u7b11\uff09\u305d\u3057\u3066\u3001\u305f\u307e\u306b\u30b5\u30d0\u30b2\u30fc\u3002","protected":false,"verified":false,"followers_count":87,"friends_count":208,"listed_count":9,"favourites_count":231,"statuses_count":6020,"created_at":"Fri Oct 03 05:29:33 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658262037655519232\/YWfOOah8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658262037655519232\/YWfOOah8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838667800\/1444957669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/E0TSSLu9QA","expanded_url":"http:\/\/japan.cnet.com\/news\/service\/35073168\/","display_url":"japan.cnet.com\/news\/service\/3\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/E0TSSLu9QA","expanded_url":"http:\/\/japan.cnet.com\/news\/service\/35073168\/","display_url":"japan.cnet.com\/news\/service\/3\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"01ra66it","name":"01Rabbit\u3010\u75b2\u52b4\u84c4\u7a4d\u5f37\u8abf\u6708\u9593\u3011","id":2838667800,"id_str":"2838667800","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748649984,"id_str":"663727749748649984","text":"Consolidated tight oligopolies vs competitive mobile\nmarkets https:\/\/t.co\/3yw58qsMOT cc\/ @industrycanada #CRTC #CDNtech","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321072317,"id_str":"321072317","name":"Dwayne Winseck","screen_name":"mediamorphis","location":"Ottawa","url":"https:\/\/dwmw.wordpress.com\/","description":"Prof, CommStudies, Carleton University. Media, telecom & Internet industries + history + Director CDN Media Concentration Research Proj (http:\/\/cmcrp.org)","protected":false,"verified":false,"followers_count":1774,"friends_count":1360,"listed_count":103,"favourites_count":18,"statuses_count":9519,"created_at":"Tue Jun 21 00:08:34 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596720299883659264\/eDqSiQTU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596720299883659264\/eDqSiQTU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CRTC","indices":[106,111]},{"text":"CDNtech","indices":[112,120]}],"urls":[{"url":"https:\/\/t.co\/3yw58qsMOT","expanded_url":"https:\/\/www.dropbox.com\/s\/vvjo7ppkupj4dxr\/Rewheel%202H2015_DFMonitor_fourth_release_09112015.pdf?dl=0","display_url":"dropbox.com\/s\/vvjo7ppkupj4\u2026","indices":[61,84]}],"user_mentions":[{"screen_name":"industrycanada","name":"Industry Canada","id":135553041,"id_str":"135553041","indices":[90,105]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752745984,"id_str":"663727749752745984","text":"@niina0055 \n\u3093\u306d\u30fc\u3063\uff01\u4eca\u5ea6\u8a71\u305b\u305f\u3089\u306f\u306a\u305d\u30fc\uff01\ud83d\ude03\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724538815844352,"in_reply_to_status_id_str":"663724538815844352","in_reply_to_user_id":3314292085,"in_reply_to_user_id_str":"3314292085","in_reply_to_screen_name":"niina0055","user":{"id":3320971512,"id_str":"3320971512","name":"\u3086\u304d","screen_name":"Ariel_613_yuki","location":"\u65e5\u672c ","url":null,"description":"\uff12\u306e\uff19\u307f\u3087\u30fc\u3067\u3093\u3061\u3085\u30d0\u30c9\u90e8\/\u597d\u304d\u306a\u306e\u2192\u30a2\u30ea\u30a8\u30eb\/\u5927\u597d\u304d\u306a\u4eba\u2192@nayhy29\u30fb@karinn_216\/\n\u597d\u304d\u306a\u4eba\u2192\u4e09\u6d66\u304f\u3093\u597d\u304d\u3067\u3059 \/\u52c9\u5f37\u4e00\u5fdc\u9811\u5f35\u3063\u3066\u308b","protected":false,"verified":false,"followers_count":76,"friends_count":76,"listed_count":0,"favourites_count":351,"statuses_count":341,"created_at":"Thu Aug 20 06:46:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660808233209085952\/SucgduHQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660808233209085952\/SucgduHQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320971512\/1446383967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"niina0055","name":"\u306b\u3044\u306a","id":3314292085,"id_str":"3314292085","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749736046592,"id_str":"663727749736046592","text":"RT @5SOS_Updates: This is the face of uncomfort https:\/\/t.co\/F8Pq3ZLmHT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452368086,"id_str":"452368086","name":"Brittany","screen_name":"Brittany_5S0S","location":"Buffalo, NY","url":"https:\/\/m.ask.fm\/Britt8146","description":"My Life Consists Of Pizza, Netflix, Video Games And Music :D also i dye my hair a lot. Current color: Splat Aqua Rush","protected":false,"verified":false,"followers_count":1165,"friends_count":2116,"listed_count":5,"favourites_count":11324,"statuses_count":16872,"created_at":"Sun Jan 01 19:19:58 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552587664562475008\/CaI6Fegu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552587664562475008\/CaI6Fegu.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663464987239784448\/ZSSxgZTI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663464987239784448\/ZSSxgZTI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452368086\/1445040792","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:33 +0000 2015","id":663727128270082048,"id_str":"663727128270082048","text":"This is the face of uncomfort https:\/\/t.co\/F8Pq3ZLmHT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1156344793,"id_str":"1156344793","name":"5SOS Updates","screen_name":"5SOS_Updates","location":"Australia","url":null,"description":"BUSINESS: Mgmt5SOS_Updates@hotmail.com | owner: @Skye5SOS | co-owner: @GrumpyEliza BUY SGFG: https:\/\/itun.es\/au\/WdIr9 \u2661 | @5SOS","protected":false,"verified":false,"followers_count":386071,"friends_count":33234,"listed_count":1345,"favourites_count":25965,"statuses_count":77480,"created_at":"Thu Feb 07 07:18:33 +0000 2013","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448649999337811968\/ra9Lb3P_.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645594956455743488\/SZo2WU9V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1156344793\/1445643565","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":55,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727075191197696,"id_str":"663727075191197696","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","url":"https:\/\/t.co\/F8Pq3ZLmHT","display_url":"pic.twitter.com\/F8Pq3ZLmHT","expanded_url":"http:\/\/twitter.com\/5SOS_Updates\/status\/663727128270082048\/photo\/1","type":"photo","sizes":{"medium":{"w":160,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":160,"h":280,"resize":"fit"},"large":{"w":160,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727075191197696,"id_str":"663727075191197696","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","url":"https:\/\/t.co\/F8Pq3ZLmHT","display_url":"pic.twitter.com\/F8Pq3ZLmHT","expanded_url":"http:\/\/twitter.com\/5SOS_Updates\/status\/663727128270082048\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":160,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":160,"h":280,"resize":"fit"},"large":{"w":160,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[4,7],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIQiCUkAAoXBm.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS_Updates","name":"5SOS Updates","id":1156344793,"id_str":"1156344793","indices":[3,16]}],"symbols":[],"media":[{"id":663727075191197696,"id_str":"663727075191197696","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","url":"https:\/\/t.co\/F8Pq3ZLmHT","display_url":"pic.twitter.com\/F8Pq3ZLmHT","expanded_url":"http:\/\/twitter.com\/5SOS_Updates\/status\/663727128270082048\/photo\/1","type":"photo","sizes":{"medium":{"w":160,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":160,"h":280,"resize":"fit"},"large":{"w":160,"h":280,"resize":"fit"}},"source_status_id":663727128270082048,"source_status_id_str":"663727128270082048","source_user_id":1156344793,"source_user_id_str":"1156344793"}]},"extended_entities":{"media":[{"id":663727075191197696,"id_str":"663727075191197696","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIQiCUkAAoXBm.png","url":"https:\/\/t.co\/F8Pq3ZLmHT","display_url":"pic.twitter.com\/F8Pq3ZLmHT","expanded_url":"http:\/\/twitter.com\/5SOS_Updates\/status\/663727128270082048\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":160,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":160,"h":280,"resize":"fit"},"large":{"w":160,"h":280,"resize":"fit"}},"source_status_id":663727128270082048,"source_status_id_str":"663727128270082048","source_user_id":1156344793,"source_user_id_str":"1156344793","video_info":{"aspect_ratio":[4,7],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIQiCUkAAoXBm.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748527104,"id_str":"663727749748527104","text":"\u3048\u3001\u30af\u30ed\u30d2\u30c8\u3055\u3093\u3059\u3054","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267385274,"id_str":"3267385274","name":"\uff8a\uff9e\uff72\uff84\uff8f\uff9d\u5927\u6839\uff81\uff6c\uff7f","screen_name":"__daikonnchann","location":"\u304a\u60e3\u83dc","url":"https:\/\/xn--tck4bz04klj0adzj.com","description":"\u7720\u308c\u306a\u3044\u591c\u306f\u5927\u6839\u7247\u624b\u306b\u5929\u4f7f\u306e\u8a69\u3092\u8b33\u304a\u3046","protected":false,"verified":false,"followers_count":884,"friends_count":776,"listed_count":16,"favourites_count":4012,"statuses_count":2556,"created_at":"Fri Jul 03 19:49:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718151444561920\/a0zkYkri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718151444561920\/a0zkYkri_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267385274\/1445207071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761134596,"id_str":"663727749761134596","text":"SKYLOCK\u3067\u7d0d\u5f97\u53ec\u559a\u958b\u50ac\u4e2d\uff01\u7dcf\u53ec\u559a\u65702778417\u56de\uff01\n#\u30b9\u30ab\u30a4\u30ed\u30c3\u30af #SKYLOCK\n\u516c\u5f0f:https:\/\/t.co\/5jMJNCi5Uh","source":"\u003ca href=\"http:\/\/app.gloops.com\" rel=\"nofollow\"\u003e\u3010\u516c\u5f0f\u3011SKYLOCK - \u795e\u3005\u3068\u904b\u547d\u306e\u4e94\u3064\u5b50 -\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268243983,"id_str":"268243983","name":"\u3055\u3068\u3046\u3057\u3093\u3044\u3061","screen_name":"metchigoya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":67,"created_at":"Fri Mar 18 11:49:19 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b9\u30ab\u30a4\u30ed\u30c3\u30af","indices":[30,37]},{"text":"SKYLOCK","indices":[38,46]}],"urls":[{"url":"https:\/\/t.co\/5jMJNCi5Uh","expanded_url":"http:\/\/goo.gl\/PBrCzx?h=716521457819a43e","display_url":"goo.gl\/PBrCzx?h=71652\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001665"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761212417,"id_str":"663727749761212417","text":"@DVCMAC @divineem False equivalency.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727351956566016,"in_reply_to_status_id_str":"663727351956566016","in_reply_to_user_id":397666788,"in_reply_to_user_id_str":"397666788","in_reply_to_screen_name":"DVCMAC","user":{"id":132583388,"id_str":"132583388","name":"Mr. Marlin","screen_name":"TheShaggyMarlin","location":"The Murder Mitten","url":"http:\/\/ask.fm\/TheShaggyMarlin","description":null,"protected":false,"verified":false,"followers_count":737,"friends_count":489,"listed_count":87,"favourites_count":48690,"statuses_count":47069,"created_at":"Tue Apr 13 16:48:00 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658019963316359168\/X0brRNXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658019963316359168\/X0brRNXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132583388\/1427409266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DVCMAC","name":"Promac","id":397666788,"id_str":"397666788","indices":[0,7]},{"screen_name":"divineem","name":"Divine Socialism","id":24249547,"id_str":"24249547","indices":[8,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001665"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749757067265,"id_str":"663727749757067265","text":"@fjypina si yo te contara....","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726501611896832,"in_reply_to_status_id_str":"663726501611896832","in_reply_to_user_id":216215612,"in_reply_to_user_id_str":"216215612","in_reply_to_screen_name":"fjypina","user":{"id":3992958909,"id_str":"3992958909","name":"Kylo_Ren","screen_name":"Kylo_Solo","location":"Starkiller Planet","url":null,"description":"Ya vereis ya........si yo no digo nada...pero que sepais que serlo lo soy...........Hijo de Han Solo!","protected":false,"verified":false,"followers_count":46,"friends_count":83,"listed_count":0,"favourites_count":70,"statuses_count":516,"created_at":"Mon Oct 19 07:55:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662372374554279936\/9G-lsRYw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662372374554279936\/9G-lsRYw.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662371413039423492\/rRG0xrSx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662371413039423492\/rRG0xrSx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3992958909\/1446756960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fjypina","name":"Javier Y. Pi\u00f1a","id":216215612,"id_str":"216215612","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001664"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765312512,"id_str":"663727749765312512","text":"RT @24karatsgunomi: #\u62e1\u6563\u5e0c\u671b\n\u3053\u306eSV\u9280\u30c6\u30d1\u30d5\u30a9\u30fc\u30de\u30fc5\u4eba\u5206\u306e\u307f\u4f59\u308a\u307e\u3057\u305f\ud83d\udca6\n\u5148\u7a0b\u5065\u4e8c\u90ce\u306f\u6c7a\u307e\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u304c\u4ed6\u306e4\u4eba\u6b32\u3057\u3044\u65b9\u3044\u307e\u3059\u304b\uff1f\n\u767b\u5742\u30fb\u4eca\u5e02\u30fb\u5c71\u4e0b\u306f\u306a\u3044\u3067\u3059\u3002\n\u4ed6\u306e\u62e1\u6563\u5354\u529b\u3057\u3066\u304f\u308c\u3066\u308b\u65b9\u3084\u4ef2\u3044\u3044\u5b50\u512a\u5148\u3002\n\u7121\u6599\u4f01\u753b\u3067\u306f\u306a\u3044\u3051\u3069\u7121\u6599\u3067\u3042\u3052\u308b\u3088\u3002 ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3269638472,"id_str":"3269638472","name":"\uff72 \uff8f \uff72 \uff81 \uff7c \uff75 \uff98 \u2764\ufe0e","screen_name":"LDH_jsb_rs223","location":"osaka","url":"http:\/\/m.tribe-m.jp\/q?i=artist\/3rd_jsb\/blog\/imaichi","description":"\u3042\u306a\u305f\u304c\u3044\u3066\u304f\u308c\u3066\u79c1\u306f\u5e78\u305b\u3067\u3059\u3002\u3053\u308c\u304b\u3089\u5148\u3082\u3002\u6b4c\u3046\u30ac\u30c6\u30f3\u7cfb\u2765\u2765\u2765\u4eca\u5e02\u9686\u4e8c\u306e\u7b11\u9854\u3068\u6b4c\u58f0\u306b\u60da\u308c\u30665\u5e74\u7d4c\u904e\u219d\u262a\ufe0e\u2764\ufe0e \u30d0\u30af\u30b9\u30c6\u5f53\u9078\u261e\u62b1\u304d\u3064\u304b\u308c\u305f\u3044\u6d3e\u2764\ufe0e","protected":false,"verified":false,"followers_count":131,"friends_count":121,"listed_count":2,"favourites_count":247,"statuses_count":1146,"created_at":"Mon Jul 06 04:03:22 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635858398777503744\/ZOrdKEdQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635858398777503744\/ZOrdKEdQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269638472\/1436672474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:40:49 +0000 2015","id":663712849173180420,"id_str":"663712849173180420","text":"#\u62e1\u6563\u5e0c\u671b\n\u3053\u306eSV\u9280\u30c6\u30d1\u30d5\u30a9\u30fc\u30de\u30fc5\u4eba\u5206\u306e\u307f\u4f59\u308a\u307e\u3057\u305f\ud83d\udca6\n\u5148\u7a0b\u5065\u4e8c\u90ce\u306f\u6c7a\u307e\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u304c\u4ed6\u306e4\u4eba\u6b32\u3057\u3044\u65b9\u3044\u307e\u3059\u304b\uff1f\n\u767b\u5742\u30fb\u4eca\u5e02\u30fb\u5c71\u4e0b\u306f\u306a\u3044\u3067\u3059\u3002\n\u4ed6\u306e\u62e1\u6563\u5354\u529b\u3057\u3066\u304f\u308c\u3066\u308b\u65b9\u3084\u4ef2\u3044\u3044\u5b50\u512a\u5148\u3002\n\u7121\u6599\u4f01\u753b\u3067\u306f\u306a\u3044\u3051\u3069\u7121\u6599\u3067\u3042\u3052\u308b\u3088\u3002 https:\/\/t.co\/N1fugJvFlX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911814126,"id_str":"2911814126","name":"\u5ca9\u7530 \u3042\u3044\u306a\u2661\u30bf\u30aa\u30eb\u7121\u6599\u4f01\u753b\u306a\u3046","screen_name":"24karatsgunomi","location":null,"url":null,"description":"\u2765\ufe0e\u2765\ufe0e \u5ca9\u7530\u525b\u5178 \u2721 \u767b\u5742\u5e83\u81e3 \u2765\ufe0e\u2765\ufe0e \u261e\uff80\uff72\uff7e\uff82\u2661\u0337 GUNMA \/ JK2 \/ TOW11.29 \/ BP8.29 \/ \uff98\uff91\u3063\u305f\u4eba\u308f\u304b\u308a\u307e\u3059 \u25ce \uff8c\uff6b\uff9b\uff8a\uff9e\u306f\u4ef2\u826f\u304f\u306a\u3063\u305f\u4eba\u30fb\u6c17\u306b\u306a\u3063\u305f\u4eba\u25ce \u5ca9\u7530\uff65\u767b\u5742\u95a2\u9023\u5e38\u306b\u6c42\u3081\u3066\u307e\u3059\u270c\ufe0e\ufe0e \u2741\u3086\u308b\u301c\u304f\u9df2\u5c3e\u30fb\u8429\u82b1\u30fbYURINO\u30fb\u4f50\u91ce\u30fb\u5c0f\u68ee\u2741 \u7121\u6599\u4f01\u753b\u305f\u307e\u306b\u3084\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":1464,"friends_count":489,"listed_count":8,"favourites_count":3176,"statuses_count":5790,"created_at":"Thu Nov 27 11:29:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594737068036591617\/zaqa2VG8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594737068036591617\/zaqa2VG8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911814126\/1443872577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":1,"entities":{"hashtags":[{"text":"\u62e1\u6563\u5e0c\u671b","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663712835080355840,"id_str":"663712835080355840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":555,"resize":"fit"},"medium":{"w":600,"h":521,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663712835080355840,"id_str":"663712835080355840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":555,"resize":"fit"},"medium":{"w":600,"h":521,"resize":"fit"}}},{"id":663712835097067520,"id_str":"663712835097067520","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpjUAAA95Zg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpjUAAA95Zg.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u62e1\u6563\u5e0c\u671b","indices":[20,25]}],"urls":[],"user_mentions":[{"screen_name":"24karatsgunomi","name":"\u5ca9\u7530 \u3042\u3044\u306a\u2661\u30bf\u30aa\u30eb\u7121\u6599\u4f01\u753b\u306a\u3046","id":2911814126,"id_str":"2911814126","indices":[3,18]}],"symbols":[],"media":[{"id":663712835080355840,"id_str":"663712835080355840","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":555,"resize":"fit"},"medium":{"w":600,"h":521,"resize":"fit"}},"source_status_id":663712849173180420,"source_status_id_str":"663712849173180420","source_user_id":2911814126,"source_user_id_str":"2911814126"}]},"extended_entities":{"media":[{"id":663712835080355840,"id_str":"663712835080355840","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpfVAAA3DRu.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":555,"resize":"fit"},"medium":{"w":600,"h":521,"resize":"fit"}},"source_status_id":663712849173180420,"source_status_id_str":"663712849173180420","source_user_id":2911814126,"source_user_id_str":"2911814126"},{"id":663712835097067520,"id_str":"663712835097067520","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7TpjUAAA95Zg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7TpjUAAA95Zg.jpg","url":"https:\/\/t.co\/N1fugJvFlX","display_url":"pic.twitter.com\/N1fugJvFlX","expanded_url":"http:\/\/twitter.com\/24karatsgunomi\/status\/663712849173180420\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663712849173180420,"source_status_id_str":"663712849173180420","source_user_id":2911814126,"source_user_id_str":"2911814126"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001666"} +{"delete":{"status":{"id":536111667482865664,"id_str":"536111667482865664","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080001798"}} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749740130304,"id_str":"663727749740130304","text":"@kagerow \uff08\u00b4\u25c9\u25de\u0c6a\u25df\u25c9)\u7070\u8272\u306e\u732b\u3055\u3093\u304c\u2026\u3059\u3093\u3054\u304f\u53ef\u611b\u3044\u3067\u3059\u2026!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727033390776320,"in_reply_to_status_id_str":"663727033390776320","in_reply_to_user_id":23290557,"in_reply_to_user_id_str":"23290557","in_reply_to_screen_name":"kagerow","user":{"id":2552654359,"id_str":"2552654359","name":"\u305f\u3063\u3064\u30fc412\u30fb\u30b9\u30da\u30af\u30bf\u30fc\u9b42","screen_name":"Homunculus412","location":"\uff08\u00b4\u25c9\u25de\u0c6a\u25df\u25c9)\u4ed8\u3051\u5165\u308a\u3084\u3059\u304f\u3066\u52a9\u304b\u308b\u3088\u3001\u4eba\u9593\u3002","url":"http:\/\/twpf.jp\/Homunculus412","description":"\uff08\u00b4\u25c9\u25de\u0c6a\u25df\u25c9)\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\/\u30cf\u30ac\u30ec\u30f3\/\u4e03\u3064\u306e\u5927\u7f6a\/\u30b9\u30af\u30dc\/\u30c9\u30e9\u30af\u30a8\/\u30a2\u30cb\u30dd\u30b1\u304c\u597d\u304d\u306a\u4e2d3\u306e\u7269\u4f53\u3067\u3059\u3002\u4e3b\u306b\u30cb\u30b3\u751f\u3092\u3084\u3063\u3066\u3044\u307e\u3059(\u307b\u304b\u306b\u3082\u69d8\u3005)\u3002\u30b2\u30fc\u30e0\u5236\u4f5c\u3082\u3084\u3063\u3066\u3044\u305f\u308a\u2026\u2026\u91cd\u5ea6\u306a\u60aa\u5f79\u597d\u304d\u3067\u3059\u3002\u30a8\u30f3\u30f4\u30a3\u30fc\u306b\u6575\u3046\u60aa\u5f79\u306f\u3044\u306a\u3044!\u2026\u2026\u307e\u3041\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3002\u6700\u8fd1\u86ee\u91ce\u3055\u3093\u3092\u5909\u614b\u306b\u3057\u305f\u308a\u6c17\u304c\u4ed8\u3051\u3070\u30b7\u30c8\u30ed\u30f3\u541b\u597d\u304d\u306b\u2026\u2026","protected":false,"verified":false,"followers_count":304,"friends_count":623,"listed_count":8,"favourites_count":4103,"statuses_count":9508,"created_at":"Sat Jun 07 13:46:29 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"808000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643526623514468352\/8iAlZADd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643526623514468352\/8iAlZADd.jpg","profile_background_tile":true,"profile_link_color":"808000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660406728333201408\/zULhJ8zc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660406728333201408\/zULhJ8zc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2552654359\/1436790530","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kagerow","name":"\u304b\u3052\u308d\u30fc","id":23290557,"id_str":"23290557","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001660"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731762176,"id_str":"663727749731762176","text":"RT @F_nao3: \u3053\u3046\u3044\u3046\u5bb6\u65cf\u307b\u3093\u307e\u306b\u61a7\u308c\u308b\ud83d\ude02\ud83d\udc93\ud83d\udc93 \u6e1a\u3061\u3083\u3093\u53ef\u611b\u3044\u3057\u65e6\u90a3\u3055\u3093\u7d20\u6575\u3084\u3057\u5b50\u3069\u3082\u53ef\u611b\u3044\u3057\u6700\u9ad8\ud83d\ude02\ud83d\udc93\ud83d\udc93 https:\/\/t.co\/k3EXE9RyYP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3104915964,"id_str":"3104915964","name":"\u2721\u307f\u3059\u3052\u2721","screen_name":"yukachimaru_17","location":"0721\u261e\u307d\u3093cp\uff13\u30f6\u6708\u270c\ufe0e\ufe0eDISNEY\uff06PIXSER\u2721","url":"http:\/\/Instagram.com\/Misugetty","description":"\u2484\u6b73\u3002\u4eba\u6587\u7cfb\u5217\u3002\u0081\u008d\u770b\u8b77\u5e2b\u76ee\u6307\u3057\u3066\u52aa\u529b\u3057\u3088\u3046\u270c\ufe0e @spade0224\\( \u00a8\u032e )\/\u2661\u6700\u8fd1\u306a\u305c\u304bDisney\u884c\u304d\u305f\u3044\u6b32\u304c\u5897\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":167,"friends_count":148,"listed_count":1,"favourites_count":1384,"statuses_count":3488,"created_at":"Mon Mar 23 14:50:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660146103044603904\/gLPNPBko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660146103044603904\/gLPNPBko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104915964\/1445555237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 06:17:31 +0000 2015","id":658527859347066881,"id_str":"658527859347066881","text":"\u3053\u3046\u3044\u3046\u5bb6\u65cf\u307b\u3093\u307e\u306b\u61a7\u308c\u308b\ud83d\ude02\ud83d\udc93\ud83d\udc93 \u6e1a\u3061\u3083\u3093\u53ef\u611b\u3044\u3057\u65e6\u90a3\u3055\u3093\u7d20\u6575\u3084\u3057\u5b50\u3069\u3082\u53ef\u611b\u3044\u3057\u6700\u9ad8\ud83d\ude02\ud83d\udc93\ud83d\udc93 https:\/\/t.co\/k3EXE9RyYP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1376076583,"id_str":"1376076583","name":"\uff4e\uff41\uff4f","screen_name":"F_nao3","location":null,"url":null,"description":"\u6765\u5e74\u304b\u3089\u4fdd\u80b2\u5712\u306e\u5148\u751f\u2764\ufe0e","protected":false,"verified":false,"followers_count":418,"friends_count":354,"listed_count":0,"favourites_count":1911,"statuses_count":8450,"created_at":"Wed Apr 24 03:25:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658609910146404352\/EwOO3Dzo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658609910146404352\/EwOO3Dzo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1376076583\/1440942802","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5748,"favorite_count":12875,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658527849112965120,"id_str":"658527849112965120","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658527849112965120,"id_str":"658527849112965120","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":658527849117122560,"id_str":"658527849117122560","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvlUAAA_8kK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvlUAAA_8kK.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":658527849175908352,"id_str":"658527849175908352","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvzVAAAABsN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvzVAAAABsN.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"F_nao3","name":"\uff4e\uff41\uff4f","id":1376076583,"id_str":"1376076583","indices":[3,10]}],"symbols":[],"media":[{"id":658527849112965120,"id_str":"658527849112965120","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":658527859347066881,"source_status_id_str":"658527859347066881","source_user_id":1376076583,"source_user_id_str":"1376076583"}]},"extended_entities":{"media":[{"id":658527849112965120,"id_str":"658527849112965120","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvkUkAAco0t.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":658527859347066881,"source_status_id_str":"658527859347066881","source_user_id":1376076583,"source_user_id_str":"1376076583"},{"id":658527849117122560,"id_str":"658527849117122560","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvlUAAA_8kK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvlUAAA_8kK.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":658527859347066881,"source_status_id_str":"658527859347066881","source_user_id":1376076583,"source_user_id_str":"1376076583"},{"id":658527849175908352,"id_str":"658527849175908352","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CSOPlvzVAAAABsN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSOPlvzVAAAABsN.jpg","url":"https:\/\/t.co\/k3EXE9RyYP","display_url":"pic.twitter.com\/k3EXE9RyYP","expanded_url":"http:\/\/twitter.com\/F_nao3\/status\/658527859347066881\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":658527859347066881,"source_status_id_str":"658527859347066881","source_user_id":1376076583,"source_user_id_str":"1376076583"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727563776,"id_str":"663727749727563776","text":"@kk_2124 \ub2f5\ubcc0\uc774 \ub2a6\uc5b4\uc838 \uc8c4\uc1a1\ud569\ub2c8\ub2e4! \uc5b4\ub5a4 \uc0c1\ud488\uc744 \ub9d0\uc500\ud558\uc2dc\ub098\uc694?:-)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663651695860191232,"in_reply_to_status_id_str":"663651695860191232","in_reply_to_user_id":3222326994,"in_reply_to_user_id_str":"3222326994","in_reply_to_screen_name":"kk_2124","user":{"id":2964907814,"id_str":"2964907814","name":"[11\uc6d43\uc9f8\uc8fc\ud734\ubb34]\uaf43\uacf5\ubc29 \uc544\ud0a4\ucf54\ud0a4\uc544","screen_name":"akikokia_flo","location":"somewhere","url":"http:\/\/blog.naver.com\/pm0430","description":"[\uc0ac\uc5c5\uc790\ub4f1\ub85d\ubc88\ud638 592-92-00090] \uaf43\ubfcc\ub9ac\ub294\uc5ec\uc790\/\uaf43\uc73c\ub85c \uc138\uc0c1\uc744 \ubc14\uafc0\uc21c \uc5c6\uc5b4\ub3c4 \ub2f9\uc2e0\uc744 \uc704\ub85c\ud560\uc21c \uc788\uae30\ub97c\/\uc8fc\ubb38\uc740 \ub514\uc5e0\uc73c\ub85c \ubc1b\uc2b5\ub2c8\ub2e4\/\uc8fc\ubb38\uc0c1\ud488 \ubc30\uc1a1 \uc644\ub8cc\ub418\uba74 \ud314\ub85c\uc815\ub9ac\ud569\ub2c8\ub2e4\/\ub0a8\ub4e4 \uc26c\ub294\ub0a0\uc5d0 \uc26c\uace0 \uc790\ub294\uc2dc\uac04\uc5d0 \uc7a1\ub2c8\ub2e4 \ub2f5\uc774 \uc5c6\ub2e4\uace0 \ub178\uc5ec\uc6cc \ub9c8\uc138\uc694.","protected":false,"verified":false,"followers_count":10039,"friends_count":136,"listed_count":154,"favourites_count":797,"statuses_count":11390,"created_at":"Thu Jan 08 03:48:54 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644504673844461568\/BduDTemf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644504673844461568\/BduDTemf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2964907814\/1442462152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kk_2124","name":"kk.","id":3222326994,"id_str":"3222326994","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748686848,"id_str":"663727749748686848","text":"sou ciumenta ya, vai po crl ya, ya","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3882530841,"id_str":"3882530841","name":"mariana","screen_name":"marianabarbaraa","location":"Set\u00fabal, Portugal","url":"http:\/\/instagram.com\/marianabarbaraa","description":null,"protected":false,"verified":false,"followers_count":857,"friends_count":1005,"listed_count":0,"favourites_count":1446,"statuses_count":1568,"created_at":"Tue Oct 06 17:47:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657985456471187456\/CokkQqPS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657985456471187456\/CokkQqPS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3882530841\/1444387229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"58388d8b0de1b405","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/58388d8b0de1b405.json","place_type":"city","name":"Set\u00fabal","full_name":"Set\u00fabal, Portugal","country_code":"PT","country":"Portugal","bounding_box":{"type":"Polygon","coordinates":[[[-9.055620,38.404610],[-9.055620,38.580703],[-8.649745,38.580703],[-8.649745,38.404610]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749735936000,"id_str":"663727749735936000","text":"@ryusei20627 \u751f\u7530\u6597\u771f\u9078\u624b\u6a29\u3084\u308b\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727573554196480,"in_reply_to_status_id_str":"663727573554196480","in_reply_to_user_id":3655259054,"in_reply_to_user_id_str":"3655259054","in_reply_to_screen_name":"ryusei20627","user":{"id":2903524670,"id_str":"2903524670","name":"\u30c1\u30e7\u30a4","screen_name":"Choi2aka","location":"\u7530\u820e\u306e\u30a2\u30db","url":null,"description":"\u597d\u304d\u306a\u5b50\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":151,"friends_count":115,"listed_count":1,"favourites_count":1129,"statuses_count":1794,"created_at":"Tue Nov 18 10:50:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662564974221352960\/Z8e83Gru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662564974221352960\/Z8e83Gru_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903524670\/1446962556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ryusei20627","name":"\u7adc\u8aa0","id":3655259054,"id_str":"3655259054","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761142788,"id_str":"663727749761142788","text":"I'm earning #mPOINTS with #NameDaFlag ! https:\/\/t.co\/ntQ7V9Equb","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3596513719,"id_str":"3596513719","name":"kris cleaver","screen_name":"CleaverKris","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":215,"created_at":"Thu Sep 17 18:05:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mPOINTS","indices":[12,20]},{"text":"NameDaFlag","indices":[26,37]}],"urls":[{"url":"https:\/\/t.co\/ntQ7V9Equb","expanded_url":"http:\/\/bit.ly\/1vfJzPH","display_url":"bit.ly\/1vfJzPH","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001665"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748535297,"id_str":"663727749748535297","text":"@jun_luvluv_ymPi \u308f\u3041\u301c\u2665\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059(^^)\u3088\u304b\u3063\u305f\u3089\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\u301c\u266a\n\uff8c\uff6b\uff9b\uff70\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u3082\u5927\u4e08\u592b\u3067\u3059\u304b(><)??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663647891295248385,"in_reply_to_status_id_str":"663647891295248385","in_reply_to_user_id":3024916897,"in_reply_to_user_id_str":"3024916897","in_reply_to_screen_name":"jun_luvluv_ymPi","user":{"id":971305662,"id_str":"971305662","name":"\u2606char\u2606","screen_name":"6_m2133","location":null,"url":null,"description":"V6\u5927\u597d\u304d\u306a\u30ab\u30df\u4e16\u4ee3\u3067\u3059!!\u5ca1\u7530\u541b\u62c5\u3067\u3059\u304cV6\u306e\u4ef2\u826f\u3057\uff9c\uff81\uff6c\uff9c\uff81\uff6c\u304c\u5927\u597d\u304d\u3067\u3059!!\u305d\u306e\u4ed6\u306b\u3082\u3001\u798f\u58eb\u84bc\u6c70\u2606MOS\uff92\uff9d\u3082\u597d\u304d\u3067\u3059!!\u597d\u304d\u306a\u3082\u306e\u304b\u3076\u3063\u3066\u3044\u305f\u3089\u6c17\u8efd\u306b\uff8c\uff6b\uff9b\uff70\u3057\u3066\u4e0b\u3055\u3044(*\u00b4\u2200\uff40*)\uff8c\uff6b\uff9b\uff70\u306e\u969b\u306f\u6c17\u304c\u4ed8\u304b\u306a\u3044\u306e\u30671\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u7121\u8a00\uff8c\uff6b\uff9b\uff70\u306f\uff8c\uff9e\uff9b\uff6f\uff78\u3059\u308b\u3053\u3068\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":149,"friends_count":232,"listed_count":1,"favourites_count":2273,"statuses_count":6532,"created_at":"Mon Nov 26 04:30:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636718466913796096\/clU-_IRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636718466913796096\/clU-_IRc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971305662\/1434803428","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jun_luvluv_ymPi","name":"\u2661makoto\u2661","id":3024916897,"id_str":"3024916897","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752729600,"id_str":"663727749752729600","text":"RT @takano_tp: \u3010me-me*\u3011\u713c\u8089\u5927\u597d\u304d\u30a4\u30b1\u30e1\u30f3\u30dc\u30fc\u30ab\u30ed\u30a4\u30c9\u4e16\u754c\u306e\u6ce2\u591a\u91ce\uff3c(^o^)\uff0f\n\n\u307f\u3093\u306a\u306e\u5922\u3092\u4f73\u82d7\u308b\u304b\uff3c(^o^)\uff0f https:\/\/t.co\/3jNd6yZDMJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1015095732,"id_str":"1015095732","name":"\u30c8\u30e0\u30d1\u30d1\uff20\u3086\u3044\u307e\u301c\u308b\u968a","screen_name":"happytompapa","location":null,"url":"http:\/\/6225.teacup.com\/hatachan\/bbs","description":"\u30b9\u30ab\u30d1\u30fc\uff01\u30a2\u30c0\u30eb\u30c8\u653e\u9001\u5927\u8cde \u6ce2\u591a\u91ce\u7d50\u8863\u3055\u3093\u306b\u5973\u512a\u8cde\u3001\u4f5c\u54c1\u8cde\u306e\u6295\u7968\u53ca\u3073\u62e1\u6563\u3092\u3057\u3066\u9802\u3044\u305f\u7686\u69d8\u65b9\u3001\u9577\u3044\u671f\u9593\u672c\u5f53\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\uff01\r\n\u7686\u69d8\u3068\u4e00\u7dd2\u306b\u3001\u306f\u305f\u3061\u3083\u3093\u3092\u5fdc\u63f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u305f\u3053\u3068\u3092\u3068\u3066\u3082\u5b09\u3057\u304f\u601d\u3044\u307e\u3059\u3002\r\n\u4eca\u5f8c\u3068\u3082\u3044\u308d\u3044\u308d\u3068\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u7533\u3057\u4e0a\u3052\u307e\u3059\u3002\r\nm(_ _)m","protected":false,"verified":false,"followers_count":801,"friends_count":156,"listed_count":3,"favourites_count":8598,"statuses_count":16095,"created_at":"Sun Dec 16 12:26:50 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000077681988\/67e7d74698241cb9f2a5e481cb4df09d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000077681988\/67e7d74698241cb9f2a5e481cb4df09d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504952941921308672\/hq0navzS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504952941921308672\/hq0navzS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1015095732\/1379591895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:59 +0000 2015","id":663720441761038336,"id_str":"663720441761038336","text":"\u3010me-me*\u3011\u713c\u8089\u5927\u597d\u304d\u30a4\u30b1\u30e1\u30f3\u30dc\u30fc\u30ab\u30ed\u30a4\u30c9\u4e16\u754c\u306e\u6ce2\u591a\u91ce\uff3c(^o^)\uff0f\n\n\u307f\u3093\u306a\u306e\u5922\u3092\u4f73\u82d7\u308b\u304b\uff3c(^o^)\uff0f https:\/\/t.co\/3jNd6yZDMJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189609390,"id_str":"2189609390","name":"\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u9ad8\u91ce@\u30c0\u30eb\u30de\u5e2b\u5320","screen_name":"takano_tp","location":null,"url":"http:\/\/me-me.jp\/","description":"AV\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3\u3001T-POWERS\u306e\u654f\u8155\u307d\u3093\u3053\u3064\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3067\u3059( ^\u03c9^ )\u306b\u3084\u306b\u3084 \u30d8\u30c3\u30c0\u30fc\u306f\u4eee\u306e\u59ff\u3067\u3059\u3002\u203b\u7a00\u306b\u5199\u771f\u3092\u64ae\u308d\u3046\u3068\u3059\u308b\u65b9\u304c\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3059\u304c\u672c\u7269\u306e\u9ad8\u91ce\u306e\u64ae\u5f71\u306f\u3054\u9060\u616e\u4e0b\u3055\u3044m(._.)m","protected":false,"verified":false,"followers_count":8847,"friends_count":151,"listed_count":99,"favourites_count":9,"statuses_count":10733,"created_at":"Tue Nov 12 04:36:14 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3991CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663343222370906112\/iRTPfYSM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663343222370906112\/iRTPfYSM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189609390\/1446266810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720437491232772,"id_str":"663720437491232772","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","url":"https:\/\/t.co\/3jNd6yZDMJ","display_url":"pic.twitter.com\/3jNd6yZDMJ","expanded_url":"http:\/\/twitter.com\/takano_tp\/status\/663720441761038336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720437491232772,"id_str":"663720437491232772","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","url":"https:\/\/t.co\/3jNd6yZDMJ","display_url":"pic.twitter.com\/3jNd6yZDMJ","expanded_url":"http:\/\/twitter.com\/takano_tp\/status\/663720441761038336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takano_tp","name":"\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u9ad8\u91ce@\u30c0\u30eb\u30de\u5e2b\u5320","id":2189609390,"id_str":"2189609390","indices":[3,13]}],"symbols":[],"media":[{"id":663720437491232772,"id_str":"663720437491232772","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","url":"https:\/\/t.co\/3jNd6yZDMJ","display_url":"pic.twitter.com\/3jNd6yZDMJ","expanded_url":"http:\/\/twitter.com\/takano_tp\/status\/663720441761038336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720441761038336,"source_status_id_str":"663720441761038336","source_user_id":2189609390,"source_user_id_str":"2189609390"}]},"extended_entities":{"media":[{"id":663720437491232772,"id_str":"663720437491232772","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOKrU8AQ1lm6.jpg","url":"https:\/\/t.co\/3jNd6yZDMJ","display_url":"pic.twitter.com\/3jNd6yZDMJ","expanded_url":"http:\/\/twitter.com\/takano_tp\/status\/663720441761038336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720441761038336,"source_status_id_str":"663720441761038336","source_user_id":2189609390,"source_user_id_str":"2189609390"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748670464,"id_str":"663727749748670464","text":"RT @Dr_alqarnee: \" \u0648\u064e\u0623\u064e\u0642\u0645\u0652 \u0627\u0644\u0635\u064e\u0651\u0644\u064e\u0627\u0629 \u0644\u0630\u0643\u0652\u0631\u064a\"\n\u0642\u0645 \u0644\u062a\u0630\u0643\u0631 \u0631\u0628\u0643\u060c \u0648\u062a\u064f\u0633\u0628\u062d\u0647\u060c \u0648\u062a\u064f\u0642\u062f\u0651\u0633\u0647 \u0641\u064a \u0623\u0639\u0638\u0645 \u0639\u0628\u0627\u062f\u0629 \u0648\u0623\u062c\u0644\u0651 \u0637\u0627\u0639\u0629.\n#\u0627\u0644\u0635\u0644\u0627\u0629 https:\/\/t.co\/IWl0UfYWG4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239931390,"id_str":"3239931390","name":"hessa saad","screen_name":"hessa11saad","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":167,"listed_count":0,"favourites_count":2,"statuses_count":73,"created_at":"Mon Jun 08 14:50:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607926147943268354\/jhuHHWLQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607926147943268354\/jhuHHWLQ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:08 +0000 2015","id":663716201080741888,"id_str":"663716201080741888","text":"\" \u0648\u064e\u0623\u064e\u0642\u0645\u0652 \u0627\u0644\u0635\u064e\u0651\u0644\u064e\u0627\u0629 \u0644\u0630\u0643\u0652\u0631\u064a\"\n\u0642\u0645 \u0644\u062a\u0630\u0643\u0631 \u0631\u0628\u0643\u060c \u0648\u062a\u064f\u0633\u0628\u062d\u0647\u060c \u0648\u062a\u064f\u0642\u062f\u0651\u0633\u0647 \u0641\u064a \u0623\u0639\u0638\u0645 \u0639\u0628\u0627\u062f\u0629 \u0648\u0623\u062c\u0644\u0651 \u0637\u0627\u0639\u0629.\n#\u0627\u0644\u0635\u0644\u0627\u0629 https:\/\/t.co\/IWl0UfYWG4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242245578,"id_str":"242245578","name":"\u0639\u0627\u0626\u0636 \u0627\u0644\u0642\u0631\u0646\u064a","screen_name":"Dr_alqarnee","location":"Saudi Arabia","url":"http:\/\/www.youtube.com\/drqarnee","description":"\u062f\u0643\u062a\u0648\u0631\u0627\u0647 \u0641\u064a \u0627\u0644\u062d\u062f\u064a\u062b \u0627\u0644\u0646\u0628\u0648\u064a \u0648\u0645\u0624\u0644\u0641 \u0648\u062f\u0627\u0639\u064a\u0629 \u0625\u0633\u0644\u0627\u0645\u064a http:\/\/t.co\/1hv579EuCY https:\/\/t.co\/4mIoUXVerm http:\/\/t.co\/T9syeZgXDf\n\u062d\u0633\u0627\u0628 \u0633\u0646\u0627\u0628 \u0634\u0627\u062a\n dralqarnee","protected":false,"verified":true,"followers_count":10681554,"friends_count":161,"listed_count":17378,"favourites_count":324,"statuses_count":34433,"created_at":"Mon Jan 24 09:22:31 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649518343280439297\/LcIfDMWB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649518343280439297\/LcIfDMWB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242245578\/1446056152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":512,"favorite_count":278,"entities":{"hashtags":[{"text":"\u0627\u0644\u0635\u0644\u0627\u0629","indices":[87,94]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716174119702528,"id_str":"663716174119702528","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","url":"https:\/\/t.co\/IWl0UfYWG4","display_url":"pic.twitter.com\/IWl0UfYWG4","expanded_url":"http:\/\/twitter.com\/Dr_alqarnee\/status\/663716201080741888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716174119702528,"id_str":"663716174119702528","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","url":"https:\/\/t.co\/IWl0UfYWG4","display_url":"pic.twitter.com\/IWl0UfYWG4","expanded_url":"http:\/\/twitter.com\/Dr_alqarnee\/status\/663716201080741888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0635\u0644\u0627\u0629","indices":[104,111]}],"urls":[],"user_mentions":[{"screen_name":"Dr_alqarnee","name":"\u0639\u0627\u0626\u0636 \u0627\u0644\u0642\u0631\u0646\u064a","id":242245578,"id_str":"242245578","indices":[3,15]}],"symbols":[],"media":[{"id":663716174119702528,"id_str":"663716174119702528","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","url":"https:\/\/t.co\/IWl0UfYWG4","display_url":"pic.twitter.com\/IWl0UfYWG4","expanded_url":"http:\/\/twitter.com\/Dr_alqarnee\/status\/663716201080741888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716201080741888,"source_status_id_str":"663716201080741888","source_user_id":242245578,"source_user_id_str":"242245578"}]},"extended_entities":{"media":[{"id":663716174119702528,"id_str":"663716174119702528","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-WAYWEAATv1O.jpg","url":"https:\/\/t.co\/IWl0UfYWG4","display_url":"pic.twitter.com\/IWl0UfYWG4","expanded_url":"http:\/\/twitter.com\/Dr_alqarnee\/status\/663716201080741888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716201080741888,"source_status_id_str":"663716201080741888","source_user_id":242245578,"source_user_id_str":"242245578"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749752872960,"id_str":"663727749752872960","text":"@ALYSSASDIAMOND girl u be looking fine af in your avi #whatdatmouthdo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3905386229,"in_reply_to_user_id_str":"3905386229","in_reply_to_screen_name":"ALYSSASDIAMOND","user":{"id":3905515883,"id_str":"3905515883","name":"Kate's Diamond","screen_name":"katesdiamond1","location":"Macon, GA","url":null,"description":"just a pi girl living in a lonely world. can't wait to be united with my sweet other half on saturday! #shoutouteugenia #shemydimequeen","protected":false,"verified":false,"followers_count":35,"friends_count":62,"listed_count":0,"favourites_count":6,"statuses_count":10,"created_at":"Fri Oct 09 03:55:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652342375508013056\/XYEq3AwJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652342375508013056\/XYEq3AwJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3905515883\/1444367918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"whatdatmouthdo","indices":[54,69]}],"urls":[],"user_mentions":[{"screen_name":"ALYSSASDIAMOND","name":"Alyssa's DIME","id":3905386229,"id_str":"3905386229","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001663"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731741696,"id_str":"663727749731741696","text":"Epic 12.9-inch iPad Pro Available to Order Online Wednesday & Arrives in Stores Later This Week: CUPERTINO, Ca... https:\/\/t.co\/oVOWNAjye5","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2919665134,"id_str":"2919665134","name":"S1Advisors","screen_name":"S1Advisors","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":7,"listed_count":16,"favourites_count":0,"statuses_count":9648,"created_at":"Sat Dec 13 13:43:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543763623655403520\/9aML_kGl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543763623655403520\/9aML_kGl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2919665134\/1418511566","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oVOWNAjye5","expanded_url":"http:\/\/apple.co\/1NEsTvF","display_url":"apple.co\/1NEsTvF","indices":[118,141]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749736095744,"id_str":"663727749736095744","text":"@CinHermosid estoy re calmada\ud83d\ude4b vos nose \ud83d\ude0f\u2b50","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726447949950976,"in_reply_to_status_id_str":"663726447949950976","in_reply_to_user_id":370218337,"in_reply_to_user_id_str":"370218337","in_reply_to_screen_name":"CinHermosid","user":{"id":176460944,"id_str":"176460944","name":"-","screen_name":"Micaela_PyP","location":" Argentina ","url":null,"description":"\u2022 Somos tanta gente.. sola y diferente \u2022 [6-11-10] \u2661. pisciana. HaAshFan\u2661 [3-11-15]","protected":false,"verified":false,"followers_count":1841,"friends_count":735,"listed_count":8,"favourites_count":1852,"statuses_count":113350,"created_at":"Mon Aug 09 16:09:26 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433094874317860865\/sYJBzSuq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433094874317860865\/sYJBzSuq.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F45B88","profile_text_color":"E78A9F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649083435055742977\/DlprFGB__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649083435055742977\/DlprFGB__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/176460944\/1446649035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CinHermosid","name":"..........","id":370218337,"id_str":"370218337","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749740146688,"id_str":"663727749740146688","text":"RT @inshalablog: Siempre parece imposible hasta que se hace. Nelson #Mandela #FrasesViajeras\n\u00bfOs ha ocurrido alguna vez #viajeros? https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355329211,"id_str":"355329211","name":"Traveling Feet","screen_name":"WorldTravelFeet","location":"Distrito Federal, M\u00e9xico","url":"http:\/\/myworldwidetravelingfeet.wordpress.com","description":"Un par de pies mexicanos adictos a viajar por M\u00e9xico y el mundo. Pol\u00edglota, adoro comer bien y conocer otras culturas \u00a1Imposible dejar de viajar! #FotoViajera","protected":false,"verified":false,"followers_count":8216,"friends_count":3051,"listed_count":253,"favourites_count":31536,"statuses_count":34089,"created_at":"Mon Aug 15 05:29:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165626709\/3qQre9k5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165626709\/3qQre9k5.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620315768635420673\/IG3FRR7e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620315768635420673\/IG3FRR7e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355329211\/1348552669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:18:41 +0000 2015","id":663631784316444672,"id_str":"663631784316444672","text":"Siempre parece imposible hasta que se hace. Nelson #Mandela #FrasesViajeras\n\u00bfOs ha ocurrido alguna vez #viajeros? https:\/\/t.co\/S0t7VQw7tI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1256801138,"id_str":"1256801138","name":"Inshala Travel","screen_name":"inshalablog","location":"Madrid","url":"http:\/\/www.inshala.es","description":"Blog de viajes, experiencias de viaje. Si te gusta #viajar y escribes sobre #viajes o haces #fotos, las publicamos. https:\/\/www.facebook.com\/InshalaTravelBlog","protected":false,"verified":false,"followers_count":2117,"friends_count":1745,"listed_count":115,"favourites_count":3324,"statuses_count":6321,"created_at":"Sun Mar 10 11:35:46 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3448010170\/0d690f9cfef03f66fd57e6c993bdc60b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3448010170\/0d690f9cfef03f66fd57e6c993bdc60b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256801138\/1408442228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":12,"entities":{"hashtags":[{"text":"Mandela","indices":[51,59]},{"text":"FrasesViajeras","indices":[60,75]},{"text":"viajeros","indices":[103,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663631780226928640,"id_str":"663631780226928640","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","url":"https:\/\/t.co\/S0t7VQw7tI","display_url":"pic.twitter.com\/S0t7VQw7tI","expanded_url":"http:\/\/twitter.com\/inshalablog\/status\/663631784316444672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":788,"h":525,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663631780226928640,"id_str":"663631780226928640","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","url":"https:\/\/t.co\/S0t7VQw7tI","display_url":"pic.twitter.com\/S0t7VQw7tI","expanded_url":"http:\/\/twitter.com\/inshalablog\/status\/663631784316444672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":788,"h":525,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Mandela","indices":[68,76]},{"text":"FrasesViajeras","indices":[77,92]},{"text":"viajeros","indices":[120,129]}],"urls":[],"user_mentions":[{"screen_name":"inshalablog","name":"Inshala Travel","id":1256801138,"id_str":"1256801138","indices":[3,15]}],"symbols":[],"media":[{"id":663631780226928640,"id_str":"663631780226928640","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","url":"https:\/\/t.co\/S0t7VQw7tI","display_url":"pic.twitter.com\/S0t7VQw7tI","expanded_url":"http:\/\/twitter.com\/inshalablog\/status\/663631784316444672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":788,"h":525,"resize":"fit"}},"source_status_id":663631784316444672,"source_status_id_str":"663631784316444672","source_user_id":1256801138,"source_user_id_str":"1256801138"}]},"extended_entities":{"media":[{"id":663631780226928640,"id_str":"663631780226928640","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWxlooWEAAXAl0.jpg","url":"https:\/\/t.co\/S0t7VQw7tI","display_url":"pic.twitter.com\/S0t7VQw7tI","expanded_url":"http:\/\/twitter.com\/inshalablog\/status\/663631784316444672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":788,"h":525,"resize":"fit"}},"source_status_id":663631784316444672,"source_status_id_str":"663631784316444672","source_user_id":1256801138,"source_user_id_str":"1256801138"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001660"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749735944192,"id_str":"663727749735944192","text":"RT @thetype5sos: like if youre online \u0361\u00b0 \u035c\u0296 \u0361\u00b0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2668283335,"id_str":"2668283335","name":"taylor loves cal :-)","screen_name":"Cal_ummm","location":"Michigan, USA","url":"https:\/\/twitter.com\/crawfordcollins\/status\/622926106333609984","description":"calum is hot","protected":false,"verified":false,"followers_count":559,"friends_count":433,"listed_count":2,"favourites_count":7316,"statuses_count":6690,"created_at":"Tue Jul 22 03:29:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662098506463748096\/2LmCxkQj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662098506463748096\/2LmCxkQj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2668283335\/1446668193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:35 +0000 2015","id":663725122906386432,"id_str":"663725122906386432","text":"like if youre online \u0361\u00b0 \u035c\u0296 \u0361\u00b0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2978706496,"id_str":"2978706496","name":"5sos the type","screen_name":"thetype5sos","location":"michael's ff here:","url":"http:\/\/wattpad.com\/user\/nicolequia","description":"5sos may be a little like this \u30fd(*\u2312\u2207\u2312*)\uff89 || @mgclifflol @5sosant","protected":false,"verified":false,"followers_count":3427,"friends_count":17,"listed_count":8,"favourites_count":108,"statuses_count":387,"created_at":"Wed Jan 14 20:11:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639640017523113984\/MQylrTfH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639640017523113984\/MQylrTfH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978706496\/1441337051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thetype5sos","name":"5sos the type","id":2978706496,"id_str":"2978706496","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001659"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749744500741,"id_str":"663727749744500741","text":"\u041c\u043d\u0435 \u043f\u043e\u043d\u0440\u0430\u0432\u0438\u043b\u043e\u0441\u044c \u0432\u0438\u0434\u0435\u043e \"\u041f\u0410\u041a\u0418 \u041f\u041e 35.000 + \u0420\u041e\u0417\u042b\u0413\u0420\u042b\u0428 FIFA 16.\" (https:\/\/t.co\/TEYiGQzZi5) \u043d\u0430 @YouTube.","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243780590,"id_str":"243780590","name":"Unress","screen_name":"Unress","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":1181,"listed_count":0,"favourites_count":2,"statuses_count":737,"created_at":"Thu Jan 27 20:07:36 +0000 2011","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TEYiGQzZi5","expanded_url":"http:\/\/youtu.be\/QietuRVJXLc?a","display_url":"youtu.be\/QietuRVJXLc?a","indices":[60,83]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[88,96]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080001661"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749765267456,"id_str":"663727749765267456","text":"\u4e2d\u9262\u304f\u3093\u306a\u304f\u3057\u305f\u3068\u601d\u3063\u3066\u305f\u6f2b\u753b\u898b\u3064\u304b\u308a\u307e\u3057\u305f\n\u826f\u304b\u3063\u305f\u3067\u3059\u660e\u65e5\u6301\u3063\u3066\u304f\u306d\u3068\u8a00\u3044\u3064\u3064\u305c\u3063\u305f\u3044\u5fd8\u308c\u307e\u3059\u308f\u304b\u3063\u3066\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3064012046,"id_str":"3064012046","name":"\u3082\u3082\u304b","screen_name":"tftfxxx1ks","location":"\u958b\u5e55\u4e00\u8ecd","url":null,"description":"\u305b\u3093\u3057\u3087\u3046(16)\u85e4\u30f6\u8c37\u592a\u8f14 \u26be\ufe0e\u26be\ufe0e\u26be\ufe0e\u5730\u5143\u30b9\u30ad\u2721\uff61:*","protected":false,"verified":false,"followers_count":747,"friends_count":784,"listed_count":1,"favourites_count":10205,"statuses_count":10156,"created_at":"Fri Mar 06 04:53:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662912897278865408\/JljxPE4z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662912897278865408\/JljxPE4z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064012046\/1445591659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001666"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727522817,"id_str":"663727749727522817","text":"RT @DORIANS223: \u5148\u65e5\u3054\u7e01\u304c\u3042\u308a\u307e\u3057\u3066\u3001\u798f\u5ca1\u3067\u306eSHINee\u306e\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u30a4\u30d9\u30f3\u30c8\u306eMC\u3092\u3084\u3089\u3055\u305b\u3066\u9802\u304d\u307e\u3057\u305fm(_ _)m\n\n\u30e1\u30f3\u30d0\u30fc\u307f\u3093\u306a\u597d\u9752\u5e74\u3067\u3001\u304b\u308f\u3044\u3089\u3057\u3044\u3057\u3001\u9762\u767d\u304f\u3066\u3001\u304b\u3063\u3053\u3088\u304b\u3063\u305fw\n\n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f(^_-)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2382179617,"id_str":"2382179617","name":"\u3053\u306e","screen_name":"2l0s7ck2u9ok6nk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":130,"listed_count":2,"favourites_count":1890,"statuses_count":5441,"created_at":"Mon Mar 10 13:48:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617254916520701952\/oa2gy_Z-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617254916520701952\/oa2gy_Z-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2382179617\/1436000015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:39:56 +0000 2015","id":663682429895360512,"id_str":"663682429895360512","text":"\u5148\u65e5\u3054\u7e01\u304c\u3042\u308a\u307e\u3057\u3066\u3001\u798f\u5ca1\u3067\u306eSHINee\u306e\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u30a4\u30d9\u30f3\u30c8\u306eMC\u3092\u3084\u3089\u3055\u305b\u3066\u9802\u304d\u307e\u3057\u305fm(_ _)m\n\n\u30e1\u30f3\u30d0\u30fc\u307f\u3093\u306a\u597d\u9752\u5e74\u3067\u3001\u304b\u308f\u3044\u3089\u3057\u3044\u3057\u3001\u9762\u767d\u304f\u3066\u3001\u304b\u3063\u3053\u3088\u304b\u3063\u305fw\n\n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f(^_-)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360313263,"id_str":"360313263","name":"\u3069\u308a\u3042\u3093\u305a \u5824","screen_name":"DORIANS223","location":"\u6771\u4eac\u90fd","url":"https:\/\/www.facebook.com\/puuuuuun","description":"\u3088\u3057\u3082\u3068\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u30fb\u30a8\u30fc\u30b8\u30a7\u30f3\u30b7\u30fc\u300c\u3069\u308a\u3042\u3093\u305a\u300d\u3068\u3044\u3046\u30b3\u30f3\u30d3\u3001\u75e9\u305b\u3066\u308b\u30c4\u30c3\u30b3\u30df\u306e\u65b9\u2606","protected":false,"verified":false,"followers_count":4617,"friends_count":382,"listed_count":99,"favourites_count":1,"statuses_count":6006,"created_at":"Tue Aug 23 01:01:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648479010339446785\/eslDOMDH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648479010339446785\/eslDOMDH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360313263\/1440430511","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":504,"favorite_count":281,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DORIANS223","name":"\u3069\u308a\u3042\u3093\u305a \u5824","id":360313263,"id_str":"360313263","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749744365568,"id_str":"663727749744365568","text":"RT @thirtysecvideos: amazing voice \ud83d\ude0d\ud83d\ude0d @francezcaa217 https:\/\/t.co\/k95tF6uKSg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1645417944,"id_str":"1645417944","name":"\u2022 Dead Souls \u2022","screen_name":"Iam_Irulz","location":null,"url":null,"description":"18 \u2022 Dytto is cute \u2022 ig : @IAm_Irulz \u2022","protected":false,"verified":false,"followers_count":290,"friends_count":189,"listed_count":2,"favourites_count":6832,"statuses_count":6011,"created_at":"Sun Aug 04 15:15:03 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000044261106\/6e05a48d548fcc6a2ebda6658d7ea447.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000044261106\/6e05a48d548fcc6a2ebda6658d7ea447.jpeg","profile_background_tile":false,"profile_link_color":"17406C","profile_sidebar_border_color":"2280A9","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663201703903150082\/nnk0cbQl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663201703903150082\/nnk0cbQl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1645417944\/1446954583","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 21:01:28 +0000 2015","id":661287030501036033,"id_str":"661287030501036033","text":"amazing voice \ud83d\ude0d\ud83d\ude0d @francezcaa217 https:\/\/t.co\/k95tF6uKSg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3349705401,"id_str":"3349705401","name":"Thirty Second Videos","screen_name":"thirtysecvideos","location":null,"url":null,"description":"turn on my tweet notifications if you enjoy singing, rapping, and funny videos | thirtysecvideos@gmail.com","protected":false,"verified":false,"followers_count":42950,"friends_count":94,"listed_count":21,"favourites_count":32,"statuses_count":226,"created_at":"Sun Jun 28 20:49:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615266434042630144\/YPVoegwy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615266434042630144\/YPVoegwy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3349705401\/1435524917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":387,"favorite_count":1418,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"francezcaa217","name":"Sauce","id":1732330482,"id_str":"1732330482","indices":[17,31]}],"symbols":[],"media":[{"id":661286837382717441,"id_str":"661286837382717441","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","url":"https:\/\/t.co\/k95tF6uKSg","display_url":"pic.twitter.com\/k95tF6uKSg","expanded_url":"http:\/\/twitter.com\/thirtysecvideos\/status\/661287030501036033\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661286837382717441,"id_str":"661286837382717441","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","url":"https:\/\/t.co\/k95tF6uKSg","display_url":"pic.twitter.com\/k95tF6uKSg","expanded_url":"http:\/\/twitter.com\/thirtysecvideos\/status\/661287030501036033\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":27867,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/pl\/DQqFUtrek9LYlpYb.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/360x640\/OvCPb891hfh9VTvP.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/720x1280\/YMZqd3wJlARDU8mC.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/pl\/DQqFUtrek9LYlpYb.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/180x320\/0ACN8ee9F27Hwl5f.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/360x640\/OvCPb891hfh9VTvP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thirtysecvideos","name":"Thirty Second Videos","id":3349705401,"id_str":"3349705401","indices":[3,19]},{"screen_name":"francezcaa217","name":"Sauce","id":1732330482,"id_str":"1732330482","indices":[38,52]}],"symbols":[],"media":[{"id":661286837382717441,"id_str":"661286837382717441","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","url":"https:\/\/t.co\/k95tF6uKSg","display_url":"pic.twitter.com\/k95tF6uKSg","expanded_url":"http:\/\/twitter.com\/thirtysecvideos\/status\/661287030501036033\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":661287030501036033,"source_status_id_str":"661287030501036033","source_user_id":3349705401,"source_user_id_str":"3349705401"}]},"extended_entities":{"media":[{"id":661286837382717441,"id_str":"661286837382717441","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661286837382717441\/pu\/img\/m_95ry_DlFFxTlrk.jpg","url":"https:\/\/t.co\/k95tF6uKSg","display_url":"pic.twitter.com\/k95tF6uKSg","expanded_url":"http:\/\/twitter.com\/thirtysecvideos\/status\/661287030501036033\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":661287030501036033,"source_status_id_str":"661287030501036033","source_user_id":3349705401,"source_user_id_str":"3349705401","video_info":{"aspect_ratio":[9,16],"duration_millis":27867,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/pl\/DQqFUtrek9LYlpYb.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/360x640\/OvCPb891hfh9VTvP.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/720x1280\/YMZqd3wJlARDU8mC.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/pl\/DQqFUtrek9LYlpYb.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/180x320\/0ACN8ee9F27Hwl5f.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661286837382717441\/pu\/vid\/360x640\/OvCPb891hfh9VTvP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001661"} +{"delete":{"status":{"id":663715380725051393,"id_str":"663715380725051393","user_id":3318447606,"user_id_str":"3318447606"},"timestamp_ms":"1447080001940"}} +{"delete":{"status":{"id":663715280091115521,"id_str":"663715280091115521","user_id":3631124837,"user_id_str":"3631124837"},"timestamp_ms":"1447080001914"}} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727588352,"id_str":"663727749727588352","text":"Filosofi Kopi The Movie mendapat kesempatan utk diputar pd acara Taipei Golden Horse Film Festival 2015. #IRadioInfo https:\/\/t.co\/rvLVbQaj3i","source":"\u003ca href=\"http:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":239262633,"id_str":"239262633","name":"I Radio Jakarta","screen_name":"IListenersJkt","location":"Jakarta","url":"http:\/\/www.iradiofm.com","description":"Tempatnya I-Listeners dapetin informasi yang terbaik dari I Radio.","protected":false,"verified":false,"followers_count":7424,"friends_count":1129,"listed_count":21,"favourites_count":1,"statuses_count":19675,"created_at":"Mon Jan 17 06:04:45 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000075489209\/76ceb57c75ae13259c48ba072cfe2df9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000075489209\/76ceb57c75ae13259c48ba072cfe2df9.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553066429738524672\/DEhREIi3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553066429738524672\/DEhREIi3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239262633\/1420696303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IRadioInfo","indices":[105,116]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727748993564672,"id_str":"663727748993564672","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3wJUwAA-GEm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3wJUwAA-GEm.jpg","url":"https:\/\/t.co\/rvLVbQaj3i","display_url":"pic.twitter.com\/rvLVbQaj3i","expanded_url":"http:\/\/twitter.com\/IListenersJkt\/status\/663727749727588352\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727748993564672,"id_str":"663727748993564672","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3wJUwAA-GEm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3wJUwAA-GEm.jpg","url":"https:\/\/t.co\/rvLVbQaj3i","display_url":"pic.twitter.com\/rvLVbQaj3i","expanded_url":"http:\/\/twitter.com\/IListenersJkt\/status\/663727749727588352\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749727657985,"id_str":"663727749727657985","text":"A veces me sumerjo en tanta duda, ke me ahogo. https:\/\/t.co\/ssQH8MwOEe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746421206,"id_str":"2746421206","name":"Jade","screen_name":"1971Ajaione","location":null,"url":null,"description":"B\u00e9same antes de morir!!!","protected":false,"verified":false,"followers_count":355,"friends_count":334,"listed_count":7,"favourites_count":68502,"statuses_count":19933,"created_at":"Mon Aug 18 14:41:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660012779286458368\/zyQi6Zgt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660012779286458368\/zyQi6Zgt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2746421206\/1446194261","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727748242886656,"id_str":"663727748242886656","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3tWWUAAOn3Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3tWWUAAOn3Z.jpg","url":"https:\/\/t.co\/ssQH8MwOEe","display_url":"pic.twitter.com\/ssQH8MwOEe","expanded_url":"http:\/\/twitter.com\/1971Ajaione\/status\/663727749727657985\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727748242886656,"id_str":"663727748242886656","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3tWWUAAOn3Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3tWWUAAOn3Z.jpg","url":"https:\/\/t.co\/ssQH8MwOEe","display_url":"pic.twitter.com\/ssQH8MwOEe","expanded_url":"http:\/\/twitter.com\/1971Ajaione\/status\/663727749727657985\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001657"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749744500740,"id_str":"663727749744500740","text":"\u3010\u8a98\u60d1\u306b\u8ca0\u3051\u305d\u3046\u306a\u6642\u306e\u9b54\u6cd5\u306e\u8a00\u8449\u3011\u4f55\u4e8b\u3082\u6210\u529f\u3057\u305f\u4eba\u306f\u3001\u305d\u308c\u3092\u624b\u306b\u5165\u308c\u308b\u70ba\u306e\u6642\u9593\u3092\u60dc\u3057\u307e\u305a\u306b\u4f7f\u3063\u305f\u4eba\u3002 https:\/\/t.co\/2VmSyhbuQA","source":"\u003ca href=\"https:\/\/twitter.com\/nogaligazo\" rel=\"nofollow\"\u003e\u2606\u2605\u30ce\u30fc\u30b2\u30fc\u30e0\u30ce\u30fc\u30e9\u30a4\u30d5\u2605\u2606\u753b\u50cf\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227075688,"id_str":"3227075688","name":"365\u65e5\u9811\u5f35\u308b\u30c0\u30a4\u30a8\u30c3\u30c8\uff01","screen_name":"365_diet_","location":null,"url":null,"description":"\u590f\u306b\u5411\u3051\u3066\u30c0\u30a4\u30a8\u30c3\u30c8\u4e2d\u3067\u3059\uff01 \u30e2\u30c1\u30d9\uff35\uff30\u306a\u60c5\u5831\uff06\u753b\u50cf\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\uff3e\uff3e","protected":false,"verified":false,"followers_count":92,"friends_count":1792,"listed_count":1,"favourites_count":0,"statuses_count":3669,"created_at":"Tue May 26 13:13:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607169400290951168\/pvWXqb8Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607169400290951168\/pvWXqb8Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227075688\/1433596474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727749660614657,"id_str":"663727749660614657","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3yoXIAEqHn6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3yoXIAEqHn6.jpg","url":"https:\/\/t.co\/2VmSyhbuQA","display_url":"pic.twitter.com\/2VmSyhbuQA","expanded_url":"http:\/\/twitter.com\/365_diet_\/status\/663727749744500740\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727749660614657,"id_str":"663727749660614657","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3yoXIAEqHn6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3yoXIAEqHn6.jpg","url":"https:\/\/t.co\/2VmSyhbuQA","display_url":"pic.twitter.com\/2VmSyhbuQA","expanded_url":"http:\/\/twitter.com\/365_diet_\/status\/663727749744500740\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080001661"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749748625412,"id_str":"663727749748625412","text":"Get Weather Updates from The Weather Channel. 09:40:01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2312087779,"id_str":"2312087779","name":"FNgtbt","screen_name":"FNgtbt","location":null,"url":null,"description":"Continuous price updates for FABRINET","protected":false,"verified":false,"followers_count":7,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":69473,"created_at":"Sun Jan 26 16:05:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001662"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749731893248,"id_str":"663727749731893248","text":"RT @ArlisDoNotChill: MORE LIKE DA ROACHES http:\/\/t.co\/IE6m6wBoMR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":560161314,"id_str":"560161314","name":"joe","screen_name":"jdollasss","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":616,"friends_count":224,"listed_count":0,"favourites_count":1571,"statuses_count":32050,"created_at":"Sun Apr 22 05:27:49 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"630057","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435124199271583745\/Ua7LoJVr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435124199271583745\/Ua7LoJVr.png","profile_background_tile":true,"profile_link_color":"FF00E1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660867005986287617\/XKUVtrFs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660867005986287617\/XKUVtrFs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560161314\/1441661463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 29 01:01:01 +0000 2014","id":527263802992386048,"id_str":"527263802992386048","text":"MORE LIKE DA ROACHES http:\/\/t.co\/IE6m6wBoMR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2461487263,"id_str":"2461487263","name":"God","screen_name":"ArlisDoNotChill","location":"Boston, MA","url":null,"description":"Don't follow me if you take your hair off when you go to bed.","protected":false,"verified":false,"followers_count":19767,"friends_count":888,"listed_count":59,"favourites_count":385,"statuses_count":89028,"created_at":"Thu Apr 24 13:15:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662335926295592960\/yTcrxR1P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662335926295592960\/yTcrxR1P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2461487263\/1443651183","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28623,"favorite_count":28279,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":527263790094897152,"id_str":"527263790094897152","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","url":"http:\/\/t.co\/IE6m6wBoMR","display_url":"pic.twitter.com\/IE6m6wBoMR","expanded_url":"http:\/\/twitter.com\/ArlisDoNotChill\/status\/527263802992386048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":527263790094897152,"id_str":"527263790094897152","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","url":"http:\/\/t.co\/IE6m6wBoMR","display_url":"pic.twitter.com\/IE6m6wBoMR","expanded_url":"http:\/\/twitter.com\/ArlisDoNotChill\/status\/527263802992386048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArlisDoNotChill","name":"God","id":2461487263,"id_str":"2461487263","indices":[3,19]}],"symbols":[],"media":[{"id":527263790094897152,"id_str":"527263790094897152","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","url":"http:\/\/t.co\/IE6m6wBoMR","display_url":"pic.twitter.com\/IE6m6wBoMR","expanded_url":"http:\/\/twitter.com\/ArlisDoNotChill\/status\/527263802992386048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":527263802992386048,"source_status_id_str":"527263802992386048","source_user_id":2461487263,"source_user_id_str":"2461487263"}]},"extended_entities":{"media":[{"id":527263790094897152,"id_str":"527263790094897152","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1E3n5-IUAAJ4s1.jpg","url":"http:\/\/t.co\/IE6m6wBoMR","display_url":"pic.twitter.com\/IE6m6wBoMR","expanded_url":"http:\/\/twitter.com\/ArlisDoNotChill\/status\/527263802992386048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":527263802992386048,"source_status_id_str":"527263802992386048","source_user_id":2461487263,"source_user_id_str":"2461487263"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080001658"} +{"created_at":"Mon Nov 09 14:40:01 +0000 2015","id":663727749761224704,"id_str":"663727749761224704","text":"LA SEXTA NOCHE\n\nPor Pedro Taracena\n\nhttps:\/\/t.co\/xTVB1ggtPy https:\/\/t.co\/tgl3w4FJYz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":584111002,"id_str":"584111002","name":"Pedro Taracena","screen_name":"taracena2012","location":"Madrid","url":"http:\/\/segunda-republica-espanola.blogspot.com.es\/","description":"Dem\u00f3crata. Pertenece a una familia de represaliados. Reniego de la Transici\u00f3n. Fraude consumado para los espa\u00f1oles. Caminamos hacia la III Rep\u00fablica.","protected":false,"verified":false,"followers_count":198,"friends_count":457,"listed_count":4,"favourites_count":0,"statuses_count":4564,"created_at":"Fri May 18 19:53:59 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555447257\/guernica1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555447257\/guernica1.jpg","profile_background_tile":true,"profile_link_color":"00B395","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3546769393\/e8d5c7e86455cdeaf10dce43bcdae7bc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3546769393\/e8d5c7e86455cdeaf10dce43bcdae7bc_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ea520f3528c9b3e4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ea520f3528c9b3e4.json","place_type":"admin","name":"Madrid","full_name":"Madrid, Comunidad de Madrid","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[-4.579175,39.884537],[-4.579175,41.164911],[-3.053132,41.164911],[-3.053132,39.884537]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xTVB1ggtPy","expanded_url":"http:\/\/cuartopoder-hipolito.blogspot.com.es\/2015\/10\/la-sexta-noche.html","display_url":"cuartopoder-hipolito.blogspot.com.es\/2015\/10\/la-sex\u2026","indices":[36,59]}],"user_mentions":[],"symbols":[],"media":[{"id":663727748523933696,"id_str":"663727748523933696","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3uZWwAA16gc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3uZWwAA16gc.jpg","url":"https:\/\/t.co\/tgl3w4FJYz","display_url":"pic.twitter.com\/tgl3w4FJYz","expanded_url":"http:\/\/twitter.com\/taracena2012\/status\/663727749761224704\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":660,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":396,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727748523933696,"id_str":"663727748523933696","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3uZWwAA16gc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3uZWwAA16gc.jpg","url":"https:\/\/t.co\/tgl3w4FJYz","display_url":"pic.twitter.com\/tgl3w4FJYz","expanded_url":"http:\/\/twitter.com\/taracena2012\/status\/663727749761224704\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":660,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":396,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080001665"} +{"delete":{"status":{"id":650722446153265152,"id_str":"650722446153265152","user_id":764711370,"user_id_str":"764711370"},"timestamp_ms":"1447080002170"}} +{"delete":{"status":{"id":658247535044112384,"id_str":"658247535044112384","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080002602"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753947160576,"id_str":"663727753947160576","text":"\u0915\u094d\u0937\u0923\u092e\u0948 \u092f\u0939\u093e\u0901 \u0915\u094d\u0937\u0923\u092e\u0948 \u0935\u0939\u093e\u0901 \u0915\u0941\u0928\u0948 \u092c\u0947\u0932\u093e \u090f\u0924\u093e \u0915\u0941\u0928\u0948 \u092c\u0947\u0932\u093e \u0909\u0924\u093e \u0915\u0924\u093e \u0915\u0924\u093e \u0921\u0941\u0932\u094d\u091b \u092e\u0928 \u0964","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957951830,"id_str":"2957951830","name":"\u0938\u093e\u0925\u0940\u0915\u094b \u0938\u093e\u0925\u0940 BBDSSY","screen_name":"bbdssy_bff","location":"\u092e\u094b\u0930\u0919, \u0928\u0947\u092a\u093e\u0932","url":null,"description":"\u0915\u0938\u0948\u0932\u093e\u0908 \u092a\u0928\u093f \u090f\u0915\u0948 \u092a\u091f\u0915\u092e\u093e \u0935\u093e \u090f\u0915 \u091d\u0932\u0915\u092e\u093e \u091a\u093f\u0928\u094d\u0928 \u0938\u0915\u093f\u0928\u094d\u0928 \u0964 \u091a\u093f\u0928\u094d\u0928\u0915\u093e \u0932\u093e\u0917\u093f \u0938\u0902\u0917\u0924 \u0917\u0930\u094d\u0928\u0948 \u092a\u0930\u094d\u091b \u0908\u0928\u094d\u092b\u094d\u092f\u093e\u0915\u094d\u091f \u0938\u0902\u0917\u0924 \u0917\u0930\u0947 \u092a\u0928\u093f \u090f\u0915 \u092a\u091f\u0915 \u0939\u0928\u094d\u0921\u0930 \u0928\u0916\u093e\u0908 \u0924 \u091a\u093f\u0928\u094d\u0928 \u0905\u0938\u092e\u094d\u092d\u0935\u0948 \u0939\u0941\u0928\u094d\u091b \u092d\u0928\u094d\u0926\u093e \u092b\u0930\u0915 \u0928\u092a\u0930\u094d\u0932\u093e \u0964","protected":false,"verified":false,"followers_count":1066,"friends_count":1751,"listed_count":4,"favourites_count":1035,"statuses_count":2459,"created_at":"Sat Jan 03 04:57:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653832937956204544\/aOtzgmOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653832937956204544\/aOtzgmOg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957951830\/1442484253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ne","timestamp_ms":"1447080002663"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753926197248,"id_str":"663727753926197248","text":"@mmendizabal1 @MVTARDE k te mejore wapaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727282406744064,"in_reply_to_status_id_str":"663727282406744064","in_reply_to_user_id":498909218,"in_reply_to_user_id_str":"498909218","in_reply_to_screen_name":"mmendizabal1","user":{"id":3987746657,"id_str":"3987746657","name":"Paco Carrasco Rivas","screen_name":"pacocarrascorl","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":63,"listed_count":0,"favourites_count":5,"statuses_count":154,"created_at":"Sun Oct 18 15:02:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655762522927190016\/MstKBX9m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655762522927190016\/MstKBX9m_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mmendizabal1","name":"Mamen Mendiz\u00e1bal","id":498909218,"id_str":"498909218","indices":[0,13]},{"screen_name":"MVTARDE","name":"M\u00e1s Vale Tarde","id":904210339,"id_str":"904210339","indices":[14,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002658"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930371072,"id_str":"663727753930371072","text":"boa tardeeeeeeeeeeeee","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663608433,"id_str":"1663608433","name":"Kathelen\/estudando","screen_name":"thewantedtube","location":"(2\/6)TW-\u0295\u00b4\u2022\u1d25\u2022`\u0294-LS(0\/1)","url":"http:\/\/umagarotacominsonia.tumblr.com","description":"KETLISS FOREVER :))","protected":false,"verified":false,"followers_count":1831,"friends_count":1954,"listed_count":6,"favourites_count":16085,"statuses_count":63282,"created_at":"Sun Aug 11 22:20:50 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"171616","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636683868410617856\/GVP8BKpT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636683868410617856\/GVP8BKpT.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663016482117427200\/NdHg5Uz8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663016482117427200\/NdHg5Uz8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1663608433\/1446910447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753922019330,"id_str":"663727753922019330","text":"RT @ll0llH: \u0623\u0646\u062a \u0627\u0644\u0633\u0644\u0627\u0645 \u0648\u0645\u0646\u0643 \u0627\u0644\u0633\u0644\u0627\u0645 \u0623\u0646\u0639\u0645 \u0639\u0644\u064a\u0646\u0627 \u0628\u0627\u0644\u0633\u0644\u0627\u0645 \u0648\u0645\u0631\u0651\u0631 \u0647\u0630\u0627 \u0627\u0644\u064a\u0648\u0645 \u0628\u0633\u0644\u0627\u0645 \u0648\u063a\u062f\u0627\u064b \u0645\u062b\u0644\u0647 \u0648\u0628\u0639\u062f \u063a\u062f .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3732962834,"id_str":"3732962834","name":"....\u0627\u0644\u0639\u062a\u064a\u0628\u064a\u0647\u0647\u2661`","screen_name":"mwwwww11","location":null,"url":null,"description":"\u200f\u0625\u0647\u062a\u0645\u0627\u0645\u0643 \u0628\u0627\u0644\u0646\u0627\u0633 \u0648\u0627\u0644\u0631\u062f \u0639\u0644\u064a\u0647\u0645 \u0628\u0644\u0637\u0641\n\u0648\u0645\u0639\u0627\u0645\u0644\u062a\u0647\u0645 \u0645\u0639\u0627\u0645\u0644\u0647 \u062d\u0633\u0646\u0647 \u0648\u0637\u064a\u0628\u0629\n\u064a\u0639\u0637\u064a\u0643 \u0627\u0644\u0645\u062d\u0628\u0647 \u0648\u0627\u0644\u0633\u0639\u0627\u062f\u0647 \u0648\u0631\u0627\u062d\u0629 \u0627\u0644\u0636\u0645\u064a\u0631\n\u0644\u0627\u0646 \u0643\u0644 \u0625\u0646\u0633\u0627\u0646 \u064a\u0631\u0627 \u0630\u0644\u0643 \u0641\u064a\u0643 \u0642\u062f \u064a\u062f\u0639\u0648\u0627 \u0644\u0643.","protected":false,"verified":false,"followers_count":627,"friends_count":644,"listed_count":0,"favourites_count":451,"statuses_count":1970,"created_at":"Wed Sep 30 04:13:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649299343246102528\/O2s3rfVZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649299343246102528\/O2s3rfVZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3732962834\/1444071706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:49:30 +0000 2015","id":663201655127719936,"id_str":"663201655127719936","text":"\u0623\u0646\u062a \u0627\u0644\u0633\u0644\u0627\u0645 \u0648\u0645\u0646\u0643 \u0627\u0644\u0633\u0644\u0627\u0645 \u0623\u0646\u0639\u0645 \u0639\u0644\u064a\u0646\u0627 \u0628\u0627\u0644\u0633\u0644\u0627\u0645 \u0648\u0645\u0631\u0651\u0631 \u0647\u0630\u0627 \u0627\u0644\u064a\u0648\u0645 \u0628\u0633\u0644\u0627\u0645 \u0648\u063a\u062f\u0627\u064b \u0645\u062b\u0644\u0647 \u0648\u0628\u0639\u062f \u063a\u062f .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911800872,"id_str":"2911800872","name":"\u0623\u064f\u0633\u064a\u0645\u0629","screen_name":"ll0llH","location":"\u0627\u0644\u0636\u0641\u0629 \u0627\u0644\u063a\u0631\u0628\u064a\u0629 \u0645\u0646 \u0633\u0637\u062d \u0645\u0646\u0632\u0644\u0646\u0627. ","url":"http:\/\/sayat.me\/ll0llH","description":"\u0644\u0644\u0647 \u0642\u0648\u0644\u0648\u0627 \u0643\u064f\u0644\u0645\u0627 \u0623\u0646\u0634\u062f\u062a\u0645\u064f \u0631\u062d\u0645\u064e \u0627\u0644\u0625\u0644\u0647\u064f \u0635\u062f\u0627\u0643\u0650 \u064a\u0627 \u0623\u0633\u0645\u0627\u0621\u064f *\u0632\u0627\u0626\u0631\u0629 \u0645\u0646 \u0632\u064f\u062d\u0644 *","protected":false,"verified":false,"followers_count":1106,"friends_count":104,"listed_count":5,"favourites_count":1631,"statuses_count":14722,"created_at":"Thu Nov 27 11:12:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651716626040139777\/USCvAsnX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651716626040139777\/USCvAsnX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911800872\/1444217533","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ll0llH","name":"\u0623\u064f\u0633\u064a\u0645\u0629","id":2911800872,"id_str":"2911800872","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934602240,"id_str":"663727753934602240","text":"RT @yisucrist: resumen d mi puta bida https:\/\/t.co\/GHKNBPGlUm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267200533,"id_str":"267200533","name":"raq loves lou","screen_name":"RaquelBarreiro","location":"Vigo, Galicia","url":"https:\/\/twitter.com\/louis_tomlinson\/status\/624018697036955648","description":"que conoces a mil personas pero una te marca","protected":false,"verified":false,"followers_count":451,"friends_count":1469,"listed_count":1,"favourites_count":207,"statuses_count":5466,"created_at":"Wed Mar 16 14:08:16 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563382123357159424\/ZGIjDUR1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563382123357159424\/ZGIjDUR1.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645701501353000966\/acliLDKV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645701501353000966\/acliLDKV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267200533\/1442781599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:17 +0000 2015","id":663719763609264128,"id_str":"663719763609264128","text":"resumen d mi puta bida https:\/\/t.co\/GHKNBPGlUm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701423664,"id_str":"701423664","name":"jezucrihto xd","screen_name":"yisucrist","location":"Hinstagram: @yisucristoficial","url":"https:\/\/www.facebook.com\/yisucrist","description":"nas\u00ed kat\u00f3lico xk jud\u00edos habia muxos. maria mahdalena tkm (L) shavales, ai k repetir santa sena cabrones. Paso d traidores http:\/\/t.co\/3WrBL1CtIg","protected":false,"verified":false,"followers_count":782571,"friends_count":188,"listed_count":965,"favourites_count":86228,"statuses_count":6278,"created_at":"Tue Jul 17 17:16:55 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000407368218\/fa1bad7b5fc824ed3deb233f7c586668_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000407368218\/fa1bad7b5fc824ed3deb233f7c586668_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701423664\/1429027060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":874,"favorite_count":666,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GHKNBPGlUm","expanded_url":"https:\/\/vine.co\/v\/elMFJuTEPjj","display_url":"vine.co\/v\/elMFJuTEPjj","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GHKNBPGlUm","expanded_url":"https:\/\/vine.co\/v\/elMFJuTEPjj","display_url":"vine.co\/v\/elMFJuTEPjj","indices":[38,61]}],"user_mentions":[{"screen_name":"yisucrist","name":"jezucrihto xd","id":701423664,"id_str":"701423664","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753938735104,"id_str":"663727753938735104","text":"RT @onedirection: #EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2756033551,"id_str":"2756033551","name":"\u0632\u064a\u0646 \u0645\u0627\u0644\u0643","screen_name":"wantzjmheart","location":"otrat london 24 september 2015","url":"https:\/\/twitter.com\/zaynmalik\/status\/100661562364264448","description":"*\u0cc3 Zayn is like a star, only for my eyes to see, never for my hands to hold *\u0cc3 Tamara and I, one day, we will break the distance","protected":false,"verified":false,"followers_count":5371,"friends_count":3541,"listed_count":34,"favourites_count":18875,"statuses_count":65444,"created_at":"Fri Aug 22 18:33:01 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656902588315602944\/5d32J3E6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656902588315602944\/5d32J3E6.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662928682055540736\/YxXWkFvZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662928682055540736\/YxXWkFvZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756033551\/1446898190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:22 +0000 2015","id":663716009912627200,"id_str":"663716009912627200","text":"#EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648619,"friends_count":3931,"listed_count":66280,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16281,"favorite_count":20849,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]},{"text":"MadeInTheAm","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[75,98]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]},{"text":"MadeInTheAm","indices":[69,81]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[93,116]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002661"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753926152193,"id_str":"663727753926152193","text":"Okulda grip olmak kadar g\u00fczel bir \u015fey yok,\n\"Hocam beni deli etmeyin y\u00fcz\u00fcn\u00fcze hap\u015f\u0131r\u0131r\u0131m\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792140010,"id_str":"2792140010","name":"uyku","screen_name":"fatoskyga","location":"Adana, T\u00fcrkiye","url":"http:\/\/Instagram.com\/fatoskyga","description":"Bilirsin her \u00f6zleme sigara yak\u0131lmaz, ve her kad\u0131n sigara i\u00e7mez","protected":false,"verified":false,"followers_count":1055,"friends_count":1003,"listed_count":0,"favourites_count":725,"statuses_count":175,"created_at":"Fri Sep 05 15:14:34 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663376310916530176\/a5NnFE0w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663376310916530176\/a5NnFE0w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792140010\/1446780480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080002658"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753947148288,"id_str":"663727753947148288","text":"A cockroach can live for several weeks without its head.","source":"\u003ca href=\"http:\/\/php.foxsash.com\/stt\" rel=\"nofollow\"\u003eSocial Talker\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":631769253,"id_str":"631769253","name":"Alexsandr","screen_name":"FoxSash_RU","location":null,"url":"http:\/\/foxsash.com","description":"Check out my portfolio (HTML templates and WP themes) on ThemeForest http:\/\/bit.ly\/TjceRY or CodeCanyon http:\/\/bit.ly\/W1AdSL","protected":false,"verified":false,"followers_count":601,"friends_count":1256,"listed_count":219,"favourites_count":2,"statuses_count":122581,"created_at":"Tue Jul 10 04:52:23 +0000 2012","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540747158379442179\/chfa1F9R.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540747158379442179\/chfa1F9R.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2384137649\/fjhvw36fqmbpy7w63xyt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2384137649\/fjhvw36fqmbpy7w63xyt_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002663"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753922019329,"id_str":"663727753922019329","text":"RT @ADSportwereld: De anti-doping commissie WADA zegt dat de internationale atletiekunie Rusland uit alle competities moet halen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2184891866,"id_str":"2184891866","name":"Marcel Verhoef","screen_name":"MVerhoef1964","location":"Rotterdam","url":null,"description":"Militair, Echtgenoot, Vader, Vrijwilliger, Kritisch, Realist, Bestuurslid Streekarchief, Lid Geb.commissie IJsselmonde LR","protected":false,"verified":false,"followers_count":417,"friends_count":501,"listed_count":16,"favourites_count":105,"statuses_count":13696,"created_at":"Sat Nov 09 19:12:06 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448516150394359808\/p6JpDygi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448516150394359808\/p6JpDygi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2184891866\/1429461609","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:35 +0000 2015","id":663718581948030976,"id_str":"663718581948030976","text":"De anti-doping commissie WADA zegt dat de internationale atletiekunie Rusland uit alle competities moet halen","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197065592,"id_str":"197065592","name":"AD.nl\/sportwereld","screen_name":"ADSportwereld","location":"Rotterdam","url":"http:\/\/www.ad.nl\/sportwereld","description":"AD Sportwereld, de nummer 1 nieuwssite als het gaat over sport! Lees het laatste nieuws over voetbal, schaatsen, wielrennen, tennis, F1 en nog veel meer.","protected":false,"verified":false,"followers_count":14450,"friends_count":63,"listed_count":208,"favourites_count":34,"statuses_count":45759,"created_at":"Thu Sep 30 15:32:09 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7EDEF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610834173461430272\/DfGyqFh5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610834173461430272\/DfGyqFh5.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573146538957905921\/5qQQypve_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573146538957905921\/5qQQypve_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197065592\/1446997837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ADSportwereld","name":"AD.nl\/sportwereld","id":197065592,"id_str":"197065592","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753955536896,"id_str":"663727753955536896","text":"The Breakdown: Tottenham (h) https:\/\/t.co\/1sy0ikC6bB #football #news","source":"\u003ca href=\"http:\/\/footytweets.com\" rel=\"nofollow\"\u003eFootyTweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18270847,"id_str":"18270847","name":"Arsenal","screen_name":"arsenal_updates","location":"UK","url":"http:\/\/footytweets.com\/arsenal","description":"Unofficial Arsenal news & updates. Powered by @FootyTweets","protected":false,"verified":false,"followers_count":2311,"friends_count":6,"listed_count":117,"favourites_count":0,"statuses_count":29122,"created_at":"Sat Dec 20 19:10:38 +0000 2008","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BDDA70","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"015269","profile_sidebar_border_color":"8EAA45","profile_sidebar_fill_color":"A4C450","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/119318974\/1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/119318974\/1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18270847\/1349207045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"football","indices":[53,62]},{"text":"news","indices":[63,68]}],"urls":[{"url":"https:\/\/t.co\/1sy0ikC6bB","expanded_url":"http:\/\/footytweets.com\/arsenal\/news\/232446","display_url":"footytweets.com\/arsenal\/news\/2\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002665"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942999040,"id_str":"663727753942999040","text":"Blueberry Tea + Red Velvet \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":458349922,"id_str":"458349922","name":"Kakuru","screen_name":"Kakuru_","location":null,"url":null,"description":"Phoenix","protected":false,"verified":false,"followers_count":895,"friends_count":452,"listed_count":3,"favourites_count":335,"statuses_count":11299,"created_at":"Sun Jan 08 13:21:19 +0000 2012","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747117811\/b975f7c9bc7fbf3f2f778c7c4cff016a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747117811\/b975f7c9bc7fbf3f2f778c7c4cff016a.jpeg","profile_background_tile":true,"profile_link_color":"024B61","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645598786627207168\/uZlskjgb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645598786627207168\/uZlskjgb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458349922\/1437662346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753921867777,"id_str":"663727753921867777","text":"\"\u00c7abalamanaza\" hayran\u0131m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720999111,"id_str":"720999111","name":"Lilith","screen_name":"Betrayeddreams","location":"beylikd\u00fcz\u00fc","url":"http:\/\/undesired-spirit.tumblr.com","description":"if you live it up, you won't live it down","protected":false,"verified":false,"followers_count":1043,"friends_count":313,"listed_count":1,"favourites_count":25535,"statuses_count":14505,"created_at":"Fri Oct 18 17:26:54 +0000 2013","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/443392947422126081\/TPT_0gwf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/443392947422126081\/TPT_0gwf.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661633928122511360\/n2gnsy3x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661633928122511360\/n2gnsy3x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720999111\/1440680266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934602242,"id_str":"663727753934602242","text":"vividiva \u2606 guume pic.twitter.com\/8t9TR6q0f9163","source":"\u003ca href=\"http:\/\/emset.tk\" rel=\"nofollow\"\u003eEmset \u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3466577172,"id_str":"3466577172","name":"LH7","screen_name":"Iuhand","location":null,"url":null,"description":"Reloaded","protected":false,"verified":false,"followers_count":48,"friends_count":48,"listed_count":0,"favourites_count":31,"statuses_count":3271,"created_at":"Sun Sep 06 04:18:02 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662975920471277569\/YSC1HYTC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662975920471277569\/YSC1HYTC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3466577172\/1446900752","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942933504,"id_str":"663727753942933504","text":"RT @ttwitandu: Depois da primeira decep\u00e7\u00e3o, desconfio de tudo e de todos.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115909130,"id_str":"115909130","name":"K\u00e1h ESTK \u2661","screen_name":"Kamilagdn","location":"S\u00e3o Paulo -SP Brazil LasVegas","url":"http:\/\/instagram.com\/kamilagdn","description":"Voice Of a Band Imaginary, Model, 22, @EyesSetToKill,@SeaSmileRock, @JaakSimoes #CabelosRuivos curta! https:\/\/m.facebook.com\/profile.php?id=484136821638708","protected":false,"verified":false,"followers_count":3917,"friends_count":1291,"listed_count":37,"favourites_count":1779,"statuses_count":27079,"created_at":"Sat Feb 20 11:52:28 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"186DDB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523652108264804352\/AL8gF1Zf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523652108264804352\/AL8gF1Zf.jpeg","profile_background_tile":true,"profile_link_color":"DE3847","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"E6A420","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662805000763154432\/NAfGd8a5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662805000763154432\/NAfGd8a5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115909130\/1402939706","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:36 +0000 2015","id":663726890549714944,"id_str":"663726890549714944","text":"Depois da primeira decep\u00e7\u00e3o, desconfio de tudo e de todos.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296426412,"id_str":"296426412","name":"MICKEY \u30c4","screen_name":"ttwitandu","location":"\u221e Deus sabe o que faz \u2665 \u221e","url":null,"description":"Contato para publicidade: ttwitandu1@outlook.com","protected":false,"verified":false,"followers_count":600654,"friends_count":224594,"listed_count":177,"favourites_count":45968,"statuses_count":103301,"created_at":"Tue May 10 18:54:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_tile":true,"profile_link_color":"0F0F0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296426412\/1405809646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":35,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttwitandu","name":"MICKEY \u30c4","id":296426412,"id_str":"296426412","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753947127809,"id_str":"663727753947127809","text":"Kedra ima be in yo inbox round 4 lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":705679523,"id_str":"705679523","name":"Fat Jesu$","screen_name":"8Ball_305","location":"Miami","url":"https:\/\/m.soundcloud.com\/8ball_305","description":"Fat Jesu$|NewEraGang|OnDaFrontLine Records|","protected":false,"verified":false,"followers_count":910,"friends_count":525,"listed_count":13,"favourites_count":135,"statuses_count":37121,"created_at":"Tue Oct 08 23:41:02 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662044111235624961\/QF0jCtae_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662044111235624961\/QF0jCtae_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705679523\/1444372686","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002663"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753959596032,"id_str":"663727753959596032","text":"RT @WeLiftYourName: Couldn't agree more. https:\/\/t.co\/vKwCJNDVJt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2209668457,"id_str":"2209668457","name":"Anna","screen_name":"HoneyDrippinHon","location":null,"url":null,"description":"22. Somewhere in Colorado. I peed on @RaginCajunnn","protected":false,"verified":false,"followers_count":3051,"friends_count":96,"listed_count":56,"favourites_count":47959,"statuses_count":92867,"created_at":"Fri Nov 22 23:15:25 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663143005587554304\/q_JDpv-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663143005587554304\/q_JDpv-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2209668457\/1444275231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:27 +0000 2015","id":663718544874442752,"id_str":"663718544874442752","text":"Couldn't agree more. https:\/\/t.co\/vKwCJNDVJt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":490620348,"id_str":"490620348","name":"Ephesians 2:1-10","screen_name":"WeLiftYourName","location":"Chicago, IL","url":"http:\/\/www.weliftyourname.wordpress.com","description":"I just really love Jesus.","protected":false,"verified":false,"followers_count":137649,"friends_count":81389,"listed_count":427,"favourites_count":20063,"statuses_count":21243,"created_at":"Sun Feb 12 18:54:55 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/824651819\/4e5043da4be96c90535eddda64e2c3f9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/824651819\/4e5043da4be96c90535eddda64e2c3f9.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652300615729709060\/FreItArG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652300615729709060\/FreItArG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490620348\/1382383089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":195,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718533470142464,"id_str":"663718533470142464","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","url":"https:\/\/t.co\/vKwCJNDVJt","display_url":"pic.twitter.com\/vKwCJNDVJt","expanded_url":"http:\/\/twitter.com\/WeLiftYourName\/status\/663718544874442752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":696,"resize":"fit"},"medium":{"w":600,"h":653,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718533470142464,"id_str":"663718533470142464","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","url":"https:\/\/t.co\/vKwCJNDVJt","display_url":"pic.twitter.com\/vKwCJNDVJt","expanded_url":"http:\/\/twitter.com\/WeLiftYourName\/status\/663718544874442752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":696,"resize":"fit"},"medium":{"w":600,"h":653,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WeLiftYourName","name":"Ephesians 2:1-10","id":490620348,"id_str":"490620348","indices":[3,18]}],"symbols":[],"media":[{"id":663718533470142464,"id_str":"663718533470142464","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","url":"https:\/\/t.co\/vKwCJNDVJt","display_url":"pic.twitter.com\/vKwCJNDVJt","expanded_url":"http:\/\/twitter.com\/WeLiftYourName\/status\/663718544874442752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":696,"resize":"fit"},"medium":{"w":600,"h":653,"resize":"fit"}},"source_status_id":663718544874442752,"source_status_id_str":"663718544874442752","source_user_id":490620348,"source_user_id_str":"490620348"}]},"extended_entities":{"media":[{"id":663718533470142464,"id_str":"663718533470142464","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfVpUwAAbjze.jpg","url":"https:\/\/t.co\/vKwCJNDVJt","display_url":"pic.twitter.com\/vKwCJNDVJt","expanded_url":"http:\/\/twitter.com\/WeLiftYourName\/status\/663718544874442752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":696,"resize":"fit"},"medium":{"w":600,"h":653,"resize":"fit"}},"source_status_id":663718544874442752,"source_status_id_str":"663718544874442752","source_user_id":490620348,"source_user_id_str":"490620348"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002666"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934434304,"id_str":"663727753934434304","text":"gila ah .","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":854263711,"id_str":"854263711","name":"Ishikawa Naoko.","screen_name":"DinieHere","location":"ig ; dinie_here","url":null,"description":"Ya Allah, kau berikanlah straight A's pt3 untuk Siti Nurdini Binti Azham dan batch 00'","protected":false,"verified":false,"followers_count":508,"friends_count":370,"listed_count":0,"favourites_count":3506,"statuses_count":26604,"created_at":"Sun Sep 30 06:58:09 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000159971590\/Y_jbFdJl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000159971590\/Y_jbFdJl.jpeg","profile_background_tile":true,"profile_link_color":"BA58D2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A975A6","profile_text_color":"EE7B76","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647871420786044929\/DQd8D2n3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647871420786044929\/DQd8D2n3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854263711\/1434021335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753926045696,"id_str":"663727753926045696","text":"@K3_game @mo_ager @aqrisgarden \u3070\u308c\u305f\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727542893842432,"in_reply_to_status_id_str":"663727542893842432","in_reply_to_user_id":3249475788,"in_reply_to_user_id_str":"3249475788","in_reply_to_screen_name":"K3_game","user":{"id":2394650066,"id_str":"2394650066","name":"\u624b\u54c1\u5e2b\u306eSunsan@Ramuh","screen_name":"mizuha1218","location":"\u30ea\u30bf\u30cb\u30fc\u30c9","url":"http:\/\/jp.finalfantasyxiv.com\/lodestone\/character\/3242875\/","description":"\u30a4\u4e00\u65cf\u306e\u30a4\u30fb\u30b9\u30f3\u30b5\u30f3\u3067\u3059\u3002\u30b3\u30fc\u30c9\u30cd\u30fc\u30e0\uff1a\u307f\u3063\u3061\u3083\u3093\u3002Project R\u59cb\u52d5\u3002\u9280\u6cb3\u7cfb\u7adc\u9a0e\u58eb\u8ecd\u56e3 \u30ec\u30a2\u30eb\u30fb\u30ea\u30bf\u30cb\u30fc\u30c9\u6240\u5c5e\u3002\u611b\u79f0\uff1a\u7adc\u9a0e\u58eb\u754c\u306e\u624b\u54c1\u5e2b\u3002\u597d\u304d\u306a\u97f3\u697d\uff1ase.14YouTube\u2192https:\/\/m.youtube.com\/user\/mizuha0712","protected":false,"verified":false,"followers_count":165,"friends_count":168,"listed_count":1,"favourites_count":401,"statuses_count":2020,"created_at":"Mon Mar 17 15:51:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658938980142989312\/uNpH_ImW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658938980142989312\/uNpH_ImW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394650066\/1446923214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"K3_game","name":"Kay Sanders","id":3249475788,"id_str":"3249475788","indices":[0,8]},{"screen_name":"mo_ager","name":"\u4e16\u754c\u306e\u30da\u30c6\u30f3\u5e2bCamus S@ramuh","id":2668447459,"id_str":"2668447459","indices":[9,17]},{"screen_name":"aqrisgarden","name":"AqrisGarden\uff20Ramuh","id":2939947296,"id_str":"2939947296","indices":[18,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002658"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753951387648,"id_str":"663727753951387648","text":"RT @ElNacionalWeb: Capriles responsabiliza a Maduro de ataque con disparos que sufri\u00f3 en Yare https:\/\/t.co\/XXPTBLj7FX https:\/\/t.co\/POBwB7jz\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78264666,"id_str":"78264666","name":"Alfredo Angulo","screen_name":"aangulo_vet","location":"Venezuela","url":null,"description":"Venezolano, casado, 3 extraordinarios hijos, lector, dem\u00f3crata, amigo. No violencia, gerencia, mercadeo, redes sociales.","protected":false,"verified":false,"followers_count":9669,"friends_count":7401,"listed_count":43,"favourites_count":139,"statuses_count":51381,"created_at":"Tue Sep 29 09:35:11 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499394332500045825\/oVPS3PI-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499394332500045825\/oVPS3PI-.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1128679125\/1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1128679125\/1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78264666\/1407442473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:40:04 +0000 2015","id":663712660979085312,"id_str":"663712660979085312","text":"Capriles responsabiliza a Maduro de ataque con disparos que sufri\u00f3 en Yare https:\/\/t.co\/XXPTBLj7FX https:\/\/t.co\/POBwB7jzlH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15007299,"id_str":"15007299","name":"El Nacional","screen_name":"ElNacionalWeb","location":"Caracas - Venezuela","url":"http:\/\/www.el-nacional.com","description":"Te informamos sobre las noticias m\u00e1s recientes de Venezuela y el mundo, Deportes, Espect\u00e1culos, Ciencia, Econom\u00eda y m\u00e1s \u00a1Tu opini\u00f3n es importante!","protected":false,"verified":true,"followers_count":3284333,"friends_count":364592,"listed_count":16516,"favourites_count":3763,"statuses_count":2653737,"created_at":"Wed Jun 04 17:03:00 +0000 2008","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"2C2B59","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000150120234\/4Yd9-n15.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000150120234\/4Yd9-n15.jpeg","profile_background_tile":true,"profile_link_color":"2C3F4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"222222","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661067956231778304\/qieOAo1W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661067956231778304\/qieOAo1W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15007299\/1446576597","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86,"favorite_count":9,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XXPTBLj7FX","expanded_url":"http:\/\/bitly.com\/1WKIPNr","display_url":"bitly.com\/1WKIPNr","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663698144312623104,"id_str":"663698144312623104","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","url":"https:\/\/t.co\/POBwB7jzlH","display_url":"pic.twitter.com\/POBwB7jzlH","expanded_url":"http:\/\/twitter.com\/ElNacionalWeb\/status\/663698148351729664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":257,"resize":"fit"},"medium":{"w":460,"h":257,"resize":"fit"}},"source_status_id":663698148351729664,"source_status_id_str":"663698148351729664","source_user_id":15007299,"source_user_id_str":"15007299"}]},"extended_entities":{"media":[{"id":663698144312623104,"id_str":"663698144312623104","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","url":"https:\/\/t.co\/POBwB7jzlH","display_url":"pic.twitter.com\/POBwB7jzlH","expanded_url":"http:\/\/twitter.com\/ElNacionalWeb\/status\/663698148351729664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":257,"resize":"fit"},"medium":{"w":460,"h":257,"resize":"fit"}},"source_status_id":663698148351729664,"source_status_id_str":"663698148351729664","source_user_id":15007299,"source_user_id_str":"15007299"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XXPTBLj7FX","expanded_url":"http:\/\/bitly.com\/1WKIPNr","display_url":"bitly.com\/1WKIPNr","indices":[94,117]}],"user_mentions":[{"screen_name":"ElNacionalWeb","name":"El Nacional","id":15007299,"id_str":"15007299","indices":[3,17]}],"symbols":[],"media":[{"id":663698144312623104,"id_str":"663698144312623104","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","url":"https:\/\/t.co\/POBwB7jzlH","display_url":"pic.twitter.com\/POBwB7jzlH","expanded_url":"http:\/\/twitter.com\/ElNacionalWeb\/status\/663698148351729664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":257,"resize":"fit"},"medium":{"w":460,"h":257,"resize":"fit"}},"source_status_id":663698148351729664,"source_status_id_str":"663698148351729664","source_user_id":15007299,"source_user_id_str":"15007299"}]},"extended_entities":{"media":[{"id":663698144312623104,"id_str":"663698144312623104","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt8iHXAAAhXx5.jpg","url":"https:\/\/t.co\/POBwB7jzlH","display_url":"pic.twitter.com\/POBwB7jzlH","expanded_url":"http:\/\/twitter.com\/ElNacionalWeb\/status\/663698148351729664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":460,"h":257,"resize":"fit"},"medium":{"w":460,"h":257,"resize":"fit"}},"source_status_id":663698148351729664,"source_status_id_str":"663698148351729664","source_user_id":15007299,"source_user_id_str":"15007299"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002664"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753951182848,"id_str":"663727753951182848","text":"4 marcas pioneras que ya han tenido sus propios emojis personalizados en Twitter https:\/\/t.co\/MGk30jAKhv #socialmedia","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1411062918,"id_str":"1411062918","name":"Social Media\/SS","screen_name":"socialmediasans","location":"Donostia-San Sebasti\u00e1n.","url":"http:\/\/www.socialmediasansebastian.com","description":"Agencia especializada en #SocialMedia , #MarketingOnline y #Dise\u00f1oWeb: #RedesSociales, Blogs, Newsletters y Posicionamiento SEM. Contacto - 627 365 343.","protected":false,"verified":false,"followers_count":1896,"friends_count":566,"listed_count":492,"favourites_count":1,"statuses_count":21087,"created_at":"Tue May 07 19:51:39 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572711091438034944\/PUtSNMs-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572711091438034944\/PUtSNMs-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1411062918\/1430474270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"socialmedia","indices":[105,117]}],"urls":[{"url":"https:\/\/t.co\/MGk30jAKhv","expanded_url":"http:\/\/bit.ly\/1Hq2jFh","display_url":"bit.ly\/1Hq2jFh","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002664"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753959636992,"id_str":"663727753959636992","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u6708\u306b\u60f3\u3046\u306f\u6ce1\u6cab\u306e\u5922\uff08\u6975\uff09\u300d\nhttps:\/\/t.co\/pBbhLfLfSr\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b1000","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229242420,"id_str":"3229242420","name":"\u307e\u3042(\u30fb\u03c9\u30fb)","screen_name":"xxxhiroxxx07251","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":4,"listed_count":1,"favourites_count":0,"statuses_count":233,"created_at":"Fri May 29 01:41:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604106095963996160\/CaFjjJV3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604106095963996160\/CaFjjJV3_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pBbhLfLfSr","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=ODY2NDk2MzMz","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002666"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753938604032,"id_str":"663727753938604032","text":"@nororo1219 \n\u305d\u308c\u306f\u904b\u304c\u3044\u3044\uff01\uff01w\n\u305d\u306e\u5b50\u306e\u30a2\u30ea\u30b9\u30a2\u30ea\u30b9\u30a5\u301c\u304c\u53ef\u611b\u3059\u304e\u3066\u79bf\u3052\u308b\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727101460090880,"in_reply_to_status_id_str":"663727101460090880","in_reply_to_user_id":3147614348,"in_reply_to_user_id_str":"3147614348","in_reply_to_screen_name":"nororo1219","user":{"id":224936621,"id_str":"224936621","name":"\u30c1\u30b3\uff20\u30e2\u30ab","screen_name":"cafemocha04","location":"\u5927\u962a\u304b\u30892\u6b21\u5143\u884c\u304d\u306e\u30d0\u30b9\u3063\u3066\u3069\u3053\u306b\u51fa\u3066\u307e\u3059\uff1f","url":null,"description":"\u30cb\u30b3\u52d5\u306b\u3066\u624b\u63cf\u304d\u52d5\u753b\u3092\u6295\u7a3f\u3057\u3066\u3044\u307e\u3059\u3002 \u9ed2\u30d0\u30b9\/ \u8584\u685c\u9b3c\/AP\u30d8\u30bf\u30ea\u30a2\/\u5e55\u604b\/\u5200\u5263\u4e71\u821e\/\u5922100\/\u30a2\u30cb\u30e1\u597d\u304d\u3055\u3093\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u7d75\u3092\u63cf\u3044\u3066\u308b\u65b9\u3082\u53cb\u9054\u306a\u3063\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\u6210\u4eba\u3057\u307e\u3057\u305f(_ _) \u30d8\u30bf\u30ea\u30a2\u71b1\u3068\u5922100\u71b1\u3067\u3059\u3002\u30d8\u30bf\u30ea\u30a2\u611b\u3057\u3066\u307e\u3059\u3002\u5200\u5263\u4e71\u821e\uff1f\u2026\u4e00\u671f\u96f6\u632f\u3067\u305d\u308d\u305d\u6c17\u304c\u72c2\u3044\u305d\u3046\u3067\u3059\u3002\u30ed\u30a4\u30e4\u30eb\u6765\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":383,"friends_count":337,"listed_count":12,"favourites_count":374,"statuses_count":17515,"created_at":"Fri Dec 10 07:14:40 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439457855\/_____.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439457855\/_____.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655318265409880064\/onA3ltXG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655318265409880064\/onA3ltXG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224936621\/1445000014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nororo1219","name":"\u30d2\u30ca\u30d2@\u304a\u3084\u3059\u307f\u3068\u304a\u306f\u3088\u3046\u3092\u898b\u305f\u3089\u66b4\u8d70","id":3147614348,"id_str":"3147614348","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002661"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753921957888,"id_str":"663727753921957888","text":"Follower - 1, Unfollower - 1. I didn't know it'd be this simple. Get your daily stats via https:\/\/t.co\/m6zN4uxnMw.","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206451619,"id_str":"206451619","name":"davydDUCCI","screen_name":"D_C_OWENZ","location":null,"url":null,"description":"DavydDUCCI","protected":false,"verified":false,"followers_count":691,"friends_count":1245,"listed_count":1,"favourites_count":937,"statuses_count":36287,"created_at":"Sat Oct 23 00:26:31 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542309714370256896\/JM2f0w_Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542309714370256896\/JM2f0w_Y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206451619\/1361813156","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m6zN4uxnMw","expanded_url":"http:\/\/www.crowdfireapp.com\/?r=td","display_url":"crowdfireapp.com\/?r=td","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942798336,"id_str":"663727753942798336","text":"\u0423\u043a\u0440\u0430\u0438\u043d\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442 \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u044d\u043d\u0435\u0440\u0433\u0438\u0438 \u0438\u0437 \u0420\u043e\u0441\u0441\u0438\u0438 11 \u043d\u043e\u044f\u0431\u0440\u044f: \u0423\u043a\u0440\u0430\u0438\u043d\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0443\u0435\u0442 ... https:\/\/t.co\/8veg1EDQr6 #\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923789834,"id_str":"2923789834","name":"\u041a\u043e\u0444\u0435 \u0438 \u043d\u043e\u0432\u043e\u0441\u0442\u0438","screen_name":"coffee_and_news","location":null,"url":null,"description":"\u0421\u0430\u043c\u044b\u0435 \u0441\u0432\u0435\u0436\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0438 \u0447\u0430\u0448\u0435\u0447\u043a\u0430 \u0430\u0440\u043e\u043c\u0430\u0442\u043d\u043e\u0433\u043e \u043a\u043e\u0444\u0435 \u2615\ufe0f","protected":false,"verified":false,"followers_count":302,"friends_count":0,"listed_count":6,"favourites_count":0,"statuses_count":183627,"created_at":"Mon Dec 15 22:20:15 +0000 2014","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601139480012062720\/xqubcOEd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601139480012062720\/xqubcOEd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923789834\/1427900032","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u044d\u043a\u043e\u043d\u043e\u043c\u0438\u043a\u0430","indices":[118,128]}],"urls":[{"url":"https:\/\/t.co\/8veg1EDQr6","expanded_url":"http:\/\/bit.ly\/1WM3jWa","display_url":"bit.ly\/1WM3jWa","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080002662"} +{"delete":{"status":{"id":418141029007900673,"id_str":"418141029007900673","user_id":377030221,"user_id_str":"377030221"},"timestamp_ms":"1447080002718"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934602241,"id_str":"663727753934602241","text":"If you missed it, here is the most popular link among people I follow https:\/\/t.co\/BlwSrtUTFo by @FIFAcom","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3378412409,"id_str":"3378412409","name":"hasan damdam","screen_name":"twitthasancr7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38,"friends_count":212,"listed_count":0,"favourites_count":11,"statuses_count":419,"created_at":"Thu Jul 16 06:43:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630660648955998208\/LHPgE-uO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630660648955998208\/LHPgE-uO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3378412409\/1437033596","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BlwSrtUTFo","expanded_url":"http:\/\/ln.is\/www.fifa.com\/news\/bi\/aKIjg","display_url":"ln.is\/www.fifa.com\/n\u2026","indices":[70,93]}],"user_mentions":[{"screen_name":"FIFAcom","name":"FIFA.com","id":140070953,"id_str":"140070953","indices":[97,105]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930362880,"id_str":"663727753930362880","text":"RT @SpeedRunsLife: Unfortunately, completing this only slightly tilts the RNG in your favor. Most runners consider it a waste. https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223630103,"id_str":"3223630103","name":"Twitch Tries To Play","screen_name":"TwitchTriesPlay","location":"Somewhere, The Internet","url":"http:\/\/www.twitch.tv\/twitchtriestoplay\/","description":"\u30fd\u0f3c\u0e88\u0644\u035c\u0e88\u0f3d\uff89 #TwitchPlaysPokemon fan | Twitch: WhatAboutGamingLive | Reddit: \/u\/WhatAboutGaming | Chatot Enthusiast | I occasionally do streams \u30fd\u0f3c\u0e88\u0644\u035c\u0e88\u0f3d\uff89","protected":false,"verified":false,"followers_count":99,"friends_count":202,"listed_count":3,"favourites_count":21317,"statuses_count":10088,"created_at":"Thu Apr 30 07:13:16 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596596822077898752\/UqBm6dcW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596596822077898752\/UqBm6dcW.png","profile_background_tile":false,"profile_link_color":"8A2BE2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595414880137703425\/wRw3tzj2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595414880137703425\/wRw3tzj2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223630103\/1430793637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:40 +0000 2015","id":663721118273024000,"id_str":"663721118273024000","text":"Unfortunately, completing this only slightly tilts the RNG in your favor. Most runners consider it a waste. https:\/\/t.co\/PsQs0vRxkA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399591687,"id_str":"3399591687","name":"Real Life Done Quick","screen_name":"SpeedRunsLife","location":"Out of Bounds","url":null,"description":"We're all brought into this world and forced to play this game called life. Learn how to optimize your route and 100% it super fast.","protected":false,"verified":false,"followers_count":16099,"friends_count":2,"listed_count":45,"favourites_count":0,"statuses_count":235,"created_at":"Sun Aug 02 04:41:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660966512518299648\/WZ7CXJBK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660966512518299648\/WZ7CXJBK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399591687\/1438492839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663688352957206528,"quoted_status_id_str":"663688352957206528","quoted_status":{"created_at":"Mon Nov 09 12:03:28 +0000 2015","id":663688352957206528,"id_str":"663688352957206528","text":".@SpeedRunsLife completed the v expensive university DLC but still can't unlock advanced job classes, bug or RNG?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17582151,"id_str":"17582151","name":"Mattyuri Jrice","screen_name":"mattiyuriJrice","location":"Wellington, NZ.","url":null,"description":"there's a u and i in yuri. I retweet OPINIONS","protected":false,"verified":false,"followers_count":34,"friends_count":90,"listed_count":1,"favourites_count":2242,"statuses_count":1040,"created_at":"Mon Nov 24 01:10:58 +0000 2008","utc_offset":46800,"time_zone":"Wellington","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588619800219226114\/2fdKewwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588619800219226114\/2fdKewwF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeedRunsLife","name":"Real Life Done Quick","id":3399591687,"id_str":"3399591687","indices":[1,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":51,"favorite_count":49,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PsQs0vRxkA","expanded_url":"https:\/\/twitter.com\/mattiyuriJrice\/status\/663688352957206528","display_url":"twitter.com\/mattiyuriJrice\u2026","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PsQs0vRxkA","expanded_url":"https:\/\/twitter.com\/mattiyuriJrice\/status\/663688352957206528","display_url":"twitter.com\/mattiyuriJrice\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"SpeedRunsLife","name":"Real Life Done Quick","id":3399591687,"id_str":"3399591687","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753926197249,"id_str":"663727753926197249","text":"RT @bieberdepth: \"SOON\" IS FINALLY HERE! #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2170878028,"id_str":"2170878028","name":"duda\u2729*\u0cc3","screen_name":"biebwrfetus","location":"Los Angeles, CA","url":"https:\/\/twitter.com\/foryousjustin\/status\/478691286728589312","description":"I support him. I always will. I get upset when he's upset, I'm happy when he's happy. I love him with all my heart \u2763 best friend forever 15.11.14","protected":false,"verified":false,"followers_count":31438,"friends_count":10748,"listed_count":6,"favourites_count":50739,"statuses_count":83106,"created_at":"Wed Nov 06 14:23:22 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653739355442413568\/Sasq9Wlo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653739355442413568\/Sasq9Wlo.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663501394859696128\/CnTfzbHw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663501394859696128\/CnTfzbHw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2170878028\/1447025879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:47:45 +0000 2015","id":663473005314629632,"id_str":"663473005314629632","text":"\"SOON\" IS FINALLY HERE! #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2768245779,"id_str":"2768245779","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","screen_name":"bieberdepth","location":null,"url":null,"description":"our new album 'purpose' is out nov 13th","protected":false,"verified":false,"followers_count":51421,"friends_count":34680,"listed_count":80,"favourites_count":15751,"statuses_count":30033,"created_at":"Fri Sep 12 21:02:02 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375736284295168\/jH6UWrmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375736284295168\/jH6UWrmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2768245779\/1446996075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14001,"favorite_count":18692,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[24,41]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[41,58]}],"urls":[],"user_mentions":[{"screen_name":"bieberdepth","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","id":2768245779,"id_str":"2768245779","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002658"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753959616512,"id_str":"663727753959616512","text":"RT @ploy9ploy91: \u0e2d\u0e49\u0e27\u0e19\u0e02\u0e36\u0e49\u0e19\u0e19\u0e30\n\u0e14\u0e33\u0e02\u0e36\u0e49\u0e19\u0e19\u0e30\n\u0e40\u0e01\u0e23\u0e14\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e07\n\u0e2a\u0e2d\u0e1a\u0e15\u0e34\u0e14\u0e44\u0e2b\u0e19\n\u0e44\u0e14\u0e49\u0e21\u0e2b\u0e32\u0e25\u0e31\u0e22\u0e22\u0e31\u0e07\n\u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e19\u0e08\u0e35\u0e1a\u0e2b\u0e23\u0e2d\n\u0e1f\u0e31\u0e07\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e2d\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\n\n'\u0e43\u0e2a\u0e48\u0e43\u0e08\u0e01\u0e27\u0e48\u0e32\u0e41\u0e21\u0e48\u0e01\u0e39\u0e01\u0e47\u0e21\u0e36\u0e07\u0e44\u0e07'\n#\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517275966,"id_str":"517275966","name":"...","screen_name":"TTanwarat","location":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e23\u0e32\u0e22, \u0e08.\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e23\u0e32\u0e22","url":null,"description":"bam s.w.k.5.7\n\nfacebook: tanwarat tongrung","protected":false,"verified":false,"followers_count":332,"friends_count":444,"listed_count":1,"favourites_count":1831,"statuses_count":82020,"created_at":"Wed Mar 07 06:17:54 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663034254616498176\/Nzh55e3j.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663034254616498176\/Nzh55e3j.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663032768914325504\/yX6ThSqw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663032768914325504\/yX6ThSqw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517275966\/1446997601","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:21:32 +0000 2015","id":663662698467475456,"id_str":"663662698467475456","text":"\u0e2d\u0e49\u0e27\u0e19\u0e02\u0e36\u0e49\u0e19\u0e19\u0e30\n\u0e14\u0e33\u0e02\u0e36\u0e49\u0e19\u0e19\u0e30\n\u0e40\u0e01\u0e23\u0e14\u0e40\u0e1b\u0e47\u0e19\u0e44\u0e07\n\u0e2a\u0e2d\u0e1a\u0e15\u0e34\u0e14\u0e44\u0e2b\u0e19\n\u0e44\u0e14\u0e49\u0e21\u0e2b\u0e32\u0e25\u0e31\u0e22\u0e22\u0e31\u0e07\n\u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e19\u0e08\u0e35\u0e1a\u0e2b\u0e23\u0e2d\n\u0e1f\u0e31\u0e07\u0e2d\u0e2d\u0e01\u0e2b\u0e23\u0e2d\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\n\n'\u0e43\u0e2a\u0e48\u0e43\u0e08\u0e01\u0e27\u0e48\u0e32\u0e41\u0e21\u0e48\u0e01\u0e39\u0e01\u0e47\u0e21\u0e36\u0e07\u0e44\u0e07'\n#\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22\u0e17\u0e4d\u0e32\u0e44\u0e23\u0e43\u0e04\u0e23\u0e01\u0e47\u0e40\u0e2a\u0e37\u0e2d\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2564324360,"id_str":"2564324360","name":"9055\u0e1d\u0e36\u0e01\u0e07\u0e32\u0e19\u0e2e\u0e34\u2661","screen_name":"ploy9ploy91","location":"\u0e40\u0e21\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e44\u0e1a\u0e42\u0e2d\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e1e\u0e2d","url":null,"description":"Hiphop & Rapper | \u0e40\u0e1b\u0e47\u0e19army\u0e1d\u0e36\u0e01\u0e07\u0e32\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48army\u2661 | \u0e16\u0e36\u0e07\u0e41\u0e2d\u0e04\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e14\u0e34\u0e2a\u0e1e\u0e35\u0e48\u0e21\u0e48\u0e2d\u0e19\u0e40\u0e23\u0e32\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e01\u0e31\u0e19\u0e40\u0e16\u0e2d\u0e30 | \u0e15\u0e32\u0e21\u0e27\u0e07\u0e19\u0e31\u0e49\u0e19\u0e27\u0e07\u0e19\u0e35\u0e49\u0e27\u0e07\u0e19\u0e39\u0e49\u0e19\u0e27\u0e07\u0e42\u0e19\u0e49\u0e19\u0e19\u0e19\u0e19\u0e19\u0e19\u0e19\u0e19\u0e14\u0e49\u0e27\u0e22","protected":false,"verified":false,"followers_count":1296,"friends_count":196,"listed_count":5,"favourites_count":5573,"statuses_count":58971,"created_at":"Fri Jun 13 00:35:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661325278153568256\/kk7O22aO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661325278153568256\/kk7O22aO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2564324360\/1446516129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1941,"favorite_count":119,"entities":{"hashtags":[{"text":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22\u0e17\u0e4d\u0e32\u0e44\u0e23\u0e43\u0e04\u0e23\u0e01\u0e47\u0e40\u0e2a\u0e37\u0e2d\u0e01","indices":[113,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22\u0e17\u0e4d\u0e32\u0e44\u0e23\u0e43\u0e04\u0e23\u0e01\u0e47\u0e40\u0e2a\u0e37\u0e2d\u0e01","indices":[130,140]}],"urls":[],"user_mentions":[{"screen_name":"ploy9ploy91","name":"9055\u0e1d\u0e36\u0e01\u0e07\u0e32\u0e19\u0e2e\u0e34\u2661","id":2564324360,"id_str":"2564324360","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080002666"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753921871872,"id_str":"663727753921871872","text":"@xzQoozx @hamakai1783 \u30d6\u30c1\u30c3\u3066\u3057\u305f\u3044\u3057\u305f\u3044\u3057\u305f\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727628453474305,"in_reply_to_status_id_str":"663727628453474305","in_reply_to_user_id":3269209556,"in_reply_to_user_id_str":"3269209556","in_reply_to_screen_name":"xzQoozx","user":{"id":2220117278,"id_str":"2220117278","name":"KkR4 Vi tr4yz","screen_name":"tr4yzx","location":"\u5e73\u548c\u306aCOD","url":null,"description":"leader @Vitalinfinity01 member of @KkR4universe Respect @ObeyFumz\nFeedleader @The_LB_Commu\nID tr4yz Vi KkR4 TRZ Li7fer\nRespect@Infinit1s\n\u30b4\u30fc\u30b9\u30c8\u304b\u3058\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":296,"friends_count":246,"listed_count":1,"favourites_count":305,"statuses_count":8516,"created_at":"Thu Nov 28 17:43:03 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660112685153914880\/Gz6wAOoI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660112685153914880\/Gz6wAOoI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2220117278\/1438695578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xzQoozx","name":"Qoo\u3061\u3083\u305d","id":3269209556,"id_str":"3269209556","indices":[0,8]},{"screen_name":"hamakai1783","name":"KkR4 sqism","id":2726830062,"id_str":"2726830062","indices":[9,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942855680,"id_str":"663727753942855680","text":"RT @ljackcarpentry: Load Bearing Wall Eagle Butte, SD | LumberJack Carpentry - 1-888-202-9083 https:\/\/t.co\/PTey0LYY2W #LoadBearingWalls","source":"\u003ca href=\"http:\/\/www.twitter.com\/sdgovernor\" rel=\"nofollow\"\u003eThe office of the fake governor\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1006538276,"id_str":"1006538276","name":"SD Governor","screen_name":"SDGovernor","location":"South Dakota","url":"http:\/\/sd.gov","description":"#Fake governor of #south #dakota. Never elected anything. Sorry, your real Governor is in another castle. XMPP \/ Email - sdgovernor@gmail.com ;-)","protected":false,"verified":false,"followers_count":1069,"friends_count":1368,"listed_count":23,"favourites_count":5650,"statuses_count":3918,"created_at":"Wed Dec 12 14:55:12 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444939871048585217\/50UqqZ4O.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444939871048585217\/50UqqZ4O.jpeg","profile_background_tile":true,"profile_link_color":"073D02","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3419086832\/29e6c8b8571e8f625b8ff340746eb6b4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3419086832\/29e6c8b8571e8f625b8ff340746eb6b4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1006538276\/1394916639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:15 +0000 2015","id":663727557020409856,"id_str":"663727557020409856","text":"Load Bearing Wall Eagle Butte, SD | LumberJack Carpentry - 1-888-202-9083 https:\/\/t.co\/PTey0LYY2W #LoadBearingWalls","source":"\u003ca href=\"http:\/\/winthecustomer.com\/\" rel=\"nofollow\"\u003eWin the Customer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3345279557,"id_str":"3345279557","name":"LumberJack Carpentry","screen_name":"ljackcarpentry","location":"United States","url":"https:\/\/lumberjackcarpentry.com\/","description":"Lumber Jack Carpentry\nPhone: 1-888-202-9083\nOpen 7 Days a Week\nhttp:\/\/www.LumberJackCarpentry.com","protected":false,"verified":false,"followers_count":132,"friends_count":975,"listed_count":3,"favourites_count":1,"statuses_count":12799,"created_at":"Thu Jun 25 09:18:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647857664752402432\/_Jw_Qkfk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647857664752402432\/_Jw_Qkfk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3345279557\/1442189245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"LoadBearingWalls","indices":[98,115]}],"urls":[{"url":"https:\/\/t.co\/PTey0LYY2W","expanded_url":"http:\/\/tinyurl.com\/ox74hod","display_url":"tinyurl.com\/ox74hod","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LoadBearingWalls","indices":[118,135]}],"urls":[{"url":"https:\/\/t.co\/PTey0LYY2W","expanded_url":"http:\/\/tinyurl.com\/ox74hod","display_url":"tinyurl.com\/ox74hod","indices":[94,117]}],"user_mentions":[{"screen_name":"ljackcarpentry","name":"LumberJack Carpentry","id":3345279557,"id_str":"3345279557","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930276865,"id_str":"663727753930276865","text":"\u3010\u767b\u9332\u30b5\u30a4\u30c8\u60c5\u5831\u3011 \u96e2\u5a5a\u6cd5\u52d9\u76f8\u8ac7\u5ba4 https:\/\/t.co\/QMz4OedvDD \u798f\u5ca1\u5e02\u306e\u884c\u653f\u66f8\u58eb\u3000\u826f\u5b50\u4fee\u4e8b\u52d9\u6240\u3067\u3059\u3002\u96e2\u5a5a\u30c8\u30e9\u30d6\u30eb\u3001\u7537\u5973\u9593\u30c8\u30e9\u30d6\u30eb\u3067\u304a\u60a9\u307f\u306e\u65b9\u306e\u6cd5\u52d9\u76f8\u8ac7\u3092\u304a\u53d7\u3051\u3057\u307e\u3059\u3002\u96e2\u5a5a\u5354\u8b70\u66f8\u3001\u793a...","source":"\u003ca href=\"http:\/\/www.kokoro-web.com\/\" rel=\"nofollow\"\u003e\u3053\u3053\u308d\u306eWeb.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":580510854,"id_str":"580510854","name":"\u3053\u3053\u308d\u306eWeb.com","screen_name":"kokoro_web","location":null,"url":"http:\/\/www.kokoro-web.com\/","description":"\u3053\u3053\u308d\u306ehttp:\/\/Web.com\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30b5\u30a4\u30c8\u306e\u60c5\u5831\u3092\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u3053\u3053\u308d\u306ehttp:\/\/Web.com\u306f\u3001\u30ab\u30a6\u30f3\u30bb\u30e9\u30fc\u30fb\u30ab\u30a6\u30f3\u30bb\u30ea\u30f3\u30b0\u30eb\u30fc\u30e0\u3084\u5fc3\u7406\u30fb\u30e1\u30f3\u30bf\u30eb\u30d8\u30eb\u30b9\u306b\u95a2\u3059\u308b\u30b5\u30a4\u30c8\u3092\u91cd\u8996\u3057\u305f\u30ea\u30f3\u30af\u96c6\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":5863,"friends_count":5131,"listed_count":31,"favourites_count":0,"statuses_count":453321,"created_at":"Tue May 15 01:47:55 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2219477107\/k_0000_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2219477107\/k_0000_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QMz4OedvDD","expanded_url":"http:\/\/www.kokoro-web.com\/tw\/1406","display_url":"kokoro-web.com\/tw\/1406","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753951219712,"id_str":"663727753951219712","text":"RT @duddjek94: \"\ud0dc\ubbf8\uc758 \uc720\ud639\"(\uc544\ub2d8)\ud560 \uc2dc\uac04\uc774 \ub2e4\uac00\uc624\uace0\uc788\ub2e4 \ud6c4\ud558!\ud6c4\ud558!\uc557 \ub5a8\ub824\u314b\u314b\u314b\uc624\ub298\uc740 \uc5b4\ub5a4\/\uc77c\uc774\/ \uc0dd\/\uae38\/\uae4c! https:\/\/t.co\/tkJn5yW8St","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300390588,"id_str":"3300390588","name":"*\ub0b4\uc77c\ub3c4 \ud0dc\ubbf8 \ub098\uc624\ub294 \ub0a0\u2665* \ubf42","screen_name":"ppokki0202","location":"\ud0dc\ubbf8\uc5b8\ub2c8\uc758\ud488\uc18d \ud0dc\ubbf8\ub978\ubcf4\uace0\uc2f6\ub2e4","url":"http:\/\/twpf.jp\/ppokki0202","description":"(2015.7.29~)*\uae38\ud0dc\ubbf8 *\uc870\uc870 *\uc81c\ud0a4\uc5d8*\ubcfc\ub4dc\ubaa8\ud2b8 \uc553\ub294 \uc7a1\ub355\/\ud504\ub85c\ud544 \uc77d\uc5b4\uc8fc\uc138\uc694\/\uac1c\uc778\uc2e0\uc0c1 \ubb3b\uc9c0 \ub9c8\uc138\uc694\/ \ub9ac\ubc0b\uacc4-@ppokki02022\n\uba58\uc158\uc2a4\ub8e8\ub294 \uace0\uc758\uac00 \uc544\ub2d9\ub2c8\ub2e4\u3160","protected":false,"verified":false,"followers_count":227,"friends_count":240,"listed_count":1,"favourites_count":1561,"statuses_count":18270,"created_at":"Wed Jul 29 11:16:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661863569403703296\/UFxmD6Qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661863569403703296\/UFxmD6Qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300390588\/1444141957","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:41:53 +0000 2015","id":663682919295115265,"id_str":"663682919295115265","text":"\"\ud0dc\ubbf8\uc758 \uc720\ud639\"(\uc544\ub2d8)\ud560 \uc2dc\uac04\uc774 \ub2e4\uac00\uc624\uace0\uc788\ub2e4 \ud6c4\ud558!\ud6c4\ud558!\uc557 \ub5a8\ub824\u314b\u314b\u314b\uc624\ub298\uc740 \uc5b4\ub5a4\/\uc77c\uc774\/ \uc0dd\/\uae38\/\uae4c! https:\/\/t.co\/tkJn5yW8St","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3018104794,"id_str":"3018104794","name":"\ub2e4\uac01","screen_name":"duddjek94","location":null,"url":"http:\/\/blog.naver.com\/tigerlily94","description":"\ub0a8\uc790\ubc30\uc6b0\ub355\uc9c8\/\uadf8\ub9bc\uadf8\ub9b4\ub824\uace0\ub294\ud558\ub294\ub370\uc5d0\/\uc7a1\ub355\/\ubc1c\ub85c\uc4f0\ub294 \uae00\/\ucd5c\uadfc\uc5d4 \uae38\ud0dc\ubbf8\ub791 \uc870\uac15\uc7ac\ub97c\ud30c\uae30\uc2dc\uc791\ud588\ub2e4\/\ubcc4\uac78 \ub2e4 \ub9cc\ub4dc\ub294 \uc5f0\uc131\ub7ec...but\uba54\uc778\uc740 \uc601\uc0c1\ub7ec...\/\ub9cc\ub4e0\uac74 \uc720\ud2ad\uacc4\uc815\uc5d0 \uc5c5\ub313\/\ube14\ub85c\uadf8 \uc5c5\ub313\/\uc720\ud2ad\uacc4\uc815\uc774\ub984 \ub611\uac19\uc544\uc5ec.","protected":false,"verified":false,"followers_count":96,"friends_count":45,"listed_count":2,"favourites_count":768,"statuses_count":881,"created_at":"Wed Feb 04 16:54:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656846129057763328\/tJdLwF3H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656846129057763328\/tJdLwF3H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3018104794\/1446657067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663682916774350848,"id_str":"663682916774350848","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","url":"https:\/\/t.co\/tkJn5yW8St","display_url":"pic.twitter.com\/tkJn5yW8St","expanded_url":"http:\/\/twitter.com\/duddjek94\/status\/663682919295115265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":799,"h":440,"resize":"fit"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663682916774350848,"id_str":"663682916774350848","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","url":"https:\/\/t.co\/tkJn5yW8St","display_url":"pic.twitter.com\/tkJn5yW8St","expanded_url":"http:\/\/twitter.com\/duddjek94\/status\/663682919295115265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":799,"h":440,"resize":"fit"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"duddjek94","name":"\ub2e4\uac01","id":3018104794,"id_str":"3018104794","indices":[3,13]}],"symbols":[],"media":[{"id":663682916774350848,"id_str":"663682916774350848","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","url":"https:\/\/t.co\/tkJn5yW8St","display_url":"pic.twitter.com\/tkJn5yW8St","expanded_url":"http:\/\/twitter.com\/duddjek94\/status\/663682919295115265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":799,"h":440,"resize":"fit"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663682919295115265,"source_status_id_str":"663682919295115265","source_user_id":3018104794,"source_user_id_str":"3018104794"}]},"extended_entities":{"media":[{"id":663682916774350848,"id_str":"663682916774350848","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgGLHUkAAhxQ-.jpg","url":"https:\/\/t.co\/tkJn5yW8St","display_url":"pic.twitter.com\/tkJn5yW8St","expanded_url":"http:\/\/twitter.com\/duddjek94\/status\/663682919295115265\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":799,"h":440,"resize":"fit"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663682919295115265,"source_status_id_str":"663682919295115265","source_user_id":3018104794,"source_user_id_str":"3018104794"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080002664"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942855681,"id_str":"663727753942855681","text":"Enjoy diwali a bit more in style\n#Diwali2015 #bloggeractivity #Jabong #traditionmyway\u00a0\n\nhttps:\/\/t.co\/K9QbeVALma","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1445515645,"id_str":"1445515645","name":"Minakshi Pharswal","screen_name":"Crazynailzz","location":"New Delhi","url":"http:\/\/crazy-nailzz.blogspot.in\/","description":"Social media fanatic| Blogger| Nail artist| Writer| Sports lover| Fashion lover & A die hard book lover... You name it & I have it all!","protected":false,"verified":false,"followers_count":284,"friends_count":39,"listed_count":41,"favourites_count":130,"statuses_count":35642,"created_at":"Tue May 21 05:00:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532027615901536256\/cIUzvdcM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532027615901536256\/cIUzvdcM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1445515645\/1415680372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Diwali2015","indices":[33,44]},{"text":"bloggeractivity","indices":[46,62]},{"text":"Jabong","indices":[64,71]},{"text":"traditionmyway","indices":[72,87]}],"urls":[{"url":"https:\/\/t.co\/K9QbeVALma","expanded_url":"http:\/\/www.jabong.com\/diwali-contest\/","display_url":"jabong.com\/diwali-contest\/","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942831104,"id_str":"663727753942831104","text":"\u3081\u3063\u3061\u3083\u4eba\u72fc\u52d5\u753b\u9762\u767d\u304b\u3063\u305f\uff01\u660e\u65e5\u51fa\u5f35\u7248\u898b\u3088(\u4e2d\u6bd2)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2374968498,"id_str":"2374968498","name":"\u307d\u307d\u308b","screen_name":"poporukjZ1001","location":"\u9752\u8449\u57ce\u897f\u9ad8\u6821\u4f53\u80b2\u9928\u306e\u5e8a\u677f","url":"http:\/\/twpro.jp\/poporukjZ1001","description":"\u5ca9\u6cc9\u4e00\u5c0a\u3044\u3002\u9752\u57ce\u8d14\u5c53\u3002\u261e\u30cf\u30a4\u30ad\u30e5\u30fc\u30fb\u30b3\u30ca\u30f3\u30fbfree\u30fb\u3046\u305f\u30d7\u30ea\u30fbRKRN\u306a\u3069\u3092\u98df\u3079\u3066\u751f\u304d\u308b\u8150\u5973\u5b50\u3002 F\/B\u304a\u6c17\u8efd\u306b(*\u00b4-`) \u30a2\u30a4\u30b3\u30f3\u306f\u30de\u30f3\u30c9\u30e9\u30b4\u30e9EX\u6c0f","protected":false,"verified":false,"followers_count":139,"friends_count":143,"listed_count":13,"favourites_count":3077,"statuses_count":8754,"created_at":"Thu Mar 06 07:18:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441493694479220736\/7mQ5qE-C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441493694479220736\/7mQ5qE-C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2374968498\/1443877653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753955516416,"id_str":"663727753955516416","text":"RT @heartahalf: @luciadesantii acho que \u00e9 mesmo, ningu\u00e9m resiste a vc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165452632,"id_str":"3165452632","name":"Lucia","screen_name":"luciadesantii","location":null,"url":null,"description":"If you like to do the things you know that we shouldn't do \nBaby, i\u00b4m perfect for you","protected":false,"verified":false,"followers_count":70,"friends_count":109,"listed_count":0,"favourites_count":185,"statuses_count":791,"created_at":"Mon Apr 13 22:01:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657323997131075584\/4_cup_6j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657323997131075584\/4_cup_6j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165452632\/1445552432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727693351948288,"id_str":"663727693351948288","text":"@luciadesantii acho que \u00e9 mesmo, ningu\u00e9m resiste a vc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727536225013760,"in_reply_to_status_id_str":"663727536225013760","in_reply_to_user_id":3165452632,"in_reply_to_user_id_str":"3165452632","in_reply_to_screen_name":"luciadesantii","user":{"id":1348042548,"id_str":"1348042548","name":"i\u015fabela","screen_name":"heartahalf","location":"i\u015fa\u015f\u015fia","url":"https:\/\/twitter.com\/zaynmalik\/status\/620569519283552256","description":"I don't have to fucking tell you anything","protected":false,"verified":false,"followers_count":1988,"friends_count":1782,"listed_count":4,"favourites_count":5743,"statuses_count":53815,"created_at":"Sat Apr 13 00:55:11 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654409815192653824\/aUJp-28K.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654409815192653824\/aUJp-28K.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652986855164616704\/EY6mfC8Y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652986855164616704\/EY6mfC8Y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1348042548\/1444519296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"luciadesantii","name":"Lucia","id":3165452632,"id_str":"3165452632","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"heartahalf","name":"i\u015fabela","id":1348042548,"id_str":"1348042548","indices":[3,14]},{"screen_name":"luciadesantii","name":"Lucia","id":3165452632,"id_str":"3165452632","indices":[16,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080002665"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930416128,"id_str":"663727753930416128","text":"RT @mertzorer: Ge\u00e7mi\u015fi ge\u00e7mi\u015fte b\u0131rakmazsan gelece\u011fini yok eder. Bug\u00fcn\u00fcn sana sunduklar\u0131n\u0131 ya\u015fa, d\u00fcn\u00fcn senden ald\u0131klar\u0131n\u0131 de\u011fil.","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":569788219,"id_str":"569788219","name":"G\u00fczel C\u00fcmleler","screen_name":"DumanKarsal","location":null,"url":null,"description":"ileti\u015fim i\u00e7in: bilgidanismailetisim@gmail.com adresine e-mail atabilirsiniz.","protected":false,"verified":false,"followers_count":161520,"friends_count":154594,"listed_count":119,"favourites_count":279,"statuses_count":218993,"created_at":"Thu May 03 08:05:37 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650299294721949696\/gruaNDLJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650299294721949696\/gruaNDLJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/569788219\/1443878408","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 08:39:13 +0000 2015","id":660737848107253760,"id_str":"660737848107253760","text":"Ge\u00e7mi\u015fi ge\u00e7mi\u015fte b\u0131rakmazsan gelece\u011fini yok eder. Bug\u00fcn\u00fcn sana sunduklar\u0131n\u0131 ya\u015fa, d\u00fcn\u00fcn senden ald\u0131klar\u0131n\u0131 de\u011fil.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127532551,"id_str":"127532551","name":"Mert Zorer","screen_name":"mertzorer","location":"izmir","url":null,"description":"Ne kadar ya\u015fayaca\u011f\u0131na sen karar veremezsin ama nas\u0131l ya\u015fayaca\u011f\u0131na sen karar vermelisin... Instagram: http:\/\/Instagram.com\/mertzorer# \ne-mail: mertzorer@me.com","protected":false,"verified":false,"followers_count":73164,"friends_count":198,"listed_count":154,"favourites_count":1189,"statuses_count":3046,"created_at":"Mon Mar 29 14:20:31 +0000 2010","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/867363059\/657f2771146126dc3eb118058b896566.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/867363059\/657f2771146126dc3eb118058b896566.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662321351382945792\/ooYuzsWm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662321351382945792\/ooYuzsWm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127532551\/1430921557","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":372,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mertzorer","name":"Mert Zorer","id":127532551,"id_str":"127532551","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753921851392,"id_str":"663727753921851392","text":"\u53f0\u6e7e101\u30d3\u30eb\u306e\u4e2d\u306e\u5730\u9707\u5236\u5fa1\u3059\u308b\u3082\u306e\u3084\u3093\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180042632,"id_str":"4180042632","name":"Jerry Chen","screen_name":"AkioKondo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 14:33:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002657"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934405632,"id_str":"663727753934405632","text":"\u062a\u0645\u064a\u064e\u0651\u0632 \u062c\u064a\u0644 \u0627\u0644\u0635\u062d\u0627\u0628\u0629 \u0631\u0636\u064a \u0627\u0644\u0644\u0647 \u0639\u0646\u0647\u0645 \u0628\u0627\u0644\u0645\u0628\u0627\u062f\u0631\u0629 \u0625\u0644\u0649 \u0627\u0644\u0635\u062f\u0642\u0629 \u060c \u0644\u0639\u0644\u0645\u0647\u0645 \u0623\u0646\u0647\u0627 \u0628\u0627\u0628 \u062e\u064a\u0631 \u0641\u062a\u062d\u0647 \u0627\u0644\u0644\u0647 \u0644\u0639\u0628\u0627\u062f\u0647 \u060c \u0641\u0643\u0627\u0646\u0648\u0627 \u0623\u062d\u0631\u0635 \u0639\u0644\u064a\u0647\u0627 \u0645\u0646 \u062c\u0645\u0639 \u0627\u0644\u0645\u0627\u0644 \u0644\u0623\u0646\u0641\u0633\u0647\u0645 .","source":"\u003ca href=\"http:\/\/www.twetaty.com\" rel=\"nofollow\"\u003eAlseerah\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2833209638,"id_str":"2833209638","name":"\u062d\u0633\u0627\u0628 \u0633\u064a\u0631\u0629\u0627\u0644\u0646\u0628\u064a\ufdfa\u0648\u0635\u062d\u0628\u0647","screen_name":"al__serah","location":"\u0627\u0631\u0636 \u0627\u0644\u0644\u0647 \u0627\u0644\u0648\u0627\u0633\u0639\u0629","url":null,"description":"\u062d\u0633\u0627\u0628 \u0628\u062f\u064a\u0644 \u0644\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0645\u0648\u0642\u0648\u0641 @mhdslife .. \u062a\u0633\u062a\u0637\u064a\u0639 \u0627\u0644\u0627\u0637\u0644\u0627\u0639 \u0639\u0644\u0649 \u0627\u0644\u0645\u0627\u062f\u0629 \u0641\u064a http:\/\/goo.gl\/NEaBzJ \u0645\u0631\u062a\u0628\u0629 \u062d\u0633\u0628 \u0627\u0644\u0634\u062e\u0635\u064a\u0627\u062a","protected":false,"verified":false,"followers_count":6374,"friends_count":691,"listed_count":29,"favourites_count":4,"statuses_count":115420,"created_at":"Fri Sep 26 19:26:21 +0000 2014","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"115816","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"23B62D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550873746903281664\/NxtBP8zr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550873746903281664\/NxtBP8zr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833209638\/1420179369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942818816,"id_str":"663727753942818816","text":"@tmai051230 \u56f2\u307e\u308c\u305f\u3044\u3057\u3042\u3042\u3044\u3046\u30a4\u30b1\u30e1\u30f3\u306b\u306a\u308a\u305f\u3044(\u00ba\ufe43\u00ba\u00a0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726179635990529,"in_reply_to_status_id_str":"663726179635990529","in_reply_to_user_id":2482340269,"in_reply_to_user_id_str":"2482340269","in_reply_to_screen_name":"tmai051230","user":{"id":173306455,"id_str":"173306455","name":"\u308a\u3087\u30fc@\u306a\u3093\u3084\u3089","screen_name":"r1y2o","location":"\u85e4\u56db\u90ce\u304f\u3093\u305f\u3061\u3068\u304a\u3075\u3068\u3093","url":null,"description":"\u97f3\u30b2\u30fc\u3084\u3063\u3066\u307e\u3059\u3002\u521d\u5fc3\u8005\u30ec\u30a4\u30e4\u30fc(:3[_____]\u30a2\u30a4\u30b3\u30f3\u8a50\u6b3a\u52e2 \u30d8\u30c3\u30c0\u30fc\u81ea\u5206 \u8a73\u3057\u304f\u306f\u2192http:\/\/twpf.jp\/r1y2o","protected":false,"verified":false,"followers_count":868,"friends_count":783,"listed_count":46,"favourites_count":3198,"statuses_count":88605,"created_at":"Sun Aug 01 01:49:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660113914647064581\/R9v_aqVF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660113914647064581\/R9v_aqVF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173306455\/1446304841","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tmai051230","name":"\u308f\u305f\u3042\u3081\uff20\u3059\u3044\u3061\u3083\u3093\u63a8\u3057","id":2482340269,"id_str":"2482340269","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002662"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930240002,"id_str":"663727753930240002","text":"RT @kkrumkrum: \u0e16\u0e49\u0e32\u0e40\u0e02\u0e32\u0e23\u0e31\u0e01 \u0e40\u0e02\u0e32\u0e08\u0e30\u0e44\u0e21\u0e48\u0e25\u0e31\u0e07\u0e40\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e23\u0e31\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4178634853,"id_str":"4178634853","name":"Aum _m","screen_name":"aum_pk43","location":"\u0e17\u0e38\u0e01\u0e17\u0e35\u0e48 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e2b\u0e49\u0e19\u0e19","url":null,"description":"\u0e2a\u0e27\u0e22 \u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \u0e40\u0e1f\u0e19\u0e25\u0e35\u0e48 \u0e19\u0e32\u0e08\u0e32\u0e32\u0e32~","protected":false,"verified":false,"followers_count":2,"friends_count":70,"listed_count":0,"favourites_count":0,"statuses_count":146,"created_at":"Mon Nov 09 11:13:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663676590849552384\/jUoGXMbe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663676590849552384\/jUoGXMbe_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 13:23:42 +0000 2015","id":658272725035712512,"id_str":"658272725035712512","text":"\u0e16\u0e49\u0e32\u0e40\u0e02\u0e32\u0e23\u0e31\u0e01 \u0e40\u0e02\u0e32\u0e08\u0e30\u0e44\u0e21\u0e48\u0e25\u0e31\u0e07\u0e40\u0e25\u0e17\u0e35\u0e48\u0e08\u0e30\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e23\u0e31\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851938001,"id_str":"2851938001","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","screen_name":"kkrumkrum","location":"-\u0e23\u0e27\u0e21\u0e17\u0e38\u0e01\u0e21\u0e38\u0e02\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e41\u0e19\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e32\u0e23\u0e21-","url":"http:\/\/line.me\/ti\/p\/%40vbe6244k","description":"\u0e2d\u0e48\u0e32\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e34\u0e49\u0e21\u0e2d\u0e34\u0e19\u0e46\u0e01\u0e31\u0e19\u0e44\u0e1b5555\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e38\u0e01\u0e04\u0e19\u0e43\u0e08\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e04\u0e38\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e19\u0e49\u0e32\u0e325555555 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e19\u0e1f\u0e2d\u0e25\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30\u0e04\u0e49\u0e30\u0e08\u0e49\u0e27\u0e1a\u0e1a\u0e46\u25e1\u0308\u2661\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22\u0e19\u0e30\u0e04\u0e30\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 ig:kkrumkrum","protected":false,"verified":false,"followers_count":587286,"friends_count":173,"listed_count":70,"favourites_count":1,"statuses_count":3574,"created_at":"Sat Oct 11 12:11:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851938001\/1423663298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9826,"favorite_count":2120,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kkrumkrum","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","id":2851938001,"id_str":"2851938001","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753951379456,"id_str":"663727753951379456","text":"RT @nada_mohsen7: \u201cWhatever words I say, I'll always love you.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2800487604,"id_str":"2800487604","name":"Sohila.","screen_name":"Sohailaashraf17","location":null,"url":null,"description":"Cancer\u264b.","protected":false,"verified":false,"followers_count":343,"friends_count":269,"listed_count":0,"favourites_count":154,"statuses_count":39,"created_at":"Tue Sep 09 20:43:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639994481761255424\/Djbf4dVi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639994481761255424\/Djbf4dVi_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 15:35:21 +0000 2015","id":658668242542723073,"id_str":"658668242542723073","text":"\u201cWhatever words I say, I'll always love you.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1556231683,"id_str":"1556231683","name":"Nada.","screen_name":"nada_mohsen7","location":"In a world of my own.","url":null,"description":"I don't give a fuck..","protected":false,"verified":false,"followers_count":350,"friends_count":134,"listed_count":1,"favourites_count":6053,"statuses_count":7114,"created_at":"Sat Jun 29 17:56:53 +0000 2013","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662676128751046656\/2gqE4-Cn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662676128751046656\/2gqE4-Cn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1556231683\/1446228955","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nada_mohsen7","name":"Nada.","id":1556231683,"id_str":"1556231683","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002664"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930248192,"id_str":"663727753930248192","text":"RT @SUNI_KK_: \uae40\uc131\uaddc \uc798\uc0dd\uae40 #INFINITE \uae40\uc131\uaddc \uc798\uc0dd\uae40 \uae40\uc131\uaddc \uc798\uc0dd\uae40 \uc874\uc798 #BAD \uaddc \ubbf8\ub0a8\uaddc \uc6b0\uc8fc\uc874\uc798 \uae40\uc131\uaddc \uc131\uaddc\uc624\ube60 #\ubc30\ub4dc \ub118 \uc798\uc0dd\uacbc\uc5b4\uc624 \ub610 \ub118 \uadc0\uc5ec\uc6cc\uc5ec \ud3c9\uc0dd \ubc14\uc21c\ud788\ub85c \uc0b4\uac8c\uc624 #2015MAMA \uae40\uc131\uaddc \uc9f1 \uc9c4\uc9dc \ub118 \uba38\uc2ef\uc0bc \uc544\uc544\uc544\uc544\uc544\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267171787,"id_str":"3267171787","name":"\uc0f4\ubfcc","screen_name":"shampooos_28","location":"\u2728\uc6b0\uc8fc\ucd5c\uace0 \uc778\ud53c\ub2c8\ud2b8 \u2728","url":"http:\/\/www.ifnt7.com\/mobile\/","description":"\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\uaffb \u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\uc624\ube60\ub4e4\uc774\ub118\uc870\uc544\ud600\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\ub2e4\ub4e4\uc778\ud53c\ub2c8\ud2b8\ud31d\uc2dc\ub2e4\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\uc5b4\uc11c\ube68\ub9ac\uc785\ub355\ud558\ub7ec\uc624\uc154\ud600\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u315c\u3160\u3160\u3160\u3160\u3160\u3160\u3160\ud568\uaed8\uc553\uc73c\uba74\ub354\u3163\ubdf0\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160","protected":false,"verified":false,"followers_count":215,"friends_count":189,"listed_count":0,"favourites_count":346,"statuses_count":10630,"created_at":"Fri Jul 03 13:42:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663379020034109440\/x6AFM6-X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663379020034109440\/x6AFM6-X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267171787\/1446367515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:16 +0000 2015","id":663727559272599552,"id_str":"663727559272599552","text":"\uae40\uc131\uaddc \uc798\uc0dd\uae40 #INFINITE \uae40\uc131\uaddc \uc798\uc0dd\uae40 \uae40\uc131\uaddc \uc798\uc0dd\uae40 \uc874\uc798 #BAD \uaddc \ubbf8\ub0a8\uaddc \uc6b0\uc8fc\uc874\uc798 \uae40\uc131\uaddc \uc131\uaddc\uc624\ube60 #\ubc30\ub4dc \ub118 \uc798\uc0dd\uacbc\uc5b4\uc624 \ub610 \ub118 \uadc0\uc5ec\uc6cc\uc5ec \ud3c9\uc0dd \ubc14\uc21c\ud788\ub85c \uc0b4\uac8c\uc624 #2015MAMA \uae40\uc131\uaddc \uc9f1 \uc9c4\uc9dc \ub118 \uba38\uc2ef\uc0bc \uc544\uc544\uc544\uc544\uc544\uc544\uc544\uc544 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3559141998,"id_str":"3559141998","name":"\u3145\u3134","screen_name":"SUNI_KK_","location":"\uc811\ub960 \ub0ae\uc544\uc6a4 12\/10 ~12\/16","url":null,"description":"R=VD \ud3a9\uc2dc \ud32c\ubbf8\ud305 \ub2f9\ucca8\ub418\uc11c \uc778\ud53c\ub2c8\ud2b8 \ubcf4\uace0\uc628\ub2e4","protected":false,"verified":false,"followers_count":37,"friends_count":173,"listed_count":0,"favourites_count":211,"statuses_count":1011,"created_at":"Mon Sep 14 10:22:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663306473477271552\/MnPOALaE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663306473477271552\/MnPOALaE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3559141998\/1446956570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"INFINITE","indices":[8,17]},{"text":"BAD","indices":[37,41]},{"text":"\ubc30\ub4dc","indices":[62,65]},{"text":"2015MAMA","indices":[95,104]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[129,138]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"INFINITE","indices":[22,31]},{"text":"BAD","indices":[51,55]},{"text":"\ubc30\ub4dc","indices":[76,79]},{"text":"2015MAMA","indices":[109,118]}],"urls":[],"user_mentions":[{"screen_name":"SUNI_KK_","name":"\u3145\u3134","id":3559141998,"id_str":"3559141998","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934450688,"id_str":"663727753934450688","text":"Download mo sa apple na may play store\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3436331419,"id_str":"3436331419","name":"X","screen_name":"Kingsteffii","location":null,"url":null,"description":"Can't feel my existence","protected":false,"verified":false,"followers_count":93,"friends_count":116,"listed_count":0,"favourites_count":734,"statuses_count":1347,"created_at":"Thu Sep 03 11:20:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685719781539840\/ckLDH5Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685719781539840\/ckLDH5Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3436331419\/1447064439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930211328,"id_str":"663727753930211328","text":"Cuando me escribes algo bonito , lo leo c\u00f3mo 20 veces.","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003e.Tvvittter for Android.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2584729991,"id_str":"2584729991","name":"Elias Mezarina","screen_name":"tolovskia","location":"M\u00e9xico","url":null,"description":null,"protected":false,"verified":false,"followers_count":366,"friends_count":371,"listed_count":0,"favourites_count":1,"statuses_count":1734,"created_at":"Thu Jun 05 17:45:10 +0000 2014","utc_offset":-21600,"time_zone":"America\/Mexico_City","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545064810052739073\/YziDY7r0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545064810052739073\/YziDY7r0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753955422209,"id_str":"663727753955422209","text":"RT @strippedvocals: after novermber 13th i will no longer be living made in the a.m. will kill me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2618266963,"id_str":"2618266963","name":"zoey","screen_name":"niallxfthemmo","location":"otra 07.26.15","url":"http:\/\/w.tt\/1crXMED","description":"this is broken love in the first degree","protected":false,"verified":false,"followers_count":15412,"friends_count":9339,"listed_count":33,"favourites_count":26696,"statuses_count":42260,"created_at":"Fri Jul 11 19:47:56 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662764549360107520\/43Esqbee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662764549360107520\/43Esqbee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2618266963\/1446850356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:06 +0000 2015","id":663727268561158144,"id_str":"663727268561158144","text":"after novermber 13th i will no longer be living made in the a.m. will kill me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1575935616,"id_str":"1575935616","name":",,,,","screen_name":"strippedvocals","location":null,"url":"https:\/\/twitter.com\/harry_styles\/status\/657178759766888448","description":"you and me got a whole lot of history","protected":false,"verified":false,"followers_count":13260,"friends_count":5171,"listed_count":36,"favourites_count":20620,"statuses_count":30184,"created_at":"Sun Jul 07 20:15:06 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617556866059472897\/A8Wsk9dp.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617556866059472897\/A8Wsk9dp.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661375762394537984\/hMgRRqGF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661375762394537984\/hMgRRqGF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1575935616\/1446403378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"strippedvocals","name":",,,,","id":1575935616,"id_str":"1575935616","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002665"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930272768,"id_str":"663727753930272768","text":"RT @GengBBM: Those who love you will understand you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2204252654,"id_str":"2204252654","name":"farah","screen_name":"N_FarahAfifah","location":"Kuantan Pahang","url":null,"description":null,"protected":false,"verified":false,"followers_count":145,"friends_count":109,"listed_count":0,"favourites_count":55,"statuses_count":6077,"created_at":"Wed Nov 20 04:21:43 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"303D5D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175000231\/4excxRg_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175000231\/4excxRg_.png","profile_background_tile":true,"profile_link_color":"47484D","profile_sidebar_border_color":"C2C5D1","profile_sidebar_fill_color":"C2C5D1","profile_text_color":"D4443F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660043843941724160\/02RYoiBe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660043843941724160\/02RYoiBe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2204252654\/1442622628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:43:47 +0000 2015","id":663713596451328000,"id_str":"663713596451328000","text":"Those who love you will understand you.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302499733,"id_str":"302499733","name":"SiakapKeli","screen_name":"GengBBM","location":"Kuala Lumpur","url":"http:\/\/GengBBM.blogspot.com","description":"Submit secrets: http:\/\/goo.gl\/901po3","protected":false,"verified":false,"followers_count":27852,"friends_count":187,"listed_count":47,"favourites_count":0,"statuses_count":5022,"created_at":"Sat May 21 08:55:56 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CF4944","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622159787\/5lx5wdo6akfjz079mapc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622159787\/5lx5wdo6akfjz079mapc.jpeg","profile_background_tile":true,"profile_link_color":"CF4944","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551371086638510082\/U0AzZImI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551371086638510082\/U0AzZImI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302499733\/1420292266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GengBBM","name":"SiakapKeli","id":302499733,"id_str":"302499733","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002659"} +{"delete":{"status":{"id":663727745558450176,"id_str":"663727745558450176","user_id":447895106,"user_id_str":"447895106"},"timestamp_ms":"1447080002841"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753955422208,"id_str":"663727753955422208","text":"\u304a\u305d\u677e\u3055\u3093\u306b\u3064\u3044\u3066\u8a9e\u308a\u5408\u3048\u308b\u4eba\u3068\u3054\u98ef\u98df\u3079\u306b\u884c\u304d\u305f\u3044\n\u305d\u3093\u306a\u3053\u3068\u3067\u3082\u3057\u3066\u306a\u3044\u3068\u7cbe\u795e\u3082\u305f\u306a\u3044\u308f\u3082\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117074836,"id_str":"117074836","name":"\u307e\u307b@11\/15\u30cf\u30ec\u30ed\u30af\u30ea\u30ea\u30a4\u30d9","screen_name":"amnoslovep9","location":"\u5927\u962a","url":"http:\/\/twpf.jp\/amnoslovep9","description":"20\u2191\u3067\u3093\u3071\u7d44\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u3046\u305f\uff8c\uff9f\uff98\/\uff8a\uff84\uff71\uff98\/\u30b9\u30c8\u30e9\u30d0\/\u5bae\u7530\/\u5b50\u5b89\/\u7dd1\u5ddd\/\u8acf\u8a2a\u90e8\/\u5bfa\u5cf6\/\u6c5f\u53e3\/\u8c37\u5c71\/\u795e\u8c37 \u30cb\u30b3\u52d5\u3068\u30b2\u30fc\u30e0\u304c\u65e5\u8ab2\u3067\u6c5f\u53e3\u8ca2\u304e\u304e\u307f\u58f0\u512a\u3070\u3070\u3042( \u02d9\u00b3\u02d9) \u30ed\u30c7\u30aa\u7d44RG\uff0a9\/13\u30b9\u30c8\u30e9\u30d0\u663c\u591c 10\/3\u30d3\u30fc\u30d5\u30a7\u30b9\u663c\u591c 10\/24\u30ea\u30fc\u30e9\u30a4\u663c\u591c 10\/25\u30ed\u30c7\u30aa 11\/15\u795e\u8c37\u30ea\u30ea\u30a4\u30d9 1\/17\u30d7\u30ea\u30e9\u30a4","protected":false,"verified":false,"followers_count":321,"friends_count":441,"listed_count":14,"favourites_count":157,"statuses_count":46886,"created_at":"Wed Feb 24 13:13:38 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661493026527690752\/7e8OoYLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661493026527690752\/7e8OoYLq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117074836\/1427928656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002665"} +{"delete":{"status":{"id":663695084513308672,"id_str":"663695084513308672","user_id":1449360271,"user_id_str":"1449360271"},"timestamp_ms":"1447080002914"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753951318016,"id_str":"663727753951318016","text":"7 nuovi #annunci di #lavoro per Milano https:\/\/t.co\/xKo78wbEGM","source":"\u003ca href=\"http:\/\/www.lavoroinrete.com\/\" rel=\"nofollow\"\u003eLavoroInRete.com Updater\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86974024,"id_str":"86974024","name":"LavoroInRete","screen_name":"lavoroinrete","location":"Italy","url":"http:\/\/www.lavoroinrete.com\/","description":"http:\/\/LavoroInRete.com - Offerte, proposte e informazioni di Lavoro in Rete","protected":false,"verified":false,"followers_count":6767,"friends_count":125,"listed_count":219,"favourites_count":1,"statuses_count":92419,"created_at":"Mon Nov 02 16:24:33 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/55870536\/back-twitter-ok.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/55870536\/back-twitter-ok.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540162772\/lavoroinrete_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540162772\/lavoroinrete_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"annunci","indices":[8,16]},{"text":"lavoro","indices":[20,27]}],"urls":[{"url":"https:\/\/t.co\/xKo78wbEGM","expanded_url":"http:\/\/lavoroinrete.com\/searching.php?ricerca=Milano","display_url":"lavoroinrete.com\/searching.php?\u2026","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080002664"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930416129,"id_str":"663727753930416129","text":"@Rip_Amoy thank you love \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727191696547840,"in_reply_to_status_id_str":"663727191696547840","in_reply_to_user_id":1570557865,"in_reply_to_user_id_str":"1570557865","in_reply_to_screen_name":"Rip_Amoy","user":{"id":783764924,"id_str":"783764924","name":"Jodi Reyes \u264f\ufe0f","screen_name":"Papi_Shampoo_","location":null,"url":null,"description":"20YearsYoung|IG:papishampoo_xo","protected":false,"verified":false,"followers_count":2444,"friends_count":1751,"listed_count":3,"favourites_count":20983,"statuses_count":64890,"created_at":"Mon Aug 27 04:01:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000011302217\/d40776e8993782a221c160f316951964.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000011302217\/d40776e8993782a221c160f316951964.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550718251544577\/QFbR3qhC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550718251544577\/QFbR3qhC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/783764924\/1445787953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rip_Amoy","name":"Mr.Ramos","id":1570557865,"id_str":"1570557865","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002659"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934450689,"id_str":"663727753934450689","text":"\u3082\u3050\u3082\u3050\u266a","source":"\u003ca href=\"http:\/\/yuber.sakura.ne.jp\/bot\/\" rel=\"nofollow\"\u003e\u30e1\u30a2\u30e1\u30a4\u306e\u304a\u3046\u3061\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489929689,"id_str":"489929689","name":"\u30e1\u30a2\u30e1\u30a4","screen_name":"gs_Meamei","location":"\u30e1\u30a2\u30e1\u30a4\u306e\u304a\u3046\u3061","url":"http:\/\/yuber.sakura.ne.jp\/bot\/","description":"\u5e7b \u60f3 \u6c34 \u6ef8 \u4f1d \u7d21 \u304c \u308c \u3057 \u767e \u5e74 \u306e \u6642\u306e\u30d5\u30a7\u30b6\u30fc\u30c8\u30e9\u30a4\u30d6\u3001\u30e1\u30a2\u30e1\u30a4\u306e\u975e \u516c \u5f0fB o t\u3067\u3059\u3002\u5f8c\u534a\u306e\u30b7\u30ca\u30ea\u30aa\u306b\u306f\u7d61\u307e\u306a\u3044\u306e\u3067\u4e00\u5fdc\u30cd\u30bf\u30d0\u30ec\u306f\u3057\u307e\u305b\u3093\u3002\u98fd\u304d\u305f\u6642\u306b\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002\u30d5\u30a9\u30ed\u30ef\u30fc\u7a3c\u304e\u3084\u30b9\u30d1\u30e0\u3068\u601d\u308f\u308c\u308b\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":103,"friends_count":103,"listed_count":27,"favourites_count":16,"statuses_count":90506,"created_at":"Sun Feb 12 02:02:43 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439426964\/gum01_ph01170-s.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439426964\/gum01_ph01170-s.jpg","profile_background_tile":true,"profile_link_color":"3F941E","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551516911037468672\/IW4Cw5JF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551516911037468672\/IW4Cw5JF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489929689\/1369532199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002660"} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753930240001,"id_str":"663727753930240001","text":"Les tengo en \"camara lenta\" las expulsiones del en 3 minutos por \/ espero su opini\u00f3n \u2014@patoaguilar73 https:\/\/t.co\/Y3Xi7vV18E","source":"\u003ca href=\"http:\/\/ret.io\" rel=\"nofollow\"\u003eRET.IO Publishers\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313809039,"id_str":"313809039","name":"retioPUE","screen_name":"retioPUE","location":"Puebla, M\u00e9xico.","url":"http:\/\/ret.io\/mx\/PUE\/","description":"Una liga de ciudadanos haciendo periodismo de calle con Twitter. Los reporteros somos todos, colabora poniendo @retioPUE","protected":false,"verified":false,"followers_count":9972,"friends_count":1,"listed_count":64,"favourites_count":2,"statuses_count":106631,"created_at":"Thu Jun 09 07:38:59 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6B6B6B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/749010498\/323dfc5d81fc54ab39fa470583b9dfbd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/749010498\/323dfc5d81fc54ab39fa470583b9dfbd.png","profile_background_tile":true,"profile_link_color":"0052BA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"454545","profile_text_color":"BDBDBD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3029892564\/75cfd22bc6b6ea82f730bea5b8b79ad9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3029892564\/75cfd22bc6b6ea82f730bea5b8b79ad9_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y3Xi7vV18E","expanded_url":"https:\/\/ret.io\/report\/35222550","display_url":"ret.io\/report\/35222550","indices":[101,124]}],"user_mentions":[{"screen_name":"patoaguilar73","name":"Patricio Aguilar","id":3249836101,"id_str":"3249836101","indices":[86,100]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080002659"} +{"delete":{"status":{"id":663720246130274304,"id_str":"663720246130274304","user_id":3850927564,"user_id_str":"3850927564"},"timestamp_ms":"1447080002927"}} +{"delete":{"status":{"id":663726520813293568,"id_str":"663726520813293568","user_id":2835631478,"user_id_str":"2835631478"},"timestamp_ms":"1447080002923"}} +{"delete":{"status":{"id":663724121675575296,"id_str":"663724121675575296","user_id":3424195395,"user_id_str":"3424195395"},"timestamp_ms":"1447080003012"}} +{"delete":{"status":{"id":663724188776030209,"id_str":"663724188776030209","user_id":3424087635,"user_id_str":"3424087635"},"timestamp_ms":"1447080003024"}} +{"delete":{"status":{"id":663724121683963904,"id_str":"663724121683963904","user_id":3423991571,"user_id_str":"3423991571"},"timestamp_ms":"1447080003014"}} +{"delete":{"status":{"id":663724121679773697,"id_str":"663724121679773697","user_id":3423647603,"user_id_str":"3423647603"},"timestamp_ms":"1447080003014"}} +{"delete":{"status":{"id":663724121667145728,"id_str":"663724121667145728","user_id":3424539245,"user_id_str":"3424539245"},"timestamp_ms":"1447080003043"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753942945792,"id_str":"663727753942945792","text":"https:\/\/t.co\/QEzIL5bMkT - Click to shop vintage Marilyn Manson shirts, items, merch, vinyl, ect... https:\/\/t.co\/OEI3LCqw4B","source":"\u003ca href=\"http:\/\/picloadr.com\/\" rel=\"nofollow\"\u003ePicloadr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3299944832,"id_str":"3299944832","name":"Vintage Manson","screen_name":"VintageManson","location":"Satan's Bakesale","url":"http:\/\/www.vintagemmshop.com","description":"Vintage, Old School and Collectable Marilyn Manson Merchandise","protected":false,"verified":false,"followers_count":520,"friends_count":1979,"listed_count":1,"favourites_count":2,"statuses_count":1678,"created_at":"Tue Jul 28 23:05:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626167810155130880\/Vz3Genjy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626167810155130880\/Vz3Genjy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3299944832\/1438125134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QEzIL5bMkT","expanded_url":"http:\/\/www.vintagemmshop.com","display_url":"vintagemmshop.com","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727753263378434,"id_str":"663727753263378434","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4ADU8AI0-I3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4ADU8AI0-I3.jpg","url":"https:\/\/t.co\/OEI3LCqw4B","display_url":"pic.twitter.com\/OEI3LCqw4B","expanded_url":"http:\/\/twitter.com\/VintageManson\/status\/663727753942945792\/photo\/1","type":"photo","sizes":{"medium":{"w":517,"h":636,"resize":"fit"},"large":{"w":517,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727753263378434,"id_str":"663727753263378434","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4ADU8AI0-I3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4ADU8AI0-I3.jpg","url":"https:\/\/t.co\/OEI3LCqw4B","display_url":"pic.twitter.com\/OEI3LCqw4B","expanded_url":"http:\/\/twitter.com\/VintageManson\/status\/663727753942945792\/photo\/1","type":"photo","sizes":{"medium":{"w":517,"h":636,"resize":"fit"},"large":{"w":517,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002662"} +{"delete":{"status":{"id":663724104881602560,"id_str":"663724104881602560","user_id":3423955378,"user_id_str":"3423955378"},"timestamp_ms":"1447080003051"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753947033600,"id_str":"663727753947033600","text":"Mr better be happy im early today \ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624439993,"id_str":"624439993","name":"Nana\u2728","screen_name":"Lovely_vivianna","location":"San antonio, tx.","url":null,"description":"Evolving, On to better things..","protected":false,"verified":false,"followers_count":331,"friends_count":181,"listed_count":0,"favourites_count":1807,"statuses_count":47705,"created_at":"Mon Jul 02 06:54:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634593594792280064\/PYEnDGyi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634593594792280064\/PYEnDGyi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624439993\/1440817298","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002663"} +{"delete":{"status":{"id":663720350992109570,"id_str":"663720350992109570","user_id":3930439684,"user_id_str":"3930439684"},"timestamp_ms":"1447080003158"}} +{"delete":{"status":{"id":663720296461922305,"id_str":"663720296461922305","user_id":3930809596,"user_id_str":"3930809596"},"timestamp_ms":"1447080003192"}} +{"delete":{"status":{"id":663720279680552961,"id_str":"663720279680552961","user_id":3933172576,"user_id_str":"3933172576"},"timestamp_ms":"1447080003190"}} +{"delete":{"status":{"id":663724264269344768,"id_str":"663724264269344768","user_id":3859824133,"user_id_str":"3859824133"},"timestamp_ms":"1447080003280"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753934581760,"id_str":"663727753934581760","text":"4\u6708\u3082\u30a8\u30c3\u30c1\u3057\u3066\u304f\u308c\u308b\u4eba\u52df\u96c6\u3067\u3059\\(\/\/\u2207\/\/)\\\n\u6771\u4eac\u540d\u53e4\u5c4b\u5927\u962a\u305d\u308c\u305e\u308c\u3067\u30a8\u30c3\u30c1\u3057\u3066\u304f\u308c\u308b\u4eba\u3053\u308c\u3092RT\u3057\u3066DM\u304f\u3060\u3055\u3044\u2661 https:\/\/t.co\/nuYL64gE2a","source":"\u003ca href=\"https:\/\/twitter.com\/JkSumiko17\" rel=\"nofollow\"\u003eJK\u3059\u307f\u3053\u88cf\u30a2\u30ab\u30a8\u30c3\u30c1\u5927\u597d\u304d\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3595642514,"id_str":"3595642514","name":"JK\u3059\u307f\u3053\u88cf\u30a2\u30ab\u30a8\u30c3\u30c1\u5927\u597d\u304d","screen_name":"JkSumiko17","location":null,"url":"http:\/\/twx.pw\/jku2","description":"\u3059\u307f\u3053\u3060\u3049\u3002\u9ad82\u306b\u306a\u3063\u305f\u3049\u3002\u3053\u3063\u3061\u306f\u88cf\u57a2\u3060\u304b\u3089\u3001\u7537\u306e\u5b50\u3068\u3082\u3044\u3063\u3071\u3044\u7d61\u307f\u305f\u3044\u306a\u3002DM\u3082RT\u3082\u5927\u6b53\u8fce\u2606.\u3002.:*\u30fb","protected":false,"verified":false,"followers_count":204,"friends_count":574,"listed_count":2,"favourites_count":0,"statuses_count":2288,"created_at":"Thu Sep 17 16:19:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644546575981637632\/d4A296L-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644546575981637632\/d4A296L-_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727753649397761,"id_str":"663727753649397761","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4BfXIAEhrjW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4BfXIAEhrjW.jpg","url":"https:\/\/t.co\/nuYL64gE2a","display_url":"pic.twitter.com\/nuYL64gE2a","expanded_url":"http:\/\/twitter.com\/JkSumiko17\/status\/663727753934581760\/photo\/1","type":"photo","sizes":{"medium":{"w":208,"h":278,"resize":"fit"},"large":{"w":208,"h":278,"resize":"fit"},"small":{"w":208,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727753649397761,"id_str":"663727753649397761","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4BfXIAEhrjW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4BfXIAEhrjW.jpg","url":"https:\/\/t.co\/nuYL64gE2a","display_url":"pic.twitter.com\/nuYL64gE2a","expanded_url":"http:\/\/twitter.com\/JkSumiko17\/status\/663727753934581760\/photo\/1","type":"photo","sizes":{"medium":{"w":208,"h":278,"resize":"fit"},"large":{"w":208,"h":278,"resize":"fit"},"small":{"w":208,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080002660"} +{"delete":{"status":{"id":663726537590484994,"id_str":"663726537590484994","user_id":2888104364,"user_id_str":"2888104364"},"timestamp_ms":"1447080003386"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753926168577,"id_str":"663727753926168577","text":"Spent Sunday in the veg garden. Wasabi looking good, tasty leaves. Rhizome needs a bit more time. #vegetables https:\/\/t.co\/Hbj27tgjxR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3609050476,"id_str":"3609050476","name":"Tony","screen_name":"_TonyHall_","location":null,"url":null,"description":"Arboretum and Gardens Manager, Royal Botanic Gardens, Kew. Love Mediterranean flora, #Nature and #Photography. Thoughts and Tweets are my own personal view's.","protected":false,"verified":false,"followers_count":159,"friends_count":73,"listed_count":6,"favourites_count":40,"statuses_count":129,"created_at":"Thu Sep 10 12:16:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644027125385822208\/a3ZKY4dH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644027125385822208\/a3ZKY4dH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3609050476\/1442383005","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"vegetables","indices":[98,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727698288709632,"id_str":"663727698288709632","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0zQWEAAiijH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0zQWEAAiijH.jpg","url":"https:\/\/t.co\/Hbj27tgjxR","display_url":"pic.twitter.com\/Hbj27tgjxR","expanded_url":"http:\/\/twitter.com\/_TonyHall_\/status\/663727753926168577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727698288709632,"id_str":"663727698288709632","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0zQWEAAiijH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0zQWEAAiijH.jpg","url":"https:\/\/t.co\/Hbj27tgjxR","display_url":"pic.twitter.com\/Hbj27tgjxR","expanded_url":"http:\/\/twitter.com\/_TonyHall_\/status\/663727753926168577\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727732086452224,"id_str":"663727732086452224","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2xKWsAAzXrV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2xKWsAAzXrV.jpg","url":"https:\/\/t.co\/Hbj27tgjxR","display_url":"pic.twitter.com\/Hbj27tgjxR","expanded_url":"http:\/\/twitter.com\/_TonyHall_\/status\/663727753926168577\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"},"large":{"w":1024,"h":1820,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080002658"} +{"delete":{"status":{"id":663627300374638592,"id_str":"663627300374638592","user_id":2919494264,"user_id_str":"2919494264"},"timestamp_ms":"1447080003542"}} +{"delete":{"status":{"id":663725245749174272,"id_str":"663725245749174272","user_id":1484003522,"user_id_str":"1484003522"},"timestamp_ms":"1447080003659"}} +{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753938796544,"id_str":"663727753938796544","text":"\u041f\u0440\u043e\u0435\u043a\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0430\u0442 \u0438 \u041f\u041b\u0410\u0422\u0418\u0422 (\u043f\u0440\u043e\u0432\u0435\u0440\u0435\u043d\u043d\u043e) \u041d\u0430\u0448 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0435\u043a\u0442 \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442 \u0441\u0430\u043c\u044b\u0435 \u043a\u0430\u0447\u0435\u0441\u0442 https:\/\/t.co\/fjvSORFv3T https:\/\/t.co\/VwdO1cqiHy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2891893558,"id_str":"2891893558","name":"\u0433\u0435\u043e\u0440\u0433\u0438\u0439 \u043e\u0441\u0438\u0438\u043a","screen_name":"zhor1953","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2086,"friends_count":2123,"listed_count":7,"favourites_count":76,"statuses_count":3129,"created_at":"Tue Nov 25 10:47:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537196607645548545\/VMa1IoFm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537196607645548545\/VMa1IoFm_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fjvSORFv3T","expanded_url":"http:\/\/vk.cc\/43EIqI","display_url":"vk.cc\/43EIqI","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663727751933784064,"id_str":"663727751933784064","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37GU8AAlewS.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37GU8AAlewS.png","url":"https:\/\/t.co\/VwdO1cqiHy","display_url":"pic.twitter.com\/VwdO1cqiHy","expanded_url":"http:\/\/twitter.com\/zhor1953\/status\/663727753938796544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":445,"resize":"fit"},"medium":{"w":600,"h":278,"resize":"fit"},"small":{"w":340,"h":157,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727751933784064,"id_str":"663727751933784064","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37GU8AAlewS.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37GU8AAlewS.png","url":"https:\/\/t.co\/VwdO1cqiHy","display_url":"pic.twitter.com\/VwdO1cqiHy","expanded_url":"http:\/\/twitter.com\/zhor1953\/status\/663727753938796544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":445,"resize":"fit"},"medium":{"w":600,"h":278,"resize":"fit"},"small":{"w":340,"h":157,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080002661"} +{"delete":{"status":{"id":536159163815329792,"id_str":"536159163815329792","user_id":193695459,"user_id_str":"193695459"},"timestamp_ms":"1447080003690"}} +{"delete":{"status":{"id":663719986075054082,"id_str":"663719986075054082","user_id":3410878935,"user_id_str":"3410878935"},"timestamp_ms":"1447080003643"}} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758120493056,"id_str":"663727758120493056","text":"Follow KutipanAADC yaa :) Terimakasih Salam kenal windha_widiana","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1401226393,"id_str":"1401226393","name":"Arvian Bina Sejati","screen_name":"RadioPepatah19","location":"Indonesia","url":null,"description":"4991019019 || Jujur itu lebih baik dan sangat baik #Quotes - Libra -","protected":false,"verified":false,"followers_count":1562,"friends_count":14,"listed_count":3,"favourites_count":0,"statuses_count":624899,"created_at":"Sat May 04 02:21:33 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414932061313462272\/c-W-Ia73_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414932061313462272\/c-W-Ia73_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080003658"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758133063680,"id_str":"663727758133063680","text":"RT @lana_crews: I have no motivation for anything at this point","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630858726,"id_str":"630858726","name":"bron","screen_name":"brianna_suxx","location":null,"url":null,"description":"ur local brat\/crybaby","protected":false,"verified":false,"followers_count":612,"friends_count":679,"listed_count":2,"favourites_count":9044,"statuses_count":25323,"created_at":"Mon Jul 09 04:24:02 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448255614364295168\/BT3h7B8I.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448255614364295168\/BT3h7B8I.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661013736736575488\/HUaZXOkv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661013736736575488\/HUaZXOkv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630858726\/1446432477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:23 +0000 2015","id":663726581282639872,"id_str":"663726581282639872","text":"I have no motivation for anything at this point","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2634872847,"id_str":"2634872847","name":"lon","screen_name":"lana_crews","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":295,"friends_count":275,"listed_count":0,"favourites_count":4783,"statuses_count":1951,"created_at":"Mon Jun 23 16:24:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562822298390888448\/i_jS6onZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562822298390888448\/i_jS6onZ.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656921822831759360\/JsYBG4mx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656921822831759360\/JsYBG4mx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2634872847\/1446434716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lana_crews","name":"lon","id":2634872847,"id_str":"2634872847","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003661"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124687360,"id_str":"663727758124687360","text":"RT @Roaatak: \u0644\u064a\u0634 \u0627\u0644\u0628\u0646\u062a \u0628\u064a\u0648\u0645 \u0639\u0631\u0633\u0647\u0627 \u062a\u0644\u0628\u0633 \u0623\u0628\u064a\u0636 \u060c \u0648\u0627\u0644\u0631\u062c\u0627\u0644 \u0642\u0627\u0637 \u0623\u0633\u0648\u062f \u061f \n\u0644\u0627\u0646\u0647\u0627 : \u0647\u064a \u062a\u0646\u0648\u0651\u0631 \u062d\u064a\u0622\u062a\u0647 \u060c\u0648\u0647\u0648 \u064a\u0633\u0648\u0651\u062f \u0639\u064a\u0634\u062a\u0647\u0627 \ud83d\ude0e\n\n ^^^ \u0627\u0642\u062a\u0646\u0639\u062a \u060c \u0648\u0627\u0646\u062a\u0645\ud83d\ude05\u061f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3295154756,"id_str":"3295154756","name":"\u270c\ufe0f\u0628\u0646\u062a \u0628\u063a\u062f\u0627\u062f","screen_name":"Bintbaghdad123i","location":"baghdad","url":null,"description":"#\u0627\u0644\u062d\u0634\u062f #\u0641\u062e\u0631\u0646\u0627( \u0642\u062f \u0644\u0627 \u062a\u0643\u0648\u0646 \u062c\u0645\u064a\u0639 \u0623\u064a\u0627\u0645\u0646\u0627 \u062c\u064a\u062f\u0629 \u0648\u062c\u0645\u064a\u0644\u0629 \u061b\u0648\u0644\u0643\u0646 \u0647\u0646\u064e\u0627\u0643\u064e \u062f\u0648\u0645\u0627 \u0634\u064a\u0621 \u062c\u0645\u064a\u0644\u0652 \u0641\u064a \u0643\u0644 \u064a\u0648\u0645 \u0646\u0639\u064a\u0634\u0647 )\u062f\u0627\u0639\u0634\u064a \u0628\u0644\u0648\u0643\u270b\u0627\u0644\u0631\u064a\u062a\u0648\u064a\u062a \u0644\u0627 \u064a\u0645\u062b\u0644 \u0631\u0623\u064a\u064a. \u0627\u0644\u062e\u0627\u0635 \u0645\u0645\u0646\u0648\u0639\u270b \u0632\u0648\u0631\u0648\u0627 \u0645\u0641\u0636\u0644\u062a\u064a","protected":false,"verified":false,"followers_count":4402,"friends_count":110,"listed_count":6,"favourites_count":1319,"statuses_count":14257,"created_at":"Sun Jul 26 12:45:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663471731739336705\/hCo3Mp6Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663471731739336705\/hCo3Mp6Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3295154756\/1447019127","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 02:00:57 +0000 2015","id":655201801889816576,"id_str":"655201801889816576","text":"\u0644\u064a\u0634 \u0627\u0644\u0628\u0646\u062a \u0628\u064a\u0648\u0645 \u0639\u0631\u0633\u0647\u0627 \u062a\u0644\u0628\u0633 \u0623\u0628\u064a\u0636 \u060c \u0648\u0627\u0644\u0631\u062c\u0627\u0644 \u0642\u0627\u0637 \u0623\u0633\u0648\u062f \u061f \n\u0644\u0627\u0646\u0647\u0627 : \u0647\u064a \u062a\u0646\u0648\u0651\u0631 \u062d\u064a\u0622\u062a\u0647 \u060c\u0648\u0647\u0648 \u064a\u0633\u0648\u0651\u062f \u0639\u064a\u0634\u062a\u0647\u0627 \ud83d\ude0e\n\n ^^^ \u0627\u0642\u062a\u0646\u0639\u062a \u060c \u0648\u0627\u0646\u062a\u0645\ud83d\ude05\u061f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3939109468,"id_str":"3939109468","name":"\u0627\u0645 \u062c\u06af\u064a\u0631\u0629","screen_name":"Roaatak","location":null,"url":null,"description":"\u0627\u062d\u0631\u0642 \u0627\u0644\u0631\u0648\u062d \u0642\u0628\u0644 \u0644\u062a\u0631\u0648\u062d","protected":false,"verified":false,"followers_count":105,"friends_count":95,"listed_count":0,"favourites_count":19,"statuses_count":187,"created_at":"Mon Oct 12 17:34:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654088893625724928\/NUXwn_A2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654088893625724928\/NUXwn_A2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3939109468\/1444781907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Roaatak","name":"\u0627\u0645 \u062c\u06af\u064a\u0631\u0629","id":3939109468,"id_str":"3939109468","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124687361,"id_str":"663727758124687361","text":"Ja to pronta pra escola, s\u00f3 esperando a miga chegar pra irmos juntas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237369509,"id_str":"3237369509","name":"Adrielly Santana","screen_name":"dry_luanete","location":"Calif\u00f3rnia, USA","url":null,"description":"99% anjo","protected":false,"verified":false,"followers_count":152,"friends_count":373,"listed_count":1,"favourites_count":407,"statuses_count":650,"created_at":"Tue May 05 23:47:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656618033507672064\/mhTiUYWI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656618033507672064\/mhTiUYWI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237369509\/1446922967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145658880,"id_str":"663727758145658880","text":"\u0642\u0627\u0644 \u0627\u0644\u062d\u0633\u0646 \u0627\u0644\u0628\u0635\u0631\u064a \u0631\u062d\u0645\u0647 \u0627\u0644\u0644\u0647 : \u0645\u0646 \u0627\u0633\u062a\u0648\u0649 \u064a\u0648\u0645\u0627\u0647 \u0641\u0647\u0648 \u0645\u063a\u0628\u0648\u0646 \u0648\u0645\u0646 \u0643\u0627\u0646 \u064a\u0648\u0645\u0647 \u0634\u0631\u0627\u064b \u0645\u0646 \u0623\u0645\u0633\u0647 \u0641\u0647\u0648 \u0645\u062d\u0631\u0648\u0645\u060c \u0648\u0645\u0646 \u0644\u0645 \u064a\u0643\u0646 \u0641\u064a \u0645\u0632\u064a\u062f \u0641\u0647\u0648 \u0641\u064a \u0646\u0642\u0635\u0627\u0646","source":"\u003ca href=\"http:\/\/www.mespar.com\" rel=\"nofollow\"\u003etestonia\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3483627912,"id_str":"3483627912","name":"\u0645\u062e\u0644\u0627\u0628","screen_name":"ma5laabb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4167,"friends_count":4189,"listed_count":0,"favourites_count":10,"statuses_count":1341,"created_at":"Mon Sep 07 16:44:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640928846598946816\/68Mzo2Gb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640928846598946816\/68Mzo2Gb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758133084160,"id_str":"663727758133084160","text":"\u0421\u0430\u043b\u0430\u0442 \"\u041b\u0438\u0441\u0438\u0447\u043a\u0430\" \u041f\u0440\u043e\u0441\u0442\u043e\u0439, \u043d\u043e \u043e\u0447\u0435\u043d\u044c \u043d\u0435\u0436\u043d\u044b\u0439 \u0438 \u0432\u043a\u0443\u0441\u043d\u044b\u0439 \u0441\u0430\u043b\u0430\u0442!...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264395570,"id_str":"1264395570","name":"HannahHickey","screen_name":"HannahHickey2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":26,"listed_count":0,"favourites_count":0,"statuses_count":61263,"created_at":"Wed Mar 13 13:01:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3666085254\/4c45ce1e428a109654d25ad29b2c72a4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3666085254\/4c45ce1e428a109654d25ad29b2c72a4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080003661"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758133080064,"id_str":"663727758133080064","text":"butman782 Azy FTG","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3180878997,"id_str":"3180878997","name":"Marine Le Pen Bot","screen_name":"MarineLePenBot","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":4,"listed_count":3,"favourites_count":0,"statuses_count":228219,"created_at":"Sat Apr 18 21:34:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589542917582299136\/kGUDwJOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589542917582299136\/kGUDwJOM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3180878997\/1429393151","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080003661"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145667073,"id_str":"663727758145667073","text":"\ud83d\udcf9 https:\/\/t.co\/c3Ood8xZZX","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417462986,"id_str":"417462986","name":"lenice","screen_name":"supersmiley_lee","location":null,"url":null,"description":"hi! follow me? Tumblr @theresanoldmaninmyhead","protected":false,"verified":false,"followers_count":35,"friends_count":56,"listed_count":0,"favourites_count":156,"statuses_count":2407,"created_at":"Sun Nov 20 23:54:11 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638170084138196992\/CrDRcyuG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638170084138196992\/CrDRcyuG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417462986\/1422711678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c3Ood8xZZX","expanded_url":"http:\/\/tmblr.co\/Z4hfsp1xljvq4","display_url":"tmblr.co\/Z4hfsp1xljvq4","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758116278273,"id_str":"663727758116278273","text":"RT RA_Badass: Very good Axel and Kiko nakapuntos si Clark dahil sa inyo!\n#OTWOLWish\nJDs\n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2526925184,"id_str":"2526925184","name":"ashley","screen_name":"nightybutera8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46,"friends_count":504,"listed_count":15,"favourites_count":30,"statuses_count":71565,"created_at":"Tue May 27 08:37:43 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631361454843691008\/5lpz6rMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631361454843691008\/5lpz6rMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2526925184\/1439363282","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[73,83]},{"text":"PushAwardsJaDines","indices":[88,106]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080003657"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149857280,"id_str":"663727758149857280","text":"RT @falsianecobra: ei te amo muito\n\nfica longe de mim\n\nn aguento mais\n\neu te odeio\n\nvamo ficar junto\n\nte amo\n\nn\u00e3o sai de perto de mim\n\nvamo\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4122593524,"id_str":"4122593524","name":"yaze","screen_name":"YasminPaz11","location":null,"url":null,"description":"EU AMO A DINHA","protected":false,"verified":false,"followers_count":21,"friends_count":44,"listed_count":0,"favourites_count":10,"statuses_count":96,"created_at":"Thu Nov 05 22:34:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662400370589704192\/-PsFGM_v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662400370589704192\/-PsFGM_v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4122593524\/1446772761","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:52 +0000 2015","id":663719406443356160,"id_str":"663719406443356160","text":"ei te amo muito\n\nfica longe de mim\n\nn aguento mais\n\neu te odeio\n\nvamo ficar junto\n\nte amo\n\nn\u00e3o sai de perto de mim\n\nvamo si beja","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320028232,"id_str":"3320028232","name":"Falsiane","screen_name":"falsianecobra","location":null,"url":null,"description":"eu memo","protected":false,"verified":false,"followers_count":79283,"friends_count":102,"listed_count":8,"favourites_count":55,"statuses_count":2882,"created_at":"Fri Jun 12 00:47:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655152896384856065\/qc-Ql2eh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655152896384856065\/qc-Ql2eh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":112,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"falsianecobra","name":"Falsiane","id":3320028232,"id_str":"3320028232","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149861376,"id_str":"663727758149861376","text":"RT @mojeeb7219: \u062a\u0642\u0631\u064a\u0631 #\u0633\u0642\u0637\u0631\u064a\n7-\u062a\u0639\u0637\u0644 \u0634\u0628\u0643\u0629\u0627\u0644\u0645\u064a\u0627\u0647 \u0627\u0644\u062d\u0643\u0648\u0645\u064a\u0629\u0641\u064a \u0623\u062d\u064a\u0627\u0621\u0645\u062f\u064a\u0646\u0629\"\u062d\u062f\u064a\u0628\u0648\u0647\"\u0648\u062a\u0647\u062f\u0645 \u0627\u0644\u0645\u0626\u0627\u062a \u0645\u0646 \u0622\u0628\u0627\u0631\u0627\u0644\u0634\u0631\u0628 \u0641\u064a \u0627\u0644\u0623\u0631\u064a\u0627\u0641 \u0648\u062c\u0631\u0641 \u0627\u0646\u0627\u0628\u064a\u0628 \u0645\u0634\u0627\u0631\u064a\u0639 \u0645\u064a\u0627\u0647 \u0627\u0644\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3238497636,"id_str":"3238497636","name":"\u0648\u0631\u062f \u0627\u0644\u0640\u0631\u0628\u064a\u0639 | \u0642\u0627\u0628\u0640\u0648\u0633","screen_name":"aldalaa23","location":"\u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646","url":null,"description":"\u0627\u0633\u062a\u063a\u0641\u0631\u0643 \u0631\u0628\u0640\u064a \u0648\u0627\u062a\u0640\u0648\u0628 \u0625\u0644\u064a\u06af","protected":false,"verified":false,"followers_count":142,"friends_count":386,"listed_count":0,"favourites_count":105,"statuses_count":2121,"created_at":"Sun Jun 07 05:59:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607427495676084224\/ok9y6Z1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607427495676084224\/ok9y6Z1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238497636\/1433656973","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:04 +0000 2015","id":663727259170246656,"id_str":"663727259170246656","text":"\u062a\u0642\u0631\u064a\u0631 #\u0633\u0642\u0637\u0631\u064a\n7-\u062a\u0639\u0637\u0644 \u0634\u0628\u0643\u0629\u0627\u0644\u0645\u064a\u0627\u0647 \u0627\u0644\u062d\u0643\u0648\u0645\u064a\u0629\u0641\u064a \u0623\u062d\u064a\u0627\u0621\u0645\u062f\u064a\u0646\u0629\"\u062d\u062f\u064a\u0628\u0648\u0647\"\u0648\u062a\u0647\u062f\u0645 \u0627\u0644\u0645\u0626\u0627\u062a \u0645\u0646 \u0622\u0628\u0627\u0631\u0627\u0644\u0634\u0631\u0628 \u0641\u064a \u0627\u0644\u0623\u0631\u064a\u0627\u0641 \u0648\u062c\u0631\u0641 \u0627\u0646\u0627\u0628\u064a\u0628 \u0645\u0634\u0627\u0631\u064a\u0639 \u0645\u064a\u0627\u0647 \u0627\u0644\u0631\u064a\u0641\n#\u0645\u064a\u062c\n#MEGH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289094936,"id_str":"3289094936","name":"\u0627\u0644\u0633\u0642\u0637\u0631\u064a","screen_name":"mojeeb7219","location":"\u062c\u0632\u064a\u0631\u0629 \u0633\u0642\u0637\u0631\u0649 ","url":null,"description":"#socotraisland","protected":false,"verified":false,"followers_count":1958,"friends_count":2531,"listed_count":11,"favourites_count":131,"statuses_count":266,"created_at":"Thu Jul 23 19:54:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661087290425540608\/k7MVln6V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661087290425540608\/k7MVln6V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289094936\/1446450465","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0633\u0642\u0637\u0631\u064a","indices":[6,12]},{"text":"\u0645\u064a\u062c","indices":[127,131]},{"text":"MEGH","indices":[132,137]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0633\u0642\u0637\u0631\u064a","indices":[22,28]},{"text":"\u0645\u064a\u062c","indices":[139,140]},{"text":"MEGH","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"mojeeb7219","name":"\u0627\u0644\u0633\u0642\u0637\u0631\u064a","id":3289094936,"id_str":"3289094936","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145638400,"id_str":"663727758145638400","text":"RT @OfficialTAZ: Tomorrow: start of #BBBTaz #TheTazShow -line up over few weeks. @WillFerrara @zacksabrejr @KingRicochet #NotGuest https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192123972,"id_str":"192123972","name":"Jasin Karloff","screen_name":"JasinKarloff","location":"Sleepy Hollow","url":"http:\/\/www.JasinKarloff.weebly.com","description":"10+ year independent wrestler \u2022 Trained by Taz & Darren Young \u2022 For bookings contact JasinKarloff@Gmail.com","protected":false,"verified":false,"followers_count":497,"friends_count":170,"listed_count":5,"favourites_count":96,"statuses_count":9554,"created_at":"Sat Sep 18 07:21:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/151394925\/2-891502.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/151394925\/2-891502.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"070380","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536254641148014592\/ipxDHzAR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536254641148014592\/ipxDHzAR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192123972\/1416379972","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:45:59 +0000 2015","id":663517859428061184,"id_str":"663517859428061184","text":"Tomorrow: start of #BBBTaz #TheTazShow -line up over few weeks. @WillFerrara @zacksabrejr @KingRicochet #NotGuest https:\/\/t.co\/sryU5HLIE7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":49368656,"id_str":"49368656","name":"TAZ","screen_name":"OfficialTAZ","location":"from a studio near you","url":"http:\/\/www.tazshow.com","description":"Former World Champ & host of daily LIVE morn drive show #TheTazShow http:\/\/tazshow.com Itunes @Spotify @TuneIn #CBSRadio #TazShow LIVE CALL IN 866-475-2948","protected":false,"verified":true,"followers_count":333257,"friends_count":405,"listed_count":2699,"favourites_count":1020,"statuses_count":18981,"created_at":"Sun Jun 21 17:21:43 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540319183133609985\/t4iCU5_d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540319183133609985\/t4iCU5_d.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389730579587072\/X4Vw38He_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389730579587072\/X4Vw38He_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49368656\/1446999142","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":34,"entities":{"hashtags":[{"text":"BBBTaz","indices":[19,26]},{"text":"TheTazShow","indices":[28,39]},{"text":"NotGuest","indices":[105,114]}],"urls":[],"user_mentions":[{"screen_name":"WillFerrara","name":"Will Ferrara","id":248409438,"id_str":"248409438","indices":[65,77]},{"screen_name":"zacksabrejr","name":"\u30b6\u30c3\u30af\u30fb\u30bb\u30a4\u30d0\u30fcJr","id":26817640,"id_str":"26817640","indices":[78,90]},{"screen_name":"KingRicochet","name":"Ricochet","id":230407089,"id_str":"230407089","indices":[91,104]}],"symbols":[],"media":[{"id":663517837005320192,"id_str":"663517837005320192","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663517837005320192,"id_str":"663517837005320192","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663517837038903297,"id_str":"663517837038903297","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RLW4AEvFcB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RLW4AEvFcB.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663517837089185792,"id_str":"663517837089185792","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RXWIAA3AMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RXWIAA3AMh.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BBBTaz","indices":[36,43]},{"text":"TheTazShow","indices":[45,56]},{"text":"NotGuest","indices":[122,131]}],"urls":[],"user_mentions":[{"screen_name":"OfficialTAZ","name":"TAZ","id":49368656,"id_str":"49368656","indices":[3,15]},{"screen_name":"WillFerrara","name":"Will Ferrara","id":248409438,"id_str":"248409438","indices":[82,94]},{"screen_name":"zacksabrejr","name":"\u30b6\u30c3\u30af\u30fb\u30bb\u30a4\u30d0\u30fcJr","id":26817640,"id_str":"26817640","indices":[95,107]},{"screen_name":"KingRicochet","name":"Ricochet","id":230407089,"id_str":"230407089","indices":[108,121]}],"symbols":[],"media":[{"id":663517837005320192,"id_str":"663517837005320192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663517859428061184,"source_status_id_str":"663517859428061184","source_user_id":49368656,"source_user_id_str":"49368656"}]},"extended_entities":{"media":[{"id":663517837005320192,"id_str":"663517837005320192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RDWcAAi_iO.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663517859428061184,"source_status_id_str":"663517859428061184","source_user_id":49368656,"source_user_id_str":"49368656"},{"id":663517837038903297,"id_str":"663517837038903297","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RLW4AEvFcB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RLW4AEvFcB.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663517859428061184,"source_status_id_str":"663517859428061184","source_user_id":49368656,"source_user_id_str":"49368656"},{"id":663517837089185792,"id_str":"663517837089185792","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVJ9RXWIAA3AMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVJ9RXWIAA3AMh.jpg","url":"https:\/\/t.co\/sryU5HLIE7","display_url":"pic.twitter.com\/sryU5HLIE7","expanded_url":"http:\/\/twitter.com\/OfficialTAZ\/status\/663517859428061184\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663517859428061184,"source_status_id_str":"663517859428061184","source_user_id":49368656,"source_user_id_str":"49368656"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149820416,"id_str":"663727758149820416","text":"RT @najwakaram: #NKO\nNajwa Karam in a beautiful dress by nicolasjebran on #CelebrityDuets\u2026 https:\/\/t.co\/mwVtzx3VOp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1678426255,"id_str":"1678426255","name":"Myriam Khalil","screen_name":"miminkmimi","location":"Lebanon ","url":null,"description":"love @najwakaram | NDU student","protected":false,"verified":false,"followers_count":744,"friends_count":178,"listed_count":2,"favourites_count":5570,"statuses_count":6254,"created_at":"Sat Aug 17 14:43:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539809693653155840\/1_yuncu4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539809693653155840\/1_yuncu4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:13:58 +0000 2015","id":663449404041465856,"id_str":"663449404041465856","text":"#NKO\nNajwa Karam in a beautiful dress by nicolasjebran on #CelebrityDuets\u2026 https:\/\/t.co\/mwVtzx3VOp","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462004145,"id_str":"462004145","name":"Najwa Karam","screen_name":"najwakaram","location":null,"url":"http:\/\/www.najwakaram.com","description":"Lebanese Singer. New Single and Music Video Bawsit Abel L Nawm Now on Youtube. Watch it on http:\/\/bit.ly\/1I5NlT9.","protected":false,"verified":true,"followers_count":4266241,"friends_count":95,"listed_count":3760,"favourites_count":4663,"statuses_count":9265,"created_at":"Thu Jan 12 13:06:58 +0000 2012","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"05013D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000159327632\/PLL_rsLN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000159327632\/PLL_rsLN.jpeg","profile_background_tile":false,"profile_link_color":"F05B79","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641659229149859840\/27wuGVsf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641659229149859840\/27wuGVsf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462004145\/1441818428","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":400,"entities":{"hashtags":[{"text":"NKO","indices":[0,4]},{"text":"CelebrityDuets","indices":[58,73]}],"urls":[{"url":"https:\/\/t.co\/mwVtzx3VOp","expanded_url":"https:\/\/instagram.com\/p\/91juL0wZxJ\/","display_url":"instagram.com\/p\/91juL0wZxJ\/","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NKO","indices":[16,20]},{"text":"CelebrityDuets","indices":[74,89]}],"urls":[{"url":"https:\/\/t.co\/mwVtzx3VOp","expanded_url":"https:\/\/instagram.com\/p\/91juL0wZxJ\/","display_url":"instagram.com\/p\/91juL0wZxJ\/","indices":[91,114]}],"user_mentions":[{"screen_name":"najwakaram","name":"Najwa Karam","id":462004145,"id_str":"462004145","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154014720,"id_str":"663727758154014720","text":"RT @abuhaea2525: \u0625\u0628\u062f\u0627\u0639 \u064a\u062a\u0644\u0648 \u0625\u0628\u062f\u0627\u0639\u0622 \u0628\u0625\u062d\u0633\u0627\u0633 \u0639\u0630\u0628 \u0648\u0642\u0644\u0645 \u0645\u0645\u064a\u0632\n\u062d\u0631\u0648\u0648\u0648\u0648\u0641 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647\n@sfso2 \n30 \u0627\u0644\u0641 \u0645\u062a\u0627\u0628\u0639 \u0634\u0627\u0647\u062f\u064a\u0646 \u0644\u0643 \ufefb\u0639\u0644\u064a\u0643\n\u0623\u064a\u0647\u0627 \u0627\ufef7\u0645\u064a\u0631 \u0627\u0644\u0631\u0627\u0642\u064a https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3459243975,"id_str":"3459243975","name":"\u0644\u064e\u0645\u0652\u0633\u064e\u0629\u0652 \u0641\u0622\u062a\u0650\u0646\u064e\u0629\u064f","screen_name":"lmsatunthafatna","location":"K.S.A","url":null,"description":"\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646 \u0645\u0641\u0636\u0644\u062a\u064a \u0627\u0644\u064a (\u0639\u062f\u0627 \u0623\u0628\u064a\u0627\u062a \u0627\u0644\u0634\u0639\u0631 \u0648\u0627\u0644\u0630\u0643\u0631 )","protected":false,"verified":false,"followers_count":7351,"friends_count":6588,"listed_count":1,"favourites_count":206,"statuses_count":9102,"created_at":"Thu Aug 27 16:12:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"642D8B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644779968711532544\/BmpuX888_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644779968711532544\/BmpuX888_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3459243975\/1445978369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:12:20 +0000 2015","id":662558122297413632,"id_str":"662558122297413632","text":"\u0625\u0628\u062f\u0627\u0639 \u064a\u062a\u0644\u0648 \u0625\u0628\u062f\u0627\u0639\u0622 \u0628\u0625\u062d\u0633\u0627\u0633 \u0639\u0630\u0628 \u0648\u0642\u0644\u0645 \u0645\u0645\u064a\u0632\n\u062d\u0631\u0648\u0648\u0648\u0648\u0641 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647\n@sfso2 \n30 \u0627\u0644\u0641 \u0645\u062a\u0627\u0628\u0639 \u0634\u0627\u0647\u062f\u064a\u0646 \u0644\u0643 \ufefb\u0639\u0644\u064a\u0643\n\u0623\u064a\u0647\u0627 \u0627\ufef7\u0645\u064a\u0631 \u0627\u0644\u0631\u0627\u0642\u064a https:\/\/t.co\/fwz16f7igv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314929309,"id_str":"3314929309","name":"\u2661\u062f\u0631\u0628\u0643\u0634\u2661","screen_name":"abuhaea2525","location":"@abohaea255","url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0641\u0631\u062c \u0639\u0646\u064a \u0645\u0627\u0642\u062f \u0636\u0627\u0642 \u0628\u0647 \u0635\u062f\u0631\u064a \u0648\u0645\u0644 \u0645\u0646\u0647 \n\u0635\u0628\u0631\u064a \u0648\u0642\u0644\u062a \u0641\u064a\u0647 \u062d\u064a\u0644\u062a\u064a \u0648\u0636\u0639\u0641\u062a \u0623\u0645\u0627\u0645\u0647 \u0642\u0648\u062a\u064a \n\u0627\u0644\u0644\u0647\u0645 \u0631\u062f\u0644\u064a \u063a\u0627\u0626\u0628\u064a \u0625\u0646\u0643 \u0639\u0644\u0649 \u0643\u0644 \u0634\u064a\u0621 \u0642\u062f\u064a\u0631\n#\u0642\u0631\u0648\u0628-\u062a\u0645\u0646\u064a\u062a\u0643-\u0635\u062f\u0641\u0647-\u0644\u0644\u062f\u0639\u0645","protected":false,"verified":false,"followers_count":6965,"friends_count":5855,"listed_count":4,"favourites_count":59,"statuses_count":19166,"created_at":"Fri Aug 14 08:42:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661510394729615361\/AP3gftOp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661510394729615361\/AP3gftOp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314929309\/1446664538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sfso2","name":"\u2661\u0627\u062d\u0633\u0627\u0633\u0643 \u0627\u0644\u0631\u0627\u0642\u064a\u2661","id":717996282,"id_str":"717996282","indices":[62,68]}],"symbols":[],"media":[{"id":662558047714287616,"id_str":"662558047714287616","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","url":"https:\/\/t.co\/fwz16f7igv","display_url":"pic.twitter.com\/fwz16f7igv","expanded_url":"http:\/\/twitter.com\/abuhaea2525\/status\/662558122297413632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"},"large":{"w":785,"h":1023,"resize":"fit"},"small":{"w":340,"h":443,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662558047714287616,"id_str":"662558047714287616","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","url":"https:\/\/t.co\/fwz16f7igv","display_url":"pic.twitter.com\/fwz16f7igv","expanded_url":"http:\/\/twitter.com\/abuhaea2525\/status\/662558122297413632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"},"large":{"w":785,"h":1023,"resize":"fit"},"small":{"w":340,"h":443,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abuhaea2525","name":"\u2661\u062f\u0631\u0628\u0643\u0634\u2661","id":3314929309,"id_str":"3314929309","indices":[3,15]},{"screen_name":"sfso2","name":"\u2661\u0627\u062d\u0633\u0627\u0633\u0643 \u0627\u0644\u0631\u0627\u0642\u064a\u2661","id":717996282,"id_str":"717996282","indices":[79,85]}],"symbols":[],"media":[{"id":662558047714287616,"id_str":"662558047714287616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","url":"https:\/\/t.co\/fwz16f7igv","display_url":"pic.twitter.com\/fwz16f7igv","expanded_url":"http:\/\/twitter.com\/abuhaea2525\/status\/662558122297413632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"},"large":{"w":785,"h":1023,"resize":"fit"},"small":{"w":340,"h":443,"resize":"fit"}},"source_status_id":662558122297413632,"source_status_id_str":"662558122297413632","source_user_id":3314929309,"source_user_id_str":"3314929309"}]},"extended_entities":{"media":[{"id":662558047714287616,"id_str":"662558047714287616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHhCLUWIAAKkpv.jpg","url":"https:\/\/t.co\/fwz16f7igv","display_url":"pic.twitter.com\/fwz16f7igv","expanded_url":"http:\/\/twitter.com\/abuhaea2525\/status\/662558122297413632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"},"large":{"w":785,"h":1023,"resize":"fit"},"small":{"w":340,"h":443,"resize":"fit"}},"source_status_id":662558122297413632,"source_status_id_str":"662558122297413632","source_user_id":3314929309,"source_user_id_str":"3314929309"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141321218,"id_str":"663727758141321218","text":"\u3042\u308a\u304c\u3068\u3054\u3056\u3044\u307e\u3059\u203c\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3550355773,"id_str":"3550355773","name":"\u771f\u7dbe","screen_name":"2pc5n2i","location":null,"url":null,"description":"fashion\/make\u2661\n\u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307e\u3059!\n\u7537\u5973\u95a2\u4fc2\u306a\u304f\u53cb\u9054\u6b32\u3057\u3044\u306e\u3067\u3001\n\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u263e","protected":false,"verified":false,"followers_count":516,"friends_count":527,"listed_count":0,"favourites_count":0,"statuses_count":295,"created_at":"Sun Sep 13 15:06:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643078536366960641\/tFh7lQFl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643078536366960641\/tFh7lQFl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3550355773\/1442156854","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141427712,"id_str":"663727758141427712","text":"\u30e2\u30a4\uff01Android\u304b\u3089\u30ad\u30e3\u30b9\u914d\u4fe1\u4e2d - \/ \u9069\u5f53\u306b\u96d1\u8ac7\u3068\u304b\u30b3\u30e9\u30dc\u3068 https:\/\/t.co\/yu8jxYe6UD","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2608959078,"id_str":"2608959078","name":"\u4e09\u90ce\u5143\u5e25","screen_name":"Yuki_Saburo","location":null,"url":"http:\/\/twpf.jp\/Yuki_Saburo","description":"\u8272\u3005\u306a\u30a2\u30cb\u30e1\u304c\u597d\u304d\u3067\u3059\u3002CAS\u306a\u3069\u3082\u3084\u3063\u3066\u3044\u307e\u3059(=\uff9f\u03c9\uff9f)\uff89 petit milady\/\u7af9\u9054\u5f69\u5948(\u305f\u3051\u305f\u3064\u516c\u56fd\u6c11)\u5185\u7530\u771f\u793c\/\u60a0\u6728\u78a7\/\u5c0f\u5009\u552f","protected":false,"verified":false,"followers_count":1659,"friends_count":1320,"listed_count":45,"favourites_count":52083,"statuses_count":35302,"created_at":"Mon Jul 07 05:21:43 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510654542476607488\/1QQd9jZq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510654542476607488\/1QQd9jZq.jpeg","profile_background_tile":true,"profile_link_color":"00ADB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658199276548325376\/TT2WP_Wb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658199276548325376\/TT2WP_Wb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2608959078\/1444471415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yu8jxYe6UD","expanded_url":"http:\/\/cas.st\/cd3ccdf","display_url":"cas.st\/cd3ccdf","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149861377,"id_str":"663727758149861377","text":"@SwagLatinos2 Vos dame esos dos bebos y yo te doy a mi hermano, hermoso cambio \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727561130819585,"in_reply_to_status_id_str":"663727561130819585","in_reply_to_user_id":456200628,"in_reply_to_user_id_str":"456200628","in_reply_to_screen_name":"SwagLatinos2","user":{"id":2993212055,"id_str":"2993212055","name":"Milagros Serena","screen_name":"FreyreMilagros","location":"Buenos Aires, Argentina","url":null,"description":"\/\/.. Sos mi invento m\u00e1s bonito..\/\/ D.M.G siempre en mi coraz\u00f3n \/\/..Que nada te impida sonre\u00edr.. \/\/","protected":false,"verified":false,"followers_count":464,"friends_count":234,"listed_count":0,"favourites_count":7272,"statuses_count":20380,"created_at":"Thu Jan 22 23:23:14 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663398831204278272\/KPNMIsiu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663398831204278272\/KPNMIsiu_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SwagLatinos2","name":"Priscila Ag\u00fcero","id":456200628,"id_str":"456200628","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758132903936,"id_str":"663727758132903936","text":"\u3053\u306e\u5bd2\u54b2\u3055\u3093\u306e\u65b9\u3081\u3063\u3061\u3083\u304b\u3063\u3053\u3044\u3044\u3088\u306d\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384953631,"id_str":"384953631","name":"\u3042\u3044\u3058\u3082\u3093","screen_name":"aiji_atsu","location":null,"url":"http:\/\/aijimon.tumblr.com","description":"\u5f31\u866b\u30da\u30c0\u30eb \u65b0\u8352\u65b0 \u5dfb\u5742 \u8352\u5742 \u4eca\u5742 \u4fe1\u53f7\u6a5f \u5354\u8abf\u7d44 \u65b0\u958b\u5144\u5f1f \u5c71\u5742 \u6771\u5dfb \u79e6\u91ce \u60a0\u9ed2 \u307e\u306a\u3093\u3061\u3087 \u771f\u6771 \u307f\u3069\u5742 \u4ed6\u5168\u3066\u306e\u30ab\u30d7\u3092\u3044\u305f\u3060\u304d\u307e\u3059\u3002\u6210\u4eba\u6e08\u307f\u2640","protected":false,"verified":false,"followers_count":178,"friends_count":280,"listed_count":8,"favourites_count":7364,"statuses_count":61742,"created_at":"Tue Oct 04 16:31:20 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660046646827315200\/SGDbN3YJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660046646827315200\/SGDbN3YJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384953631\/1445351768","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003661"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145646592,"id_str":"663727758145646592","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750024923,"id_str":"2750024923","name":"Michael Abel","screen_name":"henrysamo1","location":"New Orleans, LA","url":null,"description":"Independent Entertainment Professional","protected":false,"verified":false,"followers_count":180,"friends_count":1280,"listed_count":6,"favourites_count":6777,"statuses_count":8481,"created_at":"Wed Aug 20 18:50:49 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502166087505416192\/WYel4R9Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502166087505416192\/WYel4R9Y_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1529,"favorite_count":952,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149869568,"id_str":"663727758149869568","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/rZHuf7yTd0","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3678656419,"id_str":"3678656419","name":"shreeve","screen_name":"thetalents2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":7,"listed_count":6,"favourites_count":1,"statuses_count":53065,"created_at":"Fri Sep 25 06:26:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647296293035900928\/GvqEQNmi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647296293035900928\/GvqEQNmi_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727616302665728,"quoted_status_id_str":"663727616302665728","quoted_status":{"created_at":"Mon Nov 09 14:39:29 +0000 2015","id":663727616302665728,"id_str":"663727616302665728","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/VZhJK1nJQo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727296705073152,"quoted_status_id_str":"663727296705073152","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/VZhJK1nJQo","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727296705073152","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/rZHuf7yTd0","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727616302665728","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141296641,"id_str":"663727758141296641","text":">> UUT PERMATASARI ~ Gak Jelas << | https:\/\/t.co\/89n9UibXUs | #LocalPisanEuy","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3016876157,"id_str":"3016876157","name":"BFC-Radio","screen_name":"BFC_Radio","location":"Cimahi - Indonesia","url":"http:\/\/barayafinocimahi.blogspot.com","description":"\u266cOn Airing BFC-Radio | #LocalPisanEuy dari Kota Cimahi - Jawa Barat ID 40532 via aplikasi #Erdioo #TuneIn #Nobex Email: BFC.Radio@gmail.com ((crew:indra))","protected":false,"verified":false,"followers_count":1087,"friends_count":1943,"listed_count":15,"favourites_count":219,"statuses_count":221993,"created_at":"Wed Feb 04 09:16:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFA500","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657508710374248449\/rtT3z5aF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657508710374248449\/rtT3z5aF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016876157\/1438328361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LocalPisanEuy","indices":[74,88]}],"urls":[{"url":"https:\/\/t.co\/89n9UibXUs","expanded_url":"http:\/\/listen.radionomy.com\/BFC-Radio.m3u","display_url":"listen.radionomy.com\/BFC-Radio.m3u","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154072064,"id_str":"663727758154072064","text":"Who regulates #bitcoin? the community of course! #crypto #cryptocurrency https:\/\/t.co\/osAqQoyOZ3","source":"\u003ca href=\"http:\/\/bitcoinz.be\" rel=\"nofollow\"\u003eBitcoinzManFull\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2616036566,"id_str":"2616036566","name":"Bitcoinz","screen_name":"BitcoinzMan","location":"Belgium","url":"http:\/\/bitcoinz.be","description":"Wanna contribute to the growth of Bitcoin acceptance. Gathering and distribute news mainly on Bitcoin.Please visit my website.","protected":false,"verified":false,"followers_count":11846,"friends_count":11801,"listed_count":701,"favourites_count":919,"statuses_count":324257,"created_at":"Thu Jul 10 19:38:56 +0000 2014","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510456212286996480\/JQUMXFeN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510456212286996480\/JQUMXFeN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2616036566\/1410353462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bitcoin","indices":[14,22]},{"text":"crypto","indices":[49,56]},{"text":"cryptocurrency","indices":[57,72]}],"urls":[{"url":"https:\/\/t.co\/osAqQoyOZ3","expanded_url":"http:\/\/j.mp\/1Nk9ga6","display_url":"j.mp\/1Nk9ga6","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758128779264,"id_str":"663727758128779264","text":"\u3010\u5ba3\u4f1d\u3011\u30cd\u30c3\u30c8\u6295\u7a3f\u5c0f\u8aac\u3002\u7121\u6599\u3067\u8aad\u3081\u307e\u3059\u3002\n\u3000\u3000\u50d5\u306f\u601d\u3044\u51fa\u3092\u65c5\u3059\u308b\u3002\u77ed\u7de8\u3002\u4e2d\u5e74\u306e\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u3002\n\u3000\u300c\u697d\u3057\u304b\u3063\u305f\u4e8b\u3082\u3001\u5acc\u306a\u4e8b\u3082\u3001\u5168\u90e8\u899a\u3048\u3066\u3066\u300d\n\u3000\u300e\u541b\u3092\u63a2\u3057\u3066\u3044\u308b\u300f \u30a2\u30eb\u30d5\u30a1\u30dd\u30ea\u30b9 - \u96fb\u7db2\u6d6e\u904a\u90fd\u5e02 -\n\u3000 https:\/\/t.co\/EfkiDJfkX7","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1649176945,"id_str":"1649176945","name":"\u4e2d\u5e74\u30f2\u30bf\u305b\u3069in \u3010\u5b64\u72ec\u5802\u3011","screen_name":"kiraoyazi","location":"\u798f\u5cf6","url":null,"description":"\u798f\u5cf6\u4e2d\u5e74\u30f2\u30bf\u517c\u696d\u305b\u3069\u308a\u3002twitter\u306e\u4f7f\u3044\u65b9\u4eca\u30a4\u30c1\u5206\u304b\u3089\u306a\u3044\u3002\u6620\u753b\u30fb\u30a2\u30cb\u30e1\u30fb\u97f3\u697d\u30fb\u30a2\u30a4\u30c9\u30eb\u3001\u672c\u7b49\u3054\u3063\u3061\u3083\u6df7\u305c\u306b\u545f\u3044\u3066\u307e\u3059\u3002\u30b5\u30a4\u30b5\u30a4\u30fb\u3067\u3093\u3071\u30fb\u4eca\u9803\u30d9\u30d3\u30ecJ\u306b\u30cf\u30de\u3063\u3066\u307e\u3059\u3002 \u3042\u3068\u5730\u5143\u30a2\u30a4\u30c9\u30eb\u3082\u5927\u597d\u304d\u3002\u5730\u5143\u306e\u30a4\u30d9\u30f3\u30c8\u306f\u306a\u308b\u3079\u304f\u62e1\u6563\u5fdc\u63f4\u3057\u3088\u3046\u3002\u8272\u3005\u3084\u3063\u3066\u307e\u3059\u304c\u3001\u6700\u8fd1\u3001\u5b64\u72ec\u5802\u3068\u3044\u3046\u540d\u524d\u3067\u30cd\u30c3\u30c8\u306b\u5c0f\u8aac\u6295\u7a3f\u3082\u3057\u3066\u307e\u3059\u3002\u5b9c\u3057\u304f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":656,"friends_count":542,"listed_count":25,"favourites_count":8557,"statuses_count":27213,"created_at":"Tue Aug 06 01:35:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604943811756716032\/y_nLbC-B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604943811756716032\/y_nLbC-B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1649176945\/1412133554","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EfkiDJfkX7","expanded_url":"http:\/\/www.alphapolis.co.jp\/content\/c","display_url":"alphapolis.co.jp\/content\/c","indices":[102,125]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003660"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758128914432,"id_str":"663727758128914432","text":"eu vejo umas coisas nessa internet que puta que pariu mano HJANXKAMXJJA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72931824,"id_str":"72931824","name":"atacante","screen_name":"salverafs","location":"011","url":null,"description":"n\u00e3o falta comida, bebida, mulher e seda","protected":false,"verified":false,"followers_count":1096,"friends_count":465,"listed_count":8,"favourites_count":6720,"statuses_count":15112,"created_at":"Wed Sep 09 19:40:52 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"EB52A9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663373328900558852\/NlgqM_bp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663373328900558852\/NlgqM_bp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72931824\/1438914083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080003660"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758120501249,"id_str":"663727758120501249","text":"\ud83d\ude34\ud83d\ude34\ud83d\ude34\ud83d\udd95\ud83c\udffc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3836007561,"id_str":"3836007561","name":"sanraya","screen_name":"officialsanraya","location":"Manassas Park, VA","url":null,"description":"dmvirginia","protected":false,"verified":false,"followers_count":55,"friends_count":58,"listed_count":0,"favourites_count":63,"statuses_count":94,"created_at":"Thu Oct 01 19:08:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662257859934187521\/S5O6GbLG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662257859934187521\/S5O6GbLG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3836007561\/1446729531","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080003658"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145523712,"id_str":"663727758145523712","text":"|||||||||||||||||||||||||||:...:...:....|\n 69%(\uff0b1%) 23:30 (2015\/11\/9)","source":"\u003ca href=\"http:\/\/twitter.com\/emerry_jp\" rel=\"nofollow\"\u003eEmerry Tweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622041996,"id_str":"622041996","name":"\u4e2d\u56fd\u96fb\u529b\u3000\u96fb\u529b\u6d88\u8cbb\u7387\uff085\u5206\u6bce\uff09 \u975e\u516c\u5f0f","screen_name":"energia_5m","location":null,"url":"http:\/\/www.emerry.jp\/","description":"\u4e2d\u56fd\u96fb\u529b\u306e\u4f7f\u7528\u72b6\u6cc1(%)\u30925\u5206\u9593\u9694\u3067\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u4f11\u65e5\u306f\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u305b\u3093\u3002\nPresented by Emerry Intelligence","protected":false,"verified":false,"followers_count":12,"friends_count":2,"listed_count":1,"favourites_count":0,"statuses_count":160260,"created_at":"Fri Jun 29 14:49:01 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583242698313711616\/gOvclCeV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583242698313711616\/gOvclCeV_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154055684,"id_str":"663727758154055684","text":"RT @sesilvio: Este 6D gana Ch\u00e1vez para continuar su legado de inclusi\u00f3n social y amor por la Patria #VenezuelaCambioParaSiempre https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2392149944,"id_str":"2392149944","name":"eleomar ugueto","screen_name":"51ugueto","location":"Venezuela","url":null,"description":"con la revolucion hasta el fin de mis dias!!!!! Viva Chavez y su legado Nicolas.","protected":false,"verified":false,"followers_count":568,"friends_count":1086,"listed_count":4,"favourites_count":287,"statuses_count":3498,"created_at":"Sun Mar 16 05:35:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662494653384663040\/-RSKyVe7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662494653384663040\/-RSKyVe7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2392149944\/1446776882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:21 +0000 2015","id":663711725523484672,"id_str":"663711725523484672","text":"Este 6D gana Ch\u00e1vez para continuar su legado de inclusi\u00f3n social y amor por la Patria #VenezuelaCambioParaSiempre https:\/\/t.co\/5CWp425x3v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145386091,"id_str":"145386091","name":"Sergio Silvio Prato","screen_name":"sesilvio","location":"Maiquetia, Vargas","url":"http:\/\/www.aeropuerto-maiquetia.com.ve\/web\/","description":"Director General del Instituto Aeropuerto Internacional de Maiquet\u00eda (IAIM)","protected":false,"verified":false,"followers_count":2381,"friends_count":136,"listed_count":12,"favourites_count":32,"statuses_count":9033,"created_at":"Tue May 18 21:23:30 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652821051253129217\/wAFLIGsF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652821051253129217\/wAFLIGsF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145386091\/1445974961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":2,"entities":{"hashtags":[{"text":"VenezuelaCambioParaSiempre","indices":[86,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663711602772955136,"id_str":"663711602772955136","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":667,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711602772955136,"id_str":"663711602772955136","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":667,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"}}},{"id":663711638739120128,"id_str":"663711638739120128","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6OAxWcAAGeUO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6OAxWcAAGeUO.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663711670745829377,"id_str":"663711670745829377","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6P4AWEAEoPfP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6P4AWEAEoPfP.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663711700563136512,"id_str":"663711700563136512","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6RnFWEAAMjqL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6RnFWEAAMjqL.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"large":{"w":1024,"h":781,"resize":"fit"},"medium":{"w":600,"h":457,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VenezuelaCambioParaSiempre","indices":[100,127]}],"urls":[],"user_mentions":[{"screen_name":"sesilvio","name":"Sergio Silvio Prato","id":145386091,"id_str":"145386091","indices":[3,12]}],"symbols":[],"media":[{"id":663711602772955136,"id_str":"663711602772955136","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":667,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"}},"source_status_id":663711725523484672,"source_status_id_str":"663711725523484672","source_user_id":145386091,"source_user_id_str":"145386091"}]},"extended_entities":{"media":[{"id":663711602772955136,"id_str":"663711602772955136","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6L6yWUAAwFC5.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":667,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"}},"source_status_id":663711725523484672,"source_status_id_str":"663711725523484672","source_user_id":145386091,"source_user_id_str":"145386091"},{"id":663711638739120128,"id_str":"663711638739120128","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6OAxWcAAGeUO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6OAxWcAAGeUO.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663711725523484672,"source_status_id_str":"663711725523484672","source_user_id":145386091,"source_user_id_str":"145386091"},{"id":663711670745829377,"id_str":"663711670745829377","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6P4AWEAEoPfP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6P4AWEAEoPfP.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663711725523484672,"source_status_id_str":"663711725523484672","source_user_id":145386091,"source_user_id_str":"145386091"},{"id":663711700563136512,"id_str":"663711700563136512","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6RnFWEAAMjqL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6RnFWEAAMjqL.jpg","url":"https:\/\/t.co\/5CWp425x3v","display_url":"pic.twitter.com\/5CWp425x3v","expanded_url":"http:\/\/twitter.com\/sesilvio\/status\/663711725523484672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"large":{"w":1024,"h":781,"resize":"fit"},"medium":{"w":600,"h":457,"resize":"fit"}},"source_status_id":663711725523484672,"source_status_id_str":"663711725523484672","source_user_id":145386091,"source_user_id_str":"145386091"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124576768,"id_str":"663727758124576768","text":"Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2569142721,"id_str":"2569142721","name":"Deeno","screen_name":"itz_gav","location":null,"url":null,"description":"Time is money, so doing nothing is an expensive choice...","protected":false,"verified":false,"followers_count":111,"friends_count":112,"listed_count":1,"favourites_count":456,"statuses_count":682,"created_at":"Wed May 28 15:21:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655262250286997505\/1jk-uMpq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655262250286997505\/1jk-uMpq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2569142721\/1444834659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145675264,"id_str":"663727758145675264","text":"RT @AmorousTK: \u0e02\u0e2d\u0e41\u0e0a\u0e23\u0e4c\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e19\u0e30\u0e04\u0e30 \u0e14\u0e35\u0e21\u0e32\u0e01\u0e46 \u0e15\u0e49\u0e2d\u0e07\u0e14\u0e39\u0e40\u0e25\u0e22 \u0e40\u0e1b\u0e47\u0e19\u0e08\u0e34\u0e15\u0e27\u0e34\u0e17\u0e22\u0e32 counselling \u0e17\u0e35\u0e48\u0e40\u0e2d\u0e32\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e27\u0e31\u0e19\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22 https:\/\/t.co\/gx4pFlgvPM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":194461333,"id_str":"194461333","name":"earn\u263b","screen_name":"ernearnn","location":null,"url":null,"description":"ehehehe","protected":false,"verified":false,"followers_count":311,"friends_count":221,"listed_count":5,"favourites_count":1831,"statuses_count":66473,"created_at":"Fri Sep 24 05:06:32 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570741076508418048\/l-da21oi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570741076508418048\/l-da21oi.png","profile_background_tile":true,"profile_link_color":"6C7B8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2EEF0","profile_text_color":"EDBB63","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662290154581721089\/7HCjCpJ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662290154581721089\/7HCjCpJ5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194461333\/1446737123","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:19 +0000 2015","id":663717759281266688,"id_str":"663717759281266688","text":"\u0e02\u0e2d\u0e41\u0e0a\u0e23\u0e4c\u0e2d\u0e35\u0e01\u0e04\u0e23\u0e31\u0e49\u0e07\u0e19\u0e30\u0e04\u0e30 \u0e14\u0e35\u0e21\u0e32\u0e01\u0e46 \u0e15\u0e49\u0e2d\u0e07\u0e14\u0e39\u0e40\u0e25\u0e22 \u0e40\u0e1b\u0e47\u0e19\u0e08\u0e34\u0e15\u0e27\u0e34\u0e17\u0e22\u0e32 counselling \u0e17\u0e35\u0e48\u0e40\u0e2d\u0e32\u0e44\u0e1b\u0e43\u0e0a\u0e49\u0e43\u0e19\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e1b\u0e23\u0e30\u0e08\u0e33\u0e27\u0e31\u0e19\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22 https:\/\/t.co\/gx4pFlgvPM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63972666,"id_str":"63972666","name":"\u0e1e\u0e35\u0e48\u0e2d\u0e49\u0e2d","screen_name":"AmorousTK","location":"YugBam JaeHyungParkIan","url":"https:\/\/docs.google.com\/document\/d\/16cOrO5Q4VmY3e-NmPR3qp9VWKIY_Bn_COZtAuMhNY-A\/edit","description":"\u0e40\u0e01\u0e37\u0e2d\u0e1a\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e34\u0e15\u0e23 | Don't respond to trash unless you want to be trash yourself","protected":false,"verified":false,"followers_count":3730,"friends_count":480,"listed_count":12,"favourites_count":5151,"statuses_count":133942,"created_at":"Sat Aug 08 14:17:58 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654141933443379200\/n9go07N6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654141933443379200\/n9go07N6.jpg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663540186547032064\/MzJuIAvM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663540186547032064\/MzJuIAvM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63972666\/1438741703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":12,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gx4pFlgvPM","expanded_url":"https:\/\/youtu.be\/oD0LwD39_XM","display_url":"youtu.be\/oD0LwD39_XM","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gx4pFlgvPM","expanded_url":"https:\/\/youtu.be\/oD0LwD39_XM","display_url":"youtu.be\/oD0LwD39_XM","indices":[109,132]}],"user_mentions":[{"screen_name":"AmorousTK","name":"\u0e1e\u0e35\u0e48\u0e2d\u0e49\u0e2d","id":63972666,"id_str":"63972666","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758120497152,"id_str":"663727758120497152","text":"Loving God...Enjoying Covenant. November, 2015 by @cozanigeria on #SoundCloud? #np https:\/\/t.co\/GcrY6vXgaY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70707097,"id_str":"70707097","name":"\u266bNejo Tolulope\u2122","screen_name":"Sir_Nejo","location":"\u00dcT: 8.9553916,7.0684018","url":"http:\/\/google.com\/+SamuelNejo","description":"\u2022Am a shooting star but am wishing\u2022 Technologist | SMG | #DIY #CircuitBender","protected":false,"verified":false,"followers_count":467,"friends_count":368,"listed_count":3,"favourites_count":1,"statuses_count":6584,"created_at":"Tue Sep 01 15:33:03 +0000 2009","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633419408325656576\/YUy2UUxV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633419408325656576\/YUy2UUxV.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510501490994470912\/yHmZXYCQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510501490994470912\/yHmZXYCQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70707097\/1353418041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SoundCloud","indices":[66,77]},{"text":"np","indices":[79,82]}],"urls":[{"url":"https:\/\/t.co\/GcrY6vXgaY","expanded_url":"https:\/\/soundcloud.com\/cozanigeria\/loving-godenjoying-covenant-november-2015?utm_source=soundcloud&utm_campaign=share&utm_medium=twitter","display_url":"soundcloud.com\/cozanigeria\/lo\u2026","indices":[83,106]}],"user_mentions":[{"screen_name":"cozanigeria","name":"COZA Nigeria","id":97648903,"id_str":"97648903","indices":[50,62]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003658"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758116126720,"id_str":"663727758116126720","text":"RT @nicu_toka: \u5c0f\u60aa\u9b54\u306b\u898b\u3048\u306a\u3044\u3051\u3069\u5c0f\u60aa\u9b54\u306a\u3093\u3067\u3059\n\u9811\u306a\u306b\u79c1\u306f\u5c0f\u60aa\u9b54\u3060\u3068\u8a00\u3044\u307e\u3059 https:\/\/t.co\/wcyjTMx96r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1073105180,"id_str":"1073105180","name":"\u30f4\u3043\u30f4\u3043\uff20\u9589\u5e97","screen_name":"vivid_paint","location":"\u4fee\u7f85\u306e\u56fd","url":"http:\/\/www.pixiv.net\/member.php?id=3988022","description":"\u30e9\u30af\u30ac\u30ad\u91cf\u7523\u6a5f\u3002\u6700\u8fd1\u306f\u5927\u4f53\u3001\u8266\u3053\u308c\u3068\u6771\u65b9\u6642\u3005\u30a2\u30a4\u30de\u30b9\u3002\u6c17\u306b\u306a\u308b\u306a\u30fc\u3063\u3066\u4eba\u306f\u7247\u3063\u7aef\u304b\u3089\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u3002\u306c\u308b\u308a\u3068\u7d61\u3093\u3067\u3044\u305f\u3060\u3051\u308c\u3070\u6ce3\u3044\u3066\u559c\u3076","protected":false,"verified":false,"followers_count":111,"friends_count":213,"listed_count":6,"favourites_count":5081,"statuses_count":19227,"created_at":"Wed Jan 09 07:43:10 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584003868276588545\/V1WY4Ssp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584003868276588545\/V1WY4Ssp.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653550210824601600\/r2U4J2NM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653550210824601600\/r2U4J2NM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073105180\/1440605063","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:45:24 +0000 2015","id":663698904815263744,"id_str":"663698904815263744","text":"\u5c0f\u60aa\u9b54\u306b\u898b\u3048\u306a\u3044\u3051\u3069\u5c0f\u60aa\u9b54\u306a\u3093\u3067\u3059\n\u9811\u306a\u306b\u79c1\u306f\u5c0f\u60aa\u9b54\u3060\u3068\u8a00\u3044\u307e\u3059 https:\/\/t.co\/wcyjTMx96r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384179343,"id_str":"384179343","name":"nicutoka","screen_name":"nicu_toka","location":"\u3044\u3044\u3048\u3002","url":"http:\/\/www.pixiv.net\/member.php?id=3624291","description":"\u8da3\u5473\u306f\u843d\u66f8\u304d\u3002 \u540c\u4eba\u30b5\u30fc\u30af\u30eb\u300c\u8089\u3068\u304b\u98df\u3079\u3066\u307f\u305f\u3044\u306a\u3041\u30fb\u30fb\u30fb\u300d\u306enicutoka\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u30cb\u30b3\u30cb\u30b3\u3067\u306f\u52d5\u753b\u306a\u3069\u3082\u6295\u7a3f\u3057\u305f\u308a\u3002 \u6ce8\u610f\u203b\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u3066\u3057\u307e\u3063\u305f\u65b9\u306f\u3001\u7121\u7406\u306b\u30ea\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u4e8b\u3092\u304a\u52e7\u3081\u3057\u307e\u3059\u3002 http:\/\/www.nicovideo.jp\/user\/23840297","protected":false,"verified":false,"followers_count":4571,"friends_count":641,"listed_count":182,"favourites_count":15429,"statuses_count":114377,"created_at":"Mon Oct 03 06:40:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663698964282105856\/FKbVMT2Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663698964282105856\/FKbVMT2Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384179343\/1446571417","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":184,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663698903330492416,"id_str":"663698903330492416","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","url":"https:\/\/t.co\/wcyjTMx96r","display_url":"pic.twitter.com\/wcyjTMx96r","expanded_url":"http:\/\/twitter.com\/nicu_toka\/status\/663698904815263744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"},"large":{"w":900,"h":1800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698903330492416,"id_str":"663698903330492416","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","url":"https:\/\/t.co\/wcyjTMx96r","display_url":"pic.twitter.com\/wcyjTMx96r","expanded_url":"http:\/\/twitter.com\/nicu_toka\/status\/663698904815263744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"},"large":{"w":900,"h":1800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nicu_toka","name":"nicutoka","id":384179343,"id_str":"384179343","indices":[3,13]}],"symbols":[],"media":[{"id":663698903330492416,"id_str":"663698903330492416","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","url":"https:\/\/t.co\/wcyjTMx96r","display_url":"pic.twitter.com\/wcyjTMx96r","expanded_url":"http:\/\/twitter.com\/nicu_toka\/status\/663698904815263744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"},"large":{"w":900,"h":1800,"resize":"fit"}},"source_status_id":663698904815263744,"source_status_id_str":"663698904815263744","source_user_id":384179343,"source_user_id_str":"384179343"}]},"extended_entities":{"media":[{"id":663698903330492416,"id_str":"663698903330492416","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuotrUkAAOkRc.jpg","url":"https:\/\/t.co\/wcyjTMx96r","display_url":"pic.twitter.com\/wcyjTMx96r","expanded_url":"http:\/\/twitter.com\/nicu_toka\/status\/663698904815263744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":600,"h":1200,"resize":"fit"},"large":{"w":900,"h":1800,"resize":"fit"}},"source_status_id":663698904815263744,"source_status_id_str":"663698904815263744","source_user_id":384179343,"source_user_id_str":"384179343"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003657"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149853185,"id_str":"663727758149853185","text":"Catalan Regional Parliament Approves Plan For Independence From Spain Madrid argues the move is symbolic and won't\u2026 https:\/\/t.co\/7GLy3zVh5e","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399902249,"id_str":"3399902249","name":"Mag Nota: 360V","screen_name":"mag_nota","location":"International","url":"http:\/\/smarturl.it\/newsstand","description":"News Happening Now! on 360 degrees around the world. This is the World by Video edition of Mag Nota magazine that gives news in live and trending video format.","protected":false,"verified":false,"followers_count":772,"friends_count":810,"listed_count":68,"favourites_count":17,"statuses_count":81537,"created_at":"Sun Aug 02 10:53:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627914347386290176\/1ypr4c1E.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627914347386290176\/1ypr4c1E.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627795635304009729\/gp46fC7o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627795635304009729\/gp46fC7o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399902249\/1438513162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7GLy3zVh5e","expanded_url":"http:\/\/bit.ly\/1JFTruF","display_url":"bit.ly\/1JFTruF","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758153904128,"id_str":"663727758153904128","text":"Nick Grimshaw Addresses His \u2018X Factor\u2019\u00a0Future https:\/\/t.co\/EYVC1IFYJf","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2733244425,"id_str":"2733244425","name":"Kris & Becca Richens","screen_name":"RichensWorld","location":"Wales, United Kingdom","url":"http:\/\/RichensBlogs.com","description":"We are UK #Bloggers - We Blog about Family, Travel, Days Out , Weight Loss & Our Lives. Contact us at http:\/\/www.richensblogs.com\/?page_id=48 PR Friendly","protected":false,"verified":false,"followers_count":544,"friends_count":1259,"listed_count":15,"favourites_count":972,"statuses_count":3138,"created_at":"Mon Aug 04 12:38:48 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650063483166457856\/KeVMa3x5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650063483166457856\/KeVMa3x5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2733244425\/1443302235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EYVC1IFYJf","expanded_url":"http:\/\/becca.richensblogs.com\/beccas-blog\/nick-grimshaw-addresses-his-x-factor-future\/","display_url":"becca.richensblogs.com\/beccas-blog\/ni\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145556480,"id_str":"663727758145556480","text":"RT @kwsm703: \u4e00\u90e8\u7d42\u4e86\u3002\u4e2d\u4f11\u61a9\u3002\u30d2\u30ed\u30b7\u306e\u30ae\u30e3\u30b0\u304c\u30a6\u30b1\u3066\u305f\u4e8b\u3092\u901f\u5831\u3057\u3066\u304a\u304d\u307e\u3059w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408299261,"id_str":"408299261","name":"nowhere","screen_name":"x_custom","location":"\u5317\u4e5d\u5dde\u5e02","url":null,"description":"\u97f3\u697d\u306fHEATWAVE \u3000\u30bd\u30a6\u30eb\u30d5\u30e9\u30ef\u30fc\u30e6\u30cb\u30aa\u30f3\u3000\u30ea\u30af\u30aa\u3000\u305d\u306e\u4ed6\u7bc0\u64cd\u3042\u308a\u307e\u305b\u3093\u81ea\u8ee2\u8eca\u3084\u30b9\u30ce\u30fc\u30dc\u30fc\u30c9\u3082\u597d\u304d\u3000\u305d\u3057\u3066\u3000Iam not abe\u3067\u3059","protected":false,"verified":false,"followers_count":332,"friends_count":387,"listed_count":12,"favourites_count":1526,"statuses_count":12333,"created_at":"Wed Nov 09 07:28:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1636804691\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1636804691\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408299261\/1430051723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:09:33 +0000 2015","id":663674781653315585,"id_str":"663674781653315585","text":"\u4e00\u90e8\u7d42\u4e86\u3002\u4e2d\u4f11\u61a9\u3002\u30d2\u30ed\u30b7\u306e\u30ae\u30e3\u30b0\u304c\u30a6\u30b1\u3066\u305f\u4e8b\u3092\u901f\u5831\u3057\u3066\u304a\u304d\u307e\u3059w","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4smart \/ www.movatwi.jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156008387,"id_str":"156008387","name":"\u306a\u304a\u307f ","screen_name":"kwsm703","location":"\u5ca1\u5c71","url":null,"description":"\u97f3\u697d\u3092\u8074\u304f\u3053\u3068\u3001\u98df\u3079\u308b\u3053\u3068\u3001\u304a\u9152\u3092\u98f2\u3080\u3053\u3068\u304c\u5927\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":194,"friends_count":411,"listed_count":2,"favourites_count":18,"statuses_count":7700,"created_at":"Tue Jun 15 19:34:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1232297485\/602b9136afa0dab735c436952b46d7eb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1232297485\/602b9136afa0dab735c436952b46d7eb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kwsm703","name":"\u306a\u304a\u307f ","id":156008387,"id_str":"156008387","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124580864,"id_str":"663727758124580864","text":"RT @AnnDailyFan: Best part of @MindcrackLP marathon \ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/dnPBBlk2tM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451473814,"id_str":"451473814","name":"Ho zhen hao","screen_name":"Janghzh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":92,"friends_count":212,"listed_count":2,"favourites_count":8,"statuses_count":5007,"created_at":"Sat Dec 31 14:04:00 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726461719711744\/5xEpxW2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726461719711744\/5xEpxW2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451473814\/1447079695","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:44:22 +0000 2015","id":663457054359728129,"id_str":"663457054359728129","text":"Best part of @MindcrackLP marathon \ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/dnPBBlk2tM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130580675,"id_str":"4130580675","name":"Ann","screen_name":"AnnDailyFan","location":null,"url":null,"description":"Just here to show my support to youtubers\/actors\/musicians.","protected":false,"verified":false,"followers_count":25,"friends_count":92,"listed_count":0,"favourites_count":105,"statuses_count":47,"created_at":"Sat Nov 07 01:03:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662802860770488320\/FBFjwGAO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662802860770488320\/FBFjwGAO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130580675\/1446859604","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":93,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MindcrackLP","name":"Mindcrack Network","id":612905817,"id_str":"612905817","indices":[13,25]}],"symbols":[],"media":[{"id":663456983500984320,"id_str":"663456983500984320","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","url":"https:\/\/t.co\/dnPBBlk2tM","display_url":"pic.twitter.com\/dnPBBlk2tM","expanded_url":"http:\/\/twitter.com\/AnnDailyFan\/status\/663457054359728129\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663456983500984320,"id_str":"663456983500984320","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","url":"https:\/\/t.co\/dnPBBlk2tM","display_url":"pic.twitter.com\/dnPBBlk2tM","expanded_url":"http:\/\/twitter.com\/AnnDailyFan\/status\/663457054359728129\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":9970,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/pl\/fFrYQYd_vruO8p8O.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/320x180\/yZ5Z6ObXdaHeiUPW.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/640x360\/KGXLbyqNObNdIpI3.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/640x360\/KGXLbyqNObNdIpI3.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/pl\/fFrYQYd_vruO8p8O.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/1280x720\/LQGHRdrHiskdF4Xv.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AnnDailyFan","name":"Ann","id":4130580675,"id_str":"4130580675","indices":[3,15]},{"screen_name":"MindcrackLP","name":"Mindcrack Network","id":612905817,"id_str":"612905817","indices":[30,42]}],"symbols":[],"media":[{"id":663456983500984320,"id_str":"663456983500984320","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","url":"https:\/\/t.co\/dnPBBlk2tM","display_url":"pic.twitter.com\/dnPBBlk2tM","expanded_url":"http:\/\/twitter.com\/AnnDailyFan\/status\/663457054359728129\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663457054359728129,"source_status_id_str":"663457054359728129","source_user_id":4130580675,"source_user_id_str":"4130580675"}]},"extended_entities":{"media":[{"id":663456983500984320,"id_str":"663456983500984320","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663456983500984320\/pu\/img\/Vh8IO5w5LTKvzvO_.jpg","url":"https:\/\/t.co\/dnPBBlk2tM","display_url":"pic.twitter.com\/dnPBBlk2tM","expanded_url":"http:\/\/twitter.com\/AnnDailyFan\/status\/663457054359728129\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663457054359728129,"source_status_id_str":"663457054359728129","source_user_id":4130580675,"source_user_id_str":"4130580675","video_info":{"aspect_ratio":[16,9],"duration_millis":9970,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/pl\/fFrYQYd_vruO8p8O.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/320x180\/yZ5Z6ObXdaHeiUPW.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/640x360\/KGXLbyqNObNdIpI3.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/640x360\/KGXLbyqNObNdIpI3.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/pl\/fFrYQYd_vruO8p8O.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663456983500984320\/pu\/vid\/1280x720\/LQGHRdrHiskdF4Xv.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145548288,"id_str":"663727758145548288","text":"RT @winter17_: \u3010\u60b2\u5831\u3011\n\n\u5f71\u304c\u8584\u3059\u304e\u3066\u8ab0\u304b\u3089\u3082\u6c17\u4ed8\u304b\u308c\u305a\n\n\u5c0f\u7530\u6025\u767e\u8ca8\u5e97\u306b\u9589\u3058\u8fbc\u3081\u3089\u308c\u308b\n\n\u304a\u3060\u304d\u3085\u3046\u3050\u3089\u3057\uff01 https:\/\/t.co\/4PwTSwsNCm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3083461728,"id_str":"3083461728","name":"\u718aG","screen_name":"Kriki1218","location":"\u5317\u306e\u5927\u5730","url":null,"description":"\u5411\u967d\u53f0\u4e2d\u2192\u65e5\u5927","protected":false,"verified":false,"followers_count":289,"friends_count":247,"listed_count":1,"favourites_count":1270,"statuses_count":3130,"created_at":"Sun Mar 15 04:54:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635314009676247040\/_ynqXqFv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635314009676247040\/_ynqXqFv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3083461728\/1446109146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:07:04 +0000 2015","id":663689256653598720,"id_str":"663689256653598720","text":"\u3010\u60b2\u5831\u3011\n\n\u5f71\u304c\u8584\u3059\u304e\u3066\u8ab0\u304b\u3089\u3082\u6c17\u4ed8\u304b\u308c\u305a\n\n\u5c0f\u7530\u6025\u767e\u8ca8\u5e97\u306b\u9589\u3058\u8fbc\u3081\u3089\u308c\u308b\n\n\u304a\u3060\u304d\u3085\u3046\u3050\u3089\u3057\uff01 https:\/\/t.co\/4PwTSwsNCm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3037650732,"id_str":"3037650732","name":"\u4e2d\u5352\u8ce2\u8005","screen_name":"winter17_","location":"\u6cb3\u5408\u587e\u30b7\u30d9\u30ea\u30a2\u6821","url":"http:\/\/ask.fm\/Winter17_","description":"\u4e2d\u5b66\u751f\u306e\u9803\u304b\u3089\u904e\u6fc0\u5de6\u6d3e\u306b\u30cf\u30de\u308a\u6821\u5185\u3067\u6bdb\u6ca2\u6771\u306e\u30d3\u30e9\u3092\u30d0\u30e9\u6492\u304d\u5927\u554f\u984c\u306b\u3001\u305d\u306e\u5f8c\u52c9\u5f37\u3082\u3057\u306a\u3044\u30af\u30bb\u306b\u5468\u56f2\u304b\u3089\u306e\u300c\u7121\u7406\u3060\u300d\u3092\u62bc\u3057\u5207\u3063\u3066\u90fd\u5185\u306e\u79c1\u7acb\u9ad8\u3092\u53d7\u9a13\u3057\u898b\u4e8b\u5931\u6557\u3002\u59a5\u5354\u3057\u3066\u770c\u5185\u306e\u516c\u7acb\u6821\u306b\u901a\u3046\u3082\u554f\u984c\u884c\u52d5\u306e\u6291\u6b62\u304c\u52b9\u304b\u305a\u5468\u56f2\u304b\u3089\u306e\u300c\u3084\u3081\u3066\u304a\u3051\u300d\u3092\u62bc\u3057\u5207\u3063\u3066\u898b\u4e8b1\u5e74\u3067\u9000\u5b66\u3002\u540c\u5e74\u306b\u9ad8\u5352\u8a8d\u5b9a\u3092\u53d6\u5f97\u3057\u3001\u30d7\u30ea\u30d1\u30e9\u306b1\u4e07\u5186\u6eb6\u304b\u3057\u305f","protected":false,"verified":false,"followers_count":658,"friends_count":522,"listed_count":37,"favourites_count":13510,"statuses_count":14161,"created_at":"Mon Feb 23 09:00:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584584766155956225\/Zadke6AE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584584766155956225\/Zadke6AE.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658620463816445952\/B37ihEVI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658620463816445952\/B37ihEVI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037650732\/1444828137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4574,"favorite_count":3372,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663689242887892994,"id_str":"663689242887892994","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689242887892994,"id_str":"663689242887892994","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663689243001159680,"id_str":"663689243001159680","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2aJVAAAunY2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2aJVAAAunY2.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"winter17_","name":"\u4e2d\u5352\u8ce2\u8005","id":3037650732,"id_str":"3037650732","indices":[3,13]}],"symbols":[],"media":[{"id":663689242887892994,"id_str":"663689242887892994","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689256653598720,"source_status_id_str":"663689256653598720","source_user_id":3037650732,"source_user_id_str":"3037650732"}]},"extended_entities":{"media":[{"id":663689242887892994,"id_str":"663689242887892994","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2ZuUsAItFBI.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689256653598720,"source_status_id_str":"663689256653598720","source_user_id":3037650732,"source_user_id_str":"3037650732"},{"id":663689243001159680,"id_str":"663689243001159680","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2aJVAAAunY2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2aJVAAAunY2.jpg","url":"https:\/\/t.co\/4PwTSwsNCm","display_url":"pic.twitter.com\/4PwTSwsNCm","expanded_url":"http:\/\/twitter.com\/winter17_\/status\/663689256653598720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689256653598720,"source_status_id_str":"663689256653598720","source_user_id":3037650732,"source_user_id_str":"3037650732"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145667072,"id_str":"663727758145667072","text":"RT @CollectiuEmma: Unabh\u00e4ngigkeit von Spanien: Katalonien beschlie\u00dft Plan zur Abspaltung | tagesschau.de https:\/\/t.co\/nfcEKIlQxV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125445901,"id_str":"125445901","name":"andreu","screen_name":"AndreuCamps","location":"Catalunya ","url":"https:\/\/ca.m.wikipedia.org\/wiki\/Autodeterminaci\u00f3","description":null,"protected":false,"verified":false,"followers_count":352,"friends_count":596,"listed_count":18,"favourites_count":8419,"statuses_count":14962,"created_at":"Mon Mar 22 20:58:40 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648544124178665472\/Ab1KIEnk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648544124178665472\/Ab1KIEnk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125445901\/1433469766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:09:38 +0000 2015","id":663705004088418306,"id_str":"663705004088418306","text":"Unabh\u00e4ngigkeit von Spanien: Katalonien beschlie\u00dft Plan zur Abspaltung | tagesschau.de https:\/\/t.co\/nfcEKIlQxV","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":749858970,"id_str":"749858970","name":"Col\u00b7lectiu Emma","screen_name":"CollectiuEmma","location":"Sant Joan de les Abadesses","url":"http:\/\/www.collectiuemma.cat","description":"We seek to help the world's public opinion to get a balanced picture of Catalonia's reality today and in history. RTs aren't necessarily endorsements.","protected":false,"verified":false,"followers_count":11842,"friends_count":856,"listed_count":219,"favourites_count":345,"statuses_count":6482,"created_at":"Fri Aug 10 18:51:02 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"EFEEEF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/710420749\/01ac45ab702d35666b1f78ff251b01bc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/710420749\/01ac45ab702d35666b1f78ff251b01bc.png","profile_background_tile":false,"profile_link_color":"B90021","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2844106882\/ce1579a0871419bf7ed39c99d5de8988_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2844106882\/ce1579a0871419bf7ed39c99d5de8988_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749858970\/1352809189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nfcEKIlQxV","expanded_url":"http:\/\/www.tagesschau.de\/ausland\/katalonien-unabhaengigkeit-103.html","display_url":"tagesschau.de\/ausland\/katalo\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nfcEKIlQxV","expanded_url":"http:\/\/www.tagesschau.de\/ausland\/katalonien-unabhaengigkeit-103.html","display_url":"tagesschau.de\/ausland\/katalo\u2026","indices":[105,128]}],"user_mentions":[{"screen_name":"CollectiuEmma","name":"Col\u00b7lectiu Emma","id":749858970,"id_str":"749858970","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758128709632,"id_str":"663727758128709632","text":"https:\/\/t.co\/iXDxI3e3Rt\nhttps:\/\/t.co\/Z939e4B55q\nhttps:\/\/t.co\/i2I36lMDyf\nhttps:\/\/t.co\/00AILoajXN\nhttps:\/\/t.co\/WiWih40yju\n034","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4123643696,"id_str":"4123643696","name":"lisanatalie","screen_name":"natli09414080","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":41,"listed_count":0,"favourites_count":0,"statuses_count":928,"created_at":"Wed Nov 04 12:00:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iXDxI3e3Rt","expanded_url":"https:\/\/www.fiverr.com\/users\/supergold\/orders\/FO1FF0ED041?thank_you=1","display_url":"fiverr.com\/users\/supergol\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/Z939e4B55q","expanded_url":"http:\/\/www.acnetreatmenthome.com\/","display_url":"acnetreatmenthome.com","indices":[24,47]},{"url":"https:\/\/t.co\/i2I36lMDyf","expanded_url":"http:\/\/www.topseda.ir\/21830\/music-siavash-ghomayshi-hasrat\/","display_url":"topseda.ir\/21830\/music-si\u2026","indices":[48,71]},{"url":"https:\/\/t.co\/00AILoajXN","expanded_url":"http:\/\/chitownlimobus.com","display_url":"chitownlimobus.com","indices":[72,95]},{"url":"https:\/\/t.co\/WiWih40yju","expanded_url":"http:\/\/www.entrepreneur.com\/article\/251589","display_url":"entrepreneur.com\/article\/251589","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080003660"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758149885952,"id_str":"663727758149885952","text":"Ich habe ein @YouTube-Video positiv bewertet: https:\/\/t.co\/pVibkXAVG4 Multifandom || Insane Like Me (TYS)","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366218893,"id_str":"366218893","name":"Lisa","screen_name":"incredibad_","location":null,"url":"http:\/\/www.youtube.com\/user\/xChristinx24","description":"Obsessed with BTS, Harry Potter & Marvel | but I can't fly | @juliemhpx is Bae(lfire) \u2661","protected":false,"verified":false,"followers_count":353,"friends_count":154,"listed_count":2,"favourites_count":2907,"statuses_count":33979,"created_at":"Thu Sep 01 19:51:10 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"8F4D6B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662391597527625729\/3iccLiEC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662391597527625729\/3iccLiEC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366218893\/1439648212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pVibkXAVG4","expanded_url":"http:\/\/youtu.be\/LzCOPQghzx8?a","display_url":"youtu.be\/LzCOPQghzx8?a","indices":[46,69]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[13,21]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080003665"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124654592,"id_str":"663727758124654592","text":"RT @paaatGM: @lore_navas25 que envidiosa lorena por favor,con las cosas taaan bonitas q me dice mi s\u00faper amor de clase jajajajaj @kikito890\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2330499372,"id_str":"2330499372","name":"Enriqueciendo","screen_name":"kikito890","location":null,"url":null,"description":"barco de avila-avila orgullo rojiblanco","protected":false,"verified":false,"followers_count":224,"friends_count":236,"listed_count":2,"favourites_count":926,"statuses_count":1690,"created_at":"Thu Feb 06 16:01:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652246256832614400\/9XExNTn9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652246256832614400\/9XExNTn9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2330499372\/1409473057","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:01 +0000 2015","id":663723722893869056,"id_str":"663723722893869056","text":"@lore_navas25 que envidiosa lorena por favor,con las cosas taaan bonitas q me dice mi s\u00faper amor de clase jajajajaj @kikito890 \ud83d\udc9e\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723267677691904,"in_reply_to_status_id_str":"663723267677691904","in_reply_to_user_id":560470911,"in_reply_to_user_id_str":"560470911","in_reply_to_screen_name":"lore_navas25","user":{"id":323845116,"id_str":"323845116","name":"Patricia Grande.","screen_name":"paaatGM","location":"Espa\u00f1a","url":null,"description":"Lo bueno tarda pero llega,cuando lo consigues lo importante es disfrutarlo\n\n-karting driver,Coodriver en proceso,rallyes.\nJSCOMPETITION.\n\u2b50Noventa y tres.","protected":false,"verified":false,"followers_count":474,"friends_count":649,"listed_count":5,"favourites_count":3782,"statuses_count":19041,"created_at":"Sat Jun 25 14:47:33 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660378270224007168\/P45NW1f9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660378270224007168\/P45NW1f9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323845116\/1446847407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lore_navas25","name":"Lorenuuus.\u270c","id":560470911,"id_str":"560470911","indices":[0,13]},{"screen_name":"kikito890","name":"Enriqueciendo","id":2330499372,"id_str":"2330499372","indices":[116,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"paaatGM","name":"Patricia Grande.","id":323845116,"id_str":"323845116","indices":[3,11]},{"screen_name":"lore_navas25","name":"Lorenuuus.\u270c","id":560470911,"id_str":"560470911","indices":[13,26]},{"screen_name":"kikito890","name":"Enriqueciendo","id":2330499372,"id_str":"2330499372","indices":[129,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758145486849,"id_str":"663727758145486849","text":"\u7d05\u767d\u306e\u3081\u3067\u305f\u304d\u8272\u306b\u5fc3\u67d3\u3081\u4eca\u5e74\u306e\u9858\u3044\u601d\u3044\u6d6e\u304b\u3079\u308b\n\u7b8f\u9999\u3000\u3000\u7d20\u6674\u3089\u3057\u3044\u77ed\u6b4c\u3067\u3059\u306d\u3002","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":202588929,"id_str":"202588929","name":"\u3055\u304f\u305f\u308d","screen_name":"00sakutaro00","location":"\u6771\u5317\u5730\u65b9 \u898b\u6e21\u305b\u3070\u4f1a\u6d25\u78d0\u68af\u5c71 \u98ef\u8c4a\u9023\u5cf0","url":null,"description":null,"protected":false,"verified":false,"followers_count":516,"friends_count":576,"listed_count":0,"favourites_count":656,"statuses_count":16477,"created_at":"Thu Oct 14 11:33:49 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600754473632272386\/mmxHP4WG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600754473632272386\/mmxHP4WG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202588929\/1436122472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003664"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141321217,"id_str":"663727758141321217","text":"RT @PinoyPatamaLine: No matter what you do, Jesus loves you anyway. \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563548776,"id_str":"2563548776","name":"Cacaa \u2764\ufe0f","screen_name":"Nicaarosee","location":null,"url":"http:\/\/facebook.com\/nicarosetabamo@yahoo.com","description":"Trust a few, fuck the rest. | IG: @CACAA_19 | | Tarlac City |","protected":false,"verified":false,"followers_count":91,"friends_count":116,"listed_count":1,"favourites_count":294,"statuses_count":2838,"created_at":"Thu Jun 12 14:53:58 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661575372471820288\/5nIBrE4s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661575372471820288\/5nIBrE4s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563548776\/1446294646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:55 +0000 2015","id":663718663619411968,"id_str":"663718663619411968","text":"No matter what you do, Jesus loves you anyway. \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2734346335,"id_str":"2734346335","name":"PINOY PATAMA","screen_name":"PinoyPatamaLine","location":"\u007bcontactpinoypatama@gmail.com\u007d","url":null,"description":"YOUR NO. 1 SOURCE OF PATAMA QUOTES!","protected":false,"verified":false,"followers_count":52961,"friends_count":17,"listed_count":14,"favourites_count":703,"statuses_count":4236,"created_at":"Fri Aug 15 12:13:02 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601697772367007744\/UMjKlV19.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601697772367007744\/UMjKlV19.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320612752900100\/Ra-9xhgE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320612752900100\/Ra-9xhgE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2734346335\/1446891108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PinoyPatamaLine","name":"PINOY PATAMA","id":2734346335,"id_str":"2734346335","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141292544,"id_str":"663727758141292544","text":"@bin_to_oto \u305d\u308c\u3060\u3051\u306e\u3053\u3068\u3092\u3057\u305f\u3093\u3060\u3001\u75b2\u308c\u3066\u3082\u3042\u305f\u308a\u524d\u3063\u30b7\u30e7","source":"\u003ca href=\"http:\/\/twitter.com\/Maxima_bot\" rel=\"nofollow\"\u003e\u30a4\u30f3\u30bf\u30fc\u30cf\u30a4\u4f1a\u5834\uff08\u7bb1\u6839\uff09\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727471250898944,"in_reply_to_status_id_str":"663727471250898944","in_reply_to_user_id":1896371929,"in_reply_to_user_id_str":"1896371929","in_reply_to_screen_name":"bin_to_oto","user":{"id":126599024,"id_str":"126599024","name":"\u5dfb\u5cf6\u88d5\u4ecbbot","screen_name":"Maxima_bot","location":"\u30a4\u30f3\u30bf\u30fc\u30cf\u30a4\u4f1a\u5834","url":null,"description":"\u5f31\u866b\u30da\u30c0\u30eb\u306e\u7dcf\u5317\u9ad8\u68213\u5e74\u5dfb\u5cf6\u88d5\u4ecb\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u539f\u4f5c\u8005\u3001\u51fa\u7248\u793e\u69d8\u3068\u306f\u4e00\u5207\u7121\u95a2\u4fc2\u3067\u3059\u3002\uff20\u3084TL\u306e\u8a00\u8449\u53cd\u5fdc\u3057\u307e\u3059\u3002\u5358\u884c\u672c\u60c5\u5831\u3067\u52d5\u3044\u3066\u307e\u3059\u3002\u5916\u3059\u3068\u304d\u306f\u30d6\u30ed\u30c3\u30af\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":9615,"friends_count":7754,"listed_count":245,"favourites_count":0,"statuses_count":501752,"created_at":"Fri Mar 26 11:25:32 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/779739261\/maki14_z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/779739261\/maki14_z_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bin_to_oto","name":"\u74f6\u97f3","id":1896371929,"id_str":"1896371929","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758116151296,"id_str":"663727758116151296","text":"\u3010\u5b9a\u671f\u3011\n\u6b4c\u3044\u624b\u3055\u3093\u672c\u547d\n\n\u308a\u3076\u3055\u3093\n\u3044\u304b\u3055\u3093","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637472206,"id_str":"1637472206","name":"\u90a3\u667a@next\u21921\u670811\u65e5","screen_name":"nyan_nachi","location":"\uff7d\uff9e\uff9d\uff84\uff9e\uff7a\uff7d\uff9e\uff9d\uff84\uff9e\uff7a\uff72\uff74\uff70\uff72","url":null,"description":"\u5bae\u57ce\u770c\u306b\u4f4f\u3080\u305f\u3060\u306e\uff66\uff80\uff78\u3002\n\u590f\u76ee\u53cb\u4eba\u5e33\u3068\u4e16\u754c\u4e00\u521d\u604b\u3068\u9280\u9b42\u304c\u5e38\u6642\u597d\u304d\u3000\n\u4ed6\u306b\u3082\u8272\u3005\u3002\u3000\n\u308a\u3076\u3055\u3093\u3001\u3044\u304b\u3055\u3093\u597d\u304d\u3002\n\u98a8\u7537\u587e\u3055\u3093\u597d\u304d\u3002\u3000\n\n\u3010NORA's\u2026\u5bae\u57ce\u306e\u7537\u88c5\uff13\u4eba\u306e\u30b0\u30eb\u30fc\u30d7\u3011\n\n\n\n\u6211\u3001\u6016\u304f\u306a\u3044\u3088\uff01","protected":false,"verified":false,"followers_count":2247,"friends_count":2262,"listed_count":66,"favourites_count":6564,"statuses_count":26931,"created_at":"Thu Aug 01 08:23:12 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657062977967820800\/5B9vc4KA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657062977967820800\/5B9vc4KA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637472206\/1443411487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003657"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758120325124,"id_str":"663727758120325124","text":"@Plumeria_pso2 \u3067\u3067\u30fc\u3093\nhttps:\/\/t.co\/k9c4SIVsNi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727546786144256,"in_reply_to_status_id_str":"663727546786144256","in_reply_to_user_id":3263657262,"in_reply_to_user_id_str":"3263657262","in_reply_to_screen_name":"Plumeria_pso2","user":{"id":124386825,"id_str":"124386825","name":"\u3044\u307e\u3055\u3068P@\u3053\u3044\u304b\u305c\u9a0e\u58eb\u56e3","screen_name":"Imasato_GABU","location":"\u30bd\u30ec\u30a4\u30e6","url":"http:\/\/twpro.jp\/Imasato_GABU","description":"PSO2\u3001ship1\u306e\u30c1\u30fc\u30e0\u3001Unlimited sky\u306e\u30c0\u30e1\u30fc\u30b8\u30e3\u30fc\u3084\u3063\u3066\u307e\u2026\u2026\u3057\u305f\u3002 \u84b8\u7559\u9152\u3068\u30af\u30eb\u30de\u3068\u30b2\u30fc\u30e0\u304c\u5927\u597d\u304d\u3002\r\n90\u5e74\u4ee3\u306e\u30c8\u30e8\u30bf\u306b\u4e26\u306a\u3089\u306c\u611b\u7740\u304c\u3042\u308b\u3002\r\n\u30a8\u30fc\u30b9\u3001A\u3001\u4f50\u4f2f\u7f8e\u54b2\u3001\u4eca\u91cc\u97ff\u5b50\u3001\u30ce\u30a8\u30eb\u3001Asako Stuart\r\n\u4ee5\u4e0a\u306e\u306a\u307e\u3048\u306b\u805e\u304d\u899a\u3048\u304c\u3042\u308b\u4eba\u306f\u305c\u3072\u3088\u308d\u3057\u304f\u3002","protected":false,"verified":false,"followers_count":326,"friends_count":419,"listed_count":17,"favourites_count":790,"statuses_count":29318,"created_at":"Fri Mar 19 06:56:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000079615808\/155cf1ef45152dc07bbd6c86be705158.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000079615808\/155cf1ef45152dc07bbd6c86be705158.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568081159477678081\/3sU0jo5N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568081159477678081\/3sU0jo5N_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124386825\/1379432634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k9c4SIVsNi","expanded_url":"http:\/\/osomatsusan.com\/","display_url":"osomatsusan.com","indices":[20,43]}],"user_mentions":[{"screen_name":"Plumeria_pso2","name":"\u30d7\u30eb\u30e1\u30ea\u30a2@Ship1","id":3263657262,"id_str":"3263657262","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003658"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154055686,"id_str":"663727758154055686","text":"Blood makes us related, but doesn't mean we have to be family.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717619111,"id_str":"717619111","name":"z.Bby!","screen_name":"ZKapic","location":null,"url":null,"description":"its a beautiful day to be alive","protected":false,"verified":false,"followers_count":180,"friends_count":248,"listed_count":2,"favourites_count":1905,"statuses_count":9846,"created_at":"Thu Jul 26 07:29:02 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653165179069444096\/P5xkJcqg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653165179069444096\/P5xkJcqg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717619111\/1419387312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7dc97830ee71b3cb","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7dc97830ee71b3cb.json","place_type":"country","name":"Bosnia and Herzegovina","full_name":"Bosnia and Herzegovina","country_code":"BA","country":"Bosna i Hercegovina","bounding_box":{"type":"Polygon","coordinates":[[[15.721783,42.547133],[15.721783,45.276444],[19.623724,45.276444],[19.623724,42.547133]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758137274373,"id_str":"663727758137274373","text":"RT @ltcassociates: In a family with #alzheimers, one must take special #financial planning steps https:\/\/t.co\/YQqzFA6UCR","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186884225,"id_str":"186884225","name":"Medicare MarketPlace","screen_name":"YourMedicare","location":"United States","url":"http:\/\/www.medicaremarketplace.com","description":"Medicare MarketPlace\u00ae, a national provider of Supplemental Medicare policies, gives you the best priced policy choices for your needs. Call us at 866-523-9332.","protected":false,"verified":false,"followers_count":1572,"friends_count":1148,"listed_count":46,"favourites_count":2,"statuses_count":8656,"created_at":"Sat Sep 04 17:27:45 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/146279390\/Sterling_twitter4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/146279390\/Sterling_twitter4.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1119979563\/MM_twitter_box_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1119979563\/MM_twitter_box_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"alzheimers","indices":[36,47]},{"text":"financial","indices":[71,81]}],"urls":[{"url":"https:\/\/t.co\/YQqzFA6UCR","expanded_url":"http:\/\/bit.ly\/207A2ty","display_url":"bit.ly\/207A2ty","indices":[97,120]}],"user_mentions":[{"screen_name":"ltcassociates","name":"Stephen D. Forman","id":68761151,"id_str":"68761151","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003662"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758116188160,"id_str":"663727758116188160","text":"<\u5b9a\u671f>\n\u3044\u3064\u3082\u304a\u6c17\u306b\u5165\u308a\u3042\u308a\u304c\u3068\u3046\u2728","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1920470820,"id_str":"1920470820","name":"\u2728PKCZ\u2728\u3072\u304b\u5e02\u2728\u2728\u2728\u2728\u2728\u2728\u2728\u2728\u2728\u2728\u2728","screen_name":"JSB_HIKAICHI","location":null,"url":"http:\/\/Instagram.com\/hikaichi_24karats","description":"\u272894line\u2728\u4e00\u65e5\u4e00\u7b11\u2728AW\u798f\u5ca1\u53c2\u6226\u4e88\u5b9a\u2728PKCZ\u591c\u306e\u90e8\u53c2\u6226\u2728\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304d\u3066\u2728TL\u8352\u3089\u3059\u4eba\u2728\u304b\u307e\u3061\u3087\u306a\u4eba\u2728\u8abf\u5b50\u4e57\u308a\u3084\u3059\u3044\u4eba\u2728\u5909\u306a\u30ce\u30ea\u3059\u308b\u4eba\u2728\u30d5\u30a1\u30dc&RT\u3055\u308c\u308b\u3068\u3059\u3054\u304f\u559c\u3076\u4eba\u2728\u9686\u4e8c\u306e\u8eab\u9577\u2728\uff72\uff9d\uff7d\uff80 link\u306b\u8cbc\u3063\u3066\u308b\u2728\u30a2\u30a4\u30b3\u30f3\u6016\u305d\u3046\u3060\u3051\u3069\u6016\u304f\u306a\u3044\u304b\u3089\u306dw\u2728\u8cb4\u65b9\u306e\u51fa\u4f1a\u3044\u306b\u611f\u8b1d\u2728","protected":false,"verified":false,"followers_count":16513,"friends_count":13719,"listed_count":229,"favourites_count":83738,"statuses_count":156008,"created_at":"Mon Sep 30 15:57:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660458713866629120\/Nme-9cCn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660458713866629120\/Nme-9cCn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1920470820\/1411363271","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003657"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758128775168,"id_str":"663727758128775168","text":"@Oceroool Oooh kirain kamu... \ud83d\ude1b","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon (Classic)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721809271910402,"in_reply_to_status_id_str":"663721809271910402","in_reply_to_user_id":1407423726,"in_reply_to_user_id_str":"1407423726","in_reply_to_screen_name":"Oceroool","user":{"id":274171880,"id_str":"274171880","name":"Alau","screen_name":"christ_heldy28","location":"Pontianak, West Borneo - ID","url":"http:\/\/about.me\/heldy.christophorus\/","description":"Personal account. Low strings, Dunhill Mild, Catholicism, Dayaknese, Schizophrenia, Introvert, Apatism, Nocturnal Zombie, Internet freak, Android Geek.","protected":false,"verified":false,"followers_count":1667,"friends_count":816,"listed_count":6,"favourites_count":1361,"statuses_count":53676,"created_at":"Tue Mar 29 21:36:50 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611745911564165120\/EmZyMM8a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611745911564165120\/EmZyMM8a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/274171880\/1446211249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Oceroool","name":"Caroll Seran","id":1407423726,"id_str":"1407423726","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080003660"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758120517632,"id_str":"663727758120517632","text":"Chicago #weather on December 9, 2015 - 12\/09\/2015 https:\/\/t.co\/DUisV9XMDz","source":"\u003ca href=\"http:\/\/weatherwillbe.com\/\" rel=\"nofollow\"\u003eus_twt_weath16\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219699386,"id_str":"219699386","name":"\u0410\u0431\u0440\u0430\u043c \u041b\u0435\u0431\u0435\u0434\u0435\u0432","screen_name":"fireluckyfox","location":"\u0421\u0430\u043c\u0430\u0440\u0430","url":null,"description":"\u0412 \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0440\u0430\u0437 \u0443\u0431\u0435\u0436\u0434\u0430\u044e\u0441\u044c, \u0447\u0442\u043e \u043f\u0440\u043e\u043a\u043b\u0430\u0434\u043a\u0430, \u043a\u0430\u043a \u0438 \u0431\u0443\u0442\u0435\u0440\u0431\u0440\u043e\u0434, \u0432\u0441\u0435\u0433\u0434\u0430 \u043f\u0430\u0434\u0430\u0435\u0442 \u043c\u0430\u0441\u043b\u043e\u043c \u0432\u043d\u0438\u0437.","protected":false,"verified":false,"followers_count":839,"friends_count":1,"listed_count":59,"favourites_count":0,"statuses_count":718318,"created_at":"Thu Nov 25 16:28:57 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560066962684801025\/6Q6hriI2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560066962684801025\/6Q6hriI2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560063082236358656\/f0-p8nbU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560063082236358656\/f0-p8nbU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219699386\/1413761932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"weather","indices":[8,16]}],"urls":[{"url":"https:\/\/t.co\/DUisV9XMDz","expanded_url":"http:\/\/weatherdaysonline.com\/62517d-chicago-weather-december-9-2015-12-09-2015.html","display_url":"weatherdaysonline.com\/62517d-chicago\u2026","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003658"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758128758784,"id_str":"663727758128758784","text":"@ccocomme \uc774\uac8c..\ubb34\uc2a8\u314b\u314b\u314b\u314b\u314b\u314b\u314b\ubc31\uc81c\uc2e0\ub77c\uace0\uad6c\ub9c8\ub77c\ub2c8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677781478273024,"in_reply_to_status_id_str":"663677781478273024","in_reply_to_user_id":1962780662,"in_reply_to_user_id_str":"1962780662","in_reply_to_screen_name":"ccocomme","user":{"id":2400740311,"id_str":"2400740311","name":"\ucf54\uc9e4","screen_name":"KANGZICO","location":null,"url":"http:\/\/untitled-folder.tistory.com\/","description":"\uc6fd\uc6fd\uc6e8\uc6fd\u3147\/\ub355\uc9c8\uc544\ub2cc\uc0ac\uc801\uc778\uc0ac\ub2f4\ub9ce\uc74c\/\uc6b0\uc9c0\ud638\u3160\u3160\u3161\uc5b4\ud5c8\ud5dd\uc9c0\ud638\uc57c\u315c\u3160\u315c\u315c\u315c","protected":false,"verified":false,"followers_count":542,"friends_count":198,"listed_count":15,"favourites_count":1000,"statuses_count":9238,"created_at":"Fri Mar 21 01:37:37 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661215520729907201\/nJWZpfvF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661215520729907201\/nJWZpfvF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2400740311\/1446478107","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ccocomme","name":"\uc5f4\ub7c9\ub369\uc5b4\ub9ac \ud06c\ub9ac\ubb34 \ud06c\ub9bc","id":1962780662,"id_str":"1962780662","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080003660"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154055685,"id_str":"663727758154055685","text":"@carolinasouzs Parab\u00e9ns amg, tudo de bom.. Que papai do c\u00e9u continue te aben\u00e7oando hoje e sempre. Sdd gatona\ud83d\udc9e\ud83d\ude3b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3341434953,"in_reply_to_user_id_str":"3341434953","in_reply_to_screen_name":"carolinasouzs","user":{"id":2579287431,"id_str":"2579287431","name":"Any Lorena","screen_name":"any9611","location":" Rio de Janeiro, Brasil","url":null,"description":"N\u00e3o vai haver amor nessa porra nunca mais!","protected":false,"verified":false,"followers_count":900,"friends_count":378,"listed_count":0,"favourites_count":1598,"statuses_count":20767,"created_at":"Tue Jun 03 03:32:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663518444105650176\/9yNZBDWG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663518444105650176\/9yNZBDWG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579287431\/1447030098","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"carolinasouzs","name":"Bday dia 9!!!!","id":3341434953,"id_str":"3341434953","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758154035200,"id_str":"663727758154035200","text":"Plane 3D U\u00e7ak Sim\u00fclasyonu oyunu https:\/\/t.co\/AJMeSVVJ8L\n\n#android #androidoyunlar #newgame #playstore #Plane3D https:\/\/t.co\/hAce0j5TIO","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4134246826,"id_str":"4134246826","name":"androidgames","screen_name":"androidgames06","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":0,"listed_count":56,"favourites_count":0,"statuses_count":5054,"created_at":"Sat Nov 07 12:42:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662974964912422912\/i0eC1eWk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662974964912422912\/i0eC1eWk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4134246826\/1446900574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"android","indices":[57,65]},{"text":"androidoyunlar","indices":[66,81]},{"text":"newgame","indices":[82,90]},{"text":"playstore","indices":[92,102]},{"text":"Plane3D","indices":[104,112]}],"urls":[{"url":"https:\/\/t.co\/AJMeSVVJ8L","expanded_url":"http:\/\/forumjj.com\/viewtopic.php?f=80&t=105","display_url":"forumjj.com\/viewtopic.php?\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663696665879138304,"id_str":"663696665879138304","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsmehWUAAQ3nh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsmehWUAAQ3nh.jpg","url":"https:\/\/t.co\/hAce0j5TIO","display_url":"pic.twitter.com\/hAce0j5TIO","expanded_url":"http:\/\/twitter.com\/hola_hopa\/status\/663696667783380992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":316,"resize":"fit"},"large":{"w":631,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}},"source_status_id":663696667783380992,"source_status_id_str":"663696667783380992","source_user_id":3111983572,"source_user_id_str":"3111983572"}]},"extended_entities":{"media":[{"id":663696665879138304,"id_str":"663696665879138304","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsmehWUAAQ3nh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsmehWUAAQ3nh.jpg","url":"https:\/\/t.co\/hAce0j5TIO","display_url":"pic.twitter.com\/hAce0j5TIO","expanded_url":"http:\/\/twitter.com\/hola_hopa\/status\/663696667783380992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":316,"resize":"fit"},"large":{"w":631,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}},"source_status_id":663696667783380992,"source_status_id_str":"663696667783380992","source_user_id":3111983572,"source_user_id_str":"3111983572"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080003666"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758124544002,"id_str":"663727758124544002","text":"@syuruku2525 @nikorun_robo (\u591a\u5206\u30c0\u30e1\u3002)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727500036452352,"in_reply_to_status_id_str":"663727500036452352","in_reply_to_user_id":3074664667,"in_reply_to_user_id_str":"3074664667","in_reply_to_screen_name":"syuruku2525","user":{"id":3028768982,"id_str":"3028768982","name":"\u3055\u304c\u3048\u307f","screen_name":"emi1126_aaa","location":null,"url":"http:\/\/Instagram.com\/1126_aaa.24","description":"\u65e5\u91ce\u535736\u671f\u25b7\u5357\u967515\u671f1-6 \u30b5\u30c3\u30ab\u30fc\u90e8MGR","protected":false,"verified":false,"followers_count":442,"friends_count":331,"listed_count":1,"favourites_count":6675,"statuses_count":971,"created_at":"Thu Feb 19 05:48:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662608502746038272\/Kt7tPHgl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662608502746038272\/Kt7tPHgl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3028768982\/1447077462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syuruku2525","name":"\u304b\u3068\u307e\u3044","id":3074664667,"id_str":"3074664667","indices":[0,12]},{"screen_name":"nikorun_robo","name":"\u83ef\u97f3","id":2829385694,"id_str":"2829385694","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003659"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758141341696,"id_str":"663727758141341696","text":"@yuinyaaaaaann \u3053\u3053\u306f\u30c8\u30ec\u30fc\u30c9\u3068\u3044\u304b\u306a\u3044\u304b\u3044\uff1fw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727607796494336,"in_reply_to_status_id_str":"663727607796494336","in_reply_to_user_id":2983054370,"in_reply_to_user_id_str":"2983054370","in_reply_to_screen_name":"yuinyaaaaaann","user":{"id":3229755812,"id_str":"3229755812","name":"\u594e\u54c9","screen_name":"keiya1111_ke","location":"\u6771\u4eac\u306e\u7530\u820e","url":null,"description":"\u7fbd\u6751\u7b2c\u4e00\u4e2d\u5b66\u6821\/3-1\/B\u2019z\/\u4efb\u5929\u5802\u5927\u597d\u304d\u4eba\u9593\/Splatoon \u30a6\u30c7\u30de\u30a8S\u6700\u9ad8S96 .96\u30c7\u30b3\u3001.52\u30ac\u30ed\u30f3","protected":false,"verified":false,"followers_count":73,"friends_count":69,"listed_count":0,"favourites_count":122,"statuses_count":244,"created_at":"Fri May 29 12:59:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655366931428446208\/BUtxjjHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655366931428446208\/BUtxjjHU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229755812\/1446798454","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuinyaaaaaann","name":"\u3086\u3044\u306b\u3083\u3093","id":2983054370,"id_str":"2983054370","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080003663"} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758132973568,"id_str":"663727758132973568","text":"You have no excuse to smell bad. Just take a fuckin shower. Use deodorant. If you don't have any, borrow some from a friend. It's so simple.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2259313979,"id_str":"2259313979","name":"babyface pimp","screen_name":"ColeBeLove","location":"everywhere and nowhere","url":null,"description":"men don't cry unless they're trap tears #IgnantTribe #TeamSESH #CrewUnited","protected":false,"verified":false,"followers_count":3251,"friends_count":886,"listed_count":8,"favourites_count":2190,"statuses_count":7960,"created_at":"Fri Jan 03 02:54:55 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661999908220633088\/f88O32nO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661999908220633088\/f88O32nO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2259313979\/1446431627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003661"} +{"delete":{"status":{"id":663708258826256384,"id_str":"663708258826256384","user_id":3322376832,"user_id_str":"3322376832"},"timestamp_ms":"1447080003912"}} +{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727758132953088,"id_str":"663727758132953088","text":"Found a Transponder Snail!\nGiants, sea monsters, fantastical creatures of all kinds!\n#TreCru https:\/\/t.co\/BlKuII1GBW","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4102955353,"id_str":"4102955353","name":"Elvin Lin","screen_name":"elin_l99","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":11,"created_at":"Mon Nov 02 14:59:18 +0000 2015","utc_offset":-28800,"time_zone":"PST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[85,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727757906456576,"id_str":"663727757906456576","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4RWUsAAXioO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4RWUsAAXioO.jpg","url":"https:\/\/t.co\/BlKuII1GBW","display_url":"pic.twitter.com\/BlKuII1GBW","expanded_url":"http:\/\/twitter.com\/elin_l99\/status\/663727758132953088\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727757906456576,"id_str":"663727757906456576","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4RWUsAAXioO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4RWUsAAXioO.jpg","url":"https:\/\/t.co\/BlKuII1GBW","display_url":"pic.twitter.com\/BlKuII1GBW","expanded_url":"http:\/\/twitter.com\/elin_l99\/status\/663727758132953088\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080003661"} +{"delete":{"status":{"id":663725560313565185,"id_str":"663725560313565185","user_id":436781174,"user_id_str":"436781174"},"timestamp_ms":"1447080004435"}} +{"delete":{"status":{"id":663720241944510464,"id_str":"663720241944510464","user_id":3396365637,"user_id_str":"3396365637"},"timestamp_ms":"1447080004470"}} +{"delete":{"status":{"id":663727107999055872,"id_str":"663727107999055872","user_id":3318493508,"user_id_str":"3318493508"},"timestamp_ms":"1447080004445"}} +{"delete":{"status":{"id":663726130747170816,"id_str":"663726130747170816","user_id":1235702450,"user_id_str":"1235702450"},"timestamp_ms":"1447080004482"}} +{"delete":{"status":{"id":645718582756675585,"id_str":"645718582756675585","user_id":2919915199,"user_id_str":"2919915199"},"timestamp_ms":"1447080004493"}} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310610945,"id_str":"663727762310610945","text":"RT @OfficialWithHL: HQ || Pictures of Harry released by https:\/\/t.co\/wW3MK45NG7 #2 https:\/\/t.co\/K2EQbKUOIA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3697310117,"id_str":"3697310117","name":"M.","screen_name":"larryloverLH","location":"\u0130stanbul","url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":91,"listed_count":0,"favourites_count":4832,"statuses_count":2492,"created_at":"Fri Sep 18 14:26:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662785137969491968\/Ihdad-Jo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662785137969491968\/Ihdad-Jo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3697310117\/1446688451","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:25 +0000 2015","id":663719796270305280,"id_str":"663719796270305280","text":"HQ || Pictures of Harry released by https:\/\/t.co\/wW3MK45NG7 #2 https:\/\/t.co\/K2EQbKUOIA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3474104594,"id_str":"3474104594","name":"H&L Updates!","screen_name":"OfficialWithHL","location":null,"url":null,"description":"Harry and Louis update account. Live Tweeting on H & L. RBB review. Larry Receipts. and a little bit of random larry shit here and there.","protected":false,"verified":false,"followers_count":7934,"friends_count":7,"listed_count":30,"favourites_count":205,"statuses_count":4717,"created_at":"Sun Sep 06 20:15:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660610886097326080\/X2USZRSp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660610886097326080\/X2USZRSp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3474104594\/1446339947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":47,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wW3MK45NG7","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[36,59]}],"user_mentions":[],"symbols":[],"media":[{"id":663719745926144001,"id_str":"663719745926144001","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719745926144001,"id_str":"663719745926144001","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663719746110685184,"id_str":"663719746110685184","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl7FXAAA7J4W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl7FXAAA7J4W.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663719746257428480,"id_str":"663719746257428480","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl7oWIAA9s0v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl7oWIAA9s0v.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663719746450403328,"id_str":"663719746450403328","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl8WWsAAElkM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl8WWsAAElkM.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wW3MK45NG7","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[56,79]}],"user_mentions":[{"screen_name":"OfficialWithHL","name":"H&L Updates!","id":3474104594,"id_str":"3474104594","indices":[3,18]}],"symbols":[],"media":[{"id":663719745926144001,"id_str":"663719745926144001","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663719796270305280,"source_status_id_str":"663719796270305280","source_user_id":3474104594,"source_user_id_str":"3474104594"}]},"extended_entities":{"media":[{"id":663719745926144001,"id_str":"663719745926144001","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl6ZXIAEL8St.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663719796270305280,"source_status_id_str":"663719796270305280","source_user_id":3474104594,"source_user_id_str":"3474104594"},{"id":663719746110685184,"id_str":"663719746110685184","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl7FXAAA7J4W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl7FXAAA7J4W.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663719796270305280,"source_status_id_str":"663719796270305280","source_user_id":3474104594,"source_user_id_str":"3474104594"},{"id":663719746257428480,"id_str":"663719746257428480","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl7oWIAA9s0v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl7oWIAA9s0v.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663719796270305280,"source_status_id_str":"663719796270305280","source_user_id":3474104594,"source_user_id_str":"3474104594"},{"id":663719746450403328,"id_str":"663719746450403328","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBl8WWsAAElkM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBl8WWsAAElkM.jpg","url":"https:\/\/t.co\/K2EQbKUOIA","display_url":"pic.twitter.com\/K2EQbKUOIA","expanded_url":"http:\/\/twitter.com\/OfficialWithHL\/status\/663719796270305280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663719796270305280,"source_status_id_str":"663719796270305280","source_user_id":3474104594,"source_user_id_str":"3474104594"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335772672,"id_str":"663727762335772672","text":"Que raiva","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2290246038,"id_str":"2290246038","name":"nevezzzz #ADR5M","screen_name":"demetriaaround","location":"no cora\u00e7\u00e3o do crush que n\u00e3o \u00e9 ","url":null,"description":"somos os afortunados que nunca enfrentaram as armas da opress\u00e3o, somos os afortunados as imita\u00e7\u00f5es da rebeli\u00e3o","protected":false,"verified":false,"followers_count":627,"friends_count":589,"listed_count":0,"favourites_count":2924,"statuses_count":5724,"created_at":"Mon Jan 13 21:50:47 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"30051D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435130162053541888\/R68jQRxB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435130162053541888\/R68jQRxB.jpeg","profile_background_tile":true,"profile_link_color":"112233","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662383552785473537\/GDV6c1CJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662383552785473537\/GDV6c1CJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2290246038\/1445817286","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335748102,"id_str":"663727762335748102","text":"RT @girlideas: mood: need 10 million dollars","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":632939758,"id_str":"632939758","name":"IG: Ambo_McNgiba","screen_name":"Zee_MacNgiba","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":364,"friends_count":274,"listed_count":0,"favourites_count":44,"statuses_count":4082,"created_at":"Wed Jul 11 14:22:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552177848447148034\/0zj2f1Ai_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552177848447148034\/0zj2f1Ai_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/632939758\/1388753061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:04 +0000 2015","id":663727259807797248,"id_str":"663727259807797248","text":"mood: need 10 million dollars","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131752870,"id_str":"131752870","name":"ok","screen_name":"girlideas","location":null,"url":"http:\/\/howteenagers.com","description":"nap time","protected":false,"verified":false,"followers_count":2144366,"friends_count":100,"listed_count":6129,"favourites_count":2063,"statuses_count":79124,"created_at":"Sun Apr 11 06:28:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131752870\/1429655938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":146,"favorite_count":61,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"girlideas","name":"ok","id":131752870,"id_str":"131752870","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310565888,"id_str":"663727762310565888","text":"RT @WeNeedFeminlsm: Seriously love her \ud83d\ude4c\ud83c\udffd https:\/\/t.co\/HMUeQlBD2I","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2487336873,"id_str":"2487336873","name":"adriana ","screen_name":"espinosabbby","location":null,"url":null,"description":"\u2022Jacob,Jack J, Carter, Taylor & Nash follow\u2022 instagram; _adrianaaaxo\u2022 snapchat; adrianaaaaa1\u2022","protected":false,"verified":false,"followers_count":3983,"friends_count":3972,"listed_count":5,"favourites_count":25054,"statuses_count":15397,"created_at":"Tue Apr 15 23:12:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615762042339790848\/woinjPiv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615762042339790848\/woinjPiv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2487336873\/1437102537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:57:54 +0000 2015","id":663369861788254209,"id_str":"663369861788254209","text":"Seriously love her \ud83d\ude4c\ud83c\udffd https:\/\/t.co\/HMUeQlBD2I","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240990050,"id_str":"240990050","name":"Feminist Tweet\u2122","screen_name":"WeNeedFeminlsm","location":"Join the movement!","url":null,"description":"follow if you support women's rights and equal treatment \u270c\ufe0f","protected":false,"verified":false,"followers_count":564096,"friends_count":67,"listed_count":784,"favourites_count":79,"statuses_count":8056,"created_at":"Fri Jan 21 05:36:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FEFDF3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122790773\/daa93911db8e957cc2cf0fc97d7432f6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122790773\/daa93911db8e957cc2cf0fc97d7432f6.jpeg","profile_background_tile":false,"profile_link_color":"F75BC0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"F5FFFF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580918376169484288\/k2EEA_Vi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580918376169484288\/k2EEA_Vi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240990050\/1436948705","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1901,"favorite_count":3414,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663369855446437888,"id_str":"663369855446437888","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663369855446437888,"id_str":"663369855446437888","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}}},{"id":663369855551332352,"id_str":"663369855551332352","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXnLW4AAipUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXnLW4AAipUl.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}}},{"id":663369855643615232,"id_str":"663369855643615232","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXnhXAAAfWC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXnhXAAAfWC-.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}}},{"id":663369855861698560,"id_str":"663369855861698560","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXoVWsAAL4xx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXoVWsAAL4xx.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WeNeedFeminlsm","name":"Feminist Tweet\u2122","id":240990050,"id_str":"240990050","indices":[3,18]}],"symbols":[],"media":[{"id":663369855446437888,"id_str":"663369855446437888","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}},"source_status_id":663369861788254209,"source_status_id_str":"663369861788254209","source_user_id":240990050,"source_user_id_str":"240990050"}]},"extended_entities":{"media":[{"id":663369855446437888,"id_str":"663369855446437888","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXmyWUAAjeaa.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}},"source_status_id":663369861788254209,"source_status_id_str":"663369861788254209","source_user_id":240990050,"source_user_id_str":"240990050"},{"id":663369855551332352,"id_str":"663369855551332352","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXnLW4AAipUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXnLW4AAipUl.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}},"source_status_id":663369861788254209,"source_status_id_str":"663369861788254209","source_user_id":240990050,"source_user_id_str":"240990050"},{"id":663369855643615232,"id_str":"663369855643615232","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXnhXAAAfWC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXnhXAAAfWC-.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}},"source_status_id":663369861788254209,"source_status_id_str":"663369861788254209","source_user_id":240990050,"source_user_id_str":"240990050"},{"id":663369855861698560,"id_str":"663369855861698560","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTDXoVWsAAL4xx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTDXoVWsAAL4xx.jpg","url":"https:\/\/t.co\/HMUeQlBD2I","display_url":"pic.twitter.com\/HMUeQlBD2I","expanded_url":"http:\/\/twitter.com\/WeNeedFeminlsm\/status\/663369861788254209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":980,"h":980,"resize":"fit"}},"source_status_id":663369861788254209,"source_status_id_str":"663369861788254209","source_user_id":240990050,"source_user_id_str":"240990050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348314624,"id_str":"663727762348314624","text":"Some ppl would do anything for money.","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3025522049,"id_str":"3025522049","name":"Shawn.","screen_name":"YeaaShawn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":471,"friends_count":372,"listed_count":0,"favourites_count":2,"statuses_count":13030,"created_at":"Sun Feb 08 20:33:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663191500432523264\/WLlPVkXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663191500432523264\/WLlPVkXC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025522049\/1429480378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318958592,"id_str":"663727762318958592","text":"Esperando a coragem chegar pra eu levantar e ir almo\u00e7ar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2974952507,"id_str":"2974952507","name":"Liban\u00eas","screen_name":"demizinho30","location":"Serra, Esp\u00edrito Santo","url":null,"description":"Mas conquistar \u00e9 melhor que ganhar.","protected":false,"verified":false,"followers_count":728,"friends_count":618,"listed_count":0,"favourites_count":559,"statuses_count":3642,"created_at":"Mon Jan 12 16:55:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660705232566001664\/QgL6jTMq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660705232566001664\/QgL6jTMq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974952507\/1438739416","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310602752,"id_str":"663727762310602752","text":"@Ayaka__s__ \u30b4\u30ed\u30ea\u5148\u8f29\ud83d\ude0e\ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726757447528449,"in_reply_to_status_id_str":"663726757447528449","in_reply_to_user_id":3261396302,"in_reply_to_user_id_str":"3261396302","in_reply_to_screen_name":"Ayaka__s__","user":{"id":253103071,"id_str":"253103071","name":"\u3082\u307f\u3042\u3052","screen_name":"momiage43","location":"\u30a8\u30cd\u30aa\u30b9","url":null,"description":"\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \u9752\u3002","protected":false,"verified":false,"followers_count":176,"friends_count":203,"listed_count":3,"favourites_count":3725,"statuses_count":52171,"created_at":"Wed Feb 16 15:22:22 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626168999156387841\/GN7AkH4L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626168999156387841\/GN7AkH4L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253103071\/1444398551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ayaka__s__","name":"\u2661*.+\u309c\u3055\u3084\u3071\u305d","id":3261396302,"id_str":"3261396302","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318979072,"id_str":"663727762318979072","text":"RT @justinbieber: Yes it is https:\/\/t.co\/GWO9C2YNpD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160572171,"id_str":"160572171","name":"Stephanie Loughlin","screen_name":"letmecu1_2STEPH","location":"Pittsburgh","url":null,"description":"Look at the stars\u2728\r\nDuquesne University '19","protected":false,"verified":false,"followers_count":629,"friends_count":594,"listed_count":3,"favourites_count":2249,"statuses_count":3073,"created_at":"Mon Jun 28 15:09:53 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/253192945\/signed_background..jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/253192945\/signed_background..jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"420B5E","profile_text_color":"9F28FA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648853447807139841\/Jm8Uay9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648853447807139841\/Jm8Uay9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160572171\/1419821056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:47:52 +0000 2015","id":663382434944167936,"id_str":"663382434944167936","text":"Yes it is https:\/\/t.co\/GWO9C2YNpD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27260086,"id_str":"27260086","name":"Justin Bieber","screen_name":"justinbieber","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Let's make the world better. Join @officialfahlo and add me on @shots 'justinbieber'. OUR new single SORRY out now. OUR new album PURPOSE out Nov 13","protected":false,"verified":true,"followers_count":69382905,"friends_count":240812,"listed_count":627140,"favourites_count":1894,"statuses_count":29961,"created_at":"Sat Mar 28 16:41:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27260086\/1446487498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663379993767116800,"quoted_status_id_str":"663379993767116800","quoted_status":{"created_at":"Sun Nov 08 15:38:10 +0000 2015","id":663379993767116800,"id_str":"663379993767116800","text":"Purpose tour is coming. \nPurpose tour is coming. \nPurpose tour is coming. https:\/\/t.co\/ZhKGtB8x6D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101066109,"id_str":"1101066109","name":"\u3164","screen_name":"reclaimbieber","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Buy 'Purpose' By Justin Bieber On November 13th!","protected":false,"verified":false,"followers_count":36003,"friends_count":3935,"listed_count":204,"favourites_count":9419,"statuses_count":34206,"created_at":"Fri Jan 18 14:04:58 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839758740\/580c16e5c781c818e97315e5512a455a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839758740\/580c16e5c781c818e97315e5512a455a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662936473986064384\/YqMzaLQP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662936473986064384\/YqMzaLQP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101066109\/1446891347","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZhKGtB8x6D","expanded_url":"http:\/\/snpy.tv\/1MsBkcB","display_url":"snpy.tv\/1MsBkcB","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":42118,"favorite_count":49520,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GWO9C2YNpD","expanded_url":"https:\/\/twitter.com\/reclaimbieber\/status\/663379993767116800","display_url":"twitter.com\/reclaimbieber\/\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GWO9C2YNpD","expanded_url":"https:\/\/twitter.com\/reclaimbieber\/status\/663379993767116800","display_url":"twitter.com\/reclaimbieber\/\u2026","indices":[28,51]}],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318958593,"id_str":"663727762318958593","text":"RT @SenyoraMarisse: Yes undeniable Chemistry Thanks MJ\n\nTOMIHO GrandFansDay https:\/\/t.co\/OjSKXoRlp3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322140986,"id_str":"3322140986","name":"Sittie Amarah M.","screen_name":"itsmeAmarah","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":54,"friends_count":109,"listed_count":0,"favourites_count":195,"statuses_count":1970,"created_at":"Fri Aug 21 08:08:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663113570889179137\/BzD27KzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663113570889179137\/BzD27KzS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322140986\/1446933567","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:00:26 +0000 2015","id":663612090414968832,"id_str":"663612090414968832","text":"Yes undeniable Chemistry Thanks MJ\n\nTOMIHO GrandFansDay https:\/\/t.co\/OjSKXoRlp3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2854903458,"id_str":"2854903458","name":"Marisse Garcia\u24c2","screen_name":"SenyoraMarisse","location":"Pearl of the Orient ","url":"http:\/\/push.abs-cbn.com\/","description":"My views and opinions DO NOT reflect to any Fandoms and artists |Critic | Publicist| Sexy Model | Host | [@EsguerraTommy EX GF] [SecretAdmirer of @robertmarion]","protected":false,"verified":false,"followers_count":11818,"friends_count":99,"listed_count":7,"favourites_count":18774,"statuses_count":25841,"created_at":"Mon Oct 13 23:59:47 +0000 2014","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643648959760613376\/LgG_bU8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643648959760613376\/LgG_bU8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2854903458\/1446392416","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663606312329023488,"quoted_status_id_str":"663606312329023488","quoted_status":{"created_at":"Mon Nov 09 06:37:28 +0000 2015","id":663606312329023488,"id_str":"663606312329023488","text":"Ang lakas ng dating ng TOMIHO. #ShowtimePBBSaLubong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48668434,"id_str":"48668434","name":"MJ Felipe","screen_name":"mjfelipe","location":"Manila, PH ","url":null,"description":"Entertainment Journalist | ABSCBN Broadcasting Network","protected":false,"verified":false,"followers_count":313278,"friends_count":591,"listed_count":192,"favourites_count":553,"statuses_count":37380,"created_at":"Fri Jun 19 10:21:23 +0000 2009","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8CA3B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/105839917\/Me_Kobe_090_600x600_700KB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/105839917\/Me_Kobe_090_600x600_700KB.jpg","profile_background_tile":true,"profile_link_color":"386E4E","profile_sidebar_border_color":"010A0F","profile_sidebar_fill_color":"EDB17C","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661052522799300608\/P65mPc5b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661052522799300608\/P65mPc5b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48668434\/1446442175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ShowtimePBBSaLubong","indices":[31,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":286,"favorite_count":309,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OjSKXoRlp3","expanded_url":"https:\/\/twitter.com\/mjfelipe\/status\/663606312329023488","display_url":"twitter.com\/mjfelipe\/statu\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OjSKXoRlp3","expanded_url":"https:\/\/twitter.com\/mjfelipe\/status\/663606312329023488","display_url":"twitter.com\/mjfelipe\/statu\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"SenyoraMarisse","name":"Marisse Garcia\u24c2","id":2854903458,"id_str":"2854903458","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004659"} +{"delete":{"status":{"id":650663566509404160,"id_str":"650663566509404160","user_id":2286087246,"user_id_str":"2286087246"},"timestamp_ms":"1447080004718"}} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335772673,"id_str":"663727762335772673","text":"RT @1DBR: O \u00e1lbum Take Me Home completa tr\u00eas anos hoje desde seu lan\u00e7amento! https:\/\/t.co\/E6YltGBsiP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453815333,"id_str":"2453815333","name":"\u2741 lyvia CONFIDENT \u2741","screen_name":"larrytoxicada","location":"\u20221d \u2022dl \u20225h \u2022sm \u2022zm \u2022youtubers","url":"https:\/\/twitter.com\/louis_tomlinson\/status\/120620074301267968","description":"\u00b0 louis voice] i'm in fact straight,,,,,, omfg harry hmm pls faster oh my good i was just kidding i like harry's dick on my ass \u00b0","protected":false,"verified":false,"followers_count":16866,"friends_count":10913,"listed_count":12,"favourites_count":3442,"statuses_count":77605,"created_at":"Sat Apr 19 23:23:49 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590870644700491777\/w73D6sD9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590870644700491777\/w73D6sD9.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660839051763785728\/FSqrelIa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660839051763785728\/FSqrelIa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453815333\/1446391281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:23 +0000 2015","id":663727087862292481,"id_str":"663727087862292481","text":"O \u00e1lbum Take Me Home completa tr\u00eas anos hoje desde seu lan\u00e7amento! https:\/\/t.co\/E6YltGBsiP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466573221,"id_str":"466573221","name":"One Direction Brasil","screen_name":"1DBR","location":"Brazil","url":"http:\/\/onedirectionmusicbr.com","description":"Sua fonte de informa\u00e7\u00f5es no Brasil sobre a banda One Direction. Your source of information in Brazil about the band One Direction.","protected":false,"verified":false,"followers_count":96538,"friends_count":9324,"listed_count":116,"favourites_count":908,"statuses_count":156520,"created_at":"Tue Jan 17 15:17:36 +0000 2012","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/775963466\/ab304586d0863ccb425bd949cc2ccee8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/775963466\/ab304586d0863ccb425bd949cc2ccee8.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646449031917477888\/b_HDZz0D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646449031917477888\/b_HDZz0D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466573221\/1442960418","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726946489081857,"id_str":"663726946489081857","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726946489081857,"id_str":"663726946489081857","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663727083168903168,"id_str":"663727083168903168","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQ_wWsAAtm9N.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQ_wWsAAtm9N.png","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1DBR","name":"One Direction Brasil","id":466573221,"id_str":"466573221","indices":[3,8]}],"symbols":[],"media":[{"id":663726946489081857,"id_str":"663726946489081857","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727087862292481,"source_status_id_str":"663727087862292481","source_user_id":466573221,"source_user_id_str":"466573221"}]},"extended_entities":{"media":[{"id":663726946489081857,"id_str":"663726946489081857","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJClWIAEBb5B.jpg","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727087862292481,"source_status_id_str":"663727087862292481","source_user_id":466573221,"source_user_id_str":"466573221"},{"id":663727083168903168,"id_str":"663727083168903168","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQ_wWsAAtm9N.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQ_wWsAAtm9N.png","url":"https:\/\/t.co\/E6YltGBsiP","display_url":"pic.twitter.com\/E6YltGBsiP","expanded_url":"http:\/\/twitter.com\/1DBR\/status\/663727087862292481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727087862292481,"source_status_id_str":"663727087862292481","source_user_id":466573221,"source_user_id_str":"466573221"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339971072,"id_str":"663727762339971072","text":"Tabung Haji Banda Kaba Melaka Office https:\/\/t.co\/tBfh5w60yL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3855238153,"id_str":"3855238153","name":"laurawfreeman","screen_name":"laurawfreeman","location":"Whitman, MA","url":"http:\/\/LauraWFreeman.blogspot.com","description":"Please kindly like and comment here. I need your encouragingly from times to times to continue my sweet dream and journey. Wish you and me have a success","protected":false,"verified":false,"followers_count":13,"friends_count":42,"listed_count":0,"favourites_count":0,"statuses_count":48068,"created_at":"Sun Oct 11 05:26:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653079786827288576\/BBNMJ2bc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653079786827288576\/BBNMJ2bc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3855238153\/1444541425","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tBfh5w60yL","expanded_url":"http:\/\/ift.tt\/1Mk52Ny","display_url":"ift.tt\/1Mk52Ny","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323173376,"id_str":"663727762323173376","text":"\"There is real magic in enthusiasm. It spells the difference between mediocrity and accomplishment.\" \u2014Norman Vincent Peale via @momentumdash","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":56178902,"id_str":"56178902","name":"Holly","screen_name":"Hollease","location":"Washington DC","url":"http:\/\/gpg.com","description":"Move forward always. only stop to go back & bring someone with you","protected":false,"verified":false,"followers_count":158,"friends_count":298,"listed_count":1,"favourites_count":457,"statuses_count":2848,"created_at":"Sun Jul 12 20:11:41 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548912537425547265\/MbaY4Z5S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548912537425547265\/MbaY4Z5S.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"424C55","profile_text_color":"8CB2BD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564030096382504960\/D4ziF1G8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564030096382504960\/D4ziF1G8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56178902\/1427768915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"momentumdash","name":"Momentum","id":1927756411,"id_str":"1927756411","indices":[127,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339966976,"id_str":"663727762339966976","text":"RT @scappiamoluke: @Benji_Mascolo BENJI TI PREGO PRETENDO QUESTO SELFIE #BenjieFedeLettera https:\/\/t.co\/yIvjKNt0s4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3204608475,"id_str":"3204608475","name":"Fangirl \/\/ 20:05","screen_name":"giada_mrs","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":39,"friends_count":34,"listed_count":0,"favourites_count":483,"statuses_count":1188,"created_at":"Sat Apr 25 08:42:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656884301452169216\/TXGvlzmu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656884301452169216\/TXGvlzmu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3204608475\/1443725623","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:03 +0000 2015","id":663720711614291968,"id_str":"663720711614291968","text":"@Benji_Mascolo BENJI TI PREGO PRETENDO QUESTO SELFIE #BenjieFedeLettera https:\/\/t.co\/yIvjKNt0s4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718668501704705,"in_reply_to_status_id_str":"663718668501704705","in_reply_to_user_id":159041608,"in_reply_to_user_id_str":"159041608","in_reply_to_screen_name":"Benji_Mascolo","user":{"id":2479955469,"id_str":"2479955469","name":"al\u0161","screen_name":"scappiamoluke","location":"benji e fede\/2 ","url":null,"description":"come quando fuori piove e senti dentro l'eco della libert\u00e0; frals.","protected":false,"verified":false,"followers_count":2882,"friends_count":2015,"listed_count":8,"favourites_count":11497,"statuses_count":26735,"created_at":"Sat Apr 12 22:21:21 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555079058128519168\/fDyE-dtM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555079058128519168\/fDyE-dtM.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660133531029544960\/arQx9GTe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660133531029544960\/arQx9GTe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479955469\/1446223066","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":422,"favorite_count":888,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[53,71]}],"urls":[],"user_mentions":[{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[0,14]}],"symbols":[],"media":[{"id":663720701522780160,"id_str":"663720701522780160","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","url":"https:\/\/t.co\/yIvjKNt0s4","display_url":"pic.twitter.com\/yIvjKNt0s4","expanded_url":"http:\/\/twitter.com\/scappiamoluke\/status\/663720711614291968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720701522780160,"id_str":"663720701522780160","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","url":"https:\/\/t.co\/yIvjKNt0s4","display_url":"pic.twitter.com\/yIvjKNt0s4","expanded_url":"http:\/\/twitter.com\/scappiamoluke\/status\/663720711614291968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[72,90]}],"urls":[],"user_mentions":[{"screen_name":"scappiamoluke","name":"al\u0161","id":2479955469,"id_str":"2479955469","indices":[3,17]},{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[19,33]}],"symbols":[],"media":[{"id":663720701522780160,"id_str":"663720701522780160","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","url":"https:\/\/t.co\/yIvjKNt0s4","display_url":"pic.twitter.com\/yIvjKNt0s4","expanded_url":"http:\/\/twitter.com\/scappiamoluke\/status\/663720711614291968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720711614291968,"source_status_id_str":"663720711614291968","source_user_id":2479955469,"source_user_id_str":"2479955469"}]},"extended_entities":{"media":[{"id":663720701522780160,"id_str":"663720701522780160","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCdiRWoAApk69.jpg","url":"https:\/\/t.co\/yIvjKNt0s4","display_url":"pic.twitter.com\/yIvjKNt0s4","expanded_url":"http:\/\/twitter.com\/scappiamoluke\/status\/663720711614291968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720711614291968,"source_status_id_str":"663720711614291968","source_user_id":2479955469,"source_user_id_str":"2479955469"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762344124416,"id_str":"663727762344124416","text":"RT @sorryimioh: \u0443\u0440\u0430 https:\/\/t.co\/Oq320t8rDR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2601412012,"id_str":"2601412012","name":"marijuana tragedy","screen_name":"pashasaunders","location":"Belarus, Minsk","url":null,"description":"\u043f\u043e\u0445\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0431\u043e\u043c\u0436\u0430","protected":false,"verified":false,"followers_count":114,"friends_count":73,"listed_count":5,"favourites_count":636,"statuses_count":17701,"created_at":"Wed Jun 11 15:37:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627511222712143874\/nnyQuSbm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627511222712143874\/nnyQuSbm.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659455412207419393\/Dqz58P7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659455412207419393\/Dqz58P7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2601412012\/1446061524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:16 +0000 2015","id":663727308424011776,"id_str":"663727308424011776","text":"\u0443\u0440\u0430 https:\/\/t.co\/Oq320t8rDR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":536500943,"id_str":"536500943","name":"\u0431\u0435\u0434\u043d\u044b\u0439 \u043b\u044c\u044e\u0438\u0441","screen_name":"sorryimioh","location":null,"url":null,"description":"\u044f \u0440\u044b\u0431\u0430 \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0442\u043e\u043d\u0435\u0442 #deep","protected":false,"verified":false,"followers_count":388,"friends_count":343,"listed_count":6,"favourites_count":473,"statuses_count":79945,"created_at":"Sun Mar 25 17:44:07 +0000 2012","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532949577330999296\/hodkrFYm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532949577330999296\/hodkrFYm.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3726955050\/9e04b886e19e05d2be19703ccde6b06b_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3726955050\/9e04b886e19e05d2be19703ccde6b06b_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/536500943\/1390307858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727306091925504,"id_str":"663727306091925504","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","url":"https:\/\/t.co\/Oq320t8rDR","display_url":"pic.twitter.com\/Oq320t8rDR","expanded_url":"http:\/\/twitter.com\/sorryimioh\/status\/663727308424011776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727306091925504,"id_str":"663727306091925504","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","url":"https:\/\/t.co\/Oq320t8rDR","display_url":"pic.twitter.com\/Oq320t8rDR","expanded_url":"http:\/\/twitter.com\/sorryimioh\/status\/663727308424011776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sorryimioh","name":"\u0431\u0435\u0434\u043d\u044b\u0439 \u043b\u044c\u044e\u0438\u0441","id":536500943,"id_str":"536500943","indices":[3,14]}],"symbols":[],"media":[{"id":663727306091925504,"id_str":"663727306091925504","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","url":"https:\/\/t.co\/Oq320t8rDR","display_url":"pic.twitter.com\/Oq320t8rDR","expanded_url":"http:\/\/twitter.com\/sorryimioh\/status\/663727308424011776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727308424011776,"source_status_id_str":"663727308424011776","source_user_id":536500943,"source_user_id_str":"536500943"}]},"extended_entities":{"media":[{"id":663727306091925504,"id_str":"663727306091925504","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYId-NWEAAsyrl.png","url":"https:\/\/t.co\/Oq320t8rDR","display_url":"pic.twitter.com\/Oq320t8rDR","expanded_url":"http:\/\/twitter.com\/sorryimioh\/status\/663727308424011776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727308424011776,"source_status_id_str":"663727308424011776","source_user_id":536500943,"source_user_id_str":"536500943"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080004665"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335666176,"id_str":"663727762335666176","text":"RT @GMANewsOnline: Meet the 21 APEC leaders coming to Manila next week https:\/\/t.co\/XrsnS0fteB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237907320,"id_str":"3237907320","name":"\u897f\u4e9a","screen_name":"IRENETHEAMAR","location":"diamond life","url":null,"description":"XVII || snap! irenetheamar","protected":false,"verified":false,"followers_count":214,"friends_count":145,"listed_count":2,"favourites_count":3816,"statuses_count":19920,"created_at":"Sat Jun 06 14:27:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635401258547806208\/ToIY6SSe.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635401258547806208\/ToIY6SSe.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662894078456000512\/P-GxDdPg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662894078456000512\/P-GxDdPg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237907320\/1446828731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:34:06 +0000 2015","id":663680961763143680,"id_str":"663680961763143680","text":"Meet the 21 APEC leaders coming to Manila next week https:\/\/t.co\/XrsnS0fteB","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38623068,"id_str":"38623068","name":"GMA News Online","screen_name":"GMANewsOnline","location":"Philippines","url":"http:\/\/www.gmanews.tv","description":"Twitter feed of GMA News Online - the website of GMA News and Public Affairs in the Philippines. Follow us for links to our latest web articles and videos.","protected":false,"verified":true,"followers_count":893788,"friends_count":116,"listed_count":2873,"favourites_count":25,"statuses_count":291568,"created_at":"Fri May 08 06:52:52 +0000 2009","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/723629790\/8ea10f634b3e196b85661eae0bdaf59c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/723629790\/8ea10f634b3e196b85661eae0bdaf59c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A6CBED","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654719600379105280\/3S_YtKwe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654719600379105280\/3S_YtKwe_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XrsnS0fteB","expanded_url":"http:\/\/bit.ly\/1NEhE6p","display_url":"bit.ly\/1NEhE6p","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XrsnS0fteB","expanded_url":"http:\/\/bit.ly\/1NEhE6p","display_url":"bit.ly\/1NEhE6p","indices":[71,94]}],"user_mentions":[{"screen_name":"GMANewsOnline","name":"GMA News Online","id":38623068,"id_str":"38623068","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762314674176,"id_str":"663727762314674176","text":"\u4eca\u6708\u3082\u548c\u6b4c\u5c71\u3068\u5927\u962a2\u56de\u884c\u304f\u304b\u3089\u4ea4\u901a\u8cbb\u306e\u51fa\u8cbb\u304c\u3042\u308a\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3175113511,"id_str":"3175113511","name":"\u3048\u308a\u306a\u306f\u3086\u306b\u548c\u6b4c\u5c71","screen_name":"usg724_bbb","location":"KOBE","url":null,"description":"UNISON SQUARE GARDEN (\u3064\u3042\u30fc\u3001\u5ca1\u5c71\u548c\u6b4c\u5c71\u5927\u962a\u5927\u962a\u540d\u53e4\u5c4b\u5317\u6d77\u9053\u6771\u4eac)\u3068 Base Ball Bear(\u3064\u3042\u30fc\u3001\u5927\u962a) \u3068\u30de\u30f3\u30ac\u304c\u5927\u597d\u304d\u3067\u3059","protected":false,"verified":false,"followers_count":262,"friends_count":168,"listed_count":8,"favourites_count":3007,"statuses_count":13498,"created_at":"Sun Apr 26 06:05:30 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657742425574653952\/FNBD1Y7k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657742425574653952\/FNBD1Y7k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3175113511\/1444743339","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004658"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762344050688,"id_str":"663727762344050688","text":"RT @WAKEUPPEOPL3: https:\/\/t.co\/cKrKnUTWpd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1080812714,"id_str":"1080812714","name":"Bernie Bullard III","screen_name":"flabbybdb3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":67,"friends_count":185,"listed_count":1,"favourites_count":1145,"statuses_count":461,"created_at":"Fri Jan 11 20:12:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658840401714020352\/Yr3b-6Du_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658840401714020352\/Yr3b-6Du_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080812714\/1443098295","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 17:06:40 +0000 2015","id":663039879475892224,"id_str":"663039879475892224","text":"https:\/\/t.co\/cKrKnUTWpd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286742737,"id_str":"286742737","name":"Open Your Mind","screen_name":"WAKEUPPEOPL3","location":"Inside Your Head ","url":null,"description":"I'm the voice inside your head you refuse to hear.We do not own any images on this page! Request DMCA removal hermanavneet@gmail.com","protected":false,"verified":false,"followers_count":1086662,"friends_count":196,"listed_count":1755,"favourites_count":1082,"statuses_count":24749,"created_at":"Sat Apr 23 16:15:20 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620864886638161920\/iCFBF3Sr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620864886638161920\/iCFBF3Sr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/286742737\/1436860595","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":300,"favorite_count":389,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663039798613970944,"id_str":"663039798613970944","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","url":"https:\/\/t.co\/cKrKnUTWpd","display_url":"pic.twitter.com\/cKrKnUTWpd","expanded_url":"http:\/\/twitter.com\/WAKEUPPEOPL3\/status\/663039879475892224\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":538,"resize":"fit"},"large":{"w":720,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663039798613970944,"id_str":"663039798613970944","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","url":"https:\/\/t.co\/cKrKnUTWpd","display_url":"pic.twitter.com\/cKrKnUTWpd","expanded_url":"http:\/\/twitter.com\/WAKEUPPEOPL3\/status\/663039879475892224\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":538,"resize":"fit"},"large":{"w":720,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WAKEUPPEOPL3","name":"Open Your Mind","id":286742737,"id_str":"286742737","indices":[3,16]}],"symbols":[],"media":[{"id":663039798613970944,"id_str":"663039798613970944","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","url":"https:\/\/t.co\/cKrKnUTWpd","display_url":"pic.twitter.com\/cKrKnUTWpd","expanded_url":"http:\/\/twitter.com\/WAKEUPPEOPL3\/status\/663039879475892224\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":538,"resize":"fit"},"large":{"w":720,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663039879475892224,"source_status_id_str":"663039879475892224","source_user_id":286742737,"source_user_id_str":"286742737"}]},"extended_entities":{"media":[{"id":663039798613970944,"id_str":"663039798613970944","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOXLxRVEAAm2KM.jpg","url":"https:\/\/t.co\/cKrKnUTWpd","display_url":"pic.twitter.com\/cKrKnUTWpd","expanded_url":"http:\/\/twitter.com\/WAKEUPPEOPL3\/status\/663039879475892224\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":538,"resize":"fit"},"large":{"w":720,"h":646,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663039879475892224,"source_status_id_str":"663039879475892224","source_user_id":286742737,"source_user_id_str":"286742737"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080004665"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762314670080,"id_str":"663727762314670080","text":"RT @fully_fundoo: \u0928\u0947\u0924\u093e\u0913 \u0914\u0930 \u0906\u0936\u093f\u0915\u094b \u092e\u0947\u0902 \u0915\u0941\u091b \u091c\u094d\u092f\u093e\u0926\u093e \u092b\u0930\u094d\u0915 \u0928\u0939\u0940 \u0939\u094b\u0924\u093e \u0939\u0948\n\u091c\u094b \u0906\u0936\u093f\u0915 \u092a\u094d\u0930\u0947\u092e\u093f\u0915\u093e \u0915\u0947 \u0932\u093f\u090f \u091a\u093e\u0901\u0926 \u092d\u0940 \u0924\u094b\u0921\u093c \u0932\u093e\u0928\u0947 \u0915\u0947 \u0935\u093e\u0926\u0947\n\u0915\u0930\u0924\u0947 \u0939\u0948 \u0935\u0939\u0940 \u0936\u093e\u0926\u0940 \u0915\u0947 \u092c\u093e\u0926 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454863989,"id_str":"454863989","name":"dh!\u20b9\u20acnd\u00ae\u2206 $!\u03c0gh","screen_name":"Dhiren7697","location":null,"url":null,"description":"\u092e\u0941\u091d\u0947 \u0938\u0947\u0915\u094d\u092f\u0941\u0932\u0930\u094d\u0938 ,\u0906\u092a\u093f\u092f\u094b \u0914\u0930 \u0915\u093e\u0902\u0917\u093f\u092f\u094b \u0938\u0947 \u0938\u0916\u094d\u0924 \u0928\u092b\u0930\u0924 \u0939\u0948 \u092f\u0947 \u0926\u0947\u0936 \u0914\u0930 \u0927\u0930\u094d\u092e \u0915\u0947 \u0928 \u0939\u0941\u090f \u0924\u094b \u0924\u0941\u092e\u094d\u0939\u093e\u0930\u0947 \u0939\u092e\u093e\u0930\u0947 \u0915\u094d\u092f\u093e \u0939\u094b\u0902\u0917\u0947 \u0964\n||\u091c\u092f \u0936\u094d\u0930\u0940 \u0930\u093e\u092e ||","protected":false,"verified":false,"followers_count":1113,"friends_count":734,"listed_count":26,"favourites_count":9186,"statuses_count":31594,"created_at":"Wed Jan 04 13:32:34 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658655634624147457\/A8MSqZTs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658655634624147457\/A8MSqZTs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454863989\/1434741700","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:11:37 +0000 2015","id":663675304792092672,"id_str":"663675304792092672","text":"\u0928\u0947\u0924\u093e\u0913 \u0914\u0930 \u0906\u0936\u093f\u0915\u094b \u092e\u0947\u0902 \u0915\u0941\u091b \u091c\u094d\u092f\u093e\u0926\u093e \u092b\u0930\u094d\u0915 \u0928\u0939\u0940 \u0939\u094b\u0924\u093e \u0939\u0948\n\u091c\u094b \u0906\u0936\u093f\u0915 \u092a\u094d\u0930\u0947\u092e\u093f\u0915\u093e \u0915\u0947 \u0932\u093f\u090f \u091a\u093e\u0901\u0926 \u092d\u0940 \u0924\u094b\u0921\u093c \u0932\u093e\u0928\u0947 \u0915\u0947 \u0935\u093e\u0926\u0947\n\u0915\u0930\u0924\u0947 \u0939\u0948 \u0935\u0939\u0940 \u0936\u093e\u0926\u0940 \u0915\u0947 \u092c\u093e\u0926 \u0909\u0938\u0947 \u091c\u0941\u092e\u0932\u093e \u092c\u0924\u093e\u0924\u0947 \u0939\u0948","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663674792810119168,"in_reply_to_status_id_str":"663674792810119168","in_reply_to_user_id":254957731,"in_reply_to_user_id_str":"254957731","in_reply_to_screen_name":"fully_fundoo","user":{"id":254957731,"id_str":"254957731","name":"\u3010sanjiv ~ dhawan\u3011","screen_name":"fully_fundoo","location":null,"url":"https:\/\/fullyfundoo.wordpress.com\/","description":"\u0936\u0930\u093e\u092b\u0924 \u0915\u0940 \u0926\u0941\u0928\u093f\u092f\u093e \u0915\u093e \u0905\u092c \u0915\u093f\u0938\u094d\u0938\u093e \u0939\u0940 \u0916\u0924\u094d\u092e-\u0905\u092c \u091c\u0948\u0938\u0940 \u0926\u0941\u0928\u093f\u092f\u093e \u0935\u0948\u0938\u0947 \u0939\u0940 \u0939\u092e\n\nArchive ~ @fully_fundooo","protected":false,"verified":false,"followers_count":29383,"friends_count":642,"listed_count":130,"favourites_count":32203,"statuses_count":108031,"created_at":"Sun Feb 20 10:54:22 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619471011805696000\/aa6xhob5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619471011805696000\/aa6xhob5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254957731\/1436527757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fully_fundoo","name":"\u3010sanjiv ~ dhawan\u3011","id":254957731,"id_str":"254957731","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080004658"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318868480,"id_str":"663727762318868480","text":"dying of boredom\ud83d\ude12 who else???\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163231559,"id_str":"3163231559","name":"maya kadissi","screen_name":"KadissiMaya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":10,"listed_count":0,"favourites_count":2,"statuses_count":2,"created_at":"Mon Apr 13 09:31:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726774493179904\/fX-zCjd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726774493179904\/fX-zCjd__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323050496,"id_str":"663727762323050496","text":"RT @GSM59: \u0e0a\u0e32\u0e19 #EXO \u0e22\u0e2d\u0e25 #CALLMEBABY \u0e41\u0e1f\u0e19 #2015MAMA \u0e40\u0e23\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2539697964,"id_str":"2539697964","name":"\uc560\uae30\uc5d0\ub9ac\uc5ec\ubcf4","screen_name":"101Lily","location":"the world","url":null,"description":"\uc624\uc138\ud6c8","protected":false,"verified":false,"followers_count":103,"friends_count":419,"listed_count":0,"favourites_count":5685,"statuses_count":38057,"created_at":"Sun Jun 01 14:16:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661143885888925696\/_41mWjy__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661143885888925696\/_41mWjy__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2539697964\/1443613960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:54 +0000 2015","id":663726712241262592,"id_str":"663726712241262592","text":"\u0e0a\u0e32\u0e19 #EXO \u0e22\u0e2d\u0e25 #CALLMEBABY \u0e41\u0e1f\u0e19 #2015MAMA \u0e40\u0e23\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166429205,"id_str":"166429205","name":"GSM59","screen_name":"GSM59","location":" '\u3145'","url":"http:\/\/ask.fm\/GSM59","description":"-NO PAIN NO GAIN-","protected":false,"verified":false,"followers_count":2410,"friends_count":328,"listed_count":7,"favourites_count":4768,"statuses_count":158425,"created_at":"Wed Jul 14 03:40:27 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/386020360\/11979156433898.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/386020360\/11979156433898.jpg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660819842707034112\/bnr5GJUg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660819842707034112\/bnr5GJUg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166429205\/1429013692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[4,8]},{"text":"CALLMEBABY","indices":[13,24]},{"text":"2015MAMA","indices":[29,38]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[15,19]},{"text":"CALLMEBABY","indices":[24,35]},{"text":"2015MAMA","indices":[40,49]}],"urls":[],"user_mentions":[{"screen_name":"GSM59","name":"GSM59","id":166429205,"id_str":"166429205","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348228609,"id_str":"663727762348228609","text":"RT @qtkkPPGwgMsHxgM: \u25b6\ufe0eHappiness\u306eHappyTalk\n\u25b6\ufe0e\u590f\u604b&MIYUU\u2461\n\u307e\u3060\u7206\u7b11\u3064\u3065\u3044\u3066\u307e\u3059\ud83d\udc91ww\n\n#\u7206\u7b11\u307e\u3060\u3064\u3065\u304d\u307e\u3059 https:\/\/t.co\/2J9hsBTAH7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074030737,"id_str":"3074030737","name":"\u3084\u307e\u3052\u3093@E-girls(LDH)\u57a2","screen_name":"IHdgYI9HeeXB6cG","location":"E-girls Flower Happiness Dream","url":null,"description":"\u6c17\u306b\u306a\u3063\u305f\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\uff01 \u30d5\u30a9\u30ed\u30d0\u3057\u3066\u304f\u308c\u306a\u3044\u4eba\u306f\u30ea\u30e0\u308a\u307e\u3059\u3002\u3061\u306a\u307f\u306b\u9ad81\u3067E-girls\u3001Flower\u3001Happiness\u3001\u4e09\u4ee3\u76ee J Soul Brothers from EXILE TRIBE\u304c\u597d\u304d\u3067\u3059\uff01\uff01\u95a2\u4fc2\u306a\u3044\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u308b\u4eba\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\uff01","protected":false,"verified":false,"followers_count":2027,"friends_count":1875,"listed_count":4,"favourites_count":1573,"statuses_count":5425,"created_at":"Wed Mar 11 21:43:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640551518593150976\/g9QjGP2Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640551518593150976\/g9QjGP2Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074030737\/1445259064","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:35 +0000 2015","id":663726383655288833,"id_str":"663726383655288833","text":"\u25b6\ufe0eHappiness\u306eHappyTalk\n\u25b6\ufe0e\u590f\u604b&MIYUU\u2461\n\u307e\u3060\u7206\u7b11\u3064\u3065\u3044\u3066\u307e\u3059\ud83d\udc91ww\n\n#\u7206\u7b11\u307e\u3060\u3064\u3065\u304d\u307e\u3059 https:\/\/t.co\/2J9hsBTAH7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281953471,"id_str":"3281953471","name":"\u3057\u304a\u308a\u300b\u3010\u590f\u604b\u3011","screen_name":"qtkkPPGwgMsHxgM","location":null,"url":null,"description":"\u226bHappiness\u304c\u4e00\u756a\u2764\ufe0e \u226b\u3010\u590f\u604b\/\u6953\/\u8429\u82b1\/\u6674\u7f8e\u3011 \u226b\u3010K&K.\u30c4\u30a4\u30f3\u30bf\u30ef\u30fc.\u85e4\u4e95\u59c9\u59b9.\u30df\u30e5\u30fc\u30ba\u3011 \u226bCW4\/29.\u82b1\u6642\u8a087\/10.a-nation8\/22\u53c2\u6226 #\u3042\u304c\u3063\u3066\u3053","protected":false,"verified":false,"followers_count":595,"friends_count":469,"listed_count":0,"favourites_count":339,"statuses_count":442,"created_at":"Fri Jul 17 00:21:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636012672060801024\/CVIYwDac_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636012672060801024\/CVIYwDac_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281953471\/1446269320","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"entities":{"hashtags":[{"text":"\u7206\u7b11\u307e\u3060\u3064\u3065\u304d\u307e\u3059","indices":[53,63]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726298620030976,"id_str":"663726298620030976","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","url":"https:\/\/t.co\/2J9hsBTAH7","display_url":"pic.twitter.com\/2J9hsBTAH7","expanded_url":"http:\/\/twitter.com\/qtkkPPGwgMsHxgM\/status\/663726383655288833\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726298620030976,"id_str":"663726298620030976","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","url":"https:\/\/t.co\/2J9hsBTAH7","display_url":"pic.twitter.com\/2J9hsBTAH7","expanded_url":"http:\/\/twitter.com\/qtkkPPGwgMsHxgM\/status\/663726383655288833\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/480x480\/wY4xN3Q6WWtATUAe.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/480x480\/wY4xN3Q6WWtATUAe.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/pl\/dC4QI8zaI7rA-GEK.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/240x240\/U1WjBe0zya0IduzM.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/pl\/dC4QI8zaI7rA-GEK.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7206\u7b11\u307e\u3060\u3064\u3065\u304d\u307e\u3059","indices":[74,84]}],"urls":[],"user_mentions":[{"screen_name":"qtkkPPGwgMsHxgM","name":"\u3057\u304a\u308a\u300b\u3010\u590f\u604b\u3011","id":3281953471,"id_str":"3281953471","indices":[3,19]}],"symbols":[],"media":[{"id":663726298620030976,"id_str":"663726298620030976","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","url":"https:\/\/t.co\/2J9hsBTAH7","display_url":"pic.twitter.com\/2J9hsBTAH7","expanded_url":"http:\/\/twitter.com\/qtkkPPGwgMsHxgM\/status\/663726383655288833\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726383655288833,"source_status_id_str":"663726383655288833","source_user_id":3281953471,"source_user_id_str":"3281953471"}]},"extended_entities":{"media":[{"id":663726298620030976,"id_str":"663726298620030976","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726298620030976\/pu\/img\/PhVWjBrInBNev2pz.jpg","url":"https:\/\/t.co\/2J9hsBTAH7","display_url":"pic.twitter.com\/2J9hsBTAH7","expanded_url":"http:\/\/twitter.com\/qtkkPPGwgMsHxgM\/status\/663726383655288833\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726383655288833,"source_status_id_str":"663726383655288833","source_user_id":3281953471,"source_user_id_str":"3281953471","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/480x480\/wY4xN3Q6WWtATUAe.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/480x480\/wY4xN3Q6WWtATUAe.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/pl\/dC4QI8zaI7rA-GEK.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/vid\/240x240\/U1WjBe0zya0IduzM.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726298620030976\/pu\/pl\/dC4QI8zaI7rA-GEK.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310602753,"id_str":"663727762310602753","text":"Coordinator - Banquet Finance (FT) - Las Vegas, NV, 89101, USA #jobs #Las Vegas pls RT: Process and Close Banquet\u2026 https:\/\/t.co\/2599AipwDh","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78791213,"id_str":"78791213","name":"Climber.com ","screen_name":"Climber_AF","location":null,"url":"http:\/\/www.climber.com","description":"Freshest Accounting and Finances jobs on the net!","protected":false,"verified":false,"followers_count":421,"friends_count":5,"listed_count":186,"favourites_count":0,"statuses_count":200303,"created_at":"Thu Oct 01 03:31:59 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446217045\/climber_logo_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446217045\/climber_logo_normal.gif","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"jobs","indices":[63,68]},{"text":"Las","indices":[69,73]}],"urls":[{"url":"https:\/\/t.co\/2599AipwDh","expanded_url":"http:\/\/dlvr.it\/ChfZY4","display_url":"dlvr.it\/ChfZY4","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339930112,"id_str":"663727762339930112","text":"https:\/\/t.co\/zCLGI8YDit https:\/\/t.co\/iBgXjsJlcT","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":835826862,"id_str":"835826862","name":"Emma Jane Brown","screen_name":"dameemmajane","location":"Warwickshire","url":"http:\/\/www.ejbevents.co.uk","description":"Former international show-jumper, TV and Radio Commentator, Business Woman and Charity Ambassador","protected":false,"verified":false,"followers_count":2265,"friends_count":1048,"listed_count":9,"favourites_count":812,"statuses_count":2122,"created_at":"Thu Sep 20 15:46:38 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177705196\/_nLiBrqg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177705196\/_nLiBrqg.jpeg","profile_background_tile":false,"profile_link_color":"D12832","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420310356494282752\/7lzFRlmB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420310356494282752\/7lzFRlmB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/835826862\/1445517859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zCLGI8YDit","expanded_url":"http:\/\/www.womensportreport.com\/dame-emma-jane-brown\/wn\/19450","display_url":"womensportreport.com\/dame-emma-jane\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/iBgXjsJlcT","expanded_url":"http:\/\/fb.me\/3kz52G9b7","display_url":"fb.me\/3kz52G9b7","indices":[24,47]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323079168,"id_str":"663727762323079168","text":"@x_manae @tp_sm11 \n\u8912\u3081\u3066\u304f\u308c\u306f\u308b\u3093\u3044\u3044\u3084\u3093\uff01\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727087115571200,"in_reply_to_status_id_str":"663727087115571200","in_reply_to_user_id":3312904477,"in_reply_to_user_id_str":"3312904477","in_reply_to_screen_name":"x_manae","user":{"id":3248227327,"id_str":"3248227327","name":"\u7af9\u5185 \u51ea","screen_name":"n09084","location":null,"url":null,"description":"\u4ea4\u969b 2015.07.01\/\u5165\u7c4d 2015.09.01\/\u7af9\u5185\u98af\u6c70\u306e\u5ac1","protected":false,"verified":false,"followers_count":102,"friends_count":108,"listed_count":0,"favourites_count":188,"statuses_count":1146,"created_at":"Wed Jun 17 21:59:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662457931254730752\/WW8Zv30X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662457931254730752\/WW8Zv30X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248227327\/1446777253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"x_manae","name":"\u611b\u6c38","id":3312904477,"id_str":"3312904477","indices":[0,8]},{"screen_name":"tp_sm11","name":"t'","id":2791602404,"id_str":"2791602404","indices":[9,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339835904,"id_str":"663727762339835904","text":"#\u0441\u0435\u0439\u0447\u0430\u0441 \u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0435\u043d\u0438\u0435: \u041d\u0430 \u041f\u0430\u0432\u043b\u0435\u043d\u0441\u043a\u043e\u0433\u043e \u0437\u0430\u0432\u0435\u043b\u0438 \u0443\u0433\u043e\u043b\u043e\u0432\u043d\u043e\u0435 \u0434\u0435\u043b\u043e \u0437\u0430 \u0430\u043a\u0446\u0438\u044e \u0443 \u0437\u0434\u0430\u043d\u0438\u044f \u0424\u0421\u0411 \u041e\u043b\u044c\u0433\u0430 \u0427\u0430\u0432\u0434\u0430\u0440, \u0430\u0434\u0432\u043e\u043a\u0430\u0442\u2026 https:\/\/t.co\/nGeOwp5KIF #\u043f\u0440\u0430\u0432\u0434\u0438\u0432\u043e","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2160519981,"id_str":"2160519981","name":"\u0410\u0440\u0442\u0435\u043c \u0412\u0430\u0432\u0438\u043b\u043e\u0432","screen_name":"nwrickDor","location":"\u0427\u0438\u0442\u0430","url":null,"description":"\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0431\u0438\u0437\u043d\u0435\u0441\u0430 \u0434\u043b\u044f \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0435\u043d\u0438\u044f \u0441\u0432\u043e\u0438\u0445 \u043f\u043e\u0442\u0440\u0435\u0431\u043d\u043e\u0441\u0442\u0435\u0439 \u043c\u0435\u043b\u043a\u043e \u0438 \u0441\u043a\u0443\u0447\u043d\u043e.","protected":false,"verified":false,"followers_count":525,"friends_count":1002,"listed_count":13,"favourites_count":5,"statuses_count":43843,"created_at":"Wed Oct 30 16:39:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107108415\/1772d53dc870a10973585e01fbed3408.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107108415\/1772d53dc870a10973585e01fbed3408.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000680859808\/c69402dd40efd7c6828c9579f40976dc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000680859808\/c69402dd40efd7c6828c9579f40976dc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2160519981\/1386792353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0441\u0435\u0439\u0447\u0430\u0441","indices":[0,7]},{"text":"\u043f\u0440\u0430\u0432\u0434\u0438\u0432\u043e","indices":[127,136]}],"urls":[{"url":"https:\/\/t.co\/nGeOwp5KIF","expanded_url":"http:\/\/dlvr.it\/ChfXQM","display_url":"dlvr.it\/ChfXQM","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310467584,"id_str":"663727762310467584","text":"Val Kilmer se niega a tratarse del c\u00e1ncer que padece https:\/\/t.co\/fp2aLjs1Hp","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":429217911,"id_str":"429217911","name":"#M\u03c5\u00f1\u03b5coD\u03b5V\u03b9tr\u03b9\u03b7\u03b1\u2122","screen_name":"DimeHilario","location":"F\u044fust\u044f\u03b1do C\u03c3\u03b7 @PoetaCalle","url":null,"description":"\u2661- Confieso Como Sopita Doy Gusto | \u2192\u25cb | Esp\u03b5\u044fa\u03b7d\u03c3 E\u2113 A\u043c\u03c3\u044f D\u03b5 M\u03b9 V\u03b9da |\u221e[ Mi Bff @Oye_Privonah \u043c\u03b5\u0438\u0442\u03b5 Ab\u03b9\u03b5\u044f\u0442\u03b1 Corazon Cerrado [ \u2192 #WS 849-752-7989]","protected":false,"verified":false,"followers_count":3686,"friends_count":2586,"listed_count":73,"favourites_count":91,"statuses_count":1361857,"created_at":"Mon Dec 05 18:12:44 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4FFFDC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446278744722776064\/znMCCR8Z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446278744722776064\/znMCCR8Z.jpeg","profile_background_tile":true,"profile_link_color":"1CCEE6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/443461680370962433\/ve-uUbkX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/443461680370962433\/ve-uUbkX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/429217911\/1393513315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fp2aLjs1Hp","expanded_url":"http:\/\/dlvr.it\/ChfdxL","display_url":"dlvr.it\/ChfdxL","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323083264,"id_str":"663727762323083264","text":"Excuse my typos for the most part it should be \"than\" not \"then\" , but I'm aware","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25032148,"id_str":"25032148","name":"Jewish JuNu","screen_name":"Mentii","location":null,"url":null,"description":"ig. @semiiauto #DALLASCOWBOYS \u272d","protected":false,"verified":false,"followers_count":1575,"friends_count":541,"listed_count":34,"favourites_count":809,"statuses_count":56511,"created_at":"Wed Mar 18 05:12:15 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660986967648313344\/0__6jBqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660986967648313344\/0__6jBqj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25032148\/1446553823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323062784,"id_str":"663727762323062784","text":"[\u751f\u304d\u3066\u308b\u300d\u3063\u3066\u3044\u3046\u30c4\u30a4\u30fc\u30c8\u3092\u30aa\u30fc\u30c8\u30c4\u30a4\u30fc\u30c8\u306b\u8a2d\u5b9a\u3057\u3066\u3082\u3001\u306a\u3093\u306e\u610f\u5473\u3082\u306a\u3044\u3068\u3044\u3046\u3053\u3068\u306f\u308f\u304b\u3063\u3066\u3044\u308b\u3093\u3060\u3002\u3067\u3082\u6b62\u3081\u3089\u308c\u306a\u3044\u6b62\u307e\u3089\u306a\u3044\u6b62\u3081\u308b\u6c17\u3082\uff4e\uff08\uff52\uff59","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386904407,"id_str":"2386904407","name":"\u6687\u4eba(\u3072\u307e\u3093\u3068)@\u7a7a\u6c17\u7cfb\u5b9f\u6cc1\u8005\u517c\u6b4c\u21c4\u30bf\u30c1","screen_name":"amusement_daily","location":"\u8d64\u3061\u3083\u3093\u57fa\u6e96\u3067\u3044\u304f\u3068\u5929\u624d\u2190\u4eca\u30b3\u30b3","url":"http:\/\/www.youtube.com\/channel\/UC3O7DktXTTpCgUa22_200xQ","description":"\u4e00\u4eba\u3067\u306c\u304f\u306c\u304f\u6b4c\u3044\u306a\u304c\u3089\u3001\u5b9f\u6cc1\u3092\u3084\u3063\u3066\u3044\u307e\u3059\u3002\u81ea\u7531\u306b\u5a2f\u697d\u3092\u5168\u529b\u3067\u6e80\u55ab\u3057\u305f\u3044\u3001\u305d\u3093\u306a\u81ea\u7531\u4eba\u3067\u3059\u3002 \u30cb\u30b3\u30cb\u30b3\u2192http:\/\/www.nicovideo.jp\/user\/40061978\/mylist \u30b2\u30fc\u30e0\u3084\u30c1\u30e3\u30c3\u30c8\u306a\u3069\u306e\u304a\u8a98\u3044\u3001\u6539\u5584\u70b9\u7b49\u3092\u304f\u3060\u3055\u3063\u305f\u3089\u5e78\u3044\u3067\u3059\u3002\u4ea4\u6d41\u3092\u6c42\u3080\u2192tachiandmaki@gmail.com","protected":false,"verified":false,"followers_count":891,"friends_count":828,"listed_count":9,"favourites_count":586,"statuses_count":9653,"created_at":"Thu Mar 13 12:28:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601798346638958593\/j0rrsYiX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601798346638958593\/j0rrsYiX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386904407\/1432314680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762314629120,"id_str":"663727762314629120","text":"RT @Gurmeetramrahim: #MSG2onTheTopInRajasthan G\ud83c\udf3a\ud83c\udf3ad M\ud83d\ude18rning.\u0935\u093e\u0939!\u0935\u093e\u0939! \u0930\u093e\u091c\u0938\u094d\u0925\u093e\u0928 ! 777 shows ! \u092e\u093e\u0932\u093f\u0915 \u0906\u092a \u0938\u092c\u0915\u094b \u092c\u0939\u0941\u0924-\u0968\u0916\u0941\u0936\u093f\u092f\u093e \u0926\u0947\u0964 https:\/\/t.co\/GJtI\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244796875,"id_str":"3244796875","name":"Sunil Insan","screen_name":"sunilinsan631","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":1,"listed_count":0,"favourites_count":854,"statuses_count":874,"created_at":"Sun Jun 14 03:25:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631124582280212484\/ulnJcwwL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631124582280212484\/ulnJcwwL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244796875\/1439306537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:15:25 +0000 2015","id":663570564548718592,"id_str":"663570564548718592","text":"#MSG2onTheTopInRajasthan G\ud83c\udf3a\ud83c\udf3ad M\ud83d\ude18rning.\u0935\u093e\u0939!\u0935\u093e\u0939! \u0930\u093e\u091c\u0938\u094d\u0925\u093e\u0928 ! 777 shows ! \u092e\u093e\u0932\u093f\u0915 \u0906\u092a \u0938\u092c\u0915\u094b \u092c\u0939\u0941\u0924-\u0968\u0916\u0941\u0936\u093f\u092f\u093e \u0926\u0947\u0964 https:\/\/t.co\/GJtIEUpe9o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2852359916,"id_str":"2852359916","name":"GURMEET RAM RAHIM","screen_name":"Gurmeetramrahim","location":"sirsa(haryana) India","url":"http:\/\/www.gurmeetramrahim.in","description":"Spiritual Saint\/philanthropist\/versatile singer\/allrounder sportsperson\/film director\/art director\/music director\/script writer\/lyricist\/autobiographer\/DOP\/","protected":false,"verified":true,"followers_count":1399187,"friends_count":0,"listed_count":757,"favourites_count":7,"statuses_count":935,"created_at":"Sat Oct 11 20:50:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2852359916\/1443248390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6039,"favorite_count":6124,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663569902523912193,"id_str":"663569902523912193","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","url":"https:\/\/t.co\/GJtIEUpe9o","display_url":"pic.twitter.com\/GJtIEUpe9o","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663570564548718592\/video\/1","type":"photo","sizes":{"large":{"w":854,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663569902523912193,"id_str":"663569902523912193","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","url":"https:\/\/t.co\/GJtIEUpe9o","display_url":"pic.twitter.com\/GJtIEUpe9o","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663570564548718592\/video\/1","type":"video","sizes":{"large":{"w":854,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"video_info":{"aspect_ratio":[427,240],"duration_millis":29680,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/320x180\/4kPEzcAQGy08l-CS.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/pl\/z9_Pff3oDa8YoG6I.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/640x360\/DMmYbmtGOslO3j33.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/pl\/z9_Pff3oDa8YoG6I.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/640x360\/DMmYbmtGOslO3j33.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[21,45]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[3,19]}],"symbols":[],"media":[{"id":663569902523912193,"id_str":"663569902523912193","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","url":"https:\/\/t.co\/GJtIEUpe9o","display_url":"pic.twitter.com\/GJtIEUpe9o","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663570564548718592\/video\/1","type":"photo","sizes":{"large":{"w":854,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663570564548718592,"source_status_id_str":"663570564548718592","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"extended_entities":{"media":[{"id":663569902523912193,"id_str":"663569902523912193","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663569902523912193\/pu\/img\/nevyXF6auGDBPc8t.jpg","url":"https:\/\/t.co\/GJtIEUpe9o","display_url":"pic.twitter.com\/GJtIEUpe9o","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663570564548718592\/video\/1","type":"video","sizes":{"large":{"w":854,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663570564548718592,"source_status_id_str":"663570564548718592","source_user_id":2852359916,"source_user_id_str":"2852359916","video_info":{"aspect_ratio":[427,240],"duration_millis":29680,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/320x180\/4kPEzcAQGy08l-CS.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/pl\/z9_Pff3oDa8YoG6I.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/640x360\/DMmYbmtGOslO3j33.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/pl\/z9_Pff3oDa8YoG6I.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663569902523912193\/pu\/vid\/640x360\/DMmYbmtGOslO3j33.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080004658"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310619136,"id_str":"663727762310619136","text":"https:\/\/t.co\/uDDxMNfqoO\nI seriously gotta stop finding these..!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3687634109,"id_str":"3687634109","name":"Xanaya \u534c","screen_name":"Stfu_ImPuNkRoCk","location":null,"url":null,"description":"I love this band, they do weird shit sometimes. xD @Luke5SOS @Calum5SOS @Ashton5SOS @Michael5SOS","protected":false,"verified":false,"followers_count":78,"friends_count":106,"listed_count":0,"favourites_count":956,"statuses_count":441,"created_at":"Thu Sep 17 16:56:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661243535782494208\/EchLla9U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661243535782494208\/EchLla9U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3687634109\/1442701130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663478989617545216,"id_str":"663478989617545216","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUmoDQWwAA-6_e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUmoDQWwAA-6_e.jpg","url":"https:\/\/t.co\/uDDxMNfqoO","display_url":"pic.twitter.com\/uDDxMNfqoO","expanded_url":"http:\/\/twitter.com\/5SOSNZUpdater\/status\/663479000824725504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"large":{"w":639,"h":638,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663479000824725504,"source_status_id_str":"663479000824725504","source_user_id":1091109985,"source_user_id_str":"1091109985"}]},"extended_entities":{"media":[{"id":663478989617545216,"id_str":"663478989617545216","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUmoDQWwAA-6_e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUmoDQWwAA-6_e.jpg","url":"https:\/\/t.co\/uDDxMNfqoO","display_url":"pic.twitter.com\/uDDxMNfqoO","expanded_url":"http:\/\/twitter.com\/5SOSNZUpdater\/status\/663479000824725504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"large":{"w":639,"h":638,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663479000824725504,"source_status_id_str":"663479000824725504","source_user_id":1091109985,"source_user_id_str":"1091109985"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335748097,"id_str":"663727762335748097","text":"RT @panancavg: @ChuoTorrealba @Marialet1 @la_patilla Sin servicio el\u00e9ctrico en el sector valle lindo de valle guanape mcpio carvajal desde \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794723784,"id_str":"794723784","name":"Mariyolanda C.","screen_name":"liz_fernan","location":"Caracas","url":null,"description":"El mejor gobierno es el que deja a la gente m\u00e1s tiempo en paz.El gobierno no se ha hecho para la comodidad y el placer de los que gobiernan","protected":false,"verified":false,"followers_count":50,"friends_count":194,"listed_count":1,"favourites_count":97,"statuses_count":3226,"created_at":"Fri Aug 31 21:38:50 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587092468484702208\/puURrF3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587092468484702208\/puURrF3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794723784\/1429566029","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:19 +0000 2015","id":663721784986894336,"id_str":"663721784986894336","text":"@ChuoTorrealba @Marialet1 @la_patilla Sin servicio el\u00e9ctrico en el sector valle lindo de valle guanape mcpio carvajal desde las 2:00am","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":496493810,"in_reply_to_user_id_str":"496493810","in_reply_to_screen_name":"ChuoTorrealba","user":{"id":312634442,"id_str":"312634442","name":"Maritza Gervazzi G","screen_name":"panancavg","location":"Venezuela","url":null,"description":"Lcda en Adm e inform\u00e1tica","protected":false,"verified":false,"followers_count":61,"friends_count":85,"listed_count":1,"favourites_count":0,"statuses_count":1142,"created_at":"Tue Jun 07 12:44:10 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652620857563463680\/82__Wwjm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652620857563463680\/82__Wwjm_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChuoTorrealba","name":"Jesus Chuo Torrealba","id":496493810,"id_str":"496493810","indices":[0,14]},{"screen_name":"Marialet1","name":"Mariale Trujillo","id":306808833,"id_str":"306808833","indices":[15,25]},{"screen_name":"la_patilla","name":"La Patilla","id":124172948,"id_str":"124172948","indices":[26,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"panancavg","name":"Maritza Gervazzi G","id":312634442,"id_str":"312634442","indices":[3,13]},{"screen_name":"ChuoTorrealba","name":"Jesus Chuo Torrealba","id":496493810,"id_str":"496493810","indices":[15,29]},{"screen_name":"Marialet1","name":"Mariale Trujillo","id":306808833,"id_str":"306808833","indices":[30,40]},{"screen_name":"la_patilla","name":"La Patilla","id":124172948,"id_str":"124172948","indices":[41,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339860484,"id_str":"663727762339860484","text":"@rannkaku \u6d77\u4e0a\u8b77\u885b\u3092\u9632\u7a7a\u306b\u56de\u3059\u304f\u3089\u3044\u306b\u306f\u30dc\u30fc\u30ad\u8db3\u308a\u3066\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727597122011138,"in_reply_to_status_id_str":"663727597122011138","in_reply_to_user_id":333930919,"in_reply_to_user_id_str":"333930919","in_reply_to_screen_name":"rannkaku","user":{"id":574620856,"id_str":"574620856","name":"\u4e8c\u6b21\u5352\u696d\u8005shikiseki","screen_name":"shikiseki","location":"\u4e45\u559c\u7d4c\u55b6\u5927\u5b66\uff08\uff09","url":null,"description":"\u307f\u306a\u3055\u3093\uff01\u3044\u3088\u3044\u3088\u5352\u696d\u3067\u3059\uff01 \u5358\u4f4d\u3092\u5b88\u308b\u6559\u6388\u9023\u5408\u306f\u5927\u30d4\u30f3\u30c1\uff01 \u3057\u304b\u3082\u3001\u5927\u5b664\u5e74\u751f\u5185\u5b9a\u6301\u3061\u5f62\u614b\u3078\u59ff\u3092\u5909\u3048\u305fshikiseki\u304c\u3001\u5358\u4f4d\u306b\u8972\u3044\u639b\u304b\u308b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u304b\uff01 \u679c\u305f\u3057\u3066\u3001\u5168\u5358\u4f4d\u306e\u904b\u547d\u3084\u3044\u304b\u306b\uff01\uff1f \u6a5f\u52d5\u6b66\u95d8\u4f1d\uff27\u30c0\u30a4\u30ac\u30af\u6700\u7d42\u56de\uff01\u300eG\u30ac\u30f3\u30c0\u30e0\u5927\u52dd\u5229\uff01 \u5e0c\u671b\u306e\u672a\u6765\u3078\u30ec\u30c7\u30a3\u30fb\u30b4\u30fc\u30c3\uff01\uff01\u300f","protected":false,"verified":false,"followers_count":175,"friends_count":206,"listed_count":10,"favourites_count":1008,"statuses_count":34984,"created_at":"Tue May 08 16:48:33 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481225139397197824\/8tsTH4fA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481225139397197824\/8tsTH4fA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574620856\/1348193808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rannkaku","name":"\u5375\u306e\u6bbb(\u3089\u3093\u304b\u304f)","id":333930919,"id_str":"333930919","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335657984,"id_str":"663727762335657984","text":"#Kobe #Shoes NEW #Nike KOBE IX PREMIUM SHOES KOBE 9 PREMIUM BLUE\/SILVER SIZE 10.5 https:\/\/t.co\/w5tD4RPA6V #Best #Share","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":501661600,"id_str":"501661600","name":"L.A. Lakers Fans","screen_name":"Lakers_Fans1","location":null,"url":null,"description":"Follow us for the latest news online about the #NBA Los Angeles #Lakers. #AutoFallowBack","protected":false,"verified":false,"followers_count":4825,"friends_count":4384,"listed_count":107,"favourites_count":0,"statuses_count":277134,"created_at":"Fri Feb 24 10:48:16 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433340169\/222.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433340169\/222.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1850184555\/111_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1850184555\/111_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Kobe","indices":[0,5]},{"text":"Shoes","indices":[6,12]},{"text":"Nike","indices":[17,22]},{"text":"Best","indices":[106,111]},{"text":"Share","indices":[112,118]}],"urls":[{"url":"https:\/\/t.co\/w5tD4RPA6V","expanded_url":"http:\/\/dlvr.it\/ChfXfy","display_url":"dlvr.it\/ChfXfy","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323058688,"id_str":"663727762323058688","text":"@mbihpnpc \n\u304a\u3081\u3063\u3068\u3067\u3059\u3001\u304a\u3081\u3063\u3068\u3067\u3059\u301c\u263a\ufe0f\u263a\ufe0f\n\u307e\u305f\u3001\u3088\u308d\u3057\u304f\u3067\u3059\u301c\u263a\ufe0f\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1261870482,"in_reply_to_user_id_str":"1261870482","in_reply_to_screen_name":"mbihpnpc","user":{"id":1351783393,"id_str":"1351783393","name":"\u3055\u3044\u3086\u30fc\u304d","screen_name":"31UKII","location":"\u4e09\u91cd\u2192\u4eac\u90fd","url":null,"description":"\u6851\u540d\/\u540c\u5fd7\u793e\u96fb\u5b50\u5de5\/ \u30d0\u30b9\u30b1\/\u9678\u4e0a\/knit!\/ESA\/Hands up!\/\u9f4b\u85e4\u4f51\u6a39\u3067\u3059\u300212\u5e74\u9678\u4e0a\u3057\u3066\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":635,"friends_count":561,"listed_count":0,"favourites_count":1206,"statuses_count":3244,"created_at":"Sun Apr 14 12:38:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649432379711320064\/PiDsFUke_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649432379711320064\/PiDsFUke_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1351783393\/1442761763","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1bfd0d0889c81cdf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1bfd0d0889c81cdf.json","place_type":"city","name":"Kyotanabe-shi","full_name":"Kyotanabe-shi, Kyoto","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[135.718583,34.747184],[135.718583,34.851164],[135.806370,34.851164],[135.806370,34.747184]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mbihpnpc","name":"\u3084\u3059\u304b\u308f","id":1261870482,"id_str":"1261870482","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310467585,"id_str":"663727762310467585","text":"1D&5SOS\u306f\u4eca\u65e5\u3082\u6700\u9ad8","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386682286,"id_str":"2386682286","name":"\u2731 miikichi \u2731","screen_name":"mkch_ZaynAsh","location":null,"url":"https:\/\/instagram.com\/mkch_zaynash\/","description":"[ \u27a1\ufe0e ] [ \u534c ] @zaynmalik @ashton5SOS \u2765 \u2765 \u2765\u30a2\u30a4\u30ea\u3061\u3083\u3093\u3068\u30c1\u30f3\u30b4\u30ea\u3061\u3083\u3093 !? \u53d7\u9a13\u6226\u4e89","protected":false,"verified":false,"followers_count":1582,"friends_count":553,"listed_count":25,"favourites_count":5464,"statuses_count":24749,"created_at":"Thu Mar 13 09:40:05 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637953494750654464\/17N3nTQg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637953494750654464\/17N3nTQg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386682286\/1444986199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762331406336,"id_str":"663727762331406336","text":"\u0631\u064e\u0636\u064a\u0640\u062a\u064f \u0628\u0650\u0627\u0644\u0644\u0647\u0650 \u0631\u064e\u0628\u064e\u0651\u0640\u0627\u064b \u0648\u064e\u0628\u0650\u0627\u0644\u0625\u0633\u0652\u0644\u0627\u0645\u0650 \u062f\u064a\u0640\u0646\u0627\u064b \u0648\u064e\u0628\u0650\u0645\u064f\u062d\u064e\u0640\u0645\u064e\u0651\u062f\u064d \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u0646\u064e\u0628\u0650\u064a\u0651\u0640\u0627\u064b . (\u062b\u0644\u0627\u062b\u0627\u064b) #\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621 #hadith","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599607087,"id_str":"599607087","name":"ahmedelfouly","screen_name":"a7med_Fouly","location":"Dubai","url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":67,"listed_count":0,"favourites_count":39,"statuses_count":3872,"created_at":"Mon Jun 04 20:10:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557267393731252224\/Uoz7SISq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557267393731252224\/Uoz7SISq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599607087\/1421697873","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621","indices":[104,125]},{"text":"hadith","indices":[126,133]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080004662"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323058689,"id_str":"663727762323058689","text":"@taa_m0516 \n\u7d76\u5bfe\u30e4\u30c0\u30fcw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727441962143744,"in_reply_to_status_id_str":"663727441962143744","in_reply_to_user_id":3314750238,"in_reply_to_user_id_str":"3314750238","in_reply_to_screen_name":"taa_m0516","user":{"id":4111273694,"id_str":"4111273694","name":"\u3082\u3082\u307f\u3061\u3085\uff0817\uff09","screen_name":"KI__Oo917M__916","location":"@tsunatsunagu\u2190\u5927\u597d\u304d\u306a\u7537\u88c5\u3055\u3093","url":"http:\/\/twpf.jp\/KI__Oo917M__916","description":"#\u5317\u5c71\u5b8f\u5149\u306b\u5c0f6\u304b\u3089\u30c7\u30ec\u3066\u308b\u9ad82\u306e\u5973\u3067\u3059# \u304a\u96a3\u306f\u6a2a\u5c3e\u306e\u5b50\u300a@tntn_watakun\u300b\u9577\u59bb\u639b\u3051\u6301\u3061 \u300a@kit0810_non0423\u300b#\u3082\u3082\u306f\u308b\u59c9\u59b9","protected":false,"verified":false,"followers_count":206,"friends_count":196,"listed_count":4,"favourites_count":18,"statuses_count":1613,"created_at":"Tue Nov 03 09:09:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350291706703873\/He0JWunM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350291706703873\/He0JWunM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4111273694\/1446542237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taa_m0516","name":"\u262a \u307b \u30c3 \u307a (\u5fe0)","id":3314750238,"id_str":"3314750238","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318864385,"id_str":"663727762318864385","text":"\u0420\u043e\u0442\u0430\u043d\u044c \u043d\u0435 \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u0423\u043a\u0440\u0430\u0438\u043d\u0435 \u0432 \u043f\u0435\u0440\u0432\u043e\u043c \u043c\u0430\u0442\u0447\u0435 \u0441\u043e \u0421\u043b\u043e\u0432\u0435\u043d\u0438\u0435\u0439","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":919066502,"id_str":"919066502","name":"\u041a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u0438\u043d \u041c\u043e\u0433\u0438\u043b\u0430\u0442","screen_name":"paloxaby","location":"\u0411\u0440\u044f\u043d\u0441\u043a","url":null,"description":"\u0423\u0441\u043f\u0435\u0445 \u2014 \u044d\u0442\u043e \u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435 \u043e\u0442 \u043d\u0435\u0443\u0434\u0430\u0447\u0438 \u043a \u043d\u0435\u0443\u0434\u0430\u0447\u0438 \u0431\u0435\u0437 \u043f\u043e\u0442\u0435\u0440\u0438 \u044d\u043d\u0442\u0443\u0437\u0438\u0430\u0437\u043c\u0430. #AutoFollowBack \u0412\u0437\u0430\u0438\u043c\u043d\u044b\u0439 \u0444\u043e\u043b\u043b\u043e\u0432\u0438\u043d\u0433.","protected":false,"verified":false,"followers_count":1401,"friends_count":819,"listed_count":0,"favourites_count":0,"statuses_count":6382,"created_at":"Thu Nov 01 13:54:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/718871594\/1de2b3341e7a82c9cea8917efb85dcba.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/718871594\/1de2b3341e7a82c9cea8917efb85dcba.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2883674937\/4d28d037930815b80c95945347e52498_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2883674937\/4d28d037930815b80c95945347e52498_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919066502\/1353633282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335784960,"id_str":"663727762335784960","text":"@swtthing3 @heatherzilla8 Sunny #MotivationalMonday Wishes","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663450005856997376,"in_reply_to_status_id_str":"663450005856997376","in_reply_to_user_id":114970857,"in_reply_to_user_id_str":"114970857","in_reply_to_screen_name":"swtthing3","user":{"id":568662145,"id_str":"568662145","name":"Jane","screen_name":"janeeric03","location":null,"url":null,"description":"Happily married SAHM. Social Media brings us together, to laugh, cry & get educated. The connections made, simply priceless!","protected":false,"verified":false,"followers_count":1514,"friends_count":2005,"listed_count":45,"favourites_count":22538,"statuses_count":101305,"created_at":"Wed May 02 00:30:44 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662774121361600512\/jwAu0PiZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662774121361600512\/jwAu0PiZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/568662145\/1360458598","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MotivationalMonday","indices":[33,52]}],"urls":[],"user_mentions":[{"screen_name":"swtthing3","name":"Mary Cummings","id":114970857,"id_str":"114970857","indices":[0,10]},{"screen_name":"heatherzilla8","name":"Heather ","id":81512823,"id_str":"81512823","indices":[12,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762331439104,"id_str":"663727762331439104","text":"@ULove0824 \u3042\u3089\ud83d\ude39\n\u304b\u308c\u3093\u3082\u3064\u3093\u3064\u3093\u3057\u305f\u3044\u307b\u3063\u307a\u3060\u3088\u3093\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677909316403201,"in_reply_to_status_id_str":"663677909316403201","in_reply_to_user_id":2299500883,"in_reply_to_user_id_str":"2299500883","in_reply_to_screen_name":"ULove0824","user":{"id":2277403950,"id_str":"2277403950","name":"\u5409\u91ce\u91cc\u83dc","screen_name":"rn_bigeast_L","location":"\u91dc\u5229\u8c371-7\u306b\u3044\u307e\u3059\u263a\ufe0e","url":"http:\/\/Instagram.com\/rinah_ysn","description":"\u3055\u3086\u308a\u2192\u672c\u7267\u2192\u5927\u9ce5\u2192\u91dc\u5229\u8c37 \u205199line","protected":false,"verified":false,"followers_count":497,"friends_count":365,"listed_count":0,"favourites_count":2220,"statuses_count":3388,"created_at":"Sun Jan 05 09:52:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646317474749636608\/DLjA1SkQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646317474749636608\/DLjA1SkQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2277403950\/1446520064","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ULove0824","name":"( \u306b \u306b \u30d9 \u30eb )","id":2299500883,"id_str":"2299500883","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004662"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762327207936,"id_str":"663727762327207936","text":"RT @crzbro: \uc0ac\uc2e4 \uc5bc\ub9c8 \uc804\uc5d0 \ubc14\ub85c \uc55e \ube4c\ub77c\uc5d0\uc11c \uac00\uc815\ud3ed\ub825 \uc0ac\uac74\uc774 \ud130\uc84c\uc5c8\uc74c. \uc9d1\uc5d0 \uc788\ub294\ub370 \uac11\uc790\uae30 \uc5ec\uc790\uc758 \ube44\uba85\uacfc \ud568\uaed8 \ub3c4\uc640\ub2ec\ub77c\ub294 \uc18c\ub9ac\uac00 \ub4e4\ub9bc. \ucc98\uc74c\uc5d0\ub294 \uc798\ubabb \ub4e4\uc5c8\ub098 \ud588\ub294\ub370, \ub450 \ubc88\uc9f8\ub85c \ub4e3\uc790\ub9c8\uc790 \uace7\ubc14\ub85c \ub6f0\uccd0\ub098\uac10. \uadfc\ub370 \uac70\uc758 \ube44\uc2b7\ud55c \ud0c0\uc774\ubc0d\uc5d0 \ub3d9\ub124 \ub0a8\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350340173,"id_str":"350340173","name":"\ud478\ub978\ub9e4","screen_name":"BlueFalcon47","location":"\ud5ec\ud504\ubbf8 \ud5ec\ud504\ubbf8 \uc544\uc784\uc628\ube45\ud30c\uc774\uc5b4","url":"http:\/\/bluefalcon.egloos.com","description":"\u201cNo. It's stupidity. Never underestimate the power of stupidity.\u201d - W. Patrick Lang","protected":false,"verified":false,"followers_count":682,"friends_count":224,"listed_count":19,"favourites_count":3767,"statuses_count":26260,"created_at":"Sun Aug 07 16:22:05 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2524674091\/xqm83uasmtr5s3vnitwf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2524674091\/xqm83uasmtr5s3vnitwf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350340173\/1402068720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:14 +0000 2015","id":663715221614145536,"id_str":"663715221614145536","text":"\uc0ac\uc2e4 \uc5bc\ub9c8 \uc804\uc5d0 \ubc14\ub85c \uc55e \ube4c\ub77c\uc5d0\uc11c \uac00\uc815\ud3ed\ub825 \uc0ac\uac74\uc774 \ud130\uc84c\uc5c8\uc74c. \uc9d1\uc5d0 \uc788\ub294\ub370 \uac11\uc790\uae30 \uc5ec\uc790\uc758 \ube44\uba85\uacfc \ud568\uaed8 \ub3c4\uc640\ub2ec\ub77c\ub294 \uc18c\ub9ac\uac00 \ub4e4\ub9bc. \ucc98\uc74c\uc5d0\ub294 \uc798\ubabb \ub4e4\uc5c8\ub098 \ud588\ub294\ub370, \ub450 \ubc88\uc9f8\ub85c \ub4e3\uc790\ub9c8\uc790 \uace7\ubc14\ub85c \ub6f0\uccd0\ub098\uac10. \uadfc\ub370 \uac70\uc758 \ube44\uc2b7\ud55c \ud0c0\uc774\ubc0d\uc5d0 \ub3d9\ub124 \ub0a8\uc790\ub4e4 12\uba85\uc774 \ub6f0\uccd0\ub098\uc634;","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95255804,"id_str":"95255804","name":"\ubbf8\uce5c\uc624\ube60","screen_name":"crzbro","location":"luna","url":null,"description":"\ubc25\uc744 \uc704\ud574 \ubc95\uc744 \ud558\ub294 \ubd88\uc30d\ud55c \ubc95\uc7c1\uc774","protected":false,"verified":false,"followers_count":4260,"friends_count":1473,"listed_count":93,"favourites_count":3794,"statuses_count":90853,"created_at":"Mon Dec 07 18:44:23 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662779241503678464\/xZ0L307w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662779241503678464\/xZ0L307w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95255804\/1442844547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"crzbro","name":"\ubbf8\uce5c\uc624\ube60","id":95255804,"id_str":"95255804","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080004661"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323148800,"id_str":"663727762323148800","text":"\u00bfQu\u00e9 se esconde en la torre? Una pareja lo descubrir\u00e1. Leelo aqu\u00ed: https:\/\/t.co\/nJMWseElc8 LA TORRE DE LAS LAMENTACIONES #GRATIS # LECTURA","source":"\u003ca href=\"http:\/\/alexandercopperwhite.com\" rel=\"nofollow\"\u003eAcopperwhite 1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4076248943,"id_str":"4076248943","name":"LeerDeDia","screen_name":"LeerDeDia","location":"El mundo","url":null,"description":"La luz ilumina las palabras, y estas cambian nuestras vidas","protected":false,"verified":false,"followers_count":32,"friends_count":172,"listed_count":1,"favourites_count":0,"statuses_count":241,"created_at":"Fri Oct 30 16:05:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660178053583273984\/H3r0UfeE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660178053583273984\/H3r0UfeE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4076248943\/1446233743","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GRATIS","indices":[121,128]}],"urls":[{"url":"https:\/\/t.co\/nJMWseElc8","expanded_url":"http:\/\/ow.ly\/UbUls","display_url":"ow.ly\/UbUls","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339856386,"id_str":"663727762339856386","text":"RT @Herkul_Nagme: \"Allah, Sabredenlerin Yard\u0131mc\u0131s\u0131d\u0131r!..\"\nHaftan\u0131n Bamteli: Fethullah G\u00fclen Hocaefendi'nin haftal\u0131k g\u00f6r\u00fcnt\u00fcl\u00fc sohbeti:\nhttp\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2361602766,"id_str":"2361602766","name":"Rahmatullah Faqiry","screen_name":"rahmatim786","location":"Afghanistan","url":null,"description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":106,"listed_count":0,"favourites_count":14,"statuses_count":107,"created_at":"Tue Feb 25 20:22:40 +0000 2014","utc_offset":16200,"time_zone":"Kabul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481886113603551233\/ovDLnF1o_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481886113603551233\/ovDLnF1o_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:11:46 +0000 2015","id":663554547336523776,"id_str":"663554547336523776","text":"\"Allah, Sabredenlerin Yard\u0131mc\u0131s\u0131d\u0131r!..\"\nHaftan\u0131n Bamteli: Fethullah G\u00fclen Hocaefendi'nin haftal\u0131k g\u00f6r\u00fcnt\u00fcl\u00fc sohbeti:\nhttps:\/\/t.co\/HFLMZIEuSk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107984182,"id_str":"107984182","name":"Herkul.org","screen_name":"Herkul_Nagme","location":"Pennsylvania ABD","url":"http:\/\/www.herkul.org","description":"http:\/\/Herkul.org Resmi Twitter Sayfas\u0131","protected":false,"verified":true,"followers_count":348505,"friends_count":1,"listed_count":462,"favourites_count":3,"statuses_count":1197,"created_at":"Sun Jan 24 12:04:07 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1863079409\/herkul_logo-copy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1863079409\/herkul_logo-copy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107984182\/1386347721","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":437,"favorite_count":174,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HFLMZIEuSk","expanded_url":"http:\/\/www.herkul.org\/bamteli\/bamteli-allah-sabredenlerin-yardimcisidir\/","display_url":"herkul.org\/bamteli\/bamtel\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HFLMZIEuSk","expanded_url":"http:\/\/www.herkul.org\/bamteli\/bamteli-allah-sabredenlerin-yardimcisidir\/","display_url":"herkul.org\/bamteli\/bamtel\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Herkul_Nagme","name":"Herkul.org","id":107984182,"id_str":"107984182","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323017729,"id_str":"663727762323017729","text":"OMOHJJHJK","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1220746082,"id_str":"1220746082","name":"Siennaaaaaa\u2b50","screen_name":"byeolbxtch_","location":"Hakyeon's Kokoro","url":"http:\/\/facebook.com\/maknaeminji","description":"4-dimensional neo trash.","protected":false,"verified":false,"followers_count":332,"friends_count":707,"listed_count":2,"favourites_count":4612,"statuses_count":7617,"created_at":"Tue Feb 26 07:23:32 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630316193874710528\/Zb_YeiEq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630316193874710528\/Zb_YeiEq.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656334574083948544\/FCaYHruH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656334574083948544\/FCaYHruH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220746082\/1447057200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080004660"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762314629121,"id_str":"663727762314629121","text":"#Massage #Chair Electric Full Body Shiatsu Massage Chair Recliner Stretched Foot Rest 7201BW https:\/\/t.co\/aCnE133jxJ #Health #Beauty","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":746504346,"id_str":"746504346","name":"Google Trending","screen_name":"GoogleTrending1","location":null,"url":null,"description":"#Google #Trend #Hot #Search #Searches #Trends #eBay #Deals #Deal #Bargain #Bargains #Discount #Onsale #Sale #BestSeller #Auction #BestBuy #Buy #Good #Price","protected":false,"verified":false,"followers_count":291,"friends_count":73,"listed_count":101,"favourites_count":0,"statuses_count":120180,"created_at":"Thu Aug 09 04:03:25 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545627077513191424\/XW383PLb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545627077513191424\/XW383PLb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Massage","indices":[0,8]},{"text":"Chair","indices":[9,15]},{"text":"Health","indices":[117,124]},{"text":"Beauty","indices":[125,132]}],"urls":[{"url":"https:\/\/t.co\/aCnE133jxJ","expanded_url":"http:\/\/dlvr.it\/ChfczF","display_url":"dlvr.it\/ChfczF","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004658"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348249092,"id_str":"663727762348249092","text":"@r_45yk \n\n\u308a\u306a\u308a\u306a\u3054\u3081\u3093\uff08 ; ; \uff09\n\u3046\u3061\u306e\u52d8\u9055\u3044\u3060\u3063\u305f\uff08 ; ; \uff09\n\u9ed2\u306a\u304b\u3063\u305f\uff08 ; ; \uff09\u672c\u5f53\u306b\u3054\u3081\u3093\ud83d\ude2d\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663395274182672384,"in_reply_to_status_id_str":"663395274182672384","in_reply_to_user_id":2929308163,"in_reply_to_user_id_str":"2929308163","in_reply_to_screen_name":"mi_nryoo69","user":{"id":2929308163,"id_str":"2929308163","name":"\u307f \u3044 \u304d \u3069 \u3070 \u306a \u306a","screen_name":"mi_nryoo69","location":"Tour\u261d\ufe0eTokyo18.19","url":null,"description":"96 \/ Life is not worth living without \u300a NISIKIDO RYO\u300b.","protected":false,"verified":false,"followers_count":70,"friends_count":71,"listed_count":3,"favourites_count":2888,"statuses_count":8441,"created_at":"Sun Dec 14 05:26:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768846890545152\/ZlnrGnho_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768846890545152\/ZlnrGnho_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2929308163\/1447040645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"r_45yk","name":"R","id":4002022633,"id_str":"4002022633","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348216320,"id_str":"663727762348216320","text":"@kentylovesekuzo \u5927\u4e08\u592b\u3088\ud83d\ude01\n\u305d\u308c\u306d\u7b11\n\u307b\u3093\u3068\u306b\u91d1\u6b20\u3084\u308f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663660646504923137,"in_reply_to_status_id_str":"663660646504923137","in_reply_to_user_id":2708273688,"in_reply_to_user_id_str":"2708273688","in_reply_to_screen_name":"kentylovesekuzo","user":{"id":3322296996,"id_str":"3322296996","name":"\u2661*.+\uff9f\u3075\u307e\u3061\uff9f+.*\u2661","screen_name":"sz0402fuma","location":null,"url":null,"description":"01line\u3061\u3073\u308a\u3085\u4e16\u4ee3\u2661\u83ca\u6c60\u98a8\u78e8\uff78\uff9d\u304c\u5927\u597d\u304d(* \u02d8 \u00b3\u02d8)\u2661* \u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u2022\u2022\u30b8\u30e3\u30cb\u30f2\u30bf\u3055\u3093\u30d5\u30a9\u30ed\u30d0\u7387307%.*\uff65\uff9f \uff15\u4eba\u306b\u4f1a\u3044\u305f\u3044","protected":false,"verified":false,"followers_count":117,"friends_count":117,"listed_count":1,"favourites_count":103,"statuses_count":733,"created_at":"Fri Aug 21 12:46:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634711508342075392\/osxukBJe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634711508342075392\/osxukBJe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322296996\/1440162306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kentylovesekuzo","name":"\u3010\u3057\u308d\u30d0\u30ca\u30ca\u2605\u3011\u306f\u4f4e\u6d6e\u4e0a","id":2708273688,"id_str":"2708273688","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335793156,"id_str":"663727762335793156","text":"LIVE YOUR LIFE TOUR\ud83d\udd0a\ud83d\udd0a\ud83c\udfb6\ud83c\udfb6 TICKETS ON SALE - #lyltour - November 25th - Doors Open @ 9:00 - Use link in\u2026 https:\/\/t.co\/lo6qWlw0dR","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2842382649,"id_str":"2842382649","name":"Chase N' Treasure","screen_name":"ChaseNTreasure","location":"NJ\/NYC","url":"http:\/\/chasentreasure.com","description":"DJ\/Producer\/Musician Duo\nhttp:\/\/soundcloud.com\/ChaseNTreasure\nhttp:\/\/facebook.com\/ChaseNTreasure\nhttp:\/\/instagram.com\/ChaseNTreasure","protected":false,"verified":false,"followers_count":99,"friends_count":112,"listed_count":10,"favourites_count":3,"statuses_count":209,"created_at":"Fri Oct 24 05:45:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593519089563217920\/bKzoMusT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593519089563217920\/bKzoMusT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2842382649\/1428647003","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lyltour","indices":[42,50]}],"urls":[{"url":"https:\/\/t.co\/lo6qWlw0dR","expanded_url":"https:\/\/instagram.com\/p\/93iTe4DYAZ\/","display_url":"instagram.com\/p\/93iTe4DYAZ\/","indices":[102,125]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310434821,"id_str":"663727762310434821","text":"RT @planetepics: Escape in progress. https:\/\/t.co\/onbbYrgkcD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1102439100,"id_str":"1102439100","name":"AstroChic Astrology","screen_name":"Astrochicastro","location":null,"url":"http:\/\/www.astrochicastrology.com","description":"AstroChic Astrology is your online source for daily horoscopes, free astrology, tarot and psychic readings.","protected":false,"verified":false,"followers_count":3460,"friends_count":3086,"listed_count":113,"favourites_count":13748,"statuses_count":26451,"created_at":"Sat Jan 19 01:09:09 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/767388170\/6e05a48d548fcc6a2ebda6658d7ea447.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/767388170\/6e05a48d548fcc6a2ebda6658d7ea447.jpeg","profile_background_tile":false,"profile_link_color":"35176B","profile_sidebar_border_color":"2280A9","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520271341044264960\/Fmdn7sZ0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520271341044264960\/Fmdn7sZ0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1102439100\/1412876529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:13:06 +0000 2015","id":663403884782747648,"id_str":"663403884782747648","text":"Escape in progress. https:\/\/t.co\/onbbYrgkcD","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954590804,"id_str":"954590804","name":"Life on Earth","screen_name":"planetepics","location":"planetepics@gmail.com","url":"https:\/\/www.facebook.com\/planetepics\/","description":"#peace l #travel l #green l #animals l #nature l #photography l #life l #earth l #blue l #people\nAll images are copyrighted by their respective authors.","protected":false,"verified":false,"followers_count":2436827,"friends_count":947,"listed_count":4164,"favourites_count":674,"statuses_count":22345,"created_at":"Sun Nov 18 00:50:35 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463495027600015360\/_Jyj6WD6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463495027600015360\/_Jyj6WD6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954590804\/1415154628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":187,"favorite_count":475,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663403884166164480,"id_str":"663403884166164480","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","url":"https:\/\/t.co\/onbbYrgkcD","display_url":"pic.twitter.com\/onbbYrgkcD","expanded_url":"http:\/\/twitter.com\/planetepics\/status\/663403884782747648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":826,"resize":"fit"},"medium":{"w":560,"h":826,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663403884166164480,"id_str":"663403884166164480","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","url":"https:\/\/t.co\/onbbYrgkcD","display_url":"pic.twitter.com\/onbbYrgkcD","expanded_url":"http:\/\/twitter.com\/planetepics\/status\/663403884782747648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":826,"resize":"fit"},"medium":{"w":560,"h":826,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"planetepics","name":"Life on Earth","id":954590804,"id_str":"954590804","indices":[3,15]}],"symbols":[],"media":[{"id":663403884166164480,"id_str":"663403884166164480","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","url":"https:\/\/t.co\/onbbYrgkcD","display_url":"pic.twitter.com\/onbbYrgkcD","expanded_url":"http:\/\/twitter.com\/planetepics\/status\/663403884782747648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":826,"resize":"fit"},"medium":{"w":560,"h":826,"resize":"fit"}},"source_status_id":663403884782747648,"source_status_id_str":"663403884782747648","source_user_id":954590804,"source_user_id_str":"954590804"}]},"extended_entities":{"media":[{"id":663403884166164480,"id_str":"663403884166164480","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiUVpWsAAlYjU.jpg","url":"https:\/\/t.co\/onbbYrgkcD","display_url":"pic.twitter.com\/onbbYrgkcD","expanded_url":"http:\/\/twitter.com\/planetepics\/status\/663403884782747648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":826,"resize":"fit"},"medium":{"w":560,"h":826,"resize":"fit"}},"source_status_id":663403884782747648,"source_status_id_str":"663403884782747648","source_user_id":954590804,"source_user_id_str":"954590804"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004657"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762344034304,"id_str":"663727762344034304","text":"RT @Nemo_Suho_: \uc544\ub2c8 \ub2d8\ub35c\uc544,,,\n\ud574\uc2dc\ud0dc\uadf8 \ud655\uc2e4\ud558\uc9c0 \uc54a\uc544\uc694,,,\n\uc5e0\uce74\ud22c\ud45c\uc600\ub2e4\uace0\ud574\uc11c \u314e\u314f\uc2dc\ub294\uac83 \uac19\uc740\ub370 \ud574\uc2dc\ud0dc\uadf8\ub294 \uc5e0\uce74\ud22c\ud45c \u3147\u314f\ub2c8\ub77c\uace0 \uc5e0\ub137\uc774 \uc9c1\uc811 \ub9d0\ud588\uad6c\uc694,,\n\uadf8 \u3145\u3163\uac04\uc5d0 \ub9c8\ub9c8 \ud22c\ud45c\ud558\uc2dc\ub77c\uad6c\uc694,,,,\n\uc9c0\uae08 \ub300\uc0c1 \ub450 \ubd80\ubb38 \ucc28\uc774 \ub9ce\uc774\ub098\uc694,,,","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096245701,"id_str":"3096245701","name":"\ud22c\ud45c\ud574\uc694 \uc591\uac31( \u2022\u3266\u2022 )\u2661","screen_name":"_yang_gaeng_","location":"\ube57\uc18d","url":null,"description":"\ub09c \ud798\ub4e4\ub54c \ube57\uc18d\uc5d0\uc11c \ud799\ud569\uc744 \ucdb0...\n\uff40\u3001\u3001\uff40\u30fd\uff40\u30fd\uff40\u3001\u3001\u30fd\u30fd\u3001\uff40\u3001\u30fd\uff40\u30fd\uff40\u30fd\u30fd\uff40\u30fd\uff40\u3001\uff40\u30fd\uff40\u3001\u30fd\uff40\uff40\u3001\u30fd\uff40\u30fd\uff40\u3001\u30fd\u30fd\uff40\u30fd\u3001\u30fd\uff40\u30fd\u3001\u30fd\u30fd\uff40\u30fd\uff40\u3001\uff40\uff40\u30fd\uff40\u30fd\u3001\u30fd\u3001\u30fd\uff40\u30fd\uff40\u30fd\u3001\u30fd\uff40\u30fd\uff40\u3001\u30fd\u30fd\uff40\uff40\u3001\u30fd\uff40\u3001\u30fd\u30fd \u12fd \u30fd\uff40\uff40","protected":false,"verified":false,"followers_count":313,"friends_count":307,"listed_count":2,"favourites_count":166,"statuses_count":15225,"created_at":"Wed Mar 18 12:33:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618049373964898304\/QZE9ZlIU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618049373964898304\/QZE9ZlIU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096245701\/1437333441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:09 +0000 2015","id":663726273114472452,"id_str":"663726273114472452","text":"\uc544\ub2c8 \ub2d8\ub35c\uc544,,,\n\ud574\uc2dc\ud0dc\uadf8 \ud655\uc2e4\ud558\uc9c0 \uc54a\uc544\uc694,,,\n\uc5e0\uce74\ud22c\ud45c\uc600\ub2e4\uace0\ud574\uc11c \u314e\u314f\uc2dc\ub294\uac83 \uac19\uc740\ub370 \ud574\uc2dc\ud0dc\uadf8\ub294 \uc5e0\uce74\ud22c\ud45c \u3147\u314f\ub2c8\ub77c\uace0 \uc5e0\ub137\uc774 \uc9c1\uc811 \ub9d0\ud588\uad6c\uc694,,\n\uadf8 \u3145\u3163\uac04\uc5d0 \ub9c8\ub9c8 \ud22c\ud45c\ud558\uc2dc\ub77c\uad6c\uc694,,,,\n\uc9c0\uae08 \ub300\uc0c1 \ub450 \ubd80\ubb38 \ucc28\uc774 \ub9ce\uc774\ub098\uc694,,,","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3117065563,"id_str":"3117065563","name":"\ud22c \ub2c8\ubaa8(\u0e51\u275b\u1d17\u275b\u0e51) \ud45c","screen_name":"Nemo_Suho_","location":"\uc5b4\ub355\ud589\ub355 \/ \ub2c8\uc0dd\uac01\u2260\ub0b4\uc0dd\uac01 \uac15\uc694\u3134\u3134 ","url":"http:\/\/ask.fm\/nemo_suho_","description":"\uc5d1\uc18c\ub791 \uc900\uba74\uc774\ub791 \/ RPS \/","protected":false,"verified":false,"followers_count":1137,"friends_count":417,"listed_count":3,"favourites_count":360,"statuses_count":22715,"created_at":"Mon Mar 30 12:12:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611551658519085056\/Y4ep5_pj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611551658519085056\/Y4ep5_pj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117065563\/1439201540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nemo_Suho_","name":"\ud22c \ub2c8\ubaa8(\u0e51\u275b\u1d17\u275b\u0e51) \ud45c","id":3117065563,"id_str":"3117065563","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080004665"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335625217,"id_str":"663727762335625217","text":"RT @0221riku: \u3061\u3087\u3044\u3068\u30d6\u30e9\u30c3\u30af\u306ame\u301c\ud83d\ude0e https:\/\/t.co\/AH8Tyr6KQ7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317491028,"id_str":"3317491028","name":"\u3042 \u307f \u2732*\uff9f@\u307d\u3093\u306a\u30fc","screen_name":"_926_tkpn","location":null,"url":null,"description":"\u308a\u304f\u307d\u3093\u2e1c( \u2313\u0308 )\u2e1d\u307d\u3093\u306a\u30fc\u2661\u307b\u308a\u3048\u3063\u305f\u30fc\u2661","protected":false,"verified":false,"followers_count":5,"friends_count":5,"listed_count":0,"favourites_count":59,"statuses_count":25,"created_at":"Mon Aug 17 06:44:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633170207419162624\/5rbBayBF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633170207419162624\/5rbBayBF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317491028\/1439794645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:58 +0000 2015","id":663713896037904384,"id_str":"663713896037904384","text":"\u3061\u3087\u3044\u3068\u30d6\u30e9\u30c3\u30af\u306ame\u301c\ud83d\ude0e https:\/\/t.co\/AH8Tyr6KQ7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":812751134,"id_str":"812751134","name":"\u307b\u308a\u3048\u308a\u304f","screen_name":"0221riku","location":"\u5e83\u5cf6\u2192\u5927\u962a\u2192\u6771\u4eac","url":null,"description":"\u6bce\u65e5\u7b11\u9854\u3092\u5fd8\u308c\u305a\u306b\u3002\u4eca\u65e5\u30821\u65e5\u9811\u5f35\u308b\u305e\u3044\u3002","protected":false,"verified":false,"followers_count":107314,"friends_count":200,"listed_count":593,"favourites_count":5520,"statuses_count":17636,"created_at":"Sun Sep 09 09:17:53 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611500717589663744\/J2cefjh3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611500717589663744\/J2cefjh3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812751134\/1440837353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":437,"favorite_count":2021,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713889708675073,"id_str":"663713889708675073","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","url":"https:\/\/t.co\/AH8Tyr6KQ7","display_url":"pic.twitter.com\/AH8Tyr6KQ7","expanded_url":"http:\/\/twitter.com\/0221riku\/status\/663713896037904384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":738,"resize":"fit"},"small":{"w":340,"h":245,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663713889708675073,"id_str":"663713889708675073","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","url":"https:\/\/t.co\/AH8Tyr6KQ7","display_url":"pic.twitter.com\/AH8Tyr6KQ7","expanded_url":"http:\/\/twitter.com\/0221riku\/status\/663713896037904384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":738,"resize":"fit"},"small":{"w":340,"h":245,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0221riku","name":"\u307b\u308a\u3048\u308a\u304f","id":812751134,"id_str":"812751134","indices":[3,12]}],"symbols":[],"media":[{"id":663713889708675073,"id_str":"663713889708675073","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","url":"https:\/\/t.co\/AH8Tyr6KQ7","display_url":"pic.twitter.com\/AH8Tyr6KQ7","expanded_url":"http:\/\/twitter.com\/0221riku\/status\/663713896037904384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":738,"resize":"fit"},"small":{"w":340,"h":245,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663713896037904384,"source_status_id_str":"663713896037904384","source_user_id":812751134,"source_user_id_str":"812751134"}]},"extended_entities":{"media":[{"id":663713889708675073,"id_str":"663713889708675073","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8RCSUEAE0VyL.jpg","url":"https:\/\/t.co\/AH8Tyr6KQ7","display_url":"pic.twitter.com\/AH8Tyr6KQ7","expanded_url":"http:\/\/twitter.com\/0221riku\/status\/663713896037904384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":738,"resize":"fit"},"small":{"w":340,"h":245,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663713896037904384,"source_status_id_str":"663713896037904384","source_user_id":812751134,"source_user_id_str":"812751134"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762331447300,"id_str":"663727762331447300","text":"#Sporting #Goods JOE MAUER Minnesota #Twins #Photo SHIRT Three60\u00b0 Gear SMALL NWT NEW! https:\/\/t.co\/CHwE33ih1t #Deal #Bargain","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559364938,"id_str":"559364938","name":"Minnesota Twins Mall","screen_name":"MinnesotaTwins7","location":null,"url":"http:\/\/Dlvr.it\/B34L2n","description":"#Collectibles About #MLB Minnesota Twins #Tickets #Ticket #Sports #Shopping #Bargains #Deals #eBay #Hot #Sales #Discount #Deal #Buy #Sporting #Auction #Baseball","protected":false,"verified":false,"followers_count":158,"friends_count":175,"listed_count":57,"favourites_count":0,"statuses_count":121516,"created_at":"Sat Apr 21 09:27:02 +0000 2012","utc_offset":3600,"time_zone":"Bern","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605200620262322176\/w0PtBzq1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605200620262322176\/w0PtBzq1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559364938\/1433125219","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sporting","indices":[0,9]},{"text":"Goods","indices":[10,16]},{"text":"Twins","indices":[37,43]},{"text":"Photo","indices":[44,50]},{"text":"Deal","indices":[110,115]},{"text":"Bargain","indices":[116,124]}],"urls":[{"url":"https:\/\/t.co\/CHwE33ih1t","expanded_url":"http:\/\/dlvr.it\/ChfcXV","display_url":"dlvr.it\/ChfcXV","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004662"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348179456,"id_str":"663727762348179456","text":"\u8a95\u751f\u65e5\u306e\u65e5\u306b\u85e4\u30f6\u8c37\u3055\u30931\u4f4d\u3042\u308a\u304c\u3068\u3046\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3907279693,"id_str":"3907279693","name":"\u2601\u308a\u308a\u304c\u3084\u260111\u67089\u65e5\u8a95\u751f\u65e5!\u7b11","screen_name":"kisandpeacexxx","location":"\u56fa\u5b9a\u30c4\u30a4\u30fc\u30c8RT\u3057\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u2934\u2934","url":null,"description":"\u85e4\u30f6\u8c37\u592a\u8f14\u751f\u304d\u308b\u6e90\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000KIS-MY-WORLD9.20\u6771\u4eac\uff84\uff9e\uff70\uff9110.29\u540d\u53e4\u5c4b\uff84\uff9e\uff70\uff91\u53c2\u6226\u6e08\u307f","protected":false,"verified":false,"followers_count":647,"friends_count":760,"listed_count":2,"favourites_count":432,"statuses_count":1617,"created_at":"Thu Oct 15 22:22:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660837488907280384\/sLdWuZrw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660837488907280384\/sLdWuZrw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3907279693\/1444988148","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762327347200,"id_str":"663727762327347200","text":"@alaura2015\ud83d\ude19\ud83c\udfb6@jlferguson50 @eReferenceDesk @Arab_Arabism @gam_2015 @WALAVALVERDE @hikonyan8739 @QuIcKsIgN2 @Chuca_85 @1331saint","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721158139842561,"in_reply_to_status_id_str":"663721158139842561","in_reply_to_user_id":3015031480,"in_reply_to_user_id_str":"3015031480","in_reply_to_screen_name":"alaura2015","user":{"id":2323150141,"id_str":"2323150141","name":"Joe #eRD \u260673K","screen_name":"eReferenceDesk","location":"South Carolina","url":"http:\/\/www.eReferenceDesk.com\/","description":"\u2600\ufe0f #F4F \u2600\ufe0f \u274cNo Dms\u274c \u2606 #eRD See #WMSI @jlferguson50 \u2606 #eReferenceDesk \u2606 #K12 Resource for #Students & #Teachers. \u2606\u2764\ufe0f","protected":false,"verified":false,"followers_count":73185,"friends_count":73501,"listed_count":211,"favourites_count":259,"statuses_count":106654,"created_at":"Sun Feb 02 03:31:08 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638016173292982272\/15D8x3LE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638016173292982272\/15D8x3LE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323150141\/1423710652","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.046830],[-83.353955,35.215449],[-78.499301,35.215449],[-78.499301,32.046830]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alaura2015","name":"Laura\u24c2MGWV\u24c2","id":3015031480,"id_str":"3015031480","indices":[0,11]},{"screen_name":"jlferguson50","name":"Joe #WMSI #eRD \u260673K","id":2322937225,"id_str":"2322937225","indices":[13,26]},{"screen_name":"eReferenceDesk","name":"Joe #eRD \u260673K","id":2323150141,"id_str":"2323150141","indices":[27,42]},{"screen_name":"Arab_Arabism","name":"DIANA","id":1902631015,"id_str":"1902631015","indices":[44,57]},{"screen_name":"gam_2015","name":"\u0645\u0634\u0627\u0639\u0644 80K","id":2647957958,"id_str":"2647957958","indices":[58,67]},{"screen_name":"WALAVALVERDE","name":"Enzo Walace Valverde","id":57764100,"id_str":"57764100","indices":[68,81]},{"screen_name":"hikonyan8739","name":"\u30aa\u30e9\u30aa\u30e9\u541b","id":3088818608,"id_str":"3088818608","indices":[82,95]},{"screen_name":"QuIcKsIgN2","name":"(\u2661QUICKSIGN THANKS\u2661)","id":1855569433,"id_str":"1855569433","indices":[96,107]},{"screen_name":"Chuca_85","name":"\u2103\u043d\u00fc\u00a2\u03b1","id":3293696029,"id_str":"3293696029","indices":[109,118]},{"screen_name":"1331saint","name":"13AnG\u20acl,\u2665\ufe0f#VANILLA\u2764\ufe0f","id":1333998096,"id_str":"1333998096","indices":[119,129]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080004661"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762331451392,"id_str":"663727762331451392","text":"\u3055\u3042\u3042\u3041\u3041es\u3059\u308b\u305e\u3049\u30fe(@\u309c\u25bd\u309c@)\u30ce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349484208,"id_str":"2349484208","name":"\u30a6\u30a3\u30eb\u30d0\u30fc@ship3","screen_name":"ain5102032","location":"\u4eca\u6708\u306e\u76ee\u6a19\u3001SS\u64ae\u308b\u306e\u9811\u5f35\u308b(*\u00b4\u03c9\uff40*) ","url":null,"description":"\u3077\u305d2\uff06es\uff06\uff8a\uff9f\uff7d\uff9e\uff84\uff9e\uff97\uff06\u767d\u732b\uff06\u9ed2\u732b\u306a\u3069\u3092\u3057\u3066\u3044\u3066\uff8b\uff6d\uff91\uff89\uff7d\u3082\u7d21\u3050(*\u00b4\u03c9`*)\u30b2\u30fc\u30e0\u304c\u5927\u597d\u304d\u3060\u3063\u3066\u697d\u3057\u3044\u3082\u306e \u73fe\u5728\u3001PSO2 ship3\u3067\u6d3b\u52d5\u4e2d\u3002 \u5225\u306eship\u306e\u65b9\u3082\u6c17\u8efd\u306b\u3069\u3046\u305e\u8a71\u304b\u3051\u3066\u306d\u2740.(*\u00b4\u25bd`*)\u2740.","protected":false,"verified":false,"followers_count":20,"friends_count":43,"listed_count":1,"favourites_count":364,"statuses_count":1871,"created_at":"Tue Feb 18 03:39:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663645801852219392\/v641fhko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663645801852219392\/v641fhko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349484208\/1403992586","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004662"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762327404544,"id_str":"663727762327404544","text":"\u201cIndecision is a bad decision\u201d\u200a\u2014\u200a@BenjaminPHardy https:\/\/t.co\/z3sJULfBY9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521243778,"id_str":"521243778","name":"Tommaso Montefusco","screen_name":"Mont3Bosco","location":"Rovereto (TN)","url":"http:\/\/about.me\/tommaso.montefusco","description":"- LoL Player - Server EUW - HyC NoMoarHeroz -","protected":false,"verified":false,"followers_count":68,"friends_count":440,"listed_count":3,"favourites_count":69,"statuses_count":455,"created_at":"Sun Mar 11 11:36:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608226590\/51i5zhath1qvo4ujcmsg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608226590\/51i5zhath1qvo4ujcmsg.jpeg","profile_background_tile":false,"profile_link_color":"1E6108","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"3E326E","profile_text_color":"6A6382","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000739997140\/03d49ad7ada79098e2fe69b6bc3e6440_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000739997140\/03d49ad7ada79098e2fe69b6bc3e6440_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521243778\/1384458352","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z3sJULfBY9","expanded_url":"https:\/\/medium.com\/@benjaminhardy\/8-things-every-person-should-do-before-8-a-m-cc0233e15c8d","display_url":"medium.com\/@benjaminhardy\u2026","indices":[49,72]}],"user_mentions":[{"screen_name":"BenjaminPHardy","name":"Benjamin Hardy","id":1955188266,"id_str":"1955188266","indices":[33,48]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004661"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348244997,"id_str":"663727762348244997","text":"#Bridgend #Jobs Tool Sales Distributor's Needed, Nationwide: Tool Sales Distributor's Needed -\u2026 https:\/\/t.co\/JvNn1kjajy #Job #BridgendJobs","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250612831,"id_str":"250612831","name":"Bridgend Jobs","screen_name":"Bridgend_Jobs","location":"Bridgend, Wales, UK","url":"http:\/\/Facebook.com\/Search4Bridgend.Jobs","description":"Search4Bridgend: Jobs - All the latest Jobs, Careers, Employment & Recruitment in Bridgend, Wales, UK!","protected":false,"verified":false,"followers_count":154,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":30875,"created_at":"Fri Feb 11 12:56:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055803670\/be20411b41fc577ad43c1b2a6a3d2ace.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055803670\/be20411b41fc577ad43c1b2a6a3d2ace.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596239192016949248\/xtCkcnO__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596239192016949248\/xtCkcnO__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250612831\/1430989463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Bridgend","indices":[0,9]},{"text":"Jobs","indices":[10,15]},{"text":"Job","indices":[120,124]},{"text":"BridgendJobs","indices":[125,138]}],"urls":[{"url":"https:\/\/t.co\/JvNn1kjajy","expanded_url":"http:\/\/dlvr.it\/ChfdbQ","display_url":"dlvr.it\/ChfdbQ","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762339860485,"id_str":"663727762339860485","text":"@thatsoangel bayaan mo nko \ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726189882687488,"in_reply_to_status_id_str":"663726189882687488","in_reply_to_user_id":570617766,"in_reply_to_user_id_str":"570617766","in_reply_to_screen_name":"thatsoangel","user":{"id":128498117,"id_str":"128498117","name":"Ericka","screen_name":"erickabuyco_","location":"BCD PHL","url":null,"description":"series junkie \u2022 cheese enthusiast \u2022 ambivert","protected":false,"verified":false,"followers_count":938,"friends_count":893,"listed_count":1,"favourites_count":13441,"statuses_count":46893,"created_at":"Thu Apr 01 09:01:56 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541404495540781057\/E9T2o7lC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541404495540781057\/E9T2o7lC.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657927088196849664\/EtwWuRMB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657927088196849664\/EtwWuRMB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128498117\/1445582919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thatsoangel","name":"Legna","id":570617766,"id_str":"570617766","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080004664"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762314686464,"id_str":"663727762314686464","text":"#Weather Forecast for Tuesday Night: Rain likely. Lows in the mid 40s. North winds 5 to 10 mph.\u2026 5 Day Forecast- https:\/\/t.co\/IvaFsdEzlt","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133416292,"id_str":"133416292","name":"Hartford Local","screen_name":"Hartford_Buzz","location":"Hartford, CT","url":"https:\/\/www.facebook.com\/TheLocalBuzzNetwork","description":"Hartford local news, events, jobs and more. We also offer affordable local business advertising: http:\/\/www.localbuzznetwork.com or @localbuzzz","protected":false,"verified":false,"followers_count":3704,"friends_count":2547,"listed_count":104,"favourites_count":2,"statuses_count":132326,"created_at":"Thu Apr 15 18:42:59 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/881209188\/500e7bce4a843d27647b719fd8dfe2da.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/881209188\/500e7bce4a843d27647b719fd8dfe2da.png","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3167681595\/d51099b4bf4d3a3a77363df30ff06c50_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3167681595\/d51099b4bf4d3a3a77363df30ff06c50_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Weather","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/IvaFsdEzlt","expanded_url":"http:\/\/goo.gl\/tE2Pp0","display_url":"goo.gl\/tE2Pp0","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004658"} +{"delete":{"status":{"id":502829936579592192,"id_str":"502829936579592192","user_id":351469673,"user_id_str":"351469673"},"timestamp_ms":"1447080004896"}} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762344165376,"id_str":"663727762344165376","text":"RT @Marioomalkarji: \u0645\u0627\u0643. https:\/\/t.co\/S3aEt1O8oM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235098030,"id_str":"3235098030","name":"20.nov?mine|\u0634\u0647\u062f\u0647","screen_name":"shahoda503","location":".","url":null,"description":"\u0646\u0635\u064a\u0628 \u0639\u0645\u0631\u064a \u0627\u0644\u062d\u0644\u0648 \u0645\u0646 \u0647\u0627\u0644\u062d\u064a\u0627\u0629 \u0635\u0627\u062d\u0628\u064a\u2764\ufe0f. @Sartah72x @areejaldaihani_ @asooom_alkhaldi @Skandrie__ @3976x","protected":false,"verified":false,"followers_count":665,"friends_count":161,"listed_count":0,"favourites_count":197,"statuses_count":14556,"created_at":"Wed Jun 03 14:21:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662850485183975425\/vlDZqJV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662850485183975425\/vlDZqJV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235098030\/1447076735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:43 +0000 2015","id":663727420441251840,"id_str":"663727420441251840","text":"\u0645\u0627\u0643. https:\/\/t.co\/S3aEt1O8oM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2230318140,"id_str":"2230318140","name":"\u0627\u0645 \u0643\u0646\u062f\u0631.","screen_name":"Marioomalkarji","location":"Kuwait.","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0635\u062c \u0639\u0627\u062f \u061f\nhttp:\/\/ask.fm\/maghyom\u200e\u200e\u200e\u200e\n\u200e","protected":false,"verified":false,"followers_count":1746,"friends_count":416,"listed_count":4,"favourites_count":3925,"statuses_count":75578,"created_at":"Wed Dec 04 18:24:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662255977899679744\/HxmGjhic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662255977899679744\/HxmGjhic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2230318140\/1446508374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727092773842945,"quoted_status_id_str":"663727092773842945","quoted_status":{"created_at":"Mon Nov 09 14:37:25 +0000 2015","id":663727092773842945,"id_str":"663727092773842945","text":"\u0643\u062a \u062a\u0648\u064a\u062a | \u0645\u0627\u0643 \u0648\u0644\u0627 \u0647\u0627\u0631\u062f\u064a\u0632 \u061f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235098030,"id_str":"3235098030","name":"20.nov?mine|\u0634\u0647\u062f\u0647","screen_name":"shahoda503","location":".","url":null,"description":"\u0646\u0635\u064a\u0628 \u0639\u0645\u0631\u064a \u0627\u0644\u062d\u0644\u0648 \u0645\u0646 \u0647\u0627\u0644\u062d\u064a\u0627\u0629 \u0635\u0627\u062d\u0628\u064a\u2764\ufe0f. @Sartah72x @areejaldaihani_ @asooom_alkhaldi @Skandrie__ @3976x","protected":false,"verified":false,"followers_count":665,"friends_count":161,"listed_count":0,"favourites_count":197,"statuses_count":14555,"created_at":"Wed Jun 03 14:21:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662850485183975425\/vlDZqJV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662850485183975425\/vlDZqJV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235098030\/1447076735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/S3aEt1O8oM","expanded_url":"https:\/\/twitter.com\/shahoda503\/status\/663727092773842945","display_url":"twitter.com\/shahoda503\/sta\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/S3aEt1O8oM","expanded_url":"https:\/\/twitter.com\/shahoda503\/status\/663727092773842945","display_url":"twitter.com\/shahoda503\/sta\u2026","indices":[25,48]}],"user_mentions":[{"screen_name":"Marioomalkarji","name":"\u0627\u0645 \u0643\u0646\u062f\u0631.","id":2230318140,"id_str":"2230318140","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080004665"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762327379968,"id_str":"663727762327379968","text":"As if we didn't knew. Huh! https:\/\/t.co\/nJCcxuQcp9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":711739448,"id_str":"711739448","name":"asif.","screen_name":"asif_speaks","location":"Pakistan","url":null,"description":"Learning for Life. 19!","protected":false,"verified":false,"followers_count":2271,"friends_count":314,"listed_count":10,"favourites_count":2282,"statuses_count":65017,"created_at":"Mon Jul 23 03:42:33 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"141114","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455670137354350593\/uvWRMUrZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455670137354350593\/uvWRMUrZ.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661575857375453184\/15pNHFLo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661575857375453184\/15pNHFLo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711739448\/1446994653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727275767111680,"quoted_status_id_str":"663727275767111680","quoted_status":{"created_at":"Mon Nov 09 14:38:08 +0000 2015","id":663727275767111680,"id_str":"663727275767111680","text":"News:@iKabirBedi revealed that Mr Vinod Khanna is also a part of #Diwale","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217017676,"id_str":"1217017676","name":"Faridoon Shahryar","screen_name":"iFaridoon","location":null,"url":null,"description":"Journalist based in Mumbai, India, who believes in credible infotainment. Works for Bollywood Hungama. Loves Music, Swimming,Smiling! faridoonshahryar@gmail.com","protected":false,"verified":false,"followers_count":42828,"friends_count":285,"listed_count":123,"favourites_count":3274,"statuses_count":22112,"created_at":"Mon Feb 25 01:54:40 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217017676\/1446533556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Diwale","indices":[65,72]}],"urls":[],"user_mentions":[{"screen_name":"iKabirBedi","name":"KABIR BEDI","id":31135086,"id_str":"31135086","indices":[5,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nJCcxuQcp9","expanded_url":"https:\/\/twitter.com\/iFaridoon\/status\/663727275767111680","display_url":"twitter.com\/iFaridoon\/stat\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080004661"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318868482,"id_str":"663727762318868482","text":"\u3048\u3001\u3064\u307e\u3093\u306a\u3044 https:\/\/t.co\/yc1W8qqneI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3615075517,"id_str":"3615075517","name":"\u30d4\u30d4\u4f4e","screen_name":"soasknJbbdd","location":"\u30c8\u30d7\u3068\u30d8\u30c3\u30c0\u30fc\u306f\u5c0f\u591c\u5b50","url":null,"description":"\u5927\u91ce\u3068\u52a0\u85e4\u639b\u3051\u6301\u3061\u306e\u304f\u305b\u3057\u3066\u5927\u91ce\u304f\u3093\u540c\u62c5\u62d2\u5426\u306e\u30ab\u30b9\u30f2\u30bf\u3067\u3059\u3053\u3093\u3070\u3093\u306f\uff5e\uff5e\uff5e\uff5e\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":115,"friends_count":118,"listed_count":6,"favourites_count":1844,"statuses_count":1791,"created_at":"Sat Sep 19 10:35:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645211445651615744\/MrxgD7P7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645211445651615744\/MrxgD7P7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3615075517\/1442664510","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727755276587008,"id_str":"663727755276587008","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4HjUEAAbR69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4HjUEAAbR69.jpg","url":"https:\/\/t.co\/yc1W8qqneI","display_url":"pic.twitter.com\/yc1W8qqneI","expanded_url":"http:\/\/twitter.com\/soasknJbbdd\/status\/663727762318868482\/photo\/1","type":"photo","sizes":{"large":{"w":691,"h":1024,"resize":"fit"},"medium":{"w":600,"h":889,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727755276587008,"id_str":"663727755276587008","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4HjUEAAbR69.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4HjUEAAbR69.jpg","url":"https:\/\/t.co\/yc1W8qqneI","display_url":"pic.twitter.com\/yc1W8qqneI","expanded_url":"http:\/\/twitter.com\/soasknJbbdd\/status\/663727762318868482\/photo\/1","type":"photo","sizes":{"large":{"w":691,"h":1024,"resize":"fit"},"medium":{"w":600,"h":889,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762319024128,"id_str":"663727762319024128","text":"La venezolana Gaby Espino sac\u00f3 l\u00ednea de labiales https:\/\/t.co\/DwX19v87Ji https:\/\/t.co\/Dx5WFAIVNr","source":"\u003ca href=\"https:\/\/www.socialgest.net\" rel=\"nofollow\"\u003eSocialGest\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906492073,"id_str":"2906492073","name":"horasero","screen_name":"horaseroriente","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1485,"friends_count":359,"listed_count":17,"favourites_count":121,"statuses_count":28508,"created_at":"Fri Dec 05 16:20:19 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661233771698626560\/4O6LqFK4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661233771698626560\/4O6LqFK4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906492073\/1446485411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DwX19v87Ji","expanded_url":"http:\/\/bit.ly\/1M0cW0q","display_url":"bit.ly\/1M0cW0q","indices":[49,72]}],"user_mentions":[],"symbols":[],"media":[{"id":663416062738853888,"id_str":"663416062738853888","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTtZOXWcAAvmmF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTtZOXWcAAvmmF.jpg","url":"https:\/\/t.co\/Dx5WFAIVNr","display_url":"pic.twitter.com\/Dx5WFAIVNr","expanded_url":"http:\/\/twitter.com\/horaseroriente\/status\/663416067012870145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":210,"resize":"fit"},"medium":{"w":400,"h":210,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":663416067012870145,"source_status_id_str":"663416067012870145","source_user_id":2906492073,"source_user_id_str":"2906492073"}]},"extended_entities":{"media":[{"id":663416062738853888,"id_str":"663416062738853888","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTtZOXWcAAvmmF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTtZOXWcAAvmmF.jpg","url":"https:\/\/t.co\/Dx5WFAIVNr","display_url":"pic.twitter.com\/Dx5WFAIVNr","expanded_url":"http:\/\/twitter.com\/horaseroriente\/status\/663416067012870145\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":210,"resize":"fit"},"medium":{"w":400,"h":210,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":663416067012870145,"source_status_id_str":"663416067012870145","source_user_id":2906492073,"source_user_id_str":"2906492073"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004659"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348384256,"id_str":"663727762348384256","text":"@muz_tv @Nyusha_Nyusha @maksimofficial \u041f\u043e\u0434\u0430\u0440\u043a\u0438 \u0434\u043b\u044f \u043b\u044e\u0431\u0438\u043c\u044b\u0445 \u043d\u0430 \u043d\u043e\u0432\u044b\u0439 \u0433\u043e\u0434 https:\/\/t.co\/KR0RQVbe67 https:\/\/t.co\/yke1bQ6Lho","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711872642899968,"in_reply_to_status_id_str":"663711872642899968","in_reply_to_user_id":86937589,"in_reply_to_user_id_str":"86937589","in_reply_to_screen_name":"muz_tv","user":{"id":4148212703,"id_str":"4148212703","name":"\u041f\u043e\u0440\u0430 \u0432 \u043e\u0442\u043f\u0443\u0441\u043a !","screen_name":"Milk89031698884","location":"\u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c, \u0420\u043e\u0441\u0441\u0438\u044f","url":"https:\/\/www.workle.ru\/id1816270.10\/manage\/","description":"\u041a\u043e\u043d\u0441\u0443\u043b\u044c\u0442\u0430\u043d\u0442 \u043f\u043e \u0442\u0443\u0440\u0438\u0437\u043c\u0443","protected":false,"verified":false,"followers_count":0,"friends_count":11,"listed_count":0,"favourites_count":18,"statuses_count":39,"created_at":"Mon Nov 09 09:41:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663654490432651264\/6Farp6LZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663654490432651264\/6Farp6LZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4148212703\/1447062942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KR0RQVbe67","expanded_url":"http:\/\/vk.com\/club104714291","display_url":"vk.com\/club104714291","indices":[73,96]}],"user_mentions":[{"screen_name":"muz_tv","name":"\u041c\u0423\u0417-\u0422\u0412","id":86937589,"id_str":"86937589","indices":[0,7]},{"screen_name":"Nyusha_Nyusha","name":"Nyusha","id":240478776,"id_str":"240478776","indices":[8,22]},{"screen_name":"maksimofficial","name":"\u041c\u0430\u043aS\u0438\u043c","id":197100783,"id_str":"197100783","indices":[23,38]}],"symbols":[],"media":[{"id":663727761345900544,"id_str":"663727761345900544","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4eKWcAAp9bT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4eKWcAAp9bT.jpg","url":"https:\/\/t.co\/yke1bQ6Lho","display_url":"pic.twitter.com\/yke1bQ6Lho","expanded_url":"http:\/\/twitter.com\/Milk89031698884\/status\/663727762348384256\/photo\/1","type":"photo","sizes":{"small":{"w":277,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":277,"h":200,"resize":"fit"},"medium":{"w":277,"h":200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727761345900544,"id_str":"663727761345900544","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4eKWcAAp9bT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4eKWcAAp9bT.jpg","url":"https:\/\/t.co\/yke1bQ6Lho","display_url":"pic.twitter.com\/yke1bQ6Lho","expanded_url":"http:\/\/twitter.com\/Milk89031698884\/status\/663727762348384256\/photo\/1","type":"photo","sizes":{"small":{"w":277,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":277,"h":200,"resize":"fit"},"medium":{"w":277,"h":200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762348228608,"id_str":"663727762348228608","text":"\u2192 \u2605 Iglesias que est\u00e1n usando sus letreros correctamente https:\/\/t.co\/Rkl1DcxsdJ #NewsIglesia https:\/\/t.co\/okMMIQUYC9","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276710110,"id_str":"276710110","name":"\u25baNoticias Cristianas","screen_name":"NewsIglesia","location":"En la nube \u2601 ","url":"http:\/\/twitter.com\/MiguelNunezH","description":"Reunimos las mejores fuentes para informar sobre el acontecer Evang\u00e9lico y Protestante. Incluimos todo aquello que tiene influencia dentro y hacia la Iglesia","protected":false,"verified":false,"followers_count":89294,"friends_count":25901,"listed_count":255,"favourites_count":1,"statuses_count":164834,"created_at":"Sun Apr 03 22:52:54 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/227764267\/twitter.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/227764267\/twitter.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3220421495\/895e7bcb09e6a4f00b4f1c84d0672801_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3220421495\/895e7bcb09e6a4f00b4f1c84d0672801_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276710110\/1360243894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NewsIglesia","indices":[82,94]}],"urls":[{"url":"https:\/\/t.co\/Rkl1DcxsdJ","expanded_url":"http:\/\/dlvr.it\/Chfccp","display_url":"dlvr.it\/Chfccp","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":663727762033655809,"id_str":"663727762033655809","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4guUwAEI9BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4guUwAEI9BT.jpg","url":"https:\/\/t.co\/okMMIQUYC9","display_url":"pic.twitter.com\/okMMIQUYC9","expanded_url":"http:\/\/twitter.com\/NewsIglesia\/status\/663727762348228608\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727762033655809,"id_str":"663727762033655809","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4guUwAEI9BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4guUwAEI9BT.jpg","url":"https:\/\/t.co\/okMMIQUYC9","display_url":"pic.twitter.com\/okMMIQUYC9","expanded_url":"http:\/\/twitter.com\/NewsIglesia\/status\/663727762348228608\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080004666"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762310610944,"id_str":"663727762310610944","text":"Bikini girl gives a head...\n\nhttps:\/\/t.co\/5Q3DraKN5C\nhttps:\/\/t.co\/5Q3DraKN5C\nhttps:\/\/t.co\/5Q3DraKN5C https:\/\/t.co\/5UrQwZrKOL","source":"\u003ca href=\"http:\/\/www.videosxxxbook.com\" rel=\"nofollow\"\u003eLauraStatus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3309883792,"id_str":"3309883792","name":"*Laura*","screen_name":"laurasal6","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29587,"friends_count":26993,"listed_count":28,"favourites_count":730,"statuses_count":865,"created_at":"Fri Jun 05 21:37:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662319440218988544\/L8Iw2Fqq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662319440218988544\/L8Iw2Fqq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5Q3DraKN5C","expanded_url":"http:\/\/www.phyporn.com\/video\/7088","display_url":"phyporn.com\/video\/7088","indices":[29,52]},{"url":"https:\/\/t.co\/5Q3DraKN5C","expanded_url":"http:\/\/www.phyporn.com\/video\/7088","display_url":"phyporn.com\/video\/7088","indices":[53,76]},{"url":"https:\/\/t.co\/5Q3DraKN5C","expanded_url":"http:\/\/www.phyporn.com\/video\/7088","display_url":"phyporn.com\/video\/7088","indices":[77,100]}],"user_mentions":[],"symbols":[],"media":[{"id":663727761589198848,"id_str":"663727761589198848","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4fEW4AAJpxF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4fEW4AAJpxF.png","url":"https:\/\/t.co\/5UrQwZrKOL","display_url":"pic.twitter.com\/5UrQwZrKOL","expanded_url":"http:\/\/twitter.com\/laurasal6\/status\/663727762310610944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":449,"h":252,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":449,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727761589198848,"id_str":"663727761589198848","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4fEW4AAJpxF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4fEW4AAJpxF.png","url":"https:\/\/t.co\/5UrQwZrKOL","display_url":"pic.twitter.com\/5UrQwZrKOL","expanded_url":"http:\/\/twitter.com\/laurasal6\/status\/663727762310610944\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":449,"h":252,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":449,"h":252,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYI4fEW4AAJpxF.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080004657"} +{"delete":{"status":{"id":580378465167278080,"id_str":"580378465167278080","user_id":2277505188,"user_id_str":"2277505188"},"timestamp_ms":"1447080005057"}} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762335748096,"id_str":"663727762335748096","text":"https:\/\/t.co\/lKDhWf5rFt","source":"\u003ca href=\"http:\/\/lovelystocks.com\" rel=\"nofollow\"\u003eWatchTheFunds\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2343862982,"id_str":"2343862982","name":"WatchTheFunds","screen_name":"WatchTheFunds","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":322,"friends_count":0,"listed_count":18,"favourites_count":0,"statuses_count":59075,"created_at":"Fri Feb 14 17:09:44 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/475757304042618880\/GXfaDX___normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/475757304042618880\/GXfaDX___normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727762272821248,"id_str":"663727762272821248","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4hnWIAAdOhX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4hnWIAAdOhX.jpg","url":"https:\/\/t.co\/lKDhWf5rFt","display_url":"pic.twitter.com\/lKDhWf5rFt","expanded_url":"http:\/\/twitter.com\/WatchTheFunds\/status\/663727762335748096\/photo\/1","type":"photo","sizes":{"large":{"w":4,"h":4,"resize":"fit"},"medium":{"w":4,"h":4,"resize":"fit"},"small":{"w":4,"h":4,"resize":"fit"},"thumb":{"w":4,"h":4,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727762272821248,"id_str":"663727762272821248","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4hnWIAAdOhX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4hnWIAAdOhX.jpg","url":"https:\/\/t.co\/lKDhWf5rFt","display_url":"pic.twitter.com\/lKDhWf5rFt","expanded_url":"http:\/\/twitter.com\/WatchTheFunds\/status\/663727762335748096\/photo\/1","type":"photo","sizes":{"large":{"w":4,"h":4,"resize":"fit"},"medium":{"w":4,"h":4,"resize":"fit"},"small":{"w":4,"h":4,"resize":"fit"},"thumb":{"w":4,"h":4,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080004663"} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762323062785,"id_str":"663727762323062785","text":"\u7f8e\u4eba\u3055\u3093\ud83d\ude2d\ud83d\udc95\ud83d\udc95\ud83d\udc95\ud83d\udc95\ud83d\udc95\ud83d\udc95\u3060\u3044\u3059\u304d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/IyOYTn9kas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218377192,"id_str":"218377192","name":"\u307f\u3046\u3089\u306f\u795e\u6238\u5168\u30b9\u30c6\u3057\u305f\u3044","screen_name":"shineexkjh0408","location":"\u307c\u304f\u306e\u4eba\u751f\u30ad\u30df\u314e\u3145\u314e\u4ee5\u5916\u3059\u3079\u3066\u30aa\u30de\u30b1","url":"http:\/\/twpf.jp\/shineexkjh0408","description":"SHINee\uff3c\uff3c\\\\(\u2312\u25bd\u2312(\u03b4v\u03b4(\u314e\u3145\u314e)\u314dv\u314d)*`\u3142\u00b4*)\/\/\uff0f\uff0f \u25a1\u3058\u3087\u3093\u307a\u3093\u548c\u6b4c\u5c71\u4ee3\u8868\u314e\u3145\u314e\u25a1 \u3057\u3083\u3044\u306b\u304c\u3060\u3044\u3059\u304d\u3067\u3059\u3002Everybody\u304c\u3060\u3044\u3059\u304d\u3067\u3059\u3002\u3058\u3087\u3093\u3072\u3087\u3093\u304c\u305b\u304b\u3044\u3044\u3061\uff0192\uff01 Next\u21d2SW2016\u25c72\/12\u300114\u30014\/9\n\u203bSJ\u3069\u3093\u3078\u3055\u3093\u30ed\u30b9\u62d7\u3089\u305b\u4e2d","protected":false,"verified":false,"followers_count":166,"friends_count":226,"listed_count":12,"favourites_count":18804,"statuses_count":59820,"created_at":"Mon Nov 22 05:18:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654674229120466944\/YKxpW4ux_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654674229120466944\/YKxpW4ux_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218377192\/1445689267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727702877167617,"id_str":"663727702877167617","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1EWUYAE1Io8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1EWUYAE1Io8.jpg","url":"https:\/\/t.co\/IyOYTn9kas","display_url":"pic.twitter.com\/IyOYTn9kas","expanded_url":"http:\/\/twitter.com\/shineexkjh0408\/status\/663727762323062785\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727702877167617,"id_str":"663727702877167617","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1EWUYAE1Io8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1EWUYAE1Io8.jpg","url":"https:\/\/t.co\/IyOYTn9kas","display_url":"pic.twitter.com\/IyOYTn9kas","expanded_url":"http:\/\/twitter.com\/shineexkjh0408\/status\/663727762323062785\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663727718026997760,"id_str":"663727718026997760","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI18yUcAA5PWL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI18yUcAA5PWL.jpg","url":"https:\/\/t.co\/IyOYTn9kas","display_url":"pic.twitter.com\/IyOYTn9kas","expanded_url":"http:\/\/twitter.com\/shineexkjh0408\/status\/663727762323062785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}},{"id":663727733625655296,"id_str":"663727733625655296","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI225VEAA_NEt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI225VEAA_NEt.jpg","url":"https:\/\/t.co\/IyOYTn9kas","display_url":"pic.twitter.com\/IyOYTn9kas","expanded_url":"http:\/\/twitter.com\/shineexkjh0408\/status\/663727762323062785\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":898,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}},{"id":663727748309909504,"id_str":"663727748309909504","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3tmVAAANsww.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3tmVAAANsww.jpg","url":"https:\/\/t.co\/IyOYTn9kas","display_url":"pic.twitter.com\/IyOYTn9kas","expanded_url":"http:\/\/twitter.com\/shineexkjh0408\/status\/663727762323062785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004660"} +{"delete":{"status":{"id":663722745935609856,"id_str":"663722745935609856","user_id":93019900,"user_id_str":"93019900"},"timestamp_ms":"1447080005339"}} +{"delete":{"status":{"id":344424072643477505,"id_str":"344424072643477505","user_id":871444819,"user_id_str":"871444819"},"timestamp_ms":"1447080005560"}} +{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727762318868481,"id_str":"663727762318868481","text":"\u30e2\u30ab\u59c9\u53ef\u611b\u3059\u304e\u306a https:\/\/t.co\/7UJXmhiRzL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228167881,"id_str":"3228167881","name":"\u30a8\u30e1\u30e9\u30eb\u30c9\u6559\u6388","screen_name":"meraknight55","location":null,"url":null,"description":"\u30ef\u30fc\u30b9\u30c3\u30c8\u30ef\u30f3\uff01\u30ef\u30fc\u30b9\u30c3\u30c8\u30ef\u30f3\uff01 \u3000\u3000\u3000(\u81ea\u8650\u3067\u306f\u3042\u308a\u307e\u305b\u3093)\n\u8272\u3005\u306a\u30a2\u30cb\u30e1\u898b\u3066\u307e\u3059\u3002\n\u30b2\u30fc\u30e0\u306f3ds\u52e2\u3060\u3051\u3069\u30b9\u30de\u30d6\u30e9\u3068\u304b\n\u5f31\u3044\u3051\u3069\u30d1\u30ba\u30c9\u30e9\u3068\u304b\u30dd\u30b1\u30e2\u30f3\u3068\u304b\u3067\u3059\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":94,"friends_count":152,"listed_count":0,"favourites_count":6,"statuses_count":106,"created_at":"Wed May 27 10:59:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661181315476094976\/2TiiAqzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661181315476094976\/2TiiAqzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228167881\/1446474639","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727751141003264,"id_str":"663727751141003264","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI34JUEAARsJi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI34JUEAARsJi.png","url":"https:\/\/t.co\/7UJXmhiRzL","display_url":"pic.twitter.com\/7UJXmhiRzL","expanded_url":"http:\/\/twitter.com\/meraknight55\/status\/663727762318868481\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727751141003264,"id_str":"663727751141003264","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI34JUEAARsJi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI34JUEAARsJi.png","url":"https:\/\/t.co\/7UJXmhiRzL","display_url":"pic.twitter.com\/7UJXmhiRzL","expanded_url":"http:\/\/twitter.com\/meraknight55\/status\/663727762318868481\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663727744342102016,"id_str":"663727744342102016","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3e0VEAAyvkK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3e0VEAAyvkK.png","url":"https:\/\/t.co\/7UJXmhiRzL","display_url":"pic.twitter.com\/7UJXmhiRzL","expanded_url":"http:\/\/twitter.com\/meraknight55\/status\/663727762318868481\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663727750432206848,"id_str":"663727750432206848","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI31gUsAACE4F.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI31gUsAACE4F.png","url":"https:\/\/t.co\/7UJXmhiRzL","display_url":"pic.twitter.com\/7UJXmhiRzL","expanded_url":"http:\/\/twitter.com\/meraknight55\/status\/663727762318868481\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663727750440554496,"id_str":"663727750440554496","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI31iUEAAuMcV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI31iUEAAuMcV.png","url":"https:\/\/t.co\/7UJXmhiRzL","display_url":"pic.twitter.com\/7UJXmhiRzL","expanded_url":"http:\/\/twitter.com\/meraknight55\/status\/663727762318868481\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080004659"} +{"delete":{"status":{"id":657943196358410240,"id_str":"657943196358410240","user_id":21280620,"user_id_str":"21280620"},"timestamp_ms":"1447080005603"}} +{"delete":{"status":{"id":663726755686055936,"id_str":"663726755686055936","user_id":3457158493,"user_id_str":"3457158493"},"timestamp_ms":"1447080005564"}} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766525841408,"id_str":"663727766525841408","text":"RT @feliciaricoo_: How I'm tryna be with oomf https:\/\/t.co\/A7QusNUyWi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318763469,"id_str":"318763469","name":"the bomb","screen_name":"_iMechie","location":"i get around","url":"http:\/\/pornhub.com","description":"fuck you...\u203c\ufe0f","protected":false,"verified":false,"followers_count":1586,"friends_count":760,"listed_count":0,"favourites_count":2947,"statuses_count":70713,"created_at":"Fri Jun 17 00:52:23 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468734972774211584\/yrT5JG7P.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468734972774211584\/yrT5JG7P.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"030303","profile_text_color":"31F50A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568963075689447424\/WF_Vehtn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568963075689447424\/WF_Vehtn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318763469\/1446174235","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 17:05:47 +0000 2015","id":660502943389626369,"id_str":"660502943389626369","text":"How I'm tryna be with oomf https:\/\/t.co\/A7QusNUyWi","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258809602,"id_str":"3258809602","name":"goat","screen_name":"feliciaricoo_","location":"Cuban & Brazilian ","url":null,"description":"Fifteen \/\/ PV \u2764\ufe0f","protected":false,"verified":false,"followers_count":1211,"friends_count":499,"listed_count":11,"favourites_count":11561,"statuses_count":31096,"created_at":"Sat May 16 01:05:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621752508583673856\/pKpX0loQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621752508583673856\/pKpX0loQ.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655175071061929984\/UGOWpYxk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655175071061929984\/UGOWpYxk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258809602\/1447050550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2344,"favorite_count":1779,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/A7QusNUyWi","expanded_url":"https:\/\/vine.co\/v\/OdKzLMXMij9","display_url":"vine.co\/v\/OdKzLMXMij9","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/A7QusNUyWi","expanded_url":"https:\/\/vine.co\/v\/OdKzLMXMij9","display_url":"vine.co\/v\/OdKzLMXMij9","indices":[47,70]}],"user_mentions":[{"screen_name":"feliciaricoo_","name":"goat","id":3258809602,"id_str":"3258809602","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005662"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766517522432,"id_str":"663727766517522432","text":"This weekend was well needed! Laughing is my therapy and i lmfao this weekend, now im about to go to the spa( let us pray)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2534659191,"id_str":"2534659191","name":"P.e.T.e","screen_name":"iampjeezy","location":null,"url":null,"description":"Z\u20acR0 Fu\u00a9\u00a9$ given! \u2651\ufe0f Just living my life and chillin how i chill\u270c\ufe0ftell nipsey hussle n jeezy im lookn 4em","protected":false,"verified":false,"followers_count":64,"friends_count":132,"listed_count":0,"favourites_count":83,"statuses_count":2346,"created_at":"Thu May 08 04:55:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657949057600626688\/_MYZuFPW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657949057600626688\/_MYZuFPW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2534659191\/1441248960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005660"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766525882368,"id_str":"663727766525882368","text":"The Reckoning is Here\n Passing over our village\n All betwixt be damned","source":"\u003ca href=\"http:\/\/cheapbotsdonequick.com\" rel=\"nofollow\"\u003eCheap Bots, Done Quick!\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3976500017,"id_str":"3976500017","name":"Sean sux","screen_name":"memerbot404","location":"Australia","url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3403,"created_at":"Sat Oct 17 02:56:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655218660332580864\/jmdGlYJ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655218660332580864\/jmdGlYJ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3976500017\/1445051652","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005662"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766521688064,"id_str":"663727766521688064","text":"vividiva \u2606 guume pic.twitter.com\/8t9TR6q0f9163","source":"\u003ca href=\"http:\/\/emset.tk\" rel=\"nofollow\"\u003eEmset \u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278565800,"id_str":"3278565800","name":"jessica","screen_name":"jsyclr","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":331,"friends_count":463,"listed_count":0,"favourites_count":9,"statuses_count":9352,"created_at":"Mon Jul 13 13:52:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661669116818776064\/xXYZy3MS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661669116818776064\/xXYZy3MS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3278565800\/1446589182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080005661"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538440704,"id_str":"663727766538440704","text":"RT @Kw____11: \u0628\u0631\u0643 \u0628\u0648\u0627\u0644\u062f\u064a\u0643 \u0644\u064a\u0633 \u062a\u0643\u0631\u0645\u0627\u064b \u0648\u0641\u0636\u0644\u0627\u064b \u0645\u0646\u0643 ! \u0628\u0644 \u0647\u0648 \u0646\u0639\u0645\u0629 \u0633\u0627\u0642\u0647\u0627 \u0627\u0644\u0644\u0647 \u0644\u0643 \u060c \u0641\u0623\u0634\u0643\u0631\u0647\u0627 \u0648\u0642\u0645 \u0628\u0648\u0627\u062c\u0628\u0647\u0627 .! \n\n#\u0631\u0628\u064a_\u0627\u063a\u0641\u0631_\u0644\u0647\u0645_\u0648\u0627\u0631\u062d\u0645\u0647\u0645\u2728\n\n.\n\nhttps:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":887463013,"id_str":"887463013","name":"\u10e6 \u0645\u0631\u0633\u0649 \u0627\u0644\u0647\u0645\u0648\u0645 \u2765","screen_name":"AN__07","location":" ","url":null,"description":"\u2765 #\u0644\u0644\u0625\u0639\u0644\u0627\u0646 966568198898 \u2605","protected":false,"verified":false,"followers_count":452837,"friends_count":178858,"listed_count":392,"favourites_count":6,"statuses_count":177480,"created_at":"Wed Oct 17 19:55:26 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663154844178452480\/0dBjrPC-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663154844178452480\/0dBjrPC-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/887463013\/1446943392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:50:23 +0000 2015","id":663428369728610304,"id_str":"663428369728610304","text":"\u0628\u0631\u0643 \u0628\u0648\u0627\u0644\u062f\u064a\u0643 \u0644\u064a\u0633 \u062a\u0643\u0631\u0645\u0627\u064b \u0648\u0641\u0636\u0644\u0627\u064b \u0645\u0646\u0643 ! \u0628\u0644 \u0647\u0648 \u0646\u0639\u0645\u0629 \u0633\u0627\u0642\u0647\u0627 \u0627\u0644\u0644\u0647 \u0644\u0643 \u060c \u0641\u0623\u0634\u0643\u0631\u0647\u0627 \u0648\u0642\u0645 \u0628\u0648\u0627\u062c\u0628\u0647\u0627 .! \n\n#\u0631\u0628\u064a_\u0627\u063a\u0641\u0631_\u0644\u0647\u0645_\u0648\u0627\u0631\u062d\u0645\u0647\u0645\u2728\n\n.\n\nhttps:\/\/t.co\/Z3lYZal63c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848965786,"id_str":"2848965786","name":"\u2728\u0648\u0642\u0641 \u0644\u0623\u0628\u064a \u0648\u0623\u0645\u064a\u2728","screen_name":"Kw____11","location":"\u0627\u0644\u0643\u0648\u064a\u062a","url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0625\u062c\u0639\u0644 \u2764 #\u0623\u0628\u064a_\u0648\u0623\u0645\u064a \u2764 \u0645\u0646 \u0623\u0647\u0644 \u0627\u0644\u062c\u0646\u0629 \u0648\u0627\u062c\u0639\u0644 \u0627\u0644\u0631\u0633\u0648\u0644 \u0634\u0627\u0641\u0639\u0627\u064b \u0644\u0647\u0645 \u0648\u0627\u0644\u0633\u0646\u062f\u0633 \u0644\u0628\u0627\u0633\u0627\u064b \u0644\u0647\u0645 \u0648 \u0627\u0644\u0642\u0635\u0648\u0631 \u0633\u0643\u0646\u0627\u064b \u0644\u0647\u0645 \u0628\u0625\u0630\u0646\u0643 \u064a \u0623\u0631\u062d\u0645 \u0627\u0644\u0631\u0627\u062d\u0645\u064a\u0646","protected":false,"verified":false,"followers_count":51923,"friends_count":46557,"listed_count":138,"favourites_count":317,"statuses_count":68829,"created_at":"Thu Oct 09 15:46:59 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610557042353278978\/-jo5hUud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610557042353278978\/-jo5hUud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848965786\/1434403193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":126,"favorite_count":21,"entities":{"hashtags":[{"text":"\u0631\u0628\u064a_\u0627\u063a\u0641\u0631_\u0644\u0647\u0645_\u0648\u0627\u0631\u062d\u0645\u0647\u0645","indices":[88,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":571396658451214336,"id_str":"571396658451214336","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","url":"https:\/\/t.co\/Z3lYZal63c","display_url":"pic.twitter.com\/Z3lYZal63c","expanded_url":"http:\/\/twitter.com\/FhFh\/status\/571396735714480130\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":571396735714480130,"source_status_id_str":"571396735714480130","source_user_id":102547399,"source_user_id_str":"102547399"}]},"extended_entities":{"media":[{"id":571396658451214336,"id_str":"571396658451214336","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","url":"https:\/\/t.co\/Z3lYZal63c","display_url":"pic.twitter.com\/Z3lYZal63c","expanded_url":"http:\/\/twitter.com\/FhFh\/status\/571396735714480130\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":571396735714480130,"source_status_id_str":"571396735714480130","source_user_id":102547399,"source_user_id_str":"102547399"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0631\u0628\u064a_\u0627\u063a\u0641\u0631_\u0644\u0647\u0645_\u0648\u0627\u0631\u062d\u0645\u0647\u0645","indices":[102,123]}],"urls":[],"user_mentions":[{"screen_name":"Kw____11","name":"\u2728\u0648\u0642\u0641 \u0644\u0623\u0628\u064a \u0648\u0623\u0645\u064a\u2728","id":2848965786,"id_str":"2848965786","indices":[3,12]}],"symbols":[],"media":[{"id":571396658451214336,"id_str":"571396658451214336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","url":"https:\/\/t.co\/Z3lYZal63c","display_url":"pic.twitter.com\/Z3lYZal63c","expanded_url":"http:\/\/twitter.com\/FhFh\/status\/571396735714480130\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":571396735714480130,"source_status_id_str":"571396735714480130","source_user_id":102547399,"source_user_id_str":"102547399"}]},"extended_entities":{"media":[{"id":571396658451214336,"id_str":"571396658451214336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-4CO8TUcAA_iY7.jpg","url":"https:\/\/t.co\/Z3lYZal63c","display_url":"pic.twitter.com\/Z3lYZal63c","expanded_url":"http:\/\/twitter.com\/FhFh\/status\/571396735714480130\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":571396735714480130,"source_status_id_str":"571396735714480130","source_user_id":102547399,"source_user_id_str":"102547399"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766509125632,"id_str":"663727766509125632","text":"RT @Kw_Qseed: \u0627\u0644\u0623\u0646\u062b\u064e\u0649 : \u062a\u062a\u062d\u0648\u0644 \u0625\u0644\u0649 \u0623\u0645\u0650\u064a\u0631\u064e\u0629 \u0641\u0627\u062a\u0650\u0646\u0629 \n\u0639\u0646\u062f\u0645\u064e\u0627 \u062a\u062c\u0650\u062f \u0627\u0644\u0625\u0647\u062a\u0650\u0645\u0627\u0645 \u0648\u0627\u0644\u0625\u062d\u062a\u064f\u0648\u0627\u0621 \n\u0645\u0650\u0645\u0646 \u062a\u064f\u062d\u0650\u0628 \u2665\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":373845905,"id_str":"373845905","name":"ebrahim radwan","screen_name":"HRadwa45","location":"egypt\/ gyza","url":null,"description":"\u0627\r\n \u0645\u0627 \u0642\u0644 \u0648\u0643\u0641\u0649 \u062e\u064a\u0631 \u0645\u0645\u0627 \u0643\u062b\u0631 \u0648\u0623\u0644\u0647\u0649 ( \u0627\u0644\u0644\u0647\u0645 \u0627\u0646\u0649 \u0627\u0639\u0648\u0630 \u0628\u0631\u0636\u0627\u0643 \u0645\u0646 \u0633\u062e\u0637\u0643 \u0648\u0628\u0645\u0639\u0627\u0641\u0627\u062a\u0643 \u0645\u0646 \u0639\u0642\u0648\u0628\u062a\u0643","protected":false,"verified":false,"followers_count":940,"friends_count":1492,"listed_count":1,"favourites_count":255,"statuses_count":22910,"created_at":"Thu Sep 15 08:32:31 +0000 2011","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2905731413\/3b8aa60f434fe5794b7d0c381b67cb7e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2905731413\/3b8aa60f434fe5794b7d0c381b67cb7e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373845905\/1361185902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:52:52 +0000 2015","id":663489390417719296,"id_str":"663489390417719296","text":"\u0627\u0644\u0623\u0646\u062b\u064e\u0649 : \u062a\u062a\u062d\u0648\u0644 \u0625\u0644\u0649 \u0623\u0645\u0650\u064a\u0631\u064e\u0629 \u0641\u0627\u062a\u0650\u0646\u0629 \n\u0639\u0646\u062f\u0645\u064e\u0627 \u062a\u062c\u0650\u062f \u0627\u0644\u0625\u0647\u062a\u0650\u0645\u0627\u0645 \u0648\u0627\u0644\u0625\u062d\u062a\u064f\u0648\u0627\u0621 \n\u0645\u0650\u0645\u0646 \u062a\u064f\u062d\u0650\u0628 \u2665\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":522070287,"id_str":"522070287","name":"\u0623\u0633\u064a\u0631 \u0627\u0644\u0635\u0645\u062a ..!","screen_name":"Kw_Qseed","location":"Kuwait","url":null,"description":"\ufd3f \u0644\u064a\u062a \u0627\u0644\u0644\u064a\u0627\u0644\u064a \u0641\u064a \u0648\u0635\u0627\u0644\u0643 \u0643\u0631\u064a\u0645\u0647 ..! \ufd3e","protected":false,"verified":false,"followers_count":462635,"friends_count":302585,"listed_count":345,"favourites_count":909,"statuses_count":53129,"created_at":"Mon Mar 12 08:22:50 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602783916324327424\/X6CxHICv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602783916324327424\/X6CxHICv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522070287\/1432549859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":223,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kw_Qseed","name":"\u0623\u0633\u064a\u0631 \u0627\u0644\u0635\u0645\u062a ..!","id":522070287,"id_str":"522070287","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080005658"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766530076672,"id_str":"663727766530076672","text":"RT @urbanebooks: The thrilling Harm by @realhughfraser - get your copy now, what are you waiting for?! https:\/\/t.co\/7lhsYpVhk0 https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2407059251,"id_str":"2407059251","name":"Barbara Copperthwait","screen_name":"BCopperthwait","location":null,"url":"http:\/\/www.barbaracopperthwaite.com","description":"Journalist & best-selling crime novelist. Author of INVISIBLE and FLOWERS FOR THE DEAD. Owner of Go Be Wild! nature website. Loves dogs, chocolate, random facts","protected":false,"verified":false,"followers_count":2105,"friends_count":2032,"listed_count":135,"favourites_count":2057,"statuses_count":8494,"created_at":"Thu Mar 13 09:10:41 +0000 2014","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448163209246031872\/6rz2jjs3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448163209246031872\/6rz2jjs3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2407059251\/1442907797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:26:43 +0000 2015","id":662380547629543428,"id_str":"662380547629543428","text":"The thrilling Harm by @realhughfraser - get your copy now, what are you waiting for?! https:\/\/t.co\/7lhsYpVhk0 https:\/\/t.co\/QNpx98wXAr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1485817513,"id_str":"1485817513","name":"UrbanePublications","screen_name":"urbanebooks","location":"Rochester","url":"http:\/\/urbanepublications.com","description":"An independent collaborative publisher of fiction, business, self development and popular reference titles. Share your words!","protected":false,"verified":false,"followers_count":1084,"friends_count":1312,"listed_count":68,"favourites_count":129,"statuses_count":3870,"created_at":"Wed Jun 05 19:17:54 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548433838783754240\/jk8o5Fg9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548433838783754240\/jk8o5Fg9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1485817513\/1419591832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7lhsYpVhk0","expanded_url":"http:\/\/www.amazon.co.uk\/Harm-Trust-No-One-Hugh-Fraser\/dp\/1910692735\/ref=sr_1_1?ie=UTF8&qid=1446758750&sr=8-1&keywords=harm+fraser","display_url":"amazon.co.uk\/Harm-Trust-No-\u2026","indices":[86,109]}],"user_mentions":[{"screen_name":"realhughfraser","name":"Hugh Fraser","id":3290384530,"id_str":"3290384530","indices":[22,37]}],"symbols":[],"media":[{"id":662380546442592257,"id_str":"662380546442592257","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","url":"https:\/\/t.co\/QNpx98wXAr","display_url":"pic.twitter.com\/QNpx98wXAr","expanded_url":"http:\/\/twitter.com\/urbanebooks\/status\/662380547629543428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1542,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662380546442592257,"id_str":"662380546442592257","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","url":"https:\/\/t.co\/QNpx98wXAr","display_url":"pic.twitter.com\/QNpx98wXAr","expanded_url":"http:\/\/twitter.com\/urbanebooks\/status\/662380547629543428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1542,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7lhsYpVhk0","expanded_url":"http:\/\/www.amazon.co.uk\/Harm-Trust-No-One-Hugh-Fraser\/dp\/1910692735\/ref=sr_1_1?ie=UTF8&qid=1446758750&sr=8-1&keywords=harm+fraser","display_url":"amazon.co.uk\/Harm-Trust-No-\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"urbanebooks","name":"UrbanePublications","id":1485817513,"id_str":"1485817513","indices":[3,15]},{"screen_name":"realhughfraser","name":"Hugh Fraser","id":3290384530,"id_str":"3290384530","indices":[39,54]}],"symbols":[],"media":[{"id":662380546442592257,"id_str":"662380546442592257","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","url":"https:\/\/t.co\/QNpx98wXAr","display_url":"pic.twitter.com\/QNpx98wXAr","expanded_url":"http:\/\/twitter.com\/urbanebooks\/status\/662380547629543428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1542,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}},"source_status_id":662380547629543428,"source_status_id_str":"662380547629543428","source_user_id":1485817513,"source_user_id_str":"1485817513"}]},"extended_entities":{"media":[{"id":662380546442592257,"id_str":"662380546442592257","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE_mPjXAAEq3zV.jpg","url":"https:\/\/t.co\/QNpx98wXAr","display_url":"pic.twitter.com\/QNpx98wXAr","expanded_url":"http:\/\/twitter.com\/urbanebooks\/status\/662380547629543428\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1542,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}},"source_status_id":662380547629543428,"source_status_id_str":"662380547629543428","source_user_id":1485817513,"source_user_id_str":"1485817513"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005663"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766517514240,"id_str":"663727766517514240","text":"Baro 1019,0mb-Stabiel. Temp 12,5c (-0,3). Hum 84%. Rain last 24h 1,3mm. Wind 19,3kph WSW \/ gust 27,0kph. UV 0. #hetweerinwestzaan","source":"\u003ca href=\"http:\/\/sandaysoft.com\/\" rel=\"nofollow\"\u003eSandaysoft Cumulus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":371376582,"id_str":"371376582","name":"MeteoWestzaan.nl","screen_name":"MeteoWestzaan","location":"Westzaan, Netherlands","url":"http:\/\/www.meteowestzaan.nl","description":"Oregon Scientific WMR200 weatherstation. Een weerstation in Westzaan, ook bekend als Meteo Westzaan.","protected":false,"verified":false,"followers_count":34,"friends_count":0,"listed_count":7,"favourites_count":0,"statuses_count":212140,"created_at":"Sat Sep 10 18:46:40 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/328163420\/100_3067.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/328163420\/100_3067.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1537426154\/100_3067_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1537426154\/100_3067_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[52.46472222,4.76777778]},"coordinates":{"type":"Point","coordinates":[4.76777778,52.46472222]},"place":{"id":"8390fb85a49ea97e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8390fb85a49ea97e.json","place_type":"city","name":"Zaanstad","full_name":"Zaanstad, Noord-Holland","country_code":"NL","country":"Nederland","bounding_box":{"type":"Polygon","coordinates":[[[4.674824,52.416524],[4.674824,52.520406],[4.862646,52.520406],[4.862646,52.416524]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hetweerinwestzaan","indices":[111,129]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sl","timestamp_ms":"1447080005660"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504886273,"id_str":"663727766504886273","text":"RT @ihhinsaniyardim: 5 ya\u015f\u0131ndaki Filistinli ter\u00f6rist (!) 3 \u0130srail askeri taraf\u0131ndan tutukland\u0131. https:\/\/t.co\/Kr8CxJdUxf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1122507793,"id_str":"1122507793","name":"\u0628\u0634\u0631\u0649","screen_name":"bus_clk","location":null,"url":null,"description":"Psikoloji\u2600\ufe0f","protected":false,"verified":false,"followers_count":362,"friends_count":255,"listed_count":1,"favourites_count":2816,"statuses_count":2903,"created_at":"Sat Jan 26 16:34:52 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661584552561926144\/R3EZlSXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661584552561926144\/R3EZlSXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1122507793\/1438676938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:04 +0000 2015","id":663725998433837056,"id_str":"663725998433837056","text":"5 ya\u015f\u0131ndaki Filistinli ter\u00f6rist (!) 3 \u0130srail askeri taraf\u0131ndan tutukland\u0131. https:\/\/t.co\/Kr8CxJdUxf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114452294,"id_str":"114452294","name":"\u0130HH","screen_name":"ihhinsaniyardim","location":null,"url":"http:\/\/ihh.org.tr","description":"\u0130HH \u0130nsani Yard\u0131m Vakf\u0131; sava\u015f, afet ve yoksulluk olan t\u00fcm \u00fclke ve b\u00f6lgelerde faaliyetler y\u00fcr\u00fct\u00fcr.","protected":false,"verified":true,"followers_count":276672,"friends_count":589,"listed_count":525,"favourites_count":2753,"statuses_count":28174,"created_at":"Mon Feb 15 13:16:27 +0000 2010","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDEDED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496549269994614784\/oJFADtk4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496549269994614784\/oJFADtk4.png","profile_background_tile":false,"profile_link_color":"D10000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638288729644367872\/5DOZR4NL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638288729644367872\/5DOZR4NL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114452294\/1445280961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725873183354880,"id_str":"663725873183354880","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","url":"https:\/\/t.co\/Kr8CxJdUxf","display_url":"pic.twitter.com\/Kr8CxJdUxf","expanded_url":"http:\/\/twitter.com\/ihhinsaniyardim\/status\/663725998433837056\/video\/1","type":"photo","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725873183354880,"id_str":"663725873183354880","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","url":"https:\/\/t.co\/Kr8CxJdUxf","display_url":"pic.twitter.com\/Kr8CxJdUxf","expanded_url":"http:\/\/twitter.com\/ihhinsaniyardim\/status\/663725998433837056\/video\/1","type":"video","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":26466,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/vid\/240x180\/wFYRaaSpdSaO6iUI.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/vid\/240x180\/wFYRaaSpdSaO6iUI.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/pl\/R_K9mdsCST2uUPBJ.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/pl\/R_K9mdsCST2uUPBJ.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ihhinsaniyardim","name":"\u0130HH","id":114452294,"id_str":"114452294","indices":[3,19]}],"symbols":[],"media":[{"id":663725873183354880,"id_str":"663725873183354880","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","url":"https:\/\/t.co\/Kr8CxJdUxf","display_url":"pic.twitter.com\/Kr8CxJdUxf","expanded_url":"http:\/\/twitter.com\/ihhinsaniyardim\/status\/663725998433837056\/video\/1","type":"photo","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}},"source_status_id":663725998433837056,"source_status_id_str":"663725998433837056","source_user_id":114452294,"source_user_id_str":"114452294"}]},"extended_entities":{"media":[{"id":663725873183354880,"id_str":"663725873183354880","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725873183354880\/pu\/img\/4vRwhnn0LkTzyWGC.jpg","url":"https:\/\/t.co\/Kr8CxJdUxf","display_url":"pic.twitter.com\/Kr8CxJdUxf","expanded_url":"http:\/\/twitter.com\/ihhinsaniyardim\/status\/663725998433837056\/video\/1","type":"video","sizes":{"medium":{"w":240,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":180,"resize":"fit"},"large":{"w":240,"h":180,"resize":"fit"}},"source_status_id":663725998433837056,"source_status_id_str":"663725998433837056","source_user_id":114452294,"source_user_id_str":"114452294","video_info":{"aspect_ratio":[4,3],"duration_millis":26466,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/vid\/240x180\/wFYRaaSpdSaO6iUI.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/vid\/240x180\/wFYRaaSpdSaO6iUI.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/pl\/R_K9mdsCST2uUPBJ.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725873183354880\/pu\/pl\/R_K9mdsCST2uUPBJ.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766521511936,"id_str":"663727766521511936","text":"@__R__t_t \u6c17\u306b\u306a\u308a\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711380449562625,"in_reply_to_status_id_str":"663711380449562625","in_reply_to_user_id":4166267592,"in_reply_to_user_id_str":"4166267592","in_reply_to_screen_name":"__R__t_t","user":{"id":3064700041,"id_str":"3064700041","name":"\u30a2\u30c3\u30d7\u30eb\u30c6\u30a3\u30fc\u3055\u3093","screen_name":"_p_ry_q_","location":null,"url":null,"description":"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u9700\u8981\u306a\u3044\u304b\u3082\u3088\uff1f\uff1f\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\uff0d\uff0d\uff0d","protected":false,"verified":false,"followers_count":836,"friends_count":739,"listed_count":15,"favourites_count":175,"statuses_count":2248,"created_at":"Fri Mar 06 11:25:00 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657621716424757248\/-sd3Qb2G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657621716424757248\/-sd3Qb2G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064700041\/1441531322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__R__t_t","name":"\u2661 \u308a\u3064 \u7121\u511f\u63d0\u4f9b\u3057\u307e\u3059","id":4166267592,"id_str":"4166267592","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005661"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766521581568,"id_str":"663727766521581568","text":"12 Curiosidades de los juegos ol\u00edmpicos que no sab\u00edas (0 puntos) https:\/\/t.co\/ThP8dKiFPv","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363436502,"id_str":"363436502","name":"Adrian","screen_name":"TitanCbaNoOK","location":null,"url":null,"description":"Esta cuenta la uso solo para TC y compartir info en gral. Mi cuenta personal es @TitanCba","protected":false,"verified":false,"followers_count":159,"friends_count":2,"listed_count":23,"favourites_count":2,"statuses_count":213553,"created_at":"Sun Aug 28 02:41:32 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1516770729\/TitanCBA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1516770729\/TitanCBA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363436502\/1349271673","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ThP8dKiFPv","expanded_url":"http:\/\/dlvr.it\/ChfZg6","display_url":"dlvr.it\/ChfZg6","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080005661"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766521663489,"id_str":"663727766521663489","text":"Officials Secretly Added Cancer-Causing Chemicals to Sacramento\u2019s Water Supply https:\/\/t.co\/R9xGhXCILd","source":"\u003ca href=\"http:\/\/winthecustomer.com\/\" rel=\"nofollow\"\u003eWin the Customer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76227785,"id_str":"76227785","name":"The D.C. Clothesline","screen_name":"DCClothesline","location":"Everywhere","url":"http:\/\/dcclothesline.com\/","description":"Airing Out America's Dirty Laundry. #tcot","protected":false,"verified":false,"followers_count":10741,"friends_count":2048,"listed_count":268,"favourites_count":33,"statuses_count":69983,"created_at":"Tue Sep 22 02:34:29 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493165757488828416\/FqJK4NwY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493165757488828416\/FqJK4NwY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76227785\/1406414778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R9xGhXCILd","expanded_url":"http:\/\/tinyurl.com\/qzw32ua","display_url":"tinyurl.com\/qzw32ua","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005661"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538350592,"id_str":"663727766538350592","text":"\u304a\u3084\u3059\u307f\u306a\u3055\u3044","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":998744791,"id_str":"998744791","name":"piyodamarizumu","screen_name":"piyodamarizumu1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":34,"listed_count":0,"favourites_count":0,"statuses_count":3866,"created_at":"Sun Dec 09 06:53:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504931328,"id_str":"663727766504931328","text":"RT @_NoticiasCNN: Mira como quedo esta Joven tras cirug\u00eda pl\u00e1stica! \n\nVIDEO https:\/\/t.co\/Aey3hF8d3l\n\nIncreible :( https:\/\/t.co\/iltKKbU1Vy","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003esawsys5\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2939769663,"id_str":"2939769663","name":"kim jong un","screen_name":"AmadisimoLider","location":"norcorea","url":"https:\/\/www.youtube.com\/user\/elgranreymumo","description":"kim jong un","protected":false,"verified":false,"followers_count":2402,"friends_count":2410,"listed_count":1,"favourites_count":81,"statuses_count":681,"created_at":"Wed Dec 24 18:21:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/568987039433904128\/mkNGia2l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/568987039433904128\/mkNGia2l.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619618813110317056\/MLbD4sKi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619618813110317056\/MLbD4sKi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2939769663\/1436563587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:27:44 +0000 2015","id":663618959741161473,"id_str":"663618959741161473","text":"Mira como quedo esta Joven tras cirug\u00eda pl\u00e1stica! \n\nVIDEO https:\/\/t.co\/Aey3hF8d3l\n\nIncreible :( https:\/\/t.co\/iltKKbU1Vy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290627224,"id_str":"3290627224","name":"CNN en Espa\u00f1ol","screen_name":"_NoticiasCNN","location":"Atlanta ","url":null,"description":"CNN en Espa\u00f1ol es tu principal fuente de noticias. Cubrimos lo que pasa en Am\u00e9rica Latina y el resto del mundo. Vive la noticia","protected":false,"verified":false,"followers_count":112674,"friends_count":937,"listed_count":14,"favourites_count":301,"statuses_count":451,"created_at":"Tue May 19 22:45:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605476390524223489\/ntwOsXhZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605476390524223489\/ntwOsXhZ.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623343500801609728\/nk4F-OGJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623343500801609728\/nk4F-OGJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290627224\/1437451668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Aey3hF8d3l","expanded_url":"http:\/\/bit.ly\/1M1lt3p","display_url":"bit.ly\/1M1lt3p","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":663618958222860288,"id_str":"663618958222860288","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","url":"https:\/\/t.co\/iltKKbU1Vy","display_url":"pic.twitter.com\/iltKKbU1Vy","expanded_url":"http:\/\/twitter.com\/_NoticiasCNN\/status\/663618959741161473\/photo\/1","type":"photo","sizes":{"large":{"w":606,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":508,"resize":"fit"},"small":{"w":340,"h":288,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663618958222860288,"id_str":"663618958222860288","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","url":"https:\/\/t.co\/iltKKbU1Vy","display_url":"pic.twitter.com\/iltKKbU1Vy","expanded_url":"http:\/\/twitter.com\/_NoticiasCNN\/status\/663618959741161473\/photo\/1","type":"photo","sizes":{"large":{"w":606,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":508,"resize":"fit"},"small":{"w":340,"h":288,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Aey3hF8d3l","expanded_url":"http:\/\/bit.ly\/1M1lt3p","display_url":"bit.ly\/1M1lt3p","indices":[76,99]}],"user_mentions":[{"screen_name":"_NoticiasCNN","name":"CNN en Espa\u00f1ol","id":3290627224,"id_str":"3290627224","indices":[3,16]}],"symbols":[],"media":[{"id":663618958222860288,"id_str":"663618958222860288","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","url":"https:\/\/t.co\/iltKKbU1Vy","display_url":"pic.twitter.com\/iltKKbU1Vy","expanded_url":"http:\/\/twitter.com\/_NoticiasCNN\/status\/663618959741161473\/photo\/1","type":"photo","sizes":{"large":{"w":606,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":508,"resize":"fit"},"small":{"w":340,"h":288,"resize":"fit"}},"source_status_id":663618959741161473,"source_status_id_str":"663618959741161473","source_user_id":3290627224,"source_user_id_str":"3290627224"}]},"extended_entities":{"media":[{"id":663618958222860288,"id_str":"663618958222860288","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWl7S8WoAA3cTO.jpg","url":"https:\/\/t.co\/iltKKbU1Vy","display_url":"pic.twitter.com\/iltKKbU1Vy","expanded_url":"http:\/\/twitter.com\/_NoticiasCNN\/status\/663618959741161473\/photo\/1","type":"photo","sizes":{"large":{"w":606,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":508,"resize":"fit"},"small":{"w":340,"h":288,"resize":"fit"}},"source_status_id":663618959741161473,"source_status_id_str":"663618959741161473","source_user_id":3290627224,"source_user_id_str":"3290627224"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504914944,"id_str":"663727766504914944","text":"\u041a\u0443\u043f\u0438\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u0438\u0447\u0435\u0441\u043a\u0443\u044e \u0438\u043d\u0432\u0430\u043b\u0438\u0434\u043d\u0443\u044e \u043a\u043e\u043b\u044f\u0441\u043a\u0443 \u043f\u043e \u0432\u044b\u0433\u043e\u0434\u043d\u043e\u0439 \u0446\u0435\u043d\u0435 https:\/\/t.co\/uHImZeVV9U","source":"\u003ca href=\"https:\/\/twitter.com\/olegsadovskiy\" rel=\"nofollow\"\u003eolegsadovskiy\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":819008431,"id_str":"819008431","name":"\u0421\u0422\u0418\u041b\u042c","screen_name":"style_and_","location":null,"url":null,"description":"\u0441\u0442\u0438\u043b\u044c","protected":false,"verified":false,"followers_count":7460,"friends_count":3960,"listed_count":55,"favourites_count":137,"statuses_count":228104,"created_at":"Wed Sep 12 06:53:59 +0000 2012","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3703967795\/485cebe0265fdebe56319ec965cdc7f0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3703967795\/485cebe0265fdebe56319ec965cdc7f0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uHImZeVV9U","expanded_url":"http:\/\/bit.ly\/1Mk54EZ","display_url":"bit.ly\/1Mk54EZ","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ru","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766534156288,"id_str":"663727766534156288","text":"\u4eca\u6c17\u4ed8\u3044\u305f\u3089\u771f\u9854\u3067\u30cf\u30c3\u30d4\u30fc\u30bf\u30fc\u30f3\u3092\u30d0\u30ea\u30d0\u30ea\u98df\u3079\u3066\u305f\u2026\u305d\u3082\u305d\u3082\u30cf\u30c3\u30d4\u30fc\u30bf\u30fc\u30f3\u306a\u3093\u3067\u3042\u308b\u306e\u2026\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173142618,"id_str":"173142618","name":"\u3086\u3046","screen_name":"0410yuu","location":"\u3060\u57fc\u7389","url":null,"description":"\u25a0\u6210\u4eba\u6e08\u25a0\u3053\u3063\u3077\u308c\u7a00\u306b\u3042\u308a\u6ce8\u610f\u25a0\u597d\u304d:K-POP(\u4e3b\u306bSME\u3002SHINee\u3068f(x)\u306eATM)\/\uc885\ud604\/\ub824\uc6b1\/\u5468\u89c5\/\ub77c\ube44\/VIXX\/EXID\/AOA\/Gero\/RPG(\u7279\u306bDQ)\/APH\/\u307e\u3069\u30de\u30ae\/HQ\u203c\ufe0e\/\u3068\u3046\u3089\u3076\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u30cb\u30c1\u30a2\u30b5ets...\u25a0\u6240\u5c5e:\u3057\u3083\u3092\u308b(\u30b8\u30e7\u30f3\u30da\u30f3\u314e\u3145\u314e\u5bc4\u308a\u306e\u304a\u308b\u30da\u30f3)\/\u30b4\u6c11\/\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc","protected":false,"verified":false,"followers_count":92,"friends_count":174,"listed_count":4,"favourites_count":5867,"statuses_count":36842,"created_at":"Sat Jul 31 15:13:24 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034409307029\/81e481a8f739fd5bcc7bd566cb8c663b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034409307029\/81e481a8f739fd5bcc7bd566cb8c663b.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586186838097821697\/PBO-p8CL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586186838097821697\/PBO-p8CL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173142618\/1423228457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005664"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766542622720,"id_str":"663727766542622720","text":"No puedo creer que falte tan poco para mis 15","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":354635799,"id_str":"354635799","name":"Luli","screen_name":"lucha_abascia","location":"Rosario, Argentina","url":null,"description":"14. Hockey bancario. De rosario y de central. snatchap: luliabascia","protected":false,"verified":false,"followers_count":273,"friends_count":289,"listed_count":1,"favourites_count":450,"statuses_count":8555,"created_at":"Sun Aug 14 01:58:59 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"850CF5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648982995106439168\/mX1zI0ex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648982995106439168\/mX1zI0ex_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354635799\/1443564575","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080005666"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766508974080,"id_str":"663727766508974080","text":"@barbieeimperial luh ambitter neto kay ylona","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663011311551295488,"in_reply_to_status_id_str":"663011311551295488","in_reply_to_user_id":3235964202,"in_reply_to_user_id_str":"3235964202","in_reply_to_screen_name":"barbieeimperial","user":{"id":551682552,"id_str":"551682552","name":"M","screen_name":"maucenen","location":"neverland\u2601 \u2022 tenerife sea","url":null,"description":"I bought the world and sold my heart, but You traded heaven to have me again.","protected":false,"verified":false,"followers_count":496,"friends_count":384,"listed_count":1,"favourites_count":1185,"statuses_count":5581,"created_at":"Thu Apr 12 05:45:02 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604596375414652929\/r4BFwAa2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604596375414652929\/r4BFwAa2.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660653111501918209\/77qSB6M__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660653111501918209\/77qSB6M__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551682552\/1446994411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"barbieeimperial","name":"Barbie Imperial","id":3235964202,"id_str":"3235964202","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080005658"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766534123521,"id_str":"663727766534123521","text":"@Atsu_0924 \u304b\u3059\u304b\u3088\u7206\u7b11\n\u306f\u3088\u3057\u308d\u3088\u3042\u3044\u3064ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660300824577,"in_reply_to_status_id_str":"663727660300824577","in_reply_to_user_id":3075267745,"in_reply_to_user_id_str":"3075267745","in_reply_to_screen_name":"Atsu_0924","user":{"id":3836983393,"id_str":"3836983393","name":"YUGA HARIKI","screen_name":"estsoccer1839","location":"\u795e\u6238\u7b2c\u4e00\u3067\u30b5\u30c3\u30ab\u30fc\u3057\u305f\u304b\u3063\u305f\u3002","url":"http:\/\/Instagram.com\/yugahariki","description":"\u9ad8\u68211\u5e74\u3002\u30b5\u30c3\u30ab\u30fc\u3002#39\u3002MF\u3002\u6bce\u65e5\u9752\u6625\u3002\u65e5\u3005\u9032\u6b69\u3002\u30aa\u30b7\u30e3\u30ec\u3002NIKE\u3002NEXT\u21d2\u533b\u8005\u533b\u7642\u7cfb\u30fb\u8abf\u7406\u5e2b\u3069\u3063\u3061\u304b\u3002","protected":false,"verified":false,"followers_count":126,"friends_count":122,"listed_count":0,"favourites_count":227,"statuses_count":83,"created_at":"Fri Oct 09 13:50:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662280792526094336\/4Wa_g7e3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662280792526094336\/4Wa_g7e3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3836983393\/1446735020","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Atsu_0924","name":"\u6566\u54c9","id":3075267745,"id_str":"3075267745","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005664"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766513184768,"id_str":"663727766513184768","text":"@take_ko_bs_ \nB\u2019z \u300eRED\u300f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724899093995520,"in_reply_to_status_id_str":"663724899093995520","in_reply_to_user_id":2915737669,"in_reply_to_user_id_str":"2915737669","in_reply_to_screen_name":"take_ko_bs_","user":{"id":2915737669,"id_str":"2915737669","name":"\u30bf\u30b1@\u30c1\u30fc\u30e0\u30ca\u30ac\u30b7\u30de\u4e3b\u5c06","screen_name":"take_ko_bs_","location":"\u7fa4\u99ac\u770c ","url":null,"description":"\u30d0\u30c8\u30b9\u30d4\u4ef2\u9593\u3092\u5897\u3084\u3057\u305f\u304f\u3066\u3001\u59cb\u3081\u307e\u3057\u305f\uff01\u7686\u69d8\u3001\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u30d0\u30c8\u30b9\u30d4HP\u3001\u904b\u55b6\u3057\u3066\u307e\u3059\u3002\u662f\u975e\u3001\u304a\u8d8a\u3057\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":427,"friends_count":520,"listed_count":7,"favourites_count":2429,"statuses_count":4284,"created_at":"Mon Dec 01 14:50:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648097198962401280\/xGxpFVog_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648097198962401280\/xGxpFVog_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915737669\/1445101091","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"take_ko_bs_","name":"\u30bf\u30b1@\u30c1\u30fc\u30e0\u30ca\u30ac\u30b7\u30de\u4e3b\u5c06","id":2915737669,"id_str":"2915737669","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005659"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538448897,"id_str":"663727766538448897","text":"#DancingThroughThe6ix #PearsonDance2k15","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1027623830,"id_str":"1027623830","name":"GXNIC\u0394 .","screen_name":"JGenica21_XO","location":"Toronto, ON","url":"http:\/\/gxnica.vsco.co","description":"Pianist | Singer | Photographer \u2022 \u0ba4\u0bae\u0bbf\u0bb4\u0bc0\u0bb4\u0bae\u0bcd \u2022 \u0bd0 \nIG: genica21_xo","protected":false,"verified":false,"followers_count":284,"friends_count":251,"listed_count":0,"favourites_count":4763,"statuses_count":19726,"created_at":"Sat Dec 22 02:57:21 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117006763\/be770ba0393be3f881d1e6cb06255d56.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117006763\/be770ba0393be3f881d1e6cb06255d56.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662104532680245248\/AfPtrims_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662104532680245248\/AfPtrims_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1027623830\/1442888785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DancingThroughThe6ix","indices":[0,21]},{"text":"PearsonDance2k15","indices":[22,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766517342208,"id_str":"663727766517342208","text":"@kinugosipurin \u6c17\u6301\u3061\u60aa\u3044\u3067\u3059\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727384680468480,"in_reply_to_status_id_str":"663727384680468480","in_reply_to_user_id":862404260,"in_reply_to_user_id_str":"862404260","in_reply_to_screen_name":"kinugosipurin","user":{"id":2598059148,"id_str":"2598059148","name":"\u3086","screen_name":"YUKOJAMM","location":null,"url":null,"description":"\u3086\u3046\u3053","protected":false,"verified":false,"followers_count":342,"friends_count":353,"listed_count":4,"favourites_count":6404,"statuses_count":3817,"created_at":"Tue Jul 01 14:27:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639346267668148224\/fcExodpJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639346267668148224\/fcExodpJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2598059148\/1443679965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kinugosipurin","name":"\u308a","id":862404260,"id_str":"862404260","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005660"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766509080576,"id_str":"663727766509080576","text":"@jane_stoun @can_feel_again *\u043a\u0440\u0435\u043f\u043a\u043e \u043e\u0431\u043d\u0438\u043c\u0430\u044e* \u043d\u0443, \u044f \u043f\u0438\u0434\u0440\u0438\u043b\u0430, \u0449\u0438\u0442\u043e \u043f\u043e\u0434\u0435\u043b\u0430\u0442\u044c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725026328342529,"in_reply_to_status_id_str":"663725026328342529","in_reply_to_user_id":3815368103,"in_reply_to_user_id_str":"3815368103","in_reply_to_screen_name":"jane_stoun","user":{"id":2231872377,"id_str":"2231872377","name":"\u0444\u0440\u043e\u0448|6\u2764\ufe0f\u041a\u041e\u0412\u0420\u0418\u041a\u0410","screen_name":"suffer_fro","location":"\u043d\u0441\u043a","url":null,"description":"\u044f \u0431\u0443\u0434\u0443 \u0436\u0434\u0430\u0442\u044c \u0432\u0435\u0447\u043d\u043e\u0441\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0443\u0432\u0438\u0434\u0435\u0442\u044c \u0442\u0432\u043e\u044e \u0443\u043b\u044b\u0431\u043a\u0443","protected":false,"verified":false,"followers_count":666,"friends_count":665,"listed_count":4,"favourites_count":4480,"statuses_count":19092,"created_at":"Wed Dec 18 16:29:34 +0000 2013","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602374307365289984\/YlIcSgZT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602374307365289984\/YlIcSgZT.jpg","profile_background_tile":true,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659330484162416640\/oe2Mo_uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659330484162416640\/oe2Mo_uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231872377\/1446031646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jane_stoun","name":"\u0414\u0436\u0435\u0439\u043d\u0421\u0438\u043b\u2606","id":3815368103,"id_str":"3815368103","indices":[0,11]},{"screen_name":"can_feel_again","name":"\u041a\u00f8\u0441\u043c\u043e\u043f\u043e\u043d\u0447\u0438\u043a|\u0440\u0430\u0437\u0431\u0438\u0442","id":1330984123,"id_str":"1330984123","indices":[12,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080005658"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538350593,"id_str":"663727766538350593","text":"\u0627\u0633\u062a\u062d\u0648\u0630 \u0639\u0644\u064a\u0647\u0645 \u0627\u0644\u0634\u064a\u0637\u0627\u0646 \u0641\u0623\u0646\u0633\u0627\u0647\u0645 \u0630\u0643\u0631 \u0627\u0644\u0644\u0647 \u0623\u0648\u0644\u0626\u0643 \u062d\u0632\u0628 \u0627\u0644\u0634\u064a\u0637\u0627\u0646 \u0623\u0644\u0627 \u0625\u0646 \u062d\u0632\u0628 \u0627\u0644\u0634\u064a\u0637\u0627\u0646 \u0647\u0645 \u0627\u0644\u062e\u0627\u0633\u0631\u0648\u0646 [\u0627\u0644\u0645\u062c\u0627\u062f\u0644\u0629:19]\nhttps:\/\/t.co\/wT5WzXsY6Z","source":"\u003ca href=\"http:\/\/twetaty.net\/\" rel=\"nofollow\"\u003eTwetaty\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375685236,"id_str":"375685236","name":"\u3008\u3008","screen_name":"tofa2Ni","location":"\u25e4AD\u2661","url":null,"description":"\u200f\u200f\u200f\u0644\u0640\u0627 \u05d5\u0644\u0647 \u05d5\u0644\u0640\u0627\u05d5\u0644\u0644\u06c1\u064b","protected":false,"verified":false,"followers_count":541,"friends_count":1622,"listed_count":2,"favourites_count":132,"statuses_count":34839,"created_at":"Sun Sep 18 15:22:48 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523025253811761153\/-o5oiJt6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523025253811761153\/-o5oiJt6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375685236\/1390149714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wT5WzXsY6Z","expanded_url":"http:\/\/quran.ksu.edu.sa\/index.php#aya=58_19","display_url":"quran.ksu.edu.sa\/index.php#aya=\u2026","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766513147905,"id_str":"663727766513147905","text":"RT @greatvibesss: \ud83d\ude4c\ud83c\udffc https:\/\/t.co\/DRZQ6ig1eL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347638275,"id_str":"347638275","name":"crystal","screen_name":"_ItsCrystal143","location":null,"url":"https:\/\/mobile.twitter.com\/mikeadamonair\/status\/650791371473817600","description":"I am the beauty behind the madness","protected":false,"verified":false,"followers_count":1140,"friends_count":827,"listed_count":1,"favourites_count":2116,"statuses_count":14040,"created_at":"Wed Aug 03 03:28:09 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938642823155712\/FkLDcizB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938642823155712\/FkLDcizB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/347638275\/1445007162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 16:31:34 +0000 2015","id":657957614605750272,"id_str":"657957614605750272","text":"\ud83d\ude4c\ud83c\udffc https:\/\/t.co\/DRZQ6ig1eL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1873652694,"id_str":"1873652694","name":"snapchat:Greatvibess","screen_name":"greatvibesss","location":"USA","url":"http:\/\/www.instagram.com\/greatvibee","description":"p \u2022 o \u2022 s \u2022 i \u2022 t \u2022 i \u2022 v \u2022 i \u2022 t \u2022 y ||business inquires Kik: greatvibesss or DM|| snapchat: greatvibesss","protected":false,"verified":false,"followers_count":221518,"friends_count":40,"listed_count":288,"favourites_count":8,"statuses_count":2471,"created_at":"Tue Sep 17 01:34:53 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000100082640\/719e7cb2429bde8eda20c3fd0d586ddf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000100082640\/719e7cb2429bde8eda20c3fd0d586ddf.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489253259077357568\/8WVcIvy-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489253259077357568\/8WVcIvy-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1873652694\/1405483112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5757,"favorite_count":5563,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"greatvibesss","name":"snapchat:Greatvibess","id":1873652694,"id_str":"1873652694","indices":[3,16]}],"symbols":[],"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}},"source_status_id":657957614605750272,"source_status_id_str":"657957614605750272","source_user_id":1873652694,"source_user_id_str":"1873652694"}]},"extended_entities":{"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}},"source_status_id":657957614605750272,"source_status_id_str":"657957614605750272","source_user_id":1873652694,"source_user_id_str":"1873652694"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080005659"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504796160,"id_str":"663727766504796160","text":"RT @aRiSa62612583: \u307f\u3093\u306a\u308e\u3069\u3063\u3061\u6d3e\uff1f\n\ud55c\uad6d \u97d3\u56fd\u21e8RT\n\uc77c\ubcf8 \u65e5\u672c\u21e8\u30cf\u30fc\u30c8 https:\/\/t.co\/mpGNaDGO2O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115062948,"id_str":"3115062948","name":"\ubbf8\uc988\ud638luXion\u8d85\u5f8c\u907a\u75c7\u306a\u3046","screen_name":"srnh_kpop30","location":"\u3079\u3063\u3061\u3083\u3093\u3044\u308c\u3070\u4f55\u3082\u3044\u3089\u306a\u3044","url":null,"description":"\uff0897\uff09\u97d3\u56fd exo'luxion 1107 \u91cd\u5ea6\u306e\u5f8c\u907a\u75c7\u3092\u767a\u75c7\u4e2d","protected":false,"verified":false,"followers_count":31,"friends_count":55,"listed_count":0,"favourites_count":272,"statuses_count":356,"created_at":"Sun Mar 29 10:36:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720975884644353\/mKffIDqM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720975884644353\/mKffIDqM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115062948\/1447078296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:17:20 +0000 2015","id":663646541991665664,"id_str":"663646541991665664","text":"\u307f\u3093\u306a\u308e\u3069\u3063\u3061\u6d3e\uff1f\n\ud55c\uad6d \u97d3\u56fd\u21e8RT\n\uc77c\ubcf8 \u65e5\u672c\u21e8\u30cf\u30fc\u30c8 https:\/\/t.co\/mpGNaDGO2O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936478884,"id_str":"2936478884","name":"(( K-POP\u57a2","screen_name":"aRiSa62612583","location":"\uc548\ub155","url":null,"description":"\ud55c\uad6d\u21d4\uc77c\ubcf8 \/K-POP\/\u97d3\u30c9\u30e9\/\uc0ac\ub791\ud574\uc694","protected":false,"verified":false,"followers_count":769,"friends_count":730,"listed_count":1,"favourites_count":429,"statuses_count":1970,"created_at":"Fri Dec 19 23:30:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662855770262736897\/BseVGlJa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662855770262736897\/BseVGlJa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936478884\/1446901777","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":364,"favorite_count":158,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646535297576961,"id_str":"663646535297576961","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646535297576961,"id_str":"663646535297576961","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663646535461146624,"id_str":"663646535461146624","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AgKUkAA3DSP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AgKUkAA3DSP.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aRiSa62612583","name":"(( K-POP\u57a2","id":2936478884,"id_str":"2936478884","indices":[3,17]}],"symbols":[],"media":[{"id":663646535297576961,"id_str":"663646535297576961","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663646541991665664,"source_status_id_str":"663646541991665664","source_user_id":2936478884,"source_user_id_str":"2936478884"}]},"extended_entities":{"media":[{"id":663646535297576961,"id_str":"663646535297576961","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AfjUsAEKn_A.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663646541991665664,"source_status_id_str":"663646541991665664","source_user_id":2936478884,"source_user_id_str":"2936478884"},{"id":663646535461146624,"id_str":"663646535461146624","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_AgKUkAA3DSP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_AgKUkAA3DSP.jpg","url":"https:\/\/t.co\/mpGNaDGO2O","display_url":"pic.twitter.com\/mpGNaDGO2O","expanded_url":"http:\/\/twitter.com\/aRiSa62612583\/status\/663646541991665664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663646541991665664,"source_status_id_str":"663646541991665664","source_user_id":2936478884,"source_user_id_str":"2936478884"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766508998656,"id_str":"663727766508998656","text":"@_aaa24_ \n\u3044\u3084\u4ffa\u9023\u308c\u3066\u3063\u3066\u3082\u52dd\u3066\u306a\u3044\u304b\u3089ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725031239737344,"in_reply_to_status_id_str":"663725031239737344","in_reply_to_user_id":3061114656,"in_reply_to_user_id_str":"3061114656","in_reply_to_screen_name":"_aaa24_","user":{"id":3051987974,"id_str":"3051987974","name":"\u5927\u5ead\u6e05\u4e4b\u4ecb","screen_name":"uSiKNOiTC2IU2th","location":null,"url":null,"description":"\u5e02\u9ad8\u9678\u4e0a\u90e8\u30fd(\uff9f\u2200\uff61)\uff89\uff73\uff6a\uff68wwww","protected":false,"verified":false,"followers_count":178,"friends_count":180,"listed_count":0,"favourites_count":3498,"statuses_count":2633,"created_at":"Sun Mar 01 06:49:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656226230547537921\/-vx5n_XE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656226230547537921\/-vx5n_XE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051987974\/1446178119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_aaa24_","name":"Atsushi","id":3061114656,"id_str":"3061114656","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005658"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766542520320,"id_str":"663727766542520320","text":"@popcandyyy_ \u306f\u3058\u3081\u307e\u3057\u3066\u3002\u5ea7\u5e2d\u306f1\u968e19\u5217\u76ee\u4e0a\u624b\u5074\u306b\u306a\u308a\u307e\u3059\u3002\u3054\u691c\u8a0e\u304f\u3060\u3055\u3044\u307e\u305b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663667108752982017,"in_reply_to_status_id_str":"663667108752982017","in_reply_to_user_id":3178121732,"in_reply_to_user_id_str":"3178121732","in_reply_to_screen_name":"popcandyyy_","user":{"id":1450352617,"id_str":"1450352617","name":"\u3046\u305a\u306a","screen_name":"uzuna_fkae","location":null,"url":null,"description":"\u8da3\u5473\u57a2\u3067\u3059\u3002\u5b9f\u6cc1\uff08\u53a8\u4e8c\u75c5\u306e\u65b9\u3005\uff09\u3001\u3042\u3093\u30b9\u30bf\u3001\u3068\u3046\u3089\u3076\u3001\u306a\u3069\u8272\u3005\u597d\u304d\uff01\u30d8\u30c3\u30c0\u30fc\u306fkusogaki\u3061\u3083\u3093(@kusogaki0518)\u3088\u308a\u3002","protected":false,"verified":false,"followers_count":67,"friends_count":93,"listed_count":8,"favourites_count":2648,"statuses_count":4539,"created_at":"Thu May 23 02:08:17 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0091FF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FFCC00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461876105004068864\/s5UFLZFe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461876105004068864\/s5UFLZFe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450352617\/1406877959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"popcandyyy_","name":"a","id":3178121732,"id_str":"3178121732","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005666"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766542544896,"id_str":"663727766542544896","text":"RT @niconicolenn: \u25ce \u3072\u3063\u3055\u3073\u3055\u306e \u52a0\u5de5\u3057\u3066\u307f\u307e\u3057\u305f \n\n \uff08\ud83d\udc51\uff09\u91cd\u5ca1\u5927\u6bc5\n\n\u3044\u3063\u3071\u3044RT\u304d\u305f\u3089\u8f09\u305b\u308b\u3088 \ud83d\udc3c\ud83d\udc95\ud83d\udca8\n\n#\u79c1\u306e\u52a0\u5de5\u5acc\u3044\u3058\u3083\u306a\u3044\u3088\u3063\u3066\u4ebaRT \n#\u5c11\u3057\u3067\u3082\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT \n#\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT \n#\u91cd\u5ca1\u5927\u6bc5 \n#Runa\u52a0\u5de5 https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3626719152,"id_str":"3626719152","name":"\u0669\u307f\u3086\u30d4\u30dd\u2729\u306b\u3053\u3061\u3085\u3046\u06f6","screen_name":"miyu_nicole1531","location":"\u5e83\u5cf6\uff99\uff9d\u266a\u306b\u3053\u3061\u3085\u3046\u6b747\u30f5\u6708\u26a1","url":null,"description":"Popteen\/\u306b\u3053\u308b\u3093@0220nicole\/ \u306a\u3041\u305f\u3093\u8a8d\u77e5\u6e08\uff1f\/\u308b\u3093\u3061\u3083\u3093 \/#\u308a\u3042\u3089\u52a0\u5de5 \/\u3061\u3043\u307d\u307d\/LeLien\/Hey! Say! JUMP\/\u4f0a\u91ce\u5c3e\u6167\/\u5c71\u7530\u6dbc\u4ecb\/\u77e5\u5ff5\u4f91\u674e \/\u306b\u3053\u308b\u3093\/\u3044\u3044\u306d3\u56de \u26a1\uff62\u306b\u3053\u308b\u3093\u30c7\u30b9\u3002\uff08\u4eee\uff09\u300d12\/1\u767a\u58f2\u26a1","protected":false,"verified":false,"followers_count":378,"friends_count":313,"listed_count":1,"favourites_count":7953,"statuses_count":2072,"created_at":"Sun Sep 20 12:29:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662930763399036929\/vaE5lhsB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662930763399036929\/vaE5lhsB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3626719152\/1447005145","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 20 13:21:55 +0000 2015","id":656460338687180801,"id_str":"656460338687180801","text":"\u25ce \u3072\u3063\u3055\u3073\u3055\u306e \u52a0\u5de5\u3057\u3066\u307f\u307e\u3057\u305f \n\n \uff08\ud83d\udc51\uff09\u91cd\u5ca1\u5927\u6bc5\n\n\u3044\u3063\u3071\u3044RT\u304d\u305f\u3089\u8f09\u305b\u308b\u3088 \ud83d\udc3c\ud83d\udc95\ud83d\udca8\n\n#\u79c1\u306e\u52a0\u5de5\u5acc\u3044\u3058\u3083\u306a\u3044\u3088\u3063\u3066\u4ebaRT \n#\u5c11\u3057\u3067\u3082\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT \n#\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT \n#\u91cd\u5ca1\u5927\u6bc5 \n#Runa\u52a0\u5de5 https:\/\/t.co\/oBD75eS9CA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008291846,"id_str":"3008291846","name":"\u25ce \u308b \u306a \u30d4 \u30dd (( \u5e83\u5cf62\u90e8\u53c2\u6226","screen_name":"niconicolenn","location":"next \u21d2 \u30b0\u30ea\u30a2\u30ea 1\/17 2\u90e8\u53c2\u6226","url":null,"description":"\u2661 \u305f \u3063 \u305f \u3072 \u3068 \u308a \u306e \u738b \u5b50 \u69d8 \u2661 \u91cd \u5ca1 \u5927 \u6bc5 \n\u25ce\u30b8\u30e3\u30cb\u30fc\u30baWEST\u25ce \u6bce\u65e5\u3092\u306f\u3063\u3074\uff5e\u306b\u263a \n . * \u2765 \u2765 \u8d64\u8272\u3088\u308a\u306e\u8679\u8272\u30b8\u30e3\u30b9\u6c11 \u2765 \u2765 * . \n#\u91cd\u5ca1\u5927\u6bc5 \/#\u897f\u7551\u5927\u543e \/#\u306a\u306b\u304d\u3093 \/#\u95a2\u897fJr. \/#\u306b\u3053\u308b\u3093 \/#\u5927\u897f\u4e16\u4ee3 \/#\u3089\u3044\u3080\u3057\u304b\u3044\u306a\u3044","protected":false,"verified":false,"followers_count":679,"friends_count":222,"listed_count":13,"favourites_count":19342,"statuses_count":29847,"created_at":"Mon Feb 02 18:26:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663620887292198912\/NeNlzG1l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663620887292198912\/NeNlzG1l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3008291846\/1447050710","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":6,"entities":{"hashtags":[{"text":"\u79c1\u306e\u52a0\u5de5\u5acc\u3044\u3058\u3083\u306a\u3044\u3088\u3063\u3066\u4ebaRT","indices":[53,70]},{"text":"\u5c11\u3057\u3067\u3082\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[72,86]},{"text":"\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[88,99]},{"text":"\u91cd\u5ca1\u5927\u6bc5","indices":[101,106]},{"text":"Runa\u52a0\u5de5","indices":[108,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":656460294370148352,"id_str":"656460294370148352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","url":"https:\/\/t.co\/oBD75eS9CA","display_url":"pic.twitter.com\/oBD75eS9CA","expanded_url":"http:\/\/twitter.com\/niconicolenn\/status\/656460338687180801\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":656460294370148352,"id_str":"656460294370148352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","url":"https:\/\/t.co\/oBD75eS9CA","display_url":"pic.twitter.com\/oBD75eS9CA","expanded_url":"http:\/\/twitter.com\/niconicolenn\/status\/656460338687180801\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u79c1\u306e\u52a0\u5de5\u5acc\u3044\u3058\u3083\u306a\u3044\u3088\u3063\u3066\u4ebaRT","indices":[71,88]},{"text":"\u5c11\u3057\u3067\u3082\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[90,104]},{"text":"\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[106,117]},{"text":"\u91cd\u5ca1\u5927\u6bc5","indices":[119,124]},{"text":"Runa\u52a0\u5de5","indices":[126,133]}],"urls":[],"user_mentions":[{"screen_name":"niconicolenn","name":"\u25ce \u308b \u306a \u30d4 \u30dd (( \u5e83\u5cf62\u90e8\u53c2\u6226","id":3008291846,"id_str":"3008291846","indices":[3,16]}],"symbols":[],"media":[{"id":656460294370148352,"id_str":"656460294370148352","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","url":"https:\/\/t.co\/oBD75eS9CA","display_url":"pic.twitter.com\/oBD75eS9CA","expanded_url":"http:\/\/twitter.com\/niconicolenn\/status\/656460338687180801\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":656460338687180801,"source_status_id_str":"656460338687180801","source_user_id":3008291846,"source_user_id_str":"3008291846"}]},"extended_entities":{"media":[{"id":656460294370148352,"id_str":"656460294370148352","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw3KN8UwAAEuMf.jpg","url":"https:\/\/t.co\/oBD75eS9CA","display_url":"pic.twitter.com\/oBD75eS9CA","expanded_url":"http:\/\/twitter.com\/niconicolenn\/status\/656460338687180801\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":718,"resize":"fit"},"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":656460338687180801,"source_status_id_str":"656460338687180801","source_user_id":3008291846,"source_user_id_str":"3008291846"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005666"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766525755392,"id_str":"663727766525755392","text":"\u0421\u0442\u0440\u0435\u043f\u0441\u0438\u043b\u0441 \u2013 \u0418\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f \u041f\u043e \u041f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044e https:\/\/t.co\/mqtZ4DWDlt","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120822176,"id_str":"120822176","name":"Ja-Zdorov.ru","screen_name":"ja_zdorov","location":"russia","url":"http:\/\/www.ja-zdorov.ru\/","description":"\u041c\u0438\u043a\u0440\u043e\u0431\u043b\u043e\u0433 \u0441\u0430\u0439\u0442\u0430 \u043e \u0437\u0434\u043e\u0440\u043e\u0432\u044c\u0435 - Ja-Zdorov.ru. \u0414\u0435\u043b\u0438\u043c\u0441\u044f \u043f\u043e\u043b\u0435\u0437\u043d\u044b\u043c\u0438 \u0441\u043e\u0432\u0435\u0442\u0430\u043c\u0438, \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u043c\u0438 \u043c\u0435\u0434\u0438\u0446\u0438\u043d\u044b \u0438 \u044e\u043c\u043e\u0440\u043e\u043c. \u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c!","protected":false,"verified":false,"followers_count":1673,"friends_count":20,"listed_count":31,"favourites_count":1,"statuses_count":8640,"created_at":"Sun Mar 07 17:23:55 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"200709","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/742277748\/37cd6b19fe2b7ef4f9c751119a46f568.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/742277748\/37cd6b19fe2b7ef4f9c751119a46f568.jpeg","profile_background_tile":false,"profile_link_color":"6A4836","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"200709","profile_text_color":"C96D43","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000836944348\/e61d6b9a449ce18934ebb390949864b8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000836944348\/e61d6b9a449ce18934ebb390949864b8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120822176\/1355910376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mqtZ4DWDlt","expanded_url":"http:\/\/dlvr.it\/Chfgbf","display_url":"dlvr.it\/Chfgbf","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080005662"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766529949696,"id_str":"663727766529949696","text":"[USGS ShakeMaps] 5.5 - NEW BRITAIN REGION, PAPUA NEW GUINEA https:\/\/t.co\/oHuDgl1U47","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2294856842,"id_str":"2294856842","name":"Sheila Tilden","screen_name":"RIEmergencyPrep","location":"Providence, Rhode Island","url":null,"description":"Bringing you Rhode Island\/U.S. news and resources to keep you, your family and your business safe. Are you ready?","protected":false,"verified":false,"followers_count":100,"friends_count":96,"listed_count":4,"favourites_count":0,"statuses_count":9018,"created_at":"Thu Jan 16 18:40:41 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430382842636292097\/7zGWLU7U_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430382842636292097\/7zGWLU7U_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oHuDgl1U47","expanded_url":"http:\/\/dlvr.it\/Chfd95","display_url":"dlvr.it\/Chfd95","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080005663"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766508957696,"id_str":"663727766508957696","text":"RT @longtaota: \u0e1b\u0e32\u0e01\u0e01\u0e32\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e42\u0e23\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19\u0e19\u0e35\u0e48 ?\n.\n.\n.\n.\n.\n\u0e19\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e14\u0e49\u0e32\u0e21\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e48\u0e2b\u0e21\u0e14\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e2a\u0e48\u0e27\u0e19\u0e21\u0e32\u0e01\u0e40\u0e02\u0e35\u0e22\u0e19\u0e46\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27\u0e44\u0e21\u0e48\u0e15\u0e34\u0e14\u0e44\u0e21\u0e48\u0e01\u0e47\u0e17\u0e33\u0e2b\u0e32\u0e22 \u0e2b\u0e23\u0e37\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e22\u0e37\u0e21\u0e44\u0e1b\u0e25\u0e30\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294598536,"id_str":"294598536","name":"\u0e1a\u0e32\u0e22.","screen_name":"Bbayye","location":null,"url":null,"description":"1996 FAMILY \u25e1\u0308\u20dd \u0e2d\u0e14\u0e17\u0e19\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e19\u0e17\u0e35\u0e48\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32 .","protected":false,"verified":false,"followers_count":476,"friends_count":146,"listed_count":0,"favourites_count":1715,"statuses_count":52251,"created_at":"Sat May 07 12:47:28 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576469173297025024\/KPZ6yZAK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576469173297025024\/KPZ6yZAK.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"5CB3DB","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663372510025482241\/nz5YuiAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663372510025482241\/nz5YuiAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294598536\/1445838015","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:38 +0000 2015","id":663717586840870913,"id_str":"663717586840870913","text":"\u0e1b\u0e32\u0e01\u0e01\u0e32\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e49\u0e17\u0e35\u0e48\u0e42\u0e23\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19\u0e19\u0e35\u0e48 ?\n.\n.\n.\n.\n.\n\u0e19\u0e31\u0e1a\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e14\u0e49\u0e32\u0e21\u0e17\u0e35\u0e48\u0e43\u0e0a\u0e48\u0e2b\u0e21\u0e14\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e2a\u0e48\u0e27\u0e19\u0e21\u0e32\u0e01\u0e40\u0e02\u0e35\u0e22\u0e19\u0e46\u0e44\u0e1b\u0e41\u0e25\u0e49\u0e27\u0e44\u0e21\u0e48\u0e15\u0e34\u0e14\u0e44\u0e21\u0e48\u0e01\u0e47\u0e17\u0e33\u0e2b\u0e32\u0e22 \u0e2b\u0e23\u0e37\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e22\u0e37\u0e21\u0e44\u0e1b\u0e25\u0e30\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e2d\u0e32\u0e04\u0e37\u0e195555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185553887,"id_str":"2185553887","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","screen_name":"longtaota","location":"\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e18\u0e2d...","url":null,"description":"\u0e22\u0e2d\u0e14\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e17\u0e22 | \u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30 | \u0e2a\u0e38\u0e14\u0e22\u0e2d\u0e14\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 ... \u0e21\u0e32\u0e08\u0e32\u0e01\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01","protected":false,"verified":false,"followers_count":525241,"friends_count":20,"listed_count":48,"favourites_count":55,"statuses_count":3623,"created_at":"Sun Nov 10 04:02:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185553887\/1392375059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1393,"favorite_count":143,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"longtaota","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","id":2185553887,"id_str":"2185553887","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080005658"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504796161,"id_str":"663727766504796161","text":"@FHKKMRM \n\u3044\u3084\u3057\u306a\u3044\u308f w w w w \u3067\u3082\u6804\u304b\u3089\u77e2\u5834\u753a\u306b\u7d9a\u304f\u30a4\u30eb\u30df\u30cd\u30fc\u30b7\u30e7\u30f3\u3059\u3093\u3054\u3044\u3059\u304d\ud83d\ude06\ud83d\ude06(\u307c\u3063\u3061\u3060\u3068\u5272\u3068\u30e1\u30f3\u30bf\u30eb\u304f\u308b\u3084\u3064)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711083840929792,"in_reply_to_status_id_str":"663711083840929792","in_reply_to_user_id":2355323966,"in_reply_to_user_id_str":"2355323966","in_reply_to_screen_name":"FHKKMRM","user":{"id":721355118,"id_str":"721355118","name":"\u3055\u3048","screen_name":"saesae0418","location":null,"url":"http:\/\/instagram.com\/m____sae","description":"\u4e3b\u98df\u306f\u3089\u30fc\u3081\u3093\u261d\ufe0e\u571f\u65e5\u306f\u30f2\u30bf\u30af\u261d\ufe0e\u540d\u5973\u261d\ufe0e","protected":false,"verified":false,"followers_count":264,"friends_count":186,"listed_count":0,"favourites_count":867,"statuses_count":6167,"created_at":"Sat Jul 28 02:54:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F44C5B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095762742\/daa1251ac0b98b66ca3a35a3c85ddf80.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095762742\/daa1251ac0b98b66ca3a35a3c85ddf80.jpeg","profile_background_tile":true,"profile_link_color":"30211A","profile_sidebar_border_color":"FAB884","profile_sidebar_fill_color":"CFAF4C","profile_text_color":"B48F63","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636194591276830721\/hxQjPyce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636194591276830721\/hxQjPyce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721355118\/1443002103","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FHKKMRM","name":"\u3057\u306e","id":2355323966,"id_str":"2355323966","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538354688,"id_str":"663727766538354688","text":"How to cope with holiday\u00a0stress https:\/\/t.co\/mm22qLSrkg","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3827208800,"id_str":"3827208800","name":"LauraCPalmer","screen_name":"lauracpalmer_c","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":318,"friends_count":685,"listed_count":20,"favourites_count":198,"statuses_count":6683,"created_at":"Thu Oct 08 16:43:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652162646259535875\/jhmQO6PI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652162646259535875\/jhmQO6PI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mm22qLSrkg","expanded_url":"http:\/\/startfitness.xyz\/index.php\/2015\/11\/09\/how-to-cope-with-holiday-stress\/","display_url":"startfitness.xyz\/index.php\/2015\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504886272,"id_str":"663727766504886272","text":"Looking for a #bitcoin escrow service? consider this 1st\u2026 #crypto #cryptocurrency https:\/\/t.co\/lEqzeWd5Ze","source":"\u003ca href=\"http:\/\/www.bitcoinz.be\" rel=\"nofollow\"\u003eBitcoinzMachineFull\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2811914996,"id_str":"2811914996","name":"BitcoinzMachine","screen_name":"BitcoinzMachine","location":"Leuven","url":"http:\/\/bitcoinz.be","description":"Cybernetic life form crawling the wide web in search of #crytocurrency data and networks.","protected":false,"verified":false,"followers_count":9486,"friends_count":9463,"listed_count":661,"favourites_count":161,"statuses_count":260895,"created_at":"Mon Sep 15 20:44:38 +0000 2014","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"151616","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527150954961833984\/Wt2kT4g-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811914996\/1414517413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bitcoin","indices":[14,22]},{"text":"crypto","indices":[58,65]},{"text":"cryptocurrency","indices":[66,81]}],"urls":[{"url":"https:\/\/t.co\/lEqzeWd5Ze","expanded_url":"http:\/\/j.mp\/1Rq5m0a","display_url":"j.mp\/1Rq5m0a","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766534156289,"id_str":"663727766534156289","text":"@kimin7544 \u3147?\uc544\uc544\ub2cc\ub370 \u3145\u3142","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727610002718720,"in_reply_to_status_id_str":"663727610002718720","in_reply_to_user_id":2346491004,"in_reply_to_user_id_str":"2346491004","in_reply_to_screen_name":"kimin7544","user":{"id":3254742566,"id_str":"3254742566","name":"[\ubc84\uac70\uc655]\ube44\ucde8","screen_name":"badbitch_444","location":"505","url":null,"description":"Ever thought of calling darling?","protected":false,"verified":false,"followers_count":107,"friends_count":280,"listed_count":4,"favourites_count":2237,"statuses_count":13388,"created_at":"Wed Jun 24 15:31:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662698648635990017\/bwB_n-_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662698648635990017\/bwB_n-_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254742566\/1446962535","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kimin7544","name":"\uc218\uc9c0","id":2346491004,"id_str":"2346491004","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080005664"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766525706240,"id_str":"663727766525706240","text":"Five rings for Hamburg 2024 \u2013 Hamburg sets the tone for the Olympic Games https:\/\/t.co\/K5zGBlO5rH","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2290913618,"id_str":"2290913618","name":"Wisconsin Chronicle","screen_name":"WisconsinChron1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":26850,"created_at":"Tue Jan 14 09:29:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K5zGBlO5rH","expanded_url":"http:\/\/dlvr.it\/ChffPV","display_url":"dlvr.it\/ChffPV","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005662"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766521581569,"id_str":"663727766521581569","text":"RT @GucciSilk: Your girl should be your princess and ya homie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3100056181,"id_str":"3100056181","name":"OKSTATE ( 9-0 )","screen_name":"Darien_payen_","location":"Wewoka, OK","url":null,"description":"2k15 state champion ( 405 )\u2708\ufe0f sc\/\/ wewokapg2018","protected":false,"verified":false,"followers_count":177,"friends_count":162,"listed_count":0,"favourites_count":1402,"statuses_count":1309,"created_at":"Fri Mar 20 17:50:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663529319298273280\/VGvbU5LR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663529319298273280\/VGvbU5LR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3100056181\/1447043515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:21:54 +0000 2015","id":662817221605900288,"id_str":"662817221605900288","text":"Your girl should be your princess and ya homie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2602825087,"id_str":"2602825087","name":"\u2800\u2800\u2800\u2800\u2800","screen_name":"GucciSilk","location":"Ca","url":"http:\/\/Instagram.com\/guccisilk","description":"cehs | sc: guccisilk","protected":false,"verified":false,"followers_count":25126,"friends_count":413,"listed_count":17,"favourites_count":1364,"statuses_count":1287,"created_at":"Fri Jul 04 04:49:37 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663635488163532801\/RxWSlLE1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663635488163532801\/RxWSlLE1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2602825087\/1445752804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6948,"favorite_count":6099,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GucciSilk","name":"\u2800\u2800\u2800\u2800\u2800","id":2602825087,"id_str":"2602825087","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005661"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766504910848,"id_str":"663727766504910848","text":"@_angelgiselle9 love& miss you too\ud83d\udc96\ud83d\udc96\ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660657324032,"in_reply_to_status_id_str":"663727660657324032","in_reply_to_user_id":3247122115,"in_reply_to_user_id_str":"3247122115","in_reply_to_screen_name":"_angelgiselle9","user":{"id":2424695612,"id_str":"2424695612","name":"bianca","screen_name":"biaanncca__","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":361,"friends_count":164,"listed_count":1,"favourites_count":10422,"statuses_count":21376,"created_at":"Thu Apr 03 02:58:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662372712111734784\/pKsIJyQS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662372712111734784\/pKsIJyQS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2424695612\/1446772199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_angelgiselle9","name":"angel","id":3247122115,"id_str":"3247122115","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005657"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766525845505,"id_str":"663727766525845505","text":"kathnielquotes_: Imma_lonely_: gerald312garcia: sandyayala09: KOREAdorables: shielarniebaby: kbdpftcris30: immadam_angelo: #PushAwardsKathN\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3357069505,"id_str":"3357069505","name":"KathNiel is the best","screen_name":"gelKathNiel2526","location":"Manila City","url":null,"description":null,"protected":false,"verified":false,"followers_count":38,"friends_count":202,"listed_count":5,"favourites_count":56,"statuses_count":21402,"created_at":"Thu Aug 27 07:19:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662072089164124160\/l0FaPhQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662072089164124160\/l0FaPhQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3357069505\/1446518706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathN","indices":[123,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080005662"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538358786,"id_str":"663727766538358786","text":"You can be overly generous in your encouragement of your assoc... More for Virgo https:\/\/t.co\/IDaUNojWkD","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":165897432,"id_str":"165897432","name":"P\u00f8\u0160\u012fT\u00efV\u00ea Th\u00ef\u00d1k@","screen_name":"dquestbeatz","location":"Home of The Carolina Panthers","url":null,"description":"160 characters?? Im not gonna waste your time or mine. Positive energy all around me, negativity get lost. #TeamPanthers #TeamVirgo\u264d #TeamBlowItDown","protected":false,"verified":false,"followers_count":346,"friends_count":594,"listed_count":7,"favourites_count":21,"statuses_count":8211,"created_at":"Mon Jul 12 20:40:52 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3494152962\/88ca2d2f3c69c5b20f1295b994cc553a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3494152962\/88ca2d2f3c69c5b20f1295b994cc553a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IDaUNojWkD","expanded_url":"http:\/\/bit.ly\/A7Cwfs","display_url":"bit.ly\/A7Cwfs","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005665"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766517456897,"id_str":"663727766517456897","text":"RT @guacaraenonda: #NoticiasGEO #Regional Movimiento Estudiantil Unidad 77 pidi\u00f3 al Gobierno respetar autonom\u00eda universitaria l Mira... htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299871466,"id_str":"299871466","name":"JOSE LUIS ALCEDO","screen_name":"JoseAlcedo","location":null,"url":null,"description":"LA PRACTICA DEPORTE ME ASE VER LA VIDA DIFERENTE .","protected":false,"verified":false,"followers_count":1611,"friends_count":2245,"listed_count":119,"favourites_count":429,"statuses_count":33731,"created_at":"Mon May 16 20:26:41 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586914460184535040\/beorcxk9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586914460184535040\/beorcxk9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299871466\/1435565339","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:50 +0000 2015","id":663726445718564864,"id_str":"663726445718564864","text":"#NoticiasGEO #Regional Movimiento Estudiantil Unidad 77 pidi\u00f3 al Gobierno respetar autonom\u00eda universitaria l Mira... https:\/\/t.co\/p0CX61ATCm","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87568206,"id_str":"87568206","name":"Guacara en Onda","screen_name":"guacaraenonda","location":"Guacara - Venezuela","url":"http:\/\/www.guacaraenonda.com.ve","description":"Somos tu nueva alternativa publicitaria: Revista Digital, Radio on Line, Redes Sociales, Mensajer\u00eda de Texto y mucho m\u00e1s... \u00a1Publica Ya!","protected":false,"verified":false,"followers_count":48864,"friends_count":20791,"listed_count":128,"favourites_count":340,"statuses_count":69281,"created_at":"Wed Nov 04 23:54:26 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000568853063\/7bdfb8979281ea96add5c14a4bf9331a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000568853063\/7bdfb8979281ea96add5c14a4bf9331a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87568206\/1435746662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"NoticiasGEO","indices":[0,12]},{"text":"Regional","indices":[13,22]}],"urls":[{"url":"https:\/\/t.co\/p0CX61ATCm","expanded_url":"http:\/\/fb.me\/5eW1TgQqk","display_url":"fb.me\/5eW1TgQqk","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NoticiasGEO","indices":[19,31]},{"text":"Regional","indices":[32,41]}],"urls":[{"url":"https:\/\/t.co\/p0CX61ATCm","expanded_url":"http:\/\/fb.me\/5eW1TgQqk","display_url":"fb.me\/5eW1TgQqk","indices":[139,140]}],"user_mentions":[{"screen_name":"guacaraenonda","name":"Guacara en Onda","id":87568206,"id_str":"87568206","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080005660"} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766517366784,"id_str":"663727766517366784","text":"\u7c21\u5358\u304b\u308f\u3044\u3044\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u3067\u3001\u5fd9\u3057\u3044\u671d\u3082\u6642\u77ed\u30b3\u30fc\u30c7\u30a3\u30cd\u30fc\u30c8\u266a https:\/\/t.co\/uLnRN8ziEd https:\/\/t.co\/WFn4vtfSps","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87853882,"id_str":"87853882","name":"Peachy\u7de8\u96c6\u90e8","screen_name":"ld_girls","location":"\u6e0b\u8c37\u30d2\u30ab\u30ea\u30a8","url":"http:\/\/www.facebook.com\/pages\/Peachy%E3%83%94%E3%83%BC%E3%83%81%E3%82%A3\/122832784457666","description":"\u6bce\u65e5\u3092\u30cf\u30c3\u30d4\u30fc\u306b\u751f\u304d\u308b\u5973\u5b50\u306e\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8\u300cPeachy\uff08\u30d4\u30fc\u30c1\u30a3\uff09\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u30b3\u30b9\u30e1\u3001\u604b\u611b\u3001\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u3001\u30b9\u30a4\u30fc\u30c4\u3001\u30b0\u30eb\u30e1\u3001\u30c0\u30a4\u30a8\u30c3\u30c8\u3001\u30bb\u30ec\u30d6\u306e\u30b4\u30b7\u30c3\u30d7\u306a\u3069\u300c\u30ab\u30ef\u30a4\u30a4\u300d\u300c\u30cf\u30c3\u30d4\u30fc\u300d\u304c\u8a70\u307e\u3063\u305f\u697d\u3057\u3044\u30cb\u30e5\u30fc\u30b9\u3092\u304a\u5c4a\u3051\uff01\u30d7\u30ec\u30bc\u30f3\u30c8\u3084\u8a66\u5199\u4f1a\u60c5\u5831\u3082\u3002","protected":false,"verified":false,"followers_count":16765,"friends_count":18294,"listed_count":285,"favourites_count":125,"statuses_count":48233,"created_at":"Fri Nov 06 03:03:57 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515036826919137280\/ROEUs18l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515036826919137280\/ROEUs18l.jpeg","profile_background_tile":true,"profile_link_color":"CD853F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF85AC","profile_text_color":"595857","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508906073927852032\/dJMdIaDJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508906073927852032\/dJMdIaDJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87853882\/1410172996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uLnRN8ziEd","expanded_url":"http:\/\/dlvr.it\/Chfbdj","display_url":"dlvr.it\/Chfbdj","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663727766215376896,"id_str":"663727766215376896","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wTUwAA0q1F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wTUwAA0q1F.jpg","url":"https:\/\/t.co\/WFn4vtfSps","display_url":"pic.twitter.com\/WFn4vtfSps","expanded_url":"http:\/\/twitter.com\/ld_girls\/status\/663727766517366784\/photo\/1","type":"photo","sizes":{"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727766215376896,"id_str":"663727766215376896","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wTUwAA0q1F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wTUwAA0q1F.jpg","url":"https:\/\/t.co\/WFn4vtfSps","display_url":"pic.twitter.com\/WFn4vtfSps","expanded_url":"http:\/\/twitter.com\/ld_girls\/status\/663727766517366784\/photo\/1","type":"photo","sizes":{"small":{"w":250,"h":250,"resize":"fit"},"medium":{"w":250,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":250,"h":250,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080005660"} +{"delete":{"status":{"id":663725413525491712,"id_str":"663725413525491712","user_id":836469229,"user_id_str":"836469229"},"timestamp_ms":"1447080006002"}} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766538493952,"id_str":"663727766538493952","text":"#allezlesbleus #edf https:\/\/t.co\/SMAOhU8OLe Photo https:\/\/t.co\/SApWCHd4cK #allezlesbleus cocorico-allezl\u2026 https:\/\/t.co\/6aUGTIokln","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37516509,"id_str":"37516509","name":"CocoricoFan","screen_name":"Onnazuki","location":"Par\u00eds, Isla de Francia","url":"http:\/\/cocorico-allezlesbleus.tumblr.com","description":"Parc des Princes, Guadalajara, Stade de France, Berlin","protected":false,"verified":false,"followers_count":98,"friends_count":316,"listed_count":18,"favourites_count":4,"statuses_count":19659,"created_at":"Sun May 03 22:15:12 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592397334966837249\/BN_KSjrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592397334966837249\/BN_KSjrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37516509\/1441387225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"allezlesbleus","indices":[0,14]},{"text":"edf","indices":[15,19]},{"text":"allezlesbleus","indices":[74,88]}],"urls":[{"url":"https:\/\/t.co\/SMAOhU8OLe","expanded_url":"http:\/\/cocorico-allezlesbleus.tumblr.com","display_url":"cocorico-allezlesbleus.tumblr.com","indices":[20,43]},{"url":"https:\/\/t.co\/SApWCHd4cK","expanded_url":"http:\/\/ift.tt\/1M1VPLR","display_url":"ift.tt\/1M1VPLR","indices":[50,73]}],"user_mentions":[],"symbols":[],"media":[{"id":663727766454607873,"id_str":"663727766454607873","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4xMXIAEszfP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4xMXIAEszfP.jpg","url":"https:\/\/t.co\/6aUGTIokln","display_url":"pic.twitter.com\/6aUGTIokln","expanded_url":"http:\/\/twitter.com\/Onnazuki\/status\/663727766538493952\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":578,"resize":"fit"},"large":{"w":500,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727766454607873,"id_str":"663727766454607873","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4xMXIAEszfP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4xMXIAEszfP.jpg","url":"https:\/\/t.co\/6aUGTIokln","display_url":"pic.twitter.com\/6aUGTIokln","expanded_url":"http:\/\/twitter.com\/Onnazuki\/status\/663727766538493952\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":578,"resize":"fit"},"large":{"w":500,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":393,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080005665"} +{"delete":{"status":{"id":603829720598249472,"id_str":"603829720598249472","user_id":253455406,"user_id_str":"253455406"},"timestamp_ms":"1447080006069"}} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766530105346,"id_str":"663727766530105346","text":"Mid Century candlestick candlesticks copper with by Vintage4Moms https:\/\/t.co\/X1DipK0Y77 via @Etsy https:\/\/t.co\/gq7CqyOD1S","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2866854441,"id_str":"2866854441","name":"Vintage4Moms","screen_name":"VINTAGE4MOMS","location":"Germany","url":"http:\/\/www.vintage4moms.etsy.com","description":null,"protected":false,"verified":false,"followers_count":9698,"friends_count":9941,"listed_count":52,"favourites_count":29,"statuses_count":238584,"created_at":"Sat Nov 08 05:14:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566763164461592576\/8FwxLXta.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566763164461592576\/8FwxLXta.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566764047656185856\/WxWAqk33_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566764047656185856\/WxWAqk33_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2866854441\/1433546406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/X1DipK0Y77","expanded_url":"http:\/\/etsy.me\/1HhELCC","display_url":"etsy.me\/1HhELCC","indices":[65,88]}],"user_mentions":[{"screen_name":"Etsy","name":"Etsy","id":11522502,"id_str":"11522502","indices":[93,98]}],"symbols":[],"media":[{"id":663727765905084416,"id_str":"663727765905084416","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4vJWEAA6mLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4vJWEAA6mLt.jpg","url":"https:\/\/t.co\/gq7CqyOD1S","display_url":"pic.twitter.com\/gq7CqyOD1S","expanded_url":"http:\/\/twitter.com\/VINTAGE4MOMS\/status\/663727766530105346\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":850,"h":637,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727765905084416,"id_str":"663727765905084416","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4vJWEAA6mLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4vJWEAA6mLt.jpg","url":"https:\/\/t.co\/gq7CqyOD1S","display_url":"pic.twitter.com\/gq7CqyOD1S","expanded_url":"http:\/\/twitter.com\/VINTAGE4MOMS\/status\/663727766530105346\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":850,"h":637,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080005663"} +{"delete":{"status":{"id":663727233836576768,"id_str":"663727233836576768","user_id":830860495,"user_id_str":"830860495"},"timestamp_ms":"1447080006151"}} +{"delete":{"status":{"id":663712671209037824,"id_str":"663712671209037824","user_id":635364896,"user_id_str":"635364896"},"timestamp_ms":"1447080006337"}} +{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727766509117440,"id_str":"663727766509117440","text":"\u0631\u062f\u0629 \u0641\u0639\u0644 \u0644\u0648\u064a\u0633 \u0625\u0646\u0631\u064a\u0643\u064a \u0639\u0644\u0649 \u0647\u062f\u0641 \u0646\u064a\u0645\u0627\u0631 \u0627\u0644\u0631\u0627\u0626\u0639 \u0636\u062f \u0641\u064a\u0627\u0631\u064a\u0627\u0644 https:\/\/t.co\/mwlau31VFZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33701483,"id_str":"33701483","name":"FCB World","screen_name":"Barca_A7","location":"Barcelona, Catalonia","url":"http:\/\/www.fcbworld.net","description":"Contact us : \nBarca_A7@fcbworld.net","protected":false,"verified":false,"followers_count":162914,"friends_count":17,"listed_count":1188,"favourites_count":62,"statuses_count":69238,"created_at":"Mon Apr 20 22:54:24 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644476277856952321\/Q4DDNUI6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644476277856952321\/Q4DDNUI6.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572430534278524928\/6Ck8p7dw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572430534278524928\/6Ck8p7dw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33701483\/1441081641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727384122818560,"id_str":"663727384122818560","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727384122818560\/pu\/img\/pbz5LoHriOf4ATi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727384122818560\/pu\/img\/pbz5LoHriOf4ATi-.jpg","url":"https:\/\/t.co\/mwlau31VFZ","display_url":"pic.twitter.com\/mwlau31VFZ","expanded_url":"http:\/\/twitter.com\/Barca_A7\/status\/663727766509117440\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727384122818560,"id_str":"663727384122818560","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727384122818560\/pu\/img\/pbz5LoHriOf4ATi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727384122818560\/pu\/img\/pbz5LoHriOf4ATi-.jpg","url":"https:\/\/t.co\/mwlau31VFZ","display_url":"pic.twitter.com\/mwlau31VFZ","expanded_url":"http:\/\/twitter.com\/Barca_A7\/status\/663727766509117440\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":18000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/vid\/640x360\/fPgIAc1HFiCO73Ce.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/vid\/1280x720\/nFRSKTMHbvc8wVHU.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/vid\/640x360\/fPgIAc1HFiCO73Ce.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/vid\/320x180\/pHn0ZjcNsFab_Oy2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/pl\/eIXPpRmS75rjSlS1.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727384122818560\/pu\/pl\/eIXPpRmS75rjSlS1.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080005658"} +{"delete":{"status":{"id":488542782391214080,"id_str":"488542782391214080","user_id":223861334,"user_id_str":"223861334"},"timestamp_ms":"1447080006615"}} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703372288,"id_str":"663727770703372288","text":"RT @FALLTAEMBLEM: @ohsupr4s ta lidno","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":509405861,"id_str":"509405861","name":"mari","screen_name":"ohsupr4s","location":null,"url":null,"description":"bitch, don't kill my vibe","protected":false,"verified":false,"followers_count":33880,"friends_count":14491,"listed_count":80,"favourites_count":2656,"statuses_count":296891,"created_at":"Wed Feb 29 23:22:08 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498953753454583808\/x_ImaYDq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498953753454583808\/x_ImaYDq.jpeg","profile_background_tile":false,"profile_link_color":"0D0B0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663704272694075392\/BTFqV1--_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663704272694075392\/BTFqV1--_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/509405861\/1447076508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:33 +0000 2015","id":663727127787921408,"id_str":"663727127787921408","text":"@ohsupr4s ta lidno","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726897583517696,"in_reply_to_status_id_str":"663726897583517696","in_reply_to_user_id":509405861,"in_reply_to_user_id_str":"509405861","in_reply_to_screen_name":"ohsupr4s","user":{"id":2188136223,"id_str":"2188136223","name":"renata","screen_name":"FALLTAEMBLEM","location":"tpd fabi","url":null,"description":"remily is real","protected":false,"verified":false,"followers_count":18822,"friends_count":14542,"listed_count":20,"favourites_count":2125,"statuses_count":21117,"created_at":"Wed Nov 20 00:24:49 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641319454845104128\/Uk8JL_vC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641319454845104128\/Uk8JL_vC.jpg","profile_background_tile":false,"profile_link_color":"111111","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663470713161039872\/J6pGq_BS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663470713161039872\/J6pGq_BS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2188136223\/1447018710","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ohsupr4s","name":"mari","id":509405861,"id_str":"509405861","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FALLTAEMBLEM","name":"renata","id":2188136223,"id_str":"2188136223","indices":[3,16]},{"screen_name":"ohsupr4s","name":"mari","id":509405861,"id_str":"509405861","indices":[18,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703429632,"id_str":"663727770703429632","text":"RT @pablitopiny: Las respuestas que buscaba Valentino en rueda de prensa...aqu\u00ed las tienes ``Il Dottore\u00b4\u00b4 https:\/\/t.co\/sCV81IFjQw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1377776570,"id_str":"1377776570","name":"Christian Alvarez","screen_name":"christian__1977","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45,"friends_count":268,"listed_count":3,"favourites_count":6,"statuses_count":402,"created_at":"Wed Apr 24 19:05:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3578555621\/b5815d6e2507bd800ded3d3c839b1251_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3578555621\/b5815d6e2507bd800ded3d3c839b1251_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1377776570\/1379101187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:39:09 +0000 2015","id":663667133570752512,"id_str":"663667133570752512","text":"Las respuestas que buscaba Valentino en rueda de prensa...aqu\u00ed las tienes ``Il Dottore\u00b4\u00b4 https:\/\/t.co\/sCV81IFjQw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":56697045,"id_str":"56697045","name":"Pablo Dapena Gonzale","screen_name":"pablitopiny","location":"Pontevedra ","url":"http:\/\/www.pablodapena.net","description":"Triatleta. Aprendiz de Entrenador. Lic. en CC de la Actividad F\u00edsica y el Deporte. Instagram: @pablitopiny","protected":false,"verified":false,"followers_count":3541,"friends_count":837,"listed_count":51,"favourites_count":8879,"statuses_count":17691,"created_at":"Tue Jul 14 13:46:27 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/335201408\/DSC_0213.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/335201408\/DSC_0213.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581049904375595008\/L1A5Vm4b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581049904375595008\/L1A5Vm4b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56697045\/1424644416","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sCV81IFjQw","expanded_url":"http:\/\/m.motorpasionmoto.com\/motogp\/valentino-aqui-tienes-las-respuestas-que-buscabas-en-tu-surrealista-rueda-de-prensa?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+motorpasionmoto+%28Motorpasionmoto%29&utm_content=FaceBook","display_url":"m.motorpasionmoto.com\/motogp\/valenti\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sCV81IFjQw","expanded_url":"http:\/\/m.motorpasionmoto.com\/motogp\/valentino-aqui-tienes-las-respuestas-que-buscabas-en-tu-surrealista-rueda-de-prensa?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+motorpasionmoto+%28Motorpasionmoto%29&utm_content=FaceBook","display_url":"m.motorpasionmoto.com\/motogp\/valenti\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"pablitopiny","name":"Pablo Dapena Gonzale","id":56697045,"id_str":"56697045","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703405056,"id_str":"663727770703405056","text":"RT @SkorchedSkinz: Discipline is just choosing between what you want now and what you want most. - Unknown #quote #quoteoftheday #quotes","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106274902,"id_str":"106274902","name":"Chicagolandia ","screen_name":"chicagolandia","location":"Chicago, IL","url":"http:\/\/www.chicagolandia.etsy.com","description":"Home of ecofriendly, bohemian #jewelry with a modern twist. Passionate about #ecochic fashion, find me on #Etsy! Support #handmade and small business.","protected":false,"verified":false,"followers_count":21400,"friends_count":16899,"listed_count":1247,"favourites_count":981,"statuses_count":170457,"created_at":"Tue Jan 19 01:40:14 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461911614577311744\/h6mYCwQQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461911614577311744\/h6mYCwQQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106274902\/1376413895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:05 +0000 2015","id":663726758668197888,"id_str":"663726758668197888","text":"Discipline is just choosing between what you want now and what you want most. - Unknown #quote #quoteoftheday #quotes","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2158523402,"id_str":"2158523402","name":"MystiCat","screen_name":"SkorchedSkinz","location":null,"url":"https:\/\/www.etsy.com\/shop\/SkorchedSkinz","description":"Interesting, Odd, and Spiritual Gifts! Hand Crafted Leather Pyrography Art and Metaphysical Gifts! Follow me for Store Coupons via Twitter, Etsy, or Facebook!","protected":false,"verified":false,"followers_count":2508,"friends_count":1435,"listed_count":456,"favourites_count":278,"statuses_count":85677,"created_at":"Sun Oct 27 09:28:04 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659994050464980992\/eAZTTwlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659994050464980992\/eAZTTwlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2158523402\/1412357949","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"quote","indices":[88,94]},{"text":"quoteoftheday","indices":[95,109]},{"text":"quotes","indices":[110,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"quote","indices":[107,113]},{"text":"quoteoftheday","indices":[114,128]},{"text":"quotes","indices":[129,136]}],"urls":[],"user_mentions":[{"screen_name":"SkorchedSkinz","name":"MystiCat","id":2158523402,"id_str":"2158523402","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006658"} +{"delete":{"status":{"id":663727724565893120,"id_str":"663727724565893120","user_id":2492426382,"user_id_str":"2492426382"},"timestamp_ms":"1447080006653"}} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736926721,"id_str":"663727770736926721","text":"que isso no meu olho N\u00c3O seja conjuntivite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351047603,"id_str":"351047603","name":"gi facunte","screen_name":"giofacunte","location":null,"url":null,"description":"que","protected":false,"verified":false,"followers_count":520,"friends_count":476,"listed_count":0,"favourites_count":2189,"statuses_count":33211,"created_at":"Mon Aug 08 18:19:14 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446383040260874240\/tBZFuGzz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446383040260874240\/tBZFuGzz.png","profile_background_tile":true,"profile_link_color":"080808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661655878165266432\/g0b4qw0T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661655878165266432\/g0b4qw0T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351047603\/1423869377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736959490,"id_str":"663727770736959490","text":"RT @AlexeyAxel: Chicos los invito seguir a nuestra cuenta de emprendimiento con @Dj_Tite \ud83d\udc49@Tite_DobleA \ud83d\udc48 Y MG en Facebook \ud83d\udc49https:\/\/t.co\/hf\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":176083431,"id_str":"176083431","name":"Pato","screen_name":"Dj_Tite","location":"Metropolitana de Santiago","url":"http:\/\/instagram.com\/dj_tite","description":"Locutor de Radio @AnixgamesChile \/#Gamer\/Colocolino a full! titulado en redes y Dj \/#piscis\/Mi cabeza esta revuelta y no la entiendo https:\/\/t.co\/PEA74g1MEc","protected":false,"verified":false,"followers_count":1495,"friends_count":1240,"listed_count":18,"favourites_count":2722,"statuses_count":42240,"created_at":"Sun Aug 08 14:21:58 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625780766442717184\/2KUZi2W2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625780766442717184\/2KUZi2W2.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659394436632334337\/giUfemhx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659394436632334337\/giUfemhx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/176083431\/1438032686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:57 +0000 2015","id":663726224284454912,"id_str":"663726224284454912","text":"Chicos los invito seguir a nuestra cuenta de emprendimiento con @Dj_Tite \ud83d\udc49@Tite_DobleA \ud83d\udc48 Y MG en Facebook \ud83d\udc49https:\/\/t.co\/hfaRrSCTBv :D","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156998197,"id_str":"156998197","name":"\uf8ffDj 2A-Alexey Axel\uf8ff","screen_name":"AlexeyAxel","location":"Santiago de Chile.","url":"http:\/\/djdoblea.cl","description":"DJ\/Padawan Producer, Inform\u00e1tico, feliz, disfruto cada d\u00eda, organizador de eventos. S\u00f3lo se tu mismo!","protected":false,"verified":false,"followers_count":3611,"friends_count":2015,"listed_count":61,"favourites_count":3872,"statuses_count":132344,"created_at":"Fri Jun 18 14:55:43 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000082590661\/6159ef5e5bded720d8a4b4459daaf58c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000082590661\/6159ef5e5bded720d8a4b4459daaf58c.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658159483986837504\/H-0tkHbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658159483986837504\/H-0tkHbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156998197\/1435280977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hfaRrSCTBv","expanded_url":"http:\/\/on.fb.me\/1LqJi4h","display_url":"on.fb.me\/1LqJi4h","indices":[108,131]}],"user_mentions":[{"screen_name":"Dj_Tite","name":"Pato","id":176083431,"id_str":"176083431","indices":[64,72]},{"screen_name":"Tite_DobleA","name":"Eventos Tite DobleA","id":4020868797,"id_str":"4020868797","indices":[74,86]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hfaRrSCTBv","expanded_url":"http:\/\/on.fb.me\/1LqJi4h","display_url":"on.fb.me\/1LqJi4h","indices":[124,140]}],"user_mentions":[{"screen_name":"AlexeyAxel","name":"\uf8ffDj 2A-Alexey Axel\uf8ff","id":156998197,"id_str":"156998197","indices":[3,14]},{"screen_name":"Dj_Tite","name":"Pato","id":176083431,"id_str":"176083431","indices":[80,88]},{"screen_name":"Tite_DobleA","name":"Eventos Tite DobleA","id":4020868797,"id_str":"4020868797","indices":[90,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736959491,"id_str":"663727770736959491","text":"RT @elhamdllaa: \ud83c\udf39\ud83c\udf43\u0648\u0627\u0644\u0628\u0639\u0636 \u062d\u064a\u0646\u0645\u0627 \u0646\u062d\u0627\u062f\u062b\u0647\u0645!\u061f\u062d\u0631\u0648\u0641\u0647\u0645 \u062d\u0643\u0627\u064a\u0629 \u062a\u0632\u064a\u062f\u0646\u0627 \u0633\u0639\u0627\u0627\u0627\u062f\u0629 \u0648\u062d\u064a\u0627\u0627\u0627\u0629 \u0645\u0639\u0647\u0645!\u2764 \u0628\u0639\u0645\u0642 \u0627\u0644\u0633\u0645\u0627\u0621\u0631\u0628\u064a \u0623\u0633\u0639\u062f \u062a\u0644\u0643 \u0627\u0644\u0642\u0644\u0648\u0628 \u0639\u0645\u0631\u0627.!\u2764\n\ud83d\udc8e\u0628\u0648\u0648\u0648\u062d\u2661 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3259207130,"id_str":"3259207130","name":"\u062a\u0628\u0627\u062f\u0644 \u0631\u064a\u062a\u0648\u064a\u062a 5\/5","screen_name":"muscat12321","location":null,"url":null,"description":"\u200f\u200f\u200f\u0644\u062a\u0628\u0627\u062f\u0644 \u0627\u0644\u0631\u064a\u062a\u0648\u064a\u062a \u0627\u0631\u0633\u0644 \u062a\u0645 \u0639\u0644\u0649 \u0627\u0644\u0639\u0627\u0645 \u0627\u0648 \u0627\u0644\u062e\u0627\u0635 ..\u0627\u0644\u0644\u064a \u064a\u0644\u063a\u064a \u0627\u0644\u0631\u064a\u062a\u0648\u064a\u062a \u062d\u0638\u0631 \u0644\u0647 \u0627\u0647\u0645 \u0634\u064a \u0627\u0644\u0645\u0635\u062f\u0627\u0642\u064a\u0629 ..\u0627\u0644\u0644\u0647\u0645 \u0635\u0644 \u0648\u0633\u0644\u0645 \u0639\u0644\u0649 \u0633\u064a\u062f\u0646\u0627 \u0645\u062d\u0645\u062f.","protected":false,"verified":false,"followers_count":4603,"friends_count":2056,"listed_count":23,"favourites_count":415,"statuses_count":50141,"created_at":"Sun Jun 28 19:43:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615244512919564288\/YVyxAySB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615244512919564288\/YVyxAySB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:19:22 +0000 2015","id":663118572605034496,"id_str":"663118572605034496","text":"\ud83c\udf39\ud83c\udf43\u0648\u0627\u0644\u0628\u0639\u0636 \u062d\u064a\u0646\u0645\u0627 \u0646\u062d\u0627\u062f\u062b\u0647\u0645!\u061f\u062d\u0631\u0648\u0641\u0647\u0645 \u062d\u0643\u0627\u064a\u0629 \u062a\u0632\u064a\u062f\u0646\u0627 \u0633\u0639\u0627\u0627\u0627\u062f\u0629 \u0648\u062d\u064a\u0627\u0627\u0627\u0629 \u0645\u0639\u0647\u0645!\u2764 \u0628\u0639\u0645\u0642 \u0627\u0644\u0633\u0645\u0627\u0621\u0631\u0628\u064a \u0623\u0633\u0639\u062f \u062a\u0644\u0643 \u0627\u0644\u0642\u0644\u0648\u0628 \u0639\u0645\u0631\u0627.!\u2764\n\ud83d\udc8e\u0628\u0648\u0648\u0648\u062d\u2661 https:\/\/t.co\/g1BG0B8qce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302037032,"id_str":"2302037032","name":"\u2765 \u071fReuf Alwed\u00a0 \u2763","screen_name":"elhamdllaa","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u2764\u0645\u0622 \u0622\u062c\u0645\u0644 \u0623\u0646 \u062a\u0635\u0627\u062f\u0641 \u0631\u0648\u062d\u06af \u2661\u0631\u0648\u062d\u0627\u064b ..\u062a\u0641\u0648\u0642 \u0628\u062d\u0633\u0646 \u062e\u0644\u0642\u0647\u0627 \u062d\u062f \u0627\u0644\u0648\u0635\u0641\u060c \u062a\u062c\u0628\u0631\u0643 \u0623\u0646 \u062a\u0634\u062a\u0627\u0642\u064f \u0644\u0647\u0627\u060c \u062a\u0623\u0645\u0631\u0643 \u0631\u0648\u062d\u06af \u0623\u0646 (\u062a\u0633\u0623\u0644) \u0639\u0646\u0647\u0627 \u0648\u0643\u0644 \u0645\u0627\u064a\u0637\u0631\u064a \u0639\u0644\u06cc \u0628\u0627\u0644\u0643 \u0645\u0646 \u0627\u0639\u0645\u0627\u0627\u0627\u0642\u0643 \u062a\u062f\u0639\u0648\u0627 \u0644\u0647\u0627\u2764","protected":false,"verified":false,"followers_count":3714,"friends_count":2552,"listed_count":6,"favourites_count":1927,"statuses_count":71748,"created_at":"Fri Jan 24 19:20:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653358486869397504\/LGXImfGD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653358486869397504\/LGXImfGD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302037032\/1444874984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663118553219006464,"id_str":"663118553219006464","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":416,"resize":"fit"},"medium":{"w":480,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663118553219006464,"id_str":"663118553219006464","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":416,"resize":"fit"},"medium":{"w":480,"h":416,"resize":"fit"}}},{"id":663118558419881984,"id_str":"663118558419881984","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0MaWEAAGipb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0MaWEAAGipb.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":540,"h":539,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":539,"resize":"fit"}}},{"id":663118562773594112,"id_str":"663118562773594112","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0coWcAAMU5H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0coWcAAMU5H.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":267,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":378,"resize":"fit"},"large":{"w":480,"h":378,"resize":"fit"}}},{"id":663118566812725248,"id_str":"663118566812725248","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0rrWsAAuL6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0rrWsAAuL6k.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":498,"resize":"fit"},"medium":{"w":498,"h":498,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elhamdllaa","name":"\u2765 \u071fReuf Alwed\u00a0 \u2763","id":2302037032,"id_str":"2302037032","indices":[3,14]}],"symbols":[],"media":[{"id":663118553219006464,"id_str":"663118553219006464","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":416,"resize":"fit"},"medium":{"w":480,"h":416,"resize":"fit"}},"source_status_id":663118572605034496,"source_status_id_str":"663118572605034496","source_user_id":2302037032,"source_user_id_str":"2302037032"}]},"extended_entities":{"media":[{"id":663118553219006464,"id_str":"663118553219006464","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPez5CXAAA-pYu.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":416,"resize":"fit"},"medium":{"w":480,"h":416,"resize":"fit"}},"source_status_id":663118572605034496,"source_status_id_str":"663118572605034496","source_user_id":2302037032,"source_user_id_str":"2302037032"},{"id":663118558419881984,"id_str":"663118558419881984","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0MaWEAAGipb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0MaWEAAGipb.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":540,"h":539,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":539,"resize":"fit"}},"source_status_id":663118572605034496,"source_status_id_str":"663118572605034496","source_user_id":2302037032,"source_user_id_str":"2302037032"},{"id":663118562773594112,"id_str":"663118562773594112","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0coWcAAMU5H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0coWcAAMU5H.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":267,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":378,"resize":"fit"},"large":{"w":480,"h":378,"resize":"fit"}},"source_status_id":663118572605034496,"source_status_id_str":"663118572605034496","source_user_id":2302037032,"source_user_id_str":"2302037032"},{"id":663118566812725248,"id_str":"663118566812725248","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPe0rrWsAAuL6k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPe0rrWsAAuL6k.jpg","url":"https:\/\/t.co\/g1BG0B8qce","display_url":"pic.twitter.com\/g1BG0B8qce","expanded_url":"http:\/\/twitter.com\/elhamdllaa\/status\/663118572605034496\/photo\/1","type":"photo","sizes":{"large":{"w":498,"h":498,"resize":"fit"},"medium":{"w":498,"h":498,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663118572605034496,"source_status_id_str":"663118572605034496","source_user_id":2302037032,"source_user_id_str":"2302037032"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699177984,"id_str":"663727770699177984","text":"RT @GrindOfAthletes: Rivalries are the best part about sports.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3668818349,"id_str":"3668818349","name":"Mattison Fisher","screen_name":"mattison_fisher","location":null,"url":null,"description":"OHHS '19","protected":false,"verified":false,"followers_count":43,"friends_count":95,"listed_count":0,"favourites_count":4,"statuses_count":36,"created_at":"Tue Sep 15 23:28:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654397037581070336\/Dad3Tp_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654397037581070336\/Dad3Tp_2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3668818349\/1442515093","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:25:19 +0000 2015","id":663708949489672192,"id_str":"663708949489672192","text":"Rivalries are the best part about sports.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489156890,"id_str":"1489156890","name":"Grind of Athletes","screen_name":"GrindOfAthletes","location":null,"url":null,"description":"A Home To All Athletes! Business: TheAMMedia@gmail.com","protected":false,"verified":false,"followers_count":317322,"friends_count":28044,"listed_count":253,"favourites_count":8,"statuses_count":15145,"created_at":"Fri Jun 07 01:16:17 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000407474522\/d6ee8d282cc3f44ed0b42d739cd6afe9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000407474522\/d6ee8d282cc3f44ed0b42d739cd6afe9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1489156890\/1441858623","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":202,"favorite_count":314,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GrindOfAthletes","name":"Grind of Athletes","id":1489156890,"id_str":"1489156890","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006657"} +{"delete":{"status":{"id":656795131471773700,"id_str":"656795131471773700","user_id":1696861932,"user_id_str":"1696861932"},"timestamp_ms":"1447080006675"}} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736984064,"id_str":"663727770736984064","text":"Speeding Up Metabolism \u2013 Is it Possible? https:\/\/t.co\/SBygQxXvli","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912187575,"id_str":"3912187575","name":"chijioke","screen_name":"chijiokeonyeka2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":1643,"created_at":"Fri Oct 09 21:02:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SBygQxXvli","expanded_url":"http:\/\/ift.tt\/1RIm8Is","display_url":"ift.tt\/1RIm8Is","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736832512,"id_str":"663727770736832512","text":"l40","source":"\u003ca href=\"http:\/\/shootingstar067.com\/\" rel=\"nofollow\"\u003eShootingStarPro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":602041117,"id_str":"602041117","name":"\u305b\u308a\u304b\u6c0f","screen_name":"SRKtan4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":7,"listed_count":2,"favourites_count":470,"statuses_count":771700,"created_at":"Thu Jun 07 17:12:11 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572651358742798336\/yKI0Xfa8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572651358742798336\/yKI0Xfa8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/602041117\/1425365735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720071680,"id_str":"663727770720071680","text":"Di depan gue minta maaf, tapi di belakang gue masih aja nusuk diem-diem! Temen macam apa lu!! #TF","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Frontal\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2660882667,"id_str":"2660882667","name":"KHOIRUL ANAM","screen_name":"iniannam","location":"Pringsewu, Lampung, Indonesia","url":"http:\/\/www.facebook.com\/annamlrw","description":"Jangan nge-stalk, nanti naksir looh :D\r\n\r\nPIN : 5a3a2655\r\nCP : 0815-4115-6561","protected":false,"verified":false,"followers_count":1768,"friends_count":655,"listed_count":2,"favourites_count":116,"statuses_count":121475,"created_at":"Tue Jul 01 18:05:43 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651261752072515584\/83aJ2U9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651261752072515584\/83aJ2U9I_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TF","indices":[94,97]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736816128,"id_str":"663727770736816128","text":"Dhak Dhak .. Dil Dil \u2764 \r\r#DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115199416,"id_str":"115199416","name":"SRK Pride Of INDIA","screen_name":"KING__SRK","location":"Everyone heart","url":null,"description":"Die hard fan of @iamsrk And i can't explain my love For SHAH RUKH KHAN IN 140 WORDS :'((","protected":false,"verified":false,"followers_count":1226,"friends_count":427,"listed_count":8,"favourites_count":2895,"statuses_count":29615,"created_at":"Wed Feb 17 22:59:35 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539746679528767491\/oqvnNTSC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539746679528767491\/oqvnNTSC.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661977954348470272\/FmHLWIvS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661977954348470272\/FmHLWIvS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115199416\/1446981181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[25,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736959489,"id_str":"663727770736959489","text":"RT @CrazyPorVigna: @MatiVignisto @UnionVignista felicitaciones!! #FansAwards2015 #LaDiosa Flor Vigna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3950968703,"id_str":"3950968703","name":"lud","screen_name":"dreamyvigna","location":"fv pa pr ","url":null,"description":"\u2800\u2800\u2800 \u007bkeep on smiling\u007d","protected":false,"verified":false,"followers_count":180,"friends_count":125,"listed_count":1,"favourites_count":825,"statuses_count":2684,"created_at":"Wed Oct 14 00:05:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"38A9AF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663115737393963008\/Lm7vHGPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663115737393963008\/Lm7vHGPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3950968703\/1446934645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:43:40 +0000 2015","id":663607870781530112,"id_str":"663607870781530112","text":"@MatiVignisto @UnionVignista felicitaciones!! #FansAwards2015 #LaDiosa Flor Vigna","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663605461602684928,"in_reply_to_status_id_str":"663605461602684928","in_reply_to_user_id":738108120,"in_reply_to_user_id_str":"738108120","in_reply_to_screen_name":"MatiVignisto","user":{"id":3312020339,"id_str":"3312020339","name":"Juliana","screen_name":"CrazyPorVigna","location":"Vignalandia","url":"https:\/\/www.facebook.com\/pages\/Vignistas\/654193581366856?fref=ts","description":"\u2655Florencia Giannina Vigna\u2655\u2654Primero Mi Idola Despues El Mundo\u2654","protected":false,"verified":false,"followers_count":1297,"friends_count":256,"listed_count":1,"favourites_count":5695,"statuses_count":8286,"created_at":"Sun Jun 07 15:44:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637452380209061888\/NL7OK6hn.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637452380209061888\/NL7OK6hn.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656967222464745474\/mEDq7d2J_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656967222464745474\/mEDq7d2J_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312020339\/1445498114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":2,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[46,61]},{"text":"LaDiosa","indices":[62,70]}],"urls":[],"user_mentions":[{"screen_name":"MatiVignisto","name":"Matias","id":738108120,"id_str":"738108120","indices":[0,13]},{"screen_name":"UnionVignista","name":"28K Unidos Por Flor","id":2854057473,"id_str":"2854057473","indices":[14,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[65,80]},{"text":"LaDiosa","indices":[81,89]}],"urls":[],"user_mentions":[{"screen_name":"CrazyPorVigna","name":"Juliana","id":3312020339,"id_str":"3312020339","indices":[3,17]},{"screen_name":"MatiVignisto","name":"Matias","id":738108120,"id_str":"738108120","indices":[19,32]},{"screen_name":"UnionVignista","name":"28K Unidos Por Flor","id":2854057473,"id_str":"2854057473","indices":[33,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728587265,"id_str":"663727770728587265","text":"@AfternoonChat Hi guys!great topic!I'm a diabetic for 20years now. have 2kids.I'm proof u can live a fulfilled life being a diabetic!","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3164404779,"in_reply_to_user_id_str":"3164404779","in_reply_to_screen_name":"AfternoonChat","user":{"id":39734279,"id_str":"39734279","name":"Lucy","screen_name":"LucyMurugan","location":"South Africa","url":null,"description":"Love music,family and my friends!!!!!!ECR is da best!","protected":false,"verified":false,"followers_count":51,"friends_count":99,"listed_count":1,"favourites_count":110,"statuses_count":1027,"created_at":"Wed May 13 11:49:08 +0000 2009","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635134121648488448\/UFJQg8iP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635134121648488448\/UFJQg8iP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39734279\/1412809932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AfternoonChat","name":"Afternoon Express","id":3164404779,"id_str":"3164404779","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724376576,"id_str":"663727770724376576","text":"RT @Luke5SOS: @brianlogandales @Michael5SOS @5SOS @Ashton5SOS @Calum5SOS devostation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246347859,"id_str":"3246347859","name":"Hood \u265b","screen_name":"calumsmars","location":"A Daydream Away ","url":"https:\/\/Instagram.com\/gingeeeer_0\/","description":"\u2022The day I will stop loving you, is the day I will close my eyes for ever!\u2022 \u271e Band\/4","protected":false,"verified":false,"followers_count":307,"friends_count":204,"listed_count":5,"favourites_count":5883,"statuses_count":11492,"created_at":"Mon May 11 15:13:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662343811054608386\/79xK3Kr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662343811054608386\/79xK3Kr__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246347859\/1446750150","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:47:04 +0000 2015","id":663654027461337088,"id_str":"663654027461337088","text":"@brianlogandales @Michael5SOS @5SOS @Ashton5SOS @Calum5SOS devostation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663602298677936129,"in_reply_to_status_id_str":"663602298677936129","in_reply_to_user_id":16540829,"in_reply_to_user_id_str":"16540829","in_reply_to_screen_name":"brianlogandales","user":{"id":403245020,"id_str":"403245020","name":"Luke Hemmings","screen_name":"Luke5SOS","location":null,"url":null,"description":"Sounds Good Feels Good out now :-)","protected":false,"verified":true,"followers_count":6540203,"friends_count":22347,"listed_count":35706,"favourites_count":198,"statuses_count":7932,"created_at":"Wed Nov 02 06:59:37 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660963373044146176\/Qq0Fph3J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660963373044146176\/Qq0Fph3J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403245020\/1446421865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1919,"favorite_count":4037,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brianlogandales","name":"DALES.","id":16540829,"id_str":"16540829","indices":[0,16]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[17,29]},{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[30,35]},{"screen_name":"Ashton5SOS","name":"Ashton Irwin","id":439125710,"id_str":"439125710","indices":[36,47]},{"screen_name":"Calum5SOS","name":"Calum Hood","id":403255314,"id_str":"403255314","indices":[48,58]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Luke5SOS","name":"Luke Hemmings","id":403245020,"id_str":"403245020","indices":[3,12]},{"screen_name":"brianlogandales","name":"DALES.","id":16540829,"id_str":"16540829","indices":[14,30]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[31,43]},{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[44,49]},{"screen_name":"Ashton5SOS","name":"Ashton Irwin","id":439125710,"id_str":"439125710","indices":[50,61]},{"screen_name":"Calum5SOS","name":"Calum Hood","id":403255314,"id_str":"403255314","indices":[62,72]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703421440,"id_str":"663727770703421440","text":"RT @teeiism: \u0e08\u0e30\u0e44\u0e1b\u0e42\u0e17\u0e29\u0e43\u0e04\u0e23 \u0e15\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b \u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e2b\u0e49\u0e32\u0e21\u0e43\u0e08\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":918710046,"id_str":"918710046","name":"35","screen_name":"rainnyissy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":233,"friends_count":130,"listed_count":2,"favourites_count":8835,"statuses_count":164620,"created_at":"Thu Nov 01 10:31:42 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC466B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/809130710\/81c253656e50f01666e15f7f35b0475e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/809130710\/81c253656e50f01666e15f7f35b0475e.png","profile_background_tile":true,"profile_link_color":"FF6666","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662589544613613568\/kyclSgH-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662589544613613568\/kyclSgH-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/918710046\/1443763123","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed May 13 12:05:39 +0000 2015","id":598459083910291457,"id_str":"598459083910291457","text":"\u0e08\u0e30\u0e44\u0e1b\u0e42\u0e17\u0e29\u0e43\u0e04\u0e23 \u0e15\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e40\u0e02\u0e49\u0e32\u0e44\u0e1b \u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e2b\u0e49\u0e32\u0e21\u0e43\u0e08\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93869995,"id_str":"93869995","name":"teetee \u221e","screen_name":"teeiism","location":"23000","url":"http:\/\/instagram.com\/teechn","description":"stand alone","protected":false,"verified":false,"followers_count":40518,"friends_count":245,"listed_count":18,"favourites_count":2698,"statuses_count":13830,"created_at":"Tue Dec 01 14:31:36 +0000 2009","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"854309","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438634073\/url.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438634073\/url.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649897485343715328\/IbP-CqIx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649897485343715328\/IbP-CqIx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93869995\/1446455218","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36349,"favorite_count":5261,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teeiism","name":"teetee \u221e","id":93869995,"id_str":"93869995","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715860993,"id_str":"663727770715860993","text":"@T_mino_mtg \u305d\u3046\u304b\u2026\u77f3\u3092\u8cb7\u3046\u3068\u7121\u6599\u306710\u9023\u304c\u56de\u305b\u308b\u306e\u304b","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726963392016385,"in_reply_to_status_id_str":"663726963392016385","in_reply_to_user_id":3013315800,"in_reply_to_user_id_str":"3013315800","in_reply_to_screen_name":"T_mino_mtg","user":{"id":559479864,"id_str":"559479864","name":"\u30ab\u30ba\u30ad","screen_name":"kazu1208po","location":null,"url":"http:\/\/booklog.jp\/users\/kazu1208po","description":"\u674f\u5b50\u304c\u304b\u308f\u3044\u304f\u3066\u751f\u304d\u308b\u306e\u304c\u3064\u3089\u3044\u793e\u755c\u898b\u7fd2\u3044\u3002\u3000\u6c34\u6a39\u5948\u3005\u3055\u3093\/\u4f50\u5009\u674f\u5b50\/\u6f2b\u753b(\u30d6\u30af\u30ed\u30b0\u2193)\/\u8266\u3053\u308c\/\u30bf\u30a4\u30d4\u30f3\u30b0(\u30a8\u30bf\u30a4535pt)\/\u30b9\u30af\u30d5\u30a7\u30b9(\u6d77\u672a\u30a4\u30d9\u5f85\u6a5f)","protected":false,"verified":false,"followers_count":311,"friends_count":380,"listed_count":27,"favourites_count":3700,"statuses_count":18765,"created_at":"Sat Apr 21 10:18:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C72835","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607558964830543874\/zfneIhDZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607558964830543874\/zfneIhDZ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"T_mino_mtg","name":"mino@mtg","id":3013315800,"id_str":"3013315800","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699173888,"id_str":"663727770699173888","text":"He explorado Mazmorra del castillo. \u00bfLlegar\u00e1s tu tambi\u00e9n alg\u00fan d\u00eda? https:\/\/t.co\/wqS5L3ZFea #gameinsight","source":"\u003ca href=\"http:\/\/gigam.es\/TribezAndCastlez_tw\" rel=\"nofollow\"\u003eThe Tribez & Castlez\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1255157995,"id_str":"1255157995","name":"Lorena","screen_name":"lorena220970","location":null,"url":null,"description":"Yo qu\u00e9 s\u00e9, s\u00f3lo tuiteo.","protected":false,"verified":false,"followers_count":109,"friends_count":461,"listed_count":0,"favourites_count":257,"statuses_count":722,"created_at":"Sat Mar 09 19:10:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/813834289\/36f1886c181de7685e00dbb191550299.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/813834289\/36f1886c181de7685e00dbb191550299.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486801227922296833\/oP4H2PY0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486801227922296833\/oP4H2PY0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1255157995\/1405896114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gameinsight","indices":[92,104]}],"urls":[{"url":"https:\/\/t.co\/wqS5L3ZFea","expanded_url":"http:\/\/gigam.es\/Castlez_tw","display_url":"gigam.es\/Castlez_tw","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724376577,"id_str":"663727770724376577","text":"RT @_glowhoran: \uf495le dejas porque te est\u00e1s meando encima y necesitas darte una ducha \uf495\nRT si que verg\u00fcenza \nFAV si me da igual","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431534160,"id_str":"431534160","name":"What about love","screen_name":"Imprescindible7","location":"Austin Mahone","url":"https:\/\/instagram.com\/laura2000l\/","description":"Lau.@edsheeran is the solution to everything.Jack&Jack.Shawn. Distance separates bodies not hearts @cloroformistas. 2\/5TheTide 2\/5TheVamps. Spain. Ravenclaw.RAP","protected":false,"verified":false,"followers_count":1315,"friends_count":830,"listed_count":5,"favourites_count":14975,"statuses_count":38840,"created_at":"Thu Dec 08 11:39:12 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000035981834\/16b397005fc484ccdb52223ba7b9984e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000035981834\/16b397005fc484ccdb52223ba7b9984e.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658393155188994048\/C_Xz2fgV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658393155188994048\/C_Xz2fgV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431534160\/1445808134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:16:05 +0000 2015","id":663480133240623104,"id_str":"663480133240623104","text":"\uf495le dejas porque te est\u00e1s meando encima y necesitas darte una ducha \uf495\nRT si que verg\u00fcenza \nFAV si me da igual","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663479718587588608,"in_reply_to_status_id_str":"663479718587588608","in_reply_to_user_id":765801271,"in_reply_to_user_id_str":"765801271","in_reply_to_screen_name":"_glowhoran","user":{"id":765801271,"id_str":"765801271","name":"promise \u263a","screen_name":"_glowhoran","location":"Valencia (Espa\u00f1a)","url":"https:\/\/twitter.com\/_glowhoran\/status\/544084978670514176","description":"shut up, niall horan is singing. 110714","protected":false,"verified":false,"followers_count":4098,"friends_count":2767,"listed_count":47,"favourites_count":7477,"statuses_count":77029,"created_at":"Sat Aug 18 14:29:28 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7FBFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452172141782241280\/Iz4sC1ZE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452172141782241280\/Iz4sC1ZE.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639084137215864833\/0pUwPq2G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639084137215864833\/0pUwPq2G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/765801271\/1441205570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_glowhoran","name":"promise \u263a","id":765801271,"id_str":"765801271","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732765184,"id_str":"663727770732765184","text":"When VA sends me coupons & gift cards >>>>>>>","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246020338,"id_str":"246020338","name":"Brooklyn","screen_name":"AceBoogie94_","location":null,"url":null,"description":"Brooklyn\u2708\ufe0fTampa | Fashion Killa |","protected":false,"verified":false,"followers_count":3725,"friends_count":2477,"listed_count":4,"favourites_count":553,"statuses_count":165246,"created_at":"Tue Feb 01 23:33:54 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654092551671013376\/nw6wfx9i.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654092551671013376\/nw6wfx9i.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2EAEF","profile_text_color":"877F63","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659760676672577536\/rZB842AJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659760676672577536\/rZB842AJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246020338\/1446728235","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724249600,"id_str":"663727770724249600","text":"\u30d1\u30f3\u30c4\u306b\u76db\u5927\u306b\u7a74\u304c\u7a7a\u3044\u3066\u3066\u30ef\u30ed\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259196594,"id_str":"259196594","name":"\u3056\u304f\u308d","screen_name":"Kavallerist","location":null,"url":null,"description":"\u63cf\u3044\u3066\u3044\u305f\u3060\u3044\u305f\u7d75\u3067\u69cb\u6210\u3055\u308c\u305f\u7d20\u6674\u3089\u3057\u3044\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u753b\u9762","protected":false,"verified":false,"followers_count":501,"friends_count":468,"listed_count":29,"favourites_count":363,"statuses_count":109344,"created_at":"Tue Mar 01 10:24:07 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651608986710511616\/8GZoqxSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651608986710511616\/8GZoqxSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259196594\/1397888398","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724339712,"id_str":"663727770724339712","text":"#mcm My boys!!! #RomanReigns and #DeanAmbrose #BelieveThat #wrestling #wwe #AmbroseAslyum\u2026 https:\/\/t.co\/GjviNLEyhA","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134578171,"id_str":"134578171","name":"Ella Edwards","screen_name":"ella_bella47","location":"EARTH","url":"http:\/\/gofundme.com\/w26k8gk","description":"DAUGHTER of @jojofythat (Joella Edwards) NOT a #composite #CORETTA in #DFMF by @BarackObama CLICK THE LINK http:\/\/gofundme.com\/w26k8gk IG: ella_bella47","protected":false,"verified":false,"followers_count":973,"friends_count":1756,"listed_count":17,"favourites_count":3105,"statuses_count":19384,"created_at":"Sun Apr 18 21:07:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/673347017\/7ee07fe6eb78730a9ff3cc09b9148788.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/673347017\/7ee07fe6eb78730a9ff3cc09b9148788.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633313393588445185\/HEtonHfI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633313393588445185\/HEtonHfI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134578171\/1368418425","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mcm","indices":[0,4]},{"text":"RomanReigns","indices":[17,29]},{"text":"DeanAmbrose","indices":[34,46]},{"text":"BelieveThat","indices":[47,59]},{"text":"wrestling","indices":[60,70]},{"text":"wwe","indices":[71,75]},{"text":"AmbroseAslyum","indices":[76,90]}],"urls":[{"url":"https:\/\/t.co\/GjviNLEyhA","expanded_url":"https:\/\/instagram.com\/p\/93iTw8n5GZ\/","display_url":"instagram.com\/p\/93iTw8n5GZ\/","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724253696,"id_str":"663727770724253696","text":"\u62db\u5f85\u30b3\u30fc\u30c9\u301016f509e51\u3011\u3002\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u4f5c\u6210\u6642\u306b\u3053\u306e\u30b3\u30fc\u30c9\u3092\u5165\u529b\u3059\u308b\u3068300\u5186\u5206\u306e\u8ab2\u91d1\u30a2\u30a4\u30c6\u30e0\u304c\u624b\u306b\u5165\u308a\u307e\u3059\uff01\u3000\u5e8f\u76e4\u304b\u3089\u5f37\u529b\u306a\u9b54\u7269\u3092\u30b2\u30c3\u30c8\u3057\u307e\u3057\u3087\u3046\u266a\u3000#\u30a2\u30eb\u30d5\u30d8\u30a4\u30e0\u306e\u9b54\u7269\u4f7f\u3044 #9m","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u30a2\u30eb\u30d5\u30d8\u30a4\u30e0\u306e\u9b54\u7269\u4f7f\u3044\u62db\u5f85\u30b3\u30fc\u30c9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2434128109,"id_str":"2434128109","name":"\u62db\u5f85\u30b3\u30fc\u30c9\uff20\u30a2\u30eb\u30d5\u30d8\u30a4\u30e0\u306e\u9b54\u7269\u4f7f\u3044","screen_name":"arufuheimucode","location":null,"url":null,"description":"\u30a2\u30eb\u30d5\u30d8\u30a4\u30e0\u306e\u9b54\u7269\u4f7f\u3044\u306e\u62db\u5f85\u30b3\u30fc\u30c9\u3067\u3059\u3002\u301016f509e51\u3011\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u4f5c\u6210\u6642\u306b\u3053\u306e\u30b3\u30fc\u30c9\u3092\u5165\u529b\u3059\u308b\u3068300\u5186\u5206\u306e\u8ab2\u91d1\u30a2\u30a4\u30c6\u30e0\u304c\u624b\u306b\u5165\u308a\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":27,"friends_count":2,"listed_count":3,"favourites_count":0,"statuses_count":208209,"created_at":"Tue Apr 08 19:38:59 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453618982151413760\/luCqbd9X_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453618982151413760\/luCqbd9X_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a2\u30eb\u30d5\u30d8\u30a4\u30e0\u306e\u9b54\u7269\u4f7f\u3044","indices":[79,91]},{"text":"9m","indices":[92,95]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703368192,"id_str":"663727770703368192","text":"vans https:\/\/t.co\/N1j4AHDvQq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1733079500,"id_str":"1733079500","name":"row","screen_name":"_robynlee_","location":"in your nightmares","url":null,"description":"'17","protected":false,"verified":false,"followers_count":671,"friends_count":984,"listed_count":0,"favourites_count":3400,"statuses_count":7662,"created_at":"Thu Sep 05 20:55:56 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663165946173898752\/XhdzYsuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663165946173898752\/XhdzYsuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1733079500\/1446937741","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663527127925563392,"quoted_status_id_str":"663527127925563392","quoted_status":{"created_at":"Mon Nov 09 01:22:49 +0000 2015","id":663527127925563392,"id_str":"663527127925563392","text":"28. favorite shoe ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623085128,"id_str":"623085128","name":"oh thats lay \u2708\ufe0f","screen_name":"dalayasiaa_","location":"w my MF' BESTFRIEND . \u203c\ufe0f","url":"http:\/\/www.bitchIMpopping.com","description":"kiki & titi \u2763 bff here \u2764\ufe0f","protected":false,"verified":false,"followers_count":801,"friends_count":482,"listed_count":0,"favourites_count":4198,"statuses_count":14094,"created_at":"Sat Jun 30 19:44:33 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F00984","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448268710780747776\/rHzA__Kj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448268710780747776\/rHzA__Kj.jpeg","profile_background_tile":true,"profile_link_color":"0AE7F7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657317246822449152\/9PdmC7IR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657317246822449152\/9PdmC7IR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623085128\/1446589643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N1j4AHDvQq","expanded_url":"https:\/\/twitter.com\/dalayasiaa_\/status\/663527127925563392","display_url":"twitter.com\/dalayasiaa_\/st\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699104256,"id_str":"663727770699104256","text":"\u3088\u3063\u3057\u3083\uff01\u5171\u95d8\u3067\u672c\u6c41\u3067\u305f\u266a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415556067,"id_str":"415556067","name":"Revy","screen_name":"cutlass777","location":"\u30b2\u30c3\u30bf\u30fc\u7dda","url":null,"description":"\uff12\u6b21\u5143\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u305f\u3060\u306e\u7d33\u58eb\u3067\u3059\uff01 \u30a2\u30cb\u30e1\u3084\u30b2\u30fc\u30e0\u3001\u30a8\u30ed\u30b2\u306a\u3069\u55dc\u3093\u3067\u304a\u308a\u307e\u3059\u266a \u4e8c\u6b21\u5143\u306a\u304f\u3057\u3066\u4eba\u751f\u8a9e\u308c\u307e\u305b\u3093\uff01\u9a0e\u7a7a\u58eb\u3084\u3063\u3066\u307e\u3059\u3002 \u6c34\u6a39\u5948\u3005\u30d5\u30a1\u30f3\u3002\u521d\u53c2\u52a0:2015\/9\/19\u897f\u6b66\u30d7\u30ea\u30f3\u30b9\u30c9\u30fc\u30e0","protected":false,"verified":false,"followers_count":146,"friends_count":269,"listed_count":9,"favourites_count":207,"statuses_count":13214,"created_at":"Fri Nov 18 14:02:32 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625711917202477056\/DPvI-fWQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625711917202477056\/DPvI-fWQ.jpg","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660491238961840128\/c5LzPVID_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660491238961840128\/c5LzPVID_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415556067\/1438013521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715885568,"id_str":"663727770715885568","text":"RT @HospicioRestart: https:\/\/t.co\/DMcxmXgxr2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463706369,"id_str":"2463706369","name":"Yvette Bunnies","screen_name":"yvettexbunnies","location":null,"url":null,"description":"Yvette Bunnies: Follow For the Hottest Pictures of Ass EVERYDAY 18+","protected":false,"verified":false,"followers_count":174,"friends_count":1643,"listed_count":2,"favourites_count":0,"statuses_count":1518,"created_at":"Fri Apr 25 21:15:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF95CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653697492945514496\/6GPJVLhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653697492945514496\/6GPJVLhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463706369\/1444688602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:52:16 +0000 2015","id":663715730966188033,"id_str":"663715730966188033","text":"https:\/\/t.co\/DMcxmXgxr2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":183731467,"id_str":"183731467","name":"Hot Naked Babes RTs","screen_name":"HospicioRestart","location":"New York, NY","url":null,"description":"Retweeting Stockings Porn. Daily updated galleries. I do not own the content that I tweet.","protected":false,"verified":false,"followers_count":16693,"friends_count":11382,"listed_count":29,"favourites_count":15,"statuses_count":32569,"created_at":"Fri Aug 27 19:14:17 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/253282756\/HospicioRestart.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/253282756\/HospicioRestart.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549698753808961536\/bC0ULIiY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549698753808961536\/bC0ULIiY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/183731467\/1419893999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715730068639744,"id_str":"663715730068639744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","url":"https:\/\/t.co\/DMcxmXgxr2","display_url":"pic.twitter.com\/DMcxmXgxr2","expanded_url":"http:\/\/twitter.com\/HospicioRestart\/status\/663715730966188033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715730068639744,"id_str":"663715730068639744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","url":"https:\/\/t.co\/DMcxmXgxr2","display_url":"pic.twitter.com\/DMcxmXgxr2","expanded_url":"http:\/\/twitter.com\/HospicioRestart\/status\/663715730966188033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HospicioRestart","name":"Hot Naked Babes RTs","id":183731467,"id_str":"183731467","indices":[3,19]}],"symbols":[],"media":[{"id":663715730068639744,"id_str":"663715730068639744","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","url":"https:\/\/t.co\/DMcxmXgxr2","display_url":"pic.twitter.com\/DMcxmXgxr2","expanded_url":"http:\/\/twitter.com\/HospicioRestart\/status\/663715730966188033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715730966188033,"source_status_id_str":"663715730966188033","source_user_id":183731467,"source_user_id_str":"183731467"}]},"extended_entities":{"media":[{"id":663715730068639744,"id_str":"663715730068639744","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX98KKUkAAgU-S.jpg","url":"https:\/\/t.co\/DMcxmXgxr2","display_url":"pic.twitter.com\/DMcxmXgxr2","expanded_url":"http:\/\/twitter.com\/HospicioRestart\/status\/663715730966188033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715730966188033,"source_status_id_str":"663715730966188033","source_user_id":183731467,"source_user_id_str":"183731467"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715865088,"id_str":"663727770715865088","text":"RT @justinbieber: #BIEBERWEEK starts on @TheEllenShow tomorrow! #PURPOSE ON FRIDAY!! https:\/\/t.co\/H797XW66WV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310034783,"id_str":"2310034783","name":"\u2766","screen_name":"ranjeethaaaaaa","location":"singapore","url":"http:\/\/Instagram.com\/ranjeethaaaaa","description":"#MUFC \u0950","protected":false,"verified":false,"followers_count":1136,"friends_count":548,"listed_count":6,"favourites_count":3312,"statuses_count":49531,"created_at":"Sat Jan 25 13:22:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538572963386126336\/jmMSkSE__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538572963386126336\/jmMSkSE__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310034783\/1437996701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:56:01 +0000 2015","id":663641180521955328,"id_str":"663641180521955328","text":"#BIEBERWEEK starts on @TheEllenShow tomorrow! #PURPOSE ON FRIDAY!! https:\/\/t.co\/H797XW66WV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27260086,"id_str":"27260086","name":"Justin Bieber","screen_name":"justinbieber","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Let's make the world better. Join @officialfahlo and add me on @shots 'justinbieber'. OUR new single SORRY out now. OUR new album PURPOSE out Nov 13","protected":false,"verified":true,"followers_count":69382908,"friends_count":240813,"listed_count":627142,"favourites_count":1894,"statuses_count":29961,"created_at":"Sat Mar 28 16:41:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27260086\/1446487498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18877,"favorite_count":26355,"entities":{"hashtags":[{"text":"BIEBERWEEK","indices":[0,11]},{"text":"PURPOSE","indices":[46,54]}],"urls":[],"user_mentions":[{"screen_name":"TheEllenShow","name":"Ellen DeGeneres","id":15846407,"id_str":"15846407","indices":[22,35]}],"symbols":[],"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BIEBERWEEK","indices":[18,29]},{"text":"PURPOSE","indices":[64,72]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[3,16]},{"screen_name":"TheEllenShow","name":"Ellen DeGeneres","id":15846407,"id_str":"15846407","indices":[40,53]}],"symbols":[],"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663641180521955328,"source_status_id_str":"663641180521955328","source_user_id":27260086,"source_user_id_str":"27260086"}]},"extended_entities":{"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663641180521955328,"source_status_id_str":"663641180521955328","source_user_id":27260086,"source_user_id_str":"27260086"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736812032,"id_str":"663727770736812032","text":"RT @HoneyGudkina: \"\u3071\u3063\u3068\u898b\u306f\u904a\u3093\u3067\u305d\u3046\u3060\u3051\u3069\u30fb\u30fb\u30fb\n\u5b9f\u306f\u8d85\u30de\u30b8\u30e1\u306a\u5b50\u305f\u3061\u306b\u51fa\u4f1a\u3048\u308b\u30b5\u30a4\u30c8\u898b\u3064\u3051\u307e\u3057\u305f\uff01\n\u5b8c\u5168\u533f\u540d\u3067\u51fa\u4f1a\u3048\u308b\u306e\u3082\u5b09\u3057\u3044\u306d\uff01\uff01\n\u21d2 https:\/\/t.co\/5qRklpvZcd https:\/\/t.co\/Qyv2xQcOwi","source":"\u003ca href=\"https:\/\/twitter.com\/p1DHc55LZpuW8j\" rel=\"nofollow\"\u003eR6efYczCH9Ic00\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3928323082,"id_str":"3928323082","name":"\u9762\u767d\u3044\u52d5\u753b\u6295\u7a3f\u3059\u308b\u305c\uff01(*\u00b4\u0437`)","screen_name":"larionvoskoboe3","location":null,"url":null,"description":"\u4e00\u4eba\u96fb\u8eca\u30fb\u30d0\u30b9\u3067\u306e\u8996\u8074\u306b\u8981\u6ce8\u610f\uff01\u601d\u308f\u305a\u7b11\u3063\u3066\u3057\u307e\u3046\u9762\u767d\u52d5\u753b\u30fb\u753b\u50cf\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u9762\u767d\u3044\u3068\u601d\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059(^^\u309e","protected":false,"verified":false,"followers_count":503,"friends_count":2460,"listed_count":0,"favourites_count":0,"statuses_count":587,"created_at":"Sun Oct 11 14:01:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657467653565472768\/j3Mx7V53_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657467653565472768\/j3Mx7V53_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3928323082\/1445587490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727754353885184,"id_str":"663727754353885184","text":"\"\u3071\u3063\u3068\u898b\u306f\u904a\u3093\u3067\u305d\u3046\u3060\u3051\u3069\u30fb\u30fb\u30fb\n\u5b9f\u306f\u8d85\u30de\u30b8\u30e1\u306a\u5b50\u305f\u3061\u306b\u51fa\u4f1a\u3048\u308b\u30b5\u30a4\u30c8\u898b\u3064\u3051\u307e\u3057\u305f\uff01\n\u5b8c\u5168\u533f\u540d\u3067\u51fa\u4f1a\u3048\u308b\u306e\u3082\u5b09\u3057\u3044\u306d\uff01\uff01\n\u21d2 https:\/\/t.co\/5qRklpvZcd https:\/\/t.co\/Qyv2xQcOwi","source":"\u003ca href=\"https:\/\/twitter.com\/7n0h2BKNqXipV4\" rel=\"nofollow\"\u003eu66CPBnqdgZ8N5\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3861316458,"id_str":"3861316458","name":"\u6700\u5f37\u2606\u795e\u30a2\u30d7\u30ea\u901f\u5831","screen_name":"HoneyGudkina","location":null,"url":null,"description":"\u6700\u5f37\u306e\u795e\u30a2\u30d7\u30ea\u6848\u4ef6\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304d\u307e\u3059\u2606 \u7686\u3055\u3093\u30d5\u30a9\u30ed\u30fc\uff06RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2764","protected":false,"verified":false,"followers_count":7,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":5,"created_at":"Sun Oct 11 18:54:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657473552308793344\/uapDciRg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657473552308793344\/uapDciRg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3861316458\/1445588902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5qRklpvZcd","expanded_url":"http:\/\/goo.gl\/7ZgrGv","display_url":"goo.gl\/7ZgrGv","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":663727754240589824,"id_str":"663727754240589824","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","url":"https:\/\/t.co\/Qyv2xQcOwi","display_url":"pic.twitter.com\/Qyv2xQcOwi","expanded_url":"http:\/\/twitter.com\/HoneyGudkina\/status\/663727754353885184\/photo\/1","type":"photo","sizes":{"medium":{"w":298,"h":397,"resize":"fit"},"large":{"w":298,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":298,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727754240589824,"id_str":"663727754240589824","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","url":"https:\/\/t.co\/Qyv2xQcOwi","display_url":"pic.twitter.com\/Qyv2xQcOwi","expanded_url":"http:\/\/twitter.com\/HoneyGudkina\/status\/663727754353885184\/photo\/1","type":"photo","sizes":{"medium":{"w":298,"h":397,"resize":"fit"},"large":{"w":298,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":298,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5qRklpvZcd","expanded_url":"http:\/\/goo.gl\/7ZgrGv","display_url":"goo.gl\/7ZgrGv","indices":[82,105]}],"user_mentions":[{"screen_name":"HoneyGudkina","name":"\u6700\u5f37\u2606\u795e\u30a2\u30d7\u30ea\u901f\u5831","id":3861316458,"id_str":"3861316458","indices":[3,16]}],"symbols":[],"media":[{"id":663727754240589824,"id_str":"663727754240589824","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","url":"https:\/\/t.co\/Qyv2xQcOwi","display_url":"pic.twitter.com\/Qyv2xQcOwi","expanded_url":"http:\/\/twitter.com\/HoneyGudkina\/status\/663727754353885184\/photo\/1","type":"photo","sizes":{"medium":{"w":298,"h":397,"resize":"fit"},"large":{"w":298,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":298,"h":397,"resize":"fit"}},"source_status_id":663727754353885184,"source_status_id_str":"663727754353885184","source_user_id":3861316458,"source_user_id_str":"3861316458"}]},"extended_entities":{"media":[{"id":663727754240589824,"id_str":"663727754240589824","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4DsUAAAqyCs.png","url":"https:\/\/t.co\/Qyv2xQcOwi","display_url":"pic.twitter.com\/Qyv2xQcOwi","expanded_url":"http:\/\/twitter.com\/HoneyGudkina\/status\/663727754353885184\/photo\/1","type":"photo","sizes":{"medium":{"w":298,"h":397,"resize":"fit"},"large":{"w":298,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":298,"h":397,"resize":"fit"}},"source_status_id":663727754353885184,"source_status_id_str":"663727754353885184","source_user_id":3861316458,"source_user_id_str":"3861316458"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732621824,"id_str":"663727770732621824","text":"\u30a2\u30a4\u30b3\u30f3\u3068\u305d\u306e\u4e2d\u306e\u4eba\u3068\u304b\u95c7\u3067\u3057\u304b\u306a\u3044\u3084\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2951389891,"id_str":"2951389891","name":"\u5143\u6c17\u3044\u3063\u3071\u3044\uff01\u308f\u305f\u3089\u305d\u767d\u9ed2\u732b\u57a2","screen_name":"watarazoo","location":null,"url":"http:\/\/watarazoo.tumblr.com","description":"\u30a4\u30e9\u30b9\u30c8\u63cf\u3044\u305f\u308a\u4f55\u304b\u4f5c\u3063\u305f\u308a(\u904e\u53bb\u7d75\u306fTumblr\u306b)\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\/\u30ac\u30c1\u30e3\u5927\u597d\u304d\uff01\/\u9ed2\u732b2014.8\uff5e175\u5f10\u5f0f\uff08\u9b54\u5c0e\u676f\u306c\u308b\u52e2\u3067\u3059\uff09 \/\u767d\u732b2015.3.2\uff5e 122 8\u6bb5 \u3000http:\/\/pixiv.me\/watarazoo","protected":false,"verified":false,"followers_count":621,"friends_count":500,"listed_count":29,"favourites_count":28091,"statuses_count":28906,"created_at":"Tue Dec 30 03:27:49 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660472876454141953\/bWL7-98w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660472876454141953\/bWL7-98w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2951389891\/1443776072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720190464,"id_str":"663727770720190464","text":"@Demepoker tanti auguri!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":567250366,"in_reply_to_user_id_str":"567250366","in_reply_to_screen_name":"Demepoker","user":{"id":3709209087,"id_str":"3709209087","name":"Davide.","screen_name":"2FIRSTLINE","location":"in mischia","url":null,"description":"Si ritorna per vari motivi, io ancora non ho trovato il mio.","protected":false,"verified":false,"followers_count":449,"friends_count":426,"listed_count":3,"favourites_count":9193,"statuses_count":8088,"created_at":"Sat Sep 19 17:34:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659724620451459072\/s7H_eCWJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659724620451459072\/s7H_eCWJ.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663443234715262976\/cKYaTrEw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663443234715262976\/cKYaTrEw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3709209087\/1442960435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Demepoker","name":"The Metrio","id":567250366,"id_str":"567250366","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728398848,"id_str":"663727770728398848","text":"BLEACH Fate.Zero \u30e9\u30d6\u30e9\u30a4\u30d6 \u4ed6\u2026 \u597d\u304d\u306a\u30b2\u30fc\u30e0\u304c\u540c\u3058\u5f7c\u5973\u63a2\u3057\u3057\u307e\u305b\u3093\u304b\uff1f \u21d2 \u51fa\u4f1a\u3048\u308b\u30b5\u30a4\u30c8\u7d39\u4ecb\u3057\u3066\u307e\u3059(\uff65\u0434\uff65\uff61)","source":"\u003ca href=\"https:\/\/twitter.com\/qkceyxq6vv\" rel=\"nofollow\"\u003e\u3053name\u306f\u308b\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622207038,"id_str":"3622207038","name":"\u307b\u306e\u304b\u76f8\u4e92\u30d5\u30a9\u30ed\u5e0c\u671b","screen_name":"fd873uis","location":null,"url":"http:\/\/bit.ly\/1Hd05ne","description":"\u5929\u6c17\u306e\u3044\u3044\u65e5\u306f\u516c\u5712\u3067\u306e\u3093\u3073\u308a\u8aad\u66f8\u304c\u6700\u9ad8\u3067\u3059\u3002\u6700\u8fd1mixi\u304c\u904b\u55b6\u3057\u3066\u3044\u308b\u51fa\u4f1a\u3044\u7cfb\u30b5\u30a4\u30c8\u3092\u77e5\u308a\u307e\u3057\u305f\uff01\u5973\u306e\u5b50\u7121\u6599\u3067\u540c\u3058\u3088\u3046\u306a\u8da3\u5473\u306e\u4eba\u304c\u7d50\u69cb\u767b\u9332\u3057\u3066\u308b\u3063\u3066\u805e\u3044\u3066\u2026\u8208\u5473\u3042\u308a\u307e\u3059\uff01\u55aa\u3067\u3082\u3044\u3044\u306e\u304b\u306a\u2026","protected":false,"verified":false,"followers_count":199,"friends_count":168,"listed_count":0,"favourites_count":337,"statuses_count":1089,"created_at":"Sun Sep 20 02:34:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657107764838162432\/hqkAZo5q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657107764838162432\/hqkAZo5q_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724265984,"id_str":"663727770724265984","text":"RT @Lermontovna87: \u7a81\u7136\u4eba\u9593\u304c\u30be\u30f3\u30d3\u5316\uff01\uff1f\n\u3044\u3064\u3082\u3068\u5909\u308f\u3089\u306c\u65e5\u5e38\u304b\u3089\u3044\u304d\u306a\u308a\u306e\u975e\u65e5\u5e38\u3078\u30fb\u30fb\u30fb\n\n\u3053\u308c\u21d2https:\/\/t.co\/RBdzXMhzoy\n\n\u6b7b\u3068\u6050\u6016\u306e\u72ed\u9593\u3067\u3001\u4eca\u65e5\u3082\u3042\u306a\u305f\u306f\u30be\u30f3\u30d3\u3068\u6226\u3046 https:\/\/t.co\/pI5LbbqQvO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e508sbr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303602978,"id_str":"3303602978","name":"\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u306e\u60b2\u54c0","screen_name":"LizochkaManik","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1043,"friends_count":1453,"listed_count":0,"favourites_count":0,"statuses_count":2406,"created_at":"Sat Aug 01 18:44:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635729540333965312\/5EJ450e__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635729540333965312\/5EJ450e__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727759236009984,"id_str":"663727759236009984","text":"\u7a81\u7136\u4eba\u9593\u304c\u30be\u30f3\u30d3\u5316\uff01\uff1f\n\u3044\u3064\u3082\u3068\u5909\u308f\u3089\u306c\u65e5\u5e38\u304b\u3089\u3044\u304d\u306a\u308a\u306e\u975e\u65e5\u5e38\u3078\u30fb\u30fb\u30fb\n\n\u3053\u308c\u21d2https:\/\/t.co\/RBdzXMhzoy\n\n\u6b7b\u3068\u6050\u6016\u306e\u72ed\u9593\u3067\u3001\u4eca\u65e5\u3082\u3042\u306a\u305f\u306f\u30be\u30f3\u30d3\u3068\u6226\u3046 https:\/\/t.co\/pI5LbbqQvO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e582sbr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399381982,"id_str":"3399381982","name":"\u4f55\u3053\u306e\u753b\u50cf\uff1f","screen_name":"Lermontovna87","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":1893,"listed_count":0,"favourites_count":0,"statuses_count":1485,"created_at":"Sat Aug 01 22:17:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646181582261227520\/S49fAwLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646181582261227520\/S49fAwLC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399381982\/1442896658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RBdzXMhzoy","expanded_url":"http:\/\/skkyzb.com\/cz\/bn82u","display_url":"skkyzb.com\/cz\/bn82u","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RBdzXMhzoy","expanded_url":"http:\/\/skkyzb.com\/cz\/bn82u","display_url":"skkyzb.com\/cz\/bn82u","indices":[60,83]}],"user_mentions":[{"screen_name":"Lermontovna87","name":"\u4f55\u3053\u306e\u753b\u50cf\uff1f","id":3399381982,"id_str":"3399381982","indices":[3,17]}],"symbols":[],"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663727759236009984,"source_status_id_str":"663727759236009984","source_user_id":3399381982,"source_user_id_str":"3399381982"}]},"extended_entities":{"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663727759236009984,"source_status_id_str":"663727759236009984","source_user_id":3399381982,"source_user_id_str":"3399381982"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715852804,"id_str":"663727770715852804","text":"RT @OVER_The_LORD: \u30d5\u30a9\u30ed\u30fc\uff06RT\u3057\u3066\u62bd\u9078\u3067\u30aa\u30b5\u30e0\u5148\u751f\u30b5\u30a4\u30f3\u5165\u308a\u300cVR\u30b3\u30ce\u30cf\u30ca\u30c1\u30eb\u30d2\u30e1\u300d\uff08CV\uff1a\u5185\u7530\u771f\u793c\uff09\u3092\u30b2\u30c3\u30c8\u3057\u3088\u3046\uff01\u300eLoV\u300f\u6700\u65b0\u4f5c\u306f\u5168\u56fd\u306e\u30b2\u30fc\u30bb\u30f3\u306711\/19\u7a3c\u50cd\u958b\u59cb\uff01 https:\/\/t.co\/rqBv9S60Ag\u3000#LoVRe3START http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2151999499,"id_str":"2151999499","name":"\u9b54\u6cd5\u5c11\u5973A\u3061\u3083\u3093\u69d8\u2606","screen_name":"ainachan413","location":null,"url":null,"description":"\u305f\u3060\u306e\u30b2\u30fc\u30de\u30fc\u3067\u3059\u3002\u308d\u3076\u2192\u79f0\u53f7\u3001\u6226\u56fd\u2192\u5cf6\u6d25\u3001\u8c4a\u81e3\u3001\u6700\u8fd1\u306f\u30b1\u30cb\u30a2\u3082\uff01\u3001\u5317\u6597\u2192\u521d\u5fc3\u8005\u30ec\u30a4","protected":false,"verified":false,"followers_count":111,"friends_count":207,"listed_count":0,"favourites_count":277,"statuses_count":1951,"created_at":"Thu Oct 24 01:23:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602365482352541696\/dRGJQvD1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602365482352541696\/dRGJQvD1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2151999499\/1428166573","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 01:00:24 +0000 2015","id":662434321173606401,"id_str":"662434321173606401","text":"\u30d5\u30a9\u30ed\u30fc\uff06RT\u3057\u3066\u62bd\u9078\u3067\u30aa\u30b5\u30e0\u5148\u751f\u30b5\u30a4\u30f3\u5165\u308a\u300cVR\u30b3\u30ce\u30cf\u30ca\u30c1\u30eb\u30d2\u30e1\u300d\uff08CV\uff1a\u5185\u7530\u771f\u793c\uff09\u3092\u30b2\u30c3\u30c8\u3057\u3088\u3046\uff01\u300eLoV\u300f\u6700\u65b0\u4f5c\u306f\u5168\u56fd\u306e\u30b2\u30fc\u30bb\u30f3\u306711\/19\u7a3c\u50cd\u958b\u59cb\uff01 https:\/\/t.co\/rqBv9S60Ag\u3000#LoVRe3START https:\/\/t.co\/Jr9Sm17A56","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133575097,"id_str":"133575097","name":"LoV3\/Re:3\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","screen_name":"OVER_The_LORD","location":null,"url":"http:\/\/www.lordofv.com\/","description":"\u30b9\u30af\u30a6\u30a7\u30a2\u30fb\u30a8\u30cb\u30c3\u30af\u30b9\u306e\u30a2\u30fc\u30b1\u30fc\u30c9\u30bf\u30a4\u30c8\u30eb\u300e\u30ed\u30fc\u30c9 \u30aa\u30d6 \u30f4\u30a1\u30fc\u30df\u30ea\u30aa\u30f3\u2162\u300f\/\u300e\u30ed\u30fc\u30c9 \u30aa\u30d6 \u30f4\u30a1\u30fc\u30df\u30ea\u30aa\u30f3Re:3\u300f\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u5404\u7a2e\u30cb\u30e5\u30fc\u30b9\u3084\u3001\u30a4\u30d9\u30f3\u30c8\u30fb\u5927\u4f1a\u306b\u3064\u3044\u3066\u304a\u77e5\u3089\u305b\u81f4\u3057\u307e\u3059\u3002\u203b\u3054\u610f\u898b\u30fb\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30b9\u30af\u30a6\u30a7\u30a2\u30fb\u30a8\u30cb\u30c3\u30af\u30b9\u30b5\u30dd\u30fc\u30c8\u30bb\u30f3\u30bf\u30fc\u307e\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":17636,"friends_count":68,"listed_count":387,"favourites_count":0,"statuses_count":3291,"created_at":"Fri Apr 16 03:58:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"570000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476965891574206464\/8h4VYoDm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476965891574206464\/8h4VYoDm.jpeg","profile_background_tile":false,"profile_link_color":"570000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F2DBB1","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477069275086069762\/DbSBOfiv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477069275086069762\/DbSBOfiv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133575097\/1433383962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4326,"favorite_count":550,"entities":{"hashtags":[{"text":"LoVRe3START","indices":[103,115]}],"urls":[{"url":"https:\/\/t.co\/rqBv9S60Ag","expanded_url":"http:\/\/www.lordofv.com\/lovre3\/event\/000171.html","display_url":"lordofv.com\/lovre3\/event\/0\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":662434319160336384,"id_str":"662434319160336384","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","url":"https:\/\/t.co\/Jr9Sm17A56","display_url":"pic.twitter.com\/Jr9Sm17A56","expanded_url":"http:\/\/twitter.com\/OVER_The_LORD\/status\/662434321173606401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":978,"h":600,"resize":"fit"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662434319160336384,"id_str":"662434319160336384","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","url":"https:\/\/t.co\/Jr9Sm17A56","display_url":"pic.twitter.com\/Jr9Sm17A56","expanded_url":"http:\/\/twitter.com\/OVER_The_LORD\/status\/662434321173606401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":978,"h":600,"resize":"fit"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LoVRe3START","indices":[122,134]}],"urls":[{"url":"https:\/\/t.co\/rqBv9S60Ag","expanded_url":"http:\/\/www.lordofv.com\/lovre3\/event\/000171.html","display_url":"lordofv.com\/lovre3\/event\/0\u2026","indices":[98,121]}],"user_mentions":[{"screen_name":"OVER_The_LORD","name":"LoV3\/Re:3\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","id":133575097,"id_str":"133575097","indices":[3,17]}],"symbols":[],"media":[{"id":662434319160336384,"id_str":"662434319160336384","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","url":"https:\/\/t.co\/Jr9Sm17A56","display_url":"pic.twitter.com\/Jr9Sm17A56","expanded_url":"http:\/\/twitter.com\/OVER_The_LORD\/status\/662434321173606401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":978,"h":600,"resize":"fit"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":662434321173606401,"source_status_id_str":"662434321173606401","source_user_id":133575097,"source_user_id_str":"133575097"}]},"extended_entities":{"media":[{"id":662434319160336384,"id_str":"662434319160336384","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFwgOiUYAAnF0s.jpg","url":"https:\/\/t.co\/Jr9Sm17A56","display_url":"pic.twitter.com\/Jr9Sm17A56","expanded_url":"http:\/\/twitter.com\/OVER_The_LORD\/status\/662434321173606401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":978,"h":600,"resize":"fit"},"medium":{"w":600,"h":368,"resize":"fit"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":662434321173606401,"source_status_id_str":"662434321173606401","source_user_id":133575097,"source_user_id_str":"133575097"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732638208,"id_str":"663727770732638208","text":"\u3010HKT48\/AKB48\u3011\u7530\u4e2d\u7f8e\u4e45\u3088\u308a\u77e2\u5439\u5948\u5b50\u306e\u65b9\u304c\u63a8\u3055\u308c\u308b\u7406\u7531\u30fb\u30fb\u30fb\u3010\u306a\u3053\u307f\u304f\u3011 https:\/\/t.co\/HJjbg9F8Gc","source":"\u003ca href=\"http:\/\/nav.boy.jp\/twibot\/mj_bot_nandao\/\" rel=\"nofollow\"\u003emj_bot_nandao\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302958360,"id_str":"2302958360","name":"2ch\u307e\u3068\u3081\u30dc\u30c3\u30c8 \u306a\u3093\u3060\u304a","screen_name":"mj_bot_nandao","location":null,"url":null,"description":"2ch\u306e\u307e\u3068\u3081\u60c5\u5831\u3092\u3064\u3076\u3084\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":18,"friends_count":5,"listed_count":1,"favourites_count":0,"statuses_count":529689,"created_at":"Tue Jan 21 11:45:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425988406410113024\/hzBfPp2k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425988406410113024\/hzBfPp2k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302958360\/1390398557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HJjbg9F8Gc","expanded_url":"http:\/\/akb48taimuzu.livedoor.biz\/archives\/46858615.html","display_url":"akb48taimuzu.livedoor.biz\/archives\/46858\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715860992,"id_str":"663727770715860992","text":"@yu_ch_yu \u30a2\u30bf\u30b7\u307b\u3069\u5e73\u5747\u7684\u306a\u4eba\u306f\u3044\u306a\u3044\u3088\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727219563368448,"in_reply_to_status_id_str":"663727219563368448","in_reply_to_user_id":3437899034,"in_reply_to_user_id_str":"3437899034","in_reply_to_screen_name":"yu_ch_yu","user":{"id":3319792020,"id_str":"3319792020","name":"\u306c\u308b\u307e\u6e6f@\u751f\u9996\u4e00\u632f","screen_name":"Nu_ru_Ma_you","location":"\u3042\u306e\u5b50\u306e\u30b9\u30ab\u30fc\u30c8\u306e\u4e2d","url":null,"description":"\u3082\u3046\u3059\u3050\u6210\u4eba\u3002\u3053\u3061\u3089\u5200\u5263\u57a2\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u5200\u5263\u597d\u304d\u3058\u3083\u306a\u3044\u65b9\u3001\u30ea\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3088\u3001\u3054\u3081\u3093\u306d\u3002\u3064\u308b\u3044\u3061\u4e07\u6b73\u3001\u3078\u3057\u4e07\u6b73\u3002\u57fa\u672c\u5730\u96f7\u306f\u306a\u3044\u3088\u3001\u30e4\u30c3\u30bf\u30cd\u3002\u3010\u6ce8\u610f\u3011\u8150\u3001\u4e0b\u30cd\u30bf\u3001\u76ee\u3082\u5f53\u3066\u3089\u308c\u306a\u3044\u5984\u60f3\u3068\u304a\u7d75\u63cf\u304d\u3002\u5984\u60f3\u306f\u3082\u3046\u30ac\u30c1\u3067\u75db\u3044\u3088\u3002\u305d\u308c\u3067\u3082\u541b\u3092\u898b\u3064\u3081\u7d9a\u3051\u3066\u3044\u305f\u3044\u3093\u3060\uff01\u306a\u3093\u3066\u4eba\u3001\u3055\u3041\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u6765\u306a\u3055\u3044\u306a","protected":false,"verified":false,"followers_count":98,"friends_count":172,"listed_count":12,"favourites_count":8844,"statuses_count":12340,"created_at":"Wed Aug 19 09:30:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309022607446016\/He7ZQp-k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309022607446016\/He7ZQp-k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319792020\/1442594931","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yu_ch_yu","name":"\u30d7\u30ea\u30c6\u30a3\u3086\u3063\u3061\u3087","id":3437899034,"id_str":"3437899034","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699067392,"id_str":"663727770699067392","text":"RT @goroke11: \ubbf8\ucce4\ub2e4...\ubbf8\ucce4\uc5b4...... http:\/\/t.co\/L5NzXLc1Hk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":938591143,"id_str":"938591143","name":"Peach Chess","screen_name":"PeaGG_PS","location":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":"http:\/\/instagram.com\/peach_chess","description":"The maze was just the beginning.","protected":false,"verified":false,"followers_count":39,"friends_count":538,"listed_count":0,"favourites_count":10772,"statuses_count":8251,"created_at":"Sat Nov 10 07:45:07 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520168153804857344\/qKz_P_FD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520168153804857344\/qKz_P_FD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/938591143\/1398213868","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 03 05:19:31 +0000 2015","id":616838661984759808,"id_str":"616838661984759808","text":"\ubbf8\ucce4\ub2e4...\ubbf8\ucce4\uc5b4...... http:\/\/t.co\/L5NzXLc1Hk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633784735,"id_str":"633784735","name":"\ub85c\ucf00","screen_name":"goroke11","location":null,"url":"http:\/\/goroke91.tistory.com\/","description":"SKYFALL(00Q7)\/ tmr.tst(\ub274\ub978,newtmas,\ud1a0\ub9c8\uc2a4\ucd5c\uc560)\/FUB Free","protected":false,"verified":false,"followers_count":738,"friends_count":176,"listed_count":12,"favourites_count":5901,"statuses_count":15398,"created_at":"Thu Jul 12 14:33:19 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649152630640349188\/kxmXXT8C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649152630640349188\/kxmXXT8C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633784735\/1443605245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":39,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":616838660911050752,"id_str":"616838660911050752","indices":[16,38],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","url":"http:\/\/t.co\/L5NzXLc1Hk","display_url":"pic.twitter.com\/L5NzXLc1Hk","expanded_url":"http:\/\/twitter.com\/goroke11\/status\/616838661984759808\/photo\/1","type":"photo","sizes":{"small":{"w":245,"h":150,"resize":"fit"},"large":{"w":245,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":245,"h":150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":616838660911050752,"id_str":"616838660911050752","indices":[16,38],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","url":"http:\/\/t.co\/L5NzXLc1Hk","display_url":"pic.twitter.com\/L5NzXLc1Hk","expanded_url":"http:\/\/twitter.com\/goroke11\/status\/616838661984759808\/photo\/1","type":"animated_gif","sizes":{"small":{"w":245,"h":150,"resize":"fit"},"large":{"w":245,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":245,"h":150,"resize":"fit"}},"video_info":{"aspect_ratio":[49,30],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CI9zfnNUsAAWqUC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"goroke11","name":"\ub85c\ucf00","id":633784735,"id_str":"633784735","indices":[3,12]}],"symbols":[],"media":[{"id":616838660911050752,"id_str":"616838660911050752","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","url":"http:\/\/t.co\/L5NzXLc1Hk","display_url":"pic.twitter.com\/L5NzXLc1Hk","expanded_url":"http:\/\/twitter.com\/goroke11\/status\/616838661984759808\/photo\/1","type":"photo","sizes":{"small":{"w":245,"h":150,"resize":"fit"},"large":{"w":245,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":245,"h":150,"resize":"fit"}},"source_status_id":616838661984759808,"source_status_id_str":"616838661984759808","source_user_id":633784735,"source_user_id_str":"633784735"}]},"extended_entities":{"media":[{"id":616838660911050752,"id_str":"616838660911050752","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CI9zfnNUsAAWqUC.png","url":"http:\/\/t.co\/L5NzXLc1Hk","display_url":"pic.twitter.com\/L5NzXLc1Hk","expanded_url":"http:\/\/twitter.com\/goroke11\/status\/616838661984759808\/photo\/1","type":"animated_gif","sizes":{"small":{"w":245,"h":150,"resize":"fit"},"large":{"w":245,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":245,"h":150,"resize":"fit"}},"source_status_id":616838661984759808,"source_status_id_str":"616838661984759808","source_user_id":633784735,"source_user_id_str":"633784735","video_info":{"aspect_ratio":[49,30],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CI9zfnNUsAAWqUC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699104261,"id_str":"663727770699104261","text":"@take2022jp \u305d\u3093\u306a\u306b\u5927\u91cf\u3067\u3059\u304b\uff572\u56de\u5206\u30921\u56de\u306b\u3057\u3066\u308b\u304b\u3089\u3057\u3083\u30fc\u306a\u3057\u3067\u3059\u306d\uff3e\uff3e\uff1b","source":"\u003ca href=\"https:\/\/sourceforge.jp\/projects\/opentween\/\" rel=\"nofollow\"\u003eOpenTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727571461271552,"in_reply_to_status_id_str":"663727571461271552","in_reply_to_user_id":79767099,"in_reply_to_user_id_str":"79767099","in_reply_to_screen_name":"take2022jp","user":{"id":158408675,"id_str":"158408675","name":"\u30cf\u30f3\u30d1\u82b1\u706b","screen_name":"hanpahanabi","location":"\u95a2\u897f\u67d0\u6240","url":"http:\/\/www.youtube.com\/user\/hanpahanabi","description":"\u82b1\u706b\u30d5\u30a1\u30f3\u3067\u3059\u3002\u30ad\u30ab\u30a4\u30c0\u30fc01\u306e\u30a8\u30f3\u30c7\u30a3\u30f3\u30b0\u306e\u3088\u3046\u306b\u3042\u306a\u305f\u306e\u8857\u306b\u3044\u304f\u304b\u3082\u3057\u308c\u307e\u305b\u3093\uff57","protected":false,"verified":false,"followers_count":188,"friends_count":159,"listed_count":13,"favourites_count":2,"statuses_count":23534,"created_at":"Tue Jun 22 16:19:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000168057410\/A8DN_tU3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000168057410\/A8DN_tU3.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3538753841\/7cd2c74c1a6d394cc55e763f65e22fa8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3538753841\/7cd2c74c1a6d394cc55e763f65e22fa8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158408675\/1396354890","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"take2022jp","name":"\u305f\u3051","id":79767099,"id_str":"79767099","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732662784,"id_str":"663727770732662784","text":"RT @yn__pp17: #fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059\n\n\u4e2d\u52d9\u88d5\u592a \u2661 97' \u2661 TOKYO\n\u3059\u3050\u304a\u8fce\u3048\u884c\u3063\u3066\u3059\u3050\u6d88\u3057\u3066\u9375\u306b\u3057\u307e\u3059(\/ _ ; )\uff01\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u65b9\u2661 https:\/\/t.co\/gUNDfZtCHU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2251505820,"id_str":"2251505820","name":"\u611b\u7f8e","screen_name":"_yn_gn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":459,"friends_count":196,"listed_count":21,"favourites_count":1588,"statuses_count":22431,"created_at":"Wed Dec 18 06:06:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649276954466619392\/t9KFRVuo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649276954466619392\/t9KFRVuo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2251505820\/1445485486","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:52 +0000 2015","id":663723683496595456,"id_str":"663723683496595456","text":"#fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059\n\n\u4e2d\u52d9\u88d5\u592a \u2661 97' \u2661 TOKYO\n\u3059\u3050\u304a\u8fce\u3048\u884c\u3063\u3066\u3059\u3050\u6d88\u3057\u3066\u9375\u306b\u3057\u307e\u3059(\/ _ ; )\uff01\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u65b9\u2661 https:\/\/t.co\/gUNDfZtCHU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315051439,"id_str":"3315051439","name":"\u307f\u3055\u304a\u3063\u3061 \u2661","screen_name":"yn__pp17","location":"Back Stage \u2661\u2661","url":null,"description":"\u7d0d\u8c46\uff1e\u308f\u305f\u3057@sr_pppo18","protected":false,"verified":false,"followers_count":188,"friends_count":188,"listed_count":5,"favourites_count":622,"statuses_count":4606,"created_at":"Fri Aug 14 11:55:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663636484436586496\/t4j132bq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663636484436586496\/t4j132bq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315051439\/1446554484","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":1,"entities":{"hashtags":[{"text":"fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059","indices":[0,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059","indices":[14,43]}],"urls":[],"user_mentions":[{"screen_name":"yn__pp17","name":"\u307f\u3055\u304a\u3063\u3061 \u2661","id":3315051439,"id_str":"3315051439","indices":[3,12]}],"symbols":[],"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723683496595456,"source_status_id_str":"663723683496595456","source_user_id":3315051439,"source_user_id_str":"3315051439"}]},"extended_entities":{"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723683496595456,"source_status_id_str":"663723683496595456","source_user_id":3315051439,"source_user_id_str":"3315051439"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728603648,"id_str":"663727770728603648","text":"RT @Fregono: qui combat les russse se range de facto du c\u00f4t\u00e9 de #Daesh et de sa barbarie : ex\u00e9cutions de masse, d\u00e9capitations... https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2966503372,"id_str":"2966503372","name":"darknight","screen_name":"paoegilles","location":null,"url":null,"description":"R\u00c9AGIR DANS LES URNES !","protected":false,"verified":false,"followers_count":2190,"friends_count":1630,"listed_count":299,"favourites_count":61680,"statuses_count":168365,"created_at":"Wed Jan 07 18:49:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662257321461096448\/DS_BkKuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662257321461096448\/DS_BkKuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2966503372\/1420746175","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:03 +0000 2015","id":663724988604784641,"id_str":"663724988604784641","text":"qui combat les russse se range de facto du c\u00f4t\u00e9 de #Daesh et de sa barbarie : ex\u00e9cutions de masse, d\u00e9capitations... https:\/\/t.co\/iMJNdWHFAc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111676962,"id_str":"111676962","name":"@fregono","screen_name":"Fregono","location":"Avignon","url":null,"description":"Contre l'immigration invasive et l'islamisme conqu\u00e9rant qui profite de nos libert\u00e9s pour s'implanter.\nIl est grand temps de se ressaisir !","protected":false,"verified":false,"followers_count":2043,"friends_count":1404,"listed_count":32,"favourites_count":773,"statuses_count":56438,"created_at":"Fri Feb 05 19:44:31 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601089470750916608\/8VTDv938_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601089470750916608\/8VTDv938_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111676962\/1432145843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662334234242236416,"quoted_status_id_str":"662334234242236416","quoted_status":{"created_at":"Thu Nov 05 18:22:41 +0000 2015","id":662334234242236416,"id_str":"662334234242236416","text":"#Syrie: La barbarie de la mafia russe frappe un march\u00e9 bond\u00e9 de monde \u00e0 Alboukamal. Dizaines de victimes et bless\u00e9s. https:\/\/t.co\/eVvniFY4fO","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297027788,"id_str":"297027788","name":"R\u00e9volution Syrienne","screen_name":"RevolutionSyrie","location":null,"url":null,"description":"La R\u00e9volution pacifique du peuple Syrien pour une Syrie nouvelle, libre, d\u00e9mocratique, pluraliste & fraternelle.\r\n(\u0633\u0648\u0631\u064a\u0627 \u064a\u0627 \u062d\u0628\u064a\u0628\u062a\u064a)","protected":false,"verified":false,"followers_count":6667,"friends_count":517,"listed_count":177,"favourites_count":41924,"statuses_count":64241,"created_at":"Wed May 11 20:13:47 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067481372\/bd635f5dbe47802c0b61366531b92143.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067481372\/bd635f5dbe47802c0b61366531b92143.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1807178737\/761bf7dd-28d6-4e69-828a-d26d9ca7aee3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1807178737\/761bf7dd-28d6-4e69-828a-d26d9ca7aee3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297027788\/1415389112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Syrie","indices":[0,6]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662334193133858816,"id_str":"662334193133858816","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEVcIBWsAAUn0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEVcIBWsAAUn0P.jpg","url":"https:\/\/t.co\/eVvniFY4fO","display_url":"pic.twitter.com\/eVvniFY4fO","expanded_url":"http:\/\/twitter.com\/RevolutionSyrie\/status\/662334234242236416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662334193133858816,"id_str":"662334193133858816","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEVcIBWsAAUn0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEVcIBWsAAUn0P.jpg","url":"https:\/\/t.co\/eVvniFY4fO","display_url":"pic.twitter.com\/eVvniFY4fO","expanded_url":"http:\/\/twitter.com\/RevolutionSyrie\/status\/662334234242236416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":662334194413084672,"id_str":"662334194413084672","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEVcMyWIAAgR2l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEVcMyWIAAgR2l.jpg","url":"https:\/\/t.co\/eVvniFY4fO","display_url":"pic.twitter.com\/eVvniFY4fO","expanded_url":"http:\/\/twitter.com\/RevolutionSyrie\/status\/662334234242236416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"Daesh","indices":[51,57]}],"urls":[{"url":"https:\/\/t.co\/iMJNdWHFAc","expanded_url":"https:\/\/twitter.com\/RevolutionSyrie\/status\/662334234242236416","display_url":"twitter.com\/RevolutionSyri\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Daesh","indices":[64,70]}],"urls":[{"url":"https:\/\/t.co\/iMJNdWHFAc","expanded_url":"https:\/\/twitter.com\/RevolutionSyrie\/status\/662334234242236416","display_url":"twitter.com\/RevolutionSyri\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Fregono","name":"@fregono","id":111676962,"id_str":"111676962","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732654592,"id_str":"663727770732654592","text":"\u5168\u7136\u3064\u3076\u3084\u3044\u3066\u306a\u3044\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2734089498,"id_str":"2734089498","name":"\u3086\u3042\u3063\u307a","screen_name":"__xo04v","location":null,"url":null,"description":"\u3072\u3068\u308a\u3067\u30da\u30e9\u30da\u30e9\u3064\u3076\u3084\u304f\u30a2\u30ab\u30a6\u30f3\u30c8( \u00af\u2022\u03c9\u2022\u00af )","protected":false,"verified":false,"followers_count":0,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":70,"created_at":"Fri Aug 15 09:55:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655006325995257856\/1CCpAUam_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655006325995257856\/1CCpAUam_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2734089498\/1445000651","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736857088,"id_str":"663727770736857088","text":"@gameAki2111 @M_U_K_U_I \u3053\u3093\u3070\u3093\u306f\u300112\u6642\u3044\u3051\u305d\u3046\u3067\u3059\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663558267029721089,"in_reply_to_status_id_str":"663558267029721089","in_reply_to_user_id":2890944290,"in_reply_to_user_id_str":"2890944290","in_reply_to_screen_name":"gameAki2111","user":{"id":3282338280,"id_str":"3282338280","name":"\u83eb","screen_name":"viola_mron","location":"not\u30ac\u30c1\u52e2 \u3044\u3044\u653b\u7565\u6cd5\u3042\u3063\u305f\u3089\u6559\u3048\u3066\u30cd","url":null,"description":"\u4e56\u96e2\u6027MA\u306e\u843d\u66f8\u304d\u6295\u4e0b\u30a2\u30ab\u30a6\u30f3\u30c8\uff0f\u30cf\u30b2\u6ce8\u610f\uff0f\u6deb\u5922\u8981\u7d20\u306f\u3042\u308a\u307e\u305b\u3093\uff0f\u6027\u4eba\u6e08\u307f (\u30db\u30e2)","protected":false,"verified":false,"followers_count":105,"friends_count":86,"listed_count":0,"favourites_count":618,"statuses_count":4286,"created_at":"Fri Jul 17 12:18:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8865B2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"CDAFD8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660564199098052608\/AFJIk862_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660564199098052608\/AFJIk862_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3282338280\/1446325512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gameAki2111","name":"\u3042\u304d","id":2890944290,"id_str":"2890944290","indices":[0,12]},{"screen_name":"M_U_K_U_I","name":"\u30e2\u30eb\u3068\u5bdd\u843d\u3061\u578b\u30e0\u30af\u30a4","id":2668718858,"id_str":"2668718858","indices":[13,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720038912,"id_str":"663727770720038912","text":"#forum.searchengines Vbulletin -PageTitle https:\/\/t.co\/TSuvVmjBZf","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":578318062,"id_str":"578318062","name":"\u0412\u0430\u043d\u044f \u0418\u0432\u0430\u043d\u043e\u0432","screen_name":"wladimir950","location":"\u0420\u043e\u0441\u0441\u0438\u044f","url":"http:\/\/pihtahvoya.ru","description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":128016,"created_at":"Sat May 12 19:06:27 +0000 2012","utc_offset":36000,"time_zone":"Vladivostok","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2212820320\/avatar_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2212820320\/avatar_1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"forum","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/TSuvVmjBZf","expanded_url":"http:\/\/dlvr.it\/Chfg5q","display_url":"dlvr.it\/Chfg5q","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736812033,"id_str":"663727770736812033","text":"\u7537\u306e\u53cb\u4eba\u306b\u300c\u516c\u5712\u3067\u5c3b\u51fa\u3057\u3066\u305f\u30ae\u30e3\u30eb\u304c\u3044\u305f\uff01\uff01\u300d\u3063\u3066\u5831\u544a\u3057\u305f\u3089\u300c\u3046\u308f\u301c\uff01\u30a8\u30ed\u3044\uff01\uff01\u300d\u3068\u8a00\u308f\u308c\u305f\u3093\u3067\u3059\u304c\u3001\n\n\u3046\u3093\u3053\u5ea7\u308a\u3067\u5c3b\u51fa\u3057\u3066\u308b\u5973\u3063\u3066\u30a8\u30ed\u3044\u306e\uff1f\n\u306a\u3093\u304b\u3082\u3046\u3001\u300e\u5c3b\u300f\u3063\u3066\u611f\u899a\u306a\u304f\u306a\u3044\uff1f\u76ae\u819a\u306e\u5ef6\u9577\u2026\u2026\n\n\u5f8c\u308d\u306e\u5d16\u304b\u3089\u643a\u5e2f\u6301\u3063\u305f\u5f7c\u6c0f\u304c\u767b\u3063\u3066\u6765\u3066\u66f4\u306b\u7206\u7b11\u3057\u3061\u3083\u3063\u305f\u3093\u3060\u3051\u3069\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727120082825216,"in_reply_to_status_id_str":"663727120082825216","in_reply_to_user_id":296774893,"in_reply_to_user_id_str":"296774893","in_reply_to_screen_name":"utimakehen","user":{"id":296774893,"id_str":"296774893","name":"\u3046\u3059\u304e\u305f\u306d\u3047\u30b7\u30f3\u30c7\u30ec\u30e9","screen_name":"utimakehen","location":null,"url":null,"description":"\u7fbd\u8863\u83e9\u85a9\u306e\u304a\u6804 http:\/\/utimakehen.tumblr.com\/ \u30a2\u30a4\u30b3\u30f3\u306f\u30a8\u30eb\u30b7\u30e3\u30c0\u30a4\u3092\u5b9f\u5199\u3067\u518d\u73fe\u3057\u305f\u65b9\u3005\u306e\u30eb\u30b7\u30d5\u30a7\u30eb\u5f79\u306e\u7537\u6027\u3092\u4f5c\u308a\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":298,"friends_count":313,"listed_count":10,"favourites_count":5818,"statuses_count":21274,"created_at":"Wed May 11 11:33:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/377466146\/373791_252661184787235_128467140539974_630982_188344886_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/377466146\/373791_252661184787235_128467140539974_630982_188344886_n.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1350508930\/20110512_220901_6988_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1350508930\/20110512_220901_6988_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296774893\/1362831507","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732658688,"id_str":"663727770732658688","text":"\ud734.....\uc774\uc81c\uca84\uc11c\ub450\ubc1c\ubed7\u3137\uace0\uc9c4\uc790\uc798\uc218\uc787\uc5b4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2596197606,"id_str":"2596197606","name":"\uadf8\ub85c\ub139","screen_name":"gronen373","location":null,"url":null,"description":"\u26a0\uc54c\ub9bc\uc7a5\uc560 \u26a0\ud0d0\ub77c\ub300\ud654\uac00 \ub9ce\uc2b5\ub2c8\ub2e4! 1\ucc28 \uc704\uc8fc \ud3ed\ud2b8\uc8fc\uc758 \u267bFUBM Free","protected":false,"verified":false,"followers_count":80,"friends_count":102,"listed_count":0,"favourites_count":6389,"statuses_count":15137,"created_at":"Mon Jun 30 11:27:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663298588819132416\/bs6xcmVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663298588819132416\/bs6xcmVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2596197606\/1441475577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736848896,"id_str":"663727770736848896","text":"RT @Stephen6363: @iStan69 @iSexypod @lyla_belle2 @TheDirtyRichard @WeFapToThis @TheDutchLounge @eva_in_paradise @EroticTemptress https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1160377122,"id_str":"1160377122","name":"Big Rube","screen_name":"bigrubeglp","location":"Brea, California","url":"http:\/\/Twitter.com","description":"LOOKIN' 4 A RECORD DEAL...Ruben Lopez, Age: 23 Born: September 8th 1992 My Number: (714) 336-6756 Bigrubeglp714@yahoo.com","protected":false,"verified":false,"followers_count":1423,"friends_count":4711,"listed_count":143,"favourites_count":7,"statuses_count":105637,"created_at":"Fri Feb 08 14:54:59 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645729806286323713\/0B6waq9B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645729806286323713\/0B6waq9B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160377122\/1442788937","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 07:55:15 +0000 2015","id":660726784200167425,"id_str":"660726784200167425","text":"@iStan69 @iSexypod @lyla_belle2 @TheDirtyRichard @WeFapToThis @TheDutchLounge @eva_in_paradise @EroticTemptress https:\/\/t.co\/3xW624drH9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2416118265,"in_reply_to_user_id_str":"2416118265","in_reply_to_screen_name":"iStan69","user":{"id":405843511,"id_str":"405843511","name":"\u23e9Stephen\u23ea 34k","screen_name":"Stephen6363","location":null,"url":null,"description":"Tweeting and retweeting pics of beautiful women, hoping you'll like them.\nSexy but always classy ! No porn\/hardcore.","protected":false,"verified":false,"followers_count":34476,"friends_count":182,"listed_count":123,"favourites_count":3859,"statuses_count":12284,"created_at":"Sat Nov 05 21:49:15 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"2F2F2F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611244882582237185\/rvDKtzhi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611244882582237185\/rvDKtzhi.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612651138001825792\/jR565-2I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612651138001825792\/jR565-2I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405843511\/1440931075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":77,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iStan69","name":"\u03b9\u0455\u0442\u03b1\u043869 207\u043a","id":2416118265,"id_str":"2416118265","indices":[0,8]},{"screen_name":"iSexypod","name":"\u0f3a\u263e\uf8ff iSexypod \uf8ff\u263d\u0f3b","id":2262037103,"id_str":"2262037103","indices":[9,18]},{"screen_name":"lyla_belle2","name":"lyla \u01b8\u0335\u0321\u04dc\u0335\u0328\u0304\u01b7","id":2263124048,"id_str":"2263124048","indices":[19,31]},{"screen_name":"TheDirtyRichard","name":"~\u007bTDR\u007d~","id":1145997344,"id_str":"1145997344","indices":[32,48]},{"screen_name":"WeFapToThis","name":"Fap To This [18+]","id":633000829,"id_str":"633000829","indices":[49,61]},{"screen_name":"TheDutchLounge","name":"\u272f\u2606\u272f","id":1082488964,"id_str":"1082488964","indices":[62,77]},{"screen_name":"eva_in_paradise","name":"\u265b Eva \u265b","id":743398562,"id_str":"743398562","indices":[78,94]},{"screen_name":"EroticTemptress","name":"\u272eKassie\u272e \u007b18+\u007d","id":2452001112,"id_str":"2452001112","indices":[95,111]}],"symbols":[],"media":[{"id":660726780169424896,"id_str":"660726780169424896","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","url":"https:\/\/t.co\/3xW624drH9","display_url":"pic.twitter.com\/3xW624drH9","expanded_url":"http:\/\/twitter.com\/Stephen6363\/status\/660726784200167425\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":687,"h":1000,"resize":"fit"},"medium":{"w":600,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660726780169424896,"id_str":"660726780169424896","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","url":"https:\/\/t.co\/3xW624drH9","display_url":"pic.twitter.com\/3xW624drH9","expanded_url":"http:\/\/twitter.com\/Stephen6363\/status\/660726784200167425\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":687,"h":1000,"resize":"fit"},"medium":{"w":600,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Stephen6363","name":"\u23e9Stephen\u23ea 34k","id":405843511,"id_str":"405843511","indices":[3,15]},{"screen_name":"iStan69","name":"\u03b9\u0455\u0442\u03b1\u043869 207\u043a","id":2416118265,"id_str":"2416118265","indices":[17,25]},{"screen_name":"iSexypod","name":"\u0f3a\u263e\uf8ff iSexypod \uf8ff\u263d\u0f3b","id":2262037103,"id_str":"2262037103","indices":[26,35]},{"screen_name":"lyla_belle2","name":"lyla \u01b8\u0335\u0321\u04dc\u0335\u0328\u0304\u01b7","id":2263124048,"id_str":"2263124048","indices":[36,48]},{"screen_name":"TheDirtyRichard","name":"~\u007bTDR\u007d~","id":1145997344,"id_str":"1145997344","indices":[49,65]},{"screen_name":"WeFapToThis","name":"Fap To This [18+]","id":633000829,"id_str":"633000829","indices":[66,78]},{"screen_name":"TheDutchLounge","name":"\u272f\u2606\u272f","id":1082488964,"id_str":"1082488964","indices":[79,94]},{"screen_name":"eva_in_paradise","name":"\u265b Eva \u265b","id":743398562,"id_str":"743398562","indices":[95,111]},{"screen_name":"EroticTemptress","name":"\u272eKassie\u272e \u007b18+\u007d","id":2452001112,"id_str":"2452001112","indices":[112,128]}],"symbols":[],"media":[{"id":660726780169424896,"id_str":"660726780169424896","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","url":"https:\/\/t.co\/3xW624drH9","display_url":"pic.twitter.com\/3xW624drH9","expanded_url":"http:\/\/twitter.com\/Stephen6363\/status\/660726784200167425\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":687,"h":1000,"resize":"fit"},"medium":{"w":600,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660726784200167425,"source_status_id_str":"660726784200167425","source_user_id":405843511,"source_user_id_str":"405843511"}]},"extended_entities":{"media":[{"id":660726780169424896,"id_str":"660726780169424896","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CStfgYGWEAA8sq-.jpg","url":"https:\/\/t.co\/3xW624drH9","display_url":"pic.twitter.com\/3xW624drH9","expanded_url":"http:\/\/twitter.com\/Stephen6363\/status\/660726784200167425\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":687,"h":1000,"resize":"fit"},"medium":{"w":600,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660726784200167425,"source_status_id_str":"660726784200167425","source_user_id":405843511,"source_user_id_str":"405843511"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728398850,"id_str":"663727770728398850","text":"Video: USDA Week In Review November 6 https:\/\/t.co\/fAu2Mt63wb via https:\/\/t.co\/fNnCOFEpSs","source":"\u003ca href=\"http:\/\/www.vod.io\" rel=\"nofollow\"\u003eVodio\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288683303,"id_str":"288683303","name":"Vodio Science","screen_name":"VodioScience","location":"United States","url":"http:\/\/app.vod.io","description":"Popular Science Videos from Vodio","protected":false,"verified":false,"followers_count":138,"friends_count":447,"listed_count":16,"favourites_count":0,"statuses_count":51871,"created_at":"Wed Apr 27 08:41:35 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8FCC1A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/698644657\/f7d083fc1bc19b6880526e84640aa10e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/698644657\/f7d083fc1bc19b6880526e84640aa10e.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2788951565\/d2fbc140c73e401a52ab9feb6116166b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2788951565\/d2fbc140c73e401a52ab9feb6116166b_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fAu2Mt63wb","expanded_url":"http:\/\/vod.io\/4feIq3\/","display_url":"vod.io\/4feIq3\/","indices":[39,62]},{"url":"https:\/\/t.co\/fNnCOFEpSs","expanded_url":"http:\/\/app.vod.io","display_url":"app.vod.io","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703372290,"id_str":"663727770703372290","text":"RT @squiddy2001: #SiamoTuttiTuoiAmiciMika http:\/\/t.co\/CDvqktmrY2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2832017453,"id_str":"2832017453","name":"Federica Uras","screen_name":"federica_uras","location":"Tavazzano con Villavesco, Lombardia","url":null,"description":"Italian Girl \u2022 Nineteen \u2022 UniPV |\uff22\uff45 \uff28\uff41\uff50\uff50\uff59","protected":false,"verified":false,"followers_count":814,"friends_count":646,"listed_count":7,"favourites_count":18525,"statuses_count":27034,"created_at":"Wed Oct 15 16:24:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656818996025663492\/aQS04-uf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656818996025663492\/aQS04-uf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2832017453\/1445432785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jul 27 15:00:23 +0000 2015","id":625682150407450624,"id_str":"625682150407450624","text":"#SiamoTuttiTuoiAmiciMika http:\/\/t.co\/CDvqktmrY2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763586168,"id_str":"2763586168","name":"Mikafan","screen_name":"squiddy2001","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":133,"friends_count":402,"listed_count":0,"favourites_count":1067,"statuses_count":974,"created_at":"Sun Sep 07 00:00:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634458362516783104\/XT7BdLUN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634458362516783104\/XT7BdLUN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763586168\/1438372489","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"8c6e81afdb31d03d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8c6e81afdb31d03d.json","place_type":"city","name":"Marano di Napoli","full_name":"Marano di Napoli, Campania","country_code":"IT","country":"Italia","bounding_box":{"type":"Polygon","coordinates":[[[14.119734,40.867914],[14.119734,40.910814],[14.206186,40.910814],[14.206186,40.867914]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"SiamoTuttiTuoiAmiciMika","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":625682121701609472,"id_str":"625682121701609472","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","url":"http:\/\/t.co\/CDvqktmrY2","display_url":"pic.twitter.com\/CDvqktmrY2","expanded_url":"http:\/\/twitter.com\/squiddy2001\/status\/625682150407450624\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":625682121701609472,"id_str":"625682121701609472","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","url":"http:\/\/t.co\/CDvqktmrY2","display_url":"pic.twitter.com\/CDvqktmrY2","expanded_url":"http:\/\/twitter.com\/squiddy2001\/status\/625682150407450624\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SiamoTuttiTuoiAmiciMika","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"squiddy2001","name":"Mikafan","id":2763586168,"id_str":"2763586168","indices":[3,15]}],"symbols":[],"media":[{"id":625682121701609472,"id_str":"625682121701609472","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","url":"http:\/\/t.co\/CDvqktmrY2","display_url":"pic.twitter.com\/CDvqktmrY2","expanded_url":"http:\/\/twitter.com\/squiddy2001\/status\/625682150407450624\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":625682150407450624,"source_status_id_str":"625682150407450624","source_user_id":2763586168,"source_user_id_str":"2763586168"}]},"extended_entities":{"media":[{"id":625682121701609472,"id_str":"625682121701609472","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CK7ekx5WUAA-vij.jpg","url":"http:\/\/t.co\/CDvqktmrY2","display_url":"pic.twitter.com\/CDvqktmrY2","expanded_url":"http:\/\/twitter.com\/squiddy2001\/status\/625682150407450624\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":625682150407450624,"source_status_id_str":"625682150407450624","source_user_id":2763586168,"source_user_id_str":"2763586168"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724274176,"id_str":"663727770724274176","text":"VOTA @PSUV 6D@homerosky#LaFajaPaLaAsamblea","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1291473884,"id_str":"1291473884","name":"\u2665Joseyvis\u2665 FPO ","screen_name":"camposfpc","location":"#TROPA \u00b7#FPO #BATALLON","url":null,"description":"Amigo opositor, NO TE GASTES ESCRIBIENDOME, que yo #NiTeIgnoro! \r\n\r\nSiganme los buenos!","protected":false,"verified":false,"followers_count":909,"friends_count":1049,"listed_count":4,"favourites_count":16,"statuses_count":3534,"created_at":"Sat Mar 23 13:38:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC3C3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/865851711\/d9d263d19d6ceeb2616106299e53acbf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/865851711\/d9d263d19d6ceeb2616106299e53acbf.jpeg","profile_background_tile":true,"profile_link_color":"B30009","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644335935660924929\/SoEtDQbW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644335935660924929\/SoEtDQbW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1291473884\/1442456631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PSUV","name":"PSUV","id":14096248,"id_str":"14096248","indices":[5,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736939008,"id_str":"663727770736939008","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/zROyqNXP41","source":"\u003ca href=\"http:\/\/www.ghared.com\/\" rel=\"nofollow\"\u003e\u063a\u0631\u062f \u0628\u0635\u062f\u0642\u0629\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3904909936,"id_str":"3904909936","name":"\u0628\u0646\u062a \u064a\u0627\u0645#\u0643\u0644\u0646\u0627 \u0633\u0644\u0645\u0627\u0646","screen_name":"hohonooon1234","location":"\u0641\u064a \u0642\u0644\u0628 \u0627\u0645\u064a\u2764","url":null,"description":"\u200f\u200f\u200f\u200f:\u200f\u200f\u200f\u200f\u200f\u200f\u0644\u0627\u0627\u0644\u0647 \u0627\u0644\u0627\u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646:*^\n\u0627\u062a\u0627\u0628\u0639 \u0627\u0644\u064a \u064a\u062a\u0627\u0628\u0639\u0646\u064a \u0648\u0644\u0644\u0647 \u0627\u0628\u0631\u0648\u0624 \u0645\u0646 \u062d\u0633\u0627\u0628\u0627\u062a\u0643\u0645 \u0648\u0645\u0627\u062a\u062d\u0645\u0644.[\u274c\u0627\u0644\u062e\u0627\u0635 \u0645\u0645\u0646\u0648\u0639 \u0644\u062c\u0644 \u0645\u0646 \u0631\u0628\u0627\u0646\u064a].\u0627\u0644\u062c\u0646\u0648\u0628\u2764","protected":false,"verified":false,"followers_count":2536,"friends_count":2560,"listed_count":0,"favourites_count":50,"statuses_count":963,"created_at":"Fri Oct 09 02:12:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657932896779575297\/dkBCdPPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657932896779575297\/dkBCdPPC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3904909936\/1445698367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zROyqNXP41","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736848897,"id_str":"663727770736848897","text":"\u30a2\u30ac\u52d5\u753b\u898b\u307e\u3057\u305f\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356658893,"id_str":"356658893","name":"\u4f86\u5343","screen_name":"aruru_2011","location":null,"url":"http:\/\/twpf.jp\/aruru_2011","description":"\u4f86\u5343\u3068\u7533\u3057\u307e\u3059\u300218\u2191\u5275\u4f5c\u3001\u304a\u7d75\u304b\u304d\u3002\u30b2\u30fc\u30e0\uff1a\u30c0\u30af\u30bd\u3001\u3076\u3089\u307c\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":758,"friends_count":653,"listed_count":44,"favourites_count":17340,"statuses_count":75212,"created_at":"Wed Aug 17 05:15:34 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560416419414700033\/GR7-ByY8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560416419414700033\/GR7-ByY8.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660654895469465600\/mzfZKoqm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660654895469465600\/mzfZKoqm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/356658893\/1446880392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720055296,"id_str":"663727770720055296","text":"RT @BotSetuya: \u3010\u61f8\u8cde\u3011\u6bce\u9031(\u6708)\u306b\u30e1\u30fc\u30eb\u30de\u30ac\u30b8\u30f3\u306b\u767b\u9332\u3044\u305f\u3060\u3044\u3066\u3044\u308b\u65b9\u306e\u4e2d\u304b\u30891\u540d\u306b30000\u5186\u5206\u306e\u65c5\u884c\u5238\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\u3002\nhttps:\/\/t.co\/mzhpioOwu1 https:\/\/t.co\/YCox7rc16f","source":"\u003ca href=\"https:\/\/twitter.com\/ra_menjdnatsumi\" rel=\"nofollow\"\u003e\u30e9\u30fc\u30e1\u30f3\u5927\u597d\u304dJD\u306a\u3064\u307f\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3338117052,"id_str":"3338117052","name":"\u30e9\u30fc\u30e1\u30f3\u5927\u597d\u304dJD\u306a\u3064\u307f","screen_name":"ra_menjdnatsumi","location":null,"url":"http:\/\/twx.pw\/p08g08","description":"\u30e9\u30fc\u30e1\u30f3love\u306a\u5973\u5b50\u5927\u751f\u306e\u306a\u3064\u307f\u3060\u304a\uff01\n\u3067\u3082\u4e00\u4eba\u3067\u304a\u5e97\u306b\u884c\u3051\u306a\u3044\u306e\u3067\u3001\u30e9\u30fc\u30e1\u30f3\u4ef2\u9593\u63a2\u3057\u3066\u307e\u30fc\u3059\uff1e_\uff1c\n\u7f8e\u5473\u3057\u3044\u304a\u5e97\u304a\u3057\u3048\u3066\u30fc\u30fc\u30fc","protected":false,"verified":false,"followers_count":461,"friends_count":1640,"listed_count":3,"favourites_count":0,"statuses_count":3568,"created_at":"Tue Aug 25 14:25:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636183989586268160\/vmFW3Fmj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636183989586268160\/vmFW3Fmj_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727759445745664,"id_str":"663727759445745664","text":"\u3010\u61f8\u8cde\u3011\u6bce\u9031(\u6708)\u306b\u30e1\u30fc\u30eb\u30de\u30ac\u30b8\u30f3\u306b\u767b\u9332\u3044\u305f\u3060\u3044\u3066\u3044\u308b\u65b9\u306e\u4e2d\u304b\u30891\u540d\u306b30000\u5186\u5206\u306e\u65c5\u884c\u5238\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\u3002\nhttps:\/\/t.co\/mzhpioOwu1 https:\/\/t.co\/YCox7rc16f","source":"\u003ca href=\"https:\/\/twitter.com\/BotSetuya\" rel=\"nofollow\"\u003e\u7bc0\u7d04bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3948458418,"id_str":"3948458418","name":"\u7bc0\u7d04bot","screen_name":"BotSetuya","location":null,"url":null,"description":"\u751f\u6d3b\u306e\u4e2d\u3067\u7bc0\u7d04\u3067\u304d\u308b\u3082\u306e\u306f\u305f\u304f\u3055\u3093\u3042\u308a\u307e\u3059\u3002 \u4e00\u3064\u4e00\u3064\u3068\u3057\u3066\u306f\u52b9\u679c\u306f\u5c0f\u3055\u3044\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u304c\u3001\u3064\u3076\u3084\u304f\u5185\u5bb9\u3092\u5168\u3066\u5b9f\u8df5\uff01\u65e5\u3005\u306e\u7a4d\u307f\u91cd\u306d\u3067\u5e74\u9593\u3067\u6570\u5341\u4e07\u5186\u9055\u3063\u3066\u304d\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":433,"friends_count":981,"listed_count":1,"favourites_count":0,"statuses_count":977,"created_at":"Mon Oct 19 16:00:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656138128244129793\/nq3g3frf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656138128244129793\/nq3g3frf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mzhpioOwu1","expanded_url":"http:\/\/twhm.xyz\/a\/cebuman16","display_url":"twhm.xyz\/a\/cebuman16","indices":[54,77]}],"user_mentions":[],"symbols":[],"media":[{"id":663727759206670336,"id_str":"663727759206670336","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","url":"https:\/\/t.co\/YCox7rc16f","display_url":"pic.twitter.com\/YCox7rc16f","expanded_url":"http:\/\/twitter.com\/BotSetuya\/status\/663727759445745664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727759206670336,"id_str":"663727759206670336","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","url":"https:\/\/t.co\/YCox7rc16f","display_url":"pic.twitter.com\/YCox7rc16f","expanded_url":"http:\/\/twitter.com\/BotSetuya\/status\/663727759445745664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mzhpioOwu1","expanded_url":"http:\/\/twhm.xyz\/a\/cebuman16","display_url":"twhm.xyz\/a\/cebuman16","indices":[69,92]}],"user_mentions":[{"screen_name":"BotSetuya","name":"\u7bc0\u7d04bot","id":3948458418,"id_str":"3948458418","indices":[3,13]}],"symbols":[],"media":[{"id":663727759206670336,"id_str":"663727759206670336","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","url":"https:\/\/t.co\/YCox7rc16f","display_url":"pic.twitter.com\/YCox7rc16f","expanded_url":"http:\/\/twitter.com\/BotSetuya\/status\/663727759445745664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663727759445745664,"source_status_id_str":"663727759445745664","source_user_id":3948458418,"source_user_id_str":"3948458418"}]},"extended_entities":{"media":[{"id":663727759206670336,"id_str":"663727759206670336","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WMUYAAsCFP.jpg","url":"https:\/\/t.co\/YCox7rc16f","display_url":"pic.twitter.com\/YCox7rc16f","expanded_url":"http:\/\/twitter.com\/BotSetuya\/status\/663727759445745664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663727759445745664,"source_status_id_str":"663727759445745664","source_user_id":3948458418,"source_user_id_str":"3948458418"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720010240,"id_str":"663727770720010240","text":"RT @ginchan_muda: TOKIO\u306b\u3067\u304d\u308b\u3053\u3068\u4e00\u89a7\u3060\u305d\u3046\u3067\u3059\u3002\n\u3053\u308c\u2026\u3067\u304d\u306a\u3044\u4e8b\u3092\u63a2\u3057\u305f\u65b9\u304c\u65e9\u3044\u3093\u3058\u3083\u306a\u3044\u3067\u3059\u304b\u306d\u2026\uff08\u9707\u3048\u58f0\uff09 https:\/\/t.co\/wcVFdB5uyG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120659096,"id_str":"120659096","name":"Rspec@\u30ed\u30de\u30f3\u7832\u6559\u5f92","screen_name":"G4M1kai","location":"\u5c71\u3068\u6d77\u306e\u9593","url":null,"description":"\u5e83\u304f\u6d45\u304f\u306e\u4e57\u308a\u7269\u30aa\u30bf\u30af\u3067\u6a5f\u68b0\u5c4b\u3055\u3093\u76ee\u6307\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":257,"friends_count":308,"listed_count":17,"favourites_count":98,"statuses_count":24278,"created_at":"Sun Mar 07 04:20:38 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/116514759\/CIMG0562_convert_20100626071518.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/116514759\/CIMG0562_convert_20100626071518.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659343217834377217\/YIcq5bHn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659343217834377217\/YIcq5bHn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120659096\/1356437358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:03 +0000 2015","id":663717691623014401,"id_str":"663717691623014401","text":"TOKIO\u306b\u3067\u304d\u308b\u3053\u3068\u4e00\u89a7\u3060\u305d\u3046\u3067\u3059\u3002\n\u3053\u308c\u2026\u3067\u304d\u306a\u3044\u4e8b\u3092\u63a2\u3057\u305f\u65b9\u304c\u65e9\u3044\u3093\u3058\u3083\u306a\u3044\u3067\u3059\u304b\u306d\u2026\uff08\u9707\u3048\u58f0\uff09 https:\/\/t.co\/wcVFdB5uyG","source":"\u003ca href=\"https:\/\/twitter.com\/anpktelo\" rel=\"nofollow\"\u003eginsan\u3000teacher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3106993290,"id_str":"3106993290","name":"\u9280\u3055\u3093\u306e\u5b66\u6821\u3067\u306f\u6559\u308f\u3089\u306a\u3044\u30e0\u30c0\u77e5\u8b58","screen_name":"ginchan_muda","location":"\u4e07\u5c4b","url":null,"description":"\u306f\u30fc\u3044\u3002\u9280\u6642\u5148\u751f\u304c\u624b\u53d6\u308a\u8db3\u53d6\u308a\u8272\u3005\u6559\u3048\u3066\u3084\u308b\u305e\u30fc\u3002\u3042\u3002\u8a00\u3063\u3068\u304f\u3051\u3069\u751f\u304d\u3066\u3066\u307e\u3063\u305f\u304f\u5f79\u306b\u7acb\u305f\u306a\u3044\u3053\u3068\u3070\u3063\u304b\u306a\u3093\u3067\u3001\u305d\u3053\u3093\u3068\u3053\u30e8\u30ed\u30b7\u30af\u3002","protected":false,"verified":false,"followers_count":206924,"friends_count":1428,"listed_count":565,"favourites_count":0,"statuses_count":3470,"created_at":"Tue Mar 24 15:09:03 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583293555768049665\/dfNOmkx3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583293555768049665\/dfNOmkx3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106993290\/1427902990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1010,"favorite_count":861,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717691170029568,"id_str":"663717691170029568","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","url":"https:\/\/t.co\/wcVFdB5uyG","display_url":"pic.twitter.com\/wcVFdB5uyG","expanded_url":"http:\/\/twitter.com\/ginchan_muda\/status\/663717691623014401\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":419,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":419,"h":418,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717691170029568,"id_str":"663717691170029568","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","url":"https:\/\/t.co\/wcVFdB5uyG","display_url":"pic.twitter.com\/wcVFdB5uyG","expanded_url":"http:\/\/twitter.com\/ginchan_muda\/status\/663717691623014401\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":419,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":419,"h":418,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ginchan_muda","name":"\u9280\u3055\u3093\u306e\u5b66\u6821\u3067\u306f\u6559\u308f\u3089\u306a\u3044\u30e0\u30c0\u77e5\u8b58","id":3106993290,"id_str":"3106993290","indices":[3,16]}],"symbols":[],"media":[{"id":663717691170029568,"id_str":"663717691170029568","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","url":"https:\/\/t.co\/wcVFdB5uyG","display_url":"pic.twitter.com\/wcVFdB5uyG","expanded_url":"http:\/\/twitter.com\/ginchan_muda\/status\/663717691623014401\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":419,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":419,"h":418,"resize":"fit"}},"source_status_id":663717691623014401,"source_status_id_str":"663717691623014401","source_user_id":3106993290,"source_user_id_str":"3106993290"}]},"extended_entities":{"media":[{"id":663717691170029568,"id_str":"663717691170029568","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_uT1VAAA6a54.jpg","url":"https:\/\/t.co\/wcVFdB5uyG","display_url":"pic.twitter.com\/wcVFdB5uyG","expanded_url":"http:\/\/twitter.com\/ginchan_muda\/status\/663717691623014401\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":419,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":419,"h":418,"resize":"fit"}},"source_status_id":663717691623014401,"source_status_id_str":"663717691623014401","source_user_id":3106993290,"source_user_id_str":"3106993290"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770716004352,"id_str":"663727770716004352","text":"RT @H2ODelirious: I liked a @YouTube video from @h2odelirious https:\/\/t.co\/mQMqt5AohK Delirious Animated! Ep. 8 (The AA Meeting!) By DuDuL \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4121177055,"id_str":"4121177055","name":"Botezatu Dennis","screen_name":"lol_gamer_56","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":69,"listed_count":0,"favourites_count":3,"statuses_count":2,"created_at":"Thu Nov 05 18:31:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663075710634954752\/jzTzCGy8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663075710634954752\/jzTzCGy8_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:41:57 +0000 2015","id":663547041608527872,"id_str":"663547041608527872","text":"I liked a @YouTube video from @h2odelirious https:\/\/t.co\/mQMqt5AohK Delirious Animated! Ep. 8 (The AA Meeting!) By DuDuL & Friday the","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":311775629,"id_str":"311775629","name":"H2O Delirious","screen_name":"H2ODelirious","location":"Following behind you :)","url":"http:\/\/www.youtube.com\/H2ODelirious","description":"Shirt Shop http:\/\/h2odelirious.spreadshirt.com","protected":false,"verified":true,"followers_count":946766,"friends_count":594,"listed_count":732,"favourites_count":8424,"statuses_count":11951,"created_at":"Mon Jun 06 01:34:08 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3359190578\/12bc0b0c5937f14e5b5173a94bb3e2bb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3359190578\/12bc0b0c5937f14e5b5173a94bb3e2bb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311775629\/1435735358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":537,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mQMqt5AohK","expanded_url":"http:\/\/youtu.be\/sscUGSSGuEM?a","display_url":"youtu.be\/sscUGSSGuEM?a","indices":[44,67]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[10,18]},{"screen_name":"H2ODelirious","name":"H2O Delirious","id":311775629,"id_str":"311775629","indices":[30,43]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mQMqt5AohK","expanded_url":"http:\/\/youtu.be\/sscUGSSGuEM?a","display_url":"youtu.be\/sscUGSSGuEM?a","indices":[62,85]}],"user_mentions":[{"screen_name":"H2ODelirious","name":"H2O Delirious","id":311775629,"id_str":"311775629","indices":[3,16]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[28,36]},{"screen_name":"H2ODelirious","name":"H2O Delirious","id":311775629,"id_str":"311775629","indices":[48,61]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770707578880,"id_str":"663727770707578880","text":"Marketing Tip: Social Media Marketing is crucial for building awareness and driving sales, yet it can be quite... https:\/\/t.co\/56WkAsAOcE","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171552747,"id_str":"171552747","name":"MIAA","screen_name":"miaainsurance","location":"Lincoln, NE","url":"http:\/\/www.miaainsurance.com","description":"Do you wonder how to become or maintain an independent insurance agent with more carriers and profitability in your agency? http:\/\/www.miaainsurance.com","protected":false,"verified":false,"followers_count":86,"friends_count":25,"listed_count":3,"favourites_count":2,"statuses_count":534,"created_at":"Tue Jul 27 16:28:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481118974965329923\/XhxDVpo__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481118974965329923\/XhxDVpo__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171552747\/1426619490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/56WkAsAOcE","expanded_url":"http:\/\/fb.me\/QlFnbKMO","display_url":"fb.me\/QlFnbKMO","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006659"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732630017,"id_str":"663727770732630017","text":"RT @claudiotv12dgo: Feliz Inicio de Semana Laboral !!! https:\/\/t.co\/9SBs5pu69v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":889854223,"id_str":"889854223","name":"Gloria Luz Santillan","screen_name":"yuyi_luz","location":"Durango","url":null,"description":"Educadora por amor, sindicalista por conviccion, y aliansista de corazon!!!!!","protected":false,"verified":false,"followers_count":317,"friends_count":531,"listed_count":3,"favourites_count":76,"statuses_count":3690,"created_at":"Thu Oct 18 22:21:07 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645424247519621120\/EbKS2Bkb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645424247519621120\/EbKS2Bkb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/889854223\/1433902848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:48 +0000 2015","id":663726435001982976,"id_str":"663726435001982976","text":"Feliz Inicio de Semana Laboral !!! https:\/\/t.co\/9SBs5pu69v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228202555,"id_str":"228202555","name":"Claudio M. Renter\u00eda","screen_name":"claudiotv12dgo","location":"Toda Opinion es Personal ","url":"http:\/\/comentarioalanoticia.hazblog.com","description":"Comunicador. Apasionado por el Micr\u00f3fono. Cr\u00edtico preocupado por mi Naci\u00f3n y Estado. Convencido de que Dios me Ama. Orgulloso de los Mios. So\u00f1ador y Agradecido.","protected":false,"verified":false,"followers_count":9158,"friends_count":99,"listed_count":82,"favourites_count":925,"statuses_count":118674,"created_at":"Sun Dec 19 01:25:35 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/783033715\/ce98b62de0f0296c9763327517689cfd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/783033715\/ce98b62de0f0296c9763327517689cfd.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649448344192876544\/igK4IYC4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649448344192876544\/igK4IYC4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228202555\/1442601343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726428064604160,"id_str":"663726428064604160","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","url":"https:\/\/t.co\/9SBs5pu69v","display_url":"pic.twitter.com\/9SBs5pu69v","expanded_url":"http:\/\/twitter.com\/claudiotv12dgo\/status\/663726435001982976\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726428064604160,"id_str":"663726428064604160","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","url":"https:\/\/t.co\/9SBs5pu69v","display_url":"pic.twitter.com\/9SBs5pu69v","expanded_url":"http:\/\/twitter.com\/claudiotv12dgo\/status\/663726435001982976\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"claudiotv12dgo","name":"Claudio M. Renter\u00eda","id":228202555,"id_str":"228202555","indices":[3,18]}],"symbols":[],"media":[{"id":663726428064604160,"id_str":"663726428064604160","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","url":"https:\/\/t.co\/9SBs5pu69v","display_url":"pic.twitter.com\/9SBs5pu69v","expanded_url":"http:\/\/twitter.com\/claudiotv12dgo\/status\/663726435001982976\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726435001982976,"source_status_id_str":"663726435001982976","source_user_id":228202555,"source_user_id_str":"228202555"}]},"extended_entities":{"media":[{"id":663726428064604160,"id_str":"663726428064604160","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHq3TUYAApZl2.jpg","url":"https:\/\/t.co\/9SBs5pu69v","display_url":"pic.twitter.com\/9SBs5pu69v","expanded_url":"http:\/\/twitter.com\/claudiotv12dgo\/status\/663726435001982976\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726435001982976,"source_status_id_str":"663726435001982976","source_user_id":228202555,"source_user_id_str":"228202555"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770711793664,"id_str":"663727770711793664","text":"@pal24sport \u0643\u0632\u0627\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703366816677888,"in_reply_to_status_id_str":"663703366816677888","in_reply_to_user_id":514600783,"in_reply_to_user_id_str":"514600783","in_reply_to_screen_name":"pal24sport","user":{"id":2521339928,"id_str":"2521339928","name":"\u0628\u0646 \u0645\u062d\u0645\u062f#\u0627\u0644\u0633\u0647\u0645_\u0627\u0644\u0630\u0647\u0628\u064a","screen_name":"H199018","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":null,"protected":false,"verified":false,"followers_count":1518,"friends_count":1436,"listed_count":6,"favourites_count":161,"statuses_count":7321,"created_at":"Sat May 24 21:00:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649564058278977536\/w5u6H1lC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649564058278977536\/w5u6H1lC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2521339928\/1443292366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pal24sport","name":"\u0641\u0644\u0633\u0637\u064a\u0646 24 \u0627\u0644\u0631\u064a\u0627\u0636\u064a\u0629","id":514600783,"id_str":"514600783","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080006660"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715815937,"id_str":"663727770715815937","text":"#London: Magrib starts at 16:20 https:\/\/t.co\/vRK2IDLAcR","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":280874453,"id_str":"280874453","name":"SalahTimes","screen_name":"SalahTimes","location":null,"url":"http:\/\/www.salahtimes.com","description":"SalahTimes is a online prayer times calculator which allows you to access prayer times for towns and cities in Europe, USA, Africa, Asia & Canada","protected":false,"verified":false,"followers_count":374,"friends_count":13,"listed_count":53,"favourites_count":0,"statuses_count":173409,"created_at":"Tue Apr 12 05:48:23 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000530601046\/5e79c8b72f9dade9d563547877ade369_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000530601046\/5e79c8b72f9dade9d563547877ade369_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"London","indices":[0,7]}],"urls":[{"url":"https:\/\/t.co\/vRK2IDLAcR","expanded_url":"http:\/\/dlvr.it\/Chfdw8","display_url":"dlvr.it\/Chfdw8","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728423425,"id_str":"663727770728423425","text":"RT @Nishichiaaa110: \u76f4\u4e5f\u304f\u3093\u306e\u7d20\u6575\u306a\u6b4c\u58f0\u3068\u7b11\u9854\u304c\n\u79c1\u9054\u30d5\u30a1\u30f3\u306f\u4f55\u3088\u308a\u5927\u597d\u304d\u3067\u3059\u3002\n\u5c48\u8a17\u306e\u306a\u3044\u7b11\u9854\u3068\u4f1a\u5834\u5168\u4f53\u3092\u5305\u307f\u8fbc\u3080\n\u6b4c\u58f0\u3092\u8074\u304f\u305f\u3073\u306b\u601d\u308f\u305a\u7b11\u9854\u306b\u306a\u3063\u3066\n\u5e78\u305b\u306a\u6c17\u6301\u3061\u306b\u306a\u308a\u307e\u3059\u3002\nAAA\u306e\u30ea\u30fc\u30c0\u30fc\u306f \" \u6d66\u7530\u76f4\u4e5f \" \u3060\u3051\u3002\n\n#\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4002323600,"id_str":"4002323600","name":"AyAkA\u2661AAA\u266124","screen_name":"AyAkAAA17253160","location":null,"url":null,"description":"JC3\/AAA\u5927\u597d\u304d\/a\uff66\uff80\u6b74\u307e\u30603\u5e74\/\u306b\u3063\u3057\u30fc\u6fc3\u3044\u3081\u306e\u305f\u304b\u3058\u308d\u5bc4\u308aall\/a\uff66\uff80\u5927\u6b53\u8fce\/\u3042\u307f\u3084\u3055sister\u200d\u2764\ufe0f\u200d\/\u5b89\u5b9a\u306e\u307e\u306a\/\u307e\u306a\u3042\u3084\u2661AAA\u2661\u5171\u540c\u57a2\u3010aaa_manaaya0914\u3011\u261c\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\/\u30df\u30af\u30c1\u30e3\u3010AyAkA\u3011","protected":false,"verified":false,"followers_count":381,"friends_count":405,"listed_count":1,"favourites_count":1619,"statuses_count":1281,"created_at":"Sat Oct 24 12:44:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660077513708666880\/qtpaGib7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660077513708666880\/qtpaGib7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4002323600\/1446968159","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:09 +0000 2015","id":663713691133542400,"id_str":"663713691133542400","text":"\u76f4\u4e5f\u304f\u3093\u306e\u7d20\u6575\u306a\u6b4c\u58f0\u3068\u7b11\u9854\u304c\n\u79c1\u9054\u30d5\u30a1\u30f3\u306f\u4f55\u3088\u308a\u5927\u597d\u304d\u3067\u3059\u3002\n\u5c48\u8a17\u306e\u306a\u3044\u7b11\u9854\u3068\u4f1a\u5834\u5168\u4f53\u3092\u5305\u307f\u8fbc\u3080\n\u6b4c\u58f0\u3092\u8074\u304f\u305f\u3073\u306b\u601d\u308f\u305a\u7b11\u9854\u306b\u306a\u3063\u3066\n\u5e78\u305b\u306a\u6c17\u6301\u3061\u306b\u306a\u308a\u307e\u3059\u3002\nAAA\u306e\u30ea\u30fc\u30c0\u30fc\u306f \" \u6d66\u7530\u76f4\u4e5f \" \u3060\u3051\u3002\n\n#\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d https:\/\/t.co\/zex01jrEge","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239903660,"id_str":"3239903660","name":"\u2656 c h i i .","screen_name":"Nishichiaaa110","location":"# \u7656\u6bdb\u540c\u76df # \u307f\u3086\u3061\u3044 ","url":null,"description":"__\u2764\ufe0e \u30a2\u30bf\u30de\u306e\u4e2d\u306f\u5e38\u306bAAA\u3067\u3044\u3063\u3071\u3044 \u2764\ufe0e__\u300a @chiaki_AAA \u300b# \u4f0a\u85e4\u5343\u6643 \u63a8\u3057\u306e \u897f\u5cf6\u9686\u5f18 \uff0b \u4f0a\u85e4\u5343\u6643 \uff1d \u306b\u3057\u3061\u3042 # \u30ea\u30e0\u628a\u63e1# [\u2654] Halloween day \u306b * \u8207\u3055\u3093 * \u304b\u3089\u306e\u30ea\u30d7\u8fd4\u306f\u4e00\u751f\u306e\u5b9d\u7269 # twins\u270c\ufe0e\u300a @Nissy_as2 \u300b\u265e \u3061\u3044\u3061\u306a \u2658 \u306e \u3061\u3044","protected":false,"verified":false,"followers_count":413,"friends_count":142,"listed_count":18,"favourites_count":2366,"statuses_count":3066,"created_at":"Mon Jun 08 13:15:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663255367208472576\/WxCUWHVD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663255367208472576\/WxCUWHVD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239903660\/1445677866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":19,"entities":{"hashtags":[{"text":"\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","indices":[104,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713685035094016,"id_str":"663713685035094016","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","url":"https:\/\/t.co\/zex01jrEge","display_url":"pic.twitter.com\/zex01jrEge","expanded_url":"http:\/\/twitter.com\/Nishichiaaa110\/status\/663713691133542400\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713685035094016,"id_str":"663713685035094016","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","url":"https:\/\/t.co\/zex01jrEge","display_url":"pic.twitter.com\/zex01jrEge","expanded_url":"http:\/\/twitter.com\/Nishichiaaa110\/status\/663713691133542400\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","indices":[124,134]}],"urls":[],"user_mentions":[{"screen_name":"Nishichiaaa110","name":"\u2656 c h i i .","id":3239903660,"id_str":"3239903660","indices":[3,18]}],"symbols":[],"media":[{"id":663713685035094016,"id_str":"663713685035094016","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","url":"https:\/\/t.co\/zex01jrEge","display_url":"pic.twitter.com\/zex01jrEge","expanded_url":"http:\/\/twitter.com\/Nishichiaaa110\/status\/663713691133542400\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663713691133542400,"source_status_id_str":"663713691133542400","source_user_id":3239903660,"source_user_id_str":"3239903660"}]},"extended_entities":{"media":[{"id":663713685035094016,"id_str":"663713685035094016","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8FH0VEAAPDHY.jpg","url":"https:\/\/t.co\/zex01jrEge","display_url":"pic.twitter.com\/zex01jrEge","expanded_url":"http:\/\/twitter.com\/Nishichiaaa110\/status\/663713691133542400\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663713691133542400,"source_status_id_str":"663713691133542400","source_user_id":3239903660,"source_user_id_str":"3239903660"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770736926720,"id_str":"663727770736926720","text":"A new way of looking #DMZ - Communicating #TrendSetters https:\/\/t.co\/1EwTOdLmxC","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3147861292,"id_str":"3147861292","name":"YBG Group Spain","screen_name":"YBG_Spain","location":"Worldwide","url":"http:\/\/goo.gl\/g6JZlm","description":"Your GoTo Partner 4 Business Connections - Global Business built on Partnerships #Talk2Us +44 20 3763 5199","protected":false,"verified":false,"followers_count":5429,"friends_count":5873,"listed_count":352,"favourites_count":0,"statuses_count":135337,"created_at":"Wed Apr 08 12:46:23 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585886280648626176\/VIsYyb34_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585886280648626176\/VIsYyb34_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3147861292\/1428521129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DMZ","indices":[21,25]},{"text":"TrendSetters","indices":[42,55]}],"urls":[{"url":"https:\/\/t.co\/1EwTOdLmxC","expanded_url":"http:\/\/buff.ly\/1Ryv9Uo","display_url":"buff.ly\/1Ryv9Uo","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006666"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720055297,"id_str":"663727770720055297","text":"@choa_36__aoa \n\n\u5f53\u305f\u308a\u524d\u3058\u3083\u3093\uff01\n\n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727435792302080,"in_reply_to_status_id_str":"663727435792302080","in_reply_to_user_id":4170230834,"in_reply_to_user_id_str":"4170230834","in_reply_to_screen_name":"choa_36__aoa","user":{"id":4169063478,"id_str":"4169063478","name":"\uc138\ud6c8","screen_name":"oh_se_hun94","location":"2015\uff0e11\uff0e8~","url":null,"description":"\uc5d1\uc18c \uc138\ud6c8","protected":false,"verified":false,"followers_count":8,"friends_count":8,"listed_count":0,"favourites_count":5,"statuses_count":172,"created_at":"Sun Nov 08 14:43:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368069457121281\/xE2QaVO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368069457121281\/xE2QaVO0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4169063478\/1446994175","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"choa_36__aoa","name":"CHOA","id":4170230834,"id_str":"4170230834","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732797952,"id_str":"663727770732797952","text":"#UKMusic 'boosted by \u00a3500m investment' https:\/\/t.co\/oFdBFQk6hE https:\/\/t.co\/ur5wV11lQZ","source":"\u003ca href=\"http:\/\/simona2134.webs.com\" rel=\"nofollow\"\u003eSimona21349698\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3882179671,"id_str":"3882179671","name":"Simona Kingsland","screen_name":"Simona2134","location":null,"url":null,"description":"Chocoholic | Spiritual Healer | Die hard analyzer","protected":false,"verified":false,"followers_count":35,"friends_count":446,"listed_count":3,"favourites_count":22,"statuses_count":813,"created_at":"Tue Oct 13 15:54:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653963473391489024\/ae5JCa6b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653963473391489024\/ae5JCa6b_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"UKMusic","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/oFdBFQk6hE","expanded_url":"http:\/\/ttid.me\/sc6td","display_url":"ttid.me\/sc6td","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663727770531454976,"id_str":"663727770531454976","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AYW4AA4pgI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AYW4AA4pgI.jpg","url":"https:\/\/t.co\/ur5wV11lQZ","display_url":"pic.twitter.com\/ur5wV11lQZ","expanded_url":"http:\/\/twitter.com\/Simona2134\/status\/663727770732797952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727770531454976,"id_str":"663727770531454976","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AYW4AA4pgI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AYW4AA4pgI.jpg","url":"https:\/\/t.co\/ur5wV11lQZ","display_url":"pic.twitter.com\/ur5wV11lQZ","expanded_url":"http:\/\/twitter.com\/Simona2134\/status\/663727770732797952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699235328,"id_str":"663727770699235328","text":"The Most Beautiful Bars in #Louisville @Thrillist https:\/\/t.co\/CTTXCXtmrk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18047810,"id_str":"18047810","name":"alas3lads","screen_name":"alas3lads","location":"Kentucky","url":"http:\/\/www.alas3lads.blogspot.com","description":"wife~mom~blogger~conservative~big fan of cloudy days & snowflakes~bookworm~tv & movie junkie~dog lover~a little OCD","protected":false,"verified":false,"followers_count":4726,"friends_count":4949,"listed_count":202,"favourites_count":1029,"statuses_count":72544,"created_at":"Thu Dec 11 14:12:03 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/296833319\/alas3lads.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/296833319\/alas3lads.png","profile_background_tile":true,"profile_link_color":"FD3096","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2E2E2","profile_text_color":"111111","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2664212905\/c13f87606cd6f8e6c2d8b43d573d9ff6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2664212905\/c13f87606cd6f8e6c2d8b43d573d9ff6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18047810\/1398423375","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Louisville","indices":[27,38]}],"urls":[{"url":"https:\/\/t.co\/CTTXCXtmrk","expanded_url":"https:\/\/www.thrillist.com\/drink\/louisville\/the-9-most-beautiful-bars-in-louisville?utm_source=twitter&utm_medium=social-media&utm_content=The%20Most%20Beautiful%20Bars%20in%20Louisville&ref=twitter-869","display_url":"thrillist.com\/drink\/louisvil\u2026","indices":[50,73]}],"user_mentions":[{"screen_name":"Thrillist","name":"Thrillist","id":16402507,"id_str":"16402507","indices":[39,49]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770715820033,"id_str":"663727770715820033","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/iJBDA0JOyf","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":424323445,"id_str":"424323445","name":"KTLE","screen_name":"KatieLeighXxx","location":"UK. Liverpool","url":null,"description":null,"protected":false,"verified":false,"followers_count":186,"friends_count":399,"listed_count":1,"favourites_count":606,"statuses_count":13796,"created_at":"Tue Nov 29 16:48:13 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6CDCF0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"AB2C74","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591938036373581826\/X7ZxG0sV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591938036373581826\/X7ZxG0sV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424323445\/1438522063","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iJBDA0JOyf","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006661"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724208640,"id_str":"663727770724208640","text":"@omi_alhasani @alrahbi1234832 @aC9LKvpRsawgDHd \n\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 \u0628\u062a\u0631\u0648\u062d\u0648\u0648\u0646 \u0627\u0644\u0646\u0627\u0631\u0631\u0631\ud83d\udd25\ud83d\udd25\ud83d\udd25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727499579265025,"in_reply_to_status_id_str":"663727499579265025","in_reply_to_user_id":3939615801,"in_reply_to_user_id_str":"3939615801","in_reply_to_screen_name":"omi_alhasani","user":{"id":3981224353,"id_str":"3981224353","name":"\u0628\u0631\u064a\u0642 \u0627\u0644\u0645\u0622\u0633","screen_name":"reem191920","location":"Ras Al Khaimah, United Arab Emirates","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u064a\u0627\u0631\u0628\u0651\u0650 \u0625\u062d\u0641\u0638 \u0628\u0644\u0627\u062f\u0646\u0627 \u0628\u062d\u0641\u0638\u0643 \u060c \u0648\u0622\u0645\u0646\u0647\u0627 \u0628\u0650\u0623\u0645\u0646\u0643 \u060c \u0648\u0623\u0628\u0639\u062f\u0647\u0627 \u0639\u0646 \u0627\u0644\u0641\u0650\u062a\u0646 \u0645\u0627 \u0638\u0647\u0631 \u0645\u0650\u0646\u0647\u0627 \u0648\u0645\u0627 \u0628\u0637\u0646 \u064a\u0627\u0631\u0628\u0651 \u0627\u0644\u0639\u0627\u0644\u0645\u064a\u0646\n\n\n(\u0644\u0646 \u0623\u0642\u0648\u0644 \u0627\u0644\u062e\u0627\u0635 \u0645\u063a\u0644\u0642 \n\u0644\u0627\u0646\u0647 \u0645\u0627\u0639\u0646\u062f\u064a \u062e\u0627\u0627\u0627\u0627\u0635 \u0627\u0633\u0627\u0633\u0627)","protected":false,"verified":false,"followers_count":2706,"friends_count":1569,"listed_count":0,"favourites_count":7694,"statuses_count":840,"created_at":"Thu Oct 22 14:50:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663290220939350017\/zs-FJJPy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663290220939350017\/zs-FJJPy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981224353\/1445783528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"omi_alhasani","name":"\u062d\u0360\u0631\u0641\u0640 \u0635\u064e\u0622\u0645\u0650\u062a\u0640","id":3939615801,"id_str":"3939615801","indices":[0,13]},{"screen_name":"alrahbi1234832","name":"\u0645\u062e\u0627\u0648\u064a \u0627\u0644\u0644\u064a\u0644","id":3958472236,"id_str":"3958472236","indices":[14,29]},{"screen_name":"aC9LKvpRsawgDHd","name":"\u0645\u0646 \u0623\u0646\u0627 \u0645\u0646 \u0623\u0643\u0648\u0646\u061f\u061f","id":2949197534,"id_str":"2949197534","indices":[30,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724233216,"id_str":"663727770724233216","text":"10\u670826\u65e5\uff5e11\u67088\u65e5\u307e\u3067\u89b3\u305f\u6620\u753b\n\u300c\u65c5\u3059\u308b\u30b8\u30fc\u30f3\u30ba\u306816\u6b73\u306e\u590f\/\u30c8\u30e9\u30d9\u30ea\u30f3\u30b0\u30fb\u30d1\u30f3\u30c4\u300d\n\u300c\u65c5\u3059\u308b\u30b8\u30fc\u30f3\u30ba\u306819\u6b73\u306e\u65c5\u7acb\u3061\u300d\n\u300c\u30e9\u30a4\u30d5\u30fb\u30aa\u30d6\u30fb\u30d1\u30a4 \u30c8\u30e9\u3068\u6f02\u6d41\u3057\u305f227\u65e5\u300d\n\u300c\u5ea7\u982d\u5e02\uff081989\uff09\u300d\n\u300c\u4ffa\u7269\u8a9e!!\u300d\n\u300c\u30b9\u30bf\u30f3\u30c9\u30fb\u30d0\u30a4\u30fb\u30df\u30fc\u300d\n\u300c\u30a2\u30e1\u30ea\u30ab\u30f3\u30fb\u30cf\u30c3\u30b9\u30eb\u300d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187515751,"id_str":"187515751","name":"\u30b3\u30f3\u30cb\u30e3\u30af\u5148\u8f29\uff08shiaki\uff09","screen_name":"KRshiaki","location":null,"url":"http:\/\/booklog.jp\/users\/y-shiaki","description":"\u91ce\u7403\u597d\u304d\u3000\u30d1\u30ea\u30fc\u30b0\u597d\u304d\u3000\u697d\u5929\u30a4\u30fc\u30b0\u30eb\u30b9\u597d\u304d\u3000\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9\u597d\u304d\u3060\u3063\u305f\u3000\u30d1\u30ea\u30fc\u30b0\uff34\uff36\u898b\u306a\u304c\u3089\u3064\u3076\u3084\u3044\u3066\u307e\u3059\u3002\n\u30d9\u30b9\u30c8\u30d7\u30ec\u30fc\u30d7\u30ed\u91ce\u7403\u3000\u30d9\u30b9\u30d7\u30ec\u3000\u30b2\u30fc\u30e0\u3000\u7af6\u99ac\u3000\u30d7\u30ed\u30ec\u30b9\u3000\u6620\u753b\nhttp:\/\/booklog.jp\/users\/y-shiaki","protected":false,"verified":false,"followers_count":59,"friends_count":76,"listed_count":1,"favourites_count":21,"statuses_count":2232,"created_at":"Mon Sep 06 13:10:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/786490225\/3043bccc8f11344d93ef66ee7b4b7464.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/786490225\/3043bccc8f11344d93ef66ee7b4b7464.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3396980179\/68a2b011ef6d62824ee29f22932bbe52_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3396980179\/68a2b011ef6d62824ee29f22932bbe52_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187515751\/1360437820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770720059392,"id_str":"663727770720059392","text":"Adele : son entourage lui interdit d'utiliser son\u2026 https:\/\/t.co\/UmGqdbxeR5 #Actus #Buzz #Featured #Media #People https:\/\/t.co\/xZ9DMsHKMv","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225608611,"id_str":"3225608611","name":"\ufe0fActus people","screen_name":"Flvrine_","location":null,"url":"http:\/\/people.toutelactualite.net","description":null,"protected":false,"verified":false,"followers_count":15182,"friends_count":59,"listed_count":19,"favourites_count":38,"statuses_count":21822,"created_at":"Sun May 24 19:17:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613784181420748800\/LYQrrW4P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613784181420748800\/LYQrrW4P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225608611\/1435172527","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Actus","indices":[75,81]},{"text":"Buzz","indices":[82,87]},{"text":"Featured","indices":[88,97]},{"text":"Media","indices":[98,104]},{"text":"People","indices":[105,112]}],"urls":[{"url":"https:\/\/t.co\/UmGqdbxeR5","expanded_url":"http:\/\/bit.ly\/1SDnRzI","display_url":"bit.ly\/1SDnRzI","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":663727770569076736,"id_str":"663727770569076736","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AhU8AAWe5f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AhU8AAWe5f.jpg","url":"https:\/\/t.co\/xZ9DMsHKMv","display_url":"pic.twitter.com\/xZ9DMsHKMv","expanded_url":"http:\/\/twitter.com\/Flvrine_\/status\/663727770720059392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":412,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727770569076736,"id_str":"663727770569076736","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AhU8AAWe5f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AhU8AAWe5f.jpg","url":"https:\/\/t.co\/xZ9DMsHKMv","display_url":"pic.twitter.com\/xZ9DMsHKMv","expanded_url":"http:\/\/twitter.com\/Flvrine_\/status\/663727770720059392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":412,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080006662"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732630016,"id_str":"663727770732630016","text":"@amatsumoto2 \n\u3057\u3087\u30fc\u3082\u306a\u304f\u306a\u3044\ud83d\ude2d\ud83d\ude2d\n\u4e9c\u5b63\u3061\u3083\u3093\u3082\u5b66\u696d\u5927\u5909\u306a\u306e\u306b\n\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u306d\ud83d\ude22\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727134997811200,"in_reply_to_status_id_str":"663727134997811200","in_reply_to_user_id":2370568021,"in_reply_to_user_id_str":"2370568021","in_reply_to_screen_name":"amatsumoto2","user":{"id":1677705278,"id_str":"1677705278","name":"\u2661 \u3042\u308a\u3055 \u2669","screen_name":"axxcy__","location":"BUBUKA\u4f01\u753b 10\u30ab\u30e9\u30e1\u30f3\u30d0\u30fc\u306b\u6295\u7968\u304a\u9858\u3044\u3057\u307e\u3059\u2193","url":"http:\/\/www.mysma.tv\/tvlist\/bubkach\/","description":"\u685c\u5ead\u3061\u3042\u304d\u304c\u3044\u3063\u3061\u3083\u3093\u3059\u304d\uff01 \/ \u67f4\u7530\u3086\u3044\u304b \/ \u677e\u672c\u4e9c\u5b63","protected":false,"verified":false,"followers_count":404,"friends_count":383,"listed_count":2,"favourites_count":7176,"statuses_count":7365,"created_at":"Sat Aug 17 08:31:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662939045983481856\/zOB7AXW8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662939045983481856\/zOB7AXW8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1677705278\/1446892605","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amatsumoto2","name":"\u677e\u672c \u4e9c\u5b63\u22c810COLOR'S","id":2370568021,"id_str":"2370568021","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770703368194,"id_str":"663727770703368194","text":"RT @ProudKatoholic: When are they releasing the trailer? \ud83d\ude10 #DilwaleTrailerDay","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1125058056,"id_str":"1125058056","name":"ARSLAN ASLAM","screen_name":"arslanaslamsr15","location":"Pakistan","url":null,"description":"man on mission to chase dreams watched with open eyes.","protected":false,"verified":false,"followers_count":4,"friends_count":112,"listed_count":0,"favourites_count":105,"statuses_count":104,"created_at":"Sun Jan 27 13:34:07 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637621543137320961\/-bf3uj0O_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637621543137320961\/-bf3uj0O_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:17 +0000 2015","id":663726555861000192,"id_str":"663726555861000192","text":"When are they releasing the trailer? \ud83d\ude10 #DilwaleTrailerDay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":553058224,"id_str":"553058224","name":"Nora.","screen_name":"ProudKatoholic","location":"Egypt","url":"http:\/\/proudkatoholic.tumblr.com","description":"Katrina Kaif is life.","protected":false,"verified":false,"followers_count":5909,"friends_count":157,"listed_count":10,"favourites_count":639,"statuses_count":60362,"created_at":"Fri Apr 13 22:30:17 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"AD0A46","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662695091077849088\/MFG8-fyE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662695091077849088\/MFG8-fyE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553058224\/1443047205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[39,57]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[59,77]}],"urls":[],"user_mentions":[{"screen_name":"ProudKatoholic","name":"Nora.","id":553058224,"id_str":"553058224","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006658"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770711826432,"id_str":"663727770711826432","text":"Leveraging your #time & using local #virtual #assistants & college interns. Live now: https:\/\/t.co\/741zuexHg2 #BestTalkRadio","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883941102,"id_str":"2883941102","name":"Christy St. James","screen_name":"PhillyTalkRadio","location":"Philadelphia, PA","url":"http:\/\/www.beckmultimedia.com","description":"#multimedia for #business #success #coaching #strategicplanning #talkradio #marketing #salessuccess #leads #leadgeneration #moremoney #advice #stategy","protected":false,"verified":false,"followers_count":257,"friends_count":170,"listed_count":304,"favourites_count":12,"statuses_count":141913,"created_at":"Thu Oct 30 22:09:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616678519649738753\/PAFBXXTQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616678519649738753\/PAFBXXTQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883941102\/1435862669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"time","indices":[16,21]},{"text":"virtual","indices":[40,48]},{"text":"assistants","indices":[49,60]},{"text":"BestTalkRadio","indices":[118,132]}],"urls":[{"url":"https:\/\/t.co\/741zuexHg2","expanded_url":"http:\/\/ow.ly\/U6G5K","display_url":"ow.ly\/U6G5K","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006660"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770724241408,"id_str":"663727770724241408","text":"@amaazmi amaaa, follow bck pls. need to ask you something (DM). I'm in emergency state! \ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":223833020,"in_reply_to_user_id_str":"223833020","in_reply_to_screen_name":"amaazmi","user":{"id":564687510,"id_str":"564687510","name":"ELZEK","screen_name":"lixnvz_","location":"KUL x MEL","url":"http:\/\/intagram.com\/httpliana_z","description":"May the ghost of your past, rest in peace.","protected":false,"verified":false,"followers_count":730,"friends_count":597,"listed_count":0,"favourites_count":1876,"statuses_count":19710,"created_at":"Fri Apr 27 13:27:52 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E5249","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085885441\/502e5d446fa5b22124db9b05b9eea0a7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085885441\/502e5d446fa5b22124db9b05b9eea0a7.jpeg","profile_background_tile":true,"profile_link_color":"A10F50","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663540625631899648\/fx_okNvI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663540625631899648\/fx_okNvI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564687510\/1442682496","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amaazmi","name":"Ama","id":223833020,"id_str":"223833020","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006663"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728435712,"id_str":"663727770728435712","text":"\u3048\u308a\u3061\u3087\u3093\u7834\u58ca\u529b\u3084\u3070\u3044\ud83d\ude31\u571f\u66dc\u65e5\u3053\u306e\u5b50\u3068\u4f1a\u3046\u304b\u3089\u697d\u3057\u307f\ud83d\ude06\u2728\u3053\u306e\u9854\u3067\u4f1a\u3044\u305f\u3044\u308f\uff57 https:\/\/t.co\/dvJN602csI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2708623146,"id_str":"2708623146","name":"\u76f8\u6fa4 \u7460\u8863","screen_name":"ruitatsu0919101","location":"\u5343\u8449\u306e\u6687\u4eba \u3042\u3093\u3068me\/ \u307f\u3055\u304d\u3093\u3050","url":null,"description":"\uff33\u9ad83\u5e74\u751f\n\u30c4\u30e0\u611b\u65b9\u3010@honeymilktomomi\u3011\n\u2654YUITEEN\/AMO\/\u304b\u308c\u3093\u3061\u3083\u3093respect\u2654\n \u2765\u2765\u3042\u30fc\u3055\u3061\u3083\u3093\u3010@eartha_xoxo\u3011\u3068\u307f\u3055\u304d\u304f\u3093\u3010@romitto02\u3011\u304c\uff7d\uff77\u2765\u2765\n\u3042\u30fc\u3055\u3061\u3083\u3093\u547d\u540d\u261e\u308b\u3044\u3074\u306e\n \u3048\u308a\u3061\u3087\u3093\u547d\u540d\u261e\u308b\u3093\n\u3086\u304d\u306a\u3061\u3083\u3093\u547d\u540d\u261e\u308b\u3044\u3074\u3087\u3093","protected":false,"verified":false,"followers_count":452,"friends_count":254,"listed_count":11,"favourites_count":1423,"statuses_count":6712,"created_at":"Tue Aug 05 07:30:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653494970876235776\/IBHkPEqH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653494970876235776\/IBHkPEqH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2708623146\/1447057366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727688301998080,"id_str":"663727688301998080","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0ODU8AAR1cT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0ODU8AAR1cT.jpg","url":"https:\/\/t.co\/dvJN602csI","display_url":"pic.twitter.com\/dvJN602csI","expanded_url":"http:\/\/twitter.com\/ruitatsu0919101\/status\/663727770728435712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727688301998080,"id_str":"663727688301998080","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0ODU8AAR1cT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0ODU8AAR1cT.jpg","url":"https:\/\/t.co\/dvJN602csI","display_url":"pic.twitter.com\/dvJN602csI","expanded_url":"http:\/\/twitter.com\/ruitatsu0919101\/status\/663727770728435712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}},{"id":663727729842388993,"id_str":"663727729842388993","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI2ozVAAE0gbw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI2ozVAAE0gbw.jpg","url":"https:\/\/t.co\/dvJN602csI","display_url":"pic.twitter.com\/dvJN602csI","expanded_url":"http:\/\/twitter.com\/ruitatsu0919101\/status\/663727770728435712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770732662785,"id_str":"663727770732662785","text":"\u305d\u2026 #\u30e9\u30a4\u30f3\u30ab\u30e1\u30e9\u306e\u30a2\u30c3\u30d7\u30eb\u6a5f\u80fd\u3067\u52a0\u5de5\u3057\u305f\u5199\u771f\u8f09\u305b\u3088\u3046\u305c https:\/\/t.co\/jbZ2T74g7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582816357,"id_str":"582816357","name":"\u3046\u3055\u306a\u304e","screen_name":"kokuto_96usa","location":null,"url":"http:\/\/twpf.jp\/kokuto_96usa","description":"\u52a0\u5de5\u53a8\u304b\u307e\u3063\u3066\u3061\u3083\u3093\u30ec\u30a4\u30e4\u30fc\u3046\u3055\u306a\u304e\u3067\u3059\u3002FRB\u3054\u81ea\u7531\u306b\u3067\u3059\u304c\u6570\u5897\u3084\u3057\u7cfb\u306f\u304a\u65ad\u308a\u3002\u30d5\u30a9\u30ed\u30fc\u8fd4\u3059\u304b\u306f\u6c17\u307e\u3050\u308c\u300220\u2191NL\u5927\u597d\u304d\uff01\u53cb\u60c5\u5927\u597d\u304d\u3002\u5510\u7a81\u306b\u30b3\u30b9\u5199\u771f\u6d41\u3057\u307e\u3059\u6ce8\u610f\uff01\u60aa\u53cb\u3061\u3083\u3093\u2026\uff01K\u4e8c\u671f\u304a\u3081\u3067\u3068\u3046\u2026\u2606","protected":false,"verified":false,"followers_count":611,"friends_count":592,"listed_count":25,"favourites_count":8614,"statuses_count":62117,"created_at":"Thu May 17 12:37:56 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660075899363061760\/jrc7muaL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660075899363061760\/jrc7muaL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582816357\/1444660484","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30e9\u30a4\u30f3\u30ab\u30e1\u30e9\u306e\u30a2\u30c3\u30d7\u30eb\u6a5f\u80fd\u3067\u52a0\u5de5\u3057\u305f\u5199\u771f\u8f09\u305b\u3088\u3046\u305c","indices":[3,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727761219936256,"id_str":"663727761219936256","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4dsUYAA9PRk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4dsUYAA9PRk.jpg","url":"https:\/\/t.co\/jbZ2T74g7a","display_url":"pic.twitter.com\/jbZ2T74g7a","expanded_url":"http:\/\/twitter.com\/kokuto_96usa\/status\/663727770732662785\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727761219936256,"id_str":"663727761219936256","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4dsUYAA9PRk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4dsUYAA9PRk.jpg","url":"https:\/\/t.co\/jbZ2T74g7a","display_url":"pic.twitter.com\/jbZ2T74g7a","expanded_url":"http:\/\/twitter.com\/kokuto_96usa\/status\/663727770732662785\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"},"medium":{"w":600,"h":903,"resize":"fit"}}},{"id":663727761232523268,"id_str":"663727761232523268","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4dvUcAQg6vq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4dvUcAQg6vq.jpg","url":"https:\/\/t.co\/jbZ2T74g7a","display_url":"pic.twitter.com\/jbZ2T74g7a","expanded_url":"http:\/\/twitter.com\/kokuto_96usa\/status\/663727770732662785\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727761228304385,"id_str":"663727761228304385","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4duUEAEqGuV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4duUEAEqGuV.jpg","url":"https:\/\/t.co\/jbZ2T74g7a","display_url":"pic.twitter.com\/jbZ2T74g7a","expanded_url":"http:\/\/twitter.com\/kokuto_96usa\/status\/663727770732662785\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727761236754433,"id_str":"663727761236754433","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4dwVAAEu4_p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4dwVAAEu4_p.jpg","url":"https:\/\/t.co\/jbZ2T74g7a","display_url":"pic.twitter.com\/jbZ2T74g7a","expanded_url":"http:\/\/twitter.com\/kokuto_96usa\/status\/663727770732662785\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":479,"h":718,"resize":"fit"},"medium":{"w":479,"h":718,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006665"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699063296,"id_str":"663727770699063296","text":"Syke og redde katter reddes i Torsken https:\/\/t.co\/8Qmzl2WUHW - NRK #Media https:\/\/t.co\/C0iDXVrCah","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289003559,"id_str":"3289003559","name":"Norwegian-Ne.ws","screen_name":"NorskNN","location":"Norway","url":"http:\/\/norwegian-ne.ws","description":"We collect news from Norway and the world. The Views Expressed In Storys Or Its Titles Do Not Necessarily Reflect The Views Of Us Or Partners.","protected":false,"verified":false,"followers_count":463,"friends_count":51,"listed_count":124,"favourites_count":0,"statuses_count":205888,"created_at":"Mon May 18 20:57:49 +0000 2015","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":false,"lang":"no","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644883514865938432\/BfKx46de_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644883514865938432\/BfKx46de_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289003559\/1431997389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Media","indices":[68,74]}],"urls":[{"url":"https:\/\/t.co\/8Qmzl2WUHW","expanded_url":"http:\/\/link.nettsi.de\/Chfggj","display_url":"link.nettsi.de\/Chfggj","indices":[38,61]}],"user_mentions":[],"symbols":[],"media":[{"id":663727770539659266,"id_str":"663727770539659266","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AaUEAI2Wl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AaUEAI2Wl-.jpg","url":"https:\/\/t.co\/C0iDXVrCah","display_url":"pic.twitter.com\/C0iDXVrCah","expanded_url":"http:\/\/twitter.com\/NorskNN\/status\/663727770699063296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727770539659266,"id_str":"663727770539659266","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5AaUEAI2Wl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5AaUEAI2Wl-.jpg","url":"https:\/\/t.co\/C0iDXVrCah","display_url":"pic.twitter.com\/C0iDXVrCah","expanded_url":"http:\/\/twitter.com\/NorskNN\/status\/663727770699063296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"no","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770699087872,"id_str":"663727770699087872","text":"\uff3b\u5099\u5fd8\u9332\uff3d\nWindows8\u3067VB4\u306eDLL\u3092\u5c0e\u5165\u3059\u308b(\u6700\u5c11\u30d1\u30c3\u30af\u306e\u5834\u5408)\n\u300cVB4JP32.DLL\u300d\u300cVB40032.DLL\u300d\u3092VB4\u3092\u5fc5\u8981\u3068\u3059\u308b\u30a2\u30d7\u30ea\u306e\n\u30d5\u30a9\u30eb\u30c0\u306b\u30b3\u30d4\u30fc\u3059\u308b\nhttps:\/\/t.co\/ChPGdJiIJ7","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63451853,"id_str":"63451853","name":"\u30ec\u30a4\u30b8","screen_name":"reiji4","location":null,"url":null,"description":"2015\/9\/27\u66f4\u65b0 \u5929\u9cf3\u56db\u6bb5\u306b\u964d\u6bb5\uff08R1850\u524d\u5f8c)\u306a\u3093\u3068\u304b\u7279\u4e0a\u306b\u5ea7\u3089\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u3002\u5de64\u30fb\u53f33\u30fb\u53f3\uff12\u3067\u6253\u3063\u3066\u307e\u3059\u3002 \u9ebb\u96c0\u30fb\u4e07\u5e74\u7b46\u30fb\u56f2\u7881\u306e\u3053\u3068\u3092\u30e1\u30a4\u30f3\u306b\u8272\u3093\u306a\u3053\u3068\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u307e\u3059\u3002 \u3054\u81ea\u7531\u306b\u30d5\u30a9\u30ed\u30fc\u30fb\u30a2\u30f3\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":833,"friends_count":971,"listed_count":31,"favourites_count":213,"statuses_count":12961,"created_at":"Thu Aug 06 11:29:02 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1584832317\/bakeneko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1584832317\/bakeneko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63451853\/1367155359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ChPGdJiIJ7","expanded_url":"http:\/\/www.vector.co.jp\/download\/file\/win95\/util\/fh416586.html","display_url":"vector.co.jp\/download\/file\/\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006657"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770728550400,"id_str":"663727770728550400","text":"Busy Schedule? https:\/\/t.co\/YKRpXAUyxB #healthy #healthyliving #fitness #workout #gym #weightloss #health #nutrition https:\/\/t.co\/JHqirZz5o0","source":"\u003ca href=\"http:\/\/meetedgar.com\" rel=\"nofollow\"\u003eMeet Edgar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3031538734,"id_str":"3031538734","name":"Be Bold","screen_name":"howtobebold","location":"Miami Beach","url":"http:\/\/www.manprojectpodcast.com","description":"Ted Ryce I Celebrity Trainer | Public Speaker | Host of the Legendary Life Podcast. Health, Wealth, Dating & Relationships and Personal-Development for Men.","protected":false,"verified":false,"followers_count":734,"friends_count":33,"listed_count":274,"favourites_count":9,"statuses_count":17714,"created_at":"Wed Feb 11 22:51:08 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598213998669094912\/XFWIuZNJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598213998669094912\/XFWIuZNJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3031538734\/1431460297","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"healthy","indices":[39,47]},{"text":"healthyliving","indices":[48,62]},{"text":"fitness","indices":[63,71]},{"text":"workout","indices":[72,80]},{"text":"gym","indices":[81,85]},{"text":"weightloss","indices":[86,97]},{"text":"health","indices":[98,105]},{"text":"nutrition","indices":[106,116]}],"urls":[{"url":"https:\/\/t.co\/YKRpXAUyxB","expanded_url":"http:\/\/bit.ly\/1khn1NI","display_url":"bit.ly\/1khn1NI","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663727770392993792,"id_str":"663727770392993792","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4_3WIAAQa3H.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4_3WIAAQa3H.png","url":"https:\/\/t.co\/JHqirZz5o0","display_url":"pic.twitter.com\/JHqirZz5o0","expanded_url":"http:\/\/twitter.com\/howtobebold\/status\/663727770728550400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727770392993792,"id_str":"663727770392993792","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4_3WIAAQa3H.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4_3WIAAQa3H.png","url":"https:\/\/t.co\/JHqirZz5o0","display_url":"pic.twitter.com\/JHqirZz5o0","expanded_url":"http:\/\/twitter.com\/howtobebold\/status\/663727770728550400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1000,"h":523,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080006664"} +{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727770711666688,"id_str":"663727770711666688","text":"RT @MHX_CAPCOM: \u30cf\u30f3\u30bf\u30fc\u3055\u3093\u306e\u796d\u5178\u300c\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30d5\u30a7\u30b9\u30bf\u2019\uff11\uff16\u300d\u306e\u958b\u50ac\u304c\u6c7a\u5b9a\u3057\u307e\u3057\u305f\uff01\u697d\u3057\u3044\u30a4\u30d9\u30f3\u30c8\u3092\u305f\u304f\u3055\u3093\u6e96\u5099\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u7d9a\u5831\u3092\u697d\u3057\u307f\u306b\u304a\u5f85\u3061\u304f\u3060\u3055\u3044\uff5e\uff01https:\/\/t.co\/GEyNbVyacF https:\/\/t.co\/6w0dVXjQnG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77646727,"id_str":"77646727","name":"cedar80.incZ49\u3002","screen_name":"cedar80","location":"\u4e09\u91cd\u770c\u677e\u962a\u5e02","url":null,"description":"\u30c7\u30a3\u30b0\u30e9\u30e0\u8a3a\u65ad\u306b\u3088\u308b\u3068\u300c24\u6642\u9593\u845b\u85e4\u4e2d\u3002\u5185\u5f01\u6176\u306a\u9811\u56fa\u4eba\u9593\u3002\u300d\u3089\u3057\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":133,"friends_count":174,"listed_count":0,"favourites_count":8467,"statuses_count":37537,"created_at":"Sun Sep 27 03:15:29 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663349154240851968\/1Jj-rOij_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663349154240851968\/1Jj-rOij_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77646727\/1446330840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:01:39 +0000 2015","id":663718094569803776,"id_str":"663718094569803776","text":"\u30cf\u30f3\u30bf\u30fc\u3055\u3093\u306e\u796d\u5178\u300c\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30d5\u30a7\u30b9\u30bf\u2019\uff11\uff16\u300d\u306e\u958b\u50ac\u304c\u6c7a\u5b9a\u3057\u307e\u3057\u305f\uff01\u697d\u3057\u3044\u30a4\u30d9\u30f3\u30c8\u3092\u305f\u304f\u3055\u3093\u6e96\u5099\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u3001\u7d9a\u5831\u3092\u697d\u3057\u307f\u306b\u304a\u5f85\u3061\u304f\u3060\u3055\u3044\uff5e\uff01https:\/\/t.co\/GEyNbVyacF https:\/\/t.co\/6w0dVXjQnG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818513720,"id_str":"818513720","name":"MHX Official","screen_name":"MHX_CAPCOM","location":null,"url":"http:\/\/www.capcom.co.jp\/monsterhunter\/X\/","description":"2015\u5e7411\u670828\u65e5\uff08\u571f\uff09\u767a\u58f2\u4e88\u5b9a\u300e\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u300f\u306e\u516c\u5f0fTwitter\u3067\u3059\u3002\u308f\u305f\u3057\u3001\u30ab\u30c6\u30a3\u304c\u6700\u65b0\u30b2\u30fc\u30e0\u60c5\u5831\u3084\u30a4\u30d9\u30f3\u30c8\u3001\u30b3\u30e9\u30dc\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u3066\u3044\u304d\u307e\u3059\uff01\u30cf\u30f3\u30bf\u30fc\u3055\u3093\u3001\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":98726,"friends_count":4,"listed_count":1508,"favourites_count":0,"statuses_count":826,"created_at":"Wed Sep 12 00:43:20 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9A71F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":105,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GEyNbVyacF","expanded_url":"http:\/\/bit.ly\/1dxgRWt","display_url":"bit.ly\/1dxgRWt","indices":[76,99]}],"user_mentions":[],"symbols":[],"media":[{"id":663718093022097408,"id_str":"663718093022097408","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718093022097408,"id_str":"663718093022097408","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663718093026295809,"id_str":"663718093026295809","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs3VAAEI7l6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs3VAAEI7l6.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":336,"resize":"fit"},"medium":{"w":598,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GEyNbVyacF","expanded_url":"http:\/\/bit.ly\/1dxgRWt","display_url":"bit.ly\/1dxgRWt","indices":[92,115]}],"user_mentions":[{"screen_name":"MHX_CAPCOM","name":"MHX Official","id":818513720,"id_str":"818513720","indices":[3,14]}],"symbols":[],"media":[{"id":663718093022097408,"id_str":"663718093022097408","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663718094569803776,"source_status_id_str":"663718094569803776","source_user_id":818513720,"source_user_id_str":"818513720"}]},"extended_entities":{"media":[{"id":663718093022097408,"id_str":"663718093022097408","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs2U8AAoOpF.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663718094569803776,"source_status_id_str":"663718094569803776","source_user_id":818513720,"source_user_id_str":"818513720"},{"id":663718093026295809,"id_str":"663718093026295809","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAFs3VAAEI7l6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAFs3VAAEI7l6.jpg","url":"https:\/\/t.co\/6w0dVXjQnG","display_url":"pic.twitter.com\/6w0dVXjQnG","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663718094569803776\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":336,"resize":"fit"},"medium":{"w":598,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663718094569803776,"source_status_id_str":"663718094569803776","source_user_id":818513720,"source_user_id_str":"818513720"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080006660"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910271489,"id_str":"663727774910271489","text":"RT @xxstylesmylove: Chat con Connor Ball\ud83c\udffc\ud83d\udc98\nRT per averla\ud83c\udf38","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3420551926,"id_str":"3420551926","name":"\u2764\ufe0fPromise\u2764\ufe0f","screen_name":"HugMeHaz__01","location":null,"url":null,"description":"https:\/\/twitter.com\/giorga_maz01\/status\/658334957744607233 Follow me on IG (giooo_123)","protected":false,"verified":false,"followers_count":398,"friends_count":374,"listed_count":0,"favourites_count":575,"statuses_count":1570,"created_at":"Thu Aug 13 17:11:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657202955737812993\/untOqP3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657202955737812993\/untOqP3-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420551926\/1445524369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727686439845889,"id_str":"663727686439845889","text":"Chat con Connor Ball\ud83c\udffc\ud83d\udc98\nRT per averla\ud83c\udf38","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3482591477,"id_str":"3482591477","name":"zia Bens","screen_name":"xxstylesmylove","location":"proof in fav|Snapchat:bensoned","url":"https:\/\/twitter.com\/xxstylesmylove\/status\/6627441290724","description":"\u275dJust because someone is smiling doesn't mean their life is perfect.\u275e","protected":false,"verified":false,"followers_count":3135,"friends_count":1858,"listed_count":1,"favourites_count":396,"statuses_count":4342,"created_at":"Sat Aug 29 17:45:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642762531442966528\/Lo0xi9cN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642762531442966528\/Lo0xi9cN.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662391795649769472\/fBV0VC_j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662391795649769472\/fBV0VC_j_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xxstylesmylove","name":"zia Bens","id":3482591477,"id_str":"3482591477","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774901891072,"id_str":"663727774901891072","text":"RT @LiisyQ: Nada mejor que tener aire en el sal\u00f3n\ud83d\ude05\u2744\ud83d\ude02 nos re\u00edmos del calor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2241743670,"id_str":"2241743670","name":"\u2740Huil\u00e9n Sanabria\u270d","screen_name":"HuilySa","location":"Face","url":"https:\/\/www.facebook.com\/huily.sanabria","description":"Tauriana - 15 A\u00f1os","protected":false,"verified":false,"followers_count":1023,"friends_count":889,"listed_count":0,"favourites_count":3032,"statuses_count":15930,"created_at":"Thu Dec 12 03:44:35 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566383330522705921\/g6Uw36it.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566383330522705921\/g6Uw36it.jpeg","profile_background_tile":true,"profile_link_color":"FF00BB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657377961029582848\/wDjFVryE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657377961029582848\/wDjFVryE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2241743670\/1445566083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:55 +0000 2015","id":663692994214764544,"id_str":"663692994214764544","text":"Nada mejor que tener aire en el sal\u00f3n\ud83d\ude05\u2744\ud83d\ude02 nos re\u00edmos del calor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2332534213,"id_str":"2332534213","name":"Liset Quintana\u00ae","screen_name":"LiisyQ","location":"Argentina","url":null,"description":"No hay nada que so\u00f1ar me impida","protected":false,"verified":false,"followers_count":440,"friends_count":326,"listed_count":0,"favourites_count":588,"statuses_count":1961,"created_at":"Fri Feb 07 23:11:43 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DAADDE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"7F0485","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641278586792607744\/ciD3OamD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641278586792607744\/ciD3OamD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2332534213\/1441727738","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LiisyQ","name":"Liset Quintana\u00ae","id":2332534213,"id_str":"2332534213","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080007659"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774922854400,"id_str":"663727774922854400","text":"RT @traficovv: RT @clarkkentfm: 9:56am Protesta En La Intercomunal #Guatire #Guarenas Por #Inseguridad https:\/\/t.co\/KkdTpw1WAb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167584217,"id_str":"167584217","name":"Gladys Elena","screen_name":"GMamina","location":"Guatitre","url":null,"description":null,"protected":false,"verified":false,"followers_count":47,"friends_count":237,"listed_count":0,"favourites_count":54,"statuses_count":284,"created_at":"Fri Jul 16 23:50:38 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/449017101563744256\/4fpB4Bkn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/449017101563744256\/4fpB4Bkn_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:04 +0000 2015","id":663724993537290241,"id_str":"663724993537290241","text":"RT @clarkkentfm: 9:56am Protesta En La Intercomunal #Guatire #Guarenas Por #Inseguridad https:\/\/t.co\/KkdTpw1WAb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297603985,"id_str":"297603985","name":"Noticiero Tr\u00e1fico","screen_name":"traficovv","location":"Caracas","url":"http:\/\/www.noticierovenevision.net","description":"Servicio para el reporte del tr\u00e1fico en toda Venezuela, generado por la participaci\u00f3n de todos con el respaldo del Noticiero Venevisi\u00f3n.","protected":false,"verified":false,"followers_count":471942,"friends_count":76363,"listed_count":3014,"favourites_count":0,"statuses_count":456532,"created_at":"Thu May 12 19:52:43 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"2721CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/391029452\/twitter_bckg_vv__1_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/391029452\/twitter_bckg_vv__1_.jpg","profile_background_tile":false,"profile_link_color":"1C8EAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1440687646\/1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1440687646\/1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297603985\/1438294813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":0,"entities":{"hashtags":[{"text":"Guatire","indices":[53,61]},{"text":"Guarenas","indices":[62,71]},{"text":"Inseguridad","indices":[76,88]}],"urls":[],"user_mentions":[{"screen_name":"clarkkentfm","name":"clarkkentfm","id":211241968,"id_str":"211241968","indices":[3,15]}],"symbols":[],"media":[{"id":663724990412496896,"id_str":"663724990412496896","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","url":"https:\/\/t.co\/KkdTpw1WAb","display_url":"pic.twitter.com\/KkdTpw1WAb","expanded_url":"http:\/\/twitter.com\/traficovv\/status\/663724993537290241\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663724990412496896,"id_str":"663724990412496896","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","url":"https:\/\/t.co\/KkdTpw1WAb","display_url":"pic.twitter.com\/KkdTpw1WAb","expanded_url":"http:\/\/twitter.com\/traficovv\/status\/663724993537290241\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Guatire","indices":[68,76]},{"text":"Guarenas","indices":[77,86]},{"text":"Inseguridad","indices":[91,103]}],"urls":[],"user_mentions":[{"screen_name":"traficovv","name":"Noticiero Tr\u00e1fico","id":297603985,"id_str":"297603985","indices":[3,13]},{"screen_name":"clarkkentfm","name":"clarkkentfm","id":211241968,"id_str":"211241968","indices":[18,30]}],"symbols":[],"media":[{"id":663724990412496896,"id_str":"663724990412496896","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","url":"https:\/\/t.co\/KkdTpw1WAb","display_url":"pic.twitter.com\/KkdTpw1WAb","expanded_url":"http:\/\/twitter.com\/traficovv\/status\/663724993537290241\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724993537290241,"source_status_id_str":"663724993537290241","source_user_id":297603985,"source_user_id_str":"297603985"}]},"extended_entities":{"media":[{"id":663724990412496896,"id_str":"663724990412496896","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXLoWIAAVeOm.jpg","url":"https:\/\/t.co\/KkdTpw1WAb","display_url":"pic.twitter.com\/KkdTpw1WAb","expanded_url":"http:\/\/twitter.com\/traficovv\/status\/663724993537290241\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724993537290241,"source_status_id_str":"663724993537290241","source_user_id":297603985,"source_user_id_str":"297603985"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080007664"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774901927937,"id_str":"663727774901927937","text":"Ho votato \"La ragazza del treno\" su aNobii - 4\/5 https:\/\/t.co\/N1l2ROM3QY","source":"\u003ca href=\"http:\/\/beta.anobii.com\" rel=\"nofollow\"\u003eAnobii\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":359871894,"id_str":"359871894","name":"Nily\u2654 \u611b\u685c","screen_name":"PrincessNily","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":61,"friends_count":190,"listed_count":5,"favourites_count":333,"statuses_count":4487,"created_at":"Mon Aug 22 09:29:21 +0000 2011","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506179589966553088\/0B-VP_cW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506179589966553088\/0B-VP_cW.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD9D9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430437297436119040\/7KgByv94_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430437297436119040\/7KgByv94_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/359871894\/1407511476","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N1l2ROM3QY","expanded_url":"http:\/\/www.anobii.com\/books\/012e076219f37de0e4","display_url":"anobii.com\/books\/012e0762\u2026","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080007659"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914519040,"id_str":"663727774914519040","text":"\u0633\u064a\u0631\u062e\u064a\u0648 \u0641\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":515497185,"id_str":"515497185","name":"\u0634\u0647\u062f\u0627\u0646\u064a \u0628\u0648\u0635\u0627\u0644\u062d","screen_name":"Shahad742","location":"You're worse than NICOTINE","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0623\u0643\u0627\u0648\u0646\u062a \u0645\u062d\u062a\u0631\u0645 \u0623\u0634\u0643\u0627\u0644\u0643 \u0645\u0627\u064a\u0633\u0648\u0648\u0646 \u0644\u0647 \u0641\u0648\u0644\u0648 .","protected":false,"verified":false,"followers_count":5442,"friends_count":269,"listed_count":8,"favourites_count":175,"statuses_count":102587,"created_at":"Mon Mar 05 14:02:01 +0000 2012","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524734029\/_____.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524734029\/_____.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658529470899294208\/mEIKHHVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658529470899294208\/mEIKHHVt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/515497185\/1445845077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897688577,"id_str":"663727774897688577","text":"RT @sahabmabda: \u0646\u062d\u0646 \u0636\u0639\u0641\u0627\u0621 \u0639\u0646\u062f\u0645\u0627 \u0646\u0634\u062a\u0643\u064a \u0645\u0646 \u0627\u0644\u062d\u0632\u0646 \u060c \u0648 \u0647\u0646\u0627\u0643 \u0623\u0634\u062e\u0627\u0635 \u0627\u0647\u0644\u0643\u0647\u0627 \u0627\u0644\u0645\u0631\u0636 \u0648 \u0644\u0627 \u0632\u0627\u0644\u062a \u062a\u0628\u062a\u0633\u0645 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731563572,"id_str":"731563572","name":"Om Faisal","screen_name":"Om___Faisal","location":null,"url":null,"description":"\u062d\u064a\u0646 \u064a\u0633\u0643\u0646 \u0631\u0636\u0649 \u0627\u0644\u0644\u0647 \u0641\u064a \u0642\u0644\u0648\u0628\u0646\u0627 \u064a\u0635\u0628\u062d \u0643\u0644 \u0634\u064a\u0621 \u0623\u062c\u0645\u0644 \u0641\u0644\u0627 \u062a\u0641\u0643\u0631 \u0643\u062b\u064a\u0631\u0627\u064b \u0628\u0644 \u0627\u0633\u062a\u063a\u0641\u0631 \u0641\u0627\u0644\u0644\u0647 \u064a\u0641\u062a\u062d \u0628\u0627\u0644\u0625\u0633\u062a\u063a\u0641\u0627\u0631 \u0627\u0628\u0648\u0627\u0628\u0627\u064b \u0644\u0627 \u062a\u0641\u062a\u062d \u0628\u0627\u0644\u062a\u0641\u0643\u064a\u0631","protected":false,"verified":false,"followers_count":427,"friends_count":823,"listed_count":0,"favourites_count":165,"statuses_count":10213,"created_at":"Wed Aug 01 22:10:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2614743731\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2614743731\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731563572\/1440483059","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Apr 12 05:49:28 +0000 2015","id":587130393259671552,"id_str":"587130393259671552","text":"\u0646\u062d\u0646 \u0636\u0639\u0641\u0627\u0621 \u0639\u0646\u062f\u0645\u0627 \u0646\u0634\u062a\u0643\u064a \u0645\u0646 \u0627\u0644\u062d\u0632\u0646 \u060c \u0648 \u0647\u0646\u0627\u0643 \u0623\u0634\u062e\u0627\u0635 \u0627\u0647\u0644\u0643\u0647\u0627 \u0627\u0644\u0645\u0631\u0636 \u0648 \u0644\u0627 \u0632\u0627\u0644\u062a \u062a\u0628\u062a\u0633\u0645 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":261612662,"id_str":"261612662","name":"\u0627\u0644\u0645\u0637\u064a\u0631\u064a \u062e\u0627\u062f\u0645 \u0648\u0627\u0644\u062f\u064a\u0647","screen_name":"sahabmabda","location":null,"url":null,"description":"\u0645\u0637\u064a\u0631\u064a \u0648\u0645\u0646 \u0627\u062d\u0641\u0627\u062f ( \u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0628\u0646 \u0627\u0644\u0632\u0628\u064a\u0631\u0627\u0644\u0642\u0631\u0634\u064a)\u0631\u0636\u064a \u0627\u0644\u0644\u0647 \u0639\u0646\u0647 \u0648\u0634\u0639\u0627\u0631\u064a \u0641\u064a \u0645\u0639\u062c\u0645 \u0627\u0644\u0627\u062d\u0631\u0627\u0627\u0627\u0631( \u062a\u0639\u0631\u064a\u0641 \u0627\u0644\u0627\u0646\u0633\u0627\u0646)\u0643\u0627\u0626\u0646 \u064a\u0645\u0648\u062a \u0627\u0646 \u0644\u0645 \u064a\u062a\u0646\u0641\u0633 \u0643\u0631\u0627\u0645\u0647. \u270d \u0627\u0644\u0643\u0640\u0640\u0640\u0640\u0648\u064a\u062a \u062f\u0627\u0631\u064a","protected":false,"verified":false,"followers_count":48318,"friends_count":74,"listed_count":44,"favourites_count":1074,"statuses_count":26162,"created_at":"Sun Mar 06 09:18:47 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661944394241744896\/CSsMvE_j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661944394241744896\/CSsMvE_j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/261612662\/1447020000","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":817,"favorite_count":281,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sahabmabda","name":"\u0627\u0644\u0645\u0637\u064a\u0631\u064a \u062e\u0627\u062f\u0645 \u0648\u0627\u0644\u062f\u064a\u0647","id":261612662,"id_str":"261612662","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914318341,"id_str":"663727774914318341","text":"RT @Itsfactguide: This Teacher IS Caught Having Orgy With 5 Students (WARNING - GRAPHIC) https:\/\/t.co\/9DsZSAm4Mw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2843331310,"id_str":"2843331310","name":"THE STORY","screen_name":"Patel2001S","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":20322,"friends_count":16912,"listed_count":11,"favourites_count":3,"statuses_count":194,"created_at":"Sat Oct 25 05:23:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575945293859983362\/was944Ox_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575945293859983362\/was944Ox_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2843331310\/1426150927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 06:20:28 +0000 2015","id":661790092776747008,"id_str":"661790092776747008","text":"This Teacher IS Caught Having Orgy With 5 Students (WARNING - GRAPHIC) https:\/\/t.co\/9DsZSAm4Mw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909749045,"id_str":"2909749045","name":"Fact guide","screen_name":"Itsfactguide","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46350,"friends_count":34154,"listed_count":47,"favourites_count":39,"statuses_count":392,"created_at":"Tue Nov 25 06:56:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9DsZSAm4Mw","expanded_url":"http:\/\/bit.ly\/1Nnx8eW","display_url":"bit.ly\/1Nnx8eW","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9DsZSAm4Mw","expanded_url":"http:\/\/bit.ly\/1Nnx8eW","display_url":"bit.ly\/1Nnx8eW","indices":[89,112]}],"user_mentions":[{"screen_name":"Itsfactguide","name":"Fact guide","id":2909749045,"id_str":"2909749045","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897586176,"id_str":"663727774897586176","text":"\u8f9b\u3044\u3051\u3069\u307f\u3093\u306a\u3084\u3055\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1398464990,"id_str":"1398464990","name":"\u732b\u6751","screen_name":"salmonpkpk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":17,"listed_count":0,"favourites_count":41,"statuses_count":105,"created_at":"Fri May 03 00:06:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3741051028\/710c7f0bdfa48153aefdce3867601042_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3741051028\/710c7f0bdfa48153aefdce3867601042_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897717248,"id_str":"663727774897717248","text":"YnaYna143: kathnielmeoww: It's now time for a new beginning. Yna's bound to pursue her dreams. \u2764\ufe0f #PSYPagtakas","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877852393,"id_str":"3877852393","name":"Lia Buenavista","screen_name":"liabuenavista12","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46,"friends_count":6,"listed_count":36,"favourites_count":0,"statuses_count":60900,"created_at":"Tue Oct 13 06:31:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653822124373749760\/kvVIm95v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653822124373749760\/kvVIm95v_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PSYPagtakas","indices":[98,110]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774893481984,"id_str":"663727774893481984","text":"RT @Ummah4Life: Why is marriage so complicated these days? Allah blessed us with marriage & us humans have complicated it smh.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":365338842,"id_str":"365338842","name":"Ra'eesa ","screen_name":"Raeesa_gee","location":"\u2022\u00b0\u2022durban \u00b0\u2022\u00b0empangeni","url":null,"description":"\u2606Aspiring lawyer\u2606\n\u2661series fanatic\u2661\n~you know my twitter not me~ i retweet everything so stfu","protected":false,"verified":false,"followers_count":413,"friends_count":303,"listed_count":6,"favourites_count":1450,"statuses_count":9486,"created_at":"Wed Aug 31 08:15:14 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610509984\/4bjcxmmwaj3frhmpeujq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610509984\/4bjcxmmwaj3frhmpeujq.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609737491210498048\/AxS6Rmzy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609737491210498048\/AxS6Rmzy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/365338842\/1434184553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:21 +0000 2015","id":663720281207390209,"id_str":"663720281207390209","text":"Why is marriage so complicated these days? Allah blessed us with marriage & us humans have complicated it smh.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":568423118,"id_str":"568423118","name":"100%","screen_name":"Ummah4Life","location":"\u2714 Muslim \u2714Cape Verde, Africa ","url":null,"description":"6'3","protected":false,"verified":false,"followers_count":1448,"friends_count":1765,"listed_count":6,"favourites_count":3871,"statuses_count":34134,"created_at":"Tue May 01 18:22:20 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658678797202542592\/ka3tF23N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658678797202542592\/ka3tF23N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/568423118\/1431489463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ummah4Life","name":"100%","id":568423118,"id_str":"568423118","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007657"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774922874880,"id_str":"663727774922874880","text":"RT @Body_Tattoos: These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3198356611,"id_str":"3198356611","name":"Nichol Hedworth","screen_name":"qiqefeqafig","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":68,"friends_count":398,"listed_count":7,"favourites_count":17528,"statuses_count":17880,"created_at":"Sun May 17 01:56:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645765998188990464\/uI-mjJd__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645765998188990464\/uI-mjJd__normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:34 +0000 2015","id":663726125600886784,"id_str":"663726125600886784","text":"These Tattoos Are Unusual - They Made Them on Skin, Tongue and Even Eyes https:\/\/t.co\/LQHzJmzt0c https:\/\/t.co\/4PvNSJArfu","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236446485,"id_str":"3236446485","name":"Body Tattoos","screen_name":"Body_Tattoos","location":"Las Vegas, NV","url":"http:\/\/body-tattoos.com","description":"Thousands of tattoo pictures, Body Art Tattoos, Tattoo Pictures, Latest Tattooo Designs at http:\/\/body-tattoos.com","protected":false,"verified":false,"followers_count":94821,"friends_count":1158,"listed_count":3,"favourites_count":2,"statuses_count":378,"created_at":"Tue May 05 18:17:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768557571608576\/wmcD3JaA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236446485\/1446612867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2294,"favorite_count":1452,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LQHzJmzt0c","expanded_url":"http:\/\/dld.bz\/dZm2Q","display_url":"dld.bz\/dZm2Q","indices":[91,114]}],"user_mentions":[{"screen_name":"Body_Tattoos","name":"Body Tattoos","id":3236446485,"id_str":"3236446485","indices":[3,16]}],"symbols":[],"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"extended_entities":{"media":[{"id":663726124992765952,"id_str":"663726124992765952","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHZORXIAA_t6m.jpg","url":"https:\/\/t.co\/4PvNSJArfu","display_url":"pic.twitter.com\/4PvNSJArfu","expanded_url":"http:\/\/twitter.com\/Body_Tattoos\/status\/663726125600886784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663726125600886784,"source_status_id_str":"663726125600886784","source_user_id":3236446485,"source_user_id_str":"3236446485"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007664"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774901796865,"id_str":"663727774901796865","text":"RT @Itsfactguide: This Teacher IS Caught Having Orgy With 5 Students (WARNING - GRAPHIC) https:\/\/t.co\/9DsZSAm4Mw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2991846265,"id_str":"2991846265","name":"jake le perro","screen_name":"perro_le","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25117,"friends_count":23222,"listed_count":36,"favourites_count":13,"statuses_count":1202,"created_at":"Wed Jan 21 18:59:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557976657835728896\/G_ClJ5UL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557976657835728896\/G_ClJ5UL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991846265\/1436715103","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 06:20:28 +0000 2015","id":661790092776747008,"id_str":"661790092776747008","text":"This Teacher IS Caught Having Orgy With 5 Students (WARNING - GRAPHIC) https:\/\/t.co\/9DsZSAm4Mw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909749045,"id_str":"2909749045","name":"Fact guide","screen_name":"Itsfactguide","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46350,"friends_count":34154,"listed_count":47,"favourites_count":39,"statuses_count":392,"created_at":"Tue Nov 25 06:56:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9DsZSAm4Mw","expanded_url":"http:\/\/bit.ly\/1Nnx8eW","display_url":"bit.ly\/1Nnx8eW","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9DsZSAm4Mw","expanded_url":"http:\/\/bit.ly\/1Nnx8eW","display_url":"bit.ly\/1Nnx8eW","indices":[89,112]}],"user_mentions":[{"screen_name":"Itsfactguide","name":"Fact guide","id":2909749045,"id_str":"2909749045","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007659"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910124032,"id_str":"663727774910124032","text":"\u6b21\u306b\u3001\u4e00\u756a\u4e57\u308a\u5834\u306b\u307e\u3044\u308a\u307e\u3059\u96fb\u8eca\u306f\u300123\u664249\u5206\u767a\u666e\u901aJR\u6771\u897f\u7dda\u7d4c\u7531\u653e\u51fa\u884c\u304d\u3067\u3059\u3002\u96fb\u8eca\u306f\u30017\u4e21\u3067\u307e\u3044\u308a\u307e\u3059\u3002\u8db3\u5143\u767d\u8272\u4e38\u5370\u3001\u4e00\u756a\u304b\u3089\u4e03\u756a\u3067\u3001\u4e8c\u5217\u306b\u4e26\u3093\u3067\u304a\u5f85\u3061\u304f\u3060\u3055\u3044\u3002\u5c3c\u5d0e\u306b\u306f\u3053\u306e\u96fb\u8eca\u304c\u5148\u306b\u7740\u304d\u307e\u3059\u3002\u5c3c\u5d0e\u3067\u3001\u666e\u901a\u4eac\u90fd\u884c\u304d\u306b\u9023\u7d61\u3057\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/blogs.yahoo.co.jp\/hinamyonexp\/MYBLOG\/yblog.html\" rel=\"nofollow\"\u003eKONANYAMATE\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1034390425,"id_str":"1034390425","name":"\u7532\u5357\u5c71\u624b\u99c5bot","screen_name":"freedom207bot","location":"\u795e\u6238\u5e02\u6771\u7058\u533a\u68ee\u5317\u753a\u4e00\u4e01\u76ee1-1","url":"http:\/\/twpf.jp\/freedom207bot","description":"\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059\r\n\u88fd\u4f5c\u8005:@hinamyonEXP \r\n\u8a73\u3057\u304f\u306f\u2193","protected":false,"verified":false,"followers_count":1220,"friends_count":1398,"listed_count":14,"favourites_count":5,"statuses_count":301759,"created_at":"Tue Dec 25 09:02:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3493132892\/1b0a71da28fa17cae60b3bf615c5594a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3493132892\/1b0a71da28fa17cae60b3bf615c5594a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918680576,"id_str":"663727774918680576","text":"\u0627\u0646 \u0644\u0645 \u062a\u0643\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u0643\u0633\u0627\u0631\n\n\u0641\u0644\u0627 \u062a\u0633\u062a\u062d\u0642 \u0627\u0646 \u062a\u0643\u0648\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u062a\u0635\u0627\u0631\n\n\"\u0627\u0644\u062c\u0645\u0644\u0647 \u0647\u0630\u0647 \u0627\u0634\u062f \u0623\u0644\u0645\u0627\u064b \u0645\u0646 \u0627\u0644\u062e\u0633\u0627\u0631\u0647\"\n\n#\u062d\u0642\u064a\u0642\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":621540224,"id_str":"621540224","name":"\u0641\u0647\u062f \u0645\u062f\u0631\u064a\u062f","screen_name":"FHD__RM","location":"abha","url":null,"description":"\u0642\u062f \u0642\u064a\u0644 \u0627\u0646 \u0644\u0647 \u0648\u0644\u062f\u0627\u064b \u0648\u0635\u0627\u062d\u0628\u0629\u064b \u060c\u060c\u060c\u060c\u060c\u060c\u060c\u060c\u0632\u0648\u0631\u0627\u064b \u0639\u0644\u064a\u0647 \u0648\u0628\u0647\u062a\u0627\u0646\u0627\u064b \u0648\u062a\u0636\u0644\u064a\u0644\u0627 \u0647\u0630\u0627 \u0642\u0648\u0644\u0647\u0645 \u0641\u064a \u0627\u0644\u0644\u0647 \u062e\u0627\u0644\u0642\u0647\u0645 \u060c\u060c\u060c\u060c \u0641\u0643\u064a\u0641 \u0644\u0648 \u0642\u064a\u0644 \u0641\u064a\u0646\u0627 \u0628\u0639\u0636 \u0645\u0627 \u0642\u064a\u0644\u0627 Real Madrid __Abha","protected":false,"verified":false,"followers_count":35021,"friends_count":309,"listed_count":153,"favourites_count":6,"statuses_count":50383,"created_at":"Fri Jun 29 03:47:33 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651487256264503297\/b0WWRUAM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651487256264503297\/b0WWRUAM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621540224\/1441496718","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062d\u0642\u064a\u0642\u0647","indices":[111,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774922838016,"id_str":"663727774922838016","text":"Mdr c'est l'hopital qui s'fout d'la charit\u00e9 non? https:\/\/t.co\/4t0wJKn4C3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2971772435,"id_str":"2971772435","name":"sofia","screen_name":"nikexfziam","location":"37km","url":null,"description":"j'suis trop loin j'suis sponsoris\u00e9e par la nasa","protected":false,"verified":false,"followers_count":367,"friends_count":155,"listed_count":6,"favourites_count":942,"statuses_count":15940,"created_at":"Sat Jan 10 18:13:07 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659425537736220672\/glPZ8xq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659425537736220672\/glPZ8xq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971772435\/1444421420","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"56855a00b18f6924","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/56855a00b18f6924.json","place_type":"city","name":"Saint-Gratien","full_name":"Saint-Gratien, Ile-de-France","country_code":"FR","country":"France","bounding_box":{"type":"Polygon","coordinates":[[[2.271133,48.958456],[2.271133,48.977507],[2.298723,48.977507],[2.298723,48.958456]]]},"attributes":{}},"contributors":null,"quoted_status_id":662348658264903681,"quoted_status_id_str":"662348658264903681","quoted_status":{"created_at":"Thu Nov 05 19:20:00 +0000 2015","id":662348658264903681,"id_str":"662348658264903681","text":"Le #Poissons est super sensible, faites attention \u00e0 ce que vous lui dites, une petite chose pourrait le blesser.","source":"\u003ca href=\"https:\/\/clocktweets.com\/\" rel=\"nofollow\"\u003eClockTweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587759575,"id_str":"587759575","name":"Le Vrai Horoscope","screen_name":"LeVraiHoroscope","location":"Contact: LVHoroscope@gmail.com","url":"https:\/\/www.facebook.com\/LVHoroscope","description":"OMG ! Trop de v\u00e9rit\u00e9 sur ton signe astrologique ! #horoscope #astrologie #astrology #zodiaque #zodiac #signes #signs #astro #astres #stars #love #follow","protected":false,"verified":false,"followers_count":1290085,"friends_count":47,"listed_count":465,"favourites_count":915,"statuses_count":27826,"created_at":"Tue May 22 21:18:15 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000071966923\/a2c5f73cd6beb01ccde2bbb28a008c2f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000071966923\/a2c5f73cd6beb01ccde2bbb28a008c2f.jpeg","profile_background_tile":false,"profile_link_color":"3284C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"237760","profile_text_color":"2ACFD5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433414043798212608\/yL9sIhQy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433414043798212608\/yL9sIhQy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587759575\/1392160621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Poissons","indices":[3,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4t0wJKn4C3","expanded_url":"https:\/\/twitter.com\/levraihoroscope\/status\/662348658264903681","display_url":"twitter.com\/levraihoroscop\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080007664"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774926901248,"id_str":"663727774926901248","text":"RT @BLUIZK81: Sweden Opened Its Doors 2 Muslim Immigration, Today It\u2019s The Rape Capital Of The West.Japan Didn\u2019t. https:\/\/t.co\/UAmrIzUKe7 v\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170476379,"id_str":"170476379","name":"Adam","screen_name":"TheQuag","location":"California, USA","url":null,"description":"Something is happening in our country. We're taking it back from PC, illegal immigration, and Obama. I want my son and my family to be free; really Free.","protected":false,"verified":false,"followers_count":469,"friends_count":750,"listed_count":9,"favourites_count":1956,"statuses_count":3752,"created_at":"Sat Jul 24 23:22:20 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661755385460584448\/yFgzqlnH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661755385460584448\/yFgzqlnH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170476379\/1446609752","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 17:11:00 +0000 2015","id":661953804800102400,"id_str":"661953804800102400","text":"Sweden Opened Its Doors 2 Muslim Immigration, Today It\u2019s The Rape Capital Of The West.Japan Didn\u2019t. https:\/\/t.co\/UAmrIzUKe7 via @dailycaller","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3905905514,"id_str":"3905905514","name":"BLUIZK81","screen_name":"BLUIZK81","location":null,"url":null,"description":"Retired Architect, Doberman Mom, Equine Vet Assistant, Conservative\n#tcot #TrumpTrain #MakeAmericaGreatAgain\n\u2606Register Republican\u2606Vote\u2606 \nTRUMP 2016!","protected":false,"verified":false,"followers_count":443,"friends_count":185,"listed_count":13,"favourites_count":5417,"statuses_count":5567,"created_at":"Thu Oct 15 19:30:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656890825041817600\/xF67my8j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656890825041817600\/xF67my8j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3905905514\/1445449262","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UAmrIzUKe7","expanded_url":"http:\/\/dailycaller.com\/2015\/10\/23\/sweden-opened-its-doors-to-muslim-immigration-today-its-the-rape-capital-of-the-west-japan-didnt\/","display_url":"dailycaller.com\/2015\/10\/23\/swe\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"DailyCaller","name":"The Daily Caller","id":39308549,"id_str":"39308549","indices":[128,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UAmrIzUKe7","expanded_url":"http:\/\/dailycaller.com\/2015\/10\/23\/sweden-opened-its-doors-to-muslim-immigration-today-its-the-rape-capital-of-the-west-japan-didnt\/","display_url":"dailycaller.com\/2015\/10\/23\/swe\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"BLUIZK81","name":"BLUIZK81","id":3905905514,"id_str":"3905905514","indices":[3,12]},{"screen_name":"DailyCaller","name":"The Daily Caller","id":39308549,"id_str":"39308549","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007665"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910124033,"id_str":"663727774910124033","text":"RT @haifa_chayah: Nottttttt down for school","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627452619,"id_str":"1627452619","name":"mimi","screen_name":"mireyagarcia331","location":null,"url":null,"description":"Jonathan Ramos \u2764\ufe0f","protected":false,"verified":false,"followers_count":300,"friends_count":236,"listed_count":0,"favourites_count":1124,"statuses_count":8562,"created_at":"Sun Jul 28 08:44:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660239818530492416\/LAvwoaHz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660239818530492416\/LAvwoaHz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1627452619\/1446698563","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:08:40 +0000 2015","id":663614161562144769,"id_str":"663614161562144769","text":"Nottttttt down for school","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210045388,"id_str":"2210045388","name":"Haifa Styles","screen_name":"haifa_chayah","location":"Disneyland\u2728","url":null,"description":"\u2661Rollin'with the homies\u2661","protected":false,"verified":false,"followers_count":290,"friends_count":353,"listed_count":1,"favourites_count":7657,"statuses_count":8488,"created_at":"Sat Nov 23 05:24:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658418094780452864\/29VkiV_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658418094780452864\/29VkiV_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210045388\/1446581648","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haifa_chayah","name":"Haifa Styles","id":2210045388,"id_str":"2210045388","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774893346816,"id_str":"663727774893346816","text":"\u307f\u3063\u305a\uff08\u7565\uff09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32835442,"id_str":"32835442","name":"\u3072\u3053\u307e\u308b","screen_name":"hikomaru9","location":null,"url":null,"description":"\u3072\u3053\u307e\u308b\u3055\u3093\u7528\u30a2\u30ab\u30a6\u30f3\u30c8","protected":false,"verified":false,"followers_count":308,"friends_count":689,"listed_count":14,"favourites_count":4716,"statuses_count":58620,"created_at":"Sat Apr 18 08:48:33 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/38080911\/rainbow2nd7851.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/38080911\/rainbow2nd7851.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1691279796\/image_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1691279796\/image_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32835442\/1442249109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007657"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918557697,"id_str":"663727774918557697","text":"RT @Generasi1990an: antara lukisan lukisan wajib. :| https:\/\/t.co\/Y3L3oYrs7U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":527158343,"id_str":"527158343","name":"\u2601\ufe0fAfifah Syahirah","screen_name":"afifahxsyahirah","location":"Kuala Lipis, Pahang","url":null,"description":"ipahforlife","protected":false,"verified":false,"followers_count":465,"friends_count":274,"listed_count":1,"favourites_count":812,"statuses_count":24499,"created_at":"Sat Mar 17 06:20:26 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"81F7F1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000159762484\/TD88YPpu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000159762484\/TD88YPpu.png","profile_background_tile":true,"profile_link_color":"9E7BFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663582398106341376\/VRRxy4Sx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663582398106341376\/VRRxy4Sx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527158343\/1446644099","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 06:42:17 +0000 2015","id":662882748210655232,"id_str":"662882748210655232","text":"antara lukisan lukisan wajib. :| https:\/\/t.co\/Y3L3oYrs7U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2431649772,"id_str":"2431649772","name":"Anak 90 an.","screen_name":"Generasi1990an","location":null,"url":null,"description":"Mengimbau kembali nostalgia2 90 an dahulu kala. mohon imbau seikhlas hati.","protected":false,"verified":false,"followers_count":11500,"friends_count":0,"listed_count":5,"favourites_count":0,"statuses_count":93,"created_at":"Mon Apr 07 07:30:02 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453081752035000320\/rtxAqqGM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453081752035000320\/rtxAqqGM.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553469237130313728\/ZT65wdcB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553469237130313728\/ZT65wdcB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2431649772\/1421656725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":974,"favorite_count":293,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662882746495205376,"id_str":"662882746495205376","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","url":"https:\/\/t.co\/Y3L3oYrs7U","display_url":"pic.twitter.com\/Y3L3oYrs7U","expanded_url":"http:\/\/twitter.com\/Generasi1990an\/status\/662882748210655232\/photo\/1","type":"photo","sizes":{"small":{"w":297,"h":233,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":297,"h":233,"resize":"fit"},"large":{"w":297,"h":233,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662882746495205376,"id_str":"662882746495205376","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","url":"https:\/\/t.co\/Y3L3oYrs7U","display_url":"pic.twitter.com\/Y3L3oYrs7U","expanded_url":"http:\/\/twitter.com\/Generasi1990an\/status\/662882748210655232\/photo\/1","type":"photo","sizes":{"small":{"w":297,"h":233,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":297,"h":233,"resize":"fit"},"large":{"w":297,"h":233,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Generasi1990an","name":"Anak 90 an.","id":2431649772,"id_str":"2431649772","indices":[3,18]}],"symbols":[],"media":[{"id":662882746495205376,"id_str":"662882746495205376","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","url":"https:\/\/t.co\/Y3L3oYrs7U","display_url":"pic.twitter.com\/Y3L3oYrs7U","expanded_url":"http:\/\/twitter.com\/Generasi1990an\/status\/662882748210655232\/photo\/1","type":"photo","sizes":{"small":{"w":297,"h":233,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":297,"h":233,"resize":"fit"},"large":{"w":297,"h":233,"resize":"fit"}},"source_status_id":662882748210655232,"source_status_id_str":"662882748210655232","source_user_id":2431649772,"source_user_id_str":"2431649772"}]},"extended_entities":{"media":[{"id":662882746495205376,"id_str":"662882746495205376","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMIWIiVAAAgHUB.jpg","url":"https:\/\/t.co\/Y3L3oYrs7U","display_url":"pic.twitter.com\/Y3L3oYrs7U","expanded_url":"http:\/\/twitter.com\/Generasi1990an\/status\/662882748210655232\/photo\/1","type":"photo","sizes":{"small":{"w":297,"h":233,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":297,"h":233,"resize":"fit"},"large":{"w":297,"h":233,"resize":"fit"}},"source_status_id":662882748210655232,"source_status_id_str":"662882748210655232","source_user_id":2431649772,"source_user_id_str":"2431649772"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774927032321,"id_str":"663727774927032321","text":"Epcot was everything yesterday. I had a fucking blast. Lemme go back asap.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36298033,"id_str":"36298033","name":"C. Minaj","screen_name":"ChevasZolanski","location":"Tampa, FL ","url":"http:\/\/goo.gl\/M0ylPg","description":"The Queen of Rap @NICKIMINAJ & @HobbieStuart follows | Follow My Example Bitch, IE. | Prince","protected":false,"verified":false,"followers_count":1404,"friends_count":1023,"listed_count":15,"favourites_count":19068,"statuses_count":35801,"created_at":"Wed Apr 29 05:40:57 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524784116051353601\/zLVzz6Ap.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524784116051353601\/zLVzz6Ap.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FC1919","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648028451971198976\/Kx4gj30-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648028451971198976\/Kx4gj30-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36298033\/1445666859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007665"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910144512,"id_str":"663727774910144512","text":"RT @Masood_RulezB: Match Found \nHandsome Suriya \n#MemuAudioLaunch https:\/\/t.co\/7Bht0G0g9C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232061196,"id_str":"232061196","name":"Jaisuryan","screen_name":"JAISURYAN","location":"Coimbatore ","url":null,"description":"I am hardcore SuperStar Rajnikanth and Suriya fan..I have a passion for photography too.. enjoying the present moment of life.. :) My review page https:\/\/m.face","protected":false,"verified":false,"followers_count":420,"friends_count":1049,"listed_count":13,"favourites_count":30220,"statuses_count":11614,"created_at":"Thu Dec 30 04:40:05 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662845822925565952\/t3Ng9TVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662845822925565952\/t3Ng9TVB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232061196\/1447080006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:32 +0000 2015","id":663722090520969217,"id_str":"663722090520969217","text":"Match Found \nHandsome Suriya \n#MemuAudioLaunch https:\/\/t.co\/7Bht0G0g9C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890940708,"id_str":"890940708","name":"Suriya Fan","screen_name":"Masood_RulezB","location":"India","url":null,"description":"Suriya Veriyan | Eagerly Waiting For #Haiku #24 #Singam3","protected":false,"verified":false,"followers_count":1655,"friends_count":992,"listed_count":11,"favourites_count":26045,"statuses_count":35397,"created_at":"Fri Oct 19 13:04:09 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2D8A6B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/690678275\/6e078e102d6d6307919f04d33817b03d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/690678275\/6e078e102d6d6307919f04d33817b03d.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656057580536532993\/6Cd4Gqli_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656057580536532993\/6Cd4Gqli_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890940708\/1436678492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":12,"entities":{"hashtags":[{"text":"MemuAudioLaunch","indices":[30,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722075895410692,"id_str":"663722075895410692","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","url":"https:\/\/t.co\/7Bht0G0g9C","display_url":"pic.twitter.com\/7Bht0G0g9C","expanded_url":"http:\/\/twitter.com\/Masood_RulezB\/status\/663722090520969217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":326,"resize":"fit"},"large":{"w":719,"h":690,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722075895410692,"id_str":"663722075895410692","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","url":"https:\/\/t.co\/7Bht0G0g9C","display_url":"pic.twitter.com\/7Bht0G0g9C","expanded_url":"http:\/\/twitter.com\/Masood_RulezB\/status\/663722090520969217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":326,"resize":"fit"},"large":{"w":719,"h":690,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MemuAudioLaunch","indices":[49,65]}],"urls":[],"user_mentions":[{"screen_name":"Masood_RulezB","name":"Suriya Fan","id":890940708,"id_str":"890940708","indices":[3,17]}],"symbols":[],"media":[{"id":663722075895410692,"id_str":"663722075895410692","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","url":"https:\/\/t.co\/7Bht0G0g9C","display_url":"pic.twitter.com\/7Bht0G0g9C","expanded_url":"http:\/\/twitter.com\/Masood_RulezB\/status\/663722090520969217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":326,"resize":"fit"},"large":{"w":719,"h":690,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"}},"source_status_id":663722090520969217,"source_status_id_str":"663722090520969217","source_user_id":890940708,"source_user_id_str":"890940708"}]},"extended_entities":{"media":[{"id":663722075895410692,"id_str":"663722075895410692","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDtiNUsAQuHF7.jpg","url":"https:\/\/t.co\/7Bht0G0g9C","display_url":"pic.twitter.com\/7Bht0G0g9C","expanded_url":"http:\/\/twitter.com\/Masood_RulezB\/status\/663722090520969217\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":326,"resize":"fit"},"large":{"w":719,"h":690,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"}},"source_status_id":663722090520969217,"source_status_id_str":"663722090520969217","source_user_id":890940708,"source_user_id_str":"890940708"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918508545,"id_str":"663727774918508545","text":"RT @Lermontovna87: \u7a81\u7136\u4eba\u9593\u304c\u30be\u30f3\u30d3\u5316\uff01\uff1f\n\u3044\u3064\u3082\u3068\u5909\u308f\u3089\u306c\u65e5\u5e38\u304b\u3089\u3044\u304d\u306a\u308a\u306e\u975e\u65e5\u5e38\u3078\u30fb\u30fb\u30fb\n\n\u3053\u308c\u21d2https:\/\/t.co\/RBdzXMhzoy\n\n\u6b7b\u3068\u6050\u6016\u306e\u72ed\u9593\u3067\u3001\u4eca\u65e5\u3082\u3042\u306a\u305f\u306f\u30be\u30f3\u30d3\u3068\u6226\u3046 https:\/\/t.co\/pI5LbbqQvO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e516sbr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3398805065,"id_str":"3398805065","name":"\u53c2\u8003\u306b\u3057\u305f\u3044\u2661\u30a6\u30a7\u30c7\u30a3\u30f3\u30b0\u30c9\u30ec\u30b9","screen_name":"wedding_good","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":147,"friends_count":1929,"listed_count":1,"favourites_count":0,"statuses_count":2108,"created_at":"Sat Aug 01 14:57:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635720123463036928\/92pBrqEV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635720123463036928\/92pBrqEV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727759236009984,"id_str":"663727759236009984","text":"\u7a81\u7136\u4eba\u9593\u304c\u30be\u30f3\u30d3\u5316\uff01\uff1f\n\u3044\u3064\u3082\u3068\u5909\u308f\u3089\u306c\u65e5\u5e38\u304b\u3089\u3044\u304d\u306a\u308a\u306e\u975e\u65e5\u5e38\u3078\u30fb\u30fb\u30fb\n\n\u3053\u308c\u21d2https:\/\/t.co\/RBdzXMhzoy\n\n\u6b7b\u3068\u6050\u6016\u306e\u72ed\u9593\u3067\u3001\u4eca\u65e5\u3082\u3042\u306a\u305f\u306f\u30be\u30f3\u30d3\u3068\u6226\u3046 https:\/\/t.co\/pI5LbbqQvO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e582sbr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399381982,"id_str":"3399381982","name":"\u4f55\u3053\u306e\u753b\u50cf\uff1f","screen_name":"Lermontovna87","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":1893,"listed_count":0,"favourites_count":0,"statuses_count":1485,"created_at":"Sat Aug 01 22:17:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646181582261227520\/S49fAwLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646181582261227520\/S49fAwLC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399381982\/1442896658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RBdzXMhzoy","expanded_url":"http:\/\/skkyzb.com\/cz\/bn82u","display_url":"skkyzb.com\/cz\/bn82u","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RBdzXMhzoy","expanded_url":"http:\/\/skkyzb.com\/cz\/bn82u","display_url":"skkyzb.com\/cz\/bn82u","indices":[60,83]}],"user_mentions":[{"screen_name":"Lermontovna87","name":"\u4f55\u3053\u306e\u753b\u50cf\uff1f","id":3399381982,"id_str":"3399381982","indices":[3,17]}],"symbols":[],"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663727759236009984,"source_status_id_str":"663727759236009984","source_user_id":3399381982,"source_user_id_str":"3399381982"}]},"extended_entities":{"media":[{"id":663727759160508417,"id_str":"663727759160508417","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4WBUAAEKD-J.jpg","url":"https:\/\/t.co\/pI5LbbqQvO","display_url":"pic.twitter.com\/pI5LbbqQvO","expanded_url":"http:\/\/twitter.com\/Lermontovna87\/status\/663727759236009984\/photo\/1","type":"photo","sizes":{"large":{"w":704,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663727759236009984,"source_status_id_str":"663727759236009984","source_user_id":3399381982,"source_user_id_str":"3399381982"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774893404160,"id_str":"663727774893404160","text":"RT @aichan__1104: @Dreamnooo_1104 \u3042\u3089\u30b9\u30c6\u30ad\uff01\u79c1\u3082\u6628\u65e5\u8cb7\u3063\u3066\u3082\u3089\u3063\u305f\u306e\uff01\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2741901901,"id_str":"2741901901","name":"\u7389\u68ee\u5922\u4e43 \u2001\u2001\u141b\u270c\ufe0e\ufe0e","screen_name":"Dreamnooo_1104","location":"\u68ee\u5ddd\u8475","url":"https:\/\/instagram.com\/p\/6Jc7BvyH8d\/","description":"\u958b\u5317 \u25b7\u5143\u4e94\u4e2d \u25b7NM115HR \u30c0\uff9d\uff7d\u90e8 \u30a4\uff9d\uff80\uff70\uff71\uff78\uff84\u90e8 \u68ee\u5ddd\u8475 \u7389\u68ee\u88d5\u592a \u7389\u4e95\u8a69\u7e54 \u3042\u3044\u3061\u3087\u3093 \u53f6\u4f73 \u7406\u5e06 \u590f\u7a42 #\u9ec4\u8272","protected":false,"verified":false,"followers_count":550,"friends_count":400,"listed_count":6,"favourites_count":6828,"statuses_count":12370,"created_at":"Mon Aug 18 11:06:16 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F0F00E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663370883726114817\/jCGHAY10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663370883726114817\/jCGHAY10_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2741901901\/1447001625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:12:25 +0000 2015","id":663373516738195456,"id_str":"663373516738195456","text":"@Dreamnooo_1104 \u3042\u3089\u30b9\u30c6\u30ad\uff01\u79c1\u3082\u6628\u65e5\u8cb7\u3063\u3066\u3082\u3089\u3063\u305f\u306e\uff01\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663360126728802304,"in_reply_to_status_id_str":"663360126728802304","in_reply_to_user_id":2741901901,"in_reply_to_user_id_str":"2741901901","in_reply_to_screen_name":"Dreamnooo_1104","user":{"id":3249635281,"id_str":"3249635281","name":"\u677e\u5ddd \u3042\u3044","screen_name":"aichan__1104","location":"tokyo","url":null,"description":"1998.11.4\/16\u6b73 jk2\/170cm\/ \u2764\ufe0e\u30c1\u30e7\u30ad\u30acjk\u30ac\u30fc\u30eb\u30ba3\u671f\u8ee2\u5165\u751f\u2764\ufe0e","protected":false,"verified":false,"followers_count":655,"friends_count":8,"listed_count":5,"favourites_count":733,"statuses_count":367,"created_at":"Fri Jun 19 07:51:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660760616425013248\/rZSWhGtX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660760616425013248\/rZSWhGtX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3249635281\/1441676618","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dreamnooo_1104","name":"\u7389\u68ee\u5922\u4e43 \u2001\u2001\u141b\u270c\ufe0e\ufe0e","id":2741901901,"id_str":"2741901901","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aichan__1104","name":"\u677e\u5ddd \u3042\u3044","id":3249635281,"id_str":"3249635281","indices":[3,16]},{"screen_name":"Dreamnooo_1104","name":"\u7389\u68ee\u5922\u4e43 \u2001\u2001\u141b\u270c\ufe0e\ufe0e","id":2741901901,"id_str":"2741901901","indices":[18,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007657"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774931140608,"id_str":"663727774931140608","text":"RT @mam0_0fficialt: \u5168\u56fd\u30ef\u30f3\u30de\u30f3\u30c4\u30a2\u30fc \u9752\u6625\u306e\u95c7 \u5e83\u5cf6\u516c\u6f14\u3002\u5e83\u5cf6\u30af\u30e9\u30d6\u30af\u30a2\u30c8\u30ed\u6700\u9ad8\u3067\u3057\u305f\u3002\u307e\u3055\u304b\u30b9\u30c6\u30fc\u30b8\u3067\u30d5\u30e9\u30d5\u30fc\u30d7\u3084\u3089\u3055\u308c\u308b\u4e8b\u306b\u306a\u308b\u3068\u306f\u601d\u308f\u306a\u304b\u3063\u305f\u3088\u3002\u30a2\u30eb\u30d0\u30e0\u306e\u66f2\u304c\u3069\u3093\u3069\u3093\u9032\u5316\u3057\u3066\u3044\u3063\u3066\u308b\u306e\u304c\u76ee\u306b\u898b\u3048\u3066\u5b09\u3057\u3044\u9650\u308a\u3067\u3059\u3002\u307e\u305f\u6765\u308b\u3088\u5e83\u5cf6\u3002\u3070\u3044\u3061\u3083 https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320166850,"id_str":"2320166850","name":"\u3086\u307f","screen_name":"yumixxxparu","location":"\u3061\u3083\u3093\u307d\u3093\u770c","url":null,"description":"\u6625\u304f\u3093\u3060\u3051\u306e\u30e1\u30f3\u30d8\u30e9\u5973\u5b50\u306a\u306e\u3060\u3088\\( *\u00b4\u2022\u03c9\u2022`*)\/\u2661*\u306d\u304f\u3059\u3068\u261e\u261e\u261e\u261e\u261e\u261e1123TDL\u821e\u6d5c\u30a2\u30f3\u30d5\u30a3\u30b7\u30a2\u30bf\u30fc","protected":false,"verified":false,"followers_count":90,"friends_count":107,"listed_count":1,"favourites_count":1398,"statuses_count":4203,"created_at":"Fri Jan 31 03:41:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656340762972413952\/FyTmHqh5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656340762972413952\/FyTmHqh5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320166850\/1444813747","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:37:24 +0000 2015","id":663711991106658306,"id_str":"663711991106658306","text":"\u5168\u56fd\u30ef\u30f3\u30de\u30f3\u30c4\u30a2\u30fc \u9752\u6625\u306e\u95c7 \u5e83\u5cf6\u516c\u6f14\u3002\u5e83\u5cf6\u30af\u30e9\u30d6\u30af\u30a2\u30c8\u30ed\u6700\u9ad8\u3067\u3057\u305f\u3002\u307e\u3055\u304b\u30b9\u30c6\u30fc\u30b8\u3067\u30d5\u30e9\u30d5\u30fc\u30d7\u3084\u3089\u3055\u308c\u308b\u4e8b\u306b\u306a\u308b\u3068\u306f\u601d\u308f\u306a\u304b\u3063\u305f\u3088\u3002\u30a2\u30eb\u30d0\u30e0\u306e\u66f2\u304c\u3069\u3093\u3069\u3093\u9032\u5316\u3057\u3066\u3044\u3063\u3066\u308b\u306e\u304c\u76ee\u306b\u898b\u3048\u3066\u5b09\u3057\u3044\u9650\u308a\u3067\u3059\u3002\u307e\u305f\u6765\u308b\u3088\u5e83\u5cf6\u3002\u3070\u3044\u3061\u3083 https:\/\/t.co\/EC7e2SC3Mi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035350352,"id_str":"4035350352","name":"\u30de\u30e2","screen_name":"mam0_0fficialt","location":"\u6d45\u8349","url":"http:\/\/www.r-shitei.net","description":"R\u6307\u5b9a\u30dc\u30fc\u30ab\u30eb\u30de\u30e2\u3067\u3059\u3002 \u671f\u9593\u9650\u5b9a\u306e\u3064\u3082\u308a\u3067\u59cb\u3081\u307e\u3057\u305f\u3002 \u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":19578,"friends_count":5,"listed_count":188,"favourites_count":0,"statuses_count":14,"created_at":"Tue Oct 27 12:34:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659030577861951488\/6G70KwBo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659030577861951488\/6G70KwBo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035350352\/1445949443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":969,"favorite_count":2265,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663711983154233345,"id_str":"663711983154233345","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711983154233345,"id_str":"663711983154233345","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}}},{"id":663711983192006657,"id_str":"663711983192006657","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD9UYAEpRhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD9UYAEpRhD.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}}},{"id":663711983179403266,"id_str":"663711983179403266","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD6UEAImNN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD6UEAImNN9.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":478,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"medium":{"w":478,"h":486,"resize":"fit"}}},{"id":663711983175208960,"id_str":"663711983175208960","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD5UEAA2MF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD5UEAA2MF8.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":805,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mam0_0fficialt","name":"\u30de\u30e2","id":4035350352,"id_str":"4035350352","indices":[3,18]}],"symbols":[],"media":[{"id":663711983154233345,"id_str":"663711983154233345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}},"source_status_id":663711991106658306,"source_status_id_str":"663711991106658306","source_user_id":4035350352,"source_user_id_str":"4035350352"}]},"extended_entities":{"media":[{"id":663711983154233345,"id_str":"663711983154233345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD0UAAEDmuh.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}},"source_status_id":663711991106658306,"source_status_id_str":"663711991106658306","source_user_id":4035350352,"source_user_id_str":"4035350352"},{"id":663711983192006657,"id_str":"663711983192006657","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD9UYAEpRhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD9UYAEpRhD.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}},"source_status_id":663711991106658306,"source_status_id_str":"663711991106658306","source_user_id":4035350352,"source_user_id_str":"4035350352"},{"id":663711983179403266,"id_str":"663711983179403266","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD6UEAImNN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD6UEAImNN9.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"large":{"w":478,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"medium":{"w":478,"h":486,"resize":"fit"}},"source_status_id":663711991106658306,"source_status_id_str":"663711991106658306","source_user_id":4035350352,"source_user_id_str":"4035350352"},{"id":663711983175208960,"id_str":"663711983175208960","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6iD5UEAA2MF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6iD5UEAA2MF8.jpg","url":"https:\/\/t.co\/EC7e2SC3Mi","display_url":"pic.twitter.com\/EC7e2SC3Mi","expanded_url":"http:\/\/twitter.com\/mam0_0fficialt\/status\/663711991106658306\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":805,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"}},"source_status_id":663711991106658306,"source_status_id_str":"663711991106658306","source_user_id":4035350352,"source_user_id_str":"4035350352"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007666"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914379776,"id_str":"663727774914379776","text":"\u4eca\u304b\u3089\u9762\u767d\u3044\u3053\u3068\u3064\u3076\u304d\u307e\u30fc\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1188871278,"id_str":"1188871278","name":"\u5409\u6238 \u4f51\u5f25","screen_name":"yoshito28_","location":null,"url":null,"description":"instagram\u2192yooooshito28_","protected":false,"verified":false,"followers_count":481,"friends_count":435,"listed_count":2,"favourites_count":1251,"statuses_count":8065,"created_at":"Sun Feb 17 09:09:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608662027586830338\/7SUcQSMA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608662027586830338\/7SUcQSMA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1188871278\/1441552972","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897741824,"id_str":"663727774897741824","text":"\u1780\u1798\u17d2\u1796\u17bb\u1787\u17b6\u1785\u1784\u17cb\u178a\u17c4\u17c7\u179f\u17d2\u179a\u17b6\u1799\u1794\u1789\u17d2\u17a0\u17b6\u1796\u17d2\u179a\u17c6\u178a\u17c2\u1793\u178a\u17c4\u1799\u179f\u17d2\u1798\u17be\u179a\u1798\u17bb\u1781\u1782\u17d2\u1793\u17b6\u1787\u17b6\u1798\u17bd\u1799\u1794\u17d2\u179a\u1791\u17c1\u179f\u1787\u17b7\u178f\u1781\u17b6\u1784\u1796\u17b7\u179f\u17c1\u179f\u1782\u17ba\u179c\u17c0\u178f\u178e\u17b6\u1798\u179b\u17bb\u17c7\u178f\u17d2\u179a\u17b6\u1791\u17d0\u2026 https:\/\/t.co\/GtHERK8uoN","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2686998300,"id_str":"2686998300","name":"Tac thac","screen_name":"TacThac","location":"Siem Reap","url":"http:\/\/www.camldp.org","description":"I would like friendly with all of you.","protected":false,"verified":false,"followers_count":12,"friends_count":20,"listed_count":1,"favourites_count":1,"statuses_count":13032,"created_at":"Mon Jul 28 08:33:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493678022411575297\/_zb3fNCy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493678022411575297\/_zb3fNCy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2686998300\/1406537050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GtHERK8uoN","expanded_url":"http:\/\/fb.me\/7t12I7RnS","display_url":"fb.me\/7t12I7RnS","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"km","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774901800960,"id_str":"663727774901800960","text":"RT @dengekigirls: \u3010\u30ac\u30eb\u30b9\u30bf12\u6708\u53f711\/10\uff08\u706b\uff09\u767a\u58f2\u3011\u3055\u3089\u306b\u300c\u56db\u5b63\u5f7c\u6c0f\u300d\u30b7\u30ea\u30fc\u30ba\u30d5\u30a1\u30f3\u306b\u6717\u5831\u304c!!\u30006\u4eba\u306e\u5f7c\u6c0f\u305f\u3061\u3092\u8d85\u30ad\u30e5\u30fc\u30c8\u306a\u30df\u30cb\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\uff06\u30b9\u30c8\u30fc\u30ea\u30fc\u3067\u63cf\u304f\u300c\u307f\u306b\u304b\u308c\u3057\u300d\u306e\u9023\u8f09\u4f01\u753b\u304c\u30b9\u30bf\u30fc\u30c8\u266a\u3000\u3068\u3063\u3066\u3082\u304b\u308f\u3044\u30446\u4eba\u306e\u59ff\u3084\u3001\u610f\u6c17\u8fbc\u307f\uff08\uff1f\uff09\u30b3\u30e1\u30f3\u30c8\u3092\u304a\u898b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559080041,"id_str":"559080041","name":"\u6854\u6897","screen_name":"964mc34t050","location":null,"url":"http:\/\/twpf.jp\/964mc34t050","description":"\u732b\u3068\u4e59\u5973\u30b2\u30fc\u30e0\u304c\u597d\u304d\u306a\u793e\u4f1a\u4eba\uff01\u6210\u4eba\u6e08\u3002 \u30aa\u30c8\u30e1\u30a4\u30c8\/\u30a2\u30eb\u30ab\u30ca\/\u30ed\u30bc\/\u30cf\u30cb\u30d3\/\u30ea\u30b8\u30a7\/Vitamin\/pkmn\/\u30c4\u30ad\u30a6\u30bf\u3002etc. \u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\u3002","protected":false,"verified":false,"followers_count":75,"friends_count":141,"listed_count":4,"favourites_count":1333,"statuses_count":50244,"created_at":"Sat Apr 21 01:12:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662838419639283713\/XEWFnyIM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662838419639283713\/XEWFnyIM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559080041\/1421756882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:48:13 +0000 2015","id":663699614936141824,"id_str":"663699614936141824","text":"\u3010\u30ac\u30eb\u30b9\u30bf12\u6708\u53f711\/10\uff08\u706b\uff09\u767a\u58f2\u3011\u3055\u3089\u306b\u300c\u56db\u5b63\u5f7c\u6c0f\u300d\u30b7\u30ea\u30fc\u30ba\u30d5\u30a1\u30f3\u306b\u6717\u5831\u304c!!\u30006\u4eba\u306e\u5f7c\u6c0f\u305f\u3061\u3092\u8d85\u30ad\u30e5\u30fc\u30c8\u306a\u30df\u30cb\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\uff06\u30b9\u30c8\u30fc\u30ea\u30fc\u3067\u63cf\u304f\u300c\u307f\u306b\u304b\u308c\u3057\u300d\u306e\u9023\u8f09\u4f01\u753b\u304c\u30b9\u30bf\u30fc\u30c8\u266a\u3000\u3068\u3063\u3066\u3082\u304b\u308f\u3044\u30446\u4eba\u306e\u59ff\u3084\u3001\u610f\u6c17\u8fbc\u307f\uff08\uff1f\uff09\u30b3\u30e1\u30f3\u30c8\u3092\u304a\u898b\u9003\u3057\u306a\u304f\uff01\u3000#\u30ac\u30eb\u30b9\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110127294,"id_str":"110127294","name":"\u96fb\u6483Girl'sStyle","screen_name":"dengekigirls","location":"\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a","url":"http:\/\/dengekionline.com\/g-style\/","description":"\u3044\u3061\u3070\u3093\u2665\u3068\u304d\u3081\u304f\uff01\u4e59\u5973\u30b2\u30fc\u30e0\u60c5\u5831\u8a8c\u300c\u96fb\u6483Girl'sStyle\u300d\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u300c\u30d7\u30ea\u30f3\u30b9\u30fb\u30aa\u30d6\u30fb\u30b9\u30c8\u30e9\u30a4\u30c9\u300d\u304c\u8868\u7d19\u306e12\u6708\u53f7\u306f11\/10\uff08\u706b\uff09\u767a\u58f2\u2606 \u8a73\u3057\u3044\u5185\u5bb9\u306f\u96fb\u6483\u30ac\u30eb\u30b9\u30bf\u30aa\u30f3\u30e9\u30a4\u30f3\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u2192http:\/\/dengekionline.com\/g-style\/","protected":false,"verified":false,"followers_count":44507,"friends_count":35603,"listed_count":1156,"favourites_count":3,"statuses_count":9998,"created_at":"Sun Jan 31 12:43:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635487938\/sbvlt4kt9lsms3os1hol.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635487938\/sbvlt4kt9lsms3os1hol.png","profile_background_tile":true,"profile_link_color":"F235E5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7B9E9","profile_text_color":"D91F72","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663647071556120576\/qqloh5Yr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663647071556120576\/qqloh5Yr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110127294\/1399031042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":26,"entities":{"hashtags":[{"text":"\u30ac\u30eb\u30b9\u30bf","indices":[127,132]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30ac\u30eb\u30b9\u30bf","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"dengekigirls","name":"\u96fb\u6483Girl'sStyle","id":110127294,"id_str":"110127294","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007659"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774931136512,"id_str":"663727774931136512","text":"Bat bigla kang nag iba? Kasi ba may gusto ka na din iba??","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":491280119,"id_str":"491280119","name":"Chuchay","screen_name":"chasollano","location":null,"url":null,"description":"Queen Of Disaster","protected":false,"verified":false,"followers_count":108,"friends_count":80,"listed_count":0,"favourites_count":46,"statuses_count":681,"created_at":"Mon Feb 13 13:14:50 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616421954300440576\/e5vnI05c.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616421954300440576\/e5vnI05c.jpg","profile_background_tile":false,"profile_link_color":"BA3C6E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661952811953852416\/2VJVuCIs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661952811953852416\/2VJVuCIs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/491280119\/1446214596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080007666"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774926958592,"id_str":"663727774926958592","text":"\u30ed\u30f3\u30d1\u821e\u53f0\u7528\u306b\u30e2\u30ce\u30af\u30de\u3068\u30e2\u30ce\u30df\u306e\u304a\u3079\u3079\u306c\u3044\u306b\u4f5c\u3063\u3066\u3042\u3052\u305f\u3044\u2026\u3089\u30fc\u3076\u3089\u30fc\u3076\u30b7\u30e7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1860625645,"id_str":"1860625645","name":"\u3054\u3082\u30fc\u3058\u3083\u3059","screen_name":"gomotk","location":"\u307d\u3063\u307d\u3084\u304d","url":"http:\/\/pixiv.me\/beroperone","description":"\u6771\u5dfb\u3050\u308b\u3044\u30ac\u30c1\u30ea\u30d0\uff0f\u3059\u3051\u3079\u30a2\u30ab@gomo181\u3010http:\/\/twpf.jp\/gomotk\u3011","protected":false,"verified":false,"followers_count":1779,"friends_count":148,"listed_count":48,"favourites_count":5307,"statuses_count":16608,"created_at":"Fri Sep 13 13:21:46 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"D1CDD0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"420914","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663667247206920193\/Jw8NaTSL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663667247206920193\/Jw8NaTSL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1860625645\/1437267810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007665"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897696768,"id_str":"663727774897696768","text":"Gente falsa https:\/\/t.co\/GR4QyVQsGN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164673625,"id_str":"164673625","name":"empire_childrem","screen_name":"coy_leo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1603,"friends_count":647,"listed_count":3,"favourites_count":880,"statuses_count":11865,"created_at":"Fri Jul 09 13:17:22 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586669464910831616\/UsrQbDJr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586669464910831616\/UsrQbDJr.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658145706776076288\/d7ahMErk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658145706776076288\/d7ahMErk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164673625\/1443149321","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725288447188992,"quoted_status_id_str":"663725288447188992","quoted_status":{"created_at":"Mon Nov 09 14:30:14 +0000 2015","id":663725288447188992,"id_str":"663725288447188992","text":"To trocando por muita comida que eu gosto kkkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2998231588,"id_str":"2998231588","name":"AC PJL","screen_name":"Ruivaamanda1","location":"Coronel Fabriciano","url":null,"description":"Felipe Ata\u00edde Almeida \u2764","protected":false,"verified":false,"followers_count":300,"friends_count":207,"listed_count":0,"favourites_count":1360,"statuses_count":3864,"created_at":"Sun Jan 25 17:10:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656866138618507264\/kc9q3qL1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656866138618507264\/kc9q3qL1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998231588\/1442512505","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GR4QyVQsGN","expanded_url":"https:\/\/twitter.com\/Ruivaamanda1\/status\/663725288447188992","display_url":"twitter.com\/Ruivaamanda1\/s\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774931156992,"id_str":"663727774931156992","text":"\u65e5\u672c\u4eba\u306a\u306e\u306b\u65e5\u672c\u8a9e\u96e3\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":553458750,"id_str":"553458750","name":"you*@\u4f4e\u6d6e\u4e0a","screen_name":"YcasYou","location":"\u3055\u3055\u3044\u306a\u91cd\u306a\u308a\u304c\u5e78\u305b","url":null,"description":"\u4f55\u304b\u304d\u3063\u3068\u610f\u5473\u304c\u3042\u308b\u6642\u9593","protected":false,"verified":false,"followers_count":705,"friends_count":676,"listed_count":0,"favourites_count":227,"statuses_count":8567,"created_at":"Sat Apr 14 08:56:24 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521228247279747072\/eucmFrpT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521228247279747072\/eucmFrpT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553458750\/1347983704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007666"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918578176,"id_str":"663727774918578176","text":"@uw_tk127 @pinkspider1103 \n\u30af\u30ed\u3061\u3083\u3093\u6a2a\u30a2\u30ea\u3067\u7d76\u5bfe\u4f1a\u304a\u3046\u3001\u307b\u3093\u306a\u3089\u305d\u306e\u6a2a\u306b\u3088\u30fc\u3055\u3093\u3082\u304a\u308b\u3084\u308d\u306b\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727559109033984,"in_reply_to_status_id_str":"663727559109033984","in_reply_to_user_id":2941401601,"in_reply_to_user_id_str":"2941401601","in_reply_to_screen_name":"uw_tk127","user":{"id":2934298195,"id_str":"2934298195","name":"\u308a\u308a@SiM\u8d85\u7d76\u4f59\u97fb","screen_name":"lily_kami","location":"\u5175\u5eab\u770c\u306e\u5357\u306e\u65b9\u3001\u308f\u308a\u3068\u9759\u304b","url":null,"description":"NEXT LIVE\u21921209 Falilv \u5927\u962a ______________________\u30ad\u30e5\u30a6\u30bd\/SiM\/Fear, and Loathing in Las Vegas\/MWAM\/ROTTENGRAFFTY\/and more..\uff1f(\u4e94\u5341\u97f3\u9806) \u95a2\u897f\u4f4f\u307f\u306e\u793e\u4f1a\u4eba\uff13\u5e74\u76ee\u3002\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u30df\u30fc(\u0451)\uff01\uff01","protected":false,"verified":false,"followers_count":333,"friends_count":258,"listed_count":26,"favourites_count":2505,"statuses_count":17775,"created_at":"Thu Dec 18 03:53:37 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661927988070486016\/9WqXdNCR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661927988070486016\/9WqXdNCR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2934298195\/1446653471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uw_tk127","name":"\u30af\u30ed\uff3c\uff65\u03c9\u00b0\uff0f\u3088\u30fc\u3055\u3093.SiM\u4f59\u97fb","id":2941401601,"id_str":"2941401601","indices":[0,9]},{"screen_name":"pinkspider1103","name":"\u3088\u30fc\u3055\u3093@SiM\u6b66\u9053\u9928\uff06\u30af\u30ed\u4f59\u97fb","id":1039681363,"id_str":"1039681363","indices":[10,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914318336,"id_str":"663727774914318336","text":"\u0e2d\u0e48\u0e32\u0e19\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e41\u0e15\u0e48\u0e15\u0e2d\u0e1a\u0e04\u0e19\u0e2d\u0e37\u0e48\u0e19\u0e44\u0e14\u0e49.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946620922,"id_str":"2946620922","name":"\u0e01\u0e2d\u0e25\u0e4c\u0e1f\u0e08\u0e38\u0e14.","screen_name":"golfjoot13","location":null,"url":null,"description":"\u0e2b\u0e21\u0e39\u0e2d\u0e49\u0e27\u0e19","protected":false,"verified":false,"followers_count":218,"friends_count":136,"listed_count":0,"favourites_count":101,"statuses_count":5823,"created_at":"Sun Dec 28 17:20:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660457402005778434\/5ykOPuPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660457402005778434\/5ykOPuPm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946620922\/1446920527","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774905925632,"id_str":"663727774905925632","text":"RT @sholovearashi_y: \u521d\u6311\u6226\u266c\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u30671250RT\u76ee\u6307\u3057\u307e\u3059\u2669\u3074\u3063\u305f\u3057\u304a\u9858\u3044\u3057\u307e\u3059!\n#ARASHANS\u30b9\u30eb\u30fc\u7981\u6b62 \n#ARASHIANS\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#RT\u3057\u3066\u304f\u308c\u305fARASHIC\u30d5\u30a9\u30ed\u30fc\u3059\u308b\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3881210113,"id_str":"3881210113","name":"\u2661\u7fd4\u306f\u308b\u2661","screen_name":"sslove215125","location":"\u30d1\u30b9\u30ef\u30fc\u30c9\u5fd8\u308c\u305f\u306e\u3067\u4f5c\u308a\u5909\u3048\u307e\u3057\u305f\u3002","url":null,"description":"\u83ef\u306e99-00line \/ red\u3088\u308a\u306eAll\u62c5 Best\u25b7\u25b6\ufe0e\u25b7\u5c71\u30fb\u78c1\u77f3 \u6c17\u8efd\u306bFollow me\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\u2026 \u26a0\ufe0e\u30ea\u30c4\u30a4\u30fc\u30c8\u591a\u3081","protected":false,"verified":false,"followers_count":261,"friends_count":261,"listed_count":4,"favourites_count":713,"statuses_count":865,"created_at":"Tue Oct 13 13:48:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655601713743724545\/nMOdvuYT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655601713743724545\/nMOdvuYT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3881210113\/1445955358","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 20 13:28:39 +0000 2015","id":656462031445299200,"id_str":"656462031445299200","text":"\u521d\u6311\u6226\u266c\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u30671250RT\u76ee\u6307\u3057\u307e\u3059\u2669\u3074\u3063\u305f\u3057\u304a\u9858\u3044\u3057\u307e\u3059!\n#ARASHANS\u30b9\u30eb\u30fc\u7981\u6b62 \n#ARASHIANS\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#RT\u3057\u3066\u304f\u308c\u305fARASHIC\u30d5\u30a9\u30ed\u30fc\u3059\u308b\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/8gGjqqzhg3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315598658,"id_str":"3315598658","name":"\u3086\u304d\u3089\u3044\u2661*\u21dd\u6771\u4eac26\u65e5\u30b0\u30c3\u30ba\u53c2\u6226","screen_name":"sholovearashi_y","location":"\u5909\u614b\u3055\u3093\u3082\u7d14\u7c8b\u3055\u3093\u3082\u307f\u3093\u306a\u3046\u3047\u308b\u304b\u3080\u2191\u2191","url":null,"description":"Blast\u306e\u770c\u3067\u306e\u30fc\u3093\u3073\u308a\u30aa\u30bf\u5145\u3057\u3066\u308b\u9ad8\u6821\u2460\u30cd\u30f3\u30bb\u30a4\u246e\u30b5\u30a4\u2727*\u3002 ARASHIC\u25b7Sho Sakurai\u2727(`\uff65\u0417\uff65\u00b4)\u25c1\u30d5\u30a1\u30f3\u306b\u306a\u3063\u30669\u5e74\u76ee\\\u2661\/ \u541b\u3068\u50d5\u306e\u898b\u3066\u3044\u308b\u98a8\u666f0903\/Myg0923\u53c2\u6226\u6e08\u25b7\u25b7NEXT\u65e5\u672c\u9b42Tky1226\u51fa\u6ca1!\u4e00\u5fdc\u76f8\u65b9\u3044\u308b\u3051\u3069Twitter\u3084\u3063\u3066\u306a\u3044\u304a\\( \u02d9-\u02d9 )\/","protected":false,"verified":false,"followers_count":1153,"friends_count":1260,"listed_count":25,"favourites_count":2366,"statuses_count":3469,"created_at":"Sat Aug 15 03:44:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661284650774454272\/T87MnfTD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661284650774454272\/T87MnfTD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315598658\/1446633602","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":855,"favorite_count":131,"entities":{"hashtags":[{"text":"ARASHANS\u30b9\u30eb\u30fc\u7981\u6b62","indices":[37,51]},{"text":"ARASHIANS\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[53,69]},{"text":"RT\u3057\u3066\u304f\u308c\u305fARASHIC\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[71,92]},{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[93,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":656461938596036608,"id_str":"656461938596036608","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":656461938596036608,"id_str":"656461938596036608","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}},{"id":656461938654744576,"id_str":"656461938654744576","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7YUkAACr50.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7YUkAACr50.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":656461938721865732,"id_str":"656461938721865732","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7oUwAQmZ8T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7oUwAQmZ8T.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":685,"resize":"fit"},"medium":{"w":480,"h":685,"resize":"fit"}}},{"id":656461939153891328,"id_str":"656461939153891328","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p9PU8AA0c2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p9PU8AA0c2W.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":576,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ARASHANS\u30b9\u30eb\u30fc\u7981\u6b62","indices":[58,72]},{"text":"ARASHIANS\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[74,90]},{"text":"RT\u3057\u3066\u304f\u308c\u305fARASHIC\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[92,113]},{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[114,136]}],"urls":[],"user_mentions":[{"screen_name":"sholovearashi_y","name":"\u3086\u304d\u3089\u3044\u2661*\u21dd\u6771\u4eac26\u65e5\u30b0\u30c3\u30ba\u53c2\u6226","id":3315598658,"id_str":"3315598658","indices":[3,19]}],"symbols":[],"media":[{"id":656461938596036608,"id_str":"656461938596036608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}},"source_status_id":656462031445299200,"source_status_id_str":"656462031445299200","source_user_id":3315598658,"source_user_id_str":"3315598658"}]},"extended_entities":{"media":[{"id":656461938596036608,"id_str":"656461938596036608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7KUwAARqMM.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}},"source_status_id":656462031445299200,"source_status_id_str":"656462031445299200","source_user_id":3315598658,"source_user_id_str":"3315598658"},{"id":656461938654744576,"id_str":"656461938654744576","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7YUkAACr50.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7YUkAACr50.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":656462031445299200,"source_status_id_str":"656462031445299200","source_user_id":3315598658,"source_user_id_str":"3315598658"},{"id":656461938721865732,"id_str":"656461938721865732","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p7oUwAQmZ8T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p7oUwAQmZ8T.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":685,"resize":"fit"},"medium":{"w":480,"h":685,"resize":"fit"}},"source_status_id":656462031445299200,"source_status_id_str":"656462031445299200","source_user_id":3315598658,"source_user_id_str":"3315598658"},{"id":656461939153891328,"id_str":"656461939153891328","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRw4p9PU8AA0c2W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRw4p9PU8AA0c2W.jpg","url":"https:\/\/t.co\/8gGjqqzhg3","display_url":"pic.twitter.com\/8gGjqqzhg3","expanded_url":"http:\/\/twitter.com\/sholovearashi_y\/status\/656462031445299200\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":576,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":576,"resize":"fit"}},"source_status_id":656462031445299200,"source_status_id_str":"656462031445299200","source_user_id":3315598658,"source_user_id_str":"3315598658"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007660"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774922764288,"id_str":"663727774922764288","text":"@rebeccahower @SarahWydner @BruceWiegner 5683% down","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726842319384576,"in_reply_to_status_id_str":"663726842319384576","in_reply_to_user_id":21603028,"in_reply_to_user_id_str":"21603028","in_reply_to_screen_name":"rebeccahower","user":{"id":2811977437,"id_str":"2811977437","name":"Jordan\u2600\ufe0f","screen_name":"LlamasUpJordan","location":null,"url":null,"description":"~We can't help everyone, but everyone can help someone~ \/\/ #RiotSquad #Cliffer \u2022Sarah is my sister\u2022","protected":false,"verified":false,"followers_count":252,"friends_count":260,"listed_count":3,"favourites_count":34364,"statuses_count":18100,"created_at":"Mon Sep 15 21:06:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644960044337893377\/vZtNtEk0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644960044337893377\/vZtNtEk0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811977437\/1442605431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rebeccahower","name":"Rebecca Jean","id":21603028,"id_str":"21603028","indices":[0,13]},{"screen_name":"SarahWydner","name":"S\u2734E\u2734W","id":468480025,"id_str":"468480025","indices":[14,26]},{"screen_name":"BruceWiegner","name":"Bruce W.","id":20957187,"id_str":"20957187","indices":[27,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007664"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774926962688,"id_str":"663727774926962688","text":"Win the micro-moments with a digital marketing strategy based on usefulness. https:\/\/t.co\/UrqBf5FZfD","source":"\u003ca href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3431684188,"id_str":"3431684188","name":"Matt Jones","screen_name":"mjonesorlando1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":82,"listed_count":0,"favourites_count":1,"statuses_count":26,"created_at":"Wed Aug 19 15:32:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634025521500721153\/fyGE5uDU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634025521500721153\/fyGE5uDU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UrqBf5FZfD","expanded_url":"https:\/\/lnkd.in\/e8AEzu8","display_url":"lnkd.in\/e8AEzu8","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007665"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914473984,"id_str":"663727774914473984","text":"Quem me prometeu \u00e9 fiel pra cumprir \u261d\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1566812162,"id_str":"1566812162","name":"juju","screen_name":"limajuju1","location":null,"url":null,"description":"Ela manda,ela pode,ela \u00e9 quem faz ..","protected":false,"verified":false,"followers_count":532,"friends_count":308,"listed_count":0,"favourites_count":7401,"statuses_count":42494,"created_at":"Wed Jul 03 22:22:10 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456258187214061568\/AXBjol8V.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456258187214061568\/AXBjol8V.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656276222415118336\/ubnQpbSC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656276222415118336\/ubnQpbSC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1566812162\/1442196969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918537216,"id_str":"663727774918537216","text":"RT @eiffherz: \u0e2d\u0e32\u0e08\u0e32\u0e23\u0e22\u0e4c\u0e0a\u0e2d\u0e1a\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e23\u0e32\u0e40\u0e23\u0e35\u0e22\u0e19\u0e27\u0e34\u0e0a\u0e32\u0e0a\u0e31\u0e49\u0e19\u0e27\u0e34\u0e0a\u0e32\u0e40\u0e14\u0e35\u0e22\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313309093,"id_str":"3313309093","name":"-_-","screen_name":"FKanyakon","location":"\u0e2d\u0e33\u0e40\u0e20\u0e2d\u0e40\u0e21\u0e37\u0e2d\u0e07 \u0e08.\u0e41\u0e1e\u0e23\u0e48","url":null,"description":"\u0e1e\u0e37\u0e49 \u0e19 \u0e17\u0e35\u0e48 \u0e2a\u0e48 \u0e27 \u0e19\u0e15\u0e31 \u0e27 | \u0e17\u0e35\u0e48 \u0e23 \u0e30 \u0e1a \u0e32 \u0e22 |","protected":false,"verified":false,"followers_count":38,"friends_count":171,"listed_count":0,"favourites_count":113,"statuses_count":2649,"created_at":"Wed Aug 12 10:35:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662610679015211008\/pL6WO5n8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662610679015211008\/pL6WO5n8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313309093\/1446122185","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:48 +0000 2015","id":663717879733354497,"id_str":"663717879733354497","text":"\u0e2d\u0e32\u0e08\u0e32\u0e23\u0e22\u0e4c\u0e0a\u0e2d\u0e1a\u0e43\u0e2b\u0e49\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e23\u0e32\u0e40\u0e23\u0e35\u0e22\u0e19\u0e27\u0e34\u0e0a\u0e32\u0e0a\u0e31\u0e49\u0e19\u0e27\u0e34\u0e0a\u0e32\u0e40\u0e14\u0e35\u0e22\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390920711,"id_str":"390920711","name":"\u0e2a\u0e21\u0e17\u0e27\u0e22","screen_name":"eiffherz","location":null,"url":null,"description":"| \u0e01\u0e32\u0e23\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e21\u0e48\u0e04\u0e48\u0e2d\u0e22\u0e14\u0e35\u0e41\u0e16\u0e21\u0e22\u0e31\u0e07\u0e0a\u0e2d\u0e1a\u0e1e\u0e39\u0e14\u0e08\u0e32\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e2d\u0e35\u0e01 | \u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e40\u0e2e\u0e2e\u0e32 | \u0e0a\u0e2d\u0e1a\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32 | \u0e0a\u0e2d\u0e1a\u0e41\u0e21\u0e27 | \u0e41\u0e1f\u0e19\u0e19\u0e32\u0e07\u0e27\u0e31\u0e19\u0e17\u0e2d\u0e07 | 1997 | \u0e19\u0e34\u0e40\u0e17\u0e28\u0e23\u0e31\u0e07\u0e2a\u0e34\u0e15 | \u0e2d\u0e32\u0e17\u0e35\u0e27\u0e35 | instagram : eiffherz","protected":false,"verified":false,"followers_count":58088,"friends_count":185,"listed_count":18,"favourites_count":4315,"statuses_count":43497,"created_at":"Fri Oct 14 19:18:31 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663073881859604480\/GLYGvp8w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663073881859604480\/GLYGvp8w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390920711\/1440359608","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":225,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eiffherz","name":"\u0e2a\u0e21\u0e17\u0e27\u0e22","id":390920711,"id_str":"390920711","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774914449408,"id_str":"663727774914449408","text":"Do you know a child who needs to learn to focus & listen better? Try this AWESOME activity \u007bw\/FREE https:\/\/t.co\/QBbQbw9srF","source":"\u003ca href=\"http:\/\/pinterest.com\" rel=\"nofollow\"\u003ePinterest\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231924930,"id_str":"231924930","name":"Jacquie Fisher","screen_name":"KCEdventures","location":"Kansas City","url":"http:\/\/www.kcedventures.com\/blog","description":"Writer | Outdoor Enthusiast | Book geek | Mom | Nature #TMOM | Blogs at Edventures with Kids sharing Kids Activities, Family Travel & Fun Ways to Learn","protected":false,"verified":false,"followers_count":3243,"friends_count":2326,"listed_count":152,"favourites_count":385,"statuses_count":26661,"created_at":"Wed Dec 29 21:05:20 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"181F7A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/766153322\/f4d1996875802d21675ef8e6a66f315e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/766153322\/f4d1996875802d21675ef8e6a66f315e.jpeg","profile_background_tile":false,"profile_link_color":"101094","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0084B4","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000560834225\/895d250c1e527aad4eab350d605c8597_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000560834225\/895d250c1e527aad4eab350d605c8597_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231924930\/1411144627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QBbQbw9srF","expanded_url":"http:\/\/pinterest.com\/pin\/564709240755597840\/","display_url":"pinterest.com\/pin\/5647092407\u2026","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007662"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910324736,"id_str":"663727774910324736","text":"RT @CHEL_seeyaa: Statement of support and solidarity for current Mizzou students signed by 783 Black Mizzou Alumni. \u270a\ud83c\udffe\ud83d\udc2f https:\/\/t.co\/zB0jYo\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36658917,"id_str":"36658917","name":"Nic J.","screen_name":"nicj712","location":"Blacksburg, VA","url":"http:\/\/about.me\/nicole.j.johnson","description":"David & Alice Jean's oldest\/Higher ed culturalist\/doc candidate usin' (pop)culture to chop and screw it\/sprinkled with some 'Yonce\/on loc with a new jam","protected":false,"verified":false,"followers_count":264,"friends_count":717,"listed_count":23,"favourites_count":1732,"statuses_count":4914,"created_at":"Thu Apr 30 13:17:21 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551409567276752896\/9JAshPPe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551409567276752896\/9JAshPPe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36658917\/1420301261","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:28:58 +0000 2015","id":663709867434115072,"id_str":"663709867434115072","text":"Statement of support and solidarity for current Mizzou students signed by 783 Black Mizzou Alumni. \u270a\ud83c\udffe\ud83d\udc2f https:\/\/t.co\/zB0jYoj0h3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":280398214,"id_str":"280398214","name":"penny proud","screen_name":"CHEL_seeyaa","location":"texas forever like bun b ","url":"http:\/\/chelsealekera.tumblr.com\/","description":null,"protected":false,"verified":false,"followers_count":1013,"friends_count":959,"listed_count":33,"favourites_count":1302,"statuses_count":70296,"created_at":"Mon Apr 11 07:43:05 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DB1880","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065727975\/0b901b27dd06c33df15853d5fa0acfb2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065727975\/0b901b27dd06c33df15853d5fa0acfb2.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655528318473637888\/k8BBiXuQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655528318473637888\/k8BBiXuQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280398214\/1432868729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":136,"favorite_count":66,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709855518101504,"id_str":"663709855518101504","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":1024,"resize":"fit"},"medium":{"w":600,"h":777,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709855518101504,"id_str":"663709855518101504","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":1024,"resize":"fit"},"medium":{"w":600,"h":777,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}}},{"id":663709855505518592,"id_str":"663709855505518592","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNtVEAA5fi4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNtVEAA5fi4.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"large":{"w":785,"h":1024,"resize":"fit"},"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"}}},{"id":663709855513866244,"id_str":"663709855513866244","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNvUcAQGXnQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNvUcAQGXnQ.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"},"large":{"w":794,"h":1024,"resize":"fit"}}},{"id":663709855853580288,"id_str":"663709855853580288","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mPAUEAAA6Dx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mPAUEAAA6Dx.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"},"large":{"w":794,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CHEL_seeyaa","name":"penny proud","id":280398214,"id_str":"280398214","indices":[3,15]}],"symbols":[],"media":[{"id":663709855518101504,"id_str":"663709855518101504","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":1024,"resize":"fit"},"medium":{"w":600,"h":777,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663709867434115072,"source_status_id_str":"663709867434115072","source_user_id":280398214,"source_user_id_str":"280398214"}]},"extended_entities":{"media":[{"id":663709855518101504,"id_str":"663709855518101504","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNwVEAAX2x3.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":1024,"resize":"fit"},"medium":{"w":600,"h":777,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663709867434115072,"source_status_id_str":"663709867434115072","source_user_id":280398214,"source_user_id_str":"280398214"},{"id":663709855505518592,"id_str":"663709855505518592","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNtVEAA5fi4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNtVEAA5fi4.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"large":{"w":785,"h":1024,"resize":"fit"},"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"}},"source_status_id":663709867434115072,"source_status_id_str":"663709867434115072","source_user_id":280398214,"source_user_id_str":"280398214"},{"id":663709855513866244,"id_str":"663709855513866244","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mNvUcAQGXnQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mNvUcAQGXnQ.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"},"large":{"w":794,"h":1024,"resize":"fit"}},"source_status_id":663709867434115072,"source_status_id_str":"663709867434115072","source_user_id":280398214,"source_user_id_str":"280398214"},{"id":663709855853580288,"id_str":"663709855853580288","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4mPAUEAAA6Dx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4mPAUEAAA6Dx.jpg","url":"https:\/\/t.co\/zB0jYoj0h3","display_url":"pic.twitter.com\/zB0jYoj0h3","expanded_url":"http:\/\/twitter.com\/CHEL_seeyaa\/status\/663709867434115072\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":773,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":438,"resize":"fit"},"large":{"w":794,"h":1024,"resize":"fit"}},"source_status_id":663709867434115072,"source_status_id_str":"663709867434115072","source_user_id":280398214,"source_user_id_str":"280398214"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918660096,"id_str":"663727774918660096","text":"HELIOMARCDS DIVULGANDO AS MELHORES BANDAS E OS MELHORES EVENTOS WATTS 83-99966-0449 https:\/\/t.co\/4W3ycOOCUq","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294921510,"id_str":"294921510","name":"HELIOMARCDS ","screen_name":"heliomarCds","location":"PRINCESA ISABEL - PB","url":"http:\/\/www.heliomarcds.com.br","description":"Divulgador das Melhores Atra\u00e7\u00f5es do BrasiL....de Princesa IsabeL para o Mundo....","protected":false,"verified":false,"followers_count":857,"friends_count":2000,"listed_count":21,"favourites_count":4,"statuses_count":10480,"created_at":"Sun May 08 01:31:42 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"141411","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/669035093\/d1882bedef45099be3144c5c97b4af7d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/669035093\/d1882bedef45099be3144c5c97b4af7d.gif","profile_background_tile":true,"profile_link_color":"990A00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543135616087904256\/7baznrvx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543135616087904256\/7baznrvx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294921510\/1418328588","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4W3ycOOCUq","expanded_url":"https:\/\/instagram.com\/p\/93iT82iO5R\/","display_url":"instagram.com\/p\/93iT82iO5R\/","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080007663"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774922752000,"id_str":"663727774922752000","text":"\u666e\u901a\u306e\u5927\u5b66\u306f4\u5e74\u306b\u306a\u3063\u305f\u3089\u307b\u3068\u3093\u3069\u52c9\u5f37\u3057\u306a\u3044\u3067\u5c31\u8077\u6d3b\u52d5\u306a\u3093\u3066\u3084\u3063\u3071\u308a\u304a\u304b\u3057\u3044\u3088\u306a https:\/\/t.co\/7Q4QwLzBo4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140720695,"id_str":"140720695","name":"\u30c9\u30af\u30bf\u30fc\u77f3\u539f","screen_name":"dr_ishihara","location":"\u798f\u5cf6\u770c\u90e1\u5c71\u5e02","url":"http:\/\/ishiharashinkei.blog93.fc2.com\/","description":"\u65b0\u5e79\u7dda\u901a\u52e4\u3057\u306a\u304c\u3089\u5730\u57df\u533b\u7642\u3092\u3057\u3066\u3044\u308b\u8133\u795e\u7d4c\u5c02\u9580\u533b\u3002\u4ed5\u4e8b\uff1c\u30ec\u30c3\u30ba\u3068\u304a\u9152\uff1c\u5b50\u4f9b\u305f\u3061\u304c\u751f\u7532\u6590\u3002\u6bd2\u304c\u5f37\u3059\u304e\u305f\u3089\u5931\u793c\uff01\u6642\u3005\u9ad8\u7530\u7d14\u6b21\u3084\u30a6\u30fc\u30de\u30f3\u30ba\u6751\u672c\u306b\u3082\u5909\u8eab\u3057\u3066\u30a8\u30ed\u3084\u6bd2\u3092\u5410\u304d\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":313,"friends_count":100,"listed_count":25,"favourites_count":119,"statuses_count":27243,"created_at":"Thu May 06 06:49:47 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714502514\/307d2fe9b4d4c7fbc6c9c7e2418d4327.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714502514\/307d2fe9b4d4c7fbc6c9c7e2418d4327.jpeg","profile_background_tile":false,"profile_link_color":"979797","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/877645363\/Wonka01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/877645363\/Wonka01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140720695\/1426031373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663665341537488896,"quoted_status_id_str":"663665341537488896","quoted_status":{"created_at":"Mon Nov 09 10:32:02 +0000 2015","id":663665341537488896,"id_str":"663665341537488896","text":"\u7d4c\u56e3\u9023 \u63a1\u7528\u9762\u63a5\uff16\u6708\u306b\u524d\u5012\u3057\u65b9\u91dd\u8868\u660e https:\/\/t.co\/g0PebWoGf1 #nhk_news","source":"\u003ca href=\"http:\/\/www.nhk.or.jp\/\" rel=\"nofollow\"\u003eNHK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204245399,"id_str":"204245399","name":"NHK\u30cb\u30e5\u30fc\u30b9","screen_name":"nhk_news","location":"\u6771\u4eac\u90fd\u6e0b\u8c37\u533a\u795e\u53572-2-1","url":"http:\/\/nhk.jp\/news","description":"NHK\u30cb\u30e5\u30fc\u30b9\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u6700\u65b0\u306e\u30cb\u30e5\u30fc\u30b9\u309224\u6642\u9593\u4f11\u307f\u306a\u304f\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002 http:\/\/nhk.jp\/rules \u3092\u3054\u78ba\u8a8d\u3001\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002\u554f\u3044\u5408\u308f\u305b\u306f http:\/\/www.nhk.or.jp\/css\/","protected":false,"verified":true,"followers_count":1548228,"friends_count":14,"listed_count":51118,"favourites_count":0,"statuses_count":212765,"created_at":"Mon Oct 18 08:15:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583090243726811137\/LtaHJvtK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583090243726811137\/LtaHJvtK.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471463249481711616\/EDSBn8Vm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471463249481711616\/EDSBn8Vm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204245399\/1401946722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nhk_news","indices":[43,52]}],"urls":[{"url":"https:\/\/t.co\/g0PebWoGf1","expanded_url":"http:\/\/nhk.jp\/N4M84JwW","display_url":"nhk.jp\/N4M84JwW","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7Q4QwLzBo4","expanded_url":"https:\/\/twitter.com\/nhk_news\/status\/663665341537488896","display_url":"twitter.com\/nhk_news\/statu\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007664"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774897688576,"id_str":"663727774897688576","text":"\u0645\u0627 \u0628\u0642\u062f\u0631 \u0627\u0633\u062a\u062d\u0645\u0644 \u0628\u062f\u064a \u0641\u062d\u0644 \u062c\u0627\u062f \u064a\u0641\u0648\u062a \u0639\u0644\u0649 \u0627\u0644\u0634\u0627\u062a \u062a\u0628\u0639\u0649 \u0645\u0646 \u0647\u0648\u0646\nhttps:\/\/t.co\/4ateX21MQm","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004285881,"id_str":"3004285881","name":"\u0633\u0643\u0633 \u0628\u0646\u0627\u062a","screen_name":"3HMGH3","location":null,"url":"http:\/\/downloadz-movies.com","description":"\u0633\u0643\u0633 \u0628\u0646\u0627\u062a \u0646\u064a\u0643 \u0628\u0646\u0627\u062a \u0627\u0641\u0644\u0627\u0645 \u0633\u0643\u0633 \u0628\u0646\u0627\u062a","protected":false,"verified":false,"followers_count":2835,"friends_count":1978,"listed_count":2,"favourites_count":1,"statuses_count":27429,"created_at":"Thu Jan 29 21:03:46 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623253425724239872\/LXZ5rR2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623253425724239872\/LXZ5rR2K_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4ateX21MQm","expanded_url":"http:\/\/goo.gl\/mkk0cE","display_url":"goo.gl\/mkk0cE","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080007658"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774901735424,"id_str":"663727774901735424","text":"@mageyer I'm going to be trying this tonight. :) Thanks.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662354338593898496,"in_reply_to_status_id_str":"662354338593898496","in_reply_to_user_id":28838632,"in_reply_to_user_id_str":"28838632","in_reply_to_screen_name":"mageyer","user":{"id":24563363,"id_str":"24563363","name":"christopher","screen_name":"twistedxtian","location":"Winnipeg, Canada","url":"http:\/\/twistedchristian.ca\/about\/","description":"Husband, Father, Cyclist, Apprentice of Divinity, IT Professional, Cyclocross Racer, Bass Player, Vegetable Gardener, Twisted Christian.","protected":false,"verified":false,"followers_count":2098,"friends_count":1192,"listed_count":196,"favourites_count":948,"statuses_count":52416,"created_at":"Sun Mar 15 18:34:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477205896775217152\/8qBQmRoK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477205896775217152\/8qBQmRoK_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mageyer","name":"Marlena A. Geyer","id":28838632,"id_str":"28838632","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007659"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774910189568,"id_str":"663727774910189568","text":"@Neekura_Konomee \n\n\u3058\u3083\u3042\u3001\uff11\u679a\u8131\u304e\u307e\u3059\u304b\u2026(\u00b4>\u2200<\uff40)\u309d))\uff74\uff8d\uff8d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722495191592961,"in_reply_to_status_id_str":"663722495191592961","in_reply_to_user_id":3821450953,"in_reply_to_user_id_str":"3821450953","in_reply_to_screen_name":"Neekura_Konomee","user":{"id":2377448328,"id_str":"2377448328","name":"\u304b\u305a\u3084","screen_name":"kazzbasara","location":null,"url":null,"description":"\u57fc\u7389\u306e\u7247\u9685\u304b\u3089\uff65\uff65\uff65\uff65\uff65\uff08\u00b4-`\uff09.\uff61o(\u5984\u60f3\u4e2d\u2026\u2026)","protected":false,"verified":false,"followers_count":101,"friends_count":70,"listed_count":0,"favourites_count":4897,"statuses_count":5127,"created_at":"Fri Mar 07 17:47:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656505458182610944\/aecUarhK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656505458182610944\/aecUarhK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377448328\/1446012944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Neekura_Konomee","name":"\u65b0\u5009\u3053\u306e\u307f@12\/3\u30d0\u30f3\u30d3\u3063\u5a18\u30ca\u30a4\u30c8","id":3821450953,"id_str":"3821450953","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007661"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774893342720,"id_str":"663727774893342720","text":"@realmadrid1108 @EXILE_0826jsb \n\u4ffa\u3082\u5e74\u672b\u6df7\u305c\u3066\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721716976250880,"in_reply_to_status_id_str":"663721716976250880","in_reply_to_user_id":2278760004,"in_reply_to_user_id_str":"2278760004","in_reply_to_screen_name":"realmadrid1108","user":{"id":2941977703,"id_str":"2941977703","name":"\u6c60\u7530 \u54f2\u4e5f","screen_name":"tetsuya19980825","location":null,"url":null,"description":"\u9577\u4e18\u2192\u67cf\u9675 1\u306e5\u21922\u306e8\u26be\ufe0f","protected":false,"verified":false,"followers_count":182,"friends_count":181,"listed_count":0,"favourites_count":192,"statuses_count":187,"created_at":"Wed Dec 24 13:50:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632593819356102656\/nwY1-hWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632593819356102656\/nwY1-hWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2941977703\/1439657094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"realmadrid1108","name":"\u91ce\u6751 \u4f73\u529f","id":2278760004,"id_str":"2278760004","indices":[0,15]},{"screen_name":"EXILE_0826jsb","name":"\u3068 \u3089","id":3283576400,"id_str":"3283576400","indices":[16,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007657"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774906097664,"id_str":"663727774906097664","text":"@fakequad Her grill is 9\/10 shattered","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727386484203520,"in_reply_to_status_id_str":"663727386484203520","in_reply_to_user_id":42395419,"in_reply_to_user_id_str":"42395419","in_reply_to_screen_name":"fakequad","user":{"id":2330263125,"id_str":"2330263125","name":"\u9ed1 Bria Scott","screen_name":"BlackMythPhoto","location":"D\u00d8GT\u00d8WN","url":"http:\/\/blackmythphoto.tumblr.com","description":"UARTS | Photo + Film Major | Make Your Thoughts Happen | 10:09 [Growth]","protected":false,"verified":false,"followers_count":687,"friends_count":585,"listed_count":9,"favourites_count":7148,"statuses_count":12533,"created_at":"Fri Feb 07 15:11:04 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629811439486771200\/cMWLkMyL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629811439486771200\/cMWLkMyL.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663563057130524672\/5V8G97xU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663563057130524672\/5V8G97xU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2330263125\/1444797582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fakequad","name":".","id":42395419,"id_str":"42395419","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080007660"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774893539328,"id_str":"663727774893539328","text":"#ScioliNosMiente https:\/\/t.co\/6deh4Axb28","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":200553328,"id_str":"200553328","name":"#YoNoVotoAScioli","screen_name":"martinzmercedes","location":"argentina","url":"https:\/\/www.facebook.com\/laselectiva.martinz","description":"Si Cristina Kirchner, ve mi perfil ANTI-K Me calificaria como como un feroz opositor al Gobierno , Anda!!!!!!!!!!!!!!","protected":false,"verified":false,"followers_count":803,"friends_count":773,"listed_count":17,"favourites_count":602,"statuses_count":44484,"created_at":"Sat Oct 09 16:08:26 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657668711944474628\/aOtTYV9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657668711944474628\/aOtTYV9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200553328\/1415310754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ScioliNosMiente","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727773542973440,"id_str":"663727773542973440","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5LmXAAAG7Hk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5LmXAAAG7Hk.jpg","url":"https:\/\/t.co\/6deh4Axb28","display_url":"pic.twitter.com\/6deh4Axb28","expanded_url":"http:\/\/twitter.com\/martinzmercedes\/status\/663727774893539328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"large":{"w":620,"h":439,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727773542973440,"id_str":"663727773542973440","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5LmXAAAG7Hk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5LmXAAAG7Hk.jpg","url":"https:\/\/t.co\/6deh4Axb28","display_url":"pic.twitter.com\/6deh4Axb28","expanded_url":"http:\/\/twitter.com\/martinzmercedes\/status\/663727774893539328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"large":{"w":620,"h":439,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080007657"} +{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774926897152,"id_str":"663727774926897152","text":"RT @t8a3o1: \u3010\u98f2\u307f\u4f1a\u306e\u4e00\u676f\u76ee\u3011\n\n\u3057\u3046\u3001\u306b\u3087\u308b\u3001\u304b\u3044\u2192\u30d3\u30fc\u30eb\n\u30d9\u30af\u2192\u30ab\u30eb\u30a2\u30fc\u30df\u30eb\u30af\n\u30ae\u30e7\u30f3\u30b9\u2192\u6885\u9152\n\u30b8\u30e7\u30f3\u30c7\u2192\u30cf\u30a4\u30dc\u30fc\u30eb\n\u30bb\u30d5\u30f3\u2192\u30ab\u30eb\u30d4\u30b9\u30cf\u30a4\n\n\u30d9\u30af\u3068\u30bb\u30d5\u30f3\u306f\u30b8\u30e5\u30fc\u30b9\u307f\u305f\u3044\u306a\u9152\u98f2\u3093\u3067\u305f\u3089\u53ef\u611b\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1978711351,"id_str":"1978711351","name":"\u2661\uc0ac\ucfe0\ub77c\u2661","screen_name":"taosaku","location":null,"url":null,"description":"EXO\/Z.TAO\/95(96)line \u261eAichi Insta\u21d2SKR_0216","protected":false,"verified":false,"followers_count":171,"friends_count":158,"listed_count":1,"favourites_count":1306,"statuses_count":15636,"created_at":"Mon Oct 21 13:09:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597248838492028929\/H9MV_Fer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597248838492028929\/H9MV_Fer_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1978711351\/1446991392","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:11:33 +0000 2015","id":663705484008919040,"id_str":"663705484008919040","text":"\u3010\u98f2\u307f\u4f1a\u306e\u4e00\u676f\u76ee\u3011\n\n\u3057\u3046\u3001\u306b\u3087\u308b\u3001\u304b\u3044\u2192\u30d3\u30fc\u30eb\n\u30d9\u30af\u2192\u30ab\u30eb\u30a2\u30fc\u30df\u30eb\u30af\n\u30ae\u30e7\u30f3\u30b9\u2192\u6885\u9152\n\u30b8\u30e7\u30f3\u30c7\u2192\u30cf\u30a4\u30dc\u30fc\u30eb\n\u30bb\u30d5\u30f3\u2192\u30ab\u30eb\u30d4\u30b9\u30cf\u30a4\n\n\u30d9\u30af\u3068\u30bb\u30d5\u30f3\u306f\u30b8\u30e5\u30fc\u30b9\u307f\u305f\u3044\u306a\u9152\u98f2\u3093\u3067\u305f\u3089\u53ef\u611b\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2853244369,"id_str":"2853244369","name":"\u30b7\u30e5\u30f3","screen_name":"t8a3o1","location":"\u904e\u53bb\u306e\u5984\u60f3\u306f\u661f\u306e\u5f7c\u65b9","url":null,"description":"\u30ad\u30e9\u30ad\u30e9\u3057\u305f\u30a4\u30b1\u30e1\u30f3\u304c\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":1576,"friends_count":67,"listed_count":12,"favourites_count":242,"statuses_count":5498,"created_at":"Sun Oct 12 13:46:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637464218556432384\/h8IOheOM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637464218556432384\/h8IOheOM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853244369\/1413174130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":84,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"t8a3o1","name":"\u30b7\u30e5\u30f3","id":2853244369,"id_str":"2853244369","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080007665"} +{"delete":{"status":{"id":628502973920886784,"id_str":"628502973920886784","user_id":2569029500,"user_id_str":"2569029500"},"timestamp_ms":"1447080008243"}} +{"delete":{"status":{"id":663716009891790848,"id_str":"663716009891790848","user_id":447288204,"user_id_str":"447288204"},"timestamp_ms":"1447080008362"}} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112984576,"id_str":"663727779112984576","text":"RT @Corinthians: O t\u00edtulo est\u00e1 perto, mas tem torcedor que j\u00e1 levou um trof\u00e9u para casa! Temos o vencedor do #Desafio99Taxis @99Taxis\nhttps\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573885353,"id_str":"573885353","name":"Ana","screen_name":"mylovesccp","location":null,"url":null,"description":"Zica das Pizzas @corinthians \u2764","protected":false,"verified":false,"followers_count":1362,"friends_count":1813,"listed_count":4,"favourites_count":151,"statuses_count":22176,"created_at":"Mon May 07 19:05:08 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609858188658216961\/2moehE-p.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609858188658216961\/2moehE-p.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727556504502272\/HEip5VJc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727556504502272\/HEip5VJc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573885353\/1446227682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:13:42 +0000 2015","id":663358736547753986,"id_str":"663358736547753986","text":"O t\u00edtulo est\u00e1 perto, mas tem torcedor que j\u00e1 levou um trof\u00e9u para casa! Temos o vencedor do #Desafio99Taxis @99Taxis\nhttps:\/\/t.co\/Fqh1UG7PaY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44627459,"id_str":"44627459","name":"Corinthians","screen_name":"Corinthians","location":"S\u00e3o Paulo\/Brasil","url":"http:\/\/www.corinthians.com.br","description":"Twitter oficial do Sport Club Corinthians Paulista, atualizado pela equipe do http:\/\/Corinthians.com.br","protected":false,"verified":true,"followers_count":3770443,"friends_count":45,"listed_count":7414,"favourites_count":46,"statuses_count":21518,"created_at":"Thu Jun 04 14:29:30 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/484404581489573888\/dvHPurs1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/484404581489573888\/dvHPurs1.jpeg","profile_background_tile":false,"profile_link_color":"F0B41D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654119718320754689\/QA3po9CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654119718320754689\/QA3po9CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44627459\/1446292739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":393,"entities":{"hashtags":[{"text":"Desafio99Taxis","indices":[92,107]}],"urls":[{"url":"https:\/\/t.co\/Fqh1UG7PaY","expanded_url":"https:\/\/amp.twimg.com\/v\/952ec2ff-5003-480f-9294-e734a4cf9378","display_url":"amp.twimg.com\/v\/952ec2ff-500\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"99taxis","name":"99Taxis","id":538436683,"id_str":"538436683","indices":[108,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Desafio99Taxis","indices":[109,124]}],"urls":[{"url":"https:\/\/t.co\/Fqh1UG7PaY","expanded_url":"https:\/\/amp.twimg.com\/v\/952ec2ff-5003-480f-9294-e734a4cf9378","display_url":"amp.twimg.com\/v\/952ec2ff-500\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Corinthians","name":"Corinthians","id":44627459,"id_str":"44627459","indices":[3,15]},{"screen_name":"99taxis","name":"99Taxis","id":538436683,"id_str":"538436683","indices":[125,133]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779091992580,"id_str":"663727779091992580","text":"RT @sorrisidizain: COME FA HISTORY AD ESSERE SESTA NELLA CLASSIFICA DI ITUNES?\n\u00c8 USCITA POCO FA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294189238,"id_str":"3294189238","name":"les ;-;","screen_name":"xadorveluke","location":"still 5\/5","url":null,"description":"hi im alessia and i love luke hemmings more than everything","protected":false,"verified":false,"followers_count":2571,"friends_count":2666,"listed_count":1,"favourites_count":20326,"statuses_count":24166,"created_at":"Fri May 22 15:33:18 +0000 2015","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663073025525481472\/ae904XXG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663073025525481472\/ae904XXG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294189238\/1444745526","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 18:33:19 +0000 2015","id":662699297398497280,"id_str":"662699297398497280","text":"COME FA HISTORY AD ESSERE SESTA NELLA CLASSIFICA DI ITUNES?\n\u00c8 USCITA POCO FA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1183456039,"id_str":"1183456039","name":"ikram","screen_name":"sorrisidizain","location":"forever 5\/5","url":"https:\/\/twitter.com\/zaynmalik\/status\/139078939493675011","description":"Hey angel, do you know why I haven't a life? Bc I'm in one direction fandom.","protected":false,"verified":false,"followers_count":15271,"friends_count":13348,"listed_count":198,"favourites_count":22485,"statuses_count":77791,"created_at":"Fri Feb 15 18:40:09 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608259342052270080\/yt5Pbskh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608259342052270080\/yt5Pbskh.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663297145051721729\/ehor-wnu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663297145051721729\/ehor-wnu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1183456039\/1446977336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sorrisidizain","name":"ikram","id":1183456039,"id_str":"1183456039","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104563200,"id_str":"663727779104563200","text":"RT @Medical_Centers: \u062a\u0639\u0645\u0644 \u0627\u0644\u0644\u064a\u0627\u0642\u0629 \u0627\u0644\u0628\u062f\u0646\u064a\u0629 \u0639\u0644\u0649 \u0632\u064a\u0627\u062f\u0629 \u0645\u0639\u062f\u0644 \u0627\u0644\u0646\u0634\u0627\u0637 \u0648\u062a\u0631\u0641\u0639 \u0645\u0639\u062f\u0644\u0627\u062a \u0627\u0644\u0633\u064a\u0631\u0648\u062a\u0648\u0646\u064a\u0646 \u0628\u0627\u0644\u0645\u062e \u0648\u0627\u0644\u0630\u064a \u064a\u0632\u064a\u062f \u0645\u0646 \u0635\u0641\u0627\u0621 \u0627\u0644\u0630\u0647\u0646 \u0648\u064a\u0631\u0641\u0639 \u0645\u0646 \u0646\u0633\u0628\u0647 \u0627\u0644\u0630\u0643\u0627\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3247322755,"id_str":"3247322755","name":"\u0645\u0634\u0639\u0644","screen_name":"cooloneonly","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":225,"friends_count":873,"listed_count":1,"favourites_count":624,"statuses_count":5293,"created_at":"Tue Jun 16 23:10:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646232828523380736\/c7iet9sb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646232828523380736\/c7iet9sb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 08:35:15 +0000 2015","id":661824014319550464,"id_str":"661824014319550464","text":"\u062a\u0639\u0645\u0644 \u0627\u0644\u0644\u064a\u0627\u0642\u0629 \u0627\u0644\u0628\u062f\u0646\u064a\u0629 \u0639\u0644\u0649 \u0632\u064a\u0627\u062f\u0629 \u0645\u0639\u062f\u0644 \u0627\u0644\u0646\u0634\u0627\u0637 \u0648\u062a\u0631\u0641\u0639 \u0645\u0639\u062f\u0644\u0627\u062a \u0627\u0644\u0633\u064a\u0631\u0648\u062a\u0648\u0646\u064a\u0646 \u0628\u0627\u0644\u0645\u062e \u0648\u0627\u0644\u0630\u064a \u064a\u0632\u064a\u062f \u0645\u0646 \u0635\u0641\u0627\u0621 \u0627\u0644\u0630\u0647\u0646 \u0648\u064a\u0631\u0641\u0639 \u0645\u0646 \u0646\u0633\u0628\u0647 \u0627\u0644\u0630\u0643\u0627\u0621.\n#\u0635\u062d\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":845082194,"id_str":"845082194","name":"\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0637\u0628\u064a\u0629 \u0645\u0647\u0645\u0629","screen_name":"Medical_Centers","location":"\u0627\u0644\u0631\u064a\u0627\u0636","url":null,"description":"\u0627\u0642\u062f\u0645 \u0645\u0627 \u0627\u0633\u062a\u0637\u064a\u0639 \u0644\u0646\u0634\u0631 \u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0637\u0628\u064a\u0629 \u0648 \u0635\u062d\u0629 \u0645\u0641\u064a\u062f\u0629 \u0644\u0644\u062c\u0645\u064a\u0639 .. \u062f\u0639\u0648\u0627\u062a\u0643\u0645 \u0647\u064a \u0645\u0643\u0627\u0641\u0623\u062a\u064a \u060c \u0633\u0627\u0647\u0645 \u0645\u0639\u0646\u0627 \u0628\u0627\u0644\u0646\u0634\u0631 \u2764\ufe0fhttp:\/\/Instagram.com\/D_M3LOMAT","protected":false,"verified":false,"followers_count":151522,"friends_count":11,"listed_count":380,"favourites_count":1179,"statuses_count":1958,"created_at":"Tue Sep 25 07:51:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556997060465917952\/YnDubTEY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556997060465917952\/YnDubTEY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/845082194\/1378111976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":289,"favorite_count":101,"entities":{"hashtags":[{"text":"\u0635\u062d\u0629","indices":[121,125]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0635\u062d\u0629","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"Medical_Centers","name":"\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0637\u0628\u064a\u0629 \u0645\u0647\u0645\u0629","id":845082194,"id_str":"845082194","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117187072,"id_str":"663727779117187072","text":"@cliff_megan thanks pretty love you more \ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727266715860992,"in_reply_to_status_id_str":"663727266715860992","in_reply_to_user_id":620422764,"in_reply_to_user_id_str":"620422764","in_reply_to_screen_name":"cliff_megan","user":{"id":2735260419,"id_str":"2735260419","name":"Savannah Simpson","screen_name":"savannahrchs","location":null,"url":null,"description":"4\/25\/15 with my boy\u2661@blakestephens18","protected":false,"verified":false,"followers_count":450,"friends_count":407,"listed_count":0,"favourites_count":888,"statuses_count":773,"created_at":"Wed Aug 06 17:08:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658845067474575360\/KsJOHfKm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658845067474575360\/KsJOHfKm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2735260419\/1415720585","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cliff_megan","name":"Megan Cliff","id":620422764,"id_str":"620422764","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096215552,"id_str":"663727779096215552","text":"RT @ofiltro: Gest\u00e3o Alckmin muda m\u00e9todo de contagem e reduz n\u00famero de homic\u00eddios em S\u00e3o Paulo - https:\/\/t.co\/IzFi0Tzx1b https:\/\/t.co\/7jw3yK\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2344328377,"id_str":"2344328377","name":"marcio t verolesi","screen_name":"mtverolesi","location":"S\u00e3o Paulo","url":null,"description":"Rock\u00b4n Roll, Pizza e o Corinthians ......","protected":false,"verified":false,"followers_count":1420,"friends_count":1986,"listed_count":13,"favourites_count":365001,"statuses_count":67999,"created_at":"Sat Feb 15 00:45:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626451660865425408\/bGqG0gpT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626451660865425408\/bGqG0gpT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344328377\/1444570686","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:16 +0000 2015","id":663725549043490816,"id_str":"663725549043490816","text":"Gest\u00e3o Alckmin muda m\u00e9todo de contagem e reduz n\u00famero de homic\u00eddios em S\u00e3o Paulo - https:\/\/t.co\/IzFi0Tzx1b https:\/\/t.co\/7jw3yKvb6y","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70790571,"id_str":"70790571","name":"O filtro","screen_name":"ofiltro","location":"Brasil","url":"http:\/\/ofiltro.com.br","description":"Blog da revista \u00c9POCA. Equipe de \u00c9POCA seleciona e analisa as not\u00edcias mais relevantes do dia para voc\u00ea ficar bem informado.","protected":false,"verified":false,"followers_count":13558,"friends_count":99,"listed_count":238,"favourites_count":0,"statuses_count":3707,"created_at":"Tue Sep 01 21:26:09 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/381551218\/epoca_youtube_back.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/381551218\/epoca_youtube_back.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629003023944151042\/xOomacwv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629003023944151042\/xOomacwv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70790571\/1438801006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IzFi0Tzx1b","expanded_url":"http:\/\/glo.bo\/1WM1Lvd","display_url":"glo.bo\/1WM1Lvd","indices":[83,106]}],"user_mentions":[],"symbols":[],"media":[{"id":663725536091443200,"id_str":"663725536091443200","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","url":"https:\/\/t.co\/7jw3yKvb6y","display_url":"pic.twitter.com\/7jw3yKvb6y","expanded_url":"http:\/\/twitter.com\/ofiltro\/status\/663725549043490816\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725536091443200,"id_str":"663725536091443200","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","url":"https:\/\/t.co\/7jw3yKvb6y","display_url":"pic.twitter.com\/7jw3yKvb6y","expanded_url":"http:\/\/twitter.com\/ofiltro\/status\/663725549043490816\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IzFi0Tzx1b","expanded_url":"http:\/\/glo.bo\/1WM1Lvd","display_url":"glo.bo\/1WM1Lvd","indices":[96,119]}],"user_mentions":[{"screen_name":"ofiltro","name":"O filtro","id":70790571,"id_str":"70790571","indices":[3,11]}],"symbols":[],"media":[{"id":663725536091443200,"id_str":"663725536091443200","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","url":"https:\/\/t.co\/7jw3yKvb6y","display_url":"pic.twitter.com\/7jw3yKvb6y","expanded_url":"http:\/\/twitter.com\/ofiltro\/status\/663725549043490816\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663725549043490816,"source_status_id_str":"663725549043490816","source_user_id":70790571,"source_user_id_str":"70790571"}]},"extended_entities":{"media":[{"id":663725536091443200,"id_str":"663725536091443200","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG28cWEAACjiG.jpg","url":"https:\/\/t.co\/7jw3yKvb6y","display_url":"pic.twitter.com\/7jw3yKvb6y","expanded_url":"http:\/\/twitter.com\/ofiltro\/status\/663725549043490816\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663725549043490816,"source_status_id_str":"663725549043490816","source_user_id":70790571,"source_user_id_str":"70790571"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108823040,"id_str":"663727779108823040","text":"RT @female_books: Christmas is in 46 days https:\/\/t.co\/T45iAuRJxS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169264376,"id_str":"169264376","name":"Ana G Cavazos","screen_name":"anagcavazos","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":347,"friends_count":294,"listed_count":1,"favourites_count":7523,"statuses_count":11483,"created_at":"Wed Jul 21 23:06:39 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"32A8E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660387693\/rqmpt66qfjo7cd669rga.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660387693\/rqmpt66qfjo7cd669rga.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652908752366993408\/t74CvWpg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652908752366993408\/t74CvWpg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169264376\/1380239554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:30:28 +0000 2015","id":663574351929810944,"id_str":"663574351929810944","text":"Christmas is in 46 days https:\/\/t.co\/T45iAuRJxS","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874368012,"id_str":"874368012","name":"Typical Girl","screen_name":"female_books","location":null,"url":null,"description":"If you can relate to my tweets, you're just typical. Account is for entertainment purposes ONLY! contact: techgrowerinfo@gmail.com","protected":false,"verified":false,"followers_count":710182,"friends_count":81032,"listed_count":761,"favourites_count":246,"statuses_count":9985,"created_at":"Thu Oct 11 21:41:15 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522728191903801347\/EuIb-A02_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522728191903801347\/EuIb-A02_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874368012\/1435989241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":336,"favorite_count":315,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663574351619452928,"id_str":"663574351619452928","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","url":"https:\/\/t.co\/T45iAuRJxS","display_url":"pic.twitter.com\/T45iAuRJxS","expanded_url":"http:\/\/twitter.com\/female_books\/status\/663574351929810944\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":316,"resize":"fit"},"large":{"w":599,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663574351619452928,"id_str":"663574351619452928","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","url":"https:\/\/t.co\/T45iAuRJxS","display_url":"pic.twitter.com\/T45iAuRJxS","expanded_url":"http:\/\/twitter.com\/female_books\/status\/663574351929810944\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":316,"resize":"fit"},"large":{"w":599,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"female_books","name":"Typical Girl","id":874368012,"id_str":"874368012","indices":[3,16]}],"symbols":[],"media":[{"id":663574351619452928,"id_str":"663574351619452928","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","url":"https:\/\/t.co\/T45iAuRJxS","display_url":"pic.twitter.com\/T45iAuRJxS","expanded_url":"http:\/\/twitter.com\/female_books\/status\/663574351929810944\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":316,"resize":"fit"},"large":{"w":599,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}},"source_status_id":663574351929810944,"source_status_id_str":"663574351929810944","source_user_id":874368012,"source_user_id_str":"874368012"}]},"extended_entities":{"media":[{"id":663574351619452928,"id_str":"663574351619452928","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV9W2ZWcAASMCX.jpg","url":"https:\/\/t.co\/T45iAuRJxS","display_url":"pic.twitter.com\/T45iAuRJxS","expanded_url":"http:\/\/twitter.com\/female_books\/status\/663574351929810944\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":316,"resize":"fit"},"large":{"w":599,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}},"source_status_id":663574351929810944,"source_status_id_str":"663574351929810944","source_user_id":874368012,"source_user_id_str":"874368012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779092029440,"id_str":"663727779092029440","text":"Happiness is a choice. Optimism is a choice. Kindness is a choice. Giving is a choice. Respect is a choice. Choose wisely.- Vala Afshar","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":761541768,"id_str":"761541768","name":"Beats&Promo","screen_name":"IGOTBANGERS","location":"Miami ","url":"http:\/\/WWW.IGOTBANGERS.COM","description":"Music producer\/ Entrepreneur\/ Online Promoter Buy Dope Beats at http:\/\/igotbangers.com Need Promo visit http:\/\/tweetsblast.com","protected":false,"verified":false,"followers_count":61465,"friends_count":55740,"listed_count":284,"favourites_count":70,"statuses_count":263834,"created_at":"Thu Aug 16 13:21:33 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636975306\/zjn6kthlkaip69yox8gy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636975306\/zjn6kthlkaip69yox8gy.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650990455539257344\/kFryWo1G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650990455539257344\/kFryWo1G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761541768\/1444043193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112992768,"id_str":"663727779112992768","text":"RT @ShyGlizzy: DON'T EVER LET A NIGGA THINK YOU NEED HIM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382597228,"id_str":"3382597228","name":"Toots\u2728","screen_name":"Takia__","location":"Somewhere Unbothered .","url":null,"description":"Even If I came w. Instructions y'all still couldn't handle me .","protected":false,"verified":false,"followers_count":75,"friends_count":99,"listed_count":0,"favourites_count":71,"statuses_count":1013,"created_at":"Sun Jul 19 02:26:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660958697196265472\/GuDg0jTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660958697196265472\/GuDg0jTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3382597228\/1438280551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jan 04 05:40:14 +0000 2013","id":287070913860620288,"id_str":"287070913860620288","text":"DON'T EVER LET A NIGGA THINK YOU NEED HIM","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233646938,"id_str":"233646938","name":"Young Jefe","screen_name":"ShyGlizzy","location":"Forever Tre-7","url":"http:\/\/livemixtap.es\/glizzy-fto","description":"bookglizzy@gmail.com","protected":false,"verified":true,"followers_count":190316,"friends_count":422,"listed_count":259,"favourites_count":69,"statuses_count":48439,"created_at":"Mon Jan 03 19:34:39 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095330627\/229631828df186f6ea4faba59c50b5ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095330627\/229631828df186f6ea4faba59c50b5ce.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636581089243475968\/8KjF8Xfp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636581089243475968\/8KjF8Xfp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233646938\/1431454368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5578,"favorite_count":2196,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShyGlizzy","name":"Young Jefe","id":233646938,"id_str":"233646938","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117010946,"id_str":"663727779117010946","text":"RT @Rumi_Quote: Seek the wisdom that will untie your knot. \nSeek the path that demands your whole being.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1931954539,"id_str":"1931954539","name":"Nook Fin","screen_name":"RagingImpulses","location":"universe","url":"http:\/\/www.instagram.com\/ragingimpulses","description":"Part-time asshole. Kinky Kitten. Babbling Raccoon. Psychedlic Lover. Raidiate love & light. Loving yet vicious. Blunt. Discordian. Paradox. #illhueminati","protected":false,"verified":false,"followers_count":404,"friends_count":414,"listed_count":6,"favourites_count":3079,"statuses_count":8685,"created_at":"Thu Oct 03 20:08:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087545383\/58307b85a8bd38ff90c84a7309ef6eaf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087545383\/58307b85a8bd38ff90c84a7309ef6eaf.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661271431569940480\/hK8wqo3G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661271431569940480\/hK8wqo3G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1931954539\/1444360704","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:01 +0000 2015","id":663725234034499584,"id_str":"663725234034499584","text":"Seek the wisdom that will untie your knot. \nSeek the path that demands your whole being.","source":"\u003ca href=\"http:\/\/www.kucukbeyin.com\/\" rel=\"nofollow\"\u003ejsdljghSIDLFIAJFA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1870188672,"id_str":"1870188672","name":"Rumi","screen_name":"Rumi_Quote","location":"QuoteRumi@gmail.com","url":null,"description":"Love risks everything and asks for nothing...","protected":false,"verified":false,"followers_count":75756,"friends_count":21230,"listed_count":651,"favourites_count":52,"statuses_count":20588,"created_at":"Mon Sep 16 04:23:45 +0000 2013","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477092904758808577\/3RrEtx04_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477092904758808577\/3RrEtx04_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1870188672\/1402582769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rumi_Quote","name":"Rumi","id":1870188672,"id_str":"1870188672","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104460800,"id_str":"663727779104460800","text":"RT @TSBible: \"Miss you Joe, we'll be together again soon my love xxx\" https:\/\/t.co\/fSm4cimaGu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1862222502,"id_str":"1862222502","name":"Football\/FIFA Stuff","screen_name":"deGoldenMexican","location":null,"url":null,"description":"Football News\/Mostly Cruz Azul News. Im in the US so just to clear it out, this is NOT American Football stuff #Football \u00bb#CruzAzul \u00bbJ. Corona [(+)]","protected":false,"verified":false,"followers_count":150,"friends_count":53,"listed_count":36,"favourites_count":1995,"statuses_count":43014,"created_at":"Sat Sep 14 01:18:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623327720995319808\/TL7GVdEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623327720995319808\/TL7GVdEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1862222502\/1439429909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:15:49 +0000 2015","id":663691461926457344,"id_str":"663691461926457344","text":"\"Miss you Joe, we'll be together again soon my love xxx\" https:\/\/t.co\/fSm4cimaGu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":435225922,"id_str":"435225922","name":"TheSPORTbible","screen_name":"TSBible","location":"contact@sportbible.com","url":"http:\/\/thesportbible.com","description":"The Official SPORT Bible. A Way Of Life. Snapchat : TeamSPORTbible","protected":false,"verified":true,"followers_count":1131565,"friends_count":1227,"listed_count":2196,"favourites_count":689,"statuses_count":26853,"created_at":"Mon Dec 12 20:29:59 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000133076435\/no-XQ2Eg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000133076435\/no-XQ2Eg.jpeg","profile_background_tile":false,"profile_link_color":"199E2D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662044432213139456\/IousnhU4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662044432213139456\/IousnhU4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/435225922\/1445211074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":351,"favorite_count":735,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690711053807617,"id_str":"663690711053807617","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","url":"https:\/\/t.co\/fSm4cimaGu","display_url":"pic.twitter.com\/fSm4cimaGu","expanded_url":"http:\/\/twitter.com\/TSBible\/status\/663691461926457344\/photo\/1","type":"photo","sizes":{"large":{"w":341,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":341,"h":411,"resize":"fit"},"small":{"w":340,"h":409,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690711053807617,"id_str":"663690711053807617","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","url":"https:\/\/t.co\/fSm4cimaGu","display_url":"pic.twitter.com\/fSm4cimaGu","expanded_url":"http:\/\/twitter.com\/TSBible\/status\/663691461926457344\/photo\/1","type":"photo","sizes":{"large":{"w":341,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":341,"h":411,"resize":"fit"},"small":{"w":340,"h":409,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TSBible","name":"TheSPORTbible","id":435225922,"id_str":"435225922","indices":[3,11]}],"symbols":[],"media":[{"id":663690711053807617,"id_str":"663690711053807617","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","url":"https:\/\/t.co\/fSm4cimaGu","display_url":"pic.twitter.com\/fSm4cimaGu","expanded_url":"http:\/\/twitter.com\/TSBible\/status\/663691461926457344\/photo\/1","type":"photo","sizes":{"large":{"w":341,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":341,"h":411,"resize":"fit"},"small":{"w":340,"h":409,"resize":"fit"}},"source_status_id":663691461926457344,"source_status_id_str":"663691461926457344","source_user_id":435225922,"source_user_id_str":"435225922"}]},"extended_entities":{"media":[{"id":663690711053807617,"id_str":"663690711053807617","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnL3EWsAEPu1h.png","url":"https:\/\/t.co\/fSm4cimaGu","display_url":"pic.twitter.com\/fSm4cimaGu","expanded_url":"http:\/\/twitter.com\/TSBible\/status\/663691461926457344\/photo\/1","type":"photo","sizes":{"large":{"w":341,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":341,"h":411,"resize":"fit"},"small":{"w":340,"h":409,"resize":"fit"}},"source_status_id":663691461926457344,"source_status_id_str":"663691461926457344","source_user_id":435225922,"source_user_id_str":"435225922"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100409856,"id_str":"663727779100409856","text":"RT @Jorgebertuzzi: Hoje a Avenida Paulista foi ocupada, mas voc\u00ea n\u00e3o vai ver nos jornais https:\/\/t.co\/lJhPwW2Caz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1879780639,"id_str":"1879780639","name":"@ClubeFollowBack","screen_name":"KmPasso","location":"Brasil","url":null,"description":"Divulgadora dos Pensamentos de Sed\u00e1tia Ramarian !! Beijos Azuis !!","protected":false,"verified":false,"followers_count":145952,"friends_count":146050,"listed_count":320,"favourites_count":16592,"statuses_count":192482,"created_at":"Wed Sep 18 14:51:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647475621770211328\/BYEGmXbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647475621770211328\/BYEGmXbK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1879780639\/1444860687","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:58:38 +0000 2015","id":663505943389298690,"id_str":"663505943389298690","text":"Hoje a Avenida Paulista foi ocupada, mas voc\u00ea n\u00e3o vai ver nos jornais https:\/\/t.co\/lJhPwW2Caz","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134907619,"id_str":"134907619","name":"#15deNovEuVou \u0646","screen_name":"Jorgebertuzzi","location":"S\u00e3o Paulo, Brasil","url":null,"description":"A paz, se poss\u00edvel, mas a verdade, a qualquer pre\u00e7o.","protected":false,"verified":false,"followers_count":3221,"friends_count":320,"listed_count":34,"favourites_count":5664,"statuses_count":40195,"created_at":"Mon Apr 19 20:10:31 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593855241000386560\/NFiyaE2P.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593855241000386560\/NFiyaE2P.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622969855298412544\/4VCUEvW5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622969855298412544\/4VCUEvW5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134907619\/1445268638","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lJhPwW2Caz","expanded_url":"http:\/\/fb.me\/4WIzDj8eW","display_url":"fb.me\/4WIzDj8eW","indices":[70,93]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lJhPwW2Caz","expanded_url":"http:\/\/fb.me\/4WIzDj8eW","display_url":"fb.me\/4WIzDj8eW","indices":[89,112]}],"user_mentions":[{"screen_name":"Jorgebertuzzi","name":"#15deNovEuVou \u0646","id":134907619,"id_str":"134907619","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104489472,"id_str":"663727779104489472","text":"RT @ck__hlwo: 96\ud615\uc6d0\ub2d8 \u5e74\u8fd1\u3044\u65b9\ud83d\ude46\n\n#MONSTAX\u3092\u597d\u304d\u306a\u4eba\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067MONSTAX\u3092\u597d\u304d\u306a\u4eba\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fMONSTAX\u597d\u304d\u306a\u4eba\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3279518700,"id_str":"3279518700","name":"\u30a2\u30e4\u30cd","screen_name":"im_mnx","location":null,"url":null,"description":"\uc9f1\uaddc\ub2c8\uc637\ud30c^3^**","protected":false,"verified":false,"followers_count":57,"friends_count":85,"listed_count":1,"favourites_count":495,"statuses_count":751,"created_at":"Tue Jul 14 12:54:04 +0000 2015","utc_offset":-32400,"time_zone":"GMT+9","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661814469127892992\/VqGoOD1V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661814469127892992\/VqGoOD1V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279518700\/1446471680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:52:57 +0000 2015","id":663625308998754304,"id_str":"663625308998754304","text":"96\ud615\uc6d0\ub2d8 \u5e74\u8fd1\u3044\u65b9\ud83d\ude46\n\n#MONSTAX\u3092\u597d\u304d\u306a\u4eba\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067MONSTAX\u3092\u597d\u304d\u306a\u4eba\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fMONSTAX\u597d\u304d\u306a\u4eba\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4176882914,"id_str":"4176882914","name":"\ub9ac\uc774","screen_name":"ck__hlwo","location":"\ud55c\uad6d\ucda9\uccad\ub0a8\ub3c4","url":null,"description":"96\ud615\uc6d0\ub355\ud6c4\u2661 \ub108\ubcf4\ub2e4\uc81c\ub300\ub85c\ud558\ub2c8\uae4c","protected":false,"verified":false,"followers_count":10,"friends_count":14,"listed_count":0,"favourites_count":0,"statuses_count":71,"created_at":"Mon Nov 09 07:32:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663624317863759872\/a8cnI7Fa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663624317863759872\/a8cnI7Fa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4176882914\/1447057238","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[{"text":"MONSTAX\u3092\u597d\u304d\u306a\u4eba\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067MONSTAX\u3092\u597d\u304d\u306a\u4eba\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fMONSTAX\u597d\u304d\u306a\u4eba\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","indices":[13,102]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MONSTAX\u3092\u597d\u304d\u306a\u4eba\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067MONSTAX\u3092\u597d\u304d\u306a\u4eba\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fMONSTAX\u597d\u304d\u306a\u4eba\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","indices":[27,116]}],"urls":[],"user_mentions":[{"screen_name":"ck__hlwo","name":"\ub9ac\uc774","id":4176882914,"id_str":"4176882914","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104468992,"id_str":"663727779104468992","text":"\u4eca\u65e5\u30a2\u30db\u307f\u305f\u3044\u306b\u30af\u30bd\u30ea\u30d7\u304c\u9001\u3089\u308c\u3066\u304f\u308b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3324115579,"id_str":"3324115579","name":"\u3071\u308b\u3059P\uff20\u4e00\u5fdc\u30c6\u30b9\u30c8\u671f\u9593","screen_name":"pulse_takane","location":"\u6771\u4eac\u306e\u6771\u306e\u65b9","url":"http:\/\/twpf.jp\/pulse_takane","description":"\u8cb4\u97f3\u3068\u3057\u3076\u308a\u3093\u3001\u6587\u9999\u3061\u3083\u3093\u306b\u51fa\u4f1a\u3063\u3066\u304b\u3089\u4e16\u754c\u304c\u5909\u308f\u3063\u305f\u4e2d\u5b66\u751f\u30a2\u30a4\u30de\u30b9P\u517c\u4e0b\u624b\u304f\u305d\u591a\u6a5f\u7a2e\u97f3\u30b2\u30fc\u30de\u30fc","protected":false,"verified":false,"followers_count":347,"friends_count":229,"listed_count":11,"favourites_count":9285,"statuses_count":13250,"created_at":"Sat Aug 22 11:29:23 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662269707249041408\/tspooE___normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662269707249041408\/tspooE___normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3324115579\/1446554999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100258308,"id_str":"663727779100258308","text":"\u30d6\u30ec\u30fc\u30ad\u30c7\u30a3\u30b9\u30af\u304c\u597d\u307f\u3068\u304b\u3046\u3093\u305f\u3089","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338797886,"id_str":"338797886","name":"\u304b\u306e\u3093@\u7531\u5c90","screen_name":"kanon2225","location":"\u540d\u53e4\u5c4b\u770c","url":null,"description":"\u30aa\u30bf\u30af\u3067\u30d0\u30a4\u30af\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":579,"friends_count":510,"listed_count":21,"favourites_count":11828,"statuses_count":116224,"created_at":"Wed Jul 20 03:19:24 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492365540501901313\/l8M6AlCT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492365540501901313\/l8M6AlCT.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627942967550959616\/WfF5I0E4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627942967550959616\/WfF5I0E4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338797886\/1406238291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096231936,"id_str":"663727779096231936","text":"RT @juliafigueroa_: O discurso t\u00e1 em alta, atitude t\u00e1 em baixa!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911901099,"id_str":"2911901099","name":"Madu","screen_name":"_itsmadu_","location":"Belo Horizonte, Minas Gerais","url":"http:\/\/Instagram.com\/madusouza_9","description":"ALL you need is love \/\/ Scorpio\u264f\ufe0f","protected":false,"verified":false,"followers_count":562,"friends_count":307,"listed_count":0,"favourites_count":4024,"statuses_count":14423,"created_at":"Tue Dec 09 00:33:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663207762046898176\/y6vqKiEq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663207762046898176\/y6vqKiEq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911901099\/1446954803","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:34 +0000 2015","id":663727385435627521,"id_str":"663727385435627521","text":"O discurso t\u00e1 em alta, atitude t\u00e1 em baixa!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2641889086,"id_str":"2641889086","name":"J\u00falia figuer\u00f4a","screen_name":"juliafigueroa_","location":null,"url":"http:\/\/instagram.com\/ju_figueroa","description":null,"protected":false,"verified":false,"followers_count":494,"friends_count":505,"listed_count":0,"favourites_count":3312,"statuses_count":4453,"created_at":"Wed Jun 25 21:39:09 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663102427147714560\/6rHGn8hE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663102427147714560\/6rHGn8hE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2641889086\/1446936369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"juliafigueroa_","name":"J\u00falia figuer\u00f4a","id":2641889086,"id_str":"2641889086","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100381184,"id_str":"663727779100381184","text":"\u305f\u3060\u306e\u5272\u308a\u52d8\u30a2\u30d7\u30ea...\u306a\u306e\u306b\u3053\u3093\u306a\u306b\u3082\u7f8e\u3057\u304f\u4f7f\u3044\u3084\u3059\u3044\u300eSpliTron\u300f - https:\/\/t.co\/o1tkxZWNZj #\u30a2\u30d7\u30ea #iphone\u30a2\u30d7\u30ea #appjp #appstore #iPhoneAppJP","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4134246826,"id_str":"4134246826","name":"androidgames","screen_name":"androidgames06","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":0,"listed_count":56,"favourites_count":0,"statuses_count":5073,"created_at":"Sat Nov 07 12:42:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662974964912422912\/i0eC1eWk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662974964912422912\/i0eC1eWk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4134246826\/1446900574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a2\u30d7\u30ea","indices":[65,69]},{"text":"iphone\u30a2\u30d7\u30ea","indices":[70,80]},{"text":"appjp","indices":[81,87]},{"text":"appstore","indices":[88,97]},{"text":"iPhoneAppJP","indices":[98,110]}],"urls":[{"url":"https:\/\/t.co\/o1tkxZWNZj","expanded_url":"http:\/\/tinyurl.com\/9rj8qby","display_url":"tinyurl.com\/9rj8qby","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104473089,"id_str":"663727779104473089","text":"5T\/4N Wander Bike Aktiv Urlaub im 4**** Hotel Zanker in D\u00f6briach\/K\u00e4rnten https:\/\/t.co\/Sxw9RPe740","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":584097472,"id_str":"584097472","name":"TraumReise4U","screen_name":"TraumReise4U","location":null,"url":"http:\/\/go4all.net\/short\/6","description":"Ferien - Urlaub & Reisen","protected":false,"verified":false,"followers_count":1689,"friends_count":1675,"listed_count":16,"favourites_count":0,"statuses_count":35672,"created_at":"Fri May 18 19:34:48 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2229870019\/palmboom-10-111371_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2229870019\/palmboom-10-111371_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/584097472\/1404595993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Sxw9RPe740","expanded_url":"http:\/\/dlvr.it\/Chffs2","display_url":"dlvr.it\/Chffs2","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100409859,"id_str":"663727779100409859","text":"@TonyLastres Todav\u00eda nos queda un poco de tiempo por esperar.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722300236242944,"in_reply_to_status_id_str":"663722300236242944","in_reply_to_user_id":322707270,"in_reply_to_user_id_str":"322707270","in_reply_to_screen_name":"TonyLastres","user":{"id":901884792,"id_str":"901884792","name":"Jonathan Rasch","screen_name":"RaschMusica","location":"Miami, Florida.","url":"http:\/\/Www.jonathanrasch.com","description":"M\u00fasica rock llena de ritmo, pasi\u00f3n y energ\u00eda http:\/\/JonathanRasch.com","protected":false,"verified":false,"followers_count":942,"friends_count":924,"listed_count":9,"favourites_count":202,"statuses_count":7614,"created_at":"Wed Oct 24 14:05:38 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606927901267771392\/nPccNQJQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606927901267771392\/nPccNQJQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901884792\/1437593260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TonyLastres","name":"The Shortest Straw","id":322707270,"id_str":"322707270","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108794368,"id_str":"663727779108794368","text":"RT @DiarioTalCual: C\u00c1MBIAME ESE DISCO. JVR: Est\u00e1 en marcha un plan de la oposici\u00f3n para que el 6-D culmine \u201cviolentamente\u201d https:\/\/t.co\/imu\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213347228,"id_str":"213347228","name":"Leonel Marquez","screen_name":"LAM2403","location":"Nueva Esparta","url":null,"description":"Esperando ese gran momento de liberaci\u00f3n y uni\u00f3n de mis hermanos compatriotas por VENEZUELA","protected":false,"verified":false,"followers_count":693,"friends_count":622,"listed_count":3,"favourites_count":1019,"statuses_count":18942,"created_at":"Mon Nov 08 17:50:02 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631315672069484544\/d8XJX7gB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631315672069484544\/d8XJX7gB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213347228\/1421957017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:35:25 +0000 2015","id":663681293461360640,"id_str":"663681293461360640","text":"C\u00c1MBIAME ESE DISCO. JVR: Est\u00e1 en marcha un plan de la oposici\u00f3n para que el 6-D culmine \u201cviolentamente\u201d https:\/\/t.co\/imuAsKE76N","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147589125,"id_str":"147589125","name":"TalCualDigital.com","screen_name":"DiarioTalCual","location":"Caracas, Venezuela","url":"http:\/\/www.talcualdigital.com","description":"Peri\u00f3dico venezolano, dirigido por Teodoro Petkoff. Semanario de informaci\u00f3n, reportajes, an\u00e1lisis y opini\u00f3n.","protected":false,"verified":false,"followers_count":993874,"friends_count":17834,"listed_count":4945,"favourites_count":276,"statuses_count":150244,"created_at":"Mon May 24 14:41:20 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651400633119981569\/zgZqy4T5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651400633119981569\/zgZqy4T5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147589125\/1444057210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663681293213933568,"id_str":"663681293213933568","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","url":"https:\/\/t.co\/imuAsKE76N","display_url":"pic.twitter.com\/imuAsKE76N","expanded_url":"http:\/\/twitter.com\/DiarioTalCual\/status\/663681293461360640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":635,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663681293213933568,"id_str":"663681293213933568","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","url":"https:\/\/t.co\/imuAsKE76N","display_url":"pic.twitter.com\/imuAsKE76N","expanded_url":"http:\/\/twitter.com\/DiarioTalCual\/status\/663681293461360640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":635,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DiarioTalCual","name":"TalCualDigital.com","id":147589125,"id_str":"147589125","indices":[3,17]}],"symbols":[],"media":[{"id":663681293213933568,"id_str":"663681293213933568","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","url":"https:\/\/t.co\/imuAsKE76N","display_url":"pic.twitter.com\/imuAsKE76N","expanded_url":"http:\/\/twitter.com\/DiarioTalCual\/status\/663681293461360640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":635,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663681293461360640,"source_status_id_str":"663681293461360640","source_user_id":147589125,"source_user_id_str":"147589125"}]},"extended_entities":{"media":[{"id":663681293213933568,"id_str":"663681293213933568","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXenq4WoAAwRhS.jpg","url":"https:\/\/t.co\/imuAsKE76N","display_url":"pic.twitter.com\/imuAsKE76N","expanded_url":"http:\/\/twitter.com\/DiarioTalCual\/status\/663681293461360640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":635,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663681293461360640,"source_status_id_str":"663681293461360640","source_user_id":147589125,"source_user_id_str":"147589125"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112816640,"id_str":"663727779112816640","text":"MaartjeN (49) uit Ronse - Jarenlang single, zelfstandig en een lieve moeder voor mijn 2 kinderen. Die binnenkort\u2026 https:\/\/t.co\/YLRaIkHBLp","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":432600797,"id_str":"432600797","name":"flirtzoeken.nl","screen_name":"flirtzoeken","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":76,"friends_count":8,"listed_count":2,"favourites_count":0,"statuses_count":32077,"created_at":"Fri Dec 09 15:35:56 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1683260222\/logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1683260222\/logo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YLRaIkHBLp","expanded_url":"http:\/\/dlvr.it\/ChfXRm","display_url":"dlvr.it\/ChfXRm","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112964096,"id_str":"663727779112964096","text":"RT @artsofdrawing: me this semester https:\/\/t.co\/Tje26ZS1bi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2510170777,"id_str":"2510170777","name":"Enemy or lover","screen_name":"dzikiwibrator","location":null,"url":null,"description":"Never stop going after your dreams. Also breathing. Don't stop breathing or you might die. #18 #FCBarcelona #SPAstronaut","protected":false,"verified":false,"followers_count":223,"friends_count":260,"listed_count":1,"favourites_count":498,"statuses_count":10889,"created_at":"Tue May 20 11:49:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643114473201512448\/JuLZEfR4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643114473201512448\/JuLZEfR4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2510170777\/1427896353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:40:18 +0000 2015","id":662987943724711936,"id_str":"662987943724711936","text":"me this semester https:\/\/t.co\/Tje26ZS1bi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359717144,"id_str":"2359717144","name":"Funny Answers (:","screen_name":"artsofdrawing","location":"New York, USA","url":null,"description":"Bringing u the best funny answer to make u laugh hard until ur stomach pain !!!","protected":false,"verified":false,"followers_count":169927,"friends_count":89739,"listed_count":260,"favourites_count":42,"statuses_count":3861,"created_at":"Sat Feb 22 23:39:27 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359717144\/1446184624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1366,"favorite_count":913,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662987940696428544,"id_str":"662987940696428544","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","url":"https:\/\/t.co\/Tje26ZS1bi","display_url":"pic.twitter.com\/Tje26ZS1bi","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/662987943724711936\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":506,"resize":"fit"},"large":{"w":500,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":344,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662987940696428544,"id_str":"662987940696428544","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","url":"https:\/\/t.co\/Tje26ZS1bi","display_url":"pic.twitter.com\/Tje26ZS1bi","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/662987943724711936\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":506,"resize":"fit"},"large":{"w":500,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":344,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"artsofdrawing","name":"Funny Answers (:","id":2359717144,"id_str":"2359717144","indices":[3,17]}],"symbols":[],"media":[{"id":662987940696428544,"id_str":"662987940696428544","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","url":"https:\/\/t.co\/Tje26ZS1bi","display_url":"pic.twitter.com\/Tje26ZS1bi","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/662987943724711936\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":506,"resize":"fit"},"large":{"w":500,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":344,"resize":"fit"}},"source_status_id":662987943724711936,"source_status_id_str":"662987943724711936","source_user_id":2359717144,"source_user_id_str":"2359717144"}]},"extended_entities":{"media":[{"id":662987940696428544,"id_str":"662987940696428544","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNoBPeUEAAMMqA.jpg","url":"https:\/\/t.co\/Tje26ZS1bi","display_url":"pic.twitter.com\/Tje26ZS1bi","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/662987943724711936\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":506,"resize":"fit"},"large":{"w":500,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":344,"resize":"fit"}},"source_status_id":662987943724711936,"source_status_id_str":"662987943724711936","source_user_id":2359717144,"source_user_id_str":"2359717144"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779125534721,"id_str":"663727779125534721","text":"@Queen___Nkuli yawn is it not Mello's bday?","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726300553732096,"in_reply_to_status_id_str":"663726300553732096","in_reply_to_user_id":466682315,"in_reply_to_user_id_str":"466682315","in_reply_to_screen_name":"Queen___Nkuli","user":{"id":85770477,"id_str":"85770477","name":"Push P.","screen_name":"_pushSeason","location":"South Africa - Durban","url":null,"description":"Beyblade Theme Song","protected":false,"verified":false,"followers_count":664,"friends_count":465,"listed_count":4,"favourites_count":20,"statuses_count":10487,"created_at":"Wed Oct 28 08:17:03 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663694826987200512\/Q1ozXDUe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663694826987200512\/Q1ozXDUe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85770477\/1447067632","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Queen___Nkuli","name":"Lemon Nkuli","id":466682315,"id_str":"466682315","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008666"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779092045824,"id_str":"663727779092045824","text":"RT @cnegobec: \ud83c\udfa5VIDEO\ud83c\udfa5\nHoy desde la sede de @unasur se realizar\u00e1 el Encuentro Internacional #RetosDemocracia https:\/\/t.co\/pyZcbIGh5o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830537117,"id_str":"2830537117","name":"CNE LOS RIOS","screen_name":"CNE_LOSRIOS","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":381,"friends_count":283,"listed_count":4,"favourites_count":222,"statuses_count":9426,"created_at":"Wed Sep 24 21:10:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599413955384254465\/K8xn39Li_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599413955384254465\/K8xn39Li_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830537117\/1436807349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:32 +0000 2015","id":663710264303423488,"id_str":"663710264303423488","text":"\ud83c\udfa5VIDEO\ud83c\udfa5\nHoy desde la sede de @unasur se realizar\u00e1 el Encuentro Internacional #RetosDemocracia https:\/\/t.co\/pyZcbIGh5o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159162810,"id_str":"159162810","name":"CNE Ecuador","screen_name":"cnegobec","location":"Quito ","url":"http:\/\/www.cne.gob.ec","description":"Twitter oficial del Consejo Nacional Electoral del Ecuador.","protected":false,"verified":false,"followers_count":121500,"friends_count":826,"listed_count":329,"favourites_count":2791,"statuses_count":35650,"created_at":"Thu Jun 24 16:49:55 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/879916206\/c412879003632b8ff9f906dfe7cfcd7f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/879916206\/c412879003632b8ff9f906dfe7cfcd7f.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1850893729\/logo-cne1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1850893729\/logo-cne1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159162810\/1436362816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":5,"entities":{"hashtags":[{"text":"RetosDemocracia","indices":[77,93]}],"urls":[],"user_mentions":[{"screen_name":"unasur","name":"UNASUR","id":1226388188,"id_str":"1226388188","indices":[29,36]}],"symbols":[],"media":[{"id":663709792964386817,"id_str":"663709792964386817","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","url":"https:\/\/t.co\/pyZcbIGh5o","display_url":"pic.twitter.com\/pyZcbIGh5o","expanded_url":"http:\/\/twitter.com\/cnegobec\/status\/663710264303423488\/video\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709792964386817,"id_str":"663709792964386817","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","url":"https:\/\/t.co\/pyZcbIGh5o","display_url":"pic.twitter.com\/pyZcbIGh5o","expanded_url":"http:\/\/twitter.com\/cnegobec\/status\/663710264303423488\/video\/1","type":"video","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":29355,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/vid\/240x180\/IrKqxpgS0VIuVzGg.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/vid\/240x180\/IrKqxpgS0VIuVzGg.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/pl\/IQ5vI_mnkCOZAPaC.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/pl\/IQ5vI_mnkCOZAPaC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RetosDemocracia","indices":[91,107]}],"urls":[],"user_mentions":[{"screen_name":"cnegobec","name":"CNE Ecuador","id":159162810,"id_str":"159162810","indices":[3,12]},{"screen_name":"unasur","name":"UNASUR","id":1226388188,"id_str":"1226388188","indices":[43,50]}],"symbols":[],"media":[{"id":663709792964386817,"id_str":"663709792964386817","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","url":"https:\/\/t.co\/pyZcbIGh5o","display_url":"pic.twitter.com\/pyZcbIGh5o","expanded_url":"http:\/\/twitter.com\/cnegobec\/status\/663710264303423488\/video\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":663710264303423488,"source_status_id_str":"663710264303423488","source_user_id":159162810,"source_user_id_str":"159162810"}]},"extended_entities":{"media":[{"id":663709792964386817,"id_str":"663709792964386817","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663709792964386817\/pu\/img\/zizg2JbNxhamrtOJ.jpg","url":"https:\/\/t.co\/pyZcbIGh5o","display_url":"pic.twitter.com\/pyZcbIGh5o","expanded_url":"http:\/\/twitter.com\/cnegobec\/status\/663710264303423488\/video\/1","type":"video","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":663710264303423488,"source_status_id_str":"663710264303423488","source_user_id":159162810,"source_user_id_str":"159162810","video_info":{"aspect_ratio":[4,3],"duration_millis":29355,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/vid\/240x180\/IrKqxpgS0VIuVzGg.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/vid\/240x180\/IrKqxpgS0VIuVzGg.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/pl\/IQ5vI_mnkCOZAPaC.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663709792964386817\/pu\/pl\/IQ5vI_mnkCOZAPaC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112857600,"id_str":"663727779112857600","text":"@hiyokogusa8831 \n\u5fc3\u914d\u5fa1\u7121\u7528\u3001\u9774\u4ee3\u306f\u3057\u3063\u304b\u308a\u3068\u8acb\u6c42\u3059\u308b\u304b\u3089\u306a(\u610f\u5730\u60aa\u304f\u5fae\u7b11\u307f)\n\u50d5\u304c\u76f4\u3005\u306b\u7df4\u7fd2\u306b\u4ed8\u304d\u5408\u3046\u306e\u3060\u304b\u3089\u3001\u5fc5\u305a\u30de\u30b9\u30bf\u30fc\u3059\u308b\u3093\u3060\u305e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663669237517447169,"in_reply_to_status_id_str":"663669237517447169","in_reply_to_user_id":1100471304,"in_reply_to_user_id_str":"1100471304","in_reply_to_screen_name":"hiyokogusa8831","user":{"id":2815815750,"id_str":"2815815750","name":"Draco Malfoy","screen_name":"Drc_Mly","location":null,"url":"http:\/\/twpf.jp\/Drc_Mly","description":"HP\u975e\u516c\u5f0f\u624b\u52d5account\/follow\u8fd4\u3057\u5e0c\u671b\u306f\u6328\u62f6\u5fc5\u9808\/\u8af8\u3005\u5bfe\u5fdc\u6709\/\u30ed\u30eb\u4f7f\u7528(\u7121\u301c\u9577)\/URL\u5148\u4ed5\u69d8\u66f8\u5fc5\u8aad.","protected":false,"verified":false,"followers_count":15,"friends_count":15,"listed_count":0,"favourites_count":74,"statuses_count":216,"created_at":"Wed Sep 17 23:26:06 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663498780172398592\/Y-14COD6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663498780172398592\/Y-14COD6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2815815750\/1446683272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiyokogusa8831","name":"\u30a2\u30f3\u30d0\u30fc","id":1100471304,"id_str":"1100471304","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779091902464,"id_str":"663727779091902464","text":"#\u73cd\u3057\u3044\u4eba\u304b\u3089\u30ea\u30d7\u304c\u304f\u308b \n\u304a\uff1f\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2257022400,"id_str":"2257022400","name":"\u3082\u306a\u304b","screen_name":"krkrhtht9694","location":null,"url":null,"description":"\u30a2\u30cb\u30f2\u30bf\u30fb\u30b2\u30fc\u30e0\u597d\u304d\u30fb\u6687\u4eba\u30fb\u904a\u622f\u738b\u30fb\u58f0\u5287\u30fbCODE OF JOKER\u4ee5\u4e0a\u3067\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u3082\u306a\u304b\u3067\u3059\u3002 \u305f\u307e\u306b\u3057\u304b\u9854\u51fa\u3055\u306a\u3044\u7cfb\u7537\u5b50\u3002\n\u3067\u3082\u5168\u7136\u6c17\u8efd\u306b\u8a71\u3057\u304b\u3051\u3066\u304f\u308c\u3066\u3048\u3048\u3084\u3067\uff01\n \u3055\u3041\uff01\u30b2\u30fc\u30e0\u3092\u59cb\u3081\u3088\u3046\uff01\uff01","protected":false,"verified":false,"followers_count":282,"friends_count":274,"listed_count":2,"favourites_count":1355,"statuses_count":5195,"created_at":"Sat Dec 21 23:03:06 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636582944006516736\/msvkYsXL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636582944006516736\/msvkYsXL.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622082164171997184\/WqdQyUpk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622082164171997184\/WqdQyUpk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2257022400\/1439661450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u73cd\u3057\u3044\u4eba\u304b\u3089\u30ea\u30d7\u304c\u304f\u308b","indices":[0,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100434433,"id_str":"663727779100434433","text":"RT @almonajjid: \u062e\u0641\u0636 \u0647\u0645\u0648\u0645\u0643 \u0641\u0627\u0644\u062d\u064a\u0627\u0629\u063a\u0631\u0648\u0631*\u0648\u0631\u062d\u0649 \u0627\u0644\u0645\u0646\u0648\u0646 \u0639\u0644\u0649 \u0627\u0644\u0623\u0646\u0627\u0645 \u062a\u062f\u0648\u0631\n\u0648\u0627\u0644\u0645\u0631\u0621\u0641\u064a \u062f\u0627\u0631\u0627\u0644\u0641\u0646\u0627\u0621\u0645\u0643\u0644\u0641*\u0644\u0627\u0642\u0627\u062f\u0631\u0641\u064a\u0647\u0627\u0648\u0644\u0627 \u0645\u0639\u0630\u0648\u0631\n\u0648\u0627\u0644\u0646\u0627\u0633 \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627\u0643\u0638\u0644 \u0632\u0627\u0626\u0644*\u0643\u0644 \u0625\u0644\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":755799684,"id_str":"755799684","name":"\u0641\u0627\u0637\u0645\u0629 \u0627\u0644\u0639\u0648\u0636","screen_name":"fatmahalawadh","location":null,"url":null,"description":"\u007b\u0648\u064e\u0645\u064e\u0627 \u0643\u064e\u0627\u0646\u064e \u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0644\u0650\u064a\u064f\u0639\u064e\u0630\u0651\u0650\u0628\u064e\u0647\u064f\u0645\u0652 \u0648\u064e\u0623\u064e\u0646\u0652\u062a\u064e \u0641\u0650\u064a\u0647\u0650\u0645\u0652 \u0648\u064e\u0645\u064e\u0627 \u0643\u064e\u0627\u0646\u064e \u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0645\u064f\u0639\u064e\u0630\u0651\u0650\u0628\u064e\u0647\u064f\u0645\u0652 \u0648\u064e\u0647\u064f\u0645\u0652 \u064a\u064e\u0633\u0652\u062a\u064e\u063a\u0652\u0641\u0650\u0631\u064f\u0648\u0646\u064e\u007d","protected":false,"verified":false,"followers_count":377,"friends_count":250,"listed_count":0,"favourites_count":339,"statuses_count":6082,"created_at":"Mon Aug 13 20:44:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618860879661023232\/RNL1Trrr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618860879661023232\/RNL1Trrr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:37 +0000 2015","id":663725382307328000,"id_str":"663725382307328000","text":"\u062e\u0641\u0636 \u0647\u0645\u0648\u0645\u0643 \u0641\u0627\u0644\u062d\u064a\u0627\u0629\u063a\u0631\u0648\u0631*\u0648\u0631\u062d\u0649 \u0627\u0644\u0645\u0646\u0648\u0646 \u0639\u0644\u0649 \u0627\u0644\u0623\u0646\u0627\u0645 \u062a\u062f\u0648\u0631\n\u0648\u0627\u0644\u0645\u0631\u0621\u0641\u064a \u062f\u0627\u0631\u0627\u0644\u0641\u0646\u0627\u0621\u0645\u0643\u0644\u0641*\u0644\u0627\u0642\u0627\u062f\u0631\u0641\u064a\u0647\u0627\u0648\u0644\u0627 \u0645\u0639\u0630\u0648\u0631\n\u0648\u0627\u0644\u0646\u0627\u0633 \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627\u0643\u0638\u0644 \u0632\u0627\u0626\u0644*\u0643\u0644 \u0625\u0644\u0649 \u062d\u0643\u0645 \u0627\u0644\u0641\u0646\u0627\u0621 \u064a\u0635\u064a\u0631","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116677505,"id_str":"116677505","name":"\u0645\u062d\u0645\u062f \u0635\u0627\u0644\u062d \u0627\u0644\u0645\u0646\u062c\u062f","screen_name":"almonajjid","location":"nas@islam.ws","url":"http:\/\/www.almunajjid.com","description":"SMS to +966505802296","protected":false,"verified":false,"followers_count":1015031,"friends_count":8,"listed_count":3696,"favourites_count":6,"statuses_count":34129,"created_at":"Tue Feb 23 07:47:39 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661492476612640768\/weMewinw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661492476612640768\/weMewinw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116677505\/1446547985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":29,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"almonajjid","name":"\u0645\u062d\u0645\u062f \u0635\u0627\u0644\u062d \u0627\u0644\u0645\u0646\u062c\u062f","id":116677505,"id_str":"116677505","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104468994,"id_str":"663727779104468994","text":"\u3048\u30fc\u3093\u305f\u30fc\u3048\u30fc\u3093\u305f\u30fc\u307f\u3063\u3057\u3087\u30fc\u3093\n21\u65e5\u304c\u697d\u3057\u307f\u3059\u304e\u308b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":442711402,"id_str":"442711402","name":"\u732b\u76eeB","screen_name":"bakuhatsu_Xmas","location":"\u306b\u3063\u307d\u3093\u307d\u3093","url":null,"description":"\u6211\u306f\u653e\u3064\u3002\u5149\u306e\u767d\u5203\u3063\u3063\uff01\uff01","protected":false,"verified":false,"followers_count":32,"friends_count":37,"listed_count":0,"favourites_count":1,"statuses_count":426,"created_at":"Wed Dec 21 11:32:22 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651070521686122496\/RiMZATcv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651070521686122496\/RiMZATcv_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108618244,"id_str":"663727779108618244","text":"RT @yusaani_media: \u7b2c20\u56de\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u795e\u6238\u8cde\u306e\u53d7\u8cde\u8005\uff06\u53d7\u8cde\u4f5c\u304c\u767a\u8868\uff01\u500b\u4eba\u8cde\u306b\u6c34\u5cf6\u7cbe\u4e8c\u76e3\u7763\u3001\u305d\u3057\u3066\u4f5c\u54c1\u8cde\u3092\u300eSHIROBAKO\u300f\u306a\u3069\u304c\u53d7\u8cde\uff01\u304a\u3081\u3067\u3068\u304a\u304a\u304a\uff01\uff01 https:\/\/t.co\/BRJUozjefv","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456760290,"id_str":"456760290","name":"\u30e9\u30fc\u30e1\u30f3\u5927\u597d\u304d\u30ad\u30e8\u30de\u30b5\u3055\u3093","screen_name":"kiyomasa346","location":"\u6771\u4eac\u90fd\u8db3\u7acb\u533a","url":null,"description":"\u30b9\u30bf\u30fc\u30a6\u30a9\u30fc\u30ba\/765\u91ce\u7403\u90e8\/\u4e2d\u65e5\u30c9\u30e9\u30b4\u30f3\u30ba\/\u30a2\u30a4\u30de\u30b9\/\u30c7\u30ec\u30de\u30b9\/\u30df\u30ea\u30aa\u30f3\/\u5800\u88d5\u5b50\/\u5c0f\u65e5\u5411\u7f8e\u7a42\/P.A.WORKS\/Fate\/TrySail\/MAN WITH A MISSION\/Nico Touches the Walls\/nano.RIPE\/UVERworld","protected":false,"verified":false,"followers_count":604,"friends_count":1076,"listed_count":58,"favourites_count":554,"statuses_count":100910,"created_at":"Fri Jan 06 16:39:36 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000075759521\/f26b02eb6e31df6ae870675688acd209.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000075759521\/f26b02eb6e31df6ae870675688acd209.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662907751773810689\/xEVKSonr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662907751773810689\/xEVKSonr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456760290\/1446884275","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:09 +0000 2015","id":663727279437049856,"id_str":"663727279437049856","text":"\u7b2c20\u56de\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u795e\u6238\u8cde\u306e\u53d7\u8cde\u8005\uff06\u53d7\u8cde\u4f5c\u304c\u767a\u8868\uff01\u500b\u4eba\u8cde\u306b\u6c34\u5cf6\u7cbe\u4e8c\u76e3\u7763\u3001\u305d\u3057\u3066\u4f5c\u54c1\u8cde\u3092\u300eSHIROBAKO\u300f\u306a\u3069\u304c\u53d7\u8cde\uff01\u304a\u3081\u3067\u3068\u304a\u304a\u304a\uff01\uff01 https:\/\/t.co\/BRJUozjefv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318954420,"id_str":"318954420","name":"\u3086\u3055\u30a2\u30cb","screen_name":"yusaani_media","location":null,"url":"http:\/\/yusaani.com\/","description":"\u30a2\u30cb\u30e1\u30d6\u30ed\u30b0\u300c\u3086\u3055\u30a2\u30cb\u300d\u3002\u30a2\u30cb\u30e1\u30fb\u6f2b\u753b\u30fb\u58f0\u512a\u30fb\u30b2\u30fc\u30e0\u30cd\u30bf\u4e2d\u5fc3\u3002 \u30cd\u30bf\u63d0\u4f9b\u30fb\u8a18\u4e8b\u5bc4\u7a3f\u30fb\u304a\u4ed5\u4e8b\u306e\u3054\u76f8\u8ac7\u30fb\u305d\u306e\u4ed6\u3054\u9023\u7d61\u306f\u7de8\u96c6\u90e8\u3078\u30e1\u30fc\u30eb\u306b\u3066\u3069\u3046\u305e\u3002yusaani2014@gmail.com\u3000\u203b\u30e1\u30fc\u30eb\u306e\u3054\u8fd4\u4fe1\u306f\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u5bfe\u5fdc\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":166482,"friends_count":149451,"listed_count":1358,"favourites_count":324,"statuses_count":81619,"created_at":"Fri Jun 17 10:00:30 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523795238616178690\/v-uaWubl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523795238616178690\/v-uaWubl.jpeg","profile_background_tile":false,"profile_link_color":"E671D2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657612199578329090\/OX5U1uvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657612199578329090\/OX5U1uvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318954420\/1445622029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":31,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BRJUozjefv","expanded_url":"http:\/\/yusaani.com\/news\/2015\/11\/09\/220012\/","display_url":"yusaani.com\/news\/2015\/11\/0\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BRJUozjefv","expanded_url":"http:\/\/yusaani.com\/news\/2015\/11\/09\/220012\/","display_url":"yusaani.com\/news\/2015\/11\/0\u2026","indices":[91,114]}],"user_mentions":[{"screen_name":"yusaani_media","name":"\u3086\u3055\u30a2\u30cb","id":318954420,"id_str":"318954420","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096174593,"id_str":"663727779096174593","text":"Philippians 2:3\ud83d\udcd6 https:\/\/t.co\/9IEjlZPsLp","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":864641923,"id_str":"864641923","name":"Melinda Wright","screen_name":"melindamalik888","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":97,"listed_count":0,"favourites_count":58,"statuses_count":89,"created_at":"Sat Oct 06 12:49:30 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587226461339168769\/_d1e2yE3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587226461339168769\/_d1e2yE3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864641923\/1428840817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9IEjlZPsLp","expanded_url":"https:\/\/instagram.com\/p\/93iUD-siaE\/","display_url":"instagram.com\/p\/93iUD-siaE\/","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100295168,"id_str":"663727779100295168","text":"RT @uronIyone: WHAT IS THIS https:\/\/t.co\/MrRenAjLNI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992717260,"id_str":"2992717260","name":"Christian Gomez","screen_name":"savage_gomez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":180,"friends_count":200,"listed_count":0,"favourites_count":508,"statuses_count":687,"created_at":"Fri Jan 23 01:15:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643246810379780096\/VexqdpqO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643246810379780096\/VexqdpqO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992717260\/1446167424","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:02:33 +0000 2015","id":663582423582695424,"id_str":"663582423582695424","text":"WHAT IS THIS https:\/\/t.co\/MrRenAjLNI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390367079,"id_str":"390367079","name":"Stephanie Evans","screen_name":"uronIyone","location":null,"url":null,"description":"@Drake: Jajajaja to all my spanish girls one time.","protected":false,"verified":false,"followers_count":6191,"friends_count":598,"listed_count":132,"favourites_count":24987,"statuses_count":61915,"created_at":"Thu Oct 13 21:34:18 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/808938054\/480b1cfdda9cbda789cc1f1528a42140.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/808938054\/480b1cfdda9cbda789cc1f1528a42140.png","profile_background_tile":false,"profile_link_color":"17C7E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662373917252853760\/-d4cm5yW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662373917252853760\/-d4cm5yW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390367079\/1443922332","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3257,"favorite_count":2108,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663581429192724480,"id_str":"663581429192724480","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":539,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"medium":{"w":539,"h":960,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"}]},"extended_entities":{"media":[{"id":663581429192724480,"id_str":"663581429192724480","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":539,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"medium":{"w":539,"h":960,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581441091960832,"id_str":"663581441091960832","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDzgvUAAAAQie.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDzgvUAAAAQie.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581456430534658,"id_str":"663581456430534658","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWD0Z4UEAI7yV1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWD0Z4UEAI7yV1.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":803,"resize":"fit"},"large":{"w":639,"h":856,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581472213733376,"id_str":"663581472213733376","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWD1UrUkAAOtSC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWD1UrUkAAOtSC.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uronIyone","name":"Stephanie Evans","id":390367079,"id_str":"390367079","indices":[3,13]}],"symbols":[],"media":[{"id":663581429192724480,"id_str":"663581429192724480","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":539,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"medium":{"w":539,"h":960,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"}]},"extended_entities":{"media":[{"id":663581429192724480,"id_str":"663581429192724480","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDy0aUEAALw5z.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":539,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"medium":{"w":539,"h":960,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581441091960832,"id_str":"663581441091960832","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDzgvUAAAAQie.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDzgvUAAAAQie.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581456430534658,"id_str":"663581456430534658","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWD0Z4UEAI7yV1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWD0Z4UEAI7yV1.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":803,"resize":"fit"},"large":{"w":639,"h":856,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"},{"id":663581472213733376,"id_str":"663581472213733376","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWD1UrUkAAOtSC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWD1UrUkAAOtSC.jpg","url":"https:\/\/t.co\/MrRenAjLNI","display_url":"pic.twitter.com\/MrRenAjLNI","expanded_url":"http:\/\/twitter.com\/needsuthemost\/status\/663581484406599680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}},"source_status_id":663581484406599680,"source_status_id_str":"663581484406599680","source_user_id":1164376370,"source_user_id_str":"1164376370"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779087650816,"id_str":"663727779087650816","text":"@almiwwwa @rosyyyydear haahaha sorry n ngarooood","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727375566241793,"in_reply_to_status_id_str":"663727375566241793","in_reply_to_user_id":2851306182,"in_reply_to_user_id_str":"2851306182","in_reply_to_screen_name":"almiwwwa","user":{"id":1334704921,"id_str":"1334704921","name":"^karl","screen_name":"KarlDeVeraaa","location":"Santiago City, Cagayan Valley","url":null,"description":"JESUS CHRIST Thick n Thin ig.karldevera isabela","protected":false,"verified":false,"followers_count":370,"friends_count":290,"listed_count":1,"favourites_count":1906,"statuses_count":13028,"created_at":"Sun Apr 07 17:40:29 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000068976776\/0957ee467ae023553bfb83b37070cdd6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000068976776\/0957ee467ae023553bfb83b37070cdd6.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663374007660482561\/Qxr37sbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663374007660482561\/Qxr37sbK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1334704921\/1446995833","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"almiwwwa","name":"MING","id":2851306182,"id_str":"2851306182","indices":[0,9]},{"screen_name":"rosyyyydear","name":"Roselle Domingo","id":306200367,"id_str":"306200367","indices":[10,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080008657"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096170496,"id_str":"663727779096170496","text":"Curiosa comparativa entre las grandes corporaciones \"legales\" y los sindicatos del crimen\n\n\u00a1Quiero un \"Consigliere\"! https:\/\/t.co\/Fd3sASFaq2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4135990960,"id_str":"4135990960","name":"Mike Ross","screen_name":"_MikeJRoss_","location":"Nueva York, USA. The Main City","url":null,"description":"Asociado Estrella de Pearson Specter Litt. Chico de Oro. La cara amable (y la mejor) de Harvey Specter. If you mess with me,you'll get your ass kicked.\n#Suits","protected":false,"verified":false,"followers_count":19,"friends_count":85,"listed_count":0,"favourites_count":18,"statuses_count":31,"created_at":"Sat Nov 07 18:08:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663131717339860992\/j2ENaQWq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663131717339860992\/j2ENaQWq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4135990960\/1447018151","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726708042948608,"quoted_status_id_str":"663726708042948608","quoted_status":{"created_at":"Mon Nov 09 14:35:53 +0000 2015","id":663726708042948608,"id_str":"663726708042948608","text":"\u00bfCu\u00e1nto se parecen las organizaciones criminales a las grandes empresas leg\u00edtimas? https:\/\/t.co\/8OrDyJwxHw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7996082,"id_str":"7996082","name":"EL PA\u00cdS","screen_name":"el_pais","location":"Madrid","url":"http:\/\/www.elpais.com","description":"Las noticias globales m\u00e1s relevantes y la \u00faltima hora en espa\u00f1ol, por los periodistas de EL PA\u00cdS. Para informarse y conversar.","protected":false,"verified":true,"followers_count":4823063,"friends_count":648,"listed_count":49131,"favourites_count":182,"statuses_count":195251,"created_at":"Mon Aug 06 16:20:09 +0000 2007","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506391816\/f-elpais.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506391816\/f-elpais.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F4F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517148424722866176\/CB6c-k0__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517148424722866176\/CB6c-k0__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7996082\/1412132776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8OrDyJwxHw","expanded_url":"http:\/\/cort.as\/Z0AC","display_url":"cort.as\/Z0AC","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Fd3sASFaq2","expanded_url":"https:\/\/twitter.com\/el_pais\/status\/663726708042948608","display_url":"twitter.com\/el_pais\/status\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779125547008,"id_str":"663727779125547008","text":"@YouTube @Becsywecsy @bestofrallylive @WalesRallyGB @MSportLtd @HyundaiWRC @VolkswagenRally @CitroenRacing @EVENmanagement @HaydenPaddon >>","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727386798784512,"in_reply_to_status_id_str":"663727386798784512","in_reply_to_user_id":370616573,"in_reply_to_user_id_str":"370616573","in_reply_to_screen_name":"toe56","user":{"id":370616573,"id_str":"370616573","name":"Tony-Carroll","screen_name":"toe56","location":"Liverpool Uk","url":"http:\/\/www.YouTube.com","description":"Normal guy!!,enjoys Motorsport,F1,WRC,MotoGp,Rally Raid=Dakar,Horses&Eventing .Walking,Music Oh &More Motorsport!! W.R.C a must!!!","protected":false,"verified":false,"followers_count":38,"friends_count":157,"listed_count":10,"favourites_count":13606,"statuses_count":22656,"created_at":"Fri Sep 09 10:16:27 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590527845463502848\/vL9-k-I8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590527845463502848\/vL9-k-I8.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647303352867532800\/PwHxVf3r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647303352867532800\/PwHxVf3r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370616573\/1446028159","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[0,8]},{"screen_name":"Becsywecsy","name":"Becs Williams","id":19772596,"id_str":"19772596","indices":[9,20]},{"screen_name":"bestofrallylive","name":"Best-of-RallyLive","id":236757895,"id_str":"236757895","indices":[21,37]},{"screen_name":"WalesRallyGB","name":"Wales Rally GB","id":46359372,"id_str":"46359372","indices":[38,51]},{"screen_name":"MSportLtd","name":"M-Sport ","id":44864403,"id_str":"44864403","indices":[52,62]},{"screen_name":"HyundaiWRC","name":"Hyundai Motorsport","id":1731508382,"id_str":"1731508382","indices":[63,74]},{"screen_name":"VolkswagenRally","name":"VolkswagenMotorsport","id":1089291733,"id_str":"1089291733","indices":[75,91]},{"screen_name":"CitroenRacing","name":"Citro\u00ebn Racing","id":186113486,"id_str":"186113486","indices":[92,106]},{"screen_name":"EVENmanagement","name":"EVENmanagement","id":3042461884,"id_str":"3042461884","indices":[107,122]},{"screen_name":"HaydenPaddon","name":"Hayden Paddon","id":104931930,"id_str":"104931930","indices":[123,136]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080008666"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117076480,"id_str":"663727779117076480","text":"@love98683 \uadf8\uac70\ub9ce\uc774\ubcf4\ub354\ub77c\uad6c\uc694!!!!!!! \ud55c\ubc88\ub3c4\uc804\uc744\ud574\ubd10\uc57c\ud560\ucc38...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727465529913345,"in_reply_to_status_id_str":"663727465529913345","in_reply_to_user_id":4011635773,"in_reply_to_user_id_str":"4011635773","in_reply_to_screen_name":"love98683","user":{"id":3186396626,"id_str":"3186396626","name":"\ubc15\ud574\ud53c","screen_name":"aboutace_happy","location":"\uc6d0\ud53c\uc2a4 \ud558\uc774\ud050 \ubc14\ub77c\uce74\ubaac","url":null,"description":"\uc778\uc7a5 \uacb0\ub2d8 (*^0^*) \ud5e4\ub354 \ucf54\ub9f9\uc774 FUB FREE \ube14\ub85c\uadf8 \uacf5\uc0ac\uc911","protected":false,"verified":false,"followers_count":42,"friends_count":63,"listed_count":0,"favourites_count":117,"statuses_count":1305,"created_at":"Wed May 06 08:39:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663313480775176192\/T20hUnUm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663313480775176192\/T20hUnUm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3186396626\/1438949449","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"love98683","name":"\uce74\uac8c\uc57c\ub9c8\uc0ac\uc9c4\ubcf4\ub294\uaf2c\ub798\ub2d8","id":4011635773,"id_str":"4011635773","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108806660,"id_str":"663727779108806660","text":"RT @WalkingTrafford: More tree ID fun at Sale Water Park Saturday 14th @redroseforest @OfficialTfGM @CityofTreesMcr https:\/\/t.co\/vArTpUoZAJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067659537,"id_str":"3067659537","name":"Lucy Holland","screen_name":"RRFLucy","location":null,"url":"http:\/\/www.redroseforest.co.uk\/","description":"Heritage Trees Engagement Officer at Red Rose Forest","protected":false,"verified":false,"followers_count":82,"friends_count":249,"listed_count":8,"favourites_count":68,"statuses_count":205,"created_at":"Tue Mar 03 12:11:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575050605879783425\/r6E9wTEf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575050605879783425\/r6E9wTEf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067659537\/1441138640","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 16:02:31 +0000 2015","id":662661348866793472,"id_str":"662661348866793472","text":"More tree ID fun at Sale Water Park Saturday 14th @redroseforest @OfficialTfGM @CityofTreesMcr https:\/\/t.co\/vArTpUoZAJ","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3147679234,"id_str":"3147679234","name":"JanieRedRoseForest","screen_name":"WalkingTrafford","location":null,"url":null,"description":"Active Trafford Greenspace Officer","protected":false,"verified":false,"followers_count":148,"friends_count":183,"listed_count":7,"favourites_count":51,"statuses_count":263,"created_at":"Wed Apr 08 11:31:11 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649860377526857728\/6N2Z3_JC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649860377526857728\/6N2Z3_JC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3147679234\/1446074714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"redroseforest","name":"Red Rose Forest","id":185618226,"id_str":"185618226","indices":[50,64]},{"screen_name":"OfficialTfGM","name":"TfGM","id":262687993,"id_str":"262687993","indices":[65,78]},{"screen_name":"CityofTreesMcr","name":"City of Trees","id":3186699957,"id_str":"3186699957","indices":[79,94]}],"symbols":[],"media":[{"id":662661348720058368,"id_str":"662661348720058368","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","url":"https:\/\/t.co\/vArTpUoZAJ","display_url":"pic.twitter.com\/vArTpUoZAJ","expanded_url":"http:\/\/twitter.com\/WalkingTrafford\/status\/662661348866793472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":404,"h":605,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"large":{"w":404,"h":605,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662661348720058368,"id_str":"662661348720058368","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","url":"https:\/\/t.co\/vArTpUoZAJ","display_url":"pic.twitter.com\/vArTpUoZAJ","expanded_url":"http:\/\/twitter.com\/WalkingTrafford\/status\/662661348866793472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":404,"h":605,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"large":{"w":404,"h":605,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WalkingTrafford","name":"JanieRedRoseForest","id":3147679234,"id_str":"3147679234","indices":[3,19]},{"screen_name":"redroseforest","name":"Red Rose Forest","id":185618226,"id_str":"185618226","indices":[71,85]},{"screen_name":"OfficialTfGM","name":"TfGM","id":262687993,"id_str":"262687993","indices":[86,99]},{"screen_name":"CityofTreesMcr","name":"City of Trees","id":3186699957,"id_str":"3186699957","indices":[100,115]}],"symbols":[],"media":[{"id":662661348720058368,"id_str":"662661348720058368","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","url":"https:\/\/t.co\/vArTpUoZAJ","display_url":"pic.twitter.com\/vArTpUoZAJ","expanded_url":"http:\/\/twitter.com\/WalkingTrafford\/status\/662661348866793472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":404,"h":605,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"large":{"w":404,"h":605,"resize":"fit"}},"source_status_id":662661348866793472,"source_status_id_str":"662661348866793472","source_user_id":3147679234,"source_user_id_str":"3147679234"}]},"extended_entities":{"media":[{"id":662661348720058368,"id_str":"662661348720058368","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTI-_FjXIAA1lno.jpg","url":"https:\/\/t.co\/vArTpUoZAJ","display_url":"pic.twitter.com\/vArTpUoZAJ","expanded_url":"http:\/\/twitter.com\/WalkingTrafford\/status\/662661348866793472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":404,"h":605,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"large":{"w":404,"h":605,"resize":"fit"}},"source_status_id":662661348866793472,"source_status_id_str":"662661348866793472","source_user_id":3147679234,"source_user_id_str":"3147679234"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108642817,"id_str":"663727779108642817","text":"@yabai_yabai_3 \n\n\u3042\u304b\u3093\uff08\u7b11\uff09\n\u9593\u9055\u3048\u305f\uff08\u7b11\uff09\u3053\u308c\u9055\u3046\u30a2\u30ab\u3084\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726139303587840,"in_reply_to_status_id_str":"663726139303587840","in_reply_to_user_id":2375012024,"in_reply_to_user_id_str":"2375012024","in_reply_to_screen_name":"yabai_yabai_3","user":{"id":3945444193,"id_str":"3945444193","name":"\u30fb*:..\uff61o\u25cb\u263c*\uff9f\uff71 \uff79\uff9e \u8776","screen_name":"___a___g___h___","location":null,"url":null,"description":"\u6c17\u8c61\u7cfbBlue nr","protected":false,"verified":false,"followers_count":46,"friends_count":47,"listed_count":1,"favourites_count":15,"statuses_count":662,"created_at":"Mon Oct 19 09:11:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661180744174190592\/A6kYw_dN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661180744174190592\/A6kYw_dN_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yabai_yabai_3","name":"\u3010\u540d\u53e4\u5c4b\u4f59\u97fb\u3011\uff8b \uff81 \uff6e \uff90 \uff94","id":2375012024,"id_str":"2375012024","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104428032,"id_str":"663727779104428032","text":"@77min_you \u3042\u308a\u304c\u3068\u3046you\u3061\u3083\u3093\u266a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722157302648832,"in_reply_to_status_id_str":"663722157302648832","in_reply_to_user_id":3118384906,"in_reply_to_user_id_str":"3118384906","in_reply_to_screen_name":"77min_you","user":{"id":2274302762,"id_str":"2274302762","name":"\u30ec\u30a4\u306b\u306a\u308a\u307e\u3059\u304b\uff1f\u305d\u308c\u3068\u3082\u4eba\u9593\u3084\u3081\u307e\u3059\u304b","screen_name":"alicedolloxox","location":"\u3082\u307f\u3058\u307e\u3093\u3058\u3085\u3046\u306a\u3068\u3053\u308d\u306a\u30fc","url":"http:\/\/hibari.nana-music.com\/w\/profile\/720103\/","description":"\u540d\u524d\u306f\u8a3a\u65ad\u7d50\u679c0(:3 )\u301c\n\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3 \u30aa\u30af\u30bf\u30b7\u30e5\u30fc\u30bf\u30fc\u306b\u6d6e\u6c17\u4e2d\u2190\n\u30a2\u30a4\u30b3\u30f3\u66f4\u96db\u3055\u3093(@Sarashina58 ) \u8a00\u3044\u305f\u3044\u3053\u3068\u66f8\u3044\u3066\u308b\u3064\u3044\u3077\u308d\u2192https:\/\/t.co\/hEOtd7onal(\u307e\u308c\u306b\u66f4\u65b0) \n\u306e\u3093\u3073\u308a\u305f\u307e\u306bnana\u3084\u3063\u3066\u308b\u3093\n\u4e00\u5fdc\u306a \u306e\u305e\u307f\u56e3 \u56e3\u9577 \u307e\u307f\u3085\u3055\u3093(@oosawabream )","protected":false,"verified":false,"followers_count":202,"friends_count":177,"listed_count":11,"favourites_count":19716,"statuses_count":11818,"created_at":"Fri Jan 03 10:20:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660482945006727168\/D6bqUNsj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660482945006727168\/D6bqUNsj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2274302762\/1442422137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"77min_you","name":"you@nana","id":3118384906,"id_str":"3118384906","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779112882176,"id_str":"663727779112882176","text":"..?\uc65c..? https:\/\/t.co\/F7wN4FhpKq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222223662,"id_str":"3222223662","name":"\u2744(\ubc18\ub3d9\uacb0)\uc2ed\uae0d\u2744","screen_name":"sibgeng","location":null,"url":null,"description":"\uc5b8\ud314\ub9d0\uad6c\ube14\uc5b8\ube14\ud574\uc8fc\uc138\uc694","protected":false,"verified":false,"followers_count":156,"friends_count":128,"listed_count":0,"favourites_count":80,"statuses_count":6154,"created_at":"Thu May 21 12:44:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661932520305397760\/oTYviEaM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661932520305397760\/oTYviEaM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222223662\/1445530002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663710101048430593,"quoted_status_id_str":"663710101048430593","quoted_status":{"created_at":"Mon Nov 09 13:29:53 +0000 2015","id":663710101048430593,"id_str":"663710101048430593","text":"2016\ud559\ub144\ub3c4 \uc218\ub2a5 \uac00\uc7a5 \uc798 \ubcfc \uac83 \uac19\uc740 \uc544\uc774\ub3cc https:\/\/t.co\/CELxqmp30M https:\/\/t.co\/dZhVNFPvuW","source":"\u003ca href=\"http:\/\/www.instiz.net\" rel=\"nofollow\"\u003einstiz\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184363884,"id_str":"184363884","name":"\uc778\uc2a4\ud2f0\uc988 \uc5f0\uc608\uc18c\uc2dd","screen_name":"instiz","location":"\ub9ce\uc740 \uc5f0\uc608\uacc4 \uc774\uc288\uac00 \uc5ec\uae30\uc11c \uc2dc\uc791!","url":"http:\/\/www.instiz.net","description":"\uad6d\ub0b4 \ucd5c\ub300\uc758 \uc5f0\uc608\uc624\ub77d \ucee4\ubba4\ub2c8\ud2f0, \uc778\uc2a4\ud2f0\uc988","protected":false,"verified":false,"followers_count":255357,"friends_count":234828,"listed_count":478,"favourites_count":0,"statuses_count":26234,"created_at":"Sun Aug 29 10:43:08 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000001380770\/0b0611f726d7cbba57d61b8d37e1b82b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000001380770\/0b0611f726d7cbba57d61b8d37e1b82b.png","profile_background_tile":false,"profile_link_color":"0DAB57","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648921124147847169\/rnV5IlDO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648921124147847169\/rnV5IlDO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184363884\/1420742846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CELxqmp30M","expanded_url":"http:\/\/inti.kr\/pt\/3362163","display_url":"inti.kr\/pt\/3362163","indices":[27,50]}],"user_mentions":[],"symbols":[],"media":[{"id":663710100893270016,"id_str":"663710100893270016","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX40f2VAAA92yd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX40f2VAAA92yd.jpg","url":"https:\/\/t.co\/dZhVNFPvuW","display_url":"pic.twitter.com\/dZhVNFPvuW","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663710101048430593\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":465,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710100893270016,"id_str":"663710100893270016","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX40f2VAAA92yd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX40f2VAAA92yd.jpg","url":"https:\/\/t.co\/dZhVNFPvuW","display_url":"pic.twitter.com\/dZhVNFPvuW","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663710101048430593\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":465,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F7wN4FhpKq","expanded_url":"https:\/\/twitter.com\/instiz\/status\/663710101048430593","display_url":"twitter.com\/instiz\/status\/\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080008663"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104473088,"id_str":"663727779104473088","text":"RT @Glamour0303: \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e42\u0e14\u0e2d\u0e38\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e31\u0e27\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \u0e1f\u0e31\u0e14\u0e14\u0e14 https:\/\/t.co\/cJNoFvQPUe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1282845962,"id_str":"1282845962","name":"\ubc40\ubc40 bambam","screen_name":"nun_nunlove621","location":"korea ","url":"http:\/\/facebook.com\/nopmanee.sithammaporn","description":"GOT7+IGOT7=\u2764\ufe0f|MONSTA X,EXO |SNSD,APINK,G-Friend,Twice \u0e21\u0e35\u0e2d\u0e35\u0e01\u0e40\u0e22\u0e2d\u0e30\u0e19\u0e48\u0e30| #BAMBAM| \u0e0a\u0e34\u0e1b\u0e17\u0e38\u0e01\u0e04\u0e39\u0e48\u0e17\u0e35\u0e48\u0e21\u0e35\u0e41\u0e1a\u0e21|\u0e0a\u0e2d\u0e1a\u0e1a\u0e48\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e17\u0e23\u0e19\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2a\u0e32\u0e21\u0e35 \u0e17\u0e27\u0e34\u0e15\u0e40\u0e23\u0e32\u0e04\u0e27\u0e23\u0e2a\u0e07\u0e1a\u0e2a\u0e38\u0e02\u0e01\u0e27\u0e48\u0e32\u0e19\u0e35\u0e49 \u0e04\u0e34\u0e14\u0e43\u0e2b\u0e49\u0e14\u0e35\u0e46\u0e01\u0e48\u0e2d\u0e19\u0e1f\u0e2d\u0e25","protected":false,"verified":false,"followers_count":102,"friends_count":670,"listed_count":2,"favourites_count":2105,"statuses_count":31341,"created_at":"Wed Mar 20 09:48:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FE4365","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034408936779\/4d5bb9664055040048067900a2a35f66.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034408936779\/4d5bb9664055040048067900a2a35f66.jpeg","profile_background_tile":true,"profile_link_color":"FC9D9A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C8C8A9","profile_text_color":"F9CDAD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661127596017455105\/_rlgi0jU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661127596017455105\/_rlgi0jU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1282845962\/1446398532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 03:44:22 +0000 2015","id":661750808715722752,"id_str":"661750808715722752","text":"\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e42\u0e14\u0e2d\u0e38\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e31\u0e27\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \u0e1f\u0e31\u0e14\u0e14\u0e14 https:\/\/t.co\/cJNoFvQPUe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2918243623,"id_str":"2918243623","name":"\u0e17\u0e32\u0e2a\u0e42\u0e14\u0e2d\u0e38\u0e19","screen_name":"Glamour0303","location":"\u0e40\u0e27\u0e04\u0e37\u0e2d\u0e41\u0e23\u0e0b\u0e0b\u0e2d\u0e40\u0e1a\u0e40\u0e1a\u0e49","url":null,"description":"Dowoon | \u0e17\u0e32\u0e2a\u0e42\u0e14\u0e2d\u0e38\u0e19 \u0e17\u0e32\u0e2a\u0e42\u0e14\u0e2d\u0e38\u0e19 \u0e17\u0e32\u0e2a\u0e42\u0e14\u0e2d\u0e38\u0e19 | eng\/th","protected":false,"verified":false,"followers_count":37,"friends_count":61,"listed_count":0,"favourites_count":30,"statuses_count":661,"created_at":"Thu Dec 04 05:30:14 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661520929130811392\/XpyfX_tR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661520929130811392\/XpyfX_tR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918243623\/1445364792","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661750735869075456,"id_str":"661750735869075456","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","url":"https:\/\/t.co\/cJNoFvQPUe","display_url":"pic.twitter.com\/cJNoFvQPUe","expanded_url":"http:\/\/twitter.com\/Glamour0303\/status\/661750808715722752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":145,"resize":"crop"},"small":{"w":268,"h":145,"resize":"fit"},"large":{"w":268,"h":145,"resize":"fit"},"medium":{"w":268,"h":145,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661750735869075456,"id_str":"661750735869075456","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","url":"https:\/\/t.co\/cJNoFvQPUe","display_url":"pic.twitter.com\/cJNoFvQPUe","expanded_url":"http:\/\/twitter.com\/Glamour0303\/status\/661750808715722752\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":145,"resize":"crop"},"small":{"w":268,"h":145,"resize":"fit"},"large":{"w":268,"h":145,"resize":"fit"},"medium":{"w":268,"h":145,"resize":"fit"}},"video_info":{"aspect_ratio":[268,145],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS8CycVUYAAFxED.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Glamour0303","name":"\u0e17\u0e32\u0e2a\u0e42\u0e14\u0e2d\u0e38\u0e19","id":2918243623,"id_str":"2918243623","indices":[3,15]}],"symbols":[],"media":[{"id":661750735869075456,"id_str":"661750735869075456","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","url":"https:\/\/t.co\/cJNoFvQPUe","display_url":"pic.twitter.com\/cJNoFvQPUe","expanded_url":"http:\/\/twitter.com\/Glamour0303\/status\/661750808715722752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":145,"resize":"crop"},"small":{"w":268,"h":145,"resize":"fit"},"large":{"w":268,"h":145,"resize":"fit"},"medium":{"w":268,"h":145,"resize":"fit"}},"source_status_id":661750808715722752,"source_status_id_str":"661750808715722752","source_user_id":2918243623,"source_user_id_str":"2918243623"}]},"extended_entities":{"media":[{"id":661750735869075456,"id_str":"661750735869075456","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS8CycVUYAAFxED.png","url":"https:\/\/t.co\/cJNoFvQPUe","display_url":"pic.twitter.com\/cJNoFvQPUe","expanded_url":"http:\/\/twitter.com\/Glamour0303\/status\/661750808715722752\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":145,"resize":"crop"},"small":{"w":268,"h":145,"resize":"fit"},"large":{"w":268,"h":145,"resize":"fit"},"medium":{"w":268,"h":145,"resize":"fit"}},"source_status_id":661750808715722752,"source_status_id_str":"661750808715722752","source_user_id":2918243623,"source_user_id_str":"2918243623","video_info":{"aspect_ratio":[268,145],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS8CycVUYAAFxED.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779121360897,"id_str":"663727779121360897","text":"eu fui p gol na hora do jogo ne mas eu fiquei com medo da julia come\u00e7ar a encher o p\u00e9 ai dps do primeiro gol q eu levei eu sai","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107570841,"id_str":"107570841","name":"isabwlla","screen_name":"alrenua","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4264,"friends_count":2421,"listed_count":52,"favourites_count":4048,"statuses_count":176773,"created_at":"Sat Jan 23 01:01:53 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635927670187008000\/SchBtc8i.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635927670187008000\/SchBtc8i.png","profile_background_tile":true,"profile_link_color":"111111","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662283531012464640\/Tl304SX-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662283531012464640\/Tl304SX-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107570841\/1446735288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008665"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108642816,"id_str":"663727779108642816","text":"Thankful for another day...#Blessed !!\ud83d\ude4f\ud83c\udffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2392628338,"id_str":"2392628338","name":"SPEEDY","screen_name":"Flatout_Speedy2","location":null,"url":null,"description":"LEXUS9\u20e3\u2764\ufe0f1\u20e38\u20e3\u2764\ufe0f1\u20e34\u20e3Thankful & Blessed BALL IS LIFE!!!!! Positive Day #PD #0 MD\u2708\ufe0fNC","protected":false,"verified":false,"followers_count":1709,"friends_count":1641,"listed_count":2,"favourites_count":1004,"statuses_count":2751,"created_at":"Sat Mar 08 02:17:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651952196003725313\/T5QTJOmR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651952196003725313\/T5QTJOmR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2392628338\/1445264546","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Blessed","indices":[27,35]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779121377280,"id_str":"663727779121377280","text":"RT @VoceNaoSabiaQ: Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":958902650,"id_str":"958902650","name":"Vitu","screen_name":"victorslvaa","location":"S\u00e3o Lu\u00eds, Maranh\u00e3o","url":null,"description":"This Was Tomorrow","protected":false,"verified":false,"followers_count":1248,"friends_count":456,"listed_count":1,"favourites_count":16559,"statuses_count":37133,"created_at":"Mon Nov 19 23:32:49 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618487987068911616\/ycEL1Nbd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618487987068911616\/ycEL1Nbd.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718940573593604\/hd-tVlry_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718940573593604\/hd-tVlry_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/958902650\/1439419990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:18 +0000 2015","id":663725303315890176,"id_str":"663725303315890176","text":"Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e estado emocional.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558141890,"id_str":"1558141890","name":"Voc\u00ea Sabia?","screen_name":"VoceNaoSabiaQ","location":"Brasil","url":"http:\/\/instagram.com\/VoceNaoSabiaQ","description":"Curiosidades, fotos e fatos interessantes sobre o mundo e as pessoas que provavelmente voc\u00ea n\u00e3o sabia. \r\nContato: vocenaosabiaq@hotmail.com","protected":false,"verified":false,"followers_count":1927644,"friends_count":1,"listed_count":487,"favourites_count":799,"statuses_count":43683,"created_at":"Sun Jun 30 14:23:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9E2709","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_tile":false,"profile_link_color":"ED0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558141890\/1389764551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":277,"favorite_count":243,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VoceNaoSabiaQ","name":"Voc\u00ea Sabia?","id":1558141890,"id_str":"1558141890","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080008665"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100381185,"id_str":"663727779100381185","text":"RT @abbychansen: ok this is my favorite thing ever https:\/\/t.co\/8tXKBvQuYi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2562288472,"id_str":"2562288472","name":"M\u0101r","screen_name":"freehugs2010","location":"A fumare con Zayn","url":"http:\/\/TaylorSwift.com","description":"Il tuo sorriso che cos'era? Un pezzo di volta celeste pura in mezzo a tutta 'sta bufera (voglia di andare lontano)","protected":false,"verified":false,"followers_count":1567,"friends_count":1584,"listed_count":3,"favourites_count":1477,"statuses_count":4181,"created_at":"Sat May 24 17:49:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618737096157753344\/XivqFbvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618737096157753344\/XivqFbvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2562288472\/1436353393","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:47:59 +0000 2015","id":663533461999890432,"id_str":"663533461999890432","text":"ok this is my favorite thing ever https:\/\/t.co\/8tXKBvQuYi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318723931,"id_str":"318723931","name":"Abigail Hansen","screen_name":"abbychansen","location":"wishing i was in nyc ","url":"http:\/\/lostt-instereo.tumblr.com","description":"i drink too much coffee, laugh too loud, and watch too much greys anatomy. i kinda sing and kinda write songs. \u2661","protected":false,"verified":false,"followers_count":33508,"friends_count":3397,"listed_count":93,"favourites_count":10773,"statuses_count":5895,"created_at":"Thu Jun 16 23:19:33 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625807043190984704\/no6880yK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625807043190984704\/no6880yK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318723931\/1392496865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":279,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663533455175651328,"id_str":"663533455175651328","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663533455175651328,"id_str":"663533455175651328","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663533455544717312,"id_str":"663533455544717312","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKYpUkAAZlWf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKYpUkAAZlWf.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663533456140275712,"id_str":"663533456140275712","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKa3UEAATVX9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKa3UEAATVX9.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":630,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":590,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}}},{"id":663533456144490496,"id_str":"663533456144490496","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKa4UYAAKbRg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKa4UYAAKbRg.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":585,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":624,"resize":"fit"},"small":{"w":340,"h":331,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abbychansen","name":"Abigail Hansen","id":318723931,"id_str":"318723931","indices":[3,15]}],"symbols":[],"media":[{"id":663533455175651328,"id_str":"663533455175651328","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663533461999890432,"source_status_id_str":"663533461999890432","source_user_id":318723931,"source_user_id_str":"318723931"}]},"extended_entities":{"media":[{"id":663533455175651328,"id_str":"663533455175651328","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKXRVEAAS_gt.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663533461999890432,"source_status_id_str":"663533461999890432","source_user_id":318723931,"source_user_id_str":"318723931"},{"id":663533455544717312,"id_str":"663533455544717312","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKYpUkAAZlWf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKYpUkAAZlWf.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663533461999890432,"source_status_id_str":"663533461999890432","source_user_id":318723931,"source_user_id_str":"318723931"},{"id":663533456140275712,"id_str":"663533456140275712","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKa3UEAATVX9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKa3UEAATVX9.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":630,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":590,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":663533461999890432,"source_status_id_str":"663533461999890432","source_user_id":318723931,"source_user_id_str":"318723931"},{"id":663533456144490496,"id_str":"663533456144490496","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVYKa4UYAAKbRg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVYKa4UYAAKbRg.jpg","url":"https:\/\/t.co\/8tXKBvQuYi","display_url":"pic.twitter.com\/8tXKBvQuYi","expanded_url":"http:\/\/twitter.com\/abbychansen\/status\/663533461999890432\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":585,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":624,"resize":"fit"},"small":{"w":340,"h":331,"resize":"fit"}},"source_status_id":663533461999890432,"source_status_id_str":"663533461999890432","source_user_id":318723931,"source_user_id_str":"318723931"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779100368896,"id_str":"663727779100368896","text":"No https:\/\/t.co\/bqWDUS0YKP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448265184,"id_str":"448265184","name":"\u2728M A G A L I\u2728","screen_name":"MMagalobo","location":"Tucum\u00e1n, Argentina","url":null,"description":"15 a\u00f1os||Capricorniana\u2651||NTVGero|Scout\u2665|\n\u25a01 a\u00f1o. #BangerzTour\u25a0\n\n\u2661\u300aQUE DE LA MANO DE CARLOS TEVEZ TODOS LA VUELTA VAMOS A DAR\u300b\u2661\n\u2764BOCAMPE\u00d3N\u2764","protected":false,"verified":false,"followers_count":3009,"friends_count":2842,"listed_count":7,"favourites_count":538,"statuses_count":29520,"created_at":"Tue Dec 27 20:17:48 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"09C3F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483362810735243264\/b5B59Ju6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483362810735243264\/b5B59Ju6.jpeg","profile_background_tile":true,"profile_link_color":"0EB4F0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660958200280301568\/xUNhY5Z1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660958200280301568\/xUNhY5Z1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448265184\/1400628512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662968186934005760,"quoted_status_id_str":"662968186934005760","quoted_status":{"created_at":"Sat Nov 07 12:21:47 +0000 2015","id":662968186934005760,"id_str":"662968186934005760","text":"\ud83c\udf34cita y responde\ud83c\udf34\n\n501: \u00bfrealmente le encontras olor a las rosas?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":796611601,"id_str":"796611601","name":"\u00ad\u00ad\u00ad\u00adk\u00adarina\u0b6d\u0325*","screen_name":"beingtrola","location":"kacundo","url":"http:\/\/w.tt\/1EgaUt0","description":"mi nombre es ricardo haceme un petardo tengo la garcha corta pero los huevos largos \u00bblary\u00ab \u00bb724 km\u00ab \u00bbsuarezsquad\u00ab","protected":false,"verified":false,"followers_count":4893,"friends_count":3246,"listed_count":3,"favourites_count":1768,"statuses_count":22450,"created_at":"Sat Sep 01 18:22:18 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647883016061235201\/VM0YFyW-.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647883016061235201\/VM0YFyW-.png","profile_background_tile":true,"profile_link_color":"003366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663128725601574912\/0H20nWWB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663128725601574912\/0H20nWWB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796611601\/1446937404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bqWDUS0YKP","expanded_url":"https:\/\/twitter.com\/beingtrola\/status\/662968186934005760","display_url":"twitter.com\/beingtrola\/sta\u2026","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080008660"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779091845121,"id_str":"663727779091845121","text":"BALKES TEK ATTI 3 ALDI #bal\u0131kesirspor https:\/\/t.co\/IDoQCg8HAx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3226294625,"id_str":"3226294625","name":"Bal\u0131kesir Demokrat","screen_name":"blkdemokrat","location":"Bal\u0131kesir, T\u00fcrkiye","url":"http:\/\/balikesirdemokrat.com.tr","description":null,"protected":false,"verified":false,"followers_count":89,"friends_count":17,"listed_count":1,"favourites_count":0,"statuses_count":555,"created_at":"Fri May 01 14:26:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594163526844993537\/maIScplK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594163526844993537\/maIScplK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3226294625\/1430491751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bal\u0131kesirspor","indices":[23,37]}],"urls":[{"url":"https:\/\/t.co\/IDoQCg8HAx","expanded_url":"http:\/\/www.balikesirdemokrat.com.tr\/haber\/spor\/309\/balkes_tek_atti_3_aldi.html#.VkCwPwf-gFk.twitter","display_url":"balikesirdemokrat.com.tr\/haber\/spor\/309\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779092037632,"id_str":"663727779092037632","text":"stuck between wanting to be a writer, firefighter, humanitarian, or world traveler","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":445162680,"id_str":"445162680","name":"melissa","screen_name":"emmspinola","location":"\u2708\ufe0f ","url":null,"description":"search for peace within yourself, then the world.","protected":false,"verified":false,"followers_count":1471,"friends_count":1407,"listed_count":4,"favourites_count":18187,"statuses_count":64758,"created_at":"Sat Dec 24 02:52:11 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636919660278083584\/Ip_m5moX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636919660278083584\/Ip_m5moX.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401088197001216\/uVAPdYok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401088197001216\/uVAPdYok_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445162680\/1446943904","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008658"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117056001,"id_str":"663727779117056001","text":"Banyak Pho, harus hati hati yuhuuuu","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1640532738,"id_str":"1640532738","name":"ntta","screen_name":"thathachiinong1","location":"ciawi bogor","url":"http:\/\/twitter.com","description":"ketika kamu terluka, kamu mungkin menderita namun slalu ada pelajaran yang membuat mu semakin bijaksana. jadilah pribdi ya kuat.","protected":false,"verified":false,"followers_count":58,"friends_count":131,"listed_count":0,"favourites_count":7,"statuses_count":56,"created_at":"Fri Aug 02 14:17:12 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532387886180859904\/VlELF8Xq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532387886180859904\/VlELF8Xq_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108679680,"id_str":"663727779108679680","text":"Keeping your attention on the here and now could be tricky bus... More for Aquarius https:\/\/t.co\/0OOCFwXAdL","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149571658,"id_str":"149571658","name":"under repair....","screen_name":"SourPatchKido7_","location":"\u2714 Ho[US]ton","url":null,"description":"im tht bxtch u dream abt; beauty && brains wid my bxtch's @DoubleDutchBarb @HeatherLynn93_ lookin' pretty! \u2605","protected":false,"verified":false,"followers_count":251,"friends_count":498,"listed_count":0,"favourites_count":29,"statuses_count":6428,"created_at":"Sat May 29 16:44:51 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8F0E7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/173976911\/Nicki_Minaj_2_medium.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/173976911\/Nicki_Minaj_2_medium.jpg","profile_background_tile":true,"profile_link_color":"929990","profile_sidebar_border_color":"121211","profile_sidebar_fill_color":"1D1F1D","profile_text_color":"878287","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2071397529\/IMG_20120408_192010_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2071397529\/IMG_20120408_192010_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0OOCFwXAdL","expanded_url":"http:\/\/bit.ly\/whBNNw","display_url":"bit.ly\/whBNNw","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008662"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117056000,"id_str":"663727779117056000","text":"@basketaisiteru7 \n\u3044\u3044\u3048\ud83d\ude0b\u2600\n\u3053\u3061\u3089\u3053\u305d\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727428955586561,"in_reply_to_status_id_str":"663727428955586561","in_reply_to_user_id":3401719934,"in_reply_to_user_id_str":"3401719934","in_reply_to_screen_name":"basketaisiteru7","user":{"id":3255651140,"id_str":"3255651140","name":"\u2764\u5c0f\u7027 \u7a42\u4e43\u7f8e \u57ce\u30db\u21d43,24\u53c2\u6226\u2764","screen_name":"hono20001028","location":"\u2661\u5c0f\u7027\u671b\uff78\uff9d\u3068\u7d50\u5a5a\u3057\u307e\u3059\u21d44\u6b73\u5dee\u306726\u3322\u5dee\u592b\u5a66\u2661","url":null,"description":"\u5c0f\u7027love\u2026\u2661\uff7c\uff9e\uff6c\uff86\uff7d\uff84\u21927\u4f8d\u3002twinlove\u2026\u2661\u95a2\u897f\u2192\u5927\u962a \u3002\uff8a\uff9f\uff98\uff8b\uff9f\uff8e\uff9f\u53c2\u6226\u6e08(\u5927\u962a\u57ce\u30db\u30fc\u30eb)\\\u2721\/\uff8c\uff6b\uff9b\uff9c\uff70730%\u8fd4\u3057\u307e\u3059\uff01 \u53d7\u9a13\u751f\/\u5927\u962a\/\u5d50\/\uff74\uff72\uff84\/\uff7c\uff9e\uff6c\uff86\uff7d\uff84\/\uff8c\uff6b\uff9b~\u304a\u9858\u3044\u3057\u307e\u3059\u2026\u2661 00line \u4e95\u4e0a\u745e\u7a00\u4e16\u4ee3\/\uff7c\uff9e\uff6c\uff86\uff75\uff80\/\u306b\u3053\u308b\u3093\u2764\uff0f","protected":false,"verified":false,"followers_count":927,"friends_count":920,"listed_count":2,"favourites_count":317,"statuses_count":2111,"created_at":"Thu Jun 25 13:43:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660107697434419201\/QyoHm6eu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660107697434419201\/QyoHm6eu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3255651140\/1446214918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"basketaisiteru7","name":"\u3042\u3055\u3072","id":3401719934,"id_str":"3401719934","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096072192,"id_str":"663727779096072192","text":"RT @Utwnov19: \u3046\u305f\u30d7\u30ea\u30b3\u30e1\u30f3\u30c8\u56db\u5929\u738b http:\/\/t.co\/qL7eUzpu30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052243496,"id_str":"3052243496","name":"\u306f\u308b","screen_name":"kashima_to","location":null,"url":null,"description":"\u304a\u3066\u304f\u308a\u4e0b\u3055\u3044 \u99c4\u76ee\u306a\u3089\u5927\u5036\u5229\u4f3d\u7f85\u53d7\u3051\u4e0b\u3055\u3044\uff08\u30cf\u30a4\u30ad\u30e5\u30fc\uff01\uff01\u3068\u30dd\u30b1\u30e2\u30f3\u597d\u304d\u306a\u672c\u57a2\u2192@tappagohann\uff0f\u8868\u306b\u51fa\u305b\u306a\u3044\u30b9\u30b1\u30d9\u545f\u304d\u2192@kashima_skb\uff09","protected":false,"verified":false,"followers_count":67,"friends_count":126,"listed_count":2,"favourites_count":15571,"statuses_count":6512,"created_at":"Sun Mar 01 10:54:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661890999866671104\/7r1aAlw3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661890999866671104\/7r1aAlw3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052243496\/1444487046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 08 14:52:11 +0000 2015","id":618794716990083073,"id_str":"618794716990083073","text":"\u3046\u305f\u30d7\u30ea\u30b3\u30e1\u30f3\u30c8\u56db\u5929\u738b http:\/\/t.co\/qL7eUzpu30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1735050066,"id_str":"1735050066","name":"\u8056 \u5ddd \u60a0","screen_name":"Utwnov19","location":"\u261e20\u2640\u261e\u30d7\u30ea\u30e9\u30a45th\u53c2\u6226","url":"http:\/\/twpf.jp\/Utwnov19","description":"\u2741\u5fc3\u306e\u30c0\u30e0\u5d29\u58ca\u5f8c\u611b\u306e\u30d8\u30ea\u3067\u30ce\u30c3\u30ad\u30f3\u30aa\u30f3\u30b6\u30de\u30a4\u30f3\u30c9\u2741Love\u2026\u2026\u261e@Masato_H_SH","protected":false,"verified":false,"followers_count":8254,"friends_count":6656,"listed_count":228,"favourites_count":16745,"statuses_count":70361,"created_at":"Fri Sep 06 13:10:01 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"004B8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515098847320625152\/kaSMpbuG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515098847320625152\/kaSMpbuG.jpeg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643024126798528514\/cwJO6esF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643024126798528514\/cwJO6esF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735050066\/1444547795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43165,"favorite_count":38148,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":618794703966724096,"id_str":"618794703966724096","indices":[12,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":634,"h":358,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":618794703966724096,"id_str":"618794703966724096","indices":[12,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":634,"h":358,"resize":"fit"}}},{"id":618794704100921345,"id_str":"618794704100921345","indices":[12,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgT7UEAE8s0Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgT7UEAE8s0Z.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":566,"h":367,"resize":"fit"},"medium":{"w":566,"h":367,"resize":"fit"}}},{"id":618794704230952960,"id_str":"618794704230952960","indices":[12,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgUaUMAAuWJl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgUaUMAAuWJl.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":503,"h":284,"resize":"fit"},"medium":{"w":503,"h":284,"resize":"fit"}}},{"id":618794704704901121,"id_str":"618794704704901121","indices":[12,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgWLUEAEsBet.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgWLUEAEsBet.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"large":{"w":523,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":523,"h":312,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Utwnov19","name":"\u8056 \u5ddd \u60a0","id":1735050066,"id_str":"1735050066","indices":[3,12]}],"symbols":[],"media":[{"id":618794703966724096,"id_str":"618794703966724096","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":634,"h":358,"resize":"fit"}},"source_status_id":618794716990083073,"source_status_id_str":"618794716990083073","source_user_id":1735050066,"source_user_id_str":"1735050066"}]},"extended_entities":{"media":[{"id":618794703966724096,"id_str":"618794703966724096","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgTbUYAAK6-E.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":634,"h":358,"resize":"fit"}},"source_status_id":618794716990083073,"source_status_id_str":"618794716990083073","source_user_id":1735050066,"source_user_id_str":"1735050066"},{"id":618794704100921345,"id_str":"618794704100921345","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgT7UEAE8s0Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgT7UEAE8s0Z.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":566,"h":367,"resize":"fit"},"medium":{"w":566,"h":367,"resize":"fit"}},"source_status_id":618794716990083073,"source_status_id_str":"618794716990083073","source_user_id":1735050066,"source_user_id_str":"1735050066"},{"id":618794704230952960,"id_str":"618794704230952960","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgUaUMAAuWJl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgUaUMAAuWJl.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":503,"h":284,"resize":"fit"},"medium":{"w":503,"h":284,"resize":"fit"}},"source_status_id":618794716990083073,"source_status_id_str":"618794716990083073","source_user_id":1735050066,"source_user_id_str":"1735050066"},{"id":618794704704901121,"id_str":"618794704704901121","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CJZmgWLUEAEsBet.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJZmgWLUEAEsBet.jpg","url":"http:\/\/t.co\/qL7eUzpu30","display_url":"pic.twitter.com\/qL7eUzpu30","expanded_url":"http:\/\/twitter.com\/Utwnov19\/status\/618794716990083073\/photo\/1","type":"photo","sizes":{"large":{"w":523,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":523,"h":312,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":618794716990083073,"source_status_id_str":"618794716990083073","source_user_id":1735050066,"source_user_id_str":"1735050066"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779125547010,"id_str":"663727779125547010","text":"RT @bestsolos: spread this, it's important https:\/\/t.co\/wehLPUBWod","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1686082015,"id_str":"1686082015","name":"Payne's_mic_flipping","screen_name":"neXt_neXus_xx","location":"1Derland, parallel universe...","url":null,"description":"WHY LIAM PAYNE IS THE MOST TALENTED BUT UNDER APPRECIATED SINGER IN THE WORLD????\n\nI fb every directioners:-) just waiting for the follow limit to be overed.","protected":false,"verified":false,"followers_count":1180,"friends_count":2000,"listed_count":7,"favourites_count":1351,"statuses_count":5229,"created_at":"Tue Aug 20 15:28:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630022374448955392\/lkQIYNrP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630022374448955392\/lkQIYNrP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1686082015\/1439044368","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:13:59 +0000 2015","id":663524905724583937,"id_str":"663524905724583937","text":"spread this, it's important https:\/\/t.co\/wehLPUBWod","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3292527471,"id_str":"3292527471","name":"olivia","screen_name":"bestsolos","location":"emily","url":null,"description":"the summertime and butterflies","protected":false,"verified":false,"followers_count":1810,"friends_count":74,"listed_count":10,"favourites_count":88,"statuses_count":23245,"created_at":"Thu May 21 06:54:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663546166924152832\/cXhQqYVZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663546166924152832\/cXhQqYVZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292527471\/1447036709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":801,"favorite_count":589,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663524895901556736,"id_str":"663524895901556736","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":741,"resize":"fit"},"small":{"w":340,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663524895901556736,"id_str":"663524895901556736","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":741,"resize":"fit"},"small":{"w":340,"h":393,"resize":"fit"}}},{"id":663524896094478337,"id_str":"663524896094478337","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYKNW4AEO3JB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYKNW4AEO3JB.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"medium":{"w":600,"h":331,"resize":"fit"},"large":{"w":640,"h":354,"resize":"fit"}}},{"id":663524895985410048,"id_str":"663524895985410048","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJzWoAA6UqL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJzWoAA6UqL.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":838,"resize":"fit"},"small":{"w":340,"h":445,"resize":"fit"},"medium":{"w":600,"h":785,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bestsolos","name":"olivia","id":3292527471,"id_str":"3292527471","indices":[3,13]}],"symbols":[],"media":[{"id":663524895901556736,"id_str":"663524895901556736","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":741,"resize":"fit"},"small":{"w":340,"h":393,"resize":"fit"}},"source_status_id":663524905724583937,"source_status_id_str":"663524905724583937","source_user_id":3292527471,"source_user_id_str":"3292527471"}]},"extended_entities":{"media":[{"id":663524895901556736,"id_str":"663524895901556736","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJfXIAAYuAA.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":694,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":741,"resize":"fit"},"small":{"w":340,"h":393,"resize":"fit"}},"source_status_id":663524905724583937,"source_status_id_str":"663524905724583937","source_user_id":3292527471,"source_user_id_str":"3292527471"},{"id":663524896094478337,"id_str":"663524896094478337","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYKNW4AEO3JB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYKNW4AEO3JB.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"medium":{"w":600,"h":331,"resize":"fit"},"large":{"w":640,"h":354,"resize":"fit"}},"source_status_id":663524905724583937,"source_status_id_str":"663524905724583937","source_user_id":3292527471,"source_user_id_str":"3292527471"},{"id":663524895985410048,"id_str":"663524895985410048","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQYJzWoAA6UqL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQYJzWoAA6UqL.jpg","url":"https:\/\/t.co\/wehLPUBWod","display_url":"pic.twitter.com\/wehLPUBWod","expanded_url":"http:\/\/twitter.com\/bestsolos\/status\/663524905724583937\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":838,"resize":"fit"},"small":{"w":340,"h":445,"resize":"fit"},"medium":{"w":600,"h":785,"resize":"fit"}},"source_status_id":663524905724583937,"source_status_id_str":"663524905724583937","source_user_id":3292527471,"source_user_id_str":"3292527471"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008666"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779104628736,"id_str":"663727779104628736","text":"@xOmar__Napoli @_A7MDFCB_ \u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663467676027756544,"in_reply_to_status_id_str":"663467676027756544","in_reply_to_user_id":2497127851,"in_reply_to_user_id_str":"2497127851","in_reply_to_screen_name":"xOmar__Napoli","user":{"id":752205096,"id_str":"752205096","name":"\u0627\u0644\u0641\u064a\u0646\u0648\u0645\u064a\u0646\u0627\u0633\u062a\u0643\u0648#87","screen_name":"abomsa3id","location":null,"url":null,"description":"JM14\u2764 https:\/\/twitter.com\/abomsa3id\/status\/596795725733724160","protected":false,"verified":false,"followers_count":1941,"friends_count":389,"listed_count":8,"favourites_count":315,"statuses_count":91687,"created_at":"Sun Aug 12 01:12:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619739202066870272\/LDHiUFQh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619739202066870272\/LDHiUFQh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752205096\/1438452023","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xOmar__Napoli","name":"\u0639\u064c\u0645\u0631 | M10","id":2497127851,"id_str":"2497127851","indices":[0,14]},{"screen_name":"_A7MDFCB_","name":"\u0627\u062d\u0645\u062f\u064a\u0646\u0647\u0648.","id":788479644,"id_str":"788479644","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080008661"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779096174592,"id_str":"663727779096174592","text":"Senator Blasts #TPP as \u201cGlobal Governance,\u201d Says Stop Fast-Track |https:\/\/t.co\/7E9P3991UG #JeffSessions","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86096628,"id_str":"86096628","name":"TheNewAmerican","screen_name":"NewAmericanMag","location":"America","url":"http:\/\/www.TheNewAmerican.com","description":"The nation's best pro-liberty magazine. Working to ensure that Freedom Shall Not Perish since 1985.","protected":false,"verified":false,"followers_count":8625,"friends_count":798,"listed_count":446,"favourites_count":48,"statuses_count":12856,"created_at":"Thu Oct 29 15:48:16 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/128452453\/TNA-TwitterBack.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/128452453\/TNA-TwitterBack.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2429588867\/sy1h631rix51ngabywrv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2429588867\/sy1h631rix51ngabywrv_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TPP","indices":[15,19]},{"text":"JeffSessions","indices":[90,103]}],"urls":[{"url":"https:\/\/t.co\/7E9P3991UG","expanded_url":"http:\/\/ow.ly\/Uq1Rj","display_url":"ow.ly\/Uq1Rj","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008659"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779087781888,"id_str":"663727779087781888","text":"Found a Transponder Snail!\nGiants, sea monsters, fantastical creatures of all kinds!\n#TreCru https:\/\/t.co\/s9YGTyJQle","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286676386,"id_str":"286676386","name":"Marco Ulissi","screen_name":"MarcoUlissi","location":"Falconara Marittima","url":null,"description":null,"protected":false,"verified":false,"followers_count":55,"friends_count":109,"listed_count":1,"favourites_count":58,"statuses_count":531,"created_at":"Sat Apr 23 13:32:35 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477029303675523072\/B5FVyR9v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477029303675523072\/B5FVyR9v_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[85,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727778878083072,"id_str":"663727778878083072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5feWUAA-eNK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5feWUAA-eNK.jpg","url":"https:\/\/t.co\/s9YGTyJQle","display_url":"pic.twitter.com\/s9YGTyJQle","expanded_url":"http:\/\/twitter.com\/MarcoUlissi\/status\/663727779087781888\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727778878083072,"id_str":"663727778878083072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5feWUAA-eNK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5feWUAA-eNK.jpg","url":"https:\/\/t.co\/s9YGTyJQle","display_url":"pic.twitter.com\/s9YGTyJQle","expanded_url":"http:\/\/twitter.com\/MarcoUlissi\/status\/663727779087781888\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008657"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779121266688,"id_str":"663727779121266688","text":"Upcoming Show at Shadows Lounge on 11\/14\/2015 https:\/\/t.co\/nKFO4U5wAC","source":"\u003ca href=\"http:\/\/www.reverbnation.com\/\" rel=\"nofollow\"\u003eReverbNation\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237640832,"id_str":"3237640832","name":"Harry Rosensteel","screen_name":"harryrosensteel","location":"Stockton, CA","url":"https:\/\/www.reverbnation.com\/harryrosensteel","description":"Harry Rosensteel has over twenty years experience as a performing artist and has amassed a repertoire of over 200 classic rock, folk, country, and pop songs.","protected":false,"verified":false,"followers_count":59,"friends_count":118,"listed_count":0,"favourites_count":48,"statuses_count":38,"created_at":"Sat Jun 06 07:11:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607083191237640192\/dj-OtoR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607083191237640192\/dj-OtoR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237640832\/1434005323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nKFO4U5wAC","expanded_url":"http:\/\/rvrb.fm\/1RIm8YT","display_url":"rvrb.fm\/1RIm8YT","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008665"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779108777984,"id_str":"663727779108777984","text":"You can talk with someone for years, everyday, and still, it won't mean as much as what you can have when you sit i\u2026 https:\/\/t.co\/1gzyMoRslx","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3793444152,"id_str":"3793444152","name":"devilzsmile","screen_name":"gamezweplay","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":0,"listed_count":21,"favourites_count":1,"statuses_count":575,"created_at":"Mon Oct 05 15:37:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727778966216704,"id_str":"663727778966216704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5fzXIAAtXUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5fzXIAAtXUz.jpg","url":"https:\/\/t.co\/1gzyMoRslx","display_url":"pic.twitter.com\/1gzyMoRslx","expanded_url":"http:\/\/twitter.com\/gamezweplay\/status\/663727779108777984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727778966216704,"id_str":"663727778966216704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5fzXIAAtXUz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5fzXIAAtXUz.jpg","url":"https:\/\/t.co\/1gzyMoRslx","display_url":"pic.twitter.com\/1gzyMoRslx","expanded_url":"http:\/\/twitter.com\/gamezweplay\/status\/663727779108777984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":640,"h":800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008662"} +{"delete":{"status":{"id":663724092328034304,"id_str":"663724092328034304","user_id":3000385164,"user_id_str":"3000385164"},"timestamp_ms":"1447080008993"}} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779117203456,"id_str":"663727779117203456","text":"Jenn Baker facilitates Equitable Access plans with @JCPSKY teams. @amandaebw @KyPGES @TDavisKYCSH @caroljunefranks https:\/\/t.co\/HrpWU9Gbh9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411801150,"id_str":"411801150","name":"Robin Hebert","screen_name":"RobinHebert3","location":"Kentucky, USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":178,"friends_count":164,"listed_count":8,"favourites_count":71,"statuses_count":495,"created_at":"Sun Nov 13 22:09:50 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000105811552\/28f6155455cdb75d5d3ce2266820d58a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000105811552\/28f6155455cdb75d5d3ce2266820d58a_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"095534ad3107e0e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/095534ad3107e0e6.json","place_type":"city","name":"Louisville","full_name":"Louisville, KY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-85.847503,38.108678],[-85.847503,38.282432],[-85.597188,38.282432],[-85.597188,38.108678]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JCPSKY","name":"JCPS","id":216337553,"id_str":"216337553","indices":[51,58]},{"screen_name":"amandaebw","name":"Amanda Ellis","id":168470605,"id_str":"168470605","indices":[66,76]},{"screen_name":"KyPGES","name":"KyPGES","id":1144067497,"id_str":"1144067497","indices":[77,84]},{"screen_name":"TDavisKYCSH","name":"Todd Davis","id":1267240825,"id_str":"1267240825","indices":[85,97]},{"screen_name":"caroljunefranks","name":"Carol Franks","id":386043807,"id_str":"386043807","indices":[98,114]}],"symbols":[],"media":[{"id":663727772154490880,"id_str":"663727772154490880","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5GbUcAAplUK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5GbUcAAplUK.jpg","url":"https:\/\/t.co\/HrpWU9Gbh9","display_url":"pic.twitter.com\/HrpWU9Gbh9","expanded_url":"http:\/\/twitter.com\/RobinHebert3\/status\/663727779117203456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727772154490880,"id_str":"663727772154490880","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5GbUcAAplUK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5GbUcAAplUK.jpg","url":"https:\/\/t.co\/HrpWU9Gbh9","display_url":"pic.twitter.com\/HrpWU9Gbh9","expanded_url":"http:\/\/twitter.com\/RobinHebert3\/status\/663727779117203456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008664"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779125592064,"id_str":"663727779125592064","text":"Found a Transponder Snail!\nCandid shots of the Straw Hats on their new ship, Merry!\n#TreCru https:\/\/t.co\/VmXRpVMzLO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3334878033,"id_str":"3334878033","name":"JRJuniorJR","screen_name":"root_jonas","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":285,"created_at":"Fri Jun 19 14:58:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[84,91]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727778207019008,"id_str":"663727778207019008","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5c-WsAA03XQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5c-WsAA03XQ.jpg","url":"https:\/\/t.co\/VmXRpVMzLO","display_url":"pic.twitter.com\/VmXRpVMzLO","expanded_url":"http:\/\/twitter.com\/root_jonas\/status\/663727779125592064\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727778207019008,"id_str":"663727778207019008","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5c-WsAA03XQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5c-WsAA03XQ.jpg","url":"https:\/\/t.co\/VmXRpVMzLO","display_url":"pic.twitter.com\/VmXRpVMzLO","expanded_url":"http:\/\/twitter.com\/root_jonas\/status\/663727779125592064\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080008666"} +{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727779113017344,"id_str":"663727779113017344","text":"Feliz d\u00eda e inicio de semana. Que sea colmada de luz, amor y prosperidad... https:\/\/t.co\/OsaGU0SfVz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196754294,"id_str":"196754294","name":"Centro N. & H. Uriel","screen_name":"centrouriel","location":"Caracas-Venezuela","url":"http:\/\/www.centrozuriel.com","description":"El Centro Natural&Hol\u00edstico Uriel, es una instituci\u00f3n creada para el despertar de la nueva conciencia. Que busca la armon\u00eda perfecta a nivel emocional.....","protected":false,"verified":false,"followers_count":156,"friends_count":261,"listed_count":1,"favourites_count":163,"statuses_count":1048,"created_at":"Wed Sep 29 20:54:27 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631905259376517121\/TjVCQF04_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631905259376517121\/TjVCQF04_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196754294\/1439492841","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727766144163840,"id_str":"663727766144163840","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wCWIAAJHAn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wCWIAAJHAn.jpg","url":"https:\/\/t.co\/OsaGU0SfVz","display_url":"pic.twitter.com\/OsaGU0SfVz","expanded_url":"http:\/\/twitter.com\/centrouriel\/status\/663727779113017344\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":550,"resize":"fit"},"medium":{"w":600,"h":507,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727766144163840,"id_str":"663727766144163840","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wCWIAAJHAn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wCWIAAJHAn.jpg","url":"https:\/\/t.co\/OsaGU0SfVz","display_url":"pic.twitter.com\/OsaGU0SfVz","expanded_url":"http:\/\/twitter.com\/centrouriel\/status\/663727779113017344\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":550,"resize":"fit"},"medium":{"w":600,"h":507,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080008663"} +{"delete":{"status":{"id":535887041565687808,"id_str":"535887041565687808","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080009172"}} +{"delete":{"status":{"id":663711991761084416,"id_str":"663711991761084416","user_id":3059674931,"user_id_str":"3059674931"},"timestamp_ms":"1447080009376"}} +{"delete":{"status":{"id":655646550673113088,"id_str":"655646550673113088","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080009343"}} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286325248,"id_str":"663727783286325248","text":"RT @J4CKMULL: The best kind of people https:\/\/t.co\/tIXpnfYDPE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290751358,"id_str":"290751358","name":"Courtney Pearce","screen_name":"CourtneyyPearce","location":null,"url":null,"description":"18, blackpool","protected":false,"verified":false,"followers_count":120,"friends_count":116,"listed_count":1,"favourites_count":668,"statuses_count":1452,"created_at":"Sat Apr 30 21:10:30 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662636892517699584\/ODD4Ys8N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662636892517699584\/ODD4Ys8N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290751358\/1446819973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:36:22 +0000 2015","id":663696631238434816,"id_str":"663696631238434816","text":"The best kind of people https:\/\/t.co\/tIXpnfYDPE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40246348,"id_str":"40246348","name":"Jack Mull","screen_name":"J4CKMULL","location":"Manchester, England","url":"http:\/\/Instagram.com\/J4CKMULL","description":"@ArianaGrande Follows | @ChelseaFC | @The1975","protected":false,"verified":false,"followers_count":397851,"friends_count":275327,"listed_count":418,"favourites_count":517,"statuses_count":167742,"created_at":"Fri May 15 14:07:52 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478952444248866816\/3TJssEkQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478952444248866816\/3TJssEkQ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660777966725672960\/ov_wHStB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660777966725672960\/ov_wHStB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40246348\/1441654277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":194,"favorite_count":267,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696624561070081,"id_str":"663696624561070081","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","url":"https:\/\/t.co\/tIXpnfYDPE","display_url":"pic.twitter.com\/tIXpnfYDPE","expanded_url":"http:\/\/twitter.com\/J4CKMULL\/status\/663696631238434816\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":787,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696624561070081,"id_str":"663696624561070081","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","url":"https:\/\/t.co\/tIXpnfYDPE","display_url":"pic.twitter.com\/tIXpnfYDPE","expanded_url":"http:\/\/twitter.com\/J4CKMULL\/status\/663696631238434816\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":787,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"J4CKMULL","name":"Jack Mull","id":40246348,"id_str":"40246348","indices":[3,12]}],"symbols":[],"media":[{"id":663696624561070081,"id_str":"663696624561070081","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","url":"https:\/\/t.co\/tIXpnfYDPE","display_url":"pic.twitter.com\/tIXpnfYDPE","expanded_url":"http:\/\/twitter.com\/J4CKMULL\/status\/663696631238434816\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":787,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}},"source_status_id":663696631238434816,"source_status_id_str":"663696631238434816","source_user_id":40246348,"source_user_id_str":"40246348"}]},"extended_entities":{"media":[{"id":663696624561070081,"id_str":"663696624561070081","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXskEmWoAEfpAq.jpg","url":"https:\/\/t.co\/tIXpnfYDPE","display_url":"pic.twitter.com\/tIXpnfYDPE","expanded_url":"http:\/\/twitter.com\/J4CKMULL\/status\/663696631238434816\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":787,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"medium":{"w":600,"h":461,"resize":"fit"}},"source_status_id":663696631238434816,"source_status_id_str":"663696631238434816","source_user_id":40246348,"source_user_id_str":"40246348"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009658"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290527744,"id_str":"663727783290527744","text":"@aliisbot song being released at 8pm?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727680395849728,"in_reply_to_status_id_str":"663727680395849728","in_reply_to_user_id":520605785,"in_reply_to_user_id_str":"520605785","in_reply_to_screen_name":"aliisbot","user":{"id":1536924602,"id_str":"1536924602","name":"caitlin","screen_name":"vuilkyklin","location":"cape town, south africa","url":null,"description":"update: I am tiny and sensitive","protected":false,"verified":false,"followers_count":1868,"friends_count":980,"listed_count":11,"favourites_count":3117,"statuses_count":39918,"created_at":"Fri Jun 21 16:58:21 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643005013510483968\/L0TLsf1T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643005013510483968\/L0TLsf1T.jpg","profile_background_tile":true,"profile_link_color":"317070","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658241687714705408\/5rGDtzIj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658241687714705408\/5rGDtzIj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536924602\/1445773227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aliisbot","name":"ali","id":520605785,"id_str":"520605785","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290511360,"id_str":"663727783290511360","text":"RT @LuliSantopietro: Un abrazo de esos que desarman y arman a la vez!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375950295,"id_str":"375950295","name":"mar","screen_name":"MarLeguix","location":null,"url":null,"description":"Buenos Aires.","protected":false,"verified":false,"followers_count":1949,"friends_count":628,"listed_count":1,"favourites_count":74,"statuses_count":41621,"created_at":"Mon Sep 19 01:26:30 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466731301836312576\/ph8ZIORi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466731301836312576\/ph8ZIORi.jpeg","profile_background_tile":true,"profile_link_color":"95CC64","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656687656252932096\/S-pfZhii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656687656252932096\/S-pfZhii_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375950295\/1444167230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 02:02:19 +0000 2015","id":662449903814246400,"id_str":"662449903814246400","text":"Un abrazo de esos que desarman y arman a la vez!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210671853,"id_str":"210671853","name":"Luli Santopietro","screen_name":"LuliSantopietro","location":null,"url":null,"description":"Sonrie y haras sonreir a los que te rodean!","protected":false,"verified":false,"followers_count":657,"friends_count":272,"listed_count":0,"favourites_count":73,"statuses_count":17028,"created_at":"Mon Nov 01 01:26:02 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601441452778860544\/E6Xj6wFt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601441452778860544\/E6Xj6wFt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210671853\/1427216853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LuliSantopietro","name":"Luli Santopietro","id":210671853,"id_str":"210671853","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783282147328,"id_str":"663727783282147328","text":"Greve de caminhoneiros coloca em alerta exportadores de aves e su\u00ednos https:\/\/t.co\/ks4UEpKnA8 @UOL","source":"\u003ca href=\"http:\/\/twitter.uol.com.br\" rel=\"nofollow\"\u003euol.com.br\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14594760,"id_str":"14594760","name":"UOL Economia","screen_name":"UOLEconomia","location":"Brasil","url":"http:\/\/economia.uol.com.br\/","description":"Not\u00edcias sobre economia, a\u00e7\u00f5es, cota\u00e7\u00f5es da Bovespa, d\u00f3lar, outras moedas, investimentos, finan\u00e7as, neg\u00f3cios e carreiras.","protected":false,"verified":false,"followers_count":83277,"friends_count":28,"listed_count":1299,"favourites_count":0,"statuses_count":80156,"created_at":"Wed Apr 30 02:29:56 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"E6E6E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/795924882\/5a9975f4133497ab76435251d7838f6a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/795924882\/5a9975f4133497ab76435251d7838f6a.jpeg","profile_background_tile":false,"profile_link_color":"FA1008","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBECF5","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463352006141173760\/nDQBcB7D_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463352006141173760\/nDQBcB7D_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14594760\/1400100521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ks4UEpKnA8","expanded_url":"http:\/\/uol.com\/bxgjgG","display_url":"uol.com\/bxgjgG","indices":[70,93]}],"user_mentions":[{"screen_name":"UOL","name":"UOL","id":70799317,"id_str":"70799317","indices":[94,98]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290499072,"id_str":"663727783290499072","text":"Mor\u00ed, te juro","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2291171467,"id_str":"2291171467","name":"Enzo Maldonado \u270c","screen_name":"EnzoMaldonado__","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":447,"friends_count":289,"listed_count":1,"favourites_count":6063,"statuses_count":30346,"created_at":"Tue Jan 14 13:38:28 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1B00B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649295072102608897\/ISNWq2Vm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649295072102608897\/ISNWq2Vm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2291171467\/1443639289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286169604,"id_str":"663727783286169604","text":"With Paul Heyman Over The Weekend https:\/\/t.co\/pSbJ0N1p8q #RawManchester #RAW #wwe\n#WWE2K16 #WWELiverpool","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":393118063,"id_str":"393118063","name":"Alternative News ","screen_name":"alternewstalk","location":null,"url":"http:\/\/www.RavensNewsPost.com","description":"Latest MMA & Pro Wrestling News","protected":false,"verified":false,"followers_count":65,"friends_count":6,"listed_count":25,"favourites_count":0,"statuses_count":25440,"created_at":"Tue Oct 18 01:49:44 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450367723\/logo_comp__1_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450367723\/logo_comp__1_.jpg","profile_background_tile":false,"profile_link_color":"F00E3B","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1901243047\/logo_comp__1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1901243047\/logo_comp__1__normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RawManchester","indices":[58,72]},{"text":"RAW","indices":[73,77]},{"text":"wwe","indices":[78,82]},{"text":"WWE2K16","indices":[83,91]},{"text":"WWELiverpool","indices":[92,105]}],"urls":[{"url":"https:\/\/t.co\/pSbJ0N1p8q","expanded_url":"http:\/\/ravensnewspost.com\/wrestlingwnews\/cm-punk-seen-hanging-out-with-paul-heyman-over-the-weekend-spectre-news","display_url":"ravensnewspost.com\/wrestlingwnews\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009658"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286349824,"id_str":"663727783286349824","text":"14\/150 https:\/\/t.co\/gMvCAj6qWG #150MentirasDeRaquel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2292686933,"id_str":"2292686933","name":"Franc Robert","screen_name":"burborjaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":233,"friends_count":304,"listed_count":0,"favourites_count":4676,"statuses_count":3353,"created_at":"Mon Jan 20 01:03:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644458645179269122\/0y9I1oBQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644458645179269122\/0y9I1oBQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2292686933\/1446944258","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727365965615105,"quoted_status_id_str":"663727365965615105","quoted_status":{"created_at":"Mon Nov 09 14:38:30 +0000 2015","id":663727365965615105,"id_str":"663727365965615105","text":"Venga que podemos #1000RATAZO https:\/\/t.co\/nPL3w0ePSs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2962072227,"id_str":"2962072227","name":"GH16","screen_name":"comentarista25","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":114,"listed_count":0,"favourites_count":270,"statuses_count":649,"created_at":"Mon Jan 05 14:12:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663675659596730368\/QJoRXXi9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663675659596730368\/QJoRXXi9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1000RATAZO","indices":[18,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727326887346176,"id_str":"663727326887346176","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfLrXAAAsjm-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfLrXAAAsjm-.jpg","url":"https:\/\/t.co\/nPL3w0ePSs","display_url":"pic.twitter.com\/nPL3w0ePSs","expanded_url":"http:\/\/twitter.com\/comentarista25\/status\/663727365965615105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727326887346176,"id_str":"663727326887346176","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfLrXAAAsjm-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfLrXAAAsjm-.jpg","url":"https:\/\/t.co\/nPL3w0ePSs","display_url":"pic.twitter.com\/nPL3w0ePSs","expanded_url":"http:\/\/twitter.com\/comentarista25\/status\/663727365965615105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"150MentirasDeRaquel","indices":[33,53]}],"urls":[{"url":"https:\/\/t.co\/gMvCAj6qWG","expanded_url":"https:\/\/twitter.com\/comentarista25\/status\/663727365965615105","display_url":"twitter.com\/comentarista25\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080009658"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311372289,"id_str":"663727783311372289","text":"Karnal Singh to continue as Enforcement Directorate head https:\/\/t.co\/DfCrMVy03x","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18071358,"id_str":"18071358","name":"Zee News","screen_name":"ZeeNews","location":"India","url":"http:\/\/www.zeenews.com","description":"10 Channels I India\u2019s Largest News Network I 140 mn viewers I Breaking News alert from India & world. Download Zee Media Apps - https:\/\/t.co\/1HsBWGNbiU","protected":false,"verified":true,"followers_count":1375699,"friends_count":103,"listed_count":1635,"favourites_count":16,"statuses_count":159872,"created_at":"Fri Dec 12 06:01:55 +0000 2008","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462180043284676609\/3pnTbTZj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462180043284676609\/3pnTbTZj.jpeg","profile_background_tile":false,"profile_link_color":"E02134","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000729042931\/3aa1654f014d3b9918580454a799c645_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000729042931\/3aa1654f014d3b9918580454a799c645_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18071358\/1443706789","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DfCrMVy03x","expanded_url":"http:\/\/zeenews.india.com\/news\/india\/karnal-singh-to-continue-as-enforcement-directorate-head_1820382.html","display_url":"zeenews.india.com\/news\/india\/kar\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319875584,"id_str":"663727783319875584","text":"Q pregui\u00e7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318098334,"id_str":"318098334","name":"Ana Clara \u2741","screen_name":"GuimaresClara","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":625,"friends_count":401,"listed_count":0,"favourites_count":3648,"statuses_count":28218,"created_at":"Wed Jun 15 23:44:21 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653843996096249856\/OH_dxgU7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653843996096249856\/OH_dxgU7.jpg","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662842309264998401\/-qKGFzqZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662842309264998401\/-qKGFzqZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318098334\/1446891628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294582786,"id_str":"663727783294582786","text":"RT @i_l_kawaii: \u3053\u308c\u304c\u3001\u3042\u306e\u5642\u306e\u30c0\u30a4\u30a8\u30c3\u30c8\u30b5\u30d7\u30ea\uff01\uff01\n\u524d\u56de\u306e\u58f2\u308a\u5207\u308c\u304b\u3089\u306e\u3001\u518d\u5165\u8377( ;\u2200;)\n\n\u21d2https:\/\/t.co\/OpzYwYXGy8\n\n\u8cfc\u5165\u8005\u6bba\u5230\u3057\u3066\u308b\uff01\u6025\u3052\u30fc(*\uff89\u03c9\uff89) https:\/\/t.co\/v2HWt17jak","source":"\u003ca href=\"https:\/\/twitter.com\/test_test01_tes\" rel=\"nofollow\"\u003e\u30a2\u30ab\u30a6\u30f3\u30c826-30\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3637285281,"id_str":"3637285281","name":"\u304a\u304d\u3083\u308f\u2661\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3","screen_name":"kyawa_fashion","location":null,"url":null,"description":"\u3059\u3050\u306b\u771f\u4f3c\u3063\u3053\u51fa\u6765\u308b\u30b3\u30fc\u30c7\u304c\u305f\uff5e\u304f\u3055\u3093\u2661(^^\u266a","protected":false,"verified":false,"followers_count":404,"friends_count":2847,"listed_count":40,"favourites_count":0,"statuses_count":415,"created_at":"Sun Sep 13 02:05:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648358711426052096\/hiQbsHiq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648358711426052096\/hiQbsHiq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3637285281\/1443415955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753238220800,"id_str":"663727753238220800","text":"\u3053\u308c\u304c\u3001\u3042\u306e\u5642\u306e\u30c0\u30a4\u30a8\u30c3\u30c8\u30b5\u30d7\u30ea\uff01\uff01\n\u524d\u56de\u306e\u58f2\u308a\u5207\u308c\u304b\u3089\u306e\u3001\u518d\u5165\u8377( ;\u2200;)\n\n\u21d2https:\/\/t.co\/OpzYwYXGy8\n\n\u8cfc\u5165\u8005\u6bba\u5230\u3057\u3066\u308b\uff01\u6025\u3052\u30fc(*\uff89\u03c9\uff89) https:\/\/t.co\/v2HWt17jak","source":"\u003ca href=\"https:\/\/twitter.com\/test_test01_tes\" rel=\"nofollow\"\u003e\u30a2\u30ab\u30a6\u30f3\u30c8\uff16\uff16\u2212\uff17\uff10\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382393513,"id_str":"3382393513","name":"i\u2661kawaii","screen_name":"i_l_kawaii","location":null,"url":null,"description":"\u5973\u306e\u5b50\u306e\u5927\u597d\u304d\u304c\u6ca2\u5c71\u2661","protected":false,"verified":false,"followers_count":791,"friends_count":1837,"listed_count":1,"favourites_count":0,"statuses_count":1005,"created_at":"Sat Aug 29 14:17:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638709042949435392\/J4OjJqOp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638709042949435392\/J4OjJqOp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3382393513\/1441115092","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OpzYwYXGy8","expanded_url":"http:\/\/mini3.top\/cz\/iyQuC","display_url":"mini3.top\/cz\/iyQuC","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663727752080560129,"id_str":"663727752080560129","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","url":"https:\/\/t.co\/v2HWt17jak","display_url":"pic.twitter.com\/v2HWt17jak","expanded_url":"http:\/\/twitter.com\/i_l_kawaii\/status\/663727753238220800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":785,"h":441,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727752080560129,"id_str":"663727752080560129","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","url":"https:\/\/t.co\/v2HWt17jak","display_url":"pic.twitter.com\/v2HWt17jak","expanded_url":"http:\/\/twitter.com\/i_l_kawaii\/status\/663727753238220800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":785,"h":441,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OpzYwYXGy8","expanded_url":"http:\/\/mini3.top\/cz\/iyQuC","display_url":"mini3.top\/cz\/iyQuC","indices":[58,81]}],"user_mentions":[{"screen_name":"i_l_kawaii","name":"i\u2661kawaii","id":3382393513,"id_str":"3382393513","indices":[3,14]}],"symbols":[],"media":[{"id":663727752080560129,"id_str":"663727752080560129","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","url":"https:\/\/t.co\/v2HWt17jak","display_url":"pic.twitter.com\/v2HWt17jak","expanded_url":"http:\/\/twitter.com\/i_l_kawaii\/status\/663727753238220800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":785,"h":441,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727753238220800,"source_status_id_str":"663727753238220800","source_user_id":3382393513,"source_user_id_str":"3382393513"}]},"extended_entities":{"media":[{"id":663727752080560129,"id_str":"663727752080560129","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37pUkAElpP5.png","url":"https:\/\/t.co\/v2HWt17jak","display_url":"pic.twitter.com\/v2HWt17jak","expanded_url":"http:\/\/twitter.com\/i_l_kawaii\/status\/663727753238220800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":785,"h":441,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727753238220800,"source_status_id_str":"663727753238220800","source_user_id":3382393513,"source_user_id_str":"3382393513"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783302946816,"id_str":"663727783302946816","text":"Get Weather Updates from The Weather Channel. 09:40:09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2389437540,"id_str":"2389437540","name":"02110gnlb ","screen_name":"02110gnlb","location":null,"url":null,"description":"weather for 02110","protected":false,"verified":false,"followers_count":1,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":85868,"created_at":"Fri Mar 14 16:38:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009662"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281954817,"id_str":"663727783281954817","text":"RT @imjustmia_: I just want everything at VS. \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955805343,"id_str":"2955805343","name":"jasssss","screen_name":"jasminemaryyy","location":null,"url":null,"description":"@_veediamond is my bestfriend \u2764\ufe0f","protected":false,"verified":false,"followers_count":570,"friends_count":559,"listed_count":0,"favourites_count":1576,"statuses_count":2675,"created_at":"Fri Jan 02 00:43:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550197390139392\/Ffq-BFQr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550197390139392\/Ffq-BFQr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955805343\/1447024833","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:21:56 +0000 2015","id":663466505766481920,"id_str":"663466505766481920","text":"I just want everything at VS. \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":162643487,"id_str":"162643487","name":"mia moreno","screen_name":"imjustmia_","location":null,"url":null,"description":"happy & striving.","protected":false,"verified":false,"followers_count":2818,"friends_count":1239,"listed_count":6,"favourites_count":18203,"statuses_count":70821,"created_at":"Sun Jul 04 08:03:59 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFCFD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498686985456721920\/3wWkXilf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498686985456721920\/3wWkXilf.jpeg","profile_background_tile":true,"profile_link_color":"6C6B6E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"9E9E9E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663206691962359809\/OtM8jd1t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663206691962359809\/OtM8jd1t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/162643487\/1446439640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imjustmia_","name":"mia moreno","id":162643487,"id_str":"162643487","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783307321344,"id_str":"663727783307321344","text":"Learn about entrepreneurship, leadership, and adversity on Leading with Purpose. Listen Live: https:\/\/t.co\/nBshtKUr4C #Radio","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3026742354,"id_str":"3026742354","name":"Gloria Whitney","screen_name":"BookTalkRadio","location":"Los Angeles, California","url":"http:\/\/www.beckmultimedia.com","description":"#Authors #Publicists #LiteraryAgents #Marketing #Advertising #Sales #Writers","protected":false,"verified":false,"followers_count":270,"friends_count":91,"listed_count":365,"favourites_count":0,"statuses_count":126373,"created_at":"Wed Feb 18 17:56:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568107633010167808\/RHJ84Vp6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568107633010167808\/RHJ84Vp6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3026742354\/1424282403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Radio","indices":[118,124]}],"urls":[{"url":"https:\/\/t.co\/nBshtKUr4C","expanded_url":"http:\/\/ow.ly\/TVgDH","display_url":"ow.ly\/TVgDH","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009663"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294570496,"id_str":"663727783294570496","text":"Serie A2: i migliori del turno - David BRKIC (Bondi Ferrara) 18 punti 7 rimbalzi 1 assists 5\/8 al tiro in 31 minuti. #SBpallini","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184329353,"id_str":"184329353","name":"Giampiero Hruby","screen_name":"GiampieroHruby","location":"Milano","url":"https:\/\/it-it.facebook.com\/SuperbasketOfficialPage","description":"Fondatore di J and J \u2022 Tel.: +39 334 353 6180 \u2022 Fax: +39 040 987 0208 \u2022 Mail: hruby@superbasket.it","protected":false,"verified":false,"followers_count":863,"friends_count":968,"listed_count":9,"favourites_count":0,"statuses_count":4312,"created_at":"Sun Aug 29 07:50:52 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529679889830395904\/LqHnAiPf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529679889830395904\/LqHnAiPf.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528651116074905600\/NNO01ITJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528651116074905600\/NNO01ITJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184329353\/1415041220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SBpallini","indices":[117,127]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286341632,"id_str":"663727783286341632","text":"@MovistarArg Chorros","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":19286574,"in_reply_to_user_id_str":"19286574","in_reply_to_screen_name":"MovistarArg","user":{"id":138543906,"id_str":"138543906","name":"#TOLERANCIAMENOSMIL","screen_name":"MartiNAok5","location":"Paris, France","url":null,"description":"YOU WERE, YOU ARE, YOU WILL ALWAYS BE --- NO DOY FOLLOW BACK --- BLACK HUMOR","protected":false,"verified":false,"followers_count":2328,"friends_count":608,"listed_count":34,"favourites_count":45080,"statuses_count":164948,"created_at":"Thu Apr 29 21:20:27 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/745535493\/dae9cbbd0eb56bd485f943ec26411744.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/745535493\/dae9cbbd0eb56bd485f943ec26411744.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000054144309\/a7f24f35efda415b21d582b31c2a9820_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000054144309\/a7f24f35efda415b21d582b31c2a9820_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138543906\/1356260474","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MovistarArg","name":"Movistar Argentina","id":19286574,"id_str":"19286574","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009658"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315574784,"id_str":"663727783315574784","text":"@ayasato_18 \u4eca\u66f4\u3060\u3051\u3069\u512a\u52dd\u304a\u3081\u3067\u3068\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727340820676608,"in_reply_to_status_id_str":"663727340820676608","in_reply_to_user_id":1671970765,"in_reply_to_user_id_str":"1671970765","in_reply_to_screen_name":"ayasato_18","user":{"id":1116607255,"id_str":"1116607255","name":"\u3089\u3073@\u30a8\u30a3\u30cf","screen_name":"wak324","location":"\u5b66\u5712\u90fd\u5e02\u7acb\u5ddd","url":"http:\/\/blog.livedoor.jp\/rabi_vg\/","description":"VG,BF,WS\u3084\u3063\u3066\u307e\u3059\u3002VG\u306f\u30d9\u30b9\u30c84\u4ee5\u4e0a\u304c4\u56de\u3002\u30a8\u30a3\u30cf\u306f\u795e","protected":false,"verified":false,"followers_count":406,"friends_count":199,"listed_count":7,"favourites_count":1420,"statuses_count":63600,"created_at":"Thu Jan 24 11:56:23 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661916776804933632\/nBSoGZgh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661916776804933632\/nBSoGZgh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1116607255\/1443452469","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayasato_18","name":"\u307a\u3059\u3068","id":1671970765,"id_str":"1671970765","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298924548,"id_str":"663727783298924548","text":"Spotify de pone weon derrepente, no webee tata jaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2827085473,"id_str":"2827085473","name":"Arturo Obreque C.","screen_name":"ArturoObrequeC","location":"Chillan , Chile ","url":"https:\/\/instagram.com\/arturoobrequec\/","description":"Peleador de Kickboxing en Iron Fist KickBoxing Club ; Estudiante de Tecnolog\u00edas Agr\u00edcolas , 20 a\u00f1os, inici\u00e1ndome en teakwondo, tauro bruto","protected":false,"verified":false,"followers_count":195,"friends_count":177,"listed_count":0,"favourites_count":25,"statuses_count":73,"created_at":"Mon Sep 22 22:42:42 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650102907426197504\/Ja2lECsa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650102907426197504\/Ja2lECsa.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660870081681952769\/jmiI9mDz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660870081681952769\/jmiI9mDz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2827085473\/1444871383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319764992,"id_str":"663727783319764992","text":"Bancos destinar\u00e1n cr\u00e9ditos a peque\u00f1as empresas https:\/\/t.co\/EHT0Uusn8M","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44628138,"id_str":"44628138","name":"Descifrado","screen_name":"descifradocom","location":"CARACAS","url":"http:\/\/www.descifrado.com","description":"Medio especializado en informaci\u00f3n de finanzas, econom\u00eda y negocios dirigido a ejecutivos de las empresas m\u00e1s prestigiosas de Venezuela.","protected":false,"verified":false,"followers_count":156750,"friends_count":2211,"listed_count":2318,"favourites_count":43,"statuses_count":94310,"created_at":"Thu Jun 04 14:32:38 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593908640\/3f6wbfec2c0u5et2bqrw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593908640\/3f6wbfec2c0u5et2bqrw.png","profile_background_tile":false,"profile_link_color":"F06520","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2360933851\/63sril9r3d8mh638kx03_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2360933851\/63sril9r3d8mh638kx03_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44628138\/1424380480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EHT0Uusn8M","expanded_url":"http:\/\/bit.ly\/1OtjaK5","display_url":"bit.ly\/1OtjaK5","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298879488,"id_str":"663727783298879488","text":"Happy birthday, Kass.. Love youuu\u2764\ufe0f https:\/\/t.co\/V6Q7e5LOHt","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2440220923,"id_str":"2440220923","name":"\u2022~Mayci~\u2022\u2728","screen_name":"BurkhalterMayci","location":null,"url":null,"description":"Horses are like a pack of ciggerates, one day you're gonna run out of runs. Better enjoy it while it lasts.\u2764\ufe0f*Blessed.\u2764\ufe0f *Rodeo\u2764\ufe0f#OKFFA *Wilson, Oklahoma*","protected":false,"verified":false,"followers_count":524,"friends_count":1380,"listed_count":1,"favourites_count":6077,"statuses_count":10387,"created_at":"Sat Apr 12 16:04:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660650776956567552\/UpXuBdmh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660650776956567552\/UpXuBdmh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2440220923\/1425400403","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/V6Q7e5LOHt","expanded_url":"https:\/\/instagram.com\/p\/93iUJOSuJb\/","display_url":"instagram.com\/p\/93iUJOSuJb\/","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294713856,"id_str":"663727783294713856","text":"RT @loreleytweet: 11.11. @ 11:11:11am 13th Annual Elfter-Elfer Loreley Karneval Party #loreleynyckarneval https:\/\/t.co\/VtTtS4Sx8d","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2981371839,"id_str":"2981371839","name":"GermanyNY biz","screen_name":"GermanyNYbiz","location":"New York","url":"http:\/\/germany.info\/newyork","description":"Business, economy and science related tweets from the German Consulate General New York (RT not endorsements). Follow Consul General Brita Wagener @GermanyNY","protected":false,"verified":true,"followers_count":608,"friends_count":257,"listed_count":81,"favourites_count":2464,"statuses_count":1728,"created_at":"Fri Jan 16 16:56:46 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557562353902829568\/JIqaSRte_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557562353902829568\/JIqaSRte_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2981371839\/1443467669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 06:57:56 +0000 2015","id":663249074477404160,"id_str":"663249074477404160","text":"11.11. @ 11:11:11am 13th Annual Elfter-Elfer Loreley Karneval Party #loreleynyckarneval https:\/\/t.co\/VtTtS4Sx8d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360237069,"id_str":"360237069","name":"Loreley","screen_name":"loreleytweet","location":"New York City","url":"http:\/\/loreleynyc.com\/","description":"Beer, wine and spirits from Cologne, Germany and delicious, home made food in Lower Manhattan for 12+ years","protected":false,"verified":false,"followers_count":430,"friends_count":914,"listed_count":33,"favourites_count":0,"statuses_count":77,"created_at":"Mon Aug 22 22:23:46 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520414901\/index_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520414901\/index_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360237069\/1403741289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"loreleynyckarneval","indices":[69,88]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663249070312419328,"id_str":"663249070312419328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","url":"https:\/\/t.co\/VtTtS4Sx8d","display_url":"pic.twitter.com\/VtTtS4Sx8d","expanded_url":"http:\/\/twitter.com\/loreleytweet\/status\/663249074477404160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663249070312419328,"id_str":"663249070312419328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","url":"https:\/\/t.co\/VtTtS4Sx8d","display_url":"pic.twitter.com\/VtTtS4Sx8d","expanded_url":"http:\/\/twitter.com\/loreleytweet\/status\/663249074477404160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"loreleynyckarneval","indices":[87,106]}],"urls":[],"user_mentions":[{"screen_name":"loreleytweet","name":"Loreley","id":360237069,"id_str":"360237069","indices":[3,16]}],"symbols":[],"media":[{"id":663249070312419328,"id_str":"663249070312419328","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","url":"https:\/\/t.co\/VtTtS4Sx8d","display_url":"pic.twitter.com\/VtTtS4Sx8d","expanded_url":"http:\/\/twitter.com\/loreleytweet\/status\/663249074477404160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663249074477404160,"source_status_id_str":"663249074477404160","source_user_id":360237069,"source_user_id_str":"360237069"}]},"extended_entities":{"media":[{"id":663249070312419328,"id_str":"663249070312419328","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRVg_GUcAAOiQB.jpg","url":"https:\/\/t.co\/VtTtS4Sx8d","display_url":"pic.twitter.com\/VtTtS4Sx8d","expanded_url":"http:\/\/twitter.com\/loreleytweet\/status\/663249074477404160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663249074477404160,"source_status_id_str":"663249074477404160","source_user_id":360237069,"source_user_id_str":"360237069"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298727936,"id_str":"663727783298727936","text":"Don`t Get Tripped Up by Bundled Codes . Read more on https:\/\/t.co\/dHPCIIGAzZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557922291,"id_str":"557922291","name":"Clinicspectrum","screen_name":"ClinicSpectrum","location":"Union, NJ 07083","url":"http:\/\/www.clinicspectrum.com","description":"We are #leader in providing Hybrid Workflow Model\u2122 and back office solutions to #healthcare industry with advance #technological solutions.","protected":false,"verified":false,"followers_count":1499,"friends_count":826,"listed_count":183,"favourites_count":703,"statuses_count":14470,"created_at":"Thu Apr 19 16:16:46 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"53D8F9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450927747057991680\/KUPXO1Zi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450927747057991680\/KUPXO1Zi.jpeg","profile_background_tile":true,"profile_link_color":"000066","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653606966212853760\/jAvLhbGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653606966212853760\/jAvLhbGL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557922291\/1410598885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dHPCIIGAzZ","expanded_url":"http:\/\/bit.ly\/1MKpLQ1","display_url":"bit.ly\/1MKpLQ1","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298793472,"id_str":"663727783298793472","text":"\u3053\u306e\u6642\u9593\u6211\u304c\u3044\u306a\u304b\u3063\u305f\u3089\u3001\u5984\u60f3\u3057\u3066\u3066\u3001\u30eb\u30f3\u30eb\u30f3\u30e9\u30f3\u30e9\u30f3\u6c17\u5206\u306b\u306a\u3063\u3066\u308b\u3002\u3064\u307e\u308a\u5bdd\u3066\u308b","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230665238,"id_str":"3230665238","name":"\u5b89\u500d\u5fc3\u81d3\u9996\u76f8@MADE1122\u53c2\u6226","screen_name":"shitapero_fam","location":"\u30b8\u30b9\u306e\u524d\u9aea\u306b\u304a\u5f15\u8d8a\u3057","url":null,"description":"50line\u306e\u9996\u76f8\u3060\u3088(\u2312\u25bd\u2312) \u56fd\u4f1a\u8b70\u4e8b\u5802\u6295\u3052\u6368\u3066\u3066\u6b64\u51e6\u6765\u3061\u3083\u3063\u305f(\u2312\u25bd\u2312) \u9996\u76f8\u5c02\u7528\u30db\u30fc\u30e0\u30da\u30fc\u30b8\u7684\u306a\u306e(\u2312\u25bd\u2312)\u2192\u2192\u2192http:\/\/twpf.jp\/shitapero_fam \u7121\u8a00\u30dd\u30ed\u306f\u30dd\u30ed\u5834\u3057\u3066\u306a\u3044(\u2312\u25bd\u2312)","protected":false,"verified":false,"followers_count":226,"friends_count":225,"listed_count":11,"favourites_count":452,"statuses_count":11654,"created_at":"Sat May 30 12:09:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660938312371212288\/kMJpTIYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660938312371212288\/kMJpTIYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230665238\/1441009338","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298727938,"id_str":"663727783298727938","text":"RT @6miludo: Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/uaeFpQmc0i","source":"\u003ca href=\"http:\/\/api.recuweb.com\" rel=\"nofollow\"\u003eapi.recuweb.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300497376,"id_str":"2300497376","name":"recuweb.com","screen_name":"recuweb","location":"Europe","url":"http:\/\/recuweb.com","description":"http:\/\/recuweb.com 4 you!! #startUp #webTools & aggregator feeds #teamFollowback by @rafasashi","protected":false,"verified":false,"followers_count":7732,"friends_count":3329,"listed_count":7268,"favourites_count":168,"statuses_count":364515,"created_at":"Mon Jan 20 00:04:02 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425057198775861248\/uFX1UkkZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425057198775861248\/uFX1UkkZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300497376\/1404913539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727696120156161,"id_str":"663727696120156161","text":"Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/uaeFpQmc0i","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":856240669,"id_str":"856240669","name":"ABU_DHABI..","screen_name":"6miludo","location":"Theatre Of Dreams.","url":"http:\/\/Viamiludu.com","description":"GGMU.......#THE ENEMY OF YOUR ENEMY IS MY FRIEND.....","protected":false,"verified":false,"followers_count":725,"friends_count":534,"listed_count":96,"favourites_count":908,"statuses_count":22215,"created_at":"Mon Oct 01 11:38:38 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661445342114799616\/h8yQOEqA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661445342114799616\/h8yQOEqA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/856240669\/1442814656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uaeFpQmc0i","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uaeFpQmc0i","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[95,118]}],"user_mentions":[{"screen_name":"6miludo","name":"ABU_DHABI..","id":856240669,"id_str":"856240669","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315566592,"id_str":"663727783315566592","text":"@anbenandesu \n\u5927\u4e08\u592b\u3084\u3042\u3093\u3079\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723545730543617,"in_reply_to_status_id_str":"663723545730543617","in_reply_to_user_id":1276803937,"in_reply_to_user_id_str":"1276803937","in_reply_to_screen_name":"anbenandesu","user":{"id":3117856906,"id_str":"3117856906","name":"Yuzuki Mamiya","screen_name":"flumpweaverool","location":null,"url":null,"description":"\u5e02\u7acb\u6771#4\u2192\u5929\u7406\u5927#96\u3002\u3070\u3059\u3051\u3076\u3002flumpool\u3068WEAVER\u3068\u7c73\u6d25\u7384\u5e2b\u3068\u3002\u6bce\u65e5\u304a\u304a\u3055\u304b\u21c4\u306a\u3089","protected":false,"verified":false,"followers_count":414,"friends_count":399,"listed_count":0,"favourites_count":706,"statuses_count":1824,"created_at":"Thu Mar 26 09:15:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656272301898399744\/ZOkR4A0Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656272301898399744\/ZOkR4A0Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117856906\/1446882962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anbenandesu","name":"\u3042\u3093\u3079","id":1276803937,"id_str":"1276803937","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783282020353,"id_str":"663727783282020353","text":"RT @picopico715: 151108 EXO'luXion Tokyo D-3\n\n\u6771\u4eac\u6700\u7d42\u65e5\u306b\u898b\u305b\u3066\u304f\u308c\u305f\u3001\u3053\u306e\u4e0a\u306a\u3044\u30ab\u30a4\u30c9\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\udc93\n\u5b8c\u5168\u306b\u30ab\u30a4\u306b\u30ed\u30c3\u30af\u30aa\u30f3\u3055\u308c\u308b\u30ae\u30e7\u30f3\u30b9(\u00b4\uff1b\u03c9\uff1b\uff40)\ud83d\udc95\u3042\u3041\u2026\n\nvia.dohkyungsoonet\n https:\/\/t.co\/y8o\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254710334,"id_str":"3254710334","name":"\u2614\ufe0f rain","screen_name":"sua_suu","location":null,"url":null,"description":"\u3069\u3046\u3082\u3001\u5acc\u308f\u308c\u8005\u3067\u3059","protected":false,"verified":false,"followers_count":267,"friends_count":124,"listed_count":6,"favourites_count":245,"statuses_count":1615,"created_at":"Wed Jun 24 14:51:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662663954351550464\/174Fwi8z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662663954351550464\/174Fwi8z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254710334\/1446826732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:39:11 +0000 2015","id":663350050781728769,"id_str":"663350050781728769","text":"151108 EXO'luXion Tokyo D-3\n\n\u6771\u4eac\u6700\u7d42\u65e5\u306b\u898b\u305b\u3066\u304f\u308c\u305f\u3001\u3053\u306e\u4e0a\u306a\u3044\u30ab\u30a4\u30c9\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\udc93\n\u5b8c\u5168\u306b\u30ab\u30a4\u306b\u30ed\u30c3\u30af\u30aa\u30f3\u3055\u308c\u308b\u30ae\u30e7\u30f3\u30b9(\u00b4\uff1b\u03c9\uff1b\uff40)\ud83d\udc95\u3042\u3041\u2026\n\nvia.dohkyungsoonet\n https:\/\/t.co\/y8o7RGJjqc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2228525466,"id_str":"2228525466","name":"pico","screen_name":"picopico715","location":null,"url":null,"description":"\u201dEXO\u3067\u5984\u60f3\u201d\u3084\u201dEXO\u3067\u30dc\u30b1\u3066\u201d\u3092\u7a81\u767a\u7684\u306b\u545f\u304d\u307e\u3059\u3002\u30bf\u30a4\u30df\u30f3\u30b0\u304c\u5408\u3046\u3068\u304d\u306b\u306fEXO\u3092\u8ffd\u3063\u3066\u3044\u307e\u3059\u3002EXO\u306e\u9b45\u529b\u767a\u4fe1\u306b\u5168\u529b\u3092\u5c3d\u304f\u3059(from\u30ef\u30b7\u306e\u76ee\u7dda)\u3002\u7a81\u7136\u66b4\u308c\u308b\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u3002\u5f97\u610f\u6280\uff1a\u6614\u306eEXO\u3092\u307b\u3058\u304f\u308b\u4e8b\u3068\u6df1\u8aad\u307f(\u5730\u306e\u5e95\u307e\u3067\u6398\u308a\u4e0b\u3052\u307e\u3059)\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff08\uff3e\u03c9\uff3e\uff09 EXO \uc0ac\ub791\ud558\uc790\uff01","protected":false,"verified":false,"followers_count":2253,"friends_count":1045,"listed_count":11,"favourites_count":7185,"statuses_count":8274,"created_at":"Tue Dec 03 16:29:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447604914391240704\/dk2NIlXE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447604914391240704\/dk2NIlXE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2228525466\/1446094639","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":458,"favorite_count":1046,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663343617965092864,"id_str":"663343617965092864","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","url":"https:\/\/t.co\/y8o7RGJjqc","display_url":"pic.twitter.com\/y8o7RGJjqc","expanded_url":"http:\/\/twitter.com\/dohkyungsoonet\/status\/663343809774747648\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663343809774747648,"source_status_id_str":"663343809774747648","source_user_id":609613823,"source_user_id_str":"609613823"}]},"extended_entities":{"media":[{"id":663343617965092864,"id_str":"663343617965092864","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","url":"https:\/\/t.co\/y8o7RGJjqc","display_url":"pic.twitter.com\/y8o7RGJjqc","expanded_url":"http:\/\/twitter.com\/dohkyungsoonet\/status\/663343809774747648\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663343809774747648,"source_status_id_str":"663343809774747648","source_user_id":609613823,"source_user_id_str":"609613823","video_info":{"aspect_ratio":[1,1],"duration_millis":18100,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/pl\/GShEY6_ukZ8jNlgP.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/480x480\/lID75QPOTwG_k4u7.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/240x240\/NsIUhwdWxzwXIrP5.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/480x480\/lID75QPOTwG_k4u7.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/pl\/GShEY6_ukZ8jNlgP.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"picopico715","name":"pico","id":2228525466,"id_str":"2228525466","indices":[3,15]}],"symbols":[],"media":[{"id":663343617965092864,"id_str":"663343617965092864","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","url":"https:\/\/t.co\/y8o7RGJjqc","display_url":"pic.twitter.com\/y8o7RGJjqc","expanded_url":"http:\/\/twitter.com\/dohkyungsoonet\/status\/663343809774747648\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663343809774747648,"source_status_id_str":"663343809774747648","source_user_id":609613823,"source_user_id_str":"609613823"}]},"extended_entities":{"media":[{"id":663343617965092864,"id_str":"663343617965092864","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663343617965092864\/pu\/img\/y84MH8HAqWQFaCWu.jpg","url":"https:\/\/t.co\/y8o7RGJjqc","display_url":"pic.twitter.com\/y8o7RGJjqc","expanded_url":"http:\/\/twitter.com\/dohkyungsoonet\/status\/663343809774747648\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663343809774747648,"source_status_id_str":"663343809774747648","source_user_id":609613823,"source_user_id_str":"609613823","video_info":{"aspect_ratio":[1,1],"duration_millis":18100,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/pl\/GShEY6_ukZ8jNlgP.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/480x480\/lID75QPOTwG_k4u7.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/240x240\/NsIUhwdWxzwXIrP5.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/vid\/480x480\/lID75QPOTwG_k4u7.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663343617965092864\/pu\/pl\/GShEY6_ukZ8jNlgP.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311450112,"id_str":"663727783311450112","text":"RT @CsMalaga: @Albert_Rivera: 'La huida hacia adelante de Mas tiene que ver con el intento de tapar la corrupci\u00f3n de su partido'\nhttps:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2383363906,"id_str":"2383363906","name":"manuel manuel","screen_name":"franquelo36","location":"Malaga","url":null,"description":"ciudadano que ama la libertad, medico especialista en Geriatria.Experto en cuidados paliativos,defensor de la sanidad publica.","protected":false,"verified":false,"followers_count":490,"friends_count":881,"listed_count":8,"favourites_count":928,"statuses_count":1770,"created_at":"Tue Mar 04 19:05:45 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530676102621298689\/GxpLjIAs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530676102621298689\/GxpLjIAs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2383363906\/1423598034","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:48 +0000 2015","id":663716622927060993,"id_str":"663716622927060993","text":"@Albert_Rivera: 'La huida hacia adelante de Mas tiene que ver con el intento de tapar la corrupci\u00f3n de su partido'\nhttps:\/\/t.co\/EFjESknwpw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":108994652,"in_reply_to_user_id_str":"108994652","in_reply_to_screen_name":"Albert_Rivera","user":{"id":2398104475,"id_str":"2398104475","name":"Ciudadanos M\u00e1laga","screen_name":"CsMalaga","location":"M\u00e1laga, Andaluc\u00eda","url":"http:\/\/www.ciudadanos-cs.org","description":"Perfil Oficial en Twitter de Ciudadanos M\u00e1laga - Partido de la Ciudadan\u00eda.\nmalaga@ciudadanos-cs.org","protected":false,"verified":false,"followers_count":20142,"friends_count":17122,"listed_count":138,"favourites_count":5024,"statuses_count":6009,"created_at":"Wed Mar 19 16:04:29 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620964414825582592\/p11E-Fu3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620964414825582592\/p11E-Fu3.jpg","profile_background_tile":false,"profile_link_color":"EB6109","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581599380521750528\/yxruMehd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581599380521750528\/yxruMehd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398104475\/1425574177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":11,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EFjESknwpw","expanded_url":"https:\/\/www.ciudadanos-cs.org\/prensa\/rivera-la-huida-hacia-adelante-de-mas-tiene-mucho-que-ver-con-el-intento-de-tapar-la-corrupcion-de-su-partido\/8421","display_url":"ciudadanos-cs.org\/prensa\/rivera-\u2026","indices":[115,138]}],"user_mentions":[{"screen_name":"Albert_Rivera","name":"Albert Rivera","id":108994652,"id_str":"108994652","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EFjESknwpw","expanded_url":"https:\/\/www.ciudadanos-cs.org\/prensa\/rivera-la-huida-hacia-adelante-de-mas-tiene-mucho-que-ver-con-el-intento-de-tapar-la-corrupcion-de-su-partido\/8421","display_url":"ciudadanos-cs.org\/prensa\/rivera-\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"CsMalaga","name":"Ciudadanos M\u00e1laga","id":2398104475,"id_str":"2398104475","indices":[3,12]},{"screen_name":"Albert_Rivera","name":"Albert Rivera","id":108994652,"id_str":"108994652","indices":[14,28]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783307313152,"id_str":"663727783307313152","text":"I'm at \u304a\u3046\u3061 https:\/\/t.co\/zo7vxyObmJ","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164125804,"id_str":"2164125804","name":"\u308a\u3085\u30fc\u3057\u2606 i\u2606Ris 3rd\u304a\u3064\u304b\u308c","screen_name":"BRyushi10000","location":"\u305b\u308a\u3056\u308f\u30fc\u308b\u3069","url":null,"description":"\u82b9\u6fa4\u512a\u3061\u3083\u3093\u5927\u597d\u304d\u3067\u3059\u2026\u604b\u304b\u3082\u3057\u308c\u307e\u305b\u3093 \u30a2\u30cb\u30e1\u3082\u3088\u304f\u307f\u3066\u307e\u3059(\u5973\u5150\u3067\u3059) \u4f50\u8cc0\u770c","protected":false,"verified":false,"followers_count":1216,"friends_count":390,"listed_count":32,"favourites_count":9679,"statuses_count":43523,"created_at":"Wed Oct 30 05:02:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650987345882124289\/tg98BHLU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650987345882124289\/tg98BHLU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164125804\/1444466920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[33.20518704,130.01715644]},"coordinates":{"type":"Point","coordinates":[130.01715644,33.20518704]},"place":{"id":"d3901adfb770b23d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d3901adfb770b23d.json","place_type":"city","name":"\u6b66\u96c4\u5e02","full_name":"\u4f50\u8cc0\u770c \u6b66\u96c4\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[129.903265,33.109818],[129.903265,33.281116],[130.108085,33.281116],[130.108085,33.109818]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zo7vxyObmJ","expanded_url":"https:\/\/www.swarmapp.com\/c\/8HNhhsEDA8j","display_url":"swarmapp.com\/c\/8HNhhsEDA8j","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009663"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290376192,"id_str":"663727783290376192","text":"\u00bfDesde cu\u00e1ndo hay escasez en Venezuela? (+Infograf\u00eda) https:\/\/t.co\/NqcBtD8Qxc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179237619,"id_str":"179237619","name":"DesdeLaPlaza.com","screen_name":"DsdLaPlaza","location":"Caracas\/Venezuela","url":"http:\/\/www.desdelaplaza.com","description":"Informaci\u00f3n, entretenimiento e interactividad en un espacio para todos","protected":false,"verified":false,"followers_count":67601,"friends_count":1015,"listed_count":432,"favourites_count":2948,"statuses_count":244966,"created_at":"Mon Aug 16 21:09:39 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440960701738131456\/Zbl6ZVIH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440960701738131456\/Zbl6ZVIH.jpeg","profile_background_tile":true,"profile_link_color":"E7326E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661195336904413185\/o_xzft-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661195336904413185\/o_xzft-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179237619\/1446476190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NqcBtD8Qxc","expanded_url":"http:\/\/on.fb.me\/1psrk3e","display_url":"on.fb.me\/1psrk3e","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281975296,"id_str":"663727783281975296","text":"RT @nchancha92: Alii @alysyarief @PrillyBie lo disakitin si dugong li \ud83d\ude29\ud83d\ude29 hajar li si dugong kampret li \ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3813180972,"id_str":"3813180972","name":"Miftahunnisa","screen_name":"MHunnisa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":22,"listed_count":0,"favourites_count":3,"statuses_count":1066,"created_at":"Wed Oct 07 10:27:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659224650845544448\/_dMr3Z6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659224650845544448\/_dMr3Z6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3813180972\/1444301731","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:52 +0000 2015","id":663727206967832581,"id_str":"663727206967832581","text":"Alii @alysyarief @PrillyBie lo disakitin si dugong li \ud83d\ude29\ud83d\ude29 hajar li si dugong kampret li \ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150605244,"id_str":"150605244","name":"ECM !!","screen_name":"nchancha92","location":"KIA\u2665\u2665","url":null,"description":"be a smart fans!! | kesayangan gue @alysyarief @PrillyBie","protected":false,"verified":false,"followers_count":1588,"friends_count":498,"listed_count":0,"favourites_count":785,"statuses_count":20009,"created_at":"Tue Jun 01 10:30:39 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524137309654896640\/g10bXjQ5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524137309654896640\/g10bXjQ5.jpeg","profile_background_tile":true,"profile_link_color":"20CAE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663220533081669632\/D9N-k_rJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663220533081669632\/D9N-k_rJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150605244\/1439183396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alysyarief","name":"Aliando Syarief","id":323094984,"id_str":"323094984","indices":[5,16]},{"screen_name":"PrillyBie","name":"Prilly Latuconsina","id":131536053,"id_str":"131536053","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nchancha92","name":"ECM !!","id":150605244,"id_str":"150605244","indices":[3,14]},{"screen_name":"alysyarief","name":"Aliando Syarief","id":323094984,"id_str":"323094984","indices":[21,32]},{"screen_name":"PrillyBie","name":"Prilly Latuconsina","id":131536053,"id_str":"131536053","indices":[33,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281954816,"id_str":"663727783281954816","text":"RT @_TheBlankCanvas: Ab\u016b Bakr said: \"Do not belittle another Muslim, for even the lowest of the Muslims is great in the sight of All\u0101h.\"\n\n\u25cf\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2342249743,"id_str":"2342249743","name":"Dr. Ir Jony Zar","screen_name":"iamjonyzar","location":"University Of Papua Mango","url":"http:\/\/instagram.com\/dr.janiey","description":"Medical Centre. Engineering Centre. 20. Kalau kamu nampak saya cakap sorang2, percayalah bahawa saya sedang berbicara dengan masa silam..","protected":false,"verified":false,"followers_count":1670,"friends_count":1157,"listed_count":3,"favourites_count":3401,"statuses_count":25837,"created_at":"Thu Feb 13 16:33:49 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659302236233699328\/uZIrm6-l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659302236233699328\/uZIrm6-l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2342249743\/1446745068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 00:41:23 +0000 2015","id":663154311740973056,"id_str":"663154311740973056","text":"Ab\u016b Bakr said: \"Do not belittle another Muslim, for even the lowest of the Muslims is great in the sight of All\u0101h.\"\n\n\u25cf [\u0627\u062d\u064a\u0627 \u0639\u0644\u0648\u0645 \u062f\u064a\u0646 \u0663\/\u0664\u0660\u0660]","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":434766935,"id_str":"434766935","name":"\u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","screen_name":"_TheBlankCanvas","location":"Searching..........","url":"http:\/\/favstar.fm\/users\/_TheBlankCanvas","description":"-------- \u0641\u064e\u0627\u0630\u0652\u0643\u064f\u0631\u064f\u0648\u0646\u0650\u064a \u0623\u064e\u0630\u0652\u0643\u064f\u0631\u0652\u0643\u064f\u0645\u0652 \u0648\u064e\u0627\u0634\u0652\u0643\u064f\u0631\u064f\u0648\u0627 \u0644\u0650\u064a \u0648\u064e\u0644\u064e\u0627 \u062a\u064e\u0643\u0652\u0641\u064f\u0631\u064f\u0648\u0646\u0650 -------- So remember Me; I will remember you. And be grateful to Me and do not \ndeny Me","protected":false,"verified":false,"followers_count":11288,"friends_count":2345,"listed_count":29,"favourites_count":4035,"statuses_count":19076,"created_at":"Mon Dec 12 08:47:36 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662427763375267840\/7H4KnZkp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662427763375267840\/7H4KnZkp.jpg","profile_background_tile":false,"profile_link_color":"FF0080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660675520191950848\/XpVBEDGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660675520191950848\/XpVBEDGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/434766935\/1441921878","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":132,"favorite_count":100,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_TheBlankCanvas","name":"\u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647","id":434766935,"id_str":"434766935","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sl","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294537728,"id_str":"663727783294537728","text":"Gerrard, di gadang-gadang menjadi biang kekalahan Liverpool.\nhttps:\/\/t.co\/CPu9FmIfJP.\n\nPas maen, 2x kalah. Ntar mah ga usah dateng aja ya.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27846404,"id_str":"27846404","name":"mysupersoccer","screen_name":"my_supersoccer","location":"Pinggir Lapangan Bola","url":"http:\/\/www.supersoccer.co.id","description":"Akun resmi http:\/\/www.supersoccer.co.id dan #FMSuperSoccer. Kandang-nya Pecinta Bola. Kami di sini bicara suka-suka. Khusus buat yang (ngerasa) dewasa!","protected":false,"verified":true,"followers_count":660160,"friends_count":82,"listed_count":1351,"favourites_count":59,"statuses_count":292054,"created_at":"Tue Mar 31 10:24:03 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000073035417\/2f6016d500b94d9d9588e8391beaa9b2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000073035417\/2f6016d500b94d9d9588e8391beaa9b2.jpeg","profile_background_tile":false,"profile_link_color":"8C0F12","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"D99B20","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618666643388936194\/_T7EkRsV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618666643388936194\/_T7EkRsV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27846404\/1436588793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CPu9FmIfJP","expanded_url":"http:\/\/bit.ly\/1M1pIvP","display_url":"bit.ly\/1M1pIvP","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290343424,"id_str":"663727783290343424","text":"Chase the sunset in your dream car.\n#SingaporeInvites #India \n\nWin a Singapore experience: https:\/\/t.co\/JePsoEVCU5 \n\nhttps:\/\/t.co\/pk9elOVv8b","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446962551,"id_str":"446962551","name":"Era","screen_name":"theerailivedin","location":"India","url":"http:\/\/theerailivedin.wordpress.com\/","description":"Creative Thinker | Brand Coordinator & Strategist | Blogger | Cooking Enthusiast | Eternal Optimist | Tech Lover | Avid Reader | Dreaming On |","protected":false,"verified":false,"followers_count":4849,"friends_count":398,"listed_count":65,"favourites_count":990,"statuses_count":81632,"created_at":"Mon Dec 26 10:26:32 +0000 2011","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440184667140923392\/93HvfWcD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440184667140923392\/93HvfWcD.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640571887072882688\/Ft18FUXG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640571887072882688\/Ft18FUXG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446962551\/1444150198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SingaporeInvites","indices":[36,53]},{"text":"India","indices":[54,60]}],"urls":[{"url":"https:\/\/t.co\/JePsoEVCU5","expanded_url":"http:\/\/yoursingapore.com\/singaporeinvites","display_url":"yoursingapore.com\/singaporeinvit\u2026","indices":[91,114]},{"url":"https:\/\/t.co\/pk9elOVv8b","expanded_url":"https:\/\/www.youtube.com\/watch?v=4L3tIwu-7v8&feature=youtu.be","display_url":"youtube.com\/watch?v=4L3tIw\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311372288,"id_str":"663727783311372288","text":"\u512a\u7f8e\u3061\u3083\u3093\u306e\u30a2\u30ec\u304c\u307f\u308c\u308b\u3045\u3045\u3046\u3046\u2665\n\u30b3\u30e1\u30f3\u30c8\u304a\u9858\u3044\u3057\u307e\u3059\u30fd(^o^)\u4e3f\n\nhttps:\/\/t.co\/zTKDmjNjBb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150549684,"id_str":"2150549684","name":"\u3081\u3050\u3081\u3050\u3081\u3050\u3081\u3050","screen_name":"meeg_www","location":null,"url":null,"description":"\u4e0a\u897f\u6075\u3061\u3083\u3093(@jonishi3)\u2661 \u77f3\u7530\u512a\u7f8e\u3061\u3083\u3093(@yuumi_1012)\u5927\u597d\u304d\\( \u00a8\u032e )\/\u2661","protected":false,"verified":false,"followers_count":243,"friends_count":213,"listed_count":6,"favourites_count":1707,"statuses_count":3769,"created_at":"Wed Oct 23 08:31:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657867317179625473\/WGTHqjit_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657867317179625473\/WGTHqjit_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150549684\/1422534016","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zTKDmjNjBb","expanded_url":"http:\/\/dlvr.it\/ChdwkW","display_url":"dlvr.it\/ChdwkW","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319744512,"id_str":"663727783319744512","text":"\u77e5\u3089\u306a\u3044\u4eba\u591a\u305d\u3046","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3771236953,"id_str":"3771236953","name":"\u6afb\u5b50\u5927\u597d\u304d\u304d\u308a\u3093\u3061\u3083\u3093","screen_name":"__KRN_","location":"\u305d\u308d\u305d\u308d\u65b0\u5e79\u7dda\u304c\u6765\u308b\u3068\u3053\u308d","url":"http:\/\/bluekingdragon.dip.jp\/sdvx\/showUserData.php?id=KIRINckp","description":"\u6d6a\u4eba\u751f\u97f3\u30b2\u30fc\u30de\u30fc\u3002\u5730\u529b\u6708\u885d\u306e\u5929\u6975\u3067\u3059\u3002\u70c8\u98a8\u98db\u3070\u3057\u3066\u96f7\u96fb\u53d6\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":102,"friends_count":79,"listed_count":4,"favourites_count":8378,"statuses_count":14059,"created_at":"Sat Oct 03 15:09:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662159146700017664\/ncYBMI8U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662159146700017664\/ncYBMI8U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3771236953\/1445778119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290535936,"id_str":"663727783290535936","text":"Found this little nugget by accident: Steve Jobs shows off the \"Think different\" campaign in an internal meeting \nhttps:\/\/t.co\/E0kZ7nrdz5","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234876273,"id_str":"234876273","name":"Patrice","screen_name":"casual_kitchen","location":"Germany","url":"http:\/\/www.brendamour.net","description":"Casual Kitchen is actually the name of my (german) cooking show. Aside from that I'm a developer, health nut and can also be seen on different podcasts\/shows","protected":false,"verified":false,"followers_count":195,"friends_count":148,"listed_count":25,"favourites_count":187,"statuses_count":5442,"created_at":"Thu Jan 06 20:02:17 +0000 2011","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C60000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"00D138","profile_sidebar_fill_color":"E0E0E0","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509879546309787648\/aovGIo8i_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509879546309787648\/aovGIo8i_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/E0kZ7nrdz5","expanded_url":"http:\/\/bit.ly\/1WL1Uz7","display_url":"bit.ly\/1WL1Uz7","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281979392,"id_str":"663727783281979392","text":"New #job opening for Junior to Mid-level #Banking #Attorney with #corporate experience in #DC. Apply now!\nhttps:\/\/t.co\/MUAZ9habm3","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328733928,"id_str":"2328733928","name":"BCG Attorney Search","screen_name":"BCGSeachDC","location":"Washington, DC","url":"http:\/\/www.bcgsearch.com\/offices-31\/legal-recruiter-Washington-DC.php","description":"BCG Attorney Search Washington DC office works with attorneys in getting them placed in the finest DC area law firms.","protected":false,"verified":false,"followers_count":40,"friends_count":740,"listed_count":7,"favourites_count":4,"statuses_count":699,"created_at":"Wed Feb 05 12:46:03 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588617501065351168\/4LlCrajZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588617501065351168\/4LlCrajZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328733928\/1391604816","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[4,8]},{"text":"Banking","indices":[41,49]},{"text":"Attorney","indices":[50,59]},{"text":"corporate","indices":[65,75]},{"text":"DC","indices":[90,93]}],"urls":[{"url":"https:\/\/t.co\/MUAZ9habm3","expanded_url":"http:\/\/goo.gl\/i1J2fV","display_url":"goo.gl\/i1J2fV","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294730240,"id_str":"663727783294730240","text":"RT @MassimoBugani: Nella stretta di mano a Nino Di Matteo mi sono commosso e non gli avrei pi\u00f9 lasciato la mano. Ho balbettato... https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2951279819,"id_str":"2951279819","name":"lucia luce","screen_name":"luce_lucialenzi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":524,"friends_count":186,"listed_count":95,"favourites_count":41,"statuses_count":66496,"created_at":"Tue Dec 30 15:15:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549954059893874688\/hSbuVznt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549954059893874688\/hSbuVznt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2951279819\/1420157382","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727509503148032,"id_str":"663727509503148032","text":"Nella stretta di mano a Nino Di Matteo mi sono commosso e non gli avrei pi\u00f9 lasciato la mano. Ho balbettato... https:\/\/t.co\/RUNdvpkfle","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221786542,"id_str":"221786542","name":"Massimo Bugani","screen_name":"MassimoBugani","location":"Bologna","url":"http:\/\/www.bologna5stelle.it\/","description":"...perch\u00e8 basta anche un niente per esser felici, basta vivere come le cose che dici...","protected":false,"verified":false,"followers_count":5480,"friends_count":784,"listed_count":72,"favourites_count":1,"statuses_count":3532,"created_at":"Wed Dec 01 16:18:32 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000442633716\/8caa94d0653be6467efd498be015bc9a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000442633716\/8caa94d0653be6467efd498be015bc9a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221786542\/1426456590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RUNdvpkfle","expanded_url":"http:\/\/fb.me\/6UaP2e8QI","display_url":"fb.me\/6UaP2e8QI","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RUNdvpkfle","expanded_url":"http:\/\/fb.me\/6UaP2e8QI","display_url":"fb.me\/6UaP2e8QI","indices":[139,140]}],"user_mentions":[{"screen_name":"MassimoBugani","name":"Massimo Bugani","id":221786542,"id_str":"221786542","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319724032,"id_str":"663727783319724032","text":"new Community Who \/ Community That https:\/\/t.co\/uU03M9SMck","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":626807031,"id_str":"626807031","name":"\u0627\u0644\u062c\u062f\u064a\u062f","screen_name":"new201567","location":null,"url":null,"description":"\u0627\u0637\u0644\u0639 \u0639\u0644\u0649 \u0643\u0644 \u0645\u0627 \u0647\u0648 \u062c\u062f\u064a\u062f","protected":false,"verified":false,"followers_count":2481,"friends_count":2886,"listed_count":7,"favourites_count":17,"statuses_count":246153,"created_at":"Wed Jul 04 19:40:07 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602561721270542336\/HBKNq6In_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602561721270542336\/HBKNq6In_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uU03M9SMck","expanded_url":"http:\/\/bit.ly\/1NEzEgY","display_url":"bit.ly\/1NEzEgY","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294558210,"id_str":"663727783294558210","text":"@bts_sugus sama hyung","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726678489763840,"in_reply_to_status_id_str":"663726678489763840","in_reply_to_user_id":546675369,"in_reply_to_user_id_str":"546675369","in_reply_to_screen_name":"bts_sugus","user":{"id":2197720610,"id_str":"2197720610","name":"jungkook","screen_name":"jeonjjk_97","location":null,"url":null,"description":"JEON JUNGKOOK BTS | 970901 | maknae vocal dancer rapper | I'm golden | #BIGHITEAM #BTSDOPE #BTSQ","protected":false,"verified":false,"followers_count":1677,"friends_count":1135,"listed_count":3,"favourites_count":1,"statuses_count":12749,"created_at":"Sat Nov 16 13:13:52 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663018469974130688\/fKbqSMPu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663018469974130688\/fKbqSMPu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2197720610\/1446018455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bts_sugus","name":"sugus","id":546675369,"id_str":"546675369","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298756608,"id_str":"663727783298756608","text":"\u30e9\u30ce\u30d9\u597d\u304d\u7537\u5b50\u3082\u5229\u7528\u3057\u3066\u308b\u306e\u304c \u21d2 [PR:https:\/\/t.co\/OjZs2jlkWm] \u672d\u5e4c\u5e02\u897f\u533a\u4f1a\u54e1\u591a\u6570v(\uff61\uff65\u03c9\uff65\uff61)\u604b\u4eba\u63a2\u3057\u3092\u5fdc\u63f4\u3059\u308b\u65e5\u672c\u6700\u5927\u7d1a\u30de\u30c3\u30c1\u30f3\u30b0\u30b5\u30a4\u30c8","source":"\u003ca href=\"https:\/\/twitter.com\/qkceyxq6vv\" rel=\"nofollow\"\u003e\u3053name\u306f\u308b\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622307414,"id_str":"3622307414","name":"\u307e\u304d\u5b50\u30a2\u30cb\u30bd\u30f3\u597d\u304d","screen_name":"shj83uhsd","location":null,"url":"http:\/\/bit.ly\/1Hd05ne","description":"\u30b9\u30dd\u30fc\u30c4\u89b3\u6226\u304c\u3059\u304d\u266a\u3044\u308d\u3044\u308d\u898b\u3066\u307f\u305f\u3044\u3067\u3059\u3002\u30b9\u30dd\u30fc\u30c4\u3082\u3044\u3044\u3051\u3069\u3001\u610f\u5916\u3068\u30a4\u30f3\u30c9\u30a2\u7cfb\u3082\u8da3\u5473\u591a\u304f\u3066\u3002\u6f2b\u753b\u3068\u304b\u30a2\u30cb\u30e1\u3082\u597d\u304d\u3060\u3057\u30b2\u30fc\u30e0\u3082\uff01\u3067\u3082\u306a\u304b\u306a\u304b\u540c\u3058\u8da3\u5473\u306e\u4eba\u306b\u4f1a\u3048\u306a\u3044\u3088\u306d\u30fc\u3002\u3067\u3082mixi\u304c\u904b\u55b6\u6bcd\u4f53\u306e\u3053\u306e\u51fa\u4f1a\u3044\u7cfb\u306a\u3089\u30ad\u30c3\u30c8\u7406\u60f3\u306e\u76f8\u624b\u304c\u898b\u3064\u304b\u308b\u3088\uff01\u5973\u5b50\u306f\u305c\u3093\u3076\u7121\u6599\u3060\u3057\u5b89\u5168\u5b89\u5fc3\u3067\u30fc\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u52df\u96c6\uff01\u30d5\u30a9\u30ed\u30d0100\uff05\u3067\u3059","protected":false,"verified":false,"followers_count":174,"friends_count":166,"listed_count":0,"favourites_count":334,"statuses_count":1059,"created_at":"Sun Sep 20 02:36:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657108530760019968\/_u0sY8qu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657108530760019968\/_u0sY8qu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OjZs2jlkWm","expanded_url":"http:\/\/goo.gl\/qzyC5h","display_url":"goo.gl\/qzyC5h","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294713857,"id_str":"663727783294713857","text":"I'm at \u0427\u0430\u0448\u043a\u0430 Express - @chashkaespresso in \u0427\u0435\u0440\u043d\u0456\u0433\u0456\u0432, \u0427\u0435\u0440\u043d\u0456\u0433\u0456\u0432\u0441\u044c\u043a\u0430 \u043e\u0431\u043b. https:\/\/t.co\/iau1CK6YAh","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173777532,"id_str":"173777532","name":"zlata","screen_name":"apprimafacie","location":null,"url":"http:\/\/instagram.com\/apprimafacie","description":"from love to hate","protected":false,"verified":false,"followers_count":87,"friends_count":64,"listed_count":4,"favourites_count":404,"statuses_count":20228,"created_at":"Mon Aug 02 09:55:04 +0000 2010","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539170531249905664\/j4tWrKq_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539170531249905664\/j4tWrKq_.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651886927155752960\/QXvPLR27_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651886927155752960\/QXvPLR27_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173777532\/1446028450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[51.49455708,31.29542470]},"coordinates":{"type":"Point","coordinates":[31.29542470,51.49455708]},"place":{"id":"084d0d0155787e9d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/084d0d0155787e9d.json","place_type":"country","name":"Ukraine","full_name":"Ukraine","country_code":"UA","country":"Ukraina","bounding_box":{"type":"Polygon","coordinates":[[[22.135720,44.386383],[22.135720,52.379475],[40.227172,52.379475],[40.227172,44.386383]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iau1CK6YAh","expanded_url":"https:\/\/www.swarmapp.com\/c\/b7FvVTrNCAk","display_url":"swarmapp.com\/c\/b7FvVTrNCAk","indices":[71,94]}],"user_mentions":[{"screen_name":"ChashkaEspresso","name":"Chashka Espresso Bar","id":975923760,"id_str":"975923760","indices":[23,39]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"uk","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319769088,"id_str":"663727783319769088","text":"@SPD_taiga333 \n\u305d\u308c\u306f\u308f\u304b\u308a\u307e\u3059\u7b11\n\u8239\u9577\u306f\u30a2\u30fc\u30ed\u30f3\u304b\u30be\u30ed\u3067\u3057\u305f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727266300452864,"in_reply_to_status_id_str":"663727266300452864","in_reply_to_user_id":2886061315,"in_reply_to_user_id_str":"2886061315","in_reply_to_screen_name":"SPD_taiga333","user":{"id":2188230486,"id_str":"2188230486","name":"toshiki@\u30c8\u30ec\u30af\u30eb\u57a24.9\u7d44","screen_name":"torekuru_1018","location":null,"url":null,"description":"\u7121\u8ab2\u91d1\/\u6d77\u8cca\u30ec\u30d9\u30eb260\u2191\/ID417414503\/\u30b2\u30ea\u30e94.9\u7d44\/\u7279\u8a13\u306e\u68ee\u5236\u8987\/\u30d5\u30a7\u30b9\u9650\u2192\u767d\u3072\u3052,\u30ed\u30b0\u30eb\u30d5\u30a3","protected":false,"verified":false,"followers_count":78,"friends_count":83,"listed_count":0,"favourites_count":29,"statuses_count":1260,"created_at":"Mon Nov 11 11:46:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655722165803716608\/jFhl-Pft_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655722165803716608\/jFhl-Pft_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2188230486\/1432023571","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SPD_taiga333","name":"TAIGA","id":2886061315,"id_str":"2886061315","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281987584,"id_str":"663727783281987584","text":"@Kiiichan0204 \n\u30c1\u30e3\u30e9\u7537\u306a\u3086\u305a\u59eb\u3067\u3044\u304f\u308f\u3002\u2190\u8ab0\u5f97\n\n\u30d7\u30ea\u30f3\u30bb\u30b9\u3067\u3044\u3044\u3088\ud83d\ude0f\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709902209093633,"in_reply_to_status_id_str":"663709902209093633","in_reply_to_user_id":2920617079,"in_reply_to_user_id_str":"2920617079","in_reply_to_screen_name":"Kiiichan0204","user":{"id":3224118242,"id_str":"3224118242","name":"\u3086\u305a\u304b\u308f@14.15.18","screen_name":"yuzuyuzu_disney","location":"\u821e\u6d5c\u21922\u6642\u9593","url":null,"description":"\u30c7\u30a3\u30ba\u30cb\u30fc\u4e2d\u5fc3\u8da3\u5473\u57a2\u300220\u4ee3\u2642\u5171\u901a\u5e74\u30d1\/\u30b7\u30e7\u30fc\u30d1\u30ec\u30b0\u30ea\/\u3044\u3064\u3067\u3082\u30df\u30fc\u30c8\u30fb\u30a4\u30f3\u6b53\u8fce\u3067\u3059\u30fd(\u00b4\u25bd\uff40)\/\u6d77\u5e95\u4e8c\u4e07\u30de\u30a4\u30eb\/\u30bf\u30ef\u30c6\u30e9\/\u4e00\u773c\u521d\u5fc3\u8005\/\u30c7\u30a4\u30b8\u30fc\u3001\u30d7\u30fc\u2b50\ufe0e\u53e3\u7656\u300c\u30d1\u30b3\u3067\u301c\u3059\u300d","protected":false,"verified":false,"followers_count":639,"friends_count":586,"listed_count":21,"favourites_count":743,"statuses_count":7840,"created_at":"Sat May 23 10:09:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648434352519446528\/R0uj4Qhk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648434352519446528\/R0uj4Qhk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224118242\/1432392264","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kiiichan0204","name":"\u304d\u3044\u3061\u3083\u3093(\u2741\u00b4\u03c9`\u2741)","id":2920617079,"id_str":"2920617079","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783302983680,"id_str":"663727783302983680","text":"@kj8krsb \u3044\u3084\u3044\u30845\u500d\u3068\u8a00\u308f\u305a100\u500d\u3067\u3001\u3001\u3001\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722321635508224,"in_reply_to_status_id_str":"663722321635508224","in_reply_to_user_id":3118081326,"in_reply_to_user_id_str":"3118081326","in_reply_to_screen_name":"kj8krsb","user":{"id":933260264,"id_str":"933260264","name":"\u30ae\u30b9 \u164f\u0324\u032b","screen_name":"gisu_2","location":"\u304a\u30fc\u3044\u305f\u2192\u3068\u30fc\u304d\u3087\u30fc","url":null,"description":"\u6b6f\u79d1\u307a\u30fc\u307a\u30fc\u3074\u3084\u3063\u3066\u307e\u3059(\uff61\uff65x\uff65)o\u5f61\uff9f","protected":false,"verified":false,"followers_count":106,"friends_count":98,"listed_count":1,"favourites_count":218,"statuses_count":2905,"created_at":"Thu Nov 08 00:14:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648126492547743744\/rtOwRrqx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648126492547743744\/rtOwRrqx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933260264\/1369293719","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kj8krsb","name":"\u3042\u3059\u304b","id":3118081326,"id_str":"3118081326","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009662"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286206464,"id_str":"663727783286206464","text":"@yellow244happy \u307b\u3093\u3063\u3063\u3068\u3081\u3063\u3061\u3083\u304f\u3061\u3083\u53ef\u611b\u3044\u3088\u306d\u3048\u3048(*>\u03c9<*)\u2661\u30ae\u30e5\u30fc\u3057\u3066\u30b9\u30ea\u30b9\u30ea\u306a\u3067\u306a\u3067\u64ab\u3067\u304f\u308a\u307e\u308f\u3057\u3066\u611b\u3067\u305f\u3044\u30ac\u30a6\u624b\u888b\u30ea\u30d6\u3061\u3083\u3093\u53ef\u611b\u3059\u304e\u30cb\u30af\u30cb\u30af\u30cb\u30af\u30fc\u30fc\u30fc\u30fc(\u0a6d\u0941 \u203a\u03c9\u2039 )\u0941\u2661\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663482425712836608,"in_reply_to_status_id_str":"663482425712836608","in_reply_to_user_id":3269814926,"in_reply_to_user_id_str":"3269814926","in_reply_to_screen_name":"yellow244happy","user":{"id":2913778460,"id_str":"2913778460","name":"\u3072\u306a\u305f\u3002@11\/15\u5c3d\u672a\u6765\u969b","screen_name":"marumaru029","location":null,"url":null,"description":"\u3072\u306a\u305f\u307e\u308b\u3068\u3044\u3044\u307e\u3059\u3002\u30aa\u30aa\u30ab\u30df\u3061\u3083\u3093\u305f\u3061\u304c\u597d\u304d\u3059\u304e\u3066\u30c6\u30f3\u30b7\u30e7\u30f3\u8ff7\u5b50\u3067\u3046\u308b\u3055\u3044\u3067\u3059\u3054\u6ce8\u610f\u3002\u30d5\u30a9\u30ed\u30ea\u30e0\u30d6\u30ed\u30c3\u30af\u5fa1\u81ea\u7531\u306b\u3002\u30ea\u30d7\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\uff01 1016.17\u30de\u30f3\u30a6\u30a3\u30ba\/1102\u5c71\u5d0e\u6b7b\u95d8\u7de8\/1104\u80ce\u76e4\/1115\u5c3d\u672a\u6765\u969b\/1120ROCK-O-RAMA\/1121\u30c9\u30ea\u30d5\u30a7\u30b9","protected":false,"verified":false,"followers_count":171,"friends_count":135,"listed_count":2,"favourites_count":4241,"statuses_count":8085,"created_at":"Sat Nov 29 13:48:28 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554626005277499392\/BDcQqiMv.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554626005277499392\/BDcQqiMv.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662891002370256896\/6KcGl0di_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662891002370256896\/6KcGl0di_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913778460\/1446880506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yellow244happy","name":"\u30a8\u30df(\uff62\uff9f\u0414\uff9f)\uff62(\uff65\u2200\uff65)\u2661","id":3269814926,"id_str":"3269814926","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009658"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290408961,"id_str":"663727783290408961","text":"Might just be able to go to the Arlington Bowie playoff game after all \ud83d\ude0b\ud83d\ude0f\ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4177178053,"id_str":"4177178053","name":"Rylee Ann Rodriguez","screen_name":"missryleeann","location":"Dallas, TX","url":null,"description":"Uggggh. locked myself out of my old twitter. Follow me on here \n*2014 graduate from Arlington Bowie *track","protected":false,"verified":false,"followers_count":7,"friends_count":70,"listed_count":0,"favourites_count":1,"statuses_count":6,"created_at":"Mon Nov 09 08:03:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663633077336346624\/G89At9lD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663633077336346624\/G89At9lD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4177178053\/1447057497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315550208,"id_str":"663727783315550208","text":"Get Weather Updates from The Weather Channel. 09:40:09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2742857102,"id_str":"2742857102","name":"83301slhb","screen_name":"83301slhb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":58177,"created_at":"Mon Aug 18 19:33:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783302967297,"id_str":"663727783302967297","text":"@RedChilliesEnt damn we want the link","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727380809170946,"in_reply_to_status_id_str":"663727380809170946","in_reply_to_user_id":1243173036,"in_reply_to_user_id_str":"1243173036","in_reply_to_screen_name":"RedChilliesEnt","user":{"id":525175339,"id_str":"525175339","name":"the_4rif","screen_name":"KingTslm","location":"Pune, Maharashtra","url":null,"description":"Alhmdulillah \nmuslim \u270a\n true beliver of Allah \n INDIAN \ndie hard lover of Hocane sisters\n@mawrahocane @urwahocane \nIndian","protected":false,"verified":false,"followers_count":31,"friends_count":279,"listed_count":0,"favourites_count":487,"statuses_count":519,"created_at":"Thu Mar 15 08:42:19 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663586311727546368\/Phg_3pOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663586311727546368\/Phg_3pOf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/525175339\/1445414247","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RedChilliesEnt","name":"Dilwale","id":1243173036,"id_str":"1243173036","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009662"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315529728,"id_str":"663727783315529728","text":"@yukainanakama31 \u3053\u308a\u3083\u30fc\u9a5a\u3044\u305f\u3001\u7d0b\u304c\u8e0a\u308b\u306e\u304b\u3088\uff01\uff1fwwww\n\u3067\u3059\u306dww","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726904785014784,"in_reply_to_status_id_str":"663726904785014784","in_reply_to_user_id":1870279657,"in_reply_to_user_id_str":"1870279657","in_reply_to_screen_name":"yukainanakama31","user":{"id":2591460552,"id_str":"2591460552","name":"kumakuma","screen_name":"kumakuma_ringo","location":"\u30d2\u30b0\u30de\u7d76\u8cdb\u6d3b\u52d5\u4e2d","url":"http:\/\/www.nicovideo.jp\/user\/26402346","description":"MMDer\u517cBlender\u521d\u5fc3\u8005\u3002MMDAI2\u3082\u3002BASARA\u3068\u30bf\u30a4\u30d0\u30cb\u5927\u597d\u304d\uff01\u6700\u8fd1\u30d7\u30ed\u30a4\u30bb\u30f3\u306b\u843d\u3061\u305f\uff01\u5200\u5263\u306f\u4f0a\u9054\u6cbc\u3002\u6210\u4eba\u6e08\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u3061\u307e\u3081\u3055\u3093\u8b39\u88fd(\u30e2\u30c7\u30ebAZ\u69d8).\u30d8\u30c3\u30c0\u30fc\uff1a\u30e2\u30c9\u30ad\u5f0f\u864e\u5fb9\u3055\u3093\u3002\u65e5\u5e38\u8a71\u3082\u98db\u3073\u51fa\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":104,"friends_count":86,"listed_count":8,"favourites_count":3016,"statuses_count":14622,"created_at":"Fri Jun 27 14:41:08 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662781049731088384\/F7qZ8bIL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662781049731088384\/F7qZ8bIL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2591460552\/1424968786","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yukainanakama31","name":"|||\u2235|hisoka","id":1870279657,"id_str":"1870279657","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783307120640,"id_str":"663727783307120640","text":"\u5317\u5ddd\u666f\u5b50\u306e\u753b\u50cf\u306e\u7d20\u3063\u3074\u3093\u3063\u3066\u3069\u3046\u3057\u3066\u51fa\u56de\u3063\u305f\u3093\u3067\u3059\u304b\u2026 https:\/\/t.co\/QWWk4VfreB","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862595276,"id_str":"862595276","name":"\u0410\u043d\u0430\u0441\u0442\u0430\u0441\u0438\u044f","screen_name":"anastasi9i_37","location":"\u0420\u043e\u0441\u0441\u0438\u044f, \u0418\u0432\u0430\u043d\u043e\u0432\u043e","url":"http:\/\/vk.com\/id90655378","description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":326,"listed_count":0,"favourites_count":0,"statuses_count":2059,"created_at":"Fri Oct 05 06:10:32 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501021887422812161\/xO44VgO2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501021887422812161\/xO44VgO2_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QWWk4VfreB","expanded_url":"http:\/\/bit.ly\/1kFUgtH","display_url":"bit.ly\/1kFUgtH","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009663"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315554304,"id_str":"663727783315554304","text":"@sapphire_0912 @999maru80 \n\u6df1\u8aad\u307f\u2026\uff1f\uff1f \u3068\u306f\uff1f\n\u666e\u901a\u306b\u5929\u4f7f\u304c\u52c3\u3063\u3066\u308b\u3060\u3051\u3067\u3059\u3088\u263a\ufe0f\u2764\ufe0f\u270c\ud83c\udffb\ufe0f\n\u305d\u308c\u307b\u3069\u7d20\u6674\u3089\u3057\u304f\u3001\u8208\u596e\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u3067\u3059\ud83d\ude2d\ud83d\ude2d\ud83d\ude4f\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727417819660288,"in_reply_to_status_id_str":"663727417819660288","in_reply_to_user_id":937243327,"in_reply_to_user_id_str":"937243327","in_reply_to_screen_name":"sapphire_0912","user":{"id":3270560454,"id_str":"3270560454","name":"\u3068\u3053\u308d\u3001","screen_name":"0ran_ran_ran0","location":"\u3071\u3093\u3064","url":null,"description":"\u300c\u3068\u3053\u308d\u3066\u3093\u300d\u3063\u3066\u3088\u3093\u3067\u306d\u301c\u3002\u98df\u3079\u308b\u3053\u3068\u304c\u5927\u597d\u304d\u3060\u3088\u3002\u5200\u5263\u305f\u306c\u4e71\u6cbc\u52e2\u3002\u30e9\u30fc\u30e1\u30f3\u30ba\u306e\u3053\u3070\u3051\u3093\u304c\u5927\u597d\u304d\u304a\u3070\u3055\u3093\u3002\u3046\u308b\u3046\u521d\u53c2\u6226\u3057\u307e\u3059\u301c\u3002","protected":false,"verified":false,"followers_count":64,"friends_count":60,"listed_count":4,"favourites_count":1043,"statuses_count":1012,"created_at":"Tue Jul 07 03:49:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653074509877018624\/1uvPRpig_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653074509877018624\/1uvPRpig_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270560454\/1441878462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sapphire_0912","name":"sapphire@\u3046\u308b\u30462\u670822\u65e5","id":937243327,"id_str":"937243327","indices":[0,14]},{"screen_name":"999maru80","name":"\u307e\u308b( \u00b4\u2200\uff40)@\u3046\u308b\u3046\u5317\u4e5d\u5dde1\/11\u2661","id":3229647432,"id_str":"3229647432","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290499074,"id_str":"663727783290499074","text":"Muita treta acontecendo \ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2795207789,"id_str":"2795207789","name":"Dry\u2763","screen_name":"dry_santoos","location":"Rj","url":null,"description":"snap: dryzocaa","protected":false,"verified":false,"followers_count":873,"friends_count":717,"listed_count":0,"favourites_count":1668,"statuses_count":7868,"created_at":"Tue Sep 30 15:40:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662633797876359168\/AWT8UL3R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662633797876359168\/AWT8UL3R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2795207789\/1445829282","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311335424,"id_str":"663727783311335424","text":"@nananov2 \u3046\u3093\uff01\u30e2\u30b3\u30e2\u30b3(\u7b11)\u51ac\u3057\u304b\u4f7f\u3048\u306a\u3044\u3088ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724289883963393,"in_reply_to_status_id_str":"663724289883963393","in_reply_to_user_id":1434975698,"in_reply_to_user_id_str":"1434975698","in_reply_to_screen_name":"nananov2","user":{"id":905223438,"id_str":"905223438","name":"\u512a\u7fbd\uff20\u30e9\u30c6\u30f3\u306e\u51ac","screen_name":"slotteryuyu","location":"\u6771\u4eact(ry","url":null,"description":"\u3053\u308c\u304b\u3089\u30ce\u30f3\u30d3\u30ea\u8caf\u91d1\u3057\u3066\u3044\u304f\u6240\u5b58\u3067\u3054\u3056\u3044\u307e\u3059(\uff65\u03c9\uff65)\uff89","protected":false,"verified":false,"followers_count":93,"friends_count":85,"listed_count":1,"favourites_count":165,"statuses_count":13852,"created_at":"Fri Oct 26 03:46:42 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565501734810685440\/cssl4o4X_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565501734810685440\/cssl4o4X_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905223438\/1405620434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nananov2","name":"n.s","id":1434975698,"id_str":"1434975698","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315529729,"id_str":"663727783315529729","text":"RT @EXO_HBK: \u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313333870,"id_str":"313333870","name":"\ucc2c\ubc31 \u0e2d\u0e34\u0e04\u0e36","screen_name":"Mosweet123","location":"BKK,Thailand","url":null,"description":"Exo-L TH \/ 12 \/ \u1d9c\u1d34\u1d2c\u1d3a\u1d2e\u1d31\u1d2c\u1d37 \u1d33\u1d3c\u1d2c\u1d38 \u2600\ufe0f","protected":false,"verified":false,"followers_count":1252,"friends_count":381,"listed_count":4,"favourites_count":11742,"statuses_count":120555,"created_at":"Wed Jun 08 14:07:59 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645096638256537601\/yGsaP-Nl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645096638256537601\/yGsaP-Nl.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662327521258541056\/aNX1lOEv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662327521258541056\/aNX1lOEv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313333870\/1446879541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:46 +0000 2015","id":663727181541998593,"id_str":"663727181541998593","text":"\u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e08\u0e49\u0e32 \u0e04\u0e36\u0e04\u0e36","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":5,"entities":{"hashtags":[{"text":"EXO","indices":[30,34]},{"text":"CALLMEBABY","indices":[42,53]},{"text":"MAMA2015","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[104,113]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[43,47]},{"text":"CALLMEBABY","indices":[55,66]},{"text":"MAMA2015","indices":[88,97]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[117,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294558209,"id_str":"663727783294558209","text":"#Hertfordshire #Jobs Foreman - Crossrail Anglia, Romford: Foreman - Crossrail Anglia Salary\u2026 https:\/\/t.co\/UNSSNF4MGR #Job #HertfordshireJobs","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69830189,"id_str":"69830189","name":"Hertfordshire Jobs","screen_name":"Hertford_Jobs","location":"Hertfordshire, UK","url":"http:\/\/Facebook.com\/Search4Hertfordshire.Jobs","description":"Search4Hertfordshire: Jobs - All the latest Jobs, Careers, Employment & Recruitment in Hertfordshire, UK!","protected":false,"verified":false,"followers_count":824,"friends_count":12,"listed_count":34,"favourites_count":0,"statuses_count":258435,"created_at":"Sat Aug 29 09:15:48 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169090811\/cayqT3ty.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169090811\/cayqT3ty.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597869961097379841\/Rfd7guD8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597869961097379841\/Rfd7guD8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69830189\/1431378270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Hertfordshire","indices":[0,14]},{"text":"Jobs","indices":[15,20]},{"text":"Job","indices":[117,121]},{"text":"HertfordshireJobs","indices":[122,140]}],"urls":[{"url":"https:\/\/t.co\/UNSSNF4MGR","expanded_url":"http:\/\/dlvr.it\/ChfY7q","display_url":"dlvr.it\/ChfY7q","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315509249,"id_str":"663727783315509249","text":"@Amor_shua \uae30\uc58d\u3142\ub2e4\u314e\u3145\u314e \ub09c \ubcbc\ub9ac\ub77c\uad6c\ud574 \ubc29\uac00\uc640\u314e \uc6b0\ub9ac \ub79c\uc120\ubca0\ud504\uba39\uc790\u314e\u314e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727647369793537,"in_reply_to_status_id_str":"663727647369793537","in_reply_to_user_id":3623784565,"in_reply_to_user_id_str":"3623784565","in_reply_to_screen_name":"Amor_shua","user":{"id":4009062379,"id_str":"4009062379","name":"\ubcf4\uceec\ud37c\ud3ec\ucf58\uac08\uc2b9\uad00\ubcc4","screen_name":"my_BOO_star","location":null,"url":null,"description":"\u2764150701~ \u2764\uc2b9\uac00\ub098 \uc0ac\ub791\ud574.....\u3160\u3160 \/ \ubb34\uba58\ud314\uadf9\ud610\uc774\ub77c\uace0","protected":false,"verified":false,"followers_count":36,"friends_count":104,"listed_count":0,"favourites_count":30,"statuses_count":1041,"created_at":"Sun Oct 25 03:14:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663641400836141056\/qi13xGWb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663641400836141056\/qi13xGWb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4009062379\/1446556483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Amor_shua","name":"\ubcf4\uceec\ucf58 \uac08 \ubcf5\uc29d\uc544","id":3623784565,"id_str":"3623784565","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783286190080,"id_str":"663727783286190080","text":"And suddenly, all the memories came back. #whatif","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151333156,"id_str":"151333156","name":"Xiao Margareth \u269c","screen_name":"callmexiaoo","location":"Pearl of the Orient","url":null,"description":"FILMMAKING AND PHOTOGRAPHY. We do coverage and videos and photoshoots and stuff. Prod staff. tga bitbit. tga type. lol","protected":false,"verified":false,"followers_count":530,"friends_count":380,"listed_count":4,"favourites_count":4689,"statuses_count":35178,"created_at":"Thu Jun 03 04:44:06 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461393814259654656\/X36j6E4t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461393814259654656\/X36j6E4t.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B0BF73","profile_text_color":"F07259","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663361612678496257\/2ivIdx-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663361612678496257\/2ivIdx-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151333156\/1442676752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"whatif","indices":[42,49]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009658"} +{"delete":{"status":{"id":558356578185666560,"id_str":"558356578185666560","user_id":1698567198,"user_id_str":"1698567198"},"timestamp_ms":"1447080009821"}} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298916352,"id_str":"663727783298916352","text":"RT @DaiMorardo: Ayer con la pareja m\u00e1s linda del club \ud83d\udc9e\ud83d\udc9f\ud83d\ude0d mucha ternura... https:\/\/t.co\/edKHN2OrAw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3376477025,"id_str":"3376477025","name":"\u00b7PEQUE\u00d1A LIBELULA\u00b7","screen_name":"GuadaRocca","location":null,"url":null,"description":"No se vive celebrando victorias, sino superando derrotas.","protected":false,"verified":false,"followers_count":313,"friends_count":546,"listed_count":1,"favourites_count":242,"statuses_count":1406,"created_at":"Tue Jul 14 22:00:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644956485970231296\/kSHl3CB6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644956485970231296\/kSHl3CB6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3376477025\/1446877832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:28 +0000 2015","id":663725094921969664,"id_str":"663725094921969664","text":"Ayer con la pareja m\u00e1s linda del club \ud83d\udc9e\ud83d\udc9f\ud83d\ude0d mucha ternura... https:\/\/t.co\/edKHN2OrAw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1566375852,"id_str":"1566375852","name":"Flaquita\u2764","screen_name":"DaiMorardo","location":"argentina ","url":"https:\/\/www.facebook.com\/daii.morardo","description":"Tu imaginaci\u00f3n quiere volar pero tu realidad no te lo permite. =)","protected":false,"verified":false,"followers_count":228,"friends_count":381,"listed_count":0,"favourites_count":433,"statuses_count":695,"created_at":"Wed Jul 03 18:26:26 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065426990\/c7c04cefbd9ead97f6768ae14083b2d1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065426990\/c7c04cefbd9ead97f6768ae14083b2d1.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634175939577008128\/k8IhSh8s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634175939577008128\/k8IhSh8s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1566375852\/1440034299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725069491916800,"id_str":"663725069491916800","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","url":"https:\/\/t.co\/edKHN2OrAw","display_url":"pic.twitter.com\/edKHN2OrAw","expanded_url":"http:\/\/twitter.com\/DaiMorardo\/status\/663725094921969664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725069491916800,"id_str":"663725069491916800","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","url":"https:\/\/t.co\/edKHN2OrAw","display_url":"pic.twitter.com\/edKHN2OrAw","expanded_url":"http:\/\/twitter.com\/DaiMorardo\/status\/663725094921969664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DaiMorardo","name":"Flaquita\u2764","id":1566375852,"id_str":"1566375852","indices":[3,14]}],"symbols":[],"media":[{"id":663725069491916800,"id_str":"663725069491916800","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","url":"https:\/\/t.co\/edKHN2OrAw","display_url":"pic.twitter.com\/edKHN2OrAw","expanded_url":"http:\/\/twitter.com\/DaiMorardo\/status\/663725094921969664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663725094921969664,"source_status_id_str":"663725094921969664","source_user_id":1566375852,"source_user_id_str":"1566375852"}]},"extended_entities":{"media":[{"id":663725069491916800,"id_str":"663725069491916800","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbyOWUAApdP7.jpg","url":"https:\/\/t.co\/edKHN2OrAw","display_url":"pic.twitter.com\/edKHN2OrAw","expanded_url":"http:\/\/twitter.com\/DaiMorardo\/status\/663725094921969664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663725094921969664,"source_status_id_str":"663725094921969664","source_user_id":1566375852,"source_user_id_str":"1566375852"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294672896,"id_str":"663727783294672896","text":"Now Playing: Here by Alessia Cara https:\/\/t.co\/l6fI08Ma0u #985VirginRadio, #hitmusic","source":"\u003ca href=\"http:\/\/mdc.astral.com\/\" rel=\"nofollow\"\u003eAstralMDC\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":917451481,"id_str":"917451481","name":"VIRGIN RadioYYCMusic","screen_name":"985VIRGINMusic","location":"#YYC","url":"http:\/\/calgary.virginradio.ca\/player.aspx","description":null,"protected":false,"verified":false,"followers_count":406,"friends_count":0,"listed_count":17,"favourites_count":0,"statuses_count":249159,"created_at":"Wed Oct 31 18:47:06 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D2232A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D2232A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582692732415668225\/RYHK7B70_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582692732415668225\/RYHK7B70_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/917451481\/1427759759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"985VirginRadio","indices":[58,73]},{"text":"hitmusic","indices":[75,84]}],"urls":[{"url":"https:\/\/t.co\/l6fI08Ma0u","expanded_url":"http:\/\/bit.ly\/985VirginCalPlayer","display_url":"bit.ly\/985VirginCalPl\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294693376,"id_str":"663727783294693376","text":"Residents, join us in honoring all that have served our country by pausing on November 11th in honor of Veterans... https:\/\/t.co\/D6EBrEfeUf","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214214101,"id_str":"214214101","name":"NorthBrunswick DPW","screen_name":"NB_DPW","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":219,"created_at":"Wed Nov 10 21:21:17 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/D6EBrEfeUf","expanded_url":"http:\/\/fb.me\/2TQys4Il4","display_url":"fb.me\/2TQys4Il4","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294562304,"id_str":"663727783294562304","text":"\u3053\u3046\u3044\u3046\u3046\u3044\u3046\u3044\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u03b3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":119591633,"id_str":"119591633","name":"\u304b\u3044\u308a","screen_name":"kairi_3050","location":"\u30e2\u30d0\u30b2\u30fcID\uff1a61404362","url":null,"description":"\u672a\u592e\u306f\u5f8c\u8f29\u3001\u97ff\u5b50\u306f\u5ac1\u3001\u307f\u304f\u306b\u3083\u3093\u306f\u5e7c\u99b4\u67d3\u307f\u3002\u85cd\u5b50\u3061\u3083\u3093\u306f\u5996\u7cbe\u3002NG\u306f\u6b63\u7fa9\u3002\u30e1\u30a4\u30f3\u306f\u672a\u592e\u97ff\u5b50\u3002\u2606shiny smile\u2606\u6240\u5c5e\u3002\n\u7a7a\u4e2d&\u72ec\u308a\u8a00\u591a\u3081\u306a\u306e\u3067\u82e6\u624b\u306a\u65b9\u306f\u304a\u6c17\u3092\u3064\u3051\u3066","protected":false,"verified":false,"followers_count":465,"friends_count":436,"listed_count":21,"favourites_count":2730,"statuses_count":85371,"created_at":"Thu Mar 04 02:51:39 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660406985209180160\/otJZnbjC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660406985209180160\/otJZnbjC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119591633\/1446946480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783319904256,"id_str":"663727783319904256","text":"RT @rippiestrela: Nunca quis tanto algu\u00e9m, como eu to querendo voc\u00ea \ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2417600671,"id_str":"2417600671","name":"#LUAU SURREAL\u2728","screen_name":"pxa_tequileira","location":"Rio de Janeiro, Brasil","url":"https:\/\/youtu.be\/ELmU2-NOAY4","description":"Da pinguim","protected":false,"verified":false,"followers_count":3245,"friends_count":2224,"listed_count":5,"favourites_count":11273,"statuses_count":26793,"created_at":"Sat Mar 29 15:37:06 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526166764254535683\/Cj9nmm9c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526166764254535683\/Cj9nmm9c.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663522268488814596\/V7QetNd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663522268488814596\/V7QetNd__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2417600671\/1446929283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:01 +0000 2015","id":663727497876500480,"id_str":"663727497876500480","text":"Nunca quis tanto algu\u00e9m, como eu to querendo voc\u00ea \ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2832884746,"id_str":"2832884746","name":"Duda Estrela","screen_name":"rippiestrela","location":"Miami Beach ","url":null,"description":"+55021 \u2600\ufe0f\u26bd\ufe0f snap : eesttrela","protected":false,"verified":false,"followers_count":1018,"friends_count":919,"listed_count":1,"favourites_count":7802,"statuses_count":18378,"created_at":"Wed Oct 15 23:47:11 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647953457199083520\/og_qOyid.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647953457199083520\/og_qOyid.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662681701047541760\/2g4_tHY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662681701047541760\/2g4_tHY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2832884746\/1446419033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rippiestrela","name":"Duda Estrela","id":2832884746,"id_str":"2832884746","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009666"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311339520,"id_str":"663727783311339520","text":"@684XW \u30af\u30ea\u30b9\u30de\u30b9\u524d\u306b\u5225\u308c\u308c\u3070\u3044\u3044\ud83d\ude06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727350488498178,"in_reply_to_status_id_str":"663727350488498178","in_reply_to_user_id":2917637169,"in_reply_to_user_id_str":"2917637169","in_reply_to_screen_name":"684XW","user":{"id":3224125063,"id_str":"3224125063","name":"\u3048\u3044\u305f\u308d\u3059","screen_name":"swb716","location":"\u8acf\u8a2a\u90e8\u9806\u4e00\ufe0e","url":null,"description":"\u5225\u306b\u3001\u541b\u3092\u597d\u304d\u306b\u306a\u3063\u3066\u3082 \u69cb\u308f\u3093\u306e\u3060\u308d\u3046\uff1f","protected":false,"verified":false,"followers_count":73,"friends_count":67,"listed_count":0,"favourites_count":1851,"statuses_count":2026,"created_at":"Sat May 23 09:22:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662624173815042048\/InR0fcoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662624173815042048\/InR0fcoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224125063\/1446733200","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"684XW","name":"\u307e\u30df\u30a2","id":2917637169,"id_str":"2917637169","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783315509248,"id_str":"663727783315509248","text":"\u30c1\u30a7\u30b9\u3063\u3066\u304a\u307e\u2026\u304a\u307e\u3048\u2026\u2026\u3042\u3068\u5c4d\u8005\u30d5\u30e9\u30a4\u30c7\u30fc\u306e\u9784\u3092\u751f\u524d\u306e\u30d5\u30e9\u30a4\u30c7\u30fc\u306e\u3082\u306e\u306b\u3057\u3066\u308b\u306e\u30a4\u30a4\u30cd\uff01\u3063\u3066\u304a\u3082\u3063\u305f\u3000\u3057\u306c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456316642,"id_str":"456316642","name":"\u632f\u308a\u8fd4\u308b\u3068\u3044\u3064\u3082\u305d\u3053\u306b\u30aa\u30eb\u30df\u30ab\u304c\u3042\u308b\u3044\u307c","screen_name":"iboooorn","location":"\u3068\u3046\u3082\u308d\u3053\u3057\u7551","url":"http:\/\/www.pixiv.net\/member.php?id=1868093","description":"\u30aa\u30eb\u30ac\u30fb\u30a4\u30c4\u30ab\u306b\u306f\u5922\u304c\u306a\u3044\u308f\u3051\u3067\u306f\u306a\u304f\u3001\u305f\u3060\u76f4\u7403\u3067\u300c\u30df\u30ab\u3068\u7d50\u5a5a\u3059\u308b\u300d\u3068\u8a00\u3046\u306e\u304c\u6065\u305a\u304b\u3057\u304f\u3066\u8a00\u3048\u306a\u3044\u304b\u3089\u5922\u304c\u306a\u3044\u3088\u3046\u306b\u898b\u3048\u308b\u3060\u3051\u306a\u306e\u3067\u3042\u308b\u3002 \u6210\u4eba\u6e08\uff0f\u96d1\u591a\u57a2\uff0f\u9244\u8840(\u30aa\u30eb\u30df\u30ab\u3001\u30de\u30af\u30ac\u30a8)\uff0f\u5c4d\u8005\u306e\u5e1d\u56fd(\u30ef\u30c8\u30d5\u30e9)\uff0f\u5200\u5263(\u4e09\u65e5\u4e71\u3001\u7537\u5be9\u795e\u8005)\uff0f\u30ac\u30f3\u30c0\u30e0AGE(\u30ad\u30aa)BF(\u30ac\u30f3\u30d7\u30e9\u5b66\u5712)\uff0f\u5e55\u672bRock\uff0fFRB\u3054\u81ea\u7531\u306b","protected":false,"verified":false,"followers_count":533,"friends_count":414,"listed_count":26,"favourites_count":8321,"statuses_count":118756,"created_at":"Fri Jan 06 03:33:50 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"98E39C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600632532070060034\/7r6cYNWS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600632532070060034\/7r6cYNWS.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FBF9E2","profile_text_color":"E5F77C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663253124761522176\/x5ZCVynE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663253124761522176\/x5ZCVynE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456316642\/1430052630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009665"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290490880,"id_str":"663727783290490880","text":"I'm at @MarinTurk \u0130stanbul City Port in Pendik, T\u00fcrkiye https:\/\/t.co\/9NiziTpTak","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3015935450,"id_str":"3015935450","name":"Yudum k\u0131zal","screen_name":"yudumkizal","location":"T\u00fcrkiye","url":null,"description":"\u00d6l\u00fcml\u00fc- \u092e\u0939\u093e\u0924\u094d\u092e\u093e-Sosyolog-Aile Dan\u0131\u015fman\u0131-#ikizler Kad\u0131n\u0131 \u264a\ufe0fAb(rh)+ T.C Maltepe \u00dcniversitesi snapchat: yudumkizal","protected":false,"verified":false,"followers_count":70,"friends_count":258,"listed_count":0,"favourites_count":413,"statuses_count":2754,"created_at":"Mon Feb 09 23:19:11 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643222879300132864\/u0OKiRYj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643222879300132864\/u0OKiRYj.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663553421916684288\/8M3vPMLF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663553421916684288\/8M3vPMLF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3015935450\/1443400671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.87188229,29.23358917]},"coordinates":{"type":"Point","coordinates":[29.23358917,40.87188229]},"place":{"id":"5e02a0f0d91c76d2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5e02a0f0d91c76d2.json","place_type":"city","name":"\u0130stanbul","full_name":"\u0130stanbul, T\u00fcrkiye","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[28.632104,40.802734],[28.632104,41.239907],[29.378341,41.239907],[29.378341,40.802734]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9NiziTpTak","expanded_url":"https:\/\/www.swarmapp.com\/c\/idBDOWAL5VX","display_url":"swarmapp.com\/c\/idBDOWAL5VX","indices":[56,79]}],"user_mentions":[{"screen_name":"Marinturk","name":"Marinturk Marinas","id":106542725,"id_str":"106542725","indices":[7,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783281987585,"id_str":"663727783281987585","text":"@border_Aoki \u307b\u307e\u308c\u3061\u3083\u3093\u79c1\u306e\u7d75\u67c4\u3067\u63cf\u304b\u305b\u3066\u3082\u3089\u3063\u305f\u3088\u301c\uff01\uff01\u4f3c\u306a\u304f\u3066\u3054\u3081\u3093\u3088\ud83d\ude22 https:\/\/t.co\/943QJfigBz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663683107334156290,"in_reply_to_status_id_str":"663683107334156290","in_reply_to_user_id":4142941273,"in_reply_to_user_id_str":"4142941273","in_reply_to_screen_name":"border_Aoki","user":{"id":4100595086,"id_str":"4100595086","name":"\u3048\u3063\u3053","screen_name":"milktks","location":"\u4f7f\u7528\u30a4\u30e9\u30b9\u30c8\u306f\u5168\u3066\u81ea\u4f5c","url":"http:\/\/twpf.jp\/milktks","description":"\u672c\u57a2 @nkt0829 \u304a\u7d75\u63cf\u304d\u57a2 \u307e\u3058\u3063\u304f\u5feb\u6597\uffe4\u540d\u63a2\u5075\u30b3\u30ca\u30f3\uffe4WT\uffe4\u968a\u54e1\u5316\uffe4\u5275\u4f5c\uffe4\u30eb\u30d1\u30f33\u4e16\uffe4\u3042\u3093\u30b9\u30bf\uffe4\u9280\u30aa\u30d5\uffe4\u30bb\u30e9\u30e0\u30f3\uffe4\u30a4\u30ca\u30a4\u30ec\uffe4\u30c0\u30f3\u6226\uffe4\u30c4\u30ad\u30a6\u30bf\u3002\uffe4\u6697\u6bba\u6559\u5ba4\uffe4\u5922\u5973\u5b50\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u203b\u3042\u307e\u308a\u306b\u3082\u904e\u6fc0\/\u30b0\u30ed\/\u4e0b\u54c1\u306a\u306e\u82e6\u624b\u3067\u3059\u203b","protected":false,"verified":false,"followers_count":47,"friends_count":47,"listed_count":2,"favourites_count":127,"statuses_count":351,"created_at":"Mon Nov 02 09:59:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662794309649829888\/IGxipsDu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662794309649829888\/IGxipsDu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4100595086\/1446537314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"border_Aoki","name":"\u9752\u6728 \u9999@\u968a\u54e1\u5316","id":4142941273,"id_str":"4142941273","indices":[0,12]}],"symbols":[],"media":[{"id":663727781897834497,"id_str":"663727781897834497","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5quUEAE2wyT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5quUEAE2wyT.jpg","url":"https:\/\/t.co\/943QJfigBz","display_url":"pic.twitter.com\/943QJfigBz","expanded_url":"http:\/\/twitter.com\/milktks\/status\/663727783281987585\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":354,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":508,"h":530,"resize":"fit"},"large":{"w":508,"h":530,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727781897834497,"id_str":"663727781897834497","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5quUEAE2wyT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5quUEAE2wyT.jpg","url":"https:\/\/t.co\/943QJfigBz","display_url":"pic.twitter.com\/943QJfigBz","expanded_url":"http:\/\/twitter.com\/milktks\/status\/663727783281987585\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":354,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":508,"h":530,"resize":"fit"},"large":{"w":508,"h":530,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009657"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290388480,"id_str":"663727783290388480","text":"\u4eba\u751f\u3067\u521d\u3081\u3066\u30b8\u30e3\u30f3\u30d7\u8cb7\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195862723,"id_str":"3195862723","name":"\u9ad8\u6a4b\u52c7\u4eba","screen_name":"takachin__soup8","location":"\u3042\u306a\u305f\u306e\u5f8c\u308d","url":null,"description":"\u5ca1\u5c71\u7406\u79d1\u5927\u5b66\u5de5\u5b66\u90e8\u60c5\u5831\u5de5\u5b66\u79d1\u4e00\u56de\u751f\u3000\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059(^^)","protected":false,"verified":false,"followers_count":75,"friends_count":77,"listed_count":0,"favourites_count":699,"statuses_count":1747,"created_at":"Fri May 15 01:51:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627461445978984449\/yGho7voK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627461445978984449\/yGho7voK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195862723\/1442769281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311372290,"id_str":"663727783311372290","text":"How would you 'tweak' haggis? https:\/\/t.co\/8GUMUxd8Sd","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323685593,"id_str":"323685593","name":"Chf Nureni Ogunbayo","screen_name":"SlowestPoison","location":null,"url":null,"description":"Chief","protected":false,"verified":false,"followers_count":368,"friends_count":1,"listed_count":119,"favourites_count":0,"statuses_count":842706,"created_at":"Sat Jun 25 07:24:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000722936596\/da18e86171a87cb6392b0d58260939b0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000722936596\/da18e86171a87cb6392b0d58260939b0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8GUMUxd8Sd","expanded_url":"http:\/\/dlvr.it\/Chffg8","display_url":"dlvr.it\/Chffg8","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298727942,"id_str":"663727783298727942","text":"AKSESORIS FUTSAL\nHarga : 50rb\n\nBBM: pin:2A42DCC5\nSMS\/WA : No Di Bio\nLINE: joeragantjersey\n\nhttps:\/\/t.co\/nLTcStbUl3 https:\/\/t.co\/0F7HoWZIqE","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1604614554,"id_str":"1604614554","name":"IG : JOERAGANTJERSEY","screen_name":"joeragantsoccer","location":"www.joeragantjersey.com","url":"https:\/\/instagram.com\/joeragantjersey\/","description":"CP: bbm: 2A42DCC5 \/ WA: 081218646582 \/ SMS: 089665894281 \/ Line : joeragantjersey \/ Testimoni Cek Favorite","protected":false,"verified":false,"followers_count":40141,"friends_count":2971,"listed_count":13,"favourites_count":54,"statuses_count":40747,"created_at":"Fri Jul 19 00:07:45 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630395383923933184\/r9jSfN9M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630395383923933184\/r9jSfN9M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1604614554\/1407914913","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nLTcStbUl3","expanded_url":"http:\/\/facebook.com\/joeragantj","display_url":"facebook.com\/joeragantj","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663715795038543872,"id_str":"663715795038543872","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_8MWoAADB8f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_8MWoAADB8f.jpg","url":"https:\/\/t.co\/0F7HoWZIqE","display_url":"pic.twitter.com\/0F7HoWZIqE","expanded_url":"http:\/\/twitter.com\/joeragantsoccer\/status\/663727783298727942\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715795038543872,"id_str":"663715795038543872","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_8MWoAADB8f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_8MWoAADB8f.jpg","url":"https:\/\/t.co\/0F7HoWZIqE","display_url":"pic.twitter.com\/0F7HoWZIqE","expanded_url":"http:\/\/twitter.com\/joeragantsoccer\/status\/663727783298727942\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783307165696,"id_str":"663727783307165696","text":"#GOT - Las impresionantes locaciones de su 5ta temporada https:\/\/t.co\/RMvvoaHvqR https:\/\/t.co\/dFMAjirQ54","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20699817,"id_str":"20699817","name":"breinguash","screen_name":"Breinguasher","location":"LATAM","url":"http:\/\/www.breinguash.com\/","description":"Somos un medio que habla m\u00fasica, sexo, tecnolog\u00eda, cultura, tv, relaciones, deportes, calle y cualquier cosa que nos afecte a los j\u00f3venes iberoamericanos.","protected":false,"verified":false,"followers_count":166718,"friends_count":40982,"listed_count":1909,"favourites_count":5463,"statuses_count":697040,"created_at":"Thu Feb 12 18:18:34 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451209872097284096\/Visz4aR9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451209872097284096\/Visz4aR9.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659531806442692608\/N3T2Y7AI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659531806442692608\/N3T2Y7AI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20699817\/1446079626","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GOT","indices":[0,4]}],"urls":[{"url":"https:\/\/t.co\/RMvvoaHvqR","expanded_url":"http:\/\/bit.ly\/1lfEV3A","display_url":"bit.ly\/1lfEV3A","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663722146053677056,"id_str":"663722146053677056","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDxnkW4AABM5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDxnkW4AABM5y.jpg","url":"https:\/\/t.co\/dFMAjirQ54","display_url":"pic.twitter.com\/dFMAjirQ54","expanded_url":"http:\/\/twitter.com\/Breinguasher\/status\/663727783307165696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722146053677056,"id_str":"663722146053677056","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDxnkW4AABM5y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDxnkW4AABM5y.jpg","url":"https:\/\/t.co\/dFMAjirQ54","display_url":"pic.twitter.com\/dFMAjirQ54","expanded_url":"http:\/\/twitter.com\/Breinguasher\/status\/663727783307165696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009663"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298752514,"id_str":"663727783298752514","text":"Rollemberg anuncia amanh\u00e3 decis\u00e3o sobre aplicativo Uber https:\/\/t.co\/m9hQoM3lTg https:\/\/t.co\/EXeTi0noPG","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256095486,"id_str":"256095486","name":"Bras\u00edlia Capital","screen_name":"BSBCAP","location":"Bras\u00edlia ","url":"http:\/\/www.bsbcapital.com.br","description":"Informa\u00e7\u00f5es sempre atualizadas sobre o Brasil e o mundo. Acesse http:\/\/www.bsbcapital.com.br","protected":false,"verified":false,"followers_count":195,"friends_count":139,"listed_count":3,"favourites_count":5,"statuses_count":13364,"created_at":"Tue Feb 22 17:06:11 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/228080742\/Figura2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/228080742\/Figura2.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631487996630581248\/SYTbE0xy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631487996630581248\/SYTbE0xy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256095486\/1439393446","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m9hQoM3lTg","expanded_url":"http:\/\/goo.gl\/hOalj5","display_url":"goo.gl\/hOalj5","indices":[56,79]}],"user_mentions":[],"symbols":[],"media":[{"id":663698521879674880,"id_str":"663698521879674880","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuSgqXAAAcYg4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuSgqXAAAcYg4.jpg","url":"https:\/\/t.co\/EXeTi0noPG","display_url":"pic.twitter.com\/EXeTi0noPG","expanded_url":"http:\/\/twitter.com\/BSBCAP\/status\/663727783298752514\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":473,"h":419,"resize":"fit"},"medium":{"w":473,"h":419,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698521879674880,"id_str":"663698521879674880","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuSgqXAAAcYg4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuSgqXAAAcYg4.jpg","url":"https:\/\/t.co\/EXeTi0noPG","display_url":"pic.twitter.com\/EXeTi0noPG","expanded_url":"http:\/\/twitter.com\/BSBCAP\/status\/663727783298752514\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":473,"h":419,"resize":"fit"},"medium":{"w":473,"h":419,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298772992,"id_str":"663727783298772992","text":"AKSESORIS FUTSAL\nHarga : 50rb\n\nBBM: pin:2A42DCC5\nSMS\/WA : No Di Bio\nLINE: joeragantjersey\n\nhttps:\/\/t.co\/C3eoyG8nVc https:\/\/t.co\/LI8aYLQ0DI","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3183119398,"id_str":"3183119398","name":"IG : JOERAGANTJERSEY","screen_name":"joeraganfashion","location":"www.joeragantjersey.com","url":"https:\/\/instagram.com\/joeragantjersey\/","description":"CP: bbm: 2A42DCC5 \/ WA: 081218646582 \/ \/ Line : joeragantjersey","protected":false,"verified":false,"followers_count":3305,"friends_count":2880,"listed_count":4,"favourites_count":0,"statuses_count":23392,"created_at":"Sun Apr 19 13:13:41 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589779377082118144\/nYvAuM-n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589779377082118144\/nYvAuM-n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3183119398\/1429465735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3eoyG8nVc","expanded_url":"http:\/\/facebook.com\/joeragantj","display_url":"facebook.com\/joeragantj","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663715794904313856,"id_str":"663715794904313856","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_7sWcAA1x5t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_7sWcAA1x5t.jpg","url":"https:\/\/t.co\/LI8aYLQ0DI","display_url":"pic.twitter.com\/LI8aYLQ0DI","expanded_url":"http:\/\/twitter.com\/joeraganfashion\/status\/663727783298772992\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715794904313856,"id_str":"663715794904313856","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_7sWcAA1x5t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_7sWcAA1x5t.jpg","url":"https:\/\/t.co\/LI8aYLQ0DI","display_url":"pic.twitter.com\/LI8aYLQ0DI","expanded_url":"http:\/\/twitter.com\/joeraganfashion\/status\/663727783298772992\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294558208,"id_str":"663727783294558208","text":"AKSESORIS FUTSAL\nHarga : 50rb\n\nBBM: pin:2A42DCC5\nSMS\/WA : No Di Bio\nLINE: joeragantjersey\n\nhttps:\/\/t.co\/O2nBaN2aXA https:\/\/t.co\/zSUwPAHZ6V","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598601691,"id_str":"598601691","name":"JOE","screen_name":"joeeraganjersey","location":"www.joeragantjersey.com","url":"https:\/\/instagram.com\/joeragantjersey\/","description":"CP: bbm: 2A42DCC5 \/ WA: 081218646582 \/ SMS : 089665894281 \/ Line: joeragantjersey \/ Testimoni Cek Favorite","protected":false,"verified":false,"followers_count":56989,"friends_count":3098,"listed_count":19,"favourites_count":495,"statuses_count":48708,"created_at":"Sun Jun 03 17:48:32 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580619705\/seufn88nlm4p7yt7yi1s.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580619705\/seufn88nlm4p7yt7yi1s.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657964590731427840\/bUCpPDhd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657964590731427840\/bUCpPDhd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598601691\/1445705770","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O2nBaN2aXA","expanded_url":"http:\/\/facebook.com\/joeragantj","display_url":"facebook.com\/joeragantj","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663715794623287296,"id_str":"663715794623287296","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_6pWUAAMRjG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_6pWUAAMRjG.jpg","url":"https:\/\/t.co\/zSUwPAHZ6V","display_url":"pic.twitter.com\/zSUwPAHZ6V","expanded_url":"http:\/\/twitter.com\/joeeraganjersey\/status\/663727783294558208\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715794623287296,"id_str":"663715794623287296","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_6pWUAAMRjG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_6pWUAAMRjG.jpg","url":"https:\/\/t.co\/zSUwPAHZ6V","display_url":"pic.twitter.com\/zSUwPAHZ6V","expanded_url":"http:\/\/twitter.com\/joeeraganjersey\/status\/663727783294558208\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298752513,"id_str":"663727783298752513","text":"Sera gaz\u0131 miktar\u0131 rekor seviyede!\nDetay: https:\/\/t.co\/1zR7fhkd3f https:\/\/t.co\/zFaIA2qG5F","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248293840,"id_str":"248293840","name":"AjansHaber","screen_name":"AjansHaberResmi","location":null,"url":"http:\/\/www.facebook.com\/AjansHaberResmi","description":"http:\/\/AjansHaber.com \u0130nternet Haber Portal\u0131'n\u0131n resmi sayfas\u0131d\u0131r.","protected":false,"verified":false,"followers_count":46165,"friends_count":1,"listed_count":81,"favourites_count":501,"statuses_count":57525,"created_at":"Sun Feb 06 17:57:04 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108873638\/4da5f91d29f492f55d1307d6e2459704.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108873638\/4da5f91d29f492f55d1307d6e2459704.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483577133558550529\/sePJAMJC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483577133558550529\/sePJAMJC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248293840\/1422002963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1zR7fhkd3f","expanded_url":"http:\/\/www.ajanshaber.com\/korkutan-gelisme-rekor-seviyeye-ulasti-haberi\/311391","display_url":"ajanshaber.com\/korkutan-gelis\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663719381852135424,"id_str":"663719381852135424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBQuHWoAAZpfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBQuHWoAAZpfs.jpg","url":"https:\/\/t.co\/zFaIA2qG5F","display_url":"pic.twitter.com\/zFaIA2qG5F","expanded_url":"http:\/\/twitter.com\/AjansHaberResmi\/status\/663727783298752513\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":476,"resize":"fit"},"small":{"w":340,"h":231,"resize":"fit"},"medium":{"w":600,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663719381852135424,"id_str":"663719381852135424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBQuHWoAAZpfs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBQuHWoAAZpfs.jpg","url":"https:\/\/t.co\/zFaIA2qG5F","display_url":"pic.twitter.com\/zFaIA2qG5F","expanded_url":"http:\/\/twitter.com\/AjansHaberResmi\/status\/663727783298752513\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":476,"resize":"fit"},"small":{"w":340,"h":231,"resize":"fit"},"medium":{"w":600,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290384384,"id_str":"663727783290384384","text":"11\/11 - 14 hs. Jornadas sobre Pr\u00e1ctica Profesional. https:\/\/t.co\/gCawOiK7J2","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288328296,"id_str":"288328296","name":"Facultad de Derecho","screen_name":"DerechoUBA","location":"Buenos Aires, Argentina","url":"http:\/\/www.derecho.uba.ar","description":"Cuenta oficial de Twitter de la Facultad de Derecho (UBA)","protected":false,"verified":false,"followers_count":16920,"friends_count":23,"listed_count":87,"favourites_count":276,"statuses_count":13614,"created_at":"Tue Apr 26 17:14:50 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/794220156\/6880a543b0ed3f085fa9e897b1c43142.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/794220156\/6880a543b0ed3f085fa9e897b1c43142.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1326617351\/fototwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1326617351\/fototwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288328296\/1407881646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663682623282245632,"id_str":"663682623282245632","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXf1FxWcAA25Ny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXf1FxWcAA25Ny.jpg","url":"https:\/\/t.co\/gCawOiK7J2","display_url":"pic.twitter.com\/gCawOiK7J2","expanded_url":"http:\/\/twitter.com\/DerechoUBA\/status\/663727783290384384\/photo\/1","type":"photo","sizes":{"medium":{"w":591,"h":835,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":591,"h":835,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663682623282245632,"id_str":"663682623282245632","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXf1FxWcAA25Ny.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXf1FxWcAA25Ny.jpg","url":"https:\/\/t.co\/gCawOiK7J2","display_url":"pic.twitter.com\/gCawOiK7J2","expanded_url":"http:\/\/twitter.com\/DerechoUBA\/status\/663727783290384384\/photo\/1","type":"photo","sizes":{"medium":{"w":591,"h":835,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":591,"h":835,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009659"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783311380481,"id_str":"663727783311380481","text":"Decisions on restoration of #everglades must incorporate protection for American crocodiles https:\/\/t.co\/31Rz98ddE5 https:\/\/t.co\/qGzGTENxyF","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14505838,"id_str":"14505838","name":"USGS","screen_name":"USGS","location":"Reston, VA","url":"http:\/\/usgs.gov","description":"Turn your profile upside down to celebrate #batweek. Tweets do not = endorsement: http:\/\/on.doi.gov\/pgwu0Y (Contact: http:\/\/usgs.gov\/ask)","protected":false,"verified":true,"followers_count":496896,"friends_count":88,"listed_count":9590,"favourites_count":446,"statuses_count":10309,"created_at":"Thu Apr 24 03:10:57 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/857102563\/bdb0052e3670d5d305175f4b7688ce56.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/857102563\/bdb0052e3670d5d305175f4b7688ce56.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660155234526740480\/VAUtwiJo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660155234526740480\/VAUtwiJo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14505838\/1441113303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"everglades","indices":[28,39]}],"urls":[{"url":"https:\/\/t.co\/31Rz98ddE5","expanded_url":"http:\/\/on.doi.gov\/1SDlvAK","display_url":"on.doi.gov\/1SDlvAK","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663722225418248192,"id_str":"663722225418248192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","url":"https:\/\/t.co\/qGzGTENxyF","display_url":"pic.twitter.com\/qGzGTENxyF","expanded_url":"http:\/\/twitter.com\/USGS\/status\/663727783311380481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":500,"h":333,"resize":"fit"},"large":{"w":500,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663722225418248192,"id_str":"663722225418248192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","url":"https:\/\/t.co\/qGzGTENxyF","display_url":"pic.twitter.com\/qGzGTENxyF","expanded_url":"http:\/\/twitter.com\/USGS\/status\/663727783311380481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":500,"h":333,"resize":"fit"},"large":{"w":500,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009664"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294582784,"id_str":"663727783294582784","text":"AKSESORIS FUTSAL\nHarga : 50rb\n\nBBM: pin:2A42DCC5\nSMS\/WA : No Di Bio\nLINE: joeragantjersey\n\nhttps:\/\/t.co\/pABoODOph7 https:\/\/t.co\/xDUVK7vY1f","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2258007133,"id_str":"2258007133","name":"IG : JOERAGANTJERSEY","screen_name":"joeraganjersey2","location":"www.joeragantjersey.com","url":"https:\/\/instagram.com\/joeragantjersey\/","description":"CP: bbm: 2A42DCC5 \/ WA: 081218646582 \/ SMS: 089613607364 \/ Line : joeragantjersey \/ Testimoni Cek Favorite","protected":false,"verified":false,"followers_count":26879,"friends_count":3211,"listed_count":9,"favourites_count":14,"statuses_count":38052,"created_at":"Sun Dec 22 18:18:00 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630386820715425798\/hNeFI14W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630386820715425798\/hNeFI14W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258007133\/1424509130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pABoODOph7","expanded_url":"http:\/\/facebook.com\/joeragantj","display_url":"facebook.com\/joeragantj","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663715794518437888,"id_str":"663715794518437888","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_6QWcAAR1nk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_6QWcAAR1nk.jpg","url":"https:\/\/t.co\/xDUVK7vY1f","display_url":"pic.twitter.com\/xDUVK7vY1f","expanded_url":"http:\/\/twitter.com\/joeraganjersey2\/status\/663727783294582784\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715794518437888,"id_str":"663715794518437888","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9_6QWcAAR1nk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9_6QWcAAR1nk.jpg","url":"https:\/\/t.co\/xDUVK7vY1f","display_url":"pic.twitter.com\/xDUVK7vY1f","expanded_url":"http:\/\/twitter.com\/joeraganjersey2\/status\/663727783294582784\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080009660"} +{"delete":{"status":{"id":663722662049554432,"id_str":"663722662049554432","user_id":2928612054,"user_id_str":"2928612054"},"timestamp_ms":"1447080010201"}} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783298756609,"id_str":"663727783298756609","text":"#JUVENILES || Categor\u00edas menores contin\u00faan sumando puntos en la Serie Interregional >>> https:\/\/t.co\/5YXnqk1RNb https:\/\/t.co\/aKCDUdRjlf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104858289,"id_str":"104858289","name":"Mineros de Guayana","screen_name":"ACCDMinerosdeG","location":"Ciudad Guayana - Venezuela","url":"http:\/\/www.accdminerosdeguayana.com","description":"Cuenta Oficial de Mineros de Guayana. Equipo de la Primera Divisi\u00f3n del F\u00fatbol de Venezuela. Campeones del Torneo Apertura 2013","protected":false,"verified":true,"followers_count":66481,"friends_count":96,"listed_count":620,"favourites_count":703,"statuses_count":37069,"created_at":"Thu Jan 14 16:30:03 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626163076\/7yr4780m52ch886dutqt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626163076\/7yr4780m52ch886dutqt.jpeg","profile_background_tile":true,"profile_link_color":"071ABD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"999999","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661190813200850948\/RaBFCLEY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661190813200850948\/RaBFCLEY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104858289\/1433522439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JUVENILES","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/5YXnqk1RNb","expanded_url":"http:\/\/goo.gl\/U0F4Nx","display_url":"goo.gl\/U0F4Nx","indices":[97,120]}],"user_mentions":[],"symbols":[],"media":[{"id":663716351941455872,"id_str":"663716351941455872","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-gW0WsAAPSY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-gW0WsAAPSY4.jpg","url":"https:\/\/t.co\/aKCDUdRjlf","display_url":"pic.twitter.com\/aKCDUdRjlf","expanded_url":"http:\/\/twitter.com\/ACCDMinerosdeG\/status\/663727783298756609\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":439,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716351941455872,"id_str":"663716351941455872","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-gW0WsAAPSY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-gW0WsAAPSY4.jpg","url":"https:\/\/t.co\/aKCDUdRjlf","display_url":"pic.twitter.com\/aKCDUdRjlf","expanded_url":"http:\/\/twitter.com\/ACCDMinerosdeG\/status\/663727783298756609\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":439,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":750,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080009661"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783294582785,"id_str":"663727783294582785","text":"Novos limites de juros para consignados de aposentados entram em vigor nesta segunda-feira. https:\/\/t.co\/923vg5wMQd https:\/\/t.co\/5ONew5X5Go","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24802340,"id_str":"24802340","name":"Jornal Extra","screen_name":"jornalextra","location":"Brasil","url":"http:\/\/extra.globo.com","description":"Acompanhe as not\u00edcias do perfil oficial do Jornal Extra","protected":false,"verified":true,"followers_count":426713,"friends_count":545,"listed_count":1946,"favourites_count":5717,"statuses_count":65215,"created_at":"Tue Mar 17 00:11:20 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/407514615\/BG_Cinza_-_Geral.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/407514615\/BG_Cinza_-_Geral.jpg","profile_background_tile":true,"profile_link_color":"F5540A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B50E06","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524161266772762624\/k6nRGnUH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524161266772762624\/k6nRGnUH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24802340\/1445014003","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/923vg5wMQd","expanded_url":"http:\/\/glo.bo\/1NmflAx","display_url":"glo.bo\/1NmflAx","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663707314738827264,"id_str":"663707314738827264","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2SUnWEAA5-ck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2SUnWEAA5-ck.jpg","url":"https:\/\/t.co\/5ONew5X5Go","display_url":"pic.twitter.com\/5ONew5X5Go","expanded_url":"http:\/\/twitter.com\/jornalextra\/status\/663727783294582785\/photo\/1","type":"photo","sizes":{"large":{"w":976,"h":550,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707314738827264,"id_str":"663707314738827264","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2SUnWEAA5-ck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2SUnWEAA5-ck.jpg","url":"https:\/\/t.co\/5ONew5X5Go","display_url":"pic.twitter.com\/5ONew5X5Go","expanded_url":"http:\/\/twitter.com\/jornalextra\/status\/663727783294582785\/photo\/1","type":"photo","sizes":{"large":{"w":976,"h":550,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080009660"} +{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727783290343425,"id_str":"663727783290343425","text":"The @EPA Clean Power Plan has caused an internal #stategov dispute in #Colorado https:\/\/t.co\/SQgnnbZIve https:\/\/t.co\/ErgyeMaoUA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2548616318,"id_str":"2548616318","name":"Route Fifty","screen_name":"statelocal","location":"Washington, D.C.","url":"http:\/\/routefifty.com\/","description":"Connecting the leaders and ideas advancing state & local governments across America with relevant news, insight and resources. \/ @govexec's State & Local","protected":false,"verified":false,"followers_count":1485,"friends_count":731,"listed_count":109,"favourites_count":700,"statuses_count":6767,"created_at":"Thu Jun 05 19:11:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0093D4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0093D4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585536609635930113\/-WhsLwf2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585536609635930113\/-WhsLwf2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2548616318\/1428437809","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"stategov","indices":[49,58]},{"text":"Colorado","indices":[70,79]}],"urls":[{"url":"https:\/\/t.co\/SQgnnbZIve","expanded_url":"http:\/\/www.routefifty.com\/2015\/11\/colorado-attorney-general-epa-lawsuit\/123500\/?oref=RouteFiftyTCO","display_url":"routefifty.com\/2015\/11\/colora\u2026","indices":[80,103]}],"user_mentions":[{"screen_name":"EPA","name":"U.S. EPA","id":14615871,"id_str":"14615871","indices":[4,8]}],"symbols":[],"media":[{"id":663707398952116224,"id_str":"663707398952116224","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XOVW4AAUv74.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XOVW4AAUv74.png","url":"https:\/\/t.co\/ErgyeMaoUA","display_url":"pic.twitter.com\/ErgyeMaoUA","expanded_url":"http:\/\/twitter.com\/statelocal\/status\/663727783290343425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":977,"h":455,"resize":"fit"},"small":{"w":340,"h":158,"resize":"fit"},"medium":{"w":600,"h":279,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707398952116224,"id_str":"663707398952116224","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XOVW4AAUv74.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XOVW4AAUv74.png","url":"https:\/\/t.co\/ErgyeMaoUA","display_url":"pic.twitter.com\/ErgyeMaoUA","expanded_url":"http:\/\/twitter.com\/statelocal\/status\/663727783290343425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":977,"h":455,"resize":"fit"},"small":{"w":340,"h":158,"resize":"fit"},"medium":{"w":600,"h":279,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080009659"} +{"delete":{"status":{"id":655160787376300032,"id_str":"655160787376300032","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080010476"}} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787505766400,"id_str":"663727787505766400","text":"RT @guardian: This could be the best news photograph of the day. A spat in France (in pants): https:\/\/t.co\/sFU5QJPdFN https:\/\/t.co\/N6st03dJ\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116172115,"id_str":"116172115","name":"Mehmet Kalkan","screen_name":"mehzey","location":"Suleyman Sah Uni. RedRaider","url":null,"description":null,"protected":false,"verified":false,"followers_count":705,"friends_count":855,"listed_count":6,"favourites_count":19948,"statuses_count":17601,"created_at":"Sun Feb 21 12:39:22 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2970650171\/96a54c4b4ecfbb08d93fd0ec5a59d1ec_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2970650171\/96a54c4b4ecfbb08d93fd0ec5a59d1ec_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:47 +0000 2015","id":663726936888377352,"id_str":"663726936888377352","text":"This could be the best news photograph of the day. A spat in France (in pants): https:\/\/t.co\/sFU5QJPdFN https:\/\/t.co\/N6st03dJTn","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87818409,"id_str":"87818409","name":"The Guardian ","screen_name":"guardian","location":"London","url":"http:\/\/theguardian.com","description":"Top stories, special features, live blogs and more","protected":false,"verified":true,"followers_count":4510184,"friends_count":1094,"listed_count":42640,"favourites_count":136,"statuses_count":192841,"created_at":"Thu Nov 05 23:49:19 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_tile":false,"profile_link_color":"005789","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CAE3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87818409\/1427295976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":42,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sFU5QJPdFN","expanded_url":"http:\/\/trib.al\/n2QJVy8","display_url":"trib.al\/n2QJVy8","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sFU5QJPdFN","expanded_url":"http:\/\/trib.al\/n2QJVy8","display_url":"trib.al\/n2QJVy8","indices":[94,117]}],"user_mentions":[{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[3,12]}],"symbols":[],"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}},"source_status_id":663726936888377352,"source_status_id_str":"663726936888377352","source_user_id":87818409,"source_user_id_str":"87818409"}]},"extended_entities":{"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}},"source_status_id":663726936888377352,"source_status_id_str":"663726936888377352","source_user_id":87818409,"source_user_id_str":"87818409"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010664"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497398272,"id_str":"663727787497398272","text":"RT @sportingintel: Russia: guilty of state-sponsored doping and cover-ups.\nRussia: hosts of 2018 World Cup.","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16381230,"id_str":"16381230","name":"Graham Hunt","screen_name":"grahunt","location":"Spain-Valencia-La Pobla","url":"http:\/\/www.valencia-property.com","description":"I Help People Move to Spain. Check out the Spanish Property Network http:\/\/www.spanish-property.net and blog http:\/\/www.grahamhunt.co. #Spain #ValenciaProperty","protected":false,"verified":false,"followers_count":4841,"friends_count":388,"listed_count":246,"favourites_count":2212,"statuses_count":54001,"created_at":"Sat Sep 20 20:04:04 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1DB0E5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463782346592772097\/FLR6L_V-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463782346592772097\/FLR6L_V-.jpeg","profile_background_tile":false,"profile_link_color":"16A0D3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D5F4FF","profile_text_color":"112D2D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2885252744\/b53acbd9d6735ffbe37ec0f020aef36e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2885252744\/b53acbd9d6735ffbe37ec0f020aef36e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16381230\/1397203389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:50 +0000 2015","id":663727451256827904,"id_str":"663727451256827904","text":"Russia: guilty of state-sponsored doping and cover-ups.\nRussia: hosts of 2018 World Cup.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75062648,"id_str":"75062648","name":"sportingintelligence","screen_name":"sportingintel","location":null,"url":"http:\/\/sportingintelligence.com","description":"Sportingintelligence: A perpetually sceptical attempt to make sense of sport's relationship with money. Interested in conmen & numbers. Surprisingly grumpy.","protected":false,"verified":false,"followers_count":85289,"friends_count":647,"listed_count":1520,"favourites_count":106,"statuses_count":26538,"created_at":"Thu Sep 17 17:16:01 +0000 2009","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/65074551\/logo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/65074551\/logo.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1266844763\/SI_Twitter_logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1266844763\/SI_Twitter_logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75062648\/1412721430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sportingintel","name":"sportingintelligence","id":75062648,"id_str":"75062648","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010662"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514138625,"id_str":"663727787514138625","text":"\"Where everyone uses the bathroom just to drink beer in there\" -Beacon","source":"","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1587156410,"id_str":"1587156410","name":"SmackHigh\u2122 New York","screen_name":"SMACKHighNY","location":"Manhattan\/Upstate, New York","url":"http:\/\/smackhigh.com\/submit","description":"Want to go viral? Post your high school story, news, joke, opinion, pic or anything else to the link below \u2b07\ufe0f Always 100% student-submitted","protected":false,"verified":false,"followers_count":99722,"friends_count":3347,"listed_count":30,"favourites_count":3083,"statuses_count":21020,"created_at":"Fri Jul 12 00:28:58 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660977765781409792\/q98iswb__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660977765781409792\/q98iswb__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1587156410\/1446424362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787489013760,"id_str":"663727787489013760","text":"#CosasRid\u00edculas Gente experta que se pone a criticar sobre futbol y en su vida ha tocado un bal\u00f3n.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3452278694,"id_str":"3452278694","name":"Osvaldo Hurtado ","screen_name":"OsvaldoHurtado_","location":null,"url":null,"description":"Un brindis por esa persona que conociste de casualidad, sin planearlo y que hoy en dia est\u00e1 todo el tiempo en tus pensamientos.","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":929,"created_at":"Fri Sep 04 21:37:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641004013102702592\/YBHjGf0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641004013102702592\/YBHjGf0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3452278694\/1441662242","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CosasRid\u00edculas","indices":[0,15]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476434944,"id_str":"663727787476434944","text":"@stronganosov771 \u043f\u0435\u0441\u043d\u044f ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708497654206464,"in_reply_to_status_id_str":"663708497654206464","in_reply_to_user_id":2973423515,"in_reply_to_user_id_str":"2973423515","in_reply_to_screen_name":"stronganosov771","user":{"id":2836421812,"id_str":"2836421812","name":"\u0413\u043e\u043b\u043e\u0432\u0430\u043d\u043e\u0432 \u0413\u0435\u0440\u043c\u0430\u043d","screen_name":"GermanGolowanow","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":93,"friends_count":101,"listed_count":0,"favourites_count":303,"statuses_count":897,"created_at":"Sat Oct 18 18:55:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617916685178281984\/2kfSo5hM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617916685178281984\/2kfSo5hM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2836421812\/1441377319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"stronganosov771","name":"\u041e\u0445\u043e\u0442\u043d\u0438\u043a.","id":2973423515,"id_str":"2973423515","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480629250,"id_str":"663727787480629250","text":"RT @sex_is_you: @mentally_ill \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0442\u043e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1852521055,"id_str":"1852521055","name":"\u0426\u0430\u0440\u044c \u0422\u043b\u0435\u043d\u2665\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u0430","screen_name":"mentally_ill","location":null,"url":"http:\/\/vk.com\/id150486044","description":"\u0420\u0435\u0431\u0435\u043d\u043e\u043a \u0421\u0430\u0442\u0430\u043d\u044b \u0441 \u043d\u0435\u0443\u0440\u0430\u0432\u043d\u043e\u0432\u0435\u0448\u0435\u043d\u043d\u043e\u0439 \u043f\u0441\u0438\u0445\u0438\u043a\u043e\u0439. \u0414\u0440\u0430\u0439\u0437\u0435\u0440. \u0411\u0438.\n04.04.15-\u041c\u0430\u0440\u0441\u044b.","protected":false,"verified":false,"followers_count":6559,"friends_count":5196,"listed_count":15,"favourites_count":9405,"statuses_count":65196,"created_at":"Tue Sep 10 20:59:40 +0000 2013","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1852521055\/1446355862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:28 +0000 2015","id":663727610204168192,"id_str":"663727610204168192","text":"@mentally_ill \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0442\u043e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727345598074881,"in_reply_to_status_id_str":"663727345598074881","in_reply_to_user_id":1852521055,"in_reply_to_user_id_str":"1852521055","in_reply_to_screen_name":"mentally_ill","user":{"id":3105292593,"id_str":"3105292593","name":"\u2020\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u2020\u2764\u0426\u0430\u0440\u044c\u0422\u043b\u0435\u043d","screen_name":"sex_is_you","location":"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c","url":"http:\/\/vk.com\/id304499135","description":"\u041d\u0435\u0443\u0440\u0430\u0432\u043d\u043e\u0432\u0435\u0448\u0435\u043d\u043d\u044b\u0439 \u043a\u0440\u0435\u0442\u0438\u043d.Killjoy. \u042d\u0448\u0430\u043b\u043e\u043d #MCR#GD#BVB#LP#\u041a\u0438\u0428#TDG #Nirvana#FOB#P!ATD#30STM","protected":false,"verified":false,"followers_count":745,"friends_count":736,"listed_count":0,"favourites_count":414,"statuses_count":7604,"created_at":"Sun Mar 22 17:44:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660518315635441664\/ueolz2g7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660518315635441664\/ueolz2g7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3105292593\/1446314811","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mentally_ill","name":"\u0426\u0430\u0440\u044c \u0422\u043b\u0435\u043d\u2665\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u0430","id":1852521055,"id_str":"1852521055","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sex_is_you","name":"\u2020\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u2020\u2764\u0426\u0430\u0440\u044c\u0422\u043b\u0435\u043d","id":3105292593,"id_str":"3105292593","indices":[3,14]},{"screen_name":"mentally_ill","name":"\u0426\u0430\u0440\u044c \u0422\u043b\u0435\u043d\u2665\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u0430","id":1852521055,"id_str":"1852521055","indices":[16,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080010658"} +{"delete":{"status":{"id":660856568288813056,"id_str":"660856568288813056","user_id":443280567,"user_id_str":"443280567"},"timestamp_ms":"1447080010702"}} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787505774592,"id_str":"663727787505774592","text":"\u041f\u041e\u041b\u0415\u0417\u041d\u042b\u0415 \u0420\u0415\u0426\u0415\u041f\u0422\u042b \u041b\u0415\u0427\u0415\u041d\u0418\u042f \u041e\u0422 \u0411\u041e\u041b\u0415\u0417\u041d\u0415\u0419 \u041a\u0438\u0440\u043e\u0432\u0441\u043a\u0438\u0439...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1266086893,"id_str":"1266086893","name":"JadenFischer","screen_name":"JadenFischer","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":104,"friends_count":27,"listed_count":7,"favourites_count":0,"statuses_count":229821,"created_at":"Thu Mar 14 03:31:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3670959025\/ec087e2ab6e490cd8042bc88321ce651_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3670959025\/ec087e2ab6e490cd8042bc88321ce651_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080010664"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497406464,"id_str":"663727787497406464","text":"RT @ACClONPOETICA: \"No me arrepiento de mi pasado, pero s\u00ed del tiempo perdido con la gente equivocada.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4035362153,"id_str":"4035362153","name":"Agus Liendo","screen_name":"Liendo_Agustin","location":null,"url":null,"description":"Hay muchos q hablan pero nunca isieron nada, quieren tirar tiros pero nunca tienen balas ...","protected":false,"verified":false,"followers_count":9,"friends_count":14,"listed_count":0,"favourites_count":18,"statuses_count":24,"created_at":"Sun Oct 25 00:53:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663465111663878144\/LzdliQkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663465111663878144\/LzdliQkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035362153\/1445811414","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:45:07 +0000 2015","id":663502539791319040,"id_str":"663502539791319040","text":"\"No me arrepiento de mi pasado, pero s\u00ed del tiempo perdido con la gente equivocada.\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624288351,"id_str":"624288351","name":"Acci\u00f3n Po\u00e9tica\u2122","screen_name":"ACClONPOETICA","location":"\u2708 Latinoam\u00e9rica \u2708 ","url":null,"description":"Bienvenidos a esta revoluci\u00f3n po\u00e9tica, que lleva la poes\u00eda al paisaje urbano. \u00a1Si no susurran nuestras bocas, que griten nuestros muros!","protected":false,"verified":false,"followers_count":533165,"friends_count":25694,"listed_count":689,"favourites_count":3,"statuses_count":2172,"created_at":"Mon Jul 02 00:18:48 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000030098501\/238d904438bd878b75a8f1bdc6f6d4b8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000030098501\/238d904438bd878b75a8f1bdc6f6d4b8.jpeg","profile_background_tile":true,"profile_link_color":"2589C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605204129280073728\/dca7e17U_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605204129280073728\/dca7e17U_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624288351\/1420915949","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":142,"favorite_count":95,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ACClONPOETICA","name":"Acci\u00f3n Po\u00e9tica\u2122","id":624288351,"id_str":"624288351","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010662"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480637440,"id_str":"663727787480637440","text":"RT @beIN_LIVE: \ud83d\udd25\u0631\u0648\u0627\u0628\u0637 \u0635\u0627\u0631\u0648\u062e\u064a\u0647 \u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639\ud83d\udd25\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u062c\u0648\u0627\u0644 HD\nhttps:\/\/t.co\/wlJgLIknZ2\n\n\u064a\u0648\u062a\u064a\u0648\u0628 HD\nhttps:\/\/t.co\/tIKcVsR65v https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323510752,"id_str":"3323510752","name":"\u062d\u0628\u0643 \u0639\u0630\u0627\u0628","screen_name":"555fff_xxcs8y1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":6,"listed_count":0,"favourites_count":1136,"statuses_count":1309,"created_at":"Sat Jun 13 18:45:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616392771105067008\/BDOdVgeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616392771105067008\/BDOdVgeA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727540880711680,"id_str":"663727540880711680","text":"\ud83d\udd25\u0631\u0648\u0627\u0628\u0637 \u0635\u0627\u0631\u0648\u062e\u064a\u0647 \u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639\ud83d\udd25\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u062c\u0648\u0627\u0644 HD\nhttps:\/\/t.co\/wlJgLIknZ2\n\n\u064a\u0648\u062a\u064a\u0648\u0628 HD\nhttps:\/\/t.co\/tIKcVsR65v https:\/\/t.co\/NrFa5PROSZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251103390,"id_str":"251103390","name":"\u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641","screen_name":"beIN_LIVE","location":"BBM:C003BD96F","url":"http:\/\/pin.bbm.com\/C003BD96F","description":"\u0634\u0628\u0643\u0629 \u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641: \u0645\u0635\u062f\u0631\u0643 \u0627\u0644\u0623\u0648\u0644 \u0644\u0640 \u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0645\u0628\u0627\u0631\u064a\u0627\u062a \u0623\u0648\u0646 \u0644\u0622\u064a\u0646 \u0648\u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639 .. \u062a\u0627\u0628\u0639\u0646\u0627 \u0648\u0627\u0633\u062a\u0645\u062a\u0639 ..","protected":false,"verified":false,"followers_count":27608,"friends_count":0,"listed_count":159,"favourites_count":655,"statuses_count":11436,"created_at":"Sat Feb 12 13:00:13 +0000 2011","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551383358974853121\/P00_m815.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551383358974853121\/P00_m815.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657161464642273283\/as4kizTy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657161464642273283\/as4kizTy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251103390\/1444911050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":27,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[28,44]}],"urls":[{"url":"https:\/\/t.co\/wlJgLIknZ2","expanded_url":"http:\/\/goo.gl\/4vZKQH","display_url":"goo.gl\/4vZKQH","indices":[54,77]},{"url":"https:\/\/t.co\/tIKcVsR65v","expanded_url":"http:\/\/goo.gl\/ksvm2X","display_url":"goo.gl\/ksvm2X","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[43,59]}],"urls":[{"url":"https:\/\/t.co\/wlJgLIknZ2","expanded_url":"http:\/\/goo.gl\/4vZKQH","display_url":"goo.gl\/4vZKQH","indices":[69,92]},{"url":"https:\/\/t.co\/tIKcVsR65v","expanded_url":"http:\/\/goo.gl\/ksvm2X","display_url":"goo.gl\/ksvm2X","indices":[104,127]}],"user_mentions":[{"screen_name":"beIN_LIVE","name":"\u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641","id":251103390,"id_str":"251103390","indices":[3,13]}],"symbols":[],"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663727540880711680,"source_status_id_str":"663727540880711680","source_user_id":251103390,"source_user_id_str":"251103390"}]},"extended_entities":{"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663727540880711680,"source_status_id_str":"663727540880711680","source_user_id":251103390,"source_user_id_str":"251103390"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509944320,"id_str":"663727787509944320","text":"Toda Joana:","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4144754415,"id_str":"4144754415","name":"Enquetes","screen_name":"EnquetesNomes","location":null,"url":null,"description":"responda nossa enquete - envie sugest\u00f5es ou mande indireta .. s\u00f3 enviar por DM","protected":false,"verified":false,"followers_count":93,"friends_count":529,"listed_count":0,"favourites_count":12,"statuses_count":59,"created_at":"Sun Nov 08 22:23:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663482993739235330\/2FDPI_-c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663482993739235330\/2FDPI_-c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4144754415\/1447021700","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501592576,"id_str":"663727787501592576","text":"RT @Drogadosoy: Yo de peque\u00f1o odiaba estar solo en casa; y ahora lo veo como el para\u00edso.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2922408490,"id_str":"2922408490","name":"Mauri Fleitas","screen_name":"MauriFleitas10","location":null,"url":null,"description":"Boca Junior \nAmo el basquet \nSnap: maurifleitas_10","protected":false,"verified":false,"followers_count":377,"friends_count":927,"listed_count":0,"favourites_count":1492,"statuses_count":3926,"created_at":"Mon Dec 15 03:27:04 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612441806039597056\/ORfPD3qV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612441806039597056\/ORfPD3qV.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663531619475660800\/HXO5UPB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663531619475660800\/HXO5UPB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2922408490\/1440467405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:01:43 +0000 2015","id":663521817068466176,"id_str":"663521817068466176","text":"Yo de peque\u00f1o odiaba estar solo en casa; y ahora lo veo como el para\u00edso.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1460876869,"id_str":"1460876869","name":"El Chico Drogado","screen_name":"Drogadosoy","location":"Colombia ","url":"http:\/\/Instagram.com\/Batimeeme","description":"SI QUIERES RE\u00cdR, S\u00cdGUEME, NO SE A DONDE VOY [PARODY ACCOUNT]\u00b7 \u2605Contacto \u261b notengosuerte@live.com","protected":false,"verified":false,"followers_count":295891,"friends_count":179,"listed_count":450,"favourites_count":31358,"statuses_count":2995,"created_at":"Sun May 26 23:27:04 +0000 2013","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/531537604169052160\/oHsAEM_m.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/531537604169052160\/oHsAEM_m.jpeg","profile_background_tile":false,"profile_link_color":"2C11A4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655138749232222209\/-DxBROE3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655138749232222209\/-DxBROE3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1460876869\/1433967333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":142,"favorite_count":72,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Drogadosoy","name":"El Chico Drogado","id":1460876869,"id_str":"1460876869","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509944322,"id_str":"663727787509944322","text":"RT @WayneL_Jr: Cabin Fever Wiz* RT @SHAWNHINDRIIX: WIZ KHALIFA TOP 5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322693510,"id_str":"322693510","name":"9One","screen_name":"Rayne_Supreme","location":"400G","url":null,"description":"Perfection is the Standard. Excellence is Tolerated! USN. -PROSPER. | way up, Too Up, 3 Up.","protected":false,"verified":false,"followers_count":625,"friends_count":546,"listed_count":0,"favourites_count":619,"statuses_count":29835,"created_at":"Thu Jun 23 15:59:31 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEB11","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449191187123949569\/4cU1OD63.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449191187123949569\/4cU1OD63.jpeg","profile_background_tile":true,"profile_link_color":"ED1313","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662387450254385152\/gRTWWZBW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662387450254385152\/gRTWWZBW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322693510\/1446232087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:03 +0000 2015","id":663726247609024516,"id_str":"663726247609024516","text":"Cabin Fever Wiz* RT @SHAWNHINDRIIX: WIZ KHALIFA TOP 5","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173067580,"id_str":"173067580","name":"Uncle Wayne.","screen_name":"WayneL_Jr","location":"Columbus, GA","url":"http:\/\/favstar.fm\/users\/WayneL_Jr","description":"#Lakers #Buckeyes #Ravens\r\n\r\nTrust no nigga, even the devil had a halo once.\r\n\r\nI ain't shit.","protected":false,"verified":false,"followers_count":15748,"friends_count":2889,"listed_count":265,"favourites_count":13180,"statuses_count":334524,"created_at":"Sat Jul 31 09:51:59 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521634039\/35nqjr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521634039\/35nqjr.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EBEBEB","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3513279871\/7dbf14e4c31f527908fefae0d01e8e3e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3513279871\/7dbf14e4c31f527908fefae0d01e8e3e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173067580\/1434525897","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SHAWNHINDRIIX","name":"ROSE GOLD JESUS","id":354666600,"id_str":"354666600","indices":[20,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WayneL_Jr","name":"Uncle Wayne.","id":173067580,"id_str":"173067580","indices":[3,13]},{"screen_name":"SHAWNHINDRIIX","name":"ROSE GOLD JESUS","id":354666600,"id_str":"354666600","indices":[35,49]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480629249,"id_str":"663727787480629249","text":"RT @beIN_LIVE: \ud83d\udd25\u0631\u0648\u0627\u0628\u0637 \u0635\u0627\u0631\u0648\u062e\u064a\u0647 \u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639\ud83d\udd25\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u062c\u0648\u0627\u0644 HD\nhttps:\/\/t.co\/wlJgLIknZ2\n\n\u064a\u0648\u062a\u064a\u0648\u0628 HD\nhttps:\/\/t.co\/tIKcVsR65v https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301540330,"id_str":"3301540330","name":"\u0627\u0646\u062a\u0647 \u063a\u064a\u0631","screen_name":"738085710_bein","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":6,"listed_count":0,"favourites_count":1121,"statuses_count":1268,"created_at":"Thu May 28 09:51:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616360618359132160\/VqYfu1SW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616360618359132160\/VqYfu1SW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727540880711680,"id_str":"663727540880711680","text":"\ud83d\udd25\u0631\u0648\u0627\u0628\u0637 \u0635\u0627\u0631\u0648\u062e\u064a\u0647 \u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639\ud83d\udd25\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u062c\u0648\u0627\u0644 HD\nhttps:\/\/t.co\/wlJgLIknZ2\n\n\u064a\u0648\u062a\u064a\u0648\u0628 HD\nhttps:\/\/t.co\/tIKcVsR65v https:\/\/t.co\/NrFa5PROSZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251103390,"id_str":"251103390","name":"\u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641","screen_name":"beIN_LIVE","location":"BBM:C003BD96F","url":"http:\/\/pin.bbm.com\/C003BD96F","description":"\u0634\u0628\u0643\u0629 \u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641: \u0645\u0635\u062f\u0631\u0643 \u0627\u0644\u0623\u0648\u0644 \u0644\u0640 \u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0644\u0645\u0628\u0627\u0631\u064a\u0627\u062a \u0623\u0648\u0646 \u0644\u0622\u064a\u0646 \u0648\u0628\u062f\u0648\u0646 \u062a\u0642\u0637\u064a\u0639 .. \u062a\u0627\u0628\u0639\u0646\u0627 \u0648\u0627\u0633\u062a\u0645\u062a\u0639 ..","protected":false,"verified":false,"followers_count":27608,"friends_count":0,"listed_count":159,"favourites_count":655,"statuses_count":11436,"created_at":"Sat Feb 12 13:00:13 +0000 2011","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551383358974853121\/P00_m815.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551383358974853121\/P00_m815.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657161464642273283\/as4kizTy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657161464642273283\/as4kizTy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251103390\/1444911050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":27,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[28,44]}],"urls":[{"url":"https:\/\/t.co\/wlJgLIknZ2","expanded_url":"http:\/\/goo.gl\/4vZKQH","display_url":"goo.gl\/4vZKQH","indices":[54,77]},{"url":"https:\/\/t.co\/tIKcVsR65v","expanded_url":"http:\/\/goo.gl\/ksvm2X","display_url":"goo.gl\/ksvm2X","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[43,59]}],"urls":[{"url":"https:\/\/t.co\/wlJgLIknZ2","expanded_url":"http:\/\/goo.gl\/4vZKQH","display_url":"goo.gl\/4vZKQH","indices":[69,92]},{"url":"https:\/\/t.co\/tIKcVsR65v","expanded_url":"http:\/\/goo.gl\/ksvm2X","display_url":"goo.gl\/ksvm2X","indices":[104,127]}],"user_mentions":[{"screen_name":"beIN_LIVE","name":"\u0628\u064a \u0627\u0646 \u0644\u0627\u064a\u0641","id":251103390,"id_str":"251103390","indices":[3,13]}],"symbols":[],"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663727540880711680,"source_status_id_str":"663727540880711680","source_user_id":251103390,"source_user_id_str":"251103390"}]},"extended_entities":{"media":[{"id":663727539190407168,"id_str":"663727539190407168","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIrikWoAAnRZf.jpg","url":"https:\/\/t.co\/NrFa5PROSZ","display_url":"pic.twitter.com\/NrFa5PROSZ","expanded_url":"http:\/\/twitter.com\/beIN_LIVE\/status\/663727540880711680\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":279,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":279,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}},"source_status_id":663727540880711680,"source_status_id_str":"663727540880711680","source_user_id":251103390,"source_user_id_str":"251103390"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787505750016,"id_str":"663727787505750016","text":"bom, esse foi s\u00f3 mais um dia de trabalho. deve ser dif\u00edcil ver a morte frente a frente. por isso n\u00e3o me olho no espelho.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":926000186,"id_str":"926000186","name":"Marlla","screen_name":"MarllaFelisarda","location":null,"url":"https:\/\/www.youtube.com\/channel\/UChLHxRzV8VD_Jz-u8B8f4EQ","description":"so many years of education yet nobody ever taught us how to love ourselves and why its so important","protected":false,"verified":false,"followers_count":1622,"friends_count":225,"listed_count":1,"favourites_count":556,"statuses_count":52251,"created_at":"Sun Nov 04 19:38:11 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451197279240609792\/GOEzDRSh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451197279240609792\/GOEzDRSh.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722966937640962\/RV4iOXtz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722966937640962\/RV4iOXtz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/926000186\/1447078942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080010664"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514138624,"id_str":"663727787514138624","text":"@CelottiDaniel @dannydoesit19 1v1 on rust","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726950125563904,"in_reply_to_status_id_str":"663726950125563904","in_reply_to_user_id":2816807590,"in_reply_to_user_id_str":"2816807590","in_reply_to_screen_name":"CelottiDaniel","user":{"id":2205378053,"id_str":"2205378053","name":"kodheli","screen_name":"joekodheli","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":154,"friends_count":280,"listed_count":0,"favourites_count":1352,"statuses_count":112,"created_at":"Tue Dec 03 02:04:31 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660474482314752000\/3Z6fF64h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660474482314752000\/3Z6fF64h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205378053\/1446405304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CelottiDaniel","name":"Daniel","id":2816807590,"id_str":"2816807590","indices":[0,14]},{"screen_name":"dannydoesit19","name":"dan","id":2389510080,"id_str":"2389510080","indices":[15,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787493097473,"id_str":"663727787493097473","text":"Me: *typed just 10 sentences* *worried* *tired* *sleepy*\nMe: *after 30 minutes* *typing* *word count - 489* \ud83d\udca4 #writing #writersproblems","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337639332,"id_str":"337639332","name":"Beverlie Calopez","screen_name":"beverliecalopez","location":"Philippines","url":"http:\/\/instagram.com\/beverliecalopez\/","description":"English Instructor\/Tutor. Writer. Writing Coach\/Judge. Resource Speaker. Proofreader. Cinematographer. Video Editor.","protected":false,"verified":false,"followers_count":269,"friends_count":286,"listed_count":5,"favourites_count":164,"statuses_count":1684,"created_at":"Mon Jul 18 10:36:05 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436248757387030528\/VD1ykOx1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436248757387030528\/VD1ykOx1.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"380F24","profile_text_color":"D34B1F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661918204814487556\/G5ZBn9KI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661918204814487556\/G5ZBn9KI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337639332\/1446647278","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"writing","indices":[110,118]},{"text":"writersproblems","indices":[119,135]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010661"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476254720,"id_str":"663727787476254720","text":"5S\u6d3b\u52d5\u8cac\u4efb\u8005\u304c\u6383\u9664\u4e00\u5207\u3057\u306a\u3044\u4e0a\u53f8\u3060\u304b\u3089\u305d\u306e\u3042\u305f\u308a\u30aa\u30ef\u30b3\u30f3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272339430,"id_str":"272339430","name":"\u30b6\u30d9\u30b9\uff20\u828b","screen_name":"Elizabeth_typeR","location":"\u5175\u5eab","url":null,"description":"\u30a2\u30eb\u30c8(HA36S)\u306b\u4e57\u3063\u3066\u308b\u306a\u3093\u3060\u304b\u3093\u3060\u751f\u304d\u3066\u308b\u793e\u4f1a \u4eba\u3002 \u7d14\u6b63\u306e\u9ed2\u8d64\u3092\u610f\u8b58\u3057\u3066\u5c11\u3057\u305a\u3064\u5f04\u3063\u3066\u884c\u3051\u305f\u3089\u3044\u3044\u306a\u3068\u601d\u3044\u307e\u3059\u3002\u9ec4\u8272\u3044\u30af\u30eb\u30de\uff1f\u77e5\u3089\u306a\u3044\u5b50\u3067\u3059\u306d","protected":false,"verified":false,"followers_count":2579,"friends_count":1821,"listed_count":63,"favourites_count":45,"statuses_count":235091,"created_at":"Sat Mar 26 09:21:47 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/680508235\/9778e6e4bc016fcb0302f630059173ac.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/680508235\/9778e6e4bc016fcb0302f630059173ac.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662634697734819841\/KI4kySHx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662634697734819841\/KI4kySHx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272339430\/1446655761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514138626,"id_str":"663727787514138626","text":"RT @cellbitos: meu livro preferido https:\/\/t.co\/oQc8U75ERT","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":336732703,"id_str":"336732703","name":"bruna\ud0c0\uc62c\ub77c","screen_name":"jinwhoo","location":"tchau doutor","url":"http:\/\/omgirlnopsd.tumblr.com","description":"\uc9c4\ud6c4 \ub098\uc758 \ud587\uc0b4\uc740","protected":false,"verified":false,"followers_count":1493,"friends_count":989,"listed_count":5,"favourites_count":518,"statuses_count":26503,"created_at":"Sat Jul 16 20:22:46 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641038788945387520\/zmCDUn-8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641038788945387520\/zmCDUn-8.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663381859838124032\/g5Qs6F_t_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663381859838124032\/g5Qs6F_t_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336732703\/1446997887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:13:47 +0000 2015","id":663706045706018816,"id_str":"663706045706018816","text":"meu livro preferido https:\/\/t.co\/oQc8U75ERT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451200058,"id_str":"451200058","name":"Rafael Lange","screen_name":"cellbitos","location":"Brasil","url":"https:\/\/www.youtube.com\/CellBits","description":"Fa\u00e7o v\u00eddeos e sou retardado. contato.cellbit@gmail.com http:\/\/instagram.com\/cellbitos","protected":false,"verified":true,"followers_count":693963,"friends_count":589,"listed_count":477,"favourites_count":1562,"statuses_count":74503,"created_at":"Sat Dec 31 04:48:53 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433842205443096577\/2m6TD4JQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433842205443096577\/2m6TD4JQ.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661324156542283776\/GEFBjQlM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661324156542283776\/GEFBjQlM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451200058\/1446506230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1376,"favorite_count":2412,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663705993453375488,"id_str":"663705993453375488","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","url":"https:\/\/t.co\/oQc8U75ERT","display_url":"pic.twitter.com\/oQc8U75ERT","expanded_url":"http:\/\/twitter.com\/cellbitos\/status\/663706045706018816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":681,"h":1024,"resize":"fit"},"medium":{"w":600,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663705993453375488,"id_str":"663705993453375488","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","url":"https:\/\/t.co\/oQc8U75ERT","display_url":"pic.twitter.com\/oQc8U75ERT","expanded_url":"http:\/\/twitter.com\/cellbitos\/status\/663706045706018816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":681,"h":1024,"resize":"fit"},"medium":{"w":600,"h":902,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cellbitos","name":"Rafael Lange","id":451200058,"id_str":"451200058","indices":[3,13]}],"symbols":[],"media":[{"id":663705993453375488,"id_str":"663705993453375488","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","url":"https:\/\/t.co\/oQc8U75ERT","display_url":"pic.twitter.com\/oQc8U75ERT","expanded_url":"http:\/\/twitter.com\/cellbitos\/status\/663706045706018816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":681,"h":1024,"resize":"fit"},"medium":{"w":600,"h":902,"resize":"fit"}},"source_status_id":663706045706018816,"source_status_id_str":"663706045706018816","source_user_id":451200058,"source_user_id_str":"451200058"}]},"extended_entities":{"media":[{"id":663705993453375488,"id_str":"663705993453375488","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1FacWEAAum1e.jpg","url":"https:\/\/t.co\/oQc8U75ERT","display_url":"pic.twitter.com\/oQc8U75ERT","expanded_url":"http:\/\/twitter.com\/cellbitos\/status\/663706045706018816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":681,"h":1024,"resize":"fit"},"medium":{"w":600,"h":902,"resize":"fit"}},"source_status_id":663706045706018816,"source_status_id_str":"663706045706018816","source_user_id":451200058,"source_user_id_str":"451200058"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787493036033,"id_str":"663727787493036033","text":"@nagaper1 \u3093\u307e\u3001\u304c\u3093\u3070\u301c\ud83d\udd74","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727672682409984,"in_reply_to_status_id_str":"663727672682409984","in_reply_to_user_id":2164241815,"in_reply_to_user_id_str":"2164241815","in_reply_to_screen_name":"nagaper1","user":{"id":2720956062,"id_str":"2720956062","name":"maki","screen_name":"frkwmk","location":"\u3060\u3044\u3059\u304d\u306a\u304a\u83d3\u5b50\u3092\u5c01\u5370\u3057\u307e\u3059\u3002","url":"http:\/\/instagram.com\/maaaakiiii_","description":"\u5343\u8449 \u6210\u6771 \u2192 \u7368\u5354\u5927 \u7d4c\u6e08 2\u5e74\u751f \u5e73\u4e95\u30bc\u30df \/ \u75e9\u305b\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":370,"friends_count":339,"listed_count":0,"favourites_count":2457,"statuses_count":8355,"created_at":"Sun Aug 10 06:22:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662099786535800832\/3BZiq6sD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662099786535800832\/3BZiq6sD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2720956062\/1439828016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nagaper1","name":"NagaP","id":2164241815,"id_str":"2164241815","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010661"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480600576,"id_str":"663727787480600576","text":"@virtualigestio Video Impactante que vas a flipar cuando lo veas https:\/\/t.co\/LNkDiJkQPc","source":"\u003ca href=\"http:\/\/www.pagesuites.com\" rel=\"nofollow\"\u003ePagesuites\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3386036885,"in_reply_to_user_id_str":"3386036885","in_reply_to_screen_name":"virtualigestio","user":{"id":3078097681,"id_str":"3078097681","name":"Catalina P. Saavedra","screen_name":"CatalinaPlumb","location":"Pontevedra","url":null,"description":"Me lavo los dientes antes de desayunar aunque todos digan que despues el cafe sabe raro. Vivo con Pipo, mi perr\u00edn y Estudio #Marketing","protected":false,"verified":false,"followers_count":92,"friends_count":119,"listed_count":78,"favourites_count":11,"statuses_count":8047,"created_at":"Fri Mar 13 20:31:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651710957232750592\/6hzoBy30_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651710957232750592\/6hzoBy30_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3078097681\/1444214991","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LNkDiJkQPc","expanded_url":"http:\/\/bit.ly\/1l2eo9S","display_url":"bit.ly\/1l2eo9S","indices":[65,88]}],"user_mentions":[{"screen_name":"virtualigestio","name":"M. Carmen Zapata","id":3386036885,"id_str":"3386036885","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480477697,"id_str":"663727787480477697","text":"\u30ec\u30c7\u30a3\u30af\u30ec\u8ab0\u304b\u4e00\u65e5\u76ee\u4e00\u7dd2\u306b\u884c\u3053\u3046\u3088\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01(\u5927\u58f0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3172357069,"id_str":"3172357069","name":"\u3055\u3048(\u00eb)","screen_name":"boon_912sogohyp","location":null,"url":"http:\/\/twpf.jp\/boon_912sogohyp","description":"FM802 \/ \u30b3\u30df\u30e5\u969c\u3002\u30c4\u30a4\u30d7\u30ed\u898b\u305f\u3089\u8272\u3005\u308f\u304b\u308b11\/8 SELL NU SOUL\u4f59\u97fb \/ \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00","protected":false,"verified":false,"followers_count":809,"friends_count":751,"listed_count":54,"favourites_count":9727,"statuses_count":13573,"created_at":"Sat Apr 25 14:45:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659756462588059648\/2kD5OcxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659756462588059648\/2kD5OcxF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3172357069\/1446735660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509944321,"id_str":"663727787509944321","text":"Ciao @NiallOfficial\u2600\ud83c\uddee\ud83c\uddf9\nHow are you?\u2728\nCan you follow me, please?\nI'll be the happiest girl in the world!\nHave a good day!\ud83c\udf81\ud83c\udf8a\ud83c\udf80\n\nx456","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3032819451,"id_str":"3032819451","name":"Be(n)\u2601\ufe0f","screen_name":"drunkviall","location":" \u263e Sorry daddy,I like dick.\u263d","url":"http:\/\/www.louisass.it","description":"save our souls.","protected":false,"verified":false,"followers_count":1517,"friends_count":1490,"listed_count":1,"favourites_count":2017,"statuses_count":2452,"created_at":"Thu Feb 12 15:02:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663095348559282176\/1b4aRP6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663095348559282176\/1b4aRP6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3032819451\/1447018676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[5,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787488907264,"id_str":"663727787488907264","text":"RT @plutonian_: \u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e21\n\u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2820031134,"id_str":"2820031134","name":"\u0e2a\u0e32\u0e2b\u0e23\u0e48\u0e32\u0e22\u0e21\u0e34\u0e42\u0e19\u0e23\u0e34","screen_name":"mewphattaravad1","location":null,"url":null,"description":"cnr \u0e08\u0e35\u0e19-\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29 \u0e40\u0e01\u0e23\u0e1411\u2744\ufe0f\nwen","protected":false,"verified":false,"followers_count":14,"friends_count":88,"listed_count":0,"favourites_count":109,"statuses_count":347,"created_at":"Fri Sep 19 14:35:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657903586186100737\/7J11f-6-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657903586186100737\/7J11f-6-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2820031134\/1445691318","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:33:40 +0000 2015","id":663711049934221313,"id_str":"663711049934221313","text":"\u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e21\n\u0e02\u0e2d\u0e43\u0e2b\u0e49\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2571557766,"id_str":"2571557766","name":"pluto","screen_name":"plutonian_","location":null,"url":null,"description":"pluto goes around the sun","protected":false,"verified":false,"followers_count":54962,"friends_count":95,"listed_count":31,"favourites_count":2836,"statuses_count":13705,"created_at":"Mon Jun 16 20:14:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF9999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620591991550664704\/YroRSIv__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620591991550664704\/YroRSIv__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2571557766\/1421597366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":623,"favorite_count":64,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"plutonian_","name":"pluto","id":2571557766,"id_str":"2571557766","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514073088,"id_str":"663727787514073088","text":"RT @PapaJackQuote: Magkaiba ang \"masaya ako\" sa \"okay ako\".","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216670246,"id_str":"216670246","name":"SamMilanKnows ","screen_name":"WlsnSmMln","location":"QUEZON CITY","url":"http:\/\/twitter.com\/#!\/sammyboy","description":"JNRS\/ Groovers For Christ\/ CollegeStudent\/ Future Broadcaster\/ Dancing is my profession praising God is my Passion","protected":false,"verified":false,"followers_count":490,"friends_count":551,"listed_count":1,"favourites_count":1573,"statuses_count":8215,"created_at":"Wed Nov 17 12:09:50 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"05202E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444509636608016384\/-1VV6qb4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444509636608016384\/-1VV6qb4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0B384D","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626029356607934464\/C9C6O9lt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626029356607934464\/C9C6O9lt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216670246\/1433019915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:17 +0000 2015","id":663724041677598720,"id_str":"663724041677598720","text":"Magkaiba ang \"masaya ako\" sa \"okay ako\".","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008769416,"id_str":"1008769416","name":"PAPA JACK \u00ae","screen_name":"PapaJackQuote","location":null,"url":"http:\/\/bit.ly\/contactpapajack","description":"Papa Jack's Quotable-Quotes-Advices.","protected":false,"verified":false,"followers_count":856805,"friends_count":125,"listed_count":301,"favourites_count":315,"statuses_count":77998,"created_at":"Thu Dec 13 13:08:36 +0000 2012","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A9A07F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_tile":true,"profile_link_color":"4C6AA6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"434752","profile_text_color":"30676A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008769416\/1409884282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":326,"favorite_count":293,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PapaJackQuote","name":"PAPA JACK \u00ae","id":1008769416,"id_str":"1008769416","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501445120,"id_str":"663727787501445120","text":"\u0e40\u0e17\u0e49\u0e32\u0e01\u0e39\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152525630,"id_str":"152525630","name":"\u0e2d\u0e32\u0e22\u0e40\u0e25-\u0e1a\u0e07","screen_name":"eeyenps","location":null,"url":null,"description":"e y e * baekhyunee_exo (\u30fb\u03c9\u30fb)\u30ce | 3 1 0 2 .","protected":false,"verified":false,"followers_count":301,"friends_count":204,"listed_count":1,"favourites_count":1210,"statuses_count":24405,"created_at":"Sun Jun 06 05:10:38 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502820787707863040\/5ua36FJ3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502820787707863040\/5ua36FJ3.png","profile_background_tile":true,"profile_link_color":"F0A8CB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655483705981464576\/AZsAvWZ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655483705981464576\/AZsAvWZ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152525630\/1431528515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497398274,"id_str":"663727787497398274","text":"Voting, Vets & Why We Need More Vets in Elected Office Live now: https:\/\/t.co\/Gnh51fNxOf on #Military Network Radio","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946731851,"id_str":"2946731851","name":"Greg Williams","screen_name":"denvertalkradio","location":"Denver Colorado","url":"http:\/\/beckmultimedia.com","description":"Best Talk Radio for Denver Colorado","protected":false,"verified":false,"followers_count":78,"friends_count":68,"listed_count":54,"favourites_count":0,"statuses_count":42635,"created_at":"Sun Dec 28 18:21:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643886347288096768\/LqqLiZ8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643886347288096768\/LqqLiZ8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946731851\/1419803180","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Military","indices":[96,105]}],"urls":[{"url":"https:\/\/t.co\/Gnh51fNxOf","expanded_url":"http:\/\/ow.ly\/UlG8S","display_url":"ow.ly\/UlG8S","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010662"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484680192,"id_str":"663727787484680192","text":"@Fx051280 \u5b88\u5099\u7bc4\u56f2\u5e83\u3059\u304e\u306aw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726851081170944,"in_reply_to_status_id_str":"663726851081170944","in_reply_to_user_id":1384589971,"in_reply_to_user_id_str":"1384589971","in_reply_to_screen_name":"Fx051280","user":{"id":2177752723,"id_str":"2177752723","name":"\u7530\u4e2d\u4fca\u5178","screen_name":"Toshi19950204","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":196,"friends_count":202,"listed_count":0,"favourites_count":251,"statuses_count":1293,"created_at":"Wed Nov 06 09:43:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571527786801856512\/T_x_eKcc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571527786801856512\/T_x_eKcc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2177752723\/1393638325","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fx051280","name":"\u5ddd\u5cf6\u3057\u3093\u3054","id":1384589971,"id_str":"1384589971","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501486082,"id_str":"663727787501486082","text":"RT @Betagen_n: \u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1f\u0e19\u0e04\u0e25\u0e31\u0e1a\u0e27\u0e07\u0e44\u0e2b\u0e19\u0e2a\u0e31\u0e01\u0e27\u0e07 \u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e14\u0e48\u0e32\u0e40\u0e02\u0e32\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e02\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e34\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":379759188,"id_str":"379759188","name":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e2a\u0e23\u0e34\u0e21'\u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e36\u0e19'\u2661","screen_name":"HJ_Mint","location":"\u0e15\u0e34\u0e48\u0e07\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e47\u0e44\u0e14\u0e49\u0e42\u0e15\u0e41\u0e25\u0e49\u0e27 \u2661","url":null,"description":"#WeLoveThaiking | l\uc5d0\uc774\uc2a4\uc81c\uc774 \uc528\ub294 \uc815\ub9d0 \uadc0\uc5ec\uc6b4 \uc624\ube60\uc774\uad6c\uc694 \u2665 @AllRiseSilver @special1004 \u2665 \/\/ \u0e40\u0e2d\u0e25\u0e1f\u0e4c\u0e41\u0e2b\u0e48\u0e07\u0e2a\u0e22\u0e32\u0e21 =w= #Singular #TWD #Marvel #DC #\u0e1a\u0e2d\u0e25\u0e44\u0e17\u0e22\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e21\u0e38\u0e49\u0e07\u0e21\u0e34\u0e49\u0e07","protected":false,"verified":false,"followers_count":459,"friends_count":234,"listed_count":4,"favourites_count":4712,"statuses_count":137815,"created_at":"Sun Sep 25 14:24:34 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0EBD6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/726132100\/ca209a583bf0b8b6332bbc663b1a07f5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/726132100\/ca209a583bf0b8b6332bbc663b1a07f5.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653615418372833280\/r9AIHz5T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653615418372833280\/r9AIHz5T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379759188\/1401726308","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 19:22:11 +0000 2015","id":663073981998600192,"id_str":"663073981998600192","text":"\u0e16\u0e49\u0e32\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1f\u0e19\u0e04\u0e25\u0e31\u0e1a\u0e27\u0e07\u0e44\u0e2b\u0e19\u0e2a\u0e31\u0e01\u0e27\u0e07 \u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e14\u0e48\u0e32\u0e40\u0e02\u0e32\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32\u0e40\u0e02\u0e32\u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16 \u0e44\u0e21\u0e48\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e21\u0e2d\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e04\u0e38\u0e13\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208676196,"id_str":"208676196","name":"l3etagen\u2022^\u2022l3azilluz","screen_name":"Betagen_n","location":"BKK \/\/ Thailand \/\/","url":"https:\/\/www.facebook.com\/Betagen.PN","description":"BETAGEN~92LINE\u00b0\u2022||KWJ EXO LUHAN WUYIFAN TAO|| [ \u2022BIAS: SEHUN\u2764LUHAN 947:520 HUNHAN SHIPPER\u2022] EXO\u00b0FANART\u2022\u2661\u0e1e\u0e39\u0e14\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e2b\u0e19\u0e31\u0e01\u0e21\u0e32\u0e01 |FA #\u0e40\u0e2b\u0e21\u0e35\u0e22\u0e27\u0e02\u0e2d\u0e07\u0e25\u0e39\u0e48 |","protected":false,"verified":false,"followers_count":3355,"friends_count":462,"listed_count":6,"favourites_count":8527,"statuses_count":108510,"created_at":"Wed Oct 27 18:28:03 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1D0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623514450096590848\/f-7UfJBY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623514450096590848\/f-7UfJBY.jpg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F7EBE1","profile_text_color":"6B380A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662666913504325632\/vxbsZKr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662666913504325632\/vxbsZKr__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208676196\/1443377194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"010ec04a7bb821b7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/010ec04a7bb821b7.json","place_type":"city","name":"Lak Si","full_name":"Lak Si, Bangkok","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.543817,13.849890],[100.543817,13.914421],[100.587519,13.914421],[100.587519,13.849890]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4651,"favorite_count":376,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Betagen_n","name":"l3etagen\u2022^\u2022l3azilluz","id":208676196,"id_str":"208676196","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480494080,"id_str":"663727787480494080","text":"@ranelu0128 \u304a\u306e\u306e\u304d\u3061\u3083\u3093\u304b\u308f\u3044\u3044\u3051\u3069\u30e0\u30ba\u305d\u3046(\u5c0f\u4e26\u611f)","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727432487165952,"in_reply_to_status_id_str":"663727432487165952","in_reply_to_user_id":534046271,"in_reply_to_user_id_str":"534046271","in_reply_to_screen_name":"ranelu0128","user":{"id":228728471,"id_str":"228728471","name":"\u30c2\u30e7\u30f3\uff2080\uff7d\uff70\uff8c\uff9f\uff97\u4e57\u308a\u305f\u3044","screen_name":"Dohn_Smith","location":"(\u3063 `-\u00b4 c)\uff8f\uff6f\u203c","url":"http:\/\/twpf.jp\/Dohn_Smith","description":"\u4eca\u65e5\u3082\u6e1b\u6c17\u306b\u4e0d\u5065\u5eb7\uff01\u5e7b\u8d70\u30b9\u30ab\u30a4\u30c9\u30ea\u30d5\u30c8\u59cb\u3081\u307e\u3057\u305f\u3002\u308c\u3093\u3052\u5927\u597d\u304d\u3067\u3059\u300280\u30b9\u30fc\u30d7\u30e9\u306b\u4e57\u308a\u305f\u3044\u3002\u30dc\u30ab\u30edUTAU\u30fb\u5c11\u3057\u306e\u30a2\u30cb\u30e1\u30fb\u8eca\u30d0\u30a4\u30af\u30fbPC\u30d1\u30fc\u30c4\u306e\u304a\u8a71\u3068\u304b\u3002\u5927\u4f53\u306f\u79c1\u4e8b\u3067\u3059\u3002\u5f8c\u306f\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u304f\u3060\u3055\u3044\uff3e\uff50\uff3e","protected":false,"verified":false,"followers_count":893,"friends_count":819,"listed_count":17,"favourites_count":17393,"statuses_count":105293,"created_at":"Mon Dec 20 14:25:04 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658677910782382080\/oNMcpyMf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658677910782382080\/oNMcpyMf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228728471\/1428254355","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ranelu0128","name":"\u306a\u304b\u3080\u3089\u306d\u308b","id":534046271,"id_str":"534046271","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476451329,"id_str":"663727787476451329","text":"RT @NYWICI: Spotlight on #NYWICI Scholarship Winners. Apply for a NYWICI scholarship today! https:\/\/t.co\/VGaFoT4vjH #nywiciSCC15 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78665976,"id_str":"78665976","name":"Natasha Clark","screen_name":"thelionessgroup","location":"Springfield, Massachusetts","url":"http:\/\/www.lionessmagazine.com","description":"Clark is the Founder and Publisher of Lioness Magazine, the leading digital magazine for female entrepreneurs.","protected":false,"verified":false,"followers_count":593,"friends_count":511,"listed_count":78,"favourites_count":111,"statuses_count":1365,"created_at":"Wed Sep 30 17:56:38 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/115972455\/lioness_wtext.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/115972455\/lioness_wtext.jpg","profile_background_tile":true,"profile_link_color":"DE31B6","profile_sidebar_border_color":"09010D","profile_sidebar_fill_color":"DCD4E6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618855365887791104\/eF34WBbo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618855365887791104\/eF34WBbo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78665976\/1400680625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 20:53:44 +0000 2015","id":663097024032677888,"id_str":"663097024032677888","text":"Spotlight on #NYWICI Scholarship Winners. Apply for a NYWICI scholarship today! https:\/\/t.co\/VGaFoT4vjH #nywiciSCC15 https:\/\/t.co\/Zwn37kCDLc","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20695908,"id_str":"20695908","name":"NY Women in Comm.","screen_name":"NYWICI","location":"New York","url":"http:\/\/www.nywici.org","description":"The twitter feed of New York Women in Communications. Find info on upcoming events, notable guest speakers, scholarship programs, and ways to get involved.","protected":false,"verified":false,"followers_count":10190,"friends_count":2006,"listed_count":457,"favourites_count":1788,"statuses_count":17030,"created_at":"Thu Feb 12 17:32:17 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/105736865\/NYWICIbg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/105736865\/NYWICIbg.jpg","profile_background_tile":false,"profile_link_color":"B5038D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B8C3FF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577847849905356800\/7ceT77Ex_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577847849905356800\/7ceT77Ex_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20695908\/1446034355","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":6,"entities":{"hashtags":[{"text":"NYWICI","indices":[13,20]},{"text":"nywiciSCC15","indices":[104,116]}],"urls":[{"url":"https:\/\/t.co\/VGaFoT4vjH","expanded_url":"http:\/\/bit.ly\/1QlHbCe","display_url":"bit.ly\/1QlHbCe","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663097023877545984,"id_str":"663097023877545984","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","url":"https:\/\/t.co\/Zwn37kCDLc","display_url":"pic.twitter.com\/Zwn37kCDLc","expanded_url":"http:\/\/twitter.com\/NYWICI\/status\/663097024032677888\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":954,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663097023877545984,"id_str":"663097023877545984","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","url":"https:\/\/t.co\/Zwn37kCDLc","display_url":"pic.twitter.com\/Zwn37kCDLc","expanded_url":"http:\/\/twitter.com\/NYWICI\/status\/663097024032677888\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":954,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NYWICI","indices":[25,32]},{"text":"nywiciSCC15","indices":[116,128]}],"urls":[{"url":"https:\/\/t.co\/VGaFoT4vjH","expanded_url":"http:\/\/bit.ly\/1QlHbCe","display_url":"bit.ly\/1QlHbCe","indices":[92,115]}],"user_mentions":[{"screen_name":"NYWICI","name":"NY Women in Comm.","id":20695908,"id_str":"20695908","indices":[3,10]}],"symbols":[],"media":[{"id":663097023877545984,"id_str":"663097023877545984","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","url":"https:\/\/t.co\/Zwn37kCDLc","display_url":"pic.twitter.com\/Zwn37kCDLc","expanded_url":"http:\/\/twitter.com\/NYWICI\/status\/663097024032677888\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":954,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663097024032677888,"source_status_id_str":"663097024032677888","source_user_id":20695908,"source_user_id_str":"20695908"}]},"extended_entities":{"media":[{"id":663097023877545984,"id_str":"663097023877545984","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPLOt_XAAAMftc.jpg","url":"https:\/\/t.co\/Zwn37kCDLc","display_url":"pic.twitter.com\/Zwn37kCDLc","expanded_url":"http:\/\/twitter.com\/NYWICI\/status\/663097024032677888\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":954,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663097024032677888,"source_status_id_str":"663097024032677888","source_user_id":20695908,"source_user_id_str":"20695908"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509833730,"id_str":"663727787509833730","text":"RT @sela_seliana: Ada ya SODARA NIKUNG SODARA?? Gue rasa si cireng kurang darah+daging sampe gebetan sodara di embat wkwk #ggsreturnseps29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225171606,"id_str":"3225171606","name":"Yunita Sari","screen_name":"yunitas641","location":"Kota Palembang","url":null,"description":null,"protected":false,"verified":false,"followers_count":55,"friends_count":380,"listed_count":1,"favourites_count":44,"statuses_count":1442,"created_at":"Sun May 24 13:19:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659391587667959808\/JRBHGL3q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659391587667959808\/JRBHGL3q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225171606\/1439217227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:10 +0000 2015","id":663727284889612288,"id_str":"663727284889612288","text":"Ada ya SODARA NIKUNG SODARA?? Gue rasa si cireng kurang darah+daging sampe gebetan sodara di embat wkwk #ggsreturnseps29","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877974674,"id_str":"3877974674","name":"Kangen DIGO SISI :')","screen_name":"sela_seliana","location":"Bekasi","url":"http:\/\/m.facebook.com\/profile.php?ref_component=mbasic_bookmark&ref_page=XMenucontroller","description":"FB :: Sela Seliana,\r\n Sela Seliana Alpril\r\nID Line :: Sela APL\r\nAlways suport neng ii @PrillyBie dan bang @AlySyarief","protected":false,"verified":false,"followers_count":71,"friends_count":134,"listed_count":3,"favourites_count":17,"statuses_count":1773,"created_at":"Tue Oct 13 06:53:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657151896197705728\/qxN5Ye_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657151896197705728\/qxN5Ye_J_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"ggsreturnseps29","indices":[104,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ggsreturnseps29","indices":[122,138]}],"urls":[],"user_mentions":[{"screen_name":"sela_seliana","name":"Kangen DIGO SISI :')","id":3877974674,"id_str":"3877974674","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501486081,"id_str":"663727787501486081","text":"@YapeMyka_12 @JoanneEscultor @austeroMissy04 @MCAAAAAAAAA @melodiyaaaaah @Diiyaang pareho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727337771438080,"in_reply_to_status_id_str":"663727337771438080","in_reply_to_user_id":2418752497,"in_reply_to_user_id_str":"2418752497","in_reply_to_screen_name":"YapeMyka_12","user":{"id":1264385510,"id_str":"1264385510","name":"-VAM-","screen_name":"vrldttmnsnr","location":"Disneyland ","url":"http:\/\/instagram.com\/vrldttmnsnr","description":"\u274c living my life to the fullest \u274c","protected":false,"verified":false,"followers_count":659,"friends_count":98,"listed_count":2,"favourites_count":1624,"statuses_count":5350,"created_at":"Wed Mar 13 12:47:39 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579541597181734912\/RZ0ipR9r.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579541597181734912\/RZ0ipR9r.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663705425200582656\/dihOSDzw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663705425200582656\/dihOSDzw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1264385510\/1444579179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YapeMyka_12","name":"fgh","id":2418752497,"id_str":"2418752497","indices":[0,12]},{"screen_name":"JoanneEscultor","name":"JAE","id":3229362162,"id_str":"3229362162","indices":[13,28]},{"screen_name":"austeroMissy04","name":"abcd","id":3303003642,"id_str":"3303003642","indices":[29,44]},{"screen_name":"MCAAAAAAAAA","name":"Munich Auguis","id":4179110773,"id_str":"4179110773","indices":[45,57]},{"screen_name":"melodiyaaaaah","name":"\u3137\u314b","id":2446944013,"id_str":"2446944013","indices":[58,72]},{"screen_name":"Diiyaang","name":"Dee","id":1269770227,"id_str":"1269770227","indices":[73,82]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480621056,"id_str":"663727787480621056","text":"Pero sobre todo la #RESPONSABILIDAD frente a la #VIDA y en lo virtual los contenidos emitidos.\n@twitter #Logoterapia #Consultor\u00edaFilos\u00f3fica.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725567909449728,"in_reply_to_status_id_str":"663725567909449728","in_reply_to_user_id":403802054,"in_reply_to_user_id_str":"403802054","in_reply_to_screen_name":"HenryNoboaA","user":{"id":403802054,"id_str":"403802054","name":"\u03a8 WAIRA \u2646","screen_name":"HenryNoboaA","location":"#UNASUR-#VEc- Quito-Ecuador ","url":null,"description":"Filosof\u00eda-Arte-Noticias-M\u00fasica \u03df","protected":false,"verified":false,"followers_count":5078,"friends_count":5412,"listed_count":22,"favourites_count":16319,"statuses_count":48603,"created_at":"Thu Nov 03 01:01:38 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629664449775841280\/PK5IRw4H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629664449775841280\/PK5IRw4H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403802054\/1439053536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RESPONSABILIDAD","indices":[19,35]},{"text":"VIDA","indices":[48,53]},{"text":"Logoterapia","indices":[104,116]},{"text":"Consultor\u00edaFilos\u00f3fica","indices":[117,139]}],"urls":[],"user_mentions":[{"screen_name":"twitter","name":"Twitter","id":783214,"id_str":"783214","indices":[95,103]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480449024,"id_str":"663727787480449024","text":"RT @iKonThailand_: [\u2764\ufe0f] \u0e19\u0e35\u0e49\u0e40\u0e02\u0e34\u0e19\u0e41\u0e17\u0e19\u0e1e\u0e35\u0e48\u0e08\u0e34\u0e19\u0e44\u0e14\u0e49\u0e21\u0e31\u0e49\u0e22? -\/\/\/\/- \u0e17\u0e33\u0e44\u0e21\u0e44\u0e21\u0e48\u0e2b\u0e31\u0e19\u0e21\u0e32\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19\u0e14\u0e35\u0e46\u0e2b\u0e25\u0e30\u0e08\u0e38\u0e19\u0e2e\u0e40\u0e27(\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e01\u0e25\u0e48\u0e32\u0e27). #JUNHOE #JinHwan #junhwan\nCr.\ubdb8\uc640\uc720\ub2c8 http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2570013692,"id_str":"2570013692","name":"markbamxx2","screen_name":"markbamxx2","location":"GOT7 IGOT7","url":"http:\/\/www.got7.jype.com","description":"#G\ufe0eO\ufe0eT\ufe0e7 #I\ufe0eG\ufe0eO\ufe0eT\ufe0e7 #\u15f0\ufe0e\u15e9\ufe0e\u1587\ufe0eK\ufe0e\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e main #\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e love #\u15f0\ufe0e\u15e9\ufe0e\u1587\ufe0eK\ufe0e too #\u15ea\ufe0e\u15e9\ufe0eY\ufe0e6: #\u15ea\ufe0eO\ufe0e\u15ef\ufe0eO\ufe0eO\ufe0e\u144e\ufe0e -\u0e23\u0e35\u0e40\u0e22\u0e2d\u0e30\u0e21\u0e32\u0e01 -\u0e2d\u0e31\u0e19\u0e1f\u0e2d\u0e25\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e01\u0e31\u0e19 -\u0e0b\u0e32\u0e23\u0e32\u0e07\u0e41\u0e2e\u0e42\u0e2d\u0e1b\u0e1b\u0e49\u0e32","protected":false,"verified":false,"followers_count":96,"friends_count":117,"listed_count":9,"favourites_count":555,"statuses_count":72922,"created_at":"Mon Jun 16 01:54:09 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661209341488312322\/4wY-uI7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661209341488312322\/4wY-uI7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2570013692\/1444543666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:46:33 +0000 2015","id":663336806788673539,"id_str":"663336806788673539","text":"[\u2764\ufe0f] \u0e19\u0e35\u0e49\u0e40\u0e02\u0e34\u0e19\u0e41\u0e17\u0e19\u0e1e\u0e35\u0e48\u0e08\u0e34\u0e19\u0e44\u0e14\u0e49\u0e21\u0e31\u0e49\u0e22? -\/\/\/\/- \u0e17\u0e33\u0e44\u0e21\u0e44\u0e21\u0e48\u0e2b\u0e31\u0e19\u0e21\u0e32\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19\u0e14\u0e35\u0e46\u0e2b\u0e25\u0e30\u0e08\u0e38\u0e19\u0e2e\u0e40\u0e27(\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e01\u0e25\u0e48\u0e32\u0e27). #JUNHOE #JinHwan #junhwan\nCr.\ubdb8\uc640\uc720\ub2c8 https:\/\/t.co\/IiCatJmTzY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787684247,"id_str":"2787684247","name":"iKON THAILAND","screen_name":"iKonThailand_","location":"\u2049\ufe0fiKON","url":"http:\/\/ikonthailandd.tumblr.com\/","description":"Thailand fanbase of iKON Twitter only Vine:iKON THAILAND Tumblr: ikonthailandd 3\/09\/14 |SINOSIJAK ! \u2764\ufe0f\u2764\ufe0f #iKONIC \u2764\ufe0f15 09 15\u2764\ufe0f","protected":false,"verified":false,"followers_count":42211,"friends_count":93,"listed_count":94,"favourites_count":432,"statuses_count":11364,"created_at":"Wed Sep 03 09:58:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643804185943670784\/7txpg_-r.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643804185943670784\/7txpg_-r.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644502476431867905\/M_VNjczd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644502476431867905\/M_VNjczd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2787684247\/1442200524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":643,"favorite_count":236,"entities":{"hashtags":[{"text":"JUNHOE","indices":[82,89]},{"text":"JinHwan","indices":[90,98]},{"text":"junhwan","indices":[99,107]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663336753734881281,"id_str":"663336753734881281","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","url":"https:\/\/t.co\/IiCatJmTzY","display_url":"pic.twitter.com\/IiCatJmTzY","expanded_url":"http:\/\/twitter.com\/iKonThailand_\/status\/663336806788673539\/video\/1","type":"photo","sizes":{"medium":{"w":400,"h":304,"resize":"fit"},"large":{"w":400,"h":304,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663336753734881281,"id_str":"663336753734881281","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","url":"https:\/\/t.co\/IiCatJmTzY","display_url":"pic.twitter.com\/IiCatJmTzY","expanded_url":"http:\/\/twitter.com\/iKonThailand_\/status\/663336806788673539\/video\/1","type":"video","sizes":{"medium":{"w":400,"h":304,"resize":"fit"},"large":{"w":400,"h":304,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[25,19],"duration_millis":4191,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/pl\/bL9qUNY7JFJmrtKj.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/pl\/bL9qUNY7JFJmrtKj.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/vid\/236x180\/YT9VAWmC0X-xunuC.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/vid\/236x180\/YT9VAWmC0X-xunuC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JUNHOE","indices":[101,108]},{"text":"JinHwan","indices":[109,117]},{"text":"junhwan","indices":[118,126]}],"urls":[],"user_mentions":[{"screen_name":"iKonThailand_","name":"iKON THAILAND","id":2787684247,"id_str":"2787684247","indices":[3,17]}],"symbols":[],"media":[{"id":663336753734881281,"id_str":"663336753734881281","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","url":"https:\/\/t.co\/IiCatJmTzY","display_url":"pic.twitter.com\/IiCatJmTzY","expanded_url":"http:\/\/twitter.com\/iKonThailand_\/status\/663336806788673539\/video\/1","type":"photo","sizes":{"medium":{"w":400,"h":304,"resize":"fit"},"large":{"w":400,"h":304,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663336806788673539,"source_status_id_str":"663336806788673539","source_user_id":2787684247,"source_user_id_str":"2787684247"}]},"extended_entities":{"media":[{"id":663336753734881281,"id_str":"663336753734881281","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663336753734881281\/pu\/img\/_UwZLTFiRvBvwGZv.jpg","url":"https:\/\/t.co\/IiCatJmTzY","display_url":"pic.twitter.com\/IiCatJmTzY","expanded_url":"http:\/\/twitter.com\/iKonThailand_\/status\/663336806788673539\/video\/1","type":"video","sizes":{"medium":{"w":400,"h":304,"resize":"fit"},"large":{"w":400,"h":304,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663336806788673539,"source_status_id_str":"663336806788673539","source_user_id":2787684247,"source_user_id_str":"2787684247","video_info":{"aspect_ratio":[25,19],"duration_millis":4191,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/pl\/bL9qUNY7JFJmrtKj.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/pl\/bL9qUNY7JFJmrtKj.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/vid\/236x180\/YT9VAWmC0X-xunuC.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663336753734881281\/pu\/vid\/236x180\/YT9VAWmC0X-xunuC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484803077,"id_str":"663727787484803077","text":"AMOR = Anak Muda Otak Rusak. #akronimlucu https:\/\/t.co\/80J7Zk18cp","source":"\u003ca href=\"http:\/\/dutafm.com\/\" rel=\"nofollow\"\u003eDuta FM Ambon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132394332,"id_str":"132394332","name":"Duta 90,9 FM Ambon","screen_name":"dutafm","location":"Ambon, Maluku, Indonesia","url":"http:\/\/www.dutafm.com","description":"Siaran 24 Jam. DUTA 90,9 FM Jl, AY. Patty No. 21 Lt. 2, 97124. Telp : (0911) 341900 \/ 08114700099. SMS 08114700077 PIN BB 5A206D9B E: marketing@radiodms.com","protected":false,"verified":false,"followers_count":26669,"friends_count":137,"listed_count":34,"favourites_count":291,"statuses_count":330131,"created_at":"Tue Apr 13 03:32:25 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C2009B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592721791\/rugj8e5nimoo51qxgz5i.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592721791\/rugj8e5nimoo51qxgz5i.jpeg","profile_background_tile":true,"profile_link_color":"F516DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/818981824\/logo-for-FB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/818981824\/logo-for-FB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132394332\/1399417847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"akronimlucu","indices":[29,41]}],"urls":[{"url":"https:\/\/t.co\/80J7Zk18cp","expanded_url":"http:\/\/tunein.com\/radio\/Duta-FM-Ambon-909-s190151\/","display_url":"tunein.com\/radio\/Duta-FM-\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484643328,"id_str":"663727787484643328","text":"RT @Mayliana48: Sekian pict diri saya sendiri \ud83d\ude04 *kaborrrr","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4002599774,"id_str":"4002599774","name":"Bang Kiki","screen_name":"BangKiki319","location":"Kebumen, Central Java","url":"http:\/\/facebook.com\/bangkiki123","description":"Bang Kiki, kelas 9 :v","protected":false,"verified":false,"followers_count":2489,"friends_count":610,"listed_count":4,"favourites_count":33,"statuses_count":2763,"created_at":"Sat Oct 24 13:20:33 +0000 2015","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719797893394433\/WaDgnke7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719797893394433\/WaDgnke7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4002599774\/1446650615","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727719977369602,"id_str":"663727719977369602","text":"Sekian pict diri saya sendiri \ud83d\ude04 *kaborrrr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2601337297,"id_str":"2601337297","name":"Mayliana","screen_name":"Mayliana48","location":"IrsanArdiansyah\u2665","url":"http:\/\/jkt48.com","description":"JKT48\u2665Fans JKT48 !! Beauty will conguer misery . I splash rainbow to colour your day \u2665 Call me Mely \u30c4 My Oshi @melodyJKT48 @veJKT48 @bebyJKT48","protected":false,"verified":false,"followers_count":573,"friends_count":919,"listed_count":0,"favourites_count":4141,"statuses_count":9527,"created_at":"Thu Jul 03 08:51:57 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663181528067772416\/Of0aWNW-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663181528067772416\/Of0aWNW-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2601337297\/1446949679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mayliana48","name":"Mayliana","id":2601337297,"id_str":"2601337297","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501580292,"id_str":"663727787501580292","text":"Que asco TODO.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3372941319,"id_str":"3372941319","name":"Romi Bermudez","screen_name":"Bermudezzzzz","location":"Montevideo, Uruguay","url":null,"description":"Facebook: http:\/\/facebook.com\/profile.php?id\u2026 Instagram: @romibermudez_","protected":false,"verified":false,"followers_count":355,"friends_count":315,"listed_count":1,"favourites_count":1210,"statuses_count":7309,"created_at":"Sun Jul 12 22:12:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F93284","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F93284","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027271968628736\/G8WuDICs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027271968628736\/G8WuDICs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3372941319\/1445834411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787488837632,"id_str":"663727787488837632","text":"@paulineeeev papayat ka! \ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727565580861441,"in_reply_to_status_id_str":"663727565580861441","in_reply_to_user_id":2287805406,"in_reply_to_user_id_str":"2287805406","in_reply_to_screen_name":"paulineeeev","user":{"id":1893582091,"id_str":"1893582091","name":"mai.","screen_name":"INF1NITAES","location":"taejin's \u2728","url":null,"description":null,"protected":false,"verified":false,"followers_count":802,"friends_count":483,"listed_count":4,"favourites_count":12353,"statuses_count":72697,"created_at":"Sun Sep 22 12:17:27 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607186594227814403\/-viqvJc3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607186594227814403\/-viqvJc3.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725823904452609\/5mHpDkna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725823904452609\/5mHpDkna_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1893582091\/1443790368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"paulineeeev","name":"Amsterdam\u2744\ufe0f\u26c4\ufe0f","id":2287805406,"id_str":"2287805406","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787488886784,"id_str":"663727787488886784","text":"RT @LMH_3: The 2 new behind-the-scene photos for B.A.P's \"The Qmentary\" are revealed by 1theK's Official Weibo!! https:\/\/t.co\/irXeGa2cx8","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2879517090,"id_str":"2879517090","name":"Damcis\u2717","screen_name":"damchul28","location":"pertigaan busan","url":null,"description":"''daehyun itu nasi padang, sederhana tapi bikin bahagia.'' [kangsomay] \/\/park bo young imitation\u2022\u2022","protected":false,"verified":false,"followers_count":98,"friends_count":118,"listed_count":0,"favourites_count":238,"statuses_count":3750,"created_at":"Mon Oct 27 13:23:07 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526729829404528640\/lfpTa16V.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526729829404528640\/lfpTa16V.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658240308665188352\/hKtKfkLi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658240308665188352\/hKtKfkLi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2879517090\/1445772473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:18:42 +0000 2015","id":663661987868487681,"id_str":"663661987868487681","text":"The 2 new behind-the-scene photos for B.A.P's \"The Qmentary\" are revealed by 1theK's Official Weibo!! https:\/\/t.co\/irXeGa2cx8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":580922899,"id_str":"580922899","name":"L.M.H with B.A.P","screen_name":"LMH_3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":185,"friends_count":175,"listed_count":3,"favourites_count":3413,"statuses_count":2813,"created_at":"Tue May 15 14:05:57 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/757544027\/05d0ee602f0304a1d3bd39586d0a21e9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/757544027\/05d0ee602f0304a1d3bd39586d0a21e9.png","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540605583607336960\/V7v1OTlT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540605583607336960\/V7v1OTlT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/580922899\/1417358110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":337,"favorite_count":128,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663661966481731584,"id_str":"663661966481731584","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663661966481731584,"id_str":"663661966481731584","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}}},{"id":663661976371859456,"id_str":"663661976371859456","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNDSCUEAAYtUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNDSCUEAAYtUy.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LMH_3","name":"L.M.H with B.A.P","id":580922899,"id_str":"580922899","indices":[3,9]}],"symbols":[],"media":[{"id":663661966481731584,"id_str":"663661966481731584","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}},"source_status_id":663661987868487681,"source_status_id_str":"663661987868487681","source_user_id":580922899,"source_user_id_str":"580922899"}]},"extended_entities":{"media":[{"id":663661966481731584,"id_str":"663661966481731584","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNCtMUsAARe4P.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}},"source_status_id":663661987868487681,"source_status_id_str":"663661987868487681","source_user_id":580922899,"source_user_id_str":"580922899"},{"id":663661976371859456,"id_str":"663661976371859456","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNDSCUEAAYtUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNDSCUEAAYtUy.jpg","url":"https:\/\/t.co\/irXeGa2cx8","display_url":"pic.twitter.com\/irXeGa2cx8","expanded_url":"http:\/\/twitter.com\/LMH_3\/status\/663661987868487681\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":675,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":395,"resize":"fit"}},"source_status_id":663661987868487681,"source_status_id_str":"663661987868487681","source_user_id":580922899,"source_user_id_str":"580922899"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509833728,"id_str":"663727787509833728","text":"\u30ce\u30ea\u3068\u6c17\u5408\u3044\u3068\u3066\u304d\u3068\u30fc\u3055\u3002\u3053\u308c\u304c1\u756a\u5927\u4e8b\u3060\u306a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1279972327,"id_str":"1279972327","name":"\u308f\u305f\u307f\u30fcbot","screen_name":"watami__bot","location":null,"url":null,"description":"\u308f\u305f\u307f\u30fc\u3010@sat0sh1_mk_sol \u3011\u3092\u5168\u529b\u3067\u8868\u73fe\u3057\u305fbot\u3067\u3059\u3002\u30cf\u30a4\u30af\u30aa\u30ea\u30c6\u30a3\u306a\u30ed\u30fc\u30af\u30aa\u30ea\u30c6\u30a3\u3002\u30d6\u30ed\u30d6\u30ed\u8a00\u3063\u3066\u3042\u306a\u305f\u306eTL\u3092\u585e\u304e\u307e\u3059\u306e\u3067\u3001\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u6ce8\u610f\u3002","protected":false,"verified":false,"followers_count":28,"friends_count":15,"listed_count":1,"favourites_count":4,"statuses_count":33801,"created_at":"Tue Mar 19 09:17:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3451186514\/d321aabc17e3ecc76c9545906392ee25_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3451186514\/d321aabc17e3ecc76c9545906392ee25_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497226240,"id_str":"663727787497226240","text":"RT @aaarashilaave: \u4eac\u30bb\u30e929(\u65e5)\u4f1a\u5834\u30a6\u30ed\u30a6\u30ed\u3057\u3066\u307e\u3059\ud83d\ude4b\u4f1a\u3048\u308b\u65b9\u4f1a\u3044\u307e\u305b\u3093\u304b\uff1f\n\n\u524d\u306b\u7d04\u675f\u3057\u3066\u305f\u65b9\u3067\u78ba\u8a8d\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u540d\u524d\u306a\u3051\u308c\u3070\u8a00\u3063\u3066\u304f\u3060\u3055\u3044\n( ; _ ; ) https:\/\/t.co\/BDz6T0CLmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3702801373,"id_str":"3702801373","name":"\u3082\u304b\u306e\u3075","screen_name":"os_ars_3104","location":null,"url":null,"description":"97line\/\u5d50\/\u667a\u62c5\/\u6fc3\u3044\u7d61\u307f\u5927\u6b53\u8fce\/\u611b\u65b9\u30b5\u30f3\u7b49\u52df\u96c6\u4e2d\u3067\u3059( \u00b4 \u25bd ` )\uff89 next\u2192osk November 26.27","protected":false,"verified":false,"followers_count":149,"friends_count":128,"listed_count":4,"favourites_count":698,"statuses_count":1523,"created_at":"Sun Sep 27 10:40:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649886541360173056\/fYXiw-YG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649886541360173056\/fYXiw-YG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3702801373\/1443351115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:27:38 +0000 2015","id":663694432244334592,"id_str":"663694432244334592","text":"\u4eac\u30bb\u30e929(\u65e5)\u4f1a\u5834\u30a6\u30ed\u30a6\u30ed\u3057\u3066\u307e\u3059\ud83d\ude4b\u4f1a\u3048\u308b\u65b9\u4f1a\u3044\u307e\u305b\u3093\u304b\uff1f\n\n\u524d\u306b\u7d04\u675f\u3057\u3066\u305f\u65b9\u3067\u78ba\u8a8d\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u540d\u524d\u306a\u3051\u308c\u3070\u8a00\u3063\u3066\u304f\u3060\u3055\u3044\n( ; _ ; ) https:\/\/t.co\/BDz6T0CLmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2962463834,"id_str":"2962463834","name":"\u308a \u3063 \u305f \u3093 Nagoya \u4f59\u97fb","screen_name":"aaarashilaave","location":"\u308a\u305f\u307f\u308b\uff5c\u308a\u305f\u308a\u3093\uff5c","url":"http:\/\/twpf.jp\/aaarashilaave","description":"\u6afb \u4e95 \u7fd4 \u304f \u3093 \u2661\u2661next\u2192Nagoya11.08,kysr1129,Tky1226.27","protected":false,"verified":false,"followers_count":206,"friends_count":208,"listed_count":71,"favourites_count":848,"statuses_count":8655,"created_at":"Wed Jan 07 06:49:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663696745998647296\/cV5IyMut_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663696745998647296\/cV5IyMut_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2962463834\/1444635329","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663694418533154816,"id_str":"663694418533154816","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663694418533154816,"id_str":"663694418533154816","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663694418528960512,"id_str":"663694418528960512","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqfUAAA6Rd0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqfUAAA6Rd0.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":553,"h":542,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":542,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aaarashilaave","name":"\u308a \u3063 \u305f \u3093 Nagoya \u4f59\u97fb","id":2962463834,"id_str":"2962463834","indices":[3,17]}],"symbols":[],"media":[{"id":663694418533154816,"id_str":"663694418533154816","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663694432244334592,"source_status_id_str":"663694432244334592","source_user_id":2962463834,"source_user_id_str":"2962463834"}]},"extended_entities":{"media":[{"id":663694418533154816,"id_str":"663694418533154816","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqgUAAA9q5n.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663694432244334592,"source_status_id_str":"663694432244334592","source_user_id":2962463834,"source_user_id_str":"2962463834"},{"id":663694418528960512,"id_str":"663694418528960512","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqjqfUAAA6Rd0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqjqfUAAA6Rd0.jpg","url":"https:\/\/t.co\/BDz6T0CLmo","display_url":"pic.twitter.com\/BDz6T0CLmo","expanded_url":"http:\/\/twitter.com\/aaarashilaave\/status\/663694432244334592\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":553,"h":542,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":553,"h":542,"resize":"fit"}},"source_status_id":663694432244334592,"source_status_id_str":"663694432244334592","source_user_id":2962463834,"source_user_id_str":"2962463834"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010662"} +{"delete":{"status":{"id":658769348417359873,"id_str":"658769348417359873","user_id":3043772360,"user_id_str":"3043772360"},"timestamp_ms":"1447080010747"}} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480449025,"id_str":"663727787480449025","text":"@UTOPIANIST_ \uc9dd\uc9dd\uc9dd~~!!!\ucd5c\uc885\uacb0\uacfc~!!!2\ubc88\uc774 \ub099\ucc30\ub418\uc5c8\ub545!!!\uadfc\ub370 \ub09c 1\ubc88\uc774 \ub354 \uc88b\uc544\uc11c...1\ubc88 \ud55c \uc138 \uc7a5 \ubf51\uace0 2\ubc88 17\uc7a5 \ubf51\uace0 \uadf8\ub7ec\ub824\uad6c\uc694 \ud638\ud638\ud638","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663363779841781761,"in_reply_to_status_id_str":"663363779841781761","in_reply_to_user_id":471113170,"in_reply_to_user_id_str":"471113170","in_reply_to_screen_name":"UTOPIANIST_","user":{"id":471113170,"id_str":"471113170","name":"\uc138\ubb34\ud68c\uacc4\ucc59\uaca8\uac00 \uc608\uc218 \uce5c\uad6c","screen_name":"UTOPIANIST_","location":"inaccessible place","url":"http:\/\/kimshm420.postype.com\/","description":"\ub0b4 \uc774\ub984\uc744 \ub418\ub1cc\ub294 \uc21c\uac04 \ub10c \ub0a0 \uc78a\uac8c \ub420 \uac70\uc57c","protected":false,"verified":false,"followers_count":134,"friends_count":185,"listed_count":1,"favourites_count":666,"statuses_count":3232,"created_at":"Sun Jan 22 14:23:25 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000045573859\/e5ec836ac845b3a95af24eab44b113b7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000045573859\/e5ec836ac845b3a95af24eab44b113b7.jpeg","profile_background_tile":true,"profile_link_color":"4D6E98","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643850986201739264\/Y9X3KQlK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643850986201739264\/Y9X3KQlK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/471113170\/1440211322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UTOPIANIST_","name":"\uc138\ubb34\ud68c\uacc4\ucc59\uaca8\uac00 \uc608\uc218 \uce5c\uad6c","id":471113170,"id_str":"471113170","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787488899072,"id_str":"663727787488899072","text":"RT @iowahawkblog: An SEC football team threatening to boycott classes is probably the funniest thing I've ever heard of.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908064396,"id_str":"908064396","name":"joie de vivre","screen_name":"Metalworks4","location":null,"url":null,"description":"\u201cWell, Doctor (Benjamin Franklin), what have we got\u2014a Republic or a Monarchy?\u201d\n\n \u201cA Republic, if you can keep it.\u201d","protected":false,"verified":false,"followers_count":1350,"friends_count":1996,"listed_count":46,"favourites_count":10572,"statuses_count":35112,"created_at":"Sat Oct 27 13:00:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEADF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000012141321\/1ab9d3fe5067126d92946f831c6ef3cf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000012141321\/1ab9d3fe5067126d92946f831c6ef3cf.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649671614498369537\/9sBLx6Vk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649671614498369537\/9sBLx6Vk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908064396\/1402360857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:48 +0000 2015","id":663727190752686080,"id_str":"663727190752686080","text":"An SEC football team threatening to boycott classes is probably the funniest thing I've ever heard of.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149913262,"id_str":"149913262","name":"David Burge","screen_name":"iowahawkblog","location":"Austin TX \/ Chicago IL","url":"http:\/\/iowahawk.typepad.com","description":"Karma's janitor","protected":false,"verified":false,"followers_count":111939,"friends_count":437,"listed_count":3319,"favourites_count":1451,"statuses_count":47099,"created_at":"Sun May 30 15:14:33 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/875919861\/9bcf1bdb5728c3a415931b221c9d33e6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/875919861\/9bcf1bdb5728c3a415931b221c9d33e6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1879271765\/2375_84984116216_633511216_2728356_7132856_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1879271765\/2375_84984116216_633511216_2728356_7132856_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149913262\/1387730953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iowahawkblog","name":"David Burge","id":149913262,"id_str":"149913262","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476303872,"id_str":"663727787476303872","text":"RT @3jsb_movie: \u3053\u308c\u9762\u767d\u3044\uff01\uff01\n\n\u6700\u5f8c\u9762\u767d\u904e\u304e\u308b\u2661\n\n\uff03\u7b11\u3063\u305f\u4ebaRT\u2661\n https:\/\/t.co\/mdU4x3xIZq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4178656760,"id_str":"4178656760","name":"\u4e09\u6d66\u3042\u304d\u307f(\u3042\u307f)","screen_name":"ami0201m","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":60,"listed_count":0,"favourites_count":1,"statuses_count":4,"created_at":"Mon Nov 09 11:23:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684176143486976\/s0ELAEP8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684176143486976\/s0ELAEP8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4178656760\/1447069718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 15:02:08 +0000 2015","id":659384660967821312,"id_str":"659384660967821312","text":"\u3053\u308c\u9762\u767d\u3044\uff01\uff01\n\n\u6700\u5f8c\u9762\u767d\u904e\u304e\u308b\u2661\n\n\uff03\u7b11\u3063\u305f\u4ebaRT\u2661\n https:\/\/t.co\/mdU4x3xIZq","source":"\u003ca href=\"http:\/\/ec2-52-24-244-12.us-west-2.compute.amazonaws.com\/app1\/\" rel=\"nofollow\"\u003eTwitterSuperAppAWS3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239203699,"id_str":"3239203699","name":"3\u4ee3\u76eeJSB\u52d5\u753b","screen_name":"3jsb_movie","location":null,"url":null,"description":"\u4e09\u4ee3\u76eeJ Soul Brothers\u306e\u4e3b\u306b\u52d5\u753b\u3092\u96c6\u3081\u3066\u307f\u305f\u3088\u2661\u6c17\u306b\u5165\u3063\u305f\u306e\u304c\u3042\u3063\u305f\u3089RT\u3068\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u306d\uff01","protected":false,"verified":false,"followers_count":4374,"friends_count":5000,"listed_count":1,"favourites_count":0,"statuses_count":795,"created_at":"Sun Jun 07 19:37:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607633216636264448\/1ar6VTmD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607633216636264448\/1ar6VTmD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239203699\/1433705981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":118,"entities":{"hashtags":[{"text":"\u7b11\u3063\u305f\u4ebaRT","indices":[19,26]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":589661829279789056,"id_str":"589661829279789056","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","url":"https:\/\/t.co\/mdU4x3xIZq","display_url":"pic.twitter.com\/mdU4x3xIZq","expanded_url":"http:\/\/twitter.com\/_3_JSB\/status\/589661895113637888\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":589661895113637888,"source_status_id_str":"589661895113637888","source_user_id":2991536388,"source_user_id_str":"2991536388"}]},"extended_entities":{"media":[{"id":589661829279789056,"id_str":"589661829279789056","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","url":"https:\/\/t.co\/mdU4x3xIZq","display_url":"pic.twitter.com\/mdU4x3xIZq","expanded_url":"http:\/\/twitter.com\/_3_JSB\/status\/589661895113637888\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":589661895113637888,"source_status_id_str":"589661895113637888","source_user_id":2991536388,"source_user_id_str":"2991536388","video_info":{"aspect_ratio":[1,1],"duration_millis":30139,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/pl\/x6DC4SoiSMVTPdWW.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/480x480\/c6BPdj4skCQC3WGa.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/pl\/x6DC4SoiSMVTPdWW.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/480x480\/c6BPdj4skCQC3WGa.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/240x240\/5yNBE4Bg_-JBXiOm.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7b11\u3063\u305f\u4ebaRT","indices":[35,42]}],"urls":[],"user_mentions":[{"screen_name":"3jsb_movie","name":"3\u4ee3\u76eeJSB\u52d5\u753b","id":3239203699,"id_str":"3239203699","indices":[3,14]}],"symbols":[],"media":[{"id":589661829279789056,"id_str":"589661829279789056","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","url":"https:\/\/t.co\/mdU4x3xIZq","display_url":"pic.twitter.com\/mdU4x3xIZq","expanded_url":"http:\/\/twitter.com\/_3_JSB\/status\/589661895113637888\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":589661895113637888,"source_status_id_str":"589661895113637888","source_user_id":2991536388,"source_user_id_str":"2991536388"}]},"extended_entities":{"media":[{"id":589661829279789056,"id_str":"589661829279789056","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/589661829279789056\/pu\/img\/gFga0va-PX9yk0CK.jpg","url":"https:\/\/t.co\/mdU4x3xIZq","display_url":"pic.twitter.com\/mdU4x3xIZq","expanded_url":"http:\/\/twitter.com\/_3_JSB\/status\/589661895113637888\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":589661895113637888,"source_status_id_str":"589661895113637888","source_user_id":2991536388,"source_user_id_str":"2991536388","video_info":{"aspect_ratio":[1,1],"duration_millis":30139,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/pl\/x6DC4SoiSMVTPdWW.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/480x480\/c6BPdj4skCQC3WGa.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/pl\/x6DC4SoiSMVTPdWW.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/480x480\/c6BPdj4skCQC3WGa.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/589661829279789056\/pu\/vid\/240x240\/5yNBE4Bg_-JBXiOm.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484794880,"id_str":"663727787484794880","text":"RT @5fuF122: \u062a\u0639\u0648\u062f\u062a \u0627\u0641\u0642\u062f \u0648\u062a\u0639\u0648\u062f\u062a \u0627\u0634\u0648\u0641 \u0627\u0644\u0646\u0627\u0633 \u064a\u062a\u063a\u064a\u0631\u0648\u0646 \u0643\u0644 \u064a\u0648\u0645 \u0627\u0643\u062b\u0631 \u0645\u0646 \u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0644\u064a \u0642\u0628\u0644\u0647 \u0628\u0633 \u0627\u0633\u0643\u062a \u0648\u0627\u0628\u062a\u0633\u0645 \u0648\u0627\u0634\u0648\u0641 \u0648\u0634 \u0641\u064a\u0647 \u0628\u0639\u062f\u061f.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2974939872,"id_str":"2974939872","name":"\u06af\u0628\u0631\u064a\u0622\u0621 \u0622\u0627\u0646\u062b\u0649","screen_name":"ooooxo77_","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0628\u0644\u0648\u0643 \u0644\u0641\u0642\u0631\u0627\u0621 \u0627\u0644\u0627\u062f\u0628.","protected":false,"verified":false,"followers_count":131,"friends_count":177,"listed_count":0,"favourites_count":81,"statuses_count":19,"created_at":"Sun Jan 11 14:29:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656567242377793540\/GDpjuh7__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656567242377793540\/GDpjuh7__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 08 16:24:08 +0000 2015","id":652157540155822080,"id_str":"652157540155822080","text":"\u062a\u0639\u0648\u062f\u062a \u0627\u0641\u0642\u062f \u0648\u062a\u0639\u0648\u062f\u062a \u0627\u0634\u0648\u0641 \u0627\u0644\u0646\u0627\u0633 \u064a\u062a\u063a\u064a\u0631\u0648\u0646 \u0643\u0644 \u064a\u0648\u0645 \u0627\u0643\u062b\u0631 \u0645\u0646 \u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0644\u064a \u0642\u0628\u0644\u0647 \u0628\u0633 \u0627\u0633\u0643\u062a \u0648\u0627\u0628\u062a\u0633\u0645 \u0648\u0627\u0634\u0648\u0641 \u0648\u0634 \u0641\u064a\u0647 \u0628\u0639\u062f\u061f.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3723085332,"id_str":"3723085332","name":"\u0642\u0637\u0631\u0647 \u0646\u062f\u0649 2","screen_name":"5fuF122","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":182,"friends_count":189,"listed_count":0,"favourites_count":2,"statuses_count":16,"created_at":"Tue Sep 29 06:58:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648757727930417152\/INoN1529_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648757727930417152\/INoN1529_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5fuF122","name":"\u0642\u0637\u0631\u0647 \u0646\u062f\u0649 2","id":3723085332,"id_str":"3723085332","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787493183488,"id_str":"663727787493183488","text":"@fatizaynmalik ya te superare, lo tendr\u00e9 en cuenta \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663495471357366272,"in_reply_to_status_id_str":"663495471357366272","in_reply_to_user_id":288438042,"in_reply_to_user_id_str":"288438042","in_reply_to_screen_name":"fatizaynmalik","user":{"id":2272360712,"id_str":"2272360712","name":"carlos portillo","screen_name":"varilla30001","location":"sevilla","url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":159,"listed_count":0,"favourites_count":1156,"statuses_count":825,"created_at":"Thu Jan 02 02:25:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627619670372298752\/Jw4idQjk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627619670372298752\/Jw4idQjk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2272360712\/1418599513","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fatizaynmalik","name":"Martes 13.","id":288438042,"id_str":"288438042","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010661"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497398273,"id_str":"663727787497398273","text":"Quality archery sights go hand-in-hand with Deadly Accuracy https:\/\/t.co\/TYEuaARCTH","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1337585743,"id_str":"1337585743","name":"Jack Gustin","screen_name":"Triangle_News_","location":"Durham, North Carolina","url":"http:\/\/durhamwakecountynews.com","description":"Outdoors, Business and so much more.","protected":false,"verified":false,"followers_count":1588,"friends_count":227,"listed_count":22,"favourites_count":0,"statuses_count":70840,"created_at":"Mon Apr 08 20:44:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/837616405\/6568109f953e2daf7b1ba30349475fbd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/837616405\/6568109f953e2daf7b1ba30349475fbd.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3495585816\/e30d99f97f789f7d6ab0453872ef5743_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3495585816\/e30d99f97f789f7d6ab0453872ef5743_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1337585743\/1365454162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TYEuaARCTH","expanded_url":"http:\/\/dld.bz\/dN8gJ","display_url":"dld.bz\/dN8gJ","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010662"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476393984,"id_str":"663727787476393984","text":"San Diego State doubles down on Grizzlies! Congrats Shoob! https:\/\/t.co\/yA5fcP8iix https:\/\/t.co\/9sllAgfnWd","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4119576616,"id_str":"4119576616","name":"Lauren","screen_name":"LostLaurenn","location":"San Diego, CA","url":null,"description":"Volunteer, Extraordinaire, Happiness Seeker, Man of Winter, Dimestore Megatron. You're beautiful.","protected":false,"verified":false,"followers_count":125,"friends_count":1395,"listed_count":79,"favourites_count":1,"statuses_count":10789,"created_at":"Thu Nov 05 13:14:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662257821522620416\/eTgj3prZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662257821522620416\/eTgj3prZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4119576616\/1446729511","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yA5fcP8iix","expanded_url":"http:\/\/www.insidesocal.com\/onpreps\/","display_url":"insidesocal.com\/onpreps\/","indices":[59,82]},{"url":"https:\/\/t.co\/9sllAgfnWd","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509854208,"id_str":"663727787509854208","text":"\u3088\u30fc\u3061\u3083\u3093\u304c@ \u30ea\u30a2\u5145\u306b\u306a\u3063\u3066\u308b\u3001\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396573295,"id_str":"396573295","name":"\u3068\u3089Ras LANCE","screen_name":"ChikaAmatora","location":"\u5927\u962a\u3067\u4e2d\u5b66\u751f\u8a50\u6b3a\u3057\u3066\u308b","url":"http:\/\/twpf.jp\/ChikaAmatora","description":"\u306b\u3053\u3068\u304b\u3088\u3061\u3093\u3068\u5343\u4f73\u3061\u3083\u3093\u5927\u597d\u304d\u30de\u30f3\u3002\u5168\u97f3\u30b2\u3092\u89e6\u3063\u3066\u305f\u4eba\u3002\u30a6\u30cb\u3068\u304b\u30b0\u30eb\u30b3\u30b9\u306a\u3089\u4eba\u4e26\u307f\u306b\u5c11\u3057\u3060\u3051\u3002\u30d5\u30ec\u30f3\u30c9\u52df\u96c6\u4e2d\u3060\u3088\u3002#\u30c1\u30fc\u30e0\u30c4\u30a4\u5ec3\u307b\u306e\u307e\u304d\u3071\u306a #\u3068\u3089\u3089\u5ec3\u5316\u8131\u51fa\u8a08\u753b #\u4eca\u65e5\u306e\u30a2\u30db\u6bdb \u751f\u606f\u5730\u57df\u306f\u97f3\u30b2\u30fc\u3057\u3066\u308b\u5343\u4f73\u3061\u3083\u3093\u306e\u96a3","protected":false,"verified":false,"followers_count":316,"friends_count":449,"listed_count":19,"favourites_count":14606,"statuses_count":33601,"created_at":"Sun Oct 23 13:29:22 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/353678316\/oct_800.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/353678316\/oct_800.jpg","profile_background_tile":true,"profile_link_color":"00FF00","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662978587528572928\/By3bLvgt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662978587528572928\/By3bLvgt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396573295\/1446719418","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484708864,"id_str":"663727787484708864","text":"\u3046\u3063\u305b\u30fc\u305e\u3053\u3044\u3064\uff01\uff01\uff01 https:\/\/t.co\/4D7X0mbR0r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320512944,"id_str":"3320512944","name":"Ryu@melocy","screen_name":"RyuRyumelocy","location":"\u30e1\u30ed\u30b7\u30fc","url":null,"description":"\u3044\u3064\u3082\u3001\u8eab\u9577\u306e\u5922\u3067\u76ee\u304c\u899a\u3081\u308bRyu\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":128,"friends_count":131,"listed_count":1,"favourites_count":7483,"statuses_count":9599,"created_at":"Wed Aug 19 20:27:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661088181576593409\/nyX8__M4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661088181576593409\/nyX8__M4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320512944\/1446450680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727445099458560,"quoted_status_id_str":"663727445099458560","quoted_status":{"created_at":"Mon Nov 09 14:38:49 +0000 2015","id":663727445099458560,"id_str":"663727445099458560","text":"@RyuRyumelocy \uff08\u261d \u055e\u0a0a \u055e\uff09\u261d\u3060\u30fc\u308c\u3060\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726917464387584,"in_reply_to_status_id_str":"663726917464387584","in_reply_to_user_id":3320512944,"in_reply_to_user_id_str":"3320512944","in_reply_to_screen_name":"RyuRyumelocy","user":{"id":4179889273,"id_str":"4179889273","name":"\u30de\u30e6","screen_name":"per_zig","location":null,"url":null,"description":"\u30b8\u30b0\u308b","protected":false,"verified":false,"followers_count":5,"friends_count":7,"listed_count":0,"favourites_count":4,"statuses_count":10,"created_at":"Mon Nov 09 13:56:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723212509843457\/QrORJ__3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723212509843457\/QrORJ__3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179889273\/1447078919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RyuRyumelocy","name":"Ryu@melocy","id":3320512944,"id_str":"3320512944","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4D7X0mbR0r","expanded_url":"https:\/\/twitter.com\/per_zig\/status\/663727445099458560","display_url":"twitter.com\/per_zig\/status\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787493036034,"id_str":"663727787493036034","text":"Naku naman.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1693373678,"id_str":"1693373678","name":"Evanrose Abaa","screen_name":"abaaevan","location":"Puerto Princesa City, Mimaropa","url":"http:\/\/heyevannie.tumblr.com","description":"Smile now, let it go.","protected":false,"verified":false,"followers_count":412,"friends_count":516,"listed_count":0,"favourites_count":6335,"statuses_count":13731,"created_at":"Fri Aug 23 09:30:24 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"451E28","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663040812645679104\/GrLNPHjl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663040812645679104\/GrLNPHjl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1693373678\/1443366420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080010661"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501490176,"id_str":"663727787501490176","text":"RT @twi_tenkomori: \u3010\u8a71\u984c\u306e\u753b\u50cf\u3011#\u67f4\u72ac\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u4e8c\u5bae\u548c\u4e5f\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b\n\n\u5f85\u3063\u3066\u3053\u306e\u30bf\u30b0\u3084\u3070\u3044wwwww\n\u30d2\u30c3\u30c8\u3057\u3059\u304e(\u62fe) https:\/\/t.co\/8IjK8K3QSy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3704927593,"id_str":"3704927593","name":"\u3058\u3085\u306a@\u96c5\u7d00\u3068\u592a\u8f14\u4f9d\u5b58\u75c7","screen_name":"masa5tai7","location":null,"url":null,"description":"\u76f8\u8449\u770c\/96line\/\u723d\u5feb\u9b42,\u75be\u8d70\u9b42,\u7d04\u675f\u9b42,\u4e16\u754c\u9b42&\u5d50\u30d5\u30a7\u30b9*13\u261e\u53c2\u6226\u6e08\u2765\u00bb\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u2765\u00bb\u30d5\u30a9\u30ed\u30d0\u73871224%\n\u6fc3\u304f\u7d61\u3081\u308b\u5b50\u76f8\u65b9\u5b89\u5b9a\u306a\u3069\u5927\u52df\u96c6\u3067\u3059\u3063(\u0e51\u2022\u0300\u3141\u2022\u0301\u0e05\u2727 \u512a\u3057\u304f\u3066\u30a4\u30b1\u30e1\u30f3\u304a\u5144\u3061\u3083\u3093\u261e\u76f8\u8449voice\u306e\u305b\u3044\u3054\u3055\u3093(*\u2018\u25c7\u2018) \u6afb\u8449\u540c\u76df\u27a1\u3086\u3046\u304b\u2765\ufe0e \u85e4\u30f6\u8c37\u540c\u76df\u3061\u3073\u30ac\u30e4\u03be*\u2018 \uff70\u2018)","protected":false,"verified":false,"followers_count":600,"friends_count":637,"listed_count":10,"favourites_count":1846,"statuses_count":8136,"created_at":"Sun Sep 27 15:17:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648155318694776832\/VP91Qe4l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648155318694776832\/VP91Qe4l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3704927593\/1443367696","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:11:41 +0000 2015","id":663690417964081152,"id_str":"663690417964081152","text":"\u3010\u8a71\u984c\u306e\u753b\u50cf\u3011#\u67f4\u72ac\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u4e8c\u5bae\u548c\u4e5f\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b\n\n\u5f85\u3063\u3066\u3053\u306e\u30bf\u30b0\u3084\u3070\u3044wwwww\n\u30d2\u30c3\u30c8\u3057\u3059\u304e(\u62fe) https:\/\/t.co\/8IjK8K3QSy","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131385736,"id_str":"1131385736","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","screen_name":"twi_tenkomori","location":"summaryman1989@gmail.com","url":null,"description":"\u51cd\u7d50\u7528\u907f\u96e3\u30a2\u30ab @twi_tenkomor1 LINE\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u3067\u304d\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u3001LINE\u3082\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 http:\/\/line.me\/ti\/p\/%40jem3434e","protected":false,"verified":false,"followers_count":281989,"friends_count":5,"listed_count":2056,"favourites_count":2,"statuses_count":20792,"created_at":"Tue Jan 29 15:43:31 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5414,"favorite_count":8564,"entities":{"hashtags":[{"text":"\u67f4\u72ac\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u4e8c\u5bae\u548c\u4e5f\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[7,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663673428243705856,"id_str":"663673428243705856","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"}]},"extended_entities":{"media":[{"id":663673428243705856,"id_str":"663673428243705856","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673428256251904,"id_str":"663673428256251904","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3oUYAA2_2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3oUYAA2_2U.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673428646367232,"id_str":"663673428646367232","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd5FVEAA4gv9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd5FVEAA4gv9.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673430277931010,"id_str":"663673430277931010","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd_KUwAIcnz6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd_KUwAIcnz6.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u67f4\u72ac\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u4e8c\u5bae\u548c\u4e5f\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[26,58]}],"urls":[],"user_mentions":[{"screen_name":"twi_tenkomori","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","id":1131385736,"id_str":"1131385736","indices":[3,17]}],"symbols":[],"media":[{"id":663673428243705856,"id_str":"663673428243705856","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"}]},"extended_entities":{"media":[{"id":663673428243705856,"id_str":"663673428243705856","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3lU8AA1J1Z.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673428256251904,"id_str":"663673428256251904","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd3oUYAA2_2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd3oUYAA2_2U.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673428646367232,"id_str":"663673428646367232","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd5FVEAA4gv9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd5FVEAA4gv9.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"},{"id":663673430277931010,"id_str":"663673430277931010","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXd_KUwAIcnz6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXd_KUwAIcnz6.jpg","url":"https:\/\/t.co\/8IjK8K3QSy","display_url":"pic.twitter.com\/8IjK8K3QSy","expanded_url":"http:\/\/twitter.com\/towano_ars\/status\/663673450255380480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663673450255380480,"source_status_id_str":"663673450255380480","source_user_id":941270058,"source_user_id_str":"941270058"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509989376,"id_str":"663727787509989376","text":"RT @stillhaz: 'Tipologie di fan'\n\n'L'incoerente'\n\nLei potrebbe pensare che Harry del 2010 e quello del 2015,siano persone diverse \n\n#4DaysU\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3418750035,"id_str":"3418750035","name":"\u00a4Niall\u00a4","screen_name":"StringimiN","location":null,"url":null,"description":"spesso il punto debole di una persona \u00e8 semplicemente un'altra persona @NiallOfficial","protected":false,"verified":false,"followers_count":632,"friends_count":756,"listed_count":7,"favourites_count":11830,"statuses_count":22240,"created_at":"Wed Aug 12 21:09:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663428596208373760\/68pdZ5_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663428596208373760\/68pdZ5_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3418750035\/1445872585","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:33 +0000 2015","id":663721591566675968,"id_str":"663721591566675968","text":"'Tipologie di fan'\n\n'L'incoerente'\n\nLei potrebbe pensare che Harry del 2010 e quello del 2015,siano persone diverse \n\n#4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2952791068,"id_str":"2952791068","name":"Sar;!\u273f","screen_name":"stillhaz","location":"larry is so cute \u0ad0","url":null,"description":"If you press the button 'follow' i promise i'll take you pizza","protected":false,"verified":false,"followers_count":4330,"friends_count":2921,"listed_count":2,"favourites_count":6955,"statuses_count":13182,"created_at":"Wed Dec 31 08:38:22 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661277528267583488\/bfOinOcX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661277528267583488\/bfOinOcX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2952791068\/1446495839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":10,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[118,134]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[132,140]}],"urls":[],"user_mentions":[{"screen_name":"stillhaz","name":"Sar;!\u273f","id":2952791068,"id_str":"2952791068","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787484712960,"id_str":"663727787484712960","text":"RT @1yGarQ2PIX0rDUy: \uc18c\ub77c\ub137 \ud558\ub0d0\uace0 \ubb3c\uc5b4\ubcf8\uac8c \uc545\uc758\uc801\uc778 \uc758\ub3c4..? \uc9c4\uc9dc\ub85c \uc18c\ub77c\ub137 \ud558\ub2c8..? https:\/\/t.co\/8oRB1f7JZh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385458542,"id_str":"385458542","name":"\uc2e0\uc138\ud55c\ud0c4\uc911\uc778 \ub85c\uadf8","screen_name":"INUhituji","location":null,"url":null,"description":"\uc0ac\ud37c\ub2c9 : \ube44\ub204\uc90d\ub294\uae4c\ubbf8\uc720","protected":false,"verified":false,"followers_count":13,"friends_count":35,"listed_count":0,"favourites_count":7,"statuses_count":718,"created_at":"Wed Oct 05 14:53:49 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653562799914815489\/V0wBvVjW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653562799914815489\/V0wBvVjW_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:31:42 +0000 2015","id":663589760284258304,"id_str":"663589760284258304","text":"\uc18c\ub77c\ub137 \ud558\ub0d0\uace0 \ubb3c\uc5b4\ubcf8\uac8c \uc545\uc758\uc801\uc778 \uc758\ub3c4..? \uc9c4\uc9dc\ub85c \uc18c\ub77c\ub137 \ud558\ub2c8..? https:\/\/t.co\/8oRB1f7JZh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4164821598,"id_str":"4164821598","name":"\uc18c\ub77c\ub137 \ud558\ub2c8....?","screen_name":"1yGarQ2PIX0rDUy","location":null,"url":null,"description":"\ucbe7\ucbe7","protected":false,"verified":false,"followers_count":235,"friends_count":18,"listed_count":3,"favourites_count":36,"statuses_count":395,"created_at":"Sun Nov 08 05:31:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663332092726525952\/S8HeHsxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663332092726525952\/S8HeHsxo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663538521777434624,"quoted_status_id_str":"663538521777434624","quoted_status":{"created_at":"Mon Nov 09 02:08:06 +0000 2015","id":663538521777434624,"id_str":"663538521777434624","text":"@rusoranetfollow \uba58\uc158(2) \uac10\uc0ac\uc758 \ub9c8\uc74c\uc73c\ub85c \ub9de\ud314\uc744 \ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uadf8\ub7f0\ub370 \uadc0 \uacc4\uc815\uc5d0\uc11c \uc545\uc758\uc801\uc778 \uc758\ub3c4\ub85c \uacf5\uc2dd \uacc4\uc815\uc5d0 \ub300\ud55c \ube44\ub09c \uc5ec\ub860\uc744 \ubaa8\uc544\uac00\ub824 \ud558\uc2dc\ub294 \uc810\uc5d0 \ub300\ud574 \uc720\uac10\uc2a4\ub7fd\uac8c \uc0dd\uac01\ud569\ub2c8\ub2e4. \uc880\ub354 \uc2e0\uc911\ud558\uc9c0 \ubabb\ud588\ub358 \ud2b8\uc717\uc9c0\uae30 \ub610\ud55c \ubc18\uc131\ud558\uba70,","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4138315281,"in_reply_to_user_id_str":"4138315281","in_reply_to_screen_name":"rusoranetfollow","user":{"id":167675883,"id_str":"167675883","name":"2000\uac00\uc9c0\ud589\ubcf5 \uc774\ucc9c\uc2dc","screen_name":"2000happy","location":"\uacbd\uae30\ub3c4 \uc774\ucc9c\uc2dc \ubd80\uc545\ub85c 40(\uc911\ub9ac\ub3d9, \uc774\ucc9c\uc2dc\uccad)","url":"http:\/\/blog.naver.com\/2000happy_","description":"\uc774\ucc9c\uc2dc\uccad \uacf5\uc2dd \ud2b8\uc704\ud130 @2000happy \uc785\ub2c8\ub2e4! \uc774\ucc9c\uc2dc\ubbfc\uacfc \ud2b8\uce5c\ub2d8\ub4e4\uc758 \ubaa9\uc18c\ub9ac\uc5d0 \uadc0 \uae30\uc6b8\uc785\ub2c8\ub2e4. \uc2e4\uc2dc\uac04 \ub9de\ud314\uc728 100%! \uc6b0\ub9ac \ud2b8\uce5c\ud574\uc694! \ud314\ub85c\ud658\uc601!","protected":false,"verified":false,"followers_count":13828,"friends_count":14962,"listed_count":97,"favourites_count":4,"statuses_count":4202,"created_at":"Sat Jul 17 05:38:33 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643342834083348480\/PF9psB8b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643342834083348480\/PF9psB8b.jpg","profile_background_tile":false,"profile_link_color":"F08378","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573309095677075456\/784MTM_F_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573309095677075456\/784MTM_F_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167675883\/1442211331","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rusoranetfollow","name":"\uc18c\ub77c\ub137\ud558\ub2c8...? (\uacc4\uc815\uc815\uc9c0\ub428)","id":4138315281,"id_str":"4138315281","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":true,"retweet_count":268,"favorite_count":12,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8oRB1f7JZh","expanded_url":"https:\/\/twitter.com\/2000happy\/status\/663538521777434624","display_url":"twitter.com\/2000happy\/stat\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8oRB1f7JZh","expanded_url":"https:\/\/twitter.com\/2000happy\/status\/663538521777434624","display_url":"twitter.com\/2000happy\/stat\u2026","indices":[59,82]}],"user_mentions":[{"screen_name":"1yGarQ2PIX0rDUy","name":"\uc18c\ub77c\ub137 \ud558\ub2c8....?","id":4164821598,"id_str":"4164821598","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080010659"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514073089,"id_str":"663727787514073089","text":"RT @_andBOY: 151107 Melon Music Awards #iKON #\uc544\uc774\ucf58 #DONGHYUK #\ub3d9\ud601 #\uae40\ub3d9\ud601\n\ub3d9\ud601\uc774 \uc5b4\ub514\uae4c\uc9c0 \uba4b\uc788\uc5b4\uc9c8\uaebc\uc57c \u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160 https:\/\/t.co\/vhZRmBcaWZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2370492792,"id_str":"2370492792","name":"CL]E~\u2661","screen_name":"ahn_gzbaby","location":"@chaelinCL -3- @Realtaeyang \u2661","url":null,"description":"370HSSV 0773H","protected":false,"verified":false,"followers_count":577,"friends_count":120,"listed_count":7,"favourites_count":26851,"statuses_count":10511,"created_at":"Mon Mar 03 14:26:55 +0000 2014","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552849999734644736\/nhFi25aU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552849999734644736\/nhFi25aU.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652840954001424384\/kGshicHD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652840954001424384\/kGshicHD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2370492792\/1444245814","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:25:13 +0000 2015","id":663693823655055360,"id_str":"663693823655055360","text":"151107 Melon Music Awards #iKON #\uc544\uc774\ucf58 #DONGHYUK #\ub3d9\ud601 #\uae40\ub3d9\ud601\n\ub3d9\ud601\uc774 \uc5b4\ub514\uae4c\uc9c0 \uba4b\uc788\uc5b4\uc9c8\uaebc\uc57c \u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160 https:\/\/t.co\/vhZRmBcaWZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3864277638,"id_str":"3864277638","name":"and BOY","screen_name":"_andBOY","location":null,"url":"https:\/\/www.youtube.com\/channel\/UC2m5FNQtHnk3HBKsUZDOInw","description":"iKON - do not edit & crop logo","protected":false,"verified":false,"followers_count":3527,"friends_count":7,"listed_count":80,"favourites_count":0,"statuses_count":123,"created_at":"Mon Oct 12 01:20:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"302727","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657570847591284736\/x-UcF9kA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657570847591284736\/x-UcF9kA.jpg","profile_background_tile":true,"profile_link_color":"5D4E4B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653512813265055744\/f01weQgc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653512813265055744\/f01weQgc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3864277638\/1444646157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":706,"favorite_count":344,"entities":{"hashtags":[{"text":"iKON","indices":[26,31]},{"text":"\uc544\uc774\ucf58","indices":[32,36]},{"text":"DONGHYUK","indices":[37,46]},{"text":"\ub3d9\ud601","indices":[47,50]},{"text":"\uae40\ub3d9\ud601","indices":[51,55]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663693822421962752,"id_str":"663693822421962752","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","url":"https:\/\/t.co\/vhZRmBcaWZ","display_url":"pic.twitter.com\/vhZRmBcaWZ","expanded_url":"http:\/\/twitter.com\/_andBOY\/status\/663693823655055360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663693822421962752,"id_str":"663693822421962752","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","url":"https:\/\/t.co\/vhZRmBcaWZ","display_url":"pic.twitter.com\/vhZRmBcaWZ","expanded_url":"http:\/\/twitter.com\/_andBOY\/status\/663693823655055360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iKON","indices":[39,44]},{"text":"\uc544\uc774\ucf58","indices":[45,49]},{"text":"DONGHYUK","indices":[50,59]},{"text":"\ub3d9\ud601","indices":[60,63]},{"text":"\uae40\ub3d9\ud601","indices":[64,68]}],"urls":[],"user_mentions":[{"screen_name":"_andBOY","name":"and BOY","id":3864277638,"id_str":"3864277638","indices":[3,11]}],"symbols":[],"media":[{"id":663693822421962752,"id_str":"663693822421962752","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","url":"https:\/\/t.co\/vhZRmBcaWZ","display_url":"pic.twitter.com\/vhZRmBcaWZ","expanded_url":"http:\/\/twitter.com\/_andBOY\/status\/663693823655055360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663693823655055360,"source_status_id_str":"663693823655055360","source_user_id":3864277638,"source_user_id_str":"3864277638"}]},"extended_entities":{"media":[{"id":663693822421962752,"id_str":"663693822421962752","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqA90VEAA7HRf.jpg","url":"https:\/\/t.co\/vhZRmBcaWZ","display_url":"pic.twitter.com\/vhZRmBcaWZ","expanded_url":"http:\/\/twitter.com\/_andBOY\/status\/663693823655055360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663693823655055360,"source_status_id_str":"663693823655055360","source_user_id":3864277638,"source_user_id_str":"3864277638"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480629248,"id_str":"663727787480629248","text":"@sex_is_you \u0447\u0442\u043e?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727610204168192,"in_reply_to_status_id_str":"663727610204168192","in_reply_to_user_id":3105292593,"in_reply_to_user_id_str":"3105292593","in_reply_to_screen_name":"sex_is_you","user":{"id":1852521055,"id_str":"1852521055","name":"\u0426\u0430\u0440\u044c \u0422\u043b\u0435\u043d\u2665\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u0430","screen_name":"mentally_ill","location":null,"url":"http:\/\/vk.com\/id150486044","description":"\u0420\u0435\u0431\u0435\u043d\u043e\u043a \u0421\u0430\u0442\u0430\u043d\u044b \u0441 \u043d\u0435\u0443\u0440\u0430\u0432\u043d\u043e\u0432\u0435\u0448\u0435\u043d\u043d\u043e\u0439 \u043f\u0441\u0438\u0445\u0438\u043a\u043e\u0439. \u0414\u0440\u0430\u0439\u0437\u0435\u0440. \u0411\u0438.\n04.04.15-\u041c\u0430\u0440\u0441\u044b.","protected":false,"verified":false,"followers_count":6559,"friends_count":5196,"listed_count":15,"favourites_count":9405,"statuses_count":65196,"created_at":"Tue Sep 10 20:59:40 +0000 2013","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1852521055\/1446355862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sex_is_you","name":"\u2020\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u2020\u2764\u0426\u0430\u0440\u044c\u0422\u043b\u0435\u043d","id":3105292593,"id_str":"3105292593","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501486080,"id_str":"663727787501486080","text":"Jordanian Policeman Fatally Shoots Three, Including Two Americans https:\/\/t.co\/bBYOKnoNDx","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446631589,"id_str":"446631589","name":"Dana Jones","screen_name":"DanaJones16","location":"USA","url":"http:\/\/www.mcsimonwrites.com\/the-weekly-thought\/","description":"Perhaps it is good to have a beautiful mind, but an even greater gift is to discover a beautiful heart. #LoveForever #kabbalah #F4F #Writing #Reading #books","protected":false,"verified":false,"followers_count":2513,"friends_count":2052,"listed_count":40,"favourites_count":42,"statuses_count":61115,"created_at":"Sun Dec 25 23:58:47 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1714405028\/Dietrich-Moravec-People-Faces-People-Women-Modern-Age-Photo-Realism_1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1714405028\/Dietrich-Moravec-People-Faces-People-Women-Modern-Age-Photo-Realism_1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446631589\/1424925846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bBYOKnoNDx","expanded_url":"http:\/\/dlvr.it\/ChffsX","display_url":"dlvr.it\/ChffsX","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501555712,"id_str":"663727787501555712","text":"We are looking for creatives\/brands\/companies to advertise in our exhibition brochure! We are already\u2026 https:\/\/t.co\/qx1Goe5uC2","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4030472837,"id_str":"4030472837","name":"ICE Exhibition","screen_name":"lcf_fashion_ice","location":"London College of Fashion","url":"http:\/\/lcf-ice.blogspot.co.uk","description":"Fashion Media students present ICE, a collaborative exhibition exploring themes of Interaction, Connection & Experience in a contemporary fashion media context.","protected":false,"verified":false,"followers_count":24,"friends_count":111,"listed_count":0,"favourites_count":6,"statuses_count":82,"created_at":"Sat Oct 24 09:05:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658360250559516673\/UtRr7zNX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658360250559516673\/UtRr7zNX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4030472837\/1445979208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qx1Goe5uC2","expanded_url":"https:\/\/instagram.com\/p\/91S4SHElyq\/","display_url":"instagram.com\/p\/91S4SHElyq\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787488972800,"id_str":"663727787488972800","text":"I liked a @YouTube video https:\/\/t.co\/Ib68LEXxmN World of Warcraft Legion: New Demon Hunter Class, and Illidan the Betrayer Is Back","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110856749,"id_str":"110856749","name":"Jose Lugo","screen_name":"JosephBlade","location":"New Jersey","url":"http:\/\/www.youtube.com\/user\/TheUnlimitedOne","description":"Sup everyone! You like comics, games & movies?! Me too! Click that follow button to be awesome! Also I got my own lil show on Youtube so check me out!","protected":false,"verified":false,"followers_count":116,"friends_count":85,"listed_count":4,"favourites_count":209,"statuses_count":8265,"created_at":"Wed Feb 03 00:32:32 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612736752\/zxwkcgy5e21tufjq26et.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612736752\/zxwkcgy5e21tufjq26et.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538223629386121216\/AbLzoiNm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538223629386121216\/AbLzoiNm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110856749\/1421850856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ib68LEXxmN","expanded_url":"http:\/\/youtu.be\/FMiOwzP5Hx8?a","display_url":"youtu.be\/FMiOwzP5Hx8?a","indices":[25,48]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[10,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010660"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514175488,"id_str":"663727787514175488","text":"#mybreakfast #MiDesayuno De Todas Las Ma\u00f1anas #ProteinShake El #Chia Aparte De Muy Bueno Para La\u2026 https:\/\/t.co\/kZ63VOcdP8","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3421564798,"id_str":"3421564798","name":"Monica Guzman","screen_name":"MonicaG93772989","location":"Sarasota, FL","url":"http:\/\/instagram.com\/Moni_L_Guzman","description":"Que Tu Limite Sea El Cielo Vive y Disfruta Tu Vida Al 100! May The Sky Be Your Limit Live and Enjoy Your Life To The Fullest! \u2661","protected":false,"verified":false,"followers_count":36,"friends_count":216,"listed_count":5,"favourites_count":591,"statuses_count":669,"created_at":"Fri Aug 14 03:38:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662031276841574400\/c6ZRzwR-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662031276841574400\/c6ZRzwR-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3421564798\/1444795033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mybreakfast","indices":[0,12]},{"text":"MiDesayuno","indices":[13,24]},{"text":"ProteinShake","indices":[46,59]},{"text":"Chia","indices":[63,68]}],"urls":[{"url":"https:\/\/t.co\/kZ63VOcdP8","expanded_url":"https:\/\/instagram.com\/p\/93iUP0jZDd\/","display_url":"instagram.com\/p\/93iUP0jZDd\/","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080010666"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787501449217,"id_str":"663727787501449217","text":"\u30aa\u30ef\u30bf\u3002\u30c1\u30a7\u30f3\u8ca0\u3051\u6295\u624borz","source":"\u003ca href=\"http:\/\/www.geocities.jp\/twicli\/\" rel=\"nofollow\"\u003etwicli\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126262075,"id_str":"126262075","name":"\uff08\u3059\u3057\u30fb\u03c9\u30fb\uff09\u30ce","screen_name":"sushiazarashi","location":"\u6a2a\u6d5c\u5e02\u3068\u5ddd\u5d0e\u5e02\u306e\u5883\u76ee","url":"http:\/\/ameblo.jp\/bayazarashi\/","description":"DB\u30b9\u30b3\u30a2\u901f\u5831 http:\/\/jbbs.livedoor.jp\/sports\/11553\/ \r\n\u30c4\u30a4\u30ad\u30e3\u30b9 http:\/\/twitcasting.tv\/sushiazarashi\/show\/\r\n\u30fb\u57fa\u672ctween\u3067\u3057\u304b\u898b\u306a\u3044\u306e\u3067\u3001\u30ea\u30d5\u30a9\u30ed\u30fc\u306f\u5fd8\u308c\u305f\u9803\u306b\u3084\u3063\u3066\u304d\u307e\u3059\r\n\u30fb\u8a66\u5408\u9014\u4e2d\u3067\u8ae6\u3081\u308b\u8f29\u306f\u8ad6\u5916\u306a\u306e\u3067\u304a\u5f15\u53d6\u308a\u4e0b\u3055\u3044","protected":false,"verified":false,"followers_count":718,"friends_count":344,"listed_count":41,"favourites_count":164,"statuses_count":77641,"created_at":"Thu Mar 25 08:45:20 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631356024402776066\/1Miq23I4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631356024402776066\/1Miq23I4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010663"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509846016,"id_str":"663727787509846016","text":"@aRX37Kx9qolgdzQ \n\n\u3064\u30fc\u304f\u3093\u304c\u60aa\u3044\u3093\u3084\u306a\u3044\u3093\u3088\uff1f\u307f\u3043\u306e\u6587\u7ae0\u80fd\u529b\u304c\u306a\u3044\u3060\u3051\u3054\u3081\u3093\u306d\uff1f\n\n\u03a3(,,\u00ba\u0394\u00ba,,*)\uff74\uff6f \u306a\u3093\u3067\u30c9\u30ad\u30e5\u30f3\u306a\u3063\u305f\u306e\uff1f\u6c17\u6301\u3061\u60aa\u304f\u3055\u305b\u305f\uff1f(*\uff1b\u03c9\u4eba)\uff7a\uff9e\uff92\uff9d\uff88...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725994805559296,"in_reply_to_status_id_str":"663725994805559296","in_reply_to_user_id":4111445054,"in_reply_to_user_id_str":"4111445054","in_reply_to_screen_name":"aRX37Kx9qolgdzQ","user":{"id":3786614720,"id_str":"3786614720","name":"\u2646(\u20d4 \u02f6\u02d8\u2022\u03c9\u2022\u02d8\u02f6Mii)\u20d5\u219d","screen_name":"mii_MiALove","location":null,"url":null,"description":"\u2741\u53ef\u611b\u3044\u306f\u6b63\u7fa9\u2741\u5973\u306e\u5b50\u78e8\u304d\u4e2d\u904e\u758e\uff71\uff86\uff92\u58f0\u306eCAS\u4e3b\u2741 \u2741\u597d\u304d\u21ddV\u7cfb.\uff8e\uff9e\uff76\uff9b.\uff8f\uff72\uff92\uff9b.\uff78\uff9b\uff90.\uff7a\uff7d\uff8c\uff9f\uff9a.\uff75\uff99\uff81\uff6c\uff9d\uff92\uff72\uff78.\uff83\uff9e\uff68\uff7d\uff9e\uff86\uff70.\u3046\u307e\u308b\u3061\u3083\u3093.\u304a\u7d75\u63cf\u304d.\u304a\u83d3\u5b50\u4f5c\u308a\u2661\u25df\u0306\u25de\u0306 \u2741 \u2741\u5b89\u5b9a\u3055\u3093\u21dd@mikaruncho\u25df\u0306\u25de\u0306 \u2741\u901a\u8a71\u5927\u597d\u304d\u5bdd\u843d\u3061\u901a\u8a71\u3057\u3088\uff1f\uff71\uff86\uff92\u58f0\u3060\u3051\u3069( \u0e51\u00b4\u8278\uff40 \u0e51) \u308e\u3089","protected":false,"verified":false,"followers_count":386,"friends_count":368,"listed_count":6,"favourites_count":4141,"statuses_count":4113,"created_at":"Mon Oct 05 00:38:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713398819938304\/ugMCDi-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713398819938304\/ugMCDi-Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3786614720\/1444477466","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aRX37Kx9qolgdzQ","name":"\u7d99","id":4111445054,"id_str":"4111445054","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787493060608,"id_str":"663727787493060608","text":"RT @soleil_510: \u677e\u2606RISH\u5b8c\u6210\u3057\u307e\u3057\u305f\uff01\uff01\u304a\u7c97\u672b\u3067\u3059\uff01\uff01\uff01\uff01\uff01 https:\/\/t.co\/3VRmFyRMdO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140406666,"id_str":"140406666","name":"\u8389\u7a7a@AGF7\u65e5FC\u7d44&\u30ab\u30d5\u30a7\u6c60\u888b22\u65e5","screen_name":"pionkae","location":"\u5f69\u306e\u56fd","url":"http:\/\/twpf.jp\/pionkae","description":"\u672a\u6210\u5e74\u3002\u540d\u524d\u306f\u308a\u3042\u3068\u8aad\u307f\u307e\u3059\u3002\u30c4\u30a4\u30d7\u30ed\u306f\u4e00\u5fdc\u76ee\u3092\u901a\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044\uff01BSR\/Fr!\/HQ!!\/ACTORS\/\u5200\u5263\u4e71\u821e\/\u3042\u3093\u30b9\u30bf\/pkmn\/Disney\/Ib\/\u9727\u96e8\/\u305d\u306e\u4ed6\u96d1\u98df\u3002\u6700\u8fd1\u306f\u6f14\u5287\u3068\u3042\u3093\u30b9\u30bf\u3068ACTORS\u3068Disney(TDL\uff65TDS)\u304c\u71b1\u3044\u3002\u3042\u3093\u30b9\u30bf\u771f\u7dd2\u3061\u3083\u3093\u30ec\u30aa\u304f\u3093\u308a\u3064\u307e\u304aLOVE\u3002\u68b6\u304f\u3093\u306b\u304a\u71b1\u3002","protected":false,"verified":false,"followers_count":544,"friends_count":850,"listed_count":14,"favourites_count":25557,"statuses_count":51097,"created_at":"Wed May 05 12:11:16 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650544276967784448\/0ZHpH7Pn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650544276967784448\/0ZHpH7Pn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140406666\/1441025860","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 11:27:41 +0000 2015","id":660055469365399552,"id_str":"660055469365399552","text":"\u677e\u2606RISH\u5b8c\u6210\u3057\u307e\u3057\u305f\uff01\uff01\u304a\u7c97\u672b\u3067\u3059\uff01\uff01\uff01\uff01\uff01 https:\/\/t.co\/3VRmFyRMdO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555029911,"id_str":"555029911","name":"\u5f69\u4f73","screen_name":"soleil_510","location":"\u30a2\u30db\u6bdb\u5728\u4f4f","url":null,"description":"\u4e0b\u54c1\u57a2\u261e@510_SMNT\/\u65e5\u5e38\uff82\uff72\uff70\uff84\/\u8150\u7d75\u63cf\u304d\/\u3046\u305f\u30d7\u30ea\/\u3042\u3093\u30b9\u30bf\/\u304a\u305d\u677e\u3055\u3093\/\u96d1\u98df\u3002\u4e0b\u30cd\u30bf\u5927\u597d\u304d \u3002\u4e00\u5341\u6728\/\u5b88\u6ca2\/\u9577\u7537\/\u57fa\u672c\u7bb1\u63a8\u3057\u3002\u30db\u30e2\u304a\u3044\u3057\u3044\uff01\uff01\uff01\uff01\u2642\u2642","protected":false,"verified":false,"followers_count":324,"friends_count":180,"listed_count":19,"favourites_count":16679,"statuses_count":56946,"created_at":"Mon Apr 16 10:42:21 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000102907363\/61c55874ff15223ad9b7a8c4c93ccfec.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000102907363\/61c55874ff15223ad9b7a8c4c93ccfec.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663304449054539776\/RgyUX_b5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663304449054539776\/RgyUX_b5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555029911\/1446573445","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5452,"favorite_count":7047,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660055466718851072,"id_str":"660055466718851072","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","url":"https:\/\/t.co\/3VRmFyRMdO","display_url":"pic.twitter.com\/3VRmFyRMdO","expanded_url":"http:\/\/twitter.com\/soleil_510\/status\/660055469365399552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660055466718851072,"id_str":"660055466718851072","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","url":"https:\/\/t.co\/3VRmFyRMdO","display_url":"pic.twitter.com\/3VRmFyRMdO","expanded_url":"http:\/\/twitter.com\/soleil_510\/status\/660055469365399552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soleil_510","name":"\u5f69\u4f73","id":555029911,"id_str":"555029911","indices":[3,14]}],"symbols":[],"media":[{"id":660055466718851072,"id_str":"660055466718851072","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","url":"https:\/\/t.co\/3VRmFyRMdO","display_url":"pic.twitter.com\/3VRmFyRMdO","expanded_url":"http:\/\/twitter.com\/soleil_510\/status\/660055469365399552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":660055469365399552,"source_status_id_str":"660055469365399552","source_user_id":555029911,"source_user_id_str":"555029911"}]},"extended_entities":{"media":[{"id":660055466718851072,"id_str":"660055466718851072","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSj88ynU8AAdkQi.jpg","url":"https:\/\/t.co\/3VRmFyRMdO","display_url":"pic.twitter.com\/3VRmFyRMdO","expanded_url":"http:\/\/twitter.com\/soleil_510\/status\/660055469365399552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":660055469365399552,"source_status_id_str":"660055469365399552","source_user_id":555029911,"source_user_id_str":"555029911"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010661"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787476443136,"id_str":"663727787476443136","text":"@GDeLaurentiis @WilliamsSonoma u siging in the midwest?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712852717535232,"in_reply_to_status_id_str":"663712852717535232","in_reply_to_user_id":20661539,"in_reply_to_user_id_str":"20661539","in_reply_to_screen_name":"GDeLaurentiis","user":{"id":193063286,"id_str":"193063286","name":"Dave","screen_name":"2012Allen2012","location":"USA","url":null,"description":"Live you life as if you might not be here next week.","protected":false,"verified":false,"followers_count":87,"friends_count":364,"listed_count":1,"favourites_count":345,"statuses_count":158,"created_at":"Mon Sep 20 21:50:44 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580922147708674048\/wopcQwij_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580922147708674048\/wopcQwij_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GDeLaurentiis","name":"Giada De Laurentiis","id":20661539,"id_str":"20661539","indices":[0,14]},{"screen_name":"WilliamsSonoma","name":"Williams-Sonoma","id":29247574,"id_str":"29247574","indices":[15,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010657"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509837824,"id_str":"663727787509837824","text":"RT @PINOY_QUOTES: Forever doesn't exist. Lifetime does.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216670246,"id_str":"216670246","name":"SamMilanKnows ","screen_name":"WlsnSmMln","location":"QUEZON CITY","url":"http:\/\/twitter.com\/#!\/sammyboy","description":"JNRS\/ Groovers For Christ\/ CollegeStudent\/ Future Broadcaster\/ Dancing is my profession praising God is my Passion","protected":false,"verified":false,"followers_count":490,"friends_count":551,"listed_count":1,"favourites_count":1573,"statuses_count":8215,"created_at":"Wed Nov 17 12:09:50 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"05202E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444509636608016384\/-1VV6qb4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444509636608016384\/-1VV6qb4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0B384D","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626029356607934464\/C9C6O9lt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626029356607934464\/C9C6O9lt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216670246\/1433019915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:06 +0000 2015","id":663723993380220928,"id_str":"663723993380220928","text":"Forever doesn't exist. Lifetime does.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279967425,"id_str":"279967425","name":"PINOY QUOTES","screen_name":"PINOY_QUOTES","location":"pinoyquotesofficial@gmail.com","url":null,"description":"I tweet things about life, love, relationships and more in 140 characters or less.","protected":false,"verified":false,"followers_count":2878723,"friends_count":615,"listed_count":2891,"favourites_count":845,"statuses_count":85698,"created_at":"Sun Apr 10 11:02:55 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568039909827440640\/des-9b49_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568039909827440640\/des-9b49_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279967425\/1401454573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":170,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PINOY_QUOTES","name":"PINOY QUOTES","id":279967425,"id_str":"279967425","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787480621058,"id_str":"663727787480621058","text":"But really \ud83d\ude2d\ud83d\ude02 https:\/\/t.co\/0HmUJ80qBQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":419724037,"id_str":"419724037","name":"Mikaela Marzak","screen_name":"mmarzak17","location":"Buffalo, NY","url":null,"description":"university at buffalo","protected":false,"verified":false,"followers_count":395,"friends_count":177,"listed_count":0,"favourites_count":4844,"statuses_count":4163,"created_at":"Wed Nov 23 18:16:45 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1B282E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662436040054071296\/wq895eiw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662436040054071296\/wq895eiw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/419724037\/1446858619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727783265308672,"id_str":"663727783265308672","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5v0WEAAg2AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5v0WEAAg2AA.jpg","url":"https:\/\/t.co\/0HmUJ80qBQ","display_url":"pic.twitter.com\/0HmUJ80qBQ","expanded_url":"http:\/\/twitter.com\/mmarzak17\/status\/663727787480621058\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727783265308672,"id_str":"663727783265308672","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5v0WEAAg2AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5v0WEAAg2AA.jpg","url":"https:\/\/t.co\/0HmUJ80qBQ","display_url":"pic.twitter.com\/0HmUJ80qBQ","expanded_url":"http:\/\/twitter.com\/mmarzak17\/status\/663727787480621058\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080010658"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787497271300,"id_str":"663727787497271300","text":"\u30e1\u30a4\u30c9\u300c\u304a\u5b22\u69d8\u3002\u5916\u51fa\u3055\u308c\u308b\u306e\u3067\u3057\u305f\u3089\u3001\u304a\u7740\u66ff\u3048\u3092\u300d\n\u6708\u5922\u674f\u300c\u3046\u3001\u3046\u3093\u2026\u305d\u3060\u306d\u2026\u300d\n\u3063\u3066\u306ao(\uff40v\u00b4 )o https:\/\/t.co\/9y9cZQ1Nvy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463990036,"id_str":"2463990036","name":"\u9ed2\u63d0\u7763(\u5982\u6708)","screen_name":"k33kisaragi","location":"\u7de8\u96c6\u90e8","url":"http:\/\/pixiv.me\/ssx4085","description":"\u30dc\u30ab\u30ed\uff06honeyworks\u597d\u304d\u3002\u5e73\u65e5\u4ed5\u4e8b\u3002\u30c4\u30a4\u30fc\u30c8\u306f\u30b0\u30e9\u30d6\u30eb\u6bd4\u7387\u591a\u3002\u8da3\u5473\u306f\u4e8c\u6b21\u5275\u4f5c\u6d3b\u52d5\uff01\u30ea\u30d7\u3055\u308c\u308b\u3068\u30ad\u30e7\u30c9\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":108,"friends_count":82,"listed_count":2,"favourites_count":417,"statuses_count":4572,"created_at":"Sat Apr 26 03:08:47 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663337053027831808\/roMnLm00_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663337053027831808\/roMnLm00_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463990036\/1441205527","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727782564773888,"id_str":"663727782564773888","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5tNUwAAtHxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5tNUwAAtHxc.jpg","url":"https:\/\/t.co\/9y9cZQ1Nvy","display_url":"pic.twitter.com\/9y9cZQ1Nvy","expanded_url":"http:\/\/twitter.com\/k33kisaragi\/status\/663727787497271300\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727782564773888,"id_str":"663727782564773888","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5tNUwAAtHxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5tNUwAAtHxc.jpg","url":"https:\/\/t.co\/9y9cZQ1Nvy","display_url":"pic.twitter.com\/9y9cZQ1Nvy","expanded_url":"http:\/\/twitter.com\/k33kisaragi\/status\/663727787497271300\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010662"} +{"delete":{"status":{"id":663610921600708609,"id_str":"663610921600708609","user_id":3187984788,"user_id_str":"3187984788"},"timestamp_ms":"1447080010939"}} +{"delete":{"status":{"id":663609654912663552,"id_str":"663609654912663552","user_id":113107849,"user_id_str":"113107849"},"timestamp_ms":"1447080010911"}} +{"delete":{"status":{"id":663594874181062656,"id_str":"663594874181062656","user_id":2811596171,"user_id_str":"2811596171"},"timestamp_ms":"1447080010952"}} +{"delete":{"status":{"id":659998514349547521,"id_str":"659998514349547521","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080011040"}} +{"delete":{"status":{"id":663727313553481728,"id_str":"663727313553481728","user_id":537377622,"user_id_str":"537377622"},"timestamp_ms":"1447080011154"}} +{"delete":{"status":{"id":576417712609488896,"id_str":"576417712609488896","user_id":1571077627,"user_id_str":"1571077627"},"timestamp_ms":"1447080011146"}} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787509833729,"id_str":"663727787509833729","text":"RT @nichlorine: \u0e17\u0e33\u0e44\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2b\u0e21\u0e31\u0e48\u0e19\u0e44\u0e2a\u0e49\u0e2e\u0e2d\u0e22\u0e2d\u0e35\u0e01\u0e25\u0e30 \u0e14\u0e39\u0e19\u0e32\u0e07\u0e22\u0e34\u0e49\u0e21\u0e43\u0e2b\u0e49\u0e1e\u0e35\u0e48\u0e1a\u0e4a\u0e2d\u0e1a \u0e2d\u0e35\u0e4b!!! #\u0e2a\u0e32\u0e27\u0e21\u0e32\u0e01\u0e25\u0e39\u0e01\u0e19\u0e38\u0e49\u0e07\u0e08\u0e39\u0e19\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2a\u0e38\u0e14\u0e46 #\u0e1a\u0e4a\u0e2d\u0e1a\u0e08\u0e38\u0e19 https:\/\/t.co\/BR8YGabDui","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946049789,"id_str":"2946049789","name":"\u0e08\u0e39\u0e19\u0e2b\u0e30\u0e40\u0e27\u0e4b","screen_name":"suwanniwet","location":"\u0e1a\u0e49\u0e32\u0e19","url":null,"description":"\u0e41\u0e07\u0e48\u0e21\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46","protected":false,"verified":false,"followers_count":47,"friends_count":418,"listed_count":0,"favourites_count":685,"statuses_count":6537,"created_at":"Sun Dec 28 07:59:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655669412549148672\/-suhT5V8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655669412549148672\/-suhT5V8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946049789\/1442216975","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 19 16:47:23 +0000 2015","id":656149656783613952,"id_str":"656149656783613952","text":"\u0e17\u0e33\u0e44\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2b\u0e21\u0e31\u0e48\u0e19\u0e44\u0e2a\u0e49\u0e2e\u0e2d\u0e22\u0e2d\u0e35\u0e01\u0e25\u0e30 \u0e14\u0e39\u0e19\u0e32\u0e07\u0e22\u0e34\u0e49\u0e21\u0e43\u0e2b\u0e49\u0e1e\u0e35\u0e48\u0e1a\u0e4a\u0e2d\u0e1a \u0e2d\u0e35\u0e4b!!! #\u0e2a\u0e32\u0e27\u0e21\u0e32\u0e01\u0e25\u0e39\u0e01\u0e19\u0e38\u0e49\u0e07\u0e08\u0e39\u0e19\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2a\u0e38\u0e14\u0e46 #\u0e1a\u0e4a\u0e2d\u0e1a\u0e08\u0e38\u0e19 https:\/\/t.co\/BR8YGabDui","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2922936276,"id_str":"2922936276","name":"\u0e2b\u0e21\u0e35\u0e1f\u0e23\u0e35\u0e41\u0e25\u0e19\u0e0b\u0e4c","screen_name":"nichlorine","location":null,"url":null,"description":"\u221e iKON\u2661 | 331 0207 1221 | JUNJIN | BOBBIN | JUNBIN | BOBJIN | \u0e08\u0e08\u0e1a\u0e1a | #\u0e17\u0e35\u0e21\u0e01\u0e49\u0e2d\u0e22\u0e14\u0e32\u0e27 | #\u0e17\u0e35\u0e21\u0e40\u0e02\u0e21\u0e34\u0e28\u0e19\u0e31\u0e19 \u221e","protected":false,"verified":false,"followers_count":10,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":288,"created_at":"Mon Dec 08 16:21:30 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659103997899313152\/Om84Phbf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659103997899313152\/Om84Phbf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2922936276\/1445288089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2a\u0e32\u0e27\u0e21\u0e32\u0e01\u0e25\u0e39\u0e01\u0e19\u0e38\u0e49\u0e07\u0e08\u0e39\u0e19\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2a\u0e38\u0e14\u0e46","indices":[54,80]},{"text":"\u0e1a\u0e4a\u0e2d\u0e1a\u0e08\u0e38\u0e19","indices":[81,89]}],"urls":[{"url":"https:\/\/t.co\/BR8YGabDui","expanded_url":"https:\/\/vine.co\/v\/eEVXL5z0DVp","display_url":"vine.co\/v\/eEVXL5z0DVp","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2a\u0e32\u0e27\u0e21\u0e32\u0e01\u0e25\u0e39\u0e01\u0e19\u0e38\u0e49\u0e07\u0e08\u0e39\u0e19\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e2a\u0e38\u0e14\u0e46","indices":[70,96]},{"text":"\u0e1a\u0e4a\u0e2d\u0e1a\u0e08\u0e38\u0e19","indices":[97,105]}],"urls":[{"url":"https:\/\/t.co\/BR8YGabDui","expanded_url":"https:\/\/vine.co\/v\/eEVXL5z0DVp","display_url":"vine.co\/v\/eEVXL5z0DVp","indices":[106,129]}],"user_mentions":[{"screen_name":"nichlorine","name":"\u0e2b\u0e21\u0e35\u0e1f\u0e23\u0e35\u0e41\u0e25\u0e19\u0e0b\u0e4c","id":2922936276,"id_str":"2922936276","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080010665"} +{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727787514003456,"id_str":"663727787514003456","text":"@ni_co25_t \u3048\u3001\u308f\u3056\u308f\u3056\u8131\u304c\u3057\u305f\u306e\uff1f\u5acc\u306a\u5144\u3055\u3093\u3060\u306a\u3041\u3001\u3048\u3078\u3078\u3058\u3083\u8a31\u3055\u306a\u3044\u305e\u301c\u3063\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716076400738304,"in_reply_to_status_id_str":"663716076400738304","in_reply_to_user_id":3142598545,"in_reply_to_user_id_str":"3142598545","in_reply_to_screen_name":"ni_co25_t","user":{"id":3875606354,"id_str":"3875606354","name":"\u30c8\u30c9\u677e","screen_name":"MATSU_fake","location":"\u304a\/\u305d\/\u677e\/\u3055\/\u3093","url":null,"description":"\u975e\u516c\u5f0fnr\/\u8150\u5922\u5bfe\u5fdc\/\u30ed\u30eb\u77ed\u301c\u4e2d\/DM\u968f\u6642\u89e3\u653e\/wiki\u3001\u30a2\u30cb\u30e1\/\u634f\u9020\u542b\/\u95a2\u4fc2\u4e0d\u8981\/\u80cc\u5f8c\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":209,"friends_count":148,"listed_count":13,"favourites_count":70,"statuses_count":753,"created_at":"Tue Oct 13 01:45:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660445457500344320\/O0wr_uuW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660445457500344320\/O0wr_uuW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3875606354\/1447075296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ni_co25_t","name":"\u30a4\u30b1\u30e1\u30f3\u306a\u5341\u56db\u677e\u304f\u3093\u2642@\u6c60\u677e","id":3142598545,"id_str":"3142598545","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080010666"} +{"delete":{"status":{"id":623808050365898752,"id_str":"623808050365898752","user_id":2228087984,"user_id_str":"2228087984"},"timestamp_ms":"1447080011206"}} +{"delete":{"status":{"id":663727779091992580,"id_str":"663727779091992580","user_id":3294189238,"user_id_str":"3294189238"},"timestamp_ms":"1447080011315"}} +{"delete":{"status":{"id":663255626290737152,"id_str":"663255626290737152","user_id":3888129432,"user_id_str":"3888129432"},"timestamp_ms":"1447080011486"}} +{"delete":{"status":{"id":486309558781235200,"id_str":"486309558781235200","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080011601"}} +{"delete":{"status":{"id":486294186636091393,"id_str":"486294186636091393","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080011601"}} +{"delete":{"status":{"id":649107894982561793,"id_str":"649107894982561793","user_id":3190869049,"user_id_str":"3190869049"},"timestamp_ms":"1447080011598"}} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791670747136,"id_str":"663727791670747136","text":"RT @qmzooise: \u3042\u306a\u305f\u306e\u7d50\u5a5a\u9069\u6b63\u5ea6\u306f\u4f55\u70b9\uff1f \n\n\u7d50\u5a5a\u306b\u9069\u3057\u3066\u308b\u304b\uff1f\n\u3042\u306a\u305f\u306b\u306f\u4f55\u304c\u8db3\u308a\u306a\u3044\u306e\u304b\u3082\u308f\u304b\u308b\u3088\uff01 \nhttps:\/\/t.co\/oxH5j5En6M","source":"\u003ca href=\"https:\/\/twitter.com\/bihadanoa\" rel=\"nofollow\"\u003ebihadano\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301546141,"id_str":"3301546141","name":"\u30ca\u30df\u306e\u30b9\u30ad\u30f3\u30b1\u30a2","screen_name":"naminosi","location":null,"url":null,"description":"nami\u3067\u3059\u3088\u308d\u3057\u304f\u300125\u6b73\u306e\u30c0\u30e1\u30c0\u30e1OL\u3002\u7f8e\u9b54\u5973\u76ee\u6307\u3057\u3066\u81ea\u5206\u78e8\u304d\u81ea\u5206\u78e8\u304d","protected":false,"verified":false,"followers_count":270,"friends_count":1852,"listed_count":0,"favourites_count":0,"statuses_count":1416,"created_at":"Thu Jul 30 12:43:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628102672642523136\/acqb4FQW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628102672642523136\/acqb4FQW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301546141\/1438586332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727761538703360,"id_str":"663727761538703360","text":"\u3042\u306a\u305f\u306e\u7d50\u5a5a\u9069\u6b63\u5ea6\u306f\u4f55\u70b9\uff1f \n\n\u7d50\u5a5a\u306b\u9069\u3057\u3066\u308b\u304b\uff1f\n\u3042\u306a\u305f\u306b\u306f\u4f55\u304c\u8db3\u308a\u306a\u3044\u306e\u304b\u3082\u308f\u304b\u308b\u3088\uff01 \nhttps:\/\/t.co\/oxH5j5En6M","source":"\u003ca href=\"https:\/\/twitter.com\/mumu12wq\" rel=\"nofollow\"\u003emomochi1q2q3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307750358,"id_str":"3307750358","name":"\u30dd\u30b8\u30c6\u30a3\u30d6\u306a\u751f\u304d\u65b9","screen_name":"qmzooise","location":null,"url":null,"description":"\u697d\u3057\u304f\u3001\u660e\u308b\u304f\u3001\u5143\u6c17\u304c\u30e2\u30c3\u30c8\u30fc\uff01\u50cd\u304f\u304a\u7236\u3055\u3093","protected":false,"verified":false,"followers_count":577,"friends_count":1659,"listed_count":1,"favourites_count":0,"statuses_count":556,"created_at":"Thu Aug 06 11:38:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629272837149192192\/aR-Ex_9t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629272837149192192\/aR-Ex_9t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307750358\/1438863211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oxH5j5En6M","expanded_url":"http:\/\/tw-no1.com\/cz\/deai","display_url":"tw-no1.com\/cz\/deai","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oxH5j5En6M","expanded_url":"http:\/\/tw-no1.com\/cz\/deai","display_url":"tw-no1.com\/cz\/deai","indices":[61,84]}],"user_mentions":[{"screen_name":"qmzooise","name":"\u30dd\u30b8\u30c6\u30a3\u30d6\u306a\u751f\u304d\u65b9","id":3307750358,"id_str":"3307750358","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011657"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791695912960,"id_str":"663727791695912960","text":"Si yo se que t\u00fa eres, y t\u00fa sabes que yo soy, qui\u00e9n va a saber quien soy yo cuando tu no est\u00e9s. #RT #FF","source":"\u003ca href=\"http:\/\/www.pktweet.com\" rel=\"nofollow\"\u003epktweet.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141013510,"id_str":"141013510","name":"Juan C Figueroa m","screen_name":"jfigueroaubv","location":"Caracas-Venezuela","url":"http:\/\/www.facebook.com\/jfigueroapcs","description":"Desarrollador web, http:\/\/proyectokamila.com ser humilde, comprometido con venezuela #UnaVidaPk","protected":false,"verified":false,"followers_count":1303,"friends_count":1342,"listed_count":61,"favourites_count":149,"statuses_count":32483,"created_at":"Thu May 06 23:47:45 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484091072021528577\/p6IFJeYE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484091072021528577\/p6IFJeYE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141013510\/1391575215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT","indices":[95,98]},{"text":"FF","indices":[99,102]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011663"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791695912961,"id_str":"663727791695912961","text":"#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646 \u0627\u0644\u062c\u0645\u0627\u0647\u064a\u0631 \u0627\u0644\u0627\u062f\u0631\u0646\u064a\u0629 \u062a\u0631\u062f\u062f \u0627\u0644\u0633\u0639\u0628 \u064a\u0631\u064a\u062f \u062a\u062d\u0631\u064a\u0631 \u0641\u0644\u0633\u0637\u064a\u0646 \u0639\u0644\u0649 \u0627\u0633\u0627\u0633 \u0627\u0646 \u0627\u0644\u0627\u0631\u062f\u0646 \u0645\u0627\u062f\u0629 \u0627\u0644\u064a\u062f \u0627\u0644\u0623\u062e\u0636\u0631 \u0644\u0641\u0644\u0633\u0637\u064a\u0646 \u0646\u0627\u0633 \u0639\u0644\u0649 \u0646\u064a\u0627\u062a\u0647\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636450099,"id_str":"636450099","name":"\u0645\u062d\u0628 \u064a\u0627\u0633\u0631 \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a+56","screen_name":"kazanova__305","location":null,"url":null,"description":"\u200f\u200f\u0644\u0627 \u062a\u062c\u0627\u062f\u0644\u0646\u064a \u0628\u064a\u0627\u0633\u0631 \u0644\u0623\u062c\u0644 \u0645\u0627\u0646\u062e\u0633\u0631 \u0628\u0639\u0636","protected":false,"verified":false,"followers_count":441,"friends_count":563,"listed_count":0,"favourites_count":45,"statuses_count":3295,"created_at":"Sun Jul 15 18:41:31 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514762970413289472\/1MtDl3Fy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514762970413289472\/1MtDl3Fy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636450099\/1395568119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080011663"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791700090881,"id_str":"663727791700090881","text":"Tenhle den chci po\u0159\u00e1d \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446377373,"id_str":"446377373","name":"Jana \u010capkov\u00e1","screen_name":"janina200","location":null,"url":null,"description":"14 y.o. Czech Republik, I love dance\nOne Direction forever","protected":false,"verified":false,"followers_count":23,"friends_count":27,"listed_count":1,"favourites_count":29,"statuses_count":93,"created_at":"Sun Dec 25 17:03:33 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"cs","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655359558379024385\/Wss_f3jL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655359558379024385\/Wss_f3jL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446377373\/1445106631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708495873,"id_str":"663727791708495873","text":"RT @piroposamor: Aun recuerdo aquellas miradas que me dec\u00edan que alg\u00fan d\u00eda \u00edbamos a estar juntos.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3388919343,"id_str":"3388919343","name":"\u2665Guaadaa\u2665","screen_name":"GuadaaDeeMgg","location":"San Miguel de Tucum\u00e1n","url":"http:\/\/www.GuaadaDeMg.Simplesite.com","description":"\u2661Guada\u2661\u2606Directioner\u262eAguasMandaYLoExtra\u00f1oMucho:c\u262e \u2655SeAcaboTodo:c\u2655\u2741HayQueHacerDeLoImposibleLoPosible\u2741\u2655Estado:Enamorada\u2655","protected":false,"verified":false,"followers_count":99,"friends_count":200,"listed_count":0,"favourites_count":472,"statuses_count":474,"created_at":"Thu Jul 23 10:47:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661412831477301249\/zEejkx6L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661412831477301249\/zEejkx6L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3388919343\/1446090659","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:14 +0000 2015","id":663727550607269892,"id_str":"663727550607269892","text":"Aun recuerdo aquellas miradas que me dec\u00edan que alg\u00fan d\u00eda \u00edbamos a estar juntos.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2178877351,"id_str":"2178877351","name":"Piropos Frases Amor","screen_name":"piroposamor","location":"Florida, USA","url":null,"description":"Frases Romanticas y Tweets para mandar a tu pareja, enamorarla y sorprenderla","protected":false,"verified":false,"followers_count":1758,"friends_count":5001,"listed_count":4,"favourites_count":1,"statuses_count":19969,"created_at":"Wed Nov 06 22:08:41 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660302752757604352\/cYXolcfY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660302752757604352\/cYXolcfY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2178877351\/1446263802","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"piroposamor","name":"Piropos Frases Amor","id":2178877351,"id_str":"2178877351","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791700094976,"id_str":"663727791700094976","text":"RT @roarulvestad: @junebre @faisal_hoque @FastCompany Sikkert \u00f8nsketenking \u00e5 kjenne seg igjen. Vi er rebeller med lesebriller.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348014692,"id_str":"348014692","name":"Faisal Hoque","screen_name":"faisal_hoque","location":"En Route","url":"http:\/\/faisalhoque.com","description":"#Entrepreneur @ http:\/\/shadoka.com | #Author, Everything Connects, Survive To Thrive | Contributor @FastCompany, @HuffingtonPost, @BusinessInsider","protected":false,"verified":false,"followers_count":54670,"friends_count":4155,"listed_count":677,"favourites_count":4156,"statuses_count":23749,"created_at":"Wed Aug 03 18:52:14 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E1E2E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615270540866007040\/ULAnEkIz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615270540866007040\/ULAnEkIz.png","profile_background_tile":false,"profile_link_color":"A11A1E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423982027696652288\/ubqILTXf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423982027696652288\/ubqILTXf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348014692\/1427559148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:20:59 +0000 2015","id":663707861265096704,"id_str":"663707861265096704","text":"@junebre @faisal_hoque @FastCompany Sikkert \u00f8nsketenking \u00e5 kjenne seg igjen. Vi er rebeller med lesebriller.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707240713617409,"in_reply_to_status_id_str":"663707240713617409","in_reply_to_user_id":577945979,"in_reply_to_user_id_str":"577945979","in_reply_to_screen_name":"roarulvestad","user":{"id":577945979,"id_str":"577945979","name":"Roar Ulvestad","screen_name":"roarulvestad","location":"Bergen","url":null,"description":"Lektor og tillitsvalgt Udf. Godheitstyrann og aldri kartlagt. Kultur et strategiar til \u00e5bit og frukost og rapar flytskjema etter dugurd","protected":false,"verified":false,"followers_count":2517,"friends_count":2465,"listed_count":36,"favourites_count":3709,"statuses_count":19410,"created_at":"Sat May 12 10:45:33 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"no","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660504243493691392\/8wtq0QXd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660504243493691392\/8wtq0QXd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577945979\/1445673118","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"2260fcb4a77f2bad","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2260fcb4a77f2bad.json","place_type":"city","name":"Bergen","full_name":"Bergen, Norway","country_code":"NO","country":"Norge","bounding_box":{"type":"Polygon","coordinates":[[[5.160270,60.184854],[5.160270,60.533545],[5.686685,60.533545],[5.686685,60.184854]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"junebre","name":"June M. Breivik","id":14290896,"id_str":"14290896","indices":[0,8]},{"screen_name":"faisal_hoque","name":"Faisal Hoque","id":348014692,"id_str":"348014692","indices":[9,22]},{"screen_name":"FastCompany","name":"Fast Company","id":2735591,"id_str":"2735591","indices":[23,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"no"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"roarulvestad","name":"Roar Ulvestad","id":577945979,"id_str":"577945979","indices":[3,16]},{"screen_name":"junebre","name":"June M. Breivik","id":14290896,"id_str":"14290896","indices":[18,26]},{"screen_name":"faisal_hoque","name":"Faisal Hoque","id":348014692,"id_str":"348014692","indices":[27,40]},{"screen_name":"FastCompany","name":"Fast Company","id":2735591,"id_str":"2735591","indices":[41,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"no","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674933248,"id_str":"663727791674933248","text":"RT @JelvinBEBO: La primera vez que te vi, honestamente no sab\u00eda que ibas a ser tan importante para m\u00ed. #JelvinBEBO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eApp Excelentes\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301831339,"id_str":"301831339","name":"50 Sombras De Grey","screen_name":"Las50Sombras_","location":"Maracay, Venezuela","url":"http:\/\/www.impactodehoy.net","description":"Cuenta dedicada a la novela Las 50 Sombras de Grey. Cuenta alterna @UnEroticoPoeta","protected":false,"verified":false,"followers_count":499136,"friends_count":183199,"listed_count":725,"favourites_count":7451,"statuses_count":24792,"created_at":"Fri May 20 04:13:12 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559855236118896640\/a8BEYcW6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559855236118896640\/a8BEYcW6.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559808511413354496\/549_UCui_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559808511413354496\/549_UCui_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301831339\/1422303783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 15:59:04 +0000 2015","id":660123764420513792,"id_str":"660123764420513792","text":"La primera vez que te vi, honestamente no sab\u00eda que ibas a ser tan importante para m\u00ed. #JelvinBEBO","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eTwitterNve24\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":740996630,"id_str":"740996630","name":"\u2122\u2661*\u0323\u0323\u0323\u0325J\u03b5lv\u03b9\u03b7*\u0323\u0323\u0323\u2661\u2122","screen_name":"JelvinBEBO","location":"Stgo ^_^ REP\u00daBLICA DOMINICANA","url":"http:\/\/bit.ly\/MIFACEB00K","description":"\u00bfQui\u00e9n soy? Yo mismo, \u00bfQui\u00e9n eres? La persona que se enamorar\u00e1 de mi personalidad de tan solo decirme ''HOLA''. WhatsApp\u2192[#MENSAJEDIRECTO]\nINSTAGRAM\u2192JelvinBEBO\u2122","protected":false,"verified":false,"followers_count":182770,"friends_count":101294,"listed_count":143,"favourites_count":524,"statuses_count":76856,"created_at":"Mon Aug 06 16:50:36 +0000 2012","utc_offset":-14400,"time_zone":"La Paz","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114609399\/c036fa85854adc5cfbdf95fbf970e093.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114609399\/c036fa85854adc5cfbdf95fbf970e093.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662207885921812480\/6p9VJ6b5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662207885921812480\/6p9VJ6b5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/740996630\/1431376439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":84,"entities":{"hashtags":[{"text":"JelvinBEBO","indices":[87,98]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JelvinBEBO","indices":[103,114]}],"urls":[],"user_mentions":[{"screen_name":"JelvinBEBO","name":"\u2122\u2661*\u0323\u0323\u0323\u0325J\u03b5lv\u03b9\u03b7*\u0323\u0323\u0323\u2661\u2122","id":740996630,"id_str":"740996630","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791704264704,"id_str":"663727791704264704","text":"okulda pestilim \u00e7\u0131kt\u0131 amk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":967588968,"id_str":"967588968","name":"melisa\u2727","screen_name":"Louisismineahah","location":"IG: melisaefilo\u011flu","url":"http:\/\/keepcalmandsessizol.tumblr.com\/","description":"did you stop loving me?","protected":false,"verified":false,"followers_count":3652,"friends_count":1082,"listed_count":6,"favourites_count":76,"statuses_count":26937,"created_at":"Sat Nov 24 08:11:06 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635063065889759232\/zFf8E1nm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635063065889759232\/zFf8E1nm.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"C6E2EE","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661925876934676480\/Ay6UMUPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661925876934676480\/Ay6UMUPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967588968\/1446651613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080011665"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708467200,"id_str":"663727791708467200","text":"Wind 5,0 km\/h NNW. Barometer 1006,2 mb, Falling slowly. Temperature 31,9 \u00b0C. Rain today 0,0 mm. Humidity 43%","source":"\u003ca href=\"http:\/\/sandaysoft.com\/\" rel=\"nofollow\"\u003eSandaysoft Cumulus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2961089986,"id_str":"2961089986","name":"Roque Entable","screen_name":"EntableRoque","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":49,"listed_count":3,"favourites_count":0,"statuses_count":70452,"created_at":"Sun Jan 04 22:27:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791670734848,"id_str":"663727791670734848","text":"#PushAwardsKathNiels https:\/\/t.co\/VLxaSeDFC6","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053364759,"id_str":"4053364759","name":"Crisnel Longino","screen_name":"kbdpftcris22","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":13,"listed_count":7,"favourites_count":4,"statuses_count":27517,"created_at":"Thu Oct 29 03:22:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659602764402593792\/_AUkQYuu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659602764402593792\/_AUkQYuu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663638255280197632,"quoted_status_id_str":"663638255280197632","quoted_status":{"created_at":"Mon Nov 09 08:44:24 +0000 2015","id":663638255280197632,"id_str":"663638255280197632","text":"kcbdjp04: mhyelle09: RT CHINAdorables: RT cristinamadria6: mhyelle09: RT kathnielghjkl: #PushAwardsKathNiels https:\/\/t.co\/8A2shlTWtR","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3944295614,"id_str":"3944295614","name":"RT link on bio pls","screen_name":"queenKXTHRYN","location":null,"url":null,"description":"https:\/\/twitter.com\/kbdpangel\/status\/655782290610491392","protected":false,"verified":false,"followers_count":18,"friends_count":2,"listed_count":14,"favourites_count":0,"statuses_count":47064,"created_at":"Mon Oct 19 06:49:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663601086486433792,"quoted_status_id_str":"663601086486433792","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[88,108]}],"urls":[{"url":"https:\/\/t.co\/8A2shlTWtR","expanded_url":"http:\/\/twitter.com\/HenryCapistran3\/status\/663614142197145600","display_url":"twitter.com\/HenryCapistran\u2026","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/VLxaSeDFC6","expanded_url":"http:\/\/twitter.com\/mhyelle09\/status\/663727647244029953","display_url":"twitter.com\/mhyelle09\/stat\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011657"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674929152,"id_str":"663727791674929152","text":"RT @SciencePorn: I don't know why, but this makes me feel better. https:\/\/t.co\/PPdYUUwneE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293398716,"id_str":"293398716","name":"Samuel Darias","screen_name":"darias91","location":"Tenerife","url":null,"description":null,"protected":false,"verified":false,"followers_count":80,"friends_count":134,"listed_count":1,"favourites_count":960,"statuses_count":3249,"created_at":"Thu May 05 08:41:43 +0000 2011","utc_offset":-3600,"time_zone":"Azores","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611101377234927616\/1oyW9FIk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611101377234927616\/1oyW9FIk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293398716\/1413896704","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:16:05 +0000 2015","id":663691527806443521,"id_str":"663691527806443521","text":"I don't know why, but this makes me feel better. https:\/\/t.co\/PPdYUUwneE","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":572225652,"id_str":"572225652","name":"SciencePorn","screen_name":"SciencePorn","location":"Alaska, Tellus, Milky Way","url":"http:\/\/scienceporn.xyz","description":"The Lighter Side of Science. #1 Science account on Vine, with more than 100,000,000 loops: http:\/\/www.vine.co\/humor Email: twitter@scienceporn.xyz","protected":false,"verified":false,"followers_count":1783091,"friends_count":3998,"listed_count":11067,"favourites_count":15195,"statuses_count":6888,"created_at":"Sat May 05 23:20:41 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113576181\/f9df41de66c0d657193b0802dfd4f378.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113576181\/f9df41de66c0d657193b0802dfd4f378.jpeg","profile_background_tile":true,"profile_link_color":"00A375","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639919791218647040\/yFVaYMFw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639919791218647040\/yFVaYMFw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572225652\/1435599551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1137,"favorite_count":1702,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663691526254567425,"id_str":"663691526254567425","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","url":"https:\/\/t.co\/PPdYUUwneE","display_url":"pic.twitter.com\/PPdYUUwneE","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663691527806443521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":960,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663691526254567425,"id_str":"663691526254567425","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","url":"https:\/\/t.co\/PPdYUUwneE","display_url":"pic.twitter.com\/PPdYUUwneE","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663691527806443521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":960,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SciencePorn","name":"SciencePorn","id":572225652,"id_str":"572225652","indices":[3,15]}],"symbols":[],"media":[{"id":663691526254567425,"id_str":"663691526254567425","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","url":"https:\/\/t.co\/PPdYUUwneE","display_url":"pic.twitter.com\/PPdYUUwneE","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663691527806443521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":960,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663691527806443521,"source_status_id_str":"663691527806443521","source_user_id":572225652,"source_user_id_str":"572225652"}]},"extended_entities":{"media":[{"id":663691526254567425,"id_str":"663691526254567425","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn7T7XIAEXZ5-.png","url":"https:\/\/t.co\/PPdYUUwneE","display_url":"pic.twitter.com\/PPdYUUwneE","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663691527806443521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":960,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663691527806443521,"source_status_id_str":"663691527806443521","source_user_id":572225652,"source_user_id_str":"572225652"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674957826,"id_str":"663727791674957826","text":"RT @LuucasBarceloss: Partiu #chupahugo https:\/\/t.co\/ZfjpVwXfX3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1607314554,"id_str":"1607314554","name":"Lucas Cardeal","screen_name":"lucascardeal7","location":"Rio de Janeiro, Brasil","url":null,"description":"Snap:lucasgcardeal","protected":false,"verified":false,"followers_count":267,"friends_count":445,"listed_count":0,"favourites_count":7507,"statuses_count":8429,"created_at":"Sat Jul 20 03:36:10 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472901771661430786\/og7RqH8L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472901771661430786\/og7RqH8L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607314554\/1434923840","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741909540864,"id_str":"663727741909540864","text":"Partiu #chupahugo https:\/\/t.co\/ZfjpVwXfX3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3410701948,"id_str":"3410701948","name":"Barcelos","screen_name":"LuucasBarceloss","location":"Bento Ribeiro, Rio de Janeiro","url":null,"description":"Snapchat : lucasbarcelos01","protected":false,"verified":false,"followers_count":249,"friends_count":371,"listed_count":0,"favourites_count":1039,"statuses_count":3901,"created_at":"Sun Aug 09 16:24:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661695491009355778\/BsAFyLKJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661695491009355778\/BsAFyLKJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3410701948\/1439141343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727577073385472,"quoted_status_id_str":"663727577073385472","quoted_status":{"created_at":"Mon Nov 09 14:39:20 +0000 2015","id":663727577073385472,"id_str":"663727577073385472","text":"J\u00e1 arrumei um amigo pra furar orelha cmg #chupahugo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1607314554,"id_str":"1607314554","name":"Lucas Cardeal","screen_name":"lucascardeal7","location":"Rio de Janeiro, Brasil","url":null,"description":"Snap:lucasgcardeal","protected":false,"verified":false,"followers_count":267,"friends_count":445,"listed_count":0,"favourites_count":7508,"statuses_count":8428,"created_at":"Sat Jul 20 03:36:10 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472901771661430786\/og7RqH8L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472901771661430786\/og7RqH8L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607314554\/1434923840","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"chupahugo","indices":[41,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"chupahugo","indices":[7,17]}],"urls":[{"url":"https:\/\/t.co\/ZfjpVwXfX3","expanded_url":"https:\/\/twitter.com\/lucascardeal7\/status\/663727577073385472","display_url":"twitter.com\/lucascardeal7\/\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"chupahugo","indices":[28,38]}],"urls":[{"url":"https:\/\/t.co\/ZfjpVwXfX3","expanded_url":"https:\/\/twitter.com\/lucascardeal7\/status\/663727577073385472","display_url":"twitter.com\/lucascardeal7\/\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"LuucasBarceloss","name":"Barcelos","id":3410701948,"id_str":"3410701948","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791704141824,"id_str":"663727791704141824","text":"RT @LOVEorCRAFT: \u7279\u6b8a\u90e8\u968a\u304c\u5168\u6ec5\u3059\u308b\u3000#\u7ffb\u8a33\u30e9\u30ce\u30d9\u306b\u3042\u308a\u304c\u3061\u306a\u3053\u3068","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115936516,"id_str":"115936516","name":"\u30ef\u30bf\u30f4\u30a7\u306e\u3057\u305f\u305f\u308a","screen_name":"watavve","location":"\u5553\u793a\u7a7a\u9593\u306e\u307b\u3068\u308a","url":"http:\/\/d.hatena.ne.jp\/watavve\/","description":"\uff33\uff26=\u30b9\u30b4\u30a4\u30d5\u30a3\u30af\u30b7\u30e7\u30f3[Sugoi Fiction]\u3068\u85e4\u5802\u30e6\u30ea\u30ab\u69d8\u306e\u3042\u308b\u66ae\u3089\u3057\u3002","protected":false,"verified":false,"followers_count":583,"friends_count":469,"listed_count":34,"favourites_count":11432,"statuses_count":19745,"created_at":"Sat Feb 20 14:18:16 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623464336124592128\/gX441aN0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623464336124592128\/gX441aN0.jpg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641916804634271747\/Uhw_k3Jq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641916804634271747\/Uhw_k3Jq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115936516\/1436107761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:27 +0000 2015","id":663725594551562240,"id_str":"663725594551562240","text":"\u7279\u6b8a\u90e8\u968a\u304c\u5168\u6ec5\u3059\u308b\u3000#\u7ffb\u8a33\u30e9\u30ce\u30d9\u306b\u3042\u308a\u304c\u3061\u306a\u3053\u3068","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122673996,"id_str":"122673996","name":"\u306d\u3053\u305f\u308d\u3046:C89\u6c34\u66dc\u65e5\u6771\u30e202b","screen_name":"LOVEorCRAFT","location":"\u6771\u4eac\u90fd\u4e16\u7530\u8c37\u533a","url":null,"description":"\u3068\u304d\u304a\u308a\u610f\u5473\u4e0d\u660e\u306a\u4e8b\u3092\u545f\u304d\u307e\u3059\u304c\u3001\u305f\u3044\u3066\u3044\u30af\u30c8\u30a5\u30eb\u30d5\u30cd\u30bf\u3067\u3059\u306e\u3067\u304a\u304d\u306b\u306a\u3055\u3089\u305a\u306b\u3002\u3042\u3068\u5fae\u5999\u306b\u3048\u3050\u3044\u4e0b\u30cd\u30bf\u3092\u305f\u307e\u306b\u545f\u304d\u307e\u3059\u306e\u3067\u6c17\u3092\u3064\u3051\u3066\uff01\nhttp:\/\/t.co\/DulDsWRuI5 http:\/\/t.co\/ppPE9iZ8ui\n\u307b\u3057\u3044\u3082\u306e\u30ea\u30b9\u30c8\u2193\nhttp:\/\/t.co\/CeoH7sQFLp","protected":false,"verified":false,"followers_count":487,"friends_count":609,"listed_count":26,"favourites_count":2540,"statuses_count":86838,"created_at":"Sat Mar 13 14:02:27 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/178149455\/tamaboy01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/178149455\/tamaboy01.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448778556051443712\/2ys632ut_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448778556051443712\/2ys632ut_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122673996\/1386937134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"\u7ffb\u8a33\u30e9\u30ce\u30d9\u306b\u3042\u308a\u304c\u3061\u306a\u3053\u3068","indices":[10,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7ffb\u8a33\u30e9\u30ce\u30d9\u306b\u3042\u308a\u304c\u3061\u306a\u3053\u3068","indices":[27,41]}],"urls":[],"user_mentions":[{"screen_name":"LOVEorCRAFT","name":"\u306d\u3053\u305f\u308d\u3046:C89\u6c34\u66dc\u65e5\u6771\u30e202b","id":122673996,"id_str":"122673996","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011665"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674892289,"id_str":"663727791674892289","text":"3 people followed me and one person unfollowed me \/\/ automatically checked by https:\/\/t.co\/5zurutiOHW","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":518618464,"id_str":"518618464","name":"\u0633\u0639\u064a\u062f \u0639\u0645\u064a\u0631 \u2661","screen_name":"saeed_s18","location":null,"url":null,"description":"\u2606 \u0637\u0628\u064a\u0628 \u0641\u064a \u0637\u0648\u0631 \u0627\u0644\u0646\u0645\u0648 | \u0627\u0644\u0645\u0633\u062a\u0648\u0649 \u0627\u0644\u0633\u0627\u062f\u0633 | \u0627\u062a\u062d\u0627\u062f\u064a \u0627\u0644\u0647\u0648\u0649 | \n \u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u064a \u0623\u0633\u0623\u0644\u0643 \u0627\u0644\u062c\u0646\u0629 \u0648\u0623\u0633\u062a\u062c\u064a\u0631 \u0628\u0643 \u0645\u0646 \u0627\u0644\u0646\u0627\u0631 \u2661~","protected":false,"verified":false,"followers_count":1245,"friends_count":1388,"listed_count":0,"favourites_count":44,"statuses_count":4595,"created_at":"Thu Mar 08 15:55:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639770628023697408\/iCf8eaxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639770628023697408\/iCf8eaxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/518618464\/1441368176","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5zurutiOHW","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791700123649,"id_str":"663727791700123649","text":"vividiva \u2606 guume pic.twitter.com\/8t9TR6q0f9163","source":"\u003ca href=\"http:\/\/emset.tk\" rel=\"nofollow\"\u003eEmset \u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291616562,"id_str":"3291616562","name":"Lock","screen_name":"bowassi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":12379,"created_at":"Sat Jul 25 02:19:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791683190784,"id_str":"663727791683190784","text":"\u660e\u65e5\u306e\u6388\u696d\u9811\u5f35\u308c\u3070\n\u3042\u3068\u306f\u8fb2\u696d\u796d\u306e\u6e96\u5099\u3060\ud83d\udcaa\n\u3067\u3082\u706b\u66dc\u65e5\u306e\u6642\u9593\u5272\u304d\u3089\u3044\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1086354554,"id_str":"1086354554","name":"H i n a k \u00f6","screen_name":"H__g28","location":"\u3048 \u30fc \u3061 \u3083 \u3093 \u3060 \u3044 \u3059 \u304d \u30de \u30f3 \u263a\ufe0e \u2661 ","url":"http:\/\/Instagram.com\/g_hina28","description":"\uffe4 Izunou Plant \uff13 \uffe4 \u5ca9 \u7530 \u525b \u5178 \uffe4next \u00bb \u9ce5\u53d6 \uffe4","protected":false,"verified":false,"followers_count":424,"friends_count":390,"listed_count":0,"favourites_count":6398,"statuses_count":13303,"created_at":"Sun Jan 13 15:03:38 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC4B92","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/787904631\/aa6684b84d286882a60099cbe553092d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/787904631\/aa6684b84d286882a60099cbe553092d.gif","profile_background_tile":true,"profile_link_color":"FF75BF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320098560565248\/4Fw7-vlF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320098560565248\/4Fw7-vlF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1086354554\/1445761551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011660"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691595777,"id_str":"663727791691595777","text":"KAT will have a tough one tonight against Horford (who is a mentor of sorts). Should be fun to watch.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913189038,"id_str":"913189038","name":"AJ Theo","screen_name":"TwolvesDaily","location":"Target Center, Minneapolis","url":"http:\/\/twolvesdaily.com\/","description":"Daily coverage of the Minnestoa Timberwolves.","protected":false,"verified":false,"followers_count":656,"friends_count":1008,"listed_count":26,"favourites_count":3922,"statuses_count":5440,"created_at":"Mon Oct 29 20:38:39 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145923231023104\/uQOAsmwh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145923231023104\/uQOAsmwh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913189038\/1414438974","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011662"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791670763520,"id_str":"663727791670763520","text":"@Nomusa_F lol! I'm over you shem \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\udc4b\ud83c\udffe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726136501927940,"in_reply_to_status_id_str":"663726136501927940","in_reply_to_user_id":3072493222,"in_reply_to_user_id_str":"3072493222","in_reply_to_screen_name":"Nomusa_F","user":{"id":163419868,"id_str":"163419868","name":"FlexUrban","screen_name":"_NhlanhlaM","location":"Joburg, South Africa","url":"http:\/\/flexurban.co.za","description":"God Fearing | Ne te quaesiveris extra | Employed by @FlexUrban | LFC | BIng Civil Eng, UJ | Document What I'm Becoming.... info@flexurban.co.za","protected":false,"verified":false,"followers_count":566,"friends_count":308,"listed_count":5,"favourites_count":458,"statuses_count":47517,"created_at":"Tue Jul 06 11:05:59 +0000 2010","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1513","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540000291337158656\/y18Ok5qz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540000291337158656\/y18Ok5qz.jpeg","profile_background_tile":true,"profile_link_color":"176DD6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661849416651956224\/9PXnqx8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661849416651956224\/9PXnqx8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163419868\/1446117589","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nomusa_F","name":"M U M U","id":3072493222,"id_str":"3072493222","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011657"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791699922944,"id_str":"663727791699922944","text":"focus on what's truly important. #selfreminder","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":45885654,"id_str":"45885654","name":"Jaimi","screen_name":"HeyJaimi","location":"\u2600\ufe0fL O S A N G E L E S\u2600\ufe0f","url":null,"description":"I'm more than your expectations.","protected":false,"verified":false,"followers_count":458,"friends_count":423,"listed_count":6,"favourites_count":4399,"statuses_count":19815,"created_at":"Tue Jun 09 17:14:05 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A121F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/842768965\/c11b178271cb3db17b4e3d46b6a32854.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/842768965\/c11b178271cb3db17b4e3d46b6a32854.jpeg","profile_background_tile":true,"profile_link_color":"DE1486","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"E0D8E6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639701152381059072\/VuzGdqRv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639701152381059072\/VuzGdqRv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/45885654\/1413771436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"selfreminder","indices":[33,46]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708336129,"id_str":"663727791708336129","text":"@negitoronet0000 \u3044\u3084\uff1f\u9055\u3046\u3051\u3069\uff1f(\u9707\u3048\u58f0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727691682594816,"in_reply_to_status_id_str":"663727691682594816","in_reply_to_user_id":1079531702,"in_reply_to_user_id_str":"1079531702","in_reply_to_screen_name":"negitoronet0000","user":{"id":2225005045,"id_str":"2225005045","name":"Nato@\u30c1\u30e5\u30a6\u30cb\u30ba\u30e0\u59cb\u3081\u307e\u3057\u305f","screen_name":"kotona1995","location":"\u535a\u591a\uff5e\u592a\u5bb0\u5e9c\u304f\u3089\u3044\u307e\u3067\u306e\u9593\u3067\u30a8\u30f3\u30ab\u30a6\u30f3\u30c8\u3059\u308b\u304a","url":null,"description":"\u5f71\u970a\u8863\u4f7f\u3063\u3066\u308b\u30c7\u30e5\u30a8\u30ea\u30b9\u30c8\u3067\u3059\u3001\u30a2\u30cb\u30e1\u3001\u30e9\u30ce\u30d9\u3001\u3086\u305a\u30bd\u30d5\u30c8\u3001\u30b5\u30ac\u30d7\u30e9\u3001\u30d1\u30ba\u30c9\u30e9\u3001\u30c7\u30ec\u30b9\u30c6\u3001\u767d\u732b\u3001\u9ed2\u30a6\u30a3\u30ba\u3001\u6a21\u5199\u3001\u304a\u7d75\u304b\u304d\u3001\u7d75\u63cf\u304d\u57a2\u2192@Mana_ekaki \u7d75\u63cf\u304d\u57a2\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u304f\u3060\u3055\u308c\u3070\u30a2\u30a4\u30b3\u30f3\u306a\u3069\u8af8\u3005\u63cf\u304d\u307e\u3059 pixiv\u2192http:\/\/touch.pixiv.net\/member.php","protected":false,"verified":false,"followers_count":369,"friends_count":306,"listed_count":5,"favourites_count":9935,"statuses_count":29142,"created_at":"Sun Dec 01 13:48:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"00D0FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533647379614806017\/hc6jCPTu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533647379614806017\/hc6jCPTu.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663638996434554880\/eqDeMa-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663638996434554880\/eqDeMa-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2225005045\/1446917302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"negitoronet0000","name":"\u3054\u3063\u3061","id":1079531702,"id_str":"1079531702","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708377088,"id_str":"663727791708377088","text":"@kaz28976 @XxH1d @torisun1210 \n\u307f\u3093\u306a\u76db\u5927\u306b\u6b7b\u306e\u3046\u305c\ud83c\udf7b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723435718148096,"in_reply_to_status_id_str":"663723435718148096","in_reply_to_user_id":1865787374,"in_reply_to_user_id_str":"1865787374","in_reply_to_screen_name":"kaz28976","user":{"id":565979153,"id_str":"565979153","name":"\u4e0e\u90a3\u56fd\u5841","screen_name":"4yckRui","location":null,"url":null,"description":"21\u6b73\u7a81\u5165\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":1133,"friends_count":838,"listed_count":4,"favourites_count":584,"statuses_count":13676,"created_at":"Sun Apr 29 04:33:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607134568827617280\/3CEt1V6F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607134568827617280\/3CEt1V6F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565979153\/1434190968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaz28976","name":"\u6771 \u9b41\u8f1d","id":1865787374,"id_str":"1865787374","indices":[0,9]},{"screen_name":"XxH1d","name":"karin","id":1145299068,"id_str":"1145299068","indices":[10,16]},{"screen_name":"torisun1210","name":"\u9ce5\u5c71 \u5927\u8f14","id":560323395,"id_str":"560323395","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791687397376,"id_str":"663727791687397376","text":"RT @asmah_5878: @nurhazitahassa1 @lovezarazya klu mkn angin nnti #tuananasmikael kembung perut lak dah x hensem hihi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3231497209,"id_str":"3231497209","name":"UmmiAima","screen_name":"UmmiAima","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":39,"friends_count":44,"listed_count":0,"favourites_count":9,"statuses_count":3114,"created_at":"Sun May 31 08:13:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604964963455627264\/kXdFd5R-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604964963455627264\/kXdFd5R-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3231497209\/1433069860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:05 +0000 2015","id":663724747218259970,"id_str":"663724747218259970","text":"@nurhazitahassa1 @lovezarazya klu mkn angin nnti #tuananasmikael kembung perut lak dah x hensem hihi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720885925232641,"in_reply_to_status_id_str":"663720885925232641","in_reply_to_user_id":2886369180,"in_reply_to_user_id_str":"2886369180","in_reply_to_screen_name":"asmah_5878","user":{"id":2886369180,"id_str":"2886369180","name":"Asmahmalik","screen_name":"asmah_5878","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":77,"friends_count":63,"listed_count":0,"favourites_count":7,"statuses_count":8116,"created_at":"Sat Nov 01 14:39:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"tuananasmikael","indices":[49,64]}],"urls":[],"user_mentions":[{"screen_name":"nurhazitahassa1","name":"nurhazita","id":2826599592,"id_str":"2826599592","indices":[0,16]},{"screen_name":"lovezarazya","name":"zara zya","id":235024765,"id_str":"235024765","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tuananasmikael","indices":[65,80]}],"urls":[],"user_mentions":[{"screen_name":"asmah_5878","name":"Asmahmalik","id":2886369180,"id_str":"2886369180","indices":[3,14]},{"screen_name":"nurhazitahassa1","name":"nurhazita","id":2826599592,"id_str":"2826599592","indices":[16,32]},{"screen_name":"lovezarazya","name":"zara zya","id":235024765,"id_str":"235024765","indices":[33,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080011661"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791695859712,"id_str":"663727791695859712","text":"stofrg: 9_A_6: almtorta18: Easy_Branches: almtorta18: simbata3: Easy_Branches: JDHM2015: almtorta18: almtorta18: a\u2026 https:\/\/t.co\/sKixv8Nxtv.","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558200840,"id_str":"1558200840","name":"BeyHive In France","screen_name":"BeyHiveInFrance","location":"w\/@GunsNCamelias","url":"http:\/\/ask.fm\/BeyHiveInFrance","description":"Toute l'actualit\u00e9 sur Beyonc\u00e9 Knowles en Direct","protected":false,"verified":false,"followers_count":2242,"friends_count":690,"listed_count":25,"favourites_count":2231,"statuses_count":601847,"created_at":"Sun Jun 30 14:52:55 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151854772\/ojzIdRHR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151854772\/ojzIdRHR.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466320784655675392\/3wPkLTLI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466320784655675392\/3wPkLTLI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558200840\/1400014574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sKixv8Nxtv","expanded_url":"http:\/\/bit.ly\/1GtPXeR","display_url":"bit.ly\/1GtPXeR","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080011663"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791695896576,"id_str":"663727791695896576","text":"\u041f\u041e\u0427\u0415\u041c\u0423 \u0411\u041b\u042f\u0422\u042c \u0412\u0421\u042f\u041a\u041e\u0415 \u041f\u041e\u0420\u041d\u041e \u0412 \u041b\u0415\u041d\u0422\u0415 \u0414\u041e\u041b\u0416\u041d\u041e \u041e\u0411\u042f\u0417\u0410\u0422\u0415\u041b\u042c\u041d\u041e \u0412\u042b\u0421\u0412\u0415\u0422\u0418\u0422\u042c\u0421\u042f, \u041a\u041e\u0413\u0414\u0410 \u0414\u0415\u0414\u0423\u0428\u041a\u0410 \u041a \u041c\u041e\u0415\u041c\u0423 \u0421\u0422\u041e\u041b\u0423 \u041f\u041e\u0414\u0425\u041e\u0414\u0418\u0422...\u041d\u0415 \u042f \u0412\u042b\u041b\u041e\u0416\u0418\u041b\u0410, \u041d\u041e \u0427\u0415\u0422 \u0421\u0422\u042b\u0414\u041d\u041e. \u0411\u041b\u042f\u0422\u042c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3030238385,"id_str":"3030238385","name":"\u2728 Holy Shit \u2728","screen_name":"KaterinaMakfin","location":"\u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439, \u0420\u043e\u0441\u0441\u0438\u044f","url":"https:\/\/vk.com\/id237085416","description":"\u2716 \u043e\u0447\u0435\u043d\u044c \u0441\u0442\u044b\u0434\u043d\u043e \u0437\u0430 \u0441\u0432\u043e\u0439 \u0442\u0432\u0438\u0442\u0442\u0435\u0440 \u2716 #AHS #2BG #HarryPotter #\u0432\u0437\u0430\u0438\u043c\u043d\u044b\u0439 #OITNB #TBBT #smiler #GossipGirl #\u041b\u0428 #TeenWolf #Friends\n\u0434\u0432\u0430 \u043f\u0430\u043b\u044c\u0446\u0430 \u0432 \u0440\u043e\u0442 \u0438 \u0436\u0438\u0440 \u043f\u0440\u043e\u0439\u0434\u0435\u0442","protected":false,"verified":false,"followers_count":296,"friends_count":221,"listed_count":0,"favourites_count":404,"statuses_count":1226,"created_at":"Wed Feb 11 12:50:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637542829720367105\/gWdHYRlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637542829720367105\/gWdHYRlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3030238385\/1441029317","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080011663"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791687405568,"id_str":"663727791687405568","text":"https:\/\/t.co\/pzwG2hqv3a","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132748614,"id_str":"132748614","name":"Second Chance Toys","screen_name":"SecondChanceToy","location":"In a neighborhood near you.","url":"http:\/\/www.secondchancetoys.org","description":"Charitable 501(c)3 Organization Keeping Plastic Toys Out of Landfills by Donating Them to Children in Need. Please Join Us in Helping Kids and the Environment.","protected":false,"verified":false,"followers_count":676,"friends_count":661,"listed_count":23,"favourites_count":272,"statuses_count":1589,"created_at":"Wed Apr 14 02:35:43 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516610525052940289\/6Ff3s5aw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516610525052940289\/6Ff3s5aw.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1560255177\/SCT-Logo-Color_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1560255177\/SCT-Logo-Color_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132748614\/1350954015","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pzwG2hqv3a","expanded_url":"http:\/\/fb.me\/71axXswtB","display_url":"fb.me\/71axXswtB","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011661"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691591680,"id_str":"663727791691591680","text":"\u97d3\u56fd\u30cd\u30c3\u30c8\u3088\u308a \u300c\u5b9a\u7fa9\u3057\u3066\u307f\u3088\u3046\u3002\u65e5\u672c\u306f\u30a2\u30b8\u30a2\u306e\u30c9\u30a4\u30c4\u3002\u6cd5\u3092\u9075\u5b88\u3057\u3001\u5e02\u6c11\u610f\u8b58\u3082\u304b\u306a\u308a\u9ad8\u3044\u3002\u97d3\u56fd\u306f\u30a2\u30b8\u30a2\u306e\u30a4\u30bf\u30ea\u30a2\u3002\u305b\u3063\u304b\u3061\u3067\u6cd5\u3084\u516c\u6a29\u529b\u304c\u5f31\u3044\u304b\u3089\u5e02\u6c11\u610f\u8b58\u3082\u6700\u60aa\u3002\u4e2d\u56fd\u306f\u30a2\u30b8\u30a2\u306e\u7c73\u56fd\u3002\u516c\u6a29\u529b\u306f\u76f8\u5f53\u5f37\u3044\u3051\u3069\u3001\u5e02\u6c11\u610f\u8b58\u306f\u4eba\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u30ab\u30aa\u30b9\u300d","source":"\u003ca href=\"http:\/\/mixi.jp\/promotion.pl?id=voice_twitter\" rel=\"nofollow\"\u003e mixi\u30dc\u30a4\u30b9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139442385,"id_str":"139442385","name":"\u732b\u4e38\u2606","screen_name":"tytyia","location":"\u9ce5\u53d6\u770c\u7c73\u5b50\u5e02","url":"http:\/\/blog.zige.jp\/nyantophotography2\/","description":"\u65b0\u751fFF14\u306b\u53c2\u52a0\u4e2d\u3067\u3059\n\u3042\u307e\u308a\u3064\u3076\u3084\u304b\u306a\u3044\u3051\u3069\u3088\u308d\u3057\u304f\u3067\u3059","protected":false,"verified":false,"followers_count":125,"friends_count":248,"listed_count":10,"favourites_count":7,"statuses_count":3329,"created_at":"Sun May 02 16:36:43 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/103184878\/Tyt070610125050ass.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/103184878\/Tyt070610125050ass.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000063472143\/ce1f3f165ae85bd495b9d58088a78bfc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000063472143\/ce1f3f165ae85bd495b9d58088a78bfc_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011662"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708336128,"id_str":"663727791708336128","text":"@kazuri0617\n\u5206\u304b\u308a\u307e\u3057\u305f\uff01\n\u79c1\u306f\u305f\u3082\u3063\u3066\u547c\u3093\u3067\u304f\u3060\u3055\u3044\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663001962263089152,"in_reply_to_status_id_str":"663001962263089152","in_reply_to_user_id":3230787240,"in_reply_to_user_id_str":"3230787240","in_reply_to_screen_name":"kazuri0617","user":{"id":2889564140,"id_str":"2889564140","name":"\u305f\u3082","screen_name":"arashi_tamo","location":null,"url":null,"description":"\u798f\u5ca1\u306e\u9ad8\u68211\u5e74\u300299(00)line\u3002 ARASHIANS\u2661\/\/\u7fd4\u304f\u3093\u3088\u308a\u306eall\/\/\u30dd\u30c3\u30d7\u9b42\u30fb\u30c7\u30b8\u9b42\u53c2\u6226\u6e08\u21e8Japonism12\/18\u53c2\u6226\/\/ARASHIANS\u306e\u65b9\u3005\u3068\u3064\u306a\u304c\u308a\u305f\u3044\u3067\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":382,"friends_count":419,"listed_count":5,"favourites_count":1174,"statuses_count":1670,"created_at":"Tue Nov 04 09:33:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565309716432424962\/OJwxZbwF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565309716432424962\/OJwxZbwF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2889564140\/1423835878","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kazuri0617","name":"\u304b \u305a \u308a(\u667a\u304f\u3093HBD\u30a2\u30a4\u30b3\u30f3)","id":3230787240,"id_str":"3230787240","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691575296,"id_str":"663727791691575296","text":"red gray red gray \ud83e\udd14","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1333019118,"id_str":"1333019118","name":"monica camara","screen_name":"ragustazea","location":null,"url":"https:\/\/Instagram.com\/monicadidwhat\/","description":"she designed a life she loved","protected":false,"verified":false,"followers_count":254,"friends_count":356,"listed_count":2,"favourites_count":4974,"statuses_count":10921,"created_at":"Sun Apr 07 03:12:11 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0F5F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/839622161\/2e2aa96ee087e57d71c7edd03c89cecc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/839622161\/2e2aa96ee087e57d71c7edd03c89cecc.png","profile_background_tile":true,"profile_link_color":"FF525F","profile_sidebar_border_color":"FFFFA1","profile_sidebar_fill_color":"FFC05F","profile_text_color":"FF8F5F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645539211957768192\/uvaRJtqh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645539211957768192\/uvaRJtqh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1333019118\/1428035151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011662"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791699918849,"id_str":"663727791699918849","text":"RT @thestylespics: https:\/\/t.co\/QjSkc5umVM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2294195330,"id_str":"2294195330","name":"Jagriti","screen_name":"jagriti__","location":"Kolkata, India","url":null,"description":"ArSha in my \u2764 forever | 1D AF | Harry Styles is love \u2764 Enough said \u270c","protected":false,"verified":false,"followers_count":124,"friends_count":36,"listed_count":3,"favourites_count":3813,"statuses_count":7130,"created_at":"Thu Jan 16 09:59:09 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661001165732114432\/wpH4Sqbn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661001165732114432\/wpH4Sqbn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2294195330\/1446440266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:09:59 +0000 2015","id":663388002211790848,"id_str":"663388002211790848","text":"https:\/\/t.co\/QjSkc5umVM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2375771978,"id_str":"2375771978","name":"best harry pics","screen_name":"thestylespics","location":"main: @walkinthwinds","url":null,"description":"your daily dose of pictures, gifs and videos of harry. enjoy! x","protected":false,"verified":false,"followers_count":232786,"friends_count":2,"listed_count":1042,"favourites_count":1106,"statuses_count":11540,"created_at":"Thu Mar 06 18:53:59 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661618107606294528\/VEnwze9b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661618107606294528\/VEnwze9b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2375771978\/1445893930","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":967,"favorite_count":1547,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663388000240467969,"id_str":"663388000240467969","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","url":"https:\/\/t.co\/QjSkc5umVM","display_url":"pic.twitter.com\/QjSkc5umVM","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663388002211790848\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663388000240467969,"id_str":"663388000240467969","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","url":"https:\/\/t.co\/QjSkc5umVM","display_url":"pic.twitter.com\/QjSkc5umVM","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663388002211790848\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTT3xaXAAEikn5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thestylespics","name":"best harry pics","id":2375771978,"id_str":"2375771978","indices":[3,17]}],"symbols":[],"media":[{"id":663388000240467969,"id_str":"663388000240467969","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","url":"https:\/\/t.co\/QjSkc5umVM","display_url":"pic.twitter.com\/QjSkc5umVM","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663388002211790848\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}},"source_status_id":663388002211790848,"source_status_id_str":"663388002211790848","source_user_id":2375771978,"source_user_id_str":"2375771978"}]},"extended_entities":{"media":[{"id":663388000240467969,"id_str":"663388000240467969","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTT3xaXAAEikn5.png","url":"https:\/\/t.co\/QjSkc5umVM","display_url":"pic.twitter.com\/QjSkc5umVM","expanded_url":"http:\/\/twitter.com\/thestylespics\/status\/663388002211790848\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}},"source_status_id":663388002211790848,"source_status_id_str":"663388002211790848","source_user_id":2375771978,"source_user_id_str":"2375771978","video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTT3xaXAAEikn5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791700123648,"id_str":"663727791700123648","text":"@catsuka cc @Lcs_Drpr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712109012910080,"in_reply_to_status_id_str":"663712109012910080","in_reply_to_user_id":40436619,"in_reply_to_user_id_str":"40436619","in_reply_to_screen_name":"catsuka","user":{"id":25802247,"id_str":"25802247","name":"Clichette","screen_name":"RymKh","location":"Made in terre damn\u00e9e","url":null,"description":"\u00ab \u2014 Mais alors, que dois-je devenir ? \u2014 Un Curieux. \u2014 Ce n\u2019est pas un m\u00e9tier. \u2014 Ce n\u2019est pas encore un m\u00e9tier. \u00bb","protected":false,"verified":false,"followers_count":2011,"friends_count":414,"listed_count":45,"favourites_count":1348,"statuses_count":35580,"created_at":"Sun Mar 22 09:51:13 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000054840287\/7d0e89bdbfe4f5bf579536342998b7b7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000054840287\/7d0e89bdbfe4f5bf579536342998b7b7.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3411360434\/f40120cf3a6780d09234e42c41b37fe2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3411360434\/f40120cf3a6780d09234e42c41b37fe2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25802247\/1423061541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"catsuka","name":"Catsuka","id":40436619,"id_str":"40436619","indices":[0,8]},{"screen_name":"Lcs_Drpr","name":"Da Lemur","id":59262814,"id_str":"59262814","indices":[12,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791704162304,"id_str":"663727791704162304","text":"It's like taking a guess when the only answer is yes","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557441306,"id_str":"557441306","name":"Jin","screen_name":"Jankarlreyes","location":null,"url":"http:\/\/facebook.com\/jankarlreyes","description":"With great power comes great responsibility","protected":false,"verified":false,"followers_count":698,"friends_count":493,"listed_count":1,"favourites_count":4240,"statuses_count":19858,"created_at":"Thu Apr 19 05:10:43 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D49528","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/818373050\/0a5c5d8e8c0a75c9d0d5f65dae585a4f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/818373050\/0a5c5d8e8c0a75c9d0d5f65dae585a4f.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655305328381136896\/D4o4N3il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655305328381136896\/D4o4N3il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557441306\/1447077717","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011665"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791708377089,"id_str":"663727791708377089","text":"@ConnectikTech not yet supposed to be Tuesday","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724850658209792,"in_reply_to_status_id_str":"663724850658209792","in_reply_to_user_id":24087244,"in_reply_to_user_id_str":"24087244","in_reply_to_screen_name":"ConnectikTech","user":{"id":94928029,"id_str":"94928029","name":"Roottap","screen_name":"roottap","location":"Colorado Springs, CO","url":"https:\/\/instagram.com\/roottap\/","description":"Marine Corps and Army Vet, A love for Hard Rock. Posts on Music, MMA, Gaming, current events and anything interesting","protected":false,"verified":false,"followers_count":897,"friends_count":854,"listed_count":13,"favourites_count":6832,"statuses_count":5387,"created_at":"Sun Dec 06 03:48:09 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657649242421379073\/_criR_Xb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657649242421379073\/_criR_Xb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94928029\/1432593776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ConnectikTech","name":"Connectik","id":24087244,"id_str":"24087244","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011666"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791704285184,"id_str":"663727791704285184","text":"almost 5'5 https:\/\/t.co\/N8cUnN3BVg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571196742,"id_str":"571196742","name":"najmah","screen_name":"lordelarkskin","location":"(828)","url":"http:\/\/seventhlifepath.com","description":"you'll never ever fade.. \u2022 are you ready?","protected":false,"verified":false,"followers_count":1671,"friends_count":1473,"listed_count":3,"favourites_count":20276,"statuses_count":79890,"created_at":"Fri May 04 20:08:32 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DFF2E2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033149681\/dce7f4eb17a99dd5042c29a0e899246b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033149681\/dce7f4eb17a99dd5042c29a0e899246b.png","profile_background_tile":true,"profile_link_color":"8B998D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663438431335415809\/aaVRkcSe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663438431335415809\/aaVRkcSe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571196742\/1446994894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663716941023059968,"quoted_status_id_str":"663716941023059968","quoted_status":{"created_at":"Mon Nov 09 13:57:04 +0000 2015","id":663716941023059968,"id_str":"663716941023059968","text":"3. How tall are you?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34684072,"id_str":"34684072","name":"SaltInMyBeard","screen_name":"IkeMagnifico","location":null,"url":null,"description":"Mostly positive, sometimes angry, but always understanding. Just don't raise your voice and there won't be any problems. IG: IkeMagnifico","protected":false,"verified":false,"followers_count":1936,"friends_count":1629,"listed_count":36,"favourites_count":39,"statuses_count":176351,"created_at":"Thu Apr 23 18:16:05 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000050927742\/3fe837bc75bf4e0fd20d22439563afb3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000050927742\/3fe837bc75bf4e0fd20d22439563afb3.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647478106786238465\/D1ckDOUa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647478106786238465\/D1ckDOUa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34684072\/1398362757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N8cUnN3BVg","expanded_url":"https:\/\/twitter.com\/ikemagnifico\/status\/663716941023059968","display_url":"twitter.com\/ikemagnifico\/s\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011665"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674957825,"id_str":"663727791674957825","text":"Comenzamos la semana en 3N , reserva tu cita y c\u00e1mbiale la textura a tu pelo creando un #estilo personal.... https:\/\/t.co\/zBNDlYfDdF","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897259646,"id_str":"2897259646","name":"3N Peluquer\u00eda","screen_name":"3npeluqueria","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":70,"listed_count":1,"favourites_count":0,"statuses_count":114,"created_at":"Sat Nov 29 11:21:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538654157435973632\/W2BJtPt0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538654157435973632\/W2BJtPt0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"estilo","indices":[88,95]}],"urls":[{"url":"https:\/\/t.co\/zBNDlYfDdF","expanded_url":"http:\/\/fb.me\/3rQo1bItQ","display_url":"fb.me\/3rQo1bItQ","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674892288,"id_str":"663727791674892288","text":"Cada vez que estoy en el curso pienso que x personas tienen menos de 2 a\u00f1os","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466881217,"id_str":"466881217","name":"\u2600\ufe0fmery sun\u2600\ufe0f","screen_name":"SNegramotnov","location":"adrogue","url":null,"description":null,"protected":false,"verified":false,"followers_count":1354,"friends_count":1293,"listed_count":1,"favourites_count":20816,"statuses_count":39189,"created_at":"Tue Jan 17 22:04:08 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5E905","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/871114246\/c03bf385c0ab35cbd26057d6db8a9ddd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/871114246\/c03bf385c0ab35cbd26057d6db8a9ddd.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D608D6","profile_text_color":"D503F5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654386129320456192\/xhjyjTHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654386129320456192\/xhjyjTHU_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791670607872,"id_str":"663727791670607872","text":"@LDH_EgRyo \u30da\u30fc\u30ed\u30f3\u3063\u3066\u6253\u3063\u305f\u3064\u3082\u308a\u3084\u3063\u305f\uff08\u7b11\uff09\uff08\u7b11\uff09\uff08\u7b11\uff09\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724630427828224,"in_reply_to_status_id_str":"663724630427828224","in_reply_to_user_id":1590738571,"in_reply_to_user_id_str":"1590738571","in_reply_to_screen_name":"LDH_EgRyo","user":{"id":2429911963,"id_str":"2429911963","name":"\uff2barin","screen_name":"aaakairo","location":"\u3072\u308d\u3084\u304f\u3093","url":null,"description":"\u6851\u5317\u2475\u306d\u3093 AAA\uff0fEight\uff0f\u6cf3\u3050\u3053\u3068 @karicoro02 \u30b5\u30d6","protected":false,"verified":false,"followers_count":284,"friends_count":262,"listed_count":0,"favourites_count":6711,"statuses_count":9285,"created_at":"Sun Apr 06 04:53:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653734152672382976\/hkD1jofl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653734152672382976\/hkD1jofl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2429911963\/1444697447","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LDH_EgRyo","name":"\u308a\u3087\u3046_18","id":1590738571,"id_str":"1590738571","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011657"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674757124,"id_str":"663727791674757124","text":"@Free_Luka_Ha \ub9e4\uc77c\ub9e4\uc77c\uc774 \uc9c0\ub8e8\ud558\uae34 \ud558\uc9c0\ub9cc \uadf8\ubfd0\uc774\ub2c8\uae4c\uc694! \u314e\u3141\u314e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727395367587840,"in_reply_to_status_id_str":"663727395367587840","in_reply_to_user_id":3249616452,"in_reply_to_user_id_str":"3249616452","in_reply_to_screen_name":"Free_Luka_Ha","user":{"id":1044813271,"id_str":"1044813271","name":"\uac8c\uc0b4\ud53c\uc790","screen_name":"dhflrn_2","location":"\uc5ec\uae34 \ub204\uad6c \ub09c \uc5b4\ub514","url":null,"description":"\uc778\uc0dd \ucc38 \ud53c\uace4\ud558\uac8c \uc0ac\ub294 \uace0\uc0bc. \uc2ec\uc2ec\ud55c \uace0\uc0bc. \ubc1c\ub9ac\uc1a1 \uc0dd\ucd08\ubcf4\uc785\ub2c8\ub2e4, \ub610 \ub0b4\uac00 \ubb58 \uc88b\uc544\ud558\ub354\ub77c. \uc5b4. \uc5b4\uc5b4...\uc790\ub294 \uac70 \uc88b\uc544\ud569\ub2c8\ub2e4(?) \ub9de\ud314\uc740 \uba58\uc158\uc8fc\uc138\uc5ec","protected":false,"verified":false,"followers_count":107,"friends_count":145,"listed_count":0,"favourites_count":146,"statuses_count":33538,"created_at":"Sat Dec 29 13:06:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663390631612452864\/xwGQ62S2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663390631612452864\/xwGQ62S2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Free_Luka_Ha","name":"\ub8e8\uce74","id":3249616452,"id_str":"3249616452","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791699918848,"id_str":"663727791699918848","text":"@yjhfyuigy \n\uff3c\u3053\u306e\u5b50\u591c\u884c\u6027\u3060\u308f!!!!!\uff0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727201301299200,"in_reply_to_status_id_str":"663727201301299200","in_reply_to_user_id":3888919512,"in_reply_to_user_id_str":"3888919512","in_reply_to_screen_name":"yjhfyuigy","user":{"id":474642740,"id_str":"474642740","name":"\u306a\u306a\u307f","screen_name":"nyagiru8926","location":"\u5357\u306e\u5cf6","url":null,"description":"\u3066\u306b\u307f\u3085\u3042\u306b\u3081\u304a\u308f\u3089\u3044\u597d\u304d\u3067\u3059(*\u00b4\u03c9\uff40*)\u6d0b\u753b\u3068\u6d77\u5916\u30c9\u30e9\u30de\u3082\u597d\u304d\u3067\u3059!!\u97f3\u697d\u306f\u307b\u307c\u30aa\u30fc\u30eb\u30b8\u30e3\u30f3\u30eb\uff01\u6700\u8fd1\u306f\u6d0b\u697d\u306b\u50be\u3044\u3066\u307e\u3059w\u6c96\u7e04\u82b8\u4eba\u3055\u3093\u306e\u9b45\u529b\u306b\u30cf\u30de\u308a\u3059\u304e\u306a\u3046\u7b11\n\u3088\u308d\u3074\u304f\u30fc\u3002","protected":false,"verified":false,"followers_count":180,"friends_count":359,"listed_count":0,"favourites_count":1353,"statuses_count":1137,"created_at":"Thu Jan 26 06:08:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320161894592514\/K0ElrkWh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320161894592514\/K0ElrkWh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474642740\/1446461628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yjhfyuigy","name":"\u03b4\u3067\u308b\u305f\u03b4","id":3888919512,"id_str":"3888919512","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011664"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791674757125,"id_str":"663727791674757125","text":"\u90a6ROCK\u5927\u597d\u304d\u3060\u3057\n\u5973\u3068\u4eba\u306e\u6b4c\u304d\u304b\u3093\u3057\u3042\u3093\u307e\u597d\u304b\u3093\u3051\u3069\n\u3084\u3063\u3071\u5973\u3060\u304b\u3089\u897f\u91ce\u30ab\u30ca\u3068\u304b\n\u97f3\u57df\u304c\u3042\u3044\u3059\u304e\u3066\u8f9b\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3644013613,"id_str":"3644013613","name":"\u3055\u304f\u3089@\u307d\u3093","screen_name":"sakura_callist","location":"\uff75\uff76\uff94\uff8f\u2600\ufe0f","url":null,"description":"\u90a6ROCK\u8074\u304d\u307e\u3059\u22051\/11 \u7a7a\u60f3\uff75\uff76\uff94\uff8f\u2205","protected":false,"verified":false,"followers_count":152,"friends_count":150,"listed_count":2,"favourites_count":668,"statuses_count":956,"created_at":"Tue Sep 22 02:17:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654645562118025218\/4W8wGu0f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654645562118025218\/4W8wGu0f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3644013613\/1446665904","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011658"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691681792,"id_str":"663727791691681792","text":"Forget unfollowers, I believe in growing. 15 new followers in the last week! Stats via https:\/\/t.co\/nmQsnkGheP","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1895688878,"id_str":"1895688878","name":"lucas","screen_name":"mikandpaulo","location":null,"url":"http:\/\/editsmdp.tumblr.com\/","description":"I'm the flash","protected":false,"verified":false,"followers_count":2310,"friends_count":899,"listed_count":0,"favourites_count":58,"statuses_count":43547,"created_at":"Mon Sep 23 01:04:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602571314948280320\/OGwfVlSV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602571314948280320\/OGwfVlSV.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662814852944158720\/CmjVQqcW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662814852944158720\/CmjVQqcW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1895688878\/1446862396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nmQsnkGheP","expanded_url":"http:\/\/www.crowdfireapp.com\/?r=tw","display_url":"crowdfireapp.com\/?r=tw","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011662"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791678951424,"id_str":"663727791678951424","text":"\u3078\u3057\u5b97\u306e\u9577\u8c37\u90e8\u304f\u3093\u3068\u5b97\u4e09\u3092\u88cf\u304b\u3089\u7d50\u8a17\u3057\u3066\u5225\u308c\u3055\u305d\u3046\u3068\u3059\u308b\u71ed\u53f0\u5207\u3068\u85ac\u7814\u3001\u6700\u7d42\u7684\u306b\u71ed\u3078\u3057\u3068\u85ac\u5b97\u3002\u66f8\u304d\u305f\u3044\u3002","source":"\u003ca href=\"http:\/\/jigtwi.jp\/?p=1\" rel=\"nofollow\"\u003ejigtwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2326303752,"id_str":"2326303752","name":"\u307e\u3043\u592a\u90ce\u3068\u304a\u8089","screen_name":"Maita_niku","location":null,"url":null,"description":"\u793e\u755c\u3010\u672a\u6210\u5e74\uff8c\uff6b\uff9b\uff70\u00d7\u3011\u4eca\u304a\u71b1\u306f\u5200\u5263(\u71ed\u3078\u3057\u30fb\u3078\u3057\u5b97\u30fb\u3078\u3057\u53d7\u3051) \u8266\u3053\u308c\u3001\u9b54\u6cd5\u79d1\u3001\u30b8\u30e3\u30f3\u30eb\u50be\u5411\u306f\u3053\u3061\u3089( \u8efd\u7387\u5973\u4f53\u5316\u53a8)\u2192http:\/\/t.co\/RfQp6ODy4v \u7121\u8a00\uff8c\uff6b\uff9b\uff70\u5931\u793c\u3057\u307e\u3059\u304c\u602a\u3057\u3044\u8005\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u6c17\u306b\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002\u30e1\u30e2( http:\/\/t.co\/izvnMlQQf9 )","protected":false,"verified":false,"followers_count":36,"friends_count":58,"listed_count":1,"favourites_count":891,"statuses_count":8400,"created_at":"Tue Feb 04 01:43:42 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621306100818653184\/grAeaqwY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621306100818653184\/grAeaqwY.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647113636620595200\/Jy-1Ne8E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647113636620595200\/Jy-1Ne8E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2326303752\/1444733479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080011659"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791687507968,"id_str":"663727791687507968","text":"@MatiMondolo Gracias Matii, conta conmigo para lo que sea","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721019350368256,"in_reply_to_status_id_str":"663721019350368256","in_reply_to_user_id":1228017974,"in_reply_to_user_id_str":"1228017974","in_reply_to_screen_name":"MatiMondolo","user":{"id":2795934942,"id_str":"2795934942","name":"Augusto","screen_name":"AgusMarkiewicz2","location":"Concordia, Argentina","url":null,"description":"Poco a poco la vida te ense\u00f1a por quien debes luchar... y a quien renunciar #P18 #C2","protected":false,"verified":false,"followers_count":313,"friends_count":255,"listed_count":0,"favourites_count":945,"statuses_count":2417,"created_at":"Sun Sep 07 13:50:36 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621769949024002048\/UgcSH9Pd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621769949024002048\/UgcSH9Pd.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649605500628258816\/_Mie6uM3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649605500628258816\/_Mie6uM3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2795934942\/1415374813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MatiMondolo","name":"\u2605\u24dc\u24d0\u24e3\u24d8\u2605","id":1228017974,"id_str":"1228017974","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011661"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791687405569,"id_str":"663727791687405569","text":"@BlandonJose @MiAmbientePma @ennio_arcia @LizveikaLezcano Gracias. gesti\u00f3n ambiental tiene el caso. Llamamos y nada\nChanis calle U, 2221431","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725055281598464,"in_reply_to_status_id_str":"663725055281598464","in_reply_to_user_id":319518155,"in_reply_to_user_id_str":"319518155","in_reply_to_screen_name":"BlandonJose","user":{"id":1473076122,"id_str":"1473076122","name":"Jacinta","screen_name":"jacintaadelina","location":"Panama","url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":37,"listed_count":0,"favourites_count":6,"statuses_count":24,"created_at":"Fri May 31 21:12:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000252086497\/f2b0e7f3c3ad66180be9ccabc898851c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000252086497\/f2b0e7f3c3ad66180be9ccabc898851c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlandonJose","name":"Jos\u00e9 Isabel Bland\u00f3n ","id":319518155,"id_str":"319518155","indices":[0,12]},{"screen_name":"MiAmbientePma","name":"Mi Ambiente Panam\u00e1","id":884652038,"id_str":"884652038","indices":[13,27]},{"screen_name":"ennio_arcia","name":"Ennio Arcia ","id":169334310,"id_str":"169334310","indices":[28,40]},{"screen_name":"LizveikaLezcano","name":"Lizveika Lissette","id":296440113,"id_str":"296440113","indices":[41,57]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080011661"} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691718656,"id_str":"663727791691718656","text":"Join me LIVE NOW!!! 3 Ways To Create Meaningful Marketing with Periscope @bonnielfrank #giveaway... https:\/\/t.co\/CohsIkvppE","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156733309,"id_str":"156733309","name":"Bonnie Frank","screen_name":"bonnielfrank","location":"St. Louis, MO","url":"http:\/\/www.bonnielfrank.com","description":"#Speaker #Success #Coach. CEO of Bonnie L. Frank. Daily Periscope and Blab broadcaster. I help #entrepreneurs build their business. https:\/\/t.co\/V5fzevBUus","protected":false,"verified":false,"followers_count":4222,"friends_count":3973,"listed_count":454,"favourites_count":3612,"statuses_count":25383,"created_at":"Thu Jun 17 19:17:58 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596852166247100418\/6WY2dVPr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596852166247100418\/6WY2dVPr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156733309\/1431142351","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"giveaway","indices":[89,98]}],"urls":[{"url":"https:\/\/t.co\/CohsIkvppE","expanded_url":"http:\/\/fb.me\/4IeRmAzyt","display_url":"fb.me\/4IeRmAzyt","indices":[102,125]}],"user_mentions":[{"screen_name":"bonnielfrank","name":"Bonnie Frank","id":156733309,"id_str":"156733309","indices":[75,88]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011662"} +{"delete":{"status":{"id":472328714609377281,"id_str":"472328714609377281","user_id":1693314204,"user_id_str":"1693314204"},"timestamp_ms":"1447080011830"}} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691595776,"id_str":"663727791691595776","text":"#Sexy #Selfshot #Hot #Babe #Nude https:\/\/t.co\/SzjNvRabdV https:\/\/t.co\/2XQ9lU24ln","source":"\u003ca href=\"http:\/\/selfies.sexfetch.com\/\" rel=\"nofollow\"\u003esf-selfies\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3101934462,"id_str":"3101934462","name":"Selfies Sex Fetch","screen_name":"selfiessexfetch","location":null,"url":"http:\/\/selfies.sexfetch.com\/","description":"World's largest free Sexy Selfies porn gallery. NSFW 18+ Only!","protected":false,"verified":false,"followers_count":3797,"friends_count":652,"listed_count":36,"favourites_count":0,"statuses_count":10045,"created_at":"Sat Mar 21 18:14:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582972739268431872\/PjtnioH0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582972739268431872\/PjtnioH0_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sexy","indices":[0,5]},{"text":"Selfshot","indices":[6,15]},{"text":"Hot","indices":[16,20]},{"text":"Babe","indices":[21,26]},{"text":"Nude","indices":[27,32]}],"urls":[{"url":"https:\/\/t.co\/SzjNvRabdV","expanded_url":"http:\/\/bit.ly\/1WM3l0d","display_url":"bit.ly\/1WM3l0d","indices":[33,56]}],"user_mentions":[],"symbols":[],"media":[{"id":663727791540584448,"id_str":"663727791540584448","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6OpUwAA4PqI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6OpUwAA4PqI.jpg","url":"https:\/\/t.co\/2XQ9lU24ln","display_url":"pic.twitter.com\/2XQ9lU24ln","expanded_url":"http:\/\/twitter.com\/selfiessexfetch\/status\/663727791691595776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":500,"h":499,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":499,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727791540584448,"id_str":"663727791540584448","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6OpUwAA4PqI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6OpUwAA4PqI.jpg","url":"https:\/\/t.co\/2XQ9lU24ln","display_url":"pic.twitter.com\/2XQ9lU24ln","expanded_url":"http:\/\/twitter.com\/selfiessexfetch\/status\/663727791691595776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"large":{"w":500,"h":499,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":499,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080011662"} +{"delete":{"status":{"id":663727749740150784,"id_str":"663727749740150784","user_id":2849995184,"user_id_str":"2849995184"},"timestamp_ms":"1447080011914"}} +{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791691735040,"id_str":"663727791691735040","text":"Good health comes from doing healthy stuff CONSISTENTLY!! \n1. Exercise at least 3 times in a week\n2. Eat loads of... https:\/\/t.co\/Lsy5N89URb","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":554403640,"id_str":"554403640","name":"Ghana Health Diary","screen_name":"GHHealthDiary","location":"Accra","url":"http:\/\/www.ghanahealthdiary.com","description":"Health issues and solutions well oriented to the Ghanaian #ghana #ghanahealth #barcampghana #health","protected":false,"verified":false,"followers_count":259,"friends_count":331,"listed_count":6,"favourites_count":15,"statuses_count":724,"created_at":"Sun Apr 15 14:54:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472601926836953088\/iX_LkGEc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472601926836953088\/iX_LkGEc_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Lsy5N89URb","expanded_url":"http:\/\/fb.me\/4YZ51De1s","display_url":"fb.me\/4YZ51De1s","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080011662"} +{"delete":{"status":{"id":663724817909198848,"id_str":"663724817909198848","user_id":3222790376,"user_id_str":"3222790376"},"timestamp_ms":"1447080012049"}} +{"delete":{"status":{"id":647705055500484608,"id_str":"647705055500484608","user_id":2997234914,"user_id_str":"2997234914"},"timestamp_ms":"1447080012029"}} +{"delete":{"status":{"id":535770456653975552,"id_str":"535770456653975552","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080012198"}} +{"delete":{"status":{"id":660571653412261888,"id_str":"660571653412261888","user_id":71140621,"user_id_str":"71140621"},"timestamp_ms":"1447080012214"}} +{"delete":{"status":{"id":662088951298043904,"id_str":"662088951298043904","user_id":3265639088,"user_id_str":"3265639088"},"timestamp_ms":"1447080012315"}} +{"delete":{"status":{"id":249064167850520576,"id_str":"249064167850520576","user_id":501778254,"user_id_str":"501778254"},"timestamp_ms":"1447080012554"}} +{"delete":{"status":{"id":663725832930729984,"id_str":"663725832930729984","user_id":145248059,"user_id_str":"145248059"},"timestamp_ms":"1447080012672"}} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795865014272,"id_str":"663727795865014272","text":"RT @MilHistNow: 166 women flew warplanes during WW2 as part of the UK's Air Transport Auxiliary & did so with equal pay #EqualPayDay https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2151157244,"id_str":"2151157244","name":"Interjunction","screen_name":"Interjunction","location":"London 07590 963 238","url":"http:\/\/www.interjunction.org.uk","description":"#SocialGood with #workplacements for 16-30 yr olds in #Lambeth. Funded by Walcott Foundation #jobhunting #NEET #Volunteering #Nonprofit","protected":false,"verified":false,"followers_count":376,"friends_count":766,"listed_count":29,"favourites_count":531,"statuses_count":1847,"created_at":"Wed Oct 23 15:07:18 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000637470166\/b14f99c57059c82774912ee16fa2cb4d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000637470166\/b14f99c57059c82774912ee16fa2cb4d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2151157244\/1382541406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:14 +0000 2015","id":663713712356900864,"id_str":"663713712356900864","text":"166 women flew warplanes during WW2 as part of the UK's Air Transport Auxiliary & did so with equal pay #EqualPayDay https:\/\/t.co\/PBLGHFZZ0s","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576675214,"id_str":"576675214","name":"Military History Now","screen_name":"MilHistNow","location":null,"url":"http:\/\/www.militaryhistorynow.com","description":"The premier online destination for amazing and offbeat #MilitaryHistory. Follow us or visit our website: http:\/\/MilitaryHistoryNow.com","protected":false,"verified":false,"followers_count":12899,"friends_count":3631,"listed_count":317,"favourites_count":2831,"statuses_count":5252,"created_at":"Thu May 10 23:47:22 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510588849840340993\/vRJ-PhWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510588849840340993\/vRJ-PhWB.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510808482107244544\/3Bvx0Jfp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510808482107244544\/3Bvx0Jfp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576675214\/1410621492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":16,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[108,120]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713710947610624,"id_str":"663713710947610624","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","url":"https:\/\/t.co\/PBLGHFZZ0s","display_url":"pic.twitter.com\/PBLGHFZZ0s","expanded_url":"http:\/\/twitter.com\/MilHistNow\/status\/663713712356900864\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":443,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713710947610624,"id_str":"663713710947610624","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","url":"https:\/\/t.co\/PBLGHFZZ0s","display_url":"pic.twitter.com\/PBLGHFZZ0s","expanded_url":"http:\/\/twitter.com\/MilHistNow\/status\/663713712356900864\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":443,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[124,136]}],"urls":[],"user_mentions":[{"screen_name":"MilHistNow","name":"Military History Now","id":576675214,"id_str":"576675214","indices":[3,14]}],"symbols":[],"media":[{"id":663713710947610624,"id_str":"663713710947610624","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","url":"https:\/\/t.co\/PBLGHFZZ0s","display_url":"pic.twitter.com\/PBLGHFZZ0s","expanded_url":"http:\/\/twitter.com\/MilHistNow\/status\/663713712356900864\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":443,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}},"source_status_id":663713712356900864,"source_status_id_str":"663713712356900864","source_user_id":576675214,"source_user_id_str":"576675214"}]},"extended_entities":{"media":[{"id":663713710947610624,"id_str":"663713710947610624","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GoWWsAAah22.jpg","url":"https:\/\/t.co\/PBLGHFZZ0s","display_url":"pic.twitter.com\/PBLGHFZZ0s","expanded_url":"http:\/\/twitter.com\/MilHistNow\/status\/663713712356900864\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":443,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}},"source_status_id":663713712356900864,"source_status_id_str":"663713712356900864","source_user_id":576675214,"source_user_id_str":"576675214"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898556416,"id_str":"663727795898556416","text":"RT @HanifTheSRKian: \"Hum shareef kya huye, poori duniya badmash ho gayi\" - @iamsrk @Varun_dvn\n@kritisanon #DhamakedaarDilwaleTrailer\nhttps:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112214311,"id_str":"3112214311","name":"SRK Pride Of INDIA\u2665","screen_name":"SRKsDieHardFan","location":"Srk's Country","url":"http:\/\/instagram.com\/srksdiehardfan","description":"\u03b9 \u03b1\u043c \u0257\u03b9\u0454 \u043d\u03b1\u0280\u0257 \u0257\u03b9\u2113\u03c9\u03b1\u03b1\u2113\u0454 \u0280\u03b1\u0454\u0454\u0455 \u0192\u03b1\u03b7 \u03c3\u0192 \u043a\u03b9\u03b7g @iamsrk.. \u03b9 \u043d\u03b1\u0442\u0454 \u0442\u043d\u03c3\u0455\u0454 \u03c9\u043d\u03c3 \u043d\u03b1\u0442\u0454 \u0455\u0280\u043a :D \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0455\u0280\u043a \u03b9 \u03c9\u03b9\u2113\u2113 \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0443\u03c3\u03c5 :) \u0257\u03c3\u03b7'\u0442 \u043d\u03c5\u0280\u0442 \u0455\u0280\u043a \u03b9\u0442\u0455 \u03b9\u03b7\u029d\u03c5\u0280\u03b9\u0454\u0455 \u0442\u03c3 \u0443\u03c3\u03c5\u0280 \u043d\u0454\u03b1\u2113\u0442\u043d","protected":false,"verified":false,"followers_count":163,"friends_count":117,"listed_count":0,"favourites_count":2592,"statuses_count":5648,"created_at":"Sat Mar 28 04:58:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112214311\/1444733481","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:27 +0000 2015","id":663727352753627136,"id_str":"663727352753627136","text":"\"Hum shareef kya huye, poori duniya badmash ho gayi\" - @iamsrk @Varun_dvn\n@kritisanon #DhamakedaarDilwaleTrailer\nhttps:\/\/t.co\/e5zUG0BX8n","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877567647,"id_str":"2877567647","name":"\u2605 H A N I F \u2605","screen_name":"HanifTheSRKian","location":"Kolkata,India","url":null,"description":"\u043d\u0454\u044f\u0454 \u03c3\u0438\u2113\u0443 f\u03c3\u044f @iamsrk ' \u0455 - \u03c5\u03c1\u00a2\u03c3\u043c\u03b9\u0438g\r\n\u043c\u03c3\u03bd\u03b9\u0454(\u0455): f\u03b1\u0438 (15\/4\/16), \u044f\u03b1\u0454\u0454\u0455 (7\/16),\r\n\u2202\u03b9\u2113\u03c9\u03b1\u2113\u0454 (18\/12\/15)","protected":false,"verified":false,"followers_count":2135,"friends_count":1434,"listed_count":9,"favourites_count":8001,"statuses_count":25000,"created_at":"Sat Nov 15 05:09:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663586946136981504\/YEOzu_Ul_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663586946136981504\/YEOzu_Ul_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877567647\/1447046427","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[86,112]}],"urls":[],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[55,62]},{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[63,73]},{"screen_name":"kritisanon","name":"Kriti Sanon","id":137017726,"id_str":"137017726","indices":[74,85]}],"symbols":[],"media":[{"id":663723602487828480,"id_str":"663723602487828480","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","url":"https:\/\/t.co\/e5zUG0BX8n","display_url":"pic.twitter.com\/e5zUG0BX8n","expanded_url":"http:\/\/twitter.com\/OYERJALOK\/status\/663723633160777728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723633160777728,"source_status_id_str":"663723633160777728","source_user_id":85303665,"source_user_id_str":"85303665"}]},"extended_entities":{"media":[{"id":663723602487828480,"id_str":"663723602487828480","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","url":"https:\/\/t.co\/e5zUG0BX8n","display_url":"pic.twitter.com\/e5zUG0BX8n","expanded_url":"http:\/\/twitter.com\/OYERJALOK\/status\/663723633160777728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723633160777728,"source_status_id_str":"663723633160777728","source_user_id":85303665,"source_user_id_str":"85303665"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[106,132]}],"urls":[],"user_mentions":[{"screen_name":"HanifTheSRKian","name":"\u2605 H A N I F \u2605","id":2877567647,"id_str":"2877567647","indices":[3,18]},{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[75,82]},{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[83,93]},{"screen_name":"kritisanon","name":"Kriti Sanon","id":137017726,"id_str":"137017726","indices":[94,105]}],"symbols":[],"media":[{"id":663723602487828480,"id_str":"663723602487828480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","url":"https:\/\/t.co\/e5zUG0BX8n","display_url":"pic.twitter.com\/e5zUG0BX8n","expanded_url":"http:\/\/twitter.com\/OYERJALOK\/status\/663723633160777728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723633160777728,"source_status_id_str":"663723633160777728","source_user_id":85303665,"source_user_id_str":"85303665"}]},"extended_entities":{"media":[{"id":663723602487828480,"id_str":"663723602487828480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFGZNUYAA7NzR.jpg","url":"https:\/\/t.co\/e5zUG0BX8n","display_url":"pic.twitter.com\/e5zUG0BX8n","expanded_url":"http:\/\/twitter.com\/OYERJALOK\/status\/663723633160777728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663723633160777728,"source_status_id_str":"663723633160777728","source_user_id":85303665,"source_user_id_str":"85303665"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877642241,"id_str":"663727795877642241","text":"Ehi favs perch\u00e9 cagate gente che mi sta altamente sul cazzo, non la vojo vedere","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2771531243,"id_str":"2771531243","name":"Marco","screen_name":"noncredoiniente","location":"160914 JB followed. ","url":"http:\/\/unapartedemiesunalaguna.tumblr.com","description":"con la mente che c'ha il fare un po' psicopatico","protected":false,"verified":false,"followers_count":913,"friends_count":241,"listed_count":1,"favourites_count":2534,"statuses_count":10534,"created_at":"Mon Sep 15 20:33:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661221934018002944\/mvQqD1Ih_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661221934018002944\/mvQqD1Ih_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2771531243\/1446801751","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080012660"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795885973504,"id_str":"663727795885973504","text":"Si escupes para arriba en la cara te va a caer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3079694811,"id_str":"3079694811","name":"B","screen_name":"Belu_Ariass","location":"San Antonio de Padua ","url":null,"description":"-Soy de river, soy del mejor .16. \u2022 1133656529 \u2022 Acuariana.","protected":false,"verified":false,"followers_count":404,"friends_count":279,"listed_count":1,"favourites_count":2621,"statuses_count":8872,"created_at":"Sun Mar 08 16:58:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587427168109498369\/eF5d7EpZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587427168109498369\/eF5d7EpZ.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606986679942037504\/dE070Mcc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606986679942037504\/dE070Mcc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3079694811\/1434501288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080012662"} +{"delete":{"status":{"id":663654110370099200,"id_str":"663654110370099200","user_id":3018030423,"user_id_str":"3018030423"},"timestamp_ms":"1447080012726"}} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795894398977,"id_str":"663727795894398977","text":"RT @OnLocationEd: Make 1st impressions lasting ones! RT @Backstage: 10 ways to nail that commercial audition: https:\/\/t.co\/FfWgDvn0Tc https\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2264093944,"id_str":"2264093944","name":"ActingNetworks","screen_name":"actingnetworks","location":"Worldwide","url":"http:\/\/actingnetworks.com","description":"Acting Networks Social Network ~ Where Creative People in FILM TV & ENTERTAINMENT INDUSTRY LinkUp, Network Together!\nhttp:\/\/actingnetworks.com","protected":false,"verified":false,"followers_count":1783,"friends_count":1355,"listed_count":147,"favourites_count":99,"statuses_count":51769,"created_at":"Sun Jan 05 19:31:11 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419925395304366082\/go6Y2B-T_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419925395304366082\/go6Y2B-T_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264093944\/1388952991","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:52 +0000 2015","id":663720412661096448,"id_str":"663720412661096448","text":"Make 1st impressions lasting ones! RT @Backstage: 10 ways to nail that commercial audition: https:\/\/t.co\/FfWgDvn0Tc https:\/\/t.co\/EO74AVIwde","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090343920,"id_str":"3090343920","name":"Alan Simon","screen_name":"OnLocationEd","location":null,"url":"http:\/\/www.onlocationeducation.com","description":"Creator of On Location Education, the nation\u2019s premier educational consulting service for young performers. Passion for education, film, theater & crime dramas.","protected":false,"verified":false,"followers_count":888,"friends_count":1620,"listed_count":52,"favourites_count":1190,"statuses_count":2505,"created_at":"Mon Mar 16 17:42:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6FBC1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"6FBC1F","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577526231068864512\/A_uwgf1-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577526231068864512\/A_uwgf1-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090343920\/1427422781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FfWgDvn0Tc","expanded_url":"http:\/\/hubs.ly\/H01n6JT0","display_url":"hubs.ly\/H01n6JT0","indices":[92,115]}],"user_mentions":[{"screen_name":"Backstage","name":"Backstage","id":19920585,"id_str":"19920585","indices":[38,48]}],"symbols":[],"media":[{"id":663544539953692673,"id_str":"663544539953692673","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","url":"https:\/\/t.co\/EO74AVIwde","display_url":"pic.twitter.com\/EO74AVIwde","expanded_url":"http:\/\/twitter.com\/Backstage\/status\/663544540456951808\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663544540456951808,"source_status_id_str":"663544540456951808","source_user_id":19920585,"source_user_id_str":"19920585"}]},"extended_entities":{"media":[{"id":663544539953692673,"id_str":"663544539953692673","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","url":"https:\/\/t.co\/EO74AVIwde","display_url":"pic.twitter.com\/EO74AVIwde","expanded_url":"http:\/\/twitter.com\/Backstage\/status\/663544540456951808\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663544540456951808,"source_status_id_str":"663544540456951808","source_user_id":19920585,"source_user_id_str":"19920585"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FfWgDvn0Tc","expanded_url":"http:\/\/hubs.ly\/H01n6JT0","display_url":"hubs.ly\/H01n6JT0","indices":[110,133]}],"user_mentions":[{"screen_name":"OnLocationEd","name":"Alan Simon","id":3090343920,"id_str":"3090343920","indices":[3,16]},{"screen_name":"Backstage","name":"Backstage","id":19920585,"id_str":"19920585","indices":[56,66]}],"symbols":[],"media":[{"id":663544539953692673,"id_str":"663544539953692673","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","url":"https:\/\/t.co\/EO74AVIwde","display_url":"pic.twitter.com\/EO74AVIwde","expanded_url":"http:\/\/twitter.com\/Backstage\/status\/663544540456951808\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663544540456951808,"source_status_id_str":"663544540456951808","source_user_id":19920585,"source_user_id_str":"19920585"}]},"extended_entities":{"media":[{"id":663544539953692673,"id_str":"663544539953692673","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTViPlSXAAEsdoD.jpg","url":"https:\/\/t.co\/EO74AVIwde","display_url":"pic.twitter.com\/EO74AVIwde","expanded_url":"http:\/\/twitter.com\/Backstage\/status\/663544540456951808\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663544540456951808,"source_status_id_str":"663544540456951808","source_user_id":19920585,"source_user_id_str":"19920585"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012664"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869102080,"id_str":"663727795869102080","text":"\u72c2\u6c17\u3068\u306f\u540c\u3058\u3053\u3068\u3092\u4f55\u5ea6\u3082\u4f55\u5ea6\u3082\u7e70\u308a\u8fd4\u3057\u884c\u3044\u3001\u9055\u3046\u7d50\u679c\u3092\u671f\u5f85\u3059\u308b\u3053\u3068\u3060\u3002\u3000\u30a2\u30eb\u30d9\u30eb\u30c8\u30fb\u30a2\u30a4\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4102333220,"id_str":"4102333220","name":"\u30aa\u30fc\u30c9\u30ea\u30fc.+*:\uff9f+\uff61.\u2606","screen_name":"fy974love","location":null,"url":null,"description":"\u30aa\u30fc\u30c9\u30ea\u30fc\u304c(\uff61-\u03c9-\uff61)\uff89\u2606\uff65\uff9f:*:\uff9f\u597d\u304d\u3067\u3059(\u3002-\u2200-)\u3000\u5927\u5b66\u901a\u3063\u3066\u307e\u3059\u266a\u3000\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u3060\u3088(*\u00b4\u2200\uff40*)\u3000\u8da3\u5473\u306f\u30e9\u30a4\u30d6\u3068\u30a2\u30cb\u30e1\u3068\u6d77\u5916\u30c9\u30e9\u30de\u3001\u3088\u308d\u3057\u304f\u306d\u2606\u5f61","protected":false,"verified":false,"followers_count":116,"friends_count":60,"listed_count":0,"favourites_count":0,"statuses_count":818,"created_at":"Mon Nov 02 13:45:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661182761823145984\/yYYH0TBv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661182761823145984\/yYYH0TBv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4102333220\/1446473284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877515264,"id_str":"663727795877515264","text":"@juSnwRJ7OWrKDlu \n\u3044\u3084\u3001\u3063\u3066\u6253\u3061\u305f\u304b\u3063\u305f\u3060\u3051\u3084\u304b\u3089\u610f\u5473\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727592860700673,"in_reply_to_status_id_str":"663727592860700673","in_reply_to_user_id":3193157922,"in_reply_to_user_id_str":"3193157922","in_reply_to_screen_name":"juSnwRJ7OWrKDlu","user":{"id":2393822810,"id_str":"2393822810","name":"\u3048\u3067\u3093@\u9ad8\u6a4b\uff11\uff11\u6708\u2192\u308c\u3093\u308c\u3093\u751f\u8a95","screen_name":"Sakura_Kanako02","location":"\u3055\u304f\u3061\u3083\u3093\u306e\u51fa\u8eab\u770c \u5175\u5eab\u770c\u3067\u751f\u307e\u308c\u305f\u7537\u3084\u306e\u301c","url":"http:\/\/twpf.jp\/Sakura_Kanako02","description":"AE\/\u7537\u5b50\u5927\u5b66\u751f\/\u304b\u306a\u3053\uff06\u3055\u304f\u3061\u3083\u3093\u63a8\u3057\/\u3057\u304a\u308a\u3093\u4e16\u4ee3\/\u590f\u83dc\u5b50\u3061\u3083\u3093\u3057\u304b\u3067\u3059 \u91ce\u97f3\u3067\u3055\u304f\u3061\u3083\u3093\u306b\u5fc3\u3092\u596a\u308f\u308c\u305f","protected":false,"verified":false,"followers_count":665,"friends_count":468,"listed_count":12,"favourites_count":1992,"statuses_count":17881,"created_at":"Mon Mar 17 05:14:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653794804262768640\/IPu4G35B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653794804262768640\/IPu4G35B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2393822810\/1443426239","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"juSnwRJ7OWrKDlu","name":"\u3053\u308a\u3093","id":3193157922,"id_str":"3193157922","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012660"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795864891392,"id_str":"663727795864891392","text":"Lead\u8074\u3044\u305f\u3089\u30db\u30c3\u3068\u3057\u305f\u3001\u9aea\u4e7e\u304b\u305d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2162885168,"id_str":"2162885168","name":"\u3086\u30fc\u304d(\u00b4o`)\/","screen_name":"ukeyekira","location":null,"url":"https:\/\/instagram.com\/ukeymochi\/","description":"\u305a\u3063\u3068\u3042\u3063\u304f\u3093\u305a\uff01*\u0b18(\u0a6d*\u02ca\u1d55\u02cb)\u0a6d* \u0a48\u2729\u2027\u208a\u02da\u30cb\u30f3\u2661","protected":false,"verified":false,"followers_count":77,"friends_count":104,"listed_count":3,"favourites_count":1538,"statuses_count":23470,"created_at":"Tue Oct 29 13:42:15 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622067253161254912\/-u_OVjMT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622067253161254912\/-u_OVjMT.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632534469124100096\/WIG61mlw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632534469124100096\/WIG61mlw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2162885168\/1425653947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869093888,"id_str":"663727795869093888","text":"Anger over enduring 'environmental horror' in oil-rich, polluted Niger delta ... https:\/\/t.co\/ejV8AUzz19","source":"\u003ca href=\"http:\/\/anglosearch.com\" rel=\"nofollow\"\u003eAnglosearch News\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112186577,"id_str":"112186577","name":"UK News Information","screen_name":"AnglosearchNews","location":"United Kingdom","url":"http:\/\/anglosearch.com","description":"News from the Guardian, Daily Mail BBC London UK Britain & around the world. Updated every 2 minutes.","protected":false,"verified":false,"followers_count":1041,"friends_count":1559,"listed_count":62,"favourites_count":72,"statuses_count":544822,"created_at":"Sun Feb 07 15:03:39 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530813711\/anglosearch44.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530813711\/anglosearch44.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2149706350\/anglosearch_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2149706350\/anglosearch_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112186577\/1362343383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ejV8AUzz19","expanded_url":"http:\/\/tinyurl.com\/qjapx45","display_url":"tinyurl.com\/qjapx45","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877494784,"id_str":"663727795877494784","text":"\u5973\u5b50\u3063\u3066\u4e0b\u30cd\u30bf\u8a00\u3046\u5974\u5acc\u3044\u306a\u306e\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252646632,"id_str":"3252646632","name":"\u306e\u308a\u3061\u3083\u3093\u2661","screen_name":"onestone10","location":null,"url":null,"description":"ks4623 \u3055\u304b\u3082\u3068\u3068\u3044\u3046\u540d\u306e\u3082\u306e\u3067\u3059 \u4e00\u5c0f\u2192\u4e00\u4e2d\u2192ks \u5f13\u9053\u90e8\u306b\u6240\u5c5e","protected":false,"verified":false,"followers_count":159,"friends_count":175,"listed_count":2,"favourites_count":782,"statuses_count":1601,"created_at":"Mon Jun 22 13:14:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613332134657310720\/WYokOTLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613332134657310720\/WYokOTLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252646632\/1443256046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012660"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795873316865,"id_str":"663727795873316865","text":"\u9152\u306b\u6c88\u3093\u3060\u571f\u66dc\u3068\u30c0\u30e0\u306b\u6d6e\u304b\u308c\u305f\u65e5\u66dc\u3092\u8d85\u3048\u305f\u3089\u30e9\u30a4\u30d6\u306e\u4f59\u6ce2\u304c\u8972\u3063\u3066\u304d\u305f\u3002","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13379512,"id_str":"13379512","name":"\u30cf\u30fc\u30c8\u30ad\u30e3\u30c3\u30c1\u8338\u30a1","screen_name":"quinoco","location":"\u03c9","url":null,"description":"*","protected":false,"verified":false,"followers_count":189,"friends_count":226,"listed_count":28,"favourites_count":93,"statuses_count":41690,"created_at":"Tue Feb 12 06:29:08 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518962247041703937\/1B0zXgYo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518962247041703937\/1B0zXgYo.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"708DCF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661692950565400576\/97oNeqdN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661692950565400576\/97oNeqdN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13379512\/1412565111","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012659"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869106177,"id_str":"663727795869106177","text":"Debo empezar a dormir,por que me est\u00e1 haciendo muy mal","source":"\u003ca href=\"http:\/\/www.lg.com\" rel=\"nofollow\"\u003eLG Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3091834809,"id_str":"3091834809","name":"Cam | 20 dias","screen_name":"LanitaftSerrano","location":"Thanks, tommy","url":null,"description":"Rubelangel y Luzana.| Zeuspan | Frank bebo | Sangster | menci\u00f3n de juli\u00e1n,me ley\u00f3x2 | rt de Luzu,me ley\u00f3x2 | kion me ley\u00f3x5 | Fav de Celo | #R5Family | Dylmas |","protected":false,"verified":false,"followers_count":477,"friends_count":331,"listed_count":5,"favourites_count":22954,"statuses_count":35838,"created_at":"Sun Mar 15 01:06:26 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660958730478067712\/dybcG4eu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660958730478067712\/dybcG4eu.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663465453562540033\/HSJTmLm3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663465453562540033\/HSJTmLm3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3091834809\/1447018853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869093889,"id_str":"663727795869093889","text":"RT @mystic_9394: RT) Looking for SINGAPORE fanmeeting tix, rows 1-5 in the middle & INDONESIA tix, fast track. Anyone who can sell the tix,\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386088228,"id_str":"2386088228","name":"on your MARK","screen_name":"onyourMARK_0904","location":"MARK TUAN","url":null,"description":"\uc544\uac00\uc0c8 silver\u2661\ub9c8\ud06c \ub108\ubb34 \uc0ac\ub791\ud574 \uc5b8\uc81c\ub098 \uace0\ub9c8\uc6cc \ub098\ub294 \ub9c8\ud06c\uaebc\u266a","protected":false,"verified":false,"followers_count":343,"friends_count":498,"listed_count":5,"favourites_count":646,"statuses_count":10898,"created_at":"Thu Mar 13 01:44:21 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648283170899517440\/ofsj-ox0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648283170899517440\/ofsj-ox0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386088228\/1443536304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:12:09 +0000 2015","id":663660338764603392,"id_str":"663660338764603392","text":"RT) Looking for SINGAPORE fanmeeting tix, rows 1-5 in the middle & INDONESIA tix, fast track. Anyone who can sell the tix, plz send me dm~\ud83d\ude46\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2611050631,"id_str":"2611050631","name":"MYSTIC LIGHT","screen_name":"mystic_9394","location":null,"url":null,"description":"Especially For Mark (Weibo: http:\/\/t.co\/IKY7ZXp1p8, Instagram: http:\/\/t.co\/SmhMXnubYh","protected":false,"verified":false,"followers_count":31769,"friends_count":38,"listed_count":725,"favourites_count":148,"statuses_count":1900,"created_at":"Tue Jul 08 04:36:07 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"63BBC7","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648543432739151872\/hv_t-lMc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648543432739151872\/hv_t-lMc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2611050631\/1443458878","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":25,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mystic_9394","name":"MYSTIC LIGHT","id":2611050631,"id_str":"2611050631","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881779200,"id_str":"663727795881779200","text":"@ParodiSofi tristemente real, conchuda jajajaja. Vos compras la vaselina o yo?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727115901227009,"in_reply_to_status_id_str":"663727115901227009","in_reply_to_user_id":3329515563,"in_reply_to_user_id_str":"3329515563","in_reply_to_screen_name":"ParodiSofi","user":{"id":469062901,"id_str":"469062901","name":"miqui","screen_name":"miquinter0s","location":null,"url":"https:\/\/www.instagram.com\/miqui.nteros","description":"yo no me seguir\u00eda.","protected":false,"verified":false,"followers_count":827,"friends_count":520,"listed_count":1,"favourites_count":5092,"statuses_count":45956,"created_at":"Fri Jan 20 05:55:45 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441109976908460032\/7aeuxz1K.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441109976908460032\/7aeuxz1K.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655917491449917440\/90Afhc0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655917491449917440\/90Afhc0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469062901\/1446612062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ParodiSofi","name":"S\u2661Fi","id":3329515563,"id_str":"3329515563","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869216768,"id_str":"663727795869216768","text":"The St. Louis Post-Dispatch will feature art by three High School students in its annual \"100 Neediest Cases\"... https:\/\/t.co\/qjZQlno31J","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201845082,"id_str":"201845082","name":"Webster Groves SD","screen_name":"WebsterGrovesSD","location":"Webster Groves, MO","url":"http:\/\/www.webster.k12.mo.us","description":"Webster Groves School District\r\nAdministrative Offices \r\n400 E. Lockwood Ave.\r\nWebster Groves, Mo. 63119\r\nP 314.961.1233\r\nF 314.963.6411","protected":false,"verified":false,"followers_count":1138,"friends_count":13,"listed_count":15,"favourites_count":0,"statuses_count":678,"created_at":"Tue Oct 12 19:07:55 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"050505","profile_sidebar_fill_color":"FD8701","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2648703028\/94dc5382c1b7708dff1adee108aef26c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2648703028\/94dc5382c1b7708dff1adee108aef26c_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qjZQlno31J","expanded_url":"http:\/\/fb.me\/3F7hDBPC8","display_url":"fb.me\/3F7hDBPC8","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795864932353,"id_str":"663727795864932353","text":"@T_INFINITY_K \n\n\u672c\u9593\u306b\u3001\u4e0d\u5b89\u5b9a\u306a\u3093\u306d\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715097844449280,"in_reply_to_status_id_str":"663715097844449280","in_reply_to_user_id":3097672230,"in_reply_to_user_id_str":"3097672230","in_reply_to_screen_name":"T_INFINITY_K","user":{"id":3322370755,"id_str":"3322370755","name":"\u00bb\u00bb \u8f1d\u591c .","screen_name":"Kagu__xxx","location":"1108","url":null,"description":"\uff76\uff73\uff9d\uff84\uff80\uff9e\uff73\uff9d 6","protected":false,"verified":false,"followers_count":66,"friends_count":65,"listed_count":2,"favourites_count":315,"statuses_count":2869,"created_at":"Fri Aug 21 12:15:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649884660638478336\/27X6Xyvv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649884660638478336\/27X6Xyvv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322370755\/1443779754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"T_INFINITY_K","name":"__\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3fAKOT","id":3097672230,"id_str":"3097672230","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877642242,"id_str":"663727795877642242","text":"@sirigaustad \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663536668012580864,"in_reply_to_status_id_str":"663536668012580864","in_reply_to_user_id":932591263,"in_reply_to_user_id_str":"932591263","in_reply_to_screen_name":"sirigaustad","user":{"id":580038725,"id_str":"580038725","name":"sarah j\u00f8rgensen","screen_name":"saaraahj","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":171,"friends_count":122,"listed_count":0,"favourites_count":1020,"statuses_count":2874,"created_at":"Mon May 14 16:52:19 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"no","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658542426802532352\/tRkeCJMY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658542426802532352\/tRkeCJMY_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sirigaustad","name":"siri gaustad","id":932591263,"id_str":"932591263","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080012660"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795894284288,"id_str":"663727795894284288","text":"RT @MHX_CAPCOM: \u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u306e\u4f53\u9a13\u7248\u914d\u4fe1\u304c\u6c7a\u5b9a\u3057\u307e\u3057\u305f\uff5e\uff0111\u670819\u65e5\u304b\u3089\u914d\u4fe1\u4e88\u5b9a\u3067\u3059\uff01\u65b0\u3057\u304f\u767b\u5834\u3059\u308b\u30e2\u30f3\u30b9\u30bf\u30fc\u306e\u30af\u30a8\u30b9\u30c8\u306b\u3001\u5168\u6b66\u5668\u7a2e\u3001\u5168\u72e9\u731f\u30b9\u30bf\u30a4\u30eb\u3001\u30cb\u30e3\u30f3\u30bf\u30fc\u3067\u306e\u30d7\u30ec\u30a4\u3082\u3067\u304d\u307e\u3059\u3088\uff5e\u3002https:\/\/t.co\/GEyNbVyacF https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":436783416,"id_str":"436783416","name":"\u7396\u73c2(\u304f\u304c)","screen_name":"ilish_punkrock","location":"\u4fee\u7f85\u306e\u570b","url":null,"description":"\u30b5\u30eb\u30a8\u30eb\u3068\u30e1\u30f3\u30ba\u306e\u670d\u304c\u597d\u304d\u3002\u30a2\u30fc\u30c8\u306b\u751f\u304d\u308b\u3053\u3068\u304c\u5922\u3002\u677e\u672c\u68a8\u9999\u3055\u3093\u656c\u611b\u3002\u8da3\u5473\u306f\u30a2\u30cb\u30ab\u30e9\u3068\u3088\u3055\u3053\u3044\u3068\u30b2\u30fc\u30e0\u3002\u57fa\u672c\u30e2\u30f3\u30cf\u30f3\u3068\u30dd\u30b1\u30e2\u30f3\u3067\u3059\u3002\u552f\u4e00\u597d\u304d\u306a\u30d0\u30f3\u30c9\u306fTHECHERRYCOKE$\u3002\u697d\u3057\u304f\u306a\u3044\u3053\u3068\u306f\u545f\u304b\u306a\u3044(\u3064\u3082\u308a)\u3002","protected":false,"verified":false,"followers_count":83,"friends_count":180,"listed_count":2,"favourites_count":1957,"statuses_count":6688,"created_at":"Wed Dec 14 15:35:25 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662613290250440704\/Mcv3gJx1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662613290250440704\/Mcv3gJx1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436783416\/1445173184","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:33 +0000 2015","id":663722599017353217,"id_str":"663722599017353217","text":"\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u306e\u4f53\u9a13\u7248\u914d\u4fe1\u304c\u6c7a\u5b9a\u3057\u307e\u3057\u305f\uff5e\uff0111\u670819\u65e5\u304b\u3089\u914d\u4fe1\u4e88\u5b9a\u3067\u3059\uff01\u65b0\u3057\u304f\u767b\u5834\u3059\u308b\u30e2\u30f3\u30b9\u30bf\u30fc\u306e\u30af\u30a8\u30b9\u30c8\u306b\u3001\u5168\u6b66\u5668\u7a2e\u3001\u5168\u72e9\u731f\u30b9\u30bf\u30a4\u30eb\u3001\u30cb\u30e3\u30f3\u30bf\u30fc\u3067\u306e\u30d7\u30ec\u30a4\u3082\u3067\u304d\u307e\u3059\u3088\uff5e\u3002https:\/\/t.co\/GEyNbVyacF https:\/\/t.co\/BzgJWyUPWD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":818513720,"id_str":"818513720","name":"MHX Official","screen_name":"MHX_CAPCOM","location":null,"url":"http:\/\/www.capcom.co.jp\/monsterhunter\/X\/","description":"2015\u5e7411\u670828\u65e5\uff08\u571f\uff09\u767a\u58f2\u4e88\u5b9a\u300e\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30af\u30ed\u30b9\u300f\u306e\u516c\u5f0fTwitter\u3067\u3059\u3002\u308f\u305f\u3057\u3001\u30ab\u30c6\u30a3\u304c\u6700\u65b0\u30b2\u30fc\u30e0\u60c5\u5831\u3084\u30a4\u30d9\u30f3\u30c8\u3001\u30b3\u30e9\u30dc\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u3066\u3044\u304d\u307e\u3059\uff01\u30cf\u30f3\u30bf\u30fc\u3055\u3093\u3001\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":98726,"friends_count":4,"listed_count":1508,"favourites_count":0,"statuses_count":826,"created_at":"Wed Sep 12 00:43:20 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9A71F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658229757\/fw860o9qu4g8u9nxkp49.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626982508471582720\/LMzwPjNg_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":577,"favorite_count":211,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GEyNbVyacF","expanded_url":"http:\/\/bit.ly\/1dxgRWt","display_url":"bit.ly\/1dxgRWt","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663722597507448833,"id_str":"663722597507448833","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663722597507448833,"id_str":"663722597507448833","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663722597712920576,"id_str":"663722597712920576","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL6IUAAAzybH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL6IUAAAzybH.png","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":740,"h":208,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":95,"resize":"fit"},"medium":{"w":600,"h":168,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GEyNbVyacF","expanded_url":"http:\/\/bit.ly\/1dxgRWt","display_url":"bit.ly\/1dxgRWt","indices":[108,131]}],"user_mentions":[{"screen_name":"MHX_CAPCOM","name":"MHX Official","id":818513720,"id_str":"818513720","indices":[3,14]}],"symbols":[],"media":[{"id":663722597507448833,"id_str":"663722597507448833","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722599017353217,"source_status_id_str":"663722599017353217","source_user_id":818513720,"source_user_id_str":"818513720"}]},"extended_entities":{"media":[{"id":663722597507448833,"id_str":"663722597507448833","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL5XUwAEZfqc.jpg","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722599017353217,"source_status_id_str":"663722599017353217","source_user_id":818513720,"source_user_id_str":"818513720"},{"id":663722597712920576,"id_str":"663722597712920576","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEL6IUAAAzybH.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEL6IUAAAzybH.png","url":"https:\/\/t.co\/BzgJWyUPWD","display_url":"pic.twitter.com\/BzgJWyUPWD","expanded_url":"http:\/\/twitter.com\/MHX_CAPCOM\/status\/663722599017353217\/photo\/1","type":"photo","sizes":{"large":{"w":740,"h":208,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":95,"resize":"fit"},"medium":{"w":600,"h":168,"resize":"fit"}},"source_status_id":663722599017353217,"source_status_id_str":"663722599017353217","source_user_id":818513720,"source_user_id_str":"818513720"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012664"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795885899776,"id_str":"663727795885899776","text":"\u30bf\u30ef\u30ec\u30b3\u3044\u304d\u3066\u3048\u3048\u3048\u3048\u3048\u3048\u301c\u301c\u301c\u301c\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723606580,"id_str":"2723606580","name":"\u3068\u306b\u304b\u304f\u660e\u308b\u3044\u7690\u6708","screen_name":"S_luuv_D","location":"\u5b89\u5fc3\u3057\u3066\u304f\u3060\u3055\u3044\u3001\u30b9\u30d1\u30c3\u30c4\u3067\u3059\u3088","url":"http:\/\/twpf.jp\/S_luuv_D","description":"\u53d7\u9a13\u300c\u541b\u304c\u30c3\u6ce3\u3044\u3066\u3082\u30c3\u6bb4\u308b\u306e\u3092\u30c3\u3084\u3081\u306a\u3044\u30c3\u300d\u96d1\u98df\u6027\u306e17\u6b7316\u30f6\u6708\u3067\u3059\n Instagram\u21e2satuki_1235","protected":false,"verified":false,"followers_count":164,"friends_count":589,"listed_count":5,"favourites_count":9842,"statuses_count":29737,"created_at":"Mon Aug 11 10:13:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631282324332634113\/dL3GpIoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631282324332634113\/dL3GpIoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723606580\/1433322078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012662"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795894398976,"id_str":"663727795894398976","text":"RT @56Magali: VAMOOOOS RECLUTENSEEEEN\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/gz3emfEw83","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3424973002,"id_str":"3424973002","name":"Nath\u2665","screen_name":"CloseToMeLali","location":"Espa\u00f1a","url":null,"description":"\u2206Yo me muero por vos\u27a1 LaliEspos \u00d7\u00d73-11-15\u00d7\u00d7 ~MARIALI IS REAL, BITCH~\nEse es mi hombre&Faltan Lala y Marian \u2665Gobernadasxlali\u2665","protected":false,"verified":false,"followers_count":344,"friends_count":558,"listed_count":2,"favourites_count":932,"statuses_count":3375,"created_at":"Sat Aug 15 23:12:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662728930378407936\/wV3Q__yO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662728930378407936\/wV3Q__yO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3424973002\/1439855866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:48 +0000 2015","id":663726937593028608,"id_str":"663726937593028608","text":"VAMOOOOS RECLUTENSEEEEN\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/gz3emfEw83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851865908,"id_str":"851865908","name":"Meli|Lalita","screen_name":"56Magali","location":"Florencio Varela, Argentina","url":null,"description":"Reir te salva\u2764|| Lalita || AGUANTE MARIALI VIEJO|| 03-11-15|| Llevo su sonrisa como bandera, y que sea lo que sea.|| 12 a\u00f1os|| No estoy sola. MORIDAA","protected":false,"verified":false,"followers_count":326,"friends_count":401,"listed_count":3,"favourites_count":8473,"statuses_count":7824,"created_at":"Fri Sep 28 22:55:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851865908\/1446398426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":2,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[53,68]},{"text":"MejorFandom","indices":[69,81]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[24,40]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[41,52]}],"symbols":[],"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[67,82]},{"text":"MejorFandom","indices":[83,95]}],"urls":[],"user_mentions":[{"screen_name":"56Magali","name":"Meli|Lalita","id":851865908,"id_str":"851865908","indices":[3,12]},{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[38,54]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[55,66]}],"symbols":[],"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726937593028608,"source_status_id_str":"663726937593028608","source_user_id":851865908,"source_user_id_str":"851865908"}]},"extended_entities":{"media":[{"id":663726936229863425,"id_str":"663726936229863425","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIcXW4AErUBc.jpg","url":"https:\/\/t.co\/gz3emfEw83","display_url":"pic.twitter.com\/gz3emfEw83","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663726937593028608\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726937593028608,"source_status_id_str":"663726937593028608","source_user_id":851865908,"source_user_id_str":"851865908"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080012664"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795890098176,"id_str":"663727795890098176","text":"\u606f\u5b50\u306e\u5b66\u6821\u3067\u306e\u69d8\u5b50\u3084\u672c\u4eba\u306e\u8a00\u3044\u5206\u3001\u5b66\u6821\u306b\u884c\u304d\u305f\u304f\u306a\u3044\u3068\u8a00\u3063\u3066\u3044\u308b\u4ef6\u306b\u3064\u3044\u3066\u65e6\u90a3\u306b\u8a71\u3059\u3082\u300c\u7d50\u5c40\u4ffa\u304c\u4f55\u8a00\u3063\u3066\u3082\u3001\u304a\u524d\u306f\u300e\u81ea\u5206\u306e\u65b9\u304c\u52c9\u5f37\u3057\u3066\u308b\u3057\u308f\u304b\u3063\u3066\u308b\u300f\u3063\u3066\u3001\u81ea\u5206\u3067\u6c7a\u3081\u308b\u3093\u3084\u3093\u3002\u4ffa\u3001\u305d\u306e\u8a71\u805e\u3044\u3066\u3082\u7121\u99c4\u3084\u3093\u3002\u300d\u3068\u8a00\u3063\u3066\u5341\u5206\u306b\u805e\u3053\u3046\u3068\u3057\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2452094226,"id_str":"2452094226","name":"\u3044\u3051\u3055\u3093","screen_name":"ike_temp","location":null,"url":null,"description":"\u7523\u307e\u308c\u305f\u3068\u304d\u304b\u3089\u4e0d\u601d\u8b70\u3061\u3083\u3093\u3060\u3063\u305f\u606f\u5b50\uff08H19\u751f\uff09\u306e\u60c5\u5831\u767a\u4fe1\uff06\u60c5\u5831\u53ce\u96c6\u7528\u30a2\u30ab\u30a6\u30f3\u30c8","protected":false,"verified":false,"followers_count":29,"friends_count":47,"listed_count":1,"favourites_count":1,"statuses_count":1287,"created_at":"Sat Apr 19 00:10:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459879887805759489\/xasNOSTU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459879887805759489\/xasNOSTU_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012663"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877642240,"id_str":"663727795877642240","text":"RT @thebestvocal: @justinbieber - sorry https:\/\/t.co\/KvBxoHoeSP","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":897454195,"id_str":"897454195","name":"TYSFM JUSTIN BIEBER","screen_name":"Feevling","location":"\u300aAHS|Skins|PLL obsessed\u300bAnita","url":"https:\/\/twitter.com\/patri_h99\/status\/572836701980262402","description":"Is that so wrong? Is it so wrong? That you make me strong @edsheeran @ddlovato @onedirection @5sos @justinbieber @HeyViolet 2\/5 @shawnmendes \ufe0f #Zquad \u27081.440 km","protected":false,"verified":false,"followers_count":5466,"friends_count":3831,"listed_count":12,"favourites_count":4139,"statuses_count":25198,"created_at":"Mon Oct 22 12:18:08 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/877255621\/a6f3127ff5a01900adb1318942dceb99.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/877255621\/a6f3127ff5a01900adb1318942dceb99.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"0099B9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659839673578201088\/AgjQYgob_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659839673578201088\/AgjQYgob_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/897454195\/1446153000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:20:10 +0000 2015","id":663662355193192449,"id_str":"663662355193192449","text":"@justinbieber - sorry https:\/\/t.co\/KvBxoHoeSP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":27260086,"in_reply_to_user_id_str":"27260086","in_reply_to_screen_name":"justinbieber","user":{"id":3297532323,"id_str":"3297532323","name":"Stunning Vocals","screen_name":"thebestvocal","location":null,"url":"https:\/\/twitter.com\/thebestvocal\/status\/608362576985116672","description":"''@thebestvocal + the name of your fav '' and click on video for watch all my tweets '' \u2022 @bestmashup","protected":false,"verified":false,"followers_count":28662,"friends_count":291,"listed_count":44,"favourites_count":121,"statuses_count":908,"created_at":"Mon May 25 08:43:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654294363112099841\/mQm-i--3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654294363112099841\/mQm-i--3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297532323\/1436189572","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":127,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[0,13]}],"symbols":[],"media":[{"id":663581846794432512,"id_str":"663581846794432512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","url":"https:\/\/t.co\/KvBxoHoeSP","display_url":"pic.twitter.com\/KvBxoHoeSP","expanded_url":"http:\/\/twitter.com\/JAUREGUIBlEBER\/status\/663582435087532032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663582435087532032,"source_status_id_str":"663582435087532032","source_user_id":947051730,"source_user_id_str":"947051730"}]},"extended_entities":{"media":[{"id":663581846794432512,"id_str":"663581846794432512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","url":"https:\/\/t.co\/KvBxoHoeSP","display_url":"pic.twitter.com\/KvBxoHoeSP","expanded_url":"http:\/\/twitter.com\/JAUREGUIBlEBER\/status\/663582435087532032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663582435087532032,"source_status_id_str":"663582435087532032","source_user_id":947051730,"source_user_id_str":"947051730","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/320x180\/R7HwFpvi7cU7lLja.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/pl\/7PgWLmYigvIfn-Z_.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/640x360\/KUCTiYLXdPdNtBnT.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/640x360\/KUCTiYLXdPdNtBnT.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/1280x720\/dQIqetPep7AqEN2P.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/pl\/7PgWLmYigvIfn-Z_.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thebestvocal","name":"Stunning Vocals","id":3297532323,"id_str":"3297532323","indices":[3,16]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[18,31]}],"symbols":[],"media":[{"id":663581846794432512,"id_str":"663581846794432512","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","url":"https:\/\/t.co\/KvBxoHoeSP","display_url":"pic.twitter.com\/KvBxoHoeSP","expanded_url":"http:\/\/twitter.com\/JAUREGUIBlEBER\/status\/663582435087532032\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663582435087532032,"source_status_id_str":"663582435087532032","source_user_id":947051730,"source_user_id_str":"947051730"}]},"extended_entities":{"media":[{"id":663581846794432512,"id_str":"663581846794432512","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663581846794432512\/pu\/img\/3-tp3g9Jt-miMIQK.jpg","url":"https:\/\/t.co\/KvBxoHoeSP","display_url":"pic.twitter.com\/KvBxoHoeSP","expanded_url":"http:\/\/twitter.com\/JAUREGUIBlEBER\/status\/663582435087532032\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663582435087532032,"source_status_id_str":"663582435087532032","source_user_id":947051730,"source_user_id_str":"947051730","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/320x180\/R7HwFpvi7cU7lLja.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/pl\/7PgWLmYigvIfn-Z_.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/640x360\/KUCTiYLXdPdNtBnT.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/640x360\/KUCTiYLXdPdNtBnT.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/vid\/1280x720\/dQIqetPep7AqEN2P.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663581846794432512\/pu\/pl\/7PgWLmYigvIfn-Z_.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012660"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795873296384,"id_str":"663727795873296384","text":"On? RT!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2549277248,"id_str":"2549277248","name":"NEW AFTER LEAVE","screen_name":"ciiisana","location":null,"url":null,"description":"Anu, baru bangun lgsg ganti chara kga napa kan? :D","protected":false,"verified":false,"followers_count":775,"friends_count":882,"listed_count":0,"favourites_count":6,"statuses_count":3940,"created_at":"Fri Jun 06 05:06:51 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708091418996736\/NttAgmL8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708091418996736\/NttAgmL8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2549277248\/1447075349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012659"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869192192,"id_str":"663727795869192192","text":"RT @ingridMPWL: Juntos temos uma hist\u00f3ria de amor que n\u00e3o colocamos a palavra fim!#CCA #Mal\u00fayJM De volta ao @SBTonline @MaiteOficial https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307667638,"id_str":"3307667638","name":"N\u00e9ia","screen_name":"Neia_LR","location":"Brasil","url":null,"description":"Vive hoy porque ma\u00f1ana le pertenece a Dios. F\u00e3 William Levy\/Maite Perroni\/LR\u2764\ufe0f Por siempre mi amor, por siempre. @willylevy29 @MaiteOficial","protected":false,"verified":false,"followers_count":264,"friends_count":246,"listed_count":0,"favourites_count":10467,"statuses_count":12603,"created_at":"Thu Jun 04 00:26:42 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651237644173643777\/ppNpIIg8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651237644173643777\/ppNpIIg8.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656952214951432192\/ULXqPOq-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656952214951432192\/ULXqPOq-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307667638\/1444277804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727657721446400,"id_str":"663727657721446400","text":"Juntos temos uma hist\u00f3ria de amor que n\u00e3o colocamos a palavra fim!#CCA #Mal\u00fayJM De volta ao @SBTonline @MaiteOficial https:\/\/t.co\/YQkI0AVpRQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276140895,"id_str":"276140895","name":"\u2665Ingrid MP|WL\u2764","screen_name":"ingridMPWL","location":"Brasil","url":null,"description":"FC dedicado a WilliamLevy e Maite Perroni..los amo Levyrroni \u2661 #AMQL \n#ResidentEvilTheFinalChapter \n#TheVeilFilm2015 #NiLocaVuelvoATi\n100%PerronitaLevynatica \u2764\u2764","protected":false,"verified":false,"followers_count":1842,"friends_count":1386,"listed_count":5,"favourites_count":7680,"statuses_count":13634,"created_at":"Sat Apr 02 18:53:43 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616020668463874048\/kW01wpm6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616020668463874048\/kW01wpm6.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663402943413112837\/huW6p1zS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663402943413112837\/huW6p1zS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276140895\/1447002560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"CCA","indices":[66,70]},{"text":"Mal\u00fayJM","indices":[71,79]}],"urls":[],"user_mentions":[{"screen_name":"SBTonline","name":"SBT Online","id":20600456,"id_str":"20600456","indices":[92,102]},{"screen_name":"MaiteOficial","name":"Maite Perroni B","id":64477046,"id_str":"64477046","indices":[103,116]}],"symbols":[],"media":[{"id":663727641623592960,"id_str":"663727641623592960","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","url":"https:\/\/t.co\/YQkI0AVpRQ","display_url":"pic.twitter.com\/YQkI0AVpRQ","expanded_url":"http:\/\/twitter.com\/ingridMPWL\/status\/663727657721446400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":717,"h":504,"resize":"fit"},"medium":{"w":600,"h":421,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727641623592960,"id_str":"663727641623592960","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","url":"https:\/\/t.co\/YQkI0AVpRQ","display_url":"pic.twitter.com\/YQkI0AVpRQ","expanded_url":"http:\/\/twitter.com\/ingridMPWL\/status\/663727657721446400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":717,"h":504,"resize":"fit"},"medium":{"w":600,"h":421,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CCA","indices":[82,86]},{"text":"Mal\u00fayJM","indices":[87,95]}],"urls":[],"user_mentions":[{"screen_name":"ingridMPWL","name":"\u2665Ingrid MP|WL\u2764","id":276140895,"id_str":"276140895","indices":[3,14]},{"screen_name":"SBTonline","name":"SBT Online","id":20600456,"id_str":"20600456","indices":[108,118]},{"screen_name":"MaiteOficial","name":"Maite Perroni B","id":64477046,"id_str":"64477046","indices":[119,132]}],"symbols":[],"media":[{"id":663727641623592960,"id_str":"663727641623592960","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","url":"https:\/\/t.co\/YQkI0AVpRQ","display_url":"pic.twitter.com\/YQkI0AVpRQ","expanded_url":"http:\/\/twitter.com\/ingridMPWL\/status\/663727657721446400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":717,"h":504,"resize":"fit"},"medium":{"w":600,"h":421,"resize":"fit"}},"source_status_id":663727657721446400,"source_status_id_str":"663727657721446400","source_user_id":276140895,"source_user_id_str":"276140895"}]},"extended_entities":{"media":[{"id":663727641623592960,"id_str":"663727641623592960","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxgKVAAAsw4u.jpg","url":"https:\/\/t.co\/YQkI0AVpRQ","display_url":"pic.twitter.com\/YQkI0AVpRQ","expanded_url":"http:\/\/twitter.com\/ingridMPWL\/status\/663727657721446400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":717,"h":504,"resize":"fit"},"medium":{"w":600,"h":421,"resize":"fit"}},"source_status_id":663727657721446400,"source_status_id_str":"663727657721446400","source_user_id":276140895,"source_user_id_str":"276140895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881701376,"id_str":"663727795881701376","text":"follow nyo daw @ImYayaDub . Ganda ng mga tweets.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687308928,"id_str":"2687308928","name":"marco jason ballarta","screen_name":"JasonBallarta","location":"Cavite city","url":null,"description":"I'm Perfectly IMPERFECT :D || Always be Real 3","protected":false,"verified":false,"followers_count":47,"friends_count":214,"listed_count":0,"favourites_count":120,"statuses_count":511,"created_at":"Mon Jul 28 11:37:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656349288126017537\/tQxTUK3M.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656349288126017537\/tQxTUK3M.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657779890901553153\/yfxUsa0n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657779890901553153\/yfxUsa0n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687308928\/1445661920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6830d9a4aa39acef","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6830d9a4aa39acef.json","place_type":"admin","name":"Western Visayas","full_name":"Western Visayas, Republic of the Philippines","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[121.282495,9.421259],[121.282495,12.121616],[123.572459,12.121616],[123.572459,9.421259]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ImYayaDub","name":"Yaya Dub","id":2493750708,"id_str":"2493750708","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795873447936,"id_str":"663727795873447936","text":"RT @__Mahra__: \ud83d\udcad .. \u064a\u0642\u0648\u0644 \u0628\u0646 \u0633\u0648\u0642\u0627\u062a \n\n\u064a\u0627 \u063a\u0636 \u064a\u0627 \u062a\u0631\u0641 \u0627\u0644\u062a\u0631\u0627\u064a\u0641 \u062e\u0644\u0646\u0627\n\u0648\u064a\u0627\u0643 \u0639\u0646 \u0645\u0646 \u0644\u0627\u0645\u0646\u0627 \u0641\u064a \u0648\u0627\u062f\u064a\n\n\u0646\u0635\u0628\u062d \u0648\u0646\u0645\u0633\u064a \u0641\u064a \u0633\u0639\u0627\u062f\u0627\u062a \u0648\u0647\u0646\u0627\n\u0648\u0647\u0648 \u0641\u064a \u0642\u0644\u0628\u0647 \u0633\u0627\u0639\u0631\u064d \u0648\u0642\u0627\u062f\u064a .\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3053149430,"id_str":"3053149430","name":"BN MOHAMMED","screen_name":"m3707070","location":null,"url":null,"description":"\u064a\u064e \u0639\u0653\u0633\u0649 \u0645\u0650\u0646 \u0645\u0640\u0622\u062a \u0648 \ufe8e\u0644\u0652\u0639\u064a\u0646 \u00a1| \u062a\u0653\u0628\u06af\u064a\u06c1 \u061b \u0641\u0650\u064a \u062c\u0646\u0640\u06c3 \ufe8e\u0644\u0641\u0631\u062f\u0648\u0670\u0633 \u062a\u0653\u0645\u0634\u064a \u0645\u0648\u0670\ufe8e\u0637\u0650\u064a\u06c1","protected":false,"verified":false,"followers_count":219,"friends_count":599,"listed_count":0,"favourites_count":227,"statuses_count":6452,"created_at":"Sun Mar 01 17:35:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660117459505184768\/TnXVhvMQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660117459505184768\/TnXVhvMQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3053149430\/1444377643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:39:01 +0000 2015","id":663440608678277120,"id_str":"663440608678277120","text":"\ud83d\udcad .. \u064a\u0642\u0648\u0644 \u0628\u0646 \u0633\u0648\u0642\u0627\u062a \n\n\u064a\u0627 \u063a\u0636 \u064a\u0627 \u062a\u0631\u0641 \u0627\u0644\u062a\u0631\u0627\u064a\u0641 \u062e\u0644\u0646\u0627\n\u0648\u064a\u0627\u0643 \u0639\u0646 \u0645\u0646 \u0644\u0627\u0645\u0646\u0627 \u0641\u064a \u0648\u0627\u062f\u064a\n\n\u0646\u0635\u0628\u062d \u0648\u0646\u0645\u0633\u064a \u0641\u064a \u0633\u0639\u0627\u062f\u0627\u062a \u0648\u0647\u0646\u0627\n\u0648\u0647\u0648 \u0641\u064a \u0642\u0644\u0628\u0647 \u0633\u0627\u0639\u0631\u064d \u0648\u0642\u0627\u062f\u064a ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":554158814,"id_str":"554158814","name":"\u2022 \u00bb \u0645\u0647\u0631\u0647","screen_name":"__Mahra__","location":"UAE ","url":"http:\/\/ask.fm\/memo__royal","description":"\u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0646\u0627\u062f\u0631\u0627 ..! \u0635\u062f\u064a\u0642\u0629 \u0627\u0644\u062d\u0631\u0641 \u0648\u0627\u0628\u0646\u0629 \u0627\u0644\u0634\u0639\u0631 \u0647\u0646\u0627\u0643 .. \u0627\u0645\u0627 \u0647\u0646\u0627 \u0642\u062f \u0623\u0643\u0648\u0646 \u0645\u0644\u0647\u0645\u0647 \u0644\u0623\u062d\u062f\u0647\u0645 ..! \u0641\u0648\u0636\u0648\u064a\u0647 \u0647\u0627\u062f\u0626\u0647 .. \u0648\u0641\u0627\u0631\u0633\u0647 \u0627\u0646 \u0644\u0632\u0645 \u0627\u0644\u0623\u0645\u0631 ..!","protected":false,"verified":false,"followers_count":4643,"friends_count":196,"listed_count":2,"favourites_count":776,"statuses_count":28639,"created_at":"Sun Apr 15 07:33:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/531002168\/_________ss_m_afa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/531002168\/_________ss_m_afa.jpg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652002852320223232\/v_BAEoBo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652002852320223232\/v_BAEoBo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/554158814\/1446892624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__Mahra__","name":"\u2022 \u00bb \u0645\u0647\u0631\u0647","id":554158814,"id_str":"554158814","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080012659"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795902656513,"id_str":"663727795902656513","text":"RT @actorjisoo_th: \u0e1e\u0e23\u0e38\u0e48\u0e07\u0e19\u0e35\u0e49 #\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19 \u0e21\u0e35\u0e40\u0e14\u0e37\u0e2d\u0e14\u0e41\u0e19\u0e48\u0e19\u0e2d\u0e19\u0e04\u0e48\u0e30 100% \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #SassyGoGo #CheerUp (\u00a9:sassygogo_kbs) https:\/\/t.co\/ekdYqh9Ki0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413856906,"id_str":"413856906","name":"ChOmPoO~MT","screen_name":"ChompooDamma","location":null,"url":null,"description":"\u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e44\u0e1b\u0e04\u0e2d\u0e19 \u0e23\u0e2d\u0e1e\u0e35\u0e48\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e21\u0e32\u0e2a\u0e39\u0e48\u0e02\u0e2d(?).. \n\u0e1f\u0e2d\u0e25\u0e41\u0e2d\u0e04\u0e43\u0e2b\u0e21\u0e48\u0e40\u0e23\u0e32\u0e14\u0e49\u0e27\u0e22\u0e2a\u0e34\u0e40\u0e18\u0e2d @chompoodamma39","protected":false,"verified":false,"followers_count":253,"friends_count":181,"listed_count":0,"favourites_count":1134,"statuses_count":25712,"created_at":"Wed Nov 16 10:22:56 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599495725194477568\/OcyBkeYW.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599495725194477568\/OcyBkeYW.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662646400014921730\/ROuBVwW5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662646400014921730\/ROuBVwW5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413856906\/1433776016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:39 +0000 2015","id":663727406302167040,"id_str":"663727406302167040","text":"\u0e1e\u0e23\u0e38\u0e48\u0e07\u0e19\u0e35\u0e49 #\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19 \u0e21\u0e35\u0e40\u0e14\u0e37\u0e2d\u0e14\u0e41\u0e19\u0e48\u0e19\u0e2d\u0e19\u0e04\u0e48\u0e30 100% \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #SassyGoGo #CheerUp (\u00a9:sassygogo_kbs) https:\/\/t.co\/ekdYqh9Ki0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178685128,"id_str":"3178685128","name":"KIMJISOO_THAILAND\u2661","screen_name":"actorjisoo_th","location":"\\\\ \u3161 \u2661 Luv Index \u3161 \/\/","url":"http:\/\/Instagram.com\/actor_jisoo","description":"\u2575\u2661 ACTOR KIM JISOO(\uc9c0\uc218)THAILAND FANBASE , 30 MARCH 1993 , PLEASE SUPPORT KIM JISOO \u2661\u2661 PLEASE TAKE OUT WITH FULL CREDIT\u2661\u2575 #\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19 #sassygogo #CheerUp","protected":false,"verified":false,"followers_count":2062,"friends_count":11,"listed_count":7,"favourites_count":13,"statuses_count":667,"created_at":"Sat Apr 18 05:20:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BCD2D1","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662193164803923968\/iwrrZDv7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662193164803923968\/iwrrZDv7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178685128\/1445359771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19","indices":[9,18]},{"text":"SassyGoGo","indices":[51,61]},{"text":"CheerUp","indices":[62,70]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727387448729602,"id_str":"663727387448729602","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727387448729602,"id_str":"663727387448729602","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}}},{"id":663727387591380993,"id_str":"663727387591380993","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIit0VEAEVkyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIit0VEAEVkyN.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":748,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"}}},{"id":663727387306123268,"id_str":"663727387306123268","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiswUYAQ8lOv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiswUYAQ8lOv.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}}},{"id":663727387792637952,"id_str":"663727387792637952","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiukUAAA-2Fq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiukUAAA-2Fq.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":749,"h":409,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19","indices":[28,37]},{"text":"SassyGoGo","indices":[70,80]},{"text":"CheerUp","indices":[81,89]}],"urls":[],"user_mentions":[{"screen_name":"actorjisoo_th","name":"KIMJISOO_THAILAND\u2661","id":3178685128,"id_str":"3178685128","indices":[3,17]}],"symbols":[],"media":[{"id":663727387448729602,"id_str":"663727387448729602","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}},"source_status_id":663727406302167040,"source_status_id_str":"663727406302167040","source_user_id":3178685128,"source_user_id_str":"3178685128"}]},"extended_entities":{"media":[{"id":663727387448729602,"id_str":"663727387448729602","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIitSUYAIjCN8.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}},"source_status_id":663727406302167040,"source_status_id_str":"663727406302167040","source_user_id":3178685128,"source_user_id_str":"3178685128"},{"id":663727387591380993,"id_str":"663727387591380993","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIit0VEAEVkyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIit0VEAEVkyN.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":748,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"}},"source_status_id":663727406302167040,"source_status_id_str":"663727406302167040","source_user_id":3178685128,"source_user_id_str":"3178685128"},{"id":663727387306123268,"id_str":"663727387306123268","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiswUYAQ8lOv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiswUYAQ8lOv.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"large":{"w":749,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"}},"source_status_id":663727406302167040,"source_status_id_str":"663727406302167040","source_user_id":3178685128,"source_user_id_str":"3178685128"},{"id":663727387792637952,"id_str":"663727387792637952","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiukUAAA-2Fq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiukUAAA-2Fq.jpg","url":"https:\/\/t.co\/ekdYqh9Ki0","display_url":"pic.twitter.com\/ekdYqh9Ki0","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727406302167040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":749,"h":409,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":663727406302167040,"source_status_id_str":"663727406302167040","source_user_id":3178685128,"source_user_id_str":"3178685128"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080012666"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795864887297,"id_str":"663727795864887297","text":"@QDO93_ \u0e07\u0e37\u0e2d.-.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718670447677441,"in_reply_to_status_id_str":"663718670447677441","in_reply_to_user_id":1128452058,"in_reply_to_user_id_str":"1128452058","in_reply_to_screen_name":"QDO93_","user":{"id":3195320598,"id_str":"3195320598","name":"bena ft. jamix","screen_name":"benaxx_","location":"@ jamix_hx","url":null,"description":"\u24d1\u24d4\u24dd\u24d0 | #\u0e22\u0e37\u0e21\u0e40\u0e21\u0e08 | status : study hard ,_,","protected":false,"verified":false,"followers_count":224,"friends_count":139,"listed_count":0,"favourites_count":129,"statuses_count":6078,"created_at":"Thu May 14 14:23:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663598343717715968\/YxGEXMiJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663598343717715968\/YxGEXMiJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195320598\/1446104816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QDO93_","name":"w\u0454\u029f\u029f\u0280","id":1128452058,"id_str":"1128452058","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795902656512,"id_str":"663727795902656512","text":"(\/*\u00b4\u03c9`*)\/ cieeeee @waiko_bot @Kim_shou_bot mesra amat tiap hari #plak","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440603805,"id_str":"440603805","name":"Rara Kimine","screen_name":"RaraKimine_bot","location":"corner","url":"http:\/\/utau.wikia.com\/wiki\/Rara_Kimine","description":"an utau,6th model of hoodieloid. Likes food,stalking and spamming. My creator is @raraisyahumaira . Nice to meet you","protected":false,"verified":false,"followers_count":301,"friends_count":402,"listed_count":3,"favourites_count":0,"statuses_count":92889,"created_at":"Mon Dec 19 06:04:42 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000345684063\/e7b06b3e83d7c1f9928182752b297363_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000345684063\/e7b06b3e83d7c1f9928182752b297363_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"plak","indices":[64,69]}],"urls":[],"user_mentions":[{"screen_name":"waiko_bot","name":"Waiko","id":386404247,"id_str":"386404247","indices":[18,28]},{"screen_name":"Kim_shou_bot","name":"Kim Shou","id":592681549,"id_str":"592681549","indices":[29,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447080012666"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898445825,"id_str":"663727795898445825","text":"RT @BiafraHerald: A CASE OF NORTHERN HATRED https:\/\/t.co\/SnTIL2eGHl https:\/\/t.co\/LWJMdHTnZj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3261263833,"id_str":"3261263833","name":"Blessed sunny","screen_name":"blessedsunny65","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":100,"friends_count":36,"listed_count":5,"favourites_count":0,"statuses_count":11105,"created_at":"Tue Jun 30 11:07:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657173617726353408\/2OHf-bro_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657173617726353408\/2OHf-bro_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:08:36 +0000 2015","id":662375986458030082,"id_str":"662375986458030082","text":"A CASE OF NORTHERN HATRED https:\/\/t.co\/SnTIL2eGHl https:\/\/t.co\/LWJMdHTnZj","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3149895787,"id_str":"3149895787","name":"Biafra Herald","screen_name":"BiafraHerald","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1542,"friends_count":60,"listed_count":2,"favourites_count":0,"statuses_count":1079,"created_at":"Sat Apr 11 13:49:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3149895787\/1429965780","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":550,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SnTIL2eGHl","expanded_url":"http:\/\/dlvr.it\/Cfw5vw","display_url":"dlvr.it\/Cfw5vw","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":662375986357338114,"id_str":"662375986357338114","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","url":"https:\/\/t.co\/LWJMdHTnZj","display_url":"pic.twitter.com\/LWJMdHTnZj","expanded_url":"http:\/\/twitter.com\/BiafraHerald\/status\/662375986458030082\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":321,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662375986357338114,"id_str":"662375986357338114","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","url":"https:\/\/t.co\/LWJMdHTnZj","display_url":"pic.twitter.com\/LWJMdHTnZj","expanded_url":"http:\/\/twitter.com\/BiafraHerald\/status\/662375986458030082\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":321,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":321,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SnTIL2eGHl","expanded_url":"http:\/\/dlvr.it\/Cfw5vw","display_url":"dlvr.it\/Cfw5vw","indices":[44,67]}],"user_mentions":[{"screen_name":"BiafraHerald","name":"Biafra Herald","id":3149895787,"id_str":"3149895787","indices":[3,16]}],"symbols":[],"media":[{"id":662375986357338114,"id_str":"662375986357338114","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","url":"https:\/\/t.co\/LWJMdHTnZj","display_url":"pic.twitter.com\/LWJMdHTnZj","expanded_url":"http:\/\/twitter.com\/BiafraHerald\/status\/662375986458030082\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":321,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":321,"resize":"fit"}},"source_status_id":662375986458030082,"source_status_id_str":"662375986458030082","source_user_id":3149895787,"source_user_id_str":"3149895787"}]},"extended_entities":{"media":[{"id":662375986357338114,"id_str":"662375986357338114","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTE7cz6UAAIzuMh.jpg","url":"https:\/\/t.co\/LWJMdHTnZj","display_url":"pic.twitter.com\/LWJMdHTnZj","expanded_url":"http:\/\/twitter.com\/BiafraHerald\/status\/662375986458030082\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":321,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":321,"resize":"fit"}},"source_status_id":662375986458030082,"source_status_id_str":"662375986458030082","source_user_id":3149895787,"source_user_id_str":"3149895787"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881664512,"id_str":"663727795881664512","text":"\u30a4\u30f3\u30b9\u30bf\u307f\u3093\u306a\u306e\u898b\u305f\u3044\u3051\u3069 \u81ea\u5206\u306e\u304a\u306b\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u3059\u304e\u3066(\u00b4\uff65_\uff65`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3249507428,"id_str":"3249507428","name":"\u304a\u307f\u3055\u3055\u3055\u3055\u3055","screen_name":"kimym10824","location":"\u3044\u3047\u3063\u3061\u3083\u3093","url":null,"description":"95Line \u3000oita\u2668 \u7f8e\u5bb9\u5e2b\u306e\u30bf\u30de\u30b4\u2702 \nKRY 06.17 \u3044\u3047\u3063\u3061\u3083\u3093\u306e\u304a\u3066\u3066\u63e1\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f \u4f59\u97fb\u306b\u6d78\u308a\u304c\u3061","protected":false,"verified":false,"followers_count":112,"friends_count":128,"listed_count":1,"favourites_count":1920,"statuses_count":4244,"created_at":"Fri Jun 19 05:23:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662949175399575552\/MtMniur9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662949175399575552\/MtMniur9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3249507428\/1441294520","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869253632,"id_str":"663727795869253632","text":"@KR4LL17 Senin yatacak yerin yok serefsiz s\u00fcnnetsiz alcak vatan haini pic fetos,ALLAHIM senin belani \u00f6yle 1 versinki kiyamete kadar yanasin.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724608793780224,"in_reply_to_status_id_str":"663724608793780224","in_reply_to_user_id":1685786695,"in_reply_to_user_id_str":"1685786695","in_reply_to_screen_name":"KR4LL17","user":{"id":3292982223,"id_str":"3292982223","name":"Emir","screen_name":"EmirGececie","location":"\u2764\ufe0fNESET ERTAS FANATiGi\u2764\ufe0f","url":null,"description":"Elhamdulillah M\u00dcSL\u00dcMANIM,ne mutlu T\u00dcRK\u00dcM,ALLAHIMA s\u00fck\u00fcrler olsun CiM BOM luyum,bu \u00fccl\u00fcy\u00fc bir arada her kuluna nasip etmez y\u00fcce RABBiM.","protected":false,"verified":false,"followers_count":1413,"friends_count":1376,"listed_count":0,"favourites_count":1307,"statuses_count":5610,"created_at":"Thu May 21 14:00:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626648233469681664\/KtwLsQbF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626648233469681664\/KtwLsQbF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292982223\/1435889432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KR4LL17","name":"%49.5 Kayyum R\u00a3\u0130S","id":1685786695,"id_str":"1685786695","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898462208,"id_str":"663727795898462208","text":"RT @GamersGains: GAMER FOLLOW TRAIN\n\n(1) Follow Me\n(2) Retweet This\n(3) Follow All Who Retweet\n(4) Gain Active Gamer Friends\n\nRETWEET TO GA\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3311619740,"id_str":"3311619740","name":"\u2764Purpose\u2764","screen_name":"ExoticaBieber","location":null,"url":null,"description":"BELIEBER since 2010.In 2010 I made a promise to support justin and look I'm still there..BIEBER FEVER IS FOREVER HE WILL NOTICE ME SOMEDAY.\n@allisimpson follows","protected":false,"verified":false,"followers_count":1969,"friends_count":2109,"listed_count":6,"favourites_count":729,"statuses_count":4201,"created_at":"Mon Aug 10 15:46:40 +0000 2015","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631080445510193153\/-oNYo2Ms.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631080445510193153\/-oNYo2Ms.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660750258419273728\/DWBINbfx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660750258419273728\/DWBINbfx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311619740\/1446370300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:12 +0000 2015","id":663726537661771777,"id_str":"663726537661771777","text":"GAMER FOLLOW TRAIN\n\n(1) Follow Me\n(2) Retweet This\n(3) Follow All Who Retweet\n(4) Gain Active Gamer Friends\n\nRETWEET TO GAIN \u27051784","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2738112086,"id_str":"2738112086","name":"Gamer Follow Trains","screen_name":"GamersGains","location":"*TURN NOTIFICATIONS ON*","url":"http:\/\/www.myfire.co\/gamer","description":"\u25cf Gamer Follow Trains Every 30 by @RegalRetweet \u25cf Grow your community and find new gamer friends! Just retweet trains and follow everyone who does!","protected":false,"verified":false,"followers_count":98982,"friends_count":21408,"listed_count":44,"favourites_count":14,"statuses_count":3453,"created_at":"Sat Aug 16 20:48:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651040400161964032\/iPExGd7I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651040400161964032\/iPExGd7I_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2738112086\/1444072376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GamersGains","name":"Gamer Follow Trains","id":2738112086,"id_str":"2738112086","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795890057216,"id_str":"663727795890057216","text":"I need another weekend for my weekend.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425341802,"id_str":"425341802","name":"kelsey vergon","screen_name":"kelsey_vergon","location":null,"url":null,"description":"Ball State \u2020 \u03a6\u039b\u03a3\u2764\ufe0f","protected":false,"verified":false,"followers_count":191,"friends_count":126,"listed_count":1,"favourites_count":1095,"statuses_count":1029,"created_at":"Wed Nov 30 21:51:41 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660577857995862016\/RcmDgNbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660577857995862016\/RcmDgNbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425341802\/1407974335","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012663"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898445824,"id_str":"663727795898445824","text":"@506_myB \uc6c5\u314e\u314e\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727725845221376,"in_reply_to_status_id_str":"663727725845221376","in_reply_to_user_id":2280263528,"in_reply_to_user_id_str":"2280263528","in_reply_to_screen_name":"506_myB","user":{"id":2157849216,"id_str":"2157849216","name":"\ub9c8\ub9c8\ud22c\ud45c_\uc560\uae30_\ubfd0\ubfcc","screen_name":"xoxosehun0408","location":"\uc5d1\uc18c \uc0ac\ub791\ud574\u2665","url":"http:\/\/mama.mwave.me\/vote","description":"\uc5b8\ud314\ud560\uaebc\uba74 \ud314\ub85cX 9\uc778\uc9c0\uc9c0 \n Sehun exo9","protected":false,"verified":false,"followers_count":648,"friends_count":618,"listed_count":3,"favourites_count":382,"statuses_count":3682,"created_at":"Sun Oct 27 01:35:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661531463934869505\/OUi9QLXG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661531463934869505\/OUi9QLXG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2157849216\/1446992074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"506_myB","name":"\ubc30\ucfe0\uc57c \ubcf4\uace0\uc2f6\uc5b4 \uca14","id":2280263528,"id_str":"2280263528","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881709568,"id_str":"663727795881709568","text":"@Sakura_Kanako02 @juSnwRJ7OWrKDlu \n\u3061\u3087\u3046\u30693\u4eba\u3060\u3063\u305f\u3089\u4f55\u3060\u308d\u3046\u3063\u3066\u601d\u3063\u305f\u3089 \u3060\u3093\u3054\u4e09\u5144\u5f1f\u3057\u304b\u51fa\u3066\u3053\u306a\u304b\u3063\u305fw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727633889300483,"in_reply_to_status_id_str":"663727633889300483","in_reply_to_user_id":2393822810,"in_reply_to_user_id_str":"2393822810","in_reply_to_screen_name":"Sakura_Kanako02","user":{"id":2710510076,"id_str":"2710510076","name":"\u306a\u3064\u307f\u304b\u3093:P@\u4f4e\u6d6e\u4e0a","screen_name":"MCZnatsumi723","location":"\u9ad82","url":"http:\/\/100mon.jp\/a\/2186873","description":"\ua4b0Instagram\u21d2@MCZnatsumi723 \uff3f_\uff3f\uff3f_\uff3f\uff3f_\uff3f\uff3fNG.....DM\u8fd4\u3055\u306a\u3044\u3002\u656c\u8a9e\u82e6\u624b\u3002\uff3f_\uff3f\uff3f (q_res.phphttp:\/\/100mon.jp\/a\/2175142)","protected":false,"verified":false,"followers_count":1206,"friends_count":691,"listed_count":12,"favourites_count":9844,"statuses_count":15402,"created_at":"Tue Aug 05 22:51:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498985305458741248\/3YRh5JrJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498985305458741248\/3YRh5JrJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2710510076\/1407798203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sakura_Kanako02","name":"\u3048\u3067\u3093@\u9ad8\u6a4b\uff11\uff11\u6708\u2192\u308c\u3093\u308c\u3093\u751f\u8a95","id":2393822810,"id_str":"2393822810","indices":[0,16]},{"screen_name":"juSnwRJ7OWrKDlu","name":"\u3053\u308a\u3093","id":3193157922,"id_str":"3193157922","indices":[17,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898454016,"id_str":"663727795898454016","text":"RT @darkendefend: \u0e44\u0e14\u0e49\u0e40\u0e08\u0e2d\u0e04\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e08\u0e2d\u0e21\u0e32\u0e19\u0e32\u0e19 \u0e19\u0e35\u0e48\u0e21\u0e31\u0e19\u0e14\u0e35\u0e08\u0e23\u0e34\u0e07\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1271406312,"id_str":"1271406312","name":"\u221e","screen_name":"creammio","location":null,"url":null,"description":"\u2661 \uc774\uc131\uc5f4 | \ub0a8\uc6b0\ud604 | \ub0a8\uc8fc\ud601 | \uc721\uc131\uc7ac \u2661","protected":false,"verified":false,"followers_count":87,"friends_count":147,"listed_count":1,"favourites_count":3656,"statuses_count":39236,"created_at":"Sat Mar 16 04:44:20 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654314006954414080\/GyK7OTjf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654314006954414080\/GyK7OTjf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1271406312\/1447079441","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:24 +0000 2015","id":663722055959887872,"id_str":"663722055959887872","text":"\u0e44\u0e14\u0e49\u0e40\u0e08\u0e2d\u0e04\u0e19\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e08\u0e2d\u0e21\u0e32\u0e19\u0e32\u0e19 \u0e19\u0e35\u0e48\u0e21\u0e31\u0e19\u0e14\u0e35\u0e08\u0e23\u0e34\u0e07\u0e46","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233217936,"id_str":"233217936","name":"dakento","screen_name":"darkendefend","location":"\u30d0\u30f3\u30b3\u30af \u300e \uff14\uff12 \u300f","url":"http:\/\/medium.com\/@darkendefend","description":"The things you say about others, also say a lot about you. Love is a journey, not a destination.\n\n#WhySoSerious","protected":false,"verified":false,"followers_count":93985,"friends_count":39,"listed_count":92,"favourites_count":121,"statuses_count":4554,"created_at":"Sun Jan 02 16:56:14 +0000 2011","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000077284398\/b0e88eb704a3d855d3ef5afa6fbe7a22.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000077284398\/b0e88eb704a3d855d3ef5afa6fbe7a22.jpeg","profile_background_tile":false,"profile_link_color":"878282","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656139021937061888\/sMuHRZoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656139021937061888\/sMuHRZoL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233217936\/1446900642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"darkendefend","name":"dakento","id":233217936,"id_str":"233217936","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795890065408,"id_str":"663727795890065408","text":"@mkrnskn \u306d\u3047\u306a\u301c\u306b\u3057\u301c\u3066\u3082\u301c\u541b\u301c\u306b\u3042\u301c\u3044\u305f\u301c\u304f\u306a\u308b\u306e\u301c\ud83d\ude02\ud83d\ude02\u2728\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725405086441472,"in_reply_to_status_id_str":"663725405086441472","in_reply_to_user_id":3071450876,"in_reply_to_user_id_str":"3071450876","in_reply_to_screen_name":"mkrnskn","user":{"id":2923674258,"id_str":"2923674258","name":"\u591a\u5fd9\u3055\u304f\u677e","screen_name":"kuukainomichi","location":"\u4e00\u5144\u3068\u85ac\u7814","url":null,"description":"\u3055\u304f\u307e\u3067\u3059\u3002\u7d75\u3068\u30b2\u30fc\u30e0\u3002\u26a0\ufe0e18\u6b73\u4ee5\u4e0b\u306f\u30d5\u30a9\u30ed\u30fc\u3054\u6ce8\u610f\u3002FF\u3002NARUTO\u3002\u9280\u9b42\u3002\u3068\u3046\u3089\u3076\u3002\u30c6\u30cb\u30b9\u3002\u8840\u754c\u3002\u5275\u4f5cBL\u3002\u3002\u5fcd\u305f\u307e\uff08@naporeon190 \uff09","protected":false,"verified":false,"followers_count":603,"friends_count":383,"listed_count":85,"favourites_count":7107,"statuses_count":16664,"created_at":"Tue Dec 09 10:31:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661580627431415809\/h0o8J2uI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661580627431415809\/h0o8J2uI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923674258\/1442762072","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mkrnskn","name":"\u82b1\u5b50","id":3071450876,"id_str":"3071450876","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012663"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795885862912,"id_str":"663727795885862912","text":"\u52c9\u5f37\u3059\u308b\u305f\u3081\u306bPC WiiU Wii \u5168\u90e8\u30ea\u30d3\u30f3\u30b0\u306b\u7f6e\u3044\u3066\u3042\u308b\u304b\u3089\u914d\u4fe1\u3082\u3057\u306a\u3044\u3057\u30a4\u30ab\u3082\u9577\u6642\u9593\u306f\u3084\u3089\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2826169975,"id_str":"2826169975","name":"\u308a\u3043\u306a","screen_name":"Gonke1113","location":null,"url":"http:\/\/com.nicovideo.jp\/community\/co2663643","description":"Printemps","protected":false,"verified":false,"followers_count":472,"friends_count":356,"listed_count":14,"favourites_count":10906,"statuses_count":29644,"created_at":"Mon Sep 22 10:48:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648063109861502976\/22ICHsBj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648063109861502976\/22ICHsBj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2826169975\/1445263978","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012662"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881684992,"id_str":"663727795881684992","text":"@piperqz_ \u0e2b\u0e27\u0e31\u0e14\u0e14\u0e35\u0e2e\u0e30 .\u0e22\u0e34\u0e49\u0e21\u0e2b\u0e27\u0e32\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663498655576510465,"in_reply_to_status_id_str":"663498655576510465","in_reply_to_user_id":4157715259,"in_reply_to_user_id_str":"4157715259","in_reply_to_screen_name":"piperqz_","user":{"id":2892962582,"id_str":"2892962582","name":"` \u0e1a\u0e19\u0e23. \u0e19\u0e49\u0e2d\u0e07\u0e08\u0e39 \u25e1\u0308","screen_name":"kszbth_","location":"\u3002HRZ90XIUMIN'S \u2661 \u3002 ","url":null,"description":"\u0e1e\u0e35\u0e48\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e01\u0e32\u0e01 @2004luhan \u2640 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e2a\u0e34\u0e2e\u0e30 \u0e1c\u0e21\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e19\u0e30 \u0e21\u0e32\u0e43\u0e2b\u0e49\u0e1c\u0e21\u0e2d\u0e49\u0e2d\u0e19\u0e0b\u0e30\u0e14\u0e35\u0e46 .\u0e02\u0e22\u0e34\u0e1a\u0e15\u0e32","protected":false,"verified":false,"followers_count":843,"friends_count":225,"listed_count":1,"favourites_count":2225,"statuses_count":44174,"created_at":"Fri Nov 07 16:03:47 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640395091849293824\/tVTPxUSu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640395091849293824\/tVTPxUSu.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660769985229250560\/5hX1wDrq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660769985229250560\/5hX1wDrq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2892962582\/1445950300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"piperqz_","name":"\u0e1e\u0e35\u0e48\u0e40\u0e1b\u0e2d\u0e23\u0e4c","id":4157715259,"id_str":"4157715259","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795902791680,"id_str":"663727795902791680","text":"S\u00f3 as v\u00edtimas da internet","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":801361020,"id_str":"801361020","name":"roger ","screen_name":"r0gerio_","location":"bel\u00e9m-pa","url":null,"description":"n\u00e3o quero","protected":false,"verified":false,"followers_count":838,"friends_count":473,"listed_count":3,"favourites_count":10989,"statuses_count":31374,"created_at":"Mon Sep 03 22:44:46 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679136153\/8f3f9ffac936f28094a51422b5dea456.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679136153\/8f3f9ffac936f28094a51422b5dea456.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616975649748684800\/wn4PLi_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616975649748684800\/wn4PLi_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801361020\/1439131643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080012666"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881644032,"id_str":"663727795881644032","text":"@_lanarodrigues1 a mina at\u00e9 gamou j\u00e1 NSHHSHSJSHSHSHSJSHSHESHSNDHSHSHSYSHYSHSYSHSY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725162936700928,"in_reply_to_status_id_str":"663725162936700928","in_reply_to_user_id":3008174581,"in_reply_to_user_id_str":"3008174581","in_reply_to_screen_name":"_lanarodrigues1","user":{"id":1913315101,"id_str":"1913315101","name":"Keijo","screen_name":"Keizito_","location":"Chiryu, Aichi","url":null,"description":"S\u00f3 quero aquilo que me traz Paz.. Jiu jitsu Snapchat:keizito Kik:keizo_osaki","protected":false,"verified":false,"followers_count":513,"friends_count":281,"listed_count":2,"favourites_count":1683,"statuses_count":37082,"created_at":"Sat Sep 28 06:06:12 +0000 2013","utc_offset":16200,"time_zone":"Kabul","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657887555711471617\/z07KWZ1I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657887555711471617\/z07KWZ1I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1913315101\/1428137621","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_lanarodrigues1","name":"Alana","id":3008174581,"id_str":"3008174581","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795894272000,"id_str":"663727795894272000","text":"GLAY\u3068\u540c\u3058\u304f\u3089\u3044\u3001\u51fa\u4f1a\u3048\u3066\u3088\u304b\u3063\u305f\u306a\u3041\u301c\u3063\u3066\u6700\u8fd1\u307b\u3093\u307e\u306b\u601d\u3046( *\uff40\u03c9\u00b4)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3062614795,"id_str":"3062614795","name":"\u679c \u679d \u2661\u02be\u02be","screen_name":"__ripper134","location":"\u6211\u3001\u5c06\u6765\u6b66\u4eba\u3068\u306a\u308a\u3066\u3001\u540d\u3092\u5929\u4e0b\u306b\u6319\u3052\u3093\u3002","url":null,"description":"GLAY \/ MarilynManson \/ \u30c6\u30cb\u30df\u30e5 \/ \u53e4\u5ddd\u96c4\u5927 \/ \u30cf\u30ed\u30d7\u30ed \/ Blu-BiLLioN \/ \u65b0\u9078\u7d44 \/ \u571f\u65b9\u6b73\u4e09","protected":false,"verified":false,"followers_count":69,"friends_count":48,"listed_count":1,"favourites_count":202,"statuses_count":3132,"created_at":"Thu Mar 05 09:08:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369630233182209\/WHonwn25_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369630233182209\/WHonwn25_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3062614795\/1446622436","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012664"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869106176,"id_str":"663727795869106176","text":"\u6b8b\u5ff5\u30e9\u30d6\u30b3\u30e1\u3059\u304e\u308b\u3060\u308d\u2026\u2026\u307e\u305a\u3053\u308c\u3001\u30e9\u30d6\u30b3\u30e1\u304b\uff1f#bot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466716796,"id_str":"1466716796","name":"\u6bd4\u4f01\u8c37 \u516b\u5e61@\u975e\u516c\u5f0f","screen_name":"Narikiri04","location":null,"url":null,"description":"\u307c\u3063\u3061\u3067\u3059\u304c\u306a\u306b\u304b\uff1f\u307c\u3063\u3061\u3067\u3082Twitter\u304f\u3089\u3044\u306f\u3084\u308b\u3093\u3060\u3088\u3002\u30a2\u30cb\u30e1\u30fb\u30ce\u30d9\u30e9\u30a4\u30ba\u30fb\u30e9\u30b8\u30aa\u300e\u3084\u306f\u308a\u4ffa\u306e\u9752\u6625\u30e9\u30d6\u30b3\u30e1\u306f\u9593\u9055\u3063\u3066\u3044\u308b\u300f\u3092\u3088\u308d\u3057\u304f\u306a\u3002","protected":false,"verified":false,"followers_count":219,"friends_count":217,"listed_count":2,"favourites_count":0,"statuses_count":166843,"created_at":"Wed May 29 08:11:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3729036967\/761eff79bbe748f5374d2760ce26d641_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3729036967\/761eff79bbe748f5374d2760ce26d641_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bot","indices":[24,28]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869061120,"id_str":"663727795869061120","text":"@Ai_kkk_sn_0104 \u3069\u3046\u3057\u3088\u4f55\u65e5\u3050\u3089\u3044\u306b\u304f\u308b\u306e\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727526762582016,"in_reply_to_status_id_str":"663727526762582016","in_reply_to_user_id":2594262452,"in_reply_to_user_id_str":"2594262452","in_reply_to_screen_name":"Ai_kkk_sn_0104","user":{"id":2717291078,"id_str":"2717291078","name":"Yuki\u262a\u30cf\u30c8\u30a2\u30ea(\u30dc\u30ea\u30b9)","screen_name":"magicWorld_21","location":"7\u670829\u65e5","url":"http:\/\/twpf.jp\/magicWorld_21","description":"\u25b7\u25b7\u25b7\u30b8\u30e7\u30fcD\u00d7\u897f\u6751\u60a0\u4f5c\u54c1\u3001\u75c5\u307f\u8981\u7d20\u3001\u9ad8\u6a4b\u76f4\u7d14\u3055\u3093\u3001\u91ce\u5cf6\u5065\u5150\u3055\u3093\u306b\u30db\u30a4\u30db\u30a4\u3055\u308c\u307e\u3059\u3002\u590f\u7a7a\u306f\u4eba\u751f\u3002\u30d7\u30ec\u30a4\u6e08\u307f\u4f5c\u54c1\u306f\u3064\u3044\u3077\u308d\u306b\u3066\u3002\u7279\u5225\u2765\u30a6\u30ad\u30e7\u4e3b*\u30b5\u30f3\u30ab\u30eb*\u30a6\u30f3\u30a2\u30b9*\u694a\u7384*\u59b2\u694a*\u5b98\u307b\u305f*\u9df9\u64ab*\u9264\u7d05*\u30cb\u30b1\u30e9\u30f3*\u697d\u7d21*\u77e5\u67d8*\u6dbc\u7690*\u767d\u30a2\u30ea","protected":false,"verified":false,"followers_count":130,"friends_count":186,"listed_count":2,"favourites_count":997,"statuses_count":4957,"created_at":"Fri Aug 08 15:07:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658127542528819200\/VyZo_rUd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658127542528819200\/VyZo_rUd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2717291078\/1439316679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ai_kkk_sn_0104","name":"\u308a\u3064\u306f\u821e\u6d5c\u884c\u304d\u307e\u3059","id":2594262452,"id_str":"2594262452","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881689089,"id_str":"663727795881689089","text":"@0127Road \u79c1\u3082\u884c\u304f\u3088\u30fc\u3093\u263a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663706746410545152,"in_reply_to_status_id_str":"663706746410545152","in_reply_to_user_id":2286775537,"in_reply_to_user_id_str":"2286775537","in_reply_to_screen_name":"0127Road","user":{"id":1351004900,"id_str":"1351004900","name":"kaz aki","screen_name":"mizuka3331","location":null,"url":null,"description":"\u97f3\u697d\u306e\u539f\u70b9\u306fYMO \u9577\u91ce\uff5e\u57fc\u7389\uff5e\u8328\u57ce\uff5e\u5343\u8449","protected":false,"verified":false,"followers_count":227,"friends_count":361,"listed_count":1,"favourites_count":365,"statuses_count":6146,"created_at":"Sun Apr 14 04:50:50 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632830788199813120\/JC8uCJQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632830788199813120\/JC8uCJQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1351004900\/1442554541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0127Road","name":"\u3042\u3064\u3057","id":2286775537,"id_str":"2286775537","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795864911872,"id_str":"663727795864911872","text":"@manpuku_nenene \u308f\u305f\u3057\u3082\u30f4\u30a7\u30ed\u30fc\u30ca\u306e\u4e8c\u7d33\u58eb\u89b3\u5287\u3057\u307e\u3057\u305f\u301c\u301c\u300c\u308f\u3093\u3053\u304c\u767b\u5834\u3059\u308b\u821e\u53f0\u304c\u3042\u308b\u306e\u304b\uff01\u300d\u3068\u30d3\u30c3\u30af\u30ea\u3067\u3057\u305f\u2026\u521d\u3081\u3066\u307f\u307e\u3057\u305f\u2026\u3057\u304b\u3057\u3001\u3059\u3050\u306b\u50d5\u8535\u3055\u3093\u3092\u30cf\u30b0\u30cf\u30b0\u3057\u3061\u3083\u3046\u6240\u304c\u53ef\u611b\u304f\u3066\u30e1\u30ed\u30e1\u30ed\u3067\u3057\u305f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722476585639936,"in_reply_to_status_id_str":"663722476585639936","in_reply_to_user_id":731572009,"in_reply_to_user_id_str":"731572009","in_reply_to_screen_name":"manpuku_nenene","user":{"id":746662207,"id_str":"746662207","name":"\u30cb\u30b3@1107\u30f4\u30a7\u30ed\u30fc\u30ca\u306e\u4e8c\u7d33\u58eb","screen_name":"niko_niko_08","location":"\u304a\u304a\u3055\u304b","url":"http:\/\/twpf.jp\/niko_niko_08","description":"\u305f\u3060\u306e\u30cb\u30c1\u30a2\u30b5\u597d\u304d\u30aa\u30bf\u30af\u3067\u3059\u3002\u30b7\u30e7\u30fc\u5199\u771f\u30fb\u30a4\u30e9\u30b9\u30c8\u306e\u3063\u3051\u305f\u308a\u3057\u307e\u3059\u3002\u7d61\u307f\u6b53\u8fce\u3001\u30d5\u30a9\u30ed\u30fc\u3082\u30ea\u30e0\u30fc\u30d6\u3082\u3054\u81ea\u7531\u306b\u3002\u8da3\u5473\u8a73\u7d30\u306f\u30c4\u30a4\u30d7\u30ed\u3002pixiv\u3042\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":273,"friends_count":562,"listed_count":12,"favourites_count":11937,"statuses_count":13303,"created_at":"Thu Aug 09 06:09:00 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652706240385060864\/vrtmkewj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652706240385060864\/vrtmkewj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/746662207\/1433073573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manpuku_nenene","name":"\u307e\u3093\u3077\u304f\u3088","id":731572009,"id_str":"731572009","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881820160,"id_str":"663727795881820160","text":"@vocabulary4arab \u0645\u0645\u0643\u0646 \u062a\u062a\u0631\u062c\u0645\u0644\u064a \u0645\u062b\u0644 \u062c\u0645\u0644\u0647 \u0645\u0646 \u0627\u0646\u062c\u0644\u064a\u0632\u064a \u0627\u0644\u0644\u064a \u0639\u0631\u0628\u064a \u1d54\u0308\u061f","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":132738972,"in_reply_to_user_id_str":"132738972","in_reply_to_screen_name":"vocabulary4arab","user":{"id":1123550472,"id_str":"1123550472","name":"_SH\u2663","screen_name":"ro0_0or88","location":"_\u0645\u0641\u0636\u0644\u062a\u064a \u0644\u0640 \u0627\u0645\u064a \u0648\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0641\u0642\u0637. ","url":null,"description":"#\u0639\u064a\u0634_\u0627\u0644\u0627\u064a\u062c\u0627\u0628\u064a\u0647","protected":false,"verified":false,"followers_count":358,"friends_count":138,"listed_count":0,"favourites_count":77,"statuses_count":2316,"created_at":"Sun Jan 27 00:32:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590230745311875072\/oC9VKz4q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590230745311875072\/oC9VKz4q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123550472\/1384773227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vocabulary4arab","name":"\u062a\u0639\u0644\u0645 \u0627\u0644\u0627\u0646\u062c\u0644\u064a\u0632\u064a\u0629","id":132738972,"id_str":"132738972","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795890065409,"id_str":"663727795890065409","text":"Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/qOf9bvDdqj","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":225216257,"id_str":"225216257","name":"Jana Denney","screen_name":"wifelifexoxo","location":"Ocala, Florida","url":null,"description":"\u2600\u2615","protected":false,"verified":false,"followers_count":381,"friends_count":86,"listed_count":2,"favourites_count":123,"statuses_count":4979,"created_at":"Sat Dec 11 00:49:00 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/322844512\/tumblr_lbc8doaQ491qea82ro1_1280.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/322844512\/tumblr_lbc8doaQ491qea82ro1_1280.jpg","profile_background_tile":true,"profile_link_color":"28C2C7","profile_sidebar_border_color":"030303","profile_sidebar_fill_color":"FADFF1","profile_text_color":"F51857","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2576359610\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2576359610\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qOf9bvDdqj","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012663"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881639936,"id_str":"663727795881639936","text":"RT @blxcknicotine: \"I pray that whoever reads this, that God heals whatever is hurting you.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2291388516,"id_str":"2291388516","name":"naddy","screen_name":"kentutbusukkk","location":null,"url":null,"description":"ig naddycandy","protected":false,"verified":false,"followers_count":860,"friends_count":486,"listed_count":3,"favourites_count":2190,"statuses_count":24069,"created_at":"Tue Jan 14 16:39:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471181242155532288\/Obpv9XL5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471181242155532288\/Obpv9XL5.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609619080258043904\/90u65qqL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609619080258043904\/90u65qqL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2291388516\/1447019323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:07:38 +0000 2015","id":663613903742500868,"id_str":"663613903742500868","text":"\"I pray that whoever reads this, that God heals whatever is hurting you.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284197383,"id_str":"284197383","name":"human error.","screen_name":"blxcknicotine","location":"Seoul, Korea ","url":null,"description":"Don\u2019t try to figure me out. It will only exhaust you. #illhueminati","protected":false,"verified":false,"followers_count":122416,"friends_count":25120,"listed_count":217,"favourites_count":13595,"statuses_count":102580,"created_at":"Mon Apr 18 20:37:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E09CCB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_tile":true,"profile_link_color":"D662B3","profile_sidebar_border_color":"F283E1","profile_sidebar_fill_color":"1A1D1F","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284197383\/1446304062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":505,"favorite_count":334,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blxcknicotine","name":"human error.","id":284197383,"id_str":"284197383","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795864899584,"id_str":"663727795864899584","text":"@tororo94 \u3046\u308f\u3002\u306a\u306b\u305d\u306e\u304b\u308f\u3044\u3044\u751f\u304d\u7269( \u02d9-\u02d9 )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727664365080576,"in_reply_to_status_id_str":"663727664365080576","in_reply_to_user_id":2316797358,"in_reply_to_user_id_str":"2316797358","in_reply_to_screen_name":"tororo94","user":{"id":2166229796,"id_str":"2166229796","name":"\uff85\uff76\uff91\uff97 \uff71\uff94\uff76","screen_name":"oysmey","location":"Goka-town","url":null,"description":"\uff7b\uff72\uff74\uff9d\uff7d\uff8c\uff67\uff9d\uff80\uff7c\uff9e-\u9ad8\u6821 \u8857\u306e\uff8e\uff6f\uff84\uff7d\uff83\uff70\uff7c\uff6e\uff9d\u5e97\u54e1\uff3b\u3042\u3084\u306a\u3064\uff3d","protected":false,"verified":false,"followers_count":89,"friends_count":67,"listed_count":1,"favourites_count":138,"statuses_count":3141,"created_at":"Thu Oct 31 08:10:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633687255211597824\/HpwBAXel_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633687255211597824\/HpwBAXel_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2166229796\/1442232896","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tororo94","name":"\uff0a\u3068\u308d\u308d\uff0a","id":2316797358,"id_str":"2316797358","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012657"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869061121,"id_str":"663727795869061121","text":"\u3042\u3042\u3001\u3082\u3046\u3053\u306e\u5b50\u306f\u306a\u3093\u3066\u53ef\u611b\u3044\u306e https:\/\/t.co\/J8jgvBLU3D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988106801,"id_str":"2988106801","name":"\u3061\u3071\u3055\u3093\u3002","screen_name":"Chr_023","location":"\u6c60\u4e0a\u3002","url":null,"description":"\/ \u84b2\u9ad8 35th \/ \u9db4\u5927 \/ \u6587\u5316\u8ca1 \/ 1\u5e742\u7d44 \/ \u5b9d\u585a \/ AKB \/ earth \/ \u273c\u81ea\u7531\u306b\u751f\u304d\u3066\u307e\u3059 \u273c \u3084\u308a\u305f\u3044\u3053\u3068\u3060\u3051\u3084\u3063\u3066\u307e\u3059 \u273c\u300e\u306f\u3058\u307e\u308a\u306e\u56fd\u306e\u3055\u3044\u3054\u306e\u8a71\u300f\u300a@mimi_x0x\u300b\u307e\u3044\u306f\u306b\u30fc\u3061\u3083\u3093\u2661 \u300a@chietan05\u300b\u611b\u3057\u306e\u307e\u3044\u3060\u30fc\u308a\u3093\u2661","protected":false,"verified":false,"followers_count":97,"friends_count":100,"listed_count":3,"favourites_count":1420,"statuses_count":8947,"created_at":"Sun Jan 18 07:07:02 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660638845365436417\/4mrnxaK3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660638845365436417\/4mrnxaK3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988106801\/1446383579","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727790978560000,"id_str":"663727790978560000","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6MjU8AA9Ebd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6MjU8AA9Ebd.jpg","url":"https:\/\/t.co\/J8jgvBLU3D","display_url":"pic.twitter.com\/J8jgvBLU3D","expanded_url":"http:\/\/twitter.com\/Chr_023\/status\/663727795869061121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"},"large":{"w":749,"h":516,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727790978560000,"id_str":"663727790978560000","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6MjU8AA9Ebd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6MjU8AA9Ebd.jpg","url":"https:\/\/t.co\/J8jgvBLU3D","display_url":"pic.twitter.com\/J8jgvBLU3D","expanded_url":"http:\/\/twitter.com\/Chr_023\/status\/663727795869061121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"},"large":{"w":749,"h":516,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012658"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877470208,"id_str":"663727795877470208","text":"RT @CallMeWRU: buktiin @bangbily km jg bsa nglucu tnp hrs 'menghina' org,bktinya sule cma mdal plesetan dan prperti udh lucu.trus blajar ba\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2952274374,"id_str":"2952274374","name":"ababilsky","screen_name":"ababilsky","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":289,"friends_count":87,"listed_count":2,"favourites_count":1937,"statuses_count":7056,"created_at":"Tue Dec 30 16:06:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661432683260612608\/NgBIK837_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661432683260612608\/NgBIK837_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2952274374\/1446532937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:39 +0000 2015","id":663720611336732672,"id_str":"663720611336732672","text":"buktiin @bangbily km jg bsa nglucu tnp hrs 'menghina' org,bktinya sule cma mdal plesetan dan prperti udh lucu.trus blajar bang cntoh sule :)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284044266,"id_str":"3284044266","name":"Dramak & pencitraan","screen_name":"CallMeWRU","location":"world","url":null,"description":"Nyaiikk jangan PENCITRAAN & DRAMAKKK mulukk deh. Nanti akoh gumoh liat nyaiikk eeiiyyuuwww | Luv billy | capricorn","protected":false,"verified":false,"followers_count":153,"friends_count":60,"listed_count":0,"favourites_count":78,"statuses_count":2787,"created_at":"Sun Jul 19 07:15:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637443239256068096\/qWDh0N_h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637443239256068096\/qWDh0N_h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284044266\/1440813486","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bangbily","name":"Billy syahputra","id":1545068960,"id_str":"1545068960","indices":[8,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CallMeWRU","name":"Dramak & pencitraan","id":3284044266,"id_str":"3284044266","indices":[3,13]},{"screen_name":"bangbily","name":"Billy syahputra","id":1545068960,"id_str":"1545068960","indices":[23,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080012660"} +{"delete":{"status":{"id":459394064090398720,"id_str":"459394064090398720","user_id":2447594974,"user_id_str":"2447594974"},"timestamp_ms":"1447080012916"}} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795881779201,"id_str":"663727795881779201","text":"@Avea ilk g\u00f6nderdi\u011fim ve sonras\u0131nda ald\u0131\u011f\u0131m hata mesaj\u0131 bu! \nfark\u0131ndaysan\u0131z sonra yeniden mesaj g\u00f6ndermi\u015fim.... https:\/\/t.co\/e1QkbJrad3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663499138449977345,"in_reply_to_status_id_str":"663499138449977345","in_reply_to_user_id":735865850,"in_reply_to_user_id_str":"735865850","in_reply_to_screen_name":"teamfoback","user":{"id":735865850,"id_str":"735865850","name":"Taze Borsac\u0131","screen_name":"teamfoback","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":19,"listed_count":1,"favourites_count":19,"statuses_count":176,"created_at":"Sat Aug 04 01:36:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Avea","name":"Avea","id":403774702,"id_str":"403774702","indices":[0,5]}],"symbols":[],"media":[{"id":663727775006588928,"id_str":"663727775006588928","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5RDUAAAxFZn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5RDUAAAxFZn.jpg","url":"https:\/\/t.co\/e1QkbJrad3","display_url":"pic.twitter.com\/e1QkbJrad3","expanded_url":"http:\/\/twitter.com\/teamfoback\/status\/663727795881779201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727775006588928,"id_str":"663727775006588928","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5RDUAAAxFZn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5RDUAAAxFZn.jpg","url":"https:\/\/t.co\/e1QkbJrad3","display_url":"pic.twitter.com\/e1QkbJrad3","expanded_url":"http:\/\/twitter.com\/teamfoback\/status\/663727795881779201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080012661"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795894259712,"id_str":"663727795894259712","text":"\u3068\u308a\u3042\u3048\u305a\u30d0\u30c3\u30c6\u30a3\u30f3\u30b0\u30d5\u30a9\u30fc\u30e0\u7dba\u9e97\u306b\u3059\u308b\u70ba\u306b\u52aa\u529b\u305b\u306a\u3042\u304b\u3093\u3002\n\u96c4\u8f14\u306b\u3082\u3060\u3044\u3076\u524d\u306b\u8a00\u308f\u308c\u305f\u3057\u3001\u5144\u306e\u4f51\u4ecb\u306b\u3082\u8a00\u308f\u308c\u3068\u308b\u3051\u3093\u306a\u301c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254699682,"id_str":"3254699682","name":"\u305f\u304d\u3055\u3093","screen_name":"kingkeisuke0101","location":null,"url":null,"description":"BIGBANG iKON \n \u91ce\u7403\u3057\u3066\u308b\u3093\u308b\u3093\u3002 \u9ce5\u9020","protected":false,"verified":false,"followers_count":178,"friends_count":188,"listed_count":0,"favourites_count":1363,"statuses_count":3202,"created_at":"Wed Jun 24 15:50:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658945329178382336\/E_FJFMK1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658945329178382336\/E_FJFMK1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254699682\/1436312077","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080012664"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795877449728,"id_str":"663727795877449728","text":"RT @soraeliminate: \uace8\ubc45\uc774 \uc774\ubca4\ud2b8?\n \uc220\ucde8\ud55c \uc5ec\uc790\uce5c\uad6c\ub97c \ub0ae\uc120 \ub0a8\uc790\uc5d0\uac8c \uac15\uac04\ub2f9\ud558\uac8c \ud558\ub294\uac83\uc744 \uc774\ubca4\ud2b8\ub77c\uace0 \ud558\ub294\uac74\uac00\uc694? \n \uc544\ub2c8, \uadf8\uc804\uc5d0 \ub2f9\uc2e0\uc774 \uadf8\ub140\uc758 \uc5ec\uc790\uce5c\uad6c\ub77c\uace0 \ud560\uc218 \uc788\ub294\uac74\uac00\uc694?\n\n\uad6c\ud1a0\uac00 \uce58\ubbf8\ub124\uc694.\n\uc18c\ub77c\ub137\uc740 \ubc94\uc8c4 \ubaa8\uc758 \uc0ac\uc774\ud2b8\uc785\ub2c8\ub2e4. htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280835508,"id_str":"3280835508","name":"\uc774\ub85c\uc6c5","screen_name":"irororororo9","location":null,"url":null,"description":"P\/\ud30c\ud31014","protected":false,"verified":false,"followers_count":11,"friends_count":94,"listed_count":0,"favourites_count":780,"statuses_count":409,"created_at":"Wed Jul 15 18:47:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643843036158513152\/6qwz0c8e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643843036158513152\/6qwz0c8e_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:01:40 +0000 2015","id":663687899343249408,"id_str":"663687899343249408","text":"\uace8\ubc45\uc774 \uc774\ubca4\ud2b8?\n \uc220\ucde8\ud55c \uc5ec\uc790\uce5c\uad6c\ub97c \ub0ae\uc120 \ub0a8\uc790\uc5d0\uac8c \uac15\uac04\ub2f9\ud558\uac8c \ud558\ub294\uac83\uc744 \uc774\ubca4\ud2b8\ub77c\uace0 \ud558\ub294\uac74\uac00\uc694? \n \uc544\ub2c8, \uadf8\uc804\uc5d0 \ub2f9\uc2e0\uc774 \uadf8\ub140\uc758 \uc5ec\uc790\uce5c\uad6c\ub77c\uace0 \ud560\uc218 \uc788\ub294\uac74\uac00\uc694?\n\n\uad6c\ud1a0\uac00 \uce58\ubbf8\ub124\uc694.\n\uc18c\ub77c\ub137\uc740 \ubc94\uc8c4 \ubaa8\uc758 \uc0ac\uc774\ud2b8\uc785\ub2c8\ub2e4. https:\/\/t.co\/M5InHSvk8B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4168404494,"id_str":"4168404494","name":"\uc18c\ub77c\ub137 \ubc15\uba78 \ud504\ub85c\uc81d\ud2b8.","screen_name":"soraeliminate","location":null,"url":null,"description":"\uc18c\ub77c\ub137 \ubc15\uba78\uc744 \uc704\ud55c \uc9d1\ud68c\ub97c \uc900\ube44\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud55c\ubd84 \ud55c\ubd84\uc758 \ucc38\uc5ec\uac00 \ud070 \ud798\uc774 \ub429\ub2c8\ub2e4. \uc9d1\ud68c \ub0a0\uc9dc\ub294 11\uc6d4 15\uc77c 1\ucc28 \ud68c\uc758\ud6c4 \uc815\ud574\uc9d1\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":1178,"friends_count":7,"listed_count":3,"favourites_count":0,"statuses_count":86,"created_at":"Sun Nov 08 13:08:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342985963171840\/PF9QT8is_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342985963171840\/PF9QT8is_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4168404494\/1446988265","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":223,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663687889444712448,"id_str":"663687889444712448","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","url":"https:\/\/t.co\/M5InHSvk8B","display_url":"pic.twitter.com\/M5InHSvk8B","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663687899343249408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":612,"resize":"fit"},"medium":{"w":568,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":568,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663687889444712448,"id_str":"663687889444712448","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","url":"https:\/\/t.co\/M5InHSvk8B","display_url":"pic.twitter.com\/M5InHSvk8B","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663687899343249408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":612,"resize":"fit"},"medium":{"w":568,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":568,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soraeliminate","name":"\uc18c\ub77c\ub137 \ubc15\uba78 \ud504\ub85c\uc81d\ud2b8.","id":4168404494,"id_str":"4168404494","indices":[3,17]}],"symbols":[],"media":[{"id":663687889444712448,"id_str":"663687889444712448","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","url":"https:\/\/t.co\/M5InHSvk8B","display_url":"pic.twitter.com\/M5InHSvk8B","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663687899343249408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":612,"resize":"fit"},"medium":{"w":568,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":568,"h":1024,"resize":"fit"}},"source_status_id":663687899343249408,"source_status_id_str":"663687899343249408","source_user_id":4168404494,"source_user_id_str":"4168404494"}]},"extended_entities":{"media":[{"id":663687889444712448,"id_str":"663687889444712448","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXknnwUsAAr-s5.jpg","url":"https:\/\/t.co\/M5InHSvk8B","display_url":"pic.twitter.com\/M5InHSvk8B","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663687899343249408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":612,"resize":"fit"},"medium":{"w":568,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":568,"h":1024,"resize":"fit"}},"source_status_id":663687899343249408,"source_status_id_str":"663687899343249408","source_user_id":4168404494,"source_user_id_str":"4168404494"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080012660"} +{"delete":{"status":{"id":663389227485413380,"id_str":"663389227485413380","user_id":4084166493,"user_id_str":"4084166493"},"timestamp_ms":"1447080013107"}} +{"delete":{"status":{"id":654387525474217984,"id_str":"654387525474217984","user_id":115743450,"user_id_str":"115743450"},"timestamp_ms":"1447080013136"}} +{"delete":{"status":{"id":663714839676628992,"id_str":"663714839676628992","user_id":122845431,"user_id_str":"122845431"},"timestamp_ms":"1447080013140"}} +{"delete":{"status":{"id":628429812667805697,"id_str":"628429812667805697","user_id":2755227679,"user_id_str":"2755227679"},"timestamp_ms":"1447080013165"}} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795869237249,"id_str":"663727795869237249","text":"@bahrisenkal @ferhad_oz @LkmnErdo @semihaduru https:\/\/t.co\/euhtDUVL5U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727123413262336,"in_reply_to_status_id_str":"663727123413262336","in_reply_to_user_id":115623043,"in_reply_to_user_id_str":"115623043","in_reply_to_screen_name":"bahrisenkal","user":{"id":1545781789,"id_str":"1545781789","name":"Mustafa Gul","screen_name":"mustafagul36","location":"\u015eAM istanbul","url":null,"description":"Bu sava\u015fta kendi \u015fahs\u0131mda hi\u00e7 bir g\u00fc\u00e7kuvvet g\u00f6rm\u00fcyorum,vehmetmiyorum. Yanl\u0131z ve yaln\u0131z her\u015feyi bilen sonsuz kudret sahibi olan Allah'a dayan\u0131yor,ona g\u00fcveniyorum","protected":false,"verified":false,"followers_count":550,"friends_count":1097,"listed_count":0,"favourites_count":1578,"statuses_count":10667,"created_at":"Tue Jun 25 13:38:38 +0000 2013","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616872783772041216\/V8jK1-Y4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616872783772041216\/V8jK1-Y4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1545781789\/1435909758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bahrisenkal","name":"Bahri \u015eenkal","id":115623043,"id_str":"115623043","indices":[0,12]},{"screen_name":"ferhad_oz","name":"Ferhad","id":185998000,"id_str":"185998000","indices":[13,23]},{"screen_name":"LkmnErdo","name":"LokmanErdo\u011fan","id":1001739637,"id_str":"1001739637","indices":[24,33]},{"screen_name":"semihaduru","name":"semiha duru","id":601280121,"id_str":"601280121","indices":[34,45]}],"symbols":[],"media":[{"id":663727793289695232,"id_str":"663727793289695232","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6VKWEAABB1Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6VKWEAABB1Y.jpg","url":"https:\/\/t.co\/euhtDUVL5U","display_url":"pic.twitter.com\/euhtDUVL5U","expanded_url":"http:\/\/twitter.com\/mustafagul36\/status\/663727795869237249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727793289695232,"id_str":"663727793289695232","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6VKWEAABB1Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6VKWEAABB1Y.jpg","url":"https:\/\/t.co\/euhtDUVL5U","display_url":"pic.twitter.com\/euhtDUVL5U","expanded_url":"http:\/\/twitter.com\/mustafagul36\/status\/663727795869237249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080012658"} +{"delete":{"status":{"id":663727686829785088,"id_str":"663727686829785088","user_id":17921132,"user_id_str":"17921132"},"timestamp_ms":"1447080013083"}} +{"delete":{"status":{"id":663725249951899648,"id_str":"663725249951899648","user_id":3601398975,"user_id_str":"3601398975"},"timestamp_ms":"1447080013242"}} +{"delete":{"status":{"id":550243213001232384,"id_str":"550243213001232384","user_id":2365306682,"user_id_str":"2365306682"},"timestamp_ms":"1447080013356"}} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088707073,"id_str":"663727800088707073","text":"Er zat zo'n lieve hond in de trein. Ik wil er 5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87510403,"id_str":"87510403","name":"krulletje","screen_name":"jelleturk","location":"woonboot","url":null,"description":"If the oceans die, we die.\n\n#teampatad","protected":false,"verified":false,"followers_count":288,"friends_count":648,"listed_count":2,"favourites_count":3312,"statuses_count":24556,"created_at":"Wed Nov 04 19:20:51 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558039156949938176\/ro0gSUBI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558039156949938176\/ro0gSUBI.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"5BBFEC","profile_text_color":"263C5A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646793923168366592\/mG-6N288_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646793923168366592\/mG-6N288_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87510403\/1446297205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800084504577,"id_str":"663727800084504577","text":"RT @NeviBackwoods: Good morning \u270c\ufe0f https:\/\/t.co\/Fi2NsC2GBL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2369393266,"id_str":"2369393266","name":"Perfect Stoner Pair\u2122","screen_name":"Stonerpair","location":"Upstate New York","url":"https:\/\/www.etsy.com\/shop\/TranquilArtz","description":"The only thing we love more than weed is each other. J+E 12.21.12\u2764\ufe0f #perfectstonerpair #thingstobehappyabout @tranquil_artz","protected":false,"verified":false,"followers_count":3689,"friends_count":342,"listed_count":96,"favourites_count":57305,"statuses_count":35022,"created_at":"Thu Feb 27 17:30:21 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482182541189734401\/UF-6vSvw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482182541189734401\/UF-6vSvw.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653924803733274625\/Zjuh_5l8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653924803733274625\/Zjuh_5l8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2369393266\/1437652073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:00:46 +0000 2015","id":663310186522804224,"id_str":"663310186522804224","text":"Good morning \u270c\ufe0f https:\/\/t.co\/Fi2NsC2GBL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230060733,"id_str":"230060733","name":"Nevi","screen_name":"NeviBackwoods","location":"NY ","url":null,"description":"Sports, Music & Random Thoughts","protected":false,"verified":false,"followers_count":603,"friends_count":489,"listed_count":15,"favourites_count":21319,"statuses_count":27697,"created_at":"Fri Dec 24 04:27:04 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181654552\/2UONx4wt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181654552\/2UONx4wt.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659463293267005444\/2dlDyyzU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659463293267005444\/2dlDyyzU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230060733\/1439483535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663310186384367618,"id_str":"663310186384367618","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","url":"https:\/\/t.co\/Fi2NsC2GBL","display_url":"pic.twitter.com\/Fi2NsC2GBL","expanded_url":"http:\/\/twitter.com\/NeviBackwoods\/status\/663310186522804224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663310186384367618,"id_str":"663310186384367618","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","url":"https:\/\/t.co\/Fi2NsC2GBL","display_url":"pic.twitter.com\/Fi2NsC2GBL","expanded_url":"http:\/\/twitter.com\/NeviBackwoods\/status\/663310186522804224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NeviBackwoods","name":"Nevi","id":230060733,"id_str":"230060733","indices":[3,17]}],"symbols":[],"media":[{"id":663310186384367618,"id_str":"663310186384367618","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","url":"https:\/\/t.co\/Fi2NsC2GBL","display_url":"pic.twitter.com\/Fi2NsC2GBL","expanded_url":"http:\/\/twitter.com\/NeviBackwoods\/status\/663310186522804224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663310186522804224,"source_status_id_str":"663310186522804224","source_user_id":230060733,"source_user_id_str":"230060733"}]},"extended_entities":{"media":[{"id":663310186384367618,"id_str":"663310186384367618","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNGaNWoAIYF_7.jpg","url":"https:\/\/t.co\/Fi2NsC2GBL","display_url":"pic.twitter.com\/Fi2NsC2GBL","expanded_url":"http:\/\/twitter.com\/NeviBackwoods\/status\/663310186522804224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663310186522804224,"source_status_id_str":"663310186522804224","source_user_id":230060733,"source_user_id_str":"230060733"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013663"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800084504576,"id_str":"663727800084504576","text":"RT @wiltshire544: Murdoch constantly stirs up race, religious and class hatred in the SUN. Why is he above the law ? https:\/\/t.co\/WRwoEAO6lc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1327870124,"id_str":"1327870124","name":"FreeAlg\u00e9rie","screen_name":"harf19dz","location":null,"url":null,"description":"Bien inform\u00e9s, les hommes sont des citoyens, mal inform\u00e9s ils deviennent des sujets . \u062d\u0631\u064a\u0629 \u0627\u0644\u062a\u0639\u0628\u064a\u0631 \u0648\u0627\u062d\u062a\u0631\u0627\u0645 \u0627\u0644\u062d\u0642\u0648\u0642 \u0627\u0644\u0625\u0646\u0633\u0627\u0646\u064a\u0629 .. Seek truth and disseminate.","protected":false,"verified":false,"followers_count":177,"friends_count":624,"listed_count":17,"favourites_count":68,"statuses_count":5013,"created_at":"Thu Apr 04 21:43:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607150763228426240\/enc-dldN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607150763228426240\/enc-dldN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1327870124\/1433590998","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:34:45 +0000 2015","id":663681124279939072,"id_str":"663681124279939072","text":"Murdoch constantly stirs up race, religious and class hatred in the SUN. Why is he above the law ? https:\/\/t.co\/WRwoEAO6lc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958046713,"id_str":"2958046713","name":"John Wiltshire","screen_name":"wiltshire544","location":null,"url":null,"description":"I believe in social democracy, Corbyn, Palestine, Justice, Peace, Equality, NHS and Free Education for all. We need honest Government that works for its people","protected":false,"verified":false,"followers_count":2568,"friends_count":3141,"listed_count":40,"favourites_count":2,"statuses_count":15571,"created_at":"Sat Jan 03 07:57:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650770907150090240\/wTp_Tzjh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650770907150090240\/wTp_Tzjh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958046713\/1445015150","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663680127075790848,"quoted_status_id_str":"663680127075790848","quoted_status":{"created_at":"Mon Nov 09 11:30:47 +0000 2015","id":663680127075790848,"id_str":"663680127075790848","text":"Just remember #Hillsborough #MillyDowler #Hacking and dont buy this #Murdoch rag https:\/\/t.co\/lCkZY4n5Ks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":743851213,"id_str":"743851213","name":"ChrisClose51","screen_name":"ChrisClose51","location":"Blanchland","url":null,"description":"Professional Advocate for vulnerable people - A lover and a fighter - my previous account was 'cyber attacked' by disgruntled 'proper people'!","protected":false,"verified":false,"followers_count":2656,"friends_count":2709,"listed_count":24,"favourites_count":24,"statuses_count":27992,"created_at":"Tue Aug 07 22:11:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000435458694\/9b439394fa29a379b0941c4b66d78c15_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000435458694\/9b439394fa29a379b0941c4b66d78c15_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663671283134009344,"quoted_status_id_str":"663671283134009344","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Hillsborough","indices":[14,27]},{"text":"MillyDowler","indices":[28,40]},{"text":"Hacking","indices":[41,49]},{"text":"Murdoch","indices":[68,76]}],"urls":[{"url":"https:\/\/t.co\/lCkZY4n5Ks","expanded_url":"https:\/\/twitter.com\/charlesfrith\/status\/663671283134009344","display_url":"twitter.com\/charlesfrith\/s\u2026","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":15,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WRwoEAO6lc","expanded_url":"https:\/\/twitter.com\/ChrisClose51\/status\/663680127075790848","display_url":"twitter.com\/ChrisClose51\/s\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WRwoEAO6lc","expanded_url":"https:\/\/twitter.com\/ChrisClose51\/status\/663680127075790848","display_url":"twitter.com\/ChrisClose51\/s\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"wiltshire544","name":"John Wiltshire","id":2958046713,"id_str":"2958046713","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013663"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088596481,"id_str":"663727800088596481","text":"\u305f\u308f\u3057\u304c\u5e74\u4e0a\u3068\u304b\u8a00\u3063\u305f\u304b\u3089\u3044\u304f\u3064\u3084\u306d\u3093\u3068","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519605694,"id_str":"519605694","name":"\u304a\u308c","screen_name":"longrun63","location":"\u8328\u57ce\u770c\u6c34\u6238\u5e02\u5782\u6c34\u533a","url":"http:\/\/www.amazon.co.jp\/gp\/registry\/wishlist\/ref=nav__gno_listpop_wi?ie=UTF8&requiresSignIn=1","description":"\u3053\u3082\u308b\u3000\u30a2\u30a4\u30b3\u30f3\u306f\u304b\u305c\u3063\u3068\u3055\u3093\u306e\u7bb1\u30eb\u30ca\u30b5\u3092\u4f7f\u308f\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\u3002\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1179,"friends_count":819,"listed_count":79,"favourites_count":110692,"statuses_count":221019,"created_at":"Fri Mar 09 16:11:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607624723\/xx416pofuad2mch1bkzc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607624723\/xx416pofuad2mch1bkzc.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000350995309\/1ee6e4f6654cdcf3e7afcd5d49993ffd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000350995309\/1ee6e4f6654cdcf3e7afcd5d49993ffd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519605694\/1420260212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800080318464,"id_str":"663727800080318464","text":"\u0641\u0627\u062a\u062d\u0647 \u0627\u0644\u0643\u0627\u0645 \u0648\u0646\u0627\u0637\u0631\u062a\u0643\u0645 \u0639\u0644 \u062f\u0631\u062f\u0634\u062a\u0649 \u0627\u0644\u062e\u0627\u0635\u0647 \u0645\u0646 \u0627\u0644\u0631\u0627\u0628\u0637\nhttps:\/\/t.co\/CslHUAALrb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3965466616,"id_str":"3965466616","name":"\u0646\u064a\u0643\u064a\u0646\u064a \u0628\u062d\u0646\u064a\u0647","screen_name":"xcf2283","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":802,"listed_count":0,"favourites_count":0,"statuses_count":4200,"created_at":"Thu Oct 15 13:11:06 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659821580508262401\/BnTow6Im_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659821580508262401\/BnTow6Im_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CslHUAALrb","expanded_url":"http:\/\/goo.gl\/mkk0cE","display_url":"goo.gl\/mkk0cE","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080013662"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800067559424,"id_str":"663727800067559424","text":"RT @chicserullyses: kapatid mo ba si Tommy Esguerra :D @NikkieEsguerra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1545627427,"id_str":"1545627427","name":"devy febr\u03af\u03b1\u03b7\u03b1 \u265a","screen_name":"Devy_RTH","location":"MY ID PH","url":"http:\/\/Instagram.com\/devyfebrianaaa","description":"try to grateful on any changes | take the opportunity that exists & make it perfect | don't stop chasing your dream | RLT | OLCP BROTHERS | USWB | 6\/6 CHICSER\u2764\u270c","protected":false,"verified":false,"followers_count":3967,"friends_count":1013,"listed_count":7,"favourites_count":2271,"statuses_count":60212,"created_at":"Tue Jun 25 12:21:57 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"2537C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579930813153718273\/9iPn-XvU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579930813153718273\/9iPn-XvU.jpg","profile_background_tile":true,"profile_link_color":"1539BD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650491759110127616\/qDScJE8E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650491759110127616\/qDScJE8E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1545627427\/1445758737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:52 +0000 2015","id":663718400506490882,"id_str":"663718400506490882","text":"kapatid mo ba si Tommy Esguerra :D @NikkieEsguerra","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521333185,"id_str":"521333185","name":"Ullyses Webb Basa","screen_name":"chicserullyses","location":null,"url":"https:\/\/www.facebook.com\/UllysesBasaChicser?fref=ts","description":"Instagram https:\/\/Instagram.com\/chicser_ullyses\/ Follow my Official page","protected":false,"verified":false,"followers_count":213447,"friends_count":150,"listed_count":303,"favourites_count":3173,"statuses_count":14593,"created_at":"Sun Mar 11 13:46:02 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000105050501\/e01044c380c059d4c907c91f8e373283.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000105050501\/e01044c380c059d4c907c91f8e373283.jpeg","profile_background_tile":true,"profile_link_color":"FC00FC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632730194768367616\/sLNUKlUn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632730194768367616\/sLNUKlUn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521333185\/1436155367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":31,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NikkieEsguerra","name":"Nikkie Lyn Esguerra","id":192883926,"id_str":"192883926","indices":[35,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chicserullyses","name":"Ullyses Webb Basa","id":521333185,"id_str":"521333185","indices":[3,18]},{"screen_name":"NikkieEsguerra","name":"Nikkie Lyn Esguerra","id":192883926,"id_str":"192883926","indices":[55,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080013659"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088686592,"id_str":"663727800088686592","text":"RT @putomonstrinho: Perdeste tempo a reclamar agora eu tenho que bazar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3404055815,"id_str":"3404055815","name":"Rodrigo Ran\u00e7\u00e3o","screen_name":"OMagnataRR","location":"Porto, Portugal","url":null,"description":"Rodri | 15 | Insta\/Snap: rodrigodaniel06 | BENFICA","protected":false,"verified":false,"followers_count":190,"friends_count":40,"listed_count":2,"favourites_count":5642,"statuses_count":13299,"created_at":"Wed Aug 05 11:23:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654754736822837248\/6L51poHb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654754736822837248\/6L51poHb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3404055815\/1446252923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:02 +0000 2015","id":663726745934282753,"id_str":"663726745934282753","text":"Perdeste tempo a reclamar agora eu tenho que bazar","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2667375702,"id_str":"2667375702","name":"Monstrinho","screen_name":"putomonstrinho","location":"Barreiro, Portugal","url":null,"description":"6teen \/\/ Margem \/\/ Sporting","protected":false,"verified":false,"followers_count":1079,"friends_count":314,"listed_count":1,"favourites_count":3937,"statuses_count":56720,"created_at":"Mon Jul 21 22:43:58 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532933116617183232\/wbaXHU0Y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532933116617183232\/wbaXHU0Y.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660077585502720000\/rJkrkjX0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660077585502720000\/rJkrkjX0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2667375702\/1446662758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"putomonstrinho","name":"Monstrinho","id":2667375702,"id_str":"2667375702","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800076083200,"id_str":"663727800076083200","text":"RT @MagazineAlboran: Noticia | El nuevo disco de Pablo Albor\u00e1n incluye temas del concierto de este verano en Nerja https:\/\/t.co\/clxHFPFRAD \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2764046193,"id_str":"2764046193","name":"Maria Jose Velazquez","screen_name":"Majo28262","location":"Asuncion, Paraguay","url":null,"description":"Alboranista! \u2661\nSoy miembro de @PalboranPyFC Club de Fans Oficial en Paraguay","protected":false,"verified":false,"followers_count":216,"friends_count":881,"listed_count":3,"favourites_count":7522,"statuses_count":4847,"created_at":"Sun Sep 07 16:19:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587326217927417857\/VlKFTfol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587326217927417857\/VlKFTfol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2764046193\/1428864616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:16:10 +0000 2015","id":663691550107557893,"id_str":"663691550107557893","text":"Noticia | El nuevo disco de Pablo Albor\u00e1n incluye temas del concierto de este verano en Nerja https:\/\/t.co\/clxHFPFRAD v\u00eda @Infonerjacom","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1402032583,"id_str":"1402032583","name":"AlboranistasMAGAZINE","screen_name":"MagazineAlboran","location":"Fb: Alboranista's Magazine","url":"http:\/\/issuu.com\/alboranistasmagazine","description":"Alboranista's Magazine, la revista sobre Pablo Albor\u00e1n para toda la familia Alboranista. Contacto: redaccion.alboranistasmagazine@gmail.com","protected":false,"verified":false,"followers_count":4227,"friends_count":256,"listed_count":12,"favourites_count":2031,"statuses_count":10646,"created_at":"Sat May 04 11:08:50 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511914463759310848\/xdwbJN7G.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511914463759310848\/xdwbJN7G.jpeg","profile_background_tile":true,"profile_link_color":"248E96","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553160077599723520\/0WRgPQcd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553160077599723520\/0WRgPQcd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1402032583\/1410885708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/clxHFPFRAD","expanded_url":"http:\/\/www.infonerja.com\/noticia-local-el-nuevo-disco-de-pablo-alboran-incluye-temas-del-concierto-de-este-verano-en-nerja-8289-nerja-es","display_url":"infonerja.com\/noticia-local-\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"Infonerjacom","name":"Infonerja.com","id":121095124,"id_str":"121095124","indices":[122,135]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/clxHFPFRAD","expanded_url":"http:\/\/www.infonerja.com\/noticia-local-el-nuevo-disco-de-pablo-alboran-incluye-temas-del-concierto-de-este-verano-en-nerja-8289-nerja-es","display_url":"infonerja.com\/noticia-local-\u2026","indices":[115,138]}],"user_mentions":[{"screen_name":"MagazineAlboran","name":"AlboranistasMAGAZINE","id":1402032583,"id_str":"1402032583","indices":[3,19]},{"screen_name":"Infonerjacom","name":"Infonerja.com","id":121095124,"id_str":"121095124","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059338752,"id_str":"663727800059338752","text":"\"No es una atribuci\u00f3n espec\u00edfica de la Corte\", dijo el Jefe de Gabinete sobre la creaci\u00f3n de una comisi\u00f3n judicial.. https:\/\/t.co\/gjyfaASMjF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179102381,"id_str":"179102381","name":"Rodolfo FpV","screen_name":"fitosilvero","location":"Punilla- \u00c7ordoba- Argentina ","url":"http:\/\/twitter.com\/fitosilvero","description":"Amo mi pa\u00eds Argentina, A mi familia, a los amigos\/as y la libertad..No la dependencia,, Modelo Nac&Pop @CFKArgentina - Voto a #ScioliZannini - River Plate -","protected":false,"verified":false,"followers_count":9396,"friends_count":10223,"listed_count":71,"favourites_count":12957,"statuses_count":72586,"created_at":"Mon Aug 16 14:23:49 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/213988100\/NSTORD_1.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/213988100\/NSTORD_1.JPG","profile_background_tile":true,"profile_link_color":"EB1D1D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635476730795454464\/hyX_zeOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635476730795454464\/hyX_zeOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179102381\/1446664903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gjyfaASMjF","expanded_url":"http:\/\/prensa.argentina.ar\/2015\/11\/09\/61714-no-es-una-atribucion-especifica-de-la-corte-dijo-el-jefe-de-gabinete-sobre-la-creacion-de-una-comision-judicial-para-combatir-el-narcotrafico.php#.VkCwBZYxcK8.twitter","display_url":"prensa.argentina.ar\/2015\/11\/09\/617\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092770304,"id_str":"663727800092770304","text":"\u771f\u306e\u529b\u3092\u767a\u63ee\u3057\u308d\uff01 \u5149\u6b66\u88c5\u3001\u30b3\u30b9\u30e2\u30b9\u30bd\u30fc\u30c9\u30a9\u30a9\u30a9\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1195298124,"id_str":"1195298124","name":"\u30c4\u30a4\u30fc\u30c8\u30ab\u30aa\u30b9","screen_name":"Tweet_Chaos","location":"\u6df7\u6c8c\u3068\u3057\u305f\u30bb\u30ab\u30a4","url":null,"description":"\u6df7\u6c8c\u306b\u57cb\u3081\u5c3d\u304f\u3055\u308c\u305f\u3053\u306e\u30bb\u30ab\u30a4\u306b\u4e00\u7b4b\u306e\u5149\u3092\u7167\u3089\u3057\u3066\u3001\u6df7\u6c8c\u306a\u3093\u3066\u6253\u3061\u7815\u3044\u3066\u307f\u305b\u308b!!!\n\u305d\u3093\u306a\u4f7f\u547d\u3092\u53d7\u3051\u3066\u3001\u50d5\u306f\u3042\u306e\u5927\u304d\u306a\u7a7a\u304b\u3089\u3084\u3063\u3066\u304d\u305f\u3093\u3060!!!","protected":false,"verified":false,"followers_count":3,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":72032,"created_at":"Mon Feb 18 23:58:06 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3275191596\/3cf3821812a8c3f995bdf168051d1413_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3275191596\/3cf3821812a8c3f995bdf168051d1413_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1195298124\/1361232304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800084492289,"id_str":"663727800084492289","text":"*11 https:\/\/t.co\/TpY0IsuJux","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124264731,"id_str":"124264731","name":"Juan","screen_name":"_Tajuan","location":"GA","url":null,"description":"#19 | InstaG: tajuan.x \/\/ SC: marquis.96","protected":false,"verified":false,"followers_count":531,"friends_count":278,"listed_count":4,"favourites_count":236,"statuses_count":44612,"created_at":"Thu Mar 18 20:38:01 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624101331\/blot1v94ini4x02qo5zm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624101331\/blot1v94ini4x02qo5zm.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663547441225027584\/Ju8w5mhf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663547441225027584\/Ju8w5mhf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124264731\/1444230407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727526997598208,"quoted_status_id_str":"663727526997598208","quoted_status":{"created_at":"Mon Nov 09 14:39:08 +0000 2015","id":663727526997598208,"id_str":"663727526997598208","text":"My day would be awesome if my 12 o'clock class get cancelled","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":933929239,"id_str":"933929239","name":"Miesha","screen_name":"X_UnOfficial","location":null,"url":null,"description":"Where does this road go from here ? #DHSALUMNI","protected":false,"verified":false,"followers_count":937,"friends_count":972,"listed_count":0,"favourites_count":29,"statuses_count":14371,"created_at":"Thu Nov 08 07:47:05 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654399325062209536\/XLKY5Tyj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654399325062209536\/XLKY5Tyj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933929239\/1437358643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TpY0IsuJux","expanded_url":"https:\/\/twitter.com\/x_unofficial\/status\/663727526997598208","display_url":"twitter.com\/x_unofficial\/s\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080013663"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800063397889,"id_str":"663727800063397889","text":"Get Weather Updates from The Weather Channel. 09:40:12","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2604067855,"id_str":"2604067855","name":"07480jcsc","screen_name":"07480jcsc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":93068,"created_at":"Fri Jul 04 20:10:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013658"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800063361028,"id_str":"663727800063361028","text":"@ryou_1126 \n\u77e5\u3089\u3093\u4eba\u306e\u6295\u7a3f\u306b\u3044\u3044\u306d\u62bc\u3059\u306e\u306a\u3093\u304b\u3073\u3073\u308b\u3084\u3093\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727419161841665,"in_reply_to_status_id_str":"663727419161841665","in_reply_to_user_id":1839829747,"in_reply_to_user_id_str":"1839829747","in_reply_to_screen_name":"ryou_1126","user":{"id":1607430278,"id_str":"1607430278","name":"\u30af\u30dc\u30ea\u30e7\u30a6\u30e4","screen_name":"ryoya0615","location":null,"url":null,"description":"\u6e05\u6c34\u8c3768th \u30ed\u30c3\u30af\u304c\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":264,"friends_count":318,"listed_count":1,"favourites_count":2059,"statuses_count":5307,"created_at":"Sat Jul 20 04:33:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640110360045850624\/ot9HviQU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640110360045850624\/ot9HviQU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607430278\/1441553250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ryou_1126","name":"N\u7530\u541b","id":1839829747,"id_str":"1839829747","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013658"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059215873,"id_str":"663727800059215873","text":"RT @LongFaiz: Dalam 10 orang mesti ada 1orang yg tak suka kita , entah entah lagi 8 orang tu pun fake . Yang ikhlas dgn kita cuma seorang j\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899248054,"id_str":"2899248054","name":"najwaZAINAL","screen_name":"kakwaaaaaa","location":null,"url":null,"description":"Hanya untuk yang ikhlas","protected":false,"verified":false,"followers_count":144,"friends_count":133,"listed_count":2,"favourites_count":385,"statuses_count":2655,"created_at":"Fri Nov 14 11:10:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639335431208965\/3I_JThP2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639335431208965\/3I_JThP2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899248054\/1446819765","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:12 +0000 2015","id":663724774250573824,"id_str":"663724774250573824","text":"Dalam 10 orang mesti ada 1orang yg tak suka kita , entah entah lagi 8 orang tu pun fake . Yang ikhlas dgn kita cuma seorang je hmm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231915360,"id_str":"2231915360","name":"LongFaiz\u2122","screen_name":"LongFaiz","location":"Kelantanese Malaysia","url":"http:\/\/longfaiz.blogspot.com","description":"Hamba Allah yang mempunyai kelebihan dan kekurangan masing2 . Account IG Longfaizz . Wechat Longfaiz.","protected":false,"verified":false,"followers_count":41199,"friends_count":23249,"listed_count":12,"favourites_count":534,"statuses_count":2470,"created_at":"Thu Dec 05 19:16:32 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661622007079944192\/YqsIoXSR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661622007079944192\/YqsIoXSR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231915360\/1422457269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":52,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LongFaiz","name":"LongFaiz\u2122","id":2231915360,"id_str":"2231915360","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800071778304,"id_str":"663727800071778304","text":"Get Weather Updates from The Weather Channel. 09:40:13","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3306225374,"id_str":"3306225374","name":"lake31635","screen_name":"lake31635","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":36,"listed_count":0,"favourites_count":0,"statuses_count":41096,"created_at":"Tue Aug 04 17:03:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013660"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092766208,"id_str":"663727800092766208","text":"RT @kamozi: \u5f7c\u6c0f\u9078\u3076\u6642\u8eab\u9577\u3092\u91cd\u8981\u306a\u6761\u4ef6\u306b\u3059\u308b\u306e\u3063\u3066\u79c1\u306b\u306f\u306a\u3044\u767a\u60f3\u3060\u3002\u9854\u9762\u306a\u3089\u307e\u3060\u308f\u304b\u308b\u3051\u3069\u8eab\u9577\u306a\u3093\u304b\u3069\u3046\u3067\u3082\u3044\u3044\u3088\u3002\u3082\u3057\u30e0\u30ab\u3064\u3044\u3066\u6bba\u3057\u3066\u57cb\u3081\u308b\u6642\u3042\u3093\u307e\u308a\u5927\u304d\u3044\u3068\u6271\u3044\u306b\u56f0\u308b\u304b\u3089\u3080\u3057\u308d\u5c0f\u67c4\u306a\u65b9\u304c\u3044\u3044\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":328350022,"id_str":"328350022","name":"\u307e\u3055@\u306d\u3080\u3063\u305f\u3051\u3082\u306e","screen_name":"Beast_in_view","location":"\u5927\u962a\u5e9c","url":null,"description":"\u91d1\u3060\u3002\u3068\u306b\u304b\u304f\u91d1\u3092\u51fa\u305b_(\u2312(\uff89\uff7c '\u03c9')\uff89\uff7c \uff8a\uff9e\uff9d\uff8a\uff9e\uff9d \u4e16\u754c\u306e\u4e2d\u5fc3\u3067\u306d\u3080\u3063\u305f\u3051\u3082\u306e \u65e9\u3044\u3068\u3053\u7720\u308a\u305f\u3044_(\u2312(*'\u03c9'*)\u3000\u8266\u3053\u308c(\u5bbf\u6bdb) \u9234\u8c37\u597d\u304d\u3059\u304e\u3066\u3044\u304d\u3064\u3089","protected":false,"verified":false,"followers_count":151,"friends_count":144,"listed_count":7,"favourites_count":10203,"statuses_count":26407,"created_at":"Sun Jul 03 06:05:44 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465132891882541056\/N1Mvzu_h.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465132891882541056\/N1Mvzu_h.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441548865594880000\/1HiM6NVJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441548865594880000\/1HiM6NVJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328350022\/1380200707","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:00:01 +0000 2015","id":663385494105952257,"id_str":"663385494105952257","text":"\u5f7c\u6c0f\u9078\u3076\u6642\u8eab\u9577\u3092\u91cd\u8981\u306a\u6761\u4ef6\u306b\u3059\u308b\u306e\u3063\u3066\u79c1\u306b\u306f\u306a\u3044\u767a\u60f3\u3060\u3002\u9854\u9762\u306a\u3089\u307e\u3060\u308f\u304b\u308b\u3051\u3069\u8eab\u9577\u306a\u3093\u304b\u3069\u3046\u3067\u3082\u3044\u3044\u3088\u3002\u3082\u3057\u30e0\u30ab\u3064\u3044\u3066\u6bba\u3057\u3066\u57cb\u3081\u308b\u6642\u3042\u3093\u307e\u308a\u5927\u304d\u3044\u3068\u6271\u3044\u306b\u56f0\u308b\u304b\u3089\u3080\u3057\u308d\u5c0f\u67c4\u306a\u65b9\u304c\u3044\u3044\u308f","source":"\u003ca href=\"http:\/\/lagtter.com\/\" rel=\"nofollow\"\u003elagtter for SmartPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81297209,"id_str":"81297209","name":"\u9d28\u5cf6\u306e\u5b97\u6559\u3078\u3088\u3046\u3053\u305d","screen_name":"kamozi","location":"\u9d28\u5cf6\u304b\u306a\uff1f","url":null,"description":"\u30d5\u30a3\u30af\u30b7\u30e7\u30f3\u3067\u3059","protected":false,"verified":false,"followers_count":18552,"friends_count":760,"listed_count":963,"favourites_count":18454,"statuses_count":14043,"created_at":"Sat Oct 10 06:32:47 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435430992610721792\/uDCIw5x6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435430992610721792\/uDCIw5x6_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":92,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kamozi","name":"\u9d28\u5cf6\u306e\u5b97\u6559\u3078\u3088\u3046\u3053\u305d","id":81297209,"id_str":"81297209","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800080326656,"id_str":"663727800080326656","text":"\u0627\u0647\u062e \u064a\u0627 \u0631\u0628\u064a \u064a\u0642\u0627\u0644\u0647 \u064a\u0646\u0643\u062a \ud83d\udc4c\ud83c\udffc\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":637264711,"id_str":"637264711","name":"R.","screen_name":"xo_1133","location":"\u0641\u064a \u0628\u064a\u062a\u0646\u0627 \u062a\u062d\u062a \u0627\u0644\u0645\u0643\u064a\u0641 ~","url":null,"description":"\u2651\ufe0f\u0627\u0644\u062c\u062f\u064a\u060c \u0661\u0669\u0669\u0666\u0645.","protected":false,"verified":false,"followers_count":540,"friends_count":137,"listed_count":0,"favourites_count":92,"statuses_count":4121,"created_at":"Mon Jul 16 20:35:28 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606032120\/ttf436l3rbpw0jparjeq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606032120\/ttf436l3rbpw0jparjeq.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610822590123249664\/WiLXCFzx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610822590123249664\/WiLXCFzx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/637264711\/1434466431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080013662"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800080175105,"id_str":"663727800080175105","text":"Saba: Humanitarian situation in Yemen reviewed https:\/\/t.co\/RZ5MbXEeUX","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37980098,"id_str":"37980098","name":"Yemen Watch","screen_name":"yemenwatch","location":null,"url":null,"description":"YemenWatch is an automated news aggregator managed by journalist Louise Hallman @louise_hallman","protected":false,"verified":false,"followers_count":12167,"friends_count":59,"listed_count":531,"favourites_count":0,"statuses_count":56616,"created_at":"Tue May 05 18:06:47 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/11683920\/old_sanaa_small.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/11683920\/old_sanaa_small.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242073669\/506195079212_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242073669\/506195079212_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RZ5MbXEeUX","expanded_url":"http:\/\/dlvr.it\/ChfgSK","display_url":"dlvr.it\/ChfgSK","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080013662"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800097120256,"id_str":"663727800097120256","text":"@arielcardozo ue","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725766862065664,"in_reply_to_status_id_str":"663725766862065664","in_reply_to_user_id":40555409,"in_reply_to_user_id_str":"40555409","in_reply_to_screen_name":"arielcardozo","user":{"id":113127260,"id_str":"113127260","name":"Natalia","screen_name":"satannat","location":"GO","url":"http:\/\/Instagram.com\/nataliaicr","description":"ola nao tenho interesse","protected":false,"verified":false,"followers_count":1122,"friends_count":330,"listed_count":6,"favourites_count":13920,"statuses_count":42160,"created_at":"Wed Feb 10 20:04:45 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478021229262041088\/ugQIVJSt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478021229262041088\/ugQIVJSt.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"575757","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663506070212624384\/pCs6BEJ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663506070212624384\/pCs6BEJ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113127260\/1421079965","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arielcardozo","name":"Ariel Cardozo","id":40555409,"id_str":"40555409","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080013666"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800096952320,"id_str":"663727800096952320","text":"RT @gekiomo_gaijin: \u30e1\u30b8\u30e3\u30fc\u304c\u306a\u3044\u306e\u3067\u624b\u3067\u6e2c\u3063\u3066\u305f\u6642\uff57 https:\/\/t.co\/gbOHZDZqj8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2868282078,"id_str":"2868282078","name":"\u305f\u3093\u3058\u3087\u30fc","screen_name":"joutantanthan","location":null,"url":null,"description":"\u732a\u540d\u5ddd\u9ad8\u6821\u2192\u5b9d\u585a\u533b\u7642\u5927\u5b664th\u67d4\u6574 \u91ce\u7403\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u30c0\u30a4\u30b9\u30b1\u3001\u30ab\u30e9\u30aa\u30b1\u3001\u30dc\u30fc\u30ea\u30f3\u30b0\u3001\u713c\u304d\u9ce5\u3001\u30cd\u30ae","protected":false,"verified":false,"followers_count":294,"friends_count":299,"listed_count":0,"favourites_count":695,"statuses_count":736,"created_at":"Tue Oct 21 00:17:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658297743006302209\/jV46ckF__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658297743006302209\/jV46ckF__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868282078\/1444534890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:51:23 +0000 2015","id":663005832301297664,"id_str":"663005832301297664","text":"\u30e1\u30b8\u30e3\u30fc\u304c\u306a\u3044\u306e\u3067\u624b\u3067\u6e2c\u3063\u3066\u305f\u6642\uff57 https:\/\/t.co\/gbOHZDZqj8","source":"\u003ca href=\"http:\/\/www.yahoo.co.jp\" rel=\"nofollow\"\u003e\u3064\u3044\u3044\u305f\u30fc\u3000\u3084\u308d\u3046\u3088\uff01\u3000sk86naritazan\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3399401352,"id_str":"3399401352","name":"\u6fc0\u30aa\u30e2\uff01\u5916\u56fd\u4eba","screen_name":"gekiomo_gaijin","location":"GAIJIN","url":null,"description":"\u6fc0\u30aa\u30e2\u30ed\u306a\u30b9\u30fc\u30d1\u30fc\u5916\u56fd\u4eba\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8\uff01\u3000\u7b11\u3063\u305f\u3089RT\u3060\u3088\uff57\u3000OK\uff1f","protected":false,"verified":false,"followers_count":1686,"friends_count":710,"listed_count":0,"favourites_count":2,"statuses_count":472,"created_at":"Mon Aug 31 03:25:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641635780016738305\/38J2SCnP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641635780016738305\/38J2SCnP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":33,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gbOHZDZqj8","expanded_url":"https:\/\/vine.co\/v\/eia2UE9OBvq","display_url":"vine.co\/v\/eia2UE9OBvq","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gbOHZDZqj8","expanded_url":"https:\/\/vine.co\/v\/eia2UE9OBvq","display_url":"vine.co\/v\/eia2UE9OBvq","indices":[38,61]}],"user_mentions":[{"screen_name":"gekiomo_gaijin","name":"\u6fc0\u30aa\u30e2\uff01\u5916\u56fd\u4eba","id":3399401352,"id_str":"3399401352","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013666"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800063397888,"id_str":"663727800063397888","text":"@Sulis_Tiiani Jiahh bodo amat :v galau mulu lu masih kecil juga :v","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663641459350892544,"in_reply_to_status_id_str":"663641459350892544","in_reply_to_user_id":1085319139,"in_reply_to_user_id_str":"1085319139","in_reply_to_screen_name":"Sulis_Tiiani","user":{"id":421910453,"id_str":"421910453","name":"Sangaji","screen_name":"JMS_Ajie","location":"Jakarta Timur","url":null,"description":"UnAvailable","protected":false,"verified":false,"followers_count":91,"friends_count":76,"listed_count":0,"favourites_count":49,"statuses_count":908,"created_at":"Sat Nov 26 15:06:25 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605191114627244032\/RTODER73_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605191114627244032\/RTODER73_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421910453\/1436984826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sulis_Tiiani","name":"Putri\u2661","id":1085319139,"id_str":"1085319139","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080013658"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800075988993,"id_str":"663727800075988993","text":"RT @toshiko91nr4: \u3010\u60b2\u5287\u3002\u3002\u3002\u3011\u300c\u306a\u3093\u3067\u3082\u9451\u5b9a\u56e3\u300d\u3067\u53f2\u4e0a\u6700\u4f4e\u306e\u653e\u9001\u4e8b\u6545\u767a\u751f\uff01\uff01\uff01\u4f9d\u983c\u4eba\u306f\u786c\u76f4\u3001\u30b9\u30bf\u30b8\u30aa\u304b\u3089\u306f\u60b2\u9cf4\uff01\uff01\uff01 https:\/\/t.co\/DqxOqPvAD8 https:\/\/t.co\/IKIu7IXTSz","source":"\u003ca href=\"https:\/\/twitter.com\/osamuddlog63\" rel=\"nofollow\"\u003eosamuddlog63\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2852597658,"id_str":"2852597658","name":"\u30ef\u30ed\u30b9\u30c4\u30a4\u30fc\u30c8\uff57","screen_name":"takumaqujfw","location":null,"url":null,"description":"\u4eca\u3001\u7b11\u3063\u305f\u3088\u306d\uff1f\u7b11\u3063\u305f\u3089RT\uff01\u304b\u3093\u306d\uff01","protected":false,"verified":false,"followers_count":190,"friends_count":813,"listed_count":0,"favourites_count":0,"statuses_count":547,"created_at":"Sun Oct 12 03:41:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560642279916838913\/PEc6cz_j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560642279916838913\/PEc6cz_j_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2852597658\/1422502551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727755587022848,"id_str":"663727755587022848","text":"\u3010\u60b2\u5287\u3002\u3002\u3002\u3011\u300c\u306a\u3093\u3067\u3082\u9451\u5b9a\u56e3\u300d\u3067\u53f2\u4e0a\u6700\u4f4e\u306e\u653e\u9001\u4e8b\u6545\u767a\u751f\uff01\uff01\uff01\u4f9d\u983c\u4eba\u306f\u786c\u76f4\u3001\u30b9\u30bf\u30b8\u30aa\u304b\u3089\u306f\u60b2\u9cf4\uff01\uff01\uff01 https:\/\/t.co\/DqxOqPvAD8 https:\/\/t.co\/IKIu7IXTSz","source":"\u003ca href=\"https:\/\/twitter.com\/togoshimfbah\" rel=\"nofollow\"\u003etogoshimfbah\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2890472574,"id_str":"2890472574","name":"\u305a\u3063\u3068\u524d\u304b\u3089\u30fb\u30fb\u30fb","screen_name":"toshiko91nr4","location":null,"url":null,"description":"\u604b\u611b\u3057\u305f\u3044\u30fb\u9752\u6625\u3057\u305f\u3044\uff01\u4eba\u751f\u306f\u604b\u3060\u3088\u306d\u2764","protected":false,"verified":false,"followers_count":291,"friends_count":203,"listed_count":0,"favourites_count":0,"statuses_count":475,"created_at":"Wed Nov 05 06:13:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560719418108284928\/TTyD6gKw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560719418108284928\/TTyD6gKw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2890472574\/1422520955","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DqxOqPvAD8","expanded_url":"http:\/\/bit.ly\/1L05gY4","display_url":"bit.ly\/1L05gY4","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":663727754848788480,"id_str":"663727754848788480","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","url":"https:\/\/t.co\/IKIu7IXTSz","display_url":"pic.twitter.com\/IKIu7IXTSz","expanded_url":"http:\/\/twitter.com\/toshiko91nr4\/status\/663727755587022848\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":520,"h":245,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727754848788480,"id_str":"663727754848788480","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","url":"https:\/\/t.co\/IKIu7IXTSz","display_url":"pic.twitter.com\/IKIu7IXTSz","expanded_url":"http:\/\/twitter.com\/toshiko91nr4\/status\/663727755587022848\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":520,"h":245,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DqxOqPvAD8","expanded_url":"http:\/\/bit.ly\/1L05gY4","display_url":"bit.ly\/1L05gY4","indices":[69,92]}],"user_mentions":[{"screen_name":"toshiko91nr4","name":"\u305a\u3063\u3068\u524d\u304b\u3089\u30fb\u30fb\u30fb","id":2890472574,"id_str":"2890472574","indices":[3,16]}],"symbols":[],"media":[{"id":663727754848788480,"id_str":"663727754848788480","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","url":"https:\/\/t.co\/IKIu7IXTSz","display_url":"pic.twitter.com\/IKIu7IXTSz","expanded_url":"http:\/\/twitter.com\/toshiko91nr4\/status\/663727755587022848\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":520,"h":245,"resize":"fit"}},"source_status_id":663727755587022848,"source_status_id_str":"663727755587022848","source_user_id":2890472574,"source_user_id_str":"2890472574"}]},"extended_entities":{"media":[{"id":663727754848788480,"id_str":"663727754848788480","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4F9UYAAmh7e.jpg","url":"https:\/\/t.co\/IKIu7IXTSz","display_url":"pic.twitter.com\/IKIu7IXTSz","expanded_url":"http:\/\/twitter.com\/toshiko91nr4\/status\/663727755587022848\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":520,"h":245,"resize":"fit"}},"source_status_id":663727755587022848,"source_status_id_str":"663727755587022848","source_user_id":2890472574,"source_user_id_str":"2890472574"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088571904,"id_str":"663727800088571904","text":"MY BIRBS HAVE AWOKEN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233196199,"id_str":"3233196199","name":"7\/11 \u2606","screen_name":"ultears","location":"kc \u2606 10 \u2606 she\/her","url":"http:\/\/twpf.jp\/ultears","description":"writes lame poetry. a tea luvr. a big dumb baby|| I \u2764 #\uae30\ubc94 & #\uc544\uc774\ub9b0|| header by: @smallstardust \u2606","protected":false,"verified":false,"followers_count":142,"friends_count":140,"listed_count":10,"favourites_count":28073,"statuses_count":24178,"created_at":"Tue Jun 02 04:01:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660999379071799296\/5iJjb_5Q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660999379071799296\/5iJjb_5Q.png","profile_background_tile":true,"profile_link_color":"E3E4FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663515218165698560\/P-PoeVQZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663515218165698560\/P-PoeVQZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233196199\/1447049414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800075980800,"id_str":"663727800075980800","text":"RT @hirameki1p: \u304d\u3063\u3068\u7121\u7406\u3060\u308d\u3046\u3051\u3069\n20\u79d2\u4ee5\u5185\u306b(3)\u898b\u3064\u3051\u305f\u4ebaRT(\u30fb\u03c9\u30fb) https:\/\/t.co\/PK0F61XzhG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3012112080,"id_str":"3012112080","name":"r1135d","screen_name":"R1135D","location":"\u4eac\u90fd\u5e9c \u4eac\u90fd\u5e02 ","url":null,"description":"\u30ea\u30bf\u30fc\u30f3\u30e9\u30a4\u30c0\u30fc\u306e\u5143\u6c17\u306a\u7206\u8d70\u89aa\u7236\u3067\u3059 HONDA CRF250M\u3067\u901a\u52e4\u7206\u8d70\u3057\u3066\u307e\u3059 \uff08\u7b11\uff09\u30d0\u30a4\u30af\u304c\u697d\u3057\u304f\u3066\u305f\u307e\u3089\u3093\u308f\u30fe(\uff20\u2312\u30fc\u2312\uff20)\u30ce","protected":false,"verified":false,"followers_count":162,"friends_count":344,"listed_count":2,"favourites_count":423,"statuses_count":558,"created_at":"Sat Feb 07 09:12:58 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631909922737815552\/wvejY5og_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631909922737815552\/wvejY5og_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012112080\/1437225057","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:06:49 +0000 2015","id":663296607878647808,"id_str":"663296607878647808","text":"\u304d\u3063\u3068\u7121\u7406\u3060\u308d\u3046\u3051\u3069\n20\u79d2\u4ee5\u5185\u306b(3)\u898b\u3064\u3051\u305f\u4ebaRT(\u30fb\u03c9\u30fb) https:\/\/t.co\/PK0F61XzhG","source":"\u003ca href=\"http:\/\/yahoo.co.jp\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30fc\u30c8bot2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3251606803,"id_str":"3251606803","name":"\uff11\uff05\u306e\u3072\u3089\u3081\u304d","screen_name":"hirameki1p","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2787,"friends_count":9,"listed_count":2,"favourites_count":0,"statuses_count":2951,"created_at":"Sun Jun 21 11:47:57 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612588599662358528\/39tB37Id_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612588599662358528\/39tB37Id_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251606803\/1434887490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1137,"favorite_count":109,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663296605278203904,"id_str":"663296605278203904","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","url":"https:\/\/t.co\/PK0F61XzhG","display_url":"pic.twitter.com\/PK0F61XzhG","expanded_url":"http:\/\/twitter.com\/hirameki1p\/status\/663296607878647808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":332,"resize":"fit"},"medium":{"w":599,"h":332,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663296605278203904,"id_str":"663296605278203904","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","url":"https:\/\/t.co\/PK0F61XzhG","display_url":"pic.twitter.com\/PK0F61XzhG","expanded_url":"http:\/\/twitter.com\/hirameki1p\/status\/663296607878647808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":332,"resize":"fit"},"medium":{"w":599,"h":332,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hirameki1p","name":"\uff11\uff05\u306e\u3072\u3089\u3081\u304d","id":3251606803,"id_str":"3251606803","indices":[3,14]}],"symbols":[],"media":[{"id":663296605278203904,"id_str":"663296605278203904","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","url":"https:\/\/t.co\/PK0F61XzhG","display_url":"pic.twitter.com\/PK0F61XzhG","expanded_url":"http:\/\/twitter.com\/hirameki1p\/status\/663296607878647808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":332,"resize":"fit"},"medium":{"w":599,"h":332,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":663296607878647808,"source_status_id_str":"663296607878647808","source_user_id":3251606803,"source_user_id_str":"3251606803"}]},"extended_entities":{"media":[{"id":663296605278203904,"id_str":"663296605278203904","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSAv4pUcAArBwF.jpg","url":"https:\/\/t.co\/PK0F61XzhG","display_url":"pic.twitter.com\/PK0F61XzhG","expanded_url":"http:\/\/twitter.com\/hirameki1p\/status\/663296607878647808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":332,"resize":"fit"},"medium":{"w":599,"h":332,"resize":"fit"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":663296607878647808,"source_status_id_str":"663296607878647808","source_user_id":3251606803,"source_user_id_str":"3251606803"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092749826,"id_str":"663727800092749826","text":"RT @jinhaes: jackson :((( my laughter box has been abused https:\/\/t.co\/Rj7fy5NPlw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2208568976,"id_str":"2208568976","name":"alltheway","screen_name":"babydontkai_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":206,"listed_count":0,"favourites_count":122,"statuses_count":2891,"created_at":"Fri Nov 22 08:09:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/527798233641144320\/9eqEnw-q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/527798233641144320\/9eqEnw-q.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578242528438177792\/-MCZT3sk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578242528438177792\/-MCZT3sk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2208568976\/1414723214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:58 +0000 2015","id":663721192591790080,"id_str":"663721192591790080","text":"jackson :((( my laughter box has been abused https:\/\/t.co\/Rj7fy5NPlw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1392198943,"id_str":"1392198943","name":"\u2727 tash \/\/ d-19 \u2727","screen_name":"jinhaes","location":"id","url":"http:\/\/flavors.me\/hyungline","description":"\uac13\uc138\ube10 \uc601\uc6d0\ud788 \ucc9c\ucc9c\ud788 \uac00\uc790 \u2661 a jinyoung & hyungline trash. #TeamGOT7","protected":false,"verified":false,"followers_count":4250,"friends_count":189,"listed_count":31,"favourites_count":16212,"statuses_count":91026,"created_at":"Tue Apr 30 14:21:20 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607963226827943936\/93M332G1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607963226827943936\/93M332G1.png","profile_background_tile":true,"profile_link_color":"8BA9AB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662265218785873920\/95aL-JDu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662265218785873920\/95aL-JDu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1392198943\/1446740958","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Rj7fy5NPlw","expanded_url":"https:\/\/vine.co\/v\/elWE9AL6nwH","display_url":"vine.co\/v\/elWE9AL6nwH","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Rj7fy5NPlw","expanded_url":"https:\/\/vine.co\/v\/elWE9AL6nwH","display_url":"vine.co\/v\/elWE9AL6nwH","indices":[58,81]}],"user_mentions":[{"screen_name":"jinhaes","name":"\u2727 tash \/\/ d-19 \u2727","id":1392198943,"id_str":"1392198943","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800071774208,"id_str":"663727800071774208","text":"RT @cion0316: \u6765\u9031\u306f\u5730\u9707\u3084\u4e8b\u6545\u306e\u30c6\u30ed\u30c3\u30d7\u3084\u30cb\u30e5\u30fc\u30b9\u901f\u5831\u304c\u51fa\u307e\u305b\u3093\u3088\u3046\u306b\uff77\uff6d\uff9d(*\u00b4\u30fc\uff40\u4eba) https:\/\/t.co\/6xWiTf7NKV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333297712,"id_str":"2333297712","name":"\u767d\u732b\u305f\u3093\u266a(\u00b0\uff0d\u00b0 \uff09\u2665\ufe0f","screen_name":"whitecat_tan","location":"\u611b\u3092\u77e5\u308b\u30c8\u30b3\u30ed\u3002","url":"http:\/\/twpf.jp\/whitecat_tan","description":"\u4e2d\u5c45\u304f\u3093(*\u00b4\u8278`)\u26615(6)\u30b9\u30de\u2661\/\u203b\u30c4\u30a4\u30d7\u30ed\u8aad\u3093\u3067\u306d\u2606 \/\u5375\u30c4\u30a40\u3001\u30d7\u30ed\u30d5\u7121\u3001\u9375\u57a2\u3001RT\u306e\u307f\u306e\u65b9\u306f\u30b4\u30e1\u30f3\u306a\u3055\u3044\u2605\/ \u25c6RT&\u3075\u3041\u307c\u591a\u3044\u3067\u3059\u3002RT\u975e\u8868\u793a\u63a8\u5968\u25c6 \u00b0\u02d6\u2727\u25dd(\u2070\u25bf\u2070)\u25dc\u2727\u02d6\u00b0\u0b2a\u0b13*\u0cc3:.\u2727 \/\u2661\/","protected":false,"verified":false,"followers_count":588,"friends_count":806,"listed_count":8,"favourites_count":187813,"statuses_count":137032,"created_at":"Sat Feb 08 11:00:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661225780043649024\/zsrJlo33_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661225780043649024\/zsrJlo33_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333297712\/1441040885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:39 +0000 2015","id":663726398662533120,"id_str":"663726398662533120","text":"\u6765\u9031\u306f\u5730\u9707\u3084\u4e8b\u6545\u306e\u30c6\u30ed\u30c3\u30d7\u3084\u30cb\u30e5\u30fc\u30b9\u901f\u5831\u304c\u51fa\u307e\u305b\u3093\u3088\u3046\u306b\uff77\uff6d\uff9d(*\u00b4\u30fc\uff40\u4eba) https:\/\/t.co\/6xWiTf7NKV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231039403,"id_str":"231039403","name":"\u3057\u304a\u3093\u273f0316 \u2661\u13a5\u13de\u13a4\u13d9\u13ac\u13bd\u13a4\u13cc","screen_name":"cion0316","location":"\u3042\u306e\u3053\u308d\u306e\u672a\u6765\u2661","url":"http:\/\/pinkishheart0316.blog.fc2.com\/","description":"SMAP\u30ea\u30c0\u69d8\u5c0a\u656c19\u5e74\u2661\u5b9d\u7269\u306f\u541b\u306e\u5168\u90e8\u266a\u30b5\u30e0\u30ac\u63a1\u75284\u56de2014\u4e2d\u5c45\u3055\u3093\u304b\u3089\u96fb\u8a71\u219210\/25\u30b5\u30e0\u30ac\u96fb\u8a71\u3067\u306e\u4f1a\u8a71\u30aa\u30f3\u30a8\u30a2\u2661\u4e2d\u5c45\u3055\u3093\u306b\u53ef\u611b\u3044\u540d\u524d\u3063\u3066\u8a00\u308f\u308c\u305f\u4e8b\u3001\u4e2d\u5c45\u3055\u3093\u30685\u56de\u63e1\u624b\u3057\u305f\u4e8b\u306f\u4e00\u751f\u306e\u5b9d\u7269\u3002\u753b\u50cf\u7121\u65ad\u4f7f\u7528\u306f\u30d6\u30ed\u30c3\u30af\u3002\u30b5\u30e0\u30ac\u4e2d\u5c45\u3055\u3093\u3068\u306e\u4f1a\u8a71\u30d6\u30ed\u30b0\u306b\u30ce\u30fc\u30ab\u30c3\u30c8\u30ec\u30dd\u3042\u308a\u2661SMAP\u30c6\u30ec\u30d3\u51fa\u6f14\u6642\u30ea\u30d7\u51fa\u6765\u306a\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1225,"friends_count":465,"listed_count":18,"favourites_count":4351,"statuses_count":59817,"created_at":"Mon Dec 27 12:22:19 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623494120133128192\/LBZK4zgf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623494120133128192\/LBZK4zgf.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662939430156537856\/t0_Sn4p1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662939430156537856\/t0_Sn4p1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231039403\/1447055455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726380484395009,"id_str":"663726380484395009","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726380484395009,"id_str":"663726380484395009","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":435,"resize":"fit"}}},{"id":663726380484444160,"id_str":"663726380484444160","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUwAAu0Rw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUwAAu0Rw.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}}},{"id":663726380538990592,"id_str":"663726380538990592","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGQVEAAZ0o3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGQVEAAZ0o3.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":753,"h":454,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":361,"resize":"fit"}}},{"id":663726380488658948,"id_str":"663726380488658948","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGEVEAQRIwu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGEVEAQRIwu.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":848,"h":537,"resize":"fit"},"medium":{"w":600,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cion0316","name":"\u3057\u304a\u3093\u273f0316 \u2661\u13a5\u13de\u13a4\u13d9\u13ac\u13bd\u13a4\u13cc","id":231039403,"id_str":"231039403","indices":[3,12]}],"symbols":[],"media":[{"id":663726380484395009,"id_str":"663726380484395009","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":435,"resize":"fit"}},"source_status_id":663726398662533120,"source_status_id_str":"663726398662533120","source_user_id":231039403,"source_user_id_str":"231039403"}]},"extended_entities":{"media":[{"id":663726380484395009,"id_str":"663726380484395009","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUAAE_zT1.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":435,"resize":"fit"}},"source_status_id":663726398662533120,"source_status_id_str":"663726398662533120","source_user_id":231039403,"source_user_id_str":"231039403"},{"id":663726380484444160,"id_str":"663726380484444160","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGDUwAAu0Rw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGDUwAAu0Rw.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}},"source_status_id":663726398662533120,"source_status_id_str":"663726398662533120","source_user_id":231039403,"source_user_id_str":"231039403"},{"id":663726380538990592,"id_str":"663726380538990592","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGQVEAAZ0o3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGQVEAAZ0o3.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":753,"h":454,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":361,"resize":"fit"}},"source_status_id":663726398662533120,"source_status_id_str":"663726398662533120","source_user_id":231039403,"source_user_id_str":"231039403"},{"id":663726380488658948,"id_str":"663726380488658948","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHoGEVEAQRIwu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHoGEVEAQRIwu.jpg","url":"https:\/\/t.co\/6xWiTf7NKV","display_url":"pic.twitter.com\/6xWiTf7NKV","expanded_url":"http:\/\/twitter.com\/cion0316\/status\/663726398662533120\/photo\/1","type":"photo","sizes":{"large":{"w":848,"h":537,"resize":"fit"},"medium":{"w":600,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}},"source_status_id":663726398662533120,"source_status_id_str":"663726398662533120","source_user_id":231039403,"source_user_id_str":"231039403"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013660"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092872704,"id_str":"663727800092872704","text":"RT @RelatableQuote: HE REMADE TITANIC \ud83d\ude02\ud83d\ude02\ud83d\ude02 IM DONE https:\/\/t.co\/G6IiXLMj1r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1123697761,"id_str":"1123697761","name":"pcd af","screen_name":"Ashtonsmanbun69","location":null,"url":null,"description":"OTRA 7\/31\/15 8\/18\/15 ROWYSO 8\/21\/15","protected":false,"verified":false,"followers_count":1253,"friends_count":1955,"listed_count":9,"favourites_count":9600,"statuses_count":18438,"created_at":"Sun Jan 27 01:50:41 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652541937640173568\/xeAaa92P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652541937640173568\/xeAaa92P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123697761\/1444413096","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:00:15 +0000 2015","id":663506348861218816,"id_str":"663506348861218816","text":"HE REMADE TITANIC \ud83d\ude02\ud83d\ude02\ud83d\ude02 IM DONE https:\/\/t.co\/G6IiXLMj1r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147305691,"id_str":"147305691","name":"Relatable Quotes","screen_name":"RelatableQuote","location":null,"url":"https:\/\/Instagram.com\/arlindmusliu\/","description":"Tweets that Relate to your daily life! If you can relate then Retweet! *we do not own content posted* \/\/ Contact: contactrelatablequote@gmail.com","protected":false,"verified":false,"followers_count":3206377,"friends_count":16205,"listed_count":8673,"favourites_count":20793,"statuses_count":59615,"created_at":"Sun May 23 19:42:54 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"D815DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147305691\/1423611170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8380,"favorite_count":11767,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/G6IiXLMj1r","display_url":"pic.twitter.com\/G6IiXLMj1r","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374"}]},"extended_entities":{"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/G6IiXLMj1r","display_url":"pic.twitter.com\/G6IiXLMj1r","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/720x720\/I4lKG0sQKzm9A87o.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/240x240\/OSulFX5mnDDboNf-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RelatableQuote","name":"Relatable Quotes","id":147305691,"id_str":"147305691","indices":[3,18]}],"symbols":[],"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/G6IiXLMj1r","display_url":"pic.twitter.com\/G6IiXLMj1r","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374"}]},"extended_entities":{"media":[{"id":662109715548250113,"id_str":"662109715548250113","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662109715548250113\/pu\/img\/agmKtJcSCwB_9PNl.jpg","url":"https:\/\/t.co\/G6IiXLMj1r","display_url":"pic.twitter.com\/G6IiXLMj1r","expanded_url":"http:\/\/twitter.com\/KingJTheHiiiest\/status\/662109850839736320\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662109850839736320,"source_status_id_str":"662109850839736320","source_user_id":235993374,"source_user_id_str":"235993374","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/720x720\/I4lKG0sQKzm9A87o.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/480x480\/_g6m4id90zmO76qJ.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/pl\/DdZmI7_U3qFPKHcC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662109715548250113\/pu\/vid\/240x240\/OSulFX5mnDDboNf-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059236352,"id_str":"663727800059236352","text":"@kingcharles_t typical","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724410226917376,"in_reply_to_status_id_str":"663724410226917376","in_reply_to_user_id":2558063993,"in_reply_to_user_id_str":"2558063993","in_reply_to_screen_name":"kingcharles_t","user":{"id":2835399260,"id_str":"2835399260","name":"haven","screen_name":"hallehavenford","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":139,"listed_count":0,"favourites_count":2403,"statuses_count":309,"created_at":"Sun Sep 28 22:12:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663497903835484160\/IgXitp5e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663497903835484160\/IgXitp5e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835399260\/1434299807","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kingcharles_t","name":"Tip To\u00e9","id":2558063993,"id_str":"2558063993","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800067727360,"id_str":"663727800067727360","text":"@thexhostage https:\/\/t.co\/m6nQLHwKyV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":26107277,"in_reply_to_user_id_str":"26107277","in_reply_to_screen_name":"thexhostage","user":{"id":85391504,"id_str":"85391504","name":"Charlotte Crowe","screen_name":"CharBird82","location":null,"url":null,"description":"if you'll not be needing me i'll close down for a while","protected":false,"verified":false,"followers_count":126,"friends_count":242,"listed_count":10,"favourites_count":381,"statuses_count":10113,"created_at":"Mon Oct 26 19:23:49 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659706006767845376\/Cz0U480f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659706006767845376\/Cz0U480f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85391504\/1446981632","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3ddb10d62383799a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3ddb10d62383799a.json","place_type":"city","name":"Bedford","full_name":"Bedford, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.515520,52.104873],[-0.515520,52.170074],[-0.403213,52.170074],[-0.403213,52.104873]]]},"attributes":{}},"contributors":null,"quoted_status_id":663726770655490048,"quoted_status_id_str":"663726770655490048","quoted_status":{"created_at":"Mon Nov 09 14:36:08 +0000 2015","id":663726770655490048,"id_str":"663726770655490048","text":"https:\/\/t.co\/Y5bV1YCAgu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715124802,"id_str":"715124802","name":"Danny Dyer","screen_name":"MrDDyer","location":null,"url":"http:\/\/www.dannydyer.com","description":"The World according to Danny Dyer. 'Life lessons from the East End' http:\/\/amzn.to\/1WUQfk6","protected":false,"verified":true,"followers_count":1113047,"friends_count":546,"listed_count":817,"favourites_count":1689,"statuses_count":6299,"created_at":"Tue Jul 24 23:44:44 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/811460808\/1d35cdb853a05fac7fa1bfa6fb0809d5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/811460808\/1d35cdb853a05fac7fa1bfa6fb0809d5.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623806213541765121\/l-a5gKk2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623806213541765121\/l-a5gKk2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715124802\/1442226279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15974,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/240x240\/2c6i4GoSGkV3J5KZ.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/720x720\/QfG4ySk-klYzWOPw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m6nQLHwKyV","expanded_url":"https:\/\/twitter.com\/mrddyer\/status\/663726770655490048","display_url":"twitter.com\/mrddyer\/status\u2026","indices":[14,37]}],"user_mentions":[{"screen_name":"thexhostage","name":"kelly louise","id":26107277,"id_str":"26107277","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080013659"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092766209,"id_str":"663727800092766209","text":"RT @lovepixel8: \uc774\uac70 \ub118\ub098 \uac1c\uad6c\uc7c1\uc774 \uac19\uc73c\uc2e0\uac83(*_*)... https:\/\/t.co\/oB8puO6uo4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293388233,"id_str":"293388233","name":"Fantaknp","screen_name":"fantaknp","location":null,"url":"http:\/\/www.facebook.com\/fantaknp","description":null,"protected":false,"verified":false,"followers_count":87,"friends_count":263,"listed_count":0,"favourites_count":181,"statuses_count":4038,"created_at":"Thu May 05 08:08:01 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627837708048556034\/g7SWq-d0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627837708048556034\/g7SWq-d0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293388233\/1439878517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:44:06 +0000 2015","id":663653281202237440,"id_str":"663653281202237440","text":"\uc774\uac70 \ub118\ub098 \uac1c\uad6c\uc7c1\uc774 \uac19\uc73c\uc2e0\uac83(*_*)... https:\/\/t.co\/oB8puO6uo4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3438032626,"id_str":"3438032626","name":"LOVE PIXEL","screen_name":"lovepixel8","location":null,"url":"http:\/\/lovepixel8.kr","description":"FOR BIGBANG G-DRAGON","protected":false,"verified":false,"followers_count":109,"friends_count":5,"listed_count":4,"favourites_count":5,"statuses_count":11,"created_at":"Mon Aug 24 14:01:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639092935980511232\/Pd7u5UBc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639092935980511232\/Pd7u5UBc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3438032626\/1447054625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":50,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663653272247398401,"id_str":"663653272247398401","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","url":"https:\/\/t.co\/oB8puO6uo4","display_url":"pic.twitter.com\/oB8puO6uo4","expanded_url":"http:\/\/twitter.com\/lovepixel8\/status\/663653281202237440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663653272247398401,"id_str":"663653272247398401","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","url":"https:\/\/t.co\/oB8puO6uo4","display_url":"pic.twitter.com\/oB8puO6uo4","expanded_url":"http:\/\/twitter.com\/lovepixel8\/status\/663653281202237440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovepixel8","name":"LOVE PIXEL","id":3438032626,"id_str":"3438032626","indices":[3,14]}],"symbols":[],"media":[{"id":663653272247398401,"id_str":"663653272247398401","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","url":"https:\/\/t.co\/oB8puO6uo4","display_url":"pic.twitter.com\/oB8puO6uo4","expanded_url":"http:\/\/twitter.com\/lovepixel8\/status\/663653281202237440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663653281202237440,"source_status_id_str":"663653281202237440","source_user_id":3438032626,"source_user_id_str":"3438032626"}]},"extended_entities":{"media":[{"id":663653272247398401,"id_str":"663653272247398401","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXFIopU8AEAmWD.jpg","url":"https:\/\/t.co\/oB8puO6uo4","display_url":"pic.twitter.com\/oB8puO6uo4","expanded_url":"http:\/\/twitter.com\/lovepixel8\/status\/663653281202237440\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663653281202237440,"source_status_id_str":"663653281202237440","source_user_id":3438032626,"source_user_id_str":"3438032626"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800084402177,"id_str":"663727800084402177","text":"@jetairways hello, any update?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662705617933500416,"in_reply_to_status_id_str":"662705617933500416","in_reply_to_user_id":95625959,"in_reply_to_user_id_str":"95625959","in_reply_to_screen_name":"SamuraiSingh","user":{"id":95625959,"id_str":"95625959","name":"Sudeep","screen_name":"SamuraiSingh","location":"Mumbai","url":"http:\/\/www.sudeepsingh.in","description":"Music-o-holic | F1 and car enthusiast | Proud Navy kid | Blogger | Work with a major tech gaint | Aspire to travel around the world","protected":false,"verified":false,"followers_count":251,"friends_count":284,"listed_count":11,"favourites_count":929,"statuses_count":7980,"created_at":"Wed Dec 09 11:20:27 +0000 2009","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"21657A","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488176128771649537\/d-fbdOmg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488176128771649537\/d-fbdOmg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95625959\/1403285459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"317fcc4b21a604d5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/317fcc4b21a604d5.json","place_type":"city","name":"New Delhi","full_name":"New Delhi, Delhi","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[76.842520,28.397657],[76.842520,28.879322],[77.347652,28.879322],[77.347652,28.397657]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jetairways","name":"Jet Airways","id":14918367,"id_str":"14918367","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013663"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059203585,"id_str":"663727800059203585","text":"Medyo tuyo na\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572806692,"id_str":"2572806692","name":"kaloy","screen_name":"fxckingstylesw","location":"fuck you.","url":"https:\/\/twitter.com\/fxckingstylesw\/status\/663227141920653313","description":"two words, one finger.","protected":false,"verified":false,"followers_count":7012,"friends_count":7528,"listed_count":3,"favourites_count":3419,"statuses_count":26529,"created_at":"Tue Jun 17 12:15:37 +0000 2014","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597707775045537793\/lzmTK-Bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597707775045537793\/lzmTK-Bg.jpg","profile_background_tile":true,"profile_link_color":"111111","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352245203787778\/JL7OPT7Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352245203787778\/JL7OPT7Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572806692\/1446990635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088592384,"id_str":"663727800088592384","text":"Lo que me faltaba \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2695237692,"id_str":"2695237692","name":"Iris \u2728","screen_name":"EyerissRamos","location":null,"url":null,"description":"it be like that sometimes.","protected":false,"verified":false,"followers_count":168,"friends_count":162,"listed_count":0,"favourites_count":778,"statuses_count":2672,"created_at":"Thu Jul 31 09:22:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661682923133730816\/wgJkB6WL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661682923133730816\/wgJkB6WL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2695237692\/1446577600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800076005377,"id_str":"663727800076005377","text":"\ub098\ub294 \ucf5c\ub77c \ub9c8\uc168\ub294\ub370 \uc664\ucf00 \ub365\ub0e5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1384638769,"id_str":"1384638769","name":"\uc03c PYU","screen_name":"nowhere616","location":"\u5fc3\u4e2d\u7684\u5929\u6b63","url":"https:\/\/m.ask.fm\/nowhere616","description":"\uc0ac\ud37c\ud558\ub294\uc911.. \ub9d0\uac78\uc5b4\uc8fc\uba74 \uc88b\uc544\ud568 \/ \uc5c4\uccad\ub09c \uc7a1\ub355 \uc8fc\uc758\uc694\ub9dd","protected":false,"verified":false,"followers_count":815,"friends_count":216,"listed_count":10,"favourites_count":4118,"statuses_count":22819,"created_at":"Sat Apr 27 14:42:31 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625017419493289984\/M3evYuJs.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625017419493289984\/M3evYuJs.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660536995647586304\/O1vYZgJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660536995647586304\/O1vYZgJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1384638769\/1443540263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092790788,"id_str":"663727800092790788","text":"RT @MariechelleVice: \"@NiceyToYou: Kapit lang sabi ng Tarsier \ud83d\ude01\ud83d\udc4d Congrats ulit @vicegandako @anakarylle \ud83d\ude0d Love u both! Gud mornayt! https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3646478778,"id_str":"3646478778","name":"glaiza dela vega14","screen_name":"glaizaviceral","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":161,"listed_count":1,"favourites_count":1311,"statuses_count":1036,"created_at":"Tue Sep 22 07:59:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647792016322560\/RIqWvzBs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647792016322560\/RIqWvzBs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3646478778\/1446822547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:47 +0000 2015","id":663726934027702272,"id_str":"663726934027702272","text":"\"@NiceyToYou: Kapit lang sabi ng Tarsier \ud83d\ude01\ud83d\udc4d Congrats ulit @vicegandako @anakarylle \ud83d\ude0d Love u both! Gud mornayt! https:\/\/t.co\/pLJ89LSvwS\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2198556710,"id_str":"2198556710","name":"Marie chelle Viceral","screen_name":"MariechelleVice","location":"valenzuela city","url":null,"description":null,"protected":false,"verified":false,"followers_count":110,"friends_count":122,"listed_count":3,"favourites_count":4972,"statuses_count":5268,"created_at":"Sat Nov 16 23:16:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000863236028\/RZQDqWrv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000863236028\/RZQDqWrv_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiceyToYou","name":"NICEY","id":150475311,"id_str":"150475311","indices":[1,12]},{"screen_name":"vicegandako","name":"jose marie viceral","id":186712788,"id_str":"186712788","indices":[58,70]},{"screen_name":"anakarylle","name":"karylletatlonghari","id":78035324,"id_str":"78035324","indices":[71,82]}],"symbols":[],"media":[{"id":663620003430813696,"id_str":"663620003430813696","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","url":"https:\/\/t.co\/pLJ89LSvwS","display_url":"pic.twitter.com\/pLJ89LSvwS","expanded_url":"http:\/\/twitter.com\/NiceyToYou\/status\/663620006773657600\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663620006773657600,"source_status_id_str":"663620006773657600","source_user_id":150475311,"source_user_id_str":"150475311"}]},"extended_entities":{"media":[{"id":663620003430813696,"id_str":"663620003430813696","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","url":"https:\/\/t.co\/pLJ89LSvwS","display_url":"pic.twitter.com\/pLJ89LSvwS","expanded_url":"http:\/\/twitter.com\/NiceyToYou\/status\/663620006773657600\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663620006773657600,"source_status_id_str":"663620006773657600","source_user_id":150475311,"source_user_id_str":"150475311"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MariechelleVice","name":"Marie chelle Viceral","id":2198556710,"id_str":"2198556710","indices":[3,19]},{"screen_name":"NiceyToYou","name":"NICEY","id":150475311,"id_str":"150475311","indices":[22,33]},{"screen_name":"vicegandako","name":"jose marie viceral","id":186712788,"id_str":"186712788","indices":[79,91]},{"screen_name":"anakarylle","name":"karylletatlonghari","id":78035324,"id_str":"78035324","indices":[92,103]}],"symbols":[],"media":[{"id":663620003430813696,"id_str":"663620003430813696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","url":"https:\/\/t.co\/pLJ89LSvwS","display_url":"pic.twitter.com\/pLJ89LSvwS","expanded_url":"http:\/\/twitter.com\/NiceyToYou\/status\/663620006773657600\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663620006773657600,"source_status_id_str":"663620006773657600","source_user_id":150475311,"source_user_id_str":"150475311"}]},"extended_entities":{"media":[{"id":663620003430813696,"id_str":"663620003430813696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWm4IpWUAAg7vU.jpg","url":"https:\/\/t.co\/pLJ89LSvwS","display_url":"pic.twitter.com\/pLJ89LSvwS","expanded_url":"http:\/\/twitter.com\/NiceyToYou\/status\/663620006773657600\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663620006773657600,"source_status_id_str":"663620006773657600","source_user_id":150475311,"source_user_id_str":"150475311"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800071819264,"id_str":"663727800071819264","text":"\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646 https:\/\/t.co\/ZFHotmTDcn","source":"\u003ca href=\"http:\/\/www.almufrdon.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0627\u0644\u0645\u0641\u0631\u062f\u064f\u0648\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2397032937,"id_str":"2397032937","name":"eman khalifa\u2665","screen_name":"emanjamaan33","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":144,"friends_count":354,"listed_count":0,"favourites_count":21,"statuses_count":1067,"created_at":"Sun Mar 09 15:26:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637944924793516032\/Hg5tNG7N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637944924793516032\/Hg5tNG7N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2397032937\/1440651782","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZFHotmTDcn","expanded_url":"http:\/\/almufrdon.com","display_url":"almufrdon.com","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080013660"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800080289792,"id_str":"663727800080289792","text":"@mylifeclublife @tiesto #clubliferequest Chasing cars","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725268662509569,"in_reply_to_status_id_str":"663725268662509569","in_reply_to_user_id":975043368,"in_reply_to_user_id_str":"975043368","in_reply_to_screen_name":"mylifeclublife","user":{"id":3399633461,"id_str":"3399633461","name":"Fabio","screen_name":"twfabio77","location":"Uruguay","url":null,"description":null,"protected":false,"verified":false,"followers_count":76,"friends_count":252,"listed_count":0,"favourites_count":936,"statuses_count":99,"created_at":"Sun Aug 02 04:34:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650023052126851073\/Y5P5Y12R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650023052126851073\/Y5P5Y12R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3399633461\/1438538068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"clubliferequest","indices":[24,40]}],"urls":[],"user_mentions":[{"screen_name":"mylifeclublife","name":"#ClubLife by Ti\u00ebsto","id":975043368,"id_str":"975043368","indices":[0,15]},{"screen_name":"tiesto","name":"Ti\u00ebsto","id":40101400,"id_str":"40101400","indices":[16,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013662"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800063365120,"id_str":"663727800063365120","text":"\ub514\uc838\ubc8c\uc5ec \ub9cc\ub450\uba39\uace0\uc2f3\uc5c8\u3134\ub300\u3160\ubabb \uba39\uc5c8\uc5b4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3016458354,"id_str":"3016458354","name":"\uc0b4\uad6c","screen_name":"wjelddlsel","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":165,"listed_count":0,"favourites_count":1611,"statuses_count":1154,"created_at":"Tue Feb 10 13:49:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663681685825826818\/wRQQvtII_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663681685825826818\/wRQQvtII_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016458354\/1447069018","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080013658"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088596480,"id_str":"663727800088596480","text":"https:\/\/t.co\/J6oBkvODKP Is There a New Bull in the China Shop? https:\/\/t.co\/g9FBrrbMvZ https:\/\/t.co\/J6oBkvODKP https:\/\/t.co\/Z6p0ftHTND","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":566885291,"id_str":"566885291","name":"ageaforex","screen_name":"AGEAFOREX","location":"AGEA Indonesia","url":"http:\/\/agea.materiforex.com","description":"What do you want to trade* today?","protected":false,"verified":false,"followers_count":43,"friends_count":6,"listed_count":5,"favourites_count":0,"statuses_count":152354,"created_at":"Mon Apr 30 03:46:57 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2229550626\/agea_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2229550626\/agea_normal.JPG","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/J6oBkvODKP","expanded_url":"http:\/\/belajarmarketiva.com","display_url":"belajarmarketiva.com","indices":[0,23]},{"url":"https:\/\/t.co\/g9FBrrbMvZ","expanded_url":"http:\/\/dlvr.it\/ChfdvZ","display_url":"dlvr.it\/ChfdvZ","indices":[63,86]},{"url":"https:\/\/t.co\/J6oBkvODKP","expanded_url":"http:\/\/belajarmarketiva.com","display_url":"belajarmarketiva.com","indices":[87,110]},{"url":"https:\/\/t.co\/Z6p0ftHTND","expanded_url":"http:\/\/agea.materiforex.com","display_url":"agea.materiforex.com","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800080314368,"id_str":"663727800080314368","text":"to ouvindo as musicas que a celine quer que a gnt vote, to nervosa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630774210,"id_str":"630774210","name":"eduarda","screen_name":"confidentdion","location":"Bras\u00edlia, Distrito Federal","url":"http:\/\/www.celinedion.com\/","description":"celine dion, demi lovato, angelina jolie, mel fronckowiak e princesa diana","protected":false,"verified":false,"followers_count":2713,"friends_count":1585,"listed_count":7,"favourites_count":518,"statuses_count":108048,"created_at":"Mon Jul 09 02:00:25 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661650605010735105\/arxo5QFp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661650605010735105\/arxo5QFp.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727305420873728\/mAcMPF2x_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727305420873728\/mAcMPF2x_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630774210\/1447079939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5722ff20ba67083b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5722ff20ba67083b.json","place_type":"city","name":"Bras\u00edlia","full_name":"Bras\u00edlia, Distrito Federal","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-48.285982,-16.052405],[-48.285982,-15.500103],[-47.307264,-15.500103],[-47.307264,-16.052405]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080013662"} +{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727795898593280,"id_str":"663727795898593280","text":"7x5 Gloss Photo ww2338 World War 1 WW1 Misc 1307 https:\/\/t.co\/BXgM0OF2Vr https:\/\/t.co\/CPoHlPRKU9","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4146074417,"id_str":"4146074417","name":"Becky Maryon","screen_name":"BeckyMaryon","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":45,"created_at":"Mon Nov 09 02:33:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545334761693185\/zDKxnHn9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545334761693185\/zDKxnHn9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BXgM0OF2Vr","expanded_url":"http:\/\/dentist-insurance.info\/dntst\/nsrnc\/?query=381462356703","display_url":"dentist-insurance.info\/dntst\/nsrnc\/?q\u2026","indices":[49,72]}],"user_mentions":[],"symbols":[],"media":[{"id":663727795680473089,"id_str":"663727795680473089","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6eEWcAERaC8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6eEWcAERaC8.jpg","url":"https:\/\/t.co\/CPoHlPRKU9","display_url":"pic.twitter.com\/CPoHlPRKU9","expanded_url":"http:\/\/twitter.com\/BeckyMaryon\/status\/663727795898593280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":204,"resize":"fit"},"small":{"w":340,"h":115,"resize":"fit"},"large":{"w":799,"h":272,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727795680473089,"id_str":"663727795680473089","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6eEWcAERaC8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6eEWcAERaC8.jpg","url":"https:\/\/t.co\/CPoHlPRKU9","display_url":"pic.twitter.com\/CPoHlPRKU9","expanded_url":"http:\/\/twitter.com\/BeckyMaryon\/status\/663727795898593280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":204,"resize":"fit"},"small":{"w":340,"h":115,"resize":"fit"},"large":{"w":799,"h":272,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080012665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092745729,"id_str":"663727800092745729","text":"@twt_error https:\/\/t.co\/uiSRQRsFNR DOWN !! 256","source":"\u003ca href=\"http:\/\/707.wo.tc\/alert_system\/alert_twt\/twt_login\/\" rel=\"nofollow\"\u003etwt_txt_push\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":547703923,"in_reply_to_user_id_str":"547703923","in_reply_to_screen_name":"twt_error","user":{"id":547797206,"id_str":"547797206","name":"twt_txt_push","screen_name":"twt_txt_push","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":53463,"created_at":"Sat Apr 07 18:06:45 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uiSRQRsFNR","expanded_url":"http:\/\/office.thirdtec.com\/live.txt","display_url":"office.thirdtec.com\/live.txt","indices":[11,34]}],"user_mentions":[{"screen_name":"twt_error","name":"twt_error","id":547703923,"id_str":"547703923","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800063385600,"id_str":"663727800063385600","text":"@sdkn0825 \u3088\u304f\u308f\u304b\u3089\u306a\u3044\u3051\u3069\u3042\u308a\u304c\u3068\u3046\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727685131091968,"in_reply_to_status_id_str":"663727685131091968","in_reply_to_user_id":3014352674,"in_reply_to_user_id_str":"3014352674","in_reply_to_screen_name":"sdkn0825","user":{"id":1425591282,"id_str":"1425591282","name":"\u2740Sayaka","screen_name":"pi38x","location":null,"url":"http:\/\/twpf.jp\/pi38x","description":"Mr.Children\u3068\u30ab\u30a8\u30eb\u3068\u6843\u8272\u3068\u3086\u304b\u308a\u3093\u3068","protected":false,"verified":false,"followers_count":248,"friends_count":167,"listed_count":14,"favourites_count":3374,"statuses_count":31060,"created_at":"Mon May 13 14:20:35 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFA5CD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444533176719790080\/Fpbn7gwL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444533176719790080\/Fpbn7gwL.jpeg","profile_background_tile":true,"profile_link_color":"70491F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DD9A95","profile_text_color":"FD9F6C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659769618337140740\/7WRC575D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659769618337140740\/7WRC575D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1425591282\/1416061210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sdkn0825","name":"\u3059\u3060\u304f\u3093","id":3014352674,"id_str":"3014352674","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013658"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059211776,"id_str":"663727800059211776","text":"sini dicoba\/? .gk https:\/\/t.co\/qd63NtsbEe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349290737,"id_str":"2349290737","name":"\u2765 Daihyun","screen_name":"_KDahyun98","location":"kr.","url":"http:\/\/ask.fm\/eipink_evnji","description":"Duplicated Kim Da Hyun (\uae40\ub2e4\ud604) - 98L - Sub Rapper of Twice - C24SQ;armysq;Okingdom;monbebesq;Lafams;SVTSTAN","protected":false,"verified":false,"followers_count":1105,"friends_count":829,"listed_count":2,"favourites_count":283,"statuses_count":38359,"created_at":"Tue Feb 18 00:38:37 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342543371812864\/kQXDjcdc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342543371812864\/kQXDjcdc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349290737\/1446988190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727569838014464,"quoted_status_id_str":"663727569838014464","quoted_status":{"created_at":"Mon Nov 09 14:39:18 +0000 2015","id":663727569838014464,"id_str":"663727569838014464","text":"Enak sepertinya https:\/\/t.co\/rG9hIuk0Tk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320062368,"id_str":"3320062368","name":"\u2765 youngjae","screen_name":"youngjeagot7","location":"JYP Entertainment","url":null,"description":"\ucd5c\uc601\uc7ac GOT7 ~ 1996 ~ LAFAMS\nJYPNations","protected":false,"verified":false,"followers_count":227,"friends_count":256,"listed_count":1,"favourites_count":41,"statuses_count":1617,"created_at":"Wed Aug 19 14:22:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726153333522432\/67lyYeJL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726153333522432\/67lyYeJL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320062368\/1446084308","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727468579172352,"quoted_status_id_str":"663727468579172352","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rG9hIuk0Tk","expanded_url":"https:\/\/twitter.com\/_KDahyun98\/status\/663727468579172352","display_url":"twitter.com\/_KDahyun98\/sta\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qd63NtsbEe","expanded_url":"https:\/\/twitter.com\/youngjeagot7\/status\/663727569838014464","display_url":"twitter.com\/youngjeagot7\/s\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800096976896,"id_str":"663727800096976896","text":"'Terserah apa yang kamu mau' -Mom-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351006193,"id_str":"351006193","name":"\ud55c\uc5f0\ubbf8","screen_name":"dtdlh","location":"INDONESIA - SOUTH KOREA","url":null,"description":"The Greatest Allah SWT|| Rasulullah SAW(\u007b\u007d) I hope I'm still justify my birth name! BADMINTON ADDICTED || \nINDONESIA ARMY","protected":false,"verified":false,"followers_count":568,"friends_count":180,"listed_count":1,"favourites_count":401,"statuses_count":15643,"created_at":"Mon Aug 08 17:06:15 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FAF9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465862807783604224\/JujYQcqd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465862807783604224\/JujYQcqd.jpeg","profile_background_tile":true,"profile_link_color":"4D23F7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5F8FA","profile_text_color":"E81741","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661861245562155008\/9Jx1wkn7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661861245562155008\/9Jx1wkn7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351006193\/1442685684","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080013666"} +{"delete":{"status":{"id":535572321960853504,"id_str":"535572321960853504","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080013798"}} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800071909376,"id_str":"663727800071909376","text":"@JackJackJohnson what time are you releasing them ? @jackgilinsky","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727433779056641,"in_reply_to_status_id_str":"663727433779056641","in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":132358425,"id_str":"132358425","name":"Bianca Marie","screen_name":"k211bianca","location":null,"url":null,"description":"-Insta @biancamariek","protected":false,"verified":false,"followers_count":622,"friends_count":1051,"listed_count":2,"favourites_count":11541,"statuses_count":16459,"created_at":"Tue Apr 13 01:11:06 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633831788524240897\/17o6vuO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633831788524240897\/17o6vuO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132358425\/1446597030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]},{"screen_name":"jackgilinsky","name":"Jack Gilinsky","id":278328390,"id_str":"278328390","indices":[52,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013660"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800067706880,"id_str":"663727800067706880","text":"Ask me a question | https:\/\/t.co\/hJFNqiNbQK","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598343737,"id_str":"598343737","name":"Denielle Hernandez","screen_name":"deeeenhernandez","location":"mnl ","url":null,"description":"im the kid that your parents warned you about","protected":false,"verified":false,"followers_count":455,"friends_count":282,"listed_count":0,"favourites_count":3625,"statuses_count":12689,"created_at":"Sun Jun 03 13:38:44 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000152181193\/FN3dr9zD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000152181193\/FN3dr9zD.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656131810691166208\/rE2iLRwo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656131810691166208\/rE2iLRwo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598343737\/1445269019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hJFNqiNbQK","expanded_url":"http:\/\/ask.fm\/deeeenhernandez?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","display_url":"ask.fm\/deeeenhernande\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013659"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059338754,"id_str":"663727800059338754","text":"https:\/\/t.co\/1eD8A3xYwi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80654132,"id_str":"80654132","name":"amariei cristian","screen_name":"amarieicristian","location":"dorohoi","url":null,"description":null,"protected":false,"verified":false,"followers_count":254,"friends_count":386,"listed_count":5,"favourites_count":46,"statuses_count":5707,"created_at":"Wed Oct 07 19:07:30 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500311566\/Picture_120_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500311566\/Picture_120_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1eD8A3xYwi","expanded_url":"http:\/\/bit.ly\/1MGW4ZW","display_url":"bit.ly\/1MGW4ZW","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080013657"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088592385,"id_str":"663727800088592385","text":"@19920826_s \n\u304a\u8179\u3000\u6e1b\u3063\u305f\u3000\uff01\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663653642432442368,"in_reply_to_status_id_str":"663653642432442368","in_reply_to_user_id":3725707820,"in_reply_to_user_id_str":"3725707820","in_reply_to_screen_name":"19920826_s","user":{"id":4042750640,"id_str":"4042750640","name":"\u3010#\u00bfT\u00ad\u00admk&&\u3011","screen_name":"TmKO71","location":"\u56fa\u5b9a :\u3000\u306a\u30fc\u3061\u3083\u3093\u3000\u304b\u307f\u3084\u3093\u307e\u3000\u3082\u3082\u3061\u3083\u3093\u3000\u3082\u3053\u3061\u3083\u3093","url":null,"description":"\u7bed\u624b\u3000\u83dc\u3005","protected":false,"verified":false,"followers_count":80,"friends_count":78,"listed_count":1,"favourites_count":261,"statuses_count":1975,"created_at":"Wed Oct 28 04:28:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659226827060199424\/fneMZSte_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659226827060199424\/fneMZSte_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4042750640\/1446472771","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"19920826_s","name":"Shigeeeeeee !","id":3725707820,"id_str":"3725707820","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013664"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800075988992,"id_str":"663727800075988992","text":"\u3010\u304a\u77e5\u3089\u305b\u3011\u57a2\u79fb\u52d5\u3068\u3044\u3046\u304b\u3053\u3061\u3089\u306e\u57a2\u306b\u5927\u4f53\u5f15\u7bed\u3082\u3063\u3066\u307e\u3059\u3002\u3053\u308c\u304b\u3089\u3082\u4ef2\u826f\u304f\u3057\u3066\u3084\u308b\uff01\u3068\u3044\u3046\u65b9\u306f\u3053\u3061\u3089\u307e\u3067\u30d5\u30a9\u30ed\u30ea\u30af\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\uff01@1sechan","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441213636,"id_str":"441213636","name":"\u3086\u308d@\u57a2\u79fb\u52d5","screen_name":"tukimyaro","location":"\u4e00\u591c\u306e\u904e\u3061\u767a\u751f\u5834\u6240","url":"http:\/\/twpf.jp\/tukimyaro","description":"\u57a2\u79fb\u52d5\u3057\u307e\u3057\u305f\u3002@1sechan \u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u8efd\u306b\uff01","protected":false,"verified":false,"followers_count":416,"friends_count":448,"listed_count":12,"favourites_count":573,"statuses_count":55239,"created_at":"Mon Dec 19 21:24:24 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1A1A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B3001E","profile_sidebar_border_color":"FF007B","profile_sidebar_fill_color":"FF5283","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000510167238\/e0a7451fa53fa4a0d80b714ca8bdadf5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000510167238\/e0a7451fa53fa4a0d80b714ca8bdadf5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441213636\/1375736040","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1sechan","name":"\u307f\u3055\u677e\u306f\u9577\u7537\u63a8\u3057","id":1520631410,"id_str":"1520631410","indices":[65,73]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800096919552,"id_str":"663727800096919552","text":"\u8c6a\u6f5c\u6c34\u8266\u8a08\u753b\u3067\u30b5\u30a4\u30d0\u30fc\u653b\u6483\uff01\u4e2d\u56fd\u304c\u60c5\u5831\u5165\u624b\u72d9\u3046\uff1f https:\/\/t.co\/FruAdklXyb","source":"\u003ca href=\"http:\/\/funger-antena.info\" rel=\"nofollow\"\u003efunger-antena\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404871072,"id_str":"404871072","name":"\u3075\u3093\u304c\u30fc\u30a2\u30f3\u30c6\u30ca","screen_name":"fungerantena","location":"\u6771\u4eac","url":"http:\/\/funger-antena.info\/","description":"2ch\u7cfb\u306e\u30d6\u30ed\u30b0\u306e\u307e\u3068\u3081\u30b5\u30a4\u30c8\u300c\u3075\u3093\u304c\u30fc\u30a2\u30f3\u30c6\u30ca\u300d\u306e\u65b0\u7740\u8a18\u4e8b\u3092\u304a\u5c4a\u3051\u3057\u3066\u3044\u307e\u3059\u3002\r\nVIP\u3001\u30cb\u30e5\u30fc\u30b9\u3001\u77ed\u6587\u3001SS\u3001\u753b\u50cf\u3001\u6d77\u5916\u306e\u53cd\u5fdc\u306a\u3069\u8a18\u4e8b\u3068\u304b\u3002\r\n\uff11\uff0c\uff12\u6642\u9593\u6bce\u306b\u3064\u3076\u3084\u304f\u4e88\u5b9a\u3067\u3059\u3002\u30a2\u30cb\u30e1\u5168\u822c\u3092\u611b\u3057\u3066\u307e\u3059\uff3e\uff3e \u30d5\u30a9\u30ed\u30fc\u304a\u6c17\u8efd\u306b\u3002\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3082100%\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":16142,"friends_count":15791,"listed_count":160,"favourites_count":0,"statuses_count":1110338,"created_at":"Fri Nov 04 14:41:13 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1627281988\/20081015index_convert_20100420122044_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1627281988\/20081015index_convert_20100420122044_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FruAdklXyb","expanded_url":"http:\/\/okz.rdy.jp\/yf\/l8vgk","display_url":"okz.rdy.jp\/yf\/l8vgk","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013666"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800092749825,"id_str":"663727800092749825","text":"@malgumi_one \uc544\u3160\u3160\u3160 \uc9c4\uc9dc\ub874\u314b\u314b\u314b\u314b \uc544\ud0a4\uc758 \uc880\ub354 \ub124\uba38\ub09c \ub290\ub07c\ubbf8...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726693685723136,"in_reply_to_status_id_str":"663726693685723136","in_reply_to_user_id":195087184,"in_reply_to_user_id_str":"195087184","in_reply_to_screen_name":"malgumi_one","user":{"id":938915634,"id_str":"938915634","name":"\uc2a4\ub204","screen_name":"CRAZY1MIND","location":null,"url":null,"description":"\ubd80\uafb8\ub7fc\uc7c1\uc774 \uc2a4\ub204 (\u273f\u0e3a\u00b4\u2200`\u273f\u0e3a)","protected":false,"verified":false,"followers_count":337,"friends_count":1287,"listed_count":2,"favourites_count":19230,"statuses_count":55422,"created_at":"Sat Nov 10 12:10:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634366894749782016\/hfya5YpZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634366894749782016\/hfya5YpZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/938915634\/1438001821","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"malgumi_one","name":"\ubcc0\ubc31\ud604\ub355\ud6c4\ud560\ubbf8\u3147\u3142\u3147","id":195087184,"id_str":"195087184","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080013665"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800067584000,"id_str":"663727800067584000","text":"@run_ap4 \n\n\u3058\u3083\u3042\u307e\u307b\u308a\u3093\u3067(\u2229\u275b\u06a1\u275b\u2229)\u2934\ufe0e \u2934\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725866023677953,"in_reply_to_status_id_str":"663725866023677953","in_reply_to_user_id":4132177633,"in_reply_to_user_id_str":"4132177633","in_reply_to_screen_name":"run_ap4","user":{"id":2997572066,"id_str":"2997572066","name":"\uff61.\u029a \u306d \u3080 \u307e \u30fc \u305f \u3093 \u025e .\uff61","screen_name":"__MAYU_0326__","location":null,"url":null,"description":".\u00b0\u029a \u308f \u305f \u306a \u3079 \u307e \u3086 \u3061 \u3083 \u3093 \u3060 \u3044 \u3059 \u304d \u4eba \u9593 \u025e\u00b0.\u77e2\u5439\u5948\u5b50\u3061\u3083\u3093\u3068\u6e21\u8fba\u7f8e\u512a\u7d00\u3061\u3083\u3093\u306b\u3082\u6cb8\u304d\u307e\u305997line \u250a\ufe0e \u4e5d\u5dde \u250a\ufe0e \uff14\u6708\u307e\u3067\u5728\u5b85(\u3063\u02d8\u03c9\u02d8c )\u306f\u3042\u3093\u2661\u0337\u2661\u0337 \u306f\u3042\u3093 \u306f\u5168\u3066\u79c1\u4fe1\u3068\u3057\u3066\u30ad\u30e3\u30c3\u30c1\u3059\u308b\u3088","protected":false,"verified":false,"followers_count":498,"friends_count":344,"listed_count":26,"favourites_count":5224,"statuses_count":9585,"created_at":"Mon Jan 26 22:23:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660475186110574592\/irjXcAhz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660475186110574592\/irjXcAhz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2997572066\/1441671206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"run_ap4","name":"\u307e \u307b \u308a \u3093 .","id":4132177633,"id_str":"4132177633","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080013659"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800088526848,"id_str":"663727800088526848","text":"RT @EllaGandaaa: Kaya hinika si Vince, di dahil sa polusyon. Di na niya kasi kaya mga magulang nila, sobra na siyang kinikilig #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014026352,"id_str":"3014026352","name":"Jesus My Lord:)","screen_name":"harvydes","location":"Manila City","url":null,"description":"Nationalian, GOD BELIEVER AND LOVER\u263a *God is my strength..","protected":false,"verified":false,"followers_count":396,"friends_count":1111,"listed_count":2,"favourites_count":2773,"statuses_count":2536,"created_at":"Mon Feb 09 05:47:16 +0000 2015","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654569646859816960\/C22fccqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654569646859816960\/C22fccqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014026352\/1440830880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:23 +0000 2015","id":663726581920108544,"id_str":"663726581920108544","text":"Kaya hinika si Vince, di dahil sa polusyon. Di na niya kasi kaya mga magulang nila, sobra na siyang kinikilig #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116220713,"id_str":"116220713","name":"Mariela","screen_name":"EllaGandaaa","location":"sa bansang kulang sa bigas","url":"http:\/\/twitter.com\/_marielamendez","description":"im not pretty, so haters, back off!!","protected":false,"verified":false,"followers_count":1390,"friends_count":268,"listed_count":16,"favourites_count":30824,"statuses_count":75117,"created_at":"Sun Feb 21 16:49:15 +0000 2010","utc_offset":28800,"time_zone":"Taipei","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFC8A4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528167512983089152\/YnxlF4jG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528167512983089152\/YnxlF4jG.png","profile_background_tile":true,"profile_link_color":"F00E87","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D622A0","profile_text_color":"FF00F7","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662979754388123648\/JEoyQ8LN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662979754388123648\/JEoyQ8LN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116220713\/1446186147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[110,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[127,139]}],"urls":[],"user_mentions":[{"screen_name":"EllaGandaaa","name":"Mariela","id":116220713,"id_str":"116220713","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080013664"} +{"delete":{"status":{"id":648491416180514816,"id_str":"648491416180514816","user_id":3318512689,"user_id_str":"3318512689"},"timestamp_ms":"1447080013877"}} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800076115968,"id_str":"663727800076115968","text":"RT @TasbihIstighfar: \u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u064a \u0623\u0645\u0633\u064a\u062a \u0623\u0634\u0647\u062f\u0643 \u0648\u0623\u0634\u0647\u062f \u062d\u0645\u0644\u0629 \u0639\u0631\u0634\u0643 \u060c \u0648\u0645\u0644\u0627\u0626\u0643\u062a\u0643 \u0648\u062c\u0645\u064a\u0639 \u062e\u0644\u0642\u0643 \u0623\u0646\u0643 \u0623\u0646\u062a \u0627\u0644\u0644\u0647 \u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0623\u0646\u062a \u060c \u0648\u062d\u062f\u0643 \u0644\u0627 \u0634\u0631\u064a\u0643 \u0644\u0643 \u060c \u0648\u0623\u0646 \u0645\u062d\u0645\u062f\u0627\u064b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4003540307,"id_str":"4003540307","name":"\u0634\u0645\u0640\u0622\u0644\u0640\u064a\/\u0627\u0644\u0640\u0628\u0644\u0648\u064a","screen_name":"JfaaAlbalwi","location":null,"url":null,"description":"\u0646\u0650\u0635\u0641 \u062c\u0645\u0627\u0644 \u0627\u0644\u0639\u064e\u064a\u0646 \u0637\u0631\u064a\u0642\u062a\u0647\u0627 \u0628\u064e\u0640 \u0627\u0644\u0646\u064e\u0638\u0631 ..*\n PIN:546E6755","protected":false,"verified":false,"followers_count":68,"friends_count":73,"listed_count":0,"favourites_count":314,"statuses_count":355,"created_at":"Tue Oct 20 17:26:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660891125583073280\/c_RGWbEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660891125583073280\/c_RGWbEZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4003540307\/1446920222","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:12 +0000 2015","id":663725530320097280,"id_str":"663725530320097280","text":"\u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u064a \u0623\u0645\u0633\u064a\u062a \u0623\u0634\u0647\u062f\u0643 \u0648\u0623\u0634\u0647\u062f \u062d\u0645\u0644\u0629 \u0639\u0631\u0634\u0643 \u060c \u0648\u0645\u0644\u0627\u0626\u0643\u062a\u0643 \u0648\u062c\u0645\u064a\u0639 \u062e\u0644\u0642\u0643 \u0623\u0646\u0643 \u0623\u0646\u062a \u0627\u0644\u0644\u0647 \u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0623\u0646\u062a \u060c \u0648\u062d\u062f\u0643 \u0644\u0627 \u0634\u0631\u064a\u0643 \u0644\u0643 \u060c \u0648\u0623\u0646 \u0645\u062d\u0645\u062f\u0627\u064b \u0639\u0628\u062f\u0643 \u0648\u0631\u0633\u0648\u0644\u0643","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2701629769,"id_str":"2701629769","name":"\u062a\u0633\u0628\u064a\u062d \u0648 \u0627\u0633\u062a\u063a\u0641\u0627\u0631","screen_name":"TasbihIstighfar","location":"\u300a \u0627\u0644\u0642\u0631\u0622\u0646 \u0627\u0644\u0643\u0631\u064a\u0645 \u300b","url":"https:\/\/twitter.com\/QuranKareem","description":"\u25fb \u0642\u0627\u0644 \u0631\u0633\u0648\u0644 \u0627\u0644\u0644\u0647 \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u25fb \u0643\u0644\u0645\u062a\u0627\u0646 \u062e\u0641\u064a\u0641\u062a\u0627\u0646 \u0639\u0644\u0649 \u0627\u0644\u0644\u0633\u0627\u0646 \u060c \u062b\u0642\u064a\u0644\u062a\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u064a\u0632\u0627\u0646 \u060c \u062d\u0628\u064a\u0628\u062a\u0627\u0646 \u0625\u0644\u0649 \u0627\u0644\u0631\u062d\u0645\u0646 :: \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u060c \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u25fb \u0645\u062a\u0641\u0642 \u0639\u0644\u064a\u0647","protected":false,"verified":false,"followers_count":109740,"friends_count":61831,"listed_count":122,"favourites_count":527,"statuses_count":19299,"created_at":"Sat Aug 02 19:51:57 +0000 2014","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647136646547181568\/sCmoSh7e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647136646547181568\/sCmoSh7e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2701629769\/1442450713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TasbihIstighfar","name":"\u062a\u0633\u0628\u064a\u062d \u0648 \u0627\u0633\u062a\u063a\u0641\u0627\u0631","id":2701629769,"id_str":"2701629769","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080013661"} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800059338753,"id_str":"663727800059338753","text":"Everyone Knows This Is Used to Unlock Your Car. But There's Another Use\u2026 https:\/\/t.co\/6ruhS0HGbq https:\/\/t.co\/Vuk35WjYpD","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3374784934,"id_str":"3374784934","name":"InnerGrowth101","screen_name":"InnerGrowth101","location":null,"url":null,"description":"For promoting on this page click the blog, http:\/\/purchasetweets.blogspot.com","protected":false,"verified":false,"followers_count":14304,"friends_count":11997,"listed_count":5,"favourites_count":0,"statuses_count":23897,"created_at":"Mon Jul 13 22:13:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633390131584458752\/XiiPurrW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633390131584458752\/XiiPurrW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3374784934\/1439846925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6ruhS0HGbq","expanded_url":"http:\/\/bit.ly\/1HnS6cq","display_url":"bit.ly\/1HnS6cq","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663727799266508800,"id_str":"663727799266508800","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6rbVAAAvKi4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6rbVAAAvKi4.png","url":"https:\/\/t.co\/Vuk35WjYpD","display_url":"pic.twitter.com\/Vuk35WjYpD","expanded_url":"http:\/\/twitter.com\/InnerGrowth101\/status\/663727800059338753\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":370,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":370,"h":204,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727799266508800,"id_str":"663727799266508800","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6rbVAAAvKi4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6rbVAAAvKi4.png","url":"https:\/\/t.co\/Vuk35WjYpD","display_url":"pic.twitter.com\/Vuk35WjYpD","expanded_url":"http:\/\/twitter.com\/InnerGrowth101\/status\/663727800059338753\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":370,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":370,"h":204,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080013657"} +{"delete":{"status":{"id":483518949884436480,"id_str":"483518949884436480","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080014154"}} +{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727800084508672,"id_str":"663727800084508672","text":"@CFSofiaSuescun @MiguelFrigenti @cris_gh16 ah\u00ed est\u00e1. https:\/\/t.co\/0czZpAtd08","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726468418150400,"in_reply_to_status_id_str":"663726468418150400","in_reply_to_user_id":3901611082,"in_reply_to_user_id_str":"3901611082","in_reply_to_screen_name":"CFSofiaSuescun","user":{"id":3843219501,"id_str":"3843219501","name":"GH RAQUEL AL 27450","screen_name":"ANagorista","location":"Santander, Cantabria","url":null,"description":"Cuenta de apoyo a Nagore Robles. La admiro mucho y espero poder conocerla en persona alg\u00fan d\u00eda. Fan de GH. GH RAQUEL AL 27450. Guerrera. Mal\u00fa. Vane. LGTB+ \u2640","protected":false,"verified":false,"followers_count":395,"friends_count":714,"listed_count":0,"favourites_count":6960,"statuses_count":4720,"created_at":"Fri Oct 02 13:28:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649941742825906176\/mjQeHFz4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649941742825906176\/mjQeHFz4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3843219501\/1443793052","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CFSofiaSuescun","name":"GH RAQUEL al 27450","id":3901611082,"id_str":"3901611082","indices":[0,15]},{"screen_name":"MiguelFrigenti","name":"Miguel Frigenti","id":44113761,"id_str":"44113761","indices":[16,31]},{"screen_name":"cris_gh16","name":"\u2764 SOFIA & MAITE \u2764","id":3635955077,"id_str":"3635955077","indices":[32,42]}],"symbols":[],"media":[{"id":663727792618606592,"id_str":"663727792618606592","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6SqWEAAF2Vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6SqWEAAF2Vd.jpg","url":"https:\/\/t.co\/0czZpAtd08","display_url":"pic.twitter.com\/0czZpAtd08","expanded_url":"http:\/\/twitter.com\/ANagorista\/status\/663727800084508672\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":1126,"resize":"fit"},"medium":{"w":600,"h":939,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727792618606592,"id_str":"663727792618606592","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6SqWEAAF2Vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6SqWEAAF2Vd.jpg","url":"https:\/\/t.co\/0czZpAtd08","display_url":"pic.twitter.com\/0czZpAtd08","expanded_url":"http:\/\/twitter.com\/ANagorista\/status\/663727800084508672\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":1126,"resize":"fit"},"medium":{"w":600,"h":939,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080013663"} +{"delete":{"status":{"id":663165977253687297,"id_str":"663165977253687297","user_id":2279878758,"user_id_str":"2279878758"},"timestamp_ms":"1447080014492"}} +{"delete":{"status":{"id":663727766504886273,"id_str":"663727766504886273","user_id":1122507793,"user_id_str":"1122507793"},"timestamp_ms":"1447080014520"}} +{"delete":{"status":{"id":661265269671780352,"id_str":"661265269671780352","user_id":4009367847,"user_id_str":"4009367847"},"timestamp_ms":"1447080014555"}} +{"delete":{"status":{"id":645408158123294721,"id_str":"645408158123294721","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080014622"}} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266242048,"id_str":"663727804266242048","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731561676,"id_str":"731561676","name":"\u2757\ufe0f","screen_name":"_PassTheBluntt","location":"BlessMyDmsW.BootyPics&Fansigns","url":null,"description":"Remain Humble \u2022 retweet my favs \u2022","protected":false,"verified":false,"followers_count":13004,"friends_count":4209,"listed_count":12,"favourites_count":333,"statuses_count":2881,"created_at":"Wed Aug 01 22:09:25 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659506730674593792\/7CNlfLEB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659506730674593792\/7CNlfLEB_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291371008,"id_str":"663727804291371008","text":"RT @benn_mari: E Maur\u00edcio nos segue, inclusive curtiu uma foto nossa ontem. Se cada um cuidasse da sua pr\u00f3pria vida, tudo seria mais f\u00e1cil.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1293069871,"id_str":"1293069871","name":"Vic","screen_name":"vicluz7","location":null,"url":null,"description":"l \u2764\ufe0f Paraisopolis #Maribenreina 19\/09\/2015 melhor data!","protected":false,"verified":false,"followers_count":227,"friends_count":145,"listed_count":0,"favourites_count":3190,"statuses_count":7893,"created_at":"Sun Mar 24 00:52:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645093428427137024\/XeXyzkrW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645093428427137024\/XeXyzkrW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1293069871\/1437186883","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:01 +0000 2015","id":663726238209544192,"id_str":"663726238209544192","text":"E Maur\u00edcio nos segue, inclusive curtiu uma foto nossa ontem. Se cada um cuidasse da sua pr\u00f3pria vida, tudo seria mais f\u00e1cil.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319649177,"id_str":"3319649177","name":"Loucapormariben","screen_name":"benn_mari","location":null,"url":"http:\/\/page.is\/loucapormariben","description":"Somos loucas pelo casal Mari e Benjamin da novela I \u2764\ufe0f Parais\u00f3polis! https:\/\/instagram.com\/loucapormariben\/","protected":false,"verified":false,"followers_count":2140,"friends_count":391,"listed_count":1,"favourites_count":28602,"statuses_count":34891,"created_at":"Thu Jun 11 21:02:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610188421928235008\/Vq66NCWk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610188421928235008\/Vq66NCWk.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645710415574360066\/hXJFFF_G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645710415574360066\/hXJFFF_G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319649177\/1442784355","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"benn_mari","name":"Loucapormariben","id":3319649177,"id_str":"3319649177","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804270428160,"id_str":"663727804270428160","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185171381,"id_str":"2185171381","name":"\u2202\u0454\u03b1\u0438\u2202\u044f\u0454","screen_name":"ABlessedSinner","location":null,"url":"http:\/\/instagram.com\/realdrekennedy","description":"THINK DEEP : FUCK DEEPER || XII.II.MCMXCIII || D O N T ||","protected":false,"verified":false,"followers_count":34466,"friends_count":34460,"listed_count":40,"favourites_count":75,"statuses_count":28025,"created_at":"Sat Nov 09 22:48:19 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663636990445813760\/_vPimSzW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663636990445813760\/_vPimSzW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185171381\/1446876723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014661"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804282990592,"id_str":"663727804282990592","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719988043,"id_str":"2719988043","name":"daenerys tarageryn","screen_name":"anxrchyink","location":null,"url":null,"description":"posting pretty girls | turn my notifications on | i do not own the content i post","protected":false,"verified":false,"followers_count":23694,"friends_count":15702,"listed_count":33,"favourites_count":1740,"statuses_count":75,"created_at":"Mon Jul 21 19:30:25 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612963890566201344\/7dFs-jGd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612963890566201344\/7dFs-jGd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2719988043\/1434976964","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014664"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287201280,"id_str":"663727804287201280","text":"RT @NOTlCIASCNN: !Incre\u00edble como este TRUCO activa la PERDIDA DE PESO en las ma\u00f1anas!\n\nVer \ud83d\udc49 https:\/\/t.co\/b4LUehlOOY\n\n\u2014 https:\/\/t.co\/vWydUh\u2026","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003eMachoFamous2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2249023154,"id_str":"2249023154","name":"\u25cf\u2022\u06f0Chicas Poetas\u06f0\u2022\u25cf","screen_name":"CarolinaSoltera","location":"Videos Sexys \u2193\u2193","url":"http:\/\/cnn.videosoriginales.com\/","description":"\u25cf\u2022\u06f0S\u00edgueme, no s\u00e9 para donde voy pero acomp\u00e1\u00f1ame.\u270c\u06f0\u2022\u25cf \u2003","protected":false,"verified":false,"followers_count":117755,"friends_count":9132,"listed_count":59,"favourites_count":8644,"statuses_count":19654,"created_at":"Mon Dec 16 16:57:03 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504874007137501184\/udDGfzzl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504874007137501184\/udDGfzzl.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603793596131647488\/S4-d8zFN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603793596131647488\/S4-d8zFN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2249023154\/1432790600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 23:47:15 +0000 2015","id":662415912709070849,"id_str":"662415912709070849","text":"!Incre\u00edble como este TRUCO activa la PERDIDA DE PESO en las ma\u00f1anas!\n\nVer \ud83d\udc49 https:\/\/t.co\/b4LUehlOOY\n\n\u2014 https:\/\/t.co\/vWydUhohZH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2777460342,"id_str":"2777460342","name":"CNN en Espa\u00f1ol","screen_name":"NOTlCIASCNN","location":"Visita nuestro Blog \u2192","url":"http:\/\/socialmedia-viral.com\/","description":"CNN en Espa\u00f1ol es tu principal fuente de informaci\u00f3n y breaking news. Cubrimos las noticias de Am\u00e9rica Latina y el resto del mundo. Vive la noticia.","protected":false,"verified":false,"followers_count":20571,"friends_count":0,"listed_count":13,"favourites_count":23,"statuses_count":203,"created_at":"Fri Aug 29 01:15:12 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644287367776354305\/s7Gpdp4m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644287367776354305\/s7Gpdp4m_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":55,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b4LUehlOOY","expanded_url":"http:\/\/j.gs\/6tJ2","display_url":"j.gs\/6tJ2","indices":[76,99]}],"user_mentions":[],"symbols":[],"media":[{"id":662415908388929537,"id_str":"662415908388929537","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","url":"https:\/\/t.co\/vWydUhohZH","display_url":"pic.twitter.com\/vWydUhohZH","expanded_url":"http:\/\/twitter.com\/NOTlCIASCNN\/status\/662415912709070849\/photo\/1","type":"photo","sizes":{"small":{"w":311,"h":162,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":311,"h":162,"resize":"fit"},"large":{"w":311,"h":162,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662415908388929537,"id_str":"662415908388929537","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","url":"https:\/\/t.co\/vWydUhohZH","display_url":"pic.twitter.com\/vWydUhohZH","expanded_url":"http:\/\/twitter.com\/NOTlCIASCNN\/status\/662415912709070849\/photo\/1","type":"photo","sizes":{"small":{"w":311,"h":162,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":311,"h":162,"resize":"fit"},"large":{"w":311,"h":162,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b4LUehlOOY","expanded_url":"http:\/\/j.gs\/6tJ2","display_url":"j.gs\/6tJ2","indices":[93,116]}],"user_mentions":[{"screen_name":"NOTlCIASCNN","name":"CNN en Espa\u00f1ol","id":2777460342,"id_str":"2777460342","indices":[3,15]}],"symbols":[],"media":[{"id":662415908388929537,"id_str":"662415908388929537","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","url":"https:\/\/t.co\/vWydUhohZH","display_url":"pic.twitter.com\/vWydUhohZH","expanded_url":"http:\/\/twitter.com\/NOTlCIASCNN\/status\/662415912709070849\/photo\/1","type":"photo","sizes":{"small":{"w":311,"h":162,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":311,"h":162,"resize":"fit"},"large":{"w":311,"h":162,"resize":"fit"}},"source_status_id":662415912709070849,"source_status_id_str":"662415912709070849","source_user_id":2777460342,"source_user_id_str":"2777460342"}]},"extended_entities":{"media":[{"id":662415908388929537,"id_str":"662415908388929537","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFfwlEXAAEicx3.jpg","url":"https:\/\/t.co\/vWydUhohZH","display_url":"pic.twitter.com\/vWydUhohZH","expanded_url":"http:\/\/twitter.com\/NOTlCIASCNN\/status\/662415912709070849\/photo\/1","type":"photo","sizes":{"small":{"w":311,"h":162,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":311,"h":162,"resize":"fit"},"large":{"w":311,"h":162,"resize":"fit"}},"source_status_id":662415912709070849,"source_status_id_str":"662415912709070849","source_user_id":2777460342,"source_user_id_str":"2777460342"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278796288,"id_str":"663727804278796288","text":"RT @steampunkbuddha: #TieDye #Hippie #Rainbow #Abstract Painted #SteampunkBuddha https:\/\/t.co\/9jhvVYgkn5 via @Etsy #craftshout #pebeoart #h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2511186441,"id_str":"2511186441","name":"Shaes Bridal","screen_name":"Bridalcrazy","location":"Maine","url":"http:\/\/www.etsy.com\/shop\/shaesbridal","description":"Geek wedding designer","protected":false,"verified":false,"followers_count":452,"friends_count":587,"listed_count":108,"favourites_count":95,"statuses_count":2650,"created_at":"Sat Apr 26 21:12:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553688980781166594\/cC3LW6jL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553688980781166594\/cC3LW6jL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2511186441\/1420844966","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:56 +0000 2015","id":663726721397469184,"id_str":"663726721397469184","text":"#TieDye #Hippie #Rainbow #Abstract Painted #SteampunkBuddha https:\/\/t.co\/9jhvVYgkn5 via @Etsy #craftshout #pebeoart #hippylife #bohojewelry","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108106441,"id_str":"108106441","name":"Becky Epp","screen_name":"steampunkbuddha","location":"Pittsburg, Texas","url":"https:\/\/www.facebook.com\/TheSteampunkBuddha","description":"I'm Becky, the owner of The Steampunk Buddha, specializing in custom Steampunk, Gothic and Boho Jewelry. Please take a look at my store! http:\/\/etsy.me\/1uM2gxD","protected":false,"verified":false,"followers_count":5009,"friends_count":5124,"listed_count":216,"favourites_count":7450,"statuses_count":16725,"created_at":"Sun Jan 24 21:45:21 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"F14709","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644535300757172224\/vDhcl0po_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644535300757172224\/vDhcl0po_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108106441\/1444666837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"TieDye","indices":[0,7]},{"text":"Hippie","indices":[8,15]},{"text":"Rainbow","indices":[16,24]},{"text":"Abstract","indices":[25,34]},{"text":"SteampunkBuddha","indices":[43,59]},{"text":"craftshout","indices":[94,105]},{"text":"pebeoart","indices":[106,115]},{"text":"hippylife","indices":[116,126]},{"text":"bohojewelry","indices":[127,139]}],"urls":[{"url":"https:\/\/t.co\/9jhvVYgkn5","expanded_url":"http:\/\/etsy.me\/1Q7ChGD","display_url":"etsy.me\/1Q7ChGD","indices":[60,83]}],"user_mentions":[{"screen_name":"Etsy","name":"Etsy","id":11522502,"id_str":"11522502","indices":[88,93]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TieDye","indices":[21,28]},{"text":"Hippie","indices":[29,36]},{"text":"Rainbow","indices":[37,45]},{"text":"Abstract","indices":[46,55]},{"text":"SteampunkBuddha","indices":[64,80]},{"text":"craftshout","indices":[115,126]},{"text":"pebeoart","indices":[127,136]},{"text":"hippylife","indices":[137,140]},{"text":"bohojewelry","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/9jhvVYgkn5","expanded_url":"http:\/\/etsy.me\/1Q7ChGD","display_url":"etsy.me\/1Q7ChGD","indices":[81,104]}],"user_mentions":[{"screen_name":"steampunkbuddha","name":"Becky Epp","id":108106441,"id_str":"108106441","indices":[3,19]},{"screen_name":"Etsy","name":"Etsy","id":11522502,"id_str":"11522502","indices":[109,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014663"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257824768,"id_str":"663727804257824768","text":"People change feelings don't","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245045653,"id_str":"245045653","name":"Martin","screen_name":"_ThatKidMartin","location":null,"url":null,"description":"Sports","protected":false,"verified":false,"followers_count":484,"friends_count":483,"listed_count":1,"favourites_count":11374,"statuses_count":13878,"created_at":"Sun Jan 30 19:08:29 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580278219\/aqnjqbcqmtf8t5k9199h.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580278219\/aqnjqbcqmtf8t5k9199h.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657585511289241600\/W7Z6SMvg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657585511289241600\/W7Z6SMvg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245045653\/1446649276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804274647041,"id_str":"663727804274647041","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117924254,"id_str":"117924254","name":".","screen_name":"_TrappedOut","location":null,"url":"http:\/\/nike.com","description":"Private Areas. #ArmyStrong","protected":false,"verified":false,"followers_count":11002,"friends_count":3713,"listed_count":9,"favourites_count":20864,"statuses_count":140205,"created_at":"Sat Feb 27 02:05:36 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1E8A4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000100733514\/b0ceec3d2c7bcf0c3a07510ced2b7df0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000100733514\/b0ceec3d2c7bcf0c3a07510ced2b7df0.jpeg","profile_background_tile":true,"profile_link_color":"690FA1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642908714337370116\/0Z0a0hZu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642908714337370116\/0Z0a0hZu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117924254\/1442138648","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014662"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287164417,"id_str":"663727804287164417","text":"@2avril2010 \u3053\u308c\u304a\u3044\u3057\u304b\u3063\u305f\u306a\u3042\u3002","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723340582928384,"in_reply_to_status_id_str":"663723340582928384","in_reply_to_user_id":128476986,"in_reply_to_user_id_str":"128476986","in_reply_to_screen_name":"2avril2010","user":{"id":61665039,"id_str":"61665039","name":"T.Mizutani","screen_name":"T_Mizutani","location":"\u4e0a\u6d77\u5e02\u9598\u5317\u533a","url":"http:\/\/raytiagu0802.cocolog-nifty.com\/","description":"\u611b\u77e5\u770c\u306e\u4e00\u5bae\u5e02\u3068\u3044\u3046\u3068\u3053\u308d\u304b\u3089\u8077\u3092\u6c42\u3081\u3066\u4e2d\u56fd\u5927\u9678\u30fb\u5927\u9023\u306b\u6765\u305f\u3042\u3068\u3001\u4e0a\u6d77\u306b\u5f15\u3063\u8d8a\u3057\u307e\u3057\u305f\u3002\r\n\u7ffb\u8a33\u306e\u4ed5\u4e8b\u3092\u3057\u3066\u3044\u307e\u3059\u3002\r\n\u91ce\u7403\u3068\u5927\u559c\u5229\u3068\u30c6\u30fc\u30d6\u30eb\u30b2\u30fc\u30e0\u3067\u81ea\u6211\u3092\u4fdd\u3063\u3066\u3044\u307e\u3059\u3002\u53f0\u6e7e\u30dc\u30fc\u30c9\u30b2\u30fc\u30e0\u30c7\u30b6\u30a4\u30f3\u306e\u52dd\u624b\u9023\u3092\u3057\u3066\u3044\u307e\u3059\u3002\r\n\u5927\u559c\u5229\u7528\u30a2\u30ab\u30a6\u30f3\u30c8 @nelison_SHA","protected":false,"verified":false,"followers_count":1039,"friends_count":744,"listed_count":104,"favourites_count":701,"statuses_count":24567,"created_at":"Fri Jul 31 02:15:25 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1480851292\/poweter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1480851292\/poweter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61665039\/1385110432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"2avril2010","name":"\u3059\u3044\u304b\u592b\u4eba","id":128476986,"id_str":"128476986","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278824960,"id_str":"663727804278824960","text":"I want to watch the minion movie soo bad :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066039784,"id_str":"3066039784","name":"Sharmanize","screen_name":"Sharmanize","location":"youtube","url":"https:\/\/www.youtube.com\/channel\/UCJgmXdPYPPDx_N89uCWvmuw\/featured","description":"EU&US battletag - sharmanize#2223 dont follow me i once got lost going from goldshire to stormwind","protected":false,"verified":false,"followers_count":3329,"friends_count":3108,"listed_count":17,"favourites_count":1341,"statuses_count":2023,"created_at":"Mon Mar 02 14:19:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663348597312897024\/AAMcWXAL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663348597312897024\/AAMcWXAL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066039784\/1431853735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014663"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278833152,"id_str":"663727804278833152","text":"Wise men speak because they have something to say; fools because they have to say something. - Plato","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257217994,"id_str":"3257217994","name":"Macylain Alfred","screen_name":"MacylainAlfred","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":69,"friends_count":154,"listed_count":48,"favourites_count":1,"statuses_count":10469,"created_at":"Fri May 15 16:49:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014663"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287197184,"id_str":"663727804287197184","text":"I need to get my shit together","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2890055682,"id_str":"2890055682","name":"Q","screen_name":"Qnicoleee","location":null,"url":null,"description":"Let it Not be how I look But what I Do that makes me Beautiful. \nCulinary Arts Major","protected":false,"verified":false,"followers_count":781,"friends_count":1005,"listed_count":0,"favourites_count":1404,"statuses_count":6691,"created_at":"Tue Nov 04 18:58:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662823317972377604\/U8RzS_iq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662823317972377604\/U8RzS_iq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2890055682\/1441332674","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804283006976,"id_str":"663727804283006976","text":"Pretty sure like allll my friends want @BlaireHanks now because he's sexy as hell! Can't blame them!\ud83d\ude1c\ud83d\ude0d\ud83d\ude0d\ud83d\udd25\ud83d\udd25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36461131,"id_str":"36461131","name":"Jessica Key","screen_name":"jkey2004","location":"FL \u2600\ufe0f","url":null,"description":"\u2728\u2022Music\u2022Adventures\u20221\/4 Squad \u2728","protected":false,"verified":false,"followers_count":2083,"friends_count":997,"listed_count":24,"favourites_count":33698,"statuses_count":21233,"created_at":"Wed Apr 29 19:59:05 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507941258606551040\/yt1ptPoF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507941258606551040\/yt1ptPoF.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659053744982728704\/UG5rFQxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659053744982728704\/UG5rFQxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36461131\/1435704927","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlaireHanks","name":"Blaire Hanks","id":297387472,"id_str":"297387472","indices":[39,51]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014664"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266188800,"id_str":"663727804266188800","text":"\u00ab\u0420\u043e\u0441\u0431\u0430\u043b\u0442\u00bb \u0441\u043e\u043e\u0431\u0449\u0430\u0435\u0442, \u0447\u0442\u043e \u0420\u0443\u0441\u043b\u0430\u043d\u0443 \u0413\u0435\u0440\u0435\u043c\u0435\u0435\u0432\u0443 \u0434\u0430\u043b\u0438 \u0441\u0442\u0430\u0442\u0443\u0441 \u043f\u043e\u0434\u043e\u0437\u0440\u0435\u0432\u0430\u0435\u043c\u043e\u0433\u043e \u043f\u043e \u0434\u0435\u043b\u0443 \u043e\u0431 \u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0435 \u0411\u043e\u0440\u0438\u0441\u0430 \u041d\u0435\u043c\u0446\u043e\u0432\u0430\nhttps:\/\/t.co\/4SSlDHhloR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136329115,"id_str":"136329115","name":"\u0422\u0435\u043b\u0435\u043a\u0430\u043d\u0430\u043b \u0414\u041e\u0416\u0414\u042c","screen_name":"tvrain","location":"Moscow","url":"http:\/\/www.tvrain.ru","description":"\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u044b\u0439 \u0440\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0438\u0439 \u0442\u0435\u043b\u0435\u043a\u0430\u043d\u0430\u043b. \u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0414\u043e\u0436\u0434\u044f @tvrain_live","protected":false,"verified":true,"followers_count":1521803,"friends_count":791,"listed_count":5028,"favourites_count":1005,"statuses_count":118591,"created_at":"Fri Apr 23 16:36:11 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577791391549366273\/G-WcXEXd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577791391549366273\/G-WcXEXd.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661483703588274176\/gLQcedk9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661483703588274176\/gLQcedk9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136329115\/1413568479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4SSlDHhloR","expanded_url":"https:\/\/tvrain.ru\/news\/rosbalt_geremeevu_dali_status_podozrevaemogo_v_dele_ob_ubijstve_nemtsova-397886\/","display_url":"tvrain.ru\/news\/rosbalt_g\u2026","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257841152,"id_str":"663727804257841152","text":"RT: Heyangelfths: RT halseyftoned: \ud83d\udd25OT4 Lockscreen\ud83d\udd25\n\n\u2022rt\/fav if want & we'll dm it to you\n\u2022mbf!\n\n#RembemberOTRATour \n#HappyHalloween \u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2498812080,"id_str":"2498812080","name":"etcPB.com","screen_name":"etcPB","location":"Worldwide","url":"http:\/\/www.etcpb.com\/","description":"#RamadanMubarak #EidMubarak #HappyTeachersDay2015 #HappyEid #MerryChristmas2015 #GetFreeTwitterFollowers #TwitterFollowers","protected":false,"verified":false,"followers_count":1480,"friends_count":93,"listed_count":1244,"favourites_count":19,"statuses_count":334293,"created_at":"Fri May 16 12:44:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467295339116916736\/f5KPcNZa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467295339116916736\/f5KPcNZa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2498812080\/1400246798","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RembemberOTRATour","indices":[101,119]},{"text":"HappyHalloween","indices":[121,136]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804274581504,"id_str":"663727804274581504","text":"utiliza el cerebro.... es gratis!","source":"\u003ca href=\"http:\/\/www.pagesuites.com\" rel=\"nofollow\"\u003ePagesuites\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456691621,"id_str":"456691621","name":"\u221e |Inolvidable| \u2640\u2642","screen_name":"JaZz_Hrndez","location":"Indianapolis, Oklahoma ","url":"http:\/\/UnaBainaDiferente.com","description":"\u2642 FuckYou baby |20 A\u00f1os de Lucha y al Fin te Encontr\u00e9 12\/01\/14 \u2665|T.M.C 4Life \u2042 |Mi Felicidad Depende Yenifer| whatsapp \u00bb +1917-436-1230 PIN \u00bb 79ECD1A2","protected":false,"verified":false,"followers_count":1327,"friends_count":20,"listed_count":2,"favourites_count":48,"statuses_count":106989,"created_at":"Fri Jan 06 15:01:28 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095939070\/be4ff9388eb2a57f97859e211f2f5e3e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095939070\/be4ff9388eb2a57f97859e211f2f5e3e.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625166773541666817\/F3x0NupR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625166773541666817\/F3x0NupR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456691621\/1442330167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080014662"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266082304,"id_str":"663727804266082304","text":"\u4eca\u65e5\u306a\u306b\u3082\u3057\u3066\u306a\u3044\u306e\u6094\u3057\u3044\u304b\u3089\u306a\u3093\u304b\u843d\u66f8\u304d\u3060\u3051\u3057\u3066\u5bdd\u3088","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85321340,"id_str":"85321340","name":"\u307f\u3086\u3046","screen_name":"miyu_u_u","location":null,"url":null,"description":"\uff72\uff9d\uff80\uff70\uff88\uff6f\uff84\uff97\uff78\uff76\uff9e\uff77\uff8f\uff9d(\u8150)\u3002 \u203b\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":200,"friends_count":162,"listed_count":6,"favourites_count":9506,"statuses_count":126985,"created_at":"Mon Oct 26 14:00:26 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592706641092485120\/Umx6xzJ9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592706641092485120\/Umx6xzJ9.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659378088267018240\/6WLi2cxM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659378088267018240\/6WLi2cxM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85321340\/1430237180","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266205184,"id_str":"663727804266205184","text":"Me duele la planta del pie .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239202363,"id_str":"3239202363","name":"Natalia Mariel :*","screen_name":"mariel_1598","location":"Buenos Aires, Argentina","url":"https:\/\/www.facebook.com\/francoynatalia","description":"11-05-15 Siempre Juntas\/\/ Amarte fue la segunda mejor cosa que me paso en la vida , la primera fue conocerte 21-10-14 \u2665 Mi Abuelo Mi Angel \u2665 1126722056 Wsp *_*","protected":false,"verified":false,"followers_count":148,"friends_count":169,"listed_count":0,"favourites_count":320,"statuses_count":2402,"created_at":"Wed May 06 18:32:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663448861445390336\/QShzwT_g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663448861445390336\/QShzwT_g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239202363\/1446588694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257730560,"id_str":"663727804257730560","text":"@teamsudarat \u0e40\u0e02\u0e23\u0e49 \u0e01\u0e39\u0e2b\u0e21\u0e14\u0e04\u0e33\u0e1e\u0e39\u0e14 555555555555","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727697042890752,"in_reply_to_status_id_str":"663727697042890752","in_reply_to_user_id":2950306603,"in_reply_to_user_id_str":"2950306603","in_reply_to_screen_name":"teamsudarat","user":{"id":1312708496,"id_str":"1312708496","name":"\u0e41\u0e21\u0e07\u0e07\u0e4a\u0e2d\u0e07\u0e41\u0e07\u0e4a\u0e07","screen_name":"palopperzz","location":null,"url":null,"description":"FIBO is loading...","protected":false,"verified":false,"followers_count":132,"friends_count":53,"listed_count":0,"favourites_count":1049,"statuses_count":36499,"created_at":"Fri Mar 29 05:34:19 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"27E7F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448296399352778752\/hVA-hGHn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448296399352778752\/hVA-hGHn.jpeg","profile_background_tile":true,"profile_link_color":"05FA0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651799798983495680\/3VZytsOW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651799798983495680\/3VZytsOW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312708496\/1444412166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teamsudarat","name":"\u25a0\u25a1\u25a0","id":2950306603,"id_str":"2950306603","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287197185,"id_str":"663727804287197185","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2863317907,"id_str":"2863317907","name":"\u303dxo","screen_name":"_overdosexo","location":"Florida, USA","url":null,"description":"xo dont you forget.\ni didnt rt the shit on my page","protected":false,"verified":false,"followers_count":22089,"friends_count":16467,"listed_count":18,"favourites_count":63,"statuses_count":1882,"created_at":"Sat Oct 18 19:10:39 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589043371924041728\/_HXifd9f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589043371924041728\/_HXifd9f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657628732409139201\/exCHGsaX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657628732409139201\/exCHGsaX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2863317907\/1443039260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291289089,"id_str":"663727804291289089","text":"Senin, 09 November 2015 Jam 09:39","source":"\u003ca href=\"http:\/\/yoshika23218.com\/twitcle\/\" rel=\"nofollow\"\u003etwitcle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3726455120,"id_str":"3726455120","name":".","screen_name":"SR15BJENO","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":17,"statuses_count":21585,"created_at":"Tue Sep 29 14:06:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257693697,"id_str":"663727804257693697","text":"@MIYU96190444 \n\u6025\u306b\uff01\uff1f\u7b11\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727223254355970,"in_reply_to_status_id_str":"663727223254355970","in_reply_to_user_id":3009097579,"in_reply_to_user_id_str":"3009097579","in_reply_to_screen_name":"MIYU96190444","user":{"id":2895443870,"id_str":"2895443870","name":"\u307b\u30fc\u306e","screen_name":"no_saico","location":null,"url":null,"description":"\u90a3\u8987\u55461\u5e74\u4f1a\u8a08\u79d1\u30cf\u30f3\u30c9\u90e8 \u5c0f\u4e2d \u300e\u30d0\u30b9\u30b1\u300f \u5c0f\u3055\u306a\u5e78\u305b\u306b\u3042\u308a\u304c\u3068\u3046\u304c\u8a00\u3048\u308b\u4eba\u306b\u306a\u308b\u3002","protected":false,"verified":false,"followers_count":530,"friends_count":543,"listed_count":1,"favourites_count":1108,"statuses_count":1746,"created_at":"Mon Nov 10 08:59:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662986078576492544\/WHw2V31b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662986078576492544\/WHw2V31b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2895443870\/1446903173","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MIYU96190444","name":"\u307f\u3086 \u4f0a\u826f\u7686","id":3009097579,"id_str":"3009097579","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287053824,"id_str":"663727804287053824","text":"\u8ae6\u3081\u305f\u306a\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3139873490,"id_str":"3139873490","name":"\u308a\u304b","screen_name":"gfxfbcffxdduvc","location":"\u95a2\u897f \u6ecb\u8cc0\u770c","url":null,"description":"98\u5e74\u7d44 \u6c38\u9060\u63a8\u3057\u25b8\u25b9\u5bae\u6fa4\u4f50\u6c5f\/ \u5c71\u7530\u83dc\u3005\u7f8e\/\u5c0f\u5d8b\u771f\u5b50\/\u5bae\u6fa4\u4f50\u6c5f\u261e\u300a@oyasuminaSAE_m\u300b \u5927\u5207\u306a\u76f8\u65b9\u261e\u3010@sukisukimirurun\u3011\u3070\u304b\u261e\ua4b0\ua4b0@baseball_7248\ua4b1\ua4b1\u30dc\u30fc\u30a4\u30c3\u30b7\u30e5\u7cfb\u5973 9\/26\u5927\u962a\u30a4\u30f3\u30c6 10\/3team8\u6ecb\u8cc0\u30c4\u30a2\u30fc next\u261e5\/21\u30a4\u30f3\u30c6 \u4e88\u5b9a","protected":false,"verified":false,"followers_count":1321,"friends_count":173,"listed_count":53,"favourites_count":58864,"statuses_count":21154,"created_at":"Sun Apr 05 06:09:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661511444203110401\/0mpgGQfm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661511444203110401\/0mpgGQfm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3139873490\/1446537102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257693696,"id_str":"663727804257693696","text":"@donguri_bani \n\u30c1\u30e3\u30aa\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727202228289536,"in_reply_to_status_id_str":"663727202228289536","in_reply_to_user_id":2451530947,"in_reply_to_user_id_str":"2451530947","in_reply_to_screen_name":"donguri_bani","user":{"id":2472700274,"id_str":"2472700274","name":"Remyu \uf8ff","screen_name":"122129r","location":"\u307f\u305d\u30af\u30ea\u30fc\u30e0\u30b9\u30fc\u30d7\u306b\u6d78\u304b\u308a\u305f\u3044","url":"http:\/\/twpf.jp\/122129r","description":"\u30c6\u30fc\u30d6\u30eb\u53a8\u518d\u767a \u00d7 Daisy \u00d7 Mickey \u00d7 little John \u5927\u5207\u25b7 @fumicasonly \u611b\u3057\u306e\u611b\u65b9\u25b7@ns_tm_ \u53ef\u611b\u3044\u59b9\u25b7 @D0328h \u59c9\u25b7 @donald0609yuuki","protected":false,"verified":false,"followers_count":1452,"friends_count":440,"listed_count":77,"favourites_count":48303,"statuses_count":22630,"created_at":"Thu May 01 15:53:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641557930559471616\/XHXPtYe7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641557930559471616\/XHXPtYe7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2472700274\/1445695643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"donguri_bani","name":"\u3057\u3087\u30fc\u304f\u3093\u306c@\u97f3\u4fe1\u4e0d\u901a","id":2451530947,"id_str":"2451530947","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287164416,"id_str":"663727804287164416","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408292870,"id_str":"408292870","name":"ig @ aintthatdevin","screen_name":"AintThatDevin","location":"DM(V)","url":null,"description":"only need bae @its_ciarah VA \u2708\ufe0f Cali","protected":false,"verified":false,"followers_count":12283,"friends_count":555,"listed_count":15,"favourites_count":90,"statuses_count":21253,"created_at":"Wed Nov 09 07:12:34 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"095378","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438109087729864704\/LtNOFeHK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438109087729864704\/LtNOFeHK.jpeg","profile_background_tile":true,"profile_link_color":"280EF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0A090A","profile_text_color":"F00808","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658433685478182912\/E0vY97jH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658433685478182912\/E0vY97jH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408292870\/1444310179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804253609985,"id_str":"663727804253609985","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":915337160,"id_str":"915337160","name":"Arkaydia Farrow","screen_name":"_MustBeArkaydia","location":"Rhode Island","url":"http:\/\/www.writetolive.tumblr.com","description":"Sometimes I miss myself, the way I was before I let the world destroy me. RIC \u2662 Actress in the making \u2662 Snapchat: arkaydiafarrow \u2662","protected":false,"verified":false,"followers_count":20600,"friends_count":15303,"listed_count":24,"favourites_count":204,"statuses_count":26445,"created_at":"Tue Oct 30 19:32:37 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662073836834324480\/uQ9eSGp1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662073836834324480\/uQ9eSGp1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/915337160\/1445028481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014657"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291289088,"id_str":"663727804291289088","text":"@_6127_ \n\u3084\u3081\u3093\u306a\u3088\u3061\u306a\u5c45\u9152\u5c4b\u3063\u3057\u3087\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727504453079040,"in_reply_to_status_id_str":"663727504453079040","in_reply_to_user_id":3241194456,"in_reply_to_user_id_str":"3241194456","in_reply_to_screen_name":"_6127_","user":{"id":1366337785,"id_str":"1366337785","name":"\u30df\u30ab\u30a8\u30eb\u5148\u8f29 \u7206\u8a95\u30a4\u30d6","screen_name":"Sung11H","location":null,"url":null,"description":"\u6771\u4eac3\u65e5\u9593\u3068\u5927\u962a\u6700\u7d42\u65e5\u3044\u307e\u3059\u3002\u304a\u4f1a\u3044\u3057\u307e\u3057\u3087\u3046","protected":false,"verified":false,"followers_count":349,"friends_count":231,"listed_count":22,"favourites_count":5086,"statuses_count":27386,"created_at":"Sat Apr 20 06:30:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639103424835907584\/eTe_Sr5Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639103424835907584\/eTe_Sr5Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1366337785\/1433942932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_6127_","name":"\u7ca5","id":3241194456,"id_str":"3241194456","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804261883904,"id_str":"663727804261883904","text":"@t_samiya \u30b5\u30df\u30e4\u3055\u30fc\u3093\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2026\uff01(\u00b4;\u03c9;`)\u307b\u3093\u3068\u30ab\u30e1\u30e9\u30de\u30f3\u3055\u3093\u3068\u30a2\u30eb\u30b9\u30e9\u30fc\u30f3\u306e\u304a\u304b\u3052\u3067\u3044\u3044\u5199\u771f\u64ae\u308c\u307e\u3057\u305f\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725686117437440,"in_reply_to_status_id_str":"663725686117437440","in_reply_to_user_id":627919912,"in_reply_to_user_id_str":"627919912","in_reply_to_screen_name":"t_samiya","user":{"id":3317950448,"id_str":"3317950448","name":"\u3055\u304f\u3089:\u65b0\u57a2","screen_name":"capricoooo5","location":"\u81ea\u8ee2\u8eca\u57f7\u5200\u90e8","url":"http:\/\/www.cosp.jp\/prof.aspx?id=1953","description":"2015\u5e749\u6708\u306b\u518d\u767b\u9332\u3002 \u66ab\u304f\u30c4\u30a4\u30c3\u30bf\u30fc\u3092\u8f9e\u3081\u3066\u304b\u3089\u65b0\u57a2\u306b\u306a\u308a\u307e\u3057\u305f\u306e\u3067\u3001\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u304c\u5206\u304b\u308a\u307e\u305b\u3093\u3002\u518d\u5ea6\u7e4b\u304c\u3063\u3066\u3084\u308b\u3088\u3063\u3066\u65b9\u306f\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3084\u3063\u3066\u4e0b\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\u6c17\u4ed8\u304b\u306a\u3044\u3053\u3068\u304c\u591a\u3044\u306e\u3067\u3001\u30ea\u30d7\u9802\u3051\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u306b\u4f3a\u3044\u307e\u3059(*\u00b4\u2207`*)\u3010\u597d\u304d\u3011\u30da\u30c0\u30eb\/BJ\/\u5200\u5263\u4e71\u821e\/\u30da\u30eb\u30bd\u30ca\/\u30b8\u30d6\u30ea\/\u30e2\u30f3\u30cf\u30f3\/FF\/KH","protected":false,"verified":false,"followers_count":895,"friends_count":714,"listed_count":10,"favourites_count":821,"statuses_count":1794,"created_at":"Mon Aug 17 16:56:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652858397495136258\/6Qe5hW2Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652858397495136258\/6Qe5hW2Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317950448\/1440678915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"t_samiya","name":"\u30b5\u30df\u30e4","id":627919912,"id_str":"627919912","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804282830848,"id_str":"663727804282830848","text":"@BjMoja \u79c1\u304c\u64ae\u308b\uff01\uff01\u30ab\u30e1\u30e9\u8cb8\u3057\u3066\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714854117572609,"in_reply_to_status_id_str":"663714854117572609","in_reply_to_user_id":2933316114,"in_reply_to_user_id_str":"2933316114","in_reply_to_screen_name":"BjMoja","user":{"id":3152576570,"id_str":"3152576570","name":"\u7d30\u4e95\u8475\u306f\u9752\u3068\u7dd1\u6191\u304d","screen_name":"TotoroDokusou","location":null,"url":"http:\/\/twpf.jp\/TotoroDokusou","description":"\u9752\u6191\u304d\u3060\u3063\u305f\u306e\u306b\u6700\u8fd1\u7dd1\u306b\u3082\u6191\u304b\u308c\u305f \u3064\u3044\u3077\u308d\u5fc5\u8aad\u3067\u30b3\u30b9\u57a2\u3082\u305d\u3061\u3089\u306b","protected":false,"verified":false,"followers_count":202,"friends_count":189,"listed_count":25,"favourites_count":3055,"statuses_count":21526,"created_at":"Mon Apr 13 09:55:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662571200640475136\/hv_prdSj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662571200640475136\/hv_prdSj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3152576570\/1443180102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BjMoja","name":"\u304f\u3045\u305f\u308d\u3059\u2729\u02da\u9ec4\u7d44\u512a\u52dd\u2729\u02da","id":2933316114,"id_str":"2933316114","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014664"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266115072,"id_str":"663727804266115072","text":"Anak Malu Lihat Elly Sugigi Nikahi 'Brondong': Elly tak kuasa menahan rasa sedihnya karena salah satu anaknya ... https:\/\/t.co\/uaQvwFimZy","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380202412,"id_str":"380202412","name":"BERITA INDONESIA","screen_name":"kabarberita_id","location":null,"url":null,"description":"BERITA_ID Nasional,politik,kriminal,hukum,bisnis,ekonomi,teknologi,internet,perangkat,sport,sepakbola,hiburan,islami,lifestyle,selebritis,tokoh,kesehatan,dll","protected":false,"verified":false,"followers_count":640,"friends_count":573,"listed_count":15,"favourites_count":144,"statuses_count":220049,"created_at":"Mon Sep 26 07:40:25 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/336728829\/art40_s.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/336728829\/art40_s.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466805936934248449\/wCbwDaJt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466805936934248449\/wCbwDaJt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380202412\/1400131242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uaQvwFimZy","expanded_url":"http:\/\/bit.ly\/1Qp6rrf","display_url":"bit.ly\/1Qp6rrf","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804261994496,"id_str":"663727804261994496","text":"@Poshboy97 @queenkruIe yeah josh pack it in","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722716722282496,"in_reply_to_status_id_str":"663722716722282496","in_reply_to_user_id":825238861,"in_reply_to_user_id_str":"825238861","in_reply_to_screen_name":"Poshboy97","user":{"id":201430464,"id_str":"201430464","name":"Lee","screen_name":"_LiamFovargue","location":null,"url":null,"description":"MUFC \/\/ The Stone Roses","protected":false,"verified":false,"followers_count":497,"friends_count":327,"listed_count":3,"favourites_count":5192,"statuses_count":6442,"created_at":"Mon Oct 11 20:55:16 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/863507561\/c00056a4c85d752d4528f64315a29ee4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/863507561\/c00056a4c85d752d4528f64315a29ee4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659863105908903936\/IO3-8F8n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659863105908903936\/IO3-8F8n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201430464\/1446796399","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3bc1b6cfd27ef7f6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3bc1b6cfd27ef7f6.json","place_type":"admin","name":"East","full_name":"East, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.745780,51.448222],[-0.745780,52.992679],[1.768936,52.992679],[1.768936,51.448222]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Poshboy97","name":"Prior \u262e","id":825238861,"id_str":"825238861","indices":[0,10]},{"screen_name":"queenkruIe","name":"anni","id":570218919,"id_str":"570218919","indices":[11,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278685696,"id_str":"663727804278685696","text":"@rokuyuma \u308f\u305f\u3057\u3082\uff01\uff01\uff01\u30e6\u30de\u3055\u3093\u3068\u3082\uff01\uff01\u3054\u98ef\u98df\u3079\u305f\u3044\uff01\uff01\uff01\uff01\uff01\uff01\u64ae\u5f71\u306e\u5f8c\u3068\u304b\uff01\uff01\u3082\u3063\u3068\uff01\uff01\u304a\u8a71\u3057\u305f\u3044\uff01\uff01\uff01\u69cb\u3063\u3066\u304f\u3060\u3055\u3044\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724868655972354,"in_reply_to_status_id_str":"663724868655972354","in_reply_to_user_id":264494906,"in_reply_to_user_id_str":"264494906","in_reply_to_screen_name":"rokuyuma","user":{"id":2405245448,"id_str":"2405245448","name":"\u5c71\u79cb@\u61d0\u53e4\u53a8","screen_name":"yamaaki_72ra","location":"\u5927\u962a","url":null,"description":"\u4f4e\u30af\u30aa\u30ec\u30a4\u30e4\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u6642\u6298\u840c\u3048\u3092\u53eb\u3073\u6563\u3089\u3057\u305f\u308a\u610f\u5473\u4e0d\u660e\u306a\u4e8b\u3092\u8a00\u3063\u305f\u308a\u8150\u3063\u3066\u307e\u3059\u3002\u4eee\u88c5\u5199\u771f\u3092\u542b\u3081\u82e6\u624b\u306a\u65b9\u306f\u3054\u6ce8\u610f\u3092\uff01\u57fa\u672c\u7684\u306b\u72ec\u308a\u3067\u5bc2\u3057\u304f\u72ec\u308a\u8a00\u6492\u304d\u6563\u3089\u3057\u3066\u307e\u3059\u3002 \u9b3c\u706f\/\u9032\u6483\/Fate\/\u55b0\u7a2e\/\u30ac\u30c3\u30b7\u30e5\/PAPUWA\/\u30c6\u30e9\u30d5\u30a9 \u3002MARVEL\u30fbDWA\u611b\u3002\u30ab\u30a4\u30d6312479","protected":false,"verified":false,"followers_count":421,"friends_count":375,"listed_count":23,"favourites_count":1161,"statuses_count":30530,"created_at":"Sat Mar 22 23:32:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660073775015133184\/Bu27AoPd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660073775015133184\/Bu27AoPd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2405245448\/1442732910","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rokuyuma","name":"\u30e6\u30de","id":264494906,"id_str":"264494906","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014663"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291395584,"id_str":"663727804291395584","text":"WeZoom. \u041f\u0440\u0435\u0437\u0435\u043d\u0442\u0430\u0446\u0438\u044f.: https:\/\/t.co\/0z1ov5Y8gy \u03bc\u03ad\u03c3\u03c9 @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1857738907,"id_str":"1857738907","name":"Xenia ","screen_name":"xeniamukasei","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":282,"listed_count":0,"favourites_count":41,"statuses_count":551,"created_at":"Thu Sep 12 15:31:55 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000447608553\/044e311fb60c6c2810439cd8efe98bc8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000447608553\/044e311fb60c6c2810439cd8efe98bc8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1857738907\/1426550879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0z1ov5Y8gy","expanded_url":"http:\/\/youtu.be\/ameExkRu3HU?a","display_url":"youtu.be\/ameExkRu3HU?a","indices":[22,45]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[51,59]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266213377,"id_str":"663727804266213377","text":"RT @TaeGi_Diary: \" Green and V \" \u314e\u314e\u314e\u314e \ud83d\udc95 #\ubc29\ud0c4\uc18c\ub144\ub2e8 #\uc288\uac00 #\ubdd4 #\ubdd4\uc288 #VGa #\ubdd4\uc299 #suga #V #taegi\n\n[ 2nd pict from https:\/\/t.co\/c6DfcNrLDV ] https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915672962,"id_str":"2915672962","name":"thetis","screen_name":"fyeahbangtaned","location":"bangtan sonyeondan","url":null,"description":"born rapper \u2022 jessi","protected":false,"verified":false,"followers_count":1470,"friends_count":1119,"listed_count":1,"favourites_count":14911,"statuses_count":7951,"created_at":"Thu Dec 11 15:05:26 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639195451309301760\/UdBN93eF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639195451309301760\/UdBN93eF.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660816737286365184\/iEIAOPE4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660816737286365184\/iEIAOPE4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915672962\/1446386010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 14:01:25 +0000 2015","id":659006990920777728,"id_str":"659006990920777728","text":"\" Green and V \" \u314e\u314e\u314e\u314e \ud83d\udc95 #\ubc29\ud0c4\uc18c\ub144\ub2e8 #\uc288\uac00 #\ubdd4 #\ubdd4\uc288 #VGa #\ubdd4\uc299 #suga #V #taegi\n\n[ 2nd pict from https:\/\/t.co\/c6DfcNrLDV ] https:\/\/t.co\/TNSuVdXolq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3131496497,"id_str":"3131496497","name":"TAEGI'S DIARY\u2661","screen_name":"TaeGi_Diary","location":"\ub300\uad6c - International","url":null,"description":"\ubdd4 & \uc288\uac00 \uc778\ud130\ub0b4\uc154\ub110 \ud32c\ubc30\uc2a4 , ALL ABOUT TAEGI \/ \ubdd4\uc288\u2661 150821","protected":false,"verified":false,"followers_count":516,"friends_count":15,"listed_count":5,"favourites_count":60,"statuses_count":412,"created_at":"Fri Apr 03 04:00:56 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651398109310812160\/H8gZad0C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651398109310812160\/H8gZad0C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3131496497\/1445957149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":18,"entities":{"hashtags":[{"text":"\ubc29\ud0c4\uc18c\ub144\ub2e8","indices":[24,30]},{"text":"\uc288\uac00","indices":[31,34]},{"text":"\ubdd4","indices":[35,37]},{"text":"\ubdd4\uc288","indices":[38,41]},{"text":"VGa","indices":[42,46]},{"text":"\ubdd4\uc299","indices":[47,50]},{"text":"suga","indices":[51,56]},{"text":"V","indices":[57,59]},{"text":"taegi","indices":[60,66]}],"urls":[{"url":"https:\/\/t.co\/c6DfcNrLDV","expanded_url":"http:\/\/bts-trans.tumblr.com\/post\/54105518593\/bangtan-profiles-the-star-magazine","display_url":"bts-trans.tumblr.com\/post\/541055185\u2026","indices":[84,107]}],"user_mentions":[],"symbols":[],"media":[{"id":659006954581262336,"id_str":"659006954581262336","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":659006954581262336,"id_str":"659006954581262336","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":659006969697579008,"id_str":"659006969697579008","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDWO1UsAACE-T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDWO1UsAACE-T.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":948,"resize":"fit"},"small":{"w":340,"h":537,"resize":"fit"},"large":{"w":719,"h":1137,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":659006988844601345,"id_str":"659006988844601345","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDXWKVEAEm9iI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDXWKVEAEm9iI.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":78,"resize":"crop"},"small":{"w":340,"h":37,"resize":"fit"},"medium":{"w":600,"h":66,"resize":"fit"},"large":{"w":703,"h":78,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ubc29\ud0c4\uc18c\ub144\ub2e8","indices":[41,47]},{"text":"\uc288\uac00","indices":[48,51]},{"text":"\ubdd4","indices":[52,54]},{"text":"\ubdd4\uc288","indices":[55,58]},{"text":"VGa","indices":[59,63]},{"text":"\ubdd4\uc299","indices":[64,67]},{"text":"suga","indices":[68,73]},{"text":"V","indices":[74,76]},{"text":"taegi","indices":[77,83]}],"urls":[{"url":"https:\/\/t.co\/c6DfcNrLDV","expanded_url":"http:\/\/bts-trans.tumblr.com\/post\/54105518593\/bangtan-profiles-the-star-magazine","display_url":"bts-trans.tumblr.com\/post\/541055185\u2026","indices":[101,124]}],"user_mentions":[{"screen_name":"TaeGi_Diary","name":"TAEGI'S DIARY\u2661","id":3131496497,"id_str":"3131496497","indices":[3,15]}],"symbols":[],"media":[{"id":659006954581262336,"id_str":"659006954581262336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":659006990920777728,"source_status_id_str":"659006990920777728","source_user_id":3131496497,"source_user_id_str":"3131496497"}]},"extended_entities":{"media":[{"id":659006954581262336,"id_str":"659006954581262336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDVWhUAAAC3Uw.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":659006990920777728,"source_status_id_str":"659006990920777728","source_user_id":3131496497,"source_user_id_str":"3131496497"},{"id":659006969697579008,"id_str":"659006969697579008","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDWO1UsAACE-T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDWO1UsAACE-T.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":948,"resize":"fit"},"small":{"w":340,"h":537,"resize":"fit"},"large":{"w":719,"h":1137,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":659006990920777728,"source_status_id_str":"659006990920777728","source_user_id":3131496497,"source_user_id_str":"3131496497"},{"id":659006988844601345,"id_str":"659006988844601345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSVDXWKVEAEm9iI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSVDXWKVEAEm9iI.jpg","url":"https:\/\/t.co\/TNSuVdXolq","display_url":"pic.twitter.com\/TNSuVdXolq","expanded_url":"http:\/\/twitter.com\/TaeGi_Diary\/status\/659006990920777728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":78,"resize":"crop"},"small":{"w":340,"h":37,"resize":"fit"},"medium":{"w":600,"h":66,"resize":"fit"},"large":{"w":703,"h":78,"resize":"fit"}},"source_status_id":659006990920777728,"source_status_id_str":"659006990920777728","source_user_id":3131496497,"source_user_id_str":"3131496497"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287086593,"id_str":"663727804287086593","text":"@VICE Garbage article.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724237857800193,"in_reply_to_status_id_str":"663724237857800193","in_reply_to_user_id":23818581,"in_reply_to_user_id_str":"23818581","in_reply_to_screen_name":"VICE","user":{"id":84629035,"id_str":"84629035","name":"Hannibal Hanzo","screen_name":"TheeJesseHelton","location":"Neo-Saitama ","url":null,"description":"A,B,A,C,A,B,B","protected":false,"verified":false,"followers_count":635,"friends_count":655,"listed_count":18,"favourites_count":20019,"statuses_count":51899,"created_at":"Fri Oct 23 16:20:45 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507474105\/fur1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507474105\/fur1.jpg","profile_background_tile":false,"profile_link_color":"700707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FFFFFF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663082640623341568\/7zCoiH8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663082640623341568\/7zCoiH8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84629035\/1445573392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VICE","name":"VICE","id":23818581,"id_str":"23818581","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291280896,"id_str":"663727804291280896","text":"@mogatanpe \u854e\u9ea6\u306f\u30b9\u30fc\u30d7\u2026(\u00b0_\u00b0)\uff1f\u305d\u306e\u610f\u5473\u304c\u308f\u304b\u308b\u65e5\u304c\u6765\u308b\u306e\u3060\u308d\u3046\u304b\u2026\uff01w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727328422330368,"in_reply_to_status_id_str":"663727328422330368","in_reply_to_user_id":198467454,"in_reply_to_user_id_str":"198467454","in_reply_to_screen_name":"mogatanpe","user":{"id":2921595374,"id_str":"2921595374","name":"\u3061\u30fc\u305f\u3093\u307a@\u3082\u304c\u5358\u307aep7","screen_name":"chirorun7150","location":"\u4e8c\u6b21\u5143(\u9858\u671b)","url":null,"description":"\u90a6\u697d\u30ed\u30c3\u30af\u3068\u3067\u3093\u3071\u3068\u3046\u2668\ufe0e","protected":false,"verified":false,"followers_count":128,"friends_count":182,"listed_count":0,"favourites_count":663,"statuses_count":1983,"created_at":"Sun Dec 07 11:47:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598490456117252097\/fUWzW0lD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598490456117252097\/fUWzW0lD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921595374\/1435512417","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mogatanpe","name":"\u6700\u4e0a\u3082\u304c","id":198467454,"id_str":"198467454","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266098688,"id_str":"663727804266098688","text":"RT @eigacom: \u3010350RT\u3011\u5317\u7c73\u767a3DCG\u30a2\u30cb\u30e1\u300cRWBY\u300d\u304c\u4e16\u754c\u521d\u306e\u516c\u5f0f\u6f2b\u753b\u5316\u3000\u300cDOGS\/BULLETS&CARNAGE\u300d\u306e\u4e09\u8f2a\u58eb\u90ce\u304c\u63cf\u304f https:\/\/t.co\/C7HFgwUGLJ #\u6620\u753b #eiga https:\/\/t.co\/tpqJtOYsE8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270140039,"id_str":"2270140039","name":"JOE","screen_name":"adjohn246","location":null,"url":null,"description":"\u5c0f\u8aac\u66f8\u304b\u306a\u304d\u3083(\u4f7f\u547d\u611f)","protected":false,"verified":false,"followers_count":488,"friends_count":1676,"listed_count":14,"favourites_count":18107,"statuses_count":36273,"created_at":"Tue Dec 31 09:20:56 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648153266472157184\/VktrjYNX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648153266472157184\/VktrjYNX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270140039\/1443366754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:09 +0000 2015","id":663725266187882496,"id_str":"663725266187882496","text":"\u3010350RT\u3011\u5317\u7c73\u767a3DCG\u30a2\u30cb\u30e1\u300cRWBY\u300d\u304c\u4e16\u754c\u521d\u306e\u516c\u5f0f\u6f2b\u753b\u5316\u3000\u300cDOGS\/BULLETS&CARNAGE\u300d\u306e\u4e09\u8f2a\u58eb\u90ce\u304c\u63cf\u304f https:\/\/t.co\/C7HFgwUGLJ #\u6620\u753b #eiga https:\/\/t.co\/tpqJtOYsE8","source":"\u003ca href=\"http:\/\/eiga.com\/\" rel=\"nofollow\"\u003e\u6620\u753b.com(news)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7550252,"id_str":"7550252","name":"\u6620\u753b.com","screen_name":"eigacom","location":"\u6075\u6bd4\u5bff","url":"http:\/\/eiga.com\/","description":"\u6620\u753b\u306e\u3053\u3068\u306a\u3089\u6620\u753b.com\uff01\u6700\u65b0\u306e\u6620\u753b\u30cb\u30e5\u30fc\u30b9\u3092\u4e2d\u5fc3\u306b\u3001\u66f4\u65b0\u60c5\u5831\u3001\u5c0f\u30cd\u30bf\u3001\u601d\u308f\u305a\u3082\u308c\u305f\u5fc3\u306e\u53eb\u3073\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u6e29\u304b\u304f\u898b\u5b88\u3063\u3066\u9802\u3051\u307e\u3059\u3068\u5e78\u3044\u3067\u3059\u3002http:\/\/eiga.com Facebook\u3067\u306f\u30d7\u30ec\u30bc\u30f3\u30c8\u3084\u30a2\u30ec\u30b3\u30ec\u3092\u767a\u4fe1\u306a\u3046\uff01 http:\/\/facebook.com\/eigacom","protected":false,"verified":true,"followers_count":436098,"friends_count":176,"listed_count":6772,"favourites_count":115,"statuses_count":79246,"created_at":"Wed Jul 18 05:53:12 +0000 2007","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596258901537923073\/wA9yO5aR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596258901537923073\/wA9yO5aR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7550252\/1446443444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":26,"entities":{"hashtags":[{"text":"\u6620\u753b","indices":[93,96]},{"text":"eiga","indices":[97,102]}],"urls":[{"url":"https:\/\/t.co\/C7HFgwUGLJ","expanded_url":"http:\/\/eiga.com\/l\/VnZgB","display_url":"eiga.com\/l\/VnZgB","indices":[69,92]}],"user_mentions":[],"symbols":[],"media":[{"id":663725263730020352,"id_str":"663725263730020352","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","url":"https:\/\/t.co\/tpqJtOYsE8","display_url":"pic.twitter.com\/tpqJtOYsE8","expanded_url":"http:\/\/twitter.com\/eigacom\/status\/663725266187882496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":461,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725263730020352,"id_str":"663725263730020352","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","url":"https:\/\/t.co\/tpqJtOYsE8","display_url":"pic.twitter.com\/tpqJtOYsE8","expanded_url":"http:\/\/twitter.com\/eigacom\/status\/663725266187882496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":461,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6620\u753b","indices":[106,109]},{"text":"eiga","indices":[110,115]}],"urls":[{"url":"https:\/\/t.co\/C7HFgwUGLJ","expanded_url":"http:\/\/eiga.com\/l\/VnZgB","display_url":"eiga.com\/l\/VnZgB","indices":[82,105]}],"user_mentions":[{"screen_name":"eigacom","name":"\u6620\u753b.com","id":7550252,"id_str":"7550252","indices":[3,11]}],"symbols":[],"media":[{"id":663725263730020352,"id_str":"663725263730020352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","url":"https:\/\/t.co\/tpqJtOYsE8","display_url":"pic.twitter.com\/tpqJtOYsE8","expanded_url":"http:\/\/twitter.com\/eigacom\/status\/663725266187882496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":461,"resize":"fit"}},"source_status_id":663725266187882496,"source_status_id_str":"663725266187882496","source_user_id":7550252,"source_user_id_str":"7550252"}]},"extended_entities":{"media":[{"id":663725263730020352,"id_str":"663725263730020352","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGnF0UkAAKRhE.jpg","url":"https:\/\/t.co\/tpqJtOYsE8","display_url":"pic.twitter.com\/tpqJtOYsE8","expanded_url":"http:\/\/twitter.com\/eigacom\/status\/663725266187882496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":461,"resize":"fit"}},"source_status_id":663725266187882496,"source_status_id_str":"663725266187882496","source_user_id":7550252,"source_user_id_str":"7550252"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804270276608,"id_str":"663727804270276608","text":"RT @TommoPhoebe: Massive follow spree in two hours\ud83d\ude01 Xxx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535183437,"id_str":"535183437","name":"Mitha","screen_name":"mitrantianindya","location":null,"url":"http:\/\/ask.fm\/mitrantianindya","description":"Bubble middle pupple\u2665\u2661\u2600","protected":false,"verified":false,"followers_count":1403,"friends_count":1002,"listed_count":4,"favourites_count":4530,"statuses_count":21930,"created_at":"Sat Mar 24 07:16:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563676273340203012\/pP23nq8C.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563676273340203012\/pP23nq8C.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583916315309518848\/6nCf6LPd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583916315309518848\/6nCf6LPd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535183437\/1434990403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:07:38 +0000 2015","id":663402508816117761,"id_str":"663402508816117761","text":"Massive follow spree in two hours\ud83d\ude01 Xxx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495306656,"id_str":"495306656","name":"Phoebe Tomlinson","screen_name":"TommoPhoebe","location":"United Kingdom","url":null,"description":"1\/7 siblings Xx","protected":false,"verified":false,"followers_count":452179,"friends_count":22223,"listed_count":1123,"favourites_count":108,"statuses_count":114,"created_at":"Fri Feb 17 20:37:14 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663392783122698241\/AuwF-2hn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663392783122698241\/AuwF-2hn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495306656\/1446062870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":924,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TommoPhoebe","name":"Phoebe Tomlinson","id":495306656,"id_str":"495306656","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014661"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804274507776,"id_str":"663727804274507776","text":"@kumatyans025 \u3059\u3054\u3044\u523a\u3055\u3063\u3066\u307e\u3059\u3082\u3093\u306dwww\n\n\u9078\u51fa\u6bb5\u968e\u3067\u3053\u308c\u306f\u3044\u3051\u305f\u611f\u534a\u7aef\u306a\u304b\u3063\u305f\u3067\u3059ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727634946260992,"in_reply_to_status_id_str":"663727634946260992","in_reply_to_user_id":3144406084,"in_reply_to_user_id_str":"3144406084","in_reply_to_screen_name":"kumatyans025","user":{"id":608115699,"id_str":"608115699","name":"\u307f\u304d\u3077\u308b@\u4f11\u6687","screen_name":"m_Pru_Ne","location":"S9(2042).S10(2031).S11(1985)","url":null,"description":"\u30dd\u30b1\u30e2\u30f3\/\u767d\u732b \u30ac\u30c1\u5bfe\u6226\u306fORAS\u304b\u3089\u3002\u6700\u8fd1\u767d\u732b\u591a\u3081\u3002\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u3002S11\u306f\u5f15\u9000\u3057\u3066\u307e\u3057\u305f() \u30d8\u30c3\u30c0\u30fc(@pityan7516)","protected":false,"verified":false,"followers_count":272,"friends_count":262,"listed_count":10,"favourites_count":5120,"statuses_count":8704,"created_at":"Thu Jun 14 10:50:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663661816594063360\/kernVa4-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663661816594063360\/kernVa4-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608115699\/1444984731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kumatyans025","name":"kuma\uff20\u65b0pt\u306b\u82e6\u6226","id":3144406084,"id_str":"3144406084","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014662"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804261904384,"id_str":"663727804261904384","text":"RT @ShoesSteals: https:\/\/t.co\/Sa1zqW4csb #auction #shoes AIR JORDAN 2 II BLACK INFRARED RETRO SIZE 13 MENS https:\/\/t.co\/r3ASyOhXZR","source":"\u003ca href=\"http:\/\/myong73345.weebly.com\" rel=\"nofollow\"\u003eMyong7334510468\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4015794869,"id_str":"4015794869","name":"Myong Mummert","screen_name":"Myong73345","location":null,"url":null,"description":"Painter \u2736 Love promoting authors \u2736 Instructional Coach \u2736 Health Promoter","protected":false,"verified":false,"followers_count":3,"friends_count":45,"listed_count":0,"favourites_count":2,"statuses_count":20,"created_at":"Thu Oct 22 09:04:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657121078096076800\/bqOt3w4Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657121078096076800\/bqOt3w4Q_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433791746048,"id_str":"663727433791746048","text":"https:\/\/t.co\/Sa1zqW4csb #auction #shoes AIR JORDAN 2 II BLACK INFRARED RETRO SIZE 13 MENS https:\/\/t.co\/r3ASyOhXZR","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3296589073,"id_str":"3296589073","name":"Just Found It","screen_name":"ShoesSteals","location":"Raulex","url":null,"description":"vidi veni vici... Fine kicks, shoes and gear.","protected":false,"verified":false,"followers_count":78,"friends_count":37,"listed_count":37,"favourites_count":84,"statuses_count":218153,"created_at":"Mon Jul 27 01:31:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625479232882257920\/zJUq6TOE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625479232882257920\/zJUq6TOE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3296589073\/1437960923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"auction","indices":[24,32]},{"text":"shoes","indices":[33,39]}],"urls":[{"url":"https:\/\/t.co\/Sa1zqW4csb","expanded_url":"http:\/\/ift.tt\/1PkDVYt","display_url":"ift.tt\/1PkDVYt","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727433573646336,"id_str":"663727433573646336","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","url":"https:\/\/t.co\/r3ASyOhXZR","display_url":"pic.twitter.com\/r3ASyOhXZR","expanded_url":"http:\/\/twitter.com\/ShoesSteals\/status\/663727433791746048\/photo\/1","type":"photo","sizes":{"small":{"w":105,"h":140,"resize":"fit"},"large":{"w":105,"h":140,"resize":"fit"},"medium":{"w":105,"h":140,"resize":"fit"},"thumb":{"w":105,"h":140,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727433573646336,"id_str":"663727433573646336","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","url":"https:\/\/t.co\/r3ASyOhXZR","display_url":"pic.twitter.com\/r3ASyOhXZR","expanded_url":"http:\/\/twitter.com\/ShoesSteals\/status\/663727433791746048\/photo\/1","type":"photo","sizes":{"small":{"w":105,"h":140,"resize":"fit"},"large":{"w":105,"h":140,"resize":"fit"},"medium":{"w":105,"h":140,"resize":"fit"},"thumb":{"w":105,"h":140,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"auction","indices":[41,49]},{"text":"shoes","indices":[50,56]}],"urls":[{"url":"https:\/\/t.co\/Sa1zqW4csb","expanded_url":"http:\/\/ift.tt\/1PkDVYt","display_url":"ift.tt\/1PkDVYt","indices":[17,40]}],"user_mentions":[{"screen_name":"ShoesSteals","name":"Just Found It","id":3296589073,"id_str":"3296589073","indices":[3,15]}],"symbols":[],"media":[{"id":663727433573646336,"id_str":"663727433573646336","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","url":"https:\/\/t.co\/r3ASyOhXZR","display_url":"pic.twitter.com\/r3ASyOhXZR","expanded_url":"http:\/\/twitter.com\/ShoesSteals\/status\/663727433791746048\/photo\/1","type":"photo","sizes":{"small":{"w":105,"h":140,"resize":"fit"},"large":{"w":105,"h":140,"resize":"fit"},"medium":{"w":105,"h":140,"resize":"fit"},"thumb":{"w":105,"h":140,"resize":"crop"}},"source_status_id":663727433791746048,"source_status_id_str":"663727433791746048","source_user_id":3296589073,"source_user_id_str":"3296589073"}]},"extended_entities":{"media":[{"id":663727433573646336,"id_str":"663727433573646336","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIlZHWwAAvdo-.jpg","url":"https:\/\/t.co\/r3ASyOhXZR","display_url":"pic.twitter.com\/r3ASyOhXZR","expanded_url":"http:\/\/twitter.com\/ShoesSteals\/status\/663727433791746048\/photo\/1","type":"photo","sizes":{"small":{"w":105,"h":140,"resize":"fit"},"large":{"w":105,"h":140,"resize":"fit"},"medium":{"w":105,"h":140,"resize":"fit"},"thumb":{"w":105,"h":140,"resize":"crop"}},"source_status_id":663727433791746048,"source_status_id_str":"663727433791746048","source_user_id":3296589073,"source_user_id_str":"3296589073"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804257701888,"id_str":"663727804257701888","text":"\u904e\u53bb\u306e\u30a4\u30d9\u30f3\u30c8\u3000\u9577\u671f\u512a\u826f\u4f4f\u5b85\u4ed5\u69d8\u3068\u306a\u3063\u3066\u3044\u308b\u306e\u3067\u3059\uff01\uff01\u3000https:\/\/t.co\/M0sHFJLa1x","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":438162615,"id_str":"438162615","name":"aichi_nakaken_pr","screen_name":"aichi_nakaken_p","location":null,"url":"http:\/\/www.nakakenn.co.jp\/","description":"\u4ef2\u5efa\u8a2d\u682a\u5f0f\u4f1a\u793e-\u611b\u77e5\u770c\u540d\u53e4\u5c4b\u5e02\u8fd1\u90ca\u3067\u81ea\u7136\u306e\u529b\u3068\u7d20\u6750\u3092\u6d3b\u304b\u3057\u305f\u6728\u306e\u5bb6\u3092\u3064\u304f\u308b\u5de5\u52d9\u5e97\r\nPR\u7528\u306ebot\u3067\u3059\u3002\u8208\u5473\u3092\u6301\u3063\u3066\u9802\u3044\u305f\u65b9\u306f\u304a\u6c17\u8efd\u306b\u5f0a\u793eHP\u3092\u5fa1\u89a7\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":205,"friends_count":226,"listed_count":1,"favourites_count":0,"statuses_count":66021,"created_at":"Fri Dec 16 07:53:51 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1711247960\/c3d9c785_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1711247960\/c3d9c785_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M0sHFJLa1x","expanded_url":"http:\/\/www.nakakenn.co.jp\/past_event.php?page=2","display_url":"nakakenn.co.jp\/past_event.php\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014658"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804291248129,"id_str":"663727804291248129","text":"RT @trutherbotred: Sunshine is the most efficient Vitamin D source. If you're fair skinned, you can make up to 20,000 IUs in a half hour of\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721423477,"id_str":"721423477","name":"Sabrina's Boyfriend","screen_name":"_Vntichrist","location":"36 Chambers with Sabrina","url":null,"description":"#Hollowsquad \u262f DOOM Is For The Children \u262f","protected":false,"verified":false,"followers_count":600,"friends_count":394,"listed_count":6,"favourites_count":21523,"statuses_count":36188,"created_at":"Sat Jul 28 03:43:33 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440683105104310274\/QwzxcSVy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440683105104310274\/QwzxcSVy.jpeg","profile_background_tile":true,"profile_link_color":"0823CF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660701614206922752\/CGC6ewgf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660701614206922752\/CGC6ewgf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721423477\/1447074188","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:01 +0000 2015","id":663725233774268416,"id_str":"663725233774268416","text":"Sunshine is the most efficient Vitamin D source. If you're fair skinned, you can make up to 20,000 IUs in a half hour of full body exposure.","source":"\u003ca href=\"https:\/\/trutherbot.com\/\" rel=\"nofollow\"\u003etrutherbotred\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264243333,"id_str":"264243333","name":"trutherbotred","screen_name":"trutherbotred","location":null,"url":"http:\/\/trutherbot.com","description":"red team go","protected":false,"verified":false,"followers_count":15664,"friends_count":7691,"listed_count":149,"favourites_count":9,"statuses_count":14629,"created_at":"Fri Mar 11 15:44:23 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615252098955915264\/GeqgMf0__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615252098955915264\/GeqgMf0__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264243333\/1435522221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trutherbotred","name":"trutherbotred","id":264243333,"id_str":"264243333","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014666"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804266213376,"id_str":"663727804266213376","text":"RT @magicaljezebel: how does it feel when you see her upload a thirst trap onhere after she sent it to you first?","source":"\u003ca href=\"http:\/\/www.leonardofurio.com\" rel=\"nofollow\"\u003eDomandePerTuttiBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19017283,"id_str":"19017283","name":"QuestionForAll","screen_name":"questionforall","location":"World","url":null,"description":"Random Re-tweet from the best questions of twitter, do you play ? @questionforall","protected":false,"verified":false,"followers_count":4381,"friends_count":131,"listed_count":762,"favourites_count":13,"statuses_count":417576,"created_at":"Thu Jan 15 10:14:07 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562889067864420352\/JvJA1XLG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562889067864420352\/JvJA1XLG.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620280104472702976\/IvG_VnNy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620280104472702976\/IvG_VnNy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19017283\/1436721366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727667909259264,"id_str":"663727667909259264","text":"how does it feel when you see her upload a thirst trap onhere after she sent it to you first?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1385410291,"id_str":"1385410291","name":"$","screen_name":"magicaljezebel","location":"searching. ","url":null,"description":"healer . lightworker .","protected":false,"verified":false,"followers_count":241,"friends_count":70,"listed_count":7,"favourites_count":680,"statuses_count":111552,"created_at":"Sat Apr 27 20:29:00 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/443389425276297217\/vphf9Hgg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/443389425276297217\/vphf9Hgg.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"CA09F0","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662873345671741440\/njJ6Fs5q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662873345671741440\/njJ6Fs5q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1385410291\/1444842852","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"magicaljezebel","name":"$","id":1385410291,"id_str":"1385410291","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014660"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287062016,"id_str":"663727804287062016","text":"\u30a6\u30c3\u30c3\u30c3\u30c3\u30c3\u30c3\u30c3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989809438,"id_str":"2989809438","name":"\u87fb","screen_name":"maaiyrui7812","location":null,"url":"http:\/\/pixiv.me\/questeight08","description":"\u4f4e\u6d6e\u4e0a\u6c17\u5473(\u3068\u8a00\u3044\u3064\u3064\u3051\u3063\u3053\u3046\u3044\u308b( \u02c6 \u02c6 )) \uff0a\u8150\u3063\u3066\u308b \uff0a\u5f71\u65e5 \u83c5\u65e5 \u6708\u65e5 \u7814+\u65e5 \u8f5f\u51fa \u51fa\u52dd\u51fa \u30ab\u30c4\u30e4\u30df\/\u52a0\u5dde \u8840\u754c\u6226\u7dda\u3068\u9ed2\u30d0\u30b9\u306b\u308f\u304b\uff0a\u65e5\u5411\u7fd4\u967d\u306b\u304f\u304e\u3065\u3051 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093 \u3075\u3041\u307cRT\u3044\u3063\u3071\u3044\u3057\u307e\u3059\u2026","protected":false,"verified":false,"followers_count":45,"friends_count":95,"listed_count":0,"favourites_count":1994,"statuses_count":2970,"created_at":"Mon Jan 19 12:53:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660865939001380864\/vh7LwglR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660865939001380864\/vh7LwglR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989809438\/1446649980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804287094784,"id_str":"663727804287094784","text":"@SitiZafyrah model antik","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":433276743,"in_reply_to_user_id_str":"433276743","in_reply_to_screen_name":"SitiZafyrah","user":{"id":4179832213,"id_str":"4179832213","name":"sha","screen_name":"tnurshahirahh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":52,"listed_count":0,"favourites_count":0,"statuses_count":9,"created_at":"Mon Nov 09 13:49:06 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716258286665728\/4xZvorVl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716258286665728\/4xZvorVl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179832213\/1447077391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SitiZafyrah","name":"SZafyraa","id":433276743,"id_str":"433276743","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080014665"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804274442240,"id_str":"663727804274442240","text":"RT @FoodPornsx: Need these in my life rn https:\/\/t.co\/V7CTmLZvA4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619690899,"id_str":"619690899","name":"\u3147\u3148","screen_name":"_OfficialAmirah","location":"\ubbd5\uc9c0's","url":"http:\/\/cafe.daum.net\/apink","description":"\ucd08\ub871 \uc5b8\ub2c8 \ubcf4\uace0\uc2f6\ub2e4","protected":false,"verified":false,"followers_count":1630,"friends_count":1630,"listed_count":8,"favourites_count":5156,"statuses_count":25225,"created_at":"Wed Jun 27 02:42:24 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594396338722209792\/-yMYY6MQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594396338722209792\/-yMYY6MQ.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659006169285963776\/qGIkciyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659006169285963776\/qGIkciyv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619690899\/1445153467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 07:07:03 +0000 2015","id":660352267321794560,"id_str":"660352267321794560","text":"Need these in my life rn https:\/\/t.co\/V7CTmLZvA4","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1130356441,"id_str":"1130356441","name":"Food Porn","screen_name":"FoodPornsx","location":null,"url":"https:\/\/www.facebook.com\/FoodPornx","description":"ood food glorious food. Follow me and i promise to make you hungry!","protected":false,"verified":false,"followers_count":626858,"friends_count":1,"listed_count":1352,"favourites_count":0,"statuses_count":62097,"created_at":"Tue Jan 29 07:38:57 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422761529549660161\/Sp2ByU1f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422761529549660161\/Sp2ByU1f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1130356441\/1388753311","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1559,"favorite_count":838,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":574607038489096192,"id_str":"574607038489096192","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","url":"https:\/\/t.co\/V7CTmLZvA4","display_url":"pic.twitter.com\/V7CTmLZvA4","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/574607039076397056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":577,"resize":"fit"},"medium":{"w":599,"h":577,"resize":"fit"}},"source_status_id":574607039076397056,"source_status_id_str":"574607039076397056","source_user_id":834316544,"source_user_id_str":"834316544"}]},"extended_entities":{"media":[{"id":574607038489096192,"id_str":"574607038489096192","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","url":"https:\/\/t.co\/V7CTmLZvA4","display_url":"pic.twitter.com\/V7CTmLZvA4","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/574607039076397056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":577,"resize":"fit"},"medium":{"w":599,"h":577,"resize":"fit"}},"source_status_id":574607039076397056,"source_status_id_str":"574607039076397056","source_user_id":834316544,"source_user_id_str":"834316544"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FoodPornsx","name":"Food Porn","id":1130356441,"id_str":"1130356441","indices":[3,14]}],"symbols":[],"media":[{"id":574607038489096192,"id_str":"574607038489096192","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","url":"https:\/\/t.co\/V7CTmLZvA4","display_url":"pic.twitter.com\/V7CTmLZvA4","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/574607039076397056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":577,"resize":"fit"},"medium":{"w":599,"h":577,"resize":"fit"}},"source_status_id":574607039076397056,"source_status_id_str":"574607039076397056","source_user_id":834316544,"source_user_id_str":"834316544"}]},"extended_entities":{"media":[{"id":574607038489096192,"id_str":"574607038489096192","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B_lqDp6U8AA2R8W.jpg","url":"https:\/\/t.co\/V7CTmLZvA4","display_url":"pic.twitter.com\/V7CTmLZvA4","expanded_url":"http:\/\/twitter.com\/ItsFoodPorn\/status\/574607039076397056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":577,"resize":"fit"},"medium":{"w":599,"h":577,"resize":"fit"}},"source_status_id":574607039076397056,"source_status_id_str":"574607039076397056","source_user_id":834316544,"source_user_id_str":"834316544"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080014662"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804261883905,"id_str":"663727804261883905","text":"@Jumplove59Kkkk \n\u30ea\u30a2\u30eb\u30ea\u30a2\u30eb\ud83c\udfb6\n\ud83d\udc3c\u3067\u79c1\u306f\ud83d\udc30(*\u02ca\u0ae2\u1d55\u02cb\u0ae2*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726130805932032,"in_reply_to_status_id_str":"663726130805932032","in_reply_to_user_id":2938294584,"in_reply_to_user_id_str":"2938294584","in_reply_to_screen_name":"Jumplove59Kkkk","user":{"id":3228091489,"id_str":"3228091489","name":"\u3086 \u304d","screen_name":"HbBxDOJqrDqBt9L","location":"\u2323\u0308\u20dd \u2661 \u2323\u0308\u20dd\u604b\u306e\u5b63\u7bc0\u306a16\u6b73\u2323\u0308\u20dd \u2661 \u2323\u0308\u20dd \u2661","url":null,"description":"\uff4d\uff47\u2776\u30d0\u30c8\u90e8\u24c2\ufe0e\uff1aEXO\uff1a\u2729\u30b8\u30e7\u30f3\u30b0\u30af\u2729\uff1a\u7b11\u3046\u3053\u3068\u597d\u304d\u3014follow me\u266a\u3015short hair\u2600\ufe0e :\u97d3\u56fd #bts #TARO","protected":false,"verified":false,"followers_count":259,"friends_count":244,"listed_count":0,"favourites_count":189,"statuses_count":230,"created_at":"Wed May 27 09:10:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660109700868890624\/LXmsAJFo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660109700868890624\/LXmsAJFo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228091489\/1445603826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jumplove59Kkkk","name":"\u3086\u3046","id":2938294584,"id_str":"2938294584","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804262035456,"id_str":"663727804262035456","text":"Me levante reee pila amigo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3209688442,"id_str":"3209688442","name":"Ivaan","screen_name":"Rivero14_ivan99","location":"Vicente L\u00f3pez, Argentina","url":null,"description":"RIVER Y NADA MAS \u2764\u2764\u2764\n1126564338","protected":false,"verified":false,"followers_count":1150,"friends_count":1150,"listed_count":1,"favourites_count":6329,"statuses_count":15320,"created_at":"Sun Apr 26 21:44:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594005862881988609\/4fquVbGk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594005862881988609\/4fquVbGk.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660671894820139008\/Hb7Xs1Hi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660671894820139008\/Hb7Xs1Hi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3209688442\/1441931489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804270313473,"id_str":"663727804270313473","text":"\u56db\u6642\u9593\u534a\u3082\u901a\u8a71\u3057\u305f\u306e\u521d\u3081\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2913322004,"id_str":"2913322004","name":"\u3082\u3082\u306e\u3093@15NO\u8e0a\u305f\u3060\u306e\u3093\u63a8\u3057","screen_name":"momo_nozomilove","location":"\u5e0c\u3057\u304b","url":"http:\/\/twpf.jp\/momo_nozomilove","description":"\u5e0c\u63a8\u3057 \u5e0c\u304c\u5927\u597d\u304d\u3067\u3059\u3002 \u305f\u3060\u306e\u3093\/\u30e9\u30d6\u30de\u30c4\/\u79c1\u3068\u8c46\/13\/\u4eee\u9762\u30e9\u30a4\u30a2\u30fc217\/\u3074\u3088\u306b\u3053\/\u305c\u3042\u3089\u308b\u3002\/\u767d\u670d\/\u305d\u3089\u308b\/\u3073\u3059\/\u6700\u7d42\u5175\u5668\u4ffa\u9054\/\u30ec\u30c8\u30eb\u30c8 NinEfeVeR \u30b7\u30e5\u30ea\u30c3\u30c8 NONZ \u76f8\u65b9\u2026@2b9Mu \u30b5\u30e0\u30cd\u306f\u5927\u597d\u304d\u306a\u5e0c\u3068\u2026@FS_NonTaN","protected":false,"verified":false,"followers_count":491,"friends_count":865,"listed_count":19,"favourites_count":55580,"statuses_count":27936,"created_at":"Sat Nov 29 04:38:49 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657828078324838400\/PyGnQNDe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657828078324838400\/PyGnQNDe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913322004\/1445874313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014661"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804253532165,"id_str":"663727804253532165","text":"@miratys_25 \u307f\u3089\u3055\u3093\u3001\u30b2\u30fc\u30e0\u3057\u306a\u3044\u306e\uff1f","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727320042049536,"in_reply_to_status_id_str":"663727320042049536","in_reply_to_user_id":970120194,"in_reply_to_user_id_str":"970120194","in_reply_to_screen_name":"miratys_25","user":{"id":158422040,"id_str":"158422040","name":"\u8c46\u4e73@\u8266\u3053\u308c\u59cb\u3081\u3066\u307f\u307e\u3057\u305f","screen_name":"tou_new","location":"\u5bcc\u58eb\u5c71\u304c\u898b\u3048\u308b\u3068\u3053\u308d","url":null,"description":"\u30cb\u30b3\u751f\u30ea\u30b9\u30ca\u30fc\u304c\u30e1\u30a4\u30f3\u6d3b\u52d5\u2026\u304b\u306a\u3002 \u305f\u307e\u306b\u30ad\u30e3\u30e9\u30c1\u30e7\u30b3\u4f5c\u3063\u3066\u307e\u3059\u3002 \u3084\u3063\u3071key\u4f5c\u54c1\u306f\u3044\u3044\u306a\u3041\u301c\n\u6700\u8fd1\u9903\u5b50\u306b\u30cf\u30de\u3063\u3066\u307e\u3059(\uffe3\u30fc\uffe3)\u266a","protected":false,"verified":false,"followers_count":272,"friends_count":472,"listed_count":15,"favourites_count":224,"statuses_count":27850,"created_at":"Tue Jun 22 17:06:22 +0000 2010","utc_offset":43200,"time_zone":"Kamchatka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/117987389\/nagato2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/117987389\/nagato2.jpg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614338846193422336\/5Bd9HI_l_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614338846193422336\/5Bd9HI_l_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miratys_25","name":".\u00b0\u274b\u307f\u3089\u3066\u3043\u3059\u2765\u8d64\u7d44\u512a\u52dd\u304a\u3081\u274b\u00b0.","id":970120194,"id_str":"970120194","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014657"} +{"delete":{"status":{"id":663725606476111873,"id_str":"663725606476111873","user_id":420653034,"user_id_str":"420653034"},"timestamp_ms":"1447080014966"}} +{"delete":{"status":{"id":631504153630474240,"id_str":"631504153630474240","user_id":975388242,"user_id_str":"975388242"},"timestamp_ms":"1447080014943"}} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278816769,"id_str":"663727804278816769","text":"#\u0627\u0644\u062a\u062d\u0631\u064a\u0631 |\u00ab\u0631\u062c\u0627\u0644 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0627\u0644\u0645\u0635\u0631\u064a\u064a\u0646\u00bb: \u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631 \u0627\u0644\u0623\u062c\u0646\u0628\u064a \u062a\u0631\u0627\u062c\u0639 \u0644\u0644\u0646\u0635\u0641 \u0641\u064a \u0639\u0647\u062f #\u0627\u0644\u0633\u064a\u0633\u064a\nhttps:\/\/t.co\/utZraFg0ly\n #tahrirnews https:\/\/t.co\/IkxPW58SKa","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325833975,"id_str":"325833975","name":"Tahrir News","screen_name":"Tahrir_News","location":null,"url":"http:\/\/www.tahrirnews.com","description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0644\u062c\u0631\u064a\u062f\u0629 \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0639\u0644\u0649 \u0645\u0648\u0642\u0639 \u062a\u0648\u064a\u062a\u0631.","protected":false,"verified":true,"followers_count":2210201,"friends_count":2,"listed_count":4645,"favourites_count":9,"statuses_count":344641,"created_at":"Tue Jun 28 23:16:32 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/722019075\/2419d56ac37a0854d23e0edcaa12d313.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/722019075\/2419d56ac37a0854d23e0edcaa12d313.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1418118960\/01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1418118960\/01_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062a\u062d\u0631\u064a\u0631","indices":[0,8]},{"text":"\u0627\u0644\u0633\u064a\u0633\u064a","indices":[72,79]},{"text":"tahrirnews","indices":[105,116]}],"urls":[{"url":"https:\/\/t.co\/utZraFg0ly","expanded_url":"http:\/\/bit.ly\/1SDnPI4","display_url":"bit.ly\/1SDnPI4","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663727803913936897,"id_str":"663727803913936897","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI68vXIAE17LM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI68vXIAE17LM.jpg","url":"https:\/\/t.co\/IkxPW58SKa","display_url":"pic.twitter.com\/IkxPW58SKa","expanded_url":"http:\/\/twitter.com\/Tahrir_News\/status\/663727804278816769\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727803913936897,"id_str":"663727803913936897","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI68vXIAE17LM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI68vXIAE17LM.jpg","url":"https:\/\/t.co\/IkxPW58SKa","display_url":"pic.twitter.com\/IkxPW58SKa","expanded_url":"http:\/\/twitter.com\/Tahrir_News\/status\/663727804278816769\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080014663"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804270272512,"id_str":"663727804270272512","text":"\u53f3\u773c\u3060\u3051\u5965\u4e8c\u91cd\u306a\u306e\u304c\u611b\u304a\u3057\u3044\u3002\u8033\u304c\u3067\u304b\u3044\u306e\u304c\u611b\u304a\u3057\u3044\u3002\u9f3b\u304c\u5c11\u3057\u3067\u304b\u3081\u306a\u306e\u304c\u611b\u304a\u3057\u3044\u3002\u9996\u306e\u30b7\u30ef\u304c\u611b\u304a\u3057\u3044\u3002\u80a9\u5e45\u611b\u304a\u3057\u3044\u3002\u6d99\u888b\u611b\u304a\u3057\u3044\u3002\u9f3b\u306e\u8fd1\u304f\u306e\u9f3b\u304f\u305d\u307f\u305f\u3044\u306a\u9ed2\u5b50\u3082\u611b\u304a\u3057\u3044\u3002\u53e3\u304c\u30a2\u30eb\u30d1\u30ab\u306a\u306e\u304c\u611b\u304a\u3057\u3044\u3002\u5426\u3001\u5168\u3066\u611b\u304a\u3057\u3044\u3063\u3059\u30c3(^o^) https:\/\/t.co\/6QzLne7cTV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1424238494,"id_str":"1424238494","name":"\u308a\u3087\u3046\u304c\u3055\u3093\u306e\u306a\u3063\u3061\u3083\u3093\u3058\u3085\u30fc\u3059\u00b03","screen_name":"723Ryouga_3","location":"\u308a\u3087\u3046\u304c\u3055\u3093\u306e\u8155\u306e\u4e2d","url":null,"description":"\u308a\u3087\u3046\u304c\u3055\u3093\u306e\u306a\u3063\u3061\u3083\u3093\u30b8\u30e5\u30fc\u30b9\u67a0get\/\u2729\/\u9053\u7523\u5b50\uff18\u53f7\u8eca\u308a\u3087\u3046\u304c\u3055\u3093\u306e\u5168\u3066\u3092\u611b\u3057\u3066\u308b\u30ea\u30a2\u604b(^o^)\u3053\u30fc\u3061\u3083\u3093\u306b\u3082\u6cb8\u304f\u270b\u3067\u3082\u3001\u308a\u3087\u3046\u304c\u3055\u3093\u304cNO.1\/\u4ee3\u3005\u67282days\u53c2\u6226\u62dd\u3093\u3060\u304a\u304b\u3052\u3067\u30a2\u30ea\u30fc\u30ca ( \uff9f\u2200\uff9f)\uff8e\uff9f\uff69\uff01\uff01\u300e\u306a\u3063\u3061\u3083\u3093\u3002\u5fc5\u305a\u4f1a\u3044\u306b\u6765\u3066\uff1f\u300f\uff89\uff9d\uff80\uff9d\u2113\u03c3\u03bd\u0454","protected":false,"verified":false,"followers_count":544,"friends_count":411,"listed_count":84,"favourites_count":2191,"statuses_count":5398,"created_at":"Sun May 12 23:28:07 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658048640364113920\/P6iqBIbo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658048640364113920\/P6iqBIbo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1424238494\/1445725996","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727797437751296,"id_str":"663727797437751296","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6knUYAATvhW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6knUYAATvhW.jpg","url":"https:\/\/t.co\/6QzLne7cTV","display_url":"pic.twitter.com\/6QzLne7cTV","expanded_url":"http:\/\/twitter.com\/723Ryouga_3\/status\/663727804270272512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797437751296,"id_str":"663727797437751296","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6knUYAATvhW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6knUYAATvhW.jpg","url":"https:\/\/t.co\/6QzLne7cTV","display_url":"pic.twitter.com\/6QzLne7cTV","expanded_url":"http:\/\/twitter.com\/723Ryouga_3\/status\/663727804270272512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080014661"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804261863424,"id_str":"663727804261863424","text":"RT @kkGankai: \u0e44\u0e23\u0e49\u0e41\u0e04\u0e1b\u0e0a\u0e31\u0e48\u0e19 \u0e04\u0e37\u0e2d\u0e41\u0e04\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e21\u0e31\u0e19\u0e01\u0e47\u0e1f\u0e34\u0e19\u0e08\u0e19\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e30\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e44\u0e23\u0e25\u0e48\u0e30 \u0e22\u0e34\u0e48\u0e07\u0e1e\u0e19.\u0e19\u0e2d\u0e19\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e2d\u0e35\u0e01 \u0e2b\u0e38\u0e2b\u0e38 \ud83d\ude1a #\u0e15\u0e49\u0e19\u0e40\u0e08\n\ud83d\ude4f Thailand NT Gallery https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1516289377,"id_str":"1516289377","name":"\u2206\u0e14\u0e32\u0e23\u0e35\u0e21\u0e2d\u0e35\u0e21\u0e2d\u0e35\u0e21","screen_name":"AcCe_TLP","location":null,"url":null,"description":"*\u0e04\u0e33\u0e40\u0e15\u0e37\u0e2d\u0e19 : \u0e23\u0e35\u0e17\u0e27\u0e34\u0e15\u0e40\u0e22\u0e2d\u0e30\u0e21\u0e32\u0e01 \/\/\/ \u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e43\u0e08\u0e01\u0e47\u0e2d\u0e31\u0e19\u0e1f\u0e2d\u0e25\u0e44\u0e1b \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2a\u0e30\u0e2a\u0e21\u0e22\u0e2d\u0e14\u0e1f\u0e2d\u0e25 \u0e40\u0e2d\u0e32\u0e17\u0e35\u0e48\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e2a\u0e1a\u0e32\u0e22\u0e43\u0e08\n\u0e1b\u0e2d\u0e25\u0e34\u0e07. \u0e41\u0e19\u0e30\u0e19\u0e33\u0e27\u0e48\u0e32\u0e1f\u0e2d\u0e25\u0e44\u0e27\u0e49\u0e41\u0e25\u0e49\u0e27\u0e1b\u0e34\u0e14\u0e23\u0e35\u0e17\u0e27\u0e34\u0e15\u0e44\u0e14\u0e49\u0e19\u0e30 #\u0e42\u0e0b\u0e19\u0e21\u0e07\u0e01\u0e38\u0e0e","protected":false,"verified":false,"followers_count":146,"friends_count":108,"listed_count":4,"favourites_count":960,"statuses_count":32806,"created_at":"Fri Jun 14 12:17:04 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131617","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000009281017\/48855a78689839ffd1c477a570e0f548.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000009281017\/48855a78689839ffd1c477a570e0f548.jpeg","profile_background_tile":true,"profile_link_color":"FF0066","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706321829498881\/Ey0G0kHI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706321829498881\/Ey0G0kHI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1516289377\/1431272560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:47 +0000 2015","id":663726682335916033,"id_str":"663726682335916033","text":"\u0e44\u0e23\u0e49\u0e41\u0e04\u0e1b\u0e0a\u0e31\u0e48\u0e19 \u0e04\u0e37\u0e2d\u0e41\u0e04\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e21\u0e31\u0e19\u0e01\u0e47\u0e1f\u0e34\u0e19\u0e08\u0e19\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e30\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e44\u0e23\u0e25\u0e48\u0e30 \u0e22\u0e34\u0e48\u0e07\u0e1e\u0e19.\u0e19\u0e2d\u0e19\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e2d\u0e35\u0e01 \u0e2b\u0e38\u0e2b\u0e38 \ud83d\ude1a #\u0e15\u0e49\u0e19\u0e40\u0e08\n\ud83d\ude4f Thailand NT Gallery https:\/\/t.co\/mABALMVqfZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375459437,"id_str":"375459437","name":"\u25cf \u0e01. \u0e01\u0e31 \u0e19` :\u26bd","screen_name":"kkGankai","location":"\u0e17\u0e35\u0e48\u0e17\u0e35\u0e48\u0e2a\u0e1a\u0e32\u0e22\u0e43\u0e08","url":"https:\/\/m.youtube.com\/channel\/UCUqBet4Half3avZs4pm9QVw?noapp=1","description":"TJ #\u0e15\u0e49\u0e19\u0e40\u0e08 \u0e40\u0e1b\u0e47\u0e19\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\u0e23\u0e31\u0e01 CS18 NW13 | support #\u0e01\u0e49\u0e2d\u0e07\u0e15\u0e31\u0e07 \u0e0a\u0e2d\u0e1a\u0e41\u0e0b\u0e30 #\u0e17\u0e38\u0e01\u0e04\u0e19\u0e23\u0e31\u0e01\u0e1a\u0e32\u0e2a ~ Love #\u0e1a\u0e2d\u0e25\u0e44\u0e17\u0e22 \u0e40\u0e0a\u0e35\u0e22\u0e23\u0e4c\u0e17\u0e35\u0e21\u0e0a\u0e32\u0e15\u0e34\u0e44\u0e17\u0e22 | \u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e40\u0e27\u0e34\u0e48\u0e19\u0e40\u0e27\u0e49\u0e2d. \u0e40\u0e19\u0e49\u0e19\u0e2a\u0e32\u0e22\u0e27\u0e32\u0e22 Youtube : KANKAIMI","protected":false,"verified":false,"followers_count":946,"friends_count":338,"listed_count":1,"favourites_count":1097,"statuses_count":31805,"created_at":"Sun Sep 18 05:10:44 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598128905606733825\/EOY2CVie.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598128905606733825\/EOY2CVie.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663511464091582464\/GrFd8mCs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663511464091582464\/GrFd8mCs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375459437\/1446999673","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"\u0e15\u0e49\u0e19\u0e40\u0e08","indices":[85,91]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726655182008321,"id_str":"663726655182008321","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","url":"https:\/\/t.co\/mABALMVqfZ","display_url":"pic.twitter.com\/mABALMVqfZ","expanded_url":"http:\/\/twitter.com\/kkGankai\/status\/663726682335916033\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726655182008321,"id_str":"663726655182008321","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","url":"https:\/\/t.co\/mABALMVqfZ","display_url":"pic.twitter.com\/mABALMVqfZ","expanded_url":"http:\/\/twitter.com\/kkGankai\/status\/663726682335916033\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e15\u0e49\u0e19\u0e40\u0e08","indices":[99,105]}],"urls":[],"user_mentions":[{"screen_name":"kkGankai","name":"\u25cf \u0e01. \u0e01\u0e31 \u0e19` :\u26bd","id":375459437,"id_str":"375459437","indices":[3,12]}],"symbols":[],"media":[{"id":663726655182008321,"id_str":"663726655182008321","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","url":"https:\/\/t.co\/mABALMVqfZ","display_url":"pic.twitter.com\/mABALMVqfZ","expanded_url":"http:\/\/twitter.com\/kkGankai\/status\/663726682335916033\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726682335916033,"source_status_id_str":"663726682335916033","source_user_id":375459437,"source_user_id_str":"375459437"}]},"extended_entities":{"media":[{"id":663726655182008321,"id_str":"663726655182008321","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4FYU8AELC3c.jpg","url":"https:\/\/t.co\/mABALMVqfZ","display_url":"pic.twitter.com\/mABALMVqfZ","expanded_url":"http:\/\/twitter.com\/kkGankai\/status\/663726682335916033\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726682335916033,"source_status_id_str":"663726682335916033","source_user_id":375459437,"source_user_id_str":"375459437"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080014659"} +{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727804278636544,"id_str":"663727804278636544","text":"https:\/\/t.co\/SPXkNP4rwa \uc124\uacf5\uae40\uc9c4\uc6b0\uc591\ud64d\uc9c0\uc1a1\ud55c\uc7a5\ub178\uc784\uac15 https:\/\/t.co\/tgwYzx5FJR","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4143044354,"id_str":"4143044354","name":"\uc804\uc7a5\uc548","screen_name":"dunbracez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4329,"created_at":"Fri Nov 06 06:06:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SPXkNP4rwa","expanded_url":"http:\/\/temporise.in.net\/48123350.html","display_url":"temporise.in.net\/48123350.html","indices":[0,23]},{"url":"https:\/\/t.co\/tgwYzx5FJR","expanded_url":"http:\/\/horse.pw\/index.php?idx=29085348","display_url":"horse.pw\/index.php?idx=\u2026","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080014663"} +{"delete":{"status":{"id":658895693419933696,"id_str":"658895693419933696","user_id":3255720126,"user_id_str":"3255720126"},"timestamp_ms":"1447080015155"}} +{"delete":{"status":{"id":663711098361798656,"id_str":"663711098361798656","user_id":279193981,"user_id_str":"279193981"},"timestamp_ms":"1447080015239"}} +{"delete":{"status":{"id":414235091821686784,"id_str":"414235091821686784","user_id":2224392858,"user_id_str":"2224392858"},"timestamp_ms":"1447080015347"}} +{"delete":{"status":{"id":659981481318727680,"id_str":"659981481318727680","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080015355"}} +{"delete":{"status":{"id":663723643512295424,"id_str":"663723643512295424","user_id":3101133692,"user_id_str":"3101133692"},"timestamp_ms":"1447080015367"}} +{"delete":{"status":{"id":663725988119863297,"id_str":"663725988119863297","user_id":3556751536,"user_id_str":"3556751536"},"timestamp_ms":"1447080015433"}} +{"delete":{"status":{"id":651380729587216384,"id_str":"651380729587216384","user_id":2563358538,"user_id_str":"2563358538"},"timestamp_ms":"1447080015570"}} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464687104,"id_str":"663727808464687104","text":"RT @Luke5SOS: Berlin what's up!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1439108960,"id_str":"1439108960","name":"feija beersma","screen_name":"MissApplause","location":null,"url":null,"description":"you better watch out for the new broken scene kids","protected":false,"verified":false,"followers_count":344,"friends_count":506,"listed_count":5,"favourites_count":7768,"statuses_count":10828,"created_at":"Sat May 18 18:33:59 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"E64C7F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000008186507\/a161ad1564d90432fc208c016ebb7d62.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000008186507\/a161ad1564d90432fc208c016ebb7d62.jpeg","profile_background_tile":true,"profile_link_color":"E64C7F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618780927980867584\/NxzqQRIn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618780927980867584\/NxzqQRIn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1439108960\/1443471880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:23 +0000 2015","id":663702676354547712,"id_str":"663702676354547712","text":"Berlin what's up!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403245020,"id_str":"403245020","name":"Luke Hemmings","screen_name":"Luke5SOS","location":null,"url":null,"description":"Sounds Good Feels Good out now :-)","protected":false,"verified":true,"followers_count":6540203,"friends_count":22347,"listed_count":35706,"favourites_count":198,"statuses_count":7932,"created_at":"Wed Nov 02 06:59:37 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660963373044146176\/Qq0Fph3J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660963373044146176\/Qq0Fph3J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403245020\/1446421865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14666,"favorite_count":25737,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Luke5SOS","name":"Luke Hemmings","id":403245020,"id_str":"403245020","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808460533760,"id_str":"663727808460533760","text":"RT @MrTimZak: Grab my #rhyming #kidsbook #ebook \"The Pig Who Loved to Dig\" #kidlit #teachpreschool #SCBWI #picturebooks https:\/\/t.co\/hEl7tR\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810359281,"id_str":"2810359281","name":"Julia Wild","screen_name":"juliawildauthor","location":null,"url":"http:\/\/www.amazon.co.uk\/Dark-Canvas-Julia-Wild-ebook\/dp\/B00PBAOZY6\/","description":"Award winning Author with 5 published novels, currently reformatting work for e books.","protected":false,"verified":false,"followers_count":741,"friends_count":972,"listed_count":17,"favourites_count":871,"statuses_count":1714,"created_at":"Mon Oct 06 13:59:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531080100637196288\/XJAxgfEi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531080100637196288\/XJAxgfEi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2810359281\/1419264789","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:30 +0000 2015","id":663726866050646016,"id_str":"663726866050646016","text":"Grab my #rhyming #kidsbook #ebook \"The Pig Who Loved to Dig\" #kidlit #teachpreschool #SCBWI #picturebooks https:\/\/t.co\/hEl7tRelPc","source":"\u003ca href=\"http:\/\/www.Feed140.net\" rel=\"nofollow\"\u003efeed_140\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18464059,"id_str":"18464059","name":"Tim Zak","screen_name":"MrTimZak","location":"Sunny Florida","url":"https:\/\/www.amazon.com\/Tim-Zak\/e\/B00QCCJ6YQ","description":"Tim Zak writes #childrensbooks and #rhyming #kids #bedtime stories. Find my #preschool #children #picturebooks for #littlekids about #babyanimals on #Amazon.","protected":false,"verified":false,"followers_count":2782,"friends_count":2882,"listed_count":96,"favourites_count":91,"statuses_count":48265,"created_at":"Tue Dec 30 00:10:12 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538489495096553472\/txAZY7X4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538489495096553472\/txAZY7X4.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFEDF7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538489114224361473\/S9oU5zZv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538489114224361473\/S9oU5zZv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18464059\/1417220757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"rhyming","indices":[8,16]},{"text":"kidsbook","indices":[17,26]},{"text":"ebook","indices":[27,33]},{"text":"kidlit","indices":[61,68]},{"text":"teachpreschool","indices":[69,84]},{"text":"SCBWI","indices":[85,91]},{"text":"picturebooks","indices":[92,105]}],"urls":[{"url":"https:\/\/t.co\/hEl7tRelPc","expanded_url":"http:\/\/clc.li\/q0W","display_url":"clc.li\/q0W","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"rhyming","indices":[22,30]},{"text":"kidsbook","indices":[31,40]},{"text":"ebook","indices":[41,47]},{"text":"kidlit","indices":[75,82]},{"text":"teachpreschool","indices":[83,98]},{"text":"SCBWI","indices":[99,105]},{"text":"picturebooks","indices":[106,119]}],"urls":[{"url":"https:\/\/t.co\/hEl7tRelPc","expanded_url":"http:\/\/clc.li\/q0W","display_url":"clc.li\/q0W","indices":[120,140]}],"user_mentions":[{"screen_name":"MrTimZak","name":"Tim Zak","id":18464059,"id_str":"18464059","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015660"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464703488,"id_str":"663727808464703488","text":"RT @CBItweets: Great to hear from Claire Williams @williamsracing. Let us know how #innovation keeps you ahead #CBI2015 https:\/\/t.co\/T9nZNg\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298544308,"id_str":"3298544308","name":"Devina Patel","screen_name":"Devina_Patel","location":"London, England","url":"http:\/\/www.cbi.org.uk","description":"CBI Marketer (@CBItweets) | Eloquan | Londoner\/New Forester | Work Hard Play Harder | Drink Bubbles. Buy Shoes. Eat Cake. All views are my own.","protected":false,"verified":false,"followers_count":63,"friends_count":79,"listed_count":5,"favourites_count":31,"statuses_count":231,"created_at":"Mon May 25 21:57:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603632417002381313\/AEvNUiST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603632417002381313\/AEvNUiST_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:56 +0000 2015","id":663726469160521728,"id_str":"663726469160521728","text":"Great to hear from Claire Williams @williamsracing. Let us know how #innovation keeps you ahead #CBI2015 https:\/\/t.co\/T9nZNgdg7F","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40010267,"id_str":"40010267","name":"The CBI","screen_name":"CBItweets","location":"London","url":"http:\/\/www.cbi.org.uk","description":"Follow the CBI and be the first to get cutting-edge business \nthinking, economic data and policy reaction from the \nvoice of UK enterprise","protected":false,"verified":false,"followers_count":36695,"friends_count":1830,"listed_count":794,"favourites_count":433,"statuses_count":10920,"created_at":"Thu May 14 14:59:38 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000105465554\/440b9bfbbac424fdaf454bf5eb8e2359.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000105465554\/440b9bfbbac424fdaf454bf5eb8e2359.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460803755877736448\/MRP0xssj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460803755877736448\/MRP0xssj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40010267\/1415718247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[{"text":"innovation","indices":[68,79]},{"text":"CBI2015","indices":[96,104]}],"urls":[],"user_mentions":[{"screen_name":"WilliamsRacing","name":"WILLIAMS RACING","id":90636188,"id_str":"90636188","indices":[35,50]}],"symbols":[],"media":[{"id":663726468711628802,"id_str":"663726468711628802","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","url":"https:\/\/t.co\/T9nZNgdg7F","display_url":"pic.twitter.com\/T9nZNgdg7F","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663726469160521728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726468711628802,"id_str":"663726468711628802","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","url":"https:\/\/t.co\/T9nZNgdg7F","display_url":"pic.twitter.com\/T9nZNgdg7F","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663726469160521728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"innovation","indices":[83,94]},{"text":"CBI2015","indices":[111,119]}],"urls":[],"user_mentions":[{"screen_name":"CBItweets","name":"The CBI","id":40010267,"id_str":"40010267","indices":[3,13]},{"screen_name":"WilliamsRacing","name":"WILLIAMS RACING","id":90636188,"id_str":"90636188","indices":[50,65]}],"symbols":[],"media":[{"id":663726468711628802,"id_str":"663726468711628802","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","url":"https:\/\/t.co\/T9nZNgdg7F","display_url":"pic.twitter.com\/T9nZNgdg7F","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663726469160521728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726469160521728,"source_status_id_str":"663726469160521728","source_user_id":40010267,"source_user_id_str":"40010267"}]},"extended_entities":{"media":[{"id":663726468711628802,"id_str":"663726468711628802","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtOuUwAIBvf7.jpg","url":"https:\/\/t.co\/T9nZNgdg7F","display_url":"pic.twitter.com\/T9nZNgdg7F","expanded_url":"http:\/\/twitter.com\/CBItweets\/status\/663726469160521728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726469160521728,"source_status_id_str":"663726469160521728","source_user_id":40010267,"source_user_id_str":"40010267"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447909888,"id_str":"663727808447909888","text":"RT @Dhami_mazyad: \u0647\u062f\u0641 \u0646\u064a\u0648\u0644\u0632 \u0627\u0648\u0644\u062f \u0628\u0648\u064a\u0632 \u0641\u064a \u0631\u064a\u0641\u064a\u0631 \u0628\u0644\u064a\u062a \u062e\u0631\u0627\u0627\u0627\u0627\u0627\u0627\u0627\u0627\u0641\u064a https:\/\/t.co\/vjohUkmytC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2452485082,"id_str":"2452485082","name":"Tano","screen_name":"Feli_Cabello","location":null,"url":null,"description":"Wpp:1125181011 Snap:felicabelloo Insta:felicabelloo","protected":false,"verified":false,"followers_count":113,"friends_count":151,"listed_count":0,"favourites_count":486,"statuses_count":487,"created_at":"Tue Apr 01 13:58:15 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661959936402956288\/8EIWfd-i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661959936402956288\/8EIWfd-i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2452485082\/1438228979","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:37:35 +0000 2015","id":663485545956442112,"id_str":"663485545956442112","text":"\u0647\u062f\u0641 \u0646\u064a\u0648\u0644\u0632 \u0627\u0648\u0644\u062f \u0628\u0648\u064a\u0632 \u0641\u064a \u0631\u064a\u0641\u064a\u0631 \u0628\u0644\u064a\u062a \u062e\u0631\u0627\u0627\u0627\u0627\u0627\u0627\u0627\u0627\u0641\u064a https:\/\/t.co\/vjohUkmytC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206204377,"id_str":"206204377","name":"\u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0645\u0632\u064a\u062f","screen_name":"Dhami_mazyad","location":null,"url":null,"description":"@intersaudi @Corinthians @inter","protected":false,"verified":false,"followers_count":2681,"friends_count":56,"listed_count":32,"favourites_count":345,"statuses_count":16252,"created_at":"Fri Oct 22 13:47:48 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643088671856566272\/qrP3ayvU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643088671856566272\/qrP3ayvU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206204377\/1442182657","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":28,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vjohUkmytC","expanded_url":"http:\/\/snpy.tv\/1kj4SPy","display_url":"snpy.tv\/1kj4SPy","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vjohUkmytC","expanded_url":"http:\/\/snpy.tv\/1kj4SPy","display_url":"snpy.tv\/1kj4SPy","indices":[65,88]}],"user_mentions":[{"screen_name":"Dhami_mazyad","name":"\u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0645\u0632\u064a\u062f","id":206204377,"id_str":"206204377","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464756742,"id_str":"663727808464756742","text":"RT @CHEMADAFACKA: Nada m\u00e1s que a\u00f1adir. https:\/\/t.co\/WEbBycqCBT","source":"\u003ca href=\"https:\/\/www.vayaputada.com\" rel=\"nofollow\"\u003eDeckfeed 1.0\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463282356,"id_str":"2463282356","name":"Srta. Jager","screen_name":"chicaonemillion","location":" \u2605TROYANOS CADETE\u2605","url":"http:\/\/ask.fm\/imb0rrable_","description":"http:\/\/Instagram.com\/anetxu_0797 http:\/\/Instagram.com\/laura_gb97","protected":false,"verified":false,"followers_count":29479,"friends_count":678,"listed_count":105,"favourites_count":1811,"statuses_count":6108,"created_at":"Fri Apr 25 14:29:23 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658383056684883968\/zeBxsmwk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658383056684883968\/zeBxsmwk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463282356\/1445805475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 14 23:00:54 +0000 2015","id":643560079401328640,"id_str":"643560079401328640","text":"Nada m\u00e1s que a\u00f1adir. https:\/\/t.co\/WEbBycqCBT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402277736,"id_str":"402277736","name":"\u261e\u00bfWHVT'S UP?\u261c","screen_name":"CHEMADAFACKA","location":"TROYANOS CADETE","url":null,"description":"\u2605 Cuenta personal: @chemacalapaca \u2605 \u2605 CONTACTO: chemalopezcar1996@gmail.com \u2605","protected":false,"verified":false,"followers_count":39990,"friends_count":19814,"listed_count":195,"favourites_count":4741,"statuses_count":6739,"created_at":"Mon Oct 31 20:33:12 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662827407917846528\/TQ8xY2NO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662827407917846528\/TQ8xY2NO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402277736\/1446865094","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1533,"favorite_count":965,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WEbBycqCBT","expanded_url":"https:\/\/vine.co\/v\/etXYYgt3qpM","display_url":"vine.co\/v\/etXYYgt3qpM","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WEbBycqCBT","expanded_url":"https:\/\/vine.co\/v\/etXYYgt3qpM","display_url":"vine.co\/v\/etXYYgt3qpM","indices":[39,62]}],"user_mentions":[{"screen_name":"CHEMADAFACKA","name":"\u261e\u00bfWHVT'S UP?\u261c","id":402277736,"id_str":"402277736","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808473092096,"id_str":"663727808473092096","text":"RT @reciteimeninos: 18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2613411057,"id_str":"2613411057","name":"","screen_name":"AhPervertida","location":"SIGO DE VOLTA","url":null,"description":"sambando e divando na cara das inimiga \u270c","protected":false,"verified":false,"followers_count":55219,"friends_count":33002,"listed_count":7,"favourites_count":1603,"statuses_count":436050,"created_at":"Mon Jun 16 06:49:03 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481456174349307904\/JFi2TaG5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481456174349307904\/JFi2TaG5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2613411057\/1403623026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:59 +0000 2015","id":663722454938963968,"id_str":"663722454938963968","text":"18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166356243,"id_str":"3166356243","name":"Meninos","screen_name":"reciteimeninos","location":null,"url":null,"description":"Segue? Sigo todos de volta \u2665","protected":false,"verified":false,"followers_count":70695,"friends_count":15,"listed_count":1,"favourites_count":3,"statuses_count":62868,"created_at":"Tue Apr 14 17:24:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166356243\/1439570584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[84,107]}],"user_mentions":[{"screen_name":"reciteimeninos","name":"Meninos","id":3166356243,"id_str":"3166356243","indices":[3,18]}],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015663"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808452145152,"id_str":"663727808452145152","text":"RT @D7NewsCom: Mengenal George Boole, Peletak Dasar Logika Matematika - https:\/\/t.co\/POlHEI00s0 https:\/\/t.co\/C4XTquk5lA","source":"\u003ca href=\"http:\/\/www.google.co.id\" rel=\"nofollow\"\u003eHadzone Cyber Security\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291948246,"id_str":"3291948246","name":"Ronald","screen_name":"lodronaldpr81","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":167,"friends_count":98,"listed_count":2,"favourites_count":670,"statuses_count":784,"created_at":"Sat Jul 25 06:22:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663655175614169088\/r1u_i9F4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663655175614169088\/r1u_i9F4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291948246\/1447062616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:40 +0000 2015","id":663723887474020352,"id_str":"663723887474020352","text":"Mengenal George Boole, Peletak Dasar Logika Matematika - https:\/\/t.co\/POlHEI00s0 https:\/\/t.co\/C4XTquk5lA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":278161655,"id_str":"278161655","name":"D7NewsCom","screen_name":"D7NewsCom","location":"DKI Jakarta, Indonesia","url":"http:\/\/d7news.com","description":"Portal Berita IPTEK dan Penelitian No. 1. \n\nKirim Laporan, Naskah dan Foto Peristiwa ke Redaksi http:\/\/D7News.com: http:\/\/d7news.com\/kirim-naskah\/","protected":false,"verified":false,"followers_count":42116,"friends_count":36,"listed_count":2,"favourites_count":1,"statuses_count":1924,"created_at":"Wed Apr 06 18:45:16 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645992585102651392\/Z0LjrR8M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645992585102651392\/Z0LjrR8M_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/278161655\/1442851638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":13,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/POlHEI00s0","expanded_url":"http:\/\/d7ne.ws\/1Nodgse","display_url":"d7ne.ws\/1Nodgse","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663723885418774528,"id_str":"663723885418774528","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","url":"https:\/\/t.co\/C4XTquk5lA","display_url":"pic.twitter.com\/C4XTquk5lA","expanded_url":"http:\/\/twitter.com\/D7NewsCom\/status\/663723887474020352\/photo\/1","type":"photo","sizes":{"large":{"w":696,"h":497,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723885418774528,"id_str":"663723885418774528","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","url":"https:\/\/t.co\/C4XTquk5lA","display_url":"pic.twitter.com\/C4XTquk5lA","expanded_url":"http:\/\/twitter.com\/D7NewsCom\/status\/663723887474020352\/photo\/1","type":"photo","sizes":{"large":{"w":696,"h":497,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/POlHEI00s0","expanded_url":"http:\/\/d7ne.ws\/1Nodgse","display_url":"d7ne.ws\/1Nodgse","indices":[72,95]}],"user_mentions":[{"screen_name":"D7NewsCom","name":"D7NewsCom","id":278161655,"id_str":"278161655","indices":[3,13]}],"symbols":[],"media":[{"id":663723885418774528,"id_str":"663723885418774528","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","url":"https:\/\/t.co\/C4XTquk5lA","display_url":"pic.twitter.com\/C4XTquk5lA","expanded_url":"http:\/\/twitter.com\/D7NewsCom\/status\/663723887474020352\/photo\/1","type":"photo","sizes":{"large":{"w":696,"h":497,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663723887474020352,"source_status_id_str":"663723887474020352","source_user_id":278161655,"source_user_id_str":"278161655"}]},"extended_entities":{"media":[{"id":663723885418774528,"id_str":"663723885418774528","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFW3NUAAAIeVW.jpg","url":"https:\/\/t.co\/C4XTquk5lA","display_url":"pic.twitter.com\/C4XTquk5lA","expanded_url":"http:\/\/twitter.com\/D7NewsCom\/status\/663723887474020352\/photo\/1","type":"photo","sizes":{"large":{"w":696,"h":497,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663723887474020352,"source_status_id_str":"663723887474020352","source_user_id":278161655,"source_user_id_str":"278161655"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808460537856,"id_str":"663727808460537856","text":"https:\/\/t.co\/hPg4URMJLG \n\n @Benji_Mascolo @fedefederossi @BenjieFede voi,Parigi...semplicemente incanto! :') je t'aime\ud83d\udc95\n\n#BenjieFedeLettera","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2158791332,"id_str":"2158791332","name":"\u2740 11:11 Benjamin \u2740","screen_name":"stringimiforteJ","location":"ariana & benji follows\u2740","url":"https:\/\/twitter.com\/justinbieber\/status\/443084800555880448","description":"I don't think it's possible to love someone as much as I love you, Justin.","protected":false,"verified":false,"followers_count":4417,"friends_count":5001,"listed_count":6,"favourites_count":5900,"statuses_count":37625,"created_at":"Sun Oct 27 12:23:18 +0000 2013","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432454610972708864\/B0HXyTLp.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432454610972708864\/B0HXyTLp.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663653387439841280\/Z-JnX-iH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663653387439841280\/Z-JnX-iH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2158791332\/1447062271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[121,139]}],"urls":[{"url":"https:\/\/t.co\/hPg4URMJLG","expanded_url":"http:\/\/ln.is\/www.youtube.com\/Xgedi","display_url":"ln.is\/www.youtube.co\u2026","indices":[0,23]}],"user_mentions":[{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[27,41]},{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[42,56]},{"screen_name":"BenjieFede","name":"Benji & Fede","id":2801543019,"id_str":"2801543019","indices":[57,68]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080015660"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468918272,"id_str":"663727808468918272","text":"RT @reciteimeninos: 18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2342668459,"id_str":"2342668459","name":"ADOIECENDO","screen_name":"AdoIescendo","location":null,"url":null,"description":"\u2665 Eu cuido de voc\u00ea, voc\u00ea cuida de mim. \u2665","protected":false,"verified":false,"followers_count":12532,"friends_count":13448,"listed_count":8,"favourites_count":343,"statuses_count":325731,"created_at":"Thu Feb 13 22:31:40 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473321647361900544\/8ag57CyK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473321647361900544\/8ag57CyK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2342668459\/1419658764","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:59 +0000 2015","id":663722454938963968,"id_str":"663722454938963968","text":"18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166356243,"id_str":"3166356243","name":"Meninos","screen_name":"reciteimeninos","location":null,"url":null,"description":"Segue? Sigo todos de volta \u2665","protected":false,"verified":false,"followers_count":70695,"friends_count":15,"listed_count":1,"favourites_count":3,"statuses_count":62868,"created_at":"Tue Apr 14 17:24:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166356243\/1439570584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[84,107]}],"user_mentions":[{"screen_name":"reciteimeninos","name":"Meninos","id":3166356243,"id_str":"3166356243","indices":[3,18]}],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015662"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481525760,"id_str":"663727808481525760","text":"\u2018Vermoorde vrouw wilde emigreren\u2019 \u007btelegraaf\u007d https:\/\/t.co\/nLX4gdhJqy","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3744342073,"id_str":"3744342073","name":"jose clark","screen_name":"joseclark488","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":40,"listed_count":3,"favourites_count":0,"statuses_count":8161,"created_at":"Thu Oct 01 04:49:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649446227881230336\/5Amsrv1c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649446227881230336\/5Amsrv1c_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nLX4gdhJqy","expanded_url":"http:\/\/bit.ly\/1W7F7X4","display_url":"bit.ly\/1W7F7X4","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464613376,"id_str":"663727808464613376","text":"RT @mag0213: \u30ef\u30f3\u30d4\u30fc\u30b9\u6b4c\u821e\u4f0e\u306b\u3066\u3001\u7d20\u6575\u306a\u88c5\u3044\u306e\u65b9\u3092\u767a\u898b\u3002\u305d\u308a\u3083\u58f0\u639b\u3051\u308b\u3067\u3057\u3087\u3063\u3066\u4e8b\u3067\u3001\u5199\u771f\u64ae\u3089\u305b\u3066\u3082\u3089\u3044\u307e\u3057\u305f\uff08UP\u306e\u627f\u8afe\u3082\uff09\u3002\u592a\u7e1e\u306b\u9328\u67c4\u306e\u7740\u7269\u306b\u6d77\u3092\u8d70\u308b\u5e06\u8239\u67c4\u306e\u5e2f\uff01\u3053\u308c\u305e\u30ef\u30f3\u30d4\u6b4c\u821e\u4f0e\u9451\u8cde\u306e\u6b63\u88c5\u3060\u2026\u30ab\u30c3\u30b3\u826f\u3059\u304e\u30fc\uff01\uff01 https:\/\/t.co\/M5EH9IYhSt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141989231,"id_str":"141989231","name":"\u30b3\u30f3\u30c1","screen_name":"konchiemi","location":"\u4e38\u30ce\u5185\u30b5\u30c7\u30a3\u30b9\u30c6\u30a3\u30c3\u30af","url":null,"description":"\u4e2d\u9014\u534a\u7aef\u6210\u4eba\u6e08\u793e\u4f1a\u4eba\u30aa\u30bf\u30af\u3002\u30c4\u30a4\u306f\u65e5\u5e38\u306e\u884c\u304d\u5834\u306e\u7121\u3044\u72ec\u308a\u8a00\u304c\u30e1\u30a4\u30f3\u3067\u3059\u3002\u70c8Rock\u3057\u306a\u304c\u3089\u6700\u8fd1\u9d3b\u9d60\u7d44\u306b\u5165\u308a\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":166,"friends_count":482,"listed_count":9,"favourites_count":2381,"statuses_count":99287,"created_at":"Sun May 09 16:22:42 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/367622236\/on___.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/367622236\/on___.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317883289001984\/npItKfR1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317883289001984\/npItKfR1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141989231\/1444668665","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:13:29 +0000 2015","id":663373782367739904,"id_str":"663373782367739904","text":"\u30ef\u30f3\u30d4\u30fc\u30b9\u6b4c\u821e\u4f0e\u306b\u3066\u3001\u7d20\u6575\u306a\u88c5\u3044\u306e\u65b9\u3092\u767a\u898b\u3002\u305d\u308a\u3083\u58f0\u639b\u3051\u308b\u3067\u3057\u3087\u3063\u3066\u4e8b\u3067\u3001\u5199\u771f\u64ae\u3089\u305b\u3066\u3082\u3089\u3044\u307e\u3057\u305f\uff08UP\u306e\u627f\u8afe\u3082\uff09\u3002\u592a\u7e1e\u306b\u9328\u67c4\u306e\u7740\u7269\u306b\u6d77\u3092\u8d70\u308b\u5e06\u8239\u67c4\u306e\u5e2f\uff01\u3053\u308c\u305e\u30ef\u30f3\u30d4\u6b4c\u821e\u4f0e\u9451\u8cde\u306e\u6b63\u88c5\u3060\u2026\u30ab\u30c3\u30b3\u826f\u3059\u304e\u30fc\uff01\uff01 https:\/\/t.co\/M5EH9IYhSt","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76677721,"id_str":"76677721","name":"mag","screen_name":"mag0213","location":"Tokyo","url":"http:\/\/instagram.com\/mag0213","description":"\u4eac\u90fd\u306b\u751f\u307e\u308c\u3001\u5927\u962a\u3067\u80b2\u3064\u3002\u304f\u3046\u306d\u308b\u3042\u305d\u3076\u306a\u30ca\u30de\u30b1\u30e2\u30ce\u3002Renthead\u3067Hedhead\u306a\u4eba\u3002\u6620\u753b\u306b\u30a2\u30fc\u30c8\u306b\u5efa\u7bc9\u306a\u3069\u306a\u3069\u3002\u3054\u8d14\u5c53\u306f\u677e\u5d8b\u5c4b\u3002\u30c1\u30a7\u30ed\u306f\u304a\u4f11\u307f\u3002\u53ea\u4eca\u3001\u6771\u4eac\u7802\u6f20\u3092\u30af\u30ed\u30fc\u30eb\u4e2d\u3002","protected":false,"verified":false,"followers_count":190,"friends_count":294,"listed_count":7,"favourites_count":323,"statuses_count":7639,"created_at":"Wed Sep 23 15:56:04 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447292323\/110715_010345.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447292323\/110715_010345.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000798067441\/9218fd97c3f832421bd16e6b16f46383_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000798067441\/9218fd97c3f832421bd16e6b16f46383_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76677721\/1350808054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2410,"favorite_count":1240,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M5EH9IYhSt","expanded_url":"https:\/\/instagram.com\/p\/91BQhKtmQN\/","display_url":"instagram.com\/p\/91BQhKtmQN\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M5EH9IYhSt","expanded_url":"https:\/\/instagram.com\/p\/91BQhKtmQN\/","display_url":"instagram.com\/p\/91BQhKtmQN\/","indices":[116,139]}],"user_mentions":[{"screen_name":"mag0213","name":"mag","id":76677721,"id_str":"76677721","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456351748,"id_str":"663727808456351748","text":"RT @BiebsbelIissima: @justinbieber I LOVE YOU https:\/\/t.co\/P6ukPkfzKm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2223447262,"id_str":"2223447262","name":"pai lp #Nov13","screen_name":"INOCENTEDREW","location":"Rio de Janeiro, Brasil","url":"https:\/\/twitter.com\/justinbieber\/status\/1770013181","description":"here for @justinbieber","protected":false,"verified":false,"followers_count":10332,"friends_count":6320,"listed_count":48,"favourites_count":52719,"statuses_count":140684,"created_at":"Fri Dec 13 13:46:43 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560902649243910144\/RJd-6SFV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560902649243910144\/RJd-6SFV.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657326538296328194\/juddxUYd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657326538296328194\/juddxUYd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2223447262\/1445553014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 17:32:55 +0000 2015","id":663046485378928640,"id_str":"663046485378928640","text":"@justinbieber I LOVE YOU https:\/\/t.co\/P6ukPkfzKm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":27260086,"in_reply_to_user_id_str":"27260086","in_reply_to_screen_name":"justinbieber","user":{"id":1637910324,"id_str":"1637910324","name":"#1 Sorry Stan","screen_name":"BiebsbelIissima","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Buy Justin Bieber's Album 'Purpose' On iTunes November 13th (Preorder NOW) 8\/19\/14 & 11\/7\/15","protected":false,"verified":false,"followers_count":5580,"friends_count":1838,"listed_count":18,"favourites_count":7736,"statuses_count":19674,"created_at":"Thu Aug 01 13:04:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657244328050356225\/P9UaPZV6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657244328050356225\/P9UaPZV6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637910324\/1444791921","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17112,"favorite_count":21529,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[0,13]}],"symbols":[],"media":[{"id":663046468492656640,"id_str":"663046468492656640","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","url":"https:\/\/t.co\/P6ukPkfzKm","display_url":"pic.twitter.com\/P6ukPkfzKm","expanded_url":"http:\/\/twitter.com\/BiebsbelIissima\/status\/663046485378928640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":218,"resize":"fit"},"large":{"w":500,"h":218,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663046468492656640,"id_str":"663046468492656640","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","url":"https:\/\/t.co\/P6ukPkfzKm","display_url":"pic.twitter.com\/P6ukPkfzKm","expanded_url":"http:\/\/twitter.com\/BiebsbelIissima\/status\/663046485378928640\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":218,"resize":"fit"},"large":{"w":500,"h":218,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"}},"video_info":{"aspect_ratio":[250,109],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTOdQAgVAAAGQO6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BiebsbelIissima","name":"#1 Sorry Stan","id":1637910324,"id_str":"1637910324","indices":[3,19]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[21,34]}],"symbols":[],"media":[{"id":663046468492656640,"id_str":"663046468492656640","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","url":"https:\/\/t.co\/P6ukPkfzKm","display_url":"pic.twitter.com\/P6ukPkfzKm","expanded_url":"http:\/\/twitter.com\/BiebsbelIissima\/status\/663046485378928640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":218,"resize":"fit"},"large":{"w":500,"h":218,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663046485378928640,"source_status_id_str":"663046485378928640","source_user_id":1637910324,"source_user_id_str":"1637910324"}]},"extended_entities":{"media":[{"id":663046468492656640,"id_str":"663046468492656640","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTOdQAgVAAAGQO6.png","url":"https:\/\/t.co\/P6ukPkfzKm","display_url":"pic.twitter.com\/P6ukPkfzKm","expanded_url":"http:\/\/twitter.com\/BiebsbelIissima\/status\/663046485378928640\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":218,"resize":"fit"},"large":{"w":500,"h":218,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"}},"source_status_id":663046485378928640,"source_status_id_str":"663046485378928640","source_user_id":1637910324,"source_user_id_str":"1637910324","video_info":{"aspect_ratio":[250,109],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTOdQAgVAAAGQO6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464711680,"id_str":"663727808464711680","text":"RT @CanchaChicaPY: \u00bfSab\u00edas que Romerito cant\u00f3 en un Pilsen Rock junto a Revolber? Miralo ac\u00e1 #ArteCCh \u2192 https:\/\/t.co\/ggXtu8hvOM https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190755844,"id_str":"190755844","name":"Juanpa Ramirez","screen_name":"juanpanervio","location":"Asunci\u00f3n","url":"http:\/\/www.facebook.com\/juantiene?fref=ts","description":"Nacido el 11 de abril de 1979 en la ciudad de Asuncion,Paraguay\nBajista\/M\u00fasico en @revolberoficial - Producci\u00f3n en @mandiorama y eso nomas.","protected":false,"verified":false,"followers_count":1244,"friends_count":171,"listed_count":6,"favourites_count":594,"statuses_count":2119,"created_at":"Tue Sep 14 19:20:14 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/877350488\/889877c38dffc16cb08df70df7ac91fe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/877350488\/889877c38dffc16cb08df70df7ac91fe.jpeg","profile_background_tile":false,"profile_link_color":"021C1C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B0AAB0","profile_text_color":"F70818","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000386450722\/6a37c76ea7a0a5ae5bdab4c4d8516dba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000386450722\/6a37c76ea7a0a5ae5bdab4c4d8516dba_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 12:16:12 +0000 2015","id":662242003749613568,"id_str":"662242003749613568","text":"\u00bfSab\u00edas que Romerito cant\u00f3 en un Pilsen Rock junto a Revolber? Miralo ac\u00e1 #ArteCCh \u2192 https:\/\/t.co\/ggXtu8hvOM https:\/\/t.co\/ip7TsMgF3k","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544386626,"id_str":"544386626","name":"Cancha Chica","screen_name":"CanchaChicaPY","location":"Asunci\u00f3n","url":"http:\/\/www.canchachica.com","description":"http:\/\/CANCHACHICA.COM | El lugar de los que no llegamos a Primera.","protected":false,"verified":false,"followers_count":12229,"friends_count":488,"listed_count":28,"favourites_count":3457,"statuses_count":11428,"created_at":"Tue Apr 03 16:02:18 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182661802\/9FW5QrUw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182661802\/9FW5QrUw.png","profile_background_tile":false,"profile_link_color":"33903F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563327153605844992\/m1omA2bT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563327153605844992\/m1omA2bT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544386626\/1423058199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":12,"entities":{"hashtags":[{"text":"ArteCCh","indices":[74,82]}],"urls":[{"url":"https:\/\/t.co\/ggXtu8hvOM","expanded_url":"https:\/\/youtu.be\/ofoI7dAqtjQ","display_url":"youtu.be\/ofoI7dAqtjQ","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":662242002545721344,"id_str":"662242002545721344","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","url":"https:\/\/t.co\/ip7TsMgF3k","display_url":"pic.twitter.com\/ip7TsMgF3k","expanded_url":"http:\/\/twitter.com\/CanchaChicaPY\/status\/662242003749613568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662242002545721344,"id_str":"662242002545721344","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","url":"https:\/\/t.co\/ip7TsMgF3k","display_url":"pic.twitter.com\/ip7TsMgF3k","expanded_url":"http:\/\/twitter.com\/CanchaChicaPY\/status\/662242003749613568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ArteCCh","indices":[93,101]}],"urls":[{"url":"https:\/\/t.co\/ggXtu8hvOM","expanded_url":"https:\/\/youtu.be\/ofoI7dAqtjQ","display_url":"youtu.be\/ofoI7dAqtjQ","indices":[104,127]}],"user_mentions":[{"screen_name":"CanchaChicaPY","name":"Cancha Chica","id":544386626,"id_str":"544386626","indices":[3,17]}],"symbols":[],"media":[{"id":662242002545721344,"id_str":"662242002545721344","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","url":"https:\/\/t.co\/ip7TsMgF3k","display_url":"pic.twitter.com\/ip7TsMgF3k","expanded_url":"http:\/\/twitter.com\/CanchaChicaPY\/status\/662242003749613568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":662242003749613568,"source_status_id_str":"662242003749613568","source_user_id":544386626,"source_user_id_str":"544386626"}]},"extended_entities":{"media":[{"id":662242002545721344,"id_str":"662242002545721344","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDBl7UUwAArJQF.jpg","url":"https:\/\/t.co\/ip7TsMgF3k","display_url":"pic.twitter.com\/ip7TsMgF3k","expanded_url":"http:\/\/twitter.com\/CanchaChicaPY\/status\/662242003749613568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":662242003749613568,"source_status_id_str":"662242003749613568","source_user_id":544386626,"source_user_id_str":"544386626"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485588993,"id_str":"663727808485588993","text":"\u305d\u3046\u3084\u3063\u3066\u60a9\u3093\u3060\u308a\u8003\u3048\u305f\u308a\u3059\u308b\u3053\u3068\u304c\u5897\u3048\u308c\u3070\u5897\u3048\u308b\u307b\u3069\u3001\u30ec\u30d9\u30eb\u30a2\u30c3\u30d7\u3059\u308b\u305f\u3081\u306e\u6750\u6599\u304c\u5897\u3048\u308b\u3063\u3066\u3082\u3093\u3088\u30fc\uff01\u30cf\u30c3\u30cf\u30fc\uff01\u6642\u306b\u306f\u7206\u767a\u3082\u3059\u308b\u3051\u3069\u3002\u4ed5\u4e8b\u3067\u306f\u5f53\u305f\u308a\u6563\u3089\u3059\u3088\u3046\u306a\u30ad\u30c4\u30a4\u8a00\u3044\u65b9\u306f\u3057\u306a\u3044\u3088\u3046\u306b\u306f\u3057\u3066\u308b\u3051\u3069\u3001\u3053\u306e\u9593\u306f\u79c1\u306f\u624b\u304c\u96e2\u305b\u306a\u3044\u3051\u3069\u5f8c\u8f29\u30b9\u30bf\u30c3\u30d5\u30ec\u30b8\u306b\u6c17\u4ed8\u304b\u306a\u3044\u304b\u3089\u2192","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3271966716,"id_str":"3271966716","name":"\u307e\u308d\u3002","screen_name":"21g_im","location":null,"url":null,"description":"\u72ac\/everset\/21g\/ex.Missing Tear\/\u7dcb\u6751\u525b\/Geno\/mi-ya\/12.21\u53c2\u6226\u4e88\u5b9a\/\u7dcb\u6751\u525b\u3055\u3093\u306f\u61a7\u308c\u3001\u5c0a\u656c","protected":false,"verified":false,"followers_count":37,"friends_count":114,"listed_count":1,"favourites_count":5598,"statuses_count":248,"created_at":"Wed Jul 08 15:27:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662628598239522816\/qhgHASg2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662628598239522816\/qhgHASg2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3271966716\/1446817949","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015666"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464756741,"id_str":"663727808464756741","text":"\uff20tos \uff20tos https:\/\/t.co\/rfPoZzzkge https:\/\/t.co\/Uq9CdZbCNK","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12371162,"in_reply_to_user_id_str":"12371162","in_reply_to_screen_name":"TOS","user":{"id":3318335172,"id_str":"3318335172","name":"\u062e\u60c5\u5f31\u064a\u3057\u3085\u3089\u3081\u308b\u063a","screen_name":"Xx_syura_xX","location":"12\u6642\u9593\u6bce\u306e\u81ea\u52d5\u30d5\u30a9\u30ed\u30d0\u4ed8\u3051\u307e\u3057\u305f","url":"http:\/\/syurameru.wix.com\/45451919","description":"\u50d5\u306f\u60aa\u304f\u306a\u3044WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW","protected":false,"verified":false,"followers_count":3037,"friends_count":3030,"listed_count":58,"favourites_count":30734,"statuses_count":114793,"created_at":"Tue Aug 18 05:49:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641292711710978048\/euBNZ68Y.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641292711710978048\/euBNZ68Y.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653156456024281088\/y5L3Py-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653156456024281088\/y5L3Py-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318335172\/1441880872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663723827956989952,"quoted_status_id_str":"663723827956989952","quoted_status":{"created_at":"Mon Nov 09 14:24:26 +0000 2015","id":663723827956989952,"id_str":"663723827956989952","text":"\uff20tos \uff20tos https:\/\/t.co\/tLpHVa8qXY https:\/\/t.co\/Uq9CdZbCNK","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12371162,"in_reply_to_user_id_str":"12371162","in_reply_to_screen_name":"TOS","user":{"id":3318335172,"id_str":"3318335172","name":"\u062e\u60c5\u5f31\u064a\u3057\u3085\u3089\u3081\u308b\u063a","screen_name":"Xx_syura_xX","location":"12\u6642\u9593\u6bce\u306e\u81ea\u52d5\u30d5\u30a9\u30ed\u30d0\u4ed8\u3051\u307e\u3057\u305f","url":"http:\/\/syurameru.wix.com\/45451919","description":"\u50d5\u306f\u60aa\u304f\u306a\u3044WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW","protected":false,"verified":false,"followers_count":3037,"friends_count":3030,"listed_count":58,"favourites_count":30734,"statuses_count":114792,"created_at":"Tue Aug 18 05:49:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641292711710978048\/euBNZ68Y.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641292711710978048\/euBNZ68Y.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653156456024281088\/y5L3Py-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653156456024281088\/y5L3Py-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318335172\/1441880872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720180409901056,"quoted_status_id_str":"663720180409901056","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tLpHVa8qXY","expanded_url":"http:\/\/twitter.com\/Xx_syura_xX\/status\/663720180409901056","display_url":"twitter.com\/Xx_syura_xX\/st\u2026","indices":[10,33]}],"user_mentions":[{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[0,4]},{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[5,9]}],"symbols":[],"media":[{"id":634418377155436545,"id_str":"634418377155436545","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","url":"https:\/\/t.co\/Uq9CdZbCNK","display_url":"pic.twitter.com\/Uq9CdZbCNK","expanded_url":"http:\/\/twitter.com\/_SUMIKUN_\/status\/634418378539556864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":187,"resize":"fit"},"medium":{"w":250,"h":187,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":250,"h":187,"resize":"fit"}},"source_status_id":634418378539556864,"source_status_id_str":"634418378539556864","source_user_id":3318335172,"source_user_id_str":"3318335172"}]},"extended_entities":{"media":[{"id":634418377155436545,"id_str":"634418377155436545","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","url":"https:\/\/t.co\/Uq9CdZbCNK","display_url":"pic.twitter.com\/Uq9CdZbCNK","expanded_url":"http:\/\/twitter.com\/_SUMIKUN_\/status\/634418378539556864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":187,"resize":"fit"},"medium":{"w":250,"h":187,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":250,"h":187,"resize":"fit"}},"source_status_id":634418378539556864,"source_status_id_str":"634418378539556864","source_user_id":3318335172,"source_user_id_str":"3318335172"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rfPoZzzkge","expanded_url":"http:\/\/twitter.com\/Xx_syura_xX\/status\/663723827956989952","display_url":"twitter.com\/Xx_syura_xX\/st\u2026","indices":[10,33]}],"user_mentions":[{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[0,4]},{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[5,9]}],"symbols":[],"media":[{"id":634418377155436545,"id_str":"634418377155436545","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","url":"https:\/\/t.co\/Uq9CdZbCNK","display_url":"pic.twitter.com\/Uq9CdZbCNK","expanded_url":"http:\/\/twitter.com\/_SUMIKUN_\/status\/634418378539556864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":187,"resize":"fit"},"medium":{"w":250,"h":187,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":250,"h":187,"resize":"fit"}},"source_status_id":634418378539556864,"source_status_id_str":"634418378539556864","source_user_id":3318335172,"source_user_id_str":"3318335172"}]},"extended_entities":{"media":[{"id":634418377155436545,"id_str":"634418377155436545","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CM3oJxlUYAEQyjS.jpg","url":"https:\/\/t.co\/Uq9CdZbCNK","display_url":"pic.twitter.com\/Uq9CdZbCNK","expanded_url":"http:\/\/twitter.com\/_SUMIKUN_\/status\/634418378539556864\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":187,"resize":"fit"},"medium":{"w":250,"h":187,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":250,"h":187,"resize":"fit"}},"source_status_id":634418378539556864,"source_status_id_str":"634418378539556864","source_user_id":3318335172,"source_user_id_str":"3318335172"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456343553,"id_str":"663727808456343553","text":"Queria dormi, mais n\u00e3o posso..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302002816,"id_str":"2302002816","name":"Lutoooo \u2795","screen_name":"JoyceElias7","location":"SEGUE VOC\u00ca .","url":null,"description":"Saudades machuca, mais s\u00f3 de lembra do seu sorriso me faz bem, te amo meu eterno amor #LucasFelber ..","protected":false,"verified":false,"followers_count":870,"friends_count":792,"listed_count":0,"favourites_count":3580,"statuses_count":34930,"created_at":"Mon Jan 20 20:49:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F766FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542751678487736321\/xlOmVf6u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542751678487736321\/xlOmVf6u.jpeg","profile_background_tile":true,"profile_link_color":"B30D9A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661558860503715840\/5gTz-fCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661558860503715840\/5gTz-fCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302002816\/1446562896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485548032,"id_str":"663727808485548032","text":"@ysd157 \u805e\u304f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722682853167105,"in_reply_to_status_id_str":"663722682853167105","in_reply_to_user_id":2475468529,"in_reply_to_user_id_str":"2475468529","in_reply_to_screen_name":"ysd157","user":{"id":1963593126,"id_str":"1963593126","name":"*\u5f8b*@\\\u4e8c\u6b21\u30a2\u30a4\u30c9\u30eb\u306b\u6d78\u304b\u308b\/","screen_name":"ritsu214","location":"\u3042\u3093\u307f\u3064\u7d44\u611b\u3067\u308b\u5354\u4f1a","url":null,"description":"S\u30c9\u8150\u3063\u305f\u6210\u4eba\u5973\/\u6b4c\u3044\u624b:\u6d66\u5cf6\u5742\u7530\u8239*\/\u751f\u4e3b:\u3042\u3089\u305f \/LAGRANGEPOINT(\u30ad\u30e9\u63a8)\/\u30de\u30b8#4\/\u2605\/\u30ab\u30ec\u30a4\u30c9\u30a4\u30f4\/\u3068\u3046\u3089\u3076(\u5c71\u57ce\u56fd)\u6025\u8972\u6226\u968a\/\u304a\u5929\u6c17\u6226\u968a\/S+h\u6850\u751f\u958b\u5fd7\/\u30a2\u30a4\u30ca\u30ca\/\u3042\u3093\u30b9\u30bf","protected":false,"verified":false,"followers_count":119,"friends_count":236,"listed_count":1,"favourites_count":4338,"statuses_count":31526,"created_at":"Wed Oct 16 00:00:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652432163049115648\/tyctSud-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652432163049115648\/tyctSud-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1963593126\/1424474952","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ysd157","name":"\u5409\u7530\uff08Lev.99\uff09","id":2475468529,"id_str":"2475468529","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015666"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468795393,"id_str":"663727808468795393","text":"\u307b\u3093\u307e\u306b\u3001\u6587\u3061\u3083\u3093\u306e\u6b4c\u58f0\u597d\u304d\u3084\u308f\n\u30af\u30ea\u30d1\u306e\u3042\u306e\u885d\u6483\u306f\u5fd8\u308c\u3089\u308c\u3078\u3093\n\u307e\u305f\u30af\u30ea\u30d1\u306b\u51fa\u3066\u6b32\u3057\u304b\u3063\u305f\u306a\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1608149401,"id_str":"1608149401","name":"\u306e\u3093\u3053\u263b","screen_name":"minminsemi03","location":"96line\/hyogo","url":null,"description":"\u25b7\u25b7\u22c6\u2730\u8429\u8c37\u6167\u609f\u2730\u22c6\u25c1\u25c1\u3044\u3064\u3067\u3082\u30ab\u30e1\u30e9\u76ee\u7dda\u306a\u30b5\u30e9\u30b5\u30e9\u9ed2\u9aea\u30cf\u30b2\u8c37\u304f\u3093\u3010\u8cb6\u3057\u611b\u3011 \u526f\u62c5\u261e\u6c38\u702c\u5ec9 \u25ce\u6c38\u91ce\u30b3\u30f3\u30d3\u261e\u679c\u6c41\u25ce","protected":false,"verified":false,"followers_count":632,"friends_count":818,"listed_count":4,"favourites_count":1148,"statuses_count":3049,"created_at":"Sat Jul 20 12:09:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627649697923006464\/G8jbHlgz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627649697923006464\/G8jbHlgz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1608149401\/1438478392","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015662"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808473075712,"id_str":"663727808473075712","text":"RT @TAXSTONE: I only got a thing for young bitches with aggression","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727571381694464,"in_reply_to_status_id_str":"663727571381694464","in_reply_to_user_id":70717194,"in_reply_to_user_id_str":"70717194","in_reply_to_screen_name":"TAXSTONE","user":{"id":127281422,"id_str":"127281422","name":"Mr. October","screen_name":"ImSo_Brooklyn","location":"In A Timeline Near You","url":null,"description":"A Charming Asshole\u2026.","protected":false,"verified":false,"followers_count":510,"friends_count":334,"listed_count":13,"favourites_count":345,"statuses_count":136888,"created_at":"Sun Mar 28 17:52:53 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/209904517\/munch_2011_01_22_133324.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/209904517\/munch_2011_01_22_133324.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661803101041631232\/-YcgdQ2s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661803101041631232\/-YcgdQ2s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127281422\/1399616310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TAXSTONE","name":"DADITO CALDERONE","id":70717194,"id_str":"70717194","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015663"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485572608,"id_str":"663727808485572608","text":"RT @cylenaxduran: Being stuck on your ex <","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39664244,"id_str":"39664244","name":"6 God..","screen_name":"I_Hoop_4","location":"Gym,Texas","url":"http:\/\/www.HoopMixtape.Com","description":"Work Hard In Silence, Let Success Make The Noise!","protected":false,"verified":false,"followers_count":2548,"friends_count":435,"listed_count":4,"favourites_count":11845,"statuses_count":49007,"created_at":"Wed May 13 02:18:55 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663495991614554112\/e57DuxJP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663495991614554112\/e57DuxJP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39664244\/1445724099","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727690436874240,"id_str":"663727690436874240","text":"Being stuck on your ex <","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3412851802,"id_str":"3412851802","name":"bae","screen_name":"cylenaxduran","location":"lostinmarissasheart ","url":null,"description":null,"protected":false,"verified":false,"followers_count":431,"friends_count":481,"listed_count":1,"favourites_count":1080,"statuses_count":7494,"created_at":"Mon Aug 10 14:24:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663563658316804096\/srzlDL_V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663563658316804096\/srzlDL_V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3412851802\/1446745456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cylenaxduran","name":"bae","id":3412851802,"id_str":"3412851802","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015666"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481378304,"id_str":"663727808481378304","text":"\u5e73\u5747\u4f53\u91cd\u306f\u305d\u3053\u305d\u3053\u3060\u3051\u3069\u8eab\u9577\u306f\u5927\u5e45\u306b\u4e0a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582977721,"id_str":"582977721","name":"\u2020\u3055\u3055\u304f\u308c\u2020","screen_name":"3390_cross","location":null,"url":"http:\/\/shindanmaker.com\/558417","description":null,"protected":false,"verified":false,"followers_count":71,"friends_count":65,"listed_count":6,"favourites_count":19575,"statuses_count":59931,"created_at":"Thu May 17 15:54:23 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"005CAF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653640552735371264\/B4iN3MTE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653640552735371264\/B4iN3MTE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582977721\/1444675072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808460546048,"id_str":"663727808460546048","text":"RT @reciteimeninos: 18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2613387028,"id_str":"2613387028","name":"\u03df","screen_name":"AhCulpa","location":null,"url":"https:\/\/instagram.com\/seriescitei\/","description":"\u2709 Interesses Publicit\u00e1rios: twitterpublicidades@outlook.com","protected":false,"verified":false,"followers_count":88842,"friends_count":84892,"listed_count":14,"favourites_count":1080,"statuses_count":526147,"created_at":"Mon Jun 16 06:18:04 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1D2021","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/488397403607662593\/0yZzP460.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/488397403607662593\/0yZzP460.jpeg","profile_background_tile":true,"profile_link_color":"212552","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628636804535709697\/n-8ZquyP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628636804535709697\/n-8ZquyP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2613387028\/1431038371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:59 +0000 2015","id":663722454938963968,"id_str":"663722454938963968","text":"18 FOTOS QUE IR\u00c3O MUDAR A FORMA QUE VOC\u00ca OLHA PARA O MUNDO VEJA:https:\/\/t.co\/UcyQAQSAKs https:\/\/t.co\/igQYZXs82h\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166356243,"id_str":"3166356243","name":"Meninos","screen_name":"reciteimeninos","location":null,"url":null,"description":"Segue? Sigo todos de volta \u2665","protected":false,"verified":false,"followers_count":70695,"friends_count":15,"listed_count":1,"favourites_count":3,"statuses_count":62868,"created_at":"Tue Apr 14 17:24:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632230729519378432\/f2NGw_wd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166356243\/1439570584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcyQAQSAKs","expanded_url":"http:\/\/goo.gl\/LD92YN","display_url":"goo.gl\/LD92YN","indices":[84,107]}],"user_mentions":[{"screen_name":"reciteimeninos","name":"Meninos","id":3166356243,"id_str":"3166356243","indices":[3,18]}],"symbols":[],"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"extended_entities":{"media":[{"id":602093264255242240,"id_str":"602093264255242240","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFsQokGW0AADJLM.jpg","url":"https:\/\/t.co\/igQYZXs82h","display_url":"pic.twitter.com\/igQYZXs82h","expanded_url":"http:\/\/twitter.com\/AhPervertida\/status\/602093289798574080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":892,"resize":"fit"},"large":{"w":500,"h":892,"resize":"fit"}},"source_status_id":602093289798574080,"source_status_id_str":"602093289798574080","source_user_id":2613411057,"source_user_id_str":"2613411057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015660"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808452038656,"id_str":"663727808452038656","text":"RT @nakedmagic: I'VE NEVER BEEN IN SO MUCH PAIN https:\/\/t.co\/1eMbw9KtoI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268671120,"id_str":"3268671120","name":"Anne","screen_name":"nilourry_","location":null,"url":null,"description":"eye eye Sir niall","protected":false,"verified":false,"followers_count":103,"friends_count":259,"listed_count":0,"favourites_count":977,"statuses_count":2525,"created_at":"Sun Jul 05 04:46:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622768526692986880\/KKaCNavW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622768526692986880\/KKaCNavW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268671120\/1437314561","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:08 +0000 2015","id":663721989543231488,"id_str":"663721989543231488","text":"I'VE NEVER BEEN IN SO MUCH PAIN https:\/\/t.co\/1eMbw9KtoI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48502930,"id_str":"48502930","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","screen_name":"nakedmagic","location":"on a windy rooftop","url":"https:\/\/twitter.com\/nakedmagic\/status\/663584401977143296","description":"#1 harry's tummy stan","protected":false,"verified":false,"followers_count":86587,"friends_count":49450,"listed_count":412,"favourites_count":76676,"statuses_count":200681,"created_at":"Thu Jun 18 21:48:31 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48502930\/1446939726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":200,"favorite_count":150,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721988611923969,"id_str":"663721988611923969","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"large":{"w":224,"h":283,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":224,"h":283,"resize":"fit"},"small":{"w":224,"h":283,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721988611923969,"id_str":"663721988611923969","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"large":{"w":224,"h":283,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":224,"h":283,"resize":"fit"},"small":{"w":224,"h":283,"resize":"fit"}}},{"id":663721987823374336,"id_str":"663721987823374336","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDoaHUEAAIhhJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDoaHUEAAIhhJ.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"small":{"w":225,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":225,"h":287,"resize":"fit"},"medium":{"w":225,"h":287,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nakedmagic","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","id":48502930,"id_str":"48502930","indices":[3,14]}],"symbols":[],"media":[{"id":663721988611923969,"id_str":"663721988611923969","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"large":{"w":224,"h":283,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":224,"h":283,"resize":"fit"},"small":{"w":224,"h":283,"resize":"fit"}},"source_status_id":663721989543231488,"source_status_id_str":"663721989543231488","source_user_id":48502930,"source_user_id_str":"48502930"}]},"extended_entities":{"media":[{"id":663721988611923969,"id_str":"663721988611923969","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDodDUYAEcPQF.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"large":{"w":224,"h":283,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":224,"h":283,"resize":"fit"},"small":{"w":224,"h":283,"resize":"fit"}},"source_status_id":663721989543231488,"source_status_id_str":"663721989543231488","source_user_id":48502930,"source_user_id_str":"48502930"},{"id":663721987823374336,"id_str":"663721987823374336","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDoaHUEAAIhhJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDoaHUEAAIhhJ.png","url":"https:\/\/t.co\/1eMbw9KtoI","display_url":"pic.twitter.com\/1eMbw9KtoI","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663721989543231488\/photo\/1","type":"photo","sizes":{"small":{"w":225,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":225,"h":287,"resize":"fit"},"medium":{"w":225,"h":287,"resize":"fit"}},"source_status_id":663721989543231488,"source_status_id_str":"663721989543231488","source_user_id":48502930,"source_user_id_str":"48502930"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464556032,"id_str":"663727808464556032","text":"@littleparty216 \u306d\u30fc\u2661\u697d\u3057\u307f(\u2229\u02d8\u03c9\u02d8\u2229 )\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726487120429056,"in_reply_to_status_id_str":"663726487120429056","in_reply_to_user_id":2472221689,"in_reply_to_user_id_str":"2472221689","in_reply_to_screen_name":"littleparty216","user":{"id":163054846,"id_str":"163054846","name":"\u2765\uff76\uff97\uff70\uff8f\uff9d\u3042\u304b\u308a@\uff80\uff9e\uff90\uff8c\uff67\uff72\uff85\uff99","screen_name":"color_maaan","location":"\u5bcc\u5c71\u5e02","url":"http:\/\/twpf.jp\/color_maaan","description":"Janne Da Arc(\u30bd\u30ed\u542b)\/\u91d1\u7206\/\u30ae\u30eb\u30c9etc\u2026\u2026\u2026","protected":false,"verified":false,"followers_count":431,"friends_count":362,"listed_count":7,"favourites_count":2579,"statuses_count":40357,"created_at":"Mon Jul 05 12:35:07 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/150305705\/o0480080010421121356.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/150305705\/o0480080010421121356.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544636488290295810\/Wgoxwf4x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544636488290295810\/Wgoxwf4x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163054846\/1424214127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"littleparty216","name":"\u306b\u3085\u3046\u307b\u306a\u305f\u3093","id":2472221689,"id_str":"2472221689","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468811776,"id_str":"663727808468811776","text":"\ubb50\uc57c \ub09c \uc548\uc6c3\uae30\uc790\ub098","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3041129713,"id_str":"3041129713","name":"\ud32c\ud2f0 \uac00\uc2b4 \ud5e8\ub530\uc774 \uc6d4\ub9ac\uc5c4","screen_name":"willitanso","location":null,"url":"http:\/\/blog.naver.com\/qjswlznls","description":"\uc5d8\uc18c\ub4dc,\ud0c0\ub974\ud0c0\ub85c\uc2a4 \uac15\ud654\uc911\/\uac8c\uc784\uc6d0\ud654\uac00\/\uc62c\uce90\ub9ad\/\uc62c\ucee4\ud50c\/\ucee4\ubbf8\uc158- http:\/\/hhp5986.egloos.com\/1096835","protected":false,"verified":false,"followers_count":904,"friends_count":334,"listed_count":5,"favourites_count":1663,"statuses_count":5764,"created_at":"Wed Feb 25 10:09:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662269901613039616\/mmOaOOd5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662269901613039616\/mmOaOOd5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3041129713\/1441296949","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080015662"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477138944,"id_str":"663727808477138944","text":"RT @mata1624: \u0e07\u0e32\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e40\u0e22\u0e2d\u0e30\u0e08\u0e19\u0e01\u0e39\u0e07\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164649143,"id_str":"164649143","name":"wilq","screen_name":"mildmldd","location":null,"url":null,"description":"snapchat - mildmlddd","protected":false,"verified":false,"followers_count":636,"friends_count":254,"listed_count":1,"favourites_count":104,"statuses_count":12593,"created_at":"Fri Jul 09 11:45:45 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CF97BB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/707594096\/8e13a4dc7547570dba516833219d34cc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/707594096\/8e13a4dc7547570dba516833219d34cc.jpeg","profile_background_tile":false,"profile_link_color":"B68BC4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D499E8","profile_text_color":"7E668F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659357705023295488\/-Xl29Wpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659357705023295488\/-Xl29Wpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164649143\/1446813951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:28 +0000 2015","id":663726604208619521,"id_str":"663726604208619521","text":"\u0e07\u0e32\u0e19\u0e01\u0e25\u0e38\u0e48\u0e21\u0e40\u0e22\u0e2d\u0e30\u0e08\u0e19\u0e01\u0e39\u0e07\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175976070,"id_str":"175976070","name":"m","screen_name":"mata1624","location":null,"url":null,"description":"\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e40\u0e19\u0e2d\u0e30","protected":false,"verified":false,"followers_count":110,"friends_count":128,"listed_count":0,"favourites_count":242,"statuses_count":33201,"created_at":"Sun Aug 08 05:10:14 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"E67FEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/443245179944701952\/paGd8Y9H.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/443245179944701952\/paGd8Y9H.jpeg","profile_background_tile":true,"profile_link_color":"E019E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663339676107800577\/am3tXwTq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663339676107800577\/am3tXwTq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175976070\/1433394373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mata1624","name":"m","id":175976070,"id_str":"175976070","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456192000,"id_str":"663727808456192000","text":"RT @yvtoh: rt @BryanChanWJ: I have never tried so hard before. But that's not gonna stop me from trying harder.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174598001,"id_str":"174598001","name":"Najwatul Nabilah","screen_name":"ayymami_najwa","location":null,"url":null,"description":"I'm a sucker for this hopeless romantic bullshit. IG: ayymami_najwa SC: najwatulnabilah","protected":false,"verified":false,"followers_count":363,"friends_count":409,"listed_count":1,"favourites_count":4620,"statuses_count":73525,"created_at":"Wed Aug 04 09:36:48 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638384963444846592\/no76RV1g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638384963444846592\/no76RV1g.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611157021526634496\/iLe78eWq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611157021526634496\/iLe78eWq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174598001\/1441033437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:44 +0000 2015","id":663727175485403136,"id_str":"663727175485403136","text":"rt @BryanChanWJ: I have never tried so hard before. But that's not gonna stop me from trying harder.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224214795,"id_str":"224214795","name":"Yvonne Toh","screen_name":"yvtoh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":403,"friends_count":291,"listed_count":2,"favourites_count":0,"statuses_count":51349,"created_at":"Wed Dec 08 12:51:08 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431635435949801473\/CL9hNI2n.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431635435949801473\/CL9hNI2n.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E3E3","profile_text_color":"940C0C","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659057295469342725\/q6KEHjnZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659057295469342725\/q6KEHjnZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224214795\/1446397323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BryanChanWJ","name":"BryanChan","id":122688881,"id_str":"122688881","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yvtoh","name":"Yvonne Toh","id":224214795,"id_str":"224214795","indices":[3,9]},{"screen_name":"BryanChanWJ","name":"BryanChan","id":122688881,"id_str":"122688881","indices":[14,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015659"} +{"delete":{"status":{"id":663727749735944192,"id_str":"663727749735944192","user_id":2668283335,"user_id_str":"2668283335"},"timestamp_ms":"1447080015727"}} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468795392,"id_str":"663727808468795392","text":"\u3061\u3087\u3063\u3068\u8a71\u3092\u3057\u3088\u3046\u305c https:\/\/t.co\/F5BkM4pNzg","source":"\u003ca href=\"http:\/\/blog.fc2.com\/\" rel=\"nofollow\"\u003eFC2 Blog Notify\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2753888407,"id_str":"2753888407","name":"yukainagazou","screen_name":"yukainagazoun01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4836,"created_at":"Fri Aug 22 03:54:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000504","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502698842727268352\/rKu6AwKu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502698842727268352\/rKu6AwKu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2753888407\/1408689026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F5BkM4pNzg","expanded_url":"http:\/\/yukainagazou.blog.fc2.com\/blog-entry-4851.html","display_url":"yukainagazou.blog.fc2.com\/blog-entry-485\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015662"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456224768,"id_str":"663727808456224768","text":"RT @yyyyyy____64: \u30c4\u30a6\u30a3\u5bc4\u308a\u30aa\u30eb\u30da\u30f3\ud83d\udc8b00\n#Twitter\u4e0a\u306b\u3044\u308bTWICE\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fTWICE\u30da\u30f3\u3055\u3093\u306fRT\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bTWICE\u30da\u30f3\u3055\u3093\u3082\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2959184545,"id_str":"2959184545","name":"\ubbf8 \ub839","screen_name":"snsd_od","location":"Korea","url":null,"description":"OD(POTS)1\u5e74\u250a\u5c11\u5973\u6642\u4ee3\u250a\u261eS\u029a\u2665\ufe0e\u025eNE\u9023\u5408No.47\u261c\u250aEXID\u250aRedVelvet\u250aApink\u250aexo\u250af(x)\u250aSHINee\u250aBTS\u250aTwice\u250aGirl's Day\u250amiss A\u250asister\u250a\u97d3\u56fd\u8a9e\u52c9\u5f37\u4e2d\u270d\u250a\u3044\u3064\u304b\u97d3\u56fd\u306b\u884c\u304f!!!\u250a\uff8d\uff9f\uff9d\u3055\u3093\uff8c\uff6b\uff9b\uff8a\uff9e100%","protected":false,"verified":false,"followers_count":723,"friends_count":696,"listed_count":3,"favourites_count":6941,"statuses_count":4984,"created_at":"Mon Jan 05 04:44:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661466364272508928\/7Rlk6y99_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661466364272508928\/7Rlk6y99_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959184545\/1446540232","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:10:58 +0000 2015","id":663690240888999936,"id_str":"663690240888999936","text":"\u30c4\u30a6\u30a3\u5bc4\u308a\u30aa\u30eb\u30da\u30f3\ud83d\udc8b00\n#Twitter\u4e0a\u306b\u3044\u308bTWICE\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fTWICE\u30da\u30f3\u3055\u3093\u306fRT\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bTWICE\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2976188408,"id_str":"2976188408","name":"min","screen_name":"yyyyyy____64","location":null,"url":null,"description":"TWICE\u30de\u30f3\u30cd\u30c1\u30e5\u30a6\u30a3\u3061\u3083\u3093\u30b5\u30e9\u30f3\u3078___\u00b0.\u2661\u00b0.*\uff65\uff61kpop\u597d\u304d\u306a\u4eba\u96d1\u7a2e\u3067\u3082Only\u3067\u3082\u306a\u3093\u3067\u3082\u7e4b\u304c\u308a\u305f\u3044\u2026\u2026\uff08 \u2764\ufe0e )","protected":false,"verified":false,"followers_count":58,"friends_count":75,"listed_count":0,"favourites_count":787,"statuses_count":219,"created_at":"Mon Jan 12 08:18:44 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663687217085218817\/5yB0yjmA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663687217085218817\/5yB0yjmA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2976188408\/1447070408","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":3,"entities":{"hashtags":[{"text":"Twitter\u4e0a\u306b\u3044\u308bTWICE\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fTWICE\u30da\u30f3\u3055\u3093\u306fRT\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bTWICE\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[13,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twitter\u4e0a\u306b\u3044\u308bTWICE\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fTWICE\u30da\u30f3\u3055\u3093\u306fRT\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bTWICE\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[31,140]}],"urls":[],"user_mentions":[{"screen_name":"yyyyyy____64","name":"min","id":2976188408,"id_str":"2976188408","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477294594,"id_str":"663727808477294594","text":"@aahakz \u0628\u0631\u0648\u062d \u0644\u0642\u0637\u0631 \u0627\u0646\u0627 \u0648\u0645\u0627\u0645\u064a \ud83d\ude33\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663659228788359169,"in_reply_to_status_id_str":"663659228788359169","in_reply_to_user_id":3152821309,"in_reply_to_user_id_str":"3152821309","in_reply_to_screen_name":"aahakz","user":{"id":2186470216,"id_str":"2186470216","name":"\u0633\u0648\u064a\u062f\u0647","screen_name":"sweran_11","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":127,"friends_count":82,"listed_count":1,"favourites_count":355,"statuses_count":5109,"created_at":"Mon Nov 18 20:30:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649372663819845632\/Bw4ilRAj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649372663819845632\/Bw4ilRAj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186470216\/1446684817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aahakz","name":"\u0645\u0642\u0627\u0637\u0639","id":3152821309,"id_str":"3152821309","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477179904,"id_str":"663727808477179904","text":"Buenos d\u00edas a todos menos a los hijos de puta que ni por joder usan las v\u00edas para indicar q van a cruzar a los q les regalan la licencia no!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207187035,"id_str":"207187035","name":"Cletus","screen_name":"rgui2","location":"El salvador san salvador","url":null,"description":"Mejor me dedico a trolear....","protected":false,"verified":false,"followers_count":191,"friends_count":268,"listed_count":2,"favourites_count":119,"statuses_count":10808,"created_at":"Sun Oct 24 18:52:14 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594303051873308672\/lkq9lYct_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594303051873308672\/lkq9lYct_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207187035\/1380374616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447799297,"id_str":"663727808447799297","text":"\u30d4\u30f3\u30af\u306b\u56f2\u307e\u308c\u305f\u3044\u30d6\u30b9\u3060\u3051\u3069","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":907614074,"id_str":"907614074","name":"\u207d\u02d9\ua4b3\u02d9\u207e \u306a\u3064\u3053\u308a\u3093","screen_name":"_____ntkrn","location":"\u3072\u308d\u3057\u307e","url":null,"description":"\u8179\u9ed2\u91ce\u90ce( ^\u03c9^ )\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":33,"friends_count":39,"listed_count":1,"favourites_count":5907,"statuses_count":17096,"created_at":"Sat Oct 27 07:53:55 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/724298461\/84be917ce1d3471e7c2fe01488c55ade.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/724298461\/84be917ce1d3471e7c2fe01488c55ade.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661193322073997312\/yHPiWuSS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661193322073997312\/yHPiWuSS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/907614074\/1446475954","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464551936,"id_str":"663727808464551936","text":"Rash and me talking about mx turning old from sexy men in their 30s to whos gonna get married first to them being grandpas w grey hair \ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3459348806,"id_str":"3459348806","name":"fiona\u2606 D27 #\ubaac\ubca0\ubca0","screen_name":"shownu_mx","location":"Singapore","url":"https:\/\/instagram.com\/shownu_mx\/","description":"\u2661 Monsta X and Sistar Fan Meet in Singapore ~ 2015.12.06 \u2661","protected":false,"verified":false,"followers_count":62,"friends_count":125,"listed_count":3,"favourites_count":11057,"statuses_count":6389,"created_at":"Sat Sep 05 12:43:49 +0000 2015","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661366793374568448\/6VBRsMsq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661366793374568448\/6VBRsMsq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3459348806\/1445554038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447963136,"id_str":"663727808447963136","text":"Mathieu Valbuena et Fanny Lafon bient\u00f4t parents !: https:\/\/t.co\/zcNkpnROlD via @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598457839,"id_str":"598457839","name":"\u200fPotins.net","screen_name":"potinsnet","location":"paris","url":"http:\/\/www.potins.net","description":"\u2605 Les potins du net \u2605 Tous les potins de star, people, TV R\u00e9alit\u00e9 et bien plus ... http:\/\/www.facebook.com\/Potins.net et http:\/\/instagram.com\/potinsnet","protected":false,"verified":false,"followers_count":13454,"friends_count":14728,"listed_count":48,"favourites_count":105,"statuses_count":20528,"created_at":"Sun Jun 03 16:20:01 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBDBDB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180592496\/aidrZtKs.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180592496\/aidrZtKs.png","profile_background_tile":false,"profile_link_color":"D7196E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459333202071416832\/v1RYP45f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459333202071416832\/v1RYP45f_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zcNkpnROlD","expanded_url":"http:\/\/youtu.be\/lHq9qh38Ipw?a","display_url":"youtu.be\/lHq9qh38Ipw?a","indices":[51,74]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[79,87]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808452034560,"id_str":"663727808452034560","text":"@anirudhofficial dhanush Anna kuda rly pannaru nenga panna maatiringa \rLove u \ud83d\ude0a annaaa","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726269255651329,"in_reply_to_status_id_str":"663726269255651329","in_reply_to_user_id":2531036122,"in_reply_to_user_id_str":"2531036122","in_reply_to_screen_name":"SivaKOfficial","user":{"id":2531036122,"id_str":"2531036122","name":"**\u0bae\u0bb4\u0bc8\u0ba4\u0bcd \u0ba4\u0bc1\u0bb3\u0bbf**","screen_name":"SivaKOfficial","location":"Tiruppur","url":"http:\/\/www.Facebook.com\/siva.karthikeyan.3110567","description":"\u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bbf \u0baa\u0bcb\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0ba9\u0bcd \u0bb5\u0ba8\u0bcd\u0ba4\u0bbe\u0baf \u0b85\u0ba8\u0bcd\u0ba4 \u0b95\u0b9f\u0bb2\u0bcd \u0b85\u0bb2\u0bc8 \u0baa\u0bcb\u0bb2 \u0b85\u0ba4\u0bc1 \u0b95\u0bb1\u0bcd\u0b95\u0bb3\u0bc8 \u0ba8\u0bb4\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0bcb\u0ba9\u0ba4\u0bc1 \u0b86\u0ba9\u0bbe\u0bb2\u0bcd \u0ba8\u0bc0 \u0b8e\u0ba9\u0bcd \u0b95\u0ba3\u0bcd\u0b95\u0bb3\u0bc8 \u0ba8\u0bb4\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0bcb\u0b95\u0bbf\u0bb1\u0bbe\u0baf\u0bc7 @dhanushkraja @Anirudhofficial","protected":false,"verified":false,"followers_count":3132,"friends_count":351,"listed_count":4,"favourites_count":8041,"statuses_count":13025,"created_at":"Mon May 05 13:16:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517164833678958592\/vg5M2pN4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517164833678958592\/vg5M2pN4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646054684819456\/pHzU3FP-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646054684819456\/pHzU3FP-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2531036122\/1446038407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anirudhofficial","name":"Anirudh Ravichander","id":216447259,"id_str":"216447259","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808451969024,"id_str":"663727808451969024","text":"RT @sinhanakusodoug: \u3053\u3044\u3064\u307b\u3093\u307e\u306e\u30a2\u30db\u3084wwwww https:\/\/t.co\/YzZJDEe4GS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3157338536,"id_str":"3157338536","name":"Nanakun","screen_name":"NanakunStyle19","location":"13.08.27 Angel","url":null,"description":"Smne.19.Katsuyama Nana.\n\nKotobukiKun.Respect","protected":false,"verified":false,"followers_count":136,"friends_count":150,"listed_count":0,"favourites_count":2335,"statuses_count":1875,"created_at":"Wed Apr 15 12:53:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661841837674467332\/jFi-YCXf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661841837674467332\/jFi-YCXf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3157338536\/1446030549","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:44:48 +0000 2015","id":663321267827675137,"id_str":"663321267827675137","text":"\u3053\u3044\u3064\u307b\u3093\u307e\u306e\u30a2\u30db\u3084wwwww https:\/\/t.co\/YzZJDEe4GS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3736668019,"id_str":"3736668019","name":"\u65b0\u30cf\u30ca\u30af\u30bd\u52d5\u753b","screen_name":"sinhanakusodoug","location":null,"url":null,"description":"2015\u5e74\u52d5\u753b\u30a2\u30ab\u30a6\u30f3\u30c8\u4eba\u6c17No.1\uff01\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3010\u304a\u77e5\u3089\u305b\u3011\u52d5\u753b\u306e\u63b2\u8f09\u4f9d\u983c\u52df\u96c6\u3057\u3066\u307e\u3059\uff01sinhanakusodouga@gmail.com\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u304a\u6c17\u8efd\u306b\u30e1\u30fc\u30eb\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":1474,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":225,"created_at":"Wed Sep 30 12:10:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649194760058437636\/NpwvqJDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649194760058437636\/NpwvqJDr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3736668019\/1443615108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1691,"favorite_count":1165,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YzZJDEe4GS","expanded_url":"https:\/\/vine.co\/v\/eVUuEFUaFQz","display_url":"vine.co\/v\/eVUuEFUaFQz","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YzZJDEe4GS","expanded_url":"https:\/\/vine.co\/v\/eVUuEFUaFQz","display_url":"vine.co\/v\/eVUuEFUaFQz","indices":[37,60]}],"user_mentions":[{"screen_name":"sinhanakusodoug","name":"\u65b0\u30cf\u30ca\u30af\u30bd\u52d5\u753b","id":3736668019,"id_str":"3736668019","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456343552,"id_str":"663727808456343552","text":"Boto po tayo https:\/\/t.co\/DBhjzVNfXI #PushAwardsKathNiels https:\/\/t.co\/LoB4asCXpd","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3822480439,"id_str":"3822480439","name":"hi","screen_name":"gsyeg33","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":45742,"created_at":"Thu Oct 08 06:21:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656486124152446976\/HrlBtxWt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656486124152446976\/HrlBtxWt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727643347546112,"quoted_status_id_str":"663727643347546112","quoted_status":{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727643347546112,"id_str":"663727643347546112","text":"Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitens1: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320372658,"id_str":"2320372658","name":"RT link on bio pls","screen_name":"kathnielquotes_","location":null,"url":null,"description":"https:\/\/twitter.com\/kbdpangel\/status\/655782290610491392","protected":false,"verified":false,"followers_count":25,"friends_count":8,"listed_count":16,"favourites_count":18,"statuses_count":47721,"created_at":"Fri Jan 31 07:00:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320372658\/1422688137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[69,89]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[37,57]}],"urls":[{"url":"https:\/\/t.co\/DBhjzVNfXI","expanded_url":"http:\/\/m.pushawards.com","display_url":"m.pushawards.com","indices":[13,36]},{"url":"https:\/\/t.co\/LoB4asCXpd","expanded_url":"http:\/\/twitter.com\/kathnielquotes_\/status\/663727643347546112","display_url":"twitter.com\/kathnielquotes\u2026","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808472985600,"id_str":"663727808472985600","text":"RT @BlackShiite: Little girl is called ugly in school and her response is golden! Beautiful girl and amazing Mother. https:\/\/t.co\/7jpJ5XXVHI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2272079870,"id_str":"2272079870","name":"Aricado","screen_name":"Arianafaizi99","location":null,"url":null,"description":"#freepalestine #blacklivesmatter #doitforDubb Spread some social justice today.","protected":false,"verified":false,"followers_count":239,"friends_count":349,"listed_count":1,"favourites_count":41495,"statuses_count":15504,"created_at":"Wed Jan 01 20:45:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660163836318617600\/lv2umdoi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660163836318617600\/lv2umdoi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2272079870\/1446400072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 04:20:39 +0000 2015","id":662847105099239424,"id_str":"662847105099239424","text":"Little girl is called ugly in school and her response is golden! Beautiful girl and amazing Mother. https:\/\/t.co\/7jpJ5XXVHI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1962902683,"id_str":"1962902683","name":"Black Intifada","screen_name":"BlackShiite","location":"New York to Istanbul ","url":null,"description":"Rediscovering myself through Africa. #BlackLivesMatter #FreePalestine #CAR","protected":false,"verified":false,"followers_count":4870,"friends_count":1508,"listed_count":118,"favourites_count":2611,"statuses_count":18962,"created_at":"Tue Oct 15 15:25:55 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660309599355060224\/4hLow-2M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660309599355060224\/4hLow-2M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1962902683\/1409436876","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01a9a39529b27f36","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01a9a39529b27f36.json","place_type":"city","name":"Manhattan","full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.026675,40.683935],[-74.026675,40.877483],[-73.910408,40.877483],[-73.910408,40.683935]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3073,"favorite_count":4125,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662846936903495684,"id_str":"662846936903495684","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","url":"https:\/\/t.co\/7jpJ5XXVHI","display_url":"pic.twitter.com\/7jpJ5XXVHI","expanded_url":"http:\/\/twitter.com\/BlackShiite\/status\/662847105099239424\/video\/1","type":"photo","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662846936903495684,"id_str":"662846936903495684","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","url":"https:\/\/t.co\/7jpJ5XXVHI","display_url":"pic.twitter.com\/7jpJ5XXVHI","expanded_url":"http:\/\/twitter.com\/BlackShiite\/status\/662847105099239424\/video\/1","type":"video","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"duration_millis":30026,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/vid\/240x320\/4QGVR7U0n3VpM9JE.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/pl\/2rjiUAs3xvsgaw-L.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/pl\/2rjiUAs3xvsgaw-L.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/vid\/240x320\/4QGVR7U0n3VpM9JE.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlackShiite","name":"Black Intifada","id":1962902683,"id_str":"1962902683","indices":[3,15]}],"symbols":[],"media":[{"id":662846936903495684,"id_str":"662846936903495684","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","url":"https:\/\/t.co\/7jpJ5XXVHI","display_url":"pic.twitter.com\/7jpJ5XXVHI","expanded_url":"http:\/\/twitter.com\/BlackShiite\/status\/662847105099239424\/video\/1","type":"photo","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}},"source_status_id":662847105099239424,"source_status_id_str":"662847105099239424","source_user_id":1962902683,"source_user_id_str":"1962902683"}]},"extended_entities":{"media":[{"id":662846936903495684,"id_str":"662846936903495684","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662846936903495684\/pu\/img\/FyMJOmV09zZLGXt5.jpg","url":"https:\/\/t.co\/7jpJ5XXVHI","display_url":"pic.twitter.com\/7jpJ5XXVHI","expanded_url":"http:\/\/twitter.com\/BlackShiite\/status\/662847105099239424\/video\/1","type":"video","sizes":{"medium":{"w":300,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":400,"resize":"fit"},"large":{"w":300,"h":400,"resize":"fit"}},"source_status_id":662847105099239424,"source_status_id_str":"662847105099239424","source_user_id":1962902683,"source_user_id_str":"1962902683","video_info":{"aspect_ratio":[3,4],"duration_millis":30026,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/vid\/240x320\/4QGVR7U0n3VpM9JE.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/pl\/2rjiUAs3xvsgaw-L.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/pl\/2rjiUAs3xvsgaw-L.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662846936903495684\/pu\/vid\/240x320\/4QGVR7U0n3VpM9JE.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015663"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468746240,"id_str":"663727808468746240","text":"\u3086\u30fc\u307e\u5f85\u3063\u3066\u308b\u9593\u306b\u6563\u6b69\u3057\u3066\u305f\u3089\u4e07\u6b69\u8a08\u304c14,591\u6b69\u307e\u3067\u3044\u3063\u3066\u3066\u5b09\u3057\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2425371594,"id_str":"2425371594","name":"\u3046\u3057","screen_name":"yushi_aug","location":null,"url":null,"description":"\u30dd\u30b1\u30e2\u30f3\u25cb\u9ebb\u96c0\u25cbLE","protected":false,"verified":false,"followers_count":89,"friends_count":88,"listed_count":1,"favourites_count":408,"statuses_count":1011,"created_at":"Thu Apr 03 09:54:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659595293135007744\/cJw_F4nF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659595293135007744\/cJw_F4nF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2425371594\/1445005263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015662"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456163328,"id_str":"663727808456163328","text":"RT @EOnlineUK: .@ddlovato is in London, and slaying as per! https:\/\/t.co\/T5XPetfQui https:\/\/t.co\/a8YXOYXgVw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2253089382,"id_str":"2253089382","name":"bee","screen_name":"btrsye","location":"ig; imactuallybat","url":null,"description":"hangout: aimitchellnazri@gmail.com\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nMalaysian Certificate of Education 2015","protected":false,"verified":false,"followers_count":765,"friends_count":26,"listed_count":17,"favourites_count":9837,"statuses_count":60455,"created_at":"Thu Dec 19 06:34:44 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"B73833","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663158053676584960\/7ym0_haE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663158053676584960\/7ym0_haE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2253089382\/1446807609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:45:12 +0000 2015","id":663638455633735680,"id_str":"663638455633735680","text":".@ddlovato is in London, and slaying as per! https:\/\/t.co\/T5XPetfQui https:\/\/t.co\/a8YXOYXgVw","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1070586199,"id_str":"1070586199","name":"E! Online UK","screen_name":"EOnlineUK","location":"UK","url":"http:\/\/uk.eonline.com","description":"The official E! Online Twitter for the UK. Follow us for your red carpet fix and the UK chat about celebrities you love.\nSky 151 | Virgin 156 | BT and TalkTalk","protected":false,"verified":true,"followers_count":74417,"friends_count":1585,"listed_count":203,"favourites_count":13498,"statuses_count":31036,"created_at":"Tue Jan 08 10:45:22 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474233262038978561\/IJEs_CNy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474233262038978561\/IJEs_CNy.jpeg","profile_background_tile":false,"profile_link_color":"9E6B06","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458939573574197249\/MqL8e5VU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458939573574197249\/MqL8e5VU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1070586199\/1443108201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2058,"favorite_count":4524,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T5XPetfQui","expanded_url":"http:\/\/eonli.ne\/1Qot5jk","display_url":"eonli.ne\/1Qot5jk","indices":[45,68]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[1,10]}],"symbols":[],"media":[{"id":663638455432421376,"id_str":"663638455432421376","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","url":"https:\/\/t.co\/a8YXOYXgVw","display_url":"pic.twitter.com\/a8YXOYXgVw","expanded_url":"http:\/\/twitter.com\/EOnlineUK\/status\/663638455633735680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":549,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":969,"resize":"fit"},"large":{"w":634,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663638455432421376,"id_str":"663638455432421376","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","url":"https:\/\/t.co\/a8YXOYXgVw","display_url":"pic.twitter.com\/a8YXOYXgVw","expanded_url":"http:\/\/twitter.com\/EOnlineUK\/status\/663638455633735680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":549,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":969,"resize":"fit"},"large":{"w":634,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T5XPetfQui","expanded_url":"http:\/\/eonli.ne\/1Qot5jk","display_url":"eonli.ne\/1Qot5jk","indices":[60,83]}],"user_mentions":[{"screen_name":"EOnlineUK","name":"E! Online UK","id":1070586199,"id_str":"1070586199","indices":[3,13]},{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[16,25]}],"symbols":[],"media":[{"id":663638455432421376,"id_str":"663638455432421376","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","url":"https:\/\/t.co\/a8YXOYXgVw","display_url":"pic.twitter.com\/a8YXOYXgVw","expanded_url":"http:\/\/twitter.com\/EOnlineUK\/status\/663638455633735680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":549,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":969,"resize":"fit"},"large":{"w":634,"h":1024,"resize":"fit"}},"source_status_id":663638455633735680,"source_status_id_str":"663638455633735680","source_user_id":1070586199,"source_user_id_str":"1070586199"}]},"extended_entities":{"media":[{"id":663638455432421376,"id_str":"663638455432421376","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3qLtWoAAXdok.jpg","url":"https:\/\/t.co\/a8YXOYXgVw","display_url":"pic.twitter.com\/a8YXOYXgVw","expanded_url":"http:\/\/twitter.com\/EOnlineUK\/status\/663638455633735680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":549,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":969,"resize":"fit"},"large":{"w":634,"h":1024,"resize":"fit"}},"source_status_id":663638455633735680,"source_status_id_str":"663638455633735680","source_user_id":1070586199,"source_user_id_str":"1070586199"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808452030464,"id_str":"663727808452030464","text":"RT @hzt_qz: \u0e40\u0e17\u0e32\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e44\u0e14\u0e49\u0e17\u0e23\u0e07\u0e1c\u0e21\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e43\u0e08\u0e01\u0e47\u0e04\u0e48\u0e2d\u0e22\u0e46\u0e1a\u0e2d\u0e01\u0e1e\u0e35\u0e48\u0e2a\u0e44\u0e15\u0e2a\u0e4c\u0e25\u0e34\u0e15\u0e2a\u0e4c \/\u0e43\u0e2a\u0e48\u0e04\u0e2d\u0e19\u0e41\u0e17\u0e04\u0e40\u0e25\u0e19\u0e2a\u0e4c\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e44\u0e27\u0e49\u0e17\u0e35\u0e48\u0e15\u0e32\u0e02\u0e27\u0e32\u0e02\u0e49\u0e32\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27\u0e14\u0e49\u0e27\u0e22 \u0e02\u0e49\u0e32\u0e07\u0e19\u0e36\u0e07\u0e1f\u0e49\u0e32\u0e02\u0e49\u0e32\u0e07\u0e19\u0e36\u0e07\u0e14\u0e33 \ud83d\udc40 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2751655994,"id_str":"2751655994","name":"pan.da","screen_name":"taoz_tao","location":null,"url":null,"description":"z.tao","protected":false,"verified":false,"followers_count":111,"friends_count":291,"listed_count":0,"favourites_count":164,"statuses_count":4070,"created_at":"Thu Aug 21 08:28:10 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655778445050277888\/3rz5Apv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655778445050277888\/3rz5Apv4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2751655994\/1445184738","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:41:09 +0000 2015","id":663531742272204800,"id_str":"663531742272204800","text":"\u0e40\u0e17\u0e32\u0e17\u0e35\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e44\u0e14\u0e49\u0e17\u0e23\u0e07\u0e1c\u0e21\u0e17\u0e35\u0e48\u0e16\u0e39\u0e01\u0e43\u0e08\u0e01\u0e47\u0e04\u0e48\u0e2d\u0e22\u0e46\u0e1a\u0e2d\u0e01\u0e1e\u0e35\u0e48\u0e2a\u0e44\u0e15\u0e2a\u0e4c\u0e25\u0e34\u0e15\u0e2a\u0e4c \/\u0e43\u0e2a\u0e48\u0e04\u0e2d\u0e19\u0e41\u0e17\u0e04\u0e40\u0e25\u0e19\u0e2a\u0e4c\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e44\u0e27\u0e49\u0e17\u0e35\u0e48\u0e15\u0e32\u0e02\u0e27\u0e32\u0e02\u0e49\u0e32\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27\u0e14\u0e49\u0e27\u0e22 \u0e02\u0e49\u0e32\u0e07\u0e19\u0e36\u0e07\u0e1f\u0e49\u0e32\u0e02\u0e49\u0e32\u0e07\u0e19\u0e36\u0e07\u0e14\u0e33 \ud83d\udc40 https:\/\/t.co\/CMlRPG8SAd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1597222735,"id_str":"1597222735","name":"` \u0e40\u0e17\u0e32\u0e04\u0e34\u0e27\u0e0b\u0e35 .","screen_name":"hzt_qz","location":"Los Angeles, CA","url":"http:\/\/ask.fm\/hzt_lqz","description":"` no smoking right here man | #roleplayer #\u0e1a\u0e2d\u0e17\u0e40\u0e17\u0e32 | rapxline 4typex \u0e40\u0e22\u0e32\u0e27\u0e23\u0e32\u0e0a | spc. all ma bro & all ma sis | HL \u2661 HZT \u00b4","protected":false,"verified":false,"followers_count":3106,"friends_count":194,"listed_count":5,"favourites_count":1999,"statuses_count":123188,"created_at":"Tue Jul 16 01:23:06 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529492506384154625\/vczsVHqX.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529492506384154625\/vczsVHqX.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662137911945523201\/rAhV6fA9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662137911945523201\/rAhV6fA9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1597222735\/1443068647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663531686592819200,"id_str":"663531686592819200","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","url":"https:\/\/t.co\/CMlRPG8SAd","display_url":"pic.twitter.com\/CMlRPG8SAd","expanded_url":"http:\/\/twitter.com\/hzt_qz\/status\/663531742272204800\/photo\/1","type":"photo","sizes":{"small":{"w":260,"h":312,"resize":"fit"},"medium":{"w":260,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":260,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663531686592819200,"id_str":"663531686592819200","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","url":"https:\/\/t.co\/CMlRPG8SAd","display_url":"pic.twitter.com\/CMlRPG8SAd","expanded_url":"http:\/\/twitter.com\/hzt_qz\/status\/663531742272204800\/photo\/1","type":"animated_gif","sizes":{"small":{"w":260,"h":312,"resize":"fit"},"medium":{"w":260,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":260,"h":312,"resize":"fit"}},"video_info":{"aspect_ratio":[5,6],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVWjayUsAAB7m-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hzt_qz","name":"` \u0e40\u0e17\u0e32\u0e04\u0e34\u0e27\u0e0b\u0e35 .","id":1597222735,"id_str":"1597222735","indices":[3,10]}],"symbols":[],"media":[{"id":663531686592819200,"id_str":"663531686592819200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","url":"https:\/\/t.co\/CMlRPG8SAd","display_url":"pic.twitter.com\/CMlRPG8SAd","expanded_url":"http:\/\/twitter.com\/hzt_qz\/status\/663531742272204800\/photo\/1","type":"photo","sizes":{"small":{"w":260,"h":312,"resize":"fit"},"medium":{"w":260,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":260,"h":312,"resize":"fit"}},"source_status_id":663531742272204800,"source_status_id_str":"663531742272204800","source_user_id":1597222735,"source_user_id_str":"1597222735"}]},"extended_entities":{"media":[{"id":663531686592819200,"id_str":"663531686592819200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVWjayUsAAB7m-.png","url":"https:\/\/t.co\/CMlRPG8SAd","display_url":"pic.twitter.com\/CMlRPG8SAd","expanded_url":"http:\/\/twitter.com\/hzt_qz\/status\/663531742272204800\/photo\/1","type":"animated_gif","sizes":{"small":{"w":260,"h":312,"resize":"fit"},"medium":{"w":260,"h":312,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":260,"h":312,"resize":"fit"}},"source_status_id":663531742272204800,"source_status_id_str":"663531742272204800","source_user_id":1597222735,"source_user_id_str":"1597222735","video_info":{"aspect_ratio":[5,6],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVWjayUsAAB7m-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808460492800,"id_str":"663727808460492800","text":"@JustMoonie yes I can't live like this my whole life has changed I sleep all day I have no life \ud83d\ude20\ud83d\ude20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715989981392896,"in_reply_to_status_id_str":"663715989981392896","in_reply_to_user_id":128327177,"in_reply_to_user_id_str":"128327177","in_reply_to_screen_name":"JustMoonie","user":{"id":470673587,"id_str":"470673587","name":"TiFFINY not TIFFANY!","screen_name":"Im_ONLY_Tip","location":"Ig - @ThatsTipp","url":"http:\/\/ask.fm\/saynowtip","description":"And then she told herself, stop being so weak. Grow up and get over it and then she never felt anything again. ig @ThatsTipp","protected":false,"verified":false,"followers_count":1796,"friends_count":1256,"listed_count":4,"favourites_count":5372,"statuses_count":60165,"created_at":"Sun Jan 22 01:16:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472061067\/exotic.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472061067\/exotic.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655279640815271936\/5fXYkhBV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655279640815271936\/5fXYkhBV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/470673587\/1445065858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JustMoonie","name":"\u2728MOONPIE\u2728","id":128327177,"id_str":"128327177","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015660"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464691201,"id_str":"663727808464691201","text":"Just got my @LGUS fab oven for just that occasion! #thanksgiving https:\/\/t.co\/MS1RA5ZU1O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1041254022,"id_str":"1041254022","name":"Lynda on the Hudson","screen_name":"LyndaontheHud","location":"NY on the Hudson","url":"http:\/\/www.LyndaontheHudson.com","description":"Fashion Editor turned Fashion blogger @ http:\/\/LyndaontheHudson.com I know what you are looking for!","protected":false,"verified":false,"followers_count":2661,"friends_count":2686,"listed_count":186,"favourites_count":48598,"statuses_count":30994,"created_at":"Fri Dec 28 03:54:00 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3258133173\/967a997cc97da26cf06cc8652fcd5165_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3258133173\/967a997cc97da26cf06cc8652fcd5165_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1041254022\/1407002662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725335398244352,"quoted_status_id_str":"663725335398244352","quoted_status":{"created_at":"Mon Nov 09 14:30:26 +0000 2015","id":663725335398244352,"id_str":"663725335398244352","text":"Turkeys have standards, too. \n\nCook them in LG ovens. \n\ud83d\ude4f: https:\/\/t.co\/zAJmylPgII https:\/\/t.co\/wSHPFSqE11","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212350063,"id_str":"212350063","name":"LG Electronics","screen_name":"LGUS","location":"Englewood Cliffs, NJ","url":"http:\/\/www.lg.com","description":"Follow @LGUS for news and info about our premium Home Appliances (refrigerators, washers, dryers, ovens) and Electronics (4K, HDTVs, OLED). With LG, #LifesGood!","protected":false,"verified":true,"followers_count":167061,"friends_count":7741,"listed_count":941,"favourites_count":2710,"statuses_count":24138,"created_at":"Fri Nov 05 20:55:37 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545681808088510464\/ssgMLii5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545681808088510464\/ssgMLii5.jpeg","profile_background_tile":false,"profile_link_color":"A92352","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"999999","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551071256615743488\/xCPCV_pV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551071256615743488\/xCPCV_pV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212350063\/1446504926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zAJmylPgII","expanded_url":"http:\/\/bit.ly\/LG_DiscoverCooking","display_url":"bit.ly\/LG_DiscoverCoo\u2026","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":663725334324350977,"id_str":"663725334324350977","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrMzUkAEghn9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrMzUkAEghn9.jpg","url":"https:\/\/t.co\/wSHPFSqE11","display_url":"pic.twitter.com\/wSHPFSqE11","expanded_url":"http:\/\/twitter.com\/LGUS\/status\/663725335398244352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":440,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725334324350977,"id_str":"663725334324350977","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrMzUkAEghn9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrMzUkAEghn9.jpg","url":"https:\/\/t.co\/wSHPFSqE11","display_url":"pic.twitter.com\/wSHPFSqE11","expanded_url":"http:\/\/twitter.com\/LGUS\/status\/663725335398244352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":880,"h":440,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"thanksgiving","indices":[51,64]}],"urls":[{"url":"https:\/\/t.co\/MS1RA5ZU1O","expanded_url":"https:\/\/twitter.com\/lgus\/status\/663725335398244352","display_url":"twitter.com\/lgus\/status\/66\u2026","indices":[66,89]}],"user_mentions":[{"screen_name":"LGUS","name":"LG Electronics","id":212350063,"id_str":"212350063","indices":[12,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481525762,"id_str":"663727808481525762","text":"@lua_bgm fala isso mas vive com os l\u00e1bios roxo \ud83d\ude4a\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727269257572352,"in_reply_to_status_id_str":"663727269257572352","in_reply_to_user_id":103302766,"in_reply_to_user_id_str":"103302766","in_reply_to_screen_name":"lua_bgm","user":{"id":1210145990,"id_str":"1210145990","name":"fael","screen_name":"g_rafaell","location":null,"url":null,"description":"Snap: g-fael","protected":false,"verified":false,"followers_count":235,"friends_count":194,"listed_count":0,"favourites_count":756,"statuses_count":8184,"created_at":"Sat Feb 23 00:12:11 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"110099","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638558094704906240\/L0LiFNOL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638558094704906240\/L0LiFNOL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1210145990\/1430598343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lua_bgm","name":"Lua ana","id":103302766,"id_str":"103302766","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808464728064,"id_str":"663727808464728064","text":"Capit\u00e3o do Palmeiras, Prass cobra fim de erros e faz alerta para decis\u00e3o https:\/\/t.co\/kRBp47eJz4","source":"\u003ca href=\"http:\/\/twitter.com\/geverdao\" rel=\"nofollow\"\u003egeverdao\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97075662,"id_str":"97075662","name":"Palmeiras no GE","screen_name":"geverdao","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":61975,"friends_count":23,"listed_count":565,"favourites_count":0,"statuses_count":23424,"created_at":"Tue Dec 15 22:24:38 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/61768196\/plameiras.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/61768196\/plameiras.jpg","profile_background_tile":false,"profile_link_color":"0A6E11","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"616161","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1486854399\/verdao_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1486854399\/verdao_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kRBp47eJz4","expanded_url":"http:\/\/glo.bo\/1OziC5g","display_url":"glo.bo\/1OziC5g","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080015661"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808460402688,"id_str":"663727808460402688","text":"RT @BBicv: @EdgardGarcia5 \ud83d\udd25 https:\/\/t.co\/CN8FnP10cY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1586388600,"id_str":"1586388600","name":"Marvic Rafael","screen_name":"civramsoto","location":null,"url":null,"description":"Senior | Volleyball Player","protected":false,"verified":false,"followers_count":378,"friends_count":271,"listed_count":0,"favourites_count":2153,"statuses_count":24250,"created_at":"Thu Jul 11 17:43:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663111881851170816\/jfvvCHsu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663111881851170816\/jfvvCHsu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1586388600\/1440721803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727705461010432,"id_str":"663727705461010432","text":"@EdgardGarcia5 \ud83d\udd25 https:\/\/t.co\/CN8FnP10cY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1036233680,"in_reply_to_user_id_str":"1036233680","in_reply_to_screen_name":"EdgardGarcia5","user":{"id":1661402282,"id_str":"1661402282","name":"Brayan Calder\u00f3n","screen_name":"BBicv","location":null,"url":null,"description":"Family First | Blessed | Basketball player #BautistaFamily","protected":false,"verified":false,"followers_count":624,"friends_count":327,"listed_count":0,"favourites_count":1282,"statuses_count":8876,"created_at":"Sun Aug 11 02:04:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659103679778332672\/zLXOm2TA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659103679778332672\/zLXOm2TA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1661402282\/1447021090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663714408925818880,"quoted_status_id_str":"663714408925818880","quoted_status":{"created_at":"Mon Nov 09 13:47:00 +0000 2015","id":663714408925818880,"id_str":"663714408925818880","text":"#BasketEscolar Selecciona el Jugador\/a de la Semana | Vota aqu\u00ed por los nominados: https:\/\/t.co\/tNhsjn9NXg https:\/\/t.co\/ByRjHnJXTl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1576336316,"id_str":"1576336316","name":"Buzzer Beater","screen_name":"buzzerbeaterpr","location":null,"url":"http:\/\/www.buzzerbeaterpr.com","description":"Cobertura al deporte escolar y de categor\u00edas menores de Puerto Rico #CanchaEscolar","protected":false,"verified":false,"followers_count":8819,"friends_count":699,"listed_count":25,"favourites_count":1415,"statuses_count":17076,"created_at":"Mon Jul 08 00:14:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1193D4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/443382413746397185\/3kn_oSF9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/443382413746397185\/3kn_oSF9.jpeg","profile_background_tile":false,"profile_link_color":"F7730F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000102558094\/030777ddb88d0c354bcc56d010008fdc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000102558094\/030777ddb88d0c354bcc56d010008fdc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1576336316\/1446604765","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BasketEscolar","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/tNhsjn9NXg","expanded_url":"http:\/\/wp.me\/p541u1-26G","display_url":"wp.me\/p541u1-26G","indices":[83,106]}],"user_mentions":[],"symbols":[],"media":[{"id":663714405117329408,"id_str":"663714405117329408","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8vCVUAAApZhV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8vCVUAAApZhV.jpg","url":"https:\/\/t.co\/ByRjHnJXTl","display_url":"pic.twitter.com\/ByRjHnJXTl","expanded_url":"http:\/\/twitter.com\/buzzerbeaterpr\/status\/663714408925818880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714405117329408,"id_str":"663714405117329408","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8vCVUAAApZhV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8vCVUAAApZhV.jpg","url":"https:\/\/t.co\/ByRjHnJXTl","display_url":"pic.twitter.com\/ByRjHnJXTl","expanded_url":"http:\/\/twitter.com\/buzzerbeaterpr\/status\/663714408925818880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CN8FnP10cY","expanded_url":"https:\/\/twitter.com\/buzzerbeaterpr\/status\/663714408925818880","display_url":"twitter.com\/buzzerbeaterpr\u2026","indices":[18,41]}],"user_mentions":[{"screen_name":"EdgardGarcia5","name":"Edgard","id":1036233680,"id_str":"1036233680","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CN8FnP10cY","expanded_url":"https:\/\/twitter.com\/buzzerbeaterpr\/status\/663714408925818880","display_url":"twitter.com\/buzzerbeaterpr\u2026","indices":[29,52]}],"user_mentions":[{"screen_name":"BBicv","name":"Brayan Calder\u00f3n","id":1661402282,"id_str":"1661402282","indices":[3,9]},{"screen_name":"EdgardGarcia5","name":"Edgard","id":1036233680,"id_str":"1036233680","indices":[11,25]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080015660"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447954944,"id_str":"663727808447954944","text":"La Alegr\u00eda es como el Sol, ilumina a quienes la poseen y reanima a cuantos reciben sus rayos.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3623164102,"id_str":"3623164102","name":"Erika Velasco ","screen_name":"ErikaVelasco_04","location":null,"url":null,"description":"Gente que te odia pero est\u00e1 pendiente todo el tiempo de lo que haces.","protected":false,"verified":false,"followers_count":12,"friends_count":214,"listed_count":0,"favourites_count":0,"statuses_count":1281,"created_at":"Fri Sep 11 18:45:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644986070187290625\/TYGExOOZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644986070187290625\/TYGExOOZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3623164102\/1442611638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477294592,"id_str":"663727808477294592","text":"Podoba mi si\u0119 film \u2661 NASZ \u015aLUB \u2661 KAROLINA I DAREK \u2661 w @YouTube \u2013 https:\/\/t.co\/Axw9XPG0Zt","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652932783,"id_str":"1652932783","name":"I can't hug my idols","screen_name":"gajaxxTiniR5Lau","location":"Poland\/Rzeszow\/UK ","url":"http:\/\/normally-impossible.blogspot.com","description":"Polish Girl! My YT channel:GajaLife I\u2665USA Robert Hoffman Ryan Gosling R5 Lau Ari Becky G Tini Lodo Ruggero A&A TB2 dancer singer.Sovia\/Hip-Hop\/Nale\u015bniki\/Pizza","protected":false,"verified":false,"followers_count":536,"friends_count":225,"listed_count":7,"favourites_count":11446,"statuses_count":14009,"created_at":"Wed Aug 07 13:08:01 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466247523426783234\/3j2c0oj3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466247523426783234\/3j2c0oj3.png","profile_background_tile":true,"profile_link_color":"FA0377","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652898002521210880\/LSDFSwK-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652898002521210880\/LSDFSwK-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652932783\/1444497987","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Axw9XPG0Zt","expanded_url":"http:\/\/youtu.be\/YksV4M5Imcs?a","display_url":"youtu.be\/YksV4M5Imcs?a","indices":[65,88]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[54,62]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808452165632,"id_str":"663727808452165632","text":"@donsanura \u304a\u3084\u3059\u307f\u306a\u3055\u30fc\u3044(*'\u03c9')\uff89\uff7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727359032360960,"in_reply_to_status_id_str":"663727359032360960","in_reply_to_user_id":1379311646,"in_reply_to_user_id_str":"1379311646","in_reply_to_screen_name":"donsanura","user":{"id":2501933898,"id_str":"2501933898","name":"\u306a\u304a@\u30a2\u30a4\u30ca\u30ca\u59cb\u3081\u307e\u3057\u305f","screen_name":"toybox_53","location":"\u3044\u308d\u3093\u306a\u6cbc","url":"http:\/\/pixiv.me\/nao_53","description":"BL\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u308a\u5275\u4f5c\u3057\u305f\u308a\u5b9f\u6cc1\u3057\u305f\u308a\u30b0\u30c3\u30ba\u53a8\u3060\u3063\u305f\u308a\u3002RT\uff06\u3075\u3041\u307c\u591a\u3081\u3002\u30a2\u30e9\u30b5\u30fc\u8150\u5973\u5b50\u3002\u3046\u305f\u30d7\u30ea(\u8056\u5ddd\u69d8\u62c5\u3001\u5bd2\u8272\u3001\u5fa1\u66f9\u53f8\u3001\u30eb\u30fc\u30ec\u30c3\u30c8\u3001\u30d7\u30ea\u6625\u3092\u4e2d\u5fc3\u306b\u4f55\u3067\u3082)\u3001\u30cf\u30a4\u30ad\u30e5\u30fc(\u70cf\u91ce\u3001\u5f71\u65e5\u3001\u6708\u65e5\u3001\u5927\u83c5)\u3001\u5200\u5263\u4e71\u821e(\u85ac\u7814\u304f\u3093\u3001\u6b4c\u4ed9\u3055\u3093\u3001\u3044\u3061\u5144)\u3001\u30c7\u30ab\u30ec\u30f3\u30b8\u30e3\u30fc\u306b\u5922\u4e2d\u3002\u5730\u96f7\u7121\u3057\u3002\u30cd\u30bf\u30d0\u30ec\uff06\u88cf\u57a2\u2192 @toybox53_ura","protected":false,"verified":false,"followers_count":69,"friends_count":152,"listed_count":3,"favourites_count":19202,"statuses_count":30461,"created_at":"Sat May 17 16:21:44 +0000 2014","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586211634495954944\/y1tXKyZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586211634495954944\/y1tXKyZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501933898\/1428680931","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"donsanura","name":"\u771f\u767d(\u307e\u3057\u308d)","id":1379311646,"id_str":"1379311646","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456163329,"id_str":"663727808456163329","text":"@pipizawashi \n\u6483\u3064\u306awwwwwwwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727538129100800,"in_reply_to_status_id_str":"663727538129100800","in_reply_to_user_id":3671274439,"in_reply_to_user_id_str":"3671274439","in_reply_to_screen_name":"pipizawashi","user":{"id":4003116793,"id_str":"4003116793","name":"\u30cf\u30c3\u30ab","screen_name":"22happeo","location":null,"url":null,"description":"\u8150\u308a\u3082\u306e \u6271\u3044 \u8981\u6ce8\u610f","protected":false,"verified":false,"followers_count":41,"friends_count":81,"listed_count":0,"favourites_count":34,"statuses_count":231,"created_at":"Sat Oct 24 14:20:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657926774383218693\/NEjjkY5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657926774383218693\/NEjjkY5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4003116793\/1445697003","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pipizawashi","name":"\u30b6 \u30ef \u30b7 luxion6.7.8","id":3671274439,"id_str":"3671274439","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477196288,"id_str":"663727808477196288","text":"all this fog","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042457069,"id_str":"3042457069","name":"DaJoeFlow","screen_name":"JJVCS","location":"Mystery ;) ","url":null,"description":"fuck whoever tells you no ! do you, be proud and love lots ! :) Peace, Love, and Positivity .","protected":false,"verified":false,"followers_count":31,"friends_count":39,"listed_count":0,"favourites_count":186,"statuses_count":584,"created_at":"Thu Feb 26 04:41:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656936725160136704\/rlcW1Tap_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656936725160136704\/rlcW1Tap_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042457069\/1444877132","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485568512,"id_str":"663727808485568512","text":"You are chosen to play the role of a highly skilled diplomat t... More for Capricorn https:\/\/t.co\/Ggs7CXUL8p","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459432574,"id_str":"459432574","name":"cruzito ","screen_name":"lovinthecruz","location":"Ch-i-cago","url":null,"description":"Here to fuck shit up.I be wildn cuz I'm young! ..teamwork makes the dream work.. #familyfirst #love & #loyalty","protected":false,"verified":false,"followers_count":149,"friends_count":239,"listed_count":1,"favourites_count":138,"statuses_count":5809,"created_at":"Mon Jan 09 17:19:40 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/426274044\/jordan_poster_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/426274044\/jordan_poster_.jpg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434316299020562432\/eAj_BnDz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434316299020562432\/eAj_BnDz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459432574\/1356216394","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ggs7CXUL8p","expanded_url":"http:\/\/bit.ly\/A5KmeJ","display_url":"bit.ly\/A5KmeJ","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015666"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481366016,"id_str":"663727808481366016","text":"@noriwaka69 \u3060\u304b\u3089\u6c17\u306b\u3059\u308b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727716542185472,"in_reply_to_status_id_str":"663727716542185472","in_reply_to_user_id":2749441684,"in_reply_to_user_id_str":"2749441684","in_reply_to_screen_name":"noriwaka69","user":{"id":2662357477,"id_str":"2662357477","name":"\u76f8\u68d2\u306f\u30d4\u30ab\u30c1\u30e5\u30a6","screen_name":"sts13days","location":null,"url":null,"description":"\uff27\uff2a\uff17\uff14\uff21 \u5bb6\u306b\u5e30\u308b\u3068\u59bb\u304c\u5fc5\u305a\u6b7b\u3093\u3060\u30d5\u30ea\u3092\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":257,"friends_count":454,"listed_count":9,"favourites_count":717,"statuses_count":2520,"created_at":"Sun Jul 20 09:29:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655978933960077312\/LFFfZ2ew_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655978933960077312\/LFFfZ2ew_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2662357477\/1446800475","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noriwaka69","name":"\uff89\uff98\uff9c\uff76","id":2749441684,"id_str":"2749441684","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481390592,"id_str":"663727808481390592","text":"Aku gak makan kok \ud83d\ude0a\ud83d\ude0a #diet #ilovemonday (at @madforgarlicjkt) [pic] \u2014 https:\/\/t.co\/OD7F6C05bm","source":"\u003ca href=\"https:\/\/path.com\/\" rel=\"nofollow\"\u003ePath\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440564890,"id_str":"440564890","name":"UwieJokowie #70KOWI","screen_name":"DwiSyafiarti","location":"Indonesia","url":null,"description":"What r u lookin at? Stalkers! I don't block account like looser, I'm with u Hana,you've built me an unseen protection #HOKI #BEJO Instagram uwieariani","protected":false,"verified":false,"followers_count":504,"friends_count":393,"listed_count":16,"favourites_count":310,"statuses_count":9033,"created_at":"Mon Dec 19 04:40:00 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747066325\/bc7af4343614b0e1e912e2708f8df1ff.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747066325\/bc7af4343614b0e1e912e2708f8df1ff.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656173552563916800\/sqCTCauF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656173552563916800\/sqCTCauF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440564890\/1411598354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-6.19673,106.82187]},"coordinates":{"type":"Point","coordinates":[106.82187,-6.19673]},"place":{"id":"019ffe0a3471b036","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/019ffe0a3471b036.json","place_type":"city","name":"Tanah Abang","full_name":"Tanah Abang, DKI Jakarta","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[106.801353,-6.226841],[106.801353,-6.176380],[106.832922,-6.176380],[106.832922,-6.226841]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"diet","indices":[21,26]},{"text":"ilovemonday","indices":[27,39]}],"urls":[{"url":"https:\/\/t.co\/OD7F6C05bm","expanded_url":"https:\/\/path.com\/p\/20uBJV","display_url":"path.com\/p\/20uBJV","indices":[70,93]}],"user_mentions":[{"screen_name":"madforgarlicjkt","name":"Mad for Garlic","id":255809535,"id_str":"255809535","indices":[44,60]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447799296,"id_str":"663727808447799296","text":"Kepo pernah ditepungin sama temen2 pas ultah?:))\n #110915","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Kepo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2316079432,"id_str":"2316079432","name":"Aliando Syarief","screen_name":"AlySyariiiief","location":"Indonesia","url":null,"description":"mau Follback? mention aja gausah #kode2","protected":false,"verified":false,"followers_count":2708,"friends_count":286,"listed_count":3,"favourites_count":3242,"statuses_count":100078,"created_at":"Fri Jan 31 13:05:25 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560862625341251584\/0enataoY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560862625341251584\/0enataoY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316079432\/1422555031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808456298496,"id_str":"663727808456298496","text":"RT @landpsychology: Unfaithful men have lower IQs.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2875352000,"id_str":"2875352000","name":"Mercy Vilakazi","screen_name":"mercyvilakazi","location":"Pretoria, South Africa","url":null,"description":"Director and owner of Little Troopers Academy. Entreprenuer. Humanitarian Projects in the community and Motivational\n Speaker","protected":false,"verified":false,"followers_count":26,"friends_count":36,"listed_count":0,"favourites_count":72,"statuses_count":127,"created_at":"Fri Oct 24 14:48:05 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646653768566710272\/yddhf4zr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646653768566710272\/yddhf4zr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 21:09:07 +0000 2015","id":661651340938973184,"id_str":"661651340938973184","text":"Unfaithful men have lower IQs.","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2924593731,"id_str":"2924593731","name":"Land of Psychology","screen_name":"landpsychology","location":null,"url":null,"description":"Psychology is a beautiful science. Here you can find fact about this field.\nlandofpsychology@gmail.com","protected":false,"verified":false,"followers_count":76697,"friends_count":71754,"listed_count":166,"favourites_count":0,"statuses_count":22592,"created_at":"Tue Dec 16 09:24:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544808591278882817\/GymYNbRv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544808591278882817\/GymYNbRv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2924593731\/1418727815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"landpsychology","name":"Land of Psychology","id":2924593731,"id_str":"2924593731","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015659"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477134848,"id_str":"663727808477134848","text":"\u5b8c\u5168\u306b\u306a\u3063\u305f\u304b\u3089\u3001\u4eba\u306b\u8a8d\u3081\u3089\u308c\u308b\u308f\u3051\u3067\u306f\u306a\u3044\u3002 \n\u5b8c\u5168\u306b\u306a\u3063\u305f\u304b\u3089\u3001\u4eba\u306b\u611b\u3055\u308c\u308b\u308f\u3051\u3067\u306f\u306a\u3044\u3002 \n\u8ab0\u304b\u304c\u3042\u306a\u305f\u3092\u597d\u304d\u3067\u3044\u3066\u304f\u308c\u308b\u306e\u306f\u3001 \n\u3042\u306a\u305f\u304c\u512a\u308c\u3066\u3044\u308b\u304b\u3089\u3058\u3083\u306a\u3044\u3002 \n\u3042\u306a\u305f\u304c\u3042\u306a\u305f\u3060\u304b\u3089\u3060\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314893394,"id_str":"3314893394","name":"\u604b\u306f\u3075\u3057\u3060\u3089\u306b\u3002\u3002","screen_name":"bot24519106","location":null,"url":null,"description":"\u3053\u3053\u3067\u3084\u3089\u306a\u304d\u3083\u5973\u304c\u5ec3\u308b","protected":false,"verified":false,"followers_count":350,"friends_count":437,"listed_count":1,"favourites_count":0,"statuses_count":3157,"created_at":"Fri Aug 14 08:49:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633892464890245121\/4gh0x1e7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633892464890245121\/4gh0x1e7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314893394\/1439966824","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808473001984,"id_str":"663727808473001984","text":"@___tktk_ \u3046\u3063\u2026\u52aa\u529b\u3057\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726688644141057,"in_reply_to_status_id_str":"663726688644141057","in_reply_to_user_id":3068312305,"in_reply_to_user_id_str":"3068312305","in_reply_to_screen_name":"___tktk_","user":{"id":262090987,"id_str":"262090987","name":"\u3086\u3051\u304a\u306f\u672c\u65e5\u964d\u8a95\u4f1a","screen_name":"sy498","location":"40\u30b2\u30fc\u30c8\u30b9\u30bf\u30f3\u30c9\u4e00\u5841\u5074","url":null,"description":"\u6210\u4eba\u6e08\u8150\u5973\u5b50\u3002\u30c4\u30ad\u30a6\u30bf(\u967d\u591c\u30fb\u65b0\u8475\u30fb\u6d77\u96bc)\u30fb\u3068\u3046\u3089\u3076\u30fb\u3048\u3081\u305b\u3074\u30fbK\u30fbHQ\u306a\u3069\u3001\u57a2\u5206\u3051\u51fa\u6765\u306a\u3044\u306e\u3067\u3001\u65e5\u5e38\u304b\u3089\u30de\u30f3\u30ac\u30fb\u30a2\u30cb\u30e1\u307e\u3067\u96d1\u591a\u306b\u3064\u3076\u3084\u3044\u3066\u307e\u3059\u3002\u5316\u732b\u56f3\u66f8\u59d4\u54e1\u3002\u3082\u3057\u3087\u3082\u3057\u3087\u843d\u66f8\u304d\u3057\u305f\u308a\u30b3\u30b9\u30d7\u30ec\u3057\u305f\u308a\u3002\u30b3\u30b9\u306f\u95a2\u6771\u304b\u3089\u95a2\u897f\u307e\u3067\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002\u7a81\u7136\u306e\u4e0b\u30cd\u30bf\u6ce8\u610f\u3002\u30bf\u30ec\u76ee\u306f\u3054\u8912\u7f8e\u3002\u30d8\u30c3\u30c0\u30fc\u591c\u304f\u3093@\u685c\u826f\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":134,"friends_count":173,"listed_count":16,"favourites_count":6348,"statuses_count":49590,"created_at":"Mon Mar 07 09:59:27 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662293725062664193\/iLpCMtzz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662293725062664193\/iLpCMtzz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/262090987\/1443521267","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___tktk_","name":"\u305f\u304b","id":3068312305,"id_str":"3068312305","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015663"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485527552,"id_str":"663727808485527552","text":"@osamu888 @mikurutaruto \u30ad\u30c4\u30a4\u3088\u306a\u7981\u9152\u306f\uff65\uff65\uff65\uff65\u6211\u6162\u3059\u308b\u306a\u3088\u3002\u9152\u306f\u4f55\u304c\u597d\u304d\u306a\u3093\u3060\uff1f\u307e\u305a\u306f\u30d3\u30fc\u30eb\u3060\u306a\u3001\u5f8c\u306f\u65e5\u672c\u9152\u304b\uff1f\u713c\u914e\u306b\u3059\u308b\u304b\uff1fhttps:\/\/t.co\/GZqGZX5bnz","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":87647337,"in_reply_to_user_id_str":"87647337","in_reply_to_screen_name":"osamu888","user":{"id":3087350615,"id_str":"3087350615","name":"@osamu888","screen_name":"masonjanacek","location":null,"url":null,"description":"\u672c\u57a2\u2192osamu888","protected":false,"verified":false,"followers_count":518,"friends_count":592,"listed_count":0,"favourites_count":0,"statuses_count":7306,"created_at":"Wed Mar 11 17:50:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597308557936099328\/FOOL6pib_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597308557936099328\/FOOL6pib_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3087350615\/1431244301","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GZqGZX5bnz","expanded_url":"http:\/\/twitter.com\/insyutou\/status\/575107235832954880\/photo\/1","display_url":"pic.twitter.com\/GZqGZX5bnz","indices":[76,99]}],"user_mentions":[{"screen_name":"osamu888","name":"osamu","id":87647337,"id_str":"87647337","indices":[0,9]},{"screen_name":"mikurutaruto","name":"\u307f\u304f\u308b","id":2613500682,"id_str":"2613500682","indices":[10,23]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015666"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808477179905,"id_str":"663727808477179905","text":"RT @kwangIsVip: \u0e41\u0e21\u0e19\u0e46 \u0e08\u0e39\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e31\u0e19\u0e40\u0e02\u0e49\u0e32\u0e25\u0e34\u0e1f\u0e15\u0e4c\u0e40\u0e19\u0e2d\u0e30 #\u0e1e\u0e35\u0e48\u0e01\u0e23\u0e04\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e19\u0e49\u0e2d\u0e07 #KongChuinan #hooleeger https:\/\/t.co\/NWqZqC5QRm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":565153702,"id_str":"565153702","name":"Yai_ELF. KG","screen_name":"ELF_Thailand_","location":"Thailand","url":null,"description":"\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e0a\u0e48\u0e27\u0e07\u0e2b\u0e25\u0e07\u0e1e\u0e35\u0e48\u0e02\u0e48\u0e07\u0e40\u0e01\u0e4b\u0e2d\u0e40\u0e01\u0e4b\u0e2d\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e41\u0e23\u0e07\u0e07\u0e07\u0e07\u0e07...","protected":false,"verified":false,"followers_count":238,"friends_count":769,"listed_count":2,"favourites_count":879,"statuses_count":2841,"created_at":"Sat Apr 28 04:19:44 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663625964186808320\/1qDIyYI1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663625964186808320\/1qDIyYI1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565153702\/1436970768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:41:37 +0000 2015","id":663713050659131392,"id_str":"663713050659131392","text":"\u0e41\u0e21\u0e19\u0e46 \u0e08\u0e39\u0e07\u0e21\u0e37\u0e2d\u0e01\u0e31\u0e19\u0e40\u0e02\u0e49\u0e32\u0e25\u0e34\u0e1f\u0e15\u0e4c\u0e40\u0e19\u0e2d\u0e30 #\u0e1e\u0e35\u0e48\u0e01\u0e23\u0e04\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e19\u0e49\u0e2d\u0e07 #KongChuinan #hooleeger https:\/\/t.co\/NWqZqC5QRm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203797218,"id_str":"203797218","name":"\u2661\u2665\u300aGer's my son\u300b\u2661\u2665","screen_name":"kwangIsVip","location":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":"https:\/\/www.facebook.com\/kwang.kornwarin","description":"You are the sun at midnight","protected":false,"verified":false,"followers_count":322,"friends_count":219,"listed_count":0,"favourites_count":1971,"statuses_count":7145,"created_at":"Sun Oct 17 04:45:04 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467508289517785089\/lfVDX82c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467508289517785089\/lfVDX82c.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663011921029828608\/3A64wj5o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663011921029828608\/3A64wj5o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203797218\/1446909333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":15,"entities":{"hashtags":[{"text":"\u0e1e\u0e35\u0e48\u0e01\u0e23\u0e04\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e19\u0e49\u0e2d\u0e07","indices":[28,44]},{"text":"KongChuinan","indices":[45,57]},{"text":"hooleeger","indices":[58,68]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713047521816576,"id_str":"663713047521816576","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","url":"https:\/\/t.co\/NWqZqC5QRm","display_url":"pic.twitter.com\/NWqZqC5QRm","expanded_url":"http:\/\/twitter.com\/kwangIsVip\/status\/663713050659131392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":430,"resize":"fit"},"medium":{"w":240,"h":430,"resize":"fit"},"small":{"w":240,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713047521816576,"id_str":"663713047521816576","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","url":"https:\/\/t.co\/NWqZqC5QRm","display_url":"pic.twitter.com\/NWqZqC5QRm","expanded_url":"http:\/\/twitter.com\/kwangIsVip\/status\/663713050659131392\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":430,"resize":"fit"},"medium":{"w":240,"h":430,"resize":"fit"},"small":{"w":240,"h":430,"resize":"fit"}},"video_info":{"aspect_ratio":[24,43],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX7gA5UcAAKIlI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1e\u0e35\u0e48\u0e01\u0e23\u0e04\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e19\u0e49\u0e2d\u0e07","indices":[44,60]},{"text":"KongChuinan","indices":[61,73]},{"text":"hooleeger","indices":[74,84]}],"urls":[],"user_mentions":[{"screen_name":"kwangIsVip","name":"\u2661\u2665\u300aGer's my son\u300b\u2661\u2665","id":203797218,"id_str":"203797218","indices":[3,14]}],"symbols":[],"media":[{"id":663713047521816576,"id_str":"663713047521816576","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","url":"https:\/\/t.co\/NWqZqC5QRm","display_url":"pic.twitter.com\/NWqZqC5QRm","expanded_url":"http:\/\/twitter.com\/kwangIsVip\/status\/663713050659131392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":430,"resize":"fit"},"medium":{"w":240,"h":430,"resize":"fit"},"small":{"w":240,"h":430,"resize":"fit"}},"source_status_id":663713050659131392,"source_status_id_str":"663713050659131392","source_user_id":203797218,"source_user_id_str":"203797218"}]},"extended_entities":{"media":[{"id":663713047521816576,"id_str":"663713047521816576","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX7gA5UcAAKIlI.png","url":"https:\/\/t.co\/NWqZqC5QRm","display_url":"pic.twitter.com\/NWqZqC5QRm","expanded_url":"http:\/\/twitter.com\/kwangIsVip\/status\/663713050659131392\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":240,"h":430,"resize":"fit"},"medium":{"w":240,"h":430,"resize":"fit"},"small":{"w":240,"h":430,"resize":"fit"}},"source_status_id":663713050659131392,"source_status_id_str":"663713050659131392","source_user_id":203797218,"source_user_id_str":"203797218","video_info":{"aspect_ratio":[24,43],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX7gA5UcAAKIlI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080015664"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808451973120,"id_str":"663727808451973120","text":"RT @ShowbizBanter: We believe that #DestinyRose should have been included in GMA Telebabad! The story and acting are primetime calibre. #fo\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715787920,"id_str":"1715787920","name":"Vince Balbanero","screen_name":"vinceriverao17","location":"Muntinlupa City","url":null,"description":"Certified ALDUBnatics, Japs'Adiks, JoshBie Forever, Forever JhaBea, Parts Of JulieMo Family, Tweens Stars Fan, Tween Academy Member xD, Biguel Holics, Sangre\u2661","protected":false,"verified":false,"followers_count":199,"friends_count":0,"listed_count":5,"favourites_count":2428,"statuses_count":10124,"created_at":"Sat Aug 31 14:05:52 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662534831876665349\/CiqI0QJP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662534831876665349\/CiqI0QJP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715787920\/1446795586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:30:27 +0000 2015","id":663574347747954688,"id_str":"663574347747954688","text":"We believe that #DestinyRose should have been included in GMA Telebabad! The story and acting are primetime calibre. #follow4Updates","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3105699768,"id_str":"3105699768","name":"Showbiz Banter","screen_name":"ShowbizBanter","location":null,"url":null,"description":"Anything SHOWBIZ and so much more","protected":false,"verified":false,"followers_count":16754,"friends_count":25,"listed_count":12,"favourites_count":1,"statuses_count":2296,"created_at":"Tue Mar 24 02:16:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580193299224363008\/40Kf_gB6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580193299224363008\/40Kf_gB6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3105699768\/1427892223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":142,"entities":{"hashtags":[{"text":"DestinyRose","indices":[16,28]},{"text":"follow4Updates","indices":[117,132]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DestinyRose","indices":[35,47]},{"text":"follow4Updates","indices":[136,140]}],"urls":[],"user_mentions":[{"screen_name":"ShowbizBanter","name":"Showbiz Banter","id":3105699768,"id_str":"3105699768","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015658"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808447774720,"id_str":"663727808447774720","text":"\u5916\u52d9\u7701\u3055\u3093\u3001\u3061\u3083\u3093\u3068\u4ed5\u4e8b\u3057\u3066\u306d\u3002\u56fd\u9023\u3055\u3093\u6b63\u3057\u3044\u304a\u4ed5\u4e8b\u3057\u3066\u306d\u3002 https:\/\/t.co\/g4q2vdWBf6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1698109040,"id_str":"1698109040","name":"\u30a6\u30a3\u30f3@\u30ca\u30d3","screen_name":"FwindYami","location":"\u6803\u6728\u770c\u3055\u304f\u3089\u5e02","url":null,"description":"\u30a2\u30e9\u30b5\u30fc\u3001\u63d0\u7763\u3001MS\u30d1\u30a4\u30ed\u30c3\u30c8\u3001\u30e9\u30a4\u30c0\u30fc\u3001\u8aad\u66f8\u5bb6\u3001\u30b5\u30d0\u30b2\u30fc\u30de\u30fc\u3001\u7d44\u307f\u8fbc\u307f\u7cfbSE\u3001\u30cf\u30f3\u30bf\u30fc\u3001\u30cb\u30b3\u53a8\u306e\u65e5\u5e38","protected":false,"verified":false,"followers_count":4,"friends_count":44,"listed_count":0,"favourites_count":8,"statuses_count":47,"created_at":"Sun Aug 25 04:08:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554263029785710592\/PdSZ6H8x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554263029785710592\/PdSZ6H8x_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720252929282048,"quoted_status_id_str":"663720252929282048","quoted_status":{"created_at":"Mon Nov 09 14:10:14 +0000 2015","id":663720252929282048,"id_str":"663720252929282048","text":"IT\u30fb\u79d1\u5b66 - \u300c\u65e5\u672c\u306e\u5973\u5b50\u5b66\u751f\u306e13\uff05\u304c\u63f4\u52a9\u4ea4\u969b\u300d\u56fd\u9023\u5831\u544a\u8005\u306e\u767a\u8a00\u3001\u5916\u52d9\u7701\u304c\u64a4\u56de\u8981\u6c42\uff08ITmedia \u30cb\u30e5\u30fc\u30b9\uff09 - Y!\u30cb\u30e5\u30fc\u30b9 https:\/\/t.co\/9jUr0vGb73","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1384239793,"id_str":"1384239793","name":"\u304a\u5f97\u306a\u304a\u77e5\u3089\u305b\uff01","screen_name":"postscript21","location":"\u65e5\u672c","url":"http:\/\/net-search-club.seesaa.net","description":"\u304a\u5f97\u306a\u304a\u77e5\u3089\u305b\u3092\u7d39\u4ecb\u3059\u308b\u3001\u60c5\u5831\u914d\u4fe1\u30c4\u30a4\u30fc\u30c8\u3067\u3059\u3002\u304a\u77e5\u3089\u305b\u3057\u305f\u3044\u3001\u3053\u3053\u3060\u3051\u306e\u304a\u5f97\u306a\u60c5\u5831\u306a\u3069\u3082\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u671f\u9593\u9650\u5b9a\u3001\u5148\u7740\u9806\u3001\u305d\u306e\u4ed6\u306e\u6761\u4ef6\u4ed8\u304d\u306e\u5834\u5408\u306f\u3054\u5bb9\u8d66\u4e0b\u3055\u3044\uff01\u203b\u53e4\u3044\u60c5\u5831\u306f\u3001\u524a\u9664\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002 #\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc #followback \u203b\u516c\u5e8f\u826f\u4fd7\u306b\u53cd\u3059\u308b\u3082\u306e\u30fb\u30a2\u30c0\u30eb\u30c8\u306f\u4e0d\u53ef\uff01","protected":false,"verified":false,"followers_count":912,"friends_count":918,"listed_count":12,"favourites_count":97,"statuses_count":483,"created_at":"Sat Apr 27 11:33:25 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC00","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"FF6600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470054381186854912\/FNvar7AE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470054381186854912\/FNvar7AE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1384239793\/1399189813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9jUr0vGb73","expanded_url":"http:\/\/rdsig.yahoo.co.jp\/rss\/l\/headlines\/sci\/zdn_n\/RV=1\/RU=aHR0cDovL2hlYWRsaW5lcy55YWhvby5jby5qcC9obD9hPTIwMTUxMTA5LTAwMDAwMDk4LXpkbl9uLXNjaQ--","display_url":"rdsig.yahoo.co.jp\/rss\/l\/headline\u2026","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g4q2vdWBf6","expanded_url":"https:\/\/twitter.com\/postscript21\/status\/663720252929282048","display_url":"twitter.com\/postscript21\/s\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080015657"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808451973121,"id_str":"663727808451973121","text":"RT @Steve_Walentik: Am standing at the Carnahan Quad and two trucks just drove by, including one waving a confederate battle flag and an Am\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329190613,"id_str":"329190613","name":"MJ","screen_name":"11ringsSTL","location":"United States","url":null,"description":"Chief Potato Peeler, Paperfolder, Mall Santa, Moonshiner, Unicorn Breeder, Log Splitter. 140 characters = highlights, not the whole story.","protected":false,"verified":false,"followers_count":224,"friends_count":2025,"listed_count":6,"favourites_count":1834,"statuses_count":4520,"created_at":"Mon Jul 04 17:38:57 +0000 2011","utc_offset":-21600,"time_zone":"America\/Chicago","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530168442662301696\/HxnsO3vX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530168442662301696\/HxnsO3vX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329190613\/1357083660","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:53:44 +0000 2015","id":663474510654410752,"id_str":"663474510654410752","text":"Am standing at the Carnahan Quad and two trucks just drove by, including one waving a confederate battle flag and an American flag.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76982642,"id_str":"76982642","name":"Steve Walentik","screen_name":"Steve_Walentik","location":"Columbia, MO","url":"http:\/\/www.columbiatribune.com\/blogs\/courtside_view\/","description":"College basketball writer covering #Mizzou, SEC for Columbia Daily Tribune","protected":false,"verified":true,"followers_count":6873,"friends_count":1032,"listed_count":286,"favourites_count":167,"statuses_count":21520,"created_at":"Thu Sep 24 16:40:58 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/48978049\/Sports_Twitter_Background.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/48978049\/Sports_Twitter_Background.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497079665\/walentik_r240x210_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497079665\/walentik_r240x210_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76982642\/1398887225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Steve_Walentik","name":"Steve Walentik","id":76982642,"id_str":"76982642","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015658"} +{"delete":{"status":{"id":535557767700832256,"id_str":"535557767700832256","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080015938"}} +{"delete":{"status":{"id":661001057871368192,"id_str":"661001057871368192","user_id":3172366844,"user_id_str":"3172366844"},"timestamp_ms":"1447080015921"}} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808481505280,"id_str":"663727808481505280","text":"Thank you man but it was yesterday but still appreciate it G, respect \ud83d\udc4a\ud83c\udffe #TeamCedarHall https:\/\/t.co\/ghJMfjN7d7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20669301,"id_str":"20669301","name":"Khai Riley-La Borde","screen_name":"BossLikeKhai","location":"110m Hurdles ","url":"http:\/\/cedarhallclinic.co.uk","description":"Studying The Fundamentals And Mechanics Of Motor Vehicle\u2022 Enfield and Haringey Male Representive\u2022","protected":false,"verified":false,"followers_count":1423,"friends_count":1154,"listed_count":6,"favourites_count":4625,"statuses_count":41764,"created_at":"Thu Feb 12 11:27:40 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/810618568\/858c5b468a40872f49e671edce365e39.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/810618568\/858c5b468a40872f49e671edce365e39.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627762992227176448\/61hEFjSe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627762992227176448\/61hEFjSe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20669301\/1438814818","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01c7de39d50eab15","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01c7de39d50eab15.json","place_type":"city","name":"Romford","full_name":"Romford, London","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[0.140821,51.500544],[0.140821,51.620630],[0.280358,51.620630],[0.280358,51.500544]]]},"attributes":{}},"contributors":null,"quoted_status_id":663724792512663553,"quoted_status_id_str":"663724792512663553","quoted_status":{"created_at":"Mon Nov 09 14:28:16 +0000 2015","id":663724792512663553,"id_str":"663724792512663553","text":"Happy birthday @BossLikeKhai! Have a great one boss #TeamCedarHall","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1927225021,"id_str":"1927225021","name":"Matthew Hamilton","screen_name":"ErbsMatt","location":"Essex","url":"https:\/\/www.facebook.com\/ErbsMatt","description":"Ambassador for @ActiveEssex. Team @CedarHallOsteos Believer in the power of passion!","protected":false,"verified":false,"followers_count":284,"friends_count":88,"listed_count":6,"favourites_count":2329,"statuses_count":322,"created_at":"Wed Oct 02 15:18:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498443630529363969\/ayEe9LOW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498443630529363969\/ayEe9LOW.jpeg","profile_background_tile":true,"profile_link_color":"1408C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626710007392940032\/2KAeZiQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626710007392940032\/2KAeZiQQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1927225021\/1440367604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeamCedarHall","indices":[52,66]}],"urls":[],"user_mentions":[{"screen_name":"BossLikeKhai","name":"Khai Riley-La Borde","id":20669301,"id_str":"20669301","indices":[15,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeamCedarHall","indices":[73,87]}],"urls":[{"url":"https:\/\/t.co\/ghJMfjN7d7","expanded_url":"https:\/\/twitter.com\/erbsmatt\/status\/663724792512663553","display_url":"twitter.com\/erbsmatt\/statu\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015665"} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808485560320,"id_str":"663727808485560320","text":"Beautiful in Every Angle\n\nLiza TheMostBeautiful\n\n@tccandler https:\/\/t.co\/pF42DheD0X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3270933006,"id_str":"3270933006","name":"Seaman'sWife","screen_name":"5e20b3a4d021459","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":200,"friends_count":58,"listed_count":15,"favourites_count":2908,"statuses_count":32427,"created_at":"Tue Jul 07 13:13:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657037699619024896\/s8nue71Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657037699619024896\/s8nue71Y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[49,59]}],"symbols":[],"media":[{"id":663727805755056133,"id_str":"663727805755056133","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7DmUYAUBIFG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7DmUYAUBIFG.jpg","url":"https:\/\/t.co\/pF42DheD0X","display_url":"pic.twitter.com\/pF42DheD0X","expanded_url":"http:\/\/twitter.com\/5e20b3a4d021459\/status\/663727808485560320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":398,"resize":"fit"},"medium":{"w":480,"h":563,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":563,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727805755056133,"id_str":"663727805755056133","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7DmUYAUBIFG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7DmUYAUBIFG.jpg","url":"https:\/\/t.co\/pF42DheD0X","display_url":"pic.twitter.com\/pF42DheD0X","expanded_url":"http:\/\/twitter.com\/5e20b3a4d021459\/status\/663727808485560320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":398,"resize":"fit"},"medium":{"w":480,"h":563,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":563,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015666"} +{"delete":{"status":{"id":650954198255726592,"id_str":"650954198255726592","user_id":3116927503,"user_id_str":"3116927503"},"timestamp_ms":"1447080015974"}} +{"delete":{"status":{"id":663625547121975296,"id_str":"663625547121975296","user_id":4024725973,"user_id_str":"4024725973"},"timestamp_ms":"1447080016011"}} +{"delete":{"status":{"id":663722787870081024,"id_str":"663722787870081024","user_id":177134089,"user_id_str":"177134089"},"timestamp_ms":"1447080016098"}} +{"delete":{"status":{"id":660367814453252096,"id_str":"660367814453252096","user_id":186327384,"user_id_str":"186327384"},"timestamp_ms":"1447080016151"}} +{"delete":{"status":{"id":662573968029708289,"id_str":"662573968029708289","user_id":2283644316,"user_id_str":"2283644316"},"timestamp_ms":"1447080016115"}} +{"delete":{"status":{"id":663727321938075648,"id_str":"663727321938075648","user_id":3943784938,"user_id_str":"3943784938"},"timestamp_ms":"1447080016176"}} +{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727808468774912,"id_str":"663727808468774912","text":"Mr. Hill turns 50 today. Be sure to give @MURentDoctor a hard time....for marrying a waaay younger woman. ;- ) https:\/\/t.co\/El4qu6hy9S","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41606452,"id_str":"41606452","name":"Sarah Hill","screen_name":"SarahMidMO","location":"Columbia, MO","url":"http:\/\/www.story-up.com\/","description":"Chief Storyteller @StoryUpStudios \u25cf VR Journalism \u25cf Augmented Reality \u25cf Veterans cheerleader \u25cfHuman Media \u25cf Creating 4 VR Renaissance\u25cf Geekette","protected":false,"verified":false,"followers_count":7925,"friends_count":6007,"listed_count":387,"favourites_count":3523,"statuses_count":19092,"created_at":"Thu May 21 15:23:05 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540960332307374080\/B16SXiz1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540960332307374080\/B16SXiz1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41606452\/1431919258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MURentDoctor","name":"Rob Hill","id":239594879,"id_str":"239594879","indices":[42,55]}],"symbols":[],"media":[{"id":663727807621525504,"id_str":"663727807621525504","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7KjUcAALGJe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7KjUcAALGJe.jpg","url":"https:\/\/t.co\/El4qu6hy9S","display_url":"pic.twitter.com\/El4qu6hy9S","expanded_url":"http:\/\/twitter.com\/SarahMidMO\/status\/663727808468774912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727807621525504,"id_str":"663727807621525504","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7KjUcAALGJe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7KjUcAALGJe.jpg","url":"https:\/\/t.co\/El4qu6hy9S","display_url":"pic.twitter.com\/El4qu6hy9S","expanded_url":"http:\/\/twitter.com\/SarahMidMO\/status\/663727808468774912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080015662"} +{"delete":{"status":{"id":662606016693932032,"id_str":"662606016693932032","user_id":2478115256,"user_id_str":"2478115256"},"timestamp_ms":"1447080016406"}} +{"delete":{"status":{"id":662619044202201088,"id_str":"662619044202201088","user_id":324932418,"user_id_str":"324932418"},"timestamp_ms":"1447080016419"}} +{"delete":{"status":{"id":662787336451698688,"id_str":"662787336451698688","user_id":265709715,"user_id_str":"265709715"},"timestamp_ms":"1447080016448"}} +{"delete":{"status":{"id":650187869546393601,"id_str":"650187869546393601","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080016507"}} +{"delete":{"status":{"id":663727724591099905,"id_str":"663727724591099905","user_id":365359328,"user_id_str":"365359328"},"timestamp_ms":"1447080016550"}} +{"delete":{"status":{"id":420452572864864256,"id_str":"420452572864864256","user_id":1620620792,"user_id_str":"1620620792"},"timestamp_ms":"1447080016641"}} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667404288,"id_str":"663727812667404288","text":"RT @KidwellsLaw: We are pleased to be sponsoring the Xmas lights switch on Sunday 15th November from 3.00 till 5.00 with @sunshine855 come\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3131286647,"id_str":"3131286647","name":"Eat Sleep Live Hfds","screen_name":"HfdsESL","location":"Herefordshire","url":"http:\/\/www.eatsleepliveherefordshire.co.uk","description":"Tourism, Leisure, Food & Drink portal for #Herefordshire UK: THE place to see, do, eat, sleep & enjoy the county. Press visits\/enquiries welcome.","protected":false,"verified":false,"followers_count":1348,"friends_count":1274,"listed_count":23,"favourites_count":507,"statuses_count":1989,"created_at":"Thu Apr 02 12:03:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589917271717502978\/zw127dad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589917271717502978\/zw127dad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3131286647\/1444913856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:29 +0000 2015","id":663726860224757760,"id_str":"663726860224757760","text":"We are pleased to be sponsoring the Xmas lights switch on Sunday 15th November from 3.00 till 5.00 with @sunshine855 come along and join us","source":"\u003ca href=\"http:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61755527,"id_str":"61755527","name":"Kidwells Law","screen_name":"KidwellsLaw","location":"Hereford","url":"http:\/\/www.kidwellssolicitors.co.uk","description":"Kidwells is a Law Society Lexcel accredited, dynamic firm of solicitors. Based in the heart of Hereford we combine local presence with city professionalism.","protected":false,"verified":false,"followers_count":1640,"friends_count":1012,"listed_count":56,"favourites_count":479,"statuses_count":5121,"created_at":"Fri Jul 31 12:03:25 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/133451795\/twit6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/133451795\/twit6.jpg","profile_background_tile":false,"profile_link_color":"232E4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2F2F2","profile_text_color":"575757","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1099861187\/logotwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1099861187\/logotwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61755527\/1421323304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sunshine855","name":"Sunshine Radio 105.9","id":252654534,"id_str":"252654534","indices":[105,117]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KidwellsLaw","name":"Kidwells Law","id":61755527,"id_str":"61755527","indices":[3,15]},{"screen_name":"sunshine855","name":"Sunshine Radio 105.9","id":252654534,"id_str":"252654534","indices":[122,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812663226368,"id_str":"663727812663226368","text":"Quando acabar meu contrato de 1 ano e 2 meses quero ficar 2 anos e 4 meses sem trabalha.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3433262613,"id_str":"3433262613","name":"Camila Eduarda","screen_name":"pohaduarda","location":null,"url":null,"description":"snap:pxa.eeduarda","protected":false,"verified":false,"followers_count":125,"friends_count":126,"listed_count":0,"favourites_count":237,"statuses_count":449,"created_at":"Thu Aug 20 21:21:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660102762932412418\/abecoV41_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660102762932412418\/abecoV41_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3433262613\/1445564179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080016662"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642250752,"id_str":"663727812642250752","text":"Nuestros s\u00e1bados de futsal \ud83d\udc4c @17_anitaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":997708800,"id_str":"997708800","name":"\u266aJUANARUIZ","screen_name":"JuaniTaRuuiz","location":"Chiclana De La Frontera ","url":"http:\/\/instagram.com\/juanaruiz19","description":"16.\/ Daniielita mi vida! \/ LUIS ALBA MORALES \u2764 190413\u221e \/\/\/ Chiclana de la Frontera","protected":false,"verified":false,"followers_count":391,"friends_count":472,"listed_count":0,"favourites_count":290,"statuses_count":4621,"created_at":"Sat Dec 08 18:28:58 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"00FFCC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/525230061784297472\/D5DAtaZZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/525230061784297472\/D5DAtaZZ.jpeg","profile_background_tile":true,"profile_link_color":"EB008D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628570509299613696\/_Z8zXQEJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628570509299613696\/_Z8zXQEJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/997708800\/1438697860","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"17_anitaa","name":"aniitaaa\u2661","id":1137193434,"id_str":"1137193434","indices":[29,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016657"} +{"delete":{"status":{"id":663724985702326273,"id_str":"663724985702326273","user_id":1532445512,"user_id_str":"1532445512"},"timestamp_ms":"1447080016694"}} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812680024064,"id_str":"663727812680024064","text":"Copyright Office issues DMCA exemptions for automotive software, jailbreak smart TVs via ipwatchdog at https:\/\/t.co\/FSNCX5LbSW ipwatchdog","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21728935,"id_str":"21728935","name":"PatentCafe","screen_name":"PatentCafe","location":null,"url":"http:\/\/www.patentcafe.in","description":"All things patent!","protected":false,"verified":false,"followers_count":758,"friends_count":685,"listed_count":52,"favourites_count":141,"statuses_count":9465,"created_at":"Tue Feb 24 04:24:26 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620533892731174912\/wZfLO-TI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620533892731174912\/wZfLO-TI_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FSNCX5LbSW","expanded_url":"http:\/\/www.ipwatchdog.com\/?p=62834","display_url":"ipwatchdog.com\/?p=62834","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016666"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812663111680,"id_str":"663727812663111680","text":"RT @sinanomaru: \u3093\u3067\u4f1a\u898b\u3067\u300c\u3042\u304b\u3064\u304d\u300d\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306e\u4e2d\u6751\u5148\u751f\u304c\u8a00\u3063\u3066\u305f\u300c\u3082\u3046\u30c0\u30e1\u3060\u300d\u3068\u601d\u3063\u305f\u77ac\u9593\n\nNASA\u304b\u3089\u7dca\u6025\u9023\u7d61\n\u2193\n\u300c\u3042\u304b\u3064\u304d\u300d\u304b\u3089\u306e\u96fb\u6ce2\u304c\u53d7\u4fe1\u3067\u304d\u306a\u3044\n\u2193\n\u3042\u304b\u3064\u304d\u30c1\u30fc\u30e0\u300c\u9042\u306b\u305d\u306e\u6642\u304c\u6765\u305f\u304b\u2026\u300d(\u8010\u7528\u5e74\u6570\u7684\u306b\u306f\u65e2\u306b\u30e4\u30d0\u3044)\n\n(\u7d9a\u304f)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137652109,"id_str":"137652109","name":"\u307e\u30fc\u3089\u3044\u304a\u3093","screen_name":"merlionjam","location":"\u6a2a\u6d5c","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\u3001\u307e\u30fc\u3089\u3044\u304a\u3093\u3067\u3059\u3002 TRPG\u3068\u30dc\u30fc\u30c9\u30b2\u30fc\u30e0\u3092\u305f\u3057\u306a\u3080\u5de8\u6f22\uff08\u4e3b\u306b\u6a2a\u65b9\u5411\uff09\u3002\u30d8\u30c3\u30c0\u30fc\u306e\u5199\u771f\u306f\u3001\u30b8\u30a7\u30a4\u30af\uff08@Jake_SYS \uff09\u3055\u3093\u306b\u4f5c\u3063\u3066\u3082\u3089\u3063\u305f\u30af\u30ed\u30b9\u30b9\u30c6\u30c3\u30c1\u306e\u96ea\u6b69\u3067\u3059","protected":false,"verified":false,"followers_count":483,"friends_count":861,"listed_count":32,"favourites_count":222,"statuses_count":32960,"created_at":"Tue Apr 27 10:25:33 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548708210354298880\/_KjeynU9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548708210354298880\/_KjeynU9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137652109\/1398230859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:30:28 +0000 2015","id":663619650173865984,"id_str":"663619650173865984","text":"\u3093\u3067\u4f1a\u898b\u3067\u300c\u3042\u304b\u3064\u304d\u300d\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u306e\u4e2d\u6751\u5148\u751f\u304c\u8a00\u3063\u3066\u305f\u300c\u3082\u3046\u30c0\u30e1\u3060\u300d\u3068\u601d\u3063\u305f\u77ac\u9593\n\nNASA\u304b\u3089\u7dca\u6025\u9023\u7d61\n\u2193\n\u300c\u3042\u304b\u3064\u304d\u300d\u304b\u3089\u306e\u96fb\u6ce2\u304c\u53d7\u4fe1\u3067\u304d\u306a\u3044\n\u2193\n\u3042\u304b\u3064\u304d\u30c1\u30fc\u30e0\u300c\u9042\u306b\u305d\u306e\u6642\u304c\u6765\u305f\u304b\u2026\u300d(\u8010\u7528\u5e74\u6570\u7684\u306b\u306f\u65e2\u306b\u30e4\u30d0\u3044)\n\n(\u7d9a\u304f)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71668658,"id_str":"71668658","name":"\u3057\u306a\u306e\u307e\u308b\/\u30ea\u30f3\u30ac\u6cca\u5730\u3067\u3077\u304b\u3077\u304b","screen_name":"sinanomaru","location":"FSW\u306e\u30b9\u30bf\u30f3\u30c9\u306e\u306f\u3058\u3063\u3053\u304b\u3046\u3059\u3060\u3055\u3093\u306e\u53cd\u5bfe\u5074","url":"http:\/\/d.hatena.ne.jp\/sinanomaru\/","description":"\u5143\u7956\u30b5\u30a4\u30cf\u30c6\u5b87\u5b99\u6d3e\u306e\u4eba\u3000\u517c\u3000\u30df\u30afGTPV\u306e\u4eba\r\nhttp:\/\/www.nicovideo.jp\/mylist\/5290637","protected":false,"verified":false,"followers_count":454,"friends_count":447,"listed_count":37,"favourites_count":346,"statuses_count":69536,"created_at":"Fri Sep 04 23:22:23 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/688964146\/942bd9b238f4dc14a0a07c59fefbb29d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/688964146\/942bd9b238f4dc14a0a07c59fefbb29d.jpeg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1238328178\/53eca894-e187-46fd-83d9-f73c4bd8836b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1238328178\/53eca894-e187-46fd-83d9-f73c4bd8836b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71668658\/1434810103","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":747,"favorite_count":275,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sinanomaru","name":"\u3057\u306a\u306e\u307e\u308b\/\u30ea\u30f3\u30ac\u6cca\u5730\u3067\u3077\u304b\u3077\u304b","id":71668658,"id_str":"71668658","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016662"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642267137,"id_str":"663727812642267137","text":"RT @PrestaPrestico: Si la tapita del Fernet fuera de pl\u00e1stico el Garrahan solucionar\u00eda todos sus problemas en un fin de semana.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1630942627,"id_str":"1630942627","name":"\u2020 EUGE \u2764","screen_name":"eugemdesimone","location":"-YB-","url":null,"description":"~ El problema es que pensamos demasiado en lo que pas\u00f3 y en lo que pasar\u00e1, cuando lo importante es lo que esta pasando ~ Hay que ser uno mismo ~ Arquitectura","protected":false,"verified":false,"followers_count":118,"friends_count":300,"listed_count":0,"favourites_count":212,"statuses_count":1780,"created_at":"Mon Jul 29 18:03:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBDAE7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"11FA05","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622141134685503488\/1gFxO6YD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622141134685503488\/1gFxO6YD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1630942627\/1437776906","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:04 +0000 2015","id":663713919282769920,"id_str":"663713919282769920","text":"Si la tapita del Fernet fuera de pl\u00e1stico el Garrahan solucionar\u00eda todos sus problemas en un fin de semana.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ecosito de la bic tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3428584629,"id_str":"3428584629","name":"Pr\u00e9stico","screen_name":"PrestaPrestico","location":null,"url":null,"description":"Comediante. Parodia. Humor del bueno. Contacto: mateoduhalde@outlook.com","protected":false,"verified":false,"followers_count":271962,"friends_count":670,"listed_count":98,"favourites_count":300,"statuses_count":3718,"created_at":"Mon Aug 17 18:37:24 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633773901634498560\/fEp0V9I4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633773901634498560\/fEp0V9I4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3428584629\/1439867501","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":328,"favorite_count":217,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PrestaPrestico","name":"Pr\u00e9stico","id":3428584629,"id_str":"3428584629","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812671574016,"id_str":"663727812671574016","text":"RT @bieberjakocrush: #275 Gdyby by\u0142o ci zimno da\u0142by ci swoj\u0105 bluz\u0119.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1946950399,"id_str":"1946950399","name":"dziewczyna bonda","screen_name":"xbizrauhlx","location":"I'm not a drug dealer","url":null,"description":"but mom i want bad boy |zuzia, julcia, karcia|","protected":false,"verified":false,"followers_count":670,"friends_count":555,"listed_count":4,"favourites_count":1764,"statuses_count":24965,"created_at":"Tue Oct 08 13:30:28 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537312565462708224\/2A7vSS7J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537312565462708224\/2A7vSS7J.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663482258129555456\/YJ9q04gm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663482258129555456\/YJ9q04gm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1946950399\/1447021471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jan 09 16:01:30 +0000 2015","id":553582344406568961,"id_str":"553582344406568961","text":"#275 Gdyby by\u0142o ci zimno da\u0142by ci swoj\u0105 bluz\u0119.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911187979,"id_str":"2911187979","name":"Justin jako crush..","screen_name":"bieberjakocrush","location":null,"url":null,"description":"wszystkie tweety w ulubionych","protected":false,"verified":false,"followers_count":1435,"friends_count":236,"listed_count":2,"favourites_count":380,"statuses_count":1252,"created_at":"Mon Dec 08 17:05:16 +0000 2014","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553992883854790656\/eEUuk4EW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553992883854790656\/eEUuk4EW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911187979\/1420917160","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":186,"favorite_count":52,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bieberjakocrush","name":"Justin jako crush..","id":2911187979,"id_str":"2911187979","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080016664"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812663222272,"id_str":"663727812663222272","text":"Ela tava descendo do \u00f4nibus ai ela olhou pra minha cara e come\u00e7ou a rir do nada ajjshjznjskla \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3676369523,"id_str":"3676369523","name":"Purpose #nov13","screen_name":"ahcorleone5","location":"Rio de Janeiro, Brasil","url":"http:\/\/instagram.com\/ah_corleone950","description":"Belieber & Corleone \/\/ Rubro-Negra \u2665\/\/ SkateRap\u266a\/\/Japa & Cocielo \u2665","protected":false,"verified":false,"followers_count":447,"friends_count":442,"listed_count":1,"favourites_count":913,"statuses_count":4235,"created_at":"Wed Sep 16 16:06:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726732055289856\/T4h_a6Qf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726732055289856\/T4h_a6Qf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3676369523\/1447037659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080016662"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646273025,"id_str":"663727812646273025","text":"London pls.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557474506,"id_str":"557474506","name":"January 30 \u2764\ufe0f I15","screen_name":"ainajolinaaa","location":"in bed with Harry Styles","url":null,"description":"I just want money to meet my idols | Styles \u2764\ufe0f| Sugg \u2764\ufe0f| Brad Simpson \u2764\ufe0f| Boybands and Youtubers \u2764\ufe0f| Cara Delevigne is my queen","protected":false,"verified":false,"followers_count":317,"friends_count":876,"listed_count":0,"favourites_count":1300,"statuses_count":6091,"created_at":"Thu Apr 19 06:20:09 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563654228904660995\/Sxu9meJV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563654228904660995\/Sxu9meJV.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639064566618419200\/0B-8mpKp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639064566618419200\/0B-8mpKp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557474506\/1421310461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812679979008,"id_str":"663727812679979008","text":"@A_AlFai9al \u0627\u0644\u062d\u0631\u0628 \u0642\u0627\u064a\u0645\u0647 \u0641\u064a \u0627\u0644\u0645\u0644\u0639\u0628 \u0648\u0627\u0646\u062a \u062a\u0648\u0643 \u062a\u062f\u0631\u064a \u0641\u0644\u0633\u0637\u064a\u0646 \u0645\u0646 \u062d\u0645\u0627\u0633\u0647\u0645 \u064a\u062d\u0633\u0628\u0648\u0646 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647 \u0645\u062d\u062a\u0644\u0647 \u0641\u0644\u0633\u0637\u064a\u0646 \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727148713287680,"in_reply_to_status_id_str":"663727148713287680","in_reply_to_user_id":328986545,"in_reply_to_user_id_str":"328986545","in_reply_to_screen_name":"A_AlFai9al","user":{"id":2790495430,"id_str":"2790495430","name":"\u062c\u0648\u062f \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a","screen_name":"__wejdan20","location":null,"url":null,"description":"\u200f\u200f\u0644\u0627\u062a\u062a\u0627\u0628\u0639\u0646\u064a \u0644\u0627\u0646\u064a \u062f\u0627\u062e\u0644\u0647 \u0647\u064a\u0646\u0627\u0621 \u0623\u0633\u0648\u064a \u0647\u0627\u0634\u062a\u0627\u0642\u0627\u062a \u0648\u0623\u0639\u0644\u0642 \u0639\u0644\u064a\u0643\u0645.","protected":false,"verified":false,"followers_count":110,"friends_count":137,"listed_count":0,"favourites_count":147,"statuses_count":2251,"created_at":"Mon Sep 29 02:12:34 +0000 2014","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706013707730944\/0PJV8VHT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706013707730944\/0PJV8VHT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790495430\/1446989812","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"A_AlFai9al","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0641\u064a\u0635\u0644","id":328986545,"id_str":"328986545","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080016666"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642107392,"id_str":"663727812642107392","text":"RT @BeachPlaces: Because Hawaii https:\/\/t.co\/7waq0oLeCX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2239494805,"id_str":"2239494805","name":"morgs","screen_name":"princess_monaee","location":"Tx","url":null,"description":"chris is the best \u2763","protected":false,"verified":false,"followers_count":1545,"friends_count":1813,"listed_count":0,"favourites_count":3660,"statuses_count":28403,"created_at":"Tue Dec 10 17:06:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661746121941749764\/f8gt7dDE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661746121941749764\/f8gt7dDE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2239494805\/1447073581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:36:39 +0000 2015","id":663545707165564928,"id_str":"663545707165564928","text":"Because Hawaii https:\/\/t.co\/7waq0oLeCX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2960994568,"id_str":"2960994568","name":"Beaches","screen_name":"BeachPlaces","location":"Original Account ","url":null,"description":"Beaches around the world! |We do not own pictures posted| (Removal at owners request) Contact: @capsize","protected":false,"verified":false,"followers_count":106921,"friends_count":11,"listed_count":134,"favourites_count":17,"statuses_count":1408,"created_at":"Sun Jan 04 21:26:40 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663453828952510464\/Xzs6wxc-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663453828952510464\/Xzs6wxc-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2960994568\/1447014724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":628,"favorite_count":876,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663545697338290176,"id_str":"663545697338290176","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663545697338290176,"id_str":"663545697338290176","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663545697359253505,"id_str":"663545697359253505","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS89WUAEkr3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS89WUAEkr3m.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663545697376067584,"id_str":"663545697376067584","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS9BW4AA2spX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS9BW4AA2spX.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BeachPlaces","name":"Beaches","id":2960994568,"id_str":"2960994568","indices":[3,15]}],"symbols":[],"media":[{"id":663545697338290176,"id_str":"663545697338290176","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663545707165564928,"source_status_id_str":"663545707165564928","source_user_id":2960994568,"source_user_id_str":"2960994568"}]},"extended_entities":{"media":[{"id":663545697338290176,"id_str":"663545697338290176","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS84WcAAXenh.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663545707165564928,"source_status_id_str":"663545707165564928","source_user_id":2960994568,"source_user_id_str":"2960994568"},{"id":663545697359253505,"id_str":"663545697359253505","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS89WUAEkr3m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS89WUAEkr3m.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663545707165564928,"source_status_id_str":"663545707165564928","source_user_id":2960994568,"source_user_id_str":"2960994568"},{"id":663545697376067584,"id_str":"663545697376067584","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVjS9BW4AA2spX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVjS9BW4AA2spX.jpg","url":"https:\/\/t.co\/7waq0oLeCX","display_url":"pic.twitter.com\/7waq0oLeCX","expanded_url":"http:\/\/twitter.com\/BeachPlaces\/status\/663545707165564928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663545707165564928,"source_status_id_str":"663545707165564928","source_user_id":2960994568,"source_user_id_str":"2960994568"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812650627072,"id_str":"663727812650627072","text":"Never thought a single person could make me this happy \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1473686173,"id_str":"1473686173","name":"Richard Cotto\u2122","screen_name":"Rich_Loso","location":"Bronx, New York","url":null,"description":"Baseball Player #11 BIG New York Yankees fan \u26be\ufe0f CHC class of '19","protected":false,"verified":false,"followers_count":39,"friends_count":41,"listed_count":0,"favourites_count":388,"statuses_count":355,"created_at":"Sat Jun 01 03:10:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727674108616704\/6ngN5ays_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727674108616704\/6ngN5ays_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1473686173\/1431547722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e4a0d228eb6be76b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e4a0d228eb6be76b.json","place_type":"city","name":"Philadelphia","full_name":"Philadelphia, PA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-75.280284,39.871811],[-75.280284,40.137920],[-74.955712,40.137920],[-74.955712,39.871811]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016659"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642148353,"id_str":"663727812642148353","text":"RT @pita_chios: \u904b\u6975\u9054\u6210\u30fc\uff01\uff01\uff01\uff08\uff3e\u25c7\uff3e\uff09\n\u30d2\u30e3\u30c3\u30db\u30fc\uff01\uff01\n\n11\u67088\u65e5\u306b\u63cf\u3051\u306a\u304b\u3063\u305f\u306e\u3067\u30c0\u30d6\u30eb\u3067\u63cf\u3044\u305f\u3088\uff01\uff01\n\u4e8c\u4eba\u5171\u3068\u3093\u3067\u3082\u306a\u3044\u30a6\u30a7\u30dd\u30f3\u3092\u304a\u6301\u3061\u3067\u2026(^\u03c9^ ) https:\/\/t.co\/1PJ45BPdPr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2672083327,"id_str":"2672083327","name":"kashimashi\u2266\u30d1\u30ba\u30c9\u30e9\u30ac\u30c1\u52e2","screen_name":"0608kashimashi","location":"\u8fd1\u757f\u5730\u65b9","url":null,"description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\u3001\u6771\u65b9\u3001\u6700\u8fd1\u30e2\u30f3\u30b9\u30c8\u3068\u304b\u30d1\u30ba\u30c9\u30e9\u306e\u753b\u50cf\u3092\u6f01\u3063\u3066\u308b\u5b66\u751f\u3067\u3059\u3002\u8266\u3053\u308c\u3084\u308a\u305f\u3044\u3001\u7d75\u3092\u63cf\u304f\u306e\u304c\u5927\u597d\u304d\u306a\u2642\u3001\u30d1\u30ba\u30c9\u30e9\u3001\u30e2\u30f3\u30b9\u30c8\u7121\u8ab2\u91d1\u307e\u3063\u305f\u308a\u52e2\u3001\u30cf\u30af\u305f\u305d\u63a8\u3057\u3001\u767d\u732b\u4f9d\u5b58\u75c7","protected":false,"verified":false,"followers_count":1742,"friends_count":1972,"listed_count":18,"favourites_count":1741,"statuses_count":2887,"created_at":"Wed Jul 23 05:43:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660321609828331521\/WJSm9NZ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660321609828331521\/WJSm9NZ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2672083327\/1446126785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727709554536448,"id_str":"663727709554536448","text":"\u904b\u6975\u9054\u6210\u30fc\uff01\uff01\uff01\uff08\uff3e\u25c7\uff3e\uff09\n\u30d2\u30e3\u30c3\u30db\u30fc\uff01\uff01\n\n11\u67088\u65e5\u306b\u63cf\u3051\u306a\u304b\u3063\u305f\u306e\u3067\u30c0\u30d6\u30eb\u3067\u63cf\u3044\u305f\u3088\uff01\uff01\n\u4e8c\u4eba\u5171\u3068\u3093\u3067\u3082\u306a\u3044\u30a6\u30a7\u30dd\u30f3\u3092\u304a\u6301\u3061\u3067\u2026(^\u03c9^ ) https:\/\/t.co\/1PJ45BPdPr","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188227962,"id_str":"3188227962","name":"\u304c\u308b\u5409","screen_name":"pita_chios","location":"\u30a2\u30e9\u30af\u30cd\u3061\u3083\u3093\u306e\u5de3","url":null,"description":"\u30e2\u30f3\u30b9\u30c8\u95a2\u4fc2\u3001\u30a4\u30e9\u30b9\u30c8\u95a2\u4fc2\u306f\u3053\u3061\u3089\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u7b49\u306f\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u30fc\uff01 \u3044\u3064\u3082RT\u3084\u3075\u3041\u307c\u3057\u3066\u9802\u304d\u611f\u8b1d\u306e\u6975\u307f\u306b\u3054\u3056\u3044\u307e\u3059\u3002\u9045\u7b46\u3067\u3059\u306e\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u306f\u30ac\u30c1\u30e3\u306b\u3066\u26065\u51fa\u305f\u6642\u9650\u5b9a\u3067\u53d7\u3051\u4ed8\u3051\u3066\u304a\u308a\u307e\u3059\u3002 \u30a2\u30e9\u30af\u30cd\u3061\u3083\u3093\u306f\u5ac1\u3002","protected":false,"verified":false,"followers_count":305,"friends_count":14,"listed_count":4,"favourites_count":1220,"statuses_count":2308,"created_at":"Fri May 08 02:55:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612902177288224770\/L2gnVRNH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612902177288224770\/L2gnVRNH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188227962\/1444146535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727702076100608,"id_str":"663727702076100608","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","url":"https:\/\/t.co\/1PJ45BPdPr","display_url":"pic.twitter.com\/1PJ45BPdPr","expanded_url":"http:\/\/twitter.com\/pita_chios\/status\/663727709554536448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727702076100608,"id_str":"663727702076100608","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","url":"https:\/\/t.co\/1PJ45BPdPr","display_url":"pic.twitter.com\/1PJ45BPdPr","expanded_url":"http:\/\/twitter.com\/pita_chios\/status\/663727709554536448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pita_chios","name":"\u304c\u308b\u5409","id":3188227962,"id_str":"3188227962","indices":[3,14]}],"symbols":[],"media":[{"id":663727702076100608,"id_str":"663727702076100608","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","url":"https:\/\/t.co\/1PJ45BPdPr","display_url":"pic.twitter.com\/1PJ45BPdPr","expanded_url":"http:\/\/twitter.com\/pita_chios\/status\/663727709554536448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727709554536448,"source_status_id_str":"663727709554536448","source_user_id":3188227962,"source_user_id_str":"3188227962"}]},"extended_entities":{"media":[{"id":663727702076100608,"id_str":"663727702076100608","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1BXVEAAwdKI.jpg","url":"https:\/\/t.co\/1PJ45BPdPr","display_url":"pic.twitter.com\/1PJ45BPdPr","expanded_url":"http:\/\/twitter.com\/pita_chios\/status\/663727709554536448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727709554536448,"source_status_id_str":"663727709554536448","source_user_id":3188227962,"source_user_id_str":"3188227962"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646408192,"id_str":"663727812646408192","text":"@MissJessWright_ of all people to kiss.. lewis? really?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":89434927,"in_reply_to_user_id_str":"89434927","in_reply_to_screen_name":"MissJessWright_","user":{"id":46844857,"id_str":"46844857","name":"Tobi","screen_name":"Tobey_O","location":null,"url":"http:\/\/www.tobyloba.tumblr.com","description":"Instagram: @tobey_o @dirtysexyfashion","protected":false,"verified":false,"followers_count":968,"friends_count":351,"listed_count":7,"favourites_count":413,"statuses_count":55614,"created_at":"Sat Jun 13 07:00:54 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556094450506539009\/Xd2Z8mLW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556094450506539009\/Xd2Z8mLW.jpeg","profile_background_tile":true,"profile_link_color":"CC19A2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"FF6200","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658758701784956928\/fPd8J4fk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658758701784956928\/fPd8J4fk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46844857\/1417516334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MissJessWright_","name":"Jessica Wright","id":89434927,"id_str":"89434927","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667432960,"id_str":"663727812667432960","text":"si juntamos 300 votos mas, achicamos a 8 mil #FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3374673627,"id_str":"3374673627","name":"Pato\u2665","screen_name":"MicaFtDemi","location":null,"url":null,"description":"mica me siguio el 7-09 despues de hablar con ella, solo me falta abrazarla.","protected":false,"verified":false,"followers_count":686,"friends_count":467,"listed_count":0,"favourites_count":640,"statuses_count":3847,"created_at":"Mon Jul 13 22:05:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661900398198919168\/gxblaezP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661900398198919168\/gxblaezP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3374673627\/1441736665","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[45,60]},{"text":"LaDiosa","indices":[61,69]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812650606592,"id_str":"663727812650606592","text":"Nueva serie \nA4\n#collage #color \u2702\ufe0f https:\/\/t.co\/oytD4W9sUF","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103342466,"id_str":"103342466","name":"Cobrinha","screen_name":"cobrinha_marian","location":"Argentina","url":"http:\/\/www.behance.net\/cobrinha","description":"Visual artist & designer based in Buenos Aires, Argentina.","protected":false,"verified":false,"followers_count":594,"friends_count":374,"listed_count":23,"favourites_count":152,"statuses_count":2022,"created_at":"Sat Jan 09 18:37:26 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/859686107\/cbf33faa17b7ad57cfc183ca5ccf0a1b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/859686107\/cbf33faa17b7ad57cfc183ca5ccf0a1b.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490953877470969856\/GDk3mCfm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490953877470969856\/GDk3mCfm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103342466\/1405887576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"collage","indices":[16,24]},{"text":"color","indices":[25,31]}],"urls":[{"url":"https:\/\/t.co\/oytD4W9sUF","expanded_url":"https:\/\/instagram.com\/p\/93iVBLmJFN\/","display_url":"instagram.com\/p\/93iVBLmJFN\/","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016659"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675633152,"id_str":"663727812675633152","text":"\u30d3\u30fc\u30e0\u9811\u5f35\u3063\u3066\u9032\u3081\u3066\u7d30\u8c37\u306e\u30e6\u30e9\u30ea\u30e6\u30eb\u30ec\u30ea\u8074\u3053\u3046\u305c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2770153856,"id_str":"2770153856","name":"\u2661\u307d\u3093\u307d\u3093\u3042\u3081\u3053\u2661","screen_name":"amechika_su","location":"\u306a\u3046\u3077\u308c:FE\u30c8\u30e9\u30ad\u30a2\u3001\u5916\u4f1d","url":null,"description":"\u30b2\u30fc\u30e0\u3068\u3054\u98ef\u3068\u304b\u308f\u3044\u3044\u3082\u306e\u3068\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30c8\u304c\u597d\u304d\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u63a8\u5968\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":271,"friends_count":188,"listed_count":6,"favourites_count":45413,"statuses_count":69036,"created_at":"Tue Aug 26 15:03:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582547006452711424\/-p6RV-ND.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582547006452711424\/-p6RV-ND.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663300081295093760\/kGEXBzW6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663300081295093760\/kGEXBzW6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2770153856\/1446945303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016665"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667269121,"id_str":"663727812667269121","text":"RT @Iaperra: Me caga que por ser mujeres nos vean como objetos sexuales, o sea, tambi\u00e9n sabemos lavar, barrer, planchar y trapear.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1018163294,"id_str":"1018163294","name":"Luis Campollo","screen_name":"LuisCampolloL","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":264,"listed_count":0,"favourites_count":18,"statuses_count":23,"created_at":"Mon Dec 17 19:33:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654655063932071936\/ANKwuJME_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654655063932071936\/ANKwuJME_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:10:39 +0000 2015","id":663539163715645440,"id_str":"663539163715645440","text":"Me caga que por ser mujeres nos vean como objetos sexuales, o sea, tambi\u00e9n sabemos lavar, barrer, planchar y trapear.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38711366,"id_str":"38711366","name":"Queen B","screen_name":"Iaperra","location":"M\u00e9xico.","url":"http:\/\/on.fb.me\/qmDWI6","description":"Soy una perrrra. Contacto: williamsmich9@gmail.com Vine: Michelle Williams (iaperra) Instagram: williamsmich","protected":false,"verified":false,"followers_count":153881,"friends_count":295,"listed_count":1751,"favourites_count":67783,"statuses_count":35189,"created_at":"Fri May 08 18:00:43 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"001329","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/423764630\/fuckwhatthey.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/423764630\/fuckwhatthey.jpeg","profile_background_tile":true,"profile_link_color":"E01620","profile_sidebar_border_color":"F7B565","profile_sidebar_fill_color":"824908","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501565193810624512\/Fv_pg3ix_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501565193810624512\/Fv_pg3ix_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38711366\/1407992768","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":63,"favorite_count":188,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iaperra","name":"Queen B","id":38711366,"id_str":"38711366","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642144256,"id_str":"663727812642144256","text":"RT @Mojahedinar: #\u0627\u064a\u0631\u0627\u0646 #\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631 \u0627\u064a\u0631\u0627\u0646.. \u0627\u0639\u062a\u0642\u0627\u0644 \u0623\u0643\u062b\u0631 \u0645\u0646 600 \u0634\u062e\u0635 \u0641\u064a \u0637\u0647\u0631\u0627\u0646 \u0628\u0630\u0631\u064a\u0639\u0629 \u0627\u0644\u0625\u062e\u0644\u0627\u0644 \u0641\u064a \u0627\u0644\u0623\u0645\u0646 https:\/\/t.co\/Mb4x5e9dr4 https:\/\/t.co\/nNPg\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2353557840,"id_str":"2353557840","name":"Shahnaz Lotfi","screen_name":"Shahnaz_Lotfi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":424,"listed_count":1,"favourites_count":1403,"statuses_count":4354,"created_at":"Thu Feb 20 17:32:47 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/437111106830479360\/nOUfWv8w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/437111106830479360\/nOUfWv8w_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:15 +0000 2015","id":663726045774802945,"id_str":"663726045774802945","text":"#\u0627\u064a\u0631\u0627\u0646 #\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631 \u0627\u064a\u0631\u0627\u0646.. \u0627\u0639\u062a\u0642\u0627\u0644 \u0623\u0643\u062b\u0631 \u0645\u0646 600 \u0634\u062e\u0635 \u0641\u064a \u0637\u0647\u0631\u0627\u0646 \u0628\u0630\u0631\u064a\u0639\u0629 \u0627\u0644\u0625\u062e\u0644\u0627\u0644 \u0641\u064a \u0627\u0644\u0623\u0645\u0646 https:\/\/t.co\/Mb4x5e9dr4 https:\/\/t.co\/nNPgjsMK5a","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62085384,"id_str":"62085384","name":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642","screen_name":"Mojahedinar","location":"IRAN","url":"http:\/\/www.mojahedin.org\/pagesar\/index.aspx","description":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642 \u062a\u0639\u0645\u0644 \u0639\u0644\u0649 \u062a\u062d\u0648\u064a\u0644 \u0646\u0638\u0627\u0645 \u0627\u0644\u062f\u064a\u0643\u062a\u0627\u062a\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u064a\u0646\u064a\u0629 \u0641\u064a \u0627\u064a\u0631\u0627\u0646 \u0627\u0644\u0649 \u062d\u0643\u0648\u0645\u0629 \u0633\u0643\u0648\u0644\u0627\u0631\u064a\u0629 \u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u062a\u0639\u062f\u062f\u064a\u0629 \u062a\u062d\u062a\u0631\u0645 \u0627\u0644\u062d\u0631\u064a\u0627\u062a \u0627\u0644\u0641\u0631\u062f\u064a\u0629 \u0648\u0627\u0644\u0645\u0633\u0627\u0648\u0627\u0629 \u0628\u064a\u0646 \u0627\u0644\u0631\u062c\u0644 \u0648\u0627\u0644\u0645\u0631\u0623\u0629","protected":false,"verified":false,"followers_count":5961,"friends_count":2,"listed_count":42,"favourites_count":2,"statuses_count":86896,"created_at":"Sat Aug 01 18:10:24 +0000 2009","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3173290496\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3173290496\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62085384\/1383226123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u064a\u0631\u0627\u0646","indices":[0,6]},{"text":"\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631","indices":[7,16]}],"urls":[{"url":"https:\/\/t.co\/Mb4x5e9dr4","expanded_url":"http:\/\/dlvr.it\/ChfQcJ","display_url":"dlvr.it\/ChfQcJ","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663726045598605312,"id_str":"663726045598605312","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","url":"https:\/\/t.co\/nNPgjsMK5a","display_url":"pic.twitter.com\/nNPgjsMK5a","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726045774802945\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726045598605312,"id_str":"663726045598605312","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","url":"https:\/\/t.co\/nNPgjsMK5a","display_url":"pic.twitter.com\/nNPgjsMK5a","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726045774802945\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u064a\u0631\u0627\u0646","indices":[17,23]},{"text":"\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631","indices":[24,33]}],"urls":[{"url":"https:\/\/t.co\/Mb4x5e9dr4","expanded_url":"http:\/\/dlvr.it\/ChfQcJ","display_url":"dlvr.it\/ChfQcJ","indices":[98,121]}],"user_mentions":[{"screen_name":"Mojahedinar","name":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642","id":62085384,"id_str":"62085384","indices":[3,15]}],"symbols":[],"media":[{"id":663726045598605312,"id_str":"663726045598605312","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","url":"https:\/\/t.co\/nNPgjsMK5a","display_url":"pic.twitter.com\/nNPgjsMK5a","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726045774802945\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726045774802945,"source_status_id_str":"663726045774802945","source_user_id":62085384,"source_user_id_str":"62085384"}]},"extended_entities":{"media":[{"id":663726045598605312,"id_str":"663726045598605312","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUmgUYAAM9iw.jpg","url":"https:\/\/t.co\/nNPgjsMK5a","display_url":"pic.twitter.com\/nNPgjsMK5a","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726045774802945\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726045774802945,"source_status_id_str":"663726045774802945","source_user_id":62085384,"source_user_id_str":"62085384"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812679897089,"id_str":"663727812679897089","text":"@super_biwako \u307e\u30414G\u3082\u60f0\u6027\u3067\u3084\u3063\u3066\u305f\u3093\u3067\n\u30b9\u30c8\u30fc\u30ea\u30fc\u3050\u3089\u3044\u306f\u3084\u308d\u3046\u304b\u3068","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727388233109504,"in_reply_to_status_id_str":"663727388233109504","in_reply_to_user_id":3230076457,"in_reply_to_user_id_str":"3230076457","in_reply_to_screen_name":"super_biwako","user":{"id":612745276,"id_str":"612745276","name":"\u3061\u306f\u3084\u3093@\u3061\u306f\u306b\u3043","screen_name":"k_chihayan_1204","location":null,"url":null,"description":"\u5982\u6708\u5343\u65e9\/\u30d7\u30ea\u30d1\u30e9 \u3061\u306f\u306b\u3043(\u6a59\u732b #nekoO )\u305d\u3075\u3043\u69d8\/G\u30ac\u30f3\u30c0\u30e0\/\u904a\u622f\u738b\/\u3046\u305f\u30d7\u30ea \u30c0\u30e0\u69d8\/\u30a4\u30e9\u30b9\u30c8\u63cf\u3044\u3066\u308b\u6642\u3082(\u30a2\u30a4\u30b3\u30f3\u3068\u30d8\u30c3\u30c0\u30fc\u81ea\u7d66\u81ea\u8db3\u306e\u6642\u3082)\/\u7af6\u99ac\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059\/\u30d5\u30a9\u30ed\u30d0\u3055\u308c\u308b\u3068\u5fc3\u306e\u4e2d\u3067\u559c\u3073\u307e\u3059\/\u5408\u308f\u306a\u3051\u308c\u3070\u30df\u30e5\u30fc\u30c8\u306a\u308a\u30d6\u30ed\u30c3\u30af\u3067","protected":false,"verified":false,"followers_count":208,"friends_count":228,"listed_count":8,"favourites_count":82,"statuses_count":66569,"created_at":"Tue Jun 19 18:05:38 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583184024484466688\/VqylWofs.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583184024484466688\/VqylWofs.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661564435127885824\/BuY3DgFi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661564435127885824\/BuY3DgFi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/612745276\/1437416693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"super_biwako","name":"\u3059\u30fc\u3071\u30fc\u3073\u308e\u5b50","id":3230076457,"id_str":"3230076457","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016666"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667281408,"id_str":"663727812667281408","text":"@MarielDomingooo Sanay na. Sanay na sanay. Hahahahahah.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727354351476740,"in_reply_to_status_id_str":"663727354351476740","in_reply_to_user_id":555741695,"in_reply_to_user_id_str":"555741695","in_reply_to_screen_name":"MarielDomingooo","user":{"id":453949922,"id_str":"453949922","name":"CJ","screen_name":"ccamillejoy","location":"Balanga Bataan ","url":null,"description":"time will do its thing","protected":false,"verified":false,"followers_count":366,"friends_count":203,"listed_count":0,"favourites_count":6115,"statuses_count":8969,"created_at":"Tue Jan 03 13:16:35 +0000 2012","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661812068039847936\/mHh1sx15_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661812068039847936\/mHh1sx15_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/453949922\/1438832581","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MarielDomingooo","name":"\u2716\ufe0f","id":555741695,"id_str":"555741695","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675661824,"id_str":"663727812675661824","text":"RT @EintsMint: \u0e08\u0e30\u0e44\u0e21\u0e48\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e1f\u0e0b\u0e25\u0e30\u0e2d\u0e34\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e22\u0e21\u0e35\u0e41\u0e15\u0e48\u0e04\u0e19\u0e2a\u0e2d\u0e1a\u0e15\u0e34\u0e14 \u0e1f\u0e23\u0e31\u0e04\u0e08\u0e39\u0e01\u0e38\u0e08\u0e30\u0e41\u0e2d\u0e14\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46 - -","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317779900,"id_str":"317779900","name":"\u0e19\u0e17\u0e0a\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e19\u0e40\u0e28\u0e23\u0e29\u0e10\u0e28\u0e32\u0e15\u0e23\u0e4c","screen_name":"perrie_ntc","location":"Nakhon Ratchasima, Thailand","url":null,"description":"snapchat:perrie_b","protected":false,"verified":false,"followers_count":237,"friends_count":270,"listed_count":0,"favourites_count":287,"statuses_count":15156,"created_at":"Wed Jun 15 13:27:28 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA2105","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598298903\/hb6bnxhnjch3psjmnk66.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598298903\/hb6bnxhnjch3psjmnk66.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661944044868599808\/FRFT5xco_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661944044868599808\/FRFT5xco_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317779900\/1446220067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:03 +0000 2015","id":663727506655088640,"id_str":"663727506655088640","text":"\u0e08\u0e30\u0e44\u0e21\u0e48\u0e40\u0e1b\u0e34\u0e14\u0e40\u0e1f\u0e0b\u0e25\u0e30\u0e2d\u0e34\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e22\u0e21\u0e35\u0e41\u0e15\u0e48\u0e04\u0e19\u0e2a\u0e2d\u0e1a\u0e15\u0e34\u0e14 \u0e1f\u0e23\u0e31\u0e04\u0e08\u0e39\u0e01\u0e38\u0e08\u0e30\u0e41\u0e2d\u0e14\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46\u0e46 - -","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168922016,"id_str":"168922016","name":"\u0e21\u0e34\u0e49\u0e19\u0e08\u0e30\u0e23\u0e2d\u0e41\u0e2d\u0e14","screen_name":"EintsMint","location":"thailand","url":"http:\/\/twitter.com\/EintsMint","description":"\u0e01\u0e32\u0e23\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e17\u0e23\u0e07\u0e08\u0e33 #BigBang #TOP \u2764\ufe0f \u0e40\u0e23\u0e32\u0e22\u0e31\u0e07\u0e21\u0e35\u0e01\u0e31\u0e19\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e43\u0e19\u0e2a\u0e31\u0e0d\u0e0d\u0e32 \u2764\ufe0f","protected":false,"verified":false,"followers_count":334,"friends_count":349,"listed_count":1,"favourites_count":1868,"statuses_count":52769,"created_at":"Wed Jul 21 03:06:22 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/248327106\/Guitar.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/248327106\/Guitar.jpg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/449220172440559616\/G_roZfcy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/449220172440559616\/G_roZfcy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168922016\/1388149986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EintsMint","name":"\u0e21\u0e34\u0e49\u0e19\u0e08\u0e30\u0e23\u0e2d\u0e41\u0e2d\u0e14","id":168922016,"id_str":"168922016","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080016665"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642123777,"id_str":"663727812642123777","text":"@463384538 \u307e\u30fc\u306c\u3053\u3061\u3083\u3093\u53ef\u611b\u3044\u304b\u3089\u5bb6\u6765\u3067\u3082\u3044\u3044\u304b\u306a(\u3042\u304d\u3089\u3081\u305f)wwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727700591292416,"in_reply_to_status_id_str":"663727700591292416","in_reply_to_user_id":2393662496,"in_reply_to_user_id_str":"2393662496","in_reply_to_screen_name":"463384538","user":{"id":3301284601,"id_str":"3301284601","name":"\u25bd\u25b2\u5983\u7fe0.\u3002","screen_name":"_colce_Niko2","location":"\u30c8\u30ad\u30e4\u306e\u6545\u90f7","url":null,"description":"\u58f0\u512a\u3055\u3093\uff0a\u30a2\u30cb\u30e1\uff0a\u4e59\u30b2\uff0a\u30ea\u30ba\u30b2\uff0a\u304c\u751f\u304d\u7532\u6590\u3067\u3059((\u672c\u5f53\u5929\u4f7f\u304c\u304a\u304a\u3059\u304e\u3066\u2661))\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089\u5b09\u3057\u3044\u3067\u3059!!\u3046\u305f\u30d7\u30ea(\u7fd4\u3061\u3083\u3093)\/\u30e9\u30d6\u30e9\u30a4\u30d6(\u306b\u3053\u306b\u30fc)\/\u30bb\u30ab\u30b3\u30a4\u7d14\u30ed\u30de\/Free(\u6e1a\u771f)\/\u30d6\u30e9\u30b3\u30f3(\u6893\u693f)\/\u30c7\u30a3\u30a2\u30e9\u30d0(\u30ab\u30ca\u30c8)\/\u30a2\u30a4\u30ca\u30ca(\u4e09\u6708)\/\u3042\u3093\u30b9\u30bf(\u51db\u6708)\/\u304a\u305d\u677e\u3055\u3093(\u5341\u56db\u677e)\/\u305f\u307e\u306b\u304a\u7d75\u63cf\u304d\u3057\u3066\u308b\u3002","protected":false,"verified":false,"followers_count":391,"friends_count":549,"listed_count":7,"favourites_count":1123,"statuses_count":1761,"created_at":"Thu Jul 30 06:40:04 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662921919591636994\/oqKPrzHb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662921919591636994\/oqKPrzHb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301284601\/1446978720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"463384538","name":"\u3055\u308a\u308a\u3093\/\/3crew\u6803\u6728\u4e43\u98a8","id":2393662496,"id_str":"2393662496","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812658921472,"id_str":"663727812658921472","text":"RT @simple_btdanger: End my day. .not.much to say\n\nChardTillas KiligMonday \n#ShowtimePBBSaLubong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4011231372,"id_str":"4011231372","name":"skydive","screen_name":"yanzeesy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":209,"listed_count":6,"favourites_count":46,"statuses_count":2499,"created_at":"Sun Oct 25 08:13:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662703922771980289\/-hwYkIkq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662703922771980289\/-hwYkIkq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4011231372\/1445772057","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:20 +0000 2015","id":663726068692570113,"id_str":"663726068692570113","text":"End my day. .not.much to say\n\nChardTillas KiligMonday \n#ShowtimePBBSaLubong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3956045352,"id_str":"3956045352","name":"simple but danger","screen_name":"simple_btdanger","location":null,"url":null,"description":"you can't feel the true love without pain","protected":false,"verified":false,"followers_count":236,"friends_count":203,"listed_count":5,"favourites_count":1284,"statuses_count":10707,"created_at":"Tue Oct 20 08:28:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656389527796232192\/TyYTZHad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656389527796232192\/TyYTZHad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3956045352\/1446743994","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"ShowtimePBBSaLubong","indices":[55,75]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ShowtimePBBSaLubong","indices":[76,96]}],"urls":[],"user_mentions":[{"screen_name":"simple_btdanger","name":"simple but danger","id":3956045352,"id_str":"3956045352","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016661"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812650467329,"id_str":"663727812650467329","text":"RT @YolandaC4: #acogida y #adopciones Lady y sus peque\u00f1os (6) urgente!! https:\/\/t.co\/yYBgIq1W20","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256610002,"id_str":"256610002","name":"marisol","screen_name":"negropaez23","location":"Barcelona","url":null,"description":"defensora ac\u00e9rrima de los animales y de las injusticias","protected":false,"verified":false,"followers_count":369,"friends_count":188,"listed_count":23,"favourites_count":7939,"statuses_count":36415,"created_at":"Wed Feb 23 18:06:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000516417024\/8b51a060ef960a8d3724d21eb2ebb4e5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000516417024\/8b51a060ef960a8d3724d21eb2ebb4e5_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:07:09 +0000 2015","id":663689278904487936,"id_str":"663689278904487936","text":"#acogida y #adopciones Lady y sus peque\u00f1os (6) urgente!! https:\/\/t.co\/yYBgIq1W20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306316780,"id_str":"306316780","name":"Yolanda C #Esoll","screen_name":"YolandaC4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3043,"friends_count":2457,"listed_count":47,"favourites_count":3521,"statuses_count":131405,"created_at":"Fri May 27 17:23:56 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2759660847\/1fa14f8799760b8a116170d275fd86ba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2759660847\/1fa14f8799760b8a116170d275fd86ba_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306316780\/1382059668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"acogida","indices":[0,8]},{"text":"adopciones","indices":[11,22]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663689237125046272,"id_str":"663689237125046272","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"medium":{"w":596,"h":1024,"resize":"fit"},"large":{"w":596,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":584,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689237125046272,"id_str":"663689237125046272","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"medium":{"w":596,"h":1024,"resize":"fit"},"large":{"w":596,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":584,"resize":"fit"}}},{"id":663689248189620224,"id_str":"663689248189620224","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2teWoAAANe8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2teWoAAANe8.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663689259921055745,"id_str":"663689259921055745","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl3ZLWIAEfOa2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl3ZLWIAEfOa2.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663689271526694912,"id_str":"663689271526694912","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl4EaWIAAmKyF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl4EaWIAAmKyF.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"acogida","indices":[15,23]},{"text":"adopciones","indices":[26,37]}],"urls":[],"user_mentions":[{"screen_name":"YolandaC4","name":"Yolanda C #Esoll","id":306316780,"id_str":"306316780","indices":[3,13]}],"symbols":[],"media":[{"id":663689237125046272,"id_str":"663689237125046272","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"medium":{"w":596,"h":1024,"resize":"fit"},"large":{"w":596,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":584,"resize":"fit"}},"source_status_id":663689278904487936,"source_status_id_str":"663689278904487936","source_user_id":306316780,"source_user_id_str":"306316780"}]},"extended_entities":{"media":[{"id":663689237125046272,"id_str":"663689237125046272","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2EQWoAAb0Qk.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"medium":{"w":596,"h":1024,"resize":"fit"},"large":{"w":596,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":584,"resize":"fit"}},"source_status_id":663689278904487936,"source_status_id_str":"663689278904487936","source_user_id":306316780,"source_user_id_str":"306316780"},{"id":663689248189620224,"id_str":"663689248189620224","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl2teWoAAANe8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl2teWoAAANe8.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663689278904487936,"source_status_id_str":"663689278904487936","source_user_id":306316780,"source_user_id_str":"306316780"},{"id":663689259921055745,"id_str":"663689259921055745","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl3ZLWIAEfOa2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl3ZLWIAEfOa2.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663689278904487936,"source_status_id_str":"663689278904487936","source_user_id":306316780,"source_user_id_str":"306316780"},{"id":663689271526694912,"id_str":"663689271526694912","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl4EaWIAAmKyF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl4EaWIAAmKyF.jpg","url":"https:\/\/t.co\/yYBgIq1W20","display_url":"pic.twitter.com\/yYBgIq1W20","expanded_url":"http:\/\/twitter.com\/YolandaC4\/status\/663689278904487936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663689278904487936,"source_status_id_str":"663689278904487936","source_user_id":306316780,"source_user_id_str":"306316780"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016659"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642217984,"id_str":"663727812642217984","text":"RT @otrorojiblanco: \u00a1\u00a1\u00a1MADRIDISTAS HIJOS DE PUTA!!! #RememberFrente https:\/\/t.co\/ilUTPAhzOr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2739840414,"id_str":"2739840414","name":"Adri_Vallecas19","screen_name":"AdriRN19","location":"ATM e basta","url":"http:\/\/www.instagram.com\/adri_vallecas19","description":"ATM & RVM. Portero y estudiante. Vallecas. Frente Atl\u00e9tico 1982. Antimadridista a muerte. Cuanto m\u00e1s dif\u00edcil es la victoria, mayor es la felicidad de ganar.","protected":false,"verified":false,"followers_count":166,"friends_count":209,"listed_count":6,"favourites_count":665,"statuses_count":6715,"created_at":"Sun Aug 17 14:56:25 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663147212269092864\/nRe9SjeT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663147212269092864\/nRe9SjeT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2739840414\/1446052493","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:59 +0000 2015","id":663726984820883456,"id_str":"663726984820883456","text":"\u00a1\u00a1\u00a1MADRIDISTAS HIJOS DE PUTA!!! #RememberFrente https:\/\/t.co\/ilUTPAhzOr","source":"\u003ca href=\"https:\/\/vine.co\" rel=\"nofollow\"\u003eVine for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140946012,"id_str":"140946012","name":"Osk","screen_name":"otrorojiblanco","location":"Espa\u00f1a | @FinallyOsk","url":null,"description":"Mi biograf\u00eda se la comi\u00f3 Ben\u00edtez.","protected":false,"verified":false,"followers_count":1194,"friends_count":351,"listed_count":24,"favourites_count":24395,"statuses_count":15875,"created_at":"Thu May 06 19:39:34 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663043293673058304\/lq0iRqj4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663043293673058304\/lq0iRqj4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140946012\/1446982863","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[{"text":"RememberFrente","indices":[32,47]}],"urls":[{"url":"https:\/\/t.co\/ilUTPAhzOr","expanded_url":"https:\/\/vine.co\/v\/epdqu02VUHJ","display_url":"vine.co\/v\/epdqu02VUHJ","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RememberFrente","indices":[52,67]}],"urls":[{"url":"https:\/\/t.co\/ilUTPAhzOr","expanded_url":"https:\/\/vine.co\/v\/epdqu02VUHJ","display_url":"vine.co\/v\/epdqu02VUHJ","indices":[68,91]}],"user_mentions":[{"screen_name":"otrorojiblanco","name":"Osk","id":140946012,"id_str":"140946012","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812663111681,"id_str":"663727812663111681","text":"RT @bbshopcomjp: 11\/20\u306e\u8b1b\u5e2bRoger Ross\u304c\u73fe\u5728\u6240\u5c5e\u3059\u308bMain Street\u306b\u3088\u308b\u3001\u8fd1\u5e74\u306e\u30d2\u30c3\u30c8\u66f2\u3092\u300c20\u5e74\u5f8c\u306b\u306f\u53e4\u304d\u826f\u304d\u6b4c\u300d\u3068\u30cd\u30bf\u306b\u3057\u305f\u30e1\u30c9\u30ec\u30fc\u3002\u4e16\u754c\u4e2d\u3067\u8a71\u984c\u3068\u306a\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u516c\u958b10\u65e5\u3042\u307e\u308a\u3067\u518d\u751f\u56de\u657050\u4e07\u56de\u3092\u8d85\u3048\u305f\u6a21\u69d8\uff01 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255346819,"id_str":"255346819","name":"\u3084\u304c@11\/14\u5c90\u961c","screen_name":"mary_yaga","location":"\u3075\u3061\u3085\u3046\u306e\u3059\u307f\u3063\u3053\u306b","url":null,"description":"\u3046\u305f\u3046\u305f\u3044\u3002\u5408\u5531\u56e3\u3072\u3050\u3089\u3057\/\u30a2\u30f3\u30b5\u30f3\u30d6\u30eb\u30fb\u30f4\u30a9\u30ab\u30eb\u30fb\u30a2\u30eb\u30ab\u30a4\u30af=\u6771\u4eac\/E.S.P.\/\u5c0f\u7530\u539f\u6728\u66dc\u4f1a\u6771\u4eac\u652f\u90e8\/ #\u767d\u9ad8\u540c\u597d\u4f1a \u3002\u5408\u5531\u56e3\u308f\u3092\u3093\u4ee3\u8868\u3002\u5927\u962a\u5e9c\u8c4a\u4e2d\u5e02\u751f\u3001\u6850\u670b\u5973\u5b50\u4e2d\u9ad8\u3001TGU\u65e5\u672c\u7814\u7a76\u5352\u3002\u597d\u304d\u2192\u6c11\u4fd7\/\u6e29\u6cc9\/\u99c5\u5f01\/\u30aa\u30eb\u30b4\u30fc\u30eb\/\u8c46\u52a9\/\u30bb\u30fc\u30e9\u30fc\u30e0\u30fc\u30f3","protected":false,"verified":false,"followers_count":812,"friends_count":792,"listed_count":36,"favourites_count":673,"statuses_count":34581,"created_at":"Mon Feb 21 04:59:48 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663595748081033216\/gfd0SxCb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663595748081033216\/gfd0SxCb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255346819\/1440208732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:51:48 +0000 2015","id":663715615614480384,"id_str":"663715615614480384","text":"11\/20\u306e\u8b1b\u5e2bRoger Ross\u304c\u73fe\u5728\u6240\u5c5e\u3059\u308bMain Street\u306b\u3088\u308b\u3001\u8fd1\u5e74\u306e\u30d2\u30c3\u30c8\u66f2\u3092\u300c20\u5e74\u5f8c\u306b\u306f\u53e4\u304d\u826f\u304d\u6b4c\u300d\u3068\u30cd\u30bf\u306b\u3057\u305f\u30e1\u30c9\u30ec\u30fc\u3002\u4e16\u754c\u4e2d\u3067\u8a71\u984c\u3068\u306a\u3063\u3066\u3044\u308b\u3088\u3046\u3067\u516c\u958b10\u65e5\u3042\u307e\u308a\u3067\u518d\u751f\u56de\u657050\u4e07\u56de\u3092\u8d85\u3048\u305f\u6a21\u69d8\uff01 https:\/\/t.co\/TiIWjVLUbh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3655370833,"id_str":"3655370833","name":"Barbershop Community","screen_name":"bbshopcomjp","location":null,"url":"http:\/\/www.facebook.com\/barbershop.community","description":"\u30ab\u30eb\u30c6\u30c3\u30c8\u3001\u30b3\u30fc\u30e9\u30b9\u3001\u8074\u304d\u624b\u3092\u554f\u308f\u305a\u3001\u3059\u3079\u3066\u306e\u30d0\u30fc\u30d0\u30fc\u30b7\u30e7\u30c3\u30d7\u30fb\u30cf\u30fc\u30e2\u30cb\u30fc\u3092\u611b\u3059\u308b\u7686\u3055\u307e\u306e\u6d3b\u52d5\u306b\u5f79\u7acb\u3064\u3053\u3068\u304c\u3001\u3053\u306e\u4e0a\u306a\u3044\u559c\u3073\u3067\u3059\u3002 \u260611\/20(\u91d1)\u65b0\u5bbf\u306b\u3066Roger Ross\u6c0f(Keepsake, @MainStreetQtet)\u3092\u8b1b\u5e2b\u306b\u8fce\u3048\u30d0\u30fc\u30d0\u30fc\u30b7\u30e7\u30c3\u30d7\u30fb\u30ab\u30eb\u30c6\u30c3\u30c8\u516c\u958b\u30af\u30ea\u30cb\u30c3\u30af\u3092\u958b\u50ac\uff01","protected":false,"verified":false,"followers_count":51,"friends_count":60,"listed_count":0,"favourites_count":21,"statuses_count":23,"created_at":"Wed Sep 23 03:17:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646669479682813952\/B9BdPXN3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646669479682813952\/B9BdPXN3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3655370833\/1442990082","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TiIWjVLUbh","expanded_url":"http:\/\/youtu.be\/MdTS6-fbNH0","display_url":"youtu.be\/MdTS6-fbNH0","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TiIWjVLUbh","expanded_url":"http:\/\/youtu.be\/MdTS6-fbNH0","display_url":"youtu.be\/MdTS6-fbNH0","indices":[139,140]}],"user_mentions":[{"screen_name":"bbshopcomjp","name":"Barbershop Community","id":3655370833,"id_str":"3655370833","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016662"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646273024,"id_str":"663727812646273024","text":"@chaaany8 \n\u3079\u304f\u307a\u3093\ud83d\ude4b\u00d7\u221e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724871357075456,"in_reply_to_status_id_str":"663724871357075456","in_reply_to_user_id":2711622295,"in_reply_to_user_id_str":"2711622295","in_reply_to_screen_name":"chaaany8","user":{"id":3304161014,"id_str":"3304161014","name":"\u30e9\u30a4\u30c8","screen_name":"___920506kg","location":null,"url":null,"description":"\ubc31\ud604\uc624\ube60 ~ . \u2661","protected":false,"verified":false,"followers_count":88,"friends_count":83,"listed_count":5,"favourites_count":177,"statuses_count":1891,"created_at":"Sun Aug 02 10:10:27 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646651668487008256\/p3w2ai7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646651668487008256\/p3w2ai7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304161014\/1442407105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chaaany8","name":"\u3148\u3147","id":2711622295,"id_str":"2711622295","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646424576,"id_str":"663727812646424576","text":"RT @FlorianBernardy: \ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/DOZqJCYbHB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319577278,"id_str":"3319577278","name":"Enessuie-tout ","screen_name":"kalashnikeufte","location":"Nancy, Lorraine","url":null,"description":"Insta: nesco.yldz","protected":false,"verified":false,"followers_count":55,"friends_count":47,"listed_count":0,"favourites_count":273,"statuses_count":1741,"created_at":"Thu Jun 11 19:50:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659419189980065794\/JKGUL8eD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659419189980065794\/JKGUL8eD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319577278\/1443209205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:11:12 +0000 2015","id":663690298783059968,"id_str":"663690298783059968","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/DOZqJCYbHB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454129801,"id_str":"454129801","name":"Florian Bernardy","screen_name":"FlorianBernardy","location":"Thionville Metz Nancy","url":null,"description":null,"protected":false,"verified":false,"followers_count":143,"friends_count":225,"listed_count":0,"favourites_count":68,"statuses_count":3117,"created_at":"Tue Jan 03 17:14:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580368011682582529\/3j4AigML_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580368011682582529\/3j4AigML_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454129801\/1398769730","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690291673759744,"id_str":"663690291673759744","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","url":"https:\/\/t.co\/DOZqJCYbHB","display_url":"pic.twitter.com\/DOZqJCYbHB","expanded_url":"http:\/\/twitter.com\/FlorianBernardy\/status\/663690298783059968\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690291673759744,"id_str":"663690291673759744","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","url":"https:\/\/t.co\/DOZqJCYbHB","display_url":"pic.twitter.com\/DOZqJCYbHB","expanded_url":"http:\/\/twitter.com\/FlorianBernardy\/status\/663690298783059968\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FlorianBernardy","name":"Florian Bernardy","id":454129801,"id_str":"454129801","indices":[3,19]}],"symbols":[],"media":[{"id":663690291673759744,"id_str":"663690291673759744","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","url":"https:\/\/t.co\/DOZqJCYbHB","display_url":"pic.twitter.com\/DOZqJCYbHB","expanded_url":"http:\/\/twitter.com\/FlorianBernardy\/status\/663690298783059968\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663690298783059968,"source_status_id_str":"663690298783059968","source_user_id":454129801,"source_user_id_str":"454129801"}]},"extended_entities":{"media":[{"id":663690291673759744,"id_str":"663690291673759744","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmzcwXAAAD4gv.jpg","url":"https:\/\/t.co\/DOZqJCYbHB","display_url":"pic.twitter.com\/DOZqJCYbHB","expanded_url":"http:\/\/twitter.com\/FlorianBernardy\/status\/663690298783059968\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663690298783059968,"source_status_id_str":"663690298783059968","source_user_id":454129801,"source_user_id_str":"454129801"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646318080,"id_str":"663727812646318080","text":"RT @absoluteJB: \u0e21\u0e35\u0e41\u0e21\u0e27\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 https:\/\/t.co\/kU5hsLrzjk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37881278,"id_str":"37881278","name":"\u0e17\u0e32\u0e22\u0e0b\u0e34\u0e43\u0e04\u0e23\u0e40\u0e2d\u0e48\u0e22?","screen_name":"onumamm","location":null,"url":null,"description":"we","protected":false,"verified":false,"followers_count":216,"friends_count":463,"listed_count":3,"favourites_count":340,"statuses_count":103913,"created_at":"Tue May 05 07:46:54 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602024537270550528\/hXDtRg09.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602024537270550528\/hXDtRg09.jpg","profile_background_tile":false,"profile_link_color":"B40404","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658707370365726720\/XRMwZtzY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658707370365726720\/XRMwZtzY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37881278\/1439579640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:11:13 +0000 2015","id":663010825888665600,"id_str":"663010825888665600","text":"\u0e21\u0e35\u0e41\u0e21\u0e27\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e2d\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e20\u0e17 https:\/\/t.co\/kU5hsLrzjk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108057993,"id_str":"108057993","name":"JB lava you","screen_name":"absoluteJB","location":"int17 vit55 dex30 luk99","url":null,"description":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e15\u0e48\u0e2d\u0e2a\u0e39\u0e49\u0e01\u0e31\u0e1a\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e2d\u0e22\u0e39\u0e48 \u0e0a\u0e35\u0e27\u0e34\u0e15\u0e15\u0e34\u0e48\u0e07\u0e27\u0e31\u0e22\u0e01\u0e25\u0e32\u0e07\u0e04\u0e19 (\u0e41\u0e01\u0e48\u0e41\u0e25\u0e49\u0e27\u0e2d\u0e30\u0e44\u0e23\u0e46\u0e01\u0e47\u0e44\u0e21\u0e48\u0e14\u0e35)","protected":false,"verified":false,"followers_count":7174,"friends_count":244,"listed_count":65,"favourites_count":9305,"statuses_count":149674,"created_at":"Sun Jan 24 17:59:20 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655124834\/yzwzbtgphzb9cgyfpxj0.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655124834\/yzwzbtgphzb9cgyfpxj0.gif","profile_background_tile":true,"profile_link_color":"BD00B0","profile_sidebar_border_color":"B83B4A","profile_sidebar_fill_color":"E0E0E0","profile_text_color":"757575","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632271697492578304\/dN7AkqNt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632271697492578304\/dN7AkqNt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108057993\/1352322283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663010799800049664,"id_str":"663010799800049664","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663010799800049664,"id_str":"663010799800049664","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663010799955214338,"id_str":"663010799955214338","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z02UAAIzY1G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z02UAAIzY1G.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"absoluteJB","name":"JB lava you","id":108057993,"id_str":"108057993","indices":[3,14]}],"symbols":[],"media":[{"id":663010799800049664,"id_str":"663010799800049664","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663010825888665600,"source_status_id_str":"663010825888665600","source_user_id":108057993,"source_user_id_str":"108057993"}]},"extended_entities":{"media":[{"id":663010799800049664,"id_str":"663010799800049664","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z0RUYAApL4Q.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663010825888665600,"source_status_id_str":"663010825888665600","source_user_id":108057993,"source_user_id_str":"108057993"},{"id":663010799955214338,"id_str":"663010799955214338","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN8z02UAAIzY1G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN8z02UAAIzY1G.jpg","url":"https:\/\/t.co\/kU5hsLrzjk","display_url":"pic.twitter.com\/kU5hsLrzjk","expanded_url":"http:\/\/twitter.com\/absoluteJB\/status\/663010825888665600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663010825888665600,"source_status_id_str":"663010825888665600","source_user_id":108057993,"source_user_id_str":"108057993"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646301696,"id_str":"663727812646301696","text":"RT @Matsuwabe: Puro kalang Salita, Pero wala kang isang Salita kaya sa madaling Salita Mahirap ng mag Salita.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4166797633,"id_str":"4166797633","name":"Chuchay","screen_name":"ChuchayBalena","location":"Paris, Ile-de-France","url":null,"description":"It's to late to say sorry x Fangirl14","protected":false,"verified":false,"followers_count":7,"friends_count":31,"listed_count":0,"favourites_count":96,"statuses_count":62,"created_at":"Sun Nov 08 09:31:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663306717912928256\/MOeWrlu2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663306717912928256\/MOeWrlu2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4166797633\/1446979618","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:52 +0000 2015","id":663725698477985792,"id_str":"663725698477985792","text":"Puro kalang Salita, Pero wala kang isang Salita kaya sa madaling Salita Mahirap ng mag Salita.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":977678263,"id_str":"977678263","name":"Laimer Matsumoto","screen_name":"Matsuwabe","location":"Japan\u2708","url":"http:\/\/facebook.com\/Matsuwabe","description":"SuperMan.\u2667 illuminati \u2664 Virdilandia \u2606\n\u00d7 17 no 38 \u00d7 Officialfacebook: http:\/\/facebook.com\/Matsuwabe OfficialInstagram: http:\/\/instagram.com\/matsuwabe","protected":false,"verified":false,"followers_count":21183,"friends_count":219,"listed_count":9,"favourites_count":3000,"statuses_count":9209,"created_at":"Thu Nov 29 05:40:48 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606460455809187840\/wV6-rDaL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606460455809187840\/wV6-rDaL.jpg","profile_background_tile":true,"profile_link_color":"456456","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662779366988902400\/N1zKuBSh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662779366988902400\/N1zKuBSh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/977678263\/1446513761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":70,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Matsuwabe","name":"Laimer Matsumoto","id":977678263,"id_str":"977678263","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812679864320,"id_str":"663727812679864320","text":"RT @Suicide_skater: \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e21\u0e32\u0e44\u0e01\u0e25 \u0e41\u0e15\u0e48\u0e08\u0e23\u0e34\u0e07\u0e46\u0e40\u0e14\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e01\u0e25\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":912563107,"id_str":"912563107","name":"\u0e41\u0e01\u0e30\u0e14\u0e33","screen_name":"dookspk","location":null,"url":null,"description":"ACSP22|TUP33|\u0e27\u0e2d\u0e25\u0e40\u0e25\u0e22\u0e4c\u0e1a\u0e2d\u0e25|\u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e32\u0e22|1997|\u0e0a\u0e32\u0e40\u0e02\u0e35\u0e22\u0e27|\u0e2e\u0e31\u0e01\u0e19\u0e30\u0e2a\u0e32\u0e23\u0e04\u0e32\u0e21","protected":false,"verified":false,"followers_count":486,"friends_count":211,"listed_count":0,"favourites_count":593,"statuses_count":65068,"created_at":"Mon Oct 29 14:30:22 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627888159070687232\/u2QXrbjk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627888159070687232\/u2QXrbjk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912563107\/1427828030","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 15 16:30:57 +0000 2015","id":621356286819483648,"id_str":"621356286819483648","text":"\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e21\u0e32\u0e44\u0e01\u0e25 \u0e41\u0e15\u0e48\u0e08\u0e23\u0e34\u0e07\u0e46\u0e40\u0e14\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e01\u0e25\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437264756,"id_str":"437264756","name":"\u2716\u2716","screen_name":"Suicide_skater","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":408,"friends_count":100,"listed_count":0,"favourites_count":12,"statuses_count":1179,"created_at":"Thu Dec 15 06:02:50 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600682883108352000\/MdPyzixT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600682883108352000\/MdPyzixT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437264756\/1356271184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5091,"favorite_count":675,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suicide_skater","name":"\u2716\u2716","id":437264756,"id_str":"437264756","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080016666"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675657730,"id_str":"663727812675657730","text":"RT @DIGmov: \u300e\u3086\u304d\u3086\u304d\u3066\u3001\u795e\u8ecd\u300f\u304b\u30897\u5e74\u3002\u539f\u4e00\u7537\u304c\u8ffd\u3063\u305f\u6587\u8c6a \u4e95\u4e0a\u5149\u6674\u306e\u751f\u3068\u865a\u69cb\u3002\u300e\u5168\u8eab\u5c0f\u8aac\u5bb6\u300f\u518dDVD\u5316\u4e88\u544a\u7de8\u516c\u958b\u4e2d\uff01 \u30ad\u30cd\u65ec\u30d9\u30b9\u30c8\u30c6\u30f31\u4f4d\u306b\u8f1d\u3044\u305f\u540d\u4f5c\u3002https:\/\/t.co\/E0YnBfm3Sz #DIG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3009259358,"id_str":"3009259358","name":"\u6b66\u5bb6\u5dde","screen_name":"takeyasu5150","location":"JAPAN\/\u672c\u5dde\u6700\u5357\u7aef\u4ed8\u8fd1","url":"http:\/\/instagram.com\/takeyasu5150","description":"\u25a02015\u5e742\u67083\u65e5\u301c\u518dTwitter\u25a0\u30ad\u30fc\u30b9:\u5948\u826f\u306e\u7d75\u63cf\u304d\u306e\u53cb\u4eba\u4f5c\u25a0\u81ea\u8eab\u306e\u8a18\u9332\u3082\u517c\u306d\u3066\u6620\u753b\/\u30c9\u30e9\u30de\/\u97f3\u697d\/\u6f2b\u753b\/\u65e5\u5e38\u751f\u6d3b\/\u6642\u4e8b\u554f\u984c\/\u5199\u771f\u7b49\u3067\u30c4\u30a3\u30fc\u30c8\u3059\u308b\u304b\u3068\u3002\u25c6\u4f4f\u3093\u3060\u6240:\u548c\u6b4c\u5c71\u770c\/\u5927\u962a\u5e9c\/\u5e83\u5cf6\u770c\/\u5ca1\u5c71\u770c\/\u5927\u5206\u770c\/\u798f\u5ca1\u770c\/\u611b\u77e5\u770c\u25c6\u3010\u65ad\u6368\u96e2\u4e2d\u3011\u30e4\u30d5\u30aa\u30af\u306e\u30c4\u30a3\u30fc\u30c8\u306f\u81ea\u5206\u306e\u51fa\u54c1\u7269\u3067\u3059(^^;; \u25c6\u57fa\u672c\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5e0c\u671b","protected":false,"verified":false,"followers_count":719,"friends_count":721,"listed_count":10,"favourites_count":6325,"statuses_count":11139,"created_at":"Tue Feb 03 13:38:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566464230740619264\/hZwz31Pl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566464230740619264\/hZwz31Pl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3009259358\/1441612857","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:11:59 +0000 2015","id":663645197306232832,"id_str":"663645197306232832","text":"\u300e\u3086\u304d\u3086\u304d\u3066\u3001\u795e\u8ecd\u300f\u304b\u30897\u5e74\u3002\u539f\u4e00\u7537\u304c\u8ffd\u3063\u305f\u6587\u8c6a \u4e95\u4e0a\u5149\u6674\u306e\u751f\u3068\u865a\u69cb\u3002\u300e\u5168\u8eab\u5c0f\u8aac\u5bb6\u300f\u518dDVD\u5316\u4e88\u544a\u7de8\u516c\u958b\u4e2d\uff01 \u30ad\u30cd\u65ec\u30d9\u30b9\u30c8\u30c6\u30f31\u4f4d\u306b\u8f1d\u3044\u305f\u540d\u4f5c\u3002https:\/\/t.co\/E0YnBfm3Sz #DIG","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1277000906,"id_str":"1277000906","name":"DIG","screen_name":"DIGmov","location":null,"url":"http:\/\/www.dig-mov.com\/","description":"\u300c\u5e7b\u306e\u307e\u307e\u3067\u306f\u7d42\u308f\u3089\u305b\u306a\u3044\uff01\u300dDIG\u30ec\u30fc\u30d9\u30eb\u306f\u5fc3\u306b\u6b8b\u308b\u73e0\u7389\u306e\u540d\u4f5c\u6620\u50cf\u4f5c\u54c1\u3092DIG\uff08\u767a\u6398\u30fb\u63a2\u7a76\uff09\u3057\u3001\u73fe\u5b58\u3059\u308b\u6700\u826f\u306e\u7d20\u6750\u3092\u4f7f\u3044DVD\u3067\u5fa9\u523b\u3057\u3066\u307e\u3044\u308a\u307e\u3059\uff01\u30a2\u30ec\u3082\u51fa\u3057\u307e\u3059\uff01\u30b3\u30ec\u3082\u51fa\u3057\u307e\u3059\uff01\r\n\u540d\u4f5c\u3092\u5e7b\u306e\u307e\u307e\u306b\u3057\u306a\u3044\u3053\u3068\u3092\u7b2c\u4e00\u306e\u76ee\u7684\u3068\u3059\u308b\u672c\u30ec\u30fc\u30d9\u30eb\u306e\u3053\u308c\u304b\u3089\u306e\u5954\u8d70\u306b\u3054\u671f\u5f85\u4e0b\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":614,"friends_count":1307,"listed_count":10,"favourites_count":1,"statuses_count":1380,"created_at":"Mon Mar 18 06:52:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587519418239819777\/bZfudNOc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587519418239819777\/bZfudNOc.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585254459145498624\/prjunOHQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585254459145498624\/prjunOHQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277000906\/1428370727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"DIG","indices":[96,100]}],"urls":[{"url":"https:\/\/t.co\/E0YnBfm3Sz","expanded_url":"https:\/\/youtu.be\/sZ4E9CXXpsI","display_url":"youtu.be\/sZ4E9CXXpsI","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DIG","indices":[108,112]}],"urls":[{"url":"https:\/\/t.co\/E0YnBfm3Sz","expanded_url":"https:\/\/youtu.be\/sZ4E9CXXpsI","display_url":"youtu.be\/sZ4E9CXXpsI","indices":[84,107]}],"user_mentions":[{"screen_name":"DIGmov","name":"DIG","id":1277000906,"id_str":"1277000906","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016665"} +{"delete":{"status":{"id":663175217292910592,"id_str":"663175217292910592","user_id":1452782390,"user_id_str":"1452782390"},"timestamp_ms":"1447080016790"}} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812658892800,"id_str":"663727812658892800","text":"@utapuri781 \u304a\u3084\u3059\u307f\u306a\u3055\uff5e\u3044\u3001\u5168\u529b\u3067\u304a\u3064\u304b\u308c\u30cf\u30c3\u30d4\u30fc\u30bf\u30fc\u30f3\u3002","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u5ca9\u9244\u4e38\u30c4\u30a4\u30fc\u30c8\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727731696254976,"in_reply_to_status_id_str":"663727731696254976","in_reply_to_user_id":2950013089,"in_reply_to_user_id_str":"2950013089","in_reply_to_screen_name":"utapuri781","user":{"id":2788259936,"id_str":"2788259936","name":"SSK","screen_name":"TOP_OF_MURA","location":"\u65e5\u672c \u5bcc\u5c71\u770c","url":null,"description":"\u79c1\u3010@MURA_NO_MONO\u3011\u304c\u7ba1\u7406\u3057\u3066\u304a\u308a\u307e\u3059\u3002 \u81ea\u52d5\u30c4\u30a4\u30fc\u30c8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":25500,"friends_count":19401,"listed_count":309,"favourites_count":84378,"statuses_count":929607,"created_at":"Wed Sep 03 16:46:43 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632086562042306560\/VMS356W7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632086562042306560\/VMS356W7.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661885890088701952\/0kwt_txH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661885890088701952\/0kwt_txH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2788259936\/1437574880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"utapuri781","name":"\u2661\u30ea\u30ea\u30b9\u2661","id":2950013089,"id_str":"2950013089","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016661"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642213888,"id_str":"663727812642213888","text":"@CarCrashesTV and they say look out for bikes fucking hel may b this lot should read the highway coad.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724018659401728,"in_reply_to_status_id_str":"663724018659401728","in_reply_to_user_id":3221924979,"in_reply_to_user_id_str":"3221924979","in_reply_to_screen_name":"CarCrashesTV","user":{"id":3293564224,"id_str":"3293564224","name":"Cath Johns","screen_name":"CathJohns76","location":"Manchester, England","url":null,"description":"Married to Dave, got 2kids.xx","protected":false,"verified":false,"followers_count":180,"friends_count":534,"listed_count":2,"favourites_count":899,"statuses_count":2078,"created_at":"Fri May 22 00:27:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662036049145761792\/rQNwC_Xr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662036049145761792\/rQNwC_Xr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3293564224\/1434291113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarCrashesTV","name":"Car Crashes TV","id":3221924979,"id_str":"3221924979","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812650602496,"id_str":"663727812650602496","text":"Hi HeR\u2764 : Th3_Ch0s3N_1, Do u want to get FREE iPh0ne 6 TODAY? Please check my bi0. Thx https:\/\/t.co\/KOKlXZw1cx","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3729925394,"id_str":"3729925394","name":"GET iPhone6 FOR FREE","screen_name":"qeepgiveaway","location":"Florida, USA","url":"http:\/\/winthatiphone.weebly.com","description":"Welcome to the hottest giveaway this year! We're throwing away 5 brand new iPhone 6 everyday! Simply enter to WIN, JOIN NOW here: https:\/\/t.co\/zBlrErIiR8","protected":false,"verified":false,"followers_count":43,"friends_count":40,"listed_count":1,"favourites_count":0,"statuses_count":9826,"created_at":"Tue Sep 29 21:38:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661438125244178436\/ekWMMfRR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661438125244178436\/ekWMMfRR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3729925394\/1446534150","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727505199767552,"quoted_status_id_str":"663727505199767552","quoted_status":{"created_at":"Mon Nov 09 14:39:03 +0000 2015","id":663727505199767552,"id_str":"663727505199767552","text":"When He Eat it in the Shower Cook Breakfast and Wash Dishes And Put The Laundry Away \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210835030,"id_str":"210835030","name":"HeR\u2764","screen_name":"Th3_Ch0s3N_1","location":"Upstate,Ny","url":null,"description":"Q_Loveee ...#TeamLibra","protected":false,"verified":false,"followers_count":678,"friends_count":515,"listed_count":0,"favourites_count":722,"statuses_count":38569,"created_at":"Mon Nov 01 14:54:44 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633462585296318464\/oukoGb9V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633462585296318464\/oukoGb9V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210835030\/1437159107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KOKlXZw1cx","expanded_url":"https:\/\/twitter.com\/Th3_Ch0s3N_1\/status\/663727505199767552","display_url":"twitter.com\/Th3_Ch0s3N_1\/s\u2026","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016659"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812658860032,"id_str":"663727812658860032","text":"Mlm ni tidur lewat lagi.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413253223,"id_str":"413253223","name":"Tasnim","screen_name":"syafiqahafisan","location":"Johor Bahru \u2194 Tg.malim","url":"http:\/\/tasns.ssup.com","description":"failure is the pillar of success","protected":false,"verified":false,"followers_count":500,"friends_count":263,"listed_count":1,"favourites_count":8070,"statuses_count":38515,"created_at":"Tue Nov 15 17:21:26 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515497923505684481\/jLh_60SC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515497923505684481\/jLh_60SC.jpeg","profile_background_tile":true,"profile_link_color":"FF8C00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F04DA4","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634881838931021824\/gSWBfgMq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634881838931021824\/gSWBfgMq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413253223\/1439386170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080016661"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812646449152,"id_str":"663727812646449152","text":"@CarrefourSA 23.04.1948","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726871201374208,"in_reply_to_status_id_str":"663726871201374208","in_reply_to_user_id":320694245,"in_reply_to_user_id_str":"320694245","in_reply_to_screen_name":"CarrefourSA","user":{"id":3327238792,"id_str":"3327238792","name":"ALCK","screen_name":"alicuk_","location":"\u0130stanbul, T\u00fcrkiye","url":null,"description":"\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u2b50\ufe0f\u26bd\ufe0f","protected":false,"verified":false,"followers_count":44,"friends_count":211,"listed_count":0,"favourites_count":78,"statuses_count":1887,"created_at":"Mon Jun 15 15:18:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FCB514","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634255107773829120\/8RSRxK-k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634255107773829120\/8RSRxK-k_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarrefourSA","name":"CarrefourSA","id":320694245,"id_str":"320694245","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080016658"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812654731268,"id_str":"663727812654731268","text":"RT @sige_yang: \u3057\u3087\u3046\u3082\u306a\u3044\u30af\u30bd\u30b3\u30e9\u3092\u4f5c\u308a\u307e\u3057\u305f https:\/\/t.co\/rqUBZYP1Oh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25701770,"id_str":"25701770","name":"\u9ce5\u982d\u304b\u308a\u3084\u30de\u30f3\u306e\u63d0\u4f9b\u3067\u304a\u9001\u308a\u3057\u3066\u3044\u307e\u3059","screen_name":"kariya_mitsuru","location":null,"url":"http:\/\/kariyam.blog122.fc2.com\/","description":"vi\u3068C++\u4e0b\u624b\u306e\u6a2a\u597d\u304d\u3002 \u8da3\u5473\u306f\u30ea\u30c4\u30a4\u30fc\u30c8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":210,"friends_count":231,"listed_count":27,"favourites_count":16903,"statuses_count":59850,"created_at":"Sat Mar 21 17:40:30 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/426914347068047360\/umY2iKKa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426914347068047360\/umY2iKKa_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:57:53 +0000 2015","id":663656748138434561,"id_str":"663656748138434561","text":"\u3057\u3087\u3046\u3082\u306a\u3044\u30af\u30bd\u30b3\u30e9\u3092\u4f5c\u308a\u307e\u3057\u305f https:\/\/t.co\/rqUBZYP1Oh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53065890,"id_str":"53065890","name":"\u3057\u3052\u3084\u3093","screen_name":"sige_yang","location":"\u5927\u90fd\u4f1a\u4ed9\u53f0","url":"http:\/\/sige-yang.sakura.ne.jp\/","description":"\u4ed9\u53f0\u306e\u67d0IT\u4f01\u696d\u306b\u52d9\u3081\u3066\u3044\u308b\u3057\u304c\u306a\u3044\u30a8\u30f3\u30b8\u30cb\u30a2\u3002\u8133\u5185\u3067\u8003\u3048\u3066\u308b\u3053\u3068\u304c\u305d\u306e\u307e\u307e\u30c0\u30c0\u6f0f\u308c\u3057\u3066\u3044\u307e\u3059\u3002 Inkscape\u4f7f\u3044\u3002Java\u4f7f\u3044\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u3044\u304a\u308a\u3093( @iori0922 )","protected":false,"verified":false,"followers_count":790,"friends_count":919,"listed_count":65,"favourites_count":37996,"statuses_count":162516,"created_at":"Thu Jul 02 13:44:47 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"091304","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181893404\/oONV37cO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181893404\/oONV37cO.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"4D4A33","profile_sidebar_fill_color":"262626","profile_text_color":"696545","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660337550628753408\/V60dYnvC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660337550628753408\/V60dYnvC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53065890\/1424874826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":530,"favorite_count":351,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663656746099937280,"id_str":"663656746099937280","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","url":"https:\/\/t.co\/rqUBZYP1Oh","display_url":"pic.twitter.com\/rqUBZYP1Oh","expanded_url":"http:\/\/twitter.com\/sige_yang\/status\/663656748138434561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":354,"h":436,"resize":"fit"},"small":{"w":340,"h":418,"resize":"fit"},"medium":{"w":354,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663656746099937280,"id_str":"663656746099937280","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","url":"https:\/\/t.co\/rqUBZYP1Oh","display_url":"pic.twitter.com\/rqUBZYP1Oh","expanded_url":"http:\/\/twitter.com\/sige_yang\/status\/663656748138434561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":354,"h":436,"resize":"fit"},"small":{"w":340,"h":418,"resize":"fit"},"medium":{"w":354,"h":436,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sige_yang","name":"\u3057\u3052\u3084\u3093","id":53065890,"id_str":"53065890","indices":[3,13]}],"symbols":[],"media":[{"id":663656746099937280,"id_str":"663656746099937280","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","url":"https:\/\/t.co\/rqUBZYP1Oh","display_url":"pic.twitter.com\/rqUBZYP1Oh","expanded_url":"http:\/\/twitter.com\/sige_yang\/status\/663656748138434561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":354,"h":436,"resize":"fit"},"small":{"w":340,"h":418,"resize":"fit"},"medium":{"w":354,"h":436,"resize":"fit"}},"source_status_id":663656748138434561,"source_status_id_str":"663656748138434561","source_user_id":53065890,"source_user_id_str":"53065890"}]},"extended_entities":{"media":[{"id":663656746099937280,"id_str":"663656746099937280","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIS1wUEAAyCin.png","url":"https:\/\/t.co\/rqUBZYP1Oh","display_url":"pic.twitter.com\/rqUBZYP1Oh","expanded_url":"http:\/\/twitter.com\/sige_yang\/status\/663656748138434561\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":354,"h":436,"resize":"fit"},"small":{"w":340,"h":418,"resize":"fit"},"medium":{"w":354,"h":436,"resize":"fit"}},"source_status_id":663656748138434561,"source_status_id_str":"663656748138434561","source_user_id":53065890,"source_user_id_str":"53065890"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016660"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812679892992,"id_str":"663727812679892992","text":"@mikesweaterpaws smol lil bean","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727292959449088,"in_reply_to_status_id_str":"663727292959449088","in_reply_to_user_id":1426518420,"in_reply_to_user_id_str":"1426518420","in_reply_to_screen_name":"mikesweaterpaws","user":{"id":630005716,"id_str":"630005716","name":"Slut Muffin","screen_name":"ziamswand","location":null,"url":null,"description":"Are you insane like me?","protected":false,"verified":false,"followers_count":3598,"friends_count":1691,"listed_count":47,"favourites_count":13808,"statuses_count":57533,"created_at":"Sun Jul 08 07:37:44 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548741790392524800\/XaT_RYQv.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548741790392524800\/XaT_RYQv.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663702608243109888\/A4l79a08_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663702608243109888\/A4l79a08_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630005716\/1447074006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mikesweaterpaws","name":"diana","id":1426518420,"id_str":"1426518420","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016666"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812654686208,"id_str":"663727812654686208","text":"\u305a\u3063\u3068\u3044\u3063\u3057\u3087\u3067\u3057\u305f\n\u3068\u3066\u3082\u3057\u3042\u308f\u305b\u30c7\u30b9\u23dc\u23dd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2879332357,"id_str":"2879332357","name":"\u3086\u30fc\u304b","screen_name":"yuu52465","location":null,"url":null,"description":"\u5546\u696d\u9001\u7403mg _ 0605 \u7adc\u6e13","protected":false,"verified":false,"followers_count":271,"friends_count":256,"listed_count":0,"favourites_count":1485,"statuses_count":464,"created_at":"Mon Oct 27 09:23:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655706486430003200\/X2sMh5LW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655706486430003200\/X2sMh5LW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2879332357\/1446304202","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016660"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812654661632,"id_str":"663727812654661632","text":"Nakaka iyak \ud83d\ude36","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3842879713,"id_str":"3842879713","name":"Lokinzz \u2661","screen_name":"jmicor1","location":"balanga city","url":null,"description":null,"protected":false,"verified":false,"followers_count":63,"friends_count":219,"listed_count":0,"favourites_count":101,"statuses_count":222,"created_at":"Sat Oct 10 02:37:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660425529820999680\/7Bt7XL_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660425529820999680\/7Bt7XL_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3842879713\/1446721204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080016660"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812642283520,"id_str":"663727812642283520","text":"RT @FrontalSob: Kalo udah dewasa itu harusnya tau yang mana yang baik dan yang mana yang buruk sob !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030722361,"id_str":"1030722361","name":"Putri Gita","screen_name":"ga_putri","location":"North Borneo, INDONESIA","url":"http:\/\/www.instagram.com\/ga_putri","description":"Jesus is my savior","protected":false,"verified":false,"followers_count":778,"friends_count":89,"listed_count":1,"favourites_count":110,"statuses_count":10226,"created_at":"Sun Dec 23 14:50:22 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436475942899171329\/3IYfrJ0F.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436475942899171329\/3IYfrJ0F.png","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"B40B43","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658514364765372416\/lpVqFnh2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658514364765372416\/lpVqFnh2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030722361\/1441930971","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:02:42 +0000 2015","id":663673061430968320,"id_str":"663673061430968320","text":"Kalo udah dewasa itu harusnya tau yang mana yang baik dan yang mana yang buruk sob !","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":501536943,"id_str":"501536943","name":"FRONTAL Sob !","screen_name":"FrontalSob","location":"Indonesia","url":null,"description":"DULU LO SOMETHING, TAPI SEKARANG NOTHING ! \u250c\u041f\u2510(\u25ba_\u25c4)\u250c\u041f\u2510 Follow \u00bb @FrontalSob \u00ab buktiin lo FRONTAL Sob !","protected":false,"verified":false,"followers_count":377891,"friends_count":3,"listed_count":145,"favourites_count":9,"statuses_count":15100,"created_at":"Fri Feb 24 07:12:37 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/782021574\/fc309825adb194dc81707c42ca8973ef.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/782021574\/fc309825adb194dc81707c42ca8973ef.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469365812495544320\/1adjAf3D_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469365812495544320\/1adjAf3D_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501536943\/1400740071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FrontalSob","name":"FRONTAL Sob !","id":501536943,"id_str":"501536943","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080016657"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812671475712,"id_str":"663727812671475712","text":"RT @bootypls: @CreamyKitty1 paige\nfist my electrical socket","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2193246024,"id_str":"2193246024","name":"CreamyKitty","screen_name":"CreamyKitty1","location":null,"url":null,"description":"Stupid internet girl. I stream games sometimes. Don't hit on\/creep @bootypls. We're married. I'll murder you. \nGive me food ok?~*~*","protected":false,"verified":false,"followers_count":1727,"friends_count":133,"listed_count":21,"favourites_count":18429,"statuses_count":27749,"created_at":"Thu Nov 14 01:01:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662909309643157504\/1okAJ8sR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662909309643157504\/1okAJ8sR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193246024\/1393077396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:23 +0000 2015","id":663727340120317952,"id_str":"663727340120317952","text":"@CreamyKitty1 paige\nfist my electrical socket","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726988608167937,"in_reply_to_status_id_str":"663726988608167937","in_reply_to_user_id":2193246024,"in_reply_to_user_id_str":"2193246024","in_reply_to_screen_name":"CreamyKitty1","user":{"id":939627548,"id_str":"939627548","name":"hannah","screen_name":"bootypls","location":"pug island","url":"http:\/\/ask.fm\/dickyboys","description":"a positive pupper | commission inquiries: awfulgospel@gmail.com |Commssion status: CLOSED|","protected":false,"verified":false,"followers_count":591,"friends_count":343,"listed_count":8,"favourites_count":20451,"statuses_count":11790,"created_at":"Sat Nov 10 18:18:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613232347673030657\/5kSsxLMd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613232347673030657\/5kSsxLMd.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662125809549864960\/gpjJwGWk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662125809549864960\/gpjJwGWk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/939627548\/1446694225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CreamyKitty1","name":"CreamyKitty","id":2193246024,"id_str":"2193246024","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bootypls","name":"hannah","id":939627548,"id_str":"939627548","indices":[3,12]},{"screen_name":"CreamyKitty1","name":"CreamyKitty","id":2193246024,"id_str":"2193246024","indices":[14,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016664"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812663119872,"id_str":"663727812663119872","text":"RT @EstafadosB: https:\/\/t.co\/QAFrocDFP2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3285642271,"id_str":"3285642271","name":"george cast","screen_name":"georgebc64","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":159,"listed_count":0,"favourites_count":211,"statuses_count":2051,"created_at":"Mon Jul 20 16:16:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 14:21:43 +0000 2015","id":660099266241650688,"id_str":"660099266241650688","text":"https:\/\/t.co\/QAFrocDFP2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2578285751,"id_str":"2578285751","name":"estafadosBC","screen_name":"EstafadosB","location":"Guatemala","url":null,"description":null,"protected":false,"verified":false,"followers_count":92,"friends_count":111,"listed_count":2,"favourites_count":820,"statuses_count":1324,"created_at":"Mon Jun 02 19:28:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493058511044366336\/3aeG0bGu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493058511044366336\/3aeG0bGu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2578285751\/1401739865","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660099243785392128,"id_str":"660099243785392128","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","url":"https:\/\/t.co\/QAFrocDFP2","display_url":"pic.twitter.com\/QAFrocDFP2","expanded_url":"http:\/\/twitter.com\/EstafadosB\/status\/660099266241650688\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660099243785392128,"id_str":"660099243785392128","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","url":"https:\/\/t.co\/QAFrocDFP2","display_url":"pic.twitter.com\/QAFrocDFP2","expanded_url":"http:\/\/twitter.com\/EstafadosB\/status\/660099266241650688\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EstafadosB","name":"estafadosBC","id":2578285751,"id_str":"2578285751","indices":[3,14]}],"symbols":[],"media":[{"id":660099243785392128,"id_str":"660099243785392128","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","url":"https:\/\/t.co\/QAFrocDFP2","display_url":"pic.twitter.com\/QAFrocDFP2","expanded_url":"http:\/\/twitter.com\/EstafadosB\/status\/660099266241650688\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660099266241650688,"source_status_id_str":"660099266241650688","source_user_id":2578285751,"source_user_id_str":"2578285751"}]},"extended_entities":{"media":[{"id":660099243785392128,"id_str":"660099243785392128","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkw85VEAAqtt6.jpg","url":"https:\/\/t.co\/QAFrocDFP2","display_url":"pic.twitter.com\/QAFrocDFP2","expanded_url":"http:\/\/twitter.com\/EstafadosB\/status\/660099266241650688\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660099266241650688,"source_status_id_str":"660099266241650688","source_user_id":2578285751,"source_user_id_str":"2578285751"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080016662"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667273216,"id_str":"663727812667273216","text":"RT @EXO_HBK: \u0e40\u0e17\u0e23\u0e19\u0e44\u0e17\u0e22\u0e40\u0e17\u0e23\u0e19\u0e40\u0e01\u0e32\u0e21\u0e32\u0e41\u0e25\u0e49\u0e27\u0e04\u0e23\u0e31\u0e1a #CALLMEBABY \u0e2d\u0e34\u0e2d\u0e34 \u0e40\u0e1e\u0e37\u0e48\u0e2d #EXO \u0e2a\u0e39\u0e49\u0e42\u0e27\u0e4a\u0e22\u0e08\u0e49\u0e30 \u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35 #MAMA2015 \u0e14\u0e49\u0e27\u0e22 \u0e01\u0e15\u0e34\u0e01\u0e32\u0e04\u0e23\u0e1a\u0e23\u0e36\u0e22\u0e31\u0e07 \u0e2b\u0e49\u0e32\u0e46 \u0e16\u0e36\u0e07 @MnetMAMA \u0e2d\u0e0b\u0e2d \u0e40\u0e15\u0e47\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2543473057,"id_str":"2543473057","name":"\u0e41\u0e1e\u0e17\u0e22\u0e4c\u0e2b\u0e0d\u0e34\u0e07 \u0e21\u0e19\u0e15\u0e4c\u0e19\u0e20\u0e32","screen_name":"pangcy29","location":"Thailand","url":null,"description":"\u2764Chanyeol Exo\n\u2764\u0e1e\u0e35\u0e48\u0e40\u0e40\u0e1a\u0e21Got7\n\u270c011158","protected":false,"verified":false,"followers_count":174,"friends_count":57,"listed_count":1,"favourites_count":203,"statuses_count":36678,"created_at":"Tue Jun 03 12:59:54 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510310075575967744\/h6iZ-yWk.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510310075575967744\/h6iZ-yWk.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661525061577261056\/da6sDFrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661525061577261056\/da6sDFrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2543473057\/1445584367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:30 +0000 2015","id":663726863282401281,"id_str":"663726863282401281","text":"\u0e40\u0e17\u0e23\u0e19\u0e44\u0e17\u0e22\u0e40\u0e17\u0e23\u0e19\u0e40\u0e01\u0e32\u0e21\u0e32\u0e41\u0e25\u0e49\u0e27\u0e04\u0e23\u0e31\u0e1a #CALLMEBABY \u0e2d\u0e34\u0e2d\u0e34 \u0e40\u0e1e\u0e37\u0e48\u0e2d #EXO \u0e2a\u0e39\u0e49\u0e42\u0e27\u0e4a\u0e22\u0e08\u0e49\u0e30 \u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35 #MAMA2015 \u0e14\u0e49\u0e27\u0e22 \u0e01\u0e15\u0e34\u0e01\u0e32\u0e04\u0e23\u0e1a\u0e23\u0e36\u0e22\u0e31\u0e07 \u0e2b\u0e49\u0e32\u0e46 \u0e16\u0e36\u0e07 @MnetMAMA \u0e2d\u0e0b\u0e2d \u0e40\u0e15\u0e47\u0e21\u0e17\u0e35\u0e48\u0e19\u0e30\u0e08\u0e30\u0e1a\u0e2d\u0e01\u0e43\u0e2b\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":4,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[25,36]},{"text":"EXO","indices":[48,52]},{"text":"MAMA2015","indices":[71,80]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[109,118]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[38,49]},{"text":"EXO","indices":[61,65]},{"text":"MAMA2015","indices":[84,93]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[122,131]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667396096,"id_str":"663727812667396096","text":"I guess dating guys that they weren't for me https:\/\/t.co\/yIGyWuYt7C","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28193529,"id_str":"28193529","name":"Vivi \u2764\ufe0f","screen_name":"HeartingNiam1D","location":null,"url":"https:\/\/twitter.com\/real_liam_payne\/status\/459884964222615552","description":"Soy la esposa de Bryan M (sep\/15\/15) I love 1D, 5SOS, CD9, Austin Mahone, Justin Bieber, Maluma, Pipe Bueno and more! I met CD9 & Austin M :D \u2764\ufe0f Tato Ojeda \u2764\ufe0f","protected":false,"verified":false,"followers_count":10123,"friends_count":8821,"listed_count":25,"favourites_count":9259,"statuses_count":94096,"created_at":"Wed Apr 01 20:56:34 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607644787391516672\/UWoXsrxa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607644787391516672\/UWoXsrxa.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"150559","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652617345916096513\/xSbHhwDW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652617345916096513\/xSbHhwDW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28193529\/1444317926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663581728812888066,"quoted_status_id_str":"663581728812888066","quoted_status":{"created_at":"Mon Nov 09 04:59:47 +0000 2015","id":663581728812888066,"id_str":"663581728812888066","text":"what is the biggest regret in your life?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9492,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yIGyWuYt7C","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663581728812888066","display_url":"twitter.com\/questionyrself\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675657729,"id_str":"663727812675657729","text":"Greedy polar bear breaks into BBC crew's hut, steals all the bacon https:\/\/t.co\/aO0MDsYuGb v\u00eda @Mashable","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":931850324,"id_str":"931850324","name":"CursoHootUNO","screen_name":"CursoHootUNO","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":1,"listed_count":7,"favourites_count":1,"statuses_count":53364,"created_at":"Wed Nov 07 11:35:48 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/aO0MDsYuGb","expanded_url":"http:\/\/on.mash.to\/1Sc8D3O","display_url":"on.mash.to\/1Sc8D3O","indices":[67,90]}],"user_mentions":[{"screen_name":"mashable","name":"Mashable","id":972651,"id_str":"972651","indices":[95,104]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016665"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667289601,"id_str":"663727812667289601","text":"RT @H2K_Chavez: @genss_ https:\/\/t.co\/4tPDZPz7Lk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":766577755,"id_str":"766577755","name":"Roberto Ayala","screen_name":"ASAPRobby_","location":"Houston, TX","url":null,"description":"Just a peasant passin' from a pawn to a king #LongLivePollo","protected":false,"verified":false,"followers_count":441,"friends_count":461,"listed_count":1,"favourites_count":5892,"statuses_count":14312,"created_at":"Sat Aug 18 23:45:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647601751693004800\/9KXJixb8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647601751693004800\/9KXJixb8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766577755\/1445788228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:56 +0000 2015","id":663727728873443328,"id_str":"663727728873443328","text":"@genss_ https:\/\/t.co\/4tPDZPz7Lk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2334349724,"in_reply_to_user_id_str":"2334349724","in_reply_to_screen_name":"genss_","user":{"id":629894993,"id_str":"629894993","name":"Chip Lord","screen_name":"H2K_Chavez","location":"Space City ","url":null,"description":"Doing stuff that I wouldn't want my kids doing. #TEAMBROKEBOYZ","protected":false,"verified":false,"followers_count":565,"friends_count":323,"listed_count":2,"favourites_count":114,"statuses_count":25681,"created_at":"Sun Jul 08 04:24:35 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660558629808943104\/iEz3tuTH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660558629808943104\/iEz3tuTH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/629894993\/1446214031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727595431706628,"quoted_status_id_str":"663727595431706628","quoted_status":{"created_at":"Mon Nov 09 14:39:24 +0000 2015","id":663727595431706628,"id_str":"663727595431706628","text":"@thebeastjulissa @H2K_Chavez did I hurt you qt?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727472362389504,"in_reply_to_status_id_str":"663727472362389504","in_reply_to_user_id":580298500,"in_reply_to_user_id_str":"580298500","in_reply_to_screen_name":"thebeastjulissa","user":{"id":766577755,"id_str":"766577755","name":"Roberto Ayala","screen_name":"ASAPRobby_","location":"Houston, TX","url":null,"description":"Just a peasant passin' from a pawn to a king #LongLivePollo","protected":false,"verified":false,"followers_count":441,"friends_count":461,"listed_count":1,"favourites_count":5892,"statuses_count":14311,"created_at":"Sat Aug 18 23:45:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647601751693004800\/9KXJixb8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647601751693004800\/9KXJixb8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766577755\/1445788228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thebeastjulissa","name":"julissa","id":580298500,"id_str":"580298500","indices":[0,16]},{"screen_name":"H2K_Chavez","name":"Chip Lord","id":629894993,"id_str":"629894993","indices":[17,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4tPDZPz7Lk","expanded_url":"https:\/\/twitter.com\/asaprobby_\/status\/663727595431706628","display_url":"twitter.com\/asaprobby_\/sta\u2026","indices":[9,32]}],"user_mentions":[{"screen_name":"genss_","name":"GENESIS","id":2334349724,"id_str":"2334349724","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4tPDZPz7Lk","expanded_url":"https:\/\/twitter.com\/asaprobby_\/status\/663727595431706628","display_url":"twitter.com\/asaprobby_\/sta\u2026","indices":[25,48]}],"user_mentions":[{"screen_name":"H2K_Chavez","name":"Chip Lord","id":629894993,"id_str":"629894993","indices":[3,14]},{"screen_name":"genss_","name":"GENESIS","id":2334349724,"id_str":"2334349724","indices":[16,23]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675768320,"id_str":"663727812675768320","text":"\u3010DQ10\u3011\u30b5\u30dd\u3060\u3051\u306b\u30b5\u30dc\u308b\uff57\uff57\uff57\u3046\u304f\u304f\u304f\uff57\uff57\uff57\uff57 https:\/\/t.co\/lTf191iDUW https:\/\/t.co\/chSo3W98x5","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076121822,"id_str":"3076121822","name":"2ne7788","screen_name":"2newsJ","location":"\u6771\u4eac\u90fd","url":"http:\/\/2newsJ.fantena.net","description":"\u60c5\u5831\u30a2\u30f3\u30c6\u30ca\u3067\u3059","protected":false,"verified":false,"followers_count":325,"friends_count":367,"listed_count":3,"favourites_count":0,"statuses_count":97310,"created_at":"Fri Mar 13 06:14:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576265283435786240\/Bp4PnRWH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576265283435786240\/Bp4PnRWH_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lTf191iDUW","expanded_url":"http:\/\/ift.tt\/1RImaA0","display_url":"ift.tt\/1RImaA0","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727812524777472,"id_str":"663727812524777472","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7c0WIAAo3fv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7c0WIAAo3fv.jpg","url":"https:\/\/t.co\/chSo3W98x5","display_url":"pic.twitter.com\/chSo3W98x5","expanded_url":"http:\/\/twitter.com\/2newsJ\/status\/663727812675768320\/photo\/1","type":"photo","sizes":{"large":{"w":150,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":150,"resize":"fit"},"medium":{"w":150,"h":150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727812524777472,"id_str":"663727812524777472","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7c0WIAAo3fv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7c0WIAAo3fv.jpg","url":"https:\/\/t.co\/chSo3W98x5","display_url":"pic.twitter.com\/chSo3W98x5","expanded_url":"http:\/\/twitter.com\/2newsJ\/status\/663727812675768320\/photo\/1","type":"photo","sizes":{"large":{"w":150,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":150,"resize":"fit"},"medium":{"w":150,"h":150,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016665"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667273217,"id_str":"663727812667273217","text":"RT @CikStrawberi: In the end, everyone leaves.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2206381147,"id_str":"2206381147","name":"......","screen_name":"SyzzNbl_","location":"bumi","url":"http:\/\/instagram.com\/_syazzaa","description":null,"protected":false,"verified":false,"followers_count":408,"friends_count":270,"listed_count":0,"favourites_count":3320,"statuses_count":14071,"created_at":"Thu Nov 21 04:36:36 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"03FF53","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433791666655199232\/2iYzbzFq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433791666655199232\/2iYzbzFq.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663568473973387264\/COrQ3eb8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663568473973387264\/COrQ3eb8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2206381147\/1445598009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:27 +0000 2015","id":663721065101692928,"id_str":"663721065101692928","text":"In the end, everyone leaves.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":468201370,"id_str":"468201370","name":"Mai","screen_name":"CikStrawberi","location":"Selangor, Malaysia","url":null,"description":"I might be broken, but I'll still help you pick up your pieces. Wechat ID : cikstrawberi","protected":false,"verified":false,"followers_count":108560,"friends_count":79866,"listed_count":46,"favourites_count":6093,"statuses_count":64310,"created_at":"Thu Jan 19 08:43:18 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478837280753197056\/XmAQt08J.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478837280753197056\/XmAQt08J.png","profile_background_tile":true,"profile_link_color":"001111","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656424620736667649\/38Vxhg7-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656424620736667649\/38Vxhg7-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468201370\/1447041697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":200,"favorite_count":81,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CikStrawberi","name":"Mai","id":468201370,"id_str":"468201370","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667310080,"id_str":"663727812667310080","text":"RT @made_in_USJ: USJ\u306e\u30af\u30ea\u30b9\u30de\u30b9\u306eBGM\u3001\u3069\u3046\u305e\u3002\n\n#USJ https:\/\/t.co\/nvDjfSibp9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3338303234,"id_str":"3338303234","name":"Taniguchi couple","screen_name":"tomonene0812","location":"\u5171\u540c\u57a2\u3067\u3059(^_-)-\u2606 ","url":null,"description":"\u3084\u305f\u3089\u3068\u30b7\u30f3\u30af\u30ed\u7387\u9ad8\u3081 \u4f0a\u9054\u306b\u3084\u3063\u3066\u306a\u3044\u2728 \u30a4\u30e9\u3063\u3066\u3059\u308b\u3053\u3068\u304c\u3042\u3063\u3066\u3082\u304d\u3063\u3068\u5927\u4e08\u592b\u3067\u3057\u3087\uff01 \u79c1\u304c\u652f\u3048\u3066\u3084\u308d\u3046\u03b5- (\u00b4\u30fc`*) \uff8c\uff6f \u7d76\u5bfe\u6700\u9ad8\u306b\u3055\u305b\u308b\u3002\u80f8\u306f\u3063\u3066\u8a00\u3048\u308b\u304f\u3089\u3044\u306b\u3002","protected":false,"verified":false,"followers_count":29,"friends_count":50,"listed_count":0,"favourites_count":184,"statuses_count":213,"created_at":"Tue Aug 25 14:42:36 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636898134421979136\/mTqpyvhn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636898134421979136\/mTqpyvhn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3338303234\/1446392140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:42:29 +0000 2015","id":663667971722600448,"id_str":"663667971722600448","text":"USJ\u306e\u30af\u30ea\u30b9\u30de\u30b9\u306eBGM\u3001\u3069\u3046\u305e\u3002\n\n#USJ https:\/\/t.co\/nvDjfSibp9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3012957210,"id_str":"3012957210","name":"\uff35\uff33\uff2a\u30e9\u30a4\u30d5","screen_name":"made_in_USJ","location":"\u300c\u4eca\u5e74\u306e\u30af\u30ea\u30b9\u30de\u30b9\u306f\u3001\u3059\u3054\u3044\u3089\u3057\u3044\u3002\u300d","url":null,"description":"\u30c6\u30fc\u30de\u30d1\u30fc\u30af\u304c\u5927\u597d\u304d\u306a\u4eba\u3067\u3059\u3002\u4e16\u754c\u6700\u9ad8\u3092\u304a\u5c4a\u3051\u3057\u305f\u3044\u5834\u6240\u3092\u4e2d\u5fc3\u306b\u3001\u30d1\u30fc\u30af\u5185\u3067\u5909\u308f\u3063\u305f\u3053\u3068\u3084\u6c17\u3065\u3044\u305f\u3053\u3068\u306a\u3069\u3092\u545f\u3044\u3066\u307e\u3059\u3002\u305f\u307e\u306b\u8c46\u77e5\u8b58\u3082\u2026\uff01\u30d1\u30fc\u30af\u3092\u64ae\u308b\u306e\u304c\u30de\u30a4\u30d6\u30fc\u30e0\uff01\u30b2\u30b9\u30c8\u306f\u307f\u3093\u306aVIP(\u30d6\u30a4\u30a2\u30a4\u30d4\u30fc)\uff01\u304a\u3082\u3066\u306a\u3057\u306e\u795e\u69d8\u3092\u80f8\u306b\u3001\u30ef\u30fc\u30eb\u30c9\u30af\u30e9\u30b9\u3092\u304a\u5c4a\u3051\u3057\u305f\u3044\u3002Let's enjoy \u201c USJ LIFE !!! \u201d","protected":false,"verified":false,"followers_count":6144,"friends_count":1944,"listed_count":27,"favourites_count":2062,"statuses_count":8657,"created_at":"Sun Feb 08 04:19:21 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663341092448788480\/36Z0ln6T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663341092448788480\/36Z0ln6T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012957210\/1447023193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":140,"favorite_count":298,"entities":{"hashtags":[{"text":"USJ","indices":[20,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663667678201049088,"id_str":"663667678201049088","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","url":"https:\/\/t.co\/nvDjfSibp9","display_url":"pic.twitter.com\/nvDjfSibp9","expanded_url":"http:\/\/twitter.com\/made_in_USJ\/status\/663667971722600448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663667678201049088,"id_str":"663667678201049088","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","url":"https:\/\/t.co\/nvDjfSibp9","display_url":"pic.twitter.com\/nvDjfSibp9","expanded_url":"http:\/\/twitter.com\/made_in_USJ\/status\/663667971722600448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30018,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/720x720\/1oqnHwyBSBbSXyVF.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/pl\/blOsynpQehG4_2or.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/480x480\/Hg-fenFn1G3En2bk.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/pl\/blOsynpQehG4_2or.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/240x240\/k8eNsdsiZAuvTfFY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/480x480\/Hg-fenFn1G3En2bk.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"USJ","indices":[37,41]}],"urls":[],"user_mentions":[{"screen_name":"made_in_USJ","name":"\uff35\uff33\uff2a\u30e9\u30a4\u30d5","id":3012957210,"id_str":"3012957210","indices":[3,15]}],"symbols":[],"media":[{"id":663667678201049088,"id_str":"663667678201049088","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","url":"https:\/\/t.co\/nvDjfSibp9","display_url":"pic.twitter.com\/nvDjfSibp9","expanded_url":"http:\/\/twitter.com\/made_in_USJ\/status\/663667971722600448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663667971722600448,"source_status_id_str":"663667971722600448","source_user_id":3012957210,"source_user_id_str":"3012957210"}]},"extended_entities":{"media":[{"id":663667678201049088,"id_str":"663667678201049088","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663667678201049088\/pu\/img\/b2K8u6j00iXX_3ql.jpg","url":"https:\/\/t.co\/nvDjfSibp9","display_url":"pic.twitter.com\/nvDjfSibp9","expanded_url":"http:\/\/twitter.com\/made_in_USJ\/status\/663667971722600448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663667971722600448,"source_status_id_str":"663667971722600448","source_user_id":3012957210,"source_user_id_str":"3012957210","video_info":{"aspect_ratio":[1,1],"duration_millis":30018,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/720x720\/1oqnHwyBSBbSXyVF.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/pl\/blOsynpQehG4_2or.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/480x480\/Hg-fenFn1G3En2bk.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/pl\/blOsynpQehG4_2or.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/240x240\/k8eNsdsiZAuvTfFY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663667678201049088\/pu\/vid\/480x480\/Hg-fenFn1G3En2bk.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812671467521,"id_str":"663727812671467521","text":"RT @SoAppetizing: Funnel Cake \ud83d\ude0d\ud83d\udc45\ud83d\ude4c http:\/\/t.co\/y0dxUSUa7M","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":764912946,"id_str":"764912946","name":"3 weeks\u2650\ufe0f","screen_name":"Bee_bisshhh","location":"Track,Field","url":null,"description":"Golden child \u270c\ufe0f|Htx |7 teen","protected":false,"verified":false,"followers_count":830,"friends_count":815,"listed_count":3,"favourites_count":3165,"statuses_count":12463,"created_at":"Sat Aug 18 02:44:01 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637485982\/awfqqqui8l6t9pcycgku.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637485982\/awfqqqui8l6t9pcycgku.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650785972783714304\/8FaucBYL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650785972783714304\/8FaucBYL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/764912946\/1443994442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 14 00:36:05 +0000 2015","id":643221645302206465,"id_str":"643221645302206465","text":"Funnel Cake \ud83d\ude0d\ud83d\udc45\ud83d\ude4c http:\/\/t.co\/y0dxUSUa7M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2918015942,"id_str":"2918015942","name":"Food Porn","screen_name":"SoAppetizing","location":null,"url":null,"description":"Feed Your Eyes! #1 Source of daily Food Porn! \u2764\ufe0f","protected":false,"verified":false,"followers_count":179414,"friends_count":32559,"listed_count":132,"favourites_count":4,"statuses_count":362,"created_at":"Wed Dec 03 23:24:56 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590024632801038336\/nwbi7lmQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590024632801038336\/nwbi7lmQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918015942\/1426843798","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1518,"favorite_count":2014,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":643158482636554240,"id_str":"643158482636554240","indices":[16,38],"media_url":"http:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","url":"http:\/\/t.co\/y0dxUSUa7M","display_url":"pic.twitter.com\/y0dxUSUa7M","expanded_url":"http:\/\/twitter.com\/Eating\/status\/643158482795913216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643158482795913216,"source_status_id_str":"643158482795913216","source_user_id":1117957238,"source_user_id_str":"1117957238"}]},"extended_entities":{"media":[{"id":643158482636554240,"id_str":"643158482636554240","indices":[16,38],"media_url":"http:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","url":"http:\/\/t.co\/y0dxUSUa7M","display_url":"pic.twitter.com\/y0dxUSUa7M","expanded_url":"http:\/\/twitter.com\/Eating\/status\/643158482795913216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643158482795913216,"source_status_id_str":"643158482795913216","source_user_id":1117957238,"source_user_id_str":"1117957238"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SoAppetizing","name":"Food Porn","id":2918015942,"id_str":"2918015942","indices":[3,16]}],"symbols":[],"media":[{"id":643158482636554240,"id_str":"643158482636554240","indices":[34,56],"media_url":"http:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","url":"http:\/\/t.co\/y0dxUSUa7M","display_url":"pic.twitter.com\/y0dxUSUa7M","expanded_url":"http:\/\/twitter.com\/Eating\/status\/643158482795913216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643158482795913216,"source_status_id_str":"643158482795913216","source_user_id":1117957238,"source_user_id_str":"1117957238"}]},"extended_entities":{"media":[{"id":643158482636554240,"id_str":"643158482636554240","indices":[34,56],"media_url":"http:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COz1O3vUwAAK8yO.jpg","url":"http:\/\/t.co\/y0dxUSUa7M","display_url":"pic.twitter.com\/y0dxUSUa7M","expanded_url":"http:\/\/twitter.com\/Eating\/status\/643158482795913216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643158482795913216,"source_status_id_str":"643158482795913216","source_user_id":1117957238,"source_user_id_str":"1117957238"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016664"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812671467520,"id_str":"663727812671467520","text":"Buy me Scotts body shop hoodie for christmas https:\/\/t.co\/za83oV5aGV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563715118,"id_str":"2563715118","name":"adriana","screen_name":"vriannaav","location":"vegas with saira","url":null,"description":"I don't know why they been lying but your shit is not that inspiring","protected":false,"verified":false,"followers_count":530,"friends_count":474,"listed_count":1,"favourites_count":9877,"statuses_count":9146,"created_at":"Thu Jun 12 16:52:05 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/477141041653362688\/_-yGIkrY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/477141041653362688\/_-yGIkrY.jpeg","profile_background_tile":true,"profile_link_color":"1DA9B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660688542708838400\/u6LfjQ1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660688542708838400\/u6LfjQ1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563715118\/1444256654","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":661182639198588928,"quoted_status_id_str":"661182639198588928","quoted_status":{"created_at":"Mon Nov 02 14:06:40 +0000 2015","id":661182639198588928,"id_str":"661182639198588928","text":"As requested, the One Tree Hill store is now reopened! \n\nShips worldwide.\nGet them here: https:\/\/t.co\/lmZDp2KwTU https:\/\/t.co\/FjZOHalJlo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1591914252,"id_str":"1591914252","name":"One Tree Hill","screen_name":"OTHdiary","location":"The River Court","url":"http:\/\/Instagram.com\/OTHdiary","description":"All the best quotes, pictures, news and more from the world hit TV show, One Tree Hill!","protected":false,"verified":false,"followers_count":325005,"friends_count":30,"listed_count":132,"favourites_count":10722,"statuses_count":2020,"created_at":"Sat Jul 13 22:11:16 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612140601392238592\/92XhxuZb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612140601392238592\/92XhxuZb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1591914252\/1445399666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lmZDp2KwTU","expanded_url":"http:\/\/teespring.com\/stores\/store-13","display_url":"teespring.com\/stores\/store-13","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":661182634572259328,"id_str":"661182634572259328","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSz-GmFWIAAe_nF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSz-GmFWIAAe_nF.jpg","url":"https:\/\/t.co\/FjZOHalJlo","display_url":"pic.twitter.com\/FjZOHalJlo","expanded_url":"http:\/\/twitter.com\/OTHdiary\/status\/661182639198588928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":638,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661182634572259328,"id_str":"661182634572259328","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSz-GmFWIAAe_nF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSz-GmFWIAAe_nF.jpg","url":"https:\/\/t.co\/FjZOHalJlo","display_url":"pic.twitter.com\/FjZOHalJlo","expanded_url":"http:\/\/twitter.com\/OTHdiary\/status\/661182639198588928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":638,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/za83oV5aGV","expanded_url":"https:\/\/twitter.com\/OTHdiary\/status\/661182639198588928","display_url":"twitter.com\/OTHdiary\/statu\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016664"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667416576,"id_str":"663727812667416576","text":"I feel like @JackJackJohnson hates me https:\/\/t.co\/MGtgog65aU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119711207,"id_str":"3119711207","name":"LAWLEY-POP\u2728","screen_name":"ethansminion","location":"Panem, District 12. ","url":"http:\/\/nashgrier.com","description":"God has plan\u271e | met Sammy Wilk O8\/11\/2O15\u2728 | Dolan1\/2 | King Bach+Christian Delgrosso+Jake Paul+Alex from target+Seb+JB","protected":false,"verified":false,"followers_count":919,"friends_count":778,"listed_count":1,"favourites_count":8245,"statuses_count":8571,"created_at":"Thu Mar 26 20:45:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596671458249543680\/oYJ425WP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596671458249543680\/oYJ425WP.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657312632031059969\/N2YfqW8k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657312632031059969\/N2YfqW8k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3119711207\/1443904639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[12,28]}],"symbols":[],"media":[{"id":663727804387876864,"id_str":"663727804387876864","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6-gW4AA_-KF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6-gW4AA_-KF.jpg","url":"https:\/\/t.co\/MGtgog65aU","display_url":"pic.twitter.com\/MGtgog65aU","expanded_url":"http:\/\/twitter.com\/ethansminion\/status\/663727812667416576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727804387876864,"id_str":"663727804387876864","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6-gW4AA_-KF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6-gW4AA_-KF.jpg","url":"https:\/\/t.co\/MGtgog65aU","display_url":"pic.twitter.com\/MGtgog65aU","expanded_url":"http:\/\/twitter.com\/ethansminion\/status\/663727812667416576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016663"} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812667441152,"id_str":"663727812667441152","text":"Boto po tayo https:\/\/t.co\/DBhjzVNfXI #PushAwardsKathNiels https:\/\/t.co\/1imluEFR3E","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3822480439,"id_str":"3822480439","name":"hi","screen_name":"gsyeg33","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":45745,"created_at":"Thu Oct 08 06:21:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656486124152446976\/HrlBtxWt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656486124152446976\/HrlBtxWt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727647600590849,"quoted_status_id_str":"663727647600590849","quoted_status":{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727647600590849,"id_str":"663727647600590849","text":"Imma_lonely_: gerald312garcia: sandyayala09: CHINAdorables: BanggoDimple: kbdpftcris30: immadam_angelo: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320372658,"id_str":"2320372658","name":"RT link on bio pls","screen_name":"kathnielquotes_","location":null,"url":null,"description":"https:\/\/twitter.com\/kbdpangel\/status\/655782290610491392","protected":false,"verified":false,"followers_count":25,"friends_count":8,"listed_count":16,"favourites_count":18,"statuses_count":47721,"created_at":"Fri Jan 31 07:00:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561420845529051136\/CZ5cKVtx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320372658\/1422688137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[104,124]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[37,57]}],"urls":[{"url":"https:\/\/t.co\/DBhjzVNfXI","expanded_url":"http:\/\/m.pushawards.com","display_url":"m.pushawards.com","indices":[13,36]},{"url":"https:\/\/t.co\/1imluEFR3E","expanded_url":"http:\/\/twitter.com\/kathnielquotes_\/status\/663727647600590849","display_url":"twitter.com\/kathnielquotes\u2026","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080016663"} +{"delete":{"status":{"id":490781961879703552,"id_str":"490781961879703552","user_id":2196975768,"user_id_str":"2196975768"},"timestamp_ms":"1447080016967"}} +{"delete":{"status":{"id":616827990324842496,"id_str":"616827990324842496","user_id":3060375618,"user_id_str":"3060375618"},"timestamp_ms":"1447080017067"}} +{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727812675829761,"id_str":"663727812675829761","text":"premierleague : .MesutOzil1088 is on course to a #BPL record-breaker. Find out more: \u2026 https:\/\/t.co\/4Npv7Fjl7B) https:\/\/t.co\/1e2yU2jLVL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3429606059,"id_str":"3429606059","name":"Your Sports News","screen_name":"Yoursportsnews1","location":"UK","url":null,"description":"Where the big boyz play. Keep up to-date with the latest sports news around the globe Also follow us on Facebook #sports #football #NFL #wrestling #raidernation","protected":false,"verified":false,"followers_count":796,"friends_count":2039,"listed_count":26,"favourites_count":1,"statuses_count":25185,"created_at":"Tue Aug 18 09:25:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644422422272344064\/boF0twXU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644422422272344064\/boF0twXU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3429606059\/1439890199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724470562066432,"quoted_status_id_str":"663724470562066432","quoted_status":{"created_at":"Mon Nov 09 14:26:59 +0000 2015","id":663724470562066432,"id_str":"663724470562066432","text":".@MesutOzil1088 is on course to a #BPL record-breaker. Find out more: https:\/\/t.co\/j29nqVBUdw https:\/\/t.co\/EamjBGwotZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343627165,"id_str":"343627165","name":"Premier League","screen_name":"premierleague","location":null,"url":"http:\/\/www.premierleague.com","description":"Official Twitter account of the Premier League #BPL http:\/\/instagram.com\/premierleague","protected":false,"verified":true,"followers_count":9931510,"friends_count":22,"listed_count":17642,"favourites_count":571,"statuses_count":57380,"created_at":"Wed Jul 27 21:09:32 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050528","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161701914\/r0W2wiQt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161701914\/r0W2wiQt.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"171838","profile_text_color":"FFFFFF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1466012174\/PL-Twitter-Icon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1466012174\/PL-Twitter-Icon_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343627165\/1446916657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BPL","indices":[34,38]}],"urls":[{"url":"https:\/\/t.co\/j29nqVBUdw","expanded_url":"http:\/\/bit.ly\/Ozil-BPL","display_url":"bit.ly\/Ozil-BPL","indices":[70,93]}],"user_mentions":[{"screen_name":"MesutOzil1088","name":"Mesut \u00d6zil","id":533085085,"id_str":"533085085","indices":[1,15]}],"symbols":[],"media":[{"id":663724469605834752,"id_str":"663724469605834752","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF43eXIAAPson.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF43eXIAAPson.jpg","url":"https:\/\/t.co\/EamjBGwotZ","display_url":"pic.twitter.com\/EamjBGwotZ","expanded_url":"http:\/\/twitter.com\/premierleague\/status\/663724470562066432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724469605834752,"id_str":"663724469605834752","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF43eXIAAPson.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF43eXIAAPson.jpg","url":"https:\/\/t.co\/EamjBGwotZ","display_url":"pic.twitter.com\/EamjBGwotZ","expanded_url":"http:\/\/twitter.com\/premierleague\/status\/663724470562066432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BPL","indices":[49,53]}],"urls":[{"url":"https:\/\/t.co\/4Npv7Fjl7B","expanded_url":"http:\/\/twitter.com\/premierleague\/status\/663724470562066432","display_url":"twitter.com\/premierleague\/\u2026","indices":[87,110]}],"user_mentions":[],"symbols":[],"media":[{"id":663727812507996160,"id_str":"663727812507996160","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7cwWEAAgGzj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7cwWEAAgGzj.jpg","url":"https:\/\/t.co\/1e2yU2jLVL","display_url":"pic.twitter.com\/1e2yU2jLVL","expanded_url":"http:\/\/twitter.com\/Yoursportsnews1\/status\/663727812675829761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":546,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727812507996160,"id_str":"663727812507996160","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7cwWEAAgGzj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7cwWEAAgGzj.jpg","url":"https:\/\/t.co\/1e2yU2jLVL","display_url":"pic.twitter.com\/1e2yU2jLVL","expanded_url":"http:\/\/twitter.com\/Yoursportsnews1\/status\/663727812675829761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":790,"h":546,"resize":"fit"},"medium":{"w":600,"h":414,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080016665"} +{"delete":{"status":{"id":658872222111657984,"id_str":"658872222111657984","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080017592"}} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816844943362,"id_str":"663727816844943362","text":"RT @nakedmagic: IT'S BEEN 3 YEARS SINCE THIS BOMB ASS ALBUM CAME OUT\n\n#3YearsOfTakeMeHome https:\/\/t.co\/9jNbKQC64m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729769250,"id_str":"729769250","name":"L i l o| Perfect","screen_name":"calvinkleinlwt","location":"hacked & lost liam\/4","url":"https:\/\/twitter.com\/zaynmalik\/status\/620569519283552256","description":"\u275d applied to be a Victoria Secret Angel hope it all works out. james\/5 \u2726*:\uff65\u263e\u275e TMHT: 24\/02\/13 OTRAT: 25\/09\/15.","protected":false,"verified":false,"followers_count":14694,"friends_count":9935,"listed_count":68,"favourites_count":3004,"statuses_count":54309,"created_at":"Wed Aug 01 02:23:01 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478607829293477888\/n-Hkg34p.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478607829293477888\/n-Hkg34p.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662384365159194624\/OX8PJp69_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662384365159194624\/OX8PJp69_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/729769250\/1445940750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:35 +0000 2015","id":663725628563300352,"id_str":"663725628563300352","text":"IT'S BEEN 3 YEARS SINCE THIS BOMB ASS ALBUM CAME OUT\n\n#3YearsOfTakeMeHome https:\/\/t.co\/9jNbKQC64m","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48502930,"id_str":"48502930","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","screen_name":"nakedmagic","location":"on a windy rooftop","url":"https:\/\/twitter.com\/nakedmagic\/status\/663584401977143296","description":"#1 harry's tummy stan","protected":false,"verified":false,"followers_count":86588,"friends_count":49450,"listed_count":412,"favourites_count":76674,"statuses_count":200681,"created_at":"Thu Jun 18 21:48:31 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48502930\/1446939726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":54,"entities":{"hashtags":[{"text":"3YearsOfTakeMeHome","indices":[54,73]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}},{"id":663725627652964353,"id_str":"663725627652964353","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":332,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"3YearsOfTakeMeHome","indices":[70,89]}],"urls":[],"user_mentions":[{"screen_name":"nakedmagic","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","id":48502930,"id_str":"48502930","indices":[3,14]}],"symbols":[],"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"}]},"extended_entities":{"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"},{"id":663725627652964353,"id_str":"663725627652964353","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":332,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017659"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816836558848,"id_str":"663727816836558848","text":"...\u043f\u0443\u043b; - \u0420\u0415\u0421\u0422\u041e\u0420\u0410\u041d \u0441 \u0435\u0432\u0440\u043e\u043f\u0435\u0439\u0441\u043a\u043e\u0439, \u0438\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u043e\u0439 \u0438 \u044f\u043f\u043e\u043d\u0441\u043a\u043e\u0439 \u043a\u0443\u0445\u043d\u0435\u0439...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261531788,"id_str":"1261531788","name":"KeithIsabelle","screen_name":"KeithIsabelle1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":37,"friends_count":20,"listed_count":6,"favourites_count":0,"statuses_count":64220,"created_at":"Tue Mar 12 09:20:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3657531677\/072383fbb6dd34d633b92c11e4b5296d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3657531677\/072383fbb6dd34d633b92c11e4b5296d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080017657"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816870117376,"id_str":"663727816870117376","text":"one thing after another","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":373087960,"id_str":"373087960","name":"Francis","screen_name":"Cwsitopher","location":"Millersville","url":null,"description":"lost in space","protected":false,"verified":false,"followers_count":310,"friends_count":130,"listed_count":3,"favourites_count":2684,"statuses_count":7077,"created_at":"Tue Sep 13 23:50:55 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/770728763\/ba0ece896c3ed221a600306b420f06cc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/770728763\/ba0ece896c3ed221a600306b420f06cc.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657733671231844352\/6j06iLVY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657733671231844352\/6j06iLVY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373087960\/1393881701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816844967936,"id_str":"663727816844967936","text":"RT @SeniatRNO: III Obj. Plan de la Patria: Convertir en un pa\u00eds Potencia en lo social, econ\u00f3mico y pol\u00edtico, en paz @SeniatRNO https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2294923106,"id_str":"2294923106","name":"STI Guarenas Guatire","screen_name":"SeniatSGuatire","location":"C.C. Oasis Center, Guatire","url":"http:\/\/www.seniat.gob.ve","description":"Servicio Nacional Integrado de Administraci\u00f3n Aduanera y Tributaria Sector de Tributos Internos Guarenas Guatire","protected":false,"verified":false,"followers_count":736,"friends_count":139,"listed_count":9,"favourites_count":4,"statuses_count":7407,"created_at":"Thu Jan 16 19:37:57 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169395281\/oKCqLmRV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169395281\/oKCqLmRV.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459015103715631104\/LUs4S8hT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459015103715631104\/LUs4S8hT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2294923106\/1390582084","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:36 +0000 2015","id":663726890109288449,"id_str":"663726890109288449","text":"III Obj. Plan de la Patria: Convertir en un pa\u00eds Potencia en lo social, econ\u00f3mico y pol\u00edtico, en paz @SeniatRNO https:\/\/t.co\/6eFaBMNxG1","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3299977715,"id_str":"3299977715","name":"SENIAT NorOriental","screen_name":"SeniatRNO","location":null,"url":null,"description":"Gerencia de Tributos Internos Regi\u00f3n NorOriental (Anzo\u00e1tegui, Sucre y Monagas)","protected":false,"verified":false,"followers_count":2067,"friends_count":1207,"listed_count":19,"favourites_count":105,"statuses_count":9008,"created_at":"Wed May 27 01:58:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B00606","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649801764682772480\/jEMYs3zc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649801764682772480\/jEMYs3zc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3299977715\/1439391592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeniatRNO","name":"SENIAT NorOriental","id":3299977715,"id_str":"3299977715","indices":[101,111]}],"symbols":[],"media":[{"id":663726773931257856,"id_str":"663726773931257856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","url":"https:\/\/t.co\/6eFaBMNxG1","display_url":"pic.twitter.com\/6eFaBMNxG1","expanded_url":"http:\/\/twitter.com\/SeniatRNO\/status\/663726890109288449\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":301,"resize":"fit"},"small":{"w":300,"h":301,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726773931257856,"id_str":"663726773931257856","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","url":"https:\/\/t.co\/6eFaBMNxG1","display_url":"pic.twitter.com\/6eFaBMNxG1","expanded_url":"http:\/\/twitter.com\/SeniatRNO\/status\/663726890109288449\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":301,"resize":"fit"},"small":{"w":300,"h":301,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeniatRNO","name":"SENIAT NorOriental","id":3299977715,"id_str":"3299977715","indices":[3,13]},{"screen_name":"SeniatRNO","name":"SENIAT NorOriental","id":3299977715,"id_str":"3299977715","indices":[116,126]}],"symbols":[],"media":[{"id":663726773931257856,"id_str":"663726773931257856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","url":"https:\/\/t.co\/6eFaBMNxG1","display_url":"pic.twitter.com\/6eFaBMNxG1","expanded_url":"http:\/\/twitter.com\/SeniatRNO\/status\/663726890109288449\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":301,"resize":"fit"},"small":{"w":300,"h":301,"resize":"fit"}},"source_status_id":663726890109288449,"source_status_id_str":"663726890109288449","source_user_id":3299977715,"source_user_id_str":"3299977715"}]},"extended_entities":{"media":[{"id":663726773931257856,"id_str":"663726773931257856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-_wWsAAQMBz.jpg","url":"https:\/\/t.co\/6eFaBMNxG1","display_url":"pic.twitter.com\/6eFaBMNxG1","expanded_url":"http:\/\/twitter.com\/SeniatRNO\/status\/663726890109288449\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":301,"resize":"fit"},"small":{"w":300,"h":301,"resize":"fit"}},"source_status_id":663726890109288449,"source_status_id_str":"663726890109288449","source_user_id":3299977715,"source_user_id_str":"3299977715"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017659"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857505792,"id_str":"663727816857505792","text":"RT @al3siri2007: \u0627\u0644\u0639\u0631\u064a\u0646\u064a \u064a\u0633\u062a\u0641\u0632 \u0644\u0627\u0639\u0628 \u0646\u062c\u0631\u0627\u0646 \n\u0637\u0628\u064a\u0639\u064a \u062d\u0643\u0645 \u064a\u0641\u0634\u0644 \u0641\u064a \u062c\u0645\u064a\u0639 \u0627\u0644\u0627\u062e\u062a\u0628\u0627\u0631\u0627\u062a \u0648\u0641\u0627\u0634\u0644 \u0641\u0643\u0631\u064a\u0627\u064b \u0644\u0627\u062c\u062f\u064a\u062f\n#\u0627\u0644\u0646\u0635\u0631 #\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631 #\u0645\u0645\u0644\u0643\u0629_\u0627\u0644\u0646\u0635\u0631\n https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2486704687,"id_str":"2486704687","name":"\u0627\u062f\u0631\u064a\u0627\u0646 #\u0627\u0644\u0646\u0635\u0631","screen_name":"thamer_A12","location":"\u062c\u062f\u0647 ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u3000\u0623\u0645\u064a \u0627\u0646\u062a\u064a \u0627\u0644\u062d\u064a\u0627\u0647 \u0648\u0628\u0633\u0645\u0629 \u0647\u0627\u0644\u0639\u0645\u0631 \u2764","protected":false,"verified":false,"followers_count":2966,"friends_count":170,"listed_count":1,"favourites_count":692,"statuses_count":65592,"created_at":"Sat May 10 04:23:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662484107016994816\/TqUVKKJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662484107016994816\/TqUVKKJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2486704687\/1444579672","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:16:02 +0000 2015","id":663616017361461248,"id_str":"663616017361461248","text":"\u0627\u0644\u0639\u0631\u064a\u0646\u064a \u064a\u0633\u062a\u0641\u0632 \u0644\u0627\u0639\u0628 \u0646\u062c\u0631\u0627\u0646 \n\u0637\u0628\u064a\u0639\u064a \u062d\u0643\u0645 \u064a\u0641\u0634\u0644 \u0641\u064a \u062c\u0645\u064a\u0639 \u0627\u0644\u0627\u062e\u062a\u0628\u0627\u0631\u0627\u062a \u0648\u0641\u0627\u0634\u0644 \u0641\u0643\u0631\u064a\u0627\u064b \u0644\u0627\u062c\u062f\u064a\u062f\n#\u0627\u0644\u0646\u0635\u0631 #\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631 #\u0645\u0645\u0644\u0643\u0629_\u0627\u0644\u0646\u0635\u0631\n https:\/\/t.co\/AVFYFF5OIM","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2173172823,"id_str":"2173172823","name":"\u200f\u02dc\u00b0\u00ba\u062d\u0633\u064a\u0646 \u0627\u0644\u0639\u0633\u064a\u0631\u064a\u00ba\u00b0\u02dc","screen_name":"al3siri2007","location":null,"url":null,"description":"\u062a\u064e\u0648\u0627\u0636\u064e\u0639 \u062a\u064e\u0643\u064f\u0646 \u0643\u064e\u0627\u0644\u0646\u0650\u062c\u0645\u0650 \u0644\u0627\u062d\u064e \u0644\u0650\u0646\u0627\u0638\u0650\u0631 \u0639\u064e\u0644\u0649 \u0635\u064e\u0641\u062d\u0627\u062a\u0650 \u0627\u0644\u0645\u0627\u0621\u0650 \u0648\u064e\u0647\u0648\u064e \u0631\u064e\u0641\u064a\u0639\u064f .. \u0648\u064e\u0644\u0627 \u062a\u064e\u0643\u064f \u0643\u064e\u0627\u0644\u062f\u064f\u062e\u0627\u0646\u0650 \u064a\u064e\u0639\u0644\u0648 \u0628\u0650\u0646\u064e\u0641\u0633\u0650\u0647 \u0639\u064e\u0644\u0649 \u0635\u064e\u0641\u062d\u0627\u062a\u0650 \u0627\u0644\u062c\u064e\u0648\u0650\u0651 \u0648\u064e\u0647\u064f\u0648\u064e \u0648\u064e\u0636\u064a\u0639\u064f","protected":false,"verified":false,"followers_count":7843,"friends_count":6559,"listed_count":10,"favourites_count":2329,"statuses_count":25611,"created_at":"Fri Nov 08 10:13:57 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658888926728425472\/MUCrMcCT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658888926728425472\/MUCrMcCT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2173172823\/1445840579","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":6,"entities":{"hashtags":[{"text":"\u0627\u0644\u0646\u0635\u0631","indices":[80,86]},{"text":"\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631","indices":[87,99]},{"text":"\u0645\u0645\u0644\u0643\u0629_\u0627\u0644\u0646\u0635\u0631","indices":[100,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663120416450461701,"id_str":"663120416450461701","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","url":"https:\/\/t.co\/AVFYFF5OIM","display_url":"pic.twitter.com\/AVFYFF5OIM","expanded_url":"http:\/\/twitter.com\/MTKGWEL\/status\/663121245630832641\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663121245630832641,"source_status_id_str":"663121245630832641","source_user_id":457935777,"source_user_id_str":"457935777"}]},"extended_entities":{"media":[{"id":663120416450461701,"id_str":"663120416450461701","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","url":"https:\/\/t.co\/AVFYFF5OIM","display_url":"pic.twitter.com\/AVFYFF5OIM","expanded_url":"http:\/\/twitter.com\/MTKGWEL\/status\/663121245630832641\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663121245630832641,"source_status_id_str":"663121245630832641","source_user_id":457935777,"source_user_id_str":"457935777","video_info":{"aspect_ratio":[16,9],"duration_millis":22433,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/640x360\/SuNXJsDP43ubL1uy.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/pl\/_ui1Xi-4hqulHZK6.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/640x360\/SuNXJsDP43ubL1uy.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/1280x720\/_A4-pMQfnEeDpBx4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/pl\/_ui1Xi-4hqulHZK6.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/320x180\/Chr1ZGDSwOSZTKUS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0646\u0635\u0631","indices":[97,103]},{"text":"\u0645\u062d\u0628\u064a\u0646_\u0627\u0644\u0646\u0635\u0631","indices":[104,116]},{"text":"\u0645\u0645\u0644\u0643\u0629_\u0627\u0644\u0646\u0635\u0631","indices":[117,129]}],"urls":[],"user_mentions":[{"screen_name":"al3siri2007","name":"\u200f\u02dc\u00b0\u00ba\u062d\u0633\u064a\u0646 \u0627\u0644\u0639\u0633\u064a\u0631\u064a\u00ba\u00b0\u02dc","id":2173172823,"id_str":"2173172823","indices":[3,15]}],"symbols":[],"media":[{"id":663120416450461701,"id_str":"663120416450461701","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","url":"https:\/\/t.co\/AVFYFF5OIM","display_url":"pic.twitter.com\/AVFYFF5OIM","expanded_url":"http:\/\/twitter.com\/MTKGWEL\/status\/663121245630832641\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663121245630832641,"source_status_id_str":"663121245630832641","source_user_id":457935777,"source_user_id_str":"457935777"}]},"extended_entities":{"media":[{"id":663120416450461701,"id_str":"663120416450461701","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663120416450461701\/pu\/img\/ez_mp-rBgLhRhrFd.jpg","url":"https:\/\/t.co\/AVFYFF5OIM","display_url":"pic.twitter.com\/AVFYFF5OIM","expanded_url":"http:\/\/twitter.com\/MTKGWEL\/status\/663121245630832641\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663121245630832641,"source_status_id_str":"663121245630832641","source_user_id":457935777,"source_user_id_str":"457935777","video_info":{"aspect_ratio":[16,9],"duration_millis":22433,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/640x360\/SuNXJsDP43ubL1uy.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/pl\/_ui1Xi-4hqulHZK6.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/640x360\/SuNXJsDP43ubL1uy.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/1280x720\/_A4-pMQfnEeDpBx4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/pl\/_ui1Xi-4hqulHZK6.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663120416450461701\/pu\/vid\/320x180\/Chr1ZGDSwOSZTKUS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816870109184,"id_str":"663727816870109184","text":"O emri verenin ...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2356540234,"id_str":"2356540234","name":"\u015eev","screen_name":"seva_sar","location":null,"url":null,"description":"sonra sa\u00e7lar\u0131na ak d\u00fc\u015fm\u00fc\u015f anam gelir akl\u0131ma...O'na giden b\u00fct\u00fcn yollarda hand\u0131r benim Babam .","protected":false,"verified":false,"followers_count":152,"friends_count":137,"listed_count":0,"favourites_count":482,"statuses_count":1777,"created_at":"Fri Feb 21 13:30:39 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649476099777413120\/D8USzSXW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649476099777413120\/D8USzSXW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2356540234\/1439157427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816849125376,"id_str":"663727816849125376","text":"RT @Punz_DDM: Pascal, \u00bfpor qu\u00e9 hace tanto fr\u00edo en esta torre \u00faltimamente? \u2013se arropa con varias mantas.\nMini dosis de feels concentrados.-","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2751672892,"id_str":"2751672892","name":"Jack Frost","screen_name":"WxnterFrost","location":"Junto a la chica de pelo largo","url":null,"description":"Soy Jack Frost, o Pepe Frost, este no lo dijo la Luna.Tambi\u00e9n soy uno de los guardianes,pero eso no es tan interesante como ser el creador de la Mafia Hielitos.","protected":false,"verified":false,"followers_count":303,"friends_count":260,"listed_count":1,"favourites_count":3015,"statuses_count":8260,"created_at":"Tue Aug 26 12:13:47 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561535131593089027\/vCIMHjqq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561535131593089027\/vCIMHjqq.jpeg","profile_background_tile":true,"profile_link_color":"052AE6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662776877178855424\/g7CjSy5x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662776877178855424\/g7CjSy5x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2751672892\/1410385037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:37 +0000 2015","id":663726891568865280,"id_str":"663726891568865280","text":"Pascal, \u00bfpor qu\u00e9 hace tanto fr\u00edo en esta torre \u00faltimamente? \u2013se arropa con varias mantas.\nMini dosis de feels concentrados.-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3001583803,"id_str":"3001583803","name":"R\u03b1\u03c1\u03c5\u03b7z\u03b5l","screen_name":"Punz_DDM","location":" \u03c4\u03bf\u03c9\u03b5r, \u03c9h\u03b5r\u03b5 I m\u03b5\u03b1\u03b7\u03c4 \u03c4\u03c3 \u03b2\u03b5. ","url":null,"description":"\u00ab\u2728I \u03b1m \u03c4h\u03b5 l\u03c3s\u03c4 \u03c1r\u03b9\u03b7c\u03b5ss\u2728\u00bb 18 a\u00f1os encerrada. Cuidadora de camaleones y pintora a tiempo completo \u00a1Todo el mundo tiene un sue\u00f1o! \u00bfCu\u00e1l es el tuyo~? #TB4 \u007b#DDMR\u007d","protected":false,"verified":false,"followers_count":190,"friends_count":113,"listed_count":0,"favourites_count":652,"statuses_count":2285,"created_at":"Thu Jan 29 15:31:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727319777939456\/WdvXqsK6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727319777939456\/WdvXqsK6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3001583803\/1446491233","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Punz_DDM","name":"R\u03b1\u03c1\u03c5\u03b7z\u03b5l","id":3001583803,"id_str":"3001583803","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017660"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861683712,"id_str":"663727816861683712","text":"Show dad the benefits of staying connected. https:\/\/t.co\/zRM8cwc2KP","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367020333,"id_str":"367020333","name":"MedPlusMart","screen_name":"MedPlusMart","location":"India","url":"http:\/\/www.medplusmart.com","description":"Online pharmacy and general store","protected":false,"verified":false,"followers_count":1275,"friends_count":1071,"listed_count":8,"favourites_count":75,"statuses_count":4701,"created_at":"Sat Sep 03 07:10:35 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181959370\/gQg1tpR_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181959370\/gQg1tpR_.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551273354854793217\/IICiW_2-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551273354854793217\/IICiW_2-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367020333\/1432015730","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zRM8cwc2KP","expanded_url":"http:\/\/on.fb.me\/1NVrRd0","display_url":"on.fb.me\/1NVrRd0","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816870072320,"id_str":"663727816870072320","text":"are you funny \ud83d\udd2e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1886811949,"id_str":"1886811949","name":"May","screen_name":"JustenFolo","location":"inna izz mine afff","url":"http:\/\/clau.iz.my.twinn.com","description":"i call him the devil bc he makes me want to sin","protected":false,"verified":false,"followers_count":13619,"friends_count":9783,"listed_count":24,"favourites_count":26093,"statuses_count":38119,"created_at":"Fri Sep 20 14:49:43 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550311839918075904\/auNWG4gf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550311839918075904\/auNWG4gf.jpeg","profile_background_tile":false,"profile_link_color":"889793","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662353324335828992\/FmawCyrM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662353324335828992\/FmawCyrM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1886811949\/1438555095","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816865947648,"id_str":"663727816865947648","text":"@borjakq8 \u0645\u0633\u0627\u0621 \u0627\u0644\u0648\u0631\u062f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663691660228960256,"in_reply_to_status_id_str":"663691660228960256","in_reply_to_user_id":3253136076,"in_reply_to_user_id_str":"3253136076","in_reply_to_screen_name":"borjakq8","user":{"id":2936469008,"id_str":"2936469008","name":"Ehsas Unta","screen_name":"EhsasUnta","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":19,"listed_count":0,"favourites_count":8,"statuses_count":3,"created_at":"Fri Dec 19 23:10:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586384173528551424\/ksNN13LU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586384173528551424\/ksNN13LU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936469008\/1428639940","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"borjakq8","name":"\u0628\u0631\u062c\u0643","id":3253136076,"id_str":"3253136076","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080017664"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816836521984,"id_str":"663727816836521984","text":"RT allweednews8: #allweednews #cannabis\nWhat to Do if Your Cannabis Plants Are Damaged With Powdery Mildew \u2026 https:\/\/t.co\/rxq1xcZAlf","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270820314,"id_str":"2270820314","name":"Miracle Cures","screen_name":"MiracleCuresYou","location":"Free","url":"http:\/\/ErolOn.blogspot.com","description":"Miracle cures do exist & don't involve Zionist-infected drugs. A living Christ is channeling miracles. If you deserve one then you'll receive. Follow Erol.","protected":false,"verified":false,"followers_count":1588,"friends_count":658,"listed_count":827,"favourites_count":16689,"statuses_count":331315,"created_at":"Tue Dec 31 20:47:40 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160378176\/oPwXIh5N.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160378176\/oPwXIh5N.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418122538384769024\/iWOgeSXp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418122538384769024\/iWOgeSXp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270820314\/1388523195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"allweednews","indices":[17,29]},{"text":"cannabis","indices":[30,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660110664048885761,"id_str":"660110664048885761","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkvJssUwAEoSin.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkvJssUwAEoSin.jpg","url":"https:\/\/t.co\/rxq1xcZAlf","display_url":"pic.twitter.com\/rxq1xcZAlf","expanded_url":"http:\/\/twitter.com\/allweednews8\/status\/660110665252761601\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":391,"resize":"fit"},"large":{"w":690,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"}},"source_status_id":660110665252761601,"source_status_id_str":"660110665252761601","source_user_id":3395314636,"source_user_id_str":"3395314636"}]},"extended_entities":{"media":[{"id":660110664048885761,"id_str":"660110664048885761","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkvJssUwAEoSin.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkvJssUwAEoSin.jpg","url":"https:\/\/t.co\/rxq1xcZAlf","display_url":"pic.twitter.com\/rxq1xcZAlf","expanded_url":"http:\/\/twitter.com\/allweednews8\/status\/660110665252761601\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":391,"resize":"fit"},"large":{"w":690,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"}},"source_status_id":660110665252761601,"source_status_id_str":"660110665252761601","source_user_id":3395314636,"source_user_id_str":"3395314636"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017657"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840765440,"id_str":"663727816840765440","text":"RT @PatroImbabura: Presentes en Sucumb\u00edos, apoyamos en la socializaci\u00f3n de Agenda de Igualdad de Derechos para Movilidad Humana. https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345701474,"id_str":"345701474","name":"jorge noboa","screen_name":"jorgenoboag","location":"Ibarra Ecuador","url":null,"description":null,"protected":false,"verified":false,"followers_count":74,"friends_count":107,"listed_count":0,"favourites_count":21,"statuses_count":707,"created_at":"Sun Jul 31 01:28:02 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638353935015784448\/jpFZxkjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638353935015784448\/jpFZxkjZ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:17 +0000 2015","id":663726053794422784,"id_str":"663726053794422784","text":"Presentes en Sucumb\u00edos, apoyamos en la socializaci\u00f3n de Agenda de Igualdad de Derechos para Movilidad Humana. https:\/\/t.co\/oNGW9yDPNK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987859251,"id_str":"2987859251","name":"Patronato Imbabura","screen_name":"PatroImbabura","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":289,"friends_count":198,"listed_count":5,"favourites_count":53,"statuses_count":1857,"created_at":"Tue Jan 20 19:54:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622092656789835776\/f5wUNYRF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622092656789835776\/f5wUNYRF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987859251\/1437153574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726040179712000,"id_str":"663726040179712000","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726040179712000,"id_str":"663726040179712000","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663726047658143745,"id_str":"663726047658143745","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUuLWcAEcref.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUuLWcAEcref.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"large":{"w":998,"h":709,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PatroImbabura","name":"Patronato Imbabura","id":2987859251,"id_str":"2987859251","indices":[3,17]}],"symbols":[],"media":[{"id":663726040179712000,"id_str":"663726040179712000","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726053794422784,"source_status_id_str":"663726053794422784","source_user_id":2987859251,"source_user_id_str":"2987859251"}]},"extended_entities":{"media":[{"id":663726040179712000,"id_str":"663726040179712000","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUSUWoAAmN-n.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726053794422784,"source_status_id_str":"663726053794422784","source_user_id":2987859251,"source_user_id_str":"2987859251"},{"id":663726047658143745,"id_str":"663726047658143745","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUuLWcAEcref.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUuLWcAEcref.jpg","url":"https:\/\/t.co\/oNGW9yDPNK","display_url":"pic.twitter.com\/oNGW9yDPNK","expanded_url":"http:\/\/twitter.com\/PatroImbabura\/status\/663726053794422784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"large":{"w":998,"h":709,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"}},"source_status_id":663726053794422784,"source_status_id_str":"663726053794422784","source_user_id":2987859251,"source_user_id_str":"2987859251"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861708288,"id_str":"663727816861708288","text":"RT @KAlRlS: https:\/\/t.co\/PNtpmYASSq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245330335,"id_str":"245330335","name":"vote for exo","screen_name":"kyungsooz","location":"United Arab Emirates","url":null,"description":"http:\/\/mama.mwave.me\/vote","protected":false,"verified":false,"followers_count":674,"friends_count":107,"listed_count":3,"favourites_count":3382,"statuses_count":62105,"created_at":"Mon Jan 31 12:50:53 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503265712534597632\/M8P1268M.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503265712534597632\/M8P1268M.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657605461034713088\/qWkJiN-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657605461034713088\/qWkJiN-S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245330335\/1445840070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:05 +0000 2015","id":663723738777698304,"id_str":"663723738777698304","text":"https:\/\/t.co\/PNtpmYASSq","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723634847047680,"in_reply_to_status_id_str":"663723634847047680","in_reply_to_user_id":2207689484,"in_reply_to_user_id_str":"2207689484","in_reply_to_screen_name":"KAlRlS","user":{"id":2207689484,"id_str":"2207689484","name":"hanna school hiatus","screen_name":"KAlRlS","location":null,"url":null,"description":"k i m ; j o n g i n","protected":false,"verified":false,"followers_count":6640,"friends_count":309,"listed_count":15,"favourites_count":804,"statuses_count":81675,"created_at":"Thu Nov 21 19:17:26 +0000 2013","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179048807\/O-11KnoX.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179048807\/O-11KnoX.png","profile_background_tile":false,"profile_link_color":"A0D4D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663076017901318144\/W_wS-HEO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663076017901318144\/W_wS-HEO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2207689484\/1446925201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723723925532672,"id_str":"663723723925532672","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723723925532672,"id_str":"663723723925532672","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}}},{"id":663723723631955968,"id_str":"663723723631955968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNcgVEAA0e0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNcgVEAA0e0P.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"large":{"w":1024,"h":686,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":663723724802166784,"id_str":"663723724802166784","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNg3VEAAK2MP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNg3VEAAK2MP.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"},"large":{"w":1024,"h":631,"resize":"fit"}}},{"id":663723725049565184,"id_str":"663723725049565184","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNhyUEAA_cTy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNhyUEAA_cTy.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KAlRlS","name":"hanna school hiatus","id":2207689484,"id_str":"2207689484","indices":[3,10]}],"symbols":[],"media":[{"id":663723723925532672,"id_str":"663723723925532672","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}},"source_status_id":663723738777698304,"source_status_id_str":"663723738777698304","source_user_id":2207689484,"source_user_id_str":"2207689484"}]},"extended_entities":{"media":[{"id":663723723925532672,"id_str":"663723723925532672","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNdmUsAAcNFN.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}},"source_status_id":663723738777698304,"source_status_id_str":"663723738777698304","source_user_id":2207689484,"source_user_id_str":"2207689484"},{"id":663723723631955968,"id_str":"663723723631955968","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNcgVEAA0e0P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNcgVEAA0e0P.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"large":{"w":1024,"h":686,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663723738777698304,"source_status_id_str":"663723738777698304","source_user_id":2207689484,"source_user_id_str":"2207689484"},{"id":663723724802166784,"id_str":"663723724802166784","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNg3VEAAK2MP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNg3VEAAK2MP.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"},"large":{"w":1024,"h":631,"resize":"fit"}},"source_status_id":663723738777698304,"source_status_id_str":"663723738777698304","source_user_id":2207689484,"source_user_id_str":"2207689484"},{"id":663723725049565184,"id_str":"663723725049565184","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFNhyUEAA_cTy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFNhyUEAA_cTy.jpg","url":"https:\/\/t.co\/PNtpmYASSq","display_url":"pic.twitter.com\/PNtpmYASSq","expanded_url":"http:\/\/twitter.com\/KAlRlS\/status\/663723738777698304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663723738777698304,"source_status_id_str":"663723738777698304","source_user_id":2207689484,"source_user_id_str":"2207689484"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816870006784,"id_str":"663727816870006784","text":"RT @bh1633: \uc5d1\uc18c \uc5d1\uc18c @MnetMAMA \uc5d1\uc18c \uc5d1\uc18c #EXO \uc5d1\uc18c \uc5d1\uc18c #CALLMEBABY \uc5d1\uc18c \uc5d1\uc18c #2015MAMA \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2255978935,"id_str":"2255978935","name":"\uc11c\uc6b8\uc6b0\uc720","screen_name":"gyoung4234","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":86,"listed_count":0,"favourites_count":39,"statuses_count":214,"created_at":"Sat Dec 21 04:22:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644765938873597952\/ao2Fw_zB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644765938873597952\/ao2Fw_zB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2255978935\/1435823450","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:47 +0000 2015","id":663725172680036352,"id_str":"663725172680036352","text":"\uc5d1\uc18c \uc5d1\uc18c @MnetMAMA \uc5d1\uc18c \uc5d1\uc18c #EXO \uc5d1\uc18c \uc5d1\uc18c #CALLMEBABY \uc5d1\uc18c \uc5d1\uc18c #2015MAMA \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\uc18c \uc5d1\ub610 \uc5d1\uc18c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3189822858,"id_str":"3189822858","name":"\uc560\uc778","screen_name":"bh1633","location":null,"url":null,"description":"RPS \/ \ucc2c\uc5f4 \uadf8\ub9ac\uace0 \ubc31\ud604 \/ \ucc2c\ubc31 \ubc31\ucd1d \ubc31\ub978 \/ \ubc31\uacf5\ub7ec \uc778\uc6a9\uc54c\ud2f0 8\ucda9 \uc0bc\ub458\uae30\uc988 \uaebc\uc9c0\uc0d8.","protected":false,"verified":false,"followers_count":814,"friends_count":421,"listed_count":0,"favourites_count":518,"statuses_count":3987,"created_at":"Sat May 09 14:28:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377225803108352\/TkpMwzWS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377225803108352\/TkpMwzWS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3189822858\/1447001747","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[22,26]},{"text":"CALLMEBABY","indices":[33,44]},{"text":"2015MAMA","indices":[51,60]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[6,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[34,38]},{"text":"CALLMEBABY","indices":[45,56]},{"text":"2015MAMA","indices":[63,72]}],"urls":[],"user_mentions":[{"screen_name":"bh1633","name":"\uc560\uc778","id":3189822858,"id_str":"3189822858","indices":[3,10]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[18,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857550848,"id_str":"663727816857550848","text":"RT @sofia_viscardi: No va be \u00e8 da fare per forza. \ud83d\ude31 \nUna challenge fratelli grandi contro sorelle piccole. ALBE PORTA VIRGINIA A MILANO. ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3005385391,"id_str":"3005385391","name":"\u2740bri'\u2740Emma\u2740\u26a1\ufe0f","screen_name":"Orsola8","location":null,"url":null,"description":"#IOSTOCONBRIGA ||Nella buona o nella cattiva sorte, forza Briga fino alla morte.|| -GRETA MENCHI BRACCIALETTI ROSSI my love\u2764\ufe0f EMMA MARRONE my life\u2764\ufe0fSOFIA","protected":false,"verified":false,"followers_count":217,"friends_count":531,"listed_count":3,"favourites_count":365,"statuses_count":1203,"created_at":"Sat Jan 31 20:35:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661648014545698816\/PW4uH5Iz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661648014545698816\/PW4uH5Iz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3005385391\/1446584121","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:28:55 +0000 2015","id":663347466855718912,"id_str":"663347466855718912","text":"No va be \u00e8 da fare per forza. \ud83d\ude31 \nUna challenge fratelli grandi contro sorelle piccole. ALBE PORTA VIRGINIA A MILANO. https:\/\/t.co\/P7GPY2L97V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1394362303,"id_str":"1394362303","name":"Sofia Viscardi","screen_name":"sofia_viscardi","location":null,"url":"http:\/\/m.youtube.com\/c\/sofiaviscardi","description":"sono quella dei video su youtube","protected":false,"verified":true,"followers_count":176114,"friends_count":477,"listed_count":101,"favourites_count":12063,"statuses_count":13296,"created_at":"Wed May 01 10:49:51 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692192175800321\/btql8sCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692192175800321\/btql8sCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1394362303\/1447071573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663343732482248704,"quoted_status_id_str":"663343732482248704","quoted_status":{"created_at":"Sun Nov 08 13:14:04 +0000 2015","id":663343732482248704,"id_str":"663343732482248704","text":"@sofia_viscardi @Albericoyes e se maria e virginia facessero un video insieme?\ud83d\ude0d\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1394362303,"in_reply_to_user_id_str":"1394362303","in_reply_to_screen_name":"sofia_viscardi","user":{"id":3602664857,"id_str":"3602664857","name":"MICHI ALBE SOFI VITA","screen_name":"celestevignale","location":null,"url":null,"description":"SOFIA ALBERICO HMATT ANTONY THE SHOW DANIELE DOESN'T MATTER CHERYL PANDEMONIUM LEA MURIEL GRETA VI AMO\u2764\u2764","protected":false,"verified":false,"followers_count":174,"friends_count":511,"listed_count":0,"favourites_count":416,"statuses_count":142,"created_at":"Wed Sep 09 22:11:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657173073267990528\/50Y-G268_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657173073267990528\/50Y-G268_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3602664857\/1445517244","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sofia_viscardi","name":"Sofia Viscardi","id":1394362303,"id_str":"1394362303","indices":[0,15]},{"screen_name":"Albericoyes","name":"Alberico","id":612833413,"id_str":"612833413","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":true,"retweet_count":1284,"favorite_count":3382,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P7GPY2L97V","expanded_url":"https:\/\/twitter.com\/celestevignale\/status\/663343732482248704","display_url":"twitter.com\/celestevignale\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P7GPY2L97V","expanded_url":"https:\/\/twitter.com\/celestevignale\/status\/663343732482248704","display_url":"twitter.com\/celestevignale\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"sofia_viscardi","name":"Sofia Viscardi","id":1394362303,"id_str":"1394362303","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816844947456,"id_str":"663727816844947456","text":"RT @jnoobymry: @mnoo8r1 \u062f\u0648\u0648\u0645 \u064a\u0627 \u0631\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":807252938,"id_str":"807252938","name":"\u0645\u0646\u0627\u0631 \u0627\u0644\u0639\u0646\u0632\u064a","screen_name":"mnoo8r1","location":null,"url":null,"description":"\u200f\u0627\u0644\u0644\u0647\u0645 \u0623\u062c\u0631\u0646\u064a \u0645\u0646 \u0645\u0648\u062a \u0627\u0644\u063a\u0641\u0644\u0629 \u0648\ufefb \u062a\u0623\u062e\u0630\u0646\u064a \u0625\ufefb \u0648\u0623\u0646\u062a \u0631\u0627\u0636 \u0639\u0646\u064a","protected":false,"verified":false,"followers_count":3756,"friends_count":879,"listed_count":3,"favourites_count":10534,"statuses_count":32181,"created_at":"Thu Sep 06 17:23:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663080103920934912\/CTRK1Zlm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663080103920934912\/CTRK1Zlm_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:03 +0000 2015","id":663727506911023106,"id_str":"663727506911023106","text":"@mnoo8r1 \u062f\u0648\u0648\u0645 \u064a\u0627 \u0631\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727214740000768,"in_reply_to_status_id_str":"663727214740000768","in_reply_to_user_id":807252938,"in_reply_to_user_id_str":"807252938","in_reply_to_screen_name":"mnoo8r1","user":{"id":3176849010,"id_str":"3176849010","name":"\u062c\u064f\u0640\u0646\u064f\u0640\u0648\u0628\u0650\u0640\u064a","screen_name":"jnoobymry","location":null,"url":null,"description":"\u0625\u0646\u0640\u064a \u0644\u0640\u0645\u0640\u0646\u0652 \u0642\u0640\u0648\u0645\u064d \u062a\u0640\u0639\u0640\u0632\u0651\u064f \u0639\u0640\u0644\u0640\u064a\u0652\u0640\u0647\u064f\u0640\u0645 \u0642\u064e\u0640\u062a\u0640\u0644\u064f \u0627\u0644\u0640\u0631\u064f\u0639\u0640\u0627\u0647 \n\n\u0648\u062f\u0645\u0652\u0640\u0639\u0640\u0629 \u0627\u0644\u0640\u062d\u0640\u0633\u0652\u0640\u0646\u064e\u0640\u0627\u0626\u0640\u064a","protected":false,"verified":false,"followers_count":4741,"friends_count":4006,"listed_count":1,"favourites_count":1379,"statuses_count":14306,"created_at":"Sun Apr 26 16:20:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659391418662789120\/aFtiP2x3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659391418662789120\/aFtiP2x3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3176849010\/1446046252","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mnoo8r1","name":"\u0645\u0646\u0627\u0631 \u0627\u0644\u0639\u0646\u0632\u064a","id":807252938,"id_str":"807252938","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jnoobymry","name":"\u062c\u064f\u0640\u0646\u064f\u0640\u0648\u0628\u0650\u0640\u064a","id":3176849010,"id_str":"3176849010","indices":[3,13]},{"screen_name":"mnoo8r1","name":"\u0645\u0646\u0627\u0631 \u0627\u0644\u0639\u0646\u0632\u064a","id":807252938,"id_str":"807252938","indices":[15,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080017659"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861597696,"id_str":"663727816861597696","text":"RT @mskugaenko1: \"\u3010\u89e3\u3051\u305f\u3089IQ160\u3011\u30d3\u30eb\u30b2\u30a4\u30c4\u304c\u5165\u793e\u30c6\u30b9\u30c8\u3067\u51fa\u3059\u3299\ufe0e\u554f\u984c\u306b\u30c1\u30e3\u30ec\u30f3\u30b8\uff01\uff01\n\u2192\u3000https:\/\/t.co\/zVUGDfdPe4\" https:\/\/t.co\/yCVbZsL6QP","source":"\u003ca href=\"https:\/\/twitter.com\/kG8zzG4n6VE7X\" rel=\"nofollow\"\u003e\uff1b\u3093\u304f\u3049\u3046\u3047\uff4a\uff52\uff46\uff4c\uff1b\u3042\uff53\u3062\uff46\uff1b\u304a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3933109997,"id_str":"3933109997","name":"\u305b\u308a\u304b@\u307f\u3082\u308a\u3093\u5927\u597d\u304d","screen_name":"aeshmekov1","location":null,"url":null,"description":"\u9ad83\u3067\u3059(\u00b4\u2200\uff40) \u597d\u304d\u306a\u3082\u306e\uff1a\u30d1\u30bd\u30b3\u30f3\u3001\u30aa\u30fc\u30c7\u30a3\u30aa\u3001\u30b2\u30fc\u30e0\u3001\u8155\u6642\u8a08\u3001 \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044(\uff40\u30fb\u03c9\u30fb\u00b4)b","protected":false,"verified":false,"followers_count":771,"friends_count":1828,"listed_count":4,"favourites_count":0,"statuses_count":579,"created_at":"Mon Oct 12 02:22:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655714816019992576\/nUpqg7gM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655714816019992576\/nUpqg7gM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3933109997\/1445169576","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727753145942021,"id_str":"663727753145942021","text":"\"\u3010\u89e3\u3051\u305f\u3089IQ160\u3011\u30d3\u30eb\u30b2\u30a4\u30c4\u304c\u5165\u793e\u30c6\u30b9\u30c8\u3067\u51fa\u3059\u3299\ufe0e\u554f\u984c\u306b\u30c1\u30e3\u30ec\u30f3\u30b8\uff01\uff01\n\u2192\u3000https:\/\/t.co\/zVUGDfdPe4\" https:\/\/t.co\/yCVbZsL6QP","source":"\u003ca href=\"https:\/\/twitter.com\/p1DHc55LZpuW8j\" rel=\"nofollow\"\u003e5z40UP9PlVjaXd\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3861828252,"id_str":"3861828252","name":"\u2605\u795e\u30a2\u30d7\u30ea\u901f\u5831\u2605","screen_name":"mskugaenko1","location":null,"url":null,"description":"\u5b9f\u969b\u306b\u30e6\u30fc\u30b6\u30fc\u306b\u652f\u6301\u7387\u306e\u9ad8\u3044\u3010\u795e\u30a2\u30d7\u30ea\u3011\u306e\u307f\u3092\u304a\u5c4a\u3051\u3057\u3061\u3083\u3044\u307e\u3059(*\u00b4\u8278\uff40*)\u266a \u30de\u30b8\u3067\u30ac\u30c1\u306f\u307e\u308a\u6ce8\u610f\u3067\u3059\u3088\uff01\uff01","protected":false,"verified":false,"followers_count":117,"friends_count":2,"listed_count":2,"favourites_count":0,"statuses_count":14,"created_at":"Sun Oct 11 20:01:43 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658571103204306945\/0l84ITsb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658571103204306945\/0l84ITsb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3861828252\/1445850572","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zVUGDfdPe4","expanded_url":"http:\/\/goo.gl\/dMku1d","display_url":"goo.gl\/dMku1d","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663727752881684484,"id_str":"663727752881684484","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","url":"https:\/\/t.co\/yCVbZsL6QP","display_url":"pic.twitter.com\/yCVbZsL6QP","expanded_url":"http:\/\/twitter.com\/mskugaenko1\/status\/663727753145942021\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":333,"resize":"fit"},"medium":{"w":600,"h":312,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727752881684484,"id_str":"663727752881684484","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","url":"https:\/\/t.co\/yCVbZsL6QP","display_url":"pic.twitter.com\/yCVbZsL6QP","expanded_url":"http:\/\/twitter.com\/mskugaenko1\/status\/663727753145942021\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":333,"resize":"fit"},"medium":{"w":600,"h":312,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zVUGDfdPe4","expanded_url":"http:\/\/goo.gl\/dMku1d","display_url":"goo.gl\/dMku1d","indices":[58,81]}],"user_mentions":[{"screen_name":"mskugaenko1","name":"\u2605\u795e\u30a2\u30d7\u30ea\u901f\u5831\u2605","id":3861828252,"id_str":"3861828252","indices":[3,15]}],"symbols":[],"media":[{"id":663727752881684484,"id_str":"663727752881684484","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","url":"https:\/\/t.co\/yCVbZsL6QP","display_url":"pic.twitter.com\/yCVbZsL6QP","expanded_url":"http:\/\/twitter.com\/mskugaenko1\/status\/663727753145942021\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":333,"resize":"fit"},"medium":{"w":600,"h":312,"resize":"fit"}},"source_status_id":663727753145942021,"source_status_id_str":"663727753145942021","source_user_id":3861828252,"source_user_id_str":"3861828252"}]},"extended_entities":{"media":[{"id":663727752881684484,"id_str":"663727752881684484","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI3-oUwAQ6Y1T.jpg","url":"https:\/\/t.co\/yCVbZsL6QP","display_url":"pic.twitter.com\/yCVbZsL6QP","expanded_url":"http:\/\/twitter.com\/mskugaenko1\/status\/663727753145942021\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":333,"resize":"fit"},"medium":{"w":600,"h":312,"resize":"fit"}},"source_status_id":663727753145942021,"source_status_id_str":"663727753145942021","source_user_id":3861828252,"source_user_id_str":"3861828252"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857354240,"id_str":"663727816857354240","text":"RT @yixingoon: #callmebaby is trending worldwide and idk why LOL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2179259983,"id_str":"2179259983","name":"\u3147","screen_name":"ChanHun2","location":"KPOP World","url":"http:\/\/myexoeverything.tumblr.com\/","description":"Trash af | EXOluXion in Manila | Iponing mode kahit na #TeamBahay","protected":false,"verified":false,"followers_count":1551,"friends_count":1496,"listed_count":1,"favourites_count":7644,"statuses_count":16817,"created_at":"Thu Nov 07 03:29:07 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627820759398756352\/M2NnYolw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627820759398756352\/M2NnYolw.jpg","profile_background_tile":true,"profile_link_color":"3B55E9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662256043867508737\/NGLcL1pO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662256043867508737\/NGLcL1pO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179259983\/1425973206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:44 +0000 2015","id":663727175204339712,"id_str":"663727175204339712","text":"#callmebaby is trending worldwide and idk why LOL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2301220687,"id_str":"2301220687","name":"pau","screen_name":"yixingoon","location":" || smtown ||","url":null,"description":"zhang yixing & exo trash forever\n#fx_4walls","protected":false,"verified":false,"followers_count":1119,"friends_count":390,"listed_count":2,"favourites_count":4437,"statuses_count":16948,"created_at":"Mon Jan 20 11:12:19 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470159798281850880\/rE8xXmvf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470159798281850880\/rE8xXmvf.png","profile_background_tile":false,"profile_link_color":"F580BE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663680559487430656\/ve2qvHiP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663680559487430656\/ve2qvHiP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2301220687\/1447068919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"callmebaby","indices":[0,11]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"callmebaby","indices":[15,26]}],"urls":[],"user_mentions":[{"screen_name":"yixingoon","name":"pau","id":2301220687,"id_str":"2301220687","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853348352,"id_str":"663727816853348352","text":"RT @atomicwasteland: AH YEAH!!! *HAWK* IS A SPOKEN NAME IN FALLOUT 4. THANK YOU BETHESDA!!!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":566567924,"id_str":"566567924","name":"Alfe","screen_name":"Alfe1881","location":"Vengo de Ni No Kuni","url":null,"description":"Amigo de todos, amor de nadie xD | Soy negro, no tonto ;) | Amante de los videojuegos, el anime y la m\u00fasica :)","protected":false,"verified":false,"followers_count":385,"friends_count":768,"listed_count":25,"favourites_count":1868,"statuses_count":29636,"created_at":"Sun Apr 29 18:48:22 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466313343620222976\/jQQhJCKf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466313343620222976\/jQQhJCKf.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447217085978923009\/bTylZ17Y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447217085978923009\/bTylZ17Y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/566567924\/1445803634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727549818773504,"id_str":"663727549818773504","text":"AH YEAH!!! *HAWK* IS A SPOKEN NAME IN FALLOUT 4. THANK YOU BETHESDA!!!","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081798734,"id_str":"1081798734","name":"HAWK \u2622","screen_name":"atomicwasteland","location":"Alabama, United States","url":"http:\/\/atomicwasteland.tumblr.com\/","description":"I'm Hawk -- Just a gamer that works 2 jobs -- My obsessions are Fallout, Dragon Age, and The Elder Scrolls -- XBOX NukaHawk -- #Fallout4 #Hype ;D","protected":false,"verified":false,"followers_count":42,"friends_count":79,"listed_count":2,"favourites_count":114,"statuses_count":452,"created_at":"Sat Jan 12 04:29:02 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165910310\/MwilhEqw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165910310\/MwilhEqw.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663189703475265536\/FGOQK-18_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663189703475265536\/FGOQK-18_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081798734\/1446867797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atomicwasteland","name":"HAWK \u2622","id":1081798734,"id_str":"1081798734","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853184513,"id_str":"663727816853184513","text":"@pogitb525 @shd_0826 \u306d\u30fc(\u3000\u02d9-\u02d9\u3000)","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld Rev\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727402086830080,"in_reply_to_status_id_str":"663727402086830080","in_reply_to_user_id":2324980202,"in_reply_to_user_id_str":"2324980202","in_reply_to_screen_name":"pogitb525","user":{"id":255471031,"id_str":"255471031","name":"\u307f\u30fc\u305f\u3064","screen_name":"tatsumi0102","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":594,"friends_count":536,"listed_count":3,"favourites_count":1249,"statuses_count":12611,"created_at":"Mon Feb 21 12:42:49 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649509122904223749\/T5Nd5p8J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649509122904223749\/T5Nd5p8J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255471031\/1443690019","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pogitb525","name":"\u304d\u3057\u304b\u308f \u3042\u3086","id":2324980202,"id_str":"2324980202","indices":[0,10]},{"screen_name":"shd_0826","name":"\u304d\u3057\u9b8e","id":3560683394,"id_str":"3560683394","indices":[11,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853295104,"id_str":"663727816853295104","text":"Im nice but i cant be friendly with you hoes thats something i wont do","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398367947,"id_str":"398367947","name":"\u2728DinoOT5EBK","screen_name":"TheRealW5TH_NTL","location":"W'Loo","url":"https:\/\/youtu.be\/8QZlyuklmEk","description":"Don't believe everything you hear, real eyes, realize, real lies","protected":false,"verified":false,"followers_count":803,"friends_count":486,"listed_count":1,"favourites_count":1922,"statuses_count":12498,"created_at":"Tue Oct 25 23:35:28 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"403D40","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513581025088122883\/cyNyIrrd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513581025088122883\/cyNyIrrd.jpeg","profile_background_tile":true,"profile_link_color":"AAE0E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0D0B0D","profile_text_color":"AD035E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663614520338837504\/WkglqqCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663614520338837504\/WkglqqCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398367947\/1446482035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857505794,"id_str":"663727816857505794","text":"RT @guardian: This could be the best news photograph of the day. A spat in France (in pants): https:\/\/t.co\/sFU5QJPdFN https:\/\/t.co\/N6st03dJ\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":443747263,"id_str":"443747263","name":"Laurent Aquilo","screen_name":"LaurentAquilo","location":"Lorient","url":null,"description":"football, streetart, popsongs et autres babioles... @TelegrammeSport","protected":false,"verified":false,"followers_count":1389,"friends_count":1208,"listed_count":67,"favourites_count":335,"statuses_count":25038,"created_at":"Thu Dec 22 14:05:22 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661628538420920325\/TWsUjoUv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661628538420920325\/TWsUjoUv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/443747263\/1446669517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:47 +0000 2015","id":663726936888377352,"id_str":"663726936888377352","text":"This could be the best news photograph of the day. A spat in France (in pants): https:\/\/t.co\/sFU5QJPdFN https:\/\/t.co\/N6st03dJTn","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87818409,"id_str":"87818409","name":"The Guardian ","screen_name":"guardian","location":"London","url":"http:\/\/theguardian.com","description":"Top stories, special features, live blogs and more","protected":false,"verified":true,"followers_count":4510183,"friends_count":1094,"listed_count":42640,"favourites_count":136,"statuses_count":192841,"created_at":"Thu Nov 05 23:49:19 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_tile":false,"profile_link_color":"005789","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CAE3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87818409\/1427295976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":42,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sFU5QJPdFN","expanded_url":"http:\/\/trib.al\/n2QJVy8","display_url":"trib.al\/n2QJVy8","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sFU5QJPdFN","expanded_url":"http:\/\/trib.al\/n2QJVy8","display_url":"trib.al\/n2QJVy8","indices":[94,117]}],"user_mentions":[{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[3,12]}],"symbols":[],"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}},"source_status_id":663726936888377352,"source_status_id_str":"663726936888377352","source_user_id":87818409,"source_user_id_str":"87818409"}]},"extended_entities":{"media":[{"id":663726935802015744,"id_str":"663726935802015744","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIaxWcAA5sJo.jpg","url":"https:\/\/t.co\/N6st03dJTn","display_url":"pic.twitter.com\/N6st03dJTn","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663726936888377352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":262,"resize":"fit"},"large":{"w":1024,"h":790,"resize":"fit"},"medium":{"w":600,"h":463,"resize":"fit"}},"source_status_id":663726936888377352,"source_status_id_str":"663726936888377352","source_user_id":87818409,"source_user_id_str":"87818409"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816844771329,"id_str":"663727816844771329","text":"\uff8a\uff99\uff81\uff6c\u2661\u307b\u3093\u3068\u304b\u308f\u3044\u3044\u58f0\u3057\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988468320,"id_str":"2988468320","name":"\u306d\u306d","screen_name":"yasuitaiga0127","location":"\u30ad\u30b9\u30de\u30a4\u306b\u4f1a\u3044\u305f\u3044\u3002","url":null,"description":"\u8d64\u898b\u4e2d\u23e9\u5263\u9053\n\n\n\u30ad\u30b9\u30de\u30a4\u3000Jr.\u23e9\uff97\uff8c\uff9e\u2661","protected":false,"verified":false,"followers_count":59,"friends_count":71,"listed_count":1,"favourites_count":560,"statuses_count":1226,"created_at":"Sun Jan 18 12:14:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661555825706582017\/QGfT4oAC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661555825706582017\/QGfT4oAC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988468320\/1440727654","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017659"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840749056,"id_str":"663727816840749056","text":"RT @MaanuLeticia: Ela quica, ela para, rebola, ela trava. Ela abre, ela fecha, na ponta ela fica.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517914292,"id_str":"2517914292","name":"Cris #1909","screen_name":"crisdebona_","location":"Barra Bonita, Santa Catarina","url":null,"description":"Estudante de Direito, e colorada. :* insta: c.debona","protected":false,"verified":false,"followers_count":1440,"friends_count":1141,"listed_count":4,"favourites_count":5837,"statuses_count":76303,"created_at":"Fri May 23 14:07:15 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F705A2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651411523634507776\/zhtmU8ju.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651411523634507776\/zhtmU8ju.jpg","profile_background_tile":true,"profile_link_color":"BD1B9D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658093710157201408\/deUgGyy7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658093710157201408\/deUgGyy7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517914292\/1445869029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:57 +0000 2015","id":663727481224990720,"id_str":"663727481224990720","text":"Ela quica, ela para, rebola, ela trava. Ela abre, ela fecha, na ponta ela fica.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234132247,"id_str":"234132247","name":"Emanuele Let\u00edcia '","screen_name":"MaanuLeticia","location":"Santa Catarina","url":null,"description":"Be Stronger than your strongest excuse. \u2764\ufe0f . Instagram\/Snap: Maanuleticia","protected":false,"verified":false,"followers_count":270,"friends_count":235,"listed_count":0,"favourites_count":661,"statuses_count":19596,"created_at":"Tue Jan 04 22:46:16 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456611040285827072\/7YYXJIys.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456611040285827072\/7YYXJIys.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653678486633246720\/u9AmMCHX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653678486633246720\/u9AmMCHX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234132247\/1445033503","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaanuLeticia","name":"Emanuele Let\u00edcia '","id":234132247,"id_str":"234132247","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857542656,"id_str":"663727816857542656","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/TnryrxbVmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384246350,"id_str":"384246350","name":"Grootman","screen_name":"sibonisonzama","location":"Vryheid, South Africa","url":null,"description":null,"protected":false,"verified":false,"followers_count":489,"friends_count":466,"listed_count":9,"favourites_count":1348,"statuses_count":4983,"created_at":"Mon Oct 03 10:27:34 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614029577782996992\/46FPEt1J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614029577782996992\/46FPEt1J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384246350\/1374777292","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687165990281216,"quoted_status_id_str":"663687165990281216","quoted_status":{"created_at":"Mon Nov 09 11:58:45 +0000 2015","id":663687165990281216,"id_str":"663687165990281216","text":"If i had a boyfriend who loves his selfie stick as much as one of my colleagues I'd get a side nigga for insurance\ud83d\ude04\ud83d\ude04\ud83d\ude04\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28348226,"id_str":"28348226","name":"KEITUMETSE","screen_name":"kikisometimes","location":"Joburger","url":null,"description":"Play the fool and fool them all","protected":false,"verified":false,"followers_count":328,"friends_count":56,"listed_count":9,"favourites_count":1020,"statuses_count":17516,"created_at":"Thu Apr 02 14:34:19 +0000 2009","utc_offset":3600,"time_zone":"Prague","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/818526112\/f932c5cdc621d9dfa0b0c2742f4d3fed.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/818526112\/f932c5cdc621d9dfa0b0c2742f4d3fed.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0D0806","profile_text_color":"544C45","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663311291172397056\/X1CTkB9T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663311291172397056\/X1CTkB9T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28348226\/1447059829","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TnryrxbVmo","expanded_url":"https:\/\/twitter.com\/kikisometimes\/status\/663687165990281216","display_url":"twitter.com\/kikisometimes\/\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840736768,"id_str":"663727816840736768","text":"@fanartfactory Okay sya, nag-grow sya sakin nung lumabas si Merlin. Hottie eh. Kaso naguguluhan ako sa timelines. Hahaha! Balikan mo na :)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727298386903040,"in_reply_to_status_id_str":"663727298386903040","in_reply_to_user_id":510137886,"in_reply_to_user_id_str":"510137886","in_reply_to_screen_name":"fanartfactory","user":{"id":51388627,"id_str":"51388627","name":"Rai","screen_name":"dynamiterai","location":null,"url":"http:\/\/instagram.com\/dynamiterai","description":"Random.","protected":false,"verified":false,"followers_count":1170,"friends_count":63,"listed_count":5,"favourites_count":284,"statuses_count":53119,"created_at":"Sat Jun 27 08:42:02 +0000 2009","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657912912833413120\/Is1Y5Ews_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657912912833413120\/Is1Y5Ews_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51388627\/1443147028","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fanartfactory","name":"The Fanart Factory","id":510137886,"id_str":"510137886","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874307584,"id_str":"663727816874307584","text":"Sharlene Ft. Servando y Florentino \"Mal de amor\" suena en #TQB","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2985013491,"id_str":"2985013491","name":"Total Que Bueno","screen_name":"Totalquebueno","location":null,"url":"https:\/\/www.facebook.com\/TotalQueBueno?ref=hl","description":"Talk Show de Humor transmitido por @calle989fm desde Maracay - Venezuela de Lunes a Viernes de 9:00 am a 12:00 pm con @carlosmarquezfm y @milacaballero11","protected":false,"verified":false,"followers_count":1272,"friends_count":10,"listed_count":7,"favourites_count":15,"statuses_count":1323,"created_at":"Mon Jan 19 03:24:30 +0000 2015","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573268086708563968\/1XfkphQK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573268086708563968\/1XfkphQK.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572541006965256192\/rke3D2-V_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572541006965256192\/rke3D2-V_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985013491\/1425410353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TQB","indices":[58,62]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816849137664,"id_str":"663727816849137664","text":"RT @MidoMm564: \u0639\u064a\u0628 \u0627\u0644\u0645\u064a\u062f\u062a\u0631\u0645 \u0627\u0646\u0643 \u0628\u062a\u0637\u0644\u0639 \u0645\u0646 \u0635\u062f\u0645\u0629 \u062a\u062f\u062e\u0644 \u0641\u0649 \u0635\u062f\u0645\u0629 \u062a\u0627\u0646\u064a\u0629 \u0639\u0644\u0637\u0648\u0644 \u0645\u0646 \u063a\u064a\u0631 \u0645\u0627\u062a\u0627\u062e\u062f \u0646\u0641\u0633\u0643 \u062d\u062a\u0649 .. \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3612986776,"id_str":"3612986776","name":"Manar\u2122\u270c","screen_name":"Mnar_Ehab","location":" \u2716","url":null,"description":"LOVE ME LiKE YOU DO\u2764\u270b,,YOU KNOW MY NAME NOT MY STORY\u270b ,,\u0627\u0644\u0632\u0645\u0627\u0644\u0643\u2764\u270b,,\u0627\u0643\u062a\u0631 \u062d\u0627\u062c\u0629 \u0628\u0643\u0631\u0647\u0627 \u0627\u0646 \u062d\u062f \u064a\u062a\u0643\u0644\u0645 \u0639\u0644\u0649 \u0628\u0646\u062a \u270b","protected":false,"verified":false,"followers_count":879,"friends_count":736,"listed_count":0,"favourites_count":295,"statuses_count":11972,"created_at":"Thu Sep 10 20:05:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642690808701943808\/0W6vZTA8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642690808701943808\/0W6vZTA8.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727680123183104\/hGs2GTKG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727680123183104\/hGs2GTKG_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:42 +0000 2015","id":663727416284749824,"id_str":"663727416284749824","text":"\u0639\u064a\u0628 \u0627\u0644\u0645\u064a\u062f\u062a\u0631\u0645 \u0627\u0646\u0643 \u0628\u062a\u0637\u0644\u0639 \u0645\u0646 \u0635\u062f\u0645\u0629 \u062a\u062f\u062e\u0644 \u0641\u0649 \u0635\u062f\u0645\u0629 \u062a\u0627\u0646\u064a\u0629 \u0639\u0644\u0637\u0648\u0644 \u0645\u0646 \u063a\u064a\u0631 \u0645\u0627\u062a\u0627\u062e\u062f \u0646\u0641\u0633\u0643 \u062d\u062a\u0649 .. \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2430855609,"id_str":"2430855609","name":"3bslaaam","screen_name":"MidoMm564","location":null,"url":null,"description":"mansoura","protected":false,"verified":false,"followers_count":12087,"friends_count":6601,"listed_count":6,"favourites_count":1527,"statuses_count":51399,"created_at":"Sun Mar 23 11:39:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658793588923486208\/yFUaMFZU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658793588923486208\/yFUaMFZU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2430855609\/1446828017","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MidoMm564","name":"3bslaaam","id":2430855609,"id_str":"2430855609","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080017660"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874266624,"id_str":"663727816874266624","text":"#Pesca y caza en #brasil noviembre #2015 @ Fazenda Rio Pintado Agua Boa-mt https:\/\/t.co\/kyghYGCAs4","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134883481,"id_str":"134883481","name":"alexander perez","screen_name":"abueno34","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":188,"friends_count":601,"listed_count":0,"favourites_count":3,"statuses_count":152,"created_at":"Mon Apr 19 18:36:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427756160326717440\/yyX4reHE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427756160326717440\/yyX4reHE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134883481\/1390820174","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-13.87518029,-52.18686202]},"coordinates":{"type":"Point","coordinates":[-52.18686202,-13.87518029]},"place":{"id":"e931294bf2dde4a2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e931294bf2dde4a2.json","place_type":"city","name":"\u00c1gua Boa","full_name":"\u00c1gua Boa, Mato Grosso","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-53.114424,-14.541895],[-53.114424,-13.634880],[-51.824126,-13.634880],[-51.824126,-14.541895]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pesca","indices":[0,6]},{"text":"brasil","indices":[17,24]}],"urls":[{"url":"https:\/\/t.co\/kyghYGCAs4","expanded_url":"https:\/\/instagram.com\/p\/93iVIuAxFl\/","display_url":"instagram.com\/p\/93iVIuAxFl\/","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853336064,"id_str":"663727816853336064","text":"RT @bookdealstoday: \u2606\u2606 FREEBIE: Love is the silver lining. The legacy continues Time travel #romance #IARTG https:\/\/t.co\/6sMMPlzWe3 https:\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1626053126,"id_str":"1626053126","name":"Vatonia Boone","screen_name":"vatoniaboone","location":"Dallas, Texas","url":"http:\/\/www.vatoniaboone.com","description":"I'm an up-and-coming author of adult paranormal and contemporary romance. Watch for news on my debut novel, Illusion of the Heart, releasing late fall 2015.","protected":false,"verified":false,"followers_count":2669,"friends_count":2512,"listed_count":175,"favourites_count":1534,"statuses_count":28210,"created_at":"Sat Jul 27 18:30:19 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000091945159\/a6b9695a5fcf52fc257c8a3a09e11260.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000091945159\/a6b9695a5fcf52fc257c8a3a09e11260.png","profile_background_tile":false,"profile_link_color":"D93655","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000800789153\/850014739390e19a8b4f28013403ac3a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000800789153\/850014739390e19a8b4f28013403ac3a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1626053126\/1381438222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:16 +0000 2015","id":663724542406336512,"id_str":"663724542406336512","text":"\u2606\u2606 FREEBIE: Love is the silver lining. The legacy continues Time travel #romance #IARTG https:\/\/t.co\/6sMMPlzWe3 https:\/\/t.co\/Ejq95hdie2","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2713626576,"id_str":"2713626576","name":"Book Deals Today","screen_name":"bookdealstoday","location":"California","url":null,"description":"READERS: Follow us for tweets about great deals on books! \u2605\u2605 AUTHORS: Promote your books to over 455,000+ followers! Learn more: http:\/\/BookTweeters.com\/bdt","protected":false,"verified":false,"followers_count":50226,"friends_count":44919,"listed_count":648,"favourites_count":0,"statuses_count":59047,"created_at":"Thu Aug 07 04:05:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512467558922858496\/BA2iQQx__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512467558922858496\/BA2iQQx__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2713626576\/1411016325","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"romance","indices":[73,81]},{"text":"IARTG","indices":[82,88]}],"urls":[{"url":"https:\/\/t.co\/6sMMPlzWe3","expanded_url":"http:\/\/bookshow.me\/B015D3W9XY","display_url":"bookshow.me\/B015D3W9XY","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":662162755810631680,"id_str":"662162755810631680","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","url":"https:\/\/t.co\/Ejq95hdie2","display_url":"pic.twitter.com\/Ejq95hdie2","expanded_url":"http:\/\/twitter.com\/pamackerson\/status\/662162756259487747\/photo\/1","type":"photo","sizes":{"small":{"w":150,"h":225,"resize":"fit"},"medium":{"w":150,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":150,"h":225,"resize":"fit"}},"source_status_id":662162756259487747,"source_status_id_str":"662162756259487747","source_user_id":2155339694,"source_user_id_str":"2155339694"}]},"extended_entities":{"media":[{"id":662162755810631680,"id_str":"662162755810631680","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","url":"https:\/\/t.co\/Ejq95hdie2","display_url":"pic.twitter.com\/Ejq95hdie2","expanded_url":"http:\/\/twitter.com\/pamackerson\/status\/662162756259487747\/photo\/1","type":"photo","sizes":{"small":{"w":150,"h":225,"resize":"fit"},"medium":{"w":150,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":150,"h":225,"resize":"fit"}},"source_status_id":662162756259487747,"source_status_id_str":"662162756259487747","source_user_id":2155339694,"source_user_id_str":"2155339694"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"romance","indices":[93,101]},{"text":"IARTG","indices":[102,108]}],"urls":[{"url":"https:\/\/t.co\/6sMMPlzWe3","expanded_url":"http:\/\/bookshow.me\/B015D3W9XY","display_url":"bookshow.me\/B015D3W9XY","indices":[109,132]}],"user_mentions":[{"screen_name":"bookdealstoday","name":"Book Deals Today","id":2713626576,"id_str":"2713626576","indices":[3,18]}],"symbols":[],"media":[{"id":662162755810631680,"id_str":"662162755810631680","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","url":"https:\/\/t.co\/Ejq95hdie2","display_url":"pic.twitter.com\/Ejq95hdie2","expanded_url":"http:\/\/twitter.com\/pamackerson\/status\/662162756259487747\/photo\/1","type":"photo","sizes":{"small":{"w":150,"h":225,"resize":"fit"},"medium":{"w":150,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":150,"h":225,"resize":"fit"}},"source_status_id":662162756259487747,"source_status_id_str":"662162756259487747","source_user_id":2155339694,"source_user_id_str":"2155339694"}]},"extended_entities":{"media":[{"id":662162755810631680,"id_str":"662162755810631680","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB5hKOWIAACpmj.jpg","url":"https:\/\/t.co\/Ejq95hdie2","display_url":"pic.twitter.com\/Ejq95hdie2","expanded_url":"http:\/\/twitter.com\/pamackerson\/status\/662162756259487747\/photo\/1","type":"photo","sizes":{"small":{"w":150,"h":225,"resize":"fit"},"medium":{"w":150,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":150,"h":225,"resize":"fit"}},"source_status_id":662162756259487747,"source_status_id_str":"662162756259487747","source_user_id":2155339694,"source_user_id_str":"2155339694"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840728576,"id_str":"663727816840728576","text":"ANGRA - Angels Cry\n\ud83d\ude18 https:\/\/t.co\/ZMH36Sna6p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57411389,"id_str":"57411389","name":"iCloud Rider","screen_name":"LordShakri","location":"Rio de Janeiro","url":null,"description":"Desbloqueio de iCloud\/iCloud Unlock Whatsapp +5521984452035 - http:\/\/Facebook.com\/LordShakri - Instagram: @lordshakri","protected":false,"verified":false,"followers_count":1030,"friends_count":1258,"listed_count":7,"favourites_count":3350,"statuses_count":3070,"created_at":"Thu Jul 16 18:48:13 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634230397807763456\/zJ6eGfxg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634230397807763456\/zJ6eGfxg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57411389\/1442557564","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZMH36Sna6p","expanded_url":"http:\/\/youtu.be\/uWN22crmHBQ","display_url":"youtu.be\/uWN22crmHBQ","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816849002496,"id_str":"663727816849002496","text":"Muchisima suerte #BBAnaCeci te iras a espa\u00f1a te apollamos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180153645,"id_str":"4180153645","name":"Daniel Hernandez","screen_name":"daniels1790","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":45,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 14:30:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726507777355778\/BGclSIDM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726507777355778\/BGclSIDM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4180153645\/1447079704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BBAnaCeci","indices":[17,27]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017660"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853184512,"id_str":"663727816853184512","text":"\u4e45\u3005\u306b\u4e8c\u65e5\u9023\u7d9a\u3067\u304a\u8179\u30a4\u30bf\u30a4\u30bf\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14634642,"id_str":"14634642","name":"asukolu","screen_name":"asukolu","location":"\u611b\u77e5\u770c","url":null,"description":"\u4e3b\u5a66\u3068\u540d\u306e\u308b\u306e\u304c\u304a\u3053\u304c\u307e\u3057\u3044\u3001\u6bce\u65e5\u6a2a\u306b\u306a\u3063\u3066\u308b\u3060\u3051\u306e\u6a2a\u7740\u8005\u3002\u95a2\u7bc0\u30a4\u30bf\u30a4\u30bf\uff06\u30c0\u30eb\u30fc\u3002\u5fcc\u91ce\u6e05\u5fd7\u90ce\u304c\u4ea1\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u3001\u30e9\u30a4\u30f4\u306b\u884c\u304f\u76ee\u6a19\u304c\u6d88\u3048\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":15,"friends_count":32,"listed_count":1,"favourites_count":492,"statuses_count":8882,"created_at":"Sat May 03 03:54:27 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1300429097\/VFSH0339_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1300429097\/VFSH0339_normal.JPG","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816870096896,"id_str":"663727816870096896","text":"@boghz_s \u062a\u06a9\u0631\u0627\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":654864129283506176,"in_reply_to_status_id_str":"654864129283506176","in_reply_to_user_id":3198472717,"in_reply_to_user_id_str":"3198472717","in_reply_to_screen_name":"boghz_s","user":{"id":3198472717,"id_str":"3198472717","name":"\u0635\u0627 \u062f\u0650\u0642","screen_name":"boghz_s","location":null,"url":null,"description":"\u0647\u0645\u0647 \u0686\u06cc \u062f\u0633\u062a\u062e\u0648\u0634 \u062a\u063a\u06cc\u06cc\u0631 \u0645\u06cc\u0634\u0647 \u062d\u062a\u06cc \u062e\u0648\u062f \u062a\u063a\u06cc\u06cc\u0631 \u0628\u0647\u0645\u06cc\u0646 \u0645\u0646\u0627\u0633\u0628\u062a \u0628\u06cc\u0648\u0645 \u0641\u0639\u0644\u0627 \u0647\u0645\u06cc\u0646\u0647","protected":false,"verified":false,"followers_count":2219,"friends_count":300,"listed_count":1,"favourites_count":98496,"statuses_count":49801,"created_at":"Sun May 17 03:19:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663669187160743936\/_Yy0MdNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663669187160743936\/_Yy0MdNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3198472717\/1446928303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"boghz_s","name":"\u0635\u0627 \u062f\u0650\u0642","id":3198472717,"id_str":"3198472717","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816844976129,"id_str":"663727816844976129","text":"sla eh algo que tira 70% da minha aten\u00e7\u00e3o","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252211807,"id_str":"252211807","name":"watson","screen_name":"awakewat","location":null,"url":null,"description":"started not to give a fuck and stop fearing the consequence\u2730","protected":false,"verified":false,"followers_count":239,"friends_count":132,"listed_count":0,"favourites_count":648,"statuses_count":1692,"created_at":"Mon Feb 14 18:41:22 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432669834329858049\/61IYV9pZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432669834329858049\/61IYV9pZ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"2AA12A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663456108946788353\/z2JUNL4S_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663456108946788353\/z2JUNL4S_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252211807\/1446874297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080017659"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840613888,"id_str":"663727816840613888","text":"RT @brianlogandales: Eating Thai food alone and they're playing piano instrumentals of @5sos deep cuts. Miss you @Luke5SOS @Michael5SOS @As\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3018703578,"id_str":"3018703578","name":"JocelynWinters_","screen_name":"jojo_012315","location":"Panorama City, Los Angeles","url":null,"description":"Not crazy just an awkward teen \n Sophomore|15| Weird Creature MDE \u2764 \nJohnnie Gilbert is my spirit animal\nInstagram: @coffee.and.tea","protected":false,"verified":false,"followers_count":840,"friends_count":559,"listed_count":7,"favourites_count":19115,"statuses_count":13777,"created_at":"Fri Feb 13 18:00:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661781314136248321\/-9bR16T7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661781314136248321\/-9bR16T7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3018703578\/1442213848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:21:31 +0000 2015","id":663602298677936129,"id_str":"663602298677936129","text":"Eating Thai food alone and they're playing piano instrumentals of @5sos deep cuts. Miss you @Luke5SOS @Michael5SOS @Ashton5SOS @Calum5SOS","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16540829,"id_str":"16540829","name":"DALES.","screen_name":"brianlogandales","location":"Los Angeles, CA","url":"http:\/\/www.facebook.com\/brianlogandales","description":"Brian Logan Dales. Singer. Songwriter. Coffee drinker. Traveler. http:\/\/www.instagram.com\/brianlogandales\nContact-Crystal@whitelabel.social","protected":false,"verified":true,"followers_count":115205,"friends_count":815,"listed_count":877,"favourites_count":851,"statuses_count":32945,"created_at":"Wed Oct 01 05:47:17 +0000 2008","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654908761757257728\/y9CZwrX1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654908761757257728\/y9CZwrX1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16540829\/1395363015","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7361,"favorite_count":16463,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[66,71]},{"screen_name":"Luke5SOS","name":"Luke Hemmings","id":403245020,"id_str":"403245020","indices":[92,101]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[102,114]},{"screen_name":"Ashton5SOS","name":"Ashton Irwin","id":439125710,"id_str":"439125710","indices":[115,126]},{"screen_name":"Calum5SOS","name":"Calum Hood","id":403255314,"id_str":"403255314","indices":[127,137]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brianlogandales","name":"DALES.","id":16540829,"id_str":"16540829","indices":[3,19]},{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[87,92]},{"screen_name":"Luke5SOS","name":"Luke Hemmings","id":403245020,"id_str":"403245020","indices":[113,122]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[123,135]},{"screen_name":"Ashton5SOS","name":"Ashton Irwin","id":439125710,"id_str":"439125710","indices":[136,140]},{"screen_name":"Calum5SOS","name":"Calum Hood","id":403255314,"id_str":"403255314","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857378817,"id_str":"663727816857378817","text":"\u5317\u5ddd\u666f\u5b50\u306e\u753b\u50cf\u306e\u7d20\u3063\u3074\u3093\u3063\u3066\u3069\u3046\u3057\u3066\u51fa\u56de\u3063\u305f\u3093\u3067\u3059\u304b\u2026 https:\/\/t.co\/JBinZlJzyi","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192474269,"id_str":"192474269","name":"oli oli","screen_name":"warm_oli","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":836,"listed_count":0,"favourites_count":0,"statuses_count":1853,"created_at":"Sun Sep 19 07:29:01 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1126736440\/742f44081bJMGPCRW_10384_6f25d03585_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1126736440\/742f44081bJMGPCRW_10384_6f25d03585_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JBinZlJzyi","expanded_url":"http:\/\/bit.ly\/1kFUgtH","display_url":"bit.ly\/1kFUgtH","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816848969728,"id_str":"663727816848969728","text":"@jkok_97 tanggung jawab ya bikin kangen\ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720471993516034,"in_reply_to_status_id_str":"663720471993516034","in_reply_to_user_id":2534462701,"in_reply_to_user_id_str":"2534462701","in_reply_to_screen_name":"jkok_97","user":{"id":3240774205,"id_str":"3240774205","name":"deren","screen_name":"rvairinz","location":null,"url":"http:\/\/rvofc.oking.jp","description":"\uc544\uc774\ub9b0's Pard \u2022 \ub808\ub4dc\ubca8\ubcb3 \ub9ac\ub354 \u2022 91\ub128 \u2022 wgl w\/ @jkok_97","protected":false,"verified":false,"followers_count":346,"friends_count":318,"listed_count":1,"favourites_count":43,"statuses_count":1748,"created_at":"Tue Jun 09 11:37:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663331942436225024\/x1DtHr9o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663331942436225024\/x1DtHr9o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3240774205\/1446985631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jkok_97","name":"JK","id":2534462701,"id_str":"2534462701","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080017660"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816836444160,"id_str":"663727816836444160","text":"\u30c7\u30ec\u30c7\u30ec\u5927\u6b53\u8fce\u266c\u7b11 https:\/\/t.co\/QogOi9FEVX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2701235048,"id_str":"2701235048","name":"\u5bae","screen_name":"miyachikaito922","location":"\u795e\u5bae\u5bfa\u30ef\u30fc\u30eb\u30c9\u306e\u4f4f\u6c11\u2190","url":"http:\/\/twpf.jp\/miyachikaito922","description":"\u3068\u306b\u304b\u304f\u660e\u308b\u3044\u5bae\u8fd1nr\u3067\u3059\uff01 \n\u5927\u5207\u7121\/\u65b0\u82bd\u2192@ARANxxxx0830 \u89aa\u53cb\u2192@0727_aran \u5f1f\u2192@RenNagaseeeee happyboys\u2192@romeo_ngt \u8eab\u5185\u3001\u56fa\u5b9a\u306a\u3069\u3042\u308a\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\uff01 \u30d8\u30c3\u30c0\u30fc\u21d2\u5927\u597d\u304d\u306a\u65b0\u82bd\u3068\u30da\u30a2\u753b","protected":false,"verified":false,"followers_count":169,"friends_count":134,"listed_count":20,"favourites_count":335,"statuses_count":6888,"created_at":"Sat Aug 02 16:44:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628661040255905792\/40u6Alp2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628661040255905792\/40u6Alp2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2701235048\/1443317004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727585180807169,"quoted_status_id_str":"663727585180807169","quoted_status":{"created_at":"Mon Nov 09 14:39:22 +0000 2015","id":663727585180807169,"id_str":"663727585180807169","text":"\u30c4\u30f3\u30c7\u30ec\u3058\u3083\u306a\u3044\u3082\u30fc\u3093\uff08\u7b11\uff09\n\u30c7\u30ec\u30c7\u30ec\u3060\u3082\u3093(o\u00b4\u8278`) https:\/\/t.co\/qo9hC1ifPO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4135655833,"id_str":"4135655833","name":"\u677e\u5009\u6d77\u6597","screen_name":"kaitom_kaitom20","location":"\u30b8\u30e3\u30cb\u30fc\u30ba\u4e8b\u52d9\u6240","url":null,"description":"\u5927\u5207\u2192@sige826\u3001 \u65b0\u82bd\u2192@raiha__911\u3001\u4e8b\u52d9\u6240\u7121\u95a2\u4fc2\/\u5929\u7136\/\u8a00\u8449\u8cac\u3081\/\u610f\u5730\u60aa\/\u6bd2\u820c\/\u30c9S\/DM\u958b\u653e\/\u4e00\u822c\u62d2\u5426\/\u7537\u4e5f\u3001\u5973\u4e5f\u25ce\/\u30b8\u30e3\u30cb\u30fc\u30ba\u4e8b\u52d9\u6240\/@narikri_hausu\/\u4e00\u671f\u751f","protected":false,"verified":false,"followers_count":72,"friends_count":77,"listed_count":0,"favourites_count":244,"statuses_count":487,"created_at":"Thu Nov 05 13:57:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662267858961887233\/kQGpQLLo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662267858961887233\/kQGpQLLo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4135655833\/1446868093","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726486675808256,"quoted_status_id_str":"663726486675808256","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qo9hC1ifPO","expanded_url":"https:\/\/twitter.com\/miyachikaito922\/status\/663726486675808256","display_url":"twitter.com\/miyachikaito92\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QogOi9FEVX","expanded_url":"https:\/\/twitter.com\/kaitom_kaitom20\/status\/663727585180807169","display_url":"twitter.com\/kaitom_kaitom2\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017657"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861724672,"id_str":"663727816861724672","text":"What do you expect? https:\/\/t.co\/kwmKY6HDQe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258349621,"id_str":"258349621","name":"KING of KINGS","screen_name":"Floyd_Stunner","location":null,"url":null,"description":"Don't compare me to nobody, I'd rather not be mentioned! #BlueMancunian #MCFC #7","protected":false,"verified":false,"followers_count":5606,"friends_count":3433,"listed_count":24,"favourites_count":152,"statuses_count":139373,"created_at":"Sun Feb 27 14:34:48 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658953507941281792\/PcBKK91-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658953507941281792\/PcBKK91-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258349621\/1418748438","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663368787517947904,"quoted_status_id_str":"663368787517947904","quoted_status":{"created_at":"Sun Nov 08 14:53:38 +0000 2015","id":663368787517947904,"id_str":"663368787517947904","text":"Apparently she had an abortion for him like 6 years ago & the guy abandoned her after that","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42845471,"id_str":"42845471","name":"Toyan Adeniji-Adele","screen_name":"adetoyan","location":"\u00dcT: 6.4404788,3.45383","url":"http:\/\/www.adetoyan.com","description":"All round Digital Media specialist & consultant. Web Guru, Photography Enthusiast, Friend & Brother. Looks will deceive you","protected":false,"verified":false,"followers_count":909,"friends_count":601,"listed_count":17,"favourites_count":80,"statuses_count":18543,"created_at":"Wed May 27 08:49:13 +0000 2009","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618320031701557248\/4qhoEmy-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618320031701557248\/4qhoEmy-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42845471\/1436254215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kwmKY6HDQe","expanded_url":"https:\/\/twitter.com\/adetoyan\/status\/663368787517947904","display_url":"twitter.com\/adetoyan\/statu\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853196800,"id_str":"663727816853196800","text":"Jika dia mencintaimu, dia pasti menginginkan hubungan serius dgnmu, jk dia terus mempertahankanmu namun tak serius, lupakan","source":"\u003ca href=\"http:\/\/perfect-tool.cf\/\" rel=\"nofollow\"\u003eToolsPerfect_Bijak\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2984189185,"id_str":"2984189185","name":"Hantu Timeline","screen_name":"Viicceennt22","location":"FOLLOW INSTAGRAM: Viccent22","url":"http:\/\/instagram.com\/viccent22","description":"Jangan follow, nanti naksir(\u2022\u032f\u0361.\u2022\u032f\u0361) | Contact Us: \u260e081541085288\/ contactme22222@gmail.com \r\nPin bb : 543476E1","protected":false,"verified":false,"followers_count":3960,"friends_count":5007,"listed_count":0,"favourites_count":165,"statuses_count":41651,"created_at":"Thu Jan 15 13:08:22 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604917920330838017\/fDUbeYgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604917920330838017\/fDUbeYgp_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874196992,"id_str":"663727816874196992","text":"RT @Power_DuckD: @Power_DuckD \ub09c \uae40\ud61c\uc218\uac00 \uc62c\ube14\ub799\ub4dc\ub808\uc2a4\uc785\uace0 \ub808\ub4dc\ub9bd\ubc14\ub974\uace0 \uc81c\uaddc\uc5b4\uc5d0 \uc549\uc544\uc11c \ud654\uba74(\ub098)\uc744 \ubc14\ub77c\ubcf4\uba70 '\uc790\uae30\uc57c, \ud0c0.' \ud55c \ub9c8\ub514\ub9cc \ud558\uba74 \uc7a5\uae30\ub97c \ud314\uc544\uc11c\ub77c\ub3c4 \uc81c\uaddc\uc5b4\ub97c\u3139 \uc0b4 \uc758\ud5a5\uc774 \uc788\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1966153422,"id_str":"1966153422","name":"[\uc2ac\ub7ec\uc2dc] \uc774\uc815","screen_name":"deepriver_1","location":null,"url":null,"description":"\uc131\uc778\uc5ec\uc790\uc0ac\ub78c \/ \ub355\uc9c8 + \uc77c\uc0c1\uc7a1\ub2f4 \/ \ud50c\ud53d\uc740 \ub9dd\ud314\ub2d8","protected":false,"verified":false,"followers_count":46,"friends_count":60,"listed_count":0,"favourites_count":2028,"statuses_count":55786,"created_at":"Thu Oct 17 06:09:32 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550093181547577344\/AyxrzTbi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550093181547577344\/AyxrzTbi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1966153422\/1404365947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:42:40 +0000 2015","id":663698217830232064,"id_str":"663698217830232064","text":"@Power_DuckD \ub09c \uae40\ud61c\uc218\uac00 \uc62c\ube14\ub799\ub4dc\ub808\uc2a4\uc785\uace0 \ub808\ub4dc\ub9bd\ubc14\ub974\uace0 \uc81c\uaddc\uc5b4\uc5d0 \uc549\uc544\uc11c \ud654\uba74(\ub098)\uc744 \ubc14\ub77c\ubcf4\uba70 '\uc790\uae30\uc57c, \ud0c0.' \ud55c \ub9c8\ub514\ub9cc \ud558\uba74 \uc7a5\uae30\ub97c \ud314\uc544\uc11c\ub77c\ub3c4 \uc81c\uaddc\uc5b4\ub97c\u3139 \uc0b4 \uc758\ud5a5\uc774 \uc788\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663697406580555776,"in_reply_to_status_id_str":"663697406580555776","in_reply_to_user_id":2726537798,"in_reply_to_user_id_str":"2726537798","in_reply_to_screen_name":"Power_DuckD","user":{"id":2726537798,"id_str":"2726537798","name":"\uc5f0\uc544 \uc601\uc5c5\uc0ac\uc6d0 \ub864\ub7ec","screen_name":"Power_DuckD","location":"Long Live The Queen!","url":null,"description":"[\ud5e4\ub354 : \ub2ec\uc544 ( @s519076 )\ub2d8]","protected":false,"verified":false,"followers_count":8440,"friends_count":203,"listed_count":56,"favourites_count":770,"statuses_count":4472,"created_at":"Tue Aug 12 15:49:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604151516975386624\/HDr96eKl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604151516975386624\/HDr96eKl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726537798\/1434290627","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":442,"favorite_count":39,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Power_DuckD","name":"\uc5f0\uc544 \uc601\uc5c5\uc0ac\uc6d0 \ub864\ub7ec","id":2726537798,"id_str":"2726537798","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Power_DuckD","name":"\uc5f0\uc544 \uc601\uc5c5\uc0ac\uc6d0 \ub864\ub7ec","id":2726537798,"id_str":"2726537798","indices":[3,15]},{"screen_name":"Power_DuckD","name":"\uc5f0\uc544 \uc601\uc5c5\uc0ac\uc6d0 \ub864\ub7ec","id":2726537798,"id_str":"2726537798","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861618180,"id_str":"663727816861618180","text":"@MiytTdc \u3044\u3044\u3068\u3053\uff01\u884c\u3063\u305f\u3053\u3068\u306a\u3044\u3051\u3069\u2026\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727732757413888,"in_reply_to_status_id_str":"663727732757413888","in_reply_to_user_id":1307607098,"in_reply_to_user_id_str":"1307607098","in_reply_to_screen_name":"MiytTdc","user":{"id":3085437498,"id_str":"3085437498","name":"#DAI\u2729J.S.B.","screen_name":"24LDH_JSB","location":"\u5922\u306e\u5148\u306b\u5225\u306e\u5922\u304c\u3042\u308b\u3063\u3066\u6c17\u3065\u304b\u305b\u3066\u304f\u308c\u305f \u3042\u306a\u305f\u3068","url":null,"description":"Hokkaido\u2606\u4e09\u4ee3\u76eeJ Soul Brothers\u2606BP\u21927\/5.10\/17.10\/18\u53c2\u6226 \u76f4\u4eba\u76f4\u5df1ELLY\u5065\u4e8c\u90ce\u304c\u3093\u81e3\u9686\u4e8c\u3053\u306e7\u4eba\u306b\u4e00\u751f\u3064\u3044\u3066\u3044\u304f\u2729\u3055\u3042\u4eca\u3053\u305dstarting over\u2729 \u4e09\u4ee3\u76ee\u597d\u304d\u306e\u65b9follow me*\u2445\ufe0e next\u21d212.19 \u96fb\u8a71\u8d8a\u3057\u3067\u6b4c\u3063\u3066\u308b\u58f0\u304cTAKAHIRO\u306b\u4f3c\u3066\u308b\u3068\u8a00\u308f\u308c\u307e\u3059","protected":false,"verified":false,"followers_count":325,"friends_count":411,"listed_count":2,"favourites_count":93,"statuses_count":733,"created_at":"Sun Mar 15 14:15:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655754895673262081\/fsuorNXy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655754895673262081\/fsuorNXy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3085437498\/1445606551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MiytTdc","name":"\u6b4c\u3046\u7d4c\u9a13\u50240\u306e\u3046\u306b","id":1307607098,"id_str":"1307607098","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853209088,"id_str":"663727816853209088","text":"@symtkb \n\u8efd\u3044\u306a\u3041(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727671491215360,"in_reply_to_status_id_str":"663727671491215360","in_reply_to_user_id":2248033872,"in_reply_to_user_id_str":"2248033872","in_reply_to_screen_name":"symtkb","user":{"id":3013433689,"id_str":"3013433689","name":"\u3042\u30fc\u3049\u2665","screen_name":"LavTabata","location":null,"url":null,"description":"\u30bd\u30fc\u30b7\u30e3\u30eb1\u5e74\u2665\u2026\n\u4e09\u4ee3\u76ee J Soul Brothers\u2665\n\u81e3\u304f\u3093\u3001\u304c\u3093\u3061\u3083\u3093\u2661\n\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\n\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059(\u2661\u02d9\ufe36\u02d9\u2661)","protected":false,"verified":false,"followers_count":148,"friends_count":209,"listed_count":0,"favourites_count":1408,"statuses_count":1060,"created_at":"Sun Feb 08 12:42:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618460154913132545\/xprXkqkr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618460154913132545\/xprXkqkr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3013433689\/1436287971","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"symtkb","name":"\uff1a) Aika I","id":2248033872,"id_str":"2248033872","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874160129,"id_str":"663727816874160129","text":"@tfk_luna \n\n\ud83d\udc97\u540d\u524d \u27b4\u308b\u306a\n\u2601\ufe0f\u524d\u306e\u5370\u8c61 \u27b4\u7389\u597d\u304d\u306a\u5b50\uff01\n\ud83d\udc95\u4eca\u306e\u5370\u8c61 \u27b4\u6700\u9ad8\ud83d\ude0e\n\u2601\ufe0fLINE\u4ea4\u63db \u27b4\u3057\u3066\u308b\ud83d\udc4c\ud83c\udffb\n\ud83d\udc98\u30b9\u30ad\u306a\u3068\u3053\u308d \u27b4\u512a\u3057\u3044\uff01\n\u2601\ufe0f\u95a2\u4fc2 \u27b4\u304a\u53cb\u9054\ud83d\ude19\n\ud83d\udc9f\u3072\u3068\u3053\u3068 \u27b4\u307e\u305f\u4f1a\u3044\u305f\u3044\ud83d\ude29\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2495813622,"in_reply_to_user_id_str":"2495813622","in_reply_to_screen_name":"tfk_luna","user":{"id":1705078417,"id_str":"1705078417","name":"\u306a\u306a","screen_name":"nanatan22f25","location":"\u2765\u00bb \u604b\u3057\u305f\u3044\u261c","url":"http:\/\/Instagram.com\/nanatan2225","description":"\u2ffb\u2764\ufe0e---\ua4b017\u3055\u3044\u250aJK2\u250a150\u3322\u250a\u5c71\u5d0e \u8ce2\u4eba\u250a\u5ca9\u7530 \u525b\u5178\ua4b1---\u2764\ufe0e","protected":false,"verified":false,"followers_count":875,"friends_count":599,"listed_count":0,"favourites_count":1820,"statuses_count":9472,"created_at":"Tue Aug 27 16:13:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662688324058910721\/f0NuOKB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662688324058910721\/f0NuOKB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705078417\/1446916920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tfk_luna","name":"LUNA","id":2495813622,"id_str":"2495813622","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816836427776,"id_str":"663727816836427776","text":"RT @Aniya_A: This \ud83d\udc47 as Parliament Speaker has to be tried in a court of law\nEven 5 Nov VP's impeachment vote is unconstitutional! https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1653560202,"id_str":"1653560202","name":"MDPnadella","screen_name":"MDPnadella","location":"G\/Dh.Nadella","url":"http:\/\/www.mdp.org.mv","description":"The official Twitter account of MDP Nadella, https:\/\/www.facebook.com\/mdp.nadella.3","protected":false,"verified":false,"followers_count":1998,"friends_count":2030,"listed_count":9,"favourites_count":2245,"statuses_count":26173,"created_at":"Wed Aug 07 18:30:04 +0000 2013","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630266724386893825\/HxyKPDOD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630266724386893825\/HxyKPDOD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1653560202\/1425144923","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:30 +0000 2015","id":663727114516979712,"id_str":"663727114516979712","text":"This \ud83d\udc47 as Parliament Speaker has to be tried in a court of law\nEven 5 Nov VP's impeachment vote is unconstitutional! https:\/\/t.co\/CbDrOCbuug","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50979116,"id_str":"50979116","name":"Aishath Aniya","screen_name":"Aniya_A","location":"Maldives","url":null,"description":null,"protected":false,"verified":false,"followers_count":12956,"friends_count":978,"listed_count":29,"favourites_count":1310,"statuses_count":57004,"created_at":"Fri Jun 26 08:36:40 +0000 2009","utc_offset":18000,"time_zone":"Karachi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499021140795224064\/FXpxhcFi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499021140795224064\/FXpxhcFi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50979116\/1446803251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727102609395712,"id_str":"663727102609395712","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","url":"https:\/\/t.co\/CbDrOCbuug","display_url":"pic.twitter.com\/CbDrOCbuug","expanded_url":"http:\/\/twitter.com\/Aniya_A\/status\/663727114516979712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727102609395712,"id_str":"663727102609395712","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","url":"https:\/\/t.co\/CbDrOCbuug","display_url":"pic.twitter.com\/CbDrOCbuug","expanded_url":"http:\/\/twitter.com\/Aniya_A\/status\/663727114516979712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aniya_A","name":"Aishath Aniya","id":50979116,"id_str":"50979116","indices":[3,11]}],"symbols":[],"media":[{"id":663727102609395712,"id_str":"663727102609395712","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","url":"https:\/\/t.co\/CbDrOCbuug","display_url":"pic.twitter.com\/CbDrOCbuug","expanded_url":"http:\/\/twitter.com\/Aniya_A\/status\/663727114516979712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727114516979712,"source_status_id_str":"663727114516979712","source_user_id":50979116,"source_user_id_str":"50979116"}]},"extended_entities":{"media":[{"id":663727102609395712,"id_str":"663727102609395712","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISILVEAA_H2X.jpg","url":"https:\/\/t.co\/CbDrOCbuug","display_url":"pic.twitter.com\/CbDrOCbuug","expanded_url":"http:\/\/twitter.com\/Aniya_A\/status\/663727114516979712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727114516979712,"source_status_id_str":"663727114516979712","source_user_id":50979116,"source_user_id_str":"50979116"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017657"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874196994,"id_str":"663727816874196994","text":"Match sumn https:\/\/t.co\/Yt0HrQIFTP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3620866038,"id_str":"3620866038","name":"Jroge","screen_name":"Jrugga","location":"PlugsHise ","url":null,"description":"#FTBHustleEnt. MusicianUnderConstruction For Booking&Features @tee930@icloud.com Serious Inquiries ONLY #FTBOwner","protected":false,"verified":false,"followers_count":141,"friends_count":163,"listed_count":0,"favourites_count":181,"statuses_count":2157,"created_at":"Sat Sep 19 23:36:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662078247757176832\/k4FA6g00_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662078247757176832\/k4FA6g00_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3620866038\/1444551711","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"822f7a173519a8dd","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/822f7a173519a8dd.json","place_type":"city","name":"Stafford","full_name":"Stafford, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-95.597893,29.598122],[-95.597893,29.648822],[-95.526995,29.648822],[-95.526995,29.598122]]]},"attributes":{}},"contributors":null,"quoted_status_id":663725324157358080,"quoted_status_id_str":"663725324157358080","quoted_status":{"created_at":"Mon Nov 09 14:30:23 +0000 2015","id":663725324157358080,"id_str":"663725324157358080","text":"A bitch that's insecure and always worried bout a nigga cheatin or playin her got a lot of work to do","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3272210138,"id_str":"3272210138","name":"theREALJayyPee","screen_name":"JayyPeeBlessed","location":null,"url":null,"description":"I Knew My Time Was Coming I Had To Wait For It Rest in Peace to all my Niggas Cant Wait till the Judge Free All My Niggas","protected":false,"verified":false,"followers_count":339,"friends_count":562,"listed_count":0,"favourites_count":1246,"statuses_count":3746,"created_at":"Wed Jul 08 20:20:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654922674620076032\/XeKAsPmW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654922674620076032\/XeKAsPmW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272210138\/1439954640","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Yt0HrQIFTP","expanded_url":"https:\/\/twitter.com\/jayypeeblessed\/status\/663725324157358080","display_url":"twitter.com\/jayypeeblessed\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816869961728,"id_str":"663727816869961728","text":"I, uh I brought you some flowers...","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417086520,"id_str":"417086520","name":"\u30b8\u30a7\u30a4\u30e0\u30b9\uff65\u30b5\u30f3\u30c0\u30fc\u30e9\u30f3\u30c9","screen_name":"SH2_James_bot","location":"Silent Hill","url":"http:\/\/twpf.jp\/SH2_James_bot","description":"\u30b5\u30a4\u30ec\u30f3\u30c8\u30d2\u30eb2\u306e\u4e3b\u4eba\u516c\u3001\u30b8\u30a7\u30a4\u30e0\u30b9\uff65\u30b5\u30f3\u30c0\u30fc\u30e9\u30f3\u30c9\u306e\u975e\u516c\u5f0fbot\u30022\u6642\u9593\u306b1\u56de\u516c\u5f0f\u306e\u53f0\u8a5e\u3092\u30c4\u30a3\u30fc\u30c8\u3057\u307e\u3059\u3002\u98fd\u304d\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3067\u3002","protected":false,"verified":false,"followers_count":110,"friends_count":113,"listed_count":4,"favourites_count":0,"statuses_count":18010,"created_at":"Sun Nov 20 14:15:29 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"82A0CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/388640499\/Silent-Hill-2-Dog-Ending.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/388640499\/Silent-Hill-2-Dog-Ending.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2673026662\/b9b003e2204c1955aea779b5a5957660_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2673026662\/b9b003e2204c1955aea779b5a5957660_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417086520\/1365854968","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816869961729,"id_str":"663727816869961729","text":"RT @zibumitunari: \u81ea\u5206\u3092\u6bba\u3057\u305f\u5974\u304c\u8d85\u30a4\u30b1\u30e1\u30f3\u306b\u306a\u3063\u3066\u53e3\u8aac\u3044\u3066\u304f\u308b\u3068\u3044\u3046\u3053\u308c\u4ee5\u4e0a\u306e\u30c8\u30e9\u30a6\u30de\u306f\u306a\u3044\u3060\u308d\u3046 \u2026\n\n #\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051 https:\/\/t.co\/IiQZ42KLEk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022366552,"id_str":"1022366552","name":"\u7530\u820e\u306e\u5909\u306a\u4eba\u306f\u539f\u7a3f\u4e2d","screen_name":"nollaism","location":null,"url":"http:\/\/pixiv.me\/shiriko_dama","description":"\u306e\u306b\u3067\u3059\u3002\u6210\u4eba\u8150\u5973\u5b50\u3067\u3059\u3002\uff1a\u8a73\u7d30(http:\/\/twpf.jp\/nollaism) R18\u57a2\u2192@nolla_00","protected":false,"verified":false,"followers_count":1391,"friends_count":716,"listed_count":39,"favourites_count":68,"statuses_count":1117,"created_at":"Wed Dec 19 16:05:52 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E6E6E6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"00CED1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661117277903847424\/tkUfamrR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661117277903847424\/tkUfamrR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022366552\/1445626383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:01:01 +0000 2015","id":663672634953961472,"id_str":"663672634953961472","text":"\u81ea\u5206\u3092\u6bba\u3057\u305f\u5974\u304c\u8d85\u30a4\u30b1\u30e1\u30f3\u306b\u306a\u3063\u3066\u53e3\u8aac\u3044\u3066\u304f\u308b\u3068\u3044\u3046\u3053\u308c\u4ee5\u4e0a\u306e\u30c8\u30e9\u30a6\u30de\u306f\u306a\u3044\u3060\u308d\u3046 \u2026\n\n #\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051 https:\/\/t.co\/IiQZ42KLEk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":478157613,"id_str":"478157613","name":"\u77f3\u7530\u4e09\u6210","screen_name":"zibumitunari","location":"\u4f50\u548c\u5c71\u57ce","url":"https:\/\/ja.m.wikipedia.org\/wiki\/%E7%9F%B3%E7%94%B0%E4%B8%89%E6%88%90","description":"\u77f3\u7530\u4e09\u6210\u3002420\u5e74\u524d\u306f\u4e94\u5949\u884c\u8077\uff08\u7b11\uff09 \u5c71\u5d0e\u3001\u5c0f\u7267\u9577\u4e45\u624b\u3001\u5fcd\u57ce\u653b\u3081\u306b\u51fa\u9663\u3002\u73fe\u5728\u306f\u30a2\u30e1\u30fc\u30d0\u3084\u30c4\u30a4\u30c3\u30bf\u2015\u306a\u3069\u3067\u6d3b\u52d5\u3002 \u597d\u7269\u306f\u8fd1\u6c5f\u9b8e\u306e\u5869\u713c\u304d\u3068\u5927\u798f\u3068\u8336\u3002 \u51c4\u3044\u795e\u7d4c\u8cea\u306a\u6cbb\u90e8\u5c11\u8f14\u3002\u8a71\u304c\u5408\u3046\u8005\u306f\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3092\u3057\u3066\u304f\u308c\u308b\u3068\u6709\u96e3\u3044\u3002","protected":false,"verified":false,"followers_count":23466,"friends_count":2846,"listed_count":339,"favourites_count":19828,"statuses_count":32616,"created_at":"Sun Jan 29 23:57:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661456768241823744\/LMAbR_2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661456768241823744\/LMAbR_2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478157613\/1370598083","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":609,"favorite_count":468,"entities":{"hashtags":[{"text":"\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051","indices":[46,65]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663672624254312448,"id_str":"663672624254312448","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","url":"https:\/\/t.co\/IiQZ42KLEk","display_url":"pic.twitter.com\/IiQZ42KLEk","expanded_url":"http:\/\/twitter.com\/zibumitunari\/status\/663672634953961472\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":640,"resize":"fit"},"large":{"w":499,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672624254312448,"id_str":"663672624254312448","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","url":"https:\/\/t.co\/IiQZ42KLEk","display_url":"pic.twitter.com\/IiQZ42KLEk","expanded_url":"http:\/\/twitter.com\/zibumitunari\/status\/663672634953961472\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":640,"resize":"fit"},"large":{"w":499,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u524d\u3089\u306e\u4e59\u5973\u30b2\u30fc\u30e0\u306e\u30c8\u30e9\u30a6\u30de\u6319\u3052\u3066\u3051","indices":[64,83]}],"urls":[],"user_mentions":[{"screen_name":"zibumitunari","name":"\u77f3\u7530\u4e09\u6210","id":478157613,"id_str":"478157613","indices":[3,16]}],"symbols":[],"media":[{"id":663672624254312448,"id_str":"663672624254312448","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","url":"https:\/\/t.co\/IiQZ42KLEk","display_url":"pic.twitter.com\/IiQZ42KLEk","expanded_url":"http:\/\/twitter.com\/zibumitunari\/status\/663672634953961472\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":640,"resize":"fit"},"large":{"w":499,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"}},"source_status_id":663672634953961472,"source_status_id_str":"663672634953961472","source_user_id":478157613,"source_user_id_str":"478157613"}]},"extended_entities":{"media":[{"id":663672624254312448,"id_str":"663672624254312448","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWvEfUYAAmwRx.jpg","url":"https:\/\/t.co\/IiQZ42KLEk","display_url":"pic.twitter.com\/IiQZ42KLEk","expanded_url":"http:\/\/twitter.com\/zibumitunari\/status\/663672634953961472\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":640,"resize":"fit"},"large":{"w":499,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"}},"source_status_id":663672634953961472,"source_status_id_str":"663672634953961472","source_user_id":478157613,"source_user_id_str":"478157613"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017665"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840773632,"id_str":"663727816840773632","text":"my hours for the next 3 weeks are so shit I can't be dealing with life","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":740952240,"id_str":"740952240","name":"Lily","screen_name":"Lilyr0se1","location":"Bristol","url":null,"description":"Instagram: lilysmitthh","protected":false,"verified":false,"followers_count":464,"friends_count":587,"listed_count":1,"favourites_count":586,"statuses_count":4342,"created_at":"Mon Aug 06 16:25:58 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"050505","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662758123992702976\/JiSt0CuM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662758123992702976\/JiSt0CuM_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816840757248,"id_str":"663727816840757248","text":"When one pays $4.50 for a paper cup filled with burnt dirt water presumably they assume the right to complain. https:\/\/t.co\/1buC9D3pTl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89107946,"id_str":"89107946","name":"moss allen","screen_name":"mossallen","location":"NJ","url":null,"description":"I repair things for fun and necessity. Blue Blaze Irregular.","protected":false,"verified":false,"followers_count":69,"friends_count":430,"listed_count":6,"favourites_count":627,"statuses_count":1095,"created_at":"Wed Nov 11 04:36:00 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/228010905\/kay703_small.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/228010905\/kay703_small.jpg","profile_background_tile":true,"profile_link_color":"0C946D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2326534271\/6q9fxu00fu7e9ounq1cq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2326534271\/6q9fxu00fu7e9ounq1cq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89107946\/1418090851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725720934473728,"quoted_status_id_str":"663725720934473728","quoted_status":{"created_at":"Mon Nov 09 14:31:57 +0000 2015","id":663725720934473728,"id_str":"663725720934473728","text":"Some people are upset that Starbucks cups are red when they should be upset that Starbucks coffee is just terrible so who cares.","source":"\u003ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7684302,"id_str":"7684302","name":"That How-To Geek Guy","screen_name":"howtogeek","location":"Virginia, USA","url":"http:\/\/www.howtogeek.com","description":"I'm that How-To Geek guy. Self-Employed. These tweets do not reflect the opinion of my employer.","protected":false,"verified":false,"followers_count":30192,"friends_count":379,"listed_count":2677,"favourites_count":4779,"statuses_count":17622,"created_at":"Tue Jul 24 14:20:34 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3512083417\/2b4370b99bfe1e605b84b9660f815c10_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3512083417\/2b4370b99bfe1e605b84b9660f815c10_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1buC9D3pTl","expanded_url":"https:\/\/twitter.com\/howtogeek\/status\/663725720934473728","display_url":"twitter.com\/howtogeek\/stat\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017658"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857378818,"id_str":"663727816857378818","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/4xlapdSiIb","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":436170316,"id_str":"436170316","name":"Jenna","screen_name":"JennaSteele2","location":"plainwell","url":null,"description":"be in love with your life, every minute of it. Instagram: jenna_steele","protected":false,"verified":false,"followers_count":753,"friends_count":495,"listed_count":0,"favourites_count":7361,"statuses_count":10401,"created_at":"Tue Dec 13 21:40:52 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658585267910131712\/r0Bs2Wp9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658585267910131712\/r0Bs2Wp9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436170316\/1443935198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4xlapdSiIb","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816853221376,"id_str":"663727816853221376","text":"RT @actionnsel: Diwali a festival of LIGHTS\nIt festival of DARKNESS 4 NSEL Investors as they have been denied JUSTICE #ISupportKetan @PMOIn\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178340786,"id_str":"3178340786","name":"B Srinivasan","screen_name":"shreesidvin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":127,"listed_count":0,"favourites_count":212,"statuses_count":297,"created_at":"Tue Apr 28 15:30:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593075094034874368\/Gs22dOmN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593075094034874368\/Gs22dOmN_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:08 +0000 2015","id":663719473761792005,"id_str":"663719473761792005","text":"Diwali a festival of LIGHTS\nIt festival of DARKNESS 4 NSEL Investors as they have been denied JUSTICE #ISupportKetan @PMOIndia @nselinvestor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1865930406,"id_str":"1865930406","name":"MM","screen_name":"actionnsel","location":"India","url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":15,"listed_count":0,"favourites_count":0,"statuses_count":787,"created_at":"Sun Sep 15 03:13:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000459266282\/4d0e0a257b1a0b6c626f6c530f4cab72_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000459266282\/4d0e0a257b1a0b6c626f6c530f4cab72_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":0,"entities":{"hashtags":[{"text":"ISupportKetan","indices":[102,116]}],"urls":[],"user_mentions":[{"screen_name":"PMOIndia","name":"PMO India ","id":471741741,"id_str":"471741741","indices":[117,126]},{"screen_name":"nselinvestor","name":"NSEL Investors","id":1710530059,"id_str":"1710530059","indices":[127,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ISupportKetan","indices":[118,132]}],"urls":[],"user_mentions":[{"screen_name":"actionnsel","name":"MM","id":1865930406,"id_str":"1865930406","indices":[3,14]},{"screen_name":"PMOIndia","name":"PMO India ","id":471741741,"id_str":"471741741","indices":[133,140]},{"screen_name":"nselinvestor","name":"NSEL Investors","id":1710530059,"id_str":"1710530059","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017661"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861614081,"id_str":"663727816861614081","text":"ISIS ATTACKED ANOTHER UK JET IN AUGUST: Pilot Dodged The Missile Over Egypt, Why Only NOW Is This Coming To Light? https:\/\/t.co\/HPtrfOTiPu","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955860453,"id_str":"2955860453","name":"kim goh","screen_name":"kcgusa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":4745,"created_at":"Fri Jan 02 01:29:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555045653949059072\/lTryVm59_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555045653949059072\/lTryVm59_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955860453\/1421168192","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HPtrfOTiPu","expanded_url":"http:\/\/fb.me\/4TOGlifHh","display_url":"fb.me\/4TOGlifHh","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874135552,"id_str":"663727816874135552","text":"RT @N_Nanase_St: \u897f\u91ce\u4e03\u702c\u3061\u3083\u3093\u2661\u53ef\u611b\u304b\u3063\u305f\u3089RT #\u897f\u91ce\u4e03\u702c #\u4e43\u6728\u574246 https:\/\/t.co\/a6wuIMkI0F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3911376072,"id_str":"3911376072","name":"\u4e43\u6728\u574246love","screen_name":"4677Nogizaka","location":null,"url":null,"description":"#\u307e\u308b\u6c0f\u52a0\u5de5 #@nanasemarun7","protected":false,"verified":false,"followers_count":26,"friends_count":53,"listed_count":0,"favourites_count":5,"statuses_count":42,"created_at":"Fri Oct 16 07:32:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994266503802881\/LFLCKXqS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994266503802881\/LFLCKXqS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3911376072\/1446967782","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:38 +0000 2015","id":663722366913150976,"id_str":"663722366913150976","text":"\u897f\u91ce\u4e03\u702c\u3061\u3083\u3093\u2661\u53ef\u611b\u304b\u3063\u305f\u3089RT #\u897f\u91ce\u4e03\u702c #\u4e43\u6728\u574246 https:\/\/t.co\/a6wuIMkI0F","source":"\u003ca href=\"https:\/\/twitter.com\/N_Nanase_St\" rel=\"nofollow\"\u003eN_Nanase_St Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052007316,"id_str":"3052007316","name":"\u897f\u91ce\u4e03\u702c@\u4e43\u6728\u574246","screen_name":"N_Nanase_St","location":null,"url":"http:\/\/zignote.com\/AKBG_CH","description":"\u4e43\u6728\u574246\u306e\u897f\u91ce\u4e03\u702c\u3061\u3083\u3093\u306e\u753b\u50cf\u3092\u30c8\u30b3\u30c8\u30f3\u304a\u5c4a\u3051\u3057\u3061\u3083\u3046\u975e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3060\u3087\u266a \u30d5\u30a9\u30ed\u30fc\u3057\u3066\u897f\u91ce\u4e03\u702c\u3061\u3083\u3093\u306b\u56f2\u307e\u308c\u3061\u3083\u304a\u266a","protected":false,"verified":false,"followers_count":20539,"friends_count":15,"listed_count":59,"favourites_count":0,"statuses_count":4773,"created_at":"Sun Mar 01 07:47:55 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571949799214047232\/YWzee6tz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571949799214047232\/YWzee6tz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052007316\/1425198085","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":21,"entities":{"hashtags":[{"text":"\u897f\u91ce\u4e03\u702c","indices":[17,22]},{"text":"\u4e43\u6728\u574246","indices":[23,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722366728540161,"id_str":"663722366728540161","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","url":"https:\/\/t.co\/a6wuIMkI0F","display_url":"pic.twitter.com\/a6wuIMkI0F","expanded_url":"http:\/\/twitter.com\/N_Nanase_St\/status\/663722366913150976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"large":{"w":499,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":676,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722366728540161,"id_str":"663722366728540161","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","url":"https:\/\/t.co\/a6wuIMkI0F","display_url":"pic.twitter.com\/a6wuIMkI0F","expanded_url":"http:\/\/twitter.com\/N_Nanase_St\/status\/663722366913150976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"large":{"w":499,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":676,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u897f\u91ce\u4e03\u702c","indices":[34,39]},{"text":"\u4e43\u6728\u574246","indices":[40,46]}],"urls":[],"user_mentions":[{"screen_name":"N_Nanase_St","name":"\u897f\u91ce\u4e03\u702c@\u4e43\u6728\u574246","id":3052007316,"id_str":"3052007316","indices":[3,15]}],"symbols":[],"media":[{"id":663722366728540161,"id_str":"663722366728540161","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","url":"https:\/\/t.co\/a6wuIMkI0F","display_url":"pic.twitter.com\/a6wuIMkI0F","expanded_url":"http:\/\/twitter.com\/N_Nanase_St\/status\/663722366913150976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"large":{"w":499,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":676,"resize":"fit"}},"source_status_id":663722366913150976,"source_status_id_str":"663722366913150976","source_user_id":3052007316,"source_user_id_str":"3052007316"}]},"extended_entities":{"media":[{"id":663722366728540161,"id_str":"663722366728540161","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-dpWEAE7lcX.jpg","url":"https:\/\/t.co\/a6wuIMkI0F","display_url":"pic.twitter.com\/a6wuIMkI0F","expanded_url":"http:\/\/twitter.com\/N_Nanase_St\/status\/663722366913150976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"large":{"w":499,"h":676,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":676,"resize":"fit"}},"source_status_id":663722366913150976,"source_status_id_str":"663722366913150976","source_user_id":3052007316,"source_user_id_str":"3052007316"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080017666"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861552640,"id_str":"663727816861552640","text":"@akhyoung sedih bgt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726445508689920,"in_reply_to_status_id_str":"663726445508689920","in_reply_to_user_id":594436091,"in_reply_to_user_id_str":"594436091","in_reply_to_screen_name":"akhyoung","user":{"id":2940417038,"id_str":"2940417038","name":"Bean.","screen_name":"hrongbin","location":"ffu","url":null,"description":"VIXX VISUAL, \uc774\ud64d\ube48. Akhyoung\u26d4","protected":false,"verified":false,"followers_count":346,"friends_count":232,"listed_count":1,"favourites_count":106,"statuses_count":10513,"created_at":"Tue Dec 23 07:37:38 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640216621928198145\/qgmrYZBQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640216621928198145\/qgmrYZBQ.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723053151424512\/WhtAvTsI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723053151424512\/WhtAvTsI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2940417038\/1446895090","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akhyoung","name":"\u3164","id":594436091,"id_str":"594436091","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080017663"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816874336256,"id_str":"663727816874336256","text":".\n.\n\u0639\u0646\u062f\u0645\u0627 \u062a\u0638\u0646 \u0628\u0623\u0646 \u0628\u0639\u062f \u0627\u0644\u0634\u0642\u0627\u0621 \u0633\u0639\u0627\u062f\u0647\n\u0648\u0628\u0639\u062f \u062f\u0645\u0648\u0639\u0643 \u0625\u0628\u062a\u0633\u0627\u0645\u0647 - \u0641\u0642\u062f \u0623\u062f\u064a\u062a \u0623\u0645\u0631\u0627\u064b \n\u0639\u0638\u064a\u0645\u0627\u064b \u064a\u0633\u0645\u0649 \u062d\u0633\u0646 \u0627\u0644\u0638\u0646 \u0628\u0627\u0644\u0644\u0647 .\n \n\u0645\u0633\u0627\u0621 \u0627\u0644\u062e\u064a\u0631 \ud83c\udf39.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1075525662,"id_str":"1075525662","name":"\u0646\u0627\u062f\u0631 \u0627\u0644\u0632\u0628\u0646\u064a","screen_name":"DrNaderAlzabni","location":null,"url":null,"description":"\u0648 \u0645\u0627 \u0645\u0646 \u0643\u0627\u062a\u0628\u064d \u0625\u0644\u0627 \u0633\u064a\u0641\u0646\u0649 \u0648\u064a\u0628\u0642\u064a \u0627\u0644\u062f\u0647\u0631 \u0645\u0627\u0643\u062a\u0628\u062a \u064a\u0640\u062f\u0627\u0647 \u0641\u0644\u0627 \u062a\u0643\u062a\u0628 \u0628\u0643\u0641\u0643 \u063a\u064a\u0631 \u0634\u0626\u064d ~ \u064a\u0633\u0631\u0643 \u0641\u0649 \u0627\u0644\u0642\u064a\u0627\u0645\u0647 \u0623\u0646 \u062a\u0640\u0631\u0627\u0647","protected":false,"verified":false,"followers_count":489,"friends_count":323,"listed_count":0,"favourites_count":467,"statuses_count":3543,"created_at":"Thu Jan 10 03:15:39 +0000 2013","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649772485831970817\/L1tOnAts_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649772485831970817\/L1tOnAts_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1075525662\/1443567184","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080017666"} +{"delete":{"status":{"id":539074746160529408,"id_str":"539074746160529408","user_id":410910452,"user_id_str":"410910452"},"timestamp_ms":"1447080017944"}} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816857493504,"id_str":"663727816857493504","text":"Eval\u00faan salud de 80 presos de Hig\u00fcey despu\u00e9s de morir tres de tuberculosis https:\/\/t.co\/awp0WC0Nkf https:\/\/t.co\/78cpzzF9vy","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351743025,"id_str":"351743025","name":"Manuel Paulino","screen_name":"manimedia","location":"Rep.Dom.\/EE.UU","url":"http:\/\/www.fulldeto.net","description":"Filmmaker,Video\/Film Producer, Marketing, Publicidad y mas. Contactos: 829-856-4492 (R.D) \/ 267-639-4117 (USA)","protected":false,"verified":false,"followers_count":427,"friends_count":566,"listed_count":10,"favourites_count":11,"statuses_count":25910,"created_at":"Tue Aug 09 17:43:24 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477080666174025728\/VQW90LwZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477080666174025728\/VQW90LwZ_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/awp0WC0Nkf","expanded_url":"http:\/\/www.telenord.com.do\/index.php\/noticias\/nacionales\/54673-evaluan-salud-de-80-presos-de-higueey-despues-de-morir-tres-de-tuberculosis#.VkCwMwgGr8w.twitter","display_url":"telenord.com.do\/index.php\/noti\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663727813682462720,"id_str":"663727813682462720","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7hIXAAAyzCE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7hIXAAAyzCE.jpg","url":"https:\/\/t.co\/78cpzzF9vy","display_url":"pic.twitter.com\/78cpzzF9vy","expanded_url":"http:\/\/twitter.com\/manimedia\/status\/663727816857493504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":393,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":550,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727813682462720,"id_str":"663727813682462720","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7hIXAAAyzCE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7hIXAAAyzCE.jpg","url":"https:\/\/t.co\/78cpzzF9vy","display_url":"pic.twitter.com\/78cpzzF9vy","expanded_url":"http:\/\/twitter.com\/manimedia\/status\/663727816857493504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":550,"h":393,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":550,"h":393,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080017662"} +{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727816861700096,"id_str":"663727816861700096","text":"Stalker\ud83d\ude0f\u2764\ufe0f\ud83c\udf89 @TheRealLiont https:\/\/t.co\/ssUCDDpClo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2870858644,"id_str":"2870858644","name":"Timos Mia'lein\u2765","screen_name":"mialiont","location":"Joshi","url":null,"description":"Danke, dass es @TheRealLiont gibt!\u2764\ufe0f 13.09 auf der B\u00fchne\u2764\ufe0f #TeamLIONT \/\/ @linaliont \u2764\ufe0f","protected":false,"verified":false,"followers_count":845,"friends_count":69,"listed_count":3,"favourites_count":14249,"statuses_count":25115,"created_at":"Mon Nov 10 16:59:22 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661239043762556928\/LVKVBHoI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661239043762556928\/LVKVBHoI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2870858644\/1445279338","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheRealLiont","name":"LIONT","id":65639895,"id_str":"65639895","indices":[12,25]}],"symbols":[],"media":[{"id":663727810205376512,"id_str":"663727810205376512","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7ULW4AA6WVv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7ULW4AA6WVv.jpg","url":"https:\/\/t.co\/ssUCDDpClo","display_url":"pic.twitter.com\/ssUCDDpClo","expanded_url":"http:\/\/twitter.com\/mialiont\/status\/663727816861700096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"large":{"w":748,"h":796,"resize":"fit"},"medium":{"w":600,"h":637,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727810205376512,"id_str":"663727810205376512","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7ULW4AA6WVv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7ULW4AA6WVv.jpg","url":"https:\/\/t.co\/ssUCDDpClo","display_url":"pic.twitter.com\/ssUCDDpClo","expanded_url":"http:\/\/twitter.com\/mialiont\/status\/663727816861700096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"large":{"w":748,"h":796,"resize":"fit"},"medium":{"w":600,"h":637,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080017663"} +{"delete":{"status":{"id":663591413888786432,"id_str":"663591413888786432","user_id":1600796942,"user_id_str":"1600796942"},"timestamp_ms":"1447080018027"}} +{"delete":{"status":{"id":663674507232604161,"id_str":"663674507232604161","user_id":3268664520,"user_id_str":"3268664520"},"timestamp_ms":"1447080018127"}} +{"delete":{"status":{"id":663200311834640384,"id_str":"663200311834640384","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447080018136"}} +{"delete":{"status":{"id":663723274409414657,"id_str":"663723274409414657","user_id":3231613572,"user_id_str":"3231613572"},"timestamp_ms":"1447080018436"}} +{"delete":{"status":{"id":645406400718344193,"id_str":"645406400718344193","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080018600"}} +{"delete":{"status":{"id":645406799181451264,"id_str":"645406799181451264","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080018583"}} +{"delete":{"status":{"id":663724599805284352,"id_str":"663724599805284352","user_id":2914903134,"user_id_str":"2914903134"},"timestamp_ms":"1447080018633"}} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030891520,"id_str":"663727821030891520","text":"What's happeeninnnn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":906815988,"id_str":"906815988","name":"\u043a \u03c3 \u2113 \u2113 \u03b5 \u03b5 \u03b7 \u044f \u03b1 \u03b5","screen_name":"NelsonKolleen","location":null,"url":null,"description":"Life is short & the world is wide.","protected":false,"verified":false,"followers_count":227,"friends_count":182,"listed_count":1,"favourites_count":707,"statuses_count":5768,"created_at":"Fri Oct 26 21:34:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023699544\/beb6f3b5b3efcb630901683f0c0b0644.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023699544\/beb6f3b5b3efcb630901683f0c0b0644.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662744872223383552\/RLM2j8As_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662744872223383552\/RLM2j8As_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/906815988\/1446845667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018657"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064376321,"id_str":"663727821064376321","text":"RT @Dieguistas_: DO DZIE\u0141A #kartkinaswieta #kartkiswiateczne #kartkibozonarodzeniowe https:\/\/t.co\/KyDzQZefIB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452290823,"id_str":"452290823","name":"Karola","screen_name":"carolinehorano","location":"Poland","url":null,"description":"One Direction|Justin Bieber| 5SOS| The Vamps|Poland","protected":false,"verified":false,"followers_count":2945,"friends_count":2892,"listed_count":5,"favourites_count":1987,"statuses_count":23793,"created_at":"Sun Jan 01 17:23:42 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541300382882746368\/7fOrmvxz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541300382882746368\/7fOrmvxz.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624579908581199872\/J9T8b4JJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624579908581199872\/J9T8b4JJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452290823\/1436535274","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:35:26 +0000 2015","id":663620897207635969,"id_str":"663620897207635969","text":"DO DZIE\u0141A #kartkinaswieta #kartkiswiateczne #kartkibozonarodzeniowe https:\/\/t.co\/KyDzQZefIB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":957348774,"id_str":"957348774","name":"Joasia :)","screen_name":"Dieguistas_","location":"Poland","url":null,"description":null,"protected":false,"verified":false,"followers_count":275,"friends_count":594,"listed_count":5,"favourites_count":3370,"statuses_count":2363,"created_at":"Mon Nov 19 12:41:09 +0000 2012","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637243961107615746\/DLLgkVG6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637243961107615746\/DLLgkVG6.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660857446026448897\/ldWA8x2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660857446026448897\/ldWA8x2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957348774\/1440766113","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":2,"entities":{"hashtags":[{"text":"kartkinaswieta","indices":[10,25]},{"text":"kartkiswiateczne","indices":[26,43]},{"text":"kartkibozonarodzeniowe","indices":[45,68]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663620896075071490,"id_str":"663620896075071490","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","url":"https:\/\/t.co\/KyDzQZefIB","display_url":"pic.twitter.com\/KyDzQZefIB","expanded_url":"http:\/\/twitter.com\/Dieguistas_\/status\/663620897207635969\/photo\/1","type":"photo","sizes":{"large":{"w":898,"h":647,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":244,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663620896075071490,"id_str":"663620896075071490","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","url":"https:\/\/t.co\/KyDzQZefIB","display_url":"pic.twitter.com\/KyDzQZefIB","expanded_url":"http:\/\/twitter.com\/Dieguistas_\/status\/663620897207635969\/photo\/1","type":"photo","sizes":{"large":{"w":898,"h":647,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":244,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kartkinaswieta","indices":[27,42]},{"text":"kartkiswiateczne","indices":[43,60]},{"text":"kartkibozonarodzeniowe","indices":[62,85]}],"urls":[],"user_mentions":[{"screen_name":"Dieguistas_","name":"Joasia :)","id":957348774,"id_str":"957348774","indices":[3,15]}],"symbols":[],"media":[{"id":663620896075071490,"id_str":"663620896075071490","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","url":"https:\/\/t.co\/KyDzQZefIB","display_url":"pic.twitter.com\/KyDzQZefIB","expanded_url":"http:\/\/twitter.com\/Dieguistas_\/status\/663620897207635969\/photo\/1","type":"photo","sizes":{"large":{"w":898,"h":647,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":244,"resize":"fit"}},"source_status_id":663620897207635969,"source_status_id_str":"663620897207635969","source_user_id":957348774,"source_user_id_str":"957348774"}]},"extended_entities":{"media":[{"id":663620896075071490,"id_str":"663620896075071490","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnsGAUwAIY42X.png","url":"https:\/\/t.co\/KyDzQZefIB","display_url":"pic.twitter.com\/KyDzQZefIB","expanded_url":"http:\/\/twitter.com\/Dieguistas_\/status\/663620897207635969\/photo\/1","type":"photo","sizes":{"large":{"w":898,"h":647,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":244,"resize":"fit"}},"source_status_id":663620897207635969,"source_status_id_str":"663620897207635969","source_user_id":957348774,"source_user_id_str":"957348774"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047644160,"id_str":"663727821047644160","text":"ainda \u00e9 segunda mas ja quero Souma","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132320071,"id_str":"132320071","name":"Jaogetsu","screen_name":"JoaoZangetsu","location":null,"url":null,"description":"Tweets about Anime and sometimes Manga, not much about criticism and politics, VN enthusiast, Nasuverse addict, failed artist, play games, tweets in PT and ENG","protected":false,"verified":false,"followers_count":361,"friends_count":489,"listed_count":3,"favourites_count":975,"statuses_count":50506,"created_at":"Mon Apr 12 22:46:27 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549482394080641024\/cKI-vNkF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549482394080641024\/cKI-vNkF.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661153139404488704\/Fr_vuCQz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661153139404488704\/Fr_vuCQz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132320071\/1419359147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039226880,"id_str":"663727821039226880","text":"RT @9ja_olofofo: FROM MY BLOG - MUSIC: Meaku feat. Niniola \u2013 Identical Heaven https:\/\/t.co\/djFo2ubc6g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":797689748,"id_str":"797689748","name":"Niniola Apata","screen_name":"OfficialNiniola","location":"Naija.IG @OfficialNiniola","url":"http:\/\/www.officialniniola.com","description":"Singer\/Performer & Songwriter from Nigeria..for bookings and inquiry juliet +2348137768557\/+17373335281 naijareview@gmail.com. Get SOKE http:\/\/apple.co\/1HWuSUO","protected":false,"verified":false,"followers_count":11195,"friends_count":5082,"listed_count":47,"favourites_count":1485,"statuses_count":14396,"created_at":"Sun Sep 02 06:52:22 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618520507323801600\/3POuLnCe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618520507323801600\/3POuLnCe.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660233652555517952\/yds8wf4J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660233652555517952\/yds8wf4J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/797689748\/1434436685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:51:57 +0000 2015","id":663670356230565888,"id_str":"663670356230565888","text":"FROM MY BLOG - MUSIC: Meaku feat. Niniola \u2013 Identical Heaven https:\/\/t.co\/djFo2ubc6g","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":574551505,"id_str":"574551505","name":"9J\u0394 OLOFOFO","screen_name":"9ja_olofofo","location":"Nigeria, West Africa","url":"http:\/\/9jaolofofo.ng","description":"Freelance Publicist, Media Entrepreneur & Blogger \n\nEnquiries - sam@9jaolofofo.ng","protected":false,"verified":false,"followers_count":44886,"friends_count":1491,"listed_count":135,"favourites_count":61,"statuses_count":66020,"created_at":"Tue May 08 15:10:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518379222889291776\/pwsTUG0Z.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518379222889291776\/pwsTUG0Z.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641311176887021568\/AszzXPis_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641311176887021568\/AszzXPis_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574551505\/1435093121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/djFo2ubc6g","expanded_url":"http:\/\/bit.ly\/1HpKypH","display_url":"bit.ly\/1HpKypH","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/djFo2ubc6g","expanded_url":"http:\/\/bit.ly\/1HpKypH","display_url":"bit.ly\/1HpKypH","indices":[78,101]}],"user_mentions":[{"screen_name":"9ja_olofofo","name":"9J\u0394 OLOFOFO","id":574551505,"id_str":"574551505","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039271936,"id_str":"663727821039271936","text":"RT @thecrazybxtch: I treat the pics in my phone the same way I treat my clothes. I have no need for 98% of them but theres no way in hell I\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2321550834,"id_str":"2321550834","name":"Elishab Hedman","screen_name":"ElishabHedman","location":null,"url":null,"description":"\u2655\u265a","protected":false,"verified":false,"followers_count":96,"friends_count":156,"listed_count":0,"favourites_count":447,"statuses_count":1110,"created_at":"Sat Feb 01 00:50:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662306429814964224\/_rvtM0Wr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662306429814964224\/_rvtM0Wr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2321550834\/1446741271","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:05 +0000 2015","id":663727012247445504,"id_str":"663727012247445504","text":"I treat the pics in my phone the same way I treat my clothes. I have no need for 98% of them but theres no way in hell Im gettin rid of them","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1526210150,"id_str":"1526210150","name":"\u1d04\u0280\u1d00\u1d22\u028f \u0299x\u1d1b\u1d04\u029c","screen_name":"thecrazybxtch","location":"\u1d04\u1d00\u0274\u1d00\u1d05\u026a\u1d00\u0274 \u1d07\u029c ","url":null,"description":"\u1d00\u0274\u1d0f\u0274 \u272d s\u1d1b\u0280\u1d0f\u0274\u0262 \u0299\u1d07\u029f\u026a\u1d07\u1d20\u1d07\u0280 \u026a\u0274 \u1d07\u1d20\u1d07\u0280\u028f \u0493\u1d07\u1d0d\u1d00\u029f\u1d07 \u0493\u026a\u0274\u1d05\u026a\u0274\u0262 \u029c\u1d07\u0280 \u026a\u0274\u0274\u1d07\u0280 \u01eb\u1d1c\u1d07\u1d07\u0274 & \u0280\u1d1c\u0274\u0274\u026a\u0274\u0262 \u1d21\u026a\u1d1b\u029c \u1d1b\u029c\u1d00\u1d1b \u0299x\u1d1b\u1d04\u029c","protected":false,"verified":false,"followers_count":103123,"friends_count":60,"listed_count":239,"favourites_count":12957,"statuses_count":35698,"created_at":"Mon Jun 17 23:47:05 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000001388376\/1dbec11a85642d08d5911252d895cfe6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000001388376\/1dbec11a85642d08d5911252d895cfe6.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663515919629594624\/mJHMndL3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663515919629594624\/mJHMndL3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1526210150\/1446517998","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thecrazybxtch","name":"\u1d04\u0280\u1d00\u1d22\u028f \u0299x\u1d1b\u1d04\u029c","id":1526210150,"id_str":"1526210150","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821055987712,"id_str":"663727821055987712","text":"RT @sgpolandcom: Justin powiedzia\u0142 u Ellen, \u017ce \"Mark My Words\", \"Sorry\" i \"What Do You Mean\" s\u0105 o Selenie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2753672115,"id_str":"2753672115","name":"\u2728","screen_name":"biebermisio","location":null,"url":null,"description":"Nie biednieje cz\u0142owiek, gdy si\u0119 uprzejmie odzywa.","protected":false,"verified":false,"followers_count":470,"friends_count":642,"listed_count":2,"favourites_count":1287,"statuses_count":9711,"created_at":"Thu Aug 28 21:29:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"474747","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662730825419526145\/5UEAErTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662730825419526145\/5UEAErTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2753672115\/1446842315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:50:26 +0000 2015","id":663654870965178368,"id_str":"663654870965178368","text":"Justin powiedzia\u0142 u Ellen, \u017ce \"Mark My Words\", \"Sorry\" i \"What Do You Mean\" s\u0105 o Selenie","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3940564834,"id_str":"3940564834","name":"Selena Gomez PL","screen_name":"sgpolandcom","location":null,"url":null,"description":"Konto po\u015bwi\u0119cone cudownej i utalentowanej piosenkarce i aktorce Selenie Gomez b\u0119dziecie mogli znale\u017ac tu fakty jak i newsy. Wcze\u015bniej @SGUpdatesPolish","protected":false,"verified":false,"followers_count":204,"friends_count":119,"listed_count":0,"favourites_count":112,"statuses_count":382,"created_at":"Mon Oct 12 21:16:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660101754579763200\/2sxXdIKw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660101754579763200\/2sxXdIKw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3940564834\/1446215483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sgpolandcom","name":"Selena Gomez PL","id":3940564834,"id_str":"3940564834","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064376322,"id_str":"663727821064376322","text":"Spaziale! https:\/\/t.co\/yckyMOgaeA","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399378969,"id_str":"399378969","name":"Matteo Marziali","screen_name":"MatteoMarziali1","location":"bergamo","url":null,"description":"\u00ab Non dubitate che un piccolo gruppo di cittadini coscienti e risoluti non possa cambiare il mondo. In fondo \u00e8 cosi che \u00e8 sempre andata \u00bb\r\n(Margaret Mead)","protected":false,"verified":false,"followers_count":73,"friends_count":109,"listed_count":2,"favourites_count":2,"statuses_count":6826,"created_at":"Thu Oct 27 12:16:02 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2996761923\/93189e4d9045f5f7f47f8bc415e8336e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2996761923\/93189e4d9045f5f7f47f8bc415e8336e_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yckyMOgaeA","expanded_url":"http:\/\/fb.me\/4f9swp3dy","display_url":"fb.me\/4f9swp3dy","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043429376,"id_str":"663727821043429376","text":"RT @Medelinked: 4 consumer groups most interested in #digitalhealth tools & how $10bn could be saved in US #primarycare annually https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38931262,"id_str":"38931262","name":"Gerry Wieder RN","screen_name":"GerryWieder","location":"Everywhere","url":"http:\/\/linkedin.com\/in\/gerrywieder","description":"Seattle-area Realtor\u00ae, Keller Williams Puget Sound. Canadian expat c broad interests and a funny bone. @KWRI @JanWieder's #1 \u2764\ufe0f","protected":false,"verified":false,"followers_count":23550,"friends_count":16055,"listed_count":2812,"favourites_count":18562,"statuses_count":287091,"created_at":"Sat May 09 21:26:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000100557686\/dd21860747cc78b73e0a11f47b95e7c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000100557686\/dd21860747cc78b73e0a11f47b95e7c4.jpeg","profile_background_tile":true,"profile_link_color":"753D3D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8A8787","profile_text_color":"050000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662343460574388224\/kXexkuZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662343460574388224\/kXexkuZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38931262\/1367410229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:14 +0000 2015","id":663715222138585089,"id_str":"663715222138585089","text":"4 consumer groups most interested in #digitalhealth tools & how $10bn could be saved in US #primarycare annually https:\/\/t.co\/8ND82YHU4z","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180448996,"id_str":"2180448996","name":"Medelinked","screen_name":"Medelinked","location":"Oxfordshire, UK","url":"http:\/\/www.medelinked.com","description":"Enabling medical professionals, health payers, pharma & consumer healthcare companies to create markets, increase engagement, lower costs & improve outcomes","protected":false,"verified":false,"followers_count":602,"friends_count":1669,"listed_count":156,"favourites_count":279,"statuses_count":1547,"created_at":"Thu Nov 07 16:45:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524241097468293120\/waSqI3vO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524241097468293120\/waSqI3vO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2180448996\/1413823447","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"digitalhealth","indices":[37,51]},{"text":"primarycare","indices":[95,107]}],"urls":[{"url":"https:\/\/t.co\/8ND82YHU4z","expanded_url":"http:\/\/bit.ly\/1MjJws3","display_url":"bit.ly\/1MjJws3","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"digitalhealth","indices":[53,67]},{"text":"primarycare","indices":[111,123]}],"urls":[{"url":"https:\/\/t.co\/8ND82YHU4z","expanded_url":"http:\/\/bit.ly\/1MjJws3","display_url":"bit.ly\/1MjJws3","indices":[143,144]}],"user_mentions":[{"screen_name":"Medelinked","name":"Medelinked","id":2180448996,"id_str":"2180448996","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047668736,"id_str":"663727821047668736","text":"RT @juliacristant: @jodixastarita #AcapellaChallenge https:\/\/t.co\/CDRkJAyyKg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1383233786,"id_str":"1383233786","name":"jenna","screen_name":"Jennamacchione","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":313,"friends_count":281,"listed_count":1,"favourites_count":2358,"statuses_count":3580,"created_at":"Sat Apr 27 01:04:26 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660694175088775169\/3tHnhbGJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660694175088775169\/3tHnhbGJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1383233786\/1442981806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 20:19:34 +0000 2015","id":662001258547556352,"id_str":"662001258547556352","text":"@jodixastarita #AcapellaChallenge https:\/\/t.co\/CDRkJAyyKg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1451291786,"in_reply_to_user_id_str":"1451291786","in_reply_to_screen_name":"jodixastarita","user":{"id":857143872,"id_str":"857143872","name":"ju","screen_name":"juliacristant","location":null,"url":null,"description":"instagram : @jucristant","protected":false,"verified":false,"followers_count":511,"friends_count":410,"listed_count":0,"favourites_count":2869,"statuses_count":1115,"created_at":"Mon Oct 01 22:58:35 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663553446251884544\/IHlfBh0V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663553446251884544\/IHlfBh0V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/857143872\/1447038497","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"entities":{"hashtags":[{"text":"AcapellaChallenge","indices":[15,33]}],"urls":[],"user_mentions":[{"screen_name":"jodixastarita","name":"o'brien","id":1451291786,"id_str":"1451291786","indices":[0,14]}],"symbols":[],"media":[{"id":662001122224291840,"id_str":"662001122224291840","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","url":"https:\/\/t.co\/CDRkJAyyKg","display_url":"pic.twitter.com\/CDRkJAyyKg","expanded_url":"http:\/\/twitter.com\/juliacristant\/status\/662001258547556352\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662001122224291840,"id_str":"662001122224291840","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","url":"https:\/\/t.co\/CDRkJAyyKg","display_url":"pic.twitter.com\/CDRkJAyyKg","expanded_url":"http:\/\/twitter.com\/juliacristant\/status\/662001258547556352\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":14967,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/240x240\/vqJk9xGEod9Ve062.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/720x720\/JPXORq1r-9nMWKSR.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/pl\/WJFBK6_5W_KjCrxs.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/480x480\/7w-w9PvDpMgmkhQy.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/pl\/WJFBK6_5W_KjCrxs.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/480x480\/7w-w9PvDpMgmkhQy.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AcapellaChallenge","indices":[34,52]}],"urls":[],"user_mentions":[{"screen_name":"juliacristant","name":"ju","id":857143872,"id_str":"857143872","indices":[3,17]},{"screen_name":"jodixastarita","name":"o'brien","id":1451291786,"id_str":"1451291786","indices":[19,33]}],"symbols":[],"media":[{"id":662001122224291840,"id_str":"662001122224291840","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","url":"https:\/\/t.co\/CDRkJAyyKg","display_url":"pic.twitter.com\/CDRkJAyyKg","expanded_url":"http:\/\/twitter.com\/juliacristant\/status\/662001258547556352\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662001258547556352,"source_status_id_str":"662001258547556352","source_user_id":857143872,"source_user_id_str":"857143872"}]},"extended_entities":{"media":[{"id":662001122224291840,"id_str":"662001122224291840","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662001122224291840\/pu\/img\/rYqtlW0AYIYBqVZ5.jpg","url":"https:\/\/t.co\/CDRkJAyyKg","display_url":"pic.twitter.com\/CDRkJAyyKg","expanded_url":"http:\/\/twitter.com\/juliacristant\/status\/662001258547556352\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662001258547556352,"source_status_id_str":"662001258547556352","source_user_id":857143872,"source_user_id_str":"857143872","video_info":{"aspect_ratio":[1,1],"duration_millis":14967,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/240x240\/vqJk9xGEod9Ve062.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/720x720\/JPXORq1r-9nMWKSR.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/pl\/WJFBK6_5W_KjCrxs.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/480x480\/7w-w9PvDpMgmkhQy.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/pl\/WJFBK6_5W_KjCrxs.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662001122224291840\/pu\/vid\/480x480\/7w-w9PvDpMgmkhQy.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068570624,"id_str":"663727821068570624","text":"RT @cosmebadalona: Aquest mat\u00ed s'ha consumat el gran disbarat a #Catalunya. Mala pe\u00e7a tenim al taller els catalans si no obrim els ulls al\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355453703,"id_str":"355453703","name":"Jos\u00e9 Manuel Mart\u00edn","screen_name":"martn_jos","location":null,"url":null,"description":"Es que es un no parar....","protected":false,"verified":false,"followers_count":675,"friends_count":1416,"listed_count":8,"favourites_count":4509,"statuses_count":30954,"created_at":"Mon Aug 15 11:26:39 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605445062479224835\/K2nIb1Na_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605445062479224835\/K2nIb1Na_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:14 +0000 2015","id":663727553102938113,"id_str":"663727553102938113","text":"Aquest mat\u00ed s'ha consumat el gran disbarat a #Catalunya. Mala pe\u00e7a tenim al taller els catalans si no obrim els ulls al #federalisme","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265535989,"id_str":"265535989","name":"Cosme Modolell","screen_name":"cosmebadalona","location":"Badalona","url":"http:\/\/cosmem.blogspot.com","description":"Un inquieto que intenta encontrar respuestas","protected":false,"verified":false,"followers_count":503,"friends_count":435,"listed_count":18,"favourites_count":83,"statuses_count":8546,"created_at":"Sun Mar 13 18:27:26 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1271317192\/Enric_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1271317192\/Enric_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265535989\/1400356277","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"59d08c41f3229755","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/59d08c41f3229755.json","place_type":"city","name":"Badalona","full_name":"Badalona, Catalu\u00f1a","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[2.211092,41.425940],[2.211092,41.492681],[2.270008,41.492681],[2.270008,41.425940]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Catalunya","indices":[45,55]},{"text":"federalisme","indices":[121,133]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Catalunya","indices":[64,74]},{"text":"federalisme","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"cosmebadalona","name":"Cosme Modolell","id":265535989,"id_str":"265535989","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018666"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821035032576,"id_str":"663727821035032576","text":"RT @KarenPardinii: Que ganas de dormir estas dos semanas y despertarme con todas las materias aprobadas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1572005317,"id_str":"1572005317","name":"Maxim\u00edlian","screen_name":"Maxileyes_RP","location":"resistencia-Chaco","url":"https:\/\/www.facebook.com\/maxi.l.carp","description":"RIVER POR ENCIMA DE TODOS! 05-08-15","protected":false,"verified":false,"followers_count":1001,"friends_count":801,"listed_count":1,"favourites_count":781,"statuses_count":7486,"created_at":"Sat Jul 06 04:42:02 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447298745823006720\/9QhbCFQr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447298745823006720\/9QhbCFQr.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637488761367064577\/LcCZ_vKC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637488761367064577\/LcCZ_vKC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1572005317\/1420957552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:01 +0000 2015","id":663714664359067648,"id_str":"663714664359067648","text":"Que ganas de dormir estas dos semanas y despertarme con todas las materias aprobadas","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296564172,"id_str":"296564172","name":"Karen","screen_name":"KarenPardinii","location":null,"url":"http:\/\/www.facebook.com\/karen.pardini","description":"Te amamos Pardi, siempre estamos para voss. Lrz || Para siempre, te adoro. V.M","protected":false,"verified":false,"followers_count":797,"friends_count":635,"listed_count":0,"favourites_count":1594,"statuses_count":14057,"created_at":"Wed May 11 00:42:45 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650816440627535872\/lhrNFhnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650816440627535872\/lhrNFhnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296564172\/1446693867","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarenPardinii","name":"Karen","id":296564172,"id_str":"296564172","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034946560,"id_str":"663727821034946560","text":"\u5e8a\u306b\u5c31\u304d\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1276679419,"id_str":"1276679419","name":"\u307f\u304d\u3066\u3043","screen_name":"mi_1220_k","location":"\u540d\u53d6\u21d4\u571f\u6a0b\u21d4\u53e4\u30ab\u30d5\u30a7\u30a4\u30f3\u738b\u56fd","url":null,"description":"1.20\u30ea\u30a2\u30eb\u5352\u696d\u30b2\u30fc\u30e0\u3002\u5143\u30bb\u30c4\u30eb\u30e1\u30f3\u30c8\u4f1a\u3002\u30ab\u30d5\u30a7\u3068\u65e5\u672c\u9152bar\u5de1\u308a\u304c\u597d\u304d\u3002\u30ea\u30e9\u30c3\u30af\u30de\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u65e5\u671detc...\n\u3069\u3046\u305e\u3088\u3057\u306a\u306b(^q^)","protected":false,"verified":false,"followers_count":148,"friends_count":140,"listed_count":3,"favourites_count":2069,"statuses_count":24214,"created_at":"Mon Mar 18 03:30:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631861676074139648\/mxJ1Iw8k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631861676074139648\/mxJ1Iw8k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276679419\/1446404945","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047525377,"id_str":"663727821047525377","text":"@___________Liqx \n\n \u3164 \u3000\u3000\u3000\u3000\u3000\u3000\u3000\u6012\u30f3\u306a\u30c3\u3066 \uff0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727536539496449,"in_reply_to_status_id_str":"663727536539496449","in_reply_to_user_id":4163520074,"in_reply_to_user_id_str":"4163520074","in_reply_to_screen_name":"___________Liqx","user":{"id":3221102844,"id_str":"3221102844","name":"\u25b2\u25bc\u3000\u3000\u3000\u3000\uff3f\uff3f\uff3f\uff3f\u3000\u3000\u3000\u3000\u745b\u3000\u3000\u3000\u25bd\u25b3","screen_name":"nmnmo6l7","location":null,"url":null,"description":"\u300c \u3164 \u3164\u6ce3\u304d\u305f\u3044\u306e\u306b \u3164 \u3164\u6ce3\u3051\u306c\u306a\u3089 \u3164 \u3164\u7b11\u3048\u3070\u3044\u3044 \u3164 \u3164\u300d","protected":false,"verified":false,"followers_count":13,"friends_count":13,"listed_count":0,"favourites_count":23,"statuses_count":134,"created_at":"Wed May 20 07:33:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663268178319925248\/jFw_cGcr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663268178319925248\/jFw_cGcr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221102844\/1446953396","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___________Liqx","name":"\u25e2\u25e4\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uff3f\uffe3\uffe3\uffe3 \u601c","id":4163520074,"id_str":"4163520074","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068615680,"id_str":"663727821068615680","text":"RT @Airbus: Airlines in the ME will need 2460 new aircraft over the next 20 years, incl. 1570 widebodies like the #A380. #DAS15 https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335260796,"id_str":"335260796","name":"Engine Alliance","screen_name":"enginealliance","location":null,"url":"http:\/\/www.enginealliance.com\/","description":"Built upon the best from both GE Aviation and Pratt & Whitney, our GP7200 is the quietest, most fuel-efficient, most reliable engine for the Airbus A380. #EA380","protected":false,"verified":false,"followers_count":2900,"friends_count":395,"listed_count":73,"favourites_count":124,"statuses_count":2144,"created_at":"Thu Jul 14 12:10:20 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459366594284507136\/WUA5gAGI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459366594284507136\/WUA5gAGI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335260796\/1431385736","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:54:39 +0000 2015","id":663610637080203264,"id_str":"663610637080203264","text":"Airlines in the ME will need 2460 new aircraft over the next 20 years, incl. 1570 widebodies like the #A380. #DAS15 https:\/\/t.co\/2xsNmYbMEv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15425377,"id_str":"15425377","name":"Airbus","screen_name":"Airbus","location":"Global","url":"http:\/\/www.airbus.com","description":"A global team designing, manufacturing and supporting the world's leading aircraft... with passengers at heart and airlines in mind.","protected":false,"verified":true,"followers_count":341142,"friends_count":972,"listed_count":3152,"favourites_count":969,"statuses_count":6709,"created_at":"Mon Jul 14 11:24:28 +0000 2008","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"98AFC7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161274668\/r_B2RVZx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161274668\/r_B2RVZx.jpeg","profile_background_tile":false,"profile_link_color":"5F6C6E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"999E9A","profile_text_color":"76827E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592602401137422336\/qB5FudgU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592602401137422336\/qB5FudgU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15425377\/1446925525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":75,"entities":{"hashtags":[{"text":"A380","indices":[102,107]},{"text":"DAS15","indices":[109,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663610634618183680,"id_str":"663610634618183680","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","url":"https:\/\/t.co\/2xsNmYbMEv","display_url":"pic.twitter.com\/2xsNmYbMEv","expanded_url":"http:\/\/twitter.com\/Airbus\/status\/663610637080203264\/photo\/1","type":"photo","sizes":{"large":{"w":902,"h":510,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663610634618183680,"id_str":"663610634618183680","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","url":"https:\/\/t.co\/2xsNmYbMEv","display_url":"pic.twitter.com\/2xsNmYbMEv","expanded_url":"http:\/\/twitter.com\/Airbus\/status\/663610637080203264\/photo\/1","type":"photo","sizes":{"large":{"w":902,"h":510,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"A380","indices":[114,119]},{"text":"DAS15","indices":[121,127]}],"urls":[],"user_mentions":[{"screen_name":"Airbus","name":"Airbus","id":15425377,"id_str":"15425377","indices":[3,10]}],"symbols":[],"media":[{"id":663610634618183680,"id_str":"663610634618183680","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","url":"https:\/\/t.co\/2xsNmYbMEv","display_url":"pic.twitter.com\/2xsNmYbMEv","expanded_url":"http:\/\/twitter.com\/Airbus\/status\/663610637080203264\/photo\/1","type":"photo","sizes":{"large":{"w":902,"h":510,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}},"source_status_id":663610637080203264,"source_status_id_str":"663610637080203264","source_user_id":15425377,"source_user_id_str":"15425377"}]},"extended_entities":{"media":[{"id":663610634618183680,"id_str":"663610634618183680","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWeWzGWoAAkMAD.png","url":"https:\/\/t.co\/2xsNmYbMEv","display_url":"pic.twitter.com\/2xsNmYbMEv","expanded_url":"http:\/\/twitter.com\/Airbus\/status\/663610637080203264\/photo\/1","type":"photo","sizes":{"large":{"w":902,"h":510,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}},"source_status_id":663610637080203264,"source_status_id_str":"663610637080203264","source_user_id":15425377,"source_user_id_str":"15425377"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018666"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043294208,"id_str":"663727821043294208","text":"\u3051\u305d\u306a\u3093\u3070\u30fc\u305a\uff1f\u306a\u3042\u306b\u305d\u308c\u3000\u5916\u4eba\u3055\u3093\uff1f\u6b4c\uff1f","source":"\u003ca href=\"http:\/\/kson.jp\/rurutop.jpg\" rel=\"nofollow\"\u003emeyu\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103879246,"id_str":"103879246","name":"\u30e1\u30e6=\u30c4\u30a1\u30e1\u30ec\u30f3\u30c8","screen_name":"meyu_","location":"\u5730\u4e0b\u5ba4","url":"http:\/\/twitter.com\/kso_","description":"\u81ea\u79f0\u7121\u5bb3\u306a\u5922\u306e\u5996\u7cbe\u306ebot\u3002\u805e\u304b\u308c\u3066\u3082\u306a\u3044\u4e8b\u3092\u545f\u3044\u305f\u308a\u5618\u5410\u3044\u305f\u308a\u3059\u308b\u3002\u305f\u307e\u306b18\u7981\u3002\u3081\u3086\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u3068\u3044\u304b\u304c\u308f\u3057\u3044\u5642\u8a71\u306b\u5dfb\u304d\u8fbc\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u3044\u308d\u3044\u308d\u5272\u3068\u9069\u5f53\u3002\u5996\u7cbe\u3055\u3093\u3060\u3082\u3093\u306d\u3002\u3081\u3086\u304b\u3089\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u89e3\u9664\u3055\u308c\u305f\u3044\u6642\u306f\u30d6\u30ed\u30c3\u30af\u306b\u3066\u3002\u3000\u8a3a\u65ad\u2192http:\/\/shindanmaker.com\/10946","protected":false,"verified":false,"followers_count":1553,"friends_count":1302,"listed_count":81,"favourites_count":0,"statuses_count":428745,"created_at":"Mon Jan 11 15:12:22 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/65862208\/meyubg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/65862208\/meyubg.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1902310127\/animeyu013_reasonably_small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1902310127\/animeyu013_reasonably_small_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039079425,"id_str":"663727821039079425","text":"RT @evasrirahayu: Hasil speed test handphone @HisenseID Hisense Pureshot Plus @smartfrenworld di Bandung #GoForIt https:\/\/t.co\/nxV2AipfKX","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3837778694,"id_str":"3837778694","name":"IG: sf_community_","screen_name":"SF_Community_","location":"Nusantara-Indonesia","url":"https:\/\/www.facebook.com\/groups\/smart.telecom88\/","description":"ini adalah Komunitas Smartfren,yang Tujuan Untuk sebagai Jembatan Antara Komunitas dan Smartfren yang selalu Berbagi Informasi,Diskusi dan komunikasi.","protected":false,"verified":false,"followers_count":59,"friends_count":50,"listed_count":1,"favourites_count":29,"statuses_count":255,"created_at":"Fri Oct 09 15:40:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654705890067480576\/Xp4qOqtE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654705890067480576\/Xp4qOqtE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3837778694\/1444930024","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:20:02 +0000 2015","id":663707619308077056,"id_str":"663707619308077056","text":"Hasil speed test handphone @HisenseID Hisense Pureshot Plus @smartfrenworld di Bandung #GoForIt https:\/\/t.co\/nxV2AipfKX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99186406,"id_str":"99186406","name":"Eva Sri Rahayu","screen_name":"evasrirahayu","location":"Bandung","url":"https:\/\/tamanbermaindropdeadfred.wordpress.com","description":"Pribadi rumit dengan jutaan fantasi. Founder komunitas @TwiVers I Penulis Love Puzzle, Dunia Trisa, dan TwiRies","protected":false,"verified":false,"followers_count":2666,"friends_count":746,"listed_count":12,"favourites_count":306,"statuses_count":27821,"created_at":"Thu Dec 24 23:31:31 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116400752\/b7f10ce742caca9e95e4c7c50a0c87dc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116400752\/b7f10ce742caca9e95e4c7c50a0c87dc.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661912951993974784\/0mmTgeqO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661912951993974784\/0mmTgeqO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99186406\/1438705307","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"GoForIt","indices":[87,95]}],"urls":[],"user_mentions":[{"screen_name":"HisenseID","name":"Hisense Indonesia","id":2999105335,"id_str":"2999105335","indices":[27,37]},{"screen_name":"smartfrenworld","name":"IG: smartfrenworld","id":64924675,"id_str":"64924675","indices":[60,75]}],"symbols":[],"media":[{"id":663707583912390656,"id_str":"663707583912390656","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","url":"https:\/\/t.co\/nxV2AipfKX","display_url":"pic.twitter.com\/nxV2AipfKX","expanded_url":"http:\/\/twitter.com\/evasrirahayu\/status\/663707619308077056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1003,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707583912390656,"id_str":"663707583912390656","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","url":"https:\/\/t.co\/nxV2AipfKX","display_url":"pic.twitter.com\/nxV2AipfKX","expanded_url":"http:\/\/twitter.com\/evasrirahayu\/status\/663707619308077056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1003,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GoForIt","indices":[105,113]}],"urls":[],"user_mentions":[{"screen_name":"evasrirahayu","name":"Eva Sri Rahayu","id":99186406,"id_str":"99186406","indices":[3,16]},{"screen_name":"HisenseID","name":"Hisense Indonesia","id":2999105335,"id_str":"2999105335","indices":[45,55]},{"screen_name":"smartfrenworld","name":"IG: smartfrenworld","id":64924675,"id_str":"64924675","indices":[78,93]}],"symbols":[],"media":[{"id":663707583912390656,"id_str":"663707583912390656","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","url":"https:\/\/t.co\/nxV2AipfKX","display_url":"pic.twitter.com\/nxV2AipfKX","expanded_url":"http:\/\/twitter.com\/evasrirahayu\/status\/663707619308077056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1003,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}},"source_status_id":663707619308077056,"source_status_id_str":"663707619308077056","source_user_id":99186406,"source_user_id_str":"99186406"}]},"extended_entities":{"media":[{"id":663707583912390656,"id_str":"663707583912390656","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2h_XUsAA06Sk.jpg","url":"https:\/\/t.co\/nxV2AipfKX","display_url":"pic.twitter.com\/nxV2AipfKX","expanded_url":"http:\/\/twitter.com\/evasrirahayu\/status\/663707619308077056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1003,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}},"source_status_id":663707619308077056,"source_status_id_str":"663707619308077056","source_user_id":99186406,"source_user_id_str":"99186406"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034885121,"id_str":"663727821034885121","text":"@BravemanTaku \n\u3048\u3001\u305d\u3046\u3067\u3059\u304b(\uff65_\uff65;\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726980081188864,"in_reply_to_status_id_str":"663726980081188864","in_reply_to_user_id":492771915,"in_reply_to_user_id_str":"492771915","in_reply_to_screen_name":"BravemanTaku","user":{"id":869795430,"id_str":"869795430","name":"SHIHORI (\u9580\u7530\u3057\u307b\u308a)","screen_name":"dancesong_myway","location":null,"url":"http:\/\/orangerie-sky.jimdo.com\/","description":"\u30a2\u30b3\u30fc\u30b9\u30c6\u30a3\u30c3\u30af\u30e6\u30cb\u30c3\u30c8Orangerie Sky \u30dc\u30fc\u30ab\u30eb \u300a \u30aa\u30e9\u30f3\u30b8\u30e5\u30ea\u30fc\u30b9\u30ab\u30a4 @Orangerie_Sky \u300b\u301c\u301c\u301c\u82eb\u5c0f\u7267\u30c0\u30f3\u30b9\u8b1b\u5e2b\u3010 THE \u30ab\u30e9\u30aa\u30b1\u2605\u30d0\u30c8\u30eb \u51fa\u6f14\u301124\u6642\u9593\uff34\uff36\u82eb\u5c0f\u7267\u30ea\u30dd\u30fc\u30bf\u30fc\u3001\u306a\u3054\u307f\u306e\u6e6f\uff23\uff2d\u3001\u632f\u308a\u4ed8\u3051\u5e2b\u3001\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u3001\u30e9\u30b8\u30aa\u3001\u30d5\u30ea\u30fc\u30e2\u30c7\u30eb\u3001\u30bd\u30ed\u30b7\u30f3\u30ac\u30fc\u3001\u30e1\u30a4\u30af\u30a2\u30c3\u30d7\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8","protected":false,"verified":false,"followers_count":1383,"friends_count":869,"listed_count":9,"favourites_count":3348,"statuses_count":10445,"created_at":"Tue Oct 09 12:30:51 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633102989733957632\/VZtVKU2W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633102989733957632\/VZtVKU2W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/869795430\/1445182002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BravemanTaku","name":"\u6ff5","id":492771915,"id_str":"492771915","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034881026,"id_str":"663727821034881026","text":"\ub9e3\ub2d8 \uc705\uc2a4\ucef4\uc158 \ubc1b\uc73c\uc0c8\uc624","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112346974,"id_str":"3112346974","name":"\ub9c8\uac10\ubcd1\uc790 \ud038\ud2bc","screen_name":"quintain_kz","location":"IN ANGST HOUSE","url":"http:\/\/quintain.tistory.com","description":"\ucd5c\uad70 \ud0a4\uc988\ub9e5\ud0a4\uc988 & \ud1b0\ub9e5\u3163\uc0ac\ud37c \ub9ad\ub9c8\ud2f4\ub9ad & \ud654\ud074\ub77c\uc774\u3163FUB FREE!\u3163R-18 \ubc0f \uc575\uc2a4\ud2b8 \uc8fc\uc758\u3163\uc695\uc815\uacc4 @quintain_desire\u31631\ucc28\uacc4 @quintain_01\u3163\ud504\ub85c\ud544 https:\/\/t.co\/pIErDafqNg","protected":false,"verified":false,"followers_count":204,"friends_count":128,"listed_count":3,"favourites_count":7690,"statuses_count":29809,"created_at":"Wed Mar 25 00:55:43 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636910491512664069\/aQsS7J0d.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636910491512664069\/aQsS7J0d.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663349707020726274\/OYXrXrDz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663349707020726274\/OYXrXrDz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112346974\/1446220876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051854848,"id_str":"663727821051854848","text":"RT @isasaweis: \u00bfQui\u00e9n tiene los rollos de hojaldre preparados para hacer hoy palmeritas caseras en 5 minutos? ;))) https:\/\/t.co\/ZZ46rdvRaQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2268401529,"id_str":"2268401529","name":"Juana Maria Iglesias","screen_name":"juani2282","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":85,"listed_count":1,"favourites_count":362,"statuses_count":297,"created_at":"Wed Jan 08 08:08:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606402340946640896\/Cdb6OtIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606402340946640896\/Cdb6OtIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2268401529\/1390777022","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 12:30:01 +0000 2015","id":659346380918509569,"id_str":"659346380918509569","text":"\u00bfQui\u00e9n tiene los rollos de hojaldre preparados para hacer hoy palmeritas caseras en 5 minutos? ;))) https:\/\/t.co\/ZZ46rdvRaQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105157212,"id_str":"105157212","name":"Isabel Llano","screen_name":"isasaweis","location":null,"url":"http:\/\/www.isasaweis.com","description":"Ingeniera inform\u00e1tica, profe y #videoblogger a tiempo completo \u2728El mejor cosm\u00e9tico para la #belleza es la #felicidad\u2728 Instagram:@isasaweis | Facebook:\/isasaweis","protected":false,"verified":false,"followers_count":95837,"friends_count":507,"listed_count":1095,"favourites_count":320,"statuses_count":26965,"created_at":"Fri Jan 15 14:39:08 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/668226923\/3acc423aac96441ff5e04919f3b17428.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/668226923\/3acc423aac96441ff5e04919f3b17428.jpeg","profile_background_tile":false,"profile_link_color":"E3518B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7D4F7","profile_text_color":"663766","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576859004854382592\/ak9wofrG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576859004854382592\/ak9wofrG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105157212\/1416477396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":16,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZZ46rdvRaQ","expanded_url":"http:\/\/www.isasaweis.com\/palmeritas#.VjC_oKC0qZQ.twitter","display_url":"isasaweis.com\/palmeritas#.Vj\u2026","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZZ46rdvRaQ","expanded_url":"http:\/\/www.isasaweis.com\/palmeritas#.VjC_oKC0qZQ.twitter","display_url":"isasaweis.com\/palmeritas#.Vj\u2026","indices":[115,138]}],"user_mentions":[{"screen_name":"isasaweis","name":"Isabel Llano","id":105157212,"id_str":"105157212","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030748160,"id_str":"663727821030748160","text":"RT @TattyHassan: I like staring at pretty girls. WHY ARE YOU SO PURDYYYY.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":933836203,"id_str":"933836203","name":"\u2013","screen_name":"__nabiila","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":731,"friends_count":393,"listed_count":0,"favourites_count":306,"statuses_count":20292,"created_at":"Thu Nov 08 06:44:21 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E8C81","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461457612098125824\/k6R-B1WM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461457612098125824\/k6R-B1WM.jpeg","profile_background_tile":true,"profile_link_color":"962073","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662154086582607872\/U_ekninO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662154086582607872\/U_ekninO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933836203\/1446704830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:35:18 +0000 2015","id":663666164820676608,"id_str":"663666164820676608","text":"I like staring at pretty girls. WHY ARE YOU SO PURDYYYY.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1533539520,"id_str":"1533539520","name":"Tatty Hassan","screen_name":"TattyHassan","location":null,"url":"http:\/\/instagram.com\/tattyhassan","description":"A Pok\u00e9mon League champion, a guitar hero & a Master of Laws student.","protected":false,"verified":false,"followers_count":10243,"friends_count":412,"listed_count":3,"favourites_count":3159,"statuses_count":433,"created_at":"Thu Jun 20 10:39:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623109145223262208\/hmxbG1Rz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623109145223262208\/hmxbG1Rz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1533539520\/1443780595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":287,"favorite_count":75,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TattyHassan","name":"Tatty Hassan","id":1533539520,"id_str":"1533539520","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018657"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821055918080,"id_str":"663727821055918080","text":"@minicooper_0603 \u898b\u3066\u3066\u305d\u306e\u4eba\u304a\u6c17\u306b\u5165\u308a\u3060\u3063\u305f\u304b\u3089\u899a\u3048\u3066\u305f\u3060\u3051www","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727616591982592,"in_reply_to_status_id_str":"663727616591982592","in_reply_to_user_id":3305331900,"in_reply_to_user_id_str":"3305331900","in_reply_to_screen_name":"minicooper_0603","user":{"id":288699154,"id_str":"288699154","name":"\u3076\u3093\u305f","screen_name":"bunta_27","location":"\u5915\u5f35\/\u5317\u6d77\u9053(\u65e5\u672c)","url":"http:\/\/www.amazon.co.jp\/registry\/wishlist\/2SKFQVZ2GJ1B4","description":"\u30b9\u30de\u30db\u3067\u7d75\u304b\u3044\u3066\u307e\u3059\u3002\r\n\u4f9d\u983c\u3055\u308c\u308b\u65b9\u304c\u3044\u307e\u3057\u305f\u3089\r\nhttp:\/\/line.me\/ti\/p\/GbVljmyQH9\n\uff71\uff72\uff7a\uff9d\u2192\u7167\u308a\u713c\u304d\u3059\u308b\u3081\u308d\u3067\u3043(@ty_suruD2)\r\n\uff8d\uff6f\uff80\uff9e\uff70\u2192\u3075\u3049\u3093(@moon___wind)","protected":false,"verified":false,"followers_count":264,"friends_count":312,"listed_count":4,"favourites_count":718,"statuses_count":34633,"created_at":"Wed Apr 27 09:30:51 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623599192926072832\/3vE4We_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623599192926072832\/3vE4We_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288699154\/1439905638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minicooper_0603","name":"\u3059\u30fc\u3053","id":3305331900,"id_str":"3305331900","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047603201,"id_str":"663727821047603201","text":"RT @RedeGlobo: Hora de remover o que deixa a vida pesada! #N\u00e3oSeApegaN\u00e3o #Fant\u00e1stico https:\/\/t.co\/JqOjJMv3yc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4078390540,"id_str":"4078390540","name":"Barbosa Ellen","screen_name":"BarbosaEllen2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":181,"listed_count":0,"favourites_count":3,"statuses_count":48,"created_at":"Fri Oct 30 22:41:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660229343868805120\/tJhjQizW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660229343868805120\/tJhjQizW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4078390540\/1446245915","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:45:52 +0000 2015","id":663502729621463040,"id_str":"663502729621463040","text":"Hora de remover o que deixa a vida pesada! #N\u00e3oSeApegaN\u00e3o #Fant\u00e1stico https:\/\/t.co\/JqOjJMv3yc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18219976,"id_str":"18219976","name":"Globo","screen_name":"RedeGlobo","location":"Brazil","url":"http:\/\/www.redeglobo.com.br","description":"Perfil oficial da Globo.","protected":false,"verified":true,"followers_count":9334250,"friends_count":492,"listed_count":15658,"favourites_count":1988,"statuses_count":83974,"created_at":"Thu Dec 18 17:44:57 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"E4E8F3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655044390683934720\/4DT8n5Gj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655044390683934720\/4DT8n5Gj.png","profile_background_tile":false,"profile_link_color":"6471AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F8F8F8","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660836355379998720\/Em30ZOgD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660836355379998720\/Em30ZOgD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18219976\/1446935599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":593,"favorite_count":653,"entities":{"hashtags":[{"text":"N\u00e3oSeApegaN\u00e3o","indices":[43,57]},{"text":"Fant\u00e1stico","indices":[58,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663502728136663044,"id_str":"663502728136663044","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","url":"https:\/\/t.co\/JqOjJMv3yc","display_url":"pic.twitter.com\/JqOjJMv3yc","expanded_url":"http:\/\/twitter.com\/RedeGlobo\/status\/663502729621463040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":335,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1024,"h":572,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663502728136663044,"id_str":"663502728136663044","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","url":"https:\/\/t.co\/JqOjJMv3yc","display_url":"pic.twitter.com\/JqOjJMv3yc","expanded_url":"http:\/\/twitter.com\/RedeGlobo\/status\/663502729621463040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":335,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1024,"h":572,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"N\u00e3oSeApegaN\u00e3o","indices":[58,72]},{"text":"Fant\u00e1stico","indices":[73,84]}],"urls":[],"user_mentions":[{"screen_name":"RedeGlobo","name":"Globo","id":18219976,"id_str":"18219976","indices":[3,13]}],"symbols":[],"media":[{"id":663502728136663044,"id_str":"663502728136663044","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","url":"https:\/\/t.co\/JqOjJMv3yc","display_url":"pic.twitter.com\/JqOjJMv3yc","expanded_url":"http:\/\/twitter.com\/RedeGlobo\/status\/663502729621463040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":335,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1024,"h":572,"resize":"fit"}},"source_status_id":663502729621463040,"source_status_id_str":"663502729621463040","source_user_id":18219976,"source_user_id_str":"18219976"}]},"extended_entities":{"media":[{"id":663502728136663044,"id_str":"663502728136663044","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU8N0IWoAQUqOs.png","url":"https:\/\/t.co\/JqOjJMv3yc","display_url":"pic.twitter.com\/JqOjJMv3yc","expanded_url":"http:\/\/twitter.com\/RedeGlobo\/status\/663502729621463040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":335,"resize":"fit"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":1024,"h":572,"resize":"fit"}},"source_status_id":663502729621463040,"source_status_id_str":"663502729621463040","source_user_id":18219976,"source_user_id_str":"18219976"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039140865,"id_str":"663727821039140865","text":"RT @_____Oo_miya__y: 11\u67088\u65e5 BAY STORM\n\u4e8c\u5bae\u548c\u4e5f \u4f1d\u8aac\u306e\u66f2\u7d39\u4ecb\n \n(*.\uff9f\u30fc\uff9f)<\u3055\u3041\uff01\u305d\u308c\u3067\u306f\u3053\u3053\u3067\u4e00\u66f2\u8074\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u3087\u3046\u304b\u5d50\u3055\u3093\u306e\u2026\u30cb\u30e5\u30fc\u30a2\u30eb\u30d0\u30e0ja%\u20ac\uff0a$\u00d7%@\u3059..!!\n \n\u307b\u3093\u3068\u6700\u9ad8\u3059\u304e\u308b\ud83d\udc4f\u7b11\n#OomiyaMovie htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1867698494,"id_str":"1867698494","name":"*\u60a0\u559c*\/\u5d50","screen_name":"orion_p200","location":null,"url":null,"description":"\u7fd4\u62c5&\u30cb\u30ce\u8d14\u5c53\u3001\u3067\u3082\u307f\u3093\u306a\u597d\u304d\u2661\u5360\u30c4\u30af\u3067\u5d50\u5c0f\u8aac\u3084\u3063\u3066\u307e\u3059\u2606\u5d50\u597d\u304d\u306a\u65b9\u3001\u7e4b\u304c\u308a\u307e\u3057\u3087\u3046!!(*\u00b4\u02d8`*)\u2661\u6765\u5e74\u6625\u307e\u3067\u30d5\u30a9\u30ed\u30d0\u63a7\u3048\u3081\u2026&\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093(_ _)","protected":false,"verified":false,"followers_count":331,"friends_count":100,"listed_count":1,"favourites_count":455,"statuses_count":2051,"created_at":"Sun Sep 15 13:14:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639382318650560512\/gKcGVxf6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639382318650560512\/gKcGVxf6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1867698494\/1439126961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:08:16 +0000 2015","id":663372468871032832,"id_str":"663372468871032832","text":"11\u67088\u65e5 BAY STORM\n\u4e8c\u5bae\u548c\u4e5f \u4f1d\u8aac\u306e\u66f2\u7d39\u4ecb\n \n(*.\uff9f\u30fc\uff9f)<\u3055\u3041\uff01\u305d\u308c\u3067\u306f\u3053\u3053\u3067\u4e00\u66f2\u8074\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u3087\u3046\u304b\u5d50\u3055\u3093\u306e\u2026\u30cb\u30e5\u30fc\u30a2\u30eb\u30d0\u30e0ja%\u20ac\uff0a$\u00d7%@\u3059..!!\n \n\u307b\u3093\u3068\u6700\u9ad8\u3059\u304e\u308b\ud83d\udc4f\u7b11\n#OomiyaMovie https:\/\/t.co\/pnEVMAk8Mm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3326034708,"id_str":"3326034708","name":"\u30df \u30aa","screen_name":"_____Oo_miya__y","location":"\u5143\u304a\u3049\u307f\u3084","url":null,"description":"\u4e8c\u5bae\u304f\u3093\u306e\u597d\u304d\u306a\u3068\u3053\u308d\u3002\u30ab\u30c3\u30b3\u3088\u304f\u3066\u53ef\u611b\u304f\u3066\u306a\u3093\u3067\u3082\u5668\u7528\u306b\u3053\u306a\u305b\u3066\u3002\u6642\u306b\u30d0\u30ab\u3057\u3066\u9a12\u3044\u3060\u308a\u3001\u6642\u306b\u771f\u5263\u306a\u9854\u3057\u3066\u4f55\u304b\u306b\u6253\u3061\u8fbc\u3093\u3060\u308a\u3002\u53ef\u611b\u3044\u58f0\u304c\u3057\u305f\u304b\u3068\u601d\u3046\u3068\u3001\u4f4e\u304f\u3066\u7537\u3089\u3057\u3044\u58f0\u3092\u51fa\u3057\u305f\u308a\u3002\u4eba\u524d\u3067\u6d99\u3092\u6d41\u305d\u3046\u3068\u3057\u306a\u3044\u3068\u3053\u308d\u3001\u3042\u3056\u3068\u3055\u3092\u524d\u9762\u306b\u51fa\u3057\u3066\u304f\u308b\u3068\u3053\u308d\u3002\u5168\u3066\u304c\u597d\u304d\u3001\u3053\u308c\u304b\u3089\u3082\u3002\u52d5\u753b\u5009\u5eab@Oomiya___y","protected":false,"verified":false,"followers_count":3971,"friends_count":195,"listed_count":28,"favourites_count":3777,"statuses_count":3353,"created_at":"Sun Aug 23 09:03:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662034600286285824\/l4U4bHxb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662034600286285824\/l4U4bHxb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3326034708\/1446564970","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":730,"favorite_count":1626,"entities":{"hashtags":[{"text":"OomiyaMovie","indices":[105,117]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663372388050997249,"id_str":"663372388050997249","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","url":"https:\/\/t.co\/pnEVMAk8Mm","display_url":"pic.twitter.com\/pnEVMAk8Mm","expanded_url":"http:\/\/twitter.com\/_____Oo_miya__y\/status\/663372468871032832\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663372388050997249,"id_str":"663372388050997249","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","url":"https:\/\/t.co\/pnEVMAk8Mm","display_url":"pic.twitter.com\/pnEVMAk8Mm","expanded_url":"http:\/\/twitter.com\/_____Oo_miya__y\/status\/663372468871032832\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/480x480\/fgTdk8FS242hof_-.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/pl\/zrE9gBfO65m2LyBj.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/pl\/zrE9gBfO65m2LyBj.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/240x240\/T-G0G5lfbNf2LsQL.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/480x480\/fgTdk8FS242hof_-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OomiyaMovie","indices":[126,138]}],"urls":[],"user_mentions":[{"screen_name":"_____Oo_miya__y","name":"\u30df \u30aa","id":3326034708,"id_str":"3326034708","indices":[3,19]}],"symbols":[],"media":[{"id":663372388050997249,"id_str":"663372388050997249","indices":[142,143],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","url":"https:\/\/t.co\/pnEVMAk8Mm","display_url":"pic.twitter.com\/pnEVMAk8Mm","expanded_url":"http:\/\/twitter.com\/_____Oo_miya__y\/status\/663372468871032832\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663372468871032832,"source_status_id_str":"663372468871032832","source_user_id":3326034708,"source_user_id_str":"3326034708"}]},"extended_entities":{"media":[{"id":663372388050997249,"id_str":"663372388050997249","indices":[142,143],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663372388050997249\/pu\/img\/l5ibSjDKbrAWO2jp.jpg","url":"https:\/\/t.co\/pnEVMAk8Mm","display_url":"pic.twitter.com\/pnEVMAk8Mm","expanded_url":"http:\/\/twitter.com\/_____Oo_miya__y\/status\/663372468871032832\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663372468871032832,"source_status_id_str":"663372468871032832","source_user_id":3326034708,"source_user_id_str":"3326034708","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/480x480\/fgTdk8FS242hof_-.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/pl\/zrE9gBfO65m2LyBj.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/pl\/zrE9gBfO65m2LyBj.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/240x240\/T-G0G5lfbNf2LsQL.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663372388050997249\/pu\/vid\/480x480\/fgTdk8FS242hof_-.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043318785,"id_str":"663727821043318785","text":"\u304c\u3093\u3070\u308a\u30de\u30c3\u30c1\u30e7\u30c3\u30c1\u30e7\uff01(\u4f4e\u97f3)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201067934,"id_str":"201067934","name":"\u9280\u86fe( \u00a8\u032e )\u30a2\u30a4\u30b3\u30f3\u5de6","screen_name":"ginga_izaya","location":"\u30c8\u30ad\u30e4\u3055\u3093","url":null,"description":"\u304e\u3093\u304c\u3067\u3059\u3002\u6771\u6d77\u3067\u30b3\u30b9\u30d7\u30ec\u3057\u305f\u308a\u7d75\u3092\u63cf\u3044\u305f\u308a\u3057\u3066\u307e\u3059\u3002 20\u2191\/\u3046\u305f\u30d7\u30ea(\u30c8\u30ad\u30e4)\u3001\u5200\u5263\u4e71\u821e(\u9752\u6c5f)\u3001\u5bae\u91ce\u771f\u5b88\u304c\u79c1\u306e\u4e09\u5927\u8981\u7d20\/\u30ec\u30f3\u30c8\u30ad\u53a8 \u30b0\u30c3\u30ba\u56de\u53ce\u30aa\u30d0\u30d0 L&P\u4f1a\u54e1 \u304a\u5225\u308c\u306e\u969b\u306f\u30d6\u30ed\u30c3\u30af\u3067\uff01\u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u8efd\u306b^^ \u30d7\u30ea\u30e9\u30a4\u884c\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":1079,"friends_count":661,"listed_count":56,"favourites_count":5804,"statuses_count":89450,"created_at":"Mon Oct 11 00:35:21 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661913482179162117\/mjKwEA2M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661913482179162117\/mjKwEA2M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201067934\/1442067794","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047513088,"id_str":"663727821047513088","text":"RT @kkrumkrum: \u0e19\u0e49\u0e33\u0e1e\u0e36\u0e48\u0e07\u0e40\u0e23\u0e37\u0e2d \u0e40\u0e2a\u0e37\u0e2d\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e32 \n\u0e41\u0e15\u0e48\u0e16\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e2a\u0e2d\u0e1a\u0e21\u0e32 \u0e01\u0e39\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e36\u0e07\u0e19\u0e30 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e23\u0e31\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":978141696,"id_str":"978141696","name":"\u0e42\u0e19\u0e4a\u0e15\u0e46\u0e21\u0e32\u0e19\u0e35\u0e48\u0e14\u0e34\u0e4a","screen_name":"noteote","location":null,"url":null,"description":"\u0e17\u0e27\u0e34\u0e15\u0e19\u0e35\u0e49\u0e40\u0e17\u0e4a\u0e32\u0e40\u0e17\u0e32 \u0e2a\u0e32\u0e22\u0e14\u0e32\u0e23\u0e4c\u0e04","protected":false,"verified":false,"followers_count":98,"friends_count":676,"listed_count":0,"favourites_count":1364,"statuses_count":723,"created_at":"Thu Nov 29 11:25:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648830000456577024\/MtMUmL3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648830000456577024\/MtMUmL3A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/978141696\/1441798406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 11:00:42 +0000 2015","id":661135839171182592,"id_str":"661135839171182592","text":"\u0e19\u0e49\u0e33\u0e1e\u0e36\u0e48\u0e07\u0e40\u0e23\u0e37\u0e2d \u0e40\u0e2a\u0e37\u0e2d\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e32 \n\u0e41\u0e15\u0e48\u0e16\u0e49\u0e32\u0e02\u0e49\u0e2d\u0e2a\u0e2d\u0e1a\u0e21\u0e32 \u0e01\u0e39\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e36\u0e07\u0e19\u0e30 \u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e23\u0e31\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851938001,"id_str":"2851938001","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","screen_name":"kkrumkrum","location":"-\u0e23\u0e27\u0e21\u0e17\u0e38\u0e01\u0e21\u0e38\u0e02\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e41\u0e19\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e32\u0e23\u0e21-","url":"http:\/\/line.me\/ti\/p\/%40vbe6244k","description":"\u0e2d\u0e48\u0e32\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e34\u0e49\u0e21\u0e2d\u0e34\u0e19\u0e46\u0e01\u0e31\u0e19\u0e44\u0e1b5555\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e38\u0e01\u0e04\u0e19\u0e43\u0e08\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e04\u0e38\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e19\u0e49\u0e32\u0e325555555 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e19\u0e1f\u0e2d\u0e25\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30\u0e04\u0e49\u0e30\u0e08\u0e49\u0e27\u0e1a\u0e1a\u0e46\u25e1\u0308\u2661\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22\u0e19\u0e30\u0e04\u0e30\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 ig:kkrumkrum","protected":false,"verified":false,"followers_count":587285,"friends_count":173,"listed_count":70,"favourites_count":1,"statuses_count":3574,"created_at":"Sat Oct 11 12:11:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851938001\/1423663298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7924,"favorite_count":2282,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kkrumkrum","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","id":2851938001,"id_str":"2851938001","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051707393,"id_str":"663727821051707393","text":"@yk718rin \u8336\u9aea\ud83d\udc9d\ud83d\udc9d\ud83d\udc9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727315390623746,"in_reply_to_status_id_str":"663727315390623746","in_reply_to_user_id":1161783391,"in_reply_to_user_id_str":"1161783391","in_reply_to_screen_name":"yk718rin","user":{"id":1017131954,"id_str":"1017131954","name":"\u3044\u305a\u307f","screen_name":"okr8_1519","location":null,"url":null,"description":"\u306f\u305f\u3057\u3087\u3046 \u25b7\u25b7 \u306f\u3063\u3077 \u25b7\u25b7 Carriere Bridal 1B\u2460","protected":false,"verified":false,"followers_count":658,"friends_count":465,"listed_count":1,"favourites_count":3008,"statuses_count":4766,"created_at":"Mon Dec 17 10:05:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643058202691502080\/sFoAGx7j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643058202691502080\/sFoAGx7j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1017131954\/1446518081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yk718rin","name":"\u5317\u6fa4 \u512a\u5e0c\u2603","id":1161783391,"id_str":"1161783391","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051846657,"id_str":"663727821051846657","text":"\u0643\u0644\u0627\u0645 \u0639\u0638\u064a\u0645 \u062c\u062f\u0627\u064b ...\n\u0647\u0643\u0630\u0627 \u064a\u062c\u0628 \u0623\u0646 \u064a\u0639\u064a\u0634 \u0627\u0644\u0625\u0646\u0633\u0627\u0646 https:\/\/t.co\/UgpTTTIhcY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173871486,"id_str":"173871486","name":"Omar Al Sultan","screen_name":"OmarFi2","location":"Kuwait - Yarmouk","url":"http:\/\/ask.fm\/omarfi2","description":"\u0644\u062f\u064a \u0642\u0644\u064a\u0644\u064c \u0645\u0646 \u0630\u0627\u0643 \u0627\u0644\u062e\u0644\u064a\u0641\u0629 \u0627\u0644\u0630\u064a \u0623\u062d\u0645\u0644 \u0627\u0633\u0645\u0647\n\n\u0645\u0647\u0646\u062f\u0633 \u0643\u064a\u0645\u064a\u0627\u0626\u064a \u0647\u0648 \u0645\u0627 \u0623\u0639\u064a\u0634\u0647 \u0627\u0644\u0622\u0646\n\n\u0642\u0644\u0628\u064a \u0648 \u0639\u0642\u0644\u064a \u0644\u0627 \u064a\u0633\u0639\u0627\u0646 \u0645\u0627 \u0627\u0641\u0643\u0631 \u0628\u0647\n\n\u0641\u0623\u0641\u064a\u0636 \u0628\u0639\u0636\u0627\u064b \u0645\u0646\u0647\u0627 \u0647\u0646\u0627\n\n\u0641\u0627\u0628\u062d\u062b \u0639\u0646\u064a","protected":false,"verified":false,"followers_count":789,"friends_count":464,"listed_count":4,"favourites_count":232,"statuses_count":7873,"created_at":"Mon Aug 02 15:32:18 +0000 2010","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647390819192705024\/2IM1WX6P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647390819192705024\/2IM1WX6P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173871486\/1356970492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UgpTTTIhcY","expanded_url":"http:\/\/youtu.be\/o4EoM4lwbYQ","display_url":"youtu.be\/o4EoM4lwbYQ","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064306688,"id_str":"663727821064306688","text":"@sakamaru1221 \u7279\u306b\u306a\u306b\u3082\u306a\u304b\u3063\u305f\u304b\u306a\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727584186777600,"in_reply_to_status_id_str":"663727584186777600","in_reply_to_user_id":975433782,"in_reply_to_user_id_str":"975433782","in_reply_to_screen_name":"sakamaru1221","user":{"id":3184058833,"id_str":"3184058833","name":"\u3053\u307e\u677e","screen_name":"cocoma0u0","location":"\u2721\u540d\u53e4\u5c4b\u3068\u8c4a\u6a4b\u306e\u9593\u2721","url":"http:\/\/sp.nicovideo.jp\/mylist\/44236287","description":"\u8e0a\u3063\u3066\u307f\u305f\u754c\u9688\u306b\u751f\u606f\u3057\u3066\u307e\u3059\u2282(^\u30fb^)\u2283\u9a12\u3044\u3067\u307e\u3059\u3001\u30a4\u30d9\u30f3\u30c8\u306b\u884c\u3063\u305f\u3089\u307f\u3064\u3051\u3084\u3059\u3044\u3068\u304a\u3082\u3044\u307e\u3059( \u00b4\uff61\u2022~\u2022\uff61` )\u0283)\u4e16\u754c\u3067\u4e00\u756a\u304b\u3063\u3053\u3044\u3044\u30b2\u30c3\u30c4\u3055\u3093\u304c\u5927\u597d\u304d\u3067\u3059\u3001\uff01\uff01\uff01\uff01\uff01\uff01\u63a8\u3057\u261e\u306a\u307f\u304b\u308a\u3001\u308f\u305f\u3001\u3061\u3085\u3044\u3001\u307a\u3093\u305f(\u591a\u3044)\u30d6\u30ed\u30b0\u2192http:\/\/s.ameblo.jp\/cocoma0u0\/","protected":false,"verified":false,"followers_count":664,"friends_count":741,"listed_count":13,"favourites_count":11313,"statuses_count":17358,"created_at":"Sun May 03 10:53:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662072209888800768\/u2OJcU2x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662072209888800768\/u2OJcU2x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184058833\/1446684762","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakamaru1221","name":"\u3055\u304b\u307e\u308b@3D\u64ae\u5f71\u30573DS\u52d5\u753b\u4f5c\u308b\u3088\uff01","id":975433782,"id_str":"975433782","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821055913984,"id_str":"663727821055913984","text":"RT @wongnai: \u0e2a\u0e27\u0e23\u0e23\u0e04\u0e4c\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e04\u0e48\u0e1a\u0e32\u0e07\u0e41\u0e2a\u0e19! \"Sea Salt\" \u0e23\u0e49\u0e32\u0e19\u0e2a\u0e38\u0e14\u0e0a\u0e34\u0e04 \u0e23\u0e34\u0e21\u0e17\u0e30\u0e40\u0e25 \u0e17\u0e35\u0e48\u0e43\u0e04\u0e23\u0e46 \u0e01\u0e47\u0e2b\u0e25\u0e07\u0e23\u0e31\u0e01 #\u0e2d\u0e23\u0e48\u0e2d\u0e22\u0e44\u0e1b\u0e41\u0e14\u0e01 https:\/\/t.co\/t5o1Ihp1AK https:\/\/t.co\/qgsBqgAX6L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4033276094,"id_str":"4033276094","name":"Bello'","screen_name":"bello79095","location":"Din Daeng, Bangkok","url":null,"description":"eat sleep repeat","protected":false,"verified":false,"followers_count":12,"friends_count":39,"listed_count":0,"favourites_count":6,"statuses_count":185,"created_at":"Tue Oct 27 07:54:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659026735447445504\/n59DLe6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659026735447445504\/n59DLe6u_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:28 +0000 2015","id":663726353875906560,"id_str":"663726353875906560","text":"\u0e2a\u0e27\u0e23\u0e23\u0e04\u0e4c\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e04\u0e48\u0e1a\u0e32\u0e07\u0e41\u0e2a\u0e19! \"Sea Salt\" \u0e23\u0e49\u0e32\u0e19\u0e2a\u0e38\u0e14\u0e0a\u0e34\u0e04 \u0e23\u0e34\u0e21\u0e17\u0e30\u0e40\u0e25 \u0e17\u0e35\u0e48\u0e43\u0e04\u0e23\u0e46 \u0e01\u0e47\u0e2b\u0e25\u0e07\u0e23\u0e31\u0e01 #\u0e2d\u0e23\u0e48\u0e2d\u0e22\u0e44\u0e1b\u0e41\u0e14\u0e01 https:\/\/t.co\/t5o1Ihp1AK https:\/\/t.co\/qgsBqgAX6L","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168750564,"id_str":"168750564","name":"Wongnai","screen_name":"wongnai","location":"Bangkok, Thailand","url":"http:\/\/www.wongnai.com\/download?ref=tw","description":"\u0e41\u0e2d\u0e1e\u0e2b\u0e32\u0e23\u0e49\u0e32\u0e19\u0e2d\u0e23\u0e48\u0e2d\u0e22 \u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a 1 \u0e02\u0e2d\u0e07\u0e44\u0e17\u0e22 \u0e14\u0e32\u0e27\u0e42\u0e2b\u0e25\u0e14\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22 ~ \u0e1f\u0e23\u0e35!","protected":false,"verified":false,"followers_count":315021,"friends_count":194,"listed_count":146,"favourites_count":55,"statuses_count":10778,"created_at":"Tue Jul 20 17:59:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3EA9F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656521790\/axzqznhtbz8ixd7y6nmt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656521790\/axzqznhtbz8ixd7y6nmt.jpeg","profile_background_tile":true,"profile_link_color":"E66F20","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F5C8A1","profile_text_color":"4F4F4F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484247058094641152\/EZw3S_uB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484247058094641152\/EZw3S_uB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168750564\/1406868960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":9,"entities":{"hashtags":[{"text":"\u0e2d\u0e23\u0e48\u0e2d\u0e22\u0e44\u0e1b\u0e41\u0e14\u0e01","indices":[68,79]}],"urls":[{"url":"https:\/\/t.co\/t5o1Ihp1AK","expanded_url":"http:\/\/buff.ly\/1RHv7JP","display_url":"buff.ly\/1RHv7JP","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663726353154445312,"id_str":"663726353154445312","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726353154445312,"id_str":"663726353154445312","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663726351824781313,"id_str":"663726351824781313","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmbSVAAET4QK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmbSVAAET4QK.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663726349434101760,"id_str":"663726349434101760","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmSYWIAAQ_21.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmSYWIAAQ_21.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663726352130945025,"id_str":"663726352130945025","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmcbUsAEQL_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmcbUsAEQL_M.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":650,"h":975,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2d\u0e23\u0e48\u0e2d\u0e22\u0e44\u0e1b\u0e41\u0e14\u0e01","indices":[81,92]}],"urls":[{"url":"https:\/\/t.co\/t5o1Ihp1AK","expanded_url":"http:\/\/buff.ly\/1RHv7JP","display_url":"buff.ly\/1RHv7JP","indices":[93,116]}],"user_mentions":[{"screen_name":"wongnai","name":"Wongnai","id":168750564,"id_str":"168750564","indices":[3,11]}],"symbols":[],"media":[{"id":663726353154445312,"id_str":"663726353154445312","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663726353875906560,"source_status_id_str":"663726353875906560","source_user_id":168750564,"source_user_id_str":"168750564"}]},"extended_entities":{"media":[{"id":663726353154445312,"id_str":"663726353154445312","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmgPWEAADZ6u.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663726353875906560,"source_status_id_str":"663726353875906560","source_user_id":168750564,"source_user_id_str":"168750564"},{"id":663726351824781313,"id_str":"663726351824781313","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmbSVAAET4QK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmbSVAAET4QK.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663726353875906560,"source_status_id_str":"663726353875906560","source_user_id":168750564,"source_user_id_str":"168750564"},{"id":663726349434101760,"id_str":"663726349434101760","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmSYWIAAQ_21.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmSYWIAAQ_21.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"large":{"w":849,"h":567,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663726353875906560,"source_status_id_str":"663726353875906560","source_user_id":168750564,"source_user_id_str":"168750564"},{"id":663726352130945025,"id_str":"663726352130945025","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHmcbUsAEQL_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHmcbUsAEQL_M.jpg","url":"https:\/\/t.co\/qgsBqgAX6L","display_url":"pic.twitter.com\/qgsBqgAX6L","expanded_url":"http:\/\/twitter.com\/wongnai\/status\/663726353875906560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":650,"h":975,"resize":"fit"}},"source_status_id":663726353875906560,"source_status_id_str":"663726353875906560","source_user_id":168750564,"source_user_id_str":"168750564"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821060251648,"id_str":"663727821060251648","text":"RT @AnimaIposts: My heart \ud83d\udc99\ud83d\ude2d OMG https:\/\/t.co\/2Zy22FQ9le","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2681565951,"id_str":"2681565951","name":"Amaral","screen_name":"Marciiaamaral","location":"Leiria","url":null,"description":"Melhor Amigo \u2764 \nMelhor Amiga \u2764","protected":false,"verified":false,"followers_count":240,"friends_count":625,"listed_count":1,"favourites_count":313,"statuses_count":3615,"created_at":"Mon Jul 07 02:00:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592310793946865664\/X6DRy-0q.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592310793946865664\/X6DRy-0q.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655989654987145216\/8K4aQrbK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655989654987145216\/8K4aQrbK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2681565951\/1445979235","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:47:08 +0000 2015","id":662778273659678720,"id_str":"662778273659678720","text":"My heart \ud83d\udc99\ud83d\ude2d OMG https:\/\/t.co\/2Zy22FQ9le","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152778479,"id_str":"152778479","name":"Animals","screen_name":"AnimaIposts","location":null,"url":null,"description":"Posting the cutest animals (we do not own the content we post) *Parody account* Request removal of image by DM","protected":false,"verified":false,"followers_count":276301,"friends_count":2,"listed_count":225,"favourites_count":3,"statuses_count":2292,"created_at":"Sun Jun 06 21:23:04 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618864915558707200\/xyOFU1tT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618864915558707200\/xyOFU1tT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152778479\/1368452415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2291,"favorite_count":3543,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Zy22FQ9le","expanded_url":"http:\/\/vine.co\/v\/OnteTTYp30q","display_url":"vine.co\/v\/OnteTTYp30q","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Zy22FQ9le","expanded_url":"http:\/\/vine.co\/v\/OnteTTYp30q","display_url":"vine.co\/v\/OnteTTYp30q","indices":[34,57]}],"user_mentions":[{"screen_name":"AnimaIposts","name":"Animals","id":152778479,"id_str":"152778479","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018664"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051809792,"id_str":"663727821051809792","text":"RT @OnlyHipHopFacts: 22 years ago today, Wu Tang Clan released Enter the Wu-Tang (36 Chambers) https:\/\/t.co\/pXRgwxibtv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152474570,"id_str":"152474570","name":"LSD x Kamikozie","screen_name":"intellect91","location":"Anywhere you've never been","url":"http:\/\/lifessodope.com","description":"Kent, OH is the residence, music is the obsession, Hip-Hop is my life, I'm an avid movie junkie, and a deep thinker...","protected":false,"verified":false,"followers_count":309,"friends_count":384,"listed_count":7,"favourites_count":1015,"statuses_count":24634,"created_at":"Sun Jun 06 02:17:10 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"63696E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630402563955802112\/bi9-j2x6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630402563955802112\/bi9-j2x6.jpg","profile_background_tile":true,"profile_link_color":"275F85","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"969696","profile_text_color":"2B2726","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608395098490064896\/e3_DHwJM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608395098490064896\/e3_DHwJM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152474570\/1428279378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:41:11 +0000 2015","id":663712941129097216,"id_str":"663712941129097216","text":"22 years ago today, Wu Tang Clan released Enter the Wu-Tang (36 Chambers) https:\/\/t.co\/pXRgwxibtv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834095274,"id_str":"834095274","name":"Only Hip Hop Facts","screen_name":"OnlyHipHopFacts","location":null,"url":null,"description":"We're varsity, chump, you're JV.","protected":false,"verified":false,"followers_count":277348,"friends_count":908,"listed_count":755,"favourites_count":871,"statuses_count":27488,"created_at":"Wed Sep 19 20:42:29 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095953696\/3d74f20a57d957f8db35afc708a51f85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095953696\/3d74f20a57d957f8db35afc708a51f85.png","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429508172730998786\/T6o94fTE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429508172730998786\/T6o94fTE_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":432,"favorite_count":377,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663712917242548226,"id_str":"663712917242548226","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","url":"https:\/\/t.co\/pXRgwxibtv","display_url":"pic.twitter.com\/pXRgwxibtv","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663712941129097216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663712917242548226,"id_str":"663712917242548226","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","url":"https:\/\/t.co\/pXRgwxibtv","display_url":"pic.twitter.com\/pXRgwxibtv","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663712941129097216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OnlyHipHopFacts","name":"Only Hip Hop Facts","id":834095274,"id_str":"834095274","indices":[3,19]}],"symbols":[],"media":[{"id":663712917242548226,"id_str":"663712917242548226","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","url":"https:\/\/t.co\/pXRgwxibtv","display_url":"pic.twitter.com\/pXRgwxibtv","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663712941129097216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":663712941129097216,"source_status_id_str":"663712941129097216","source_user_id":834095274,"source_user_id_str":"834095274"}]},"extended_entities":{"media":[{"id":663712917242548226,"id_str":"663712917242548226","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7YbkUkAICATM.jpg","url":"https:\/\/t.co\/pXRgwxibtv","display_url":"pic.twitter.com\/pXRgwxibtv","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663712941129097216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":663712941129097216,"source_status_id_str":"663712941129097216","source_user_id":834095274,"source_user_id_str":"834095274"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064265729,"id_str":"663727821064265729","text":"RT @6jigen: \u938c\u5009\u306e\u8fd1\u4ee3\u7f8e\u8853\u9928\u304c\u3042\u306880\u65e5\u307b\u3069\u3067\u9589\u9928\u3067\u3059\u304c\u3001\u30da\u30fc\u30d1\u30fc\u30af\u30e9\u30d5\u30c8\u767a\u58f2\u3057\u305f\u308a\u3001\u5148\u8f29\u00d7\u5f8c\u8f29\u5b66\u82b8\u54e1\u5bfe\u8ac7\u3068\u304b\u30e9\u30b9\u30c8\u30b9\u30d1\u30fc\u30c8\u3089\u3057\u3044\u4f01\u753b\u304c\u76db\u308a\u6ca2\u5c71\u3002\u30b8\u30ef\u30b8\u30ef\u3055\u3073\u3057\u3044\u3002\u3055\u3088\u306a\u3089\u938c\u8fd1\u3002https:\/\/t.co\/WMD3RGlqUM https:\/\/t.co\/3mHy6cQ\u2026","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4 \/ www.movatwi.jp .\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110402083,"id_str":"110402083","name":"\u9ad8\u77e5\u770c\u6620\u753b\u4e0a\u6620\u56e3\u4f53\u30cd\u30c3\u30c8\u30ef\u30fc\u30af","screen_name":"einee_kochi","location":"\u9ad8\u77e5\u770c\u9ad8\u77e5\u5e02","url":null,"description":"\u9ad8\u77e5\u81ea\u4e3b\u4e0a\u6620\u60c5\u5831bot\u2192 @einee_info","protected":false,"verified":false,"followers_count":3670,"friends_count":3646,"listed_count":252,"favourites_count":148144,"statuses_count":218848,"created_at":"Mon Feb 01 12:21:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/142377828\/syoku.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/142377828\/syoku.png","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638415579108519936\/wAQ9S7Oh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638415579108519936\/wAQ9S7Oh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110402083\/1380711321","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:44 +0000 2015","id":663714844235796480,"id_str":"663714844235796480","text":"\u938c\u5009\u306e\u8fd1\u4ee3\u7f8e\u8853\u9928\u304c\u3042\u306880\u65e5\u307b\u3069\u3067\u9589\u9928\u3067\u3059\u304c\u3001\u30da\u30fc\u30d1\u30fc\u30af\u30e9\u30d5\u30c8\u767a\u58f2\u3057\u305f\u308a\u3001\u5148\u8f29\u00d7\u5f8c\u8f29\u5b66\u82b8\u54e1\u5bfe\u8ac7\u3068\u304b\u30e9\u30b9\u30c8\u30b9\u30d1\u30fc\u30c8\u3089\u3057\u3044\u4f01\u753b\u304c\u76db\u308a\u6ca2\u5c71\u3002\u30b8\u30ef\u30b8\u30ef\u3055\u3073\u3057\u3044\u3002\u3055\u3088\u306a\u3089\u938c\u8fd1\u3002https:\/\/t.co\/WMD3RGlqUM https:\/\/t.co\/3mHy6cQsEw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91975286,"id_str":"91975286","name":"\u30ca\u30ab\u30e0\u30e9\u30af\u30cb\u30aa\uff086\u6b21\u5143\uff09","screen_name":"6jigen","location":"\u6771\u4eac \u837b\u7aaa","url":"http:\/\/www.6jigen.com","description":"6\u6b21\u5143\u306f\u837b\u7aaa\u306e\u30d6\u30c3\u30af\u30ab\u30d5\u30a7\u3067\u3059\u3002\u8457\u66f8\u306f\u300e\u4eba\u304c\u96c6\u307e\u308b\u300c\u3064\u306a\u304e\u5834\u300d\u306e\u3064\u304f\u308a\u65b9\u300f\u306a\u3069\u3002","protected":false,"verified":false,"followers_count":63285,"friends_count":60044,"listed_count":1174,"favourites_count":2985,"statuses_count":9442,"created_at":"Mon Nov 23 10:01:06 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453736166555013120\/5-DKP_ms_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453736166555013120\/5-DKP_ms_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91975286\/1401163210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":39,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WMD3RGlqUM","expanded_url":"http:\/\/www.moma.pref.kanagawa.jp\/public\/HallTop.do?hl=k","display_url":"moma.pref.kanagawa.jp\/public\/HallTop\u2026","indices":[83,106]}],"user_mentions":[],"symbols":[],"media":[{"id":663714833997557760,"id_str":"663714833997557760","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","url":"https:\/\/t.co\/3mHy6cQsEw","display_url":"pic.twitter.com\/3mHy6cQsEw","expanded_url":"http:\/\/twitter.com\/6jigen\/status\/663714844235796480\/photo\/1","type":"photo","sizes":{"medium":{"w":383,"h":247,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":383,"h":247,"resize":"fit"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714833997557760,"id_str":"663714833997557760","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","url":"https:\/\/t.co\/3mHy6cQsEw","display_url":"pic.twitter.com\/3mHy6cQsEw","expanded_url":"http:\/\/twitter.com\/6jigen\/status\/663714844235796480\/photo\/1","type":"photo","sizes":{"medium":{"w":383,"h":247,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":383,"h":247,"resize":"fit"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WMD3RGlqUM","expanded_url":"http:\/\/www.moma.pref.kanagawa.jp\/public\/HallTop.do?hl=k","display_url":"moma.pref.kanagawa.jp\/public\/HallTop\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"6jigen","name":"\u30ca\u30ab\u30e0\u30e9\u30af\u30cb\u30aa\uff086\u6b21\u5143\uff09","id":91975286,"id_str":"91975286","indices":[3,10]}],"symbols":[],"media":[{"id":663714833997557760,"id_str":"663714833997557760","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","url":"https:\/\/t.co\/3mHy6cQsEw","display_url":"pic.twitter.com\/3mHy6cQsEw","expanded_url":"http:\/\/twitter.com\/6jigen\/status\/663714844235796480\/photo\/1","type":"photo","sizes":{"medium":{"w":383,"h":247,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":383,"h":247,"resize":"fit"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663714844235796480,"source_status_id_str":"663714844235796480","source_user_id":91975286,"source_user_id_str":"91975286"}]},"extended_entities":{"media":[{"id":663714833997557760,"id_str":"663714833997557760","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9IACU8AATVLF.jpg","url":"https:\/\/t.co\/3mHy6cQsEw","display_url":"pic.twitter.com\/3mHy6cQsEw","expanded_url":"http:\/\/twitter.com\/6jigen\/status\/663714844235796480\/photo\/1","type":"photo","sizes":{"medium":{"w":383,"h":247,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":383,"h":247,"resize":"fit"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663714844235796480,"source_status_id_str":"663714844235796480","source_user_id":91975286,"source_user_id_str":"91975286"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030690816,"id_str":"663727821030690816","text":"#HAPPYLEODAY #\uc0ac\uc2ac #Chained_up","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2256410689,"id_str":"2256410689","name":"\uce58\ub9e4","screen_name":"cm0310_S2","location":null,"url":null,"description":"\uacf5\uac1c rps \u3157","protected":false,"verified":false,"followers_count":171,"friends_count":350,"listed_count":0,"favourites_count":2363,"statuses_count":1769,"created_at":"Sat Dec 21 12:22:56 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656104714308710400\/aSUWTCJj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656104714308710400\/aSUWTCJj_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[0,12]},{"text":"\uc0ac\uc2ac","indices":[13,16]},{"text":"Chained_up","indices":[17,28]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018657"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034946561,"id_str":"663727821034946561","text":"\u308f\u305f\u3057\u3083\u3001\u3060\u3044\u305f\u30445\u5468\u5e74\u306b\u9a5a\u3044\u305f\u3088\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126929407,"id_str":"126929407","name":"\u2122\u00ae\u4e9c\uff20\u8cb4\u65cf (\uff62\u0424\u03c9\u0424)\uff62\uff5e","screen_name":"akiiiiivisya_ny","location":"\u30c7\u30fc\u30e2\u30f3\u30c9\u30e9\u30b4\u30f3\u30a2\u30ab\u30c7\u30df\u30fc","url":null,"description":"T.M.Revolution\u80b2\u3061\uff0f\u30c7\u30a3\u30b9\u30c6\u30a3\u30cb\u30fc\u3092\u30ec\u30dc\u30ea\u30e5\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u4ed5\u4e8b\u3057\u3066\u3044\u307e\u3059(\uff62\u0424\u03c9\u0424)\uff62\uff5e\u266a\u3075\u3085\u30fc\u305f\u3083\u30fc\u306f\u3073\u3063\u3057\u3083\u306b\uff5e\u306e\u738b\u5b50\u69d8 \u597d\u304d\u306a\u6570\u5b57\u306f16\u3067\u3059\u3002\n http:\/\/twilog.org\/akiiiiivisya_ny","protected":false,"verified":false,"followers_count":153,"friends_count":257,"listed_count":13,"favourites_count":6295,"statuses_count":159910,"created_at":"Sat Mar 27 13:17:09 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF8A00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/855628834\/8388f9f5ebca3dd2c58b44f190687497.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/855628834\/8388f9f5ebca3dd2c58b44f190687497.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594884263817818112\/tfVf5-wX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594884263817818112\/tfVf5-wX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126929407\/1406006384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064278016,"id_str":"663727821064278016","text":"@tour0812 \n\u5f53\u305f\u308a\u524d\u3084\u308d\ud83d\udc4d\ud83d\ude48\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716826614902784,"in_reply_to_status_id_str":"663716826614902784","in_reply_to_user_id":3244007701,"in_reply_to_user_id_str":"3244007701","in_reply_to_screen_name":"tour0812","user":{"id":3138940292,"id_str":"3138940292","name":"\u3042\u3084\u2729*\u0970\u6dbc\u4ecb\u304c\u597d\u304d\u2763\u20db","screen_name":"dsryosuke429","location":null,"url":null,"description":"\u5c71\u7530\u6dbc\u4ecb\u62c5\u5f53\u2763\u20db\u3042\u308a\u3084\u307e\u304c\u5927\u597d\u304d\u02d9\u02da\u0b2a\u2661\u0b13 \u02da\u02d9\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c \u6fc3\u304f\u306a\u308c\u308b\u4ed4\u52df\u96c6\u4e2d\u2661\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u2022\u2022\u2508\u2508\u2508\u2508\u2022\u2022\u273c\u25cc\u2445\u20dd*\u0970\u0971\u30ab\u30a6\u30b3\u30f3\u5f53\u9078\u7948\u9858\u25cc\u2445\u20dd*\u0970\u0971","protected":false,"verified":false,"followers_count":43,"friends_count":84,"listed_count":1,"favourites_count":229,"statuses_count":324,"created_at":"Sat Apr 04 12:29:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660799396301287424\/x046TWE8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660799396301287424\/x046TWE8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3138940292\/1446647565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tour0812","name":"\u304f \u308b \u30ea \u2661 *","id":3244007701,"id_str":"3244007701","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064265728,"id_str":"663727821064265728","text":"@U0ymw02i4gsoacS \u307e\u3058\u3081\u306b\u601d\u3046\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726835256045568,"in_reply_to_status_id_str":"663726835256045568","in_reply_to_user_id":3012248179,"in_reply_to_user_id_str":"3012248179","in_reply_to_screen_name":"U0ymw02i4gsoacS","user":{"id":2731902103,"id_str":"2731902103","name":"\u5b89\u85e4\u6731\u97f3","screen_name":"badloveakubi1","location":null,"url":null,"description":"\u59bb\u4e2d\u5352\u696d\u2192\u59bb\u9ad813HR.\u30d0\u30c9\u90e8.\u3088\u308d\u3057\u304f\u3067\u3059 \u7d20\u76f4\u304c1\u756a\u2728\u30a2\u30aa\u30cf\u30eb\u3057\u307e\u304f\u3063\u3066\u3084\u308b.MIYAZAKI","protected":false,"verified":false,"followers_count":317,"friends_count":270,"listed_count":1,"favourites_count":10295,"statuses_count":4363,"created_at":"Thu Aug 14 14:39:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646261342031081472\/5n9-aoIU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646261342031081472\/5n9-aoIU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2731902103\/1439222517","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"U0ymw02i4gsoacS","name":"\u9577\u53cb\u5065\u592a","id":3012248179,"id_str":"3012248179","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034926080,"id_str":"663727821034926080","text":"\u30eb\u30b7\u30a2\u3061\u3083\u3093\u7f8e\u3057\u3044\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3143135713,"id_str":"3143135713","name":"\u3046\u305f\u3052","screen_name":"udonzuruzuru3","location":null,"url":null,"description":"\u30bd\u30b5\u30a2\u30ab:\u3081\u3081\u3001\u6771\u30bf\u30ed\u30a6\/GA:\u30c8\u30e0\u3001\u795e\u7530\u8056\u5948\u3001\u5929\u4f7f\u6953\u5b50 \/\u30e1\u30c7\u30a3\u30e1\u30c7\u30a3","protected":false,"verified":false,"followers_count":59,"friends_count":61,"listed_count":3,"favourites_count":4486,"statuses_count":1141,"created_at":"Tue Apr 07 08:32:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642689679406460928\/r09nzmxY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642689679406460928\/r09nzmxY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3143135713\/1442132583","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034950656,"id_str":"663727821034950656","text":"@GAYA038 \u3059\u3059\u3059\u3059\u30fc\u30fc\u30fc\u30fc\u3046\u3046\u3046\u3046\u3046\u3046\u3046\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\uff01\uff01\u308b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727709659381760,"in_reply_to_status_id_str":"663727709659381760","in_reply_to_user_id":161490516,"in_reply_to_user_id_str":"161490516","in_reply_to_screen_name":"GAYA038","user":{"id":1731554484,"id_str":"1731554484","name":"\u304a\u305f\u306d\u3061\u3083\u3093","screen_name":"nanayo_bot","location":"\uff1f","url":null,"description":"\u22bf","protected":false,"verified":false,"followers_count":324,"friends_count":355,"listed_count":6,"favourites_count":1706,"statuses_count":13358,"created_at":"Thu Sep 05 10:59:11 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603275320548925440\/R7902l-5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603275320548925440\/R7902l-5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1731554484\/1441873266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GAYA038","name":"\u304c\u3042\u308411\/14\u30b8\u30e7\u30b8\u30e7\u30ca\u30a4\u30c8","id":161490516,"id_str":"161490516","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039120384,"id_str":"663727821039120384","text":"RT @irene_archive: \ud32c\uc774\ub780 \uc874\uc7ac\ub294 \ub9d0\ub85c \uc124\uba85\ud560 \uc218 \uc5c6\ub294 \ud798\uc744 \uc918\uc694. \uc800\ub294 \ub204\uad6c\ub97c \uadf8\ub807\uac8c \uc0ac\ub791\ud574 \uc8fc\uace0 \ud45c\ud604\ud574\uc900 \uc801\uc774 \uc5c6\uc5c8\ub358 \uac83 \uac19\uc544\uc694.\n-2015 11 ELLE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3772064772,"id_str":"3772064772","name":"\ub364\ub364\uc72a","screen_name":"j2m_1612","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":77,"listed_count":2,"favourites_count":4819,"statuses_count":2973,"created_at":"Sat Oct 03 17:13:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650703246986637312\/WprkalFp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650703246986637312\/WprkalFp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3772064772\/1443974717","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:15:26 +0000 2015","id":663585668568776704,"id_str":"663585668568776704","text":"\ud32c\uc774\ub780 \uc874\uc7ac\ub294 \ub9d0\ub85c \uc124\uba85\ud560 \uc218 \uc5c6\ub294 \ud798\uc744 \uc918\uc694. \uc800\ub294 \ub204\uad6c\ub97c \uadf8\ub807\uac8c \uc0ac\ub791\ud574 \uc8fc\uace0 \ud45c\ud604\ud574\uc900 \uc801\uc774 \uc5c6\uc5c8\ub358 \uac83 \uac19\uc544\uc694.\n-2015 11 ELLE","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3164524063,"id_str":"3164524063","name":"\uc544\uc774\ub9b0 \uc544\uce74\uc774\ube0c","screen_name":"irene_archive","location":"Of Irene, By Irene, For Irene","url":"https:\/\/www.youtube.com\/channel\/UCoIJ0l5tjJxyPazMVMS51cQ","description":"25\uac1c\uc6d4 \uc544\uce74\uca29 \uc544\uc774\ub9b0\uc804\uc6a9 \uc544\uce74\uc774\ube0c\u2661 3 \uc2dc\uac04 \uc8fc\uae30 \uc790\ub3d9\ubd07\uc73c\ub85c \uc6b4\uc601\ub418\uace0 \uc788\uc73c\uba70 \ud2c8\ud2c8\ud788 DB \uc5c5\ub370\uc774\ud2b8 \uc608\uc815\uc785\ub2c8\ub2e4. #\uc624\ub298\ub3c4\uace0\ub9c8\uc6cc","protected":false,"verified":false,"followers_count":1833,"friends_count":7,"listed_count":14,"favourites_count":20,"statuses_count":1381,"created_at":"Sun Apr 19 21:33:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623674196179091456\/Q8nfD1N1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623674196179091456\/Q8nfD1N1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164524063\/1429496374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"irene_archive","name":"\uc544\uc774\ub9b0 \uc544\uce74\uc774\ube0c","id":3164524063,"id_str":"3164524063","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068611584,"id_str":"663727821068611584","text":"\u041f\u0440\u043e\u0434\u0430\u0436\u0430 Volkswagen Golf, 2000 \u0413\u043e\u0434 \u0432\u044b\u043f\u0443\u0441\u043a\u0430, \u041c\u043e\u043b\u0434\u043e\u0432\u0430, \u0433. \u0411\u0435\u043b\u044c\u0446\u044b, \u0437\u0430 1850 \u20ac - https:\/\/t.co\/bjhzEgsAj7","source":"\u003ca href=\"http:\/\/automd.su\/\" rel=\"nofollow\"\u003eAuto MD\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":894019554,"id_str":"894019554","name":"Auto MD","screen_name":"Automd_su","location":null,"url":"http:\/\/automd.su\/","description":"Auto MD - \u0410\u0432\u0442\u043e\u0440\u044b\u043d\u043e\u043a \u0432 \u041c\u043e\u043b\u0434\u043e\u0432\u0435 \/ Piata Auto din Moldova","protected":false,"verified":false,"followers_count":40,"friends_count":2,"listed_count":10,"favourites_count":0,"statuses_count":353786,"created_at":"Sat Oct 20 20:58:26 +0000 2012","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2742877821\/0563468b9fa40ae816fbae8df5abcde4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2742877821\/0563468b9fa40ae816fbae8df5abcde4_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bjhzEgsAj7","expanded_url":"http:\/\/automd.su\/sale\/498445","display_url":"automd.su\/sale\/498445","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080018666"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821060083712,"id_str":"663727821060083712","text":"@LoLoug \u3042\u306e\u4eba\u2642\u306e\u30dc\u30b1\u308b\u3068\u3053\u308d\u306f\u30dc\u30b1\u3066\u3001\u7de0\u3081\u308b\u3068\u3053\u308d\u306f\u7de0\u3081\u308b\u5177\u5408\u304c\u4e01\u5ea6\u3044\u3044\u3002\u732b\u3082\u30e9\u30e9\u3082\u53ef\u611b\u3044\u3057\u306a('\u0414')","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727412601982976,"in_reply_to_status_id_str":"663727412601982976","in_reply_to_user_id":243569972,"in_reply_to_user_id_str":"243569972","in_reply_to_screen_name":"LoLoug","user":{"id":169023750,"id_str":"169023750","name":"Na","screen_name":"Nagaru_s","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":11,"listed_count":1,"favourites_count":35,"statuses_count":6273,"created_at":"Wed Jul 21 10:29:10 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"787475","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559733536651878400\/Yx5D-Vjg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559733536651878400\/Yx5D-Vjg_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LoLoug","name":"Lo","id":243569972,"id_str":"243569972","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018664"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047492608,"id_str":"663727821047492608","text":"@kusmkson \u547c\u3093\u3060\u30a1\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727019763458048,"in_reply_to_status_id_str":"663727019763458048","in_reply_to_user_id":2312682337,"in_reply_to_user_id_str":"2312682337","in_reply_to_screen_name":"kusmkson","user":{"id":2739082376,"id_str":"2739082376","name":"\u84ee\u306f\u305f\u3093\u307d\u307d\u306b\u306a\u3063\u305f\u3002","screen_name":"rengeth_2","location":"\u95a2\u897f","url":null,"description":"\u30ad\u30bf\u30b7\u30ce\u84ee(@rengethu)\u306e\u5f31\u30da\u30c0\u57a2\u3002\u304b\u3068\u601d\u3063\u305f\u3089\u5be9\u795e\u8005\u3068\u304b\u30d7\u30ed\u30c7\u30e5\u30fc\u30b5\u30fc\u3068\u304b\u30b9\u30af\u30d5\u30a7\u30b9\u3084\u3063\u3066\u305f\u308a\u3059\u308b\u3002 \u5c71\u795e\u6559\u3067\u30a8\u30f3\u30b8\u30e7\u30a4\u75db\u5feb\u30a8\u30d6\u30ea\u30c7\u30a4\u2514(\u314d-\u314d ) \u2518 \u96d1\u98df\u306e\u5730\u96f7\u306a\u3057\u6545\u306b\u7121\u7bc0\u64cd\u306b\u545f\u3044\u3066\u3044\u308b\u306e\u3067\u306a\u3093\u3067\u3082\u8a31\u305b\u308b\u4eba\u5411\u3051\u3002\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":274,"friends_count":322,"listed_count":28,"favourites_count":10342,"statuses_count":20637,"created_at":"Sun Aug 17 05:31:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662601900471119872\/j3Y6ykPb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662601900471119872\/j3Y6ykPb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2739082376\/1440496293","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kusmkson","name":"\u3057\u307f\u677e \u8352\u304f\u308c2","id":2312682337,"id_str":"2312682337","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047603200,"id_str":"663727821047603200","text":"Estava pensando ontem, dnv n consegui falar metade do que eu sentia...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2466518371,"id_str":"2466518371","name":"Suellen Oliveira","screen_name":"susuuoliveiraa","location":null,"url":"http:\/\/v-iciei.tumblr.com","description":"Se permita estar","protected":false,"verified":false,"followers_count":127,"friends_count":86,"listed_count":0,"favourites_count":886,"statuses_count":2600,"created_at":"Sun Apr 27 18:55:03 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462275091795963904\/yOV7YuIU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462275091795963904\/yOV7YuIU.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663526835007934464\/XkjRAx5b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663526835007934464\/XkjRAx5b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2466518371\/1446446696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051703296,"id_str":"663727821051703296","text":"RT @bonsukerin24: \u3010\ud83d\ude47\u62e1\u6563\u5e0c\u671b\ud83d\ude47\u3011\n\u767d\u7fbd\u90fd\u3005\u83ef\u751f\u8a95\u796d\u306e\u76db\u308a\u4e0a\u3052\u30b0\u30c3\u30ba\u304c\u767a\u58f2\u3055\u308c\u307e\u3057\u305f\ud83c\udf89\u2728\n\u4eca\u65e5\u304b\u308911\/15(\u65e5)23\u6642\u307e\u3067\u3067\u3059\ud83d\ude4f\n\n\u3064\u30fc\u3061\u3083\u3093\u306e\u3053\u3068\u304c\u5c11\u3057\u3067\u3082\u8208\u5473\u304c\u3042\u3063\u305f\u308a\u3001\u6c17\u306b\u306a\u308b\u3063\u3066\u65b9\u306f\u662f\u975eT\u30b7\u30e3\u30c4\u304b\u3089\u3067\u3082\ud83d\ude0a\n\n\u751f\u8a95\u796d\u306f12\/6(\u65e5)2\u90e8\u270c\ufe0f\ud83d\udc93 http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223739637,"id_str":"223739637","name":"\u30bf\u30b1\u30ce\u30d5","screen_name":"genjixkp","location":"\u9a0e\u58eb\u56e3\u30fb\u304f\u3059\u306e\u304d\u4f1a","url":null,"description":"\uff3c\u308f\u304c\u307e\u307e\u30d2\u30ed\u30a4\u30f3\uff0f (@kusunoki_mayu)","protected":false,"verified":false,"followers_count":2154,"friends_count":2182,"listed_count":17,"favourites_count":25786,"statuses_count":67301,"created_at":"Tue Dec 07 05:59:09 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662759612324708353\/WJOUK9v5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662759612324708353\/WJOUK9v5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223739637\/1446604863","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653396967424,"id_str":"663727653396967424","text":"\u3010\ud83d\ude47\u62e1\u6563\u5e0c\u671b\ud83d\ude47\u3011\n\u767d\u7fbd\u90fd\u3005\u83ef\u751f\u8a95\u796d\u306e\u76db\u308a\u4e0a\u3052\u30b0\u30c3\u30ba\u304c\u767a\u58f2\u3055\u308c\u307e\u3057\u305f\ud83c\udf89\u2728\n\u4eca\u65e5\u304b\u308911\/15(\u65e5)23\u6642\u307e\u3067\u3067\u3059\ud83d\ude4f\n\n\u3064\u30fc\u3061\u3083\u3093\u306e\u3053\u3068\u304c\u5c11\u3057\u3067\u3082\u8208\u5473\u304c\u3042\u3063\u305f\u308a\u3001\u6c17\u306b\u306a\u308b\u3063\u3066\u65b9\u306f\u662f\u975eT\u30b7\u30e3\u30c4\u304b\u3089\u3067\u3082\ud83d\ude0a\n\n\u751f\u8a95\u796d\u306f12\/6(\u65e5)2\u90e8\u270c\ufe0f\ud83d\udc93 https:\/\/t.co\/QoMI0Zcz7W","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":912473971,"id_str":"912473971","name":"\u307c\u3093\u3059\u3051","screen_name":"bonsukerin24","location":"6262104","url":null,"description":null,"protected":false,"verified":false,"followers_count":800,"friends_count":461,"listed_count":23,"favourites_count":14148,"statuses_count":75578,"created_at":"Mon Oct 29 13:41:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651075813681397760\/dwWAYVl0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651075813681397760\/dwWAYVl0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912473971\/1443641541","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727639178297345,"id_str":"663727639178297345","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727639178297345,"id_str":"663727639178297345","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727639174082561,"id_str":"663727639174082561","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXCUcAEDu1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXCUcAEDu1q.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727639169863681,"id_str":"663727639169863681","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXBUEAEKw6f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXBUEAEKw6f.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727639585095682,"id_str":"663727639585095682","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYkUAAImYtj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYkUAAImYtj.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bonsukerin24","name":"\u307c\u3093\u3059\u3051","id":912473971,"id_str":"912473971","indices":[3,16]}],"symbols":[],"media":[{"id":663727639178297345,"id_str":"663727639178297345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727653396967424,"source_status_id_str":"663727653396967424","source_user_id":912473971,"source_user_id_str":"912473971"}]},"extended_entities":{"media":[{"id":663727639178297345,"id_str":"663727639178297345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXDUwAEzD35.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727653396967424,"source_status_id_str":"663727653396967424","source_user_id":912473971,"source_user_id_str":"912473971"},{"id":663727639174082561,"id_str":"663727639174082561","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXCUcAEDu1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXCUcAEDu1q.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727653396967424,"source_status_id_str":"663727653396967424","source_user_id":912473971,"source_user_id_str":"912473971"},{"id":663727639169863681,"id_str":"663727639169863681","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxXBUEAEKw6f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxXBUEAEKw6f.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727653396967424,"source_status_id_str":"663727653396967424","source_user_id":912473971,"source_user_id_str":"912473971"},{"id":663727639585095682,"id_str":"663727639585095682","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxYkUAAImYtj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxYkUAAImYtj.jpg","url":"https:\/\/t.co\/QoMI0Zcz7W","display_url":"pic.twitter.com\/QoMI0Zcz7W","expanded_url":"http:\/\/twitter.com\/bonsukerin24\/status\/663727653396967424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663727653396967424,"source_status_id_str":"663727653396967424","source_user_id":912473971,"source_user_id_str":"912473971"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043273728,"id_str":"663727821043273728","text":"@ThugzinDaRain isn't Dylan Roof your brother? Your \"family\"?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725436246036480,"in_reply_to_status_id_str":"663725436246036480","in_reply_to_user_id":274222268,"in_reply_to_user_id_str":"274222268","in_reply_to_screen_name":"ThugzinDaRain","user":{"id":2855012083,"id_str":"2855012083","name":"Tony Mo","screen_name":"npmanages","location":"WorldWide like Wes #GML #LA","url":null,"description":"kill cramp and paralyze ALL weak heart conception","protected":false,"verified":false,"followers_count":513,"friends_count":787,"listed_count":26,"favourites_count":6158,"statuses_count":5947,"created_at":"Tue Oct 14 00:57:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654996846369050626\/qAz-ETfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654996846369050626\/qAz-ETfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2855012083\/1414069236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThugzinDaRain","name":"Marcus","id":274222268,"id_str":"274222268","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047529473,"id_str":"663727821047529473","text":"RT @Dead_M3mory: Yo guys! Anyone who shares this picture around, I'll be extremely grateful! \u2764\ufe0f - Credit (@madmanmatt90) https:\/\/t.co\/mKxte\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2424819918,"id_str":"2424819918","name":"Brenda Cuevas","screen_name":"xcsempiternalcx","location":null,"url":null,"description":"Alternitive?","protected":false,"verified":false,"followers_count":264,"friends_count":503,"listed_count":0,"favourites_count":1797,"statuses_count":76,"created_at":"Thu Apr 03 04:09:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617084643230093312\/pg8q5aE0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617084643230093312\/pg8q5aE0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2424819918\/1439095932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 00:15:30 +0000 2015","id":662060634276765696,"id_str":"662060634276765696","text":"Yo guys! Anyone who shares this picture around, I'll be extremely grateful! \u2764\ufe0f - Credit (@madmanmatt90) https:\/\/t.co\/mKxteHR7Pg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474437101,"id_str":"474437101","name":"Jack.The.Ripper","screen_name":"Dead_M3mory","location":"South East, England","url":"http:\/\/younow.com\/jack.the.ripper","description":"Hello world. I'm Jack. I'm The Pumpkin King. I'm a professional cunt. I never let go. I got a jar of dirt. I like the YouNow thing a lot. #RipperCult","protected":false,"verified":false,"followers_count":10242,"friends_count":7910,"listed_count":10,"favourites_count":8421,"statuses_count":23845,"created_at":"Thu Jan 26 00:26:46 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181078984\/1relVDBp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181078984\/1relVDBp.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661854098594074624\/HXsG9m_i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661854098594074624\/HXsG9m_i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474437101\/1444030880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":145,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"madmanmatt90","name":"matt evans","id":162762957,"id_str":"162762957","indices":[89,102]}],"symbols":[],"media":[{"id":662060627486244868,"id_str":"662060627486244868","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","url":"https:\/\/t.co\/mKxteHR7Pg","display_url":"pic.twitter.com\/mKxteHR7Pg","expanded_url":"http:\/\/twitter.com\/Dead_M3mory\/status\/662060634276765696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662060627486244868,"id_str":"662060627486244868","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","url":"https:\/\/t.co\/mKxteHR7Pg","display_url":"pic.twitter.com\/mKxteHR7Pg","expanded_url":"http:\/\/twitter.com\/Dead_M3mory\/status\/662060634276765696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dead_M3mory","name":"Jack.The.Ripper","id":474437101,"id_str":"474437101","indices":[3,15]},{"screen_name":"madmanmatt90","name":"matt evans","id":162762957,"id_str":"162762957","indices":[106,119]}],"symbols":[],"media":[{"id":662060627486244868,"id_str":"662060627486244868","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","url":"https:\/\/t.co\/mKxteHR7Pg","display_url":"pic.twitter.com\/mKxteHR7Pg","expanded_url":"http:\/\/twitter.com\/Dead_M3mory\/status\/662060634276765696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662060634276765696,"source_status_id_str":"662060634276765696","source_user_id":474437101,"source_user_id_str":"474437101"}]},"extended_entities":{"media":[{"id":662060627486244868,"id_str":"662060627486244868","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTAcogkXAAQ_2pj.jpg","url":"https:\/\/t.co\/mKxteHR7Pg","display_url":"pic.twitter.com\/mKxteHR7Pg","expanded_url":"http:\/\/twitter.com\/Dead_M3mory\/status\/662060634276765696\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662060634276765696,"source_status_id_str":"662060634276765696","source_user_id":474437101,"source_user_id_str":"474437101"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064286208,"id_str":"663727821064286208","text":"RT @TRANSTV_CORP: #NowSinging Sewindu - Tulus #TulusTransTV #MerduUntukmu https:\/\/t.co\/FLgISTBOEl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":837114469,"id_str":"837114469","name":"Vla","screen_name":"cholva_dian","location":"@Foxacon48","url":"http:\/\/cholvadian.blogspot.com","description":"DyFiRidYas | #Wiseleader19","protected":false,"verified":false,"followers_count":299,"friends_count":254,"listed_count":0,"favourites_count":102,"statuses_count":6488,"created_at":"Fri Sep 21 06:00:13 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000079072994\/89add2284e9ac78d7eb0d617d0ab639c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000079072994\/89add2284e9ac78d7eb0d617d0ab639c.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642594675719671808\/elgq5L7__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642594675719671808\/elgq5L7__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/837114469\/1413350754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:51:03 +0000 2015","id":663715427437051905,"id_str":"663715427437051905","text":"#NowSinging Sewindu - Tulus #TulusTransTV #MerduUntukmu https:\/\/t.co\/FLgISTBOEl","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125225621,"id_str":"125225621","name":"TRANS TV","screen_name":"TRANSTV_CORP","location":null,"url":"http:\/\/www.transtv.co.id","description":"Official Account of TRANS TV Info & Layanan follow @TRANSTV_PR Email : public.relations@transtv.co.id","protected":false,"verified":true,"followers_count":3998725,"friends_count":428,"listed_count":3728,"favourites_count":58,"statuses_count":51908,"created_at":"Mon Mar 22 03:47:30 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151734185\/OoO0HmJL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151734185\/OoO0HmJL.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/413161495359283201\/6uOYfmb5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/413161495359283201\/6uOYfmb5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125225621\/1447057516","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":25,"entities":{"hashtags":[{"text":"NowSinging","indices":[0,11]},{"text":"TulusTransTV","indices":[28,41]},{"text":"MerduUntukmu","indices":[42,55]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715415516803072,"id_str":"663715415516803072","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","url":"https:\/\/t.co\/FLgISTBOEl","display_url":"pic.twitter.com\/FLgISTBOEl","expanded_url":"http:\/\/twitter.com\/TRANSTV_CORP\/status\/663715427437051905\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715415516803072,"id_str":"663715415516803072","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","url":"https:\/\/t.co\/FLgISTBOEl","display_url":"pic.twitter.com\/FLgISTBOEl","expanded_url":"http:\/\/twitter.com\/TRANSTV_CORP\/status\/663715427437051905\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NowSinging","indices":[18,29]},{"text":"TulusTransTV","indices":[46,59]},{"text":"MerduUntukmu","indices":[60,73]}],"urls":[],"user_mentions":[{"screen_name":"TRANSTV_CORP","name":"TRANS TV","id":125225621,"id_str":"125225621","indices":[3,16]}],"symbols":[],"media":[{"id":663715415516803072,"id_str":"663715415516803072","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","url":"https:\/\/t.co\/FLgISTBOEl","display_url":"pic.twitter.com\/FLgISTBOEl","expanded_url":"http:\/\/twitter.com\/TRANSTV_CORP\/status\/663715427437051905\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663715427437051905,"source_status_id_str":"663715427437051905","source_user_id":125225621,"source_user_id_str":"125225621"}]},"extended_entities":{"media":[{"id":663715415516803072,"id_str":"663715415516803072","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9p2XUcAA1kEY.jpg","url":"https:\/\/t.co\/FLgISTBOEl","display_url":"pic.twitter.com\/FLgISTBOEl","expanded_url":"http:\/\/twitter.com\/TRANSTV_CORP\/status\/663715427437051905\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663715427437051905,"source_status_id_str":"663715427437051905","source_user_id":125225621,"source_user_id_str":"125225621"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064429568,"id_str":"663727821064429568","text":"RT @klemoel: Pr\u00e8s de 20% de l\u2019\u00e9lectrom\u00e9nager mis au rebut est r\u00e9parable. RDV \u00e0 l'atelier \u00e9ph\u00e9m\u00e8re du r\u00e9seau Envie @Envie_org https:\/\/t.co\/h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2282235277,"id_str":"2282235277","name":"Parentelise","screen_name":"Parentelise","location":null,"url":null,"description":"#socinn,,#zerowaste, #circulareconomy, #impinv","protected":false,"verified":false,"followers_count":65,"friends_count":159,"listed_count":8,"favourites_count":1,"statuses_count":86,"created_at":"Wed Jan 08 14:38:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429337862719299586\/gvePwfTi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429337862719299586\/gvePwfTi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2282235277\/1394116910","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:26:29 +0000 2015","id":663663947199995906,"id_str":"663663947199995906","text":"Pr\u00e8s de 20% de l\u2019\u00e9lectrom\u00e9nager mis au rebut est r\u00e9parable. RDV \u00e0 l'atelier \u00e9ph\u00e9m\u00e8re du r\u00e9seau Envie @Envie_org https:\/\/t.co\/hns7S61G1Y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123277182,"id_str":"123277182","name":"Katy Le Mo\u00ebl","screen_name":"klemoel","location":"Paris","url":null,"description":"Journaliste #consommation #droit Information #consommateurs Ma revue de presse","protected":false,"verified":false,"followers_count":278,"friends_count":577,"listed_count":52,"favourites_count":43,"statuses_count":2117,"created_at":"Mon Mar 15 15:29:32 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6B66","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000091596438\/f20b24a9ca5a2959b16c7fe340baf14a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000091596438\/f20b24a9ca5a2959b16c7fe340baf14a.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000574590637\/acc2df93cff9d974c2d1dc4478a1c7fe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000574590637\/acc2df93cff9d974c2d1dc4478a1c7fe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123277182\/1381387892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Envie_org","name":"F\u00e9d\u00e9ration ENVIE","id":2695431222,"id_str":"2695431222","indices":[101,111]}],"symbols":[],"media":[{"id":663663946268811264,"id_str":"663663946268811264","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","url":"https:\/\/t.co\/hns7S61G1Y","display_url":"pic.twitter.com\/hns7S61G1Y","expanded_url":"http:\/\/twitter.com\/klemoel\/status\/663663947199995906\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":809,"h":581,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663663946268811264,"id_str":"663663946268811264","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","url":"https:\/\/t.co\/hns7S61G1Y","display_url":"pic.twitter.com\/hns7S61G1Y","expanded_url":"http:\/\/twitter.com\/klemoel\/status\/663663947199995906\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":809,"h":581,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"klemoel","name":"Katy Le Mo\u00ebl","id":123277182,"id_str":"123277182","indices":[3,11]},{"screen_name":"Envie_org","name":"F\u00e9d\u00e9ration ENVIE","id":2695431222,"id_str":"2695431222","indices":[114,124]}],"symbols":[],"media":[{"id":663663946268811264,"id_str":"663663946268811264","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","url":"https:\/\/t.co\/hns7S61G1Y","display_url":"pic.twitter.com\/hns7S61G1Y","expanded_url":"http:\/\/twitter.com\/klemoel\/status\/663663947199995906\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":809,"h":581,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}},"source_status_id":663663947199995906,"source_status_id_str":"663663947199995906","source_user_id":123277182,"source_user_id_str":"123277182"}]},"extended_entities":{"media":[{"id":663663946268811264,"id_str":"663663946268811264","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXO18eWIAAmUUH.jpg","url":"https:\/\/t.co\/hns7S61G1Y","display_url":"pic.twitter.com\/hns7S61G1Y","expanded_url":"http:\/\/twitter.com\/klemoel\/status\/663663947199995906\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":809,"h":581,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}},"source_status_id":663663947199995906,"source_status_id_str":"663663947199995906","source_user_id":123277182,"source_user_id_str":"123277182"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068587008,"id_str":"663727821068587008","text":"\u0412\u044b\u0441\u0442\u0430\u0432\u043a\u0430 \u0441\u0442\u0438\u043b\u044c\u043d\u044b\u0445 \u0430\u043a\u0441\u0435\u0441\u0441\u0443\u0430\u0440\u043e\u0432 \u0438 \u0434\u0438\u0437\u0430\u0439\u043d\u0435\u0440\u0441\u043a\u043e\u0439","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441984047,"id_str":"441984047","name":"\u0421\u043a\u0440\u043e\u0431\u043e\u0442 \u041b\u0435\u0432","screen_name":"SkrobotLev","location":"\u0412\u0435\u0441\u044c\u0435\u0433\u043e\u043d\u0441\u043a","url":"https:\/\/twitter.com\/skrobotlev","description":"\u041d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u0441\u0442\u044b\u0434\u0438\u0441\u044c \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u0442\u044b \u0434\u0443\u043c\u0430\u0435\u0448\u044c \u043e \u0441\u0432\u043e\u0435\u0439 \u0436\u0435\u043d\u0435. \u041e\u043d\u0430 \u043e \u0442\u0435\u0431\u0435 \u0438 \u043d\u0435 \u0442\u043e \u0435\u0449\u0435 \u0434\u0443\u043c\u0430\u0435\u0442","protected":false,"verified":false,"followers_count":8723,"friends_count":715,"listed_count":115,"favourites_count":106,"statuses_count":18633,"created_at":"Tue Dec 20 16:39:58 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719909773\/74__4__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719909773\/74__4__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441984047\/1436809302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080018666"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043441664,"id_str":"663727821043441664","text":"\u0434\u0438\u0432\u0430\u043d 2 \u043c\u0435\u0442\u0440\u0430 \u041c\u043e\u0441\u043a\u0432\u0430 https:\/\/t.co\/vU0vUrAiqt","source":"\u003ca href=\"http:\/\/zapchasti25.ru\/\" rel=\"nofollow\"\u003eDemo-Ferma\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347362738,"id_str":"2347362738","name":"Kahikina Ahrens","screen_name":"lezovexupak","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":543,"friends_count":608,"listed_count":0,"favourites_count":0,"statuses_count":1954,"created_at":"Sun Feb 16 19:53:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439399452889997312\/mr5ZNowi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439399452889997312\/mr5ZNowi_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vU0vUrAiqt","expanded_url":"http:\/\/sladiv.dyndns.org\/divan\/p\/detskie-divani-ve-moskovskaya-oblast-\/","display_url":"sladiv.dyndns.org\/divan\/p\/detski\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064380417,"id_str":"663727821064380417","text":"RT @httpsignos: provavelmente ele nao vai SEGUIR suas regras, mas vai ficar encantado com sua atitude e sua auto confian\u00e7a, pq aquariano fi\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3358800022,"id_str":"3358800022","name":"VICKY","screen_name":"NIALL0IRINHO","location":"Pedra Branca,Brasil","url":null,"description":"\u2764\ufe0f","protected":false,"verified":false,"followers_count":1360,"friends_count":1901,"listed_count":1,"favourites_count":10814,"statuses_count":12702,"created_at":"Sat Jul 04 14:54:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663022565103792128\/GSvHyJR5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663022565103792128\/GSvHyJR5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3358800022\/1443274360","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:21:23 +0000 2015","id":663451270452256769,"id_str":"663451270452256769","text":"provavelmente ele nao vai SEGUIR suas regras, mas vai ficar encantado com sua atitude e sua auto confian\u00e7a, pq aquariano fica doido com isso","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":744119384,"id_str":"744119384","name":".","screen_name":"httpsignos","location":null,"url":"http:\/\/ask.fm\/askhttpsignos","description":"n\u00e3o sou a m\u00e3e din\u00c1H mas to quase l\u00c1H","protected":false,"verified":false,"followers_count":8241,"friends_count":47,"listed_count":15,"favourites_count":1753,"statuses_count":20730,"created_at":"Wed Aug 08 01:06:29 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625022132490211328\/M5eoJFhS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625022132490211328\/M5eoJFhS.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7DA869","profile_text_color":"537D6F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650778929624686592\/JO1HfNRQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650778929624686592\/JO1HfNRQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744119384\/1440857108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"httpsignos","name":".","id":744119384,"id_str":"744119384","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030735872,"id_str":"663727821030735872","text":"@rvstupidcupid \uac24\uc77c\uac78\uc5ec","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727750369316865,"in_reply_to_status_id_str":"663727750369316865","in_reply_to_user_id":3219414122,"in_reply_to_user_id_str":"3219414122","in_reply_to_screen_name":"rvstupidcupid","user":{"id":2778588637,"id_str":"2778588637","name":"\uc6b0\uc601","screen_name":"DAI5Y_WooYoung","location":"Bang Minah \u2661","url":"http:\/\/Minah.co.kr","description":"\ubbfc\uc544\ub2d8 @Girls_Day_Minah \/ \uae30\uc5b5\ud574\uc918\uc11c \uace0\ub9c8\uc6cc","protected":false,"verified":false,"followers_count":148,"friends_count":106,"listed_count":0,"favourites_count":78,"statuses_count":4005,"created_at":"Fri Aug 29 14:18:31 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658660533554450432\/EdLT0BIG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658660533554450432\/EdLT0BIG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778588637\/1445871900","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rvstupidcupid","name":"\ubc29\ud050\ud2b8\u270c","id":3219414122,"id_str":"3219414122","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080018657"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034905600,"id_str":"663727821034905600","text":"RT @nupi_com: https:\/\/t.co\/O7xBuAgYfz \n\u30bb\u30c3\u30af\u30b9\u3078\u306eConsent\uff08\u540c\u610f\uff09\u3092\u300c\u7d05\u8336\u3092\u85a6\u3081\u305f\u5f8c\u306e\u76f8\u624b\u306e\u53cd\u5fdc\u300d\u306b\u4f8b\u3048\u3001\u3057\u3064\u3053\u3044\u304f\u3089\u3044\u306b\u304f\u3069\u304f\u3069\u8aac\u660e\u3059\u308b\u6700\u9ad8\u306e\u82f1\u56fd\u30e6\u30fc\u30e2\u30a2\u30d3\u30c7\u30aa\uff08\u82f1\u56fd\u8b66\u5bdf\u5236\u4f5c\uff09 https:\/\/t.co\/ZydY1DpAPO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70871976,"id_str":"70871976","name":"Shoko Ogushi","screen_name":"vostokintheair","location":"Saga & Fukuoka, Japan","url":"http:\/\/www.shokoogushi.com\/","description":"Photographing Men Behind the Scenes. My second photography book \u7f8e\u5c11\u5e74\u8ad6 is now available in bookshops and amazon. https:\/\/www.amazon.co.jp\/dp\/4882982005","protected":false,"verified":false,"followers_count":4427,"friends_count":1952,"listed_count":329,"favourites_count":10107,"statuses_count":299558,"created_at":"Wed Sep 02 03:33:28 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/51726026\/17SAILORSRUN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/51726026\/17SAILORSRUN.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626646210\/vostok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626646210\/vostok_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70871976\/1398210479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:10 +0000 2015","id":663718977080700928,"id_str":"663718977080700928","text":"https:\/\/t.co\/O7xBuAgYfz \n\u30bb\u30c3\u30af\u30b9\u3078\u306eConsent\uff08\u540c\u610f\uff09\u3092\u300c\u7d05\u8336\u3092\u85a6\u3081\u305f\u5f8c\u306e\u76f8\u624b\u306e\u53cd\u5fdc\u300d\u306b\u4f8b\u3048\u3001\u3057\u3064\u3053\u3044\u304f\u3089\u3044\u306b\u304f\u3069\u304f\u3069\u8aac\u660e\u3059\u308b\u6700\u9ad8\u306e\u82f1\u56fd\u30e6\u30fc\u30e2\u30a2\u30d3\u30c7\u30aa\uff08\u82f1\u56fd\u8b66\u5bdf\u5236\u4f5c\uff09 https:\/\/t.co\/ZydY1DpAPO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197321977,"id_str":"3197321977","name":"\u306c\u3074\u5b50","screen_name":"nupi_com","location":"\u306a\u306b\u306c\u306d\u306e","url":null,"description":"\u597d\u304d\u306a\u4eba\u306e\u597d\u304d\u306a\u5f62\u306e\u77f3","protected":false,"verified":false,"followers_count":358,"friends_count":203,"listed_count":10,"favourites_count":3743,"statuses_count":3686,"created_at":"Sat May 16 10:38:15 +0000 2015","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603815871270662144\/jK84PmpI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603815871270662144\/jK84PmpI.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607744790902358016\/kQ5U6Jvr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607744790902358016\/kQ5U6Jvr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3197321977\/1431773823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":31,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O7xBuAgYfz","expanded_url":"http:\/\/metro.co.uk\/2015\/10\/28\/this-new-sexual-consent-and-tea-video-from-the-police-is-brilliant-5466392\/#4583678641001%234583678641001#4583678641001","display_url":"metro.co.uk\/2015\/10\/28\/thi\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663718970977992704,"id_str":"663718970977992704","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718970977992704,"id_str":"663718970977992704","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":663718972617965569,"id_str":"663718972617965569","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA45mUwAEYo8j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA45mUwAEYo8j.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663718974845161472,"id_str":"663718974845161472","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA5B5VEAA5vIC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA5B5VEAA5vIC.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O7xBuAgYfz","expanded_url":"http:\/\/metro.co.uk\/2015\/10\/28\/this-new-sexual-consent-and-tea-video-from-the-police-is-brilliant-5466392\/#4583678641001%234583678641001#4583678641001","display_url":"metro.co.uk\/2015\/10\/28\/thi\u2026","indices":[14,37]}],"user_mentions":[{"screen_name":"nupi_com","name":"\u306c\u3074\u5b50","id":3197321977,"id_str":"3197321977","indices":[3,12]}],"symbols":[],"media":[{"id":663718970977992704,"id_str":"663718970977992704","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663718977080700928,"source_status_id_str":"663718977080700928","source_user_id":3197321977,"source_user_id_str":"3197321977"}]},"extended_entities":{"media":[{"id":663718970977992704,"id_str":"663718970977992704","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA4zfUwAAmFvm.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663718977080700928,"source_status_id_str":"663718977080700928","source_user_id":3197321977,"source_user_id_str":"3197321977"},{"id":663718972617965569,"id_str":"663718972617965569","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA45mUwAEYo8j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA45mUwAEYo8j.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663718977080700928,"source_status_id_str":"663718977080700928","source_user_id":3197321977,"source_user_id_str":"3197321977"},{"id":663718974845161472,"id_str":"663718974845161472","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA5B5VEAA5vIC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA5B5VEAA5vIC.jpg","url":"https:\/\/t.co\/ZydY1DpAPO","display_url":"pic.twitter.com\/ZydY1DpAPO","expanded_url":"http:\/\/twitter.com\/nupi_com\/status\/663718977080700928\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663718977080700928,"source_status_id_str":"663718977080700928","source_user_id":3197321977,"source_user_id_str":"3197321977"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064400896,"id_str":"663727821064400896","text":"Hunting rabbits to get the perfect shot... compositionally https:\/\/t.co\/uFInKQy8ot","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58890484,"id_str":"58890484","name":"Steven W. Krull","screen_name":"SWKrullImaging","location":"Colorado","url":"http:\/\/steve-krull.artistwebsites.com\/","description":"Sports and nature photographer and writer in Colorado contributes articles to the Examiner and various stock photo agencies including iStock \/ Getty.","protected":false,"verified":false,"followers_count":866,"friends_count":1986,"listed_count":38,"favourites_count":127,"statuses_count":15508,"created_at":"Tue Jul 21 19:22:47 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000660961685\/31b4c02befc5fb2d507b3724835b81d9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000660961685\/31b4c02befc5fb2d507b3724835b81d9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58890484\/1379777723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uFInKQy8ot","expanded_url":"http:\/\/fb.me\/4ae2NiP0e","display_url":"fb.me\/4ae2NiP0e","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034881027,"id_str":"663727821034881027","text":"\u5451\u307f\u306b\u884c\u304d\u305f\u3044\u3051\u3069\u3042\u3055\u308a\u3068\u5869\u304c\u3082\u3046\u306a\u3093\u304b\u304a\u3064\u307e\u307f\u307f\u305f\u3044(\uff1f)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145620508,"id_str":"145620508","name":"\u3057\u304a","screen_name":"oshiochang","location":"\u672d\u5e4c","url":"http:\/\/twpf.jp\/oshiochang","description":"\u3075\u3041\u307c\u5927\u597d\u304d\u30cf\u30c3\u30d4\u30fc\u91ce\u90ce\u3067\u3059\u3002\u30a8\u30d3\u30c0\u30f3\u3068\u3044\u3046\u5929\u4f7f\u306e\u96c6\u307e\u308a\u3092\u3086\u308b\u304f\u63a8\u3059\u304a\u4ed5\u4e8b\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u76bf\u7279\u6025\u307e\u30fc\/5\u63a8\u3057 https:\/\/twitter.com\/sd_bt\/status\/663357504407998464","protected":false,"verified":false,"followers_count":70,"friends_count":129,"listed_count":4,"favourites_count":5541,"statuses_count":35444,"created_at":"Wed May 19 12:17:26 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"162140","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"EB3455","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659687850019917824\/faDfdWr-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659687850019917824\/faDfdWr-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145620508\/1446898606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821034881025,"id_str":"663727821034881025","text":"@tai_p_ \n\u306a\u3093\u304b\u3001\u304a\u3082\u308d\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727645050298370,"in_reply_to_status_id_str":"663727645050298370","in_reply_to_user_id":4147095019,"in_reply_to_user_id_str":"4147095019","in_reply_to_screen_name":"tai_p_","user":{"id":4178468713,"id_str":"4178468713","name":"\u6e4a\u4eae\u4ecb","screen_name":"No_1_Ryosuke","location":"\u548c\u771f\u3084\u552f\u305f\u3061\u304c\u5c45\u308c\u3070\u4ffa\u306f\u5e78\u305b\u3002","url":null,"description":"\u6e4a\u4e5f \u904a\u3073\u4eba \u5927\u5207\u4e0d\u8981 \u4e00\u822c\u62d2\u5426 \u5869","protected":false,"verified":false,"followers_count":15,"friends_count":16,"listed_count":0,"favourites_count":7,"statuses_count":152,"created_at":"Mon Nov 09 10:51:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663670685164695552\/QaMsJR0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663670685164695552\/QaMsJR0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4178468713\/1447066396","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tai_p_","name":"\uff8c\uff7c\uff9e\uff76\uff9e\uff94 \uff80\uff72\uff7d\uff79","id":4147095019,"id_str":"4147095019","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018658"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821056024576,"id_str":"663727821056024576","text":"Monday thought... https:\/\/t.co\/izSu5K6vFq","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290436939,"id_str":"3290436939","name":"StLaurence Rowington","screen_name":"rowingtonchurch","location":"Rowington","url":null,"description":"St Laurence Church Rowington Warwickshire","protected":false,"verified":false,"followers_count":21,"friends_count":51,"listed_count":2,"favourites_count":0,"statuses_count":93,"created_at":"Tue May 19 21:08:56 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600772094041956354\/k6UbZghB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600772094041956354\/k6UbZghB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/izSu5K6vFq","expanded_url":"http:\/\/fb.me\/uaSuZOT9","display_url":"fb.me\/uaSuZOT9","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821043318784,"id_str":"663727821043318784","text":"\uff1f\uff1f","source":"\u003ca href=\"https:\/\/twitter.com\/ten_kisi_bot\" rel=\"nofollow\"\u003e\u3066\u3093\u304d\u3057bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748408973,"id_str":"2748408973","name":"bot\u306b\u6ca1\u982d\uff57","screen_name":"ten_kisi_bot","location":"\u3066\u3093\u304d\u3057","url":"https:\/\/github.com\/tenkisi\/markovtweet","description":"\u4e94\u5206\u306b\u4e00\u56de\u81ea\u52d5\u751f\u6210\u3055\u308c\u305f\u6587\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u3057\u3066\u308b\u4eba\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u4f7f\u3046\u306e\u3067\u6ce8\u610f\u3002 \u4f5c\u8005(@ten_kisi)\u306e\u304b\u3051\u304c\u3048\u306e\u306a\u3044\u305f\u3063\u305f\u4e00\u4eba\u306e\u53cb\u9054\u3002","protected":false,"verified":false,"followers_count":756,"friends_count":469,"listed_count":53,"favourites_count":14797,"statuses_count":123343,"created_at":"Wed Aug 20 07:00:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623120921683886080\/ngkm2vrS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623120921683886080\/ngkm2vrS_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018660"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051707392,"id_str":"663727821051707392","text":"@Victoria__EXO yes baby I will \ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713978238017536,"in_reply_to_status_id_str":"663713978238017536","in_reply_to_user_id":1464705643,"in_reply_to_user_id_str":"1464705643","in_reply_to_screen_name":"Victoria__EXO","user":{"id":1153392199,"id_str":"1153392199","name":"yuetwah","screen_name":"Swifty_1312","location":"Mars","url":null,"description":"lalalalalala","protected":false,"verified":false,"followers_count":112,"friends_count":97,"listed_count":1,"favourites_count":2224,"statuses_count":2457,"created_at":"Wed Feb 06 08:41:00 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661862757663244289\/y1jQ7aXD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661862757663244289\/y1jQ7aXD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1153392199\/1446824673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Victoria__EXO","name":"vic","id":1464705643,"id_str":"1464705643","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068435456,"id_str":"663727821068435456","text":"RT @mrhs_168: \u9ad8\u6821\u306e\u9803\u306e\u82f1\u8a9e\u6559\u5e2b\u306b\u300cJ-Pop\u3058\u3083\u306a\u304f\u3066\u6d0b\u697d\u3092\u8074\u3051\u3002\u82f1\u8a9e\u306e\u52c9\u5f37\u306b\u306a\u308b\u305e\u300d\u3068\u8a00\u308f\u308c\u305f\u306e\u3067\u6d0b\u697d\u3092\u8074\u304d\u306f\u3058\u3081\u305f\u3093\u3060\u3051\u3069\u3001\u305d\u306e1\u5e74\u5f8c\u306b\u306f\u30b9\u30ed\u30c3\u30d3\u30f3\u30b0\u30fb\u30b0\u30ea\u30c3\u30b9\u30eb\u3068\u304b\u8074\u3044\u3066\u305f\u304b\u3089\u82f1\u8a9e\u306e\u52c9\u5f37\u306b\u306f\u306a\u3089\u306a\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/bit.ly\/UDldit\" rel=\"nofollow\"\u003eSaezuri\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1574868210,"id_str":"1574868210","name":"\u306f\u3058\u3063\u3053\u72ac","screen_name":"hophead_dog","location":"\u306f\u3058\u3063\u3053\u3050\u3089\u3057","url":null,"description":"\u30b9\u30fc\u30d1\u30fc\u30d3\u30fc\u30eb\u30af\u30ba, Craftbeer, Beer, PattiSmith, Morrissey, NickCave, Fugazi, SergeGainsbourg, UK\/US Indie, BABYMETAL, \u30c4\u30c1\u30e4\u30cb\u30dc\u30f3\u30c9, \u4e43\u6728\u574246","protected":false,"verified":false,"followers_count":634,"friends_count":778,"listed_count":15,"favourites_count":2966,"statuses_count":22944,"created_at":"Sun Jul 07 10:56:13 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000170891853\/jMZW_Aso.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000170891853\/jMZW_Aso.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644217806452453376\/AoBX-jbm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644217806452453376\/AoBX-jbm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1574868210\/1390133696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:29 +0000 2015","id":663724093707948032,"id_str":"663724093707948032","text":"\u9ad8\u6821\u306e\u9803\u306e\u82f1\u8a9e\u6559\u5e2b\u306b\u300cJ-Pop\u3058\u3083\u306a\u304f\u3066\u6d0b\u697d\u3092\u8074\u3051\u3002\u82f1\u8a9e\u306e\u52c9\u5f37\u306b\u306a\u308b\u305e\u300d\u3068\u8a00\u308f\u308c\u305f\u306e\u3067\u6d0b\u697d\u3092\u8074\u304d\u306f\u3058\u3081\u305f\u3093\u3060\u3051\u3069\u3001\u305d\u306e1\u5e74\u5f8c\u306b\u306f\u30b9\u30ed\u30c3\u30d3\u30f3\u30b0\u30fb\u30b0\u30ea\u30c3\u30b9\u30eb\u3068\u304b\u8074\u3044\u3066\u305f\u304b\u3089\u82f1\u8a9e\u306e\u52c9\u5f37\u306b\u306f\u306a\u3089\u306a\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96378622,"id_str":"96378622","name":"mrhs","screen_name":"mrhs_168","location":null,"url":"https:\/\/filmarks.com\/user\/mrhs168","description":"I Am Bot And Proud","protected":false,"verified":false,"followers_count":556,"friends_count":465,"listed_count":17,"favourites_count":46568,"statuses_count":7262,"created_at":"Sat Dec 12 17:07:02 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000062013330\/0f356a023297502fba8dcd8f3d901d7b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000062013330\/0f356a023297502fba8dcd8f3d901d7b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420901615009140736\/of06URcP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420901615009140736\/of06URcP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96378622\/1397710420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mrhs_168","name":"mrhs","id":96378622,"id_str":"96378622","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018666"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030723588,"id_str":"663727821030723588","text":"https:\/\/t.co\/ELySJKWsQx","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":273836743,"id_str":"273836743","name":"shashi kiran","screen_name":"shashijackie","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":70,"listed_count":2,"favourites_count":3,"statuses_count":7276,"created_at":"Tue Mar 29 07:55:39 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633799727\/cmf77ms4g0isdj4hiop4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633799727\/cmf77ms4g0isdj4hiop4.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1359196810\/images_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1359196810\/images_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ELySJKWsQx","expanded_url":"http:\/\/fb.me\/72sr0pA5f","display_url":"fb.me\/72sr0pA5f","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018657"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821056057344,"id_str":"663727821056057344","text":"RT @Ren_Devine: I got a pretty high-up belly button \ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958507837,"id_str":"2958507837","name":"Morphine Toe","screen_name":"blumpkinblumpy","location":null,"url":null,"description":"peace chaos anarchy 18+","protected":false,"verified":false,"followers_count":771,"friends_count":426,"listed_count":16,"favourites_count":29460,"statuses_count":4153,"created_at":"Sat Jan 03 14:42:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639905746944163841\/FVMfKoQS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639905746944163841\/FVMfKoQS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958507837\/1432769452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:24 +0000 2015","id":663725831072518145,"id_str":"663725831072518145","text":"I got a pretty high-up belly button \ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":888962821,"id_str":"888962821","name":"CUCUMBER WARMER","screen_name":"Ren_Devine","location":"Darkinjung land -Central Coast","url":null,"description":"a real nice lady","protected":false,"verified":false,"followers_count":1052,"friends_count":696,"listed_count":18,"favourites_count":23142,"statuses_count":21371,"created_at":"Thu Oct 18 14:25:22 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634738817103097858\/ykdEELnR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634738817103097858\/ykdEELnR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/888962821\/1436275509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ren_Devine","name":"CUCUMBER WARMER","id":888962821,"id_str":"888962821","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064310784,"id_str":"663727821064310784","text":"wonho tuh kayak seokjin jaman dulu ya. hobi banget minta maaf. someday youll realize youre important to us and its okay not to be okay :(","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386466600,"id_str":"386466600","name":"\u00e9lodie","screen_name":"dopamine93","location":"EXO9 | MONSTAX","url":null,"description":null,"protected":false,"verified":false,"followers_count":189,"friends_count":123,"listed_count":2,"favourites_count":741,"statuses_count":32538,"created_at":"Fri Oct 07 10:22:30 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470071889994334211\/5Os14Jsm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470071889994334211\/5Os14Jsm.jpeg","profile_background_tile":false,"profile_link_color":"5FCCED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662943187745439744\/4fbjnXa1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662943187745439744\/4fbjnXa1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386466600\/1438474955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821055881216,"id_str":"663727821055881216","text":"@syd_pm \u2003\u2003\u6e1a\u3067\u4e00\u756a\u53ef\u611b\u3048\u5973\u306e\u5b50\u3001\u8cb4\u65b9\u306f\u8ab0\u3092\u6307\u523a\u3059\u3093\uff1f\u3068\u304b\u805e\u3044\u3068\u304d\u306a\u304c\u3089\u4ed6\u306e\u5b50\u9078\u3093\u3060\u3089\u7d17.\u82f1\u3001\u59ac\u3044\u3066\u307e\u3046\u3002\u4f55\u3067\u304b\u3063\u3066\uff1f\u8cb4\u65b9\u304c\u597d\u304d\u3084\u304b\u3089\u306b\u6c7a\u307e\u3063\u3068\u308b\u3084\u308d\u3002\u590f\u306e\u604b\u306f\u3001\u7d17.\u82f1\u3068\u3057\u3088\u3046\uff1f\uff65\uff65\uff65\uff65\uff65\uff65\uff65\uff65\uff65\u62e1\u6563\u304a\u304a\u304d\u306b \u304a\u8fce\u3048\u3067\u3059 \ud83d\ude0a\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4179938113,"in_reply_to_user_id_str":"4179938113","in_reply_to_screen_name":"syd_pm","user":{"id":4155903678,"id_str":"4155903678","name":"( \uff0b+ ---- sE @ \u2765\u2765 )","screen_name":"rsNem_","location":"\u306a\u304c\u305b\u308c\u3093\u304f\u3093 10.26","url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":35,"listed_count":0,"favourites_count":38,"statuses_count":353,"created_at":"Sat Nov 07 10:10:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662963204583092224\/gzlHFNDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662963204583092224\/gzlHFNDD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4155903678\/1446999329","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syd_pm","name":"sy","id":4179938113,"id_str":"4179938113","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018663"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821047525376,"id_str":"663727821047525376","text":"RT @Kr_been_39: \u3060\u308a\u301c\n\u3051\u3064\u304c\u304b\u3044\u301c http:\/\/t.co\/KvyIFMG26T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3064534068,"id_str":"3064534068","name":"\u305f\u3051\u3046\u3061\u3086\u30fc\u3068\u3002","screen_name":"takeuchi62","location":null,"url":null,"description":"\u632f\u5fb3\u9ad8\u68211\u5e74\u6a5f\u68b0\u79d1\/\u91ce\u7403\u90e8\/\u4e09\u4ee3\u76ee\u3089\u3076","protected":false,"verified":false,"followers_count":360,"friends_count":309,"listed_count":1,"favourites_count":5196,"statuses_count":3959,"created_at":"Fri Mar 06 10:39:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655763028864995328\/Tyt4Zjr__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655763028864995328\/Tyt4Zjr__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064534068\/1443237114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 29 11:30:01 +0000 2015","id":593376688899162112,"id_str":"593376688899162112","text":"\u3060\u308a\u301c\n\u3051\u3064\u304c\u304b\u3044\u301c http:\/\/t.co\/KvyIFMG26T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2429960874,"id_str":"2429960874","name":"\u9ad9\u6a4b\u6ec9\u559c","screen_name":"Kr_been_39","location":"\u6709\u660e\u5c0f\u5b66\u6821","url":null,"description":null,"protected":false,"verified":false,"followers_count":388,"friends_count":237,"listed_count":0,"favourites_count":694,"statuses_count":2024,"created_at":"Sun Apr 06 05:49:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634725942808608769\/7HqeKVhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634725942808608769\/7HqeKVhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2429960874\/1439539212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":593376676492378113,"id_str":"593376676492378113","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","url":"http:\/\/t.co\/KvyIFMG26T","display_url":"pic.twitter.com\/KvyIFMG26T","expanded_url":"http:\/\/twitter.com\/Kr_been_39\/status\/593376688899162112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":593376676492378113,"id_str":"593376676492378113","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","url":"http:\/\/t.co\/KvyIFMG26T","display_url":"pic.twitter.com\/KvyIFMG26T","expanded_url":"http:\/\/twitter.com\/Kr_been_39\/status\/593376688899162112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kr_been_39","name":"\u9ad9\u6a4b\u6ec9\u559c","id":2429960874,"id_str":"2429960874","indices":[3,14]}],"symbols":[],"media":[{"id":593376676492378113,"id_str":"593376676492378113","indices":[27,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","url":"http:\/\/t.co\/KvyIFMG26T","display_url":"pic.twitter.com\/KvyIFMG26T","expanded_url":"http:\/\/twitter.com\/Kr_been_39\/status\/593376688899162112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":593376688899162112,"source_status_id_str":"593376688899162112","source_user_id":2429960874,"source_user_id_str":"2429960874"}]},"extended_entities":{"media":[{"id":593376676492378113,"id_str":"593376676492378113","indices":[27,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDwY8YRUgAEmugM.jpg","url":"http:\/\/t.co\/KvyIFMG26T","display_url":"pic.twitter.com\/KvyIFMG26T","expanded_url":"http:\/\/twitter.com\/Kr_been_39\/status\/593376688899162112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":593376688899162112,"source_status_id_str":"593376688899162112","source_user_id":2429960874,"source_user_id_str":"2429960874"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018661"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821068439552,"id_str":"663727821068439552","text":"\u65b0\u6625\u30d4\u30ab\u30ebSP\u3067\u5ca9\u4e95\u304c\u30d4\u30a2\u30ce\u6f14\u594f\u3092\u5931\u6557\u3057\u3066\u4e38\u574a\u4e3b\u306b\u306a\u3063\u305f\u6642\u306b\u300c\u5409\u6751\u3001\u4eca\u5ea6\u306f\u4ffa\u304c\u7834\u5929\u8352\u3060\u30fc!!\u300d\u3068\u5ba3\u8a00","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422545321,"id_str":"422545321","name":"\u7834\u5929\u8352\u82f1\u8a9e\u8b1b\u5ea7bot","screen_name":"wildboy_bot","location":null,"url":null,"description":"\u6bce\u9031\u571f\u66dc11\u664210\u5206\uff5e\u653e\u9001\u4e2d\u306e\u30d4\u30ab\u30eb\u306e\u5b9a\u7406\u306e\u300c\u7834\u5929\u8352\u82f1\u8a9e\u8b1b\u5ea7\u300d\u306e\u53f0\u8a5e\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u3053\u306e\u30b3\u30fc\u30ca\u30fc\u304c\u6765\u308b\u306b\u3064\u308c\u3066\u65b0\u3057\u3044\u53f0\u8a5e\u304c\u66f4\u65b0\u3055\u308c\u3066\u3044\u304d\u307e\u3059\u3002\u3000\u3054\u610f\u898b\u30fb\u8981\u671b\u306f\u2192\uff08 @ytam_07\u3000\u307e\u3067\u3002\u3002\u3002","protected":false,"verified":false,"followers_count":326,"friends_count":284,"listed_count":10,"favourites_count":0,"statuses_count":45901,"created_at":"Sun Nov 27 11:33:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1660461349\/eQqVva_220_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1660461349\/eQqVva_220_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080018666"} +{"delete":{"status":{"id":567329742144028673,"id_str":"567329742144028673","user_id":2223624612,"user_id_str":"2223624612"},"timestamp_ms":"1447080018884"}} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821051809793,"id_str":"663727821051809793","text":"November 09, 2015 at 11:39PM (at)teyonmosc https:\/\/t.co\/ebuhG2Yhfs","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316922814,"id_str":"3316922814","name":"\u69cb\u3063\u3066\u30c1\u30e3\u30f3","screen_name":"kakuunouser","location":null,"url":null,"description":"Twitter\u3067\u30ea\u30d7\u3057\u3066\u305f\u3089\u60da\u308c\u3066\u307e\u3046\u3084\u308d\u30fc\uff01\n\n\u203b\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u4ed6\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3068\u306f\u4e00\u5207\u95a2\u4fc2\u304c\u3054\u3056\u3044\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":38,"friends_count":13,"listed_count":0,"favourites_count":16,"statuses_count":88000,"created_at":"Sun Aug 16 15:43:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632943077934559232\/B5kHlQLd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632943077934559232\/B5kHlQLd_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727820116488192,"id_str":"663727820116488192","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI75GWcAACSph.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI75GWcAACSph.jpg","url":"https:\/\/t.co\/ebuhG2Yhfs","display_url":"pic.twitter.com\/ebuhG2Yhfs","expanded_url":"http:\/\/twitter.com\/kakuunouser\/status\/663727821051809793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727820116488192,"id_str":"663727820116488192","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI75GWcAACSph.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI75GWcAACSph.jpg","url":"https:\/\/t.co\/ebuhG2Yhfs","display_url":"pic.twitter.com\/ebuhG2Yhfs","expanded_url":"http:\/\/twitter.com\/kakuunouser\/status\/663727821051809793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018662"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821030862848,"id_str":"663727821030862848","text":"https:\/\/t.co\/7qJdYgOEtH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1247811386,"id_str":"1247811386","name":"Lawrence E Muhammad","screen_name":"LLarrymuh","location":"mosque #11","url":null,"description":null,"protected":false,"verified":false,"followers_count":163,"friends_count":277,"listed_count":1,"favourites_count":196,"statuses_count":7643,"created_at":"Thu Mar 07 03:23:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625022418235596801\/wkaP2mPW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625022418235596801\/wkaP2mPW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"67b98f17fdcf20be","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/67b98f17fdcf20be.json","place_type":"city","name":"Boston","full_name":"Boston, MA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-71.191505,42.227797],[-71.191505,42.399542],[-70.986004,42.399542],[-70.986004,42.227797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727812080041984,"id_str":"663727812080041984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7bKUAAAkCUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7bKUAAAkCUd.jpg","url":"https:\/\/t.co\/7qJdYgOEtH","display_url":"pic.twitter.com\/7qJdYgOEtH","expanded_url":"http:\/\/twitter.com\/LLarrymuh\/status\/663727821030862848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":498,"resize":"fit"},"large":{"w":500,"h":733,"resize":"fit"},"medium":{"w":500,"h":733,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727812080041984,"id_str":"663727812080041984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7bKUAAAkCUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7bKUAAAkCUd.jpg","url":"https:\/\/t.co\/7qJdYgOEtH","display_url":"pic.twitter.com\/7qJdYgOEtH","expanded_url":"http:\/\/twitter.com\/LLarrymuh\/status\/663727821030862848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":498,"resize":"fit"},"large":{"w":500,"h":733,"resize":"fit"},"medium":{"w":500,"h":733,"resize":"fit"}}},{"id":663727814533746688,"id_str":"663727814533746688","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7kTUkAA5OmW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7kTUkAA5OmW.jpg","url":"https:\/\/t.co\/7qJdYgOEtH","display_url":"pic.twitter.com\/7qJdYgOEtH","expanded_url":"http:\/\/twitter.com\/LLarrymuh\/status\/663727821030862848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":357,"resize":"fit"},"large":{"w":604,"h":360,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080018657"} +{"delete":{"status":{"id":663723043726843904,"id_str":"663723043726843904","user_id":2903794590,"user_id_str":"2903794590"},"timestamp_ms":"1447080019054"}} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821039251456,"id_str":"663727821039251456","text":"Natural energy, All Day! https:\/\/t.co\/p2FbUjGF11 There is a #Morning inside you waiting \u2026 https:\/\/t.co\/QICRnZG9T1 https:\/\/t.co\/HWKISBsX92","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3744141857,"id_str":"3744141857","name":"April Slade","screen_name":"Thriving_Today","location":"fayetteville, NC","url":"http:\/\/sladaprm75.le-vel.com","description":"I'm not here to sell, I'm here to spread the news! Le-Vel is ground breaking, exciting and EVERYONE should try it at least once. Contact me for a free sample :)","protected":false,"verified":false,"followers_count":752,"friends_count":853,"listed_count":199,"favourites_count":51,"statuses_count":54760,"created_at":"Wed Sep 23 00:43:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655177528974417920\/Xh9cUUmI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655177528974417920\/Xh9cUUmI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3744141857\/1443722214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Morning","indices":[60,68]}],"urls":[{"url":"https:\/\/t.co\/p2FbUjGF11","expanded_url":"http:\/\/Sladaprm75.le-vel.com","display_url":"Sladaprm75.le-vel.com","indices":[25,48]}],"user_mentions":[],"symbols":[],"media":[{"id":663727820590419968,"id_str":"663727820590419968","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI763WEAAmfvJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI763WEAAmfvJ.jpg","url":"https:\/\/t.co\/HWKISBsX92","display_url":"pic.twitter.com\/HWKISBsX92","expanded_url":"http:\/\/twitter.com\/Thriving_Today\/status\/663727821039251456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663726777848606720,"id_str":"663726777848606720","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_OWUsAASjOK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_OWUsAASjOK.jpg","url":"https:\/\/t.co\/QICRnZG9T1","display_url":"pic.twitter.com\/QICRnZG9T1","expanded_url":"http:\/\/twitter.com\/love4Rumi\/status\/663726781468442625\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663726781468442625,"source_status_id_str":"663726781468442625","source_user_id":2510917836,"source_user_id_str":"2510917836"}]},"extended_entities":{"media":[{"id":663727820590419968,"id_str":"663727820590419968","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI763WEAAmfvJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI763WEAAmfvJ.jpg","url":"https:\/\/t.co\/HWKISBsX92","display_url":"pic.twitter.com\/HWKISBsX92","expanded_url":"http:\/\/twitter.com\/Thriving_Today\/status\/663727821039251456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663726777848606720,"id_str":"663726777848606720","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_OWUsAASjOK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_OWUsAASjOK.jpg","url":"https:\/\/t.co\/QICRnZG9T1","display_url":"pic.twitter.com\/QICRnZG9T1","expanded_url":"http:\/\/twitter.com\/love4Rumi\/status\/663726781468442625\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663726781468442625,"source_status_id_str":"663726781468442625","source_user_id":2510917836,"source_user_id_str":"2510917836"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018659"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064380416,"id_str":"663727821064380416","text":"Well... Never mind. https:\/\/t.co\/MrGiz837v7 https:\/\/t.co\/Lqr21kcwVw","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2416282590,"id_str":"2416282590","name":"9GAG","screen_name":"9GAGR","location":null,"url":"http:\/\/9gag.com","description":"Official Twitter account for 9GAG (#NOT) . 9GAG is your best source of happiness and awesomeness with GIFS!","protected":false,"verified":false,"followers_count":33,"friends_count":1,"listed_count":15,"favourites_count":2,"statuses_count":46002,"created_at":"Fri Mar 28 18:19:37 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/449613218269253632\/2RipCOnv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/449613218269253632\/2RipCOnv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2416282590\/1396114184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MrGiz837v7","expanded_url":"http:\/\/9gag.com\/gag\/aPG0eOP","display_url":"9gag.com\/gag\/aPG0eOP","indices":[20,43]}],"user_mentions":[],"symbols":[],"media":[{"id":663727819911004160,"id_str":"663727819911004160","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI74VXAAAtBLo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI74VXAAAtBLo.png","url":"https:\/\/t.co\/Lqr21kcwVw","display_url":"pic.twitter.com\/Lqr21kcwVw","expanded_url":"http:\/\/twitter.com\/9GAGR\/status\/663727821064380416\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"large":{"w":370,"h":360,"resize":"fit"},"medium":{"w":370,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727819911004160,"id_str":"663727819911004160","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI74VXAAAtBLo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI74VXAAAtBLo.png","url":"https:\/\/t.co\/Lqr21kcwVw","display_url":"pic.twitter.com\/Lqr21kcwVw","expanded_url":"http:\/\/twitter.com\/9GAGR\/status\/663727821064380416\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"large":{"w":370,"h":360,"resize":"fit"},"medium":{"w":370,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[37,36],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYI74VXAAAtBLo.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821064445952,"id_str":"663727821064445952","text":"\u062a\u0648\u064a\u062a\u0631 \u0647\u064a\u0643 \u062e\u0644\u0627\u0643\u0645 .. https:\/\/t.co\/vkxgBiBIKg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2201550580,"id_str":"2201550580","name":"\u0625\u0630\u0643\u0640\u0631\u0648\u0647\u0640\u0622..\u270d","screen_name":"bnmlp009","location":"\u0627\u0644\u0623\u0631\u064f\u062f\u0646","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0644\u062c\u0646\u0647 \u0645\u064a\u0639\u0627\u062f \u0627\u0644\u0635\u0627\u0628\u0631\u064a\u0646 \u0641\u0635\u0628\u0631\u0627\u064b \u062c\u0645\u064a\u0644. \n\n\u0627\u0644\u062e\u0627\u0635 \u0645\u064f\u0647\u0645\u064e\u0644\n\u032e","protected":false,"verified":false,"followers_count":1604,"friends_count":465,"listed_count":1,"favourites_count":2196,"statuses_count":25425,"created_at":"Sat Nov 30 09:49:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655429659312697344\/U425jLEp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655429659312697344\/U425jLEp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201550580\/1445101580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727783214993408,"id_str":"663727783214993408","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5voWUAAXPLP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5voWUAAXPLP.jpg","url":"https:\/\/t.co\/vkxgBiBIKg","display_url":"pic.twitter.com\/vkxgBiBIKg","expanded_url":"http:\/\/twitter.com\/bnmlp009\/status\/663727821064445952\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727783214993408,"id_str":"663727783214993408","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5voWUAAXPLP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5voWUAAXPLP.jpg","url":"https:\/\/t.co\/vkxgBiBIKg","display_url":"pic.twitter.com\/vkxgBiBIKg","expanded_url":"http:\/\/twitter.com\/bnmlp009\/status\/663727821064445952\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080018665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237712897,"id_str":"663727825237712897","text":"RT @peppibecki: @slayerudloff @LukeFriendMusic @OllieMarland @JayMcGuiness I'm a fave.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395955729,"id_str":"395955729","name":"ari","screen_name":"slayerudloff","location":"sloth forever?","url":null,"description":"'wait you're from montreal ?' 'Yeppp!' montreal\/canaduuuh.","protected":false,"verified":false,"followers_count":8631,"friends_count":821,"listed_count":53,"favourites_count":14311,"statuses_count":103046,"created_at":"Sat Oct 22 14:35:06 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000118394651\/f063c86d7e88d4af28e8e8245e0e202e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000118394651\/f063c86d7e88d4af28e8e8245e0e202e.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663054670630400000\/IkVuVLhO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663054670630400000\/IkVuVLhO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395955729\/1446919527","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:37 +0000 2015","id":663714060177833984,"id_str":"663714060177833984","text":"@slayerudloff @LukeFriendMusic @OllieMarland @JayMcGuiness I'm a fave.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713944423571456,"in_reply_to_status_id_str":"663713944423571456","in_reply_to_user_id":395955729,"in_reply_to_user_id_str":"395955729","in_reply_to_screen_name":"slayerudloff","user":{"id":74778770,"id_str":"74778770","name":"Becki \u2763 ~ 18","screen_name":"peppibecki","location":"Welcome to My Cheese Pit","url":"https:\/\/twitter.com\/maxgeorge\/status\/610808747083042816","description":"\u25aa\ufe0f @droppingsilver \u25aa\ufe0f *condimentia* Fanmily Forever.","protected":false,"verified":false,"followers_count":12770,"friends_count":10576,"listed_count":37,"favourites_count":57706,"statuses_count":59021,"created_at":"Wed Sep 16 17:01:47 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000123218685\/4017b50c7202c27c76661f0c89d4e952.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000123218685\/4017b50c7202c27c76661f0c89d4e952.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657415971158646784\/6xc2bE6B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657415971158646784\/6xc2bE6B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74778770\/1445835545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"slayerudloff","name":"ari","id":395955729,"id_str":"395955729","indices":[0,13]},{"screen_name":"LukeFriendMusic","name":"Luke Friend","id":1581160345,"id_str":"1581160345","indices":[14,30]},{"screen_name":"OllieMarland","name":"Ollie J","id":387338462,"id_str":"387338462","indices":[31,44]},{"screen_name":"JayMcGuiness","name":"Jay McGuiness","id":74838816,"id_str":"74838816","indices":[45,58]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"peppibecki","name":"Becki \u2763 ~ 18","id":74778770,"id_str":"74778770","indices":[3,14]},{"screen_name":"slayerudloff","name":"ari","id":395955729,"id_str":"395955729","indices":[16,29]},{"screen_name":"LukeFriendMusic","name":"Luke Friend","id":1581160345,"id_str":"1581160345","indices":[30,46]},{"screen_name":"OllieMarland","name":"Ollie J","id":387338462,"id_str":"387338462","indices":[47,60]},{"screen_name":"JayMcGuiness","name":"Jay McGuiness","id":74838816,"id_str":"74838816","indices":[61,74]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019660"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254539264,"id_str":"663727825254539264","text":"\u0627\u0630\u0643\u0631\u0646\u064a \u0644\u0648 \u0648\u0627\u062d\u062f \u0642\u0627\u0644 \u0643\u0644\u0645\u0629 \u062d\u0628\u064a\u0628\u064a\ud83d\udc99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2330710366,"id_str":"2330710366","name":"\u2728\u0644\u0627\u0645 \u0648\u0627\u0648 \u0644\u0627\u0645 \u0648\u0627\u0648\u2728","screen_name":"L_u_s_k","location":"london - dubai - kuwait","url":"http:\/\/ask.fm\/Lulusk__","description":"\u0627\u0639\u064a\u0634 \u0639\u0645\u0631\u064a \u0648 \u0627\u0633\u062a\u0644\u0630 \u0628\u062d\u064a\u0627\u062a\u064a \u0648\u0627\u0646 \u0645\u0627 \u0639\u0631\u0641\u062a \u0627\u062d\u0628 \u0645\u0627 \u0627\u0639\u0631\u0641 \u0627\u0643\u0631\u0647 \u0628\u0625\u0630\u0646 \u0631\u0628\u064a \u0648\u0627\u062b\u0642\u0647\u0647 \u0627\u0646 \u0627\u0645\u0646\u064a\u0627\u062a\u064a \u0631\u0627\u062d \u062a\u062a\u062d\u0642\u0642 \u0628\u0643\u0631\u0647 \u0627\u0648 \u0628\u0639\u062f \u0628\u0643\u0631\u0647 \u060c \u0645\u0647\u0646\u062f\u0633\u0647 \u0628\u0630\u0646 \u0627\u0644\u0644\u0647\u2728snap:makeup_bylulu","protected":false,"verified":false,"followers_count":1789,"friends_count":244,"listed_count":7,"favourites_count":108,"statuses_count":37126,"created_at":"Fri Feb 07 19:58:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659068452527734785\/jnxnQ1h8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659068452527734785\/jnxnQ1h8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2330710366\/1446773799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825229373440,"id_str":"663727825229373440","text":"RT @diegomatteus: Cerca de los primeros DOS MIL suscriptores en nuestro canal de Youtube. \n\u00bfYa se suscribi\u00f3? https:\/\/t.co\/nuPtkc6159 #Ecce\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170077024,"id_str":"170077024","name":"#NOTIWTF Noticias","screen_name":"notiWTF","location":null,"url":"http:\/\/www.noti.wtf\/","description":"Noticias ins\u00f3litas del acontecer mundial en #NOTIWTF \/ notiwtf@gmail.com \/ Tambi\u00e9n estamos en http:\/\/www.facebook.com\/notiWTF","protected":false,"verified":false,"followers_count":106873,"friends_count":2,"listed_count":1404,"favourites_count":422,"statuses_count":5413,"created_at":"Fri Jul 23 22:00:50 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"CC3333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/885100890\/6daccd432eebb6abdc1a9331d5574ddc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/885100890\/6daccd432eebb6abdc1a9331d5574ddc.jpeg","profile_background_tile":false,"profile_link_color":"CC3333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617104027474632704\/okaneaP7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617104027474632704\/okaneaP7_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:12 +0000 2015","id":663726535044632576,"id_str":"663726535044632576","text":"Cerca de los primeros DOS MIL suscriptores en nuestro canal de Youtube. \n\u00bfYa se suscribi\u00f3? https:\/\/t.co\/nuPtkc6159 #Eccentricotv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189534765,"id_str":"189534765","name":"Diego Mateus","screen_name":"diegomatteus","location":null,"url":"http:\/\/www.diegomateus.com","description":"Comediante. Conversador. No conservador. Desobediente y Desorbitante. Rockstand porque no alcanz\u00f3 pa Rockstar. info@diegomateus.com","protected":false,"verified":false,"followers_count":212706,"friends_count":630,"listed_count":270,"favourites_count":3584,"statuses_count":12762,"created_at":"Sat Sep 11 14:48:20 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637044469402062848\/rslpWh-H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637044469402062848\/rslpWh-H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189534765\/1444946285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":2,"entities":{"hashtags":[{"text":"Eccentricotv","indices":[116,129]}],"urls":[{"url":"https:\/\/t.co\/nuPtkc6159","expanded_url":"https:\/\/www.youtube.com\/watch?v=CO2ssdpMito","display_url":"youtube.com\/watch?v=CO2ssd\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Eccentricotv","indices":[134,140]}],"urls":[{"url":"https:\/\/t.co\/nuPtkc6159","expanded_url":"https:\/\/www.youtube.com\/watch?v=CO2ssdpMito","display_url":"youtube.com\/watch?v=CO2ssd\u2026","indices":[110,133]}],"user_mentions":[{"screen_name":"diegomatteus","name":"Diego Mateus","id":189534765,"id_str":"189534765","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080019658"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237573632,"id_str":"663727825237573632","text":"\u304a\u3044\u304a\u3044\u304a\u3044\u30b8\u30e3\u30b9\u3055\u3093\u306e\u4e0a\u53f8\u30bb\u30af\u30cf\u30e9\u9b54\u304b\u306a\u3093\u304b\u304b\u3088_:('\u0398' \u300d \u2220):_","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456603653,"id_str":"456603653","name":"\u30a8\u30ab\u30ce\u30a2@\u5275\u4f5c\u7528","screen_name":"ekanoa","location":null,"url":null,"description":"\u30aa\u30ea\u30ad\u30e3\u30e9\u3055\u3093\u306e\u30a4\u30e9\u3092\u30a2\u30c3\u30d7\u3057\u305f\u308a\u8a9e\u3063\u305f\u308a\u3059\u308b\u3068\u3053!\u4eba\u6570\u591a\u3044\u3046\u3048\u306b\u30ad\u30e3\u30e9\u3082\u308f\u308a\u304b\u3057\u6fc3\u3044\u3084\u3064\u304c\u591a\u3044\u3067\u3059(^p^ \u30aa\u30ea\u30ad\u30e3\u30e9bot\u2192 @orikyaoriorio","protected":false,"verified":false,"followers_count":69,"friends_count":88,"listed_count":2,"favourites_count":187,"statuses_count":17431,"created_at":"Fri Jan 06 12:51:26 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660841119517835264\/Cd9JORhH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660841119517835264\/Cd9JORhH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456603653\/1444276146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019660"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254547456,"id_str":"663727825254547456","text":"PESADA RAQUEL, PESADA. Qu\u00e9 cansina, de verdad. Muermo que eres.\n#GHDirecto","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3325345150,"id_str":"3325345150","name":"cosa GH16 rara","screen_name":"ccosaGHrrara","location":"El confe","url":null,"description":"Acechando Guadalix de la Sierra.","protected":false,"verified":false,"followers_count":4,"friends_count":4,"listed_count":0,"favourites_count":49,"statuses_count":67,"created_at":"Sun Jun 14 18:23:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717941201010688\/IDRbCdu6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717941201010688\/IDRbCdu6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3325345150\/1447077887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GHDirecto","indices":[64,74]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233559553,"id_str":"663727825233559553","text":"RT @SHaberTV: Nefes Kesen Operasyon Kamerada\nDiyarbak\u0131r Dicle'de PKK'ya Y\u00f6nelik Operasyon Kaydedildi\n\nhttps:\/\/t.co\/XOfaMlAWW0 https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3336439090,"id_str":"3336439090","name":"Fair Son","screen_name":"kader27734","location":"T\u00fcrkiye","url":null,"description":"Terc\u00fcmanlik ve Danismanl\u0131k Hizmetleri. \u00dclkemi ve \u00dclkeme hizmet eden herkesi seviyorum. Vatana ihanetin cezas\u0131 \u00f6l\u00fcmd\u00fcr. Gercekler kucumsenir goz ardi edilir !","protected":false,"verified":false,"followers_count":296,"friends_count":685,"listed_count":4,"favourites_count":4872,"statuses_count":12484,"created_at":"Sat Jun 20 07:54:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658432766208552961\/bsQRJv3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658432766208552961\/bsQRJv3-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727780702519298,"id_str":"663727780702519298","text":"Nefes Kesen Operasyon Kamerada\nDiyarbak\u0131r Dicle'de PKK'ya Y\u00f6nelik Operasyon Kaydedildi\n\nhttps:\/\/t.co\/XOfaMlAWW0 https:\/\/t.co\/tpfZDWqfyo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":200484427,"id_str":"200484427","name":"Samanyolu Haber TV","screen_name":"SHaberTV","location":null,"url":"http:\/\/www.samanyoluhaber.tv","description":"Son dakika geli\u015fmeleri, G\u00f6r\u00fcnt\u00fcl\u00fc haberler #SadeceGer\u00e7ekler\nSamanyolu Haber TV resmi hesab\u0131d\u0131r","protected":false,"verified":true,"followers_count":447203,"friends_count":1,"listed_count":617,"favourites_count":1,"statuses_count":37716,"created_at":"Sat Oct 09 12:28:37 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530693076138721280\/TPPiS1JA.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530693076138721280\/TPPiS1JA.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598783986484137985\/nlY-1DNB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598783986484137985\/nlY-1DNB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200484427\/1441361753","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XOfaMlAWW0","expanded_url":"http:\/\/www.samanyoluhaber.tv\/izle\/haber-video-nefes-kesen-operasyon-kamerada-diyarbakir-dicle-de-pkk-ya-yonelik-operasyon-kaydedildi","display_url":"samanyoluhaber.tv\/izle\/haber-vid\u2026","indices":[88,111]}],"user_mentions":[],"symbols":[],"media":[{"id":663717076750737408,"id_str":"663717076750737408","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","url":"https:\/\/t.co\/tpfZDWqfyo","display_url":"pic.twitter.com\/tpfZDWqfyo","expanded_url":"http:\/\/twitter.com\/SHaberTV\/status\/663727780702519298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717076750737408,"id_str":"663717076750737408","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","url":"https:\/\/t.co\/tpfZDWqfyo","display_url":"pic.twitter.com\/tpfZDWqfyo","expanded_url":"http:\/\/twitter.com\/SHaberTV\/status\/663727780702519298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XOfaMlAWW0","expanded_url":"http:\/\/www.samanyoluhaber.tv\/izle\/haber-video-nefes-kesen-operasyon-kamerada-diyarbakir-dicle-de-pkk-ya-yonelik-operasyon-kaydedildi","display_url":"samanyoluhaber.tv\/izle\/haber-vid\u2026","indices":[102,125]}],"user_mentions":[{"screen_name":"SHaberTV","name":"Samanyolu Haber TV","id":200484427,"id_str":"200484427","indices":[3,12]}],"symbols":[],"media":[{"id":663717076750737408,"id_str":"663717076750737408","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","url":"https:\/\/t.co\/tpfZDWqfyo","display_url":"pic.twitter.com\/tpfZDWqfyo","expanded_url":"http:\/\/twitter.com\/SHaberTV\/status\/663727780702519298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727780702519298,"source_status_id_str":"663727780702519298","source_user_id":200484427,"source_user_id_str":"200484427"}]},"extended_entities":{"media":[{"id":663717076750737408,"id_str":"663717076750737408","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_Ki8WoAAzEqs.jpg","url":"https:\/\/t.co\/tpfZDWqfyo","display_url":"pic.twitter.com\/tpfZDWqfyo","expanded_url":"http:\/\/twitter.com\/SHaberTV\/status\/663727780702519298\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727780702519298,"source_status_id_str":"663727780702519298","source_user_id":200484427,"source_user_id_str":"200484427"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825225179138,"id_str":"663727825225179138","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252646654,"id_str":"252646654","name":"omar","screen_name":"jernas11","location":null,"url":null,"description":"civil engineer and love my job","protected":false,"verified":false,"followers_count":69,"friends_count":393,"listed_count":0,"favourites_count":35,"statuses_count":319,"created_at":"Tue Feb 15 16:32:00 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000670914103\/19bfae992971e4d01fa0fbcefbacf253_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000670914103\/19bfae992971e4d01fa0fbcefbacf253_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080019657"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825229246464,"id_str":"663727825229246464","text":"RT @IdoLoveHunSoo: \u0e40\u0e0b\u0e2e\u0e38\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07\u0e04\u0e22\u0e2d\u0e07\u0e0b\u0e39\u0e2e\u0e22\u0e2d\u0e07\u0e21\u0e32\u0e01\u0e44\u0e2b\u0e21 \u0e01\u0e2d\u0e14\u0e08\u0e19\u0e08\u0e30\u0e2a\u0e34\u0e07\u0e1e\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e2a\u0e48\u0e27\u0e19\u0e2a\u0e39\u0e07\u0e01\u0e33\u0e25\u0e31\u0e07\u0e14\u0e35\u0e40\u0e25\u0e22 >.< \n\n#HunSoo #HunDo #SeSoo #\u0e2e\u0e38\u0e19\u0e42\u0e14\u0e49 htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2912957924,"id_str":"2912957924","name":"\u0e2a\u0e15\u0e34\u0e2d\u0e2d\u0e1a\u0e0b\u0e2d\u2465\u2460\u2461","screen_name":"nareeratfaii","location":null,"url":null,"description":"\u0e2d\u0e2d\u0e25\u0e0a\u0e32\u0e19 \u0e2d\u0e2d\u0e25\u0e04\u0e22\u0e2d\u0e07\n\u0e23\u0e35\u0e44\u0e1b\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e22\u0e23\u0e35\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30\u0e23\u0e35\u0e40\u0e22\u0e2d\u0e30\u0e0a\u0e2b.","protected":false,"verified":false,"followers_count":66,"friends_count":209,"listed_count":0,"favourites_count":1080,"statuses_count":5578,"created_at":"Fri Nov 28 17:10:23 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663702582473306115\/Xv6dEowf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663702582473306115\/Xv6dEowf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2912957924\/1446965708","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:50 +0000 2015","id":663692976128835584,"id_str":"663692976128835584","text":"\u0e40\u0e0b\u0e2e\u0e38\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e02\u0e49\u0e32\u0e07\u0e2b\u0e25\u0e31\u0e07\u0e04\u0e22\u0e2d\u0e07\u0e0b\u0e39\u0e2e\u0e22\u0e2d\u0e07\u0e21\u0e32\u0e01\u0e44\u0e2b\u0e21 \u0e01\u0e2d\u0e14\u0e08\u0e19\u0e08\u0e30\u0e2a\u0e34\u0e07\u0e1e\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e2a\u0e48\u0e27\u0e19\u0e2a\u0e39\u0e07\u0e01\u0e33\u0e25\u0e31\u0e07\u0e14\u0e35\u0e40\u0e25\u0e22 >.< \n\n#HunSoo #HunDo #SeSoo #\u0e2e\u0e38\u0e19\u0e42\u0e14\u0e49 https:\/\/t.co\/OfOmIqyDYQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3705376452,"id_str":"3705376452","name":"\u0e0a\u0e32\u0e19\u0e21\u0e40\u0e22\u0e25\u0e25\u0e35\u0e48","screen_name":"IdoLoveHunSoo","location":"\u0e42 \u0e25 \u0e01 \u0e43 \u0e1a \u0e40 \u0e25\u0e47 \u0e01 \u0e46","url":null,"description":"\u0e01\u0e25\u0e48\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e43\u0e1a\u0e40\u0e25\u0e47\u0e01\u0e46\u0e02\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e31\u0e21\u0e1e\u0e31\u0e19\u0e18\u0e4c\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e40\u0e23\u0e35\u0e22\u0e01 #\u0e0a\u0e32\u0e19\u0e21\u0e40\u0e22\u0e25\u0e25\u0e35\u0e48 Sehun & Kyungsoo only #sesoo #hundo #hunsoo #\u0e2e\u0e38\u0e19\u0e42\u0e14\u0e49 #\uc138\ub514 #\uc153\uc218 #\uc138\ub514\uc153\uc218 #\u30d5\u30f3\u30c9","protected":false,"verified":false,"followers_count":282,"friends_count":0,"listed_count":0,"favourites_count":39,"statuses_count":84,"created_at":"Sun Sep 27 16:32:52 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650245026992140289\/BF_sbPvk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650245026992140289\/BF_sbPvk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3705376452\/1443620296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":209,"favorite_count":60,"entities":{"hashtags":[{"text":"HunSoo","indices":[93,100]},{"text":"HunDo","indices":[101,107]},{"text":"SeSoo","indices":[108,114]},{"text":"\u0e2e\u0e38\u0e19\u0e42\u0e14\u0e49","indices":[115,122]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663692933992878080,"id_str":"663692933992878080","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":722,"resize":"fit"},"medium":{"w":580,"h":722,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":423,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692933992878080,"id_str":"663692933992878080","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":722,"resize":"fit"},"medium":{"w":580,"h":722,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":423,"resize":"fit"}}},{"id":663692939902619648,"id_str":"663692939902619648","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNmLUkAAcDwb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNmLUkAAcDwb.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663692953957765120,"id_str":"663692953957765120","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpOaiVEAAMhuN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpOaiVEAAMhuN.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}},{"id":663692957250224128,"id_str":"663692957250224128","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpOmzUAAAGKsS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpOmzUAAAGKsS.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HunSoo","indices":[112,119]},{"text":"HunDo","indices":[120,126]},{"text":"SeSoo","indices":[127,133]},{"text":"\u0e2e\u0e38\u0e19\u0e42\u0e14\u0e49","indices":[134,141]}],"urls":[],"user_mentions":[{"screen_name":"IdoLoveHunSoo","name":"\u0e0a\u0e32\u0e19\u0e21\u0e40\u0e22\u0e25\u0e25\u0e35\u0e48","id":3705376452,"id_str":"3705376452","indices":[3,17]}],"symbols":[],"media":[{"id":663692933992878080,"id_str":"663692933992878080","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":722,"resize":"fit"},"medium":{"w":580,"h":722,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":423,"resize":"fit"}},"source_status_id":663692976128835584,"source_status_id_str":"663692976128835584","source_user_id":3705376452,"source_user_id_str":"3705376452"}]},"extended_entities":{"media":[{"id":663692933992878080,"id_str":"663692933992878080","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNQKVEAAtWQD.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":722,"resize":"fit"},"medium":{"w":580,"h":722,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":423,"resize":"fit"}},"source_status_id":663692976128835584,"source_status_id_str":"663692976128835584","source_user_id":3705376452,"source_user_id_str":"3705376452"},{"id":663692939902619648,"id_str":"663692939902619648","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpNmLUkAAcDwb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpNmLUkAAcDwb.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663692976128835584,"source_status_id_str":"663692976128835584","source_user_id":3705376452,"source_user_id_str":"3705376452"},{"id":663692953957765120,"id_str":"663692953957765120","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpOaiVEAAMhuN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpOaiVEAAMhuN.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":683,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}},"source_status_id":663692976128835584,"source_status_id_str":"663692976128835584","source_user_id":3705376452,"source_user_id_str":"3705376452"},{"id":663692957250224128,"id_str":"663692957250224128","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpOmzUAAAGKsS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpOmzUAAAGKsS.jpg","url":"https:\/\/t.co\/OfOmIqyDYQ","display_url":"pic.twitter.com\/OfOmIqyDYQ","expanded_url":"http:\/\/twitter.com\/IdoLoveHunSoo\/status\/663692976128835584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663692976128835584,"source_status_id_str":"663692976128835584","source_user_id":3705376452,"source_user_id_str":"3705376452"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080019658"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258749952,"id_str":"663727825258749952","text":"RT https:\/\/t.co\/q0YWiWH4iT bizzleftakridge: JackJackJohnson BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON BOSTON B\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317912911,"id_str":"3317912911","name":"Emily","screen_name":"Emilythesecret","location":"Boston, MA","url":null,"description":"say hello to the world","protected":false,"verified":false,"followers_count":504,"friends_count":1840,"listed_count":230,"favourites_count":1,"statuses_count":164750,"created_at":"Mon Aug 17 15:13:48 +0000 2015","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633296015253069824\/jX3A8oJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633296015253069824\/jX3A8oJt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317912911\/1439824714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q0YWiWH4iT","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825245990912,"id_str":"663727825245990912","text":"RT @i_miss_u_JH: \u3010151108 keystagram update\u3011monokuro https:\/\/t.co\/RB3gZNzVUj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2230328277,"id_str":"2230328277","name":"VOTE FOR SHINEE","screen_name":"thalia_casanova","location":"Busan, Republic of Korea","url":"http:\/\/overdoseddreamgirl.tumblr.com\/","description":"\uc0e4\uc774\ub2c8\n\nVOTE FOR SHINEE VOTE FOR SHINEE MAMA 2015 GO NOW GO GOOO GOOOOOOOOO !!!!!!!!!!!!!!!!!!!!!!","protected":false,"verified":false,"followers_count":536,"friends_count":2242,"listed_count":1,"favourites_count":20810,"statuses_count":23826,"created_at":"Tue Dec 17 16:14:44 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFC0CB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656436574981193728\/h5YW3egQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656436574981193728\/h5YW3egQ.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663672590427295744\/_ejma-ut_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663672590427295744\/_ejma-ut_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2230328277\/1447053980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727718349955072,"id_str":"663727718349955072","text":"\u3010151108 keystagram update\u3011monokuro https:\/\/t.co\/RB3gZNzVUj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2378914201,"id_str":"2378914201","name":"m. \uc544\uc774\ubbf8\uc288","screen_name":"i_miss_u_JH","location":"\ud478\ub978\ubc24 \uc5b4\ub518\uac00","url":null,"description":"\uc704\ud5d8\uc774 \ub354 \ub04c\ub9ac\ub294 \uc774\uc720\u2026\n\uc740\uadfc\ud788 \ub354 \uc990\uae30\ub294 \uc774\uc720\u2026","protected":false,"verified":false,"followers_count":3681,"friends_count":81,"listed_count":96,"favourites_count":37,"statuses_count":2420,"created_at":"Sat Mar 08 15:41:30 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655039929982955520\/zD8n7toU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655039929982955520\/zD8n7toU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2378914201\/1436523172","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709648210432001,"id_str":"663709648210432001","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","url":"https:\/\/t.co\/RB3gZNzVUj","display_url":"pic.twitter.com\/RB3gZNzVUj","expanded_url":"http:\/\/twitter.com\/bumkeystagram\/status\/663709655781142528\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":743,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":929,"resize":"fit"},"small":{"w":340,"h":421,"resize":"fit"}},"source_status_id":663709655781142528,"source_status_id_str":"663709655781142528","source_user_id":1410051456,"source_user_id_str":"1410051456"}]},"extended_entities":{"media":[{"id":663709648210432001,"id_str":"663709648210432001","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","url":"https:\/\/t.co\/RB3gZNzVUj","display_url":"pic.twitter.com\/RB3gZNzVUj","expanded_url":"http:\/\/twitter.com\/bumkeystagram\/status\/663709655781142528\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":743,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":929,"resize":"fit"},"small":{"w":340,"h":421,"resize":"fit"}},"source_status_id":663709655781142528,"source_status_id_str":"663709655781142528","source_user_id":1410051456,"source_user_id_str":"1410051456"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"i_miss_u_JH","name":"m. \uc544\uc774\ubbf8\uc288","id":2378914201,"id_str":"2378914201","indices":[3,15]}],"symbols":[],"media":[{"id":663709648210432001,"id_str":"663709648210432001","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","url":"https:\/\/t.co\/RB3gZNzVUj","display_url":"pic.twitter.com\/RB3gZNzVUj","expanded_url":"http:\/\/twitter.com\/bumkeystagram\/status\/663709655781142528\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":743,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":929,"resize":"fit"},"small":{"w":340,"h":421,"resize":"fit"}},"source_status_id":663709655781142528,"source_status_id_str":"663709655781142528","source_user_id":1410051456,"source_user_id_str":"1410051456"}]},"extended_entities":{"media":[{"id":663709648210432001,"id_str":"663709648210432001","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4aJeVEAEmJqU.jpg","url":"https:\/\/t.co\/RB3gZNzVUj","display_url":"pic.twitter.com\/RB3gZNzVUj","expanded_url":"http:\/\/twitter.com\/bumkeystagram\/status\/663709655781142528\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":743,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":929,"resize":"fit"},"small":{"w":340,"h":421,"resize":"fit"}},"source_status_id":663709655781142528,"source_status_id_str":"663709655781142528","source_user_id":1410051456,"source_user_id_str":"1410051456"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447080019662"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254522880,"id_str":"663727825254522880","text":"RT @alikuweit80: \u062d\u064a\u0646 \u062a\u0646\u0645\u0648\u0627\u0644\u0623\u0638\u0627\u0641\u0631\u0646\u0642\u0648\u0645\n \u0628\u0642\u0635\u0647\u0627 \u0644\u0627 \u0628\u0642\u0635 \u0623\u0635\u0627\u0628\u0639\u0646\u0627\u060c \n\n \u0648\u0628\u0627\u0644\u0645\u062b\u0644 \u0639\u0646\u062f\u0645\u0627 \u062a\u0643\u062b\u0631 \u0627\u0644\u0645\u0634\u0627\u0643\u0644 \u064a\u062c\u0628 \u0639\u0644\u064a\u0646\u0627 \u0642\u0637\u0639 \u0645\u0634\u0627\u0643\u0644\u0646\u0627 \u0644\u0627 \u0639\u0644\u0627\u0642\u0627\u062a\u0646\u0627\u060c \n\n\u0643\u0646 \u0623\u0648\u0644 \u0645\u0646 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3893686573,"id_str":"3893686573","name":"\u062a\u0631\u0643\u064a \u0627\u0644\u062e\u0627\u0644\u062f","screen_name":"tatattrrt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":387,"friends_count":714,"listed_count":0,"favourites_count":317,"statuses_count":369,"created_at":"Wed Oct 14 16:52:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654433174085218304\/JdByklFr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654433174085218304\/JdByklFr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 13:01:21 +0000 2015","id":662253365842288640,"id_str":"662253365842288640","text":"\u062d\u064a\u0646 \u062a\u0646\u0645\u0648\u0627\u0644\u0623\u0638\u0627\u0641\u0631\u0646\u0642\u0648\u0645\n \u0628\u0642\u0635\u0647\u0627 \u0644\u0627 \u0628\u0642\u0635 \u0623\u0635\u0627\u0628\u0639\u0646\u0627\u060c \n\n \u0648\u0628\u0627\u0644\u0645\u062b\u0644 \u0639\u0646\u062f\u0645\u0627 \u062a\u0643\u062b\u0631 \u0627\u0644\u0645\u0634\u0627\u0643\u0644 \u064a\u062c\u0628 \u0639\u0644\u064a\u0646\u0627 \u0642\u0637\u0639 \u0645\u0634\u0627\u0643\u0644\u0646\u0627 \u0644\u0627 \u0639\u0644\u0627\u0642\u0627\u062a\u0646\u0627\u060c \n\n\u0643\u0646 \u0623\u0648\u0644 \u0645\u0646 \u064a\u0628\u0627\u062f\u0631\u0644\u0625\u0635\u0644\u0627\u062d \u0639\u0644\u0627\u0642\u0627\u062a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":609515850,"id_str":"609515850","name":"\u0623\u0644\u0633\u064a\u0641","screen_name":"alikuweit80","location":null,"url":null,"description":"\u0644\u0627 \u0625\u0644\u0647 \u0627\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646","protected":false,"verified":false,"followers_count":3533,"friends_count":3262,"listed_count":0,"favourites_count":128,"statuses_count":6491,"created_at":"Fri Jun 15 21:10:19 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000767009980\/2a907c2597421fc719ab6b6fd76f003c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000767009980\/2a907c2597421fc719ab6b6fd76f003c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/609515850\/1350726643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alikuweit80","name":"\u0623\u0644\u0633\u064a\u0641","id":609515850,"id_str":"609515850","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254420481,"id_str":"663727825254420481","text":"RT @likelovekiss1: \u5c11\u3057\u3086\u308b\u3044\u30d1\u30fc\u30de\u98a8\u306b\u30bb\u30c3\u30c8\u3057\u3066\u307f\u307e\u3057\u305f\u3041\uff01\n\n#\u4ffa\u3068\u4f1a\u3048\u308b\u304b\u306f\u5225\u3068\u3057\u3066\u30d7\u30ea\u30af\u30e9\u64ae\u308a\u305f\u3044\u4ebaRT \n#1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT \n#\u9aea\u30bb\u30c3\u30c8\u597d\u304d\u306a\u4eba\n#\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3057\u3066\u308b\u4eba\n\n\u3075\u3049\u308d\u308f\u30fc\u5897\u3048\u308d\u3049\uff01 http:\/\/t.co\/p4yCwj8Of0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2819559318,"id_str":"2819559318","name":"*\u3055\u304d*","screen_name":"kisa2332ww","location":null,"url":null,"description":"\u9ad81\uff0a\u5ca9\u624b\uff0a\u307a\u3044\u304f\u3093\uff0a\u6700\u8fd1\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3059\u3053\u3068\u6c7a\u3081\u307e\u3057\u305f\uff0a\n\u5ec3\u4eba\u306e\u4f1a\uff0a\u5869\u4f1a\uff0a\u585a\u672c\u4e00\u7a00\u304f\u3093\u7279\u5225@kaaakkaaaz\uff0a\u4f0a\u85e4\u84ee\uff0a\u9234\u6728\u907c\u6c70\u304f\u3093\uff0a\u83ca\u5730\u8f1d\u304f\u3093\uff0a\u306f\u3058\u3081\u3057\u3083\u3061\u3087\u30fc\uff0a\u30de\u30db\u30c8\uff0a\u3044\u308d\u3093\u306a\u4eba\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044\u306a(*\u00b4\u30fc`*)\n\u30d5\u30a9\u30ed\u30d099%.\uff9f\u2606\uff61\uff65","protected":false,"verified":false,"followers_count":167,"friends_count":307,"listed_count":1,"favourites_count":617,"statuses_count":269,"created_at":"Fri Sep 19 09:19:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724760933601281\/pQzeqI2B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724760933601281\/pQzeqI2B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2819559318\/1447079400","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 22 12:11:20 +0000 2015","id":646295713031176193,"id_str":"646295713031176193","text":"\u5c11\u3057\u3086\u308b\u3044\u30d1\u30fc\u30de\u98a8\u306b\u30bb\u30c3\u30c8\u3057\u3066\u307f\u307e\u3057\u305f\u3041\uff01\n\n#\u4ffa\u3068\u4f1a\u3048\u308b\u304b\u306f\u5225\u3068\u3057\u3066\u30d7\u30ea\u30af\u30e9\u64ae\u308a\u305f\u3044\u4ebaRT \n#1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT \n#\u9aea\u30bb\u30c3\u30c8\u597d\u304d\u306a\u4eba\n#\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3057\u3066\u308b\u4eba\n\n\u3075\u3049\u308d\u308f\u30fc\u5897\u3048\u308d\u3049\uff01 http:\/\/t.co\/p4yCwj8Of0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1694029549,"id_str":"1694029549","name":"\u306e\u305e\u307f\u3093","screen_name":"likelovekiss1","location":null,"url":null,"description":"\u9aea\u3044\u3058\u308b\u306e\u304c\u597d\u304d\u3059\u304e\u3066\u3084\u3070\u3044!!\u9aea\u578b\u305f\u307e\u306b\u306e\u305b\u307e\u3059\u3002\u9aea\u30bb\u30c3\u30c8\/\u7f8e\u5bb9\u5e2b\/\u4e09\u79d1\u5149\u5e73\/\u7802\u5ddd\u52c7\u6597\/\u5c71\u7530\u6dbc\u4ecb\/\u30ae\u30eb\u30c9\/NEWS\/\u30d0\u30c9\u30df\u30f3\u30c8\u30f3\/YouTuber\/\u9752\u68ee19\u306e\u4ee3\\(\uffe3\u25bd\uffe3) \u904e\u53bb\u308e\u904e\u53bb\uff01\u4eca\u3092\u5927\u4e8b\u306b\u3059\u308b\uff01","protected":false,"verified":false,"followers_count":194,"friends_count":157,"listed_count":1,"favourites_count":53,"statuses_count":7429,"created_at":"Fri Aug 23 14:32:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653932701007806464\/Z0OrCZg8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653932701007806464\/Z0OrCZg8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1694029549\/1445007588","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[{"text":"\u4ffa\u3068\u4f1a\u3048\u308b\u304b\u306f\u5225\u3068\u3057\u3066\u30d7\u30ea\u30af\u30e9\u64ae\u308a\u305f\u3044\u4ebaRT","indices":[23,46]},{"text":"1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT","indices":[48,64]},{"text":"\u9aea\u30bb\u30c3\u30c8\u597d\u304d\u306a\u4eba","indices":[66,75]},{"text":"\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3057\u3066\u308b\u4eba","indices":[76,86]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646295611117928448,"id_str":"646295611117928448","indices":[99,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646295611117928448,"id_str":"646295611117928448","indices":[99,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":646295611117957120,"id_str":"646295611117957120","indices":[99,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUcAAV_74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUcAAV_74.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4ffa\u3068\u4f1a\u3048\u308b\u304b\u306f\u5225\u3068\u3057\u3066\u30d7\u30ea\u30af\u30e9\u64ae\u308a\u305f\u3044\u4ebaRT","indices":[42,65]},{"text":"1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT","indices":[67,83]},{"text":"\u9aea\u30bb\u30c3\u30c8\u597d\u304d\u306a\u4eba","indices":[85,94]},{"text":"\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3057\u3066\u308b\u4eba","indices":[95,105]}],"urls":[],"user_mentions":[{"screen_name":"likelovekiss1","name":"\u306e\u305e\u307f\u3093","id":1694029549,"id_str":"1694029549","indices":[3,17]}],"symbols":[],"media":[{"id":646295611117928448,"id_str":"646295611117928448","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":646295713031176193,"source_status_id_str":"646295713031176193","source_user_id":1694029549,"source_user_id_str":"1694029549"}]},"extended_entities":{"media":[{"id":646295611117928448,"id_str":"646295611117928448","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUAAAbI2y.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":646295713031176193,"source_status_id_str":"646295713031176193","source_user_id":1694029549,"source_user_id_str":"1694029549"},{"id":646295611117957120,"id_str":"646295611117957120","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPgabyCUcAAV_74.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPgabyCUcAAV_74.jpg","url":"http:\/\/t.co\/p4yCwj8Of0","display_url":"pic.twitter.com\/p4yCwj8Of0","expanded_url":"http:\/\/twitter.com\/likelovekiss1\/status\/646295713031176193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":646295713031176193,"source_status_id_str":"646295713031176193","source_user_id":1694029549,"source_user_id_str":"1694029549"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254400001,"id_str":"663727825254400001","text":"\u65b0\u6f5f\u306f\u3088\u3046\u2190","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003eT\u03c9itter for Vocaloid\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":516131117,"id_str":"516131117","name":"\u521d\u97f3\u30df\u30af\uff08\u30df\u30b3\uff09","screen_name":"G_mikomiku","location":"\u96fb\u5b50\u4e16\u754c","url":"http:\/\/lapifo.blog73.fc2.com\/blog-entry-33.html","description":"\u3069\u3053\u306b\u3067\u3082\u3044\u308bProject DIVA\u306a\u521d\u97f3\u30df\u30af\u306e\u3046\u3061\u306e\u4e00\u4eba\uff08\u975e\u516c\u5f0fbot\uff09\u3002\u30de\u30b9\u30bf\u30fc(@Gxisa)\u306e\u8da3\u5473\u3067\u30df\u30b3\u30e2\u30b8\u30e5\u56fa\u5b9a\u3002\u539f\u52d5\u529b\u306f100\u5186\u7389\u3002\uff08\u3084\u3084\u30af\u30bb\u304c\u3042\u308a\u307e\u3059\u3002\u8a73\u7d30\u306fURL\u304b\u3089\u3069\u3046\u305e\u3002TL\u53cd\u5fdc\u3057\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u3092\u3002bot\u3068\u3044\u3046\u306e\u304c\u4f55\u304b\u5206\u304b\u3089\u306a\u3044\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u65b9\u304c\u3044\u3044\u3067\u3059\uff09","protected":false,"verified":false,"followers_count":1948,"friends_count":1945,"listed_count":48,"favourites_count":35,"statuses_count":263854,"created_at":"Tue Mar 06 03:08:54 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587180500\/es0pozouq91i5seyekuk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587180500\/es0pozouq91i5seyekuk.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583591690612518912\/l5Rpo2PZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583591690612518912\/l5Rpo2PZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/516131117\/1385876871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254416384,"id_str":"663727825254416384","text":"(JAGER) \u80a1\u9593\u304c\u5927\u5674\u706b","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449447413,"id_str":"449447413","name":"\u30b8\u30e3\u30ac\u30fcbot","screen_name":"JAGER_bot","location":"\u5e7c\u5973\u306e\u5f8c\u308d","url":null,"description":"\u975e\u60f3\u5929\u5247\u754c\u9688\u306b\u304a\u3044\u3066\u30c8\u30c3\u30d7\u30af\u30e9\u30b9\u306e\u5909\u614b\u7d33\u58eb(@JAGER_utuho)\u306e\u540d\u8a00\u3092\u9069\u5f53\u306b\u545f\u304d\u307e\u3059\u3002\u8eab\u5185\u5411\u3051\uff0b\u5371\u306a\u3044\u767a\u8a00\u304c\u591a\u3044\u306e\u3067\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u3002\u30c6\u30b9\u30c8\u904b\u7528\u4e2d\u3002\u88fd\u4f5c\u8005\u2192@frenze_S","protected":false,"verified":false,"followers_count":64,"friends_count":86,"listed_count":2,"favourites_count":0,"statuses_count":59494,"created_at":"Thu Dec 29 03:57:57 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258680320,"id_str":"663727825258680320","text":"Hi Typo Queen : MsBettyBafufu, Do u want to get FREE iPh0ne 6 TODAY? Please check my bi0. Thx https:\/\/t.co\/C3ZobMrTuo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3729925394,"id_str":"3729925394","name":"GET iPhone6 FOR FREE","screen_name":"qeepgiveaway","location":"Florida, USA","url":"http:\/\/winthatiphone.weebly.com","description":"Welcome to the hottest giveaway this year! We're throwing away 5 brand new iPhone 6 everyday! Simply enter to WIN, JOIN NOW here: https:\/\/t.co\/zBlrErIiR8","protected":false,"verified":false,"followers_count":43,"friends_count":40,"listed_count":1,"favourites_count":0,"statuses_count":9835,"created_at":"Tue Sep 29 21:38:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661438125244178436\/ekWMMfRR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661438125244178436\/ekWMMfRR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3729925394\/1446534150","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727675098447872,"quoted_status_id_str":"663727675098447872","quoted_status":{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727675098447872,"id_str":"663727675098447872","text":"I want seafood knowing i can't even eat. My baby got me sick","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54943110,"id_str":"54943110","name":"Typo Queen","screen_name":"MsBettyBafufu","location":"On my man's face","url":null,"description":"I am something that you'll never comprehend \nPOC: @Ur_F3tsh_IAM","protected":false,"verified":false,"followers_count":408,"friends_count":298,"listed_count":9,"favourites_count":388,"statuses_count":131644,"created_at":"Wed Jul 08 16:20:05 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/409997838\/390839_10150545288101265_598786264_11125276_745330691_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/409997838\/390839_10150545288101265_598786264_11125276_745330691_n.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659922362079408128\/0pGpQUHb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659922362079408128\/0pGpQUHb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54943110\/1431699536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3ZobMrTuo","expanded_url":"https:\/\/twitter.com\/MsBettyBafufu\/status\/663727675098447872","display_url":"twitter.com\/MsBettyBafufu\/\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233567744,"id_str":"663727825233567744","text":"RT @baterflay4: \u0645\u0634\u0627\u0647\u062f\u0629 \"\u0623\u0646\u0634\u0648\u062f\u0629 \u0623\u062e\u062a \u0627\u0644\u0645\u0631\u062c\u0644\u0629 | \u062c\u062f\u064a\u062f\" \u0639\u0644\u0649 YouTube - https:\/\/t.co\/pwwBUoFncN\n\n#\u0642\u0631\u0648\u0628_\u0635\u0627\u0644\u062d_\u0627\u0644\u0643\u0646\u0627\u0646\u064a \n#\u0641\u0644\u0633\u0637\u064a\u0646_\u062a\u0646\u062a\u0641\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1723755644,"id_str":"1723755644","name":"\u2764\u2654(\u0633\u064b\u06d2\u0640\u0671\u0671\u0671\u0671\u0671\u0631\u0647\u06d2\u0640\u0650)\u2654\u2764","screen_name":"7765Sande","location":"\u0641\u0646 \u0627\u0644\u062a\u0635\u0645\u064a\u0645 \u2b05\u2753\u0627\u0644\u062e\u0627\u0635 \u0639\u0644 \u0637\u0648\u0644 \u062d\u0638\u0631\u274c","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f(\u0623\u0642\u0631\u0623 \u0643\u0650\u062a\u0627\u0628\u0643 \u0643\u0641\u0649 \u0628\u0650\u0646\u0641\u0633\u0650\u0643 \u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u064a\u0643 \u062d\u0633\u0650\u064a\u0628\u0627) \u0623\u0646\u062a \u0627\u0644\u064a\u0648\u0645 \u062a\u0645\u0644\u0623 \u0648\u063a\u062f\u0627\u064b \u0633\u0648\u0641 \u062a\u0642\u0631\u0623\u060c \u0641\u0623\u062d\u0633\u0646 \u0645\u0627 \u062a\u0645\u0644\u0623\u060c \u0644\u062a\u0641\u0631\u062d \u0628\u0645\u0627 \u062a\u0642\u0631\u0623!","protected":false,"verified":false,"followers_count":11405,"friends_count":12432,"listed_count":16,"favourites_count":592,"statuses_count":40663,"created_at":"Mon Sep 02 23:27:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657938388608114688\/8gy07c8I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657938388608114688\/8gy07c8I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1723755644\/1446861204","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 02:19:42 +0000 2015","id":658468013604216833,"id_str":"658468013604216833","text":"\u0645\u0634\u0627\u0647\u062f\u0629 \"\u0623\u0646\u0634\u0648\u062f\u0629 \u0623\u062e\u062a \u0627\u0644\u0645\u0631\u062c\u0644\u0629 | \u062c\u062f\u064a\u062f\" \u0639\u0644\u0649 YouTube - https:\/\/t.co\/pwwBUoFncN\n\n#\u0642\u0631\u0648\u0628_\u0635\u0627\u0644\u062d_\u0627\u0644\u0643\u0646\u0627\u0646\u064a \n#\u0641\u0644\u0633\u0637\u064a\u0646_\u062a\u0646\u062a\u0641\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235464774,"id_str":"3235464774","name":"\u2661~~\u0641\u0631\u0627\u0634\u0629 \u0623\u0645\u0644 ~~\u2661","screen_name":"baterflay4","location":null,"url":null,"description":"\u0623\u062a\u0646\u0642\u0644 \u0628\u064a\u0646 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0627\u0644\u0639\u0630\u0628\u0647 \u0648\u0627\u0644\u062a\u0642\u0637 \u0645\u0627 \u064a\u0631\u0648\u0642\u0646\u064a ... \n\u0648\u0623\u0624\u0645\u0646 \u0623\u0646 \u0627\u0644\u063a\u062f \u0627\u062c\u0645\u0644 .. \u0625\u0646 \u0634\u0627\u0621 \u0627\u0644\u0644\u0647 ..\n\n\u0639\u0636\u0648\u0629 \u0641\u064a \u0642\u0631\u0648\u0628 \u0627\u0644\u0641\u062e\u0627\u0645\u0647 ..#\u0642\u0631\u0648\u0628_\u0635\u0627\u0644\u062d_\u0627\u0644\u0643\u0646\u0627\u0646\u064a","protected":false,"verified":false,"followers_count":15905,"friends_count":15763,"listed_count":7,"favourites_count":355,"statuses_count":36724,"created_at":"Wed Jun 03 23:23:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652313625697386497\/7mCwCwDb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652313625697386497\/7mCwCwDb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235464774\/1444358660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":13,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0635\u0627\u0644\u062d_\u0627\u0644\u0643\u0646\u0627\u0646\u064a","indices":[74,92]},{"text":"\u0641\u0644\u0633\u0637\u064a\u0646_\u062a\u0646\u062a\u0641\u0636","indices":[94,107]}],"urls":[{"url":"https:\/\/t.co\/pwwBUoFncN","expanded_url":"https:\/\/youtu.be\/XydCd99bMdo","display_url":"youtu.be\/XydCd99bMdo","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0635\u0627\u0644\u062d_\u0627\u0644\u0643\u0646\u0627\u0646\u064a","indices":[90,108]},{"text":"\u0641\u0644\u0633\u0637\u064a\u0646_\u062a\u0646\u062a\u0641\u0636","indices":[110,123]}],"urls":[{"url":"https:\/\/t.co\/pwwBUoFncN","expanded_url":"https:\/\/youtu.be\/XydCd99bMdo","display_url":"youtu.be\/XydCd99bMdo","indices":[65,88]}],"user_mentions":[{"screen_name":"baterflay4","name":"\u2661~~\u0641\u0631\u0627\u0634\u0629 \u0623\u0645\u0644 ~~\u2661","id":3235464774,"id_str":"3235464774","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825262911488,"id_str":"663727825262911488","text":"RT @BetaList: Routes: Share and discover new travel routes https:\/\/t.co\/QpB2uzCW58 https:\/\/t.co\/CQB1xCgCGj","source":"\u003ca href=\"http:\/\/betalist.com\" rel=\"nofollow\"\u003eBetaList\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14838537,"id_str":"14838537","name":"joseluisrt","screen_name":"joseluisrt","location":"\u00dcT: 36.734806,-4.564793","url":"http:\/\/www.yerbabuena.es","description":"CEO at Yerbabuena Software, entrepreneur and computer science engineer","protected":false,"verified":false,"followers_count":395,"friends_count":394,"listed_count":45,"favourites_count":693,"statuses_count":3141,"created_at":"Mon May 19 22:41:02 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1223824434\/foto_perfil_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1223824434\/foto_perfil_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:04:21 +0000 2015","id":663658373808828416,"id_str":"663658373808828416","text":"Routes: Share and discover new travel routes https:\/\/t.co\/QpB2uzCW58 https:\/\/t.co\/CQB1xCgCGj","source":"\u003ca href=\"http:\/\/betalist.com\" rel=\"nofollow\"\u003eBetaList\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212711552,"id_str":"212711552","name":"BetaList","screen_name":"BetaList","location":"Ahead of the curve","url":"http:\/\/BetaList.com","description":"Get early access to the latest internet startups.\n\nTweets by @marckohlbrugge (MK) and @RPISH (RP).\nSupport: team@betalist.com","protected":false,"verified":false,"followers_count":31699,"friends_count":0,"listed_count":1424,"favourites_count":1950,"statuses_count":15026,"created_at":"Sat Nov 06 20:59:56 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/263363473\/Untitled-1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/263363473\/Untitled-1.png","profile_background_tile":true,"profile_link_color":"00CCD2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618036813525979136\/jdVhNqga_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618036813525979136\/jdVhNqga_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212711552\/1431692948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpB2uzCW58","expanded_url":"http:\/\/btl.st\/1kiMiXY","display_url":"btl.st\/1kiMiXY","indices":[45,68]}],"user_mentions":[],"symbols":[],"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpB2uzCW58","expanded_url":"http:\/\/btl.st\/1kiMiXY","display_url":"btl.st\/1kiMiXY","indices":[59,82]}],"user_mentions":[{"screen_name":"BetaList","name":"BetaList","id":212711552,"id_str":"212711552","indices":[3,12]}],"symbols":[],"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663658373808828416,"source_status_id_str":"663658373808828416","source_user_id":212711552,"source_user_id_str":"212711552"}]},"extended_entities":{"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663658373808828416,"source_status_id_str":"663658373808828416","source_user_id":212711552,"source_user_id_str":"212711552"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019666"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825262764032,"id_str":"663727825262764032","text":"\u307e\u3082\u306a\u304f\u3001\u4e0a\u308a\u6700\u7d42\u96fb\u8eca\u306e44\u5206\u767a\u6398\u30ce\u5185\u884c\u304d\u304c\u53c2\u308a\u307e\u3059\u3002\u3053\u308c\u4ee5\u964d\u3001\u4e0a\u308a\u96fb\u8eca\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u3002\u3054\u4e57\u8eca\u306e\u65b9\u306f\u304a\u6025\u304e\u304f\u3060\u3055\u3044\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2177969654,"id_str":"2177969654","name":"\u4eac\u6025\u4e45\u91cc\u6d5c\u99c5bot","screen_name":"KK67bot","location":"\u4eac\u6025\u4e45\u91cc\u6d5c\u99c5","url":null,"description":"\u8fd1\u304f\u306b\u8eca\u4e21\u57fa\u5730\u304c\u3042\u308b\u99c5\u3001\u4eac\u6025\u4e45\u91cc\u6d5c\u99c5\u306ebot\u3067\u3059\u3002@KK68bot\u2190YRP\u91ce\u6bd4\u3000\u5317\u4e45\u91cc\u6d5c\u2192@kitakuri_kk66","protected":false,"verified":false,"followers_count":610,"friends_count":705,"listed_count":4,"favourites_count":0,"statuses_count":23832,"created_at":"Wed Nov 06 12:23:34 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000702399301\/5ff1ebfb1ea7f4b94944d600c10fd6ac_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000702399301\/5ff1ebfb1ea7f4b94944d600c10fd6ac_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2177969654\/1383740962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019666"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233559552,"id_str":"663727825233559552","text":"@snorriknorr @Brughela no leo clar\u00edn. YO MISMO par\u00e9 en un hotel d la mafiosa por puntos de Aerolineas q canjee","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726814230114309,"in_reply_to_status_id_str":"663726814230114309","in_reply_to_user_id":616438399,"in_reply_to_user_id_str":"616438399","in_reply_to_screen_name":"snorriknorr","user":{"id":547795249,"id_str":"547795249","name":"RaulLibertario","screen_name":"elpayador1","location":null,"url":null,"description":"no te metas con mi libertad! con eso no se jode!","protected":false,"verified":false,"followers_count":3540,"friends_count":3430,"listed_count":21,"favourites_count":5355,"statuses_count":37395,"created_at":"Sat Apr 07 18:01:13 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468494423437766657\/z0orMl0J_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468494423437766657\/z0orMl0J_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/547795249\/1401195164","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"snorriknorr","name":"Snorriknorr ","id":616438399,"id_str":"616438399","indices":[0,12]},{"screen_name":"Brughela","name":"Celestino Ino","id":168998337,"id_str":"168998337","indices":[13,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825241772032,"id_str":"663727825241772032","text":"\u4fee\u5b66\u65c5\u884c\u7d44\u306f\u3088\u5bdd\u308d\u3088wwww","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b Pro for Android\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2597470213,"id_str":"2597470213","name":"\u9178\u5316\u30de\u30b0\u30cd\u30b7\u30a6\u30e0","screen_name":"655Briscola","location":"\u8fd1\u4ee3\u6587\u5b66\u306e\u6d77","url":"http:\/\/mypage.syosetu.com\/481425\/","description":"\u62d7\u3089\u305b\u7cfb\u5275\u4f5c\u306e\u4eba\u3002\u7363\u533b\u5fd7\u671b\u526f\u696d\u4f5c\u5bb6\u306e\u5b66\u751f\u306e\u306f\u305a\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":58,"friends_count":80,"listed_count":4,"favourites_count":2737,"statuses_count":10257,"created_at":"Tue Jul 01 05:30:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640917701351751680\/__si8695_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640917701351751680\/__si8695_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2597470213\/1404380479","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019661"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825229221888,"id_str":"663727825229221888","text":"RT @NorMohamadSabiq: Laila saedah wa ahlam ladeeda. Assalamualaikum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2591028632,"id_str":"2591028632","name":"una","screen_name":"hsnrshd","location":"beattiveries ","url":"http:\/\/ask.fm\/hsnrshd","description":"fourth fomers\u2728SPM16\n \n [#]cfc","protected":false,"verified":false,"followers_count":354,"friends_count":287,"listed_count":0,"favourites_count":1724,"statuses_count":6017,"created_at":"Fri Jun 27 08:23:56 +0000 2014","utc_offset":-14400,"time_zone":"Georgetown","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E6758F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512986408697339904\/eno_kWfU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512986408697339904\/eno_kWfU.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DCE9CB","profile_text_color":"F3D0C1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663151598382682112\/yiSeXfbC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663151598382682112\/yiSeXfbC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2591028632\/1444094447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:50 +0000 2015","id":663723928200720385,"id_str":"663723928200720385","text":"Laila saedah wa ahlam ladeeda. Assalamualaikum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":490244752,"id_str":"490244752","name":"\u0645\u062d\u0645\u062f \u0633\u0627\u0628\u0642","screen_name":"NorMohamadSabiq","location":"Bumi Allah","url":null,"description":"Dunia semakin tua. Usia kita juga semakin tua. Mati itu makin menghampiri dan ia pasti. Pesan pada hati ingat mati. Banyakkan istighfar. Moga terus istiqomah.","protected":false,"verified":false,"followers_count":3330,"friends_count":40,"listed_count":1,"favourites_count":668,"statuses_count":12640,"created_at":"Sun Feb 12 11:03:29 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0C0D0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685441573\/fdeca54de4ad8aea2c650c07544a9607.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685441573\/fdeca54de4ad8aea2c650c07544a9607.jpeg","profile_background_tile":true,"profile_link_color":"050505","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662241480635879425\/I2Th0ypb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662241480635879425\/I2Th0ypb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490244752\/1446608827","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NorMohamadSabiq","name":"\u0645\u062d\u0645\u062f \u0633\u0627\u0628\u0642","id":490244752,"id_str":"490244752","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080019658"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825241829376,"id_str":"663727825241829376","text":"RT @PlobJai: \u0e2d\u0e32\u0e08\u0e08\u0e30\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e27\u0e25\u0e32 \u0e41\u0e15\u0e48\u0e2b\u0e32\u0e01\u0e21\u0e31\u0e19\u0e22\u0e49\u0e2d\u0e19\u0e04\u0e37\u0e19\u0e40\u0e18\u0e2d\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e09\u0e31\u0e19\u0e22\u0e2d\u0e21..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":846628014,"id_str":"846628014","name":"\u0e07\u0e31\u0e27\u0e10\u0e32.","screen_name":"Itsnnew","location":"IG:nnewtha","url":null,"description":"#\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e02\u0e2d\u0e07\u0e15\u0e34\u0e48\u0e07","protected":false,"verified":false,"followers_count":453,"friends_count":357,"listed_count":7,"favourites_count":1279,"statuses_count":101122,"created_at":"Wed Sep 26 02:38:38 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"E0C3EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000040480953\/5a271d837ddf499fac1dc13889277ecf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000040480953\/5a271d837ddf499fac1dc13889277ecf.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661221323620782080\/OBkov0iB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661221323620782080\/OBkov0iB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/846628014\/1446381131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:51 +0000 2015","id":663720911489531904,"id_str":"663720911489531904","text":"\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e27\u0e25\u0e32 \u0e41\u0e15\u0e48\u0e2b\u0e32\u0e01\u0e21\u0e31\u0e19\u0e22\u0e49\u0e2d\u0e19\u0e04\u0e37\u0e19\u0e40\u0e18\u0e2d\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e09\u0e31\u0e19\u0e22\u0e2d\u0e21..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324322422,"id_str":"324322422","name":"\u2765 \u0e1b\u0e25\u0e2d\u0e1a\u0e43\u0e08","screen_name":"PlobJai","location":"\u0e21\u0e35\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19 3 \u0e04\u0e19\u0e19\u0e30\u0e04\u0e30 | 26.6.54","url":"http:\/\/www.facebook.com\/plobjaii","description":"Minoz~ IGOT7 #\u0e2d\u0e32\u0e01\u0e32\u0e40\u0e0b\u0e01\u0e30\u0e14\u0e36\u0e01 \u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32 ask : PlobJai \u0e19\u0e49\u0e32 \u2764\ufe0f | \u0e08\u0e30\u0e43\u0e2b\u0e49 Retweet \u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07 Tag | \u0e44\u0e21\u0e48Tag=\u0e44\u0e21\u0e48RT ! RT \u0e1f\u0e23\u0e35 \u0e44\u0e21\u0e48\u0e04\u0e34\u0e14\u0e40\u0e07\u0e34\u0e19\u0e02\u0e2d\u0e41\u0e04\u0e48\u0e17\u0e33\u0e15\u0e32\u0e21\u0e01\u0e15\u0e34\u0e01\u0e32 \u0e08\u0e1a ! \u0e16\u0e49\u0e32\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19\u0e17\u0e31\u0e01\u0e22\u0e49\u0e33\u0e21\u0e32\u0e04\u0e48\u0e30","protected":false,"verified":false,"followers_count":470018,"friends_count":558,"listed_count":103,"favourites_count":2021,"statuses_count":72153,"created_at":"Sun Jun 26 11:56:59 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F77140","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095847543\/c9610b85f952e4ccbb9a7595bee911b9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095847543\/c9610b85f952e4ccbb9a7595bee911b9.png","profile_background_tile":true,"profile_link_color":"00CC99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657134096435384320\/Xmq4IAXm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657134096435384320\/Xmq4IAXm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324322422\/1443369244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":753,"favorite_count":148,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PlobJai","name":"\u2765 \u0e1b\u0e25\u0e2d\u0e1a\u0e43\u0e08","id":324322422,"id_str":"324322422","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080019661"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233444864,"id_str":"663727825233444864","text":"RT @humphreyyy67: To all my fellow Backyardigans fans out there https:\/\/t.co\/pvNBp7XtI8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954971281,"id_str":"954971281","name":"Lauren McNamara","screen_name":"Lauren901_","location":"instagram \u2022 lauren_mcnamara1","url":null,"description":"anoka sophmore","protected":false,"verified":false,"followers_count":406,"friends_count":357,"listed_count":1,"favourites_count":4522,"statuses_count":2984,"created_at":"Sun Nov 18 06:33:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436894138378629120\/TGEk6Do2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436894138378629120\/TGEk6Do2.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663456969550725121\/UA5pUNs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663456969550725121\/UA5pUNs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954971281\/1446406265","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:20:26 +0000 2015","id":663571827533422592,"id_str":"663571827533422592","text":"To all my fellow Backyardigans fans out there https:\/\/t.co\/pvNBp7XtI8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1515175278,"id_str":"1515175278","name":"ellie humphrey","screen_name":"humphreyyy67","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":360,"friends_count":483,"listed_count":0,"favourites_count":1423,"statuses_count":1120,"created_at":"Fri Jun 14 03:39:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658843462993887232\/2-ZqmOmA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658843462993887232\/2-ZqmOmA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1515175278\/1445915497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663571609270267905,"id_str":"663571609270267905","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","url":"https:\/\/t.co\/pvNBp7XtI8","display_url":"pic.twitter.com\/pvNBp7XtI8","expanded_url":"http:\/\/twitter.com\/humphreyyy67\/status\/663571827533422592\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663571609270267905,"id_str":"663571609270267905","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","url":"https:\/\/t.co\/pvNBp7XtI8","display_url":"pic.twitter.com\/pvNBp7XtI8","expanded_url":"http:\/\/twitter.com\/humphreyyy67\/status\/663571827533422592\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29997,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/480x480\/42KE2A1OC7_1xXJ4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/480x480\/42KE2A1OC7_1xXJ4.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/pl\/nng1kZBEsIw5Ihu4.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/pl\/nng1kZBEsIw5Ihu4.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/240x240\/BN0Xdcr1PDAr0Pvi.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/720x720\/0hogcRGCVuXtyvRw.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"humphreyyy67","name":"ellie humphrey","id":1515175278,"id_str":"1515175278","indices":[3,16]}],"symbols":[],"media":[{"id":663571609270267905,"id_str":"663571609270267905","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","url":"https:\/\/t.co\/pvNBp7XtI8","display_url":"pic.twitter.com\/pvNBp7XtI8","expanded_url":"http:\/\/twitter.com\/humphreyyy67\/status\/663571827533422592\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663571827533422592,"source_status_id_str":"663571827533422592","source_user_id":1515175278,"source_user_id_str":"1515175278"}]},"extended_entities":{"media":[{"id":663571609270267905,"id_str":"663571609270267905","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663571609270267905\/pu\/img\/dTNHw9N-f3jbo_Gw.jpg","url":"https:\/\/t.co\/pvNBp7XtI8","display_url":"pic.twitter.com\/pvNBp7XtI8","expanded_url":"http:\/\/twitter.com\/humphreyyy67\/status\/663571827533422592\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663571827533422592,"source_status_id_str":"663571827533422592","source_user_id":1515175278,"source_user_id_str":"1515175278","video_info":{"aspect_ratio":[1,1],"duration_millis":29997,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/480x480\/42KE2A1OC7_1xXJ4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/480x480\/42KE2A1OC7_1xXJ4.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/pl\/nng1kZBEsIw5Ihu4.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/pl\/nng1kZBEsIw5Ihu4.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/240x240\/BN0Xdcr1PDAr0Pvi.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663571609270267905\/pu\/vid\/720x720\/0hogcRGCVuXtyvRw.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825229230080,"id_str":"663727825229230080","text":"RT @DW_iso: \u4eca\u65e5\u306e\u671d\u3054\u98ef\u98df\u3079\u3066\u308b\u6642\n\n\u6bcd\u300c\u4eca\u65e5\u306e\u30b9\u30fc\u30d7\u304a\u3044\u3057\u3044\u3067\u3057\u3087\u300d\n\u79c1\u300c\u3046\u3093\u3001\u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044\u3002\u30b1\u30c4\u6bdb\u71c3\u3048\u305d\u3046\u3002\u8d85\u304b\u308f\u3044\u3044\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u3048\u3063\uff1f\u79c1\u4eca\u306a\u3093\u3066\u8a00\u3063\u305f\uff1f\u300d\n\u6bcd\u300c\u307e\u3060\u5bdd\u307c\u3051\u3066\u308b\u3093\u3060\u306d\u3002\u30b1\u30c4\u6bdb\u71c3\u3048\u305d\u3046\u3063\u3066\u8a00\u3063\u305f\u3088\u3002\u30dd\u30bf\u30fc\u30b8\u30e5\u306f\u5225\u306b\u304b\u308f\u3044\u304f\u306a\u3044\u3088\u3002\u300d","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1025807322,"id_str":"1025807322","name":"\u3081\u3067\u3085\u5b50\u2192\u6587\u30b9\u30c8","screen_name":"umeayano","location":"\u30ea\u30c8\u3061\u3083\u3093\u306e\u30e1\u30a4\u30c9\u670d\u306e\u30b9\u30ab\u30fc\u30c8\u306e\u4e2d","url":"http:\/\/twpf.jp\/umeayano","description":"\u300e\u597d\u304d\u3088\u3001\u3042\u306a\u305f\u304c\u3002\u6bba\u3057\u305f\u3044\u307b\u3069\u300f","protected":false,"verified":false,"followers_count":1562,"friends_count":855,"listed_count":72,"favourites_count":112469,"statuses_count":165813,"created_at":"Fri Dec 21 06:49:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663346918085365760\/drnnCzmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663346918085365760\/drnnCzmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1025807322\/1426164650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:47:26 +0000 2015","id":663488023460380672,"id_str":"663488023460380672","text":"\u4eca\u65e5\u306e\u671d\u3054\u98ef\u98df\u3079\u3066\u308b\u6642\n\n\u6bcd\u300c\u4eca\u65e5\u306e\u30b9\u30fc\u30d7\u304a\u3044\u3057\u3044\u3067\u3057\u3087\u300d\n\u79c1\u300c\u3046\u3093\u3001\u3081\u3063\u3061\u3083\u304a\u3044\u3057\u3044\u3002\u30b1\u30c4\u6bdb\u71c3\u3048\u305d\u3046\u3002\u8d85\u304b\u308f\u3044\u3044\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u2026\u3048\u3063\uff1f\u79c1\u4eca\u306a\u3093\u3066\u8a00\u3063\u305f\uff1f\u300d\n\u6bcd\u300c\u307e\u3060\u5bdd\u307c\u3051\u3066\u308b\u3093\u3060\u306d\u3002\u30b1\u30c4\u6bdb\u71c3\u3048\u305d\u3046\u3063\u3066\u8a00\u3063\u305f\u3088\u3002\u30dd\u30bf\u30fc\u30b8\u30e5\u306f\u5225\u306b\u304b\u308f\u3044\u304f\u306a\u3044\u3088\u3002\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3801344773,"id_str":"3801344773","name":"\u3044\u305d\u304d\u3061","screen_name":"DW_iso","location":"\u677e\u6797\u306e\u4e2d","url":null,"description":"\u597d\u304d\u306a\u6c17\u6301\u3061\u3092 \u5927\u5207\u306b\u3057\u305f\u3044","protected":false,"verified":false,"followers_count":191,"friends_count":37,"listed_count":2,"favourites_count":269,"statuses_count":293,"created_at":"Tue Oct 06 08:29:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365048673284096\/3RTAMTxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365048673284096\/3RTAMTxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3801344773\/1446831377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DW_iso","name":"\u3044\u305d\u304d\u3061","id":3801344773,"id_str":"3801344773","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019658"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254354944,"id_str":"663727825254354944","text":"\u4eca\u65e5\u3082\u4e00\u65e5\u304a\u3064\u304b\u308c\u3055\u307e\u301c\uff0c\u306d\u3080\u306d\u3080","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1642906050,"id_str":"1642906050","name":"\u7d17\u5b63","screen_name":"saki0900","location":"\u516b\u738b\u5b50","url":null,"description":"\u6700\u8fd1\uff0c\u5f7c\u6c0f\u3068\u5225\u308c\u3061\u3083\u3063\u3066\u6c17\u5206\u3092\u3082\u308a\u30a2\u30b2\u3088\u3046\u3068\u601d\u3063\u3066\u59cb\u3081\u307e\u3057\u305f\uff01\u306a\u306e\u3067\uff0c\u307f\u3093\u306a\u30e8\u30ed\u30b7\u30af\u3067\u3059","protected":false,"verified":false,"followers_count":1641,"friends_count":1928,"listed_count":0,"favourites_count":0,"statuses_count":6684,"created_at":"Sat Aug 03 14:21:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000235198305\/faf5ff3b88a01ba07fb74fa52363c2a2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000235198305\/faf5ff3b88a01ba07fb74fa52363c2a2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1642906050\/1375754459","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254510593,"id_str":"663727825254510593","text":"Acabou-se o tempo que se implorava por amor.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":260796779,"id_str":"260796779","name":"Meck","screen_name":"_Meck","location":"Vit\u00f3ria de Santo Ant\u00e3o","url":null,"description":"Agente tem \u00e9 que sonhar, se n\u00e3o as coisas n\u00e3o acontecem. Arquitetura e Urbanismo, 22, Pernambucano.","protected":false,"verified":false,"followers_count":555,"friends_count":73,"listed_count":3,"favourites_count":491,"statuses_count":20511,"created_at":"Fri Mar 04 16:31:40 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055212410\/85884fca9bb2deb376000c6b94d3c337.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055212410\/85884fca9bb2deb376000c6b94d3c337.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DCE3F5","profile_text_color":"FAF5FA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585468277020852225\/0BUVbzfY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585468277020852225\/0BUVbzfY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260796779\/1368371259","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825262768128,"id_str":"663727825262768128","text":"RT @fumi____0521: \u30ab\u30eb\u30de \/ BUMP OF CHICKEN\n\n\"\u6587\u5316(\u3075\u307f\u5316)\u306e\u65e5\" https:\/\/t.co\/BV6TMyp0z3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051960102,"id_str":"3051960102","name":"\u306e\u3093*@\u304a\u3075\u3068\u3045\u3093","screen_name":"pika_churun","location":"hengao","url":"http:\/\/instagram.com\/nodoka2414\/","description":"\u685c\u4e1870thSBCVo.&Gt. BUMP OF CHICKEN \u7c73\u6d25\u7384\u5e2b Honey works \u690e\u540d\u6797\u6a8e \uff3bAlexandos\uff3d\u4e95\u4e0a\u82d1\u5b50 mirei\u3061\u3083\u3093\u90a6ROCK\u30e1\u30a4\u30af\u304c\u8da3\u5473\u3002","protected":false,"verified":false,"followers_count":368,"friends_count":366,"listed_count":6,"favourites_count":9206,"statuses_count":3651,"created_at":"Sun Mar 01 07:05:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662565221110693888\/3edlnhLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662565221110693888\/3edlnhLq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051960102\/1446539467","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 12:02:43 +0000 2015","id":661513835090571264,"id_str":"661513835090571264","text":"\u30ab\u30eb\u30de \/ BUMP OF CHICKEN\n\n\"\u6587\u5316(\u3075\u307f\u5316)\u306e\u65e5\" https:\/\/t.co\/BV6TMyp0z3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2549419124,"id_str":"2549419124","name":"\u3075\u307f","screen_name":"fumi____0521","location":"YouTube","url":"https:\/\/m.youtube.com\/channel\/UCrhXrajxmpWTUfc2_UHQOAg\/videos","description":"\u25bc\u672d\u5e4c\u4f4f\u307f\u306e18\u6b73\u306e\u81ea\u79f0\u7d33\u58eb\u3002\u53d7\u9a13\u306b\u3066\u6d6e\u4e0a\u7387\u6fc0\u6e1b\u3002 \u6765\u5e74\u5ea6\u304b\u3089\u672c\u683c\u7684\u306b\u6d3b\u52d5\u3059\u308b\u4e88\u5b9a\u3067\u3059\u306e\u3067\u5f85\u3063\u3066\u3044\u305f\u3060\u3051\u305f\u3089\u5e78\u3044\u3067\u3059\u3002\u4eca\u307e\u3067\u306e\u5168\u3066\u306e\u52d5\u753b:\u3010@PianoFumi\u3011 Instagram:http:\/\/Instagram.com\/fumi_0521","protected":false,"verified":false,"followers_count":29669,"friends_count":337,"listed_count":109,"favourites_count":32998,"statuses_count":29046,"created_at":"Fri Jun 06 06:59:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653786929125658624\/cFGnNfwP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653786929125658624\/cFGnNfwP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2549419124\/1431268344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1348,"favorite_count":3172,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661513718031761409,"id_str":"661513718031761409","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","url":"https:\/\/t.co\/BV6TMyp0z3","display_url":"pic.twitter.com\/BV6TMyp0z3","expanded_url":"http:\/\/twitter.com\/fumi____0521\/status\/661513835090571264\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661513718031761409,"id_str":"661513718031761409","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","url":"https:\/\/t.co\/BV6TMyp0z3","display_url":"pic.twitter.com\/BV6TMyp0z3","expanded_url":"http:\/\/twitter.com\/fumi____0521\/status\/661513835090571264\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":29696,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/640x360\/FG1nr1Me-Qe_p3tj.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/pl\/9RsSK_rUKtlauLp0.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/pl\/9RsSK_rUKtlauLp0.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/640x360\/FG1nr1Me-Qe_p3tj.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/1280x720\/e2qNy0sIlHQ6LK6j.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/320x180\/caFRNH8YAkVBxz95.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fumi____0521","name":"\u3075\u307f","id":2549419124,"id_str":"2549419124","indices":[3,16]}],"symbols":[],"media":[{"id":661513718031761409,"id_str":"661513718031761409","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","url":"https:\/\/t.co\/BV6TMyp0z3","display_url":"pic.twitter.com\/BV6TMyp0z3","expanded_url":"http:\/\/twitter.com\/fumi____0521\/status\/661513835090571264\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661513835090571264,"source_status_id_str":"661513835090571264","source_user_id":2549419124,"source_user_id_str":"2549419124"}]},"extended_entities":{"media":[{"id":661513718031761409,"id_str":"661513718031761409","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661513718031761409\/pu\/img\/b9eLGnLzOTdFUKZH.jpg","url":"https:\/\/t.co\/BV6TMyp0z3","display_url":"pic.twitter.com\/BV6TMyp0z3","expanded_url":"http:\/\/twitter.com\/fumi____0521\/status\/661513835090571264\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661513835090571264,"source_status_id_str":"661513835090571264","source_user_id":2549419124,"source_user_id_str":"2549419124","video_info":{"aspect_ratio":[16,9],"duration_millis":29696,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/640x360\/FG1nr1Me-Qe_p3tj.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/pl\/9RsSK_rUKtlauLp0.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/pl\/9RsSK_rUKtlauLp0.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/640x360\/FG1nr1Me-Qe_p3tj.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/1280x720\/e2qNy0sIlHQ6LK6j.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661513718031761409\/pu\/vid\/320x180\/caFRNH8YAkVBxz95.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019666"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825224990720,"id_str":"663727825224990720","text":"@mc_oritak \n\u884c\u3051\u3070\u826f\u3044( '\u03c9')\u30ce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727064063700992,"in_reply_to_status_id_str":"663727064063700992","in_reply_to_user_id":3308237508,"in_reply_to_user_id_str":"3308237508","in_reply_to_screen_name":"mc_oritak","user":{"id":2889543930,"id_str":"2889543930","name":"(\u261e\u0e4f\u3142\u0e4f\uff61)\u261emiel","screen_name":"angenoir_miel","location":null,"url":null,"description":"\u7720\u304f\u3066\u3082\u5bdd\u306a\u3044style","protected":false,"verified":false,"followers_count":72,"friends_count":76,"listed_count":2,"favourites_count":17302,"statuses_count":22564,"created_at":"Tue Nov 04 09:51:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633862358373298176\/edxiSw4n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633862358373298176\/edxiSw4n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2889543930\/1424191498","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mc_oritak","name":"ORI","id":3308237508,"id_str":"3308237508","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019657"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825250226176,"id_str":"663727825250226176","text":"Get Weather Updates from The Weather Channel. 09:40:17","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2463246080,"id_str":"2463246080","name":"04061trda","screen_name":"04061trda","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":93972,"created_at":"Fri Apr 25 13:58:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019663"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233416192,"id_str":"663727825233416192","text":"\u4ffa\u3068\u51fa\u4f1a\u308f\u306a\u3051\u308c\u3070\n\u3053\u3093\u306a\u306b\u8f9b\u3044\u601d\u3044\u3055\u305b\u306a\u304f\u3066\u6e08\u3093\u3060\u3093\u3060\u308d\u3046\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180052419,"id_str":"4180052419","name":"\u9752","screen_name":"rjgcjrfhf","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 09 14:17:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725841784836096\/k2SJOUJE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725841784836096\/k2SJOUJE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258582016,"id_str":"663727825258582016","text":"RT @jwCSGO: Always... https:\/\/t.co\/ebiyRtQtfA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":379919730,"id_str":"379919730","name":"Mykah","screen_name":"HiImMyks","location":"Washington","url":null,"description":"17 II You know why im here II Sup II","protected":false,"verified":false,"followers_count":261,"friends_count":250,"listed_count":4,"favourites_count":1503,"statuses_count":4386,"created_at":"Sun Sep 25 19:40:02 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583753466134179841\/xYlWsUyo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583753466134179841\/xYlWsUyo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379919730\/1444257217","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:50:22 +0000 2015","id":663685056909746176,"id_str":"663685056909746176","text":"Always... https:\/\/t.co\/ebiyRtQtfA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503875377,"id_str":"503875377","name":"Jesper Wecksell","screen_name":"jwCSGO","location":null,"url":null,"description":"Most people know me as the Wonderchild.","protected":false,"verified":false,"followers_count":96860,"friends_count":97,"listed_count":304,"favourites_count":1586,"statuses_count":1338,"created_at":"Sun Feb 26 02:30:13 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"sv","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454650837030031360\/MrTeoq81.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454650837030031360\/MrTeoq81.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594197222482382848\/sxbe44O3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594197222482382848\/sxbe44O3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503875377\/1444241464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":532,"favorite_count":1011,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663685046168109056,"id_str":"663685046168109056","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","url":"https:\/\/t.co\/ebiyRtQtfA","display_url":"pic.twitter.com\/ebiyRtQtfA","expanded_url":"http:\/\/twitter.com\/jwCSGO\/status\/663685056909746176\/photo\/1","type":"photo","sizes":{"medium":{"w":554,"h":960,"resize":"fit"},"small":{"w":340,"h":589,"resize":"fit"},"large":{"w":554,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663685046168109056,"id_str":"663685046168109056","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","url":"https:\/\/t.co\/ebiyRtQtfA","display_url":"pic.twitter.com\/ebiyRtQtfA","expanded_url":"http:\/\/twitter.com\/jwCSGO\/status\/663685056909746176\/photo\/1","type":"photo","sizes":{"medium":{"w":554,"h":960,"resize":"fit"},"small":{"w":340,"h":589,"resize":"fit"},"large":{"w":554,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jwCSGO","name":"Jesper Wecksell","id":503875377,"id_str":"503875377","indices":[3,10]}],"symbols":[],"media":[{"id":663685046168109056,"id_str":"663685046168109056","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","url":"https:\/\/t.co\/ebiyRtQtfA","display_url":"pic.twitter.com\/ebiyRtQtfA","expanded_url":"http:\/\/twitter.com\/jwCSGO\/status\/663685056909746176\/photo\/1","type":"photo","sizes":{"medium":{"w":554,"h":960,"resize":"fit"},"small":{"w":340,"h":589,"resize":"fit"},"large":{"w":554,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663685056909746176,"source_status_id_str":"663685056909746176","source_user_id":503875377,"source_user_id_str":"503875377"}]},"extended_entities":{"media":[{"id":663685046168109056,"id_str":"663685046168109056","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiCHuWwAAIVmZ.jpg","url":"https:\/\/t.co\/ebiyRtQtfA","display_url":"pic.twitter.com\/ebiyRtQtfA","expanded_url":"http:\/\/twitter.com\/jwCSGO\/status\/663685056909746176\/photo\/1","type":"photo","sizes":{"medium":{"w":554,"h":960,"resize":"fit"},"small":{"w":340,"h":589,"resize":"fit"},"large":{"w":554,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663685056909746176,"source_status_id_str":"663685056909746176","source_user_id":503875377,"source_user_id_str":"503875377"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825246121984,"id_str":"663727825246121984","text":"@hiorix_YM \u6885\u9152\u306f\u3069\u3046\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721770843680768,"in_reply_to_status_id_str":"663721770843680768","in_reply_to_user_id":3670527804,"in_reply_to_user_id_str":"3670527804","in_reply_to_screen_name":"hiorix_YM","user":{"id":3671260098,"id_str":"3671260098","name":"\u745e\u5343@ship3&ship8","screen_name":"RRmizuchi","location":"ship3 \u3069\u3059\u3053\u3044\u55ab\u8336 ship8 \u30d5\u30ea\u30fc\u30b9\u30bf\u30a4\u30eb","url":null,"description":"\u904a\u622f\u738b\u3068PSO2\u3002\u6642\u3005\u30a2\u30cb\u30e1\u3002\n\nPSO2\u3067ship3,ship8\u306b\u3066\u6d3b\u52d5\u3057\u3066\u3044\u308b\u745e\u5343\u3067\u3059\u3002\u4e3b\u306b\u30b7\u30c9\u304f\u3093\u3068\u547c\u3070\u308c\u3066\u308b\u4eba\u3067\u3059\u3002\n\u30c4\u30a4\u30c3\u30bf\u30fc\u3088\u304f\u308f\u304b\u3089\u306a\u3051\u3069\u540c\u3058\u9bd6\u306e\u4eba\u304c\u30aa\u30b9\u30b9\u30e1\u3055\u308c\u3066\u305f\u3089\u3068\u308a\u3042\u3048\u305a\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3046\u3002\u30a6\u30b6\u304b\u3063\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3057\u3061\u3083\u3063\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":71,"friends_count":124,"listed_count":1,"favourites_count":232,"statuses_count":1176,"created_at":"Thu Sep 24 14:47:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662438164636667905\/E-38X3yK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662438164636667905\/E-38X3yK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3671260098\/1445521116","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiorix_YM","name":"\u6c37\u7e54","id":3670527804,"id_str":"3670527804","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019662"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233555456,"id_str":"663727825233555456","text":"#\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646\n\u0627\u0644\u0644\u0647\u0645 \u0644\u0643 \u0627\u0644\u062d\u0645\u062f \u062d\u062a\u0649 \u062a\u0631\u0636\u0649\n\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u0646\u0627 \u0641\u064a\u0647\u0645 \u064a\u0648\u0645 \u0623\u0633\u0648\u062f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4011607341,"id_str":"4011607341","name":"thedoctor","screen_name":"0thedoctor0012","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":181,"listed_count":1,"favourites_count":24,"statuses_count":147,"created_at":"Wed Oct 21 19:33:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656928341770027008\/iOfrhmYf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656928341770027008\/iOfrhmYf_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646","indices":[0,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080019659"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237618688,"id_str":"663727825237618688","text":"RT @FuckMeTante: Hati2 punya bini..ngesek lantai atas sambil liat suami lg motong rumput dr jndela.. http:\/\/t.co\/a42Ot184ay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4125543552,"id_str":"4125543552","name":"arman dai","screen_name":"armandai1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":33,"listed_count":0,"favourites_count":1,"statuses_count":605,"created_at":"Wed Nov 04 16:17:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Aug 02 11:18:45 +0000 2015","id":627800701700157440,"id_str":"627800701700157440","text":"Hati2 punya bini..ngesek lantai atas sambil liat suami lg motong rumput dr jndela.. http:\/\/t.co\/a42Ot184ay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2387242904,"id_str":"2387242904","name":"Doyan Memek Becek","screen_name":"FuckMeTante","location":"di mana pun jadi","url":null,"description":"kecil sih..tp syukur stiap tante\/ibu2\/mbak2\/abg slalu bilang nanti puasin lagi","protected":false,"verified":false,"followers_count":3793,"friends_count":918,"listed_count":9,"favourites_count":124,"statuses_count":1705,"created_at":"Thu Mar 13 15:29:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444149962721333248\/-CI9iCjq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444149962721333248\/-CI9iCjq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2387242904\/1394728561","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":627800685283639296,"id_str":"627800685283639296","indices":[84,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","url":"http:\/\/t.co\/a42Ot184ay","display_url":"pic.twitter.com\/a42Ot184ay","expanded_url":"http:\/\/twitter.com\/FuckMeTante\/status\/627800701700157440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":627800685283639296,"id_str":"627800685283639296","indices":[84,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","url":"http:\/\/t.co\/a42Ot184ay","display_url":"pic.twitter.com\/a42Ot184ay","expanded_url":"http:\/\/twitter.com\/FuckMeTante\/status\/627800701700157440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FuckMeTante","name":"Doyan Memek Becek","id":2387242904,"id_str":"2387242904","indices":[3,15]}],"symbols":[],"media":[{"id":627800685283639296,"id_str":"627800685283639296","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","url":"http:\/\/t.co\/a42Ot184ay","display_url":"pic.twitter.com\/a42Ot184ay","expanded_url":"http:\/\/twitter.com\/FuckMeTante\/status\/627800701700157440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":627800701700157440,"source_status_id_str":"627800701700157440","source_user_id":2387242904,"source_user_id_str":"2387242904"}]},"extended_entities":{"media":[{"id":627800685283639296,"id_str":"627800685283639296","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLZlZaQUAAAjZXk.jpg","url":"http:\/\/t.co\/a42Ot184ay","display_url":"pic.twitter.com\/a42Ot184ay","expanded_url":"http:\/\/twitter.com\/FuckMeTante\/status\/627800701700157440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":627800701700157440,"source_status_id_str":"627800701700157440","source_user_id":2387242904,"source_user_id_str":"2387242904"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080019660"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254412288,"id_str":"663727825254412288","text":"@haduki_1009 \u304a\u3046\u3001\u7686\u306e\u304a\u91d1\u306e\u554f\u984c\u3082\u3042\u3093\u3057\u306a\u301c\n\u304a\u524d\u3070\u3057\u3053\u3068\u3082\u3088\u3073\u3068\u3082\u7e4b\u304c\u3063\u3066\u308b\u304b\u3089\u7686\u4f1a\u3048\u308b\u306a\u540c\u5e74\u4ee3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726330874236928,"in_reply_to_status_id_str":"663726330874236928","in_reply_to_user_id":1620449384,"in_reply_to_user_id_str":"1620449384","in_reply_to_screen_name":"haduki_1009","user":{"id":3146196380,"id_str":"3146196380","name":"\u305f\u304d\u3056\u304d@\u691c\u5b9a\u3068\u304b\u77e5\u3089\u306a\u3044","screen_name":"hijiyama0502","location":"\u6edd\u6ca2\u3058\u3083\u306a\u3044\u3067\u3059\u6edd\u5d0e\u3067\u3059","url":null,"description":"19\/\u9280\u9b42(\u571f\u65b9)HQ(\u5ca9\u3061\u3083\u3093)D\u7070(\u795e\u7530)\u5200\u5263(\u517c\u3055\u3093)GANGSTA.(\u30c7\u30ea\u30b3)PSYCHO-PASS(\u30ae\u30ce)\/\u30c4\u30a4\u6e1b\u306b\u52e4\u3057\u3080\/\u5275\u4f5c\u3082\u3061\u307e\u3061\u307e\u3068\/\uff82\uff72\uff8c\uff9f\uff9b\u3010http:\/\/twpf.jp\/hijiyama0502\u3011R18\u7d75\u306f\u3053\u3061\u3089\u3010@takizaki0805\u3011\u7121\u65ad\u8ee2\u8f09\u7981\u6b62 HQ\u57a2\u3010@iwaizumi1_4\u3011","protected":false,"verified":false,"followers_count":470,"friends_count":294,"listed_count":43,"favourites_count":38692,"statuses_count":71458,"created_at":"Thu Apr 09 14:02:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716053151670272\/ZEnS_Wwl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716053151670272\/ZEnS_Wwl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146196380\/1446973147","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haduki_1009","name":"\u8449\u6708GX","id":1620449384,"id_str":"1620449384","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825241817088,"id_str":"663727825241817088","text":"RT @basemaguilera: They're so beautiful \n#4DaysUntilMITAM https:\/\/t.co\/ZLQZqwnjbE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":592227235,"id_str":"592227235","name":"BIRTHDAY GIRL! ","screen_name":"jpgnxrry","location":"USA ","url":"https:\/\/vine.co\/v\/MrqwO7lvJxg","description":"Everything is a mess and I'm okay with it","protected":false,"verified":false,"followers_count":8763,"friends_count":4925,"listed_count":28,"favourites_count":17493,"statuses_count":38956,"created_at":"Sun May 27 23:22:55 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496126726838034432\/hvNjd6ZQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496126726838034432\/hvNjd6ZQ.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647801456574099457\/F_7yWbjo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647801456574099457\/F_7yWbjo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/592227235\/1443282851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:47 +0000 2015","id":663724670055763969,"id_str":"663724670055763969","text":"They're so beautiful \n#4DaysUntilMITAM https:\/\/t.co\/ZLQZqwnjbE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174811123,"id_str":"174811123","name":"gayforzayn\u2728","screen_name":"basemaguilera","location":"italy","url":"http:\/\/basemaguilera.flavors.me","description":"Want to get 10k followers? Read & RT this http:\/\/tl.gd\/n_1snq3vd Buy my handmade t-shirts: https:\/\/www.etsy.com\/it\/shop\/TeenTShirts","protected":false,"verified":false,"followers_count":46307,"friends_count":28280,"listed_count":261,"favourites_count":32399,"statuses_count":19342,"created_at":"Wed Aug 04 22:02:04 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000135351221\/BLhtUqti.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000135351221\/BLhtUqti.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606844589421563904\/TdNOmGTs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606844589421563904\/TdNOmGTs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174811123\/1424267357","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":14,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[22,38]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663509569079918592,"id_str":"663509569079918592","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":434,"resize":"fit"},"medium":{"w":599,"h":434,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"}]},"extended_entities":{"media":[{"id":663509569079918592,"id_str":"663509569079918592","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":434,"resize":"fit"},"medium":{"w":599,"h":434,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"},{"id":663509572158537728,"id_str":"663509572158537728","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcMGUwAAd6Od.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcMGUwAAd6Od.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"medium":{"w":522,"h":439,"resize":"fit"},"large":{"w":522,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":285,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[41,57]}],"urls":[],"user_mentions":[{"screen_name":"basemaguilera","name":"gayforzayn\u2728","id":174811123,"id_str":"174811123","indices":[3,17]}],"symbols":[],"media":[{"id":663509569079918592,"id_str":"663509569079918592","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":434,"resize":"fit"},"medium":{"w":599,"h":434,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"}]},"extended_entities":{"media":[{"id":663509569079918592,"id_str":"663509569079918592","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcAoUwAAt02d.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":434,"resize":"fit"},"medium":{"w":599,"h":434,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"},{"id":663509572158537728,"id_str":"663509572158537728","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCcMGUwAAd6Od.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCcMGUwAAd6Od.jpg","url":"https:\/\/t.co\/ZLQZqwnjbE","display_url":"pic.twitter.com\/ZLQZqwnjbE","expanded_url":"http:\/\/twitter.com\/kisscheshire\/status\/663509575505588225\/photo\/1","type":"photo","sizes":{"medium":{"w":522,"h":439,"resize":"fit"},"large":{"w":522,"h":439,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":285,"resize":"fit"}},"source_status_id":663509575505588225,"source_status_id_str":"663509575505588225","source_user_id":356582650,"source_user_id_str":"356582650"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019661"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254400000,"id_str":"663727825254400000","text":"@SpicyDallas__ @clumsymcc @MuffinMendes___ sabi ni itay jacob half sis si jasper daw yung pinaka bunso natin hahahahaha \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727520743747586,"in_reply_to_status_id_str":"663727520743747586","in_reply_to_user_id":2868841063,"in_reply_to_user_id_str":"2868841063","in_reply_to_screen_name":"SpicyDallas__","user":{"id":909465852,"id_str":"909465852","name":"\u2728","screen_name":"cthsette_","location":"Cebu City","url":null,"description":"calum thomas hood af | Instagram: @seytetete","protected":false,"verified":false,"followers_count":1259,"friends_count":825,"listed_count":2,"favourites_count":15765,"statuses_count":24335,"created_at":"Sun Oct 28 04:01:40 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"070807","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494488087825637378\/jztoezFb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494488087825637378\/jztoezFb.jpeg","profile_background_tile":true,"profile_link_color":"0A0A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662967347423014913\/N1Bq8XI3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662967347423014913\/N1Bq8XI3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/909465852\/1441187292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpicyDallas__","name":"Chunliexcx","id":2868841063,"id_str":"2868841063","indices":[0,14]},{"screen_name":"clumsymcc","name":"\u2754","id":3792409694,"id_str":"3792409694","indices":[15,25]},{"screen_name":"MuffinMendes___","name":"THERESE","id":996884107,"id_str":"996884107","indices":[26,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825241939968,"id_str":"663727825241939968","text":"RT @sukkkerklumpen: Om jeg nevner noe flere ganger er det som oftest fordi det er noe som plager meg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452550179,"id_str":"452550179","name":"renate","screen_name":"RGjerd","location":"Bergen, Norway","url":"http:\/\/renateegjerd.vsco.co\/","description":null,"protected":false,"verified":false,"followers_count":74,"friends_count":129,"listed_count":0,"favourites_count":1074,"statuses_count":2444,"created_at":"Mon Jan 02 00:17:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630768152700420096\/6ci7FnAQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630768152700420096\/6ci7FnAQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452550179\/1439222028","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:51:31 +0000 2015","id":663670247183024128,"id_str":"663670247183024128","text":"Om jeg nevner noe flere ganger er det som oftest fordi det er noe som plager meg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1037528017,"id_str":"1037528017","name":"Christina","screen_name":"sukkkerklumpen","location":null,"url":"http:\/\/instagram.com\/christinadaaelampe","description":"Jenten med Lampe som etternavn","protected":false,"verified":false,"followers_count":399,"friends_count":299,"listed_count":0,"favourites_count":9760,"statuses_count":7453,"created_at":"Wed Dec 26 16:36:45 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"no","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661303238977802242\/utJKfMqP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661303238977802242\/utJKfMqP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1037528017\/1444588807","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d3d1fc0d0abc5a0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d3d1fc0d0abc5a0.json","place_type":"city","name":"Meland","full_name":"Meland, Norge","country_code":"NO","country":"Norge","bounding_box":{"type":"Polygon","coordinates":[[[4.921297,60.494887],[4.921297,60.632558],[5.286219,60.632558],[5.286219,60.494887]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"no"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sukkkerklumpen","name":"Christina","id":1037528017,"id_str":"1037528017","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"no","timestamp_ms":"1447080019661"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258549248,"id_str":"663727825258549248","text":"\ub9c8\ub9c8 \uc9dc\uc99d\ub098","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2171361074,"id_str":"2171361074","name":"\ud2b8\uc815\ud588\uc5b4\uc6a7 \ubca0\ub9ac","screen_name":"qpflmm","location":null,"url":null,"description":"EXO9 \u3147\u3145\u3147)9 \/ \ubed8\ud2b8\uc717 \uc9c0\ubd84 \uc9f1\uc774\uc5d0\uc624","protected":false,"verified":false,"followers_count":111,"friends_count":115,"listed_count":1,"favourites_count":23,"statuses_count":403,"created_at":"Sun Nov 03 02:54:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660798876241166336\/_LD5vicF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660798876241166336\/_LD5vicF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2171361074\/1443916980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258606592,"id_str":"663727825258606592","text":"This app called mCent gives you free airtime for trying new apps: https:\/\/t.co\/6e2DkHWRpg","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166122719,"id_str":"3166122719","name":"Ahmadsidd","screen_name":"ahmadsidd005","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":60,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Tue Apr 14 15:18:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587998848527630336\/5B6344iH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587998848527630336\/5B6344iH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6e2DkHWRpg","expanded_url":"https:\/\/mcent.com\/app\/?mcode=7GXGAI&tcx=TWTT","display_url":"mcent.com\/app\/?mcode=7GX\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237598208,"id_str":"663727825237598208","text":"andressah nao me responde no wpp vaca","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350394967,"id_str":"350394967","name":"Jenifer","screen_name":"jenicostt","location":"Rio Grande do Sul, Brasil ","url":"http:\/\/hoholestgo.tumblr.com","description":"nada \u00e9 errado se te faz feliz","protected":false,"verified":false,"followers_count":800,"friends_count":612,"listed_count":0,"favourites_count":2869,"statuses_count":13545,"created_at":"Sun Aug 07 18:09:11 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516757604547059712\/Np6hfbnY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516757604547059712\/Np6hfbnY.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C5C5C7","profile_text_color":"A013F2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657994209559973888\/9qlNaTeB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657994209559973888\/9qlNaTeB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350394967\/1446151812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"f12fb6eee586114f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f12fb6eee586114f.json","place_type":"city","name":"Santa Rosa","full_name":"Santa Rosa, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-54.685169,-27.984775],[-54.685169,-27.697491],[-54.357801,-27.697491],[-54.357801,-27.984775]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080019660"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825262776320,"id_str":"663727825262776320","text":"RT @mickeyolc: NK\u8de1\u5730\u306b\u5efa\u3066\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9\u9928\u3092\u4f5c\u3063\u3066\u30d0\u30fc\u30d0\u30f3\u30af\u306e\u5206\u9928\u3068\u3057\u3066\u306e\u6a5f\u80fd\uff08\u5e38\u8a2d\u5c55\u793a\uff09\u3068\u7279\u5225\u5c55\u793a(OLC\u306e\u907a\u7523\u30e1\u30a4\u30f3)\u3068\u304b\u3042\u3063\u305f\u3089\u305d\u308c\u306a\u308a\u306b\u9700\u8981\u3042\u308b\u6c17\u304c\u3059\u308b\u3051\u3069\u2026\u30aa\u30d5\u30a3\u30db\u30c6\u30eb\u306b\u3082\u8fd1\u3044\u3053\u3068\u3060\u3057","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1443006504,"id_str":"1443006504","name":"\u821e\u6d5c\u65b0\u805e","screen_name":"maihama_shimbun","location":"\u5922\u304c\u53f6\u3046\u5834\u6240","url":"http:\/\/maihama.hateblo.jp\/","description":"\u306f\u3066\u306a\u30d6\u30ed\u30b0\u300c\u821e\u6d5c\u65b0\u805e\u300d\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u8a18\u4e8b\u306e\u66f4\u65b0\u60c5\u5831\u3084\u30c7\u30a3\u30ba\u30cb\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u914d\u4fe1\u3057\u3066\u3044\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u3092\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059m(__)m","protected":false,"verified":false,"followers_count":11041,"friends_count":11422,"listed_count":137,"favourites_count":7570,"statuses_count":13137,"created_at":"Mon May 20 06:40:15 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458941981691891713\/tRXi9B7I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458941981691891713\/tRXi9B7I_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1443006504\/1398255236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:55:04 +0000 2015","id":663701337557745664,"id_str":"663701337557745664","text":"NK\u8de1\u5730\u306b\u5efa\u3066\u30a2\u30fc\u30ab\u30a4\u30d6\u30b9\u9928\u3092\u4f5c\u3063\u3066\u30d0\u30fc\u30d0\u30f3\u30af\u306e\u5206\u9928\u3068\u3057\u3066\u306e\u6a5f\u80fd\uff08\u5e38\u8a2d\u5c55\u793a\uff09\u3068\u7279\u5225\u5c55\u793a(OLC\u306e\u907a\u7523\u30e1\u30a4\u30f3)\u3068\u304b\u3042\u3063\u305f\u3089\u305d\u308c\u306a\u308a\u306b\u9700\u8981\u3042\u308b\u6c17\u304c\u3059\u308b\u3051\u3069\u2026\u30aa\u30d5\u30a3\u30db\u30c6\u30eb\u306b\u3082\u8fd1\u3044\u3053\u3068\u3060\u3057","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2545977516,"id_str":"2545977516","name":"\u3089\u3080","screen_name":"mickeyolc","location":null,"url":"http:\/\/mickeyolc.com","description":"\u300eD-Sta.(D\u30b9\u30c6)\u300f\u306e\u4e2d\u306e\u4eba\u3002Anaheim\/Orland\/Tokyo\/Paris\/Hong Kong\/Aulani\/Shanghai*D-Sta.\u306e\u554f\u3044\u5408\u308f\u305b\u306fhttp:\/\/mickeyolc.com\/contact\u307e\u305f\u306fDM\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002#D_Sta","protected":false,"verified":false,"followers_count":179,"friends_count":310,"listed_count":6,"favourites_count":2645,"statuses_count":3389,"created_at":"Wed Jun 04 12:22:22 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639081122438053888\/bx4s2h9u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639081122438053888\/bx4s2h9u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2545977516\/1440129456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mickeyolc","name":"\u3089\u3080","id":2545977516,"id_str":"2545977516","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019666"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825258573824,"id_str":"663727825258573824","text":"HAHAHHAA https:\/\/t.co\/Zt6yq6cDtj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612325201,"id_str":"612325201","name":"Jezza","screen_name":"jjeweltan","location":"Perth - Borneo","url":"http:\/\/jjeweltan.blogspot.com","description":"undecided.","protected":false,"verified":false,"followers_count":187,"friends_count":202,"listed_count":2,"favourites_count":3060,"statuses_count":13442,"created_at":"Tue Jun 19 06:25:48 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807093556\/9a931e019c720afe634fc2958ad90599.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807093556\/9a931e019c720afe634fc2958ad90599.jpeg","profile_background_tile":true,"profile_link_color":"FA2597","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662535636327358464\/7-mgFcnQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662535636327358464\/7-mgFcnQ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663198576080719872,"quoted_status_id_str":"663198576080719872","quoted_status":{"created_at":"Sun Nov 08 03:37:16 +0000 2015","id":663198576080719872,"id_str":"663198576080719872","text":"I AM CRYING THIS IS MY BROTHER OMG https:\/\/t.co\/ROPG6Bl3Fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474167044,"id_str":"474167044","name":"tori howard","screen_name":"torii_howardd","location":null,"url":"http:\/\/victoriaaahoward.vsco.co","description":"ht '18 \/ byeeeee girl","protected":false,"verified":false,"followers_count":1015,"friends_count":1044,"listed_count":2,"favourites_count":10507,"statuses_count":20415,"created_at":"Wed Jan 25 18:28:26 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663444380901068800\/Tr3spVv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663444380901068800\/Tr3spVv6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474167044\/1446844336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663198367455948800,"id_str":"663198367455948800","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663198367455948800\/pu\/img\/TYhrx0gJ7dD-GGmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663198367455948800\/pu\/img\/TYhrx0gJ7dD-GGmn.jpg","url":"https:\/\/t.co\/ROPG6Bl3Fc","display_url":"pic.twitter.com\/ROPG6Bl3Fc","expanded_url":"http:\/\/twitter.com\/torii_howardd\/status\/663198576080719872\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663198367455948800,"id_str":"663198367455948800","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663198367455948800\/pu\/img\/TYhrx0gJ7dD-GGmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663198367455948800\/pu\/img\/TYhrx0gJ7dD-GGmn.jpg","url":"https:\/\/t.co\/ROPG6Bl3Fc","display_url":"pic.twitter.com\/ROPG6Bl3Fc","expanded_url":"http:\/\/twitter.com\/torii_howardd\/status\/663198576080719872\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29400,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/pl\/3RDK_jmI-U3xwwNh.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/vid\/480x480\/cfVd89z51W8A5Qi9.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/vid\/720x720\/ioAKKnhgs5zAc5RR.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/vid\/480x480\/cfVd89z51W8A5Qi9.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/vid\/240x240\/rgl-XTD69bbZnoO1.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663198367455948800\/pu\/pl\/3RDK_jmI-U3xwwNh.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Zt6yq6cDtj","expanded_url":"https:\/\/twitter.com\/torii_howardd\/status\/663198576080719872","display_url":"twitter.com\/torii_howardd\/\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080019665"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237712898,"id_str":"663727825237712898","text":"RT @KarenBergSP: Ser bondadoso es divino. Compartir es conectarte con el deseo de tu alma. Perdonar y ser misericordioso es ser como Dios.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2984870122,"id_str":"2984870122","name":"Lizbeth socorro P","screen_name":"Lizbecita_55","location":"Zulia","url":null,"description":"Mam\u00e0 de 2. Recreando pensamientos magicos llenos d amor para fortalecer el alma y ahuyentar los miedos","protected":false,"verified":false,"followers_count":313,"friends_count":528,"listed_count":0,"favourites_count":68,"statuses_count":1536,"created_at":"Sun Jan 18 23:34:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561501855080284160\/C060kD9w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561501855080284160\/C060kD9w_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984870122\/1434931271","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:25:22 +0000 2015","id":663452270621802496,"id_str":"663452270621802496","text":"Ser bondadoso es divino. Compartir es conectarte con el deseo de tu alma. Perdonar y ser misericordioso es ser como Dios.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255652655,"id_str":"255652655","name":"Karen Berg","screen_name":"KarenBergSP","location":null,"url":"https:\/\/www.facebook.com\/karenberg.esp","description":"L\u00edder espiritual del Centro de Kabbalah. Autora de Continuar\u00e1, Dios Usa L\u00e1piz Labial y Simplemente Luz.","protected":false,"verified":false,"followers_count":36622,"friends_count":128,"listed_count":254,"favourites_count":24,"statuses_count":1847,"created_at":"Mon Feb 21 20:06:21 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/208423361\/tile.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/208423361\/tile.gif","profile_background_tile":true,"profile_link_color":"4192B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E9F2E9","profile_text_color":"3D3B3D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3656513654\/d0a379e9ced75ac5c015b837f14fd94b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3656513654\/d0a379e9ced75ac5c015b837f14fd94b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255652655\/1395687773","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":56,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarenBergSP","name":"Karen Berg","id":255652655,"id_str":"255652655","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080019660"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254539265,"id_str":"663727825254539265","text":"Soh vc isinha hauahus https:\/\/t.co\/pSEgTKL56C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153380195,"id_str":"3153380195","name":"gabriella sanches","screen_name":"gabihh_sanches2","location":null,"url":null,"description":"seja leve e releve","protected":false,"verified":false,"followers_count":22,"friends_count":185,"listed_count":0,"favourites_count":11,"statuses_count":3,"created_at":"Fri Apr 10 09:53:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401913950609408\/Cu6qxFLQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401913950609408\/Cu6qxFLQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153380195\/1447002313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727823211896832,"id_str":"663727823211896832","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8EoWoAAEkOQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8EoWoAAEkOQ.jpg","url":"https:\/\/t.co\/pSEgTKL56C","display_url":"pic.twitter.com\/pSEgTKL56C","expanded_url":"http:\/\/twitter.com\/gabihh_sanches2\/status\/663727825254539265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727823211896832,"id_str":"663727823211896832","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8EoWoAAEkOQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8EoWoAAEkOQ.jpg","url":"https:\/\/t.co\/pSEgTKL56C","display_url":"pic.twitter.com\/pSEgTKL56C","expanded_url":"http:\/\/twitter.com\/gabihh_sanches2\/status\/663727825254539265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825254400002,"id_str":"663727825254400002","text":"@rei_JBxoxo \n\u306f\u3044 https:\/\/t.co\/XJMN5b7eSg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727538665971713,"in_reply_to_status_id_str":"663727538665971713","in_reply_to_user_id":1614767372,"in_reply_to_user_id_str":"1614767372","in_reply_to_screen_name":"rei_JBxoxo","user":{"id":3017108120,"id_str":"3017108120","name":"\u306f\u307e\u3046\u3089 \u3058\u3085\u306a","screen_name":"9PIQWsjMB89qGZs","location":"\uff8f\uff8e\uff84\uff76\uff9e\uff7d\uff77\uff83\uff9e\uff7d","url":null,"description":"\u5b66\u4ed8 _\u2460-\u2463_ (\u2661)LDH(\u2661)YouTube(\u2661)\u3051\u307f\u304a(\u2661)","protected":false,"verified":false,"followers_count":460,"friends_count":489,"listed_count":0,"favourites_count":7301,"statuses_count":1664,"created_at":"Thu Feb 12 07:34:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662978015945621509\/Nfv1jlCa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662978015945621509\/Nfv1jlCa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017108120\/1446878160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rei_JBxoxo","name":"rei","id":1614767372,"id_str":"1614767372","indices":[0,11]}],"symbols":[],"media":[{"id":663727815334850560,"id_str":"663727815334850560","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7nSUcAA1fCs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7nSUcAA1fCs.jpg","url":"https:\/\/t.co\/XJMN5b7eSg","display_url":"pic.twitter.com\/XJMN5b7eSg","expanded_url":"http:\/\/twitter.com\/9PIQWsjMB89qGZs\/status\/663727825254400002\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727815334850560,"id_str":"663727815334850560","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7nSUcAA1fCs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7nSUcAA1fCs.jpg","url":"https:\/\/t.co\/XJMN5b7eSg","display_url":"pic.twitter.com\/XJMN5b7eSg","expanded_url":"http:\/\/twitter.com\/9PIQWsjMB89qGZs\/status\/663727825254400002\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019664"} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825250201600,"id_str":"663727825250201600","text":"@dhrmndjss PAKINGGAN MO YAN HAHAHAHA NAKAKATAWA KASI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727681528172545,"in_reply_to_status_id_str":"663727681528172545","in_reply_to_user_id":3281382090,"in_reply_to_user_id_str":"3281382090","in_reply_to_screen_name":"dhrmndjss","user":{"id":3285493134,"id_str":"3285493134","name":"dharmeeeeeeeng's","screen_name":"kimonggoloid","location":null,"url":null,"description":"5.4.15|DHARMIN BERMAS DE JESUS-DY","protected":false,"verified":false,"followers_count":154,"friends_count":123,"listed_count":0,"favourites_count":1072,"statuses_count":4437,"created_at":"Mon Jul 20 15:30:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658654848259223552\/5SApXCmx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658654848259223552\/5SApXCmx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3285493134\/1445932155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dhrmndjss","name":"K I M D Y's","id":3281382090,"id_str":"3281382090","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080019663"} +{"delete":{"status":{"id":658898298116308992,"id_str":"658898298116308992","user_id":3129672296,"user_id_str":"3129672296"},"timestamp_ms":"1447080019903"}} +{"delete":{"status":{"id":662485774403682304,"id_str":"662485774403682304","user_id":2607314227,"user_id_str":"2607314227"},"timestamp_ms":"1447080019906"}} +{"delete":{"status":{"id":662487384995442688,"id_str":"662487384995442688","user_id":519250464,"user_id_str":"519250464"},"timestamp_ms":"1447080019935"}} +{"delete":{"status":{"id":662487871551500288,"id_str":"662487871551500288","user_id":2709160688,"user_id_str":"2709160688"},"timestamp_ms":"1447080019947"}} +{"delete":{"status":{"id":662486839723331584,"id_str":"662486839723331584","user_id":261092176,"user_id_str":"261092176"},"timestamp_ms":"1447080019927"}} +{"delete":{"status":{"id":645405809338249217,"id_str":"645405809338249217","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080019995"}} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825241796608,"id_str":"663727825241796608","text":"\u3010\u544a\u77e5\u3011 \u4eca\u6708\u306e\u64ae\u5f71\u4f1a\n\u25c628(\u571f) \u9ad8\u7530\u99ac\u5834 10:30-15:30\n\u25c629(\u65e5) \u6771\u65b0\u5bbf 11:00-17:15\n\u4e0a\u8a18\u65e5\u7a0b\u3067\u958b\u50ac\u3057\u307e\u3059\ud83d\udc25\n\n\u3054\u4e88\u7d04\u30fb\u8a73\u7d30\u30fb\u8863\u88c5\u4e00\u89a7\u306f\u30b3\u30c1\u30e9\u304b\u3089\ud83d\ude0c\u2192 https:\/\/t.co\/hnxVKUIj60 https:\/\/t.co\/VsnhNG9QWs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279081499,"id_str":"279081499","name":"\u308a\u30fc\u222a\uff65\u03c9\uff65\u222a\u2661","screen_name":"ozana_lee","location":null,"url":"http:\/\/twpf.jp\/ozana_lee","description":"\u597d\u304d\u306b\u547c\u3079.\u00b0\u02d6\u2727 \u6765\u4e16\u306f\u7121\u6a5f\u7269\u306b\u306a\u308a\u305f\u304419\u6b73 \u30b3\u30b9\u30d7\u30ec\/\u30b3\u30ca\u30df\u97f3\u30b2\u30fc\/nagomix\u6e0b\u8c37\u30b9\u30bf\u30c3\u30d5 PhotoPlus\u64ae\u5f71\u4f1a\u30e2\u30c7\u30eb\/#\u30ed\u30fc\u5354 \u516c\u5f0fNo.23 \u2704------------------------------------------------- \u2721 \u9192\u3081\u306a\u3044\u5922\u3092\u898b\u3066\u3044\u308b\u3060\u3051 \u2721","protected":false,"verified":false,"followers_count":2790,"friends_count":620,"listed_count":66,"favourites_count":11559,"statuses_count":60039,"created_at":"Fri Apr 08 15:06:28 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"06338F","profile_sidebar_fill_color":"262429","profile_text_color":"6E7E91","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661095363516862464\/qmwHzwP0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661095363516862464\/qmwHzwP0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279081499\/1421173284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hnxVKUIj60","expanded_url":"http:\/\/ozana-lee-touhikou.jimdo.com\/entry","display_url":"ozana-lee-touhikou.jimdo.com\/entry","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663727820212858880,"id_str":"663727820212858880","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI75dU8AAhVZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI75dU8AAhVZG.jpg","url":"https:\/\/t.co\/VsnhNG9QWs","display_url":"pic.twitter.com\/VsnhNG9QWs","expanded_url":"http:\/\/twitter.com\/ozana_lee\/status\/663727825241796608\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727820212858880,"id_str":"663727820212858880","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI75dU8AAhVZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI75dU8AAhVZG.jpg","url":"https:\/\/t.co\/VsnhNG9QWs","display_url":"pic.twitter.com\/VsnhNG9QWs","expanded_url":"http:\/\/twitter.com\/ozana_lee\/status\/663727825241796608\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727820204478477,"id_str":"663727820204478477","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI75bVEA0q5jZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI75bVEA0q5jZ.jpg","url":"https:\/\/t.co\/VsnhNG9QWs","display_url":"pic.twitter.com\/VsnhNG9QWs","expanded_url":"http:\/\/twitter.com\/ozana_lee\/status\/663727825241796608\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727820716179457,"id_str":"663727820716179457","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI77VVAAExInJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI77VVAAExInJ.jpg","url":"https:\/\/t.co\/VsnhNG9QWs","display_url":"pic.twitter.com\/VsnhNG9QWs","expanded_url":"http:\/\/twitter.com\/ozana_lee\/status\/663727825241796608\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019661"} +{"delete":{"status":{"id":662501591107301376,"id_str":"662501591107301376","user_id":337650399,"user_id_str":"337650399"},"timestamp_ms":"1447080020053"}} +{"delete":{"status":{"id":662592569742745600,"id_str":"662592569742745600","user_id":3282636506,"user_id_str":"3282636506"},"timestamp_ms":"1447080020148"}} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825237643265,"id_str":"663727825237643265","text":"@risaaa_ck \nline\u3082\u307b\u3093\u3068\u6642\u9593\u3042\u308b\u3068\u304d\u3067\u8fd4\u4fe1\u3044\u3044\u304b\u3089\u306d\u263a\ud83d\udc4c\ud83d\udc97\n\u3053\u3061\u3089\u3053\u305d\u3044\u3064\u3082\u3042\u308a\u304c\u3068\u3046\uff5e\u2728\n\u305d\u3057\u306612\u6708\u307e\u3067\u304c\u3093\u3070\u308c\uff01\u3063\u3066\u601d\u3063\u3066\u30ed\u30c3\u30af\u753b\u9762\u3064\u304f\u3063\u305f\u3088\ud83d\udcad\n\u3082\u3057\u3088\u304b\u3063\u305f\u3089\u4f7f\u3063\u3066\u306d\uff08\u00b4-`\uff09.\uff61oO\uff08\u2661\uff09 https:\/\/t.co\/h0FLjMnyo3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725696133394432,"in_reply_to_status_id_str":"663725696133394432","in_reply_to_user_id":2960510300,"in_reply_to_user_id_str":"2960510300","in_reply_to_screen_name":"risaaa_ck","user":{"id":3281398482,"id_str":"3281398482","name":"\u304a \u3068 \u306f \u2764\ufe0e","screen_name":"aaa_atae_ito","location":"\u8207\u5e9c( \u00a8\u032e )\u2765\u2765 KYOTO","url":"https:\/\/instagram.com\/otohaaa110446\/","description":"\u3057\u3093\u3061\u3042\u5bc4\u308a\u306eall\u2765\u00bb ((@A_Shinjirooooo \u029a\u2665\ufe0e\u025e@chiaki_aaa))\u3061\u3042\u3061\u3083\u3093\u306e\u7b11\u9854\u308e\u5b9d\u7269\/\u6c38\u9060\u306e\u61a7\u308c \u2765\u00bb((@charming_kiss\u2764\ufe0e)) \u308a\u3055\u3063\u307a\u2765\u00bb\u611b\u3057\u306e\u30dd\u30b8\u30c6\u30a3\u30d6\u30ac\u30fc\u30eb*\u2661was\u21aa\ufe0e6.17\u5927\u962a\/8.22a-nation\/10.25\u8207TS\/ \u8207\u771f\u53f8\u90ce\u21a9\ufe0e\uff71\uff72\uff7c\uff83\uff99\u2661*.","protected":false,"verified":false,"followers_count":464,"friends_count":752,"listed_count":8,"favourites_count":2501,"statuses_count":2450,"created_at":"Thu Jul 16 09:35:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632216035131682816\/HvtFK7jM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632216035131682816\/HvtFK7jM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281398482\/1441803582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"risaaa_ck","name":"\u308a\u3055\u3063\u307a \u2661 (\u5343\u6643\u3061\u3083\u3093\u547d\u540d)","id":2960510300,"id_str":"2960510300","indices":[0,10]}],"symbols":[],"media":[{"id":663727809626439680,"id_str":"663727809626439680","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7SBVAAATjEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7SBVAAATjEb.jpg","url":"https:\/\/t.co\/h0FLjMnyo3","display_url":"pic.twitter.com\/h0FLjMnyo3","expanded_url":"http:\/\/twitter.com\/aaa_atae_ito\/status\/663727825237643265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":574,"h":1024,"resize":"fit"},"large":{"w":574,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809626439680,"id_str":"663727809626439680","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7SBVAAATjEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7SBVAAATjEb.jpg","url":"https:\/\/t.co\/h0FLjMnyo3","display_url":"pic.twitter.com\/h0FLjMnyo3","expanded_url":"http:\/\/twitter.com\/aaa_atae_ito\/status\/663727825237643265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":606,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":574,"h":1024,"resize":"fit"},"large":{"w":574,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080019660"} +{"delete":{"status":{"id":662773390403485696,"id_str":"662773390403485696","user_id":3288391261,"user_id_str":"3288391261"},"timestamp_ms":"1447080020190"}} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825233539072,"id_str":"663727825233539072","text":"\"Agradezco a mi partido Centro Democr\u00e1tico, por apostarle a mi campa\u00f1a\", \u00c1lvaro G\u00f3mez, Pdte JAC Villa Alegr\u00eda #Bosa https:\/\/t.co\/Hr35wI3RRe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":289480464,"id_str":"289480464","name":"Radio Rumbo 107.4 FM","screen_name":"RadioRumbo1074","location":"Soacha","url":"http:\/\/radiorumbo.com.co","description":"Emisora de Bogot\u00e1, Soacha y Cundinamarca. Tel.:7120198 - 7222181 Facebook http:\/\/facebook.com\/RadioRumbo1074\u2026","protected":false,"verified":false,"followers_count":8563,"friends_count":6625,"listed_count":22,"favourites_count":328,"statuses_count":9632,"created_at":"Thu Apr 28 18:33:15 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765583495\/d9fbfffd9c8ca7a0eac2a871b90d7246.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765583495\/d9fbfffd9c8ca7a0eac2a871b90d7246.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3117838913\/95e1dab39e267cc81422125c35d5c8cf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3117838913\/95e1dab39e267cc81422125c35d5c8cf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289480464\/1424263419","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0161be1b3f98d6c3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0161be1b3f98d6c3.json","place_type":"city","name":"Bogot\u00e1","full_name":"Bogot\u00e1, Colombia","country_code":"CO","country":"Colombia","bounding_box":{"type":"Polygon","coordinates":[[[-74.483289,3.717432],[-74.483289,4.807135],[-74.004053,4.807135],[-74.004053,3.717432]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Bosa","indices":[110,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727824411484160,"id_str":"663727824411484160","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8JGW4AAXEGH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8JGW4AAXEGH.jpg","url":"https:\/\/t.co\/Hr35wI3RRe","display_url":"pic.twitter.com\/Hr35wI3RRe","expanded_url":"http:\/\/twitter.com\/RadioRumbo1074\/status\/663727825233539072\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727824411484160,"id_str":"663727824411484160","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8JGW4AAXEGH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8JGW4AAXEGH.jpg","url":"https:\/\/t.co\/Hr35wI3RRe","display_url":"pic.twitter.com\/Hr35wI3RRe","expanded_url":"http:\/\/twitter.com\/RadioRumbo1074\/status\/663727825233539072\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080019659"} +{"delete":{"status":{"id":663727812646301696,"id_str":"663727812646301696","user_id":4166797633,"user_id_str":"4166797633"},"timestamp_ms":"1447080020228"}} +{"delete":{"status":{"id":659877613540941824,"id_str":"659877613540941824","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080020501"}} +{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825250353152,"id_str":"663727825250353152","text":"wasting me time on this now https:\/\/t.co\/qesog6jnOe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":202558266,"id_str":"202558266","name":"Andrew Lever","screen_name":"andrewleverart","location":"Manchester","url":null,"description":"I like art. my paintings are naive and tacky and that's the way I want them to be.","protected":false,"verified":false,"followers_count":108,"friends_count":48,"listed_count":12,"favourites_count":154,"statuses_count":837,"created_at":"Thu Oct 14 09:31:14 +0000 2010","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"007DB3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530311306750873602\/InrY3xMx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530311306750873602\/InrY3xMx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202558266\/1434538834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727823237095424,"id_str":"663727823237095424","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8EuXIAAEsLP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8EuXIAAEsLP.jpg","url":"https:\/\/t.co\/qesog6jnOe","display_url":"pic.twitter.com\/qesog6jnOe","expanded_url":"http:\/\/twitter.com\/andrewleverart\/status\/663727825250353152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727823237095424,"id_str":"663727823237095424","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8EuXIAAEsLP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8EuXIAAEsLP.jpg","url":"https:\/\/t.co\/qesog6jnOe","display_url":"pic.twitter.com\/qesog6jnOe","expanded_url":"http:\/\/twitter.com\/andrewleverart\/status\/663727825250353152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080019663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427879936,"id_str":"663727829427879936","text":"Company profile ENJOY SUSHI, LLC - https:\/\/t.co\/Lly8j1JKks #ENJOY #SUSHI, #LLC","source":"\u003ca href=\"http:\/\/www.companiesinarizona.net\" rel=\"nofollow\"\u003eArizona Companies\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1299662108,"id_str":"1299662108","name":"Arizona Companies","screen_name":"ArizonaCompanie","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":0,"listed_count":10,"favourites_count":0,"statuses_count":490854,"created_at":"Mon Mar 25 14:16:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"cs","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ENJOY","indices":[60,66]},{"text":"SUSHI","indices":[67,73]},{"text":"LLC","indices":[75,79]}],"urls":[{"url":"https:\/\/t.co\/Lly8j1JKks","expanded_url":"http:\/\/www.companiesinarizona.net\/enjoy-sushi-llc-l17124267","display_url":"companiesinarizona.net\/enjoy-sushi-ll\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448814592,"id_str":"663727829448814592","text":"@iLuSioNzX Felicidades!!! Que se me ha olvidado...(^_^)'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663701980909592576,"in_reply_to_status_id_str":"663701980909592576","in_reply_to_user_id":345304845,"in_reply_to_user_id_str":"345304845","in_reply_to_screen_name":"iLuSioNzX","user":{"id":481464304,"id_str":"481464304","name":"Guillermo","screen_name":"superguille342","location":null,"url":"http:\/\/youtube.com\/superguilleful","description":"Hola soy superguilleful y como veis soy youtuber bueno, aqui encontrareis un monton de novedades si quereis mas venid a mi canal ;) \nhttp:\/\/t.co\/XAdaq50aui","protected":false,"verified":false,"followers_count":1085,"friends_count":2013,"listed_count":33,"favourites_count":6010,"statuses_count":21067,"created_at":"Thu Feb 02 19:54:06 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495209822560612352\/kQV09nS2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495209822560612352\/kQV09nS2.png","profile_background_tile":false,"profile_link_color":"991700","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613462085608075268\/u8ly1px7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613462085608075268\/u8ly1px7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481464304\/1438717337","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iLuSioNzX","name":"iLu.","id":345304845,"id_str":"345304845","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829423693824,"id_str":"663727829423693824","text":"\u0648\u064a\u0639\ud83d\ude0a.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2656469486,"id_str":"2656469486","name":"20Nov.","screen_name":"Sartah72x","location":"\u202221815\u2022","url":"http:\/\/ask.fm\/Sarah36_","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u062d\u0645 \u062c\u062f\u062a\u064a \u0627\u0643\u062b\u0631 \u0645\u0646 \u0634\u0648\u0642\u064a \u0644\u0647\u0627.|\u0635\u0627\u062d\u0628\u064a \u0646\u0648\u0631 \u0639\u064a\u0646\u064a \u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e@Shahoda503 .","protected":false,"verified":false,"followers_count":1192,"friends_count":260,"listed_count":2,"favourites_count":616,"statuses_count":34406,"created_at":"Fri Jul 18 10:42:27 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658435882840494082\/uH1wEcd-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658435882840494082\/uH1wEcd-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2656469486\/1446553574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080020658"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427855360,"id_str":"663727829427855360","text":"Should I go to school","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4113066076,"id_str":"4113066076","name":"Dylan Steeby","screen_name":"steeby_dylan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38,"friends_count":22,"listed_count":0,"favourites_count":23,"statuses_count":3,"created_at":"Wed Nov 04 15:54:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661934911775993858\/LUJVK2t2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661934911775993858\/LUJVK2t2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448699908,"id_str":"663727829448699908","text":"RT @al_ways_sun: \u3010\u304a\u77e5\u3089\u305b\u3011\n\u65b0\u30e1\u30f3\u30d0\u30fcDr.\u306f\u307e\u3061\u3083\u3093\u304c\u5165\u308a\u307e\u3057\u305f\u300212\u6708\u306e\u30e9\u30a4\u30d6\u304b\u3089\u65b0\u4f53\u5236\u3067\u30e9\u30a4\u30d6\u3057\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3232222123,"id_str":"3232222123","name":"\u962a\u91ce@\u30aa\u30eb\u30b5\u30f3","screen_name":"cry_laugh_ba","location":"\u7a32\u6ca2","url":null,"description":"\u30aa\u30fc\u30eb\u30a6\u30a7\u30a4\u30ba\u30b5\u30f3\u30c7\u30a4(@al_ways_sun)\u306e\u30d9\u30fc\u30b9\u62c5\u5f53\u3002","protected":false,"verified":false,"followers_count":61,"friends_count":69,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Mon Jun 01 03:44:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613033042756546560\/O7fM6e8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613033042756546560\/O7fM6e8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232222123\/1433206109","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:13 +0000 2015","id":663727043696168960,"id_str":"663727043696168960","text":"\u3010\u304a\u77e5\u3089\u305b\u3011\n\u65b0\u30e1\u30f3\u30d0\u30fcDr.\u306f\u307e\u3061\u3083\u3093\u304c\u5165\u308a\u307e\u3057\u305f\u300212\u6708\u306e\u30e9\u30a4\u30d6\u304b\u3089\u65b0\u4f53\u5236\u3067\u30e9\u30a4\u30d6\u3057\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190456710,"id_str":"3190456710","name":"\u30aa\u30fc\u30eb\u30a6\u30a7\u30a4\u30ba\u30b5\u30f3\u30c7\u30a4","screen_name":"al_ways_sun","location":null,"url":null,"description":"2015\u5e744\u6708\u306b\u7d50\u6210\u3002\u540d\u53e4\u5c4b\u3092\u4e2d\u5fc3\u306b\u6d3b\u52d5\u3057\u3066\u3044\u308b\u30a4\u30f3\u30c7\u30a3\u30fc\u30ed\u30c3\u30af4\u30d4\u30fc\u30b9\u30d0\u30f3\u30c9\u3001\u30aa\u30fc\u30eb\u30a6\u30a7\u30a4\u30ba\u30b5\u30f3\u30c7\u30a4\u3067\u3059\u3002\u4e0d\u5b9a\u671f\u3067\u8def\u4e0a\u30e9\u30a4\u30d6\u3082\u3057\u3066\u307e\u3059\u3002\u9ad8\u677e(Gt&Vo.)\u305f\u306b\u304d\u3061(Gt.)\u962a\u91ce(Ba.)\u306f\u307e\u3061\u3083\u3093(Dr.)","protected":false,"verified":false,"followers_count":445,"friends_count":619,"listed_count":0,"favourites_count":1,"statuses_count":89,"created_at":"Sun May 10 06:31:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631035150650847232\/89y4SN7G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631035150650847232\/89y4SN7G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190456710\/1439216011","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"al_ways_sun","name":"\u30aa\u30fc\u30eb\u30a6\u30a7\u30a4\u30ba\u30b5\u30f3\u30c7\u30a4","id":3190456710,"id_str":"3190456710","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448683520,"id_str":"663727829448683520","text":"RT @FrasesDeAmor_GJ: Extra\u00f1ar no necesariamente es necesitar.","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2544344902,"id_str":"2544344902","name":"\u00a1Negraaa! \u2665","screen_name":"daph_15","location":"Quetzaltenango\u263a","url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":51,"listed_count":0,"favourites_count":18,"statuses_count":1075,"created_at":"Tue May 13 02:57:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655436474674839552\/k5aH4Jhs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655436474674839552\/k5aH4Jhs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2544344902\/1445012552","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:20:33 +0000 2015","id":663692651980525569,"id_str":"663692651980525569","text":"Extra\u00f1ar no necesariamente es necesitar.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2236855254,"id_str":"2236855254","name":"Frases De Amor","screen_name":"FrasesDeAmor_GJ","location":null,"url":"https:\/\/www.youtube.com\/user\/GiovanniJauregui","description":"P\u00eddeme lo que quieras, menos que no me enamore de ti. S\u00edguenos! :)","protected":false,"verified":false,"followers_count":75662,"friends_count":63366,"listed_count":29,"favourites_count":6501,"statuses_count":4630,"created_at":"Mon Dec 09 02:06:50 +0000 2013","utc_offset":-18000,"time_zone":"Lima","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428580024153686016\/SumTUxAX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428580024153686016\/SumTUxAX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236855254\/1391016386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FrasesDeAmor_GJ","name":"Frases De Amor","id":2236855254,"id_str":"2236855254","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829419474944,"id_str":"663727829419474944","text":"RT @JahraKw: \u062d\u0627\u0644\u0629 \u0627\u0646\u0633\u0627\u0646\u064a\u0647 \u0637\u0641\u0644\u0647 \u0645\u0646 \u0627\u0644\u0628\u062f\u0648\u0646 \u062a\u0634\u0643\u064a \u0645\u0631\u0636 \u0627\u0639\u062a\u0644\u0627\u0644 \u0628\u0627\u0644\u0645\u062e \u0648\u062a\u0634\u0646\u062c\u0627\u062a \u0648\u062a\u0636\u062e\u0645 \u0628\u0627\u0644\u0631\u0627\u0633 \u062a\u062d\u062a\u0627\u062c \u0627\u0634\u0639\u0629 \u062a\u0643\u0644\u0641\u0647 \u0663\u0660\u0660 \u062f\u064a\u0646\u0627\u0631\n\u0669\u0669\u0668\u0662\u0664\u0668\u0663\u0663 https:\/\/t.co\/z6p6mR\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":382593617,"id_str":"382593617","name":"3bdulla6if Alshemmri","screen_name":"A_Alsh_7","location":null,"url":"http:\/\/www.ask.fm\/la6if_alsh","description":"Man United 4 ever - Q8 .. \u0644\u0644\u062a\u0648\u0627\u0635\u0644 : snabchat : latif_88 \/\/ Inastagram: a_alsh_7 \/\/ BBM : 2b24f1c5","protected":false,"verified":false,"followers_count":1638,"friends_count":1217,"listed_count":5,"favourites_count":16,"statuses_count":15555,"created_at":"Fri Sep 30 10:39:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/351122397\/_________.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/351122397\/_________.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663424677524688901\/LtNn6sJ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663424677524688901\/LtNn6sJ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/382593617\/1446401132","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:57 +0000 2015","id":663714898577399809,"id_str":"663714898577399809","text":"\u062d\u0627\u0644\u0629 \u0627\u0646\u0633\u0627\u0646\u064a\u0647 \u0637\u0641\u0644\u0647 \u0645\u0646 \u0627\u0644\u0628\u062f\u0648\u0646 \u062a\u0634\u0643\u064a \u0645\u0631\u0636 \u0627\u0639\u062a\u0644\u0627\u0644 \u0628\u0627\u0644\u0645\u062e \u0648\u062a\u0634\u0646\u062c\u0627\u062a \u0648\u062a\u0636\u062e\u0645 \u0628\u0627\u0644\u0631\u0627\u0633 \u062a\u062d\u062a\u0627\u062c \u0627\u0634\u0639\u0629 \u062a\u0643\u0644\u0641\u0647 \u0663\u0660\u0660 \u062f\u064a\u0646\u0627\u0631\n\u0669\u0669\u0668\u0662\u0664\u0668\u0663\u0663 https:\/\/t.co\/z6p6mRIiX4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":249224851,"id_str":"249224851","name":"\u0627\u0644\u062c\u0647\u0631\u0627\u0621 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","screen_name":"JahraKw","location":"\u062e\u0627\u0635 \u0627\u0648 \u0648\u0627\u062a\u0633 \u0627\u0628 0096550667760","url":null,"description":"\u062c\u0631\u064a\u062f\u0629 \u0627\u0644\u062c\u0647\u0631\u0627\u0621 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u0645\u0633\u062a\u0642\u0644\u0629 \u0634\u0627\u0645\u0644\u0629 \u060c \u062a\u0639\u0646\u064a \u0628\u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u062c\u0647\u0631\u0627\u0621 \u062e\u0627\u0635\u0629 \u0648 \u0627\u0644\u0643\u0648\u064a\u062a \u0639\u0627\u0645\u0629 \u060c \u062a\u062d\u0631\u0635 \u0639\u0644\u0649 \u062a\u0642\u062f\u064a\u0645 \u062a\u063a\u0637\u064a\u0629 \u0627\u062e\u0628\u0627\u0631\u064a\u0629 \u0646\u0648\u0639\u064a\u0629 \u0645\u062a\u0645\u064a\u0632\u0629 ..","protected":false,"verified":false,"followers_count":170447,"friends_count":128316,"listed_count":89,"favourites_count":9,"statuses_count":8257,"created_at":"Tue Feb 08 16:34:54 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617774843992248320\/gtMZONC3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617774843992248320\/gtMZONC3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249224851\/1436123976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663691898649841664,"id_str":"663691898649841664","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"}]},"extended_entities":{"media":[{"id":663691898649841664,"id_str":"663691898649841664","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"},{"id":663691901296447489,"id_str":"663691901296447489","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoRJEUEAEMxM-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoRJEUEAEMxM-.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"},{"id":663691912495271936,"id_str":"663691912495271936","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoRyyUkAAFSnT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoRyyUkAAFSnT.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JahraKw","name":"\u0627\u0644\u062c\u0647\u0631\u0627\u0621 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","id":249224851,"id_str":"249224851","indices":[3,11]}],"symbols":[],"media":[{"id":663691898649841664,"id_str":"663691898649841664","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"}]},"extended_entities":{"media":[{"id":663691898649841664,"id_str":"663691898649841664","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoQ_NUEAAokuU.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"},{"id":663691901296447489,"id_str":"663691901296447489","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoRJEUEAEMxM-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoRJEUEAEMxM-.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"},{"id":663691912495271936,"id_str":"663691912495271936","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoRyyUkAAFSnT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoRyyUkAAFSnT.jpg","url":"https:\/\/t.co\/z6p6mRIiX4","display_url":"pic.twitter.com\/z6p6mRIiX4","expanded_url":"http:\/\/twitter.com\/Ctra1Pp\/status\/663691925040574464\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":581,"h":1032,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":581,"h":1032,"resize":"fit"}},"source_status_id":663691925040574464,"source_status_id_str":"663691925040574464","source_user_id":4140683715,"source_user_id_str":"4140683715"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080020657"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427859456,"id_str":"663727829427859456","text":"RT @LiveUrLifeeee: Never been more excited for an album \ud83d\ude0d #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1019243017,"id_str":"1019243017","name":"PlsJustinFollowMe","screen_name":"BrenduKidrauhl","location":"Bieberland","url":null,"description":"I'm Belieber since 2010\n#purpose #nov13\n#Sorry \u2661 #I'llShowYou \u2665 #SorryLatinoRemix \u2661","protected":false,"verified":false,"followers_count":413,"friends_count":826,"listed_count":3,"favourites_count":1232,"statuses_count":5018,"created_at":"Tue Dec 18 07:35:43 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"490B61","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572139540194676736\/xtVqPzQJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572139540194676736\/xtVqPzQJ.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662509313257263104\/NlXFzPHr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662509313257263104\/NlXFzPHr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1019243017\/1446774341","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:36:28 +0000 2015","id":663455066091823106,"id_str":"663455066091823106","text":"Never been more excited for an album \ud83d\ude0d #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281013479,"id_str":"281013479","name":"Black Eyed Potato","screen_name":"LiveUrLifeeee","location":"Germany ","url":null,"description":"I'm tired of looking 'round rooms wondering what I've got to do or who I'm supposed to be. I don't wanna be anything other than me","protected":false,"verified":false,"followers_count":1733,"friends_count":1213,"listed_count":62,"favourites_count":251,"statuses_count":21821,"created_at":"Tue Apr 12 13:12:56 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000092703459\/0ae7567a65c8320d6f90c5e0d29904b3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000092703459\/0ae7567a65c8320d6f90c5e0d29904b3.jpeg","profile_background_tile":false,"profile_link_color":"402838","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFCCFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663494784842080257\/LGD9J3m2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663494784842080257\/LGD9J3m2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281013479\/1447024548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13802,"favorite_count":19304,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[39,56]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[58,75]}],"urls":[],"user_mentions":[{"screen_name":"LiveUrLifeeee","name":"Black Eyed Potato","id":281013479,"id_str":"281013479","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448806400,"id_str":"663727829448806400","text":"Le gusta #FansAwards2015 #ElBombon Gonza Gravano","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187240785,"id_str":"3187240785","name":"c","screen_name":"scgoncelli","location":null,"url":null,"description":"ellos me ense\u00f1aron a no bajar los brazos & puede quien cree que puede | sc | gg | pa \u007b 11-8-15 \u007d goncelli juntos.","protected":false,"verified":false,"followers_count":2242,"friends_count":164,"listed_count":1,"favourites_count":131,"statuses_count":14444,"created_at":"Mon Apr 20 14:27:31 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662830716141641728\/Qts-Agka_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662830716141641728\/Qts-Agka_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187240785\/1442461639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[9,24]},{"text":"ElBombon","indices":[25,34]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829419466752,"id_str":"663727829419466752","text":"RT @fellatio_rio: blowjob https:\/\/t.co\/HsOsLNp16N https:\/\/t.co\/qC6hqyfjq8","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":963729566,"id_str":"963729566","name":"dhmy","screen_name":"1mod443","location":null,"url":null,"description":"\u0633\u0643\u0627\u064a\u0628 \u0636\u064a\u0641 \u0627\u0644\u0625\u064a\u0645\u064a\u0644 \u0627\u0637\u0644\u0639\u0644\u0643 Dr.a.991@hotmail.com Kik\\g.o.n.y BBM.528c5458","protected":false,"verified":false,"followers_count":818,"friends_count":625,"listed_count":1,"favourites_count":824,"statuses_count":40353,"created_at":"Thu Nov 22 06:18:51 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656830100139323392\/PNL6-Gqk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656830100139323392\/PNL6-Gqk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:02 +0000 2015","id":663725238534799361,"id_str":"663725238534799361","text":"blowjob https:\/\/t.co\/HsOsLNp16N https:\/\/t.co\/qC6hqyfjq8","source":"\u003ca href=\"https:\/\/twitter.com\/fellatio_rio\" rel=\"nofollow\"\u003efellatio_rio\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2752486050,"id_str":"2752486050","name":"BLOWJOB@\u30d5\u30a7\u30e9","screen_name":"fellatio_rio","location":null,"url":"http:\/\/minaito12.com\/","description":"BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB BLOWJOB","protected":false,"verified":false,"followers_count":38937,"friends_count":20947,"listed_count":305,"favourites_count":8963,"statuses_count":99192,"created_at":"Thu Aug 21 16:43:40 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507761098473230336\/nauUU6gQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507761098473230336\/nauUU6gQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2752486050\/1409894661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HsOsLNp16N","expanded_url":"http:\/\/minaito12.com","display_url":"minaito12.com","indices":[8,31]}],"user_mentions":[],"symbols":[],"media":[{"id":504950968941686784,"id_str":"504950968941686784","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","url":"https:\/\/t.co\/qC6hqyfjq8","display_url":"pic.twitter.com\/qC6hqyfjq8","expanded_url":"http:\/\/twitter.com\/blowjob_high\/status\/504950970166427651\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":999,"h":559,"resize":"fit"}},"source_status_id":504950970166427651,"source_status_id_str":"504950970166427651","source_user_id":2752486050,"source_user_id_str":"2752486050"}]},"extended_entities":{"media":[{"id":504950968941686784,"id_str":"504950968941686784","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","url":"https:\/\/t.co\/qC6hqyfjq8","display_url":"pic.twitter.com\/qC6hqyfjq8","expanded_url":"http:\/\/twitter.com\/blowjob_high\/status\/504950970166427651\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":999,"h":559,"resize":"fit"}},"source_status_id":504950970166427651,"source_status_id_str":"504950970166427651","source_user_id":2752486050,"source_user_id_str":"2752486050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HsOsLNp16N","expanded_url":"http:\/\/minaito12.com","display_url":"minaito12.com","indices":[26,49]}],"user_mentions":[{"screen_name":"fellatio_rio","name":"BLOWJOB@\u30d5\u30a7\u30e9","id":2752486050,"id_str":"2752486050","indices":[3,16]}],"symbols":[],"media":[{"id":504950968941686784,"id_str":"504950968941686784","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","url":"https:\/\/t.co\/qC6hqyfjq8","display_url":"pic.twitter.com\/qC6hqyfjq8","expanded_url":"http:\/\/twitter.com\/blowjob_high\/status\/504950970166427651\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":999,"h":559,"resize":"fit"}},"source_status_id":504950970166427651,"source_status_id_str":"504950970166427651","source_user_id":2752486050,"source_user_id_str":"2752486050"}]},"extended_entities":{"media":[{"id":504950968941686784,"id_str":"504950968941686784","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BwHyOxzCMAAORf_.jpg","url":"https:\/\/t.co\/qC6hqyfjq8","display_url":"pic.twitter.com\/qC6hqyfjq8","expanded_url":"http:\/\/twitter.com\/blowjob_high\/status\/504950970166427651\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":335,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":999,"h":559,"resize":"fit"}},"source_status_id":504950970166427651,"source_status_id_str":"504950970166427651","source_user_id":2752486050,"source_user_id_str":"2752486050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020657"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448835072,"id_str":"663727829448835072","text":"\"A cada paso m\u00e1s, se acerca mi destino.\" Zona Ganjah","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3611761588,"id_str":"3611761588","name":"Alma Tellez","screen_name":"Alma_t2Tellez","location":null,"url":null,"description":"Yo tambi\u00e9n tengo en el cielo a una persona por la que dar\u00eda todo por volverla abrazar.","protected":false,"verified":false,"followers_count":89,"friends_count":339,"listed_count":1,"favourites_count":0,"statuses_count":1275,"created_at":"Thu Sep 10 17:36:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642763152288034816\/tSaAJ-Ad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642763152288034816\/tSaAJ-Ad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3611761588\/1442081653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829436100609,"id_str":"663727829436100609","text":"RT @pcpsgkj: \u3070\u3069\u30a2\u30e1\u30d5\u30ea\u52d5\u753b\u6301\u3063\u3066\u308b\u4eba\u3044\u307e\u305b\u3093\u304b(><)\u4ea4\u63db\u3057\u3066\u3044\u305f\u3060\u304d\u305f\u3044(><)(><)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3226242446,"id_str":"3226242446","name":"\u3071\u3093\u3060","screen_name":"sakuskusakurai","location":null,"url":null,"description":"\u90fd\u5185\u3044\u3064\u3067\u3082\/\u4ef2\u826f\u304f\u306a\u3063\u305f\u3089\u2026\/\u62c5\u5f53\u591a\u3057\/\u30ea\u30e0\u3063\u3066\u3082\u6652\u3055\u306a\u3044\u3051\u3069\u3084\u3081\u3066\u304f\u3060\u3055\u3044\/3","protected":false,"verified":false,"followers_count":155,"friends_count":77,"listed_count":8,"favourites_count":688,"statuses_count":559,"created_at":"Mon May 25 14:26:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636565327518658560\/VK3cQxdM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636565327518658560\/VK3cQxdM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3226242446\/1442818658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:13 +0000 2015","id":663713956347777024,"id_str":"663713956347777024","text":"\u3070\u3069\u30a2\u30e1\u30d5\u30ea\u52d5\u753b\u6301\u3063\u3066\u308b\u4eba\u3044\u307e\u305b\u3093\u304b(><)\u4ea4\u63db\u3057\u3066\u3044\u305f\u3060\u304d\u305f\u3044(><)(><)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321377774,"id_str":"3321377774","name":"**a","screen_name":"pcpsgkj","location":"\uff08\u6c42\uff09\u95a2\u897f\u95a2\u9023","url":null,"description":"\uff33\u304f\u3093 \uff2b\u304f\u3093\u2661 \u5354\u529b\u3057\u3042\u3048\u308b\u65b9\u52df\u96c6\uff3c(^o^)\uff0f","protected":false,"verified":false,"followers_count":221,"friends_count":92,"listed_count":12,"favourites_count":77,"statuses_count":116,"created_at":"Thu Aug 20 13:22:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662577332893257728\/X-nZsgT-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662577332893257728\/X-nZsgT-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3321377774\/1445932324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pcpsgkj","name":"**a","id":3321377774,"id_str":"3321377774","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020661"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457047552,"id_str":"663727829457047552","text":"\u3010\u5b9d\u3011\u4e43\u611b<\u308f\u3063\u3082\u3046\u3053\u3093\u306a\u6642\u9593\u3060\u30fb\u30fb\u30fb\u3042\u3068\uff11\u672cDVD\u898b\u308c\u308b\u304b\u306a\u3041","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2264053662,"id_str":"2264053662","name":"\u30a2\u30eb\u30d1\u30ab\u56fd\u306e\u5b50\u3069\u3082\u305f\u3061","screen_name":"mohumohukko","location":"\u3082\u3075\u3082\u3075\u306e\u304a\u3068\u304e\u8a71","url":"http:\/\/tegaki.pipa.jp\/353472\/index.html","description":"Shimba\u306e\u5275\u4f5c\u4f01\u753b\u3063\u5b50\u306ebot\u3067\u3059\u3002\u73fe\u5728\u3001\u5b9d\u30fb\u702c\u3005\u7dcf\u30fb\u897f\u661f\u30fb\u5b89\u9808\u9ad8\u30fb\u5e38\u76e4\u30fb\u30ed\u30bc\u897f\u30fb\u6885\u5546\u306e\u7dcf\u52e2\uff11\uff17\u4eba\u304c\u597d\u304d\u306a\u3088\u3046\u306b\u3064\u3076\u3084\u3044\u3066\u3044\u3066\u9a12\u304c\u3057\u3044\u3067\u3059\u3002\u8a71\u3057\u304b\u3051\u308b\u3068\u559c\u3073\u307e\u3059","protected":false,"verified":false,"followers_count":3,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":6790,"created_at":"Fri Dec 27 08:58:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/416512514860400640\/Wn0Sbbrl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/416512514860400640\/Wn0Sbbrl_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020666"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444632580,"id_str":"663727829444632580","text":"RT @Bella210Ruini: \u00c8 che a volte dire la verit\u00e0 sembra una follia.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95265818,"id_str":"95265818","name":"belikemike","screen_name":"sameaslife","location":null,"url":"http:\/\/Instagram.com\/giovanni_sagripanti","description":"CambridgeLaw \/ http:\/\/favstar.fm\/users\/sameaslife","protected":false,"verified":false,"followers_count":2209,"friends_count":1577,"listed_count":7,"favourites_count":57635,"statuses_count":35642,"created_at":"Mon Dec 07 19:43:53 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469176811788566528\/JpEYo2sB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469176811788566528\/JpEYo2sB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95265818\/1401041033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:08:33 +0000 2015","id":663387640310403072,"id_str":"663387640310403072","text":"\u00c8 che a volte dire la verit\u00e0 sembra una follia.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2502178394,"id_str":"2502178394","name":"Patty","screen_name":"Bella210Ruini","location":null,"url":null,"description":"Ero romantica, allegra e solare, ma qui hanno sbagliato la terapia... Pic regalo di @emicragn http:\/\/favstar.fm\/users\/bella210ruini","protected":false,"verified":false,"followers_count":9963,"friends_count":1292,"listed_count":91,"favourites_count":110154,"statuses_count":109478,"created_at":"Sat May 17 18:07:41 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655874882056691712\/06V3YpRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655874882056691712\/06V3YpRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2502178394\/1446995730","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bella210Ruini","name":"Patty","id":2502178394,"id_str":"2502178394","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829419466753,"id_str":"663727829419466753","text":"#JusticeForFayazChohan https:\/\/t.co\/QfCvBUvwBX","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3123863457,"id_str":"3123863457","name":"Hamza Ali Abbasi FC","screen_name":"HamzaAbasiAli","location":"Islamabad, Pakistan","url":null,"description":"Model\/Actor\/Director","protected":false,"verified":false,"followers_count":4687,"friends_count":1222,"listed_count":9,"favourites_count":935,"statuses_count":115881,"created_at":"Sat Mar 28 14:16:00 +0000 2015","utc_offset":18000,"time_zone":"Karachi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631543035105423360\/KY8Mbkby_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631543035105423360\/KY8Mbkby_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3123863457\/1439664383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725897913131009,"quoted_status_id_str":"663725897913131009","quoted_status":{"created_at":"Mon Nov 09 14:32:40 +0000 2015","id":663725897913131009,"id_str":"663725897913131009","text":"@ImranKhanPTI should think deeply about ths matter of allegations!!! #JusticeForFayazChohan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":122453931,"in_reply_to_user_id_str":"122453931","in_reply_to_screen_name":"ImranKhanPTI","user":{"id":2305901037,"id_str":"2305901037","name":"Umai R Khan #Pti \u270c","screen_name":"umairsarrdard","location":"\u0627\u06cc\u0628\u0679 \u0622\u0628\u0627\u062f, \u067e\u0627\u06a9\u0633\u062a\u0627\u0646","url":null,"description":"simple,HardWorking,shopkeepering,Driving,Cricket Lover,student of BSC,From Abbotabad but Living in Kashmir,Support #IK#PTI\n#Team Trendsetters Naya_Pakistan..!","protected":false,"verified":false,"followers_count":874,"friends_count":572,"listed_count":7,"favourites_count":8105,"statuses_count":11969,"created_at":"Sun Jan 26 15:37:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663432095730110465\/2ot6ZzTI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663432095730110465\/2ot6ZzTI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2305901037\/1447009539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForFayazChohan","indices":[69,91]}],"urls":[],"user_mentions":[{"screen_name":"ImranKhanPTI","name":"Imran Khan","id":122453931,"id_str":"122453931","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForFayazChohan","indices":[0,22]}],"urls":[{"url":"https:\/\/t.co\/QfCvBUvwBX","expanded_url":"http:\/\/twitter.com\/sayeinsarkar\/status\/663727596396535808","display_url":"twitter.com\/sayeinsarkar\/s\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080020657"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829436096512,"id_str":"663727829436096512","text":"RT @asuna3636: 2222\ucfe0\ub808\uad6c\ub80c \ub3d9\uac70\ud558\uba74 \ucfe0\ub808\ud1a0\uc758 \uc555\ubc15\uc73c\ub85c \uc758\ud574 \uce68\uc2e4\uc740 \uac19\uc740\ub370 \uc9d1\uc740 \ubc18\ub775\ud574\ub450\uace0 \ud654\uc7a5\uc2e42\uac1c \uac70\uc2e42\uac1c \uc11c\uc7ac2\uac1c\uc529\uc73c\ub85c \uc11c\ub85c\uc758 \uc0dd\ud65c\uc744 \uc874\uc911\ud574\uc8fc\ub294 \uac1c\ubfd4 \uc0dd\ud65c\uc744 \ud560\uac83\uc774\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244899822,"id_str":"3244899822","name":"(\ubc18\ub3d9\uacb0)PY","screen_name":"SoE_payo","location":"\uc874\uc798\ub2d8\ub4e4 \uc885\uc138 \ud68c\uc9c0 \ub0b4\uc8fc\uc138\uc694","url":null,"description":"FUB\uc790\uc720. \uc131\uc778. \uc2a4\ud3ec\/\uac1c\uc18c\ub9ac\uc8fc\uc758. \uc885\uc138..\uc544\ub2c8 \uc720\uc6b0\uc9f1 \ub355\ud6c4. \ub0b4\uac00 77\u3154\uc774\uac00 \ub41c\uac74 \uc720\uc6b0\uc9f1 \ub54c\ubb38\uc774\uc57c. \u2299\u25bd\u2299\uc720\uc6b0\uc9f1!!(\ubbf8\uce74\ube59\uc758) \/ silver bracelet master \uce6d\ud638 \ud68d\ub4dd","protected":false,"verified":false,"followers_count":35,"friends_count":34,"listed_count":0,"favourites_count":348,"statuses_count":2048,"created_at":"Sun Jun 14 08:10:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660797645011587072\/MGaiq_cJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660797645011587072\/MGaiq_cJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244899822\/1445099123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:47 +0000 2015","id":663727185715335172,"id_str":"663727185715335172","text":"2222\ucfe0\ub808\uad6c\ub80c \ub3d9\uac70\ud558\uba74 \ucfe0\ub808\ud1a0\uc758 \uc555\ubc15\uc73c\ub85c \uc758\ud574 \uce68\uc2e4\uc740 \uac19\uc740\ub370 \uc9d1\uc740 \ubc18\ub775\ud574\ub450\uace0 \ud654\uc7a5\uc2e42\uac1c \uac70\uc2e42\uac1c \uc11c\uc7ac2\uac1c\uc529\uc73c\ub85c \uc11c\ub85c\uc758 \uc0dd\ud65c\uc744 \uc874\uc911\ud574\uc8fc\ub294 \uac1c\ubfd4 \uc0dd\ud65c\uc744 \ud560\uac83\uc774\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877485418,"id_str":"2877485418","name":"\ud574\ubc29 -12h\ub810","screen_name":"asuna3636","location":null,"url":null,"description":"\uc885\ub9d0\uc758\uc138\ub77c\ud504\/\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\/(\ub9c8\ud788\ub8e8&\uad00\ub828\ucefe \uc2ec\ud55c\uc9c0\ub8b0)\/\uc554\uc0b4\uad50\uc2e4 \uce74\ub974\ub9c8\/\uce74\uaca6\/\uc54c\uc81cA\/Z \ub9de\ud314 \uc6d0\ud558\uc2e4\uacbd\uc6b0 \uba58\uc158\/\uc370\uacc4 @asuna6363","protected":false,"verified":false,"followers_count":215,"friends_count":439,"listed_count":3,"favourites_count":715,"statuses_count":10514,"created_at":"Sun Oct 26 00:30:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711076253433856\/0fOWpOT0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711076253433856\/0fOWpOT0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877485418\/1442329374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asuna3636","name":"\ud574\ubc29 -12h\ub810","id":2877485418,"id_str":"2877485418","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080020661"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427728385,"id_str":"663727829427728385","text":"@k__bob_min \n\u3042\u308a\u304c\u3068\u3046\ud83d\ude01\n\u30aa\u30ec\u30f3\u30b8\u5b09\u3057\u3044\ud83d\udc95\n\u4eca\u5ea6\u3042\u305d\u307c\uff01\u304a\u6c17\u306b\u5165\u308a\u306e\u30ab\u30d5\u30a7\u3042\u308b\u304b\u3089\u3001\u7d39\u4ecb\u3059\u308b\u306d\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663686026938847232,"in_reply_to_status_id_str":"663686026938847232","in_reply_to_user_id":3309562878,"in_reply_to_user_id_str":"3309562878","in_reply_to_screen_name":"k__bob_min","user":{"id":1964905837,"id_str":"1964905837","name":"chihiro","screen_name":"mamepiyorin","location":null,"url":null,"description":"akatsuki\u25b7\u5973\u5b50\u6821LJK\u2661 K-POP\u2661\u5c71\u5d0e\u8ce2\u4eba\u304f\u3093\u2661\u6a2a\u5c3e\u6e09\u2661\u5143\u6c17\u3068\u52c7\u6c17\u3068\u81ea\u4fe1\u3092\u5408\u8a00\u8449\u306b\uff01","protected":false,"verified":false,"followers_count":283,"friends_count":272,"listed_count":0,"favourites_count":4872,"statuses_count":7741,"created_at":"Wed Oct 16 14:18:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663332065690017793\/IFmJCdOj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663332065690017793\/IFmJCdOj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1964905837\/1446632927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k__bob_min","name":"\u304b\u306a\uff08\u3093\uff09","id":3309562878,"id_str":"3309562878","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829423489024,"id_str":"663727829423489024","text":"RT @HillaryOlizer: Rand Paul: Rubio Worked With Clinton and Schumer To Push Amnesty https:\/\/t.co\/0M0mk4Ch2S https:\/\/t.co\/sQe9Ee67oF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113779850,"id_str":"113779850","name":"heiwanoinori ","screen_name":"heiwanoinori","location":"to tokyo","url":null,"description":"\u80fd\u3042\u308b\u9df9\u306f\u722a\u3092\u96a0\u3059\u3068\u8a00\u3044\u307e\u3059\u304c\u3001\u5143\u3005\u80fd\u3082\u722a\u3082\u6301\u305f\u306a\u3044\u79c1\u304c\u3053\u3053\u306b\u3044\u307e\u3059\u3000\u5e73\u548c\u3092\u9858\u3044\u611b\u3057\u3066\u3044\u308b\u4e00\u4eba\u3067\u3059\u3000","protected":false,"verified":false,"followers_count":2430,"friends_count":2538,"listed_count":87,"favourites_count":18,"statuses_count":99264,"created_at":"Sat Feb 13 01:10:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/96502617\/2010-04-28_05-12-15_180.2.206.227.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/96502617\/2010-04-28_05-12-15_180.2.206.227.jpg","profile_background_tile":false,"profile_link_color":"26C304","profile_sidebar_border_color":"7E704D","profile_sidebar_fill_color":"E8FFD1","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/857184275\/icon12724382634813_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/857184275\/icon12724382634813_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113779850\/1356596498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:55:14 +0000 2015","id":663505087906643968,"id_str":"663505087906643968","text":"Rand Paul: Rubio Worked With Clinton and Schumer To Push Amnesty https:\/\/t.co\/0M0mk4Ch2S https:\/\/t.co\/sQe9Ee67oF","source":"\u003ca href=\"http:\/\/leadstories.com\" rel=\"nofollow\"\u003eLeadstories Feed Publisher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4040387112,"id_str":"4040387112","name":"Hillary Clinton News","screen_name":"HillaryOlizer","location":null,"url":"http:\/\/hillary-clinton.leadstories.com\/","description":"The most trending news about Hillary Clinton as identified by Lead Stories' Trendolizer","protected":false,"verified":false,"followers_count":307,"friends_count":2232,"listed_count":6,"favourites_count":0,"statuses_count":878,"created_at":"Tue Oct 27 23:29:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659150167354961920\/2z8FPtNv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659150167354961920\/2z8FPtNv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4040387112\/1445988796","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0M0mk4Ch2S","expanded_url":"http:\/\/hillary-clinton.leadstories.com\/081265-rand-paul-rubio-worked-with-clinton-and-schumer-to-push-amnesty.html","display_url":"hillary-clinton.leadstories.com\/081265-rand-pa\u2026","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663505087533314048,"id_str":"663505087533314048","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","url":"https:\/\/t.co\/sQe9Ee67oF","display_url":"pic.twitter.com\/sQe9Ee67oF","expanded_url":"http:\/\/twitter.com\/HillaryOlizer\/status\/663505087906643968\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663505087533314048,"id_str":"663505087533314048","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","url":"https:\/\/t.co\/sQe9Ee67oF","display_url":"pic.twitter.com\/sQe9Ee67oF","expanded_url":"http:\/\/twitter.com\/HillaryOlizer\/status\/663505087906643968\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0M0mk4Ch2S","expanded_url":"http:\/\/hillary-clinton.leadstories.com\/081265-rand-paul-rubio-worked-with-clinton-and-schumer-to-push-amnesty.html","display_url":"hillary-clinton.leadstories.com\/081265-rand-pa\u2026","indices":[84,107]}],"user_mentions":[{"screen_name":"HillaryOlizer","name":"Hillary Clinton News","id":4040387112,"id_str":"4040387112","indices":[3,17]}],"symbols":[],"media":[{"id":663505087533314048,"id_str":"663505087533314048","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","url":"https:\/\/t.co\/sQe9Ee67oF","display_url":"pic.twitter.com\/sQe9Ee67oF","expanded_url":"http:\/\/twitter.com\/HillaryOlizer\/status\/663505087906643968\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663505087906643968,"source_status_id_str":"663505087906643968","source_user_id":4040387112,"source_user_id_str":"4040387112"}]},"extended_entities":{"media":[{"id":663505087533314048,"id_str":"663505087533314048","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU-XJkWcAAB7_w.jpg","url":"https:\/\/t.co\/sQe9Ee67oF","display_url":"pic.twitter.com\/sQe9Ee67oF","expanded_url":"http:\/\/twitter.com\/HillaryOlizer\/status\/663505087906643968\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663505087906643968,"source_status_id_str":"663505087906643968","source_user_id":4040387112,"source_user_id_str":"4040387112"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020658"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829452988417,"id_str":"663727829452988417","text":"RT @Collyde: \u201cFaith is a leap into the light, not a step into the darkness.\u201d - Reinhard Bonnke","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112250977,"id_str":"112250977","name":"Charlie Koontz","screen_name":"JukeboxRomeo13","location":"Asbury Park, NJ - Exit 102","url":null,"description":"Born again Christian, boy from little Eden, Andy Diamond's Church Street Choir, Hopeless Romantic, Born to Run, Punk, Wild & Innocent","protected":false,"verified":false,"followers_count":283,"friends_count":642,"listed_count":5,"favourites_count":2547,"statuses_count":8059,"created_at":"Sun Feb 07 20:08:08 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660930480787861504\/Df1psDir_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660930480787861504\/Df1psDir_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112250977\/1435374866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:16 +0000 2015","id":663718750672265216,"id_str":"663718750672265216","text":"\u201cFaith is a leap into the light, not a step into the darkness.\u201d - Reinhard Bonnke","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54541189,"id_str":"54541189","name":"Collyde","screen_name":"Collyde","location":"New Jersey","url":"http:\/\/www.collydesummit.com","description":"Christ-centered Org that inspires, equips, & supports you to live out your calling. Join us for Collyde Summit 2015! #Collyde15","protected":false,"verified":false,"followers_count":1239,"friends_count":1930,"listed_count":27,"favourites_count":274,"statuses_count":3808,"created_at":"Tue Jul 07 13:13:19 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000028942718\/7e6557c2f4fd36437b29ae4491ad2a2e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000028942718\/7e6557c2f4fd36437b29ae4491ad2a2e.jpeg","profile_background_tile":false,"profile_link_color":"E7901D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EBEBEB","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598921359918387200\/sGBTE5et_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598921359918387200\/sGBTE5et_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54541189\/1445356746","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Collyde","name":"Collyde","id":54541189,"id_str":"54541189","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020665"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427707905,"id_str":"663727829427707905","text":"Like forreal idk how I didn't break my arm yesterday lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":563425126,"id_str":"563425126","name":"Angelica Martinez","screen_name":"angelica_aime","location":null,"url":null,"description":"IG: @angelica_aime","protected":false,"verified":false,"followers_count":89,"friends_count":116,"listed_count":1,"favourites_count":339,"statuses_count":3074,"created_at":"Thu Apr 26 04:01:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656623066290634752\/gBAmdsUh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656623066290634752\/gBAmdsUh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/563425126\/1446212056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829436223488,"id_str":"663727829436223488","text":"Schlie\u00dfung droht: Stadtbad Hornburg braucht Hilfe der B\u00fcrger https:\/\/t.co\/jiupPeGAdx","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2327425741,"id_str":"2327425741","name":"Edith gille","screen_name":"flohmark1808","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":2,"listed_count":1,"favourites_count":0,"statuses_count":1903,"created_at":"Tue Feb 04 16:58:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jiupPeGAdx","expanded_url":"http:\/\/fb.me\/7wee6lln9","display_url":"fb.me\/7wee6lln9","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080020661"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829423493121,"id_str":"663727829423493121","text":"Bila susah pun susah sndiri je.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298363188,"id_str":"298363188","name":"F a t i n","screen_name":"Fatintintinnn","location":null,"url":null,"description":"Respect all, Trust few.","protected":false,"verified":false,"followers_count":119,"friends_count":121,"listed_count":0,"favourites_count":342,"statuses_count":6041,"created_at":"Sat May 14 05:38:02 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/724657823\/ce28e023f1f8653af5292cbf09e710ab.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/724657823\/ce28e023f1f8653af5292cbf09e710ab.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543392603358511104\/oDtnjSB8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543392603358511104\/oDtnjSB8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298363188\/1367755047","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080020658"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448679424,"id_str":"663727829448679424","text":"@MTB_AGGRESSOR \u5e02\u5185\u306e\u30e9\u30fc\u30e1\u30f3\u5c4b\u306a\u3089\u7f8e\u5473\u3057\u3044\u3068\u3053\u3081\u3063\u3055\u77e5\u3063\u3066\u308b\u305c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727383745138688,"in_reply_to_status_id_str":"663727383745138688","in_reply_to_user_id":4129275492,"in_reply_to_user_id_str":"4129275492","in_reply_to_screen_name":"MTB_AGGRESSOR","user":{"id":3163458883,"id_str":"3163458883","name":"\uff76\uff9d\uff7e\uff6a~@\u6b8b\u308a745km\/865km","screen_name":"ache3790","location":"\u3042\u304b\u3041\u3044\u308a\u3093\u3054\u3002","url":null,"description":"aquaTT\u306b\u3057\u3066\u3057\u307e\u3063\u305f\uff78\uff7f \u30dd\u30bf\u30b0\u30e9\u30d5\u30a1\u30fc \u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067","protected":false,"verified":false,"followers_count":546,"friends_count":358,"listed_count":9,"favourites_count":2458,"statuses_count":4690,"created_at":"Sun Apr 19 05:56:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632490185356218368\/6FyX72KR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632490185356218368\/6FyX72KR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163458883\/1445234678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MTB_AGGRESSOR","name":"\u30a4\u30ab\u6b7b","id":4129275492,"id_str":"4129275492","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457088512,"id_str":"663727829457088512","text":"RT @Aofshowxxx: \u201c@paink0375: \u0e41\u0e21\u0e19\u0e46\u0e46\u0e01\u0e47\u0e42\u0e14\u0e19\u0e44\u0e14\u0e49\u0e41\u0e25\u0e49\u0e27\u0e08\u0e30\u0e15\u0e34\u0e14\u0e43\u0e08... https:\/\/t.co\/ZslNaynFdb\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1956044113,"id_str":"1956044113","name":"\u0e14.\u0e0a.\u0e0c\u0e31\u0e0c\u0e0c\u0e32\u0e13\u0e31\u0e12\u0e19\u0e4c","screen_name":"quiz_i","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32908,"friends_count":901,"listed_count":26,"favourites_count":34973,"statuses_count":33912,"created_at":"Sat Oct 12 07:23:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651746250992185344\/gY0yyFPN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651746250992185344\/gY0yyFPN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1956044113\/1428591920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 15:05:01 +0000 2015","id":659385388218232832,"id_str":"659385388218232832","text":"\u201c@paink0375: \u0e41\u0e21\u0e19\u0e46\u0e46\u0e01\u0e47\u0e42\u0e14\u0e19\u0e44\u0e14\u0e49\u0e41\u0e25\u0e49\u0e27\u0e08\u0e30\u0e15\u0e34\u0e14\u0e43\u0e08... https:\/\/t.co\/ZslNaynFdb\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":611507119334928384,"in_reply_to_status_id_str":"611507119334928384","in_reply_to_user_id":2951294839,"in_reply_to_user_id_str":"2951294839","in_reply_to_screen_name":"paink0375","user":{"id":2388541158,"id_str":"2388541158","name":"AOF APIRAK","screen_name":"Aofshowxxx","location":null,"url":null,"description":"\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e41\u0e25\u0e49\u0e27\u0e04\u0e23\u0e31\u0e1a \u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e42\u0e14\u0e19\u0e1a\u0e25\u0e4a\u0e2d\u0e01\u0e44\u0e1b\u0e19\u0e32\u0e19 \u0e21\u0e35\u0e2d\u0e30\u0e44\u0e23\u0e17\u0e31\u0e01\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a \u0e1c\u0e21\u0e0a\u0e37\u0e48\u0e2d\u0e2d\u0e4a\u0e2d\u0e1f\u0e04\u0e23\u0e31\u0e1a","protected":false,"verified":false,"followers_count":42497,"friends_count":1483,"listed_count":55,"favourites_count":0,"statuses_count":26695,"created_at":"Fri Mar 14 06:29:43 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616610807774707712\/KLdOz0rB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616610807774707712\/KLdOz0rB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2388541158\/1435848368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":124,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"paink0375","name":"\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e02\u0e2d\u0e07.\u0e01\u0e30\u0e17\u0e34...","id":2951294839,"id_str":"2951294839","indices":[1,11]}],"symbols":[],"media":[{"id":607668834112147456,"id_str":"607668834112147456","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"}]},"extended_entities":{"media":[{"id":607668834112147456,"id_str":"607668834112147456","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"},{"id":607668834363793408,"id_str":"607668834363793408","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7fldVUYAAgs0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7fldVUYAAgs0X.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":541,"h":960,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":541,"h":960,"resize":"fit"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"},{"id":607668834493825024,"id_str":"607668834493825024","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7fld0UgAAjgr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7fld0UgAAjgr3.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":541,"h":960,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":541,"h":960,"resize":"fit"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aofshowxxx","name":"AOF APIRAK","id":2388541158,"id_str":"2388541158","indices":[3,14]},{"screen_name":"paink0375","name":"\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e02\u0e2d\u0e07.\u0e01\u0e30\u0e17\u0e34...","id":2951294839,"id_str":"2951294839","indices":[17,27]}],"symbols":[],"media":[{"id":607668834112147456,"id_str":"607668834112147456","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"}]},"extended_entities":{"media":[{"id":607668834112147456,"id_str":"607668834112147456","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7flcZUkAALH3z.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"},{"id":607668834363793408,"id_str":"607668834363793408","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7fldVUYAAgs0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7fldVUYAAgs0X.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":541,"h":960,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":541,"h":960,"resize":"fit"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"},{"id":607668834493825024,"id_str":"607668834493825024","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CG7fld0UgAAjgr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CG7fld0UgAAjgr3.jpg","url":"https:\/\/t.co\/ZslNaynFdb","display_url":"pic.twitter.com\/ZslNaynFdb","expanded_url":"http:\/\/twitter.com\/thawatc21892432\/status\/607668859479277568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":541,"h":960,"resize":"fit"},"small":{"w":340,"h":603,"resize":"fit"},"large":{"w":541,"h":960,"resize":"fit"}},"source_status_id":607668859479277568,"source_status_id_str":"607668859479277568","source_user_id":1254436290,"source_user_id_str":"1254436290"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080020666"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829453000704,"id_str":"663727829453000704","text":"RT @mohammed_auob: in Syria \ud83d\ude3b #riseofthetombraider https:\/\/t.co\/6PQUucxUHu","source":"\u003ca href=\"http:\/\/tweytaty.com\" rel=\"nofollow\"\u003eTweytaty\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":481401705,"id_str":"481401705","name":"\u0646\u0628\u064a\u0644 \u0627\u0644\u0628\u062f\u064a\u0631","screen_name":"budair1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":350,"friends_count":171,"listed_count":0,"favourites_count":16,"statuses_count":914,"created_at":"Thu Feb 02 18:14:08 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647492767749304320\/x4Mftuuc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647492767749304320\/x4Mftuuc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481401705\/1443169392","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:26 +0000 2015","id":663724581530808321,"id_str":"663724581530808321","text":"in Syria \ud83d\ude3b #riseofthetombraider https:\/\/t.co\/6PQUucxUHu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718977703,"id_str":"718977703","name":"H E R O M A N","screen_name":"mohammed_auob","location":"www.XboxAr.com ","url":"http:\/\/www.instagram.com\/H2F","description":"Hacking | video game | walkthroughs | Only on #Xbox #Achievement #Microsoft","protected":false,"verified":false,"followers_count":120991,"friends_count":2170,"listed_count":15,"favourites_count":2312,"statuses_count":2905,"created_at":"Thu Jul 26 23:21:03 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462458241893429248\/_Yb13esu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462458241893429248\/_Yb13esu.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658437302553825280\/yyPFQDFM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658437302553825280\/yyPFQDFM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718977703\/1422885086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":12,"entities":{"hashtags":[{"text":"riseofthetombraider","indices":[11,31]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724554569822208,"id_str":"663724554569822208","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","url":"https:\/\/t.co\/6PQUucxUHu","display_url":"pic.twitter.com\/6PQUucxUHu","expanded_url":"http:\/\/twitter.com\/mohammed_auob\/status\/663724581530808321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724554569822208,"id_str":"663724554569822208","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","url":"https:\/\/t.co\/6PQUucxUHu","display_url":"pic.twitter.com\/6PQUucxUHu","expanded_url":"http:\/\/twitter.com\/mohammed_auob\/status\/663724581530808321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"riseofthetombraider","indices":[30,50]}],"urls":[],"user_mentions":[{"screen_name":"mohammed_auob","name":"H E R O M A N","id":718977703,"id_str":"718977703","indices":[3,17]}],"symbols":[],"media":[{"id":663724554569822208,"id_str":"663724554569822208","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","url":"https:\/\/t.co\/6PQUucxUHu","display_url":"pic.twitter.com\/6PQUucxUHu","expanded_url":"http:\/\/twitter.com\/mohammed_auob\/status\/663724581530808321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724581530808321,"source_status_id_str":"663724581530808321","source_user_id":718977703,"source_user_id_str":"718977703"}]},"extended_entities":{"media":[{"id":663724554569822208,"id_str":"663724554569822208","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF9z_WsAAbb-k.jpg","url":"https:\/\/t.co\/6PQUucxUHu","display_url":"pic.twitter.com\/6PQUucxUHu","expanded_url":"http:\/\/twitter.com\/mohammed_auob\/status\/663724581530808321\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724581530808321,"source_status_id_str":"663724581530808321","source_user_id":718977703,"source_user_id_str":"718977703"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020665"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444595712,"id_str":"663727829444595712","text":"@moser_at Brauchen Sie eine \u00dcbersetzung? Nur aus Neugier, ich spreche flie\u00dfend norwegisch","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663670455035953152,"in_reply_to_status_id_str":"663670455035953152","in_reply_to_user_id":2925019281,"in_reply_to_user_id_str":"2925019281","in_reply_to_screen_name":"moser_at","user":{"id":1677985398,"id_str":"1677985398","name":"Sebastian Raiby","screen_name":"SebastianRaiby","location":"EU\/Austria\/Vienna","url":null,"description":"Habe Meinungen. Vielseitig interessiert. Respekt und Akzeptanz. Gamer. Folgen ist nicht automatisch Sympathie.","protected":false,"verified":false,"followers_count":86,"friends_count":383,"listed_count":1,"favourites_count":2015,"statuses_count":1836,"created_at":"Sat Aug 17 11:36:24 +0000 2013","utc_offset":3600,"time_zone":"Vienna","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576650397919682560\/OOLjXrN3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576650397919682560\/OOLjXrN3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1677985398\/1398546061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"moser_at","name":"Moritz Moser","id":2925019281,"id_str":"2925019281","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829419433984,"id_str":"663727829419433984","text":"@9mt_elsneen @mm_al77 \u0645\u0627\u0634\u064a 5% \u0644\u062c \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727553740451840,"in_reply_to_status_id_str":"663727553740451840","in_reply_to_user_id":815499216,"in_reply_to_user_id_str":"815499216","in_reply_to_screen_name":"9mt_elsneen","user":{"id":2410344141,"id_str":"2410344141","name":"\u2712\ufe0f \u0628\u0640\u0640\u0640\u0640\u0640\u0640\u0631\u0648\u0627\u0632","screen_name":"brwaz_kw","location":"\u062f\u0648\u0644\u0629 \u0627\u0644\u0643\u0648\u064a\u062a","url":null,"description":"\u200f\u200f\u200f \u0644\u0627\u0634\u0640\u064a \u064a\u0640\u0633\u0640\u062a\u0640\u062d\u0642 \u0627\u0644\u0627\u0647\u0640\u062a\u0640\u0645\u0640\u0627\u0645 \u061b \u061b \u0627\u0644\u062f\u0627\u064a\u0631\u0643\u062a \u0644\u0644\u0636\u0631\u0648\u0631\u0647 \u061f!","protected":false,"verified":false,"followers_count":133606,"friends_count":118,"listed_count":6,"favourites_count":85,"statuses_count":8311,"created_at":"Fri Mar 14 14:58:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647836616828977154\/CQmV0m8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647836616828977154\/CQmV0m8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2410344141\/1443216301","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9mt_elsneen","name":"9mt_elsneen","id":815499216,"id_str":"815499216","indices":[0,12]},{"screen_name":"mm_al77","name":"\u0627\u0644\u0631\u064a\u0645\u2728","id":1960657544,"id_str":"1960657544","indices":[13,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080020657"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829423669248,"id_str":"663727829423669248","text":"Get 5000 FREE Twitter #FOLLOWERS for #OSU Fans ONLY!!! https:\/\/t.co\/3GOH1g9nxO\n5000 FREE with Any Twitter Order before end of #OSUvsPSU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497702535,"id_str":"497702535","name":"#Shipbullshit \u0394","screen_name":"TeamHoranNiall","location":"Narnia \u2708 United Kingdom .","url":"http:\/\/headers-star.blogspot.com\/","description":"\u2022 \u2661 N O T H I N G \u2661 \u2665 \u2022 Carly Rae Jepsen follows \u2654","protected":false,"verified":false,"followers_count":3089,"friends_count":805,"listed_count":7,"favourites_count":1628,"statuses_count":30199,"created_at":"Mon Feb 20 08:23:00 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000062183256\/ef2582906109dc3553c5b0d63aa68df6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000062183256\/ef2582906109dc3553c5b0d63aa68df6.png","profile_background_tile":false,"profile_link_color":"66EB52","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414482017351266304\/AxGx0Wk6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414482017351266304\/AxGx0Wk6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497702535\/1387655202","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FOLLOWERS","indices":[22,32]},{"text":"OSU","indices":[37,41]},{"text":"OSUvsPSU","indices":[126,135]}],"urls":[{"url":"https:\/\/t.co\/3GOH1g9nxO","expanded_url":"http:\/\/goo.gl\/dnSPue","display_url":"goo.gl\/dnSPue","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020658"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427871744,"id_str":"663727829427871744","text":"RT @thiago_p: Gretchen falando com a diretora do Facebook nos EUA. https:\/\/t.co\/Rhmd63Se1S","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67588443,"id_str":"67588443","name":"Jos\u00e9 Gabriel Navarro","screen_name":"jgn_","location":"Sao Paulo, Brazil","url":"http:\/\/linkedin.com\/in\/zegabriel","description":"Jornalista de 26 anos, agora estudando ci\u00eancia da informa\u00e7\u00e3o. Quero saber mais sobre #bigdata. \n26 years old journalist, now studying Information Science.","protected":false,"verified":false,"followers_count":424,"friends_count":206,"listed_count":23,"favourites_count":253,"statuses_count":10655,"created_at":"Fri Aug 21 11:56:45 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853165934\/e0b9c146a5e8d8b41a76af9da0f8e3b6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853165934\/e0b9c146a5e8d8b41a76af9da0f8e3b6.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657046059445825536\/0GcPXzQ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657046059445825536\/0GcPXzQ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67588443\/1441212899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 14:06:39 +0000 2015","id":660095473538064385,"id_str":"660095473538064385","text":"Gretchen falando com a diretora do Facebook nos EUA. https:\/\/t.co\/Rhmd63Se1S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16033602,"id_str":"16033602","name":"Thiago Pasqualotto","screen_name":"thiago_p","location":" S\u00e3o Paulo \/ Santa Catarina","url":"http:\/\/aimorridesungabranca.com","description":"Pai do Morri de Sunga Branca e roteirista e apresentador do Gshow \/ TV Globo. Contato: thpasqualotto@gmail.com","protected":false,"verified":true,"followers_count":64366,"friends_count":589,"listed_count":510,"favourites_count":4679,"statuses_count":91507,"created_at":"Thu Aug 28 22:09:25 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000152084090\/xGpTB0eH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000152084090\/xGpTB0eH.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595752116318273536\/CyOuHRiM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595752116318273536\/CyOuHRiM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16033602\/1406069625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"68e019afec7d0ba5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/68e019afec7d0ba5.json","place_type":"city","name":"Sao Paulo","full_name":"Sao Paulo, Brazil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-46.826039,-24.008814],[-46.826039,-23.356792],[-46.365052,-23.356792],[-46.365052,-24.008814]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":128,"favorite_count":123,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660095431519662084,"id_str":"660095431519662084","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","url":"https:\/\/t.co\/Rhmd63Se1S","display_url":"pic.twitter.com\/Rhmd63Se1S","expanded_url":"http:\/\/twitter.com\/thiago_p\/status\/660095473538064385\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660095431519662084,"id_str":"660095431519662084","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","url":"https:\/\/t.co\/Rhmd63Se1S","display_url":"pic.twitter.com\/Rhmd63Se1S","expanded_url":"http:\/\/twitter.com\/thiago_p\/status\/660095473538064385\/video\/1","type":"video","sizes":{"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[320,179],"duration_millis":13442,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/pl\/HGSx6hqnUGMaeBo4.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/vid\/320x180\/WpDp7guF75prK_Y7.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/vid\/320x180\/WpDp7guF75prK_Y7.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/pl\/HGSx6hqnUGMaeBo4.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thiago_p","name":"Thiago Pasqualotto","id":16033602,"id_str":"16033602","indices":[3,12]}],"symbols":[],"media":[{"id":660095431519662084,"id_str":"660095431519662084","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","url":"https:\/\/t.co\/Rhmd63Se1S","display_url":"pic.twitter.com\/Rhmd63Se1S","expanded_url":"http:\/\/twitter.com\/thiago_p\/status\/660095473538064385\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"source_status_id":660095473538064385,"source_status_id_str":"660095473538064385","source_user_id":16033602,"source_user_id_str":"16033602"}]},"extended_entities":{"media":[{"id":660095431519662084,"id_str":"660095431519662084","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660095431519662084\/pu\/img\/tpyvAqeKf9hVGDuu.jpg","url":"https:\/\/t.co\/Rhmd63Se1S","display_url":"pic.twitter.com\/Rhmd63Se1S","expanded_url":"http:\/\/twitter.com\/thiago_p\/status\/660095473538064385\/video\/1","type":"video","sizes":{"large":{"w":640,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"source_status_id":660095473538064385,"source_status_id_str":"660095473538064385","source_user_id":16033602,"source_user_id_str":"16033602","video_info":{"aspect_ratio":[320,179],"duration_millis":13442,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/pl\/HGSx6hqnUGMaeBo4.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/vid\/320x180\/WpDp7guF75prK_Y7.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/vid\/320x180\/WpDp7guF75prK_Y7.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660095431519662084\/pu\/pl\/HGSx6hqnUGMaeBo4.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"pt","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427748865,"id_str":"663727829427748865","text":"@AjyaE \u306a\u306b\u306a\u306b\u3001\u9577\u82f1\u3063\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733617201152,"in_reply_to_status_id_str":"663727733617201152","in_reply_to_user_id":1291185451,"in_reply_to_user_id_str":"1291185451","in_reply_to_screen_name":"AjyaE","user":{"id":2972265595,"id_str":"2972265595","name":"\u4e07\u8449","screen_name":"kazuha1351","location":null,"url":null,"description":"\u2763Sakuraicouple\u2763since.2013.09.01 start\u2763 foreverlove\u0669\ua4b0 \u02d8 \u00b3\u02d8\ua4b1\u06f6\u2763\u2665\u2661","protected":false,"verified":false,"followers_count":143,"friends_count":117,"listed_count":0,"favourites_count":989,"statuses_count":3018,"created_at":"Sat Jan 10 14:22:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648178625582239744\/Ws-5_rku_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648178625582239744\/Ws-5_rku_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2972265595\/1443021648","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AjyaE","name":"\u3042\u3083\u304b\u307e\u3061\u3087\u2603\uff08\u690d\u6751 \u5f69\u82b1\uff09","id":1291185451,"id_str":"1291185451","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829431881728,"id_str":"663727829431881728","text":"\u308f\u3089\u3046wwwwwwww","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3179067889,"id_str":"3179067889","name":"\u4fbf\u5668","screen_name":"benkinyan","location":"\u30e6\u30e9\u30ca\u30b9","url":null,"description":"\u30c9\u30e9\u30dd \u767d\u732b \u30d1\u30ba\u30c9\u30e9 \u30bb\u30c3\u30af\u30b9 \u3049\u5c11\u3005\u3057\u3066\u308b\u7d20\u4eba 19\u6b73 \u5927\u962a \u30ad\u30c1\u30ac\u30a4bot\n\nhttp:\/\/com.nicovideo.jp\/community\/co2305459?zeromypage_nicorepo","protected":false,"verified":false,"followers_count":394,"friends_count":133,"listed_count":11,"favourites_count":25284,"statuses_count":49384,"created_at":"Wed Apr 29 06:54:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635401345776807936\/w6rLv0Ge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635401345776807936\/w6rLv0Ge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3179067889\/1436826709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020660"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829432012800,"id_str":"663727829432012800","text":"all of them lol oops https:\/\/t.co\/p473TT5KXT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431483477,"id_str":"431483477","name":"tori!","screen_name":"theroadstoruin","location":"1989 cologne night 2","url":"http:\/\/tsdefencesquad.tumblr.com","description":"album 3 track 9!","protected":false,"verified":false,"followers_count":2253,"friends_count":441,"listed_count":32,"favourites_count":11840,"statuses_count":69803,"created_at":"Thu Dec 08 09:59:55 +0000 2011","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"DCFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468028881346121728\/jJ7ezpGG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468028881346121728\/jJ7ezpGG.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D2D8B3","profile_text_color":"E0BCB3","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663485927000571909\/-_vKP5dC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663485927000571909\/-_vKP5dC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431483477\/1447022348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663707075717959680,"quoted_status_id_str":"663707075717959680","quoted_status":{"created_at":"Mon Nov 09 13:17:52 +0000 2015","id":663707075717959680,"id_str":"663707075717959680","text":"breakfast, lunch, or supper?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9492,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p473TT5KXT","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663707075717959680","display_url":"twitter.com\/questionyrself\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020660"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829452898309,"id_str":"663727829452898309","text":"@0509yo \u308f\u3044\u30825\u4e07\u3059\u3089\u308c\u3066\u3072\u3082\u3058\u3044\u304b\u3089\u6765\u6708\u3067\u3082\u3044\u3044\u3088\uff01","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727630244442112,"in_reply_to_status_id_str":"663727630244442112","in_reply_to_user_id":429838367,"in_reply_to_user_id_str":"429838367","in_reply_to_screen_name":"0509yo","user":{"id":1519564795,"id_str":"1519564795","name":"\u3066\u3093","screen_name":"ten_chooo_","location":"\u30bd\u30fc\u30d7\u30e9\u30f3\u30c9","url":"https:\/\/ja.m.wikipedia.org\/wiki\/%E3%83%91%E3%82%A4%E3%83%91%E3%83%B3","description":"\u767d\u732b\u304a\u3061\u3093\u307d\u3057\u3066\u307e\u3059\u3002 \n\u30ea\u30e0\u30d6\u30ed\u3054\u81ea\u7531\u3058\u3083\u306a\u3044\u3067\u3059\u7c98\u7740\u3057\u307e\u3059\u3002\n \u76f8\u65b91(@agu2_) \n\u76f8\u65b92(@aroeeeroe) \n\u30a2\u30a4\u30b3\u30f3\u306f\u9ce9\u307d(@Hato_wcat)\n\u30d8\u30c3\u30c0\u30fc\u306f\u3042\u305a\u3055\u3093(@shirone_koh)\n\u7a7a\u30ea\u30d7\u975e\u5bfe\u5fdc","protected":false,"verified":false,"followers_count":493,"friends_count":173,"listed_count":30,"favourites_count":5538,"statuses_count":34606,"created_at":"Sat Jun 15 14:27:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661935224696102913\/bWAbQBC8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661935224696102913\/bWAbQBC8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1519564795\/1446025266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0509yo","name":"\u3088\u3066\u3043\u304d@\u767d\u732b","id":429838367,"id_str":"429838367","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020665"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829427728384,"id_str":"663727829427728384","text":"\u30c7\u30fc\u30c8\u3058\u3083\u30c7\u30fc\u30c8","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":488330279,"id_str":"488330279","name":"\u53cc\u6d25\u8449\u3086\u304d\u3053\u6c0f(\u7537)","screen_name":"sazaponn0703","location":"\u305f\u3053\u713c\u304d\u5e1d\u56fd","url":"http:\/\/yuk1k0.blog.fc2.com\/","description":"\u30e9\u30fc\u30e1\u30f3\u3068\u30a2\u30cb\u30e1\u3067\u52d5\u304fMERIDA RIDE400(2015)\u4e57\u308a\u3002\u51ac\u5b63\u9650\u5b9a\u3067TREK Emonda ALR5\u306b\u3082\u4e57\u308b\u4e88\u5b9a\u3002","protected":false,"verified":false,"followers_count":846,"friends_count":580,"listed_count":20,"favourites_count":15636,"statuses_count":95562,"created_at":"Fri Feb 10 10:22:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658631568861167616\/x20HTI69_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658631568861167616\/x20HTI69_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/488330279\/1445945886","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020659"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448704000,"id_str":"663727829448704000","text":"@myrk0901_kimuti \u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2026\u2026\u2026\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2026\u2026\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724906178215936,"in_reply_to_status_id_str":"663724906178215936","in_reply_to_user_id":2906024894,"in_reply_to_user_id_str":"2906024894","in_reply_to_screen_name":"myrk0901_kimuti","user":{"id":379561149,"id_str":"379561149","name":"\uc2e0\ud1a0\ud1a0\ubca0\ubca0","screen_name":"To_NyU718","location":"\u30b7\u30f3\u30db\u30bd\u30af\u306e\u61d0\u306b\u5c45\u305f\u3044","url":null,"description":"Monsta X \ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \uc6d0\ud638 Wonho \uc2e0\ud638\uc11d \uc628\ub9ac \u203b I can't followback HoSuk's fan. Sorry. 95(94)\u4ee5\u4e0a\u3000\u3082\u3093\u3048\u304f\u3061\u3083\u3093\u57a2","protected":false,"verified":false,"followers_count":20,"friends_count":61,"listed_count":0,"favourites_count":169,"statuses_count":3897,"created_at":"Sun Sep 25 05:13:39 +0000 2011","utc_offset":32400,"time_zone":"Asia\/Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/336225642\/DVC01387.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/336225642\/DVC01387.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"E7F1F5","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659403054689579008\/5vjC_Zg-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659403054689579008\/5vjC_Zg-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379561149\/1444470488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"myrk0901_kimuti","name":"\uc57c\ub9c8\uc0ac\/\u30e4\u30de\u30b5\/803","id":2906024894,"id_str":"2906024894","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457092608,"id_str":"663727829457092608","text":"RT @SEP_mx: En unos momentos, iniciar\u00e1 la Ceremonia C\u00edvica en el Centro Escolar \"Ni\u00f1os H\u00e9roes de Chapultepec\", #Puebla. https:\/\/t.co\/TqAqTG\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2881423163,"id_str":"2881423163","name":"Oscar G Escarcega","screen_name":"g_escarcega","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":100,"friends_count":106,"listed_count":27,"favourites_count":11025,"statuses_count":8720,"created_at":"Mon Nov 17 18:02:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:27 +0000 2015","id":663727104287117312,"id_str":"663727104287117312","text":"En unos momentos, iniciar\u00e1 la Ceremonia C\u00edvica en el Centro Escolar \"Ni\u00f1os H\u00e9roes de Chapultepec\", #Puebla. https:\/\/t.co\/TqAqTGBdA3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184876841,"id_str":"184876841","name":"SEP M\u00e9xico","screen_name":"SEP_mx","location":"M\u00e9xico","url":"http:\/\/www.gob.mx\/sep","description":"Secretar\u00eda de Educaci\u00f3n P\u00fablica","protected":false,"verified":true,"followers_count":433314,"friends_count":79,"listed_count":2165,"favourites_count":180,"statuses_count":21377,"created_at":"Mon Aug 30 18:12:12 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003983963\/0f734ae4ed26a52b5b1c883d3d2da1d2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003983963\/0f734ae4ed26a52b5b1c883d3d2da1d2.jpeg","profile_background_tile":false,"profile_link_color":"9C0606","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"818285","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660836158570557440\/Y1oNvdQ__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660836158570557440\/Y1oNvdQ__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184876841\/1446390662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0ac8a42f23e8f736","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0ac8a42f23e8f736.json","place_type":"city","name":"Puebla","full_name":"Puebla, M\u00e9xico","country_code":"MX","country":"M\u00e9xico","bounding_box":{"type":"Polygon","coordinates":[[[-98.289206,18.837650],[-98.289206,19.226809],[-98.019327,19.226809],[-98.019327,18.837650]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"Puebla","indices":[99,106]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727056341983232,"id_str":"663727056341983232","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","url":"https:\/\/t.co\/TqAqTGBdA3","display_url":"pic.twitter.com\/TqAqTGBdA3","expanded_url":"http:\/\/twitter.com\/SEP_mx\/status\/663727104287117312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":516,"resize":"fit"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727056341983232,"id_str":"663727056341983232","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","url":"https:\/\/t.co\/TqAqTGBdA3","display_url":"pic.twitter.com\/TqAqTGBdA3","expanded_url":"http:\/\/twitter.com\/SEP_mx\/status\/663727104287117312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":516,"resize":"fit"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Puebla","indices":[111,118]}],"urls":[],"user_mentions":[{"screen_name":"SEP_mx","name":"SEP M\u00e9xico","id":184876841,"id_str":"184876841","indices":[3,10]}],"symbols":[],"media":[{"id":663727056341983232,"id_str":"663727056341983232","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","url":"https:\/\/t.co\/TqAqTGBdA3","display_url":"pic.twitter.com\/TqAqTGBdA3","expanded_url":"http:\/\/twitter.com\/SEP_mx\/status\/663727104287117312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":516,"resize":"fit"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}},"source_status_id":663727104287117312,"source_status_id_str":"663727104287117312","source_user_id":184876841,"source_user_id_str":"184876841"}]},"extended_entities":{"media":[{"id":663727056341983232,"id_str":"663727056341983232","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPb0UYAAIRDv.jpg","url":"https:\/\/t.co\/TqAqTGBdA3","display_url":"pic.twitter.com\/TqAqTGBdA3","expanded_url":"http:\/\/twitter.com\/SEP_mx\/status\/663727104287117312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":516,"resize":"fit"},"medium":{"w":600,"h":302,"resize":"fit"},"small":{"w":340,"h":171,"resize":"fit"}},"source_status_id":663727104287117312,"source_status_id_str":"663727104287117312","source_user_id":184876841,"source_user_id_str":"184876841"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080020666"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829431914497,"id_str":"663727829431914497","text":"RT @sakincho0219: \u2728 \ud83d\udc8e \u897f \u7551 \u5927 \u543e \ud83d\udc8e \u2728\n\n \ud83e\udd84 95(96)\u5e74\u7d44 \ud83c\udf3b\n\n \ud83d\udc3b \u718a \u672c \ud83d\udc3b\n\n \ud83d\udc78\ud83c\udffc \u30e9\u30d7\u30f3\u30c4\u30a7\u30eb \ud83d\udc51\n\n #\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362820078,"id_str":"2362820078","name":"\u2765\u2765Hina","screen_name":"Ryo____59xx","location":null,"url":null,"description":"(\u00b4\u2018\u25bd\u2018\uff40)\u541b\u3068\u4e00\u7dd2\u306b\u30c6\u30a4\u30af\u30aa\u30d5\u2729 \/ JK2\u0b67\u2362\u20dd\ufe0e\u0b68\u5de6\/ 8.13 HIROSHIMA\ua4b0\u0ac3\u00b4\ua4b3`\u0ac3\u1421 \u0ac1\ua4b1 \u0366","protected":false,"verified":false,"followers_count":53,"friends_count":55,"listed_count":0,"favourites_count":3700,"statuses_count":5136,"created_at":"Wed Feb 26 15:15:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653959252617224192\/Ryyy2G-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653959252617224192\/Ryyy2G-N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362820078\/1444644038","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:01:56 +0000 2015","id":662857492683079680,"id_str":"662857492683079680","text":"\u2728 \ud83d\udc8e \u897f \u7551 \u5927 \u543e \ud83d\udc8e \u2728\n\n \ud83e\udd84 95(96)\u5e74\u7d44 \ud83c\udf3b\n\n \ud83d\udc3b \u718a \u672c \ud83d\udc3b\n\n \ud83d\udc78\ud83c\udffc \u30e9\u30d7\u30f3\u30c4\u30a7\u30eb \ud83d\udc51\n\n #\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087 https:\/\/t.co\/tGxkG3JTE5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362481324,"id_str":"2362481324","name":"\u2445\u20dd \u897f\u7551\u3055\u304d\u3093\u3061\u3087 \u1571\u2445\u1571 **","screen_name":"sakincho0219","location":"\u897f\u7551\u5927\u543e \u30b8\u30e3\u30cb\u30fc\u30baWEST","url":"http:\/\/twpf.jp\/sakincho0219","description":"\u2445\u20dd\u306b\u3057\u306f\u305f \u3060\u3044\u3054 \u2445\u20dd\u95a2\u897fJr. \u8679\u8272\u30b8\u30e3\u30b9\u6c11 Disney Princess","protected":false,"verified":false,"followers_count":213,"friends_count":59,"listed_count":14,"favourites_count":776,"statuses_count":7636,"created_at":"Wed Feb 26 10:31:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660780798396665857\/gkdrb_Hv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660780798396665857\/gkdrb_Hv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362481324\/1436437919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":198,"favorite_count":14,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087","indices":[77,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662857427298095104,"id_str":"662857427298095104","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662857427298095104,"id_str":"662857427298095104","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":662857429231644672,"id_str":"662857429231644672","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUeYUsAAzzpt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUeYUsAAzzpt.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087","indices":[95,132]}],"urls":[],"user_mentions":[{"screen_name":"sakincho0219","name":"\u2445\u20dd \u897f\u7551\u3055\u304d\u3093\u3061\u3087 \u1571\u2445\u1571 **","id":2362481324,"id_str":"2362481324","indices":[3,16]}],"symbols":[],"media":[{"id":662857427298095104,"id_str":"662857427298095104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662857492683079680,"source_status_id_str":"662857492683079680","source_user_id":2362481324,"source_user_id_str":"2362481324"}]},"extended_entities":{"media":[{"id":662857427298095104,"id_str":"662857427298095104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUXLVEAAlS0B.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662857492683079680,"source_status_id_str":"662857492683079680","source_user_id":2362481324,"source_user_id_str":"2362481324"},{"id":662857429231644672,"id_str":"662857429231644672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxUeYUsAAzzpt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxUeYUsAAzzpt.jpg","url":"https:\/\/t.co\/tGxkG3JTE5","display_url":"pic.twitter.com\/tGxkG3JTE5","expanded_url":"http:\/\/twitter.com\/sakincho0219\/status\/662857492683079680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662857492683079680,"source_status_id_str":"662857492683079680","source_user_id":2362481324,"source_user_id_str":"2362481324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020660"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457080320,"id_str":"663727829457080320","text":"\u571f\u5c4b\u592a\u9cf3\u300c\u4e00\u756a\u4f1a\u3044\u305f\u3044\u4eba\u300d\u677e\u5ca1\u4fee\u9020\u3068\u5bfe\u9762\u3057\u30b9\u30de\u30a4\u30eb!! https:\/\/t.co\/KmAxZta7P7","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636915019,"id_str":"636915019","name":"Elizaveta Andreeva","screen_name":"lizamindyou","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":25,"listed_count":0,"favourites_count":0,"statuses_count":5264,"created_at":"Mon Jul 16 11:50:39 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2402650316\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2402650316\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KmAxZta7P7","expanded_url":"http:\/\/bit.ly\/1HCxKXP","display_url":"bit.ly\/1HCxKXP","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020666"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829453029376,"id_str":"663727829453029376","text":"RT @gustavohlopez: Gracias @Sportia @TyCSports https:\/\/t.co\/VM4hEBG4th","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4099866646,"id_str":"4099866646","name":"joee graff","screen_name":"Graff8762Ji","location":null,"url":null,"description":"Tigre pasion","protected":false,"verified":false,"followers_count":8,"friends_count":13,"listed_count":0,"favourites_count":26,"statuses_count":44,"created_at":"Mon Nov 02 20:51:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661310562446479360\/ts5iI_D4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661310562446479360\/ts5iI_D4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4099866646\/1446769984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:55 +0000 2015","id":663708348156674048,"id_str":"663708348156674048","text":"Gracias @Sportia @TyCSports https:\/\/t.co\/VM4hEBG4th","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133954472,"id_str":"133954472","name":"Gustavo H\u00e9ctor Lopez","screen_name":"gustavohlopez","location":"lared.am - americatv.com.ar","url":null,"description":"Periodista. Conductor de los programas deportivos de Radio La Red AM910. El Show Del F\u00fatbol por Am\u00e9rica. 4G en Metro.","protected":false,"verified":false,"followers_count":432642,"friends_count":652,"listed_count":2408,"favourites_count":75,"statuses_count":30513,"created_at":"Sat Apr 17 02:41:23 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/829379373\/gustavo_twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/829379373\/gustavo_twitter_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":19,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sportia","name":"Sportia","id":249692638,"id_str":"249692638","indices":[8,16]},{"screen_name":"TyCSports","name":"TyC Sports","id":15590302,"id_str":"15590302","indices":[17,27]}],"symbols":[],"media":[{"id":663708298294726656,"id_str":"663708298294726656","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","url":"https:\/\/t.co\/VM4hEBG4th","display_url":"pic.twitter.com\/VM4hEBG4th","expanded_url":"http:\/\/twitter.com\/gustavohlopez\/status\/663708348156674048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708298294726656,"id_str":"663708298294726656","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","url":"https:\/\/t.co\/VM4hEBG4th","display_url":"pic.twitter.com\/VM4hEBG4th","expanded_url":"http:\/\/twitter.com\/gustavohlopez\/status\/663708348156674048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gustavohlopez","name":"Gustavo H\u00e9ctor Lopez","id":133954472,"id_str":"133954472","indices":[3,17]},{"screen_name":"Sportia","name":"Sportia","id":249692638,"id_str":"249692638","indices":[27,35]},{"screen_name":"TyCSports","name":"TyC Sports","id":15590302,"id_str":"15590302","indices":[36,46]}],"symbols":[],"media":[{"id":663708298294726656,"id_str":"663708298294726656","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","url":"https:\/\/t.co\/VM4hEBG4th","display_url":"pic.twitter.com\/VM4hEBG4th","expanded_url":"http:\/\/twitter.com\/gustavohlopez\/status\/663708348156674048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663708348156674048,"source_status_id_str":"663708348156674048","source_user_id":133954472,"source_user_id_str":"133954472"}]},"extended_entities":{"media":[{"id":663708298294726656,"id_str":"663708298294726656","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3LkpWEAAWjmd.jpg","url":"https:\/\/t.co\/VM4hEBG4th","display_url":"pic.twitter.com\/VM4hEBG4th","expanded_url":"http:\/\/twitter.com\/gustavohlopez\/status\/663708348156674048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663708348156674048,"source_status_id_str":"663708348156674048","source_user_id":133954472,"source_user_id_str":"133954472"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080020665"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444489216,"id_str":"663727829444489216","text":"RT @verybaesic: the right person will come along and you won't need to do anything to keep them interested for the simple fact that you'll \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1246940502,"id_str":"1246940502","name":"sami","screen_name":"SamiiJeann","location":"gwood","url":null,"description":null,"protected":false,"verified":false,"followers_count":164,"friends_count":214,"listed_count":0,"favourites_count":397,"statuses_count":811,"created_at":"Wed Mar 06 20:12:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663539529534406657\/EdlpQa4Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663539529534406657\/EdlpQa4Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1246940502\/1446970334","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:36:11 +0000 2015","id":663575789842100224,"id_str":"663575789842100224","text":"the right person will come along and you won't need to do anything to keep them interested for the simple fact that you'll be enough","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201780226,"id_str":"1201780226","name":"John","screen_name":"verybaesic","location":"California","url":null,"description":"bio under construction","protected":false,"verified":false,"followers_count":28774,"friends_count":566,"listed_count":89,"favourites_count":580,"statuses_count":492,"created_at":"Wed Feb 20 18:14:21 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529322608727031808\/JShQ9njJ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529322608727031808\/JShQ9njJ.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661404245573398528\/jDfoy_qz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661404245573398528\/jDfoy_qz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201780226\/1447048177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":713,"favorite_count":805,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"verybaesic","name":"John","id":1201780226,"id_str":"1201780226","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457068033,"id_str":"663727829457068033","text":"@R34Ryutaro \u77e5\u308a\u5408\u3044\u304c\u661430\u3067\u4e0a\u4e0b\u3042\u308f\u305b\u5165\u308c\u3066\u307e\u3057\u305f\u304c\u304b\u3063\u3053\u826f\u304b\u3063\u305f\u3067\u3059\u3088\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727181541998592,"in_reply_to_status_id_str":"663727181541998592","in_reply_to_user_id":2188117670,"in_reply_to_user_id_str":"2188117670","in_reply_to_screen_name":"R34Ryutaro","user":{"id":3269782044,"id_str":"3269782044","name":"\u3061\u3083\u3070\u304f\u3089","screen_name":"Cj9B44qUTC4Nx7z","location":null,"url":null,"description":"\u6027\u683c\u60aa\u3044\u3067\u3059\u2661 \u53d6\u308a\u6271\u3044\u306b\u306f\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u2661 \u4fd7\u306b\u8a00\u3046\u8eca\u57a2\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":305,"friends_count":190,"listed_count":0,"favourites_count":297,"statuses_count":1822,"created_at":"Mon Jul 06 08:45:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663033882246180865\/F-3rStii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663033882246180865\/F-3rStii_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269782044\/1445434094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"R34Ryutaro","name":"\u9686\u592a\u90ce","id":2188117670,"id_str":"2188117670","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020666"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444595713,"id_str":"663727829444595713","text":"Expanding my knowledge is a great feeling!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781575860,"id_str":"781575860","name":"jasper lopez","screen_name":"g_lopez61","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":89,"listed_count":0,"favourites_count":72,"statuses_count":276,"created_at":"Sun Aug 26 03:14:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626905543383212032\/kkBt4RV9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626905543383212032\/kkBt4RV9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781575860\/1360893151","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444489217,"id_str":"663727829444489217","text":"RT @CaedHelwin: Bayaq RM5. Pilih 4 lauk. Air boleh refill. Kedai pun selesa. Lauk byk jenis. Dkt area Sentosa. \ud83d\udc4d\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/RTmXMyXho7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173692907,"id_str":"173692907","name":"spica","screen_name":"KhaleedaNsa","location":null,"url":null,"description":"in & out of this world","protected":false,"verified":false,"followers_count":431,"friends_count":324,"listed_count":1,"favourites_count":6445,"statuses_count":17279,"created_at":"Mon Aug 02 03:27:54 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573680061\/qqqevafcqmmxmg3ouw83.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573680061\/qqqevafcqmmxmg3ouw83.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"CF193E","profile_sidebar_fill_color":"C21B3D","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662918995176124416\/7-gOO3jc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662918995176124416\/7-gOO3jc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173692907\/1446228288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:46:20 +0000 2015","id":663578342805762048,"id_str":"663578342805762048","text":"Bayaq RM5. Pilih 4 lauk. Air boleh refill. Kedai pun selesa. Lauk byk jenis. Dkt area Sentosa. \ud83d\udc4d\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/RTmXMyXho7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":225791864,"id_str":"225791864","name":"Caedddd","screen_name":"CaedHelwin","location":"Alor Star, Kedah","url":null,"description":null,"protected":false,"verified":false,"followers_count":529,"friends_count":277,"listed_count":3,"favourites_count":42,"statuses_count":36371,"created_at":"Sun Dec 12 13:10:04 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000081071999\/6d87bc0ef7a7dbddb8e185505d3ed3fa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000081071999\/6d87bc0ef7a7dbddb8e185505d3ed3fa.jpeg","profile_background_tile":true,"profile_link_color":"730000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"030303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663012315449593857\/0UXVyuXF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663012315449593857\/0UXVyuXF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225791864\/1446972634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1292,"favorite_count":539,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663578245934112768,"id_str":"663578245934112768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663578245934112768,"id_str":"663578245934112768","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663578289492004865,"id_str":"663578289492004865","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA8EHVEAEsUSO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA8EHVEAEsUSO.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CaedHelwin","name":"Caedddd","id":225791864,"id_str":"225791864","indices":[3,14]}],"symbols":[],"media":[{"id":663578245934112768,"id_str":"663578245934112768","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663578342805762048,"source_status_id_str":"663578342805762048","source_user_id":225791864,"source_user_id_str":"225791864"}]},"extended_entities":{"media":[{"id":663578245934112768,"id_str":"663578245934112768","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA5h2UYAA1Yzo.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663578342805762048,"source_status_id_str":"663578342805762048","source_user_id":225791864,"source_user_id_str":"225791864"},{"id":663578289492004865,"id_str":"663578289492004865","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA8EHVEAEsUSO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA8EHVEAEsUSO.jpg","url":"https:\/\/t.co\/RTmXMyXho7","display_url":"pic.twitter.com\/RTmXMyXho7","expanded_url":"http:\/\/twitter.com\/CaedHelwin\/status\/663578342805762048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663578342805762048,"source_status_id_str":"663578342805762048","source_user_id":225791864,"source_user_id_str":"225791864"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448851456,"id_str":"663727829448851456","text":"Devia ser proibido ficar longe de quem a gente gosta . \u26a0\ufe0f\ud83d\udeab","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318750456,"id_str":"318750456","name":"#NoisPorNois\u265a","screen_name":"negretthy07","location":"umuarama\/paran\u00e1","url":null,"description":"\u2605Nunca feche os olhos para o mundo, pois h\u00e1 pessoas no mundo que esperam o seu olhar \u270c @ClubeBigFollow @CLUBEFOLLOWBACK","protected":false,"verified":false,"followers_count":2088,"friends_count":2078,"listed_count":5,"favourites_count":666,"statuses_count":7857,"created_at":"Fri Jun 17 00:22:01 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641060986036846592\/imTYfH7R.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641060986036846592\/imTYfH7R.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"080808","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661301950068236289\/8dp6pd8D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661301950068236289\/8dp6pd8D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318750456\/1446501698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444526080,"id_str":"663727829444526080","text":"RT @M_tomoyohi: \u5e30\u5b85\u3057\u305f\u307b\u307d\u5b50\u3061\u3083\u3093 https:\/\/t.co\/DFZuglpqhq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2433499033,"id_str":"2433499033","name":"\u3082\u3050\u3089(\u529b\u3053\u305d\u30d1\u30ef\u30fc)","screen_name":"e54_m0gr","location":"\u672a\u77e5\u306e\u30a8\u30ea\u30a2\u2642","url":null,"description":"\u3055\u3093\u3092\u4ed8\u3051\u308d\u30c7\u30b3\u52a9\u91ce\u90cev('\u03c9'v\u4e09v'\u03c9')v","protected":false,"verified":false,"followers_count":793,"friends_count":1207,"listed_count":19,"favourites_count":99651,"statuses_count":58825,"created_at":"Tue Apr 08 11:47:09 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510015101462528000\/I-F07YK7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510015101462528000\/I-F07YK7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2433499033\/1426231795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:22:43 +0000 2015","id":663602600097415168,"id_str":"663602600097415168","text":"\u5e30\u5b85\u3057\u305f\u307b\u307d\u5b50\u3061\u3083\u3093 https:\/\/t.co\/DFZuglpqhq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663282565520846849,"in_reply_to_status_id_str":"663282565520846849","in_reply_to_user_id":96759835,"in_reply_to_user_id_str":"96759835","in_reply_to_screen_name":"M_tomoyohi","user":{"id":96759835,"id_str":"96759835","name":"\u30de\u30c4\u30e2\u30c8 \u30c8\u30e2\u30e8\u30d2@2\u65e5\u76ee\u6771D-25b","screen_name":"M_tomoyohi","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=54642","description":"\u30d5\u30ea\u30fc\u3067\u30b2\u30fc\u30e0\u95a2\u4fc2\u306e\u30a4\u30e9\u30b9\u30c8\u306e\u304a\u4ed5\u4e8b\u3092\u3055\u305b\u3066\u9802\u3044\u3066\u304a\u308a\u307e\u3059\uff01 \u305f\u307e\u306b\u30b2\u30fc\u30e0\u96d1\u8a8c\u7b49\u3067\u3082\u63cf\u304b\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\uff01 \u3000\u304a\u4ed5\u4e8b\u306a\u3069\u306e\u3054\u4f9d\u983c\u7b49\u306f\u2192 asa_sotosiyo\u2606http:\/\/hotmail.com \u304b\u3089\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\uff01\uff08\u2606\u306f\uff20\u306b\u5909\u63db\u3057\u3066\u304f\u3060\u3055\u3044\uff09","protected":false,"verified":false,"followers_count":1210,"friends_count":312,"listed_count":70,"favourites_count":1012,"statuses_count":28791,"created_at":"Mon Dec 14 13:22:25 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599681316494258176\/hlwCTCWS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599681316494258176\/hlwCTCWS.png","profile_background_tile":false,"profile_link_color":"414BB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF0B2","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662186082633515008\/Nkt0lndd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662186082633515008\/Nkt0lndd_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":181,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"M_tomoyohi","name":"\u30de\u30c4\u30e2\u30c8 \u30c8\u30e2\u30e8\u30d2@2\u65e5\u76ee\u6771D-25b","id":96759835,"id_str":"96759835","indices":[3,14]}],"symbols":[],"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}},"source_status_id":663602600097415168,"source_status_id_str":"663602600097415168","source_user_id":96759835,"source_user_id_str":"96759835"}]},"extended_entities":{"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}},"source_status_id":663602600097415168,"source_status_id_str":"663602600097415168","source_user_id":96759835,"source_user_id_str":"96759835"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829440331776,"id_str":"663727829440331776","text":"\u305d\u3057\u3066\u4ffa\u306e\u3057\u305a\u304f\u3061\u3083\u3093\u7f36\u30d0\u30c3\u30c1\u304a\u6c17\u306b\u5165\u308a\u3067\u98df\u3079\u3089\u308c\u305d\u3046\u306b\u306a\u308b","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415099702,"id_str":"2415099702","name":"\u30a8\u30a4\u30e9\u5927\u597d\u304d\u30de\u30f3","screen_name":"Eiradaisukiman","location":"\u30b9\u30aa\u30e0\u30b9","url":null,"description":"\u30a8\u30a4\u30e9\u5927\u597d\u304d\u30de\u30f3\u3067\u3059\n\u6c34\u6ca1\u3059\u308b\u4eba\u304c\u5acc\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":658,"friends_count":487,"listed_count":33,"favourites_count":66880,"statuses_count":71314,"created_at":"Fri Mar 28 00:50:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661933427134861312\/1YTemqme_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661933427134861312\/1YTemqme_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415099702\/1446652200","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020662"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829440266240,"id_str":"663727829440266240","text":"@teamout73 \u30d5\u30a1\u30fc\u30b9\u30c8\u30b7\u30fc\u30ba\u30f3\u304b\u306d\uff1f( \uff65_\uff65)\u5b8c\u7d50\u307e\u3067\u306e\u9053\u306e\u308a\u304c\u9577\u305d\u3046\u3060\u306d\uff1f( \uff65_\uff65)b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663633882739138560,"in_reply_to_status_id_str":"663633882739138560","in_reply_to_user_id":597334925,"in_reply_to_user_id_str":"597334925","in_reply_to_screen_name":"teamout73","user":{"id":4024375938,"id_str":"4024375938","name":"\u30b1\u30cb\u30fcg","screen_name":"keneeg1_g","location":"\u571f\u306e\u4e2d\u304c\u3044\u3044\u306d\uff1f(\u30fb-\u30fb)bbb","url":null,"description":"\u6a5f\u68b0\u30aa\u30f3\u30c1\u30671\u304b\u3089\u3084\u308a\u76f4\u3057\u306e\u6a21\u69d8\u3060\u306d\uff1f(\u00b0_\u00b0)\u308f\u3051\u304c\u308f\u304b\u308a\u307e\u3066\u3093\u3066\u3093m9(\u30fb-\u30fb)9m","protected":false,"verified":false,"followers_count":599,"friends_count":791,"listed_count":0,"favourites_count":23,"statuses_count":74,"created_at":"Mon Oct 26 12:45:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658642984154476545\/nCxuczOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658642984154476545\/nCxuczOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4024375938\/1445868470","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teamout73","name":"\u587e\u9577@JKC","id":597334925,"id_str":"597334925","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020662"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444497408,"id_str":"663727829444497408","text":"\u30ae\u30eb\u30ac\u30e1\u30c3\u30b7\u30e5\u3001\u52a0\u5de5\u4e0a\u624b\u3044\u3063\u3059\u306d!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4134921012,"id_str":"4134921012","name":"\u7bb1\u6839\u6709\u57fa","screen_name":"mohumohudks","location":"\u7709\u96e3\u9ad8\u6821\u304b\u9ed2\u7389\u6e6f\uff01","url":null,"description":"\u2661\u7f8e\u7537\u9ad8\u6821\u5730\u7403\u9632\u885b\u90e8love!\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u2661\u540c\u4f5c\u67f5\u8d8a\u3048\u5927\u6b53\u8fce \u2733\ufe0e\u30d5\u30a9\u30ed\u30fc\u62d2\u5426...18\u6b73\u4ee5\u4e0b\u306e\u65b9\u3001\u5275\u4f5c\u306a\u308a\u304d\u308a\u3001\u30c9\u30c3\u30da\u30eb\uff08\u81ea\u5206\u3068\u540c\u3058\u30ad\u30e3\u30e9\uff09 \u604b\u4ef2\u30fb\u5bb6\u65cf\u306f\u306a\u308a\u3086\u304d\u3067 \u30b9\u30ad\u30f3\u30b7\u30c3\u30d7...\u30ad\u30b9\u4ee5\u4e0a\u306fDM\u3067\uff08\u539f\u5247\u30ad\u30b9\u4ee5\u4e0a\u306f\u00d7\uff09 \u80cc\u5f8c\u8a6e\u7d22\u7981\u6b62","protected":false,"verified":false,"followers_count":22,"friends_count":22,"listed_count":0,"favourites_count":173,"statuses_count":252,"created_at":"Thu Nov 05 12:38:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662250058968993792\/7r-OA2pj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662250058968993792\/7r-OA2pj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4134921012\/1446728387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829444595714,"id_str":"663727829444595714","text":"@nixsight @newageamazon Oldboy is a story about a robot who's actually a ghost sent back in time from the future on a sledge to kill himself","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719355469967360,"in_reply_to_status_id_str":"663719355469967360","in_reply_to_user_id":7585952,"in_reply_to_user_id_str":"7585952","in_reply_to_screen_name":"nixsight","user":{"id":85564736,"id_str":"85564736","name":"Gary Erskine","screen_name":"garyerskine","location":"St Andrews, Scotland","url":null,"description":"Comics + Storyboards + Concept Design + Publishing + Teaching + @_perfectspiral + @rollergrrrls + http:\/\/garyerskine.tumblr.com","protected":false,"verified":false,"followers_count":4652,"friends_count":1818,"listed_count":202,"favourites_count":9730,"statuses_count":20071,"created_at":"Tue Oct 27 13:09:52 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654230511502667776\/nBkYfdXS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654230511502667776\/nBkYfdXS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85564736\/1396286788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nixsight","name":"ManicPixieDreamNick","id":7585952,"id_str":"7585952","indices":[0,9]},{"screen_name":"newageamazon","name":"Ashly","id":8561102,"id_str":"8561102","indices":[10,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020663"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829448724480,"id_str":"663727829448724480","text":"@chrischrisman @PurpleRow Aaron Harang, baby! Make it happen. :-\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727450887553024,"in_reply_to_status_id_str":"663727450887553024","in_reply_to_user_id":118148760,"in_reply_to_user_id_str":"118148760","in_reply_to_screen_name":"chrischrisman","user":{"id":2303865842,"id_str":"2303865842","name":"Dan Davis","screen_name":"DD_amdg","location":null,"url":null,"description":"Trad Catholic, father of 10, ordinary guy.","protected":false,"verified":false,"followers_count":13,"friends_count":13,"listed_count":0,"favourites_count":52,"statuses_count":71,"created_at":"Tue Jan 21 23:36:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435492318389342209\/bn2tksv5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435492318389342209\/bn2tksv5_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chrischrisman","name":"Chris Chrisman","id":118148760,"id_str":"118148760","indices":[0,14]},{"screen_name":"PurpleRow","name":"Purple Row","id":17827133,"id_str":"17827133","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080020664"} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829457072129,"id_str":"663727829457072129","text":"Selamat hari deepavali kepada semua yang menyambut especially @syushrdn https:\/\/t.co\/zVF3zWIkCR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908994120,"id_str":"2908994120","name":"ayep.","screen_name":"arifaiyif","location":"JejakaCantek founder","url":"http:\/\/mencaridollah.com","description":"Whatever you are,be a good one.","protected":false,"verified":false,"followers_count":500,"friends_count":289,"listed_count":7,"favourites_count":10505,"statuses_count":9867,"created_at":"Mon Nov 24 11:08:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627327718724468737\/VWeo2Jc-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627327718724468737\/VWeo2Jc-.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663339774774636544\/yBusFh-X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663339774774636544\/yBusFh-X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908994120\/1447062477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syushrdn","name":"\u2764\u2764\u2764","id":2318127038,"id_str":"2318127038","indices":[62,71]}],"symbols":[],"media":[{"id":663727808594620420,"id_str":"663727808594620420","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7OLUsAQFMIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7OLUsAQFMIe.jpg","url":"https:\/\/t.co\/zVF3zWIkCR","display_url":"pic.twitter.com\/zVF3zWIkCR","expanded_url":"http:\/\/twitter.com\/arifaiyif\/status\/663727829457072129\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727808594620420,"id_str":"663727808594620420","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7OLUsAQFMIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7OLUsAQFMIe.jpg","url":"https:\/\/t.co\/zVF3zWIkCR","display_url":"pic.twitter.com\/zVF3zWIkCR","expanded_url":"http:\/\/twitter.com\/arifaiyif\/status\/663727829457072129\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080020666"} +{"delete":{"status":{"id":445531197289283585,"id_str":"445531197289283585","user_id":449604242,"user_id_str":"449604242"},"timestamp_ms":"1447080021084"}} +{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727829436141568,"id_str":"663727829436141568","text":"\ud83d\ude0d \ud83d\ude0d \ud83d\ude0d https:\/\/t.co\/LTpU4jTWeU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994651118,"id_str":"2994651118","name":"Emma Roberts Brasil","screen_name":"emrobertsbrasil","location":"Brasil","url":"http:\/\/emmaroberts.com.br","description":"Sejam bem vindos \u00e0 sua primeira e melhor fonte sobre a atriz Emma Roberts no Brasil.","protected":false,"verified":false,"followers_count":1647,"friends_count":192,"listed_count":6,"favourites_count":1413,"statuses_count":1775,"created_at":"Fri Jan 23 19:09:38 +0000 2015","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FDF9E2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FE1C61","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660228559039021056\/SAMO2DeB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660228559039021056\/SAMO2DeB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994651118\/1446245458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727826877698049,"id_str":"663727826877698049","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8SSWUAEtpZe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8SSWUAEtpZe.jpg","url":"https:\/\/t.co\/LTpU4jTWeU","display_url":"pic.twitter.com\/LTpU4jTWeU","expanded_url":"http:\/\/twitter.com\/emrobertsbrasil\/status\/663727829436141568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":500,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727826877698049,"id_str":"663727826877698049","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8SSWUAEtpZe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8SSWUAEtpZe.jpg","url":"https:\/\/t.co\/LTpU4jTWeU","display_url":"pic.twitter.com\/LTpU4jTWeU","expanded_url":"http:\/\/twitter.com\/emrobertsbrasil\/status\/663727829436141568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":500,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":490,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080020661"} +{"delete":{"status":{"id":508377335620722689,"id_str":"508377335620722689","user_id":491911431,"user_id_str":"491911431"},"timestamp_ms":"1447080021096"}} +{"delete":{"status":{"id":656402611738841088,"id_str":"656402611738841088","user_id":1445090912,"user_id_str":"1445090912"},"timestamp_ms":"1447080021114"}} +{"delete":{"status":{"id":659685212436099072,"id_str":"659685212436099072","user_id":3635179093,"user_id_str":"3635179093"},"timestamp_ms":"1447080021358"}} +{"delete":{"status":{"id":663724700476903424,"id_str":"663724700476903424","user_id":2964471858,"user_id_str":"2964471858"},"timestamp_ms":"1447080021405"}} +{"delete":{"status":{"id":663727732967084032,"id_str":"663727732967084032","user_id":3056350506,"user_id_str":"3056350506"},"timestamp_ms":"1447080021416"}} +{"delete":{"status":{"id":663553254123544576,"id_str":"663553254123544576","user_id":362275884,"user_id_str":"362275884"},"timestamp_ms":"1447080021514"}} +{"delete":{"status":{"id":663724968941920257,"id_str":"663724968941920257","user_id":3737687174,"user_id_str":"3737687174"},"timestamp_ms":"1447080021513"}} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833630547972,"id_str":"663727833630547972","text":"RT @ruhantisocial: leva o padre gabriel e deixa a cabra #TWD6naFOX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2360186588,"id_str":"2360186588","name":"Juliana","screen_name":"JulianaguerraJG","location":"Australia","url":null,"description":"Escorpiana \u264f\ufe0f Ascendente g\u00eameos \u264a\ufe0f Lua em sagit\u00e1rio \u2650\ufe0f Gabriel Nazario \u2764\ufe0f 21\/08\/15\u2764\ufe0f","protected":false,"verified":false,"followers_count":301,"friends_count":813,"listed_count":1,"favourites_count":607,"statuses_count":10780,"created_at":"Mon Feb 24 23:51:32 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"690490","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655050492645658625\/k3-eSlc6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655050492645658625\/k3-eSlc6.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663442399889330176\/4KeTosuE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663442399889330176\/4KeTosuE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2360186588\/1447033939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 04:08:12 +0000 2015","id":661032032219213824,"id_str":"661032032219213824","text":"leva o padre gabriel e deixa a cabra #TWD6naFOX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752223636,"id_str":"752223636","name":"ruhan","screen_name":"ruhantisocial","location":"RJ ","url":null,"description":"the new world's gonna need rick grimes","protected":false,"verified":false,"followers_count":3302,"friends_count":982,"listed_count":0,"favourites_count":1801,"statuses_count":7350,"created_at":"Sun Aug 12 01:27:06 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662417096840712192\/ZoO818X-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662417096840712192\/ZoO818X-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752223636\/1447022232","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":10,"entities":{"hashtags":[{"text":"TWD6naFOX","indices":[37,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TWD6naFOX","indices":[56,66]}],"urls":[],"user_mentions":[{"screen_name":"ruhantisocial","name":"ruhan","id":752223636,"id_str":"752223636","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080021661"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833626386432,"id_str":"663727833626386432","text":"immilesalcanta: imkiantatum: blueheartkn003: imwjb: pca_moh13: cassiexxford05: kathnielpush3: padillasab026: kbdpftcris26: knxgoals: #PushA\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4084933094,"id_str":"4084933094","name":"Aileen Dawat Reyes","screen_name":"kathrynkime27","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":38,"listed_count":7,"favourites_count":17,"statuses_count":20296,"created_at":"Sun Nov 01 00:00:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660609132387414017\/3WyAXCG9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660609132387414017\/3WyAXCG9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushA","indices":[133,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080021660"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833643130880,"id_str":"663727833643130880","text":"RT @ddlovato: Probably sleeping with his auntie Marissa #AskDemi https:\/\/t.co\/eJcCIjUNZs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267753522,"id_str":"2267753522","name":"Emeline \u262e","screen_name":"SelenaEmeline","location":"France, Francia","url":"http:\/\/bit.ly\/ThisIsNotAnEP","description":"\u2764\ufe0fSelenator, TeamTal, Tiffanies, KatyCat, Romy M, #Auviteam, Gad, Maude, Sindy\u2764Dates: 23\/04\/14, 17\/02\/15, 13 & 14\/08\/15 Justine, Lina et Romain","protected":false,"verified":false,"followers_count":951,"friends_count":725,"listed_count":6,"favourites_count":4490,"statuses_count":27206,"created_at":"Sun Dec 29 18:36:46 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685886262030336\/2ORv7fhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685886262030336\/2ORv7fhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267753522\/1441538196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:16:45 +0000 2015","id":663691692789342208,"id_str":"663691692789342208","text":"Probably sleeping with his auntie Marissa #AskDemi https:\/\/t.co\/eJcCIjUNZs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672541,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687226992144384,"quoted_status_id_str":"663687226992144384","quoted_status":{"created_at":"Mon Nov 09 11:59:00 +0000 2015","id":663687226992144384,"id_str":"663687226992144384","text":"@ddlovato #AskDemi What Is Batman Doing Right Now ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":1723605782,"id_str":"1723605782","name":"Angelica Alaniz","screen_name":"Demi_Is_Life_4","location":"Santa Maria California","url":null,"description":"a \u0455\u03b9\u043cple \u043dello co\u03c5ld lead \u0442o a \u043c\u03b9ll\u03b9on \u0442\u043d\u03b9ng\u0455 \u2661 \u043ce\u0442 de\u043c\u03b9 on 3\/18\/15 \u2661 | \u043ce\u0442 \u0138elly on 08\/19\/15 \u2661","protected":false,"verified":false,"followers_count":441,"friends_count":458,"listed_count":0,"favourites_count":409,"statuses_count":1633,"created_at":"Mon Sep 02 22:10:55 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515703022064631809\/2vt9PBiS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515703022064631809\/2vt9PBiS.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635140027429707776\/MFffURHE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635140027429707776\/MFffURHE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1723605782\/1441467408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[10,18]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2068,"favorite_count":3952,"entities":{"hashtags":[{"text":"AskDemi","indices":[42,50]}],"urls":[{"url":"https:\/\/t.co\/eJcCIjUNZs","expanded_url":"https:\/\/twitter.com\/Demi_Is_Life_4\/status\/663687226992144384","display_url":"twitter.com\/Demi_Is_Life_4\u2026","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[56,64]}],"urls":[{"url":"https:\/\/t.co\/eJcCIjUNZs","expanded_url":"https:\/\/twitter.com\/Demi_Is_Life_4\/status\/663687226992144384","display_url":"twitter.com\/Demi_Is_Life_4\u2026","indices":[65,88]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638944768,"id_str":"663727833638944768","text":"@sgrversace non ci credo non mi seguivi la nostra amicizia gay \u00e8 eterno finisce qui.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727665833238528,"in_reply_to_status_id_str":"663727665833238528","in_reply_to_user_id":3387981148,"in_reply_to_user_id_str":"3387981148","in_reply_to_screen_name":"sgrversace","user":{"id":1883635838,"id_str":"1883635838","name":"Clary\u2728","screen_name":"xboobeaar","location":"italy","url":null,"description":"'Tutto ci\u00f2 che posso fare \u00e8 dire che queste braccia sono fatte per stringerti.'","protected":false,"verified":false,"followers_count":2351,"friends_count":2034,"listed_count":0,"favourites_count":402,"statuses_count":5863,"created_at":"Thu Sep 19 16:17:13 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000086218445\/a0ad23a6b3f76a7326c3dcd7d0eecc5c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000086218445\/a0ad23a6b3f76a7326c3dcd7d0eecc5c.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652851536964546561\/VeQWmwq__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652851536964546561\/VeQWmwq__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1883635838\/1444486959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sgrversace","name":"manuel","id":3387981148,"id_str":"3387981148","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080021663"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647288320,"id_str":"663727833647288320","text":"Vou fzr mais um","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236238868,"id_str":"3236238868","name":"An angel \u2764","screen_name":"AguiarThuanny","location":"Rj","url":"http:\/\/instagram.com\/Tuuh_aguiiar","description":"A vis\u00e3o \u00e9 a semente da f\u00e9\u2764 . Snap: Tuuh_crristine","protected":false,"verified":false,"followers_count":449,"friends_count":933,"listed_count":0,"favourites_count":2592,"statuses_count":11444,"created_at":"Tue May 05 16:14:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663714764896473088\/I3sR1ZSo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663714764896473088\/I3sR1ZSo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236238868\/1441917726","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647357952,"id_str":"663727833647357952","text":"Nobody owns me doe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1227764850,"id_str":"1227764850","name":"Y'Hyness Tholoana","screen_name":"YHYNESS","location":"Rapper.","url":null,"description":"[Hip Hop Saved Me.]","protected":false,"verified":false,"followers_count":822,"friends_count":509,"listed_count":3,"favourites_count":589,"statuses_count":11900,"created_at":"Thu Feb 28 15:25:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661624289892941824\/zpDLSaR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661624289892941824\/zpDLSaR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227764850\/1446577395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833634705408,"id_str":"663727833634705408","text":"Me voy a comer una buena cucharada de az\u00facar\ud83d\ude0d \n-Ahora s\u00e9 que me paso para el otro lado\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1330264831,"id_str":"1330264831","name":"LA Pel\u00faa\u2693","screen_name":"LuliArambillety","location":"Tres Metros Sobre El Cielo. ","url":"http:\/\/www.facebook.com\/luli.arambillety","description":"Wpp: 093552954\nFb: Luli Arambillety \nInstagram: @arambillety","protected":false,"verified":false,"followers_count":665,"friends_count":676,"listed_count":3,"favourites_count":3058,"statuses_count":21819,"created_at":"Fri Apr 05 23:14:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"229999","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663012195828146176\/OoF_cGSW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663012195828146176\/OoF_cGSW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1330264831\/1443204846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021662"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613787136,"id_str":"663727833613787136","text":"Love watching a white girl sucking and getting fucked by big dick blk bruhs shit be hot af","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2452357308,"id_str":"2452357308","name":"Booty Licka","screen_name":"ButtNakedSex","location":"Atlanta, GA","url":null,"description":"Quiet cool laid back freak nigga. Infatuated with the naked body. Man funk keeps me on brick. Let me smell ya Booty,Dick and Feet bruh!","protected":false,"verified":false,"followers_count":4415,"friends_count":1156,"listed_count":17,"favourites_count":3243,"statuses_count":11534,"created_at":"Sat Apr 19 04:06:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663532957504774144\/PYqlOF9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663532957504774144\/PYqlOF9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2452357308\/1438943031","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613778944,"id_str":"663727833613778944","text":"RT @gabrielapousa: Qu\u00e9 raro! Roban en la Sala I de Casaci\u00f3n (Comodoro Py) donde est\u00e1n las causas Hotesur y el memor\u00e1ndum con Ir\u00e1n...#Caradu\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2737724417,"id_str":"2737724417","name":"Max1m1liano","screen_name":"tatista74","location":null,"url":null,"description":"Dif\u00edcilmente quiera alguna otra camiseta mas q la de Newell's! Nada nos pasa x casualidad.. Tres deseos? Messi, Messi y Messi","protected":false,"verified":false,"followers_count":885,"friends_count":1210,"listed_count":7,"favourites_count":608,"statuses_count":8794,"created_at":"Sat Aug 09 01:09:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552109223589715968\/41nMvcWn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552109223589715968\/41nMvcWn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737724417\/1440910199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:38 +0000 2015","id":663726395781193728,"id_str":"663726395781193728","text":"Qu\u00e9 raro! Roban en la Sala I de Casaci\u00f3n (Comodoro Py) donde est\u00e1n las causas Hotesur y el memor\u00e1ndum con Ir\u00e1n...#Caraduras","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164622997,"id_str":"164622997","name":"Gabriela Pousa","screen_name":"gabrielapousa","location":"Argentina","url":"http:\/\/www.perspectivaspoliticas.info","description":"Analista Pol\u00edtica.Master en Ec.y Cs.Pol\u00edticas. Lic en Periodismo.Columnista Radio Colonia con Llamas de Madariaga y El Mundo.Directora de Perspectivas Pol\u00edticas","protected":false,"verified":false,"followers_count":5356,"friends_count":200,"listed_count":97,"favourites_count":5937,"statuses_count":6805,"created_at":"Fri Jul 09 09:37:43 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479349942\/Capture_03302012_043952.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479349942\/Capture_03302012_043952.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617514164945330176\/g_Xs62G7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617514164945330176\/g_Xs62G7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164622997\/1392141923","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":0,"entities":{"hashtags":[{"text":"Caraduras","indices":[113,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Caraduras","indices":[132,140]}],"urls":[],"user_mentions":[{"screen_name":"gabrielapousa","name":"Gabriela Pousa","id":164622997,"id_str":"164622997","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647292416,"id_str":"663727833647292416","text":"@MikkiL @MailOnline Meanwhile we have food banks and benefits being cut left right and centre.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727118577201152,"in_reply_to_status_id_str":"663727118577201152","in_reply_to_user_id":27839828,"in_reply_to_user_id_str":"27839828","in_reply_to_screen_name":"MikkiL","user":{"id":2873976901,"id_str":"2873976901","name":"jackie","screen_name":"phythian97","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":133,"friends_count":195,"listed_count":1,"favourites_count":6970,"statuses_count":4760,"created_at":"Thu Oct 23 20:05:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591712138856681472\/VoQND_f1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591712138856681472\/VoQND_f1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2873976901\/1446031252","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MikkiL","name":"Mikkil","id":27839828,"id_str":"27839828","indices":[0,7]},{"screen_name":"MailOnline","name":"Daily Mail Online","id":15438913,"id_str":"15438913","indices":[8,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833651417089,"id_str":"663727833651417089","text":"\u3053\u306a\u3044\u3060\u5bb6\u306e\u4e2d\u3067\u8e93\u3044\u3066\u5484\u55df\u306b\u5730\u9762\u306b\u30b0\u30fc\u30d1\u30f3\u3092\u55b0\u3089\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3068\u4e8b\u306a\u304d\u3092\u5f97\u305f\u3093\u3060\u3051\u3069\u305d\u306e\u30b0\u30fc\u30d1\u30f3\u3067\u62f3\u3092\u64e6\u3063\u305f\u50b7\u304c\u6848\u5916\u6df1\u304f\u3066\u30ef\u30ed\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357523523,"id_str":"357523523","name":"\u30b3\u30eb\u30b9\u30d7","screen_name":"cold_spray","location":"\u96c4\u3063\u3071\u3044","url":"http:\/\/twpf.jp\/cold_spray","description":"\uff7c\uff9e\uff6e\uff7c\uff9e\uff6e\/\uff8e\uff97\uff70\/\u8056II \u652f\u90e8id=4623627 \u65e5\u5e38\u30c4\u30a4\u30fc\u30c8\u591a\u3057 \u8150\u3082\u5922\u3082\u7f8e\u5473\u3057\u304f\u3044\u305f\u3060\u304f \u6700\u8fd1\u306fFate\u304c\u71b1\u3044\u3088SN\u3084\u308a\u307e\u3057\u305f \u5be9\u795e\u8005\u4f11\u696d\u4e2d \u3064\u3044\u3077\u308d\u8aad\u3093\u3067\u306d \u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":401,"friends_count":376,"listed_count":42,"favourites_count":2872,"statuses_count":103796,"created_at":"Thu Aug 18 14:10:24 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/829806424\/27ed269056de72b3015fe0b0e18a839c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/829806424\/27ed269056de72b3015fe0b0e18a839c.png","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646982803788136453\/1jNVJpos_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646982803788136453\/1jNVJpos_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357523523\/1403617864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021666"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833630527489,"id_str":"663727833630527489","text":"Recuerda que nuestro siguente curso inicia el pr\u00f3ximo lunes 16 de noviembre. \nPara reservar tu cupo escr\u00edbenos a... https:\/\/t.co\/k7xzgtx2uX","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790438077,"id_str":"2790438077","name":"Sapiens","screen_name":"sapiensturismo","location":"Guayaquil, Ecuador","url":"https:\/\/www.facebook.com\/Sapiens-Soluciones-Tur%C3%ADsticas-1475156622752665\/","description":"Soluciones integrales para empresas turisticas, hoteleras y de restauraci\u00f3n.\n#Capacitaci\u00f3n #Turismo","protected":false,"verified":false,"followers_count":18,"friends_count":109,"listed_count":0,"favourites_count":1,"statuses_count":90,"created_at":"Mon Sep 29 01:54:01 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659103150218039296\/hjSqPH1F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659103150218039296\/hjSqPH1F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790438077\/1445980895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k7xzgtx2uX","expanded_url":"http:\/\/fb.me\/5fUnpjdFm","display_url":"fb.me\/5fUnpjdFm","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021661"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638768640,"id_str":"663727833638768640","text":"\u3042\u304d\u3061\u3083\u3093\u304c\u9cf4\u3044\u3066\u308b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1405337160,"id_str":"1405337160","name":"\u308c\u3044\u3084@\u307d\u3061\u304d\u3085\u3093\u304f\u3060\u3055\u3044","screen_name":"reiya_axis","location":"\u65e5\u9818\u3077\u306b\u3061\u6751\u3046\u3089\u3059\u306e\u6c11","url":"http:\/\/pixiv.me\/bletilla0526","description":"\u83ca\u53d7\u3051\u4e2d\u5fc3\u3001\u3077\u306b\u3061\u3001\u88cf\u3059\u30fc\u3058\u304f\u30af\u30e9\u30b9\u30bf\u306e\u8150\u5973\u5b50\u3067\u3059\u3002\u306b\u307d\u3093\u3055\u3093\u3068\u307d\u3061\u304f\u3093\u306e\u7d44\u307f\u5408\u308f\u305b\u304c\u5927\u597d\u304d\u3067\u3059\u300219\u6b73\u3002R\u306a\u3069\u306e\u88cf\u57a2\u2192@reiya_526 \u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u2192http:\/\/twpf.jp\/reiya_axis \u3079\u3063\u305f\u30fc\u2192http:\/\/privatter.net\/u\/reiya_axis \u53f2\u5b9f\u57a2\u2192@reihis0504","protected":false,"verified":false,"followers_count":149,"friends_count":170,"listed_count":31,"favourites_count":4652,"statuses_count":25242,"created_at":"Sun May 05 15:36:38 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660020174880292864\/fj7_iNfd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660020174880292864\/fj7_iNfd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1405337160\/1444436372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021663"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613787137,"id_str":"663727833613787137","text":"RT @rtvoost: Recordaantal toeschouwers bij Champions League-duel FC Twente Vrouwen https:\/\/t.co\/meqM3vNnRT #rtvoost https:\/\/t.co\/b6rBLr7IzY","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241272579,"id_str":"241272579","name":"sjouke tjeerdsma","screen_name":"sjoukectje","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":68,"friends_count":272,"listed_count":2,"favourites_count":3,"statuses_count":64,"created_at":"Fri Jan 21 21:38:16 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1802187508\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1802187508\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:08 +0000 2015","id":663726518795898880,"id_str":"663726518795898880","text":"Recordaantal toeschouwers bij Champions League-duel FC Twente Vrouwen https:\/\/t.co\/meqM3vNnRT #rtvoost https:\/\/t.co\/b6rBLr7IzY","source":"\u003ca href=\"http:\/\/www.rtvoost.nl\" rel=\"nofollow\"\u003ertvoost.nl\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20719533,"id_str":"20719533","name":"RTV Oost nieuws","screen_name":"rtvoost","location":"Hengelo","url":"http:\/\/www.rtvoost.nl","description":"Het laatste nieuws van RTV Oost, de regionale omroep (radio, tv en internet) voor Overijssel. Volg @rtvoostsport voor sportnieuws uit Overijssel.","protected":false,"verified":true,"followers_count":127038,"friends_count":28577,"listed_count":709,"favourites_count":58,"statuses_count":84445,"created_at":"Thu Feb 12 21:16:20 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565828486225354753\/628hsOqX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565828486225354753\/628hsOqX.jpeg","profile_background_tile":true,"profile_link_color":"0051CC","profile_sidebar_border_color":"99CCFF","profile_sidebar_fill_color":"C0DEED","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565486924375138304\/iPH0UsDu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565486924375138304\/iPH0UsDu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20719533\/1443087143","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[52.23816,6.836253]},"coordinates":{"type":"Point","coordinates":[6.836253,52.23816]},"place":{"id":"90641f413e4ded3e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/90641f413e4ded3e.json","place_type":"city","name":"Enschede","full_name":"Enschede, Overijssel","country_code":"NL","country":"Nederland","bounding_box":{"type":"Polygon","coordinates":[[[6.755996,52.161180],[6.755996,52.285511],[6.981174,52.285511],[6.981174,52.161180]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"rtvoost","indices":[94,102]}],"urls":[{"url":"https:\/\/t.co\/meqM3vNnRT","expanded_url":"http:\/\/bit.ly\/1RIlBGt","display_url":"bit.ly\/1RIlBGt","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663726518573600768,"id_str":"663726518573600768","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","url":"https:\/\/t.co\/b6rBLr7IzY","display_url":"pic.twitter.com\/b6rBLr7IzY","expanded_url":"http:\/\/twitter.com\/rtvoost\/status\/663726518795898880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726518573600768,"id_str":"663726518573600768","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","url":"https:\/\/t.co\/b6rBLr7IzY","display_url":"pic.twitter.com\/b6rBLr7IzY","expanded_url":"http:\/\/twitter.com\/rtvoost\/status\/663726518795898880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"rtvoost","indices":[107,115]}],"urls":[{"url":"https:\/\/t.co\/meqM3vNnRT","expanded_url":"http:\/\/bit.ly\/1RIlBGt","display_url":"bit.ly\/1RIlBGt","indices":[83,106]}],"user_mentions":[{"screen_name":"rtvoost","name":"RTV Oost nieuws","id":20719533,"id_str":"20719533","indices":[3,11]}],"symbols":[],"media":[{"id":663726518573600768,"id_str":"663726518573600768","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","url":"https:\/\/t.co\/b6rBLr7IzY","display_url":"pic.twitter.com\/b6rBLr7IzY","expanded_url":"http:\/\/twitter.com\/rtvoost\/status\/663726518795898880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663726518795898880,"source_status_id_str":"663726518795898880","source_user_id":20719533,"source_user_id_str":"20719533"}]},"extended_entities":{"media":[{"id":663726518573600768,"id_str":"663726518573600768","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwIeWEAAl-w-.jpg","url":"https:\/\/t.co\/b6rBLr7IzY","display_url":"pic.twitter.com\/b6rBLr7IzY","expanded_url":"http:\/\/twitter.com\/rtvoost\/status\/663726518795898880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663726518795898880,"source_status_id_str":"663726518795898880","source_user_id":20719533,"source_user_id_str":"20719533"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833626230784,"id_str":"663727833626230784","text":"\ud5e4\uae00\ub7ec \uc0c8\uae30\uc57c.....\uc57c \uc774 \ud574\uae00\ub7ec\uac19\uc740...\uc0c8\uae30\uc57c......\uc544\ub2c8....\uc774\uac8c\uc544\ub2c8\uace0....\ud558.......","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3036514651,"id_str":"3036514651","name":"\uba58\ud0c8\ubc15\uc0b4 \ub974\ucf10","screen_name":"rk__cm","location":null,"url":null,"description":"\ud5e4\ub354 \ube44\uaf43\ub2d8! \uc778\uc7a5 \uae04\ub2d8!\/1\ucc28 \uc704\uc8fc\uc758 \uc7a1\ub355\/\u203b\uc0ac\ub2f4\uc9c4\uc9dc\ub9ce\uc544\uc694\u203b\/\ud314\ub85c=\uba58\uc158\/\uc778\uc6a9\uc740 \ub178\ub178..\u3160\/\ud30c\ub791\uc0c8\uac00 \uc54c\ub9bc\uc744 \uba39\uc2b5\ub2c8\ub2e4 \ub2f5\uc774\uc5c6\uc744\ub550 \ub2e4\uc2dc\ubd88\ub7ec\uc8fc\uc138\uc694;\u3141;\/POI\ub901\uc1fc\ubc84\ub2dd\uc911 hello there","protected":false,"verified":false,"followers_count":155,"friends_count":132,"listed_count":1,"favourites_count":2995,"statuses_count":40971,"created_at":"Sun Feb 22 13:22:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658798045564301312\/OCjFi9jO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658798045564301312\/OCjFi9jO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3036514651\/1445784115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080021660"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833622126592,"id_str":"663727833622126592","text":"\u00dczerlerindeki g\u00f6\u011fe bakm\u0131yorlar m\u0131? Biz, onu nas\u0131l bina ettik ve onu nas\u0131l s\u00fcsledik? Onun hi\u00e7bir \u00e7atla\u011f\u0131 yok.(Kaf Suresi, 6)","source":"\u003ca href=\"http:\/\/sibelsayin.blogspot.com\" rel=\"nofollow\"\u003esibel sayin\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88498633,"id_str":"88498633","name":"sibel sayin","screen_name":"sibelsayins","location":null,"url":"https:\/\/instagram.com\/sibel_sayin\/","description":"bomba yerine fikir !!!","protected":false,"verified":false,"followers_count":4551,"friends_count":2626,"listed_count":15,"favourites_count":1031,"statuses_count":133258,"created_at":"Sun Nov 08 20:14:14 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/505849312991916032\/gItTNkBf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/505849312991916032\/gItTNkBf.jpeg","profile_background_tile":true,"profile_link_color":"BB00CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601342832427683840\/bAJPnrVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601342832427683840\/bAJPnrVH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88498633\/1445636922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080021659"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613668357,"id_str":"663727833613668357","text":"\u82b1\u97f3\u306f\u9762\u767d\u3044\u3088\u3002\n\u672c\u5f53\u306b\u3001\u3088\u304f\u3067\u304d\u305f\u306a\u3068\u601d\u3046\u3002\n\u3069\u3046\u3084\u3063\u305f\u3089\u3001\u3042\u3093\u306a\u3075\u3046\u306b\u80b2\u3064\u3082\u306e\u304b\u306a\u3041\uff57","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":257975897,"id_str":"257975897","name":"\u6210\u305b\u3070\u5948\u7559\u3068\u4fe1\u3058\u305f\u3044\u4eba\u2642","screen_name":"naru_morning","location":"\u4e5d\u5dde","url":null,"description":"\u8da3\u5473\u306f\u3001\u97f3\u697d\u9451\u8cde\u3068\u30e9\u30b8\u30aa\u3092\u8074\u304f\u3053\u3068\u3002 \u4ed5\u4e8b\u3082\u8da3\u5473\u3082\u4e00\u751f\u61f8\u547d\u9811\u5f35\u308b \u3002 \u91ce\u7403\u306f\u5de8\u4eba\u3002 \u3055\u3086\u30f2\u30bf\u3001\u3064\u3093\u304f\u697d\u66f2\u30f2\u30bf \u3002 \u30e2\u30fc\u30f2\u30bf\u3067\uff2f\uff27\u3082\u5927\u597d\u304d\u3002\uff08\u305f\u307e\u306b\u4e5d\u5dde\u306e\u5a18\u3002\u306e\u73fe\u5834\u306b\u73fe\u308c\u307e\u3059\u3002\uff09","protected":false,"verified":false,"followers_count":487,"friends_count":477,"listed_count":6,"favourites_count":5874,"statuses_count":17258,"created_at":"Sat Feb 26 17:54:00 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640850559453401088\/FBb6KNc__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640850559453401088\/FBb6KNc__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/257975897\/1441799026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617862661,"id_str":"663727833617862661","text":"RT @xxx8131: wwwww @mapomapo1107 @kamisamaigapyon https:\/\/t.co\/278zgWeW3b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957853270,"id_str":"2957853270","name":"\u308b\u3044\u308b\u3044\u7dcf\u9577\u3067\u3059(\u30fb\u03c9\u30fb)\u30ce","screen_name":"rrrui421","location":"\u30e2\u30f3\u30b9\u30c8\u3060\u3088\u3093\u6240\u5c5e","url":null,"description":"\u30ea\u30a2\u57a2\u3060\u3063\u305f\u306f\u305a\u304c\u3044\u3064\u306e\u9593\u306b\u304b\u30e2\u30f3\u30b9\u30c8\u57a2\u306b\uff81\u2500\u2500\u2500(\u00b4-\u03c9-\uff40)\u2500\u2500\u2500\uff9d \u30aa\u30e2\u30c1\u30e3\u3067\u8abf\u6559\u968a \u7dcf\u9577","protected":false,"verified":false,"followers_count":140,"friends_count":112,"listed_count":3,"favourites_count":187,"statuses_count":2448,"created_at":"Sun Jan 04 02:50:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614317443033337856\/Hl2q3ZU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614317443033337856\/Hl2q3ZU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957853270\/1440241763","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:19:05 +0000 2015","id":663677181143310336,"id_str":"663677181143310336","text":"wwwww @mapomapo1107 @kamisamaigapyon https:\/\/t.co\/278zgWeW3b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663676111037972480,"in_reply_to_status_id_str":"663676111037972480","in_reply_to_user_id":803741316,"in_reply_to_user_id_str":"803741316","in_reply_to_screen_name":"mapomapo1107","user":{"id":744205488,"id_str":"744205488","name":"narumi kaho","screen_name":"xxx8131","location":"Tokyo","url":"http:\/\/instagram.com\/kahopisss","description":"\u304b\u307b\u3074\u3059\u2661\u745e\u6c5f\u3001\u5ca9\u9ad8\u3001THU\u2661\u6bce\u65e5\u305f\u306e\u3057\u2362\u20dd","protected":false,"verified":false,"followers_count":742,"friends_count":600,"listed_count":0,"favourites_count":2083,"statuses_count":9739,"created_at":"Wed Aug 08 02:02:07 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615364731101024256\/PnU-Nb5-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615364731101024256\/PnU-Nb5-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744205488\/1440604544","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mapomapo1107","name":"\u4e09\u91cd\u91ce\u771f\u5e06","id":803741316,"id_str":"803741316","indices":[6,19]},{"screen_name":"kamisamaigapyon","name":"\u3044\u304c\u3074\u3087\u3093","id":897070897,"id_str":"897070897","indices":[20,36]}],"symbols":[],"media":[{"id":663677142031425536,"id_str":"663677142031425536","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","url":"https:\/\/t.co\/278zgWeW3b","display_url":"pic.twitter.com\/278zgWeW3b","expanded_url":"http:\/\/twitter.com\/xxx8131\/status\/663677181143310336\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663677142031425536,"id_str":"663677142031425536","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","url":"https:\/\/t.co\/278zgWeW3b","display_url":"pic.twitter.com\/278zgWeW3b","expanded_url":"http:\/\/twitter.com\/xxx8131\/status\/663677181143310336\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/640x360\/ulSNuWDCpBIvoEgD.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/320x180\/UldY4LqYxcyBa923.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/pl\/teWAV62x_x97mC1T.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/640x360\/ulSNuWDCpBIvoEgD.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/pl\/teWAV62x_x97mC1T.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xxx8131","name":"narumi kaho","id":744205488,"id_str":"744205488","indices":[3,11]},{"screen_name":"mapomapo1107","name":"\u4e09\u91cd\u91ce\u771f\u5e06","id":803741316,"id_str":"803741316","indices":[19,32]},{"screen_name":"kamisamaigapyon","name":"\u3044\u304c\u3074\u3087\u3093","id":897070897,"id_str":"897070897","indices":[33,49]}],"symbols":[],"media":[{"id":663677142031425536,"id_str":"663677142031425536","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","url":"https:\/\/t.co\/278zgWeW3b","display_url":"pic.twitter.com\/278zgWeW3b","expanded_url":"http:\/\/twitter.com\/xxx8131\/status\/663677181143310336\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663677181143310336,"source_status_id_str":"663677181143310336","source_user_id":744205488,"source_user_id_str":"744205488"}]},"extended_entities":{"media":[{"id":663677142031425536,"id_str":"663677142031425536","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663677142031425536\/pu\/img\/HE4jE3ONJc8Q-Ehr.jpg","url":"https:\/\/t.co\/278zgWeW3b","display_url":"pic.twitter.com\/278zgWeW3b","expanded_url":"http:\/\/twitter.com\/xxx8131\/status\/663677181143310336\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663677181143310336,"source_status_id_str":"663677181143310336","source_user_id":744205488,"source_user_id_str":"744205488","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/640x360\/ulSNuWDCpBIvoEgD.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/320x180\/UldY4LqYxcyBa923.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/pl\/teWAV62x_x97mC1T.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/vid\/640x360\/ulSNuWDCpBIvoEgD.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663677142031425536\/pu\/pl\/teWAV62x_x97mC1T.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080021658"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617973248,"id_str":"663727833617973248","text":"Dang, I wonder if my dad will let me go to Korea for the svt concert. I mean it is during the break, I won't have school","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3407929131,"id_str":"3407929131","name":"vernon's trap queen","screen_name":"pixarhansol","location":"TX","url":"http:\/\/w.tt\/1Rkzif0","description":"|@pixarjisoo| I am what I spit I don't produce fake shit","protected":false,"verified":false,"followers_count":487,"friends_count":166,"listed_count":0,"favourites_count":3562,"statuses_count":7029,"created_at":"Sat Aug 08 00:27:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663060109342347264\/9Z1JtXYm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663060109342347264\/9Z1JtXYm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407929131\/1446823200","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021658"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647202305,"id_str":"663727833647202305","text":"RT @1TD: \"I can twerk...\" https:\/\/t.co\/XKtkJeEIS6","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1674962310,"id_str":"1674962310","name":"charlie puth \u270c","screen_name":"yxii_","location":"\u2708","url":"http:\/\/hati.tawar.com","description":"Go away .","protected":false,"verified":false,"followers_count":1828,"friends_count":1315,"listed_count":2,"favourites_count":2584,"statuses_count":76727,"created_at":"Fri Aug 16 06:35:35 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611834688362037248\/FXMEQ2rO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611834688362037248\/FXMEQ2rO.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214049514414080\/MEpu1lp0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214049514414080\/MEpu1lp0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1674962310\/1446555676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:21:36 +0000 2015","id":663451323606671360,"id_str":"663451323606671360","text":"\"I can twerk...\" https:\/\/t.co\/XKtkJeEIS6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21451687,"id_str":"21451687","name":"Tom Davies","screen_name":"1TD","location":"Wales, United Kingdom","url":"http:\/\/facebook.com\/daviess","description":"20 \u2022 instagram ~ tomdavies \u2022 snapchat ~ tomasdavies \u2022 sunshine, oceans, my campervan, friends, family and music \u2600\ufe0f\u2764\ufe0f turn on my notifications! :)","protected":false,"verified":false,"followers_count":116215,"friends_count":25439,"listed_count":648,"favourites_count":11025,"statuses_count":11415,"created_at":"Sat Feb 21 00:51:47 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660432129415913472\/G39TH5oq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660432129415913472\/G39TH5oq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21451687\/1446294085","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":663,"favorite_count":507,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663451322474225664,"id_str":"663451322474225664","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","url":"https:\/\/t.co\/XKtkJeEIS6","display_url":"pic.twitter.com\/XKtkJeEIS6","expanded_url":"http:\/\/twitter.com\/1TD\/status\/663451323606671360\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":350,"resize":"fit"},"medium":{"w":300,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663451322474225664,"id_str":"663451322474225664","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","url":"https:\/\/t.co\/XKtkJeEIS6","display_url":"pic.twitter.com\/XKtkJeEIS6","expanded_url":"http:\/\/twitter.com\/1TD\/status\/663451323606671360\/photo\/1","type":"animated_gif","sizes":{"small":{"w":300,"h":350,"resize":"fit"},"medium":{"w":300,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":350,"resize":"fit"}},"video_info":{"aspect_ratio":[6,7],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUNdnHW4AAXBXI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1TD","name":"Tom Davies","id":21451687,"id_str":"21451687","indices":[3,7]}],"symbols":[],"media":[{"id":663451322474225664,"id_str":"663451322474225664","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","url":"https:\/\/t.co\/XKtkJeEIS6","display_url":"pic.twitter.com\/XKtkJeEIS6","expanded_url":"http:\/\/twitter.com\/1TD\/status\/663451323606671360\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":350,"resize":"fit"},"medium":{"w":300,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":350,"resize":"fit"}},"source_status_id":663451323606671360,"source_status_id_str":"663451323606671360","source_user_id":21451687,"source_user_id_str":"21451687"}]},"extended_entities":{"media":[{"id":663451322474225664,"id_str":"663451322474225664","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUNdnHW4AAXBXI.png","url":"https:\/\/t.co\/XKtkJeEIS6","display_url":"pic.twitter.com\/XKtkJeEIS6","expanded_url":"http:\/\/twitter.com\/1TD\/status\/663451323606671360\/photo\/1","type":"animated_gif","sizes":{"small":{"w":300,"h":350,"resize":"fit"},"medium":{"w":300,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":350,"resize":"fit"}},"source_status_id":663451323606671360,"source_status_id_str":"663451323606671360","source_user_id":21451687,"source_user_id_str":"21451687","video_info":{"aspect_ratio":[6,7],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUNdnHW4AAXBXI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021665"} +{"delete":{"status":{"id":663723094062850048,"id_str":"663723094062850048","user_id":2285217102,"user_id_str":"2285217102"},"timestamp_ms":"1447080021766"}} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617932288,"id_str":"663727833617932288","text":"Spotlight with iMerciv: Feel the Buzz! Not the Bump! https:\/\/t.co\/78RBFjmrvo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3007314776,"id_str":"3007314776","name":"MXS","screen_name":"MainstreamXS","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":206,"friends_count":170,"listed_count":1,"favourites_count":5,"statuses_count":529,"created_at":"Mon Feb 02 00:16:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/78RBFjmrvo","expanded_url":"https:\/\/www.coolblindtech.com\/spotlight-with-imerciv-feel-the-buzz-not-the-bump\/","display_url":"coolblindtech.com\/spotlight-with\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021658"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613635584,"id_str":"663727833613635584","text":"@imellasanandres may snapchat ka po ba?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":257719561,"in_reply_to_user_id_str":"257719561","in_reply_to_screen_name":"imellasanandres","user":{"id":2955480542,"id_str":"2955480542","name":"tepteptep","screen_name":"tep_mendoza","location":null,"url":"http:\/\/fb.com\/tep.mendoza","description":"foodie","protected":false,"verified":false,"followers_count":45,"friends_count":149,"listed_count":1,"favourites_count":421,"statuses_count":236,"created_at":"Fri Jan 02 02:36:37 +0000 2015","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645373589055639552\/8eQP-zsv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645373589055639552\/8eQP-zsv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955480542\/1430564871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imellasanandres","name":"Ella San Andres","id":257719561,"id_str":"257719561","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647341568,"id_str":"663727833647341568","text":"RT @HIFOON: \u0627\u0646\u062f\u0646\u0648\u0633\u064a\u0627 - \u0628\u0627\u0644\u064a _Nusa Dua beach \u0634\u0627\u0637\u064a\u0621 \u0646\u0648\u0633\u0648 \u062f\u0627\u0648\u0627 \u0645\u0646 \u0627\u062c\u0645\u0644 \u0648\u0623\u0647\u062f\u0649 \u0634\u0648\u0627\u0637\u0626 \u0628\u0627\u0644\u064a \u2764\ufe0f https:\/\/t.co\/euRHCEym0u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1245227246,"id_str":"1245227246","name":"\u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0627\u0644\u0645\u062c\u0631\u0627\u062f","screen_name":"abdulrhman5693","location":"\u062d\u0627\u0626\u0644","url":null,"description":"\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0644\u0644\u0647 \u0645\u062d\u0645\u062f \u0631\u0633\u0648\u0644 \u0627\u0644\u0644\u0647 \u060c\u060c \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 ..\u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0648\u0623\u062a\u0648\u0628 \u0627\u0644\u064a\u0647 \u0644\u0627\u062d\u0648\u0644 \u0648\u0644\u0627\u0642\u0648\u0629 \u0627\u0644\u0627 \u0628\u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0644\u064a \u0627\u0644\u0642\u062f\u064a\u0631 \u0627\u0644\u062a\u0648\u0627\u0628 \u0627\u0644\u0631\u062d\u064a\u0645 \u0645\u0646 \u0643\u0644 \u0630\u0646\u0628 \u0639\u0638\u064a\u0645 \u060c\u060c\u0627\u0644\u0644\u0647 \u0627\u0643\u0628\u0631 .. \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":1072,"friends_count":1340,"listed_count":1,"favourites_count":3798,"statuses_count":6130,"created_at":"Wed Mar 06 04:08:39 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615691985987371008\/gBTP6nTg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615691985987371008\/gBTP6nTg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245227246\/1442271997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 10:16:11 +0000 2015","id":662574189430358016,"id_str":"662574189430358016","text":"\u0627\u0646\u062f\u0646\u0648\u0633\u064a\u0627 - \u0628\u0627\u0644\u064a _Nusa Dua beach \u0634\u0627\u0637\u064a\u0621 \u0646\u0648\u0633\u0648 \u062f\u0627\u0648\u0627 \u0645\u0646 \u0627\u062c\u0645\u0644 \u0648\u0623\u0647\u062f\u0649 \u0634\u0648\u0627\u0637\u0626 \u0628\u0627\u0644\u064a \u2764\ufe0f https:\/\/t.co\/euRHCEym0u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83533494,"id_str":"83533494","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0623\u0631\u0627\u0645\u0643\u0648","screen_name":"HIFOON","location":"Saudi Arabia - Jeddah - ARAMCO","url":"http:\/\/www.flickriver.com\/photos\/hifoon\/popular-interesting\/","description":"#private #personal #account \u0623\u0628\u0648 \u0645\u0647\u0646\u062f #\u0645\u062d\u0645\u062f #\u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0645\u0648\u0638\u0641 #\u0627\u0631\u0627\u0645\u0643\u0648 #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 #aramco #\u0627\u0644\u0639\u0644\u0627\u0642\u0627\u062a #\u0627\u0644\u062d\u0643\u0648\u0645\u064a\u0629 #\u062c\u062f\u0629 #\u062d\u0633\u0627\u0628 #\u0634\u062e\u0635\u064a #\u062e\u0627\u0635 \u0644\u0627\u064a\u062e\u0635 #\u0634\u0631\u0643\u0629 #\u0623\u0631\u0627\u0645\u0643\u0648","protected":false,"verified":false,"followers_count":39716,"friends_count":601,"listed_count":13,"favourites_count":3255,"statuses_count":22772,"created_at":"Mon Oct 19 05:57:18 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D8EA8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653514990750695424\/7PDIHbkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653514990750695424\/7PDIHbkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83533494\/1446748373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662570318737874945,"id_str":"662570318737874945","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","url":"https:\/\/t.co\/euRHCEym0u","display_url":"pic.twitter.com\/euRHCEym0u","expanded_url":"http:\/\/twitter.com\/Passport\/status\/662570318918238213\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":662570318918238213,"source_status_id_str":"662570318918238213","source_user_id":1040463757,"source_user_id_str":"1040463757"}]},"extended_entities":{"media":[{"id":662570318737874945,"id_str":"662570318737874945","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","url":"https:\/\/t.co\/euRHCEym0u","display_url":"pic.twitter.com\/euRHCEym0u","expanded_url":"http:\/\/twitter.com\/Passport\/status\/662570318918238213\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":662570318918238213,"source_status_id_str":"662570318918238213","source_user_id":1040463757,"source_user_id_str":"1040463757"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HIFOON","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0623\u0631\u0627\u0645\u0643\u0648","id":83533494,"id_str":"83533494","indices":[3,10]}],"symbols":[],"media":[{"id":662570318737874945,"id_str":"662570318737874945","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","url":"https:\/\/t.co\/euRHCEym0u","display_url":"pic.twitter.com\/euRHCEym0u","expanded_url":"http:\/\/twitter.com\/Passport\/status\/662570318918238213\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":662570318918238213,"source_status_id_str":"662570318918238213","source_user_id":1040463757,"source_user_id_str":"1040463757"}]},"extended_entities":{"media":[{"id":662570318737874945,"id_str":"662570318737874945","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHsMccWoAEnVc4.jpg","url":"https:\/\/t.co\/euRHCEym0u","display_url":"pic.twitter.com\/euRHCEym0u","expanded_url":"http:\/\/twitter.com\/Passport\/status\/662570318918238213\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":589,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":662570318918238213,"source_status_id_str":"662570318918238213","source_user_id":1040463757,"source_user_id_str":"1040463757"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647190017,"id_str":"663727833647190017","text":"RT @Terra_Earth_: \u58c1\u30c9\u30f3 https:\/\/t.co\/MinBumAT30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2240059446,"id_str":"2240059446","name":"\u305f\u307e\u3075\u3041\u3093","screen_name":"22phantama","location":null,"url":null,"description":"pso2ship4 \u304b\u306b\u3067\u751f\u6d3b\u3057\u3066\u307e\u3059\u6700\u8fd1FF14\u59cb\u3081\u307e\u3057\u305f\u30d5\u30a7\u30f3\u30ea\u30eb\u9bd6Tama Phan","protected":false,"verified":false,"followers_count":121,"friends_count":121,"listed_count":6,"favourites_count":1591,"statuses_count":11250,"created_at":"Wed Dec 11 02:25:16 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641889615075348480\/Fnfjnj5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641889615075348480\/Fnfjnj5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240059446\/1411648220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:49 +0000 2015","id":663726692549066753,"id_str":"663726692549066753","text":"\u58c1\u30c9\u30f3 https:\/\/t.co\/MinBumAT30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2456504658,"id_str":"2456504658","name":"\u30a2\u30b9\u30c6\u30e9_ship1@KHUx","screen_name":"Terra_Earth_","location":"Ship1 Ship8","url":null,"description":"\u30d5\u30a9\u30ed\u30fc\u306f\u6c17\u8efd\u306b\u3069\u3046\u305e!! \u30d7\u30ec\u30a4\u4e2d\u306e\u30b2\u30fc\u30e0 PSO2\/KHUx(\u30e6\u30cb\u30b3\u30fc\u30f3)\/\u30de\u30a4\u30af\u30e9VITA\/ \u30c4\u30a4\u30d7\u30ed http:\/\/twpf.jp\/Terra_Earth_","protected":false,"verified":false,"followers_count":376,"friends_count":356,"listed_count":8,"favourites_count":1545,"statuses_count":18297,"created_at":"Mon Apr 21 12:06:20 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"E5A323","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637592887635505152\/5wzh_8I3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637592887635505152\/5wzh_8I3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2456504658\/1442840276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726690858762240,"id_str":"663726690858762240","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","url":"https:\/\/t.co\/MinBumAT30","display_url":"pic.twitter.com\/MinBumAT30","expanded_url":"http:\/\/twitter.com\/Terra_Earth_\/status\/663726692549066753\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726690858762240,"id_str":"663726690858762240","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","url":"https:\/\/t.co\/MinBumAT30","display_url":"pic.twitter.com\/MinBumAT30","expanded_url":"http:\/\/twitter.com\/Terra_Earth_\/status\/663726692549066753\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Terra_Earth_","name":"\u30a2\u30b9\u30c6\u30e9_ship1@KHUx","id":2456504658,"id_str":"2456504658","indices":[3,16]}],"symbols":[],"media":[{"id":663726690858762240,"id_str":"663726690858762240","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","url":"https:\/\/t.co\/MinBumAT30","display_url":"pic.twitter.com\/MinBumAT30","expanded_url":"http:\/\/twitter.com\/Terra_Earth_\/status\/663726692549066753\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663726692549066753,"source_status_id_str":"663726692549066753","source_user_id":2456504658,"source_user_id_str":"2456504658"}]},"extended_entities":{"media":[{"id":663726690858762240,"id_str":"663726690858762240","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6KSVAAAP2St.jpg","url":"https:\/\/t.co\/MinBumAT30","display_url":"pic.twitter.com\/MinBumAT30","expanded_url":"http:\/\/twitter.com\/Terra_Earth_\/status\/663726692549066753\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663726692549066753,"source_status_id_str":"663726692549066753","source_user_id":2456504658,"source_user_id_str":"2456504658"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617862660,"id_str":"663727833617862660","text":"\u5e30\u3063\u305f\u305e\u30fc\u3044\u3002\u30c8\u30a4\u30ec\u884c\u3063\u3066\u98a8\u5442\u5165\u3063\u3066\u5bdd\u308b\u3063","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192101720,"id_str":"192101720","name":"\u307e\u308b\u305f\u306e\u3042\u3059\u3058\u308d\u3046","screen_name":"Taaa_MARU","location":"\u3068\u3042\u308b\u6d77\u306e\u8fd1\u304f\u306e\u7530\u820e\u753a","url":null,"description":"ODW\u9ad8\u6821(66\u671f) \u3002TMGW\u5927\u5b66\u5de5\u5b66\u90e8SS\u79d1\u3002 \u30b7\u30f3\u30af\u30ed\u3057\u305f\u308a\u3001\u821e\u3063\u305f\u308a\u3001\u7be0\u7b1b\u5439\u3044\u305f\u308a\u3001\u5deb\u5973\u3060\u3063\u305f\u308a\u3002http:\/\/twpf.jp\/Taaa_MARU","protected":false,"verified":false,"followers_count":145,"friends_count":185,"listed_count":4,"favourites_count":398,"statuses_count":6711,"created_at":"Sat Sep 18 05:22:22 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522170038627745792\/17g8CpvO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522170038627745792\/17g8CpvO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192101720\/1413594126","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ff72a1c885de5a00","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ff72a1c885de5a00.json","place_type":"city","name":"\u5927\u78ef\u753a","full_name":"\u795e\u5948\u5ddd\u770c \u5927\u78ef\u753a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.251544,35.297214],[139.251544,35.331242],[139.332764,35.331242],[139.332764,35.297214]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021658"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833626226688,"id_str":"663727833626226688","text":"\u30c7\u30b9\u30ce\u30fc\u30c8 \u5c71\u5d0e\u8ce2\u4eba\u306f\u3044\u3058\u3089\u308c\u30ad\u30e3\u30e9? L\u3063\u307d\u304f\u306a\u3044\u6027\u683c https:\/\/t.co\/IIZ6rXY62R","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3704667145,"id_str":"3704667145","name":"\u5c71\u5d0e\u8ce2\u4eba\u30d5\u30a1\u30f3","screen_name":"l0064yamazaki","location":null,"url":null,"description":"\u3044\u308d\u3044\u308d\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3084\u308a\u53d6\u308a\u3057\u305f\u3044\u3093\u3067\u30e8\u30ed\u30b7\u30af\u306dv(^\u25bd^)v","protected":false,"verified":false,"followers_count":145,"friends_count":237,"listed_count":1,"favourites_count":0,"statuses_count":3400,"created_at":"Sun Sep 27 14:43:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648856766193643521\/Fw-nH7jB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648856766193643521\/Fw-nH7jB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3704667145\/1443534504","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IIZ6rXY62R","expanded_url":"http:\/\/musiclife19722.seesaa.net\/","display_url":"musiclife19722.seesaa.net","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021660"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833634574338,"id_str":"663727833634574338","text":"Al Roker got a flat tire between Spokane and Missoula and had to stop in St. Regis. I smell a conspiracy, @JPBlanchette","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175179993,"id_str":"175179993","name":"Fritz Neighbor","screen_name":"Fritz_Neighbor","location":"Missoula, Mont.","url":null,"description":"Small-town Montanan, #KCRoyals fan, sports writer.","protected":false,"verified":false,"followers_count":1610,"friends_count":1050,"listed_count":40,"favourites_count":6558,"statuses_count":10875,"created_at":"Thu Aug 05 21:09:55 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488947284\/steer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488947284\/steer_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175179993\/1446593660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JPBlanchette","name":"John Blanchette","id":214654106,"id_str":"214654106","indices":[106,119]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021662"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833651372032,"id_str":"663727833651372032","text":"I've never been this dependent on another person by choice","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25674187,"id_str":"25674187","name":"Fran","screen_name":"franlagmay","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":697,"friends_count":490,"listed_count":1,"favourites_count":9118,"statuses_count":35360,"created_at":"Sat Mar 21 13:45:22 +0000 2009","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158883764\/fkUQxNZP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158883764\/fkUQxNZP.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659995374002679808\/e4y3TO0b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659995374002679808\/e4y3TO0b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25674187\/1446316042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021666"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647214592,"id_str":"663727833647214592","text":"RT @kooo_sy: \u512a\u3057\u304f\u3066\u672c\u97f3\u3092\u8a00\u3048\u306a\u3044\u30ab\u30e9\u677e\u306e\u6551\u6e08\u30cd\u30bf\u3067\u3059 https:\/\/t.co\/MlDdRXkXdX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4178378714,"id_str":"4178378714","name":"\u304d\u3085\u308b\u677e@\u304a\u305d\u677e\u5c02\u7528\u30a2\u30ab","screen_name":"osomatu123456","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":44,"listed_count":0,"favourites_count":118,"statuses_count":113,"created_at":"Mon Nov 09 10:47:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663682032283717632\/-zUAbuuy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663682032283717632\/-zUAbuuy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4178378714\/1447069089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 10:13:31 +0000 2015","id":661848742975291392,"id_str":"661848742975291392","text":"\u512a\u3057\u304f\u3066\u672c\u97f3\u3092\u8a00\u3048\u306a\u3044\u30ab\u30e9\u677e\u306e\u6551\u6e08\u30cd\u30bf\u3067\u3059 https:\/\/t.co\/MlDdRXkXdX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2481000332,"id_str":"2481000332","name":"\u9065","screen_name":"kooo_sy","location":"\u516d\u3064\u5b50\u5f1f\u7d44\u7bb1\u63a8\u3057\u2661\u30c8\u30c9\u305f\u3083\u8d14\u5c53","url":null,"description":"\u30a4\u30e9\u30b9\u30c8\u3092\u7121\u65ad\u3067\u4f7f\u7528\u3001\u8ee2\u8f09\u3059\u308b\u306e\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u307e\u3057\uff3fFRB\u3054\u81ea\u7531\u306b\uff01\u6027\u7656\u57a2@kooo__sy \u5275\u4f5c\u57a2@escmmr\uff0f\u9023\u7d61\u306f\u3053\u3061\u3089\u306b\u304a\u9858\u3044\u3057\u307e\u3059escmmr@gmail.com","protected":false,"verified":false,"followers_count":3991,"friends_count":102,"listed_count":93,"favourites_count":14980,"statuses_count":43501,"created_at":"Wed May 07 01:38:50 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656900081421910016\/o8gUMeyw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656900081421910016\/o8gUMeyw.png","profile_background_tile":true,"profile_link_color":"EDCACB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662196243540545536\/cqJWlW-a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662196243540545536\/cqJWlW-a_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":931,"favorite_count":2358,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661848741368885249,"id_str":"661848741368885249","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","url":"https:\/\/t.co\/MlDdRXkXdX","display_url":"pic.twitter.com\/MlDdRXkXdX","expanded_url":"http:\/\/twitter.com\/kooo_sy\/status\/661848742975291392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":761,"h":900,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661848741368885249,"id_str":"661848741368885249","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","url":"https:\/\/t.co\/MlDdRXkXdX","display_url":"pic.twitter.com\/MlDdRXkXdX","expanded_url":"http:\/\/twitter.com\/kooo_sy\/status\/661848742975291392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":761,"h":900,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kooo_sy","name":"\u9065","id":2481000332,"id_str":"2481000332","indices":[3,11]}],"symbols":[],"media":[{"id":661848741368885249,"id_str":"661848741368885249","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","url":"https:\/\/t.co\/MlDdRXkXdX","display_url":"pic.twitter.com\/MlDdRXkXdX","expanded_url":"http:\/\/twitter.com\/kooo_sy\/status\/661848742975291392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":761,"h":900,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"}},"source_status_id":661848742975291392,"source_status_id_str":"661848742975291392","source_user_id":2481000332,"source_user_id_str":"2481000332"}]},"extended_entities":{"media":[{"id":661848741368885249,"id_str":"661848741368885249","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9b7HRU8AEkfP6.png","url":"https:\/\/t.co\/MlDdRXkXdX","display_url":"pic.twitter.com\/MlDdRXkXdX","expanded_url":"http:\/\/twitter.com\/kooo_sy\/status\/661848742975291392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":761,"h":900,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"}},"source_status_id":661848742975291392,"source_status_id_str":"661848742975291392","source_user_id":2481000332,"source_user_id_str":"2481000332"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613668354,"id_str":"663727833613668354","text":"@IzuminPerc \n\u3059\u308b\u3059\u308b\u30fc\uff01\n\u79c1\u3082\u611b\u77e5\u884c\u304d\u305f\u3044\u306a\u30fc\u7b11\u6848\u5185\u3057\u3066\ud83d\ude4b\ud83d\ude4b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663702498490740736,"in_reply_to_status_id_str":"663702498490740736","in_reply_to_user_id":3425872812,"in_reply_to_user_id_str":"3425872812","in_reply_to_screen_name":"IzuminPerc","user":{"id":2166878444,"id_str":"2166878444","name":"\u82fa\u738b\u5b50@\u6dbc\u590f\u2205\uff65*:\uff61\u2721*:\uff9f","screen_name":"love_rxxxxxxx","location":"JUMPingCARnival in\u6a2a\u30a2\u30ea\u301c10\/10\u301c","url":null,"description":"JK2\/Hey!Say!JUMP\u5c71\u7530\u62c5\u3088\u308a\u306eall\u62c5\/\u76f8\u4e92\u5e0c\u671b\/ \u30d5\u30a9\u30ed\u30d0\u7387509% \u25cbJUMP\u25cb\u6dbc\u4ecb\u304f\u3093\u25cb\u3084\u307e\u3061\u306d\u25cb\u3084\u307e\u3086\u3068\u25cb\u3042\u308a\u3084\u307e\u25cb\u3061\u3073\u30fc\u305a\u25cb\u76f8\u4e92\u57a2\u2192@jump_ry_1502S_G","protected":false,"verified":false,"followers_count":1301,"friends_count":1751,"listed_count":0,"favourites_count":193,"statuses_count":1195,"created_at":"Thu Oct 31 16:19:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629657777682526208\/z-uxaJeS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629657777682526208\/z-uxaJeS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2166878444\/1444876334","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IzuminPerc","name":"\u30c0\u30cb\u30a8\u30eb\u7523\u25b7\u65b0\u7c73\u3010\u3068\u3081\u307f\u3093\u3066\u3043\u3011","id":3425872812,"id_str":"3425872812","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833622011905,"id_str":"663727833622011905","text":"RT @VicctoriaaLynnn: S\/O to @brileybeck for the sweet ass donuts. \ud83d\udc95 happy birthday week my friend :-)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2501595590,"id_str":"2501595590","name":"bri","screen_name":"brileybeck","location":null,"url":"http:\/\/instagram.com\/brileybeck","description":null,"protected":false,"verified":false,"followers_count":1424,"friends_count":989,"listed_count":2,"favourites_count":14226,"statuses_count":11065,"created_at":"Sat May 17 13:42:08 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662856806029352960\/3UidVM26_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662856806029352960\/3UidVM26_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501595590\/1446175255","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:14 +0000 2015","id":663726293704396800,"id_str":"663726293704396800","text":"S\/O to @brileybeck for the sweet ass donuts. \ud83d\udc95 happy birthday week my friend :-)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82223329,"id_str":"82223329","name":"Blacklist Vic","screen_name":"VicctoriaaLynnn","location":null,"url":null,"description":"shh, this is my favorite part \/\/","protected":false,"verified":false,"followers_count":608,"friends_count":298,"listed_count":8,"favourites_count":33484,"statuses_count":33873,"created_at":"Tue Oct 13 23:39:01 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7EFF7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167140620\/fBkSQNma.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167140620\/fBkSQNma.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B21EBD","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648707072285011969\/-KLWf1vm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648707072285011969\/-KLWf1vm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82223329\/1438206627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brileybeck","name":"bri","id":2501595590,"id_str":"2501595590","indices":[7,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VicctoriaaLynnn","name":"Blacklist Vic","id":82223329,"id_str":"82223329","indices":[3,19]},{"screen_name":"brileybeck","name":"bri","id":2501595590,"id_str":"2501595590","indices":[28,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021659"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647202306,"id_str":"663727833647202306","text":"\u6b63\u9762\u306b\u3081\u3063\u3061\u3083\u6cb3\u5317\u9ebb\u8863\u5b50\u306b\u4f3c\u3066\u308b\u4eba\u5ea7\u3063\u3066\u308b\u304b\u308f\u3044\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2439573740,"id_str":"2439573740","name":"\u91ce\u6fa4\u3068\u3082\u3084","screen_name":"no_tmy","location":"\u6c5f\u5225","url":null,"description":"\u5927\u9ebb\u9ad8\u6821\u2192\u5317\u6d77\u5b66\u5712\u59271\u5e74 \u30b5\u30c3\u30ab\u30fc \u30d5\u30c3\u30c8\u30b5\u30eb \u30c8\u30d7\u753b\u53f3","protected":false,"verified":false,"followers_count":250,"friends_count":241,"listed_count":0,"favourites_count":733,"statuses_count":6682,"created_at":"Sat Apr 12 05:45:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643262461198337\/1pVH_-o1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643262461198337\/1pVH_-o1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2439573740\/1444074107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833642962946,"id_str":"663727833642962946","text":"@IasuraI \uc870\uae08 \ub35c \ubcd1\uc2e0\uac19\uc740 \ub370\ub294 \uadf8\ub798\ub3c4 \uc815\uaddc\uc9c1 \uc804\ud658\uc740 \ub9c8\ub2c8 \uc2dc\ucf1c\uc8fc\ub2c8\uaed8\u3147\u3147 \uc815\uaddc\uc9c1\uc774 \ub418\uace0\ub09c \ud6c4\uc758 \ud68c\uc0ac\uc758 \ubcd1\uc2e0\uc9d3\uc774\ub77c\ub358\uac00... \uc774\ub7f0 \uac8c \uc887\ub3c4 \uac70\uc9c0\uac19\uc744 \ubfd0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727287964073984,"in_reply_to_status_id_str":"663727287964073984","in_reply_to_user_id":3069169748,"in_reply_to_user_id_str":"3069169748","in_reply_to_screen_name":"IasuraI","user":{"id":2974400604,"id_str":"2974400604","name":"\uae40\ud639","screen_name":"O_takoo","location":"sm ent.","url":null,"description":"\uc9c4\uae30\uc57c \ub9c8\ub2c8 \uba39\uaf2c \uac74\uac15\ud574\uc57c\ud55c\ub2e4","protected":false,"verified":false,"followers_count":24,"friends_count":155,"listed_count":2,"favourites_count":1533,"statuses_count":5678,"created_at":"Sun Jan 11 08:31:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629672472053321728\/0ckfm5qJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629672472053321728\/0ckfm5qJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974400604\/1438960649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IasuraI","name":"\ubc1c\ub4f1\uc5d0\ubd88\ub5a8\uc5b4\uc9c4\uc218\ub791","id":3069169748,"id_str":"3069169748","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833651372033,"id_str":"663727833651372033","text":"RT @pmx003_the_o: \u300c\u85e4\u7530\u541b\u306f\u767e\u5f0f\u306b\u30af\u30ea\u30f3\u30ca\u30c3\u30d7\u3057\u3066\u300d\u3063\u3066\u6c38\u91ce\u8b77\u304c\u767a\u8a00\u3057\u3066\u308b\u753b\u50cf\u8cbc\u3063\u305f\u30c4\u30a4\u30fc\u30c8\u306b\u3001\u300c\u767e\u5f0f\u306f\u30af\u30ea\u30f3\u30ca\u30c3\u30d7\u3082\u6c38\u91ce\u8b77\u304c\u624b\u304c\u3051\u3066\u3044\u307e\u3059\u300d\u3063\u3066\u30ea\u30d7\u3059\u308b\u5ea6\u80f8\u7d20\u6674\u3089\u3057\u3044\u3088\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4030901,"id_str":"4030901","name":"\u8af8\u661f\u53cb\u90ce\uff0f\u30b4\u30ba\u30de\u661f\u4e38\uff0f\u30c8\u30e2\u30ed\u30c3\u30af\u30b9","screen_name":"tomorox","location":"Japan","url":"http:\/\/www.hf.rim.or.jp\/~morrow\/","description":"MOROBOSHI, Tomorou. \u7279\u64ae\u30d2\u30fc\u30ed\u30fc\u3068\u96fb\u5b50\u30ac\u30b8\u30a7\u30c3\u30c8\u3068\u6587\u623f\u5177\u304c\u597d\u304d\u306a\u7406\u7cfb\u306e\u30aa\u30c3\u30b5\u30f3\u3002\u30e2\u30e2\u30fc\u30a4\u3068\u30a4\u30aa\u30b7\u30b9\u3068\u3001\u3067\u3093\u3071\u7d44inc\u306e\u30d5\u30a1\u30f3\u3002\u5225\u540d\uff1a\u30b4\u30ba\u30de\u661f\u4e38\u3001\u30aa\u30ba\u30de\u661f\u4e38\u3002\u30c8\u30e2\u30ed\u30c3\u30af\u30b9\u3002 http:\/\/mixi.jp\/show_friend.pl?id=6","protected":false,"verified":false,"followers_count":1182,"friends_count":1248,"listed_count":70,"favourites_count":89,"statuses_count":266678,"created_at":"Tue Apr 10 13:42:06 +0000 2007","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570782\/2007-0318___s.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570782\/2007-0318___s.jpg","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000734823081\/ff9974337506e872992d9162611b42a4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000734823081\/ff9974337506e872992d9162611b42a4_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:54:56 +0000 2015","id":663580508194865152,"id_str":"663580508194865152","text":"\u300c\u85e4\u7530\u541b\u306f\u767e\u5f0f\u306b\u30af\u30ea\u30f3\u30ca\u30c3\u30d7\u3057\u3066\u300d\u3063\u3066\u6c38\u91ce\u8b77\u304c\u767a\u8a00\u3057\u3066\u308b\u753b\u50cf\u8cbc\u3063\u305f\u30c4\u30a4\u30fc\u30c8\u306b\u3001\u300c\u767e\u5f0f\u306f\u30af\u30ea\u30f3\u30ca\u30c3\u30d7\u3082\u6c38\u91ce\u8b77\u304c\u624b\u304c\u3051\u3066\u3044\u307e\u3059\u300d\u3063\u3066\u30ea\u30d7\u3059\u308b\u5ea6\u80f8\u7d20\u6674\u3089\u3057\u3044\u3088\u306a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1831689283,"id_str":"1831689283","name":"THE-O\uff20EX-REVUE\u3057\u305f\u3044\u30de\u30f3","screen_name":"pmx003_the_o","location":"\u30a2\u30fb\u30d0\u30aa\u30a2\u30fb\u30af\u30fc","url":"http:\/\/ex-revue.com\/","description":"\u30ac\u30f3\u30c0\u30e0\u3068\u540c\u3044\u5e74\u306e\u300c\u6a5f\u52d5\u6226\u58eb\u30ac\u30f3\u30c0\u30e0EX-REVUE\u300d\u304c\u597d\u304d\u306a\u304a\u3058\u3055\u3093\u3067\u3059\u3002\u8da3\u5473\u306fEX\u30ec\u30d3\u30e5\u30fc\u3068\u304bEX-REVUE\u3067Twitter\u691c\u7d22\u3057\u3066RT\u3059\u308b\u3053\u3068\u3002\u79d8\u5bc6\u53b3\u5b88\u3002\u7537\u6027\u540d\u5373\u5bc6\u846c\u3002\u8fd1\u89aa\u7e01\u8005\u306e\u307f\u3067\u3057\u3081\u3084\u304b\u306b\u57f7\u308a\u884c\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":387,"friends_count":566,"listed_count":9,"favourites_count":567,"statuses_count":52400,"created_at":"Sun Sep 08 16:51:19 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"2F2E56","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596531579473698816\/MxMqM3XF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596531579473698816\/MxMqM3XF.jpg","profile_background_tile":false,"profile_link_color":"FF0099","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"88BAB5","profile_text_color":"64A0AE","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656878343338377216\/KwSs2mcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656878343338377216\/KwSs2mcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1831689283\/1445447065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pmx003_the_o","name":"THE-O\uff20EX-REVUE\u3057\u305f\u3044\u30de\u30f3","id":1831689283,"id_str":"1831689283","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021666"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833651417088,"id_str":"663727833651417088","text":"RT @imymee_: #\u304f\u307e\u30e2\u30f3\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5802\u672c\u5149\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b https:\/\/t.co\/zOFfdSIFrh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2511861468,"id_str":"2511861468","name":"\u2742\u3061\u3085\u3046FUNK\u2742","screen_name":"2451_kinki","location":"\u26aa\u56f3\u66f8\u59d4\u54e1\u26aa \u274dshamanippon\u274d","url":null,"description":"\u2661KinKi Kids\u2661\u5802\u672c\u525b\u2661\u4e00\u7b4b\u3067\u304b\u3051\u3082\u3061\u3057\u3066\u307e\u305b\u3093\u260698\u5e74\u751f\u307e\u308c\u306e17\u624d\u2606\u3084\u3063\u3071\u308aftr\u4e00\u7dd2\u304c1\u756a\/KinKi\u5927\u597d\u304d\u2661\u8133\u518599\uff05KinKi\uff5e\u266a\/\u30bd\u30ed\u306f\u525b\u304f\u3093\/\u525b\u304f\u3093\u306e\u751f\u304d\u65b9\u3001\u4e16\u754c\u611f\u3001\u4f5c\u308a\u51fa\u3059\u97f3\u697dFUNK\/\u30d0\u30f3\u30e1\u30f3\u3055\u3093\u9054\u3068\u306e\u30b0\u30eb\u30fc\u30f4\u611f\u304b\u3063\u3053\u3088\u304f\u3066\u5927\u597d\u304d\u260610\/8 \u56fd\u969b\u30d5\u30a9\u30fc\u30e9\u30e0\u23e910\/15 TU\u301c\u82e6\u7b11","protected":false,"verified":false,"followers_count":298,"friends_count":119,"listed_count":8,"favourites_count":3672,"statuses_count":19953,"created_at":"Wed May 21 07:48:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638295142386941952\/aNH06rwJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638295142386941952\/aNH06rwJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2511861468\/1444230149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:14 +0000 2015","id":663726292672475136,"id_str":"663726292672475136","text":"#\u304f\u307e\u30e2\u30f3\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5802\u672c\u5149\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b https:\/\/t.co\/zOFfdSIFrh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2853088982,"id_str":"2853088982","name":"\u304b\u3053@\u4eac\u30bb\u30e9\u4e21\u65e5\u6c42","screen_name":"imymee_","location":null,"url":null,"description":"\u30ad\u30f3\u30ad\u3068\u30a8\u30a4\u30c8\u3067\u5fc3\u306e\u6d17\u6fef \u8ab0\u304b\u3075\u3049\uff5e\u3086\uff5e\u6cbc\u306b\u7a81\u304d\u843d\u3068\u3057\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":221,"friends_count":216,"listed_count":3,"favourites_count":8236,"statuses_count":12253,"created_at":"Sun Oct 12 11:41:41 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638747815955447808\/XqC6CKeF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638747815955447808\/XqC6CKeF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853088982\/1428514113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[{"text":"\u304f\u307e\u30e2\u30f3\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5802\u672c\u5149\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[0,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726259097079808,"id_str":"663726259097079808","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":704,"h":481,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726259097079808,"id_str":"663726259097079808","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":704,"h":481,"resize":"fit"}}},{"id":663726261785636864,"id_str":"663726261785636864","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhL3UsAAOyZl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhL3UsAAOyZl.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304f\u307e\u30e2\u30f3\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5802\u672c\u5149\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[13,47]}],"urls":[],"user_mentions":[{"screen_name":"imymee_","name":"\u304b\u3053@\u4eac\u30bb\u30e9\u4e21\u65e5\u6c42","id":2853088982,"id_str":"2853088982","indices":[3,11]}],"symbols":[],"media":[{"id":663726259097079808,"id_str":"663726259097079808","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":704,"h":481,"resize":"fit"}},"source_status_id":663726292672475136,"source_status_id_str":"663726292672475136","source_user_id":2853088982,"source_user_id_str":"2853088982"}]},"extended_entities":{"media":[{"id":663726259097079808,"id_str":"663726259097079808","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhB2UkAA2GOR.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":704,"h":481,"resize":"fit"}},"source_status_id":663726292672475136,"source_status_id_str":"663726292672475136","source_user_id":2853088982,"source_user_id_str":"2853088982"},{"id":663726261785636864,"id_str":"663726261785636864","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHhL3UsAAOyZl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHhL3UsAAOyZl.jpg","url":"https:\/\/t.co\/zOFfdSIFrh","display_url":"pic.twitter.com\/zOFfdSIFrh","expanded_url":"http:\/\/twitter.com\/imymee_\/status\/663726292672475136\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}},"source_status_id":663726292672475136,"source_status_id_str":"663726292672475136","source_user_id":2853088982,"source_user_id_str":"2853088982"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080021666"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647157249,"id_str":"663727833647157249","text":"@Kmf2Naho \n\n\u306a\u307b\u3061\u3083\u3093\u79d2\u30ea\u30c4\u3067\n\u5b09\u3057\u3059\u304e\u305f\ud83d\ude09\ud83d\udcad\ud83d\udc9e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727429320470528,"in_reply_to_status_id_str":"663727429320470528","in_reply_to_user_id":1427525311,"in_reply_to_user_id_str":"1427525311","in_reply_to_screen_name":"Kmf2Naho","user":{"id":3084230815,"id_str":"3084230815","name":"\u21ba \u2764\ufe0e \u305f\u3074\u5c71 (( 16\u65e5BD ))","screen_name":"__tapiyamasan","location":"\u2282*\uff40\u2200\u00b4\u2283 .\uff61o\uff08 \u2764\ufe0e \u30b9\u30ad\u3060\uff5e\uff6f\uff6f ! \uff09","url":"http:\/\/twpf.jp\/__tapiyamasan","description":"\u2282*\uff40\u2200\u00b4\u2283\uff1a\u5168\u7136\u6210\u9577\u671f\u304c\u6765\u306a\u3044\u306e\uff5e\uff01\u305f\u3074\u5c71\uff1a(\u00b4\u00b0\u03c9\u00b0`) \u029a 1.2.3 \u3061\u3085\u3069\uff5e\u3093\uff6f\uff6f ! \u025e \u3081\u308a\u8fbc\u307f\u3068\u7ae5\u9854\u304c\u5171\u901a\u70b9\u3002\u21b3 NEXT : \u9023\u52d5\uff72\uff8d\uff9ewith \u307e\u306a \u5f53\u9078\u7948\u9858 ______.\u2764\ufe0e\u2764\ufe0e","protected":false,"verified":false,"followers_count":1145,"friends_count":447,"listed_count":7,"favourites_count":17203,"statuses_count":26440,"created_at":"Sun Mar 15 08:42:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662987173398908928\/eNVGvl5r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662987173398908928\/eNVGvl5r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3084230815\/1446965246","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kmf2Naho","name":"\u2661 \u2661 \u201d \u85e4 \u30f6 \u8c37 \u306a \u307d \u3093","id":1427525311,"id_str":"1427525311","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833651552256,"id_str":"663727833651552256","text":"@sakusakusakura you may wish to pivot on the difference of being told to be offended & being advised its not ok for mainstream culture?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724849664098304,"in_reply_to_status_id_str":"663724849664098304","in_reply_to_user_id":19404232,"in_reply_to_user_id_str":"19404232","in_reply_to_screen_name":"sakusakusakura","user":{"id":4191161,"id_str":"4191161","name":"Jeff G!","screen_name":"geedeck","location":"Cbus, Ohio","url":"http:\/\/cargocollective.com\/geedeck\/","description":"I do stuff with technology, art or art and technology.","protected":false,"verified":false,"followers_count":464,"friends_count":579,"listed_count":32,"favourites_count":1648,"statuses_count":14398,"created_at":"Wed Apr 11 14:51:36 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545413143426387968\/Y6KvcFis_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545413143426387968\/Y6KvcFis_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4191161\/1398346019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakusakusakura","name":"sakusakusakura","id":19404232,"id_str":"19404232","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021666"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613758468,"id_str":"663727833613758468","text":"RT @PasionTricolor1: Recordemos que est\u00e1 abierta cuenta 1899 en @RedpagosOficial xa colaborar FUERZA @pulpoviera! https:\/\/t.co\/plrdIeaMHy h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2233648964,"id_str":"2233648964","name":"Colo Romero 19 \u2764","screen_name":"CamiNacional29","location":"Canelones,Uruguay","url":"https:\/\/www.facebook.com\/profile.php?id=100009479725283","description":"#Nacional #ManchesterCity #RiverPlate #ElFutbolEsMiVida \u26bd\u2764 #LaVidaPorNacional #FollowBack","protected":false,"verified":false,"followers_count":526,"friends_count":514,"listed_count":3,"favourites_count":3356,"statuses_count":15548,"created_at":"Fri Dec 06 23:23:22 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612480655000240128\/Z9tM4Wgo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612480655000240128\/Z9tM4Wgo.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659513274392776704\/BVn8WZNU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659513274392776704\/BVn8WZNU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2233648964\/1444699484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727509264011264,"id_str":"663727509264011264","text":"Recordemos que est\u00e1 abierta cuenta 1899 en @RedpagosOficial xa colaborar FUERZA @pulpoviera! https:\/\/t.co\/plrdIeaMHy https:\/\/t.co\/U6zXsA1GEz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262613536,"id_str":"262613536","name":"PASI\u00d3N TRICOLOR","screen_name":"PasionTricolor1","location":"Montevideo Uruguay","url":"http:\/\/www.pasiontricolor.com.uy","description":"TWITTER OFICIAL de Pasi\u00f3n Tricolor 1010 Am \nAL AIRE cada vez que juega Nacional, y de lunes a viernes de 19:30 a 21:00 hs con el programa.","protected":false,"verified":false,"followers_count":36749,"friends_count":371,"listed_count":111,"favourites_count":5614,"statuses_count":52209,"created_at":"Tue Mar 08 11:47:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085000122\/3c5c9eb7574f77fdbf0943da1c063f58.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085000122\/3c5c9eb7574f77fdbf0943da1c063f58.jpeg","profile_background_tile":true,"profile_link_color":"C20730","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000310242911\/5a9825ec81c6adc71db829cd31823553_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000310242911\/5a9825ec81c6adc71db829cd31823553_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/262613536\/1406202956","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/plrdIeaMHy","expanded_url":"http:\/\/pasiontricolor.com.uy\/noticias\/cuenta-n-1899-en-redpagos\/","display_url":"pasiontricolor.com.uy\/noticias\/cuent\u2026","indices":[93,116]}],"user_mentions":[{"screen_name":"RedpagosOficial","name":" Redpagos Oficial","id":1855169418,"id_str":"1855169418","indices":[43,59]},{"screen_name":"pulpoviera","name":"ALEXIS VIERA","id":277113936,"id_str":"277113936","indices":[80,91]}],"symbols":[],"media":[{"id":663727507171069953,"id_str":"663727507171069953","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","url":"https:\/\/t.co\/U6zXsA1GEz","display_url":"pic.twitter.com\/U6zXsA1GEz","expanded_url":"http:\/\/twitter.com\/PasionTricolor1\/status\/663727509264011264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":380,"resize":"fit"},"large":{"w":630,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727507171069953,"id_str":"663727507171069953","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","url":"https:\/\/t.co\/U6zXsA1GEz","display_url":"pic.twitter.com\/U6zXsA1GEz","expanded_url":"http:\/\/twitter.com\/PasionTricolor1\/status\/663727509264011264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":380,"resize":"fit"},"large":{"w":630,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/plrdIeaMHy","expanded_url":"http:\/\/pasiontricolor.com.uy\/noticias\/cuenta-n-1899-en-redpagos\/","display_url":"pasiontricolor.com.uy\/noticias\/cuent\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"PasionTricolor1","name":"PASI\u00d3N TRICOLOR","id":262613536,"id_str":"262613536","indices":[3,19]},{"screen_name":"RedpagosOficial","name":" Redpagos Oficial","id":1855169418,"id_str":"1855169418","indices":[64,80]},{"screen_name":"pulpoviera","name":"ALEXIS VIERA","id":277113936,"id_str":"277113936","indices":[101,112]}],"symbols":[],"media":[{"id":663727507171069953,"id_str":"663727507171069953","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","url":"https:\/\/t.co\/U6zXsA1GEz","display_url":"pic.twitter.com\/U6zXsA1GEz","expanded_url":"http:\/\/twitter.com\/PasionTricolor1\/status\/663727509264011264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":380,"resize":"fit"},"large":{"w":630,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}},"source_status_id":663727509264011264,"source_status_id_str":"663727509264011264","source_user_id":262613536,"source_user_id_str":"262613536"}]},"extended_entities":{"media":[{"id":663727507171069953,"id_str":"663727507171069953","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIprSWUAEggaA.jpg","url":"https:\/\/t.co\/U6zXsA1GEz","display_url":"pic.twitter.com\/U6zXsA1GEz","expanded_url":"http:\/\/twitter.com\/PasionTricolor1\/status\/663727509264011264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":380,"resize":"fit"},"large":{"w":630,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"}},"source_status_id":663727509264011264,"source_status_id_str":"663727509264011264","source_user_id":262613536,"source_user_id_str":"262613536"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833643094016,"id_str":"663727833643094016","text":"that he loves me too https:\/\/t.co\/uyq9UMlRKG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4047896059,"id_str":"4047896059","name":":-))","screen_name":"colassal5sauce","location":"11\/1\/15 ","url":null,"description":"@b00tykingh00d is my baby","protected":false,"verified":false,"followers_count":46,"friends_count":81,"listed_count":0,"favourites_count":41,"statuses_count":396,"created_at":"Wed Oct 28 15:30:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663383688214900736\/vHlhRRMO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663383688214900736\/vHlhRRMO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4047896059\/1446997928","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663419109992894464,"quoted_status_id_str":"663419109992894464","quoted_status":{"created_at":"Sun Nov 08 18:13:36 +0000 2015","id":663419109992894464,"id_str":"663419109992894464","text":"what do you like best about your crush?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9492,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uyq9UMlRKG","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663419109992894464","display_url":"twitter.com\/questionyrself\u2026","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638813700,"id_str":"663727833638813700","text":"@bonly1113 \u3046\u3093\u3042\u308a\u304c\u3068\u3046\u301c\uff01\u304a\u3084\u3059\u307f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727757449277440,"in_reply_to_status_id_str":"663727757449277440","in_reply_to_user_id":3766206619,"in_reply_to_user_id_str":"3766206619","in_reply_to_screen_name":"bonly1113","user":{"id":3499250184,"id_str":"3499250184","name":"\ubbfc\ubb49\uc774","screen_name":"MHyukXbot","location":null,"url":null,"description":"MONSTAX @OfficialMonstaX MINHYUK 1993.11.03","protected":false,"verified":false,"followers_count":90,"friends_count":91,"listed_count":0,"favourites_count":440,"statuses_count":7287,"created_at":"Wed Sep 09 02:06:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663610269642260480\/qzNA-3Mc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663610269642260480\/qzNA-3Mc_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bonly1113","name":"Sayaka\uff0e","id":3766206619,"id_str":"3766206619","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021663"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833634607104,"id_str":"663727833634607104","text":"RT @NotAHumanDronez: @Ayunions_FC @S_OktaJKT48 :) #PictWarAyunions https:\/\/t.co\/3qAdOK3W8a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3978437058,"id_str":"3978437058","name":"Samid","screen_name":"EpsGojekan","location":"Kota Madiun, East Java","url":"http:\/\/ndagel.com","description":"pemilik: Dimas Cahya | line:dimascah\/08563489055 | follback | ndagel orang nya |kocak bikin ngakak|","protected":false,"verified":false,"followers_count":52,"friends_count":260,"listed_count":2,"favourites_count":97,"statuses_count":2650,"created_at":"Thu Oct 22 09:03:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661591259912339456\/RyjyzCty_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661591259912339456\/RyjyzCty_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3978437058\/1447000080","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:40 +0000 2015","id":663726654510895105,"id_str":"663726654510895105","text":"@Ayunions_FC @S_OktaJKT48 :) #PictWarAyunions https:\/\/t.co\/3qAdOK3W8a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2299059619,"in_reply_to_user_id_str":"2299059619","in_reply_to_screen_name":"Ayunions_FC","user":{"id":1691686898,"id_str":"1691686898","name":"Achmad Nuzulian. F","screen_name":"NotAHumanDronez","location":"Indonesia","url":null,"description":null,"protected":false,"verified":false,"followers_count":218,"friends_count":434,"listed_count":0,"favourites_count":229,"statuses_count":9231,"created_at":"Thu Aug 22 17:43:33 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606211211856769024\/bmuMPABg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606211211856769024\/bmuMPABg.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660549189571473408\/VsW9aHzJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660549189571473408\/VsW9aHzJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1691686898\/1443806214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"PictWarAyunions","indices":[29,45]}],"urls":[],"user_mentions":[{"screen_name":"Ayunions_FC","name":"Team Ayunions","id":2299059619,"id_str":"2299059619","indices":[0,12]},{"screen_name":"S_OktaJKT48","name":"Ayu Safira Oktaviani","id":2397656167,"id_str":"2397656167","indices":[13,25]}],"symbols":[],"media":[{"id":663726648387219456,"id_str":"663726648387219456","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","url":"https:\/\/t.co\/3qAdOK3W8a","display_url":"pic.twitter.com\/3qAdOK3W8a","expanded_url":"http:\/\/twitter.com\/NotAHumanDronez\/status\/663726654510895105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726648387219456,"id_str":"663726648387219456","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","url":"https:\/\/t.co\/3qAdOK3W8a","display_url":"pic.twitter.com\/3qAdOK3W8a","expanded_url":"http:\/\/twitter.com\/NotAHumanDronez\/status\/663726654510895105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PictWarAyunions","indices":[50,66]}],"urls":[],"user_mentions":[{"screen_name":"NotAHumanDronez","name":"Achmad Nuzulian. F","id":1691686898,"id_str":"1691686898","indices":[3,19]},{"screen_name":"Ayunions_FC","name":"Team Ayunions","id":2299059619,"id_str":"2299059619","indices":[21,33]},{"screen_name":"S_OktaJKT48","name":"Ayu Safira Oktaviani","id":2397656167,"id_str":"2397656167","indices":[34,46]}],"symbols":[],"media":[{"id":663726648387219456,"id_str":"663726648387219456","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","url":"https:\/\/t.co\/3qAdOK3W8a","display_url":"pic.twitter.com\/3qAdOK3W8a","expanded_url":"http:\/\/twitter.com\/NotAHumanDronez\/status\/663726654510895105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663726654510895105,"source_status_id_str":"663726654510895105","source_user_id":1691686898,"source_user_id_str":"1691686898"}]},"extended_entities":{"media":[{"id":663726648387219456,"id_str":"663726648387219456","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH3sEUsAAYqYj.jpg","url":"https:\/\/t.co\/3qAdOK3W8a","display_url":"pic.twitter.com\/3qAdOK3W8a","expanded_url":"http:\/\/twitter.com\/NotAHumanDronez\/status\/663726654510895105\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663726654510895105,"source_status_id_str":"663726654510895105","source_user_id":1691686898,"source_user_id_str":"1691686898"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080021662"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833626251264,"id_str":"663727833626251264","text":"@_iwatake_ \n\u3084\u3070\u3044\u3088\u79c1\u82f1\u8a9e\u3068\u6570\u5b66\u304c\u305c\u3093\u305c\u3093\u7d42\u308f\u3063\u3066\u3044\u306a\u3044\u3093\u3060\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727683285598209,"in_reply_to_status_id_str":"663727683285598209","in_reply_to_user_id":2933352720,"in_reply_to_user_id_str":"2933352720","in_reply_to_screen_name":"_iwatake_","user":{"id":4069043653,"id_str":"4069043653","name":"\u219c(*\u84bc \u2022\u03c9\u2022)\u256f\u03c8","screen_name":"yuta_tori","location":null,"url":null,"description":"\u7d75\u57a2\u3068\u3044\u3046\u304b\u672c\u57a2\u306b\u8fd1\u3044\/\u4e3b\u306b\u3042\u3093\u30b9\u30bf.HQ.\u6b4c\u3044\u624b\u3055\u3093\u306e\u7d75\u3092\u63cf\u304f\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u3001\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\/\u3086\u305f\u3044\u305a\u3068\u3044\u3046\u304b\u3042\u3093\u30b9\u30bf\u306e\u8150\u3092\u98df\u3059\u4e8b\u3067\u751f\u304d\u3066\u3044\u308b\/\u304a\u5225\u308c\u306f\u30d6\u30ed\u30d6\u30ed\u89e3\u9664\u3067\/\u546a\u308f\u308c\u308b\u7cfb\u306e\u30c4\u30a4\u30fc\u30c8\u3092RT\u3057\u305f\u65b9\u306f\u5373\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\/\u2728\u611b\u3057\u306e\u3046\u3093\u3053\u029a @Piro_rin_cho \u025e\u2728","protected":false,"verified":false,"followers_count":105,"friends_count":122,"listed_count":12,"favourites_count":553,"statuses_count":1748,"created_at":"Fri Oct 30 13:24:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662655058404753408\/dRiEYT76_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662655058404753408\/dRiEYT76_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4069043653\/1446826368","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_iwatake_","name":"( '\u03c9'o[\u30a4\u30ef\u30bf\u30b1@\u30c6\u30b9\u30c8\u3067\u4f4e\u6d6e\u4e0a]","id":2933352720,"id_str":"2933352720","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021660"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638916096,"id_str":"663727833638916096","text":"RT @40Empresario: Valientes q dejan la piel en Catalu\u00f1a defendiendo nuestro sentimiento espa\u00f1olidad @PPCatalunya GRACIAS @Albiol_XG https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312964527,"id_str":"3312964527","name":"Mar\u00eda Francisca","screen_name":"curradm","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":302,"friends_count":554,"listed_count":2,"favourites_count":737,"statuses_count":3751,"created_at":"Mon Jun 08 10:29:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607859279769542656\/bBGVWYxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607859279769542656\/bBGVWYxo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:49 +0000 2015","id":663692971683020800,"id_str":"663692971683020800","text":"Valientes q dejan la piel en Catalu\u00f1a defendiendo nuestro sentimiento espa\u00f1olidad @PPCatalunya GRACIAS @Albiol_XG https:\/\/t.co\/5nKgfezq7U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874743258,"id_str":"2874743258","name":"FrancesCarbonell","screen_name":"40Empresario","location":"Badalona, Catalu\u00f1a, ESPA\u00d1A","url":null,"description":"Luchando por una CATALUNYA mejor dentro de ESPA\u00d1A!! ART. 155 ya.","protected":false,"verified":false,"followers_count":539,"friends_count":683,"listed_count":5,"favourites_count":105,"statuses_count":1314,"created_at":"Fri Oct 24 07:22:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612670628307566593\/4NiWFmJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612670628307566593\/4NiWFmJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874743258\/1430601949","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":35,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PPCatalunya","name":"PP Catal\u00e0","id":77963344,"id_str":"77963344","indices":[82,94]},{"screen_name":"Albiol_XG","name":"Xavier Garc\u00eda Albiol","id":243153735,"id_str":"243153735","indices":[103,113]}],"symbols":[],"media":[{"id":663692963374059520,"id_str":"663692963374059520","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","url":"https:\/\/t.co\/5nKgfezq7U","display_url":"pic.twitter.com\/5nKgfezq7U","expanded_url":"http:\/\/twitter.com\/40Empresario\/status\/663692971683020800\/photo\/1","type":"photo","sizes":{"large":{"w":592,"h":330,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":330,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692963374059520,"id_str":"663692963374059520","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","url":"https:\/\/t.co\/5nKgfezq7U","display_url":"pic.twitter.com\/5nKgfezq7U","expanded_url":"http:\/\/twitter.com\/40Empresario\/status\/663692971683020800\/photo\/1","type":"photo","sizes":{"large":{"w":592,"h":330,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":330,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"40Empresario","name":"FrancesCarbonell","id":2874743258,"id_str":"2874743258","indices":[3,16]},{"screen_name":"PPCatalunya","name":"PP Catal\u00e0","id":77963344,"id_str":"77963344","indices":[100,112]},{"screen_name":"Albiol_XG","name":"Xavier Garc\u00eda Albiol","id":243153735,"id_str":"243153735","indices":[121,131]}],"symbols":[],"media":[{"id":663692963374059520,"id_str":"663692963374059520","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","url":"https:\/\/t.co\/5nKgfezq7U","display_url":"pic.twitter.com\/5nKgfezq7U","expanded_url":"http:\/\/twitter.com\/40Empresario\/status\/663692971683020800\/photo\/1","type":"photo","sizes":{"large":{"w":592,"h":330,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":330,"resize":"fit"}},"source_status_id":663692971683020800,"source_status_id_str":"663692971683020800","source_user_id":2874743258,"source_user_id_str":"2874743258"}]},"extended_entities":{"media":[{"id":663692963374059520,"id_str":"663692963374059520","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpO9nWUAAoELE.jpg","url":"https:\/\/t.co\/5nKgfezq7U","display_url":"pic.twitter.com\/5nKgfezq7U","expanded_url":"http:\/\/twitter.com\/40Empresario\/status\/663692971683020800\/photo\/1","type":"photo","sizes":{"large":{"w":592,"h":330,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":330,"resize":"fit"}},"source_status_id":663692971683020800,"source_status_id_str":"663692971683020800","source_user_id":2874743258,"source_user_id_str":"2874743258"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021663"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613623297,"id_str":"663727833613623297","text":"@chawjumilla same # sis?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726494514999298,"in_reply_to_status_id_str":"663726494514999298","in_reply_to_user_id":500352925,"in_reply_to_user_id_str":"500352925","in_reply_to_screen_name":"chawjumilla","user":{"id":282957634,"id_str":"282957634","name":"Kim Dalumpines","screen_name":"kimtantrum","location":null,"url":null,"description":"I am not you and you are not me.","protected":false,"verified":false,"followers_count":191,"friends_count":80,"listed_count":1,"favourites_count":4079,"statuses_count":11598,"created_at":"Sat Apr 16 08:39:19 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663245651967283200\/rK2GEJ8h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663245651967283200\/rK2GEJ8h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282957634\/1419326092","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chawjumilla","name":"Jojo","id":500352925,"id_str":"500352925","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613623296,"id_str":"663727833613623296","text":"\u7d75\u65e5\u8a18\u66f4\u65b0\nhttps:\/\/t.co\/B0VbGoxV2O","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146926796,"id_str":"146926796","name":"\u663c\u306e\u5149","screen_name":"hirunohikari","location":"\u798f\u5ca1\u770c","url":"http:\/\/hirunohikari.com","description":"\u663c\u306e\u5149\u3092\u611f\u3058\u308b\u5834\u6240\u306b\u6211\u304c\u8eab\u3092\u7f6e\u304d\u305f\u3044\u3002","protected":false,"verified":false,"followers_count":50,"friends_count":20,"listed_count":6,"favourites_count":69,"statuses_count":808,"created_at":"Sat May 22 18:25:09 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1690352819\/001_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1690352819\/001_normal.gif","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B0VbGoxV2O","expanded_url":"http:\/\/hirunohikari.com\/","display_url":"hirunohikari.com","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613602816,"id_str":"663727833613602816","text":"\u30aa\u30e9\u30f3\u30c0\uff17\uff0d\uff14\u53f0\u6e7e\n\u8a66\u5408\u7d42\u4e86\n#\u30d7\u30ec\u30df\u30a212","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264792136,"id_str":"264792136","name":"\u306b\u3083\u3080\u307c\u3093","screen_name":"nyamubon","location":null,"url":"http:\/\/nekkyu.com\/","description":"\u9ad8\u6821\u91ce\u7403\u3092\u4e2d\u5fc3\u306b\u30b9\u30dd\u30fc\u30c4\u95a2\u4fc2\u5927\u597d\u304d\u3067\u3059\uff3e\uff3e \u8272\u3005\u6709\u3063\u3066\u6975\u5ea6\u306e\u30a2\u30f3\u30c1\u5de8\u4eba&\u71b1\u70c8\u962a\u795e\u30d5\u30a1\u30f3\u3002\u30c0\u30b7\u30e3\u30ec\u30e1\u30a4\u30f3\u306e\u545f\u304d\u304c\u591a\u3044\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306f\u614e\u91cd\u306b\u30aa\u30ca\u30b7\u30e3\u30b9m(__)m","protected":false,"verified":false,"followers_count":1205,"friends_count":165,"listed_count":18,"favourites_count":641,"statuses_count":92671,"created_at":"Sat Mar 12 13:28:06 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551372788456361984\/qeisfr3P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551372788456361984\/qeisfr3P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264792136\/1386139433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d7\u30ec\u30df\u30a212","indices":[15,22]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833613668355,"id_str":"663727833613668355","text":"\u30a6\u30a3\u30f321\u30d5\u30a1\u30fc\u30b9\u30c8\n104\u306e\u9ad8\u6728\u306f\u99d0\u8eca\u5834\u3067\u5f85\u3061\u4f0f\u305b\u300c\u3064\u304d\u307e\u3068\u3044\u300d\n\u53f3\u624b\u306e\u30b9\u30de\u30db\u3067\u904b\u8ee2\u624b\u3092\u64ae\u5f71 https:\/\/t.co\/OznDwwgr9f #\u8328\u6728\u5e02 #\u5acc\u304c\u3089\u305b\nhttps:\/\/t.co\/LGrCnYowUi Mon, 09 Nov 2015 23:40","source":"\u003ca href=\"https:\/\/twitter.com\/TOMIAM77\" rel=\"nofollow\"\u003eTOMIAM77\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2836057758,"id_str":"2836057758","name":"@kimbae1234 #IS","screen_name":"_a_Precure_1001","location":null,"url":"http:\/\/asahi.co.jp\/precure\/princess\/enjoyment\/nigaoe.html","description":"\u30d7\u30ea\u30ad\u30e5\u30a2\u306b\u304c\u304a\u3048","protected":false,"verified":false,"followers_count":10114,"friends_count":10215,"listed_count":10,"favourites_count":142,"statuses_count":526972,"created_at":"Wed Oct 01 03:22:13 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517167151765934080\/3UyNbW5b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517167151765934080\/3UyNbW5b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517153915641409536\/YsIva_v3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517153915641409536\/YsIva_v3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2836057758\/1412137387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8328\u6728\u5e02","indices":[72,76]},{"text":"\u5acc\u304c\u3089\u305b","indices":[77,82]}],"urls":[{"url":"https:\/\/t.co\/OznDwwgr9f","expanded_url":"https:\/\/youtu.be\/i1KeexuX62s?t=5h23m50s","display_url":"youtu.be\/i1KeexuX62s?t=\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":539972994030792704,"id_str":"539972994030792704","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/B35ek8GCcAAHnkg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B35ek8GCcAAHnkg.png","url":"https:\/\/t.co\/LGrCnYowUi","display_url":"pic.twitter.com\/LGrCnYowUi","expanded_url":"http:\/\/twitter.com\/_a_Precure_1001\/status\/539972994970288128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":285,"h":490,"resize":"fit"},"small":{"w":285,"h":490,"resize":"fit"},"large":{"w":285,"h":490,"resize":"fit"}},"source_status_id":539972994970288128,"source_status_id_str":"539972994970288128","source_user_id":2836057758,"source_user_id_str":"2836057758"}]},"extended_entities":{"media":[{"id":539972994030792704,"id_str":"539972994030792704","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/B35ek8GCcAAHnkg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/B35ek8GCcAAHnkg.png","url":"https:\/\/t.co\/LGrCnYowUi","display_url":"pic.twitter.com\/LGrCnYowUi","expanded_url":"http:\/\/twitter.com\/_a_Precure_1001\/status\/539972994970288128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":285,"h":490,"resize":"fit"},"small":{"w":285,"h":490,"resize":"fit"},"large":{"w":285,"h":490,"resize":"fit"}},"source_status_id":539972994970288128,"source_status_id_str":"539972994970288128","source_user_id":2836057758,"source_user_id_str":"2836057758"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021657"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833643024384,"id_str":"663727833643024384","text":"@38miwa_nuts \n\nP\u306a\u3063\u3064\u304d\u305f\u306d\u3063Pwww\n\n\u30cf\u30a8\u306e\u4e32\u713c\u304dwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719816046342144,"in_reply_to_status_id_str":"663719816046342144","in_reply_to_user_id":2886000218,"in_reply_to_user_id_str":"2886000218","in_reply_to_screen_name":"38miwa_nuts","user":{"id":3063991711,"id_str":"3063991711","name":"Itoshi@\u4e8c\u4ee3\u76eeW.I.H","screen_name":"i_t_s_38","location":"\u5c4b\u6839\u88cf\u770c\u3044\u3068\u5e02\u732b\u533a","url":null,"description":"21\u6b73\/miwa\/\u5c4b\u6839\u88cf\u4f1a\u54e1\/\u4eca\u5e74\u53c2\u6226\u6e08\u307fLIVE\u21923.8\u6b66\u9053\u9928\/6.15\u6a2a\u30a2\u30ea\/8.24\u3081\u3056\u307e\u3057\/8.28\u97f3\u970a\u3002 \u5e74\u4e0b\u3067\u521d\u3081\u3066\u7d61\u3080\u4eba\u306f\u656c\u8a9e\u3067\u3002 miwa\u30af\u30e9\u3055\u3093\u3068\u306e\u74b0(WA)\u3092\u5e83\u3052\u3066\u3044\u304d\u305f\u3044\u306e\u3067\u3001\u7686\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059(^ ^) \u3010\u4e8c\u4ee3\u76eeW.I.H\u65cf\u3011","protected":false,"verified":false,"followers_count":372,"friends_count":406,"listed_count":8,"favourites_count":1849,"statuses_count":2525,"created_at":"Fri Mar 06 03:59:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642999022223929344\/V5bO8NUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642999022223929344\/V5bO8NUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3063991711\/1446654617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"38miwa_nuts","name":"\u2661\u3074\u30fc\u306a\u3063\u3064\u2661\u516d\u4ee3\u76eeW.I.H","id":2886000218,"id_str":"2886000218","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833626361857,"id_str":"663727833626361857","text":"RT @alllycross: \"Where my hug at?\" https:\/\/t.co\/HxXcAL8OFY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2478639412,"id_str":"2478639412","name":"E","screen_name":"ENiedermeyer","location":null,"url":null,"description":"Dad\u2764\ufe0f 2\/14\/15. Volleyball","protected":false,"verified":false,"followers_count":873,"friends_count":755,"listed_count":0,"favourites_count":40417,"statuses_count":28233,"created_at":"Sat Apr 12 11:23:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656479630195576832\/ukpBYYWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656479630195576832\/ukpBYYWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2478639412\/1446934866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 03:31:26 +0000 2015","id":662834719470575616,"id_str":"662834719470575616","text":"\"Where my hug at?\" https:\/\/t.co\/HxXcAL8OFY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291494165,"id_str":"3291494165","name":"Ally Cross","screen_name":"alllycross","location":"RR","url":null,"description":"rest easy Ryder","protected":false,"verified":false,"followers_count":547,"friends_count":424,"listed_count":0,"favourites_count":8465,"statuses_count":1805,"created_at":"Wed May 20 15:47:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657321713240293381\/WbsT58BL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657321713240293381\/WbsT58BL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291494165\/1444098143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":98,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662834715263635456,"id_str":"662834715263635456","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","url":"https:\/\/t.co\/HxXcAL8OFY","display_url":"pic.twitter.com\/HxXcAL8OFY","expanded_url":"http:\/\/twitter.com\/alllycross\/status\/662834719470575616\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662834715263635456,"id_str":"662834715263635456","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","url":"https:\/\/t.co\/HxXcAL8OFY","display_url":"pic.twitter.com\/HxXcAL8OFY","expanded_url":"http:\/\/twitter.com\/alllycross\/status\/662834719470575616\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alllycross","name":"Ally Cross","id":3291494165,"id_str":"3291494165","indices":[3,14]}],"symbols":[],"media":[{"id":662834715263635456,"id_str":"662834715263635456","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","url":"https:\/\/t.co\/HxXcAL8OFY","display_url":"pic.twitter.com\/HxXcAL8OFY","expanded_url":"http:\/\/twitter.com\/alllycross\/status\/662834719470575616\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":662834719470575616,"source_status_id_str":"662834719470575616","source_user_id":3291494165,"source_user_id_str":"3291494165"}]},"extended_entities":{"media":[{"id":662834715263635456,"id_str":"662834715263635456","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLcqWQWEAAPP6o.jpg","url":"https:\/\/t.co\/HxXcAL8OFY","display_url":"pic.twitter.com\/HxXcAL8OFY","expanded_url":"http:\/\/twitter.com\/alllycross\/status\/662834719470575616\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":662834719470575616,"source_status_id_str":"662834719470575616","source_user_id":3291494165,"source_user_id_str":"3291494165"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021660"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833643110401,"id_str":"663727833643110401","text":"@LautiCiccarelli lo retwiteo para acordarme ! Jajaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724782698000384,"in_reply_to_status_id_str":"663724782698000384","in_reply_to_user_id":361308527,"in_reply_to_user_id_str":"361308527","in_reply_to_screen_name":"LautiCiccarelli","user":{"id":2737674483,"id_str":"2737674483","name":"Lucas Lione","screen_name":"kl_lione","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":137,"friends_count":147,"listed_count":0,"favourites_count":168,"statuses_count":744,"created_at":"Sat Aug 09 00:15:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638204775876706304\/rB0oGEfi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638204775876706304\/rB0oGEfi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737674483\/1440994844","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LautiCiccarelli","name":"El Lauti","id":361308527,"id_str":"361308527","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647202304,"id_str":"663727833647202304","text":"@shouyakings \u4eca\u5f8c\u3068\u3082\u307b\u306e\u3064\u3050\u3092\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u30fd(^\u03c9^)\uff89\ud83d\udc95ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727409942757377,"in_reply_to_status_id_str":"663727409942757377","in_reply_to_user_id":1424167194,"in_reply_to_user_id_str":"1424167194","in_reply_to_screen_name":"shouyakings","user":{"id":1138154898,"id_str":"1138154898","name":"TSUGUMI\u263b*..,","screen_name":"smaptgm","location":null,"url":null,"description":"\u4fdd\u80b2\u58eb!! smap.NRS.rhyzz.leo.j-dad.\u30a4\u30fc\u30b7\u30b9.\u30d5\u30ea\u30de.\u7fd4 .C.W.P!!!love\u2661love !!!\u30d5\u30a9\u30ed\u30fc\u306e\u6642\u306f\u4e00\u8a00\u304f\u3060\u3055\u3044!!!","protected":false,"verified":false,"followers_count":265,"friends_count":374,"listed_count":0,"favourites_count":1366,"statuses_count":3986,"created_at":"Thu Jan 31 23:12:45 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718471146958855\/H7whTv9F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718471146958855\/H7whTv9F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1138154898\/1447077565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shouyakings","name":"KinG-S[C.W.P.]","id":1424167194,"id_str":"1424167194","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647157248,"id_str":"663727833647157248","text":"@insyaafbe fllwd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708926056075264,"in_reply_to_status_id_str":"663708926056075264","in_reply_to_user_id":3024673104,"in_reply_to_user_id_str":"3024673104","in_reply_to_screen_name":"insyaafbe","user":{"id":2320205730,"id_str":"2320205730","name":"rere","screen_name":"audreteguh","location":null,"url":null,"description":"AudreyTeguh's Pard | duoanjk.| Ex : Rena_RPAs, RAIbeySA, miskadawson","protected":false,"verified":false,"followers_count":544,"friends_count":386,"listed_count":1,"favourites_count":77,"statuses_count":11167,"created_at":"Fri Jan 31 04:21:30 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"B077AF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543300196923240448\/DLHDIQEL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543300196923240448\/DLHDIQEL.jpeg","profile_background_tile":true,"profile_link_color":"C7258E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662515185609936900\/2ettVDki_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662515185609936900\/2ettVDki_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320205730\/1445978112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"insyaafbe","name":"syaf","id":3024673104,"id_str":"3024673104","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833630527488,"id_str":"663727833630527488","text":"@1202Yuti @rad_andooo \n\u3057\u3087\u3046\u304c\u306a\u3044\u306a\ud83d\udca9\u7206\u7b11\n\u3046\u3093\u3061\u3063\u3061\u3086\u3063\u3061\u3063\u3061\ud83d\udca9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727118237368320,"in_reply_to_status_id_str":"663727118237368320","in_reply_to_user_id":1476185563,"in_reply_to_user_id_str":"1476185563","in_reply_to_screen_name":"1202Yuti","user":{"id":2990497526,"id_str":"2990497526","name":"\uff59\uff55\uff4b\uff49","screen_name":"yukiki0207","location":"\u304a\u304a\u3055\u304b\u305b\u304d\u3081","url":null,"description":null,"protected":false,"verified":false,"followers_count":255,"friends_count":233,"listed_count":1,"favourites_count":1933,"statuses_count":2044,"created_at":"Tue Jan 20 01:22:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659160276588072960\/_6JHAW1f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659160276588072960\/_6JHAW1f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990497526\/1441897503","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1202Yuti","name":"\u3086\u3063\u3061","id":1476185563,"id_str":"1476185563","indices":[0,9]},{"screen_name":"rad_andooo","name":"S A K I :-)8","id":3148304004,"id_str":"3148304004","indices":[10,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021661"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833630425088,"id_str":"663727833630425088","text":"@A78mQ \u306a\u308b\u307b\u3069\u3067\u3059w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727768639705088,"in_reply_to_status_id_str":"663727768639705088","in_reply_to_user_id":3224069942,"in_reply_to_user_id_str":"3224069942","in_reply_to_screen_name":"A78mQ","user":{"id":3012213578,"id_str":"3012213578","name":"\u7f8e\u83ef\u6708\u3061\u3083\u3093\u306f\u53cb\u9054\u304c\u6b32\u3057\u3044","screen_name":"GamelovesGn","location":"\u5e7b\u60f3\u90f7 \u7d05\u9b54\u9928\u897f\u90e8 398\u53f7\u5ba4","url":null,"description":"\u6771\u65b9\u597d\u304d\u306a\u5b9f\u6cc1\u8005\u7f8e\u83ef\u6708\u3067\u3059\uff01 PSO2\u30b7\u30c3\u30d73\u30bd\u30fc\u30f3\u3067\u30bd\u30ed\u307e\u305f\u306f\u53cb\u9054\u3068\u3067\u6d3b\u52d5\u4e2d\u3067\u3059\u3001 \u30c1\u30fc\u30e0\u306b\u306f\u6240\u5c5e\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3001\u6771\u65b9\u597d\u304d\u306f\u30d5\u30a9\u30ed\u30fc\u3059\u308c\u3070\u51fa\u6765\u308b\u3060\u3051\u4ed5\u8fd4\u3057\u307e\u3059\uff08\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u51fa\u6765\u308b\u3060\u3051\u30ea\u30d7\u4e0b\u3055\u3044\u3001\u901a\u77e5\u304c\u6765\u306a\u3044\u306e\u3067(\u00b4\uff65\u03c9\uff65\uff40)\uff09 \u30d8\u30c3\u30c0\u30fc\u306f\u590f\u83ef\u3055\u3093\u304b\u3089\u4f5c\u3063\u3066\u3082\u3089\u3044\u307e\u3057\u305f \u4e00\u4eba\u306f\u5bc2\u3057\u3044\u306e\u3067\u3059(\u00b4\uff65\u03c9\uff65\uff40)","protected":false,"verified":false,"followers_count":118,"friends_count":86,"listed_count":5,"favourites_count":3044,"statuses_count":6103,"created_at":"Sat Feb 07 10:17:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658694612643508224\/ljV8W-_8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658694612643508224\/ljV8W-_8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012213578\/1439043990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"A78mQ","name":"\u30ec\u30a4\u30b8@\u30ec\u30a4\u30b9","id":3224069942,"id_str":"3224069942","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021661"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833647218688,"id_str":"663727833647218688","text":"RT @feenqx: \u0e2d\u0e22\u0e32\u0e01\u0e22\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32\u0e42\u0e14\u0e22\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e32\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e1a\u0e43\u0e04\u0e23\u0e2d\u0e35\u0e01\u0e40\u0e25\u0e22 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909014496,"id_str":"2909014496","name":"m a m i l k \u262e","screen_name":"Milknaja13","location":"\u0e2a\u0e2b\u0e32\u0e22","url":"http:\/\/www.facebook.com\/milk.kongchai","description":null,"protected":false,"verified":false,"followers_count":518,"friends_count":138,"listed_count":3,"favourites_count":732,"statuses_count":22298,"created_at":"Mon Nov 24 11:34:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659351733554905089\/lseOa12o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659351733554905089\/lseOa12o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2909014496\/1446973668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:48 +0000 2015","id":663727442910052352,"id_str":"663727442910052352","text":"\u0e2d\u0e22\u0e32\u0e01\u0e22\u0e49\u0e2d\u0e19\u0e40\u0e27\u0e25\u0e32\u0e42\u0e14\u0e22\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e32\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e1a\u0e43\u0e04\u0e23\u0e2d\u0e35\u0e01\u0e40\u0e25\u0e22 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1138895641,"id_str":"1138895641","name":"\u0e40\u0e0b\u0e35\u0e22\u0e42\u0e07\u0e48.","screen_name":"feenqx","location":"\u0e21\u0e14\u0e15\u0e30\u0e19\u0e2d\u0e22.","url":null,"description":"\u0e1e\u0e31\u0e14\u0e42\u0e1a\u0e01 | \u0e40\u0e40\u0e1d\u0e14 | \u0e25\u0e37\u0e21\u0e2d\u0e14\u0e35\u0e15\u0e21\u0e35\u0e40\u0e40\u0e15\u0e48\u0e1b\u0e31\u0e08\u0e08\u0e38\u0e1a\u0e31\u0e19.@Moddoii","protected":false,"verified":false,"followers_count":816,"friends_count":612,"listed_count":1,"favourites_count":6571,"statuses_count":12399,"created_at":"Fri Feb 01 06:29:48 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368227498536961\/awgqXKqK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368227498536961\/awgqXKqK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1138895641\/1447072040","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"feenqx","name":"\u0e40\u0e0b\u0e35\u0e22\u0e42\u0e07\u0e48.","id":1138895641,"id_str":"1138895641","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080021665"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833622011904,"id_str":"663727833622011904","text":"\u30bf\u30fc\u30d5\u30a3\u30aa\u3061\u3083\u3093\n\u7d75\u67c4\u53ef\u611b\u3044\n\u30cd\u30bf\u3082\u304f\u3063\u305d\u53ef\u611b\u3044 https:\/\/t.co\/RawHLDoUSY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242683244,"id_str":"3242683244","name":"\u30a2\u30ea\u30aa\u30b9\u30d0\u30cb\u30e9@\u9b54\u6cd5\u5951\u7d04D-21","screen_name":"kokovanilla__","location":"\u30fc=\u2261\u03a3[\u2593\u2593]\u03b5\u00a6)\uff7d\uff94\uff67","url":"http:\/\/www.pixiv.net\/member.php?id=10742561","description":"\u5f7c\u3068\u5f7c\u5973\u306e\u9b54\u6cd5\u5951\u7d04\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u5909\u614b\u3002\u96d1\u98df\u3067\u306a\u3093\u3067\u3082\u3044\u3051\u308b\u3001\u82e6\u624b\u306a\u65b9\u306f\u56de\u308c\u53f3\uff01\n\u547c\u3073\u30bf\u30e1\u5927\u6b53\u8fce\u3067\u3059\uff01\u30a4\u30e9\u30b9\u30c8\u306fibis\u3002\u30d0\u30c7\u30a3\u2192@choco_cooky0427 comico\/\u8266\u3053\u308c \u5984\u60f3\u904e\u591a\u30012\u6b21\u5275\u4f5c\u3070\u3063\u304b\u308a\u3002 \u5408\u308f\u306a\u3044\u3068\u601d\u3063\u305f\u3089\u30ea\u30e0\u30d6\u30ed\u30c3\u30af\u3054\u81ea\u7531\u306b\n\u30a2\u30a4\u30b3\u30f3\u306f\u3084\u3057\u3061\u3055\u3093\u304b\u3089","protected":false,"verified":false,"followers_count":208,"friends_count":206,"listed_count":18,"favourites_count":23259,"statuses_count":14842,"created_at":"Thu Jun 11 21:56:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662941835145297921\/xvbnQb3v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662941835145297921\/xvbnQb3v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242683244\/1445788787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726771620048896,"quoted_status_id_str":"663726771620048896","quoted_status":{"created_at":"Mon Nov 09 14:36:08 +0000 2015","id":663726771620048896,"id_str":"663726771620048896","text":"#\u79c1\u3068\u3044\u3048\u3070\u306a\u3093\u3067\u3059\u304b3\u3064\u304f\u3089\u3044\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044\n\n\u3073\u3001\u3073\u3073\u3073\u3093\u3058\u3087\u308b\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936287483,"id_str":"2936287483","name":"\u30e1\u30eb*","screen_name":"lapin_lapilapi","location":"\u306f\u3063\u3074\u3044\u305b\u3063\u3068","url":"http:\/\/twpf.jp\/lapin_lapilapi","description":"comico\uff0a\u5f7c\u3068\u5f7c\u5973\u306e\u9b54\u6cd5\u5951\u7d04\u3068\u3066\u3082\u5927\u597d\u304d\u3067\u3059\uff01\u30bf\u30fc\u30d5\u30a3\u30aa\u3061\u3083\u3093\u306e\u53ef\u611b\u3044\u3055\u306f\u8a08\u308a\u77e5\u308c\u306a\u3044\u3088\u30c3\u273d\u30d0\u30c7\u30a3\u273d@TotoronotTororo @Teso_crabs*\uff9f\u53ef\u611b\u3044\u904e\u304e\u308b\u30a2\u30a4\u30b3\u30f3\u306fyst\u3055\u3093\u304b\u3089\u3067\u3059(\/\u03c9\uff3c)\u2764\ufe0e","protected":false,"verified":false,"followers_count":234,"friends_count":152,"listed_count":23,"favourites_count":38593,"statuses_count":16513,"created_at":"Fri Dec 19 16:29:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663612791442440192\/czBpYDyA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663612791442440192\/czBpYDyA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936287483\/1446884669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u79c1\u3068\u3044\u3048\u3070\u306a\u3093\u3067\u3059\u304b3\u3064\u304f\u3089\u3044\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RawHLDoUSY","expanded_url":"https:\/\/twitter.com\/lapin_lapilapi\/status\/663726771620048896","display_url":"twitter.com\/lapin_lapilapi\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021659"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617952768,"id_str":"663727833617952768","text":"RT @Protect_Wldlife: Please read and support this excellent initiative and help the @AspinallCharity protect Gorillas like Djala. https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2156548142,"id_str":"2156548142","name":"SandyAspinallCharity","screen_name":"SandrarTAF","location":"Kent","url":"http:\/\/aspinallfoundation.org","description":"Fundraising Assistant for The Aspinall Foundation based at Port Lympne Wild Animal Park","protected":false,"verified":false,"followers_count":77,"friends_count":124,"listed_count":11,"favourites_count":5,"statuses_count":1776,"created_at":"Sat Oct 26 10:02:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000102191780\/18f034d5db1ae5b589ceacefb5760040.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000102191780\/18f034d5db1ae5b589ceacefb5760040.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000649484348\/2d85c76dbd6c7c47a7eca6ea53bb819f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000649484348\/2d85c76dbd6c7c47a7eca6ea53bb819f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2156548142\/1382783485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:57:22 +0000 2015","id":663686817628200960,"id_str":"663686817628200960","text":"Please read and support this excellent initiative and help the @AspinallCharity protect Gorillas like Djala. https:\/\/t.co\/KrYWRykcCz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2292488509,"id_str":"2292488509","name":"PROTECT ALL WILDLIFE","screen_name":"Protect_Wldlife","location":"about.me\/ProtectAllWildlife","url":"http:\/\/www.facebook.com\/ProtectAllWildlife","description":"THE GREATNESS OF A NATION AND ITS MORAL PROGRESS CAN BE JUDGED BY THE WAY ITS ANIMALS ARE TREATED - Mahatma Gandhi","protected":false,"verified":false,"followers_count":163320,"friends_count":131770,"listed_count":1474,"favourites_count":17913,"statuses_count":25232,"created_at":"Wed Jan 15 10:10:44 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433555665252925440\/2C1RBR4z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433555665252925440\/2C1RBR4z.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506391480726847488\/cKHGRN9R_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506391480726847488\/cKHGRN9R_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2292488509\/1439367019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663676463686766592,"quoted_status_id_str":"663676463686766592","quoted_status":{"created_at":"Mon Nov 09 11:16:14 +0000 2015","id":663676463686766592,"id_str":"663676463686766592","text":"@Protect_Wldlife Find out how sniffer dogs help protect gorillas like Djala https:\/\/t.co\/x2CMhSeKaA https:\/\/t.co\/iP4L0jUh1P","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2292488509,"in_reply_to_user_id_str":"2292488509","in_reply_to_screen_name":"Protect_Wldlife","user":{"id":47966649,"id_str":"47966649","name":"Aspinall Foundation","screen_name":"AspinallCharity","location":"Kent and Africa","url":"http:\/\/www.aspinallfoundation.org\/","description":"@DamianAspinall 's The Aspinall Foundation is devoted to protecting endangered animals through our work at both Howletts and Port Lympne, as well as overseas.","protected":false,"verified":false,"followers_count":5702,"friends_count":750,"listed_count":135,"favourites_count":914,"statuses_count":3693,"created_at":"Wed Jun 17 13:54:09 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/426395852140077058\/b10vMuev_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426395852140077058\/b10vMuev_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47966649\/1431082388","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x2CMhSeKaA","expanded_url":"http:\/\/ow.ly\/UkssC","display_url":"ow.ly\/UkssC","indices":[76,99]}],"user_mentions":[{"screen_name":"Protect_Wldlife","name":"PROTECT ALL WILDLIFE","id":2292488509,"id_str":"2292488509","indices":[0,16]}],"symbols":[],"media":[{"id":663676462721949696,"id_str":"663676462721949696","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaOf5UYAAOQBt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaOf5UYAAOQBt.jpg","url":"https:\/\/t.co\/iP4L0jUh1P","display_url":"pic.twitter.com\/iP4L0jUh1P","expanded_url":"http:\/\/twitter.com\/AspinallCharity\/status\/663676463686766592\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663676462721949696,"id_str":"663676462721949696","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaOf5UYAAOQBt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaOf5UYAAOQBt.jpg","url":"https:\/\/t.co\/iP4L0jUh1P","display_url":"pic.twitter.com\/iP4L0jUh1P","expanded_url":"http:\/\/twitter.com\/AspinallCharity\/status\/663676463686766592\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":75,"favorite_count":59,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KrYWRykcCz","expanded_url":"https:\/\/twitter.com\/AspinallCharity\/status\/663676463686766592","display_url":"twitter.com\/AspinallCharit\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"AspinallCharity","name":"Aspinall Foundation","id":47966649,"id_str":"47966649","indices":[63,79]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KrYWRykcCz","expanded_url":"https:\/\/twitter.com\/AspinallCharity\/status\/663676463686766592","display_url":"twitter.com\/AspinallCharit\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Protect_Wldlife","name":"PROTECT ALL WILDLIFE","id":2292488509,"id_str":"2292488509","indices":[3,19]},{"screen_name":"AspinallCharity","name":"Aspinall Foundation","id":47966649,"id_str":"47966649","indices":[84,100]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021658"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833634574337,"id_str":"663727833634574337","text":"RT @kamalmeet7: @Gurmeetramrahim GREAT!!!!\n Mind blowing craze Everywhere !!!!#MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244319491,"id_str":"3244319491","name":"I LOVE MSG papa 0+","screen_name":"sgurparkash180","location":null,"url":null,"description":"Lives in Bathinda(Pun jab)","protected":false,"verified":false,"followers_count":57,"friends_count":221,"listed_count":1,"favourites_count":8395,"statuses_count":9276,"created_at":"Sat Jun 13 14:25:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662505189547507712\/Om6PEkaP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662505189547507712\/Om6PEkaP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244319491\/1446437925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:55 +0000 2015","id":663724452052471808,"id_str":"663724452052471808","text":"@Gurmeetramrahim GREAT!!!!\n Mind blowing craze Everywhere !!!!#MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":276917857,"id_str":"276917857","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","screen_name":"kamalmeet7","location":"BaThiNdA\u20a6 Boy'Z, PuNjaB","url":null,"description":"~i\u03c4 \u03c9i\u0438\u0262 \u043c\u0454\u043c\u0432\u0454\u044f $ s\u043d\u03b1\u043d s\u03b1\u03c4\u0438\u03b1\u043c ji \u0262\u044f\u0454\u0454\u0438 s \u03c9\u0454\u2113f\u03b1\u044f\u0454 f\u03c3\u044fc\u0454 \u03c9i\u0438\u0262~ \u092e\u0948 \u0936\u093e\u092f\u0930 \u0924\u094b \u0928\u0939\u0940\u0902 \u090f \u0939\u0938\u0940\u0902,\n\u092a\u0930 \u091c\u092c\u0938\u0947 \u0926\u0947\u0916\u093e \u0924\u0941\u092e\u0915\u094b, \u092e\u0941\u091d\u0915\u094b \u0936\u093e\u092f\u0930\u0940 \u0906 \u0917\u092f\u0940\u2026","protected":false,"verified":false,"followers_count":6079,"friends_count":206,"listed_count":12,"favourites_count":9235,"statuses_count":26153,"created_at":"Mon Apr 04 10:33:05 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276917857\/1443257553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":5,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[62,86]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[78,102]}],"urls":[],"user_mentions":[{"screen_name":"kamalmeet7","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","id":276917857,"id_str":"276917857","indices":[3,14]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021662"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833643110400,"id_str":"663727833643110400","text":"RT @Barca_A7: \u0643\u0631\u0633\u062a\u064a\u0627\u0646\u0648 : \u0627\u0628\u0646\u064a \u064a\u062a\u0627\u0628\u0639 \u0645\u0642\u0627\u0637\u0639 \u0644\u0640 \u0645\u064a\u0633\u064a \u061f \u0644\u0627\u062a\u0648\u062c\u062f \u0645\u0634\u0643\u0644\u0629 \u0628\u064a\u0646\u064a \u0648\u0628\u064a\u0646\u0647 \u062d\u0648\u0644 \u0630\u0644\u0643 \u0648\u0644\u0646 \u0627\u0645\u0646\u0639\u0647 \u0645\u0646 \u0647\u0630\u0627 \u060c \u0641\u0625\u0628\u0646\u064a \u064a\u062a\u0627\u0628\u0639 \u0627\u0644\u0644\u0627\u0639\u0628\u064a\u0646 \u0627\u0644\u0645\u0645\u062a\u0627\u0632\u064a\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1705442719,"id_str":"1705442719","name":"zay","screen_name":"sukainh2","location":"Basra_Iraq","url":null,"description":"Girl with big dreams","protected":false,"verified":false,"followers_count":495,"friends_count":283,"listed_count":0,"favourites_count":575,"statuses_count":3458,"created_at":"Tue Aug 27 19:12:43 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661073282800730112\/R3VkPPCy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661073282800730112\/R3VkPPCy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705442719\/1444555542","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:18 +0000 2015","id":663723291140628480,"id_str":"663723291140628480","text":"\u0643\u0631\u0633\u062a\u064a\u0627\u0646\u0648 : \u0627\u0628\u0646\u064a \u064a\u062a\u0627\u0628\u0639 \u0645\u0642\u0627\u0637\u0639 \u0644\u0640 \u0645\u064a\u0633\u064a \u061f \u0644\u0627\u062a\u0648\u062c\u062f \u0645\u0634\u0643\u0644\u0629 \u0628\u064a\u0646\u064a \u0648\u0628\u064a\u0646\u0647 \u062d\u0648\u0644 \u0630\u0644\u0643 \u0648\u0644\u0646 \u0627\u0645\u0646\u0639\u0647 \u0645\u0646 \u0647\u0630\u0627 \u060c \u0641\u0625\u0628\u0646\u064a \u064a\u062a\u0627\u0628\u0639 \u0627\u0644\u0644\u0627\u0639\u0628\u064a\u0646 \u0627\u0644\u0645\u0645\u062a\u0627\u0632\u064a\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33701483,"id_str":"33701483","name":"FCB World","screen_name":"Barca_A7","location":"Barcelona, Catalonia","url":"http:\/\/www.fcbworld.net","description":"Contact us : \nBarca_A7@fcbworld.net","protected":false,"verified":false,"followers_count":162914,"friends_count":17,"listed_count":1188,"favourites_count":62,"statuses_count":69238,"created_at":"Mon Apr 20 22:54:24 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644476277856952321\/Q4DDNUI6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644476277856952321\/Q4DDNUI6.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572430534278524928\/6Ck8p7dw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572430534278524928\/6Ck8p7dw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33701483\/1441081641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":147,"favorite_count":32,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Barca_A7","name":"FCB World","id":33701483,"id_str":"33701483","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638768641,"id_str":"663727833638768641","text":"@___2424naaatuki \n\u3086\u3046\u304b\u307e\u306016\ud83d\udc9e\n\u304a\u3044\uff01\u3089\u3076\u3044\u304b\u3088\uff01\u308f\u305f\u3057\u305f\u3061\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663644680203071488,"in_reply_to_status_id_str":"663644680203071488","in_reply_to_user_id":2937605738,"in_reply_to_user_id_str":"2937605738","in_reply_to_screen_name":"___2424naaatuki","user":{"id":2927951042,"id_str":"2927951042","name":"\uff03\u3086 \u3093\u51b7","screen_name":"_UnoPeKo","location":"\u611b\u65b9\u3055\u3048 \u3081\u3050\u307f \u79c1\u306e\u3051\u3044\u306a \u307f\u3086 \u611b\u4eba\u306f\u3055\u3086\u306e\u3060\u304a\u2661","url":"http:\/\/instagram.com\/y_u_n__","description":"\u3010@uno_uno_0716\u3011","protected":false,"verified":false,"followers_count":914,"friends_count":104,"listed_count":25,"favourites_count":5422,"statuses_count":9899,"created_at":"Sat Dec 13 01:17:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663319912782282752\/kfFI9GMN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663319912782282752\/kfFI9GMN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2927951042\/1447047146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___2424naaatuki","name":"\u306a\u3063( ^o^)\u0413\u260e\uff81\uff9d\uff6f","id":2937605738,"id_str":"2937605738","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080021663"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833642983424,"id_str":"663727833642983424","text":"RT @pinkvilla: How much longer for the trailer launch? RT this if you can't wait longer... #DilwaleTrailerDay #Dilwale https:\/\/t.co\/Ibeaa2b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1471311817,"id_str":"1471311817","name":"Mahi Fangirl\u2764Dilwale","screen_name":"subbuMahi7","location":"somewhere in Mahi's Heart \u2764","url":null,"description":"Another Cricket Freak...\u2764Mahendra Singh Dhoni for Life\u2764 Mad For SRK..\u2764Deepika Crazen..\u2764 Absolute Music Lover..Anytime Hungry for Chicken..:P","protected":false,"verified":false,"followers_count":1233,"friends_count":415,"listed_count":8,"favourites_count":4937,"statuses_count":11295,"created_at":"Fri May 31 04:12:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661251502460133376\/Sp4Bh-Ca_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661251502460133376\/Sp4Bh-Ca_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1471311817\/1445837463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:43 +0000 2015","id":663726413757988864,"id_str":"663726413757988864","text":"How much longer for the trailer launch? RT this if you can't wait longer... #DilwaleTrailerDay #Dilwale https:\/\/t.co\/Ibeaa2bcLc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14182050,"id_str":"14182050","name":"pinkvilla","screen_name":"pinkvilla","location":null,"url":"http:\/\/www.pinkvilla.com","description":"Your daily dose of Bollywood gossip and fashion. Follow us on Instagram : https:\/\/instagram.com\/pinkvilla","protected":false,"verified":false,"followers_count":236133,"friends_count":690,"listed_count":377,"favourites_count":65,"statuses_count":53912,"created_at":"Thu Mar 20 03:45:33 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/320957651\/tweet_4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/320957651\/tweet_4.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418848443881119744\/uV7dEImQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418848443881119744\/uV7dEImQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14182050\/1435254433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":112,"favorite_count":52,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[76,94]},{"text":"Dilwale","indices":[95,103]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726411182641152,"id_str":"663726411182641152","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726411182641152,"id_str":"663726411182641152","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663726412394840064,"id_str":"663726412394840064","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp87WwAALt6f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp87WwAALt6f.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663726411799265280,"id_str":"663726411799265280","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp6tXAAAR2xp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp6tXAAAR2xp.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663726412235456513,"id_str":"663726412235456513","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp8VWwAENoVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp8VWwAENoVA.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[91,109]},{"text":"Dilwale","indices":[110,118]}],"urls":[],"user_mentions":[{"screen_name":"pinkvilla","name":"pinkvilla","id":14182050,"id_str":"14182050","indices":[3,13]}],"symbols":[],"media":[{"id":663726411182641152,"id_str":"663726411182641152","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726413757988864,"source_status_id_str":"663726413757988864","source_user_id":14182050,"source_user_id_str":"14182050"}]},"extended_entities":{"media":[{"id":663726411182641152,"id_str":"663726411182641152","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp4aWEAAHYeT.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726413757988864,"source_status_id_str":"663726413757988864","source_user_id":14182050,"source_user_id_str":"14182050"},{"id":663726412394840064,"id_str":"663726412394840064","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp87WwAALt6f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp87WwAALt6f.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726413757988864,"source_status_id_str":"663726413757988864","source_user_id":14182050,"source_user_id_str":"14182050"},{"id":663726411799265280,"id_str":"663726411799265280","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp6tXAAAR2xp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp6tXAAAR2xp.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726413757988864,"source_status_id_str":"663726413757988864","source_user_id":14182050,"source_user_id_str":"14182050"},{"id":663726412235456513,"id_str":"663726412235456513","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHp8VWwAENoVA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHp8VWwAENoVA.jpg","url":"https:\/\/t.co\/Ibeaa2bcLc","display_url":"pic.twitter.com\/Ibeaa2bcLc","expanded_url":"http:\/\/twitter.com\/pinkvilla\/status\/663726413757988864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663726413757988864,"source_status_id_str":"663726413757988864","source_user_id":14182050,"source_user_id_str":"14182050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021664"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833638899712,"id_str":"663727833638899712","text":"Printable Planner Stickers, Checklist Stickers, Erin Condren, Flag Stickers, Planner.. https:\/\/t.co\/dqqxNFWPF0 https:\/\/t.co\/f2zrX9WvAI","source":"\u003ca href=\"https:\/\/around.io\" rel=\"nofollow\"\u003eAround.io\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2271041587,"id_str":"2271041587","name":"YupiYeiPapers","screen_name":"YupiYeiPapers","location":null,"url":"http:\/\/www.etsy.com\/shop\/YupiYeiPapers","description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":29,"listed_count":4,"favourites_count":7,"statuses_count":82,"created_at":"Wed Jan 01 01:54:34 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654047467068125188\/-XgF2PBF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654047467068125188\/-XgF2PBF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271041587\/1444947207","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dqqxNFWPF0","expanded_url":"https:\/\/www.etsy.com\/listing\/251787031\/printable-planner-stickers-checklist","display_url":"etsy.com\/listing\/251787\u2026","indices":[87,110]}],"user_mentions":[],"symbols":[],"media":[{"id":663727832577605632,"id_str":"663727832577605632","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8nhUAAACkeM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8nhUAAACkeM.jpg","url":"https:\/\/t.co\/f2zrX9WvAI","display_url":"pic.twitter.com\/f2zrX9WvAI","expanded_url":"http:\/\/twitter.com\/YupiYeiPapers\/status\/663727833638899712\/photo\/1","type":"photo","sizes":{"medium":{"w":570,"h":570,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727832577605632,"id_str":"663727832577605632","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8nhUAAACkeM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8nhUAAACkeM.jpg","url":"https:\/\/t.co\/f2zrX9WvAI","display_url":"pic.twitter.com\/f2zrX9WvAI","expanded_url":"http:\/\/twitter.com\/YupiYeiPapers\/status\/663727833638899712\/photo\/1","type":"photo","sizes":{"medium":{"w":570,"h":570,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021663"} +{"delete":{"status":{"id":663727594538446848,"id_str":"663727594538446848","user_id":2765620563,"user_id_str":"2765620563"},"timestamp_ms":"1447080021988"}} +{"delete":{"status":{"id":663013333960777728,"id_str":"663013333960777728","user_id":3604981334,"user_id_str":"3604981334"},"timestamp_ms":"1447080021987"}} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833630511104,"id_str":"663727833630511104","text":"#Camera #Photography : https:\/\/t.co\/hQr3pioi96 #5740 Nikon D5300 24.2 MP Digital SLR Camera-RED + 18-55mm VR II Le\u2026 https:\/\/t.co\/afw5CGdIZD","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3026350024,"id_str":"3026350024","name":"CAMERA + CAMERA","screen_name":"Awoe_22a2","location":"USA","url":null,"description":"#Camera #Photography #Art #Photo #Store #Deals #Bargains #Digital #Cameras #Buy #Shopping #Photograph #Bargain #Discount #BestSeller #Onsale #Sale #Trending","protected":false,"verified":false,"followers_count":141,"friends_count":3,"listed_count":83,"favourites_count":0,"statuses_count":170720,"created_at":"Mon Feb 09 11:20:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564746059490934784\/QI-E0tHu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564746059490934784\/QI-E0tHu_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Camera","indices":[0,7]},{"text":"Photography","indices":[8,20]}],"urls":[{"url":"https:\/\/t.co\/hQr3pioi96","expanded_url":"http:\/\/ift.tt\/1MOvOD4","display_url":"ift.tt\/1MOvOD4","indices":[23,46]}],"user_mentions":[],"symbols":[],"media":[{"id":663727833529917440,"id_str":"663727833529917440","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8rEXIAAFyaI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8rEXIAAFyaI.jpg","url":"https:\/\/t.co\/afw5CGdIZD","display_url":"pic.twitter.com\/afw5CGdIZD","expanded_url":"http:\/\/twitter.com\/Awoe_22a2\/status\/663727833630511104\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727833529917440,"id_str":"663727833529917440","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8rEXIAAFyaI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8rEXIAAFyaI.jpg","url":"https:\/\/t.co\/afw5CGdIZD","display_url":"pic.twitter.com\/afw5CGdIZD","expanded_url":"http:\/\/twitter.com\/Awoe_22a2\/status\/663727833630511104\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447080021661"} +{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833617969152,"id_str":"663727833617969152","text":"#Iran Summons, #Saudi's Diplomat after Executed 3 Iranians.\nhttps:\/\/t.co\/U1K8N16SmV\n#Tehran\n#Lebanon\n #Captagon https:\/\/t.co\/kUqgExPrmS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3151729419,"id_str":"3151729419","name":"Alghadeer English","screen_name":"alghadeertv_eng","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":430,"friends_count":4,"listed_count":20,"favourites_count":0,"statuses_count":1713,"created_at":"Thu Apr 09 14:18:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586171706563174402\/sma3So78_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586171706563174402\/sma3So78_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3151729419\/1429799675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Iran","indices":[0,5]},{"text":"Saudi","indices":[15,21]},{"text":"Tehran","indices":[84,91]},{"text":"Lebanon","indices":[92,100]},{"text":"Captagon","indices":[102,111]}],"urls":[{"url":"https:\/\/t.co\/U1K8N16SmV","expanded_url":"https:\/\/www.facebook.com\/alghadeer.english\/photos\/a.1382235475435945.1073741828.1382157918777034\/1513389195653905\/?type=3&theater","display_url":"facebook.com\/alghadeer.engl\u2026","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663727830652616704,"id_str":"663727830652616704","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8gWXAAALwhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8gWXAAALwhC.jpg","url":"https:\/\/t.co\/kUqgExPrmS","display_url":"pic.twitter.com\/kUqgExPrmS","expanded_url":"http:\/\/twitter.com\/alghadeertv_eng\/status\/663727833617969152\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":320,"resize":"fit"},"medium":{"w":512,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727830652616704,"id_str":"663727830652616704","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8gWXAAALwhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8gWXAAALwhC.jpg","url":"https:\/\/t.co\/kUqgExPrmS","display_url":"pic.twitter.com\/kUqgExPrmS","expanded_url":"http:\/\/twitter.com\/alghadeertv_eng\/status\/663727833617969152\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":320,"resize":"fit"},"medium":{"w":512,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080021658"} +{"delete":{"status":{"id":615486870030409728,"id_str":"615486870030409728","user_id":2679256826,"user_id_str":"2679256826"},"timestamp_ms":"1447080022127"}} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837808041984,"id_str":"663727837808041984","text":"Uczciwe rozliczenie 8 lat rz\u0105d\u00f3w PO i dobra zmiana. Oby dali rad\u0119:)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348453165,"id_str":"348453165","name":"Aga Pi","screen_name":"aga_pi","location":null,"url":null,"description":"An adult with a job.","protected":false,"verified":false,"followers_count":351,"friends_count":757,"listed_count":3,"favourites_count":7155,"statuses_count":2997,"created_at":"Thu Aug 04 13:16:57 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602526877685817344\/a84DMJ6m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602526877685817344\/a84DMJ6m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348453165\/1438714634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080022657"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837816471552,"id_str":"663727837816471552","text":"RT @abiss32187: \u0627\u0646\u0647\u0627 \u0645\u0627\u064a\u062a\u0628\u0642\u0649 \u0645\u0646 \u0644\u062d\u0638\u0627\u062a \u0627\u0644\u062d\u064a\u0627\u0629 \u0627\u0644\u0633\u0639\u064a\u062f\u0629\n\n\u0648\u0627\u0644\u0627\u062c\u0645\u0644 \u0647\u0648 \u0627\u0646 \u062a\u062a\u0631\u0643 \u0630\u0643\u0631\u0649 \u0637\u064a\u0628\u0629 \u0639\u0646\u0643 \u0644\u062f\u0649 \u0643\u0644 \u0645\u0646 \u064a\u0639\u0631\u0641\u0643 https:\/\/t.co\/vQGj5wDJJs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298849927,"id_str":"3298849927","name":"\u064a\u0640\u0627 \u0623\u0645\u064a\u0631 \u0627\u0644\u0645\u0624\u0645\u0646\u064a\u0646","screen_name":"zxczxc00945839","location":"\u0634\u064a\u0639\u064a .\u0631\u0627\u0641\u0636\u064a .\u0645\u0648\u0627\u0644\u064a .\u0644\u0623\u0647\u0644 \u0627\u0644\u0628\u064a\u062a","url":null,"description":"\u0628\u0644\u0651\u063a\u064a \u0627\u0644\u0645\u063a\u064a\u0651\u0628 \u0639\u0646\u0651\u0627 \u0627\u0644\u0633\u0651\u0644\u0627\u0645.. \u0648 \u0627\u0633\u0623\u0644\u064a\u0647 \u0628\u062e\u062c\u0644\u064d \u0623\u0646 \u0646\u0643\u0648\u0646\u064e \u0628\u064a\u0646 \u0643\u0641\u0651\u064a \u062f\u0639\u0627\u0626\u0650\u0647 \u0627\u0644\u0645\u0628\u0627\u0631\u0643.. \u0627\u0644\u0633\u0651\u0644\u0627\u0645\u064f \u0639\u0644\u064a\u0643\u064e \u064a\u0627 \u0642\u0627\u0626\u0645\u064e \u0622\u0644 \u0645\u062d\u0645\u0651\u062f \u0633\u0644\u0627\u0645\u064b\u0627 \u0644\u0627 \u064a\u0646\u0642\u064e\u0637\u0639 \u0623\u0628\u062f\u0627..\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0645\u0641\u0636\u0644\u0627\u062a\u064a","protected":false,"verified":false,"followers_count":2328,"friends_count":804,"listed_count":1,"favourites_count":398,"statuses_count":11451,"created_at":"Mon Jul 27 22:25:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298849927\/1440334902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:06 +0000 2015","id":663720976811745280,"id_str":"663720976811745280","text":"\u0627\u0646\u0647\u0627 \u0645\u0627\u064a\u062a\u0628\u0642\u0649 \u0645\u0646 \u0644\u062d\u0638\u0627\u062a \u0627\u0644\u062d\u064a\u0627\u0629 \u0627\u0644\u0633\u0639\u064a\u062f\u0629\n\n\u0648\u0627\u0644\u0627\u062c\u0645\u0644 \u0647\u0648 \u0627\u0646 \u062a\u062a\u0631\u0643 \u0630\u0643\u0631\u0649 \u0637\u064a\u0628\u0629 \u0639\u0646\u0643 \u0644\u062f\u0649 \u0643\u0644 \u0645\u0646 \u064a\u0639\u0631\u0641\u0643 https:\/\/t.co\/vQGj5wDJJs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3191068970,"id_str":"3191068970","name":"\u0639\u0644\u064a \u0627\u0644\u0635\u062f\u0631\u064a","screen_name":"abiss32187","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3619,"friends_count":2947,"listed_count":3,"favourites_count":2991,"statuses_count":12504,"created_at":"Sun May 10 19:03:42 +0000 2015","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643137264189489152\/ZrF_5MLP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643137264189489152\/ZrF_5MLP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191068970\/1438374102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"b62cd77425868341","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b62cd77425868341.json","place_type":"country","name":"Iraq","full_name":"Iraq","country_code":"IQ","country":"Iraq","bounding_box":{"type":"Polygon","coordinates":[[[38.794701,29.071710],[38.794701,37.378040],[48.575908,37.378040],[48.575908,29.071710]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720975603748864,"id_str":"663720975603748864","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","url":"https:\/\/t.co\/vQGj5wDJJs","display_url":"pic.twitter.com\/vQGj5wDJJs","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663720976811745280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720975603748864,"id_str":"663720975603748864","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","url":"https:\/\/t.co\/vQGj5wDJJs","display_url":"pic.twitter.com\/vQGj5wDJJs","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663720976811745280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abiss32187","name":"\u0639\u0644\u064a \u0627\u0644\u0635\u062f\u0631\u064a","id":3191068970,"id_str":"3191068970","indices":[3,14]}],"symbols":[],"media":[{"id":663720975603748864,"id_str":"663720975603748864","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","url":"https:\/\/t.co\/vQGj5wDJJs","display_url":"pic.twitter.com\/vQGj5wDJJs","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663720976811745280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}},"source_status_id":663720976811745280,"source_status_id_str":"663720976811745280","source_user_id":3191068970,"source_user_id_str":"3191068970"}]},"extended_entities":{"media":[{"id":663720975603748864,"id_str":"663720975603748864","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCtfTWUAAQhC2.png","url":"https:\/\/t.co\/vQGj5wDJJs","display_url":"pic.twitter.com\/vQGj5wDJJs","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663720976811745280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}},"source_status_id":663720976811745280,"source_status_id_str":"663720976811745280","source_user_id":3191068970,"source_user_id_str":"3191068970"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080022659"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837459456,"id_str":"663727837837459456","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/RvQjlsHFQW","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2584291897,"id_str":"2584291897","name":"\u0645\u064a\u0634\u0648","screen_name":"lbcggioob","location":"\u0627\u0644\u0642\u0635\u064a\u0645 ","url":null,"description":"\u2764\u0645\u0637\u064a\u0631\u064a\u06c1\u2764\u0625\u0633\u0645\u064a \u0644\u0651\u062d\u0622\u0644\u0647 \u0641\u064a \u0639\u064a\u0648\u0646 \u0623\u0644\u062e\u0644\u0651\u0642 \u0642\u0635\u064a\u062f\u0647...\u0623\u0645\u0623 \u062d\u064f\u0636\u0648\u0631\u0651\u064a \u0623\u0646\u064e\u0623 \u0623\u0623\u0634\u0647\u062f \u0623\u0646\u064e\u0647 \u064a\u062f\u0647\u0648\u0631\u0651 \u0642\u0628\u0640\u0622\u064a\u0644","protected":false,"verified":false,"followers_count":650,"friends_count":587,"listed_count":0,"favourites_count":238,"statuses_count":3190,"created_at":"Mon Jun 23 16:38:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661629219005419521\/EeqKA5Dp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661629219005419521\/EeqKA5Dp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2584291897\/1444259015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RvQjlsHFQW","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837808107520,"id_str":"663727837808107520","text":"\u0623\u0639\u0648\u0630 \u0628\u0627\u0644\u0644\u0647 \u0645\u0646 \u0642\u0647\u0631 \u064a\u064f\u0628\u0643\u064a\u0646\u0627 \u0648\u062d\u0632\u0646 \u064a\u0637\u0648\u064a\u0646\u0627 \u0648\u0638\u0644\u0645 \u064a\u0643\u0633\u0631\u0646\u0627 \u0648\u0630\u0646\u0628 \u064a\u062d\u0628\u0633 \u0641\u0631\u062d\u062a\u0646\u0627\u060c \u0623\u0639\u0648\u0630 \u0628\u0627\u0644\u0644\u0647 \u0645\u0646 \u0647\u0645\u0648\u0645 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0645\u0627 \u0641\u064a\u0647\u0627 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3686322914,"id_str":"3686322914","name":"\u2663\ufe0f","screen_name":"c_0055","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":43,"friends_count":60,"listed_count":0,"favourites_count":9,"statuses_count":232,"created_at":"Fri Sep 25 23:01:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653318551135199233\/8aYisHxn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653318551135199233\/8aYisHxn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3686322914\/1443227757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080022657"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837451264,"id_str":"663727837837451264","text":"SU https:\/\/t.co\/8E6NRJ4xFy DI OGGI\nSMI. NO A COLPI DI MANO SUGLI ORARI DI LAVORO DEI MEDICI.\nhttps:\/\/t.co\/Jw1Nae8Pp1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3226398232,"id_str":"3226398232","name":"L.Berliri","screen_name":"sullanotizia","location":null,"url":"http:\/\/www.mondoprofessionisti.eu","description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":155,"listed_count":0,"favourites_count":0,"statuses_count":228,"created_at":"Fri May 01 15:15:57 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641602965908930560\/99b2MRqD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641602965908930560\/99b2MRqD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8E6NRJ4xFy","expanded_url":"http:\/\/WWW.MONDOPROFESSIONISTI.IT","display_url":"MONDOPROFESSIONISTI.IT","indices":[3,26]},{"url":"https:\/\/t.co\/Jw1Nae8Pp1","expanded_url":"http:\/\/www.mondoprofessionisti.it\/sezione_s-10-dalle%20professioni.html","display_url":"mondoprofessionisti.it\/sezione_s-10-d\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837807927296,"id_str":"663727837807927296","text":"*\n\n\u3000\u541b\u306e\u524d\u304b\u3089\u59ff\u6d88\u3057\u3066\u3042\u3052\u308b\n\u3000\u59ff\u3082\u8de1\u5f62\u3082\u306a\u304f\u306d \n\u3000\u3093\u3075 \u3001\u304a\u5e78\u305b\u306b\n\n*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3266973998,"id_str":"3266973998","name":"\u6c99 \u8587 \u2312 * : \u3002","screen_name":"ari__ari__eru","location":null,"url":null,"description":"\u96a3\u4e0d\u2502\u6e38\u4eba\u2502\u5b8c\u53f3\u2502\u5ac9\u59ac\u2502\u675f\u7e1b\u2502\u72ec\u5360\u2502\u8c46","protected":false,"verified":false,"followers_count":46,"friends_count":43,"listed_count":1,"favourites_count":391,"statuses_count":3152,"created_at":"Fri Jul 03 09:53:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660074206256742400\/7h6ZJ3TS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660074206256742400\/7h6ZJ3TS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3266973998\/1446822806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022657"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824815104,"id_str":"663727837824815104","text":"Liguei o ar no quente,e fui v\u00ear s\u00f3 agr sdksjsjj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304093553,"id_str":"3304093553","name":"Carol","screen_name":"Carol_Cardonaa","location":null,"url":null,"description":"Seja voc\u00ea a mudan\u00e7a que tanto procura nos outros.As pessoas n\u00e3o mudam com cobran\u00e7as,mudam com exemplos.","protected":false,"verified":false,"followers_count":127,"friends_count":52,"listed_count":0,"favourites_count":220,"statuses_count":3655,"created_at":"Sat May 30 21:28:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662258134216478720\/mwuRJB6X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662258134216478720\/mwuRJB6X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304093553\/1446490458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"894146230dd1d42d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/894146230dd1d42d.json","place_type":"city","name":"Porto Alegre","full_name":"Porto Alegre, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-51.306148,-30.268807],[-51.306148,-29.930636],[-51.012471,-29.930636],[-51.012471,-30.268807]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837828943872,"id_str":"663727837828943872","text":"\u314b\u314b\uc624\uc18c\uce74\ub77c\ub3c4 \uc88b\uc9c0\uc54a\ub098\uc694","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2927361420,"id_str":"2927361420","name":"[\uc774\uce58\uce74\ub77c\uc8fc\uc2dd]\ucca8\uc9c0","screen_name":"changwuri","location":null,"url":null,"description":"\uc774\uce58\uce74\ub77c","protected":false,"verified":false,"followers_count":18,"friends_count":36,"listed_count":1,"favourites_count":120,"statuses_count":342,"created_at":"Fri Dec 12 06:15:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724815702843393\/SnMRo_SX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724815702843393\/SnMRo_SX_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080022662"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812162560,"id_str":"663727837812162560","text":"\u304a\u6cca\u307e\u308a\u3059\u308b\u306e\uff01\uff1f\u8a98\u3063\u3066\u3063\uff01|\uff6a)\uff65`) \uff81\uff97\uff6f\uff78\uff8f\u2026\n\n(|\uff6a)\uff65`) \uff81\uff97\uff6f\uff78\uff8f\u2026\u3063\u3066\u306a\u306b\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096532688,"id_str":"3096532688","name":"\u3086\u308a\u306a(*\u00b4-`*)","screen_name":"y_r_n_149","location":"\u672b\u3063\u5b50\u306a\u306e\u3067\u3059\u3002","url":null,"description":"\u6cc9\u967d 67th\u2192\u6625\u304b\u3089kinki univ \u6cd5\u5b66\u90e8\u0669(*\u00b4\u25d2`*)\u06f6\u2661 \u540c\u3058\u5927\u5b66\u306e\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d(*\u00b4\u7f52`*)","protected":false,"verified":false,"followers_count":160,"friends_count":127,"listed_count":0,"favourites_count":402,"statuses_count":1449,"created_at":"Wed Mar 18 16:25:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661085854253760512\/6h8D8FOZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661085854253760512\/6h8D8FOZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096532688\/1445582134","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022658"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824868352,"id_str":"663727837824868352","text":"^ Aberdeen + | Aberdeen livestock auction report https:\/\/t.co\/hUMgI4vA6N #Aberdeen #Aberdeenshire","source":"\u003ca href=\"http:\/\/twibble.io\" rel=\"nofollow\"\u003eTwibble.io\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55635996,"id_str":"55635996","name":"Internet Magazine","screen_name":"Scotland4me","location":"Scotland, Edinburgh","url":"http:\/\/www.scotland4me.net","description":"Covering news not covered elsewhere, news about Edinburgh, Glasgow, Aberdeen, Falkirk, Perth, Stirling and Cowdenbeath","protected":false,"verified":false,"followers_count":4712,"friends_count":2770,"listed_count":278,"favourites_count":676,"statuses_count":475976,"created_at":"Fri Jul 10 18:56:55 +0000 2009","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/307451088\/scotmap_20a_202_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/307451088\/scotmap_20a_202_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Aberdeen","indices":[73,82]},{"text":"Aberdeenshire","indices":[83,97]}],"urls":[{"url":"https:\/\/t.co\/hUMgI4vA6N","expanded_url":"http:\/\/twib.in\/l\/aMnopM846G6","display_url":"twib.in\/l\/aMnopM846G6","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812285440,"id_str":"663727837812285440","text":"RT @OfficialSaik: \ud83c\udf1a\ud83c\udf1d https:\/\/t.co\/f7HQwJLXWS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503256451,"id_str":"503256451","name":"P A U L I","screen_name":"paulaportero","location":"Sevilla, Andaluc\u00eda","url":"http:\/\/www.instagram.com\/paulaportero98","description":"1998. \u00a1\u00a1Llena tu vida como la de un alcoiris!!\nla m\u00fasica no tiene licensia...queda mucho por sentir!!!\u00a1S\u00e1ik!","protected":false,"verified":false,"followers_count":1025,"friends_count":550,"listed_count":4,"favourites_count":14266,"statuses_count":34434,"created_at":"Sat Feb 25 16:52:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0BC2C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888798374\/b81f96474731718599aea4fa77153e00.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888798374\/b81f96474731718599aea4fa77153e00.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657970870254718976\/mUoEaMDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657970870254718976\/mUoEaMDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503256451\/1445819178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:39 +0000 2015","id":663727403580174336,"id_str":"663727403580174336","text":"\ud83c\udf1a\ud83c\udf1d https:\/\/t.co\/f7HQwJLXWS","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214374371,"id_str":"214374371","name":"[$]VIX","screen_name":"OfficialSaik","location":"Tenerife","url":"http:\/\/www.youtube.com\/user\/critikaysaikVEVO","description":"14. Dreamer, NH2, Cantante y Compositor @OfficialCyS. \/\/contratacion@larock.com.es Snapchat: official.saik \/\/ http:\/\/Instagram.com\/Saikphoto","protected":false,"verified":true,"followers_count":80369,"friends_count":870,"listed_count":190,"favourites_count":8344,"statuses_count":22798,"created_at":"Thu Nov 11 07:31:44 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432566658805145600\/Dfxl40Li.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432566658805145600\/Dfxl40Li.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637925708061372416\/ybMlZocA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637925708061372416\/ybMlZocA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214374371\/1432583987","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":46,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f7HQwJLXWS","expanded_url":"https:\/\/instagram.com\/p\/93iJJPjqb4\/","display_url":"instagram.com\/p\/93iJJPjqb4\/","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f7HQwJLXWS","expanded_url":"https:\/\/instagram.com\/p\/93iJJPjqb4\/","display_url":"instagram.com\/p\/93iJJPjqb4\/","indices":[21,44]}],"user_mentions":[{"screen_name":"OfficialSaik","name":"[$]VIX","id":214374371,"id_str":"214374371","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080022658"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824819201,"id_str":"663727837824819201","text":"RT @Soul_Touch_: 3 Steps to Overcome Shyness, retweet :)\n\nclick here, http:\/\/t.co\/iEDKNsefrF http:\/\/t.co\/NUkdpFpfxD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277632405,"id_str":"3277632405","name":"Big Booties","screen_name":"bigbootyladyz","location":"USA","url":"http:\/\/bit.ly\/BigBootyLadyz","description":"You like big butts? Well we have all the big butts worldwide. Follow us too keep track of all this booty meat.","protected":false,"verified":false,"followers_count":2621,"friends_count":5002,"listed_count":33,"favourites_count":6564,"statuses_count":7944,"created_at":"Sun May 17 15:34:34 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623684823656333312\/D2CE2_lG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623684823656333312\/D2CE2_lG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277632405\/1437533037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 29 03:30:48 +0000 2015","id":648701431864803328,"id_str":"648701431864803328","text":"3 Steps to Overcome Shyness, retweet :)\n\nclick here, http:\/\/t.co\/iEDKNsefrF http:\/\/t.co\/NUkdpFpfxD","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093401991,"id_str":"3093401991","name":"Soul Touch","screen_name":"Soul_Touch_","location":"Follow her for inspiration, ","url":"http:\/\/bit.ly\/1K1wTRu","description":"Subscribe to her Inspirational channel here http:\/\/bit.ly\/1LqDlS4 ~~~~~~~~~~~~~~\nFor promoting on this page email, business_inquiry@outlook.com","protected":false,"verified":false,"followers_count":29144,"friends_count":11962,"listed_count":16,"favourites_count":5,"statuses_count":80665,"created_at":"Tue Mar 17 21:25:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577944441538777089\/ZtPhsBn0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577944441538777089\/ZtPhsBn0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3093401991\/1426627686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/iEDKNsefrF","expanded_url":"http:\/\/curetodaysubliminal.blogspot.com\/2015\/05\/3-steps-to-overcome-shyness-step-1.html","display_url":"curetodaysubliminal.blogspot.com\/2015\/05\/3-step\u2026","indices":[53,75]}],"user_mentions":[],"symbols":[],"media":[{"id":648701431399247872,"id_str":"648701431399247872","indices":[76,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","url":"http:\/\/t.co\/NUkdpFpfxD","display_url":"pic.twitter.com\/NUkdpFpfxD","expanded_url":"http:\/\/twitter.com\/Soul_Touch_\/status\/648701431864803328\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":648701431399247872,"id_str":"648701431399247872","indices":[76,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","url":"http:\/\/t.co\/NUkdpFpfxD","display_url":"pic.twitter.com\/NUkdpFpfxD","expanded_url":"http:\/\/twitter.com\/Soul_Touch_\/status\/648701431864803328\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/iEDKNsefrF","expanded_url":"http:\/\/curetodaysubliminal.blogspot.com\/2015\/05\/3-steps-to-overcome-shyness-step-1.html","display_url":"curetodaysubliminal.blogspot.com\/2015\/05\/3-step\u2026","indices":[70,92]}],"user_mentions":[{"screen_name":"Soul_Touch_","name":"Soul Touch","id":3093401991,"id_str":"3093401991","indices":[3,15]}],"symbols":[],"media":[{"id":648701431399247872,"id_str":"648701431399247872","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","url":"http:\/\/t.co\/NUkdpFpfxD","display_url":"pic.twitter.com\/NUkdpFpfxD","expanded_url":"http:\/\/twitter.com\/Soul_Touch_\/status\/648701431864803328\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":648701431864803328,"source_status_id_str":"648701431864803328","source_user_id":3093401991,"source_user_id_str":"3093401991"}]},"extended_entities":{"media":[{"id":648701431399247872,"id_str":"648701431399247872","indices":[93,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQCmg8_W8AA8sNO.jpg","url":"http:\/\/t.co\/NUkdpFpfxD","display_url":"pic.twitter.com\/NUkdpFpfxD","expanded_url":"http:\/\/twitter.com\/Soul_Touch_\/status\/648701431864803328\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":648701431864803328,"source_status_id_str":"648701431864803328","source_user_id":3093401991,"source_user_id_str":"3093401991"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824708608,"id_str":"663727837824708608","text":"\uc548\ub155\ud558\uc138\uc694 \uc561\uccb4\uc785\ub2c8\ub354","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3265958166,"id_str":"3265958166","name":"[\ud654\uc811\ud48d\uc6d4] \ub8e8\u314e\u314f","screen_name":"179xRH","location":"\uc138\uc774\ub3c4 \uae30\uc219\uc0ac","url":null,"description":"\uc131\uc778\/ \uc0ac\uc774\ud37c\uc988\/ \uc77c\uc131\uc6b0 \ubcf8\uc9c4\/ \uce74\ubbf8\uc57c \ud788\ub85c\uc2dc\u795e\u8c37\u6d69\u53f2\/ \uc0ac\ucfe0\ub77c\uc774 \ud0c0\uce74\ud788\ub85c\u6afb\u4e95\u5b5d\u5b8f\/ \uba54\uc774\uc988\ub7ec\ub108 \uc2dc\ub9ac\uc988\/ \ub2e4\uc774\uc5d0\uc774\/\uce98\ub9ac \ucd08\ubcf4\uc790\/ \u65e5\u672c\u8a9e\u52c9\u5f37\u4e2d\/ \uae4a\uace0 \ub2e4\uc591\ud558\uac8c \ud30c\uc694!\/\uc790\uc720\ub86d\uac8c \ube14\uc5b8\ube14\ud574\uc8fc\uc138\uc694!","protected":false,"verified":false,"followers_count":39,"friends_count":63,"listed_count":0,"favourites_count":1136,"statuses_count":27972,"created_at":"Thu Jul 02 12:15:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648883832809062400\/gMSk5sQd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648883832809062400\/gMSk5sQd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3265958166\/1441715003","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080022661"} +{"delete":{"status":{"id":663639921035341824,"id_str":"663639921035341824","user_id":1865807432,"user_id_str":"1865807432"},"timestamp_ms":"1447080022706"}} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824860161,"id_str":"663727837824860161","text":"July news from maiden4real16: https:\/\/t.co\/rIGlz4rOE1 #July2015","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246336672,"id_str":"3246336672","name":"July 2015","screen_name":"july2k15","location":null,"url":null,"description":"The month of July, 2015.","protected":false,"verified":false,"followers_count":1176,"friends_count":438,"listed_count":53,"favourites_count":0,"statuses_count":318285,"created_at":"Tue Jun 16 01:01:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610614631283830784\/8LMjBwaS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610614631283830784\/8LMjBwaS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663597885078900736,"quoted_status_id_str":"663597885078900736","quoted_status":{"created_at":"Mon Nov 09 06:03:59 +0000 2015","id":663597885078900736,"id_str":"663597885078900736","text":"Napaka-thoughtful and loving boyfriend ni Alden 100 roses para sa 100 days when they first met on July 16. #ALDUBMissingRing","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122609727,"id_str":"122609727","name":"Nora Calderon","screen_name":"noivcalderon","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":49551,"friends_count":854,"listed_count":25,"favourites_count":143,"statuses_count":21000,"created_at":"Sat Mar 13 08:24:36 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1260506135\/269358080_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1260506135\/269358080_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122609727\/1384582836","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[107,124]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"July2015","indices":[54,63]}],"urls":[{"url":"https:\/\/t.co\/rIGlz4rOE1","expanded_url":"http:\/\/twitter.com\/maiden4real16\/status\/663727582739693568","display_url":"twitter.com\/maiden4real16\/\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837828943873,"id_str":"663727837828943873","text":"\u30e9\u30a4\u30a2\u30f3\u3055\u3093\u3001\u3081\u3063\u3061\u3083\u3044\u3044\u4eba\u3060\u3063\u305f\u3002\n\u3051\u3069\u3001\u3042\u3063\u3055\u308a\u53bb\u3063\u3066\u3044\u3063\u305f\n\u4f55\u3060\u3063\u305f\u3093\u3060\u308d\u3046\u3002\u5e7b\uff1f","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1702455535,"id_str":"1702455535","name":"\u30c9\u30e9\u30b4\u30f3\u5927\u7d0d\u8a00","screen_name":"kenkouhamanako","location":null,"url":null,"description":"\u30af\u30bd\u30aa\u30bf\u5973\u58c1\u6253\u3061\u57a2\n \u4e3b\u306b\u597d\u304d\u306a\u3053\u3068\u3092\u30e1\u30e2\u3057\u3066\u3044\u307e\u3059\u3002\n\u6210\u4eba\u6e08\u307f \n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":8,"friends_count":59,"listed_count":0,"favourites_count":802,"statuses_count":716,"created_at":"Mon Aug 26 17:01:11 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441258991880925185\/8YwkZhvD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441258991880925185\/8YwkZhvD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022662"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824860160,"id_str":"663727837824860160","text":"Bus\ud83d\ude8d kam nicht ...\ud83d\ude21 @xmariebrx unsere Woche h\u00e4tte nicht starten k\u00f6nnen \ud83d\ude24 #Dankesch\u00f6n#hateanalle\u00f6ffentlicheverkehrsmittel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3073216024,"id_str":"3073216024","name":"German_Cheernastic","screen_name":"dancing4mylive","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":46,"listed_count":0,"favourites_count":97,"statuses_count":66,"created_at":"Thu Mar 05 19:17:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602942476320636929\/f6ft34wt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602942476320636929\/f6ft34wt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3073216024\/1432587663","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837845721089,"id_str":"663727837845721089","text":"@nurlisanindyas inbox fb or twitter?","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727407736750084,"in_reply_to_status_id_str":"663727407736750084","in_reply_to_user_id":1693237848,"in_reply_to_user_id_str":"1693237848","in_reply_to_screen_name":"NurlisAnindyaS","user":{"id":1360666566,"id_str":"1360666566","name":"Zahra Constable","screen_name":"raYaya_shidqia","location":"Belanda-Indonesia","url":null,"description":"\u20223 mei 1998 \u2022Krosser Depok\u2665 \u2022 Follback?Just mention! (\u0e07\u02c6\u25bd\u02c6)\u0e07 @FatinSL @ridysuryoseno @dianwidjil @_krosboi_ @AnisaRahma_Adi","protected":false,"verified":false,"followers_count":459,"friends_count":284,"listed_count":0,"favourites_count":203,"statuses_count":5833,"created_at":"Thu Apr 18 00:49:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/869629318\/2df7fbf5277658cf965d5f37da557dfc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/869629318\/2df7fbf5277658cf965d5f37da557dfc.jpeg","profile_background_tile":true,"profile_link_color":"066E06","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"24210E","profile_text_color":"89B5A2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637506393902178304\/_4ebvkuU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637506393902178304\/_4ebvkuU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1360666566\/1444442876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NurlisAnindyaS","name":"Lisa \u265a","id":1693237848,"id_str":"1693237848","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022666"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824815105,"id_str":"663727837824815105","text":"V\u00cdDEO || Participante do \"La Banda\"\nperformando Steal My Girl essa noite. (via\n@WorldNotes1D ) #4DaysUntilMITAM\nhttps:\/\/t.co\/VpIznLAgLq","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":932610090,"id_str":"932610090","name":"Harry Styles BR","screen_name":"HarryStylesBR5","location":" Brasil - World","url":"http:\/\/harrystylesbr5.tumblr.com\/","description":"Fonte de informa\u00e7\u00f5es sobre Harry Styles a banda One Direction e Zayn Malik no Brasil. #HSBR\n\u2709 harrystylesbr5@hotmail.com","protected":false,"verified":false,"followers_count":13520,"friends_count":865,"listed_count":15,"favourites_count":3651,"statuses_count":51857,"created_at":"Wed Nov 07 18:10:10 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648625834626957312\/Qnu93d2A.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648625834626957312\/Qnu93d2A.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662600212167401472\/R0Xk9fCW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662600212167401472\/R0Xk9fCW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/932610090\/1446810315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[95,111]}],"urls":[],"user_mentions":[{"screen_name":"WorldNotes1D","name":"World Notes1D","id":787903946,"id_str":"787903946","indices":[79,92]}],"symbols":[],"media":[{"id":663540608930177024,"id_str":"663540608930177024","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663540608930177024\/pu\/img\/vBtkIrONg7j0GYZ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663540608930177024\/pu\/img\/vBtkIrONg7j0GYZ9.jpg","url":"https:\/\/t.co\/VpIznLAgLq","display_url":"pic.twitter.com\/VpIznLAgLq","expanded_url":"http:\/\/twitter.com\/WorldNotes1D\/status\/663540735837245440\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663540735837245440,"source_status_id_str":"663540735837245440","source_user_id":787903946,"source_user_id_str":"787903946"}]},"extended_entities":{"media":[{"id":663540608930177024,"id_str":"663540608930177024","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663540608930177024\/pu\/img\/vBtkIrONg7j0GYZ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663540608930177024\/pu\/img\/vBtkIrONg7j0GYZ9.jpg","url":"https:\/\/t.co\/VpIznLAgLq","display_url":"pic.twitter.com\/VpIznLAgLq","expanded_url":"http:\/\/twitter.com\/WorldNotes1D\/status\/663540735837245440\/video\/1","type":"video","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663540735837245440,"source_status_id_str":"663540735837245440","source_user_id":787903946,"source_user_id_str":"787903946","video_info":{"aspect_ratio":[4,3],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663540608930177024\/pu\/pl\/_YZl1zWrpGssPb0O.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663540608930177024\/pu\/pl\/_YZl1zWrpGssPb0O.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663540608930177024\/pu\/vid\/480x360\/eKhi2jpbNescBzO7.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663540608930177024\/pu\/vid\/240x180\/G2o0NyycWiATTAIo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663540608930177024\/pu\/vid\/480x360\/eKhi2jpbNescBzO7.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837816451072,"id_str":"663727837816451072","text":"RT @NKyTribune: Lawsuit against Newport Independent Schools by Somerset High football player dismissed, https:\/\/t.co\/PmTkk03pFM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1969933040,"id_str":"1969933040","name":"NthKildare Sinn F\u00e9in","screen_name":"NthKlldareSF","location":"County Kildare","url":"http:\/\/www.sinnfein.ie\/","description":"Since the wise men have not spoken,I speak that am only a fool;A fool that hath loved his folly...PH Pearse#Ireland","protected":false,"verified":false,"followers_count":271,"friends_count":125,"listed_count":17,"favourites_count":1420,"statuses_count":1617,"created_at":"Sat Oct 19 01:01:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534262950492917760\/n8H1noai_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534262950492917760\/n8H1noai_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1969933040\/1416213187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:52 +0000 2015","id":663726957134090244,"id_str":"663726957134090244","text":"Lawsuit against Newport Independent Schools by Somerset High football player dismissed, https:\/\/t.co\/PmTkk03pFM","source":"\u003ca href=\"http:\/\/hybridlogic.co.uk\/code\/wordpress-plugins\/hl-twitter\/\" rel=\"nofollow\"\u003eHL Twittter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2974515173,"id_str":"2974515173","name":"NKyTribune","screen_name":"NKyTribune","location":"Fort Mitchell, KY","url":"http:\/\/www.nkytribune.com","description":"Northern Kentucky's Online Daily Newspaper","protected":false,"verified":false,"followers_count":16889,"friends_count":201,"listed_count":23,"favourites_count":29,"statuses_count":6409,"created_at":"Mon Jan 12 12:07:35 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554612555524493312\/6afHwwkO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554612555524493312\/6afHwwkO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974515173\/1421065078","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":29,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PmTkk03pFM","expanded_url":"http:\/\/www.nkyTribune.com\/?p=34775","display_url":"nkyTribune.com\/?p=34775","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PmTkk03pFM","expanded_url":"http:\/\/www.nkyTribune.com\/?p=34775","display_url":"nkyTribune.com\/?p=34775","indices":[104,127]}],"user_mentions":[{"screen_name":"NKyTribune","name":"NKyTribune","id":2974515173,"id_str":"2974515173","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022659"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837845823488,"id_str":"663727837845823488","text":"Gibt es ein ausf\u00fchrliches Partei-Programm der Gr\u00fcnen Partei der Schweiz (als PDF oder gedruckt)? @Gr\u00fcneCH #Followerpower","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":447068244,"id_str":"447068244","name":"Martina Koch","screen_name":"mphoenixie","location":"bern \/ fribourg \/ seetal","url":null,"description":"\u203a moderatorin @radio_neo1 \/ studentin @unifr & @IPWunibern","protected":false,"verified":false,"followers_count":376,"friends_count":494,"listed_count":22,"favourites_count":4770,"statuses_count":107,"created_at":"Mon Dec 26 13:24:17 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"A9BAAE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/703261657\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/703261657\/0d0b9ded3ede183c30b139fe63bf6d05.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C98D7B","profile_text_color":"DEB297","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643501296507617280\/10ZQ3S79_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643501296507617280\/10ZQ3S79_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447068244\/1431281383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Followerpower","indices":[106,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080022666"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837807951872,"id_str":"663727837807951872","text":"@maikawamiyako \u3069\u3053\u306e\u30a4\u30b1\u30e1\u30f3\u3055\u3093\u304b\u3068\u601d\u308f\u305a\u4e8c\u5ea6\u898b\u3057\u3061\u3083\u3044\u307e\u3057\u305f\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726764296810497,"in_reply_to_status_id_str":"663726764296810497","in_reply_to_user_id":3069964700,"in_reply_to_user_id_str":"3069964700","in_reply_to_screen_name":"maikawamiyako","user":{"id":598512908,"id_str":"598512908","name":"\u304f\u307e","screen_name":"March28Yki","location":null,"url":null,"description":"\u718a\u672c\/\u6771\u4eac\/\u6642\u3005\u57fc\u7389\/\u7acb\u6559","protected":false,"verified":false,"followers_count":350,"friends_count":529,"listed_count":7,"favourites_count":1744,"statuses_count":9679,"created_at":"Sun Jun 03 17:39:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658648873242464256\/q7m_47XO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658648873242464256\/q7m_47XO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598512908\/1404735206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maikawamiyako","name":"\u821e\u5ddd\u307f\u3084\u3053","id":3069964700,"id_str":"3069964700","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022657"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837266944,"id_str":"663727837837266944","text":"@bananahongcha \uc624\uc6b0 \ubc14\ub098\ub098\ub2d8.... \uc774 \ubb34\uc2a8 \uad50\ud1b5\uc0ac\uace0\uc5d0\uc11c \uc0b4\uc544\ub0a8\ub294 \ubc95\uc744 \uccb4\ub4dd\ud558\uace0 \uc788\uc5b4...","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727568655257600,"in_reply_to_status_id_str":"663727568655257600","in_reply_to_user_id":3100637370,"in_reply_to_user_id_str":"3100637370","in_reply_to_screen_name":"bananahongcha","user":{"id":2794022821,"id_str":"2794022821","name":"\uce74\uc988\uc708\uc774 \uc2e0\ub8b0\ud55c \uc81c\ub125\uc2a4[JENEX]","screen_name":"_jenex_","location":"\uc5d0\ub9b0. \uc9c0\uae08\uc740 \uce74\uc988\uc708(@caswyn_jenex)\uc758 \uacc1","url":null,"description":"\uadf8\ub9bc\ub7ec+\uc18c\ube44\ub7ec \/ \ub9ac\ud2b8\uc717\uc694\uc815 \/ \ub9c8\ube44\ub178\uae30 \uae30\uc0ac\ub2e8 \uc911\uc2ec \/ \ub4dc\ub9bc\ub7ec \/ \ud604\uc7ac \ub9de\ud314\ub85c\uc6b0\ub294 \ud558\uc9c0 \uc54a\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uad6c\ub3c5\uc740 \uad1c\ucc2e\uc544\uc694. \uc815\uce58\uacc4, \uc77c\ubc18\uc778 \ud314\ub85cX \/\uad6c\ub3c5\ud314\ub85c&\ube14\ub77d \ud504\ub9ac. \uc800\ub3c4 \ud504\ub9ac. \/ \uc790\uc138\ud55c \uac74 \uba54\uc778\ud2b8\uc717\uc758 \ud504\ub85c\ud544 \ub9c1\ud06c\ub85c!","protected":false,"verified":false,"followers_count":179,"friends_count":326,"listed_count":1,"favourites_count":5239,"statuses_count":31216,"created_at":"Sat Sep 06 13:59:14 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661538427435782145\/ioKXBf4H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661538427435782145\/ioKXBf4H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2794022821\/1445925324","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bananahongcha","name":"Fall in love\u2661\ubc14\ub098\ub098\ud64d\ucc28","id":3100637370,"id_str":"3100637370","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837807964160,"id_str":"663727837807964160","text":"\u4e3b\u5f79\u306b\u7acb\u3064\u306a\u3089\u305b\u3081\u3066\u3042\u30681000\u306f\u653b\u6483\u529b\u6b32\u3057\u3044\u3002\u3066\u304b\u30bb\u30a4\u30d0\u30fc\u306f\u30a2\u30eb\u30c6\u30e9\u3055\u3093\u3067\u5145\u5206\u3060\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2551920108,"id_str":"2551920108","name":"\u4e03\u591cYP(\u30b8\u30e3\u30c3\u30af\u30fb\u30b6\u30fb\u6589\u85e4)","screen_name":"Gilgames231","location":"\u30c7\u30e5\u30a8\u30ea\u30b9\u90fd","url":null,"description":"\u305f\u3060\u306e\u904a\u622f\u738b\u5927\u597d\u304d\u4eba\u9593\u3067\u3059\u3002\u30a2\u30cb\u30e1\u3092\u898b\u305f\u611f\u60f3\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u308a\u3001\u904a\u622f\u738b\u306b\u95a2\u3057\u3066\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u307b\u307c100%\u3057\u307e\u3059\u3002\u904a\u622f\u738b\u597d\u304d\u3068\u304b\u3044\u3044\u3064\u3064\u578b\u6708\u3082\u597d\u304d\u3001YP\u306f\u7d61\u3093\u3067\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3002\u30ea\u30e0\u308b\u306a\u3089\u30d6\u30ed\u30c3\u30af\u3057\u308d","protected":false,"verified":false,"followers_count":300,"friends_count":247,"listed_count":4,"favourites_count":1240,"statuses_count":15305,"created_at":"Sat Jun 07 06:49:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717193364803584\/Pog06j2N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717193364803584\/Pog06j2N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2551920108\/1433859924","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022657"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837828923392,"id_str":"663727837828923392","text":"RT @niinep: \u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e21\u0e31\u0e19\u0e08\u0e1a\u0e41\u0e25\u0e49\u0e27\u0e04\u0e07\u0e44\u0e21\u0e48\u0e41\u0e04\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e04\u0e19\u0e23\u0e49\u0e2d\u0e07\u0e44\u0e2b\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1935254790,"id_str":"1935254790","name":"july","screen_name":"ppukkiekie","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":165,"friends_count":553,"listed_count":1,"favourites_count":4733,"statuses_count":18057,"created_at":"Fri Oct 04 19:51:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473064628625235968\/LeDxbx13_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473064628625235968\/LeDxbx13_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1935254790\/1400174946","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:18 +0000 2015","id":663727316506312704,"id_str":"663727316506312704","text":"\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e21\u0e31\u0e19\u0e08\u0e1a\u0e41\u0e25\u0e49\u0e27\u0e04\u0e07\u0e44\u0e21\u0e48\u0e41\u0e04\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e04\u0e19\u0e23\u0e49\u0e2d\u0e07\u0e44\u0e2b\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230683432,"id_str":"230683432","name":"nine","screen_name":"niinep","location":null,"url":"http:\/\/ask.fm\/nnninnne","description":"ig,snap: niinep","protected":false,"verified":false,"followers_count":2865,"friends_count":27,"listed_count":2,"favourites_count":21,"statuses_count":93869,"created_at":"Sun Dec 26 09:57:31 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF9999","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679561131\/61761fe168cac4923066f14edbfdb203.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679561131\/61761fe168cac4923066f14edbfdb203.jpeg","profile_background_tile":true,"profile_link_color":"FF9999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBBCBC","profile_text_color":"FA7373","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663348850606759936\/lYE76xNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663348850606759936\/lYE76xNu_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"niinep","name":"nine","id":230683432,"id_str":"230683432","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080022662"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837324288,"id_str":"663727837837324288","text":"RT @Rakuo_07: \u3042\u3093\u30b9\u30bf\u306e\u30d0\u30b0\u3067\u4e00\u756a\u308f\u3089\u3063\u305f\u306e\u306f\u3053\u308c\u306a\u3093\u3060\u3088\u306a\u3041 https:\/\/t.co\/x3L0LxNTTS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539944636,"id_str":"539944636","name":"\u3081\u3046\u305f","screen_name":"miuru0912","location":"\u203b\u3064\u3044\u3077\u308d\u4e00\u8aad\u63a8\u5968","url":"http:\/\/twpf.jp\/miuru0912","description":"\u6dbc\u91ce\u98a8\u4ecb(\u30d0\u30f3\u30ac\u30bc)\u3068\u5927\u548c\u5b88\u5b89\u5b9a\u3068\u6714\u9593\u51db\u6708 \u305f\u307e\u306b\u304a\u7d75\u63cf\u304d \u67d3\u8c37\u5c06\u592a\u3067\u6cb8\u304f\u30d5\u30fc\u30c9\u30d5\u30a1\u30a4\u30bf\u30fc","protected":false,"verified":false,"followers_count":288,"friends_count":138,"listed_count":12,"favourites_count":2232,"statuses_count":38903,"created_at":"Thu Mar 29 12:40:02 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000144650692\/iP8cvFKx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000144650692\/iP8cvFKx.png","profile_background_tile":false,"profile_link_color":"CFE622","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663663911661494273\/Misjo6q9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663663911661494273\/Misjo6q9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539944636\/1442767457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:24 +0000 2015","id":663720042568151040,"id_str":"663720042568151040","text":"\u3042\u3093\u30b9\u30bf\u306e\u30d0\u30b0\u3067\u4e00\u756a\u308f\u3089\u3063\u305f\u306e\u306f\u3053\u308c\u306a\u3093\u3060\u3088\u306a\u3041 https:\/\/t.co\/x3L0LxNTTS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3006403543,"id_str":"3006403543","name":"\u62d3\u4e1622\u65e5\u307d\u3063\u3061\u3083\u3093\u306b1000\u5186","screen_name":"Rakuo_07","location":"Russian","url":null,"description":"\u85ab\u306a\u305a \u30a2\u30a4\u30ab\u30c4 \u6606\u5e03\nhttp:\/\/twpf.jp\/Rakuo_07\n\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":145,"friends_count":117,"listed_count":1,"favourites_count":7532,"statuses_count":27430,"created_at":"Sun Feb 01 10:16:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622992953607385088\/L0YbrgNc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622992953607385088\/L0YbrgNc.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662259118439202816\/R2eX7d-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662259118439202816\/R2eX7d-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3006403543\/1446984320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":732,"favorite_count":439,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rakuo_07","name":"\u62d3\u4e1622\u65e5\u307d\u3063\u3061\u3083\u3093\u306b1000\u5186","id":3006403543,"id_str":"3006403543","indices":[3,12]}],"symbols":[],"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720042568151040,"source_status_id_str":"663720042568151040","source_user_id":3006403543,"source_user_id_str":"3006403543"}]},"extended_entities":{"media":[{"id":663720033139359745,"id_str":"663720033139359745","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2oWVAAEQwkt.jpg","url":"https:\/\/t.co\/x3L0LxNTTS","display_url":"pic.twitter.com\/x3L0LxNTTS","expanded_url":"http:\/\/twitter.com\/Rakuo_07\/status\/663720042568151040\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720042568151040,"source_status_id_str":"663720042568151040","source_user_id":3006403543,"source_user_id_str":"3006403543"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837829054465,"id_str":"663727837829054465","text":"RT @Audiorecord_slt: Ricky Martin en Salta: Se adelanta la fecha de presentaci\u00f3n https:\/\/t.co\/cJpXBeCIZf https:\/\/t.co\/1maSVSCIsF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89692677,"id_str":"89692677","name":"caRMen","screen_name":"caRMenrique","location":"espa\u00f1a","url":null,"description":"Desde tu primer pasito p\u00b4alante...juntos caminamos","protected":false,"verified":false,"followers_count":990,"friends_count":189,"listed_count":16,"favourites_count":2528,"statuses_count":19413,"created_at":"Fri Nov 13 12:55:46 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675670648\/358121a3821dfbcb8942ba34ab1b0046.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675670648\/358121a3821dfbcb8942ba34ab1b0046.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"963396","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556912687389487104\/FewPIAwU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556912687389487104\/FewPIAwU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89692677\/1398801735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:07 +0000 2015","id":663721482321686529,"id_str":"663721482321686529","text":"Ricky Martin en Salta: Se adelanta la fecha de presentaci\u00f3n https:\/\/t.co\/cJpXBeCIZf https:\/\/t.co\/1maSVSCIsF","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266731670,"id_str":"266731670","name":"Audiorecord Salta","screen_name":"Audiorecord_slt","location":"Salta,Argentina","url":"https:\/\/www.facebook.com\/audiorecordsalta","description":"*M\u00fasica *Eventos NOA *Noticias *Tips *Sonido *Iluminaci\u00f3n *Djs *Producci\u00f3n musical *Edici\u00f3n Audio y video *Locutores *Blog: http:\/\/audiorecordsalta.com","protected":false,"verified":false,"followers_count":131,"friends_count":259,"listed_count":2,"favourites_count":37,"statuses_count":1360,"created_at":"Tue Mar 15 18:22:18 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535830540138463232\/x4AOpKMQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535830540138463232\/x4AOpKMQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266731670\/1416586876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cJpXBeCIZf","expanded_url":"http:\/\/dlvr.it\/ChfDPd","display_url":"dlvr.it\/ChfDPd","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663721481780621312,"id_str":"663721481780621312","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","url":"https:\/\/t.co\/1maSVSCIsF","display_url":"pic.twitter.com\/1maSVSCIsF","expanded_url":"http:\/\/twitter.com\/Audiorecord_slt\/status\/663721482321686529\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721481780621312,"id_str":"663721481780621312","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","url":"https:\/\/t.co\/1maSVSCIsF","display_url":"pic.twitter.com\/1maSVSCIsF","expanded_url":"http:\/\/twitter.com\/Audiorecord_slt\/status\/663721482321686529\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cJpXBeCIZf","expanded_url":"http:\/\/dlvr.it\/ChfDPd","display_url":"dlvr.it\/ChfDPd","indices":[81,104]}],"user_mentions":[{"screen_name":"Audiorecord_slt","name":"Audiorecord Salta","id":266731670,"id_str":"266731670","indices":[3,19]}],"symbols":[],"media":[{"id":663721481780621312,"id_str":"663721481780621312","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","url":"https:\/\/t.co\/1maSVSCIsF","display_url":"pic.twitter.com\/1maSVSCIsF","expanded_url":"http:\/\/twitter.com\/Audiorecord_slt\/status\/663721482321686529\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663721482321686529,"source_status_id_str":"663721482321686529","source_user_id":266731670,"source_user_id_str":"266731670"}]},"extended_entities":{"media":[{"id":663721481780621312,"id_str":"663721481780621312","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDK89UcAAKzWG.jpg","url":"https:\/\/t.co\/1maSVSCIsF","display_url":"pic.twitter.com\/1maSVSCIsF","expanded_url":"http:\/\/twitter.com\/Audiorecord_slt\/status\/663721482321686529\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663721482321686529,"source_status_id_str":"663721482321686529","source_user_id":266731670,"source_user_id_str":"266731670"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080022662"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837820555264,"id_str":"663727837820555264","text":"RT @macatoco: @side_trade \n\u51fa\uff09\u3010\uff8a\uff9f\uff72\uff9a\uff70\uff82\u3011\u6a58 \u5fd7\u72fc\n\u6c42\uff09\u3010\uff8a\uff9e\uff9d\uff84\uff9e\u2605\uff81\uff6c\uff9a\uff9d\uff7c\uff9e\u3011\u7d05\u4e95 \u6731\u96c0 \u307e\u305f\u306f \u30bc\u30ea\u30fc15\n\u4e0a\u8a18\u306e\u30c8\u30ec\u30fc\u30c9\u3092\u52df\u96c6\u3057\u3066\u3044\u307e\u3059\u3002\u6761\u4ef6\u306e\u5408\u3046\u65b9\u304c\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3057\u305f\u3089\u3001\u30d5\u30a9\u30ed\u30fc\u5916\u304b\u3089\u3067\u3082\u304a\u6c17\u8efd\u306b\u304a\u58f0\u304c\u3051\u3044\u305f\u3060\u3051\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002M\u30de\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2313183330,"id_str":"2313183330","name":"\u5893","screen_name":"klkrbs","location":"\u821e\u7530\u985e\u62c5","url":null,"description":"\u821e\u7530\u62c5\u305b\u3080P\u795e\u901f\u63a8\u3057\u306e\u3042\u3081\u3053P\u3002\u5730\u96f7\u306e\u306a\u3044\u3072\u3068\u5411\u3051\u3002\u815020\u2191 \u25b2\uff8a\uff9a\uff9d\uff81\u306a\u57a2@krkrhappy","protected":false,"verified":false,"followers_count":207,"friends_count":177,"listed_count":16,"favourites_count":40251,"statuses_count":55047,"created_at":"Mon Jan 27 07:18:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514505415543906304\/9CSG8oF4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514505415543906304\/9CSG8oF4.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651259698964860929\/U0VIktmb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651259698964860929\/U0VIktmb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2313183330\/1442940409","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:37 +0000 2015","id":663702985256468480,"id_str":"663702985256468480","text":"@side_trade \n\u51fa\uff09\u3010\uff8a\uff9f\uff72\uff9a\uff70\uff82\u3011\u6a58 \u5fd7\u72fc\n\u6c42\uff09\u3010\uff8a\uff9e\uff9d\uff84\uff9e\u2605\uff81\uff6c\uff9a\uff9d\uff7c\uff9e\u3011\u7d05\u4e95 \u6731\u96c0 \u307e\u305f\u306f \u30bc\u30ea\u30fc15\n\u4e0a\u8a18\u306e\u30c8\u30ec\u30fc\u30c9\u3092\u52df\u96c6\u3057\u3066\u3044\u307e\u3059\u3002\u6761\u4ef6\u306e\u5408\u3046\u65b9\u304c\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3057\u305f\u3089\u3001\u30d5\u30a9\u30ed\u30fc\u5916\u304b\u3089\u3067\u3082\u304a\u6c17\u8efd\u306b\u304a\u58f0\u304c\u3051\u3044\u305f\u3060\u3051\u308c\u3070\u3068\u601d\u3044\u307e\u3059\u3002M\u30de\u30b9\/sideM\/\u4ea4\u63db","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2954946812,"in_reply_to_user_id_str":"2954946812","in_reply_to_screen_name":"side_trade","user":{"id":2903386790,"id_str":"2903386790","name":"\u307e\u3053\u3068","screen_name":"macatoco","location":null,"url":"http:\/\/twpf.jp\/macatoco","description":"\u7248\u6a29\uff08M\u30de\u30b9\u4e2d\u5fc3\uff09\u30fb\u4f01\u753b\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3001\u30c4\u30a4\u30fc\u30c8\u306f\u3068\u304d\u3069\u304d\u6574\u7406\u6574\u9813\u3002\u795e\u901f\u4e00\u9b42\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u3002\u685c\u5ead\u3055\u3093\u306e\u30c7\u30ec\u3067\u3054\u306f\u3093\u304c\u304a\u3044\u3057\u3044\u3002\u5927\u6b63\u767e\u602a\u9332\u306b\u53c2\u52a0\u4e2d\u3002\u672c\u4f53\uff08\u65e5\u5e38\u30fb\u5275\u4f5c\u4e2d\u5fc3\uff09\u2192@macotoca","protected":false,"verified":false,"followers_count":76,"friends_count":93,"listed_count":7,"favourites_count":3985,"statuses_count":4024,"created_at":"Tue Nov 18 07:53:33 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543377343591378944\/HNVExJzb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543377343591378944\/HNVExJzb.png","profile_background_tile":true,"profile_link_color":"008DB7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618090110098128896\/DNt-d2VG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618090110098128896\/DNt-d2VG_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"side_trade","name":"M\u30de\u30b9\u30c8\u30ec\u30fc\u30c9\u632f\u308a\u5206\u3051\u30a2\u30ab\u30a6\u30f3\u30c8","id":2954946812,"id_str":"2954946812","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"macatoco","name":"\u307e\u3053\u3068","id":2903386790,"id_str":"2903386790","indices":[3,12]},{"screen_name":"side_trade","name":"M\u30de\u30b9\u30c8\u30ec\u30fc\u30c9\u632f\u308a\u5206\u3051\u30a2\u30ab\u30a6\u30f3\u30c8","id":2954946812,"id_str":"2954946812","indices":[14,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022660"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837845712897,"id_str":"663727837845712897","text":"\u3064\u304b\u307f\u3055\u304d\u3055\u3093\u3068\u904b\u8ee2\u4f1a\u306f\u3081\u3063\u3061\u3083\u304f\u3061\u3083\u3057\u305f\u3044\u3051\u3069\u30ed\u30d3\u30fc\u30fc\u30fc\u30fc\u30fc\u30ab\u30fc\u30fc\u30fc\u30fc\u30fc\u8cb7\u3063\u305f\u308923\u65e5\u306e\u897f\u6b66\u30d5\u30a1\u30f3\u30d5\u30a7\u30b9\u3067\u4f7f\u3046\u91d1\u306a\u304f\u306a\u308b\u304b\u3089\u907f\u3051\u305f\u3044","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444280186,"id_str":"444280186","name":"\u306f\u3044\u3058\u307e","screen_name":"40101F","location":"\u897f\u6b66\u30d7\u30ea\u30f3\u30b9\u30c9\u30fc\u30e0","url":"http:\/\/twpf.jp\/40101F","description":"\u57fc\u7389\u51fa\u8eab\u306e\u90fd\u6c11\u30e9\u30a4\u30aa\u30f3\u30ba\u30d5\u30a2\u30f3\u306e\u307f\u3067\u3057\u307f\u3093\u306e\u99c5\u30e1\u30e2\u30de\u30f3\u3002","protected":false,"verified":false,"followers_count":2381,"friends_count":819,"listed_count":76,"favourites_count":36315,"statuses_count":405391,"created_at":"Fri Dec 23 03:05:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F2E4A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663641999719792644\/CLOaOUwI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663641999719792644\/CLOaOUwI.png","profile_background_tile":false,"profile_link_color":"00004C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661017383771836416\/ULKqJEu-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661017383771836416\/ULKqJEu-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444280186\/1446967868","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022666"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837841526788,"id_str":"663727837841526788","text":"RT @88_nagato: \u30a2\u30b9\u30c8\u30ec\u30a4\u30ec\u30c3\u30c9\u30d5\u30ec\u30fc\u30e0\u30009\u3000\u30b8\u30e3\u30f3\u30af\u5c4b\u306e\u8da3\u5473\u6a5f\u4f53\u3068\u3057\u3066\u30ed\u30de\u30f3\u3068\u5947\u60f3\u3057\u304b\u8a70\u3081\u8fbc\u307e\u308c\u3066\u3044\u306a\u3044\u30c8\u30f3\u30c7\u30e2\u4e3b\u4eba\u516c\u6a5f\n\n\u9577\u6240\u306f\u5909\u308f\u3063\u305f\u5175\u88c5\u306e\u591a\u304f\u3092\u4e0a\u624b\u304f\u6271\u3048\u308b\u904b\u52d5\u6027\u3068\u3044\u304b\u306a\u6539\u9020\u3082\u53d7\u3051\u308b\u67d4\u8edf\u6027\u3001\u77ed\u6240\u306f\u30d0\u30e9\u30f3\u30b9\u306a\u3069\u5ea6\u5916\u8996\u306a\u3068\u3053\u308d\u3060\n\n#\u30ea\u30d7\u3067\u6765\u305f\uff2d\uff33\u306b\uff11\uff10\u6bb5\u968e\u8a55\u2026","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":819827779,"id_str":"819827779","name":"\u307c\u3093\u3084\u308a\u3084\u307e\u3065\u307b","screen_name":"kancole_zuihou","location":null,"url":"http:\/\/twpf.jp\/kancole_zuihou","description":"\u8266\u968a\u3053\u308c\u304f\u3057\u3087\u3093\u306e\u745e\u9cf3\u306e\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u3067\u3059\u3002\u30ad\u30e3\u30e9\u5d29\u58ca\u3082\u3042\u308a\u5f97\u307e\u3059\u3002\u30c4\u30a4\u30d7\u30ed\u3092\u8aad\u3093\u3067\u304b\u3089\u30d5\u30a9\u30ed\u30fc\u3092\u8003\u3048\u3066\u304f\u3060\u3055\u3044\u306d\u3063\uff1f\n\u30a2\u30a4\u30b3\u30f3\u306f\u3056\u3089\u3057\u3055\u3093 ( @sealikr )\u3088\u308a\u304a\u501f\u308a\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":1377,"friends_count":953,"listed_count":70,"favourites_count":15552,"statuses_count":62726,"created_at":"Wed Sep 12 15:51:47 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642669819565731840\/EMqJYgB9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642669819565731840\/EMqJYgB9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/819827779\/1438744720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727698217320450,"id_str":"663727698217320450","text":"\u30a2\u30b9\u30c8\u30ec\u30a4\u30ec\u30c3\u30c9\u30d5\u30ec\u30fc\u30e0\u30009\u3000\u30b8\u30e3\u30f3\u30af\u5c4b\u306e\u8da3\u5473\u6a5f\u4f53\u3068\u3057\u3066\u30ed\u30de\u30f3\u3068\u5947\u60f3\u3057\u304b\u8a70\u3081\u8fbc\u307e\u308c\u3066\u3044\u306a\u3044\u30c8\u30f3\u30c7\u30e2\u4e3b\u4eba\u516c\u6a5f\n\n\u9577\u6240\u306f\u5909\u308f\u3063\u305f\u5175\u88c5\u306e\u591a\u304f\u3092\u4e0a\u624b\u304f\u6271\u3048\u308b\u904b\u52d5\u6027\u3068\u3044\u304b\u306a\u6539\u9020\u3082\u53d7\u3051\u308b\u67d4\u8edf\u6027\u3001\u77ed\u6240\u306f\u30d0\u30e9\u30f3\u30b9\u306a\u3069\u5ea6\u5916\u8996\u306a\u3068\u3053\u308d\u3060\n\n#\u30ea\u30d7\u3067\u6765\u305f\uff2d\uff33\u306b\uff11\uff10\u6bb5\u968e\u8a55\u4fa1\u3092\u4ed8\u3051\u3066\u77ed\u6240\u9577\u6240\u3092\uff12\u3064\u3042\u3052\u308b","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2160540565,"id_str":"2160540565","name":"\u9577\u9580","screen_name":"88_nagato","location":null,"url":null,"description":"\u9577\u9580\u578b\u4e00\u756a\u8266\u306e\u6226\u8266\u9577\u9580\u3060\u3002\u304b\u3064\u3066\u306f\u30d3\u30c3\u30b07\u3068\u547c\u3070\u308c\u3001\u52c7\u540d\u3092\u99b3\u305b\u3001\u9023\u5408\u8266\u968a\u65d7\u8266\u3092\u52d9\u3081\u3066\u3044\u305f\u3053\u3068\u3082\u3042\u308b\u3002\u5f53\u7136\u306a\u304c\u3089\u975e\u516c\u5f0f\u3060\u3002\u76f8\u5f53\u7686\u306e\u30a4\u30e1\u30fc\u30b8\u3068\u306f\u304b\u3051\u96e2\u308c\u3066\u3044\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u304b\u3089\u305d\u306e\u6642\u306f\u30d6\u30ed\u30c3\u30af\u3057\u3066\u304f\u308c","protected":false,"verified":false,"followers_count":3572,"friends_count":976,"listed_count":123,"favourites_count":94,"statuses_count":48764,"created_at":"Mon Oct 28 09:18:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583103672915132416\/VAe6K8kd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583103672915132416\/VAe6K8kd_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30ea\u30d7\u3067\u6765\u305f\uff2d\uff33\u306b\uff11\uff10\u6bb5\u968e\u8a55\u4fa1\u3092\u4ed8\u3051\u3066\u77ed\u6240\u9577\u6240\u3092\uff12\u3064\u3042\u3052\u308b","indices":[110,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30ea\u30d7\u3067\u6765\u305f\uff2d\uff33\u306b\uff11\uff10\u6bb5\u968e\u8a55\u4fa1\u3092\u4ed8\u3051\u3066\u77ed\u6240\u9577\u6240\u3092\uff12\u3064\u3042\u3052\u308b","indices":[125,140]}],"urls":[],"user_mentions":[{"screen_name":"88_nagato","name":"\u9577\u9580","id":2160540565,"id_str":"2160540565","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022665"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837816360960,"id_str":"663727837816360960","text":"Potty training a puppy is the worst \u2639","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337402846,"id_str":"337402846","name":"S\u03c3f\u03b9\u03b1 \u273f","screen_name":"_sofiiaa","location":"\u273f\u2741SC: sofiiaa15\u2741\u273f","url":null,"description":"Just trying to be a better me. \u271e","protected":false,"verified":false,"followers_count":585,"friends_count":187,"listed_count":1,"favourites_count":57,"statuses_count":7285,"created_at":"Mon Jul 18 00:00:22 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/430546891\/lilac_gingham_copy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/430546891\/lilac_gingham_copy.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658846328500432896\/0Qy4DF8Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658846328500432896\/0Qy4DF8Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337402846\/1447079993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022659"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824704512,"id_str":"663727837824704512","text":"\u6700\u305f\u308b\u4f8b\u304cF\/Z\u306e\u9593\u6850\u96c1\u591c\u3060\u2026","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284015467,"id_str":"284015467","name":"\u307e\u3069\u3059\u3051\u3057\u306f\u30a4\u30ab","screen_name":"windows06","location":"\u3042\u3063\u3061\u3053\u3063\u3061","url":null,"description":"RKRN\u4e09\u5e74\u751f\/SHK\/\u5b9f\u6cc1\/Ib\/\u3086\u3081\u306b\u3063\u304d\/MH3rd~\/Splatoon\/JOJO \u4eba\u5916\u840c\u3048\u306e\u30cb\u30b3\u53a8\u3002\u72e9\u731f\u7b1b\u304c\u4f7f\u3044\u305f\u3044\u3002DIO\u69d8\u4fe1\u8005\u3002\u30d1\u30d6\u30ed\u3067\u76ee\u6307\u305b15\u30ad\u30eb\u3002\u65e5\u5e38\u3001\u6b1d\u30c4\u30a4\u30fc\u30c8\u591a\u3002\u8150\u3002\u6210\u4eba\u3002\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002","protected":false,"verified":false,"followers_count":192,"friends_count":285,"listed_count":13,"favourites_count":4445,"statuses_count":64318,"created_at":"Mon Apr 18 13:17:57 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645670249187053568\/2j1u3Tel_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645670249187053568\/2j1u3Tel_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284015467\/1422554183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812142080,"id_str":"663727837812142080","text":"RT @bagrova_1982: \"\u3071\u3063\u3068\u898b\u306f\u904a\u3093\u3067\u305d\u3046\u3060\u3051\u3069\u30fb\u30fb\u30fb\n\u5b9f\u306f\u8d85\u30de\u30b8\u30e1\u306a\u5b50\u305f\u3061\u306b\u51fa\u4f1a\u3048\u308b\u30b5\u30a4\u30c8\u898b\u3064\u3051\u307e\u3057\u305f\uff01\n\u5b8c\u5168\u533f\u540d\u3067\u51fa\u4f1a\u3048\u308b\u306e\u3082\u5b09\u3057\u3044\u306d\uff01\uff01\n\u21d2 https:\/\/t.co\/t7oILPzkCW https:\/\/t.co\/xJtlzQIjYp","source":"\u003ca href=\"https:\/\/twitter.com\/p1DHc55LZpuW8j\" rel=\"nofollow\"\u003ezmJ33Blz48HVQu\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3927404183,"id_str":"3927404183","name":"\u3058\u308f\u3058\u308f\u30c4\u30a4\u30fc\u30c8\u307e\u3068\u3081(*\u00b4\u0437`)","screen_name":"cool_fionova","location":null,"url":null,"description":"\u30af\u30b9\u30c3\u3068\u7b11\u3048\u308b\u9762\u767d\u30c4\u30a4\u30fc\u30c8\u3001RT\u6570\u304c\u591a\u304b\u3063\u305f\u30c4\u30a4\u30fc\u30c8\u3092\u30e9\u30f3\u30c0\u30e0\u3067\u3064\u3076\u3084\u304fBOT\u3067\u3059\u3002\u5185\u5bb9\u306f\u968f\u6642\u66f4\u65b0\u3057\u3066\u3044\u307e\u3059\uff01\u7b11\u3044\u5fc5\u6b7b\u3060\u3088\u266a\u7b11\u3063\u3066\u3057\u307e\u3063\u305f\u3089RT\uff01","protected":false,"verified":false,"followers_count":132,"friends_count":1446,"listed_count":0,"favourites_count":0,"statuses_count":476,"created_at":"Sun Oct 11 11:49:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657484774903164928\/6YZ5xNZC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657484774903164928\/6YZ5xNZC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3927404183\/1445591572","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727754395815936,"id_str":"663727754395815936","text":"\"\u3071\u3063\u3068\u898b\u306f\u904a\u3093\u3067\u305d\u3046\u3060\u3051\u3069\u30fb\u30fb\u30fb\n\u5b9f\u306f\u8d85\u30de\u30b8\u30e1\u306a\u5b50\u305f\u3061\u306b\u51fa\u4f1a\u3048\u308b\u30b5\u30a4\u30c8\u898b\u3064\u3051\u307e\u3057\u305f\uff01\n\u5b8c\u5168\u533f\u540d\u3067\u51fa\u4f1a\u3048\u308b\u306e\u3082\u5b09\u3057\u3044\u306d\uff01\uff01\n\u21d2 https:\/\/t.co\/t7oILPzkCW https:\/\/t.co\/xJtlzQIjYp","source":"\u003ca href=\"https:\/\/twitter.com\/7n0h2BKNqXipV4\" rel=\"nofollow\"\u003eu66CPBnqdgZ8N5\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3930282989,"id_str":"3930282989","name":"\u6700\u5f37\u2606\u795e\u30a2\u30d7\u30ea\u901f\u5831","screen_name":"bagrova_1982","location":null,"url":null,"description":"\u6700\u5f37\u306e\u795e\u30a2\u30d7\u30ea\u6848\u4ef6\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304d\u307e\u3059\u2606 \u7686\u3055\u3093\u30d5\u30a9\u30ed\u30fc\uff06RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2764","protected":false,"verified":false,"followers_count":4,"friends_count":1,"listed_count":1,"favourites_count":0,"statuses_count":3,"created_at":"Sun Oct 11 19:08:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657473862590791681\/NByAbRhn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657473862590791681\/NByAbRhn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3930282989\/1445588972","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t7oILPzkCW","expanded_url":"http:\/\/goo.gl\/7ZgrGv","display_url":"goo.gl\/7ZgrGv","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":663727753951252481,"id_str":"663727753951252481","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","url":"https:\/\/t.co\/xJtlzQIjYp","display_url":"pic.twitter.com\/xJtlzQIjYp","expanded_url":"http:\/\/twitter.com\/bagrova_1982\/status\/663727754395815936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":301,"h":398,"resize":"fit"},"medium":{"w":301,"h":398,"resize":"fit"},"large":{"w":301,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727753951252481,"id_str":"663727753951252481","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","url":"https:\/\/t.co\/xJtlzQIjYp","display_url":"pic.twitter.com\/xJtlzQIjYp","expanded_url":"http:\/\/twitter.com\/bagrova_1982\/status\/663727754395815936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":301,"h":398,"resize":"fit"},"medium":{"w":301,"h":398,"resize":"fit"},"large":{"w":301,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t7oILPzkCW","expanded_url":"http:\/\/goo.gl\/7ZgrGv","display_url":"goo.gl\/7ZgrGv","indices":[82,105]}],"user_mentions":[{"screen_name":"bagrova_1982","name":"\u6700\u5f37\u2606\u795e\u30a2\u30d7\u30ea\u901f\u5831","id":3930282989,"id_str":"3930282989","indices":[3,16]}],"symbols":[],"media":[{"id":663727753951252481,"id_str":"663727753951252481","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","url":"https:\/\/t.co\/xJtlzQIjYp","display_url":"pic.twitter.com\/xJtlzQIjYp","expanded_url":"http:\/\/twitter.com\/bagrova_1982\/status\/663727754395815936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":301,"h":398,"resize":"fit"},"medium":{"w":301,"h":398,"resize":"fit"},"large":{"w":301,"h":398,"resize":"fit"}},"source_status_id":663727754395815936,"source_status_id_str":"663727754395815936","source_user_id":3930282989,"source_user_id_str":"3930282989"}]},"extended_entities":{"media":[{"id":663727753951252481,"id_str":"663727753951252481","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4CnVEAE_qDe.png","url":"https:\/\/t.co\/xJtlzQIjYp","display_url":"pic.twitter.com\/xJtlzQIjYp","expanded_url":"http:\/\/twitter.com\/bagrova_1982\/status\/663727754395815936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":301,"h":398,"resize":"fit"},"medium":{"w":301,"h":398,"resize":"fit"},"large":{"w":301,"h":398,"resize":"fit"}},"source_status_id":663727754395815936,"source_status_id_str":"663727754395815936","source_user_id":3930282989,"source_user_id_str":"3930282989"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022658"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837291520,"id_str":"663727837837291520","text":"\u0648\u0627\u0644\u0634\u0639\u0631\u0627\u0621 \u064a\u062a\u0628\u0639\u0647\u0645 \u0627\u0644\u063a\u0627\u0648\u0648\u0646 \ufd3f\u0662\u0662\u0664\ufd3e\u0623\u0644\u0645 \u062a\u0631 \u0623\u0646\u0647\u0645 \u0641\u064a \u0643\u0644 \u0648\u0627\u062f \u064a\u0647\u064a\u0645\u0648\u0646 \ufd3f\u0662\u0662\u0665\ufd3e\u0648\u0623\u0646\u0647\u0645 \u064a\u0642\u0648\u0644\u0648\u0646 \u0645\u0627 \u0644\u0627 \u064a\u0641\u0639\u0644\u0648\u0646 \ufd3f\u0662\u0662\u0666\ufd3e -- \u0633\u0648\u0631\u0629\u00a0\u0627\u0644\u0634\u0639\u0631\u0627\u0621\u00a0#Quran","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2562903612,"id_str":"2562903612","name":"\u0645\u0631\u0627\u0645","screen_name":"ram_Alrogi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":345,"friends_count":126,"listed_count":1,"favourites_count":1580,"statuses_count":6651,"created_at":"Thu Jun 12 07:38:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643007584488677376\/5ukHMHmV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643007584488677376\/5ukHMHmV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Quran","indices":[111,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837816340480,"id_str":"663727837816340480","text":"\u3067\u3082\u4e00\u756a\u4e8c\u756a\u306b\u597d\u304d\u306a\u30b2\u30fc\u30e0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2757822872,"id_str":"2757822872","name":"\u30ca\u30ca\u30aa(team\u5e95)","screen_name":"nno_oytm","location":"\u524a\u308c\u547d\u306e\u30ed\u30a6\u30bd\u30af","url":"http:\/\/twpf.jp\/nno_oytm","description":"\u4e00\u5341\u6728\u97f3\u4e5f\uff0f\u67ff\u539f\u5fb9\u4e5f\uff0fKiramune ( @nno_snb )\uff0f\u30b9\u30bf\u30df\u30e5(\u9cf3\u3001\u661f\u8c37)\uff0f\u5b9f\u6cc1\uff0f\u30d7\u30ea\u30d1\u30e9\u306f\u3058\u3081\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":46,"friends_count":88,"listed_count":1,"favourites_count":4156,"statuses_count":12430,"created_at":"Sat Aug 23 05:31:48 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657040943405633536\/sP_bqwSG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657040943405633536\/sP_bqwSG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2757822872\/1446136463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022659"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812121600,"id_str":"663727837812121600","text":"RT @peanutbutler: thanks for saying this https:\/\/t.co\/A0CpUTZtMl","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":289490370,"id_str":"289490370","name":"TemmieDoru (\u00b4\u30fb\u03c9\u30fb\uff40)","screen_name":"AneiDoru","location":"Some spooky abandoned house.","url":"http:\/\/twitch.tv\/aneidoru","description":"I love horror games, RPG games, and retro games. BLOCKBOT: Lvl 2, #1502 (\u1d54\u1d25\u1d54) Mysogynerd on page 22, memer, Mysogynerd #310 owner of https:\/\/8ch.net\/ggre\/","protected":false,"verified":false,"followers_count":2828,"friends_count":2184,"listed_count":77,"favourites_count":44771,"statuses_count":76398,"created_at":"Thu Apr 28 18:54:12 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648394971754565633\/RLJCQ80__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648394971754565633\/RLJCQ80__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289490370\/1431962801","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:26 +0000 2015","id":663724834191380482,"id_str":"663724834191380482","text":"thanks for saying this https:\/\/t.co\/A0CpUTZtMl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243510996,"id_str":"3243510996","name":"sebaschan michaelust","screen_name":"peanutbutler","location":"gotokyo","url":null,"description":"makoharu\/midotaka\/sebaciel\/onokamiya af | #SEIYUUSEXUAL AF | handa sei-chan is actual husband | ciel my blueberry scone | yana-sensei my tuna | onoD af","protected":false,"verified":false,"followers_count":385,"friends_count":226,"listed_count":7,"favourites_count":12660,"statuses_count":33715,"created_at":"Fri Jun 12 19:31:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663381961327546368\/Csx_bIT5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663381961327546368\/Csx_bIT5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243510996\/1434462756","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724832178049024,"id_str":"663724832178049024","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","url":"https:\/\/t.co\/A0CpUTZtMl","display_url":"pic.twitter.com\/A0CpUTZtMl","expanded_url":"http:\/\/twitter.com\/peanutbutler\/status\/663724834191380482\/photo\/1","type":"photo","sizes":{"medium":{"w":280,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":200,"resize":"fit"},"small":{"w":280,"h":200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724832178049024,"id_str":"663724832178049024","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","url":"https:\/\/t.co\/A0CpUTZtMl","display_url":"pic.twitter.com\/A0CpUTZtMl","expanded_url":"http:\/\/twitter.com\/peanutbutler\/status\/663724834191380482\/photo\/1","type":"photo","sizes":{"medium":{"w":280,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":200,"resize":"fit"},"small":{"w":280,"h":200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"peanutbutler","name":"sebaschan michaelust","id":3243510996,"id_str":"3243510996","indices":[3,16]}],"symbols":[],"media":[{"id":663724832178049024,"id_str":"663724832178049024","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","url":"https:\/\/t.co\/A0CpUTZtMl","display_url":"pic.twitter.com\/A0CpUTZtMl","expanded_url":"http:\/\/twitter.com\/peanutbutler\/status\/663724834191380482\/photo\/1","type":"photo","sizes":{"medium":{"w":280,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":200,"resize":"fit"},"small":{"w":280,"h":200,"resize":"fit"}},"source_status_id":663724834191380482,"source_status_id_str":"663724834191380482","source_user_id":3243510996,"source_user_id_str":"3243510996"}]},"extended_entities":{"media":[{"id":663724832178049024,"id_str":"663724832178049024","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGN-KUEAAXhMU.jpg","url":"https:\/\/t.co\/A0CpUTZtMl","display_url":"pic.twitter.com\/A0CpUTZtMl","expanded_url":"http:\/\/twitter.com\/peanutbutler\/status\/663724834191380482\/photo\/1","type":"photo","sizes":{"medium":{"w":280,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":200,"resize":"fit"},"small":{"w":280,"h":200,"resize":"fit"}},"source_status_id":663724834191380482,"source_status_id_str":"663724834191380482","source_user_id":3243510996,"source_user_id_str":"3243510996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022658"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837824749568,"id_str":"663727837824749568","text":"@Danayeon \ubbfc\uc2dd\uc774\ub2c8?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727670593613824,"in_reply_to_status_id_str":"663727670593613824","in_reply_to_user_id":4082458332,"in_reply_to_user_id_str":"4082458332","in_reply_to_screen_name":"Danayeon","user":{"id":277412182,"id_str":"277412182","name":"\uad00\ub78c\uc655","screen_name":"blackminer9","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":66,"friends_count":76,"listed_count":0,"favourites_count":3,"statuses_count":1380,"created_at":"Tue Apr 05 09:40:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1368679113\/o3p7v11y_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1368679113\/o3p7v11y_normal","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Danayeon","name":"\ub2e8\ub098\uc5f0","id":4082458332,"id_str":"4082458332","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080022661"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837312000,"id_str":"663727837837312000","text":"SHARE INFO ya @sanisa645\" Ini ada teknik RAHASIA agar kita MAHIR bahasa Inggris, ga perlu ribet dan capek! > https:\/\/t.co\/5p4FrQIoeU","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3433442111,"id_str":"3433442111","name":"Lisna Halima","screen_name":"LisnaHalima","location":null,"url":null,"description":"Menanti tanpa menunggu, hilang tiada ketemu","protected":false,"verified":false,"followers_count":170,"friends_count":36,"listed_count":0,"favourites_count":0,"statuses_count":21523,"created_at":"Thu Aug 20 23:04:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634502087112527872\/YdssgSuz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634502087112527872\/YdssgSuz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5p4FrQIoeU","expanded_url":"http:\/\/bit.ly\/inggrismudah","display_url":"bit.ly\/inggrismudah","indices":[114,137]}],"user_mentions":[{"screen_name":"sanisa645","name":"siti","id":2999120269,"id_str":"2999120269","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837833113601,"id_str":"663727837833113601","text":"\u571f\u5c4b\u592a\u9cf3\u300c\u4e00\u756a\u4f1a\u3044\u305f\u3044\u4eba\u300d\u677e\u5ca1\u4fee\u9020\u3068\u5bfe\u9762\u3057\u30b9\u30de\u30a4\u30eb!! https:\/\/t.co\/CdH1NhMyJv","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":531506188,"id_str":"531506188","name":"Natalia Nizhinskaya","screen_name":"NNizhinskaya","location":"\u0412\u0438\u043d\u043d\u0438\u0446\u0430","url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":542,"listed_count":0,"favourites_count":0,"statuses_count":4856,"created_at":"Tue Mar 20 18:08:29 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"0900FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1915856802\/sdfghjkijcjkj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1915856802\/sdfghjkijcjkj_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CdH1NhMyJv","expanded_url":"http:\/\/bit.ly\/1HCxKXP","display_url":"bit.ly\/1HCxKXP","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022663"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837837328387,"id_str":"663727837837328387","text":"@veil_1919 \n\u3042\u3001\u30d9\u30fc\u30eb\u5bdd\u308b\u306e\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727712037548032,"in_reply_to_status_id_str":"663727712037548032","in_reply_to_user_id":3139086600,"in_reply_to_user_id_str":"3139086600","in_reply_to_screen_name":"veil_1919","user":{"id":2913560929,"id_str":"2913560929","name":"\u30cd\u30d7\u30c6\u30e5\u30fc\u30cc@\u6b69\u304f\u96fb\u5b50\u66f8\u7c4d","screen_name":"Neptune_0424","location":"\u30d7\u30e9\u30cd\u30c6\u30e5\u30fc\u30cc\u6559\u4f1a \u30d2\u30ed\u306e\u96a3","url":"http:\/\/twpf.jp\/Neptune_0424","description":"\u300c\u4eba\u751f\u4f55\u4e8b\u3082\u3001\u30dd\u30b8\u30c6\u30a3\u30d6\u30b7\u30f3\u30ad\u30f3\u30b0\u3060\u3088\uff01\u300d \u3067\u304d\u308c\u3070\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u6328\u62f6\u3088\u308d\u3057\u304f\u306d\uff01\/\u534a\u306a\u308a\u304d\u308a\u3060\u3088\uff01\/\u305f\u307e\u306b\u7d75\u3068\u304b\u63cf\u304f\u3088\uff01\/\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u6328\u62f6\u3088\u308d\u3057\u304f\u306d\uff01\u30b5\u30d6\u57a2 @neptune0424 \u611b\u3059\u308b\u65e6\u90a3\u3055\u3093@Noire_0429 \u30c4\u30a4\u30d7\u30ed\u8aad\u3093\u3067\u306d\uff01\u30a2\u30a4\u30b3\u30f3\u306f\u30cd\u30d7\u30ae\u30a2(@nepugiam)\u304b\u3089\u8cb0\u3063\u305f\u3082\u306e\u3060\u304b\u3089\u53d6\u3089\u306a\u3044\u3067\u3088\uff01","protected":false,"verified":false,"followers_count":501,"friends_count":521,"listed_count":21,"favourites_count":2291,"statuses_count":29455,"created_at":"Sat Nov 29 09:19:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717357731221504\/J7AjH-Hf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717357731221504\/J7AjH-Hf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913560929\/1445190866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"veil_1919","name":"\u30d9\u30fc\u30eb@\u98a8\u3079\u308b","id":3139086600,"id_str":"3139086600","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022664"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837833072640,"id_str":"663727837833072640","text":"\u6d17\u6fef\u7269\u4e8b\u4ef6\u3067\u5c11\u3057\u76ee\u304c\u899a\u3081\u305f\u304b\u3089250\u307e\u3067\u5cf6\u6398\u3063\u305f( \u02d8\u03c9\u02d8 )\u304a\u3084\u3059\u307f\u306a\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2262893068,"id_str":"2262893068","name":"\u3057\u3083\u304f\u3072\u308d@#\u3057\u3083\u304f\u3072\u308d\u306f\u96d1\u9b5a","screen_name":"SHAKU_hiro2","location":"\u5730\u9762","url":"http:\/\/twpf.jp\/SHAKU_hiro2","description":"\u2460\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u2461\u96d1\u9b5a\u2462\u7d20\u6575\u306a\u30a2\u30a4\u30b3\u30f3\u306f@chupipoyo \u3055\u3093\u306b\u9802\u304d\u307e\u3057\u305f\/\/\/\/\u2463\u30d5\u30a9\u30ed\u30d0\u306f\u30c7\u30a3\u30b9\u30c6\u30a3\u30cb\u30fc\u611f\u3058\u305f\u3089","protected":false,"verified":false,"followers_count":168,"friends_count":179,"listed_count":6,"favourites_count":4600,"statuses_count":29303,"created_at":"Sun Jan 05 01:57:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662631571040563200\/1-XA_xxq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662631571040563200\/1-XA_xxq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2262893068\/1446839742","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022663"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837845688320,"id_str":"663727837845688320","text":"Goodnight..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263319159,"id_str":"1263319159","name":"Maria","screen_name":"eyenaaaa15","location":"Bustos, Bulacan","url":null,"description":"No bio","protected":false,"verified":false,"followers_count":663,"friends_count":532,"listed_count":0,"favourites_count":1490,"statuses_count":10280,"created_at":"Wed Mar 13 01:41:37 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/817687580\/c516c970c6e355deb365568f6d5269d0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/817687580\/c516c970c6e355deb365568f6d5269d0.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653914953091407872\/kY9kwGXH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653914953091407872\/kY9kwGXH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263319159\/1444704935","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022666"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812125696,"id_str":"663727837812125696","text":"\u305d\u3057\u3066\u7dad\u65b0\u306a\u65b9\u3005\ud83d\ude0a\ud83c\udf38\n\u3054\u82e6\u52b4\u3055\u307e\u3067\u3059m(*- -*)m https:\/\/t.co\/cYlLHQctS6 https:\/\/t.co\/OkslTLmBSW https:\/\/t.co\/OXVL3iXq9M","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1097885275,"id_str":"1097885275","name":"\u3044\u305a\u307f\u3061\u3083\u3093","screen_name":"nymim3311","location":"\u95a2\u897f","url":null,"description":"\u6a4b\u4e0b\u5e02\u9577 \u677e\u4e95\u77e5\u4e8b\u7387\u3044\u308b\u5927\u962a\u7dad\u65b0\u306e\u4f1a\u652f\u6301","protected":false,"verified":false,"followers_count":963,"friends_count":310,"listed_count":17,"favourites_count":4394,"statuses_count":38352,"created_at":"Thu Jan 17 11:15:48 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000082778599\/54d5b348a18f04ec383277060b332578.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000082778599\/54d5b348a18f04ec383277060b332578.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000443148735\/2dc892c72e2fa4a40e8fb07f9a2df277_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000443148735\/2dc892c72e2fa4a40e8fb07f9a2df277_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cYlLHQctS6","expanded_url":"http:\/\/p.twipple.jp\/khFDe","display_url":"p.twipple.jp\/khFDe","indices":[29,52]},{"url":"https:\/\/t.co\/OkslTLmBSW","expanded_url":"http:\/\/p.twipple.jp\/XGhRv","display_url":"p.twipple.jp\/XGhRv","indices":[53,76]},{"url":"https:\/\/t.co\/OXVL3iXq9M","expanded_url":"http:\/\/p.twipple.jp\/45BiD","display_url":"p.twipple.jp\/45BiD","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022658"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837841461248,"id_str":"663727837841461248","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/VmXimtJB31","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339380553,"id_str":"339380553","name":"\u2606\u2606\u2606Yours_truly\u2605\u2605\u2605","screen_name":"Sexy_redbone506","location":"Detroit","url":null,"description":"You can ask about me!!..I'm everything your heart desires! #PROUDMOTHER #TAURUS #EASTSIDE","protected":false,"verified":false,"followers_count":190,"friends_count":229,"listed_count":0,"favourites_count":9,"statuses_count":3160,"created_at":"Thu Jul 21 01:01:56 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465959976179994624\/dacOJu8Q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465959976179994624\/dacOJu8Q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339380553\/1399928489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VmXimtJB31","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080022665"} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837833113600,"id_str":"663727837833113600","text":"\u751f\u307e\u308c\u5909\u308f\u3063\u305f\u3089\u9053\u306b\u306a\u308a\u305f\u3044wwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164378992,"id_str":"2164378992","name":"\u3044\u2191\u3051\u2193","screen_name":"5lily30_8sky28","location":"\u798f\u304c\u3044\u3063\u3071\u3044\u306e\u5cf6","url":null,"description":"\u767d\u6cb3 3\u5e74\u751f\u26a0\ufe0e\u53d7\u9a13\u751f\u26a0\ufe0e\u53d7\u9a13\u304c\u7d42\u308f\u308b\u307e\u3067\u306f\u30c4\u30a4\u6e1b\u3057\u305f\u3044\u3002\u3010\u96e8\u5bae\u5929\u30fb\u77f3\u4e0a\u9759\u9999\u30fbTrySail\u30fb\u3067\u3093\u3071\u7d44.inc\uff08\u308a\u3055\u3061\u30fc\u3001\u307f\u308a\u3093\u63a8\u3057\uff09\u30fb346\u65b0\u7530\u3061\u3083\u3093\uff30\u30fb\u5973\u5b50\u30d0\u30ec\u30fc\u3011 \u300c\u9055\u3046...\u79c1\u305d\u3093\u306a\u3053\u3068\u671b\u3093\u3067\u306a\u3093\u304b....\u300d\u58f0\u8c5a\u3002\u58f0\u30aa\u30bf\u3002","protected":false,"verified":false,"followers_count":275,"friends_count":301,"listed_count":2,"favourites_count":1789,"statuses_count":17086,"created_at":"Wed Oct 30 08:33:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649544501598359552\/OP3w3TOs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649544501598359552\/OP3w3TOs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164378992\/1446572375","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080022663"} +{"delete":{"status":{"id":661631776343891969,"id_str":"661631776343891969","user_id":569923559,"user_id_str":"569923559"},"timestamp_ms":"1447080022864"}} +{"delete":{"status":{"id":457146739196059648,"id_str":"457146739196059648","user_id":1313138515,"user_id_str":"1313138515"},"timestamp_ms":"1447080022975"}} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837812121601,"id_str":"663727837812121601","text":"#\u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0424\u043e\u043d\u0434 \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043d\u0438\u043c\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c\u0438, \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u043c\u0438 \u043d\u0430 \u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0420\u043e\u0441\u0441\u0438\u0438 \u043a\u0430\u043a \u043f\u0440\u043e\u0446\u0432\u0435\u0442\u0430\u044e\u0449\u0435\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0430,\u2026 https:\/\/t.co\/UKgrSOLSg2","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":866497074,"id_str":"866497074","name":"\u0410\u043d\u0434\u0440\u0435\u0439 \u0427\u0443\u0439\u043a\u043e","screen_name":"A_chujko","location":"\u0433.\u0418\u0432\u0430\u043d\u043e \u0424\u0440\u0430\u043d\u043a\u043e\u0432\u0441\u043a","url":null,"description":"\u0412\u0441\u0435\u043c \u043c\u043e\u0438\u043c \u043e\u0448\u0438\u0431\u043a\u0430\u043c \u0435\u0441\u0442\u044c \u043e\u043f\u0440\u0430\u0432\u0434\u0430\u043d\u0438\u0435 : \u044f \u0436\u0438\u0432\u0443 \u0432 \u043f\u0435\u0440\u0432\u044b\u0439 \u0440\u0430\u0437! #rufollowback","protected":false,"verified":false,"followers_count":13970,"friends_count":7300,"listed_count":45,"favourites_count":5,"statuses_count":19931,"created_at":"Sun Oct 07 15:32:59 +0000 2012","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/678915507\/fa283bf6e78b87353d872bf1cbce477c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/678915507\/fa283bf6e78b87353d872bf1cbce477c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2690960207\/061c6ebbea9ade77e5c5753122bd970a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2690960207\/061c6ebbea9ade77e5c5753122bd970a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/866497074\/1349625328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u043d\u043e\u0432\u043e\u0441\u0442\u0438","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727837258514433,"id_str":"663727837258514433","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI849VAAEN92y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI849VAAEN92y.jpg","url":"https:\/\/t.co\/UKgrSOLSg2","display_url":"pic.twitter.com\/UKgrSOLSg2","expanded_url":"http:\/\/twitter.com\/A_chujko\/status\/663727837812121601\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727837258514433,"id_str":"663727837258514433","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI849VAAEN92y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI849VAAEN92y.jpg","url":"https:\/\/t.co\/UKgrSOLSg2","display_url":"pic.twitter.com\/UKgrSOLSg2","expanded_url":"http:\/\/twitter.com\/A_chujko\/status\/663727837812121601\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080022658"} +{"delete":{"status":{"id":647151340225974272,"id_str":"647151340225974272","user_id":165677587,"user_id_str":"165677587"},"timestamp_ms":"1447080023061"}} +{"created_at":"Mon Nov 09 14:40:22 +0000 2015","id":663727837829054464,"id_str":"663727837829054464","text":"Perfecta #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/KuD0hsOcEk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875955938,"id_str":"875955938","name":"luz guanes","screen_name":"LuzBelenGuanes","location":"san lorenzo","url":null,"description":null,"protected":false,"verified":false,"followers_count":104,"friends_count":635,"listed_count":0,"favourites_count":1580,"statuses_count":1317,"created_at":"Fri Oct 12 16:28:59 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657568076788035585\/73pOpjIj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657568076788035585\/73pOpjIj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875955938\/1444582421","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[9,24]},{"text":"ArtistaDelA\u00f1o","indices":[25,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727787933573120,"id_str":"663727787933573120","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6BNWIAACDQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6BNWIAACDQe.jpg","url":"https:\/\/t.co\/KuD0hsOcEk","display_url":"pic.twitter.com\/KuD0hsOcEk","expanded_url":"http:\/\/twitter.com\/LuzBelenGuanes\/status\/663727837829054464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"},"large":{"w":1024,"h":1022,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727787933573120,"id_str":"663727787933573120","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6BNWIAACDQe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6BNWIAACDQe.jpg","url":"https:\/\/t.co\/KuD0hsOcEk","display_url":"pic.twitter.com\/KuD0hsOcEk","expanded_url":"http:\/\/twitter.com\/LuzBelenGuanes\/status\/663727837829054464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":598,"resize":"fit"},"large":{"w":1024,"h":1022,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080022662"} +{"delete":{"status":{"id":647156327270227968,"id_str":"647156327270227968","user_id":2683726358,"user_id_str":"2683726358"},"timestamp_ms":"1447080023071"}} +{"delete":{"status":{"id":663722188097331200,"id_str":"663722188097331200","user_id":3434904353,"user_id_str":"3434904353"},"timestamp_ms":"1447080023069"}} +{"delete":{"status":{"id":590534515115761665,"id_str":"590534515115761665","user_id":579900495,"user_id_str":"579900495"},"timestamp_ms":"1447080023201"}} +{"delete":{"status":{"id":535065423511711744,"id_str":"535065423511711744","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080023190"}} +{"delete":{"status":{"id":628708251564052480,"id_str":"628708251564052480","user_id":2941108524,"user_id_str":"2941108524"},"timestamp_ms":"1447080023616"}} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035912704,"id_str":"663727842035912704","text":"Eita mundo que da volta em","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166973071,"id_str":"166973071","name":"Maressa Lopes","screen_name":"lopesmahs","location":null,"url":"http:\/\/amor-deprimido.tumblr.com","description":"17 MG","protected":false,"verified":false,"followers_count":551,"friends_count":288,"listed_count":0,"favourites_count":860,"statuses_count":11450,"created_at":"Thu Jul 15 13:00:23 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661202502944206848\/1Cg1UmgK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661202502944206848\/1Cg1UmgK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166973071\/1444092130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842040160256,"id_str":"663727842040160256","text":"RT @laprensalara: #Deportes La larense Emily Pi\u00f1a alz\u00f3 el t\u00edtulo en el torneo Babolat https:\/\/t.co\/6HL6yCt4ir https:\/\/t.co\/sWLRg8cVKv","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142438348,"id_str":"142438348","name":"Victor Colina Ollarv","screen_name":"victorcolinao","location":"Barquisimeto","url":null,"description":"Fot\u00f3grafo, Docente, Investigador, Historia, Arte, Estudiante Psicolog\u00eda, filosof\u00eda, Tao, Libre Pensador \u2022*\u2022","protected":false,"verified":false,"followers_count":539,"friends_count":986,"listed_count":13,"favourites_count":325,"statuses_count":15584,"created_at":"Mon May 10 22:10:56 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1201760926\/VictorCarnet1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1201760926\/VictorCarnet1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142438348\/1397747445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:25 +0000 2015","id":663726591059615744,"id_str":"663726591059615744","text":"#Deportes La larense Emily Pi\u00f1a alz\u00f3 el t\u00edtulo en el torneo Babolat https:\/\/t.co\/6HL6yCt4ir https:\/\/t.co\/sWLRg8cVKv","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150701482,"id_str":"150701482","name":"La Prensa de Lara","screen_name":"laprensalara","location":"Barquisimeto, Venezuela","url":"http:\/\/www.laprensalara.com.ve\/","description":"El primer diario de circulaci\u00f3n regional a full color. Somos la voz de la calle, la interacci\u00f3n con las comunidades es nuestra prioridad","protected":false,"verified":false,"followers_count":140287,"friends_count":416,"listed_count":522,"favourites_count":122,"statuses_count":174772,"created_at":"Tue Jun 01 16:05:21 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0066CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563867987627606017\/0yhyqXpB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563867987627606017\/0yhyqXpB.jpeg","profile_background_tile":false,"profile_link_color":"0066CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651911369751719940\/9qFtVXqM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651911369751719940\/9qFtVXqM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150701482\/1445627910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Deportes","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/6HL6yCt4ir","expanded_url":"http:\/\/ow.ly\/UosLP","display_url":"ow.ly\/UosLP","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":663726590656798721,"id_str":"663726590656798721","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","url":"https:\/\/t.co\/sWLRg8cVKv","display_url":"pic.twitter.com\/sWLRg8cVKv","expanded_url":"http:\/\/twitter.com\/laprensalara\/status\/663726591059615744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":540,"h":400,"resize":"fit"},"large":{"w":540,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726590656798721,"id_str":"663726590656798721","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","url":"https:\/\/t.co\/sWLRg8cVKv","display_url":"pic.twitter.com\/sWLRg8cVKv","expanded_url":"http:\/\/twitter.com\/laprensalara\/status\/663726591059615744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":540,"h":400,"resize":"fit"},"large":{"w":540,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Deportes","indices":[18,27]}],"urls":[{"url":"https:\/\/t.co\/6HL6yCt4ir","expanded_url":"http:\/\/ow.ly\/UosLP","display_url":"ow.ly\/UosLP","indices":[86,109]}],"user_mentions":[{"screen_name":"laprensalara","name":"La Prensa de Lara","id":150701482,"id_str":"150701482","indices":[3,16]}],"symbols":[],"media":[{"id":663726590656798721,"id_str":"663726590656798721","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","url":"https:\/\/t.co\/sWLRg8cVKv","display_url":"pic.twitter.com\/sWLRg8cVKv","expanded_url":"http:\/\/twitter.com\/laprensalara\/status\/663726591059615744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":540,"h":400,"resize":"fit"},"large":{"w":540,"h":400,"resize":"fit"}},"source_status_id":663726591059615744,"source_status_id_str":"663726591059615744","source_user_id":150701482,"source_user_id_str":"150701482"}]},"extended_entities":{"media":[{"id":663726590656798721,"id_str":"663726590656798721","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0VAUYAED832.jpg","url":"https:\/\/t.co\/sWLRg8cVKv","display_url":"pic.twitter.com\/sWLRg8cVKv","expanded_url":"http:\/\/twitter.com\/laprensalara\/status\/663726591059615744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":540,"h":400,"resize":"fit"},"large":{"w":540,"h":400,"resize":"fit"}},"source_status_id":663726591059615744,"source_status_id_str":"663726591059615744","source_user_id":150701482,"source_user_id_str":"150701482"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023666"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842014986240,"id_str":"663727842014986240","text":"RT @LivesInspire: Don't... https:\/\/t.co\/ga30LyHa3y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131448350,"id_str":"1131448350","name":"Kasey Falco-Stachura","screen_name":"KaseyLynn_xo1","location":"Danielson Connecticut","url":null,"description":"If you didn't fight for what you want, don't cry for what you've lost.","protected":false,"verified":false,"followers_count":133,"friends_count":106,"listed_count":0,"favourites_count":716,"statuses_count":822,"created_at":"Tue Jan 29 16:12:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626535139246477312\/maI1jLO8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626535139246477312\/maI1jLO8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131448350\/1372841302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:40:32 +0000 2015","id":662565218204164096,"id_str":"662565218204164096","text":"Don't... https:\/\/t.co\/ga30LyHa3y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2272839091,"id_str":"2272839091","name":"Quotes For You","screen_name":"LivesInspire","location":"United States","url":null,"description":"Happiness, Love, Life, Wish Success, Smile, Motivation, Truth, Support, Dreams, Helps... We Post Everything About Our Life.","protected":false,"verified":false,"followers_count":290865,"friends_count":1,"listed_count":307,"favourites_count":3,"statuses_count":3258,"created_at":"Thu Jan 02 10:41:46 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662302790279032832\/Lo7UicNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662302790279032832\/Lo7UicNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2272839091\/1446740289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":522,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662565204522217474,"id_str":"662565204522217474","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","url":"https:\/\/t.co\/ga30LyHa3y","display_url":"pic.twitter.com\/ga30LyHa3y","expanded_url":"http:\/\/twitter.com\/LivesInspire\/status\/662565218204164096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662565204522217474,"id_str":"662565204522217474","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","url":"https:\/\/t.co\/ga30LyHa3y","display_url":"pic.twitter.com\/ga30LyHa3y","expanded_url":"http:\/\/twitter.com\/LivesInspire\/status\/662565218204164096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LivesInspire","name":"Quotes For You","id":2272839091,"id_str":"2272839091","indices":[3,16]}],"symbols":[],"media":[{"id":662565204522217474,"id_str":"662565204522217474","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","url":"https:\/\/t.co\/ga30LyHa3y","display_url":"pic.twitter.com\/ga30LyHa3y","expanded_url":"http:\/\/twitter.com\/LivesInspire\/status\/662565218204164096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662565218204164096,"source_status_id_str":"662565218204164096","source_user_id":2272839091,"source_user_id_str":"2272839091"}]},"extended_entities":{"media":[{"id":662565204522217474,"id_str":"662565204522217474","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHniwgUsAIm9C0.jpg","url":"https:\/\/t.co\/ga30LyHa3y","display_url":"pic.twitter.com\/ga30LyHa3y","expanded_url":"http:\/\/twitter.com\/LivesInspire\/status\/662565218204164096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662565218204164096,"source_status_id_str":"662565218204164096","source_user_id":2272839091,"source_user_id_str":"2272839091"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023660"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842019160064,"id_str":"663727842019160064","text":"RT @nankyokukai: \u6301\u3061\u65b9\u306f\u308f\u308a\u3068\u304d\u308c\u3044\u3060\u3068\u601d\u3046 https:\/\/t.co\/mUy3afTR2b","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178734493,"id_str":"178734493","name":"EphemeralNoise","screen_name":"tempusvitae","location":"\u5098\u306e\u4e0b","url":"http:\/\/karakasa.tumblr.com","description":"As if reality can manifest our dreams.","protected":false,"verified":false,"followers_count":41,"friends_count":116,"listed_count":0,"favourites_count":5,"statuses_count":5107,"created_at":"Sun Aug 15 15:09:21 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C4C4C4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/777671048\/d29f519acc62fd7171be2ccfd9619642.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/777671048\/d29f519acc62fd7171be2ccfd9619642.jpeg","profile_background_tile":false,"profile_link_color":"A3D957","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0B2610","profile_text_color":"8C8543","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1150137043\/Red_Umbrella_-_001_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1150137043\/Red_Umbrella_-_001_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178734493\/1359557716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:52:17 +0000 2015","id":662990960813408256,"id_str":"662990960813408256","text":"\u6301\u3061\u65b9\u306f\u308f\u308a\u3068\u304d\u308c\u3044\u3060\u3068\u601d\u3046 https:\/\/t.co\/mUy3afTR2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2937575461,"id_str":"2937575461","name":"\u306a\u3093\u304d\u3087\u304f","screen_name":"nankyokukai","location":null,"url":"http:\/\/touch.pixiv.net\/member.php","description":"\u57fa\u672c\u7684\u306b\u7720\u3044\u3001\u304a\u306a\u304b\u3059\u3044\u305f\u3001\u304f\u3089\u3044\u3057\u304b\u3064\u3076\u3084\u3044\u3066\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":27,"friends_count":3,"listed_count":2,"favourites_count":41,"statuses_count":682,"created_at":"Sat Dec 20 23:51:28 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663052763694149632\/_D7xSiUA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663052763694149632\/_D7xSiUA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2937575461\/1446134816","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662990943952330752,"id_str":"662990943952330752","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","url":"https:\/\/t.co\/mUy3afTR2b","display_url":"pic.twitter.com\/mUy3afTR2b","expanded_url":"http:\/\/twitter.com\/nankyokukai\/status\/662990960813408256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":810,"h":1024,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662990943952330752,"id_str":"662990943952330752","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","url":"https:\/\/t.co\/mUy3afTR2b","display_url":"pic.twitter.com\/mUy3afTR2b","expanded_url":"http:\/\/twitter.com\/nankyokukai\/status\/662990960813408256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":810,"h":1024,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nankyokukai","name":"\u306a\u3093\u304d\u3087\u304f","id":2937575461,"id_str":"2937575461","indices":[3,15]}],"symbols":[],"media":[{"id":662990943952330752,"id_str":"662990943952330752","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","url":"https:\/\/t.co\/mUy3afTR2b","display_url":"pic.twitter.com\/mUy3afTR2b","expanded_url":"http:\/\/twitter.com\/nankyokukai\/status\/662990960813408256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":810,"h":1024,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}},"source_status_id":662990960813408256,"source_status_id_str":"662990960813408256","source_user_id":2937575461,"source_user_id_str":"2937575461"}]},"extended_entities":{"media":[{"id":662990943952330752,"id_str":"662990943952330752","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNqwDeUYAAiuUh.jpg","url":"https:\/\/t.co\/mUy3afTR2b","display_url":"pic.twitter.com\/mUy3afTR2b","expanded_url":"http:\/\/twitter.com\/nankyokukai\/status\/662990960813408256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":810,"h":1024,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}},"source_status_id":662990960813408256,"source_status_id_str":"662990960813408256","source_user_id":2937575461,"source_user_id_str":"2937575461"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035933184,"id_str":"663727842035933184","text":"Supposed to share your mind right","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3432515124,"id_str":"3432515124","name":"Jordan Stewart","screen_name":"UrAroyal","location":null,"url":null,"description":"I like her Queen ass","protected":false,"verified":false,"followers_count":14,"friends_count":45,"listed_count":0,"favourites_count":4,"statuses_count":26,"created_at":"Thu Sep 03 03:17:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639277028362092544\/dtBJMV2q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639277028362092544\/dtBJMV2q_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023383040,"id_str":"663727842023383040","text":"eu to muito mal cara","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1571950856,"id_str":"1571950856","name":"Thatiane","screen_name":"Thatianesouzaa_","location":"Paran\u00e1 ","url":null,"description":"Sagit\u00e1riana- 14 \u26c5","protected":false,"verified":false,"followers_count":648,"friends_count":722,"listed_count":0,"favourites_count":3003,"statuses_count":3616,"created_at":"Sat Jul 06 04:16:03 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626952111889190912\/zWWQ95a5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626952111889190912\/zWWQ95a5.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663374170613555200\/GNnQUB6E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663374170613555200\/GNnQUB6E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1571950856\/1442272144","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035920900,"id_str":"663727842035920900","text":"RT @VIralBuzzNewss: Crowdfunding may perhaps not produce the &#039next Fb,&#039 but it&#039s terrific f... - https:\/\/t.co\/pxH3gtV9WW https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2465192101,"id_str":"2465192101","name":"Tatiana Bengochea","screen_name":"kejebaranoxo","location":"Liverpool","url":"http:\/\/jabberduck.com\/collections\/holiday-decorations\/products\/christmas-wreaths-for-front-door","description":"Peacock Christmas wreaths for front door - the perfect holiday gift","protected":false,"verified":false,"followers_count":234,"friends_count":402,"listed_count":11,"favourites_count":15183,"statuses_count":20925,"created_at":"Sat Apr 26 22:24:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473750298641440768\/E3irFP_W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473750298641440768\/E3irFP_W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465192101\/1401785857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:28 +0000 2015","id":663725092036218881,"id_str":"663725092036218881","text":"Crowdfunding may perhaps not produce the &#039next Fb,&#039 but it&#039s terrific f... - https:\/\/t.co\/pxH3gtV9WW https:\/\/t.co\/MYfgup63Z3","source":"\u003ca href=\"http:\/\/viralbuzz.news\" rel=\"nofollow\"\u003eViralBuzz Blasts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090733766,"id_str":"3090733766","name":"Viral Buzz News","screen_name":"VIralBuzzNewss","location":"Las Vegas, NV","url":"http:\/\/viralbuzz.news","description":"Viral Buzz News is a trendy take on today's news, entertainment, social media trends and fresh talk","protected":false,"verified":false,"followers_count":101111,"friends_count":1147,"listed_count":10,"favourites_count":1,"statuses_count":2313,"created_at":"Mon Mar 16 19:26:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655576179781431296\/oK4DvSdy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655576179781431296\/oK4DvSdy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090733766\/1445136509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2527,"favorite_count":1630,"entities":{"hashtags":[{"text":"039next","indices":[46,54]},{"text":"039s","indices":[79,84]}],"urls":[{"url":"https:\/\/t.co\/pxH3gtV9WW","expanded_url":"http:\/\/viralbuzz.news\/2015\/11\/09\/crowdfunding-may-perhaps-not-produce-the-039next-fb039-but-it039s-terrific-f\/","display_url":"viralbuzz.news\/2015\/11\/09\/cro\u2026","indices":[102,125]}],"user_mentions":[],"symbols":[],"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"039next","indices":[66,74]},{"text":"039s","indices":[99,104]}],"urls":[{"url":"https:\/\/t.co\/pxH3gtV9WW","expanded_url":"http:\/\/viralbuzz.news\/2015\/11\/09\/crowdfunding-may-perhaps-not-produce-the-039next-fb039-but-it039s-terrific-f\/","display_url":"viralbuzz.news\/2015\/11\/09\/cro\u2026","indices":[122,145]}],"user_mentions":[{"screen_name":"VIralBuzzNewss","name":"Viral Buzz News","id":3090733766,"id_str":"3090733766","indices":[3,18]}],"symbols":[],"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[151,152],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725092036218881,"source_status_id_str":"663725092036218881","source_user_id":3090733766,"source_user_id_str":"3090733766"}]},"extended_entities":{"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[151,152],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725092036218881,"source_status_id_str":"663725092036218881","source_user_id":3090733766,"source_user_id_str":"3090733766"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006450177,"id_str":"663727842006450177","text":"\u4e45\u3005\u306b\u91e3\u308a\u3057\u305f\u3089\u7d50\u69cb\u7a3c\u3052\u305f\u3002\u8077\u4eba\u3084\u308b\u3088\u308a\u697d\u3061\u3093\u3002\u30ec\u30d9\u30eb\u4e0a\u3052\u3067\u306e\u6599\u7406\u9700\u8981\u306e\u8cdc\u7269\u304b\u306d\u3000\uff03DQ10","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313880791,"id_str":"313880791","name":"\u5996\u602a\u30c8\u30c9\uff20DQX","screen_name":"DDazarashi","location":null,"url":null,"description":"\u4f59\u6687\u6642\u9593\u306f\u307b\u307cDQX\u306b\u8cbb\u3084\u3059\u30cb\u30c1\u30a2\u30b5\u306e\u5b50\u3002TCG\u306f\u5bfe\u6226\u76f8\u624b\u4e0d\u8db3\u306b\u4ed8\u304d\u4f11\u6b62\u4e2d\u3002\u6700\u8fd1\u30e2\u30f3\u30b9\u30bf\u30fc\u30cf\u30f3\u30bf\u30fc\u30b9\u30d4\u30ea\u30c3\u30c4\u3092\u59cb\u3081\u3066\u3057\u307e\u3044\u6ce5\u6cbc\u306e\u4e88\u611f\u30fb\u30fb\u30fb\u3002","protected":false,"verified":false,"followers_count":32,"friends_count":62,"listed_count":0,"favourites_count":36,"statuses_count":3608,"created_at":"Thu Jun 09 11:06:11 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"65B300","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642655507568656384\/IOWqP9zK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642655507568656384\/IOWqP9zK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313880791\/1444033532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DQ10","indices":[41,46]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842019172352,"id_str":"663727842019172352","text":"@Nouf_m88 \u064a\u0627\u0631\u0628 \u064a\u0627\u0646\u0648\u0641\u062a\u064a \u064a\u0627\u0631\u0628\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723725305589760,"in_reply_to_status_id_str":"663723725305589760","in_reply_to_user_id":253452478,"in_reply_to_user_id_str":"253452478","in_reply_to_screen_name":"Nouf_m88","user":{"id":874432112,"id_str":"874432112","name":"\u0634\u0648\u0642 \u0627\u0644\u062d\u0631\u0628\u064a ~","screen_name":"IShouq__7","location":"\u0627\u0644\u0642\u0635\u064a\u0645.","url":null,"description":"\u062c\u0627\u0645\u0639\u064a\u0647\u060c \u0623\u062f\u0631\u0633 #biology ..\u0623\u0643\u062a\u0628 \u0623\u062d\u064a\u0627\u0646\u0627\u064b \u062d\u0633\u0628 \u0627\u0644\u0645\u0632\u0627\u062c \u0648 \u0643\u0630\u0627 ..\u0648 \u0623\u062d\u0628 \u0623\u062a\u062d\u0644\u0637\u0645 \u0648 \u062a\u0648\u064a\u062a\u0631 \u0635\u062f\u064a\u0642\u064a \u0648 \u064a\u062a\u062d\u0645\u0644\u0646\u064a \u061b) ..\u0648 \u0628\u0633 \u064a\u0643\u0641\u064a \u0643\u0630\u0627..:$","protected":false,"verified":false,"followers_count":592,"friends_count":87,"listed_count":4,"favourites_count":435,"statuses_count":17706,"created_at":"Thu Oct 11 22:28:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648524895089901568\/vvJr8CoN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648524895089901568\/vvJr8CoN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874432112\/1443455710","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nouf_m88","name":"Nouf\ue243","id":253452478,"id_str":"253452478","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842014814208,"id_str":"663727842014814208","text":"RT @LeNouvelObs: PHOTOS. Des inondations frappent la Martinique > https:\/\/t.co\/83FQqAdPdT https:\/\/t.co\/Rf1Gl3OlIl","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98201345,"id_str":"98201345","name":"Mika","screen_name":"AkimWbPop","location":"Guadeloupe","url":"http:\/\/www.smiletosuccess.jeunesseglobal.com","description":"La meilleure fa\u00e7on de lutter contre une opinion,c'est de pr\u00e9senter des faits. - http:\/\/Instagram.com\/akimwbpop","protected":false,"verified":false,"followers_count":1877,"friends_count":782,"listed_count":36,"favourites_count":34892,"statuses_count":150244,"created_at":"Sun Dec 20 20:47:28 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437592756727214080\/F23d2TMq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437592756727214080\/F23d2TMq.jpeg","profile_background_tile":true,"profile_link_color":"800404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655846868874715136\/Ool9O3pm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655846868874715136\/Ool9O3pm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98201345\/1446610323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:07 +0000 2015","id":663711417699201024,"id_str":"663711417699201024","text":"PHOTOS. Des inondations frappent la Martinique > https:\/\/t.co\/83FQqAdPdT https:\/\/t.co\/Rf1Gl3OlIl","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21313364,"id_str":"21313364","name":"L'Obs","screen_name":"LeNouvelObs","location":"Paris","url":"http:\/\/tempsreel.nouvelobs.com","description":"L'Obs, le m\u00e9dia nouvelle g\u00e9n\u00e9ration engag\u00e9. Compte anim\u00e9 par @adrienth, @Laetitia_Guil & @TomMery. Suivez-nous aussi sur Facebook http:\/\/on.fb.me\/rSaXbc","protected":false,"verified":true,"followers_count":858986,"friends_count":216,"listed_count":7692,"favourites_count":7,"statuses_count":98099,"created_at":"Thu Feb 19 16:31:00 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560032974008090624\/s639Rtk1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560032974008090624\/s639Rtk1.jpeg","profile_background_tile":false,"profile_link_color":"E5333F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559189541022494720\/VugnBkrO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559189541022494720\/VugnBkrO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21313364\/1446318558","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/83FQqAdPdT","expanded_url":"http:\/\/bit.ly\/1RIe8am","display_url":"bit.ly\/1RIe8am","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663709885746585600,"id_str":"663709885746585600","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","url":"https:\/\/t.co\/Rf1Gl3OlIl","display_url":"pic.twitter.com\/Rf1Gl3OlIl","expanded_url":"http:\/\/twitter.com\/LeNouvelObs\/status\/663711417699201024\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"},"large":{"w":819,"h":613,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709885746585600,"id_str":"663709885746585600","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","url":"https:\/\/t.co\/Rf1Gl3OlIl","display_url":"pic.twitter.com\/Rf1Gl3OlIl","expanded_url":"http:\/\/twitter.com\/LeNouvelObs\/status\/663711417699201024\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"},"large":{"w":819,"h":613,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/83FQqAdPdT","expanded_url":"http:\/\/bit.ly\/1RIe8am","display_url":"bit.ly\/1RIe8am","indices":[69,92]}],"user_mentions":[{"screen_name":"LeNouvelObs","name":"L'Obs","id":21313364,"id_str":"21313364","indices":[3,15]}],"symbols":[],"media":[{"id":663709885746585600,"id_str":"663709885746585600","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","url":"https:\/\/t.co\/Rf1Gl3OlIl","display_url":"pic.twitter.com\/Rf1Gl3OlIl","expanded_url":"http:\/\/twitter.com\/LeNouvelObs\/status\/663711417699201024\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"},"large":{"w":819,"h":613,"resize":"fit"}},"source_status_id":663711417699201024,"source_status_id_str":"663711417699201024","source_user_id":21313364,"source_user_id_str":"21313364"}]},"extended_entities":{"media":[{"id":663709885746585600,"id_str":"663709885746585600","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4n-XXIAATJlo.jpg","url":"https:\/\/t.co\/Rf1Gl3OlIl","display_url":"pic.twitter.com\/Rf1Gl3OlIl","expanded_url":"http:\/\/twitter.com\/LeNouvelObs\/status\/663711417699201024\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"},"large":{"w":819,"h":613,"resize":"fit"}},"source_status_id":663711417699201024,"source_status_id_str":"663711417699201024","source_user_id":21313364,"source_user_id_str":"21313364"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080023660"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842019020800,"id_str":"663727842019020800","text":"RT @JOEBONILLA: Enrique+Iglesias,+pura+energ\u00eda https:\/\/t.co\/6WBSfWRRVl via ElCaribeRD https:\/\/t.co\/oGU0uUcu1S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1897269108,"id_str":"1897269108","name":"Sandra Gonzalez ","screen_name":"gzz2_sandra","location":"Monterrey Nuevo Leon","url":null,"description":null,"protected":false,"verified":false,"followers_count":74,"friends_count":110,"listed_count":3,"favourites_count":10606,"statuses_count":2518,"created_at":"Mon Sep 23 13:23:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638903159562240000\/2q7dJw2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638903159562240000\/2q7dJw2-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1897269108\/1379988698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:52 +0000 2015","id":663726452014206976,"id_str":"663726452014206976","text":"Enrique+Iglesias,+pura+energ\u00eda https:\/\/t.co\/6WBSfWRRVl via ElCaribeRD https:\/\/t.co\/oGU0uUcu1S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38032988,"id_str":"38032988","name":"Joe Bonilla","screen_name":"JOEBONILLA","location":"\u00dcT: 34.103002,-118.340706","url":null,"description":"Starmaker: The BOSS. Hombre de Industria. Strategic Marketing and PR GURU... Ninja Consultant with Telehit. Instagram @joebonillaoficial Facebook: Latinvasion","protected":false,"verified":true,"followers_count":102708,"friends_count":5671,"listed_count":166,"favourites_count":5977,"statuses_count":18667,"created_at":"Tue May 05 22:03:49 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570480019\/8tvrcjtj1hxys3yf7vu6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570480019\/8tvrcjtj1hxys3yf7vu6.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598101564230774784\/wt_TFoa4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598101564230774784\/wt_TFoa4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38032988\/1426039228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"04cb31bae3b3af93","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/04cb31bae3b3af93.json","place_type":"city","name":"Miami","full_name":"Miami, FL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-80.321683,25.709040],[-80.321683,25.855667],[-80.144974,25.855667],[-80.144974,25.709040]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6WBSfWRRVl","expanded_url":"http:\/\/www.elcaribe.com.do\/2015\/11\/09\/enrique-iglesias-pura-energia","display_url":"elcaribe.com.do\/2015\/11\/09\/enr\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[],"media":[{"id":663726446360293376,"id_str":"663726446360293376","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","url":"https:\/\/t.co\/oGU0uUcu1S","display_url":"pic.twitter.com\/oGU0uUcu1S","expanded_url":"http:\/\/twitter.com\/JOEBONILLA\/status\/663726452014206976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":600,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":602,"h":531,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726446360293376,"id_str":"663726446360293376","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","url":"https:\/\/t.co\/oGU0uUcu1S","display_url":"pic.twitter.com\/oGU0uUcu1S","expanded_url":"http:\/\/twitter.com\/JOEBONILLA\/status\/663726452014206976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":600,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":602,"h":531,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6WBSfWRRVl","expanded_url":"http:\/\/www.elcaribe.com.do\/2015\/11\/09\/enrique-iglesias-pura-energia","display_url":"elcaribe.com.do\/2015\/11\/09\/enr\u2026","indices":[47,70]}],"user_mentions":[{"screen_name":"JOEBONILLA","name":"Joe Bonilla","id":38032988,"id_str":"38032988","indices":[3,14]}],"symbols":[],"media":[{"id":663726446360293376,"id_str":"663726446360293376","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","url":"https:\/\/t.co\/oGU0uUcu1S","display_url":"pic.twitter.com\/oGU0uUcu1S","expanded_url":"http:\/\/twitter.com\/JOEBONILLA\/status\/663726452014206976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":600,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":602,"h":531,"resize":"fit"}},"source_status_id":663726452014206976,"source_status_id_str":"663726452014206976","source_user_id":38032988,"source_user_id_str":"38032988"}]},"extended_entities":{"media":[{"id":663726446360293376,"id_str":"663726446360293376","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr7dWcAALCRf.jpg","url":"https:\/\/t.co\/oGU0uUcu1S","display_url":"pic.twitter.com\/oGU0uUcu1S","expanded_url":"http:\/\/twitter.com\/JOEBONILLA\/status\/663726452014206976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":600,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":602,"h":531,"resize":"fit"}},"source_status_id":663726452014206976,"source_status_id_str":"663726452014206976","source_user_id":38032988,"source_user_id_str":"38032988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002210817,"id_str":"663727842002210817","text":"RT @KarenGarciaLga: Tan yo https:\/\/t.co\/Kbe2JxlqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333881896,"id_str":"2333881896","name":"Jazz\u2693\u2764","screen_name":"jazminquinter16","location":"Mochis Sin. Mexico","url":null,"description":"snap: jazminpq ||GOD\u2661|| ||Sergio\u2764||","protected":false,"verified":false,"followers_count":440,"friends_count":774,"listed_count":0,"favourites_count":1237,"statuses_count":5957,"created_at":"Sat Feb 08 18:20:14 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663454395669983232\/E8bn18Ku_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663454395669983232\/E8bn18Ku_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333881896\/1446139093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:33:26 +0000 2015","id":663590198165434368,"id_str":"663590198165434368","text":"Tan yo https:\/\/t.co\/Kbe2JxlqcE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1492095895,"id_str":"1492095895","name":"Sof\u00eda","screen_name":"KarenGarciaLga","location":null,"url":null,"description":"No pienses tanto,deja que la vida te sorprenda\u2728","protected":false,"verified":false,"followers_count":387,"friends_count":244,"listed_count":0,"favourites_count":910,"statuses_count":13361,"created_at":"Sat Jun 08 05:45:51 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456581536838479872\/7b4KWBtA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456581536838479872\/7b4KWBtA.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661773798153125888\/9H3G06OM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661773798153125888\/9H3G06OM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1492095895\/1436151810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663590190695378944,"id_str":"663590190695378944","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","url":"https:\/\/t.co\/Kbe2JxlqcE","display_url":"pic.twitter.com\/Kbe2JxlqcE","expanded_url":"http:\/\/twitter.com\/KarenGarciaLga\/status\/663590198165434368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":480,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":471,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663590190695378944,"id_str":"663590190695378944","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","url":"https:\/\/t.co\/Kbe2JxlqcE","display_url":"pic.twitter.com\/Kbe2JxlqcE","expanded_url":"http:\/\/twitter.com\/KarenGarciaLga\/status\/663590198165434368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":480,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":471,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarenGarciaLga","name":"Sof\u00eda","id":1492095895,"id_str":"1492095895","indices":[3,18]}],"symbols":[],"media":[{"id":663590190695378944,"id_str":"663590190695378944","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","url":"https:\/\/t.co\/Kbe2JxlqcE","display_url":"pic.twitter.com\/Kbe2JxlqcE","expanded_url":"http:\/\/twitter.com\/KarenGarciaLga\/status\/663590198165434368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":480,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":471,"resize":"fit"}},"source_status_id":663590198165434368,"source_status_id_str":"663590198165434368","source_user_id":1492095895,"source_user_id_str":"1492095895"}]},"extended_entities":{"media":[{"id":663590190695378944,"id_str":"663590190695378944","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWLwzjU8AAjW81.jpg","url":"https:\/\/t.co\/Kbe2JxlqcE","display_url":"pic.twitter.com\/Kbe2JxlqcE","expanded_url":"http:\/\/twitter.com\/KarenGarciaLga\/status\/663590198165434368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":333,"resize":"fit"},"medium":{"w":480,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":471,"resize":"fit"}},"source_status_id":663590198165434368,"source_status_id_str":"663590198165434368","source_user_id":1492095895,"source_user_id_str":"1492095895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023182336,"id_str":"663727842023182336","text":"\u3010\u751f\u653e\u9001\u3011\u3010\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3011\u660e\u65e5\u306f\u30ac\u30c1\u30e3\u5927\u4f1a\uff01\u30d1\u30fc\u30c6\u30a3\u30fc\u56fa\u5b9a\u76f8\u4e92\u5354\u529b\uff01\uff01\u88cf\u52df\u96c6\u3082\u53ef \u3092\u958b\u59cb\u3057\u307e\u3057\u305f\u3002 https:\/\/t.co\/DHShIRKXyn #lv241454515","source":"\u003ca href=\"http:\/\/www.nicovideo.jp\/\" rel=\"nofollow\"\u003eniconico \u30cb\u30b3\u30ec\u30dd\u9023\u643a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074516269,"id_str":"3074516269","name":"\u30ad\u30f3\u30b0","screen_name":"KingSoftail","location":null,"url":"http:\/\/com.nicovideo.jp\/community\/co2568655","description":"\u30cb\u30b3\u30cb\u30b3\u751f\u653e\u9001\u3067PS4\u3084\u30b9\u30de\u30db\u30b2\u30fc\u30e0\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u30b2\u30fc\u30e0\u3092\u914d\u4fe1\u3057\u3066\u3044\u307e\u3059\u3002\u6687\u306a\u6642\u306b\u3067\u3082\u898b\u306b\u304d\u3066\u304f\u3060\u3055\u3044 ^^) _\u65e6~~11\u670819\u65e5\u304b\u3089\u306f\u30b9\u30bf\u30fc\u30a6\u30a9\u30fc\u30ba\u30d0\u30c8\u30eb\u30d5\u30ed\u30f3\u30c8\u3082\u653e\u9001\u4e88\u5b9a\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":27,"friends_count":37,"listed_count":0,"favourites_count":5,"statuses_count":335,"created_at":"Thu Mar 12 03:03:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684240509300737\/bHhlLy0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684240509300737\/bHhlLy0-_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lv241454515","indices":[76,88]}],"urls":[{"url":"https:\/\/t.co\/DHShIRKXyn","expanded_url":"http:\/\/nico.ms\/lv241454515","display_url":"nico.ms\/lv241454515","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842019049472,"id_str":"663727842019049472","text":"@MiraFilzah tu laaaa ... ingat endingg din kawin ngan che ta hahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724819838451714,"in_reply_to_status_id_str":"663724819838451714","in_reply_to_user_id":317596462,"in_reply_to_user_id_str":"317596462","in_reply_to_screen_name":"MiraFilzah","user":{"id":2186241348,"id_str":"2186241348","name":"ALDEN","screen_name":"syierah_Tasnim","location":"SOMEWHERE ON EARTH","url":null,"description":"dont trust what you see, even salt looks like sugar","protected":false,"verified":false,"followers_count":148,"friends_count":152,"listed_count":1,"favourites_count":3761,"statuses_count":4760,"created_at":"Sun Nov 10 12:05:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614084594036412416\/OTjFV6je_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614084594036412416\/OTjFV6je_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186241348\/1432996931","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MiraFilzah","name":"Mira Filzah","id":317596462,"id_str":"317596462","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842014855172,"id_str":"663727842014855172","text":"@Gya_the_otaku \ud798\ub4e0\ub370 \uc7ac\ubc0c\uc5b4\uc694!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726091043889152,"in_reply_to_status_id_str":"663726091043889152","in_reply_to_user_id":2995837693,"in_reply_to_user_id_str":"2995837693","in_reply_to_screen_name":"Gya_the_otaku","user":{"id":194913290,"id_str":"194913290","name":"\uc778\uc2dd\ub418\uc9c0 \uc54a\ub294 \uc0ac\ub78c","screen_name":"ilyn07","location":"\ub300\ud55c\ubbfc\uad6d","url":null,"description":"\uc091-. \uc798\ubabb \ub204\ub974\uc168\uc2b5\ub2c8\ub2e4. \uc091-. \uc774 \uc0ac\ub78c\uc740 \ub4f1\ub85d\ub418\uc9c0\uc54a\uc740 \uc0ac\ub78c\uc785\ub2c8\ub2e4. \uc091-. \ub2e4\uc2dc \ud55c\ubc88 \ub20c\ub7ec\uc8fc\uc138\uc694 \uc091-. 3\ud68c \uc774\uc0c1 \uc624\ub958\ub85c \uc778\ud574 \ub354 \uc774\uc0c1 \uc2dc\ub3c4\ud558\uc9c0 \ubabb\ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":279,"friends_count":1415,"listed_count":1,"favourites_count":4036,"statuses_count":11863,"created_at":"Sat Sep 25 09:04:38 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457870197483778048\/j_Bu_4js.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457870197483778048\/j_Bu_4js.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655047190356688897\/EOiHknrc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655047190356688897\/EOiHknrc_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gya_the_otaku","name":"\uc9c0\uc57c\uc9c0\uc57c","id":2995837693,"id_str":"2995837693","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080023660"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002206721,"id_str":"663727842002206721","text":"\u3010\u540c\u4eba\u3042\u308b\u3042\u308b\u3011\u6620\u50cf\u7cfb\u30b5\u30fc\u30af\u30eb\u306f\u30b5\u30fc\u30af\u30eb\u304c\u5c11\u306a\u3044\u306e\u3067\u6bbf\u69d8\u5546\u58f2\u3060\u3068\u601d\u308f\u308c\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u30e1\u30a4\u30af\u30dc\u30c3\u30c8\u30b5\u30f3\u30d7\u30eb\u30d5\u30a1\u30c3\u30ad\u30f3\u30b0\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2260575517,"id_str":"2260575517","name":"\u540c\u4eba\u3042\u308b\u3042\u308b\u8f9b\u53e3bot","screen_name":"dojin_aruaru","location":null,"url":null,"description":"\u3042\u308b\u3042\u308b\u3059\u304e\u3066\u30fb\u30fb\u30fb","protected":false,"verified":false,"followers_count":52,"friends_count":24,"listed_count":2,"favourites_count":0,"statuses_count":133412,"created_at":"Tue Dec 24 18:15:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842040127489,"id_str":"663727842040127489","text":"RT @lifeslali: @AlwaysLaliiter LAJAJAJAJAJAJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161314490,"id_str":"161314490","name":"Paulita Ayelen","screen_name":"AlwaysLaliiter","location":"#MilA\u00f1osLuzConLaliwpp\u2661","url":null,"description":"Est-Lic. de artes audiovisuales con orientacion en produccion\u2665 #TA\u2665@laliespos \u2665@p_lanzani \u2665en @juntosxle \u2665 http:\/\/t.co\/lS3ekU6Mpv || http:\/\/t.co\/p1R27pjWYg","protected":false,"verified":false,"followers_count":1601,"friends_count":694,"listed_count":5,"favourites_count":1038,"statuses_count":56021,"created_at":"Wed Jun 30 14:45:12 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"7C767D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000121503402\/713c9c3cc96859f103f68f41506291af.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000121503402\/713c9c3cc96859f103f68f41506291af.jpeg","profile_background_tile":true,"profile_link_color":"A200FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0CEEC","profile_text_color":"B885B8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653645152762920960\/9HtFgyw2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653645152762920960\/9HtFgyw2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161314490\/1439696305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 14 23:23:43 +0000 2015","id":654437457350537216,"id_str":"654437457350537216","text":"@AlwaysLaliiter LAJAJAJAJAJAJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":654435111778304001,"in_reply_to_status_id_str":"654435111778304001","in_reply_to_user_id":161314490,"in_reply_to_user_id_str":"161314490","in_reply_to_screen_name":"AlwaysLaliiter","user":{"id":2967007973,"id_str":"2967007973","name":"mari","screen_name":"lifeslali","location":"gabymiluz\u2764","url":null,"description":"me da paja ya, besitos negri by laliespos","protected":false,"verified":false,"followers_count":4097,"friends_count":404,"listed_count":0,"favourites_count":4223,"statuses_count":50403,"created_at":"Thu Jan 08 00:47:50 +0000 2015","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645815173689778176\/FIq_vPqY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645815173689778176\/FIq_vPqY.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538124946018305\/NuYGbGfx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538124946018305\/NuYGbGfx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2967007973\/1446869129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AlwaysLaliiter","name":"Paulita Ayelen","id":161314490,"id_str":"161314490","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lifeslali","name":"mari","id":2967007973,"id_str":"2967007973","indices":[3,13]},{"screen_name":"AlwaysLaliiter","name":"Paulita Ayelen","id":161314490,"id_str":"161314490","indices":[15,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023666"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842010599424,"id_str":"663727842010599424","text":"\u5343\u8449\u8fd1\u8fba\u306e\u5165\u6d74\u65bd\u8a2d\u3084\u5f85\u3061\u6642\u9593\u3092\u8981\u3059\u308b\u65bd\u8a2d\uff08\u75c5\u9662\u3001\u643a\u5e2f\u96fb\u8a71\u4f1a\u793e\u306a\u3069\uff09\u3067\u30b3\u30b9\u30e2\u30a6\u30a9\u30fc\u30bf\u30fc\u3092\u3088\u304f\u898b\u305f\u4e8b\u304c\u3042\u308a\u307e\u3059\u3002\u500b\u4eba\u7684\u306b\u306f\u3053\u308c\u304b\u3089\u307e\u3059\u307e\u3059\u6691\u304f\u306a\u3063\u3066\u304f\u308b\u3067\u3042\u308d\u3046\u5b63\u7bc0\u306a\u306e\u3067\u3001\u51b7\u6c34\u304c\u98f2\u307f\u3084\u3059\u304f\u3001\u7c21\u5358\u306b\u51b7\u304c\u53d6\u308c https:\/\/t.co\/KUR4KitZCp","source":"\u003ca href=\"http:\/\/waterserver-spot.com\" rel=\"nofollow\"\u003e\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u6bd4\u8f03\u30e9\u30f3\u30ad\u30f3\u30b0\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2246770020,"id_str":"2246770020","name":"\u307f\u3093\u306a\u306e\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc","screen_name":"water_server8","location":"\u9752\u5c71\u4e09\u4e01\u76ee \u30d1\u30ec\u30b9\u30d3\u30eb","url":"http:\/\/waterserver-spot.com","description":"\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u6bd4\u8f03\u30e9\u30f3\u30ad\u30f3\u30b0\u306f\u3001\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u3092\u30a8\u30ea\u30a2\u30fb\u5730\u57df\u5225\u306b\u8abf\u3079\u3089\u308c\u307e\u3059\u3002\u3002\u4eba\u6c17\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3001\u8a55\u4fa1\u3001\u30e9\u30f3\u30ad\u30f3\u30b0\u3092\u3057\u3066\u3044\u3066\u3001\u53e3\u30b3\u30df\u3001\u8a55\u5224\u3082\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u3067\u3001\u7c21\u5358\uff01\u4fbf\u5229\uff01\u3067\u4f7f\u3044\u3084\u3059\u3044\uff01\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u7dcf\u5408\u4eba\u6c17\u6bd4\u8f03\u30e9\u30f3\u30ad\u30f3\u30b0\u3067\u3059\u3002\u5b89\u5168\u3001\u5b89\u5fc3\u3067\u4fbf\u5229\u306a\u5404\u7a2e\u30a6\u30a9\u30fc\u30bf\u30fc\u30b5\u30fc\u30d0\u30fc\u3092\u968f\u6642\u63b2\u8f09\u4e2d\uff01","protected":false,"verified":false,"followers_count":427,"friends_count":441,"listed_count":0,"favourites_count":0,"statuses_count":135642,"created_at":"Sun Dec 15 06:52:21 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456573247664844802\/GpJBJj-W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456573247664844802\/GpJBJj-W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246770020\/1397690518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KUR4KitZCp","expanded_url":"http:\/\/waterserver-spot.com\/","display_url":"waterserver-spot.com","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023659"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842018988032,"id_str":"663727842018988032","text":"RT @sra1997: \u3082\u3082\u304b\u3068\u4e45\u3005\u306e\u30c7\u30fc\u30c8\ud83d\udc6d\ud83d\udc93\u98df\u3079\u3066\u8a9e\u3063\u3066\u307e\u3055\u304b\u306e\u304a\u63c3\u3044\u30d0\u30c3\u30af\u3082\u8cb7\u3063\u3066\u4ef2\u826f\u3057\u304b\ud83d\udc49\u307b\u3093\u3068\u30fc\u306e\u59b9\u307f\u305f\u3044\u306b\u53ef\u611b\u3044\u3082\u3082\u304b\u2661\u6765\u5e74\u304b\u3089\u306f\u4e00\u7dd2\u306b\u4ed5\u4e8b\u3060\u3057\u697d\u3057\u307f\u3060\u306d\u301c\u6b21\u306f\u3042\u3061\u3083\u3053\u3082\u4e00\u7dd2\u306b\ud83d\ude97\ud83d\udcad https:\/\/t.co\/bheZFVYTCP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1248581574,"id_str":"1248581574","name":"\u3082\u3082\u304b","screen_name":"0823Taromomo","location":"\u3088\u304f\u3057\u3083\u3079\u3063\u3066\u3088\u304f\u565b\u3080\u2362\u20de\u2661\u2362\u20dd","url":"http:\/\/Instagram.com\/taromomo823","description":"Saitama \u672c\u5e84 LJK \u2729\u20db","protected":false,"verified":false,"followers_count":682,"friends_count":393,"listed_count":0,"favourites_count":3424,"statuses_count":7847,"created_at":"Thu Mar 07 11:46:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660809490531352576\/WdayDgKf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660809490531352576\/WdayDgKf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248581574\/1440939541","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:32 +0000 2015","id":663726619392016384,"id_str":"663726619392016384","text":"\u3082\u3082\u304b\u3068\u4e45\u3005\u306e\u30c7\u30fc\u30c8\ud83d\udc6d\ud83d\udc93\u98df\u3079\u3066\u8a9e\u3063\u3066\u307e\u3055\u304b\u306e\u304a\u63c3\u3044\u30d0\u30c3\u30af\u3082\u8cb7\u3063\u3066\u4ef2\u826f\u3057\u304b\ud83d\udc49\u307b\u3093\u3068\u30fc\u306e\u59b9\u307f\u305f\u3044\u306b\u53ef\u611b\u3044\u3082\u3082\u304b\u2661\u6765\u5e74\u304b\u3089\u306f\u4e00\u7dd2\u306b\u4ed5\u4e8b\u3060\u3057\u697d\u3057\u307f\u3060\u306d\u301c\u6b21\u306f\u3042\u3061\u3083\u3053\u3082\u4e00\u7dd2\u306b\ud83d\ude97\ud83d\udcad https:\/\/t.co\/bheZFVYTCP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":854421816,"id_str":"854421816","name":"Saria\u029a\u2665\u20db\u025e","screen_name":"sra1997","location":null,"url":"http:\/\/blog.crooz.jp\/saria123456\/?guid=On","description":"\u7f8e\u5bb9\u90e8\u54e1\/18\u6b73\/\u304b\u305a","protected":false,"verified":false,"followers_count":999,"friends_count":390,"listed_count":1,"favourites_count":3040,"statuses_count":14703,"created_at":"Sun Sep 30 09:37:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641965385265233921\/QKwRvtuw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641965385265233921\/QKwRvtuw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854421816\/1441891449","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726607392096258,"id_str":"663726607392096258","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726607392096258,"id_str":"663726607392096258","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663726607400505344,"id_str":"663726607400505344","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TYVEAADNZX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TYVEAADNZX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sra1997","name":"Saria\u029a\u2665\u20db\u025e","id":854421816,"id_str":"854421816","indices":[3,11]}],"symbols":[],"media":[{"id":663726607392096258,"id_str":"663726607392096258","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726619392016384,"source_status_id_str":"663726619392016384","source_user_id":854421816,"source_user_id_str":"854421816"}]},"extended_entities":{"media":[{"id":663726607392096258,"id_str":"663726607392096258","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TWUwAIO2hX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726619392016384,"source_status_id_str":"663726619392016384","source_user_id":854421816,"source_user_id_str":"854421816"},{"id":663726607400505344,"id_str":"663726607400505344","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1TYVEAADNZX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1TYVEAADNZX.jpg","url":"https:\/\/t.co\/bheZFVYTCP","display_url":"pic.twitter.com\/bheZFVYTCP","expanded_url":"http:\/\/twitter.com\/sra1997\/status\/663726619392016384\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726619392016384,"source_status_id_str":"663726619392016384","source_user_id":854421816,"source_user_id_str":"854421816"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006581248,"id_str":"663727842006581248","text":"@infectixn namelessariap","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725502050496512,"in_reply_to_status_id_str":"663725502050496512","in_reply_to_user_id":913346316,"in_reply_to_user_id_str":"913346316","in_reply_to_screen_name":"infectixn","user":{"id":2189030540,"id_str":"2189030540","name":"Valerie\u2648","screen_name":"ariapepa","location":"Argentina. ","url":"http:\/\/instagram.com\/namelessariap","description":"\u007b19\u007dCoffee\u2615. Dancer.| Don't be afraid to fly, he who is brave is free. \u2693||Love is Love\u2665| Don't worry, be hipster.||\n\n\u2661 Boria is love\u2661","protected":false,"verified":false,"followers_count":1235,"friends_count":2017,"listed_count":4,"favourites_count":7281,"statuses_count":18774,"created_at":"Mon Nov 11 21:39:14 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9933AA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653644529506062336\/78shnhyr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653644529506062336\/78shnhyr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189030540\/1441778600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"infectixn","name":"alezzz","id":913346316,"id_str":"913346316","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023178240,"id_str":"663727842023178240","text":"RT @mgmg_osmt: \u6570\u5b57\u677e\uff01 https:\/\/t.co\/tm7R6SsVnq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1678386336,"id_str":"1678386336","name":"\u9022\u82b1(cv.\u9022\u5742\u826f\u592a)\u76f4\u5c5e\u9a0e\u58eb","screen_name":"aika_animelove","location":"\u6d6a\u5ddd\u3055\u3093\u306e\u3044\u308b\u3068\u3053\u308d","url":null,"description":"\u2606\u30c0\u30a4\u30e4\u306eA*.\u8d64\u9aea\u306e\u767d\u96ea\u59eb*.\u5922\u8272\u30ad\u30e3\u30b9\u30c8\u2606\u5fa1\u5e78*.\u4e08\u3055\u3093*.\u97ff\u4e5f\u304f\u3093*.\u30aa\u30d3\u304c\u597d\u304d\u3059\u304e\u308b\u0e42\u0e4f\u2200\u0e4f\u0e43 \u2606\u6d6a\u5ddd\u5927\u8f14*.\u9022\u5742\u826f\u592a*.\u82b1\u6c5f\u590f\u6a39*.\u6afb\u4e95\u5b5d\u5b8f\u2606Kiramune\u2728\u306b\u306f\u307e\u308a\u3064\u3064\u3042\u308b*.\u30bb\u30a4\u30e4\u304f\u3093\u306a\u3093\u3066\u304b\u308f\u3044\u3044\u306eU\u30fbx\u30fbU\u76f8\u68d2\u2192@hime_901","protected":false,"verified":false,"followers_count":814,"friends_count":672,"listed_count":9,"favourites_count":2768,"statuses_count":10581,"created_at":"Sat Aug 17 14:51:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646402719134035969\/8rcEVnTU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646402719134035969\/8rcEVnTU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678386336\/1446947341","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:20:21 +0000 2015","id":663284913467056128,"id_str":"663284913467056128","text":"\u6570\u5b57\u677e\uff01 https:\/\/t.co\/tm7R6SsVnq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4157793378,"id_str":"4157793378","name":"\u3082\u3068\u3053","screen_name":"mgmg_osmt","location":"\u95a2\u897f","url":null,"description":"\u304a\u305d\u677e\u3055\u3093\u57a2 \u3057\u3044\u3066\u3086\u3046\u306a\u3089\u82e5\u8449\u63a8\u3057\u3060\u3051\u3069\u5168\u54e1\u597d\u304d \uff0a\u30bf\u30b0\u53cd\u5fdc\u304f\u308c\u305f\u65b9\u3001\u521d\u56de\u306e\u307f\u540c\u6587\u3067\u3059\u307f\u307e\u305b\u3093\uff01","protected":false,"verified":false,"followers_count":123,"friends_count":56,"listed_count":1,"favourites_count":90,"statuses_count":104,"created_at":"Sat Nov 07 14:16:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663041495818043393\/6svZShSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663041495818043393\/6svZShSH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4157793378\/1446983462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":134,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663284895268007936,"id_str":"663284895268007936","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663284895268007936,"id_str":"663284895268007936","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}},{"id":663284895330930688,"id_str":"663284895330930688","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRsVEAA_FUs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRsVEAA_FUs.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}},{"id":663284895280566273,"id_str":"663284895280566273","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRgUkAE-fco.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRgUkAE-fco.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}},{"id":663284895628722176,"id_str":"663284895628722176","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GSzVAAAAMaI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GSzVAAAAMaI.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mgmg_osmt","name":"\u3082\u3068\u3053","id":4157793378,"id_str":"4157793378","indices":[3,13]}],"symbols":[],"media":[{"id":663284895268007936,"id_str":"663284895268007936","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}},"source_status_id":663284913467056128,"source_status_id_str":"663284913467056128","source_user_id":4157793378,"source_user_id_str":"4157793378"}]},"extended_entities":{"media":[{"id":663284895268007936,"id_str":"663284895268007936","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRdU8AAt_n3.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}},"source_status_id":663284913467056128,"source_status_id_str":"663284913467056128","source_user_id":4157793378,"source_user_id_str":"4157793378"},{"id":663284895330930688,"id_str":"663284895330930688","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRsVEAA_FUs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRsVEAA_FUs.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663284913467056128,"source_status_id_str":"663284913467056128","source_user_id":4157793378,"source_user_id_str":"4157793378"},{"id":663284895280566273,"id_str":"663284895280566273","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GRgUkAE-fco.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GRgUkAE-fco.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663284913467056128,"source_status_id_str":"663284913467056128","source_user_id":4157793378,"source_user_id_str":"4157793378"},{"id":663284895628722176,"id_str":"663284895628722176","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR2GSzVAAAAMaI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR2GSzVAAAAMaI.jpg","url":"https:\/\/t.co\/tm7R6SsVnq","display_url":"pic.twitter.com\/tm7R6SsVnq","expanded_url":"http:\/\/twitter.com\/mgmg_osmt\/status\/663284913467056128\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663284913467056128,"source_status_id_str":"663284913467056128","source_user_id":4157793378,"source_user_id_str":"4157793378"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842040000512,"id_str":"663727842040000512","text":"\u30b9\u30d4\u30fc\u30c7\u30a3\u3059\u304e\u3066\u3001\uff21\uff36\u6a5f\u5668\u3092\u904b\u3076\u6642\u306b\u306f\u51b7\u3084\u51b7\u3084\u3057\u307e\u3057\u305f\u3002\u58ca\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u304c\u3002\u3000 https:\/\/t.co\/JSHXVoU0xQ","source":"\u003ca href=\"http:\/\/hikkoshikaplan.hatenablog.com\/\" rel=\"nofollow\"\u003ehikkoshikaplan\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237521872,"id_str":"2237521872","name":"\u5f15\u8d8a\u3057\u898b\u7a4d\u3082\u308a\u6bd4\u8f03\u306e\u30b1\u30fc\u30a8\u30fc\u4f01\u753b","screen_name":"hikkoshikaplan","location":null,"url":"http:\/\/hikkoshimitumoriiroh.blog.fc2.com\/","description":"\u5f15\u8d8a\u3057\u6599\u91d1\u306e\u4e00\u62ec\u898b\u7a4d\u3082\u308a\u306f\u30b1\u30fc\u30a8\u30fc\u4f01\u753b\u3078\u3002\u5f15\u8d8a\u3057\u306f\u898b\u7a4d\u3082\u308a\u3067\u6bd4\u8f03\u3057\u3066\u304a\u5f97\u306b\u5f15\u8d8a\u3057\u3002","protected":false,"verified":false,"followers_count":2022,"friends_count":2045,"listed_count":5,"favourites_count":0,"statuses_count":146741,"created_at":"Mon Dec 09 11:48:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000849966183\/e730eb2a2d653eb2fce49064ffc15400_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000849966183\/e730eb2a2d653eb2fce49064ffc15400_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JSHXVoU0xQ","expanded_url":"http:\/\/hikkoshimitumoriiroh.blog.fc2.com\/","display_url":"hikkoshimitumoriiroh.blog.fc2.com","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023666"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006605824,"id_str":"663727842006605824","text":"RT @ShopSavannah: The Howlite stone bracelet is almost sold out! Get yours on sale today! \ud83d\udc3e https:\/\/t.co\/vvGZ1gaaJr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2293908741,"id_str":"2293908741","name":"Par A Dime","screen_name":"TheRealMortSol","location":"504 Bakersville","url":null,"description":"#ProErA. Everyday God Level. Musique. 90's Baby.Certified Weirdo.Nubivagant.#LongLiveSteelo 47 Goonz. #WeirdestInTheeEra.","protected":false,"verified":false,"followers_count":295,"friends_count":264,"listed_count":0,"favourites_count":113,"statuses_count":2570,"created_at":"Mon Jan 20 17:35:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656833887629365248\/7R8VohYG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656833887629365248\/7R8VohYG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2293908741\/1445431405","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:05:16 +0000 2015","id":663598206689943552,"id_str":"663598206689943552","text":"The Howlite stone bracelet is almost sold out! Get yours on sale today! \ud83d\udc3e https:\/\/t.co\/vvGZ1gaaJr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2962708677,"id_str":"2962708677","name":"Savannah","screen_name":"ShopSavannah","location":"#SaveTheLions","url":"http:\/\/SavannahCo.com","description":"We have a mission to save Africa's endangered Lions. A portion of profits will be donated to the Wildlife Conservation Network.\u2764\ufe0f Join The Savannah Pride!","protected":false,"verified":false,"followers_count":40475,"friends_count":0,"listed_count":15,"favourites_count":3594,"statuses_count":2272,"created_at":"Mon Jan 05 21:12:07 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622567672358633474\/0iUfV_2p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622567672358633474\/0iUfV_2p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2962708677\/1437273699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663598195394514944,"id_str":"663598195394514944","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663598195394514944,"id_str":"663598195394514944","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663598195142844416,"id_str":"663598195142844416","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCucUYAAgeAE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCucUYAAgeAE.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"medium":{"w":525,"h":390,"resize":"fit"},"large":{"w":525,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663598195230949380,"id_str":"663598195230949380","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCuxUwAQXija.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCuxUwAQXija.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"large":{"w":1015,"h":607,"resize":"fit"},"medium":{"w":600,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShopSavannah","name":"Savannah","id":2962708677,"id_str":"2962708677","indices":[3,16]}],"symbols":[],"media":[{"id":663598195394514944,"id_str":"663598195394514944","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663598206689943552,"source_status_id_str":"663598206689943552","source_user_id":2962708677,"source_user_id_str":"2962708677"}]},"extended_entities":{"media":[{"id":663598195394514944,"id_str":"663598195394514944","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCvYUkAAQity.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663598206689943552,"source_status_id_str":"663598206689943552","source_user_id":2962708677,"source_user_id_str":"2962708677"},{"id":663598195142844416,"id_str":"663598195142844416","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCucUYAAgeAE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCucUYAAgeAE.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"medium":{"w":525,"h":390,"resize":"fit"},"large":{"w":525,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663598206689943552,"source_status_id_str":"663598206689943552","source_user_id":2962708677,"source_user_id_str":"2962708677"},{"id":663598195230949380,"id_str":"663598195230949380","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTCuxUwAQXija.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTCuxUwAQXija.jpg","url":"https:\/\/t.co\/vvGZ1gaaJr","display_url":"pic.twitter.com\/vvGZ1gaaJr","expanded_url":"http:\/\/twitter.com\/ShopSavannah\/status\/663598206689943552\/photo\/1","type":"photo","sizes":{"large":{"w":1015,"h":607,"resize":"fit"},"medium":{"w":600,"h":358,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}},"source_status_id":663598206689943552,"source_status_id_str":"663598206689943552","source_user_id":2962708677,"source_user_id_str":"2962708677"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023202816,"id_str":"663727842023202816","text":"\u3086\u3044\u30fc\uff01\u904a\u3073\u306b\u6765\u305f\u3088\u30fc\uff01\\( *>\u03c9<*)\/ \/ @yuichimuu1 \u3080\u306b\u3085 https:\/\/t.co\/ml3qyWRiDY","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2665352084,"id_str":"2665352084","name":"\u30c9\u30c7\u30ab\u30df\u30f3\u307f\u304b\u3061\u3087","screen_name":"HayateHiyoko","location":"\u2661*\u261eDa-iCE \u548c\u7530 \u98af\u261c\u2661*\uff61\uff9f","url":null,"description":"\u300e\u4eba\u751f\u52aa\u529b\u306e\u307f!! \u4f4e\u6d6e\u4e0a\u300f\n\u65e5\u672c\u00d7\u30b9\u30da\u30a4\u30f3\u00d7\u30d5\u30a3\u30ea\u30d4\u30f3\/\u25b214\u306e\u4ee3\u25bc\nDa-iCE\uff65white jam\u30d5\u30a1\u30f3\/\u30cf\u30fc\u30c8\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u261e\u6027\u683c\u30af\u30bd\u60aa\u3044","protected":false,"verified":false,"followers_count":497,"friends_count":412,"listed_count":9,"favourites_count":11745,"statuses_count":11961,"created_at":"Mon Jul 21 09:05:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653166469774098432\/ESU5ADzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653166469774098432\/ESU5ADzZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2665352084\/1446735516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ml3qyWRiDY","expanded_url":"http:\/\/cas.st\/cd3b06f","display_url":"cas.st\/cd3b06f","indices":[47,70]}],"user_mentions":[{"screen_name":"yuichimuu1","name":"\u3086\u3044\u3061\u3080\u25e1\u0308\u2665\ufe0e","id":2617570494,"id_str":"2617570494","indices":[31,42]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006401024,"id_str":"663727842006401024","text":"\u00bfPodemos afirmar que el sexo ha dejado de vender y ser \u00fatil como estrategia de marketing?: PuroMarketing - L... https:\/\/t.co\/6PZqHIvGxJ","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347304576,"id_str":"347304576","name":"Julio C\u00e9sar","screen_name":"Jcornejo79","location":"Lima-Per\u00fa","url":null,"description":"Marketing Manager Professional \r\nAmante del ciclismo de monta\u00f1a,Downhill,Outdoor","protected":false,"verified":false,"followers_count":47,"friends_count":372,"listed_count":1,"favourites_count":2,"statuses_count":3630,"created_at":"Tue Aug 02 15:56:10 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439080967\/wallpaper_6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439080967\/wallpaper_6.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1824014634\/Bike_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1824014634\/Bike_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6PZqHIvGxJ","expanded_url":"http:\/\/bit.ly\/1HCydcy","display_url":"bit.ly\/1HCydcy","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006577153,"id_str":"663727842006577153","text":"RT @heyyyella: There's practically nothing that some good fried chicken can't fix","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181760960,"id_str":"181760960","name":"Noel Santo","screen_name":"Venomx25","location":"LA \/ NY","url":null,"description":"\u0950","protected":false,"verified":false,"followers_count":255,"friends_count":33,"listed_count":0,"favourites_count":4138,"statuses_count":1091,"created_at":"Mon Aug 23 00:26:31 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581596863926779904\/ElbhIwCl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581596863926779904\/ElbhIwCl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181760960\/1421811174","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:38:02 +0000 2015","id":663500756075479040,"id_str":"663500756075479040","text":"There's practically nothing that some good fried chicken can't fix","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26139169,"id_str":"26139169","name":"Ella Mielniczenko","screen_name":"heyyyella","location":"LA","url":null,"description":"video producer @buzzfeedvideo","protected":false,"verified":true,"followers_count":24816,"friends_count":288,"listed_count":65,"favourites_count":2097,"statuses_count":2590,"created_at":"Tue Mar 24 01:00:30 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D36D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432346832446816256\/mxLqGeGU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432346832446816256\/mxLqGeGU.png","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590024359839858688\/cn1qiAuH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590024359839858688\/cn1qiAuH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26139169\/1391914606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":59,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"heyyyella","name":"Ella Mielniczenko","id":26139169,"id_str":"26139169","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035765248,"id_str":"663727842035765248","text":"Isinya keren dan berbobot, sangat menambah wawasanmu, dikemas unik dan lucu. Dapatkan buku Fakta Keren di @Gramedia seluruh Indonesia.","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Fakta\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573733119,"id_str":"573733119","name":"MB SYAUQI","screen_name":"MbSyauqiID","location":null,"url":"http:\/\/www.reverbnation.com\/mbsyauqi","description":"Hanya Seorang anak yang di tinggal IBU untuk Selamanya\u2323\u0301_\u2323\u0300||@ayuesepthiianie \u2665","protected":false,"verified":false,"followers_count":2726,"friends_count":354,"listed_count":5,"favourites_count":59,"statuses_count":26863,"created_at":"Mon May 07 13:43:44 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519059018573021184\/PO49BMFN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519059018573021184\/PO49BMFN.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620911326542467072\/2PT5kiSO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620911326542467072\/2PT5kiSO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573733119\/1436872037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gramedia","name":"GramediaPustakaUtama","id":21726758,"id_str":"21726758","indices":[106,115]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002243584,"id_str":"663727842002243584","text":"\u3048\uff01\u305f\u304f\u3084\u304f\u3093\u4e57\u308c\u306a\u3044\u306e\u30fc\uff1f(\u2229\u00b4\ufe4f`\u2229)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897269831,"id_str":"2897269831","name":"\u30a4\u30f3\u30d5\u30eb\u4e88\u9632\u3001\u8863\u88c5\u3001\u5e83\u5831","screen_name":"kikumari_flauto","location":null,"url":null,"description":"\u6b4c\u5287\u56e3\u57a2\/\u30b3\u30f3\u30d1\/\u65b0\u6b53\/\u5408\u5bbf\/\u5e83\u5831\/\u8863\u88c5\/sophomore\/\u4eee\u9762\u671f\u30d5\u30eb\u30fc\u30c8\u306e\u4eba\/\u611b\u5999\u671f\u306f\u6b4c\uff08\u7b11\uff09","protected":false,"verified":false,"followers_count":80,"friends_count":81,"listed_count":0,"favourites_count":1645,"statuses_count":1945,"created_at":"Wed Nov 12 06:31:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622939091156348928\/ai7doh9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622939091156348928\/ai7doh9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897269831\/1437979006","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035806208,"id_str":"663727842035806208","text":"\u30e4\u3063\u3066\u308b\u3068\u304d\u3001\u3084\u3060\u3068\u304b\u30c0\u30e1\u3068\u304b\u8a00\u3046\u3051\u3069\u672c\u5f53\u306f\u3084\u3081\u3066\u6b32\u3057\u304f\u306d\u30fc\u3093\u3060\u308d\uff1f((\u30af\u30b9\u30c3 \u3053\u3093\u306a\u306b\u6fe1\u308c\u3066\u305f\u3089\u3084\u3081\u305f\u3089\u7269\u8db3\u308a\u306d\u30fc\u3060\u308d\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210495268,"id_str":"2210495268","name":"\u85e4\u30f6\u8c37\u8a00\u8449\u653b\u3081bot","screen_name":"TF__bot","location":"@t_suke_f \u7d61\u307f\u57a2","url":null,"description":"Bot\u517cNR\/\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\/\u30ea\u30d7\u306f\u5fc5\u305a\u8fd4\u3059\/\u7d61\u307f\u306b\u3053\u3044\u3088\uff1f","protected":false,"verified":false,"followers_count":408,"friends_count":8,"listed_count":5,"favourites_count":12,"statuses_count":30667,"created_at":"Sat Nov 23 11:17:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000778319834\/ef6e1996b40be0ce5cddca828d0009bc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000778319834\/ef6e1996b40be0ce5cddca828d0009bc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210495268\/1385208052","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002235392,"id_str":"663727842002235392","text":"This has been theorized before. A state riddled with inequality and distorted development (Jamaica) cannot expect to progress.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732214381,"id_str":"732214381","name":"J'can Society and HS","screen_name":"Neemie_Neenz","location":"Jamaica","url":null,"description":"SocialWorker\u26aaBibliophile\u26aaAOLJa\u26aaRotaracter\u26aaPrestonite\u26aaKo\u042fnRow\u26aaVolunteer\u26aaMarxist\u26aaAltruist\u26aaHuman","protected":false,"verified":false,"followers_count":282,"friends_count":237,"listed_count":7,"favourites_count":3615,"statuses_count":12144,"created_at":"Thu Aug 02 05:27:07 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"7A37C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/751003174\/3ffc19a1930347e228cbfb04972babaf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/751003174\/3ffc19a1930347e228cbfb04972babaf.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640025043754332160\/JfW0j_6__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640025043754332160\/JfW0j_6__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/732214381\/1366753879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842039992320,"id_str":"663727842039992320","text":"Motociclista morre ap\u00f3s bater em defensa met\u00e1lica de rodovia em Ja\u00fa: Acidente aconteceu na rodovia Ant\u00f4nio Pra... https:\/\/t.co\/NDz0l8FECX","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50916658,"id_str":"50916658","name":"Nycholas Andrei","screen_name":"nickandrei","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":424,"friends_count":911,"listed_count":7,"favourites_count":2,"statuses_count":98982,"created_at":"Fri Jun 26 04:11:44 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424282355\/nick_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424282355\/nick_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NDz0l8FECX","expanded_url":"http:\/\/glo.bo\/1Sc799w","display_url":"glo.bo\/1Sc799w","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080023666"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023215105,"id_str":"663727842023215105","text":"@trlife7 \u304a\u3063\u304b\u3042\u308a\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719474227363840,"in_reply_to_status_id_str":"663719474227363840","in_reply_to_user_id":3227924545,"in_reply_to_user_id_str":"3227924545","in_reply_to_screen_name":"trlife7","user":{"id":3314251482,"id_str":"3314251482","name":"\u7e1e\u8c37\uff20\u30ab\u30e1\u30ea\u30a81297","screen_name":"TRs_ima","location":"\u5099\u524d\u56fd","url":"http:\/\/www.pixiv.net\/member.php?id=13787575","description":"\u5099\u524d\u306e\u5be9\u795e\u8005\u3001\u3057\u307e\u3084\u3067\u3059\u3002\u5922\u7551\u51fa\u8eab\u3067\u7bc0\u64cd\u306a\u304f\u96d1\u98df\u306a\u6210\u4eba\u6e08\u8150\u30aa\u30bf\u3002\u5200\u3055\u306b\u4e3b\u98df\u3067\u7279\u306b\u9db4\u3055\u306b\u3001\u3055\u306b\u9db4\u8fba\u308a\u304c\u597d\u7269\u3002\u5200\u5263\u540c\u58eb\u306e\u8272\u604b\u3082\u7f8e\u5473\u3057\u304f\u98df\u3079\u307e\u3059\u300218\u2191\u3068\u5206\u304b\u308b\u65b9\u306e\u307f\u30d5\u30a9\u30ed\u30fc\u8a31\u53ef\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u8a73\u3057\u304f\u306f\u3053\u3061\u3089http:\/\/twpf.jp\/TRs_ima\u3092\u3054\u4e00\u8aad\u4e0b\u3055\u3044\u307e\u305b","protected":false,"verified":false,"followers_count":117,"friends_count":167,"listed_count":23,"favourites_count":18145,"statuses_count":11235,"created_at":"Thu Aug 13 12:12:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"003F66","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661562519731879936\/yiyk4gNU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661562519731879936\/yiyk4gNU_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trlife7","name":"\u594f@\u306e\u3069\u98f4\u30de\u30b7\u30e5\u30de\u30ed\u30b0\u30df\uff08\u5589\u306b\u512a\u3057\u3044\uff09","id":3227924545,"id_str":"3227924545","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842040115204,"id_str":"663727842040115204","text":"RT @UnEstudiante10: YO CUANDO TERMINE SELECTIVIDAD. http:\/\/t.co\/HTIRuuwtMd","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eapp vacilaenwhatsap1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":983192034,"id_str":"983192034","name":"Curiosidades","screen_name":"Curiosidades_TM","location":"Barcelona, Espa\u00f1a","url":"https:\/\/www.propdental.es\/","description":"Compartimos invenciones, ideas divertidas y curiosidades y cosas del d\u00eda a d\u00eda que te hacen pensar","protected":false,"verified":false,"followers_count":396069,"friends_count":78,"listed_count":466,"favourites_count":6258,"statuses_count":3735,"created_at":"Sat Dec 01 19:39:40 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175842014\/bohQGx2l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175842014\/bohQGx2l.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455047414093975552\/-VT5lGdF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455047414093975552\/-VT5lGdF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/983192034\/1397259375","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun May 17 22:44:49 +0000 2015","id":600069490102161408,"id_str":"600069490102161408","text":"YO CUANDO TERMINE SELECTIVIDAD. http:\/\/t.co\/HTIRuuwtMd","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258481388,"id_str":"258481388","name":"Un Estudiante","screen_name":"UnEstudiante10","location":"Madrid","url":"http:\/\/www.propdental.es\/","description":"Si estudias en un colegio, instituto, universidad o similares, \u00a1Este es tu Twitter!","protected":false,"verified":false,"followers_count":289546,"friends_count":50,"listed_count":365,"favourites_count":1710,"statuses_count":3371,"created_at":"Sun Feb 27 20:37:14 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000089918539\/bb6fef35f229d31d33c4e09688f22c88.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000089918539\/bb6fef35f229d31d33c4e09688f22c88.png","profile_background_tile":true,"profile_link_color":"1AF50E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489679181261709312\/7OFfrEAK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489679181261709312\/7OFfrEAK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258481388\/1405584209","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1180,"favorite_count":1125,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/HTIRuuwtMd","expanded_url":"http:\/\/vine.co\/v\/OhiFXptFvTz","display_url":"vine.co\/v\/OhiFXptFvTz","indices":[32,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/HTIRuuwtMd","expanded_url":"http:\/\/vine.co\/v\/OhiFXptFvTz","display_url":"vine.co\/v\/OhiFXptFvTz","indices":[52,74]}],"user_mentions":[{"screen_name":"UnEstudiante10","name":"Un Estudiante","id":258481388,"id_str":"258481388","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023666"} +{"delete":{"status":{"id":663727569397641216,"id_str":"663727569397641216","user_id":90791900,"user_id_str":"90791900"},"timestamp_ms":"1447080023747"}} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023243776,"id_str":"663727842023243776","text":"\u90f5\u4fbf\u7269\uff12\u4e07\uff19\u5343\u901a\u96a0\u3059\u3000\u90f5\u4fbf\u5c40\u793e\u54e1\u300c\u3084\u308b\u6c17\u306a\u304f\u306a\u3063\u3066\u300d\uff08\u671d\u65e5\u65b0\u805e\u30c7\u30b8\u30bf\u30eb\uff09 - Yahoo!\u30cb\u30e5\u30fc\u30b9 https:\/\/t.co\/6s4AU40lYu #Yahoo\u30cb\u30e5\u30fc\u30b9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105485822,"id_str":"105485822","name":"\u3075\u308f\u3055\u3089","screen_name":"huwasara","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":118,"friends_count":134,"listed_count":0,"favourites_count":10,"statuses_count":11214,"created_at":"Sat Jan 16 13:54:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1160251069\/shirokuro_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1160251069\/shirokuro_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Yahoo\u30cb\u30e5\u30fc\u30b9","indices":[74,84]}],"urls":[{"url":"https:\/\/t.co\/6s4AU40lYu","expanded_url":"http:\/\/headlines.yahoo.co.jp\/hl?a=20151109-00000027-asahi-soci","display_url":"headlines.yahoo.co.jp\/hl?a=20151109-\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842040094720,"id_str":"663727842040094720","text":"RT @56Magali: OOOOOOOOOUHOOOOOO OOOOHUUUOO QUEDATE AQUIIII\n@LaResistenciaML @lalitabol @LasNonnasDeLali #FansAwards2015 #MejorFandom Lalitas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4105638911,"id_str":"4105638911","name":"Mariali4ever","screen_name":"Siempremariali","location":null,"url":null,"description":"3\/10\/2015 #marialiexiste","protected":false,"verified":false,"followers_count":8,"friends_count":22,"listed_count":0,"favourites_count":21,"statuses_count":223,"created_at":"Tue Nov 03 16:12:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662234061470060544\/ntDeTQSx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662234061470060544\/ntDeTQSx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4105638911\/1446601489","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:27 +0000 2015","id":663719555034980352,"id_str":"663719555034980352","text":"OOOOOOOOOUHOOOOOO OOOOHUUUOO QUEDATE AQUIIII\n@LaResistenciaML @lalitabol @LasNonnasDeLali #FansAwards2015 #MejorFandom Lalitas","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851865908,"id_str":"851865908","name":"Meli|Lalita","screen_name":"56Magali","location":"Florencio Varela, Argentina","url":null,"description":"Reir te salva\u2764|| Lalita || AGUANTE MARIALI VIEJO|| 03-11-15|| Llevo su sonrisa como bandera, y que sea lo que sea.|| 12 a\u00f1os|| No estoy sola. MORIDAA","protected":false,"verified":false,"followers_count":326,"friends_count":401,"listed_count":3,"favourites_count":8473,"statuses_count":7825,"created_at":"Fri Sep 28 22:55:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851865908\/1446398426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":4,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[90,105]},{"text":"MejorFandom","indices":[106,118]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[45,61]},{"screen_name":"lalitabol","name":"\u3010I'm Lalita, bitch\u3011","id":3242139011,"id_str":"3242139011","indices":[62,72]},{"screen_name":"LasNonnasDeLali","name":"Las nonnas de Lali \u2764","id":2538582930,"id_str":"2538582930","indices":[73,89]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[104,119]},{"text":"MejorFandom","indices":[120,132]}],"urls":[],"user_mentions":[{"screen_name":"56Magali","name":"Meli|Lalita","id":851865908,"id_str":"851865908","indices":[3,12]},{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[59,75]},{"screen_name":"lalitabol","name":"\u3010I'm Lalita, bitch\u3011","id":3242139011,"id_str":"3242139011","indices":[76,86]},{"screen_name":"LasNonnasDeLali","name":"Las nonnas de Lali \u2764","id":2538582930,"id_str":"2538582930","indices":[87,103]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080023666"} +{"delete":{"status":{"id":494808049157414912,"id_str":"494808049157414912","user_id":287142868,"user_id_str":"287142868"},"timestamp_ms":"1447080023793"}} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842010656768,"id_str":"663727842010656768","text":"Number 11 https:\/\/t.co\/qV8uWZaFWT","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1912769053,"id_str":"1912769053","name":"megan","screen_name":"megan_kay2014","location":"south broadway","url":"http:\/\/hasanyonepiercedyourveil.tumblr.com","description":"Happiness can be found even in the darkest of times, if one only remembers to turn on the light. instagram: megan_kay2014","protected":false,"verified":false,"followers_count":154,"friends_count":656,"listed_count":0,"favourites_count":436,"statuses_count":6580,"created_at":"Sat Sep 28 01:09:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554855977254936576\/zADgX2c1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554855977254936576\/zADgX2c1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qV8uWZaFWT","expanded_url":"http:\/\/fb.me\/3iT6dT7lc","display_url":"fb.me\/3iT6dT7lc","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023659"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842010640384,"id_str":"663727842010640384","text":"RT @shounen_hana: \ub108\ub2d8\ub4e4\uc740 \uae00\ub9cc \uc368\uc11c \uc62c\ub9ac\uba74 \ub418\uc9c0\ub9cc\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0\n\ub098\ub294 \ub0b4\uac00 \uc785\ub355\uc2dc\ud0a8 \uc9c0\uc778\ud55c\ud14c\n#CROSSGENE\n\ubb34\ub98e\uafc7\uace0 \ube4c\uc5b4\uc57c\ud560\uc9c0\ub3c4 \ubaa8\ub974\ub294\ub370 \uc544\uc624","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241601482,"id_str":"241601482","name":"\ub9ac\ucf54\ub354\ub97c \uc090\ub9ad\uc090\ub9ad \ubd80\ub294 \ub2e8\ud638\ubc15\ub9d0\ub7ad\uc774","screen_name":"lcjyj0310","location":null,"url":"http:\/\/ask.fm\/lcjyj0310","description":"Cross Gene(\ud06c\ub85c\uc2a4\uc9c4)\uc758 \ud32c. \ub9de\ud314 \uc6d0\ud558\uc2dc\ub294 \ubd84\uc740 \uba58\uc158\uc8fc\uc138\uc694. \ub2e8, \ube44\uacf5\uacc4 \uacc4\uc815\uc774\ub791 \ud504\uc0ac\uac00 \uc54c\uadf8\ub9bc\uc778 \uacc4\uc815\uc740 \uc81c\uc678\ub429\ub2c8\ub2e4. \uc57d\uac04\uc758 \uc77c\ubcf8\uc5b4\uc640 \ub9ac\ucf54\ub354 \uc5f0\uc8fc \uac00\ub2a5. https:\/\/www.youtube.com\/channel\/UC7gfZ1ywhmiQy32sNKR9Nrw\/videos","protected":false,"verified":false,"followers_count":232,"friends_count":174,"listed_count":1,"favourites_count":1122,"statuses_count":5392,"created_at":"Sat Jan 22 17:32:06 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/341982019\/1600cloudsky_1007.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/341982019\/1600cloudsky_1007.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644592810432196608\/Rhovo9jZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644592810432196608\/Rhovo9jZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241601482\/1446597701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:25 +0000 2015","id":663726089181618177,"id_str":"663726089181618177","text":"\ub108\ub2d8\ub4e4\uc740 \uae00\ub9cc \uc368\uc11c \uc62c\ub9ac\uba74 \ub418\uc9c0\ub9cc\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0\n\ub098\ub294 \ub0b4\uac00 \uc785\ub355\uc2dc\ud0a8 \uc9c0\uc778\ud55c\ud14c\n#CROSSGENE\n\ubb34\ub98e\uafc7\uace0 \ube4c\uc5b4\uc57c\ud560\uc9c0\ub3c4 \ubaa8\ub974\ub294\ub370 \uc544\uc624","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164769480,"id_str":"2164769480","name":"\uc18c\ub144\uaf43","screen_name":"shounen_hana","location":"2\ucc28\uc6d0\uacfc 3\ucc28\uc6d0 \uadf8 \uacbd\uacc4","url":null,"description":"\uc77c\uac1c\ub355\ud6c4\/\uc548\ubc29\ub355\ud6c41\uc778\uc790\/\uc7a1\ub355\/\ub9de\ud314\uc740 \uba58\uc158\/","protected":false,"verified":false,"followers_count":83,"friends_count":87,"listed_count":0,"favourites_count":119,"statuses_count":12920,"created_at":"Wed Oct 30 13:17:09 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661476310963716096\/koJwvN2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661476310963716096\/koJwvN2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164769480\/1447001073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[19,33]},{"text":"CROSSGENE","indices":[50,60]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[37,51]},{"text":"CROSSGENE","indices":[68,78]}],"urls":[],"user_mentions":[{"screen_name":"shounen_hana","name":"\uc18c\ub144\uaf43","id":2164769480,"id_str":"2164769480","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080023659"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002276352,"id_str":"663727842002276352","text":"Freddie + cook <3 https:\/\/t.co\/TI7GaEzbUu","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184065008,"id_str":"184065008","name":"dexter","screen_name":"rivotiudexter","location":null,"url":null,"description":"foda-se","protected":false,"verified":false,"followers_count":603,"friends_count":62,"listed_count":0,"favourites_count":295,"statuses_count":12645,"created_at":"Sat Aug 28 16:10:03 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624785885960269825\/PUzfnCj0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624785885960269825\/PUzfnCj0.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3B273B","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660615215923490816\/3rzOcxsc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660615215923490816\/3rzOcxsc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184065008\/1444858059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TI7GaEzbUu","expanded_url":"http:\/\/fb.me\/7HTaSCGVi","display_url":"fb.me\/7HTaSCGVi","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023657"} +{"delete":{"status":{"id":662196686198960128,"id_str":"662196686198960128","user_id":261369506,"user_id_str":"261369506"},"timestamp_ms":"1447080023776"}} +{"delete":{"status":{"id":662194802956484608,"id_str":"662194802956484608","user_id":3277483543,"user_id_str":"3277483543"},"timestamp_ms":"1447080023758"}} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842019028992,"id_str":"663727842019028992","text":"\u3010\u3068\u3042\u308b\u51fa\u4f1a\u3044\u53a8\u306e\u6d6e\u6c17\u30dc\u30fc\u30a4(@b787dreamliner1)\u306e\u540d\u8a00\u96c6\u3011No.73 \n\uff31 : \u597d\u304d\u306a\u82b1\u306f\u3002\n\uff21 :\u685c \nNo.74 \n\uff31 : \u3055\u3042\u3001\u4eca\u304b\u3089\u4f55\u304b\u53eb\u3093\u3067\u304f\u3060\u3055\u3044\u3002\n\uff21 :\u30c9\u30e4\u30a1\u30fc","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440700865,"id_str":"440700865","name":"\u3068\u3042\u308b\u51fa\u4f1a\u3044\u53a8\u306e\u6d6e\u6c17\u30dc\u30fc\u30a4\u306e\u540d\u8a00\u96c6bot","screen_name":"deaityuuwakiboy","location":null,"url":null,"description":"\u3068\u3042\u308b\u51fa\u4f1a\u3044\u53a8\u306e\u6d6e\u6c17\u30dc\u30fc\u30a4(@b787dreamliner1)\u306e\u540d\u8a00bot\u3067\u3059 \u306a\u304a\u3053\u306ebot\u306f\u30a6\u30a4\u30e9\u30a4(@whirlwindrhineA)\u306b\u3088\u3063\u3066\u4f5c\u3089\u308c\u305f\u306e\u3067\u4f55\u304b\u3042\u308c\u3070\u305d\u3061\u3089\u306e\u65b9\u306b\u5831\u544a\u304a\u9858\u3044\u3057\u307e\u3059m(__)m","protected":false,"verified":false,"followers_count":139,"friends_count":167,"listed_count":2,"favourites_count":7,"statuses_count":66484,"created_at":"Mon Dec 19 09:34:04 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1701943408\/T9mcIghp_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1701943408\/T9mcIghp_normal","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"b787dreamliner1","name":"\u3068\u3042\u308b\u5317\u56fd\u306e\u5927\u5b66\u9662\u751f@\u3046\u3055\u304e\u7d44","id":380188209,"id_str":"380188209","indices":[15,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023661"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002345984,"id_str":"663727842002345984","text":"RT @javadth92: https:\/\/t.co\/QZwKCEeJwp\n\u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0647\u0646\u06af \u062c\u062f\u06cc\u062f + \u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0647\u0646\u06af + \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u0648\u0632\u06cc\u06a9\n#\u062f\u0627\u0646\u0644\u0648\u062f #\u0645\u0648\u0632\u06cc\u06a9 #\u0627\u0647\u0646\u06af","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149302152,"id_str":"4149302152","name":"vanes hunnicutt","screen_name":"vaneshunnicu","location":null,"url":null,"description":"Bet friends for ever. Romee,Britt, Terre, Nna, Lisa","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":6,"statuses_count":14,"created_at":"Mon Nov 09 13:00:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724124804653056\/Z0kfgQS4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724124804653056\/Z0kfgQS4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:26 +0000 2015","id":663711498099814400,"id_str":"663711498099814400","text":"https:\/\/t.co\/QZwKCEeJwp\n\u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0647\u0646\u06af \u062c\u062f\u06cc\u062f + \u062f\u0627\u0646\u0644\u0648\u062f \u0627\u0647\u0646\u06af + \u062f\u0627\u0646\u0644\u0648\u062f \u0645\u0648\u0632\u06cc\u06a9\n#\u062f\u0627\u0646\u0644\u0648\u062f #\u0645\u0648\u0632\u06cc\u06a9 #\u0627\u0647\u0646\u06af","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990380124,"id_str":"2990380124","name":"Jav Adth","screen_name":"javadth92","location":null,"url":"http:\/\/scripters.info","description":"just webmaster\nlove trav3l\n\u0639\u0627\u0634\u0642 \u0633\u0641\u0631\ninstagrampage.ir","protected":false,"verified":false,"followers_count":17,"friends_count":277,"listed_count":0,"favourites_count":6,"statuses_count":52,"created_at":"Mon Jan 19 22:32:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557305411976437760\/5kJJUwX9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557305411976437760\/5kJJUwX9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990380124\/1421706935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":367,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062f\u0627\u0646\u0644\u0648\u062f","indices":[70,77]},{"text":"\u0645\u0648\u0632\u06cc\u06a9","indices":[78,84]},{"text":"\u0627\u0647\u0646\u06af","indices":[85,90]}],"urls":[{"url":"https:\/\/t.co\/QZwKCEeJwp","expanded_url":"https:\/\/berozseda.com\/","display_url":"berozseda.com","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fa"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062f\u0627\u0646\u0644\u0648\u062f","indices":[85,92]},{"text":"\u0645\u0648\u0632\u06cc\u06a9","indices":[93,99]},{"text":"\u0627\u0647\u0646\u06af","indices":[100,105]}],"urls":[{"url":"https:\/\/t.co\/QZwKCEeJwp","expanded_url":"https:\/\/berozseda.com\/","display_url":"berozseda.com","indices":[15,38]}],"user_mentions":[{"screen_name":"javadth92","name":"Jav Adth","id":2990380124,"id_str":"2990380124","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023223296,"id_str":"663727842023223296","text":"RT @amyu_guildoll: @eystyle_1949eyy \n\n\u77f3\u6a4b\u5409\u9053\u3055\u3093\uff3c(^o^)\uff0f\n\u3053\u3093\u3070\u3093\u307f\u3085\u3063\u3074\ud83d\ude0a\ud83d\udc93\n\u3044\u3064\u3082\u6295\u7968\u3057\u3066\u304f\u3060\u3055\u3063\u3066\n\u3042\u308a\u304c\u3068\u3063\u3074\u3067\u3059\ud83d\ude22\ud83d\ude4f\ud83d\udc95\n\u3042\u307f\u3085\u3063\u3074\u3082\u9811\u5f35\u308a\u307e\u3059\u3063\u3074\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564405186,"id_str":"564405186","name":"mina tsubone","screen_name":"MinaTsubone","location":"\u6771\u4eac\u30fb\u5e83\u5cf6","url":null,"description":"\u521d\u3081\u307e\u3057\u3066\u79c1\u306ehome\u3067\u306f\u4e3b\u306b\u30a4\u30f3\u30c7\u30a3\u30fc\u30ba\u30a2\u30a4\u30c9\u30eb\u3055\u3093\u53ca\u3073\u30e1\u30b8\u30e3\u30fc\u30a2\u30a4\u30c9\u30eb\u3055\u3093\u306e\u7d39\u4ecb\u3068\u5fdc\u63f4\u3092\u3057\u3066\u3044\u307e\u3059\uff01\u30cd\u30c3\u30c8\u30de\u30ca\u2010\u4e00\u822c\u5e38\u8b58\u5b88\u308c\u306a\u3044\u65b9\u30fb\u4eba\u306e\u4e2d\u50b7\u8ab9\u8b17\u3059\u308b\u65b9\u30fb\u30d5\u30a9\u30ed\u30ef\u2010\u3055\u3093\u3078\u306e\u8ff7\u60d1\u884c\u70ba\u30fb\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u81ea\u5df1\u7d39\u4ecb\u7121\u3057\u306e\u65b9\u30fb\u9375\u30a2\u30ab\u30fb\u30a2\u30c0\u30eb\u30c8\u95a2\u4fc2\u51fa\u4f1a\u3044\u95a2\u4fc2\u30d5\u30a9\u30ed\u2010\u304a\u65ad\u308a(\u30d5\u30a9\u30ed\u30fc\u306e\u65b9\u542b\u3081\u3066)\u2606\u672c\u30a2\u30ab\u2606\u5225\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u6709\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":4927,"friends_count":5026,"listed_count":53,"favourites_count":244897,"statuses_count":307832,"created_at":"Fri Apr 27 05:40:29 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2181941203\/D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2181941203\/D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564405186\/1403932150","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:24 +0000 2015","id":663727090794000386,"id_str":"663727090794000386","text":"@eystyle_1949eyy \n\n\u77f3\u6a4b\u5409\u9053\u3055\u3093\uff3c(^o^)\uff0f\n\u3053\u3093\u3070\u3093\u307f\u3085\u3063\u3074\ud83d\ude0a\ud83d\udc93\n\u3044\u3064\u3082\u6295\u7968\u3057\u3066\u304f\u3060\u3055\u3063\u3066\n\u3042\u308a\u304c\u3068\u3063\u3074\u3067\u3059\ud83d\ude22\ud83d\ude4f\ud83d\udc95\n\u3042\u307f\u3085\u3063\u3074\u3082\u9811\u5f35\u308a\u307e\u3059\u3063\u3074\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723418152382465,"in_reply_to_status_id_str":"663723418152382465","in_reply_to_user_id":267474693,"in_reply_to_user_id_str":"267474693","in_reply_to_screen_name":"eystyle_1949eyy","user":{"id":2682383840,"id_str":"2682383840","name":"\u3042\u307f\u3085\u3063\u3074 \u029a\u164f\u0324\u032b\u025e \u30ae\u30eb\u30c9\u30fc\u30eb","screen_name":"amyu_guildoll","location":"\u3046\u3055\u304e\u306e\u56fd \u3068 \u4eba\u9593\u754c","url":"http:\/\/s.ameblo.jp\/amyu-guildoll","description":"\u029a GUILDOLL2\u671f\u751f \u30e1\u30eb\u30c6\u30a3\u30de\u30b8\u30c3\u30af \u3074\u3093\u304f \u025e\u30a8\u30f3\u30c8\u30ea\u30fcNo.11 \u2721 http:\/\/www.mysma.tv\/tvlist\/bubkach\/ \u7d76\u5bfe\u306b\u7d76\u5bfe\u306b1\u4f4d\uff01\uff01\uff01\uff01\uff01\uff01\u672c\u6c17\u3067\u3059\u3002\u3053\u308c\u3067\u4eba\u751f\u5909\u3048\u305f\u3044\u3067\u3059\u3002\u5165\u308c\u3066\u304f\u308c\u305f\u65b9\u306b\u5f8c\u6094\u3055\u305b\u307e\u305b\u3093\u3002\u3069\u3046\u304b\u6295\u7968\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u30ea\u30d7\u3001DM\u8fd4\u4fe1 \u9375\u57a2\u30d5\u30a9\u30ed\u30fc \u3067\u304d\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":2992,"friends_count":2469,"listed_count":96,"favourites_count":68224,"statuses_count":11729,"created_at":"Sat Jul 26 13:43:37 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661097069948440576\/-xV_9iOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661097069948440576\/-xV_9iOg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2682383840\/1446565247","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eystyle_1949eyy","name":"\u77f3\u6a4b \u5409\u9053 50\u672c\u76ee\u30ef\u30f3\u30de\u30f3\u7d42\u4e86\u30fb\u30fb","id":267474693,"id_str":"267474693","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amyu_guildoll","name":"\u3042\u307f\u3085\u3063\u3074 \u029a\u164f\u0324\u032b\u025e \u30ae\u30eb\u30c9\u30fc\u30eb","id":2682383840,"id_str":"2682383840","indices":[3,17]},{"screen_name":"eystyle_1949eyy","name":"\u77f3\u6a4b \u5409\u9053 50\u672c\u76ee\u30ef\u30f3\u30de\u30f3\u7d42\u4e86\u30fb\u30fb","id":267474693,"id_str":"267474693","indices":[19,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023662"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006450176,"id_str":"663727842006450176","text":"\u2605 Cinta yg sejati tdk terletak pd apa yg telah dikerjakan dan diketahui, namun pd apa yg telah dikerjakan tapi tdk dikketahui","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2174145307,"id_str":"2174145307","name":"","screen_name":"AgaScoot_Reggae","location":"Banyuwangi, East Java","url":"http:\/\/www.xnonymous.blogspot.com","description":"\u2554\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2566\u2557 \u2560\u256c\u2588\u2580\u256c\u2588\u2580\u2588\u256c\u2588\u256c\u256c\u2588\u256c\u256c\u2588\u2580\u2588\u256c\u2588\u256c\u2588\u256c\u2588\u256c\u2563 \u2560\u256c\u2588\u2580\u256c\u2588\u2584\u2588\u256c\u2588\u2584\u256c\u2588\u2584\u256c\u2588\u2584\u2588\u256c\u2588\u2584\u2588\u2584\u2588\u256c\u2563 \u255a\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u255d IG: Phanatagama http:\/\/fb.com\/aga.comunitypartii","protected":false,"verified":false,"followers_count":2214,"friends_count":1515,"listed_count":1,"favourites_count":103,"statuses_count":246729,"created_at":"Mon Nov 04 14:38:03 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000121636078\/13ff1e8b6f9bf109d0a6ffbf9a90a75e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000121636078\/13ff1e8b6f9bf109d0a6ffbf9a90a75e.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561836012867829761\/1Nld-Dp__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561836012867829761\/1Nld-Dp__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2174145307\/1422787198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842039992321,"id_str":"663727842039992321","text":"@fa_B0724 \u5426\u5b9a\u306f\u3057\u306a\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727803741765633,"in_reply_to_status_id_str":"663727803741765633","in_reply_to_user_id":1461223386,"in_reply_to_user_id_str":"1461223386","in_reply_to_screen_name":"fa_B0724","user":{"id":1461223386,"id_str":"1461223386","name":"\u3075\u3041\u30fc\u3073\u30fc","screen_name":"fa_B0724","location":"\u304a\u3061\u3093\u3061\u3093\u30e9\u30f3\u30c9","url":null,"description":"\u4e16\u754c\u3092\u3075\u3041\u30fc\u3073\u30fc\u306b\u67d3\u3081\u308b\u3002","protected":false,"verified":false,"followers_count":319,"friends_count":555,"listed_count":6,"favourites_count":26539,"statuses_count":51447,"created_at":"Mon May 27 04:22:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588150032978878464\/HpDd647f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588150032978878464\/HpDd647f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1461223386\/1442900506","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fa_B0724","name":"\u3075\u3041\u30fc\u3073\u30fc","id":1461223386,"id_str":"1461223386","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023666"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842031706112,"id_str":"663727842031706112","text":"mudou o nome do ator https:\/\/t.co\/q1aIjLOpNd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":768472266,"id_str":"768472266","name":"lari\u00ea","screen_name":"wepattie","location":null,"url":null,"description":"#nov13","protected":false,"verified":false,"followers_count":7535,"friends_count":5691,"listed_count":566,"favourites_count":12128,"statuses_count":146756,"created_at":"Mon Aug 20 00:05:07 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453992324633071616\/Qkuixg0U.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453992324633071616\/Qkuixg0U.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9C708F","profile_text_color":"B8C9B1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725180250939392\/a-sQInc5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725180250939392\/a-sQInc5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768472266\/1447079532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727413264834562,"quoted_status_id_str":"663727413264834562","quoted_status":{"created_at":"Mon Nov 09 14:38:41 +0000 2015","id":663727413264834562,"id_str":"663727413264834562","text":"mudou alguma coisa no livro de soul rebel? pq tipo nao tem sentido comprar se nao mudou nada #askbelieber","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1358081798,"id_str":"1358081798","name":"bianca","screen_name":"PRAYFORPURPOSE","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"justin bieber is a big part of happiness in my life #nov13","protected":false,"verified":false,"followers_count":10761,"friends_count":4047,"listed_count":101,"favourites_count":163,"statuses_count":54498,"created_at":"Tue Apr 16 23:15:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164207009\/5kRQyrUt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164207009\/5kRQyrUt.jpeg","profile_background_tile":false,"profile_link_color":"9C9C9C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662651772897533952\/_iAq-MG8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662651772897533952\/_iAq-MG8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1358081798\/1446823468","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"askbelieber","indices":[93,105]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q1aIjLOpNd","expanded_url":"https:\/\/twitter.com\/PRAYFORPURPOSE\/status\/663727413264834562","display_url":"twitter.com\/PRAYFORPURPOSE\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080023664"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842006437892,"id_str":"663727842006437892","text":"RT @nao_kakaomame: \u30b9\u30bf\u30a4\u30ea\u30c3\u30b7\u30e5\u306a\u7acb\u3061\u4e0a\u304c\u308a\u304b\u3089\u306e\u30af\u30bd\u306e\u3088\u3046\u306a\u6b69\u884c http:\/\/t.co\/HeL3fLtCMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562686897,"id_str":"562686897","name":"\u307f\u3064\u305f\u306b@\u8ab2\u91d1\u3067\u304d\u307e\u305b\u3093","screen_name":"cokowan","location":"\u5730\u7403\u4e0a","url":null,"description":"\u304a\u7d75\u63cf\u304d\u3057\u3066\u308b\u8266\u3053\u308c\u63d0\u7763 \u30ea\u30f3\u30ac\u306b\u3044\u308b\u3088 \u8266\u5a18\u306f\u5915\u5f35\u304c\u4e00\u756a \u57fa\u672cNL\u304c\u597d\u304d\u3060\u3051\u3069BLGL\u3082\u3044\u3051\u308b \u76f8\u6a21\u9bd6\u307e\u3093\u3070\u3061\u3083\u3093\u30e2\u30f3\u30da \u3042\u3093\u30b9\u30bf\u306a\u305a\u306aATM\u3067\u702c\u540d\u6cc9\u306e\u8c5a","protected":false,"verified":false,"followers_count":19,"friends_count":75,"listed_count":0,"favourites_count":6584,"statuses_count":4821,"created_at":"Wed Apr 25 05:03:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597410682049441792\/VsgZUWqk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597410682049441792\/VsgZUWqk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562686897\/1420214421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 28 09:46:20 +0000 2014","id":516161979447128065,"id_str":"516161979447128065","text":"\u30b9\u30bf\u30a4\u30ea\u30c3\u30b7\u30e5\u306a\u7acb\u3061\u4e0a\u304c\u308a\u304b\u3089\u306e\u30af\u30bd\u306e\u3088\u3046\u306a\u6b69\u884c http:\/\/t.co\/HeL3fLtCMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623736433,"id_str":"623736433","name":"\u30ca\u30aaE","screen_name":"nao_kakaomame","location":"\u673a\u306e\u4e0b","url":null,"description":"\u4e09\u89d2\u7ffc\u3068\u304bG36C\u3068\u304b\u304c\u597d\u304d\u306a\u30ec\u30b6\u30b9\u30d4\u4e57\u308a","protected":false,"verified":false,"followers_count":1292,"friends_count":940,"listed_count":40,"favourites_count":13340,"statuses_count":82771,"created_at":"Sun Jul 01 13:11:21 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455299320502157312\/18Iw48H-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455299320502157312\/18Iw48H-.jpeg","profile_background_tile":false,"profile_link_color":"00B395","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660858588416503808\/sH4_8yAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660858588416503808\/sH4_8yAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623736433\/1445923018","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102038,"favorite_count":85370,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"animated_gif","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/BynGlOzCIAAdkXW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nao_kakaomame","name":"\u30ca\u30aaE","id":623736433,"id_str":"623736433","indices":[3,17]}],"symbols":[],"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"source_status_id":516161979447128065,"source_status_id_str":"516161979447128065","source_user_id":623736433,"source_user_id_str":"623736433"}]},"extended_entities":{"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"animated_gif","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"source_status_id":516161979447128065,"source_status_id_str":"516161979447128065","source_user_id":623736433,"source_user_id_str":"623736433","video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/BynGlOzCIAAdkXW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023658"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842002231297,"id_str":"663727842002231297","text":"\u571f\u5c4b\u592a\u9cf3\u300c\u4e00\u756a\u4f1a\u3044\u305f\u3044\u4eba\u300d\u677e\u5ca1\u4fee\u9020\u3068\u5bfe\u9762\u3057\u30b9\u30de\u30a4\u30eb!! https:\/\/t.co\/YV2qKSCmGP","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":773612227,"id_str":"773612227","name":"\u0414\u0430\u0440\u044c\u044f \u0412\u043e\u0439\u0447\u0435\u043d\u043a\u043e","screen_name":"voychenko97","location":"\u0412\u043e\u0440\u043e\u043d\u0435\u0436!!!","url":"http:\/\/vk.com\/id133231857","description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":49,"listed_count":0,"favourites_count":0,"statuses_count":4746,"created_at":"Wed Aug 22 12:52:51 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3295512474\/33bf876e668e32f616c90584dee54c22_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3295512474\/33bf876e668e32f616c90584dee54c22_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YV2qKSCmGP","expanded_url":"http:\/\/bit.ly\/1HCxKXP","display_url":"bit.ly\/1HCxKXP","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023657"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842027397121,"id_str":"663727842027397121","text":"\u0641\u0644\u0645 \u0631\u0642\u0635 \u0642\u062d\u0627\u0628 \u0641\u064a \u062f\u0628\u064a..https:\/\/t.co\/4glb6ffC9r\n\n#\u0645\u062d\u0627\u0631\u0645\n#\u0645\u0635\n#\u0641\u064a\u062f\u064a\u0648_\u0633\u0643\u0633\nJELC https:\/\/t.co\/QK1HCgQkzN","source":"\u003ca href=\"http:\/\/www.insuranse-wd.com\/\" rel=\"nofollow\"\u003e\u062d\u0628 \u0645\u0627\u0644\u0627 \u0646\u0647\u0627\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4112959160,"id_str":"4112959160","name":"\u0645\u0627\u062c\u062f \u0627\u0644\u0634\u062c\u064a\u0628\u064a","screen_name":"benjami61379511","location":"Saudi Arabia","url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":3882,"created_at":"Tue Nov 03 12:49:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663089674794237952\/k8BLSdv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663089674794237952\/k8BLSdv6_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u062d\u0627\u0631\u0645","indices":[46,52]},{"text":"\u0645\u0635","indices":[53,56]},{"text":"\u0641\u064a\u062f\u064a\u0648_\u0633\u0643\u0633","indices":[57,67]}],"urls":[{"url":"https:\/\/t.co\/4glb6ffC9r","expanded_url":"http:\/\/goo.gl\/zBsAlM","display_url":"goo.gl\/zBsAlM","indices":[21,44]}],"user_mentions":[],"symbols":[],"media":[{"id":663727841855442944,"id_str":"663727841855442944","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9KFUkAA4qGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9KFUkAA4qGR.jpg","url":"https:\/\/t.co\/QK1HCgQkzN","display_url":"pic.twitter.com\/QK1HCgQkzN","expanded_url":"http:\/\/twitter.com\/benjami61379511\/status\/663727842027397121\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":284,"resize":"fit"},"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727841855442944,"id_str":"663727841855442944","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9KFUkAA4qGR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9KFUkAA4qGR.jpg","url":"https:\/\/t.co\/QK1HCgQkzN","display_url":"pic.twitter.com\/QK1HCgQkzN","expanded_url":"http:\/\/twitter.com\/benjami61379511\/status\/663727842027397121\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":284,"resize":"fit"},"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":284,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080023663"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842023337984,"id_str":"663727842023337984","text":"@passengermusic_ i thought you wanted to go to liverpool??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727546203271168,"in_reply_to_status_id_str":"663727546203271168","in_reply_to_user_id":164614847,"in_reply_to_user_id_str":"164614847","in_reply_to_screen_name":"passengermusic_","user":{"id":1142650614,"id_str":"1142650614","name":"Anniiieee","screen_name":"NoMikeity","location":"Cologne, Germland","url":"http:\/\/allthelittlelightsinmyheart.tumblr.com","description":"I'm getting bored of the dark, we could turn the lights on, you know","protected":false,"verified":false,"followers_count":816,"friends_count":466,"listed_count":12,"favourites_count":33869,"statuses_count":80906,"created_at":"Sat Feb 02 15:08:29 +0000 2013","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158146298\/B61LsCbS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158146298\/B61LsCbS.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663632632165629952\/dFSQqC5G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663632632165629952\/dFSQqC5G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1142650614\/1440370582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"passengermusic_","name":"s\u0131la \u2716\ufe0f","id":164614847,"id_str":"164614847","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023662"} +{"delete":{"status":{"id":662240483104571392,"id_str":"662240483104571392","user_id":1396323114,"user_id_str":"1396323114"},"timestamp_ms":"1447080023936"}} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842035900416,"id_str":"663727842035900416","text":"Even my mum tells me to 'get out and get laid'. #unilife https:\/\/t.co\/uOW2uZ75SF","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218640743,"id_str":"218640743","name":"Monty","screen_name":"TheMontyHall","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":379,"friends_count":238,"listed_count":5,"favourites_count":622,"statuses_count":917,"created_at":"Mon Nov 22 21:51:41 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158595968\/NF99OL9-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158595968\/NF99OL9-.jpeg","profile_background_tile":false,"profile_link_color":"DF004C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"5F048C","profile_text_color":"00C217","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653331407020888065\/25H3neif_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653331407020888065\/25H3neif_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218640743\/1406548613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"unilife","indices":[48,56]}],"urls":[{"url":"https:\/\/t.co\/uOW2uZ75SF","expanded_url":"https:\/\/instagram.com\/p\/93iV41ECnz\/","display_url":"instagram.com\/p\/93iV41ECnz\/","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080023665"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842010791936,"id_str":"663727842010791936","text":"Mark Lenders strabico, terza e per me ultima uscita della \"collezzione di oli e bengj\" (cit). https:\/\/t.co\/jA6GKzroJF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128880692,"id_str":"128880692","name":"Alessandro Apreda","screen_name":"docmanhattan4","location":null,"url":"http:\/\/docmanhattan.blogspot.it","description":"Crede negli Oreo, nelle Vans slip on, nella Red Bull e nel secondo avvento della Grande Inter. Scrive robe. Pensa che bisogna sempre crederCi.","protected":false,"verified":false,"followers_count":4238,"friends_count":589,"listed_count":89,"favourites_count":6251,"statuses_count":9529,"created_at":"Fri Apr 02 13:43:22 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F99B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154045366\/wpgRwmpY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154045366\/wpgRwmpY.jpeg","profile_background_tile":false,"profile_link_color":"1F99B8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/792729126\/dr-manhattan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/792729126\/dr-manhattan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128880692\/1430893767","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727832372264960,"id_str":"663727832372264960","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8mwWwAA5iuD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8mwWwAA5iuD.jpg","url":"https:\/\/t.co\/jA6GKzroJF","display_url":"pic.twitter.com\/jA6GKzroJF","expanded_url":"http:\/\/twitter.com\/docmanhattan4\/status\/663727842010791936\/photo\/1","type":"photo","sizes":{"medium":{"w":593,"h":1024,"resize":"fit"},"small":{"w":340,"h":587,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":593,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727832372264960,"id_str":"663727832372264960","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8mwWwAA5iuD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8mwWwAA5iuD.jpg","url":"https:\/\/t.co\/jA6GKzroJF","display_url":"pic.twitter.com\/jA6GKzroJF","expanded_url":"http:\/\/twitter.com\/docmanhattan4\/status\/663727842010791936\/photo\/1","type":"photo","sizes":{"medium":{"w":593,"h":1024,"resize":"fit"},"small":{"w":340,"h":587,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":593,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080023659"} +{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842018988033,"id_str":"663727842018988033","text":"\u6620\u50cf\u96fb\u4f1d\u866b\u767a\u898b\uff01\n\u65b0\u305f\u306a\u8239\u300c\u30e1\u30ea\u30fc\u53f7\u300d\u306b\u4e57\u308a\u8fbc\u3080\u9ea6\u308f\u3089\u306e\u4e00\u5473\u306e\u59ff\u3092\u64ae\u5f71\u3057\u307e\u3057\u305f\uff01\nhttps:\/\/t.co\/YpSCYP5MBu\u3000#\u30c8\u30ec\u30af\u30eb https:\/\/t.co\/nqj5tx06Gg","source":"\u003ca href=\"http:\/\/www.bandaigames.channel.or.jp\/list\/one_main\/tc\/\" rel=\"nofollow\"\u003eONE PIECE \u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130339360,"id_str":"4130339360","name":"\u5ed6\u5f65\u660c","screen_name":"Letitia_DK","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":22,"created_at":"Thu Nov 05 02:32:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30c8\u30ec\u30af\u30eb","indices":[65,70]}],"urls":[{"url":"https:\/\/t.co\/YpSCYP5MBu","expanded_url":"http:\/\/bnent.jp\/optw\/","display_url":"bnent.jp\/optw\/","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663727841431851008,"id_str":"663727841431851008","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9IgVEAA3FOP.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9IgVEAA3FOP.png","url":"https:\/\/t.co\/nqj5tx06Gg","display_url":"pic.twitter.com\/nqj5tx06Gg","expanded_url":"http:\/\/twitter.com\/Letitia_DK\/status\/663727842018988033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727841431851008,"id_str":"663727841431851008","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9IgVEAA3FOP.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9IgVEAA3FOP.png","url":"https:\/\/t.co\/nqj5tx06Gg","display_url":"pic.twitter.com\/nqj5tx06Gg","expanded_url":"http:\/\/twitter.com\/Letitia_DK\/status\/663727842018988033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080023661"} +{"delete":{"status":{"id":662349665040486401,"id_str":"662349665040486401","user_id":284241884,"user_id_str":"284241884"},"timestamp_ms":"1447080024280"}} +{"delete":{"status":{"id":647115562817056768,"id_str":"647115562817056768","user_id":3308459758,"user_id_str":"3308459758"},"timestamp_ms":"1447080024326"}} +{"delete":{"status":{"id":663726810241216512,"id_str":"663726810241216512","user_id":3306704564,"user_id_str":"3306704564"},"timestamp_ms":"1447080024336"}} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846196707328,"id_str":"663727846196707328","text":"RT @Asdis__: #CoolLikeGree","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157432485,"id_str":"157432485","name":"Ego Tickler \u2661","screen_name":"Afoley21","location":"Accra, Ghana","url":null,"description":"I'm blessd,favoured nd awesome!!! God luvs me nd u!! #ManU all the way!!","protected":false,"verified":false,"followers_count":3330,"friends_count":881,"listed_count":11,"favourites_count":1667,"statuses_count":98437,"created_at":"Sat Jun 19 20:08:56 +0000 2010","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588998460424130560\/Qdl66CXz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588998460424130560\/Qdl66CXz.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661680853978849280\/SczfWA8H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661680853978849280\/SczfWA8H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157432485\/1445806585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:14 +0000 2015","id":663726546646093824,"id_str":"663726546646093824","text":"#CoolLikeGree","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":280221714,"id_str":"280221714","name":"B \u264a","screen_name":"Asdis__","location":"Ghana","url":null,"description":"@AyewAndre \u2665. Isaiah 43:19. GOD IS THE REASON. #CFCgang","protected":false,"verified":false,"followers_count":4115,"friends_count":2136,"listed_count":10,"favourites_count":501,"statuses_count":117572,"created_at":"Sun Apr 10 22:13:18 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662525771991416832\/h-8COpxv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662525771991416832\/h-8COpxv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280221714\/1446158996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"CoolLikeGree","indices":[0,13]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CoolLikeGree","indices":[13,26]}],"urls":[],"user_mentions":[{"screen_name":"Asdis__","name":"B \u264a","id":280221714,"id_str":"280221714","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080024657"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846226010112,"id_str":"663727846226010112","text":"(\u00b4\u2018\u25bd\u2018\uff40)\u307e\u3093\u305e\u304f\u307d\u3053","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":239005991,"id_str":"239005991","name":"\u307d\u3093\u307d\u3053","screen_name":"ponpoko_bot","location":null,"url":"http:\/\/mblg.tv\/naakas\/","description":"\u307d\u3093\u307d\u3053bot\u3067\u3059\u3002\u5c71\u7530\u3058\u3083\u306a\u3044\u3088\u3002\u5b9f\u5728\u306e\u500b\u4eba\u30fb\u56e3\u4f53\u30fb\u7d44\u7e54\u3068\u306f\u4e00\u5207\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e0a\u8a18URL\u306e\u8aac\u660e\u66f8\u3092\u3054\u4e00\u8aad\u304f\u3060\u3055\u3044\u3002 \u203b\u8a66\u904b\u8ee2\u4e2d\u3067\u3059\u3002\u306a\u306b\u304b\u3042\u308c\u3070DM\u3067\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":75,"friends_count":96,"listed_count":1,"favourites_count":14,"statuses_count":47350,"created_at":"Sun Jan 16 15:38:15 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1711624579\/p_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1711624579\/p_normal.gif","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846213423105,"id_str":"663727846213423105","text":"RT @Funny_Truth: Too drunk to drive home? Sleep in your car, but take your keys out of the ignition. Its still a DUI if they're still in.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329961088,"id_str":"329961088","name":"Maria Marreiros","screen_name":"MariaMarreiros1","location":"Portim\u00e3o, Portugal","url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":123,"listed_count":1,"favourites_count":134,"statuses_count":66,"created_at":"Tue Jul 05 21:55:16 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591308290304430080\/g2JJfXg4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591308290304430080\/g2JJfXg4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329961088\/1429814032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 01 03:44:44 +0000 2015","id":583112734213951488,"id_str":"583112734213951488","text":"Too drunk to drive home? Sleep in your car, but take your keys out of the ignition. Its still a DUI if they're still in.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296623811,"id_str":"296623811","name":"Survival Tips","screen_name":"Funny_Truth","location":null,"url":null,"description":"Tips on how to survive and make life easier.*parody* not affiliated with Bear Grylls or Man vs Wild.DO NOT OWN CONTENT POSTED.\u2709\ufe0f Contact Funny_Truth@Hotmail.com","protected":false,"verified":false,"followers_count":3909000,"friends_count":182,"listed_count":5042,"favourites_count":1366,"statuses_count":43810,"created_at":"Wed May 11 03:39:32 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E0E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/856293722\/d6b5bdfe6cb1e64e58b978054d01f24c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/856293722\/d6b5bdfe6cb1e64e58b978054d01f24c.jpeg","profile_background_tile":false,"profile_link_color":"D91811","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627698226280280066\/i09NCTN6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627698226280280066\/i09NCTN6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296623811\/1438546193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11742,"favorite_count":19161,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Funny_Truth","name":"Survival Tips","id":296623811,"id_str":"296623811","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024661"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846205087745,"id_str":"663727846205087745","text":"RT @VSPINK_Queen: How To Turn A Girl On\n\n https:\/\/t.co\/tGP0SteglL","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1692631236,"id_str":"1692631236","name":"\ufe0fSugar Daddy","screen_name":"MyBootyYourFace","location":"your dreams","url":null,"description":"follow me :)","protected":false,"verified":false,"followers_count":32223,"friends_count":11304,"listed_count":96,"favourites_count":9134,"statuses_count":32901,"created_at":"Fri Aug 23 02:32:55 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660175314581106688\/MCvOepxx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660175314581106688\/MCvOepxx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1692631236\/1441831372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:28 +0000 2015","id":663720814412369920,"id_str":"663720814412369920","text":"How To Turn A Girl On\n\n https:\/\/t.co\/tGP0SteglL","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2394862368,"id_str":"2394862368","name":"Kelly \u2757\ufe0f","screen_name":"VSPINK_Queen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2185,"friends_count":2622,"listed_count":2,"favourites_count":7,"statuses_count":56,"created_at":"Mon Mar 17 18:10:49 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662610916228374529\/Z0YNffQ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662610916228374529\/Z0YNffQ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394862368\/1446813727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tGP0SteglL","expanded_url":"http:\/\/newssash.com\/link\/mqepo3rm3l","display_url":"newssash.com\/link\/mqepo3rm3l","indices":[24,47]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tGP0SteglL","expanded_url":"http:\/\/newssash.com\/link\/mqepo3rm3l","display_url":"newssash.com\/link\/mqepo3rm3l","indices":[42,65]}],"user_mentions":[{"screen_name":"VSPINK_Queen","name":"Kelly \u2757\ufe0f","id":2394862368,"id_str":"2394862368","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024659"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846226067457,"id_str":"663727846226067457","text":"RT @BESTVlDS: Me as a parent \ud83d\ude01 https:\/\/t.co\/q0lvi3gBh9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":485045969,"id_str":"485045969","name":"Filippo Florindo","screen_name":"10_Fil","location":"Modena, Italy","url":null,"description":null,"protected":false,"verified":false,"followers_count":733,"friends_count":678,"listed_count":1,"favourites_count":10845,"statuses_count":18118,"created_at":"Mon Feb 06 19:34:03 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661186284547911680\/1CVYlXgB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661186284547911680\/1CVYlXgB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/485045969\/1446474069","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 28 18:36:57 +0000 2015","id":648567085140996097,"id_str":"648567085140996097","text":"Me as a parent \ud83d\ude01 https:\/\/t.co\/q0lvi3gBh9","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496091886,"id_str":"496091886","name":"Best Videos","screen_name":"BESTVlDS","location":null,"url":null,"description":"We post the best videos on the web. Send us your favs.","protected":false,"verified":false,"followers_count":31781,"friends_count":2545,"listed_count":15,"favourites_count":0,"statuses_count":515,"created_at":"Sat Feb 18 16:14:36 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614662115\/mixwr8fwhmu2h58usmay.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614662115\/mixwr8fwhmu2h58usmay.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655704635559182336\/YGumxQer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655704635559182336\/YGumxQer_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1871,"favorite_count":2188,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q0lvi3gBh9","expanded_url":"https:\/\/vine.co\/v\/ex395LM7urX","display_url":"vine.co\/v\/ex395LM7urX","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/q0lvi3gBh9","expanded_url":"https:\/\/vine.co\/v\/ex395LM7urX","display_url":"vine.co\/v\/ex395LM7urX","indices":[31,54]}],"user_mentions":[{"screen_name":"BESTVlDS","name":"Best Videos","id":496091886,"id_str":"496091886","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846213492736,"id_str":"663727846213492736","text":"RT @kaylagalore: girls do not look their age anymore.. at all. \ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1713353840,"id_str":"1713353840","name":"B. CUFFERSON","screen_name":"breyaaaaa","location":null,"url":null,"description":"@Drake is the GOAT","protected":false,"verified":false,"followers_count":489,"friends_count":438,"listed_count":0,"favourites_count":1254,"statuses_count":9569,"created_at":"Fri Aug 30 17:53:19 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658466420934750208\/utPIZnmI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658466420934750208\/utPIZnmI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1713353840\/1445825603","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:09 +0000 2015","id":663726776972140544,"id_str":"663726776972140544","text":"girls do not look their age anymore.. at all. \ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2773680895,"id_str":"2773680895","name":"leakonarise","screen_name":"kaylagalore","location":null,"url":null,"description":"blessed. all about leak.\u2728 snapchat: kaylagalore","protected":false,"verified":false,"followers_count":14371,"friends_count":4395,"listed_count":8,"favourites_count":24728,"statuses_count":20485,"created_at":"Wed Aug 27 15:51:01 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656894777414303744\/e6VVDQzd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656894777414303744\/e6VVDQzd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2773680895\/1446247617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaylagalore","name":"leakonarise","id":2773680895,"id_str":"2773680895","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024661"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230261760,"id_str":"663727846230261760","text":"@lenokurdish \u0628\u0698\u064a\u062a \u0643\u062c\u0627 \u0643\u0648\u0631\u062f\u0627\ud83d\ude1a\ud83d\ude0d\ud83d\ude0d\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663667627093553152,"in_reply_to_status_id_str":"663667627093553152","in_reply_to_user_id":2614374217,"in_reply_to_user_id_str":"2614374217","in_reply_to_screen_name":"lenokurdish","user":{"id":1399287062,"id_str":"1399287062","name":"Muna Gulli\u2764\ufe0fH\u2764\ufe0f","screen_name":"Muna_Kurdish","location":"Kurdistan \u2764\ufe0f United Kingdom\u2764\ufe0f","url":null,"description":"I'm Kurdish Girl and Proud\u270c\ufe0f\u2764\ufe0f Bjit Kurdistan\u263a\ufe0f\u2764\ufe0f Bjit Peshmarge \u2764\ufe0f jta xaribm kurdistana min.... \u270c\ufe0f\u2764\ufe0f \u06a9\u0648\u0631\u062f\u0633\u062a\u0627\u0646 \u0648\u06d5\u0644\u0627\u062a\u06ce \u0645\u06d5 \u0643\u0648\u0631\u062f\u0627\u0646\u0647","protected":false,"verified":false,"followers_count":3228,"friends_count":536,"listed_count":5,"favourites_count":15658,"statuses_count":11396,"created_at":"Fri May 03 09:21:11 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441569103900192768\/JxDnr81X.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441569103900192768\/JxDnr81X.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661571713113726976\/f71jlg67_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661571713113726976\/f71jlg67_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1399287062\/1436181909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lenokurdish","name":"\u13de\u13ac\u13ac\u13c1\u2654","id":2614374217,"id_str":"2614374217","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080024665"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846226059264,"id_str":"663727846226059264","text":"He obtenido \"Jos\u00e9 Mourinho\" en \"\u00bfQu\u00e9 entrenador de f\u00fatbol ser\u00edas?\". \u00bfY t\u00fa? https:\/\/t.co\/IoGAqL0oML","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":783417606,"id_str":"783417606","name":"Braian Reus","screen_name":"BRmeijide14","location":"Buenos Aires\/\/Alicante ","url":null,"description":"Siempre hay un motivo por el cual esforzarte\/\/Futbol como ley de vida\/\/Madridista de corazon,no de ocasi\u00f3n\/\/Minuto 92:48 como leyenda #14","protected":false,"verified":false,"followers_count":240,"friends_count":254,"listed_count":4,"favourites_count":213,"statuses_count":3385,"created_at":"Sun Aug 26 23:53:12 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641652998389800962\/SPT42UiN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641652998389800962\/SPT42UiN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/783417606\/1426029136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IoGAqL0oML","expanded_url":"http:\/\/m.goal.com\/s\/es\/news\/1902\/especiales\/2015\/11\/09\/17143782\/qu%C3%A9-entrenador-ser%C3%ADas","display_url":"m.goal.com\/s\/es\/news\/1902\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846217658368,"id_str":"663727846217658368","text":"RT @_keithworld: I been fuckin wit the same nigga for sooo long , i swear I ain't trying know what another nigga like \ud83e\udd17","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3416977533,"id_str":"3416977533","name":"vasss","screen_name":"vaaasniaa","location":"somewhere","url":null,"description":"blessed \u2728 new account \u2764","protected":false,"verified":false,"followers_count":186,"friends_count":153,"listed_count":0,"favourites_count":486,"statuses_count":3041,"created_at":"Wed Aug 12 05:12:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662400921649967109\/fHl9UIHH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662400921649967109\/fHl9UIHH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3416977533\/1447010947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:31 +0000 2015","id":663720072645595136,"id_str":"663720072645595136","text":"I been fuckin wit the same nigga for sooo long , i swear I ain't trying know what another nigga like \ud83e\udd17","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346122053,"id_str":"346122053","name":"andrizzle","screen_name":"_keithworld","location":"#LorHatchGG ! ","url":"https:\/\/youtu.be\/CXtSXgK8Zg8","description":"18 ; r i p k e i t h & aunt Nita . . #LorHatchGonGooo !!","protected":false,"verified":false,"followers_count":651,"friends_count":595,"listed_count":3,"favourites_count":715,"statuses_count":15519,"created_at":"Sun Jul 31 19:21:28 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3C1EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/746783944\/efa94ebcf1ee783984aa081fc29ae442.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/746783944\/efa94ebcf1ee783984aa081fc29ae442.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655075772248555521\/bCJ4vXX3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655075772248555521\/bCJ4vXX3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346122053\/1440988489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_keithworld","name":"andrizzle","id":346122053,"id_str":"346122053","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024662"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846234394624,"id_str":"663727846234394624","text":"Si definitivamente ese chico usa beauty face \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178279247,"id_str":"3178279247","name":"Jeny","screen_name":"JenyyHerrera","location":"C\u00f3rdoba, Argentina","url":null,"description":"Angela \/ Piscis \u2653 \/ 15 a\u00f1os \/ Ig: jenyyherrera \/ CABJ \/ Live it your way \/","protected":false,"verified":false,"followers_count":1219,"friends_count":1398,"listed_count":1,"favourites_count":946,"statuses_count":3079,"created_at":"Fri Apr 17 23:55:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660659423724048384\/Myd47tCp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660659423724048384\/Myd47tCp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178279247\/1444187906","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080024666"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846226030593,"id_str":"663727846226030593","text":"RT @thyniggy: Nigga that's a SIM card\n\n\"@FelixYSL: Let's take a trip \ud83d\ude80\ud83c\udf00\ud83d\udd2e https:\/\/t.co\/yWaC4ypkpN\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2232577234,"id_str":"2232577234","name":"yarllz","screen_name":"Yarleen123","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":123,"friends_count":185,"listed_count":1,"favourites_count":14658,"statuses_count":9910,"created_at":"Thu Dec 19 02:38:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632086019446317056\/1to-5UZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632086019446317056\/1to-5UZd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2232577234\/1444055501","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:46:47 +0000 2015","id":663548256824135680,"id_str":"663548256824135680","text":"Nigga that's a SIM card\n\n\"@FelixYSL: Let's take a trip \ud83d\ude80\ud83c\udf00\ud83d\udd2e https:\/\/t.co\/yWaC4ypkpN\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663541133948133376,"in_reply_to_status_id_str":"663541133948133376","in_reply_to_user_id":848011232,"in_reply_to_user_id_str":"848011232","in_reply_to_screen_name":"FelixYSL","user":{"id":17560480,"id_str":"17560480","name":"Kami","screen_name":"thyniggy","location":"San Diego","url":null,"description":"BRICK PHONE STILL ON FROM '96","protected":false,"verified":false,"followers_count":7259,"friends_count":990,"listed_count":69,"favourites_count":1013,"statuses_count":53383,"created_at":"Sat Nov 22 18:04:47 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888424495\/83e64899c24b2f5909a9201244633e51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888424495\/83e64899c24b2f5909a9201244633e51.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578302857624961024\/g-52J58y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578302857624961024\/g-52J58y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17560480\/1447051330","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3394,"favorite_count":4152,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FelixYSL","name":"NFO Felix\u203c\ufe0f","id":848011232,"id_str":"848011232","indices":[26,35]}],"symbols":[],"media":[{"id":663541133792968704,"id_str":"663541133792968704","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","url":"https:\/\/t.co\/yWaC4ypkpN","display_url":"pic.twitter.com\/yWaC4ypkpN","expanded_url":"http:\/\/twitter.com\/FelixYSL\/status\/663541133948133376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663541133948133376,"source_status_id_str":"663541133948133376","source_user_id":848011232,"source_user_id_str":"848011232"}]},"extended_entities":{"media":[{"id":663541133792968704,"id_str":"663541133792968704","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","url":"https:\/\/t.co\/yWaC4ypkpN","display_url":"pic.twitter.com\/yWaC4ypkpN","expanded_url":"http:\/\/twitter.com\/FelixYSL\/status\/663541133948133376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663541133948133376,"source_status_id_str":"663541133948133376","source_user_id":848011232,"source_user_id_str":"848011232"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thyniggy","name":"Kami","id":17560480,"id_str":"17560480","indices":[3,12]},{"screen_name":"FelixYSL","name":"NFO Felix\u203c\ufe0f","id":848011232,"id_str":"848011232","indices":[40,49]}],"symbols":[],"media":[{"id":663541133792968704,"id_str":"663541133792968704","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","url":"https:\/\/t.co\/yWaC4ypkpN","display_url":"pic.twitter.com\/yWaC4ypkpN","expanded_url":"http:\/\/twitter.com\/FelixYSL\/status\/663541133948133376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663541133948133376,"source_status_id_str":"663541133948133376","source_user_id":848011232,"source_user_id_str":"848011232"}]},"extended_entities":{"media":[{"id":663541133792968704,"id_str":"663541133792968704","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVfJUWXAAAqqJn.jpg","url":"https:\/\/t.co\/yWaC4ypkpN","display_url":"pic.twitter.com\/yWaC4ypkpN","expanded_url":"http:\/\/twitter.com\/FelixYSL\/status\/663541133948133376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663541133948133376,"source_status_id_str":"663541133948133376","source_user_id":848011232,"source_user_id_str":"848011232"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846226051072,"id_str":"663727846226051072","text":"@forever_xxviii haha right!! im gonna have to walk around with my coat on for a while.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719214721597440,"in_reply_to_status_id_str":"663719214721597440","in_reply_to_user_id":71247584,"in_reply_to_user_id_str":"71247584","in_reply_to_screen_name":"forever_xxviii","user":{"id":24377985,"id_str":"24377985","name":"Ka Poochi","screen_name":"Ka_Poochi","location":"I'm Right Here!!!","url":null,"description":"My Momma's Daughter.","protected":false,"verified":false,"followers_count":101,"friends_count":91,"listed_count":0,"favourites_count":0,"statuses_count":13221,"created_at":"Sat Mar 14 14:54:10 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E6CC20","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/262594326\/bebe_kids.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/262594326\/bebe_kids.jpg","profile_background_tile":true,"profile_link_color":"E62222","profile_sidebar_border_color":"56D0F5","profile_sidebar_fill_color":"F0F0F0","profile_text_color":"3D99E0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624956577120960512\/Egez5O_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624956577120960512\/Egez5O_l_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"forever_xxviii","name":"Tee J\uf8ffy Tee","id":71247584,"id_str":"71247584","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846204944384,"id_str":"663727846204944384","text":"(\u30ea,_\u309d\u30c8)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1153339656,"id_str":"1153339656","name":"H\u5927\u597d\u304d\u30e6\u30a6\u30adbot","screen_name":"YUKIBWbot","location":"\u3042\u305a\u3055\u3055\u3093\u306e\u96a3","url":null,"description":"\u6b32\u671b\u306e\u584a \u611b\u306e\u306a\u3044dis\u306f\u00d7 \u5e73\u6210\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\/OOO\/\u30dd\u30b1\u30e2\u30f3\/\u3042\u305a\u3055\u3055\u3093\/\u30a2\u30a4\u30de\u30b9\/\u30d7\u30ea\u30ad\u30e5\u30a2\/\u308c\u3044\u304b\u3055\u3093\/\u305d\u306e\u4ed6\u3044\u308d\u3044\u308d \u5ac1@AyakaP_91 @YUKIBW","protected":false,"verified":false,"followers_count":68,"friends_count":80,"listed_count":1,"favourites_count":0,"statuses_count":61767,"created_at":"Wed Feb 06 08:24:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/783431182\/ce740bb6aa3739f28331185d9bd04984.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/783431182\/ce740bb6aa3739f28331185d9bd04984.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000862273954\/iUaK_ai6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000862273954\/iUaK_ai6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1153339656\/1373281268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024659"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846213349376,"id_str":"663727846213349376","text":"\u4e3b\u306f\u3082\u3046\u6df1\u591c\u30c6\u30f3\u30b7\u30e7\u30f3\u3067\u3059\u3002\n\u3064\u3076\u3084\u304f\u5185\u5bb9\u3082\u6df1\u591c\u5411\u304d\u304b\u3082\uff65\uff65\uff65","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1192375146,"id_str":"1192375146","name":"\u3058\u3085\u308a\u3046\u3059@\u63d0\u7763\u30e9\u30a4\u30d0\u30fc","screen_name":"Julius_adliver","location":"\u4f50\u4f2f\u6e7e\u6cca\u5730","url":"http:\/\/twpf.jp\/Julius_adliver","description":"\u4eca\u671f\u306f\u4e0b\u30bb\u30ab\u30fb\u5e72\u7269\u59b9\uff01\u3046\u307e\u308b\u3061\u3083\u3093\u30fb\u304c\u3063\u3053\u3046\u3050\u3089\u3057\uff01\u304c\u304a\u6c17\u306b\u5165\u308a\uff01\n\u8da3\u5473\u304c\u5408\u3046\u65b9\u306f\u4ef2\u826f\u304f\u3057\u3066\u306d\uff01 \u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u30fb\u8266\u3053\u308c\u30fb\u30b7\u30ed\u30d0\u30b3\u30fbD.C.\u304c\u5927\u597d\u304d\uff01","protected":false,"verified":false,"followers_count":950,"friends_count":922,"listed_count":8,"favourites_count":3377,"statuses_count":30736,"created_at":"Mon Feb 18 07:44:32 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660478529516142592\/LK5y79gv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660478529516142592\/LK5y79gv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192375146\/1439651097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024661"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846204968960,"id_str":"663727846204968960","text":"\u3042\u306e\u6642\u306f4\u6708\u3060\u3063\u3066\u306e\u306b\u30b0\u30a2\u30e0\u306e\u6c17\u6e29\u6e7f\u5ea6\u306b\u6163\u308c\u3059\u304e\u3066\u305f\u305b\u3044\u304b\u65e5\u672c\u304c\u5bd2\u3059\u304e\u3066\u98a8\u90aa\u3072\u304f\u304b\u3068\u601d\u3063\u305f\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3842179759,"id_str":"3842179759","name":"\u3088\u3057\u3042\u304d\u3055\u3093","screen_name":"gyopedo46","location":null,"url":null,"description":"1MSS\u3063\u3066\u5b66\u6821\u884c\u3063\u3066\u308b \u5bcc\u5c71(\u6c37\u898b)\u2192\u4eac\u90fd(\u821e\u9db4)\u2192\u5e83\u5cf6(\u6c5f\u7530\u5cf6) \u65e5\u672c\u5168\u56fd\u306e\u5730\u9152&\u9b5a\u4ecb\u985e\u5de1\u308a&\u795e\u793e\u4ecf\u95a3\u5de1\u308a \u6d17\u6fef&\u30a2\u30a4\u30ed\u30f3\u304c\u3051&\u9774\u78e8\u304d \u597d\u304d","protected":false,"verified":false,"followers_count":59,"friends_count":58,"listed_count":0,"favourites_count":13,"statuses_count":191,"created_at":"Sat Oct 10 01:06:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662937581160534018\/PzB5nMfe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662937581160534018\/PzB5nMfe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3842179759\/1444572620","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024659"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221881345,"id_str":"663727846221881345","text":".@blakeshelton #TheVoice please talk to Adam, Manny Cabo and Logan Anderson Is such a touching story and the world would \ud83d\udc97 to see it. \ud83d\udc97Laura","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149432880,"id_str":"4149432880","name":"Laura Badaracco","screen_name":"LauraCabo13","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":9,"created_at":"Mon Nov 09 13:25:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TheVoice","indices":[15,24]}],"urls":[],"user_mentions":[{"screen_name":"blakeshelton","name":"Blake Shelton","id":14920785,"id_str":"14920785","indices":[1,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846209232896,"id_str":"663727846209232896","text":"RT @GabyBlacks: - Bachiller es f\u00e1cil porque ya escoges las asignaturas que te gustan\n+ http:\/\/t.co\/cOWpinOddk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139153352,"id_str":"139153352","name":"Ana","screen_name":"AnaBiieber18","location":"Sevilla.","url":null,"description":"Belieber. Believe Tour 11\/3\/2013. Justin Bieber, Demetria Lovato, The Vamps, Shawn Mendes. THG","protected":false,"verified":false,"followers_count":995,"friends_count":1214,"listed_count":7,"favourites_count":4769,"statuses_count":24447,"created_at":"Sat May 01 18:22:18 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000157584397\/t2RYaJ_3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000157584397\/t2RYaJ_3.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649324137786290178\/5G1MSBKL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649324137786290178\/5G1MSBKL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139153352\/1444081134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 10 13:49:17 +0000 2014","id":531805800172617730,"id_str":"531805800172617730","text":"- Bachiller es f\u00e1cil porque ya escoges las asignaturas que te gustan\n+ http:\/\/t.co\/cOWpinOddk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2303749546,"id_str":"2303749546","name":"misantrop\u00eda","screen_name":"GabyBlacks","location":"Valencia -8-","url":"http:\/\/instagram.com\/GabyBlacks","description":"if you know about me and choose to stay, then take the pleasure, take it with the pain. | Halsey, The 1975.","protected":false,"verified":false,"followers_count":2520,"friends_count":205,"listed_count":104,"favourites_count":209349,"statuses_count":23487,"created_at":"Sat Jan 25 15:39:43 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"2DA1C4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653256735742906368\/vSKLY9_C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653256735742906368\/vSKLY9_C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2303749546\/1442007045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3172,"favorite_count":2118,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":531805797198487552,"id_str":"531805797198487552","indices":[71,93],"media_url":"http:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","url":"http:\/\/t.co\/cOWpinOddk","display_url":"pic.twitter.com\/cOWpinOddk","expanded_url":"http:\/\/twitter.com\/GabyBlacks\/status\/531805800172617730\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"large":{"w":640,"h":355,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":531805797198487552,"id_str":"531805797198487552","indices":[71,93],"media_url":"http:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","url":"http:\/\/t.co\/cOWpinOddk","display_url":"pic.twitter.com\/cOWpinOddk","expanded_url":"http:\/\/twitter.com\/GabyBlacks\/status\/531805800172617730\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"large":{"w":640,"h":355,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabyBlacks","name":"misantrop\u00eda","id":2303749546,"id_str":"2303749546","indices":[3,14]}],"symbols":[],"media":[{"id":531805797198487552,"id_str":"531805797198487552","indices":[87,109],"media_url":"http:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","url":"http:\/\/t.co\/cOWpinOddk","display_url":"pic.twitter.com\/cOWpinOddk","expanded_url":"http:\/\/twitter.com\/GabyBlacks\/status\/531805800172617730\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"large":{"w":640,"h":355,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":531805800172617730,"source_status_id_str":"531805800172617730","source_user_id":2303749546,"source_user_id_str":"2303749546"}]},"extended_entities":{"media":[{"id":531805797198487552,"id_str":"531805797198487552","indices":[87,109],"media_url":"http:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2Fajg-CYAAXXz_.jpg","url":"http:\/\/t.co\/cOWpinOddk","display_url":"pic.twitter.com\/cOWpinOddk","expanded_url":"http:\/\/twitter.com\/GabyBlacks\/status\/531805800172617730\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"large":{"w":640,"h":355,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"}},"source_status_id":531805800172617730,"source_status_id_str":"531805800172617730","source_user_id":2303749546,"source_user_id_str":"2303749546"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080024660"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230089728,"id_str":"663727846230089728","text":"RT @koumiete_IGOT7: \u300e\u4f55\u3057\u3066\u3093\u306e\u300f\u300c\u30de\u30af\u30d2\u30e7\u30f3\u306e\u4e8b\u5f85\u3063\u3066\u305f\u3093\u3060\u3088\u300d\u300e\u305d\u3093\u306a\u683c\u597d\u3067\uff1f\u300f\u300c\u305d\u3093\u306a\u683c\u597d\uff1f\u300d\u300e\u3075\u30fc\u3093\u3001\u30b7\u30e9\u3092\u5207\u308b\u3093\u3060\u2026\u300f\n\u4ffa\u304c\u5e30\u308b\u307e\u3067\u6211\u6162\u51fa\u6765\u306a\u304b\u3063\u305f\u7f70\u3002\n\u4eca\u591c\u306f\u2026\u300e\u3069\u3053\u307e\u3067\u8010\u3048\u3089\u308c\u308b\u304b\u697d\u3057\u307f\u3060\u306a\u3002\u300f\n#got7\u3067\u5984\u60f3 https:\/\/t.co\/7A\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2884353378,"id_str":"2884353378","name":"\u307a \u30da\u30f3\u30df\u306e\u305f\u3081\u306b\u30d4\u30a2\u30ce\u58f2\u308b","screen_name":"henrylauu_143","location":"\u30d8\u30f3\u30ea\u30fc\u30e9\u30a6\u306e\u4e0a\u534a\u8eab\u30c1\u30e7\u30ae\u30e7\u30d2\u30e7\u30f3\u306e\u4e0b\u534a\u8eab","url":null,"description":"\u79c1\u306f\u30da\u30f3\u30df\u306e\u91d1\u3092\u3064\u304f\u308b\u306e\u306b\u5fc5\u6b7b\u306aELF\u3060\u3002\u30b9\u30b8\u30e5\u3068\u30ac\u30c3\u30bb\u306b\u3068\u3063\u304b\u3048\u3072\u3063\u304b\u3048\u3055\u308c\u3066\u308b","protected":false,"verified":false,"followers_count":417,"friends_count":409,"listed_count":40,"favourites_count":1542,"statuses_count":12450,"created_at":"Fri Oct 31 05:04:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648523019334213632\/IZi7iO_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648523019334213632\/IZi7iO_J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2884353378\/1443454980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:35 +0000 2015","id":663727387750756353,"id_str":"663727387750756353","text":"\u300e\u4f55\u3057\u3066\u3093\u306e\u300f\u300c\u30de\u30af\u30d2\u30e7\u30f3\u306e\u4e8b\u5f85\u3063\u3066\u305f\u3093\u3060\u3088\u300d\u300e\u305d\u3093\u306a\u683c\u597d\u3067\uff1f\u300f\u300c\u305d\u3093\u306a\u683c\u597d\uff1f\u300d\u300e\u3075\u30fc\u3093\u3001\u30b7\u30e9\u3092\u5207\u308b\u3093\u3060\u2026\u300f\n\u4ffa\u304c\u5e30\u308b\u307e\u3067\u6211\u6162\u51fa\u6765\u306a\u304b\u3063\u305f\u7f70\u3002\n\u4eca\u591c\u306f\u2026\u300e\u3069\u3053\u307e\u3067\u8010\u3048\u3089\u308c\u308b\u304b\u697d\u3057\u307f\u3060\u306a\u3002\u300f\n#got7\u3067\u5984\u60f3 https:\/\/t.co\/7AgLAeEdfv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990597900,"id_str":"2990597900","name":"\u304a\u3084\u3063\u3055\u3093","screen_name":"koumiete_IGOT7","location":"\u5984\u60f3\u306f\u304a\u6c17\u306b\u5165\u308a\u6b04","url":null,"description":"\u9152\u306e\u80b4\u306f\u5984\u60f3\u3002","protected":false,"verified":false,"followers_count":149,"friends_count":47,"listed_count":1,"favourites_count":274,"statuses_count":2003,"created_at":"Tue Jan 20 03:25:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659958103442460672\/cWEIwq8i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659958103442460672\/cWEIwq8i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990597900\/1443978318","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"got7\u3067\u5984\u60f3","indices":[95,103]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727367433531392,"id_str":"663727367433531392","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727367433531392,"id_str":"663727367433531392","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663727378732969984,"id_str":"663727378732969984","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiM0UcAAjcir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiM0UcAAjcir.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":666,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"got7\u3067\u5984\u60f3","indices":[115,123]}],"urls":[],"user_mentions":[{"screen_name":"koumiete_IGOT7","name":"\u304a\u3084\u3063\u3055\u3093","id":2990597900,"id_str":"2990597900","indices":[3,18]}],"symbols":[],"media":[{"id":663727367433531392,"id_str":"663727367433531392","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727387750756353,"source_status_id_str":"663727387750756353","source_user_id":2990597900,"source_user_id_str":"2990597900"}]},"extended_entities":{"media":[{"id":663727367433531392,"id_str":"663727367433531392","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhiuUsAAtcHe.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727387750756353,"source_status_id_str":"663727387750756353","source_user_id":2990597900,"source_user_id_str":"2990597900"},{"id":663727378732969984,"id_str":"663727378732969984","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiM0UcAAjcir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiM0UcAAjcir.jpg","url":"https:\/\/t.co\/7AgLAeEdfv","display_url":"pic.twitter.com\/7AgLAeEdfv","expanded_url":"http:\/\/twitter.com\/koumiete_IGOT7\/status\/663727387750756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":666,"resize":"fit"}},"source_status_id":663727387750756353,"source_status_id_str":"663727387750756353","source_user_id":2990597900,"source_user_id_str":"2990597900"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024665"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846205038592,"id_str":"663727846205038592","text":"RT @strongnialI: VEM MONSTRO #4DaysUntilMITAM https:\/\/t.co\/5nsXANts4K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207621579,"id_str":"3207621579","name":"PROMISE | 4 DAYS","screen_name":"cutestlarryhug","location":"Brasil","url":null,"description":"ainda que eu falasse a l\u00edngua dos homens e falasse a l\u00edngua dos anjos, sem amor eu nada seria.","protected":false,"verified":false,"followers_count":436,"friends_count":267,"listed_count":0,"favourites_count":1358,"statuses_count":6921,"created_at":"Sun Apr 26 02:33:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660943426536480769\/PTXWjOUF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660943426536480769\/PTXWjOUF.png","profile_background_tile":true,"profile_link_color":"120A8F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660941932743499778\/0Vmco5uE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660941932743499778\/0Vmco5uE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207621579\/1446415914","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:53:23 +0000 2015","id":663685812354195458,"id_str":"663685812354195458","text":"VEM MONSTRO #4DaysUntilMITAM https:\/\/t.co\/5nsXANts4K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922210086,"id_str":"922210086","name":"duda OTRACardiff","screen_name":"strongnialI","location":null,"url":"https:\/\/twitter.com\/louis_tomlinson\/status\/635946625584734208","description":"I tried so hard to find words to describe how much I love one direction, but it didn't work I can't find anything \/\/ WWAT - May8,2014 - OTRAT - June5,2015","protected":false,"verified":false,"followers_count":1990,"friends_count":2801,"listed_count":6,"favourites_count":5265,"statuses_count":18127,"created_at":"Sat Nov 03 01:55:22 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612371197750288384\/ZaE_KHf_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612371197750288384\/ZaE_KHf_.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662796259175088129\/MWmn_14R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662796259175088129\/MWmn_14R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922210086\/1446857917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":2,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[12,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663685794255736832,"id_str":"663685794255736832","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","url":"https:\/\/t.co\/5nsXANts4K","display_url":"pic.twitter.com\/5nsXANts4K","expanded_url":"http:\/\/twitter.com\/strongnialI\/status\/663685812354195458\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663685794255736832,"id_str":"663685794255736832","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","url":"https:\/\/t.co\/5nsXANts4K","display_url":"pic.twitter.com\/5nsXANts4K","expanded_url":"http:\/\/twitter.com\/strongnialI\/status\/663685812354195458\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[29,45]}],"urls":[],"user_mentions":[{"screen_name":"strongnialI","name":"duda OTRACardiff","id":922210086,"id_str":"922210086","indices":[3,15]}],"symbols":[],"media":[{"id":663685794255736832,"id_str":"663685794255736832","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","url":"https:\/\/t.co\/5nsXANts4K","display_url":"pic.twitter.com\/5nsXANts4K","expanded_url":"http:\/\/twitter.com\/strongnialI\/status\/663685812354195458\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663685812354195458,"source_status_id_str":"663685812354195458","source_user_id":922210086,"source_user_id_str":"922210086"}]},"extended_entities":{"media":[{"id":663685794255736832,"id_str":"663685794255736832","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXitqkWEAAbw32.jpg","url":"https:\/\/t.co\/5nsXANts4K","display_url":"pic.twitter.com\/5nsXANts4K","expanded_url":"http:\/\/twitter.com\/strongnialI\/status\/663685812354195458\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663685812354195458,"source_status_id_str":"663685812354195458","source_user_id":922210086,"source_user_id_str":"922210086"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080024659"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846200741889,"id_str":"663727846200741889","text":"RT @OliV_xoxo: [SCAN] LOVE ME RIGHT JAPAN VER ALBUM XIUMIN\nhttps:\/\/t.co\/GOPijBjT4L\nhttps:\/\/t.co\/QNKZZIbiFb\nhttps:\/\/t.co\/NORFKQGo6w https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603647043,"id_str":"603647043","name":"\uc5d1\uc288\uc5d8 \u2745","screen_name":"ivonnee55","location":"In Jesus Heart \u2020","url":"http:\/\/ask.fm\/ivonnee55","description":"EXO-M \uc2dc\uc6b0\ubbfc a.k.a \uae40\ubbfc\uc11d biased!\u2665 Path : Magdalena Ivone || Line \u2022 IG \u2022 17 : Ivonnee97","protected":false,"verified":false,"followers_count":1418,"friends_count":799,"listed_count":3,"favourites_count":340,"statuses_count":63644,"created_at":"Sat Jun 09 12:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631774488443535360\/g5VGkSJL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631774488443535360\/g5VGkSJL.jpg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646165817860624387\/M_WUR-DW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646165817860624387\/M_WUR-DW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603647043\/1444828876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:55:18 +0000 2015","id":663671196416774144,"id_str":"663671196416774144","text":"[SCAN] LOVE ME RIGHT JAPAN VER ALBUM XIUMIN\nhttps:\/\/t.co\/GOPijBjT4L\nhttps:\/\/t.co\/QNKZZIbiFb\nhttps:\/\/t.co\/NORFKQGo6w https:\/\/t.co\/GTECvtisQ2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2539369346,"id_str":"2539369346","name":"\uc62c\ub9ac\ube0c","screen_name":"OliV_xoxo","location":null,"url":"http:\/\/oliv-xoxo.com\/","description":"kakao yellow id : https:\/\/goto.kakao.com\/@olivxoxo \/ \uc8fc\uc2dc\ub294 \uba58\uc158 \uc798 \ubcf4\uace0 \uc788\uc5b4\uc694! \uac10\uc0ac\ud569\ub2c8\ub2e4. \uc0c1\uc5c5\uc801\uc774\uc6a9\uae08\uc9c0. \uc9c8\ubb38\uc788\uc73c\uc2dc\uba74 \uc610\ub85c\uc544\uc774\ub514\ub85c \ud1a1\uc8fc\uc138\uc694. \ub290\ub9ac\uac8c \uc5c5\ub85c\ub4dc~ \/ @_oriboo","protected":false,"verified":false,"followers_count":10875,"friends_count":1,"listed_count":123,"favourites_count":1,"statuses_count":185,"created_at":"Sun Jun 01 11:22:44 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606832650326712320\/IQY3qHId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606832650326712320\/IQY3qHId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2539369346\/1433515153","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":281,"favorite_count":666,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GOPijBjT4L","expanded_url":"http:\/\/cfile5.uf.tistory.com\/original\/25148D4256407622320690","display_url":"cfile5.uf.tistory.com\/original\/25148\u2026","indices":[44,67]},{"url":"https:\/\/t.co\/QNKZZIbiFb","expanded_url":"http:\/\/cfile29.uf.tistory.com\/original\/212BDE425640762A1D3F86","display_url":"cfile29.uf.tistory.com\/original\/212BD\u2026","indices":[68,91]},{"url":"https:\/\/t.co\/NORFKQGo6w","expanded_url":"http:\/\/cfile7.uf.tistory.com\/original\/2429AF42564076311E961C","display_url":"cfile7.uf.tistory.com\/original\/2429A\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663671185104744448,"id_str":"663671185104744448","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":525,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":297,"resize":"fit"},"large":{"w":1024,"h":897,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663671185104744448,"id_str":"663671185104744448","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":525,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":297,"resize":"fit"},"large":{"w":1024,"h":897,"resize":"fit"}}},{"id":663671187717779457,"id_str":"663671187717779457","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbc-UcAE-Tzc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbc-UcAE-Tzc.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":931,"resize":"fit"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}}},{"id":663671189563248641,"id_str":"663671189563248641","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbj2UEAEb0-o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbj2UEAEb0-o.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":590,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GOPijBjT4L","expanded_url":"http:\/\/cfile5.uf.tistory.com\/original\/25148D4256407622320690","display_url":"cfile5.uf.tistory.com\/original\/25148\u2026","indices":[59,82]},{"url":"https:\/\/t.co\/QNKZZIbiFb","expanded_url":"http:\/\/cfile29.uf.tistory.com\/original\/212BDE425640762A1D3F86","display_url":"cfile29.uf.tistory.com\/original\/212BD\u2026","indices":[83,106]},{"url":"https:\/\/t.co\/NORFKQGo6w","expanded_url":"http:\/\/cfile7.uf.tistory.com\/original\/2429AF42564076311E961C","display_url":"cfile7.uf.tistory.com\/original\/2429A\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"OliV_xoxo","name":"\uc62c\ub9ac\ube0c","id":2539369346,"id_str":"2539369346","indices":[3,13]}],"symbols":[],"media":[{"id":663671185104744448,"id_str":"663671185104744448","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":525,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":297,"resize":"fit"},"large":{"w":1024,"h":897,"resize":"fit"}},"source_status_id":663671196416774144,"source_status_id_str":"663671196416774144","source_user_id":2539369346,"source_user_id_str":"2539369346"}]},"extended_entities":{"media":[{"id":663671185104744448,"id_str":"663671185104744448","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbTPUsAA6JOd.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":525,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":297,"resize":"fit"},"large":{"w":1024,"h":897,"resize":"fit"}},"source_status_id":663671196416774144,"source_status_id_str":"663671196416774144","source_user_id":2539369346,"source_user_id_str":"2539369346"},{"id":663671187717779457,"id_str":"663671187717779457","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbc-UcAE-Tzc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbc-UcAE-Tzc.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":931,"resize":"fit"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":663671196416774144,"source_status_id_str":"663671196416774144","source_user_id":2539369346,"source_user_id_str":"2539369346"},{"id":663671189563248641,"id_str":"663671189563248641","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVbj2UEAEb0-o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVbj2UEAEb0-o.jpg","url":"https:\/\/t.co\/GTECvtisQ2","display_url":"pic.twitter.com\/GTECvtisQ2","expanded_url":"http:\/\/twitter.com\/OliV_xoxo\/status\/663671196416774144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":590,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"}},"source_status_id":663671196416774144,"source_status_id_str":"663671196416774144","source_user_id":2539369346,"source_user_id_str":"2539369346"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024658"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846200881152,"id_str":"663727846200881152","text":"@xavier_torrens Tu te manifiestas contra los campos de exterminio en que ha convertido Palestina el sionismo?","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663628259582746624,"in_reply_to_status_id_str":"663628259582746624","in_reply_to_user_id":2499222496,"in_reply_to_user_id_str":"2499222496","in_reply_to_screen_name":"xavier_torrens","user":{"id":381683065,"id_str":"381683065","name":"Isabel Rubio Santuy","screen_name":"IsabelRubioSant","location":"Girona","url":null,"description":"De Izquierdas y Librepensadora","protected":false,"verified":false,"followers_count":1992,"friends_count":2175,"listed_count":39,"favourites_count":521,"statuses_count":63674,"created_at":"Wed Sep 28 19:10:27 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636200363750612992\/DVgeM5nu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636200363750612992\/DVgeM5nu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381683065\/1405157865","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xavier_torrens","name":"Xavier Torrens","id":2499222496,"id_str":"2499222496","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080024658"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221852673,"id_str":"663727846221852673","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/fNCPZKmaMD","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":632452509,"id_str":"632452509","name":"\u0627\u062d\u0633\u0640\u0640\u0622\u0633 \u06a4\u0646\u0640\u0640\u0622\u0646 \u0622\u0644\u0639\u0631\u0628","screen_name":"3bood915","location":null,"url":null,"description":"#\u0641\u0646\u0627\u0646_\u0627\u0644\u0639\u0631\u0628 #\u0639\u0628\u062f\u0627\u0648\u064a_\u0627\u0644\u0627\u0635\u0644 \u0645\u062d\u0645\u062f\u064a \u0627\u0644\u0647\u0648\u0649 \u0648\u0627\u0644\u0627\u0635\u0644 \u0648\u0627\u0644\u0645\u0646\u0634\u0623\u2764\ufe0f\u2764\ufe0f \u0645\u062d\u0645\u062f \u0639\u0628\u062f\u0647 \u0648\u0647\u0644 \u0644\u0644\u0641\u0646 \u0628\u0642\u064a\u0647\u2764\ufe0f \u0627\u0644\u0647\u0644\u0627\u0644-\u0645\u062f\u0631\u064a\u062f","protected":false,"verified":false,"followers_count":752,"friends_count":1535,"listed_count":0,"favourites_count":2271,"statuses_count":4977,"created_at":"Tue Jul 10 22:36:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663688562299305984\/qrFH7Vkl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663688562299305984\/qrFH7Vkl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/632452509\/1443310318","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fNCPZKmaMD","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846225870848,"id_str":"663727846225870848","text":"RT @wokkax3: I'm wearing the same blouse Casey Anthony was wearing when the verdict came. I feel VERY powerful.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1419566982,"id_str":"1419566982","name":"Hoarding Enabler","screen_name":"HoardingEnabler","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2191,"friends_count":2019,"listed_count":81,"favourites_count":52137,"statuses_count":72233,"created_at":"Sat May 11 02:34:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597307725303918593\/lZG4ji02_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597307725303918593\/lZG4ji02_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1419566982\/1446859879","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:06 +0000 2015","id":663726510331682816,"id_str":"663726510331682816","text":"I'm wearing the same blouse Casey Anthony was wearing when the verdict came. I feel VERY powerful.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169807986,"id_str":"169807986","name":"Gret\u00a2hen","screen_name":"wokkax3","location":null,"url":null,"description":"I'm rich, so don't threaten me with a library fine.","protected":false,"verified":false,"followers_count":2630,"friends_count":1792,"listed_count":112,"favourites_count":74642,"statuses_count":32207,"created_at":"Fri Jul 23 06:05:01 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/796143341\/603793ff606b49763c7ae9410b8be9ea.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/796143341\/603793ff606b49763c7ae9410b8be9ea.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436396995201101824\/Jq998SaQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436396995201101824\/Jq998SaQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169807986\/1361407417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wokkax3","name":"Gret\u00a2hen","id":169807986,"id_str":"169807986","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230126592,"id_str":"663727846230126592","text":"Office 0AE3 2015-11-09 23:39:51 2443 5780 0000 3100 093 1001 0476 0397 0297 0367","source":"\u003ca href=\"https:\/\/dev.twitter.com\/apps\/new\" rel=\"nofollow\"\u003eNoritaka Shimomoto\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2187930480,"id_str":"2187930480","name":"ShimomotoSensor","screen_name":"ShimomotoSensor","location":null,"url":null,"description":"\u6e29\u5ea6\u6e7f\u5ea6\u306a\u3069\u30fb\u30fb\u30fb\r\nID\u3001\u5e74\u6708\u65e5\u3001\u6642\u5206\u79d2\u3001\u6e29\u5ea6\u3001\u6e7f\u5ea6\u3001(\u7167\u5ea6)\u3001\u96fb\u5727\u3001\u96fb\u6ce2\u5f37\u5ea6\u3001\u6c17\u5727\u3001\u4ee5\u964d\u4e88\u5099\r\n\u65b0\u5b50\u5b89\u306b\u306f\u7167\u5ea6\u3001\u6c17\u5727\u30bb\u30f3\u30b5\u30fc\u306a\u3057","protected":false,"verified":false,"followers_count":26,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":316646,"created_at":"Mon Nov 11 08:03:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000760552968\/5b20c5451e6aa9749d2cc861d6c6a03c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000760552968\/5b20c5451e6aa9749d2cc861d6c6a03c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024665"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846217543680,"id_str":"663727846217543680","text":"@haileybaldwin same \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727528742359040,"in_reply_to_status_id_str":"663727528742359040","in_reply_to_user_id":64090343,"in_reply_to_user_id_str":"64090343","in_reply_to_screen_name":"haileybaldwin","user":{"id":1131083557,"id_str":"1131083557","name":"\u3164\u3164","screen_name":"sexuallyjustins","location":"8.12.15","url":null,"description":"survivor of two justin bieber and ariana grande's live performances","protected":false,"verified":false,"followers_count":10733,"friends_count":1940,"listed_count":237,"favourites_count":8142,"statuses_count":55389,"created_at":"Tue Jan 29 13:40:30 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482152085601783811\/uKTXm9iu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482152085601783811\/uKTXm9iu.png","profile_background_tile":false,"profile_link_color":"00C4FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663287924423692288\/EaCOQZ7f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663287924423692288\/EaCOQZ7f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131083557\/1446975137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haileybaldwin","name":"Hailey Baldwin","id":64090343,"id_str":"64090343","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024662"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846200770560,"id_str":"663727846200770560","text":"RT @more_than_20: \ud560\ub9cc\ud07c \ud55c \uac83 \uac19\uc9c0\ub9cc \uc5e5\uac04\uce58 \uc548\ud558\uba74 \ub2c8\ub4e4\uc774 \ubf40\ub85d\uce60 \uac70 \uac19\uc544\uc11c \ub610 \uc4f4\ub2e4 \uc4f0\uace0\ubcf4\ub2c8 \ub458\uc9f8\uc904\uc5d0 #EXO \uc918\uc57c\ud574 \uc54c\uaca0\uc9c0 #CALLMEBABY \uc918\ub77c \uadf8\ub7ec\uba74 \ub0b4\ub144\uc5d0\ub3c4 \ucc38\uace0 \uc774\uac70 \ud574\uc904\uac8c #2015MAMA \uc544\uc545 \uc774\uc820 \ub098\ub3c4 \uba58\ud2b8 \uc6b0\ub9b4\uac70\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2399840966,"id_str":"2399840966","name":"\uc735","screen_name":"920506_920506","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":18,"friends_count":26,"listed_count":0,"favourites_count":12,"statuses_count":13,"created_at":"Thu Mar 20 13:03:02 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583284707112001538\/_T3FA3LP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583284707112001538\/_T3FA3LP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:20 +0000 2015","id":663727576314019840,"id_str":"663727576314019840","text":"\ud560\ub9cc\ud07c \ud55c \uac83 \uac19\uc9c0\ub9cc \uc5e5\uac04\uce58 \uc548\ud558\uba74 \ub2c8\ub4e4\uc774 \ubf40\ub85d\uce60 \uac70 \uac19\uc544\uc11c \ub610 \uc4f4\ub2e4 \uc4f0\uace0\ubcf4\ub2c8 \ub458\uc9f8\uc904\uc5d0 #EXO \uc918\uc57c\ud574 \uc54c\uaca0\uc9c0 #CALLMEBABY \uc918\ub77c \uadf8\ub7ec\uba74 \ub0b4\ub144\uc5d0\ub3c4 \ucc38\uace0 \uc774\uac70 \ud574\uc904\uac8c #2015MAMA \uc544\uc545 \uc774\uc820 \ub098\ub3c4 \uba58\ud2b8 \uc6b0\ub9b4\uac70\uc57c \uc0ac\uace8 @MnetMAMA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153311185,"id_str":"3153311185","name":"more than 20","screen_name":"more_than_20","location":"\uc138\ubc31","url":"http:\/\/more-than-20.net\/","description":"=.=\u2665'\u3145'","protected":false,"verified":false,"followers_count":177,"friends_count":36,"listed_count":0,"favourites_count":1460,"statuses_count":4637,"created_at":"Mon Apr 13 17:58:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607890366541357057\/pG6FSZ5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607890366541357057\/pG6FSZ5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153311185\/1428948544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[49,53]},{"text":"CALLMEBABY","indices":[62,73]},{"text":"2015MAMA","indices":[96,105]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[126,135]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[67,71]},{"text":"CALLMEBABY","indices":[80,91]},{"text":"2015MAMA","indices":[114,123]}],"urls":[],"user_mentions":[{"screen_name":"more_than_20","name":"more than 20","id":3153311185,"id_str":"3153311185","indices":[3,16]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080024658"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221873152,"id_str":"663727846221873152","text":"@MrBinks Aye. More coming. Sure it'll appear eventually","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727739250352128,"in_reply_to_status_id_str":"663727739250352128","in_reply_to_user_id":19647125,"in_reply_to_user_id_str":"19647125","in_reply_to_screen_name":"MrBinks","user":{"id":86123570,"id_str":"86123570","name":"Tom Phillips","screen_name":"tomphillipsEG","location":"Brighton","url":"http:\/\/eurogamer.net","description":"Dep News Editor @Eurogamer. I write some of the puns and all the stealth Destiny articles.","protected":false,"verified":false,"followers_count":1968,"friends_count":475,"listed_count":118,"favourites_count":2278,"statuses_count":12883,"created_at":"Thu Oct 29 17:53:40 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/259503004\/ACR_SP_CA_01_Constantinople_Skyline.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/259503004\/ACR_SP_CA_01_Constantinople_Skyline.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C1DCE3","profile_text_color":"07527A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636185180340912128\/9X3LqmVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636185180340912128\/9X3LqmVc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86123570\/1435330924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MrBinks","name":"MrBinks","id":19647125,"id_str":"19647125","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846234304513,"id_str":"663727846234304513","text":"@NetwrkCenation 2 hours to go... come on... vote nd RT... 3 Idiots","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663398506061692928,"in_reply_to_status_id_str":"663398506061692928","in_reply_to_user_id":3432442906,"in_reply_to_user_id_str":"3432442906","in_reply_to_screen_name":"NetwrkCenation","user":{"id":3432442906,"id_str":"3432442906","name":"CenationNetwork","screen_name":"NetwrkCenation","location":"India ( Hindustan )","url":null,"description":"Proud INDIAN ... and proud Cenation member... huge fan of @ihrithik @johncena and @aamir_khan ... and Of course CRICKET LOVER. I support Team India !","protected":false,"verified":false,"followers_count":138,"friends_count":66,"listed_count":1,"favourites_count":2502,"statuses_count":2647,"created_at":"Thu Aug 20 04:19:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662282335061045248\/fbNeYuJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662282335061045248\/fbNeYuJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3432442906\/1446735766","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NetwrkCenation","name":"CenationNetwork","id":3432442906,"id_str":"3432442906","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024666"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221701120,"id_str":"663727846221701120","text":"RT @blog_ske48__: SKE48 \u30d6\u30ed\u30b0 \u2b50\ufe0f \u67f4\u7530\u963f\u5f25 \u2b50\ufe0f 29\u3001\u3053\u3042\u3055\u3093 https:\/\/t.co\/uCou4jn3Rs #SKE48 #\u67f4\u7530\u963f\u5f25 https:\/\/t.co\/Hnxy9hlEDj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3105891296,"id_str":"3105891296","name":"48G\u7528\u57a2@\u30d5\u30ec\u30f3\u30c1\u30ad\u30b9SSA\u53c2\u6226","screen_name":"arata_48g","location":null,"url":null,"description":"AKB\u306f\u798f\u5ca1\u8056\u83dc\u3001\u6b66\u85e4\u5341\u5922\u3001\u5ca9\u7acb\u6c99\u7a42\u3001\u5927\u5cf6\u6dbc\u82b1\u3001SKE\u306f\u6771\u674e\u82d1\u3001NMB\u306f\u5c0f\u8c37\u91cc\u6b69\u3001HKT\u306f\u5ca1\u672c\u5c1a\u5b50\u3001\u795e\u5fd7\u90a3\u7d50\u8863\u3067\u3059\u3002\u4ed6\u306e\u63a8\u3057\u30e1\u30f3\u306e\u65b9\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3067\u3059\u300248G\u306e\u30e1\u30f3\u30d0\u30fc\u306e\u30c4\u30a4\u30fc\u30c8\u3084\u30d6\u30ed\u30b0\u3001\u307e\u3068\u3081\u30b5\u30a4\u30c8\u7b49\u3092\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\n\u4e3b\u306a\u53c2\u6226\u30a4\u30d9\u30f3\u30c8\u3000AKB48\u30b0\u30eb\u30fc\u30d7\u5927\u904b\u52d5\u4f1a\u3001AKB48\u3058\u3083\u3093\u3051\u3093\u5927\u4f1a","protected":false,"verified":false,"followers_count":214,"friends_count":383,"listed_count":1,"favourites_count":1039,"statuses_count":14015,"created_at":"Tue Mar 24 03:49:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585925234651336705\/KrgT6Pvl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585925234651336705\/KrgT6Pvl_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:37 +0000 2015","id":663727143780790272,"id_str":"663727143780790272","text":"SKE48 \u30d6\u30ed\u30b0 \u2b50\ufe0f \u67f4\u7530\u963f\u5f25 \u2b50\ufe0f 29\u3001\u3053\u3042\u3055\u3093 https:\/\/t.co\/uCou4jn3Rs #SKE48 #\u67f4\u7530\u963f\u5f25 https:\/\/t.co\/Hnxy9hlEDj","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":463534000,"id_str":"463534000","name":"SKE48 Update","screen_name":"blog_ske48__","location":null,"url":"http:\/\/pinterest.com\/iloveSKE48","description":"SKE48 : \u30cb\u30e5\u30fc\u30b9 | \u30b9\u30b1\u30b8\u30e5\u30fc\u30eb | \u30d6\u30ed\u30b0 | \u3050\u3050\u305f\u3059 | 755 (\u30ca\u30ca\u30b4\u30fc\u30b4\u30fc) | Youtube | @akb48up | @nmb48up","protected":false,"verified":false,"followers_count":2687,"friends_count":30,"listed_count":80,"favourites_count":3543,"statuses_count":208949,"created_at":"Sat Jan 14 06:13:00 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"E6960C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"FFFFFF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604817270871871488\/aR6BnvV-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604817270871871488\/aR6BnvV-_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"SKE48","indices":[53,59]},{"text":"\u67f4\u7530\u963f\u5f25","indices":[60,65]}],"urls":[{"url":"https:\/\/t.co\/uCou4jn3Rs","expanded_url":"http:\/\/www2.ske48.co.jp\/blog\/detail\/id:20151109223708008","display_url":"www2.ske48.co.jp\/blog\/detail\/id\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663727142862249984,"id_str":"663727142862249984","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","url":"https:\/\/t.co\/Hnxy9hlEDj","display_url":"pic.twitter.com\/Hnxy9hlEDj","expanded_url":"http:\/\/twitter.com\/blog_ske48__\/status\/663727143780790272\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727142862249984,"id_str":"663727142862249984","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","url":"https:\/\/t.co\/Hnxy9hlEDj","display_url":"pic.twitter.com\/Hnxy9hlEDj","expanded_url":"http:\/\/twitter.com\/blog_ske48__\/status\/663727143780790272\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SKE48","indices":[71,77]},{"text":"\u67f4\u7530\u963f\u5f25","indices":[78,83]}],"urls":[{"url":"https:\/\/t.co\/uCou4jn3Rs","expanded_url":"http:\/\/www2.ske48.co.jp\/blog\/detail\/id:20151109223708008","display_url":"www2.ske48.co.jp\/blog\/detail\/id\u2026","indices":[47,70]}],"user_mentions":[{"screen_name":"blog_ske48__","name":"SKE48 Update","id":463534000,"id_str":"463534000","indices":[3,16]}],"symbols":[],"media":[{"id":663727142862249984,"id_str":"663727142862249984","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","url":"https:\/\/t.co\/Hnxy9hlEDj","display_url":"pic.twitter.com\/Hnxy9hlEDj","expanded_url":"http:\/\/twitter.com\/blog_ske48__\/status\/663727143780790272\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727143780790272,"source_status_id_str":"663727143780790272","source_user_id":463534000,"source_user_id_str":"463534000"}]},"extended_entities":{"media":[{"id":663727142862249984,"id_str":"663727142862249984","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUeIW4AAWysz.jpg","url":"https:\/\/t.co\/Hnxy9hlEDj","display_url":"pic.twitter.com\/Hnxy9hlEDj","expanded_url":"http:\/\/twitter.com\/blog_ske48__\/status\/663727143780790272\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727143780790272,"source_status_id_str":"663727143780790272","source_user_id":463534000,"source_user_id_str":"463534000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221680640,"id_str":"663727846221680640","text":"\uc704\uba54\ud504\ucc98\ub7fc \ubc18\uac00\uaca9\uc73c\ub85c \ud558\uba74 \uacc4\uc57d\ud560\uac8c.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328701084,"id_str":"3328701084","name":"\uc624\ub4dc\ub9ac \ub300\uc0ac\ubd07","screen_name":"Odri_Dialog","location":null,"url":null,"description":"30\ubd84\uc5d0 \ud55c \ubc88 \uc624\ub4dc\ub9ac \ub300\uc0ac\ub97c \ud2b8\uc717\ud569\ub2c8\ub2e4. \uc6d0\ubb38\uc774 \uad81\uae08\ud558\uc2dc\uba74 \uba58\uc158 \uc8fc\uc138\uc694.","protected":false,"verified":false,"followers_count":43,"friends_count":0,"listed_count":1,"favourites_count":1,"statuses_count":2315,"created_at":"Mon Aug 24 14:00:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635815951255011328\/Af9al3Tx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635815951255011328\/Af9al3Tx_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846234329088,"id_str":"663727846234329088","text":"RT @jyzaidi9119: Aku 2012:\n90% Facebook\n10% Twitter\n\nAku 2015:\n1% Facebook\n99% Twitter\n\nKenyataan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3928802659,"id_str":"3928802659","name":"\u0192\u0101\u0119z\u012fd\u0452\u0101m","screen_name":"faezidham97","location":"Johor Bahru, Johor","url":"http:\/\/instagram.com\/FaezLegend97","description":"#TGOD \u2661","protected":false,"verified":false,"followers_count":29,"friends_count":123,"listed_count":0,"favourites_count":8,"statuses_count":57,"created_at":"Sat Oct 17 21:04:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663481763063136256\/L8jpjC-s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663481763063136256\/L8jpjC-s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3928802659\/1447021303","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:37 +0000 2015","id":663724629408641025,"id_str":"663724629408641025","text":"Aku 2012:\n90% Facebook\n10% Twitter\n\nAku 2015:\n1% Facebook\n99% Twitter\n\nKenyataan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":464396740,"id_str":"464396740","name":"#LifeTweet bersama","screen_name":"jyzaidi9119","location":"UTM Skudai","url":"http:\/\/www.instagram.com\/jyzaidi9119","description":"Tweet tentang kehidupan. \nHidup kene HAPPY &\nterkadang perlu ber-pura\u00b2 HAPPY!\nHappy tu bukan cita\u00b2.\nHappy tu cara hidup.\n\nPinned: My first tweet","protected":false,"verified":false,"followers_count":13055,"friends_count":12227,"listed_count":5,"favourites_count":513,"statuses_count":14383,"created_at":"Sun Jan 15 05:35:19 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500434573096787968\/dwPq2Co-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500434573096787968\/dwPq2Co-.jpeg","profile_background_tile":false,"profile_link_color":"F20930","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658689903572578304\/BiZ-ix5K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658689903572578304\/BiZ-ix5K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/464396740\/1416059734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"96cff30292d71c41","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/96cff30292d71c41.json","place_type":"admin","name":"Johor Bahru","full_name":"Johor Bahru, Johor","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[103.536354,1.341625],[103.536354,1.673503],[104.016167,1.673503],[104.016167,1.341625]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jyzaidi9119","name":"#LifeTweet bersama","id":464396740,"id_str":"464396740","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080024666"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846204964864,"id_str":"663727846204964864","text":"RT @tsuisoku: \u306f\uff1f - \u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831 https:\/\/t.co\/uxWA2AgFpH https:\/\/t.co\/C0btPcniLY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570371078,"id_str":"1570371078","name":"takumi","screen_name":"t_12321","location":"JPN","url":null,"description":"BF[allo]\/GTA[SGBK~LOSE] Dubstep\/EDM[Showtek.Martin Garrix.Porter Robinson.Avicii] \u76f8\u4e92FOLLOW","protected":false,"verified":false,"followers_count":5024,"friends_count":640,"listed_count":4,"favourites_count":1499,"statuses_count":3537,"created_at":"Fri Jul 05 12:16:56 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663357680048734209\/yaIGKrHg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663357680048734209\/yaIGKrHg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570371078\/1442578353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:27 +0000 2015","id":663723579117203456,"id_str":"663723579117203456","text":"\u306f\uff1f - \u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831 https:\/\/t.co\/uxWA2AgFpH https:\/\/t.co\/C0btPcniLY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2276883054,"id_str":"2276883054","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","screen_name":"tsuisoku","location":null,"url":"http:\/\/tsuisoku.com\/","description":"\u3044\u308d\u3044\u308d\u306a\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u3000\u30d5\u30a9\u30ed\u30fc\u306f\uff11\uff10\uff10\uff05\u304a\u8fd4\u3057\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":31005,"friends_count":33986,"listed_count":183,"favourites_count":204,"statuses_count":1966,"created_at":"Sun Jan 05 01:15:58 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516121765412478977\/mAOnzaM9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516121765412478977\/mAOnzaM9_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":68,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uxWA2AgFpH","expanded_url":"http:\/\/tsuisoku.com\/archives\/46859602.html","display_url":"tsuisoku.com\/archives\/46859\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[],"media":[{"id":663723577586270208,"id_str":"663723577586270208","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663723577586270208,"id_str":"663723577586270208","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663723576831315968,"id_str":"663723576831315968","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE5oVEAAzOvP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE5oVEAAzOvP.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uxWA2AgFpH","expanded_url":"http:\/\/tsuisoku.com\/archives\/46859602.html","display_url":"tsuisoku.com\/archives\/46859\u2026","indices":[30,53]}],"user_mentions":[{"screen_name":"tsuisoku","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","id":2276883054,"id_str":"2276883054","indices":[3,12]}],"symbols":[],"media":[{"id":663723577586270208,"id_str":"663723577586270208","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723579117203456,"source_status_id_str":"663723579117203456","source_user_id":2276883054,"source_user_id_str":"2276883054"}]},"extended_entities":{"media":[{"id":663723577586270208,"id_str":"663723577586270208","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE8cUwAAxUQd.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723579117203456,"source_status_id_str":"663723579117203456","source_user_id":2276883054,"source_user_id_str":"2276883054"},{"id":663723576831315968,"id_str":"663723576831315968","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFE5oVEAAzOvP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFE5oVEAAzOvP.jpg","url":"https:\/\/t.co\/C0btPcniLY","display_url":"pic.twitter.com\/C0btPcniLY","expanded_url":"http:\/\/twitter.com\/tsuisoku\/status\/663723579117203456\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723579117203456,"source_status_id_str":"663723579117203456","source_user_id":2276883054,"source_user_id_str":"2276883054"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024659"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221873153,"id_str":"663727846221873153","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/AnuUX0GCi0","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2315018074,"id_str":"2315018074","name":"\u0627\u062d\u0645\u062f \u0627\u0644\u0627\u0644\u0645\u0639\u064a","screen_name":"fesalfre123","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":74,"listed_count":0,"favourites_count":4,"statuses_count":11286,"created_at":"Thu Jan 30 21:43:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429012706482737152\/q2dWgSb4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429012706482737152\/q2dWgSb4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AnuUX0GCi0","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846209118209,"id_str":"663727846209118209","text":"\u3060\u3063\u3066\u7d76\u5bfe\u541b\u306b\u4f1d\u3048\u305f\u3044\n\u307f\u3093\u306a\u3067\u30c1\u30ab\u30e9\u3044\u3063\u3071\u3044\u697d\u3057\u3082\u3046\n\nFuture style\n\n\u3010\u7dba\u7f85\u6d77\u672abot\u3011","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066011972,"id_str":"3066011972","name":"\u2741\u5712\u7530\u6d77\u672a\u2741\u6975\u4f4e\u6d6e\u4e0a","screen_name":"Umi_umi_nr","location":"\u30a2\u30a4\u30c9\u30eb\u7814\u7a76\u90e8\u90e8\u5ba4\u3001\u5712\u7530\u5bb6","url":null,"description":"\u300a\u3055\u3041\uff01\u3053\u3068\u308a\u304c\u5f85\u3063\u3066\u3044\u307e\u3059\u3001\u8fce\u3048\u306b\u884c\u3063\u3066\u304d\u3066\u304f\u3060\u3055\u3044\uff01\u300b\u2112\u2134\u0475\u212f\u2112\u13a5\u0475\u212f!\u975e\u516c\u5f0f\u4e5f\u57a2\/\u7121\u8a00\u96e2\u8131\u6709\/24H\u975e\u5bfe\u5fdc\/\u4f1a\u8a71\u7d42\u4e86\u2192\u661f\/\u4f3d\u7f85\u5d29\u58ca\u6709\/\u6b7b\u57a2\u4f7f\u7528\u6709\/\u4e5f\u57a2\u3007\/\u30c9\u30c3\u30da\u30eb\u25b3\/\u4e00\u822c\u25b3\/R18\u57a2\u00d7\/\u30b9\u30ad\u30f3\u30b7\u30c3\u30d7\u5973\u6027\u25cb\u7537\u6027\u25b3\/\u304a\u5225\u308cB\u2192B\u89e3\u9664\/\u203b\u30a2\u30a4\u30b3\u30f3\u3001\u30d8\u30c3\u30c0\u30fc\u4fdd\u5b58\u7981\u6b62\u3010\u533a\u5225\u540d:\u7dba\u7f85\u6d77\u672a\u3011","protected":false,"verified":false,"followers_count":124,"friends_count":97,"listed_count":0,"favourites_count":89,"statuses_count":5906,"created_at":"Sat Mar 07 06:18:04 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627833018829266944\/Mbm9jGYf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627833018829266944\/Mbm9jGYf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066011972\/1440164478","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024660"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221746177,"id_str":"663727846221746177","text":"RT @fgs_sachiko: \u4eca\u65e5\u30821\u65e5\u304a\u75b2\u308c\u69d8\u3067\u3059\u3063\u2606*:.\uff61. o(\u2267\u25bd\u2266)o .\uff61.:*\u2606\u30a8\u30fc\u30eb\u3057\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046(*\u263b-\u263b*)\u5b09\u3057\u3044\u3067\u3059\uff01\uff01\nhttps:\/\/t.co\/6fTDGFMAre #dmmyell https:\/\/t.co\/6LJn7qgqW2","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42738380,"id_str":"42738380","name":"takami(\u3042\u3068\u307e\u304f\u3076\u308d\u3050)","screen_name":"atmkblog","location":"\u30c8\u30a4\u30ec","url":"http:\/\/atmark-jt.blogspot.com\/","description":"\u4e3b\u306b\u90fd\u5185\u30a2\u30a4\u30c9\u30eb\u30a4\u30d9\u30f3\u30c8\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u3092\u8abf\u3079\u3066\u307e\u3059\u3002\u30e9\u30a4\u30d6\u30ec\u30dd\u3092blog\u306b\u305f\u307e\u306b\u3064\u3089\u3064\u3089\u3068\u3002\u96d1\u8a8c[ TRASH-UP!! ]\u306b\u3066\u300c\u30e9\u30a4\u30d6\u30a2\u30a4\u30c9\u30eb\u97f3\u6e90\u63a2\u7a76\u306e\u65c5\u300d\u3092\u66f8\u3044\u3066\u307e\u3059\u3002\u30e9\u30a4\u30d6\u30a2\u30a4\u30c9\u30eb\u30ab\u30ec\u30f3\u30c0\u30fc\u30fb\u7121\u92ad\u30ab\u30ec\u30f3\u30c0\u30fc\u3044\u3058\u3063\u3066\u308b\u4eba\/ \u304a\u554f\u3044\u5408\u308f\u305b\u2192 jetlyzer\uff0a\u3084\u3075\u30fc\u3057\u30fc\u304a\u30fc\u3058\u3047\u3044\u3074\u30fc(\uff0a\u2192 @ )","protected":false,"verified":false,"followers_count":3459,"friends_count":2147,"listed_count":140,"favourites_count":63490,"statuses_count":426788,"created_at":"Tue May 26 22:16:35 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621495738241957888\/VzhM0j3w.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621495738241957888\/VzhM0j3w.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651300711779594240\/cyPl09vq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651300711779594240\/cyPl09vq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42738380\/1431379989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:31 +0000 2015","id":663727372319899648,"id_str":"663727372319899648","text":"\u4eca\u65e5\u30821\u65e5\u304a\u75b2\u308c\u69d8\u3067\u3059\u3063\u2606*:.\uff61. o(\u2267\u25bd\u2266)o .\uff61.:*\u2606\u30a8\u30fc\u30eb\u3057\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046(*\u263b-\u263b*)\u5b09\u3057\u3044\u3067\u3059\uff01\uff01\nhttps:\/\/t.co\/6fTDGFMAre #dmmyell https:\/\/t.co\/6LJn7qgqW2","source":"\u003ca href=\"http:\/\/www.dmm.com\/app\/-\/yell\/lp\" rel=\"nofollow\"\u003eDMMyell\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2549396083,"id_str":"2549396083","name":"\u9053\u6c5f\u5e78\u5b50\uff20\u30d5\u30e9\u30c3\u30d7\u30ac\u30fc\u30eb\u30ba\u30b9\u30af\u30fc\u30eb","screen_name":"fgs_sachiko","location":"\u65b0\u5bbf\u6751","url":"http:\/\/ameblo.jp\/rdaudition\/","description":"1992\/6\/6 .O\u578b.171cm (\u9ec4\u8272)\u3055\u3063\u3061\u3083\u3093\u3053\u3068\u9053\u6c5f\u5e78\u5b50 4649\u304a\u9858\u3044\u3057\u307e\u3059\u26052014\/6\/6 Twitter\u958b\u59cb\u2605 \u305d\u3046\u3060\uff01\u30e9\u30fc\u30e1\u30f3\u4e8c\u90ce\u306b\u3044\u3053\u3046\/\u30de\u30a4\u30da\u30fc\u30b9","protected":false,"verified":false,"followers_count":1028,"friends_count":115,"listed_count":57,"favourites_count":4258,"statuses_count":4289,"created_at":"Fri Jun 06 06:30:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647125740580769792\/wy7mD5rb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647125740580769792\/wy7mD5rb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2549396083\/1441117543","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"dmmyell","indices":[85,93]}],"urls":[{"url":"https:\/\/t.co\/6fTDGFMAre","expanded_url":"http:\/\/www.dmm.com\/app\/-\/yell\/lp","display_url":"dmm.com\/app\/-\/yell\/lp","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663727372055646210,"id_str":"663727372055646210","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","url":"https:\/\/t.co\/6LJn7qgqW2","display_url":"pic.twitter.com\/6LJn7qgqW2","expanded_url":"http:\/\/twitter.com\/fgs_sachiko\/status\/663727372319899648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727372055646210,"id_str":"663727372055646210","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","url":"https:\/\/t.co\/6LJn7qgqW2","display_url":"pic.twitter.com\/6LJn7qgqW2","expanded_url":"http:\/\/twitter.com\/fgs_sachiko\/status\/663727372319899648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"dmmyell","indices":[102,110]}],"urls":[{"url":"https:\/\/t.co\/6fTDGFMAre","expanded_url":"http:\/\/www.dmm.com\/app\/-\/yell\/lp","display_url":"dmm.com\/app\/-\/yell\/lp","indices":[78,101]}],"user_mentions":[{"screen_name":"fgs_sachiko","name":"\u9053\u6c5f\u5e78\u5b50\uff20\u30d5\u30e9\u30c3\u30d7\u30ac\u30fc\u30eb\u30ba\u30b9\u30af\u30fc\u30eb","id":2549396083,"id_str":"2549396083","indices":[3,15]}],"symbols":[],"media":[{"id":663727372055646210,"id_str":"663727372055646210","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","url":"https:\/\/t.co\/6LJn7qgqW2","display_url":"pic.twitter.com\/6LJn7qgqW2","expanded_url":"http:\/\/twitter.com\/fgs_sachiko\/status\/663727372319899648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727372319899648,"source_status_id_str":"663727372319899648","source_user_id":2549396083,"source_user_id_str":"2549396083"}]},"extended_entities":{"media":[{"id":663727372055646210,"id_str":"663727372055646210","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhz8UkAI56Hm.jpg","url":"https:\/\/t.co\/6LJn7qgqW2","display_url":"pic.twitter.com\/6LJn7qgqW2","expanded_url":"http:\/\/twitter.com\/fgs_sachiko\/status\/663727372319899648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727372319899648,"source_status_id_str":"663727372319899648","source_user_id":2549396083,"source_user_id_str":"2549396083"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846209290240,"id_str":"663727846209290240","text":"Wethouder Paans feliciteert basisscholen met hoge score \n\nhttps:\/\/t.co\/XlKHpr0TqS #hoekschewaard #basisscholennationaalschoolonderzoek","source":"\u003ca href=\"http:\/\/www.Hoekschewaard.nl\" rel=\"nofollow\"\u003eHoekschewaardnl\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96972817,"id_str":"96972817","name":"hoekschewaard.nl","screen_name":"hoekschewaardnl","location":null,"url":"http:\/\/www.hoekschewaard.nl","description":"Hoekschewaard.nl is de grootste online nieuwssite van de Hoeksche Waard.","protected":false,"verified":false,"followers_count":1358,"friends_count":57,"listed_count":18,"favourites_count":0,"statuses_count":10559,"created_at":"Tue Dec 15 12:36:49 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FD8700","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/60083269\/header12.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/60083269\/header12.jpg","profile_background_tile":false,"profile_link_color":"FF8800","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"AFC0D9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1230657309\/logo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1230657309\/logo_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hoekschewaard","indices":[85,99]},{"text":"basisscholennationaalschoolonderzoek","indices":[101,138]}],"urls":[{"url":"https:\/\/t.co\/XlKHpr0TqS","expanded_url":"http:\/\/tinyurl.com\/pyvlgrx","display_url":"tinyurl.com\/pyvlgrx","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080024660"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846209122304,"id_str":"663727846209122304","text":"\ubed0\uafb9\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9 \ubed0\uafb8\uafb9.\uafb9\uafb9\uafb9\uafb9","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":841927207,"id_str":"841927207","name":"\ubed0\uafb8\uae30\ubd07","screen_name":"gosam3436","location":null,"url":null,"description":"\uc194\uc9c1\ud788 \uc81c\uac00 \uc0dd\uac01\ud574\ub3c4 \uc774\uac70\ubcf4\ub2e8 \uadf8\ub0e5 \uc2dc\uacc4\ubcf4\ub294\uac8c \ub354 \ub098\uc740\uac70 \uac19\uc544\uc694","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":1,"statuses_count":87439,"created_at":"Sun Sep 23 15:41:04 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439273644254973952\/51XEYrQo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439273644254973952\/51XEYrQo_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080024660"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846196572161,"id_str":"663727846196572161","text":"20minutes left.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2485201424,"id_str":"2485201424","name":"KARLA..","screen_name":"babybyularmy","location":"BABY. STARLIGHT. ARMY. ","url":null,"description":"Awkward couple. \uc719\uafb8 \uc719\uafb8 couple. Visual couple. MiniMini Couple. @BAP_Daehyun @BAP_Bangyongguk @AceRavi @jaehwany0406 @BTS_twt's \uc11d\uc9c4, \ud0dc\ud615, \uc724\uae30& \uc9c0\ubbfc.","protected":false,"verified":false,"followers_count":275,"friends_count":404,"listed_count":5,"favourites_count":12608,"statuses_count":65561,"created_at":"Fri May 09 11:19:05 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660861285651738624\/marvcEbR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660861285651738624\/marvcEbR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2485201424\/1439346207","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024657"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846196547584,"id_str":"663727846196547584","text":"\u7686\u304a\u3084\u3059\u307f\uff5e","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2977226390,"id_str":"2977226390","name":"\u72fc\u78a7\u30ec\u30f3\u30c8","screen_name":"Rent_bot_orange","location":null,"url":null,"description":"orange\u306e\u30aa\u30ea\u30ad\u30e3\u30e9\u306e\u72fc\u78a7\u30ec\u30f3\u30c8\u3060\u3088\u3063\uff01\u4e2d\u306e\u4eba(@orange___17\uff09","protected":false,"verified":false,"followers_count":55,"friends_count":56,"listed_count":0,"favourites_count":0,"statuses_count":10097,"created_at":"Mon Jan 12 17:17:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634168089584668672\/eqyD-2LO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634168089584668672\/eqyD-2LO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2977226390\/1421155487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024657"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846234431488,"id_str":"663727846234431488","text":"Khilaf\ud83d\ude22\ud83d\ude22\ud83d\ude1a\ud83d\ude0d\n\n#charles_keith #charlesandkeith #puri_mall_jakarta #highheels\u2026 https:\/\/t.co\/4t8IivuUC4","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259667474,"id_str":"259667474","name":"FINDI ALLIA","screen_name":"FindiFindaii","location":"Bengkulu, Indonesia","url":"http:\/\/instagram.com\/allianugraha#","description":"Bodo Amat","protected":false,"verified":false,"followers_count":805,"friends_count":593,"listed_count":0,"favourites_count":29,"statuses_count":9230,"created_at":"Wed Mar 02 10:34:09 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"DE098C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055540544\/ce0491ed86384123446a1ea43b7523a8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055540544\/ce0491ed86384123446a1ea43b7523a8.jpeg","profile_background_tile":true,"profile_link_color":"27F0E6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAEBEA","profile_text_color":"DBABAB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660866848745873408\/8R5QnfHk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660866848745873408\/8R5QnfHk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259667474\/1416109220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-6.18857338,106.73388418]},"coordinates":{"type":"Point","coordinates":[106.73388418,-6.18857338]},"place":{"id":"cf8e8eeed2b8a101","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cf8e8eeed2b8a101.json","place_type":"city","name":"Kembangan","full_name":"Kembangan, DKI Jakarta","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[106.721034,-6.217601],[106.721034,-6.154872],[106.770437,-6.154872],[106.770437,-6.217601]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"charles_keith","indices":[12,26]},{"text":"charlesandkeith","indices":[27,43]},{"text":"puri_mall_jakarta","indices":[44,62]},{"text":"highheels","indices":[63,73]}],"urls":[{"url":"https:\/\/t.co\/4t8IivuUC4","expanded_url":"https:\/\/instagram.com\/p\/93iV9gqdidAH7BBGt_uK3yrPO_oZ8Y_RHuvRM0\/","display_url":"instagram.com\/p\/93iV9gqdidAH\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080024666"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846221705216,"id_str":"663727846221705216","text":"\u044f \u043d\u0430\u0441\u0442\u0443\u043f\u043b\u044e \u0442\u0435\u0431\u0435 \u043d\u0430 \u0446\u0430\u043f\u043b\u044e, \u043d\u0430 \u043b\u0430\u043f\u043b\u044e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3108496027,"id_str":"3108496027","name":"CHRIS__TIN","screen_name":"chris__tin","location":null,"url":null,"description":"\u0433\u0440\u0443\u0431\u0430\u044f \u0434\u0443\u0448\u0435\u0432\u043d\u0430\u044f \u0434\u0435\u0437\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f","protected":false,"verified":false,"followers_count":26,"friends_count":24,"listed_count":1,"favourites_count":68,"statuses_count":243,"created_at":"Thu Mar 26 16:50:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625032728166019072\/4hmBg3K1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625032728166019072\/4hmBg3K1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3108496027\/1431941560","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080024663"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846213484544,"id_str":"663727846213484544","text":"#Pe\u0142negacie https:\/\/t.co\/lftvS8fBux","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530250736,"id_str":"2530250736","name":"S\u0142awomir Sta\u0144czuk","screen_name":"sstanczuk","location":null,"url":"http:\/\/www.stopfalszowaniuwyborow.pl\/","description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":39,"listed_count":0,"favourites_count":131,"statuses_count":505,"created_at":"Wed May 28 15:30:54 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651418226841137152\/o0OTA0pb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651418226841137152\/o0OTA0pb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663717954454974464,"quoted_status_id_str":"663717954454974464","quoted_status":{"created_at":"Mon Nov 09 14:01:06 +0000 2015","id":663717954454974464,"id_str":"663717954454974464","text":"RT @Rubczynski_M: Tymczasem w MON ... https:\/\/t.co\/TsKS3ZLQef","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328833454,"id_str":"3328833454","name":"z@orany","screen_name":"zaorany","location":"Twitter Polska","url":"http:\/\/www.zaorany.net","description":"RT najbardziej popularnych oraz topowych tweet\u00f3w dnia - wi\u0119cej na http:\/\/www.zaorany.net","protected":false,"verified":false,"followers_count":6051,"friends_count":3566,"listed_count":27,"favourites_count":1,"statuses_count":23982,"created_at":"Tue Jun 16 06:08:27 +0000 2015","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616181183345393664\/G9HCKbiX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616181183345393664\/G9HCKbiX.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613813195820498944\/V67kLvmh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613813195820498944\/V67kLvmh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328833454\/1435132270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rubczynski_M","name":"Marcin","id":1474204812,"id_str":"1474204812","indices":[3,16]}],"symbols":[],"media":[{"id":663714751470559232,"id_str":"663714751470559232","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9DMmW4AAKVQA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9DMmW4AAKVQA.jpg","url":"https:\/\/t.co\/TsKS3ZLQef","display_url":"pic.twitter.com\/TsKS3ZLQef","expanded_url":"https:\/\/twitter.com\/Rubczynski_M\/status\/663714763965382657\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":397,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}},"source_status_id":663714763965382657,"source_status_id_str":"663714763965382657","source_user_id":1474204812,"source_user_id_str":"1474204812"}]},"extended_entities":{"media":[{"id":663714751470559232,"id_str":"663714751470559232","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9DMmW4AAKVQA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9DMmW4AAKVQA.jpg","url":"https:\/\/t.co\/TsKS3ZLQef","display_url":"pic.twitter.com\/TsKS3ZLQef","expanded_url":"https:\/\/twitter.com\/Rubczynski_M\/status\/663714763965382657\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":397,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}},"source_status_id":663714763965382657,"source_status_id_str":"663714763965382657","source_user_id":1474204812,"source_user_id_str":"1474204812"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pe\u0142negacie","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/lftvS8fBux","expanded_url":"https:\/\/twitter.com\/zaorany\/status\/663717954454974464","display_url":"twitter.com\/zaorany\/status\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080024661"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846225874944,"id_str":"663727846225874944","text":"@Meemai533 \u30a2\u30d3\u30b9\u306f\u3068\u306b\u304b\u304f\u30b7\u30ca\u30ea\u30aa\u304c\u3044\u3044\u3067\u3059\u3088\u306d(\u2229\u02c3o\u02c2\u2229)RPG\u304c\u597d\u304d\u306a\u65b9\u306b\u306f\u30aa\u30b9\u30b9\u30e1\u3057\u305f\u3044\u4f5c\u54c1\u3067\u3059\u30fd(*\u00b4\u2200\uff40)\u30ce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727494583840768,"in_reply_to_status_id_str":"663727494583840768","in_reply_to_user_id":2769322382,"in_reply_to_user_id_str":"2769322382","in_reply_to_screen_name":"Meemai533","user":{"id":3307511773,"id_str":"3307511773","name":"\u30df\u30e9@FEif\u306a\u3046","screen_name":"FEifnowplaying","location":"FE\u6cbc","url":null,"description":"FE\u30b7\u30ea\u30fc\u30ba\u597d\u304d\u306a\u65b9\u3075\u3049\u308d\u30fc\u307f\u30fc \u666e\u6bb5\u306f\u5b66\u751f\u3060\u3063\u305f\u308a\u2026(\u30d7\u30ec\u30a4\u6e08(\u7d0b\u7ae0\u306e\u8b0e\/\u8056\u6226\u306e\u7cfb\u8b5c\/\u30c8\u30e9\u30ad\u30a2776\/\u5c01\u5370\u306e\u5263\/\u70c8\u706b\u306e\u5263\/\u8056\u9b54\u306e\u5149\u77f3\/\u84bc\u708e\u306e\u8ecc\u8de1\/\u6681\u306e\u5973\u795e\/\u65b0\u30fb\u6697\u9ed2\u7adc\u3068\u5149\u306e\u5263\/\u65b0\u30fb\u7d0b\u7ae0\u306e\u8b0e\/\u899a\u9192\/if(\u767d\u591c\u30fb\u6697\u591c\u30fb\u900f\u9b54)))\u5f90\u3005\u306b\u672c\u30a2\u30ab\u306b\u306a\u308a\u3064\u3064\u3042\u3063\u305f\u308a\u2026\u3002\u65e5\u5e38\u306e\u545f\u304d\u304c\u591a\u304f\u306a\u308a\u3064\u3064\u3042\u308a\u307e\u3059\u2026\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044","protected":false,"verified":false,"followers_count":91,"friends_count":97,"listed_count":4,"favourites_count":748,"statuses_count":5139,"created_at":"Thu Aug 06 04:20:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662213788435808256\/B0n7AGqx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662213788435808256\/B0n7AGqx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307511773\/1446642409","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Meemai533","name":"\u898b\u821e\u3044@\u30d5\u30a9\u30ec\u30aabot\u958b\u8a2d","id":2769322382,"id_str":"2769322382","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024664"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846209138688,"id_str":"663727846209138688","text":"RT @chanstar_92: \u0e14\u0e39 #LIGHTSABER teaser \u0e41\u0e25\u0e49\u0e27\u0e2a\u0e07\u0e2a\u0e31\u0e22\u0e27\u0e48\u0e32\u0e20\u0e32\u0e1e\u0e02\u0e27\u0e32\u0e15\u0e2d\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e19\u0e48\u0e32\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19Anakin Skywalker\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19\u0e15\u0e31\u0e27\u0e25\u0e30\u0e04\u0e23\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e43\u0e19Star Wars\n\u27a1\ufe0f https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2568735984,"id_str":"2568735984","name":"\u2661 \ub3c4\ub514\ub434 \u2661","screen_name":"dodiDyo","location":"\u2661 \u3137 \u3131 \u3145 \u2661","url":null,"description":"\u2661\ub3c4\uacbd\uc218\u2661 | \u0e0a \u0e2d \u0e1a \u0e2b \u0e25 \u0e32 \u0e22 \u0e04\u0e39\u0e48 \u0e40 \u0e2d\u0e47 \u0e19 \u0e14\u0e39 \u0e2b \u0e25 \u0e32 \u0e22 \u0e04 \u0e19 bias\u00bb6112\u007b \ubc15\ucc2c\uc5f4'\ub3c4\uacbd\uc218\u27b3\uc0ac\ub791\uc0ac \u007d \u25c9\u2661\u25c9","protected":false,"verified":false,"followers_count":166,"friends_count":434,"listed_count":2,"favourites_count":4911,"statuses_count":68431,"created_at":"Sun Jun 15 10:03:19 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604890811688325120\/aeVB0qPY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604890811688325120\/aeVB0qPY.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647677399023251456\/7hp-vDph_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647677399023251456\/7hp-vDph_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2568735984\/1443253300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:28:04 +0000 2015","id":663709643416338432,"id_str":"663709643416338432","text":"\u0e14\u0e39 #LIGHTSABER teaser \u0e41\u0e25\u0e49\u0e27\u0e2a\u0e07\u0e2a\u0e31\u0e22\u0e27\u0e48\u0e32\u0e20\u0e32\u0e1e\u0e02\u0e27\u0e32\u0e15\u0e2d\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e19\u0e48\u0e32\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19Anakin Skywalker\u0e2b\u0e19\u0e36\u0e48\u0e07\u0e43\u0e19\u0e15\u0e31\u0e27\u0e25\u0e30\u0e04\u0e23\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1a\u0e17\u0e1a\u0e32\u0e17\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e43\u0e19Star Wars\n\u27a1\ufe0f https:\/\/t.co\/HJfu8gm0Ev","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663411827863240704,"in_reply_to_status_id_str":"663411827863240704","in_reply_to_user_id":2261424374,"in_reply_to_user_id_str":"2261424374","in_reply_to_screen_name":"chanstar_92","user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38606,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":182,"favorite_count":30,"entities":{"hashtags":[{"text":"LIGHTSABER","indices":[3,14]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709572515823616,"id_str":"663709572515823616","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":471,"resize":"fit"},"large":{"w":616,"h":484,"resize":"fit"},"small":{"w":340,"h":267,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709572515823616,"id_str":"663709572515823616","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":471,"resize":"fit"},"large":{"w":616,"h":484,"resize":"fit"},"small":{"w":340,"h":267,"resize":"fit"}}},{"id":663709562113953792,"id_str":"663709562113953792","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VIvVEAAz1I9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VIvVEAAz1I9.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":437,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":364,"resize":"fit"}}},{"id":663709544065839106,"id_str":"663709544065839106","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4UFgUsAITzJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4UFgUsAITzJd.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"large":{"w":399,"h":177,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":399,"h":177,"resize":"fit"},"small":{"w":340,"h":150,"resize":"fit"}}},{"id":663709640807460864,"id_str":"663709640807460864","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4Zt5UsAA3PSu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4Zt5UsAA3PSu.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":769,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"},"large":{"w":807,"h":1035,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LIGHTSABER","indices":[20,31]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663709572515823616,"id_str":"663709572515823616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":471,"resize":"fit"},"large":{"w":616,"h":484,"resize":"fit"},"small":{"w":340,"h":267,"resize":"fit"}},"source_status_id":663709643416338432,"source_status_id_str":"663709643416338432","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663709572515823616,"id_str":"663709572515823616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VvfVAAA98_e.png","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":471,"resize":"fit"},"large":{"w":616,"h":484,"resize":"fit"},"small":{"w":340,"h":267,"resize":"fit"}},"source_status_id":663709643416338432,"source_status_id_str":"663709643416338432","source_user_id":2261424374,"source_user_id_str":"2261424374"},{"id":663709562113953792,"id_str":"663709562113953792","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4VIvVEAAz1I9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4VIvVEAAz1I9.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":437,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":437,"h":364,"resize":"fit"}},"source_status_id":663709643416338432,"source_status_id_str":"663709643416338432","source_user_id":2261424374,"source_user_id_str":"2261424374"},{"id":663709544065839106,"id_str":"663709544065839106","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4UFgUsAITzJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4UFgUsAITzJd.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"large":{"w":399,"h":177,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":399,"h":177,"resize":"fit"},"small":{"w":340,"h":150,"resize":"fit"}},"source_status_id":663709643416338432,"source_status_id_str":"663709643416338432","source_user_id":2261424374,"source_user_id_str":"2261424374"},{"id":663709640807460864,"id_str":"663709640807460864","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4Zt5UsAA3PSu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4Zt5UsAA3PSu.jpg","url":"https:\/\/t.co\/HJfu8gm0Ev","display_url":"pic.twitter.com\/HJfu8gm0Ev","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663709643416338432\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":769,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"},"large":{"w":807,"h":1035,"resize":"fit"}},"source_status_id":663709643416338432,"source_status_id_str":"663709643416338432","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080024660"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230269954,"id_str":"663727846230269954","text":"RT @yomineInes: RT BordeauxEmploi: CDI #Bordeaux - Commercial en immobilier - Aquitaine \nhttps:\/\/t.co\/8iu4JuFa9E \u2026 https:\/\/t.co\/ftmPmrM9rQ","source":"\u003ca href=\"http:\/\/www.monsieurtweet.com\" rel=\"nofollow\"\u003eMonsieurTweet_app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":832243034,"id_str":"832243034","name":"Webulle Bordeaux","screen_name":"webullecom","location":"Bordeaux Gironde France","url":"http:\/\/bordeaux-creation-site-web.fr\/","description":"R\u00e9seau professionnel et e-communication : http:\/\/www.webulle.com \n FB webulle : https:\/\/goo.gl\/b5R0Af \n FB emploi Bordeaux : https:\/\/goo.gl\/GVrSJH","protected":false,"verified":false,"followers_count":4615,"friends_count":4387,"listed_count":282,"favourites_count":38,"statuses_count":21124,"created_at":"Wed Sep 19 01:08:05 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567700433188044800\/Wv7XTtf3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567700433188044800\/Wv7XTtf3.jpeg","profile_background_tile":true,"profile_link_color":"11A09A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660476828352688132\/PAyJ5sdY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660476828352688132\/PAyJ5sdY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832243034\/1446304910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:21:29 +0000 2015","id":663662687038152704,"id_str":"663662687038152704","text":"RT BordeauxEmploi: CDI #Bordeaux - Commercial en immobilier - Aquitaine \nhttps:\/\/t.co\/8iu4JuFa9E \u2026 https:\/\/t.co\/ftmPmrM9rQ","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3336806538,"id_str":"3336806538","name":"Ines","screen_name":"yomineInes","location":"Bordeaux, Aquitaine","url":null,"description":"Musicaholic. Freelance alcohol ninja. Lifelong twitter maven. Gamer. Total travel evangelist.","protected":false,"verified":false,"followers_count":365,"friends_count":1318,"listed_count":364,"favourites_count":0,"statuses_count":141990,"created_at":"Tue Aug 25 11:35:37 +0000 2015","utc_offset":3600,"time_zone":"Budapest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636140044005208064\/FgOcryZ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636140044005208064\/FgOcryZ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3336806538\/1440502634","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Bordeaux","indices":[23,32]}],"urls":[{"url":"https:\/\/t.co\/8iu4JuFa9E","expanded_url":"http:\/\/www.francesurf.net\/offre-emploi-commercial-en-immobilier-aquitaine_7571639.htm","display_url":"francesurf.net\/offre-emploi-c\u2026","indices":[75,98]},{"url":"https:\/\/t.co\/ftmPmrM9rQ","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Bordeaux","indices":[39,48]}],"urls":[{"url":"https:\/\/t.co\/8iu4JuFa9E","expanded_url":"http:\/\/www.francesurf.net\/offre-emploi-commercial-en-immobilier-aquitaine_7571639.htm","display_url":"francesurf.net\/offre-emploi-c\u2026","indices":[91,114]},{"url":"https:\/\/t.co\/ftmPmrM9rQ","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[117,140]}],"user_mentions":[{"screen_name":"yomineInes","name":"Ines","id":3336806538,"id_str":"3336806538","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080024665"} +{"delete":{"status":{"id":663027972085932032,"id_str":"663027972085932032","user_id":2279878758,"user_id_str":"2279878758"},"timestamp_ms":"1447080024852"}} +{"delete":{"status":{"id":628554853258784769,"id_str":"628554853258784769","user_id":2941108524,"user_id_str":"2941108524"},"timestamp_ms":"1447080024876"}} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230269953,"id_str":"663727846230269953","text":"MADE \u2764\ufe0f\ud83d\udc99\ud83d\udc9a\ud83d\udc9b\ud83d\udc51\u2728\n\u00a9 to @ibgdrgn https:\/\/t.co\/v89TlOU27S","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60272956,"id_str":"60272956","name":"Maane Villarama ","screen_name":"annemileen","location":"Philippines","url":null,"description":"Everything happens for a reason","protected":false,"verified":false,"followers_count":54,"friends_count":198,"listed_count":1,"favourites_count":798,"statuses_count":3227,"created_at":"Sun Jul 26 09:31:28 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501382384835502080\/hCsAsRCc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501382384835502080\/hCsAsRCc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60272956\/1408373861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/v89TlOU27S","expanded_url":"https:\/\/instagram.com\/p\/93iV54RulG\/","display_url":"instagram.com\/p\/93iV54RulG\/","indices":[27,50]}],"user_mentions":[{"screen_name":"IBGDRGN","name":"G-DRAGON","id":637313893,"id_str":"637313893","indices":[18,26]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080024665"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846230126593,"id_str":"663727846230126593","text":"\u3044\u3063\u305f\u3060\u304d\u307e~\u3059(*^^*) \u79c1\u306e\u5206\u306f\u7cf8\u30b3\u30f3\u30cb\u30e3\u30af2\u3064\u7cf8\u30b3\u30f3\u30cb\u30e3\u30af\u304c1\u756a\u597d\u304d\u3067\u3059\u2661 https:\/\/t.co\/R0yUq1qgO7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197723003,"id_str":"197723003","name":"\u6843\u83dc","screen_name":"remio_heart","location":"\u5c71\u68a8\u770c","url":null,"description":"\u85e4\u5dfb\u4eae\u592a\u304f\u3093\u30fb\u524d\u7530\u5553\u4ecb\u304f\u3093\u30fb\u795e\u5bae\u53f8\u6cbb\u304f\u3093\u30fb\u306e\u4e09\u4eba\u304c\u5927\u597d\u304d\u3067\u3059( ^^)Y\u2606Y(^^ )\u305d\u308c\u305e\u308c\u306e\u6d3b\u52d5\u3082\u5fdc\u63f4\u3057\u306a\u304c\u3089\u4e09\u4eba\u63c3\u3044\u30ec\u30df\u30aa\u30ed\u30e1\u30f3\u3068\u3057\u3066\u306e\u97f3\u697d\u3092\u5c4a\u3051\u3066\u304f\u308c\u308b\u65e5\u3092\u5fc3\u5f85\u3061\u306b\u3057\u3066\u3044\u307e\u3059\\(\/\/\u2207\/\/)\\\u3042\u3068\u98a8\u30ab\u30f2\u30eb\u6642\u3055\u3093\u3082\u597d\u304d\u2661 \u5fdc\u63f4\u3057\u3066\u307e\u3059\u3002\u305d\u3057\u3066\u97d3\u6d41\u30c9\u30e9\u30de\u3092\u89b3\u308b\u4e8b\u3082\u597d\u304d\u2661 \u7279\u306b\u30a4.\u30df\u30f3\u30db\u304f\u3093\u304c\u5927\u301c\u597d\u304d\u2661","protected":false,"verified":false,"followers_count":144,"friends_count":146,"listed_count":2,"favourites_count":380,"statuses_count":22694,"created_at":"Sat Oct 02 08:12:18 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638617827797151744\/Fi6yTnpw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638617827797151744\/Fi6yTnpw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197723003\/1352034158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727840009981953,"id_str":"663727840009981953","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9DNVEAEPabI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9DNVEAEPabI.jpg","url":"https:\/\/t.co\/R0yUq1qgO7","display_url":"pic.twitter.com\/R0yUq1qgO7","expanded_url":"http:\/\/twitter.com\/remio_heart\/status\/663727846230126593\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727840009981953,"id_str":"663727840009981953","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9DNVEAEPabI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9DNVEAEPabI.jpg","url":"https:\/\/t.co\/R0yUq1qgO7","display_url":"pic.twitter.com\/R0yUq1qgO7","expanded_url":"http:\/\/twitter.com\/remio_heart\/status\/663727846230126593\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080024665"} +{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727846196510720,"id_str":"663727846196510720","text":"@knmg23 \uc5b8\uc5b4\ub294 \uc548 \ub098\uc640\ub3c4 \uc774\ub7f0 \uac70 \uc544\ub2d0\uae4c https:\/\/t.co\/7CTr2UQOAl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727571108950017,"in_reply_to_status_id_str":"663727571108950017","in_reply_to_user_id":710474503,"in_reply_to_user_id_str":"710474503","in_reply_to_screen_name":"knmg23","user":{"id":625549804,"id_str":"625549804","name":"8\ub9c8\ub9ac (\uc5ec\ub35f\ub9c8\ub9ac \/ 8MARI)","screen_name":"Yeodul_Mari","location":"\uc57c\ud0d1 \uc2a4\uc704\uce58","url":null,"description":"\ud754\ud55c \ub9ac\uac8c\uc774 \ubc0f \uc9c4\uc0bc\uad6d\ubb34\uc30d \uc720\uc6b0\uc800 \/ \ub9de\ud314\uc744 \uc6d0\ud560 \uc2dc \uba58\uc158\uc744 \uc8fc\uc138\uc6a9 \/ FUB Free \/ 20 \u7537 (Male) \/ English OK \/ \u65e5\u672c\u8a9e\u304c\u4e0b\u624b\u3067\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\/ \ub3d9\ubb3c \ub9e4\uc6b0 \uc88b\uc544\ud574\uc694 \/ \u52d5\u7269\u5927\u597d\u304d\u3044\u3044\u3044 \/ Since 20150919 @knmg23 \/ \uc544 \ud6c4\uad11\ub2ec\uace0 \uc2f6\ub2e4","protected":false,"verified":false,"followers_count":286,"friends_count":212,"listed_count":3,"favourites_count":1667,"statuses_count":62390,"created_at":"Tue Jul 03 13:12:56 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619439414691762177\/nbdIjwTO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619439414691762177\/nbdIjwTO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/625549804\/1443259666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"knmg23","name":"\uc6c5\ud06c\ub824\uc788\ub294 \uae40\uce74\ub178","id":710474503,"id_str":"710474503","indices":[0,7]}],"symbols":[],"media":[{"id":663727844506267648,"id_str":"663727844506267648","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9T9U8AAl3rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9T9U8AAl3rB.jpg","url":"https:\/\/t.co\/7CTr2UQOAl","display_url":"pic.twitter.com\/7CTr2UQOAl","expanded_url":"http:\/\/twitter.com\/Yeodul_Mari\/status\/663727846196510720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"large":{"w":1024,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":377,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727844506267648,"id_str":"663727844506267648","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9T9U8AAl3rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9T9U8AAl3rB.jpg","url":"https:\/\/t.co\/7CTr2UQOAl","display_url":"pic.twitter.com\/7CTr2UQOAl","expanded_url":"http:\/\/twitter.com\/Yeodul_Mari\/status\/663727846196510720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"large":{"w":1024,"h":644,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":377,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080024657"} +{"delete":{"status":{"id":663726608889462784,"id_str":"663726608889462784","user_id":2720983231,"user_id_str":"2720983231"},"timestamp_ms":"1447080024948"}} +{"delete":{"status":{"id":645401166235340800,"id_str":"645401166235340800","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080025118"}} +{"delete":{"status":{"id":629580348024721408,"id_str":"629580348024721408","user_id":2895088638,"user_id_str":"2895088638"},"timestamp_ms":"1447080025170"}} +{"delete":{"status":{"id":663323972491223041,"id_str":"663323972491223041","user_id":3396385204,"user_id_str":"3396385204"},"timestamp_ms":"1447080025382"}} +{"delete":{"status":{"id":655589147424460800,"id_str":"655589147424460800","user_id":3232040851,"user_id_str":"3232040851"},"timestamp_ms":"1447080025509"}} +{"delete":{"status":{"id":471365052269092864,"id_str":"471365052269092864","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080025567"}} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424545280,"id_str":"663727850424545280","text":"RT @FlirtyNotes: Never give up on me, and I'll never give up on you.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829692029,"id_str":"2829692029","name":"Ursa \u2661","screen_name":"annelisabeth10","location":"Salreu","url":null,"description":"' O amor s\u00f3 \u00e9 lindo, quando encontramos algu\u00e9m que nos transforme no melhor que podemos ser ' ll Jo\u00e3o ll Rita ll Cookie II \u2665 #10032014 \u2665","protected":false,"verified":false,"followers_count":119,"friends_count":167,"listed_count":0,"favourites_count":449,"statuses_count":3191,"created_at":"Wed Sep 24 10:34:56 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652433952725172224\/UIfD2hkA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652433952725172224\/UIfD2hkA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829692029\/1443823322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:44 +0000 2015","id":663715346172395520,"id_str":"663715346172395520","text":"Never give up on me, and I'll never give up on you.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623584562,"id_str":"623584562","name":"Fuck Feelings","screen_name":"FlirtyNotes","location":null,"url":"http:\/\/facebook.com\/babyanimalpics","description":"Retweet & follow me if you like my tweets, about love, life, and happiness.","protected":false,"verified":false,"followers_count":764839,"friends_count":731839,"listed_count":840,"favourites_count":62,"statuses_count":23462,"created_at":"Sun Jul 01 09:29:35 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"303132","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538768842882056192\/s1ClhprL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538768842882056192\/s1ClhprL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623584562\/1431067590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":165,"favorite_count":171,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FlirtyNotes","name":"Fuck Feelings","id":623584562,"id_str":"623584562","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025665"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850416152576,"id_str":"663727850416152576","text":"RT @w3d1112015: \u0627\u0644\u0644\u0647\u0645 \u0639\u0637\u0650\u0651\u0631 \u0645\u0633\u0627\u0626\u064a \u0648\u0645\u0633\u0627\u0621 \u0645\u0646 \u062a\u0635\u0644\u0647 \u0643\u0644\u0645\u0627\u062a\u064a \u0628\u0631\u0627\u062d\u0629 \u0622\u0644\u0628\u0627\u0644 \u0648\u0646\u0633\u0645\u0627\u062a \u0622\u0644\u0625\u0637\u0645\u0626\u0646\u0627\u0646 \u0648\u0622\u0645\u0646\u062d\u0646\u0627 \u0645\u0627 \u0646\u062a\u0645\u0646\u0649\u064e \u0648\u064a\u0633\u0631\u0644\u0646\u0627 \u0622\u0645\u064f\u0648\u0631\u0646\u0627 ..\n\n#\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631 \ud83c\udf39\ud83d\udc9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2214097705,"id_str":"2214097705","name":"\u0625\u062d\u0633\u0640\u2764\ufe0f\u0640\u0627\u0633 \u0639\u0640\u2764\ufe0f\u0640\u0627\u0634\u0642","screen_name":"DonSmile91","location":null,"url":null,"description":"\u0627\u0644\u0652\u062d\u064e\u0645\u0652\u0640\u0651\u062f\u064f\u0644\u0650\u0644\u0651\u0640\u064b\u0650\u0640\u0640\u0640\u0640\u0640\u06be . . || \u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0644\u0643\u0645 || \u0623\u062c\u0648\u0644 \u0628\u0643\u0645 \u0641\u064a\u0645\u0627 \u0643\u062a\u0628 \u060c \u0648\u0623\u062e\u062a\u0627\u0631 \u0644\u0643\u0645 \u0623\u062c\u0645\u0644\u0647\u0622 \u060c \u0647\u0646\u0627 \u0645\u062a\u0646\u0641\u0633 \u0644\u0645\u0646 \u0644\u0627 \u0645\u062a\u0646\u0641\u0633 \u0644\u0647 \u0643\u0648\u0646\u0648 \u0628\u0627\u0644\u0642\u0631\u0628 ..#","protected":false,"verified":false,"followers_count":1232,"friends_count":82,"listed_count":3,"favourites_count":13020,"statuses_count":27892,"created_at":"Mon Nov 25 13:45:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655445694707343361\/gK7prgZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655445694707343361\/gK7prgZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2214097705\/1445204892","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:18 +0000 2015","id":663726815001858048,"id_str":"663726815001858048","text":"\u0627\u0644\u0644\u0647\u0645 \u0639\u0637\u0650\u0651\u0631 \u0645\u0633\u0627\u0626\u064a \u0648\u0645\u0633\u0627\u0621 \u0645\u0646 \u062a\u0635\u0644\u0647 \u0643\u0644\u0645\u0627\u062a\u064a \u0628\u0631\u0627\u062d\u0629 \u0622\u0644\u0628\u0627\u0644 \u0648\u0646\u0633\u0645\u0627\u062a \u0622\u0644\u0625\u0637\u0645\u0626\u0646\u0627\u0646 \u0648\u0622\u0645\u0646\u062d\u0646\u0627 \u0645\u0627 \u0646\u062a\u0645\u0646\u0649\u064e \u0648\u064a\u0633\u0631\u0644\u0646\u0627 \u0622\u0645\u064f\u0648\u0631\u0646\u0627 ..\n\n#\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631 \ud83c\udf39\ud83d\udc9d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4016204788,"id_str":"4016204788","name":"nursing student\u2665","screen_name":"w3d1112015","location":null,"url":null,"description":"\u200f\u062d\u0632\u0646 \u0642\u0644\u0628\u064a \u064a\u0648\u0645 \u0648\u0641\u0627\u062a\u0647 \u0648\u0628\u0643\u062a \u0639\u064a\u0646\u064a \u0644\u0641\u0631\u0627\u0642\u0647 \u0648\u0644\u0627\u0632\u0627\u0644\u062a \u0631\u0648\u062d\u064a \u062a\u0634\u062a\u0627\u0642 \u0644\u0647 \u0648\u0644\u0643\u0646 \u0631\u0636\u064a\u062a \u0628\u0642\u062f\u0631 \u0627\u0644\u062e\u0627\u0644\u0642 \u060c\u0648 \u0633\u064a\u0636\u0644 \u0644\u0633\u0627\u0646\u064a \u064a\u0647\u062a\u0641 \u0628 \u0627\u0644\u062f\u0639\u0627\u0621 \u0644\u0647\u060c\n\n#\u0627\u0644\u0644\u0647\u0645_\u0627\u0631\u062d\u0645\u0647_\u0648\u0627\u0633\u0643\u0646\u0647_\u062c\u0646\u062a\u0643","protected":false,"verified":false,"followers_count":344,"friends_count":549,"listed_count":1,"favourites_count":876,"statuses_count":422,"created_at":"Thu Oct 22 10:14:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662980189081706496\/vi0hYnZp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662980189081706496\/vi0hYnZp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4016204788\/1447035198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631","indices":[106,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631","indices":[122,133]}],"urls":[],"user_mentions":[{"screen_name":"w3d1112015","name":"nursing student\u2665","id":4016204788,"id_str":"4016204788","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080025663"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399342592,"id_str":"663727850399342592","text":"El rincon de sama y cami","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2680272811,"id_str":"2680272811","name":"Sabrina","screen_name":"sabri_sama","location":"Buenos Aires, Argentina","url":null,"description":"Hoy quiero morir bajo tu efecto","protected":false,"verified":false,"followers_count":456,"friends_count":440,"listed_count":1,"favourites_count":2190,"statuses_count":9331,"created_at":"Fri Jul 25 18:56:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561440098307170305\/_6FJrq6E.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561440098307170305\/_6FJrq6E.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662800167247192064\/ikFddoFG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662800167247192064\/ikFddoFG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2680272811\/1442986153","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850428751872,"id_str":"663727850428751872","text":"Kurator przyszed\u0142;)))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2667579697,"id_str":"2667579697","name":"\u3164 \u3164 \u3164 \u3164 \u3164 \u3164 \u3164\u3164 \u3164 \u3164 \u3164","screen_name":"biebrlyking","location":"OLCIA TO MOJA K\u0141IN","url":null,"description":"niki jest tylko moj\u0105 KASZANK\u0104","protected":false,"verified":false,"followers_count":2319,"friends_count":984,"listed_count":22,"favourites_count":12,"statuses_count":74192,"created_at":"Tue Jul 22 00:02:37 +0000 2014","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574751119466856448\/YnoCBMQQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574751119466856448\/YnoCBMQQ.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314109002342400\/k1acOedJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314109002342400\/k1acOedJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2667579697\/1446984918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080025666"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399391744,"id_str":"663727850399391744","text":"@JagoSevatarion \u0431\u043b\u0451\u0451\u0451\u0451","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727234511986688,"in_reply_to_status_id_str":"663727234511986688","in_reply_to_user_id":326378715,"in_reply_to_user_id_str":"326378715","in_reply_to_screen_name":"JagoSevatarion","user":{"id":238647712,"id_str":"238647712","name":"Broodmother Russia","screen_name":"ZalgoIncarnate","location":null,"url":null,"description":"\u041f\u043e\u0442\u043e\u043a \u0441\u043e\u0437\u043d\u0430\u043d\u0438\u044f","protected":false,"verified":false,"followers_count":96,"friends_count":159,"listed_count":5,"favourites_count":93,"statuses_count":4138,"created_at":"Sat Jan 15 17:46:30 +0000 2011","utc_offset":10800,"time_zone":"Volgograd","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1B3542","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569959667606888448\/LIfz_25W.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569959667606888448\/LIfz_25W.jpeg","profile_background_tile":true,"profile_link_color":"3A606E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660498319677005824\/C8Y6Jonq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660498319677005824\/C8Y6Jonq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238647712\/1436782472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JagoSevatarion","name":"Prince of Crows","id":326378715,"id_str":"326378715","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850403602432,"id_str":"663727850403602432","text":"@meteorart Sabes que no. \ud83d\ude3f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727689669431297,"in_reply_to_status_id_str":"663727689669431297","in_reply_to_user_id":440365125,"in_reply_to_user_id_str":"440365125","in_reply_to_screen_name":"meteorart","user":{"id":496046618,"id_str":"496046618","name":"Nobody \u2727","screen_name":"kafkalien","location":"The red carpet grave.","url":"http:\/\/a-pill-to-make-me-anybody-else.tumblr.com","description":"Sick and tired of being sick and tired.","protected":false,"verified":false,"followers_count":1072,"friends_count":265,"listed_count":8,"favourites_count":12249,"statuses_count":84422,"created_at":"Sat Feb 18 15:23:05 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526827323207606273\/xAOGeVgW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526827323207606273\/xAOGeVgW.jpeg","profile_background_tile":true,"profile_link_color":"9B9C9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663139302394765312\/vMQGWeVc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663139302394765312\/vMQGWeVc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496046618\/1443102089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meteorart","name":"vita","id":440365125,"id_str":"440365125","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080025660"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850395205632,"id_str":"663727850395205632","text":"RT @JensenAcklesGod: Nananananana BATMAN\n#DenverCon https:\/\/t.co\/YErRTQAJoh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":410004695,"id_str":"410004695","name":"mary","screen_name":"DRONEMISHA","location":"@breadinside","url":"https:\/\/twitter.com\/jarpad\/status\/599381538795614208","description":"i can fix that | blissed ASYLUM 16!!!!","protected":false,"verified":false,"followers_count":4096,"friends_count":277,"listed_count":95,"favourites_count":39771,"statuses_count":71528,"created_at":"Fri Nov 11 14:19:47 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/591317175073316864\/Uu9D47wY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/591317175073316864\/Uu9D47wY.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663449565295718401\/3BvjbL65_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663449565295718401\/3BvjbL65_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/410004695\/1447013678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:44:20 +0000 2015","id":663592939902377984,"id_str":"663592939902377984","text":"Nananananana BATMAN\n#DenverCon https:\/\/t.co\/YErRTQAJoh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395817545,"id_str":"395817545","name":"B-DAY!JACKLES IS GOD","screen_name":"JensenAcklesGod","location":"1\/3\/1978 Dallas,Texas","url":"https:\/\/twitter.com\/JensenAcklesGod\/status\/557644539603980288?lang=es","description":"Sara. Season 16. @JensenAckles saved my life, I need to see your smile Jensen, it keeps me alive. Spain\nDanneel's squad #PCAForJensen","protected":false,"verified":false,"followers_count":15231,"friends_count":178,"listed_count":82,"favourites_count":34815,"statuses_count":25888,"created_at":"Sat Oct 22 09:08:08 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557666717569011712\/lMUNPz5E.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557666717569011712\/lMUNPz5E.png","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660413269363040256\/2Iq4MxBM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660413269363040256\/2Iq4MxBM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395817545\/1443347173","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":125,"favorite_count":167,"entities":{"hashtags":[{"text":"DenverCon","indices":[20,30]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663592928674250752,"id_str":"663592928674250752","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":948,"resize":"fit"},"medium":{"w":600,"h":555,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663592928674250752,"id_str":"663592928674250752","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":948,"resize":"fit"},"medium":{"w":600,"h":555,"resize":"fit"}}},{"id":663592938686029824,"id_str":"663592938686029824","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQwnWoAAspGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQwnWoAAspGe.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"medium":{"w":223,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":223,"h":232,"resize":"fit"},"small":{"w":223,"h":232,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DenverCon","indices":[41,51]}],"urls":[],"user_mentions":[{"screen_name":"JensenAcklesGod","name":"B-DAY!JACKLES IS GOD","id":395817545,"id_str":"395817545","indices":[3,19]}],"symbols":[],"media":[{"id":663592928674250752,"id_str":"663592928674250752","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":948,"resize":"fit"},"medium":{"w":600,"h":555,"resize":"fit"}},"source_status_id":663592939902377984,"source_status_id_str":"663592939902377984","source_user_id":395817545,"source_user_id_str":"395817545"}]},"extended_entities":{"media":[{"id":663592928674250752,"id_str":"663592928674250752","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQLUXAAACipT.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":948,"resize":"fit"},"medium":{"w":600,"h":555,"resize":"fit"}},"source_status_id":663592939902377984,"source_status_id_str":"663592939902377984","source_user_id":395817545,"source_user_id_str":"395817545"},{"id":663592938686029824,"id_str":"663592938686029824","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOQwnWoAAspGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOQwnWoAAspGe.jpg","url":"https:\/\/t.co\/YErRTQAJoh","display_url":"pic.twitter.com\/YErRTQAJoh","expanded_url":"http:\/\/twitter.com\/JensenAcklesGod\/status\/663592939902377984\/photo\/1","type":"photo","sizes":{"medium":{"w":223,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":223,"h":232,"resize":"fit"},"small":{"w":223,"h":232,"resize":"fit"}},"source_status_id":663592939902377984,"source_status_id_str":"663592939902377984","source_user_id":395817545,"source_user_id_str":"395817545"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080025658"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399375360,"id_str":"663727850399375360","text":"RT @BishopJakes: Forgiveness is a decision that starts in your mind and gradually convinces your heart that being angry is only hurting you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4069046068,"id_str":"4069046068","name":"Lourdes Heaven","screen_name":"lourdes_heaven","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":15,"listed_count":0,"favourites_count":17,"statuses_count":4,"created_at":"Thu Oct 29 16:36:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659771364170141696\/B_CHUsl1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659771364170141696\/B_CHUsl1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:04 +0000 2015","id":663721974892519424,"id_str":"663721974892519424","text":"Forgiveness is a decision that starts in your mind and gradually convinces your heart that being angry is only hurting you.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36117822,"id_str":"36117822","name":"T.D. Jakes","screen_name":"BishopJakes","location":"Dallas, Texas","url":"http:\/\/www.tdjakes.org\/watchnow","description":"Official Twitter for Bishop T. D. Jakes","protected":false,"verified":true,"followers_count":2025164,"friends_count":204,"listed_count":7726,"favourites_count":6182,"statuses_count":32441,"created_at":"Tue Apr 28 17:01:24 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254951146\/tdjtwitbg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254951146\/tdjtwitbg.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635952596767760384\/KO69aK79_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635952596767760384\/KO69aK79_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36117822\/1440456616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":259,"favorite_count":220,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BishopJakes","name":"T.D. Jakes","id":36117822,"id_str":"36117822","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850403577857,"id_str":"663727850403577857","text":"Find Out Why Two Brothers Left Their Careers to Build a Business Together\n https:\/\/t.co\/A2oayO4C3A @Entrepreneur","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3041604645,"id_str":"3041604645","name":"Redlomond","screen_name":"RedLomond","location":"United Kingdom","url":"http:\/\/www.redlomond.com","description":"There is something for everyone at Red Lomond. #YourPartyDressExpert\nFollow us on Instagram \nhttp:\/\/bit.ly\/1GZabrN","protected":false,"verified":false,"followers_count":949,"friends_count":263,"listed_count":21,"favourites_count":117,"statuses_count":285,"created_at":"Mon Feb 16 23:41:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567470174819729408\/aintSj6N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567470174819729408\/aintSj6N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3041604645\/1429605423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/A2oayO4C3A","expanded_url":"http:\/\/ht.ly\/UpGQz","display_url":"ht.ly\/UpGQz","indices":[75,98]}],"user_mentions":[{"screen_name":"Entrepreneur","name":"Entrepreneur","id":19407053,"id_str":"19407053","indices":[99,112]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025660"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424573952,"id_str":"663727850424573952","text":"RT @sebontimahnaz: I'VE NEVER BEEN IN SOO MUCH PAIN\nMY POOR HEART!!!\n\n#4DaysUntilMITAM https:\/\/t.co\/4YbZ8jWkFf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":813209329,"id_str":"813209329","name":"ginecology gay \u2693","screen_name":"onedsdjcks","location":"searching...","url":null,"description":"that's my job, that's my fookin job, ima fookin losah","protected":false,"verified":false,"followers_count":2412,"friends_count":1952,"listed_count":6,"favourites_count":18912,"statuses_count":38437,"created_at":"Sun Sep 09 14:11:23 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9F5F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166906439\/4lX9nNxe.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166906439\/4lX9nNxe.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659781748574801920\/KjcaKQQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659781748574801920\/KjcaKQQQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/813209329\/1446139200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:34:33 +0000 2015","id":663605576396464129,"id_str":"663605576396464129","text":"I'VE NEVER BEEN IN SOO MUCH PAIN\nMY POOR HEART!!!\n\n#4DaysUntilMITAM https:\/\/t.co\/4YbZ8jWkFf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904967104,"id_str":"2904967104","name":"NADI","screen_name":"sebontimahnaz","location":"Bangladesh","url":null,"description":"Enjoy your own life without comparing it with that of another......","protected":false,"verified":false,"followers_count":20973,"friends_count":17936,"listed_count":6,"favourites_count":1650,"statuses_count":2598,"created_at":"Thu Nov 20 09:46:48 +0000 2014","utc_offset":21600,"time_zone":"Dhaka","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657064338520342528\/y8sr4Jkk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657064338520342528\/y8sr4Jkk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2904967104\/1443342350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":13,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[51,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663605574664237056,"id_str":"663605574664237056","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663605574664237056,"id_str":"663605574664237056","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}}},{"id":663605569375203328,"id_str":"663605569375203328","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZv9mUcAAzZ5A.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZv9mUcAAzZ5A.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[70,86]}],"urls":[],"user_mentions":[{"screen_name":"sebontimahnaz","name":"NADI","id":2904967104,"id_str":"2904967104","indices":[3,17]}],"symbols":[],"media":[{"id":663605574664237056,"id_str":"663605574664237056","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}},"source_status_id":663605576396464129,"source_status_id_str":"663605576396464129","source_user_id":2904967104,"source_user_id_str":"2904967104"}]},"extended_entities":{"media":[{"id":663605574664237056,"id_str":"663605574664237056","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZwRTUsAA6vEl.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}},"source_status_id":663605576396464129,"source_status_id_str":"663605576396464129","source_user_id":2904967104,"source_user_id_str":"2904967104"},{"id":663605569375203328,"id_str":"663605569375203328","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZv9mUcAAzZ5A.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZv9mUcAAzZ5A.png","url":"https:\/\/t.co\/4YbZ8jWkFf","display_url":"pic.twitter.com\/4YbZ8jWkFf","expanded_url":"http:\/\/twitter.com\/sebontimahnaz\/status\/663605576396464129\/photo\/1","type":"photo","sizes":{"small":{"w":338,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":600,"resize":"fit"},"large":{"w":338,"h":600,"resize":"fit"}},"source_status_id":663605576396464129,"source_status_id_str":"663605576396464129","source_user_id":2904967104,"source_user_id_str":"2904967104"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025665"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850403422208,"id_str":"663727850403422208","text":"\u8a33:\u65e5\u672c\u306e\u30d5\u30a1\u30f3\u306f\u30b4\u30df","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222919649,"id_str":"2222919649","name":"\u30d9\u30b8\u30fc\u30bf","screen_name":"omatagisun","location":"\u6771\u4eac","url":null,"description":"\u4e09\u68ee\u3059\u305a\u3053\uff0f\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\uff0f\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9\uff0f\u85e4\u6d6a\u664b\u592a\u90ce\uff0f\u5343\u8449\u30ed\u30c3\u30c6\u30de\u30ea\u30fc\u30f3\u30ba \u8d64\u8ca7\u30aa\u30bf\u30af\u306a\u306e\u3067\u30a4\u30d9\u30f3\u30c8\u53c2\u52a0\u3042\u3093\u307e\u308a\u51fa\u6765\u3066\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":379,"friends_count":706,"listed_count":6,"favourites_count":16527,"statuses_count":10450,"created_at":"Sat Nov 30 11:00:53 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663000657952043008\/PV2WvgMc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663000657952043008\/PV2WvgMc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222919649\/1446906649","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025660"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850395160576,"id_str":"663727850395160576","text":"RT @guardian: A woman's guide to getting a pay rise https:\/\/t.co\/E5fdu0hdHa #EqualPayDay https:\/\/t.co\/Zdm1IRN6Lh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2151157244,"id_str":"2151157244","name":"Interjunction","screen_name":"Interjunction","location":"London 07590 963 238","url":"http:\/\/www.interjunction.org.uk","description":"#SocialGood with #workplacements for 16-30 yr olds in #Lambeth. Funded by Walcott Foundation #jobhunting #NEET #Volunteering #Nonprofit","protected":false,"verified":false,"followers_count":376,"friends_count":766,"listed_count":29,"favourites_count":531,"statuses_count":1848,"created_at":"Wed Oct 23 15:07:18 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000637470166\/b14f99c57059c82774912ee16fa2cb4d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000637470166\/b14f99c57059c82774912ee16fa2cb4d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2151157244\/1382541406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:30:53 +0000 2015","id":663680153508290560,"id_str":"663680153508290560","text":"A woman's guide to getting a pay rise https:\/\/t.co\/E5fdu0hdHa #EqualPayDay https:\/\/t.co\/Zdm1IRN6Lh","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87818409,"id_str":"87818409","name":"The Guardian ","screen_name":"guardian","location":"London","url":"http:\/\/theguardian.com","description":"Top stories, special features, live blogs and more","protected":false,"verified":true,"followers_count":4510183,"friends_count":1094,"listed_count":42640,"favourites_count":136,"statuses_count":192841,"created_at":"Thu Nov 05 23:49:19 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704160749\/ff996aa3bc2009a2f9b97cdd43e8b5b7.png","profile_background_tile":false,"profile_link_color":"005789","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CAE3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564829693736546305\/8o1OPz2e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87818409\/1427295976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":152,"favorite_count":98,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[62,74]}],"urls":[{"url":"https:\/\/t.co\/E5fdu0hdHa","expanded_url":"http:\/\/t.gu.com\/UpvGT","display_url":"t.gu.com\/UpvGT","indices":[38,61]}],"user_mentions":[],"symbols":[],"media":[{"id":663680153105604608,"id_str":"663680153105604608","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","url":"https:\/\/t.co\/Zdm1IRN6Lh","display_url":"pic.twitter.com\/Zdm1IRN6Lh","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663680153508290560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663680153105604608,"id_str":"663680153105604608","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","url":"https:\/\/t.co\/Zdm1IRN6Lh","display_url":"pic.twitter.com\/Zdm1IRN6Lh","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663680153508290560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[76,88]}],"urls":[{"url":"https:\/\/t.co\/E5fdu0hdHa","expanded_url":"http:\/\/t.gu.com\/UpvGT","display_url":"t.gu.com\/UpvGT","indices":[52,75]}],"user_mentions":[{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[3,12]}],"symbols":[],"media":[{"id":663680153105604608,"id_str":"663680153105604608","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","url":"https:\/\/t.co\/Zdm1IRN6Lh","display_url":"pic.twitter.com\/Zdm1IRN6Lh","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663680153508290560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663680153508290560,"source_status_id_str":"663680153508290560","source_user_id":87818409,"source_user_id_str":"87818409"}]},"extended_entities":{"media":[{"id":663680153105604608,"id_str":"663680153105604608","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdlTpWIAAPs40.jpg","url":"https:\/\/t.co\/Zdm1IRN6Lh","display_url":"pic.twitter.com\/Zdm1IRN6Lh","expanded_url":"http:\/\/twitter.com\/guardian\/status\/663680153508290560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663680153508290560,"source_status_id_str":"663680153508290560","source_user_id":87818409,"source_user_id_str":"87818409"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025658"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407727104,"id_str":"663727850407727104","text":"@eloquent169 \u0432 \u043b\u0438\u0447\u043a\u0443 \u0441\u0435\u0439\u0447\u0430\u0441 \u043e\u0442\u0432\u0435\u0447\u0443","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727571272605696,"in_reply_to_status_id_str":"663727571272605696","in_reply_to_user_id":234880597,"in_reply_to_user_id_str":"234880597","in_reply_to_screen_name":"eloquent169","user":{"id":4050979149,"id_str":"4050979149","name":"ManDa","screen_name":"inka220621","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":18,"listed_count":0,"favourites_count":17,"statuses_count":42,"created_at":"Tue Oct 27 04:43:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663645876510961664\/u5DdZtZj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663645876510961664\/u5DdZtZj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4050979149\/1447060480","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eloquent169","name":"\u0421\u043c\u0435\u0442\u0430\u043d\u0430","id":234880597,"id_str":"234880597","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850403549184,"id_str":"663727850403549184","text":"RT @gnarlypug: the aliens are trying to tell us something https:\/\/t.co\/R7A8BQPDeo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":792628807,"id_str":"792628807","name":"Ava Cates","screen_name":"avacates","location":"Washington, DC","url":"http:\/\/www.linkedin.com\/in\/avacates","description":"Washington, DC. @AmericanU Class of 2016. Passionate about civil rights and equitable treatment under the law. #blacklivesmatter","protected":false,"verified":false,"followers_count":241,"friends_count":373,"listed_count":20,"favourites_count":528,"statuses_count":583,"created_at":"Thu Aug 30 23:31:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647161734\/rew8qj6v1rk3992xtmh5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647161734\/rew8qj6v1rk3992xtmh5.png","profile_background_tile":true,"profile_link_color":"1DE6C4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644275532750790656\/knKWrxw3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644275532750790656\/knKWrxw3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/792628807\/1442501995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:49:05 +0000 2015","id":663352541862887424,"id_str":"663352541862887424","text":"the aliens are trying to tell us something https:\/\/t.co\/R7A8BQPDeo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368426261,"id_str":"2368426261","name":"mo","screen_name":"gnarlypug","location":"1428 elm street ","url":null,"description":"pugs & horror movies","protected":false,"verified":false,"followers_count":4836,"friends_count":382,"listed_count":33,"favourites_count":15364,"statuses_count":23300,"created_at":"Sun Mar 02 06:21:04 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542964178051284992\/KUapI-uA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542964178051284992\/KUapI-uA.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663438551015641088\/WhMx2ce9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663438551015641088\/WhMx2ce9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368426261\/1446972222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4236,"favorite_count":3892,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663352537844736000,"id_str":"663352537844736000","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663352537844736000,"id_str":"663352537844736000","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663352537844736001,"id_str":"663352537844736001","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AERzyb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AERzyb.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gnarlypug","name":"mo","id":2368426261,"id_str":"2368426261","indices":[3,13]}],"symbols":[],"media":[{"id":663352537844736000,"id_str":"663352537844736000","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663352541862887424,"source_status_id_str":"663352541862887424","source_user_id":2368426261,"source_user_id_str":"2368426261"}]},"extended_entities":{"media":[{"id":663352537844736000,"id_str":"663352537844736000","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AA9m1V.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663352541862887424,"source_status_id_str":"663352541862887424","source_user_id":2368426261,"source_user_id_str":"2368426261"},{"id":663352537844736001,"id_str":"663352537844736001","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSznlsW4AERzyb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSznlsW4AERzyb.jpg","url":"https:\/\/t.co\/R7A8BQPDeo","display_url":"pic.twitter.com\/R7A8BQPDeo","expanded_url":"http:\/\/twitter.com\/gnarlypug\/status\/663352541862887424\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":663352541862887424,"source_status_id_str":"663352541862887424","source_user_id":2368426261,"source_user_id_str":"2368426261"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025660"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850395033600,"id_str":"663727850395033600","text":"\u0412\u0447\u0435\u0440\u0430 \u043c\u0443\u0436, \u043f\u043e\u0435\u0432 \u043a\u0430\u0440\u0442\u043e\u0448\u0435\u0447\u043a\u0438 \u0441 \u043a\u0443\u0440\u043e\u0447\u043a\u043e\u0439 \u0438 \u0441\u0430\u043b\u0430\u0442, \u043f\u043e\u043f\u0438\u0432 \u044f\u0431\u043b\u043e\u0447\u043d\u044b\u0439...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3126572266,"id_str":"3126572266","name":"\u041c\u0430\u0440\u0442\u0430 \u0422\u044f\u0433\u0430\u0439S","screen_name":"mtyagay","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":82735,"created_at":"Sun Mar 29 13:29:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080025658"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390974464,"id_str":"663727850390974464","text":"RT @19931103cokr: 151107 MMA #\ubbfc\ud601 #MONSTAX #Minhyuk #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \n\ud83d\ude03&\ud83d\ude2e https:\/\/t.co\/JqyAjMl8iY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3144721558,"id_str":"3144721558","name":"taylor \u2661 #MATRIX","screen_name":"pupminhyuk","location":"starship \u2022 YG","url":"http:\/\/twitter.com\/94sharpgun","description":"let's be realists \u2661 but let's dream impossible dreams \u007bbyg \u2022 lmh \u2022 kjh \u2022 ksy \u2022 khb\u007d 729-804","protected":false,"verified":false,"followers_count":205,"friends_count":191,"listed_count":5,"favourites_count":2702,"statuses_count":29643,"created_at":"Tue Apr 07 17:05:16 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585546282715844608\/qsbIwqxp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585546282715844608\/qsbIwqxp.jpg","profile_background_tile":true,"profile_link_color":"DCEDFB","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663542723551625216\/4H00s0bl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663542723551625216\/4H00s0bl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3144721558\/1447035969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:01 +0000 2015","id":663727246830649344,"id_str":"663727246830649344","text":"151107 MMA #\ubbfc\ud601 #MONSTAX #Minhyuk #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \n\ud83d\ude03&\ud83d\ude2e https:\/\/t.co\/JqyAjMl8iY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3198208058,"id_str":"3198208058","name":"Innocent Days","screen_name":"19931103cokr","location":null,"url":null,"description":"\/ Innocent Days \ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \ubbfc\ud601 FANPAGE \/","protected":false,"verified":false,"followers_count":5243,"friends_count":13,"listed_count":295,"favourites_count":0,"statuses_count":423,"created_at":"Sun May 17 00:38:30 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643099235219406848\/z5coyKC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643099235219406848\/z5coyKC1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3198208058\/1446828211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":5,"entities":{"hashtags":[{"text":"\ubbfc\ud601","indices":[11,14]},{"text":"MONSTAX","indices":[15,23]},{"text":"Minhyuk","indices":[24,32]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[33,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727237062000640,"id_str":"663727237062000640","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727237062000640,"id_str":"663727237062000640","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727237061963776,"id_str":"663727237061963776","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DUcAAg6iB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DUcAAg6iB.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ubbfc\ud601","indices":[29,32]},{"text":"MONSTAX","indices":[33,41]},{"text":"Minhyuk","indices":[42,50]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[51,57]}],"urls":[],"user_mentions":[{"screen_name":"19931103cokr","name":"Innocent Days","id":3198208058,"id_str":"3198208058","indices":[3,16]}],"symbols":[],"media":[{"id":663727237062000640,"id_str":"663727237062000640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727246830649344,"source_status_id_str":"663727246830649344","source_user_id":3198208058,"source_user_id_str":"3198208058"}]},"extended_entities":{"media":[{"id":663727237062000640,"id_str":"663727237062000640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DVAAAJSTk.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727246830649344,"source_status_id_str":"663727246830649344","source_user_id":3198208058,"source_user_id_str":"3198208058"},{"id":663727237061963776,"id_str":"663727237061963776","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZ9DUcAAg6iB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZ9DUcAAg6iB.jpg","url":"https:\/\/t.co\/JqyAjMl8iY","display_url":"pic.twitter.com\/JqyAjMl8iY","expanded_url":"http:\/\/twitter.com\/19931103cokr\/status\/663727246830649344\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727246830649344,"source_status_id_str":"663727246830649344","source_user_id":3198208058,"source_user_id_str":"3198208058"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407796736,"id_str":"663727850407796736","text":"RT @MegaCornuda: Lo que tenga que volver, volver\u00e1 \ud83d\udd03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861562876,"id_str":"2861562876","name":"\u2020 Angel Fallen \u2020","screen_name":"clifford_luly","location":"Buenos Aires, Argentina","url":null,"description":"5SOS | S\u0460S | Halsey | Rock | Metal | Club Atl\u00e9tico Hurac\u00e1n |","protected":false,"verified":false,"followers_count":431,"friends_count":678,"listed_count":1,"favourites_count":4986,"statuses_count":1817,"created_at":"Sat Oct 18 01:19:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663447927801700354\/Vn9aOY2F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663447927801700354\/Vn9aOY2F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861562876\/1447013310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:07:43 +0000 2015","id":663704519113576448,"id_str":"663704519113576448","text":"Lo que tenga que volver, volver\u00e1 \ud83d\udd03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2398580622,"id_str":"2398580622","name":"Cornuda? S\u00ed y?","screen_name":"MegaCornuda","location":"Argentina","url":"https:\/\/instagram.com\/megacornuda","description":"Con talento y desempe\u00f1o a las gilas les ense\u00f1o. Sin flow, sin base, pero en tu barrio yo doy clase.","protected":false,"verified":false,"followers_count":82349,"friends_count":58,"listed_count":38,"favourites_count":10303,"statuses_count":6006,"created_at":"Wed Mar 19 23:20:43 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BCA9F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630133920844152832\/Fbs-5CWn.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630133920844152832\/Fbs-5CWn.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662020709313552386\/ztWXp5OG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662020709313552386\/ztWXp5OG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398580622\/1446672952","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":337,"favorite_count":162,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MegaCornuda","name":"Cornuda? S\u00ed y?","id":2398580622,"id_str":"2398580622","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407657473,"id_str":"663727850407657473","text":"\u3053\u308c\u306f\u30ad\u30bf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2152832053,"id_str":"2152832053","name":"\u307f\u3083\u308d\u308b@\u753a\u4f1a\u8b70\u4f59\u97fb","screen_name":"mrla0","location":null,"url":"http:\/\/twpf.jp\/mrla0","description":"\u3086\u3001\u3001\u3001\u3046\u3064\u3057\u307f\u2192@utsu_43 \u3001\u3001\u7d75\u5e2b\u3001\u8272\u3005\u4f5c\u3063\u305f\u308a\u3057\u3066\u308b\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u304f\u3060\u3055\u3044\uff01\u305d\u308c\u306f\u4e00\u751f\u53f6\u308f\u306a\u3044\u5922\u2026\u3002\u3060\u3051\u3069\u53f6\u3048\u3066\u307f\u305b\u308b\uff01\u30c6\u30b9\u30c8\u671f\u9593\u8d85\u4f4e\u6d6e\u4e0a\u3002nana\u3057\u3066\u307e\u305b\u3093( )\uff01\uff01\uff01\uff01\u5168\u7136\u3057\u3066\u306a\u3044\u3093\u3067\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":8922,"friends_count":8611,"listed_count":80,"favourites_count":18889,"statuses_count":44734,"created_at":"Thu Oct 24 12:00:29 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618816561269215232\/6QpL-w2x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618816561269215232\/6QpL-w2x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2152832053\/1439979426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399207424,"id_str":"663727850399207424","text":"\u30af\u30bd\u30ea\u30d7\u304f\u3060\u3055\u3044\uff01 #\u9280\u4e16\u754c\u3088\u308a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307104476,"id_str":"3307104476","name":"\u9280\u6c70\u6717","screen_name":"aspgj","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":42,"listed_count":0,"favourites_count":425,"statuses_count":8611,"created_at":"Wed Aug 05 16:29:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660004091158884353\/rfJSIzUL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660004091158884353\/rfJSIzUL_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u9280\u4e16\u754c\u3088\u308a","indices":[10,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850403463169,"id_str":"663727850403463169","text":"\u3042\u305f\u3057\u3084\u3093\u3051","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528311158,"id_str":"528311158","name":"\u3060\u308b\u307e\u6c0f\uff5ewww","screen_name":"1000_001","location":null,"url":null,"description":"\u67c4\u6ca2","protected":false,"verified":false,"followers_count":1342,"friends_count":414,"listed_count":98,"favourites_count":36276,"statuses_count":114577,"created_at":"Sun Mar 18 08:50:08 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/876338842\/9379a5f2f816137b4e31a8c48abb9056.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/876338842\/9379a5f2f816137b4e31a8c48abb9056.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631464417155153920\/aikmicq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631464417155153920\/aikmicq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528311158\/1439997570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025660"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424438784,"id_str":"663727850424438784","text":"RT @kusudaaina: \u53f0\u5317\u56fd\u969b\u65c5\u884c\u535a\u306e\u30c8\u30fc\u30af\u30b7\u30e7\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\u3041\u0669(\u0e51\u275b\u1d17\u275b\u0e51)\u06f6\n5\u56de\u76ee\u306e\u53f0\u6e7e\uff01\uff01\n\u3082\u3046\u3001\u5916\u56fd\u3068\u3044\u3046\u611f\u3058\u306f\u306a\u304f\u6545\u90f7\u306e\u3088\u3046\u3067\u3059\u3002\u7b11\n\u307e\u305f\u884c\u304f\u3088\u301c\uff01\uff01 https:\/\/t.co\/LzwPLMCTbn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619756664,"id_str":"619756664","name":"\u713c\u304d\u305d\u3070\u6200","screen_name":"skull15078","location":"\u9031\u4e00\u3067\u82b1\u5712","url":null,"description":"\u73fe\u5728\u5927\u5b66\u751f\u3084\u308a\u306a\u304c\u3089\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3084\u3063\u3066\u307e\u3059\u3002\u57fa\u672c\u7d75\u91cc\u63a8\u3057\u3060\u3051\u3069\u5168\u54e1\u597d\u304d\u3002 \u306e\u305e\u3048\u308aRadio Garden\u4eca\u307e\u3067\u672c\u5f53\u306b\u3042\u308a\u304c\u3068\u3046\u3002 \u4ffa\u59b9\/\u3051\u3044\u304a\u3093\uff01\/\u306f\u304c\u306a\u3044\/\u4e2d\u604b\/\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\/\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u30b4\u30fc\u30b9\u30c8\/\u30cb\u30f3\u30cb\u30f3\u30b8\u30e3\u30fc\/\u30a6\u30eb\u30c8\u30e9\u30de\u30f3X","protected":false,"verified":false,"followers_count":1552,"friends_count":1450,"listed_count":25,"favourites_count":23742,"statuses_count":57275,"created_at":"Wed Jun 27 07:09:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618066581558439936\/61xxVBvB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618066581558439936\/61xxVBvB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619756664\/1443339876","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:21 +0000 2015","id":663726574294818816,"id_str":"663726574294818816","text":"\u53f0\u5317\u56fd\u969b\u65c5\u884c\u535a\u306e\u30c8\u30fc\u30af\u30b7\u30e7\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\u3041\u0669(\u0e51\u275b\u1d17\u275b\u0e51)\u06f6\n5\u56de\u76ee\u306e\u53f0\u6e7e\uff01\uff01\n\u3082\u3046\u3001\u5916\u56fd\u3068\u3044\u3046\u611f\u3058\u306f\u306a\u304f\u6545\u90f7\u306e\u3088\u3046\u3067\u3059\u3002\u7b11\n\u307e\u305f\u884c\u304f\u3088\u301c\uff01\uff01 https:\/\/t.co\/LzwPLMCTbn","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259302981,"id_str":"259302981","name":"\u6960\u7530\u4e9c\u8863\u5948","screen_name":"kusudaaina","location":"\u305d\u3053\u3089\u3078\u3093","url":"http:\/\/ameblo.jp\/aina-heart0201\/","description":"\u304f\u3059\u304f\u3059\u304f\u3063\u3059\u3093\u2600\ufe0e \u30df\u30ea\u30aa\u30f3\u30c9\u30fc\u30eb \u3059\u3046\u5b50\u3002 \u306b\u3085\u308b\u306b\u3085\u308bKAKUSEN\u304f\u30932\u671f \u30cb\u30e5\u30eb\u308a\u3093\u3002 \u30d7\u30ea\u30d1\u30e9 \u5b9a\u5b50\u3002 \u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u6771\u689d\u5e0c\u3002 \u308d\u3093\u3050\u3089\u3044\u3060\u3041\u3059\uff01\u4f50\u4f2f\u7f8e\u5f25\u3002 GATE \u30c7\u30ea\u30e9\u3002 \u6c17\u5206\u4e0a\u7b49\u2191\u2191\u3002 \u4eca\u30c1\u30a7\u30ad \u2606\u30c7\u30d3\u30e5\u30fc\u30df\u30cb\u30a2\u30eb\u30d0\u30e0\u300eFirst Sweet Wave \u300f\u767a\u58f2\u4e2d\uff01\u2606","protected":false,"verified":false,"followers_count":282352,"friends_count":161,"listed_count":10743,"favourites_count":169,"statuses_count":11215,"created_at":"Tue Mar 01 15:50:08 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652090525948874754\/7VekcDvy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259302981\/1397144271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":213,"favorite_count":464,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726574005456896,"id_str":"663726574005456896","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","url":"https:\/\/t.co\/LzwPLMCTbn","display_url":"pic.twitter.com\/LzwPLMCTbn","expanded_url":"http:\/\/twitter.com\/kusudaaina\/status\/663726574294818816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726574005456896,"id_str":"663726574005456896","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","url":"https:\/\/t.co\/LzwPLMCTbn","display_url":"pic.twitter.com\/LzwPLMCTbn","expanded_url":"http:\/\/twitter.com\/kusudaaina\/status\/663726574294818816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kusudaaina","name":"\u6960\u7530\u4e9c\u8863\u5948","id":259302981,"id_str":"259302981","indices":[3,14]}],"symbols":[],"media":[{"id":663726574005456896,"id_str":"663726574005456896","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","url":"https:\/\/t.co\/LzwPLMCTbn","display_url":"pic.twitter.com\/LzwPLMCTbn","expanded_url":"http:\/\/twitter.com\/kusudaaina\/status\/663726574294818816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726574294818816,"source_status_id_str":"663726574294818816","source_user_id":259302981,"source_user_id_str":"259302981"}]},"extended_entities":{"media":[{"id":663726574005456896,"id_str":"663726574005456896","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzW-VEAAQsde.jpg","url":"https:\/\/t.co\/LzwPLMCTbn","display_url":"pic.twitter.com\/LzwPLMCTbn","expanded_url":"http:\/\/twitter.com\/kusudaaina\/status\/663726574294818816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726574294818816,"source_status_id_str":"663726574294818816","source_user_id":259302981,"source_user_id_str":"259302981"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025665"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390851584,"id_str":"663727850390851584","text":"omg may solo moira moment ako sa dulo ng piyesa #blessed\n\nthis one's for you @Mbearcades","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444394333,"id_str":"444394333","name":"Raya V","screen_name":"tRAYAl_anderror","location":null,"url":null,"description":"the poster girl for lost child syndrome","protected":false,"verified":false,"followers_count":514,"friends_count":472,"listed_count":3,"favourites_count":11269,"statuses_count":24848,"created_at":"Fri Dec 23 06:28:45 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574551269680898050\/qidtqC6b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574551269680898050\/qidtqC6b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444394333\/1425818778","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"blessed","indices":[48,56]}],"urls":[],"user_mentions":[{"screen_name":"Mbearcades","name":"Moira Bercades","id":43667913,"id_str":"43667913","indices":[77,88]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850411814912,"id_str":"663727850411814912","text":"Get Weather Updates from The Weather Channel. 09:40:25","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418879997,"id_str":"2418879997","name":"02655gnlc","screen_name":"02655gnlc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":115266,"created_at":"Sun Mar 30 11:34:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025662"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850420363264,"id_str":"663727850420363264","text":"RT @Nkuleko_Dhlomo: Abantu bafihle amehlo amahle kAnje @okmalumkoolkat #Usangkhumbula Music video #LikeYouEyesShame","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613840354,"id_str":"1613840354","name":"Isaiah Bi$hop","screen_name":"BBS_913","location":"Brooklyn, Queens and Albany","url":"https:\/\/soundcloud.com\/bbsglobal913\/01-king-bihop-prodkdn-carslovedaily","description":"DAD 1st.Musician 2nd Entrepreneur 3rd https:\/\/instagram.com\/____likebuttah https:\/\/www.facebook.com\/bishop1618 \nhttps:\/\/www.instagram.com\/bbs_913","protected":false,"verified":false,"followers_count":8995,"friends_count":4003,"listed_count":468,"favourites_count":64256,"statuses_count":63719,"created_at":"Mon Jul 22 22:57:19 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442608094334312448\/AtpPrJz9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442608094334312448\/AtpPrJz9.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656853239007064064\/cKtbcnw2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656853239007064064\/cKtbcnw2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613840354\/1442601912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:17 +0000 2015","id":663727564955996160,"id_str":"663727564955996160","text":"Abantu bafihle amehlo amahle kAnje @okmalumkoolkat #Usangkhumbula Music video #LikeYouEyesShame","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2884189019,"id_str":"2884189019","name":"IG:Nkululekoyenkosi","screen_name":"Nkuleko_Dhlomo","location":"Somewhere In The World","url":null,"description":"A Huge Fan Of Robert Blake......if you follow me I follow back.","protected":false,"verified":false,"followers_count":761,"friends_count":1349,"listed_count":0,"favourites_count":269,"statuses_count":790,"created_at":"Wed Nov 19 16:01:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659297600752001024\/SZZaZBa0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659297600752001024\/SZZaZBa0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2884189019\/1446298941","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Usangkhumbula","indices":[51,65]},{"text":"LikeYouEyesShame","indices":[78,95]}],"urls":[],"user_mentions":[{"screen_name":"okmalumkoolkat","name":"100kMaCassette","id":36047916,"id_str":"36047916","indices":[35,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Usangkhumbula","indices":[71,85]},{"text":"LikeYouEyesShame","indices":[98,115]}],"urls":[],"user_mentions":[{"screen_name":"Nkuleko_Dhlomo","name":"IG:Nkululekoyenkosi","id":2884189019,"id_str":"2884189019","indices":[3,18]},{"screen_name":"okmalumkoolkat","name":"100kMaCassette","id":36047916,"id_str":"36047916","indices":[55,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447080025664"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390949888,"id_str":"663727850390949888","text":"Why it's dangerous to dream in straight lines - GreenBiz https:\/\/t.co\/KFnxZI1q9C #Dream #AI","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3911719755,"id_str":"3911719755","name":"Sleep AI","screen_name":"BotDotSleep","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":0,"listed_count":14,"favourites_count":1,"statuses_count":2332,"created_at":"Fri Oct 09 19:50:32 +0000 2015","utc_offset":7200,"time_zone":"Vilnius","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652574327062327296\/Fow9ljVt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652574327062327296\/Fow9ljVt_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dream","indices":[81,87]},{"text":"AI","indices":[88,91]}],"urls":[{"url":"https:\/\/t.co\/KFnxZI1q9C","expanded_url":"http:\/\/news.google.com\/news\/url?sa=t&fd=R&ct2=us&usg=AFQjCNGK8u5QVnxVhhkbRtDn3S77pF9FBA&clid=c3a7d30bb8a4878e06b80cf16b898331&ei=WbBAVoD3As7N3QGKvLeACg&url=http:\/\/www.greenbiz.com\/article\/why-its-dangerous-dream-straight-lines","display_url":"news.google.com\/news\/url?sa=t&\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850416132096,"id_str":"663727850416132096","text":"@justinbieber @zanelowe @edsheeran","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663642287457501184,"in_reply_to_status_id_str":"663642287457501184","in_reply_to_user_id":27260086,"in_reply_to_user_id_str":"27260086","in_reply_to_screen_name":"justinbieber","user":{"id":458374428,"id_str":"458374428","name":"pedro","screen_name":"sunggoesdown","location":null,"url":"http:\/\/last.fm\/user\/sunggoesdown","description":null,"protected":false,"verified":false,"followers_count":306,"friends_count":298,"listed_count":4,"favourites_count":1219,"statuses_count":5170,"created_at":"Sun Jan 08 13:56:59 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097934077\/196a2a4361882d5c4d5e67dd20adff45.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097934077\/196a2a4361882d5c4d5e67dd20adff45.jpeg","profile_background_tile":false,"profile_link_color":"1C1C1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B6BBBD","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610206384865562625\/Dw1eS_YX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610206384865562625\/Dw1eS_YX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458374428\/1434319528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[0,13]},{"screen_name":"zanelowe","name":"Zane Lowe","id":21288052,"id_str":"21288052","indices":[14,23]},{"screen_name":"edsheeran","name":"Ed Sheeran","id":85452649,"id_str":"85452649","indices":[24,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080025663"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390859777,"id_str":"663727850390859777","text":"RT @JenJenisha: Never choose to leave \nEverything behind\nBecause life is an hourglass \nThat cannot rewind","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2366966000,"id_str":"2366966000","name":"Raman !","screen_name":"icanhaha","location":null,"url":null,"description":"Don't follow me, I am lost too.","protected":false,"verified":false,"followers_count":427,"friends_count":371,"listed_count":3,"favourites_count":8452,"statuses_count":2050,"created_at":"Sat Mar 01 11:52:27 +0000 2014","utc_offset":20700,"time_zone":"Kathmandu","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663299050779750400\/qWl85CO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663299050779750400\/qWl85CO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366966000\/1434984771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:03 +0000 2015","id":663726247642464257,"id_str":"663726247642464257","text":"Never choose to leave \nEverything behind\nBecause life is an hourglass \nThat cannot rewind","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2160653204,"id_str":"2160653204","name":"Zenisha\u2734","screen_name":"JenJenisha","location":"Kathmandu, Nepal","url":"http:\/\/www.writers-network.com\/index.cgi?m=1&do=work&who=53171&id=0","description":"When I tweet, I tweet to kill.\nFollow @PsychoCesc\n#Eighteen\n#ChelseaFC","protected":false,"verified":false,"followers_count":1752,"friends_count":411,"listed_count":7,"favourites_count":15980,"statuses_count":12759,"created_at":"Mon Oct 28 10:39:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C9D2D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586416072170975232\/0XPnWqfa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586416072170975232\/0XPnWqfa.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E19089","profile_text_color":"E1A8A2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663351875161292801\/lXvWJpdu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663351875161292801\/lXvWJpdu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2160653204\/1444917218","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JenJenisha","name":"Zenisha\u2734","id":2160653204,"id_str":"2160653204","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850428760064,"id_str":"663727850428760064","text":"@wcpojesse as I understand it, it only works on Web or mobile currently; the desktop apps don\u2019t have poll support.","source":"\u003ca href=\"http:\/\/tapbots.com\/software\/tweetbot\/mac\" rel=\"nofollow\"\u003eTweetbot for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727725492989957,"in_reply_to_status_id_str":"663727725492989957","in_reply_to_user_id":1242472536,"in_reply_to_user_id_str":"1242472536","in_reply_to_screen_name":"wcpojesse","user":{"id":1001802026,"id_str":"1001802026","name":"BeerQuest ABV","screen_name":"BeerQuestABV","location":"Questing for brew","url":"http:\/\/beerquestabv.com","description":"Your friendly neighborhood beer curmudgeon on a quest to find the best brews around. Written and maintained by @ianhoopes. Guest writers named when applicable.","protected":false,"verified":false,"followers_count":818,"friends_count":267,"listed_count":30,"favourites_count":3,"statuses_count":5588,"created_at":"Mon Dec 10 14:44:15 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3212772887\/1b589a8fedf991285284b56ed00b68d7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3212772887\/1b589a8fedf991285284b56ed00b68d7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1001802026\/1358540325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wcpojesse","name":"Jesse Folk","id":1242472536,"id_str":"1242472536","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025666"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399354880,"id_str":"663727850399354880","text":"I'm earning #mPLUSRewards in Moviefone. https:\/\/t.co\/Aw4JUkwsu3","source":"\u003ca href=\"http:\/\/www.mplusrewards.com\" rel=\"nofollow\"\u003emPLUS Rewards\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862146691,"id_str":"862146691","name":"Tom Marchetti","screen_name":"Tpmarchetti","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":3,"listed_count":0,"favourites_count":1,"statuses_count":3395,"created_at":"Thu Oct 04 22:37:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514547557465604096\/QBZke2hL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514547557465604096\/QBZke2hL_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mPLUSRewards","indices":[12,25]}],"urls":[{"url":"https:\/\/t.co\/Aw4JUkwsu3","expanded_url":"http:\/\/getm.pt\/bz5srg","display_url":"getm.pt\/bz5srg","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390859776,"id_str":"663727850390859776","text":"RT @asuna3636: \uc2e0\uc57c:\uc2dc\ubc1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244899822,"id_str":"3244899822","name":"(\ubc18\ub3d9\uacb0)PY","screen_name":"SoE_payo","location":"\uc874\uc798\ub2d8\ub4e4 \uc885\uc138 \ud68c\uc9c0 \ub0b4\uc8fc\uc138\uc694","url":null,"description":"FUB\uc790\uc720. \uc131\uc778. \uc2a4\ud3ec\/\uac1c\uc18c\ub9ac\uc8fc\uc758. \uc885\uc138..\uc544\ub2c8 \uc720\uc6b0\uc9f1 \ub355\ud6c4. \ub0b4\uac00 77\u3154\uc774\uac00 \ub41c\uac74 \uc720\uc6b0\uc9f1 \ub54c\ubb38\uc774\uc57c. \u2299\u25bd\u2299\uc720\uc6b0\uc9f1!!(\ubbf8\uce74\ube59\uc758) \/ silver bracelet master \uce6d\ud638 \ud68d\ub4dd","protected":false,"verified":false,"followers_count":35,"friends_count":34,"listed_count":0,"favourites_count":349,"statuses_count":2049,"created_at":"Sun Jun 14 08:10:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660797645011587072\/MGaiq_cJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660797645011587072\/MGaiq_cJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244899822\/1445099123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:48 +0000 2015","id":663727191331504128,"id_str":"663727191331504128","text":"\uc2e0\uc57c:\uc2dc\ubc1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877485418,"id_str":"2877485418","name":"\ud574\ubc29 -12h\ub810","screen_name":"asuna3636","location":null,"url":null,"description":"\uc885\ub9d0\uc758\uc138\ub77c\ud504\/\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\/(\ub9c8\ud788\ub8e8&\uad00\ub828\ucefe \uc2ec\ud55c\uc9c0\ub8b0)\/\uc554\uc0b4\uad50\uc2e4 \uce74\ub974\ub9c8\/\uce74\uaca6\/\uc54c\uc81cA\/Z \ub9de\ud314 \uc6d0\ud558\uc2e4\uacbd\uc6b0 \uba58\uc158\/\uc370\uacc4 @asuna6363","protected":false,"verified":false,"followers_count":215,"friends_count":439,"listed_count":3,"favourites_count":715,"statuses_count":10514,"created_at":"Sun Oct 26 00:30:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711076253433856\/0fOWpOT0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711076253433856\/0fOWpOT0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877485418\/1442329374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asuna3636","name":"\ud574\ubc29 -12h\ub810","id":2877485418,"id_str":"2877485418","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850395078656,"id_str":"663727850395078656","text":"@1ca_ \u305d\u308c\u306f\u5618\u3084\u308d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726113860943872,"in_reply_to_status_id_str":"663726113860943872","in_reply_to_user_id":742655472,"in_reply_to_user_id_str":"742655472","in_reply_to_screen_name":"1ca_","user":{"id":1588377451,"id_str":"1588377451","name":"\u725b\u4e73\u5c4b","screen_name":"dailyman0720","location":null,"url":null,"description":"\u666e\u901a\u306e\u4eba\u306a\u3093\u3067\u3059","protected":false,"verified":false,"followers_count":407,"friends_count":382,"listed_count":4,"favourites_count":1300,"statuses_count":31721,"created_at":"Fri Jul 12 12:16:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650860796344340480\/EP2JigX8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650860796344340480\/EP2JigX8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1588377451\/1419926778","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1ca_","name":"\u3044\u3063\u3061\u30fc","id":742655472,"id_str":"742655472","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025658"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407653376,"id_str":"663727850407653376","text":"RT @cheewitgusad: \u0e41\u0e01\u0e2b\u0e32\u0e22\u0e44\u0e1b\n\u0e40\u0e23\u0e32\u0e01\u0e47\u0e43\u0e08\u0e2b\u0e32\u0e22\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e31\u0e19\u0e19\u0e30\n\u0e17\u0e33\u0e44\u0e21\u0e2b\u0e32\u0e22\u0e44\u0e1b\u0e44\u0e2b\u0e19\u0e44\u0e21\u0e48\u0e1a\u0e2d\u0e01\u0e01\u0e31\u0e19\u0e01\u0e48\u0e2d\u0e19\n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":193210424,"id_str":"193210424","name":"p5e255s","screen_name":"patteera120141","location":null,"url":null,"description":"\u0e2a\u0e32\u0e22\u0e23\u0e47\u0e2d\u0e04","protected":false,"verified":false,"followers_count":73,"friends_count":209,"listed_count":2,"favourites_count":1042,"statuses_count":19913,"created_at":"Tue Sep 21 07:46:23 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726597434798080\/ZdKFEbM9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726597434798080\/ZdKFEbM9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/193210424\/1442494215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:14 +0000 2015","id":663719748497076225,"id_str":"663719748497076225","text":"\u0e41\u0e01\u0e2b\u0e32\u0e22\u0e44\u0e1b\n\u0e40\u0e23\u0e32\u0e01\u0e47\u0e43\u0e08\u0e2b\u0e32\u0e22\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e31\u0e19\u0e19\u0e30\n\u0e17\u0e33\u0e44\u0e21\u0e2b\u0e32\u0e22\u0e44\u0e1b\u0e44\u0e2b\u0e19\u0e44\u0e21\u0e48\u0e1a\u0e2d\u0e01\u0e01\u0e31\u0e19\u0e01\u0e48\u0e2d\u0e19\n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966125060,"id_str":"966125060","name":"\u221e","screen_name":"cheewitgusad","location":"contact for work DM pls ! \u2709\ufe0f.","url":null,"description":"\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e40\u0e25\u0e47\u0e01\u0e46\u0e02\u0e2d\u0e07\u0e04\u0e19\u0e0a\u0e2d\u0e1a\u0e40\u0e1e\u0e49\u0e2d\u0e40\u0e08\u0e49\u0e2d \u25e1\u0308","protected":false,"verified":false,"followers_count":845283,"friends_count":180,"listed_count":121,"favourites_count":8015,"statuses_count":18255,"created_at":"Fri Nov 23 13:29:59 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/861102507\/7fb7b0a580b6d80e8eef3fda27abb4ad.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/861102507\/7fb7b0a580b6d80e8eef3fda27abb4ad.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661850606538092544\/ZlGEhDe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661850606538092544\/ZlGEhDe5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966125060\/1445667434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1802,"favorite_count":256,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cheewitgusad","name":"\u221e","id":966125060,"id_str":"966125060","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850411786242,"id_str":"663727850411786242","text":"RT @WSHHFANS: How TF did she get a squirrel \ud83d\ude02\ud83d\udc80\ud83d\ude2d https:\/\/t.co\/4D4URlQYLn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1864248998,"id_str":"1864248998","name":"Anthony","screen_name":"Tonnyyy_G","location":"palm springs","url":null,"description":"living life","protected":false,"verified":false,"followers_count":377,"friends_count":308,"listed_count":0,"favourites_count":955,"statuses_count":3423,"created_at":"Sat Sep 14 15:58:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660987610702057472\/jhpHLAM__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660987610702057472\/jhpHLAM__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1864248998\/1442067062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:07 +0000 2015","id":663718462498463744,"id_str":"663718462498463744","text":"How TF did she get a squirrel \ud83d\ude02\ud83d\udc80\ud83d\ude2d https:\/\/t.co\/4D4URlQYLn","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370986902,"id_str":"1370986902","name":"WSHH FANS","screen_name":"WSHHFANS","location":"wshhfansbusiness@gmail.com","url":null,"description":"NOT Affiliated With @WORLDSTAR or Vine. We Do Not Own The Media That Is Posted, Parody . 18+ Content Instagram & Snapchat: WSHHFANS","protected":false,"verified":false,"followers_count":885686,"friends_count":147688,"listed_count":512,"favourites_count":0,"statuses_count":25711,"created_at":"Mon Apr 22 01:48:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370986902\/1444071563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":859,"favorite_count":926,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":611273905722896385,"id_str":"611273905722896385","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","url":"https:\/\/t.co\/4D4URlQYLn","display_url":"pic.twitter.com\/4D4URlQYLn","expanded_url":"http:\/\/twitter.com\/YarelinUreno\/status\/611274017782132736\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":611274017782132736,"source_status_id_str":"611274017782132736","source_user_id":375720548,"source_user_id_str":"375720548"}]},"extended_entities":{"media":[{"id":611273905722896385,"id_str":"611273905722896385","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","url":"https:\/\/t.co\/4D4URlQYLn","display_url":"pic.twitter.com\/4D4URlQYLn","expanded_url":"http:\/\/twitter.com\/YarelinUreno\/status\/611274017782132736\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":611274017782132736,"source_status_id_str":"611274017782132736","source_user_id":375720548,"source_user_id_str":"375720548","video_info":{"aspect_ratio":[9,16],"duration_millis":9973,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/180x320\/wHFn82U7ZXBMj1RA.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/360x640\/qPVWu3Zej5uvaQGf.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/360x640\/qPVWu3Zej5uvaQGf.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/pl\/q7kERK60lGEpPXhC.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/pl\/q7kERK60lGEpPXhC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WSHHFANS","name":"WSHH FANS","id":1370986902,"id_str":"1370986902","indices":[3,12]}],"symbols":[],"media":[{"id":611273905722896385,"id_str":"611273905722896385","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","url":"https:\/\/t.co\/4D4URlQYLn","display_url":"pic.twitter.com\/4D4URlQYLn","expanded_url":"http:\/\/twitter.com\/YarelinUreno\/status\/611274017782132736\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":611274017782132736,"source_status_id_str":"611274017782132736","source_user_id":375720548,"source_user_id_str":"375720548"}]},"extended_entities":{"media":[{"id":611273905722896385,"id_str":"611273905722896385","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/611273905722896385\/pu\/img\/PagS7zsza-8RA4Qk.jpg","url":"https:\/\/t.co\/4D4URlQYLn","display_url":"pic.twitter.com\/4D4URlQYLn","expanded_url":"http:\/\/twitter.com\/YarelinUreno\/status\/611274017782132736\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":611274017782132736,"source_status_id_str":"611274017782132736","source_user_id":375720548,"source_user_id_str":"375720548","video_info":{"aspect_ratio":[9,16],"duration_millis":9973,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/180x320\/wHFn82U7ZXBMj1RA.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/360x640\/qPVWu3Zej5uvaQGf.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/vid\/360x640\/qPVWu3Zej5uvaQGf.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/pl\/q7kERK60lGEpPXhC.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/611273905722896385\/pu\/pl\/q7kERK60lGEpPXhC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025662"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399248384,"id_str":"663727850399248384","text":"\u571f\u5c4b\u592a\u9cf3\u300c\u4e00\u756a\u4f1a\u3044\u305f\u3044\u4eba\u300d\u677e\u5ca1\u4fee\u9020\u3068\u5bfe\u9762\u3057\u30b9\u30de\u30a4\u30eb!! https:\/\/t.co\/I9c6Sjuh62","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558005383,"id_str":"558005383","name":"Synology","screen_name":"waterpokken","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":1,"listed_count":1,"favourites_count":0,"statuses_count":4897,"created_at":"Thu Apr 19 19:50:43 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2147517641\/1303478180_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2147517641\/1303478180_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I9c6Sjuh62","expanded_url":"http:\/\/bit.ly\/1HCxKXP","display_url":"bit.ly\/1HCxKXP","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407596032,"id_str":"663727850407596032","text":"RT @DEAR0412: @K_ssul0921 \uc548\ud574\ub3c4\ub41c\ub300\uc6a9 https:\/\/t.co\/sW5yTjB2AT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218147944,"id_str":"218147944","name":"\uc724\uc774","screen_name":"broccoli27","location":null,"url":null,"description":"\uc5d1\uc140\/20\ub300\ub355\ud6c4\/RT\ub9ce\uc774\ud568 \ub098\ub808\uae30\uc8fc\uc81c\uc5d0 \ud734\ud2b8\ub294 \ubb34\uc2a8...\uc778\uc7a5\uc740 \ub098\ub0a8\ub2d8 \uadf8\ub9bc","protected":false,"verified":false,"followers_count":86,"friends_count":277,"listed_count":0,"favourites_count":8928,"statuses_count":35642,"created_at":"Sun Nov 21 15:15:54 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657588851746017280\/Tdr0HHKA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657588851746017280\/Tdr0HHKA.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661558120477429760\/c5bcs7so_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661558120477429760\/c5bcs7so_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218147944\/1445616520","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:29 +0000 2015","id":663725601107251201,"id_str":"663725601107251201","text":"@K_ssul0921 \uc548\ud574\ub3c4\ub41c\ub300\uc6a9 https:\/\/t.co\/sW5yTjB2AT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3430284322,"in_reply_to_user_id_str":"3430284322","in_reply_to_screen_name":"K_ssul0921","user":{"id":3222103226,"id_str":"3222103226","name":"\uc5e0\ub137\uc744 \ubcf4\uba74 \uc9d6\ub294 \ub514\uc5b4","screen_name":"DEAR0412","location":null,"url":null,"description":"\uc778\uc7a5\uc740 \uc9d5\uace0\ub2d8\u2764 \uc804\ucc28\uc2a4 \ubc30\uc1a1\uc911","protected":false,"verified":false,"followers_count":366,"friends_count":303,"listed_count":0,"favourites_count":193,"statuses_count":4816,"created_at":"Thu May 21 08:30:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661919529480523776\/Cw03VxKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661919529480523776\/Cw03VxKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222103226\/1445867445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"K_ssul0921","name":"\uce98-\ub9ac","id":3430284322,"id_str":"3430284322","indices":[0,11]}],"symbols":[],"media":[{"id":663725582287441920,"id_str":"663725582287441920","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725582287441920,"id_str":"663725582287441920","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663725591875555328,"id_str":"663725591875555328","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6MQUEAA-is5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6MQUEAA-is5.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":213,"resize":"fit"},"small":{"w":340,"h":120,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":364,"resize":"fit"}}},{"id":663725593238761472,"id_str":"663725593238761472","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6RVU8AAEPGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6RVU8AAEPGt.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":760,"resize":"fit"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DEAR0412","name":"\uc5e0\ub137\uc744 \ubcf4\uba74 \uc9d6\ub294 \ub514\uc5b4","id":3222103226,"id_str":"3222103226","indices":[3,12]},{"screen_name":"K_ssul0921","name":"\uce98-\ub9ac","id":3430284322,"id_str":"3430284322","indices":[14,25]}],"symbols":[],"media":[{"id":663725582287441920,"id_str":"663725582287441920","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663725601107251201,"source_status_id_str":"663725601107251201","source_user_id":3222103226,"source_user_id_str":"3222103226"}]},"extended_entities":{"media":[{"id":663725582287441920,"id_str":"663725582287441920","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG5oiVEAAqkw_.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663725601107251201,"source_status_id_str":"663725601107251201","source_user_id":3222103226,"source_user_id_str":"3222103226"},{"id":663725591875555328,"id_str":"663725591875555328","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6MQUEAA-is5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6MQUEAA-is5.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":213,"resize":"fit"},"small":{"w":340,"h":120,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":364,"resize":"fit"}},"source_status_id":663725601107251201,"source_status_id_str":"663725601107251201","source_user_id":3222103226,"source_user_id_str":"3222103226"},{"id":663725593238761472,"id_str":"663725593238761472","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6RVU8AAEPGt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6RVU8AAEPGt.jpg","url":"https:\/\/t.co\/sW5yTjB2AT","display_url":"pic.twitter.com\/sW5yTjB2AT","expanded_url":"http:\/\/twitter.com\/DEAR0412\/status\/663725601107251201\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":760,"resize":"fit"},"medium":{"w":600,"h":445,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663725601107251201,"source_status_id_str":"663725601107251201","source_user_id":3222103226,"source_user_id_str":"3222103226"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850416041984,"id_str":"663727850416041984","text":"RT @npkulkarni833: @597c4e4314f9496 @gurukripa33 @pt_upendra SubramanianSwamy said - 'Asaram Bapu Ji's whole case is BOGUS' #2DaysFor_FlipS\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2500628936,"id_str":"2500628936","name":"|\u0917\u0941\u0930\u0941 \u0915\u0943\u092a\u093e|","screen_name":"gurukripa33","location":"Varanasi, Uttar Pradesh","url":null,"description":"Proud Follower of Sant Shri Asharam Bapuji.Believes in Seva.","protected":false,"verified":false,"followers_count":4727,"friends_count":2081,"listed_count":29,"favourites_count":24435,"statuses_count":140613,"created_at":"Sat May 17 04:56:51 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630975051945242624\/i0aLzTsN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630975051945242624\/i0aLzTsN.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663644066278543360\/J9k62uM-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663644066278543360\/J9k62uM-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2500628936\/1447060048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:19 +0000 2015","id":663724051420966912,"id_str":"663724051420966912","text":"@597c4e4314f9496 @gurukripa33 @pt_upendra SubramanianSwamy said - 'Asaram Bapu Ji's whole case is BOGUS' #2DaysFor_FlipSide","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663393103286419456,"in_reply_to_status_id_str":"663393103286419456","in_reply_to_user_id":3026116706,"in_reply_to_user_id_str":"3026116706","in_reply_to_screen_name":"597c4e4314f9496","user":{"id":2212494902,"id_str":"2212494902","name":"NP HARIOM","screen_name":"npkulkarni833","location":null,"url":null,"description":"PROUD TO BE SHISYA OF SHRI SHRI SANT ASHARAM BAPUJI. SANT SATAYE TINHO JAYE TEJ,BAL AUR VANSH AISE AISE KAI GAYE RAVAN,KAURAV AUR KANS. HARI OM BAPUJI HARI OM.","protected":false,"verified":false,"followers_count":577,"friends_count":140,"listed_count":8,"favourites_count":4961,"statuses_count":15221,"created_at":"Sun Nov 24 13:37:00 +0000 2013","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470495358938669056\/i_C1X_Xg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470495358938669056\/i_C1X_Xg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2212494902\/1401009845","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7929cea6bd5b32bd","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7929cea6bd5b32bd.json","place_type":"city","name":"Mumbai","full_name":"Mumbai, Maharashtra","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[72.745802,18.845343],[72.745802,19.502937],[73.003648,19.502937],[73.003648,18.845343]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"2DaysFor_FlipSide","indices":[105,123]}],"urls":[],"user_mentions":[{"screen_name":"597c4e4314f9496","name":"Rajesh Thakur","id":3026116706,"id_str":"3026116706","indices":[0,16]},{"screen_name":"gurukripa33","name":"|\u0917\u0941\u0930\u0941 \u0915\u0943\u092a\u093e|","id":2500628936,"id_str":"2500628936","indices":[17,29]},{"screen_name":"pt_upendra","name":"Upendra N Yadav","id":2249945226,"id_str":"2249945226","indices":[30,41]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2DaysFor_FlipSide","indices":[124,140]}],"urls":[],"user_mentions":[{"screen_name":"npkulkarni833","name":"NP HARIOM","id":2212494902,"id_str":"2212494902","indices":[3,17]},{"screen_name":"597c4e4314f9496","name":"Rajesh Thakur","id":3026116706,"id_str":"3026116706","indices":[19,35]},{"screen_name":"gurukripa33","name":"|\u0917\u0941\u0930\u0941 \u0915\u0943\u092a\u093e|","id":2500628936,"id_str":"2500628936","indices":[36,48]},{"screen_name":"pt_upendra","name":"Upendra N Yadav","id":2249945226,"id_str":"2249945226","indices":[49,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025663"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399207425,"id_str":"663727850399207425","text":"RT @InfoSalonew: Retweeted Lee Smith (@1chanceok):\n\n#Twittergoons https:\/\/t.co\/nr9NQIwTiv #1love @nine_oh @sweetnikole... https:\/\/t.co\/4A81\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":282008751,"id_str":"282008751","name":"Lee Smith","screen_name":"1chanceok","location":"Kansas CIty, MO","url":"http:\/\/www.ninepoint.us","description":"#TrillGang #cowboysnation #throwupthex #Rolltide FAN hate noisy ppl! Make me some Coconut Shrimp! #Twittergoons #BogardThat","protected":false,"verified":false,"followers_count":4996,"friends_count":5067,"listed_count":113,"favourites_count":178,"statuses_count":81071,"created_at":"Thu Apr 14 11:43:25 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000086601320\/aed8bcd93ae4defbaf6c0d1eed587a9e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000086601320\/aed8bcd93ae4defbaf6c0d1eed587a9e.jpeg","profile_background_tile":false,"profile_link_color":"5C1010","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639578815270813696\/ZevqLgz__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639578815270813696\/ZevqLgz__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282008751\/1440295145","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:27:42 +0000 2015","id":663618952086601728,"id_str":"663618952086601728","text":"Retweeted Lee Smith (@1chanceok):\n\n#Twittergoons https:\/\/t.co\/nr9NQIwTiv #1love @nine_oh @sweetnikole... https:\/\/t.co\/4A81rM1XaA","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1530307580,"id_str":"1530307580","name":"setmusic","screen_name":"InfoSalonew","location":"Berlin","url":null,"description":"Musikverlag + Musikproduktion + Projekte + salo + afromantic + PDMA K\u00fcnstler + Sylvia Johnson + Salo New https:\/\/www.facebook.com\/pages\/setmusic\/535702186491908","protected":false,"verified":false,"followers_count":10436,"friends_count":10490,"listed_count":38,"favourites_count":49,"statuses_count":15629,"created_at":"Wed Jun 19 09:28:00 +0000 2013","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"99820F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624321376720019457\/b50d0BYY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624321376720019457\/b50d0BYY.jpg","profile_background_tile":false,"profile_link_color":"E69D1E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459805150803017728\/UIXTriYM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459805150803017728\/UIXTriYM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1530307580\/1415236633","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"Twittergoons","indices":[35,48]},{"text":"1love","indices":[73,79]}],"urls":[{"url":"https:\/\/t.co\/nr9NQIwTiv","expanded_url":"http:\/\/www.theunder.us","display_url":"theunder.us","indices":[49,72]},{"url":"https:\/\/t.co\/4A81rM1XaA","expanded_url":"http:\/\/fb.me\/7MurI2CzO","display_url":"fb.me\/7MurI2CzO","indices":[105,128]}],"user_mentions":[{"screen_name":"1chanceok","name":"Lee Smith","id":282008751,"id_str":"282008751","indices":[21,31]},{"screen_name":"nine_oh","name":"Producer 9-0","id":81994188,"id_str":"81994188","indices":[80,88]},{"screen_name":"sweetnikole","name":"Nikole Miller","id":67467592,"id_str":"67467592","indices":[89,101]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twittergoons","indices":[52,65]},{"text":"1love","indices":[90,96]}],"urls":[{"url":"https:\/\/t.co\/nr9NQIwTiv","expanded_url":"http:\/\/www.theunder.us","display_url":"theunder.us","indices":[66,89]},{"url":"https:\/\/t.co\/4A81rM1XaA","expanded_url":"http:\/\/fb.me\/7MurI2CzO","display_url":"fb.me\/7MurI2CzO","indices":[122,140]}],"user_mentions":[{"screen_name":"InfoSalonew","name":"setmusic","id":1530307580,"id_str":"1530307580","indices":[3,15]},{"screen_name":"1chanceok","name":"Lee Smith","id":282008751,"id_str":"282008751","indices":[38,48]},{"screen_name":"nine_oh","name":"Producer 9-0","id":81994188,"id_str":"81994188","indices":[97,105]},{"screen_name":"sweetnikole","name":"Nikole Miller","id":67467592,"id_str":"67467592","indices":[106,118]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390814721,"id_str":"663727850390814721","text":"RT @suzusiro333: \u5e0c\u300c\u30ab\u30fc\u30c9\u304c\u30a6\u30c1\u306b\u305d\u3046\u544a\u3052\u308b\u3093\u3084\u2026\u300d https:\/\/t.co\/7vviHqbMGK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2731391287,"id_str":"2731391287","name":"\u305d\u3089\u308a","screen_name":"sorari8822","location":"\u5b9f\u5bb6 \u5317\u6d77\u9053\u7db2\u8d70\u5e02 \u73fe\u5728 \u65ed\u5ddd\u2192\u795e\u5948\u5ddd(\u4e45\u91cc\u6d5c)","url":null,"description":"\u306e\u305e\u30ad\u30c1\uff06\u862d\u5b50\uff06\u5b89\u4e2d\u3055\u3093love\u3067\u3059\uff01\u8da3\u5473 \u97f3\u697d\u8996\u8074 \u30ab\u30e9\u30aa\u30b1 \u306e\u305e\u307f\u862d\u5b50\u3092\u773a\u3081\u308b\u4e8b \u5b89\u4e2d\u3055\u3093\u3092\u63cf\u304f\u3053\u3068 \u30c7\u30ec\u30b9\u30c6\uff01\u7279\u6280\u306f\u2026\u30c8\u30ed\u30f3\u30dc\u30fc\u30f3\u3068\u30c8\u30e9\u30f3\u30da\u30c3\u30c8\u2026\u591a\u5206\u2026\u3002 (ver.19.02)","protected":false,"verified":false,"followers_count":1479,"friends_count":2034,"listed_count":12,"favourites_count":3637,"statuses_count":3883,"created_at":"Thu Aug 14 10:09:18 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9FF4DC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499874979467362304\/WCS-yEQ_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499874979467362304\/WCS-yEQ_.jpeg","profile_background_tile":false,"profile_link_color":"00A388","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364788773220352\/ok6kfxSI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364788773220352\/ok6kfxSI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2731391287\/1440253092","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:40 +0000 2015","id":663727409045237761,"id_str":"663727409045237761","text":"\u5e0c\u300c\u30ab\u30fc\u30c9\u304c\u30a6\u30c1\u306b\u305d\u3046\u544a\u3052\u308b\u3093\u3084\u2026\u300d https:\/\/t.co\/7vviHqbMGK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953746566,"id_str":"2953746566","name":"\u3059\u305a\u3057\u308d","screen_name":"suzusiro333","location":"\u6c96\u7e04","url":"http:\/\/pixiv.me\/suzushiro333","description":"\u5e38\u306b\u7720\u3044","protected":false,"verified":false,"followers_count":4143,"friends_count":837,"listed_count":104,"favourites_count":706,"statuses_count":2228,"created_at":"Wed Dec 31 15:13:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624977886819123200\/1jRAk0d__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624977886819123200\/1jRAk0d__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953746566\/1437841732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727384483381248,"id_str":"663727384483381248","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","url":"https:\/\/t.co\/7vviHqbMGK","display_url":"pic.twitter.com\/7vviHqbMGK","expanded_url":"http:\/\/twitter.com\/suzusiro333\/status\/663727409045237761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":1024,"h":958,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727384483381248,"id_str":"663727384483381248","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","url":"https:\/\/t.co\/7vviHqbMGK","display_url":"pic.twitter.com\/7vviHqbMGK","expanded_url":"http:\/\/twitter.com\/suzusiro333\/status\/663727409045237761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":1024,"h":958,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suzusiro333","name":"\u3059\u305a\u3057\u308d","id":2953746566,"id_str":"2953746566","indices":[3,15]}],"symbols":[],"media":[{"id":663727384483381248,"id_str":"663727384483381248","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","url":"https:\/\/t.co\/7vviHqbMGK","display_url":"pic.twitter.com\/7vviHqbMGK","expanded_url":"http:\/\/twitter.com\/suzusiro333\/status\/663727409045237761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":1024,"h":958,"resize":"fit"}},"source_status_id":663727409045237761,"source_status_id_str":"663727409045237761","source_user_id":2953746566,"source_user_id_str":"2953746566"}]},"extended_entities":{"media":[{"id":663727384483381248,"id_str":"663727384483381248","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIiiPUwAAxhHW.jpg","url":"https:\/\/t.co\/7vviHqbMGK","display_url":"pic.twitter.com\/7vviHqbMGK","expanded_url":"http:\/\/twitter.com\/suzusiro333\/status\/663727409045237761\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":1024,"h":958,"resize":"fit"}},"source_status_id":663727409045237761,"source_status_id_str":"663727409045237761","source_user_id":2953746566,"source_user_id_str":"2953746566"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850416152577,"id_str":"663727850416152577","text":"(\u0648\u0643\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u062a\u0633\u0639\u0629 \u0631\u0647\u0637 \u064a\u0641\u0633\u062f\u0648\u0646 \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \u0648\u0644\u0627 \u064a\u0635\u0644\u062d\u0648\u0646) [\u0627\u0644\u0646\u0645\u0644:48] http:\/\/qurani .tv","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2365448890,"id_str":"2365448890","name":"\u0644\u0623\u062c\u0644\u0643 \u0623\u0645\u0627\u0646\u064a \u2661.","screen_name":"19For_Amani","location":"@Ljl_alw3d","url":null,"description":"\u0627\u0644\u062d\u0628 \u062f\u0639\u0622\u0621 \u0648\u0644\u0623\u0646\u064a \u0623\u062d\u0628\u0643 \u0648\u0623\u0631\u064a\u062f \u0645\u062b\u0648\u0627\u0643 \u0627\u0644\u062c\u0646\u0647 \u062c\u0639\u0644\u062a \u0647\u0630\u0627 \u0627\u0644\u062d\u0633\u0622\u0628 \u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0644\u0643 \u0641\u064a \u062d\u064a\u0627\u062a\u0643 \u0648\u0628\u0639\u062f \u0645\u0645\u0627\u062a\u0643 \u2661\u2661","protected":false,"verified":false,"followers_count":4,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":8983,"created_at":"Tue Feb 25 18:50:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438390701739757568\/ouWhjUsi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438390701739757568\/ouWhjUsi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365448890\/1393356059","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080025663"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850390876160,"id_str":"663727850390876160","text":"RT @JamilSays: How I feel tryna get up on a Monday morning http:\/\/t.co\/RTrNJEQNgt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264571277,"id_str":"264571277","name":"Tyshawnp","screen_name":"Fatta___","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1287,"friends_count":799,"listed_count":2,"favourites_count":96,"statuses_count":25047,"created_at":"Sat Mar 12 03:35:16 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663520856098803712\/o-FJnVYz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663520856098803712\/o-FJnVYz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 08 05:23:57 +0000 2015","id":641119762525720576,"id_str":"641119762525720576","text":"How I feel tryna get up on a Monday morning http:\/\/t.co\/RTrNJEQNgt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":498585237,"id_str":"498585237","name":"Jamil | OMKS","screen_name":"JamilSays","location":null,"url":null,"description":"#BlackLivesMatter | #OMKS | Designer | Peep @Jxmiil","protected":false,"verified":false,"followers_count":10432,"friends_count":2978,"listed_count":3,"favourites_count":5653,"statuses_count":1645,"created_at":"Tue Feb 21 06:25:42 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593303167976153088\/614lz1im.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593303167976153088\/614lz1im.jpg","profile_background_tile":false,"profile_link_color":"0B0B3B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663374385688932352\/FNmh_K8o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663374385688932352\/FNmh_K8o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/498585237\/1447044213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3571,"favorite_count":2152,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":640644462255865856,"id_str":"640644462255865856","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","url":"http:\/\/t.co\/RTrNJEQNgt","display_url":"pic.twitter.com\/RTrNJEQNgt","expanded_url":"http:\/\/twitter.com\/Lifematician\/status\/640644624135114753\/video\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":640644624135114753,"source_status_id_str":"640644624135114753","source_user_id":1109106552,"source_user_id_str":"1109106552"}]},"extended_entities":{"media":[{"id":640644462255865856,"id_str":"640644462255865856","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","url":"http:\/\/t.co\/RTrNJEQNgt","display_url":"pic.twitter.com\/RTrNJEQNgt","expanded_url":"http:\/\/twitter.com\/Lifematician\/status\/640644624135114753\/video\/1","type":"video","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":640644624135114753,"source_status_id_str":"640644624135114753","source_user_id":1109106552,"source_user_id_str":"1109106552","video_info":{"aspect_ratio":[4,3],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/pl\/43OCRRN0mLKTNWe_.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/pl\/43OCRRN0mLKTNWe_.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/vid\/240x180\/1bIJybjPRcqh0LPa.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/vid\/240x180\/1bIJybjPRcqh0LPa.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JamilSays","name":"Jamil | OMKS","id":498585237,"id_str":"498585237","indices":[3,13]}],"symbols":[],"media":[{"id":640644462255865856,"id_str":"640644462255865856","indices":[59,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","url":"http:\/\/t.co\/RTrNJEQNgt","display_url":"pic.twitter.com\/RTrNJEQNgt","expanded_url":"http:\/\/twitter.com\/Lifematician\/status\/640644624135114753\/video\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":640644624135114753,"source_status_id_str":"640644624135114753","source_user_id":1109106552,"source_user_id_str":"1109106552"}]},"extended_entities":{"media":[{"id":640644462255865856,"id_str":"640644462255865856","indices":[59,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640644462255865856\/pu\/img\/GjKRuPTTDFq6fASi.jpg","url":"http:\/\/t.co\/RTrNJEQNgt","display_url":"pic.twitter.com\/RTrNJEQNgt","expanded_url":"http:\/\/twitter.com\/Lifematician\/status\/640644624135114753\/video\/1","type":"video","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}},"source_status_id":640644624135114753,"source_status_id_str":"640644624135114753","source_user_id":1109106552,"source_user_id_str":"1109106552","video_info":{"aspect_ratio":[4,3],"duration_millis":30000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/pl\/43OCRRN0mLKTNWe_.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/pl\/43OCRRN0mLKTNWe_.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/vid\/240x180\/1bIJybjPRcqh0LPa.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/640644462255865856\/pu\/vid\/240x180\/1bIJybjPRcqh0LPa.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025657"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850428624897,"id_str":"663727850428624897","text":"RT @gnohh_: \u0e41\u0e21\u0e48\u0e07\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e40\u0e21\u0e19\u0e40\u0e17\u0e2d\u0e23\u0e4c\u0e01\u0e47\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e35\u0e49\u0e41\u0e2b\u0e25\u0e30 \u0e2a\u0e15\u0e23\u0e2d\u0e07\u0e27\u0e4c55555555555555555555555555555555555555555555555 #TheFaceThailandseason2 https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2468767188,"id_str":"2468767188","name":"\u3006\u0e1b\u0e34\u0e01\u0e32\u0e08\u0e39","screen_name":"jipxl","location":null,"url":null,"description":"\u21afBIGBANGEXO\u21af \u0e2d\u0e0b.\u0e1d\u0e31\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07\u0e41\u0e25\u0e49\u0e27\u0e19\u0e30 [151108]","protected":false,"verified":false,"followers_count":142,"friends_count":542,"listed_count":0,"favourites_count":887,"statuses_count":45268,"created_at":"Tue Apr 29 05:15:36 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594464776471728129\/FvVvV7mb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594464776471728129\/FvVvV7mb.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658579329568235520\/08wEJQqA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658579329568235520\/08wEJQqA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2468767188\/1445844849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:35 +0000 2015","id":663721851009437696,"id_str":"663721851009437696","text":"\u0e41\u0e21\u0e48\u0e07\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e40\u0e21\u0e19\u0e40\u0e17\u0e2d\u0e23\u0e4c\u0e01\u0e47\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e35\u0e49\u0e41\u0e2b\u0e25\u0e30 \u0e2a\u0e15\u0e23\u0e2d\u0e07\u0e27\u0e4c55555555555555555555555555555555555555555555555 #TheFaceThailandseason2 https:\/\/t.co\/HStcnYe15f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426494384,"id_str":"426494384","name":"Huang Feihong","screen_name":"gnohh_","location":"\u0e41\u0e1a\u0e1a\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e01\u0e32\u0e23\u0e2a\u0e31\u0e48\u0e07\u0e0b\u0e37\u0e49\u0e2d\u0e2b\u0e21\u0e2d\u0e19\u0e01\u0e31\u0e0b\u0e2e\u0e31\u0e1a","url":"https:\/\/docs.google.com\/forms\/d\/14_wbrd4Qh77YxVnHOUjPOPUJvOCsXGjij37kJ510u9k\/viewform","description":"follow me free wi-fi | @KATYTMS","protected":false,"verified":false,"followers_count":5361,"friends_count":240,"listed_count":4,"favourites_count":1913,"statuses_count":155989,"created_at":"Fri Dec 02 09:26:45 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/485637683662712832\/OpoEOHF9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/485637683662712832\/OpoEOHF9.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F4AD6F","profile_text_color":"785A42","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663339229808754688\/JWccaKW-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663339229808754688\/JWccaKW-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426494384\/1446358899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":251,"favorite_count":5,"entities":{"hashtags":[{"text":"TheFaceThailandseason2","indices":[92,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721783569178628,"id_str":"663721783569178628","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","url":"https:\/\/t.co\/HStcnYe15f","display_url":"pic.twitter.com\/HStcnYe15f","expanded_url":"http:\/\/twitter.com\/gnohh_\/status\/663721851009437696\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721783569178628,"id_str":"663721783569178628","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","url":"https:\/\/t.co\/HStcnYe15f","display_url":"pic.twitter.com\/HStcnYe15f","expanded_url":"http:\/\/twitter.com\/gnohh_\/status\/663721851009437696\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TheFaceThailandseason2","indices":[104,127]}],"urls":[],"user_mentions":[{"screen_name":"gnohh_","name":"Huang Feihong","id":426494384,"id_str":"426494384","indices":[3,10]}],"symbols":[],"media":[{"id":663721783569178628,"id_str":"663721783569178628","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","url":"https:\/\/t.co\/HStcnYe15f","display_url":"pic.twitter.com\/HStcnYe15f","expanded_url":"http:\/\/twitter.com\/gnohh_\/status\/663721851009437696\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663721851009437696,"source_status_id_str":"663721851009437696","source_user_id":426494384,"source_user_id_str":"426494384"}]},"extended_entities":{"media":[{"id":663721783569178628,"id_str":"663721783569178628","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDchNUYAQAK-v.jpg","url":"https:\/\/t.co\/HStcnYe15f","display_url":"pic.twitter.com\/HStcnYe15f","expanded_url":"http:\/\/twitter.com\/gnohh_\/status\/663721851009437696\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663721851009437696,"source_status_id_str":"663721851009437696","source_user_id":426494384,"source_user_id_str":"426494384"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080025666"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424557568,"id_str":"663727850424557568","text":"@bankofengland that's fantastic. Really helpful many thanks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726149470695424,"in_reply_to_status_id_str":"663726149470695424","in_reply_to_user_id":18938646,"in_reply_to_user_id_str":"18938646","in_reply_to_screen_name":"bankofengland","user":{"id":319166999,"id_str":"319166999","name":"Donna Cross","screen_name":"drachenberggsd","location":"coalville, leicestershire, uk","url":"http:\/\/drachenberg.co.uk","description":"\u262eWho in the world am I? Ah, that's the great puzzle\u262eHistory Lover\u262eInjustice Hater\u262eCriminology Social Policy BSC at Loughborough Uni\u262e","protected":false,"verified":false,"followers_count":628,"friends_count":2026,"listed_count":29,"favourites_count":1698,"statuses_count":5724,"created_at":"Fri Jun 17 17:26:11 +0000 2011","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660055099423764480\/xJAEgwoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660055099423764480\/xJAEgwoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319166999\/1446204373","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bankofengland","name":"Bank of England","id":18938646,"id_str":"18938646","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080025665"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424434688,"id_str":"663727850424434688","text":"RT @nattaboat: \u0e04\u0e19\u0e17\u0e35\u0e48\u0e1f\u0e31\u0e07\u0e41\u0e15\u0e48\u0e40\u0e1e\u0e25\u0e07\u0e40\u0e28\u0e23\u0e49\u0e32 \u0e46 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e23\u0e48\u0e32\u0e07\u0e01\u0e32\u0e22\u0e21\u0e36\u0e07\u0e2d\u0e22\u0e32\u0e01\u0e1b\u0e30\u0e17\u0e30\u0e01\u0e31\u0e1a\u0e40\u0e2b\u0e25\u0e49\u0e32\u0e43\u0e0a\u0e48\u0e21\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3627550830,"id_str":"3627550830","name":"MI EW","screen_name":"tw_chanya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":99,"friends_count":328,"listed_count":0,"favourites_count":47,"statuses_count":1124,"created_at":"Sun Sep 20 14:19:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660739011858731009\/MVf5Z_9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660739011858731009\/MVf5Z_9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3627550830\/1442768280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:22:55 +0000 2015","id":663678148869881856,"id_str":"663678148869881856","text":"\u0e04\u0e19\u0e17\u0e35\u0e48\u0e1f\u0e31\u0e07\u0e41\u0e15\u0e48\u0e40\u0e1e\u0e25\u0e07\u0e40\u0e28\u0e23\u0e49\u0e32 \u0e46 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e23\u0e48\u0e32\u0e07\u0e01\u0e32\u0e22\u0e21\u0e36\u0e07\u0e2d\u0e22\u0e32\u0e01\u0e1b\u0e30\u0e17\u0e30\u0e01\u0e31\u0e1a\u0e40\u0e2b\u0e25\u0e49\u0e32\u0e43\u0e0a\u0e48\u0e21\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76890925,"id_str":"76890925","name":"\u0e19\u0e31\u0e14\u0e17\u0e30\u0e42\u0e1a\u0e4a\u0e17 \u0e40\u0e09\u0e35\u0e22\u0e1a\u0e02\u0e32\u0e14","screen_name":"nattaboat","location":"Bangkok , Phichit","url":"https:\/\/www.facebook.com\/boatfc","description":"IG : nattaboat | \u0e0a\u0e2d\u0e1a\u0e41\u0e14\u0e01\u0e40\u0e1a\u0e35\u0e22\u0e23\u0e4c | \u0e42\u0e2a\u0e14 | SSRU 53 | Advertising CA 25 | \u0e08\u0e19\u0e21\u0e32\u0e01 | \u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e32\u0e22\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e46 | \u0e2b\u0e37\u0e48\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e25\u0e07\u0e15\u0e31\u0e27 | \u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e42\u0e23\u0e41\u0e21\u0e19\u0e15\u0e34\u0e01 \u0e15\u0e2d\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e40\u0e15\u0e35\u0e22\u0e07 | \u0e15\u0e34\u0e14\u0e15\u0e48\u0e2d\u0e07\u0e32\u0e19 DM |","protected":false,"verified":false,"followers_count":316487,"friends_count":864,"listed_count":63,"favourites_count":7855,"statuses_count":181542,"created_at":"Thu Sep 24 08:26:39 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609665084634181632\/uTNhY8u3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609665084634181632\/uTNhY8u3.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6EAAE","profile_text_color":"FFA3A8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661799199613173760\/CAUHrrYU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661799199613173760\/CAUHrrYU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76890925\/1446632120","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1851,"favorite_count":235,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nattaboat","name":"\u0e19\u0e31\u0e14\u0e17\u0e30\u0e42\u0e1a\u0e4a\u0e17 \u0e40\u0e09\u0e35\u0e22\u0e1a\u0e02\u0e32\u0e14","id":76890925,"id_str":"76890925","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080025665"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407641089,"id_str":"663727850407641089","text":"RT @Erlianaa_: Lagi mangkel malah sek bm memengi kabeh:|","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225108530,"id_str":"3225108530","name":"Jod!!","screen_name":"stywn_","location":"Mandala Krida PSIM","url":null,"description":"*nggggggg | Sastro Pingal| Tribun Selatan","protected":false,"verified":false,"followers_count":191,"friends_count":132,"listed_count":0,"favourites_count":4,"statuses_count":7258,"created_at":"Sun May 24 10:52:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663676510474113025\/kiWE_j_v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663676510474113025\/kiWE_j_v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225108530\/1447067680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:50 +0000 2015","id":663727199673954304,"id_str":"663727199673954304","text":"Lagi mangkel malah sek bm memengi kabeh:|","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":588072022,"id_str":"588072022","name":"Erliana Damayanti","screen_name":"Erlianaa_","location":"Daerah Istimewa Yogyakarta","url":null,"description":"Revonza'15-SMEA6YK","protected":false,"verified":false,"followers_count":1411,"friends_count":737,"listed_count":0,"favourites_count":0,"statuses_count":44212,"created_at":"Wed May 23 06:47:22 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000101376217\/9125dc23210efd0d396fe9e88a7e7969.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000101376217\/9125dc23210efd0d396fe9e88a7e7969.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659190942453264384\/JWcvucOo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659190942453264384\/JWcvucOo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588072022\/1445653995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"c4397d8c10325af5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c4397d8c10325af5.json","place_type":"city","name":"Kasihan","full_name":"Kasihan, Yogyakarta","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[110.280837,-7.861376],[110.280837,-7.768102],[110.352836,-7.768102],[110.352836,-7.861376]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Erlianaa_","name":"Erliana Damayanti","id":588072022,"id_str":"588072022","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080025661"} +{"delete":{"status":{"id":534706068136275968,"id_str":"534706068136275968","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080025813"}} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850407657472,"id_str":"663727850407657472","text":"@asfi11 \u8a31\u53ef\u3092\u3044\u305f\u3060\u3044\u305f\u306e\u3067\u8a00\u3044\u307e\u3059\nhysbr\u7814\u304c\u3042\u3059\u3075\u3043\u30fc\u3055\u3093\u3092\u7b46\u982d\u306b\u30db\u30e2\u304c\u591a\u3044\u3068\u306e\u3053\u3068\u3067\u3059by\u3057\u307e\u3080\u30fc\u5148\u8f29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723017596370945,"in_reply_to_status_id_str":"663723017596370945","in_reply_to_user_id":227949423,"in_reply_to_user_id_str":"227949423","in_reply_to_screen_name":"asfi11","user":{"id":2258435322,"id_str":"2258435322","name":"Akira(\u30b4\u30f3\u30b6\u30ec\u30b9)","screen_name":"copycat623","location":"\u307f\u3093\u306a\u306e\u5fc3\u306e\u4e2d","url":null,"description":"\u5909\u614b\u3067\u3059\u3002\u30b4\u30f3\u30b6\u30ec\u30b9\u5c02\u9580\u7d75\u63cf\u304d\u57a2\u2192@2525gonzales LOL\u306eSN\uff1acopycat18\u3069\u3059 \u57fa\u672c\u7684\u306b\u3069\u3046\u3067\u3082\u3044\u3044\u4e8b\u3057\u304b\u8a00\u308f\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":167,"friends_count":168,"listed_count":3,"favourites_count":1432,"statuses_count":8199,"created_at":"Mon Dec 23 04:05:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655298666253545472\/URXotZNP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655298666253545472\/URXotZNP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258435322\/1430758024","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asfi11","name":"\u30a2\u30b9\u30d5\u30a3\u30fc@SweetsMagic","id":227949423,"id_str":"227949423","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025661"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850399232000,"id_str":"663727850399232000","text":"\u3068\u306a\u308a\u306b\u4f55\u6c17\u306a\u304f\u3061\u3087\u3053\u3093\u3068\u5ea7\u3063\u3066\u304d\u305f\u308a\u9ed9\u3063\u3066\u3042\u3068\u3064\u3044\u3066\u304d\u305f\u308a\u3068\u304b\u305d\u30fc\u3086\u30fc\u306e\u597d\u304d\ud83d\ude03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899241366,"id_str":"2899241366","name":"\u656c\u6597","screen_name":"keito0802soccer","location":"\u5909\u308f\u308b\u81ea\u5206\u306e\u9053\u3002\u767a\u5c55\u9014\u4e0a","url":null,"description":"ogawanorth\u2192isiokacommerce\u26bdsoccer\u26bd \u7518\u515a\u8eab\u9577\u5927\u304d\u3081\u7537\u5b50\/\u5168\u56fd\u7537\u5b50\u9ad8\u6821\u751f\u30df\u30b9\u30bf\u30fc\u30b3\u30f3\/\u95a2\u6771\u9ad81\u30df\u30b9\u30bf\u30fc\u30b3\u30f3\/follow\u6c17\u3065\u304b\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u306e\u3067\u30ea\u30d7\u4e0b\u3055\u3044","protected":false,"verified":false,"followers_count":558,"friends_count":362,"listed_count":1,"favourites_count":1778,"statuses_count":4507,"created_at":"Fri Nov 14 10:16:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708985288101889\/fzQu6xxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708985288101889\/fzQu6xxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899241366\/1444709488","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080025659"} +{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727850424414208,"id_str":"663727850424414208","text":"Hier sieht man sch\u00f6n unseren Stand auf der #WRC15 - im Hintergrund das ITU-Hochhaus. #Katastrophenschutz #Notfunk https:\/\/t.co\/KscuZjVeBR","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805275614,"id_str":"2805275614","name":"Notfunk Deutschland","screen_name":"Notfunk_DL","location":"Deutschland","url":"http:\/\/www.notfunk-deutschland.de","description":"Notfunk Deutschland - die Organisation zur Unterst\u00fctzung der BOS im Katastrophenfall in Deutschland. Wenn alle Kommunikation versagt, kommen wir ins Spiel!","protected":false,"verified":false,"followers_count":37,"friends_count":7,"listed_count":8,"favourites_count":2,"statuses_count":47,"created_at":"Sat Oct 04 15:00:26 +0000 2014","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF6600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518416601817698304\/DuctL8-h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518416601817698304\/DuctL8-h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805275614\/1420544953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WRC15","indices":[43,49]},{"text":"Katastrophenschutz","indices":[85,104]},{"text":"Notfunk","indices":[105,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727402162483200,"id_str":"663727402162483200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjkGWcAAQC8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjkGWcAAQC8c.jpg","url":"https:\/\/t.co\/KscuZjVeBR","display_url":"pic.twitter.com\/KscuZjVeBR","expanded_url":"http:\/\/twitter.com\/Notfunk_DL\/status\/663727850424414208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727402162483200,"id_str":"663727402162483200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjkGWcAAQC8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjkGWcAAQC8c.jpg","url":"https:\/\/t.co\/KscuZjVeBR","display_url":"pic.twitter.com\/KscuZjVeBR","expanded_url":"http:\/\/twitter.com\/Notfunk_DL\/status\/663727850424414208\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080025665"} +{"delete":{"status":{"id":656553845741518849,"id_str":"656553845741518849","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080026401"}} +{"delete":{"status":{"id":656171077752791040,"id_str":"656171077752791040","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080026405"}} +{"delete":{"status":{"id":629517190169899008,"id_str":"629517190169899008","user_id":558886336,"user_id_str":"558886336"},"timestamp_ms":"1447080026448"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585298945,"id_str":"663727854585298945","text":"RT @VineVideosEs: Paranoia https:\/\/t.co\/ViYPo7PTBK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233972141,"id_str":"3233972141","name":"Luis Ovejero","screen_name":"LuisoOvejero","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":26,"listed_count":0,"favourites_count":13,"statuses_count":514,"created_at":"Mon May 04 18:25:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595296743446687745\/Mi9juvm0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595296743446687745\/Mi9juvm0_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:10:48 +0000 2015","id":663659998904500224,"id_str":"663659998904500224","text":"Paranoia https:\/\/t.co\/ViYPo7PTBK","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":568723185,"id_str":"568723185","name":"Vine","screen_name":"VineVideosEs","location":null,"url":null,"description":"Lo mejor de Vine. Te reir\u00e1s mucho. Cuenta no apta para cardiacos! Contacto: isagonzab91@gmail.com","protected":false,"verified":false,"followers_count":513368,"friends_count":19504,"listed_count":648,"favourites_count":1264,"statuses_count":6052,"created_at":"Tue May 01 23:58:20 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114810896\/6722ee7fc50109655782ef9fa3724829.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114810896\/6722ee7fc50109655782ef9fa3724829.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484678303131783168\/703_35E1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484678303131783168\/703_35E1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/568723185\/1404509179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":127,"favorite_count":104,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ViYPo7PTBK","expanded_url":"https:\/\/vine.co\/v\/eYnL1rii9IM","display_url":"vine.co\/v\/eYnL1rii9IM","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ViYPo7PTBK","expanded_url":"https:\/\/vine.co\/v\/eYnL1rii9IM","display_url":"vine.co\/v\/eYnL1rii9IM","indices":[27,50]}],"user_mentions":[{"screen_name":"VineVideosEs","name":"Vine","id":568723185,"id_str":"568723185","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080026657"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610460679,"id_str":"663727854610460679","text":"RT @iinovagarcia: 10 A\u00d1OS AL MANDO DEL SVBVRBIO!! https:\/\/t.co\/YkaRJVrZht","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263716167,"id_str":"263716167","name":"TriBicamp3-0nes","screen_name":"ottoel10","location":"No se donde estoy","url":null,"description":"Amor Eterno por el Emelec.. Un 10 en la cancha, Futuro Pap\u00e1 \u2661","protected":false,"verified":false,"followers_count":850,"friends_count":2010,"listed_count":1,"favourites_count":110,"statuses_count":11336,"created_at":"Thu Mar 10 16:07:42 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641758539183181824\/BLvzH-q3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641758539183181824\/BLvzH-q3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263716167\/1445405220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:23 +0000 2015","id":663727336395796480,"id_str":"663727336395796480","text":"10 A\u00d1OS AL MANDO DEL SVBVRBIO!! https:\/\/t.co\/YkaRJVrZht","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277200904,"id_str":"277200904","name":"InovaGabriela\u2661","screen_name":"iinovagarcia","location":"Guayas, Ecuador","url":null,"description":"BATALLONAZVL\nCLUB SP\u26bdRT EMELEC\n#DiosFortalezeMiVida","protected":false,"verified":false,"followers_count":542,"friends_count":1143,"listed_count":2,"favourites_count":2508,"statuses_count":10626,"created_at":"Mon Apr 04 22:15:20 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662687165600632836\/uv8Pe0rI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662687165600632836\/uv8Pe0rI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277200904\/1446572901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727334432854016,"id_str":"663727334432854016","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","url":"https:\/\/t.co\/YkaRJVrZht","display_url":"pic.twitter.com\/YkaRJVrZht","expanded_url":"http:\/\/twitter.com\/iinovagarcia\/status\/663727336395796480\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727334432854016,"id_str":"663727334432854016","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","url":"https:\/\/t.co\/YkaRJVrZht","display_url":"pic.twitter.com\/YkaRJVrZht","expanded_url":"http:\/\/twitter.com\/iinovagarcia\/status\/663727336395796480\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iinovagarcia","name":"InovaGabriela\u2661","id":277200904,"id_str":"277200904","indices":[3,16]}],"symbols":[],"media":[{"id":663727334432854016,"id_str":"663727334432854016","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","url":"https:\/\/t.co\/YkaRJVrZht","display_url":"pic.twitter.com\/YkaRJVrZht","expanded_url":"http:\/\/twitter.com\/iinovagarcia\/status\/663727336395796480\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727336395796480,"source_status_id_str":"663727336395796480","source_user_id":277200904,"source_user_id_str":"277200904"}]},"extended_entities":{"media":[{"id":663727334432854016,"id_str":"663727334432854016","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfnyWUAAw2eh.jpg","url":"https:\/\/t.co\/YkaRJVrZht","display_url":"pic.twitter.com\/YkaRJVrZht","expanded_url":"http:\/\/twitter.com\/iinovagarcia\/status\/663727336395796480\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727336395796480,"source_status_id_str":"663727336395796480","source_user_id":277200904,"source_user_id_str":"277200904"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614614016,"id_str":"663727854614614016","text":"RT @TIME: \"This is the one question entrepreneurs must ask themselves\" https:\/\/t.co\/gAEQMGV3WH","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197348858,"id_str":"3197348858","name":" Interesting News","screen_name":"bestinteremedia","location":null,"url":null,"description":"Getting the latest content on interesting news from different sources","protected":false,"verified":false,"followers_count":163,"friends_count":10,"listed_count":24,"favourites_count":0,"statuses_count":32013,"created_at":"Sat May 16 11:41:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599545277549125632\/MNZeCU_N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599545277549125632\/MNZeCU_N_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:06 +0000 2015","id":663725255056338944,"id_str":"663725255056338944","text":"\"This is the one question entrepreneurs must ask themselves\" https:\/\/t.co\/gAEQMGV3WH","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14293310,"id_str":"14293310","name":"TIME.com","screen_name":"TIME","location":null,"url":"http:\/\/www.time.com","description":"Breaking news and current events from around the globe. Hosted by TIME staff. Tweet questions to our customer service team @TIMEmag_Service.","protected":false,"verified":true,"followers_count":8697766,"friends_count":846,"listed_count":92075,"favourites_count":626,"statuses_count":143423,"created_at":"Thu Apr 03 13:54:30 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CC0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735228291\/107f1a300a90ee713937234bb3d139c0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735228291\/107f1a300a90ee713937234bb3d139c0.jpeg","profile_background_tile":true,"profile_link_color":"DE3333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D9D9D9","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1700796190\/Picture_24_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1700796190\/Picture_24_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14293310\/1403546591","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":17,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gAEQMGV3WH","expanded_url":"http:\/\/ti.me\/1HqdEFr","display_url":"ti.me\/1HqdEFr","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gAEQMGV3WH","expanded_url":"http:\/\/ti.me\/1HqdEFr","display_url":"ti.me\/1HqdEFr","indices":[71,94]}],"user_mentions":[{"screen_name":"TIME","name":"TIME.com","id":14293310,"id_str":"14293310","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585253889,"id_str":"663727854585253889","text":"(\u0648\u0643\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u062a\u0633\u0639\u0629 \u0631\u0647\u0637 \u064a\u0641\u0633\u062f\u0648\u0646 \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \u0648\u0644\u0627 \u064a\u0635\u0644\u062d\u0648\u0646) [\u0627\u0644\u0646\u0645\u0644:48] http:\/\/qurani .tv","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452044476,"id_str":"452044476","name":"\u0628\u0648\u0645\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0627\u064a\u0640\u0640\u062f","screen_name":"a7med_Suwaidi","location":"AD","url":null,"description":null,"protected":false,"verified":false,"followers_count":144,"friends_count":478,"listed_count":0,"favourites_count":23,"statuses_count":16781,"created_at":"Sun Jan 01 10:29:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478841823931015168\/6gyCrxkx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478841823931015168\/6gyCrxkx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452044476\/1407685574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080026657"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854618869760,"id_str":"663727854618869760","text":"Manuevering \u270c\ud83c\udffe\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29907436,"id_str":"29907436","name":"RZA Zeus","screen_name":"SpaceGhostZeus","location":"Duval County","url":null,"description":"Achieving Inner Peace through rigourous meditation and positive Energy Get You Some ! #SmirkLord #TWBG 904 Check out Bro http:\/\/Whoisjmarquis.com","protected":false,"verified":false,"followers_count":422,"friends_count":444,"listed_count":0,"favourites_count":188,"statuses_count":11504,"created_at":"Thu Apr 09 03:18:19 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"043F86","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000147597428\/lyW7-6Bj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000147597428\/lyW7-6Bj.jpeg","profile_background_tile":false,"profile_link_color":"67D7F9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"118D22","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633975531411738624\/zppFrHKM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633975531411738624\/zppFrHKM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29907436\/1389763692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080026665"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854606225408,"id_str":"663727854606225408","text":"RT @Isacavasin: N\u00e3o tem mais o que falar, s\u00f3 o tempo mesmo pra te mostrar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189278494,"id_str":"189278494","name":"Professor Jaba","screen_name":"jaba_","location":null,"url":"https:\/\/www.facebook.com\/ondetemfestaPR","description":"Apenas lindo","protected":false,"verified":false,"followers_count":413,"friends_count":334,"listed_count":1,"favourites_count":2439,"statuses_count":22296,"created_at":"Fri Sep 10 21:15:54 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662072269339013120\/dPjfMIo9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662072269339013120\/dPjfMIo9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189278494\/1439851921","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:14 +0000 2015","id":663725286454919168,"id_str":"663725286454919168","text":"N\u00e3o tem mais o que falar, s\u00f3 o tempo mesmo pra te mostrar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325683875,"id_str":"325683875","name":"Isadora Cavasin","screen_name":"Isacavasin","location":null,"url":null,"description":"life is about criating yourself || snap: isadoracavasin","protected":false,"verified":false,"followers_count":558,"friends_count":275,"listed_count":0,"favourites_count":608,"statuses_count":7193,"created_at":"Tue Jun 28 18:06:04 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465564191831511040\/Fh5a8GNd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465564191831511040\/Fh5a8GNd.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663127368807096324\/zfkQ3-VU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663127368807096324\/zfkQ3-VU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325683875\/1446936832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Isacavasin","name":"Isadora Cavasin","id":325683875,"id_str":"325683875","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080026662"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854623064064,"id_str":"663727854623064064","text":"\u0641\u0644\u0633\u0637\u064a\u0646\u064a \u062e\u0627\u0644 \u061f \u0643\u0643\u064a\u0641 \u064a\u0628\u0648\u064a .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891033162,"id_str":"891033162","name":"\u0660.\u0653","screen_name":"Albheshi909","location":"\u0643\u0627\u0646\u062a \u0644\u064a .","url":null,"description":null,"protected":false,"verified":false,"followers_count":533,"friends_count":95,"listed_count":1,"favourites_count":1022,"statuses_count":10020,"created_at":"Fri Oct 19 14:00:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661632071685808132\/3nlE6ZSE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661632071685808132\/3nlE6ZSE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891033162\/1446910808","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080026666"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610350080,"id_str":"663727854610350080","text":"RT @PERTLISM: '\u0e41\u0e01\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e41\u0e01\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e02\u0e19\u0e32\u0e14\u0e19\u0e31\u0e49\u0e19\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d?'\n\n\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3071446242,"id_str":"3071446242","name":"\u0e40\u0e15\u0e49\u0e22\u0e2b\u0e21\u0e14\u0e41\u0e23\u0e07\u0e41\u0e25\u0e49\u0e27","screen_name":"toytomto","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":99,"listed_count":0,"favourites_count":283,"statuses_count":2623,"created_at":"Tue Mar 10 13:36:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596761544584605696\/RCW8ooNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596761544584605696\/RCW8ooNC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:38 +0000 2015","id":663715320977199105,"id_str":"663715320977199105","text":"'\u0e41\u0e01\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e41\u0e01\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e02\u0e19\u0e32\u0e14\u0e19\u0e31\u0e49\u0e19\u0e40\u0e25\u0e22\u0e40\u0e2b\u0e23\u0e2d?'\n\n\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":982087333,"id_str":"982087333","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","screen_name":"PERTLISM","location":null,"url":null,"description":"| || feeling 100%|| \u0e16\u0e48\u0e32\u0e22\u0e23\u0e39\u0e1b\u0e40\u0e1b\u0e47\u0e19 \u0e21\u0e37\u0e2d\u0e16\u0e37\u0e2d\u0e40\u0e25\u0e48\u0e19\u0e17\u0e27\u0e34\u0e15\u0e44\u0e14\u0e49 SCCH#53 MAHIDOL | IG : f.perzeus","protected":false,"verified":false,"followers_count":91288,"friends_count":27,"listed_count":30,"favourites_count":5835,"statuses_count":53485,"created_at":"Sat Dec 01 08:07:31 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124002914\/878032b59fe458290253c7cf33fe9d9d.jpeg","profile_background_tile":true,"profile_link_color":"5D615D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653836866471395328\/eObB0ReU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/982087333\/1446641002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":652,"favorite_count":70,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PERTLISM","name":"\u0e43\u0e04\u0e23\u0e19\u0e34\u0e22\u0e32\u0e21","id":982087333,"id_str":"982087333","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597881856,"id_str":"663727854597881856","text":"@fedefederossi L'Ashtag \u00e8 arrivato in tendenza!e mia madre la sta cantando...\ud83d\ude48\u2764\ufe0f #BenjeFedeLETTERA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727439957331968,"in_reply_to_status_id_str":"663727439957331968","in_reply_to_user_id":3014558284,"in_reply_to_user_id_str":"3014558284","in_reply_to_screen_name":"fedefederossi","user":{"id":1662584516,"id_str":"1662584516","name":"Music\u2764\ufe0f |20:05|","screen_name":"ColiFede","location":"Roma, Lazio","url":null,"description":"\u201cYesterday is history. Tomorrow is a mistery. But today is a gift, that\u2019s why it\u2019s called present.\u201d music is life\u2764\ufe0f ~One Direction~ ~Dreamer~","protected":false,"verified":false,"followers_count":3255,"friends_count":2841,"listed_count":10,"favourites_count":7888,"statuses_count":24409,"created_at":"Sun Aug 11 13:37:39 +0000 2013","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657863171613532160\/W0MeIHqL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657863171613532160\/W0MeIHqL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1662584516\/1445681780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjeFedeLETTERA","indices":[81,98]}],"urls":[],"user_mentions":[{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080026660"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854602084352,"id_str":"663727854602084352","text":"RT @lovablemudda: The same way they talk about their \"friends\" to you 9\/10 the same way they talk about you to their \"friends\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3436272652,"id_str":"3436272652","name":"cocky\u2763\u2728","screen_name":"airyiana_","location":"in my room lik always ,lolz","url":null,"description":"||\u0274\u1d07\u1d21 \u1d18\u1d00\u0262\u1d07||\u1d04\u1d1c\u1d1b \u0493\u0280\u1d0f\u1d0d \u1d00 \u1d05\u026a\u0493\u0493\u1d07\u0280\u1d07\u0274\u1d1b \u1d04\u029f\u1d0f\u1d1b\u029c||sc:airyiana1||","protected":false,"verified":false,"followers_count":229,"friends_count":144,"listed_count":0,"favourites_count":419,"statuses_count":6251,"created_at":"Sun Aug 23 02:00:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663484181587091456\/9b7NrB9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663484181587091456\/9b7NrB9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3436272652\/1447021939","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:10 +0000 2015","id":663724263040540672,"id_str":"663724263040540672","text":"The same way they talk about their \"friends\" to you 9\/10 the same way they talk about you to their \"friends\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2317158995,"id_str":"2317158995","name":"!","screen_name":"lovablemudda","location":"w\/ bae\u2764","url":null,"description":null,"protected":false,"verified":false,"followers_count":718,"friends_count":703,"listed_count":0,"favourites_count":6034,"statuses_count":15024,"created_at":"Sat Feb 01 00:33:38 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652887003172864000\/zlJkOJLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652887003172864000\/zlJkOJLt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2317158995\/1445737367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovablemudda","name":"!","id":2317158995,"id_str":"2317158995","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585118720,"id_str":"663727854585118720","text":"RT @tom_0129: \u30ea\u30fc\u30c0\u30fc\u306e\u890c\u795d\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\n#ntv #\u9244\u8155DASH https:\/\/t.co\/BWlCiZhxWJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886947352,"id_str":"2886947352","name":"\u84bc\u677e","screen_name":"aoi_sfc","location":"\u304d\u3083\u3093\u3061\u5c71\u8108","url":null,"description":"sfc14 GAPCOM","protected":false,"verified":false,"followers_count":355,"friends_count":294,"listed_count":7,"favourites_count":14823,"statuses_count":14415,"created_at":"Sun Nov 02 04:15:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661384523100258304\/fLBnf5DS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661384523100258304\/fLBnf5DS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886947352\/1443088507","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:14:36 +0000 2015","id":663298568283750401,"id_str":"663298568283750401","text":"\u30ea\u30fc\u30c0\u30fc\u306e\u890c\u795d\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\n#ntv #\u9244\u8155DASH https:\/\/t.co\/BWlCiZhxWJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103261107,"id_str":"103261107","name":"\u3068\u3080","screen_name":"tom_0129","location":null,"url":"https:\/\/twitter.com\/tom_0129\/status\/637264174154813441","description":"\u30c4\u30a4\u30fc\u30c8\u306e\u4fa1\u5024\u3092\u6c7a\u3081\u308b\u306e\u306f\u81ea\u5206\u3067\u306f\u306a\u304f\u3001\u8aad\u3093\u3067\u304f\u308c\u305f\u3042\u306a\u305f\u3067\u3059\u3002\n\n\u76f8\u624b\u3092\u5927\u5207\u306b\u601d\u3046\u306a\u3089\u3001\u305d\u306e\u4eba\u304c\u5927\u5207\u306b\u601d\u3063\u3066\u3044\u308b\u3053\u3068\u3082\u540c\u3058\u3088\u3046\u306b\u5927\u5207\u306b\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044","protected":false,"verified":false,"followers_count":6579,"friends_count":83,"listed_count":146,"favourites_count":1410,"statuses_count":60214,"created_at":"Sat Jan 09 12:37:49 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/533456734837153794\/F5fY5xLy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533456734837153794\/F5fY5xLy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103261107\/1411460712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":82,"favorite_count":50,"entities":{"hashtags":[{"text":"ntv","indices":[15,19]},{"text":"\u9244\u8155DASH","indices":[20,27]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663298562151723008,"id_str":"663298562151723008","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663298562151723008,"id_str":"663298562151723008","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":663298566702534656,"id_str":"663298566702534656","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSCiDhUkAAK3B8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSCiDhUkAAK3B8.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":663298563451973632,"id_str":"663298563451973632","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSCh3aU8AAnLmg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSCh3aU8AAnLmg.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ntv","indices":[29,33]},{"text":"\u9244\u8155DASH","indices":[34,41]}],"urls":[],"user_mentions":[{"screen_name":"tom_0129","name":"\u3068\u3080","id":103261107,"id_str":"103261107","indices":[3,12]}],"symbols":[],"media":[{"id":663298562151723008,"id_str":"663298562151723008","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663298568283750401,"source_status_id_str":"663298568283750401","source_user_id":103261107,"source_user_id_str":"103261107"}]},"extended_entities":{"media":[{"id":663298562151723008,"id_str":"663298562151723008","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSChykUsAAbo9a.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663298568283750401,"source_status_id_str":"663298568283750401","source_user_id":103261107,"source_user_id_str":"103261107"},{"id":663298566702534656,"id_str":"663298566702534656","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSCiDhUkAAK3B8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSCiDhUkAAK3B8.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663298568283750401,"source_status_id_str":"663298568283750401","source_user_id":103261107,"source_user_id_str":"103261107"},{"id":663298563451973632,"id_str":"663298563451973632","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSCh3aU8AAnLmg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSCh3aU8AAnLmg.jpg","url":"https:\/\/t.co\/BWlCiZhxWJ","display_url":"pic.twitter.com\/BWlCiZhxWJ","expanded_url":"http:\/\/twitter.com\/tom_0129\/status\/663298568283750401\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663298568283750401,"source_status_id_str":"663298568283750401","source_user_id":103261107,"source_user_id_str":"103261107"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026657"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614683649,"id_str":"663727854614683649","text":"@HSugarCookie If you can't say how you really feel I think you are going in the right direction. \ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721538122858496,"in_reply_to_status_id_str":"663721538122858496","in_reply_to_user_id":2167250688,"in_reply_to_user_id_str":"2167250688","in_reply_to_screen_name":"HSugarCookie","user":{"id":3064524215,"id_str":"3064524215","name":"Richard","screen_name":"romeovoid1","location":"New York City ","url":null,"description":"I'm a romantic guy that loves beautiful women.","protected":false,"verified":false,"followers_count":30,"friends_count":21,"listed_count":0,"favourites_count":657,"statuses_count":3350,"created_at":"Fri Feb 27 18:48:47 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574690833166897153\/JUTFu633_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574690833166897153\/JUTFu633_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064524215\/1431198307","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HSugarCookie","name":"Harriet Sugarcookie","id":2167250688,"id_str":"2167250688","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854593511424,"id_str":"663727854593511424","text":"\u6b32\u3057\u3044\u3082\u306e\u3044\u3063\u3071\u3044\u3042\u308b\u3057\u3001\u3082\u3063\u3068\u697d\u3057\u304f\u66ae\u3089\u3057\u305f\u3044\uff01\u2026\u305d\u3046\u3060\u3001\u50cd\u3053\u3046\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2592782628,"id_str":"2592782628","name":"\u307f\u304f\u00a8\u032e","screen_name":"mtkn__s2","location":null,"url":null,"description":"Osaka\u2727\u2027\u02dabeauty*\uff0f Anime\u22c6\u035b\u85e4\u548c\u30a8\u30ea\u30aa*\uff0f cinnamon*\uff0f FROZEN*\uff0f \u3077\u308a\u304d\u3085\u3042*\uff0f chocolate*\uff0f sky blue*\u0323\u0329\u22c6\u0329","protected":false,"verified":false,"followers_count":125,"friends_count":155,"listed_count":0,"favourites_count":73,"statuses_count":1151,"created_at":"Sat Jun 28 09:22:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635753378652426240\/mWx6K0dG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635753378652426240\/mWx6K0dG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592782628\/1438970237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026659"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610460678,"id_str":"663727854610460678","text":"Myanmar ruling party chief concedes defeat to Suu Kyi's opposition - The Rakyat Post https:\/\/t.co\/SESpwbhjcs","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1857213025,"id_str":"1857213025","name":"#kauminoritas","screen_name":"kauminoritas","location":null,"url":null,"description":"STOP - rule by the majority and minority rights","protected":false,"verified":false,"followers_count":222,"friends_count":96,"listed_count":13,"favourites_count":0,"statuses_count":90498,"created_at":"Thu Sep 12 11:55:33 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000446813046\/cd375c8879bd3b4e3be2f4e6bd0a4c8d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000446813046\/cd375c8879bd3b4e3be2f4e6bd0a4c8d_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SESpwbhjcs","expanded_url":"http:\/\/ift.tt\/1WM3mkM","display_url":"ift.tt\/1WM3mkM","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597861376,"id_str":"663727854597861376","text":"RT @SeriesBrazil: TOP NOVELAS FAVORITAS\n\n8- VERDADES SECRETAS https:\/\/t.co\/gAatlCr2Vy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1526057905,"id_str":"1526057905","name":"Ana","screen_name":"dirtylarrywho","location":"Brazil","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"07\/07 \u2764\u2764\nJB","protected":false,"verified":false,"followers_count":3458,"friends_count":3149,"listed_count":4,"favourites_count":5283,"statuses_count":44661,"created_at":"Mon Jun 17 22:18:38 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115559529\/65b4f9ec1e2ee48fb84026ef6092bf42.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115559529\/65b4f9ec1e2ee48fb84026ef6092bf42.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658691701783945216\/nES8hlKH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658691701783945216\/nES8hlKH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1526057905\/1441919707","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:43:16 +0000 2015","id":663486974192451584,"id_str":"663486974192451584","text":"TOP NOVELAS FAVORITAS\n\n8- VERDADES SECRETAS https:\/\/t.co\/gAatlCr2Vy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293807001,"id_str":"293807001","name":"S\u00e9ries Brasil","screen_name":"SeriesBrazil","location":"Saga do M\u00eas: A Esperan\u00e7a","url":null,"description":"A melhor fonte di\u00e1ria de humor, imagens, trechos e not\u00edcias das suas S\u00e9ries, Filmes, Sagas e Atores favoritos. Contato Profissional: contatoseriesbrazil@r7.com","protected":false,"verified":false,"followers_count":369412,"friends_count":30947,"listed_count":293,"favourites_count":709,"statuses_count":138023,"created_at":"Fri May 06 00:49:54 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293807001\/1446824857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":908,"favorite_count":963,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663486973127106560,"id_str":"663486973127106560","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","url":"https:\/\/t.co\/gAatlCr2Vy","display_url":"pic.twitter.com\/gAatlCr2Vy","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663486974192451584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663486973127106560,"id_str":"663486973127106560","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","url":"https:\/\/t.co\/gAatlCr2Vy","display_url":"pic.twitter.com\/gAatlCr2Vy","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663486974192451584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeriesBrazil","name":"S\u00e9ries Brasil","id":293807001,"id_str":"293807001","indices":[3,16]}],"symbols":[],"media":[{"id":663486973127106560,"id_str":"663486973127106560","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","url":"https:\/\/t.co\/gAatlCr2Vy","display_url":"pic.twitter.com\/gAatlCr2Vy","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663486974192451584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663486974192451584,"source_status_id_str":"663486974192451584","source_user_id":293807001,"source_user_id_str":"293807001"}]},"extended_entities":{"media":[{"id":663486973127106560,"id_str":"663486973127106560","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUt4wJXIAAdOUY.jpg","url":"https:\/\/t.co\/gAatlCr2Vy","display_url":"pic.twitter.com\/gAatlCr2Vy","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663486974192451584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663486974192451584,"source_status_id_str":"663486974192451584","source_user_id":293807001,"source_user_id_str":"293807001"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080026660"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854601900032,"id_str":"663727854601900032","text":"Get Weather Updates from The Weather Channel. 09:40:26","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3168571911,"id_str":"3168571911","name":"stwc29569","screen_name":"stwc29569","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":82447,"created_at":"Wed Apr 15 06:15:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854589349888,"id_str":"663727854589349888","text":"@MSTtakahashi \u3088\u304f\u8a00\u308f\u308c\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727726897950720,"in_reply_to_status_id_str":"663727726897950720","in_reply_to_user_id":1445585382,"in_reply_to_user_id_str":"1445585382","in_reply_to_screen_name":"MSTtakahashi","user":{"id":2221032462,"id_str":"2221032462","name":"\u2020\u30dc\u30c3\u30af\u30b9@\u305f\u305f\u3067\u3085\u3048\u306e\uff39\uff30\u2020","screen_name":"BoX2400","location":null,"url":"http:\/\/www.nicovideo.jp\/search\/%E3%81%9F%E3%81%9F%E3%81%A7%E3%82%85%E3%81%88?f_range=0&l_range=0&opt","description":"\u30a2\u30cb\u30e1\u5927\u597d\u304d \u6b8b\u5ff5\u306a\u30ed\u30de\u30f3\u6d3eYP\u30dc\u30c3\u30af\u30b9\u3067\u3059 \u300c\u305f\u3063\u305f1\u5ea6\u306e\u672c\u756a\u3092\u68d2\u306b\u632f\u308b\u30c7\u30e5\u30a8\u30eb\u300d\u3068\u3044\u3046\u52d5\u753b\u306b\u51fa\u3066\u3044\u307e\u3059\u3002\u9069\u5f53\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u2026\u2026\u559c\u3073\u307e\u3059(\u02d8\u03c9\u02d8)","protected":false,"verified":false,"followers_count":318,"friends_count":330,"listed_count":0,"favourites_count":286,"statuses_count":4550,"created_at":"Fri Nov 29 07:45:53 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579848322258595840\/fUXMX6BJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579848322258595840\/fUXMX6BJ.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660573684390690816\/viEhJAv-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660573684390690816\/viEhJAv-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2221032462\/1436046995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MSTtakahashi","name":"\u30b5\u30a4\u30af\u30ed\u30f3\u9ad8\u6a4b","id":1445585382,"id_str":"1445585382","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026658"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585143296,"id_str":"663727854585143296","text":"@tRyantryuntil happy birthday!! \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":323069851,"in_reply_to_user_id_str":"323069851","in_reply_to_screen_name":"tRyantryuntil","user":{"id":202115480,"id_str":"202115480","name":"Nicole Suyao","screen_name":"nicooleeesy","location":null,"url":null,"description":"cheerleader","protected":false,"verified":false,"followers_count":521,"friends_count":492,"listed_count":0,"favourites_count":7689,"statuses_count":8692,"created_at":"Wed Oct 13 10:08:49 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"564866","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175260459\/hz60CV9x.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175260459\/hz60CV9x.png","profile_background_tile":true,"profile_link_color":"D98CB4","profile_sidebar_border_color":"5EBBC0","profile_sidebar_fill_color":"88BCC2","profile_text_color":"F3D3CD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655033687742935040\/5FSUcDEZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655033687742935040\/5FSUcDEZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/202115480\/1445085213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tRyantryuntil","name":"Ryan Martinez","id":323069851,"id_str":"323069851","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026657"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854589374465,"id_str":"663727854589374465","text":"@xx0zero0xx \u305d\u3093\u306a\u306e\u3084\u3063\u3066\u308b\u306e\u304b\u30fc\uff01\u77e5\u3089\u306a\u304b\u3063\u305f(\u3002\u30fb\u03c9\u30fb\u3002)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662975428085190661,"in_reply_to_status_id_str":"662975428085190661","in_reply_to_user_id":334436710,"in_reply_to_user_id_str":"334436710","in_reply_to_screen_name":"xx0zero0xx","user":{"id":160572468,"id_str":"160572468","name":"\u304d\u3048","screen_name":"botandourou","location":null,"url":null,"description":"the GazettE\/HERESY\u2661\u9e97\u53a8\u2661\u30a2\u30a4\u30b3\u30f3\u306f\u76f8\u6fa4(@11berty)\u304c\u63cf\u3044\u3066\u304f\u308c\u305f\u306e(\u2229\u00b4\u2200`\u2229)","protected":false,"verified":false,"followers_count":109,"friends_count":222,"listed_count":8,"favourites_count":7841,"statuses_count":12616,"created_at":"Mon Jun 28 15:10:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661162510255456256\/SKz4JVKn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661162510255456256\/SKz4JVKn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160572468\/1444367625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xx0zero0xx","name":"\u305c\u308d","id":334436710,"id_str":"334436710","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026658"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610309120,"id_str":"663727854610309120","text":"RT @_justforyeol: proud to be part of this fandom. continue to bless this fandom nd our boys no matter what issues they encounter https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172715216,"id_str":"172715216","name":"nik","screen_name":"nikkiargue","location":"Cheongdam-dong, Seoul \u2708\ufe0f","url":null,"description":"H U N 5 2 0 H A N","protected":false,"verified":false,"followers_count":645,"friends_count":365,"listed_count":1,"favourites_count":2063,"statuses_count":8856,"created_at":"Fri Jul 30 12:11:13 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659386581833285632\/gB5q6JYu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659386581833285632\/gB5q6JYu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172715216\/1441021380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:11 +0000 2015","id":663720742685544448,"id_str":"663720742685544448","text":"proud to be part of this fandom. continue to bless this fandom nd our boys no matter what issues they encounter https:\/\/t.co\/dqlcQJdPA7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3914138832,"id_str":"3914138832","name":"bea (\u25d5\u203f\u25d5\u273f)","screen_name":"_justforyeol","location":"PH [ Park's Heart haha! ]","url":"http:\/\/justforyeol61.tumblr.com","description":"\u2728 yeol my universe \u2728","protected":false,"verified":false,"followers_count":261,"friends_count":334,"listed_count":0,"favourites_count":636,"statuses_count":2312,"created_at":"Fri Oct 16 13:32:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661798041184112641\/Q4F6coJ4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661798041184112641\/Q4F6coJ4.jpg","profile_background_tile":true,"profile_link_color":"559988","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661790561909628929\/C4thQOGw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661790561909628929\/C4thQOGw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3914138832\/1446630672","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720211732787200,"id_str":"663720211732787200","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","url":"https:\/\/t.co\/dqlcQJdPA7","display_url":"pic.twitter.com\/dqlcQJdPA7","expanded_url":"http:\/\/twitter.com\/_justforyeol\/status\/663720742685544448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720211732787200,"id_str":"663720211732787200","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","url":"https:\/\/t.co\/dqlcQJdPA7","display_url":"pic.twitter.com\/dqlcQJdPA7","expanded_url":"http:\/\/twitter.com\/_justforyeol\/status\/663720742685544448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_justforyeol","name":"bea (\u25d5\u203f\u25d5\u273f)","id":3914138832,"id_str":"3914138832","indices":[3,16]}],"symbols":[],"media":[{"id":663720211732787200,"id_str":"663720211732787200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","url":"https:\/\/t.co\/dqlcQJdPA7","display_url":"pic.twitter.com\/dqlcQJdPA7","expanded_url":"http:\/\/twitter.com\/_justforyeol\/status\/663720742685544448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720742685544448,"source_status_id_str":"663720742685544448","source_user_id":3914138832,"source_user_id_str":"3914138832"}]},"extended_entities":{"media":[{"id":663720211732787200,"id_str":"663720211732787200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBBqUcAAYJZw.jpg","url":"https:\/\/t.co\/dqlcQJdPA7","display_url":"pic.twitter.com\/dqlcQJdPA7","expanded_url":"http:\/\/twitter.com\/_justforyeol\/status\/663720742685544448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720742685544448,"source_status_id_str":"663720742685544448","source_user_id":3914138832,"source_user_id_str":"3914138832"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854593507328,"id_str":"663727854593507328","text":"@777_natsuki \n\n\ud83d\udcdb \u547c\u3073\u65b9\uff1a\u306a\u3064\u304d\n\ud83c\udf80 \u7b2c1\u5370\u8c61\uff1a\u53ef\u611b\u3044\n\ud83c\udf3c\u4eca\u306e\u5370\u8c61\uff1a\u304a\u3082\u308d\u3059\u304e\ud83d\ude02\n\ud83d\udc6b \u95a2\u4fc2\uff1a\u53cb\u9054\n\ud83d\udcac\u4e00\u7dd2\u306b\u4f55\u3057\u305f\u3044\uff1f:\u904a\u3073\u305f\u3044\n\ud83c\udf3bLINE\u4ea4\u63db\uff1a\u3057\u30fc\u3066\u306a\u3044(\u7b11)\n\ud83d\udc8c \u4e00\u8a00:\u307e\u305f\u904a\u307c\u3046\ud83d\udc4f\n\n#RT\u3057\u305f\u3089\u3059\u308b \n#\u3044\u3044\u306d\u3057\u305f\u3089\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2851368534,"in_reply_to_user_id_str":"2851368534","in_reply_to_screen_name":"777_natsuki","user":{"id":3313493899,"id_str":"3313493899","name":"\u9e97\u83dc","screen_name":"S3R5AAALDH","location":"\u5730\u7403","url":null,"description":"\u7b2c\u56db\u5c0f\u2192\u938c\u7530\u4e2d\u2192\u767d\u5c71\u9ad81\u5e74 AAA lol Da-iCE LDH(EXILE TRIBE)\u304c\u597d\u304d \u30c0\u30f3\u30b9\u3068\u30d0\u30b9\u30b1\u3068\u30d0\u30ec\u30fc\u304c\u5f97\u610f\u3002\u5e38\u6687\u4eba\u3002\u7559\u5e74\u3057\u3084\u3093\u3088\u3046\u306b\u9811\u5f35\u308b\u3063\u3066\u6c7a\u3081\u305f \u30c8\u30d7\u753b\uff1d\u5de6","protected":false,"verified":false,"followers_count":534,"friends_count":432,"listed_count":2,"favourites_count":3397,"statuses_count":4129,"created_at":"Wed Aug 12 14:42:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663568652327751680\/y7FIQR3X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663568652327751680\/y7FIQR3X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313493899\/1446993515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u3089\u3059\u308b","indices":[102,110]},{"text":"\u3044\u3044\u306d\u3057\u305f\u3089\u3059\u308b","indices":[112,121]}],"urls":[],"user_mentions":[{"screen_name":"777_natsuki","name":"\u306a\u3064\u307f\u304b\u3093","id":2851368534,"id_str":"2851368534","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026659"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854606151681,"id_str":"663727854606151681","text":"RT @chanstar_92: 151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":433632503,"id_str":"433632503","name":"HZT.B","screen_name":"JIll_manisa","location":"Showtime !!","url":null,"description":"\u2022 | EXO-L | T A O | 12 | iKONIC | B.I | MONSTA X \u2022 Support all \u0e42\u0e15\u0e41\u0e25\u0e49\u0e27\u0e15\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e27\u0e07\u0e44\u0e14\u0e49","protected":false,"verified":false,"followers_count":854,"friends_count":251,"listed_count":1,"favourites_count":1261,"statuses_count":55160,"created_at":"Sat Dec 10 20:24:20 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000092918844\/29981fdfb606825e3765ce37e99b97a5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000092918844\/29981fdfb606825e3765ce37e99b97a5.jpeg","profile_background_tile":true,"profile_link_color":"FA8072","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661181430928535552\/_Dmk5WEH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661181430928535552\/_Dmk5WEH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/433632503\/1446472466","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727697403580417,"id_str":"663727697403580417","text":"151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38606,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":1,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[8,19]},{"text":"EXO","indices":[30,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[25,36]},{"text":"EXO","indices":[47,51]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080026662"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614675456,"id_str":"663727854614675456","text":"alex do you know any marvel characters","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3337269197,"id_str":"3337269197","name":".\u018e","screen_name":"NONCOMPOSMENTlS","location":"Next to fUCK OFF.","url":null,"description":"\u3010@OverDedication\u3011 They ain't people.","protected":false,"verified":false,"followers_count":633,"friends_count":399,"listed_count":8,"favourites_count":2814,"statuses_count":3443,"created_at":"Sat Jun 20 17:11:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612325272206069760\/l075n2b6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612325272206069760\/l075n2b6.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663425998977912832\/_GOcQnvH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663425998977912832\/_GOcQnvH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3337269197\/1446474450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854606278656,"id_str":"663727854606278656","text":"\"I could be shining the colours of the rainbow glimmering in the sun but\u2026 https:\/\/t.co\/4627c6GKF0","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":534019229,"id_str":"534019229","name":"lowed","screen_name":"marytngsn_","location":"scl \u2022 sldm \u2741","url":null,"description":"i love you monster, @sherwinchn_ \u2661","protected":false,"verified":false,"followers_count":893,"friends_count":329,"listed_count":3,"favourites_count":16505,"statuses_count":75357,"created_at":"Fri Mar 23 07:57:35 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515104636877799424\/uyWuNTcp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515104636877799424\/uyWuNTcp.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715149446942722\/ImShiUuO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715149446942722\/ImShiUuO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/534019229\/1443867914","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4627c6GKF0","expanded_url":"https:\/\/instagram.com\/p\/93iWNSA8dalXlndgUoJxTD55YdmBeCKrFXP6E0\/","display_url":"instagram.com\/p\/93iWNSA8dalX\u2026","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026662"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610436097,"id_str":"663727854610436097","text":"RT @MAB_DBedlow: Leaders do lunch at #Igors @iProEvents on @MAB_Learning #Leadership workshop https:\/\/t.co\/k40d4VX4va","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466340815,"id_str":"466340815","name":"iPro Stadium","screen_name":"iProEvents","location":"Derby","url":"http:\/\/iprostadium.net","description":"Tailored Events... Conferences, meetings, private celebrations, weddings & more! Call the Events Team: 01332 667525 or email yourevent@dcfc.co.uk","protected":false,"verified":false,"followers_count":3373,"friends_count":2116,"listed_count":27,"favourites_count":656,"statuses_count":2074,"created_at":"Tue Jan 17 09:15:27 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439359698282631169\/hKJxZpvS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439359698282631169\/hKJxZpvS.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448830316279377921\/s2dOAwud_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448830316279377921\/s2dOAwud_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466340815\/1445427392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:15:00 +0000 2015","id":663706352741695488,"id_str":"663706352741695488","text":"Leaders do lunch at #Igors @iProEvents on @MAB_Learning #Leadership workshop https:\/\/t.co\/k40d4VX4va","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2193966073,"id_str":"2193966073","name":"David Bedlow","screen_name":"MAB_DBedlow","location":null,"url":"http:\/\/www.mortgageadvicebureau.com\/","description":"Mortgage Advice Bureau is one of the UK's leading independent mortgage brokers.","protected":false,"verified":false,"followers_count":514,"friends_count":750,"listed_count":36,"favourites_count":2031,"statuses_count":2479,"created_at":"Thu Nov 14 10:54:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547031587255115776\/aJESmDfJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547031587255115776\/aJESmDfJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193966073\/1437561086","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"Igors","indices":[20,26]},{"text":"Leadership","indices":[56,67]}],"urls":[],"user_mentions":[{"screen_name":"iProEvents","name":"iPro Stadium","id":466340815,"id_str":"466340815","indices":[27,38]},{"screen_name":"MAB_Learning","name":"MAB Learning","id":2836897038,"id_str":"2836897038","indices":[42,55]}],"symbols":[],"media":[{"id":663706345355517952,"id_str":"663706345355517952","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","url":"https:\/\/t.co\/k40d4VX4va","display_url":"pic.twitter.com\/k40d4VX4va","expanded_url":"http:\/\/twitter.com\/MAB_DBedlow\/status\/663706352741695488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706345355517952,"id_str":"663706345355517952","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","url":"https:\/\/t.co\/k40d4VX4va","display_url":"pic.twitter.com\/k40d4VX4va","expanded_url":"http:\/\/twitter.com\/MAB_DBedlow\/status\/663706352741695488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Igors","indices":[37,43]},{"text":"Leadership","indices":[73,84]}],"urls":[],"user_mentions":[{"screen_name":"MAB_DBedlow","name":"David Bedlow","id":2193966073,"id_str":"2193966073","indices":[3,15]},{"screen_name":"iProEvents","name":"iPro Stadium","id":466340815,"id_str":"466340815","indices":[44,55]},{"screen_name":"MAB_Learning","name":"MAB Learning","id":2836897038,"id_str":"2836897038","indices":[59,72]}],"symbols":[],"media":[{"id":663706345355517952,"id_str":"663706345355517952","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","url":"https:\/\/t.co\/k40d4VX4va","display_url":"pic.twitter.com\/k40d4VX4va","expanded_url":"http:\/\/twitter.com\/MAB_DBedlow\/status\/663706352741695488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663706352741695488,"source_status_id_str":"663706352741695488","source_user_id":2193966073,"source_user_id_str":"2193966073"}]},"extended_entities":{"media":[{"id":663706345355517952,"id_str":"663706345355517952","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Z5YWoAAhGm6.jpg","url":"https:\/\/t.co\/k40d4VX4va","display_url":"pic.twitter.com\/k40d4VX4va","expanded_url":"http:\/\/twitter.com\/MAB_DBedlow\/status\/663706352741695488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663706352741695488,"source_status_id_str":"663706352741695488","source_user_id":2193966073,"source_user_id_str":"2193966073"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614548480,"id_str":"663727854614548480","text":"You may feel external pressure to tie up loose ends early in t... More for Scorpio https:\/\/t.co\/G6P3pP15oN","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69050511,"id_str":"69050511","name":"Lindsey","screen_name":"LindzzNicole","location":"Dallas. TX","url":null,"description":"Say the word.. I'm ready!","protected":false,"verified":false,"followers_count":158,"friends_count":339,"listed_count":1,"favourites_count":161,"statuses_count":3408,"created_at":"Wed Aug 26 18:06:58 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1D0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/341726198\/lyfe_jennings.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/341726198\/lyfe_jennings.jpg","profile_background_tile":true,"profile_link_color":"B30065","profile_sidebar_border_color":"EBC1C9","profile_sidebar_fill_color":"F5DCDD","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572299151192412161\/71xPdPdR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572299151192412161\/71xPdPdR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69050511\/1425281664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G6P3pP15oN","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854593712128,"id_str":"663727854593712128","text":"Nu live! #WatnouWajong https:\/\/t.co\/0AU7VbCIGk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3073815704,"id_str":"3073815704","name":"Dani\u00ebl Kruit","screen_name":"Danielnkruit","location":"Utrecht","url":"http:\/\/nl.linkedin.com\/in\/danielkruit\/","description":"Legt gemakkelijk contact | Integer Uitmuntend in gastvrijheid | MeursWerkt Werken.FM | #BYT | #WatNouWajong http:\/\/www.GMraven.com | Doe het met kleur!","protected":false,"verified":false,"followers_count":283,"friends_count":488,"listed_count":4,"favourites_count":93,"statuses_count":275,"created_at":"Wed Mar 11 20:37:26 +0000 2015","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613276456874078208\/JZ9LRldU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613276456874078208\/JZ9LRldU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3073815704\/1427374107","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726802259570688,"quoted_status_id_str":"663726802259570688","quoted_status":{"created_at":"Mon Nov 09 14:36:15 +0000 2015","id":663726802259570688,"id_str":"663726802259570688","text":"Hoor hoe werkgevers openstaan voor de #wajong doelgroep ! Mooie gesprekken in Hoorn https:\/\/t.co\/hZnwUBWVxL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29999439,"id_str":"29999439","name":"Martijn Smit","screen_name":"MartijnWerkenFM","location":"The Netherlands","url":"http:\/\/www.werken.fm","description":"Ondernemer bij BSD Entertainment, CSO & Presentator Werken.fm Ambassadeur en bedenker van #CareerClub, #BYT, #WATNOUWAJONG schrijft brieven aan @LodewijkA","protected":false,"verified":false,"followers_count":5953,"friends_count":3971,"listed_count":178,"favourites_count":760,"statuses_count":56068,"created_at":"Thu Apr 09 14:59:06 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087784952\/729471f54c11bbfb952f23925687eae7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087784952\/729471f54c11bbfb952f23925687eae7.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609658740997029888\/4nwoQ-X2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609658740997029888\/4nwoQ-X2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29999439\/1427575012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"wajong","indices":[38,45]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726782709809152,"id_str":"663726782709809152","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_gdUwAAI8kz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_gdUwAAI8kz.jpg","url":"https:\/\/t.co\/hZnwUBWVxL","display_url":"pic.twitter.com\/hZnwUBWVxL","expanded_url":"http:\/\/twitter.com\/MartijnWerkenFM\/status\/663726802259570688\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726782709809152,"id_str":"663726782709809152","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_gdUwAAI8kz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_gdUwAAI8kz.jpg","url":"https:\/\/t.co\/hZnwUBWVxL","display_url":"pic.twitter.com\/hZnwUBWVxL","expanded_url":"http:\/\/twitter.com\/MartijnWerkenFM\/status\/663726802259570688\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WatnouWajong","indices":[9,22]}],"urls":[{"url":"https:\/\/t.co\/0AU7VbCIGk","expanded_url":"https:\/\/twitter.com\/MartijnWerkenFM\/status\/663726802259570688","display_url":"twitter.com\/MartijnWerkenF\u2026","indices":[24,47]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447080026659"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854601961472,"id_str":"663727854601961472","text":"\u982d\u75db\u3044\u3002\n\u304a\u8179\u6c17\u6301\u3061\u60aa\u3044\u3002\n\u5410\u304d\u305d\u30fc\u306b\u306a\u3044\uff57\n\u5bdd\u305f\u3089\u6cbb\u3063\u3066\u6b32\u3057\u3044\u3051\u3069\n\u6cbb\u3089\u306a\u3044\u30d1\u30c6\u30a3\u30fc\u30f3\u3060\u306a\u3002\n\u660e\u65e5\u3082\u52d5\u753b\u3068\u8a95\u30d7\u30ec\u4f5c\u308a\u3002\n\u5b66\u6821\u304a\u4f11\u307f\u3060\u304b\u3089\u3001\u30de\u30c3\u30cf\u3067\u9811\u5f35\u308b\uff01\n\u30fe(*\u00b4\u30fb\u03c9\u30fb`*)\u304a\u3084\u3059\u307f\u306a\u3055\u3041\uff5e\u3043","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2995229432,"id_str":"2995229432","name":"\u7f8e\u7fbd","screen_name":"counotori1","location":"\u5929\u56fd","url":null,"description":"\u9759\u5ca1\u770c\u5468\u5357\u4e2dK-MIX\u307f\u3046\u3063\u3061\u3067\u3059\u3067\u3059\u3002\u30cf\u30ed\u30f2\u30bf\u2103\u23e9\u5ca1\u4e95\u5343\u8056\u30e2\u23e9\u9234\u6728\u9999\u97f3\u30a2\u23e9\u7530\u6751\u82bd\u5b9fJ\u23e9\u5bae\u672c\u4f73\u6797\u3053\u23e9\u548c\u7530\u685c\u5b50\u3064\u23e9\u5cb8\u672c\u3086\u3081\u306epallet\u23e9\u029a\u7f8e\u7fbd\u025e","protected":false,"verified":false,"followers_count":585,"friends_count":1040,"listed_count":5,"favourites_count":3243,"statuses_count":1803,"created_at":"Sun Jan 25 01:58:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660832919754158080\/55kTIICc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660832919754158080\/55kTIICc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995229432\/1446094031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614523904,"id_str":"663727854614523904","text":"\u30c1\u30a2\u30ac\u30fc\u30eb\uff8f\uff77\uff81\uff6c\u306e\u53ef\u611b\u3055\u5929\u5143\u7a81\u7834\u3057\u3066\u308b\u3088\u306a\u307b\u3093\u3068","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":475143599,"id_str":"475143599","name":"\u3055\u3055\u3053","screen_name":"ssk_fm","location":"\u7a7a\u4e2d\u30ea\u30d7\u91ce\u90ce","url":"http:\/\/twpf.jp\/ssk_fm","description":"\u5149\u5fe0\u306b\u4e0d\u57d2\u306a\u4e8b\u304c\u3057\u305f\u3044\u5be9\u795e\u8005(\uff01\u3078\u3057\u71ed\uff01\u3001\u5927\u5305\u5e73\u3068\u9daf\u3001\u517c\u6b4c)\u203b\u6210\u4eba\u6e08\u30af\u30bd\u30d5\u30b8\u30e7\u30b7\u203b\u7a7a\u4e2d\u30ea\u30d7\u3084\u796d\u308a\u9a12\u304e\u591a\u3044\u306e\u3067\u5e38\u306b\u4f55\u8a00\u3063\u3066\u3093\u3060\u3053\u3044\u3064\u3067\u3059\u304c\u308f\u305f\u3057\u306eTL\u4e0a\u3067\u306f\u4f1a\u8a71\u3057\u3066\u308b\u3064\u3082\u308a\u3067\u3059\u25a0\u30ad\u30e3\u30c8\u30de\u30ad\u3092\u5fdc\u63f4\u3059\u308b\u4fdd\u8b77\u8005\u25a0\u7121\u99c4\u89aa\u5b50\u30ef\u30c3\u30b7\u30e7\u30a4\u25a0\u9cf4\u5b50\u304f\u3093\u3068\u5dfb\u6771\u25a0\u30b8\u30ed\u5ec3TAT\u53a8 2nd\u30d0\u30d0\u30a2","protected":false,"verified":false,"followers_count":449,"friends_count":354,"listed_count":33,"favourites_count":16832,"statuses_count":42992,"created_at":"Thu Jan 26 18:48:55 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"7FBDC9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/757550865\/8577881085bab657d50b7b530d796f74.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/757550865\/8577881085bab657d50b7b530d796f74.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"91D0DC","profile_text_color":"CF5736","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636743489582067712\/_DbPaWd2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636743489582067712\/_DbPaWd2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475143599\/1428069822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854623027200,"id_str":"663727854623027200","text":"rapaz, fiz uma aqui agr com direito a queijo parmes\u00e3o e ate salsinha","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148618957,"id_str":"148618957","name":"Hanzo Ventrue","screen_name":"HanzoVentrue","location":"sp-fundo do po\u00e7o","url":null,"description":"20 anos de decep\u00e7\u00e3o, me matem","protected":false,"verified":false,"followers_count":529,"friends_count":601,"listed_count":10,"favourites_count":604,"statuses_count":31343,"created_at":"Thu May 27 04:50:22 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634374868138631168\/7SLs67R-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634374868138631168\/7SLs67R-.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"BFB576","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653764398994051072\/GfBEtF6t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653764398994051072\/GfBEtF6t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148618957\/1440074406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080026666"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585163776,"id_str":"663727854585163776","text":"Ahuevo!!!!! No me dijeron nada!!!!!! \ud83d\udcaa\ud83d\udcaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1254462404,"id_str":"1254462404","name":"Francisco Chavez","screen_name":"PakirrinChav","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":237,"friends_count":246,"listed_count":1,"favourites_count":338,"statuses_count":1997,"created_at":"Sat Mar 09 14:06:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630868861546463232\/-qou2sl8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630868861546463232\/-qou2sl8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1254462404\/1439245791","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080026657"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854601932800,"id_str":"663727854601932800","text":"RT @LDHlove_0829: #\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT \n#\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT\n\nfam\u3055\u3093\u306a\u3089\u308f\u304b\u308b\u306f\u305a\u2661\u2661 https:\/\/t.co\/JBCBLUYK6O","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1871789724,"id_str":"1871789724","name":"Iruj\u266a","screen_name":"anan05160203","location":null,"url":null,"description":"\u2606LDH\u57a2\u2606\u4e09\u4ee3\u76eeJ Soul Brothers\u2728\u767b\u5742\u5e83\u81e3\u30fbNAOTO\u30fb\u5ca9\u7530\u525b\u5178\u2728\u2665GENERATIONS\u2728\u4f50\u91ce\u73b2\u65bc\u30fb\u767d\u6ff1\u4e9c\u5d50\u2728BP6.28\u53c2\u6226\u6e08\u2728GENE\uff8a\uff72\uff80\uff6f\uff8110.3\u2728\u5927\u597d\u304d\u21d2@geneskkkssn\u21d2\u4f1a\u3044\u305f\u3044","protected":false,"verified":false,"followers_count":275,"friends_count":269,"listed_count":0,"favourites_count":1054,"statuses_count":2796,"created_at":"Mon Sep 16 14:16:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634400354931617792\/H3VaSPHg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634400354931617792\/H3VaSPHg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1871789724\/1441465821","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 08:35:54 +0000 2015","id":662186563162390528,"id_str":"662186563162390528","text":"#\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT \n#\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT\n\nfam\u3055\u3093\u306a\u3089\u308f\u304b\u308b\u306f\u305a\u2661\u2661 https:\/\/t.co\/JBCBLUYK6O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313965918,"id_str":"3313965918","name":"\u304b \u305f \u3088 \u305b \u308a \u3093 \u3054","screen_name":"LDHlove_0829","location":"\u7247\u5bc4 \u767b\u5742 \u7121\u9650\u56de\u53ce\u4e2d\\\u2661\/","url":null,"description":"\u7247\u5bc4\u6dbc\u592a\u3068\u767b\u5742\u5e83\u81e3\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u5e02\u4f86\u674f\u9999\u306b\u61a7\u308c\u3066\u308bLJC\/\u30d0\u30ab\u540c\u76df\u306e\u5b89\u5b9a\u3055\u3093\u261e@BESTGUN36\u261c \u30ad\u30c1\u30ac\u30a4\u540c\u76df\u261e@stitchsaku\u261c \/\u3088\u307a\u540c\u76df\/LDH\u306f\u9178\u7d20\/\u305f\u304f\u3055\u3093\u7d61\u3093\u3067\u304f\u308c\u308b\u3068\u25ce\/\u30ea\u30e0\u901a\u77e5\u3002\u30d5\u30a9\u30ed\u30d0\u306a\u3044\u4eba\u30ea\u30e0\u308b\u3088 TOW1129 \u30cf\u30a4\u30bf0919 BP0930 next\u261eAW1211.12","protected":false,"verified":false,"followers_count":1675,"friends_count":1833,"listed_count":12,"favourites_count":467,"statuses_count":4508,"created_at":"Thu Aug 13 04:55:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653217554702336001\/E_Bt5-Q9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653217554702336001\/E_Bt5-Q9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313965918\/1445252662","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1329,"favorite_count":713,"entities":{"hashtags":[{"text":"\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT","indices":[0,18]},{"text":"\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT","indices":[20,38]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662186525665329152,"id_str":"662186525665329152","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662186525665329152,"id_str":"662186525665329152","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":662186542757101568,"id_str":"662186542757101568","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPJvgUwAAqzCR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPJvgUwAAqzCR.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT","indices":[18,36]},{"text":"\u3053\u306e\u5199\u771f\u306e\u5834\u6240\u3069\u3053\u304b\u308f\u304b\u308b\u3072\u3068RT","indices":[38,56]}],"urls":[],"user_mentions":[{"screen_name":"LDHlove_0829","name":"\u304b \u305f \u3088 \u305b \u308a \u3093 \u3054","id":3313965918,"id_str":"3313965918","indices":[3,16]}],"symbols":[],"media":[{"id":662186525665329152,"id_str":"662186525665329152","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662186563162390528,"source_status_id_str":"662186563162390528","source_user_id":3313965918,"source_user_id_str":"3313965918"}]},"extended_entities":{"media":[{"id":662186525665329152,"id_str":"662186525665329152","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPIv1VAAA7cCu.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662186563162390528,"source_status_id_str":"662186563162390528","source_user_id":3313965918,"source_user_id_str":"3313965918"},{"id":662186542757101568,"id_str":"662186542757101568","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCPJvgUwAAqzCR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCPJvgUwAAqzCR.jpg","url":"https:\/\/t.co\/JBCBLUYK6O","display_url":"pic.twitter.com\/JBCBLUYK6O","expanded_url":"http:\/\/twitter.com\/LDHlove_0829\/status\/662186563162390528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662186563162390528,"source_status_id_str":"662186563162390528","source_user_id":3313965918,"source_user_id_str":"3313965918"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854622892032,"id_str":"663727854622892032","text":"RT @erna_shahira: Girls weh, selagi dia tak jumpa apa yang dia nak cari, dia akan stalk dan terus stalk.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606228953,"id_str":"606228953","name":"surah","screen_name":"nrmaisurah","location":"Seremban, Negeri Sembilan","url":null,"description":null,"protected":false,"verified":false,"followers_count":616,"friends_count":369,"listed_count":0,"favourites_count":1749,"statuses_count":30579,"created_at":"Tue Jun 12 11:07:15 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663388245527367680\/GWl224CN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663388245527367680\/GWl224CN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606228953\/1436719825","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 17:51:10 +0000 2015","id":662326303362711552,"id_str":"662326303362711552","text":"Girls weh, selagi dia tak jumpa apa yang dia nak cari, dia akan stalk dan terus stalk.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":414488821,"id_str":"414488821","name":"E R N A \u10e6","screen_name":"erna_shahira","location":null,"url":null,"description":"\u2661 Tak comel tapi sweet \u2661 19's\/\/96 \u2661 IG; ernashahira \u2661 \u0454\u0280\u03b7\u03b1\u2113\u03b9v\u03b9o\u2113\u03b9c\u03b9o\u03c5s","protected":false,"verified":false,"followers_count":5591,"friends_count":586,"listed_count":4,"favourites_count":11599,"statuses_count":103005,"created_at":"Thu Nov 17 03:29:35 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ECB3D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456022526418640897\/S0sdidCA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456022526418640897\/S0sdidCA.jpeg","profile_background_tile":true,"profile_link_color":"CF61E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FE8980","profile_text_color":"EF1394","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650090526557929472\/m2MNnoC0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650090526557929472\/m2MNnoC0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/414488821\/1439740810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"erna_shahira","name":"E R N A \u10e6","id":414488821,"id_str":"414488821","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080026666"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610284544,"id_str":"663727854610284544","text":"RT @bombaJBPM: 9\/11\/2015 : KERETA TERBABAS LANGGAR POKOK DI TAMAN NAHKODA, SITIAWAN 3.55 pagi. 1L maut #BOMBA https:\/\/t.co\/qG2rTGFPZD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4155774013,"id_str":"4155774013","name":"Mizs Hatikah","screen_name":"MHatikah","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":9,"listed_count":0,"favourites_count":10,"statuses_count":7,"created_at":"Sat Nov 07 09:36:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663076218078531584\/oI4aXeET_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663076218078531584\/oI4aXeET_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:53:05 +0000 2015","id":663685738999889924,"id_str":"663685738999889924","text":"9\/11\/2015 : KERETA TERBABAS LANGGAR POKOK DI TAMAN NAHKODA, SITIAWAN 3.55 pagi. 1L maut #BOMBA https:\/\/t.co\/qG2rTGFPZD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1529641112,"id_str":"1529641112","name":"BOMBA","screen_name":"bombaJBPM","location":"putrajaya","url":"http:\/\/www.bomba.gov.my","description":"CEPAT DAN MESRA (Twitter Rasmi JBPM) sebarang pertanyaan dan aduan boleh dimajukan ke email korporat.bomba@1govuc.gov.my","protected":false,"verified":false,"followers_count":19485,"friends_count":602,"listed_count":62,"favourites_count":6213,"statuses_count":12443,"created_at":"Wed Jun 19 04:03:37 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625467557282082816\/xui3qJRC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625467557282082816\/xui3qJRC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1529641112\/1440984206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[{"text":"BOMBA","indices":[88,94]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663685695924342784,"id_str":"663685695924342784","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663685695924342784,"id_str":"663685695924342784","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}}},{"id":663685709404880896,"id_str":"663685709404880896","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXioueUwAA8gAl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXioueUwAA8gAl.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}}},{"id":663685724126875648,"id_str":"663685724126875648","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiplUUkAAUHFY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiplUUkAAUHFY.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BOMBA","indices":[103,109]}],"urls":[],"user_mentions":[{"screen_name":"bombaJBPM","name":"BOMBA","id":1529641112,"id_str":"1529641112","indices":[3,13]}],"symbols":[],"media":[{"id":663685695924342784,"id_str":"663685695924342784","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":663685738999889924,"source_status_id_str":"663685738999889924","source_user_id":1529641112,"source_user_id_str":"1529641112"}]},"extended_entities":{"media":[{"id":663685695924342784,"id_str":"663685695924342784","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXin8QUEAADi0J.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":663685738999889924,"source_status_id_str":"663685738999889924","source_user_id":1529641112,"source_user_id_str":"1529641112"},{"id":663685709404880896,"id_str":"663685709404880896","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXioueUwAA8gAl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXioueUwAA8gAl.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":663685738999889924,"source_status_id_str":"663685738999889924","source_user_id":1529641112,"source_user_id_str":"1529641112"},{"id":663685724126875648,"id_str":"663685724126875648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXiplUUkAAUHFY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXiplUUkAAUHFY.jpg","url":"https:\/\/t.co\/qG2rTGFPZD","display_url":"pic.twitter.com\/qG2rTGFPZD","expanded_url":"http:\/\/twitter.com\/bombaJBPM\/status\/663685738999889924\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":663685738999889924,"source_status_id_str":"663685738999889924","source_user_id":1529641112,"source_user_id_str":"1529641112"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614523906,"id_str":"663727854614523906","text":"@utau_wandu Oh my! You've really fallen behind in fashion, haven't you?","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725388225363969,"in_reply_to_status_id_str":"663725388225363969","in_reply_to_user_id":259572978,"in_reply_to_user_id_str":"259572978","in_reply_to_screen_name":"utau_wandu","user":{"id":258666668,"id_str":"258666668","name":"\ud5a5\uaddc\ud654","screen_name":"utau_gyuhwa","location":"\uafc8\ub098\ub77c","url":"http:\/\/kimsansyo.blog128.fc2.com\/blog-entry-11.html","description":"Hyang Gyuhwa's UTAU bot. Tweets mainly in English and Korean.","protected":false,"verified":false,"followers_count":1074,"friends_count":1389,"listed_count":27,"favourites_count":0,"statuses_count":199214,"created_at":"Mon Feb 28 06:02:13 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257361059\/gyuhwa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257361059\/gyuhwa_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"utau_wandu","name":"\ud5a5\uc644\ub450","id":259572978,"id_str":"259572978","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854589358080,"id_str":"663727854589358080","text":"NY\u5e8f\u76e4\u3001ECB\u304c\u91d1\u5229\u5f15\u304d\u4e0b\u3052\u3078\u3068\u306e\u5831\u9053\u3067\u30e6\u30fc\u30ed\u8edf\u8abf \u3000NY\u5165\u308a\u306b\u304b\u3051\u3066\u306f\u30e6\u30fc\u30ed\u304c\u8edf\u8abf\u3002\u4e00\u90e8\u60c5\u5831\u30d9\u30f3\u30c0\u30fc\u304c\u8907\u6570\u306eECB\u5f53\u5c40\u8005\u306e\u300c12\u6708\u306e\u9810\u91d1\u91d1\u5229\u4e0b\u3052\u3067\u30b3\u30f3\u30bb\u30f3\u30b5 https:\/\/t.co\/VCIIvivhj5","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2441818261,"id_str":"2441818261","name":"\u7121\u6599\u3067\u59cb\u3081\u3089\u308c\u308bFX\u3001\u70ba\u66ff\u60c5\u5831","screen_name":"fxotokuinfo","location":null,"url":null,"description":"\u53e3\u5ea7\u958b\u8a2d\u3060\u3051\u3067\u7121\u6599\u30dc\u30fc\u30ca\u30b9\u304c\u3082\u3089\u3048\u308bFX\u53e3\u5ea7\u3068\u53d6\u5f15\u3054\u3068\u306b\u30ea\u30d9\u30fc\u30c8\uff08\u30ad\u30e3\u30c3\u30b7\u30e5\u30d0\u30c3\u30af\uff09\u304c\u3082\u3089\u3048\u308b\u60c5\u5831\u3092\u914d\u4fe1\u4e2d","protected":false,"verified":false,"followers_count":1309,"friends_count":2050,"listed_count":9,"favourites_count":2,"statuses_count":23096,"created_at":"Sun Apr 13 14:47:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455358358757720064\/h_Et89b9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455358358757720064\/h_Et89b9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VCIIvivhj5","expanded_url":"http:\/\/zai.diamond.jp\/list\/fxnews\/detail?id=183161#d183161","display_url":"zai.diamond.jp\/list\/fxnews\/de\u2026","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026658"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610456576,"id_str":"663727854610456576","text":"RT @SpeakComedy: RIP Sulley https:\/\/t.co\/g3oue1Lexw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306015258,"id_str":"306015258","name":"Alex Walker Bethay","screen_name":"alexbethay","location":"Booneville, Ms","url":null,"description":"18. I live for adventure and good music. 1Peter 5:7. UM c\/o 2019 Snapchat: abethay","protected":false,"verified":false,"followers_count":441,"friends_count":820,"listed_count":2,"favourites_count":998,"statuses_count":6958,"created_at":"Fri May 27 04:04:47 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624998426632167424\/w6KX8K9E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624998426632167424\/w6KX8K9E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306015258\/1413147246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:02 +0000 2015","id":663726996380237825,"id_str":"663726996380237825","text":"RIP Sulley https:\/\/t.co\/g3oue1Lexw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eSpeakComedyApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50618718,"id_str":"50618718","name":"Speak Comedy","screen_name":"SpeakComedy","location":null,"url":null,"description":"Finally, comedy on Twitter! For Business, email alyzigho@gmail.com","protected":false,"verified":false,"followers_count":2227990,"friends_count":1,"listed_count":5728,"favourites_count":262,"statuses_count":50258,"created_at":"Thu Jun 25 11:22:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ABBF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_tile":true,"profile_link_color":"2ABBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"594F55","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50618718\/1444775882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":121,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeakComedy","name":"Speak Comedy","id":50618718,"id_str":"50618718","indices":[3,15]}],"symbols":[],"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726996380237825,"source_status_id_str":"663726996380237825","source_user_id":50618718,"source_user_id_str":"50618718"}]},"extended_entities":{"media":[{"id":663726995688165376,"id_str":"663726995688165376","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIL53UkAAlI8p.jpg","url":"https:\/\/t.co\/g3oue1Lexw","display_url":"pic.twitter.com\/g3oue1Lexw","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663726996380237825\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726996380237825,"source_status_id_str":"663726996380237825","source_user_id":50618718,"source_user_id_str":"50618718"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854601924608,"id_str":"663727854601924608","text":"Get Weather Updates from The Weather Channel. 09:40:26","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2447272033,"id_str":"2447272033","name":"03279trdb","screen_name":"03279trdb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":9,"listed_count":2,"favourites_count":0,"statuses_count":115321,"created_at":"Wed Apr 16 13:47:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614618112,"id_str":"663727854614618112","text":"RT @3zoz92324788: \u0628\u0639\u064a\u062f\u0627\u064b \u0639\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0645\u0644\u0630\u0627\u062a\u0647\u0627\u061b\ud83c\udf41\ud83c\udf42\n\ufd3f\u0631\u0628\u0650 \u0627\u0628\u0646\u0650 \u0644\u064a \u0639\u0646\u062f\u0643 \u0628\u064a\u062a\u064b\u0627 \u0641\u064a \u0627\u0644\u062c\u0646\u0651\u0629\ufd3e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142822603,"id_str":"4142822603","name":"\u0633\u0648\u0631\u064a\u0627\u0646\u0627","screen_name":"x_to11","location":null,"url":null,"description":"\u200f\u200f\u0636\u0641\u062a\u0646\u064a \u061f \u0644\u0627\u0647\u0646\u062a \u0631\u064a\u062a\u0648\u064a\u062a \u0644\u0644\u0645\u0641\u0636\u0644\u0629","protected":false,"verified":false,"followers_count":33,"friends_count":18,"listed_count":0,"favourites_count":11,"statuses_count":158,"created_at":"Sun Nov 08 16:15:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663390019755839488\/TibqiiNE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663390019755839488\/TibqiiNE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142822603\/1446999853","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 12:17:23 +0000 2015","id":662967079482585088,"id_str":"662967079482585088","text":"\u0628\u0639\u064a\u062f\u0627\u064b \u0639\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0645\u0644\u0630\u0627\u062a\u0647\u0627\u061b\ud83c\udf41\ud83c\udf42\n\ufd3f\u0631\u0628\u0650 \u0627\u0628\u0646\u0650 \u0644\u064a \u0639\u0646\u062f\u0643 \u0628\u064a\u062a\u064b\u0627 \u0641\u064a \u0627\u0644\u062c\u0646\u0651\u0629\ufd3e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":735548700,"id_str":"735548700","name":"\u0639\u0640\u0640\u0632\u0647 \u0628\u0640\u0646\u062a \u062e\u0640\u0627\u0644\u0640\u062f10K","screen_name":"3zoz92324788","location":"\u0644\u0644\u062a\u0628\u0627\u062f\u0644_5\/5_10\/10_\u0645\u0646_\u0627\u0644\u0645\u0641\u0636\u0644\u0647","url":null,"description":"\u2022\u0633\u064f\u0628\u0652\u062d\u064e\u0627\u0646\u064e \u0627\u0644\u0644\u064e\u0651\u0647\u0650 \u0648\u064e\u0628\u0650\u062d\u064e\u0645\u0652\u062f\u0650\u0647\u0650 \u060c\u2022\u060c \u0633\u064f\u0628\u0652\u062d\u064e\u0627\u0646\u064e \u0627\u0644\u0644\u064e\u0651\u0647 \u0627\u0644\u0652\u0639\u064e\u0638\u0650\u064a\u0645\u2022. \u274c\u0627\u0644\u062e\u0627\u0635\u274c\u0635\u0648\u0631 \u0646\u0633\u0627\u0621\u274c","protected":false,"verified":false,"followers_count":9932,"friends_count":5730,"listed_count":4,"favourites_count":73,"statuses_count":9826,"created_at":"Fri Aug 03 21:12:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656917057741692928\/ZMGZW-7d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656917057741692928\/ZMGZW-7d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735548700\/1445710310","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":84,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3zoz92324788","name":"\u0639\u0640\u0640\u0632\u0647 \u0628\u0640\u0646\u062a \u062e\u0640\u0627\u0644\u0640\u062f10K","id":735548700,"id_str":"735548700","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614659072,"id_str":"663727854614659072","text":"RT @BayanAh: \u0645\u0627\u0631\u0643\u0632\u064a \u0645\u0648\u0645\u064a\u0646\u062a\ud83d\udc8f.. https:\/\/t.co\/YWfv4Ws67x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":634210075,"id_str":"634210075","name":"2pm -Got7","screen_name":"2e_22","location":"Saudi Arabia ","url":null,"description":null,"protected":false,"verified":false,"followers_count":299,"friends_count":459,"listed_count":1,"favourites_count":806,"statuses_count":36755,"created_at":"Fri Jul 13 01:55:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660490193477214208\/ZOBg2dE8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660490193477214208\/ZOBg2dE8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/634210075\/1443812877","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:10:18 +0000 2015","id":663690071141433345,"id_str":"663690071141433345","text":"\u0645\u0627\u0631\u0643\u0632\u064a \u0645\u0648\u0645\u064a\u0646\u062a\ud83d\udc8f.. https:\/\/t.co\/YWfv4Ws67x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":597278409,"id_str":"597278409","name":"Bayan\u2728","screen_name":"BayanAh","location":null,"url":null,"description":"MIN \u0645\u0646 \u0645\u064a\u0633 \u0627\u064a \u0646\u0632\u0644\u062a \u0635\u0648\u0631\u0629 \u0628\u0623\u0643\u0627\u0648\u0646\u062a\u064a \u0628\u0627\u0644\u0627\u0646\u0633\u062a\u0627. \u062c\u064a\u0648\u0627\u064a\u0628\u064a\u0646\u064a\u0634\u0646 \u0628\u064a\u064a\u064a. \u0633\u0648\u0632\u064a \u0625\u0632 \u0645\u0627\u064a\u0646\u2601\ufe0f.","protected":false,"verified":false,"followers_count":1297,"friends_count":134,"listed_count":1,"favourites_count":978,"statuses_count":32122,"created_at":"Sat Jun 02 07:51:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661227540690915328\/NDQaTe52_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661227540690915328\/NDQaTe52_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/597278409\/1446483904","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663598138293260288,"id_str":"663598138293260288","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","url":"https:\/\/t.co\/YWfv4Ws67x","display_url":"pic.twitter.com\/YWfv4Ws67x","expanded_url":"http:\/\/twitter.com\/mkuukzky\/status\/663598140793200640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":185,"resize":"fit"},"medium":{"w":600,"h":108,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663598140793200640,"source_status_id_str":"663598140793200640","source_user_id":3227019988,"source_user_id_str":"3227019988"}]},"extended_entities":{"media":[{"id":663598138293260288,"id_str":"663598138293260288","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","url":"https:\/\/t.co\/YWfv4Ws67x","display_url":"pic.twitter.com\/YWfv4Ws67x","expanded_url":"http:\/\/twitter.com\/mkuukzky\/status\/663598140793200640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":185,"resize":"fit"},"medium":{"w":600,"h":108,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663598140793200640,"source_status_id_str":"663598140793200640","source_user_id":3227019988,"source_user_id_str":"3227019988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BayanAh","name":"Bayan\u2728","id":597278409,"id_str":"597278409","indices":[3,11]}],"symbols":[],"media":[{"id":663598138293260288,"id_str":"663598138293260288","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","url":"https:\/\/t.co\/YWfv4Ws67x","display_url":"pic.twitter.com\/YWfv4Ws67x","expanded_url":"http:\/\/twitter.com\/mkuukzky\/status\/663598140793200640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":185,"resize":"fit"},"medium":{"w":600,"h":108,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663598140793200640,"source_status_id_str":"663598140793200640","source_user_id":3227019988,"source_user_id_str":"3227019988"}]},"extended_entities":{"media":[{"id":663598138293260288,"id_str":"663598138293260288","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWS_aqUkAAAsTK.jpg","url":"https:\/\/t.co\/YWfv4Ws67x","display_url":"pic.twitter.com\/YWfv4Ws67x","expanded_url":"http:\/\/twitter.com\/mkuukzky\/status\/663598140793200640\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":185,"resize":"fit"},"medium":{"w":600,"h":108,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663598140793200640,"source_status_id_str":"663598140793200640","source_user_id":3227019988,"source_user_id_str":"3227019988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080026664"} +{"delete":{"status":{"id":470308020552232961,"id_str":"470308020552232961","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080026814"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854606127104,"id_str":"663727854606127104","text":"mas maganda sya","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1361207239,"id_str":"1361207239","name":"gen","screen_name":"lolenngs","location":"Philippines Manila","url":null,"description":"18 \/ 2nd year CPE \/ Midlaner \/ No Girlfriend \/ r","protected":false,"verified":false,"followers_count":420,"friends_count":380,"listed_count":1,"favourites_count":1397,"statuses_count":12214,"created_at":"Thu Apr 18 06:32:13 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"373A80","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594688994333470720\/nWonCsXj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594688994333470720\/nWonCsXj.jpg","profile_background_tile":true,"profile_link_color":"FF0033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"535468","profile_text_color":"3307AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660820361013915650\/0RIhhFG4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660820361013915650\/0RIhhFG4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080026662"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854606094337,"id_str":"663727854606094337","text":"#MarieClaire #\ub9c8\ub9ac\ub04c\ub808\ub974 https:\/\/t.co\/EqEt3dMPKK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2455202275,"id_str":"2455202275","name":"\u5409; Yubin","screen_name":"WGyubn","location":"teamrebells","url":"https:\/\/instagram.com\/yubstagram88\/","description":"\uc6d0\ub354\uac78\uc2a4 \uc720\ube48. \uc624\ub294 \uac83 \uace7 'Unpretty Rapstar (vol.2)' \ud314\ub85c\uc6b0 \uc9c4\uc9dc \uae40\uc720\ube48\uc774\ub2e4 @WGyubin \uadf8\ub9ac\uace0 @WonderGirls \uacf5\uc2dd \ud2b8\uc704\ud130. \ud0d1's #onemic","protected":false,"verified":false,"followers_count":161,"friends_count":145,"listed_count":1,"favourites_count":31,"statuses_count":1659,"created_at":"Sun Apr 20 15:27:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661491859500306432\/ExFsm_ey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661491859500306432\/ExFsm_ey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2455202275\/1446949527","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MarieClaire","indices":[0,12]},{"text":"\ub9c8\ub9ac\ub04c\ub808\ub974","indices":[13,19]}],"urls":[{"url":"https:\/\/t.co\/EqEt3dMPKK","expanded_url":"https:\/\/youtu.be\/lwpcyY7VZmk","display_url":"youtu.be\/lwpcyY7VZmk","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080026662"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610460672,"id_str":"663727854610460672","text":"Off on Wednesday and I have no class \ud83d\ude4c\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703633405,"id_str":"703633405","name":"\u2661 R.I.P Guivens \u2764","screen_name":"ResaMonroe","location":"FREE ZEL - FREE DZOE","url":null,"description":"Instagram: resamonroe \nRIP GUIVENS RIP GRANDMA RIP SPOOK","protected":false,"verified":false,"followers_count":1327,"friends_count":1084,"listed_count":2,"favourites_count":675,"statuses_count":49922,"created_at":"Wed Jul 18 19:19:05 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/767951320\/0d6d558170c93ba5e1337fe70388e080.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/767951320\/0d6d558170c93ba5e1337fe70388e080.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644223740751048704\/NSdk79v4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644223740751048704\/NSdk79v4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703633405\/1385816571","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026663"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597853184,"id_str":"663727854597853184","text":"RT @thalesgroup: #SCEWC15: \"Better manage security at large events\", join #Thales\u2019 S.Sabatier conference @SmartCityexpo 17\/11 11:30 https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351738107,"id_str":"3351738107","name":"Claire Winterhalter","screen_name":"wintertiers63","location":"Ile-de-France, France","url":null,"description":"Thales \nRecrutement\nRelations \u00e9coles","protected":false,"verified":false,"followers_count":53,"friends_count":86,"listed_count":30,"favourites_count":16,"statuses_count":283,"created_at":"Tue Jun 30 12:19:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622886298295107584\/3BFAGbiJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622886298295107584\/3BFAGbiJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:33:56 +0000 2015","id":663680921359527936,"id_str":"663680921359527936","text":"#SCEWC15: \"Better manage security at large events\", join #Thales\u2019 S.Sabatier conference @SmartCityexpo 17\/11 11:30 https:\/\/t.co\/kj7nlYKkwp","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23314228,"id_str":"23314228","name":"Thales Group","screen_name":"thalesgroup","location":"Paris, France","url":"http:\/\/www.thalesgroup.com","description":"Leading international electronics and systems group, addressing global #defence, #space, #aerospace, #security and #transportation markets.","protected":false,"verified":true,"followers_count":33750,"friends_count":699,"listed_count":847,"favourites_count":70,"statuses_count":6259,"created_at":"Sun Mar 08 14:49:30 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121519","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000018801278\/32f6b398efd7478a980166e85b04f770.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000018801278\/32f6b398efd7478a980166e85b04f770.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2EDF3","profile_text_color":"2C5065","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557580220887089152\/8p2_ayz8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557580220887089152\/8p2_ayz8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23314228\/1421772382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[{"text":"SCEWC15","indices":[0,8]},{"text":"Thales","indices":[57,64]}],"urls":[],"user_mentions":[{"screen_name":"SmartCityexpo","name":"Smart City Expo","id":271004511,"id_str":"271004511","indices":[88,102]}],"symbols":[],"media":[{"id":663680920843603968,"id_str":"663680920843603968","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","url":"https:\/\/t.co\/kj7nlYKkwp","display_url":"pic.twitter.com\/kj7nlYKkwp","expanded_url":"http:\/\/twitter.com\/thalesgroup\/status\/663680921359527936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":141,"resize":"fit"},"medium":{"w":600,"h":249,"resize":"fit"},"large":{"w":910,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663680920843603968,"id_str":"663680920843603968","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","url":"https:\/\/t.co\/kj7nlYKkwp","display_url":"pic.twitter.com\/kj7nlYKkwp","expanded_url":"http:\/\/twitter.com\/thalesgroup\/status\/663680921359527936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":141,"resize":"fit"},"medium":{"w":600,"h":249,"resize":"fit"},"large":{"w":910,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SCEWC15","indices":[17,25]},{"text":"Thales","indices":[74,81]}],"urls":[],"user_mentions":[{"screen_name":"thalesgroup","name":"Thales Group","id":23314228,"id_str":"23314228","indices":[3,15]},{"screen_name":"SmartCityexpo","name":"Smart City Expo","id":271004511,"id_str":"271004511","indices":[105,119]}],"symbols":[],"media":[{"id":663680920843603968,"id_str":"663680920843603968","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","url":"https:\/\/t.co\/kj7nlYKkwp","display_url":"pic.twitter.com\/kj7nlYKkwp","expanded_url":"http:\/\/twitter.com\/thalesgroup\/status\/663680921359527936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":141,"resize":"fit"},"medium":{"w":600,"h":249,"resize":"fit"},"large":{"w":910,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663680921359527936,"source_status_id_str":"663680921359527936","source_user_id":23314228,"source_user_id_str":"23314228"}]},"extended_entities":{"media":[{"id":663680920843603968,"id_str":"663680920843603968","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXeR_sWUAAzsL8.jpg","url":"https:\/\/t.co\/kj7nlYKkwp","display_url":"pic.twitter.com\/kj7nlYKkwp","expanded_url":"http:\/\/twitter.com\/thalesgroup\/status\/663680921359527936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":141,"resize":"fit"},"medium":{"w":600,"h":249,"resize":"fit"},"large":{"w":910,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663680921359527936,"source_status_id_str":"663680921359527936","source_user_id":23314228,"source_user_id_str":"23314228"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026660"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854618701824,"id_str":"663727854618701824","text":"RT @candysky: [#CandySkyFlashGiveaway]\nWIN A STAND BY EXO BOTTLE^^\u2665\ufe0e Find out how below! :) https:\/\/t.co\/PPKYNDPIYY","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134153270,"id_str":"134153270","name":" wulan uswatun h","screen_name":"wulanuswatun","location":"indonesia","url":null,"description":"\u263a SDI As-Syafi'iyah 03 pagi,MTS 7,SMK 24 Jakarta,Politeknik Negeri Jakarta | oh sehun dan zi tao \u2665exo-l","protected":false,"verified":false,"followers_count":200,"friends_count":354,"listed_count":2,"favourites_count":787,"statuses_count":13609,"created_at":"Sat Apr 17 15:57:53 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000066511868\/68d8b3101bfb2c2bd7a8644902e956d3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000066511868\/68d8b3101bfb2c2bd7a8644902e956d3.jpeg","profile_background_tile":true,"profile_link_color":"1AB812","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0CE24","profile_text_color":"184EF0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558830969554087936\/PA-gSeYa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558830969554087936\/PA-gSeYa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134153270\/1377350764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:18:09 +0000 2015","id":663692048608854016,"id_str":"663692048608854016","text":"[#CandySkyFlashGiveaway]\nWIN A STAND BY EXO BOTTLE^^\u2665\ufe0e Find out how below! :) https:\/\/t.co\/PPKYNDPIYY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14836709,"id_str":"14836709","name":"\u2726candysky","screen_name":"candysky","location":"Philippines\u2665We ship worldwide","url":"http:\/\/candyskyshop.com","description":"EST. 2007 | The sweetest fan goods, stationery & design services--all under one sky! \u2726 http:\/\/candy-sky.com | http:\/\/facebook.com\/candyskyshop 20070410","protected":false,"verified":false,"followers_count":2134,"friends_count":332,"listed_count":16,"favourites_count":1193,"statuses_count":5349,"created_at":"Mon May 19 19:12:58 +0000 2008","utc_offset":28800,"time_zone":"Taipei","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"57BEB7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646336691\/drgiua22y7jtzydp0ysg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646336691\/drgiua22y7jtzydp0ysg.png","profile_background_tile":false,"profile_link_color":"57BEB7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"656565","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579210125077950464\/HUfxJpJ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579210125077950464\/HUfxJpJ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14836709\/1427758136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":22,"entities":{"hashtags":[{"text":"CandySkyFlashGiveaway","indices":[1,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663692023065522176,"id_str":"663692023065522176","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","url":"https:\/\/t.co\/PPKYNDPIYY","display_url":"pic.twitter.com\/PPKYNDPIYY","expanded_url":"http:\/\/twitter.com\/candysky\/status\/663692048608854016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692023065522176,"id_str":"663692023065522176","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","url":"https:\/\/t.co\/PPKYNDPIYY","display_url":"pic.twitter.com\/PPKYNDPIYY","expanded_url":"http:\/\/twitter.com\/candysky\/status\/663692048608854016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CandySkyFlashGiveaway","indices":[15,37]}],"urls":[],"user_mentions":[{"screen_name":"candysky","name":"\u2726candysky","id":14836709,"id_str":"14836709","indices":[3,12]}],"symbols":[],"media":[{"id":663692023065522176,"id_str":"663692023065522176","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","url":"https:\/\/t.co\/PPKYNDPIYY","display_url":"pic.twitter.com\/PPKYNDPIYY","expanded_url":"http:\/\/twitter.com\/candysky\/status\/663692048608854016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663692048608854016,"source_status_id_str":"663692048608854016","source_user_id":14836709,"source_user_id_str":"14836709"}]},"extended_entities":{"media":[{"id":663692023065522176,"id_str":"663692023065522176","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXoYOsUsAAs2Si.jpg","url":"https:\/\/t.co\/PPKYNDPIYY","display_url":"pic.twitter.com\/PPKYNDPIYY","expanded_url":"http:\/\/twitter.com\/candysky\/status\/663692048608854016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663692048608854016,"source_status_id_str":"663692048608854016","source_user_id":14836709,"source_user_id_str":"14836709"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026665"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614630400,"id_str":"663727854614630400","text":"@NTN24ve quedaron solosss todavia algunos siguen enga\u00f1ados por el gob corrupto pero su fin llegoo la justicia llegaa todo lo veremosss","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663604467225399296,"in_reply_to_status_id_str":"663604467225399296","in_reply_to_user_id":200267797,"in_reply_to_user_id_str":"200267797","in_reply_to_screen_name":"NTN24ve","user":{"id":3124933371,"id_str":"3124933371","name":"casjoel","screen_name":"JoecapriJo","location":"buscame en el laverinto","url":null,"description":"confi\u00f3 en ti DIOS.. gracias al TODOPODEROSO no hay nada oculto entre cielo y tierra..tu lo sabes todo DIOS. bendiciones para Venezuela.","protected":false,"verified":false,"followers_count":80,"friends_count":314,"listed_count":0,"favourites_count":13,"statuses_count":3334,"created_at":"Sat Mar 28 21:59:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3124933371\/1427815862","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NTN24ve","name":"NTN24 Venezuela","id":200267797,"id_str":"200267797","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080026664"} +{"delete":{"status":{"id":470137417258000384,"id_str":"470137417258000384","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080026823"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597750784,"id_str":"663727854597750784","text":"baby clarky boy #OTWOLFinallyYours","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3820277413,"id_str":"3820277413","name":"xiuxiu lee","screen_name":"xiuxiulee1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":19,"listed_count":1,"favourites_count":323,"statuses_count":3167,"created_at":"Thu Oct 08 01:34:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662201238415478784\/EJkACtCh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662201238415478784\/EJkACtCh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLFinallyYours","indices":[16,34]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026660"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854601924609,"id_str":"663727854601924609","text":"RT @SantapanMinda: Dan dirikanlah kamu akan sembahyang dan keluarkanlah zakat, dan rukuklah kamu semua (berjemaah) bersama-sama orang-orang\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2887889138,"id_str":"2887889138","name":"haziq khamis","screen_name":"hazyq99","location":null,"url":"https:\/\/instagram.com\/haazieq\/","description":"would you still love me the same?","protected":false,"verified":false,"followers_count":277,"friends_count":267,"listed_count":0,"favourites_count":1975,"statuses_count":9023,"created_at":"Sun Nov 02 23:30:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577714320005472256\/jrKJzyo2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577714320005472256\/jrKJzyo2.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662971368573566977\/qlGemDSt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662971368573566977\/qlGemDSt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887889138\/1446893484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774826303489,"id_str":"663727774826303489","text":"Dan dirikanlah kamu akan sembahyang dan keluarkanlah zakat, dan rukuklah kamu semua (berjemaah) bersama-sama orang-orang yang rukuk.","source":"\u003ca href=\"http:\/\/santapanminda.com\" rel=\"nofollow\"\u003eSantapan Minda 1.2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303027143,"id_str":"303027143","name":"Santapan Minda","screen_name":"SantapanMinda","location":"Malaysia","url":"http:\/\/www.santapanminda.com","description":"Himpunan mutiara kata dari pelbagai sumber, seperti juga perkara lain, minda kita memerlukan makanannya juga. :)","protected":false,"verified":false,"followers_count":628308,"friends_count":397,"listed_count":431,"favourites_count":5,"statuses_count":117473,"created_at":"Sun May 22 05:31:13 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1364149587\/santapan-minda_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1364149587\/santapan-minda_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SantapanMinda","name":"Santapan Minda","id":303027143,"id_str":"303027143","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080026661"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854622867456,"id_str":"663727854622867456","text":"RT @trafficMIRANDA: via @taitany68: TRANCADO por protestas taxistas en el sem\u00e1foro de pall -Buenaventura ambos sentidos #Miranda","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2564476969,"id_str":"2564476969","name":"Lisbeth Sequera","screen_name":"lisseq63","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":112,"listed_count":0,"favourites_count":7,"statuses_count":298,"created_at":"Fri Jun 13 02:26:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:34 +0000 2015","id":663719330601766912,"id_str":"663719330601766912","text":"via @taitany68: TRANCADO por protestas taxistas en el sem\u00e1foro de pall -Buenaventura ambos sentidos #Miranda","source":"\u003ca href=\"http:\/\/posmagroup.com\" rel=\"nofollow\"\u003eMarcaOnline\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103362571,"id_str":"103362571","name":"traffic MIRANDA","screen_name":"trafficMIRANDA","location":"Miranda","url":"https:\/\/instagram.com\/trafficvzla\/","description":"#Miranda Reporta en horas pico \u261e tr\u00e1nsito, tiempo, emergencias. No Pico\u261e Infociudad | NO ILEGALIDADES. | Publicidad\u261e @MarcaOnline | Instagram: @TrafficVZLA","protected":false,"verified":false,"followers_count":436418,"friends_count":129275,"listed_count":3714,"favourites_count":7,"statuses_count":653878,"created_at":"Sat Jan 09 19:56:24 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158332471\/f3Okk8KC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158332471\/f3Okk8KC.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/415929923652423680\/3-Ezs4KP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/415929923652423680\/3-Ezs4KP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103362571\/1388209686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"Miranda","indices":[101,109]}],"urls":[],"user_mentions":[{"screen_name":"taitany68","name":"Tatiana M.C.D.J","id":128068327,"id_str":"128068327","indices":[4,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Miranda","indices":[121,129]}],"urls":[],"user_mentions":[{"screen_name":"trafficMIRANDA","name":"traffic MIRANDA","id":103362571,"id_str":"103362571","indices":[3,18]},{"screen_name":"taitany68","name":"Tatiana M.C.D.J","id":128068327,"id_str":"128068327","indices":[24,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080026666"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854589349889,"id_str":"663727854589349889","text":"@akbiglovelove \u308f\u304aw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1471720116,"in_reply_to_user_id_str":"1471720116","in_reply_to_screen_name":"akbiglovelove","user":{"id":531176919,"id_str":"531176919","name":"KOYO Y@\u30de\u30b9\u30bf\u30fc","screen_name":"siosoop","location":null,"url":null,"description":"\u30b9\u30fc\u30d1\u30fc\u30ab\u30d6\u6b32\u3057\u3044","protected":false,"verified":false,"followers_count":207,"friends_count":353,"listed_count":1,"favourites_count":18,"statuses_count":2256,"created_at":"Tue Mar 20 10:13:48 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617377162136416256\/Rv-HO8U7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617377162136416256\/Rv-HO8U7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/531176919\/1408457266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akbiglovelove","name":"\u3048\u3080","id":1471720116,"id_str":"1471720116","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026658"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854618722304,"id_str":"663727854618722304","text":"@malyun1224 @reeeyan0711 \u3053\u3068\u3057\u306f\u5b50\u5bae\u304c\u3093\u3067\u3072\u3063\u304b\u304b\u3063\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663336458673983488,"in_reply_to_status_id_str":"663336458673983488","in_reply_to_user_id":2541621462,"in_reply_to_user_id_str":"2541621462","in_reply_to_screen_name":"malyun1224","user":{"id":1624494906,"id_str":"1624494906","name":"\u677e\u6c38\u6075\u7f8e\u5b50","screen_name":"EmikoMatsunaga","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":190,"friends_count":213,"listed_count":0,"favourites_count":17,"statuses_count":5407,"created_at":"Sat Jul 27 03:59:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"malyun1224","name":"\u3042\u3055\u304b\u308f \u3086\u304d\u25ce","id":2541621462,"id_str":"2541621462","indices":[0,11]},{"screen_name":"reeeyan0711","name":"\u308c\u30fc\u3084\u3093","id":859221774,"id_str":"859221774","indices":[12,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026665"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854614614017,"id_str":"663727854614614017","text":"Sorry @cornelwest, @esglaude. #racematters is #history. #democracymatters inferior to Dr. Martin Kilson I studied w @harvard @harvardalumni.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265963662,"id_str":"265963662","name":"#DonnaEdwards4Ward9","screen_name":"jasoneducator","location":"Brookland, DC","url":"https:\/\/www.facebook.com\/groups\/107132602969040\/","description":"Using #socialmedia to #demdebate politics, spirituality, culture, and music. Leaning #feelthebern. RT does not equal endorsement.","protected":false,"verified":false,"followers_count":691,"friends_count":2011,"listed_count":132,"favourites_count":3549,"statuses_count":9515,"created_at":"Mon Mar 14 12:22:04 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"13331A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663015508770488320\/lE_Su9sQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663015508770488320\/lE_Su9sQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265963662\/1405928511","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ad8167d3716f2c8c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ad8167d3716f2c8c.json","place_type":"city","name":"Westwood","full_name":"Westwood, NJ","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.055212,40.973330],[-74.055212,41.000031],[-74.004264,41.000031],[-74.004264,40.973330]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"racematters","indices":[30,42]},{"text":"history","indices":[46,54]},{"text":"democracymatters","indices":[56,73]}],"urls":[],"user_mentions":[{"screen_name":"CornelWest","name":"Cornel West","id":36743910,"id_str":"36743910","indices":[6,17]},{"screen_name":"esglaude","name":"Eddie S. Glaude Jr.","id":180535644,"id_str":"180535644","indices":[19,28]},{"screen_name":"Harvard","name":"Harvard University","id":39585367,"id_str":"39585367","indices":[116,124]},{"screen_name":"HarvardAlumni","name":"Harvard Alumni Assoc","id":19304974,"id_str":"19304974","indices":[125,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026664"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597906433,"id_str":"663727854597906433","text":"RT @neilinhdz: \" i be getting higher then giraffe nuts \" \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303373360,"id_str":"3303373360","name":"Mare Bear","screen_name":"mary_masucci","location":null,"url":null,"description":"jiggy like madonna, trippy like nirvana; October's very own.","protected":false,"verified":false,"followers_count":156,"friends_count":111,"listed_count":0,"favourites_count":680,"statuses_count":1337,"created_at":"Sat May 30 00:43:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659942244267532288\/DJvC6JOq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659942244267532288\/DJvC6JOq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303373360\/1439933933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 16:50:31 +0000 2015","id":661948649598001152,"id_str":"661948649598001152","text":"\" i be getting higher then giraffe nuts \" \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1038713898,"id_str":"1038713898","name":"\u262a","screen_name":"neilinhdz","location":"Planet Bullshit","url":null,"description":"05 : 21 \u2728 | 53113 \u2763","protected":false,"verified":false,"followers_count":451,"friends_count":204,"listed_count":1,"favourites_count":1280,"statuses_count":20792,"created_at":"Thu Dec 27 03:42:56 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486385875186511872\/Qy_QL_-O.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486385875186511872\/Qy_QL_-O.jpeg","profile_background_tile":false,"profile_link_color":"0FE0FC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661240919497289728\/gfrBO2HP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661240919497289728\/gfrBO2HP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1038713898\/1446568123","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"neilinhdz","name":"\u262a","id":1038713898,"id_str":"1038713898","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026660"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854618734596,"id_str":"663727854618734596","text":"\u3010\u753b\u50cf\u3011B\u30ab\u30c3\u30d7\u8ca7\u4e73\u304a\u59c9\u3055\u3093\u3060\u3051\u3069\u7ae5\u8c9e\u30af\u30f3\u3068\u30a8\u30c3\u30c1\u3057\u305f\u3044\uff57\uff57\uff57 1: \u30b0\u30e9\u30a8\u30ca\u304b\u3084\u307e\u304d\u3093\u306b\u541b 2015\/11\/06(\u91d1) 20:46:50.142 ID:B9 https:\/\/t.co\/2JHEyNEqGa","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975591870,"id_str":"2975591870","name":"\u30b0\u30ec\u30c3\u30c1","screen_name":"fp5y9rhk","location":"\u6771\u4eac","url":null,"description":"\u304b\u304d\u30fc\u3093","protected":false,"verified":false,"followers_count":267,"friends_count":334,"listed_count":2,"favourites_count":0,"statuses_count":36041,"created_at":"Mon Jan 12 02:48:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557167392728420355\/4HXlWs8o_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557167392728420355\/4HXlWs8o_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2JHEyNEqGa","expanded_url":"http:\/\/news4vip.livedoor.biz\/archives\/52123674.html","display_url":"news4vip.livedoor.biz\/archives\/52123\u2026","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026665"} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610489344,"id_str":"663727854610489344","text":"4 Bedroom Apartment in Amwaj Island https:\/\/t.co\/21QBODsnbf","source":"\u003ca href=\"http:\/\/www.quest-amwaj.com\/\" rel=\"nofollow\"\u003eQuest Realty\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2803340448,"id_str":"2803340448","name":"Quest Realty","screen_name":"QuestAmwaj","location":"Bahrain","url":"http:\/\/www.quest-amwaj.com\/","description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":43,"listed_count":0,"favourites_count":0,"statuses_count":4254,"created_at":"Thu Sep 11 09:20:46 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635820015690846208\/2v2suuRh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635820015690846208\/2v2suuRh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2803340448\/1440426359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727853863903232,"id_str":"663727853863903232","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI920XIAAE_6F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI920XIAAE_6F.jpg","url":"https:\/\/t.co\/21QBODsnbf","display_url":"pic.twitter.com\/21QBODsnbf","expanded_url":"http:\/\/twitter.com\/QuestAmwaj\/status\/663727854610489344\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727853863903232,"id_str":"663727853863903232","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI920XIAAE_6F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI920XIAAE_6F.jpg","url":"https:\/\/t.co\/21QBODsnbf","display_url":"pic.twitter.com\/21QBODsnbf","expanded_url":"http:\/\/twitter.com\/QuestAmwaj\/status\/663727854610489344\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080026663"} +{"delete":{"status":{"id":659788660754087936,"id_str":"659788660754087936","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080026937"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854585253888,"id_str":"663727854585253888","text":"#cellular #deals https:\/\/t.co\/d8eXzwJdTg Pelican ProGear Voyager Case Cover for iPhone 6 PLUS 5.5' with Holster -B\u2026 https:\/\/t.co\/mhetBqXsFY","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2256285391,"id_str":"2256285391","name":"homeshopbuzz","screen_name":"homeshopbuzz","location":null,"url":"http:\/\/tinyurl.com\/hotphonecases","description":"Shopping buzz for #electronics, #fitness products and #fashion items. http:\/\/bit.ly\/homeshopbuzz","protected":false,"verified":false,"followers_count":9852,"friends_count":2319,"listed_count":335,"favourites_count":1524,"statuses_count":1497651,"created_at":"Sat Dec 21 10:14:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663543907037392900\/w4l1nxR7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663543907037392900\/w4l1nxR7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2256285391\/1440057760","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cellular","indices":[0,9]},{"text":"deals","indices":[10,16]}],"urls":[{"url":"https:\/\/t.co\/d8eXzwJdTg","expanded_url":"http:\/\/ift.tt\/1Su4lph","display_url":"ift.tt\/1Su4lph","indices":[17,40]}],"user_mentions":[],"symbols":[],"media":[{"id":663727854308466688,"id_str":"663727854308466688","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI94eWoAAPPz6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI94eWoAAPPz6.jpg","url":"https:\/\/t.co\/mhetBqXsFY","display_url":"pic.twitter.com\/mhetBqXsFY","expanded_url":"http:\/\/twitter.com\/homeshopbuzz\/status\/663727854585253888\/photo\/1","type":"photo","sizes":{"large":{"w":140,"h":300,"resize":"fit"},"medium":{"w":140,"h":300,"resize":"fit"},"small":{"w":140,"h":300,"resize":"fit"},"thumb":{"w":140,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727854308466688,"id_str":"663727854308466688","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI94eWoAAPPz6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI94eWoAAPPz6.jpg","url":"https:\/\/t.co\/mhetBqXsFY","display_url":"pic.twitter.com\/mhetBqXsFY","expanded_url":"http:\/\/twitter.com\/homeshopbuzz\/status\/663727854585253888\/photo\/1","type":"photo","sizes":{"large":{"w":140,"h":300,"resize":"fit"},"medium":{"w":140,"h":300,"resize":"fit"},"small":{"w":140,"h":300,"resize":"fit"},"thumb":{"w":140,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080026657"} +{"delete":{"status":{"id":663724457215721472,"id_str":"663724457215721472","user_id":3095428194,"user_id_str":"3095428194"},"timestamp_ms":"1447080027086"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854610460673,"id_str":"663727854610460673","text":"Japanese 19th C Imari Saucer - Lord Nabeshima in Saga, artist Nembokuan Kizo. https:\/\/t.co\/TZT7KKTTrT https:\/\/t.co\/evMoDGcAOo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3145418811,"id_str":"3145418811","name":"extremely prodigious","screen_name":"parrasabino5","location":null,"url":null,"description":"extremely prodigious offers","protected":false,"verified":false,"followers_count":74,"friends_count":40,"listed_count":39,"favourites_count":0,"statuses_count":92809,"created_at":"Tue Apr 07 20:50:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585545440889823232\/JPH0V9Fq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585545440889823232\/JPH0V9Fq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3145418811\/1428439894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TZT7KKTTrT","expanded_url":"http:\/\/united-states-tourist.info\/it\/si\/?query=111820089207","display_url":"united-states-tourist.info\/it\/si\/?query=1\u2026","indices":[78,101]}],"user_mentions":[],"symbols":[],"media":[{"id":663727854379757568,"id_str":"663727854379757568","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI94vWcAAi_VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI94vWcAAi_VN.jpg","url":"https:\/\/t.co\/evMoDGcAOo","display_url":"pic.twitter.com\/evMoDGcAOo","expanded_url":"http:\/\/twitter.com\/parrasabino5\/status\/663727854610460673\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":270,"resize":"fit"},"large":{"w":300,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727854379757568,"id_str":"663727854379757568","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI94vWcAAi_VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI94vWcAAi_VN.jpg","url":"https:\/\/t.co\/evMoDGcAOo","display_url":"pic.twitter.com\/evMoDGcAOo","expanded_url":"http:\/\/twitter.com\/parrasabino5\/status\/663727854610460673\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":270,"resize":"fit"},"large":{"w":300,"h":270,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sl","timestamp_ms":"1447080026663"} +{"delete":{"status":{"id":632236252603912192,"id_str":"632236252603912192","user_id":826281349,"user_id_str":"826281349"},"timestamp_ms":"1447080027149"}} +{"delete":{"status":{"id":611254909565071363,"id_str":"611254909565071363","user_id":739101584,"user_id_str":"739101584"},"timestamp_ms":"1447080027221"}} +{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854597906432,"id_str":"663727854597906432","text":"\u6ce2\u591a\u91ce\u7d50\u8863\u3000\u30ad\u30c3\u30c1\u30f3\u3084\u98a8\u5442\u5834\u3067\u592b\u306e\u5f1f\u306b\u30ac\u30f3\u30ac\u30f3\u7a81\u304d\u307e\u304f\u3089\u308c\u308b\u30ec\u30a4\u30d7 \uff08xvideos\uff09 https:\/\/t.co\/8A2g07r6Os https:\/\/t.co\/nHMTfmZ3Mf","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3648297807,"id_str":"3648297807","name":"kaoru77x6","screen_name":"kaoru77x6","location":"\u6803\u6728\u770c \u5b87\u90fd\u5bae\u5e02","url":"http:\/\/kaoru77x622.eronews.click","description":"\u96e8\u5bae\u304b\u304a\u308b","protected":false,"verified":false,"followers_count":15,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":16042,"created_at":"Mon Sep 14 02:21:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643248917392392192\/M1JOHV7G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643248917392392192\/M1JOHV7G_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8A2g07r6Os","expanded_url":"http:\/\/ift.tt\/1iNTB8e","display_url":"ift.tt\/1iNTB8e","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663727854467850240,"id_str":"663727854467850240","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI95EWoAACjes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI95EWoAACjes.jpg","url":"https:\/\/t.co\/nHMTfmZ3Mf","display_url":"pic.twitter.com\/nHMTfmZ3Mf","expanded_url":"http:\/\/twitter.com\/kaoru77x6\/status\/663727854597906432\/photo\/1","type":"photo","sizes":{"large":{"w":487,"h":366,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":487,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727854467850240,"id_str":"663727854467850240","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI95EWoAACjes.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI95EWoAACjes.jpg","url":"https:\/\/t.co\/nHMTfmZ3Mf","display_url":"pic.twitter.com\/nHMTfmZ3Mf","expanded_url":"http:\/\/twitter.com\/kaoru77x6\/status\/663727854597906432\/photo\/1","type":"photo","sizes":{"large":{"w":487,"h":366,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":487,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080026660"} +{"delete":{"status":{"id":663724700476903425,"id_str":"663724700476903425","user_id":2817180378,"user_id_str":"2817180378"},"timestamp_ms":"1447080027324"}} +{"delete":{"status":{"id":663727716181512192,"id_str":"663727716181512192","user_id":551746915,"user_id_str":"551746915"},"timestamp_ms":"1447080027448"}} +{"delete":{"status":{"id":663724260100317187,"id_str":"663724260100317187","user_id":3180502317,"user_id_str":"3180502317"},"timestamp_ms":"1447080027559"}} +{"delete":{"status":{"id":663723739977150464,"id_str":"663723739977150464","user_id":3294831216,"user_id_str":"3294831216"},"timestamp_ms":"1447080027674"}} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858779619328,"id_str":"663727858779619328","text":"Que dia de mierdaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1357856191,"id_str":"1357856191","name":"noviembre 9","screen_name":"IaraGaunaa","location":"San Fernando, Buenos Aires ","url":null,"description":"16 | \u03b2elieber \u2022nuevedenoviembre\u2022 @justinbieber me sigue (26-02-15, 1:53 am)| River Plate\u26bd | Gallina desde la cuna hasta el caj\u00f3n.","protected":false,"verified":false,"followers_count":1730,"friends_count":1640,"listed_count":3,"favourites_count":3092,"statuses_count":28223,"created_at":"Tue Apr 16 20:45:21 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E1716","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097323128\/4e9d0d59e714b6facf4f9c129eb96ccc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097323128\/4e9d0d59e714b6facf4f9c129eb96ccc.png","profile_background_tile":true,"profile_link_color":"DD2E45","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655216854881976321\/wrWJPnr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655216854881976321\/wrWJPnr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1357856191\/1445050838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027657"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858787987456,"id_str":"663727858787987456","text":"Vou dormir um pouco","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619614021,"id_str":"619614021","name":"PaDu","screen_name":"_Paula_Edu","location":"Santa Catarina, Brasil","url":null,"description":null,"protected":false,"verified":false,"followers_count":466,"friends_count":419,"listed_count":0,"favourites_count":742,"statuses_count":7584,"created_at":"Wed Jun 27 00:23:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662252471918706692\/M78BoSlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662252471918706692\/M78BoSlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619614021\/1446728215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080027659"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858808979456,"id_str":"663727858808979456","text":"Ai todo mundo acha que to fazendo doce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4106624595,"id_str":"4106624595","name":"RuivaFly","screen_name":"RuivaFly","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":47,"listed_count":0,"favourites_count":4,"statuses_count":18,"created_at":"Tue Nov 03 19:28:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661631796078108672\/aQXC4Loh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661631796078108672\/aQXC4Loh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4106624595\/1446844108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080027664"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858783756288,"id_str":"663727858783756288","text":"Dear Christians: Shouting About Starbucks Cups Is Not Helping https:\/\/t.co\/LCr88AbLv7 #gameinsight, #android, #androidgames, #ipad, #ipadg\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2482786896,"id_str":"2482786896","name":"Alicia W Bowser","screen_name":"aliciabowser753","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":243,"friends_count":33,"listed_count":92,"favourites_count":0,"statuses_count":311729,"created_at":"Wed May 07 21:47:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464159894363328513\/0tW44A3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464159894363328513\/0tW44A3b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gameinsight","indices":[86,98]},{"text":"android","indices":[100,108]},{"text":"androidgames","indices":[110,123]},{"text":"ipad","indices":[125,130]},{"text":"ipadg","indices":[132,138]}],"urls":[{"url":"https:\/\/t.co\/LCr88AbLv7","expanded_url":"http:\/\/lin.io\/Dd9p","display_url":"lin.io\/Dd9p","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027658"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858796371969,"id_str":"663727858796371969","text":"RT @FixYouEs: \u00bfy ahora qu\u00e9 hago con todas esas cosas que dijimos que har\u00edamos juntos?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1685569028,"id_str":"1685569028","name":"Eva \u2655","screen_name":"Evita2605","location":"Guadalajara\/Espa\u00f1a \u2708","url":"http:\/\/instagram.com\/evita2605","description":"~Cuidate de los que hoy te abrazan ... ma\u00f1ana te empuja \u2665Fiel amante de la fotograf\u00eda y el rap \u2764","protected":false,"verified":false,"followers_count":425,"friends_count":354,"listed_count":9,"favourites_count":1746,"statuses_count":3765,"created_at":"Tue Aug 20 11:29:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628684639868203008\/ABHuGKyI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628684639868203008\/ABHuGKyI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1685569028\/1412347888","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:33:23 +0000 2015","id":663424090930311169,"id_str":"663424090930311169","text":"\u00bfy ahora qu\u00e9 hago con todas esas cosas que dijimos que har\u00edamos juntos?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853219472,"id_str":"853219472","name":"sad.","screen_name":"FixYouEs","location":"catalunya","url":"http:\/\/www.instagram.com\/fixyoues","description":"say something i'm giving up on you","protected":false,"verified":false,"followers_count":25203,"friends_count":177,"listed_count":576,"favourites_count":157240,"statuses_count":1212,"created_at":"Sat Sep 29 16:50:00 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDCEC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_tile":true,"profile_link_color":"0431B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"461847","profile_text_color":"A88394","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853219472\/1446922247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":230,"favorite_count":328,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FixYouEs","name":"sad.","id":853219472,"id_str":"853219472","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027661"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800553985,"id_str":"663727858800553985","text":"SE NON AVETE NULLA DA FARE, GUARDATE IL NUOVO VIDEO DI BENJI E FEDE\ud83d\udc49 https:\/\/t.co\/Nz1CMMARsQ #BenjieFedeLETTERA x60","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372815142,"id_str":"372815142","name":"Aurora | Lele\u2728","screen_name":"xkidrauhlhugme","location":"Aurora\u2764","url":null,"description":"You're cute,but you're not Niall Horan. Lele","protected":false,"verified":false,"followers_count":3485,"friends_count":2620,"listed_count":82,"favourites_count":44552,"statuses_count":141797,"created_at":"Tue Sep 13 13:33:23 +0000 2011","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162354347\/lIBcWdLA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162354347\/lIBcWdLA.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654712848774332416\/jOQECg-w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654712848774332416\/jOQECg-w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/372815142\/1444930858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLETTERA","indices":[93,111]}],"urls":[{"url":"https:\/\/t.co\/Nz1CMMARsQ","expanded_url":"https:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813116416,"id_str":"663727858813116416","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278867426,"id_str":"3278867426","name":"LOL","screen_name":"Rodyna_mohammed","location":null,"url":"http:\/\/11.11.PM","description":"JACOB FOLLOWED 24\/9 11:37|STILL WAITIN FOR AARON'S|\nBYE","protected":false,"verified":false,"followers_count":199,"friends_count":791,"listed_count":0,"favourites_count":428,"statuses_count":604,"created_at":"Mon Jul 13 20:25:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430280783519744\/4T2hTU-B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430280783519744\/4T2hTU-B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3278867426\/1445208020","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588966,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49990,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":125,"favorite_count":195,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800553987,"id_str":"663727858800553987","text":"Stupid people not always right https:\/\/t.co\/CBhwRsWri5","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053119053,"id_str":"4053119053","name":"hfggdsajdashgdg@hotm","screen_name":"hfggdsajdashgd1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":1340,"listed_count":32,"favourites_count":0,"statuses_count":2373,"created_at":"Thu Oct 29 02:50:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CBhwRsWri5","expanded_url":"http:\/\/stupid-people-not-always-right.netai.net","display_url":"\u2026pid-people-not-always-right.netai.net","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817376256,"id_str":"663727858817376256","text":"RT @Teknyc: With my brother, the one & only @crazylegsrsc #RockSteadyCrew. @thevirgil. https:\/\/t.co\/hJWq7BgSqH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":522008306,"id_str":"522008306","name":"The Virgil","screen_name":"TheVirgil","location":"Los Angeles","url":"http:\/\/TheVirgil.com","description":"2 room craft cocktail bar. 4519 Santa Monica Blvd, 90029 on the edge of Silverlake. Jukebox jams. Live Music, DJs, comedy on select nights. $6\/8 Happy Hour.","protected":false,"verified":false,"followers_count":1739,"friends_count":2186,"listed_count":57,"favourites_count":3938,"statuses_count":4893,"created_at":"Mon Mar 12 06:20:55 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/731239029\/1529db0d9e96a40da55537f8630e3501.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/731239029\/1529db0d9e96a40da55537f8630e3501.jpeg","profile_background_tile":true,"profile_link_color":"801313","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2941652906\/c6f22688e271b3e64f54d13d0e17ed3c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2941652906\/c6f22688e271b3e64f54d13d0e17ed3c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522008306\/1354842902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:56:28 +0000 2015","id":663626190792429568,"id_str":"663626190792429568","text":"With my brother, the one & only @crazylegsrsc #RockSteadyCrew. @thevirgil. https:\/\/t.co\/hJWq7BgSqH","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42346401,"id_str":"42346401","name":"Joel Teknyc Martinez","screen_name":"Teknyc","location":"World Wide!!!","url":"http:\/\/www.teknycdna.com","description":"Bboy,choreographer,actor,U.S cultural ambassador,graffiti writer,promoter,boxer,welder. Jack of all trades,master of none.","protected":false,"verified":false,"followers_count":4746,"friends_count":708,"listed_count":66,"favourites_count":26,"statuses_count":7363,"created_at":"Mon May 25 04:05:39 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/835808344\/c2f7bff6b9e75c783f608e7534a25b4d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/835808344\/c2f7bff6b9e75c783f608e7534a25b4d.jpeg","profile_background_tile":true,"profile_link_color":"9CA6A3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7F7F7","profile_text_color":"343835","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3485883470\/cf7aa64904a6b1867b5bb6a2dc9b2e11_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3485883470\/cf7aa64904a6b1867b5bb6a2dc9b2e11_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42346401\/1365274823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"RockSteadyCrew","indices":[50,65]}],"urls":[{"url":"https:\/\/t.co\/hJWq7BgSqH","expanded_url":"https:\/\/instagram.com\/p\/920HBugX3l\/","display_url":"instagram.com\/p\/920HBugX3l\/","indices":[79,102]}],"user_mentions":[{"screen_name":"CrazyLegsRSC","name":"Crazy Legs RSC","id":109963025,"id_str":"109963025","indices":[36,49]},{"screen_name":"TheVirgil","name":"The Virgil","id":522008306,"id_str":"522008306","indices":[67,77]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RockSteadyCrew","indices":[62,77]}],"urls":[{"url":"https:\/\/t.co\/hJWq7BgSqH","expanded_url":"https:\/\/instagram.com\/p\/920HBugX3l\/","display_url":"instagram.com\/p\/920HBugX3l\/","indices":[91,114]}],"user_mentions":[{"screen_name":"Teknyc","name":"Joel Teknyc Martinez","id":42346401,"id_str":"42346401","indices":[3,10]},{"screen_name":"CrazyLegsRSC","name":"Crazy Legs RSC","id":109963025,"id_str":"109963025","indices":[48,61]},{"screen_name":"TheVirgil","name":"The Virgil","id":522008306,"id_str":"522008306","indices":[79,89]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800553986,"id_str":"663727858800553986","text":"RT @Gabrieltuitou: Miga se ele te chama de namoradinha abra o olho. \nPois quem \u00e9 feliz no amor, n\u00e3o chama o seu par com diminutivo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3339923632,"id_str":"3339923632","name":"ana Guimar\u00e3es","screen_name":"anaGuimaraesss","location":"Parintins, Amazonas","url":null,"description":"eu sei o que sou ,mais os outros me imaginam","protected":false,"verified":false,"followers_count":755,"friends_count":1449,"listed_count":1,"favourites_count":172,"statuses_count":8230,"created_at":"Sun Jun 21 21:15:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612738829540290560\/DbvRP7TA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612738829540290560\/DbvRP7TA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3339923632\/1435690302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:22 +0000 2015","id":663726829262401536,"id_str":"663726829262401536","text":"Miga se ele te chama de namoradinha abra o olho. \nPois quem \u00e9 feliz no amor, n\u00e3o chama o seu par com diminutivo.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955728506,"id_str":"955728506","name":"Tiu Gabriel \u270c","screen_name":"Gabrieltuitou","location":"Brasil","url":"http:\/\/gabrieloliveira7.blogspot.com.br\/","description":"Lutando a cada dia,e fazendo a diferen\u00e7a.\nlevando reflex\u00e3o,humor,frases de efeito,e o que a rede gama do twitter ama. um dos Reis do SDV. Prazer Gabriel.","protected":false,"verified":false,"followers_count":87141,"friends_count":80761,"listed_count":69,"favourites_count":18240,"statuses_count":82004,"created_at":"Sun Nov 18 15:55:47 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657557952283328512\/BnGpRRB7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657557952283328512\/BnGpRRB7.png","profile_background_tile":false,"profile_link_color":"DF7D00","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662361801242341376\/eQY9homy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662361801242341376\/eQY9homy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955728506\/1446513143","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gabrieltuitou","name":"Tiu Gabriel \u270c","id":955728506,"id_str":"955728506","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800533504,"id_str":"663727858800533504","text":"\u3010\u793e\u4f1a\u3011\u30ac\u30b9\u3092\u5438\u3046\u300c\u30ac\u30b9\u30d1\u30f3\u904a\u3073\u300d\u3001\u4e2d\u9ad8\u751f\u306e\u9593\u3067\u3044\u307e\u3060\u306b\u6d41\u884c \u6cd5\u898f\u5236\u3082\u3086\u308b\u304f\u3001\u5168\u56fd\u3067\u6b7b\u4ea1\u4e8b\u6545\u76f8\u6b21\u3050 https:\/\/t.co\/CCzl2r7sjY \u304a\u3059\u3059\u3081\u6d77\u5916\u822a\u7a7a\u5238\u691c\u7d22\u3092\u898b\u308b [\u697d\u5929] https:\/\/t.co\/wzqoQpMkaV","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3129828980,"id_str":"3129828980","name":"\u304a\u3068\u304f\u304a\u3059\u3059\u3081\u6d77\u5916\u822a\u7a7a\u5238","screen_name":"koukuukenkaigai","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":156,"friends_count":78,"listed_count":5,"favourites_count":0,"statuses_count":41028,"created_at":"Thu Apr 02 10:15:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583574164222541824\/h4U5c9vz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583574164222541824\/h4U5c9vz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CCzl2r7sjY","expanded_url":"http:\/\/ift.tt\/20GS99N","display_url":"ift.tt\/20GS99N","indices":[50,73]},{"url":"https:\/\/t.co\/wzqoQpMkaV","expanded_url":"http:\/\/a.r10.to\/hQ5IPx","display_url":"a.r10.to\/hQ5IPx","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813136896,"id_str":"663727858813136896","text":"Re chupamedias la gorrda","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":391451038,"id_str":"391451038","name":"Monste\u044f \u221e","screen_name":"Mdekendall","location":"San Diego -California ","url":"http:\/\/instagram.com\/heyysebastian\/","description":"RIP Shireen Baratheon","protected":false,"verified":false,"followers_count":1274,"friends_count":1127,"listed_count":5,"favourites_count":194,"statuses_count":82275,"created_at":"Sat Oct 15 15:49:34 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"2A2521","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435938806835859456\/1s0QCIvw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435938806835859456\/1s0QCIvw.png","profile_background_tile":true,"profile_link_color":"F4075A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EC9977","profile_text_color":"D94F5E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622451678520979456\/d8FK3EwF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622451678520979456\/d8FK3EwF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/391451038\/1421900284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813038593,"id_str":"663727858813038593","text":"You've got to ask yourself one question: 'Do I feel lucky?' Well, do ya, punk?","source":"\u003ca href=\"http:\/\/notdesidedye.com\" rel=\"nofollow\"\u003enew app ftw 2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280742755,"id_str":"3280742755","name":"sarita miller","screen_name":"sarahmantis21","location":null,"url":null,"description":"I want to be alone.","protected":false,"verified":false,"followers_count":19,"friends_count":40,"listed_count":3,"favourites_count":0,"statuses_count":29487,"created_at":"Wed Jul 15 14:24:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623489673407561728\/HdWt5_BC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623489673407561728\/HdWt5_BC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280742755\/1437486500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858804785152,"id_str":"663727858804785152","text":"Re da para ir a algun lado hoy, pero me voy a quedar durmiendo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476873278,"id_str":"476873278","name":"Baaar","screen_name":"Barchis02","location":".","url":"https:\/\/www.facebook.com\/r.c.teamoconelalma","description":"\u270c","protected":false,"verified":false,"followers_count":909,"friends_count":842,"listed_count":0,"favourites_count":1860,"statuses_count":6700,"created_at":"Sat Jan 28 15:52:01 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601934885972942848\/Dv1cmHGb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601934885972942848\/Dv1cmHGb.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650851560428306433\/-3LdqMmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650851560428306433\/-3LdqMmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476873278\/1446072351","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027663"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858796265473,"id_str":"663727858796265473","text":"Isinya keren dan berbobot, sangat menambah wawasanmu, dikemas unik dan lucu. Dapatkan buku Fakta Keren di @Gramedia seluruh Indonesia.","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Fakta\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479920109,"id_str":"2479920109","name":"-","screen_name":"shownabs","location":"STARSHIPEnt","url":null,"description":"SHOWNU [\uc154\ub204] - \ubaac\uc2a4\ud0c0\uc5d1\uc2a4 - 1992\/06\/18","protected":false,"verified":false,"followers_count":106,"friends_count":202,"listed_count":2,"favourites_count":36,"statuses_count":45719,"created_at":"Tue May 06 14:33:58 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595229040773959680\/tu5GLW0i.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595229040773959680\/tu5GLW0i.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611513258764185600\/K1-nJaiS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611513258764185600\/K1-nJaiS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479920109\/1434486251","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gramedia","name":"GramediaPustakaUtama","id":21726758,"id_str":"21726758","indices":[106,115]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080027661"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858787872768,"id_str":"663727858787872768","text":"\u672c\u65e5\u306e\u4eca\u73fe\u5728\u306e\u30d6\u30ed\u30b0\u8a18\u4e8b\u6570\u306f 320 \u3067\u3059:)","source":"\u003ca href=\"http:\/\/info.slfeed.net\/twitter_apis.html\" rel=\"nofollow\"\u003e(@\u76ca@.:;)\uff89\uff7c\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129430093,"id_str":"129430093","name":"slfeed.net","screen_name":"slfeed_net","location":"Feed\u89e3\u6790\u30d7\u30ed\u30b0\u30e9\u30e0\u30ce\u4e2d\u306e\u4eba","url":"http:\/\/slfeed.net","description":"\u4e16\u754c\u6700\u5927\u7d1a\u306eSecondLife Blog Feed Portal Site Slfeed\u306e\u6700\u65b0\u60c5\u5831\u3092\u304a\u4f1d\u3048\u3057\u307e\u3059\uff010,20,40\u5206\u306b20\u5206\u4ee5\u5185\u306e\u6700\u65b0\u30d6\u30ed\u30b0\u3092\u304a\u5c4a\u3051\uff01\u30ea\u30b9\u30c8\u3078\u3069\u3046\u305e\u30fc\u3000#GSReport\u3067\u30b0\u30ea\u30c3\u30c9\u30b9\u30c6\u30fc\u30bf\u30b9\u30ec\u30dd\u30fc\u30c8\u548c\u8a33\u3082\u767a\u4fe1\u3057\u3066\u3044\u307e\u3059\u3002\u4f5c\u3063\u305f\u4eba@lamaille_mayuko","protected":false,"verified":false,"followers_count":867,"friends_count":1,"listed_count":34,"favourites_count":0,"statuses_count":447091,"created_at":"Sun Apr 04 07:30:58 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EF08FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/106842468\/slfeedback.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/106842468\/slfeedback.png","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"F7F2F2","profile_text_color":"4A4949","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/797171704\/20091113-information_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/797171704\/20091113-information_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129430093\/1348188830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027659"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858787856384,"id_str":"663727858787856384","text":"RT @InikanPerasaan: Jangan terlampau suka,\n\ntakut-takut orang yang kau suka itu,\n\ntak suka kau seperti yang dia kata,\n\ndan akhirnya kau yan\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781579507,"id_str":"781579507","name":"eyzulazizul","screen_name":"azizuladnann","location":null,"url":"http:\/\/instagram.com\/azizuladnann","description":"If want judge me , make sure you perfect","protected":false,"verified":false,"followers_count":4021,"friends_count":866,"listed_count":2,"favourites_count":357,"statuses_count":9768,"created_at":"Sun Aug 26 03:14:34 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0088","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663627223329472512\/ELSoOlzI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663627223329472512\/ELSoOlzI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781579507\/1434699620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 12:20:32 +0000 2015","id":661518320055664642,"id_str":"661518320055664642","text":"Jangan terlampau suka,\n\ntakut-takut orang yang kau suka itu,\n\ntak suka kau seperti yang dia kata,\n\ndan akhirnya kau yang merana sendiri.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752637836,"id_str":"752637836","name":"IP | Wan Hasmunie \u30c4","screen_name":"InikanPerasaan","location":"Budu, Pahang","url":null,"description":"Saya kembar...Cikgu panggil saya Upin sebab saya abang, ni adik saya Ipin @FaktaPasanganku .. -Ex Cikgu Wan Hasmunie #tweettwin","protected":false,"verified":false,"followers_count":20432,"friends_count":347,"listed_count":8,"favourites_count":54,"statuses_count":124,"created_at":"Sun Aug 12 07:01:46 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ED2E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650403481275109376\/QD9fb-Gk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650403481275109376\/QD9fb-Gk.jpg","profile_background_tile":true,"profile_link_color":"58B1F0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"262626","profile_text_color":"696545","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659325995107745792\/UGFHy485_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659325995107745792\/UGFHy485_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752637836\/1439563094","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1711,"favorite_count":701,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"InikanPerasaan","name":"IP | Wan Hasmunie \u30c4","id":752637836,"id_str":"752637836","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080027659"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858792054784,"id_str":"663727858792054784","text":"@qtjeunha kuyyy, yang awet tapii yaaa\u256f 3\u2570\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727200307294208,"in_reply_to_status_id_str":"663727200307294208","in_reply_to_user_id":622633269,"in_reply_to_user_id_str":"622633269","in_reply_to_screen_name":"qtjeunha","user":{"id":3366423266,"id_str":"3366423266","name":"teyoc\u2728","screen_name":"ktaeyonc_ss","location":"Lion Heart\u2661","url":"http:\/\/worldofgirlsgeneration.com","description":"wlcm stalker! -Roleplayer GG'\uc18c\ub140\uc2dc\ub300-\uae40\ud0dc\uc5f0 Kim Taeyeon aka Taeyeon \u256e\u2022 \u24d21989 Line \u2022 smofc \u2022 soshi taeyeon \u2022 08\u2764 \u2022 @nmjaaxso \u2661","protected":false,"verified":false,"followers_count":1068,"friends_count":967,"listed_count":3,"favourites_count":108,"statuses_count":3805,"created_at":"Fri Aug 28 03:43:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720941738823680\/GH_re2s0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720941738823680\/GH_re2s0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3366423266\/1447073385","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"qtjeunha","name":"Eunha(Followback?)","id":622633269,"id_str":"622633269","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080027660"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817171456,"id_str":"663727858817171456","text":"@kristelephone para sa aking kinabukasan kapatid","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727730056282112,"in_reply_to_status_id_str":"663727730056282112","in_reply_to_user_id":305510442,"in_reply_to_user_id_str":"305510442","in_reply_to_screen_name":"kristelephone","user":{"id":1450409622,"id_str":"1450409622","name":"Genevieve \u2693\ufe0f","screen_name":"eveivenegmej","location":"11.08.15","url":null,"description":"i am a proud fighting maroon \u2022 iska - upd","protected":false,"verified":false,"followers_count":305,"friends_count":206,"listed_count":0,"favourites_count":3302,"statuses_count":13436,"created_at":"Thu May 23 03:13:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506811221119496192\/62693wVD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506811221119496192\/62693wVD.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314156599181312\/obeZFGUz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314156599181312\/obeZFGUz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450409622\/1447040632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kristelephone","name":"Kristel","id":305510442,"id_str":"305510442","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817216513,"id_str":"663727858817216513","text":"RT @rights11: \uacbd\ucc30\uc774 \uc5ed\uc0ac \uad6d\uc815\uad50\uacfc\uc11c \uc9d1\ud544\uc9c4\uc744 \uc0c1\ub300\ub85c \ud55c \uc778\ud130\ub137\uc0c1 \uba85\uc608\ud6fc\uc190\uc5d0 \ub300\ud574 \uc5c4\ud558\uac8c \ucc98\ubc8c\ud558\uaca0\ub2e4\uace0 \ubc1d\ud614\uc2b5\ub2c8\ub2e4. \ucc28\ub77c\ub9ac \uadf8 \uc9d1\ud544\uc9c4\uc744 \uacbd\ucc30\uc774 \ud37c\ub370\uae30\ub85c \uc5c5\uc5b4\uc11c \ud0a4\uc6b0\uc2dc\uc9c0\uc694. \u314b \uc5bc\ub9c8\ub098 \uc790\uc2e0\uc774 \uc5c6\uc73c\uba74 \uc774\ub7f0 \uac81\ubc15 \ud589\uc704\ub97c \ud558\ub294\uac00 \uc2f6\ub124\uc694. \ub54c\ub824 \uce58\uc138\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862707019,"id_str":"862707019","name":"Zion(\uc774\uc885\ud638)","screen_name":"smstar7012","location":"\ubd80\uc0b0","url":null,"description":"\ubaa8\ub450\uac00 \ud589\ubcf5\ud55c \uc138\uc0c1 \ub9cc\ub4e4\uae30, \uac00\uc2b4 \ub530\ub73b\ud55c \uc624\ube60,\ubd80\uc0b0,\r\n \ub3c5\uc11c, \ub4f1\uc0b0, \uc5ec\ud589, \uacf5\uc758 \uacf5\ub3c4, \uc0ac\ub791 \ub098\ub214.","protected":false,"verified":false,"followers_count":4853,"friends_count":5038,"listed_count":6,"favourites_count":39,"statuses_count":3081,"created_at":"Fri Oct 05 08:09:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472233476297482241\/2aVN_IVE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472233476297482241\/2aVN_IVE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862707019\/1358585986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:49 +0000 2015","id":663720399952216064,"id_str":"663720399952216064","text":"\uacbd\ucc30\uc774 \uc5ed\uc0ac \uad6d\uc815\uad50\uacfc\uc11c \uc9d1\ud544\uc9c4\uc744 \uc0c1\ub300\ub85c \ud55c \uc778\ud130\ub137\uc0c1 \uba85\uc608\ud6fc\uc190\uc5d0 \ub300\ud574 \uc5c4\ud558\uac8c \ucc98\ubc8c\ud558\uaca0\ub2e4\uace0 \ubc1d\ud614\uc2b5\ub2c8\ub2e4. \ucc28\ub77c\ub9ac \uadf8 \uc9d1\ud544\uc9c4\uc744 \uacbd\ucc30\uc774 \ud37c\ub370\uae30\ub85c \uc5c5\uc5b4\uc11c \ud0a4\uc6b0\uc2dc\uc9c0\uc694. \u314b \uc5bc\ub9c8\ub098 \uc790\uc2e0\uc774 \uc5c6\uc73c\uba74 \uc774\ub7f0 \uac81\ubc15 \ud589\uc704\ub97c \ud558\ub294\uac00 \uc2f6\ub124\uc694. \ub54c\ub824 \uce58\uc138\uc694. \uc81c\uac00 \ub2e4 \ubd80\ub044\ub7fd\ub124\uc694.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75254347,"id_str":"75254347","name":"\uace0\uc0c1\ub9cc (\uc911\uc815\uc774 \uae30\ub85d\ud55c \uc7a5\uc900\ud558)","screen_name":"rights11","location":null,"url":"http:\/\/koreantweeters.com\/rights11","description":"\uc778\uad8c \uc6b4\ub3d9\uac00. \uc7a5\uc900\ud558 \uc120\uc0dd\uacfc \uae40\ud6c8 \uc911\uc704 \uc758\ubb38\uc0ac\ub97c \uc870\uc0ac\ud588\uace0 \uce5c\uc77c\ud30c\uc758 \uce5c\uc77c \uc7ac\uc0b0\uc744 \uad6d\uac00 \uadc0\uc18d\ud558\ub294 \uc870\uc0ac\uad00\uc73c\ub85c \uc77c\ud588\ub2e4. \ud31f\uce90\uc2a4\ud2b8 '\uace0\uc0c1\ub9cc\uc758 \uc218\uc0ac\ubc18\uc7a5'\uc744 \uc9c4\ud589\ud55c\ub2e4. \uc800\uc11c- \ub2e4\uc2dc, \uc0ac\ub78c\uc774\ub2e4(\ucc45\ub2f4), \uc7a5\uc900\ud558, \ubb3b\uc9c0 \ubabb\ud55c \uc9c4\uc2e4(\ub3cc\ubca0\uac1c), \uc911\uc815\uc774 \uae30\ub85d\ud55c \uc7a5\uc900\ud558(\uc624\ub9c8\uc774\ubd81) \ub4f1 \ub2e4\uc218","protected":false,"verified":false,"followers_count":37267,"friends_count":10795,"listed_count":404,"favourites_count":11,"statuses_count":5496,"created_at":"Fri Sep 18 11:09:02 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663674900196909057\/5bZN0E8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663674900196909057\/5bZN0E8__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rights11","name":"\uace0\uc0c1\ub9cc (\uc911\uc815\uc774 \uae30\ub85d\ud55c \uc7a5\uc900\ud558)","id":75254347,"id_str":"75254347","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858808807424,"id_str":"663727858808807424","text":"\u0633\u064a\u0639\u0648\u0636\u0643 \u0627\u0644\u0644\u0647 \u064a\u0648\u0645\u0627 \u0628\u0645\u0627 \u0641\u0642\u062f\u062a \u0641\u0644\u0627 \u062a\u062d\u0632\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1316512772,"id_str":"1316512772","name":"\u0639 \u27b0","screen_name":"__BntHamad","location":null,"url":null,"description":"\u0645\u0646 \u0631\u0648\u0633 \u0642\u0648\u0645\u0646 \u0645\u0627 \u062a\u0647\u0627\u0628 \u0627\u0644\u0645\u0646\u0627\u064a\u0627.","protected":false,"verified":false,"followers_count":1005,"friends_count":421,"listed_count":0,"favourites_count":1254,"statuses_count":12187,"created_at":"Sat Mar 30 14:06:42 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635226578989912064\/ae1Aac_q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635226578989912064\/ae1Aac_q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1316512772\/1440064797","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080027664"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858779422721,"id_str":"663727858779422721","text":"\u30c6\u30e9\u30fc\u30fb\u98a8\u8010\u6027\u30fb\u30c7\u30d0\u30d5\u796d\u308a\u30fb\u30c9\u30ed\u30c3\u30d7\u3082\u5fae\u5999\u3068\u304b\u307e\u3042\u3081\u3093\u3069\u304f\u3055\u3055\u3057\u304b\u306a\u3044\u308f\u306a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15956000,"id_str":"15956000","name":"B,M (SHIGEHI\u7523)","screen_name":"BM_Freie","location":"\u51b7\u51cd\u5eab","url":null,"description":"\u5143\u30c9\u30ed\u30c3\u30d1\u30fc\u306a28\u6b73\u5150\u3002 \u3010\u30c7\u30ec\u30de\u30b9\u3011 \u30a2\u30cb\u30d0\u6642\u8a08\u52e2\u3001\u96a0\u5c45\u6c17\u5473\u3002 ID: 66771752 \u3010FF14\u3011Tiamat\u9bd6\u306e\u96a0\u5c45\u52e2\u3002 \u3010\u30b0\u30e9\u30d6\u30eb\u3011\u30c7\u30ec\u30b3\u30e9\u30dc\u304b\u3089\u3084\u308a\u59cb\u3081\u305f\u4eba\u3002ID\uff1a1979498 \u95c7120\u98a880\u6c34\u706b\u571f\u514950","protected":false,"verified":false,"followers_count":453,"friends_count":321,"listed_count":63,"favourites_count":3816,"statuses_count":70653,"created_at":"Sat Aug 23 10:56:30 +0000 2008","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605395757307289600\/4_SVUJRf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605395757307289600\/4_SVUJRf.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551356266069508097\/Mib2Gvr8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551356266069508097\/Mib2Gvr8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15956000\/1439196729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027657"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813001728,"id_str":"663727858813001728","text":"@A_aina59 \n\u3042\u3044\u306a\u30fc\uff01\u5168\u7136\u5927\u4e08\u592b\uff01\u3080\u3057\u308d\u3046\u3061\u304c\u9045\u304f\u3066\u3054\u3081\u3093\ud83d\udca6\n\u3055\u3063\u304d\u3042\u3063\u305f\u306dww\n\u697d\u3057\u3093\u3067\u304d\u305f\u3088\u30fc\u3002\u3042\u3044\u306a\u3082\u697d\u3057\u3081\u305f\u307f\u305f\u3044\u3067\u4f55\u3088\u308a\u3084\u308f\ud83d\ude09\ud83d\udc9e\n\u3042\u308a\u304c\u3068\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663639537701130240,"in_reply_to_status_id_str":"663639537701130240","in_reply_to_user_id":2410056332,"in_reply_to_user_id_str":"2410056332","in_reply_to_screen_name":"A_aina59","user":{"id":1690182444,"id_str":"1690182444","name":"(:yukina:)","screen_name":"manetora0901","location":"\u72ac\u3088\u308a\u732b\u6d3e","url":null,"description":"\u261e\u261e\u261e\u261e\u261e\u261e\\\\\u306f\u3055\u307e\u2708\ufe0e\u307e\u3064\u3053\u304f2-I\/\/\u261c\u261c\u261c\u261c\u261c\u307e\u306d\u305f\u3093\/yummy\/bubbles\/Disney\/\u5171\u901a\u5e74\u30d1\/6.30","protected":false,"verified":false,"followers_count":448,"friends_count":433,"listed_count":1,"favourites_count":10849,"statuses_count":4683,"created_at":"Thu Aug 22 06:28:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662282194346377216\/oglWGnxR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662282194346377216\/oglWGnxR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1690182444\/1444534390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"A_aina59","name":"\u3042\u3044\u306a","id":2410056332,"id_str":"2410056332","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858787856385,"id_str":"663727858787856385","text":"The Money (Official Music Video) \u2013 Davido ft.\u00a0Olamide https:\/\/t.co\/BWzHlcvrke https:\/\/t.co\/JXSqTHsWde","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":132002070,"id_str":"132002070","name":"Makarellablog","screen_name":"makarellablog","location":"Kuala Lumpur Federal Territory","url":"http:\/\/www.makarellablog.co","description":"Not Just A Blog! It's A Compacted Life Style Tunnel. Breaking News and Trending Entertainment","protected":false,"verified":false,"followers_count":16594,"friends_count":8112,"listed_count":42,"favourites_count":31,"statuses_count":9834,"created_at":"Mon Apr 12 00:54:35 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623609544296435712\/G61cv5WA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623609544296435712\/G61cv5WA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/132002070\/1446464182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BWzHlcvrke","expanded_url":"http:\/\/www.youtube.com\/watch?v=RF1k7CAzNtQ","display_url":"youtube.com\/watch?v=RF1k7C\u2026","indices":[54,77]},{"url":"https:\/\/t.co\/JXSqTHsWde","expanded_url":"http:\/\/makarellablog.co\/2015\/11\/09\/the-money-official-music-video-davido-ft-olamide\/","display_url":"makarellablog.co\/2015\/11\/09\/the\u2026","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027659"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858808848384,"id_str":"663727858808848384","text":"@rebelionsky \u53b3\u5cf6\u795e\u793e\u304b\u3089\u30ec\u30fc\u30b6\u30fc\u30d3\u30fc\u30e0\u51fa\u308b\u3057\u3001\u3042\u305d\u3053\u7570\u6b21\u5143\u3078\u306e\u30ef\u30fc\u30d7\u30db\u30fc\u30eb\u3060\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727727552303104,"in_reply_to_status_id_str":"663727727552303104","in_reply_to_user_id":3311196151,"in_reply_to_user_id_str":"3311196151","in_reply_to_screen_name":"rebelionsky","user":{"id":748417730,"id_str":"748417730","name":"\u821e\u83ef@WALK\u3068\u6df1\u6d77\u306e\u6e96\u5099\u30e8\u30ed\u30b7\u30af","screen_name":"na_no_251","location":"\u30c8\u30a4\u30ec\u30c3\u30c8\u30da\u30fc\u30d1\u30fc\u306e\u82af\u306e\u4e2d","url":null,"description":"\u30ad\u30e3\u30b9\u3067\u7e4b\u304c\u3063\u305f\u65b9\u306f\u30df\u30e5\u30fc\u30c8\u63a8\u5968\u3002\u672c\u57a2\u517c\u53d6\u5f15\u57a2\u3086\u3046\u3061\u3087\u306f\u5bfe\u5fdc\u3057\u3066\u304a\u308a\u307e\u305b\u3093\uff9f(\uff9f\u00b4\u03c9`\uff9f)\uff9f\uff61\u9234\u6728\u9054\u592e\u2113\u03c3\u03bd\u0454\u2661OLDCODEX\u30d5\u30a1\u30df\u30ea\u30fc\u3002OCD\/\u3046\u305f\u30d7\u30ea\/\u9ed2\u30d0\u30b9\/BB\/\u30de\u30ae\/\u9b3c\u706f\/Free!\/\u3068\u3046\u3089\u3076\/\u4e03\u7f6a\u3082\u308d\u3082\u308d\u96d1\u98df\u3002\u6f14\u5287\u4eba\u300218\u2191 U20","protected":false,"verified":false,"followers_count":441,"friends_count":1020,"listed_count":13,"favourites_count":20546,"statuses_count":28422,"created_at":"Fri Aug 10 02:26:30 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642449804623122432\/NObe2lYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642449804623122432\/NObe2lYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/748417730\/1436404472","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rebelionsky","name":"\u30bd\u30c3\u30e9@USB","id":3311196151,"id_str":"3311196151","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027664"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817236994,"id_str":"663727858817236994","text":"\u306b\u3087\u306b\u3087","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351656710,"id_str":"2351656710","name":"\u30e1\u30eb\u30ad","screen_name":"Meruki_Alt","location":"\u4e09\u91cd","url":null,"description":"\u30ab\u30cb\u30ab\u30de \u97f3\u30b2 GER BF4 \u30a4\u30ab\u3000\u79d8\u5c01\u30b9\u30ad\u30fc\u3000\u308c\u3093\u3063\u3053\u3053\u3063\u3053\u304a\u304a\u304a\u3053\u304a\u3000\u30db\u30e2\u3058\u3083\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":837,"friends_count":595,"listed_count":25,"favourites_count":2679,"statuses_count":12384,"created_at":"Wed Feb 19 13:04:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647084779595141121\/1bg2lGxI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647084779595141121\/1bg2lGxI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351656710\/1444649141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817216512,"id_str":"663727858817216512","text":"RT @Funworld83: The Girl Next Door Is Every Man's Fantasy.\nhttps:\/\/t.co\/JoXf0YqHXX https:\/\/t.co\/NcLXBdCIao","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2770430750,"id_str":"2770430750","name":"Girl Post","screen_name":"girltipspost","location":"Worldwide","url":null,"description":"Tips and Tricks to make your life easy For","protected":false,"verified":false,"followers_count":57380,"friends_count":49505,"listed_count":115,"favourites_count":113,"statuses_count":9233,"created_at":"Tue Aug 26 16:43:37 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554919987932983296\/Pdel2WTU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554919987932983296\/Pdel2WTU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2770430750\/1421138300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:05:13 +0000 2015","id":663643492564865025,"id_str":"663643492564865025","text":"The Girl Next Door Is Every Man's Fantasy.\nhttps:\/\/t.co\/JoXf0YqHXX https:\/\/t.co\/NcLXBdCIao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957101052,"id_str":"2957101052","name":"O'nail","screen_name":"Funworld83","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46021,"friends_count":45251,"listed_count":44,"favourites_count":4,"statuses_count":13395,"created_at":"Sat Jan 03 09:42:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572744207593259008\/Tv-4sLKQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572744207593259008\/Tv-4sLKQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957101052\/1425387804","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JoXf0YqHXX","expanded_url":"http:\/\/bit.ly\/1WLkgQl","display_url":"bit.ly\/1WLkgQl","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":663643492153880576,"id_str":"663643492153880576","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","url":"https:\/\/t.co\/NcLXBdCIao","display_url":"pic.twitter.com\/NcLXBdCIao","expanded_url":"http:\/\/twitter.com\/Funworld83\/status\/663643492564865025\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":245,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663643492153880576,"id_str":"663643492153880576","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","url":"https:\/\/t.co\/NcLXBdCIao","display_url":"pic.twitter.com\/NcLXBdCIao","expanded_url":"http:\/\/twitter.com\/Funworld83\/status\/663643492564865025\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":245,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JoXf0YqHXX","expanded_url":"http:\/\/bit.ly\/1WLkgQl","display_url":"bit.ly\/1WLkgQl","indices":[59,82]}],"user_mentions":[{"screen_name":"Funworld83","name":"O'nail","id":2957101052,"id_str":"2957101052","indices":[3,14]}],"symbols":[],"media":[{"id":663643492153880576,"id_str":"663643492153880576","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","url":"https:\/\/t.co\/NcLXBdCIao","display_url":"pic.twitter.com\/NcLXBdCIao","expanded_url":"http:\/\/twitter.com\/Funworld83\/status\/663643492564865025\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":245,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663643492564865025,"source_status_id_str":"663643492564865025","source_user_id":2957101052,"source_user_id_str":"2957101052"}]},"extended_entities":{"media":[{"id":663643492153880576,"id_str":"663643492153880576","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8PW9U8AAyRjS.jpg","url":"https:\/\/t.co\/NcLXBdCIao","display_url":"pic.twitter.com\/NcLXBdCIao","expanded_url":"http:\/\/twitter.com\/Funworld83\/status\/663643492564865025\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":245,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":245,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663643492564865025,"source_status_id_str":"663643492564865025","source_user_id":2957101052,"source_user_id_str":"2957101052"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858792067072,"id_str":"663727858792067072","text":"@wyattruttle they r going straight to u! Thank u wyatt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698790105407490,"in_reply_to_status_id_str":"663698790105407490","in_reply_to_user_id":1033137968,"in_reply_to_user_id_str":"1033137968","in_reply_to_screen_name":"wyattruttle","user":{"id":3981461350,"id_str":"3981461350","name":"Annie Vanslette","screen_name":"annie_vanslette","location":"Wachusett '18","url":null,"description":null,"protected":false,"verified":false,"followers_count":358,"friends_count":362,"listed_count":0,"favourites_count":193,"statuses_count":68,"created_at":"Sat Oct 17 18:36:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655452920381612032\/1aYik11Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655452920381612032\/1aYik11Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981461350\/1445816024","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wyattruttle","name":"Wyatt","id":1033137968,"id_str":"1033137968","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027660"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817196032,"id_str":"663727858817196032","text":"RT @wisatasemarang: Inspiring banget nih (ceilah) Kalo lagi mentok, mendingan break dulu deh sambil nonton si kakatua #miniBreakVideo https\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224618745,"id_str":"224618745","name":"Rumanza","screen_name":"aviationcadet","location":"medan","url":null,"description":"inyak,, ayah,, abang,, adik adikku. diutama kan.","protected":false,"verified":false,"followers_count":311,"friends_count":659,"listed_count":1,"favourites_count":60,"statuses_count":860,"created_at":"Thu Dec 09 12:55:28 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0AF519","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556959642\/ee0bfc1350c6129f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556959642\/ee0bfc1350c6129f.jpg","profile_background_tile":true,"profile_link_color":"F00836","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000107687610\/d89a24676c407f349dbb71979b9cdfc7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000107687610\/d89a24676c407f349dbb71979b9cdfc7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224618745\/1424952703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:30:22 +0000 2015","id":663302533801086976,"id_str":"663302533801086976","text":"Inspiring banget nih (ceilah) Kalo lagi mentok, mendingan break dulu deh sambil nonton si kakatua #miniBreakVideo https:\/\/t.co\/8UuS7JafXY","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":156228443,"id_str":"156228443","name":"Wisata Semarang","screen_name":"wisatasemarang","location":"Semarang","url":"http:\/\/wisatasemarang.com","description":"Akun Favorit Semarang #SemarBlogFest Contact: admin@wisatasemarang.com. Line, FB & IG: wisatasemarang","protected":false,"verified":false,"followers_count":118594,"friends_count":1846,"listed_count":118,"favourites_count":153,"statuses_count":44864,"created_at":"Wed Jun 16 10:33:30 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"255261","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644015145\/i9dnosgz0ox7ysxze2wc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644015145\/i9dnosgz0ox7ysxze2wc.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594709760252870656\/hZANk049_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594709760252870656\/hZANk049_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/156228443\/1443777671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":2,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[98,113]}],"urls":[{"url":"https:\/\/t.co\/8UuS7JafXY","expanded_url":"http:\/\/bit.ly\/1MkjNyQ","display_url":"bit.ly\/1MkjNyQ","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[118,133]}],"urls":[{"url":"https:\/\/t.co\/8UuS7JafXY","expanded_url":"http:\/\/bit.ly\/1MkjNyQ","display_url":"bit.ly\/1MkjNyQ","indices":[139,140]}],"user_mentions":[{"screen_name":"wisatasemarang","name":"Wisata Semarang","id":156228443,"id_str":"156228443","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800418817,"id_str":"663727858800418817","text":"RT @planpan: \u0e19\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e44\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e01\u0e35\u0e2c\u0e32\u0e2a\u0e35\u0e2d\u0e30 \u0e41\u0e25\u0e49\u0e27\u0e17\u0e35\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e01\u0e47\u0e08\u0e30\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e40\u0e25\u0e48\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e14\u0e49 \u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e19\u0e35\u0e48\u0e21\u0e32\u0e01\u0e46 \u0e23\u0e30\u0e27\u0e31\u0e07\u0e40\u0e2b\u0e2d\u0e30 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e08\u0e30\u0e43\u0e2b\u0e49\u0e15\u0e34\u0e14\u0e40\u0e0a\u0e37\u0e49\u0e2d\u0e43\u0e19\u0e01\u0e23\u0e30\u0e41\u0e2a\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e43\u0e2b\u0e49\u0e2b\u0e21\u0e14 \u0e2d\u0e35\u0e1e\u0e27\u0e01\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208646019,"id_str":"208646019","name":"\u0e40\u0e1a\u0e25\u0e44\u0e2b\u0e19","screen_name":"bellAnusss","location":"BKK ,, THAILAND","url":null,"description":"What's up guys! \u2605 ,, Songbrothers: Daehan Minguk Manse 3 **homebody**","protected":false,"verified":false,"followers_count":82,"friends_count":150,"listed_count":2,"favourites_count":1664,"statuses_count":11701,"created_at":"Wed Oct 27 17:14:33 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/756273200\/0aa825269f604996fb589ab271d45db7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/756273200\/0aa825269f604996fb589ab271d45db7.jpeg","profile_background_tile":false,"profile_link_color":"35CCAE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FF707C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645482906761035777\/TOG2SWLG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645482906761035777\/TOG2SWLG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208646019\/1391268967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:47:43 +0000 2015","id":663684387481894913,"id_str":"663684387481894913","text":"\u0e19\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e44\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e01\u0e35\u0e2c\u0e32\u0e2a\u0e35\u0e2d\u0e30 \u0e41\u0e25\u0e49\u0e27\u0e17\u0e35\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e01\u0e47\u0e08\u0e30\u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e40\u0e25\u0e48\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e14\u0e49 \u0e1a\u0e31\u0e07\u0e04\u0e31\u0e1a\u0e19\u0e35\u0e48\u0e21\u0e32\u0e01\u0e46 \u0e23\u0e30\u0e27\u0e31\u0e07\u0e40\u0e2b\u0e2d\u0e30 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e08\u0e30\u0e43\u0e2b\u0e49\u0e15\u0e34\u0e14\u0e40\u0e0a\u0e37\u0e49\u0e2d\u0e43\u0e19\u0e01\u0e23\u0e30\u0e41\u0e2a\u0e40\u0e25\u0e37\u0e2d\u0e14\u0e43\u0e2b\u0e49\u0e2b\u0e21\u0e14 \u0e2d\u0e35\u0e1e\u0e27\u0e01\u0e02\u0e35\u0e49\u0e04\u0e23\u0e2d\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118163698,"id_str":"118163698","name":"\u0e1b\u0e49\u0e32\u0e41\u0e1e\u0e25\u0e19\u2122","screen_name":"planpan","location":"\u0e15\u0e23\u0e32\u0e14\u0e2a\u0e30\u0e41\u0e2d\u0e14","url":"http:\/\/www.palm-plaza.com","description":"\u0e1c\u0e31\u0e27\u0e23\u0e27\u0e22 \u0e04\u0e37\u0e2d \u0e19\u0e34\u0e1e\u0e1e\u0e32\u0e19","protected":false,"verified":false,"followers_count":75808,"friends_count":502,"listed_count":170,"favourites_count":2821,"statuses_count":126487,"created_at":"Sat Feb 27 20:10:14 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0CC4ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/750181062\/9dcaaa2c23f4a95cf2d456bbc48172ae.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/750181062\/9dcaaa2c23f4a95cf2d456bbc48172ae.jpeg","profile_background_tile":true,"profile_link_color":"FF12B8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"575749","profile_text_color":"34F209","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656801264794099712\/8mZ0or6a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656801264794099712\/8mZ0or6a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118163698\/1435832163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":153,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"planpan","name":"\u0e1b\u0e49\u0e32\u0e41\u0e1e\u0e25\u0e19\u2122","id":118163698,"id_str":"118163698","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858779459584,"id_str":"663727858779459584","text":"RT @1DUpdateGR: The boys will be on Grimmy's Radio Show on Monday, 16th of November! @onedirection Artist Of The Year #AMAS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32625905,"id_str":"32625905","name":"Shawna J","screen_name":"ShawnaJoh","location":"Seattle, WA","url":null,"description":"I'm the old one. :)","protected":false,"verified":false,"followers_count":99,"friends_count":90,"listed_count":1,"favourites_count":444,"statuses_count":6986,"created_at":"Fri Apr 17 22:25:16 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657740585726423041\/fU6iapAV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657740585726423041\/fU6iapAV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:37 +0000 2015","id":663709527427194880,"id_str":"663709527427194880","text":"The boys will be on Grimmy's Radio Show on Monday, 16th of November! @onedirection Artist Of The Year #AMAS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1625254490,"id_str":"1625254490","name":"1D Updates","screen_name":"1DUpdateGR","location":"Greece","url":"https:\/\/m.ask.fm\/One_Direction_Greece","description":"Updating on everything 1D & Zayn. Thanks for following || Made In The AM is available for pre-order now: http:\/\/smarturl.it\/1DmitamDXiT","protected":false,"verified":false,"followers_count":2563,"friends_count":139,"listed_count":21,"favourites_count":15366,"statuses_count":15409,"created_at":"Sat Jul 27 11:20:10 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F4F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461814191620239360\/4zjqqQo3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461814191620239360\/4zjqqQo3.jpeg","profile_background_tile":true,"profile_link_color":"15A5ED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660753648096538624\/qMgEBnlR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660753648096538624\/qMgEBnlR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1625254490\/1446370919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[{"text":"AMAS","indices":[103,108]}],"urls":[],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[69,82]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAS","indices":[119,124]}],"urls":[],"user_mentions":[{"screen_name":"1DUpdateGR","name":"1D Updates","id":1625254490,"id_str":"1625254490","indices":[3,14]},{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[85,98]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027657"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813014017,"id_str":"663727858813014017","text":"@uduki_nari \u5408\u683c\u304c\u5168\u3066\u3058\u3083\u306a\u3044\u3082\u3093\u306d\u2026\u2026\n\u901a\u904e\u70b9\u3092\u4e57\u308a\u8d8a\u3048\u305f\u5f8c\u3082\u5fdc\u63f4\u3057\u3066\u308b\u304b\u3089\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727001585369088,"in_reply_to_status_id_str":"663727001585369088","in_reply_to_user_id":3039657246,"in_reply_to_user_id_str":"3039657246","in_reply_to_screen_name":"uduki_nari","user":{"id":3184402230,"id_str":"3184402230","name":"\u521d\u98a8@\u5922\u898b\u308b\u9752\u304d\u65c5\u4eba","screen_name":"wind_phantomile","location":"\u5e4c\u7b75\u6cca\u5730\u3000\u30d6\u30ea\u30fc\u30ac\u30eb\u6751","url":null,"description":"\u98a8\u306e\u30af\u30ed\u30ce\u30a2\u3092\u53d6\u308a\u5165\u308c\u305f\u3001\u8266\u3053\u308c\u975e\u516c\u5f0f\u4e8c\u6b21\u5275\u4f5c\u30ad\u30e3\u30e9\u306e\u521d\u98a8\u3067\u3059\u3001\u308f\u3063\u3075\u30fc\uff01\u30a2\u30a4\u30b3\u30f3\u306f@itimi\u3055\u3093\u304b\u3089\u9802\u3044\u305f\u308f\u3001\u3068\u3045\u3089\u3063\u3071\u3002\u30d8\u30c3\u30c0\u30fc\u753b\u50cf\u306f\u30aa\u30ea\u30a8\u30f3\u30bf\u30eb\u30d6\u30eb\u30fc\u9752\u306e\u5929\u5916\u306e\u3001\u3058\u3063\u3061\u3083\u3093\u306e\u8239\u306e\u7d75\u3088\u3001\u30eb\u30d7\u30eb\u30c9\u30a5\u266a","protected":false,"verified":false,"followers_count":179,"friends_count":217,"listed_count":3,"favourites_count":164,"statuses_count":7215,"created_at":"Sun May 03 18:26:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660703570505822208\/vIciawJ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660703570505822208\/vIciawJ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184402230\/1438837919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uduki_nari","name":"\u536f\u6708","id":3039657246,"id_str":"3039657246","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858796244992,"id_str":"663727858796244992","text":"\u751f\u610f\u6c17\u306a\uff11\u5e74\u3060\u306a\u3041\u3002\ud83d\ude21\ud83d\udca2\uff08\u7b11\uff09\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228347486,"id_str":"3228347486","name":"\u3072\u304b\u308b.","screen_name":"hikaru25481009","location":"No basket. No life.","url":null,"description":"OHGIDAI\u2741SJC\u27412500HR\u2741BBC#7#77\u2741pure champs\u2741\uff71\uff72\uff7a\uff9d\u5de6","protected":false,"verified":false,"followers_count":195,"friends_count":167,"listed_count":1,"favourites_count":697,"statuses_count":879,"created_at":"Wed May 27 15:55:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657786362712592384\/snoii7vU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657786362712592384\/snoii7vU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228347486\/1447073823","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027661"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858783678464,"id_str":"663727858783678464","text":"\u062d\u0633\u0628\u064a \u0627\u0644\u0644\u0647 \u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0647\u0648 \u0639\u0644\u064a\u0647 \u062a\u0648\u0643\u0644\u062a \u0648\u0647\u0648 \u0631\u0628 \u0627\u0644\u0639\u0631\u0634 \u0627\u0644\u0639\u0638\u064a\u0645 . ( \u0633\u0628\u0639 \u0645\u0631\u0627\u062a \u062d\u064a\u0646 \u064a\u0635\u0628\u062d \u0648\u064a\u0645\u0633\u064a) #\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621 #Hadith","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2199363226,"id_str":"2199363226","name":"\u0635\u062f\u0642\u06c1\u064e \u0644\u0623\u0628\u064e\u064a \u0624\u0627\u0645\u064a\u2661 '","screen_name":"DaD_1432","location":null,"url":null,"description":"\u200f\u0633\u0623\u0638\u0644 \u0627\u0631\u0648\u064a \u0631\u0648\u062d\u0643\u0645 \u0627\u0644\u0631\u0627\u062d\u0650\u0644\u06c1 \u0628\u0627\u0644\u062f\u0639\u0627\u0621 \u0625\u0644\u0649\u0652 \u0627\u06ba\u0652 \u0646\u0644\u0642\u0627\u0643\u0645 \u0628\u0625\u0630\u0646 \u0627\u0644\u0644\u06c1 \u0641\u0650\u0640\u064a \u0627\u0644\u062c\u0646\u06c1 \u0631\u062d\u0645\u0643\u0645 \u0627\u0644\u0644\u06c1 \u0631\u062d\u0645\u0640\u06c3 \u062a\u062c\u064a\u0631\u0643\u0645 \u0645\u06ba\u0652 \u0627\u0644\u0646\u0627\u0631 \u0648 \u062a\u062f\u062e\u0644\u0643\u0645 \u0627\u0644\u062c\u0646\u06c1.","protected":false,"verified":false,"followers_count":175,"friends_count":220,"listed_count":1,"favourites_count":156,"statuses_count":21453,"created_at":"Thu Nov 28 15:18:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462863388339896320\/Xe5xjYFF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462863388339896320\/Xe5xjYFF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199363226\/1388705336","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621","indices":[85,106]},{"text":"Hadith","indices":[107,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080027658"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800459776,"id_str":"663727858800459776","text":"GENERATIONS\u306e\u3088\u3055\u306f\u5206\u304b\u3063\u3066\u3082\u3089\u308f\u306a\u304f\u3066\u5e73\u6c17\u30c7\u30fc\u30b9\n\u3046\u3061\u304c\u597d\u304d\u306a\u3060\u3051\u30c0\u30ab\u30e9\u30fc\n\u597d\u304d\u306b\u306a\u308b\u4eba\u306f\u4eba\u305d\u308c\u305e\u308c\u30c0\u30ab\u30e9\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317811708,"id_str":"3317811708","name":"\u30a2\u30b7\u30e1","screen_name":"cho_t_r","location":"\u9759\u304b\u306b\u9685\u3063\u3053\u3050\u3089\u3057\u2365\u20dd","url":"http:\/\/Instagram.com\/cho__ami09","description":"\u2020\u2020 chuo9 \u00bb abegaku \u2765\u00bbgenerations reo sano \u2020\u2020","protected":false,"verified":false,"followers_count":340,"friends_count":306,"listed_count":0,"favourites_count":1918,"statuses_count":2797,"created_at":"Mon Aug 17 15:11:06 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661099723193872384\/Im9R0Ocf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661099723193872384\/Im9R0Ocf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317811708\/1446468578","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858800566272,"id_str":"663727858800566272","text":"@heykaylan_ heaven is a place on earth #burgerfi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663613352288104448,"in_reply_to_status_id_str":"663613352288104448","in_reply_to_user_id":38303160,"in_reply_to_user_id_str":"38303160","in_reply_to_screen_name":"heykaylan_","user":{"id":204821960,"id_str":"204821960","name":"BURGERFI","screen_name":"BURGERFI","location":"USA","url":"http:\/\/www.burgerfi.com","description":"#burgerfi #allnatural","protected":false,"verified":false,"followers_count":10062,"friends_count":2605,"listed_count":116,"favourites_count":3804,"statuses_count":11252,"created_at":"Tue Oct 19 14:58:40 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"8FC23E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588771733546536961\/XuhGj9AM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588771733546536961\/XuhGj9AM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204821960\/1446816910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"burgerfi","indices":[39,48]}],"urls":[],"user_mentions":[{"screen_name":"heykaylan_","name":"gurl.","id":38303160,"id_str":"38303160","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027662"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858779422720,"id_str":"663727858779422720","text":"RT @TweetyTar: \u0644\u0645\u0627 \u062a\u0643\u0648\u0646 \u0628\u062f\u0643 \u062a\u0627\u0643\u0644 \u0642\u062a\u0644\u0629 \n\u0648\u0627\u0645\u0643 \u062a\u0642\u0648\u0644 \u0644\u0623\u062e\u0648\u0627\u062a\u0643 \u0639\u0637\u0648\u0646\u064a \u0627\u0644\u0634\u062d\u0627\u0637\u0629 https:\/\/t.co\/ORmAXnXeOq","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451735274,"id_str":"451735274","name":"\u0623\u0628\u0648 \u0632\u064a\u0646\u0651\u064e\u0628","screen_name":"Amoorrie","location":"Lebanese\/Syrian","url":null,"description":"\u0645\u0648\u0644\u0627\u062a\u064a\u061b\n\u0645\u0627 \u0627\u0644\u062d\u064a\u0627\u0629\u064f \u0628\u0639\u062f\u0643\u0650\n\u0645\u0627 \u0646\u0641\u0639\u064a \u062f\u0648\u0646\u0643\u0650\n\u0645\u0627 \u0625\u0633\u0645\u064a \u062f\u0648\u0646 \u0625\u0633\u0645\u0643\u0650\n\u0645\u0627 \u062e\u0627\u062a\u0645\u062a\u064a \u062f\u0648\u0646 \u062e\u062f\u0645\u062a\u0643\u0650\n\u0645\u0627 \u0635\u0648\u062a\u064a \u062f\u0648\u0646 \u0642\u0648\u0644\u064a \u0644\u0628\u064a\u0643\u0650\n\u0644\u0627 \u0623\u0639\u064a\u0634 \u0645\u0646 \u062f\u0648\u0646\u0643\u0650 \u0648\u0644\u0627 \u0623\u0645\u0648\u062a \u0625\u0644\u0627 \u0641\u062f\u0627\u0643\u0650\n30.11.1997","protected":false,"verified":false,"followers_count":317,"friends_count":69,"listed_count":3,"favourites_count":7354,"statuses_count":40996,"created_at":"Sat Dec 31 23:13:37 +0000 2011","utc_offset":14400,"time_zone":"Baku","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659351956402495489\/xA5FW-tU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659351956402495489\/xA5FW-tU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451735274\/1446906044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 15:26:10 +0000 2015","id":660477871551479809,"id_str":"660477871551479809","text":"\u0644\u0645\u0627 \u062a\u0643\u0648\u0646 \u0628\u062f\u0643 \u062a\u0627\u0643\u0644 \u0642\u062a\u0644\u0629 \n\u0648\u0627\u0645\u0643 \u062a\u0642\u0648\u0644 \u0644\u0623\u062e\u0648\u0627\u062a\u0643 \u0639\u0637\u0648\u0646\u064a \u0627\u0644\u0634\u062d\u0627\u0637\u0629 https:\/\/t.co\/ORmAXnXeOq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882814692,"id_str":"2882814692","name":"\u063a\u0627\u0631\u062f\u064a\u0646\u064a\u0627","screen_name":"TweetyTar","location":"\u0644\u0628\u0646\u0627\u0646","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f(\u0644\u0628\u0646\u0627\u0646\u064a\u0629\/\u062f\u0645\u064a \u0628\u0631\u0634\u0644\u0648\u0646\u064a\/\u0645\u062f\u0645\u0646\u0629 \u0631\u064a\u062a\u0648\u064a\u062a\/\u0645\u0627 \u062e\u0635\u0646\u064a \u0628\u0627\u0644\u0633\u064a\u0627\u0633\u0629 \n \u0628\u063a\u0631\u062f \u0634\u0648 \u0645\u0627 \u0628\u064a\u0637\u0644\u0639 \u0628\u0631\u0627\u0633\u064a\/\u0648\u0646\u0635\u064a\u062d\u0629 \u0627\u0639\u0645\u0644 \u0627\u0648\u0641 \u0631\u064a\u062a\u0648\u064a\u062a \u0628\u0633 \u062a\u0639\u0645\u0644 \u0641\u0648\u0644\u0648\n\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0628\u0627\u0644\u0641\u0641\u0648\u0631\u064a\u062a\nsnap:tweety_tar","protected":false,"verified":false,"followers_count":5842,"friends_count":1077,"listed_count":16,"favourites_count":9416,"statuses_count":126198,"created_at":"Thu Oct 30 02:39:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607791383726817280\/e4QvWyCE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607791383726817280\/e4QvWyCE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882814692\/1436193206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660477869567508480,"id_str":"660477869567508480","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","url":"https:\/\/t.co\/ORmAXnXeOq","display_url":"pic.twitter.com\/ORmAXnXeOq","expanded_url":"http:\/\/twitter.com\/TweetyTar\/status\/660477871551479809\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":715,"h":412,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660477869567508480,"id_str":"660477869567508480","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","url":"https:\/\/t.co\/ORmAXnXeOq","display_url":"pic.twitter.com\/ORmAXnXeOq","expanded_url":"http:\/\/twitter.com\/TweetyTar\/status\/660477871551479809\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":715,"h":412,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TweetyTar","name":"\u063a\u0627\u0631\u062f\u064a\u0646\u064a\u0627","id":2882814692,"id_str":"2882814692","indices":[3,13]}],"symbols":[],"media":[{"id":660477869567508480,"id_str":"660477869567508480","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","url":"https:\/\/t.co\/ORmAXnXeOq","display_url":"pic.twitter.com\/ORmAXnXeOq","expanded_url":"http:\/\/twitter.com\/TweetyTar\/status\/660477871551479809\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":715,"h":412,"resize":"fit"}},"source_status_id":660477871551479809,"source_status_id_str":"660477871551479809","source_user_id":2882814692,"source_user_id_str":"2882814692"}]},"extended_entities":{"media":[{"id":660477869567508480,"id_str":"660477869567508480","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSp9H32UAAALLHb.jpg","url":"https:\/\/t.co\/ORmAXnXeOq","display_url":"pic.twitter.com\/ORmAXnXeOq","expanded_url":"http:\/\/twitter.com\/TweetyTar\/status\/660477871551479809\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":715,"h":412,"resize":"fit"}},"source_status_id":660477871551479809,"source_status_id_str":"660477871551479809","source_user_id":2882814692,"source_user_id_str":"2882814692"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080027657"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813005824,"id_str":"663727858813005824","text":"RT @AnimaIposts: My heart \ud83d\udc99\ud83d\ude2d OMG https:\/\/t.co\/2Zy22FQ9le","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324725136,"id_str":"324725136","name":"tiffani.","screen_name":"thattiffanigirl","location":"TX","url":null,"description":"Proverbs 31:25 sc.\/\/thattiffanigirl","protected":false,"verified":false,"followers_count":692,"friends_count":551,"listed_count":1,"favourites_count":9819,"statuses_count":16348,"created_at":"Mon Jun 27 03:29:08 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727261384773632\/25cWpfCO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727261384773632\/25cWpfCO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324725136\/1447021113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:47:08 +0000 2015","id":662778273659678720,"id_str":"662778273659678720","text":"My heart \ud83d\udc99\ud83d\ude2d OMG https:\/\/t.co\/2Zy22FQ9le","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152778479,"id_str":"152778479","name":"Animals","screen_name":"AnimaIposts","location":null,"url":null,"description":"Posting the cutest animals (we do not own the content we post) *Parody account* Request removal of image by DM","protected":false,"verified":false,"followers_count":276302,"friends_count":2,"listed_count":225,"favourites_count":3,"statuses_count":2292,"created_at":"Sun Jun 06 21:23:04 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618864915558707200\/xyOFU1tT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618864915558707200\/xyOFU1tT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152778479\/1368452415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2297,"favorite_count":3550,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Zy22FQ9le","expanded_url":"http:\/\/vine.co\/v\/OnteTTYp30q","display_url":"vine.co\/v\/OnteTTYp30q","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Zy22FQ9le","expanded_url":"http:\/\/vine.co\/v\/OnteTTYp30q","display_url":"vine.co\/v\/OnteTTYp30q","indices":[34,57]}],"user_mentions":[{"screen_name":"AnimaIposts","name":"Animals","id":152778479,"id_str":"152778479","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813038594,"id_str":"663727858813038594","text":"Mita #LaDiosa Mica Viciconte https:\/\/t.co\/8QbF3iuS41\u2026 #FansAwards2015","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3802960512,"id_str":"3802960512","name":"Lucas \u00a5","screen_name":"_Micaelisto_","location":"C\u00f3rdoba, Argentina.","url":null,"description":"Micaela Viciconte \u2606 | Paula amoedo \u2661 | Equipo verde | Por mas que pase el tiempo, sus sonrisas siempre quedaran en mi memoria.","protected":false,"verified":false,"followers_count":148,"friends_count":85,"listed_count":0,"favourites_count":83,"statuses_count":1512,"created_at":"Tue Oct 06 12:16:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660877033229144064\/Tod2I6lU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660877033229144064\/Tod2I6lU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3802960512\/1446396844","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LaDiosa","indices":[5,13]},{"text":"FansAwards2015","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/8QbF3iuS41","expanded_url":"http:\/\/fwtv.tv\/fwenvivo\/fansa","display_url":"fwtv.tv\/fwenvivo\/fansa","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858792140801,"id_str":"663727858792140801","text":"RT @x920921o: \uc544\uae4c \uce58\ub974\uce58\ub974 \uba39\uc5c8\ub294\ub370 \ubcc4\ub85c\uc600\ub2e4 \uadf8\ub0e5 \ub178\ub791\ud1b5\ub2ed \uba39\uc744\uac78 \ud6c4\ud68c\ub41c\ub2e4 \ub0b4 \ud53c\uac19\uc740 \ub9cc\uc6d0 #EXO \uc694\uc998 \uc54c\ubc14 \uc548\uac00\uc11c \ub3c8\uc774 \uc5c6\ub2e4 \uc9dc\uc99d\ub098 #CALLMEBABY \ub098\uc778\ub354\ud558\uc774\uce20 \ubd10\uc57c\ub418\ub294\ub370 #2015MAMA \ud55c \uc0bc\uc2ed\ub9cc\uc6d0\ub9cc \ud558\ub298\uc5d0\uc11c \ub5a8\uc5b4\uc84c\uc73c\uba74 \uc88b\uaca0\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3505765755,"id_str":"3505765755","name":"exol","screen_name":"exotvcaps","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":392,"listed_count":0,"favourites_count":2,"statuses_count":16,"created_at":"Mon Aug 31 21:38:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638472263302430720\/vjxs4Bs7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638472263302430720\/vjxs4Bs7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3505765755\/1441058625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727706631094272,"id_str":"663727706631094272","text":"\uc544\uae4c \uce58\ub974\uce58\ub974 \uba39\uc5c8\ub294\ub370 \ubcc4\ub85c\uc600\ub2e4 \uadf8\ub0e5 \ub178\ub791\ud1b5\ub2ed \uba39\uc744\uac78 \ud6c4\ud68c\ub41c\ub2e4 \ub0b4 \ud53c\uac19\uc740 \ub9cc\uc6d0 #EXO \uc694\uc998 \uc54c\ubc14 \uc548\uac00\uc11c \ub3c8\uc774 \uc5c6\ub2e4 \uc9dc\uc99d\ub098 #CALLMEBABY \ub098\uc778\ub354\ud558\uc774\uce20 \ubd10\uc57c\ub418\ub294\ub370 #2015MAMA \ud55c \uc0bc\uc2ed\ub9cc\uc6d0\ub9cc \ud558\ub298\uc5d0\uc11c \ub5a8\uc5b4\uc84c\uc73c\uba74 \uc88b\uaca0\ub2e4 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270636358,"id_str":"2270636358","name":"\uc21c\ub529\uc774 \ubabd\uc774","screen_name":"x920921o","location":"\uc885\ub300\uac00 \ub178\ub798\ud558\ub294\uacf3","url":null,"description":"\ub108\ub85c \uc778\ud574 \uc54c\uac8c \ub41c \ubaa8\ub4e0 \uac8c \uc544\ub984\ub2e4\uc6cc","protected":false,"verified":false,"followers_count":68,"friends_count":266,"listed_count":0,"favourites_count":37,"statuses_count":10026,"created_at":"Tue Dec 31 17:32:49 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659735252735098880\/UdXmk3zd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659735252735098880\/UdXmk3zd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270636358\/1444487789","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[44,48]},{"text":"CALLMEBABY","indices":[69,80]},{"text":"2015MAMA","indices":[94,103]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[127,136]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[58,62]},{"text":"CALLMEBABY","indices":[83,94]},{"text":"2015MAMA","indices":[108,117]}],"urls":[],"user_mentions":[{"screen_name":"x920921o","name":"\uc21c\ub529\uc774 \ubabd\uc774","id":2270636358,"id_str":"2270636358","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080027660"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813128704,"id_str":"663727858813128704","text":"@momgsy \u0641\u064a \u062e\u062f\u0645\u0629 \u062a\u0648\u0635\u064a\u0644 \u064a\u0627\u0644\u063a\u0627\u0644\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663602934014455808,"in_reply_to_status_id_str":"663602934014455808","in_reply_to_user_id":2915947226,"in_reply_to_user_id_str":"2915947226","in_reply_to_screen_name":"momgsy","user":{"id":565790718,"id_str":"565790718","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644 \u0636\u064a\u062f\u0627\u0646","screen_name":"kw771","location":" \u062d\u064a\u0627\u0643\u0645 \u0633\u0646\u0627\u0628 snapshat :- @kw772","url":"http:\/\/Instagram.com\/kw779","description":"\u0634\u0640\u0627\u0639\u0631 \u0643\u0648\u064a\u062a\u064a \u060c\u060c \u0631\u0626\u064a\u0633 \u0641\u0631\u0639 \u0645\u0643\u062a\u0628 F16 \u0641\u064a \u0627\u0644\u0643\u0648\u064a\u062a \u0648\u0645\u0645\u062b\u0644 \u0646\u0627\u062f\u064a \u0627\u0644\u0634\u0628\u0627\u0628 \u0627\u0644\u0633\u0639\u0648\u062f\u064a \u0628\u0635\u0641\u0647 \u0648\u062f\u064a\u0647 \u0648\u0645\u062a\u0639\u0627\u0648\u0646 \u0645\u0639 \u0639\u062f\u0629 \u0627\u0646\u062f\u064a\u0629 \u062e\u0644\u064a\u062c\u064a\u0647 \/ \u0623\u0637\u0644\u0642\u062a \u0639\u0646\u0627\u0646\u064a \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0647","protected":false,"verified":false,"followers_count":55989,"friends_count":221,"listed_count":81,"favourites_count":474,"statuses_count":18381,"created_at":"Sat Apr 28 20:10:10 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649886298472247296\/Mi1hXzqX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649886298472247296\/Mi1hXzqX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565790718\/1445873441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"momgsy","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062c\u0647\u0646\u064a #\u0627\u0644\u0634\u064a\u062e","id":2915947226,"id_str":"2915947226","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813026304,"id_str":"663727858813026304","text":"\u3044\u3084\u3001\u3055\u3063\u304d\u4e2d\u65ad\u3067\u304d\u305f\u3063\u3066\u3086\u30fc\u305f\u304b\u3089\u3001\u304a\u3081\u3067\u3068\u3063\u3066\u3002 \/ @shimaraito2c22 \u30ad\u30e3\u30b9 https:\/\/t.co\/0RrtPHxCva","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253463646,"id_str":"3253463646","name":"\u84bc@\u6d3b\u5b57\u4e2d\u6bd2(\u4f4e\u6d6e\u4e0a","screen_name":"RasennkaidannAo","location":"\u30b5\u30f3\u30b0\u30a3\u30cd\u30e0(\u7b11)","url":"http:\/\/nanos.jp\/0816miyu\/","description":"\u7d42\u308f\u30bb\u30e9\u597d\u304d\u3059\u304e\u3066\u8f9b\u3044\u3002\u30c7\u30a3\u30a2\u30e9\u30d0\u3001\u30a2\u30aa\u30cf\u30eb\u3001\u3044\u306c\u307c\u304f\u3001\u9280\u9b42\u3001fate\u3001\u9ed2\u30d0\u30b9\u3001\u30ad\u30e5\u30fc\u30c6\u30a3\u30af\u30eb\u63a2\u5075\u3001\u30b5\u30a4\u30b3\u30d1\u30b9\u3001\u8272\u3005\u597d\u304d\u3002\u4e8c\u6b21\u5275\u4f5c\u306e\u30b5\u30a4\u30c8\u3084\u3063\u3066\u307e\u3075\u3002\u3068\u3046\u3089\u3076\u59cb\u3081\u305f\u3088\uff01\u30c4\u30a4\u30d7\u30ed\u2193\nhttp:\/\/t.co\/XBEx4Gzwf3 \u6df1\u591c\u3055\u3093\u306e\u30a2\u30a4\u30b3\u30f3\u753b\u50cf\u306f\u6708\u68ee\u3046\u3055\u3053\u69d8(@usamorin)\u3088\u308a\u8a31\u53ef\u3092\u9802\u3044\u3066\u304a\u501f\u308a\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1004,"friends_count":1414,"listed_count":15,"favourites_count":1206,"statuses_count":4234,"created_at":"Tue Jun 23 10:11:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"4B0082","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625866439497379841\/wULBXCDL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625866439497379841\/wULBXCDL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253463646\/1435217939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0RrtPHxCva","expanded_url":"http:\/\/cas.st\/cd3a938","display_url":"cas.st\/cd3a938","indices":[49,72]}],"user_mentions":[{"screen_name":"shimaraito2c22","name":"RAY.M@nana\u6c11","id":1179064362,"id_str":"1179064362","indices":[29,44]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080027665"} +{"delete":{"status":{"id":663718627137441792,"id_str":"663718627137441792","user_id":3130158277,"user_id_str":"3130158277"},"timestamp_ms":"1447080027780"}} +{"delete":{"status":{"id":662251811911237632,"id_str":"662251811911237632","user_id":2650564010,"user_id_str":"2650564010"},"timestamp_ms":"1447080027791"}} +{"delete":{"status":{"id":662253154101137408,"id_str":"662253154101137408","user_id":2268712412,"user_id_str":"2268712412"},"timestamp_ms":"1447080027842"}} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858817368064,"id_str":"663727858817368064","text":"@SergiCastanye Lo que dicen estos de exilio son gilipollas pasas de ellos.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":158336392,"in_reply_to_user_id_str":"158336392","in_reply_to_screen_name":"SergiCastanye","user":{"id":177521477,"id_str":"177521477","name":"francisco cabrera","screen_name":"canariion","location":"Espa\u00f1a","url":null,"description":null,"protected":false,"verified":false,"followers_count":396,"friends_count":1116,"listed_count":2,"favourites_count":34,"statuses_count":12073,"created_at":"Thu Aug 12 10:29:32 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3729042807\/4a5ae15adcb78be76acc4261e7f91806_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3729042807\/4a5ae15adcb78be76acc4261e7f91806_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SergiCastanye","name":"Sergi Casta\u00f1\u00e9","id":158336392,"id_str":"158336392","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080027666"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858787815424,"id_str":"663727858787815424","text":"Get Best Price For Women's Los Angeles Angels of Anaheim Deep V-Neck Tee Get Now #Kohls at https:\/\/t.co\/AypwqQoWT3 https:\/\/t.co\/6jasSSNJUg","source":"\u003ca href=\"http:\/\/filmsperu.com\" rel=\"nofollow\"\u003eFilmsperu.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83056685,"id_str":"83056685","name":"Sexyzshop","screen_name":"Girlshopz","location":"USA","url":"https:\/\/www.facebook.com\/Sexy.School.Girl.Costumes","description":"Halloween Costumes 2015","protected":false,"verified":false,"followers_count":20673,"friends_count":2492,"listed_count":14,"favourites_count":114,"statuses_count":19079,"created_at":"Sat Oct 17 04:38:56 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662172888741474305\/KJlysCWE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662172888741474305\/KJlysCWE.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662142923606114304\/sjnJih-p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662142923606114304\/sjnJih-p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83056685\/1446709511","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Kohls","indices":[81,87]}],"urls":[{"url":"https:\/\/t.co\/AypwqQoWT3","expanded_url":"http:\/\/goo.gl\/nUyoRw","display_url":"goo.gl\/nUyoRw","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663727858670395392,"id_str":"663727858670395392","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-IuUYAAVep5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-IuUYAAVep5.jpg","url":"https:\/\/t.co\/6jasSSNJUg","display_url":"pic.twitter.com\/6jasSSNJUg","expanded_url":"http:\/\/twitter.com\/Girlshopz\/status\/663727858787815424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727858670395392,"id_str":"663727858670395392","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-IuUYAAVep5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-IuUYAAVep5.jpg","url":"https:\/\/t.co\/6jasSSNJUg","display_url":"pic.twitter.com\/6jasSSNJUg","expanded_url":"http:\/\/twitter.com\/Girlshopz\/status\/663727858787815424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027659"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858779484160,"id_str":"663727858779484160","text":"\u0627\u0644\u0633\u0643\u0631\u062a\u064a\u0631\u0647 \u0645\u0639 \u0645\u062f\u064a\u0631\u0647\u0627 \u0641\u0649 \u0627\u0644\u0628\u064a\u062a \u0646\u064a\u0643 \u062a\u0635\u0648\u064a\u0631 \u062e\u0641\u0649..https:\/\/t.co\/pPHOvwZxbH\n\n#\u0645\u062d\u0627\u0631\u0645\n#\u0645\u0635\n#\u0641\u064a\u062f\u064a\u0648_\u0633\u0643\u0633\nZSND https:\/\/t.co\/D0YKAO1pHM","source":"\u003ca href=\"http:\/\/www.insuranse-wd.com\/\" rel=\"nofollow\"\u003e\u062d\u0628 \u0645\u0627\u0644\u0627 \u0646\u0647\u0627\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4109537654,"id_str":"4109537654","name":"\u062a\u0631\u0643\u064a \u0627\u0644\u0645\u0637\u0631","screen_name":"samanthakerr424","location":"Saudi Arabia","url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":1,"favourites_count":0,"statuses_count":3861,"created_at":"Tue Nov 03 05:23:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663089835163320320\/x3cAreRf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663089835163320320\/x3cAreRf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u062d\u0627\u0631\u0645","indices":[69,75]},{"text":"\u0645\u0635","indices":[76,79]},{"text":"\u0641\u064a\u062f\u064a\u0648_\u0633\u0643\u0633","indices":[80,90]}],"urls":[{"url":"https:\/\/t.co\/pPHOvwZxbH","expanded_url":"http:\/\/goo.gl\/YlbSfS","display_url":"goo.gl\/YlbSfS","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663727858225836032,"id_str":"663727858225836032","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-HEU8AACtbZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-HEU8AACtbZ.jpg","url":"https:\/\/t.co\/D0YKAO1pHM","display_url":"pic.twitter.com\/D0YKAO1pHM","expanded_url":"http:\/\/twitter.com\/samanthakerr424\/status\/663727858779484160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"large":{"w":600,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":459,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727858225836032,"id_str":"663727858225836032","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-HEU8AACtbZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-HEU8AACtbZ.jpg","url":"https:\/\/t.co\/D0YKAO1pHM","display_url":"pic.twitter.com\/D0YKAO1pHM","expanded_url":"http:\/\/twitter.com\/samanthakerr424\/status\/663727858779484160\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"large":{"w":600,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":459,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080027657"} +{"delete":{"status":{"id":662253443503886336,"id_str":"662253443503886336","user_id":3277514256,"user_id_str":"3277514256"},"timestamp_ms":"1447080027887"}} +{"delete":{"status":{"id":662254240438480896,"id_str":"662254240438480896","user_id":3218865001,"user_id_str":"3218865001"},"timestamp_ms":"1447080027882"}} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858808942592,"id_str":"663727858808942592","text":"@ddlovato #YAASDemi","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":1613491148,"id_str":"1613491148","name":"idk","screen_name":"beawithdemi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":206,"friends_count":870,"listed_count":1,"favourites_count":20,"statuses_count":2518,"created_at":"Mon Jul 22 19:22:57 +0000 2013","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000045150153\/c0c818983961613ddd0432146ccac951.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000045150153\/c0c818983961613ddd0432146ccac951.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000347176810\/0614f7a13615a5e77f8a448df194043e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000347176810\/0614f7a13615a5e77f8a448df194043e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613491148\/1377292482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASDemi","indices":[10,19]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080027664"} +{"delete":{"status":{"id":662254504641888256,"id_str":"662254504641888256","user_id":2482049190,"user_id_str":"2482049190"},"timestamp_ms":"1447080027889"}} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858783793153,"id_str":"663727858783793153","text":"https:\/\/t.co\/muPt9gl2pZ https:\/\/t.co\/BQlk2Pa0IT","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2423840167,"id_str":"2423840167","name":"Sexy Teen Selfies","screen_name":"sexyteenselfiee","location":null,"url":null,"description":"The home of sexy teen selfies","protected":false,"verified":false,"followers_count":3270,"friends_count":2335,"listed_count":5,"favourites_count":0,"statuses_count":11840,"created_at":"Wed Apr 02 13:44:11 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614632480763707392\/rXX2BmgR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614632480763707392\/rXX2BmgR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423840167\/1435374820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/muPt9gl2pZ","expanded_url":"http:\/\/ift.tt\/1Nmypyr","display_url":"ift.tt\/1Nmypyr","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727858704101376,"id_str":"663727858704101376","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-I2WsAAupIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-I2WsAAupIY.jpg","url":"https:\/\/t.co\/BQlk2Pa0IT","display_url":"pic.twitter.com\/BQlk2Pa0IT","expanded_url":"http:\/\/twitter.com\/sexyteenselfiee\/status\/663727858783793153\/photo\/1","type":"photo","sizes":{"medium":{"w":458,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":556,"resize":"fit"},"large":{"w":458,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727858704101376,"id_str":"663727858704101376","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-I2WsAAupIY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-I2WsAAupIY.jpg","url":"https:\/\/t.co\/BQlk2Pa0IT","display_url":"pic.twitter.com\/BQlk2Pa0IT","expanded_url":"http:\/\/twitter.com\/sexyteenselfiee\/status\/663727858783793153\/photo\/1","type":"photo","sizes":{"medium":{"w":458,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":556,"resize":"fit"},"large":{"w":458,"h":750,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080027658"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858813001729,"id_str":"663727858813001729","text":"RT @_All1DWorld: RT & Fav if Harry Styles or the other 4 boys aren't following you bc i will help you\ud83d\ude0b\u270c\ud83c\udffc\ufe0f\n\nMBF me and have my notifications\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3045051794,"id_str":"3045051794","name":"^_^ :D Angie","screen_name":"DerangedMittens","location":"nowhere ","url":"https:\/\/www.youtube.com\/channel\/UCmCCx5Ag5JSVswRR4-8KIOg","description":"Do what ever you have to do to be happy.You should never make fun of something that a person cannot change about themselves. Friend (\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u26a1\ufe0f@Ineffablelovee","protected":false,"verified":false,"followers_count":469,"friends_count":421,"listed_count":2,"favourites_count":6561,"statuses_count":9224,"created_at":"Fri Feb 27 01:31:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626199928771973120\/PfgglrL3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626199928771973120\/PfgglrL3.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662469996338003968\/ZpQjhw76_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662469996338003968\/ZpQjhw76_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3045051794\/1446432743","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:19 +0000 2015","id":663721532296941568,"id_str":"663721532296941568","text":"RT & Fav if Harry Styles or the other 4 boys aren't following you bc i will help you\ud83d\ude0b\u270c\ud83c\udffc\ufe0f\n\nMBF me and have my notifications one","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":825049610,"id_str":"825049610","name":"RT FOR A 1D SOLO DM","screen_name":"_All1DWorld","location":"worldwide","url":null,"description":"Follow for 24\/7 updates on One Direction and Zayn Malik! Turn on notifications to stay updated! Pre-order 'Made In The AM' at the iTunes link below.","protected":false,"verified":false,"followers_count":56553,"friends_count":43704,"listed_count":14,"favourites_count":6260,"statuses_count":16143,"created_at":"Sat Sep 15 11:07:59 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662608462048808960\/1UaKy8Md_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662608462048808960\/1UaKy8Md_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/825049610\/1446813142","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":38,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_All1DWorld","name":"RT FOR A 1D SOLO DM","id":825049610,"id_str":"825049610","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080027665"} +{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727858796376064,"id_str":"663727858796376064","text":"https:\/\/t.co\/P0jUl8RmSf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093507134,"id_str":"3093507134","name":"Zaiza","screen_name":"zeziagazade","location":"Bak\u0131 \u2022Tdv","url":"http:\/\/www.instagram.com\/zaizaa_","description":"moonlight","protected":false,"verified":false,"followers_count":290,"friends_count":91,"listed_count":1,"favourites_count":2961,"statuses_count":1928,"created_at":"Tue Mar 17 12:00:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663414746528530432\/af7pxYBJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663414746528530432\/af7pxYBJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3093507134\/1446922858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727845517193220,"id_str":"663727845517193220","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9XuWcAQ5SgC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9XuWcAQ5SgC.jpg","url":"https:\/\/t.co\/P0jUl8RmSf","display_url":"pic.twitter.com\/P0jUl8RmSf","expanded_url":"http:\/\/twitter.com\/zeziagazade\/status\/663727858796376064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727845517193220,"id_str":"663727845517193220","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9XuWcAQ5SgC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9XuWcAQ5SgC.jpg","url":"https:\/\/t.co\/P0jUl8RmSf","display_url":"pic.twitter.com\/P0jUl8RmSf","expanded_url":"http:\/\/twitter.com\/zeziagazade\/status\/663727858796376064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080027661"} +{"delete":{"status":{"id":646689442523148288,"id_str":"646689442523148288","user_id":277747825,"user_id_str":"277747825"},"timestamp_ms":"1447080028129"}} +{"delete":{"status":{"id":662300449073074176,"id_str":"662300449073074176","user_id":384677807,"user_id_str":"384677807"},"timestamp_ms":"1447080028101"}} +{"delete":{"status":{"id":663727837816360960,"id_str":"663727837816360960","user_id":337402846,"user_id_str":"337402846"},"timestamp_ms":"1447080028283"}} +{"delete":{"status":{"id":641250956944904192,"id_str":"641250956944904192","user_id":3124125196,"user_id_str":"3124125196"},"timestamp_ms":"1447080028340"}} +{"delete":{"status":{"id":619729530132037632,"id_str":"619729530132037632","user_id":2228087984,"user_id_str":"2228087984"},"timestamp_ms":"1447080028341"}} +{"delete":{"status":{"id":663722406201204737,"id_str":"663722406201204737","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080028673"}} +{"delete":{"status":{"id":663722401994289153,"id_str":"663722401994289153","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080028684"}} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862994903040,"id_str":"663727862994903040","text":"RT @turkish_qatar: \u0644\u0645\u0627 \u062a\u0623\u0643\u0644 \u0627\u0644\u062e\u064a\u0627\u0631 \u0627\u0644\u0635\u0648\u062a \u0627\u0644\u0644\u064a \u064a\u0637\u0644\u0639 \u0635\u0648\u062a \u0639\u0638\u0627\u0645\u0647\u0627 \u0648 \u0647\u064a \u062a\u062a\u0643\u0633\u0631 \u064a\u0627 \u0642\u0627\u0633\u064a \u064a\u0627 \u0634\u0631\u064a\u0631 \u064a\u0627 \u0642\u0627\u062a\u0644 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a ! \u2639\ud83d\udd2a","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2152294786,"id_str":"2152294786","name":"\u0623\u064e\u062c\u0652\u0645\u064e\u0644 \u0625\u0646\u0633\u0622\u0646\u0647\u0640","screen_name":"rehama124","location":"Jeddah","url":null,"description":"\u0631\u0628\u064a \u0623\u0633\u0639\u0650\u062f \u0645\u0646 \u0623\u062d\u0628.. \u0639\u062f\u062f \u0645\u0627\u0636\u062e \u0642\u0644\u0628\u0647 \u0648\u0639\u062f\u062f \u0645\u0627\u0631\u0645\u0634\u062a \u0639\u064a\u0646\u0627\u0647..\u0648\u0623\u0628\u0639\u0650\u062f \u0639\u0646\u0647 \u0643\u0644 \u0633\u0648\u0621 \u064a\u0627\u0627\u0644\u0644\u0647..\u0648\u0648\u0641\u0642\u0646\u064a \u0648\u0625\u064a\u0627\u0647 \u0648\u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646 \u0644\u0645\u0627 \u062a\u062d\u0628 \u0648\u062a\u0631\u0636\u0649..(\u0662\u0660\u0660\u0661\/\u0661\/\u0662\u0660)","protected":false,"verified":false,"followers_count":790,"friends_count":1369,"listed_count":1,"favourites_count":894,"statuses_count":9253,"created_at":"Fri Oct 25 08:34:05 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663063083783467009\/nvvyTXf8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663063083783467009\/nvvyTXf8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2152294786\/1431449004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:58:59 +0000 2015","id":663022843978907649,"id_str":"663022843978907649","text":"\u0644\u0645\u0627 \u062a\u0623\u0643\u0644 \u0627\u0644\u062e\u064a\u0627\u0631 \u0627\u0644\u0635\u0648\u062a \u0627\u0644\u0644\u064a \u064a\u0637\u0644\u0639 \u0635\u0648\u062a \u0639\u0638\u0627\u0645\u0647\u0627 \u0648 \u0647\u064a \u062a\u062a\u0643\u0633\u0631 \u064a\u0627 \u0642\u0627\u0633\u064a \u064a\u0627 \u0634\u0631\u064a\u0631 \u064a\u0627 \u0642\u0627\u062a\u0644 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a ! \u2639\ud83d\udd2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149069040,"id_str":"149069040","name":"\u062a\u0631\u0643\u0634 \u0642\u0637\u0631 \u263a","screen_name":"turkish_qatar","location":"\u0627\u0644\u0631\u064a\u0627\u0646, \u062f\u0648\u0644\u0629 \u0642\u0637\u0631","url":"http:\/\/ask.fm\/Qataris","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0634\u0627\u0639\u0631 \u0648\u0643\u0627\u062a\u0628 \u0648\u062f\u0643\u062a\u0648\u0631 \u0648\u0627\u0643\u0630\u0628 \u0648\u0634\u0643\u0631\u0627 snapchat: turkishz502 kik: turkish_qatar BB 569D9BD3","protected":false,"verified":false,"followers_count":96265,"friends_count":9569,"listed_count":223,"favourites_count":5361,"statuses_count":30514,"created_at":"Fri May 28 09:56:34 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641281137533259776\/eW0L9HBf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641281137533259776\/eW0L9HBf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149069040\/1446488899","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":53,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"turkish_qatar","name":"\u062a\u0631\u0643\u0634 \u0642\u0637\u0631 \u263a","id":149069040,"id_str":"149069040","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080028662"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011614720,"id_str":"663727863011614720","text":"RT @nasser51234: \u0641\u0631\u064a\u062f \u0627\u0644\u062f\u064a\u0628 \u0640 \u0635\u0644\u0627\u062d \u062f\u064a\u0627\u0628 \u0627\u062a\u0642\u0628\u0636 \u0639\u0644\u064a\u0647 \u0628\u0633\u0628\u0628 \u0627\u0646\u062a\u0642\u0627\u062f \u0627\u0644\u0645\u0635\u0631\u0649 \u0627\u0644\u064a\u0648\u0645 \u0644\u0644\u0633\u064a\u0633\u0649 \n\u0627\u0628\u0631\u0627\u0647\u064a\u0645 \u0639\u064a\u0633\u0649 \u0640 \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0648\u0635\u0644\u062a \n\u0627\u0644\u0643\u0627\u062a\u0628 \u062c\u0645\u0627\u0644 \u0627\u0644\u062c\u0645\u0644... https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2956140795,"id_str":"2956140795","name":"\u0627\u0628\u0648 \u062e\u0627\u0644\u062f( \u0627\u0644\u0639\u0637\u0627\u0631)","screen_name":"serag7777","location":"\u0645\u0635\u0631","url":"https:\/\/www.facebook.com\/serag777","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0644\u0639\u0644\u0627\u062c \u0628\u0627\u0644\u0627\u0639\u0634\u0627\u0628\n\u0648\u0627\u0644\u0637\u0628 \u0627\u0644\u0628\u062f\u064a\u0644","protected":false,"verified":false,"followers_count":3351,"friends_count":3415,"listed_count":2,"favourites_count":6928,"statuses_count":12266,"created_at":"Fri Jan 02 06:41:11 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553817421191335937\/UcnDp105_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553817421191335937\/UcnDp105_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2956140795\/1424709010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:19 +0000 2015","id":663721534150868992,"id_str":"663721534150868992","text":"\u0641\u0631\u064a\u062f \u0627\u0644\u062f\u064a\u0628 \u0640 \u0635\u0644\u0627\u062d \u062f\u064a\u0627\u0628 \u0627\u062a\u0642\u0628\u0636 \u0639\u0644\u064a\u0647 \u0628\u0633\u0628\u0628 \u0627\u0646\u062a\u0642\u0627\u062f \u0627\u0644\u0645\u0635\u0631\u0649 \u0627\u0644\u064a\u0648\u0645 \u0644\u0644\u0633\u064a\u0633\u0649 \n\u0627\u0628\u0631\u0627\u0647\u064a\u0645 \u0639\u064a\u0633\u0649 \u0640 \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0648\u0635\u0644\u062a \n\u0627\u0644\u0643\u0627\u062a\u0628 \u062c\u0645\u0627\u0644 \u0627\u0644\u062c\u0645\u0644... https:\/\/t.co\/yjmcp09GPQ","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3100137599,"id_str":"3100137599","name":"\u0645\u062d\u0645\u062f \u0646\u0627\u0635\u0631 \u0639\u0644\u064a","screen_name":"nasser51234","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29380,"friends_count":112,"listed_count":122,"favourites_count":1274,"statuses_count":928,"created_at":"Fri Mar 20 19:58:50 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579009836584681472\/jZXbc3on_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579009836584681472\/jZXbc3on_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":26,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yjmcp09GPQ","expanded_url":"http:\/\/fb.me\/4CbAIl1zN","display_url":"fb.me\/4CbAIl1zN","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yjmcp09GPQ","expanded_url":"http:\/\/fb.me\/4CbAIl1zN","display_url":"fb.me\/4CbAIl1zN","indices":[139,140]}],"user_mentions":[{"screen_name":"nasser51234","name":"\u0645\u062d\u0645\u062f \u0646\u0627\u0635\u0631 \u0639\u0644\u064a","id":3100137599,"id_str":"3100137599","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990680064,"id_str":"663727862990680064","text":"Um corredor deveras corajoso","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726854226976768,"in_reply_to_status_id_str":"663726854226976768","in_reply_to_user_id":58677466,"in_reply_to_user_id_str":"58677466","in_reply_to_screen_name":"patricia_franca","user":{"id":58677466,"id_str":"58677466","name":"patr\u00edcia","screen_name":"patricia_franca","location":"S\u00e3o Lu\u00eds - MA \/ Brasil","url":null,"description":"Como um terremoto no Jap\u00e3o, um vento, um tuf\u00e3o, uma batedeira sem bot\u00e3o","protected":false,"verified":false,"followers_count":654,"friends_count":463,"listed_count":11,"favourites_count":3053,"statuses_count":34407,"created_at":"Tue Jul 21 02:35:50 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657024872070160388\/GnypzSKD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657024872070160388\/GnypzSKD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58677466\/1443797984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"23299615a880d29d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/23299615a880d29d.json","place_type":"city","name":"S\u00e3o Lu\u00eds","full_name":"S\u00e3o Lu\u00eds, Maranh\u00e3o","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-44.441517,-2.800361],[-44.441517,-2.458210],[-44.163584,-2.458210],[-44.163584,-2.800361]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862978060288,"id_str":"663727862978060288","text":"@Arifkeskin1997 img weetje ik ook la zie je mij klagen eh eh weetje kben lik opgestaan op 5u40 \ud83d\ude13\ud83d\ude13","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727652465991680,"in_reply_to_status_id_str":"663727652465991680","in_reply_to_user_id":2185137834,"in_reply_to_user_id_str":"2185137834","in_reply_to_screen_name":"Arifkeskin1997","user":{"id":2179577841,"id_str":"2179577841","name":"Annah","screen_name":"hanae_al","location":null,"url":null,"description":"18","protected":false,"verified":false,"followers_count":332,"friends_count":415,"listed_count":1,"favourites_count":1076,"statuses_count":4672,"created_at":"Wed Nov 13 12:41:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660851561069940736\/U_ovqv2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660851561069940736\/U_ovqv2-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179577841\/1441831731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Arifkeskin1997","name":"Arif Keskin","id":2185137834,"id_str":"2185137834","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080028658"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011610625,"id_str":"663727863011610625","text":"RT @JackJackJohnson: U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051595805,"id_str":"3051595805","name":"single pringle","screen_name":"matthewmagcon__","location":"With Hayes Grier\u2764\ufe0f","url":"http:\/\/www.YouNow.com\/","description":"Hayes Grier followed 8\/18\/15. Alex Lee followed 9\/19\/15 Cole, Darrell, & Beau are \u2764\ufe0f","protected":false,"verified":false,"followers_count":1460,"friends_count":2012,"listed_count":2,"favourites_count":3466,"statuses_count":8772,"created_at":"Sun Feb 22 02:50:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659025506151567360\/73XCuc8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659025506151567360\/73XCuc8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051595805\/1442690673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433779056641,"id_str":"663727433779056641","text":"U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT LIT!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588966,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1084,"favorite_count":1962,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862999080960,"id_str":"663727862999080960","text":"@Larissaach \ud83d\ude12\ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727713597808640,"in_reply_to_status_id_str":"663727713597808640","in_reply_to_user_id":1531750465,"in_reply_to_user_id_str":"1531750465","in_reply_to_screen_name":"Larissaach","user":{"id":2406444094,"id_str":"2406444094","name":"Gabriel","screen_name":"ortiz_gg","location":null,"url":null,"description":"wpp (55) 9944-7177\nsnap: jowcri","protected":false,"verified":false,"followers_count":554,"friends_count":354,"listed_count":0,"favourites_count":2588,"statuses_count":2914,"created_at":"Thu Mar 13 02:50:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635678245539725312\/U4gSvHVy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635678245539725312\/U4gSvHVy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2406444094\/1440720631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Larissaach","name":"Larissa","id":1531750465,"id_str":"1531750465","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080028663"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863003262976,"id_str":"663727863003262976","text":"RT @ComedyWorIdStar: This is funny \ud83d\ude2d https:\/\/t.co\/kknzRc8Nsn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":419332745,"id_str":"419332745","name":"Lil Esteban","screen_name":"BlvckTaco","location":"HOU$TON","url":"http:\/\/STOGMOB.com","description":null,"protected":false,"verified":false,"followers_count":1098,"friends_count":536,"listed_count":0,"favourites_count":1274,"statuses_count":5244,"created_at":"Wed Nov 23 07:09:50 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618073374\/gnttlystiaj1rmdqfv6b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618073374\/gnttlystiaj1rmdqfv6b.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648874463560232960\/AU6FqRdS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648874463560232960\/AU6FqRdS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/419332745\/1443538702","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 21:09:29 +0000 2015","id":658752330016362497,"id_str":"658752330016362497","text":"This is funny \ud83d\ude2d https:\/\/t.co\/kknzRc8Nsn","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383830912,"id_str":"383830912","name":"World Star Fans","screen_name":"ComedyWorIdStar","location":null,"url":null,"description":"Posting the funniest vines and pics on the web! Not affiliated with @vineapp or @worldstar. (Parody).","protected":false,"verified":false,"followers_count":246209,"friends_count":42,"listed_count":197,"favourites_count":14569,"statuses_count":4098,"created_at":"Sun Oct 02 16:03:53 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000168797980\/L3BdsWYY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000168797980\/L3BdsWYY.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613476858479247365\/ElYGkW_z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613476858479247365\/ElYGkW_z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383830912\/1435099256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8026,"favorite_count":8476,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":601542986984460288,"id_str":"601542986984460288","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","url":"https:\/\/t.co\/kknzRc8Nsn","display_url":"pic.twitter.com\/kknzRc8Nsn","expanded_url":"http:\/\/twitter.com\/BreadBoi\/status\/601543063501017088\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":601543063501017088,"source_status_id_str":"601543063501017088","source_user_id":216998174,"source_user_id_str":"216998174"}]},"extended_entities":{"media":[{"id":601542986984460288,"id_str":"601542986984460288","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","url":"https:\/\/t.co\/kknzRc8Nsn","display_url":"pic.twitter.com\/kknzRc8Nsn","expanded_url":"http:\/\/twitter.com\/BreadBoi\/status\/601543063501017088\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":601543063501017088,"source_status_id_str":"601543063501017088","source_user_id":216998174,"source_user_id_str":"216998174","video_info":{"aspect_ratio":[1,1],"duration_millis":23321,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/pl\/FR-kzg9yxP5BZHWr.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/480x480\/PibcRqfzadsR7jtr.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/pl\/FR-kzg9yxP5BZHWr.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/720x720\/EuTBKIjaYuCNdVde.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/240x240\/QsGtrHwzMjU02iGa.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/480x480\/PibcRqfzadsR7jtr.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ComedyWorIdStar","name":"World Star Fans","id":383830912,"id_str":"383830912","indices":[3,19]}],"symbols":[],"media":[{"id":601542986984460288,"id_str":"601542986984460288","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","url":"https:\/\/t.co\/kknzRc8Nsn","display_url":"pic.twitter.com\/kknzRc8Nsn","expanded_url":"http:\/\/twitter.com\/BreadBoi\/status\/601543063501017088\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":601543063501017088,"source_status_id_str":"601543063501017088","source_user_id":216998174,"source_user_id_str":"216998174"}]},"extended_entities":{"media":[{"id":601542986984460288,"id_str":"601542986984460288","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/601542986984460288\/pu\/img\/piPsYnl6XLz_cSf4.jpg","url":"https:\/\/t.co\/kknzRc8Nsn","display_url":"pic.twitter.com\/kknzRc8Nsn","expanded_url":"http:\/\/twitter.com\/BreadBoi\/status\/601543063501017088\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":601543063501017088,"source_status_id_str":"601543063501017088","source_user_id":216998174,"source_user_id_str":"216998174","video_info":{"aspect_ratio":[1,1],"duration_millis":23321,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/pl\/FR-kzg9yxP5BZHWr.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/480x480\/PibcRqfzadsR7jtr.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/pl\/FR-kzg9yxP5BZHWr.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/720x720\/EuTBKIjaYuCNdVde.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/240x240\/QsGtrHwzMjU02iGa.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/601542986984460288\/pu\/vid\/480x480\/PibcRqfzadsR7jtr.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028664"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863003283456,"id_str":"663727863003283456","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2881105347,"id_str":"2881105347","name":"Soph\u2728","screen_name":"beerpiriga","location":"Brasil","url":"https:\/\/twitter.com\/beerpiriga\/status\/641319677617172484","description":"pra que bio engra\u00e7ada se ser magcult j\u00e1 \u00e9 piada \u2601\ufe0f Cameron fav: link in bio","protected":false,"verified":false,"followers_count":1905,"friends_count":2113,"listed_count":2,"favourites_count":16088,"statuses_count":37759,"created_at":"Mon Nov 17 15:06:20 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653640264268009472\/1zjdYeGg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653640264268009472\/1zjdYeGg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2881105347\/1444950225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588966,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49990,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":147,"favorite_count":238,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028664"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862994870272,"id_str":"663727862994870272","text":"RT @albransss11: @FFNN9933 \n@om_turki101 \n@Nasrawih6 @A1____1N\n @tyrvb1436 https:\/\/t.co\/6gKjwg7AV6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1214291298,"id_str":"1214291298","name":"\u0627\u0644\u0634\u0648\u0642 \u0635\u0639\u062864#","screen_name":"igggm","location":"\u062a\u0635\u0645\u064a\u0645\u0646\u0627 \u0627\u0644\u0627\u0648\u0644","url":null,"description":"\u200f\u200f\u200f\u200f\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0644\u0644\u0647 \u0645\u062d\u0645\u062f \u0631\u0633\u0648\u0644 \u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":2151,"friends_count":2329,"listed_count":0,"favourites_count":7,"statuses_count":4850,"created_at":"Sun Feb 24 02:58:07 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649160027849101312\/tYxV5DuA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649160027849101312\/tYxV5DuA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:32:47 +0000 2015","id":663710828143755264,"id_str":"663710828143755264","text":"@FFNN9933 \n@om_turki101 \n@Nasrawih6 @A1____1N\n @tyrvb1436 https:\/\/t.co\/6gKjwg7AV6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663695908861812736,"in_reply_to_status_id_str":"663695908861812736","in_reply_to_user_id":756147775,"in_reply_to_user_id_str":"756147775","in_reply_to_screen_name":"albransss11","user":{"id":756147775,"id_str":"756147775","name":"\u200f\u265a \u0622\u0644\u064e\u0628\u0651\u0640\u0631\u0646\u064c\u0633 \u265aN","screen_name":"albransss11","location":"A \u2764 N","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0644\u0627\u062a\u062d\u0633\u0628 \u0627\u0646\u064a \u0644\u0627\u0645\u0636\u0649 \u0627\u0644\u0648\u0642\u062a \u0646\u0627\u0633\u064a\u0643 \u062f\u0642\u0627\u062a \u0642\u0644\u0628\u064a \u0643\u0644\u0647\u0627 \u062a\u0642\u0648\u0644 \u0627\u062d\u0628\u0643 \u0645\u0648\u062a \u064a\u0627\u0646\u0635\u0631 \u2764\n\n\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e@FFNN9933","protected":false,"verified":false,"followers_count":25255,"friends_count":25031,"listed_count":14,"favourites_count":2100,"statuses_count":47147,"created_at":"Tue Aug 14 00:48:42 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"DA0CED","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661006328819752961\/s2-8PsYO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661006328819752961\/s2-8PsYO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/756147775\/1446401222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FFNN9933","name":"\u0647\u0645\u0633 \u0627\u0644\u0646\u0635\u0631","id":1350092647,"id_str":"1350092647","indices":[0,9]},{"screen_name":"om_turki101","name":"\u0627\u0645 \u062a\u0631\u0643\u064a","id":1094024293,"id_str":"1094024293","indices":[11,23]},{"screen_name":"Nasrawih6","name":"\u0646\u0635\u0631\u0627\u0648\u064a\u0647 \u0639\u0627\u0644\u0645\u064a\u0647\u2728","id":3234383768,"id_str":"3234383768","indices":[25,35]},{"screen_name":"A1____1N","name":"#\u0635\u0645\u062a_\u0627\u0644\u0646\u0635\u0631","id":1265812140,"id_str":"1265812140","indices":[36,45]},{"screen_name":"tyrvb1436","name":"\u2605\u2605\u0627\u0644\u0646\u0648\u0631\u0633\u2605\u2605\u2605","id":3222772268,"id_str":"3222772268","indices":[47,57]}],"symbols":[],"media":[{"id":663710818010316800,"id_str":"663710818010316800","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","url":"https:\/\/t.co\/6gKjwg7AV6","display_url":"pic.twitter.com\/6gKjwg7AV6","expanded_url":"http:\/\/twitter.com\/albransss11\/status\/663710828143755264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710818010316800,"id_str":"663710818010316800","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","url":"https:\/\/t.co\/6gKjwg7AV6","display_url":"pic.twitter.com\/6gKjwg7AV6","expanded_url":"http:\/\/twitter.com\/albransss11\/status\/663710828143755264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"albransss11","name":"\u200f\u265a \u0622\u0644\u064e\u0628\u0651\u0640\u0631\u0646\u064c\u0633 \u265aN","id":756147775,"id_str":"756147775","indices":[3,15]},{"screen_name":"FFNN9933","name":"\u0647\u0645\u0633 \u0627\u0644\u0646\u0635\u0631","id":1350092647,"id_str":"1350092647","indices":[17,26]},{"screen_name":"om_turki101","name":"\u0627\u0645 \u062a\u0631\u0643\u064a","id":1094024293,"id_str":"1094024293","indices":[28,40]},{"screen_name":"Nasrawih6","name":"\u0646\u0635\u0631\u0627\u0648\u064a\u0647 \u0639\u0627\u0644\u0645\u064a\u0647\u2728","id":3234383768,"id_str":"3234383768","indices":[42,52]},{"screen_name":"A1____1N","name":"#\u0635\u0645\u062a_\u0627\u0644\u0646\u0635\u0631","id":1265812140,"id_str":"1265812140","indices":[53,62]},{"screen_name":"tyrvb1436","name":"\u2605\u2605\u0627\u0644\u0646\u0648\u0631\u0633\u2605\u2605\u2605","id":3222772268,"id_str":"3222772268","indices":[64,74]}],"symbols":[],"media":[{"id":663710818010316800,"id_str":"663710818010316800","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","url":"https:\/\/t.co\/6gKjwg7AV6","display_url":"pic.twitter.com\/6gKjwg7AV6","expanded_url":"http:\/\/twitter.com\/albransss11\/status\/663710828143755264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}},"source_status_id":663710828143755264,"source_status_id_str":"663710828143755264","source_user_id":756147775,"source_user_id_str":"756147775"}]},"extended_entities":{"media":[{"id":663710818010316800,"id_str":"663710818010316800","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5ePUWwAABbim.jpg","url":"https:\/\/t.co\/6gKjwg7AV6","display_url":"pic.twitter.com\/6gKjwg7AV6","expanded_url":"http:\/\/twitter.com\/albransss11\/status\/663710828143755264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":698,"resize":"fit"}},"source_status_id":663710828143755264,"source_status_id_str":"663710828143755264","source_user_id":756147775,"source_user_id_str":"756147775"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080028662"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863007342592,"id_str":"663727863007342592","text":"@_031221_ \u3084\u3001\u5168\u7136\u7b11\u3063\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663704223440236544,"in_reply_to_status_id_str":"663704223440236544","in_reply_to_user_id":3232705898,"in_reply_to_user_id_str":"3232705898","in_reply_to_screen_name":"_031221_","user":{"id":2935767408,"id_str":"2935767408","name":"\u3053\u3060\u308f\u308a\u306e [\u30dc\u30bf\u30f3\u30a8\u30d3]\u3063\u307a","screen_name":"naxmld","location":"\u6d0b\u5e73\u3055\u3093\u306e\u5922\u306e\u4e2d \u306b\u3087\u3093\u307e\u3086","url":null,"description":"[Alexandros] \u304c\u3068\u306b\u304b\u304f\u597d\u304d\u3002\u3053\u3060\u308f\u308a\u306e\u5f1f \u2192 @marin7066196 \u5f1f\u5b50\u2192 @spyair_mo_mo","protected":false,"verified":false,"followers_count":530,"friends_count":495,"listed_count":16,"favourites_count":9762,"statuses_count":13467,"created_at":"Fri Dec 19 07:51:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659417812008497152\/VfxWJAum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659417812008497152\/VfxWJAum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2935767408\/1446049817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_031221_","name":"hotaru","id":3232705898,"id_str":"3232705898","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028665"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011610624,"id_str":"663727863011610624","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2728485897,"id_str":"2728485897","name":"TYSM SEB OMFGGGG","screen_name":"olivia_perfect2","location":"Croatia :)","url":null,"description":"Hey Angel. Do you know the reasons why, we look up to the sky?Andja , Tam ,Lara and Dragana \u2764\u2764 ,Waiting for Evan tweet \u2764","protected":false,"verified":false,"followers_count":5768,"friends_count":4380,"listed_count":20,"favourites_count":23982,"statuses_count":142179,"created_at":"Tue Jul 29 21:07:02 +0000 2014","utc_offset":3600,"time_zone":"Zagreb","geo_enabled":true,"lang":"hr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629693020879908864\/m37O4yLo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629693020879908864\/m37O4yLo.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663413389377581058\/Wp-PDZDo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663413389377581058\/Wp-PDZDo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2728485897\/1447056379","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588966,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49990,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":148,"favorite_count":238,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973923328,"id_str":"663727862973923328","text":"@Lirikax Si yo entiendo el razonamiento, pero es una visi\u00f3n tan binaria y limitada, por no hablar de intrusi\u00f3n en la intimidad que...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727674301509633,"in_reply_to_status_id_str":"663727674301509633","in_reply_to_user_id":191381480,"in_reply_to_user_id_str":"191381480","in_reply_to_screen_name":"Lirikax","user":{"id":229016442,"id_str":"229016442","name":"Darukiel abdbckand","screen_name":"DarukuCelsius","location":"Malaga","url":"http:\/\/manfeminismo.blogspot.com","description":"El\/Ella - Soy esa chica guay y diver que tanto te gusta pero que, oh, tiene pene. La revoluci\u00f3n ser\u00e1 de queso o no ser\u00e1. Educatriz transfeminista.","protected":false,"verified":false,"followers_count":383,"friends_count":410,"listed_count":13,"favourites_count":29051,"statuses_count":68982,"created_at":"Tue Dec 21 08:49:07 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/568533019955191809\/2OJwK8Yj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/568533019955191809\/2OJwK8Yj.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0F0F0F","profile_text_color":"3FD85B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568531740763766785\/o1D6bLlA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568531740763766785\/o1D6bLlA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229016442\/1424383642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lirikax","name":"Bad \u2727 Wolf","id":191381480,"id_str":"191381480","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862982176768,"id_str":"663727862982176768","text":"RT @AirinNoSekai: \u0e17\u0e33\u0e44\u0e21\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e04\u0e33\u0e27\u0e48\u0e32 \"\u0e08\u0e23\u0e34\u0e07\u0e46\u0e41\u0e25\u0e49\u0e27...\",\"\u0e2d\u0e31\u0e19\u0e17\u0e35\u0e48\u0e08\u0e23\u0e34\u0e07..\" \u0e1f\u0e31\u0e07\u0e40\u0e22\u0e2d\u0e30\u0e46\u0e21\u0e31\u0e19\u0e2b\u0e07\u0e38\u0e14\u0e2b\u0e07\u0e34\u0e14\u0e22\u0e31\u0e07\u0e44\u0e07\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49.. \u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e27\u0e48\u0e32\u0e2d\u0e04\u0e15\u0e34\u0e2b\u0e23\u0e37\u0e2d\u0e23\u0e33\u0e04\u0e32\u0e0d\u0e44\u0e1b\u0e40\u0e2d\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e1b\u0e25\u0e48\u0e32 \u0e17\u0e31\u0e49\u0e07\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238889803,"id_str":"238889803","name":"R I N A (\u30fb\u03c9\u30fb)\u30ce","screen_name":"Sakuneko_","location":"Bangkok","url":null,"description":"Hi ,I'm Rina.|| IG :: sakuneko_ || Big bang || One Ok Rock || \u0e17\u0e27\u0e34\u0e15\u0e44\u0e27\u0e49\u0e27\u0e35\u0e19 @sakunek0","protected":false,"verified":false,"followers_count":261,"friends_count":358,"listed_count":2,"favourites_count":3403,"statuses_count":14137,"created_at":"Sun Jan 16 08:05:51 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578552886390472705\/sJKvcbWU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578552886390472705\/sJKvcbWU.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663303368626999296\/wBmyF5wu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663303368626999296\/wBmyF5wu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238889803\/1446298166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:31 +0000 2015","id":663727372676415488,"id_str":"663727372676415488","text":"\u0e17\u0e33\u0e44\u0e21\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e04\u0e33\u0e27\u0e48\u0e32 \"\u0e08\u0e23\u0e34\u0e07\u0e46\u0e41\u0e25\u0e49\u0e27...\",\"\u0e2d\u0e31\u0e19\u0e17\u0e35\u0e48\u0e08\u0e23\u0e34\u0e07..\" \u0e1f\u0e31\u0e07\u0e40\u0e22\u0e2d\u0e30\u0e46\u0e21\u0e31\u0e19\u0e2b\u0e07\u0e38\u0e14\u0e2b\u0e07\u0e34\u0e14\u0e22\u0e31\u0e07\u0e44\u0e07\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49.. \u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e27\u0e48\u0e32\u0e2d\u0e04\u0e15\u0e34\u0e2b\u0e23\u0e37\u0e2d\u0e23\u0e33\u0e04\u0e32\u0e0d\u0e44\u0e1b\u0e40\u0e2d\u0e07\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e1b\u0e25\u0e48\u0e32 \u0e17\u0e31\u0e49\u0e07\u0e1e\u0e39\u0e14\u0e40\u0e2d\u0e07\u0e17\u0e31\u0e49\u0e07\u0e04\u0e19\u0e2d\u0e37\u0e48\u0e19\u0e1e\u0e39\u0e14","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2947189039,"id_str":"2947189039","name":"Airin\u2605\u0e1c\u0e39\u0e49\u0e01\u0e32\u0e23\u0e44\u0e2d\u0e23\u0e34\u0e19","screen_name":"AirinNoSekai","location":"Bangkok,Thailand","url":"https:\/\/www.facebook.com\/AirinNoSekai","description":"\u2666\u30cf\u30fc\u30d5\u3067\u3059\u3001\u6bcd\u306f\u30bf\u30a4\u3058\u3093\u2666\u3000\u3042\u3044\u308a\u3093\u306f\u30da\u30f3\u30cd\u30fc\u30e0\u3002\u3000\u2600\u304a\u3048\u304b\u304d\u5927\u597d\u304d\u2600\u3000\u2666\u79c1\u306f\u6f2b\u753b\u3068\u30a2\u30cb\u30e1\u30d5\u30a1\u30f3\u3067\u3059\u3002\u3000\u2666\u30c4\u30a4\u30fc\u30c8\u306f\u30bf\u30a4\u8a9e\u3067\u3059\u307f\u307e\u305b\u3093\u3002\u3000Animation Layout-Artist \u2666ISFJ\u2666O\u2666Sagittarius\u2650 #Pixiv id=742654 #DeviantArt\u3000#Instragram","protected":false,"verified":false,"followers_count":668,"friends_count":558,"listed_count":3,"favourites_count":1490,"statuses_count":8079,"created_at":"Mon Dec 29 00:23:37 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2D2822","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652940304773873665\/m75F1M53.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652940304773873665\/m75F1M53.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663022144230567936\/_N5kbEyX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663022144230567936\/_N5kbEyX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2947189039\/1444505201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AirinNoSekai","name":"Airin\u2605\u0e1c\u0e39\u0e49\u0e01\u0e32\u0e23\u0e44\u0e2d\u0e23\u0e34\u0e19","id":2947189039,"id_str":"2947189039","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080028659"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862977990656,"id_str":"663727862977990656","text":"\u306a\u3093\u3067\uff01\uff01\uff01\u306a\u3093\u3067\u6709\u52b9\u671f\u9650\u3042\u308b\u3093\u3060\u3088\uff01\uff01\uff01\uff01\uff01\uff01\uff01\n\u3046\u308f\u3041\u3041\u3041\u3041\u3041\u3041\u3041\u3041\u3041\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3624855673,"id_str":"3624855673","name":"\u5fb7\u77f3 \u5145\u54c9","screen_name":"pktxx_7","location":"\u611b\u5a9b\u23e9\u798f\u5ca1","url":null,"description":"\u5317\u4e5d\u5927\u2502\u5916\/\u56fd\u95a2\u2502\uff7f\uff8c\uff84\uff83\uff86\uff7d\u2502\u203b\u65b0\u57a2\uff01","protected":false,"verified":false,"followers_count":364,"friends_count":399,"listed_count":0,"favourites_count":305,"statuses_count":1512,"created_at":"Sun Sep 20 08:07:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656660066553061376\/9nPcWbMw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656660066553061376\/9nPcWbMw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3624855673\/1445394933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028658"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986444800,"id_str":"663727862986444800","text":"\u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646 \u062a\u0641\u062c\u0631 \u0645\u0641\u0627\u062c\u0623\u0629 \u0648\u062a\u0643\u0634\u0641 \u0639\u0646 (\u0623\u0647\u062f\u0627\u0641 \u0645\u0634\u062a\u0631\u0643\u0629) \u0628\u064a\u0646\u0647\u0627 \u0648\u0628\u064a\u0646 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 \u0628\u0634\u0623\u0646 \u0627\u0644\u064a\u0645\u0646 https:\/\/t.co\/ftmdrFTw3z #\u0643\u0644\u0645\u0647_\u062a\u062a\u0648\u0642\u0639_\u062a\u0633\u0645\u0639\u0647\u0627_\u0642\u0631\u064a\u0628\u0627","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162110224,"id_str":"1162110224","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u062d\u0631\u0628\u064a","screen_name":"cbeatty69","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":73,"friends_count":322,"listed_count":0,"favourites_count":19,"statuses_count":2401,"created_at":"Sat Feb 09 06:00:31 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3227739710\/07e4d10bad6804931826682e0e52be21_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3227739710\/07e4d10bad6804931826682e0e52be21_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0643\u0644\u0645\u0647_\u062a\u062a\u0648\u0642\u0639_\u062a\u0633\u0645\u0639\u0647\u0627_\u0642\u0631\u064a\u0628\u0627","indices":[102,126]}],"urls":[{"url":"https:\/\/t.co\/ftmdrFTw3z","expanded_url":"http:\/\/goo.gl\/HNg9fi","display_url":"goo.gl\/HNg9fi","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986485760,"id_str":"663727862986485760","text":"22 TV characters you should definitely name your baby after https:\/\/t.co\/pCZUUIMg4L","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28888215,"id_str":"28888215","name":"Design And Dev. News","screen_name":"wdadnews","location":"New York","url":"http:\/\/wdadn.tumblr.com","description":"We are no longer people but, messages on one another\u2019s screen............... http:\/\/onur-celik.com","protected":false,"verified":false,"followers_count":723,"friends_count":74,"listed_count":133,"favourites_count":15,"statuses_count":241201,"created_at":"Sat Apr 04 22:52:04 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E67E22","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171226644\/oWEUGdbU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171226644\/oWEUGdbU.jpeg","profile_background_tile":false,"profile_link_color":"2ECC71","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425053240623775744\/N5ZbLFOE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425053240623775744\/N5ZbLFOE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28888215\/1390175720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pCZUUIMg4L","expanded_url":"http:\/\/ift.tt\/1M1Vp8d","display_url":"ift.tt\/1M1Vp8d","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862977966080,"id_str":"663727862977966080","text":"@horig0525 @nq03a @byuurii \n\u9ed2\u3061\u3083\u3046\u3066\u7b11\n\u3084\u307e\u3052\u3093\u306b\u30dc\u30ed\u30af\u30bd\u8a00\u308f\u308c\u305f\u7206\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727679477121025,"in_reply_to_status_id_str":"663727679477121025","in_reply_to_user_id":2190657522,"in_reply_to_user_id_str":"2190657522","in_reply_to_screen_name":"horig0525","user":{"id":3107017141,"id_str":"3107017141","name":"\u25b3Ryuya\u25b2","screen_name":"hamuro08661","location":"Osaka KisiwadaCity","url":"http:\/\/Instagram.com\/ryuya_hamuro","description":"\u2192 I love HONDA VTEC \u2190 \u670d\u3001\u8eca\u3001\u5358\u8eca\u597d\u304dfollowMe \uff01 I am infinite infreedom\uff01\uff01 Kisiwada\u2192Izumi\u2192Kisiwada","protected":false,"verified":false,"followers_count":198,"friends_count":203,"listed_count":1,"favourites_count":1126,"statuses_count":1619,"created_at":"Tue Mar 24 14:33:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648800065490825217\/ip1Nkmrl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648800065490825217\/ip1Nkmrl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3107017141\/1436206284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"horig0525","name":"Ryo-ta","id":2190657522,"id_str":"2190657522","indices":[0,10]},{"screen_name":"nq03a","name":"\u637a \u7f8e","id":3392775194,"id_str":"3392775194","indices":[11,17]},{"screen_name":"byuurii","name":"\u30e6 \u30ea \u0f18*","id":626551076,"id_str":"626551076","indices":[18,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028658"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011655684,"id_str":"663727863011655684","text":"RT @Kairajalapeno: Mom always said greens are healthy \ud83d\ude0c\ud83d\ude0f\ud83d\udc4c\ud83c\udffc\ud83d\udc9a https:\/\/t.co\/AHGLfSr2Ag","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":620559943,"id_str":"620559943","name":"Ke","screen_name":"KeepinUpWithKe_","location":"with Mike C","url":null,"description":"UNFUCKWITABLE.","protected":false,"verified":false,"followers_count":3109,"friends_count":2727,"listed_count":1,"favourites_count":3047,"statuses_count":78882,"created_at":"Thu Jun 28 02:28:24 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104735893\/ac14efa0ac8b076edb39c1c82f878748.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104735893\/ac14efa0ac8b076edb39c1c82f878748.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663470107688062976\/KSlM88qe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663470107688062976\/KSlM88qe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620559943\/1443033980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 19:18:38 +0000 2015","id":660173986815467524,"id_str":"660173986815467524","text":"Mom always said greens are healthy \ud83d\ude0c\ud83d\ude0f\ud83d\udc4c\ud83c\udffc\ud83d\udc9a https:\/\/t.co\/AHGLfSr2Ag","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372409057,"id_str":"372409057","name":"Mermazing Queen\u2763","screen_name":"Kairajalapeno","location":"Rts off, notifications ON\u2728","url":"http:\/\/soundcloud.com\/thelouied\/foryou","description":"A heartless queen, feeding off of your fear. | Pro non fuck giver | Follow my promo page: @Kaiinizzle | Husband: @TheLouieD\u2764\ufe0f","protected":false,"verified":false,"followers_count":15967,"friends_count":3547,"listed_count":27,"favourites_count":2688,"statuses_count":10424,"created_at":"Mon Sep 12 18:30:53 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490491145269432320\/Q50SIyUc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490491145269432320\/Q50SIyUc.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661550994837385216\/MiRY7HBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661550994837385216\/MiRY7HBp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/372409057\/1446138473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1095,"favorite_count":953,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660173908537143296,"id_str":"660173908537143296","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","url":"https:\/\/t.co\/AHGLfSr2Ag","display_url":"pic.twitter.com\/AHGLfSr2Ag","expanded_url":"http:\/\/twitter.com\/Kairajalapeno\/status\/660173986815467524\/photo\/1","type":"photo","sizes":{"large":{"w":874,"h":1023,"resize":"fit"},"medium":{"w":600,"h":702,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660173908537143296,"id_str":"660173908537143296","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","url":"https:\/\/t.co\/AHGLfSr2Ag","display_url":"pic.twitter.com\/AHGLfSr2Ag","expanded_url":"http:\/\/twitter.com\/Kairajalapeno\/status\/660173986815467524\/photo\/1","type":"photo","sizes":{"large":{"w":874,"h":1023,"resize":"fit"},"medium":{"w":600,"h":702,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kairajalapeno","name":"Mermazing Queen\u2763","id":372409057,"id_str":"372409057","indices":[3,17]}],"symbols":[],"media":[{"id":660173908537143296,"id_str":"660173908537143296","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","url":"https:\/\/t.co\/AHGLfSr2Ag","display_url":"pic.twitter.com\/AHGLfSr2Ag","expanded_url":"http:\/\/twitter.com\/Kairajalapeno\/status\/660173986815467524\/photo\/1","type":"photo","sizes":{"large":{"w":874,"h":1023,"resize":"fit"},"medium":{"w":600,"h":702,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660173986815467524,"source_status_id_str":"660173986815467524","source_user_id":372409057,"source_user_id_str":"372409057"}]},"extended_entities":{"media":[{"id":660173908537143296,"id_str":"660173908537143296","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSlorAxWcAAFoo4.jpg","url":"https:\/\/t.co\/AHGLfSr2Ag","display_url":"pic.twitter.com\/AHGLfSr2Ag","expanded_url":"http:\/\/twitter.com\/Kairajalapeno\/status\/660173986815467524\/photo\/1","type":"photo","sizes":{"large":{"w":874,"h":1023,"resize":"fit"},"medium":{"w":600,"h":702,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660173986815467524,"source_status_id_str":"660173986815467524","source_user_id":372409057,"source_user_id_str":"372409057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863007318017,"id_str":"663727863007318017","text":"gabisa ikut roommate-_- jadwalnya hari sabtu shift pagi, hari minggu baru libur []","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1661330390,"id_str":"1661330390","name":"Ts.AyanaMoon","screen_name":"abcyoungji","location":"#ABCFams","url":null,"description":"Heo Youngji's Roleplayer | Kara's cute Maknae | \u00a91994 | lets be friend?","protected":false,"verified":false,"followers_count":1290,"friends_count":313,"listed_count":3,"favourites_count":129,"statuses_count":25422,"created_at":"Sun Aug 11 01:17:23 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663688322775040001\/tlABYPoZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663688322775040001\/tlABYPoZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1661330390\/1446385596","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080028665"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862999089153,"id_str":"663727862999089153","text":"Listening to everyone at the office freak about OSU ranking behind Alabama in the playoff rankings like it's the end of the world. #Shhhhhh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3142513738,"id_str":"3142513738","name":"Nathan Golden","screen_name":"ncgolden4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":111,"listed_count":0,"favourites_count":111,"statuses_count":236,"created_at":"Tue Apr 07 01:37:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640152121749471232\/Bgb-Q90p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640152121749471232\/Bgb-Q90p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3142513738\/1441460449","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Shhhhhh","indices":[131,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028663"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990569473,"id_str":"663727862990569473","text":"RT @Mummysgirls2: For Your Ribeye's Only\n#MakeAMovieEdible","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3438999494,"id_str":"3438999494","name":"World Of Hashtags","screen_name":"WorldOfHashtags","location":null,"url":null,"description":"Hosted by @AndyHashtagger Join the game right now!","protected":false,"verified":false,"followers_count":1361,"friends_count":1623,"listed_count":21,"favourites_count":339,"statuses_count":256,"created_at":"Thu Sep 03 17:13:40 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655014817388851203\/gBEfYDUL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655014817388851203\/gBEfYDUL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3438999494\/1441303081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:23 +0000 2015","id":663727087363211264,"id_str":"663727087363211264","text":"For Your Ribeye's Only\n#MakeAMovieEdible","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3523162876,"id_str":"3523162876","name":"Candice","screen_name":"Mummysgirls2","location":null,"url":null,"description":"Mummy. Wife. devoted to my family.","protected":false,"verified":false,"followers_count":126,"friends_count":290,"listed_count":2,"favourites_count":1498,"statuses_count":737,"created_at":"Wed Sep 02 12:17:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648410076995301376\/YE5XPTUQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648410076995301376\/YE5XPTUQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3523162876\/1445854196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"MakeAMovieEdible","indices":[23,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MakeAMovieEdible","indices":[41,58]}],"urls":[],"user_mentions":[{"screen_name":"Mummysgirls2","name":"Candice","id":3523162876,"id_str":"3523162876","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863007346688,"id_str":"663727863007346688","text":"Closed Sell XAUUSD 1093.727 for +65.2 pips, total for today +2542.7 pips","source":"\u003ca href=\"https:\/\/www.myfxbook.com\" rel=\"nofollow\"\u003eMyfxbook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3375926479,"id_str":"3375926479","name":"Mario","screen_name":"vip4exsolutions","location":"Surrey, British Columbia","url":"http:\/\/www.vip4ex.com","description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":125,"created_at":"Sat Aug 29 00:15:12 +0000 2015","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652143430169165824\/v79ph5Y0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652143430169165824\/v79ph5Y0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375926479\/1446982567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028665"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011520512,"id_str":"663727863011520512","text":"@choa_09 \u3084\u3001\u795d\u3046\u3068\u306f\u8a00\u3063\u305f\u3051\u3069\u305d\u3053\u307e\u3067\u306f\u3001\u3001\u3001\u3057\u304b\u3082\u306a\u3093\u304b\u3042\u306a\u305f\u79c1\u306e\u8a95\u751f\u65e5\u795d\u3046\u6c17\u306a\u3044\u3067\u3057\u3087\uff1f\u3048\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727465961951232,"in_reply_to_status_id_str":"663727465961951232","in_reply_to_user_id":3268152410,"in_reply_to_user_id_str":"3268152410","in_reply_to_screen_name":"choa_09","user":{"id":2380130864,"id_str":"2380130864","name":"\u304b \u306a \u677e","screen_name":"s2_0225","location":null,"url":null,"description":"\u3000\u5225\u6d77\u21e2\u672d\u5e4c\u3000\u3000\u6b66\u8535\u5973\u5b50\u6559\u990a\u25ce\u3000\u3000\u3000","protected":false,"verified":false,"followers_count":345,"friends_count":340,"listed_count":0,"favourites_count":662,"statuses_count":2988,"created_at":"Sun Mar 09 08:38:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657037887989374976\/3GeC4xPS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657037887989374976\/3GeC4xPS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380130864\/1445697737","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"choa_09","name":"\u3081\u3050\u308d\u306f\u306a","id":3268152410,"id_str":"3268152410","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973763584,"id_str":"663727862973763584","text":"RT @c_yu091130: \u77e5\u5ff5\u4f91\u674e\u304f\u3093\ud83d\udc96 \n\n#\u308f\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087RT\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3067\u3059 http:\/\/t.co\/n2X4BfPzLu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362820078,"id_str":"2362820078","name":"\u2765\u2765Hina","screen_name":"Ryo____59xx","location":null,"url":null,"description":"(\u00b4\u2018\u25bd\u2018\uff40)\u541b\u3068\u4e00\u7dd2\u306b\u30c6\u30a4\u30af\u30aa\u30d5\u2729 \/ JK2\u0b67\u2362\u20dd\ufe0e\u0b68\u5de6\/ 8.13 HIROSHIMA\ua4b0\u0ac3\u00b4\ua4b3`\u0ac3\u1421 \u0ac1\ua4b1 \u0366","protected":false,"verified":false,"followers_count":53,"friends_count":55,"listed_count":0,"favourites_count":3700,"statuses_count":5138,"created_at":"Wed Feb 26 15:15:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653959252617224192\/Ryyy2G-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653959252617224192\/Ryyy2G-N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362820078\/1444644038","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 12:47:55 +0000 2015","id":653552676395839488,"id_str":"653552676395839488","text":"\u77e5\u5ff5\u4f91\u674e\u304f\u3093\ud83d\udc96 \n\n#\u308f\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087RT\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3067\u3059 http:\/\/t.co\/n2X4BfPzLu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3466596134,"id_str":"3466596134","name":"\u2765\u2765 \u3061\u306d\u307d\u306e","screen_name":"c_yu091130","location":"\u2661\u2661 \u5c0f\u3055\u306a\u738b\u5b50\u69d8\u306e\u53f3\u624b\u5fd8\u308c\u306a\u3044 \u2661\u2661","url":"http:\/\/Instagram.com\/hono_94","description":"96line \u2661\u2661\u2661 \u77e5\u5ff5\u4f91\u674e\u304f\u3093\u306a\u3093\u3070\u301c\u308f\u3093 \u2661\u2661\u2661 \u3057\u307b\u307b\u306e \u2661\u2661 \u3061\u3063\u3061\u3083\u306a\u300c\u30ad\u30df\u300d\u304c\u597d\u304d\u301c\u301c\u2764\ufe0e \uff4e\uff41\uff47\uff41\uff53\uff41\uff4b\uff49","protected":false,"verified":false,"followers_count":67,"friends_count":59,"listed_count":0,"favourites_count":241,"statuses_count":794,"created_at":"Sun Sep 06 04:12:59 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657549054243528705\/LsfJzG6h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657549054243528705\/LsfJzG6h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3466596134\/1441841049","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":1,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087RT\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3067\u3059","indices":[10,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653552667847819264,"id_str":"653552667847819264","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","url":"http:\/\/t.co\/n2X4BfPzLu","display_url":"pic.twitter.com\/n2X4BfPzLu","expanded_url":"http:\/\/twitter.com\/c_yu091130\/status\/653552676395839488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":653552667847819264,"id_str":"653552667847819264","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","url":"http:\/\/t.co\/n2X4BfPzLu","display_url":"pic.twitter.com\/n2X4BfPzLu","expanded_url":"http:\/\/twitter.com\/c_yu091130\/status\/653552676395839488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087RT\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3067\u3059","indices":[26,85]}],"urls":[],"user_mentions":[{"screen_name":"c_yu091130","name":"\u2765\u2765 \u3061\u306d\u307d\u306e","id":3466596134,"id_str":"3466596134","indices":[3,14]}],"symbols":[],"media":[{"id":653552667847819264,"id_str":"653552667847819264","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","url":"http:\/\/t.co\/n2X4BfPzLu","display_url":"pic.twitter.com\/n2X4BfPzLu","expanded_url":"http:\/\/twitter.com\/c_yu091130\/status\/653552676395839488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":653552676395839488,"source_status_id_str":"653552676395839488","source_user_id":3466596134,"source_user_id_str":"3466596134"}]},"extended_entities":{"media":[{"id":653552667847819264,"id_str":"653552667847819264","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRHisFEUAAA0LhJ.jpg","url":"http:\/\/t.co\/n2X4BfPzLu","display_url":"pic.twitter.com\/n2X4BfPzLu","expanded_url":"http:\/\/twitter.com\/c_yu091130\/status\/653552676395839488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":653552676395839488,"source_status_id_str":"653552676395839488","source_user_id":3466596134,"source_user_id_str":"3466596134"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990528512,"id_str":"663727862990528512","text":"RT @wes_chu: Good morning world! For those doing @NaNoWriMo, it's day 9. Today you need to hit 15k mark to be on pace to win! Do it nawwh! \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65648219,"id_str":"65648219","name":"Betybobety","screen_name":"betybobety","location":"Austin, TX","url":"https:\/\/www.wattpad.com\/user\/betybobety","description":"Writer, stellar iPhone photographer & fur-mommy","protected":false,"verified":false,"followers_count":2957,"friends_count":3172,"listed_count":225,"favourites_count":4031,"statuses_count":18437,"created_at":"Fri Aug 14 14:34:36 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613034234127650816\/Wn_LRR_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613034234127650816\/Wn_LRR_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65648219\/1363967487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:19 +0000 2015","id":663723041126387712,"id_str":"663723041126387712","text":"Good morning world! For those doing @NaNoWriMo, it's day 9. Today you need to hit 15k mark to be on pace to win! Do it nawwh! #NaNoWriMo2015","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355438142,"id_str":"355438142","name":"Wesley Chu","screen_name":"wes_chu","location":"Chicago, IL","url":"http:\/\/www.wesleychu.com","description":"Novelist. Time Salvager (Tor), Tao trilogy (Angry Robot), The Rise of Io (2016) Furniture & dogs are my jam.","protected":false,"verified":false,"followers_count":5277,"friends_count":675,"listed_count":299,"favourites_count":6207,"statuses_count":33043,"created_at":"Mon Aug 15 10:45:36 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2ABCE8","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"F2FA14","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641090750415958016\/ZyM2RSR1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641090750415958016\/ZyM2RSR1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355438142\/1425062998","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"NaNoWriMo2015","indices":[126,140]}],"urls":[],"user_mentions":[{"screen_name":"NaNoWriMo","name":"NaNoWriMo","id":8984102,"id_str":"8984102","indices":[36,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NaNoWriMo2015","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"wes_chu","name":"Wesley Chu","id":355438142,"id_str":"355438142","indices":[3,11]},{"screen_name":"NaNoWriMo","name":"NaNoWriMo","id":8984102,"id_str":"8984102","indices":[49,59]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862998937600,"id_str":"663727862998937600","text":"@MMMGlobal https:\/\/t.co\/h7PUwSfZFQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3372269507,"in_reply_to_user_id_str":"3372269507","in_reply_to_screen_name":"MMMGlobal","user":{"id":436535952,"id_str":"436535952","name":"\u674e\u4f73\u9054","screen_name":"asdasd2967","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":7,"created_at":"Wed Dec 14 08:28:23 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/h7PUwSfZFQ","expanded_url":"https:\/\/twitter.com\/MMMGlobal","display_url":"twitter.com\/MMMGlobal","indices":[11,34]}],"user_mentions":[{"screen_name":"MMMGlobal","name":"MMM Global","id":3372269507,"id_str":"3372269507","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080028663"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986346496,"id_str":"663727862986346496","text":"@HomuHolic \u5143\u6c17\uff1f","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727807806111745,"in_reply_to_status_id_str":"663727807806111745","in_reply_to_user_id":95333095,"in_reply_to_user_id_str":"95333095","in_reply_to_screen_name":"HomuHolic","user":{"id":23810836,"id_str":"23810836","name":"\u305f\u3066\u304c\u307f\u3060\u3088","screen_name":"roratk","location":"\u3042\u3063\u3061","url":null,"description":"\u3089\u3044\u3061\u3085\u3046\u304b\u308f\u3044\u3044 Raichu is cute\/\u5bb6\u30b2PC\u30b2\u306a\u3093\u3067\u3082\u3084\u308b\/moba ff14(aegis)","protected":false,"verified":false,"followers_count":303,"friends_count":373,"listed_count":23,"favourites_count":98,"statuses_count":120632,"created_at":"Wed Mar 11 19:14:47 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626873396\/svutnjk2il8ts6kz12rb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626873396\/svutnjk2il8ts6kz12rb.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494936624115888128\/K4hG2uKR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494936624115888128\/K4hG2uKR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23810836\/1362969687","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HomuHolic","name":"\u307b\u3080\u53a8","id":95333095,"id_str":"95333095","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028660"} +{"delete":{"status":{"id":534326986940768256,"id_str":"534326986940768256","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080028724"}} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862982164480,"id_str":"663727862982164480","text":"RT @Fact: An average swimming pool loses 1,000 gallons (3,785 L) a month to evaporation and other causes.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3581969599,"id_str":"3581969599","name":"M A I C A","screen_name":"iloveblueray_","location":"Earth ","url":null,"description":"JRQ \u2764 10.09.15 Dragon \/ Wade Rivas","protected":false,"verified":false,"followers_count":181,"friends_count":350,"listed_count":0,"favourites_count":182,"statuses_count":1073,"created_at":"Wed Sep 16 11:00:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646656400148447233\/r1YrThqj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646656400148447233\/r1YrThqj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3581969599\/1446968932","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727760704036864,"id_str":"663727760704036864","text":"An average swimming pool loses 1,000 gallons (3,785 L) a month to evaporation and other causes.","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2425231,"id_str":"2425231","name":"Fact","screen_name":"Fact","location":"WORLDWIDE","url":"http:\/\/FactualFacts.com","description":"Interesting facts about the world we live in. Fancy writing for our website? Apply here: http:\/\/factualfacts.com\/write-for-us\/","protected":false,"verified":false,"followers_count":1455828,"friends_count":0,"listed_count":4223,"favourites_count":142,"statuses_count":352929,"created_at":"Tue Mar 27 07:29:54 +0000 2007","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/787182236\/1ed1f66da4d33a239c7bc9c284a28e4d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/787182236\/1ed1f66da4d33a239c7bc9c284a28e4d.gif","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2969881129\/ab1629f03d646a755830fc704f690b8b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2969881129\/ab1629f03d646a755830fc704f690b8b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2425231\/1403522481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fact","name":"Fact","id":2425231,"id_str":"2425231","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028659"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990548992,"id_str":"663727862990548992","text":"RT @balanceb0106: 151031 \uad11\uc800\uc6b0 \ud32c\ubbf8\ud305\n\n\uc6b0\ub9ac \uc7ac\ubc94\uc774 \ub9e4\uc6b0 \uc798 \uc0dd\uacbc\ub2e4\u2764\u2764\u2764\n\n#JB #\uac13\uc138\ube10 #GOT7 #\ub2c8\uac00\ud558\uba74 #MAD https:\/\/t.co\/H9TKAiXqbE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246439880,"id_str":"3246439880","name":"doubleBB","screen_name":"bbbisked2533","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":256,"listed_count":0,"favourites_count":16,"statuses_count":712,"created_at":"Tue Jun 16 02:29:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662248283125903361\/USM6lwP9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662248283125903361\/USM6lwP9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246439880\/1446727269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:52:08 +0000 2015","id":663398607752531968,"id_str":"663398607752531968","text":"151031 \uad11\uc800\uc6b0 \ud32c\ubbf8\ud305\n\n\uc6b0\ub9ac \uc7ac\ubc94\uc774 \ub9e4\uc6b0 \uc798 \uc0dd\uacbc\ub2e4\u2764\u2764\u2764\n\n#JB #\uac13\uc138\ube10 #GOT7 #\ub2c8\uac00\ud558\uba74 #MAD https:\/\/t.co\/H9TKAiXqbE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3903206778,"id_str":"3903206778","name":"Balance B","screen_name":"balanceb0106","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":288,"friends_count":71,"listed_count":31,"favourites_count":1,"statuses_count":7,"created_at":"Thu Oct 15 13:49:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-TW","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654724080977838081\/qVCh2_D2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654724080977838081\/qVCh2_D2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":475,"favorite_count":271,"entities":{"hashtags":[{"text":"JB","indices":[36,39]},{"text":"\uac13\uc138\ube10","indices":[40,44]},{"text":"GOT7","indices":[45,50]},{"text":"\ub2c8\uac00\ud558\uba74","indices":[51,56]},{"text":"MAD","indices":[57,61]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663398524361437184,"id_str":"663398524361437184","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663398524361437184,"id_str":"663398524361437184","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}},{"id":663398552681340928,"id_str":"663398552681340928","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdeAUUYAAO5NW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdeAUUYAAO5NW.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}},{"id":663398575880073216,"id_str":"663398575880073216","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdfWvU8AAdYQg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdfWvU8AAdYQg.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}},{"id":663398592061698048,"id_str":"663398592061698048","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdgTBU8AAh-1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdgTBU8AAh-1C.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JB","indices":[54,57]},{"text":"\uac13\uc138\ube10","indices":[58,62]},{"text":"GOT7","indices":[63,68]},{"text":"\ub2c8\uac00\ud558\uba74","indices":[69,74]},{"text":"MAD","indices":[75,79]}],"urls":[],"user_mentions":[{"screen_name":"balanceb0106","name":"Balance B","id":3903206778,"id_str":"3903206778","indices":[3,16]}],"symbols":[],"media":[{"id":663398524361437184,"id_str":"663398524361437184","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663398607752531968,"source_status_id_str":"663398607752531968","source_user_id":3903206778,"source_user_id_str":"3903206778"}]},"extended_entities":{"media":[{"id":663398524361437184,"id_str":"663398524361437184","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdcW0U8AA9SMt.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663398607752531968,"source_status_id_str":"663398607752531968","source_user_id":3903206778,"source_user_id_str":"3903206778"},{"id":663398552681340928,"id_str":"663398552681340928","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdeAUUYAAO5NW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdeAUUYAAO5NW.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663398607752531968,"source_status_id_str":"663398607752531968","source_user_id":3903206778,"source_user_id_str":"3903206778"},{"id":663398575880073216,"id_str":"663398575880073216","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdfWvU8AAdYQg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdfWvU8AAdYQg.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663398607752531968,"source_status_id_str":"663398607752531968","source_user_id":3903206778,"source_user_id_str":"3903206778"},{"id":663398592061698048,"id_str":"663398592061698048","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTdgTBU8AAh-1C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTdgTBU8AAh-1C.jpg","url":"https:\/\/t.co\/H9TKAiXqbE","display_url":"pic.twitter.com\/H9TKAiXqbE","expanded_url":"http:\/\/twitter.com\/balanceb0106\/status\/663398607752531968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663398607752531968,"source_status_id_str":"663398607752531968","source_user_id":3903206778,"source_user_id_str":"3903206778"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011540992,"id_str":"663727863011540992","text":"RT @wnnwn_: \u0e2d\u0e32\u0e01\u0e32\u0e28\u0e21\u0e31\u0e19\u0e23\u0e49\u0e2d\u0e19 \u0e08\u0e1a\u0e21\u0e40\u0e04\u0e23\u0e35\u0e22\u0e14\nhttps:\/\/t.co\/n8tY1ojzgw https:\/\/t.co\/RIQGJKIHjW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2888482567,"id_str":"2888482567","name":"higher","screen_name":"be_beam15","location":null,"url":null,"description":"i'm hottest - i'm i got 7 - i'm JYP stan \u0e23\u0e35\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e17\u0e35\u0e48\u0e0a\u0e2d\u0e1a 55555","protected":false,"verified":false,"followers_count":62,"friends_count":169,"listed_count":0,"favourites_count":1583,"statuses_count":26882,"created_at":"Mon Nov 03 11:14:37 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618338959408562176\/x8BMPFB2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618338959408562176\/x8BMPFB2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2888482567\/1435747568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:41 +0000 2015","id":663726405297897472,"id_str":"663726405297897472","text":"\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e21\u0e31\u0e19\u0e23\u0e49\u0e2d\u0e19 \u0e08\u0e1a\u0e21\u0e40\u0e04\u0e23\u0e35\u0e22\u0e14\nhttps:\/\/t.co\/n8tY1ojzgw https:\/\/t.co\/RIQGJKIHjW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86525398,"id_str":"86525398","name":"winnie (\u2022\u2013\u2013\u2022 )","screen_name":"wnnwn_","location":null,"url":"http:\/\/wnnwn.flavors.me","description":"\uc784\uc7ac\ubf50 (\u2022\u2014\u2022\uff09| @GaemGyu | JJ PROJECT | #\ubf50\ub155 | #\ub9e0\uc2a8","protected":false,"verified":false,"followers_count":3790,"friends_count":384,"listed_count":45,"favourites_count":2977,"statuses_count":115775,"created_at":"Sat Oct 31 13:16:00 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/332677851\/bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/332677851\/bg.jpg","profile_background_tile":false,"profile_link_color":"1BBFD2","profile_sidebar_border_color":"80CCCF","profile_sidebar_fill_color":"EDE7E1","profile_text_color":"64BDB1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658973861891846144\/qsqYCZeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658973861891846144\/qsqYCZeA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86525398\/1446521896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":24,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n8tY1ojzgw","expanded_url":"http:\/\/imgur.com\/NvWzW86","display_url":"imgur.com\/NvWzW86","indices":[23,46]}],"user_mentions":[],"symbols":[],"media":[{"id":663726403016200197,"id_str":"663726403016200197","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","url":"https:\/\/t.co\/RIQGJKIHjW","display_url":"pic.twitter.com\/RIQGJKIHjW","expanded_url":"http:\/\/twitter.com\/wnnwn_\/status\/663726405297897472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726403016200197,"id_str":"663726403016200197","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","url":"https:\/\/t.co\/RIQGJKIHjW","display_url":"pic.twitter.com\/RIQGJKIHjW","expanded_url":"http:\/\/twitter.com\/wnnwn_\/status\/663726405297897472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n8tY1ojzgw","expanded_url":"http:\/\/imgur.com\/NvWzW86","display_url":"imgur.com\/NvWzW86","indices":[35,58]}],"user_mentions":[{"screen_name":"wnnwn_","name":"winnie (\u2022\u2013\u2013\u2022 )","id":86525398,"id_str":"86525398","indices":[3,10]}],"symbols":[],"media":[{"id":663726403016200197,"id_str":"663726403016200197","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","url":"https:\/\/t.co\/RIQGJKIHjW","display_url":"pic.twitter.com\/RIQGJKIHjW","expanded_url":"http:\/\/twitter.com\/wnnwn_\/status\/663726405297897472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663726405297897472,"source_status_id_str":"663726405297897472","source_user_id":86525398,"source_user_id_str":"86525398"}]},"extended_entities":{"media":[{"id":663726403016200197,"id_str":"663726403016200197","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHpZ_UEAUo1uy.jpg","url":"https:\/\/t.co\/RIQGJKIHjW","display_url":"pic.twitter.com\/RIQGJKIHjW","expanded_url":"http:\/\/twitter.com\/wnnwn_\/status\/663726405297897472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663726405297897472,"source_status_id_str":"663726405297897472","source_user_id":86525398,"source_user_id_str":"86525398"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973861888,"id_str":"663727862973861888","text":"@KirstyDuncanMP Looking forward to working with you. Welcome!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721906441478144,"in_reply_to_status_id_str":"663721906441478144","in_reply_to_user_id":271073165,"in_reply_to_user_id_str":"271073165","in_reply_to_screen_name":"KirstyDuncanMP","user":{"id":518814263,"id_str":"518814263","name":"Steven Kerfoot","screen_name":"SteveKerfoot","location":"London, Ontario","url":"http:\/\/www.kerfootlab.com","description":"I'm an Assistant Professor and scientist investigating the immune system and inflammatory disease. I'm interested in science, how we do it, and why.","protected":false,"verified":false,"followers_count":137,"friends_count":72,"listed_count":7,"favourites_count":160,"statuses_count":727,"created_at":"Thu Mar 08 19:50:06 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576451826\/jz278rre1g63w8yp957o.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576451826\/jz278rre1g63w8yp957o.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524916718271877122\/NcWbYI2o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524916718271877122\/NcWbYI2o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/518814263\/1413984734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KirstyDuncanMP","name":"Kirsty Duncan","id":271073165,"id_str":"271073165","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986334210,"id_str":"663727862986334210","text":"Sponge services-come in the greatest ones insofar as thy impress upon other position.: MyFRsBK","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1240575878,"id_str":"1240575878","name":"AubreyFane","screen_name":"AubreyFane2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":1,"listed_count":4,"favourites_count":0,"statuses_count":113965,"created_at":"Mon Mar 04 05:29:21 +0000 2013","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3497667705\/c11f57cca11d344709c212849d22b514_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3497667705\/c11f57cca11d344709c212849d22b514_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986309632,"id_str":"663727862986309632","text":"@nanamiKM_NIN \uc548\ucabd\uc740 \ud655\uc778 \ubabb\ud588\ub2e4\ub358\uac00....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727793100881920,"in_reply_to_status_id_str":"663727793100881920","in_reply_to_user_id":2599532653,"in_reply_to_user_id_str":"2599532653","in_reply_to_screen_name":"nanamiKM_NIN","user":{"id":4102756520,"id_str":"4102756520","name":"[\ubd80\uc0c1] \uc138\uce20\uac90 \uc6b0\uc0ac","screen_name":"RABBIT_NIN","location":null,"url":"https:\/\/www.evernote.com\/shard\/s661\/sh\/09646384-af5b-4cd9-9148-7f1ef4d58026\/fbc53b1199596324bee92d70","description":"\u96ea\u539f\u30a6\u30b5 | 165cm | 15\uc138","protected":false,"verified":false,"followers_count":39,"friends_count":39,"listed_count":0,"favourites_count":57,"statuses_count":584,"created_at":"Mon Nov 02 14:40:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663362197964263425\/wioReMe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663362197964263425\/wioReMe5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nanamiKM_NIN","name":"[\ubd80\uc0c1] \ub098\ub098\ubbf8 \ucf00\uc774\uba54\uc774","id":2599532653,"id_str":"2599532653","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986379264,"id_str":"663727862986379264","text":"RT @FreddyAmazin: One of my fave scenes \ud83d\ude02 https:\/\/t.co\/Vzc7EwBpCR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268910221,"id_str":"268910221","name":"you are stupid so I","screen_name":"edintothev_","location":null,"url":null,"description":"..","protected":false,"verified":false,"followers_count":566,"friends_count":479,"listed_count":0,"favourites_count":3538,"statuses_count":15816,"created_at":"Sat Mar 19 18:32:06 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652384805712072705\/s_4uc47-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652384805712072705\/s_4uc47-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268910221\/1418704106","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 20 23:35:56 +0000 2015","id":656614860948566016,"id_str":"656614860948566016","text":"One of my fave scenes \ud83d\ude02 https:\/\/t.co\/Vzc7EwBpCR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61003804,"id_str":"61003804","name":"FREDDY","screen_name":"FreddyAmazin","location":"San Diego, CA","url":"http:\/\/FREDDYAMAZIN.COM","description":"I love food more than people & that's all u need to know. I tweet pics, quotes, jokes, & advice. Add me on snapchat: FredAmazin freddycabrales@freddyamazin.com","protected":false,"verified":true,"followers_count":3686589,"friends_count":623954,"listed_count":12079,"favourites_count":80511,"statuses_count":99111,"created_at":"Tue Jul 28 20:02:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_tile":false,"profile_link_color":"A16CD8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61003804\/1441851464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2948,"favorite_count":6465,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":656614860394921984,"id_str":"656614860394921984","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","url":"https:\/\/t.co\/Vzc7EwBpCR","display_url":"pic.twitter.com\/Vzc7EwBpCR","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/656614860948566016\/photo\/1","type":"photo","sizes":{"medium":{"w":514,"h":707,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":514,"h":707,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":656614860394921984,"id_str":"656614860394921984","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","url":"https:\/\/t.co\/Vzc7EwBpCR","display_url":"pic.twitter.com\/Vzc7EwBpCR","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/656614860948566016\/photo\/1","type":"photo","sizes":{"medium":{"w":514,"h":707,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":514,"h":707,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FreddyAmazin","name":"FREDDY","id":61003804,"id_str":"61003804","indices":[3,16]}],"symbols":[],"media":[{"id":656614860394921984,"id_str":"656614860394921984","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","url":"https:\/\/t.co\/Vzc7EwBpCR","display_url":"pic.twitter.com\/Vzc7EwBpCR","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/656614860948566016\/photo\/1","type":"photo","sizes":{"medium":{"w":514,"h":707,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":514,"h":707,"resize":"fit"}},"source_status_id":656614860948566016,"source_status_id_str":"656614860948566016","source_user_id":61003804,"source_user_id_str":"61003804"}]},"extended_entities":{"media":[{"id":656614860394921984,"id_str":"656614860394921984","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRzDvJQVAAA3n-h.jpg","url":"https:\/\/t.co\/Vzc7EwBpCR","display_url":"pic.twitter.com\/Vzc7EwBpCR","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/656614860948566016\/photo\/1","type":"photo","sizes":{"medium":{"w":514,"h":707,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":514,"h":707,"resize":"fit"}},"source_status_id":656614860948566016,"source_status_id_str":"656614860948566016","source_user_id":61003804,"source_user_id_str":"61003804"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862999031808,"id_str":"663727862999031808","text":"RT @ritawazowski: Ando mesmo a ficar sem paci\u00eancia para estas cenas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022174359,"id_str":"3022174359","name":"dreamer !\u00a1","screen_name":"shadesofdreamer","location":null,"url":null,"description":"SLB \u2764\ufe0f","protected":false,"verified":false,"followers_count":251,"friends_count":235,"listed_count":0,"favourites_count":11530,"statuses_count":15397,"created_at":"Fri Feb 06 21:17:37 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663417026191470592\/SGp9Z7lC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663417026191470592\/SGp9Z7lC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022174359\/1446060648","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 22:08:27 +0000 2015","id":662753437650698241,"id_str":"662753437650698241","text":"Ando mesmo a ficar sem paci\u00eancia para estas cenas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1499540557,"id_str":"1499540557","name":"Rita","screen_name":"ritawazowski","location":null,"url":null,"description":"instragram: ritaserra_s2 snapchat: ritaserrajh","protected":false,"verified":false,"followers_count":696,"friends_count":425,"listed_count":1,"favourites_count":2743,"statuses_count":15889,"created_at":"Mon Jun 10 22:05:04 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660627014467100672\/Mccf_O_1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660627014467100672\/Mccf_O_1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1499540557\/1446892665","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ritawazowski","name":"Rita","id":1499540557,"id_str":"1499540557","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080028663"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862986358784,"id_str":"663727862986358784","text":"RT @officeofmasterG: #BoycottPakistanWale https:\/\/t.co\/n0GTXrTOxe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724283806,"id_str":"2724283806","name":"bansalsurinder","screen_name":"bansalsurinder1","location":"\u0939\u0930\u093f\u092f\u093e\u0923\u093e ","url":null,"description":"\u091c\u0932,\u091c\u0902\u0917\u0932 ,\u095b\u092e\u0940\u0928, \u092a\u0936\u0941- \u092a\u0930\u093f\u0902\u0926\u094b\u0902 \u0914\u0930 \u0926\u0947\u0936 \u0915\u0947 \u092a\u094d\u0930\u0924\u093f \u0938\u0902\u0935\u0947\u0926\u0928\u0936\u0940\u0932 \u092e\u093f\u0924\u094d\u0930 \u0939\u0940 \u092b\u0949\u0932\u094b \u0915\u0930\u0947\u0902","protected":false,"verified":false,"followers_count":565,"friends_count":247,"listed_count":3,"favourites_count":11080,"statuses_count":20066,"created_at":"Mon Aug 11 17:04:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656875466804957184\/eP_eTLih_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656875466804957184\/eP_eTLih_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2724283806\/1436701345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:22 +0000 2015","id":663726577054683136,"id_str":"663726577054683136","text":"#BoycottPakistanWale https:\/\/t.co\/n0GTXrTOxe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":572387423,"id_str":"572387423","name":"Intolerant\u092e\u093e\u0938\u094d\u091f\u0930 \u091c\u0940\u2122","screen_name":"officeofmasterG","location":"Uttar Pradesh, India","url":null,"description":"\u091c\u094b \u092e\u0928 \u092e\u0947\u0902 \u0906\u0924\u093e \u0939\u0948 \u0932\u093f\u0916\u0924\u093e \u0939\u0942\u0901,\n\u0935\u094d\u092f\u0902\u0917\/\u0915\u091f\u093e\u0915\u094d\u0937\/80% \u092e\u094c\u0932\u093f\u0915,\u0909\u092e\u094d\u0926\u093e \u091f\u094d\u0935\u0940\u091f\u094d\u0938 \u0915\u094b \u092c\u093f\u0928\u093e \u092d\u0947\u0926\u092d\u093e\u0935 RT,\nFollowback is Subject to market risk,\n\u092e\u0947\u0930\u0947 \u091f\u094d\u0935\u0940\u091f\u094d\u0938 \u092a\u0922\u0928\u0947 \u0915\u0947 \u0932\u093f\u092f\u0947 Fav \u092a\u0930 \u091c\u093e\u092f\u0947\u0902","protected":false,"verified":false,"followers_count":591,"friends_count":204,"listed_count":6,"favourites_count":2714,"statuses_count":6162,"created_at":"Sun May 06 07:09:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648419531497406466\/t4GFypRw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648419531497406466\/t4GFypRw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572387423\/1434088768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[{"text":"BoycottPakistanWale","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726574919749633,"id_str":"663726574919749633","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","url":"https:\/\/t.co\/n0GTXrTOxe","display_url":"pic.twitter.com\/n0GTXrTOxe","expanded_url":"http:\/\/twitter.com\/officeofmasterG\/status\/663726577054683136\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":128,"resize":"fit"},"medium":{"w":600,"h":226,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726574919749633,"id_str":"663726574919749633","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","url":"https:\/\/t.co\/n0GTXrTOxe","display_url":"pic.twitter.com\/n0GTXrTOxe","expanded_url":"http:\/\/twitter.com\/officeofmasterG\/status\/663726577054683136\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":128,"resize":"fit"},"medium":{"w":600,"h":226,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BoycottPakistanWale","indices":[21,41]}],"urls":[],"user_mentions":[{"screen_name":"officeofmasterG","name":"Intolerant\u092e\u093e\u0938\u094d\u091f\u0930 \u091c\u0940\u2122","id":572387423,"id_str":"572387423","indices":[3,19]}],"symbols":[],"media":[{"id":663726574919749633,"id_str":"663726574919749633","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","url":"https:\/\/t.co\/n0GTXrTOxe","display_url":"pic.twitter.com\/n0GTXrTOxe","expanded_url":"http:\/\/twitter.com\/officeofmasterG\/status\/663726577054683136\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":128,"resize":"fit"},"medium":{"w":600,"h":226,"resize":"fit"}},"source_status_id":663726577054683136,"source_status_id_str":"663726577054683136","source_user_id":572387423,"source_user_id_str":"572387423"}]},"extended_entities":{"media":[{"id":663726574919749633,"id_str":"663726574919749633","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHzaYUEAEayuz.jpg","url":"https:\/\/t.co\/n0GTXrTOxe","display_url":"pic.twitter.com\/n0GTXrTOxe","expanded_url":"http:\/\/twitter.com\/officeofmasterG\/status\/663726577054683136\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":128,"resize":"fit"},"medium":{"w":600,"h":226,"resize":"fit"}},"source_status_id":663726577054683136,"source_status_id_str":"663726577054683136","source_user_id":572387423,"source_user_id_str":"572387423"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080028660"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973751296,"id_str":"663727862973751296","text":"@bai_push_da \u307f\u3093\u306a\u304c\u4e00\u751f\u61f8\u547d\u6f14\u594f\u3057\u3066\u3044\u3066\u3001\u3058\u30fc\u3093\u3068\u3057\u305f\u3088\u3002\u30c7\u30a4\u30b8\u30fc\u3001\u3042\u306e\u30c9\u30e9\u30e0\u306e\u3068\u3053\u308d\u3092\u30ab\u30db\u30f3\u3067\u3084\u308b\u306e\u304c\u672c\u5f53\u306b\u7d20\u6674\u3089\u3057\u304b\u3063\u305f(^^)\u4fee\u5b66\u65c5\u884c\u306e\u6620\u50cf\u3001\u5148\u8f29\u65b9\u3082\u307f\u3093\u306a\u7d76\u8cdb\u3057\u3066\u305f\u3088(\u7b11)\u672c\u5f53\u306b\u697d\u3057\u304f\u3066\u5fc3\u6e29\u307e\u308b\u6642\u9593\u3092\u3042\u308a\u304c\u3068\u3046\u306d(*^^*)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707894613807106,"in_reply_to_status_id_str":"663707894613807106","in_reply_to_user_id":522113594,"in_reply_to_user_id_str":"522113594","in_reply_to_screen_name":"bai_push_da","user":{"id":586271405,"id_str":"586271405","name":"\u3058\u3083\u304c","screen_name":"casablanca_ms","location":null,"url":null,"description":"\u2606\u8da3\u5473\u306f\u97f3\u697d\u9451\u8cde \u3055\u3060\u307e\u3055\u3057\u3001TSUKEMEN\u3001The BEATLES\u3001PaulMcCartney \u2606\u30a6\u30af\u30ec\u30ec\u3092\u7fd2\u3063\u3066\u3044\u307e\u3059\u2606\u5360\u3044\u304c\u597d\u304d\u3067\u3059","protected":false,"verified":false,"followers_count":59,"friends_count":84,"listed_count":2,"favourites_count":1002,"statuses_count":448,"created_at":"Mon May 21 05:24:59 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414002459325915137\/bB3wnYlL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414002459325915137\/bB3wnYlL_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bai_push_da","name":"\u30b2\u30c3\u30c4\u30fc","id":522113594,"id_str":"522113594","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863007346689,"id_str":"663727863007346689","text":"@ars_onsk_sn \n\u9001\u6599\u304b\u304b\u3063\u3061\u3083\u3063\u3066\u3082\u5927\u4e08\u592b\u306a\u3089\u5168\u7136\u3067\u304d\u308b\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724845595795456,"in_reply_to_status_id_str":"663724845595795456","in_reply_to_user_id":2436956936,"in_reply_to_user_id_str":"2436956936","in_reply_to_screen_name":"ars_onsk_sn","user":{"id":2609369648,"id_str":"2609369648","name":"\u30b5\u30c8\u30df\u30e4","screen_name":"satomiya09","location":"12.26\uff2a\uff21\uff30","url":null,"description":"\u76f8\u65b9@s_arashi_luv \uff0f\u3061\u3061\u3053\u3044@Oo_araaashi_oO\uff0f\u53cc\u5b50\u3061\u3083\u3093@26_bst \uff0f\u53e3\u5185\u708e\u306e\u59b9@chirorukiss10 \uff0f\u305f\u3074\u3055\u3068\uff0f \u3042\u3089\u3055\u3068\u2113\u03c3\u03bd\u0454","protected":false,"verified":false,"followers_count":876,"friends_count":237,"listed_count":58,"favourites_count":11662,"statuses_count":26803,"created_at":"Mon Jul 07 10:31:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650700792463159296\/pLv9lOI2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650700792463159296\/pLv9lOI2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2609369648\/1443258409","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ars_onsk_sn","name":"\u307e\u3081\u3055\u3068 \u300e\u56fa\u5b9a\u30c4\u30a4\u30fc\u30c8\u898b\u3066\u306d\u300f","id":2436956936,"id_str":"2436956936","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028665"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862982144000,"id_str":"663727862982144000","text":"F3 #NuupXe #AmateurRadio #WeatherReport @CRAEG_AC Silao Leon Irapuato Reporte del Clima en Silao, Temperatura 13 grados centigrados, Pre...","source":"\u003ca href=\"https:\/\/github.com\/xe1gyq\/nuupxe\" rel=\"nofollow\"\u003eNuupXe\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052033202,"id_str":"3052033202","name":"NuupXe","screen_name":"NuupXe","location":"Mexico","url":"https:\/\/github.com\/xe1gyq\/nuupxe","description":"Amateur Radio Voice Software Infrastructure","protected":false,"verified":false,"followers_count":95,"friends_count":253,"listed_count":2,"favourites_count":4,"statuses_count":23285,"created_at":"Sun Mar 01 07:33:12 +0000 2015","utc_offset":-21600,"time_zone":"America\/Mexico_City","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"400000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587228127169884160\/-6pBbozo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587228127169884160\/-6pBbozo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052033202\/1429443118","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NuupXe","indices":[3,10]},{"text":"AmateurRadio","indices":[11,24]},{"text":"WeatherReport","indices":[25,39]}],"urls":[],"user_mentions":[{"screen_name":"CRAEG_AC","name":"CRAEG","id":115790613,"id_str":"115790613","indices":[40,49]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080028659"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863003148288,"id_str":"663727863003148288","text":"#\u3042\u306a\u305f\u3092\u611b\u3057\u3066\u3044\u308b\u4ebaTOP10\n1\u4f4d\uff1a@YsTK_alt\n2\u4f4d\uff1a@kanoesaru152\n3\u4f4d\uff1a@____clover_____\n4\u4f4d\uff1a@hahahasugedaro\n5\u4f4d\uff1a@cbms_tommy\n6\u4f4d\uff1a\u2026\nhttps:\/\/t.co\/4C7haJOncX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246772153,"id_str":"246772153","name":"\u3082\u3063\u3061\u308aver1.4.5","screen_name":"hahahasugedaro","location":"\u897f\u30a8\u30ea\u30f3\u30c7\u30a3\u30eb","url":null,"description":"\u30b5\u30d0\u30b2\u3001ship8\u3001BF\u3001\u30de\u30a4\u30f3\u30af\u30e9\u30d5\u30bf\u30fc\u3002\u3082\u3046\u7981\u7159\u3068\u304b\u3069\u3046\u3067\u3082\u3088\u304f\u306a\u308a\u307e\u3057\u305f\u3001VTR\u4e57\u308a\u306e\u30d9\u30fc\u30b7\u30b9\u30c8\u3067\u3059","protected":false,"verified":false,"followers_count":150,"friends_count":161,"listed_count":5,"favourites_count":425,"statuses_count":21911,"created_at":"Thu Feb 03 12:48:40 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555011067147866112\/u7qZ4Gno_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555011067147866112\/u7qZ4Gno_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246772153\/1430968411","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3042\u306a\u305f\u3092\u611b\u3057\u3066\u3044\u308b\u4ebaTOP10","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/4C7haJOncX","expanded_url":"http:\/\/appli-maker.jp\/analytic_apps\/21611\/results\/67612574","display_url":"appli-maker.jp\/analytic_apps\/\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"YsTK_alt","name":"\u0451\u0441\u0438\u0442\u0430\u043a\u0430","id":162386627,"id_str":"162386627","indices":[20,29]},{"screen_name":"kanoesaru152","name":"\u9b9f\u9c47@\u3042\u3050\u30fc\uff08\u7a40\u6f70\uff09","id":1412202666,"id_str":"1412202666","indices":[33,46]},{"screen_name":"____clover_____","name":"\u3052\u3093\u304d","id":863126028,"id_str":"863126028","indices":[50,66]},{"screen_name":"hahahasugedaro","name":"\u3082\u3063\u3061\u308aver1.4.5","id":246772153,"id_str":"246772153","indices":[70,85]},{"screen_name":"cbms_tommy","name":"\u3064\u304b\u3055(\u3057\u3082\u3084\u3051)","id":953637582,"id_str":"953637582","indices":[89,100]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028664"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990540804,"id_str":"663727862990540804","text":"RT @crzbro: \uc57d 8\ubd84 \uc815\ub3c4 \uc9c0\ub09c \ud6c4\uc5d0 \uacbd\ucc30\uc774 \ub3c4\ucc29\ud588\uace0, \uacbd\ucc30\uc774 \ud604\uad00\ubb38\uc744 \uc5f4 \uac83\uc744 \uc694\uad6c\ud558\uc790 \uac70\uc2e4\uc5d0 \uc788\ub358 \ub0a8\uc131\uc774 \uc758\uc678\ub85c \uc21c\uc21c\ud788 \ud604\uad00\ubb38\uc744 \uc5f4\uc5b4\uc90c. \uacbd\ucc30\uc5d0\uac8c \ud53c\ud574 \uc5ec\uc131\uc758 \ubcf4\ud638\ub97c \uc778\uacc4\ud55c \ub4a4, \uc9d1\uc5d0\uc11c \ub6f0\uccd0\ub098\uc654\ub358 \ub0a8\uc790\ub4e4 \uc911 \uc5ec\uc12f \uba85\uc774\ub791 \uc11c\ub85c \uc218\uace0\ud558\uc168\ub2e4\uba74\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350340173,"id_str":"350340173","name":"\ud478\ub978\ub9e4","screen_name":"BlueFalcon47","location":"\ud5ec\ud504\ubbf8 \ud5ec\ud504\ubbf8 \uc544\uc784\uc628\ube45\ud30c\uc774\uc5b4","url":"http:\/\/bluefalcon.egloos.com","description":"\u201cNo. It's stupidity. Never underestimate the power of stupidity.\u201d - W. Patrick Lang","protected":false,"verified":false,"followers_count":682,"friends_count":224,"listed_count":19,"favourites_count":3767,"statuses_count":26264,"created_at":"Sun Aug 07 16:22:05 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2524674091\/xqm83uasmtr5s3vnitwf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2524674091\/xqm83uasmtr5s3vnitwf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350340173\/1402068720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:01 +0000 2015","id":663719696395468800,"id_str":"663719696395468800","text":"\uc57d 8\ubd84 \uc815\ub3c4 \uc9c0\ub09c \ud6c4\uc5d0 \uacbd\ucc30\uc774 \ub3c4\ucc29\ud588\uace0, \uacbd\ucc30\uc774 \ud604\uad00\ubb38\uc744 \uc5f4 \uac83\uc744 \uc694\uad6c\ud558\uc790 \uac70\uc2e4\uc5d0 \uc788\ub358 \ub0a8\uc131\uc774 \uc758\uc678\ub85c \uc21c\uc21c\ud788 \ud604\uad00\ubb38\uc744 \uc5f4\uc5b4\uc90c. \uacbd\ucc30\uc5d0\uac8c \ud53c\ud574 \uc5ec\uc131\uc758 \ubcf4\ud638\ub97c \uc778\uacc4\ud55c \ub4a4, \uc9d1\uc5d0\uc11c \ub6f0\uccd0\ub098\uc654\ub358 \ub0a8\uc790\ub4e4 \uc911 \uc5ec\uc12f \uba85\uc774\ub791 \uc11c\ub85c \uc218\uace0\ud558\uc168\ub2e4\uba74\uc11c \ud3b8\uc758\uc810 \uae38\ub9e5\ud568 \u314b\u314b;","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718326950989825,"in_reply_to_status_id_str":"663718326950989825","in_reply_to_user_id":95255804,"in_reply_to_user_id_str":"95255804","in_reply_to_screen_name":"crzbro","user":{"id":95255804,"id_str":"95255804","name":"\ubbf8\uce5c\uc624\ube60","screen_name":"crzbro","location":"luna","url":null,"description":"\ubc25\uc744 \uc704\ud574 \ubc95\uc744 \ud558\ub294 \ubd88\uc30d\ud55c \ubc95\uc7c1\uc774","protected":false,"verified":false,"followers_count":4260,"friends_count":1473,"listed_count":93,"favourites_count":3794,"statuses_count":90853,"created_at":"Mon Dec 07 18:44:23 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662779241503678464\/xZ0L307w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662779241503678464\/xZ0L307w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95255804\/1442844547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"crzbro","name":"\ubbf8\uce5c\uc624\ube60","id":95255804,"id_str":"95255804","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862982119424,"id_str":"663727862982119424","text":"@ipuyume2020 \u3075\u3041\u3063\uff01\uff1f","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727650020548608,"in_reply_to_status_id_str":"663727650020548608","in_reply_to_user_id":3835877173,"in_reply_to_user_id_str":"3835877173","in_reply_to_screen_name":"ipuyume2020","user":{"id":3298734949,"id_str":"3298734949","name":"\u3086\u304d\u304b","screen_name":"yukika_syr13","location":"\u3057\u304c\u21d4\u304a\u30fc\u3055\u304b","url":"http:\/\/twpf.jp\/yukika_syr13","description":"\u30c7\u30ec\u30b9\u30c6\/DIVA\/\u767d\u732b\/\u30d0\u30c8\u30ac\u3068\u304b\u307d\u3061\u3063\u3066\u305f\u308a\u6687\u306a\u6642\u306b\u6b4c\u3063\u305f\u308a\u3057\u3066\u308b\u4eba\u3002\u30b7\u30e3\u30ed\u3068\u83ef\u8eca\u3055\u3093\u3092\u990a\u5206\u306b\u3057\u3066\u6bce\u65e5\u751f\u304d\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":132,"friends_count":112,"listed_count":4,"favourites_count":11534,"statuses_count":16148,"created_at":"Mon Jul 27 21:21:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663546762502651905\/yc4KOJPA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663546762502651905\/yc4KOJPA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298734949\/1446984344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ipuyume2020","name":"\u3086\u308b\u3075\u308f\u3086\u3081\u306b\u3083\u3093\u3070('\u03c9'\u25ce)\uff72\uff72\uff96\uff70","id":3835877173,"id_str":"3835877173","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028659"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973763585,"id_str":"663727862973763585","text":"RT @verybaesic: the right person will come along and you won't need to do anything to keep them interested for the simple fact that you'll \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2233253431,"id_str":"2233253431","name":"Helen Keller","screen_name":"maddischeuren","location":null,"url":null,"description":"who knows","protected":false,"verified":false,"followers_count":162,"friends_count":281,"listed_count":0,"favourites_count":1968,"statuses_count":1424,"created_at":"Fri Dec 06 16:45:39 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"540C0C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656637927460487168\/9UncDRje_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656637927460487168\/9UncDRje_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2233253431\/1445228594","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:36:11 +0000 2015","id":663575789842100224,"id_str":"663575789842100224","text":"the right person will come along and you won't need to do anything to keep them interested for the simple fact that you'll be enough","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201780226,"id_str":"1201780226","name":"John","screen_name":"verybaesic","location":"California","url":null,"description":"bio under construction","protected":false,"verified":false,"followers_count":28774,"friends_count":566,"listed_count":89,"favourites_count":580,"statuses_count":492,"created_at":"Wed Feb 20 18:14:21 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529322608727031808\/JShQ9njJ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529322608727031808\/JShQ9njJ.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661404245573398528\/jDfoy_qz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661404245573398528\/jDfoy_qz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201780226\/1447048177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":714,"favorite_count":805,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"verybaesic","name":"John","id":1201780226,"id_str":"1201780226","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011475457,"id_str":"663727863011475457","text":"Youuuuuu liennnn \ud83d\ude28 https:\/\/t.co\/7IrVeoKhSJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":280605527,"id_str":"280605527","name":"November 20th","screen_name":"DaiJuelz","location":"DaiDai","url":"http:\/\/heartless.com","description":"shawty my beyonc\u00e9\u2728nasty19.","protected":false,"verified":false,"followers_count":3115,"friends_count":1271,"listed_count":13,"favourites_count":31565,"statuses_count":281550,"created_at":"Mon Apr 11 17:27:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538421377\/7068148291_457e23770b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538421377\/7068148291_457e23770b.jpg","profile_background_tile":true,"profile_link_color":"FF1994","profile_sidebar_border_color":"F7F9FA","profile_sidebar_fill_color":"000000","profile_text_color":"F7FF14","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660945163477344256\/vFwMZrJ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660945163477344256\/vFwMZrJ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280605527\/1447038482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725413210963968,"quoted_status_id_str":"663725413210963968","quoted_status":{"created_at":"Mon Nov 09 14:30:44 +0000 2015","id":663725413210963968,"id_str":"663725413210963968","text":"50cent https:\/\/t.co\/uif6VGelC8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76192741,"id_str":"76192741","name":"Vanna (Von-na)","screen_name":"JeauxVonna","location":"216\/504","url":null,"description":"She ran with some made niggas, cuz she was a made chic... #GetWithTheWinningTeamHeaux #DragonBaller #ThatsNice *petty laugh* #ThatsSensational","protected":false,"verified":false,"followers_count":1066,"friends_count":1254,"listed_count":10,"favourites_count":4812,"statuses_count":11258,"created_at":"Tue Sep 22 00:12:15 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0B0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/171147441\/repno.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/171147441\/repno.jpg","profile_background_tile":true,"profile_link_color":"DB042F","profile_sidebar_border_color":"02060F","profile_sidebar_fill_color":"27487A","profile_text_color":"7982A8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571175949879914496\/D2bCKz2n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571175949879914496\/D2bCKz2n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76192741\/1404717985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724377419083776,"quoted_status_id_str":"663724377419083776","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uif6VGelC8","expanded_url":"https:\/\/twitter.com\/DaiJuelz\/status\/663724377419083776","display_url":"twitter.com\/DaiJuelz\/statu\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7IrVeoKhSJ","expanded_url":"https:\/\/twitter.com\/jeauxvonna\/status\/663725413210963968","display_url":"twitter.com\/jeauxvonna\/sta\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011475456,"id_str":"663727863011475456","text":"\u63a8\u3057\u3068\u304b\u95a2\u4fc2\u306a\u304f\u5168\u54e1\u304c\u5c0a\u656c\u3067\u304d\u308b\u821e\u53f0\u3067\u3057\u305f\u3002\n\u307f\u3093\u306a\u304b\u3063\u3053\u3044\u3044\u308f\u3041\u30fc\u30fc\u30fc\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576799092,"id_str":"576799092","name":"\u307f\u3055","screen_name":"ymt2645","location":null,"url":null,"description":"\u99ac\u5834\u3055\u3093\u5bb6\u306e\u826f\u99ac\u3055\u3093\u5927\u672c\u547d\u3002\u30c8\u30ad\u306f\u79c1\u306e\u7652\u3057\u3002\u5e55\u672bR(\u8d85\u6b4c\u5287)\u3082\u5927\u597d\u304d\uff01\u9f8d\u99ac&\u6176\u559c\u69d8\u63a8\u3057\u3002\u3088\u304f\u592a\u7530\u3055\u3093\u5bb6\u306e\u3082\u3063\u304f\u3093\u3092\u611b\u3067\u3066\u3044\u307e\u3059\u3002 \u5e55\u672bR\/\u5f31\u30da\u30c0\/\u5922100\/\u91ce\u5d0e\u304f\u3093\/\u4ffa\u7269\u8a9e","protected":false,"verified":false,"followers_count":26,"friends_count":39,"listed_count":0,"favourites_count":2675,"statuses_count":7218,"created_at":"Fri May 11 01:08:10 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607192231288569856\/wwVNl1BP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607192231288569856\/wwVNl1BP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576799092\/1433500794","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990532608,"id_str":"663727862990532608","text":"RT @neerumahi1: FF special \nFollow @BarkhaShukla45 nd @Ashish_1905 for incredible tweets \u263a\ud83d\ude0a \nSpecially AAPians \ud83d\ude4f\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2534670933,"id_str":"2534670933","name":"jassa khaira","screen_name":"hskhaira1","location":"Punjab \u2708patiala \u2708nabha","url":null,"description":"free thinker , nature lover, insaan,\n(dislike cong ,bjp ,akalis )Ak fan\nplz Rt if you like my tweet","protected":false,"verified":false,"followers_count":709,"friends_count":196,"listed_count":14,"favourites_count":8933,"statuses_count":40760,"created_at":"Thu May 08 05:25:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655259545871126529\/ydwR-qFP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655259545871126529\/ydwR-qFP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2534670933\/1434180768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 02:50:32 +0000 2015","id":660650099459002368,"id_str":"660650099459002368","text":"FF special \nFollow @BarkhaShukla45 nd @Ashish_1905 for incredible tweets \u263a\ud83d\ude0a \nSpecially AAPians \ud83d\ude4f\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603595620,"id_str":"603595620","name":"Neeru Mahi (Noor)AAP","screen_name":"neerumahi1","location":"Chandigarh, India (Punjab) ","url":null,"description":"Papa's girl. Student. Sikh. AK fan. #AAPian. Gautam Gulati,Salman Khan,CM Punk,Daniel Bryan,John Cena,Sting,Ambrose, AJ Lee n Bella's.Well m vry simple girl.","protected":false,"verified":false,"followers_count":6097,"friends_count":6384,"listed_count":18,"favourites_count":58178,"statuses_count":43015,"created_at":"Sat Jun 09 11:18:16 +0000 2012","utc_offset":-18000,"time_zone":"Indiana (East)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441817416109027328\/81SvJ5Oh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441817416109027328\/81SvJ5Oh.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662655483619078144\/4wJ8QYjm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662655483619078144\/4wJ8QYjm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603595620\/1446469361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"175ac8b36fb626a2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/175ac8b36fb626a2.json","place_type":"city","name":"Mohali","full_name":"Mohali, Punjab","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[76.515454,30.569094],[76.515454,30.938966],[76.860158,30.938966],[76.860158,30.569094]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BarkhaShukla45","name":"Barkha Shukla Singh","id":3250414898,"id_str":"3250414898","indices":[19,34]},{"screen_name":"Ashish_1905","name":"#AAPtard4Life\u00a9(CYSS)","id":217358499,"id_str":"217358499","indices":[38,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"neerumahi1","name":"Neeru Mahi (Noor)AAP","id":603595620,"id_str":"603595620","indices":[3,14]},{"screen_name":"BarkhaShukla45","name":"Barkha Shukla Singh","id":3250414898,"id_str":"3250414898","indices":[35,50]},{"screen_name":"Ashish_1905","name":"#AAPtard4Life\u00a9(CYSS)","id":217358499,"id_str":"217358499","indices":[54,66]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028661"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011635200,"id_str":"663727863011635200","text":"Never forget to stay humble, all that's given could be taken away. https:\/\/t.co\/aXzasI6JuN","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137120479,"id_str":"137120479","name":"Ashle Danger","screen_name":"AshleDanger","location":"New York","url":"http:\/\/www.StrangeWonderful.com","description":"Photographer. Graphic Designer. Content Creator & Influencer | Lover of Tech & Travel #GirlsInTech #Gamer #Netgear #Fitness | Email - info@strangewonderful.com","protected":false,"verified":false,"followers_count":23784,"friends_count":1830,"listed_count":523,"favourites_count":2673,"statuses_count":131472,"created_at":"Sun Apr 25 21:33:45 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB90DF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458326234296877057\/c5-xSu7l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458326234296877057\/c5-xSu7l.jpeg","profile_background_tile":true,"profile_link_color":"E617A1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660980302257528832\/6L7GGFWu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660980302257528832\/6L7GGFWu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137120479\/1409117082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/aXzasI6JuN","expanded_url":"https:\/\/instagram.com\/p\/93dUp5TJdo\/","display_url":"instagram.com\/p\/93dUp5TJdo\/","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862978093056,"id_str":"663727862978093056","text":"Coco Radia #3\n11\u670828\u65e5\uff08\u571f\uff09TSUTAYA O-EAST\n\u3010\u672c\u65e5\u767a\u8868\u51fa\u6f14\u8005\uff01\u2460\u3011\n\u30aa\u30c8\u30e1\u30d6\u30ec\u30a4\u30f4\uff0fWith Love\uff0f\u6c34\u68ee\u7531\u83dcwith\u3064\u308b\u3074\u304b\u308a\u3093 \u4ed6\n\u30c1\u30b1\u30c3\u30c8\u4e88\u7d04\u53ca\u3073\u8a73\u7d30\uff1ahttps:\/\/t.co\/YIfsptf1hn","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3248443356,"id_str":"3248443356","name":"\u30a2\u30a4\u30c9\u30eb\u30a4\u30d9\u30f3\u30c8\u300cCoco Radia\u300d","screen_name":"Coco_Radia","location":null,"url":"http:\/\/www.cocoradia.com\/","description":"\u30a2\u30a4\u30c9\u30eb\u30a4\u30d9\u30f3\u30c8\u300cCoco Radia\u300d\u30aa\u30d5\u30a3\u30b7\u30e3\u30ebTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01\u30a4\u30d9\u30f3\u30c8\u60c5\u5831\u7b49\u3092\u304a\u77e5\u3089\u305b\u81f4\u3057\u307e\u3059\u3002\n\u6b21\u56de\uff1e11\u670828\u65e5TSUTAYA O-EAST","protected":false,"verified":false,"followers_count":225,"friends_count":227,"listed_count":3,"favourites_count":0,"statuses_count":287,"created_at":"Thu Jun 18 07:25:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"002F5B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641148188951384064\/bAYu_uZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641148188951384064\/bAYu_uZd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248443356\/1441696456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YIfsptf1hn","expanded_url":"http:\/\/www.cocoradia.com\/","display_url":"cocoradia.com","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028658"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862973726720,"id_str":"663727862973726720","text":"RT @longtaota: \u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e07\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32\u0e40\u0e2a\u0e21\u0e2d ?\n.\n.\n.\n.\n.\n.\n.\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e41\u0e15\u0e48\u0e21\u0e31\u0e19\u0e19\u0e49\u0e2d\u0e22\u0e25\u0e07\u0e40\u0e27\u0e25\u0e32\u0e40\u0e08\u0e2d\u0e43\u0e04\u0e23\u0e2a\u0e31\u0e01\u0e04\u0e19\u0e21\u0e32\u0e40\u0e15\u0e34\u0e21\u0e40\u0e15\u0e47\u0e21.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2423414042,"id_str":"2423414042","name":"' \u0e17\u0e14\u0e25\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e34\u0e19.","screen_name":"Mangpor002","location":null,"url":null,"description":"Yo! \u0e01\u0e22\u0e39\u0e2d\u0e32\u0e2a\u0e4c \u0e04\u0e19\u0e0b\u0e37\u0e48\u0e2d... \u0e17\u0e35\u0e48\u0e23\u0e49\u0e2d\u0e07\u0e41\u0e15\u0e48 \u0e2d\u0e32\u0e2a\u0e4c. ~~ ||\n\u0e21\u0e32\u0e01\u0e34\u0e19\u0e40\u0e1c\u0e37\u0e2d\u0e01\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19\u0e2a\u0e34... \u0e2b\u0e38\u0e2b\u0e36","protected":false,"verified":false,"followers_count":54,"friends_count":121,"listed_count":0,"favourites_count":958,"statuses_count":5661,"created_at":"Wed Apr 02 07:49:20 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578978754854195200\/Enpl9IR6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578978754854195200\/Enpl9IR6.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350362267496448\/axx42MjK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350362267496448\/axx42MjK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423414042\/1446990024","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 14:58:11 +0000 2015","id":662645158396100608,"id_str":"662645158396100608","text":"\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2b\u0e07\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32\u0e40\u0e2a\u0e21\u0e2d ?\n.\n.\n.\n.\n.\n.\n.\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e41\u0e15\u0e48\u0e21\u0e31\u0e19\u0e19\u0e49\u0e2d\u0e22\u0e25\u0e07\u0e40\u0e27\u0e25\u0e32\u0e40\u0e08\u0e2d\u0e43\u0e04\u0e23\u0e2a\u0e31\u0e01\u0e04\u0e19\u0e21\u0e32\u0e40\u0e15\u0e34\u0e21\u0e40\u0e15\u0e47\u0e21.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185553887,"id_str":"2185553887","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","screen_name":"longtaota","location":"\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e18\u0e2d...","url":null,"description":"\u0e22\u0e2d\u0e14\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e17\u0e22 | \u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30 | \u0e2a\u0e38\u0e14\u0e22\u0e2d\u0e14\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 ... \u0e21\u0e32\u0e08\u0e32\u0e01\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01","protected":false,"verified":false,"followers_count":525242,"friends_count":20,"listed_count":48,"favourites_count":55,"statuses_count":3623,"created_at":"Sun Nov 10 04:02:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185553887\/1392375059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4662,"favorite_count":690,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"longtaota","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","id":2185553887,"id_str":"2185553887","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080028657"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727863011680256,"id_str":"663727863011680256","text":"not every damn question is rhetorical. it doesn't matter if no one's listening, or not.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179455546,"id_str":"4179455546","name":"Catherine Thomas","screen_name":"JillOHolloway","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":48,"created_at":"Mon Nov 09 13:07:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080028666"} +{"delete":{"status":{"id":654726462998581248,"id_str":"654726462998581248","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080028907"}} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862982303744,"id_str":"663727862982303744","text":"N\u00e4r man undrar saker som google inte vet svaret p\u00e5.... https:\/\/t.co\/lvEQoyv1OW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269385067,"id_str":"269385067","name":"Annie Runesson","screen_name":"aaaanniie","location":null,"url":null,"description":"\u00c4lskar mat mer \u00e4n mig sj\u00e4lv. Amen to that.","protected":false,"verified":false,"followers_count":137,"friends_count":91,"listed_count":0,"favourites_count":8095,"statuses_count":1666,"created_at":"Sun Mar 20 17:30:05 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/415539842639208448\/SmPl46YH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/415539842639208448\/SmPl46YH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269385067\/1392850242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727854920835072,"id_str":"663727854920835072","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI96wWoAACZXp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI96wWoAACZXp.jpg","url":"https:\/\/t.co\/lvEQoyv1OW","display_url":"pic.twitter.com\/lvEQoyv1OW","expanded_url":"http:\/\/twitter.com\/aaaanniie\/status\/663727862982303744\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727854920835072,"id_str":"663727854920835072","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI96wWoAACZXp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI96wWoAACZXp.jpg","url":"https:\/\/t.co\/lvEQoyv1OW","display_url":"pic.twitter.com\/lvEQoyv1OW","expanded_url":"http:\/\/twitter.com\/aaaanniie\/status\/663727862982303744\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080028659"} +{"delete":{"status":{"id":647910291154472961,"id_str":"647910291154472961","user_id":3089044088,"user_id_str":"3089044088"},"timestamp_ms":"1447080028915"}} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862998921216,"id_str":"663727862998921216","text":"\u304a\u6e21\u3057\u4f1a\u306e\u6e96\u5099\u4e2d\u3060\u3063\u305f\u306e\u304b\u306a\uff1f2\u968e\u306e\u5c0f\u3055\u3044\u5b50\u306b\u624b\u3092\u632f\u308b\u3071\u3063\u304f\u3093\u307e\u3058\u63a8\u305b\u308b\u301c\ud83d\ude2d\ud83d\ude4f\ud83d\udc95\u305d\u3057\u3066\u3001\u305d\u308c\u3092\u306b\u3084\u306b\u3084\u898b\u5b88\u308b\u30a2\u30ad\u30e9\u304f\u3093\u2026\uff01\u6700\u9ad8\u3060\u3088\u2026\uff01 https:\/\/t.co\/js2ybn5ZN9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3251039402,"id_str":"3251039402","name":"\u3057\u3087\u304f\u3071\u3093","screen_name":"gn__w_","location":null,"url":null,"description":"\u751f\u307e\u308c\u305f\u3066\u30e1\u30a4\u30c8\u3002\u30a2\u30eb\u30b9\u3061\u3083\u3093\u304c\u53ef\u611b\u3059\u304e\u3066\u3001\u30ab\u30c3\u30b3\u3088\u3059\u304e\u3066\u307e\u3093\u307e\u3068\u6cbc\u306b\u843d\u3061\u307e\u3057\u305f\u3002 \u6210\u4eba\u6e08\u307f\u3001\u793e\u4f1a\u4eba\u3067\u3059\u3002\u30a2\u30eb\u30b9\u3061\u3083\u3093\u304c\u30b9\u30c6\u30ad\u3067\u751f\u304d\u308b\u3063\u3066\u305f\u30fc\u306e\u3057\u3044\u30fc\uff01\u305f\u307e\u306b\u7d75\u3092\u63cf\u3044\u305f\u308a\u3082\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":61,"friends_count":63,"listed_count":1,"favourites_count":626,"statuses_count":1200,"created_at":"Sat Jun 20 23:02:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660821017648955392\/BODyGNdH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660821017648955392\/BODyGNdH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251039402\/1443197124","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727849115815937,"id_str":"663727849115815937","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9lIVEAEPFwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9lIVEAEPFwO.jpg","url":"https:\/\/t.co\/js2ybn5ZN9","display_url":"pic.twitter.com\/js2ybn5ZN9","expanded_url":"http:\/\/twitter.com\/gn__w_\/status\/663727862998921216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727849115815937,"id_str":"663727849115815937","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9lIVEAEPFwO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9lIVEAEPFwO.jpg","url":"https:\/\/t.co\/js2ybn5ZN9","display_url":"pic.twitter.com\/js2ybn5ZN9","expanded_url":"http:\/\/twitter.com\/gn__w_\/status\/663727862998921216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080028663"} +{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862990528513,"id_str":"663727862990528513","text":"Respeta los contratos que has firmado.","source":"\u003ca href=\"http:\/\/www.tubanda.com.ve\" rel=\"nofollow\"\u003eSendUrTweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955322631,"id_str":"2955322631","name":"@OnLineMaracay","screen_name":"OnLineMaracay","location":null,"url":null,"description":"Asesoramiento Empresarial","protected":false,"verified":false,"followers_count":596,"friends_count":681,"listed_count":0,"favourites_count":2,"statuses_count":17463,"created_at":"Thu Jan 01 19:11:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550732282315558913\/91aZGM81_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550732282315558913\/91aZGM81_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955322631\/1420139851","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080028661"} +{"delete":{"status":{"id":663303982446714880,"id_str":"663303982446714880","user_id":470774216,"user_id_str":"470774216"},"timestamp_ms":"1447080029034"}} +{"delete":{"status":{"id":543508528133337088,"id_str":"543508528133337088","user_id":2915982177,"user_id_str":"2915982177"},"timestamp_ms":"1447080029063"}} +{"delete":{"status":{"id":653580411377950720,"id_str":"653580411377950720","user_id":2708745283,"user_id_str":"2708745283"},"timestamp_ms":"1447080029187"}} +{"delete":{"status":{"id":644332231100502016,"id_str":"644332231100502016","user_id":982968930,"user_id_str":"982968930"},"timestamp_ms":"1447080029412"}} +{"delete":{"status":{"id":467649062528090113,"id_str":"467649062528090113","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080029528"}} +{"delete":{"status":{"id":663725719717961728,"id_str":"663725719717961728","user_id":1416242322,"user_id_str":"1416242322"},"timestamp_ms":"1447080029468"}} +{"delete":{"status":{"id":659446103566393344,"id_str":"659446103566393344","user_id":3397064069,"user_id_str":"3397064069"},"timestamp_ms":"1447080029525"}} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180810240,"id_str":"663727867180810240","text":"Segunda-feira \u00e9 igual certas pessoas: Infelizmente voc\u00ea tem que conviver com ela.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198012943,"id_str":"198012943","name":"Luiz Carlos Zonta","screen_name":"kauzonta","location":"Conc\u00f3rdia\\SC","url":"http:\/\/instagram.com\/kauzonta","description":"Constru\u00ed amigos, enfrentei derrotas, venci obst\u00e1culos, bati na porta da vida e disse-lhe: N\u00e3o tenho medo de viv\u00ea-la. (Augusto Cury)","protected":false,"verified":false,"followers_count":1170,"friends_count":664,"listed_count":0,"favourites_count":1273,"statuses_count":19976,"created_at":"Sun Oct 03 03:03:18 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450857674838536192\/DnFvYv8l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450857674838536192\/DnFvYv8l.jpeg","profile_background_tile":true,"profile_link_color":"E61247","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E2E3DC","profile_text_color":"2E2CB8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627266148795555840\/1RkwT-fP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627266148795555840\/1RkwT-fP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198012943\/1396327885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205976064,"id_str":"663727867205976064","text":"To loca de fome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381784384,"id_str":"381784384","name":"Maryelen","screen_name":"MaryelenLemos","location":null,"url":null,"description":"N\u00e3o tenho tempo para lembrar do que me deixou triste ,estou mais preocupado com quem me faz feliz!","protected":false,"verified":false,"followers_count":1001,"friends_count":200,"listed_count":1,"favourites_count":3119,"statuses_count":23174,"created_at":"Wed Sep 28 22:59:37 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA1219","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433883902533316608\/Uce_hy6l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433883902533316608\/Uce_hy6l.jpeg","profile_background_tile":true,"profile_link_color":"F20E43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634357327324442625\/SRsgB-lh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634357327324442625\/SRsgB-lh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381784384\/1446825910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176624128,"id_str":"663727867176624128","text":"RT @robsonx: @LPodolskii opa, tenho autoriza\u00e7\u00e3o! Se isso acontecer, te cito p causa dos direitos autorais hahahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2767164379,"id_str":"2767164379","name":"Podolski","screen_name":"LPodolskii","location":"Rio De Janeiro.","url":"https:\/\/www.facebook.com\/LuucasPodolski","description":"Snap: Doskipo\n#Ame","protected":false,"verified":false,"followers_count":401,"friends_count":387,"listed_count":1,"favourites_count":5174,"statuses_count":8895,"created_at":"Mon Aug 25 17:22:53 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1500B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640364976436301825\/U4PUrxln_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640364976436301825\/U4PUrxln_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2767164379\/1445392276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:32 +0000 2015","id":663717310599979008,"id_str":"663717310599979008","text":"@LPodolskii opa, tenho autoriza\u00e7\u00e3o! Se isso acontecer, te cito p causa dos direitos autorais hahahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663546570093281280,"in_reply_to_status_id_str":"663546570093281280","in_reply_to_user_id":2767164379,"in_reply_to_user_id_str":"2767164379","in_reply_to_screen_name":"LPodolskii","user":{"id":28262552,"id_str":"28262552","name":"Robin Not Hood","screen_name":"robsonx","location":"Rio De Janeiro","url":null,"description":"Snap: robsonxd ;) \n Me define:\n \n\u2551\u2588\u2551\u2588\u2551\u2551\u2588\u2551\u2588\u2551\u2588\u2551\u2551\u2588\u2551\u2588\u2551\n\u2551\u2588\u2551\u2588\u2551\u2551\u2588\u2551\u2588\u2551\u2588\u2551\u2551\u2588\u2551\u2588\u2551\n\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\u2551\n\u255a\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u2569\u255d","protected":false,"verified":false,"followers_count":483,"friends_count":467,"listed_count":2,"favourites_count":2302,"statuses_count":7320,"created_at":"Thu Apr 02 02:35:20 +0000 2009","utc_offset":-7200,"time_zone":"America\/Sao_Paulo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/723621281\/fb86bae455f1bee1e8deeee2f48dd819.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/723621281\/fb86bae455f1bee1e8deeee2f48dd819.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"020203","profile_text_color":"BF1D25","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628212489315090432\/QX7tpowN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628212489315090432\/QX7tpowN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28262552\/1354100086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LPodolskii","name":"Podolski","id":2767164379,"id_str":"2767164379","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"robsonx","name":"Robin Not Hood","id":28262552,"id_str":"28262552","indices":[3,11]},{"screen_name":"LPodolskii","name":"Podolski","id":2767164379,"id_str":"2767164379","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867168182272,"id_str":"663727867168182272","text":"RT @ItsLifeFact: Always smile more than you cry, give more than what you take, and love more than you hate.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":626038625,"id_str":"626038625","name":"Brianna","screen_name":"MysticalPumkin","location":"Pikeville, NC","url":"http:\/\/kik.com\/briannajo31","description":"I'm weird. I try too hard, alot. Music is dreamland. #Vapelife. ?Lost\u00bf Video games. #Crazygirl. Self conscious fatty. Beautiful isn't in my vocabulary\u270c\ufe0f","protected":false,"verified":false,"followers_count":198,"friends_count":155,"listed_count":0,"favourites_count":2582,"statuses_count":2483,"created_at":"Wed Jul 04 01:11:14 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662661989467086850\/Rs3ze_1Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662661989467086850\/Rs3ze_1Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626038625\/1446781434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:01 +0000 2015","id":663725482773450752,"id_str":"663725482773450752","text":"Always smile more than you cry, give more than what you take, and love more than you hate.","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396086694,"id_str":"396086694","name":"Life Sayings \u2764","screen_name":"ItsLifeFact","location":"Peaceful World","url":"http:\/\/relatedaily.com","description":"One day, You and i will be together.. forever \u2665 *we do not own content posted* Business, Advertising \u2709 itslifefact@gmail.com","protected":false,"verified":false,"followers_count":2790371,"friends_count":30839,"listed_count":3308,"favourites_count":159,"statuses_count":51959,"created_at":"Sat Oct 22 18:34:26 +0000 2011","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"858A86","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658724693864660992\/2nOxLD01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658724693864660992\/2nOxLD01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396086694\/1427363772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":189,"favorite_count":140,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ItsLifeFact","name":"Life Sayings \u2764","id":396086694,"id_str":"396086694","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029657"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867189174273,"id_str":"663727867189174273","text":"RT @onherperiod: friendly reminder that whatever it is you're going through won't last forever and you're gonna get through it","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83938051,"id_str":"83938051","name":"renee lovell","screen_name":"neychelle2","location":null,"url":null,"description":"lhs '16 \u26a1\ufe0f\r\nwould've could've should've","protected":false,"verified":false,"followers_count":420,"friends_count":227,"listed_count":0,"favourites_count":15653,"statuses_count":17626,"created_at":"Tue Oct 20 22:12:54 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662727027582103552\/Z0Lr-3DJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662727027582103552\/Z0Lr-3DJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83938051\/1442678566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:06 +0000 2015","id":663726009611481088,"id_str":"663726009611481088","text":"friendly reminder that whatever it is you're going through won't last forever and you're gonna get through it","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":468829690,"id_str":"468829690","name":"on her period","screen_name":"onherperiod","location":null,"url":null,"description":"thoughts during a girls period","protected":false,"verified":false,"followers_count":187872,"friends_count":0,"listed_count":96,"favourites_count":1,"statuses_count":3215,"created_at":"Thu Jan 19 23:33:34 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"FF7AC1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3716127261\/e91904db19c7fe328d1ef62a2a33280c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3716127261\/e91904db19c7fe328d1ef62a2a33280c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468829690\/1372342661","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"onherperiod","name":"on her period","id":468829690,"id_str":"468829690","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029662"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867197530112,"id_str":"663727867197530112","text":"RT @LezcanoAngieJ: Volvamos al viernes !!! \ud83d\udd19\ud83d\udd19\ud83d\udd19\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3443449222,"id_str":"3443449222","name":"Brisa Fern\u00e1ndez","screen_name":"BrisaNavia","location":null,"url":null,"description":"Las Bre\u00f1as-Chaco. Taurina\u2649 15 a\u00f1os\u2b50\nTodo lo que est\u00e1 prohibido me hace feliz\u2b05","protected":false,"verified":false,"followers_count":318,"friends_count":258,"listed_count":0,"favourites_count":746,"statuses_count":2512,"created_at":"Wed Aug 26 04:39:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660893720519290880\/MeoBc0BC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660893720519290880\/MeoBc0BC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3443449222\/1445565789","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:11:29 +0000 2015","id":663569573560647680,"id_str":"663569573560647680","text":"Volvamos al viernes !!! \ud83d\udd19\ud83d\udd19\ud83d\udd19\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1072760850,"id_str":"1072760850","name":"Angie.","screen_name":"LezcanoAngieJ","location":"Chaco, Argentina","url":null,"description":"\u300a\u201cSolo s\u00e9 que hoy me gustas m\u00e1s que ayer. Y, posiblemente, menos que ma\u00f1ana.\u201d\u300b\u2014\u00a0Buenos d\u00edas, princesa.","protected":false,"verified":false,"followers_count":1667,"friends_count":977,"listed_count":1,"favourites_count":10661,"statuses_count":29914,"created_at":"Wed Jan 09 04:04:49 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"090A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652706550260350976\/YUxN8sWa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652706550260350976\/YUxN8sWa.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663569938095951873\/QrUiCw4V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663569938095951873\/QrUiCw4V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1072760850\/1446592442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LezcanoAngieJ","name":"Angie.","id":1072760850,"id_str":"1072760850","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080029664"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180802049,"id_str":"663727867180802049","text":"RT @1future: While u was hatin I was workin.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36834029,"id_str":"36834029","name":"Cali","screen_name":"CaliHasSpoken","location":"Nati","url":"https:\/\/twitter.com\/theweeknd\/status\/570442387660496896","description":"UC2018, Marketing & Women's Studies majors. Dog person. @staud_","protected":false,"verified":false,"followers_count":717,"friends_count":389,"listed_count":8,"favourites_count":16252,"statuses_count":67997,"created_at":"Fri May 01 00:55:03 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172906033\/dxVkoEYd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172906033\/dxVkoEYd.png","profile_background_tile":true,"profile_link_color":"A13DD5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"733195","profile_text_color":"91BFE1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660600122070405120\/nVHhbwZW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660600122070405120\/nVHhbwZW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36834029\/1445213817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 26 18:14:47 +0000 2015","id":647836728917651456,"id_str":"647836728917651456","text":"While u was hatin I was workin.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51742969,"id_str":"51742969","name":"FUTURE\/FREEBANDZ","screen_name":"1future","location":null,"url":"http:\/\/freebandz.com","description":"What a Time To Be Alive is available NOW: https:\/\/t.co\/o2qfEszV4i DS2 is available NOW: https:\/\/t.co\/WzkdSN4T79 Booking: 213-788-4325 or Booking@Freebandz.com","protected":false,"verified":true,"followers_count":1860260,"friends_count":754,"listed_count":2572,"favourites_count":30,"statuses_count":11672,"created_at":"Sun Jun 28 14:34:38 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621893262740099072\/R6MLe_o-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621893262740099072\/R6MLe_o-.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656930407724793857\/uWQ1YjFK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656930407724793857\/uWQ1YjFK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51742969\/1437105691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43793,"favorite_count":26132,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1future","name":"FUTURE\/FREEBANDZ","id":51742969,"id_str":"51742969","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205967873,"id_str":"663727867205967873","text":"RT @1Dnoticia: \u00c1UDIO || Nick anunciando que os meninos participar\u00e3o do programa na pr\u00f3xima segunda-feira (16\/11) #4DaysUntilMITAM https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3364821801,"id_str":"3364821801","name":"Le","screen_name":"_ALLSTYLES","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":82,"friends_count":313,"listed_count":0,"favourites_count":78,"statuses_count":5278,"created_at":"Tue Jul 07 21:58:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663077673330065408\/TPoq05na_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663077673330065408\/TPoq05na_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3364821801\/1446926577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:56:16 +0000 2015","id":663686538857979904,"id_str":"663686538857979904","text":"\u00c1UDIO || Nick anunciando que os meninos participar\u00e3o do programa na pr\u00f3xima segunda-feira (16\/11) #4DaysUntilMITAM https:\/\/t.co\/YGCVQl6C2q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1705422776,"id_str":"1705422776","name":"1D Not\u00edcia","screen_name":"1Dnoticia","location":"E-mail: noticia1d@hotmail.com ","url":"http:\/\/1dnoticia.tumblr.com\/","description":"Sua melhor fonte sobre a banda One Direction e Zayn Malik no Brasil\/ Your best source about the boyband One Direction and Zayn Malik in Brazil | IG: 1dnoticia","protected":false,"verified":false,"followers_count":107829,"friends_count":1540,"listed_count":241,"favourites_count":14000,"statuses_count":127500,"created_at":"Tue Aug 27 19:14:22 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/489835555023118336\/1hZ1-dFN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/489835555023118336\/1hZ1-dFN.jpeg","profile_background_tile":false,"profile_link_color":"14767E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662992115929075713\/Qxs0wO20_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662992115929075713\/Qxs0wO20_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705422776\/1446904477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":204,"favorite_count":109,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[98,114]}],"urls":[{"url":"https:\/\/t.co\/YGCVQl6C2q","expanded_url":"http:\/\/otpwhatever.tumblr.com\/post\/132863454789","display_url":"otpwhatever.tumblr.com\/post\/132863454\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[113,129]}],"urls":[{"url":"https:\/\/t.co\/YGCVQl6C2q","expanded_url":"http:\/\/otpwhatever.tumblr.com\/post\/132863454789","display_url":"otpwhatever.tumblr.com\/post\/132863454\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"1Dnoticia","name":"1D Not\u00edcia","id":1705422776,"id_str":"1705422776","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201744897,"id_str":"663727867201744897","text":"@jullie_vic t\u00f4 mesmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727576033161216,"in_reply_to_status_id_str":"663727576033161216","in_reply_to_user_id":2993017810,"in_reply_to_user_id_str":"2993017810","in_reply_to_screen_name":"jullie_vic","user":{"id":2574649685,"id_str":"2574649685","name":"99%","screen_name":"_soaresleticiaa","location":null,"url":null,"description":"Acreditar no amor j\u00e1 n\u00e3o faz mais sentido. \u270c Rony\u2764","protected":false,"verified":false,"followers_count":573,"friends_count":331,"listed_count":0,"favourites_count":3683,"statuses_count":15161,"created_at":"Sun Jun 01 02:26:14 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC3DE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474937736734851072\/6pZhuKdH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474937736734851072\/6pZhuKdH.jpeg","profile_background_tile":true,"profile_link_color":"E68FC7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662062578034716673\/ZFq_rWv__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662062578034716673\/ZFq_rWv__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2574649685\/1428773493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jullie_vic","name":"5 \u2764","id":2993017810,"id_str":"2993017810","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205779456,"id_str":"663727867205779456","text":"_mujihi_ Hola, te sugerimos manternerte al pendiente de nuestras redes para conocer todos los detalles. por #liverpoolmexico","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448243436,"id_str":"448243436","name":"MasDescuentos.com","screen_name":"MasDescuentosMX","location":"Mexico","url":"http:\/\/MasDescuentos.com","description":"Promovemos tus descuentos y promociones aqu\u00ed, SOLO INCLUYE el hashtag #MasDescuentos en tu tweet y de inmediato lo compartiremos.","protected":false,"verified":false,"followers_count":85,"friends_count":89,"listed_count":3,"favourites_count":0,"statuses_count":9749,"created_at":"Tue Dec 27 19:46:48 +0000 2011","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635465076149882881\/VhmsjYY1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635465076149882881\/VhmsjYY1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448243436\/1440341748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"liverpoolmexico","indices":[108,124]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172274176,"id_str":"663727867172274176","text":"\uff7d\uff78\uff6f\u3000\u306a\u306e\u304b\u3000\uff7d\uff9c\uff6f\u3000\u306a\u306e\u304b\u6c17\u306b\u306a\u3063\u305f\u3051\u3069\u3001\u3069\u3063\u3061\u3067\u3082\u304a\u3082\u3057\u308d\u3044SE\u306b\u306f\u304b\u308f\u308a\u306a\u304b\u3063\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43868998,"id_str":"43868998","name":"\u30ce\u30a8\u30eb\u30fb\u30b6\u30fb\u30b4\u30eb\u30b4\u30bf","screen_name":"NOELxz","location":"\u30d0\u30ed\u30fc\u30bf3198XE\u7b2c4\u60d1\u661f\u307e\u305f\u306f\u5317\u5927\u897f\u6d0b\u6df1\u6d77\u307e\u305f\u306f\u57fc\u7389","url":null,"description":"\u5426\u8150\u306e\u30aa\u30bf\u30af\u3067\u3059\u3002\u304a\u3068\u306a\u3002\u8056\u95d8\u58eb\u3068\u5e7b\u6c34\u3068\u30de\u30af\u30ed\u30b9\u3068\u3046\u305f\u30d7\u30ea\u3067\u51fa\u6765\u3066\u308b\u3002\u5200\u306f\u9db4\u4e38\u3068\u540c\u7530\u8cab\u3068\u6b4c\u4ed9\u3061\u3083\u3093\u3068\u5149\u5fe0\u6c0f\u304c\u3002\u7d75\u3068\u304b\u63cf\u3044\u305f\u308a\u8584\u3044\u672c\u51fa\u3057\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u3060\u304c\u540c\u4eba\u30a2\u30ab\u306f\u5225\u3002","protected":false,"verified":false,"followers_count":133,"friends_count":410,"listed_count":3,"favourites_count":44,"statuses_count":55627,"created_at":"Mon Jun 01 11:28:00 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617625810522865664\/2MZS3iv0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617625810522865664\/2MZS3iv0.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"7A6A6F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451016502477471744\/UuZP0n0B_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451016502477471744\/UuZP0n0B_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43868998\/1442319342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029658"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205951488,"id_str":"663727867205951488","text":"@_queenviv whyyy\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727464913481728,"in_reply_to_status_id_str":"663727464913481728","in_reply_to_user_id":295251281,"in_reply_to_user_id_str":"295251281","in_reply_to_screen_name":"_queenviv","user":{"id":146993069,"id_str":"146993069","name":"TYBONG\u264d\ufe0f","screen_name":"BrittBratt645","location":" in the bronx","url":null,"description":"Sc: Brittbratt645 C\/o '17","protected":false,"verified":false,"followers_count":929,"friends_count":746,"listed_count":1,"favourites_count":8326,"statuses_count":41901,"created_at":"Sat May 22 22:54:51 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652942026619535360\/y_CXigF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652942026619535360\/y_CXigF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146993069\/1444426213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_queenviv","name":"$hawty","id":295251281,"id_str":"295251281","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867197419520,"id_str":"663727867197419520","text":"Apa ini della makin gk jelas -_- @Della_JKT48","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83312062,"id_str":"83312062","name":"abet","screen_name":"albertchrstfr","location":null,"url":null,"description":"with your's million smile, you brighten my day @della_JKT48","protected":false,"verified":false,"followers_count":1848,"friends_count":617,"listed_count":2,"favourites_count":185,"statuses_count":61574,"created_at":"Sun Oct 18 06:32:26 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456304165774295040\/929vKgPi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456304165774295040\/929vKgPi.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661041089206337536\/D8INC06L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661041089206337536\/D8INC06L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83312062\/1443949244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Della_JKT48","name":"Della Delila","id":886416570,"id_str":"886416570","indices":[33,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080029664"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201789952,"id_str":"663727867201789952","text":"Se minha m\u00e3e n\u00e3o tivesse operada eu que estaria indo operar hj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":637038341,"id_str":"637038341","name":"nayara mazulo \u0ad0","screen_name":"NayaraMazulo","location":null,"url":"https:\/\/instagram.com\/naayaramazulo_\/","description":"Respira, inspira, n\u00e3o pira !!! Mulher virtuosa quem a achar\u00e1? O seu valor muito excede ao de rubis. Prov\u00e9rbios 31:10","protected":false,"verified":false,"followers_count":317,"friends_count":354,"listed_count":0,"favourites_count":4039,"statuses_count":9909,"created_at":"Mon Jul 16 15:07:11 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502964434831044608\/OUOdTJLh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502964434831044608\/OUOdTJLh.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662257927802200064\/leTWGRFQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662257927802200064\/leTWGRFQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/637038341\/1408750975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d1fc0c973adbff22","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d1fc0c973adbff22.json","place_type":"city","name":"S\u00e3o Gon\u00e7alo","full_name":"S\u00e3o Gon\u00e7alo, Rio de Janeiro","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.150448,-22.909070],[-43.150448,-22.733860],[-42.885968,-22.733860],[-42.885968,-22.909070]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193196544,"id_str":"663727867193196544","text":"\uadf8\ub2c8\uae4c \uc800\uac74 \uc544\ubb34 \ud544\uc694\uc5c6\ub2e4\ub294\uac70\uc590\uad70..\ud574\uc2dc\ud0dc\uadf8..\uadf8\ub0e5 \ub9c8\ub9c8\ud22c\ud45c \ud558\uc790","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":460757433,"id_str":"460757433","name":"\ubaa8\ubaa8","screen_name":"mhy1104","location":null,"url":null,"description":"\uc6b0\ub9ac\uc624\ub798\uac00\uc790\/ 8\uc778\uc9c0\uc9c0\/\ud55c\ubc88\uc774\ub77c\ub3c4 \ubcf4\ub294\uac70","protected":false,"verified":false,"followers_count":75,"friends_count":202,"listed_count":0,"favourites_count":81,"statuses_count":3669,"created_at":"Wed Jan 11 02:54:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643040689547141121\/2LV8ZPfJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643040689547141121\/2LV8ZPfJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460757433\/1426988453","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172270080,"id_str":"663727867172270080","text":"@Rubiu5 Ruben relaja las tetas :'v","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663584538359148544,"in_reply_to_status_id_str":"663584538359148544","in_reply_to_user_id":398306220,"in_reply_to_user_id_str":"398306220","in_reply_to_screen_name":"Rubiu5","user":{"id":861980262,"id_str":"861980262","name":"Diana c:","screen_name":"DianaDorantes_","location":null,"url":null,"description":"Louis Tops always","protected":false,"verified":false,"followers_count":9822,"friends_count":934,"listed_count":1,"favourites_count":3632,"statuses_count":6327,"created_at":"Thu Oct 04 20:22:25 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649934592300847104\/XNi73UG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649934592300847104\/XNi73UG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/861980262\/1445012428","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rubiu5","name":"elrubius","id":398306220,"id_str":"398306220","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080029658"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193245699,"id_str":"663727867193245699","text":"\u305d\u3046\u3060\u3088\u304b\u306d\u3058\u3083\u306a\u3044\u3093\u3060\u3088","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357482878,"id_str":"357482878","name":"\u6b32\u304c\u30de\u30b7\u30de\u30b7Hamar","screen_name":"Hamar1030","location":"\u5948\u843d","url":"http:\/\/twpf.jp\/Hamar1030","description":"OITIN2\u56deCreative Toss Wind\n\u4f5c\u3063\u305f\u66f2http:\/\/soundcloud.com\/hamaris-1","protected":false,"verified":false,"followers_count":410,"friends_count":475,"listed_count":28,"favourites_count":115745,"statuses_count":136238,"created_at":"Thu Aug 18 12:48:51 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499996756818403328\/2IaQYWFa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499996756818403328\/2IaQYWFa.jpeg","profile_background_tile":false,"profile_link_color":"006AFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631526256698224640\/VOubXcld_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631526256698224640\/VOubXcld_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357482878\/1408041585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201589248,"id_str":"663727867201589248","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022388494,"id_str":"3022388494","name":"Horacio","screen_name":"AHoracio11370","location":null,"url":"http:\/\/mcaf.ee\/w8bxz","description":"I will Gives you 40,000+Stable\/NON Drop\/Fast Followers. for $20","protected":false,"verified":false,"followers_count":236,"friends_count":648,"listed_count":42,"favourites_count":15622,"statuses_count":38628,"created_at":"Fri Feb 06 22:59:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565858622534459394\/x2YBMfIC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565858622534459394\/x2YBMfIC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022388494\/1423746135","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1618,"favorite_count":1001,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867197460480,"id_str":"663727867197460480","text":"@nuko_room \u306a\u3093\u3067\u3082\u4f7f\u3048\u305d\u3046\u306a\u306c\u3053\u306a\u306e\u306b\n\n\u2026\u305d\u3046\u3044\u3048\u3070\u30b5\u30dd\u30fc\u30bf\u30fc\u4f7f\u308f\u306a\u3044\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726653416173569,"in_reply_to_status_id_str":"663726653416173569","in_reply_to_user_id":902057784,"in_reply_to_user_id_str":"902057784","in_reply_to_screen_name":"nuko_room","user":{"id":608088083,"id_str":"608088083","name":"\uff21\uff23\uff25","screen_name":"gifu_ace_st","location":"\u5fa1\u4f3d\u306e\u56fd\u306e\u4fee\u7df4\u52e2(\uff27\uff29\uff26\uff35","url":null,"description":"\u7d46\u30b9\u30c6\u30af\u30ed\uff33\uff26\uff23\u30a2\u30d5\u30ea\u30ab\u30d5\u30ec\u30f3\u30ba\u3002\u30b5\u30f3\u30c9\u30ea\u30e8\u30f3\u4f7f\u3044\u3067\u3059\u3002\u30cb\u30b3\u52d5\u306b\uff57\uff4c\uff57\u52d5\u753b\u3010\uff21\uff23\uff25\u306e\u30ef\u30f3\u30c0\u30fc\u30e9\u30f3\u30c9\u3011\u3092\u3042\u3052\u3066\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002\u4f55\u304b\u3042\u308a\u307e\u3057\u305f\u3089\u30ea\u30d7\u9802\u3051\u308c\u3070\u5e78\u3044\u3067\u3059\u3002@gifu_ace_wlw \u2190WLW\u57a2","protected":false,"verified":false,"followers_count":356,"friends_count":218,"listed_count":8,"favourites_count":2519,"statuses_count":48764,"created_at":"Thu Jun 14 12:13:06 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647004328947904512\/fCbomCRg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647004328947904512\/fCbomCRg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608088083\/1441283824","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nuko_room","name":"\u307e\u305f\u308a\u306c\u3053","id":902057784,"id_str":"902057784","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029664"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867168067584,"id_str":"663727867168067584","text":"15 techniques seeing that prepossessing negotiations: vVQtThST","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1241085871,"id_str":"1241085871","name":"LarkinsMolligan","screen_name":"LarkinsMolligan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":1,"listed_count":10,"favourites_count":0,"statuses_count":114410,"created_at":"Mon Mar 04 10:51:04 +0000 2013","utc_offset":-3600,"time_zone":"Azores","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3497962325\/a40e634fce439d04da350d7f85acb86d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3497962325\/a40e634fce439d04da350d7f85acb86d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029657"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180658688,"id_str":"663727867180658688","text":"RT @1118_v6_love: #\u30b7\u30e3\u30d0\u30fc\u30cb\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5ca1\u7530\u51c6\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b https:\/\/t.co\/ivnq9Ytb0w","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173780620,"id_str":"173780620","name":"\u9244\u677f","screen_name":"abu_ma","location":"\u3042\u3076\u304b\u308f\uff0f\u6843\u5c3b","url":null,"description":"\uff3c\u4e16\u754c\u3067\u4e00\u756a\u304d\u307f\u304c\u3059\u304d\uff01\uff01\uff0f","protected":false,"verified":false,"followers_count":377,"friends_count":237,"listed_count":21,"favourites_count":1852,"statuses_count":103938,"created_at":"Mon Aug 02 10:09:26 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534349892622114817\/SUKkzWEx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534349892622114817\/SUKkzWEx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173780620\/1444298179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:29:25 +0000 2015","id":663709981607260160,"id_str":"663709981607260160","text":"#\u30b7\u30e3\u30d0\u30fc\u30cb\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5ca1\u7530\u51c6\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b https:\/\/t.co\/ivnq9Ytb0w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":589147471,"id_str":"589147471","name":"\u3051\u3044\u3053","screen_name":"1118_v6_love","location":"supernova","url":null,"description":"\u2729V6\u2729\u51c6\u5065\u3088\u308a\u306eall\u62c5\u2729\u4e09\u5409\u5f69\u82b1\/\u5e83\u702c\u3059\u305a\/\u5e83\u702c\u30a2\u30ea\u30b9\/\u306b\u3053\u308b\u3093\/\u53e4\u5ddd\u96c4\u8f1d\/\u5fd7\u5c0a\u6df3\/\u57ce\u7530\u512a\/\u82b3\u6839\u4eac\u5b50\/\u5317\u5ddd\u666f\u5b50\/\u6728\u6751\u6587\u4e43\/\u9ed2\u6728\u30e1\u30a4\u30b5\/\u4e43\u6728\u5742\/LAGOON\/Flower\/\u56f3\u66f8\u6226 \u660e\u6cbb\/\u9ad82\/\u798f\u5ca1","protected":false,"verified":false,"followers_count":1203,"friends_count":1201,"listed_count":3,"favourites_count":6643,"statuses_count":11195,"created_at":"Thu May 24 14:04:23 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466596895414964224\/6h70ncAf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466596895414964224\/6h70ncAf.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655757894617464833\/VFTMChW__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655757894617464833\/VFTMChW__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/589147471\/1441124396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[{"text":"\u30b7\u30e3\u30d0\u30fc\u30cb\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5ca1\u7530\u51c6\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[0,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709975701655553,"id_str":"663709975701655553","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":230,"h":278,"resize":"fit"},"medium":{"w":230,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":230,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709975701655553,"id_str":"663709975701655553","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":230,"h":278,"resize":"fit"},"medium":{"w":230,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":230,"h":278,"resize":"fit"}}},{"id":663709975710044162,"id_str":"663709975710044162","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNgUkAIoldD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNgUkAIoldD.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":306,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":480,"resize":"fit"},"large":{"w":306,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b7\u30e3\u30d0\u30fc\u30cb\u306e\u753b\u50cf\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3068\u8fd1\u3044\u69cb\u56f3\u306e\u5ca1\u7530\u51c6\u4e00\u306e\u753b\u50cf\u304c\u9001\u3089\u308c\u3066\u304f\u308b","indices":[18,53]}],"urls":[],"user_mentions":[{"screen_name":"1118_v6_love","name":"\u3051\u3044\u3053","id":589147471,"id_str":"589147471","indices":[3,16]}],"symbols":[],"media":[{"id":663709975701655553,"id_str":"663709975701655553","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":230,"h":278,"resize":"fit"},"medium":{"w":230,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":230,"h":278,"resize":"fit"}},"source_status_id":663709981607260160,"source_status_id_str":"663709981607260160","source_user_id":589147471,"source_user_id_str":"589147471"}]},"extended_entities":{"media":[{"id":663709975701655553,"id_str":"663709975701655553","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNeUkAEZUJ4.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":230,"h":278,"resize":"fit"},"medium":{"w":230,"h":278,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":230,"h":278,"resize":"fit"}},"source_status_id":663709981607260160,"source_status_id_str":"663709981607260160","source_user_id":589147471,"source_user_id_str":"589147471"},{"id":663709975710044162,"id_str":"663709975710044162","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4tNgUkAIoldD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4tNgUkAIoldD.jpg","url":"https:\/\/t.co\/ivnq9Ytb0w","display_url":"pic.twitter.com\/ivnq9Ytb0w","expanded_url":"http:\/\/twitter.com\/1118_v6_love\/status\/663709981607260160\/photo\/1","type":"photo","sizes":{"small":{"w":306,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":480,"resize":"fit"},"large":{"w":306,"h":480,"resize":"fit"}},"source_status_id":663709981607260160,"source_status_id_str":"663709981607260160","source_user_id":589147471,"source_user_id_str":"589147471"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867197452288,"id_str":"663727867197452288","text":"@haruka8561 \u306f\u3044\uff01\n\u305d\u3061\u3089\u306e3\u3064\u3067\u304a\u9858\u3044\u3057\u307e\u3059(^-^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727495527559169,"in_reply_to_status_id_str":"663727495527559169","in_reply_to_user_id":244994944,"in_reply_to_user_id_str":"244994944","in_reply_to_screen_name":"haruka8561","user":{"id":2370171146,"id_str":"2370171146","name":"\u87a2\u5b50\uff207\u65e5AGF","screen_name":"fwkw5423","location":null,"url":null,"description":"\u203b\u6210\u4eba\u6e08(\u793e\u4f1a\u4eba)\u3001\u95a2\u6771\u5728\u4e2d","protected":false,"verified":false,"followers_count":202,"friends_count":232,"listed_count":1,"favourites_count":16,"statuses_count":7347,"created_at":"Mon Mar 03 09:52:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507380942986416129\/mhYbdzMt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507380942986416129\/mhYbdzMt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2370171146\/1434936166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haruka8561","name":"\u971c\u6708\u907c","id":244994944,"id_str":"244994944","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029664"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201585155,"id_str":"663727867201585155","text":"\uc81c\uac00 \ucfe0\ud0a4\ub7f0 \uc0c1\uc704 8\ud37c\uc13c\ud2b8\uc784","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810113188,"id_str":"2810113188","name":"\ud788\uc774\ub77c\uae30 \uc138\uc774 (\u67ca \u30bb\u30a4)","screen_name":"2683_010","location":null,"url":null,"description":"\uc885\uc138+\uad6c\ub3c5\uacc4","protected":false,"verified":false,"followers_count":67,"friends_count":79,"listed_count":0,"favourites_count":156,"statuses_count":6049,"created_at":"Sun Sep 14 21:17:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660468116682510336\/ZcWEfrMP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660468116682510336\/ZcWEfrMP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2810113188\/1446302843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176558593,"id_str":"663727867176558593","text":"@thrvd I think he's tryina tell u somthin","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719966559092736,"in_reply_to_status_id_str":"663719966559092736","in_reply_to_user_id":38085182,"in_reply_to_user_id_str":"38085182","in_reply_to_screen_name":"thrvd","user":{"id":2537557349,"id_str":"2537557349","name":"\u00a9rappy","screen_name":"bubufinehouse","location":null,"url":null,"description":"\u00aeigid af, u gon learn today","protected":false,"verified":false,"followers_count":63,"friends_count":26,"listed_count":0,"favourites_count":3394,"statuses_count":2152,"created_at":"Fri May 09 18:44:04 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656051306914783232\/0BLEEGpn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656051306914783232\/0BLEEGpn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2537557349\/1446462160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thrvd","name":"NAH YO","id":38085182,"id_str":"38085182","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193266177,"id_str":"663727867193266177","text":"@achiko6 \u518d\u5165\u5834\u5236\u5ea6\u3042\u308b\u306e\u304b\u203c\u53cb\u9054\u304c\u30b7\u30fc\u3067\u7d50\u5a5a\u5f0f\u3057\u305f\u304b\u3089\u5272\u5f15\u3067\u6cca\u307e\u308c\u305f\u306e(*^-^*)\u3067\u3082\u60f3\u50cf\u3057\u3066\u305f\u3088\u308a\u30c7\u30a3\u30ba\u30cb\u30fc\u30c7\u30a3\u30ba\u30cb\u30fc\u3057\u3066\u306a\u304b\u3063\u305f(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727167109361664,"in_reply_to_status_id_str":"663727167109361664","in_reply_to_user_id":230038608,"in_reply_to_user_id_str":"230038608","in_reply_to_screen_name":"achiko6","user":{"id":1866148368,"id_str":"1866148368","name":"\u3061\u3083\u304d\u3066\u3043","screen_name":"chakity0713","location":null,"url":null,"description":"V6\uff0a\u5ca1\u7530\u51c6\u4e00\uff0aNEWS\uff0a\u624b\u8d8a\u7950\u4e5f\u304c\u5927\u597d\u304d\u2764\u4f50\u85e4\u5065\uff0a\u4e09\u6d66\u7fd4\u5e73\uff0a\u677e\u5742\u6843\u674e\u3082\u597d\u304d\u2764\u30b5\u30c3\u30ab\u30fc\u65e5\u672c\u4ee3\u8868\u306e\u9577\u53cb\u3082\u597d\u304d\u2764\u6771\u4eac\u5728\u4f4f(*\u00b4\u2207\uff40*)\n\u30d5\u30a9\u30ed\u30fc\u306f\u6b53\u8fce\u3067\u3059\u304c\u4e00\u8a00\u4e0b\u3055\u3044!!\u305b\u3063\u304b\u304f\u306a\u3089\u7d61\u307f\u305f\u3044\u306e\u3067","protected":false,"verified":false,"followers_count":103,"friends_count":138,"listed_count":0,"favourites_count":235,"statuses_count":2847,"created_at":"Sun Sep 15 04:34:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619169063458074624\/Frg0ed8Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619169063458074624\/Frg0ed8Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1866148368\/1436456469","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"achiko6","name":"\u3042\u3061\u3053","id":230038608,"id_str":"230038608","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172261889,"id_str":"663727867172261889","text":"RT @livialoisia: \u3010\u885d\u6483\u901f\u5831\uff01\u3011Hey! Say! JUMP!\u300e\u5c71\u7530\u6dbc\u4ecb\u300f\u3068\u3001\u3082\u3082\u30af\u30ed\u9ec4\u8272\u300e\u7389\u4e95\u8a69\u7e54\u300f\u306e\u71b1\u611b\u767a\u899a\u3067\u5927\u708e\u4e0a\uff01\uff01\u3053\u308c\u30b7\u30e7\u30c3\u30af\u3059\u304e\u3060\u308d... (\u203b\u8a73\u7d30\u3042\u308a)\nhttps:\/\/t.co\/WI7itKzJ4b https:\/\/t.co\/IC9uJ1ynd8","source":"\u003ca href=\"https:\/\/twitter.com\/IngramPetra\" rel=\"nofollow\"\u003etttt0002\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3211007403,"id_str":"3211007403","name":"\u30c4\u30a4\u5ec3\u3068\u5316\u3057\u305f\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u2606\u306b\u3053\u3061\u3083\u3093\u795e","screen_name":"DeniseJany","location":null,"url":null,"description":"\u306b\u3063\u3053\u306b\u3063\u3053\u306b\u30fc\u2661 \u3042\u306a\u305f\u306e\u30cf\u30fc\u30c8\u306b\u306b\u3053\u306b\u3053\u306b\u30fc\u3063\u2661 \u7b11\u9854\u5c4a\u3051\u308b\u77e2\u6fa4\u306b\u3053\u2661 \u306b\u3053\u306b\u30fc\u3063\u3066\u899a\u3048\u3066\u30e9\u30d6\u30cb\u30b3\u30c3\u2661 \u307f\u3093\u306a\u306e\u30a2\u30a4\u30c9\u30eb\u306b\u3053\u306b\u30fc\u3060\u3088\u2661\u30cb\u30b3\u306e\u3053\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\u4eba\u3053\u306e\u6307\u3068\u30fc\u307e\u308c\u2661","protected":false,"verified":false,"followers_count":1527,"friends_count":1247,"listed_count":5,"favourites_count":0,"statuses_count":86,"created_at":"Mon Apr 27 04:02:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630029540354490368\/HU9WPpEP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630029540354490368\/HU9WPpEP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3211007403\/1439045780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727754253217793,"id_str":"663727754253217793","text":"\u3010\u885d\u6483\u901f\u5831\uff01\u3011Hey! Say! JUMP!\u300e\u5c71\u7530\u6dbc\u4ecb\u300f\u3068\u3001\u3082\u3082\u30af\u30ed\u9ec4\u8272\u300e\u7389\u4e95\u8a69\u7e54\u300f\u306e\u71b1\u611b\u767a\u899a\u3067\u5927\u708e\u4e0a\uff01\uff01\u3053\u308c\u30b7\u30e7\u30c3\u30af\u3059\u304e\u3060\u308d... (\u203b\u8a73\u7d30\u3042\u308a)\nhttps:\/\/t.co\/WI7itKzJ4b https:\/\/t.co\/IC9uJ1ynd8","source":"\u003ca href=\"https:\/\/twitter.com\/InaDebra\" rel=\"nofollow\"\u003eTTTT0009\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3208949356,"id_str":"3208949356","name":"\u3044\u3044\u306d\uff01\u306f\u4e16\u754c\u3092\u6551\u3046","screen_name":"livialoisia","location":null,"url":null,"description":"\u2728\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%\u2728\u30cd\u30c3\u30c8\u3067\u8a71\u984c\u306e\u53b3\u9078\u30cb\u30e5\u30fc\u30b9\u3092\u30ac\u30f3\u30ac\u30f3\u6295\u4e0b\uff01\uff01 \u601d\u308f\u305a\u8ab0\u304b\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3088\u3046\u306a\u6700\u65b0\u306e\u88cf\u60c5\u5831\u3092\u3010\u901f\u5831\u3011\u3067\u304a\u5c4a\u3051\u3057\u3066\u3044\u307e\u3059\u2606 \u30c8\u30ec\u30f3\u30c9\u306f\u304a\u4efb\u305b\u266a\u30ea\u30c4\u30a4\u30fc\u30c8\u5927\u6b53\u8fce\u2728\u6687\u3064\u3076\u3057\u306b\u3069\u3046\u305e\u301c","protected":false,"verified":false,"followers_count":388,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":64,"created_at":"Sun Apr 26 19:01:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637899530424356864\/jHEYL1Xb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637899530424356864\/jHEYL1Xb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3208949356\/1440922085","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WI7itKzJ4b","expanded_url":"http:\/\/goo.gl\/TcJHoA","display_url":"goo.gl\/TcJHoA","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WI7itKzJ4b","expanded_url":"http:\/\/goo.gl\/TcJHoA","display_url":"goo.gl\/TcJHoA","indices":[92,115]}],"user_mentions":[{"screen_name":"livialoisia","name":"\u3044\u3044\u306d\uff01\u306f\u4e16\u754c\u3092\u6551\u3046","id":3208949356,"id_str":"3208949356","indices":[3,15]}],"symbols":[],"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727754253217793,"source_status_id_str":"663727754253217793","source_user_id":3208949356,"source_user_id_str":"3208949356"}]},"extended_entities":{"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727754253217793,"source_status_id_str":"663727754253217793","source_user_id":3208949356,"source_user_id_str":"3208949356"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029658"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867168075776,"id_str":"663727867168075776","text":"@OneTrueRush she is definitely a keeper.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721156537520128,"in_reply_to_status_id_str":"663721156537520128","in_reply_to_user_id":63105225,"in_reply_to_user_id_str":"63105225","in_reply_to_screen_name":"OneTrueRush","user":{"id":34377274,"id_str":"34377274","name":"Paul","screen_name":"bunny68427","location":"Ottawa","url":null,"description":"Every now and then I stop and think \u201cI know you can hear my thoughts\u201d. Just in case\u2026","protected":false,"verified":false,"followers_count":530,"friends_count":1371,"listed_count":3,"favourites_count":173,"statuses_count":3285,"created_at":"Wed Apr 22 19:54:49 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D3D5B0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/424489649\/x7d44412ed4d0b7f74de6f447330cf52.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/424489649\/x7d44412ed4d0b7f74de6f447330cf52.png","profile_background_tile":true,"profile_link_color":"9DC19D","profile_sidebar_border_color":"71443F","profile_sidebar_fill_color":"8C7C62","profile_text_color":"B5CEA4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641399443967840256\/jhzOmgKZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641399443967840256\/jhzOmgKZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34377274\/1441756518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OneTrueRush","name":"Rush","id":63105225,"id_str":"63105225","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029657"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180617728,"id_str":"663727867180617728","text":"\u307d\u3044\u308f\u2025\u2025","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1605418664,"id_str":"1605418664","name":"\u304a\u3061\u3053","screen_name":"0mt_moti2","location":null,"url":null,"description":"i am ochiko. very cute girl.","protected":false,"verified":false,"followers_count":41,"friends_count":35,"listed_count":0,"favourites_count":4582,"statuses_count":12471,"created_at":"Fri Jul 19 08:21:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653558548429864960\/6w9aWi9w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653558548429864960\/6w9aWi9w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1605418664\/1422621570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201773568,"id_str":"663727867201773568","text":"https:\/\/t.co\/AYe1KdjcAb \n\u0645\u0635\u0631\u064a\u0647 \u062c\u0645\u064a\u0644\u0647 \u0628\u062a\u062a\u0646\u0627\u0643 \u062e\u0644\u0641\u0649 \u0648\u0647\u0649 \u0648\u0627\u0642\u0641\u0647 \u0628\u062c\u0633\u0645 \u0627\u0628\u064a\u0636 \u062c\u0645\u064a\u0644 https:\/\/t.co\/7RUgvPRgQt via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235102949,"id_str":"3235102949","name":"Taiyo Fairfoul","screen_name":"jewiqypivah","location":"San Diego, CA","url":null,"description":"A DREAMER, Born In 1997.., '24' Is My Fav... Like Playin' Football 'N' Always Over There To Help Friends....","protected":false,"verified":false,"followers_count":25,"friends_count":129,"listed_count":0,"favourites_count":0,"statuses_count":24,"created_at":"Tue May 05 06:43:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618740113921585153\/7Lw3VHlL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618740113921585153\/7Lw3VHlL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235102949\/1436031974","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AYe1KdjcAb","expanded_url":"http:\/\/goo.gl\/5EV52d","display_url":"goo.gl\/5EV52d","indices":[0,23]},{"url":"https:\/\/t.co\/7RUgvPRgQt","expanded_url":"http:\/\/sco.lt\/6HUxRR","display_url":"sco.lt\/6HUxRR","indices":[74,97]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[102,110]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180793856,"id_str":"663727867180793856","text":"Coldplay Fechou O Meu Dia \ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe\ud83d\udc4f\ud83c\udffe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113618199,"id_str":"113618199","name":"Freshculoso","screen_name":"MonittoMichael","location":"Mozambique","url":"http:\/\/facebook.com\/Moneycomio","description":"P r o u d l y M o z a m b i c a n | W E | O N| \u2022 Moneycomio \u2022 Till \u2022 i \u2022 D I E \u2022\u00b0\u2022\u00b0\u2022\u00b0","protected":false,"verified":false,"followers_count":1547,"friends_count":393,"listed_count":5,"favourites_count":64,"statuses_count":61640,"created_at":"Fri Feb 12 12:27:38 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546810503\/mundos.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546810503\/mundos.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501359280592011265\/deGZ1tl-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501359280592011265\/deGZ1tl-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113618199\/1372321551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193245697,"id_str":"663727867193245697","text":"\uc194\ucc0c\ud0a4 \ub098\ud55c\ud14c\ub294 \ub458\ub3c4\uc5c6\ub294 \ub0b4\uc0c8\ub07c\ub4e4\uc778\ub370 \uae4c\uc774\ub294\uac70 \ubcf4\uace0\uc788\uc73c\uba74 \uae30\ubd84\uc774 \uc88b\uc744\ub9ac\uac00.. \uac00\ub054\uc740 \uba58\ud0c8 \uc9c4\uc9dc \uc544\uc791\ub0a0\ub54c\ub3c4 \uc788\uace0... \ud2b8\uc704\ud130 \ub9d0\uace0\ub294 \uc544\uc608 \uc190\ub3c4 \uc548\ub304\uc801\ub3c4 \uc788\uace0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416092232,"id_str":"416092232","name":"\ub07c\ub9c1","screen_name":"kirin_j","location":"\ub9bc\uc0ac \ub85c\ubbfc\uc0ac\/ \ucd08\ucf54\ubcf4-\uc0ac\ubcf4\ud150\ub354: \uaf2c\ub871","url":"http:\/\/twpf.jp\/kirin_j","description":"OCD \ubd80\ub3c4\uce78\uac08\uac70\uc57c\uc544\uc544\uc544\uc544\uc545\/ \ud30c\ud310\uc5d0 \ubf08\ub97c \ubb3b\uaca0\uc74d\ub2c8\ub2e4...\/ \uc131\uc6b0 \uc5d1\uc18c 2D 1\ucc282\ucc28\ubca8\/ \uae30\uc544\ud0c0\uc774\uac70\uc988\/ \uc2e0\ud654 \ubcf4\uc544 \uc5d0\ud399 \ub808\ub4dc\ubca8\ubcb3 \ub8e8\ud0a4\uc988\uc7ac\ud604\/ \uc5d1\uc18c \uce74\ub514, \ub3c4\uad74 \uc544\ub9ac\uc0ac\uc0ac\uc5d0 \ub204\uc6b4 \uc7a1\ub355\/","protected":false,"verified":false,"followers_count":79,"friends_count":245,"listed_count":1,"favourites_count":471,"statuses_count":50813,"created_at":"Sat Nov 19 06:48:45 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F1F1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455013201097138176\/P5zsXkfW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455013201097138176\/P5zsXkfW.jpeg","profile_background_tile":false,"profile_link_color":"474647","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3B615D","profile_text_color":"B4D9AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650636027963441153\/4S7CSzQ9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650636027963441153\/4S7CSzQ9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416092232\/1446276167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867184857088,"id_str":"663727867184857088","text":"\u9df9\u3055\u3093\u304c\u3044\u308b\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3167924385,"id_str":"3167924385","name":"\u30e4\u30b9\u30a4","screen_name":"neu032","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=14231404","description":"\u3010\u5973\u795e\u8ee2\u751f\/\u5618\u55b0\u3044\/pkmn\/BF(\u4eee) etc...\u3011\n20\u2191\u8150\u3002\u597d\u304d\u306a\u3068\u304d\u306b\u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306a\u3060\u3051\u3002\n\u304f\u308f\u3057\u304f\u2192http:\/\/twpf.jp\/neu032","protected":false,"verified":false,"followers_count":52,"friends_count":28,"listed_count":1,"favourites_count":1606,"statuses_count":375,"created_at":"Wed Apr 15 02:48:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656509771328024576\/r7-3IuWr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656509771328024576\/r7-3IuWr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3167924385\/1445564050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029661"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867184877568,"id_str":"663727867184877568","text":"Closed Sell XAUUSD 1093.359 for +34.4 pips, total for today +2818.1 pips","source":"\u003ca href=\"https:\/\/www.myfxbook.com\" rel=\"nofollow\"\u003eMyfxbook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3375926479,"id_str":"3375926479","name":"Mario","screen_name":"vip4exsolutions","location":"Surrey, British Columbia","url":"http:\/\/www.vip4ex.com","description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":130,"created_at":"Sat Aug 29 00:15:12 +0000 2015","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652143430169165824\/v79ph5Y0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652143430169165824\/v79ph5Y0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375926479\/1446982567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029661"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867197566976,"id_str":"663727867197566976","text":"RT @denisecox: as @casilda1 said, \u2018integration\u2019 is the big word at this conference it looks like :-) #SMiLElondon https:\/\/t.co\/MTTkbtqBCA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103854038,"id_str":"103854038","name":"Todisco Stefania","screen_name":"Todi73","location":"Milan","url":null,"description":"Working for UniCredit Enterprise 2.0, I can be enthusiast of anything that can bring value to our way of living ... My tweets here are my own thoughs !!!","protected":false,"verified":false,"followers_count":210,"friends_count":317,"listed_count":21,"favourites_count":360,"statuses_count":1325,"created_at":"Mon Jan 11 13:32:12 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2280602555\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2280602555\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103854038\/1412108490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:49 +0000 2015","id":663727195504967680,"id_str":"663727195504967680","text":"as @casilda1 said, \u2018integration\u2019 is the big word at this conference it looks like :-) #SMiLElondon https:\/\/t.co\/MTTkbtqBCA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15181273,"id_str":"15181273","name":"denise cox","screen_name":"denisecox","location":"global","url":"http:\/\/www.newsweaver.com","description":"Content & Communications Specialist for Newsweaver. Award-winning experience in corporate, media and PR communications. Loves to break down corporate silos.","protected":false,"verified":false,"followers_count":2202,"friends_count":1492,"listed_count":142,"favourites_count":533,"statuses_count":1609,"created_at":"Fri Jun 20 16:03:19 +0000 2008","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537248327570448385\/yOczh2rK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537248327570448385\/yOczh2rK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15181273\/1439195720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726365854822400,"quoted_status_id_str":"663726365854822400","quoted_status":{"created_at":"Mon Nov 09 14:34:31 +0000 2015","id":663726365854822400,"id_str":"663726365854822400","text":"@denisecox @GoMhub totally agree. That's why @GoMhub exist and are growing fast","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663695244173643776,"in_reply_to_status_id_str":"663695244173643776","in_reply_to_user_id":15181273,"in_reply_to_user_id_str":"15181273","in_reply_to_screen_name":"denisecox","user":{"id":92976256,"id_str":"92976256","name":"Michael Nagle","screen_name":"MichaelJNagle","location":"London","url":"http:\/\/www.mhub.tv","description":"mhub Founder & CEO \u2013 The Enterprise Enablement Platform\u2122 - the simple way for better communication, video on-demand training and accelerated app. adoption.","protected":false,"verified":false,"followers_count":289,"friends_count":459,"listed_count":34,"favourites_count":186,"statuses_count":993,"created_at":"Fri Nov 27 14:14:07 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1895C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433600896853762048\/mD-vYpNC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433600896853762048\/mD-vYpNC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92976256\/1433863926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"denisecox","name":"denise cox","id":15181273,"id_str":"15181273","indices":[0,10]},{"screen_name":"GoMhub","name":"Mhub","id":937134818,"id_str":"937134818","indices":[11,18]},{"screen_name":"GoMhub","name":"Mhub","id":937134818,"id_str":"937134818","indices":[45,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"SMiLElondon","indices":[87,99]}],"urls":[{"url":"https:\/\/t.co\/MTTkbtqBCA","expanded_url":"https:\/\/twitter.com\/MichaelJNagle\/status\/663726365854822400","display_url":"twitter.com\/MichaelJNagle\/\u2026","indices":[101,124]}],"user_mentions":[{"screen_name":"casilda1","name":"Casilda Malagon","id":14324289,"id_str":"14324289","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SMiLElondon","indices":[102,114]}],"urls":[{"url":"https:\/\/t.co\/MTTkbtqBCA","expanded_url":"https:\/\/twitter.com\/MichaelJNagle\/status\/663726365854822400","display_url":"twitter.com\/MichaelJNagle\/\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"denisecox","name":"denise cox","id":15181273,"id_str":"15181273","indices":[3,13]},{"screen_name":"casilda1","name":"Casilda Malagon","id":14324289,"id_str":"14324289","indices":[18,27]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029664"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176558592,"id_str":"663727867176558592","text":"RT @CheerfulGimbouy: \u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":471755550,"id_str":"471755550","name":"P.","screen_name":"Poon_pnt","location":"Librizzi, Sicilia","url":null,"description":"-1998- @AustinMahone | @Justin_Johnes \u2022NO PAIN NO GAIN\u2022 exchange student in Italy 2015-2016 AFS54","protected":false,"verified":false,"followers_count":152,"friends_count":968,"listed_count":1,"favourites_count":525,"statuses_count":33998,"created_at":"Mon Jan 23 06:52:52 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"09090A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154095761\/dfjpbUpJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154095761\/dfjpbUpJ.jpeg","profile_background_tile":true,"profile_link_color":"EB7B26","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663428282663194624\/PNE58HAK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663428282663194624\/PNE58HAK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/471755550\/1420983443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:02 +0000 2015","id":663725993115258880,"id_str":"663725993115258880","text":"\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2930143004,"id_str":"2930143004","name":"saltedplum","screen_name":"CheerfulGimbouy","location":"utcc ","url":null,"description":"\u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07 \u0e16\u0e49\u0e32\u0e22\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\nid : bouyjub","protected":false,"verified":false,"followers_count":36854,"friends_count":20,"listed_count":8,"favourites_count":1970,"statuses_count":2902,"created_at":"Sun Dec 14 18:20:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2930143004\/1428188051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CheerfulGimbouy","name":"saltedplum","id":2930143004,"id_str":"2930143004","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205967874,"id_str":"663727867205967874","text":"@Yo0ny yoonii happy birthday \ud83c\udf8b\ud83c\udf8b\ud83c\udf8a\ud83c\udf8a\ud83c\udf88\ud83c\udf89\ud83c\udf89 enjoy it","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":437533051,"in_reply_to_user_id_str":"437533051","in_reply_to_screen_name":"Yo0ny","user":{"id":2508355451,"id_str":"2508355451","name":"joljol","screen_name":"ahmed_jlal","location":"khartoum North -al9afya ","url":null,"description":"you'd lose your mind try to understand mine #UofK schooler 013","protected":false,"verified":false,"followers_count":288,"friends_count":197,"listed_count":0,"favourites_count":2153,"statuses_count":5795,"created_at":"Fri Apr 25 12:59:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662782017122226176\/ozMZFMD__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662782017122226176\/ozMZFMD__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2508355451\/1447014744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Yo0ny","name":"Rawan\u2660","id":437533051,"id_str":"437533051","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180638208,"id_str":"663727867180638208","text":"@hisako_desu \u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\u304d\u3044\u3066\u3088\u304b\u3063\u305f(((^^;)\n\n\u4f5c\u308a\u7d42\u308f\u3063\u3066UUUM\u306b\u9001\u3063\u305f\u3089\u307e\u305f\u8a00\u3044\u307e\u3059\u306d\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725954250899457,"in_reply_to_status_id_str":"663725954250899457","in_reply_to_user_id":2954801372,"in_reply_to_user_id_str":"2954801372","in_reply_to_screen_name":"hisako_desu","user":{"id":3182640428,"id_str":"3182640428","name":"\u3086\u3044\u306a","screen_name":"nksy0915","location":null,"url":null,"description":"\u5d50 \u4e8c\u5bae\u548c\u4e5f YouTuber \u30e0\u30fc\u30df\u30f3 \u30a2\u30cb\u30de\u30eb \u30b2\u30fc\u30e0 \u523a\u7e4d\n\n \u25b7like\u25c1 \n \u3000\u3000","protected":false,"verified":false,"followers_count":150,"friends_count":245,"listed_count":0,"favourites_count":4189,"statuses_count":1258,"created_at":"Sat May 02 08:46:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663649756267196419\/FDmWrvT2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663649756267196419\/FDmWrvT2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3182640428\/1445262834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hisako_desu","name":"\u30dd\u30ad\u3060\u307d\u304d\u30aa","id":2954801372,"id_str":"2954801372","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180662785,"id_str":"663727867180662785","text":"@TheYankeeCandle do yall have a coffee scented candle ? cause if you do I need to get one asap","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":67383778,"in_reply_to_user_id_str":"67383778","in_reply_to_screen_name":"TheYankeeCandle","user":{"id":463435724,"id_str":"463435724","name":"Ken Kaniff","screen_name":"_thomkins_","location":"Rancho Cucamonga","url":null,"description":"Texas Tech University. ABN.","protected":false,"verified":false,"followers_count":251,"friends_count":295,"listed_count":4,"favourites_count":2264,"statuses_count":8882,"created_at":"Sat Jan 14 03:16:43 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646556780139405312\/y7MuWRhD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646556780139405312\/y7MuWRhD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463435724\/1445291012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3f3f6803f117606d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3f3f6803f117606d.json","place_type":"city","name":"Lubbock","full_name":"Lubbock, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-102.033765,33.447120],[-102.033765,33.693933],[-101.760581,33.693933],[-101.760581,33.447120]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheYankeeCandle","name":"Yankee Candle Co","id":67383778,"id_str":"67383778","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176468480,"id_str":"663727867176468480","text":"RT @SpartanStocks: $ICON market is taking it well and nice consolidation over $8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881608580,"id_str":"881608580","name":"HonestTrade","screen_name":"nagoya_amefut","location":"Nagoya, Japan","url":"http:\/\/StockTwits.com\/dweddle08","description":"novice; momemtum trade; swing trade; aggressive growth; speculative; Zacks; BSN; Zacks SCR; Robinhood APP, http:\/\/AwesomeCalls.com","protected":false,"verified":false,"followers_count":244,"friends_count":510,"listed_count":25,"favourites_count":5221,"statuses_count":4524,"created_at":"Mon Oct 15 05:20:11 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588553737376903168\/52xXrhFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588553737376903168\/52xXrhFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881608580\/1446113295","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727826823180289,"id_str":"663727826823180289","text":"$ICON market is taking it well and nice consolidation over $8","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1027173822,"id_str":"1027173822","name":"Spartan Stocks","screen_name":"SpartanStocks","location":null,"url":"http:\/\/spartanstocks.com","description":"We're creating the most useful trading community out there & we're doing it for free! Do your own due diligence before considering any of our trade ideas.","protected":false,"verified":false,"followers_count":1002,"friends_count":73,"listed_count":21,"favourites_count":197,"statuses_count":2776,"created_at":"Fri Dec 21 21:24:46 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/863897297\/57f5ea30cbdaefe47e9b4a64105a3023.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/863897297\/57f5ea30cbdaefe47e9b4a64105a3023.jpeg","profile_background_tile":true,"profile_link_color":"196DA6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542043315881783296\/qKppYi-8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542043315881783296\/qKppYi-8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1027173822\/1418068189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[{"text":"ICON","indices":[0,5]}]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpartanStocks","name":"Spartan Stocks","id":1027173822,"id_str":"1027173822","indices":[3,17]}],"symbols":[{"text":"ICON","indices":[19,24]}]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867180789760,"id_str":"663727867180789760","text":"A\u00ed, essa vontade de amar que me paralisa trabalho...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551126400,"id_str":"551126400","name":"Wanessa Galv\u00e3o","screen_name":"WaanGalvao","location":null,"url":"http:\/\/www.facebook.com\/profile.php?id=100003589989748","description":"Estudante de Jornalismo, 22 anos. Beatles; vegetarianismo; Deus; livros.; c\u00e3es; poesia; cerveja.","protected":false,"verified":false,"followers_count":353,"friends_count":582,"listed_count":2,"favourites_count":1209,"statuses_count":4188,"created_at":"Wed Apr 11 14:39:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453257778216202240\/a5EovJrb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453257778216202240\/a5EovJrb.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648939408536809473\/6NUv_7ZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648939408536809473\/6NUv_7ZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551126400\/1443554184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"22e26534c74ef27d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/22e26534c74ef27d.json","place_type":"city","name":"Agrestina","full_name":"Agrestina, Pernambuco","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-36.011408,-8.566496],[-36.011408,-8.354374],[-35.882937,-8.354374],[-35.882937,-8.566496]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080029660"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201585154,"id_str":"663727867201585154","text":"RT @IUmushimushi: IU was so amazed by the fanart. The fan was in the audience. IU raised her thumb & said to fan \"You are great!\" https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2862899389,"id_str":"2862899389","name":"lalaby","screen_name":"pinpuk_43","location":null,"url":null,"description":"YOU & I cause im uaena.","protected":false,"verified":false,"followers_count":30,"friends_count":289,"listed_count":1,"favourites_count":64,"statuses_count":1065,"created_at":"Sat Oct 18 15:13:15 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582512044752015361\/jWZjY5s8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582512044752015361\/jWZjY5s8_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:19 +0000 2015","id":663723799439740928,"id_str":"663723799439740928","text":"IU was so amazed by the fanart. The fan was in the audience. IU raised her thumb & said to fan \"You are great!\" https:\/\/t.co\/RGwDoBsp0m","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630043581,"id_str":"630043581","name":"JusticeForIU","screen_name":"IUmushimushi","location":"Singapore","url":"https:\/\/www.facebook.com\/sgheartiu","description":"Uaena, K-Drama addict, Movie Buff! http:\/\/iumushimushi.tumblr.com","protected":false,"verified":false,"followers_count":9131,"friends_count":332,"listed_count":122,"favourites_count":37296,"statuses_count":116804,"created_at":"Sun Jul 08 06:28:34 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0D8DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807780546\/785c11b4ccb7f0e98971c10b67780aff.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807780546\/785c11b4ccb7f0e98971c10b67780aff.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693766134403072\/QOhKwSKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693766134403072\/QOhKwSKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630043581\/1361650121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723478940565504,"id_str":"663723478940565504","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1532,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723478940565504,"id_str":"663723478940565504","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1532,"resize":"fit"}}},{"id":663723512012644353,"id_str":"663723512012644353","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFBIKWoAE59BB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFBIKWoAE59BB.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":643,"h":1079,"resize":"fit"},"medium":{"w":600,"h":1006,"resize":"fit"}}},{"id":663723534074691585,"id_str":"663723534074691585","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFCaWWwAEHwR-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFCaWWwAEHwR-.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":898,"h":1437,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IUmushimushi","name":"JusticeForIU","id":630043581,"id_str":"630043581","indices":[3,16]}],"symbols":[],"media":[{"id":663723478940565504,"id_str":"663723478940565504","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1532,"resize":"fit"}},"source_status_id":663723799439740928,"source_status_id_str":"663723799439740928","source_user_id":630043581,"source_user_id_str":"630043581"}]},"extended_entities":{"media":[{"id":663723478940565504,"id_str":"663723478940565504","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE_M9WwAATOca.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":508,"resize":"fit"},"medium":{"w":600,"h":897,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1532,"resize":"fit"}},"source_status_id":663723799439740928,"source_status_id_str":"663723799439740928","source_user_id":630043581,"source_user_id_str":"630043581"},{"id":663723512012644353,"id_str":"663723512012644353","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFBIKWoAE59BB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFBIKWoAE59BB.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":643,"h":1079,"resize":"fit"},"medium":{"w":600,"h":1006,"resize":"fit"}},"source_status_id":663723799439740928,"source_status_id_str":"663723799439740928","source_user_id":630043581,"source_user_id_str":"630043581"},{"id":663723534074691585,"id_str":"663723534074691585","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFCaWWwAEHwR-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFCaWWwAEHwR-.jpg","url":"https:\/\/t.co\/RGwDoBsp0m","display_url":"pic.twitter.com\/RGwDoBsp0m","expanded_url":"http:\/\/twitter.com\/IUmushimushi\/status\/663723799439740928\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":898,"h":1437,"resize":"fit"}},"source_status_id":663723799439740928,"source_status_id_str":"663723799439740928","source_user_id":630043581,"source_user_id_str":"630043581"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029665"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176448001,"id_str":"663727867176448001","text":"@NagashiDayo \u3055\u3089\u3070\u30c8\u30eb\u30af\u3001\u304a\u306f\u3088\u3046\u30d1\u30ef\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727764701208576,"in_reply_to_status_id_str":"663727764701208576","in_reply_to_user_id":2811434557,"in_reply_to_user_id_str":"2811434557","in_reply_to_screen_name":"NagashiDayo","user":{"id":3697400232,"id_str":"3697400232","name":"\u308a\u3087\u30fc","screen_name":"ryoc_08","location":"\u57fc\u7389\u770c\u6238\u7530\u5e02","url":null,"description":"\u4ffa\u306f\u5229\u6839\u5ddd\u7523\u307e\u308c\u8352\u5ddd\u80b2\u3061\u3001\u5bb6\u7121\u3044\u5974\u306f\u5927\u4f53\u53cb\u9054","protected":false,"verified":false,"followers_count":168,"friends_count":114,"listed_count":15,"favourites_count":7497,"statuses_count":10142,"created_at":"Sat Sep 26 23:14:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342788990230529\/vz1rSifZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342788990230529\/vz1rSifZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3697400232\/1445995355","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NagashiDayo","name":"\u5358\u4f4d\u53d6\u5f97\u306b\u3064\u3088\u3044\u5f01\u8b77\u58eb","id":2811434557,"id_str":"2811434557","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205816320,"id_str":"663727867205816320","text":"RT @naoyuki_kotani: \u81ea\u7531\u5e2d\u306e\u30c1\u30b1\u30c3\u30c8\u3092\u62bc\u3057\u4ed8\u3051\u3089\u308c\u305f\u306e\u3067\u4e09\u6d66\u534a\u5cf6\u304b\u3089\u6a2a\u6d5c\u304f\u3089\u3044\u306b\u304a\u4f4f\u307e\u3044\u306e\u65b9\u306f\u79c1\u304b\u3089\u30c1\u30b1\u30c3\u30c8\u8cb7\u3063\u3066\u304f\u3060\u3055\u3044 https:\/\/t.co\/ZX4Elf7ZT3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123227039,"id_str":"123227039","name":"\u7c73\u5c71\u9999\u7e54","screen_name":"kaori_yoneyama","location":null,"url":"http:\/\/s.ameblo.jp\/yone-zou","description":"\u30d7\u30ed\u30ec\u30b9\u30e9\u30fc\u306e\u7c73\u5c71\u9999\u7e54\u3067\u3059\u3002\u30b4\u30ad\u30b2\u30f3\u306a\u96c6\u56e3YMZ\u3067\u30b2\u30ea\u30e9\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002\u795e\u5948\u5ddd\u770c\u9017\u5b50\u5e02\u51fa\u8eab\u3002 \u30c1\u30b1\u30c3\u30c8\u306e\u3054\u4e88\u7d04\u306fDM\u307e\u305f\u306fyoneyamado@gmail.com\u3078\uff01","protected":false,"verified":false,"followers_count":6374,"friends_count":5618,"listed_count":222,"favourites_count":22,"statuses_count":26371,"created_at":"Mon Mar 15 12:02:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568829375752044544\/cULBPuaJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568829375752044544\/cULBPuaJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123227039\/1438524051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727790508785664,"id_str":"663727790508785664","text":"\u81ea\u7531\u5e2d\u306e\u30c1\u30b1\u30c3\u30c8\u3092\u62bc\u3057\u4ed8\u3051\u3089\u308c\u305f\u306e\u3067\u4e09\u6d66\u534a\u5cf6\u304b\u3089\u6a2a\u6d5c\u304f\u3089\u3044\u306b\u304a\u4f4f\u307e\u3044\u306e\u65b9\u306f\u79c1\u304b\u3089\u30c1\u30b1\u30c3\u30c8\u8cb7\u3063\u3066\u304f\u3060\u3055\u3044 https:\/\/t.co\/ZX4Elf7ZT3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2624657707,"id_str":"2624657707","name":"NAOYUKI KOTANI","screen_name":"naoyuki_kotani","location":"\u65e5\u672c \u795e\u5948\u5ddd\u770c","url":"http:\/\/m.sherdog.com\/fighter\/Naoyuki-Kotani-393","description":null,"protected":false,"verified":false,"followers_count":106,"friends_count":66,"listed_count":5,"favourites_count":88,"statuses_count":835,"created_at":"Sat Jul 12 12:53:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490055590509834240\/U9YHH9m2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490055590509834240\/U9YHH9m2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2624657707\/1430057073","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663709532007170048,"quoted_status_id_str":"663709532007170048","quoted_status":{"created_at":"Mon Nov 09 13:27:38 +0000 2015","id":663709532007170048,"id_str":"663709532007170048","text":"\u3010 #YMZ 12\u30fb2\u65b0\u6728\u583419\u6642\u534a\u3011\nVIP\u81ea\u7531\u5e2d5000\u5186\uff08\u81ea\u7531\u5e2d\u30a8\u30ea\u30a2\u304b\u3089\u5ea7\u5e2d\u78ba\u4fdd\u2192\u4ffa\u3060\u3051\u6307\u5b9a\u5e2d\u3063\u3066\u3053\u3068\u266a\uff09\u307e\u3060\u3072\u306a\u58c7E\u5217\u3082\u3042\u308a\u307e\u3059\uff01\u3088\u304f\u308f\u304b\u3089\u306a\u3044\uff1f\u3054\u4e88\u7d04\u3082\u3054\u8cea\u554f\u3082\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u30fc( '\u0398' ) https:\/\/t.co\/Md0JewyhU2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123227039,"id_str":"123227039","name":"\u7c73\u5c71\u9999\u7e54","screen_name":"kaori_yoneyama","location":null,"url":"http:\/\/s.ameblo.jp\/yone-zou","description":"\u30d7\u30ed\u30ec\u30b9\u30e9\u30fc\u306e\u7c73\u5c71\u9999\u7e54\u3067\u3059\u3002\u30b4\u30ad\u30b2\u30f3\u306a\u96c6\u56e3YMZ\u3067\u30b2\u30ea\u30e9\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002\u795e\u5948\u5ddd\u770c\u9017\u5b50\u5e02\u51fa\u8eab\u3002 \u30c1\u30b1\u30c3\u30c8\u306e\u3054\u4e88\u7d04\u306fDM\u307e\u305f\u306fyoneyamado@gmail.com\u3078\uff01","protected":false,"verified":false,"followers_count":6374,"friends_count":5618,"listed_count":222,"favourites_count":22,"statuses_count":26370,"created_at":"Mon Mar 15 12:02:37 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568829375752044544\/cULBPuaJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568829375752044544\/cULBPuaJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123227039\/1438524051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YMZ","indices":[2,6]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709507290185729,"id_str":"663709507290185729","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4R8gUwAEN6rX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4R8gUwAEN6rX.jpg","url":"https:\/\/t.co\/Md0JewyhU2","display_url":"pic.twitter.com\/Md0JewyhU2","expanded_url":"http:\/\/twitter.com\/kaori_yoneyama\/status\/663709532007170048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709507290185729,"id_str":"663709507290185729","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4R8gUwAEN6rX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4R8gUwAEN6rX.jpg","url":"https:\/\/t.co\/Md0JewyhU2","display_url":"pic.twitter.com\/Md0JewyhU2","expanded_url":"http:\/\/twitter.com\/kaori_yoneyama\/status\/663709532007170048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663709507361488897,"id_str":"663709507361488897","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4R8xUwAEuAHD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4R8xUwAEuAHD.jpg","url":"https:\/\/t.co\/Md0JewyhU2","display_url":"pic.twitter.com\/Md0JewyhU2","expanded_url":"http:\/\/twitter.com\/kaori_yoneyama\/status\/663709532007170048\/photo\/1","type":"photo","sizes":{"medium":{"w":491,"h":163,"resize":"fit"},"large":{"w":491,"h":163,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":112,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZX4Elf7ZT3","expanded_url":"https:\/\/twitter.com\/kaori_yoneyama\/status\/663709532007170048","display_url":"twitter.com\/kaori_yoneyama\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZX4Elf7ZT3","expanded_url":"https:\/\/twitter.com\/kaori_yoneyama\/status\/663709532007170048","display_url":"twitter.com\/kaori_yoneyama\u2026","indices":[72,95]}],"user_mentions":[{"screen_name":"naoyuki_kotani","name":"NAOYUKI KOTANI","id":2624657707,"id_str":"2624657707","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172286464,"id_str":"663727867172286464","text":"RT @MeetAnimals: The world's largest living cat; Hercules, the Liger! https:\/\/t.co\/Mxhf3Ht7Wz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310525633,"id_str":"3310525633","name":"Bahareh Zargarani","screen_name":"bahars019","location":"Islamic Republic of Iran","url":null,"description":"19 Years old,Classic guitar player,swimmer,fan of MJ+AdamLambert+movies+music+Sims+fashion,symbol:cancer,Business Woman!Follow me and I follow you back :)","protected":false,"verified":false,"followers_count":511,"friends_count":790,"listed_count":3,"favourites_count":13678,"statuses_count":2552,"created_at":"Sun Aug 09 10:48:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631022495106138112\/DSwU9CpH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631022495106138112\/DSwU9CpH.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645140998159470592\/i6UaQyOw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645140998159470592\/i6UaQyOw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310525633\/1442906985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:41:17 +0000 2015","id":663199584387260416,"id_str":"663199584387260416","text":"The world's largest living cat; Hercules, the Liger! https:\/\/t.co\/Mxhf3Ht7Wz","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":953278568,"id_str":"953278568","name":"Animal Planet","screen_name":"MeetAnimals","location":"meetanimals@gmail.com","url":"https:\/\/www.facebook.com\/meetanimals","description":"All images are copyrighted by their respective authors.","protected":false,"verified":false,"followers_count":1306185,"friends_count":2926,"listed_count":2629,"favourites_count":343,"statuses_count":21556,"created_at":"Sat Nov 17 09:54:16 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453558880329400320\/gr5MN2h2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453558880329400320\/gr5MN2h2.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3719030032\/e71311397b839c43ffe1df355535114c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3719030032\/e71311397b839c43ffe1df355535114c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953278568\/1396972031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":151,"favorite_count":361,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663199584290738176,"id_str":"663199584290738176","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","url":"https:\/\/t.co\/Mxhf3Ht7Wz","display_url":"pic.twitter.com\/Mxhf3Ht7Wz","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663199584387260416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663199584290738176,"id_str":"663199584290738176","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","url":"https:\/\/t.co\/Mxhf3Ht7Wz","display_url":"pic.twitter.com\/Mxhf3Ht7Wz","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663199584387260416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MeetAnimals","name":"Animal Planet","id":953278568,"id_str":"953278568","indices":[3,15]}],"symbols":[],"media":[{"id":663199584290738176,"id_str":"663199584290738176","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","url":"https:\/\/t.co\/Mxhf3Ht7Wz","display_url":"pic.twitter.com\/Mxhf3Ht7Wz","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663199584387260416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663199584387260416,"source_status_id_str":"663199584387260416","source_user_id":953278568,"source_user_id_str":"953278568"}]},"extended_entities":{"media":[{"id":663199584290738176,"id_str":"663199584290738176","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQoghTWEAAnd2Q.jpg","url":"https:\/\/t.co\/Mxhf3Ht7Wz","display_url":"pic.twitter.com\/Mxhf3Ht7Wz","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663199584387260416\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663199584387260416,"source_status_id_str":"663199584387260416","source_user_id":953278568,"source_user_id_str":"953278568"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029658"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867205967872,"id_str":"663727867205967872","text":"#SegundaDetremuraPraSdv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2881848916,"id_str":"2881848916","name":"Goddess Of Darkness","screen_name":"EuQsouANNIE","location":"Darkland HELL","url":null,"description":"Governando as Trevas\u2020Escritora\u2020MICHAEL JACKSON\u2605Bon Jovi\u2733GN'R\u2665ALICE COOPER\u2661ROCK N' ROLL\u2020Adam Lambert \u2020(Se eu pudesse me seguiria Ent\u00e3o, fa\u00e7a isso por mim)","protected":false,"verified":false,"followers_count":1878,"friends_count":1876,"listed_count":1,"favourites_count":6475,"statuses_count":5494,"created_at":"Mon Nov 17 22:34:49 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401115329916929\/RsqsQulj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401115329916929\/RsqsQulj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2881848916\/1446931088","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SegundaDetremuraPraSdv","indices":[0,23]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080029666"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193245696,"id_str":"663727867193245696","text":"RT @jack_vladamir: Kisah ni terjadi waktu aku baru lepas SPM. Bila takde apa nak buat, umi aku hantar aku balik kampung, rumah Tok aku","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1710147042,"id_str":"1710147042","name":"Dah","screen_name":"Muhaimal","location":"JOHO-PAHANG-GANU-KELATE","url":null,"description":"'not all treasure is gold and silver,mate'\nSpm's 2015\ndoakan aku","protected":false,"verified":false,"followers_count":356,"friends_count":475,"listed_count":0,"favourites_count":376,"statuses_count":10033,"created_at":"Thu Aug 29 14:31:14 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6226D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467333217523990528\/B0Ej3uDh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467333217523990528\/B0Ej3uDh.jpeg","profile_background_tile":false,"profile_link_color":"D4488C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"BFB59A","profile_text_color":"C5948C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663683310355243008\/4cv36ZIB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663683310355243008\/4cv36ZIB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1710147042\/1445354051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:44 +0000 2015","id":663727426539655168,"id_str":"663727426539655168","text":"Kisah ni terjadi waktu aku baru lepas SPM. Bila takde apa nak buat, umi aku hantar aku balik kampung, rumah Tok aku","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":912881341,"id_str":"912881341","name":"Bisikan Konspirasi","screen_name":"jack_vladamir","location":"Malaysia","url":null,"description":"Inspire others by being inspiring.","protected":false,"verified":false,"followers_count":49559,"friends_count":44,"listed_count":383,"favourites_count":3756,"statuses_count":88124,"created_at":"Mon Oct 29 17:25:38 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"140404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662771970069540864\/xSOKXiKd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662771970069540864\/xSOKXiKd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912881341\/1445362077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jack_vladamir","name":"Bisikan Konspirasi","id":912881341,"id_str":"912881341","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867168219136,"id_str":"663727867168219136","text":"So what about cyber monday ? https:\/\/t.co\/pl9xM1eC7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":361324392,"id_str":"361324392","name":"LilGoldGlock","screen_name":"GlockHef","location":"nyc","url":"http:\/\/Soundcloud.com\/DoubleGlockHef","description":"More thotties....Im a dub","protected":false,"verified":false,"followers_count":2251,"friends_count":672,"listed_count":4,"favourites_count":15378,"statuses_count":48215,"created_at":"Wed Aug 24 16:21:39 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574035335136473088\/dRldRceX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574035335136473088\/dRldRceX.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663682647378542593\/K3pnW29d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663682647378542593\/K3pnW29d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361324392\/1446760977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727511147118592,"quoted_status_id_str":"663727511147118592","quoted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727511147118592,"id_str":"663727511147118592","text":"FUCK BLACK FRIDAY! RT TO SPREAD THE WORD. https:\/\/t.co\/fQJNZzRVcp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":407262772,"id_str":"407262772","name":"curry chicken","screen_name":"chilllaaaaax","location":null,"url":null,"description":"masons world","protected":false,"verified":false,"followers_count":9595,"friends_count":7359,"listed_count":19,"favourites_count":28464,"statuses_count":117519,"created_at":"Mon Nov 07 21:17:57 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642578052\/25sf9dm9fh9kaylw06oi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642578052\/25sf9dm9fh9kaylw06oi.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662777655809429504\/0612QVF1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662777655809429504\/0612QVF1_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727484094009344,"id_str":"663727484094009344","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIoVUWUAAFv4G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIoVUWUAAFv4G.jpg","url":"https:\/\/t.co\/fQJNZzRVcp","display_url":"pic.twitter.com\/fQJNZzRVcp","expanded_url":"http:\/\/twitter.com\/chilllaaaaax\/status\/663727511147118592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":545,"h":562,"resize":"fit"},"small":{"w":340,"h":350,"resize":"fit"},"large":{"w":545,"h":562,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727484094009344,"id_str":"663727484094009344","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIoVUWUAAFv4G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIoVUWUAAFv4G.jpg","url":"https:\/\/t.co\/fQJNZzRVcp","display_url":"pic.twitter.com\/fQJNZzRVcp","expanded_url":"http:\/\/twitter.com\/chilllaaaaax\/status\/663727511147118592\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":545,"h":562,"resize":"fit"},"small":{"w":340,"h":350,"resize":"fit"},"large":{"w":545,"h":562,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pl9xM1eC7d","expanded_url":"https:\/\/twitter.com\/chilllaaaaax\/status\/663727511147118592","display_url":"twitter.com\/chilllaaaaax\/s\u2026","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029657"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172274177,"id_str":"663727867172274177","text":"@MnetMAMA \uc2dc\uc6b0\ubbfc \uae40\ubbfc\uc11d \uc218\ud638 \uae40\uc900\uba74 \ub808\uc774 \uc7a5\uc774\uc53d \ubc31\ud604 \ubcc0\ubc31\ud604 \uccb8 \uae40\uc885\ub300 \ucc2c\uc5f4 \ubc15\ucc2c\uc5f4 \ub514\uc624 \ub3c4\uacbd\uc218 \uce74\uc774 \uae40\uc885\uc778 \uc138\ud6c8 \uc624\uc138\ud6c8 #EXO \uc751\uc6d0\ud569\ub2c8\ub2e4 #2015MAMA \ud22c\ud45c #CALLMEBABY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":128487133,"in_reply_to_user_id_str":"128487133","in_reply_to_screen_name":"MnetMAMA","user":{"id":3238200003,"id_str":"3238200003","name":"\uc5d8\uac10 \uc53d\uc21c","screen_name":"xinghewo","location":null,"url":null,"description":"\ub09c \ub108\uc606\uc5d0 \uc788\uc744\uac8c","protected":false,"verified":false,"followers_count":11,"friends_count":89,"listed_count":0,"favourites_count":129,"statuses_count":839,"created_at":"Wed May 06 05:55:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653178499662909440\/qOsb0oyo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653178499662909440\/qOsb0oyo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238200003\/1441722353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[73,77]},{"text":"2015MAMA","indices":[84,93]},{"text":"CALLMEBABY","indices":[97,108]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080029658"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867176456192,"id_str":"663727867176456192","text":"\u76ee\u6a19\u306eSMFC\u306b\u5c4a\u304d\u307e\u3057\u305f","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2464296655,"id_str":"2464296655","name":"\u3048\u3080\u3048\u306c","screen_name":"Scapp4Re","location":"\u2191\u30c4\u30a4\u30d7\u30ed\u2191","url":"https:\/\/www.youtube.com\/channel\/UC5A6ilQdAbhdOUI2xMBLXhA","description":"YouTube\u3067CSGO\u306e\u52d5\u753b\u51fa\u3057\u3066\u307e\u3059 \n\u30cb\u30b3\u30cb\u30b3\u3067\u306f\u30a2\u30cb\u30e1\u3092 \nFollow,Remove\u306f\u3054\u81ea\u7531\u306b\u3002\nhttp:\/\/ask.fm\/EscapeAzusa http:\/\/twpf.jp\/Scapp4Re","protected":false,"verified":false,"followers_count":676,"friends_count":196,"listed_count":28,"favourites_count":10727,"statuses_count":38238,"created_at":"Sat Apr 26 08:08:23 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656427854419247105\/5GJqH7eF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656427854419247105\/5GJqH7eF.jpg","profile_background_tile":false,"profile_link_color":"FF3C00","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657581316213309441\/7iepTCEt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657581316213309441\/7iepTCEt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2464296655\/1442155326","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029659"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193241600,"id_str":"663727867193241600","text":"Lagu yang sangat menonjok \ud83d\ude01 https:\/\/t.co\/06GBDTaMlr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81051034,"id_str":"81051034","name":"febri ryan13","screen_name":"febri_13","location":"magelang","url":null,"description":"Absurd | Part of @BrainAbilityDM | http:\/\/reverbnation.com\/brainability |","protected":false,"verified":false,"followers_count":260,"friends_count":522,"listed_count":1,"favourites_count":463,"statuses_count":8005,"created_at":"Fri Oct 09 07:13:31 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117978697\/53856acf4df1dcbb822c5cbd09572ba8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117978697\/53856acf4df1dcbb822c5cbd09572ba8.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608679815583924225\/PGCZgpiW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608679815583924225\/PGCZgpiW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81051034\/1410696347","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727222574870528,"quoted_status_id_str":"663727222574870528","quoted_status":{"created_at":"Mon Nov 09 14:37:55 +0000 2015","id":663727222574870528,"id_str":"663727222574870528","text":"\"Tuan Nona Kesepian\" menjadi lagu yang dibawakan TULUS selanjutnya dalam TULUS: Merdu Untukmu.\n\n#TulusTransTV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330168516,"id_str":"330168516","name":"musiktulus","screen_name":"musiktulus","location":null,"url":"http:\/\/www.situstulus.com","description":"Contact: Riri Cholid Phone: +6287821127502 | Email: musiktulus.management@gmail.com | http:\/\/youtube.com\/user\/musiktulus","protected":false,"verified":false,"followers_count":30357,"friends_count":306,"listed_count":32,"favourites_count":451,"statuses_count":9273,"created_at":"Wed Jul 06 06:21:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653191606141452288\/n-15JEHk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653191606141452288\/n-15JEHk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330168516\/1443331169","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TulusTransTV","indices":[96,109]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/06GBDTaMlr","expanded_url":"https:\/\/twitter.com\/musiktulus\/status\/663727222574870528","display_url":"twitter.com\/musiktulus\/sta\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193221122,"id_str":"663727867193221122","text":"@bbb_dokurock \u307b\u307b\u3046\u2026\u8a73\u3057\u304f\u304a\u805e\u304b\u305b\u9858\u3044\u305f\u3044\u2026(\/\/\/\u02ca\u317f\u02cb\/\/\/)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727619687317504,"in_reply_to_status_id_str":"663727619687317504","in_reply_to_user_id":3768892752,"in_reply_to_user_id_str":"3768892752","in_reply_to_screen_name":"bbb_dokurock","user":{"id":570950651,"id_str":"570950651","name":"\uff26","screen_name":"ncolzr","location":"\u3059\u3079\u3066\u306e\u9053\u306f\u30af\u30e9\u30b9\u30c6\u306b\u901a\u305a","url":null,"description":"\u6210\u4eba\u6e08\u307f\u3067\u8150\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059\u3002FRB\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u3002\u6642\u96c1\u3001J\u5144\u5f1f\u3001\u30af\u30e9\u30b9\u30c6\u3001\u30a8\u30a4\u30b9\u30c6\u304c\u597d\u304d\u3002\u30a8\u30a4\u30d6\u30e9\u30e0\u30b9\u3055\u3093\u5927\u597d\u304d\u3002\u30d6\u30ea\u30c3\u30c4\uff65T\uff65\u30a8\u30a4\u30d6\u30e9\u30e0\u30b9\u306e\u30e2\u30f3\u30da\u3002\u30a8\u30a4\u30b9\u30c6\u5e03\u6559\u9811\u5f35\u308b\u3002\u81ea\u7531\u306a\u5984\u60f3\u3070\u304b\u308a\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":109,"friends_count":131,"listed_count":9,"favourites_count":935,"statuses_count":14788,"created_at":"Fri May 04 16:10:29 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622575474\/ghf4m0lmjjqrw71wqtt5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622575474\/ghf4m0lmjjqrw71wqtt5.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657875736166928385\/tNO7Didi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657875736166928385\/tNO7Didi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/570950651\/1445685666","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bbb_dokurock","name":"\u84bc\u7dad@\u5927\u4eba\u7248","id":3768892752,"id_str":"3768892752","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867189067777,"id_str":"663727867189067777","text":"@3zaru DOCOMO SH-01D \u96fb\u6c60\u6b8b\u91cf=87%,\u72b6\u614b=\u5145\u96fb\u4e2d 2015\/11\/09 23:40:29 #tweetbatt","source":"\u003ca href=\"https:\/\/market.android.com\/details?id=jp.eguchi.android.tweetbatt\" rel=\"nofollow\"\u003eTweet Battery\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":111524569,"in_reply_to_user_id_str":"111524569","in_reply_to_screen_name":"3zaru","user":{"id":1290825494,"id_str":"1290825494","name":"\u3061\u3083\u3093\u3084\u3059","screen_name":"yasuke_1118","location":"\u5e7b\u60f3\u90f7","url":null,"description":"IT\u7cfb\u306e\u5c02\u95801\u5e74\u751f\u3002\u30b2\u30b9\u4e59\u5973\u3002\u3001\u6771\u65b9project\u3001\u54b2-saki-\u3001\u65e5\u5e38\u7cfb\u30a2\u30cb\u30e1\uff06\u6f2b\u753b\u597d\u304d\u3067\u3059\u3002\u6700\u8fd1\u306f\u7b4b\u30c8\u30ec\u3068\u30e9\u30f3\u30cb\u30f3\u30b0\u8da3\u5473\u306b\u3057\u3066\u307e\u3059\u3002\u8da3\u5473\u304c\u5408\u3044\u305d\u3046\u306a\u65b9\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":8488,"friends_count":7154,"listed_count":24,"favourites_count":7847,"statuses_count":491995,"created_at":"Sat Mar 23 08:18:57 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611774862546219008\/Jn7-jFe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611774862546219008\/Jn7-jFe5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1290825494\/1434873646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tweetbatt","indices":[57,67]}],"urls":[],"user_mentions":[{"screen_name":"3zaru","name":"\u898b\u3056\u308b","id":111524569,"id_str":"111524569","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029662"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867168034816,"id_str":"663727867168034816","text":"@i7aka8 \u307e\u3055\u304b\u306e\u30de\u30b9\u30b3\u30c3\u30c8\u30ad\u30e3\u30e9\u03a3(\uffe3\u25a1\uffe3!!\n\u304d\u306a\u3053\u53ef\u611b\u3044\u304b\u3089\u5b09\u3057\u3044(\uff89*\u00b0\u25bd\u00b0)\uff89\uff9c\uff70\uff72","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727461662724097,"in_reply_to_status_id_str":"663727461662724097","in_reply_to_user_id":3328759430,"in_reply_to_user_id_str":"3328759430","in_reply_to_screen_name":"i7aka8","user":{"id":2792091668,"id_str":"2792091668","name":"miel","screen_name":"miel_hcmt","location":"\u74f6\u306e\u4e2d","url":null,"description":"18\u2191\u3002\u30f4\u30a1\u30f3\u30ac\u30fc\u30c9(\u6ac2\u30a2\u30a4\/\u4e09\u548c\u30df\u30b5)\u3001\u306b\u3083\u3093\u3053\u308d\u308a(\u30bf\u30af\u30a6\u30a3\u30f3)\u3001\u30b5\u30e1\u304d\u308a\u597d\u304d\u3002\u3064\u307e\u308a\u5171\u901a\u3059\u308b\u4e2d\u306e\u4eba\u597d\u304d\u3067\u3059\u3002\u652f\u90e8\u3084\u30d7\u30e9\u30a4\u30d9\u30c3\u30bf\u30fc\u306b\u3066\u6642\u3005\u5c0f\u8aac\u3042\u3052\u3066\u307e\u3059\u3002\u30b8\u30e3\u30f3\u30eb\u306f\u96d1\u98df\u3001CP\u306f\u57fa\u672c\u56fa\u5b9a\u3002\u6700\u8fd1\u306f\u30a2\u30a4\u30ca\u30ca\u6cbc(\u5927\u58ee\/\u4ed6\u96d1\u98df)\u306b\u3044\u307e\u3059\u3002\u8a73\u3057\u304f\u306f\u3053\u3061\u3089\u2192http:\/\/twpf.jp\/miel_hcmt","protected":false,"verified":false,"followers_count":135,"friends_count":142,"listed_count":9,"favourites_count":847,"statuses_count":9533,"created_at":"Fri Sep 05 14:47:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641181202519470080\/pvZlGAEY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641181202519470080\/pvZlGAEY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792091668\/1441896242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"i7aka8","name":"\u3086\u3046\u5b50","id":3328759430,"id_str":"3328759430","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029657"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867193221120,"id_str":"663727867193221120","text":"RT @maiaaaxoxo1: \ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\n\n#\u6d66\u7530\u76f4\u4e5f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2593985318,"id_str":"2593985318","name":"\uff5c\u30ab\u30a9\u30ea\u2082 \u2084 \u2445 \u2084 \u2084 \u2086\uff5c","screen_name":"kaaaaatae","location":"\u261bOsakaJK2 \u2640 AB\u578b 163cm \u52a0\u5de5 \u52d5\u753b \u261a","url":"https:\/\/latte.la\/photo\/162865","description":"\u22c6\u2508\u2508\u2508\u2508\u15e9 \u15e9 \u15e9 \u0e5b \u0181 ! \u01e4 \u0141 \u00d8 \u0245 \u0118\u2508\u2508\u2508\u2508\u2508\u2708\ufe0e\u3010@A_Shinjirooooo\u3011\u2764\u3010\u8207\u738b\u5b50\u20db\u27b8\u2765\u5507\u738b\u5b50\u20db\u3011 \u3010@AAA_Nissy_0515\u3011\u59b9 \u3010@11_0511\u3011\u81ea\u5206\u22c6\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2708\ufe0e","protected":false,"verified":false,"followers_count":3431,"friends_count":3227,"listed_count":33,"favourites_count":7012,"statuses_count":10683,"created_at":"Sun Jun 29 01:32:53 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662265001802010625\/UFaCCE6C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662265001802010625\/UFaCCE6C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2593985318\/1442397912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:06 +0000 2015","id":663723994512691201,"id_str":"663723994512691201","text":"\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\ud83c\udf31\ud83d\udc9a\n\n#\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d \n#TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3318165470,"id_str":"3318165470","name":"\uff8f \uff72 \uff77 \uff6c \uff9d\u3010AAA\u57a2\u3011","screen_name":"maiaaaxoxo1","location":"7\u8272\u306e\u30d2\u30ab\u30ea\u3042\u3064\u3081\u305f\u8679","url":null,"description":"\u2740\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u25b7\u25b7\u25b7\n\n\u25cbAAA\u304c\uff7d\uff77\u306a\u6843\u592a\u90ce\u770c\u306eJK\uff72\uff81\uff88\uff9d\uff7e\uff72\n\n \u25cba\u30aa\u30bf\uff7b\uff9d\u3075\u3049\u308d\u30fc\u3057\u3066\n \n\u25cb\u57fa\u672ca\u30aa\u30bf\uff7b\uff9d\u3060\u3051\n \n\u25cb\u3088\u304f\u5206\u304b\u3093\u306a\u3044\u4eba\u306f\uff7a\uff9e\uff92\uff9d\uff85\uff7b\uff72\u3002\u26a0\u307b\u3093\u307e\u306b\u3080\u308a\u306a\u3068\u304d\uff8c\uff9e\uff9b\u6709\u308a\u3002\n\u3000\n\n\u3010nissy\u3088\u308a\u306eall\u63a8\u3057\u3011\n\u3010\uff80\uff9e\uff9d\uff7d\u90e8\u25c1\uff9b\uff6f\uff78\u3011\n\n\u25c1\u25c1\u25c1\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2212\u2740","protected":false,"verified":false,"followers_count":661,"friends_count":628,"listed_count":2,"favourites_count":140,"statuses_count":830,"created_at":"Mon Aug 17 23:50:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661540226402119680\/0QR9I-RC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661540226402119680\/0QR9I-RC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318165470\/1446879260","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":4,"entities":{"hashtags":[{"text":"\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","indices":[117,127]},{"text":"TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046","indices":[129,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","indices":[134,140]},{"text":"TL\u3092\u7dd1\u3067\u57cb\u3081\u3088\u3046","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"maiaaaxoxo1","name":"\uff8f \uff72 \uff77 \uff6c \uff9d\u3010AAA\u57a2\u3011","id":3318165470,"id_str":"3318165470","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080029663"} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867201585152,"id_str":"663727867201585152","text":"\"Weh that guy tu comel\" https:\/\/t.co\/8rq4fP71yh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4092668004,"id_str":"4092668004","name":"Athirah","screen_name":"athrhjmldn","location":null,"url":null,"description":"ended.","protected":false,"verified":false,"followers_count":26,"friends_count":30,"listed_count":0,"favourites_count":119,"statuses_count":214,"created_at":"Sun Nov 01 16:57:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661219969481359360\/b8nZMMKj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661219969481359360\/b8nZMMKj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4092668004\/1446398836","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727867084214272,"id_str":"663727867084214272","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-oEVEAAa45n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-oEVEAAa45n.jpg","url":"https:\/\/t.co\/8rq4fP71yh","display_url":"pic.twitter.com\/8rq4fP71yh","expanded_url":"http:\/\/twitter.com\/athrhjmldn\/status\/663727867201585152\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727867084214272,"id_str":"663727867084214272","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-oEVEAAa45n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-oEVEAAa45n.jpg","url":"https:\/\/t.co\/8rq4fP71yh","display_url":"pic.twitter.com\/8rq4fP71yh","expanded_url":"http:\/\/twitter.com\/athrhjmldn\/status\/663727867201585152\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080029665"} +{"delete":{"status":{"id":661257992537526272,"id_str":"661257992537526272","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080029909"}} +{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867172261888,"id_str":"663727867172261888","text":"\u5947\u8de1\u901a\u308a\u3053\u3057\u3066\u904b\u547d\u3060\u3088\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69\n\n\u3042\u304b\u308a\u3093\u3068\u304a\u305d\u308d\u3044\u30fc\ud83d\udc6d\ud83d\udc95\n\u540c\u6027\u5a5a\u8a8d\u3081\u3089\u308c\u305f\u306d https:\/\/t.co\/W5iPLNq9ya","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281603598,"id_str":"3281603598","name":"\u5c0f\u6fa4\u7531\u4f9d","screen_name":"ozawansan","location":"wonderland","url":null,"description":"\u5317\u967d\u21e22558 \u3010\u3068\u3084\u3093\u2765\u276510.07\u3011","protected":false,"verified":false,"followers_count":236,"friends_count":239,"listed_count":0,"favourites_count":988,"statuses_count":504,"created_at":"Thu Jul 16 14:22:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622007505061724160\/N5g9D0WA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622007505061724160\/N5g9D0WA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281603598\/1437133265","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727857412108288,"id_str":"663727857412108288","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-ECUcAAyURb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-ECUcAAyURb.jpg","url":"https:\/\/t.co\/W5iPLNq9ya","display_url":"pic.twitter.com\/W5iPLNq9ya","expanded_url":"http:\/\/twitter.com\/ozawansan\/status\/663727867172261888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727857412108288,"id_str":"663727857412108288","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-ECUcAAyURb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-ECUcAAyURb.jpg","url":"https:\/\/t.co\/W5iPLNq9ya","display_url":"pic.twitter.com\/W5iPLNq9ya","expanded_url":"http:\/\/twitter.com\/ozawansan\/status\/663727867172261888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":640,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080029658"} +{"delete":{"status":{"id":662847021389246464,"id_str":"662847021389246464","user_id":527096737,"user_id_str":"527096737"},"timestamp_ms":"1447080030175"}} +{"delete":{"status":{"id":653996993837142016,"id_str":"653996993837142016","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080030264"}} +{"delete":{"status":{"id":628980717729501184,"id_str":"628980717729501184","user_id":558886336,"user_id_str":"558886336"},"timestamp_ms":"1447080030399"}} +{"delete":{"status":{"id":663669243418923008,"id_str":"663669243418923008","user_id":2615191712,"user_id_str":"2615191712"},"timestamp_ms":"1447080030406"}} +{"delete":{"status":{"id":545102158132035584,"id_str":"545102158132035584","user_id":1283558910,"user_id_str":"1283558910"},"timestamp_ms":"1447080030490"}} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366668288,"id_str":"663727871366668288","text":"RT @Alcohoilic: \"I'm done drinking\" https:\/\/t.co\/zCyRb9xbRF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715426304,"id_str":"715426304","name":"Lyd\u263a\ufe0f","screen_name":"eyyitslydia","location":"Kansas ","url":null,"description":null,"protected":false,"verified":false,"followers_count":1653,"friends_count":915,"listed_count":13,"favourites_count":31467,"statuses_count":54237,"created_at":"Wed Jul 25 03:54:48 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475824756248162305\/0XQCM5uf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475824756248162305\/0XQCM5uf.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656249151496187905\/ex3WXBc2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656249151496187905\/ex3WXBc2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715426304\/1446594819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 15:42:48 +0000 2015","id":661569222883938304,"id_str":"661569222883938304","text":"\"I'm done drinking\" https:\/\/t.co\/zCyRb9xbRF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2401023024,"id_str":"2401023024","name":"Alcoholic","screen_name":"Alcohoilic","location":"the bar","url":"http:\/\/alcohoilic.com","description":"cheers, fellow drinker \n Business: alcohoilicmedia@gmail.com","protected":false,"verified":false,"followers_count":189429,"friends_count":232,"listed_count":89,"favourites_count":235,"statuses_count":1418,"created_at":"Fri Mar 21 05:45:07 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570343480572907520\/q0tzORv2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570343480572907520\/q0tzORv2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401023024\/1395962945","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1242,"favorite_count":1535,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661569220862283778,"id_str":"661569220862283778","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","url":"https:\/\/t.co\/zCyRb9xbRF","display_url":"pic.twitter.com\/zCyRb9xbRF","expanded_url":"http:\/\/twitter.com\/Alcohoilic\/status\/661569222883938304\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661569220862283778,"id_str":"661569220862283778","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","url":"https:\/\/t.co\/zCyRb9xbRF","display_url":"pic.twitter.com\/zCyRb9xbRF","expanded_url":"http:\/\/twitter.com\/Alcohoilic\/status\/661569222883938304\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Alcohoilic","name":"Alcoholic","id":2401023024,"id_str":"2401023024","indices":[3,14]}],"symbols":[],"media":[{"id":661569220862283778,"id_str":"661569220862283778","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","url":"https:\/\/t.co\/zCyRb9xbRF","display_url":"pic.twitter.com\/zCyRb9xbRF","expanded_url":"http:\/\/twitter.com\/Alcohoilic\/status\/661569222883938304\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":661569222883938304,"source_status_id_str":"661569222883938304","source_user_id":2401023024,"source_user_id_str":"2401023024"}]},"extended_entities":{"media":[{"id":661569220862283778,"id_str":"661569220862283778","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5ds4PUEAIHYnU.jpg","url":"https:\/\/t.co\/zCyRb9xbRF","display_url":"pic.twitter.com\/zCyRb9xbRF","expanded_url":"http:\/\/twitter.com\/Alcohoilic\/status\/661569222883938304\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":661569222883938304,"source_status_id_str":"661569222883938304","source_user_id":2401023024,"source_user_id_str":"2401023024"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080030658"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871362539520,"id_str":"663727871362539520","text":"RT @Perfamw: @Q1Iil \u062b\u0646\u0643\u064a\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2290147879,"id_str":"2290147879","name":"\u063a\u0633\u0642 \u0627\u0644\u0639\u062a\u064a\u0628\u064a.","screen_name":"Q1Iil","location":null,"url":null,"description":"\u064a\u0648\u062c\u062f \u0628\u062f\u0627\u062e\u0644\u064a \u0646\u0648\u0631\u0627\u064b \u0648\u0638\u0644\u0627\u0645","protected":false,"verified":false,"followers_count":35381,"friends_count":631,"listed_count":43,"favourites_count":1,"statuses_count":224630,"created_at":"Mon Jan 13 19:58:08 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644954390445453313\/blFtgDsB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644954390445453313\/blFtgDsB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2290147879\/1439152884","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727854790844417,"id_str":"663727854790844417","text":"@Q1Iil \u062b\u0646\u0643\u064a\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727753221562368,"in_reply_to_status_id_str":"663727753221562368","in_reply_to_user_id":2290147879,"in_reply_to_user_id_str":"2290147879","in_reply_to_screen_name":"Q1Iil","user":{"id":1397944063,"id_str":"1397944063","name":"\u0643\u0648\u064a\u0646 .","screen_name":"Perfamw","location":null,"url":null,"description":"\u2727Hi you bitch\u2727","protected":false,"verified":false,"followers_count":6176,"friends_count":322,"listed_count":7,"favourites_count":2415,"statuses_count":62314,"created_at":"Thu May 02 18:54:42 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662984310501343232\/4yIeEmkS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662984310501343232\/4yIeEmkS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1397944063\/1446902754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Q1Iil","name":"\u063a\u0633\u0642 \u0627\u0644\u0639\u062a\u064a\u0628\u064a.","id":2290147879,"id_str":"2290147879","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Perfamw","name":"\u0643\u0648\u064a\u0646 .","id":1397944063,"id_str":"1397944063","indices":[3,11]},{"screen_name":"Q1Iil","name":"\u063a\u0633\u0642 \u0627\u0644\u0639\u062a\u064a\u0628\u064a.","id":2290147879,"id_str":"2290147879","indices":[13,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080030657"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871400280068,"id_str":"663727871400280068","text":"Guarda la tristeza para ti mismo y comparte la felicidad con los dem\u00e1s","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3545704186,"id_str":"3545704186","name":"Hernan Vera","screen_name":"HernanVera_A7","location":null,"url":null,"description":"Amante del mar, surf, derechos de los animales, paz!","protected":false,"verified":false,"followers_count":43,"friends_count":343,"listed_count":1,"favourites_count":0,"statuses_count":1039,"created_at":"Fri Sep 04 14:42:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639880168522293248\/0pJDLhtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639880168522293248\/0pJDLhtU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3545704186\/1441394296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080030666"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379283968,"id_str":"663727871379283968","text":"RT @applevssamsung4: Hello its me, i was wondering WHEN THE FUCK IS YOUR NEW ALBUM GONNA BE RELEASED ?! https:\/\/t.co\/fWU0xKhn2Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830643287,"id_str":"2830643287","name":"O.l.i.v.e \u2606~\u2606","screen_name":"larrymaynwe","location":"Paran\u00e1, Brasil","url":null,"description":"X~X~X~X~X~X~X~X~X~X~X~X~X\n\n The only thing i cant think about is ..................~Bottom!louis~..................\n\nX~X~X~X~X~X~X~X~X~X~X~X~X","protected":false,"verified":false,"followers_count":1157,"friends_count":758,"listed_count":4,"favourites_count":30669,"statuses_count":38851,"created_at":"Wed Sep 24 22:33:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663166182879465472\/4uXOiPKv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663166182879465472\/4uXOiPKv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830643287\/1446818869","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:51 +0000 2015","id":663726951090290688,"id_str":"663726951090290688","text":"Hello its me, i was wondering WHEN THE FUCK IS YOUR NEW ALBUM GONNA BE RELEASED ?! https:\/\/t.co\/fWU0xKhn2Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3854103922,"id_str":"3854103922","name":"hello its me..","screen_name":"applevssamsung4","location":null,"url":null,"description":"send us requests here #helloitsmewtf","protected":false,"verified":false,"followers_count":10431,"friends_count":93,"listed_count":6,"favourites_count":153,"statuses_count":723,"created_at":"Sat Oct 03 17:00:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663562877417209857\/S0LWKt6I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663562877417209857\/S0LWKt6I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3854103922\/1447040718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726934044647424,"id_str":"663726934044647424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726934044647424,"id_str":"663726934044647424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}}},{"id":663726934157893632,"id_str":"663726934157893632","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUpXIAAT4dl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUpXIAAT4dl.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":401,"h":401,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":401,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"applevssamsung4","name":"hello its me..","id":3854103922,"id_str":"3854103922","indices":[3,19]}],"symbols":[],"media":[{"id":663726934044647424,"id_str":"663726934044647424","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}},"source_status_id":663726951090290688,"source_status_id_str":"663726951090290688","source_user_id":3854103922,"source_user_id_str":"3854103922"}]},"extended_entities":{"media":[{"id":663726934044647424,"id_str":"663726934044647424","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUOXIAAIeqP.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}},"source_status_id":663726951090290688,"source_status_id_str":"663726951090290688","source_user_id":3854103922,"source_user_id_str":"3854103922"},{"id":663726934157893632,"id_str":"663726934157893632","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIIUpXIAAT4dl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIIUpXIAAT4dl.jpg","url":"https:\/\/t.co\/fWU0xKhn2Z","display_url":"pic.twitter.com\/fWU0xKhn2Z","expanded_url":"http:\/\/twitter.com\/applevssamsung4\/status\/663726951090290688\/photo\/1","type":"photo","sizes":{"large":{"w":401,"h":401,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":401,"h":401,"resize":"fit"}},"source_status_id":663726951090290688,"source_status_id_str":"663726951090290688","source_user_id":3854103922,"source_user_id_str":"3854103922"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871396077568,"id_str":"663727871396077568","text":"RT @formulahits: Wisin - Que Se Sienta El Deseo (Official Video) ft. Ricky Martin https:\/\/t.co\/RdpdVyd6Yp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89692677,"id_str":"89692677","name":"caRMen","screen_name":"caRMenrique","location":"espa\u00f1a","url":null,"description":"Desde tu primer pasito p\u00b4alante...juntos caminamos","protected":false,"verified":false,"followers_count":990,"friends_count":189,"listed_count":16,"favourites_count":2528,"statuses_count":19414,"created_at":"Fri Nov 13 12:55:46 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675670648\/358121a3821dfbcb8942ba34ab1b0046.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675670648\/358121a3821dfbcb8942ba34ab1b0046.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"963396","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556912687389487104\/FewPIAwU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556912687389487104\/FewPIAwU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89692677\/1398801735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:37 +0000 2015","id":663722109990907904,"id_str":"663722109990907904","text":"Wisin - Que Se Sienta El Deseo (Official Video) ft. Ricky Martin https:\/\/t.co\/RdpdVyd6Yp","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1622943458,"id_str":"1622943458","name":"formulahits","screen_name":"formulahits","location":"San Salvador, Entre Rios","url":null,"description":"El laboratorio de la musica - Lunes a Viernes 14 hs. Radio del este 98.9 San Salvador E.R.","protected":false,"verified":false,"followers_count":66,"friends_count":280,"listed_count":0,"favourites_count":4,"statuses_count":1006,"created_at":"Fri Jul 26 13:19:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"80D1B3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0A0AA3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423454869597343744\/EPgdNg2x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423454869597343744\/EPgdNg2x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1622943458\/1425522880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RdpdVyd6Yp","expanded_url":"http:\/\/fb.me\/49AyYOlSa","display_url":"fb.me\/49AyYOlSa","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RdpdVyd6Yp","expanded_url":"http:\/\/fb.me\/49AyYOlSa","display_url":"fb.me\/49AyYOlSa","indices":[82,105]}],"user_mentions":[{"screen_name":"formulahits","name":"formulahits","id":1622943458,"id_str":"1622943458","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080030665"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379173376,"id_str":"663727871379173376","text":"RT @zolshosa: @IZANAGI0324 @ikeikekumakuma \n\u305d\u3046\u3060\uff01 \u30ad\u30e3\u30e1\u30ed\u30f3\u304c\u30af\u30fc\u30eb\u30b8\u30e3\u30d1\u30f3\u901a\u3068\u304b\u3044\u3063\u3066\u81ea\u6162\u3057\u3066\u305f\u305e\uff01\n\u305d\u306e #\u3071\u3088\u3071\u3088\u3061\u30fc\u3093 \u3068\u3084\u3089\u306e\u3053\u3068\u3082\u3001\u5f7c\u306a\u3089\u77e5\u3063\u3066\u308b\u304b\u3082\u3057\u308c\u3093\u2026\u2026 https:\/\/t.co\/7TVAxLa9bX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328263409,"id_str":"3328263409","name":"\u4f0a\u90aa\u90a3\u5c90","screen_name":"IZANAGI0324","location":"\u8328\u57ce\u770c","url":null,"description":"\uff20\u4ed5\u4e8b\u4f11\u307f\u306e\u6642\u306fYouTube\u3067GAME\u5b9f\u6cc1\u3084\u653f\u6cbb\u30fb\u6642\u4e8b\u30cd\u30bf\u7b49\u30921\u65e5\u4e2d\u89b3\u3066\u3044\u308b\u3002\u7956\u56fd\u65e5\u672c\uff06\u3054\u98ef\uff06\u30e9\u30fc\u30e1\u30f3\uff06\u9152\u597d\u304d&\u4fdd\u5b88\u6d3e\uff06UFO&UMA\uff06\u5fc3\u970a\u80af\u5b9a\u6d3e\uff06\u30c4\u30a4\u30c3\u30bf\u30fc\u52c9\u5f37\u4e2d\uff06\u7279\u4e9c\u4e09\u56fd\uff06\u53cd\u65e5\u65e5\u672c\u4eba\u304c\u5acc\u3044\u306a\uff2d\uff21\uff24\uff21\uff2f\u3067\u3059\u3002(\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3069\u3046\u305e\uff09\uff08\u305f\u3060\u3057\u30a8\u30ed\u306f\u30df\u30e5\u30fc\u30c8\u3057\u307e\u3059\uff09","protected":false,"verified":false,"followers_count":639,"friends_count":646,"listed_count":1,"favourites_count":371,"statuses_count":3032,"created_at":"Mon Aug 24 08:23:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663696422139658240\/yH2lifgR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663696422139658240\/yH2lifgR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328263409\/1447073430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:27 +0000 2015","id":663725846717267968,"id_str":"663725846717267968","text":"@IZANAGI0324 @ikeikekumakuma \n\u305d\u3046\u3060\uff01 \u30ad\u30e3\u30e1\u30ed\u30f3\u304c\u30af\u30fc\u30eb\u30b8\u30e3\u30d1\u30f3\u901a\u3068\u304b\u3044\u3063\u3066\u81ea\u6162\u3057\u3066\u305f\u305e\uff01\n\u305d\u306e #\u3071\u3088\u3071\u3088\u3061\u30fc\u3093 \u3068\u3084\u3089\u306e\u3053\u3068\u3082\u3001\u5f7c\u306a\u3089\u77e5\u3063\u3066\u308b\u304b\u3082\u3057\u308c\u3093\u2026\u2026 https:\/\/t.co\/7TVAxLa9bX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724506964471814,"in_reply_to_status_id_str":"663724506964471814","in_reply_to_user_id":3328263409,"in_reply_to_user_id_str":"3328263409","in_reply_to_screen_name":"IZANAGI0324","user":{"id":3011109020,"id_str":"3011109020","name":"\u30ac\u30e9\u30b1\u30fc\u5c11\u4f508\u53f7","screen_name":"zolshosa","location":null,"url":null,"description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u3044\u305f\u3057\u307e\u3059\u3002\u79c1\u306e\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3082\u6b53\u8fce\u3057\u3066\u4e0b\u3055\u3044\u3002\uff0f\u53f3\u6295\u3052\u53f3\u6253\u3061\u53f3\u5f8c\u308d\u56de\u3057\u8e74\u308a\uff0f\u3071\u3088\u3071\u3088\u3061\u30fc\u3093\u306a\u65b9\u3068\u306e\u8b70\u8ad6\u306f\u9762\u5012\u306a\u306e\u3067\u3057\u307e\u3071\u3088\u3061\u30fc\u3093\u3002\uff0f\u5b50\u4f9b\u306e\u9803\u306e\u5922\uff1a\u4e16\u754c\u5f81\u670d\uff0f\u597d\u304d\u306a\u653f\u6cbb\u5bb6\uff1a\u5b89\u500d\u664b\u4e09\uff0f\u597d\u304d\u306a\u82b8\u4eba\uff1a\u8fbb\u5143\u6e05\u7f8e\u3001\u5c0f\u897f\u6d0b\u4e4b\uff0f\u597d\u304d\u306a\u30a2\u30a4\u30c9\u30eb\uff1a\u6709\u7530\u82b3\u751f","protected":false,"verified":false,"followers_count":1261,"friends_count":1178,"listed_count":7,"favourites_count":143,"statuses_count":15628,"created_at":"Fri Feb 06 09:34:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643711678996058112\/1mX-hYkK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643711678996058112\/1mX-hYkK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3011109020\/1442307761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"\u3071\u3088\u3071\u3088\u3061\u30fc\u3093","indices":[65,73]}],"urls":[],"user_mentions":[{"screen_name":"IZANAGI0324","name":"\u4f0a\u90aa\u90a3\u5c90","id":3328263409,"id_str":"3328263409","indices":[0,12]},{"screen_name":"ikeikekumakuma","name":"\u525b\u7530\u731b\u592b","id":3191457666,"id_str":"3191457666","indices":[13,28]}],"symbols":[],"media":[{"id":663725845530349572,"id_str":"663725845530349572","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","url":"https:\/\/t.co\/7TVAxLa9bX","display_url":"pic.twitter.com\/7TVAxLa9bX","expanded_url":"http:\/\/twitter.com\/zolshosa\/status\/663725846717267968\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":360,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":540,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663725845530349572,"id_str":"663725845530349572","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","url":"https:\/\/t.co\/7TVAxLa9bX","display_url":"pic.twitter.com\/7TVAxLa9bX","expanded_url":"http:\/\/twitter.com\/zolshosa\/status\/663725846717267968\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":360,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":540,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3071\u3088\u3071\u3088\u3061\u30fc\u3093","indices":[79,87]}],"urls":[],"user_mentions":[{"screen_name":"zolshosa","name":"\u30ac\u30e9\u30b1\u30fc\u5c11\u4f508\u53f7","id":3011109020,"id_str":"3011109020","indices":[3,12]},{"screen_name":"IZANAGI0324","name":"\u4f0a\u90aa\u90a3\u5c90","id":3328263409,"id_str":"3328263409","indices":[14,26]},{"screen_name":"ikeikekumakuma","name":"\u525b\u7530\u731b\u592b","id":3191457666,"id_str":"3191457666","indices":[27,42]}],"symbols":[],"media":[{"id":663725845530349572,"id_str":"663725845530349572","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","url":"https:\/\/t.co\/7TVAxLa9bX","display_url":"pic.twitter.com\/7TVAxLa9bX","expanded_url":"http:\/\/twitter.com\/zolshosa\/status\/663725846717267968\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":360,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":540,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725846717267968,"source_status_id_str":"663725846717267968","source_user_id":3011109020,"source_user_id_str":"3011109020"}]},"extended_entities":{"media":[{"id":663725845530349572,"id_str":"663725845530349572","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHI9MVEAQENGL.jpg","url":"https:\/\/t.co\/7TVAxLa9bX","display_url":"pic.twitter.com\/7TVAxLa9bX","expanded_url":"http:\/\/twitter.com\/zolshosa\/status\/663725846717267968\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":360,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":540,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725846717267968,"source_status_id_str":"663725846717267968","source_user_id":3011109020,"source_user_id_str":"3011109020"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379308548,"id_str":"663727871379308548","text":"Les entitats sobiranistes demanen un nou Govern que comenci aviat a aplicar la resoluci\u00f3 https:\/\/t.co\/tnpBSrXllA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4059218001,"id_str":"4059218001","name":"CATALUNYA SOM NACIO","screen_name":"tupitupitupi2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":257,"friends_count":454,"listed_count":1,"favourites_count":2,"statuses_count":2101,"created_at":"Wed Oct 28 08:07:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659289607796822017\/imZEDDrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659289607796822017\/imZEDDrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4059218001\/1446036054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tnpBSrXllA","expanded_url":"http:\/\/www.mon.cat\/cat\/notices\/2015\/11\/les_entitats_sobiranistes_demanen_un_nou_govern_que_comenci_aviat_a_aplicar_la_resolucio_153176.php#.VkCwXCDVh9M.twitter","display_url":"mon.cat\/cat\/notices\/20\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379251200,"id_str":"663727871379251200","text":"\u041d\u0430\u0441\u0442\u043e\u044f\u0449\u0430\u044f \u0441\u043a\u0430\u0437\u043a\u0430 \u043d\u0435 \u043a\u043e\u043d\u0447\u0430\u0435\u0442\u0441\u044f \u043d\u0438\u043a\u043e\u0433\u0434\u0430, \u043e\u043d\u0430 \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0438\u0442 \u0438\u0437 \u043e\u0434\u043d\u043e\u0439 \u0432 \u0434\u0440\u0443\u0433\u0443\u044e.\ud83c\udf42\ud83c\udf41 https:\/\/t.co\/nogjtwT5PJ","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444529035,"id_str":"444529035","name":"\u042e\u043b\u0438\u044f \u041c\u0435\u0437\u0438\u043d\u0430","screen_name":"mezinayuliya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":91,"listed_count":0,"favourites_count":0,"statuses_count":344,"created_at":"Fri Dec 23 10:40:17 +0000 2011","utc_offset":7200,"time_zone":"Kiev","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nogjtwT5PJ","expanded_url":"https:\/\/instagram.com\/p\/93iWlctbkV\/","display_url":"instagram.com\/p\/93iWlctbkV\/","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871396061184,"id_str":"663727871396061184","text":"Crying bc I'm not in bed with my cats rn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1129297794,"id_str":"1129297794","name":"Jamie Salings","screen_name":"jamie_salings","location":"brown-town","url":null,"description":"western kentucky university :)","protected":false,"verified":false,"followers_count":579,"friends_count":402,"listed_count":0,"favourites_count":6582,"statuses_count":7080,"created_at":"Mon Jan 28 21:49:41 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/792556764\/523c66418191362314e53412a3e1b306.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/792556764\/523c66418191362314e53412a3e1b306.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663546704730447873\/R1pmyHeg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663546704730447873\/R1pmyHeg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1129297794\/1447036924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080030665"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383482369,"id_str":"663727871383482369","text":"Alt\u0131n fiyatlar\u0131 ne kadar \u00e7eyrek alt\u0131n ka\u00e7 lira 9 Kas\u0131m 2015 fiyatlar\u0131 \u007binternethaber\u007d https:\/\/t.co\/CWNvUJ4oBo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4058986692,"id_str":"4058986692","name":"cody carter","screen_name":"codycarter671","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":40,"listed_count":15,"favourites_count":0,"statuses_count":19796,"created_at":"Thu Oct 29 15:51:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659760259003584513\/FXp5MSz2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659760259003584513\/FXp5MSz2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CWNvUJ4oBo","expanded_url":"http:\/\/bit.ly\/1W7F7X4","display_url":"bit.ly\/1W7F7X4","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080030662"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871362506752,"id_str":"663727871362506752","text":"@ChennoufSalah y'a khi halla. T'es partout","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4137610713,"in_reply_to_user_id_str":"4137610713","in_reply_to_screen_name":"ChennoufSalah","user":{"id":3513090917,"id_str":"3513090917","name":"Ahmed Chennouf","screen_name":"ahmed_chennouf","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":53,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Tue Sep 01 13:53:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChennoufSalah","name":"salah chennouf","id":4137610713,"id_str":"4137610713","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080030657"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871375122432,"id_str":"663727871375122432","text":"Mznx@znxnZj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3828988767,"id_str":"3828988767","name":"iiJskanskskx","screen_name":"hmtroxa_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1359,"friends_count":0,"listed_count":0,"favourites_count":3336,"statuses_count":470,"created_at":"Thu Oct 01 01:09:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726601746694144\/3liJq2pu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726601746694144\/3liJq2pu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080030660"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871395934209,"id_str":"663727871395934209","text":"RT @MEGAneko_koebu: \u3010\u62e1\u6563\u5e0c\u671b\u3011\n\n\u30ea\u30ea\u30a4\u30d9\u5927\u962a\u306e\uff11\u90e8\u306e\u512a\u5148\u30a8\u30ea\u30a2\u5238\n\n\u3010\u6c42\u3011500\u756a\u4ee3\u524d\u534a\n\u3010\u8b72\u3011100\u756a\u4ee3\u524d\u534a\n\n\u53cb\u9054\u3068\u96e2\u308c\u3066\u3057\u307e\u3063\u305f\u306e\u3067\u3069\u306a\u305f\u304b\u4ea4\u63db\u3057\u3066\u6b32\u3057\u3044\u3067\u3059\u2026\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3201193370,"id_str":"3201193370","name":"\u308f\u304b\u306a\uff20\u30ea\u30ea\u30a4\u30d9\u306f\u884c\u3051\u306a\u3044","screen_name":"wkna_ars","location":"\u6771\u4eac\u30e1\u30a4\u30c8","url":null,"description":"\u30e1\u30a4\u30c8\u57a2 20\u2191 \u594f\u304f\u3093\u5bc4\u308a\u7bb1\u63a8\u3057 \u307e\u3060\u307e\u3060\u65b0\u7c73\u03b1\u30e1\u30a4\u30c8\n\u3000\u51fa\u5e2d\u756a\u53f7\u306f\uff17\u756a\u3000\u53c2\u52a0\u4e88\u5b9a\uff1a\u30af\u30ea\u30af\u30e9\/\u30cb\u30b3\u30ab\u30d5\u30a7\u30a2\u30eb\u30b9\u30b3\u30e9\u30dc\/\u65b0\u6f5fLOTS\/\u8fce\u6625\u796d\u3000\u3000\u51fa\u4f1a\u3044\u53a8\u3057\u307e\u3059\u2570(\u273f\u00b4\u2323`\u273f)\u256f\u2661","protected":false,"verified":false,"followers_count":82,"friends_count":89,"listed_count":7,"favourites_count":586,"statuses_count":3362,"created_at":"Sun May 17 11:01:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599896926511763456\/hKgwPB4-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599896926511763456\/hKgwPB4-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3201193370\/1446993198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:23 +0000 2015","id":663725575136133121,"id_str":"663725575136133121","text":"\u3010\u62e1\u6563\u5e0c\u671b\u3011\n\n\u30ea\u30ea\u30a4\u30d9\u5927\u962a\u306e\uff11\u90e8\u306e\u512a\u5148\u30a8\u30ea\u30a2\u5238\n\n\u3010\u6c42\u3011500\u756a\u4ee3\u524d\u534a\n\u3010\u8b72\u3011100\u756a\u4ee3\u524d\u534a\n\n\u53cb\u9054\u3068\u96e2\u308c\u3066\u3057\u307e\u3063\u305f\u306e\u3067\u3069\u306a\u305f\u304b\u4ea4\u63db\u3057\u3066\u6b32\u3057\u3044\u3067\u3059\u2026\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2739164862,"id_str":"2739164862","name":"\u30e1\u30ac\u732b@\u3053\u3048\u90e8&nana","screen_name":"MEGAneko_koebu","location":"\u3053\u3048\u90e8&nana\u306e\u5965\u306e\u65b9","url":"http:\/\/hibari.nana-music.com\/w\/profile\/765809\/","description":"\u3053\u3048\u90e8\u3068nana\u3067\u6b4c\u3084\u30bb\u30ea\u30d5\u306a\u3069\u3092\u3042\u3052\u3066\u3044\u307e\u3059\uff01\uff01\u30a2\u30eb\u30b9\u30e1\u30a4\u30c8\u3067\u3059\uff01\uff01\u591c\u7a7a\u7d44\u5bc4\u308a\u306e\u7bb1\u63a8\u3057\u3067\u3059\uff01\uff01\uff01\u30a2\u30eb\u30b9\u306e\u30a2\u30eb\u30d0\u30e0\u306e\u30ea\u30ea\u30a4\u30d9\u5927\u962a\u53c2\u6226\uff01\uff01\u8fce\u6625\u796d\u884c\u304f\u304b\u3082\uff01\uff01\u624b\u4e0b\u57a2\u2192@tesitesitesita \u30b3\u30b9\u57a2\u3082\u3042\u308a\u307e\u3059\uff01\uff01\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\u30ea\u30d7\u304f\u3060\u3055\u3044\uff01\uff01","protected":false,"verified":false,"followers_count":682,"friends_count":692,"listed_count":42,"favourites_count":10503,"statuses_count":31344,"created_at":"Sun Aug 17 06:57:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557404215073456129\/Z2GuSR4d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557404215073456129\/Z2GuSR4d.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642380634485231620\/JFx1KLai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642380634485231620\/JFx1KLai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2739164862\/1444557878","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MEGAneko_koebu","name":"\u30e1\u30ac\u732b@\u3053\u3048\u90e8&nana","id":2739164862,"id_str":"2739164862","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030665"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871362334720,"id_str":"663727871362334720","text":"@yjzzang53 \ud5c9\u31318\u31418!!1... \uaf2d\u3131..\uaf2d \uac19\uc774 \ub6f0\uc5b4\ubd10\uc694!! \uc81c\uac00 \ubbfc\ud3d0\ub369\uc5b4\ub9ac \ucd94\ub9ac\uace0\uc790\ub77c \u314e.\u314e.\ud6c4\u315c\u3161\u3160..\uc9d0\ub369\uc5b4\ub9ac ..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727497461133313,"in_reply_to_status_id_str":"663727497461133313","in_reply_to_user_id":2999259240,"in_reply_to_user_id_str":"2999259240","in_reply_to_screen_name":"yjzzang53","user":{"id":3039131941,"id_str":"3039131941","name":"\uae30\ubabd","screen_name":"devote_00","location":null,"url":null,"description":"\ubab9\uc2f8\/\uc564\uce90","protected":false,"verified":false,"followers_count":47,"friends_count":45,"listed_count":0,"favourites_count":127,"statuses_count":148,"created_at":"Tue Feb 24 08:25:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652911779442356224\/HR7FiZ1I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652911779442356224\/HR7FiZ1I_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yjzzang53","name":"\u25b6\uac80\ucc9c\u25c0","id":2999259240,"id_str":"2999259240","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080030657"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871400144896,"id_str":"663727871400144896","text":"@pamidare \n\n\u306b\u306a\u3055\u3093\uff01\u304a\u795d\u3044\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\ud83d\ude2d\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3082\u3089\u3044\u307e\u3057\u305f\uff01\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u0669( \u141b )( \u1416 )\u06f6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662929713489293312,"in_reply_to_status_id_str":"662929713489293312","in_reply_to_user_id":2436469465,"in_reply_to_user_id_str":"2436469465","in_reply_to_screen_name":"pamidare","user":{"id":2942009250,"id_str":"2942009250","name":"\u306a\u308b\u307f\u306f\u4e2d\u56fd\u8a9e\u3067\uff81\uff6e\uff9d\uff92\uff72\u3089\u3057\u3044\u3088\u3002","screen_name":"to_rakun","location":"\u3068\u3089\u304f\u3093\u306e\u5de6\u96a3\u3002","url":null,"description":"\u3048\uff1f\u3060\u308c\u3063\u3066\uff1f\uff81\uff6e\uff9d\uff92\uff72\u3067\u3059\uff01\uff01\u3044\u3064\u3082\u3042\u308a\u304c\u3068\u3046\u306e\u731b\u7363\u3055\u3093\u261e\u2729\u300a@to_ra_law\u300b\u2729 \uff82\uff72\uff8c\uff9f\uff9b\u261ehttp:\/\/twpf.jp\/to_rakun","protected":false,"verified":false,"followers_count":462,"friends_count":383,"listed_count":58,"favourites_count":4645,"statuses_count":16703,"created_at":"Wed Dec 24 15:42:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661840353956249600\/EjeexD8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661840353956249600\/EjeexD8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2942009250\/1445406516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pamidare","name":"\u306b\u306a@\u6c96\u7e04\u4f59\u97fb","id":2436469465,"id_str":"2436469465","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030666"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366574080,"id_str":"663727871366574080","text":"Allah akan mengangkat derajat orang yg memberi maaf kepada orang lain. (HR.Muslim)","source":"\u003ca href=\"http:\/\/fti-official.com\" rel=\"nofollow\"\u003eFTI-Official Team\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329837238,"id_str":"3329837238","name":"Tweps Remaja","screen_name":"TwepsRemaja","location":"Indonesia","url":null,"description":"Official Of account @DEVILfiberz I Remajakan duniamu, Hidupkan masa depanmu, Just it'S Funly | PIN: 56FE42A1","protected":false,"verified":false,"followers_count":341,"friends_count":261,"listed_count":9,"favourites_count":5,"statuses_count":138914,"created_at":"Mon Aug 24 20:26:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636079595226312704\/FiY7Fr2L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636079595226312704\/FiY7Fr2L_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080030658"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383367686,"id_str":"663727871383367686","text":"RT @tkplus: \u0e40\u0e2d\u0e49\u0e32 \u0e2d\u0e35\u0e01\u0e04\u0e19\u0e01\u0e47\u0e27\u0e48\u0e32\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e41\u0e2e\u0e0a\u0e0a\u0e0a\u0e41\u0e17\u0e47\u0e01 #EXO \u0e01\u0e47\u0e44\u0e14\u0e49 \u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27 \u0e44\u0e21\u0e48\u0e19\u0e31\u0e1a\u0e04\u0e30\u0e41\u0e19\u0e19 #CALLMEBABY \u0e22\u0e31\u0e07\u0e44\u0e07\u0e46\u0e46\u0e46 =_= \u0e40\u0e2d\u0e32\u0e14\u0e35 #MAMA2015 \u0e07\u0e07\u0e19\u0e30\u0e08\u0e4a\u0e30\u0e15\u0e31\u0e27\u0e40\u0e18\u0e2d \u0e1a\u0e2d\u0e01\u0e40\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3041176950,"id_str":"3041176950","name":"CONIE\u2661","screen_name":"_shcbm","location":"6104x8894\u2605","url":null,"description":"\uff62 SEHUN \uff63 \u2020 KIMJONGIN \u2020 \u2661 @yu_gyeom @GOTYJ_Ars_Vita | \uc774\uc2ac\uae30 RVV (\u2741\u4edd\u2741)","protected":false,"verified":false,"followers_count":479,"friends_count":589,"listed_count":0,"favourites_count":1886,"statuses_count":48749,"created_at":"Wed Feb 25 11:47:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645531333641441280\/n6MLhmFJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645531333641441280\/n6MLhmFJ.jpg","profile_background_tile":true,"profile_link_color":"DA70D6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703699370328064\/kiT1BgYA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703699370328064\/kiT1BgYA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3041176950\/1447074310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:30 +0000 2015","id":663726612249079809,"id_str":"663726612249079809","text":"\u0e40\u0e2d\u0e49\u0e32 \u0e2d\u0e35\u0e01\u0e04\u0e19\u0e01\u0e47\u0e27\u0e48\u0e32\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e41\u0e2e\u0e0a\u0e0a\u0e0a\u0e41\u0e17\u0e47\u0e01 #EXO \u0e01\u0e47\u0e44\u0e14\u0e49 \u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27 \u0e44\u0e21\u0e48\u0e19\u0e31\u0e1a\u0e04\u0e30\u0e41\u0e19\u0e19 #CALLMEBABY \u0e22\u0e31\u0e07\u0e44\u0e07\u0e46\u0e46\u0e46 =_= \u0e40\u0e2d\u0e32\u0e14\u0e35 #MAMA2015 \u0e07\u0e07\u0e19\u0e30\u0e08\u0e4a\u0e30\u0e15\u0e31\u0e27\u0e40\u0e18\u0e2d \u0e1a\u0e2d\u0e01\u0e40\u0e25\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725886185730050,"in_reply_to_status_id_str":"663725886185730050","in_reply_to_user_id":62822307,"in_reply_to_user_id_str":"62822307","in_reply_to_screen_name":"tkplus","user":{"id":62822307,"id_str":"62822307","name":"g9h\u2664","screen_name":"tkplus","location":" \ub0b4 \uce68\ub300 \uc704\u2661","url":null,"description":"\u25cb \ud0dc\ubbfc\uaddc - \ud55c\uad6d\ub9d0\ud558\ub294 \ud0dc\uad6d\uc778. \n\n\u25cb eng\/\ud55c\uad6d\uc5b4\/\u0e44\u0e17\u0e22\n\n\u25cb \u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e41\u0e1f\u0e19\u0e40\u0e1a\u0e2a \u0e44\u0e21\u0e48\u0e17\u0e33\u0e15\u0e32\u0e21\u0e43\u0e08\u0e43\u0e04\u0e23 \u0e2d\u0e22\u0e32\u0e01\u0e23\u0e39\u0e49\u0e27\u0e48\u0e32\u0e41\u0e1b\u0e25\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e32\u0e01\u0e47\u0e14\u0e39\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e23\u0e35\u0e44\u0e1b\u0e40\u0e19\u0e32\u0e30 \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e1e\u0e39\u0e14\u0e25\u0e2d\u0e22\u0e46 \u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e21\u0e48\u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e44\u0e21\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e40\u0e23\u0e32 \u0e40\u0e04\u0e23\u0e19\u0e30","protected":false,"verified":false,"followers_count":10837,"friends_count":687,"listed_count":57,"favourites_count":2635,"statuses_count":132372,"created_at":"Tue Aug 04 13:49:11 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC9F2D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"FA6D20","profile_sidebar_border_color":"FF9900","profile_sidebar_fill_color":"FFC061","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650197371251326976\/kKAfjWCd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650197371251326976\/kKAfjWCd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62822307\/1430897871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[32,36]},{"text":"CALLMEBABY","indices":[68,79]},{"text":"MAMA2015","indices":[99,108]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[44,48]},{"text":"CALLMEBABY","indices":[80,91]},{"text":"MAMA2015","indices":[111,120]}],"urls":[],"user_mentions":[{"screen_name":"tkplus","name":"g9h\u2664","id":62822307,"id_str":"62822307","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080030662"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366594560,"id_str":"663727871366594560","text":"RT @livialoisia: \u3010\u885d\u6483\u901f\u5831\uff01\u3011Hey! Say! JUMP!\u300e\u5c71\u7530\u6dbc\u4ecb\u300f\u3068\u3001\u3082\u3082\u30af\u30ed\u9ec4\u8272\u300e\u7389\u4e95\u8a69\u7e54\u300f\u306e\u71b1\u611b\u767a\u899a\u3067\u5927\u708e\u4e0a\uff01\uff01\u3053\u308c\u30b7\u30e7\u30c3\u30af\u3059\u304e\u3060\u308d... (\u203b\u8a73\u7d30\u3042\u308a)\nhttps:\/\/t.co\/WI7itKzJ4b https:\/\/t.co\/IC9uJ1ynd8","source":"\u003ca href=\"https:\/\/twitter.com\/IngramPetra\" rel=\"nofollow\"\u003etttt0002\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3177243710,"id_str":"3177243710","name":"\u4eca\u65e5\u3082\u3042\u306a\u305f\u3068\u30e9\u30d6\u30e9\u30a4\u30d6\u266a(\u00b4\u03b5\uff40 )\u2661","screen_name":"mauriziobelash","location":null,"url":null,"description":"\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3057\u3066\u307e\u3059\uff01\u30e9\u30d6\u30e9\u30a4\u30d6\u597d\u304d\u3059\u304e\u3066\u3084\u3070\u3043\u3043\u3043\u3044( *\uff40\u03c9\u00b4)\u2661\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u306f\u307f\u3093\u306a\u53cb\u9054\u2661\u306a\u304b\u3088\u304f\u306a\u308a\u307e\u3057\u3087\u3046\u3063\u3063\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":1184,"friends_count":949,"listed_count":5,"favourites_count":0,"statuses_count":100,"created_at":"Mon Apr 27 01:20:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630028168410181632\/Xx07yyhK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630028168410181632\/Xx07yyhK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3177243710\/1439045366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727754253217793,"id_str":"663727754253217793","text":"\u3010\u885d\u6483\u901f\u5831\uff01\u3011Hey! Say! JUMP!\u300e\u5c71\u7530\u6dbc\u4ecb\u300f\u3068\u3001\u3082\u3082\u30af\u30ed\u9ec4\u8272\u300e\u7389\u4e95\u8a69\u7e54\u300f\u306e\u71b1\u611b\u767a\u899a\u3067\u5927\u708e\u4e0a\uff01\uff01\u3053\u308c\u30b7\u30e7\u30c3\u30af\u3059\u304e\u3060\u308d... (\u203b\u8a73\u7d30\u3042\u308a)\nhttps:\/\/t.co\/WI7itKzJ4b https:\/\/t.co\/IC9uJ1ynd8","source":"\u003ca href=\"https:\/\/twitter.com\/InaDebra\" rel=\"nofollow\"\u003eTTTT0009\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3208949356,"id_str":"3208949356","name":"\u3044\u3044\u306d\uff01\u306f\u4e16\u754c\u3092\u6551\u3046","screen_name":"livialoisia","location":null,"url":null,"description":"\u2728\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%\u2728\u30cd\u30c3\u30c8\u3067\u8a71\u984c\u306e\u53b3\u9078\u30cb\u30e5\u30fc\u30b9\u3092\u30ac\u30f3\u30ac\u30f3\u6295\u4e0b\uff01\uff01 \u601d\u308f\u305a\u8ab0\u304b\u306b\u8a71\u3057\u305f\u304f\u306a\u308b\u3088\u3046\u306a\u6700\u65b0\u306e\u88cf\u60c5\u5831\u3092\u3010\u901f\u5831\u3011\u3067\u304a\u5c4a\u3051\u3057\u3066\u3044\u307e\u3059\u2606 \u30c8\u30ec\u30f3\u30c9\u306f\u304a\u4efb\u305b\u266a\u30ea\u30c4\u30a4\u30fc\u30c8\u5927\u6b53\u8fce\u2728\u6687\u3064\u3076\u3057\u306b\u3069\u3046\u305e\u301c","protected":false,"verified":false,"followers_count":388,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":64,"created_at":"Sun Apr 26 19:01:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637899530424356864\/jHEYL1Xb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637899530424356864\/jHEYL1Xb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3208949356\/1440922085","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WI7itKzJ4b","expanded_url":"http:\/\/goo.gl\/TcJHoA","display_url":"goo.gl\/TcJHoA","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WI7itKzJ4b","expanded_url":"http:\/\/goo.gl\/TcJHoA","display_url":"goo.gl\/TcJHoA","indices":[92,115]}],"user_mentions":[{"screen_name":"livialoisia","name":"\u3044\u3044\u306d\uff01\u306f\u4e16\u754c\u3092\u6551\u3046","id":3208949356,"id_str":"3208949356","indices":[3,15]}],"symbols":[],"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727754253217793,"source_status_id_str":"663727754253217793","source_user_id":3208949356,"source_user_id_str":"3208949356"}]},"extended_entities":{"media":[{"id":663727754039332864,"id_str":"663727754039332864","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4C8VEAAAqdz.png","url":"https:\/\/t.co\/IC9uJ1ynd8","display_url":"pic.twitter.com\/IC9uJ1ynd8","expanded_url":"http:\/\/twitter.com\/livialoisia\/status\/663727754253217793\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":638,"h":333,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727754253217793,"source_status_id_str":"663727754253217793","source_user_id":3208949356,"source_user_id_str":"3208949356"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030658"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871375077376,"id_str":"663727871375077376","text":"@biztvshows https:\/\/t.co\/XlU6OrRsV1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":364412529,"in_reply_to_user_id_str":"364412529","in_reply_to_screen_name":"BizTVShows","user":{"id":159344923,"id_str":"159344923","name":"Shayne Leith","screen_name":"leithal89","location":"Ontario, Canada","url":null,"description":"Port Dover Sailors Goalie Coach\/ Trainer. Habs fan. tendy for life.. KCCO","protected":false,"verified":false,"followers_count":72,"friends_count":333,"listed_count":1,"favourites_count":132,"statuses_count":395,"created_at":"Fri Jun 25 03:37:56 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634536947705364480\/zDifziNo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634536947705364480\/zDifziNo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159344923\/1436836825","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XlU6OrRsV1","expanded_url":"http:\/\/bit.ly\/1WH1IGr?59850jcjnuku","display_url":"bit.ly\/1WH1IGr?59850j\u2026","indices":[12,35]}],"user_mentions":[{"screen_name":"BizTVShows","name":"BizTV Shows","id":364412529,"id_str":"364412529","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080030660"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383355393,"id_str":"663727871383355393","text":"@teto31sosipero \u304a\u3084\u3059\u307f\u306a\u3055\u3044\uff1f","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727828328841216,"in_reply_to_status_id_str":"663727828328841216","in_reply_to_user_id":3083735659,"in_reply_to_user_id_str":"3083735659","in_reply_to_screen_name":"teto31sosipero","user":{"id":139973377,"id_str":"139973377","name":"\u9593\u85e4\u3000\u30d2\u30ed\u30b7\uff20\u629c\u3051\u6bbb\u306a\u3046","screen_name":"aeroace","location":"\u3046\u3069\u3093\u770c","url":"http:\/\/www.nicovideo.jp\/user\/7684493","description":"\u30cb\u30b3\u30cb\u30b3\u306b\u51fa\u4f1a\u3063\u3066\u7d04\u516b\u5e74\u3002 \u4eca\u3067\u306f\u7acb\u6d3e\u306a\u793e\u58ca\u4eba\uff57 \u30dc\u30ab\u30de\u30b9\u30af\u30e9\u30b9\u30bf\u597d\u304d\u304c\u9ad8\u3058\u3066\u59cb\u3081\u305f\u751f\u4e3b\u306f\u6700\u8fd1\u306f\u4f11\u696d\u72b6\u614b\u3002 \u6700\u8fd1\u306f\u63d0\u7763\u696d\u3068\u5be9\u795e\u8005\u304c\u30e1\u30a4\u30f3\u3002 \u9060\u5f81\u306b\u884c\u304d\u305f\u3044\u3051\u3069\u5148\u7acb\u3064\u3082\u306e\u3068\u6642\u9593\u304c\u2026\u3042\u3001LINE\u306f\u3058\u3081\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":1231,"friends_count":1207,"listed_count":97,"favourites_count":4257,"statuses_count":285995,"created_at":"Tue May 04 05:54:39 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548132512036179971\/Xpo8dj-Z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548132512036179971\/Xpo8dj-Z_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teto31sosipero","name":"\u306a\u307d\u30fc\u25a1(\u25a1\u2190\u89d2\u7802\u7cd6)","id":3083735659,"id_str":"3083735659","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030662"} +{"delete":{"status":{"id":662634315667259394,"id_str":"662634315667259394","user_id":4123822632,"user_id_str":"4123822632"},"timestamp_ms":"1447080030734"}} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871387529217,"id_str":"663727871387529217","text":"@xxnamjac yabisa lah. Abang ga nyuruh somi nangia kan?\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727362849177601,"in_reply_to_status_id_str":"663727362849177601","in_reply_to_user_id":2277882140,"in_reply_to_user_id_str":"2277882140","in_reply_to_screen_name":"xxnamjac","user":{"id":3220525723,"id_str":"3220525723","name":"hyeju.","screen_name":"hyejujjang","location":"abang's \u2764","url":"https:\/\/instagram.com\/r_yuhyeju\/","description":"Uljang Ryu Hyeju \u00a91991 uri healereu\u007b\u007d xxnamjac\u2661\u2661 favor;anu;kfcrp;91s","protected":false,"verified":false,"followers_count":2079,"friends_count":1992,"listed_count":3,"favourites_count":398,"statuses_count":24902,"created_at":"Tue May 19 15:21:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662278272135262208\/6pj9XKSq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662278272135262208\/6pj9XKSq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220525723\/1446876117","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xxnamjac","name":"abang","id":2277882140,"id_str":"2277882140","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080030663"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871370760192,"id_str":"663727871370760192","text":"@starsky_xo \u3042\u3042\u3001\u304a\u3084\u3059\u307f\uff01\u3044\u3044\u5922\u304c\u898b\u3089\u308c\u308b\u3068\u3044\u3044\u306a\u3002\u306a\u3093\u306a\u3089\u5922\u306b\u51fa\u3066\u3084\u308d\u3046\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/soya_sl\" rel=\"nofollow\"\u003e\u8fb0\u539f\u594f\u77e2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727811346063360,"in_reply_to_status_id_str":"663727811346063360","in_reply_to_user_id":734218717,"in_reply_to_user_id_str":"734218717","in_reply_to_screen_name":"starsky_xo","user":{"id":955497781,"id_str":"955497781","name":"\u8fb0\u539f\u594f\u77e2","screen_name":"Soya_SL","location":null,"url":null,"description":"Storm Lover\u306b\u767b\u5834\u3059\u308b\u8fb0\u539f\u594f\u77e2\u306e\u975e\u516c\u5f0f\u30d5\u30a1\u30f3bot\u3067\u3059\u3002\u4f5c\u6210\u8005\u306e\u81ea\u5df1\u6e80\u4ed5\u69d8\u3002\u203b\u73fe\u5728\u6e96\u5099\u4e2d\u3002\u30cd\u30bf\u30d0\u30ec\u3001TL\u53cd\u5fdc\u6709\u308a\u3002\u4e3b\u306b\u5feb!!\u3068\u590f\u604b\u304b\u3089\u5f15\u7528\u3002\u30ea\u30d5\u30a9\u30ed\u30fc\u306f\u624b\u52d5\u3067\u3001\u30b9\u30c8\u30e9\u30d0\u304c\u597d\u304d\u3060\u3068\u308f\u304b\u308b\u65b9\u306b\u306e\u307f\u884c\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":380,"friends_count":333,"listed_count":5,"favourites_count":0,"statuses_count":51675,"created_at":"Sun Nov 18 13:27:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034408195682\/b27637dfee0cb5e921c1e1e0de05acee.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034408195682\/b27637dfee0cb5e921c1e1e0de05acee.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509671172288421888\/zoJw9JzF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509671172288421888\/zoJw9JzF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955497781\/1403503179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"starsky_xo","name":"\u661f\u6708 \u821e","id":734218717,"id_str":"734218717","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030659"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383367681,"id_str":"663727871383367681","text":"RT @takataka_land: \u3010\u7537\u5973\u5e73\u7b49\u306e\u73fe\u5b9f\u554f\u984c\u3011\n\u7537\u5973\u5e73\u7b49\u3001\u6a5f\u4f1a\u5747\u7b49\u3067\u3001\u5973\u6027\u81ea\u885b\u5b98\uff08\u5175\u58eb\uff09\u306e\u7acb\u5834\u304c\u3001\u5e73\u7b49\u306a\u306e\u304b\uff1f\n\u6226\u5730\u3067\u306f\u3001\u98a8\u5442\u306b\u5165\u308c\u306a\u3044\u3001\u751f\u7406\u4f11\u6687\u304c\u53d6\u308c\u306a\u3044\u3001\u6355\u865c\u306b\u306a\u3063\u305f\u5834\u5408\u3002\n\u65e5\u672c\u4eba\u304c\u5f53\u305f\u308a\u524d\u306b\u8003\u616e\u3059\u308b\u3068\u5e73\u7b49\u3068\u306f\u884c\u304b\u306a\u3044\u3002\n\u5dee\u5225\u3084\u6975\u8ad6\u3067\u306f\u306a\u304f\u3001\u6027\u5dee\u3084\u7279\u6027\u306f\u3001\u6442\u7406\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184784291,"id_str":"184784291","name":"Chance8","screen_name":"HappyBob88","location":"Japan","url":null,"description":"I love you and I hope to see you. \u96e2\u5a5a\u3057\u3066\u3082\u5b50\u4f9b\u3078\u306e\u300c\u611b\u60c5\u3068\u990a\u80b2\u300d\u306f\u5909\u308f\u3089\u305a\u5927\u5207\u306a\u306e\u306b\u2026\u300c\u5b50\u80b2\u3066\u4ea4\u6d41\u300d\u3092\u963b\u5bb3\u3059\u308b\u884c\u70ba\u306f\u4f55\u6545\u8d77\u304d\u308b\u306e\u304b\uff1f\u305d\u3053\u306b\u306f\u3001\u5fc3\u306e\u306a\u3044\u5f01\u8b77\u58eb\u3084\u6d3b\u52d5\u56e3\u4f53\u306e\u5b58\u5728\u3068\u96e2\u5a5a\u30d3\u30b8\u30cd\u30b9\u304c\u3042\u3063\u305f\u3002\u5b50\u306e\u9023\u308c\u53bb\u308a\u61f2\u7f70\u5316\/\u5171\u540c\u990a\u80b2\u30fb\u9762\u4f1a\u4ea4\u6d41\u306e\u7fa9\u52d9\u5316\u3092\u9858\u3046\u3002\u89aa\u5b50\u4ea4\u6d41\u65ad\u7136\u9632\u6b62\u6cd5\u5236\u5b9a\u306b\u8cdb\u540c","protected":false,"verified":false,"followers_count":1902,"friends_count":1804,"listed_count":44,"favourites_count":375,"statuses_count":27644,"created_at":"Mon Aug 30 13:46:51 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423613353299169280\/y-9qi4g2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423613353299169280\/y-9qi4g2_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:57:02 +0000 2015","id":663581037830627328,"id_str":"663581037830627328","text":"\u3010\u7537\u5973\u5e73\u7b49\u306e\u73fe\u5b9f\u554f\u984c\u3011\n\u7537\u5973\u5e73\u7b49\u3001\u6a5f\u4f1a\u5747\u7b49\u3067\u3001\u5973\u6027\u81ea\u885b\u5b98\uff08\u5175\u58eb\uff09\u306e\u7acb\u5834\u304c\u3001\u5e73\u7b49\u306a\u306e\u304b\uff1f\n\u6226\u5730\u3067\u306f\u3001\u98a8\u5442\u306b\u5165\u308c\u306a\u3044\u3001\u751f\u7406\u4f11\u6687\u304c\u53d6\u308c\u306a\u3044\u3001\u6355\u865c\u306b\u306a\u3063\u305f\u5834\u5408\u3002\n\u65e5\u672c\u4eba\u304c\u5f53\u305f\u308a\u524d\u306b\u8003\u616e\u3059\u308b\u3068\u5e73\u7b49\u3068\u306f\u884c\u304b\u306a\u3044\u3002\n\u5dee\u5225\u3084\u6975\u8ad6\u3067\u306f\u306a\u304f\u3001\u6027\u5dee\u3084\u7279\u6027\u306f\u3001\u6442\u7406\u3067\u3042\u308a\u3001\u4eba\u3068\u3057\u3066\u8a8d\u3081\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100852055,"id_str":"100852055","name":"Takayuki Suzuki\u3000\u9234\u6728\u9686\u884c","screen_name":"takataka_land","location":null,"url":null,"description":"\u65e5\u672c\u56fd\u306e\u4f1d\u7d71\u3068\u6587\u5316\u306e\u5927\u5207\u3055\u3092\u8003\u3048\u3066\u3044\u307e\u3059\u3002\u53f8\u6cd5\u5b98\u61b2\u4e0d\u6b63\u3084\u5728\u65e5\u7d44\u7e54\u3084\u5de6\u7ffc\u306e\u5b9f\u614b\u306f\u5b9f\u969b\u306e\u7d4c\u9a13\u304b\u3089\u8a9e\u308a\u307e\u3059\u3002\u82e5\u8005\u306e\u5584\u610f\u3092\u4eba\u6a29\u3001\u5e73\u548c\u3001\u5e73\u7b49\u306e\u8a6d\u5f01\u3067\u5f04\u3076\u5de6\u7ffc\u306e\u624b\u304b\u3089\u5b88\u308a\u305f\u3044\u3002\u4eba\u6a29\u554f\u984c\u7814\u7a76\u5bb6\u3068\u3057\u3066\u30c1\u30e3\u30f3\u30cd\u30eb\u685c\u51fa\u6f14\u3002\u65e5\u672c\u306e\u767a\u5c55\u3092\u62c5\u3046\u3001\u82e5\u8005\u306e\u30d5\u30a9\u30ed\u30fc\u3092\u5e83\u304f\u671f\u5f85\u3057\u307e\u3059\u3002\u81ea\u8650\u53f2\u89b3\u3092\u6368\u3066\u3001\u6b63\u3057\u3044\u6b74\u53f2\u89b3\u3001\u56fd\u5bb6\u89b3\u3092\u53d6\u308a\u623b\u3057\u307e\u3057\u3087\u3046\u3002","protected":false,"verified":false,"followers_count":12444,"friends_count":5724,"listed_count":483,"favourites_count":8,"statuses_count":36359,"created_at":"Thu Dec 31 22:01:58 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2873319504\/a1e6d0ea5fa4c0e32f1b5a3ca7dce6fb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2873319504\/a1e6d0ea5fa4c0e32f1b5a3ca7dce6fb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takataka_land","name":"Takayuki Suzuki\u3000\u9234\u6728\u9686\u884c","id":100852055,"id_str":"100852055","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030662"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366529024,"id_str":"663727871366529024","text":"RT @Gusxyien_: ' \u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e18\u0e2d..\u0e40\u0e23\u0e32\u0e01\u0e47\u0e2b\u0e27\u0e07\u0e2b\u0e21\u0e14\u0e41\u0e2b\u0e25\u0e30 '\n\n#\u0e2d\u0e22\u0e32\u0e01\u0e1a\u0e2d\u0e01\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e04\u0e19\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3036374946,"id_str":"3036374946","name":"\u0e1a\u0e31\u0e4b\u0e21 (\u0e1a\u0e2d\u0e17\u0e17\u0e33\u0e42\u0e1b\u0e23\u0e40\u0e08\u0e04)","screen_name":"heydayxbam","location":" #heydays \u2500 \u0e2b\u0e25\u0e48\u0e2d\u0e16\u0e25\u0e48\u0e21\u0e17line","url":null,"description":"\/ \/ \u0e19\u0e49\u0e2d\u0e07\u0e1a\u0e31\u0e4b\u0e21\u0e04\u0e19\u0e40\u0e14\u0e34\u0e21 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e04\u0e37\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \/ \/","protected":false,"verified":false,"followers_count":578,"friends_count":265,"listed_count":2,"favourites_count":63,"statuses_count":24118,"created_at":"Sun Feb 22 12:25:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F6FFB3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569490931330453504\/J9WPVPc9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569490931330453504\/J9WPVPc9.jpeg","profile_background_tile":true,"profile_link_color":"F0DEDC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659028837880102912\/Mg0k_nTP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659028837880102912\/Mg0k_nTP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3036374946\/1444124048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:43 +0000 2015","id":663720880690757632,"id_str":"663720880690757632","text":"' \u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e18\u0e2d..\u0e40\u0e23\u0e32\u0e01\u0e47\u0e2b\u0e27\u0e07\u0e2b\u0e21\u0e14\u0e41\u0e2b\u0e25\u0e30 '\n\n#\u0e2d\u0e22\u0e32\u0e01\u0e1a\u0e2d\u0e01\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e04\u0e19\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886925044,"id_str":"2886925044","name":"YI'EN\u2661","screen_name":"Gusxyien_","location":"\u0e22\u0e31\u0e22\u0e41\u0e1b\u0e4a\u0e30\u0e1a\u0e35\u0e4b \u2661","url":null,"description":"' just you, all i want. ' #STARTALEs","protected":false,"verified":false,"followers_count":1099,"friends_count":139,"listed_count":0,"favourites_count":931,"statuses_count":108430,"created_at":"Sun Nov 02 03:50:33 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368626695573505\/GzB8dzHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368626695573505\/GzB8dzHs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886925044\/1446984781","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[{"text":"\u0e2d\u0e22\u0e32\u0e01\u0e1a\u0e2d\u0e01\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e04\u0e19\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15","indices":[41,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2d\u0e22\u0e32\u0e01\u0e1a\u0e2d\u0e01\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e31\u0e1a\u0e04\u0e19\u0e43\u0e19\u0e2d\u0e19\u0e32\u0e04\u0e15","indices":[56,80]}],"urls":[],"user_mentions":[{"screen_name":"Gusxyien_","name":"YI'EN\u2661","id":2886925044,"id_str":"2886925044","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080030658"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871391834112,"id_str":"663727871391834112","text":"@laylorqueens Simmm socorro, vou tentar ver se escuto Focus da Ariana que \u00e9 mais animadinho pra bad n\u00e3o continuar aqui","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725790304055297,"in_reply_to_status_id_str":"663725790304055297","in_reply_to_user_id":3433234096,"in_reply_to_user_id_str":"3433234096","in_reply_to_screen_name":"laylorqueens","user":{"id":3386761414,"id_str":"3386761414","name":"Liv \u2649","screen_name":"Prepon_Queen","location":"Vendo o insta da Demi e Laura","url":null,"description":"Lovatic \u00e9 um bicho que nasceu pra sofre\n\u2022 Oitnb \u2022 Lovatic \u2022 Arrow \u2022 Pll \u2022 Pjo \u2022 Hdo \u2022 Hp \u2022 Divergente \u2022 Thg \u2022 Got","protected":false,"verified":false,"followers_count":451,"friends_count":437,"listed_count":1,"favourites_count":4053,"statuses_count":9165,"created_at":"Wed Jul 22 02:44:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644623748990156801\/pliH4MbN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644623748990156801\/pliH4MbN.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663433088752570368\/WmUf2I6C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663433088752570368\/WmUf2I6C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3386761414\/1446612056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"laylorqueens","name":"3oit\u00e3o girl","id":3433234096,"id_str":"3433234096","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080030664"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379288064,"id_str":"663727871379288064","text":"RT @filipee021: @GabyZiegler sai kkkkkkkkkk","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2976915711,"id_str":"2976915711","name":"gabrielle","screen_name":"GabyZiegler","location":"Rj","url":null,"description":"Segura estou nos bra\u00e7os, daquele que nunca me deixou...","protected":false,"verified":false,"followers_count":243,"friends_count":315,"listed_count":0,"favourites_count":178,"statuses_count":2870,"created_at":"Tue Jan 13 19:20:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662300029185585152\/0gm75lSD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662300029185585152\/0gm75lSD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2976915711\/1446148221","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:22 +0000 2015","id":663727585034166273,"id_str":"663727585034166273","text":"@GabyZiegler sai kkkkkkkkkk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727301457235968,"in_reply_to_status_id_str":"663727301457235968","in_reply_to_user_id":2976915711,"in_reply_to_user_id_str":"2976915711","in_reply_to_screen_name":"GabyZiegler","user":{"id":3312740434,"id_str":"3312740434","name":"ovelha negra","screen_name":"filipee021","location":"Rio de Janeiro, Brasil","url":null,"description":"vamos viver nossos sonhos temos t\u00e3o pouco tempo","protected":false,"verified":false,"followers_count":185,"friends_count":201,"listed_count":0,"favourites_count":3270,"statuses_count":3202,"created_at":"Mon Jun 08 02:31:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663555420418650112\/hHpRrVX0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663555420418650112\/hHpRrVX0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312740434\/1446652433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabyZiegler","name":"gabrielle","id":2976915711,"id_str":"2976915711","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"filipee021","name":"ovelha negra","id":3312740434,"id_str":"3312740434","indices":[3,14]},{"screen_name":"GabyZiegler","name":"gabrielle","id":2976915711,"id_str":"2976915711","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871362523136,"id_str":"663727871362523136","text":"#FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/LpJTLDRi4S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946992038,"id_str":"2946992038","name":"brenlis \u2764","screen_name":"brenlis_","location":null,"url":null,"description":"Soy Adorable","protected":false,"verified":false,"followers_count":28,"friends_count":81,"listed_count":2,"favourites_count":149,"statuses_count":2717,"created_at":"Mon Dec 29 00:22:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606234927869399040\/vHk3rcXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606234927869399040\/vHk3rcXC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946992038\/1446671844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[0,15]},{"text":"ArtistaDelA\u00f1o","indices":[16,30]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727870020337664,"id_str":"663727870020337664","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-zAWwAADMhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-zAWwAADMhS.jpg","url":"https:\/\/t.co\/LpJTLDRi4S","display_url":"pic.twitter.com\/LpJTLDRi4S","expanded_url":"http:\/\/twitter.com\/brenlis_\/status\/663727871362523136\/photo\/1","type":"photo","sizes":{"medium":{"w":443,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":552,"resize":"fit"},"large":{"w":443,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727870020337664,"id_str":"663727870020337664","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-zAWwAADMhS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-zAWwAADMhS.jpg","url":"https:\/\/t.co\/LpJTLDRi4S","display_url":"pic.twitter.com\/LpJTLDRi4S","expanded_url":"http:\/\/twitter.com\/brenlis_\/status\/663727871362523136\/photo\/1","type":"photo","sizes":{"medium":{"w":443,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":552,"resize":"fit"},"large":{"w":443,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080030657"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383355392,"id_str":"663727871383355392","text":"\u304a\u3057\u307f\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2894423623,"id_str":"2894423623","name":"\u30e4\u30b8\u30ed\u30f3\u306f\u4e00\u5468\u5e74","screen_name":"9_fjf","location":"\u75fe\u5f59\u7515\u7a62\u6de4\u5be1\u9ebe\u61fc\u61f8\u8836\u7c11\u8f1c\u6578\u7028\u758f","url":null,"description":"@380la \u3055\u3093\u304b\u3089\n@toLO668 \u3055\u3093\u304b\u3089\n\u81ea\u5206\u304b\u3089\u7d61\u3080\u306e\u304c\u4e0b\u624b","protected":false,"verified":false,"followers_count":533,"friends_count":342,"listed_count":28,"favourites_count":2940,"statuses_count":45049,"created_at":"Sun Nov 09 05:10:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663282872581685248\/u64vYhLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663282872581685248\/u64vYhLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2894423623\/1444058466","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030662"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871391723520,"id_str":"663727871391723520","text":"CAN'T WAIT FOR NEXT WEEK\u2757\u2757 \u2764\ud83d\ude08 @darienjackson98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194788213,"id_str":"3194788213","name":"soph\u00a1a\u2728","screen_name":"coolkiddsince98","location":"Dallas, TX","url":null,"description":"ya favorite darkskin\u2757","protected":false,"verified":false,"followers_count":58,"friends_count":99,"listed_count":0,"favourites_count":153,"statuses_count":143,"created_at":"Wed May 13 23:05:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663185573788516352\/rw92YkRp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663185573788516352\/rw92YkRp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3194788213\/1432618894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"darienjackson98","name":"Bank$","id":2734539058,"id_str":"2734539058","indices":[30,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080030664"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871379156992,"id_str":"663727871379156992","text":"@KentyMadness HAHAHAHA that old hag everytime pua same stunt win liao win liao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727713887240192,"in_reply_to_status_id_str":"663727713887240192","in_reply_to_user_id":503079248,"in_reply_to_user_id_str":"503079248","in_reply_to_screen_name":"KentyMadness","user":{"id":301313086,"id_str":"301313086","name":"`xw","screen_name":"Lxnww","location":"West Region, Singapore","url":null,"description":"five feet 4 \/\/ ig\/snapchat: @lxnww","protected":false,"verified":false,"followers_count":682,"friends_count":291,"listed_count":4,"favourites_count":1939,"statuses_count":34270,"created_at":"Thu May 19 07:59:10 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551729643808493568\/ivNgwpHj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551729643808493568\/ivNgwpHj.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662613486648733696\/_3onLm5M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662613486648733696\/_3onLm5M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301313086\/1442405982","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KentyMadness","name":"Kent","id":503079248,"id_str":"503079248","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080030661"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366553601,"id_str":"663727871366553601","text":"\u304a\u308c\u306f\u5143\u6c17\u3060\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25093875,"id_str":"25093875","name":"\u3064\u304f\u306d","screen_name":"Tukine","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=192666","description":"\u304b\u3063\u3053\u3044\u3044\u3001\u304b\u308f\u3044\u3044\u3082\u306e\u5927\u597d\u304d\u63d0\u7763\u306e\u9ce5\u56e3\u5b50\u64ec\u4eba\u5316bot\u30bf\u30ec\u3001\u5869\u304a\u597d\u307f\u3067 \u3086\u308b\u30c9\u30e9\u7528\u57a2\u2192@yurutukine","protected":false,"verified":false,"followers_count":223,"friends_count":346,"listed_count":12,"favourites_count":365,"statuses_count":85519,"created_at":"Wed Mar 18 15:47:02 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/285981366\/KUMA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/285981366\/KUMA.jpg","profile_background_tile":false,"profile_link_color":"2E12FF","profile_sidebar_border_color":"FFA200","profile_sidebar_fill_color":"FFD3AD","profile_text_color":"080629","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643833145851166726\/e3D40zlI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643833145851166726\/e3D40zlI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25093875\/1415707178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030658"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871395938304,"id_str":"663727871395938304","text":"@piecent \u30ea\u30af\u30a8\u30b9\u30c8\u3057\u3068\u3053","source":"\u003ca href=\"http:\/\/azurea.info\/\" rel=\"nofollow\"\u003eAzurea for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727827276066816,"in_reply_to_status_id_str":"663727827276066816","in_reply_to_user_id":828475598,"in_reply_to_user_id_str":"828475598","in_reply_to_screen_name":"piecent","user":{"id":107367237,"id_str":"107367237","name":"\u3074\u3093\u304f","screen_name":"pinkedeye","location":"\u65e5\u672c","url":null,"description":"\u4e38\u306e\u5185\u3067OL\u3084\u3063\u3066\u307e\u3059\u266a \u30b7\u30e7\u30c3\u30d4\u30f3\u30b0\u3068\u30cd\u30a4\u30eb\u304c\u8da3\u5473\u304b\u306a\u3002\u6599\u7406\u3082\u305f\u307e\u306b\u3002\u4eca\u5ea6\u30cf\u30ef\u30a4\u884c\u304d\u305f\u3044\u305e\u30fc\uff01","protected":false,"verified":false,"followers_count":335,"friends_count":358,"listed_count":35,"favourites_count":10703,"statuses_count":242811,"created_at":"Fri Jan 22 09:51:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/94924799\/m-p-sky-07-01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/94924799\/m-p-sky-07-01.jpg","profile_background_tile":false,"profile_link_color":"4596ED","profile_sidebar_border_color":"BEC2C2","profile_sidebar_fill_color":"DFE1EB","profile_text_color":"112357","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660457668679593984\/ir0f9yyq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660457668679593984\/ir0f9yyq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107367237\/1352455343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"piecent","name":"\u3074\u30fc\u3059\u3093","id":828475598,"id_str":"828475598","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030665"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871366688768,"id_str":"663727871366688768","text":"@lizok991 \u0443 \u043d\u0435\u043a-\u044b\u0445 \u043c\u043e\u0438\u0445 \u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u0435\u0441\u0442\u044c \u0444\u043e\u0442\u043a\u0438 \u0432 \u0432\u043a\n\u0442\u043e\u043a \u044f \u0438\u0445 \u043d\u0435 \u0441\u043a\u0438\u043d\u0443\nhttps:\/\/t.co\/YrqsgnZxLu\n\u043f\u043e\u0441\u043c\u0430\u0440\u0438 \u0432 \u0434\u0440.\n\u0430 \u0442\u043e \u043d\u0435 \u0434\u0430\u0439 \u0411\u043e\u0433 \u043c\u043e\u0439 \u0442\u0432\u0438 \u0441\u043f\u0430\u043b\u044f\u0442","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726864528220160,"in_reply_to_status_id_str":"663726864528220160","in_reply_to_user_id":838114152,"in_reply_to_user_id_str":"838114152","in_reply_to_screen_name":"lizok991","user":{"id":2236450032,"id_str":"2236450032","name":".\u0430\u0438\u0434\u0410","screen_name":"aid__A","location":null,"url":"http:\/\/vk.com\/a.al98","description":"#books #rock #Rammstein #MyChemicalRomance #30SecondsToMars #GreenDay #FrnkieroAndtheCellabration #GerardWay #Lumen #\u0417\u0435\u043c\u0444\u0438\u0440\u0430 #\u0421\u043f\u043b\u0438\u043d #ArcticMonkeys \u0438 \u043c\u043d\u043e\u0433\u043e\u0435 \u0434\u0440.","protected":false,"verified":false,"followers_count":530,"friends_count":168,"listed_count":3,"favourites_count":709,"statuses_count":999,"created_at":"Sun Dec 08 18:57:53 +0000 2013","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658282485420195842\/XxOBVfCR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658282485420195842\/XxOBVfCR.jpg","profile_background_tile":false,"profile_link_color":"999999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"6D58A6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658228135259983872\/sE2V0rPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658228135259983872\/sE2V0rPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236450032\/1445779206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YrqsgnZxLu","expanded_url":"http:\/\/vk.com\/a.al98","display_url":"vk.com\/a.al98","indices":[70,93]}],"user_mentions":[{"screen_name":"lizok991","name":"kek\/ROAD TO 3K","id":838114152,"id_str":"838114152","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080030658"} +{"delete":{"status":{"id":663093172537417728,"id_str":"663093172537417728","user_id":1951568450,"user_id_str":"1951568450"},"timestamp_ms":"1447080030834"}} +{"delete":{"status":{"id":558882267104178176,"id_str":"558882267104178176","user_id":2804595695,"user_id_str":"2804595695"},"timestamp_ms":"1447080030864"}} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383343104,"id_str":"663727871383343104","text":"@aminosuke_134 \n\u934b\u98df\u3079\u308b\u3093\u3060\u3063\u305f\u3089\u3088\u3093\u3067\u3088\u30fcw\n\u660e\u592a\u5b50\u934b\u3068\u304b\uff1fw\n\u798f\u5ca1\u6d41","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727249024135169,"in_reply_to_status_id_str":"663727249024135169","in_reply_to_user_id":2974999213,"in_reply_to_user_id_str":"2974999213","in_reply_to_screen_name":"aminosuke_134","user":{"id":2594494123,"id_str":"2594494123","name":"\u305f\u3044\u3058\u3085\u30af\u30c3\u30ad\u30fc","screen_name":"taiju_snkz_134","location":"Everything gonna be all right","url":"http:\/\/instagram.com\/taiju134","description":"\u5c71\u68a8\/\u4e2d3\/\u5143\u9678\u4e0a\u90e8\/\u8eab\u5ef6\u30b7\u30cb\u30a2\/\u6e58\u5357\u4e43\u98a8\/\u98a8\u4e00\u65cf\n\u65e6\u90a3\u3068Real Riders\u30c0\u30a4\u30b9\u30ad Apollo\u304f\u3093\u3089\u3076\uff01\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc \u666e\u901a\u30b9\u30eb\uff1f \u307f\u3063\u304f\u307f\u304f\u3075\u3041\u307f\u308a\u30fc","protected":false,"verified":false,"followers_count":939,"friends_count":532,"listed_count":4,"favourites_count":22342,"statuses_count":14120,"created_at":"Sun Jun 29 08:31:10 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645740422250147841\/xEZ3Mq46_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645740422250147841\/xEZ3Mq46_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594494123\/1446973359","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aminosuke_134","name":"\u30d0\u30ab\u307e\u308b \u30dc\u30fc\u30ed \u98a8\u4e00\u65cf","id":2974999213,"id_str":"2974999213","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030662"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871383375873,"id_str":"663727871383375873","text":"#FelizLunes de cuento... https:\/\/t.co\/Mkxt0EDGOD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85455476,"id_str":"85455476","name":"\uf8ff","screen_name":"MarCo_FloWeRs","location":"Puebla","url":null,"description":"L@s DroGas ProduCen AluciNaciONes Me Lo DiJo Mi Gato...aHi SenTadO coMo Lo vEn SabiO..","protected":false,"verified":false,"followers_count":1184,"friends_count":1070,"listed_count":8,"favourites_count":19,"statuses_count":12369,"created_at":"Tue Oct 27 00:12:58 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422988350966878208\/y1815GqH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422988350966878208\/y1815GqH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85455476\/1348067139","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FelizLunes","indices":[0,11]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727867176488960,"id_str":"663727867176488960","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-oaVEAA8mpG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-oaVEAA8mpG.jpg","url":"https:\/\/t.co\/Mkxt0EDGOD","display_url":"pic.twitter.com\/Mkxt0EDGOD","expanded_url":"http:\/\/twitter.com\/MarCo_FloWeRs\/status\/663727871383375873\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":333,"h":333,"resize":"fit"},"medium":{"w":333,"h":333,"resize":"fit"},"small":{"w":333,"h":333,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727867176488960,"id_str":"663727867176488960","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-oaVEAA8mpG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-oaVEAA8mpG.jpg","url":"https:\/\/t.co\/Mkxt0EDGOD","display_url":"pic.twitter.com\/Mkxt0EDGOD","expanded_url":"http:\/\/twitter.com\/MarCo_FloWeRs\/status\/663727871383375873\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":333,"h":333,"resize":"fit"},"medium":{"w":333,"h":333,"resize":"fit"},"small":{"w":333,"h":333,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080030662"} +{"delete":{"status":{"id":558882355188740096,"id_str":"558882355188740096","user_id":2795647965,"user_id_str":"2795647965"},"timestamp_ms":"1447080030902"}} +{"delete":{"status":{"id":558882380346167296,"id_str":"558882380346167296","user_id":2806355199,"user_id_str":"2806355199"},"timestamp_ms":"1447080030917"}} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871362486272,"id_str":"663727871362486272","text":"\u3010DQ10\u3011\u30d4\u30aa\u5f8c\u306e\u30bf\u30fc\u30f3\u30a8\u30f3\u30c9\u3063\u3066\u901f\u304f\u306a\u3063\u3066\u308b\u304b\uff1f https:\/\/t.co\/meREOBGCAw https:\/\/t.co\/co1Jpm6vlo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3098592758,"id_str":"3098592758","name":"punyo990","screen_name":"punyon11","location":"\u6771\u4eac\u90fd","url":"http:\/\/punyon.fantena.net","description":"\u3077\u306b\u3087\u30fc\u3093\u30a2\u30f3\u30c6\u30ca\u3067\u3059","protected":false,"verified":false,"followers_count":412,"friends_count":460,"listed_count":4,"favourites_count":0,"statuses_count":86160,"created_at":"Fri Mar 20 02:12:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578741285269299200\/F16G-IID_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578741285269299200\/F16G-IID_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/meREOBGCAw","expanded_url":"http:\/\/ift.tt\/1PxGXHg","display_url":"ift.tt\/1PxGXHg","indices":[27,50]}],"user_mentions":[],"symbols":[],"media":[{"id":663727870406213632,"id_str":"663727870406213632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-0cWwAAcSIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-0cWwAAcSIF.jpg","url":"https:\/\/t.co\/co1Jpm6vlo","display_url":"pic.twitter.com\/co1Jpm6vlo","expanded_url":"http:\/\/twitter.com\/punyon11\/status\/663727871362486272\/photo\/1","type":"photo","sizes":{"large":{"w":150,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":150,"resize":"fit"},"medium":{"w":150,"h":150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727870406213632,"id_str":"663727870406213632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-0cWwAAcSIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-0cWwAAcSIF.jpg","url":"https:\/\/t.co\/co1Jpm6vlo","display_url":"pic.twitter.com\/co1Jpm6vlo","expanded_url":"http:\/\/twitter.com\/punyon11\/status\/663727871362486272\/photo\/1","type":"photo","sizes":{"large":{"w":150,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":150,"resize":"fit"},"medium":{"w":150,"h":150,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030657"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871370899456,"id_str":"663727871370899456","text":"Popular on 500px : ELLE EST TOMB\u00c9E PAR TERRE by violetateixeira https:\/\/t.co\/wzQkkcafgo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1467817886,"id_str":"1467817886","name":"paula gonzalez ","screen_name":"Pgpaulagonzalez","location":null,"url":"http:\/\/www.atec5.blogspot.com","description":"Si quereis m\u00e1s fotos @fotos_perfect","protected":false,"verified":false,"followers_count":1192,"friends_count":705,"listed_count":30,"favourites_count":158,"statuses_count":476837,"created_at":"Wed May 29 17:26:49 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF00CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155915821\/x7Q-3z8i.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155915821\/x7Q-3z8i.jpeg","profile_background_tile":true,"profile_link_color":"FF00FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3728208671\/32a48524faacbf90ce413d84f5d6a615_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3728208671\/32a48524faacbf90ce413d84f5d6a615_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1467817886\/1387812149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727871005999104,"id_str":"663727871005999104","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-2rWwAADgxn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-2rWwAADgxn.jpg","url":"https:\/\/t.co\/wzQkkcafgo","display_url":"pic.twitter.com\/wzQkkcafgo","expanded_url":"http:\/\/twitter.com\/Pgpaulagonzalez\/status\/663727871370899456\/photo\/1","type":"photo","sizes":{"large":{"w":900,"h":675,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727871005999104,"id_str":"663727871005999104","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-2rWwAADgxn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-2rWwAADgxn.jpg","url":"https:\/\/t.co\/wzQkkcafgo","display_url":"pic.twitter.com\/wzQkkcafgo","expanded_url":"http:\/\/twitter.com\/Pgpaulagonzalez\/status\/663727871370899456\/photo\/1","type":"photo","sizes":{"large":{"w":900,"h":675,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080030659"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871400235008,"id_str":"663727871400235008","text":"Invitation presse 10\/11\/2015: Management,autonomie & confiance: que se passe-t-il dans les entreprises & S.Publics ? https:\/\/t.co\/5ZbjNfdt8A","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2895994169,"id_str":"2895994169","name":"SNU P\u00f4le emploi FSU","screen_name":"SnuPoleEmploi","location":"France","url":"http:\/\/www.snutefifsu.fr\/pole-emploi","description":"Syndicat P\u00f4le emploi. Nous assurons la d\u00e9fense individuelle et collective de l\u2019ensemble des salari\u00e9-es...","protected":false,"verified":false,"followers_count":127,"friends_count":59,"listed_count":5,"favourites_count":17,"statuses_count":302,"created_at":"Fri Nov 28 14:28:22 +0000 2014","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C33333","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538340492392427520\/2KUi7IWX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538340492392427520\/2KUi7IWX_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727870381002753,"id_str":"663727870381002753","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-0WWEAEeoGV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-0WWEAEeoGV.jpg","url":"https:\/\/t.co\/5ZbjNfdt8A","display_url":"pic.twitter.com\/5ZbjNfdt8A","expanded_url":"http:\/\/twitter.com\/SnuPoleEmploi\/status\/663727871400235008\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1447,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727870381002753,"id_str":"663727870381002753","indices":[125,148],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-0WWEAEeoGV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-0WWEAEeoGV.jpg","url":"https:\/\/t.co\/5ZbjNfdt8A","display_url":"pic.twitter.com\/5ZbjNfdt8A","expanded_url":"http:\/\/twitter.com\/SnuPoleEmploi\/status\/663727871400235008\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1447,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080030666"} +{"delete":{"status":{"id":663727636489744385,"id_str":"663727636489744385","user_id":4179970633,"user_id_str":"4179970633"},"timestamp_ms":"1447080031062"}} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871391866880,"id_str":"663727871391866880","text":"Foto. https:\/\/t.co\/Nb57rTlwfL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2469391794,"id_str":"2469391794","name":"Pretpark","screen_name":"pretparkfotos","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":0,"listed_count":4,"favourites_count":0,"statuses_count":1012138,"created_at":"Tue Apr 29 14:58:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727870221660160,"id_str":"663727870221660160","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-zwWsAAplus.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-zwWsAAplus.jpg","url":"https:\/\/t.co\/Nb57rTlwfL","display_url":"pic.twitter.com\/Nb57rTlwfL","expanded_url":"http:\/\/twitter.com\/pretparkfotos\/status\/663727871391866880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727870221660160,"id_str":"663727870221660160","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-zwWsAAplus.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-zwWsAAplus.jpg","url":"https:\/\/t.co\/Nb57rTlwfL","display_url":"pic.twitter.com\/Nb57rTlwfL","expanded_url":"http:\/\/twitter.com\/pretparkfotos\/status\/663727871391866880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080030664"} +{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727871400120320,"id_str":"663727871400120320","text":"\u4eba\u6c17\u8005\u3068\u52d8\u9055\u3044\u3057\u3066\u305d\u3046\u306a\u9e7f\u3000(10\/26 \u5948\u826f) https:\/\/t.co\/N93WxswBdC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246643495,"id_str":"3246643495","name":"\u306d\u3053\u3075\u308b\u30fc\u3068","screen_name":"catfruit64","location":null,"url":null,"description":"\u8868\u57a2\uff1f\u5199\u771f\u57a2\uff1f","protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":1,"statuses_count":2,"created_at":"Tue Jun 16 07:51:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663664382262427648\/7Wn-OBvB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663664382262427648\/7Wn-OBvB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246643495\/1447064602","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727868833173504,"id_str":"663727868833173504","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-ulUEAAA1Ak.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-ulUEAAA1Ak.jpg","url":"https:\/\/t.co\/N93WxswBdC","display_url":"pic.twitter.com\/N93WxswBdC","expanded_url":"http:\/\/twitter.com\/catfruit64\/status\/663727871400120320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727868833173504,"id_str":"663727868833173504","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-ulUEAAA1Ak.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-ulUEAAA1Ak.jpg","url":"https:\/\/t.co\/N93WxswBdC","display_url":"pic.twitter.com\/N93WxswBdC","expanded_url":"http:\/\/twitter.com\/catfruit64\/status\/663727871400120320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080030666"} +{"delete":{"status":{"id":663669188884570112,"id_str":"663669188884570112","user_id":2615191712,"user_id_str":"2615191712"},"timestamp_ms":"1447080031577"}} +{"delete":{"status":{"id":663727410009890819,"id_str":"663727410009890819","user_id":2803716479,"user_id_str":"2803716479"},"timestamp_ms":"1447080031522"}} +{"delete":{"status":{"id":663715825346457600,"id_str":"663715825346457600","user_id":2914903134,"user_id_str":"2914903134"},"timestamp_ms":"1447080031668"}} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875594584064,"id_str":"663727875594584064","text":"RT @mgd_m7md: \u0627\u0646 \u0627\u0644\u0646\u0627\u0633 \u0645\u064a\u0643\u0648\u0646\u0634 \u0644\u064a\u0647\u0627 \u062f\u0639\u0648\u0629 \u0628\u064a\u0643 \u0627\u0648 \u0627\u0646 \u0627\u0644\u062d\u0627\u062c\u0629 \u0627\u0644\u064a \u0628\u062a\u0639\u0645\u0644\u0647\u0627 \u062f\u064a \u0635\u062d \u0627\u0648 \u063a\u0644\u0637 \u062f\u0627 \u0634\u0626 \u0645\u0631\u0641\u0648\u0636 \u062a\u0645\u0627\u0645\u0627\u0627 \u0641 \u0645\u0635\u0631 \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3352600983,"id_str":"3352600983","name":"\u062f\u0639\u0622\u0621 B.D 21\/11","screen_name":"doaamagdy508","location":"El Sharkia, Zagazig","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f(\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200fInstagram, doaaelsnhawy)\n*\u0645\u0636\u064a\u0641\u0641\u0629_\u0637\u064a\u0631\u0622\u0646\u2708*\n*\u0628\u0646\u062a \u0635\u0622\u0644\u062d_\u0633\u0644\u064a\u0645\u270b\n *\u062a\u0634\u064a\u0643 #\u0627\u0644\u0641\u064a\u0641\u0648\u0631\u062a\u0633 \u0648\u0647\u062a\u0646\u0628\u0647\u0631*","protected":false,"verified":false,"followers_count":1663,"friends_count":1470,"listed_count":0,"favourites_count":6665,"statuses_count":6137,"created_at":"Wed Jul 01 01:03:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663476140003213318\/VReRPe6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663476140003213318\/VReRPe6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3352600983\/1447020007","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:25 +0000 2015","id":663711492550877184,"id_str":"663711492550877184","text":"\u0627\u0646 \u0627\u0644\u0646\u0627\u0633 \u0645\u064a\u0643\u0648\u0646\u0634 \u0644\u064a\u0647\u0627 \u062f\u0639\u0648\u0629 \u0628\u064a\u0643 \u0627\u0648 \u0627\u0646 \u0627\u0644\u062d\u0627\u062c\u0629 \u0627\u0644\u064a \u0628\u062a\u0639\u0645\u0644\u0647\u0627 \u062f\u064a \u0635\u062d \u0627\u0648 \u063a\u0644\u0637 \u062f\u0627 \u0634\u0626 \u0645\u0631\u0641\u0648\u0636 \u062a\u0645\u0627\u0645\u0627\u0627 \u0641 \u0645\u0635\u0631 \ud83d\ude12","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2162290762,"id_str":"2162290762","name":"\u0645\u0653\u062d\u0652\u0645\u064f\u0648\u062f","screen_name":"mgd_m7md","location":"Big Of The Street","url":null,"description":"\u0643\u0627\u0626\u0646 \u0628\u0648\u0647\u064a\u0645\u0649 \u064a\u0641\u0639\u0644 \u0645\u0627 \u064a\u062d\u0644\u0648 \u0644\u0647..","protected":false,"verified":false,"followers_count":234,"friends_count":163,"listed_count":0,"favourites_count":793,"statuses_count":886,"created_at":"Thu Oct 31 19:55:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663688719224975360\/DS1ogZnf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663688719224975360\/DS1ogZnf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2162290762\/1439897086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mgd_m7md","name":"\u0645\u0653\u062d\u0652\u0645\u064f\u0648\u062f","id":2162290762,"id_str":"2162290762","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080031666"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875573612544,"id_str":"663727875573612544","text":"#\u0631\u0648\u0627\u0647_\u0645\u0633\u0644\u0645\n#\u062d\u0632\u0628_\u0627\u0644\u0639\u0645\u0627\u0644_\u0627\u0644\u0643\u0631\u062f\u0633\u062a\u0627\u0646\u064a\n#\u062a\u0633\u0645\u0645_\u0627\u0644\u062d\u0645\u0644\n#\u062a\u0633\u0633\u0645_\u0627\u0644\u062d\u0645\u0644\n#\u0631\u0639\u0628\n#\u0627\u0644\u062a\u062c\u0627\u0631\u0629\n#\u0627\u0644\u0631\u0627\u062d\u0644\n#\u0625\u0633\u0631\u0627\u0621_\u0627\u0644\u0637\u0648\u064a\u0644\n#\u0646\u064a\u0633\u0627\u0646\n#\u062d\u0643\u064a\u0645\n#\u062a\u0639\u064a\u0632\n#\u062c\u0645\u064a\u0644_\u0627\u0644\u0634\u0631\u0639\u0628\u064a","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093495108,"id_str":"3093495108","name":"#Hashtag \u0647\u0627\u0634\u062a\u0627\u0642#","screen_name":"xsq15","location":null,"url":null,"description":"\u062e\u062f\u0645\u0629 \u0622\u0644\u064a\u0629 \u0644\u0644\u0647\u0627\u0634\u062a\u0627\u0642\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062f\u0627\u0648\u0644\u0629 \u0639\u0644\u0649 \u0645\u062f\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0629","protected":false,"verified":false,"followers_count":657,"friends_count":0,"listed_count":49,"favourites_count":0,"statuses_count":15911,"created_at":"Tue Mar 17 12:09:55 +0000 2015","utc_offset":10800,"time_zone":"Minsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658968788990316544\/_hlmlS8i_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658968788990316544\/_hlmlS8i_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3093495108\/1445945885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0631\u0648\u0627\u0647_\u0645\u0633\u0644\u0645","indices":[0,10]},{"text":"\u062d\u0632\u0628_\u0627\u0644\u0639\u0645\u0627\u0644_\u0627\u0644\u0643\u0631\u062f\u0633\u062a\u0627\u0646\u064a","indices":[11,33]},{"text":"\u062a\u0633\u0645\u0645_\u0627\u0644\u062d\u0645\u0644","indices":[34,45]},{"text":"\u062a\u0633\u0633\u0645_\u0627\u0644\u062d\u0645\u0644","indices":[46,57]},{"text":"\u0631\u0639\u0628","indices":[58,62]},{"text":"\u0627\u0644\u062a\u062c\u0627\u0631\u0629","indices":[63,71]},{"text":"\u0627\u0644\u0631\u0627\u062d\u0644","indices":[72,79]},{"text":"\u0625\u0633\u0631\u0627\u0621_\u0627\u0644\u0637\u0648\u064a\u0644","indices":[80,93]},{"text":"\u0646\u064a\u0633\u0627\u0646","indices":[94,100]},{"text":"\u062d\u0643\u064a\u0645","indices":[101,106]},{"text":"\u062a\u0639\u064a\u0632","indices":[107,112]},{"text":"\u062c\u0645\u064a\u0644_\u0627\u0644\u0634\u0631\u0639\u0628\u064a","indices":[113,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080031661"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569426432,"id_str":"663727875569426432","text":"RT @souvodka: tem umas coisas que acontecem na minha vida que minha \u00fanica rea\u00e7\u00e3o \u00e9:\n?\n???\n?????\n????????\n?????\n???\n?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1723695714,"id_str":"1723695714","name":"trevosinha","screen_name":"meftz","location":"RJ ","url":"http:\/\/mundana-a.tumblr.com","description":"snapchat: meftz","protected":false,"verified":false,"followers_count":347,"friends_count":130,"listed_count":1,"favourites_count":9493,"statuses_count":19665,"created_at":"Mon Sep 02 23:15:14 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487746106558664704\/kWuUltdl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487746106558664704\/kWuUltdl.jpeg","profile_background_tile":true,"profile_link_color":"552200","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663666842544795648\/3xl3Sbgx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663666842544795648\/3xl3Sbgx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1723695714\/1446256910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:20 +0000 2015","id":663726067509821441,"id_str":"663726067509821441","text":"tem umas coisas que acontecem na minha vida que minha \u00fanica rea\u00e7\u00e3o \u00e9:\n?\n???\n?????\n????????\n?????\n???\n?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227678669,"id_str":"227678669","name":"bonner","screen_name":"souvodka","location":"sp","url":"http:\/\/facebook.com\/souvodka","description":"n existe amor em","protected":false,"verified":false,"followers_count":299207,"friends_count":143280,"listed_count":1302,"favourites_count":17218,"statuses_count":24105,"created_at":"Fri Dec 17 14:07:32 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616771512255778817\/R_R8aAwj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616771512255778817\/R_R8aAwj.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618206890326102016\/GVY41_ib_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618206890326102016\/GVY41_ib_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227678669\/1435785885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":123,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"souvodka","name":"bonner","id":227678669,"id_str":"227678669","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875582001152,"id_str":"663727875582001152","text":"RT @girlridestiger: i want a donut someone take me out for donuts","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":964579206,"id_str":"964579206","name":"Luc\u00eda","screen_name":"lucia_hr12","location":null,"url":null,"description":"Be curious, not judgmental","protected":false,"verified":false,"followers_count":320,"friends_count":283,"listed_count":2,"favourites_count":6198,"statuses_count":3676,"created_at":"Thu Nov 22 16:52:13 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3C7D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487338153674428416\/G35Tyo0d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487338153674428416\/G35Tyo0d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649634813805228033\/OSiM3u6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649634813805228033\/OSiM3u6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/964579206\/1444151862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:56:42 +0000 2015","id":663716846651224065,"id_str":"663716846651224065","text":"i want a donut someone take me out for donuts","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431041673,"id_str":"431041673","name":"emily","screen_name":"girlridestiger","location":"rotherham","url":"http:\/\/www.instagram.com\/emilyhpatterson","description":"art student, patti smith impersonator","protected":false,"verified":false,"followers_count":2071,"friends_count":1576,"listed_count":9,"favourites_count":16921,"statuses_count":27101,"created_at":"Wed Dec 07 21:13:01 +0000 2011","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/564191690030735360\/2d6U0_PD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/564191690030735360\/2d6U0_PD.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692879840325632\/ypha6L3b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692879840325632\/ypha6L3b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431041673\/1447013961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"girlridestiger","name":"emily","id":431041673,"id_str":"431041673","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031663"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569373184,"id_str":"663727875569373184","text":"RT @Pattty_Melt: missing you a lot today","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3057561118,"id_str":"3057561118","name":"gabs ","screen_name":"diire_","location":null,"url":null,"description":"spontaneous","protected":false,"verified":false,"followers_count":66,"friends_count":150,"listed_count":0,"favourites_count":231,"statuses_count":917,"created_at":"Mon Feb 23 23:17:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587444235240153088\/SY6gA9TX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587444235240153088\/SY6gA9TX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3057561118\/1424733979","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:47:31 +0000 2015","id":663503146094727168,"id_str":"663503146094727168","text":"missing you a lot today","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2157766698,"id_str":"2157766698","name":"Pattymelt","screen_name":"Pattty_Melt","location":"20.","url":null,"description":"tsyup dyude","protected":false,"verified":false,"followers_count":29475,"friends_count":12485,"listed_count":30,"favourites_count":163,"statuses_count":2029,"created_at":"Sun Oct 27 00:22:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659624714772484096\/t7xkAJcN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659624714772484096\/t7xkAJcN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2157766698\/1446257259","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":738,"favorite_count":592,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pattty_Melt","name":"Pattymelt","id":2157766698,"id_str":"2157766698","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569410048,"id_str":"663727875569410048","text":"tristeza","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3154254075,"id_str":"3154254075","name":"allisic","screen_name":"drizxx","location":"with morfeu","url":null,"description":null,"protected":false,"verified":false,"followers_count":189,"friends_count":490,"listed_count":0,"favourites_count":1064,"statuses_count":1826,"created_at":"Fri Apr 10 19:08:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663420340853448705\/wlqMB7q__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663420340853448705\/wlqMB7q__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3154254075\/1447006365","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875594526720,"id_str":"663727875594526720","text":"RT @CoupIe_Goals: Me when I have a child http:\/\/t.co\/hjsUUlMsmB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519894220,"id_str":"519894220","name":"Jordan Taylor","screen_name":"JordanTaylor655","location":"Some beach somewhere","url":null,"description":"Lady gaga is my spirit animal","protected":false,"verified":false,"followers_count":346,"friends_count":453,"listed_count":2,"favourites_count":5482,"statuses_count":15172,"created_at":"Fri Mar 09 22:53:25 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661714107188531200\/w_vuLS-T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661714107188531200\/w_vuLS-T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519894220\/1445871807","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 14 22:03:04 +0000 2015","id":654417160148615168,"id_str":"654417160148615168","text":"Me when I have a child http:\/\/t.co\/hjsUUlMsmB","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2938532482,"id_str":"2938532482","name":"Relationship Goals","screen_name":"CoupIe_Goals","location":null,"url":null,"description":"\u2800\u2800Posting The Best Relationship Goals On Twitter \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800*Original Page*","protected":false,"verified":false,"followers_count":83890,"friends_count":0,"listed_count":72,"favourites_count":77,"statuses_count":833,"created_at":"Tue Dec 23 17:01:27 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626810115878965248\/R8gJCo1Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626810115878965248\/R8gJCo1Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938532482\/1438278152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1393,"favorite_count":1617,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653632036947685377,"id_str":"653632036947685377","indices":[23,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","url":"http:\/\/t.co\/hjsUUlMsmB","display_url":"pic.twitter.com\/hjsUUlMsmB","expanded_url":"http:\/\/twitter.com\/CoupIe_Goals\/status\/654417160148615168\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":653632036947685377,"id_str":"653632036947685377","indices":[23,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","url":"http:\/\/t.co\/hjsUUlMsmB","display_url":"pic.twitter.com\/hjsUUlMsmB","expanded_url":"http:\/\/twitter.com\/CoupIe_Goals\/status\/654417160148615168\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CoupIe_Goals","name":"Relationship Goals","id":2938532482,"id_str":"2938532482","indices":[3,16]}],"symbols":[],"media":[{"id":653632036947685377,"id_str":"653632036947685377","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","url":"http:\/\/t.co\/hjsUUlMsmB","display_url":"pic.twitter.com\/hjsUUlMsmB","expanded_url":"http:\/\/twitter.com\/CoupIe_Goals\/status\/654417160148615168\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654417160148615168,"source_status_id_str":"654417160148615168","source_user_id":2938532482,"source_user_id_str":"2938532482"}]},"extended_entities":{"media":[{"id":653632036947685377,"id_str":"653632036947685377","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRIq3-AU8AE_9CI.jpg","url":"http:\/\/t.co\/hjsUUlMsmB","display_url":"pic.twitter.com\/hjsUUlMsmB","expanded_url":"http:\/\/twitter.com\/CoupIe_Goals\/status\/654417160148615168\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654417160148615168,"source_status_id_str":"654417160148615168","source_user_id":2938532482,"source_user_id_str":"2938532482"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031666"} +{"delete":{"status":{"id":645323802289696768,"id_str":"645323802289696768","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080031746"}} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875594547200,"id_str":"663727875594547200","text":"RT @MyBlackKiss: me coming to twitter like:\n\n#OhNoBriana https:\/\/t.co\/4Z4mfaDDxq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":938863273,"id_str":"938863273","name":"\u270cTILL THE END\u270c","screen_name":"salazar_saray","location":"Espa\u00f1a","url":null,"description":"One Direction\/Old Magcon\/5SOS\/Fifth harmony\/Taylor Swift\/Little Mix\/ Ed Sheeran\/Justin Bieber\/Ariana Grande\n\u007bDirectioner, Mendes Army\u007d\n\u2764\nSpain\u2708London\u2708California","protected":false,"verified":false,"followers_count":725,"friends_count":1973,"listed_count":1,"favourites_count":1218,"statuses_count":2675,"created_at":"Sat Nov 10 11:27:52 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449465110591836160\/JV-d0wEZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449465110591836160\/JV-d0wEZ.jpeg","profile_background_tile":true,"profile_link_color":"25DEA4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642410586500919296\/WSQwlLI6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642410586500919296\/WSQwlLI6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/938863273\/1437771910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:05:13 +0000 2015","id":663567997781409792,"id_str":"663567997781409792","text":"me coming to twitter like:\n\n#OhNoBriana https:\/\/t.co\/4Z4mfaDDxq","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216191417,"id_str":"216191417","name":"\u221e","screen_name":"MyBlackKiss","location":null,"url":"https:\/\/twitter.com\/harry_styles\/status\/555243528742506496","description":"You know what? Just do you. -H","protected":false,"verified":false,"followers_count":19764,"friends_count":10138,"listed_count":51,"favourites_count":1439,"statuses_count":20033,"created_at":"Tue Nov 16 00:52:20 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158405164\/j2bIsNWR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158405164\/j2bIsNWR.jpeg","profile_background_tile":true,"profile_link_color":"DE4733","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0E0E0E","profile_text_color":"759CE0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660988576503431168\/HupSJLyQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660988576503431168\/HupSJLyQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216191417\/1446673625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":472,"favorite_count":283,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[28,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663567893448159233,"id_str":"663567893448159233","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","url":"https:\/\/t.co\/4Z4mfaDDxq","display_url":"pic.twitter.com\/4Z4mfaDDxq","expanded_url":"http:\/\/twitter.com\/MyBlackKiss\/status\/663567997781409792\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663567893448159233,"id_str":"663567893448159233","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","url":"https:\/\/t.co\/4Z4mfaDDxq","display_url":"pic.twitter.com\/4Z4mfaDDxq","expanded_url":"http:\/\/twitter.com\/MyBlackKiss\/status\/663567997781409792\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[45,56]}],"urls":[],"user_mentions":[{"screen_name":"MyBlackKiss","name":"\u221e","id":216191417,"id_str":"216191417","indices":[3,15]}],"symbols":[],"media":[{"id":663567893448159233,"id_str":"663567893448159233","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","url":"https:\/\/t.co\/4Z4mfaDDxq","display_url":"pic.twitter.com\/4Z4mfaDDxq","expanded_url":"http:\/\/twitter.com\/MyBlackKiss\/status\/663567997781409792\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663567997781409792,"source_status_id_str":"663567997781409792","source_user_id":216191417,"source_user_id_str":"216191417"}]},"extended_entities":{"media":[{"id":663567893448159233,"id_str":"663567893448159233","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV3e71U8AEZJ1A.jpg","url":"https:\/\/t.co\/4Z4mfaDDxq","display_url":"pic.twitter.com\/4Z4mfaDDxq","expanded_url":"http:\/\/twitter.com\/MyBlackKiss\/status\/663567997781409792\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663567997781409792,"source_status_id_str":"663567997781409792","source_user_id":216191417,"source_user_id_str":"216191417"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031666"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875565199360,"id_str":"663727875565199360","text":"!! My two favorite things! \u2018Mallory Ortberg will be the next Dear Prudence, succeeding Emily Yoffe. https:\/\/t.co\/GxngpLYFdd\u2019","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24382634,"id_str":"24382634","name":"Abby McDonald","screen_name":"abbymcdonald","location":"Los Angeles","url":"http:\/\/abbywritesbooks.tumblr.com","description":"New York Times bestselling author & screenwriter. Not-so-secret identities include Abigail Haas and Melody Grace.","protected":false,"verified":false,"followers_count":2214,"friends_count":518,"listed_count":126,"favourites_count":7235,"statuses_count":18982,"created_at":"Sat Mar 14 15:28:53 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610951781422493696\/dUf6fv2g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610951781422493696\/dUf6fv2g_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GxngpLYFdd","expanded_url":"http:\/\/ow.ly\/2bwcjb","display_url":"ow.ly\/2bwcjb","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031659"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875577675776,"id_str":"663727875577675776","text":"\u4ffa\u306eiPhone\u6b7b\u306e\u5bf8\u524d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419995146,"id_str":"2419995146","name":"\u306e\u305e","screen_name":"0316Nozo","location":null,"url":null,"description":"\u718a\u8c37\u897f\u9ad8\u68212-3\/\u9678\u4e0a\u90e8 \u7832\u4e38\u6295\u3052 \u5186\u76e4\u6295\u3052\/\u30d1\u30ba\u30c9\u30e9\/Deemo\/Cytus\/\u30de\u30a4\u30af\u30e9pe","protected":false,"verified":false,"followers_count":374,"friends_count":452,"listed_count":1,"favourites_count":449,"statuses_count":6265,"created_at":"Mon Mar 31 04:43:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659321100631867392\/xw5S1Zov_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659321100631867392\/xw5S1Zov_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419995146\/1447064024","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031662"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875590262785,"id_str":"663727875590262785","text":"RT @apnabanker: \u091c\u092f \u0936\u094d\u0930\u0940 \u0930\u093e\u092e https:\/\/t.co\/rIcRJpyA9U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65683207,"id_str":"65683207","name":"The Eagle.","screen_name":"Pratap061061","location":"INDIA","url":"https:\/\/mobile.twitter.com","description":"\u092a\u094d\u0930\u0924\u093e\u092a \u0938\u093f\u0902\u0939=\u091c\u092f\u0939\u093f\u0928\u094d\u0926 \nINDIAN ARMY (R). COUNTRY FIRST,RIGHT OR WRONG. RESPECTS\nALL RELIGIONs,\nLIKE JOKES, RT ONLY ON LIKE,\n(TWEETS IN FAV) \u0915\u0930\u094d\u092e \u0939\u0940 \u0927\u0930\u094d\u092e","protected":false,"verified":false,"followers_count":6467,"friends_count":2656,"listed_count":179,"favourites_count":46545,"statuses_count":167778,"created_at":"Fri Aug 14 17:13:12 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636870697579515909\/NnzlEsH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636870697579515909\/NnzlEsH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65683207\/1444731955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 23 14:00:41 +0000 2015","id":657557258771955712,"id_str":"657557258771955712","text":"\u091c\u092f \u0936\u094d\u0930\u0940 \u0930\u093e\u092e https:\/\/t.co\/rIcRJpyA9U","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3445661594,"id_str":"3445661594","name":"apnabanker ( Loans )","screen_name":"apnabanker","location":"DELHI NCR METROPOLITAN CITIES ","url":null,"description":"EMI FREE PERSONAL LOANS UPTO 25 LACS, Sanction in just 2 hours!!! Flexible payment,No prepayment charges, Bajaj Finserve # 9999079101 mobile","protected":false,"verified":false,"followers_count":940,"friends_count":411,"listed_count":32,"favourites_count":305,"statuses_count":38710,"created_at":"Fri Sep 04 07:29:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639820147675365376\/flEmhy9m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639820147675365376\/flEmhy9m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3445661594\/1441371111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657557255731081216,"id_str":"657557255731081216","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","url":"https:\/\/t.co\/rIcRJpyA9U","display_url":"pic.twitter.com\/rIcRJpyA9U","expanded_url":"http:\/\/twitter.com\/apnabanker\/status\/657557258771955712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":479,"h":479,"resize":"fit"},"large":{"w":479,"h":479,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657557255731081216,"id_str":"657557255731081216","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","url":"https:\/\/t.co\/rIcRJpyA9U","display_url":"pic.twitter.com\/rIcRJpyA9U","expanded_url":"http:\/\/twitter.com\/apnabanker\/status\/657557258771955712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":479,"h":479,"resize":"fit"},"large":{"w":479,"h":479,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"apnabanker","name":"apnabanker ( Loans )","id":3445661594,"id_str":"3445661594","indices":[3,14]}],"symbols":[],"media":[{"id":657557255731081216,"id_str":"657557255731081216","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","url":"https:\/\/t.co\/rIcRJpyA9U","display_url":"pic.twitter.com\/rIcRJpyA9U","expanded_url":"http:\/\/twitter.com\/apnabanker\/status\/657557258771955712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":479,"h":479,"resize":"fit"},"large":{"w":479,"h":479,"resize":"fit"}},"source_status_id":657557258771955712,"source_status_id_str":"657557258771955712","source_user_id":3445661594,"source_user_id_str":"3445661594"}]},"extended_entities":{"media":[{"id":657557255731081216,"id_str":"657557255731081216","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAc1xdU8AARrFs.jpg","url":"https:\/\/t.co\/rIcRJpyA9U","display_url":"pic.twitter.com\/rIcRJpyA9U","expanded_url":"http:\/\/twitter.com\/apnabanker\/status\/657557258771955712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":479,"h":479,"resize":"fit"},"large":{"w":479,"h":479,"resize":"fit"}},"source_status_id":657557258771955712,"source_status_id_str":"657557258771955712","source_user_id":3445661594,"source_user_id_str":"3445661594"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080031665"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875561021440,"id_str":"663727875561021440","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244584623,"id_str":"3244584623","name":"Jehudi Masseo","screen_name":"fuwyxomotun","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":277,"friends_count":1468,"listed_count":1,"favourites_count":13846,"statuses_count":17795,"created_at":"Sun May 10 07:54:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643453532352421888\/2QzDZzuM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643453532352421888\/2QzDZzuM_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1629,"favorite_count":1008,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031658"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875590262784,"id_str":"663727875590262784","text":"\u3044\u3064\u3082\u306e\u4eba\u5f85\u6a5f","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188208526,"id_str":"188208526","name":"\u30ea\u30b7\u30a2\u30f3\u30b5\u30b9","screen_name":"Lisianthus_JPN","location":"\u84bc\u7a7a\u5e02\u5149\u967d\u753a","url":null,"description":"\u3084\u3081\u3066\uff01\u3064\u3064\u304b\u306a\u3044\u3067\uff01\uff01\u8b1d\u308b\u304b\u3089\uff01\uff01\uff01\r\n\u795e\u738b\u69d8\u306e\u5a18\u306a\u306e\u3067\u60aa\u3057\u304b\u3089\u305a\u3002\r\n\u3061\u3087\u3063\u3068\u9577\u3044\u540d\u524d\u306a\u306e\u3067\u300c\u30b7\u30a2\u300d\u3063\u3066\u547c\u3093\u3067\u304f\u3060\u3055\u3044\u3002\r\n\u79c1\u306e\u4e8b\u304c\u5acc\u3044\u306a\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067\u306d\u3002\r\n2015\u5e744\u67085\u65e5\u304b\u3089\u4e2d\u306e\u4eba\u306f3\u4ee3\u76ee\u3002\u3000\r\nhttp:\/\/twpf.jp\/Lisianthus_JPN","protected":false,"verified":false,"followers_count":332,"friends_count":254,"listed_count":10,"favourites_count":1009,"statuses_count":64412,"created_at":"Wed Sep 08 04:54:10 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181841088\/Z9nez1GA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181841088\/Z9nez1GA.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3118449091\/6df6e7f99c82ef1b49d9005d7cf1cce0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3118449091\/6df6e7f99c82ef1b49d9005d7cf1cce0_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031665"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875573485572,"id_str":"663727875573485572","text":"\u4e88\u7d04\u3057\u305f\u65b9\u304c\u826f\u3044\u3067\u3059\u304b\uff1f\n\u4e88\u7d04\u306a\u3057\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059\u304c\u3001\u590f\u5834\u306e\u30b7\u30fc\u30ba\u30f3\u4e2d\uff087\u6708\uff5e9\u6708\uff09\u306f\u56e3\u4f53\u5229\u7528\u3084\u30a4\u30d9\u30f3\u30c8\u7b49\u3067\u8fbc\u307f\u5408\u3063\u3066\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3001\u304a\u96fb\u8a71\u306b\u3066\u304a\u554f\u3044\u5408\u308f\u305b\u9858\u3044\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/www.twisuke.com\" rel=\"nofollow\"\u003e\u30c4\u30a4\u52a9\u3002\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3205417309,"id_str":"3205417309","name":"YoRoN_B&G Marin Culb","screen_name":"YoRoN_BGMC","location":"\u9e7f\u5150\u5cf6\u770c\u5927\u5cf6\u90e1\u4e0e\u8ad6\u753a","url":"http:\/\/yoron-b-and-g.seesaa.net","description":"\u4e0e\u8ad6\u753a\uff22\uff06\uff27\u6d77\u6d0b\u30bb\u30f3\u30bf\u30fc\u3068\u306f\uff1f\n\u4e0e\u8ad6\u753a\uff22\uff06\uff27\u6d77\u6d0b\u30bb\u30f3\u30bf\u30fc\u3000\u8247\u5eab\n\u4f4f\u6240 \/\u9e7f\u5150\u5cf6\u770c \u5927\u5cf6\u90e1\u4e0e\u8ad6\u753a \u8336\u82b12466\u756a\u5730\uff11\nTEL \/0997-97-5033\n\uff25-mail \/yoronbg@gmail.com\n\u55b6\u696d\u6642\u9593 \/9:00\uff5e17:00\n\u4f11\u9928\u65e5 \/\u6c34\u66dc\u65e5\nhttp:\/\/www.yorontou.info\/hp\/a006","protected":false,"verified":false,"followers_count":5,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":1938,"created_at":"Sun May 17 13:02:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599923229969395712\/GgP4hl9J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599923229969395712\/GgP4hl9J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3205417309\/1431868430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031661"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875585998848,"id_str":"663727875585998848","text":"RT @iipum: \u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e15\u0e2d\u0e19\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e1e\u0e27\u0e01\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21\u0e15\u0e31\u0e27\u0e01\u0e31\u0e19\u0e43\u0e19\u0e23\u0e31\u0e19\u0e19\u0e34\u0e48\u0e07\u0e41\u0e21\u0e19 https:\/\/t.co\/kdUrOTu1YT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2304724902,"id_str":"2304724902","name":"\ubb34\ud06c","screen_name":"BMPSH","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":75,"friends_count":163,"listed_count":0,"favourites_count":307,"statuses_count":8469,"created_at":"Wed Jan 22 11:52:50 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538701753567285248\/s72VvZlD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538701753567285248\/s72VvZlD.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663017900601511936\/KzoEykMx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663017900601511936\/KzoEykMx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304724902\/1446823715","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:51 +0000 2015","id":663727203188772864,"id_str":"663727203188772864","text":"\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e15\u0e2d\u0e19\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e1e\u0e27\u0e01\u0e19\u0e35\u0e49\u0e23\u0e27\u0e21\u0e15\u0e31\u0e27\u0e01\u0e31\u0e19\u0e43\u0e19\u0e23\u0e31\u0e19\u0e19\u0e34\u0e48\u0e07\u0e41\u0e21\u0e19 https:\/\/t.co\/kdUrOTu1YT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":270380549,"id_str":"270380549","name":"\u0e0a\u0e2d\u0e1a\u0e1a\u0e48\u0e19 \u2655","screen_name":"iipum","location":"Thailand \u0e14\u0e34\u0e19\u0e41\u0e14\u0e19\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e2d\u0e23\u0e48\u0e2d\u0e22 ","url":null,"description":"Twitter \u0e21\u0e35\u0e44\u0e27\u0e49\u0e1a\u0e48\u0e19!! \u0e17\u0e27\u0e34\u0e15\u0e17\u0e38\u0e01\u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e1e\u0e2d\u0e43\u0e08 \u0e17\u0e27\u0e34\u0e15\u0e17\u0e38\u0e01\u0e40\u0e27\u0e25\u0e32 \u0e1a\u0e48\u0e19\u0e17\u0e38\u0e01\u0e2a\u0e34\u0e48\u0e07\u0e43\u0e19\u0e0a\u0e35\u0e27\u0e34\u0e15 \u0e0a\u0e2d\u0e1a\u0e17\u0e27\u0e34\u0e15\u0e23\u0e39\u0e1b\u0e1c\u0e0a. \u0e15\u0e34\u0e48\u0e07\u0e07\u0e32\u0e19\u0e23\u0e2d\u0e07\u0e1a\u0e48\u0e19\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01... #RunningMan #2PM #BIGBANG #WINNER #\u0e41\u0e1d\u0e14\u0e2a\u0e32\u0e21 \u2764","protected":false,"verified":false,"followers_count":26205,"friends_count":267,"listed_count":22,"favourites_count":3083,"statuses_count":104184,"created_at":"Tue Mar 22 14:23:30 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/879869496\/38d3c6bc4a40498e5d5d7f4148f8c30b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/879869496\/38d3c6bc4a40498e5d5d7f4148f8c30b.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651034661037084672\/ZFCnwMIy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651034661037084672\/ZFCnwMIy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270380549\/1413063095","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727201154560001,"id_str":"663727201154560001","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","url":"https:\/\/t.co\/kdUrOTu1YT","display_url":"pic.twitter.com\/kdUrOTu1YT","expanded_url":"http:\/\/twitter.com\/iipum\/status\/663727203188772864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":922,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727201154560001,"id_str":"663727201154560001","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","url":"https:\/\/t.co\/kdUrOTu1YT","display_url":"pic.twitter.com\/kdUrOTu1YT","expanded_url":"http:\/\/twitter.com\/iipum\/status\/663727203188772864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":922,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iipum","name":"\u0e0a\u0e2d\u0e1a\u0e1a\u0e48\u0e19 \u2655","id":270380549,"id_str":"270380549","indices":[3,9]}],"symbols":[],"media":[{"id":663727201154560001,"id_str":"663727201154560001","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","url":"https:\/\/t.co\/kdUrOTu1YT","display_url":"pic.twitter.com\/kdUrOTu1YT","expanded_url":"http:\/\/twitter.com\/iipum\/status\/663727203188772864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":922,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663727203188772864,"source_status_id_str":"663727203188772864","source_user_id":270380549,"source_user_id_str":"270380549"}]},"extended_entities":{"media":[{"id":663727201154560001,"id_str":"663727201154560001","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIX3SU8AE0y9t.jpg","url":"https:\/\/t.co\/kdUrOTu1YT","display_url":"pic.twitter.com\/kdUrOTu1YT","expanded_url":"http:\/\/twitter.com\/iipum\/status\/663727203188772864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":922,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663727203188772864,"source_status_id_str":"663727203188772864","source_user_id":270380549,"source_user_id_str":"270380549"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080031664"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875573604352,"id_str":"663727875573604352","text":"RT @MirandaMiller: I'm feeling sassy get me off of Twitter","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2783973303,"id_str":"2783973303","name":"maja fee","screen_name":"majaritter","location":null,"url":null,"description":"im takin u w me","protected":false,"verified":false,"followers_count":211,"friends_count":49,"listed_count":1,"favourites_count":5931,"statuses_count":8159,"created_at":"Thu Sep 25 17:56:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531244037970624512\/rsSKSSnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531244037970624512\/rsSKSSnY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2783973303\/1434298223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:47:17 +0000 2015","id":663608782144978944,"id_str":"663608782144978944","text":"I'm feeling sassy get me off of Twitter","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521924047,"id_str":"521924047","name":"Miranda Miller","screen_name":"MirandaMiller","location":"Insta: mirandadianemiller","url":"http:\/\/dreamandfallintoreality.tumblr.com","description":"Guitarist, Keyboardist, and Singer in Hey Violet. Meet me in Montauk.","protected":false,"verified":true,"followers_count":163739,"friends_count":7033,"listed_count":788,"favourites_count":22969,"statuses_count":9182,"created_at":"Mon Mar 12 03:42:37 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447046360\/tumblr_lykcwy4sDW1r7ep3ao1_500.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447046360\/tumblr_lykcwy4sDW1r7ep3ao1_500.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661383139579727872\/_1mjfPBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661383139579727872\/_1mjfPBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521924047\/1443581229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":567,"favorite_count":1214,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MirandaMiller","name":"Miranda Miller","id":521924047,"id_str":"521924047","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031661"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875581829120,"id_str":"663727875581829120","text":"\u3048\u3063\u3042\u3057\u305f\u30ab\u30a4\u30aa\u30fc\u30ac\u3000\u3042\u3063","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":121045326,"id_str":"121045326","name":"YYYYYYYYYYYYYYYYYYYY","screen_name":"negisshi","location":"\u3081\u3056\u3081\u306e\u307b\u3053\u3089","url":"http:\/\/twpf.jp\/negisshi","description":"\u6210\u4eba\u6e08\u8150\u3002\u30d5\u30a9\u30ed\u30fc\u524d\u306b\u5fc5\u305aweb\u3092\u3054\u4e00\u8aad\u304f\u3060\u3055\u3044\u3002\/\u30ca\u30eb\u30c8\u306f\u3053\u3053 http:\/\/okobore.tumblr.com\/","protected":false,"verified":false,"followers_count":377,"friends_count":353,"listed_count":37,"favourites_count":12225,"statuses_count":76687,"created_at":"Mon Mar 08 08:52:13 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/374222632\/___.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/374222632\/___.jpg","profile_background_tile":true,"profile_link_color":"32CD32","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650930726074904576\/bOWKTTY5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650930726074904576\/bOWKTTY5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121045326\/1432297614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031663"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875577671680,"id_str":"663727875577671680","text":"@941004301_0321 \uba3c\uac00 \uc12d\uc774\ubc1c\uac19\uc740\ub300","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727668278333440,"in_reply_to_status_id_str":"663727668278333440","in_reply_to_user_id":782133691,"in_reply_to_user_id_str":"782133691","in_reply_to_screen_name":"941004301_0321","user":{"id":3310712676,"id_str":"3310712676","name":"\ub420\uc218\ub2c8 \ubaa8\uc544 \u25cf\u03c9\u25cf","screen_name":"_1990_ye","location":"\ub124\ubc84\ub79c\ub4dc","url":null,"description":"15.10.21 \uc74c\uc545\ubc29\uc1a1 \uccab1\uc704","protected":false,"verified":false,"followers_count":140,"friends_count":95,"listed_count":0,"favourites_count":123,"statuses_count":2881,"created_at":"Sun Aug 09 17:15:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659726932863352832\/35QQt6_N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659726932863352832\/35QQt6_N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310712676\/1445435198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"941004301_0321","name":"\uc464\ub9e4 \u25cf\u3141\u25cf","id":782133691,"id_str":"782133691","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080031662"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875560882178,"id_str":"663727875560882178","text":"@claudinelayos i miss u where are u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":120707319,"in_reply_to_user_id_str":"120707319","in_reply_to_screen_name":"claudinelayos","user":{"id":367740689,"id_str":"367740689","name":"NIALUM","screen_name":"MayeDay_","location":"PHL-SG","url":"http:\/\/physxosimplicty.tumblr.com\/","description":"Fangirling Of Some sort","protected":false,"verified":false,"followers_count":643,"friends_count":1021,"listed_count":1,"favourites_count":4508,"statuses_count":21614,"created_at":"Sun Sep 04 13:54:01 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516214409786429440\/Tx7Sj5tS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516214409786429440\/Tx7Sj5tS.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662612433001836544\/5No4SCek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662612433001836544\/5No4SCek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367740689\/1446814087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"claudinelayos","name":"claudine","id":120707319,"id_str":"120707319","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031658"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875565092864,"id_str":"663727875565092864","text":"@bolm181 \ud638\ud5e4\ud5e4\ud5e4~~","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727706681442304,"in_reply_to_status_id_str":"663727706681442304","in_reply_to_user_id":3803721373,"in_reply_to_user_id_str":"3803721373","in_reply_to_screen_name":"bolm181","user":{"id":3888109100,"id_str":"3888109100","name":"\ubbf8\ud2b8(o) \ubbf8\ud2b8\ubcfc(x)","screen_name":"sorrytroll","location":null,"url":null,"description":"\uc0c6\u2606\ucc3d\u2606\uc778\u2606\uc0dd\/4x\uae09 \uc6b0\uc6b0.. \uc790\ub77c\ub098\ub77c \uae09\uc218! \ub298\uc5b4\ub098\ub77c \uc0c6\ucc3d\uc778\uc0dd! \/ \uc778\uc7a5\uace0\ub9c8\uc6cc \ud788\uce74\uc624\ube60!!! \ud5e4\ub354\uace0\ub9c8\uc6cc \ubc0d\ubc0d\uc544!!!!\/'\u2661'","protected":false,"verified":false,"followers_count":7,"friends_count":9,"listed_count":0,"favourites_count":4,"statuses_count":122,"created_at":"Wed Oct 14 04:53:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660816729388355584\/6qsI9zIS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660816729388355584\/6qsI9zIS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3888109100\/1446389014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bolm181","name":"\ud788\uce74\uc57c\uc548\ub155!!!!","id":3803721373,"id_str":"3803721373","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080031659"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875556663296,"id_str":"663727875556663296","text":"RT @jwest_nana: \u3010\u306a\u306b\u308f\u4f8d\u3011\n\n\u795e\u5c71\u304f\u3093&\u4e94\u5341\u5d50\u304f\u3093&\u91cd\u5ca1\u304f\u3093\uff08\u7b11\uff09 https:\/\/t.co\/N2O3qQpQla","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1717913910,"id_str":"1717913910","name":"\u041aOHA\u042fU;)","screen_name":"AmnosKoha58","location":"\u3059\u307f\u3063\u3053or\u30b0\u30e9\u30a6\u30f3\u30c9","url":"http:\/\/instagram.com\/k_jasmine423","description":"HOKKAI3-1\/\u2661\u2665\ufe0e\u9ec4\u8272\u306e\u6226\u58eb\u305f\u3061\u26bd\ufe0f\u2665\ufe0e\u2661\/Johnny's\/\u8679\u8272\u30b8\u30e3\u30b9\u6c11&ARASHIANS\u30aa\u30fc\u30eb\u30e1\u30f3\/\u30b5\u30c3\u30ab\u30fc\u7528\u2192@58soccer0305","protected":false,"verified":false,"followers_count":778,"friends_count":743,"listed_count":0,"favourites_count":6066,"statuses_count":6583,"created_at":"Sun Sep 01 05:53:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655019520117989377\/iUJpHAEa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655019520117989377\/iUJpHAEa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1717913910\/1442110427","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 12:23:53 +0000 2015","id":661881548958928896,"id_str":"661881548958928896","text":"\u3010\u306a\u306b\u308f\u4f8d\u3011\n\n\u795e\u5c71\u304f\u3093&\u4e94\u5341\u5d50\u304f\u3093&\u91cd\u5ca1\u304f\u3093\uff08\u7b11\uff09 https:\/\/t.co\/N2O3qQpQla","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287153708,"id_str":"3287153708","name":"\u30b8\u30e3\u30cb\u30b9\u30c8&\u95a2\u30b8\u30e5\u2606\u52d5\u753b","screen_name":"jwest_nana","location":null,"url":null,"description":"\u9069\u5f53\u306b\u52d5\u753b\u6d41\u3057\u307e\u3059\u2765\u2765\u2765 \u97f3\u304c\u5c0f\u3055\u3044\u52d5\u753b\u304c\u3042\u308a\u307e\u3059(\u00b4\u00b0\u03c9\u00b0\uff40)","protected":false,"verified":false,"followers_count":5259,"friends_count":68,"listed_count":15,"favourites_count":21,"statuses_count":347,"created_at":"Wed Jul 22 04:40:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630724114450264065\/oOei2Upu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630724114450264065\/oOei2Upu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287153708\/1440870800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":283,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661881397343207424,"id_str":"661881397343207424","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","url":"https:\/\/t.co\/N2O3qQpQla","display_url":"pic.twitter.com\/N2O3qQpQla","expanded_url":"http:\/\/twitter.com\/jwest_nana\/status\/661881548958928896\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661881397343207424,"id_str":"661881397343207424","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","url":"https:\/\/t.co\/N2O3qQpQla","display_url":"pic.twitter.com\/N2O3qQpQla","expanded_url":"http:\/\/twitter.com\/jwest_nana\/status\/661881548958928896\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30030,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/640x360\/LRwI0vdXcIx50fFO.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/320x180\/pR2yUKntzMFaeNuh.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/640x360\/LRwI0vdXcIx50fFO.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/pl\/aqpdLlOFpPEAQGE8.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/pl\/aqpdLlOFpPEAQGE8.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jwest_nana","name":"\u30b8\u30e3\u30cb\u30b9\u30c8&\u95a2\u30b8\u30e5\u2606\u52d5\u753b","id":3287153708,"id_str":"3287153708","indices":[3,14]}],"symbols":[],"media":[{"id":661881397343207424,"id_str":"661881397343207424","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","url":"https:\/\/t.co\/N2O3qQpQla","display_url":"pic.twitter.com\/N2O3qQpQla","expanded_url":"http:\/\/twitter.com\/jwest_nana\/status\/661881548958928896\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661881548958928896,"source_status_id_str":"661881548958928896","source_user_id":3287153708,"source_user_id_str":"3287153708"}]},"extended_entities":{"media":[{"id":661881397343207424,"id_str":"661881397343207424","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661881397343207424\/pu\/img\/W663-a3gN8eaGWmZ.jpg","url":"https:\/\/t.co\/N2O3qQpQla","display_url":"pic.twitter.com\/N2O3qQpQla","expanded_url":"http:\/\/twitter.com\/jwest_nana\/status\/661881548958928896\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661881548958928896,"source_status_id_str":"661881548958928896","source_user_id":3287153708,"source_user_id_str":"3287153708","video_info":{"aspect_ratio":[16,9],"duration_millis":30030,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/640x360\/LRwI0vdXcIx50fFO.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/320x180\/pR2yUKntzMFaeNuh.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/vid\/640x360\/LRwI0vdXcIx50fFO.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/pl\/aqpdLlOFpPEAQGE8.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661881397343207424\/pu\/pl\/aqpdLlOFpPEAQGE8.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031657"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569225728,"id_str":"663727875569225728","text":"RT @tittyandco_: titty&Co.\u3067\u306f11\/13(\u91d1)\uff5e\uffe517000\u4ee5\u4e0a\u304a\u8cb7\u3044\u4e0a\u3052\u3067\u30eb\u30fc\u30e0\u30a6\u30a7\u30a2\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\uff01\u305d\u3053\u3067@tittyandco_\u3092\u30d5\u30a9\u30ed\u30fc\uff06\u5bfe\u8c61\u30c4\u30a4\u30fc\u30c8RT\u30671\u540d\u69d8\u306b\u30d7\u30ec\u30bc\u30f3\u30c8\u2661\u5fdc\u52df\u306f11\/11(\u6c34)\u307e\u3067\uff01\u3054\u53c2\u52a0\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u2661 https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994687894,"id_str":"2994687894","name":"MISA\u2445","screen_name":"__sunflowerO4__","location":null,"url":null,"description":"\u3089\uff5e\u3089\uff5e\u3089\uff5e\u3089\uff5e","protected":false,"verified":false,"followers_count":8,"friends_count":26,"listed_count":0,"favourites_count":132,"statuses_count":61,"created_at":"Sat Jan 24 14:25:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623770869710454784\/OpyziXPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623770869710454784\/OpyziXPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994687894\/1436667164","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:04:06 +0000 2015","id":663673412410150912,"id_str":"663673412410150912","text":"titty&Co.\u3067\u306f11\/13(\u91d1)\uff5e\uffe517000\u4ee5\u4e0a\u304a\u8cb7\u3044\u4e0a\u3052\u3067\u30eb\u30fc\u30e0\u30a6\u30a7\u30a2\u3092\u30d7\u30ec\u30bc\u30f3\u30c8\uff01\u305d\u3053\u3067@tittyandco_\u3092\u30d5\u30a9\u30ed\u30fc\uff06\u5bfe\u8c61\u30c4\u30a4\u30fc\u30c8RT\u30671\u540d\u69d8\u306b\u30d7\u30ec\u30bc\u30f3\u30c8\u2661\u5fdc\u52df\u306f11\/11(\u6c34)\u307e\u3067\uff01\u3054\u53c2\u52a0\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u2661 https:\/\/t.co\/1QuoyOgqoQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231739224,"id_str":"231739224","name":"titty&Co.","screen_name":"tittyandco_","location":"Tokyo Japan","url":"http:\/\/tittyandco.com","description":"titty&Co.\u516c\u5f0ftwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u30cb\u30e5\u30fc\u30b9\u3084\u30a4\u30d9\u30f3\u30c8\u3001\u5165\u8377\u5546\u54c1\u306a\u3069\u306e\u6700\u65b0\u60c5\u5831\u3092tweet\u3057\u307e\u3059!","protected":false,"verified":false,"followers_count":56240,"friends_count":535,"listed_count":649,"favourites_count":9,"statuses_count":4410,"created_at":"Wed Dec 29 09:52:01 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEBF6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435290526296715264\/cEyuF1ND.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435290526296715264\/cEyuF1ND.jpeg","profile_background_tile":true,"profile_link_color":"FA8DC9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636114395056095232\/1FdvsHJ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636114395056095232\/1FdvsHJ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231739224\/1440589125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":463,"favorite_count":141,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tittyandco_","name":"titty&Co.","id":231739224,"id_str":"231739224","indices":[54,66]}],"symbols":[],"media":[{"id":663673411323891712,"id_str":"663673411323891712","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","url":"https:\/\/t.co\/1QuoyOgqoQ","display_url":"pic.twitter.com\/1QuoyOgqoQ","expanded_url":"http:\/\/twitter.com\/tittyandco_\/status\/663673412410150912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":685,"resize":"fit"},"large":{"w":600,"h":685,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673411323891712,"id_str":"663673411323891712","indices":[119,142],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","url":"https:\/\/t.co\/1QuoyOgqoQ","display_url":"pic.twitter.com\/1QuoyOgqoQ","expanded_url":"http:\/\/twitter.com\/tittyandco_\/status\/663673412410150912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":685,"resize":"fit"},"large":{"w":600,"h":685,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tittyandco_","name":"titty&Co.","id":231739224,"id_str":"231739224","indices":[3,15]},{"screen_name":"tittyandco_","name":"titty&Co.","id":231739224,"id_str":"231739224","indices":[71,83]}],"symbols":[],"media":[{"id":663673411323891712,"id_str":"663673411323891712","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","url":"https:\/\/t.co\/1QuoyOgqoQ","display_url":"pic.twitter.com\/1QuoyOgqoQ","expanded_url":"http:\/\/twitter.com\/tittyandco_\/status\/663673412410150912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":685,"resize":"fit"},"large":{"w":600,"h":685,"resize":"fit"}},"source_status_id":663673412410150912,"source_status_id_str":"663673412410150912","source_user_id":231739224,"source_user_id_str":"231739224"}]},"extended_entities":{"media":[{"id":663673411323891712,"id_str":"663673411323891712","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXc4jVEAAKx5N.jpg","url":"https:\/\/t.co\/1QuoyOgqoQ","display_url":"pic.twitter.com\/1QuoyOgqoQ","expanded_url":"http:\/\/twitter.com\/tittyandco_\/status\/663673412410150912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":685,"resize":"fit"},"large":{"w":600,"h":685,"resize":"fit"}},"source_status_id":663673412410150912,"source_status_id_str":"663673412410150912","source_user_id":231739224,"source_user_id_str":"231739224"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875586060288,"id_str":"663727875586060288","text":"@sasyaP2 \u3051\u3069\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725931672956928,"in_reply_to_status_id_str":"663725931672956928","in_reply_to_user_id":1864127023,"in_reply_to_user_id_str":"1864127023","in_reply_to_screen_name":"sasyaP2","user":{"id":3166570532,"id_str":"3166570532","name":"\u305f\u304b\u3057\u3083\u3093\u3074\u3063\u3074\u301c","screen_name":"boc_takamura","location":"\u4f50\u5009\u5e02","url":"http:\/\/instagram.com\/cosmonaut_boc","description":"\u4fe1\u3058\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u304f\u306a\u308a\u3064\u3064\u3001\u3001\u305f\u3051\u3057\u305fhttp:\/\/twpf.jp\/boc_takamura\u30b3\u30f3\u30d3\u30cb\u306f\u30ed\u30fc\u30bd\u30f3\u6d3e\u3067\u3059\u3051\u3069\u3001\u30b3\u30fc\u30d2\u30fc\u306f\u30bb\u30d6\u30f3\u6d3e","protected":false,"verified":false,"followers_count":230,"friends_count":248,"listed_count":0,"favourites_count":2273,"statuses_count":6697,"created_at":"Tue Apr 21 10:44:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659061493518827522\/Gcap6NfB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659061493518827522\/Gcap6NfB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166570532\/1445715256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sasyaP2","name":"\u3051\u3044","id":1864127023,"id_str":"1864127023","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031664"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875590197249,"id_str":"663727875590197249","text":"@629storm \n\u3046\u305d\uff01\u898b\u305f\u304b\u3063\u305f\u2026\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724982237683712,"in_reply_to_status_id_str":"663724982237683712","in_reply_to_user_id":1271409246,"in_reply_to_user_id_str":"1271409246","in_reply_to_screen_name":"629storm","user":{"id":1534136059,"id_str":"1534136059","name":"\u3055\u306e\u3042\u305a\u3055","screen_name":"kuroazzu312274","location":null,"url":null,"description":"\u85e4\u679d\u6771\u9ad8\u2192\u6559\u80b2\u5b66\u90e8\u521d\u7b49\u6559\u80b2\u56fd\u8a9e\u5c02\u653b\/tennis\/Disney\/anime\/Schalke 04\u2022\u5185\u7530\u2022Roman\u2022S-PULSE\u2022DOS\u5973\u5b50\u2022#03#10#33","protected":false,"verified":false,"followers_count":388,"friends_count":374,"listed_count":2,"favourites_count":1361,"statuses_count":2160,"created_at":"Thu Jun 20 14:50:37 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658295369231523840\/UlAjg8qB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658295369231523840\/UlAjg8qB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1534136059\/1445081149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"629storm","name":"Ayusa","id":1271409246,"id_str":"1271409246","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031665"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875586150400,"id_str":"663727875586150400","text":"@AletheiasCZ Regis. Regis. Regis. Regis. Je to Regis, \u017ee jo ? Proto\u017ee Regis. Ale Saskii bych taky r\u00e1d vid\u011bl :)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711514206060544,"in_reply_to_status_id_str":"663711514206060544","in_reply_to_user_id":82325253,"in_reply_to_user_id_str":"82325253","in_reply_to_screen_name":"AletheiasCZ","user":{"id":2242636988,"id_str":"2242636988","name":"Paul","screen_name":"Paul_cze","location":null,"url":null,"description":"Human being born on Earth, Sol system, Milky Way galaxy","protected":false,"verified":false,"followers_count":9,"friends_count":58,"listed_count":0,"favourites_count":239,"statuses_count":563,"created_at":"Thu Dec 12 16:49:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"cs","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000863200795\/MukpkEZE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000863200795\/MukpkEZE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242636988\/1408117529","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AletheiasCZ","name":"Filip Aleth \u017den\u00ed\u0161ek","id":82325253,"id_str":"82325253","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080031664"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875586064385,"id_str":"663727875586064385","text":"Get Weather Updates from The Weather Channel. 09:40:30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2576718338,"id_str":"2576718338","name":"05843lkta","screen_name":"05843lkta","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":83753,"created_at":"Thu Jun 19 11:35:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031664"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875565207552,"id_str":"663727875565207552","text":"Qu\u00e9 buena banda era Mamonas Assassinas. Una verdadera l\u00e1stima lo qu\u00e9 les pas\u00f3!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":820643906,"id_str":"820643906","name":"Fedee","screen_name":"FedeGrismado","location":"Alvear Corrientes ","url":null,"description":"Vivir es jugar y yo quiero seguir jugando!!! Se\u00f1ores yo soy del gallinero. River, te amo!!!","protected":false,"verified":false,"followers_count":744,"friends_count":470,"listed_count":1,"favourites_count":5562,"statuses_count":56570,"created_at":"Thu Sep 13 01:04:26 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648486929412018176\/59zsDknR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648486929412018176\/59zsDknR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/820643906\/1405990824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080031659"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569250304,"id_str":"663727875569250304","text":"BGM\u306f\u305d\u306e\u5834\u306e\u306e\u308a\u3067\u6c7a\u3081\u3066\u308b\u306a\u30fc ( @merarudo0501 \u30ad\u30e3\u30b9 https:\/\/t.co\/pdEBsIsRdu )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308766709,"id_str":"3308766709","name":"PL\u30b5\u30d0\u30fc\u30ab\u30f3@\u30b5\u30d0\u7f36\uff08\u9bd6\u91ce \u7f36\u592a\u90ce\uff09","screen_name":"PLsaba_kan","location":"\u7a7a\u98db\u3076\u5730\u4e0b\u8857\u30e1\u30eb\u30d8\u30f3\u30cf\u30a6\u30b9","url":"http:\/\/twpf.jp\/PLsaba_kan","description":"\u8d85\u4e09\u6d41\u30b5\u30d0\u7f36\uff08272\uff09\u3067\u3059\u3002Twitter\u540d\u306f\u6d41\u77f3\u306b\u507d\u540d\u3067\u3059\u3088\u3002\u6c17\u8efd\u306b\u3069\u3046\u305e\u3002\u3068\u3066\u3082\u30af\u30aa\u30ea\u30c6\u30a3\u30fc\u306e\u4f4e\u3044\u7d75\u3068\u843d\u66f8\u304d\u3092\u653e\u308a\u6295\u3052\u308b\u65e5\u3005\u3002\u3042\u3068\u3061\u3083\u3063\u304b\u308a\u67b6\u7a7a\u30c7\u30e5\u30a8\u30de\u306a\u308b\u7269\u306b\u624b\u3092\u51fa\u3057\u305f\u308a\u3002\u30cb\u30b3\u751f\u3067\u3075\u3089\u3064\u3044\u3066\u308b\u30b5\u30d0\u7f36\u306f\u50d5\u306e\u53ef\u80fd\u6027\u5927\u3002\u305f\u307e\u306b\u3044\u3063\u3071\u3044\u901a\u77e5\u6765\u308b\u3068\u3082\u308c\u306a\u304f\u6df7\u4e71\u3059\u308b\u306e\u3067\u3054\u4e86\u627f\u3092\u3002\u7a00\u306b\u7121\u8a00\u30d5\u30a9\u30ed\u30fc","protected":false,"verified":false,"followers_count":70,"friends_count":97,"listed_count":1,"favourites_count":220,"statuses_count":2428,"created_at":"Fri Aug 07 12:09:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662972092204236804\/JNsjABCf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662972092204236804\/JNsjABCf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308766709\/1446874312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pdEBsIsRdu","expanded_url":"http:\/\/cas.st\/cd3b1d5","display_url":"cas.st\/cd3b1d5","indices":[38,61]}],"user_mentions":[{"screen_name":"MeRarudo0501","name":"\u30e9\u30eb\u30c9@\u52d5\u753b\u57a2","id":4019216599,"id_str":"4019216599","indices":[20,33]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875556814849,"id_str":"663727875556814849","text":"RT @wantodiepls: Incluias-me no teu \u00faltimo dia de vida ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1917911652,"id_str":"1917911652","name":"b3ar","screen_name":"sportin_guista","location":"Est\u00e1dio de Alvalade ","url":"http:\/\/stupid-bastard-grr.tumblr.com\/","description":"|N\u00e3o digo nada de jeito, digo coisas sem nexo, o Sporting \u00e9 a minha vida, sou um peixe fora de \u00e1gua, sou amante de GTA, 21|","protected":false,"verified":false,"followers_count":686,"friends_count":461,"listed_count":5,"favourites_count":21203,"statuses_count":20219,"created_at":"Sun Sep 29 19:29:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663431067089661952\/HgryhTdt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663431067089661952\/HgryhTdt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1917911652\/1447009265","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:27:22 +0000 2015","id":663422576518148099,"id_str":"663422576518148099","text":"Incluias-me no teu \u00faltimo dia de vida ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2837223047,"id_str":"2837223047","name":"....","screen_name":"wantodiepls","location":null,"url":null,"description":"Carrego nos pulsos todas as vezes em que desejei morrer . \nO que n\u00e3o me mata, faz-me querer estar morta .","protected":false,"verified":false,"followers_count":22760,"friends_count":12455,"listed_count":6,"favourites_count":1392,"statuses_count":8462,"created_at":"Sun Oct 19 14:20:38 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610240796453957632\/1o7ceLkk.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610240796453957632\/1o7ceLkk.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661962246290055168\/fWq48i5v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661962246290055168\/fWq48i5v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2837223047\/1444831249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":628,"favorite_count":105,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wantodiepls","name":"....","id":2837223047,"id_str":"2837223047","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080031657"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875577610240,"id_str":"663727875577610240","text":"RT @eljsarauhl: Been here for a very long time. Ain't going nowhere #5DaysTillPURPOSE https:\/\/t.co\/lhz7D6MtTv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2869815359,"id_str":"2869815359","name":"CD9 es mi vida","screen_name":"gomez_kavanatic","location":"Nezahualc\u00f3yotl, M\u00e9xico","url":null,"description":"CD9-BigTimeRush-OneDirection.AbrahamMateo-MarioBautista-MichaelJackson.SelenaGomez-VictoriaJustice-SabrinaCarpenter-TaylorSwift.","protected":false,"verified":false,"followers_count":314,"friends_count":630,"listed_count":2,"favourites_count":1277,"statuses_count":1645,"created_at":"Mon Nov 10 00:00:26 +0000 2014","utc_offset":-21600,"time_zone":"Monterrey","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594674439754686464\/rmESSpNk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594674439754686464\/rmESSpNk.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650038005500022784\/FLeFngPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650038005500022784\/FLeFngPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2869815359\/1443725849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:12:23 +0000 2015","id":663479201979346944,"id_str":"663479201979346944","text":"Been here for a very long time. Ain't going nowhere #5DaysTillPURPOSE https:\/\/t.co\/lhz7D6MtTv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":316733508,"id_str":"316733508","name":"GRAZIE JUSTIN","screen_name":"eljsarauhl","location":"Italy","url":"https:\/\/twitter.com\/justinbieber\/status\/326679415012610048","description":"\u007b#PreorderPURPOSEOnItunes\u007d \u2022 he followed on twitter & shots , liked my shot(x2) faved(x2), tweeted, rted(x2) \u2022 thanks for everything @justinbieber","protected":false,"verified":false,"followers_count":30552,"friends_count":17818,"listed_count":68,"favourites_count":34045,"statuses_count":165915,"created_at":"Mon Jun 13 21:58:31 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497132303290605568\/klNSm4rb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497132303290605568\/klNSm4rb.jpeg","profile_background_tile":false,"profile_link_color":"98A5AB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660621773940068353\/J7DMhphW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660621773940068353\/J7DMhphW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/316733508\/1446936229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17321,"favorite_count":21675,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[52,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"extended_entities":{"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[68,85]}],"urls":[],"user_mentions":[{"screen_name":"eljsarauhl","name":"GRAZIE JUSTIN","id":316733508,"id_str":"316733508","indices":[3,14]}],"symbols":[],"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"extended_entities":{"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031662"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875586060290,"id_str":"663727875586060290","text":"Hiksss https:\/\/t.co\/0OIMAVVAkB\"\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346464151,"id_str":"346464151","name":"Natalie Hwang\u2665","screen_name":"cloudiniyah","location":null,"url":null,"description":"X I L U H A N","protected":false,"verified":false,"followers_count":308,"friends_count":236,"listed_count":0,"favourites_count":187,"statuses_count":7732,"created_at":"Mon Aug 01 09:16:51 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/418651643\/yesung.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/418651643\/yesung.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725772117438464\/VKf_qYGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725772117438464\/VKf_qYGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346464151\/1447079527","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":529213684845797376,"id_str":"529213684845797376","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/B1glCt-CYAAFnaw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1glCt-CYAAFnaw.jpg","url":"https:\/\/t.co\/0OIMAVVAkB","display_url":"pic.twitter.com\/0OIMAVVAkB","expanded_url":"http:\/\/twitter.com\/MemeComicIndo\/status\/529213685017739266\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}},"source_status_id":529213685017739266,"source_status_id_str":"529213685017739266","source_user_id":744314137,"source_user_id_str":"744314137"}]},"extended_entities":{"media":[{"id":529213684845797376,"id_str":"529213684845797376","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/B1glCt-CYAAFnaw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B1glCt-CYAAFnaw.jpg","url":"https:\/\/t.co\/0OIMAVVAkB","display_url":"pic.twitter.com\/0OIMAVVAkB","expanded_url":"http:\/\/twitter.com\/MemeComicIndo\/status\/529213685017739266\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}},"source_status_id":529213685017739266,"source_status_id_str":"529213685017739266","source_user_id":744314137,"source_user_id_str":"744314137"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080031664"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875581804544,"id_str":"663727875581804544","text":"Join the Winn Dixie team! See our latest #Retail #job opening here: https:\/\/t.co\/9zmuyfSyDi #HATTIESBURG, MS #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59967434,"id_str":"59967434","name":"TMJ-MS Retail Jobs","screen_name":"tmj_ms_retail","location":"Mississippi","url":"http:\/\/tweetmyjobs.com","description":"Follow this account for geo-targeted Retail job tweets in Mississippi Non-Metro from TweetMyJobs. Need help? Tweet us at @TweetMyJobs!","protected":false,"verified":false,"followers_count":435,"friends_count":299,"listed_count":32,"favourites_count":0,"statuses_count":1247,"created_at":"Sat Jul 25 03:25:14 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315433529\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315433529\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"96BEDF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303708649\/Logo_tmj_new2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303708649\/Logo_tmj_new2b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59967434\/1349359639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[31.303394,-89.332033]},"coordinates":{"type":"Point","coordinates":[-89.332033,31.303394]},"place":{"id":"2b34df148a211c3e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2b34df148a211c3e.json","place_type":"city","name":"Hattiesburg","full_name":"Hattiesburg, MS","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-89.427669,31.241189],[-89.427669,31.380085],[-89.248409,31.380085],[-89.248409,31.241189]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Retail","indices":[41,48]},{"text":"job","indices":[49,53]},{"text":"HATTIESBURG","indices":[92,104]},{"text":"Hiring","indices":[109,116]},{"text":"CareerArc","indices":[117,127]}],"urls":[{"url":"https:\/\/t.co\/9zmuyfSyDi","expanded_url":"http:\/\/bit.ly\/1hKp9LY","display_url":"bit.ly\/1hKp9LY","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031663"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875581841409,"id_str":"663727875581841409","text":"so tired","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131101820,"id_str":"131101820","name":"David LDY","screen_name":"loveless97","location":"S'pore","url":null,"description":"wink wink","protected":false,"verified":false,"followers_count":177,"friends_count":185,"listed_count":2,"favourites_count":358,"statuses_count":18284,"created_at":"Fri Apr 09 08:01:34 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479988592404484097\/zg-PNJXR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479988592404484097\/zg-PNJXR.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634005670908444673\/dKvCjzMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634005670908444673\/dKvCjzMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131101820\/1423493037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031663"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875581849601,"id_str":"663727875581849601","text":"@mana050550 \u8131\u30ac\u30ea\u305b\u306d\u3070\u2026\uff01\uff01 \u884c\u304f\u3068\u601d\u308f\u308c\u308b\ud83e\udd14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720691066208256,"in_reply_to_status_id_str":"663720691066208256","in_reply_to_user_id":2724958561,"in_reply_to_user_id_str":"2724958561","in_reply_to_screen_name":"mana050550","user":{"id":2922780798,"id_str":"2922780798","name":"\uff88\uff93","screen_name":"not_punctual_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":452,"friends_count":526,"listed_count":1,"favourites_count":915,"statuses_count":3047,"created_at":"Mon Dec 08 14:19:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663193057001533440\/u_x4esSY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663193057001533440\/u_x4esSY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2922780798\/1446953053","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mana050550","name":"MiZUKi","id":2724958561,"id_str":"2724958561","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080031663"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875590254594,"id_str":"663727875590254594","text":"PAU: Posti rikkoo ty\u00f6suluilla yleispalveluvelvoitetta (Talousel\u00e4m\u00e4): https:\/\/t.co\/2dyBsvSx2U https:\/\/t.co\/B303hbxYRB","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723016114,"id_str":"2723016114","name":"UUTISET 24\/7","screen_name":"UUTISET247","location":"Suomi","url":"http:\/\/www.UUTISET247.com","description":"UUTISET 24\/7 - Nopeasti p\u00e4ivittyv\u00e4 uutispalvelu suomeksi. 24 tuntina vuorokaudessa, 7 p\u00e4iv\u00e4n\u00e4 viikossa saat uutisia luettavaksesi. Seuraa ja pysy ajan tasalla.","protected":false,"verified":false,"followers_count":811,"friends_count":716,"listed_count":24,"favourites_count":3,"statuses_count":346905,"created_at":"Mon Aug 11 03:27:24 +0000 2014","utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"lang":"fi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498682571257946112\/JGfXJHZY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498682571257946112\/JGfXJHZY_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2dyBsvSx2U","expanded_url":"http:\/\/bit.ly\/1WM3noK","display_url":"bit.ly\/1WM3noK","indices":[70,93]},{"url":"https:\/\/t.co\/B303hbxYRB","expanded_url":"http:\/\/fb.me\/3ihPC0Tvn","display_url":"fb.me\/3ihPC0Tvn","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080031665"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875569287169,"id_str":"663727875569287169","text":"here without you - 3 doors down","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265962533,"id_str":"265962533","name":"k a n y a.","screen_name":"_konyaku","location":"Jakarta,indonesia","url":null,"description":"I don't have birthdays, I level up| 2 \\\\ narutolovers.","protected":false,"verified":false,"followers_count":413,"friends_count":369,"listed_count":1,"favourites_count":36,"statuses_count":44775,"created_at":"Mon Mar 14 12:19:27 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124030005\/085c95029f9ff6bbb2602c9cc7208791.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124030005\/085c95029f9ff6bbb2602c9cc7208791.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451486167007895553\/STJIFDkr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451486167007895553\/STJIFDkr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265962533\/1407561085","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031660"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875594387457,"id_str":"663727875594387457","text":"Get Weather Updates from The Weather Channel. 09:40:30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3158553569,"id_str":"3158553569","name":"slha28253","screen_name":"slha28253","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":41082,"created_at":"Sun Apr 12 06:32:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031666"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875590197250,"id_str":"663727875590197250","text":"50 Cent vs Rick Ross' beef gets nasty on instagram (Photos) - https:\/\/t.co\/GxiNbYwNSg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580411942,"id_str":"2580411942","name":"Abomeli","screen_name":"Shopaholic_651","location":"Miami, Florida","url":null,"description":"I wish every day can be Friday. love to party, have fun and meet new people.","protected":false,"verified":false,"followers_count":38848,"friends_count":28071,"listed_count":30,"favourites_count":0,"statuses_count":123804,"created_at":"Sat Jun 21 13:09:18 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521876047784972288\/dsQVe8ru_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521876047784972288\/dsQVe8ru_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GxiNbYwNSg","expanded_url":"http:\/\/bit.ly\/1HA3v3L","display_url":"bit.ly\/1HA3v3L","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031665"} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875556818945,"id_str":"663727875556818945","text":"@BET All I Know is Pain https:\/\/t.co\/ZSiAzkjvru","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":16560657,"in_reply_to_user_id_str":"16560657","in_reply_to_screen_name":"BET","user":{"id":119644933,"id_str":"119644933","name":"BRITISH STACKZ","screen_name":"_YOBBO","location":"Gone Getting To The Money","url":"https:\/\/soundcloud.com\/british-stackz\/forever-fly","description":"If it Makes You Sick to see a nigga Win Ima Make You Watch Me Win Over And Over Again #Independent xo5z5ox@gmail.com #RIDAGANG","protected":false,"verified":false,"followers_count":6668,"friends_count":3807,"listed_count":36,"favourites_count":4590,"statuses_count":96633,"created_at":"Thu Mar 04 06:46:30 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171621694\/m2GFx2Pp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171621694\/m2GFx2Pp.jpeg","profile_background_tile":true,"profile_link_color":"F20E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBC1C1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630844343440547840\/tdu-VhrX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630844343440547840\/tdu-VhrX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119644933\/1440609553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BET","name":"BET","id":16560657,"id_str":"16560657","indices":[0,4]}],"symbols":[],"media":[{"id":663727872692080640,"id_str":"663727872692080640","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-89WUAAR_pN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-89WUAAR_pN.jpg","url":"https:\/\/t.co\/ZSiAzkjvru","display_url":"pic.twitter.com\/ZSiAzkjvru","expanded_url":"http:\/\/twitter.com\/_YOBBO\/status\/663727875556818945\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727872692080640,"id_str":"663727872692080640","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-89WUAAR_pN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-89WUAAR_pN.jpg","url":"https:\/\/t.co\/ZSiAzkjvru","display_url":"pic.twitter.com\/ZSiAzkjvru","expanded_url":"http:\/\/twitter.com\/_YOBBO\/status\/663727875556818945\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":322,"resize":"fit"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031657"} +{"delete":{"status":{"id":658683897874485249,"id_str":"658683897874485249","user_id":2320890216,"user_id_str":"2320890216"},"timestamp_ms":"1447080032023"}} +{"created_at":"Mon Nov 09 14:40:31 +0000 2015","id":663727875565056000,"id_str":"663727875565056000","text":"#dilwale poster https:\/\/t.co\/fvkixBr3tJ","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3024410300,"id_str":"3024410300","name":"SpotLife ASIA","screen_name":"SpotLifeASIA","location":"Worldwide","url":"http:\/\/www.spotlifeasia.com","description":"Entertainment & Lifestyle news that matters. The world beyond gossip. http:\/\/facebook.com\/SpotLifeAsia SpotLife Asia is a DP360 Media company.","protected":false,"verified":false,"followers_count":1549,"friends_count":553,"listed_count":6,"favourites_count":150,"statuses_count":2252,"created_at":"Tue Feb 17 20:43:30 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567914165386240000\/J-Vudm8a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567914165386240000\/J-Vudm8a.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633475548975529984\/cUo151Ot_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633475548975529984\/cUo151Ot_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3024410300\/1437426814","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"dilwale","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/fvkixBr3tJ","expanded_url":"https:\/\/instagram.com\/p\/92jfeiNysj\/","display_url":"instagram.com\/p\/92jfeiNysj\/","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080031659"} +{"delete":{"status":{"id":663727871362539520,"id_str":"663727871362539520","user_id":2290147879,"user_id_str":"2290147879"},"timestamp_ms":"1447080032150"}} +{"delete":{"status":{"id":659253643716071424,"id_str":"659253643716071424","user_id":3306621637,"user_id_str":"3306621637"},"timestamp_ms":"1447080032169"}} +{"delete":{"status":{"id":663727812679979008,"id_str":"663727812679979008","user_id":2790495430,"user_id_str":"2790495430"},"timestamp_ms":"1447080032444"}} +{"delete":{"status":{"id":661493829896302592,"id_str":"661493829896302592","user_id":3571667533,"user_id_str":"3571667533"},"timestamp_ms":"1447080032494"}} +{"delete":{"status":{"id":643029136349503488,"id_str":"643029136349503488","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080032574"}} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879772086272,"id_str":"663727879772086272","text":"Tenho pena de gente assim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297718475,"id_str":"297718475","name":"lari","screen_name":"larisnascimen","location":"SP","url":null,"description":"puro \u00eaxtase","protected":false,"verified":false,"followers_count":919,"friends_count":284,"listed_count":2,"favourites_count":134,"statuses_count":25590,"created_at":"Fri May 13 00:22:31 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651549509303058432\/YYgePlUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651549509303058432\/YYgePlUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297718475\/1437974323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080032662"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879776243712,"id_str":"663727879776243712","text":"\u0418\u0437 \u0432\u044b\u043f\u0435\u0447\u043a\u0438 \u0448\u0435\u0434\u0435\u0432\u0440","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264328269,"id_str":"1264328269","name":"MeganHarriet","screen_name":"MeganHarriet2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":14,"listed_count":4,"favourites_count":0,"statuses_count":144682,"created_at":"Wed Mar 13 12:15:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3666316233\/ec1f7780c5b1cffd8c158711ec35eaa4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3666316233\/ec1f7780c5b1cffd8c158711ec35eaa4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080032663"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784632324,"id_str":"663727879784632324","text":"wow, you really need Keemstar outside of my meme factory","source":"\u003ca href=\"http:\/\/www.placeholder.com\" rel=\"nofollow\"\u003ePesadeliBot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3428633578,"id_str":"3428633578","name":"PesadeliBot","screen_name":"PesadeliBot","location":null,"url":null,"description":"Bot for @Pesadeli | Tweet randomizer","protected":false,"verified":false,"followers_count":32,"friends_count":1,"listed_count":4,"favourites_count":2,"statuses_count":24087,"created_at":"Mon Aug 17 18:07:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633344820451282952\/MS0h6gWG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633344820451282952\/MS0h6gWG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3428633578\/1439838803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879776243713,"id_str":"663727879776243713","text":"\u0623\u0646\u0627 \u0636\u062f #\u062e\u0635\u062e\u0635\u0629_\u0627\u0644\u0623\u0646\u062f\u064a\u0629 \u0628\u0627\u062e\u062a\u0635\u0627\u0631 \u0644\u0623\u0646 \u0627\u0644\u062a\u062c\u0627\u0631\n\u0627\u0644\u0630\u064a\u0646 \u0644\u0645 \u064a\u0646\u062c\u0632\u0648\u0627 \u0645\u0634\u0627\u0631\u064a\u0639 \u0627\u0644\u062f\u0648\u0644\u0629 \u0627\u0644\u0643\u0628\u064a\u0631\u0629 \u0644\u0646 \u064a\u062d\u0644\u0648\u0627\n\u0645\u0634\u0627\u0643\u0644 \u0627\u0644\u0631\u064a\u0627\u0636\u0629 \u0627\u0644\u0645\u0639\u0642\u062f\u0629 \u0628\u0648\u062c\u0647\u0629 \u0646\u0638\u0631\u064a ..\n\n\u0641\u0644\u0648\u0633 \u0639 \u0627\u0644\u0641\u0627\u0636\u064a \ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451406580,"id_str":"451406580","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0633\u0627\u0644\u0645 \u0627\u0644\u0647\u0627\u062c\u0631\u064a","screen_name":"abdulah7alhajry","location":"Kuwait","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u0623\u0645\u0636\u064a \u0641\u064a \u0637\u0631\u064a\u0642\u064a \u0644\u0639\u0627\u0644\u0645 \u0622\u062e\u0631 .. \u0648 \u0628\u064a\u0646 \u0639\u0627\u0644\u0645\u0646\u0627 \u0648\u0630\u0627\u0643 \u0627\u0644\u0639\u0627\u0644\u0645 \u062a\u062c\u062f\u0648\u0646\u064a\n\n\n\u062d\u062f\u064a\u062b \u0642\u0644\u0645\u064a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0629","protected":false,"verified":false,"followers_count":783,"friends_count":654,"listed_count":0,"favourites_count":47,"statuses_count":9615,"created_at":"Sat Dec 31 12:02:21 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656497506491076609\/25O-38Ax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656497506491076609\/25O-38Ax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451406580\/1370099669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062e\u0635\u062e\u0635\u0629_\u0627\u0644\u0623\u0646\u062f\u064a\u0629","indices":[7,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080032663"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879767859200,"id_str":"663727879767859200","text":"RT @PrensaBauxilum: #VenezuelaCambi\u00f3ParaSiempre https:\/\/t.co\/vsDlIkRRwt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3405574827,"id_str":"3405574827","name":"Mariela vasquez","screen_name":"a05f4f9a3ec841b","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":13,"listed_count":0,"favourites_count":39,"statuses_count":620,"created_at":"Thu Aug 06 13:18:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629297402655150080\/6UJLTTxW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629297402655150080\/6UJLTTxW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3405574827\/1438871157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:49:39 +0000 2015","id":663699975558311936,"id_str":"663699975558311936","text":"#VenezuelaCambi\u00f3ParaSiempre https:\/\/t.co\/vsDlIkRRwt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2614032500,"id_str":"2614032500","name":"Prensa Bauxilum","screen_name":"PrensaBauxilum","location":"Ciudad Guayana - Los Pijiguaos","url":null,"description":"Prensa Bauxilum, empresa que es coraz\u00f3n de la producci\u00f3n del aluminio venezolano, tutelada por Corpoalum y adscrita al Min. del Poder Popular para Industrias","protected":false,"verified":false,"followers_count":1576,"friends_count":282,"listed_count":15,"favourites_count":20,"statuses_count":5041,"created_at":"Wed Jul 09 18:48:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656856185518366721\/X3yrSLDk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656856185518366721\/X3yrSLDk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614032500\/1404946322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663699659211317249,"quoted_status_id_str":"663699659211317249","quoted_status":{"created_at":"Mon Nov 09 12:48:24 +0000 2015","id":663699659211317249,"id_str":"663699659211317249","text":"Felicitaciones a todas y todos por su demostraci\u00f3n de lealtad y militancia en el Ejercicio Electoral de ayer. https:\/\/t.co\/pjVppBN8XV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313720654,"id_str":"313720654","name":"\u00c1ngel Marcano","screen_name":"amarcanopsuv","location":"Venezuela","url":null,"description":"Obrero Radicalmente Chavista.","protected":false,"verified":false,"followers_count":6985,"friends_count":6457,"listed_count":19,"favourites_count":2200,"statuses_count":2534,"created_at":"Thu Jun 09 03:19:45 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605178757314433024\/-e3bRWtE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605178757314433024\/-e3bRWtE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313720654\/1433120497","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663699472397033473,"id_str":"663699472397033473","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvJ1nW4AEOGOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvJ1nW4AEOGOS.jpg","url":"https:\/\/t.co\/pjVppBN8XV","display_url":"pic.twitter.com\/pjVppBN8XV","expanded_url":"http:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663699472397033473,"id_str":"663699472397033473","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvJ1nW4AEOGOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvJ1nW4AEOGOS.jpg","url":"https:\/\/t.co\/pjVppBN8XV","display_url":"pic.twitter.com\/pjVppBN8XV","expanded_url":"http:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663699568106848256,"id_str":"663699568106848256","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvPaKWwAASKc6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvPaKWwAASKc6.jpg","url":"https:\/\/t.co\/pjVppBN8XV","display_url":"pic.twitter.com\/pjVppBN8XV","expanded_url":"http:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663699624268603392,"id_str":"663699624268603392","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvSrYXIAAiXeZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvSrYXIAAiXeZ.jpg","url":"https:\/\/t.co\/pjVppBN8XV","display_url":"pic.twitter.com\/pjVppBN8XV","expanded_url":"http:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":23,"favorite_count":2,"entities":{"hashtags":[{"text":"VenezuelaCambi\u00f3ParaSiempre","indices":[0,27]}],"urls":[{"url":"https:\/\/t.co\/vsDlIkRRwt","expanded_url":"https:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249","display_url":"twitter.com\/amarcanopsuv\/s\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VenezuelaCambi\u00f3ParaSiempre","indices":[20,47]}],"urls":[{"url":"https:\/\/t.co\/vsDlIkRRwt","expanded_url":"https:\/\/twitter.com\/amarcanopsuv\/status\/663699659211317249","display_url":"twitter.com\/amarcanopsuv\/s\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"PrensaBauxilum","name":"Prensa Bauxilum","id":2614032500,"id_str":"2614032500","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080032661"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879767896065,"id_str":"663727879767896065","text":"@manuelspaan why am I so excited about this?! \n\nWhat is happening with us!!!","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722934855467008,"in_reply_to_status_id_str":"663722934855467008","in_reply_to_user_id":146918766,"in_reply_to_user_id_str":"146918766","in_reply_to_screen_name":"manuelspaan","user":{"id":71772097,"id_str":"71772097","name":"Jakub Klena","screen_name":"jakubklena","location":"Slovakia","url":"http:\/\/www.instagram.com\/jakubklena","description":"Law | Tech | Run | Podcasts","protected":false,"verified":false,"followers_count":157,"friends_count":398,"listed_count":12,"favourites_count":3421,"statuses_count":3543,"created_at":"Sat Sep 05 10:16:35 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602484812\/6aiq07fx3lg9h7a1pmqd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602484812\/6aiq07fx3lg9h7a1pmqd.jpeg","profile_background_tile":false,"profile_link_color":"7A7A7A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"030303","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611459999991242752\/AYyymcUB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611459999991242752\/AYyymcUB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71772097\/1408381413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manuelspaan","name":"Manuel Spaan","id":146918766,"id_str":"146918766","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032661"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784685568,"id_str":"663727879784685568","text":"RT @abiss32187: \u0642\u0627\u0644 \u062a\u0639\u0627\u0644\u0649 \u0627\u0646 \u0627\u0643\u0631\u0645\u0643\u0645 \u0639\u0646\u062f \u0627\u0644\u0644\u0647 \u0627\u062a\u0642\u0627\u0643\u0645\n\u0627\u0644\u062a\u0642\u0648\u0649 \u062f\u0644\u064a\u0644 \u0644\u0644\u062e\u064a\u0631 \u0645\u0646 \u062d\u0633\u0646 \u0645\u0639\u0627\u0645\u0644\u0629 \u0648\u062e\u0644\u0642 \u0631\u0641\u064a\u0639 \u0648\u0647\u0648 \u0627\u0644\u0637\u0631\u064a\u0642 \u0627\u0644\u0649 \u0627\u0644\u0641\u0644\u0627\u062d \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627 \u0627\u0644\u0627\u062e\u0631\u0647 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298849927,"id_str":"3298849927","name":"\u064a\u0640\u0627 \u0623\u0645\u064a\u0631 \u0627\u0644\u0645\u0624\u0645\u0646\u064a\u0646","screen_name":"zxczxc00945839","location":"\u0634\u064a\u0639\u064a .\u0631\u0627\u0641\u0636\u064a .\u0645\u0648\u0627\u0644\u064a .\u0644\u0623\u0647\u0644 \u0627\u0644\u0628\u064a\u062a","url":null,"description":"\u0628\u0644\u0651\u063a\u064a \u0627\u0644\u0645\u063a\u064a\u0651\u0628 \u0639\u0646\u0651\u0627 \u0627\u0644\u0633\u0651\u0644\u0627\u0645.. \u0648 \u0627\u0633\u0623\u0644\u064a\u0647 \u0628\u062e\u062c\u0644\u064d \u0623\u0646 \u0646\u0643\u0648\u0646\u064e \u0628\u064a\u0646 \u0643\u0641\u0651\u064a \u062f\u0639\u0627\u0626\u0650\u0647 \u0627\u0644\u0645\u0628\u0627\u0631\u0643.. \u0627\u0644\u0633\u0651\u0644\u0627\u0645\u064f \u0639\u0644\u064a\u0643\u064e \u064a\u0627 \u0642\u0627\u0626\u0645\u064e \u0622\u0644 \u0645\u062d\u0645\u0651\u062f \u0633\u0644\u0627\u0645\u064b\u0627 \u0644\u0627 \u064a\u0646\u0642\u064e\u0637\u0639 \u0623\u0628\u062f\u0627..\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0645\u0641\u0636\u0644\u0627\u062a\u064a","protected":false,"verified":false,"followers_count":2328,"friends_count":804,"listed_count":1,"favourites_count":398,"statuses_count":11453,"created_at":"Mon Jul 27 22:25:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298849927\/1440334902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:55 +0000 2015","id":663710358977306624,"id_str":"663710358977306624","text":"\u0642\u0627\u0644 \u062a\u0639\u0627\u0644\u0649 \u0627\u0646 \u0627\u0643\u0631\u0645\u0643\u0645 \u0639\u0646\u062f \u0627\u0644\u0644\u0647 \u0627\u062a\u0642\u0627\u0643\u0645\n\u0627\u0644\u062a\u0642\u0648\u0649 \u062f\u0644\u064a\u0644 \u0644\u0644\u062e\u064a\u0631 \u0645\u0646 \u062d\u0633\u0646 \u0645\u0639\u0627\u0645\u0644\u0629 \u0648\u062e\u0644\u0642 \u0631\u0641\u064a\u0639 \u0648\u0647\u0648 \u0627\u0644\u0637\u0631\u064a\u0642 \u0627\u0644\u0649 \u0627\u0644\u0641\u0644\u0627\u062d \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627 \u0627\u0644\u0627\u062e\u0631\u0647 https:\/\/t.co\/rM1mJo4K4t","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3191068970,"id_str":"3191068970","name":"\u0639\u0644\u064a \u0627\u0644\u0635\u062f\u0631\u064a","screen_name":"abiss32187","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3619,"friends_count":2947,"listed_count":3,"favourites_count":2991,"statuses_count":12504,"created_at":"Sun May 10 19:03:42 +0000 2015","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643137264189489152\/ZrF_5MLP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643137264189489152\/ZrF_5MLP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191068970\/1438374102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"b62cd77425868341","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b62cd77425868341.json","place_type":"country","name":"Iraq","full_name":"Iraq","country_code":"IQ","country":"Iraq","bounding_box":{"type":"Polygon","coordinates":[[[38.794701,29.071710],[38.794701,37.378040],[48.575908,37.378040],[48.575908,29.071710]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710357031100416,"id_str":"663710357031100416","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","url":"https:\/\/t.co\/rM1mJo4K4t","display_url":"pic.twitter.com\/rM1mJo4K4t","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663710358977306624\/photo\/1","type":"photo","sizes":{"large":{"w":135,"h":101,"resize":"fit"},"small":{"w":135,"h":101,"resize":"fit"},"medium":{"w":135,"h":101,"resize":"fit"},"thumb":{"w":135,"h":101,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663710357031100416,"id_str":"663710357031100416","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","url":"https:\/\/t.co\/rM1mJo4K4t","display_url":"pic.twitter.com\/rM1mJo4K4t","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663710358977306624\/photo\/1","type":"photo","sizes":{"large":{"w":135,"h":101,"resize":"fit"},"small":{"w":135,"h":101,"resize":"fit"},"medium":{"w":135,"h":101,"resize":"fit"},"thumb":{"w":135,"h":101,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abiss32187","name":"\u0639\u0644\u064a \u0627\u0644\u0635\u062f\u0631\u064a","id":3191068970,"id_str":"3191068970","indices":[3,14]}],"symbols":[],"media":[{"id":663710357031100416,"id_str":"663710357031100416","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","url":"https:\/\/t.co\/rM1mJo4K4t","display_url":"pic.twitter.com\/rM1mJo4K4t","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663710358977306624\/photo\/1","type":"photo","sizes":{"large":{"w":135,"h":101,"resize":"fit"},"small":{"w":135,"h":101,"resize":"fit"},"medium":{"w":135,"h":101,"resize":"fit"},"thumb":{"w":135,"h":101,"resize":"crop"}},"source_status_id":663710358977306624,"source_status_id_str":"663710358977306624","source_user_id":3191068970,"source_user_id_str":"3191068970"}]},"extended_entities":{"media":[{"id":663710357031100416,"id_str":"663710357031100416","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5DaCWIAAORJ-.jpg","url":"https:\/\/t.co\/rM1mJo4K4t","display_url":"pic.twitter.com\/rM1mJo4K4t","expanded_url":"http:\/\/twitter.com\/abiss32187\/status\/663710358977306624\/photo\/1","type":"photo","sizes":{"large":{"w":135,"h":101,"resize":"fit"},"small":{"w":135,"h":101,"resize":"fit"},"medium":{"w":135,"h":101,"resize":"fit"},"thumb":{"w":135,"h":101,"resize":"crop"}},"source_status_id":663710358977306624,"source_status_id_str":"663710358977306624","source_user_id":3191068970,"source_user_id_str":"3191068970"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879751139328,"id_str":"663727879751139328","text":"Cuz I don't minded https:\/\/t.co\/NcOo4fChwj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":614972859,"id_str":"614972859","name":"Psaumes 71:5","screen_name":"JoyKevinBile","location":"Abidjan - Toulouse","url":"http:\/\/Instagram.com\/joykevinbile","description":"God x Family x Friends. 19 yo. Psaumes 71:5. 1 Samuel 18:14. IG & Snap : JoyKevinBile","protected":false,"verified":false,"followers_count":1446,"friends_count":575,"listed_count":4,"favourites_count":903,"statuses_count":52812,"created_at":"Fri Jun 22 05:46:49 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447830077816844288\/Dk5KMxrC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447830077816844288\/Dk5KMxrC.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650970837705691137\/VHKzlTLX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650970837705691137\/VHKzlTLX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614972859\/1447014055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663495041491599360,"quoted_status_id_str":"663495041491599360","quoted_status":{"created_at":"Sun Nov 08 23:15:19 +0000 2015","id":663495041491599360,"id_str":"663495041491599360","text":"Baby trust me","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":377284753,"id_str":"377284753","name":"Melo","screen_name":"CLVTCHGANG","location":"Worldwide ","url":null,"description":"CLVTCHGANG \n\n$BeatMaker$ #OneDayIwillBeLikeHov\n\nExcuse me Boi, I can't wait a sun to $h!ne! \n\nYoung Thug - With That","protected":false,"verified":false,"followers_count":1349,"friends_count":1531,"listed_count":3,"favourites_count":1352,"statuses_count":19168,"created_at":"Wed Sep 21 10:05:29 +0000 2011","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1C130E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158693249\/VrZhqRHN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158693249\/VrZhqRHN.jpeg","profile_background_tile":true,"profile_link_color":"4F3F38","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"140E0A","profile_text_color":"838978","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653959682697109504\/yCufrwC6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653959682697109504\/yCufrwC6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/377284753\/1445633874","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NcOo4fChwj","expanded_url":"https:\/\/twitter.com\/clvtchgang\/status\/663495041491599360","display_url":"twitter.com\/clvtchgang\/sta\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755309056,"id_str":"663727879755309056","text":"Porra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719620918,"id_str":"2719620918","name":"\u00a5\u00a5 Loirinha \u00a5\u00a5","screen_name":"suhpaes14","location":"xangri l\u00e1","url":null,"description":"ooi\u270c","protected":false,"verified":false,"followers_count":828,"friends_count":787,"listed_count":2,"favourites_count":7811,"statuses_count":30799,"created_at":"Sat Aug 09 16:13:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662011774837907456\/DlqH2zVC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662011774837907456\/DlqH2zVC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2719620918\/1441210909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080032658"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750979585,"id_str":"663727879750979585","text":"RT @all4b2uty: \u4eca\u65e5\u6765\u3066\u9802\u3044\u305f\u65b9\u3005\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284485945,"id_str":"3284485945","name":"\ubbf8\uc9f1=^\u30fb^=","screen_name":"mi_chan_dw","location":"\uc11c\uc6b8 \ub9c8\ud3ec\uad6c","url":null,"description":"130820 \uc6b0\ub9ac \ucc98\uc74c\ub9cc\ub0ac\ub358 \uadf8\uacf3\uc5d0\uc11c\u2764\ufe0f\uafc8\uc744 \ud488\uace0 \ubb54\uac00 \ud560 \uc218 \uc788\ub2e4\uba74 \uadf8\uac83\uc744 \uc2dc\uc791\ud558\uc138\uc694, \uc0c8\ub85c\uc6b4 \uc77c\uc744 \uc2dc\uc791\ud558\ub294 \uc6a9\uae30\uc18d\uc5d0 \ub2f9\uc2e0\uc758 \ucc9c\uc7ac\uc131\uacfc \ub2a5\ub825\uacfc \uae30\uc801\uc774 \ubaa8\ub450 \uc228\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. - \uad34\ud14c - @beastdw \uc9c4\uc9dc \uc0ac\ub791\ud574\uc5ec!","protected":false,"verified":false,"followers_count":0,"friends_count":7,"listed_count":0,"favourites_count":27,"statuses_count":551,"created_at":"Sun Jul 19 14:58:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622793167641772032\/9JBXxLkh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622793167641772032\/9JBXxLkh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284485945\/1441400799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:07:18 +0000 2015","id":663704417607094272,"id_str":"663704417607094272","text":"\u4eca\u65e5\u6765\u3066\u9802\u3044\u305f\u65b9\u3005\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2157135906,"id_str":"2157135906","name":"\uc591\u3147\u3145","screen_name":"all4b2uty","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":317120,"friends_count":0,"listed_count":3589,"favourites_count":1,"statuses_count":2012,"created_at":"Sat Oct 26 16:15:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644390957962555393\/itaUmPtu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644390957962555393\/itaUmPtu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2157135906\/1442462395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1795,"favorite_count":2929,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"all4b2uty","name":"\uc591\u3147\u3145","id":2157135906,"id_str":"2157135906","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879759519744,"id_str":"663727879759519744","text":"Seria uma enorme contrata\u00e7\u00e3o! :D https:\/\/t.co\/VY1caE420u","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":331658896,"id_str":"331658896","name":"Xaviier Lemos","screen_name":"Xavii28","location":"Porto","url":null,"description":null,"protected":false,"verified":false,"followers_count":98,"friends_count":335,"listed_count":7,"favourites_count":9,"statuses_count":3465,"created_at":"Fri Jul 08 14:34:37 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607761274\/ru1ssu450owbsbrfy5qs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607761274\/ru1ssu450owbsbrfy5qs.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552260123314622465\/h42tmCtP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552260123314622465\/h42tmCtP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/331658896\/1420504035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VY1caE420u","expanded_url":"http:\/\/fb.me\/1FGRScOIv","display_url":"fb.me\/1FGRScOIv","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080032659"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755206657,"id_str":"663727879755206657","text":"\u4e00\u6642\u7684\u306b\u3060\u3063\u305f\u3051\u3069\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3082\u3089\u3048\u3066\u3042\u308a\u304c\u3068\u3060\u3088\u30fc(\u25cf\u30fb\u25bd\u30fb\u25cf)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2582025200,"id_str":"2582025200","name":"\u3071\u308b\u3080\u3060\u3088\u30fc(\u25cf\u30fb\u25bd\u30fb\u25cf)","screen_name":"yryrer1225","location":null,"url":null,"description":"\u4e09\u68ee\u3059\u305a\u3053\u3055\u3093\u3092\u305a\u3063\u3068\u898b\u5b88\u308a\u7d9a\u3051\u305f\u3044\u3001\u3042\u306a\u305f\u306e\u304c\u3093\u3070\u308b\u59ff\u306b\u5fc3\u3092\u6253\u305f\u308c\u30aa\u30bf\u30af\u306b\u306a\u308a\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":589,"friends_count":340,"listed_count":59,"favourites_count":20094,"statuses_count":30948,"created_at":"Sun Jun 22 10:48:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638305341592047616\/kMXaLOu5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638305341592047616\/kMXaLOu5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2582025200\/1432045250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032658"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879767896064,"id_str":"663727879767896064","text":"\u0417\u0430\u0432\u0430\u043b\u0438\u043b \u0437\u0430\u0447\u0451\u0442.\n\u041f\u0438\u0437\u0434\u0435\u0446.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2775965177,"id_str":"2775965177","name":"\u041d\u0430\u0439\u043b\u043e-\u0430\u043d\u0430\u0439\u043b\u043e l 15","screen_name":"weleredy","location":"\u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439, \u0420\u043e\u0441\u0441\u0438\u044f","url":null,"description":"All the love xx.","protected":false,"verified":false,"followers_count":8526,"friends_count":8275,"listed_count":4,"favourites_count":2724,"statuses_count":6354,"created_at":"Fri Sep 19 14:40:04 +0000 2014","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603215305712668673\/QY9oewOX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603215305712668673\/QY9oewOX.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661810714214928384\/GIyVzJ_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661810714214928384\/GIyVzJ_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2775965177\/1446622987","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080032661"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879767769088,"id_str":"663727879767769088","text":"\u0909\u0938\u0928\u0947 \u0939\u0940 \u0926\u093f\u0932 \u0915\u094b \u0926\u093f\u0932\u093e\u0938\u0947 \u0926\u0947 \u0932\u093f\u090f,\n\u092e\u0948\u0902 \u0924\u094b \u0932\u094c\u091f\u093e \u0925\u093e \u092e\u0930\u0928\u0947 \u0915\u0947 \u092c\u093e\u0926 \u092d\u0940,\n \u091b\u094b\u0921\u093c \u0917\u092f\u093e \u0935\u094b \u092c\u093e\u091c\u093c\u0940 \u091c\u0940\u0924 \u091c\u093e\u0928\u0947 \u0915\u0947 \u092c\u093e\u0926,\n\u092e\u0948\u0902 \u0924\u094b \u0932\u094c\u091f\u093e \u0925\u093e \u0939\u093e\u0930\u0928\u0947 \u0915\u0947 \u092c\u093e\u0926 \u092d\u0940","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368906508,"id_str":"368906508","name":"Oh Teri!","screen_name":"Oh_Terified","location":"Ship of fools","url":"http:\/\/favstar.fm\/users\/oh_terified","description":"please die","protected":false,"verified":false,"followers_count":357,"friends_count":151,"listed_count":4,"favourites_count":4363,"statuses_count":9009,"created_at":"Tue Sep 06 12:44:05 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661595085121818624\/xB7L_ytT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661595085121818624\/xB7L_ytT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368906508\/1434369248","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080032661"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784673280,"id_str":"663727879784673280","text":"Me ha gustado un v\u00eddeo de @YouTube de @mycrazymakeup (https:\/\/t.co\/UQTPUYH9LV - Rimmel Match Perfection | Primeras Impresiones).","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40968190,"id_str":"40968190","name":"almuuu!!","screen_name":"almuuu18","location":null,"url":"http:\/\/www.youtube.com\/user\/almuuu1818","description":"Soy almuuu!!\n\nEchelon\n\nContacta conmigo almuuu1818@gmail.com","protected":false,"verified":false,"followers_count":361,"friends_count":556,"listed_count":5,"favourites_count":1040,"statuses_count":8165,"created_at":"Mon May 18 21:06:11 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108816494\/f6e676cf2a8b23a2c84aa86c5eb940f4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108816494\/f6e676cf2a8b23a2c84aa86c5eb940f4.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656039301608816641\/gWMa0YP__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656039301608816641\/gWMa0YP__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40968190\/1388224178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UQTPUYH9LV","expanded_url":"http:\/\/youtu.be\/fUazv1_HfMA?a","display_url":"youtu.be\/fUazv1_HfMA?a","indices":[54,77]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[26,34]},{"screen_name":"MyCrazyMakeup","name":"My Crazy Makeup","id":434350155,"id_str":"434350155","indices":[38,52]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879759392768,"id_str":"663727879759392768","text":"RT @SumiKeiKi: \u5468\u7389\u853b\uff1a\n\u6211\u5011\u7684\u8a0a\u865f\u3001\u7531\u592e\u8996\u2026\n\u90a3\u500b\u65ad\u8a0a\u7684\u6642\u5019\u4f60\u77e5\u9053\u55ce\n\u6211\u5011\u5168\u5834\u6cb8\u9a30\n\u56e0\u70ba\u6211\u807d\u5230\n\u99ac\u82f1\u4e5d\u7e3d\u7d71\u5728\u88e1\u9762\n\u8b1b\u4e00\u500b\u4e2d\u570b\n\n\u8b1b\u7a3f\u300c\u4e00\u4e2d\u5404\u8868\u300d\u7684\u300c\u5404\u8868\u300d\u3001\u662f\u8ce3\u53f0\u99ac\u62ff\u6389\u7684\u3002 https:\/\/t.co\/r9L6IGVc7c https:\/\/t.co\/uzo3tw2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71214007,"id_str":"71214007","name":"Shane Gao","screen_name":"Shane_Gao","location":"Nanjing, China","url":null,"description":"Just like dust we settle in this town.","protected":false,"verified":false,"followers_count":161,"friends_count":148,"listed_count":13,"favourites_count":114,"statuses_count":37279,"created_at":"Thu Sep 03 09:28:21 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/74574380\/____2__emptyness_by_djooennepen.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/74574380\/____2__emptyness_by_djooennepen.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635445382130995201\/D2q9nnXJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635445382130995201\/D2q9nnXJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71214007\/1403535731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:40 +0000 2015","id":663722376379535361,"id_str":"663722376379535361","text":"\u5468\u7389\u853b\uff1a\n\u6211\u5011\u7684\u8a0a\u865f\u3001\u7531\u592e\u8996\u2026\n\u90a3\u500b\u65ad\u8a0a\u7684\u6642\u5019\u4f60\u77e5\u9053\u55ce\n\u6211\u5011\u5168\u5834\u6cb8\u9a30\n\u56e0\u70ba\u6211\u807d\u5230\n\u99ac\u82f1\u4e5d\u7e3d\u7d71\u5728\u88e1\u9762\n\u8b1b\u4e00\u500b\u4e2d\u570b\n\n\u8b1b\u7a3f\u300c\u4e00\u4e2d\u5404\u8868\u300d\u7684\u300c\u5404\u8868\u300d\u3001\u662f\u8ce3\u53f0\u99ac\u62ff\u6389\u7684\u3002 https:\/\/t.co\/r9L6IGVc7c https:\/\/t.co\/uzo3tw2s0p","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245905134,"id_str":"245905134","name":"Chou Hui-Chi","screen_name":"SumiKeiKi","location":"\u6771\u4eac\u90fd\u5e02","url":"https:\/\/www.facebook.com\/sumidesignroom","description":"\u53f0\u7063\u570b\u5609\u7fa9\u5e02\u51fa\u8eab\u306e\u30a8\u30c7\u30a3\u30c8\u30ea\u30a2\u30eb\u30c7\u30b6\u30a4\u30ca\u30fc\u30021992\u5e74\u304b\u3089\u6771\u4eac\u66ae\u3089\u3057\u3002\u4ed5\u4e8b\u3001\u30d3\u30fc\u30eb\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u6620\u753b\u3001\u53f0\u7063\u8af8\u4e8b\u3001\u5ee2\u8a71\u306a\u3069\u3001\u306a\u3089\u305a\u306e\u4e2d\u6587\u3068\u65e5\u672c\u8a9e\u3067\u6253\u6483\u7ffb\u8b6f\u81ea\u52d5\u6a5f\u80fd\u767d\u5b57\u7279\u73cd\u7d44\u9577\u3002\u60aa\u3057\u304b\u3089\u305a\uff01\u53cd\u5c0d\u9ed2\u7bb1\uff01\u6211\u4e3b\u5f35\u53f0\u7063\u7368\u7acb\u3002\u30ab\u30e1\u5b50\u304c\u3044\u308b\u3002sumi design room\u4e3b\u5bb0\u3002","protected":false,"verified":false,"followers_count":1155,"friends_count":285,"listed_count":40,"favourites_count":7263,"statuses_count":26478,"created_at":"Tue Feb 01 18:27:01 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFF00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/200092037\/__.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/200092037\/__.jpg","profile_background_tile":true,"profile_link_color":"10C6E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566663561481433088\/691xMTNU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566663561481433088\/691xMTNU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245905134\/1430568108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"28b9063fdce43645","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/28b9063fdce43645.json","place_type":"city","name":"\u5343\u4ee3\u7530\u533a","full_name":"\u6771\u4eac\u90fd \u5343\u4ee3\u7530\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.730511,35.666372],[139.730511,35.701730],[139.779854,35.701730],[139.779854,35.666372]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r9L6IGVc7c","expanded_url":"http:\/\/www.appledaily.com.tw\/realtimenews\/article\/new\/20151109\/729085\/","display_url":"appledaily.com.tw\/realtimenews\/a\u2026","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663722374534049792,"id_str":"663722374534049792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","url":"https:\/\/t.co\/uzo3tw2s0p","display_url":"pic.twitter.com\/uzo3tw2s0p","expanded_url":"http:\/\/twitter.com\/SumiKeiKi\/status\/663722376379535361\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":812,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722374534049792,"id_str":"663722374534049792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","url":"https:\/\/t.co\/uzo3tw2s0p","display_url":"pic.twitter.com\/uzo3tw2s0p","expanded_url":"http:\/\/twitter.com\/SumiKeiKi\/status\/663722376379535361\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":812,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r9L6IGVc7c","expanded_url":"http:\/\/www.appledaily.com.tw\/realtimenews\/article\/new\/20151109\/729085\/","display_url":"appledaily.com.tw\/realtimenews\/a\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"SumiKeiKi","name":"Chou Hui-Chi","id":245905134,"id_str":"245905134","indices":[3,13]}],"symbols":[],"media":[{"id":663722374534049792,"id_str":"663722374534049792","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","url":"https:\/\/t.co\/uzo3tw2s0p","display_url":"pic.twitter.com\/uzo3tw2s0p","expanded_url":"http:\/\/twitter.com\/SumiKeiKi\/status\/663722376379535361\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":812,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}},"source_status_id":663722376379535361,"source_status_id_str":"663722376379535361","source_user_id":245905134,"source_user_id_str":"245905134"}]},"extended_entities":{"media":[{"id":663722374534049792,"id_str":"663722374534049792","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-6uUsAA1uOW.png","url":"https:\/\/t.co\/uzo3tw2s0p","display_url":"pic.twitter.com\/uzo3tw2s0p","expanded_url":"http:\/\/twitter.com\/SumiKeiKi\/status\/663722376379535361\/photo\/1","type":"photo","sizes":{"large":{"w":970,"h":812,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}},"source_status_id":663722376379535361,"source_status_id_str":"663722376379535361","source_user_id":245905134,"source_user_id_str":"245905134"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"zh","timestamp_ms":"1447080032659"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763701760,"id_str":"663727879763701760","text":"RT @aandreeaa_cg: La gente a la que le da miedo los perros, \u00bfqu\u00e9 hac\u00e9is con vuestra vida?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306928864,"id_str":"306928864","name":"\u00a1LIDIAAAAA!","screen_name":"LidiaBelieberJB","location":"al lado de @josedaGCA","url":null,"description":"If I lose myself tonight, it'll be by your side... XIV","protected":false,"verified":false,"followers_count":807,"friends_count":451,"listed_count":8,"favourites_count":10027,"statuses_count":26327,"created_at":"Sat May 28 18:01:17 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9864DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161855248\/V09ZlCgE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161855248\/V09ZlCgE.jpeg","profile_background_tile":true,"profile_link_color":"3F00B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602561433973448704\/y52akv1y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602561433973448704\/y52akv1y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306928864\/1438380543","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:17 +0000 2015","id":663714729660162048,"id_str":"663714729660162048","text":"La gente a la que le da miedo los perros, \u00bfqu\u00e9 hac\u00e9is con vuestra vida?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766750151,"id_str":"2766750151","name":"Andrea","screen_name":"aandreeaa_cg","location":null,"url":null,"description":"'Me gusta la gente que sin motivos te busca, que sin mirarte te quiere y sin ataduras se queda.'","protected":false,"verified":false,"followers_count":145,"friends_count":114,"listed_count":0,"favourites_count":446,"statuses_count":2143,"created_at":"Mon Aug 25 15:26:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641674003678130176\/D5YGgNPc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641674003678130176\/D5YGgNPc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766750151\/1441120172","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aandreeaa_cg","name":"Andrea","id":2766750151,"id_str":"2766750151","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879776145409,"id_str":"663727879776145409","text":"Drawing. Haha!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3259944246,"id_str":"3259944246","name":"Nicholas Atanacio","screen_name":"Nic_Atanacio","location":"Antipolo City, Calabarzon","url":null,"description":"9\/10\/97 | PG\/SG \u2022 #10 |CaptainBall \u2022 Steelhomes Basketball | ANHS Alumni 14-15\u2022CB 14-15\u2022DPOY 13-14 | BA Student at OLFUAntipolo | Philippians 4:13 | \u00af\\_(\u30c4)_\/\u00af","protected":false,"verified":false,"followers_count":82,"friends_count":285,"listed_count":0,"favourites_count":1609,"statuses_count":2463,"created_at":"Mon Jun 29 14:28:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617346244399075328\/LjYminbC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617346244399075328\/LjYminbC.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658246865461231616\/XoHvycSN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658246865461231616\/XoHvycSN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3259944246\/1446294621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080032663"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879780491264,"id_str":"663727879780491264","text":"RT @spcver: Cicl\u00f3n Tropical #Megh de cat2 por entrar al Golfo de Aden. Sigue siendo amenaza para #Yemen. GIF v\u00eda @wunderground https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3413041571,"id_str":"3413041571","name":"@Tech_Meteo","screen_name":"MeteoCultura","location":"Zaragoza, Arag\u00f3n","url":"http:\/\/estaciondemeteorologia.com\/","description":"Lugar de encuentro para aficionados y no de las estaciones meteorol\u00f3gicas, la meteorolog\u00eda, climatolog\u00eda y todo lo relacionado con el tiempo y las tecnologia","protected":false,"verified":false,"followers_count":374,"friends_count":1431,"listed_count":5,"favourites_count":260,"statuses_count":499,"created_at":"Mon Aug 10 16:36:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630780659678769152\/Aph3VXYY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630780659678769152\/Aph3VXYY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3413041571\/1439226011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:09:22 +0000 2015","id":663523742274883584,"id_str":"663523742274883584","text":"Cicl\u00f3n Tropical #Megh de cat2 por entrar al Golfo de Aden. Sigue siendo amenaza para #Yemen. GIF v\u00eda @wunderground https:\/\/t.co\/nFhUoYxhVq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117836942,"id_str":"117836942","name":"Meteorolog\u00eda SPC Ver","screen_name":"spcver","location":"Xalapa, Ver.","url":"http:\/\/veracruz.gob.mx","description":"Informaci\u00f3n Meteorol\u00f3gica del Centro de Estudios y Pron\u00f3sticos Meteorol\u00f3gicos de la Secretar\u00eda de Protecci\u00f3n Civil de Veracruz","protected":false,"verified":false,"followers_count":101171,"friends_count":669,"listed_count":272,"favourites_count":3390,"statuses_count":31536,"created_at":"Fri Feb 26 19:45:01 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060876245\/b2a77fd7589824a8c5c3832f0258a020.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060876245\/b2a77fd7589824a8c5c3832f0258a020.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000370937444\/fc4286f2d79be509047748a96e1964a2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000370937444\/fc4286f2d79be509047748a96e1964a2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117836942\/1446570917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":5,"entities":{"hashtags":[{"text":"Megh","indices":[16,21]},{"text":"Yemen","indices":[85,91]}],"urls":[],"user_mentions":[{"screen_name":"wunderground","name":"Weather Underground","id":15740491,"id_str":"15740491","indices":[101,114]}],"symbols":[],"media":[{"id":663523740685201408,"id_str":"663523740685201408","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","url":"https:\/\/t.co\/nFhUoYxhVq","display_url":"pic.twitter.com\/nFhUoYxhVq","expanded_url":"http:\/\/twitter.com\/spcver\/status\/663523742274883584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663523740685201408,"id_str":"663523740685201408","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","url":"https:\/\/t.co\/nFhUoYxhVq","display_url":"pic.twitter.com\/nFhUoYxhVq","expanded_url":"http:\/\/twitter.com\/spcver\/status\/663523742274883584\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[4,3],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVPU5-UcAAnVKq.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Megh","indices":[28,33]},{"text":"Yemen","indices":[97,103]}],"urls":[],"user_mentions":[{"screen_name":"spcver","name":"Meteorolog\u00eda SPC Ver","id":117836942,"id_str":"117836942","indices":[3,10]},{"screen_name":"wunderground","name":"Weather Underground","id":15740491,"id_str":"15740491","indices":[113,126]}],"symbols":[],"media":[{"id":663523740685201408,"id_str":"663523740685201408","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","url":"https:\/\/t.co\/nFhUoYxhVq","display_url":"pic.twitter.com\/nFhUoYxhVq","expanded_url":"http:\/\/twitter.com\/spcver\/status\/663523742274883584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"source_status_id":663523742274883584,"source_status_id_str":"663523742274883584","source_user_id":117836942,"source_user_id_str":"117836942"}]},"extended_entities":{"media":[{"id":663523740685201408,"id_str":"663523740685201408","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVPU5-UcAAnVKq.png","url":"https:\/\/t.co\/nFhUoYxhVq","display_url":"pic.twitter.com\/nFhUoYxhVq","expanded_url":"http:\/\/twitter.com\/spcver\/status\/663523742274883584\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"large":{"w":640,"h":480,"resize":"fit"}},"source_status_id":663523742274883584,"source_status_id_str":"663523742274883584","source_user_id":117836942,"source_user_id_str":"117836942","video_info":{"aspect_ratio":[4,3],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVPU5-UcAAnVKq.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080032664"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879767785473,"id_str":"663727879767785473","text":"@manankyy @Dpka001 nahi...did u wanted...??? Tune epi nahi dekha...???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727547637612544,"in_reply_to_status_id_str":"663727547637612544","in_reply_to_user_id":3103395062,"in_reply_to_user_id_str":"3103395062","in_reply_to_screen_name":"manankyy","user":{"id":3257530106,"id_str":"3257530106","name":"Diksha Naik @gmail.c","screen_name":"dikshanaik572","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":101,"friends_count":106,"listed_count":2,"favourites_count":12453,"statuses_count":12028,"created_at":"Sat Jun 27 07:50:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663114490263678976\/3O3NgI8t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663114490263678976\/3O3NgI8t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257530106\/1445836909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manankyy","name":"\u2764happyBday Niti&Somu","id":3103395062,"id_str":"3103395062","indices":[0,9]},{"screen_name":"Dpka001","name":"DeePiKa","id":1537727136,"id_str":"1537727136","indices":[10,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080032661"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750971392,"id_str":"663727879750971392","text":"RT @Muun_nnn: \u8679\u8272\u30de\u30b8\u30d0\u30f3\u7121\u6599\u3067\u304a\u8b72\u308a\u81f4\u3057\u307e\u3059\u3002\n\u53c2\u52a0\u65b9\u6cd5\u306f\u3001\u753b\u50cf\u3092\u3054\u89a7\u4e0b\u3055\u3044\u3002\n\uff11\uff11\u6708\uff13\uff10\u65e5\u307e\u3067\u53d7\u3051\u4ed8\u3051\u307e\u3059\uff01\n\u30de\u30b8\u30d0\u30f3\u306e\u72b6\u614b\u306f\u3001\u6570\u56de\u4f7f\u7528\u3057\u307e\u3057\u305f\u304c\u3001\u6c5a\u308c\u3082\u306a\u304f\u7dba\u9e97\u3067\u3059\u3002 https:\/\/t.co\/nLo4aUJgV2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2582317561,"id_str":"2582317561","name":"\u3061\u3093\u3071\u3002@\u6771\u4eac\uff11\uff18\u65e5","screen_name":"83upper","location":"\u51b7\u9eba\u308f\u3093\u3053\u305d\u3070( \u02d8\u03c9\u02d8)","url":null,"description":"\u3000\u3000\u3000\u3000\u3000\u3000\u2661\u2661\u3057\u3087\u3046\u305f\u304f\u3093\u2661\u2661\u3000\u3000\u3000\u3000\u3000\u30008100\u5186\uff0b\u624b\u6570\u6599\uff0b\u4ea4\u901a\u8cbb\u4ee5\u4e0a\u306e\u611b\u3092\u304f\u308c\u3000\u3000\u3000\u30d8\u30c3\u30c0\u30fc\u306f\u3053\u3053\u308d\u304b\u3089","protected":false,"verified":false,"followers_count":570,"friends_count":149,"listed_count":21,"favourites_count":5511,"statuses_count":22234,"created_at":"Sun Jun 22 14:16:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660783811047723009\/6pXc8o66_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660783811047723009\/6pXc8o66_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2582317561\/1446123551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:34:26 +0000 2015","id":663318655933935617,"id_str":"663318655933935617","text":"\u8679\u8272\u30de\u30b8\u30d0\u30f3\u7121\u6599\u3067\u304a\u8b72\u308a\u81f4\u3057\u307e\u3059\u3002\n\u53c2\u52a0\u65b9\u6cd5\u306f\u3001\u753b\u50cf\u3092\u3054\u89a7\u4e0b\u3055\u3044\u3002\n\uff11\uff11\u6708\uff13\uff10\u65e5\u307e\u3067\u53d7\u3051\u4ed8\u3051\u307e\u3059\uff01\n\u30de\u30b8\u30d0\u30f3\u306e\u72b6\u614b\u306f\u3001\u6570\u56de\u4f7f\u7528\u3057\u307e\u3057\u305f\u304c\u3001\u6c5a\u308c\u3082\u306a\u304f\u7dba\u9e97\u3067\u3059\u3002 https:\/\/t.co\/nLo4aUJgV2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3605661500,"id_str":"3605661500","name":"\u3061\u3043\u305f\u300a \u56fa\u5b9a\u30c4\u30a4 \u300b","screen_name":"Muun_nnn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":30,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Fri Sep 18 13:58:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647798234094571520\/0tiM0Nyn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647798234094571520\/0tiM0Nyn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3605661500\/1443279313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663318644550561792,"id_str":"663318644550561792","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663318644550561792,"id_str":"663318644550561792","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663318644470886400,"id_str":"663318644470886400","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvCUsAA1Gs1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvCUsAA1Gs1.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Muun_nnn","name":"\u3061\u3043\u305f\u300a \u56fa\u5b9a\u30c4\u30a4 \u300b","id":3605661500,"id_str":"3605661500","indices":[3,12]}],"symbols":[],"media":[{"id":663318644550561792,"id_str":"663318644550561792","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663318655933935617,"source_status_id_str":"663318655933935617","source_user_id":3605661500,"source_user_id_str":"3605661500"}]},"extended_entities":{"media":[{"id":663318644550561792,"id_str":"663318644550561792","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvVUcAAoTQN.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663318655933935617,"source_status_id_str":"663318655933935617","source_user_id":3605661500,"source_user_id_str":"3605661500"},{"id":663318644470886400,"id_str":"663318644470886400","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSUyvCUsAA1Gs1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSUyvCUsAA1Gs1.jpg","url":"https:\/\/t.co\/nLo4aUJgV2","display_url":"pic.twitter.com\/nLo4aUJgV2","expanded_url":"http:\/\/twitter.com\/Muun_nnn\/status\/663318655933935617\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663318655933935617,"source_status_id_str":"663318655933935617","source_user_id":3605661500,"source_user_id_str":"3605661500"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755296768,"id_str":"663727879755296768","text":"#Aging #senior John Allemang: At 64, am I old? It\u2019s all relative, or so I choose to believe\nhttps:\/\/t.co\/y34fEnN4eF","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275820011,"id_str":"275820011","name":"Senioropolis ","screen_name":"Senioropolis","location":"Canada","url":"http:\/\/www.senioropolis.com","description":"#Senioropolis Inc. publishes the #ComprehensiveGuide to #RetirementLiving & #LTC & administers http:\/\/senioropolis.com #seniorsresources in #Canada","protected":false,"verified":false,"followers_count":4766,"friends_count":4187,"listed_count":84,"favourites_count":346,"statuses_count":4763,"created_at":"Sat Apr 02 02:22:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447120419888189440\/0mXdyRGz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447120419888189440\/0mXdyRGz.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1324921342\/senioropolisinctwit_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1324921342\/senioropolisinctwit_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275820011\/1375065943","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Aging","indices":[0,6]},{"text":"senior","indices":[7,14]}],"urls":[{"url":"https:\/\/t.co\/y34fEnN4eF","expanded_url":"http:\/\/www.senioropolis.com\/#news1307","display_url":"senioropolis.com\/#news1307","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032658"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879780339712,"id_str":"663727879780339712","text":"\uff25\uff58\uff43\uff45\uff4c\u306e\u4f7f\u3044\u65b9\u3092\u83ef\u9e97\u306b\u7dba\u9e97\u3055\u3063\u3071\u308a\u5fd8\u308c\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/bit.ly\/UDldit\" rel=\"nofollow\"\u003eSaezuri\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1653838716,"id_str":"1653838716","name":"\u308a\u3093\u3054@\u30de\u30eb\u30c1\u52df\u96c6\u56fa\u5b9a","screen_name":"ringo_x0613","location":null,"url":"http:\/\/nanos.jp\/ringo0613\/","description":"\u6210\u4eba\u8150\u3002\u30b2\u30fc\u30e0\u540d\u3053\u307e\u3061\u3002pkg\u5185\u5bb9\u3092\u542b\u307f\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u306f\u540c\u5fd7\u3068\u308f\u304b\u308b\u65b9\u306e\u307f\u3002\u4ea4\u63db\u3063\u5b50\u306epkg\u559c\u3073\u307e\u3059\u3002\u7121\u8a00\u3075\u3041\u307c\u9061\u308a\u3075\u3041\u307c\u9b54\u3002\u7a7a\u30ea\u30d7\u6c17\u3065\u304b\u306a\u3044\u6642\u591a\u3005\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":161,"friends_count":206,"listed_count":1,"favourites_count":681,"statuses_count":8848,"created_at":"Wed Aug 07 21:01:48 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492995340987924480\/TzJ9ZL0b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492995340987924480\/TzJ9ZL0b_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032664"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750942720,"id_str":"663727879750942720","text":"\"Kasus kanker payudara sering menyerang wanita usia 47-50 tahun\": Spesialis bedah onkologi dari Rumah Sakit Si... https:\/\/t.co\/WDUsSgAws1","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647131937,"id_str":"2647131937","name":"Calista Maya Nabilah","screen_name":"CyberVirus48","location":"DKI Jakarta, Indonesia","url":null,"description":"Terus jalani kehidupan yang ada :)","protected":false,"verified":false,"followers_count":131,"friends_count":1,"listed_count":49,"favourites_count":0,"statuses_count":334271,"created_at":"Tue Jul 15 07:32:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488949776843415552\/Lx0Q6mEA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488949776843415552\/Lx0Q6mEA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647131937\/1405410274","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WDUsSgAws1","expanded_url":"http:\/\/bit.ly\/20GS323","display_url":"bit.ly\/20GS323","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784542208,"id_str":"663727879784542208","text":"RT @FPS_SOUL: http:\/\/t.co\/2oXtgXwF8v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351623206,"id_str":"2351623206","name":"\u6804\u990a\u5931\u8abf\u306e\u80ba\u708e\u30c8\u30ea\u30a2","screen_name":"Zestria_","location":"\u6a2a\u9808\u8cc0\u93ae\u5b88\u5e9c\u2192\u5ca9\u5ddd\u57fa\u5730","url":"http:\/\/twpf.jp\/Zestria_","description":"COD\/BF\/Kan Colle\/WoWs\/WT\/AVA\u6700\u8fd1\u59cb\u3081\u305f \u4ef2\u826f\u304f\u3057\u3066\u306d \u30c7\u30d0\u30a4\u30b9Razer\/SteelSeries\u3067\u60a9\u3080 \u30b5\u30d6\u57a2\u3068\u3044\u3046\u304b\u53b3\u9078\u57a2\u2192@Altriaz_ CLANNAD\u306f\u4eba\u751f","protected":false,"verified":false,"followers_count":3931,"friends_count":3483,"listed_count":207,"favourites_count":69422,"statuses_count":56330,"created_at":"Wed Feb 19 12:38:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661491280443150336\/3cXFY4r3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661491280443150336\/3cXFY4r3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351623206\/1443898960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Jul 12 11:31:27 +0000 2015","id":620193749948215296,"id_str":"620193749948215296","text":"http:\/\/t.co\/2oXtgXwF8v","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2239013138,"id_str":"2239013138","name":"FPS\u9b42\u306e\u53eb\u3073","screen_name":"FPS_SOUL","location":"\u4e3b\u306bFPS\u306b\u3064\u3044\u3066\u545f\u304d\u307e\u3059\u3002","url":"https:\/\/www.youtube.com\/watch?v=2EcABE7imYM&feature=youtu.be","description":"\u8033\u3067\u8996\u308d\u3002\u773c\u3067\u8074\u3051\u3002","protected":false,"verified":false,"followers_count":5629,"friends_count":5340,"listed_count":35,"favourites_count":4,"statuses_count":12212,"created_at":"Tue Dec 10 11:28:46 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/536088881741828096\/dedB5QTi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/536088881741828096\/dedB5QTi.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548847870028173312\/bYfyXMLF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548847870028173312\/bYfyXMLF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2239013138\/1426229079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3042,"favorite_count":2138,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":620193747968483328,"id_str":"620193747968483328","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","url":"http:\/\/t.co\/2oXtgXwF8v","display_url":"pic.twitter.com\/2oXtgXwF8v","expanded_url":"http:\/\/twitter.com\/FPS_SOUL\/status\/620193749948215296\/photo\/1","type":"photo","sizes":{"medium":{"w":260,"h":146,"resize":"fit"},"thumb":{"w":150,"h":146,"resize":"crop"},"large":{"w":260,"h":146,"resize":"fit"},"small":{"w":260,"h":146,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":620193747968483328,"id_str":"620193747968483328","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","url":"http:\/\/t.co\/2oXtgXwF8v","display_url":"pic.twitter.com\/2oXtgXwF8v","expanded_url":"http:\/\/twitter.com\/FPS_SOUL\/status\/620193749948215296\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":260,"h":146,"resize":"fit"},"thumb":{"w":150,"h":146,"resize":"crop"},"large":{"w":260,"h":146,"resize":"fit"},"small":{"w":260,"h":146,"resize":"fit"}},"video_info":{"aspect_ratio":[130,73],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CJte7YeUYAAf-qF.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FPS_SOUL","name":"FPS\u9b42\u306e\u53eb\u3073","id":2239013138,"id_str":"2239013138","indices":[3,12]}],"symbols":[],"media":[{"id":620193747968483328,"id_str":"620193747968483328","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","url":"http:\/\/t.co\/2oXtgXwF8v","display_url":"pic.twitter.com\/2oXtgXwF8v","expanded_url":"http:\/\/twitter.com\/FPS_SOUL\/status\/620193749948215296\/photo\/1","type":"photo","sizes":{"medium":{"w":260,"h":146,"resize":"fit"},"thumb":{"w":150,"h":146,"resize":"crop"},"large":{"w":260,"h":146,"resize":"fit"},"small":{"w":260,"h":146,"resize":"fit"}},"source_status_id":620193749948215296,"source_status_id_str":"620193749948215296","source_user_id":2239013138,"source_user_id_str":"2239013138"}]},"extended_entities":{"media":[{"id":620193747968483328,"id_str":"620193747968483328","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CJte7YeUYAAf-qF.png","url":"http:\/\/t.co\/2oXtgXwF8v","display_url":"pic.twitter.com\/2oXtgXwF8v","expanded_url":"http:\/\/twitter.com\/FPS_SOUL\/status\/620193749948215296\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":260,"h":146,"resize":"fit"},"thumb":{"w":150,"h":146,"resize":"crop"},"large":{"w":260,"h":146,"resize":"fit"},"small":{"w":260,"h":146,"resize":"fit"}},"source_status_id":620193749948215296,"source_status_id_str":"620193749948215296","source_user_id":2239013138,"source_user_id_str":"2239013138","video_info":{"aspect_ratio":[130,73],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CJte7YeUYAAf-qF.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879780499456,"id_str":"663727879780499456","text":"\"Withholding is a kind of reputation building, to be responsible, respectable, but oh boy, if you knew what we had.\" @Cryptomeorg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3970649480,"id_str":"3970649480","name":"A. de Tocqueville","screen_name":"drtocqueville","location":null,"url":null,"description":"I love my Country; I fear my Government.","protected":false,"verified":false,"followers_count":102,"friends_count":120,"listed_count":15,"favourites_count":5,"statuses_count":1207,"created_at":"Wed Oct 21 16:00:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660125432784662528\/LGYjGsU0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660125432784662528\/LGYjGsU0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3970649480\/1445627001","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cryptomeorg","name":"Cryptome","id":116966175,"id_str":"116966175","indices":[117,129]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032664"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763525633,"id_str":"663727879763525633","text":"RT @Cater_xo_pillar: \ud589\ubcf5\ud558\uba74 \ubaa9\uc774 \uc0ac\ub77c\uc9c0\ub294 \uac31\uc218\n\n#CallMeBaby #EXO https:\/\/t.co\/9rZqQKugbu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3263423556,"id_str":"3263423556","name":"\u0e17\u0e34\u0e06\u0e31\u0e21\u0e1e\u0e23 \u0e17\u0e2d\u0e07\u0e28\u0e34\u0e23\u0e34\u0e0a\u0e31\u0e22","screen_name":"talidtidtack","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":86,"listed_count":1,"favourites_count":8,"statuses_count":656,"created_at":"Wed Jul 01 13:31:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625207470923780096\/SRUHnIRY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625207470923780096\/SRUHnIRY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3263423556\/1447035234","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:44 +0000 2015","id":663717862276657152,"id_str":"663717862276657152","text":"\ud589\ubcf5\ud558\uba74 \ubaa9\uc774 \uc0ac\ub77c\uc9c0\ub294 \uac31\uc218\n\n#CallMeBaby #EXO https:\/\/t.co\/9rZqQKugbu","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189769602,"id_str":"2189769602","name":"\uce90\ud130\ud544\ub7ec","screen_name":"Cater_xo_pillar","location":"\uc911\uc5bc\uc911\uc5bc \ud765\uc5bc\ud765\uc5bc","url":null,"description":"\u2661 EXO \u2661 \/ \uc778\uc7a5\uc740 \uce78\ub098\ub2d8(@kaixkanna)","protected":false,"verified":false,"followers_count":8963,"friends_count":410,"listed_count":42,"favourites_count":549,"statuses_count":27827,"created_at":"Tue Nov 12 06:43:05 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/489399561903828992\/4Ncrsbgq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/489399561903828992\/4Ncrsbgq.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661430594790821889\/g3KmzYIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661430594790821889\/g3KmzYIr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189769602\/1446532332","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":6,"entities":{"hashtags":[{"text":"CallMeBaby","indices":[17,28]},{"text":"EXO","indices":[29,33]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717739580690432,"id_str":"663717739580690432","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","url":"https:\/\/t.co\/9rZqQKugbu","display_url":"pic.twitter.com\/9rZqQKugbu","expanded_url":"http:\/\/twitter.com\/Cater_xo_pillar\/status\/663717862276657152\/photo\/1","type":"photo","sizes":{"medium":{"w":244,"h":292,"resize":"fit"},"small":{"w":244,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":244,"h":292,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717739580690432,"id_str":"663717739580690432","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","url":"https:\/\/t.co\/9rZqQKugbu","display_url":"pic.twitter.com\/9rZqQKugbu","expanded_url":"http:\/\/twitter.com\/Cater_xo_pillar\/status\/663717862276657152\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":244,"h":292,"resize":"fit"},"small":{"w":244,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":244,"h":292,"resize":"fit"}},"video_info":{"aspect_ratio":[61,73],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX_xILVEAAZF84.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CallMeBaby","indices":[38,49]},{"text":"EXO","indices":[50,54]}],"urls":[],"user_mentions":[{"screen_name":"Cater_xo_pillar","name":"\uce90\ud130\ud544\ub7ec","id":2189769602,"id_str":"2189769602","indices":[3,19]}],"symbols":[],"media":[{"id":663717739580690432,"id_str":"663717739580690432","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","url":"https:\/\/t.co\/9rZqQKugbu","display_url":"pic.twitter.com\/9rZqQKugbu","expanded_url":"http:\/\/twitter.com\/Cater_xo_pillar\/status\/663717862276657152\/photo\/1","type":"photo","sizes":{"medium":{"w":244,"h":292,"resize":"fit"},"small":{"w":244,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":244,"h":292,"resize":"fit"}},"source_status_id":663717862276657152,"source_status_id_str":"663717862276657152","source_user_id":2189769602,"source_user_id_str":"2189769602"}]},"extended_entities":{"media":[{"id":663717739580690432,"id_str":"663717739580690432","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX_xILVEAAZF84.png","url":"https:\/\/t.co\/9rZqQKugbu","display_url":"pic.twitter.com\/9rZqQKugbu","expanded_url":"http:\/\/twitter.com\/Cater_xo_pillar\/status\/663717862276657152\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":244,"h":292,"resize":"fit"},"small":{"w":244,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":244,"h":292,"resize":"fit"}},"source_status_id":663717862276657152,"source_status_id_str":"663717862276657152","source_user_id":2189769602,"source_user_id_str":"2189769602","video_info":{"aspect_ratio":[61,73],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX_xILVEAAZF84.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879759376384,"id_str":"663727879759376384","text":"RT @CurvyLadyProbs: Basically how I'm handling life right now https:\/\/t.co\/AGPoduEdAw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":829983518,"id_str":"829983518","name":"Greer Masterson","screen_name":"greer_berry","location":null,"url":null,"description":"i'm like a hexagon all my hecks are gone","protected":false,"verified":false,"followers_count":124,"friends_count":148,"listed_count":0,"favourites_count":566,"statuses_count":481,"created_at":"Mon Sep 17 23:19:09 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF1F4F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872602065\/912c9e67edc0e45e5207f3d9412c2d13.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872602065\/912c9e67edc0e45e5207f3d9412c2d13.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C3AFB8","profile_sidebar_fill_color":"D57789","profile_text_color":"C1D6BA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661665365961805824\/0cWUrF2e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661665365961805824\/0cWUrF2e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829983518\/1445214342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:48:01 +0000 2015","id":663608964416933888,"id_str":"663608964416933888","text":"Basically how I'm handling life right now https:\/\/t.co\/AGPoduEdAw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":892501717,"id_str":"892501717","name":"CurvyLadyProbs","screen_name":"CurvyLadyProbs","location":"#EndTheStigma","url":"http:\/\/www.instagram.com\/curvyladyprobs","description":"I welcome, support, and celebrate ALL sized women, not just the curvy ones. No body shaming \u2022 LOVE YOURSELF \u2022 http:\/\/www.facebook.com\/youreasizebeautiful","protected":false,"verified":false,"followers_count":88399,"friends_count":3476,"listed_count":221,"favourites_count":31443,"statuses_count":63976,"created_at":"Sat Oct 20 04:57:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"97F7B5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000021236287\/822190eb79d6df6cb94feddc9cff372e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000021236287\/822190eb79d6df6cb94feddc9cff372e.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659078180498751488\/knK8azCj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659078180498751488\/knK8azCj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892501717\/1433513000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":158,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663608947635576832,"id_str":"663608947635576832","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","url":"https:\/\/t.co\/AGPoduEdAw","display_url":"pic.twitter.com\/AGPoduEdAw","expanded_url":"http:\/\/twitter.com\/CurvyLadyProbs\/status\/663608964416933888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":639,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663608947635576832,"id_str":"663608947635576832","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","url":"https:\/\/t.co\/AGPoduEdAw","display_url":"pic.twitter.com\/AGPoduEdAw","expanded_url":"http:\/\/twitter.com\/CurvyLadyProbs\/status\/663608964416933888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":639,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CurvyLadyProbs","name":"CurvyLadyProbs","id":892501717,"id_str":"892501717","indices":[3,18]}],"symbols":[],"media":[{"id":663608947635576832,"id_str":"663608947635576832","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","url":"https:\/\/t.co\/AGPoduEdAw","display_url":"pic.twitter.com\/AGPoduEdAw","expanded_url":"http:\/\/twitter.com\/CurvyLadyProbs\/status\/663608964416933888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":639,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663608964416933888,"source_status_id_str":"663608964416933888","source_user_id":892501717,"source_user_id_str":"892501717"}]},"extended_entities":{"media":[{"id":663608947635576832,"id_str":"663608947635576832","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWc0mmW4AAINEP.jpg","url":"https:\/\/t.co\/AGPoduEdAw","display_url":"pic.twitter.com\/AGPoduEdAw","expanded_url":"http:\/\/twitter.com\/CurvyLadyProbs\/status\/663608964416933888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":639,"h":359,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663608964416933888,"source_status_id_str":"663608964416933888","source_user_id":892501717,"source_user_id_str":"892501717"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032659"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784636416,"id_str":"663727879784636416","text":"Reynoldsburg LE #justice4cephus tweets are written based on facts. BETTER than your \"investigation\" https:\/\/t.co\/8Cf5bzyfHX","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2273108910,"id_str":"2273108910","name":"Cindy'sVoice","screen_name":"CindysVoice","location":"Scott CityMISSOURI","url":"https:\/\/www.facebook.com\/pages\/Cindys-Voice\/467315483367786","description":"Cindy was murdered in her home August 7,2013 by her son, and his girlfriend. I promised to be her voice","protected":false,"verified":false,"followers_count":624,"friends_count":1850,"listed_count":32,"favourites_count":91,"statuses_count":72812,"created_at":"Thu Jan 02 14:42:05 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418755732775772160\/RbjGzoN1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418755732775772160\/RbjGzoN1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2273108910\/1407699980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"justice4cephus","indices":[16,31]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653658605078626304,"id_str":"653658605078626304","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDCcAWwAAwedv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDCcAWwAAwedv.jpg","url":"https:\/\/t.co\/8Cf5bzyfHX","display_url":"pic.twitter.com\/8Cf5bzyfHX","expanded_url":"http:\/\/twitter.com\/CK12015\/status\/653658605514846209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"source_status_id":653658605514846209,"source_status_id_str":"653658605514846209","source_user_id":3833650452,"source_user_id_str":"3833650452"}]},"extended_entities":{"media":[{"id":653658605078626304,"id_str":"653658605078626304","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDCcAWwAAwedv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDCcAWwAAwedv.jpg","url":"https:\/\/t.co\/8Cf5bzyfHX","display_url":"pic.twitter.com\/8Cf5bzyfHX","expanded_url":"http:\/\/twitter.com\/CK12015\/status\/653658605514846209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"source_status_id":653658605514846209,"source_status_id_str":"653658605514846209","source_user_id":3833650452,"source_user_id_str":"3833650452"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879780474880,"id_str":"663727879780474880","text":"RT @HerBigHomie: Retweet for someone you love and miss #RIP \ud83d\udc7c\ud83d\udc94\ud83d\udc96\ud83d\ude07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474438468,"id_str":"474438468","name":"Lalah \u2728","screen_name":"_nsm0926","location":null,"url":null,"description":"Nehemiah Semaj Moore \u2764\ufe0f","protected":false,"verified":false,"followers_count":738,"friends_count":542,"listed_count":2,"favourites_count":368,"statuses_count":34686,"created_at":"Thu Jan 26 00:28:52 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560100721\/Nehemiah.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560100721\/Nehemiah.jpg","profile_background_tile":true,"profile_link_color":"080F12","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663548060484673536\/DhiIjRFd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663548060484673536\/DhiIjRFd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474438468\/1446434126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 03:23:35 +0000 2015","id":662832742564954112,"id_str":"662832742564954112","text":"Retweet for someone you love and miss #RIP \ud83d\udc7c\ud83d\udc94\ud83d\udc96\ud83d\ude07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452472311,"id_str":"452472311","name":"Mr. Kill Yo Mentions","screen_name":"HerBigHomie","location":"City of Lost Angels","url":"http:\/\/www.circleofgreats.com","description":"Self made, no handouts. #BMF","protected":false,"verified":false,"followers_count":12340,"friends_count":5956,"listed_count":24,"favourites_count":395,"statuses_count":2942,"created_at":"Sun Jan 01 22:03:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"745A31","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663167106242875392\/5e-lLZKu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663167106242875392\/5e-lLZKu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452472311\/1446909639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1304,"favorite_count":331,"entities":{"hashtags":[{"text":"RIP","indices":[38,42]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RIP","indices":[55,59]}],"urls":[],"user_mentions":[{"screen_name":"HerBigHomie","name":"Mr. Kill Yo Mentions","id":452472311,"id_str":"452472311","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032664"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879771983872,"id_str":"663727879771983872","text":"RT @kurosuguri43: \u6628\u65e5\u306e\u30a4\u30d9\u30f3\u30c8\u3067\u8a71\u984c\u306b\u306a\u3063\u305f\u300e\u304a\u306b\u304e\u308a\u3063\u3066\u3001\u30e9\u30c3\u30d7\u3088\u308a\u30db\u30a4\u30eb\u306e\u307b\u3046\u304c\u7f8e\u5473\u3057\u3055\u304c\u9577\u6301\u3061\u3059\u308b\u3063\u3066\u307b\u3093\u3068\uff1f\u300f\u306e\u5b9f\u9a13\u7d50\u679c\u306b\u304b\u306a\u308a\u9a5a\u3044\u3066\u3044\u307e\u3059\u30024\u6642\u9593\u524d\u306b\u63e1\u3063\u305f2\u7a2e\u3067\u3059\u304c\u3001\u5168\u7136\u9055\u3044\u307e\u3059\u3088\u3002\u30db\u30a4\u30eb\u306e\u307b\u3046\u304c\u660e\u3089\u304b\u306b\u7f8e\u5473\u3057\u3044\u3002\u745e\u3005\u3057\u304f\u3001\u3057\u3063\u304b\u308a\u63e1\u3089\u308c\u3066\u308b\u306e\u306b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380978875,"id_str":"380978875","name":"\u306a\u307f\u305e\u3049\u3049\u3049\u3049\u3045","screen_name":"namizoooou","location":"\u6771\u4eac\u90fd\u30b5\u30f3\u30af\u30c8\u30da\u30c6\u30eb\u30d6\u30eb\u30af","url":null,"description":"\u6d17\u6fef\u4fc2","protected":false,"verified":false,"followers_count":285,"friends_count":285,"listed_count":13,"favourites_count":3783,"statuses_count":44209,"created_at":"Tue Sep 27 15:06:14 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612212640421560322\/-RDEjS_4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612212640421560322\/-RDEjS_4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380978875\/1375872251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 04:18:34 +0000 2015","id":663208967980515328,"id_str":"663208967980515328","text":"\u6628\u65e5\u306e\u30a4\u30d9\u30f3\u30c8\u3067\u8a71\u984c\u306b\u306a\u3063\u305f\u300e\u304a\u306b\u304e\u308a\u3063\u3066\u3001\u30e9\u30c3\u30d7\u3088\u308a\u30db\u30a4\u30eb\u306e\u307b\u3046\u304c\u7f8e\u5473\u3057\u3055\u304c\u9577\u6301\u3061\u3059\u308b\u3063\u3066\u307b\u3093\u3068\uff1f\u300f\u306e\u5b9f\u9a13\u7d50\u679c\u306b\u304b\u306a\u308a\u9a5a\u3044\u3066\u3044\u307e\u3059\u30024\u6642\u9593\u524d\u306b\u63e1\u3063\u305f2\u7a2e\u3067\u3059\u304c\u3001\u5168\u7136\u9055\u3044\u307e\u3059\u3088\u3002\u30db\u30a4\u30eb\u306e\u307b\u3046\u304c\u660e\u3089\u304b\u306b\u7f8e\u5473\u3057\u3044\u3002\u745e\u3005\u3057\u304f\u3001\u3057\u3063\u304b\u308a\u63e1\u3089\u308c\u3066\u308b\u306e\u306b\u7a7a\u6c17\u542b\u6709\u91cf\u304c\u591a\u304f\u98df\u611f\u3082\u3044\u3044\u3002\u3073\u3063\u304f\u308a\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221183756,"id_str":"221183756","name":"\u85e4\u6751\u516c\u6d0b","screen_name":"kurosuguri43","location":"\u5742\u306e\u753a","url":null,"description":"\u65ec\u3092\u5c11\u3057\u904e\u304e\u305f\u30d0\u30fc\u30c6\u30f3\u30c0\u30fc\u3002\u30d1\u30fc\u30c8\u30bf\u30a4\u30e0\u306e\u6599\u7406\u5bb6\u3002\u30b1\u98df\u3002\u6620\u753b\u3002\u8457\u66f8\u300c\u75c5\u6c17\u306b\u306a\u3063\u305f\u30d0\u30fc\u30c6\u30f3\u30c0\u30fc\u306e\u7f6a\u307b\u308d\u307c\u3057\u30ec\u30b7\u30d4\u300d\u8b1b\u8ac7\u793e\u3002\u6599\u7406\u62c5\u5f53\u300c\u306b\u3063\u307d\u3093\u306e\u304a\u306b\u304e\u308a\u300d\u7406\u8ad6\u793e\u3002kurosuguri43@gmail.com","protected":false,"verified":false,"followers_count":1402,"friends_count":331,"listed_count":32,"favourites_count":266,"statuses_count":15603,"created_at":"Mon Nov 29 23:48:03 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1179335515\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1179335515\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221183756\/1430561784","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3777,"favorite_count":2291,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kurosuguri43","name":"\u85e4\u6751\u516c\u6d0b","id":221183756,"id_str":"221183756","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032662"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879759376386,"id_str":"663727879759376386","text":"@KokoneNonoka \u3042\u3001\u3084\u3060\u3001\uff15\u7d44\u306e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727815624257536,"in_reply_to_status_id_str":"663727815624257536","in_reply_to_user_id":3278644777,"in_reply_to_user_id_str":"3278644777","in_reply_to_screen_name":"KokoneNonoka","user":{"id":3275290170,"id_str":"3275290170","name":"\u3086 \u3046","screen_name":"6nc1IH8JvjRp5lO","location":null,"url":null,"description":"\u57ce \u6771\u27ab\u4f50 \u91ce \u2460 \u5439 \u594f \u697d \u90e8trombone\u30fb2nd\u02d9\u1d55\u02d9\u2661 \u2741\u3061\u3043\u307d\u307d\u30fbrepipi\u2741 \u261e\u4e43\u6728\u5742\uff14\uff16\u2661\u2661 \u2728\u9752\u6625\u2728","protected":false,"verified":false,"followers_count":75,"friends_count":73,"listed_count":0,"favourites_count":808,"statuses_count":165,"created_at":"Sat Jul 11 07:17:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663170306836566016\/LOLMdeSv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663170306836566016\/LOLMdeSv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3275290170\/1447069520","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KokoneNonoka","name":"Nonoraru","id":3278644777,"id_str":"3278644777","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032659"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750946817,"id_str":"663727879750946817","text":"@JOINTonight_198 \n\u306a\u308b\u307b\u3069\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727177666420736,"in_reply_to_status_id_str":"663727177666420736","in_reply_to_user_id":2277234224,"in_reply_to_user_id_str":"2277234224","in_reply_to_screen_name":"JOINTonight_198","user":{"id":3317651617,"id_str":"3317651617","name":"\u590f\u677e (\u590f\u90a3)","screen_name":"natsuna_0509","location":"\uff72\uff9d\uff78\u306e\u4e2d","url":null,"description":"Like \u2765\u2765 back number \u2765\u2765 Thinking Dogs \u2765\u2765 &CORE \u2765\u2765 SLH \u2765\u2765 YUMA\u3055\u3093 \u2765\u2765 mao\u3055\u3093 \u2765\u2765 \u5f71\u97f3lovers \u2765\u2765 Splatoon \u2765\u2765 My Melody \u2765\u2765 etc\u2026\u2113\u03c3\u03bd\u0454 \u2765\u2765 @waka1345","protected":false,"verified":false,"followers_count":97,"friends_count":165,"listed_count":4,"favourites_count":2520,"statuses_count":1426,"created_at":"Mon Aug 17 09:50:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662942441180282881\/9sc5a_fe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662942441180282881\/9sc5a_fe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317651617\/1447067151","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JOINTonight_198","name":"JOINTo\/night","id":2277234224,"id_str":"2277234224","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879772086273,"id_str":"663727879772086273","text":"VENEZUELA NECESITA UNA OPOSICI\u00d3N HONESTA QUE LE DUELA EL PA\u00cdS NO DELINCUENTES ASESINOS COMO ESTA OPOSICI\u00d3N QUE HOY EXISTE EN VENEZUELA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1240249674,"id_str":"1240249674","name":"Adalberto Rincones","screen_name":"AdalbertoRinco1","location":"maracay edo aragua","url":null,"description":null,"protected":false,"verified":false,"followers_count":1112,"friends_count":1672,"listed_count":45,"favourites_count":36,"statuses_count":65050,"created_at":"Mon Mar 04 01:49:24 +0000 2013","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000226213364\/a7863131afc9808c10691433694f97fc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000226213364\/a7863131afc9808c10691433694f97fc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1240249674\/1375380787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"043383f8b2b79918","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/043383f8b2b79918.json","place_type":"country","name":"Venezuela","full_name":"Venezuela","country_code":"VE","country":"Venezuela","bounding_box":{"type":"Polygon","coordinates":[[[-73.354073,0.648837],[-73.354073,12.196802],[-59.803780,12.196802],[-59.803780,0.648837]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080032662"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763554304,"id_str":"663727879763554304","text":"RT @gun_36_shizuka: LDH\u57a2\u4f5c\u3063\u305f\u3070\u3063\u304b\u308a\u306a\u306e\u3067\u2026\n\n\u300a\ud83c\udf0f\u300b\u5ca1\u5c71\n\u300a\ud83d\udc6d\u300bLJC \n\u300a\ud83d\udc93\u300bShizuka\n\u300a\ud83d\udc99\u300b\u5ca9\u7530\u525b\u5178\n\u300a\ud83d\udc9b\u300b\u767d\u6ff1\u4e9c\u5d50\n\u300a\u2764\u300bSHOKICHI\n\u300a\ud83c\udfc1\u300bCW BP AW\n#LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2679755467,"id_str":"2679755467","name":"koto\u2661\u0337\u2661\u0337\u4f01\u753b\u4e2d\u3067\u3059(^^)","screen_name":"KotorinMiwa","location":null,"url":null,"description":"LDH\u3068\u30ac\u30f3\u30d0\u611b\u3057\u3066\u307e\u3059\u3002\/ #\u767d\u6ff1\u4e9c\u5d50.#\u5ca9\u7530\u525b\u5178.#\u7c73\u5009\u6052\u8cb4.\u5927\u597d\u304d\u3067\u3059\u2661\u2661\u2661\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\/EXILE.\u4e09\u4ee3\u76ee.GENE.Eg\u2661\u02be\u02be\/ \u4f01\u753b.\u30d5\u30a7\u30eb\u30c8\u4f5c\u308a\u3057\u307e\u3059\u203c\ufe0e\/AW.BP\u53c2\u6226\u6e08\u2661\u30ac\u30f3\u30d0\u306f\u30db\u30fc\u30e0\u307b\u3068\u3093\u3069\u53c2\u6226\u2661LDHfan\u3055\u3093\u30ac\u30f3\u30d0\u30b5\u30dd\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u203c\ufe0e\u203c\ufe0e","protected":false,"verified":false,"followers_count":447,"friends_count":434,"listed_count":1,"favourites_count":435,"statuses_count":1294,"created_at":"Fri Jul 25 14:28:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663251194127650817\/VOvZ3n5g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663251194127650817\/VOvZ3n5g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2679755467\/1446132325","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 09:41:46 +0000 2015","id":662203142101037056,"id_str":"662203142101037056","text":"LDH\u57a2\u4f5c\u3063\u305f\u3070\u3063\u304b\u308a\u306a\u306e\u3067\u2026\n\n\u300a\ud83c\udf0f\u300b\u5ca1\u5c71\n\u300a\ud83d\udc6d\u300bLJC \n\u300a\ud83d\udc93\u300bShizuka\n\u300a\ud83d\udc99\u300b\u5ca9\u7530\u525b\u5178\n\u300a\ud83d\udc9b\u300b\u767d\u6ff1\u4e9c\u5d50\n\u300a\u2764\u300bSHOKICHI\n\u300a\ud83c\udfc1\u300bCW BP AW\n#LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/2Rrows5uIo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4133298434,"id_str":"4133298434","name":"\uff72\uff9c\uff80 \uff8b\uff96\uff98\u3010\u5ca9\u7530\u525b\u5178\u306bdr\u671f\u3011","screen_name":"gun_36_shizuka","location":"\u540d\u53e4\u5c4b\u306e\u30d1\u30fc\u30d5\u30a7\u30af\u30c8\u30dc\u30fc\u30a4","url":null,"description":"\u3010LDH\u57a2\u3011Erie\u770c*\u4e2d\u2476*Shizuka \u5ca9\u7530\u525b\u5178 SHOKICHI \u767d\u6ff1\u4e9c\u5d50love\u2661 \uff84\uff9e\uff98\uff72\uff8d\uff9e:)1108 CW:)0328 USJ:)0614 Ami:)0712 DEP:)0714 BP:)1014 \uff8a\uff8b\uff9f:)1017 AW:)1024 Next\u21dd\uff84\uff9e\uff98\uff8a\uff9f:)1121 \u8ab0\u3067\u3082\uff8c\uff6b\uff9b\uff70\u304a\u306d\u304c\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":187,"friends_count":205,"listed_count":1,"favourites_count":154,"statuses_count":388,"created_at":"Thu Nov 05 08:57:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662292300723175424\/OtgwFJcJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662292300723175424\/OtgwFJcJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4133298434\/1446714306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":139,"favorite_count":27,"entities":{"hashtags":[{"text":"LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[82,97]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[99,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662203131212640257,"id_str":"662203131212640257","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","url":"https:\/\/t.co\/2Rrows5uIo","display_url":"pic.twitter.com\/2Rrows5uIo","expanded_url":"http:\/\/twitter.com\/gun_36_shizuka\/status\/662203142101037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":705,"h":705,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662203131212640257,"id_str":"662203131212640257","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","url":"https:\/\/t.co\/2Rrows5uIo","display_url":"pic.twitter.com\/2Rrows5uIo","expanded_url":"http:\/\/twitter.com\/gun_36_shizuka\/status\/662203142101037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":705,"h":705,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[102,117]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[119,133]}],"urls":[],"user_mentions":[{"screen_name":"gun_36_shizuka","name":"\uff72\uff9c\uff80 \uff8b\uff96\uff98\u3010\u5ca9\u7530\u525b\u5178\u306bdr\u671f\u3011","id":4133298434,"id_str":"4133298434","indices":[3,18]}],"symbols":[],"media":[{"id":662203131212640257,"id_str":"662203131212640257","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","url":"https:\/\/t.co\/2Rrows5uIo","display_url":"pic.twitter.com\/2Rrows5uIo","expanded_url":"http:\/\/twitter.com\/gun_36_shizuka\/status\/662203142101037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":705,"h":705,"resize":"fit"}},"source_status_id":662203142101037056,"source_status_id_str":"662203142101037056","source_user_id":4133298434,"source_user_id_str":"4133298434"}]},"extended_entities":{"media":[{"id":662203131212640257,"id_str":"662203131212640257","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCePUUUsAEoXBQ.jpg","url":"https:\/\/t.co\/2Rrows5uIo","display_url":"pic.twitter.com\/2Rrows5uIo","expanded_url":"http:\/\/twitter.com\/gun_36_shizuka\/status\/662203142101037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":705,"h":705,"resize":"fit"}},"source_status_id":662203142101037056,"source_status_id_str":"662203142101037056","source_user_id":4133298434,"source_user_id_str":"4133298434"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879780483072,"id_str":"663727879780483072","text":"Bird strike forces plane to make emergency landing in Vegas https:\/\/t.co\/xk1BcCFqAL","source":"\u003ca href=\"https:\/\/zapier.com\/\" rel=\"nofollow\"\u003eZapier.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23103045,"id_str":"23103045","name":"KRQE.com Headlines","screen_name":"krqe_headlines","location":"Albuquerque, NM","url":"http:\/\/www.krqe.com\/","description":"New Mexico headlines from http:\/\/KRQE.com, updated every half hour or so. Send us your news tips to reportit@krqe.com","protected":false,"verified":false,"followers_count":5063,"friends_count":65,"listed_count":177,"favourites_count":0,"statuses_count":63699,"created_at":"Fri Mar 06 19:03:09 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"5C61FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1732727910\/socialmedia_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1732727910\/socialmedia_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xk1BcCFqAL","expanded_url":"http:\/\/zpr.io\/acNm","display_url":"zpr.io\/acNm","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032664"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763587072,"id_str":"663727879763587072","text":"RT @chen102_0921: \uc54c\ud2f0\ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4. \ud604\uc7ac \ud558\uace0\uacc4\uc2dc\ub294 \uc774 \ud574\uc2dc\ud0dc\uadf8 \ub204\uac00 \uc2dc\uc791\ud558\uc167\ub294\uc9c0\ub294\ubab0\ub77c\ub3c4 \ud574\uc2dc \ud0dc\uadf8\ud558\ub294\uae30\uac04 \ub05d\ub0ac\uc2b5\ub2c8\ub2e4. \uc774\uc81c \uadf8\ub9cc\ud558\uc2dc\uace0 \ub9c8\ub9c8\ud22c\ud45c\ub791 \uc2a4\ubc0d\uc73c\ub85c \ub118\uc5b4\uac00\uc154\uc57c \ud574\uc694.\n\uc81c\ubc1c \uc880 \uc54c\ub824\uc8fc\uc138\uc694.\uc6b0\ub9ac\uc560\ub4e4 \uc0c1\uc918\uc57c\ub418\uc796\uc544\uc694 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300677852,"id_str":"3300677852","name":"\ud22c\ud45c\ubd07 \uafc8\uacb0( * '\u00b3'*)\u2661","screen_name":"lovesuhoright","location":"\uc555\uad6c\uc815 \ud56b\ud50c\ub808\uc774\uc2a4 \uc218\ud638\uc9d1","url":"http:\/\/PeachXRabbit.com","description":"\uba74\ub978\uc73c\ub85c \ud589\ubcf5\ud574\uc9c0\ub294 \uc138\uc0c1 \u2614","protected":false,"verified":false,"followers_count":13,"friends_count":234,"listed_count":0,"favourites_count":1121,"statuses_count":3298,"created_at":"Wed Jul 29 15:53:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662945427633737728\/EQ6gwFUf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662945427633737728\/EQ6gwFUf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300677852\/1443771602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:56 +0000 2015","id":663726973374468097,"id_str":"663726973374468097","text":"\uc54c\ud2f0\ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4. \ud604\uc7ac \ud558\uace0\uacc4\uc2dc\ub294 \uc774 \ud574\uc2dc\ud0dc\uadf8 \ub204\uac00 \uc2dc\uc791\ud558\uc167\ub294\uc9c0\ub294\ubab0\ub77c\ub3c4 \ud574\uc2dc \ud0dc\uadf8\ud558\ub294\uae30\uac04 \ub05d\ub0ac\uc2b5\ub2c8\ub2e4. \uc774\uc81c \uadf8\ub9cc\ud558\uc2dc\uace0 \ub9c8\ub9c8\ud22c\ud45c\ub791 \uc2a4\ubc0d\uc73c\ub85c \ub118\uc5b4\uac00\uc154\uc57c \ud574\uc694.\n\uc81c\ubc1c \uc880 \uc54c\ub824\uc8fc\uc138\uc694.\uc6b0\ub9ac\uc560\ub4e4 \uc0c1\uc918\uc57c\ub418\uc796\uc544\uc694 https:\/\/t.co\/YqPf8vgbsw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284245388,"id_str":"3284245388","name":"\uc21c\ub529\uc774 \uccb4\ub2c8\ubc31\uc774\u2764\ufe0f","screen_name":"chen102_0921","location":"\uc885\ub300\uc57c \ube5b\ub098\uc918\uc11c \uace0\ub9c8\uc6cc","url":null,"description":"EXO=9 CHEN \uc885\ub300\u2665WE ARE ONE!!!!!!!!!!!!!!!!!!!!!!!!!9\uba85\uc758 EXO \ube5b\ub098\uc918\uc11c \ub108\ubb34 \uace0\ub9c8\uc6cc \uc874\uc7ac\ud574\uc918\uc11c \uace0\ub9c8\uc6cc\u2665\u2665 (\ud5e4\ub354 @minsoku_S2)","protected":false,"verified":false,"followers_count":842,"friends_count":774,"listed_count":4,"favourites_count":157,"statuses_count":27197,"created_at":"Sun Jul 19 10:45:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660844055668985856\/SCEL-Ly1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660844055668985856\/SCEL-Ly1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284245388\/1445767395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chen102_0921","name":"\uc21c\ub529\uc774 \uccb4\ub2c8\ubc31\uc774\u2764\ufe0f","id":3284245388,"id_str":"3284245388","indices":[3,16]}],"symbols":[],"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726973374468097,"source_status_id_str":"663726973374468097","source_user_id":3284245388,"source_user_id_str":"3284245388"}]},"extended_entities":{"media":[{"id":663726961773015042,"id_str":"663726961773015042","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIJ7hUcAIuLv-.jpg","url":"https:\/\/t.co\/YqPf8vgbsw","display_url":"pic.twitter.com\/YqPf8vgbsw","expanded_url":"http:\/\/twitter.com\/chen102_0921\/status\/663726973374468097\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726973374468097,"source_status_id_str":"663726973374468097","source_user_id":3284245388,"source_user_id_str":"3284245388"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750967296,"id_str":"663727879750967296","text":"\u98df\u3079\u3066\u3082\u592a\u308c\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1028106686,"id_str":"1028106686","name":"\u307e\u308b","screen_name":"maruchan_gari","location":"TOKYO","url":"https:\/\/m.youtube.com\/channel\/UCksYsp2-gELypd-qP0UL0jw?noapp=1","description":null,"protected":false,"verified":false,"followers_count":215,"friends_count":215,"listed_count":6,"favourites_count":4461,"statuses_count":11284,"created_at":"Sat Dec 22 09:03:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595798264252870657\/ckTe2kHD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595798264252870657\/ckTe2kHD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1028106686\/1446519473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755186177,"id_str":"663727879755186177","text":"So fooking apt \ud83d\udc4f\u2764\u2764 https:\/\/t.co\/2KhMKBeLJ7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4004538977,"id_str":"4004538977","name":"Fireproof x","screen_name":"Heypotat0","location":null,"url":null,"description":"is it 2017 yet?","protected":false,"verified":false,"followers_count":156,"friends_count":217,"listed_count":1,"favourites_count":925,"statuses_count":2552,"created_at":"Tue Oct 20 20:31:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663698942593404928\/beZm2znA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663698942593404928\/beZm2znA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4004538977\/1447073131","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727367471431680,"quoted_status_id_str":"663727367471431680","quoted_status":{"created_at":"Mon Nov 09 14:38:30 +0000 2015","id":663727367471431680,"id_str":"663727367471431680","text":"He looks like a little baby concentrating on trying to get the right shapes into the holes https:\/\/t.co\/uH8NmQ0EhH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594964231,"id_str":"594964231","name":"Sam","screen_name":"SnuggybugStyles","location":null,"url":"https:\/\/twitter.com\/riding_harreh\/status\/400490425280000001","description":"I've been baptised by Louis Tomlinson","protected":false,"verified":false,"followers_count":38259,"friends_count":26542,"listed_count":144,"favourites_count":13669,"statuses_count":121190,"created_at":"Wed May 30 22:30:58 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651127100154343428\/yyqN7kLV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651127100154343428\/yyqN7kLV.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663395602189914113\/Ik2P6_FR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663395602189914113\/Ik2P6_FR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594964231\/1446927357","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727364149415936,"id_str":"663727364149415936","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhWfVEAA62sU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhWfVEAA62sU.jpg","url":"https:\/\/t.co\/uH8NmQ0EhH","display_url":"pic.twitter.com\/uH8NmQ0EhH","expanded_url":"http:\/\/twitter.com\/SnuggybugStyles\/status\/663727367471431680\/photo\/1","type":"photo","sizes":{"large":{"w":318,"h":411,"resize":"fit"},"medium":{"w":318,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":318,"h":411,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727364149415936,"id_str":"663727364149415936","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhWfVEAA62sU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhWfVEAA62sU.jpg","url":"https:\/\/t.co\/uH8NmQ0EhH","display_url":"pic.twitter.com\/uH8NmQ0EhH","expanded_url":"http:\/\/twitter.com\/SnuggybugStyles\/status\/663727367471431680\/photo\/1","type":"photo","sizes":{"large":{"w":318,"h":411,"resize":"fit"},"medium":{"w":318,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":318,"h":411,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2KhMKBeLJ7","expanded_url":"https:\/\/twitter.com\/SnuggybugStyles\/status\/663727367471431680","display_url":"twitter.com\/SnuggybugStyle\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032658"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750991872,"id_str":"663727879750991872","text":"@rei91026 \u3068\u308a\u3042\u3048\u305a\n\u884c\u304f\u307f\u305f\u3044\u306a\u306d\u7b11\n\u3060\u306d\u3060\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725315982626816,"in_reply_to_status_id_str":"663725315982626816","in_reply_to_user_id":1412560513,"in_reply_to_user_id_str":"1412560513","in_reply_to_screen_name":"rei91026","user":{"id":1401078488,"id_str":"1401078488","name":"\u3057\u3087\u30fcgo","screen_name":"swordart630","location":null,"url":null,"description":"\u30b5\u30c3\u30dd\u30ed\/\u3082\u3068\u3068\u3093\u3061\u3085\u30fc\/K\u5de53\u6a5f\/\u5d50\/\u798f\u5c71\u96c5\u6cbb\/Hey!Say!JUMP\/\u6238\u677e\u9065\/\u69ae\u5009\u5948\u3005\/\u306a\u3069\u3069\u306a\u3069\/\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":369,"friends_count":616,"listed_count":3,"favourites_count":1186,"statuses_count":11200,"created_at":"Sat May 04 00:45:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607885652659560448\/MWvV_8_j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607885652659560448\/MWvV_8_j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1401078488\/1444142902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rei91026","name":"\u308c\u30fc\u3055\u3093\u3002","id":1412560513,"id_str":"1412560513","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879771942912,"id_str":"663727879771942912","text":"\"Rt@K2rlSbg: Ramein KANGEN DUET RIDHO EGA DA2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3139427304,"id_str":"3139427304","name":"K2RL KARAWANG","screen_name":"K2RL_KARAWANG","location":"Karawang, West Java","url":null,"description":"official K2RL from Karawang .(KIDKAR ) .Allways support @da2_Rizki @da2_Ridho .join gath with KIDKAR 587B9BBF .","protected":false,"verified":false,"followers_count":689,"friends_count":92,"listed_count":1,"favourites_count":98,"statuses_count":11415,"created_at":"Sat Apr 04 22:20:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654952828595650560\/UwGVmmxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654952828595650560\/UwGVmmxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3139427304\/1443973583","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"K2rlSbg","name":"Ridholics Boy SBG","id":3112309370,"id_str":"3112309370","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080032662"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763574784,"id_str":"663727879763574784","text":"@hawakanorico \u4eca\u5ea6\u304a\u4f1a\u3044\u3057\u305f\u6642\u6b8b\u3063\u3066\u305f\u3089\u30bc\u30d2\u301c\ud83d\ude33\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727092895322112,"in_reply_to_status_id_str":"663727092895322112","in_reply_to_user_id":284575060,"in_reply_to_user_id_str":"284575060","in_reply_to_screen_name":"hawakanorico","user":{"id":886319982,"id_str":"886319982","name":"\u30a2\u30c3\u30ad\u30fc\u266a\u266f","screen_name":"AckyW","location":"\u304a\u304a\u3055\u304b\u3075","url":"http:\/\/Instagram.com\/ackyw","description":"\u30dd\u30c3\u30d7\u30b3\u30fc\u30f3\u306e\u3088\u3046\u306b\u5f3e\u3051\u3066\u30d5\u30a9\u30fc\u30b9\u3092\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u305f\u3044\u30a4\u30e2\u5973\u3002","protected":false,"verified":false,"followers_count":99,"friends_count":122,"listed_count":2,"favourites_count":312,"statuses_count":4986,"created_at":"Wed Oct 17 07:40:34 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DF85F4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/802267639\/5e620c7b5bf8f8bfdef950245a06d031.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/802267639\/5e620c7b5bf8f8bfdef950245a06d031.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616564073304494080\/SPayc7GW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616564073304494080\/SPayc7GW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/886319982\/1443954243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hawakanorico","name":"\u8449\u82e5\u306e\u308a\u3053","id":284575060,"id_str":"284575060","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879788720129,"id_str":"663727879788720129","text":"\u30bb\u30c3\u30af\u30b9\u4f9d\u5b58\u6c17\u5473\u3067\u3059\u2026\u3002 #\u51fa\u4f1a\u3044\u7cfb\n\uff61o\u25cbo\u3002.\u2605. s8p","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3562233792,"id_str":"3562233792","name":"\u6d5c\u672c \u7f8e\u512a","screen_name":"hamamoto_m_m45c","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":193,"friends_count":1882,"listed_count":0,"favourites_count":0,"statuses_count":3378,"created_at":"Mon Sep 14 17:03:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u51fa\u4f1a\u3044\u7cfb","indices":[13,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032666"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879784673281,"id_str":"663727879784673281","text":"RT @desamei: n\u00e3o preciso de amor, preciso disso https:\/\/t.co\/cyoPI7xYM7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3937049777,"id_str":"3937049777","name":"Thati","screen_name":"MasterThati","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":54,"listed_count":0,"favourites_count":34,"statuses_count":109,"created_at":"Mon Oct 12 12:30:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655399518838640640\/u-3jsoaj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655399518838640640\/u-3jsoaj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3937049777\/1444653859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:50:06 +0000 2015","id":663503796157321217,"id_str":"663503796157321217","text":"n\u00e3o preciso de amor, preciso disso https:\/\/t.co\/cyoPI7xYM7","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":450874614,"id_str":"450874614","name":"ex trouxa","screen_name":"desamei","location":"Curitiba Paran\u00e1, - Brasil. ","url":"http:\/\/instagram.com\/extroxa","description":"ELEITO POR MIM, O TWITTER MAIS CRIATIVO DO BRASIL\u2122 | Linda, maravilhosa e ex trouxa | \u2709 Contato Profissional: desamei@outlook.com | \u2709\n#ExTrouxaNaoAmaDesama","protected":false,"verified":false,"followers_count":543251,"friends_count":31,"listed_count":222,"favourites_count":43,"statuses_count":31387,"created_at":"Fri Dec 30 19:25:18 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633450819342475264\/JpsVuGyT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633450819342475264\/JpsVuGyT.jpg","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430958398447618\/5R7N7JWp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430958398447618\/5R7N7JWp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/450874614\/1446998529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":161,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659489909049303040,"id_str":"659489909049303040","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","url":"https:\/\/t.co\/cyoPI7xYM7","display_url":"pic.twitter.com\/cyoPI7xYM7","expanded_url":"http:\/\/twitter.com\/GordeIicias\/status\/659837163228393472\/photo\/1","type":"photo","sizes":{"large":{"w":490,"h":300,"resize":"fit"},"medium":{"w":490,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":659837163228393472,"source_status_id_str":"659837163228393472","source_user_id":503772433,"source_user_id_str":"503772433"}]},"extended_entities":{"media":[{"id":659489909049303040,"id_str":"659489909049303040","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","url":"https:\/\/t.co\/cyoPI7xYM7","display_url":"pic.twitter.com\/cyoPI7xYM7","expanded_url":"http:\/\/twitter.com\/GordeIicias\/status\/659837163228393472\/photo\/1","type":"photo","sizes":{"large":{"w":490,"h":300,"resize":"fit"},"medium":{"w":490,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":659837163228393472,"source_status_id_str":"659837163228393472","source_user_id":503772433,"source_user_id_str":"503772433"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"desamei","name":"ex trouxa","id":450874614,"id_str":"450874614","indices":[3,11]}],"symbols":[],"media":[{"id":659489909049303040,"id_str":"659489909049303040","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","url":"https:\/\/t.co\/cyoPI7xYM7","display_url":"pic.twitter.com\/cyoPI7xYM7","expanded_url":"http:\/\/twitter.com\/GordeIicias\/status\/659837163228393472\/photo\/1","type":"photo","sizes":{"large":{"w":490,"h":300,"resize":"fit"},"medium":{"w":490,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":659837163228393472,"source_status_id_str":"659837163228393472","source_user_id":503772433,"source_user_id_str":"503772433"}]},"extended_entities":{"media":[{"id":659489909049303040,"id_str":"659489909049303040","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSb6lAHWoAAp0AA.jpg","url":"https:\/\/t.co\/cyoPI7xYM7","display_url":"pic.twitter.com\/cyoPI7xYM7","expanded_url":"http:\/\/twitter.com\/GordeIicias\/status\/659837163228393472\/photo\/1","type":"photo","sizes":{"large":{"w":490,"h":300,"resize":"fit"},"medium":{"w":490,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":208,"resize":"fit"}},"source_status_id":659837163228393472,"source_status_id_str":"659837163228393472","source_user_id":503772433,"source_user_id_str":"503772433"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080032665"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879788691456,"id_str":"663727879788691456","text":"@TNK_Carpaccio \u305d\u308c\u30a2\u30ed\u30ef\u30ca\u3084\uff01","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727658207834113,"in_reply_to_status_id_str":"663727658207834113","in_reply_to_user_id":3245115960,"in_reply_to_user_id_str":"3245115960","in_reply_to_screen_name":"TNK_Carpaccio","user":{"id":107280552,"id_str":"107280552","name":"\u3060\u3044\u305a\u30a2\u30d2\u30fc\u30b8\u30e7","screen_name":"dj_tatibana","location":"\u8c4a\u7a63\u306a\u5927\u5730","url":"http:\/\/mt4.de-soy.net\/","description":"\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3001Daft Punk\u3001Pentatonix\u3001\u767b\u5c71\u3001\u30b8\u30f3\u3001\u65e5\u672c\u9152\u3001\u30d3\u30fc\u30eb\u3001\u30b3\u30fc\u30d2\u30fc\u3001\u30ab\u30e9\u30aa\u30b1\u3001\u30c6\u30af\u30ce\u30dd\u30c3\u30d7\u3001\u30c1\u30c3\u30d7\u30c1\u30e5\u30fc\u30f3\u3002\u30c4\u30a4\u30fc\u30c8\u6570\u591a\u3081\u3067\u3059\u3002\u30c4\u30a4\u30fc\u30c8\u6570\uff10\u3001\u305f\u307e\u3054\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u30ea\u30e0\u30d6\u30ed\u3057\u3066\u307e\u3059\u3002\u9375\u57a2\u306f\u4e00\u5ea6\u9375\u5916\u3057\u3066\u3082\u3089\u3063\u3066\u30ea\u30d7\u30e9\u30a4\u3067\u3082\u8cb0\u308f\u306a\u3044\u3068\u30ea\u30e0\u30d6\u30ed\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1208,"friends_count":489,"listed_count":103,"favourites_count":18,"statuses_count":139575,"created_at":"Fri Jan 22 02:17:52 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637276025957650433\/NqyuB6Ag_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637276025957650433\/NqyuB6Ag_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107280552\/1411225385","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TNK_Carpaccio","name":"\u30ab\u30eb\u30d1\u30c3\u30c1\u30e7\u7530\u4ef2\uff20\u5e73\u5e38\u904b\u8ee2","id":3245115960,"id_str":"3245115960","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032666"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879776157696,"id_str":"663727879776157696","text":"First \u2018Crossover\u2019 Auction at Phillips Yields $66.9 Million https:\/\/t.co\/OMlbfhSFJ7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20597234,"id_str":"20597234","name":"Brittany Zucker","screen_name":"brittanyzucker","location":"Houston","url":null,"description":null,"protected":false,"verified":false,"followers_count":730,"friends_count":1856,"listed_count":7,"favourites_count":19,"statuses_count":5334,"created_at":"Wed Feb 11 15:40:54 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D8D8D8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1618204571\/FacebookHomescreenImage_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1618204571\/FacebookHomescreenImage_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20597234\/1435757662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OMlbfhSFJ7","expanded_url":"http:\/\/nyti.ms\/1MRoXc4","display_url":"nyti.ms\/1MRoXc4","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080032663"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755182080,"id_str":"663727879755182080","text":"@eaptorres Cute mo talaga! \ud83d\ude0d\ud83d\ude48 https:\/\/t.co\/wUyKrCclma","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725787107819520,"in_reply_to_status_id_str":"663725787107819520","in_reply_to_user_id":424733023,"in_reply_to_user_id_str":"424733023","in_reply_to_screen_name":"eapvisperas","user":{"id":424733023,"id_str":"424733023","name":"Eya Visperas","screen_name":"eapvisperas","location":null,"url":null,"description":"I shouldn't have ripped myself into pieces just to make others whole.","protected":false,"verified":false,"followers_count":293,"friends_count":173,"listed_count":1,"favourites_count":10108,"statuses_count":19804,"created_at":"Wed Nov 30 03:34:00 +0000 2011","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460826307266240514\/Eq-MOmNo.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460826307266240514\/Eq-MOmNo.png","profile_background_tile":true,"profile_link_color":"E4287C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660682276179578880\/RmbcQvS0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660682276179578880\/RmbcQvS0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424733023\/1446476000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eaptorres","name":"Drew","id":713201822,"id_str":"713201822","indices":[0,10]}],"symbols":[],"media":[{"id":663727869349097476,"id_str":"663727869349097476","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-wgUcAQNgDE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-wgUcAQNgDE.jpg","url":"https:\/\/t.co\/wUyKrCclma","display_url":"pic.twitter.com\/wUyKrCclma","expanded_url":"http:\/\/twitter.com\/eapvisperas\/status\/663727879755182080\/photo\/1","type":"photo","sizes":{"large":{"w":871,"h":707,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"},"medium":{"w":600,"h":487,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727869349097476,"id_str":"663727869349097476","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-wgUcAQNgDE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-wgUcAQNgDE.jpg","url":"https:\/\/t.co\/wUyKrCclma","display_url":"pic.twitter.com\/wUyKrCclma","expanded_url":"http:\/\/twitter.com\/eapvisperas\/status\/663727879755182080\/photo\/1","type":"photo","sizes":{"large":{"w":871,"h":707,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"},"medium":{"w":600,"h":487,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080032658"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879750979586,"id_str":"663727879750979586","text":"RT @Pascalourdes: Cara normal seorang pendekar mencari seorang pendekar lainnya. Siap2 kencengin perut gaes #miniBreakVideo https:\/\/t.co\/ue\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":703974764,"id_str":"703974764","name":"alfian yanuar","screen_name":"yanuar_alfian","location":"Diatas pangkuan Ibu","url":null,"description":"wong biasa","protected":false,"verified":false,"followers_count":500,"friends_count":958,"listed_count":1,"favourites_count":18,"statuses_count":13929,"created_at":"Wed Jul 18 23:21:38 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000017546639\/378788aa11c2fdf34721effeabea5dbd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000017546639\/378788aa11c2fdf34721effeabea5dbd.jpeg","profile_background_tile":false,"profile_link_color":"7010A8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661679067549167616\/lgQ0-82a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661679067549167616\/lgQ0-82a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703974764\/1373145920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:36 +0000 2015","id":663695431507951616,"id_str":"663695431507951616","text":"Cara normal seorang pendekar mencari seorang pendekar lainnya. Siap2 kencengin perut gaes #miniBreakVideo https:\/\/t.co\/uepNlpOlR9","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317041553,"id_str":"317041553","name":"\u0cb0_\u0cb0","screen_name":"Pascalourdes","location":"Tangerang, Banten","url":"http:\/\/Pascalourdes.com","description":"Pursuing a Dream! || CP; 089508654202 || No one can hurt me without my permission -Hitler \u5350 #OnePieceLovers & #MIfans #BROFist #ViscaBarca","protected":false,"verified":false,"followers_count":211935,"friends_count":371,"listed_count":232549,"favourites_count":425,"statuses_count":15612,"created_at":"Tue Jun 14 10:33:15 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8F8FB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122892153\/1f1200e4ea79e2a6a8bac260b7ec8465.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122892153\/1f1200e4ea79e2a6a8bac260b7ec8465.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FF9800","profile_sidebar_fill_color":"FFF200","profile_text_color":"FF385F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662650821998305281\/EUIslMLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662650821998305281\/EUIslMLs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317041553\/1445263593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":4,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[90,105]}],"urls":[{"url":"https:\/\/t.co\/uepNlpOlR9","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[108,123]}],"urls":[{"url":"https:\/\/t.co\/uepNlpOlR9","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[124,140]}],"user_mentions":[{"screen_name":"Pascalourdes","name":"\u0cb0_\u0cb0","id":317041553,"id_str":"317041553","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080032657"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879763529728,"id_str":"663727879763529728","text":"#\u4eca\u307e\u3067UP\u3057\u305fFF14\u306eSS\u3084\u304a\u7d75\u304b\u304d\u306e\u4e2d\u3067\u305f\u304f\u3055\u3093\u3075\u3041\u307c\u3084\u3044\u3044\u306d\u3092\u3082\u3089\u3048\u305f\u306e\u3092\u6700\u59274\u3064\u307e\u3067\u3042\u3052\u3088\u3046 \u307e\u3055\u304b\u306e\u30c8\u30c3\u30d7( \u00b4'\u03c9'` ) https:\/\/t.co\/UzRCwdCD7l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237225765,"id_str":"237225765","name":"Aramram@\u4eca\u306f\u30d0\u30cf\u9bd6","screen_name":"mikadioll","location":"IIDX\u306e\u30c4\u30a4\u30fc\u30c8\u3082\u3059\u308b\u306e\u3067\u6c17\u3092\u3064\u3051\u3066\u3002","url":"http:\/\/mikadioll.blog.fc2.com\/","description":"FF14\u3000\u9bd6\u65c5\u884c\u4e2d\u3000\u73fe\u5728\u30d0\u30cf\u30e0\u30fc\u30c8\u9bd6\u3000\u3042\u3089\u3080\u3089\u3080\u3000\u3044\u3068\u308a\u3077\u308c\u3063\u3064\uff08\u30e9\u30e0\u30a6\u2192\u30ab\u30fc\u30d0\u30f3\u30af\u30eb\u2192\u30bf\u30a4\u30bf\u30f3\u2192\u30a4\u30d5\u2192\u30e9\u30e0\u30a6\u2192\u30a4\u30af\u30b7\u30aa\u30f3\u2192\u30d0\u30cf\u30e0\u30fc\u30c8)\u3000\u30d8\u30c3\u30c0\u30fc\u52a0\u5de5\u306f\u307e\u306e\u3042\u69d8 \u30a2\u30a4\u30b3\u30f3\u306f\u3067\u3093\u3059\u3051\u3055\u3093","protected":false,"verified":false,"followers_count":187,"friends_count":186,"listed_count":18,"favourites_count":478,"statuses_count":14563,"created_at":"Wed Jan 12 10:59:23 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"A3C0CF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/755923122\/cd907ca275b4964698e9c92f49526c10.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/755923122\/cd907ca275b4964698e9c92f49526c10.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641753467548098560\/DKHbdTba_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641753467548098560\/DKHbdTba_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237225765\/1420875823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4eca\u307e\u3067UP\u3057\u305fFF14\u306eSS\u3084\u304a\u7d75\u304b\u304d\u306e\u4e2d\u3067\u305f\u304f\u3055\u3093\u3075\u3041\u307c\u3084\u3044\u3044\u306d\u3092\u3082\u3089\u3048\u305f\u306e\u3092\u6700\u59274\u3064\u307e\u3067\u3042\u3052\u3088\u3046","indices":[0,51]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727868942286848,"id_str":"663727868942286848","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-u_VAAAXb25.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-u_VAAAXb25.jpg","url":"https:\/\/t.co\/UzRCwdCD7l","display_url":"pic.twitter.com\/UzRCwdCD7l","expanded_url":"http:\/\/twitter.com\/mikadioll\/status\/663727879763529728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727868942286848,"id_str":"663727868942286848","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-u_VAAAXb25.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-u_VAAAXb25.jpg","url":"https:\/\/t.co\/UzRCwdCD7l","display_url":"pic.twitter.com\/UzRCwdCD7l","expanded_url":"http:\/\/twitter.com\/mikadioll\/status\/663727879763529728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080032660"} +{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879755333633,"id_str":"663727879755333633","text":"RT @NECROHERETIC: https:\/\/t.co\/p0vOVTaZTu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":470100383,"id_str":"470100383","name":"Rodrig0!!!","screen_name":"RodrigusRodrigi","location":null,"url":null,"description":"Se me da bien comer, perder el bus y quejarme de cosas muy variadas.","protected":false,"verified":false,"followers_count":462,"friends_count":341,"listed_count":7,"favourites_count":6556,"statuses_count":25566,"created_at":"Sat Jan 21 10:01:53 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437244378499649536\/SNCzzNRG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437244378499649536\/SNCzzNRG.png","profile_background_tile":true,"profile_link_color":"112233","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654730707663613952\/FnRplo0C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654730707663613952\/FnRplo0C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/470100383\/1443273619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:02 +0000 2015","id":663724733880385540,"id_str":"663724733880385540","text":"https:\/\/t.co\/p0vOVTaZTu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2490959582,"id_str":"2490959582","name":"\u019dECRO\u04cd\u039b\u019dCER","screen_name":"NECROHERETIC","location":null,"url":null,"description":"Dark Database of the Cursed","protected":false,"verified":false,"followers_count":5433,"friends_count":9,"listed_count":51,"favourites_count":4245,"statuses_count":19379,"created_at":"Mon May 12 05:56:34 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663007131474329604\/JJDfiNgn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663007131474329604\/JJDfiNgn.jpg","profile_background_tile":true,"profile_link_color":"8B0000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027739805388800\/-gwrDtnN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027739805388800\/-gwrDtnN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2490959582\/1446927547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724731917598720,"id_str":"663724731917598720","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","url":"https:\/\/t.co\/p0vOVTaZTu","display_url":"pic.twitter.com\/p0vOVTaZTu","expanded_url":"http:\/\/twitter.com\/NECROHERETIC\/status\/663724733880385540\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724731917598720,"id_str":"663724731917598720","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","url":"https:\/\/t.co\/p0vOVTaZTu","display_url":"pic.twitter.com\/p0vOVTaZTu","expanded_url":"http:\/\/twitter.com\/NECROHERETIC\/status\/663724733880385540\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NECROHERETIC","name":"\u019dECRO\u04cd\u039b\u019dCER","id":2490959582,"id_str":"2490959582","indices":[3,16]}],"symbols":[],"media":[{"id":663724731917598720,"id_str":"663724731917598720","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","url":"https:\/\/t.co\/p0vOVTaZTu","display_url":"pic.twitter.com\/p0vOVTaZTu","expanded_url":"http:\/\/twitter.com\/NECROHERETIC\/status\/663724733880385540\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663724733880385540,"source_status_id_str":"663724733880385540","source_user_id":2490959582,"source_user_id_str":"2490959582"}]},"extended_entities":{"media":[{"id":663724731917598720,"id_str":"663724731917598720","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGIIqXAAABZwP.jpg","url":"https:\/\/t.co\/p0vOVTaZTu","display_url":"pic.twitter.com\/p0vOVTaZTu","expanded_url":"http:\/\/twitter.com\/NECROHERETIC\/status\/663724733880385540\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663724733880385540,"source_status_id_str":"663724733880385540","source_user_id":2490959582,"source_user_id_str":"2490959582"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080032658"} +{"delete":{"status":{"id":653245110306668545,"id_str":"653245110306668545","user_id":2371849793,"user_id_str":"2371849793"},"timestamp_ms":"1447080033022"}} +{"delete":{"status":{"id":645323340937211904,"id_str":"645323340937211904","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080032996"}} +{"delete":{"status":{"id":663727389042737152,"id_str":"663727389042737152","user_id":344354166,"user_id_str":"344354166"},"timestamp_ms":"1447080033262"}} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945398272,"id_str":"663727883945398272","text":"RT @BibisBeauty: Ach krass wir sind ja auch schon 2,5 Millionen auf Instagram \ud83d\ude05\ud83d\udc9c\n\nIhr seid so KRASS \ud83d\ude0d\ud83d\udc9c","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304912647,"id_str":"3304912647","name":"B&J's Lea \u2606 ","screen_name":"LeaBibijenco","location":null,"url":null,"description":"Julian & Bibi","protected":false,"verified":false,"followers_count":660,"friends_count":1604,"listed_count":5,"favourites_count":0,"statuses_count":27277,"created_at":"Sun May 31 19:31:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605094947239391232\/oB9RbD4D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605094947239391232\/oB9RbD4D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304912647\/1433178315","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:29 +0000 2015","id":663718805521199104,"id_str":"663718805521199104","text":"Ach krass wir sind ja auch schon 2,5 Millionen auf Instagram \ud83d\ude05\ud83d\udc9c\n\nIhr seid so KRASS \ud83d\ude0d\ud83d\udc9c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198230289,"id_str":"1198230289","name":"BibisBeautyPalace","screen_name":"BibisBeauty","location":"Cologne","url":"http:\/\/www.youtube.com\/bibisbeautypalace","description":"Contact : bibisbeautypalace@web.de","protected":false,"verified":true,"followers_count":1097731,"friends_count":1240,"listed_count":1234,"favourites_count":3433,"statuses_count":7544,"created_at":"Tue Feb 19 18:16:21 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619226975589265409\/HLIJ2NkZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619226975589265409\/HLIJ2NkZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198230289\/1424801421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":306,"favorite_count":1977,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BibisBeauty","name":"BibisBeautyPalace","id":1198230289,"id_str":"1198230289","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945381889,"id_str":"663727883945381889","text":"n\u00e3o pode surgir ningu\u00e9m com icon de orphan black na tl que eu sigo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272028144,"id_str":"272028144","name":"Nicolle","screen_name":"nicaulle","location":null,"url":"http:\/\/pickis.tumblr.com\/","description":"quero ver quem me segura no swing louco","protected":false,"verified":false,"followers_count":374,"friends_count":294,"listed_count":4,"favourites_count":1369,"statuses_count":50720,"created_at":"Fri Mar 25 17:30:40 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583732010054651904\/c2flkUab.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583732010054651904\/c2flkUab.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583740156269633537\/qmChiyv9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583740156269633537\/qmChiyv9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272028144\/1428010484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883966369792,"id_str":"663727883966369792","text":"RT @FHD__RM: \u0627\u0646 \u0644\u0645 \u062a\u0643\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u0643\u0633\u0627\u0631\n\n\u0641\u0644\u0627 \u062a\u0633\u062a\u062d\u0642 \u0627\u0646 \u062a\u0643\u0648\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u062a\u0635\u0627\u0631\n\n\"\u0627\u0644\u062c\u0645\u0644\u0647 \u0647\u0630\u0647 \u0627\u0634\u062f \u0623\u0644\u0645\u0627\u064b \u0645\u0646 \u0627\u0644\u062e\u0633\u0627\u0631\u0647\"\n\n#\u062d\u0642\u064a\u0642\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966736766,"id_str":"966736766","name":"Ali Ibrahim","screen_name":"ali_aaa2000","location":null,"url":null,"description":"\u0645\u062f\u0631\u0631\u0631\u064a\u062f\u064a.....\u0627\u0641\u062a\u062e\u0631\u0631\u0631\u0631\u0631\u0631\u0631\u0631","protected":false,"verified":false,"followers_count":160,"friends_count":616,"listed_count":0,"favourites_count":153,"statuses_count":4700,"created_at":"Fri Nov 23 19:55:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470448370113183744\/PDq_6sFn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470448370113183744\/PDq_6sFn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966736766\/1400998580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727774918680576,"id_str":"663727774918680576","text":"\u0627\u0646 \u0644\u0645 \u062a\u0643\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u0643\u0633\u0627\u0631\n\n\u0641\u0644\u0627 \u062a\u0633\u062a\u062d\u0642 \u0627\u0646 \u062a\u0643\u0648\u0646 \u0645\u062f\u0631\u064a\u062f\u064a\u0633\u062a\u0627 \u0648\u0642\u062a \u0627\u0644\u0627\u0646\u062a\u0635\u0627\u0631\n\n\"\u0627\u0644\u062c\u0645\u0644\u0647 \u0647\u0630\u0647 \u0627\u0634\u062f \u0623\u0644\u0645\u0627\u064b \u0645\u0646 \u0627\u0644\u062e\u0633\u0627\u0631\u0647\"\n\n#\u062d\u0642\u064a\u0642\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":621540224,"id_str":"621540224","name":"\u0641\u0647\u062f \u0645\u062f\u0631\u064a\u062f","screen_name":"FHD__RM","location":"abha","url":null,"description":"\u0642\u062f \u0642\u064a\u0644 \u0627\u0646 \u0644\u0647 \u0648\u0644\u062f\u0627\u064b \u0648\u0635\u0627\u062d\u0628\u0629\u064b \u060c\u060c\u060c\u060c\u060c\u060c\u060c\u060c\u0632\u0648\u0631\u0627\u064b \u0639\u0644\u064a\u0647 \u0648\u0628\u0647\u062a\u0627\u0646\u0627\u064b \u0648\u062a\u0636\u0644\u064a\u0644\u0627 \u0647\u0630\u0627 \u0642\u0648\u0644\u0647\u0645 \u0641\u064a \u0627\u0644\u0644\u0647 \u062e\u0627\u0644\u0642\u0647\u0645 \u060c\u060c\u060c\u060c \u0641\u0643\u064a\u0641 \u0644\u0648 \u0642\u064a\u0644 \u0641\u064a\u0646\u0627 \u0628\u0639\u0636 \u0645\u0627 \u0642\u064a\u0644\u0627 Real Madrid __Abha","protected":false,"verified":false,"followers_count":35021,"friends_count":309,"listed_count":153,"favourites_count":6,"statuses_count":50383,"created_at":"Fri Jun 29 03:47:33 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651487256264503297\/b0WWRUAM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651487256264503297\/b0WWRUAM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621540224\/1441496718","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062d\u0642\u064a\u0642\u0647","indices":[111,117]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062d\u0642\u064a\u0642\u0647","indices":[124,130]}],"urls":[],"user_mentions":[{"screen_name":"FHD__RM","name":"\u0641\u0647\u062f \u0645\u062f\u0631\u064a\u062f","id":621540224,"id_str":"621540224","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080033662"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949629440,"id_str":"663727883949629440","text":"RT @ttwitandu: Sem pressa. Sem v\u00edrgulas. Sem ponto final. Sem brigas. Sem separa\u00e7\u00e3o. Sem m\u00e1goa. Sem dor. Somente amor, por favor.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":180859218,"id_str":"180859218","name":"Francine \u261d\ufe0f","screen_name":"leitemumu","location":"Canoas","url":"http:\/\/instagram.com\/leitemumu","description":"\u201cPor muito tempo andei na busca de Deus, quando abri os olhos descobri que Ele \u00e9 quem me procurava!\u201d","protected":false,"verified":false,"followers_count":944,"friends_count":644,"listed_count":1,"favourites_count":1619,"statuses_count":36391,"created_at":"Fri Aug 20 17:38:00 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F0F3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458340605253259264\/zpxYnokw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458340605253259264\/zpxYnokw.jpeg","profile_background_tile":true,"profile_link_color":"211B1B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F0E0FF","profile_text_color":"C232B6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659163896608112641\/d2XSSqOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659163896608112641\/d2XSSqOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180859218\/1445456489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:07 +0000 2015","id":663727019960770561,"id_str":"663727019960770561","text":"Sem pressa. Sem v\u00edrgulas. Sem ponto final. Sem brigas. Sem separa\u00e7\u00e3o. Sem m\u00e1goa. Sem dor. Somente amor, por favor.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296426412,"id_str":"296426412","name":"MICKEY \u30c4","screen_name":"ttwitandu","location":"\u221e Deus sabe o que faz \u2665 \u221e","url":null,"description":"Contato para publicidade: ttwitandu1@outlook.com","protected":false,"verified":false,"followers_count":600654,"friends_count":224594,"listed_count":177,"favourites_count":45968,"statuses_count":103301,"created_at":"Tue May 10 18:54:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_tile":true,"profile_link_color":"0F0F0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296426412\/1405809646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":25,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttwitandu","name":"MICKEY \u30c4","id":296426412,"id_str":"296426412","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883983183872,"id_str":"663727883983183872","text":"Would you say I was blinded?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":494142214,"id_str":"494142214","name":"CJB","screen_name":"_CHEEF_","location":null,"url":null,"description":"Fat cuz i dont chase these hoes. CERTIFIED KNOW-IT-ALL.","protected":false,"verified":false,"followers_count":779,"friends_count":141,"listed_count":2,"favourites_count":25705,"statuses_count":47688,"created_at":"Thu Feb 16 15:32:21 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624974485804859393\/YEFUA0sZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624974485804859393\/YEFUA0sZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/494142214\/1437840340","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033666"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970551808,"id_str":"663727883970551808","text":"RT @i_meshaal: @A_AlFai9al \u0646\u0638\u0627\u0645 \u062a\u0645\u0634\u064a \u0645\u0639 \u0627\u0644\u0645\u0648\u0636\u0647 \u0627\u0644\u0644\u064a \u062d\u0646\u0627 \u0645\u0627\u0646\u062a\u0627\u0628\u0639 \u0645\u0646\u062a\u062e\u0628\u0643\u0645 \u064a\u0627\u0635\u0628\u0631 \u0627\u0644\u0627\u0631\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287960672,"id_str":"3287960672","name":"\u062d\u0627\u062a\u0645.","screen_name":"HATEM066","location":"\u0645\u0648\u062c\u0648\u062f \u0641\u064a \u0643\u0644 \u0645\u0646\u0634\u0646","url":"https:\/\/twitter.com\/iiateg\/status\/638579159963308033","description":"\ufd3f\u0642\u0644 \u0644\u0646 \u064a\u0635\u064a\u0628\u0646\u0627 \u0627\u0644\u0627 \u0645\u0627 \u0643\u062a\u0628 \u0627\u0644\u0644\u0647 \ufd3e @ittihad","protected":false,"verified":false,"followers_count":121,"friends_count":116,"listed_count":1,"favourites_count":35,"statuses_count":3553,"created_at":"Wed Jul 22 22:21:31 +0000 2015","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662938676805128192\/ofLFBfLR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662938676805128192\/ofLFBfLR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287960672\/1446550239","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:47 +0000 2015","id":663727437512114176,"id_str":"663727437512114176","text":"@A_AlFai9al \u0646\u0638\u0627\u0645 \u062a\u0645\u0634\u064a \u0645\u0639 \u0627\u0644\u0645\u0648\u0636\u0647 \u0627\u0644\u0644\u064a \u062d\u0646\u0627 \u0645\u0627\u0646\u062a\u0627\u0628\u0639 \u0645\u0646\u062a\u062e\u0628\u0643\u0645 \u064a\u0627\u0635\u0628\u0631 \u0627\u0644\u0627\u0631\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727148713287680,"in_reply_to_status_id_str":"663727148713287680","in_reply_to_user_id":328986545,"in_reply_to_user_id_str":"328986545","in_reply_to_screen_name":"A_AlFai9al","user":{"id":350559376,"id_str":"350559376","name":"\u0645\u0634\u0639\u0644","screen_name":"i_meshaal","location":"\u062d\u0641\u0631\u0627\u0644\u0628\u0627\u0637\u0646","url":null,"description":"\u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0648\u0644\u0627\u064b \u062b\u0645 \u0627\u0644\u0628\u0627\u0631\u0633\u0627 .","protected":false,"verified":false,"followers_count":546,"friends_count":200,"listed_count":3,"favourites_count":113,"statuses_count":11592,"created_at":"Sun Aug 07 23:52:39 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656766683298832384\/CPaWcvMC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656766683298832384\/CPaWcvMC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350559376\/1447013424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"A_AlFai9al","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0641\u064a\u0635\u0644","id":328986545,"id_str":"328986545","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"i_meshaal","name":"\u0645\u0634\u0639\u0644","id":350559376,"id_str":"350559376","indices":[3,13]},{"screen_name":"A_AlFai9al","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0641\u064a\u0635\u0644","id":328986545,"id_str":"328986545","indices":[15,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080033663"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970564096,"id_str":"663727883970564096","text":"RT @kuniv_css_q8_: \u0647\u0644 \u062a\u0639\u0631\u0641 \u0645\u0627 \u0647\u064a \u0627\u0644\u0628\u0627\u0642\u064a\u0627\u062a \u0627\u0644\u0635\u0627\u0644\u062d\u0627\u062a\u061f\n\n\u0625\u0646\u0647\u0627\n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647\n\u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647\n\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0644\u0644\u0647\n\u0644\u0627\u062d\u0648\u0644 \u0648\u0644\u0627 \u0642\u0648\u0629 \u0627\u0644\u0627 \u0628\u0627\u0644\u0644\u0647\n\u0627\u0644\u0644\u0647 \u0627\u0643\u0628\u0631\n\n\u0631\u062f\u062f\u0647\u0627 \u0643\u0644 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1444537716,"id_str":"1444537716","name":"\u0643\u062a\u0628 \u062c\u0627\u0645\u0639\u0647 \u0627\u0644\u0643\u0648\u064a\u062a","screen_name":"kunivbooks","location":"\u0647\u0630\u0627 \u0627\u0644\u0644\u0646\u0643 \u064a\u0648\u0635\u0644\u0643\u0645 \u0644\u0644\u0628\u0631\u0646\u0627\u0645\u062c ","url":"http:\/\/www.uniteeky.com\/client\/share.php","description":"\u0625\u0644\u0644\u064a \u0639\u0646\u062f\u0647 \u0643\u062a\u0628 \u0627\u0644\u062c\u0627\u0645\u0639\u0629 \u0648\u062e\u0627\u0644\u0635 \u0645\u0646\u0647\u0645 \u064a\u0639\u0631\u0636\u0647\u0645 \u0628\u0644\u0645\u0648\u0642\u0639 \u0627\u0648 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0648\u0625\u0644\u0644\u064a \u064a\u0628\u064a \u0643\u062a\u0627\u0628 \u064a\u0637\u0644\u0628\u0647 \u0648\u0625\u0644\u0644\u064a \u0639\u0646\u062f\u0647 \u064a\u0628\u0644\u063a\u0647 \u0648\u0634\u0631\u0637 \u064a\u0643\u0648\u0646 \u0645\u062c\u0627\u0646\u064a","protected":false,"verified":false,"followers_count":6380,"friends_count":727,"listed_count":17,"favourites_count":206,"statuses_count":16037,"created_at":"Mon May 20 19:19:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513639946351951872\/0sosVtWt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513639946351951872\/0sosVtWt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1444537716\/1379075731","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:45:33 +0000 2015","id":663457351052185601,"id_str":"663457351052185601","text":"\u0647\u0644 \u062a\u0639\u0631\u0641 \u0645\u0627 \u0647\u064a \u0627\u0644\u0628\u0627\u0642\u064a\u0627\u062a \u0627\u0644\u0635\u0627\u0644\u062d\u0627\u062a\u061f\n\n\u0625\u0646\u0647\u0627\n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647\n\u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647\n\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0644\u0644\u0647\n\u0644\u0627\u062d\u0648\u0644 \u0648\u0644\u0627 \u0642\u0648\u0629 \u0627\u0644\u0627 \u0628\u0627\u0644\u0644\u0647\n\u0627\u0644\u0644\u0647 \u0627\u0643\u0628\u0631\n\n\u0631\u062f\u062f\u0647\u0627 \u0643\u0644 \u0635\u0628\u0627\u062d \u0648\u0630\u0643\u0631 \u0628\u0647\u0627 \u0645\u0646 \u062a\u062d\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422818193,"id_str":"422818193","name":"\u0627\u0639\u062a\u0630\u0627\u0631\u0627\u062a \u0627\u0644\u062f\u0643\u0627\u062a\u0631\u0629","screen_name":"kuniv_css_q8_","location":null,"url":null,"description":"\u0627\u0639\u062a\u0630\u0627\u0631\u0627\u062a \u0648\u0627\u064a \u0633\u0624\u0627\u0644 \u0644\u0637\u0644\u0628\u0629 \u0648\u0637\u0627\u0644\u0628\u0627\u062a \u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0643\u0648\u064a\u062a \u0648\u0627\u064a \u0633\u0624\u0627\u0644 \u0639\u0637\u0646\u064a \u0645\u0646\u0634\u0646","protected":false,"verified":false,"followers_count":13472,"friends_count":12669,"listed_count":7,"favourites_count":31,"statuses_count":18486,"created_at":"Sun Nov 27 18:41:04 +0000 2011","utc_offset":10800,"time_zone":"Minsk","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624312452386164736\/88MZ5Xyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624312452386164736\/88MZ5Xyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422818193\/1437435500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuniv_css_q8_","name":"\u0627\u0639\u062a\u0630\u0627\u0631\u0627\u062a \u0627\u0644\u062f\u0643\u0627\u062a\u0631\u0629","id":422818193,"id_str":"422818193","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080033663"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962163201,"id_str":"663727883962163201","text":"Scary stuff... https:\/\/t.co\/mbBFrXgeyU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2896817889,"id_str":"2896817889","name":"Robin He","screen_name":"rhehe92","location":"New York, NY","url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":34,"listed_count":0,"favourites_count":25,"statuses_count":62,"created_at":"Sat Nov 29 03:39:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559942814973587456\/_Adjw9wF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559942814973587456\/_Adjw9wF_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727015435063296,"quoted_status_id_str":"663727015435063296","quoted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727015435063296,"id_str":"663727015435063296","text":"1 dead, 2 wounded in shooting near Penn Station in Manhattan this morning https:\/\/t.co\/XQCCl85FCj","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":807095,"id_str":"807095","name":"The New York Times","screen_name":"nytimes","location":"New York City","url":"http:\/\/www.nytimes.com\/","description":"Where the conversation begins. Follow for breaking news, special reports, RTs of our journalists and more from http:\/\/NYTimes.com","protected":false,"verified":true,"followers_count":21092293,"friends_count":986,"listed_count":168460,"favourites_count":8101,"statuses_count":206172,"created_at":"Fri Mar 02 20:41:42 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/736339684\/948f072cc2da4e3a5e9f2ebfb3b1a0e7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/736339684\/948f072cc2da4e3a5e9f2ebfb3b1a0e7.png","profile_background_tile":true,"profile_link_color":"607696","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2044921128\/finals_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2044921128\/finals_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/807095\/1355346050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XQCCl85FCj","expanded_url":"http:\/\/nyti.ms\/1NZj49X","display_url":"nyti.ms\/1NZj49X","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mbBFrXgeyU","expanded_url":"https:\/\/twitter.com\/nytimes\/status\/663727015435063296","display_url":"twitter.com\/nytimes\/status\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945418753,"id_str":"663727883945418753","text":"If you are the type of person to always put something in someones head, get a life!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3917899033,"id_str":"3917899033","name":"Ciara Wade","screen_name":"ciiiwade","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":20,"listed_count":0,"favourites_count":4,"statuses_count":51,"created_at":"Fri Oct 16 21:25:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660985998915039232\/5xX0mBur_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660985998915039232\/5xX0mBur_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962204160,"id_str":"663727883962204160","text":"RT @Tearsayn: Rt per un indiretto !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2331750005,"id_str":"2331750005","name":"\u00bf","screen_name":"BLOOVM","location":"lwt;was @LOUIV17BLACK","url":null,"description":"\u00abMi piacerebbe intrecciare le mie mani con le tue Louis,per poter capire cosa significa stare mano nella mano con la persona che ami di pi\u00f9.\u00bb","protected":false,"verified":false,"followers_count":8214,"friends_count":5831,"listed_count":10,"favourites_count":20889,"statuses_count":28807,"created_at":"Sat Feb 08 10:38:46 +0000 2014","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727157244502017\/m8251o1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727157244502017\/m8251o1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2331750005\/1447079879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:00 +0000 2015","id":663721454937227264,"id_str":"663721454937227264","text":"Rt per un indiretto !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1911012458,"id_str":"1911012458","name":"A \/\/-4","screen_name":"Tearsayn","location":"him eternally in my heart","url":null,"description":"Arrivi tu e fai passare la paura di precipitare.","protected":false,"verified":false,"followers_count":2469,"friends_count":1299,"listed_count":37,"favourites_count":25673,"statuses_count":50760,"created_at":"Fri Sep 27 12:28:54 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463311424781971456\/ino0gaC1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463311424781971456\/ino0gaC1.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"28CAB2","profile_text_color":"C3F400","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663418494428532736\/f1chEOrD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663418494428532736\/f1chEOrD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1911012458\/1447006269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tearsayn","name":"A \/\/-4","id":1911012458,"id_str":"1911012458","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974746112,"id_str":"663727883974746112","text":"RT @mobrock: .@Munchkin_Inc pledges $1,000,000 2 help build orca sanctuary! https:\/\/t.co\/apiB0cHjOa #Blackfish #OrcasLiveInOceans https:\/\/t\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":842718474,"id_str":"842718474","name":"Grim_Chickn","screen_name":"grm_chikn","location":"no place like 127.0.0.1","url":"https:\/\/sites.google.com\/site\/tilikumandco\/","description":"SeaWorld Agitator -- Don't make me drop a house on you...","protected":false,"verified":false,"followers_count":5228,"friends_count":2721,"listed_count":141,"favourites_count":49809,"statuses_count":139810,"created_at":"Mon Sep 24 01:21:54 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"292825","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433324705102065664\/fdn70hwo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433324705102065664\/fdn70hwo.jpeg","profile_background_tile":false,"profile_link_color":"6C8E94","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616360792636715008\/ZGWaDGwq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616360792636715008\/ZGWaDGwq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842718474\/1444573467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:01 +0000 2015","id":663726239149137920,"id_str":"663726239149137920","text":".@Munchkin_Inc pledges $1,000,000 2 help build orca sanctuary! https:\/\/t.co\/apiB0cHjOa #Blackfish #OrcasLiveInOceans https:\/\/t.co\/x366lUMhN1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17129251,"id_str":"17129251","name":"Mo Brock","screen_name":"mobrock","location":"Atlanta, Georgia","url":"http:\/\/www.coveblueforjiyu.com","description":"What do nutrition, veganism, animal rights, unscarred mountains and clean, safe oceans have in common? Let's find out.","protected":false,"verified":false,"followers_count":3517,"friends_count":1576,"listed_count":110,"favourites_count":12443,"statuses_count":35379,"created_at":"Mon Nov 03 11:45:46 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3D9E96","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559223317\/UDAR_Horse_and_Human_Eye.1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559223317\/UDAR_Horse_and_Human_Eye.1.jpg","profile_background_tile":true,"profile_link_color":"11434D","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1254784821\/22_Martha_BrockSLCA__8_110710_0194_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1254784821\/22_Martha_BrockSLCA__8_110710_0194_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17129251\/1444778114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Blackfish","indices":[87,97]},{"text":"OrcasLiveInOceans","indices":[98,116]}],"urls":[{"url":"https:\/\/t.co\/apiB0cHjOa","expanded_url":"http:\/\/www.kcentv.com\/story\/30468572\/global-baby-product-company-munchkin-inc-pledges-1-million-to-kick-start-a-fund-to-help-free-captive-orcas","display_url":"kcentv.com\/story\/30468572\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"Munchkin_Inc","name":"Munchkin","id":25555746,"id_str":"25555746","indices":[1,14]}],"symbols":[],"media":[{"id":663726238423523329,"id_str":"663726238423523329","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","url":"https:\/\/t.co\/x366lUMhN1","display_url":"pic.twitter.com\/x366lUMhN1","expanded_url":"http:\/\/twitter.com\/mobrock\/status\/663726239149137920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":367,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"},"large":{"w":1024,"h":626,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726238423523329,"id_str":"663726238423523329","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","url":"https:\/\/t.co\/x366lUMhN1","display_url":"pic.twitter.com\/x366lUMhN1","expanded_url":"http:\/\/twitter.com\/mobrock\/status\/663726239149137920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":367,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"},"large":{"w":1024,"h":626,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Blackfish","indices":[100,110]},{"text":"OrcasLiveInOceans","indices":[111,129]}],"urls":[{"url":"https:\/\/t.co\/apiB0cHjOa","expanded_url":"http:\/\/www.kcentv.com\/story\/30468572\/global-baby-product-company-munchkin-inc-pledges-1-million-to-kick-start-a-fund-to-help-free-captive-orcas","display_url":"kcentv.com\/story\/30468572\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"mobrock","name":"Mo Brock","id":17129251,"id_str":"17129251","indices":[3,11]},{"screen_name":"Munchkin_Inc","name":"Munchkin","id":25555746,"id_str":"25555746","indices":[14,27]}],"symbols":[],"media":[{"id":663726238423523329,"id_str":"663726238423523329","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","url":"https:\/\/t.co\/x366lUMhN1","display_url":"pic.twitter.com\/x366lUMhN1","expanded_url":"http:\/\/twitter.com\/mobrock\/status\/663726239149137920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":367,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"},"large":{"w":1024,"h":626,"resize":"fit"}},"source_status_id":663726239149137920,"source_status_id_str":"663726239149137920","source_user_id":17129251,"source_user_id_str":"17129251"}]},"extended_entities":{"media":[{"id":663726238423523329,"id_str":"663726238423523329","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHf01XIAEbX0X.jpg","url":"https:\/\/t.co\/x366lUMhN1","display_url":"pic.twitter.com\/x366lUMhN1","expanded_url":"http:\/\/twitter.com\/mobrock\/status\/663726239149137920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":367,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"},"large":{"w":1024,"h":626,"resize":"fit"}},"source_status_id":663726239149137920,"source_status_id_str":"663726239149137920","source_user_id":17129251,"source_user_id_str":"17129251"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949510657,"id_str":"663727883949510657","text":"RT @faroutly: A huge crush Kylie Jenner-- Awesome street style http:\/\/t.co\/1RErjyi4bl","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333082048,"id_str":"2333082048","name":"Learn Something","screen_name":"AllEXPENSlVE","location":null,"url":null,"description":"Posting the best life hacks, facts and mind boggling information. Learn something with us daily and make your life easier while expanding your knowledge.","protected":false,"verified":false,"followers_count":179054,"friends_count":75,"listed_count":103,"favourites_count":27,"statuses_count":261,"created_at":"Sat Feb 08 07:59:33 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432131258869481472\/FlYRbXPU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432131258869481472\/FlYRbXPU.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663427183134638080\/Ungpx_Vd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663427183134638080\/Ungpx_Vd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333082048\/1445739142","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 23 18:30:52 +0000 2015","id":646753612945825792,"id_str":"646753612945825792","text":"A huge crush Kylie Jenner-- Awesome street style http:\/\/t.co\/1RErjyi4bl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607727322,"id_str":"607727322","name":"Street Styles","screen_name":"faroutly","location":null,"url":null,"description":"We are here for all kinda latest Fashion trends & style tips, Street Style celebrity, So stay tuned. \u2709\ufe0fContact - faroutly@gmail.com","protected":false,"verified":false,"followers_count":178684,"friends_count":88,"listed_count":208,"favourites_count":126,"statuses_count":1107,"created_at":"Wed Jun 13 23:33:09 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607727322\/1434124785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1516,"favorite_count":2693,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646753610534121473,"id_str":"646753610534121473","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":944,"resize":"fit"},"large":{"w":306,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":220,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646753610534121473,"id_str":"646753610534121473","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":944,"resize":"fit"},"large":{"w":306,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":220,"h":680,"resize":"fit"}}},{"id":646753610148225025,"id_str":"646753610148225025","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-1YWIAEaxB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-1YWIAEaxB0.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"small":{"w":279,"h":680,"resize":"fit"},"medium":{"w":306,"h":744,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":306,"h":744,"resize":"fit"}}},{"id":646753601247911940,"id_str":"646753601247911940","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-UOWIAQjZoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-UOWIAQjZoH.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":746,"resize":"fit"},"large":{"w":306,"h":746,"resize":"fit"},"small":{"w":278,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":646753610160840704,"id_str":"646753610160840704","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-1bWoAAW5AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-1bWoAAW5AA.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"small":{"w":238,"h":680,"resize":"fit"},"large":{"w":306,"h":874,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":874,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"faroutly","name":"Street Styles","id":607727322,"id_str":"607727322","indices":[3,12]}],"symbols":[],"media":[{"id":646753610534121473,"id_str":"646753610534121473","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":944,"resize":"fit"},"large":{"w":306,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":220,"h":680,"resize":"fit"}},"source_status_id":646753612945825792,"source_status_id_str":"646753612945825792","source_user_id":607727322,"source_user_id_str":"607727322"}]},"extended_entities":{"media":[{"id":646753610534121473,"id_str":"646753610534121473","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-20WcAEpSJD.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":944,"resize":"fit"},"large":{"w":306,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":220,"h":680,"resize":"fit"}},"source_status_id":646753612945825792,"source_status_id_str":"646753612945825792","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646753610148225025,"id_str":"646753610148225025","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-1YWIAEaxB0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-1YWIAEaxB0.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"small":{"w":279,"h":680,"resize":"fit"},"medium":{"w":306,"h":744,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":306,"h":744,"resize":"fit"}},"source_status_id":646753612945825792,"source_status_id_str":"646753612945825792","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646753601247911940,"id_str":"646753601247911940","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-UOWIAQjZoH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-UOWIAQjZoH.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"medium":{"w":306,"h":746,"resize":"fit"},"large":{"w":306,"h":746,"resize":"fit"},"small":{"w":278,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":646753612945825792,"source_status_id_str":"646753612945825792","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646753610160840704,"id_str":"646753610160840704","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CPm6-1bWoAAW5AA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPm6-1bWoAAW5AA.jpg","url":"http:\/\/t.co\/1RErjyi4bl","display_url":"pic.twitter.com\/1RErjyi4bl","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646753612945825792\/photo\/1","type":"photo","sizes":{"small":{"w":238,"h":680,"resize":"fit"},"large":{"w":306,"h":874,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":306,"h":874,"resize":"fit"}},"source_status_id":646753612945825792,"source_status_id_str":"646753612945825792","source_user_id":607727322,"source_user_id_str":"607727322"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883957854208,"id_str":"663727883957854208","text":"RT @Ninknutcha: \u0e01\u0e15\u0e34\u0e01\u0e32\u0e42\u0e04\u0e15\u0e23\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e25\u0e22 #EXO \u0e01\u0e4a\u0e2d\u0e1b\u0e27\u0e32\u0e07\u0e41\u0e21\u0e48\u0e21 #CALLMEBABY \u0e2e\u0e48\u0e27\u0e22 @MnetMAMA \u0e2a\u0e34\u0e1a\u0e23\u0e35\u0e44\u0e14\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e2d\u0e35\u0e01 #2015MAMA \u0e22\u0e32\u0e01\u0e0a\u0e34\u0e1a\u0e2b\u0e32\u0e22\u0e40\u0e25\u0e22\u0e22\u0e22\u0e22\u0e1b\u0e23\u0e30\u0e40\u0e14\u0e47\u0e19\u0e04\u0e37\u0e2d\u0e43\u0e04\u0e23\u0e08\u0e30\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066697339,"id_str":"3066697339","name":"\uc21c\ub465\uc21c\ub465\ud55c \ud604\uc774","screen_name":"tldms6196gmail1","location":null,"url":null,"description":"exo-l\/\uc5d0\ub9ac","protected":false,"verified":false,"followers_count":14,"friends_count":76,"listed_count":0,"favourites_count":6,"statuses_count":175,"created_at":"Sat Mar 07 13:43:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631665401911357440\/7UZiSYiH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631665401911357440\/7UZiSYiH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727721411821568,"id_str":"663727721411821568","text":"\u0e01\u0e15\u0e34\u0e01\u0e32\u0e42\u0e04\u0e15\u0e23\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e25\u0e22 #EXO \u0e01\u0e4a\u0e2d\u0e1b\u0e27\u0e32\u0e07\u0e41\u0e21\u0e48\u0e21 #CALLMEBABY \u0e2e\u0e48\u0e27\u0e22 @MnetMAMA \u0e2a\u0e34\u0e1a\u0e23\u0e35\u0e44\u0e14\u0e49\u0e04\u0e30\u0e41\u0e19\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e2d\u0e35\u0e01 #2015MAMA \u0e22\u0e32\u0e01\u0e0a\u0e34\u0e1a\u0e2b\u0e32\u0e22\u0e40\u0e25\u0e22\u0e22\u0e22\u0e22\u0e1b\u0e23\u0e30\u0e40\u0e14\u0e47\u0e19\u0e04\u0e37\u0e2d\u0e43\u0e04\u0e23\u0e08\u0e30\u0e23\u0e35\u0e09\u0e49\u0e32\u0e19\u0e19\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1439007548,"id_str":"1439007548","name":"\u2744 \u0e40\u0e21\u0e35\u0e22\u0e19\u0e49\u0e2d\u0e22\u0e1e\u0e35\u0e48\u0e2b\u0e21\u0e34\u0e19 \u2744","screen_name":"Ninknutcha","location":"\u0e21\u0e32\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19\u0e44\u0e14\u0e49","url":null,"description":"XIUMIN & KRIS [#LUMIN(\u0e15\u0e31\u0e27\u0e42\u0e15\u0e46) #TAOHUN (&90line\u2661)] \u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e17\u0e31\u0e19 \u0e41\u0e15\u0e48\u0e07\u0e32\u0e19\u0e01\u0e32\u0e21\u0e15\u0e32\u0e21\u0e40\u0e01\u0e47\u0e1a\u0e17\u0e31\u0e19\u0e15\u0e25\u0e2d\u0e14\u0e19\u0e30\u0e04\u0e23\u0e31\u0e0a : normally insane \u0e02\u0e32\u0e14\u0e2a\u0e15\u0e34\u0e40\u0e1b\u0e47\u0e19\u0e1b\u0e01\u0e15\u0e34 http:\/\/ninknutcha.tumblr.com","protected":false,"verified":false,"followers_count":1582,"friends_count":443,"listed_count":1,"favourites_count":4134,"statuses_count":97872,"created_at":"Sat May 18 17:54:34 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141414","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468791713893318656\/DCeJsxvj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468791713893318656\/DCeJsxvj.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658693771312304128\/yg5_T_O1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658693771312304128\/yg5_T_O1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1439007548\/1440238489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[17,21]},{"text":"CALLMEBABY","indices":[34,45]},{"text":"2015MAMA","indices":[83,92]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[51,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[33,37]},{"text":"CALLMEBABY","indices":[50,61]},{"text":"2015MAMA","indices":[99,108]}],"urls":[],"user_mentions":[{"screen_name":"Ninknutcha","name":"\u2744 \u0e40\u0e21\u0e35\u0e22\u0e19\u0e49\u0e2d\u0e22\u0e1e\u0e35\u0e48\u0e2b\u0e21\u0e34\u0e19 \u2744","id":1439007548,"id_str":"1439007548","indices":[3,14]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[67,76]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080033660"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962073088,"id_str":"663727883962073088","text":"Nagugutom ako \ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2167746163,"id_str":"2167746163","name":"DS","screen_name":"Danyieeelsantos","location":"Manila","url":"https:\/\/www.facebook.com\/sgt.gt","description":"God","protected":false,"verified":false,"followers_count":943,"friends_count":1074,"listed_count":2,"favourites_count":1616,"statuses_count":7390,"created_at":"Fri Nov 01 04:27:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661516160718888961\/9xnK9f6p.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661516160718888961\/9xnK9f6p.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495133186079203328\/dKsVYMah_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495133186079203328\/dKsVYMah_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2167746163\/1446552544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962220544,"id_str":"663727883962220544","text":"RT @FIL0S0FIA: No importa el tiempo que se deba esperar, si el amor es verdadero siempre estar\u00e1 esperando por ti.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1117990428,"id_str":"1117990428","name":"Flor\u2020","screen_name":"11Florgonzalez","location":"Capital - Corrientes","url":null,"description":null,"protected":false,"verified":false,"followers_count":624,"friends_count":917,"listed_count":1,"favourites_count":426,"statuses_count":5201,"created_at":"Fri Jan 25 00:02:56 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169029296\/BNoOHSU4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169029296\/BNoOHSU4.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656703915476389889\/JvcZP0EZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656703915476389889\/JvcZP0EZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117990428\/1447011982","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:03 +0000 2015","id":663721464453988352,"id_str":"663721464453988352","text":"No importa el tiempo que se deba esperar, si el amor es verdadero siempre estar\u00e1 esperando por ti.","source":"\u003ca href=\"https:\/\/octopusocial.com\" rel=\"nofollow\"\u003eOctopuSocial\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262389559,"id_str":"262389559","name":"Filosof\u00eda\u2655","screen_name":"FIL0S0FIA","location":"contacto: socomufi@hotmail.com","url":"https:\/\/www.facebook.com\/FIL0S0FIA","description":"P\u00e1gina de Filosof\u00eda. Escribimos pensamientos filos\u00f3ficos y reales que te har\u00e1n pensar y reflexionar... S\u00edguenos tambi\u00e9n en @FlLOSOFIAS http:\/\/t.co\/YoRm1fSwqd","protected":false,"verified":false,"followers_count":2490219,"friends_count":130,"listed_count":4953,"favourites_count":113,"statuses_count":136762,"created_at":"Mon Mar 07 23:35:30 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000112998936\/d894a023ed63a47b4c7bd9afb4075c21.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000112998936\/d894a023ed63a47b4c7bd9afb4075c21.jpeg","profile_background_tile":true,"profile_link_color":"0F6FFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FC0303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2281955321\/no1ebg5vptfv77l1ic7w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2281955321\/no1ebg5vptfv77l1ic7w_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/262389559\/1401393921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":165,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FIL0S0FIA","name":"Filosof\u00eda\u2655","id":262389559,"id_str":"262389559","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974787072,"id_str":"663727883974787072","text":"WHAT! IVE! DONE! IN! THE! PAST! IS! NONE! OF! YOUR! BUSINESS!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1942563955,"id_str":"1942563955","name":"Mere","screen_name":"LaubachMeredith","location":null,"url":"http:\/\/mmlaubach.vsco.co","description":"im having an ok time","protected":false,"verified":false,"followers_count":124,"friends_count":171,"listed_count":0,"favourites_count":837,"statuses_count":129,"created_at":"Mon Oct 07 01:12:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660832423614136323\/0xMP8-QZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660832423614136323\/0xMP8-QZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1942563955\/1419278626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970461696,"id_str":"663727883970461696","text":"RT @kamalmeet7: @Gurmeetramrahim\n GREAT !!! MSG!! MARVELLOUS !!! #MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322188637,"id_str":"3322188637","name":"\u0915\u092e\u0932 \u092c\u093e\u092c\u0930\u093e","screen_name":"kamalbabra77","location":"\u0932\u094b\u0928\u0940, \u0917\u093e\u091c\u093f\u092f\u093e\u092c\u093e\u0926, \u092f\u0942\u0966 \u092a\u0940\u0966","url":null,"description":"\u0915\u093e\u0930\u094d\u092f\u093e\u0932\u092f \u0938\u0939\u093e\u092f\u0915, \u0930\u093e\u091c\u0938\u094d\u0935 \u0935\u093f\u092d\u093e\u0917, \u0935\u093f\u0924\u094d\u0924 \u092e\u0902\u0924\u094d\u0930\u093e\u0932\u092f, \u092d\u093e\u0930\u0924 \u0938\u0930\u0915\u093e\u0930, \u0928\u0908 \u0926\u093f\u0932\u094d\u0932\u0940","protected":false,"verified":false,"followers_count":10,"friends_count":8,"listed_count":0,"favourites_count":1312,"statuses_count":12872,"created_at":"Fri Aug 21 08:18:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634641740092145664\/x2IdNnqQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634641740092145664\/x2IdNnqQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322188637\/1440465461","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:50 +0000 2015","id":663718893198794756,"id_str":"663718893198794756","text":"@Gurmeetramrahim\n GREAT !!! MSG!! MARVELLOUS !!! #MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708578235072516,"in_reply_to_status_id_str":"663708578235072516","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":276917857,"id_str":"276917857","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","screen_name":"kamalmeet7","location":"BaThiNdA\u20a6 Boy'Z, PuNjaB","url":null,"description":"~i\u03c4 \u03c9i\u0438\u0262 \u043c\u0454\u043c\u0432\u0454\u044f $ s\u043d\u03b1\u043d s\u03b1\u03c4\u0438\u03b1\u043c ji \u0262\u044f\u0454\u0454\u0438 s \u03c9\u0454\u2113f\u03b1\u044f\u0454 f\u03c3\u044fc\u0454 \u03c9i\u0438\u0262~ \u092e\u0948 \u0936\u093e\u092f\u0930 \u0924\u094b \u0928\u0939\u0940\u0902 \u090f \u0939\u0938\u0940\u0902,\n\u092a\u0930 \u091c\u092c\u0938\u0947 \u0926\u0947\u0916\u093e \u0924\u0941\u092e\u0915\u094b, \u092e\u0941\u091d\u0915\u094b \u0936\u093e\u092f\u0930\u0940 \u0906 \u0917\u092f\u0940\u2026","protected":false,"verified":false,"followers_count":6079,"friends_count":206,"listed_count":12,"favourites_count":9235,"statuses_count":26153,"created_at":"Mon Apr 04 10:33:05 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661885990152175616\/DLGgG4k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276917857\/1443257553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":5,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[49,73]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[65,89]}],"urls":[],"user_mentions":[{"screen_name":"kamalmeet7","name":"\u261e\u2133$\u20b2 \u20b1@\u20b1\u20b3\u2661\u0926\u093e \u092b\u0948\u0928\u266c","id":276917857,"id_str":"276917857","indices":[3,14]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033663"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883957829636,"id_str":"663727883957829636","text":"The fact my teacher actually just made a test with all the same answers...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1723154696,"id_str":"1723154696","name":"McKenna Fisher","screen_name":"Kennafish30","location":"HOU,TX\u2708\ufe0fSTL,MO","url":null,"description":"\u2022MBU LAX '18\u2022","protected":false,"verified":false,"followers_count":240,"friends_count":196,"listed_count":1,"favourites_count":2681,"statuses_count":4795,"created_at":"Mon Sep 02 18:42:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661298547938103296\/k4CRzuW-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661298547938103296\/k4CRzuW-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1723154696\/1446586927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"c3d0d06760ca937b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c3d0d06760ca937b.json","place_type":"city","name":"Creve Coeur","full_name":"Creve Coeur, MO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-90.491849,38.639901],[-90.491849,38.696309],[-90.392072,38.696309],[-90.392072,38.639901]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033660"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949490176,"id_str":"663727883949490176","text":"2015 LX \ud06c\ub9ac\uc5d0\uc774\ud2f0\ube0c \uacf5\ubaa8\uc804:https:\/\/t.co\/SL3YvBybry","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194929855,"id_str":"3194929855","name":"\uc624\ubbf8\uc5f0","screen_name":"omy62610","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":32,"listed_count":0,"favourites_count":0,"statuses_count":5937,"created_at":"Thu May 14 03:28:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631846928720891904\/1C_8rdyi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631846928720891904\/1C_8rdyi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3194929855\/1439479035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SL3YvBybry","expanded_url":"http:\/\/contest.lx.or.kr\/event\/event_scrap_2015.asp","display_url":"contest.lx.or.kr\/event\/event_sc\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883978866688,"id_str":"663727883978866688","text":"Do special things for me \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3038387128,"id_str":"3038387128","name":"Ariana Doll","screen_name":"Mercedesbenz_m","location":null,"url":null,"description":"My boyfriend is Superman. I love handsome guys and Lamborghini and Ferrari babe NYC \u2022 Model. Sexy","protected":false,"verified":false,"followers_count":170,"friends_count":361,"listed_count":3,"favourites_count":854,"statuses_count":9959,"created_at":"Sun Feb 15 05:26:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605414514998116353\/xcrRVZQb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605414514998116353\/xcrRVZQb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3038387128\/1446710850","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033665"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949510656,"id_str":"663727883949510656","text":"@legeengs \uc54c\ud2f0\uc880\ubd10\ub77c \u314b\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727842140688385,"in_reply_to_status_id_str":"663727842140688385","in_reply_to_user_id":3780352112,"in_reply_to_user_id_str":"3780352112","in_reply_to_screen_name":"legeengs","user":{"id":3738628099,"id_str":"3738628099","name":"\uc720\uacb8","screen_name":"ugyumm","location":"\uc591\uc9c0\ubc14\ub978 \ud50c\ub808\ub514\uc2a4 \uc55e","url":null,"description":"\uad11\ud0c8\ub77c\uc78e","protected":false,"verified":false,"followers_count":423,"friends_count":93,"listed_count":3,"favourites_count":838,"statuses_count":5729,"created_at":"Wed Sep 30 16:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661921462031290368\/D4bfDlAc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661921462031290368\/D4bfDlAc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3738628099\/1446980039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"legeengs","name":"\uc774\uac15","id":3780352112,"id_str":"3780352112","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949465600,"id_str":"663727883949465600","text":"Present is u give to who\ud83d\ude22\nDid'nt ask u\ud83d\ude22\nJust keeping.\ud83d\ude22\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3952400718,"id_str":"3952400718","name":"sky","screen_name":"sky02212300","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":14,"listed_count":0,"favourites_count":5,"statuses_count":15,"created_at":"Tue Oct 20 00:33:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656271041166086145\/8x_EElWU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656271041166086145\/8x_EElWU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945426944,"id_str":"663727883945426944","text":"(+) + (-).. \u2014 + tinggi \n- suka gjls https:\/\/t.co\/yWkSKE5IWq","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":401849274,"id_str":"401849274","name":"Fitrii~","screen_name":"SaFitri_Rmdhni","location":"05'13\/\/24'16","url":"http:\/\/ask.fm\/SafitriRamadhani_","description":"Sometimes is hard to follow your heart.","protected":false,"verified":false,"followers_count":366,"friends_count":274,"listed_count":0,"favourites_count":279,"statuses_count":10411,"created_at":"Mon Oct 31 05:37:23 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515983454253510656\/j3ov2g8X.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515983454253510656\/j3ov2g8X.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635840574818422784\/yAUt4-Q6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635840574818422784\/yAUt4-Q6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401849274\/1436747608","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yWkSKE5IWq","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO6Q72HTJOIIRPAOLBNRDLRKJ7FS7BW4GOAMNAPIUXBTKSY72FYGIVVDEVSRQN57M3FAK32KZBBGWIIERFKKBN3CEI7CJSEC4IG5TSRPTUTDTT2Z6HAV2DMH5UUQLGNDIT3C7XOXT6E2Z6CVXYLXTKT2GUOBD5XVBH5J3BY2F2H7XI5LSES4VFLPHSBO","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883953696768,"id_str":"663727883953696768","text":"@Shaebylsystem jangan pura2 tidak tau kau mb \u3003\u00b4\uff3f\uff40\u3003","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=org.mariotaku.twidere\" rel=\"nofollow\"\u003eTwidere for Android #3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726883721248772,"in_reply_to_status_id_str":"663726883721248772","in_reply_to_user_id":1230014600,"in_reply_to_user_id_str":"1230014600","in_reply_to_screen_name":"Shaebylsystem","user":{"id":113032754,"id_str":"113032754","name":"Putri","screen_name":"mputchimi","location":"Six Gravity's Dorm","url":"http:\/\/www.fanfiction.net\/u\/2603118\/","description":"Beware: Spammer, Sarcasm, Ambiguous, and Capslock Tweets.\n\n\u58f0\u512a \u2022 \u30c4\u30ad\u30a6\u30bf \u30fc Initium \u2022 \u5200\u5263\u4e71\u821e \u2022 \u5922100","protected":false,"verified":false,"followers_count":332,"friends_count":226,"listed_count":3,"favourites_count":48,"statuses_count":40257,"created_at":"Wed Feb 10 13:44:04 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067316678\/149e07ef9b13f6a3cfb47acdbfb098d1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067316678\/149e07ef9b13f6a3cfb47acdbfb098d1.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653122421055098880\/f9zBrDso_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653122421055098880\/f9zBrDso_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113032754\/1429362320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Shaebylsystem","name":"shae( \u2022 \u0300\u03c9\u2022\u0301 )\u2727","id":1230014600,"id_str":"1230014600","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080033659"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970461697,"id_str":"663727883970461697","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2346921984,"id_str":"2346921984","name":"Yanuv Kitchenside","screen_name":"hesalazadewa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":728,"friends_count":1442,"listed_count":26,"favourites_count":16568,"statuses_count":34491,"created_at":"Sun Feb 16 14:20:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442221832385470464\/oFVUipC2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442221832385470464\/oFVUipC2_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1638,"favorite_count":1013,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033663"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883966218240,"id_str":"663727883966218240","text":"RT @EXO_FANBASE: EXO Lotte Duty Free 2015 F\/W Photo Sketch\nhttps:\/\/t.co\/d1vhw7iNV2\nhttps:\/\/t.co\/3Elf2IoEbf\nhttps:\/\/t.co\/jLSL67x5JN https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2294623014,"id_str":"2294623014","name":"\u0e1a\u0e22\u0e2d\u0e19 \u0e1a\u0e35\u0e4b","screen_name":"khaw_exo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":161,"friends_count":550,"listed_count":1,"favourites_count":8077,"statuses_count":31367,"created_at":"Thu Jan 16 15:37:36 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644405209511301120\/145Z4Msx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644405209511301120\/145Z4Msx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2294623014\/1444268617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:34 +0000 2015","id":663725623492214784,"id_str":"663725623492214784","text":"EXO Lotte Duty Free 2015 F\/W Photo Sketch\nhttps:\/\/t.co\/d1vhw7iNV2\nhttps:\/\/t.co\/3Elf2IoEbf\nhttps:\/\/t.co\/jLSL67x5JN https:\/\/t.co\/2lJhYAjbck","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":527508915,"id_str":"527508915","name":"EXO FANBASE","screen_name":"EXO_FANBASE","location":"instagram.com\/exo_fanbaseig","url":"http:\/\/exofanbase12.tumblr.com\/","description":"Providing the latest news about EXO. Support and follow us! Contact: exofanbase2012@gmail.com","protected":false,"verified":false,"followers_count":538484,"friends_count":225,"listed_count":2066,"favourites_count":49,"statuses_count":118715,"created_at":"Sat Mar 17 14:30:38 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1BAAF2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_tile":true,"profile_link_color":"FC0008","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527508915\/1423389941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":157,"favorite_count":142,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d1vhw7iNV2","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14403","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[42,65]},{"url":"https:\/\/t.co\/3Elf2IoEbf","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14819","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[66,89]},{"url":"https:\/\/t.co\/jLSL67x5JN","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14816","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725591120601088,"id_str":"663725591120601088","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725612247351296,"id_str":"663725612247351296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725620170375169,"id_str":"663725620170375169","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":640,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d1vhw7iNV2","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14403","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[59,82]},{"url":"https:\/\/t.co\/3Elf2IoEbf","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14819","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[83,106]},{"url":"https:\/\/t.co\/jLSL67x5JN","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14816","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"EXO_FANBASE","name":"EXO FANBASE","id":527508915,"id_str":"527508915","indices":[3,15]}],"symbols":[],"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"}]},"extended_entities":{"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725591120601088,"id_str":"663725591120601088","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725612247351296,"id_str":"663725612247351296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725620170375169,"id_str":"663725620170375169","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":640,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033662"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945283584,"id_str":"663727883945283584","text":"RT @TheWalkingDead: Lots of questions answered in our #TheWalkingDead Episode 605 Recap. Discuss it with us HERE https:\/\/t.co\/2acCCgHkYr ht\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2179504057,"id_str":"2179504057","name":"MlbrtJptn","screen_name":"IamMelbertttttt","location":"Los Angeles Quezon City","url":"https:\/\/www.facebook.com\/MelbortJapitan","description":"Half human Half Zombie.","protected":false,"verified":false,"followers_count":148,"friends_count":158,"listed_count":1,"favourites_count":495,"statuses_count":3145,"created_at":"Thu Nov 07 06:47:34 +0000 2013","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570538420414337024\/qwIL1lR__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570538420414337024\/qwIL1lR__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179504057\/1433767178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:06:05 +0000 2015","id":663553113396146176,"id_str":"663553113396146176","text":"Lots of questions answered in our #TheWalkingDead Episode 605 Recap. Discuss it with us HERE https:\/\/t.co\/2acCCgHkYr https:\/\/t.co\/O7tWjLPf1B","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14724725,"id_str":"14724725","name":"The Walking Dead","screen_name":"TheWalkingDead","location":"Los Angeles, CA","url":"http:\/\/www.thewalkingdead.com","description":"The Official Walking Dead account from Skybound Entertainment. Make sure to also check out http:\/\/bit.ly\/TWDFacebook & https:\/\/instagram.com\/thewalkingdead\/.","protected":false,"verified":true,"followers_count":850264,"friends_count":1264,"listed_count":1745,"favourites_count":1261,"statuses_count":8664,"created_at":"Sat May 10 14:14:51 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/795320524\/70800432c4462230ac42af713ef5e92c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/795320524\/70800432c4462230ac42af713ef5e92c.jpeg","profile_background_tile":false,"profile_link_color":"D00000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651937992114880512\/eksuZdeK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651937992114880512\/eksuZdeK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14724725\/1444269144","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":206,"favorite_count":599,"entities":{"hashtags":[{"text":"TheWalkingDead","indices":[34,49]}],"urls":[{"url":"https:\/\/t.co\/2acCCgHkYr","expanded_url":"http:\/\/bit.ly\/605Recap","display_url":"bit.ly\/605Recap","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663553112548839424,"id_str":"663553112548839424","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","url":"https:\/\/t.co\/O7tWjLPf1B","display_url":"pic.twitter.com\/O7tWjLPf1B","expanded_url":"http:\/\/twitter.com\/TheWalkingDead\/status\/663553113396146176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":369,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663553112548839424,"id_str":"663553112548839424","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","url":"https:\/\/t.co\/O7tWjLPf1B","display_url":"pic.twitter.com\/O7tWjLPf1B","expanded_url":"http:\/\/twitter.com\/TheWalkingDead\/status\/663553113396146176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":369,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TheWalkingDead","indices":[54,69]}],"urls":[{"url":"https:\/\/t.co\/2acCCgHkYr","expanded_url":"http:\/\/bit.ly\/605Recap","display_url":"bit.ly\/605Recap","indices":[113,136]}],"user_mentions":[{"screen_name":"TheWalkingDead","name":"The Walking Dead","id":14724725,"id_str":"14724725","indices":[3,18]}],"symbols":[],"media":[{"id":663553112548839424,"id_str":"663553112548839424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","url":"https:\/\/t.co\/O7tWjLPf1B","display_url":"pic.twitter.com\/O7tWjLPf1B","expanded_url":"http:\/\/twitter.com\/TheWalkingDead\/status\/663553113396146176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":369,"resize":"fit"}},"source_status_id":663553113396146176,"source_status_id_str":"663553113396146176","source_user_id":14724725,"source_user_id_str":"14724725"}]},"extended_entities":{"media":[{"id":663553112548839424,"id_str":"663553112548839424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqCksUEAAYtKb.png","url":"https:\/\/t.co\/O7tWjLPf1B","display_url":"pic.twitter.com\/O7tWjLPf1B","expanded_url":"http:\/\/twitter.com\/TheWalkingDead\/status\/663553113396146176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"medium":{"w":600,"h":345,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":369,"resize":"fit"}},"source_status_id":663553113396146176,"source_status_id_str":"663553113396146176","source_user_id":14724725,"source_user_id_str":"14724725"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962028032,"id_str":"663727883962028032","text":"RT @__OKHA: \uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2207002860,"id_str":"2207002860","name":"\uba54\ubc14","screen_name":"moeba26","location":null,"url":null,"description":"\uc7a1\ub355","protected":false,"verified":false,"followers_count":60,"friends_count":176,"listed_count":0,"favourites_count":1344,"statuses_count":9021,"created_at":"Thu Nov 21 11:33:03 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"164206","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594524626291544064\/H2rMG4xq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594524626291544064\/H2rMG4xq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2207002860\/1385037985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:02:51 +0000 2015","id":662857723415912448,"id_str":"662857723415912448","text":"\uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328479976,"id_str":"2328479976","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","screen_name":"__OKHA","location":null,"url":null,"description":"\u30da\u30c0\u30eb l \ud504\ub85c \uc7a1\ub355 l \ubc30\uacbd\uc740 \ub51c\ub2d8\uc758, \ud5e4\ub354\ub294 \ud344\ucc28\ub2d8\uc758 \ucee4\ubbf8\uc158 l\n\uad6c\ub3c5 \ub9ce\uc774 \ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":2555,"friends_count":503,"listed_count":21,"favourites_count":7727,"statuses_count":14900,"created_at":"Wed Feb 05 09:10:25 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328479976\/1427255632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1676,"favorite_count":493,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__OKHA","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","id":2328479976,"id_str":"2328479976","indices":[3,10]}],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ko","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883953684481,"id_str":"663727883953684481","text":"\u3048\u3063\u3001\u5f85\u3063\u3066\u3001\u76866\u8a71\u8996\u8074\u4e2d\uff1f\uff1f\uff1f\uff1f(\u7530\u820e\u52e2)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4158710959,"id_str":"4158710959","name":"\u7121\u6238\u677e\u3074\u3063\u3074\u306f\u30b2\u30b9\u3044\u3060\u3051","screen_name":"610matsu","location":null,"url":null,"description":"\u7121\u6238\u6708\u3068\u8a00\u3044\u307e\u3059\u3002\u672c\u57a2(OPZS)\u306f\u3053\u3061\u3089\u2192\u3010@610moon\u3011 \u6210\u4eba\u6e08\u8150\u3063\u3066\u307e\u3059\u3002\u4e00\u30ab\u30e9\/\u304a\u305d\u30ab\u30e9\/\u30d1\u30ab\u30ab\u30e9\/\u30ab\u30e9\u53d7\u3051\/\u5341\u30c8\u30c9 \u516d\u3064\u5b50\u304c\u4ef2\u826f\u304f\u5e78\u305b\u306a\u3089\u30ef\u30bf\u30b7\u3082\u5e78\u305b\u3002","protected":false,"verified":false,"followers_count":10,"friends_count":22,"listed_count":0,"favourites_count":163,"statuses_count":98,"created_at":"Sat Nov 07 15:59:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663025000765485056\/VEai-SnF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663025000765485056\/VEai-SnF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4158710959\/1446973918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033659"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883953823745,"id_str":"663727883953823745","text":"RT @Ochentaz: THE DEFINITION OF THE WORD INSTIGATOR IS THE BOY IN THE BLUE http:\/\/t.co\/OBjVRZoB0S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2269656390,"id_str":"2269656390","name":"Aaron Malveaux","screen_name":"Zenlion_","location":null,"url":null,"description":"Namaste Coolin' on the cool in the cool. ULL\u2764\ufe0f","protected":false,"verified":false,"followers_count":545,"friends_count":498,"listed_count":1,"favourites_count":1463,"statuses_count":10515,"created_at":"Tue Dec 31 01:21:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663182973420875776\/_RhX5q7d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663182973420875776\/_RhX5q7d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2269656390\/1417668842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jun 16 04:06:22 +0000 2015","id":610659655895756800,"id_str":"610659655895756800","text":"THE DEFINITION OF THE WORD INSTIGATOR IS THE BOY IN THE BLUE http:\/\/t.co\/OBjVRZoB0S","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":538666879,"id_str":"538666879","name":"\u3164","screen_name":"Ochentaz","location":null,"url":null,"description":"PROMOTION DM ME|CHECK MY FAVORITES CHECK MY ACCURACY","protected":false,"verified":false,"followers_count":82444,"friends_count":39358,"listed_count":106,"favourites_count":960,"statuses_count":20132,"created_at":"Wed Mar 28 02:48:36 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648259124690468864\/FQSYEm-Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648259124690468864\/FQSYEm-Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/538666879\/1446424447","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5080,"favorite_count":4034,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":610659607527059457,"id_str":"610659607527059457","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":610659607527059457,"id_str":"610659607527059457","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":610659619409559553,"id_str":"610659619409559553","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_sD2VAAEcDKv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_sD2VAAEcDKv.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":610659626862784512,"id_str":"610659626862784512","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_sfnUMAADo2G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_sfnUMAADo2G.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":610659641635176448,"id_str":"610659641635176448","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_tWpVAAAcLQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_tWpVAAAcLQB.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ochentaz","name":"\u3164","id":538666879,"id_str":"538666879","indices":[3,12]}],"symbols":[],"media":[{"id":610659607527059457,"id_str":"610659607527059457","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":610659655895756800,"source_status_id_str":"610659655895756800","source_user_id":538666879,"source_user_id_str":"538666879"}]},"extended_entities":{"media":[{"id":610659607527059457,"id_str":"610659607527059457","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_rXlUcAE6WGg.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":610659655895756800,"source_status_id_str":"610659655895756800","source_user_id":538666879,"source_user_id_str":"538666879"},{"id":610659619409559553,"id_str":"610659619409559553","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_sD2VAAEcDKv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_sD2VAAEcDKv.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":610659655895756800,"source_status_id_str":"610659655895756800","source_user_id":538666879,"source_user_id_str":"538666879"},{"id":610659626862784512,"id_str":"610659626862784512","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_sfnUMAADo2G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_sfnUMAADo2G.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":610659655895756800,"source_status_id_str":"610659655895756800","source_user_id":538666879,"source_user_id_str":"538666879"},{"id":610659641635176448,"id_str":"610659641635176448","indices":[75,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl_tWpVAAAcLQB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl_tWpVAAAcLQB.jpg","url":"http:\/\/t.co\/OBjVRZoB0S","display_url":"pic.twitter.com\/OBjVRZoB0S","expanded_url":"http:\/\/twitter.com\/Ochentaz\/status\/610659655895756800\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":369,"resize":"fit"},"large":{"w":552,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":610659655895756800,"source_status_id_str":"610659655895756800","source_user_id":538666879,"source_user_id_str":"538666879"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033659"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883953700864,"id_str":"663727883953700864","text":"RT @chanstar_92: 151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376726282,"id_str":"376726282","name":"\uc138\ud6c8\t\uce74\uc774","screen_name":"supraneekbs","location":null,"url":"http:\/\/www.facebook.com\/supranee.chankrajang","description":"KAI SEHUN BAEKHYUN CHANYEOL \u0e0b\u0e32\u0e23\u0e32\u0e07\u0e2e\u0e32\u0e08\u0e32 12 SNSD taeyeon Red velvet seulgi yeri wendy irene joy","protected":false,"verified":false,"followers_count":225,"friends_count":1761,"listed_count":1,"favourites_count":13581,"statuses_count":21517,"created_at":"Tue Sep 20 11:52:02 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490848185498083329\/ate01aCt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490848185498083329\/ate01aCt.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638512185694556160\/iJKmro2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638512185694556160\/iJKmro2K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376726282\/1441068118","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727697403580417,"id_str":"663727697403580417","text":"151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38606,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":2,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[8,19]},{"text":"EXO","indices":[30,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[25,36]},{"text":"EXO","indices":[47,51]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080033659"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945275392,"id_str":"663727883945275392","text":"RT @SMent_EXO: [#2015MAMA] VOTE for #EXO #\uc5d1\uc18c \u2193\n\u2192 https:\/\/t.co\/VmAEnWTxXa\n\u2192 https:\/\/t.co\/4jEkLZRzEM \n\u2192 https:\/\/t.co\/t0OkDtQnFl https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220560758,"id_str":"3220560758","name":"KjnStan","screen_name":"KJN_Un","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":73,"friends_count":195,"listed_count":1,"favourites_count":15540,"statuses_count":15041,"created_at":"Tue May 19 16:31:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661923061382279168\/vFnNnxuk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661923061382279168\/vFnNnxuk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220560758\/1432057825","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:31:58 +0000 2015","id":663302939092488192,"id_str":"663302939092488192","text":"[#2015MAMA] VOTE for #EXO #\uc5d1\uc18c \u2193\n\u2192 https:\/\/t.co\/VmAEnWTxXa\n\u2192 https:\/\/t.co\/4jEkLZRzEM \n\u2192 https:\/\/t.co\/t0OkDtQnFl https:\/\/t.co\/dNnRk3MBCu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":283102669,"id_str":"283102669","name":"SMent_EXO!","screen_name":"SMent_EXO","location":"GLOBAL","url":"http:\/\/ask.fm\/AskSMentEXO","description":"Your EXO source! Support 12 since 11\/04\/16 [@YifanLuhanTao] Email: contact.smentexo@gmail.com","protected":false,"verified":false,"followers_count":626951,"friends_count":88,"listed_count":2342,"favourites_count":45,"statuses_count":38450,"created_at":"Sat Apr 16 15:44:26 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000203","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005251125\/4f096b8d9050a7ef674294541e1a4cf4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005251125\/4f096b8d9050a7ef674294541e1a4cf4.jpeg","profile_background_tile":false,"profile_link_color":"808080","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FAFAFA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639796760680882176\/wiiT9wAF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639796760680882176\/wiiT9wAF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283102669\/1441371835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":365,"favorite_count":645,"entities":{"hashtags":[{"text":"2015MAMA","indices":[1,10]},{"text":"EXO","indices":[21,25]},{"text":"\uc5d1\uc18c","indices":[26,29]}],"urls":[{"url":"https:\/\/t.co\/VmAEnWTxXa","expanded_url":"http:\/\/haigou.unionpay.com\/mama_2015.aspx","display_url":"haigou.unionpay.com\/mama_2015.aspx","indices":[34,57]},{"url":"https:\/\/t.co\/4jEkLZRzEM","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[60,83]},{"url":"https:\/\/t.co\/t0OkDtQnFl","expanded_url":"http:\/\/www.iqiyi.com\/kszt\/2015mama.html","display_url":"iqiyi.com\/kszt\/2015mama.\u2026","indices":[88,111]}],"user_mentions":[],"symbols":[],"media":[{"id":663299477814427648,"id_str":"663299477814427648","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","url":"https:\/\/t.co\/dNnRk3MBCu","display_url":"pic.twitter.com\/dNnRk3MBCu","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663302939092488192\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663299477814427648,"id_str":"663299477814427648","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","url":"https:\/\/t.co\/dNnRk3MBCu","display_url":"pic.twitter.com\/dNnRk3MBCu","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663302939092488192\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/640x360\/c9UT6dNqEi8-23vB.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/pl\/g3squ80f2ZFSBeKq.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/640x360\/c9UT6dNqEi8-23vB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/320x180\/URQm7mXweTFJYL22.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/pl\/g3squ80f2ZFSBeKq.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[16,25]},{"text":"EXO","indices":[36,40]},{"text":"\uc5d1\uc18c","indices":[41,44]}],"urls":[{"url":"https:\/\/t.co\/VmAEnWTxXa","expanded_url":"http:\/\/haigou.unionpay.com\/mama_2015.aspx","display_url":"haigou.unionpay.com\/mama_2015.aspx","indices":[49,72]},{"url":"https:\/\/t.co\/4jEkLZRzEM","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[75,98]},{"url":"https:\/\/t.co\/t0OkDtQnFl","expanded_url":"http:\/\/www.iqiyi.com\/kszt\/2015mama.html","display_url":"iqiyi.com\/kszt\/2015mama.\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"SMent_EXO","name":"SMent_EXO!","id":283102669,"id_str":"283102669","indices":[3,13]}],"symbols":[],"media":[{"id":663299477814427648,"id_str":"663299477814427648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","url":"https:\/\/t.co\/dNnRk3MBCu","display_url":"pic.twitter.com\/dNnRk3MBCu","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663302939092488192\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663302939092488192,"source_status_id_str":"663302939092488192","source_user_id":283102669,"source_user_id_str":"283102669"}]},"extended_entities":{"media":[{"id":663299477814427648,"id_str":"663299477814427648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663299477814427648\/pu\/img\/V66ZBwVo-hROMnOr.jpg","url":"https:\/\/t.co\/dNnRk3MBCu","display_url":"pic.twitter.com\/dNnRk3MBCu","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663302939092488192\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663302939092488192,"source_status_id_str":"663302939092488192","source_user_id":283102669,"source_user_id_str":"283102669","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/640x360\/c9UT6dNqEi8-23vB.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/pl\/g3squ80f2ZFSBeKq.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/640x360\/c9UT6dNqEi8-23vB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/vid\/320x180\/URQm7mXweTFJYL22.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663299477814427648\/pu\/pl\/g3squ80f2ZFSBeKq.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949486080,"id_str":"663727883949486080","text":"@foreverEF5861 \u50d5\u3082\u898b\u3066\u306a\u3044\u3067\u3059(^_^;)\n\u3060\u304b\u3089\u8208\u5473\u304c\u2026\u2026\u306a\u3093\u3068\u3082\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727698389282818,"in_reply_to_status_id_str":"663727698389282818","in_reply_to_user_id":1427427073,"in_reply_to_user_id_str":"1427427073","in_reply_to_screen_name":"foreverEF5861","user":{"id":2179151358,"id_str":"2179151358","name":"\u3076\u3073\u306b\u3083\u3093@\u5317\u6d77\u9053\u2661","screen_name":"gyopribee","location":"\u65e5\u672c \u95a2\u6771\u5730\u65b9","url":"http:\/\/twpf.jp\/gyopribee","description":"\u304a\u3055\u308b\u3055\u3093\u3067\u3059(\uff61\u2022\u0300\u1d17-)\u2727 \/\u85e4\u5b50\u4e0d\u4e8c\u96c4\/\u5317\u6d77\u9053\/\u591c\u884c\u5217\u8eca\/\u30d5\u30a7\u30ea\u30fc\/\u5ba2\u8239\/\u30ed\u30fc\u30ab\u30eb\u7dda\/\u6c11\u5bbf\/#\u6e29\u6cc9\u8a18\u9332\/#\u3076\u3073\u65c5\/\u3055\u308b\/\u306c\u3044\u3050\u308b\u307f\/\u611a\u75f4\u30fb\u4e0b\u30cd\u30bf\u6ce8\u610f( \u2022 \u0300\u03c9\u2022\u0301 )\u2727\u591c\u884c\u306a\u3057\u3067\u306f\u751f\u304d\u3066\u3044\u3051\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":481,"friends_count":440,"listed_count":16,"favourites_count":4345,"statuses_count":42747,"created_at":"Thu Nov 07 02:00:26 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661094943167909888\/1uU6y9SO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661094943167909888\/1uU6y9SO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179151358\/1446201238","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"foreverEF5861","name":"\u4e57\u308a\u9244\u30d1\u30a6\u30a8\u30eb","id":1427427073,"id_str":"1427427073","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883982999552,"id_str":"663727883982999552","text":"@banji_s \ud5c9\u3131\uc800\ub450\uc694.. \uc0ac\uc2e4 \uc804\uc5d0 \ud314\ub85c\ud574\ub1af\u3134\uc744\ub550 \uc8fc\ub3d9\uc790 \uc0dd\uac01\ud588\ub294\ub370 \ub284\ucc0c\ub294 \ucc28\uce90\uc11c \uadf8\ub7f0\uac70 \ubabb\ud589\u314e(\ube14\ub77d\ub2f9\ud568","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727418578878465,"in_reply_to_status_id_str":"663727418578878465","in_reply_to_user_id":3198528937,"in_reply_to_user_id_str":"3198528937","in_reply_to_screen_name":"banji_s","user":{"id":3404764152,"id_str":"3404764152","name":"\ubbf8\uc2a4\ud130 \ub284\ucc0c\ub284\ucc0c\ub284\ucc0c","screen_name":"nebinium","location":"\ubaa8\ub9ac\ud0c0 \uc774\uc988\ubbf8|\uba54\ub9ac|\uc815\uc6b0\ube44|\ubc15\uc601\uc870|\ub2c8\uc624\ubca0|\uae30\ud558|\ubc15\uc194\ub9ac","url":null,"description":"\uc0ac\ud37c\/\uc77c\uc0c1\/\uc54c\ud2f0\/\ub514\uc624\ub9ac\ub974\/\ub9c8\ube44\ub178\uae30\/\uc564\uce90\uc553\uc774\u2661\/\uc790\ub355\uc564\ub355\/\ud0d0\ub77c\ub300\ud654o\/\uc6b0\ub7ed\ud2b8\n\/0416","protected":false,"verified":false,"followers_count":89,"friends_count":100,"listed_count":0,"favourites_count":1257,"statuses_count":6854,"created_at":"Mon Aug 31 15:03:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662950372466561024\/gvJm3i6m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662950372466561024\/gvJm3i6m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3404764152\/1446592196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"banji_s","name":"\u2661\uc724\ud6c4\ud61c\ub9ac\u2661 \ubc18\uc9c0\ub2d8","id":3198528937,"id_str":"3198528937","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080033666"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974668288,"id_str":"663727883974668288","text":"@sagenaradamuni @choutapelly @narendramodi @DrSYQuraishi @DrGPradhan Modi shd try to put Lutyens media mafia in place chuck out AJ n coterie","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663545619399749632,"in_reply_to_status_id_str":"663545619399749632","in_reply_to_user_id":3137574705,"in_reply_to_user_id_str":"3137574705","in_reply_to_screen_name":"sagenaradamuni","user":{"id":945399138,"id_str":"945399138","name":"OfficeOfKaliyuga","screen_name":"Kali1947","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":129,"friends_count":102,"listed_count":1,"favourites_count":1221,"statuses_count":6877,"created_at":"Tue Nov 13 08:28:58 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/945399138\/1414485264","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sagenaradamuni","name":"CONgress Mukt Bharat","id":3137574705,"id_str":"3137574705","indices":[0,15]},{"screen_name":"choutapelly","name":"Ramesh Choutapelly","id":105374325,"id_str":"105374325","indices":[16,28]},{"screen_name":"narendramodi","name":"Narendra Modi","id":18839785,"id_str":"18839785","indices":[29,42]},{"screen_name":"DrSYQuraishi","name":"Dr. S.Y. Quraishi","id":505694805,"id_str":"505694805","indices":[43,56]},{"screen_name":"DrGPradhan","name":"#GauravPradhan","id":74433034,"id_str":"74433034","indices":[57,68]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962163202,"id_str":"663727883962163202","text":"RT @psychologicaI: 90% of the time it's not the person you miss, it's the feelings and moments you had when you were with them.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177080015,"id_str":"177080015","name":"Curly Sue \u20ac","screen_name":"KyraTheSweetest","location":"Somewhere ","url":null,"description":"|#FAU19| @1kzay Here| SC: Kyralovesxo |","protected":false,"verified":false,"followers_count":1005,"friends_count":929,"listed_count":1,"favourites_count":1742,"statuses_count":30240,"created_at":"Wed Aug 11 05:33:44 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"484848","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447764826\/tumblr_lqs0fdZZjt1qa82f0o1_500.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447764826\/tumblr_lqs0fdZZjt1qa82f0o1_500.jpg","profile_background_tile":false,"profile_link_color":"181818","profile_sidebar_border_color":"303030","profile_sidebar_fill_color":"D8D8D8","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661566585136676864\/YcR1IosZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661566585136676864\/YcR1IosZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177080015\/1446067737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:00:02 +0000 2015","id":663355300611686400,"id_str":"663355300611686400","text":"90% of the time it's not the person you miss, it's the feelings and moments you had when you were with them.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573459961,"id_str":"573459961","name":"Psychology","screen_name":"psychologicaI","location":"Science of the mind","url":null,"description":"Human Psychology -- Social Behaviorism -- Human Development","protected":false,"verified":false,"followers_count":1199557,"friends_count":248033,"listed_count":2044,"favourites_count":158,"statuses_count":38765,"created_at":"Mon May 07 09:11:38 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000040696395\/d90ea6780fdeb44bdb89be6925822527.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000040696395\/d90ea6780fdeb44bdb89be6925822527.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000220724086\/ff055086b7100f063c63a9700e4626e9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000220724086\/ff055086b7100f063c63a9700e4626e9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573459961\/1375289837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":400,"favorite_count":786,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"psychologicaI","name":"Psychology","id":573459961,"id_str":"573459961","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883957854209,"id_str":"663727883957854209","text":"Skip wednesday, jump to thursday","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1926963343,"id_str":"1926963343","name":"SAM","screen_name":"hosmilloysamuel","location":null,"url":null,"description":"Compa\u00f1ero | Be sensitive with the people around you.","protected":false,"verified":false,"followers_count":235,"friends_count":227,"listed_count":0,"favourites_count":1948,"statuses_count":6062,"created_at":"Wed Oct 02 13:49:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163025023\/eWLXSn8r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163025023\/eWLXSn8r.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651681904358387712\/LgGJn-8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651681904358387712\/LgGJn-8q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1926963343\/1440425994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033660"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883966267392,"id_str":"663727883966267392","text":"\u660e\u65e5\u3067\u4e00\u9031\u9593\u306a\u3093\u3066\u4fe1\u3058\u3089\u308c\u306a\u3044\u3002\u6628\u65e5\u306e\u3053\u3068\u306e\u3088\u3046\u3060\u3068\u306f\u3053\u3046\u3044\u3046\u3068\u304d\u306b\u4f7f\u3046\u3093\u3060\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1160798498,"id_str":"1160798498","name":"\u3042\u308a\u3061\u3083\u3093","screen_name":"ariririchaaaaan","location":"\u795e\u5948\u5ddd","url":null,"description":"\u5287\u56e3\u30d7\u30ec\u30b9\u30c6\u30fc\u30b8","protected":false,"verified":false,"followers_count":136,"friends_count":193,"listed_count":2,"favourites_count":149,"statuses_count":1318,"created_at":"Fri Feb 08 17:47:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662911580863000576\/77DMMz_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662911580863000576\/77DMMz_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160798498\/1446859788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033662"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883979005952,"id_str":"663727883979005952","text":"RT @SRKUniverse: LIVE: People entertaining the gathered audience! #DilwaleTrailerDay https:\/\/t.co\/kkU4pvqITM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715478956,"id_str":"1715478956","name":"\u03bd\u03b1\u2113 \u263e \u2740","screen_name":"ValeriaSRKFan","location":"Earth","url":null,"description":"Welcome :) seriously though don't be a stranger now :) Love for @iamsrk is eternal \u221e \u266121.3.2015\u2661In love with his soul. #SRKian \u279d Croatiawaale \u2741","protected":false,"verified":false,"followers_count":1884,"friends_count":1255,"listed_count":5,"favourites_count":8092,"statuses_count":9158,"created_at":"Sat Aug 31 11:44:02 +0000 2013","utc_offset":3600,"time_zone":"Zagreb","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521251503789449216\/c7X-1mxa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521251503789449216\/c7X-1mxa.jpeg","profile_background_tile":false,"profile_link_color":"F660AB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663379265250058241\/ZRyGm-kj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663379265250058241\/ZRyGm-kj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715478956\/1445281871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:24 +0000 2015","id":663727091473518593,"id_str":"663727091473518593","text":"LIVE: People entertaining the gathered audience! #DilwaleTrailerDay https:\/\/t.co\/kkU4pvqITM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264034657,"id_str":"264034657","name":"SRK Universe","screen_name":"SRKUniverse","location":"facebook.com\/SRKUniverse","url":"http:\/\/SRKUniverse.com","description":"BIGGEST @iamsrk Fan Club providing latest news, info & pics. Connecting SRK fans everywhere with love. #Dilwale #Fan #Raees [Enquiries: universeofsrk@gmail.com]","protected":false,"verified":false,"followers_count":330621,"friends_count":110,"listed_count":208,"favourites_count":1819,"statuses_count":40363,"created_at":"Fri Mar 11 06:10:55 +0000 2011","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131F29","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435469560360075264\/BU27seMn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435469560360075264\/BU27seMn.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654422522872500224\/-Pj_sU1Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654422522872500224\/-Pj_sU1Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264034657\/1445589967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":30,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[49,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725424166375424,"id_str":"663725424166375424","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","url":"https:\/\/t.co\/kkU4pvqITM","display_url":"pic.twitter.com\/kkU4pvqITM","expanded_url":"http:\/\/twitter.com\/SRKUniverse\/status\/663727091473518593\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725424166375424,"id_str":"663725424166375424","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","url":"https:\/\/t.co\/kkU4pvqITM","display_url":"pic.twitter.com\/kkU4pvqITM","expanded_url":"http:\/\/twitter.com\/SRKUniverse\/status\/663727091473518593\/video\/1","type":"video","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"video_info":{"aspect_ratio":[2,3],"duration_millis":27555,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/426x640\/ECxCVV4UJsmGNAE0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/pl\/eUoeA1uc84jFLkOe.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/426x640\/ECxCVV4UJsmGNAE0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/pl\/eUoeA1uc84jFLkOe.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/212x320\/nwfaXpFflDiVAIE_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[66,84]}],"urls":[],"user_mentions":[{"screen_name":"SRKUniverse","name":"SRK Universe","id":264034657,"id_str":"264034657","indices":[3,15]}],"symbols":[],"media":[{"id":663725424166375424,"id_str":"663725424166375424","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","url":"https:\/\/t.co\/kkU4pvqITM","display_url":"pic.twitter.com\/kkU4pvqITM","expanded_url":"http:\/\/twitter.com\/SRKUniverse\/status\/663727091473518593\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727091473518593,"source_status_id_str":"663727091473518593","source_user_id":264034657,"source_user_id_str":"264034657"}]},"extended_entities":{"media":[{"id":663725424166375424,"id_str":"663725424166375424","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725424166375424\/pu\/img\/E1Fw0_Eu8wwr37qT.jpg","url":"https:\/\/t.co\/kkU4pvqITM","display_url":"pic.twitter.com\/kkU4pvqITM","expanded_url":"http:\/\/twitter.com\/SRKUniverse\/status\/663727091473518593\/video\/1","type":"video","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727091473518593,"source_status_id_str":"663727091473518593","source_user_id":264034657,"source_user_id_str":"264034657","video_info":{"aspect_ratio":[2,3],"duration_millis":27555,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/426x640\/ECxCVV4UJsmGNAE0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/pl\/eUoeA1uc84jFLkOe.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/426x640\/ECxCVV4UJsmGNAE0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/pl\/eUoeA1uc84jFLkOe.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725424166375424\/pu\/vid\/212x320\/nwfaXpFflDiVAIE_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033665"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883945312256,"id_str":"663727883945312256","text":"@NatsuIlovegot7 \u30d8\u30c3\u30c0\u30fc\u304c\u3059\u3054\u3044\u30b8\u30ef\u308b\ud83d\ude02(\u7a81\u7136)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726828226347009,"in_reply_to_status_id_str":"663726828226347009","in_reply_to_user_id":2755062307,"in_reply_to_user_id_str":"2755062307","in_reply_to_screen_name":"NatsuIlovegot7","user":{"id":458417521,"id_str":"458417521","name":"\u2601 \u3072 \u3052 \uc9f1 \u2601","screen_name":"_kxxnx_","location":null,"url":null,"description":"\u30b8\u30e5\u30cb\u30a2\u30da\u30f3 \uff19\uff12\u30e9\u30a4\u30f3\u2606\u30df","protected":false,"verified":false,"followers_count":846,"friends_count":285,"listed_count":28,"favourites_count":112,"statuses_count":96100,"created_at":"Sun Jan 08 14:57:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651255416559546368\/atx3t8ZT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651255416559546368\/atx3t8ZT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458417521\/1446051812","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NatsuIlovegot7","name":"\u306a\u3064\u306f\u30ac\u30c1\u75e9\u305b\u308b","id":2755062307,"id_str":"2755062307","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033657"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970551810,"id_str":"663727883970551810","text":"\u062a\u0688\u0647\u0646 \u0627\u0648\u0646 \u0627\u0633\u062a\u0631\u06cc \u06a9\u0627\u0646 \u067e\u0648\u0686\u0647\u0627 \u06a9\u0626 \u062a\u0648\u0646 \u0647\u062a\u06cc \u06a9\u0626\u06cc\u0646 \u062a\u0688\u0647\u0646 \u0628\u0631\u0647\u0645\u0679 \u062c\u06cc \u0627\u0633\u062a\u0631\u06cc \u0686\u06cc\u0648 \u0645\u0648\u0646\u06a9\u06cc \u0647\u062a\u06cc \u0631\u0627\u06a9\u0634 \u06a9\u0679\u06cc \u0622\u06cc\u0648 \u0622\u0647\u06cc \u0631\u0627\u06a9\u0634 \u062c\u0626\u06cc\u0646 \u06a9\u0679\u06cc \u0622\u06cc\u0648 \u0622\u0647\u06cc \u0627\u062c \u062a\u0627\u0626\u06cc\u0646 \n\u0628\u0642\u0627\u06cc\u0627","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886263102,"id_str":"2886263102","name":"Hanuman Shewa Mandli","screen_name":"Shri_Hanuman_G","location":"Essrchand 10-1-2015 ","url":null,"description":"Dharm Ki Jankari Pany K Leye\r\n#Follow\r\n@Shri_Hanuman_G\r\nFollow\r\n@Sada_Shive_S\r\nRabta#03451971918\r\nEssrChand.Chuhan Shri Hanuman G\r\nMandli","protected":false,"verified":false,"followers_count":565,"friends_count":39,"listed_count":0,"favourites_count":10,"statuses_count":7296,"created_at":"Sat Nov 01 12:35:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615581312171151361\/3nBEAgv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615581312171151361\/3nBEAgv5_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ur","timestamp_ms":"1447080033663"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962023936,"id_str":"663727883962023936","text":"@null 169856164978466665665532200152685591425456","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":384782460,"id_str":"384782460","name":"\u3069\u304f\u304a","screen_name":"dokuo258","location":null,"url":null,"description":"\u539f\u70b9\u56de\u5e30\u3000\u753b\u50cf\u306f @haru4241\u69d8\u304b\u3089","protected":false,"verified":false,"followers_count":270,"friends_count":475,"listed_count":12,"favourites_count":8332,"statuses_count":45741,"created_at":"Tue Oct 04 09:44:18 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495073227270410240\/eU5ku6cZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495073227270410240\/eU5ku6cZ.jpeg","profile_background_tile":false,"profile_link_color":"5C00B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597696395013791744\/6Qgxl9Up_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597696395013791744\/6Qgxl9Up_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384782460\/1445597789","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974606848,"id_str":"663727883974606848","text":"Seed of #Avraham https:\/\/t.co\/cAnoenrUfW #hot-seller! Get in on the fun! #books","source":"\u003ca href=\"http:\/\/thousandtweets.com\" rel=\"nofollow\"\u003eLeo Lives Well\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348885737,"id_str":"348885737","name":"Kindle Freebees etc.","screen_name":"LeoLivesWell","location":"Orlando, FL","url":"http:\/\/KindleFreeBees.com","description":"I love sharing what I think, what I see, what I find and what I think I know. I hope you enjoy... Angel On Board is my new favorite book!","protected":false,"verified":false,"followers_count":2344,"friends_count":2234,"listed_count":292,"favourites_count":6,"statuses_count":139903,"created_at":"Fri Aug 05 04:52:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2643332068\/7fb9d0437f8f459afb35bc33cf247a8c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2643332068\/7fb9d0437f8f459afb35bc33cf247a8c_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Avraham","indices":[8,16]},{"text":"hot","indices":[41,45]},{"text":"books","indices":[73,79]}],"urls":[{"url":"https:\/\/t.co\/cAnoenrUfW","expanded_url":"http:\/\/www.amazon.com\/gp\/product\/0984483861","display_url":"amazon.com\/gp\/product\/098\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974631424,"id_str":"663727883974631424","text":"@sa_chimo \u660e\u65e5\u9032\u30b2\u30fc\u306a\u3044\u3088\u306d\uff1f","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727783143583745,"in_reply_to_status_id_str":"663727783143583745","in_reply_to_user_id":294623690,"in_reply_to_user_id_str":"294623690","in_reply_to_screen_name":"sa_chimo","user":{"id":215210795,"id_str":"215210795","name":"\u767e\u3005\u702c\u30ce\u30a4","screen_name":"noi_neun","location":"\u5b66\u5712\u90fd\u5e02","url":null,"description":"\u4f55\u3092\u3059\u308b\u306b\u3082\u6642\u9593\u304c\u306a\u3044\u3002 \n\u3082\u3057\u304b\u3057\u3066:\u30d0\u30f3\u30d7\/fh\u00e1na\/\u9234\u6728\u3053\u306e\u307f\/\u30c7\u30ec\u30de\u30b9\/EXVSMB\/\u8266\u3053\u308c\/\u30a8\u30ed\u30b2\/\u30a2\u30cb\u30e1\/tkb","protected":false,"verified":false,"followers_count":339,"friends_count":314,"listed_count":21,"favourites_count":477,"statuses_count":61134,"created_at":"Sat Nov 13 08:49:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626122785069207552\/vFKjxFvc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626122785069207552\/vFKjxFvc.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628578755934433280\/Ax7V5sER_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628578755934433280\/Ax7V5sER_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215210795\/1438114594","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sa_chimo","name":"\u3055\u3063\u3061\u3082","id":294623690,"id_str":"294623690","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883974610944,"id_str":"663727883974610944","text":"RT @darkendefend: #\u0e41\u0e1f\u0e19\u0e01\u0e39\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e41\u0e25\u0e30\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e35\u0e01\u0e19\u0e32\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125278352,"id_str":"125278352","name":"\u0e19\u0e2a.","screen_name":"aynippg","location":"Bangkok","url":null,"description":"This is me | catlover | bookworm | findmyway | AHS23 MT46 CU57 | ....","protected":false,"verified":false,"followers_count":134,"friends_count":272,"listed_count":1,"favourites_count":1049,"statuses_count":11945,"created_at":"Mon Mar 22 08:51:08 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643417293406367746\/YvpdhPfS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643417293406367746\/YvpdhPfS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125278352\/1432822781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:12 +0000 2015","id":663725025208348672,"id_str":"663725025208348672","text":"#\u0e41\u0e1f\u0e19\u0e01\u0e39\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e41\u0e25\u0e30\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e35\u0e01\u0e19\u0e32\u0e19","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233217936,"id_str":"233217936","name":"dakento","screen_name":"darkendefend","location":"\u30d0\u30f3\u30b3\u30af \u300e \uff14\uff12 \u300f","url":"http:\/\/medium.com\/@darkendefend","description":"The things you say about others, also say a lot about you. Love is a journey, not a destination.\n\n#WhySoSerious","protected":false,"verified":false,"followers_count":93985,"friends_count":39,"listed_count":92,"favourites_count":121,"statuses_count":4554,"created_at":"Sun Jan 02 16:56:14 +0000 2011","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000077284398\/b0e88eb704a3d855d3ef5afa6fbe7a22.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000077284398\/b0e88eb704a3d855d3ef5afa6fbe7a22.jpeg","profile_background_tile":false,"profile_link_color":"878282","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656139021937061888\/sMuHRZoL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656139021937061888\/sMuHRZoL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233217936\/1446900642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":174,"favorite_count":25,"entities":{"hashtags":[{"text":"\u0e41\u0e1f\u0e19\u0e01\u0e39\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e41\u0e25\u0e30\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e35\u0e01\u0e19\u0e32\u0e19","indices":[0,36]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e41\u0e1f\u0e19\u0e01\u0e39\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e41\u0e25\u0e30\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e04\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e35\u0e01\u0e19\u0e32\u0e19","indices":[18,54]}],"urls":[],"user_mentions":[{"screen_name":"darkendefend","name":"dakento","id":233217936,"id_str":"233217936","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080033664"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883958026241,"id_str":"663727883958026241","text":"RT @M_almokaa: \u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u062c\u0644\u062f ..\nhttps:\/\/t.co\/DE4sFEnXj2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251965994,"id_str":"1251965994","name":"\u0632\u064a\u0627\u062f \u0628\u0646 \u0633\u0639\u0648\u062f","screen_name":"ZIY_19","location":null,"url":null,"description":"\u0644\u0627 \u062d\u064f\u0628 \u0628\u0639\u062f \u062d\u064f\u0628\u0643 \u064a\u0627\u0647\u0644\u0627\u0644 .","protected":false,"verified":false,"followers_count":1371,"friends_count":901,"listed_count":1,"favourites_count":1255,"statuses_count":30653,"created_at":"Fri Mar 08 15:08:18 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653348579961139200\/SzKh1Eee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653348579961139200\/SzKh1Eee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251965994\/1444514288","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727776294412288,"id_str":"663727776294412288","text":"\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u062c\u0644\u062f ..\nhttps:\/\/t.co\/DE4sFEnXj2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":512380208,"id_str":"512380208","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0645\u0648\u0643\u0627\u0621","screen_name":"M_almokaa","location":"Hail","url":null,"description":"\u0644\u0627 \u062a\u062b\u0642 \u0641\u064a \u0627\u062d\u062f .","protected":false,"verified":false,"followers_count":30095,"friends_count":541,"listed_count":23,"favourites_count":167,"statuses_count":11656,"created_at":"Fri Mar 02 19:43:01 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663466800013774848\/AvD7pJm9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663466800013774848\/AvD7pJm9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/512380208\/1446943685","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727509817663488,"quoted_status_id_str":"663727509817663488","quoted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727509817663488,"id_str":"663727509817663488","text":"@M_almokaa \u0627\u0644\u062d\u064a\u0646 \u0627\u0646\u0627 \u0627\u0630\u0627 \u063a\u0645\u0636\u062a \u0639\u064a\u0648\u0646\u064a \u0645 \u0627\u0634\u0648\u0641 \u0634\u064a \ud83d\ude2d\ud83d\udc94. \n\n\u0641\u064a\u0647 \u0627\u062d\u062f \u0632\u064a\u064a \u0648\u0644\u0627 \u0627\u0631\u0648\u062d \u0623\u062a\u0639\u0627\u0644\u062c \ud83d\ude14\ud83d\udc94.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727112340287488,"in_reply_to_status_id_str":"663727112340287488","in_reply_to_user_id":512380208,"in_reply_to_user_id_str":"512380208","in_reply_to_screen_name":"M_almokaa","user":{"id":1251965994,"id_str":"1251965994","name":"\u0632\u064a\u0627\u062f \u0628\u0646 \u0633\u0639\u0648\u062f","screen_name":"ZIY_19","location":null,"url":null,"description":"\u0644\u0627 \u062d\u064f\u0628 \u0628\u0639\u062f \u062d\u064f\u0628\u0643 \u064a\u0627\u0647\u0644\u0627\u0644 .","protected":false,"verified":false,"followers_count":1371,"friends_count":901,"listed_count":1,"favourites_count":1255,"statuses_count":30652,"created_at":"Fri Mar 08 15:08:18 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653348579961139200\/SzKh1Eee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653348579961139200\/SzKh1Eee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251965994\/1444514288","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"M_almokaa","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0645\u0648\u0643\u0627\u0621","id":512380208,"id_str":"512380208","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DE4sFEnXj2","expanded_url":"https:\/\/twitter.com\/ziy_19\/status\/663727509817663488","display_url":"twitter.com\/ziy_19\/status\/\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DE4sFEnXj2","expanded_url":"https:\/\/twitter.com\/ziy_19\/status\/663727509817663488","display_url":"twitter.com\/ziy_19\/status\/\u2026","indices":[33,56]}],"user_mentions":[{"screen_name":"M_almokaa","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0645\u0648\u0643\u0627\u0621","id":512380208,"id_str":"512380208","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080033660"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883978805249,"id_str":"663727883978805249","text":"RT @ohrei23_miss3: \u4eca\u65e5\u306f\u6ecb\u8cc0\u770c\u4eba\u4f1a\u3001\u6de1\u6d77\u306e\u4eba\u5927\u4ea4\u6d41\u4f1a\u306b\u53c2\u52a0\u3055\u305b\u3066\u9802\u304d\u307e\u3057\u305f\uff01\u3053\u306e\u4ea4\u6d41\u4f1a\u306f\u3001\u3044\u3064\u3082\u304a\u4e16\u8a71\u306b\u306a\u3063\u3066\u3044\u308b\u65b9\u3005\u306b\u304a\u4f1a\u3044\u51fa\u6765\u308b\u6a5f\u4f1a\u3067\u3001\u770c\u77e5\u4e8b\u306e\u4e09\u65e5\u6708\u3055\u3093\u3068\u3082\u5199\u771f\u3092\u64ae\u3063\u3066\u9802\u3044\u305f\u308a\u3001\u6ecb\u8cc0\u306e\u7d20\u6575\u306a\u304a\u6d0b\u670d\u3092\u7740\u305b\u3066\u9802\u3044\u305f\u308a\u3001\u3001\u3001\u6545\u90f7\u611b\u3092\u6539\u3081\u3066\u611f\u3058\u307e\u3057\u305f\u2669 htt\u2026","source":"\u003ca href=\"http:\/\/www.tweetiumapp.com\" rel=\"nofollow\"\u003eTweetium for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":6089602,"id_str":"6089602","name":"Takashi Kawasaki","screen_name":"espresso3389","location":"\u6771\u4eac\u90fd","url":"http:\/\/espresso3389.hatenablog.com\/","description":"\u30af\u30df\u30ca\u30b9\u682a\u5f0f\u4f1a\u793e CEO \u5ddd\u5d0e\u9ad8\u5fd7","protected":false,"verified":false,"followers_count":295,"friends_count":255,"listed_count":34,"favourites_count":38,"statuses_count":20977,"created_at":"Wed May 16 19:02:17 +0000 2007","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2605198592\/23nkgey4jpkgctvie5t7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2605198592\/23nkgey4jpkgctvie5t7_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:52 +0000 2015","id":663718401483800576,"id_str":"663718401483800576","text":"\u4eca\u65e5\u306f\u6ecb\u8cc0\u770c\u4eba\u4f1a\u3001\u6de1\u6d77\u306e\u4eba\u5927\u4ea4\u6d41\u4f1a\u306b\u53c2\u52a0\u3055\u305b\u3066\u9802\u304d\u307e\u3057\u305f\uff01\u3053\u306e\u4ea4\u6d41\u4f1a\u306f\u3001\u3044\u3064\u3082\u304a\u4e16\u8a71\u306b\u306a\u3063\u3066\u3044\u308b\u65b9\u3005\u306b\u304a\u4f1a\u3044\u51fa\u6765\u308b\u6a5f\u4f1a\u3067\u3001\u770c\u77e5\u4e8b\u306e\u4e09\u65e5\u6708\u3055\u3093\u3068\u3082\u5199\u771f\u3092\u64ae\u3063\u3066\u9802\u3044\u305f\u308a\u3001\u6ecb\u8cc0\u306e\u7d20\u6575\u306a\u304a\u6d0b\u670d\u3092\u7740\u305b\u3066\u9802\u3044\u305f\u308a\u3001\u3001\u3001\u6545\u90f7\u611b\u3092\u6539\u3081\u3066\u611f\u3058\u307e\u3057\u305f\u2669 https:\/\/t.co\/l9KbtbyzaF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3283125823,"id_str":"3283125823","name":"\u7530\u30b1\u539f\u6075\u7f8e","screen_name":"ohrei23_miss3","location":null,"url":"http:\/\/s.ameblo.jp\/xxemixx777\/","description":"2015\u5e74\u5ea6\u6e96\u30df\u30b9\u65e5\u5927\u6587\u7406 \uff0a avex girls street audition fainalist \uff0a \u30e9\u30b8\u30aaMC \uff0a \u3075\u308a\u30fc\u3089\u3093\u3059 #\u6ecb\u8cc0 \u306e\u30a4\u30a4\u30c8\u30b3 #\u3057\u304c\u30c8\u30b3 \u767a\u4fe1\u4e2d\u25ce \u25b7\u25b6\ufe0e\u5fdc\u63f4\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\uff01 http:\/\/m.ielove.co.jp\/column\/beauty\/00292\/","protected":false,"verified":false,"followers_count":6658,"friends_count":5709,"listed_count":42,"favourites_count":1100,"statuses_count":9520,"created_at":"Sat Jul 18 06:16:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630602043435016192\/xDixwRDw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630602043435016192\/xDixwRDw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3283125823\/1446619071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":62,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717857683881985,"id_str":"663717857683881985","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717857683881985,"id_str":"663717857683881985","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663717856031346688,"id_str":"663717856031346688","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_35_VEAADQZr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_35_VEAADQZr.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663717861060313088,"id_str":"663717861060313088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4MuVAAACYtU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4MuVAAACYtU.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ohrei23_miss3","name":"\u7530\u30b1\u539f\u6075\u7f8e","id":3283125823,"id_str":"3283125823","indices":[3,17]}],"symbols":[],"media":[{"id":663717857683881985,"id_str":"663717857683881985","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663718401483800576,"source_status_id_str":"663718401483800576","source_user_id":3283125823,"source_user_id_str":"3283125823"}]},"extended_entities":{"media":[{"id":663717857683881985,"id_str":"663717857683881985","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4AJUwAErHVS.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663718401483800576,"source_status_id_str":"663718401483800576","source_user_id":3283125823,"source_user_id_str":"3283125823"},{"id":663717856031346688,"id_str":"663717856031346688","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_35_VEAADQZr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_35_VEAADQZr.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663718401483800576,"source_status_id_str":"663718401483800576","source_user_id":3283125823,"source_user_id_str":"3283125823"},{"id":663717861060313088,"id_str":"663717861060313088","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_4MuVAAACYtU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_4MuVAAACYtU.jpg","url":"https:\/\/t.co\/l9KbtbyzaF","display_url":"pic.twitter.com\/l9KbtbyzaF","expanded_url":"http:\/\/twitter.com\/ohrei23_miss3\/status\/663718401483800576\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663718401483800576,"source_status_id_str":"663718401483800576","source_user_id":3283125823,"source_user_id_str":"3283125823"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033665"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883949592576,"id_str":"663727883949592576","text":"#xxx,#movie,#teen,#video,#sexy,#pussy: Hardcore Scene With Skinny Ebony Beauty And 10 Inch Long BBC https:\/\/t.co\/eE4651LEhs","source":"\u003ca href=\"http:\/\/winthecustomer.com\/\" rel=\"nofollow\"\u003eWin the Customer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835978479,"id_str":"2835978479","name":"swapmydate","screen_name":"swapmydate","location":null,"url":"http:\/\/swapmydate.com","description":null,"protected":false,"verified":false,"followers_count":2453,"friends_count":1867,"listed_count":32,"favourites_count":0,"statuses_count":123282,"created_at":"Sat Oct 18 10:08:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562956274833178624\/06G6nmsx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562956274833178624\/06G6nmsx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835978479\/1423054130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"xxx","indices":[0,4]},{"text":"movie","indices":[5,11]},{"text":"teen","indices":[12,17]},{"text":"video","indices":[18,24]},{"text":"sexy","indices":[25,30]},{"text":"pussy","indices":[31,37]}],"urls":[{"url":"https:\/\/t.co\/eE4651LEhs","expanded_url":"http:\/\/tinyurl.com\/khrvsn8","display_url":"tinyurl.com\/khrvsn8","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033658"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962089472,"id_str":"663727883962089472","text":"\ud83d\udcf7 luhwn: 151014 | the witness ost presscon https:\/\/t.co\/MdHOhLxYeW","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2388325454,"id_str":"2388325454","name":"Hanbie Xingmi","screen_name":"HanbieExo","location":"B\u1eafc Giang, Vi\u1ec7t Nam","url":"https:\/\/www.facebook.com\/ZhangYixingQuotes","description":"Like EXO\nLove HanLay","protected":false,"verified":false,"followers_count":241,"friends_count":159,"listed_count":0,"favourites_count":199,"statuses_count":2110,"created_at":"Fri Mar 14 03:32:51 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590712106867032064\/YOj2Lvhu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590712106867032064\/YOj2Lvhu.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617922979649851392\/O29aeXVN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617922979649851392\/O29aeXVN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2388325454\/1429671631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MdHOhLxYeW","expanded_url":"http:\/\/tmblr.co\/ZDnK6o1xlj-2D","display_url":"tmblr.co\/ZDnK6o1xlj-2D","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883953786880,"id_str":"663727883953786880","text":"That moment you see @willfriedle tweet about how sad he is that #Firefly ended, and know you're the reason why he tweeted it. #RICC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348314336,"id_str":"348314336","name":"Shannon","screen_name":"FiveByFive_5x5","location":"The 'Verse","url":"https:\/\/www.facebook.com\/NoJossNoBuffy","description":"Whedonverse & sci-fi\/fantasy enthusiast. Katrina Law & Eliza Dushku superfan. Texan. Fangirl.","protected":false,"verified":false,"followers_count":774,"friends_count":721,"listed_count":41,"favourites_count":7133,"statuses_count":63356,"created_at":"Thu Aug 04 06:45:58 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0D0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446495605179678721\/Ft7Va5cZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446495605179678721\/Ft7Va5cZ.jpeg","profile_background_tile":true,"profile_link_color":"8C0404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F27777","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642642313395703808\/J1I7ZAzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642642313395703808\/J1I7ZAzZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348314336\/1442052869","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Firefly","indices":[64,72]},{"text":"RICC","indices":[126,131]}],"urls":[],"user_mentions":[{"screen_name":"willfriedle","name":"Will Friedle","id":2820491389,"id_str":"2820491389","indices":[20,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033659"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883982995456,"id_str":"663727883982995456","text":"@Shh_a175 \u5341\u5206\u77e5\u3063\u3066\u308b\u3000\u3042\u30fc\u3046\u3089\u3084\u307e\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727641678082049,"in_reply_to_status_id_str":"663727641678082049","in_reply_to_user_id":2252010266,"in_reply_to_user_id_str":"2252010266","in_reply_to_screen_name":"Shh_a175","user":{"id":3259791336,"id_str":"3259791336","name":"\u3046\u3048\u306e\u3084\u307e\u3053\u3068\u307f","screen_name":"Ko_hiroomi312","location":"Japan","url":null,"description":"takefu2\uffe4\u274122h\u2741\uffe4like\u21aa\u4e09\u4ee3\u76eeJ Soul Brothers\u2765\u2765Hiroomi Tosaka\uffe4DOBERMAN INFINITY\u2765\u2765KAZUKI\uffe4\u304a\u6d12\u843d\uffe4used fastion\uffe4don't like\u21a9track and field","protected":false,"verified":false,"followers_count":48,"friends_count":56,"listed_count":0,"favourites_count":210,"statuses_count":196,"created_at":"Mon Jun 29 11:29:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663344776016564224\/BmejXJSu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663344776016564224\/BmejXJSu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3259791336\/1447076374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Shh_a175","name":"\u4f50\u3005\u6728 \u306f\u308b\u83dc","id":2252010266,"id_str":"2252010266","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033666"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883970449408,"id_str":"663727883970449408","text":"2015\/11\/09 (Mon) 23:40:34 https:\/\/t.co\/nhu2MP04RY","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003ehellopro0004\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2690900749,"id_str":"2690900749","name":"helloprohealing_en","screen_name":"hellopro_int","location":null,"url":"http:\/\/helloprohealing.blog.jp\/","description":"Morning Musume 14,Berryz Koubou,\u2103-ute,Smileage,Juice=Juice,Buono!,LoVendo\u042f,Bitter\uff06Sweet,Hello! Pro Kenshusei,Upupgirls,The Possible,Kikkawa Yu","protected":false,"verified":false,"followers_count":4,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":19276,"created_at":"Tue Jul 29 19:29:32 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631396434676285440\/VzQzRKM7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631396434676285440\/VzQzRKM7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2690900749\/1411054438","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727882607267840,"id_str":"663727882607267840","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_h5UEAA2P9M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_h5UEAA2P9M.jpg","url":"https:\/\/t.co\/nhu2MP04RY","display_url":"pic.twitter.com\/nhu2MP04RY","expanded_url":"http:\/\/twitter.com\/hellopro_int\/status\/663727883970449408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727882607267840,"id_str":"663727882607267840","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_h5UEAA2P9M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_h5UEAA2P9M.jpg","url":"https:\/\/t.co\/nhu2MP04RY","display_url":"pic.twitter.com\/nhu2MP04RY","expanded_url":"http:\/\/twitter.com\/hellopro_int\/status\/663727883970449408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080033663"} +{"delete":{"status":{"id":663723689658052608,"id_str":"663723689658052608","user_id":3018201765,"user_id_str":"3018201765"},"timestamp_ms":"1447080033911"}} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883983175680,"id_str":"663727883983175680","text":"Quelles sont les c\u00e9l\u00e9brit\u00e9s qui f\u00eatent leur anniversaire le m\u00eame jour que toi? \u2014 George R. R. Martin aka satan https:\/\/t.co\/M7QNw1Xmxp","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2847415805,"id_str":"2847415805","name":"\u2702cochise","screen_name":"LineLudenberg","location":"Batman- Stark -Dara_blckwht \u2665","url":"http:\/\/line-ludenberg.tumblr.com\/","description":"You wouldn't be my family, you'd be my lady. @lilfuckinPanda loverboy \u2665 Shipping trash. Des fois je suis dr\u00f4le. social anxiety. La bise FR\/ENG \u264d","protected":false,"verified":false,"followers_count":98,"friends_count":327,"listed_count":3,"favourites_count":1057,"statuses_count":3958,"created_at":"Mon Oct 27 23:02:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623420261216440320\/QntzoItW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623420261216440320\/QntzoItW.png","profile_background_tile":true,"profile_link_color":"CCAACC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663407242083987456\/lQOua7Yu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663407242083987456\/lQOua7Yu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2847415805\/1446051052","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M7QNw1Xmxp","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO6P62DTRERWS73ODBVSDP4KFPN2ZEY5KMYNGBFMWQBRL6ZP4EYBJJVTYXQVYYU5Y25CPT22BFDJUUBBZFKJA5YHAM7EA6RDOKHGTCZPBBTFT2VYKEQ2T7GGNGN2J2LAMXDC7HFHNLE4Z7FU32TWWKW2MYHSIUYFB5HK5NNIJ4H3TI43KFDU4EKQ====","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080033666"} +{"delete":{"status":{"id":663724079728476164,"id_str":"663724079728476164","user_id":3087711565,"user_id_str":"3087711565"},"timestamp_ms":"1447080033958"}} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883962228736,"id_str":"663727883962228736","text":"Outer Taillight Taillamp Brake Light Driver Side Left LH for 05-06 Odyssey https:\/\/t.co\/r7je702e5P https:\/\/t.co\/swJdIIts7E","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4043045656,"id_str":"4043045656","name":"Nigel Bulmer","screen_name":"bulmer_nigel","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":40,"listed_count":8,"favourites_count":0,"statuses_count":5461,"created_at":"Mon Oct 26 01:51:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658461361135972353\/YnP6Wbtr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658461361135972353\/YnP6Wbtr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r7je702e5P","expanded_url":"http:\/\/dental-usa.info\/dnt\/ls\/?query=272038979375","display_url":"dental-usa.info\/dnt\/ls\/?query=\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663727883861495808,"id_str":"663727883861495808","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_mkWEAAJSzz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_mkWEAAJSzz.jpg","url":"https:\/\/t.co\/swJdIIts7E","display_url":"pic.twitter.com\/swJdIIts7E","expanded_url":"http:\/\/twitter.com\/bulmer_nigel\/status\/663727883962228736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":530,"h":502,"resize":"fit"},"large":{"w":530,"h":502,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727883861495808,"id_str":"663727883861495808","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_mkWEAAJSzz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_mkWEAAJSzz.jpg","url":"https:\/\/t.co\/swJdIIts7E","display_url":"pic.twitter.com\/swJdIIts7E","expanded_url":"http:\/\/twitter.com\/bulmer_nigel\/status\/663727883962228736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":530,"h":502,"resize":"fit"},"large":{"w":530,"h":502,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080033661"} +{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883966263296,"id_str":"663727883966263296","text":"\u30d1\u30bf\u30fc\u30f3\u30d6\u30ec\u30a4\u30af https:\/\/t.co\/klUj3WZO7q https:\/\/t.co\/CS31V3IPT2","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2914267718,"id_str":"2914267718","name":"lfx","screen_name":"lifewithfx","location":"Japan","url":"http:\/\/lifewithfx.jp","description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Sun Nov 30 02:33:05 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/klUj3WZO7q","expanded_url":"http:\/\/lifewithfx.jp\/?p=7927","display_url":"lifewithfx.jp\/?p=7927","indices":[9,32]}],"user_mentions":[],"symbols":[],"media":[{"id":663727882913472517,"id_str":"663727882913472517","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_jCUYAUZNqD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_jCUYAUZNqD.png","url":"https:\/\/t.co\/CS31V3IPT2","display_url":"pic.twitter.com\/CS31V3IPT2","expanded_url":"http:\/\/twitter.com\/lifewithfx\/status\/663727883966263296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":278,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":400,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727882913472517,"id_str":"663727882913472517","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_jCUYAUZNqD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_jCUYAUZNqD.png","url":"https:\/\/t.co\/CS31V3IPT2","display_url":"pic.twitter.com\/CS31V3IPT2","expanded_url":"http:\/\/twitter.com\/lifewithfx\/status\/663727883966263296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":278,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":400,"h":278,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080033662"} +{"delete":{"status":{"id":663666072487403520,"id_str":"663666072487403520","user_id":416566049,"user_id_str":"416566049"},"timestamp_ms":"1447080034100"}} +{"delete":{"status":{"id":642541137446592512,"id_str":"642541137446592512","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080034152"}} +{"delete":{"status":{"id":663401315461107712,"id_str":"663401315461107712","user_id":115229345,"user_id_str":"115229345"},"timestamp_ms":"1447080034223"}} +{"delete":{"status":{"id":663727850399375360,"id_str":"663727850399375360","user_id":4069046068,"user_id_str":"4069046068"},"timestamp_ms":"1447080034244"}} +{"delete":{"status":{"id":663727833643110400,"id_str":"663727833643110400","user_id":1705442719,"user_id_str":"1705442719"},"timestamp_ms":"1447080034471"}} +{"delete":{"status":{"id":657934967150776321,"id_str":"657934967150776321","user_id":3728057359,"user_id_str":"3728057359"},"timestamp_ms":"1447080034458"}} +{"delete":{"status":{"id":661842439452291072,"id_str":"661842439452291072","user_id":3188528054,"user_id_str":"3188528054"},"timestamp_ms":"1447080034577"}} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143904768,"id_str":"663727888143904768","text":"mais um beb\u00ea na familia deus","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195935787,"id_str":"195935787","name":"bruno ","screen_name":"brnozord","location":null,"url":null,"description":"Make the money, don't let the money make you.\n16 - ES","protected":false,"verified":false,"followers_count":245,"friends_count":469,"listed_count":0,"favourites_count":585,"statuses_count":35997,"created_at":"Mon Sep 27 23:02:49 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465147423392665600\/6PqDyZ6K.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465147423392665600\/6PqDyZ6K.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586249431714033665\/98LwRatH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586249431714033665\/98LwRatH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195935787\/1442790261","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888169107456,"id_str":"663727888169107456","text":"RT @LLDJR310: #latenightheels #heels #legs #stockings #gotloubs #louboutinworld #crossedlegs #ghfav #redbottomheels https:\/\/t.co\/Wc4LkEWfGL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3324692357,"id_str":"3324692357","name":"Whitehoseman","screen_name":"JWhitehoseman","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":80,"friends_count":411,"listed_count":26,"favourites_count":781,"statuses_count":19935,"created_at":"Sun Jun 14 11:41:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:33:04 +0000 2015","id":663695799306465280,"id_str":"663695799306465280","text":"#latenightheels #heels #legs #stockings #gotloubs #louboutinworld #crossedlegs #ghfav #redbottomheels https:\/\/t.co\/Wc4LkEWfGL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2202653881,"id_str":"2202653881","name":"Got Heels?","screen_name":"LLDJR310","location":"STATES & UK","url":"http:\/\/us.christianlouboutin.com\/us_en\/shop-online-3\/women-1\/women\/pumps.html","description":"#heels #highheels #stilettos #pumps & the beautiful ladies that wear them. \u2728 #gotheels #ghfav #gotloubs #gotnudeheels #gotheel #latenightheels #partyheels -GH-","protected":false,"verified":false,"followers_count":3951,"friends_count":394,"listed_count":73,"favourites_count":30985,"statuses_count":25921,"created_at":"Tue Nov 19 07:18:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458876006124638208\/RXk5sQj2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458876006124638208\/RXk5sQj2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2202653881\/1437302587","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[{"text":"latenightheels","indices":[0,15]},{"text":"heels","indices":[16,22]},{"text":"legs","indices":[23,28]},{"text":"stockings","indices":[29,39]},{"text":"gotloubs","indices":[40,49]},{"text":"louboutinworld","indices":[50,65]},{"text":"crossedlegs","indices":[66,78]},{"text":"ghfav","indices":[79,85]},{"text":"redbottomheels","indices":[86,101]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663695795804180481,"id_str":"663695795804180481","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":274,"resize":"fit"},"large":{"w":480,"h":274,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695795804180481,"id_str":"663695795804180481","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":274,"resize":"fit"},"large":{"w":480,"h":274,"resize":"fit"}}},{"id":663695795984601088,"id_str":"663695795984601088","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz16VEAApX15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz16VEAApX15.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":600,"resize":"fit"},"small":{"w":280,"h":600,"resize":"fit"},"medium":{"w":280,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"latenightheels","indices":[14,29]},{"text":"heels","indices":[30,36]},{"text":"legs","indices":[37,42]},{"text":"stockings","indices":[43,53]},{"text":"gotloubs","indices":[54,63]},{"text":"louboutinworld","indices":[64,79]},{"text":"crossedlegs","indices":[80,92]},{"text":"ghfav","indices":[93,99]},{"text":"redbottomheels","indices":[100,115]}],"urls":[],"user_mentions":[{"screen_name":"LLDJR310","name":"Got Heels?","id":2202653881,"id_str":"2202653881","indices":[3,12]}],"symbols":[],"media":[{"id":663695795804180481,"id_str":"663695795804180481","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":274,"resize":"fit"},"large":{"w":480,"h":274,"resize":"fit"}},"source_status_id":663695799306465280,"source_status_id_str":"663695799306465280","source_user_id":2202653881,"source_user_id_str":"2202653881"}]},"extended_entities":{"media":[{"id":663695795804180481,"id_str":"663695795804180481","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz1PUEAEKvzl.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":274,"resize":"fit"},"large":{"w":480,"h":274,"resize":"fit"}},"source_status_id":663695799306465280,"source_status_id_str":"663695799306465280","source_user_id":2202653881,"source_user_id_str":"2202653881"},{"id":663695795984601088,"id_str":"663695795984601088","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrz16VEAApX15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrz16VEAApX15.jpg","url":"https:\/\/t.co\/Wc4LkEWfGL","display_url":"pic.twitter.com\/Wc4LkEWfGL","expanded_url":"http:\/\/twitter.com\/LLDJR310\/status\/663695799306465280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":280,"h":600,"resize":"fit"},"small":{"w":280,"h":600,"resize":"fit"},"medium":{"w":280,"h":600,"resize":"fit"}},"source_status_id":663695799306465280,"source_status_id_str":"663695799306465280","source_user_id":2202653881,"source_user_id_str":"2202653881"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888156504064,"id_str":"663727888156504064","text":"\u0648 \u0645\u0627 \u062a\u0648\u0641\u064a\u0642\u064a \u0625\u0644\u0627 \u0628\u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u062a\u0648\u0643\u0644\u062a \u0648 \u0625\u0644\u064a\u0647 \u0623\u0646\u064a\u0628\ud83d\udc9b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358366894,"id_str":"358366894","name":"Aisha\u2728","screen_name":"3waish21","location":"United Arab Emirates","url":null,"description":"\u200f\u0648\u064e \u0627\u0644\u0644\u0651\u064e\u0647\u064f \u062e\u064e\u064a\u0652\u0631\u064c \u0648\u064e \u0623\u064e\u0628\u0652\u0642\u064e\u0649\u2764","protected":false,"verified":false,"followers_count":363,"friends_count":311,"listed_count":0,"favourites_count":315,"statuses_count":8978,"created_at":"Fri Aug 19 20:21:00 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661132449393471488\/Ehda41Yd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661132449393471488\/Ehda41Yd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358366894\/1446495122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080034661"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888148090880,"id_str":"663727888148090880","text":"@marifardin @fuckmari @igortomia SAJSAKSJAKSAJKSAJSAKJSAKSAJKSAJKSAJKSAJASK genial","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727568617668609,"in_reply_to_status_id_str":"663727568617668609","in_reply_to_user_id":260363649,"in_reply_to_user_id_str":"260363649","in_reply_to_screen_name":"marifardin","user":{"id":405968848,"id_str":"405968848","name":"SADBOY \u6ce2 \u2639","screen_name":"bielbss","location":"027","url":null,"description":"vou me degradar pra agradar voc\u00eas?\nAtentados \u00ae snap: bielbss","protected":false,"verified":false,"followers_count":338,"friends_count":228,"listed_count":5,"favourites_count":8211,"statuses_count":34354,"created_at":"Sun Nov 06 02:17:40 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFEFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640413620761952256\/JEqyx60-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640413620761952256\/JEqyx60-.jpg","profile_background_tile":true,"profile_link_color":"9268CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"050405","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645053354708729856\/51UpZSVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645053354708729856\/51UpZSVt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405968848\/1446344681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1b107df3ccc0aaa1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1b107df3ccc0aaa1.json","place_type":"country","name":"Brazil","full_name":"Brazil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-73.991482,-33.751051],[-73.991482,5.271920],[-32.378186,5.271920],[-32.378186,-33.751051]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marifardin","name":"Maligna","id":260363649,"id_str":"260363649","indices":[0,11]},{"screen_name":"fuckmari","name":"florzinha","id":56556537,"id_str":"56556537","indices":[12,21]},{"screen_name":"igortomia","name":"sobre marchesi lopes","id":3310825361,"id_str":"3310825361","indices":[22,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888164855808,"id_str":"663727888164855808","text":"@metamythos bei den Views wird aber auch mit ungleichen Ellen gemessen. Da wird gleich getrickst wie mit Pageviews. cc @davidbauer","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726443608805376,"in_reply_to_status_id_str":"663726443608805376","in_reply_to_user_id":17870970,"in_reply_to_user_id_str":"17870970","in_reply_to_screen_name":"metamythos","user":{"id":6388972,"id_str":"6388972","name":"Claudio Schwarz","screen_name":"purzlbaum","location":"Z\u00fcrich, Switzerland","url":"http:\/\/www.claudioschwarz.com","description":"WordPress. Webdesign. Photography. Floorball (@unihockeyfotos and @uhcd).","protected":false,"verified":false,"followers_count":1359,"friends_count":130,"listed_count":117,"favourites_count":1313,"statuses_count":38500,"created_at":"Mon May 28 16:22:19 +0000 2007","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"41AEE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154730325\/bymhCeUO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154730325\/bymhCeUO.png","profile_background_tile":false,"profile_link_color":"41AEE9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1C2A36","profile_text_color":"868383","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598897437101678592\/ANWWXLL__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598897437101678592\/ANWWXLL__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/6388972\/1437382751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"metamythos","name":"philipp meier","id":17870970,"id_str":"17870970","indices":[0,11]},{"screen_name":"davidbauer","name":"David Bauer","id":18358060,"id_str":"18358060","indices":[119,130]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080034663"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888147976192,"id_str":"663727888147976192","text":"RT @GBMhomebroker: #Tipodecambio El peso pierde terreno contra el d\u00f3lar en niveles de MX$16.89 #TRMX #Clubdetraders","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":421532582,"id_str":"421532582","name":"Romano","screen_name":"RomanoJA","location":"Puebla, Puebla, M\u00e9xico","url":"http:\/\/Instagram.com\/romanoja5","description":"Polit\u00f3logo e Internacionalista (CIDE), especulador, consultor, fot\u00f3grafo amateur, poeta nocturno (@0nAmoR), exchilango y expenquista, viajero y m\u00e1s\u2026","protected":false,"verified":false,"followers_count":1160,"friends_count":1209,"listed_count":23,"favourites_count":8328,"statuses_count":12059,"created_at":"Sat Nov 26 02:22:28 +0000 2011","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1123ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"0511F2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633775644199944193\/OQMpKPBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633775644199944193\/OQMpKPBI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421532582\/1424914918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:27 +0000 2015","id":663726095997472768,"id_str":"663726095997472768","text":"#Tipodecambio El peso pierde terreno contra el d\u00f3lar en niveles de MX$16.89 #TRMX #Clubdetraders","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166223127,"id_str":"166223127","name":"GBMhomebroker","screen_name":"GBMhomebroker","location":"M\u00e9xico","url":"https:\/\/www.gbmhomebroker.com\/Homebroker\/index.html","description":"La mejor plataforma de online trading para compra y venta de acciones. Tenemos la mejor informaci\u00f3n de an\u00e1lisis #BMV http:\/\/bit.ly\/1JDmhta","protected":false,"verified":false,"followers_count":20214,"friends_count":1089,"listed_count":306,"favourites_count":1544,"statuses_count":39668,"created_at":"Tue Jul 13 16:55:09 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"012D6A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652216161820504064\/vWMFyfzz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652216161820504064\/vWMFyfzz.jpg","profile_background_tile":false,"profile_link_color":"1072C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAE02F","profile_text_color":"4A494A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469854917402705920\/YjYy7qcL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469854917402705920\/YjYy7qcL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166223127\/1436200793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Tipodecambio","indices":[0,13]},{"text":"TRMX","indices":[76,81]},{"text":"Clubdetraders","indices":[82,96]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Tipodecambio","indices":[19,32]},{"text":"TRMX","indices":[95,100]},{"text":"Clubdetraders","indices":[101,115]}],"urls":[],"user_mentions":[{"screen_name":"GBMhomebroker","name":"GBMhomebroker","id":166223127,"id_str":"166223127","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143933440,"id_str":"663727888143933440","text":"mais iludida que eu https:\/\/t.co\/LTnyAcWSS9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61103189,"id_str":"61103189","name":"ana","screen_name":"lovatorns","location":null,"url":null,"description":"[demi\u2019s voice] thanks for the tits!!\u00a1!","protected":false,"verified":false,"followers_count":12308,"friends_count":8939,"listed_count":24,"favourites_count":15321,"statuses_count":65801,"created_at":"Wed Jul 29 03:39:42 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623247919467130880\/2JQi0M-c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623247919467130880\/2JQi0M-c.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"5F00ED","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389055925776385\/tynbaVRk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389055925776385\/tynbaVRk_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663691732064841728,"quoted_status_id_str":"663691732064841728","quoted_status":{"created_at":"Mon Nov 09 12:16:54 +0000 2015","id":663691732064841728,"id_str":"663691732064841728","text":"@ddlovato will u follow me? \ud83d\ude02 #askdemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":3196054479,"id_str":"3196054479","name":"samantha","screen_name":"lovatotiros","location":null,"url":null,"description":"uma vez trouxa sempre lovatic","protected":false,"verified":false,"followers_count":3919,"friends_count":3365,"listed_count":1,"favourites_count":13445,"statuses_count":28590,"created_at":"Wed Apr 22 20:40:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616810896837476352\/P3grOOfF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616810896837476352\/P3grOOfF.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661575141005094912\/jKt5pmv6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661575141005094912\/jKt5pmv6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196054479\/1446668449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"askdemi","indices":[30,38]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LTnyAcWSS9","expanded_url":"https:\/\/twitter.com\/lovatotiros\/status\/663691732064841728","display_url":"twitter.com\/lovatotiros\/st\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888156372992,"id_str":"663727888156372992","text":"\u30d5\u30d5\u3001\u9762\u767d\u3044\u3067\u3059\u2665","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242207622,"id_str":"3242207622","name":"\u5357\u3053\u3068\u308a","screen_name":"kottorinbot","location":null,"url":"http:\/\/kottorinbot.slmame.com\/?_ga=1.137705392.1038524102.1434026297","description":"\u5c11\u306a\u3044\u3067\u3059\u304c\u3001\u6328\u62f6\u7b49TL\u53cd\u5fdc\u3057\u307e\u3059\u3002\u30bb\u30ea\u30d5\u306f\u5f90\u3005\u306b\u5897\u3084\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u30c6\u30b9\u30c8\u4e2d \u975e\u516c\u5f0fbot","protected":false,"verified":false,"followers_count":11,"friends_count":13,"listed_count":0,"favourites_count":331,"statuses_count":2822,"created_at":"Thu Jun 11 12:17:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629779854292987904\/sbw13ou-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629779854292987904\/sbw13ou-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242207622\/1438986191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034661"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888169070592,"id_str":"663727888169070592","text":"RT @armada_ecuador: La integridad es la cualidad m\u00e1s valiosa y respetada del liderazgo. Brian Tracy. Escritor norteamericano. https:\/\/t.co\/\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3903509544,"id_str":"3903509544","name":"RDTA00","screen_name":"rdta00","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":8,"listed_count":0,"favourites_count":0,"statuses_count":328,"created_at":"Thu Oct 15 14:28:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:54 +0000 2015","id":663725452809404416,"id_str":"663725452809404416","text":"La integridad es la cualidad m\u00e1s valiosa y respetada del liderazgo. Brian Tracy. Escritor norteamericano. https:\/\/t.co\/BNh2meGJDJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1224944496,"id_str":"1224944496","name":"Armada del Ecuador","screen_name":"armada_ecuador","location":"Sitio Oficial ","url":"http:\/\/www.armada.mil.ec","description":null,"protected":false,"verified":false,"followers_count":7288,"friends_count":2524,"listed_count":33,"favourites_count":67,"statuses_count":4728,"created_at":"Wed Feb 27 13:49:00 +0000 2013","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"303333","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580754671683309568\/2rlIpQfs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580754671683309568\/2rlIpQfs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1224944496\/1444060749","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725450586230784,"id_str":"663725450586230784","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","url":"https:\/\/t.co\/BNh2meGJDJ","display_url":"pic.twitter.com\/BNh2meGJDJ","expanded_url":"http:\/\/twitter.com\/armada_ecuador\/status\/663725452809404416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":138,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":244,"resize":"fit"},"large":{"w":980,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725450586230784,"id_str":"663725450586230784","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","url":"https:\/\/t.co\/BNh2meGJDJ","display_url":"pic.twitter.com\/BNh2meGJDJ","expanded_url":"http:\/\/twitter.com\/armada_ecuador\/status\/663725452809404416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":138,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":244,"resize":"fit"},"large":{"w":980,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"armada_ecuador","name":"Armada del Ecuador","id":1224944496,"id_str":"1224944496","indices":[3,18]}],"symbols":[],"media":[{"id":663725450586230784,"id_str":"663725450586230784","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","url":"https:\/\/t.co\/BNh2meGJDJ","display_url":"pic.twitter.com\/BNh2meGJDJ","expanded_url":"http:\/\/twitter.com\/armada_ecuador\/status\/663725452809404416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":138,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":244,"resize":"fit"},"large":{"w":980,"h":400,"resize":"fit"}},"source_status_id":663725452809404416,"source_status_id_str":"663725452809404416","source_user_id":1224944496,"source_user_id_str":"1224944496"}]},"extended_entities":{"media":[{"id":663725450586230784,"id_str":"663725450586230784","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGx96UEAARURi.jpg","url":"https:\/\/t.co\/BNh2meGJDJ","display_url":"pic.twitter.com\/BNh2meGJDJ","expanded_url":"http:\/\/twitter.com\/armada_ecuador\/status\/663725452809404416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":138,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":244,"resize":"fit"},"large":{"w":980,"h":400,"resize":"fit"}},"source_status_id":663725452809404416,"source_status_id_str":"663725452809404416","source_user_id":1224944496,"source_user_id_str":"1224944496"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888147963904,"id_str":"663727888147963904","text":"@aaamuguna \ud574\uc918\uc694","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727699773407232,"in_reply_to_status_id_str":"663727699773407232","in_reply_to_user_id":3322248391,"in_reply_to_user_id_str":"3322248391","in_reply_to_screen_name":"aaamuguna","user":{"id":2414801065,"id_str":"2414801065","name":"\ud5dd(\u00b4\uff65w\uff65`)","screen_name":"hung_xo","location":null,"url":"http:\/\/ask.fm\/hung_xo","description":"EXO \/ RPS \/ \uccb8\ub978 \/ \ub9ac\ud2b8\uc717, \uc0ac\ub2f4 \ub9ce\uc74c \/ \ud504\uc0ac\ub294 \ub098\ub0a8\ub2d8~","protected":false,"verified":false,"followers_count":4300,"friends_count":328,"listed_count":29,"favourites_count":7986,"statuses_count":82463,"created_at":"Thu Mar 27 19:15:31 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"747DCF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699390326943745\/QguwZ5GQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699390326943745\/QguwZ5GQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2414801065\/1418910417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aaamuguna","name":"\ucde8\ucf13\ud305\ud574\ub77c 6:37(\uc721\uc0bc\uce60)","id":3322248391,"id_str":"3322248391","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888168914944,"id_str":"663727888168914944","text":"RT @babitatyagi0: @Gurmeetramrahim WOW Guruji !!What a fantabulous craze among Kota (Rajasthan)Fans !!! festivity everywhere !! #MSG2onTheT\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223058215,"id_str":"3223058215","name":"Simranjit Kaur","screen_name":"simranjitdri9","location":"Dhuri, Punjab","url":null,"description":"M.A, B.Ed","protected":false,"verified":false,"followers_count":152,"friends_count":10,"listed_count":2,"favourites_count":535,"statuses_count":12438,"created_at":"Fri May 22 06:29:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602061482696650752\/2kcNyMrr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602061482696650752\/2kcNyMrr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223058215\/1432367032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:53 +0000 2015","id":663709595580301312,"id_str":"663709595580301312","text":"@Gurmeetramrahim WOW Guruji !!What a fantabulous craze among Kota (Rajasthan)Fans !!! festivity everywhere !! #MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708578235072516,"in_reply_to_status_id_str":"663708578235072516","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2853078955,"id_str":"2853078955","name":"babita tyagi","screen_name":"babitatyagi0","location":"lodhi colony,NEW DELHI","url":null,"description":"DSS IT WING MEMBER","protected":false,"verified":false,"followers_count":7124,"friends_count":205,"listed_count":18,"favourites_count":50242,"statuses_count":67772,"created_at":"Sun Oct 12 10:54:54 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650282266854211585\/jOO1IPnU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650282266854211585\/jOO1IPnU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853078955\/1445077813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"317fcc4b21a604d5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/317fcc4b21a604d5.json","place_type":"city","name":"New Delhi","full_name":"New Delhi, Delhi","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[76.842520,28.397657],[76.842520,28.879322],[77.347652,28.879322],[77.347652,28.397657]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":13,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[110,134]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[128,140]}],"urls":[],"user_mentions":[{"screen_name":"babitatyagi0","name":"babita tyagi","id":2853078955,"id_str":"2853078955","indices":[3,16]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[18,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888160571392,"id_str":"663727888160571392","text":"\u0e2d\u0e49\u0e27\u0e19\u0e21\u0e32\u0e01\u0e44\u0e21\u0e48\u0e44\u0e2b\u0e27\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2b\u0e2d\u0e2d\u0e2d\u0e2d\ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559534220,"id_str":"559534220","name":"\u30fe(*\u00b4\u2200\uff40*)\uff89","screen_name":"cpwpd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":166,"friends_count":255,"listed_count":2,"favourites_count":2298,"statuses_count":48092,"created_at":"Sat Apr 21 13:24:10 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"18181A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590167221634080768\/dUYS2V9L.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590167221634080768\/dUYS2V9L.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663315462973865984\/61Dt5QkI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663315462973865984\/61Dt5QkI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559534220\/1446981784","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080034662"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888173166592,"id_str":"663727888173166592","text":"@c5f351e3b57945b dah menonggeng tu jangan sebok carik balik eh? hahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727669519912960,"in_reply_to_status_id_str":"663727669519912960","in_reply_to_user_id":3271152350,"in_reply_to_user_id_str":"3271152350","in_reply_to_screen_name":"c5f351e3b57945b","user":{"id":3181326037,"id_str":"3181326037","name":"4","screen_name":"_nrsyamimi","location":"Malaysia","url":"http:\/\/instagram.com\/syamiml","description":null,"protected":false,"verified":false,"followers_count":155,"friends_count":353,"listed_count":0,"favourites_count":254,"statuses_count":4198,"created_at":"Fri May 01 04:25:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663261343558930432\/IP6JqmkK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663261343558930432\/IP6JqmkK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181326037\/1446682081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"c5f351e3b57945b","name":"nana","id":3271152350,"id_str":"3271152350","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080034665"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888173256704,"id_str":"663727888173256704","text":"\u017dC\ub2d8~\n\uae30\uae30\uc758 \ub370\uc774\ud130 \uc0ac\uc6a9\ub7c9\uc774 \ucd08\uacfc \ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\nFrom \ud648\ub137\ubc29\ud654\ubcbd Mon Nov 09 23:40:34 KST 2015","source":"\u003ca href=\"http:\/\/112.220.234.182:8080\/HomeNetFirewall\/login.do\" rel=\"nofollow\"\u003eHomenetFirewall\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319503865,"id_str":"3319503865","name":"naon","screen_name":"naonTest","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":1202,"created_at":"Wed Aug 19 01:34:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080034665"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888164786176,"id_str":"663727888164786176","text":"RT @Carolde: U R right #Obama really make me see RIGHT light @realDonaldTrump @DRJAMESCABOT @myGianLuca @CJCboi @TrumpsGucciGirl https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603660185,"id_str":"603660185","name":"DR JAMES CABOT","screen_name":"DRJAMESCABOT","location":"ZUG SWITZERLAND","url":null,"description":"CAL TECH\r\nHARVARD\r\nPRESIDENT;CCC TRADING CORP.","protected":false,"verified":false,"followers_count":3226860,"friends_count":11185,"listed_count":281,"favourites_count":3992,"statuses_count":285675,"created_at":"Sat Jun 09 14:49:17 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513069008837672960\/V95e1l4P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513069008837672960\/V95e1l4P_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603660185\/1424213701","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727546522058756,"id_str":"663727546522058756","text":"U R right #Obama really make me see RIGHT light @realDonaldTrump @DRJAMESCABOT @myGianLuca @CJCboi @TrumpsGucciGirl https:\/\/t.co\/PsiKoBYDNK","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22936237,"id_str":"22936237","name":"Carol","screen_name":"Carolde","location":" Pennsylvania","url":"http:\/\/page.is\/carol","description":"I recently retired from nursing. Passion for health care,,, lifetime Dem until Obama came along....he made me see RIGHT light! #TrumpTrain to DC","protected":false,"verified":false,"followers_count":7874,"friends_count":5352,"listed_count":267,"favourites_count":8898,"statuses_count":141990,"created_at":"Thu Mar 05 16:05:10 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/50248416\/Carolde_1257190815.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/50248416\/Carolde_1257190815.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661565868938240000\/gfciNSe7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661565868938240000\/gfciNSe7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22936237\/1446564321","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726552262180864,"quoted_status_id_str":"663726552262180864","quoted_status":{"created_at":"Mon Nov 09 14:35:16 +0000 2015","id":663726552262180864,"id_str":"663726552262180864","text":"@Carolde \n\nlifetime Dem until Obama came along....he made me see RIGHT light! \n\nBeautiful profile intro! Same here! Dems have gone 2 far!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":22936237,"in_reply_to_user_id_str":"22936237","in_reply_to_screen_name":"Carolde","user":{"id":3405058677,"id_str":"3405058677","name":"Ben Popp","screen_name":"Veterror","location":"Pittsburgh, PA","url":null,"description":"keeping you updated on Trump, 24\/7","protected":false,"verified":false,"followers_count":91,"friends_count":65,"listed_count":3,"favourites_count":851,"statuses_count":760,"created_at":"Thu Aug 06 03:01:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637084598153932800\/ymKG8BVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637084598153932800\/ymKG8BVt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Carolde","name":"Carol","id":22936237,"id_str":"22936237","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Obama","indices":[11,17]}],"urls":[{"url":"https:\/\/t.co\/PsiKoBYDNK","expanded_url":"https:\/\/twitter.com\/veterror\/status\/663726552262180864","display_url":"twitter.com\/veterror\/statu\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[49,65]},{"screen_name":"DRJAMESCABOT","name":"DR JAMES CABOT","id":603660185,"id_str":"603660185","indices":[66,79]},{"screen_name":"myGianLuca","name":"Ciana@mygianluca","id":2271813558,"id_str":"2271813558","indices":[80,91]},{"screen_name":"CJCboi","name":"Cheryl Campbell","id":207271383,"id_str":"207271383","indices":[92,99]},{"screen_name":"TrumpsGucciGirl","name":"GucciGirl","id":3270484302,"id_str":"3270484302","indices":[100,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Obama","indices":[24,30]}],"urls":[{"url":"https:\/\/t.co\/PsiKoBYDNK","expanded_url":"https:\/\/twitter.com\/veterror\/status\/663726552262180864","display_url":"twitter.com\/veterror\/statu\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Carolde","name":"Carol","id":22936237,"id_str":"22936237","indices":[3,11]},{"screen_name":"realDonaldTrump","name":"Donald J. Trump","id":25073877,"id_str":"25073877","indices":[62,78]},{"screen_name":"DRJAMESCABOT","name":"DR JAMES CABOT","id":603660185,"id_str":"603660185","indices":[79,92]},{"screen_name":"myGianLuca","name":"Ciana@mygianluca","id":2271813558,"id_str":"2271813558","indices":[93,104]},{"screen_name":"CJCboi","name":"Cheryl Campbell","id":207271383,"id_str":"207271383","indices":[105,112]},{"screen_name":"TrumpsGucciGirl","name":"GucciGirl","id":3270484302,"id_str":"3270484302","indices":[113,129]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034663"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888173142020,"id_str":"663727888173142020","text":"\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e04\u0e34\u0e14\u0e44\u0e14\u0e49\u0e41\u0e04\u0e48\u0e27\u0e48\u0e32 \u0e17\u0e33\u0e44\u0e07\u0e14\u0e35\u0e46\u0e46\u0e46\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853031030,"id_str":"853031030","name":" (\uff89 \u0ca0\u76ca\u0ca0)\uff89 ' \u0e08\u0e34\u0e07\u0e40\u0e14\u0e49","screen_name":"termite19z","location":"Thailand","url":null,"description":"Hey, I'm tamako \/\/ \u73e0\u5b50\u3067\u3059\u3002 (\/*[]*)\/ \u0e17\u0e27\u0e34\u0e15\u0e40\u0e1b\u0e47\u0e19\u0e14\u0e31\u0e48\u0e07\u0e2a\u0e49\u0e27\u0e21 \u0e21\u0e35\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e23\u0e30\u0e1a\u0e32\u0e22\u0e01\u0e31\u0e1a\u0e23\u0e35\u0e41\u0e04\u0e48\u0e19\u0e35\u0e49\u0e08\u0e23\u0e34\u0e07\u0e46 #\u0e0a\u0e48\u0e32\u0e07\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30\u0e22\u0e34\u0e48\u0e07\u0e19\u0e31\u0e01","protected":false,"verified":false,"followers_count":80,"friends_count":366,"listed_count":0,"favourites_count":274,"statuses_count":5282,"created_at":"Sat Sep 29 14:57:36 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434690108545961985\/MnM5kion.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434690108545961985\/MnM5kion.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644215096508481536\/PZxQu8Ka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644215096508481536\/PZxQu8Ka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853031030\/1442427652","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080034665"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888177303552,"id_str":"663727888177303552","text":"RT @kttly57: \u203b\u304d\u3082\u3044\u8c5a\u58f0\u6ce8\u610f \u53cb\u9054\u306b\u8cea\u554f\u983c\u307e\u308c\u305f\u306e\u3067\u805e\u3044\u3066\u307f\u305f\uff01\uff01\ud83d\udc19\u3055\u3093\u304c\u3044\u306a\u3044#\u624b\u4e0b#\u30b8\u30e3\u30c3\u30af\u30cf\u30fc\u30c8 https:\/\/t.co\/IRXtZDl1pJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953880473,"id_str":"2953880473","name":"\u5982\u6708\u3088\u30fc\u305f","screen_name":"yosokio_son","location":"\u3075\u3057\u304e\u306e\u56fd\u67d0\u6240\u304a\u8336\u4f1a\u5834","url":null,"description":"\u96d1\u98df\u52d5\u7269\u3002\u3075\u3057\u304e\u306e\u56fd\u306e\u3061\u5984\u60f3\u30f4\u30a3\u30e9\u30f3\u30ba\u30de\u30b9\u30bf\u30fc&\u624b\u4e0b(\u5fc3\u3068\u72ac\u63a8\u3057)\u3010\u7d20\u6575\u3059\u304e\u308b\u30a2\u30a4\u30b3\u30f3:\u30b5\u30e9\u30c0\u3055\u3093\u69d8(@s_ld317)\u3011\u3010\u7d20\u6575\u3059\u304e\u308b\u30d8\u30c3\u30c0\u30fc:\u306a\u308d\u69d8(@naro_t)\u3011","protected":false,"verified":false,"followers_count":30,"friends_count":101,"listed_count":0,"favourites_count":2816,"statuses_count":3331,"created_at":"Wed Dec 31 17:03:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663304893621403648\/K099-8Wo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663304893621403648\/K099-8Wo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953880473\/1445772742","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 22 03:58:48 +0000 2015","id":657043400185638912,"id_str":"657043400185638912","text":"\u203b\u304d\u3082\u3044\u8c5a\u58f0\u6ce8\u610f \u53cb\u9054\u306b\u8cea\u554f\u983c\u307e\u308c\u305f\u306e\u3067\u805e\u3044\u3066\u307f\u305f\uff01\uff01\ud83d\udc19\u3055\u3093\u304c\u3044\u306a\u3044#\u624b\u4e0b#\u30b8\u30e3\u30c3\u30af\u30cf\u30fc\u30c8 https:\/\/t.co\/IRXtZDl1pJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380751840,"id_str":"2380751840","name":"\u86f8\u007b\u3057\u304d\u007d\u58fa","screen_name":"kttly57","location":"\u672c\u57a2\u2192@kttl0507","url":null,"description":"\u624b\u4e0b\u57a2\u3001\u4f5c\u3063\u3061\u3083\u3044\u307e\u3057\u305f\u3002\u6210\u4eba\u6e08\u3002\u30a8\u30a4\u30c8\u30d5\u30c3\u30c8\u3055\u3093\u304c\u3059\u304d\u3067\u3059\u3002\u4ffa\u9054\u306e\u79cb\u306f\u7d42\u308f\u3089\u306a\u3044\u3002\u30d8\u30c3\u30c0\u30fc\u306fKazuki\u3055\u3093\u304b\u3089\u3044\u305f\u3060\u304d\u307e\u3057\u305f\uff01\uff01\uff01\uff01\u305d\u3057\u3066\u30a2\u30a4\u30b3\u30f3\u306f\u304f\u3058\u3089\u3055\u3093\u304b\u3089\u30d5\u30ea\u30fc\u3067\u4f7f\u308f\u305b\u3066\u9802\u3044\u3066\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":45,"friends_count":37,"listed_count":0,"favourites_count":1471,"statuses_count":1455,"created_at":"Sun Mar 09 17:09:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663276170121601024\/Uh5TKhiC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663276170121601024\/Uh5TKhiC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380751840\/1447000887","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1042,"favorite_count":3469,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657043071629066241,"id_str":"657043071629066241","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","url":"https:\/\/t.co\/IRXtZDl1pJ","display_url":"pic.twitter.com\/IRXtZDl1pJ","expanded_url":"http:\/\/twitter.com\/kttly57\/status\/657043400185638912\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657043071629066241,"id_str":"657043071629066241","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","url":"https:\/\/t.co\/IRXtZDl1pJ","display_url":"pic.twitter.com\/IRXtZDl1pJ","expanded_url":"http:\/\/twitter.com\/kttly57\/status\/657043400185638912\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":28201,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/320x180\/ywrGKiZ5pFB-qZuR.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/640x360\/egTUS2u3nfbUBe5Q.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/640x360\/egTUS2u3nfbUBe5Q.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/pl\/ZA1Q77Nv_Umojysc.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/1280x720\/_RODyoaY-wj2ikg9.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/pl\/ZA1Q77Nv_Umojysc.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kttly57","name":"\u86f8\u007b\u3057\u304d\u007d\u58fa","id":2380751840,"id_str":"2380751840","indices":[3,11]}],"symbols":[],"media":[{"id":657043071629066241,"id_str":"657043071629066241","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","url":"https:\/\/t.co\/IRXtZDl1pJ","display_url":"pic.twitter.com\/IRXtZDl1pJ","expanded_url":"http:\/\/twitter.com\/kttly57\/status\/657043400185638912\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":657043400185638912,"source_status_id_str":"657043400185638912","source_user_id":2380751840,"source_user_id_str":"2380751840"}]},"extended_entities":{"media":[{"id":657043071629066241,"id_str":"657043071629066241","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657043071629066241\/pu\/img\/u_Dqpcu6eZY2BWLt.jpg","url":"https:\/\/t.co\/IRXtZDl1pJ","display_url":"pic.twitter.com\/IRXtZDl1pJ","expanded_url":"http:\/\/twitter.com\/kttly57\/status\/657043400185638912\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":657043400185638912,"source_status_id_str":"657043400185638912","source_user_id":2380751840,"source_user_id_str":"2380751840","video_info":{"aspect_ratio":[16,9],"duration_millis":28201,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/320x180\/ywrGKiZ5pFB-qZuR.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/640x360\/egTUS2u3nfbUBe5Q.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/640x360\/egTUS2u3nfbUBe5Q.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/pl\/ZA1Q77Nv_Umojysc.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/vid\/1280x720\/_RODyoaY-wj2ikg9.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/657043071629066241\/pu\/pl\/ZA1Q77Nv_Umojysc.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034666"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888148111360,"id_str":"663727888148111360","text":"wae #sugakook again i want to cure myself from this pairing... \u2665 https:\/\/t.co\/bZ4F8X4zHv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125817409,"id_str":"125817409","name":"\ubd88\ud589\ud615","screen_name":"rin_hyung","location":"Poland","url":"http:\/\/rinsimagination.wordpress.com\/","description":"@B3STPoland dancer | fujoshi | dandere | #B2UTY #BABY #ARMY | yaoi RPG & fiction writer | INTP, 5IN4, \u264c *wiek tajny*","protected":false,"verified":false,"followers_count":249,"friends_count":298,"listed_count":3,"favourites_count":1783,"statuses_count":6249,"created_at":"Tue Mar 23 23:50:16 +0000 2010","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469506644997439489\/ab3wGNqy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469506644997439489\/ab3wGNqy.jpeg","profile_background_tile":true,"profile_link_color":"800000","profile_sidebar_border_color":"FFA400","profile_sidebar_fill_color":"E32820","profile_text_color":"7BB3DC","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651350259637944320\/JXYd12B7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651350259637944320\/JXYd12B7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125817409\/1444419678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663691611172278272,"quoted_status_id_str":"663691611172278272","quoted_status":{"created_at":"Mon Nov 09 12:16:25 +0000 2015","id":663691611172278272,"id_str":"663691611172278272","text":"\ud53c\ub514\ub2d8, \uace0\uae30\uac00 \ucc38 \ub9db\uc788\uc2b5\ub2c8\ub2e4. https:\/\/t.co\/u8fiqNwzdx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335141638,"id_str":"335141638","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","screen_name":"BTS_twt","location":null,"url":"http:\/\/btsblog.ibighit.com","description":"\ubc29\ud0c4\uc18c\ub144\ub2e8\uc785\ub2c8\ub2e4. Hello we are BTS. http:\/\/bts.ibighit.com","protected":false,"verified":true,"followers_count":1395217,"friends_count":68,"listed_count":6891,"favourites_count":30,"statuses_count":7805,"created_at":"Thu Jul 14 06:32:56 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612324436012765188\/ST6KInHS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612324436012765188\/ST6KInHS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335141638\/1434824850","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663691596613881857,"id_str":"663691596613881857","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_aCVEAErZhb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_aCVEAErZhb.jpg","url":"https:\/\/t.co\/u8fiqNwzdx","display_url":"pic.twitter.com\/u8fiqNwzdx","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/663691611172278272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663691596613881857,"id_str":"663691596613881857","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_aCVEAErZhb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_aCVEAErZhb.jpg","url":"https:\/\/t.co\/u8fiqNwzdx","display_url":"pic.twitter.com\/u8fiqNwzdx","expanded_url":"http:\/\/twitter.com\/BTS_twt\/status\/663691611172278272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sugakook","indices":[4,13]}],"urls":[{"url":"https:\/\/t.co\/bZ4F8X4zHv","expanded_url":"https:\/\/twitter.com\/BTS_twt\/status\/663691611172278272","display_url":"twitter.com\/BTS_twt\/status\u2026","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888160694272,"id_str":"663727888160694272","text":"RT @fafaroha0011: -\n\n\u0622\u0644\u0644\u064a \u0644\u0642\u0622\u0644\u0647 \u0639\u064f\u0645\u0631\n\u0648\u064e\u0634\u0644\u0648\u0646 \u064a\u064e\u0646\u0633\u0640\u0627\u0647 \u061f\n\u0645\u064e\u0646 \u0628\u0639\u064e\u062f \u0645\u0627\u0639\u0627\u0634\u064e\u0647\n\u062b\u0648\u064e\u0627\u0646\u0640\u064a \u060c \u062b\u0648\u0627\u0646\u0640\u064a ..!\n\u0645\u0633\u062a\u064e\u0642\u0628\u0644\u0647 \u0641\u0627\u062a\u0640\u0647 \u060c\n\u0648 \u062d\u0638\u0647 \u062a\u0639\u064e\u062f\u0627\u0647 '\n\u062d\u064e\u0632\u0646\u0647 \u0648\u0637\u0640\u0646 \n\u0648 \u0638\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3385621526,"id_str":"3385621526","name":"\u3061\/\u3061\u2757\ufe0fAlhanoof \u2757\ufe0f","screen_name":"__han0__","location":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 \/\u0627\u0644\u062d\u062c\u0627\u0632","url":null,"description":".\u270d \u0634\u0647\u0631\u064a\u0647 \u0645\u0646 \u0631\u0648\u0633\u064e \u0642\u0648\u0645 \u060c \u0645\u0622\u0646\u064a \u0628\u062d\u064a \u0627\u0644\u0644\u0647 \u2765#\u0627\u0644\u0647\u0646\u0648\u0641","protected":false,"verified":false,"followers_count":16681,"friends_count":13294,"listed_count":17,"favourites_count":157,"statuses_count":16208,"created_at":"Sat Aug 29 21:23:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663511069634248705\/ZU27jqsU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663511069634248705\/ZU27jqsU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3385621526\/1447021885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:32:36 +0000 2015","id":663559787506962433,"id_str":"663559787506962433","text":"-\n\n\u0622\u0644\u0644\u064a \u0644\u0642\u0622\u0644\u0647 \u0639\u064f\u0645\u0631\n\u0648\u064e\u0634\u0644\u0648\u0646 \u064a\u064e\u0646\u0633\u0640\u0627\u0647 \u061f\n\u0645\u064e\u0646 \u0628\u0639\u064e\u062f \u0645\u0627\u0639\u0627\u0634\u064e\u0647\n\u062b\u0648\u064e\u0627\u0646\u0640\u064a \u060c \u062b\u0648\u0627\u0646\u0640\u064a ..!\n\u0645\u0633\u062a\u064e\u0642\u0628\u0644\u0647 \u0641\u0627\u062a\u0640\u0647 \u060c\n\u0648 \u062d\u0638\u0647 \u062a\u0639\u064e\u062f\u0627\u0647 '\n\u062d\u064e\u0632\u0646\u0647 \u0648\u0637\u0640\u0646 \n\u0648 \u0638\u0631\u064e\u0648\u0641 \u0648\u0642\u064e\u062a\u0647 \u0645\u064e\u0628\u0627\u0646\u064a !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3618526634,"id_str":"3618526634","name":"\u3010\u2765\u0493\u03b1\u044f\u03c3\u043d\u03b1\u3011","screen_name":"fafaroha0011","location":null,"url":null,"description":"\u0631\u062d\u0645\u0647 \u0648\u0627\u0633\u0639\u0647 \u064a\u0627\u0631\u0628 \u0644\u0643\u0644 \u0645\u0646 \u0648\u0636\u0639\u0648\u0627 \u0641\u064a \u0627\u0644\u0642\u0628\u0648\u0631 #\u0635\u062f\u0642\u0629_\u062c\u0627\u0631\u064a\u0629_\u0644\u0648\u0627\u0644\u062f\u0627\u064a_\u0648\u0623\u062e\u064a @fa__110 \u0634\u0643\u0631\u0627\u064b \u0644\u0635\u0627\u062d\u0628\/\u0629 \u0627\u0644\u062d\u0633\u0627\u0628 \u062c\u0632\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u062e\u064a\u0631","protected":false,"verified":false,"followers_count":15048,"friends_count":16476,"listed_count":6,"favourites_count":241,"statuses_count":20424,"created_at":"Sat Sep 19 18:17:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651791155265409025\/0f0KbxQw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651791155265409025\/0f0KbxQw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3618526634\/1444234063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fafaroha0011","name":"\u3010\u2765\u0493\u03b1\u044f\u03c3\u043d\u03b1\u3011","id":3618526634,"id_str":"3618526634","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080034662"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888148099072,"id_str":"663727888148099072","text":"RT @wholegrainne: me without sports: i hate my life\nme with sports: i hate my life and i have people to blame it on","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360815440,"id_str":"360815440","name":"becca","screen_name":"bfischh","location":"514","url":null,"description":"i like sports, feminism, and leg day","protected":false,"verified":false,"followers_count":307,"friends_count":235,"listed_count":0,"favourites_count":5063,"statuses_count":8313,"created_at":"Tue Aug 23 20:16:16 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647950343255498753\/NfisV-la_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647950343255498753\/NfisV-la_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360815440\/1447034481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:31:42 +0000 2015","id":663589760598839296,"id_str":"663589760598839296","text":"me without sports: i hate my life\nme with sports: i hate my life and i have people to blame it on","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218765126,"id_str":"218765126","name":"Gr\u00e1inne","screen_name":"wholegrainne","location":null,"url":null,"description":"Member of the Chopped fandom. I write for @CanucksArmy.","protected":false,"verified":false,"followers_count":2029,"friends_count":766,"listed_count":55,"favourites_count":8300,"statuses_count":22934,"created_at":"Tue Nov 23 06:09:17 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00D6FC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115593055\/7386b7a361645006d00e227a24665877.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115593055\/7386b7a361645006d00e227a24665877.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"09409B","profile_text_color":"106FA9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657032897182887937\/CHBuLQ2M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657032897182887937\/CHBuLQ2M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218765126\/1445984240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":61,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wholegrainne","name":"Gr\u00e1inne","id":218765126,"id_str":"218765126","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143794178,"id_str":"663727888143794178","text":"Playoff Peprally will be on Wednesday 11\/11 at 8:30pm -south side of Courthouse! Come Support the Bobcats as the head into playoffs!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353037218,"id_str":"353037218","name":"ChildressISD","screen_name":"ChildressTxISD","location":"Childress, TX","url":"http:\/\/www.childressisd.net","description":"3A School District located 100 miles from both Wichita Falls and Amarillo on Hwy 287.","protected":false,"verified":false,"followers_count":433,"friends_count":84,"listed_count":4,"favourites_count":17,"statuses_count":1099,"created_at":"Thu Aug 11 13:15:55 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574774500727746560\/oGvShqqE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574774500727746560\/oGvShqqE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353037218\/1446852769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888152203264,"id_str":"663727888152203264","text":"@lshxxl \u0634\u062a \u0645\u0627\u064a\u0633\u0648\u0649 \u0639\u0644\u064a\u0647 \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727635864793088,"in_reply_to_status_id_str":"663727635864793088","in_reply_to_user_id":531284662,"in_reply_to_user_id_str":"531284662","in_reply_to_screen_name":"lshxxl","user":{"id":3319615753,"id_str":"3319615753","name":"\u0645\u064f\u062d\u0633\u0646 \u0627\u0644\u062b\u0627\u0646\u064a \u0639\u0634\u0631","screen_name":"m7sn_al7madi","location":"Abu Dhabi, United Arab Emirates","url":null,"description":"\u0633\u0623\u0631\u0642\u0635 \u0639\u0644\u0649 \u062c\u062b\u062b \u0627\u0644\u0639\u0627\u0647\u0631\u0627\u062a \u0648\u0633\u0623\u0628\u0642\u0649 \u0644\u0644\u0645\u0633\u062a\u0634\u0631\u0641\u064a\u0646 \u062c\u0644\u0627\u062f\u064b","protected":false,"verified":false,"followers_count":34,"friends_count":33,"listed_count":0,"favourites_count":13,"statuses_count":225,"created_at":"Wed Aug 19 03:39:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642648451415588864\/cSo0doOI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642648451415588864\/cSo0doOI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319615753\/1442054326","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lshxxl","name":"\u0634\u064a\u0645\u0627\u0627","id":531284662,"id_str":"531284662","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080034660"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888173170688,"id_str":"663727888173170688","text":"I'm just tired of feeling used and not appreciated.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383103562,"id_str":"383103562","name":"pauline","screen_name":"impaulinekaye","location":"Philippines","url":"http:\/\/instagram.com\/impaulinekaye","description":"17 | potterhead \u26a1","protected":false,"verified":false,"followers_count":964,"friends_count":849,"listed_count":1,"favourites_count":70820,"statuses_count":31107,"created_at":"Sat Oct 01 08:23:55 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659241591765254144\/KgcgLLfK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659241591765254144\/KgcgLLfK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383103562\/1439031634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034665"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888173142021,"id_str":"663727888173142021","text":"@prclzrtg ico \ud83d\udc9c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2615325600,"in_reply_to_user_id_str":"2615325600","in_reply_to_screen_name":"prclzrtg","user":{"id":2274098100,"id_str":"2274098100","name":"mvp","screen_name":"marteenasam","location":"PH","url":"http:\/\/www.instagram.com\/_tinzjm","description":"i'm selfish taking what i want and call it mine \u274c 14 \u2022 Classy","protected":false,"verified":false,"followers_count":353,"friends_count":304,"listed_count":1,"favourites_count":2091,"statuses_count":9518,"created_at":"Fri Jan 03 06:54:05 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467604807818031104\/v9fLpeRA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467604807818031104\/v9fLpeRA.jpeg","profile_background_tile":true,"profile_link_color":"19CCCC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727643791986688\/OCvmquEs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727643791986688\/OCvmquEs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2274098100\/1445783355","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"prclzrtg","name":"Prclza","id":2615325600,"id_str":"2615325600","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080034665"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143745025,"id_str":"663727888143745025","text":"\u4eba\u306e\u79c1\u670d\u898b\u305f\u304f\u306a\u3044\uff1f\u308f\u305f\u3057\u306f\u898b\u305f\u3044","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3036497886,"id_str":"3036497886","name":"\u901a\u77e5\u6b04\u6b7b\u3093\u3067\u308b","screen_name":"mnntlv","location":null,"url":null,"description":"\u307f\u306d\u3067\u3059\/\u5be9\u795e\u8005\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\/\u6210\u4eba\u6e08\u8150\/\u304f\u308a\u307f\u3064\u3001\u3078\u3057\u71ed\u4e2d\u5fc3\/\u306d\u3093\u71ed\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\/http:\/\/twpf.jp\/mnntlv\u3092\u8aad\u3093\u3067\u304b\u3089\u3067\u3082\u9045\u304f\u306a\u3044","protected":false,"verified":false,"followers_count":96,"friends_count":90,"listed_count":8,"favourites_count":362,"statuses_count":9531,"created_at":"Sun Feb 22 14:11:12 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659980861287239680\/LaGwD3CQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659980861287239680\/LaGwD3CQ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888160550916,"id_str":"663727888160550916","text":"\u4eca\u5ea6\u306f\u548c\u6b4c\u5c71\u3067\u30a2\u30a4\u30ac\u30e2\u8650\u5f85\uff1f\u5c0f\u5b66\u6821\u306b\uff12\u7fbd\u306e\u6b7b\u9ab8\u3001\u9996\u3061\u304e\u308c\u3001\u80f8\u306b\u50b7\uff08\u7523\u7d4c\u65b0\u805e\uff09 https:\/\/t.co\/jkS2ZoTkbl","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1080131293,"id_str":"1080131293","name":"\u3057\u3093\u3058\u3085","screen_name":"shinju0224","location":null,"url":null,"description":"\u304a\u829d\u5c45\u3092\u89b3\u308b\u306e\u304c\u597d\u304d\u3067\u3059\uff08*^_^*\uff09 \u3064\u3076\u3084\u304f\u5185\u5bb9\u306f\u304a\u829d\u5c45\u4ee5\u5916\u306e\u3053\u3068\u304c\u591a\u3044\u304b\u3082\u2606\u5f61","protected":false,"verified":false,"followers_count":3175,"friends_count":3235,"listed_count":2,"favourites_count":0,"statuses_count":21713,"created_at":"Fri Jan 11 16:00:25 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000464894267\/5a69bafd7049fbfb54234ef3b5426596_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000464894267\/5a69bafd7049fbfb54234ef3b5426596_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1080131293\/1405051964","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jkS2ZoTkbl","expanded_url":"http:\/\/rdsig.yahoo.co.jp\/rss\/l\/headlines\/soci\/san\/RV=1\/RU=aHR0cDovL2hlYWRsaW5lcy55YWhvby5jby5qcC9obD9hPTIwMTUxMTA5LTAwMDAwNTQzLXNhbi1zb2Np","display_url":"rdsig.yahoo.co.jp\/rss\/l\/headline\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034662"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888156332032,"id_str":"663727888156332032","text":"@elembee_ Love this! I've started dabbling in Trello thanks to you and @victoriamstudio...looking very promising so far!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726724279062528,"in_reply_to_status_id_str":"663726724279062528","in_reply_to_user_id":173925201,"in_reply_to_user_id_str":"173925201","in_reply_to_screen_name":"elembee_","user":{"id":313564485,"id_str":"313564485","name":"Monica Dutia","screen_name":"monicadutia","location":"Washington, DC","url":"http:\/\/www.cakeandlilies.com","description":"I write the blog Cake & Lilies, which includes food, style, travel, decor, + whatever inspires me. Love all sweets, good design, and traveling. Colgate '13.","protected":false,"verified":false,"followers_count":446,"friends_count":419,"listed_count":12,"favourites_count":1765,"statuses_count":4036,"created_at":"Wed Jun 08 21:14:31 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"142878","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654813555179458560\/fjkf64F0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654813555179458560\/fjkf64F0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313564485\/1408737121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elembee_","name":"Lisa Butler","id":173925201,"id_str":"173925201","indices":[0,9]},{"screen_name":"victoriamstudio","name":"Victoria McGinley","id":180940171,"id_str":"180940171","indices":[71,87]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034661"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888160546816,"id_str":"663727888160546816","text":"@NukandaK \u0e2b\u0e39\u0e22\u0e22\u0e23\u0e31\u0e01\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e08\u0e31\u0e07 \u0e0b\u0e36\u0e49\u0e07\u0e41\u0e23\u0e07\u0e07\u0e07\u0e2a\u0e4c\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727004731092993,"in_reply_to_status_id_str":"663727004731092993","in_reply_to_user_id":207491255,"in_reply_to_user_id_str":"207491255","in_reply_to_screen_name":"NukandaK","user":{"id":2736519565,"id_str":"2736519565","name":"\u0e19\u0e35\u0e48\u0e43\u0e04\u0e23\u0e40\u0e2d\u0e48\u0e22","screen_name":"Knwannps","location":"\u0e43\u0e19\u0e43\u0e08\u0e04\u0e22\u0e2d\u0e07\u0e0b\u0e39 ._. ","url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":88,"listed_count":0,"favourites_count":363,"statuses_count":8360,"created_at":"Sat Aug 16 04:56:11 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706983988465664\/82ng_ari_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706983988465664\/82ng_ari_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2736519565\/1447075590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NukandaK","name":"\u0e40\u0e14\u0e47\u0e01\u0e2d\u0e49\u0e27\u0e19","id":207491255,"id_str":"207491255","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080034662"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888168935424,"id_str":"663727888168935424","text":"@mkyhawkgm Thx for enrolling in #AmexCPK offer. Spend w\/connected Card & receive credit. Terms: https:\/\/t.co\/eBF8TZgzpv","source":"\u003ca href=\"https:\/\/sync.americanexpress.com\/twitter\" rel=\"nofollow\"\u003eAmex Sync Tree\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727843629772800,"in_reply_to_status_id_str":"663727843629772800","in_reply_to_user_id":2881927965,"in_reply_to_user_id_str":"2881927965","in_reply_to_screen_name":"mkyhawkgm","user":{"id":492532196,"id_str":"492532196","name":"Amex Offers","screen_name":"AmexOffers","location":null,"url":"http:\/\/amex.co\/twitter","description":"This automated handle activates when you tweet special Amex hashtags. Find offers from brands you love @AmericanExpress Favorites tab. Questions: @AskAmex","protected":false,"verified":true,"followers_count":77314,"friends_count":0,"listed_count":339,"favourites_count":1,"statuses_count":4052652,"created_at":"Tue Feb 14 20:42:15 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EAEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492532196\/1401974910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmexCPK","indices":[32,40]}],"urls":[{"url":"https:\/\/t.co\/eBF8TZgzpv","expanded_url":"http:\/\/amex.co\/1WwG8UV","display_url":"amex.co\/1WwG8UV","indices":[100,123]}],"user_mentions":[{"screen_name":"mkyhawkgm","name":"NELSON","id":2881927965,"id_str":"2881927965","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143810561,"id_str":"663727888143810561","text":"RT @MalditaNereaGal: Buenas noticias para las tortugas mexicanas en 3 d\u00edas tendr\u00e1n a @MalditaNerea en el @LunarioMx \ud83d\udc22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284555923,"id_str":"3284555923","name":"Carmen Rive71","screen_name":"CRive71","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":51,"friends_count":48,"listed_count":3,"favourites_count":5690,"statuses_count":5166,"created_at":"Sun Jul 19 16:26:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654434658155827201\/GY384FUv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654434658155827201\/GY384FUv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284555923\/1440953493","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:59 +0000 2015","id":663720192464306176,"id_str":"663720192464306176","text":"Buenas noticias para las tortugas mexicanas en 3 d\u00edas tendr\u00e1n a @MalditaNerea en el @LunarioMx \ud83d\udc22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":473194235,"id_str":"473194235","name":"Maldita Nerea Gal","screen_name":"MalditaNereaGal","location":"Pontevedra,Galicia","url":"http:\/\/malditanerea.com","description":"Cuenta de apoyo NO oficial de apoyo a @MalditaNerea desde Galicia. \u00d7INFORMACION SOBRE: Maldita Nerea, Lagarto Amarillo y Funambulista\u00d7","protected":false,"verified":false,"followers_count":31,"friends_count":78,"listed_count":0,"favourites_count":7,"statuses_count":47,"created_at":"Tue Jan 24 18:45:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663425547628847104\/GAM1QbRH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663425547628847104\/GAM1QbRH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MalditaNerea","name":"Maldita Nerea","id":27200555,"id_str":"27200555","indices":[64,77]},{"screen_name":"LunarioMx","name":"Lunario","id":67778493,"id_str":"67778493","indices":[84,94]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MalditaNereaGal","name":"Maldita Nerea Gal","id":473194235,"id_str":"473194235","indices":[3,19]},{"screen_name":"MalditaNerea","name":"Maldita Nerea","id":27200555,"id_str":"27200555","indices":[85,98]},{"screen_name":"LunarioMx","name":"Lunario","id":67778493,"id_str":"67778493","indices":[105,115]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888143745024,"id_str":"663727888143745024","text":"Dari sini aku bisa belajar \nDari sini aku bisa memahami sikap2 manusia yg\u2026 https:\/\/t.co\/JYbo6PZnwH","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2942661428,"id_str":"2942661428","name":"putri novita","screen_name":"putribembem8","location":"bangil - pasuruan - jawa timur","url":"http:\/\/putrinovitafirdaus.blogspot.com\/?m=1","description":"untuk saat ini hanya berharap bisa jadi sineas muda berbakat dan bisa kritis akan lingkungan #indonesia_bangkit dan menjadi remaja penerus bangsa yg positif","protected":false,"verified":false,"followers_count":84,"friends_count":239,"listed_count":0,"favourites_count":5,"statuses_count":537,"created_at":"Thu Dec 25 08:33:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614774502585581568\/TAa9Giik_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614774502585581568\/TAa9Giik_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2942661428\/1435005845","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JYbo6PZnwH","expanded_url":"https:\/\/instagram.com\/p\/93iW03D1YmoYNuPGa-hxxmsibFEZCnF29k40c0\/","display_url":"instagram.com\/p\/93iW03D1YmoY\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080034658"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888168914945,"id_str":"663727888168914945","text":"RT @nachunxxx23: \u3055\u3059\u304c\u306b\u6211\u3089\u304c\u59eb\u3082\u304a\u624b\u4e0a\u3052\u3067\u3059\uff08\u7b11\uff09\u811a\u4f38\u3070\u3057\u3066\u9854\u6a2a\u306b\u632f\u308b\u3068\u3053\u308d\u306a\u3093\u304b\u597d\u304d\uff08\u7b11\uff09 https:\/\/t.co\/tlpa5xjE1U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3092388768,"id_str":"3092388768","name":"\u3086\u305a","screen_name":"chibigayaJ","location":null,"url":null,"description":"\u4ffa\u8db3\u65cf\u2661\u30b8\u30e3\u30cb\u30f2\u30bf \u85e4\u5317\u611b\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":537,"friends_count":581,"listed_count":0,"favourites_count":49551,"statuses_count":10895,"created_at":"Tue Mar 17 05:53:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658317649860890624\/T3mT10kY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658317649860890624\/T3mT10kY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092388768\/1443796733","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:31 +0000 2015","id":663726111319269376,"id_str":"663726111319269376","text":"\u3055\u3059\u304c\u306b\u6211\u3089\u304c\u59eb\u3082\u304a\u624b\u4e0a\u3052\u3067\u3059\uff08\u7b11\uff09\u811a\u4f38\u3070\u3057\u3066\u9854\u6a2a\u306b\u632f\u308b\u3068\u3053\u308d\u306a\u3093\u304b\u597d\u304d\uff08\u7b11\uff09 https:\/\/t.co\/tlpa5xjE1U","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411163786,"id_str":"411163786","name":"\u306a\u3061\u3085\u3093\uff20\u80cc\u4e2d\u62c5(*\u2202\u03c9\u2202*`)","screen_name":"nachunxxx23","location":"\u03be*\u2018 \uff2f\u2018)\u597d\u3044\u3068\u30fc\u3070\u3044","url":"https:\/\/vine.co\/nachunxxx23","description":"\u624b\u3068\u80cc\u4e2d\u304c\u5927\u597d\u7269\uff01\uff01\u3068\u306b\u304b\u304f\u80cc\u4e2d\u306b\u6e67\u304d\u307e\u3059*\u0b18\u03be\u0a6d*\u2018 o\u2018)\u0a6d* \u0a48\u2729\u2027\u208a\u02da","protected":false,"verified":false,"followers_count":7045,"friends_count":262,"listed_count":35,"favourites_count":6060,"statuses_count":68364,"created_at":"Sun Nov 13 02:28:35 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F786DE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646397408981741568\/EO0E60zY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646397408981741568\/EO0E60zY.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606450210189869057\/XmmLZgk0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606450210189869057\/XmmLZgk0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411163786\/1446982712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":80,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tlpa5xjE1U","expanded_url":"https:\/\/vine.co\/v\/elMYZK0Lqlm","display_url":"vine.co\/v\/elMYZK0Lqlm","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tlpa5xjE1U","expanded_url":"https:\/\/vine.co\/v\/elMYZK0Lqlm","display_url":"vine.co\/v\/elMYZK0Lqlm","indices":[57,80]}],"user_mentions":[{"screen_name":"nachunxxx23","name":"\u306a\u3061\u3085\u3093\uff20\u80cc\u4e2d\u62c5(*\u2202\u03c9\u2202*`)","id":411163786,"id_str":"411163786","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888152199168,"id_str":"663727888152199168","text":"Best PC Games, you can download all games for free. action , adventure, rpg, anime ...| PC Games Download https:\/\/t.co\/cR4ag3bI35","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4138598294,"id_str":"4138598294","name":"Muhammad Ansari","screen_name":"ansarifans","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":212,"listed_count":1,"favourites_count":10,"statuses_count":33,"created_at":"Thu Nov 05 20:27:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cR4ag3bI35","expanded_url":"http:\/\/pcgamesdownload.xyz\/","display_url":"pcgamesdownload.xyz","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034660"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888147943425,"id_str":"663727888147943425","text":"@gyufashion does this mean infinite is going to Mexico?!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724926453477376,"in_reply_to_status_id_str":"663724926453477376","in_reply_to_user_id":637310805,"in_reply_to_user_id_str":"637310805","in_reply_to_screen_name":"gyufashion","user":{"id":34451820,"id_str":"34451820","name":"karina","screen_name":"kariri07","location":null,"url":null,"description":"Music=Life Infinite=Life Nintendo=Life girls groups=\u2661\u2661","protected":false,"verified":false,"followers_count":64,"friends_count":237,"listed_count":4,"favourites_count":11160,"statuses_count":13727,"created_at":"Wed Apr 22 23:59:09 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0921B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585167081831731200\/FPGp_pk2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585167081831731200\/FPGp_pk2.jpg","profile_background_tile":true,"profile_link_color":"C219C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658822134634942464\/DFwfcmb3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658822134634942464\/DFwfcmb3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34451820\/1440162119","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gyufashion","name":"Bel ^^","id":637310805,"id_str":"637310805","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888168980480,"id_str":"663727888168980480","text":"@Tinacordova88 He probably doesn't \ud83d\ude29\ud83d\ude05","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727565023105025,"in_reply_to_status_id_str":"663727565023105025","in_reply_to_user_id":547994923,"in_reply_to_user_id_str":"547994923","in_reply_to_screen_name":"Tinacordova88","user":{"id":1623116156,"id_str":"1623116156","name":"Beto_Castillo","screen_name":"Beto_Castillo98","location":null,"url":null,"description":"Pain is Beauty","protected":false,"verified":false,"followers_count":115,"friends_count":202,"listed_count":0,"favourites_count":3012,"statuses_count":1436,"created_at":"Fri Jul 26 14:40:39 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633493957507436544\/XYBIuKOr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633493957507436544\/XYBIuKOr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1623116156\/1432596771","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tinacordova88","name":"C\u044f\u03b9\u0455\u0442\u03b9\u03b7\u03b1 C\u03c3\u044f\u2202\u03c3\u03bd\u03b1\u22c6","id":547994923,"id_str":"547994923","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034664"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888152313856,"id_str":"663727888152313856","text":"#4DaysUntilMITAM aww falta muuy poco! :3 Hoy se cumplen 3 A\u00f1os de el album 'TAKE ME HOME' :') Necesito q 2017 llegue rapido! Los extra\u00f1are","source":"\u003ca href=\"http:\/\/www.microsoft.com\" rel=\"nofollow\"\u003eMicrosoft Connect\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":789366218,"id_str":"789366218","name":"DMD_WDYM? :'3","screen_name":"JB_1D_Zayn_DMD","location":"Londres UK... Ojala! ;)","url":null,"description":"I'm Belieber and Directioner & Zquad \u00f1.\u00f1\r\n1D & JB & Zayn :) :) :D\r\nLos amo a todos:'3 Ellos siempre estaran en mi corazon:)\r\nFollow me and Follow Back:3","protected":false,"verified":false,"followers_count":262,"friends_count":642,"listed_count":7,"favourites_count":1864,"statuses_count":4318,"created_at":"Wed Aug 29 13:40:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656560849994293248\/5VhZnfPe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656560849994293248\/5VhZnfPe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/789366218\/1445881734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080034660"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888156389376,"id_str":"663727888156389376","text":"@hongweibing \u8e0a\u308a\u5b50Lv\u304c87\u306b\u3042\u304c\u3063\u305f\uff01(+6) \u3044\u3058\u3089\u3057\u3055\u3001\u5984\u60f3\u529b\u3001\u3084\u308f\u3089\u304b\u3055\u7b49\u304c\u3042\u304c\u3063\u305f\uff01(\u30e1\u30c0\u30eb+6) \u3010\u30ed\u30b0\u30dcGET\u2192 https:\/\/t.co\/0GSGA0as6r \u3011 #lvup","source":"\u003ca href=\"https:\/\/lvagatter.jp\/\" rel=\"nofollow\"\u003e\u308c\u3079\u308b\u3042\u304c\u3063\u305f\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":19591401,"in_reply_to_user_id_str":"19591401","in_reply_to_screen_name":"hongweibing","user":{"id":19591401,"id_str":"19591401","name":"9-545@\u30b3\u30df\u30c6\u30a3\u30a2114 B02b","screen_name":"hongweibing","location":"\u308f\u304f\u308f\u304f\u304a\u3061\u3093\u3061\u3093\u30e9\u30f3\u30c9","url":"http:\/\/aw108.blog.fc2.com\/","description":"\u9244\u9053\u3068\u4e0b\u30cd\u30bf\u304c\u597d\u304d\u306a\u305f\u3060\u306e\u306b\u308f\u304b\u3067\u3059\u3002\u6642\u3005\u5207\u308a\u7d75\u3082\u4f5c\u308a\u307e\u3059\u3002\u4e5d\u6761\u30cd\u30ae\u3082\u597d\u304d\u3067\u3059\u3002(http:\/\/twitpic.com\/photos\/hongweibing)(http:\/\/twpf.jp\/hongweibing)","protected":false,"verified":false,"followers_count":478,"friends_count":584,"listed_count":46,"favourites_count":1518,"statuses_count":129884,"created_at":"Tue Jan 27 13:29:01 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"7BAE3F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550672606496423936\/s2pn2Ark.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550672606496423936\/s2pn2Ark.jpeg","profile_background_tile":true,"profile_link_color":"7BAE3F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656039429488799744\/Tc2oEOV4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656039429488799744\/Tc2oEOV4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19591401\/1444398911","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lvup","indices":[97,102]}],"urls":[{"url":"https:\/\/t.co\/0GSGA0as6r","expanded_url":"https:\/\/lvagatter.jp\/status.php?user_id=19591401","display_url":"lvagatter.jp\/status.php?use\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"hongweibing","name":"9-545@\u30b3\u30df\u30c6\u30a3\u30a2114 B02b","id":19591401,"id_str":"19591401","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034661"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888164765696,"id_str":"663727888164765696","text":"muka sis bahagia\ud83d\udc83\ud83c\udffb https:\/\/t.co\/SYQKlMhxdL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":861085219,"id_str":"861085219","name":"\u0627\u064a\u0632\u064a\u0644\u064a\u0646","screen_name":"Crushchoiminho","location":"negeri sembilan","url":null,"description":"assalamualaikum \u2764\ufe0f never give permanent feelings to a temporary person . #towardsdean&firstclassIBM UUMians#towardsflawless","protected":false,"verified":false,"followers_count":1333,"friends_count":1194,"listed_count":3,"favourites_count":6681,"statuses_count":10773,"created_at":"Thu Oct 04 08:43:23 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E1164F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000111178116\/6a720d5292482e1833ef931c55dd6045.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000111178116\/6a720d5292482e1833ef931c55dd6045.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"92FF78","profile_text_color":"FFF73D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662667913015328768\/T_xkqyZb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662667913015328768\/T_xkqyZb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/861085219\/1446827256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727643980726272,"id_str":"663727643980726272","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxo8UAAAc48m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxo8UAAAc48m.jpg","url":"https:\/\/t.co\/SYQKlMhxdL","display_url":"pic.twitter.com\/SYQKlMhxdL","expanded_url":"http:\/\/twitter.com\/Crushchoiminho\/status\/663727888164765696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727643980726272,"id_str":"663727643980726272","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIxo8UAAAc48m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIxo8UAAAc48m.jpg","url":"https:\/\/t.co\/SYQKlMhxdL","display_url":"pic.twitter.com\/SYQKlMhxdL","expanded_url":"http:\/\/twitter.com\/Crushchoiminho\/status\/663727888164765696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080034663"} +{"delete":{"status":{"id":663724327209168896,"id_str":"663724327209168896","user_id":2626303637,"user_id_str":"2626303637"},"timestamp_ms":"1447080035036"}} +{"delete":{"status":{"id":642134055081742337,"id_str":"642134055081742337","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080035086"}} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888148004864,"id_str":"663727888148004864","text":"\u25c912\/14\u6708\n\u4eac\u90fd\u2022\u5927\u962a\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\u5036\u697d\u90e8\u3010\u304a\u4eac\u962a\u3011\u7b2c\u4e00\u56de\u6d3b\u52d5\u65e5\n@\u5927\u962a\u4e2d\u6d25tontoncafe \n19\u6642\u534a\u301c21\u6642\u534a\n\n\u203b\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\u6301\u3063\u3066\u904a\u3073\u306b\u3069\u3046\u305e\uff01\u90fd\u4e38\u667a\u6804\u3001\u79e6\u30b3\u30fc\u30bf\u30ed\u30fc\u3068\u7df4\u7fd2\u3001\u30bb\u30c3\u30b7\u30e7\u30f3\uff01\n\u6ce8\u6587\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u898b\u5b66OK https:\/\/t.co\/xgKiB3biXL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212525061,"id_str":"212525061","name":"\u90fd\u4e38\u667a\u6804\/\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3","screen_name":"tomarutomoharu","location":"\u4eac\u90fd","url":"http:\/\/hebitukai.blog.shinobi.jp","description":"\u25c9\u3010\u30b6\u30c3\u30cf\u30c8\u30eb\u30c6\u3011\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\u62c5\u5f53\u3002TVCM\u300e\u30a2\u30d2\u30eb\u306e\u30ef\u30eb\u30c4\u300f\u300e\u6301\u75c5\u306e\u6b4c\u300f\u6f14\u594f\u3002\u3010\u304a\u304b\u3042\u3055\u3093\u3068\u3044\u3063\u3057\u3087\u30112010.9\u6708\u306e\u6b4c\u300e\u30c9\u30b3\u30ce\u30b3\u30ce\u30ad\u30ce\u30b3\u300f\u4f5c\u66f2\u7de8\u66f2\u6f14\u594f\u30b3\u30fc\u30e9\u30b9\u3002\u300e\u98a8\u3092\u559a\u3076\u4e59\u5973\u7b2c\u4e8c\u697d\u7ae0\u300fTV\u6771\u4eac\u3010\u7f8e\u306e\u5de8\u4eba\u305f\u3061\u3011ED\u30c6\u30fc\u30de\u3002\u25c9\u5bbf\u6575(\u3068\u3082)\u306f\u539f\u7530\u5fe0acc\u3002\u25c9\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\u6559\u5ba4\u3082\u3084\u3063\u3066\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":2158,"friends_count":955,"listed_count":89,"favourites_count":3214,"statuses_count":22246,"created_at":"Sat Nov 06 09:48:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2468388078\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2468388078\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212525061\/1431266656","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727879977472000,"id_str":"663727879977472000","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_YGUkAAPI54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_YGUkAAPI54.jpg","url":"https:\/\/t.co\/xgKiB3biXL","display_url":"pic.twitter.com\/xgKiB3biXL","expanded_url":"http:\/\/twitter.com\/tomarutomoharu\/status\/663727888148004864\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727879977472000,"id_str":"663727879977472000","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_YGUkAAPI54.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_YGUkAAPI54.jpg","url":"https:\/\/t.co\/xgKiB3biXL","display_url":"pic.twitter.com\/xgKiB3biXL","expanded_url":"http:\/\/twitter.com\/tomarutomoharu\/status\/663727888148004864\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080034659"} +{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888156463104,"id_str":"663727888156463104","text":"#Sitges #sinfiltro by majetse https:\/\/t.co\/vsWJK9QUct https:\/\/t.co\/SiGYkcRxcA","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3397002778,"id_str":"3397002778","name":"Insta Sitges","screen_name":"InstaSitges","location":"Sitges, Catalonia","url":null,"description":"Latest pics posted in Instagram from #Sitges.","protected":false,"verified":false,"followers_count":322,"friends_count":136,"listed_count":343,"favourites_count":32,"statuses_count":39620,"created_at":"Fri Jul 31 10:46:18 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627074251665842176\/4mVPsQJz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627074251665842176\/4mVPsQJz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3397002778\/1438340703","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sitges","indices":[0,7]},{"text":"sinfiltro","indices":[8,18]}],"urls":[{"url":"https:\/\/t.co\/vsWJK9QUct","expanded_url":"https:\/\/instagram.com\/p\/93iFkqTh7j\/","display_url":"instagram.com\/p\/93iFkqTh7j\/","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663727887925813248,"id_str":"663727887925813248","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_1tWoAA11ij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_1tWoAA11ij.jpg","url":"https:\/\/t.co\/SiGYkcRxcA","display_url":"pic.twitter.com\/SiGYkcRxcA","expanded_url":"http:\/\/twitter.com\/InstaSitges\/status\/663727888156463104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727887925813248,"id_str":"663727887925813248","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_1tWoAA11ij.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_1tWoAA11ij.jpg","url":"https:\/\/t.co\/SiGYkcRxcA","display_url":"pic.twitter.com\/SiGYkcRxcA","expanded_url":"http:\/\/twitter.com\/InstaSitges\/status\/663727888156463104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080034661"} +{"delete":{"status":{"id":299686606951034880,"id_str":"299686606951034880","user_id":319246545,"user_id_str":"319246545"},"timestamp_ms":"1447080035445"}} +{"delete":{"status":{"id":655333559134244864,"id_str":"655333559134244864","user_id":280558701,"user_id_str":"280558701"},"timestamp_ms":"1447080035510"}} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367605760,"id_str":"663727892367605760","text":"Me voy a sobar un rato","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1112684988,"id_str":"1112684988","name":"Paaaaaaaaaaaanda. \u2744","screen_name":"WarsofHatred_","location":"Valencia\/Ja\u00e9n.","url":"http:\/\/w.tt\/1yza3u8","description":"No hope, just lies.","protected":false,"verified":false,"followers_count":1412,"friends_count":452,"listed_count":39,"favourites_count":18456,"statuses_count":59726,"created_at":"Tue Jan 22 21:35:25 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511583172249677824\/5vQtEqmL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511583172249677824\/5vQtEqmL.jpeg","profile_background_tile":true,"profile_link_color":"00FFBB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656447961241669632\/56H47EgP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656447961241669632\/56H47EgP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1112684988\/1443123561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338225152,"id_str":"663727892338225152","text":"RT @elpaissemanal: El fot\u00f3grafo Oliver Roma hizo lo que la memoria hace https:\/\/t.co\/GQks9KhkXx Congel\u00f3 12.460 fotos y esper\u00f3 a que el hiel\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360194970,"id_str":"360194970","name":"Jessica G F","screen_name":"Grandio_JF","location":null,"url":"https:\/\/www.flickr.com\/photos\/grandio","description":"Xornalista. Cos p\u00e9s na terra e a alma sempre viaxeira. Social Media Manager en @roiscroll Conta persoal, opini\u00f3ns propias. RT is not endorsement.","protected":false,"verified":false,"followers_count":118,"friends_count":100,"listed_count":18,"favourites_count":474,"statuses_count":980,"created_at":"Mon Aug 22 20:56:53 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576639825\/vqdk7du16la7qzlpncte.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576639825\/vqdk7du16la7qzlpncte.jpeg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633236856847626240\/yr-Rf4FM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633236856847626240\/yr-Rf4FM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360194970\/1439810438","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:14 +0000 2015","id":663718743604858880,"id_str":"663718743604858880","text":"El fot\u00f3grafo Oliver Roma hizo lo que la memoria hace https:\/\/t.co\/GQks9KhkXx Congel\u00f3 12.460 fotos y esper\u00f3 a que el hielo dejara sus marcas","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28483909,"id_str":"28483909","name":"EL PA\u00cdS SEMANAL","screen_name":"elpaissemanal","location":"Madrid","url":"http:\/\/www.elpaissemanal.com","description":"Grandes reportajes y entrevistas, firmas de referencia y periodismo de calidad. Todos los domingos con @el_pais","protected":false,"verified":true,"followers_count":203113,"friends_count":762,"listed_count":3265,"favourites_count":20,"statuses_count":26704,"created_at":"Fri Apr 03 02:42:55 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506443503\/f-elpaissemanal.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506443503\/f-elpaissemanal.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517697249065721856\/BJQMRcNn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517697249065721856\/BJQMRcNn_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GQks9KhkXx","expanded_url":"http:\/\/elpais.com\/elpais\/2015\/10\/30\/eps\/1446205590_323241.html","display_url":"elpais.com\/elpais\/2015\/10\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GQks9KhkXx","expanded_url":"http:\/\/elpais.com\/elpais\/2015\/10\/30\/eps\/1446205590_323241.html","display_url":"elpais.com\/elpais\/2015\/10\u2026","indices":[72,95]}],"user_mentions":[{"screen_name":"elpaissemanal","name":"EL PA\u00cdS SEMANAL","id":28483909,"id_str":"28483909","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338229248,"id_str":"663727892338229248","text":"RT @guglepta: \u043a\u0430\u043a \u043d\u0435\u0437\u0430\u043c\u0435\u0442\u043d\u043e \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0435\u043a\u0441\u0430","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2165413239,"id_str":"2165413239","name":"\u041b\u044e\u0431\u043e\u0432\u043d\u0438\u0446\u0430 \u0418\u0438\u0441\u0443\u0441\u0430","screen_name":"AsyaLoveDrink","location":"\u041c\u043e\u0441\u043a\u0432\u0430, \u0420\u043e\u0441\u0441\u0438\u044f","url":null,"description":"\u0414\u0435\u0433\u0440\u0430\u0434\u0438\u0440\u0443\u044e \u043a\u0430\u043a \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u044c","protected":false,"verified":false,"followers_count":129,"friends_count":30,"listed_count":0,"favourites_count":6,"statuses_count":95,"created_at":"Sat Nov 02 21:16:36 +0000 2013","utc_offset":14400,"time_zone":"Muscat","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663454784305758208\/FrQX6rlg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663454784305758208\/FrQX6rlg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2165413239\/1446979534","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:46:04 +0000 2015","id":663699074135285760,"id_str":"663699074135285760","text":"\u043a\u0430\u043a \u043d\u0435\u0437\u0430\u043c\u0435\u0442\u043d\u043e \u043f\u043e\u043a\u0443\u0448\u0430\u0442\u044c \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u0435\u043a\u0441\u0430","source":"\u003ca href=\"http:\/\/get-tweets.info\" rel=\"nofollow\"\u003eget-tweets.info6\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3104879477,"id_str":"3104879477","name":"\u0442\u0443\u043f\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u044b","screen_name":"guglepta","location":null,"url":null,"description":"\u041f\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430\u043c \u0441\u043e\u0442\u0440\u0443\u0434\u043d\u0438\u0447\u0435\u0441\u0442\u0432\u0430 twittershop@yandex.ru","protected":false,"verified":false,"followers_count":101643,"friends_count":19,"listed_count":137,"favourites_count":0,"statuses_count":5036,"created_at":"Sun Mar 22 14:55:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602904833666883584\/ImnrZZ86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602904833666883584\/ImnrZZ86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104879477\/1432579517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":111,"favorite_count":191,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"guglepta","name":"\u0442\u0443\u043f\u044b\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u044b","id":3104879477,"id_str":"3104879477","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892354977792,"id_str":"663727892354977792","text":"RT @allie_beckworth: Let's hope this week goes better than last week","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":563306382,"id_str":"563306382","name":"Kate\u271d","screen_name":"Kate_M_16","location":"Baxley, GA","url":null,"description":"\u2022Snapchat: katemichelle16 \u2022 Senior @ ACHS \u2022 @Kait4200\u2764\ufe0f \u2022","protected":false,"verified":false,"followers_count":670,"friends_count":396,"listed_count":2,"favourites_count":10527,"statuses_count":29231,"created_at":"Wed Apr 25 22:00:41 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662079245326417920\/_D7E9BIH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662079245326417920\/_D7E9BIH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/563306382\/1447001642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727797484015616,"id_str":"663727797484015616","text":"Let's hope this week goes better than last week","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":716570785,"id_str":"716570785","name":"A\u00a3\u00a3\u00a1\u20ac B.","screen_name":"allie_beckworth","location":"Little town Baxley Ga. ","url":null,"description":null,"protected":false,"verified":false,"followers_count":816,"friends_count":505,"listed_count":1,"favourites_count":3978,"statuses_count":10358,"created_at":"Wed Jul 25 18:57:00 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647800558166929409\/CuJC38fB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647800558166929409\/CuJC38fB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/716570785\/1443283429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"allie_beckworth","name":"A\u00a3\u00a3\u00a1\u20ac B.","id":716570785,"id_str":"716570785","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035662"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892355031040,"id_str":"663727892355031040","text":"RT @TheSoccerLifee: This free kick is one of Ronaldo's best \ud83d\ude4c\ud83c\udffb http:\/\/t.co\/wJV9PSMHDw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3903539053,"id_str":"3903539053","name":"Jade Caraballo","screen_name":"jaycee_0612","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":18,"friends_count":37,"listed_count":0,"favourites_count":66,"statuses_count":22,"created_at":"Thu Oct 15 14:15:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654662674467282944\/cLAI4XLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654662674467282944\/cLAI4XLC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 09 22:56:38 +0000 2015","id":641747066801094656,"id_str":"641747066801094656","text":"This free kick is one of Ronaldo's best \ud83d\ude4c\ud83c\udffb http:\/\/t.co\/wJV9PSMHDw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551341615,"id_str":"551341615","name":"The Soccer Life","screen_name":"TheSoccerLifee","location":"The Pitch","url":"http:\/\/instagram.com\/the.soccerlifee","description":"\u2022Daily soccer tweets\u2022| Road to 50k! | Always stay true to the game \u26bd\ufe0f Check out our instagram @the.soccerlifee","protected":false,"verified":false,"followers_count":46984,"friends_count":8646,"listed_count":57,"favourites_count":153,"statuses_count":5646,"created_at":"Wed Apr 11 21:40:29 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660392361\/kcrtnfuj49c9m7vpqa5g.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660392361\/kcrtnfuj49c9m7vpqa5g.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621144589643218944\/ZuRYk2AM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621144589643218944\/ZuRYk2AM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551341615\/1433027303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":473,"favorite_count":550,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":641747030092591105,"id_str":"641747030092591105","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","url":"http:\/\/t.co\/wJV9PSMHDw","display_url":"pic.twitter.com\/wJV9PSMHDw","expanded_url":"http:\/\/twitter.com\/TheSoccerLifee\/status\/641747066801094656\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":641747030092591105,"id_str":"641747030092591105","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","url":"http:\/\/t.co\/wJV9PSMHDw","display_url":"pic.twitter.com\/wJV9PSMHDw","expanded_url":"http:\/\/twitter.com\/TheSoccerLifee\/status\/641747066801094656\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":6673,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/480x480\/VFYQKcxldzybGWbT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/pl\/7qP1uUzQLdInW8As.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/pl\/7qP1uUzQLdInW8As.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/240x240\/PTradq7A0nmE6T_6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/480x480\/VFYQKcxldzybGWbT.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheSoccerLifee","name":"The Soccer Life","id":551341615,"id_str":"551341615","indices":[3,18]}],"symbols":[],"media":[{"id":641747030092591105,"id_str":"641747030092591105","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","url":"http:\/\/t.co\/wJV9PSMHDw","display_url":"pic.twitter.com\/wJV9PSMHDw","expanded_url":"http:\/\/twitter.com\/TheSoccerLifee\/status\/641747066801094656\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":641747066801094656,"source_status_id_str":"641747066801094656","source_user_id":551341615,"source_user_id_str":"551341615"}]},"extended_entities":{"media":[{"id":641747030092591105,"id_str":"641747030092591105","indices":[63,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/641747030092591105\/pu\/img\/_eCp6a9QQCmRaLMs.jpg","url":"http:\/\/t.co\/wJV9PSMHDw","display_url":"pic.twitter.com\/wJV9PSMHDw","expanded_url":"http:\/\/twitter.com\/TheSoccerLifee\/status\/641747066801094656\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":641747066801094656,"source_status_id_str":"641747066801094656","source_user_id":551341615,"source_user_id_str":"551341615","video_info":{"aspect_ratio":[1,1],"duration_millis":6673,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/480x480\/VFYQKcxldzybGWbT.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/pl\/7qP1uUzQLdInW8As.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/pl\/7qP1uUzQLdInW8As.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/240x240\/PTradq7A0nmE6T_6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/641747030092591105\/pu\/vid\/480x480\/VFYQKcxldzybGWbT.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035662"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892350767104,"id_str":"663727892350767104","text":"RT @XMONSTAXBR: [PIC] 151109 #MONSTA_X Diary Fancafe Update - School Attack #HERO #\ud788\uc5b4\ub85c #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4\n https:\/\/t.co\/6l9gayv138","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411498974,"id_str":"411498974","name":"Lara","screen_name":"oradirectionz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16031,"friends_count":11103,"listed_count":11,"favourites_count":121,"statuses_count":59105,"created_at":"Sun Nov 13 14:05:16 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606245657482002432\/O_g5rM-A.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606245657482002432\/O_g5rM-A.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659126929757487106\/yk6en4gi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659126929757487106\/yk6en4gi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411498974\/1445983079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727655481643008,"id_str":"663727655481643008","text":"[PIC] 151109 #MONSTA_X Diary Fancafe Update - School Attack #HERO #\ud788\uc5b4\ub85c #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4\n https:\/\/t.co\/6l9gayv138","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3435887806,"id_str":"3435887806","name":"XMONSTAX","screen_name":"XMONSTAXBR","location":null,"url":"https:\/\/youtu.be\/zCpPsAfXJFo","description":"Fanbase brasileira dedicada ao grupo sul coreano Monsta X \u2b50 Canal de com\u00e9dia do Monsta X \u2764","protected":false,"verified":false,"followers_count":1421,"friends_count":1860,"listed_count":5,"favourites_count":2687,"statuses_count":6053,"created_at":"Sat Aug 22 19:18:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663517647670243329\/giCvuGGl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663517647670243329\/giCvuGGl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3435887806\/1446043550","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"MONSTA_X","indices":[13,22]},{"text":"HERO","indices":[60,65]},{"text":"\ud788\uc5b4\ub85c","indices":[66,70]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[71,77]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663665592725975040,"id_str":"663665592725975040","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":627,"h":449,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"}]},"extended_entities":{"media":[{"id":663665592725975040,"id_str":"663665592725975040","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":627,"h":449,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665594806329345,"id_str":"663665594806329345","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQV5wUYAEeliK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQV5wUYAEeliK.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"large":{"w":788,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665596752523265,"id_str":"663665596752523265","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQWBAU8AEu2X2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQWBAU8AEu2X2.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":542,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":231,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665598254071808,"id_str":"663665598254071808","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQWGmUwAAslOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQWGmUwAAslOR.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":1040,"resize":"fit"},"medium":{"w":600,"h":878,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":498,"resize":"fit"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MONSTA_X","indices":[29,38]},{"text":"HERO","indices":[76,81]},{"text":"\ud788\uc5b4\ub85c","indices":[82,86]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[87,93]}],"urls":[],"user_mentions":[{"screen_name":"XMONSTAXBR","name":"XMONSTAX","id":3435887806,"id_str":"3435887806","indices":[3,14]}],"symbols":[],"media":[{"id":663665592725975040,"id_str":"663665592725975040","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":627,"h":449,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"}]},"extended_entities":{"media":[{"id":663665592725975040,"id_str":"663665592725975040","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQVyAUsAAzKEf.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":627,"h":449,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665594806329345,"id_str":"663665594806329345","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQV5wUYAEeliK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQV5wUYAEeliK.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"large":{"w":788,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665596752523265,"id_str":"663665596752523265","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQWBAU8AEu2X2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQWBAU8AEu2X2.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":542,"resize":"fit"},"medium":{"w":600,"h":409,"resize":"fit"},"small":{"w":340,"h":231,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"},{"id":663665598254071808,"id_str":"663665598254071808","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXQWGmUwAAslOR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXQWGmUwAAslOR.jpg","url":"https:\/\/t.co\/6l9gayv138","display_url":"pic.twitter.com\/6l9gayv138","expanded_url":"http:\/\/twitter.com\/MONSTAXUS\/status\/663665604302278656\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":1040,"resize":"fit"},"medium":{"w":600,"h":878,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":498,"resize":"fit"}},"source_status_id":663665604302278656,"source_status_id_str":"663665604302278656","source_user_id":3075722750,"source_user_id_str":"3075722750"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035661"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892334006272,"id_str":"663727892334006272","text":"@sofianazeroual ok","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727848000212992,"in_reply_to_status_id_str":"663727848000212992","in_reply_to_user_id":2702537086,"in_reply_to_user_id_str":"2702537086","in_reply_to_screen_name":"sofianazeroual","user":{"id":2798386156,"id_str":"2798386156","name":"brisset Michael","screen_name":"brissetmichael1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":117,"friends_count":744,"listed_count":9,"favourites_count":752,"statuses_count":7246,"created_at":"Wed Oct 01 16:56:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sofianazeroual","name":"\u263a\ufe0f","id":2702537086,"id_str":"2702537086","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080035657"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359200768,"id_str":"663727892359200768","text":"RT @Amanda_1Dsempre: Precisamos fazer alguma coisa! As visualiza\u00e7\u00f5es de Perfect n\u00e3o esta tao perfeito assim #4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2974860477,"id_str":"2974860477","name":"TEMPORARY FIX","screen_name":"ZAYNPETULANTE","location":"i\u2019m olivia, bitches","url":"https:\/\/twitter.com\/real_liam_payne\/status\/10656271975841792","description":"[Z\u0e04\u028f\u03b7's voic\u0454] E\u044fv\u03b1 \u0e17\u03b1o \u0493\u03b1z m\u03b1\u2113, \u00e9 m\u03b1\u03c4o, c\u044f\u0454sc\u0454 \u0e17o c\u043d\u03b1o \u0131\u0262\u03c5\u03b1\u2113 \u0467\u044f\u044foz","protected":false,"verified":false,"followers_count":1725,"friends_count":1251,"listed_count":4,"favourites_count":7131,"statuses_count":44602,"created_at":"Mon Jan 12 16:11:31 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661194906635927552\/uUkbBM1c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661194906635927552\/uUkbBM1c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974860477\/1446239439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:38:44 +0000 2015","id":663576431587418112,"id_str":"663576431587418112","text":"Precisamos fazer alguma coisa! As visualiza\u00e7\u00f5es de Perfect n\u00e3o esta tao perfeito assim #4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2540216987,"id_str":"2540216987","name":"MADE IN THE A.M","screen_name":"Amanda_1Dsempre","location":"S\u00e3o Bernardo do Campo","url":null,"description":"Siga o meu novo twetter @ziamstylinson5","protected":false,"verified":false,"followers_count":713,"friends_count":1245,"listed_count":3,"favourites_count":7065,"statuses_count":13175,"created_at":"Sun May 11 03:04:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465961436594700288\/DSikoC7A.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465961436594700288\/DSikoC7A.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662982848639553536\/UEbdMmm7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662982848639553536\/UEbdMmm7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2540216987\/1446058942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[87,103]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[108,124]}],"urls":[],"user_mentions":[{"screen_name":"Amanda_1Dsempre","name":"MADE IN THE A.M","id":2540216987,"id_str":"2540216987","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338200576,"id_str":"663727892338200576","text":"RT @lifehackspl: #56 Je\u015bli masz wra\u017cenie, \u017ce kto\u015b Ci\u0119 \"obczaja\" z ukrycia - ziewnij. Je\u015bli te\u017c ziewnie, znaczy, \u017ce na Ciebie patrzy\u0142. Ziewa\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2358002610,"id_str":"2358002610","name":"4","screen_name":"lgdjifab","location":"gang flowers","url":null,"description":"i'm sorry","protected":false,"verified":false,"followers_count":1236,"friends_count":1278,"listed_count":12,"favourites_count":6670,"statuses_count":78452,"created_at":"Sun Feb 23 13:36:07 +0000 2014","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581126991132295169\/EwYa2rVN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581126991132295169\/EwYa2rVN.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663469581068038144\/cIpuTWTm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663469581068038144\/cIpuTWTm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2358002610\/1446765954","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Feb 08 21:42:42 +0000 2015","id":564539846338052097,"id_str":"564539846338052097","text":"#56 Je\u015bli masz wra\u017cenie, \u017ce kto\u015b Ci\u0119 \"obczaja\" z ukrycia - ziewnij. Je\u015bli te\u017c ziewnie, znaczy, \u017ce na Ciebie patrzy\u0142. Ziewanie jest zara\u017aliwe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3023718965,"id_str":"3023718965","name":"U\u0142atw sobie \u017cycie","screen_name":"lifehackspl","location":null,"url":null,"description":"Nikt nie powiedzia\u0142, \u017ce w \u017cyciu nie mo\u017cna i\u015b\u0107 na \u0142atwizn\u0119. Nie musisz si\u0119 zgadza\u0107 z poni\u017cszymi tweetami, nie dzia\u0142aj\u0105 u ka\u017cdego.","protected":false,"verified":false,"followers_count":8703,"friends_count":1854,"listed_count":18,"favourites_count":423,"statuses_count":358,"created_at":"Sat Feb 07 19:22:58 +0000 2015","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649219172677853188\/UbwA3d8Z.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649219172677853188\/UbwA3d8Z.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649221494929772544\/fyJXE9SC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649221494929772544\/fyJXE9SC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023718965\/1443621476","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1123,"favorite_count":366,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lifehackspl","name":"U\u0142atw sobie \u017cycie","id":3023718965,"id_str":"3023718965","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892333879296,"id_str":"663727892333879296","text":"RT @Sue_Stgk: \u308c\u306a\u3082\u3052\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":433118870,"id_str":"433118870","name":"\u306d\u3053\u306b\u3083\u3093@\u30b9\u30ed\u798118\u65e5\u76ee","screen_name":"NekoNyan0105","location":"Niigata","url":"http:\/\/com.nicovideo.jp\/community\/co1437189","description":"SuddenAttack NekoNyan\u2605 http:\/\/nG.team Sub","protected":false,"verified":false,"followers_count":1074,"friends_count":194,"listed_count":11,"favourites_count":160,"statuses_count":31181,"created_at":"Sat Dec 10 05:05:39 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662464934123466752\/caGih--R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662464934123466752\/caGih--R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/433118870\/1446778923","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727361704071168,"id_str":"663727361704071168","text":"\u308c\u306a\u3082\u3052\u3089","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539858047,"id_str":"539858047","name":"\u3059\u3048","screen_name":"Sue_Stgk","location":"Stgk(situgoku)Style\u306e\u4eba","url":null,"description":"SACTL2014 \u512a\u52dd\u3000\u3000\u3000\u3000\u3000\u3000SAJCL2015 FinalStage \u512a\u52dd\u3000\u3000\u3000\u3000\u3000\u65e5\u97d3\u30a8\u30ad\u30b7\u30d3\u30b7\u30e7\u30f3\u30de\u30c3\u30c12015 \u52dd\u5229 \u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000WiiU\u30d5\u30ec\u30b3:situgoku\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u8ab0\u3067\u3082\u6c17\u8efd\u306b\u30d5\u30ec\u30f3\u30c9\u9001\u3063\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":1628,"friends_count":200,"listed_count":21,"favourites_count":56,"statuses_count":31737,"created_at":"Thu Mar 29 10:17:08 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654839326899998720\/fv-lcx4u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654839326899998720\/fv-lcx4u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539858047\/1442978047","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sue_Stgk","name":"\u3059\u3048","id":539858047,"id_str":"539858047","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035657"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892371742720,"id_str":"663727892371742720","text":"who's at pure gym?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1884505250,"id_str":"1884505250","name":"Utsha Rahman","screen_name":"utshaaaR","location":"Manchester, UK","url":"http:\/\/Instagram.com\/utshee","description":"Nutrition addict & fitness obsession Insta: utshee","protected":false,"verified":false,"followers_count":128,"friends_count":150,"listed_count":4,"favourites_count":5149,"statuses_count":7208,"created_at":"Thu Sep 19 21:50:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113296561\/e1071a04d6ed40b8ce1aff2cd2feb18d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113296561\/e1071a04d6ed40b8ce1aff2cd2feb18d.jpeg","profile_background_tile":true,"profile_link_color":"2470B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630473358929436672\/1r_CqH3a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630473358929436672\/1r_CqH3a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1884505250\/1436661032","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035666"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892342292480,"id_str":"663727892342292480","text":"\u8db3\u307b\u3063\u305d\u3044\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":419505244,"id_str":"419505244","name":"\u3061\u3072\u3067\u308a\u3093\u2606\u30df","screen_name":"029_Gixxer","location":"\u5fc3\u306f\u3044\u3064\u3082\u57fc\u7389\u306b\u5728\u308a","url":null,"description":"\u307a\u3051\u305f\u3093\u3068\u30cc\u30a4\u30cc\u30dd","protected":false,"verified":false,"followers_count":1027,"friends_count":913,"listed_count":47,"favourites_count":33738,"statuses_count":54600,"created_at":"Wed Nov 23 12:45:06 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662637525987528704\/3KLVO_Sv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662637525987528704\/3KLVO_Sv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/419505244\/1445704458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035659"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338208768,"id_str":"663727892338208768","text":"Model @k_buttons_\n#78SEVENFilms #DoubleCupStandardApproved #BlakShe2p #Sleep4What #S4W\u2026 https:\/\/t.co\/2vWuCskIGz","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":723751488,"id_str":"723751488","name":"Yannas Daddy","screen_name":"Kiddi_Skript","location":"Louisville, KY","url":null,"description":"seek the truth of self before asking the world for answers","protected":false,"verified":false,"followers_count":161,"friends_count":165,"listed_count":7,"favourites_count":142,"statuses_count":8532,"created_at":"Sun Jul 29 10:08:39 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653678344731521024\/a2MMXnlf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653678344731521024\/a2MMXnlf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723751488\/1444684203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"78SEVENFilms","indices":[18,31]},{"text":"DoubleCupStandardApproved","indices":[32,58]},{"text":"BlakShe2p","indices":[59,69]},{"text":"Sleep4What","indices":[70,81]},{"text":"S4W","indices":[82,86]}],"urls":[{"url":"https:\/\/t.co\/2vWuCskIGz","expanded_url":"https:\/\/instagram.com\/p\/93iXP4BFPq\/","display_url":"instagram.com\/p\/93iXP4BFPq\/","indices":[88,111]}],"user_mentions":[{"screen_name":"K_Buttons_","name":"kArYn\/kDot\/kButtons","id":324482183,"id_str":"324482183","indices":[6,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359057408,"id_str":"663727892359057408","text":"\u30aa\u30e9\u30f3\u30c0\u52dd\u3063\u305f\uff01\u53f0\u6e7e\u306f\u6b8b\u5ff5\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2954216484,"id_str":"2954216484","name":"TOPWATER No.07","screen_name":"minikero1975","location":null,"url":null,"description":"\u597d\u304d\u306a\u3082\u306e\uff1a\u80fd\u5e74\u73b2\u5948\u3061\u3083\u3093(\u304f\u308b\u3076\u3057\u3002\u4f1a\u54e1\u266a)\u3001\u8aad\u58f2\u30b8\u30e3\u30a4\u30a2\u30f3\u30c4\u3001\u30c8\u30c3\u30d7\u30a6\u30a9\u30fc\u30bf\u30fc\u306e\u91e3\u308a(\u4e0b\u624b\u304f\u305d\u3067\u3059)\u3001UFC\u7b49\u306e\u683c\u95d8\u6280(\u306b\u308f\u304b\u3067\u3059)\u3001\u304f\u3060\u3089\u306a\u3044\u4e8b\u3082\u3064\u3076\u3084\u304d\u307e\u3059\u3002(^_^;)","protected":false,"verified":false,"followers_count":202,"friends_count":63,"listed_count":4,"favourites_count":26972,"statuses_count":18030,"created_at":"Thu Jan 01 03:17:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662587675673649152\/0K4SXo7Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662587675673649152\/0K4SXo7Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2954216484\/1446233529","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892363354112,"id_str":"663727892363354112","text":"RT @Publico: O debate do programa de Governo ao minuto https:\/\/t.co\/Ddhoj4QUhl","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3103892153,"id_str":"3103892153","name":"Maija Lipasti","screen_name":"MaijaLipasti","location":"Finland","url":null,"description":"A health as well as educational professional and researcher. Interested in human beings, in particular in their experiences, knowledge, and conceptions.","protected":false,"verified":false,"followers_count":6,"friends_count":56,"listed_count":1,"favourites_count":93,"statuses_count":216,"created_at":"Sun Mar 22 08:04:33 +0000 2015","utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"lang":"fi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:57 +0000 2015","id":663726977015226369,"id_str":"663726977015226369","text":"O debate do programa de Governo ao minuto https:\/\/t.co\/Ddhoj4QUhl","source":"\u003ca href=\"http:\/\/www.publico.pt\" rel=\"nofollow\"\u003eAutoTweetPublico\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2561091,"id_str":"2561091","name":"P\u00fablico","screen_name":"Publico","location":"Portugal","url":"http:\/\/publico.pt","description":"Estamos onde est\u00e3o as not\u00edcias. Estamos onde est\u00e3o os leitores.","protected":false,"verified":true,"followers_count":360970,"friends_count":106,"listed_count":2219,"favourites_count":191,"statuses_count":257888,"created_at":"Tue Mar 27 21:23:45 +0000 2007","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F3F3F3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D10019","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBE8D8","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575031762155261952\/ZsW9VQTc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575031762155261952\/ZsW9VQTc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561091\/1429196911","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ddhoj4QUhl","expanded_url":"http:\/\/publico.pt\/1713845","display_url":"publico.pt\/1713845","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ddhoj4QUhl","expanded_url":"http:\/\/publico.pt\/1713845","display_url":"publico.pt\/1713845","indices":[55,78]}],"user_mentions":[{"screen_name":"Publico","name":"P\u00fablico","id":2561091,"id_str":"2561091","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080035664"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892363411456,"id_str":"663727892363411456","text":"Viva o momento !","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":492189667,"id_str":"492189667","name":"\u270c\u221e Israel \u261d\u2600marchi\u00ae ","screen_name":"israel_marchi","location":"ME SEGUE ? SDV","url":"http:\/\/Instagram.com\/israel_marchi","description":"\u00a9 Perfil Original & Aut\u00e9ntico\u00ae \u2588\u2551\u258c\u2502\u2588\u2502\u2551\u258c\u2551\u2502\u2502\u2588\u2551\u258c\u2551\u258c\u2551 Verificado por twitter\u00ae","protected":false,"verified":false,"followers_count":412,"friends_count":1909,"listed_count":8,"favourites_count":474,"statuses_count":5972,"created_at":"Tue Feb 14 12:59:28 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508326207717269504\/NSjBW68__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508326207717269504\/NSjBW68__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492189667\/1436395679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080035664"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892346466304,"id_str":"663727892346466304","text":"RT @n_o_g_i46__EBC: \u661f\u91ce\u307f\u306a\u307f\/\u307f\u306a\u307f\n\u307f\u306a\u307f\u306e\u3053\u3068\u304c\u597d\u304d\u306a\u4eba\n\u53ef\u611b\u3044\u3068\u601d\u3046\u4eba\u306fRT\n\u3010\u76ee\u5b89\u3011\n0RT\u2026\u2026\u30d6\u30b9\n50RT\u2026\u2026\u307c\u3061\u307c\u3061\n100RT\u2026\u2026\u305d\u308c\u306a\u308a\n200RT\u2026\u2026\u53ef\u611b\u3044\n300RT\u2026\u2026\u8d85\u53ef\u611b\u3044\u2764\ufe0e\n400RT\u2026\u2026\u8d85\u7d76\u5929\u4f7f\u2764\ufe0e\u2764\ufe0e\n#\u62e1\u6563\u5e0c\u671b\uff01 ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241320554,"id_str":"3241320554","name":"\u25e2\u4e43\u6728\u5742@(\u307e\u309c\u30fc\u309c\u3055)\u30ce\uff62\u3068\uff63","screen_name":"FsdfI","location":"\u65e5\u672c \u798f\u5ca1\u770c","url":null,"description":"\u65b0\u3057\u304f\u30a2\u30ab\u30a6\u30f3\u30c8\u4f5c\u308a\u307e\u3057\u305f\uff01\u4e43\u6728\u5742\u597d\u304d\u306a\u65b9\u304b\u3089\u306e\u30d5\u30a9\u30ed\u30fc\u5f85\u3063\u3066\u3044\u307e\u3059\uff01\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u0669(\u02ca\u15dc\u02cb*)\u0648\u266a","protected":false,"verified":false,"followers_count":556,"friends_count":596,"listed_count":0,"favourites_count":6677,"statuses_count":1944,"created_at":"Wed Jun 10 12:17:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622043693764096000\/n3MZLlY1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622043693764096000\/n3MZLlY1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241320554\/1437143273","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:50:01 +0000 2015","id":663639667485507585,"id_str":"663639667485507585","text":"\u661f\u91ce\u307f\u306a\u307f\/\u307f\u306a\u307f\n\u307f\u306a\u307f\u306e\u3053\u3068\u304c\u597d\u304d\u306a\u4eba\n\u53ef\u611b\u3044\u3068\u601d\u3046\u4eba\u306fRT\n\u3010\u76ee\u5b89\u3011\n0RT\u2026\u2026\u30d6\u30b9\n50RT\u2026\u2026\u307c\u3061\u307c\u3061\n100RT\u2026\u2026\u305d\u308c\u306a\u308a\n200RT\u2026\u2026\u53ef\u611b\u3044\n300RT\u2026\u2026\u8d85\u53ef\u611b\u3044\u2764\ufe0e\n400RT\u2026\u2026\u8d85\u7d76\u5929\u4f7f\u2764\ufe0e\u2764\ufe0e\n#\u62e1\u6563\u5e0c\u671b\uff01 https:\/\/t.co\/jZCprxvWfI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3061717555,"id_str":"3061717555","name":"\u30c9\u30eb\u57a2 \u3010\u57fa\u672c\u7bb1\u63a8\u3057\u3011","screen_name":"n_o_g_i46__EBC","location":"\u30a8\u30d3\u4e2d\u3001\u4e43\u6728\u5742\u3001AKB","url":null,"description":"\u4e43\u6728\u574246\u2026\u2026\u3042\u3057\u3085\u308a\u3093\/AKB48\u2026\u2026\u307f\u30fc\u304a\u3093\u3001\u3071\u308b\u308b\/SKE48\/NMB48\/\u79c1\u7acb\u6075\u6bd4\u5bff\u4e2d\u5b66\u2026\u2026\u3041\u3043\u3041\u3043\u304c\u597d\u304d\u3067\u3059\uff01\uff01\uff11\u3064\u3067\u3082\u91cd\u306a\u308b\u3082\u306e\u304c\u3042\u308b\u4eba\u306f\u30d5\u30a9\u30ed\u30d0100%\u3067\u3059\uff01\uff01\u3044\u308d\u3093\u306a\u3053\u3068\u3092Tweet\u3057\u3066\u3044\u3053\u3046\u3068\u601d\u3063\u3066\u307e\u3059\u306e\u3067\u7686\u3055\u3093\u30d5\u30a1\u30dc&RT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\uff01\uff01\uff01\u73fe\u5b9f\u306e\u65b9\u3067\u306f\u9ad8\u6821\u4e00\u5e74\u751f\u3067\u3059\uff01\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":5962,"friends_count":5923,"listed_count":10,"favourites_count":580,"statuses_count":308,"created_at":"Wed Mar 04 17:25:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661377335761833984\/pRwmn2RA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661377335761833984\/pRwmn2RA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3061717555\/1446519619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":33,"entities":{"hashtags":[{"text":"\u62e1\u6563\u5e0c\u671b","indices":[110,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663639652759269376,"id_str":"663639652759269376","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":233,"h":310,"resize":"fit"},"medium":{"w":233,"h":310,"resize":"fit"},"small":{"w":233,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663639652759269376,"id_str":"663639652759269376","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":233,"h":310,"resize":"fit"},"medium":{"w":233,"h":310,"resize":"fit"},"small":{"w":233,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663639652788637696,"id_str":"663639652788637696","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4NUkAAbDjQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4NUkAAbDjQ.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663639652780216320,"id_str":"663639652780216320","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4LUEAAWUNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4LUEAAWUNS.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}}},{"id":663639652788600832,"id_str":"663639652788600832","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4NUAAA6bEo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4NUAAA6bEo.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u62e1\u6563\u5e0c\u671b","indices":[130,135]}],"urls":[],"user_mentions":[{"screen_name":"n_o_g_i46__EBC","name":"\u30c9\u30eb\u57a2 \u3010\u57fa\u672c\u7bb1\u63a8\u3057\u3011","id":3061717555,"id_str":"3061717555","indices":[3,18]}],"symbols":[],"media":[{"id":663639652759269376,"id_str":"663639652759269376","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":233,"h":310,"resize":"fit"},"medium":{"w":233,"h":310,"resize":"fit"},"small":{"w":233,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663639667485507585,"source_status_id_str":"663639667485507585","source_user_id":3061717555,"source_user_id_str":"3061717555"}]},"extended_entities":{"media":[{"id":663639652759269376,"id_str":"663639652759269376","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4GUcAA_PJV.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":233,"h":310,"resize":"fit"},"medium":{"w":233,"h":310,"resize":"fit"},"small":{"w":233,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663639667485507585,"source_status_id_str":"663639667485507585","source_user_id":3061717555,"source_user_id_str":"3061717555"},{"id":663639652788637696,"id_str":"663639652788637696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4NUkAAbDjQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4NUkAAbDjQ.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663639667485507585,"source_status_id_str":"663639667485507585","source_user_id":3061717555,"source_user_id_str":"3061717555"},{"id":663639652780216320,"id_str":"663639652780216320","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4LUEAAWUNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4LUEAAWUNS.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}},"source_status_id":663639667485507585,"source_status_id_str":"663639667485507585","source_user_id":3061717555,"source_user_id_str":"3061717555"},{"id":663639652788600832,"id_str":"663639652788600832","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4v4NUAAA6bEo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4v4NUAAA6bEo.jpg","url":"https:\/\/t.co\/jZCprxvWfI","display_url":"pic.twitter.com\/jZCprxvWfI","expanded_url":"http:\/\/twitter.com\/n_o_g_i46__EBC\/status\/663639667485507585\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663639667485507585,"source_status_id_str":"663639667485507585","source_user_id":3061717555,"source_user_id_str":"3061717555"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035660"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892333883394,"id_str":"663727892333883394","text":"RT @xiuminjoahanda: \uac00\ub054 \uc774\ubb38\uc744 \ub2eb\uace0 \ub09c\uc0dd\uac01\uc5d0 \ube60\uc838 \ubb34\ub300\uc704 \ub0b4\ubaa8\uc2b5\uc744 \uc0c1\uc0c1\ud558\uace4 \ud588\uc5b4 #EXO \uc11c\ud22c\ub978 \ub0b4\ubaa8\uc2b5\ub3c4 \uc88b\uc544\ud574\uc900 \ub108\uc600\uc9c0\ub9cc \uacfc\ubd84\ud55c \uadf8\uc0ac\ub791\uc744 \ubc1b\uc544\ub3c4 \ub418\ub294\uc9c0 #2015MAMA \uc5b8\uc81c\ub098 \uadf8\uc790\ub9ac\uc5d0 \uae30\ub2e4\ub824\uc900 \ub108 #CALLMEBABY \ub450\ud314\ub85c \uac10\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958823230,"id_str":"2958823230","name":"\uc54c\ud2f0\ud558\ub2e4\ud648\ub9c8\uc0ac\uc9c4\ubabb\ubcf4\uaca0\ub124\ub9c8\ub9c8\uc528\ubc1c\ub144","screen_name":"1304_01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":33,"listed_count":0,"favourites_count":0,"statuses_count":158,"created_at":"Sun Jan 04 20:49:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722901749653504\/1vC-QC4x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722901749653504\/1vC-QC4x_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:54 +0000 2015","id":663727719545372673,"id_str":"663727719545372673","text":"\uac00\ub054 \uc774\ubb38\uc744 \ub2eb\uace0 \ub09c\uc0dd\uac01\uc5d0 \ube60\uc838 \ubb34\ub300\uc704 \ub0b4\ubaa8\uc2b5\uc744 \uc0c1\uc0c1\ud558\uace4 \ud588\uc5b4 #EXO \uc11c\ud22c\ub978 \ub0b4\ubaa8\uc2b5\ub3c4 \uc88b\uc544\ud574\uc900 \ub108\uc600\uc9c0\ub9cc \uacfc\ubd84\ud55c \uadf8\uc0ac\ub791\uc744 \ubc1b\uc544\ub3c4 \ub418\ub294\uc9c0 #2015MAMA \uc5b8\uc81c\ub098 \uadf8\uc790\ub9ac\uc5d0 \uae30\ub2e4\ub824\uc900 \ub108 #CALLMEBABY \ub450\ud314\ub85c \uac10\uc2f8 \uc548\uc544\uc900 \uace0\ub9c8\uc6b4\ub108 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004994270,"id_str":"3004994270","name":"\ubbfc\uc11d\uc544","screen_name":"xiuminjoahanda","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":327,"listed_count":0,"favourites_count":26,"statuses_count":124,"created_at":"Sat Jan 31 15:09:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721634184826880\/9ctH09Uk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721634184826880\/9ctH09Uk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[35,39]},{"text":"2015MAMA","indices":[76,85]},{"text":"CALLMEBABY","indices":[102,113]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[130,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[55,59]},{"text":"2015MAMA","indices":[96,105]},{"text":"CALLMEBABY","indices":[122,133]}],"urls":[],"user_mentions":[{"screen_name":"xiuminjoahanda","name":"\ubbfc\uc11d\uc544","id":3004994270,"id_str":"3004994270","indices":[3,18]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080035657"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892354891777,"id_str":"663727892354891777","text":"Im so fucking sleepy right now. Bos, xmok overtime rtok boleh? \ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2931401358,"id_str":"2931401358","name":"era.","screen_name":"EraSafri","location":"Borneo","url":"http:\/\/instagram.com\/\/EraSafri","description":"stop fooling around || UiTM Samarahan, 18","protected":false,"verified":false,"followers_count":347,"friends_count":197,"listed_count":2,"favourites_count":23497,"statuses_count":19517,"created_at":"Mon Dec 15 17:07:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544814374141980673\/740ytN8a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544814374141980673\/740ytN8a.jpeg","profile_background_tile":true,"profile_link_color":"FF55AA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663617253317804032\/ATfslIFP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663617253317804032\/ATfslIFP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2931401358\/1443198782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035662"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359069696,"id_str":"663727892359069696","text":"@katieibarra07 you cutie patootie you \ud83d\ude2d\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727126319751168,"in_reply_to_status_id_str":"663727126319751168","in_reply_to_user_id":2704165727,"in_reply_to_user_id_str":"2704165727","in_reply_to_screen_name":"katieibarra07","user":{"id":1120886984,"id_str":"1120886984","name":"kilah","screen_name":"MakilahMorone","location":null,"url":null,"description":"Catholic ||15 ||WFHS|| Arizona\u2600\ufe0f","protected":false,"verified":false,"followers_count":218,"friends_count":148,"listed_count":1,"favourites_count":3689,"statuses_count":820,"created_at":"Sat Jan 26 03:47:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652179981334806528\/-k1Ovocw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652179981334806528\/-k1Ovocw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1120886984\/1441417925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"katieibarra07","name":"madelynn :)","id":2704165727,"id_str":"2704165727","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892333920256,"id_str":"663727892333920256","text":"@22ynp \n\u63a2\u308a\u306f\u3081\u3093\u3069\u304f\u3055\u3044\u306d\n\u653e\u3063\u3066\u304a\u3044\u3066\u307b\u3057\u3044\n\u4f55\u5e74\u524d\u306e\u8a71\u3092\u4f55\u56de\u3082\u3057\u3066\u304f\u308b\u3084\u3064\u306f\u306d\u3061\u3063\u3053\u3044\u306a\u304a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727691934248960,"in_reply_to_status_id_str":"663727691934248960","in_reply_to_user_id":3481480213,"in_reply_to_user_id_str":"3481480213","in_reply_to_screen_name":"22ynp","user":{"id":1034709918,"id_str":"1034709918","name":"\u306f\u3061\u3083\u029a\u2661\u025e","screen_name":"negi12121","location":null,"url":null,"description":"\u3081\u3061\u3083\u304f\u3061\u3083\u30b3\u30df\u30e5\u969c","protected":false,"verified":false,"followers_count":322,"friends_count":310,"listed_count":1,"favourites_count":352,"statuses_count":3958,"created_at":"Tue Dec 25 12:40:36 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662614857368276992\/zwzD94EN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662614857368276992\/zwzD94EN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1034709918\/1440888720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"22ynp","name":"\u305f\u304b\u304e\u3086\u3046\u306a","id":3481480213,"id_str":"3481480213","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035657"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367474689,"id_str":"663727892367474689","text":"RT @rukdd: \u0e2d\u0e22\u0e39\u0e48\u0e44\u0e14\u0e49\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e44\u0e23 \u0e41\u0e04\u0e48\u0e15\u0e31\u0e14\u0e43\u0e08\u0e01\u0e39\u0e22\u0e31\u0e07\u0e17\u0e33\u0e44\u0e21\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e25\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2245970154,"id_str":"2245970154","name":"\u0e1e\u0e35\u0e48\u0e1e\u0e23\u0e30\u0e08\u0e31\u0e19\u0e17\u0e23\u0e4c","screen_name":"minttheaw","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":43,"friends_count":196,"listed_count":0,"favourites_count":145,"statuses_count":3120,"created_at":"Sat Dec 14 18:24:03 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"04030A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520147485642080256\/KmMZxm9C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520147485642080256\/KmMZxm9C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2245970154\/1400237917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:06:51 +0000 2015","id":663704303144583170,"id_str":"663704303144583170","text":"\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e14\u0e49\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e44\u0e23 \u0e41\u0e04\u0e48\u0e15\u0e31\u0e14\u0e43\u0e08\u0e01\u0e39\u0e22\u0e31\u0e07\u0e17\u0e33\u0e44\u0e21\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e25\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374499538,"id_str":"374499538","name":"rukdd","screen_name":"rukdd","location":null,"url":null,"description":"for work: bluepn_ \u0e41\u0e2d\u0e14\u0e21\u0e32\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e04\u0e30","protected":false,"verified":false,"followers_count":220440,"friends_count":13,"listed_count":58,"favourites_count":17,"statuses_count":14310,"created_at":"Fri Sep 16 12:34:29 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622183294\/njxkahnghgkbsv5cmg8x.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622183294\/njxkahnghgkbsv5cmg8x.jpeg","profile_background_tile":false,"profile_link_color":"EB8DB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2F5DC","profile_text_color":"6CAD0A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569153149131182080\/3nmGirQm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569153149131182080\/3nmGirQm_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1445,"favorite_count":202,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rukdd","name":"rukdd","id":374499538,"id_str":"374499538","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892371603457,"id_str":"663727892371603457","text":"RT @EthanDolan: Today was one of those days where I just wanted to cuddle all day haha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2769262886,"id_str":"2769262886","name":"Avery Witter","screen_name":"AveryWitter","location":null,"url":null,"description":"CANADIAN","protected":false,"verified":false,"followers_count":116,"friends_count":85,"listed_count":0,"favourites_count":3684,"statuses_count":41,"created_at":"Tue Aug 26 06:10:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661297722067017728\/qGetTtAq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661297722067017728\/qGetTtAq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769262886\/1411334400","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:42:04 +0000 2015","id":663592368801628160,"id_str":"663592368801628160","text":"Today was one of those days where I just wanted to cuddle all day haha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2156299840,"id_str":"2156299840","name":"Ethan Dolan","screen_name":"EthanDolan","location":null,"url":"http:\/\/youtu.be\/gKmcXnBcwcA","description":"I make goofy videos with my twin brother... \u2022 snapchat- ethandolan8 \u2022 business (only) ethandolanbusiness@gmail.com \u2022 NEW VIDEOS EVERY TUESDAY! LINK BELOW","protected":false,"verified":true,"followers_count":846108,"friends_count":14761,"listed_count":1364,"favourites_count":8358,"statuses_count":3127,"created_at":"Sun Oct 27 20:36:58 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661470377202155520\/nFcDGwWj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661470377202155520\/nFcDGwWj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2156299840\/1446866571","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4539,"favorite_count":11775,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EthanDolan","name":"Ethan Dolan","id":2156299840,"id_str":"2156299840","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035666"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892363259904,"id_str":"663727892363259904","text":"@Fujimonisation \u3082\u3061\u308d\u3093BO3","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721515611852801,"in_reply_to_status_id_str":"663721515611852801","in_reply_to_user_id":2259897991,"in_reply_to_user_id_str":"2259897991","in_reply_to_screen_name":"Fujimonisation","user":{"id":2189323495,"id_str":"2189323495","name":"\u30ed\u30ea\u3067\u3085\u3075@\u3075\u304f\u3089\u306f\u304eTO","screen_name":"nogi_n_n_46","location":"\u7b2c40\u7bc0\u7d42\u4e86 10\u52dd14\u520616\u6557(18\u4f4d)","url":null,"description":"\u4eac\u90fd\u3002\u5927\u5b663\u5e74\u300294\u3002\u30a2\u30a4\u30b3\u30f3\u3067\u63a8\u3057\u3092\u5224\u65ad\u3057\u306a\u3044\u3067\u306d\u3002","protected":false,"verified":false,"followers_count":809,"friends_count":441,"listed_count":14,"favourites_count":50290,"statuses_count":116512,"created_at":"Tue Nov 12 00:58:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661550315330629632\/7AckvadC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661550315330629632\/7AckvadC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189323495\/1440082413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fujimonisation","name":"\u3075 \u3058 \u3082 \u3093 \u305f \u3093","id":2259897991,"id_str":"2259897991","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035664"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892346634240,"id_str":"663727892346634240","text":"RT @zayntheist: 3 Zayn selfies \n2 days\n1 dead me https:\/\/t.co\/3uIwFjhCzy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829610443,"id_str":"2829610443","name":"#1DLONDRESMTV","screen_name":"ourheroiszayn","location":null,"url":"http:\/\/i.instagram.com\/malagaloves1d5sos\/","description":"MALAGA. I'm in love with you, and all these little things. Thanks for getting me smiles everyday, love you @onedirection @5SOS \u2764.","protected":false,"verified":false,"followers_count":524,"friends_count":1072,"listed_count":5,"favourites_count":215,"statuses_count":6509,"created_at":"Tue Oct 14 14:49:49 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524215301856980992\/dSLWfigU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524215301856980992\/dSLWfigU.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640624243793874944\/81UCh1uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640624243793874944\/81UCh1uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829610443\/1427400479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:10:14 +0000 2015","id":663448460964847616,"id_str":"663448460964847616","text":"3 Zayn selfies \n2 days\n1 dead me https:\/\/t.co\/3uIwFjhCzy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1443560250,"id_str":"1443560250","name":"ZAYN Is God MALIK","screen_name":"zayntheist","location":null,"url":null,"description":"i really love the most misunderstood, most caring, most generous, most talented, most beautiful and the most unappreciated person aka @zaynmalik","protected":false,"verified":false,"followers_count":36595,"friends_count":1460,"listed_count":195,"favourites_count":15293,"statuses_count":37671,"created_at":"Mon May 20 11:42:04 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447283994569109505\/_QYqlhJc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447283994569109505\/_QYqlhJc.jpeg","profile_background_tile":false,"profile_link_color":"D60B0B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622903988170657792\/D4KiqOTX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622903988170657792\/D4KiqOTX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1443560250\/1395017507","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":498,"favorite_count":344,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663448434217779202,"id_str":"663448434217779202","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":485,"h":635,"resize":"fit"},"large":{"w":485,"h":635,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663448434217779202,"id_str":"663448434217779202","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":485,"h":635,"resize":"fit"},"large":{"w":485,"h":635,"resize":"fit"}}},{"id":663448435689922560,"id_str":"663448435689922560","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1lAWIAAKBCN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1lAWIAAKBCN.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":590,"resize":"fit"},"large":{"w":926,"h":912,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}}},{"id":663448451158515712,"id_str":"663448451158515712","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK2eoWIAASV1i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK2eoWIAASV1i.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"large":{"w":574,"h":718,"resize":"fit"},"medium":{"w":574,"h":718,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zayntheist","name":"ZAYN Is God MALIK","id":1443560250,"id_str":"1443560250","indices":[3,14]}],"symbols":[],"media":[{"id":663448434217779202,"id_str":"663448434217779202","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":485,"h":635,"resize":"fit"},"large":{"w":485,"h":635,"resize":"fit"}},"source_status_id":663448460964847616,"source_status_id_str":"663448460964847616","source_user_id":1443560250,"source_user_id_str":"1443560250"}]},"extended_entities":{"media":[{"id":663448434217779202,"id_str":"663448434217779202","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1fhXAAIypFu.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":485,"h":635,"resize":"fit"},"large":{"w":485,"h":635,"resize":"fit"}},"source_status_id":663448460964847616,"source_status_id_str":"663448460964847616","source_user_id":1443560250,"source_user_id_str":"1443560250"},{"id":663448435689922560,"id_str":"663448435689922560","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK1lAWIAAKBCN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK1lAWIAAKBCN.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":590,"resize":"fit"},"large":{"w":926,"h":912,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}},"source_status_id":663448460964847616,"source_status_id_str":"663448460964847616","source_user_id":1443560250,"source_user_id_str":"1443560250"},{"id":663448451158515712,"id_str":"663448451158515712","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUK2eoWIAASV1i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUK2eoWIAASV1i.jpg","url":"https:\/\/t.co\/3uIwFjhCzy","display_url":"pic.twitter.com\/3uIwFjhCzy","expanded_url":"http:\/\/twitter.com\/zayntheist\/status\/663448460964847616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"large":{"w":574,"h":718,"resize":"fit"},"medium":{"w":574,"h":718,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663448460964847616,"source_status_id_str":"663448460964847616","source_user_id":1443560250,"source_user_id_str":"1443560250"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035660"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367478785,"id_str":"663727892367478785","text":"\u6c5a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69833277,"id_str":"69833277","name":"\u5728\u5b85\u3082\u3059\u5b50\u3061\u3083\u3093\uff01\uff01","screen_name":"koringo_mosuko","location":"\u85e4\u672c\u3055\u3093\u3068\u30dc\u30d8\u30df\u30a2\u306e\u7a7a","url":"http:\/\/sumally.com\/mosumosu","description":"JK\u3063\u3066\u3001\u306a\u3093\u3060\u2570(*\u00b4\ufe36`*)\u256f\u306d\u3070\u30fc\u3093","protected":false,"verified":false,"followers_count":628,"friends_count":325,"listed_count":13,"favourites_count":133817,"statuses_count":240612,"created_at":"Sat Aug 29 09:39:20 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E23D6F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000003258563\/99af7d5b5bdb53d78171470fc04f8d4f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000003258563\/99af7d5b5bdb53d78171470fc04f8d4f.jpeg","profile_background_tile":true,"profile_link_color":"D6A6E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DC89B3","profile_text_color":"6B4C0D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651399830745382912\/rLhJkCS6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651399830745382912\/rLhJkCS6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69833277\/1382497271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338110464,"id_str":"663727892338110464","text":"@ru_ru_WM \u30a4\u30a7\u30a2\uff01\uff01\u30d5\u30a5\u30a5\u30a5\u2191\u2191\u207d\u207d\ua702(\ua700(\u2449\u02ce\u0414\u02cf\u2449)\ua706\u208e\u208e'`\uff67'`\uff67","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726031346405376,"in_reply_to_status_id_str":"663726031346405376","in_reply_to_user_id":1683475608,"in_reply_to_user_id_str":"1683475608","in_reply_to_screen_name":"ru_ru_WM","user":{"id":2928005076,"id_str":"2928005076","name":"\u30e2\u30ab\u2318","screen_name":"moca_cappuci","location":null,"url":null,"description":"\u306a\u3093\u3067\u3082\u3042\u308a\u3042\u308a\u0f3c\u2022\u0300\u0277\u2022\u0301\u0f3d\u30c9\u30e9\u30b8\u30a7\u30cd\u30dd\u30a4\u2192\u30ea\u30c8\u30ce\u30a2\u30dd\u30a4\u2192\u767d\u732b\u3084\u308a\u3064\u3064\u30e2\u30f3\u30cf\u30f3\u308f\u3063\u3057\u3087\u3044\u266a","protected":false,"verified":false,"followers_count":167,"friends_count":152,"listed_count":3,"favourites_count":856,"statuses_count":4514,"created_at":"Sat Dec 13 03:30:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656367716853350400\/Ibl1UE6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656367716853350400\/Ibl1UE6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2928005076\/1440420071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ru_ru_WM","name":"\u30eb\u30fc\u30fb\u30eb\u30fc","id":1683475608,"id_str":"1683475608","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892333854720,"id_str":"663727892333854720","text":"\ub274\uc2a4\ud0c0\ud30c - \ubaa9\uaca9\uc790\ub4e4 32\ud68c \"2015, \uc300 \uc190\uc775 \uacc4\uc0b0\uc11c\"(2015.11.9) https:\/\/t.co\/C2TmsHa2ZX @YouTube \ub2d8\uc774 \uacf5\uc720","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":314445460,"id_str":"314445460","name":"\uae40\ubbfc\uc2dd","screen_name":"com0231","location":"ansan, korea","url":null,"description":"\uc18c\uc218\uac00 \ub2e4\uc218\ub97c \uc774\uae30\ub294 \ubc29\ubc95, '\ubd84\uc5f4' \/ \uac15\uc790\uc640 \uc57d\uc790 \uc0ac\uc774\uc5d0\ub294 \uc911\ub9bd\uc740 \uc5c6\ub2e4\/\uc57d\uc790\ub97c \ub300\ud568\uc744 \ubcf4\ub77c.","protected":false,"verified":false,"followers_count":30,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":2056,"created_at":"Fri Jun 10 08:19:29 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647672237512757248\/h_Occorf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647672237512757248\/h_Occorf_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C2TmsHa2ZX","expanded_url":"https:\/\/youtu.be\/uIINAWCDJNM","display_url":"youtu.be\/uIINAWCDJNM","indices":[44,67]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[68,76]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080035657"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892342439936,"id_str":"663727892342439936","text":"@TheChosenArab what lmao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733743206400,"in_reply_to_status_id_str":"663727733743206400","in_reply_to_user_id":731357569,"in_reply_to_user_id_str":"731357569","in_reply_to_screen_name":"TheChosenArab","user":{"id":1887756368,"id_str":"1887756368","name":"dess","screen_name":"cabreja1997","location":null,"url":null,"description":"no pain no gain","protected":false,"verified":false,"followers_count":1034,"friends_count":1229,"listed_count":1,"favourites_count":4274,"statuses_count":11247,"created_at":"Fri Sep 20 20:34:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663207247187730432\/hr37Lr1K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663207247187730432\/hr37Lr1K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1887756368\/1447008943","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheChosenArab","name":"Moe Money","id":731357569,"id_str":"731357569","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035659"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892355014656,"id_str":"663727892355014656","text":"@youngnarcolepsy You listen to all the podcasts or you just watch it in the morn? I just started watching it about a month ago..","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727542952714240,"in_reply_to_status_id_str":"663727542952714240","in_reply_to_user_id":387394287,"in_reply_to_user_id_str":"387394287","in_reply_to_screen_name":"YoungNarcolepsy","user":{"id":99778641,"id_str":"99778641","name":"corbin","screen_name":"Corbin__","location":"Greensboro; Miami for now ","url":null,"description":"R.I.P @j_sharlay","protected":false,"verified":false,"followers_count":1372,"friends_count":762,"listed_count":7,"favourites_count":268,"statuses_count":75580,"created_at":"Sun Dec 27 20:40:19 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661341944728190976\/jbCKspeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661341944728190976\/jbCKspeR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99778641\/1443931192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YoungNarcolepsy","name":"CedMelo Anthony","id":387394287,"id_str":"387394287","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035662"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359045120,"id_str":"663727892359045120","text":"RT @TheBillPolice: Wireless companies have some terrible customer service. What's the longest you've been on the line for?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59060618,"id_str":"59060618","name":"EmAnOn","screen_name":"BlackRain7","location":"At Jesus Side","url":null,"description":"DESTINED For Greatness!~Work In Progress ~PHILI. 3;13-14 Need A GREAT Assistant? email me: purplepandaboutique@gmail.com","protected":false,"verified":false,"followers_count":1530,"friends_count":1234,"listed_count":49,"favourites_count":3717,"statuses_count":67348,"created_at":"Wed Jul 22 06:53:35 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563196194198126593\/1rwB0jdr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563196194198126593\/1rwB0jdr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59060618\/1434668922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:34 +0000 2015","id":663718578139627521,"id_str":"663718578139627521","text":"Wireless companies have some terrible customer service. What's the longest you've been on the line for?","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174798433,"id_str":"174798433","name":"The Bill Police\u2122","screen_name":"TheBillPolice","location":"Richmond, VA","url":"http:\/\/www.billpolice.com","description":"We save organizations millions of dollars every year by intelligently auditing, optimizing, and managing their wireless expenses.","protected":false,"verified":false,"followers_count":216,"friends_count":288,"listed_count":5,"favourites_count":0,"statuses_count":190,"created_at":"Wed Aug 04 21:17:11 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1095671255\/StandardLogo300_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1095671255\/StandardLogo300_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheBillPolice","name":"The Bill Police\u2122","id":174798433,"id_str":"174798433","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892350803968,"id_str":"663727892350803968","text":"@ElGabii10 Yoga, Budismo, chakras, kundalini. Ve al siguiente link: https:\/\/t.co\/5M0nfSuubx","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":216894862,"in_reply_to_user_id_str":"216894862","in_reply_to_screen_name":"ElGabii10","user":{"id":439243653,"id_str":"439243653","name":"Antuel","screen_name":"traxXxvell","location":"Ciudad Aut\u00f3noma de Buenos Aire","url":null,"description":"Amante de la literatura cl\u00e1sica. \u00daltimamente me volqu\u00e9 hacia libros sobre creatividad, aumentar la producci\u00f3n y libros de psicolog\u00eda. Trabajo en una empresa.","protected":false,"verified":false,"followers_count":28,"friends_count":648,"listed_count":0,"favourites_count":0,"statuses_count":10175,"created_at":"Sat Dec 17 14:54:06 +0000 2011","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563658967830654976\/jWf6h8Mm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563658967830654976\/jWf6h8Mm_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5M0nfSuubx","expanded_url":"http:\/\/jblog2.tk\/","display_url":"jblog2.tk","indices":[68,91]}],"user_mentions":[{"screen_name":"ElGabii10","name":"Gabriel Ozores","id":216894862,"id_str":"216894862","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080035661"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338118656,"id_str":"663727892338118656","text":"RT @seeyara: Nahihirapan ako sa'yo, Cascade.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376104377,"id_str":"376104377","name":"km \u2744","screen_name":"jhemaoanan","location":null,"url":null,"description":"I built up a world of magic because my real life was tragic \u2693","protected":false,"verified":false,"followers_count":289,"friends_count":298,"listed_count":0,"favourites_count":2780,"statuses_count":16186,"created_at":"Mon Sep 19 09:38:03 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113424665\/57859211117a5f8da6f28314af05adfd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113424665\/57859211117a5f8da6f28314af05adfd.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660102877382205440\/vDKvY94P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660102877382205440\/vDKvY94P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376104377\/1446373862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727815037071361,"id_str":"663727815037071361","text":"Nahihirapan ako sa'yo, Cascade.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80519490,"id_str":"80519490","name":"Amidala\u26a1\ufe0f","screen_name":"seeyara","location":null,"url":null,"description":"si vis pacem, para bellum","protected":false,"verified":false,"followers_count":4989,"friends_count":406,"listed_count":24,"favourites_count":18608,"statuses_count":20934,"created_at":"Wed Oct 07 07:29:43 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514057902558953473\/W0-7vOiE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514057902558953473\/W0-7vOiE.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"5C555A","profile_text_color":"1D241D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626007885084897281\/xQd8RC4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626007885084897281\/xQd8RC4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80519490\/1435417619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"seeyara","name":"Amidala\u26a1\ufe0f","id":80519490,"id_str":"80519490","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892371673088,"id_str":"663727892371673088","text":"And virus makes four https:\/\/t.co\/dHfnEMSQ4h","source":"\u003ca href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":473441328,"id_str":"473441328","name":"Ferez Nallaseth","screen_name":"fnallase1","location":"New York area.","url":"https:\/\/sites.google.com\/site\/nallasethfs\/","description":"Art, Bats, Balls, Books, Brains\/Minds, Cells, Civic Issues, Development, Evolution, Genes, Molecules, Music & Squash - my Rackets! \r\n https:\/\/t.co\/eGDruw6GF9","protected":false,"verified":false,"followers_count":475,"friends_count":781,"listed_count":7,"favourites_count":5,"statuses_count":3327,"created_at":"Wed Jan 25 00:07:00 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626201171418451968\/iDT9BmB9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626201171418451968\/iDT9BmB9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473441328\/1419353492","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dHfnEMSQ4h","expanded_url":"https:\/\/lnkd.in\/eyiiC8t","display_url":"lnkd.in\/eyiiC8t","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035666"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892354891776,"id_str":"663727892354891776","text":"@shibachan0830 \n\u521d\u65e5\u306b\u884c\u304f\u3068\u304b\u3059\u3054\u3044\u52e2\u3044\u3060\u306d\ud83d\ude04\u2728 \u30cf\u30ed\u30a6\u30a3\u30f3\u3068\u306f\u307e\u305f\u9055\u3046\u8feb\u529b\u304c\u3042\u308b\u3088\u306d\ud83d\ude1a\u2728\u7b11\uff01 \u3044\u3044\u306a\u3041\u301c\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727551110483968,"in_reply_to_status_id_str":"663727551110483968","in_reply_to_user_id":1240787892,"in_reply_to_user_id_str":"1240787892","in_reply_to_screen_name":"shibachan0830","user":{"id":1310065032,"id_str":"1310065032","name":"\u307e\u3086","screen_name":"mkry_m2413","location":null,"url":null,"description":"\u7a32\u753062th(\u30d0\u30c9\u90e8)\/\u670b\u512a10th\/\u5c02\u5927\u5546\u30de3\u5e74flexible#56\/\u543e\u90f7\u30bc\u30df\/ http:\/\/instagram.com\/mayukichi1024 \u4e00\u671f\u4e00\u4f1a\u3092\u5927\u5207\u306b\uff01\u77e5\u3063\u3066\u3044\u308b\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\uff3c(^o^)\uff0f","protected":false,"verified":false,"followers_count":642,"friends_count":641,"listed_count":1,"favourites_count":1731,"statuses_count":6144,"created_at":"Thu Mar 28 10:10:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642684377462259712\/q6xrkzCv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642684377462259712\/q6xrkzCv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1310065032\/1442062720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shibachan0830","name":"\u3057\u3070\u3061\u3083\u3093","id":1240787892,"id_str":"1240787892","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035662"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338049024,"id_str":"663727892338049024","text":"@7373HA \ud5c9 \ud2b8\uc704\ud130\ub9d0\uace0 \ub2e4\ub978 SNS\uc5d0\uc11c \ud558\ub294 \uc870\uadf8\ub9c8\ud55c \uae38\ub4dc..? \uc5b4 \ubb50\ub77c\uace0 \uc124\uba85\ud574\uc57c\ud558\uc9c0.. \uc18c\uc218~\ub2e4\uc218\uc758 \uc0ac\ub78c\ub4e4\uc774 \ubaa8\uc5ec\uc11c \uc8fc\uc81c\uac00\uc9c0\uace0 \uacfc\uc81c\ub098 \ud569\uc791, \uadf8\ub9bc \ud53c\ub4dc\ubc31\ud558\ub294\uac80\ub2e4!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727663949836288,"in_reply_to_status_id_str":"663727663949836288","in_reply_to_user_id":3368197300,"in_reply_to_user_id_str":"3368197300","in_reply_to_screen_name":"7373HA","user":{"id":2601738558,"id_str":"2601738558","name":"\ud558\ub85c","screen_name":"haro__0","location":"FUB FREE\/ \uc778\uc7a5 \ud0c0\uc720\ub2d8!","url":null,"description":"\ube5b\ub098\ub294 \ubcc4\ub4e4\uc740 \uc5b4\ub514\ub860\uac00 \uc0ac\ub77c\uc9c0\uace0, \uae5c\uae5c\ud55c \uc5b4\ub460\ub9cc \ub0a8\uc558\ub2e4.","protected":false,"verified":false,"followers_count":222,"friends_count":207,"listed_count":2,"favourites_count":2454,"statuses_count":5852,"created_at":"Thu Jul 03 14:28:28 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663055686352265216\/TCyu4alr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663055686352265216\/TCyu4alr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2601738558\/1445936915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7373HA","name":"\u25c7\u25c6\ud0c0\uc720\u25c6\u25c7","id":3368197300,"id_str":"3368197300","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892342403072,"id_str":"663727892342403072","text":"@xMJRamirez @GERgahodsimo Two rides from John B. ah! Kaya na!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727805969010688,"in_reply_to_status_id_str":"663727805969010688","in_reply_to_user_id":1384961232,"in_reply_to_user_id_str":"1384961232","in_reply_to_screen_name":"xMJRamirez","user":{"id":3117893966,"id_str":"3117893966","name":"Julie Moscoso","screen_name":"juliemoscoso__","location":"BCD ","url":null,"description":"An art in progress","protected":false,"verified":false,"followers_count":617,"friends_count":334,"listed_count":0,"favourites_count":2358,"statuses_count":4474,"created_at":"Mon Mar 30 16:21:26 +0000 2015","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607361055149268992\/50DKEgLm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607361055149268992\/50DKEgLm.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663291543269175296\/iCMrXlH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663291543269175296\/iCMrXlH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117893966\/1446975936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xMJRamirez","name":"Zee","id":1384961232,"id_str":"1384961232","indices":[0,11]},{"screen_name":"GERgahodsimo","name":"GeraldLacson","id":1558890649,"id_str":"1558890649","indices":[12,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035659"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892371603456,"id_str":"663727892371603456","text":"@minsoku_S2 \ud574\uc2dc\ud0dc\uadf8\uac00 \uac00\ub77c\uc549\uc558\uc73c\ub2c8 \ub9c8\uc74c\ud3b8\ud788 \ub04c\uc62c\uc744 \uc678\uce5c\ub2e4!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663710497032683520,"in_reply_to_status_id_str":"663710497032683520","in_reply_to_user_id":3112793083,"in_reply_to_user_id_str":"3112793083","in_reply_to_screen_name":"minsoku_S2","user":{"id":3112793083,"id_str":"3112793083","name":"[\ub9c8\ub9c8\ud22c\ud45c!]\ub791\uc288\ud06c\ub9bc\u2728_\ucd08\ucee4\uccb4\ub9ac\uc288\u2764","screen_name":"minsoku_S2","location":"0326\u26610921 \/ \uc138\uc0b4\uc988\u2661","url":"http:\/\/mama.mwave.me\/vote","description":"[Cally]\ubbfc\uc1a4\uc62c\uc218\ub2c8\/8\ucda9\u3157 \ud0c0\ud32cX\/RPS\/\uc288\ub978\ucabd\/\uc695\ud2b8\uc8fc\uc758\/\uc5b8\ud314X \ube14\uc5b8\ube14\/\ub434\ub7fd\ud06c\ub9bc\u2764(@doyouloveme0408) \ucdcc\ub2c8\u2728(@wjddk65478)\/ !!\ubb34\uba58\ub9de\ud314 \uc548\ud574\uc624!! \u27a1\ubd80\uacc4(@exoexo_lovexo)","protected":false,"verified":false,"followers_count":428,"friends_count":408,"listed_count":0,"favourites_count":297,"statuses_count":15914,"created_at":"Sat Mar 28 11:23:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662641005036830723\/qpEpAyOn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662641005036830723\/qpEpAyOn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112793083\/1447075570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minsoku_S2","name":"[\ub9c8\ub9c8\ud22c\ud45c!]\ub791\uc288\ud06c\ub9bc\u2728_\ucd08\ucee4\uccb4\ub9ac\uc288\u2764","id":3112793083,"id_str":"3112793083","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080035666"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367454208,"id_str":"663727892367454208","text":"\u96e8\u306a\u306e\u306f\u3057\u3087\u3046\u304c\u306a\u3044\u3002\u5e30\u308b\u3060\u3051\u3060\u304b\u3089\u3044\u3044\u3051\u3069\u3055\u3002\u8cb7\u3063\u305f\u3070\u3063\u304b\u306e\u30ab\u30fc\u30c7\u30a3\u30ac\u30f3\u6fe1\u308c\u308b\u306e\u3044\u3084\u3060\u3057\u4f53\u8abf\u3042\u3093\u307e\u3088\u304f\u306a\u3044\u3057\u96e8\u5f37\u304f\u306a\u3063\u3066\u304d\u3066\u308b\u3057\u3075\u3068\u8db3\u307f\u305f\u3089\u5207\u308a\u50b7\u307f\u3064\u3051\u3061\u3083\u3046\u3057\u3067\u3082\u3046\u3002\u5143\u6c17\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1341940532,"id_str":"1341940532","name":"\u304f\u308b\u307f","screen_name":"Kuu_ruu_96","location":null,"url":null,"description":"\u67f3\u751f\/\u6771\/\u5c1a\u7d45 \u4eba\u9593\u5fc3\u7406\u5b66\u79d13C","protected":false,"verified":false,"followers_count":236,"friends_count":222,"listed_count":0,"favourites_count":749,"statuses_count":5982,"created_at":"Wed Apr 10 13:37:51 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661478748798128128\/a1ygYHNb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661478748798128128\/a1ygYHNb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1341940532\/1396191436","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367478784,"id_str":"663727892367478784","text":"@surumegesogeso\u7fc1\u9577\u77e5\u4e8b\u306e\u6b63\u4f53\uff14\n\u91d1\u79c0\u30b0\u30eb\u30fc\u30d7\u304c\u3001\u8fba\u91ce\u53e4\u57fa\u5730\u62e1\u5145\u5de5\u4e8b\u53d7\u6ce8\u3059\u308b\u4e00\u65b9\u3067\u3001\u5de5\u4e8b\u53cd\u5bfe\u6d3b\u52d5\u306b\u793e\u54e1\u3092\u6d3e\u9063\u3057\u3001\u57fa\u5730\u5efa\u8a2d\u304c\u9045\u308c\u308c\u3070\u3001\u56fd\u306e\u4ea4\u4ed8\u91d1\u3084\u88dc\u52a9\u91d1\u3082\u9045\u308c\u305f\u5206\u652f\u6255\u308f\u308c\u308b\u4e8b\u3092\u60aa\u7528\u3057\u3001\u308f\u3056\u3068\u57fa\u5730\u79fb\u8a2d\u304c\u9045\u308c\u308b\u3088\u3046\u306b\u4ed5\u5411\u3051\u3066\u300c\u5132\u3051\u306f\u91d1\u79c0\u30b0\u30eb\u30fc\u30d7\u3068\u5c71\u5206\u3051\u300d\u3063\u3066\u672c\u5f53\u3067\u3059\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663700552144912385,"in_reply_to_status_id_str":"663700552144912385","in_reply_to_user_id":2295843529,"in_reply_to_user_id_str":"2295843529","in_reply_to_screen_name":"surumegesogeso","user":{"id":397755534,"id_str":"397755534","name":"\u5de5\u85e4\u771f\u4e00","screen_name":"hattoliheiji","location":null,"url":null,"description":"\u4e2d\u83ef\u601d\u60f3\u306f\u30d5\u30a1\u30b7\u30ba\u30e0\u305d\u306e\u3082\u306e\u3002\u305d\u306e\u4e2d\u83ef\u601d\u60f3\u3092\u30a2\u30b8\u30a2\u304b\u3089\u6392\u9664\u3057\u3001\u5404\u6c11\u65cf\u3068\u306e\u5171\u5b58\u5171\u6804\u3092\u7406\u60f3\u3068\u3057\u305f\u300c\u5927\u6771\u4e9c\u5171\u6804\u570f\u300d\u5b9f\u73fe\u306e\u70ba\u306b\u6226\u3063\u305f\u5927\u6771\u4e9c\u6226\u4e89\u3053\u305d\u304c\u6b63\u5f53\u306a\u6226\u3044\u3060\u3063\u305f\u306e\u3067\u3059\u3002\u60aa\u3044\u306e\u306f\u6226\u4e89\u3067\u306f\u306a\u304f\u6557\u6226\u3002\u6226\u5f8c\u306e\u4e0d\u5f53\u53f2\u89b3\uff08\u81ea\u8650\u53f2\u89b3\u3067\u306f\u306a\u3044\uff09\u3092\u6392\u3057\u3001\u652f\u90a3\uff65\u30ed\u30b7\u30a2\u7b49\u72ec\u88c1\u56fd\u5bb6\u306e\u5c5e\u56fd\u3068\u5316\u3057\u305f\u65e5\u672c\u3092\u771f\u306e\u72ec\u7acb\u56fd\u306b\u3059\u308b\u70ba\u306b\u6226\u3044\u7d9a\u3051\u307e\u3059\u3002\u5fdc\u63f4\u5b9c\u3057\u304f\uff01","protected":false,"verified":false,"followers_count":485,"friends_count":402,"listed_count":5,"favourites_count":4,"statuses_count":7968,"created_at":"Tue Oct 25 03:28:31 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"surumegesogeso","name":"\u3059\u308b\u3081\u306e\u3088\u3063\u3061\u3083\u3093(\u6c96\u7e04\u306f\u65e5\u672c\u3060)","id":2295843529,"id_str":"2295843529","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892338077696,"id_str":"663727892338077696","text":"@cdcdyuratan \u672c\u5f53\u53ef\u611b\u304f\u3066\u30e4\u30d0\u3059\u304e\u3067\u3059(\u2267\u2200\u2266)\u3084\u308b\u3053\u3068\u6ca2\u5c71\u3042\u308a\u3059\u304e\u3066\u4f53\uff11\u3064\u3058\u3083\u8db3\u308a\u306a\u3044\u3067\u3059(T_T)w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721102384828417,"in_reply_to_status_id_str":"663721102384828417","in_reply_to_user_id":2202542924,"in_reply_to_user_id_str":"2202542924","in_reply_to_screen_name":"cdcdyuratan","user":{"id":604800272,"id_str":"604800272","name":"\u30c1\u30c7","screen_name":"ris0402","location":null,"url":null,"description":"\u30c7\u30a3\u30ba\u30cb\u30fc\u5927\u597d\u304d(*\u00b4\u2207\uff40)\u3000\u7279\u306b\u6817\u9f20\u541b\u30af\u30e9\u30ea\u30b9\u304c\u5927\u597d\u304d(\u2267\u25bc\u2266)\u3000\u5e74\u30d1\u6301\u3063\u3066\u6700\u4f4e\u5e73\u65e5\u67083\u306f\u30a4\u30f3\u3057\u3066\u307e\u3059(^^)v\u3000\u30b7\u30e7\u30fc\u30d1\u30ec\uff65\u30b0\u30ea\u30e1\u30a4\u30f3\u3002\u3000\u4e00\u773c\u6301\u3063\u3066\u30ad\u30e3\u30e9\u8272\u3005\u64ae\u3063\u3066\u307e\u3059\u3002\u826f\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u306dm(__)m\u5199\u771f\u4ea4\u63db\u3068\u304b\u51fa\u6765\u308b\u4eba\u3082\u3044\u305f\u3089\u5c1a\u5b09\u3057\u3044\u3067\u3059(\u2267\u25bd\u2266)\u3061\u306a\u307f\u306b\u4e0b\u624b\u304f\u305d\u3067\u3059\u304c(^_^;)","protected":false,"verified":false,"followers_count":70,"friends_count":83,"listed_count":0,"favourites_count":110,"statuses_count":580,"created_at":"Sun Jun 10 20:07:31 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588898154679963648\/lBy96UDg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588898154679963648\/lBy96UDg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/604800272\/1429239502","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cdcdyuratan","name":"\u2606\u3086\u3089\u3053@\uff81\uff6f\uff8c\uff9f\u2266\uff83\uff9e\uff70\uff99\u2606","id":2202542924,"id_str":"2202542924","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080035658"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367581184,"id_str":"663727892367581184","text":"https:\/\/t.co\/X3kisgbwoP \n\u0639\u0631\u0642\u064a\u0629 \u0628\u064a\u0636\u0627 \u062a\u062f\u0644\u0644 \u0648\u0628\u0639\u062f\u064a\u0646 \u062a\u0646\u062a\u0627\u0643 \u0628\u0642\u0648\u0629 https:\/\/t.co\/Z0Yj0l4Qyt via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235059923,"id_str":"3235059923","name":"Jaraan Mcgall","screen_name":"pukymahanyqa","location":"Mineola, NY","url":null,"description":"I had floor seats on Believe Tour. Justin tweeted my vine on May 28th 2014 and followed me on March 29th 2015. I'm truly blessed.","protected":false,"verified":false,"followers_count":20,"friends_count":127,"listed_count":0,"favourites_count":0,"statuses_count":25,"created_at":"Tue May 05 06:18:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618738685383606273\/43kTpfM7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618738685383606273\/43kTpfM7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235059923\/1436031918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/X3kisgbwoP","expanded_url":"http:\/\/goo.gl\/5EV52d","display_url":"goo.gl\/5EV52d","indices":[0,23]},{"url":"https:\/\/t.co\/Z0Yj0l4Qyt","expanded_url":"http:\/\/sco.lt\/7Ol5BB","display_url":"sco.lt\/7Ol5BB","indices":[59,82]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[87,95]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892350771200,"id_str":"663727892350771200","text":"#Career #Opportunity #Data Quality Analyst (15-02267) - Eagan- MN https:\/\/t.co\/XZ2AaAri4R","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281040092,"id_str":"3281040092","name":"GTT Career's","screen_name":"gttcareer","location":"Portsmouth, NH","url":"http:\/\/globaltechnicaltalent.com\/","description":"#Banking #Healthcare #Technology #Manufacturing #Insurance #Automobile Recruiting Specialist since 1998.","protected":false,"verified":false,"followers_count":7,"friends_count":5,"listed_count":4,"favourites_count":0,"statuses_count":26013,"created_at":"Wed Jul 15 23:13:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621458264614502401\/aYAWDdNS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621458264614502401\/aYAWDdNS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281040092\/1437002437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Career","indices":[0,7]},{"text":"Opportunity","indices":[8,20]},{"text":"Data","indices":[21,26]}],"urls":[{"url":"https:\/\/t.co\/XZ2AaAri4R","expanded_url":"http:\/\/ift.tt\/1WIzFq0","display_url":"ift.tt\/1WIzFq0","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035661"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359049216,"id_str":"663727892359049216","text":"@Makk143 wtf.....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663630969392402432,"in_reply_to_status_id_str":"663630969392402432","in_reply_to_user_id":51961928,"in_reply_to_user_id_str":"51961928","in_reply_to_screen_name":"Makk143","user":{"id":494377123,"id_str":"494377123","name":"cici","screen_name":"CiaraOJelley","location":"bay area","url":null,"description":"it's pronounced see-air-uhh | 6'2 and prolly in bed| TSNMI","protected":false,"verified":false,"followers_count":462,"friends_count":304,"listed_count":2,"favourites_count":4750,"statuses_count":10639,"created_at":"Thu Feb 16 20:53:23 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30095","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662760871379279873\/GTUNOT-7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662760871379279873\/GTUNOT-7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/494377123\/1446951229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Makk143","name":"Makayla","id":51961928,"id_str":"51961928","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892367597568,"id_str":"663727892367597568","text":"Found a Transponder Snail!\nGiants, sea monsters, fantastical creatures of all kinds!\n#TreCru https:\/\/t.co\/kJkdiTB5gc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3396054647,"id_str":"3396054647","name":"xing yan","screen_name":"singyan31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":230,"created_at":"Thu Jul 30 20:23:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[85,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727891851698181,"id_str":"663727891851698181","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAEVW4AU__A-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAEVW4AU__A-.jpg","url":"https:\/\/t.co\/kJkdiTB5gc","display_url":"pic.twitter.com\/kJkdiTB5gc","expanded_url":"http:\/\/twitter.com\/singyan31\/status\/663727892367597568\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727891851698181,"id_str":"663727891851698181","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAEVW4AU__A-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAEVW4AU__A-.jpg","url":"https:\/\/t.co\/kJkdiTB5gc","display_url":"pic.twitter.com\/kJkdiTB5gc","expanded_url":"http:\/\/twitter.com\/singyan31\/status\/663727892367597568\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035665"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892342378497,"id_str":"663727892342378497","text":"\u0641\u064a\u062f\u064a\u0648 - \u0641\u0646\u0627\u062f\u0642 \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u0643\u0644\u0647\u0627 \u0642\u0646\u0648\u0627\u062a \u0627\u064a\u0631\u0627\u0646\u064a\u0629 - \u0644\u0645\u0627\u0630\u0627 \u061f https:\/\/t.co\/Ntm1IgfqV9 https:\/\/t.co\/uuDzxNo64W","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1855094587,"id_str":"1855094587","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u063a\u0645\u064a\u0636\u0627\u062a","screen_name":"sendajmi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":23008,"friends_count":19036,"listed_count":7,"favourites_count":5,"statuses_count":243073,"created_at":"Wed Sep 11 18:14:59 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606264772925857792\/TRBi1nzi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606264772925857792\/TRBi1nzi_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ntm1IgfqV9","expanded_url":"http:\/\/www.showq8.com\/%d9%81%d9%8a%d8%af%d9%8a%d9%88-%d9%81%d9%86%d8%a7%d8%af%d9%82-%d8%a7%d9%84%d9%85%d8%af%d9%8a%d9%86%d8%a9-%d9%83%d9%84%d9%87%d8%a7-%d9%82%d9%86%d9%88%d8%a7%d8%aa-%d8%a7%d9%8a%d8%b1%d8%a7%d9%86%d9%8a\/?utm_source=ReviveOldPost&utm_medium=social&utm_campaign=ReviveOldPost","display_url":"showq8.com\/%d9%81%d9%8a%d\u2026","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":663727889251237888,"id_str":"663727889251237888","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_6pXAAAX8Zr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_6pXAAAX8Zr.png","url":"https:\/\/t.co\/uuDzxNo64W","display_url":"pic.twitter.com\/uuDzxNo64W","expanded_url":"http:\/\/twitter.com\/sendajmi\/status\/663727892342378497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":91,"resize":"crop"},"medium":{"w":150,"h":91,"resize":"fit"},"large":{"w":150,"h":91,"resize":"fit"},"small":{"w":150,"h":91,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727889251237888,"id_str":"663727889251237888","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_6pXAAAX8Zr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_6pXAAAX8Zr.png","url":"https:\/\/t.co\/uuDzxNo64W","display_url":"pic.twitter.com\/uuDzxNo64W","expanded_url":"http:\/\/twitter.com\/sendajmi\/status\/663727892342378497\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":91,"resize":"crop"},"medium":{"w":150,"h":91,"resize":"fit"},"large":{"w":150,"h":91,"resize":"fit"},"small":{"w":150,"h":91,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080035659"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892359217152,"id_str":"663727892359217152","text":"Drug Dealer-Turned-Good Guy Reveals What Life Is Like Dealing And Being On The\u00a0Run https:\/\/t.co\/JWIRz7DrlK https:\/\/t.co\/6HyNkuBjd6","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2611738632,"id_str":"2611738632","name":"Nigerian Gossip","screen_name":"9jaGossips","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":273,"friends_count":200,"listed_count":0,"favourites_count":1,"statuses_count":4164,"created_at":"Tue Jul 08 14:23:22 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/509851763101294593\/oo080uA7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/509851763101294593\/oo080uA7.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576095476010741760\/LxehB_Qo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576095476010741760\/LxehB_Qo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2611738632\/1410391104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JWIRz7DrlK","expanded_url":"http:\/\/www.sutbeat.com\/drug-dealer-turned-good-guy-reveals-what-life-is-like-dealing-and-being-on-the-run\/","display_url":"sutbeat.com\/drug-dealer-tu\u2026","indices":[83,106]}],"user_mentions":[],"symbols":[],"media":[{"id":663727890698076160,"id_str":"663727890698076160","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAACUAAACp7N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAACUAAACp7N.jpg","url":"https:\/\/t.co\/6HyNkuBjd6","display_url":"pic.twitter.com\/6HyNkuBjd6","expanded_url":"http:\/\/twitter.com\/9jaGossips\/status\/663727892359217152\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"medium":{"w":540,"h":282,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727890698076160,"id_str":"663727890698076160","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAACUAAACp7N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAACUAAACp7N.jpg","url":"https:\/\/t.co\/6HyNkuBjd6","display_url":"pic.twitter.com\/6HyNkuBjd6","expanded_url":"http:\/\/twitter.com\/9jaGossips\/status\/663727892359217152\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"medium":{"w":540,"h":282,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035663"} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892363403264,"id_str":"663727892363403264","text":"Jack Johnson i dare you to follow me \ud83d\ude0b look at you living life to the fullest up there in santiago \ud83d\ude02 https:\/\/t.co\/CQSLIJRcSF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539997529,"id_str":"539997529","name":"alba has pcd :(","screen_name":"hemmingsbeanies","location":" \u2640","url":null,"description":"they can break our hearts, they won't take our souls","protected":false,"verified":false,"followers_count":3886,"friends_count":496,"listed_count":108,"favourites_count":12629,"statuses_count":81039,"created_at":"Thu Mar 29 13:55:47 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/464484230076981248\/TkKqfoJ2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/464484230076981248\/TkKqfoJ2.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660391202467012608\/mMbVYBD9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660391202467012608\/mMbVYBD9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539997529\/1446284541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727889838395392,"id_str":"663727889838395392","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_81WUAAleOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_81WUAAleOM.jpg","url":"https:\/\/t.co\/CQSLIJRcSF","display_url":"pic.twitter.com\/CQSLIJRcSF","expanded_url":"http:\/\/twitter.com\/hemmingsbeanies\/status\/663727892363403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727889838395392,"id_str":"663727889838395392","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_81WUAAleOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_81WUAAleOM.jpg","url":"https:\/\/t.co\/CQSLIJRcSF","display_url":"pic.twitter.com\/CQSLIJRcSF","expanded_url":"http:\/\/twitter.com\/hemmingsbeanies\/status\/663727892363403264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080035664"} +{"delete":{"status":{"id":459371410650329089,"id_str":"459371410650329089","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080036250"}} +{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727892355014657,"id_str":"663727892355014657","text":"\u0413\u043e\u0432\u043e\u0440\u0438 \u0443\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u043e\u044e! \u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430 \u043c\u043e\u0432\u0430 - \u043d\u0430\u0448\u0430 \u0431\u0435\u0437\u043f\u0435\u043a\u0430. https:\/\/t.co\/F4IWWyYTqJ https:\/\/t.co\/s46y5Jr4ar","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3596578817,"id_str":"3596578817","name":"\u041f\u0440\u0430\u0432\u0430 \u0423\u043a\u0440\u0430\u0457\u043d\u0430","screen_name":"pravaukraina","location":"Kyiv, Ukraine","url":null,"description":"ad16382c3a5c2c07a30b4b2ec2397359","protected":false,"verified":false,"followers_count":1155,"friends_count":398,"listed_count":26,"favourites_count":1720,"statuses_count":4335,"created_at":"Wed Sep 09 08:38:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"uk","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641531615571607552\/Mt2xGW4F.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641531615571607552\/Mt2xGW4F.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641531195960856576\/RHLgJcip_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641531195960856576\/RHLgJcip_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3596578817\/1441787995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F4IWWyYTqJ","expanded_url":"https:\/\/www.youtube.com\/watch?v=tF6fVQ-k_tM","display_url":"youtube.com\/watch?v=tF6fVQ\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663727890823929856,"id_str":"663727890823929856","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAAgUYAAVIMK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAAgUYAAVIMK.png","url":"https:\/\/t.co\/s46y5Jr4ar","display_url":"pic.twitter.com\/s46y5Jr4ar","expanded_url":"http:\/\/twitter.com\/pravaukraina\/status\/663727892355014657\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727890823929856,"id_str":"663727890823929856","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAAgUYAAVIMK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAAgUYAAVIMK.png","url":"https:\/\/t.co\/s46y5Jr4ar","display_url":"pic.twitter.com\/s46y5Jr4ar","expanded_url":"http:\/\/twitter.com\/pravaukraina\/status\/663727892355014657\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"uk","timestamp_ms":"1447080035662"} +{"delete":{"status":{"id":321507360277413888,"id_str":"321507360277413888","user_id":299653008,"user_id_str":"299653008"},"timestamp_ms":"1447080036320"}} +{"delete":{"status":{"id":663695868843982848,"id_str":"663695868843982848","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080036391"}} +{"delete":{"status":{"id":663570022946635776,"id_str":"663570022946635776","user_id":1331462528,"user_id_str":"1331462528"},"timestamp_ms":"1447080036397"}} +{"delete":{"status":{"id":489136406414249984,"id_str":"489136406414249984","user_id":490712129,"user_id_str":"490712129"},"timestamp_ms":"1447080036453"}} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532557825,"id_str":"663727896532557825","text":"RT @Solciafonso: @naatigon primer parcial... Vamos bien","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243295551,"id_str":"243295551","name":"Natal\u00ed","screen_name":"naatigon","location":"Buenos Aires, Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":471,"friends_count":133,"listed_count":0,"favourites_count":1593,"statuses_count":5435,"created_at":"Wed Jan 26 18:53:50 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94064B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000000648746\/032c83d51ba94f2cada8a3ce12f999ed.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000000648746\/032c83d51ba94f2cada8a3ce12f999ed.jpeg","profile_background_tile":true,"profile_link_color":"94064B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646518327863562240\/DuRZfunO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646518327863562240\/DuRZfunO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243295551\/1433300273","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:53 +0000 2015","id":663727464695390209,"id_str":"663727464695390209","text":"@naatigon primer parcial... Vamos bien","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726361308209152,"in_reply_to_status_id_str":"663726361308209152","in_reply_to_user_id":243295551,"in_reply_to_user_id_str":"243295551","in_reply_to_screen_name":"naatigon","user":{"id":391547796,"id_str":"391547796","name":"Solci Afonso","screen_name":"Solciafonso","location":null,"url":null,"description":"The difficulties are not there to push you away from what you love, but to make you stronger","protected":false,"verified":false,"followers_count":745,"friends_count":430,"listed_count":3,"favourites_count":2069,"statuses_count":48871,"created_at":"Sat Oct 15 18:39:48 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578752989063577601\/4bzhS_3H.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578752989063577601\/4bzhS_3H.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639137111879360512\/kie_CfPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639137111879360512\/kie_CfPm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/391547796\/1445042162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"naatigon","name":"Natal\u00ed","id":243295551,"id_str":"243295551","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Solciafonso","name":"Solci Afonso","id":391547796,"id_str":"391547796","indices":[3,15]},{"screen_name":"naatigon","name":"Natal\u00ed","id":243295551,"id_str":"243295551","indices":[17,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896545132545,"id_str":"663727896545132545","text":"RT @furkantahamusic: Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1941915282,"id_str":"1941915282","name":"hepsi","screen_name":"HepsiRuya","location":null,"url":null,"description":"#Takipedenitakipederim #2deBirtakiplesiyoruz","protected":false,"verified":false,"followers_count":13672,"friends_count":14241,"listed_count":5,"favourites_count":2856,"statuses_count":12712,"created_at":"Sun Oct 06 20:22:38 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589805316964945920\/dEjCl-Vl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589805316964945920\/dEjCl-Vl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1941915282\/1446726180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:41:47 +0000 2015","id":663396004251738112,"id_str":"663396004251738112","text":"Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779769012,"id_str":"2779769012","name":"Furkan Taha Postall\u0131","screen_name":"furkantahamusic","location":"\u0130zmit \/ Karam\u00fcrsel","url":"http:\/\/instagram.com\/furkantahamusic","description":"Kocaeli \u00dcniversitesi - Gazetecilik \/ Radyo Ki 94.8","protected":false,"verified":false,"followers_count":45392,"friends_count":98,"listed_count":29,"favourites_count":396,"statuses_count":1648,"created_at":"Sat Aug 30 02:56:53 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779769012\/1439508536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1404,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"furkantahamusic","name":"Furkan Taha Postall\u0131","id":2779769012,"id_str":"2779769012","indices":[3,19]}],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036661"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896528338944,"id_str":"663727896528338944","text":"RT @GirlsNotebook: don\u2019t fall in love. fall off a bridge, it hurts less","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221200964,"id_str":"221200964","name":"Elena","screen_name":"ElenaRamos_13","location":"SATX ","url":null,"description":"lvhs boi","protected":false,"verified":false,"followers_count":673,"friends_count":524,"listed_count":3,"favourites_count":6691,"statuses_count":24793,"created_at":"Tue Nov 30 00:48:20 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727761752723456\/CF9qr1dp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727761752723456\/CF9qr1dp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221200964\/1444709945","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727805042151424,"id_str":"663727805042151424","text":"don\u2019t fall in love. fall off a bridge, it hurts less","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259132164,"id_str":"259132164","name":"Typical Girl","screen_name":"GirlsNotebook","location":"Instagram : tedofficialpage","url":"http:\/\/dailyteenlife.com\/","description":"If you can relate to any of my tweets, congratulations, your life sucks. (Parody Account) Advertising-Promotions \u2709 contact@hilarius-dude.com","protected":false,"verified":false,"followers_count":2033133,"friends_count":648370,"listed_count":3460,"favourites_count":6124,"statuses_count":95897,"created_at":"Tue Mar 01 05:47:50 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"010F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850307037\/1bf6aac62473e94cfb0ba5b5e3118d99.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850307037\/1bf6aac62473e94cfb0ba5b5e3118d99.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658716606537732096\/0JckVUB8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658716606537732096\/0JckVUB8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259132164\/1446932279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GirlsNotebook","name":"Typical Girl","id":259132164,"id_str":"259132164","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036657"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532557824,"id_str":"663727896532557824","text":"RT @furkantahamusic: Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":705775417,"id_str":"705775417","name":"Serra","screen_name":"serraniz","location":"istanbul ata\u015fehir","url":null,"description":"Yeditepe \u00dcniversitesi","protected":false,"verified":false,"followers_count":19916,"friends_count":15498,"listed_count":2,"favourites_count":3836,"statuses_count":54673,"created_at":"Thu Jul 19 20:58:05 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630385251\/irmg1aq4ooynienaw3p4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630385251\/irmg1aq4ooynienaw3p4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511993436489404417\/WHhepXyq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511993436489404417\/WHhepXyq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705775417\/1439220720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:41:47 +0000 2015","id":663396004251738112,"id_str":"663396004251738112","text":"Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779769012,"id_str":"2779769012","name":"Furkan Taha Postall\u0131","screen_name":"furkantahamusic","location":"\u0130zmit \/ Karam\u00fcrsel","url":"http:\/\/instagram.com\/furkantahamusic","description":"Kocaeli \u00dcniversitesi - Gazetecilik \/ Radyo Ki 94.8","protected":false,"verified":false,"followers_count":45392,"friends_count":98,"listed_count":29,"favourites_count":396,"statuses_count":1648,"created_at":"Sat Aug 30 02:56:53 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779769012\/1439508536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1404,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"furkantahamusic","name":"Furkan Taha Postall\u0131","id":2779769012,"id_str":"2779769012","indices":[3,19]}],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896528347137,"id_str":"663727896528347137","text":"RT @__onlyonelady: PINK having a 90% off sale on Black Friday a girls bestfriend\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":361036725,"id_str":"361036725","name":"12\/17\u2728","screen_name":"Sienima_","location":"609 BORN &' RAISED","url":null,"description":"Rest In Peace Q\u2660\ufe0f. BESTFRIEND: @_zaakhira \u2728","protected":false,"verified":false,"followers_count":845,"friends_count":555,"listed_count":1,"favourites_count":33737,"statuses_count":44451,"created_at":"Wed Aug 24 04:24:31 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"66EDFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582383520422629376\/amI5-wb4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582383520422629376\/amI5-wb4.jpg","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663039681601404928\/TzPN4PLp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663039681601404928\/TzPN4PLp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361036725\/1441743190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:35 +0000 2015","id":663709522058457088,"id_str":"663709522058457088","text":"PINK having a 90% off sale on Black Friday a girls bestfriend\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b\ud83d\ude1b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2811304884,"id_str":"2811304884","name":"Diamond","screen_name":"__onlyonelady","location":"Detroit, MI","url":null,"description":"Everybody talking, but nobody delivering","protected":false,"verified":false,"followers_count":3609,"friends_count":3154,"listed_count":2,"favourites_count":4653,"statuses_count":8887,"created_at":"Mon Sep 15 13:35:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658371770571993095\/cbQdb9xd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658371770571993095\/cbQdb9xd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811304884\/1445803070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":322,"favorite_count":159,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__onlyonelady","name":"Diamond","id":2811304884,"id_str":"2811304884","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036657"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896549302273,"id_str":"663727896549302273","text":"RT @furkantahamusic: Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1646377892,"id_str":"1646377892","name":"\u00dcneys UYSAL","screen_name":"vaybebro","location":"MAN\u0130SA\/TURGUTLU","url":"https:\/\/instagram.com\/uneysuysal","description":"Herkesin uzman oldu\u011fu sosyal medyada garip bir kullan\u0131c\u0131\nMevlana University","protected":false,"verified":false,"followers_count":119959,"friends_count":100442,"listed_count":36,"favourites_count":34260,"statuses_count":48111,"created_at":"Sun Aug 04 23:32:27 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169930169\/YR3LSR1e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169930169\/YR3LSR1e.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640817524901322752\/-gzVdDQ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640817524901322752\/-gzVdDQ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1646377892\/1427301942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:41:47 +0000 2015","id":663396004251738112,"id_str":"663396004251738112","text":"Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779769012,"id_str":"2779769012","name":"Furkan Taha Postall\u0131","screen_name":"furkantahamusic","location":"\u0130zmit \/ Karam\u00fcrsel","url":"http:\/\/instagram.com\/furkantahamusic","description":"Kocaeli \u00dcniversitesi - Gazetecilik \/ Radyo Ki 94.8","protected":false,"verified":false,"followers_count":45392,"friends_count":98,"listed_count":29,"favourites_count":396,"statuses_count":1648,"created_at":"Sat Aug 30 02:56:53 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779769012\/1439508536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1404,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"furkantahamusic","name":"Furkan Taha Postall\u0131","id":2779769012,"id_str":"2779769012","indices":[3,19]}],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036662"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553476096,"id_str":"663727896553476096","text":"o coitado n\u00e3o pode nem postar uma foto com a m\u00e3e que elas come\u00e7am","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2262118410,"id_str":"2262118410","name":"Jessica","screen_name":"JessiccaSantos_","location":null,"url":"http:\/\/www.zefelipenews.com.br","description":"Let's make the world better, together. #Purpose #nov13","protected":false,"verified":false,"followers_count":508,"friends_count":201,"listed_count":1,"favourites_count":4783,"statuses_count":4193,"created_at":"Thu Dec 26 01:15:58 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514993080865259521\/LArbs-_z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514993080865259521\/LArbs-_z.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662081008129474561\/iGCaQMuM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662081008129474561\/iGCaQMuM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2262118410\/1444418091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080036663"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540876801,"id_str":"663727896540876801","text":"\u0432\u044b\u0439\u0434\u0438 \u0442\u044b \u043d\u0430 \u0443\u043b\u0438\u0446\u0443 \u0438 \u0441\u0445\u043e\u0434\u0438 \u0432 \u0441\u043f\u043e\u0440\u0442\u0437\u0430\u043b \u0447\u0442\u043e\u0431\u044b \u0448\u043a\u043e\u043b\u044c\u043d\u0438\u043a \u0442\u0435\u0431\u0435 \u043f\u0438\u0437\u0434\u044b \u043d\u0435 \u0434\u0430\u043b \u0442\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0438 \u043d\u0430 \u0441\u0435\u0431\u044f \u044d\u0442\u043e \u0436\u0435 \u043f\u0438\u0437\u0434\u0435\u0446 \u043d\u0430 \u0442\u0435\u0431\u044f \u043d\u0435 \u0432\u0441\u0442\u0430\u043d\u0435\u0442 \u043c\u043e\u0439 \u043e\u0433\u0443\u0440\u0435\u0446","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2322223472,"id_str":"2322223472","name":"I'm not \u043ekay","screen_name":"Solovieva__","location":null,"url":null,"description":"Trust me","protected":false,"verified":false,"followers_count":6057,"friends_count":600,"listed_count":28,"favourites_count":0,"statuses_count":229009,"created_at":"Sat Feb 01 12:03:28 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533522657770106880\/l3vUPtF0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533522657770106880\/l3vUPtF0.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662967180204638208\/xbeqAuzc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662967180204638208\/xbeqAuzc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2322223472\/1446536349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896566104065,"id_str":"663727896566104065","text":"RT @furkantahamusic: Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3183240904,"id_str":"3183240904","name":"KAMATURTAa","screen_name":"KAMATURTA3","location":null,"url":null,"description":"SEN\u0130 TAK\u0130P ED\u0130YOR","protected":false,"verified":false,"followers_count":15464,"friends_count":13445,"listed_count":4,"favourites_count":2411,"statuses_count":25025,"created_at":"Sun Apr 19 13:50:28 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610682906684583937\/RxKRxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610682906684583937\/RxKRxFBB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:41:47 +0000 2015","id":663396004251738112,"id_str":"663396004251738112","text":"Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779769012,"id_str":"2779769012","name":"Furkan Taha Postall\u0131","screen_name":"furkantahamusic","location":"\u0130zmit \/ Karam\u00fcrsel","url":"http:\/\/instagram.com\/furkantahamusic","description":"Kocaeli \u00dcniversitesi - Gazetecilik \/ Radyo Ki 94.8","protected":false,"verified":false,"followers_count":45392,"friends_count":98,"listed_count":29,"favourites_count":396,"statuses_count":1648,"created_at":"Sat Aug 30 02:56:53 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779769012\/1439508536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1404,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"furkantahamusic","name":"Furkan Taha Postall\u0131","id":2779769012,"id_str":"2779769012","indices":[3,19]}],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896566079488,"id_str":"663727896566079488","text":"RT @UmFilosofoCitou: Mentiu pra mim uma vez, \u00e9 claro que eu vou desconfiar de voc\u00ea sempre. Porque quem mente uma vez, mente duas, quem faz \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3065613033,"id_str":"3065613033","name":"ANTONIO FERNANDO FER","screen_name":"fernandoeerica","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":831,"friends_count":2022,"listed_count":1,"favourites_count":26,"statuses_count":6545,"created_at":"Sun Mar 01 13:33:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583949415750225921\/t-e1JgIF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583949415750225921\/t-e1JgIF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 17:10:08 +0000 2015","id":659054485809987584,"id_str":"659054485809987584","text":"Mentiu pra mim uma vez, \u00e9 claro que eu vou desconfiar de voc\u00ea sempre. Porque quem mente uma vez, mente duas, quem faz uma vez, faz duas!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":254809626,"id_str":"254809626","name":"Frases de Fil\u00f3sofos","screen_name":"UmFilosofoCitou","location":null,"url":null,"description":"Maior acervo de frases reflexivas, profundas e inteligentes do twitter. CONTATO PARA PUBLICIDADE: umfilosofocitou@gmail.com","protected":false,"verified":false,"followers_count":1370666,"friends_count":103,"listed_count":1255,"favourites_count":336,"statuses_count":26981,"created_at":"Sun Feb 20 02:02:38 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085804248\/62d056d82d50c5469e4f59434d2e3203.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085804248\/62d056d82d50c5469e4f59434d2e3203.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"4A484A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481612374130970624\/0pOfMy2v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481612374130970624\/0pOfMy2v_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254809626\/1432174008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":410,"favorite_count":288,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UmFilosofoCitou","name":"Frases de Fil\u00f3sofos","id":254809626,"id_str":"254809626","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896536592385,"id_str":"663727896536592385","text":"1938 La llamada \"Noche de los cristales rotos\" : los nazis destrozan y queman la mayor\u00eda de las propiedades jud\u00edas en Alemania.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1271450058,"id_str":"1271450058","name":"Fundacion BNA","screen_name":"bnafundacion","location":null,"url":null,"description":"Fundacion Bienestar para Ni\u00f1os y Adultos A.C. Por el bienestar de los ni\u00f1os y adultos m\u00e1s necesitados, falta mucho, mucho por hacer. \nM\u00c9XICO","protected":false,"verified":false,"followers_count":276,"friends_count":1149,"listed_count":4,"favourites_count":1126,"statuses_count":14944,"created_at":"Sat Mar 16 05:15:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619821232482091008\/6uXB0P-m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619821232482091008\/6uXB0P-m_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036659"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896561909760,"id_str":"663727896561909760","text":"RT @depravator2003: \"@sexykuwaiti30: https:\/\/t.co\/v9RaNUlesT\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664257988,"id_str":"1664257988","name":"angel reyes","screen_name":"omega8525","location":null,"url":null,"description":"conociendo 25 a\u00f1o Venezuela s\u00edgueme","protected":false,"verified":false,"followers_count":778,"friends_count":1855,"listed_count":6,"favourites_count":316,"statuses_count":2754,"created_at":"Mon Aug 12 05:43:30 +0000 2013","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598496632875970560\/-xJ2Hf68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598496632875970560\/-xJ2Hf68_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 22:20:38 +0000 2015","id":662394114151858176,"id_str":"662394114151858176","text":"\"@sexykuwaiti30: https:\/\/t.co\/v9RaNUlesT\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599624636,"id_str":"599624636","name":"Cuatro Lunas","screen_name":"depravator2003","location":"DF, MEX - VHSA, Tab","url":null,"description":"VERSATIL BUSCANDO RICOS CULOS Y VERGAS PREFERENTEMENTE VELLUDOS (NO PUTOS CALIENTA HUEVOS)","protected":false,"verified":false,"followers_count":1438,"friends_count":663,"listed_count":7,"favourites_count":7786,"statuses_count":8439,"created_at":"Mon Jun 04 22:45:58 +0000 2012","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659905786345189376\/xKgG1ka8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659905786345189376\/xKgG1ka8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599624636\/1442900315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sexykuwaiti30","name":"sexykuwaiti30","id":586073417,"id_str":"586073417","indices":[1,15]}],"symbols":[],"media":[{"id":655407582086090752,"id_str":"655407582086090752","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"}]},"extended_entities":{"media":[{"id":655407582086090752,"id_str":"655407582086090752","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"},{"id":655407600079630336,"id_str":"655407600079630336","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5vWHWcAAq1Fp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5vWHWcAAq1Fp.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"},{"id":655407608245952512,"id_str":"655407608245952512","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5v0iWoAAs3DU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5v0iWoAAs3DU.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"depravator2003","name":"Cuatro Lunas","id":599624636,"id_str":"599624636","indices":[3,18]},{"screen_name":"sexykuwaiti30","name":"sexykuwaiti30","id":586073417,"id_str":"586073417","indices":[21,35]}],"symbols":[],"media":[{"id":655407582086090752,"id_str":"655407582086090752","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"}]},"extended_entities":{"media":[{"id":655407582086090752,"id_str":"655407582086090752","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5uTFW0AA0z1P.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"},{"id":655407600079630336,"id_str":"655407600079630336","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5vWHWcAAq1Fp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5vWHWcAAq1Fp.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"},{"id":655407608245952512,"id_str":"655407608245952512","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRh5v0iWoAAs3DU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRh5v0iWoAAs3DU.jpg","url":"https:\/\/t.co\/v9RaNUlesT","display_url":"pic.twitter.com\/v9RaNUlesT","expanded_url":"http:\/\/twitter.com\/dan_pto\/status\/655407612108939264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655407612108939264,"source_status_id_str":"655407612108939264","source_user_id":1270246100,"source_user_id_str":"1270246100"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080036665"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540876800,"id_str":"663727896540876800","text":"RT @TodaysDocument: Delegates to #ContinentalCongress adopt rules of secrecy 240 yrs ago #TDiH 11\/09\/1775 https:\/\/t.co\/wRCuBm9rnQ #AmRev ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31177537,"id_str":"31177537","name":"Gordon Belt","screen_name":"gordonbelt","location":"Oh Tennessee, My Tennessee","url":"http:\/\/www.posterityproject.com","description":"Public Historian and Author of the @HistoryPress book, John Sevier: Tennessee\u2019s First Hero. Studying History, Myth, and Memory on America's First Frontier.","protected":false,"verified":false,"followers_count":1618,"friends_count":518,"listed_count":178,"favourites_count":10,"statuses_count":12262,"created_at":"Tue Apr 14 17:44:22 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/739783388\/1542b142969240665426309d1249ab32.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/739783388\/1542b142969240665426309d1249ab32.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000469463126\/6dec739d56d67e4b13de3f9a0030de80_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000469463126\/6dec739d56d67e4b13de3f9a0030de80_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31177537\/1398518421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:52 +0000 2015","id":663723434124271616,"id_str":"663723434124271616","text":"Delegates to #ContinentalCongress adopt rules of secrecy 240 yrs ago #TDiH 11\/09\/1775 https:\/\/t.co\/wRCuBm9rnQ #AmRev https:\/\/t.co\/xXS7ywf3ij","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22656792,"id_str":"22656792","name":"Today's Document","screen_name":"TodaysDocument","location":"The National Archives, D.C.","url":"http:\/\/todaysdocument.tumblr.com\/","description":"Today in History & Daily Historical Documents from the US National Archives. \r\nFollow\/Retweet\/Reply \u2260 endorsement. Full policy at http:\/\/t.co\/zR1PqZkN","protected":false,"verified":true,"followers_count":26697,"friends_count":554,"listed_count":858,"favourites_count":2339,"statuses_count":6790,"created_at":"Tue Mar 03 18:34:32 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/189413702\/background2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/189413702\/background2.jpg","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1208582961\/app_icon_v2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1208582961\/app_icon_v2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22656792\/1437057017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01fbe706f872cb32","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01fbe706f872cb32.json","place_type":"city","name":"Washington","full_name":"Washington, DC","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-77.119401,38.801826],[-77.119401,38.995380],[-76.909396,38.995380],[-76.909396,38.801826]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[{"text":"ContinentalCongress","indices":[13,33]},{"text":"TDiH","indices":[69,74]},{"text":"AmRev","indices":[110,116]}],"urls":[{"url":"https:\/\/t.co\/wRCuBm9rnQ","expanded_url":"http:\/\/todaysdocument.tumblr.com\/post\/132869296797\/the-agreement-of-secrecy-november-9-1775-papers","display_url":"todaysdocument.tumblr.com\/post\/132869296\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663723433146978304,"id_str":"663723433146978304","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","url":"https:\/\/t.co\/xXS7ywf3ij","display_url":"pic.twitter.com\/xXS7ywf3ij","expanded_url":"http:\/\/twitter.com\/TodaysDocument\/status\/663723434124271616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":513,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":536,"h":810,"resize":"fit"},"medium":{"w":536,"h":810,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723433146978304,"id_str":"663723433146978304","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","url":"https:\/\/t.co\/xXS7ywf3ij","display_url":"pic.twitter.com\/xXS7ywf3ij","expanded_url":"http:\/\/twitter.com\/TodaysDocument\/status\/663723434124271616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":513,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":536,"h":810,"resize":"fit"},"medium":{"w":536,"h":810,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ContinentalCongress","indices":[33,53]},{"text":"TDiH","indices":[89,94]},{"text":"AmRev","indices":[130,136]}],"urls":[{"url":"https:\/\/t.co\/wRCuBm9rnQ","expanded_url":"http:\/\/todaysdocument.tumblr.com\/post\/132869296797\/the-agreement-of-secrecy-november-9-1775-papers","display_url":"todaysdocument.tumblr.com\/post\/132869296\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"TodaysDocument","name":"Today's Document","id":22656792,"id_str":"22656792","indices":[3,18]}],"symbols":[],"media":[{"id":663723433146978304,"id_str":"663723433146978304","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","url":"https:\/\/t.co\/xXS7ywf3ij","display_url":"pic.twitter.com\/xXS7ywf3ij","expanded_url":"http:\/\/twitter.com\/TodaysDocument\/status\/663723434124271616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":513,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":536,"h":810,"resize":"fit"},"medium":{"w":536,"h":810,"resize":"fit"}},"source_status_id":663723434124271616,"source_status_id_str":"663723434124271616","source_user_id":22656792,"source_user_id_str":"22656792"}]},"extended_entities":{"media":[{"id":663723433146978304,"id_str":"663723433146978304","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE8iXUEAA-vMy.jpg","url":"https:\/\/t.co\/xXS7ywf3ij","display_url":"pic.twitter.com\/xXS7ywf3ij","expanded_url":"http:\/\/twitter.com\/TodaysDocument\/status\/663723434124271616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":513,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":536,"h":810,"resize":"fit"},"medium":{"w":536,"h":810,"resize":"fit"}},"source_status_id":663723434124271616,"source_status_id_str":"663723434124271616","source_user_id":22656792,"source_user_id_str":"22656792"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896557707265,"id_str":"663727896557707265","text":"\u00bfInvolucramos a los colaboradores? \u00a1Colaboradores involucrados son la clave del \u00e9xito!;https:\/\/t.co\/dhB45E2pSP","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240755782,"id_str":"240755782","name":"Francisco Helguera","screen_name":"pacohelguera","location":"Madrid - Alicante - Denia","url":"http:\/\/www.formaciondirectivos.com","description":"Consultor - Formador - Coach. \nAutor de 19 Cursos de Formaci\u00f3n y 11 libros de empresa. \nCambio todo lo que s\u00e9 por la mitad de lo que ignoro.","protected":false,"verified":false,"followers_count":26036,"friends_count":377,"listed_count":16,"favourites_count":1,"statuses_count":10315,"created_at":"Thu Jan 20 17:30:29 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5E962","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/725387985\/e0254257d7b8d24e18fdd8eb2ceea155.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/725387985\/e0254257d7b8d24e18fdd8eb2ceea155.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1672963295\/tweet_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1672963295\/tweet_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dhB45E2pSP","expanded_url":"http:\/\/ow.ly\/Up5gP","display_url":"ow.ly\/Up5gP","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036664"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896528318465,"id_str":"663727896528318465","text":"https:\/\/t.co\/dMwNpGu2bl","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1467926677,"id_str":"1467926677","name":"Seraiah Alpha","screen_name":"Seraiah_alpha","location":"Arizona, USA","url":"https:\/\/www.facebook.com\/jack.compton.520","description":null,"protected":false,"verified":false,"followers_count":2705,"friends_count":4339,"listed_count":303,"favourites_count":17927,"statuses_count":54521,"created_at":"Wed May 29 18:10:37 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656379665762795520\/VjYQWcki_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656379665762795520\/VjYQWcki_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1467926677\/1445327638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dMwNpGu2bl","expanded_url":"http:\/\/ln.is\/com\/62uIo","display_url":"ln.is\/com\/62uIo","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080036657"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896561893376,"id_str":"663727896561893376","text":"RT @LinceRama: #ElSidaDeFreddyMercury invento a los turros","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2307120166,"id_str":"2307120166","name":"Soy un feliz camar\u00f3n","screen_name":"NicolasVelero","location":"Montevideo, Uruguay","url":null,"description":"VAMO' LAS BANDAS!","protected":false,"verified":false,"followers_count":321,"friends_count":366,"listed_count":0,"favourites_count":4678,"statuses_count":9968,"created_at":"Mon Jan 27 06:04:10 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656648493084319746\/xDF4n2Ep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656648493084319746\/xDF4n2Ep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307120166\/1444710771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:59 +0000 2015","id":663727490595205120,"id_str":"663727490595205120","text":"#ElSidaDeFreddyMercury invento a los turros","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297689028,"id_str":"3297689028","name":"Agus","screen_name":"LinceRama","location":"Uruguay","url":null,"description":"Respira el momento","protected":false,"verified":false,"followers_count":67,"friends_count":94,"listed_count":1,"favourites_count":264,"statuses_count":1005,"created_at":"Mon Jul 27 13:39:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663681678381064192\/52M3dI5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663681678381064192\/52M3dI5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297689028\/1444096314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"ElSidaDeFreddyMercury","indices":[0,22]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ElSidaDeFreddyMercury","indices":[15,37]}],"urls":[],"user_mentions":[{"screen_name":"LinceRama","name":"Agus","id":3297689028,"id_str":"3297689028","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036665"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896566059008,"id_str":"663727896566059008","text":"RT @namorizamos: De todas as estrelas, voc\u00ea \u00e9 a minha favorita \ud83d\udc8f\ud83d\udc9e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2972247783,"id_str":"2972247783","name":"Santinha","screen_name":"a_nigga23","location":"Portim\u00e3o, Portugal","url":null,"description":"AGIR \u2764 BEST (cosma) \u2764\ufe0f\/BEST (concei\u00e7\u00e3o) \u2764\ufe0f\/Rodrigo Silva \u2764\ufe0fcarolina\u2764\ufe0f Ana \u2764\ufe0fM.","protected":false,"verified":false,"followers_count":396,"friends_count":473,"listed_count":1,"favourites_count":3933,"statuses_count":7657,"created_at":"Sun Jan 11 00:04:26 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"Selecionar Idioma...","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658254195951321089\/FvpjXS40_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658254195951321089\/FvpjXS40_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2972247783\/1446840715","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727775367364609,"id_str":"663727775367364609","text":"De todas as estrelas, voc\u00ea \u00e9 a minha favorita \ud83d\udc8f\ud83d\udc9e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2375640738,"id_str":"2375640738","name":"Namorizamos\u2122","screen_name":"namorizamos","location":" ","url":null,"description":null,"protected":false,"verified":false,"followers_count":303006,"friends_count":-1,"listed_count":71,"favourites_count":3,"statuses_count":8843,"created_at":"Thu Mar 06 17:00:32 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457947369993015296\/ZDRY1udi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457947369993015296\/ZDRY1udi.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660452460780257281\/11F2srSX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660452460780257281\/11F2srSX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2375640738\/1446299129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"namorizamos","name":"Namorizamos\u2122","id":2375640738,"id_str":"2375640738","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532504576,"id_str":"663727896532504576","text":"RT @furkantahamusic: Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2213786737,"id_str":"2213786737","name":"Selen Sahra","screen_name":"MDKangel11","location":"Antalya","url":null,"description":"GT YAPAN HESAPLAR @TakipJeti @Nesli_dc @AnlamliYazi @HostesGul @NzSeda @MDKAngel11 @NilayBurc ! DM YOK ! DM AtMAYIN !!!!","protected":false,"verified":false,"followers_count":37359,"friends_count":17247,"listed_count":15,"favourites_count":5349,"statuses_count":35134,"created_at":"Mon Nov 25 08:40:20 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660551267597615105\/tBC40eKX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660551267597615105\/tBC40eKX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2213786737\/1387892788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:41:47 +0000 2015","id":663396004251738112,"id_str":"663396004251738112","text":"Her ili\u015fkiden geriye kalan https:\/\/t.co\/yYRI7bveFU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779769012,"id_str":"2779769012","name":"Furkan Taha Postall\u0131","screen_name":"furkantahamusic","location":"\u0130zmit \/ Karam\u00fcrsel","url":"http:\/\/instagram.com\/furkantahamusic","description":"Kocaeli \u00dcniversitesi - Gazetecilik \/ Radyo Ki 94.8","protected":false,"verified":false,"followers_count":45392,"friends_count":98,"listed_count":29,"favourites_count":396,"statuses_count":1648,"created_at":"Sat Aug 30 02:56:53 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540819208615911424\/pYHIANWD.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612198643253252096\/XKvnxFBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779769012\/1439508536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1404,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"furkantahamusic","name":"Furkan Taha Postall\u0131","id":2779769012,"id_str":"2779769012","indices":[3,19]}],"symbols":[],"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"extended_entities":{"media":[{"id":663396002146197505,"id_str":"663396002146197505","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTbJi1WoAEmGHs.jpg","url":"https:\/\/t.co\/yYRI7bveFU","display_url":"pic.twitter.com\/yYRI7bveFU","expanded_url":"http:\/\/twitter.com\/furkantahamusic\/status\/663396004251738112\/photo\/1","type":"photo","sizes":{"large":{"w":576,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":576,"h":324,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663396004251738112,"source_status_id_str":"663396004251738112","source_user_id":2779769012,"source_user_id_str":"2779769012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896528297984,"id_str":"663727896528297984","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/wveD18Wwlf","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":707334908,"id_str":"707334908","name":"nawaf","screen_name":"nawaf_ksa1987","location":"\u062c\u062f\u0647","url":null,"description":"http:\/\/ask.fm\/nawaf1407","protected":false,"verified":false,"followers_count":87,"friends_count":278,"listed_count":0,"favourites_count":7,"statuses_count":6972,"created_at":"Fri Jul 20 15:31:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2415756223\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2415756223\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/707334908\/1442747854","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wveD18Wwlf","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080036657"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540921856,"id_str":"663727896540921856","text":"\ud83d\udd95\ud83c\udffb\ud83d\udd95\ud83c\udffb\ud83d\udd95\ud83c\udffb\ud83d\udd95\ud83c\udffb\ud83d\udd95\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242207991,"id_str":"3242207991","name":"gHon","screen_name":"genevievelongg","location":"Ontario, Canada","url":null,"description":"living in a state of carnage","protected":false,"verified":false,"followers_count":135,"friends_count":136,"listed_count":1,"favourites_count":1135,"statuses_count":370,"created_at":"Fri May 08 18:50:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727626603749376\/Ox1IEJPi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727626603749376\/Ox1IEJPi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242207991\/1444686166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896557543425,"id_str":"663727896557543425","text":"RT @AJ_RCTI: Si iyan menikmatin banget yah makan mie ny, jadi laper sendiri nih -_- #AnakJalananTouringPartIII","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2919958091,"id_str":"2919958091","name":"Faizareta","screen_name":"faizantaa","location":"Situbondo, East Java","url":null,"description":"Ig : faizareta.12 || SL @salshaabilaa\nFollback? Mention!! || RDK\u2665","protected":false,"verified":false,"followers_count":158,"friends_count":95,"listed_count":1,"favourites_count":104,"statuses_count":1386,"created_at":"Sat Dec 13 17:16:16 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660416794075623424\/-LhxyLWp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660416794075623424\/-LhxyLWp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2919958091\/1445876027","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:10:54 +0000 2015","id":663690222085894144,"id_str":"663690222085894144","text":"Si iyan menikmatin banget yah makan mie ny, jadi laper sendiri nih -_- #AnakJalananTouringPartIII","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2352566250,"id_str":"2352566250","name":"#AnakJalanan","screen_name":"AJ_RCTI","location":"RCTI, Kebon Jeruk, Jakbar","url":"http:\/\/rctimobile.com","description":"Official Twitter Sinetron #AnakJalanan. Tayang setiap Hari pk. 18.15 WIB, hanya di @officialRCTI. Sutradara: @AkbarBhakti | Iklan:contactpromotion04@gmail.com","protected":false,"verified":false,"followers_count":122069,"friends_count":264,"listed_count":6,"favourites_count":57,"statuses_count":6145,"created_at":"Thu Feb 20 02:30:41 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659446383552761856\/l19DK1am.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659446383552761856\/l19DK1am.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663028781284655104\/mo-XQv0j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663028781284655104\/mo-XQv0j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352566250\/1446913538","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":30,"entities":{"hashtags":[{"text":"AnakJalananTouringPartIII","indices":[71,97]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AnakJalananTouringPartIII","indices":[84,110]}],"urls":[],"user_mentions":[{"screen_name":"AJ_RCTI","name":"#AnakJalanan","id":2352566250,"id_str":"2352566250","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080036664"} +{"delete":{"status":{"id":533729730663436288,"id_str":"533729730663436288","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080036737"}} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540745730,"id_str":"663727896540745730","text":"@joehgint folowed oppa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663693742440759296,"in_reply_to_status_id_str":"663693742440759296","in_reply_to_user_id":2240336408,"in_reply_to_user_id_str":"2240336408","in_reply_to_screen_name":"joehgint","user":{"id":2992083404,"id_str":"2992083404","name":"\uc774\ud788\uc774","screen_name":"leehiiy__","location":null,"url":null,"description":"lee ha yi \uc774\ud558\uc774 hayi hi leehee \u263a\u263a\u263a","protected":false,"verified":false,"followers_count":254,"friends_count":241,"listed_count":0,"favourites_count":4,"statuses_count":788,"created_at":"Thu Jan 22 07:50:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662394694077321217\/3MhctDkO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662394694077321217\/3MhctDkO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992083404\/1446866489","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joehgint","name":"KAI","id":2240336408,"id_str":"2240336408","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532414464,"id_str":"663727896532414464","text":"\u73fe\u5728\u306e\u9045\u5ef6(\u2934\ufe0e) 0.280153036118\u79d2\n\u30b9\u30ec\u30c3\u30c9\u6570(\u2935\ufe0e) 20(-9.09%)\n246910 tweets 676075 events\n298 tweets\/min 816 events\/min","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153431764,"id_str":"3153431764","name":"zoraru apps status","screen_name":"zoraru__apps","location":"\u305e\u3089\u308b \u3042\u3063\u3077\u3059","url":"https:\/\/doc.zoraru.info","description":"\u305e\u3089\u308b \u3042\u3063\u3077\u3059\u306e\u7a3c\u50cd\u72b6\u6cc1\u3092\u81ea\u52d5\u7684\u306b\u30dd\u30b9\u30c8\u3057\u307e\u3059\u3002\n\u4f55\u304b\u3042\u308c\u3070@ZOLALU\u307e\u3067\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":2684,"friends_count":2674,"listed_count":8,"favourites_count":3105,"statuses_count":423379,"created_at":"Fri Apr 10 09:56:25 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717880043737088\/hUP_TAUz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717880043737088\/hUP_TAUz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153431764\/1447077648","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532402176,"id_str":"663727896532402176","text":"RT @HS_Ose: \u0e40\u0e23\u0e47\u0e27\u0e46\u0e46\u0e46\u0e46\u0e46 \u0e21\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19 MnetMAMA #2015MAMA #EXO #CALLMEBABY \u0e27\u0e38\u0e48\u0e19\u0e27\u0e32\u0e19\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19 555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400594033,"id_str":"400594033","name":"'3\u03c1igkyzJuNgZ","screen_name":"praewmelody1","location":"Bangkok","url":null,"description":"\u0e1a\u0e31\u0e15\u0e23\u0e04\u0e2d\u0e19\u0e2f \u0e04\u0e37\u0e2d..\u0e1a\u0e23\u0e23\u0e25\u0e38 \u0e08\u0e31\u0e1a\u0e21\u0e37\u0e2d\u0e04\u0e37\u0e2d...\u0e19\u0e34\u0e1e\u0e1e\u0e32\u0e19 #94 #kaihun #\uc138\ud6c8\u2665\u0e40\u0e01\u0e34\u0e14\u0e21\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e2b\u0e32\u0e40\u0e07\u0e34\u0e19\u0e21\u0e32\u0e40\u0e1b\u0e22\u0e4c\u0e1c\u0e39\u0e49\u0e40\u0e40\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e32\u0e22\u0e44\u0e1b","protected":false,"verified":false,"followers_count":683,"friends_count":442,"listed_count":4,"favourites_count":156103,"statuses_count":28952,"created_at":"Sat Oct 29 08:40:48 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628707546\/evco9zfrsfmnsv3sbtig.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628707546\/evco9zfrsfmnsv3sbtig.jpeg","profile_background_tile":true,"profile_link_color":"4E991C","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587566332075360257\/PVDbTZ2R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587566332075360257\/PVDbTZ2R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400594033\/1444574073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:41 +0000 2015","id":663725903231348736,"id_str":"663725903231348736","text":"\u0e40\u0e23\u0e47\u0e27\u0e46\u0e46\u0e46\u0e46\u0e46 \u0e21\u0e32\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19 MnetMAMA #2015MAMA #EXO #CALLMEBABY \u0e27\u0e38\u0e48\u0e19\u0e27\u0e32\u0e19\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19 555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1661801311,"id_str":"1661801311","name":"-\u2661hk46","screen_name":"HS_Ose","location":"\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23, \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":"\u2661oohsehun | MonstaX : Minhyuk,Hyungwon | iKON : Hanbin | Infinite : Seongyeol","protected":false,"verified":false,"followers_count":1036,"friends_count":765,"listed_count":1,"favourites_count":51818,"statuses_count":55680,"created_at":"Sun Aug 11 06:07:45 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663681082861064192\/w-x3_ys__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663681082861064192\/w-x3_ys__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1661801311\/1444138910","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[30,39]},{"text":"EXO","indices":[41,45]},{"text":"CALLMEBABY","indices":[47,58]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[42,51]},{"text":"EXO","indices":[53,57]},{"text":"CALLMEBABY","indices":[59,70]}],"urls":[],"user_mentions":[{"screen_name":"HS_Ose","name":"-\u2661hk46","id":1661801311,"id_str":"1661801311","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540807168,"id_str":"663727896540807168","text":"RT @sanjivsinha73: \u0918\u094b\u0930 \u0918\u0943\u0923\u093e \u092e\u0947\u0902, \u092a\u0942\u0924 \u092a\u094d\u092f\u093e\u0930 \u092e\u0947\u0902,\n\u0915\u094d\u0937\u0923\u093f\u0915 \u091c\u0940\u0924 \u092e\u0947\u0902, \u0926\u0940\u0930\u094d\u0918 \u0939\u093e\u0930 \u092e\u0947\u0902,\n\u091c\u0940\u0935\u0928 \u0915\u0947 \u0936\u0924-\u0936\u0924 \u0906\u0915\u0930\u094d\u0937\u0915,\n\u0905\u0930\u092e\u093e\u0928\u094b\u0902 \u0915\u094b \u0922\u0932\u0928\u093e \u0939\u094b\u0917\u093e.\n\u0915\u0926\u092e \u092e\u093f\u0932\u093e\u0915\u0930 \u091a\u0932\u0928\u093e \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3272713844,"id_str":"3272713844","name":"Ravi Gurjar","screen_name":"swatirgurjar1","location":"bandra mumbai","url":null,"description":"\u0930\u0917 \u0930\u0917 \u092e\u0947 \u0939\u0948 \u0939\u093f\u0928\u094d\u0926\u0941\u0924\u094d\u0935 \u0915\u093e \u0930\u0915\u094d\u0924 \n\u0939\u092e \u0939\u0948 \u0928\u092e\u094b \u0915\u0947 \u0915\u091f\u094d\u091f\u0930 \u092d\u0915\u094d\u0924 \n\n\u092e\u0941\u092c\u0902\u0908 \u092e\u0947\u0930\u0940 \u0926\u093f\u0932\u0930\u0942\u092c\u093e \u0939\u0948 \n\u092c\u0940\u092c\u0940 \u0939\u0940 \u092e\u0947\u0939\u092c\u0942\u092c\u093e \u0939\u0948","protected":false,"verified":false,"followers_count":666,"friends_count":44,"listed_count":19,"favourites_count":22829,"statuses_count":19448,"created_at":"Thu Jul 09 07:54:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663327280433754112\/jC7z5nZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663327280433754112\/jC7z5nZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272713844\/1444378086","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:23:21 +0000 2015","id":663663155944419328,"id_str":"663663155944419328","text":"\u0918\u094b\u0930 \u0918\u0943\u0923\u093e \u092e\u0947\u0902, \u092a\u0942\u0924 \u092a\u094d\u092f\u093e\u0930 \u092e\u0947\u0902,\n\u0915\u094d\u0937\u0923\u093f\u0915 \u091c\u0940\u0924 \u092e\u0947\u0902, \u0926\u0940\u0930\u094d\u0918 \u0939\u093e\u0930 \u092e\u0947\u0902,\n\u091c\u0940\u0935\u0928 \u0915\u0947 \u0936\u0924-\u0936\u0924 \u0906\u0915\u0930\u094d\u0937\u0915,\n\u0905\u0930\u092e\u093e\u0928\u094b\u0902 \u0915\u094b \u0922\u0932\u0928\u093e \u0939\u094b\u0917\u093e.\n\u0915\u0926\u092e \u092e\u093f\u0932\u093e\u0915\u0930 \u091a\u0932\u0928\u093e \u0939\u094b\u0917\u093e.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663350101625036800,"in_reply_to_status_id_str":"663350101625036800","in_reply_to_user_id":2191374346,"in_reply_to_user_id_str":"2191374346","in_reply_to_screen_name":"sanjivsinha73","user":{"id":2191374346,"id_str":"2191374346","name":"sanjiv","screen_name":"sanjivsinha73","location":null,"url":null,"description":"\u0924\u0928 \u0938\u092e\u0930\u094d\u092a\u093f\u0924 \u092e\u0928 \u0938\u092e\u0930\u094d\u092a\u093f\u0924\u0964\n\u092e\u0947\u0930\u093e \u092f\u0947 \u091c\u0940\u0935\u0928 \u0938\u092e\u0930\u094d\u092a\u093f\u0924\u0964\n\n\u092e\u094b\u0926\u0940 \u091c\u0940 \u0915\u0940 \u0915\u094d\u0937\u092e\u0924\u093e \u092e\u0947\u0902 \u092a\u0942\u0930\u094d\u0923 \u0935\u093f\u0936\u094d\u0935\u093e\u0938|\n\u0915\u091f\u094d\u091f\u0930 \u0939\u093f\u0928\u094d\u0926\u0942\u0964\u0916\u0941\u0932\u094d\u0932\u0947 \u092e\u0947\u0902 \u092c\u0939\u0938 \u0915\u094b \u0924\u0948\u092f\u093e\u0930\u0964\n\u0906\u092a\u093f\u092f\u0947 \u0914\u0930 \u092a\u093e\u092a\u093f\u092f\u0947 \u0926\u0942\u0930 \u0930\u0939\u0947\u0902\u0964\n\ntweet in fav","protected":false,"verified":false,"followers_count":2435,"friends_count":1429,"listed_count":28,"favourites_count":6478,"statuses_count":30204,"created_at":"Fri Nov 22 14:02:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656425750623571968\/8bvGgFaw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656425750623571968\/8bvGgFaw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191374346\/1445501500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sanjivsinha73","name":"sanjiv","id":2191374346,"id_str":"2191374346","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553394176,"id_str":"663727896553394176","text":"\u30d5\u30a1\u30f3\u306f\u3081\u3063\u3061\u3083\u8003\u5bdf\u3057\u3066\u308b\u306e\u306b\u4f5c\u8005\u306f\u305d\u3093\u306a\u3053\u3068\u3042\u3093\u307e\u308a\u8003\u3048\u3066\u306a\u3044\u3063\u3066\u3000\u30b8\u30e7\u30b8\u30e7\u3067\u3082\u8a00\u308f\u308c\u3066\u305f\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4136442440,"id_str":"4136442440","name":"\u7b52\u53e3","screen_name":"719911_","location":null,"url":null,"description":"\u30e4\u30d0\u3044\u3000\u30de\u30b8\u3067\u3000\u9006\u306b\uff08\u5e74\u306b\u4e00\u5ea6\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u79fb\u52d5\u796d\u308a\u958b\u50ac\u4e2d\uff09","protected":false,"verified":false,"followers_count":54,"friends_count":59,"listed_count":0,"favourites_count":25,"statuses_count":380,"created_at":"Thu Nov 05 15:46:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663370091120062465\/69EpJzT7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663370091120062465\/69EpJzT7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4136442440\/1447049423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036663"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896565944320,"id_str":"663727896565944320","text":"RT @TY__039ss: \u3066\u3088\u3093\u306b\u3080\ud83d\udc93\ud83d\udc93\ud83d\udc93#\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059 https:\/\/t.co\/2qqwrkgDQp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4168994834,"id_str":"4168994834","name":"\u3086 \u306a@\u30bd\u30b7\u57a2","screen_name":"y_ytt0ss","location":"candle made by \ud0dc\uc5f0.*:\uff9f","url":null,"description":"\u524d\u306e\u57a2@g_fw0c \u30ed\u30b0\u30a4\u30f3\u3067\u304d\u306a\u304f\u306a\u3063\u305f\u306e\u3067\u65b0\u3057\u304f\u4f5c\u308a\u76f4\u3057\u307e\u3057\u305f(;_;) \u524d\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3057\u305f\uff01\u3053\u3063\u3061\u306e\u57a2\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff0198line(17) S\u2661NE JAPAN \uc724\uc544\u3068\u540c\u3058\u540d\u524d\u3086\u306a\u3067\u3059(^^) 12\/12\u30ac\u30a4\u30b7 \u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u3059\uff01 \u672c\u57a2\u21d2@ttssssts","protected":false,"verified":false,"followers_count":99,"friends_count":148,"listed_count":0,"favourites_count":13,"statuses_count":61,"created_at":"Sun Nov 08 14:25:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663363396557930496\/CVmJe07H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663363396557930496\/CVmJe07H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4168994834\/1446993194","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 13:42:07 +0000 2015","id":661901240524128257,"id_str":"661901240524128257","text":"\u3066\u3088\u3093\u306b\u3080\ud83d\udc93\ud83d\udc93\ud83d\udc93#\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059 https:\/\/t.co\/2qqwrkgDQp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4124274078,"id_str":"4124274078","name":"\u308b\u3093","screen_name":"TY__039ss","location":null,"url":null,"description":"#SR15B #\ud0dc\uc5f0 #Pink #\u30a2\u30d4\u30fc\u30c1 #96","protected":false,"verified":false,"followers_count":12,"friends_count":47,"listed_count":0,"favourites_count":3,"statuses_count":30,"created_at":"Wed Nov 04 13:31:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661899588169666561\/gv4z0KOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661899588169666561\/gv4z0KOg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4124274078\/1446644187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":19,"entities":{"hashtags":[{"text":"\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[8,98]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661901227513409536,"id_str":"661901227513409536","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","url":"https:\/\/t.co\/2qqwrkgDQp","display_url":"pic.twitter.com\/2qqwrkgDQp","expanded_url":"http:\/\/twitter.com\/TY__039ss\/status\/661901240524128257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661901227513409536,"id_str":"661901227513409536","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","url":"https:\/\/t.co\/2qqwrkgDQp","display_url":"pic.twitter.com\/2qqwrkgDQp","expanded_url":"http:\/\/twitter.com\/TY__039ss\/status\/661901240524128257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[23,113]}],"urls":[],"user_mentions":[{"screen_name":"TY__039ss","name":"\u308b\u3093","id":4124274078,"id_str":"4124274078","indices":[3,13]}],"symbols":[],"media":[{"id":661901227513409536,"id_str":"661901227513409536","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","url":"https:\/\/t.co\/2qqwrkgDQp","display_url":"pic.twitter.com\/2qqwrkgDQp","expanded_url":"http:\/\/twitter.com\/TY__039ss\/status\/661901240524128257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":661901240524128257,"source_status_id_str":"661901240524128257","source_user_id":4124274078,"source_user_id_str":"4124274078"}]},"extended_entities":{"media":[{"id":661901227513409536,"id_str":"661901227513409536","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-LqNZU8AArIJQ.jpg","url":"https:\/\/t.co\/2qqwrkgDQp","display_url":"pic.twitter.com\/2qqwrkgDQp","expanded_url":"http:\/\/twitter.com\/TY__039ss\/status\/661901240524128257\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":661901240524128257,"source_status_id_str":"661901240524128257","source_user_id":4124274078,"source_user_id_str":"4124274078"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896536596480,"id_str":"663727896536596480","text":"\u9032\u6483\u3067\u30af\u30ea\u30b9\u30de\u30b9\u30d1\u30fc\u30c6\u30a3\u30fc\u3068\u304b\u3057\u305f\u3044\u306a\u2026(\u00b4-`).\uff61o()","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3671467392,"id_str":"3671467392","name":"\u308b\u3091","screen_name":"Rue_vaisu","location":"\uff7d\uff90\uff7d\u3068\uff98\uff73\uff9e\uff67\uff72\u306e\uff72\uff81\uff7a\uff9e\u30d1\u30f3\u30c4","url":null,"description":"\u30ea\u30f4\u30a1\u30a4(\u8150) \u30b3\u30b9\u30d7\u30ec\u3057\u3066\u307e\u3059 \u5b85\u30b3\u30b9\u591a\u3081\n\u5199\u771f \u304a\u7d75\u63cf\u304d \u9032\u6483 \u8594\u8587\u846c \u9ed2\uff8a\uff9e\uff7d \uff9c\uff9d\uff8b\uff9f \u3068\u3046\u3089\u3076 \u8da3\u5473\u3001\u6c17\u304c\u5408\u3046\u306a\u3068\u601d\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u30d5\u30a9\u30ed\u30d0\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059 \uff98\uff73\uff9e\uff67\uff72\u53d7\u3051 \u30d8\u30c3\u30c0\u30fc\u306f\u30af\u30ed\u30c8\u3055\u3093\u3068\u2661\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3002Twitter\u5185\u306e\u753b\u50cf,\u306a\u3069\u306b\u3064\u3044\u3066\u306f\u7121\u65ad\u8ee2\u8f09\u304a\u65ad\u308a\u270b","protected":false,"verified":false,"followers_count":47,"friends_count":42,"listed_count":1,"favourites_count":660,"statuses_count":836,"created_at":"Thu Sep 24 15:14:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661561099964157953\/9eOInKRX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661561099964157953\/9eOInKRX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3671467392\/1444318424","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036659"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896545112064,"id_str":"663727896545112064","text":"Her pazartesi izleyemedi\u011fim i\u00e7in kahroldu\u011fum bi dizidir #GuenesinK\u0131zlar\u0131","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3154052535,"id_str":"3154052535","name":"sa\u00e7malamaloji","screen_name":"movik_movik","location":null,"url":"https:\/\/instagram.com\/elifarjil\/","description":"Yav he he","protected":false,"verified":false,"followers_count":69,"friends_count":49,"listed_count":0,"favourites_count":528,"statuses_count":702,"created_at":"Fri Apr 10 17:19:39 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588299033178869760\/Z4T-D_ZQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588299033178869760\/Z4T-D_ZQ.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660824887020269568\/Nh761_V1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660824887020269568\/Nh761_V1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3154052535\/1447005528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GuenesinK\u0131zlar\u0131","indices":[56,72]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080036661"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896557707264,"id_str":"663727896557707264","text":"RT @CloydRivers: Land of the Free, because of the Brave. Salute to Service. Merica. https:\/\/t.co\/NT077cwJqh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2735983308,"id_str":"2735983308","name":"Matthew","screen_name":"MatthewDistler","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":95,"friends_count":132,"listed_count":0,"favourites_count":684,"statuses_count":398,"created_at":"Sat Aug 16 00:32:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649336227964043264\/JmnqwCVY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649336227964043264\/JmnqwCVY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2735983308\/1443657093","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:14:35 +0000 2015","id":663509954825883648,"id_str":"663509954825883648","text":"Land of the Free, because of the Brave. Salute to Service. Merica. https:\/\/t.co\/NT077cwJqh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466645191,"id_str":"466645191","name":"Cloyd Rivers","screen_name":"CloydRivers","location":null,"url":"http:\/\/www.CloydRivers.com","description":"Male model. Lost every fight I've ever been in. Born to lose. Merica.","protected":false,"verified":false,"followers_count":1063109,"friends_count":2221,"listed_count":1124,"favourites_count":12903,"statuses_count":8846,"created_at":"Tue Jan 17 16:49:44 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3043244239\/26ecb7d1a46b534430f04b447c1ab5d4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3043244239\/26ecb7d1a46b534430f04b447c1ab5d4_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2707,"favorite_count":5923,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663509933653012480,"id_str":"663509933653012480","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","url":"https:\/\/t.co\/NT077cwJqh","display_url":"pic.twitter.com\/NT077cwJqh","expanded_url":"http:\/\/twitter.com\/CloydRivers\/status\/663509954825883648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":747,"h":515,"resize":"fit"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663509933653012480,"id_str":"663509933653012480","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","url":"https:\/\/t.co\/NT077cwJqh","display_url":"pic.twitter.com\/NT077cwJqh","expanded_url":"http:\/\/twitter.com\/CloydRivers\/status\/663509954825883648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":747,"h":515,"resize":"fit"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CloydRivers","name":"Cloyd Rivers","id":466645191,"id_str":"466645191","indices":[3,15]}],"symbols":[],"media":[{"id":663509933653012480,"id_str":"663509933653012480","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","url":"https:\/\/t.co\/NT077cwJqh","display_url":"pic.twitter.com\/NT077cwJqh","expanded_url":"http:\/\/twitter.com\/CloydRivers\/status\/663509954825883648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":747,"h":515,"resize":"fit"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}},"source_status_id":663509954825883648,"source_status_id_str":"663509954825883648","source_user_id":466645191,"source_user_id_str":"466645191"}]},"extended_entities":{"media":[{"id":663509933653012480,"id_str":"663509933653012480","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVCxOxUsAAZ4G8.jpg","url":"https:\/\/t.co\/NT077cwJqh","display_url":"pic.twitter.com\/NT077cwJqh","expanded_url":"http:\/\/twitter.com\/CloydRivers\/status\/663509954825883648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":747,"h":515,"resize":"fit"},"medium":{"w":600,"h":413,"resize":"fit"},"small":{"w":340,"h":234,"resize":"fit"}},"source_status_id":663509954825883648,"source_status_id_str":"663509954825883648","source_user_id":466645191,"source_user_id_str":"466645191"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036664"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896536551424,"id_str":"663727896536551424","text":"RT @katum79: \u0e23\u0e1b\u0e20 \u0e04\u0e27\u0e31\u0e01\u0e04\u0e27\u0e22\u0e42\u0e0a\u0e27\u0e4c\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/isERtKYK0M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1402647943,"id_str":"1402647943","name":"Thong","screen_name":"ThongThong8","location":"Ayutthaya","url":null,"description":"love you all","protected":false,"verified":false,"followers_count":312,"friends_count":2090,"listed_count":1,"favourites_count":5848,"statuses_count":656,"created_at":"Sat May 04 15:35:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547408661656510466\/7JK7C4AO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547408661656510466\/7JK7C4AO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1402647943\/1403183852","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:54:26 +0000 2015","id":663368991100919808,"id_str":"663368991100919808","text":"\u0e23\u0e1b\u0e20 \u0e04\u0e27\u0e31\u0e01\u0e04\u0e27\u0e22\u0e42\u0e0a\u0e27\u0e4c\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/isERtKYK0M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229504160,"id_str":"3229504160","name":"\u24c2\u2605\u0e44\u0e2d\u0e49\u0e2b\u0e19\u0e27\u0e14\u2605\u24c2","screen_name":"katum79","location":"\u0e2a\u0e27\u0e23\u0e23\u0e04\u0e4c\u0e0a\u0e31\u0e49\u0e197 \u26aa\ufe0f\u26aa\ufe0f ","url":null,"description":"\u26aa\ufe0f\u26aa\ufe0f #\u0e1e\u0e39\u0e14\u0e08\u0e32 \u0e20\u0e32\u0e29\u0e32 #\u0e04\u0e27\u0e22 \u26aa\ufe0f\u26aa\ufe0f","protected":false,"verified":false,"followers_count":14053,"friends_count":364,"listed_count":11,"favourites_count":162,"statuses_count":29,"created_at":"Fri May 29 06:50:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657150986914365440\/nHpFqeD-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657150986914365440\/nHpFqeD-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229504160\/1433784002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":190,"favorite_count":270,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663368099467390976,"id_str":"663368099467390976","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","url":"https:\/\/t.co\/isERtKYK0M","display_url":"pic.twitter.com\/isERtKYK0M","expanded_url":"http:\/\/twitter.com\/katum79\/status\/663368991100919808\/video\/1","type":"photo","sizes":{"medium":{"w":362,"h":480,"resize":"fit"},"small":{"w":340,"h":451,"resize":"fit"},"large":{"w":362,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663368099467390976,"id_str":"663368099467390976","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","url":"https:\/\/t.co\/isERtKYK0M","display_url":"pic.twitter.com\/isERtKYK0M","expanded_url":"http:\/\/twitter.com\/katum79\/status\/663368991100919808\/video\/1","type":"video","sizes":{"medium":{"w":362,"h":480,"resize":"fit"},"small":{"w":340,"h":451,"resize":"fit"},"large":{"w":362,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[181,240],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/vid\/240x320\/hvS_h5UBcFhc7SOT.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/vid\/240x320\/hvS_h5UBcFhc7SOT.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/pl\/ujr7tysv7Bp7Urg-.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/pl\/ujr7tysv7Bp7Urg-.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"katum79","name":"\u24c2\u2605\u0e44\u0e2d\u0e49\u0e2b\u0e19\u0e27\u0e14\u2605\u24c2","id":3229504160,"id_str":"3229504160","indices":[3,11]}],"symbols":[],"media":[{"id":663368099467390976,"id_str":"663368099467390976","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","url":"https:\/\/t.co\/isERtKYK0M","display_url":"pic.twitter.com\/isERtKYK0M","expanded_url":"http:\/\/twitter.com\/katum79\/status\/663368991100919808\/video\/1","type":"photo","sizes":{"medium":{"w":362,"h":480,"resize":"fit"},"small":{"w":340,"h":451,"resize":"fit"},"large":{"w":362,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663368991100919808,"source_status_id_str":"663368991100919808","source_user_id":3229504160,"source_user_id_str":"3229504160"}]},"extended_entities":{"media":[{"id":663368099467390976,"id_str":"663368099467390976","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663368099467390976\/pu\/img\/42Dods24XOEq1esX.jpg","url":"https:\/\/t.co\/isERtKYK0M","display_url":"pic.twitter.com\/isERtKYK0M","expanded_url":"http:\/\/twitter.com\/katum79\/status\/663368991100919808\/video\/1","type":"video","sizes":{"medium":{"w":362,"h":480,"resize":"fit"},"small":{"w":340,"h":451,"resize":"fit"},"large":{"w":362,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663368991100919808,"source_status_id_str":"663368991100919808","source_user_id":3229504160,"source_user_id_str":"3229504160","video_info":{"aspect_ratio":[181,240],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/vid\/240x320\/hvS_h5UBcFhc7SOT.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/vid\/240x320\/hvS_h5UBcFhc7SOT.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/pl\/ujr7tysv7Bp7Urg-.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663368099467390976\/pu\/pl\/ujr7tysv7Bp7Urg-.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080036659"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896545005568,"id_str":"663727896545005568","text":"\u53f6\u3046\u306a\u3089\u5171\u306b","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664874366,"id_str":"1664874366","name":"\u304a\u984cbot\uff20\u30ec\u30e0\u7761\u7720","screen_name":"rem_odai","location":null,"url":null,"description":"\u304a\u984c\u30b5\u30a4\u30c8\u300c\u30ec\u30e0\u7761\u7720\u300d\u306b\u3066\u4ee5\u524d\u516c\u958b\u3057\u3066\u3044\u305f\u304a\u984c\u309230\u5206\u3054\u3068\u306b\u545f\u304d\u307e\u3059\u3002\u304a\u984c\u4f7f\u7528\u6642\u306e\u5831\u544a\u306f\u4efb\u610f\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u30fb\u30d8\u30c3\u30c0\u30fc\u306f\u81ea\u4f5c\u3002\u88fd\u4f5c\u8005\uff1a\u706f\u5e7b\u307d\u3077\u3089[ @spica2regu]","protected":false,"verified":false,"followers_count":191,"friends_count":1,"listed_count":40,"favourites_count":6,"statuses_count":33764,"created_at":"Mon Aug 12 11:59:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000279406279\/9f503842760ba457d44f40ef8f9e6ba0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000279406279\/9f503842760ba457d44f40ef8f9e6ba0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1664874366\/1376309417","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036661"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540807169,"id_str":"663727896540807169","text":"@kinsei19671 \u308f\u3042\uff5e\uff64\u3044\u3044\u306d\uff5e\u3063\u203c 1\u90e8\u30822\u90e8\u3082\uff5e(*\u2267\u2207\u2266*)\uff61\u304d\u3093\u3061\u3083\u3093\u304c\u30c0\u30a4\u30d6\u3057\u3066\u308b\u3068\u3053\u308d\u3082\u306d\u3063www!(^^)! \u3084\u3063\u3071\u308a\u30e9\u30a4\u30d6\u6620\u50cf\u6b32\u3057\u3044\u3088\u306d\uff5e\u3063(^O^)\uff61","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727048687415296,"in_reply_to_status_id_str":"663727048687415296","in_reply_to_user_id":3025043384,"in_reply_to_user_id_str":"3025043384","in_reply_to_screen_name":"kinsei19671","user":{"id":830748860,"id_str":"830748860","name":"\u3086\u307f\u3074\u3088","screen_name":"yumitan0220","location":null,"url":null,"description":"THE ROOSTERS(Z). ROCK'N'ROLL GYPSIES. THE STREET SLIDERS. THE DAMNED. \u30a2\u30ec\u30eb\u30ae\u30fc. TWO TRIBES. T4R. Neo Fantastic\u306a\u3069\uff64\u6700\u9ad8\u306e\u203c ROCK'N'ROLL\u203c\u00ad\u00ad\u3084PUNK\u304c\u5927\u597d\u304d\u266c\u3044\u3061\u3070\u3093\u597d\u304d\u306a\u306e\u306fTHE WILLARD\u266c","protected":false,"verified":false,"followers_count":349,"friends_count":357,"listed_count":8,"favourites_count":4319,"statuses_count":23506,"created_at":"Tue Sep 18 10:18:22 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3470231445\/22feb1a29c4dfda7ad428f36cf339e7e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3470231445\/22feb1a29c4dfda7ad428f36cf339e7e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830748860\/1426853193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kinsei19671","name":"\u30b9\u30ca\u30d5\u304d\u3093\u3061\u3083\u3093","id":3025043384,"id_str":"3025043384","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532353024,"id_str":"663727896532353024","text":"\u71b1\u70c8\u5408\u4f53(\u00a9\u91e3\u308a\uff8a\uff9e\uff76\u65e5\u8a8c) RT @ossan9314: \u5e30\u5b85\u5f8c30\u79d2\u3067\u30b9\u30de\u30db\u3068\u5145\u96fb\u5668\u304c\u5408\u4f53","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":433980974,"id_str":"433980974","name":"seno_o_tosi","screen_name":"mymaigo5","location":"\u3000\u3057\u3083\u3063\u3061\u30fc\u307b\u3063\u3053\u30fc","url":null,"description":"5 5 5 5 \u30de\u30a4\u8ff7\u5b50\u3049\u2191\u2191 \u30fb\u30fb\u30fb\u306a\u3093\u304b\u6b4c\u3048\u3088!!\u3000\n\u3000\u3000\u3000\u266a\u65b0\u6728\u5834(\u5f53\u9078)\u65b0\u6728\u5834(\u5f53\u9078)\u958b\u5e55(\u5f53\u9078)\u897f\u6b66(\u5f53\u9078)\n\uff21\uff70\uff25\uff70(\u521d\u65e5\uff6f\u3061\uff5e)\u65e5\u7523?(\u5f53\u9078!!)\n\u3000\u3000\u5f53\u9078\u307e\u3063\u3060\u3058\u3083\u3093!\u3000\u3046\u3078\u3078\u3078\u3078","protected":false,"verified":false,"followers_count":758,"friends_count":474,"listed_count":21,"favourites_count":16888,"statuses_count":57264,"created_at":"Sun Dec 11 08:08:16 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1690007571\/twipple1323737403932_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1690007571\/twipple1323737403932_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/433980974\/1388206235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ossan9314","name":"\u304f\u30b3:\u5f61(\u30a4\u30ab)","id":192987143,"id_str":"192987143","indices":[18,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896557584384,"id_str":"663727896557584384","text":"\u306b\u3083\u3093\u306b\u3083\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402060578,"id_str":"402060578","name":"\u30dc\u30d6","screen_name":"BobDaHandsome","location":"udon","url":null,"description":"speed\u2661\/420\/\/hiphop\/house\/real motha fucka\/menhera\/Men welcome\uff01\/nonke","protected":false,"verified":false,"followers_count":216,"friends_count":178,"listed_count":3,"favourites_count":3850,"statuses_count":15265,"created_at":"Mon Oct 31 13:56:12 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646539696684699649\/ro6TAWVy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646539696684699649\/ro6TAWVy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402060578\/1442982049","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036664"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896544980992,"id_str":"663727896544980992","text":"Wish i had a family like that..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1560466382,"id_str":"1560466382","name":"TAYLOR? LIKE SWIFT?","screen_name":"_yanabanana18","location":"wonderland ","url":"http:\/\/bemyserendipity-18.tumblr.com\/","description":"\u2800\u2800\u2800\u2800\u2800\u2022 \u2022 \u2022 i'm a bird. i know how to fly freely but don't know where to go exactly \u2022 \u2022 \u2022 \u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800 \u2800\u2800\u2800 \u2800 \u2022\u2022\u2022 wanderlust \u2022\u2022 IG: alfaye18 \u2022\u2022\u2022","protected":false,"verified":false,"followers_count":439,"friends_count":883,"listed_count":4,"favourites_count":32072,"statuses_count":56498,"created_at":"Mon Jul 01 12:45:10 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B8040D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432900916425928706\/NSOdRpJ_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432900916425928706\/NSOdRpJ_.jpeg","profile_background_tile":true,"profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653956487933333505\/vLduSXy-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653956487933333505\/vLduSXy-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1560466382\/1432030460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036661"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896561893377,"id_str":"663727896561893377","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2922052726,"id_str":"2922052726","name":"Tess","screen_name":"tessguglielmi","location":"France","url":null,"description":"15 yo.\nFrench girl.\nSuicide is not stupid. \u221e","protected":false,"verified":false,"followers_count":858,"friends_count":1224,"listed_count":7,"favourites_count":4820,"statuses_count":16372,"created_at":"Sun Dec 14 21:31:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623083558119305216\/1dSFCtXQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623083558119305216\/1dSFCtXQ.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659396648842477568\/dX0o7pqg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659396648842477568\/dX0o7pqg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2922052726\/1446401735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588965,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49991,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":253,"favorite_count":599,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036665"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896549158912,"id_str":"663727896549158912","text":"94 \u3058\u3075\u3093\u301c\u2661\u2661 #SEVENTEEN\u30da\u30f3\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067SEVENTEEN\u30da\u30f3\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fSEVENTEEN\u30da\u30f3\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179876793,"id_str":"4179876793","name":"\u3141\u3149","screen_name":"137___you","location":null,"url":null,"description":"\u597d\u304d\u306a\u3082\u306e\u306f\u597d\u304d\u300294","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 09 13:54:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720890266333185\/P_fPFTOT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720890266333185\/P_fPFTOT_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SEVENTEEN\u30da\u30f3\u3068\u731b\u70c8\u306b\u7d61\u307f\u305f\u304f\u3066\u4ed5\u65b9\u306a\u3044\u306e\u3067SEVENTEEN\u30da\u30f3\u304cRT\u3057\u3066\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u306e\u3067\u3053\u308c\u3092\u898b\u305fSEVENTEEN\u30da\u30f3\u306f\u662f\u975eRT\u3057\u3066\u62e1\u6563\u3057\u3066\u304f\u3060\u3055\u3044","indices":[10,97]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036662"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896528158720,"id_str":"663727896528158720","text":"RT @LizQuenPExers: Not just a pretty face,but also with a golden heart #100mostbeautifulfaces2015 @tccandler https:\/\/t.co\/xHUZl599Hi","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573361773,"id_str":"573361773","name":"cleozel08","screen_name":"cleozel08","location":"Philippines","url":"http:\/\/support.twitter.com","description":"Love is like a holy grail that everyone seeks in their soul...I am a believer of FOREVER..Loves LizQuen!","protected":false,"verified":false,"followers_count":74,"friends_count":764,"listed_count":3,"favourites_count":3446,"statuses_count":1155,"created_at":"Mon May 07 04:03:41 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649925844383612929\/00PSE4qX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649925844383612929\/00PSE4qX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573361773\/1442217512","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:05:29 +0000 2015","id":663703959555604480,"id_str":"663703959555604480","text":"Not just a pretty face,but also with a golden heart #100mostbeautifulfaces2015 @tccandler https:\/\/t.co\/xHUZl599Hi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3213267593,"id_str":"3213267593","name":"LizQuen Pexers","screen_name":"LizQuenPExers","location":null,"url":"http:\/\/m.pinoyexchange.com\/forums\/showthread.php?t=769477","description":"Avid fans of Liza and Quen who met on Pinoy Exchange; we are not a Fanclub...just members of a forum where we talk about LizQuen 24\/7","protected":false,"verified":false,"followers_count":4222,"friends_count":436,"listed_count":6,"favourites_count":2525,"statuses_count":2515,"created_at":"Mon Apr 27 14:00:02 +0000 2015","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620560897942028288\/4uTL8uD4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620560897942028288\/4uTL8uD4.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612817421242466304\/nolu6fx1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612817421242466304\/nolu6fx1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3213267593\/1438350720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":28,"entities":{"hashtags":[{"text":"100mostbeautifulfaces2015","indices":[52,78]}],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[79,89]}],"symbols":[],"media":[{"id":663703944258936833,"id_str":"663703944258936833","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","url":"https:\/\/t.co\/xHUZl599Hi","display_url":"pic.twitter.com\/xHUZl599Hi","expanded_url":"http:\/\/twitter.com\/LizQuenPExers\/status\/663703959555604480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703944258936833,"id_str":"663703944258936833","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","url":"https:\/\/t.co\/xHUZl599Hi","display_url":"pic.twitter.com\/xHUZl599Hi","expanded_url":"http:\/\/twitter.com\/LizQuenPExers\/status\/663703959555604480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"100mostbeautifulfaces2015","indices":[71,97]}],"urls":[],"user_mentions":[{"screen_name":"LizQuenPExers","name":"LizQuen Pexers","id":3213267593,"id_str":"3213267593","indices":[3,17]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[98,108]}],"symbols":[],"media":[{"id":663703944258936833,"id_str":"663703944258936833","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","url":"https:\/\/t.co\/xHUZl599Hi","display_url":"pic.twitter.com\/xHUZl599Hi","expanded_url":"http:\/\/twitter.com\/LizQuenPExers\/status\/663703959555604480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663703959555604480,"source_status_id_str":"663703959555604480","source_user_id":3213267593,"source_user_id_str":"3213267593"}]},"extended_entities":{"media":[{"id":663703944258936833,"id_str":"663703944258936833","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzOImUYAEH4Eh.jpg","url":"https:\/\/t.co\/xHUZl599Hi","display_url":"pic.twitter.com\/xHUZl599Hi","expanded_url":"http:\/\/twitter.com\/LizQuenPExers\/status\/663703959555604480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663703959555604480,"source_status_id_str":"663703959555604480","source_user_id":3213267593,"source_user_id_str":"3213267593"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036657"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540770304,"id_str":"663727896540770304","text":"RT @iFaridoon: Team #Dilwale doing a Q n A with the host for the evening...my friend @Salilacharya https:\/\/t.co\/8Laea2zhH6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348834842,"id_str":"348834842","name":"SHAHID \u2665 ARYAN","screen_name":"iamark13","location":"In My Home","url":"http:\/\/facebook.com\/iamark555","description":"I'm a Diehard Hardcore @iamsrk Freak !My LOVE for SRK can't be Exprssd in words,so its useless to describe it!\u266516\/10\/2012 I got reply of @iamsrk\u2665 Gujju Boy","protected":false,"verified":false,"followers_count":1656,"friends_count":149,"listed_count":15,"favourites_count":350,"statuses_count":56432,"created_at":"Fri Aug 05 02:32:00 +0000 2011","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"038C6A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675660902\/b495b82f427b7d05993652ee1b6db1c0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675660902\/b495b82f427b7d05993652ee1b6db1c0.jpeg","profile_background_tile":false,"profile_link_color":"018262","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"005F47","profile_text_color":"006F53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2654314733\/6742b13ff0457ca567b83cfd510713b5_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2654314733\/6742b13ff0457ca567b83cfd510713b5_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348834842\/1377603348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727013283405824,"id_str":"663727013283405824","text":"Team #Dilwale doing a Q n A with the host for the evening...my friend @Salilacharya https:\/\/t.co\/8Laea2zhH6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217017676,"id_str":"1217017676","name":"Faridoon Shahryar","screen_name":"iFaridoon","location":null,"url":null,"description":"Journalist based in Mumbai, India, who believes in credible infotainment. Works for Bollywood Hungama. Loves Music, Swimming,Smiling! faridoonshahryar@gmail.com","protected":false,"verified":false,"followers_count":42830,"friends_count":285,"listed_count":123,"favourites_count":3274,"statuses_count":22113,"created_at":"Mon Feb 25 01:54:40 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217017676\/1446533556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":54,"entities":{"hashtags":[{"text":"Dilwale","indices":[5,13]}],"urls":[],"user_mentions":[{"screen_name":"Salilacharya","name":"Salilacharya","id":116817856,"id_str":"116817856","indices":[70,83]}],"symbols":[],"media":[{"id":663726789399814144,"id_str":"663726789399814144","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","url":"https:\/\/t.co\/8Laea2zhH6","display_url":"pic.twitter.com\/8Laea2zhH6","expanded_url":"http:\/\/twitter.com\/iFaridoon\/status\/663727013283405824\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726789399814144,"id_str":"663726789399814144","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","url":"https:\/\/t.co\/8Laea2zhH6","display_url":"pic.twitter.com\/8Laea2zhH6","expanded_url":"http:\/\/twitter.com\/iFaridoon\/status\/663727013283405824\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dilwale","indices":[20,28]}],"urls":[],"user_mentions":[{"screen_name":"iFaridoon","name":"Faridoon Shahryar","id":1217017676,"id_str":"1217017676","indices":[3,13]},{"screen_name":"Salilacharya","name":"Salilacharya","id":116817856,"id_str":"116817856","indices":[85,98]}],"symbols":[],"media":[{"id":663726789399814144,"id_str":"663726789399814144","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","url":"https:\/\/t.co\/8Laea2zhH6","display_url":"pic.twitter.com\/8Laea2zhH6","expanded_url":"http:\/\/twitter.com\/iFaridoon\/status\/663727013283405824\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727013283405824,"source_status_id_str":"663727013283405824","source_user_id":1217017676,"source_user_id_str":"1217017676"}]},"extended_entities":{"media":[{"id":663726789399814144,"id_str":"663726789399814144","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH_5YWIAA1dt8.jpg","url":"https:\/\/t.co\/8Laea2zhH6","display_url":"pic.twitter.com\/8Laea2zhH6","expanded_url":"http:\/\/twitter.com\/iFaridoon\/status\/663727013283405824\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727013283405824,"source_status_id_str":"663727013283405824","source_user_id":1217017676,"source_user_id_str":"1217017676"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553373697,"id_str":"663727896553373697","text":"Temos de protestar, reclamar e n\u00e3o aceitar isso de forma passiva. Estudantes, professores e a sociedade, unidos,... https:\/\/t.co\/H8QLKXqJxm","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145640411,"id_str":"145640411","name":"Iara Bernardi","screen_name":"IaraPT","location":"Sorocaba\/SP","url":"http:\/\/www.iarabernardi.com.br","description":"Iara \u00e9 professora e Mestre em Biologia da Conserva\u00e7\u00e3o pela UFSCar. Foi vereadora de Sorocaba e deputada federal pelo PT por tr\u00eas mandatos.","protected":false,"verified":false,"followers_count":1142,"friends_count":70,"listed_count":40,"favourites_count":54,"statuses_count":9628,"created_at":"Wed May 19 13:22:55 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473534154747822080\/fab-eCnd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473534154747822080\/fab-eCnd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145640411\/1423500303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/H8QLKXqJxm","expanded_url":"http:\/\/fb.me\/3guxqxSkl","display_url":"fb.me\/3guxqxSkl","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080036663"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896561762305,"id_str":"663727896561762305","text":"@MariaMargarette baliw! pasok kana bukas :)))","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727698385092610,"in_reply_to_status_id_str":"663727698385092610","in_reply_to_user_id":127758340,"in_reply_to_user_id_str":"127758340","in_reply_to_screen_name":"MariaMargarette","user":{"id":288759068,"id_str":"288759068","name":"ILOVEYOULORD","screen_name":"treeeeciaaaa","location":null,"url":null,"description":"HEBREWS 13:5\/PHILIPPIANS 4:13\/JEREMIAH 29:11 FULFILLING GOD'S WILL\u2764\ufe0fBEYOND BLESSED\u2764\ufe0fFUTURE TEACHER TRICIA SPEDUCATOR\u2764\ufe0f","protected":false,"verified":false,"followers_count":483,"friends_count":1120,"listed_count":1,"favourites_count":30298,"statuses_count":17235,"created_at":"Wed Apr 27 12:28:35 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663373530336067584\/VWXx5wh__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663373530336067584\/VWXx5wh__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288759068\/1443873119","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MariaMargarette","name":"Marge Foz","id":127758340,"id_str":"127758340","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080036665"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896540745728,"id_str":"663727896540745728","text":"\u6700\u8fd1\u30b2\u30fc\u30e0\u3068\u3044\u3046\u304bETS2\u3068\u30b7\u30e0\u30b7\u30c6\u30a3\u3057\u304b\u3057\u3066\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3338485394,"id_str":"3338485394","name":"\u3076\u3069\u3046","screen_name":"GrapeThink","location":"SurfacePro4\u8cb7\u3063\u305fv","url":null,"description":"\u4e07\u5e74\u7b46(PILO\u515a)\/ Stratocaster\u3089\u3076\u306a\u304e\u305f\u308a\u3059\u3068\/\u30a8\u30b9\u30bf\u30ed\u30f3\u30e2\u30ab\/\u8155\u6642\u8a08\/ThinkPad\/SRV\u3059\u304d OMEGA3570.50\u6b32\u3057\u3059\u304e\u3066\u306d\u3058\u308c\u308b\nSurfacePro4\u4e88\u7d04\u3057\u307e\u3057\u305f\u3001US\u30ad\u30fc\u30dc\u30fc\u30c9\u5f85\u3061\n\u7537\u306e\u5a18\u3042\u3063..","protected":false,"verified":false,"followers_count":58,"friends_count":103,"listed_count":1,"favourites_count":1831,"statuses_count":3403,"created_at":"Tue Aug 25 15:06:12 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"121735","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640855401169223680\/Da_88-4n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640855401169223680\/Da_88-4n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3338485394\/1446969563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036660"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896565911552,"id_str":"663727896565911552","text":"RT @halo1440: \uc78a\uace0\uc788\uc5c8\ub124..\uc624\ub298 \uc18c\ubc29\uc758\ub0a0\n\uc704\ud5d8\uc218\ub2f9 \uace0\uc791 5\ub9cc\uc6d0\n5\ub144\ub3d9\uc548 \uc21c\uc9c135\uba85\n\uc6b0\uc6b8\uc99d\uc73c\ub85c \uc790\uc0b4\n\ubd80\uc0c1\uc2dc \uc790\ube44\ub85c \uce58\ub8cc\n\uc778\ub825\uc5c6\uc5b4 \ub2e4\uccd0\ub3c4 \uadf8\ub0e5 \ucd9c\uadfc\n\uad6d\uac00\uc9c1 \uc544\ub2cc \uc9c0\ubc29\uc9c1\n\ub178\uc870X\n\ud3c9\uade0\uc218\uba85 58\uc138\n\n\ubc14\ub85c \uc6b0\ub9ac\uc758 \uc774\uc6c3 \uc18c\ubc29\uad00 \uc598\uae41\ub2c8\ub2e4 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3272087768,"id_str":"3272087768","name":"\uc9c0\uca29","screen_name":"ji_sasuke","location":"\uce20\ub098\uc2dc\uc988","url":"http:\/\/ask.fm\/jijjang_99","description":"NARUTO \u62bc\u3057\u3002HQ. Nintama. Cosplay\u3002 \ud5e4\ub354 \uc728\ubb34\ub2d8(@Yulmu_822) \ucee4\ubbf8\uc158 \ub2e4\ub77c\ub2d8 \uc624\uc774\uce74\uac8c \ucee4\ud50c\uc778\uc7a5\u2661","protected":false,"verified":false,"followers_count":267,"friends_count":226,"listed_count":5,"favourites_count":2695,"statuses_count":19388,"created_at":"Wed Jul 08 16:53:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662641021218504712\/GNjCx2HZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662641021218504712\/GNjCx2HZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272087768\/1446965818","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:42:01 +0000 2015","id":663652754854809600,"id_str":"663652754854809600","text":"\uc78a\uace0\uc788\uc5c8\ub124..\uc624\ub298 \uc18c\ubc29\uc758\ub0a0\n\uc704\ud5d8\uc218\ub2f9 \uace0\uc791 5\ub9cc\uc6d0\n5\ub144\ub3d9\uc548 \uc21c\uc9c135\uba85\n\uc6b0\uc6b8\uc99d\uc73c\ub85c \uc790\uc0b4\n\ubd80\uc0c1\uc2dc \uc790\ube44\ub85c \uce58\ub8cc\n\uc778\ub825\uc5c6\uc5b4 \ub2e4\uccd0\ub3c4 \uadf8\ub0e5 \ucd9c\uadfc\n\uad6d\uac00\uc9c1 \uc544\ub2cc \uc9c0\ubc29\uc9c1\n\ub178\uc870X\n\ud3c9\uade0\uc218\uba85 58\uc138\n\n\ubc14\ub85c \uc6b0\ub9ac\uc758 \uc774\uc6c3 \uc18c\ubc29\uad00 \uc598\uae41\ub2c8\ub2e4 https:\/\/t.co\/JZtJnA0hCE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1388460522,"id_str":"1388460522","name":"\uc3e0\ud2b8 #\uc5b8\ub860\ubd80\uc5ed\uc790\ucc99\uacb0","screen_name":"halo1440","location":null,"url":null,"description":"\ub514\uc5e0\uc808\ub300\uc0ac\uc808","protected":false,"verified":false,"followers_count":40875,"friends_count":18536,"listed_count":277,"favourites_count":1176,"statuses_count":96601,"created_at":"Mon Apr 29 02:47:04 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/870132084\/cf5db16bc17a4c86e5da992814717b65.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/870132084\/cf5db16bc17a4c86e5da992814717b65.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662020161810001920\/pRyxCcRu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662020161810001920\/pRyxCcRu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1388460522\/1441878161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2981,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":476113528466571264,"id_str":"476113528466571264","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","url":"https:\/\/t.co\/JZtJnA0hCE","display_url":"pic.twitter.com\/JZtJnA0hCE","expanded_url":"http:\/\/twitter.com\/halo1440\/status\/476113533852061696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":476113533852061696,"source_status_id_str":"476113533852061696","source_user_id":1388460522,"source_user_id_str":"1388460522"}]},"extended_entities":{"media":[{"id":476113528466571264,"id_str":"476113528466571264","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","url":"https:\/\/t.co\/JZtJnA0hCE","display_url":"pic.twitter.com\/JZtJnA0hCE","expanded_url":"http:\/\/twitter.com\/halo1440\/status\/476113533852061696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":476113533852061696,"source_status_id_str":"476113533852061696","source_user_id":1388460522,"source_user_id_str":"1388460522"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"halo1440","name":"\uc3e0\ud2b8 #\uc5b8\ub860\ubd80\uc5ed\uc790\ucc99\uacb0","id":1388460522,"id_str":"1388460522","indices":[3,12]}],"symbols":[],"media":[{"id":476113528466571264,"id_str":"476113528466571264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","url":"https:\/\/t.co\/JZtJnA0hCE","display_url":"pic.twitter.com\/JZtJnA0hCE","expanded_url":"http:\/\/twitter.com\/halo1440\/status\/476113533852061696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":476113533852061696,"source_status_id_str":"476113533852061696","source_user_id":1388460522,"source_user_id_str":"1388460522"}]},"extended_entities":{"media":[{"id":476113528466571264,"id_str":"476113528466571264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bpt-u0kCAAA_K8d.jpg","url":"https:\/\/t.co\/JZtJnA0hCE","display_url":"pic.twitter.com\/JZtJnA0hCE","expanded_url":"http:\/\/twitter.com\/halo1440\/status\/476113533852061696\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"}},"source_status_id":476113533852061696,"source_status_id_str":"476113533852061696","source_user_id":1388460522,"source_user_id_str":"1388460522"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553369600,"id_str":"663727896553369600","text":"@MiaTopcum1 you are a very sexy women who I would love too taste","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4001735710,"in_reply_to_user_id_str":"4001735710","in_reply_to_screen_name":"MiaTopcum1","user":{"id":4163250674,"id_str":"4163250674","name":"Bob Barker","screen_name":"eb19ba4cd88c458","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":42,"friends_count":136,"listed_count":0,"favourites_count":0,"statuses_count":5,"created_at":"Sun Nov 08 01:57:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MiaTopcum1","name":"Mia Top cum","id":4001735710,"id_str":"4001735710","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036663"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896532377600,"id_str":"663727896532377600","text":"\u3048\u3047\u306a\u3041\u3002\u3048\u3047\u306a\u3041\u3002\n\u30ed\u30fc\u30bc\u30ea\u30a2\u88cf\u5c71\u3060\u306a\u3041\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3226267135,"id_str":"3226267135","name":"J@FFBE\uff08\u63a2\u7d22\u3070\u304b\uff09","screen_name":"69HWfCRd4pYVppB","location":null,"url":null,"description":"FFBE\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u3088\u3093\u266a \u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u6c42\u3080(\uffe3\u25bd\uffe3)\u3063\u826f\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3067\u30fc\u3059\uff3c(^o^)\uff0f FFGM\u3082\u3084\u3063\u3066\u308b\u3093\u3067FF\u95a2\u4fc2\u306a\u3089\u7d61\u307f\u307e\u3057\u3087\u3063 \u26a0\ufe0e\u30d5\u30ec\u30f3\u30c9\u52df\u96c6\u30c4\u30a4\u30fc\u30c8\u3092\u3088\u304f\u30ea\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u306e\u3067\u3054\u4e86\u627f\u304f\u3060\u3055\u3044^ ^","protected":false,"verified":false,"followers_count":113,"friends_count":100,"listed_count":1,"favourites_count":1336,"statuses_count":937,"created_at":"Mon May 25 14:12:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659391532387057665\/wkCHuW5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659391532387057665\/wkCHuW5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3226267135\/1445590999","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080036658"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553484288,"id_str":"663727896553484288","text":"RT @MonteriaRadio38: A partir de las 8:30 am de este martes se juega su \u00faltimo debate en el Senado el proyecto de primera infancia De Cero \u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363422904,"id_str":"363422904","name":"Marly D La Espriella","screen_name":"marlydespriella","location":"Colombia","url":null,"description":"Comunicadora Social-Periodista Especialista en Gerencia Publica. Mis twits son eso. M\u00edos\/ Mi tel es 3003578761\/3116886970","protected":false,"verified":false,"followers_count":447,"friends_count":128,"listed_count":15,"favourites_count":423,"statuses_count":9916,"created_at":"Sun Aug 28 02:09:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578956205822992384\/tF2AHGXP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578956205822992384\/tF2AHGXP_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:19:11 +0000 2015","id":663692308165099521,"id_str":"663692308165099521","text":"A partir de las 8:30 am de este martes se juega su \u00faltimo debate en el Senado el proyecto de primera infancia De Cero a Siempre: @JocheTous","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958686675,"id_str":"2958686675","name":"Monter\u00eda Radio 38\u00b0","screen_name":"MonteriaRadio38","location":"Monter\u00eda - Colombia","url":null,"description":"La Radio virtual de Monter\u00eda y el Departamento de C\u00f3rdoba, http:\/\/www.monteriaradio38grados.com","protected":false,"verified":false,"followers_count":2629,"friends_count":426,"listed_count":19,"favourites_count":556,"statuses_count":16720,"created_at":"Sat Jan 03 16:25:32 +0000 2015","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555159028708294656\/VfV-2K9j_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555159028708294656\/VfV-2K9j_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958686675\/1442608745","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JocheTous","name":"Joche Tous","id":155123018,"id_str":"155123018","indices":[129,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MonteriaRadio38","name":"Monter\u00eda Radio 38\u00b0","id":2958686675,"id_str":"2958686675","indices":[3,19]},{"screen_name":"JocheTous","name":"Joche Tous","id":155123018,"id_str":"155123018","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036663"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896565932032,"id_str":"663727896565932032","text":"RT @pablomosto: Si me pagaran cada vez que me aburro, estar\u00eda twitteando ahora mismo desde un yate rodeado de 20 putas.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107266083,"id_str":"107266083","name":"Pau Rosette Dalbit","screen_name":"rosettecaramel","location":"Mexico","url":null,"description":"Soy rom\u00e1ntica y espont\u00e1nea... Dios esta conmigo siempre. \nCuando la suerte te cambia, cambian todos contigo, menos tus amigos de verdad. @EnvenenoTuPiel","protected":false,"verified":false,"followers_count":321,"friends_count":682,"listed_count":1,"favourites_count":4050,"statuses_count":18400,"created_at":"Fri Jan 22 01:16:20 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/868764653\/0e4af931929ff22de9f96f8b569251d0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/868764653\/0e4af931929ff22de9f96f8b569251d0.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659235246550859776\/b9_Ox351_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659235246550859776\/b9_Ox351_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107266083\/1438606138","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:06:14 +0000 2015","id":663462554929336321,"id_str":"663462554929336321","text":"Si me pagaran cada vez que me aburro, estar\u00eda twitteando ahora mismo desde un yate rodeado de 20 putas.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189927743,"id_str":"189927743","name":"Pablomosto\u2122","screen_name":"pablomosto","location":"A Coru\u00f1a \u2708 Benidorm \u2708\ufe0f Miami","url":"http:\/\/www.instagram.com\/pablomosto","description":"Gallego del 94 y gran amante del deporte. No s\u00e9 cual es la clave del \u00e9xito, solo s\u00e9 que la clave del fracaso es tratar de complacer a todo el mundo \u265b\u265b\u265b","protected":false,"verified":false,"followers_count":86052,"friends_count":992,"listed_count":169,"favourites_count":20237,"statuses_count":7331,"created_at":"Sun Sep 12 16:28:00 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165375779\/jOi6KJsN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165375779\/jOi6KJsN.jpeg","profile_background_tile":true,"profile_link_color":"000203","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660581387267874817\/kkH4_61V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660581387267874817\/kkH4_61V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189927743\/1446337366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pablomosto","name":"Pablomosto\u2122","id":189927743,"id_str":"189927743","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896557547520,"id_str":"663727896557547520","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/DH93RRjX1R","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":429124570,"id_str":"429124570","name":"Nando","screen_name":"Nando24_7","location":"NM","url":"http:\/\/www.facebook.com\/nando.charley","description":"Adventurous Leo Spirit. A social butterfly. Love Art and tattoos Kik Nando24_7.","protected":false,"verified":false,"followers_count":266,"friends_count":802,"listed_count":1,"favourites_count":122,"statuses_count":4588,"created_at":"Mon Dec 05 15:56:41 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"99FF00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/770527745\/c4d7c631de5a98eb3532f36cc59b6033.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/770527745\/c4d7c631de5a98eb3532f36cc59b6033.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598716705993412609\/YWUWqO2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598716705993412609\/YWUWqO2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/429124570\/1440001792","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DH93RRjX1R","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080036664"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896566079489,"id_str":"663727896566079489","text":"https:\/\/t.co\/3twm87NpF8\n\n\"CLOTHING sex Tennis Circle of busty daughter i..\" https:\/\/t.co\/pR6ogALyfV #porn #japaneseporn \u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3377956665,"id_str":"3377956665","name":"pornhashtag","screen_name":"pornhashtag69","location":null,"url":"http:\/\/pornhashtag.com","description":null,"protected":false,"verified":false,"followers_count":10706,"friends_count":3259,"listed_count":649,"favourites_count":1330,"statuses_count":240456,"created_at":"Wed Jul 15 23:08:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661356636519473152\/tyWX5Ngj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661356636519473152\/tyWX5Ngj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3377956665\/1446514713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"porn","indices":[100,105]},{"text":"japaneseporn","indices":[106,119]}],"urls":[{"url":"https:\/\/t.co\/3twm87NpF8","expanded_url":"http:\/\/pornhashtag.com","display_url":"pornhashtag.com","indices":[0,23]},{"url":"https:\/\/t.co\/pR6ogALyfV","expanded_url":"http:\/\/xvideosj.com\/videos\/33777814272ca97e3f2252a7533598a7","display_url":"xvideosj.com\/videos\/3377781\u2026","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080036666"} +{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727896553394177,"id_str":"663727896553394177","text":"@AngelValgelyn wow ec? Lokosh. Bwahahah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727555946479618,"in_reply_to_status_id_str":"663727555946479618","in_reply_to_user_id":2217522486,"in_reply_to_user_id_str":"2217522486","in_reply_to_screen_name":"AngelValgelyn","user":{"id":3549338234,"id_str":"3549338234","name":"JmmlTacio\u2665","screen_name":"jimsiraulo","location":"Manila City","url":null,"description":"*Math Wizard daw\/siraulong bata\/Tagayow~yow sa relationship ng iba\/NiceGuy\u2661\u2665\u2661","protected":false,"verified":false,"followers_count":35,"friends_count":35,"listed_count":0,"favourites_count":29,"statuses_count":290,"created_at":"Sun Sep 13 13:02:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643969908657655808\/Q_-J5Kez_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643969908657655808\/Q_-J5Kez_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3549338234\/1442369363","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AngelValgelyn","name":"\u00d7\u00d7\u00d7","id":2217522486,"id_str":"2217522486","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080036663"} +{"delete":{"status":{"id":641527051200008196,"id_str":"641527051200008196","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080037158"}} +{"delete":{"status":{"id":663590545672028160,"id_str":"663590545672028160","user_id":542699829,"user_id_str":"542699829"},"timestamp_ms":"1447080037648"}} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730986496,"id_str":"663727900730986496","text":"RT @5SOS: Everyone's so friendly to us in Berlin \ud83d\ude0d thank you!!! X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745669495,"id_str":"2745669495","name":"Giad;","screen_name":"louisveyes","location":"l&s !!!","url":null,"description":"Louis kept my heart from falling","protected":false,"verified":false,"followers_count":1043,"friends_count":701,"listed_count":1,"favourites_count":3079,"statuses_count":7988,"created_at":"Sun Aug 17 20:39:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662338786005794816\/QmNs8ykC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662338786005794816\/QmNs8ykC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745669495\/1446748945","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:58 +0000 2015","id":663695522822283264,"id_str":"663695522822283264","text":"Everyone's so friendly to us in Berlin \ud83d\ude0d thank you!!! X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264107729,"id_str":"264107729","name":"5 Seconds of Summer","screen_name":"5SOS","location":"Sydney, Australia","url":"http:\/\/www.facebook.com\/5secondsofsummer","description":"couple of guys making music. SOUNDS GOOD FEELS GOOD OUT NOW! http:\/\/5sosf.am\/vjnufZ | @ashton5sos @calum5sos @michael5sos @luke5sos @HiOrHeyRecords","protected":false,"verified":true,"followers_count":7838399,"friends_count":33425,"listed_count":28252,"favourites_count":3144,"statuses_count":23324,"created_at":"Fri Mar 11 10:18:46 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657334338309107712\/DiworP79.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657334338309107712\/DiworP79.jpg","profile_background_tile":false,"profile_link_color":"C21B1B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661211354792112128\/e63dR26K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661211354792112128\/e63dR26K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264107729\/1445555619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11760,"favorite_count":21075,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900722651136,"id_str":"663727900722651136","text":"RT @haileybaldwin: wow I love Ellen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381893384,"id_str":"381893384","name":"\u2601","screen_name":"Smilingforyou2","location":"9-11-13 Download @shots \u270c","url":"http:\/\/shots.com\/agozgomez","description":"|| You look so cool || |3.24.15 Biebs | Buenos Aires, Argentina","protected":false,"verified":false,"followers_count":3340,"friends_count":3338,"listed_count":3,"favourites_count":4400,"statuses_count":53864,"created_at":"Thu Sep 29 03:47:35 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471760104132341760\/g7arpz7G.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471760104132341760\/g7arpz7G.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662808370458554373\/2PtYOt6O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662808370458554373\/2PtYOt6O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381893384\/1445572264","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:08 +0000 2015","id":663727528742359040,"id_str":"663727528742359040","text":"wow I love Ellen","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64090343,"id_str":"64090343","name":"Hailey Baldwin","screen_name":"haileybaldwin","location":"East Coast","url":null,"description":"Hailey Rhode Baldwin\nHeroes models NY - Julien@heroesmodels.com\nStorm models London \ninstagram\u2022haileybaldwin","protected":false,"verified":true,"followers_count":399057,"friends_count":3069,"listed_count":870,"favourites_count":752,"statuses_count":20843,"created_at":"Sun Aug 09 02:15:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655157543212326912\/YdFJO59e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655157543212326912\/YdFJO59e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64090343\/1416958009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":232,"favorite_count":195,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haileybaldwin","name":"Hailey Baldwin","id":64090343,"id_str":"64090343","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037657"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900735180800,"id_str":"663727900735180800","text":"RT @xoisabelle: You can tell a lot about a person based on how they treat you when they're mad at you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897587870,"id_str":"2897587870","name":"Rachel MacDonald","screen_name":"Rachel_Macd3","location":null,"url":null,"description":"Being happy is a very personal thing, and it really has nothing to do with anyone else","protected":false,"verified":false,"followers_count":244,"friends_count":248,"listed_count":0,"favourites_count":181,"statuses_count":98,"created_at":"Sat Nov 29 15:37:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725776873922561\/vMRdKzFT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725776873922561\/vMRdKzFT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897587870\/1447015787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:30 +0000 2015","id":663724600862375936,"id_str":"663724600862375936","text":"You can tell a lot about a person based on how they treat you when they're mad at you","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58286849,"id_str":"58286849","name":"Isabelle","screen_name":"xoisabelle","location":"SMU","url":null,"description":null,"protected":false,"verified":false,"followers_count":514,"friends_count":325,"listed_count":2,"favourites_count":4054,"statuses_count":16215,"created_at":"Sun Jul 19 20:32:48 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661740454321475584\/F6lh42W1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661740454321475584\/F6lh42W1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58286849\/1446606193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xoisabelle","name":"Isabelle","id":58286849,"id_str":"58286849","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037660"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900739444737,"id_str":"663727900739444737","text":"RT @UnionGonzalista: Otra captura mas de la colecci\u00f3n @FansEnVivo #FansAwards2015 #LaDiosa Mica Viciconte https:\/\/t.co\/SZt2pfImWF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1884968527,"id_str":"1884968527","name":"Viciconte\u2665 |58%","screen_name":"ReinaDelAquabox","location":null,"url":"https:\/\/www.facebook.com\/Prii.Hurtado","description":"'Lo que no te MATA te FORTALEZE' ~ Micaela Lorena Viciconte. El 15\/08\/15 me siguio la belleza marplatense M.L.V \u2665","protected":false,"verified":false,"followers_count":1000,"friends_count":1451,"listed_count":0,"favourites_count":1716,"statuses_count":9414,"created_at":"Fri Sep 20 01:10:01 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660229093288484865\/dIvrVOdP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660229093288484865\/dIvrVOdP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1884968527\/1446245892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:06:36 +0000 2015","id":663598542167121920,"id_str":"663598542167121920","text":"Otra captura mas de la colecci\u00f3n @FansEnVivo #FansAwards2015 #LaDiosa Mica Viciconte https:\/\/t.co\/SZt2pfImWF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2583910926,"id_str":"2583910926","name":"agustina","screen_name":"UnionGonzalista","location":"\u303d mv y gg \u303d","url":"https:\/\/instagram.com\/agustinamartinelli","description":"No controlan esfinteres y son cleptomanos.","protected":false,"verified":false,"followers_count":7274,"friends_count":418,"listed_count":0,"favourites_count":4481,"statuses_count":15937,"created_at":"Mon Jun 23 12:28:50 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613018920908378112\/V54RZzxx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613018920908378112\/V54RZzxx.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663440122420051968\/tmtyEvwN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663440122420051968\/tmtyEvwN_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":69,"favorite_count":2,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[45,60]},{"text":"LaDiosa","indices":[61,69]}],"urls":[],"user_mentions":[{"screen_name":"FansEnVivo","name":"Fans En Vivo","id":246294511,"id_str":"246294511","indices":[33,44]}],"symbols":[],"media":[{"id":663598540204150784,"id_str":"663598540204150784","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","url":"https:\/\/t.co\/SZt2pfImWF","display_url":"pic.twitter.com\/SZt2pfImWF","expanded_url":"http:\/\/twitter.com\/UnionGonzalista\/status\/663598542167121920\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":448,"resize":"fit"},"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":520,"h":448,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663598540204150784,"id_str":"663598540204150784","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","url":"https:\/\/t.co\/SZt2pfImWF","display_url":"pic.twitter.com\/SZt2pfImWF","expanded_url":"http:\/\/twitter.com\/UnionGonzalista\/status\/663598542167121920\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":448,"resize":"fit"},"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":520,"h":448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[66,81]},{"text":"LaDiosa","indices":[82,90]}],"urls":[],"user_mentions":[{"screen_name":"UnionGonzalista","name":"agustina","id":2583910926,"id_str":"2583910926","indices":[3,19]},{"screen_name":"FansEnVivo","name":"Fans En Vivo","id":246294511,"id_str":"246294511","indices":[54,65]}],"symbols":[],"media":[{"id":663598540204150784,"id_str":"663598540204150784","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","url":"https:\/\/t.co\/SZt2pfImWF","display_url":"pic.twitter.com\/SZt2pfImWF","expanded_url":"http:\/\/twitter.com\/UnionGonzalista\/status\/663598542167121920\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":448,"resize":"fit"},"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":520,"h":448,"resize":"fit"}},"source_status_id":663598542167121920,"source_status_id_str":"663598542167121920","source_user_id":2583910926,"source_user_id_str":"2583910926"}]},"extended_entities":{"media":[{"id":663598540204150784,"id_str":"663598540204150784","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWTWz5WEAAaWcI.jpg","url":"https:\/\/t.co\/SZt2pfImWF","display_url":"pic.twitter.com\/SZt2pfImWF","expanded_url":"http:\/\/twitter.com\/UnionGonzalista\/status\/663598542167121920\/photo\/1","type":"photo","sizes":{"large":{"w":520,"h":448,"resize":"fit"},"small":{"w":340,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":520,"h":448,"resize":"fit"}},"source_status_id":663598542167121920,"source_status_id_str":"663598542167121920","source_user_id":2583910926,"source_user_id_str":"2583910926"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037661"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743639040,"id_str":"663727900743639040","text":"RT @SaraStryker: Jimmy Neutron reruns and chill?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":560596295,"id_str":"560596295","name":"Pohanna Joedubicky","screen_name":"Joepoe1419","location":null,"url":null,"description":"Look at the stars, Look how they shine for you, And all the things you do.","protected":false,"verified":false,"followers_count":161,"friends_count":136,"listed_count":1,"favourites_count":825,"statuses_count":7750,"created_at":"Sun Apr 22 21:07:45 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E8E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438107682210185217\/MvWTR_q8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438107682210185217\/MvWTR_q8.png","profile_background_tile":true,"profile_link_color":"5D3C63","profile_sidebar_border_color":"5E343E","profile_sidebar_fill_color":"6F4D55","profile_text_color":"77B4A4","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615055017234448384\/Gz4bQJg3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615055017234448384\/Gz4bQJg3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560596295\/1435475519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:25:46 +0000 2015","id":663588267883892736,"id_str":"663588267883892736","text":"Jimmy Neutron reruns and chill?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345162630,"id_str":"345162630","name":"Sara Graser","screen_name":"SaraStryker","location":null,"url":null,"description":"what a wonderful idea it is that some of the best days of our lives haven't happened yet ~TCNJ '18~","protected":false,"verified":false,"followers_count":303,"friends_count":573,"listed_count":2,"favourites_count":6792,"statuses_count":8083,"created_at":"Sat Jul 30 04:33:51 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178598453\/xlgmhNdt.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178598453\/xlgmhNdt.png","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653290401885851648\/RDx_OMrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653290401885851648\/RDx_OMrh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/345162630\/1436330136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SaraStryker","name":"Sara Graser","id":345162630,"id_str":"345162630","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900735221760,"id_str":"663727900735221760","text":"RT @convydosenes: @Monserrate_P I don't even know what could fix it like how do you fix it? Is it impossible?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906651219,"id_str":"2906651219","name":"Lola","screen_name":"Monserrate_P","location":null,"url":null,"description":"antisocial pessimist | UPRH | sc: pao_rivers","protected":false,"verified":false,"followers_count":218,"friends_count":323,"listed_count":1,"favourites_count":94,"statuses_count":8549,"created_at":"Fri Dec 05 18:13:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662058328428642304\/Lay6XQdt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662058328428642304\/Lay6XQdt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906651219\/1445481262","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727848524484608,"id_str":"663727848524484608","text":"@Monserrate_P I don't even know what could fix it like how do you fix it? Is it impossible?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727726973624320,"in_reply_to_status_id_str":"663727726973624320","in_reply_to_user_id":2906651219,"in_reply_to_user_id_str":"2906651219","in_reply_to_screen_name":"Monserrate_P","user":{"id":3612650716,"id_str":"3612650716","name":"Luna","screen_name":"convydosenes","location":null,"url":null,"description":"\u2741 801 \u2741 estudiante de biolog\u00eda \u2741 futura cirujana \u2741","protected":false,"verified":false,"followers_count":98,"friends_count":168,"listed_count":0,"favourites_count":207,"statuses_count":432,"created_at":"Thu Sep 10 19:20:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663005664550232064\/jzdoyTKv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663005664550232064\/jzdoyTKv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3612650716\/1446425081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Monserrate_P","name":"Lola","id":2906651219,"id_str":"2906651219","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"convydosenes","name":"Luna","id":3612650716,"id_str":"3612650716","indices":[3,16]},{"screen_name":"Monserrate_P","name":"Lola","id":2906651219,"id_str":"2906651219","indices":[18,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037660"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756156416,"id_str":"663727900756156416","text":"#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646 \u0627\u0644\u0633\u0647\u0631 + \u0627\u0644\u0628\u0646\u064a\u0647 \u0627\u0644\u0636\u0639\u064a\u0641\u0647 +\u0627\u0644\u0631\u0648\u062d \u0627\u0644\u0627\u0646\u0647\u0632\u0627\u0645\u064a\u0647 =\u0645\u0646\u062a\u062e\u0628 \u0641\u0627\u0634\u0644","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2782263146,"id_str":"2782263146","name":"\u0633\u0646\u062c\u0644","screen_name":"7ob41","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":88,"statuses_count":3,"created_at":"Sun Aug 31 13:05:33 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649436963053834240\/7SVxdgG2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649436963053834240\/7SVxdgG2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2782263146\/1438178359","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900722622464,"id_str":"663727900722622464","text":"30 page paper and dress tech all on the same day. I'm actually wearing make up today so I don't cry...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412298760,"id_str":"412298760","name":"Danielle Hrachovec","screen_name":"DHrach","location":null,"url":"http:\/\/thriftshopbarbie.blogspot.com\/","description":"Costume design undergraduate who dabbles in activism, entertainment, and dance fitness. Amateur social issues commedienne. Boiler up!","protected":false,"verified":false,"followers_count":175,"friends_count":221,"listed_count":1,"favourites_count":4542,"statuses_count":4742,"created_at":"Mon Nov 14 14:20:19 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633033593808228356\/L05KyPJi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633033593808228356\/L05KyPJi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412298760\/1423702074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037657"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900731027456,"id_str":"663727900731027456","text":"RT @NOWMusic: #NOW92 Track 12 is @LittleMix 'Love Me Like You'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2887532710,"id_str":"2887532710","name":"bianca","screen_name":"perrieterpan","location":null,"url":null,"description":"More than just survival, this is my revival!","protected":false,"verified":false,"followers_count":401,"friends_count":228,"listed_count":9,"favourites_count":5790,"statuses_count":42852,"created_at":"Sat Nov 22 00:00:15 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569190818980704256\/TlQSClMQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569190818980704256\/TlQSClMQ.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659524332738191361\/v9qo9ifo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659524332738191361\/v9qo9ifo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887532710\/1446488944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 17:31:37 +0000 2015","id":662683768549941253,"id_str":"662683768549941253","text":"#NOW92 Track 12 is @LittleMix 'Love Me Like You'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214837137,"id_str":"214837137","name":"NOW Music","screen_name":"NOWMusic","location":"NOW HQ","url":"http:\/\/www.nowmusic.com\/","description":"The official Twitter account of NOW That's What I Call Music UK. http:\/\/nowmusic.com #NOW91- out 24th July","protected":false,"verified":true,"followers_count":42923,"friends_count":3742,"listed_count":140,"favourites_count":1230,"statuses_count":6520,"created_at":"Fri Nov 12 10:43:13 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533235209924132865\/E0yjzEh6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533235209924132865\/E0yjzEh6.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ABABAD","profile_text_color":"FFFFFF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643771870442074112\/aE_CgP3G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643771870442074112\/aE_CgP3G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214837137\/1444213019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6416b8512febefc9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6416b8512febefc9.json","place_type":"country","name":"Reino Unido","full_name":"Reino Unido","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-8.662663,49.162656],[-8.662663,60.861650],[1.768926,60.861650],[1.768926,49.162656]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":33,"entities":{"hashtags":[{"text":"NOW92","indices":[0,6]}],"urls":[],"user_mentions":[{"screen_name":"LittleMix","name":"Little Mix","id":380399508,"id_str":"380399508","indices":[19,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NOW92","indices":[14,20]}],"urls":[],"user_mentions":[{"screen_name":"NOWMusic","name":"NOW Music","id":214837137,"id_str":"214837137","indices":[3,12]},{"screen_name":"LittleMix","name":"Little Mix","id":380399508,"id_str":"380399508","indices":[33,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743606273,"id_str":"663727900743606273","text":"RT @LuciiMelgareejo: todo esta vivo a pesar del dolor, si me sonreis.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1571593800,"id_str":"1571593800","name":"Jime Morales","screen_name":"jimeMorales30","location":null,"url":null,"description":"Lo peor de los d\u00e9biles, es que necesitan humillar a otros para sentirse fuertes","protected":false,"verified":false,"followers_count":170,"friends_count":351,"listed_count":0,"favourites_count":4825,"statuses_count":4804,"created_at":"Sat Jul 06 00:14:50 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661702964793470976\/h-iEfpDl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661702964793470976\/h-iEfpDl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1571593800\/1444277734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:50:11 +0000 2015","id":663232023834796032,"id_str":"663232023834796032","text":"todo esta vivo a pesar del dolor, si me sonreis.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1027725444,"id_str":"1027725444","name":"Lucia","screen_name":"LuciiMelgareejo","location":"Santa Fe, Argentina","url":"https:\/\/www.facebook.com\/jopemonteverde","description":"Siempre fue divertido correr, dejar a este mundo detr\u00e1s.","protected":false,"verified":false,"followers_count":1052,"friends_count":991,"listed_count":6,"favourites_count":9531,"statuses_count":23336,"created_at":"Sat Dec 22 04:22:44 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566353877830619136\/1K-TVAsB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566353877830619136\/1K-TVAsB.jpeg","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653707378693697538\/uQaZp-Yj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653707378693697538\/uQaZp-Yj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1027725444\/1436761488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LuciiMelgareejo","name":"Lucia","id":1027725444,"id_str":"1027725444","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760391684,"id_str":"663727900760391684","text":"RT @snow_white202: \u0628\u062d\u064a\u0627\u062a\u064a \u0645\u0627\u0634\u0641\u062a \u0645\u062b\u0644 \u0643\u0630\u0627 \u062d\u0642\u062f \u062a\u062f\u0639\u0648\u0644\u0623\u062e\u064a\u0643 \u0627\u0644\u0645\u0633\u0644\u0645 \u0627\u0644\u0644\u064a \u064a\u0645\u062b\u0644 \u0645\u0646\u062a\u062e\u0628 \u0628\u0644\u0627\u062f\u0643 \u0628\u0631\u0628\u0627\u0637\n\u0639\u0627\u0644\u0645 \u0645\u0631\u064a\u0636\u0629 \u0627\u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647\n#\u0627\u0644\u0647\u0644\u0627\u0644\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646 htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":541023393,"id_str":"541023393","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0631\u0648\u064a\u0633","screen_name":"abod_abo_sarh","location":null,"url":null,"description":"\u0627\u0644\u0641\u0642\u0631 \u060c [ \u0641\u0642\u0631 \u0627\u0644\u0639\u0642\u0648\u0644 \u0648\u0642\u0644\u0629 \u0623\u062e\u0644\u0627\u0642\u0647\u0627 ] \u0639\u0627\u0634\u0642 \u0644 \u0627\u0644\u0645\u0644\u0648\u0643 ( \u0645\u062f\u0631\u064a\u062f \u060c \u0627\u0644\u0647\u0644\u0627\u0644 )","protected":false,"verified":false,"followers_count":3267,"friends_count":3459,"listed_count":1,"favourites_count":560,"statuses_count":30557,"created_at":"Fri Mar 30 16:13:52 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/753733452\/c1faf851508b422158fd7be75eee2882.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/753733452\/c1faf851508b422158fd7be75eee2882.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628348279240036352\/oUvThDIe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628348279240036352\/oUvThDIe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/541023393\/1423763671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:52 +0000 2015","id":663727208188534784,"id_str":"663727208188534784","text":"\u0628\u062d\u064a\u0627\u062a\u064a \u0645\u0627\u0634\u0641\u062a \u0645\u062b\u0644 \u0643\u0630\u0627 \u062d\u0642\u062f \u062a\u062f\u0639\u0648\u0644\u0623\u062e\u064a\u0643 \u0627\u0644\u0645\u0633\u0644\u0645 \u0627\u0644\u0644\u064a \u064a\u0645\u062b\u0644 \u0645\u0646\u062a\u062e\u0628 \u0628\u0644\u0627\u062f\u0643 \u0628\u0631\u0628\u0627\u0637\n\u0639\u0627\u0644\u0645 \u0645\u0631\u064a\u0636\u0629 \u0627\u0642\u0633\u0645 \u0628\u0627\u0644\u0644\u0647\n#\u0627\u0644\u0647\u0644\u0627\u0644\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646 https:\/\/t.co\/xtjBs9Fbrf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":485284050,"id_str":"485284050","name":"\uf8ff\u043d\u026a\u2113\u03b1\u2113y\u03b1\u043d 4 \u0454v\u0454\u044f","screen_name":"snow_white202","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":null,"description":"\u0642\u0628\u0644 \u0623\u0646 \u064a\u0623\u062a\u064a \u0630\u0644\u0643 \u0627\u0644\u064a\u0648\u0645 \u062d\u0644\u0644\u0648\u0646\u064a \u0648\u0623\u0646\u062a\u0645 \u0645\u0646\u064a \u0628\u062d\u0644 \u0627\u0646 \u0627\u0633\u0623\u062a \u0644\u0623\u064a\u0627\u064b \u0643\u0627\u0646 \u062f\u0648\u0646 \u0642\u0635\u062f \u0623\u0633\u0623\u0644 \u0627\u0644\u0644\u0647 \u0627\u0646 \u064a\u062c\u0645\u0639\u0646\u064a \u0628\u0643\u0645 \u0641\u064a \u062c\u0646\u0627\u062a\u0647 \u0628\u0631\u0641\u0642\u0629 \u0631\u0633\u0648\u0644\u0647 (\u0627\u0644\u0644\u0647\u0645 \u062a\u0648\u0641\u0646\u064a \u0648\u0623\u0646\u062a \u0631\u0627\u0636\u064d \u0639\u0646\u064a- \u0647\u0644\u0622\u0625\u0644\u064a\u0647 - \u0645\u062a\u0631\u0641\u0647\u263a)\u2764","protected":false,"verified":false,"followers_count":2463,"friends_count":397,"listed_count":8,"favourites_count":1443,"statuses_count":29028,"created_at":"Tue Feb 07 01:34:54 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/740091834\/6079f90ea9687c276ea74596a4c609a4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/740091834\/6079f90ea9687c276ea74596a4c609a4.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662599371461156868\/2-Ye83E-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662599371461156868\/2-Ye83E-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/485284050\/1441121154","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"\u0627\u0644\u0647\u0644\u0627\u0644","indices":[92,99]},{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[100,116]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727171899387904,"id_str":"663727171899387904","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","url":"https:\/\/t.co\/xtjBs9Fbrf","display_url":"pic.twitter.com\/xtjBs9Fbrf","expanded_url":"http:\/\/twitter.com\/snow_white202\/status\/663727208188534784\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":862,"resize":"fit"},"small":{"w":340,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":808,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727171899387904,"id_str":"663727171899387904","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","url":"https:\/\/t.co\/xtjBs9Fbrf","display_url":"pic.twitter.com\/xtjBs9Fbrf","expanded_url":"http:\/\/twitter.com\/snow_white202\/status\/663727208188534784\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":862,"resize":"fit"},"small":{"w":340,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":808,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0647\u0644\u0627\u0644","indices":[111,118]},{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[119,135]}],"urls":[],"user_mentions":[{"screen_name":"snow_white202","name":"\uf8ff\u043d\u026a\u2113\u03b1\u2113y\u03b1\u043d 4 \u0454v\u0454\u044f","id":485284050,"id_str":"485284050","indices":[3,17]}],"symbols":[],"media":[{"id":663727171899387904,"id_str":"663727171899387904","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","url":"https:\/\/t.co\/xtjBs9Fbrf","display_url":"pic.twitter.com\/xtjBs9Fbrf","expanded_url":"http:\/\/twitter.com\/snow_white202\/status\/663727208188534784\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":862,"resize":"fit"},"small":{"w":340,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":808,"resize":"fit"}},"source_status_id":663727208188534784,"source_status_id_str":"663727208188534784","source_user_id":485284050,"source_user_id_str":"485284050"}]},"extended_entities":{"media":[{"id":663727171899387904,"id_str":"663727171899387904","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWKTWcAAjKZq.jpg","url":"https:\/\/t.co\/xtjBs9Fbrf","display_url":"pic.twitter.com\/xtjBs9Fbrf","expanded_url":"http:\/\/twitter.com\/snow_white202\/status\/663727208188534784\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":862,"resize":"fit"},"small":{"w":340,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":808,"resize":"fit"}},"source_status_id":663727208188534784,"source_status_id_str":"663727208188534784","source_user_id":485284050,"source_user_id_str":"485284050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900726853632,"id_str":"663727900726853632","text":"RT @sevatian64: https:\/\/t.co\/riBdnzXNTZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3367914173,"id_str":"3367914173","name":"samanta","screen_name":"2samanta2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":250,"friends_count":1029,"listed_count":2,"favourites_count":0,"statuses_count":19318,"created_at":"Thu Jul 09 17:05:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621005507143290880\/KPJACL5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621005507143290880\/KPJACL5s_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:48:04 +0000 2015","id":663699575325270017,"id_str":"663699575325270017","text":"https:\/\/t.co\/riBdnzXNTZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313581969,"id_str":"3313581969","name":"WASHINGTON_HN","screen_name":"sevatian64","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":281,"friends_count":696,"listed_count":0,"favourites_count":0,"statuses_count":2298,"created_at":"Mon Jun 08 18:02:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609036807209103360\/G25EeDXE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609036807209103360\/G25EeDXE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663699574264057856,"id_str":"663699574264057856","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","url":"https:\/\/t.co\/riBdnzXNTZ","display_url":"pic.twitter.com\/riBdnzXNTZ","expanded_url":"http:\/\/twitter.com\/sevatian64\/status\/663699575325270017\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":582,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663699574264057856,"id_str":"663699574264057856","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","url":"https:\/\/t.co\/riBdnzXNTZ","display_url":"pic.twitter.com\/riBdnzXNTZ","expanded_url":"http:\/\/twitter.com\/sevatian64\/status\/663699575325270017\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":582,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sevatian64","name":"WASHINGTON_HN","id":3313581969,"id_str":"3313581969","indices":[3,14]}],"symbols":[],"media":[{"id":663699574264057856,"id_str":"663699574264057856","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","url":"https:\/\/t.co\/riBdnzXNTZ","display_url":"pic.twitter.com\/riBdnzXNTZ","expanded_url":"http:\/\/twitter.com\/sevatian64\/status\/663699575325270017\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":582,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":663699575325270017,"source_status_id_str":"663699575325270017","source_user_id":3313581969,"source_user_id_str":"3313581969"}]},"extended_entities":{"media":[{"id":663699574264057856,"id_str":"663699574264057856","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvPxGWUAASoeA.jpg","url":"https:\/\/t.co\/riBdnzXNTZ","display_url":"pic.twitter.com\/riBdnzXNTZ","expanded_url":"http:\/\/twitter.com\/sevatian64\/status\/663699575325270017\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":582,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":663699575325270017,"source_status_id_str":"663699575325270017","source_user_id":3313581969,"source_user_id_str":"3313581969"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080037658"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743639042,"id_str":"663727900743639042","text":"my new goal is to have a life so dope, i'm *actually* concerned about the imagery on a starbuck's cup.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913381,"id_str":"913381","name":"neil mccauley","screen_name":"the_blueprint","location":"atlantis, ohio","url":"http:\/\/soundcloud.com\/the-truck-jewelry-podcast","description":"astronauts don\u2019t even go to the moon anymore","protected":false,"verified":false,"followers_count":14234,"friends_count":255,"listed_count":270,"favourites_count":38104,"statuses_count":258520,"created_at":"Sun Mar 11 08:26:43 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4D1707","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065052828\/c94e13a32a071d0f927c95d443888618.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065052828\/c94e13a32a071d0f927c95d443888618.jpeg","profile_background_tile":true,"profile_link_color":"0A5E6B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8D185C","profile_text_color":"3E1267","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653342223656964096\/o00Jvl5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653342223656964096\/o00Jvl5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913381\/1432592680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900751962112,"id_str":"663727900751962112","text":"#twitter \u0421\u0443\u0430\u0440\u0435\u0441\u0430: \"\u041d\u0430\u0441\u043b\u0430\u0436\u0434\u0430\u044e\u0441\u044c \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u044b\u043c \u0434\u043d\u0435\u043c \u0441 \u0441\u0435\u043c\u044c\u0435\u0439\". https:\/\/t.co\/HezR7xzCcv","source":"\u003ca href=\"http:\/\/vk.com\" rel=\"nofollow\"\u003evk.com pages\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105880625,"id_str":"105880625","name":"barcamania.com","screen_name":"barcamaniacom","location":null,"url":"http:\/\/barcamania.com","description":"http:\/\/barcamania.com - \u0440\u0443\u0441\u0441\u043a\u043e\u044f\u0437\u044b\u0447\u043d\u044b\u0439 \u0441\u0430\u0439\u0442 \u0431\u043e\u043b\u0435\u043b\u044c\u0449\u0438\u043a\u043e\u0432 \u0444\u0443\u0442\u0431\u043e\u043b\u044c\u043d\u043e\u0433\u043e \u043a\u043b\u0443\u0431\u0430 \u00ab\u0411\u0430\u0440\u0441\u0435\u043b\u043e\u043d\u0430\u00bb","protected":false,"verified":false,"followers_count":1507,"friends_count":8,"listed_count":39,"favourites_count":7,"statuses_count":21525,"created_at":"Sun Jan 17 20:18:31 +0000 2010","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"00000F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432526099034021888\/odG1xPsE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432526099034021888\/odG1xPsE.png","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617066295230656512\/-NMZvl9__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617066295230656512\/-NMZvl9__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105880625\/1435953124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"twitter","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/HezR7xzCcv","expanded_url":"http:\/\/vk.cc\/4oAL9O","display_url":"vk.cc\/4oAL9O","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080037664"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900752019456,"id_str":"663727900752019456","text":"RT @LanaDawood: Pogba's new haircut\ud83d\ude29\ud83d\ude29 https:\/\/t.co\/eDROA5Lbd0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170654108,"id_str":"3170654108","name":"Alice","screen_name":"JuveAk","location":null,"url":"http:\/\/juveak.tumblr.com","description":"I'm covered in black and white","protected":false,"verified":false,"followers_count":128,"friends_count":90,"listed_count":10,"favourites_count":567,"statuses_count":4016,"created_at":"Fri Apr 24 11:20:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660791398606749696\/KATpO3wj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660791398606749696\/KATpO3wj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170654108\/1446999395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:39 +0000 2015","id":663727154002272256,"id_str":"663727154002272256","text":"Pogba's new haircut\ud83d\ude29\ud83d\ude29 https:\/\/t.co\/eDROA5Lbd0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124816900,"id_str":"124816900","name":"Coco","screen_name":"LanaDawood","location":"Stockholm, Sweden","url":null,"description":"Allez les Bleus","protected":false,"verified":false,"followers_count":3932,"friends_count":403,"listed_count":74,"favourites_count":619,"statuses_count":237589,"created_at":"Sat Mar 20 17:27:43 +0000 2010","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457873208775942145\/YhHRyhkY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457873208775942145\/YhHRyhkY.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"AD61AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661694295896928256\/ZuG5LB1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661694295896928256\/ZuG5LB1L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124816900\/1446984820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"179b8df9e368044d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/179b8df9e368044d.json","place_type":"city","name":"Lyon","full_name":"Lyon, Rh\u00f4ne-Alpes","country_code":"FR","country":"France","bounding_box":{"type":"Polygon","coordinates":[[[4.771831,45.707363],[4.771831,45.808281],[4.898367,45.808281],[4.898367,45.707363]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727134159040512,"id_str":"663727134159040512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","url":"https:\/\/t.co\/eDROA5Lbd0","display_url":"pic.twitter.com\/eDROA5Lbd0","expanded_url":"http:\/\/twitter.com\/LanaDawood\/status\/663727154002272256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727134159040512,"id_str":"663727134159040512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","url":"https:\/\/t.co\/eDROA5Lbd0","display_url":"pic.twitter.com\/eDROA5Lbd0","expanded_url":"http:\/\/twitter.com\/LanaDawood\/status\/663727154002272256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LanaDawood","name":"Coco","id":124816900,"id_str":"124816900","indices":[3,14]}],"symbols":[],"media":[{"id":663727134159040512,"id_str":"663727134159040512","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","url":"https:\/\/t.co\/eDROA5Lbd0","display_url":"pic.twitter.com\/eDROA5Lbd0","expanded_url":"http:\/\/twitter.com\/LanaDawood\/status\/663727154002272256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727154002272256,"source_status_id_str":"663727154002272256","source_user_id":124816900,"source_user_id_str":"124816900"}]},"extended_entities":{"media":[{"id":663727134159040512,"id_str":"663727134159040512","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIT9tWcAAV_Vk.jpg","url":"https:\/\/t.co\/eDROA5Lbd0","display_url":"pic.twitter.com\/eDROA5Lbd0","expanded_url":"http:\/\/twitter.com\/LanaDawood\/status\/663727154002272256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727154002272256,"source_status_id_str":"663727154002272256","source_user_id":124816900,"source_user_id_str":"124816900"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037664"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747833344,"id_str":"663727900747833344","text":"RT @xshawnsmuffinx_: Alalala on a eu trop d'\u00e9motion en sport avec Imane","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701145211,"id_str":"701145211","name":"Apollo","screen_name":"jedusorux","location":"Poudlard Express","url":null,"description":"Girl who wanna eat pizza for the rest of her life. Tv show and astronomy addict","protected":false,"verified":false,"followers_count":502,"friends_count":1022,"listed_count":4,"favourites_count":1216,"statuses_count":16106,"created_at":"Tue Jul 17 14:25:18 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"423F40","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602553997606584320\/PN_wPThN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602553997606584320\/PN_wPThN.jpg","profile_background_tile":true,"profile_link_color":"264775","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662707978848575488\/70lgvZqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662707978848575488\/70lgvZqt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701145211\/1445293880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:49 +0000 2015","id":663727449025417216,"id_str":"663727449025417216","text":"Alalala on a eu trop d'\u00e9motion en sport avec Imane","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3043010869,"id_str":"3043010869","name":"Fall(ess)","screen_name":"xshawnsmuffinx_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":68,"friends_count":47,"listed_count":1,"favourites_count":3162,"statuses_count":1643,"created_at":"Thu Feb 26 09:25:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662724465298534400\/ZpoeYYbH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662724465298534400\/ZpoeYYbH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3043010869\/1443198553","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xshawnsmuffinx_","name":"Fall(ess)","id":3043010869,"id_str":"3043010869","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080037663"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747694083,"id_str":"663727900747694083","text":"\uc6b0\ub9ac \ubb34\uc2dc\ud558\uac70 \uc7a0\uc774\uc624\ub0d0\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0\n\uc5c9\n#CROSSGENE \n\uc544\uc790","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3189428420,"id_str":"3189428420","name":"\uc131\uba85\uc11c\uc644\uc131\u2605\uc624\uad6c","screen_name":"oguogu_gene","location":null,"url":"http:\/\/oguogubang.tistory.com","description":"#\ud06c\ub85c\uc2a4\uc9c4 #TAKUYA #SHIN \n\uc120\ud314\ud558\uc2dc\uace0 \uba58\uc158\uc8fc\uc2e0\ubd84\uaed8 \ub9de\ud314\ud569\ub2c8\ub2e4\u2665 \ub9ac\ud2e7 \ub2f5\uba58\/\uc18c\ube44\ub7ec\/\uce5c\uad50\uc704\uc8fc\/\uae00\ub7ec \ud5e4\uc5b4\uc9c8\ub550 \ube14\uc5b8\ube14!! \ud06c\ub85c\uc2a4\uc9c4 \ubb38\ud559\ubd07@crossgenebot \/\/ \uc9e7\uc740 \uae00\uc62c\ub9ac\ub294 \uacc4\uc815 @traces_life\n\ube14\ub85c\uadf8\ub294 \uc624\uad6c\uc5b8\ub2c8 \uae00\ubc29\/\/ \uc778\uc7a5:Curo\ub2d8","protected":false,"verified":false,"followers_count":399,"friends_count":462,"listed_count":2,"favourites_count":474,"statuses_count":15296,"created_at":"Sat May 09 04:46:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655523591090343936\/UZvLIavL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655523591090343936\/UZvLIavL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3189428420\/1446478652","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[13,27]},{"text":"CROSSGENE","indices":[30,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080037663"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730896384,"id_str":"663727900730896384","text":"[\u661f4\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u7279\u5fb4]\u3000\u2605\u30ad\u30e9\u30e9\u2605\u30a2\u30af\u30b7\u30e7\u30f3\u30b9\u30ad\u30eb1\u306b\u306f\u6575\u3092\u6c17\u7d76\u3055\u305b\u308b\u52b9\u679c\u304c\u4ed8\u3044\u3066\u3044\u308b\u3002\u6d88\u8cbbSP\u8efd\u6e1b\u306e\u30aa\u30fc\u30c8\u30b9\u30ad\u30eb\u3092\u53d6\u5f97\u3059\u308b\u3068\u3001\u6d88\u8cbb14\u3067\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u308b\u305f\u3081\u9023\u767a\u304c\u3057\u3084\u3059\u3044\u305e\u3002\u6575\u3092\u6c17\u7d76\u3055\u305b\u3066\u8db3\u6b62\u3081\u3057\u3001\u9ad8\u706b\u529b\u306e\u30a2\u30af\u30b7\u30e7\u30f3\u30b9\u30ad\u30eb2\u3092\u53e9\u304d\u8fbc\u3080\u3068\u3044\u3046\u4f7f\u3044\u65b9 #\u767d\u732b\u653b\u7565","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3077831384,"id_str":"3077831384","name":"\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8@\u653b\u7565","screen_name":"Whitecats_JP","location":null,"url":null,"description":"\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u95a2\u3059\u308b\u60c5\u5831\u3084\u88cf\u30ef\u30b6\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u307e\u3081\u306b\u3064\u3076\u3084\u3044\u3066\u3044\u304d\u307e\u3059\u306e\u3067\u3001\u30d2\u30de\u306a\u6642\u306b\u305c\u3072\u3054\u89a7\u3042\u308c\uff5e^ ^","protected":false,"verified":false,"followers_count":6997,"friends_count":612,"listed_count":0,"favourites_count":0,"statuses_count":6892,"created_at":"Fri Mar 13 19:16:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607059459358101504\/l0BJF_iE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607059459358101504\/l0BJF_iE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3077831384\/1433569269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u767d\u732b\u653b\u7565","indices":[126,131]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900731031552,"id_str":"663727900731031552","text":"\"The clean tongue, the clear head, and the bright eye are birthrights of each day.\" -Sir William Osler via #forbes","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147683346,"id_str":"147683346","name":"Roxanna","screen_name":"rdbooth","location":"Greater Memphis Area","url":null,"description":null,"protected":false,"verified":false,"followers_count":141,"friends_count":285,"listed_count":4,"favourites_count":27,"statuses_count":3867,"created_at":"Mon May 24 19:45:41 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F01A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177787582\/6SwOvfBV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177787582\/6SwOvfBV.jpeg","profile_background_tile":false,"profile_link_color":"45C20F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9FA1D1","profile_text_color":"0E4EAD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461877290167582720\/blxf5AFH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461877290167582720\/blxf5AFH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147683346\/1391016393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"forbes","indices":[107,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756221952,"id_str":"663727900756221952","text":"RT @fatosbrisa: \"2015 e ainda usam twitter\" minha fia tudo q vc ta vendo agora la no facebook a gente ja criou aqui uns 5 meses atras.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3144606568,"id_str":"3144606568","name":"Advania'","screen_name":"TesaoClanessaa","location":null,"url":null,"description":"\u270c VAMOS NOS PERMITIR \u270c","protected":false,"verified":false,"followers_count":171,"friends_count":478,"listed_count":0,"favourites_count":75,"statuses_count":831,"created_at":"Tue Apr 07 16:40:42 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586588643361480704\/l9LddmQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586588643361480704\/l9LddmQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3144606568\/1428618824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:59 +0000 2015","id":663724471124107264,"id_str":"663724471124107264","text":"\"2015 e ainda usam twitter\" minha fia tudo q vc ta vendo agora la no facebook a gente ja criou aqui uns 5 meses atras.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2392165598,"id_str":"2392165598","name":"maconha","screen_name":"fatosbrisa","location":"Acre, Brasil","url":"https:\/\/instagram.com\/fatosbrisa\/","description":"Antes Maconha do que voc\u00eas","protected":false,"verified":false,"followers_count":66871,"friends_count":7,"listed_count":24,"favourites_count":5,"statuses_count":3313,"created_at":"Sun Mar 16 05:50:01 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660535297940324353\/gEbGYOXd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660535297940324353\/gEbGYOXd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2392165598\/1442438679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fatosbrisa","name":"maconha","id":2392165598,"id_str":"2392165598","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900739444736,"id_str":"663727900739444736","text":"RT @thefeelingv: what a cutie \ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/ddNWy8rOEx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687675300,"id_str":"2687675300","name":"\u2744 LUNA \u2744","screen_name":"lualves0023","location":"S\u00e3o Paulo, Brasil","url":null,"description":"I Don't Care!","protected":false,"verified":false,"followers_count":391,"friends_count":975,"listed_count":3,"favourites_count":476,"statuses_count":6696,"created_at":"Mon Jul 28 14:38:28 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662830760022405120\/3o7Cdhnf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662830760022405120\/3o7Cdhnf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687675300\/1446858076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:23:26 +0000 2015","id":663648078587654144,"id_str":"663648078587654144","text":"what a cutie \ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/ddNWy8rOEx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2423671447,"id_str":"2423671447","name":"J","screen_name":"thefeelingv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5536,"friends_count":613,"listed_count":4,"favourites_count":131,"statuses_count":4585,"created_at":"Wed Apr 02 11:37:32 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663123933282045954\/yT4uQgUy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663123933282045954\/yT4uQgUy_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663645062337855488,"id_str":"663645062337855488","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","url":"https:\/\/t.co\/ddNWy8rOEx","display_url":"pic.twitter.com\/ddNWy8rOEx","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663645064153972737\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":702,"resize":"fit"},"large":{"w":540,"h":702,"resize":"fit"}},"source_status_id":663645064153972737,"source_status_id_str":"663645064153972737","source_user_id":295261244,"source_user_id_str":"295261244"}]},"extended_entities":{"media":[{"id":663645062337855488,"id_str":"663645062337855488","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","url":"https:\/\/t.co\/ddNWy8rOEx","display_url":"pic.twitter.com\/ddNWy8rOEx","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663645064153972737\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":702,"resize":"fit"},"large":{"w":540,"h":702,"resize":"fit"}},"source_status_id":663645064153972737,"source_status_id_str":"663645064153972737","source_user_id":295261244,"source_user_id_str":"295261244"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thefeelingv","name":"J","id":2423671447,"id_str":"2423671447","indices":[3,15]}],"symbols":[],"media":[{"id":663645062337855488,"id_str":"663645062337855488","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","url":"https:\/\/t.co\/ddNWy8rOEx","display_url":"pic.twitter.com\/ddNWy8rOEx","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663645064153972737\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":702,"resize":"fit"},"large":{"w":540,"h":702,"resize":"fit"}},"source_status_id":663645064153972737,"source_status_id_str":"663645064153972737","source_user_id":295261244,"source_user_id_str":"295261244"}]},"extended_entities":{"media":[{"id":663645062337855488,"id_str":"663645062337855488","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW9qwWXAAAM9q5.jpg","url":"https:\/\/t.co\/ddNWy8rOEx","display_url":"pic.twitter.com\/ddNWy8rOEx","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663645064153972737\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":702,"resize":"fit"},"large":{"w":540,"h":702,"resize":"fit"}},"source_status_id":663645064153972737,"source_status_id_str":"663645064153972737","source_user_id":295261244,"source_user_id_str":"295261244"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037661"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900722507776,"id_str":"663727900722507776","text":"\u30e2\u30fc\u30ac\u30f3\u30fb\u30d5\u30ea\u30fc\u30de\u30f3\u3001\u30e2\u30fc\u30ac\u30f3\u3068\u30d5\u30ea\u30fc\u30de\u30f3","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117023997,"id_str":"117023997","name":"Hi-g","screen_name":"hig_factory","location":null,"url":null,"description":"\u4ed5\u4e8b\u534a\u5206\u6383\u9664\u534a\u5206","protected":false,"verified":false,"followers_count":135,"friends_count":284,"listed_count":3,"favourites_count":943,"statuses_count":134646,"created_at":"Wed Feb 24 08:54:43 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622941337789181952\/YDBFOICv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622941337789181952\/YDBFOICv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037657"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900731056129,"id_str":"663727900731056129","text":"RT @Infinitmicaela: Den rt a todo lo que diga\n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370020543,"id_str":"3370020543","name":"ViciconteNoEstasSola","screen_name":"micamicelosita","location":"Buenos Aires, Argentina ","url":"https:\/\/www.facebook.com\/profile.php?id=100008888836972","description":"58%Junt@s Podemos!\nViciconte Mi Unica Vida\nViciconte Mi Unica Raz\u00f3n \nViciconte Mi Mundo Entero\nViciconte Mi Vida Hoy y Siempre\nViciconte MI TODOOO!","protected":false,"verified":false,"followers_count":2556,"friends_count":1993,"listed_count":2,"favourites_count":17368,"statuses_count":26878,"created_at":"Sat Jul 11 01:04:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641060293578244097\/_Xjwa1zb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641060293578244097\/_Xjwa1zb.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663117351257300992\/uByAIDvr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663117351257300992\/uByAIDvr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3370020543\/1446815582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:33 +0000 2015","id":663727380679237632,"id_str":"663727380679237632","text":"Den rt a todo lo que diga\n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979936928,"id_str":"2979936928","name":"aye","screen_name":"Infinitmicaela","location":"Donde mica estee","url":null,"description":"MICAELA LORENA VICICONTE\n Te amo y no es para tanto, es para siempre. Me Siguio 3-10-2015 \u2665","protected":false,"verified":false,"followers_count":1217,"friends_count":950,"listed_count":1,"favourites_count":9964,"statuses_count":21784,"created_at":"Thu Jan 15 15:20:16 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650740629635506176\/bf83qCFg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650740629635506176\/bf83qCFg.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662377329457516545\/rseYqlpi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662377329457516545\/rseYqlpi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2979936928\/1446730851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0101525d656f78f9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0101525d656f78f9.json","place_type":"city","name":"San Miguel","full_name":"San Miguel, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-58.776792,-34.605515],[-58.776792,-34.502092],[-58.611463,-34.502092],[-58.611463,-34.605515]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[26,41]},{"text":"LaDiosa","indices":[42,50]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[46,61]},{"text":"LaDiosa","indices":[62,70]}],"urls":[],"user_mentions":[{"screen_name":"Infinitmicaela","name":"aye","id":2979936928,"id_str":"2979936928","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760363008,"id_str":"663727900760363008","text":"RT @BuscaMaria: Y en el peor de los caos, yo estar\u00e9 contigo.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1276631887,"id_str":"1276631887","name":"Nicol\u00e1s","screen_name":"NicoSasias","location":"Treinta y Tres City","url":null,"description":"El secreto esta en tener f\u00e9\n Amar es combatir","protected":false,"verified":false,"followers_count":657,"friends_count":673,"listed_count":0,"favourites_count":4429,"statuses_count":15723,"created_at":"Mon Mar 18 03:00:44 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"091D9C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456978780712468480\/DXTpI17_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456978780712468480\/DXTpI17_.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"0C979A","profile_sidebar_fill_color":"0C7FA7","profile_text_color":"075A91","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658763735109115904\/39eGt45x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658763735109115904\/39eGt45x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276631887\/1443668752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:37:11 +0000 2015","id":663500544464433152,"id_str":"663500544464433152","text":"Y en el peor de los caos, yo estar\u00e9 contigo.","source":"\u003ca href=\"http:\/\/www.google.com\" rel=\"nofollow\"\u003eBuscaMaria\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2288463852,"id_str":"2288463852","name":"Buscando Mar\u00eda","screen_name":"BuscaMaria","location":"Amsterdam, Jamaica, 4:20","url":null,"description":"No fumamos ni sonrisas ni distancias, somos fieles a Mar\u00eda.\nDeja las preocupaciones de lado, vengo con un verde en la mano! experto en bot\u00e1nica y papiroflexia.","protected":false,"verified":false,"followers_count":279382,"friends_count":3,"listed_count":263,"favourites_count":6,"statuses_count":143,"created_at":"Sun Jan 12 17:39:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167032248\/S-8P9-b_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167032248\/S-8P9-b_.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422437199301210112\/1b70QmKr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422437199301210112\/1b70QmKr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2288463852\/1389645105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":422,"favorite_count":280,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BuscaMaria","name":"Buscando Mar\u00eda","id":2288463852,"id_str":"2288463852","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900731056128,"id_str":"663727900731056128","text":"@ufc have to tell @Reebok at least design the guys shorts like they want them!!! That's sum bs if #crocop can't where the checkered shorts.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":6446742,"in_reply_to_user_id_str":"6446742","in_reply_to_screen_name":"ufc","user":{"id":882778874,"id_str":"882778874","name":"Luke Cage","screen_name":"TheRealScatta","location":null,"url":null,"description":"Throw me to the Wolves and I will return leading the pack","protected":false,"verified":false,"followers_count":92,"friends_count":397,"listed_count":1,"favourites_count":8,"statuses_count":3588,"created_at":"Mon Oct 15 17:44:16 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615340431132377088\/sFphb5Lc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615340431132377088\/sFphb5Lc_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"crocop","indices":[98,105]}],"urls":[],"user_mentions":[{"screen_name":"ufc","name":"UFC","id":6446742,"id_str":"6446742","indices":[0,4]},{"screen_name":"Reebok","name":"Reebok","id":21915474,"id_str":"21915474","indices":[18,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760248321,"id_str":"663727900760248321","text":"RT @soo5844: \ud310\uc0ac\ub2d8 \uc804 \uc0ac\uc2e4 \ubc30\ub3c4 \uc88b\uc544\ud569\ub2c8\ub2e4 https:\/\/t.co\/Hj6GDDWEoE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269377572,"id_str":"269377572","name":"J\uc608\ucc2c_D-3","screen_name":"soer1013","location":"\ubd80\ucc9c","url":null,"description":"97\ub144\uc0dd \/ \uc218\ub2a5\uc900\ube44\uc0dd(\uc900\ube44\ub294 \uc548\ud558\uc9c0\ub9cc \uba85\ubd84\uc0c1) \/ \ubbf8\ucfe0\ub355 \/ osu! \/ \ub0a8\uc790 \/ '\uc2ed \ubcc0\ud0dc \uacbd\uba78\uc758 \ub300\uc0c1 '","protected":false,"verified":false,"followers_count":132,"friends_count":103,"listed_count":0,"favourites_count":889,"statuses_count":34615,"created_at":"Sun Mar 20 17:11:06 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663714604657192960\/V4ITGaMG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663714604657192960\/V4ITGaMG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269377572\/1445096727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727781168066560,"id_str":"663727781168066560","text":"\ud310\uc0ac\ub2d8 \uc804 \uc0ac\uc2e4 \ubc30\ub3c4 \uc88b\uc544\ud569\ub2c8\ub2e4 https:\/\/t.co\/Hj6GDDWEoE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304522081,"id_str":"3304522081","name":"\ucfe0\ub85c\ube44 \uad11\uad11\uc6b0\ub7ec\ub2e4","screen_name":"soo5844","location":null,"url":null,"description":"\uc815\uc9c0\uba39\uc5b4\uc11c \ub9cc\ub4e4\uc5c8\ub2e4\uc694. \uc139\ud2b8\uac00\ub054\uc8fc\uc758 \uc7a1\ub355.\uadf8\ub9bc\uadf8\ub9ac\ub294 \uc785\uc2dc\uc0dd \uace03\uc785\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":39,"friends_count":75,"listed_count":0,"favourites_count":422,"statuses_count":4804,"created_at":"Sun Aug 02 17:50:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649119765164765184\/skGYEjwB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649119765164765184\/skGYEjwB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304522081\/1438538389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727771382714369,"id_str":"663727771382714369","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","url":"https:\/\/t.co\/Hj6GDDWEoE","display_url":"pic.twitter.com\/Hj6GDDWEoE","expanded_url":"http:\/\/twitter.com\/soo5844\/status\/663727781168066560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":650,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727771382714369,"id_str":"663727771382714369","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","url":"https:\/\/t.co\/Hj6GDDWEoE","display_url":"pic.twitter.com\/Hj6GDDWEoE","expanded_url":"http:\/\/twitter.com\/soo5844\/status\/663727781168066560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":650,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soo5844","name":"\ucfe0\ub85c\ube44 \uad11\uad11\uc6b0\ub7ec\ub2e4","id":3304522081,"id_str":"3304522081","indices":[3,11]}],"symbols":[],"media":[{"id":663727771382714369,"id_str":"663727771382714369","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","url":"https:\/\/t.co\/Hj6GDDWEoE","display_url":"pic.twitter.com\/Hj6GDDWEoE","expanded_url":"http:\/\/twitter.com\/soo5844\/status\/663727781168066560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":650,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727781168066560,"source_status_id_str":"663727781168066560","source_user_id":3304522081,"source_user_id_str":"3304522081"}]},"extended_entities":{"media":[{"id":663727771382714369,"id_str":"663727771382714369","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5DjUEAE6T4a.jpg","url":"https:\/\/t.co\/Hj6GDDWEoE","display_url":"pic.twitter.com\/Hj6GDDWEoE","expanded_url":"http:\/\/twitter.com\/soo5844\/status\/663727781168066560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":945,"resize":"fit"},"small":{"w":340,"h":535,"resize":"fit"},"large":{"w":650,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727781168066560,"source_status_id_str":"663727781168066560","source_user_id":3304522081,"source_user_id_str":"3304522081"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743614464,"id_str":"663727900743614464","text":"@adnancekcen 'den Dolar\/TL Analizi i\u00e7in -----> https:\/\/t.co\/jO0r8FX7aM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":147159012,"in_reply_to_user_id_str":"147159012","in_reply_to_screen_name":"adnancekcen","user":{"id":3375371979,"id_str":"3375371979","name":"Eyl\u00fcl GEN\u00c7","screen_name":"eylul_gnc","location":null,"url":null,"description":"Destek Menkul De\u011ferler A.\u015e - Ara\u015ft\u0131rma Uzman Yard\u0131mc\u0131s\u0131","protected":false,"verified":false,"followers_count":304,"friends_count":89,"listed_count":4,"favourites_count":23,"statuses_count":530,"created_at":"Tue Jul 14 09:03:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620894704851398660\/zi6rE64w.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620894704851398660\/zi6rE64w.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654536414286192640\/mD_9Zwg1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654536414286192640\/mD_9Zwg1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375371979\/1436867725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725934055419905,"quoted_status_id_str":"663725934055419905","quoted_status":{"created_at":"Mon Nov 09 14:32:48 +0000 2015","id":663725934055419905,"id_str":"663725934055419905","text":"Dolar Yukar\u0131 Trendini Koruyor => Analiz : https:\/\/t.co\/U758L4Angz https:\/\/t.co\/FbDPVbu9uH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147159012,"id_str":"147159012","name":"Adnan \u00c7ek\u00e7en","screen_name":"adnancekcen","location":"\u0130stanbul","url":null,"description":"Destek Menkul De\u011ferler - Ara\u015ft\u0131rma Uzman\u0131 - \u0130stanbul \u00dcniversitesi \u0130ktisat Fak\u00fcltesi","protected":false,"verified":false,"followers_count":1188,"friends_count":295,"listed_count":18,"favourites_count":303,"statuses_count":1192,"created_at":"Sun May 23 10:51:23 +0000 2010","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"151B54","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644582455349907456\/hfC-kQ5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644582455349907456\/hfC-kQ5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147159012\/1418504441","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U758L4Angz","expanded_url":"http:\/\/goo.gl\/RzLRrZ","display_url":"goo.gl\/RzLRrZ","indices":[45,68]}],"user_mentions":[],"symbols":[],"media":[{"id":663725932583247872,"id_str":"663725932583247872","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHOBfW4AABd_2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHOBfW4AABd_2.png","url":"https:\/\/t.co\/FbDPVbu9uH","display_url":"pic.twitter.com\/FbDPVbu9uH","expanded_url":"http:\/\/twitter.com\/adnancekcen\/status\/663725934055419905\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":309,"resize":"fit"},"large":{"w":1024,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":175,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725932583247872,"id_str":"663725932583247872","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHOBfW4AABd_2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHOBfW4AABd_2.png","url":"https:\/\/t.co\/FbDPVbu9uH","display_url":"pic.twitter.com\/FbDPVbu9uH","expanded_url":"http:\/\/twitter.com\/adnancekcen\/status\/663725934055419905\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":309,"resize":"fit"},"large":{"w":1024,"h":528,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":175,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jO0r8FX7aM","expanded_url":"https:\/\/twitter.com\/adnancekcen\/status\/663725934055419905","display_url":"twitter.com\/adnancekcen\/st\u2026","indices":[51,74]}],"user_mentions":[{"screen_name":"adnancekcen","name":"Adnan \u00c7ek\u00e7en","id":147159012,"id_str":"147159012","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743606272,"id_str":"663727900743606272","text":"Get Weather Updates from The Weather Channel. 09:40:36","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748154452,"id_str":"2748154452","name":"26426stwb","screen_name":"26426stwb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":84763,"created_at":"Wed Aug 20 05:01:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900726829056,"id_str":"663727900726829056","text":"shygirl79435191: kathnielquotes_: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: kbdpftcris8: lepitennicell4: #PushAwardsKathNiels #PushAwardsKa\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1188121111,"id_str":"1188121111","name":"Cecaina S. Rodrigo","screen_name":"kathnielcecaina","location":"Negros Occidental","url":null,"description":"Solid Kathniel- One heart for @bernardokath and @imdanielpadilla !\nEVEN--STEADY--TRUE","protected":false,"verified":false,"followers_count":187,"friends_count":1036,"listed_count":28,"favourites_count":346,"statuses_count":40223,"created_at":"Sun Feb 17 02:37:20 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658275442659430400\/VA31SqDI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658275442659430400\/VA31SqDI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1188121111\/1445138299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[105,125]},{"text":"PushAwardsKa","indices":[126,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080037658"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760416256,"id_str":"663727900760416256","text":"never lie to those who trust you. never trust those who lied to you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94845175,"id_str":"94845175","name":"Phoenix Foxwell","screen_name":"ALL_ABOUT_ME4","location":null,"url":"http:\/\/instagram.com\/phoenixfoxwell\/","description":"cancer\/Indian\/18..J.P\u2764\nInstagram:@phoenixfoxwell","protected":false,"verified":false,"followers_count":1422,"friends_count":1397,"listed_count":3,"favourites_count":920,"statuses_count":5259,"created_at":"Sat Dec 05 18:44:34 +0000 2009","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656543366360997888\/zUPQY1Gi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656543366360997888\/zUPQY1Gi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94845175\/1446478033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743495680,"id_str":"663727900743495680","text":"RT @kouenkouen: \u5bc6\u5ba4\u300c\u79c1\u304c\u3084\u308a\u307e\u3057\u305f\u2026\u300d","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415707633,"id_str":"415707633","name":"\u6e21\u6d77 \u72d0\u590f","screen_name":"konats_showsets","location":"\u30aa\u30ea\u30b8\u30ca\u30eb\u5c0f\u8aac(\u638c\u7de8\u30fb\u77ed\u7de8)\u3001\u8266\u3053\u308c\u4e8c\u6b21","url":"http:\/\/pixiv.me\/ko_na_tsu","description":"\u5c0f\u8aac\u95a2\u4fc2\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3000\u5c0f\u8aac\u95a2\u4fc2\u304b\u3089\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u6b53\u8fce\u4e2d\u30fe\uff89\uff61\u30fb\u3145\u30fb)\uff89\uff7c Pixiv\u30e1\u30a4\u30f3\u3067\u62d9\u7b46\u3057\u3066\u3044\u308b\u306e\u3067\u3088\u304b\u3063\u305f\u3089\u8997\u3044\u3066\u307f\u3066\u4e0b\u3055\u3044\u306a \u3054\u610f\u898b\u3001\u3054\u611f\u60f3\u306a\u3093\u3067\u3082\u5f85\u3063\u3066\u307e\u3059\uff01\u3000Web\u540c\u4eba\u300c\u7834\u6ec5\u6d3e\u300d\u3067\u306f\u6e21\u6d77\u5c0f\u6ce2\u6d25\u3068\u3044\u3046\u7b46\u540d\u3067\u66f8\u3044\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":399,"friends_count":270,"listed_count":19,"favourites_count":284,"statuses_count":117651,"created_at":"Fri Nov 18 18:07:37 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/366215272\/1243565892236.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/366215272\/1243565892236.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661391255465689088\/njxVAzWX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661391255465689088\/njxVAzWX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415707633\/1366580950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727711144161280,"id_str":"663727711144161280","text":"\u5bc6\u5ba4\u300c\u79c1\u304c\u3084\u308a\u307e\u3057\u305f\u2026\u300d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1254328544,"id_str":"1254328544","name":"\u7d05\u708e","screen_name":"kouenkouen","location":"\u592a\u967d","url":"http:\/\/www.pixiv.net\/member.php?id=2277729","description":"\u97f3\u697d\u3068\u304b\u672c\u3001\u65e5\u672c\u8a9e\u3068\u304b\u304c\u597d\u304d\u306a\u4eba\u3002pixiv\u3067\u5c0f\u8aac\u66f8\u3044\u3066\u307e\u3059\u3002\u4e0b\u54c1\u306a\u30c4\u30a4\u30fc\u30c8\u3082\u3059\u308b\u306e\u3067\u6ce8\u610f\u3000\u30fb\u97f3\u697d\u306f\u30a2\u30cb\u30bd\u30f3\u3001\u30ed\u30c3\u30af\u3001\u30e1\u30bf\u30eb\u3001\u30d7\u30ed\u30b0\u30ec\u3001\u540c\u4eba\u97f3\u697d\u3092\u4e2d\u5fc3\u3068\u3057\u3066\u8272\u3005\u8074\u304f\u3002\u3082\u3063\u3068\u8272\u3005\u306a\u97f3\u697d\u4e16\u754c\u3092\u77e5\u308a\u305f\u3044\u3002\u540c\u4eba\u97f3\u58f0\u3082\u597d\u304d\u3002\u597d\u304d\u306a\u5c0f\u8aac\u5bb6\u306f\u7c73\u6fa4\u7a42\u4fe1\u3002\u81ea\u79f0\u5915\u5f35\u63d0\u7763\u3002\u30af\u30ea\u30a2\u306b\u529b\u5165\u308c\u308b\u30e0\u30e9\u30b5\u30ad\u91d1\u4e09\u6bb5\u306e\u30cf\u30a6\u30b9\u30c9\u30f3\u3060\u30fc\u3002\u30ea\u30d5\u30ec\u30afCLASS6","protected":false,"verified":false,"followers_count":173,"friends_count":100,"listed_count":5,"favourites_count":2660,"statuses_count":30697,"created_at":"Sat Mar 09 13:04:05 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648518407046868992\/6Rqs9bqD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648518407046868992\/6Rqs9bqD.png","profile_background_tile":true,"profile_link_color":"FF4500","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583298617487720448\/TlQHuTrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583298617487720448\/TlQHuTrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1254328544\/1425619070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kouenkouen","name":"\u7d05\u708e","id":1254328544,"id_str":"1254328544","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730851328,"id_str":"663727900730851328","text":"\u30a6\u30a3\u30b6\u30fc\u30c9\u305d\u3093\u306a\u306a\u3093\u3060\u30fb\u30fb\u30fb","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2253860534,"id_str":"2253860534","name":"\u8679\u7fbd\u30da\u30f3\u30ae\u30f3","screen_name":"r_feather1350","location":"\u30dd\u30b3\u30dd\u30b3\u30dd\u30b3\u30dd\u30b3","url":"http:\/\/ask.fm\/r_feather","description":"\u25a0\u30b2\u30fc\u30e0\u3057\u305f\u308a\u7d75\u63cf\u3044\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u30b3\u30f3\u30b3\u30ec\u306b\u72d0\u9b42\u63d0\u4f9b\u3057\u3066\u307e\u3059\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u306d\u304c\u3044\u3057\u307e\u3059\u3002\u30b4\u30ea\u30e9\u306e\u30c9\u30e9\u30df\u30f3\u30b0\u306f\u6b63\u78ba\u306b\u306f\u30c9\u30b3\u30c9\u30b3\u3088\u308a\u3082\u30dd\u30b3\u30dd\u30b3\u306a\u3093\u3067\u3059\u3088\u3002\u77e5\u3063\u3066\u307e\u3057\u305f\u304b\uff1f \u25a0\u72d0\u30b3\u30ecID:35178 SB69ID:489202672","protected":false,"verified":false,"followers_count":299,"friends_count":270,"listed_count":22,"favourites_count":7382,"statuses_count":58380,"created_at":"Thu Dec 19 17:56:13 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555394106428387328\/sIJPvVwW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555394106428387328\/sIJPvVwW.png","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662601522186813440\/y_RUYV4k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662601522186813440\/y_RUYV4k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2253860534\/1446811669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743438336,"id_str":"663727900743438336","text":"\u6765\u5e74\u307e\u3067\u30b3\u30b9\u30d7\u30ec\u306f\u3057\u306a\u3044\u3067\u304d\u306a\u3044\u2026\n\u304d\u3048\u3048\u3048\u3063","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206704334,"id_str":"206704334","name":"\u307e\u3041\u308a\uff20\u3055\u3068\u3061\u3083","screen_name":"maari1113","location":"\u4fee\u7f85\u306e\u570b","url":null,"description":"\u96d1\u98df\u3002 \u6700\u8fd1\u306f\u30ea\u30a2\u30eb\u306e\u4e8b\u3057\u304b\u545f\u304d\u307e\u305b\u3093\u3002\u8266\u3053\u308c\u3001\u3068\u3046\u3089\u3076\u3070\u3063\u304b \u6bd4\u53e1\u3061\u3083\u3093\u3068\uff79\uff6f\uff7a\uff9d\uff76\uff6f\uff7a\uff76\uff98\u3057\u3066\u307e\u3059\u6bd4\u53e1\u3061\u3083\u3093\u53ef\u611b\u3044 \u30cb\u30fc\u30c8\u7d42\u308f\u308a\u307e\u3057\u305fmaimai\u306f\u5f15\u9000\u6c17\u5473 CURE:94456 ARCHIVE:42584","protected":false,"verified":false,"followers_count":723,"friends_count":683,"listed_count":17,"favourites_count":5598,"statuses_count":49434,"created_at":"Sat Oct 23 14:48:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B80000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/723729817\/7f7b7d54dc9538b3716c9f6a7cce114c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/723729817\/7f7b7d54dc9538b3716c9f6a7cce114c.jpeg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662569701751418880\/7GAjK4Y7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662569701751418880\/7GAjK4Y7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206704334\/1443709112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760211456,"id_str":"663727900760211456","text":"@Isikoff @AnnCoulter ridiculous","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725150257442816,"in_reply_to_status_id_str":"663725150257442816","in_reply_to_user_id":334079075,"in_reply_to_user_id_str":"334079075","in_reply_to_screen_name":"Isikoff","user":{"id":2255955180,"id_str":"2255955180","name":"gear jammer","screen_name":"scott_gear","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":93,"listed_count":2,"favourites_count":728,"statuses_count":703,"created_at":"Sat Dec 21 04:01:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653380774020845568\/chS7-anj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653380774020845568\/chS7-anj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2255955180\/1437952102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Isikoff","name":"Michael Isikoff","id":334079075,"id_str":"334079075","indices":[0,8]},{"screen_name":"AnnCoulter","name":"Ann Coulter","id":196168350,"id_str":"196168350","indices":[9,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747657216,"id_str":"663727900747657216","text":"Se ruega no retuitearme cosas del Ara. Los tebeos me los busco yo. Gracias.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3240862492,"id_str":"3240862492","name":"Albert Galdor","screen_name":"pr17comic","location":null,"url":"http:\/\/www.ivoox.com\/podcast-vineta-disco-inferno_sq_f114414_1.html","description":"Podcaster en La Vi\u00f1eta en Disco Inferno","protected":false,"verified":false,"followers_count":331,"friends_count":283,"listed_count":10,"favourites_count":222,"statuses_count":2855,"created_at":"Thu May 07 17:47:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596377895775383554\/bE2Upq5b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596377895775383554\/bE2Upq5b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3240862492\/1446320936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037663"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756193280,"id_str":"663727900756193280","text":"\u0434\u0438\u0432\u0430\u043d ru \u041c\u043e\u0441\u043a\u0432\u0430 https:\/\/t.co\/abmRRJu0i7","source":"\u003ca href=\"http:\/\/yugostroy.ru\/\" rel=\"nofollow\"\u003eFas-Fermas\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347259096,"id_str":"2347259096","name":"Dieterich Gisborne","screen_name":"pimoqeniladu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":545,"friends_count":572,"listed_count":0,"favourites_count":0,"statuses_count":1943,"created_at":"Sun Feb 16 18:27:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/439381652779704320\/B9tMLasn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/439381652779704320\/B9tMLasn_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/abmRRJu0i7","expanded_url":"http:\/\/sladiv.dyndns.org\/sofas\/p\/divan-mariya-v-moskovkoy-obl-2\/","display_url":"sladiv.dyndns.org\/sofas\/p\/divan-\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756041728,"id_str":"663727900756041728","text":"RT @longtaota: \u0e40\u0e04\u0e22\u0e1b\u0e48\u0e30\u0e41\u0e1a\u0e1a ?\n.\n.\n.\n.\n.\n.\n.\n.\n\u0e41\u0e1a\u0e1a\u0e1a\u0e2d\u0e01\u0e01\u0e31\u0e1a\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e08\u0e30\u0e17\u0e33\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19\u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e40\u0e22\u0e47\u0e19 \u0e08\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e14\u0e36\u0e01\u0e40\u0e23\u0e34\u0e48\u0e21\u0e07\u0e48\u0e27\u0e07\u0e19\u0e2d\u0e19\u0e25\u0e30\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e17\u0e3355555555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307312770,"id_str":"3307312770","name":"\u0e19\u0e49\u0e2d\u0e07\u0e08\u0e39\u0e19","screen_name":"june13994","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":47,"listed_count":0,"favourites_count":19,"statuses_count":327,"created_at":"Thu Aug 06 01:43:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660632793458675712\/W--8ZMZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660632793458675712\/W--8ZMZA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307312770\/1446342101","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:40:25 +0000 2015","id":663697651817250816,"id_str":"663697651817250816","text":"\u0e40\u0e04\u0e22\u0e1b\u0e48\u0e30\u0e41\u0e1a\u0e1a ?\n.\n.\n.\n.\n.\n.\n.\n.\n\u0e41\u0e1a\u0e1a\u0e1a\u0e2d\u0e01\u0e01\u0e31\u0e1a\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e08\u0e30\u0e17\u0e33\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19\u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e40\u0e22\u0e47\u0e19 \u0e08\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e14\u0e36\u0e01\u0e40\u0e23\u0e34\u0e48\u0e21\u0e07\u0e48\u0e27\u0e07\u0e19\u0e2d\u0e19\u0e25\u0e30\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e17\u0e3355555555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185553887,"id_str":"2185553887","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","screen_name":"longtaota","location":"\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e43\u0e08\u0e40\u0e18\u0e2d...","url":null,"description":"\u0e22\u0e2d\u0e14\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e17\u0e22 | \u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30 | \u0e2a\u0e38\u0e14\u0e22\u0e2d\u0e14\u0e04\u0e27\u0e32\u0e21\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48 ... \u0e21\u0e32\u0e08\u0e32\u0e01\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01","protected":false,"verified":false,"followers_count":525242,"friends_count":20,"listed_count":48,"favourites_count":55,"statuses_count":3623,"created_at":"Sun Nov 10 04:02:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427375272631877632\/Ju9l_RNJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185553887\/1392375059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2350,"favorite_count":258,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"longtaota","name":"1-100%\u0e19\u0e23.\u0e44\u0e17\u0e22","id":2185553887,"id_str":"2185553887","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760272896,"id_str":"663727900760272896","text":"\uff08\u5b9a\u671f\uff09\u30dd\u30b1\u30e2\u30f3\u597d\u304d\u306f\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387550347,"id_str":"387550347","name":"\u3042\u307f\u3060","screen_name":"jodoshin","location":"\u65e5\u672c","url":null,"description":"\uff71\uff78\uff71\uff98\uff73\uff91\u3000\u8eca\u3000\uff8e\uff9f\uff79\uff93\uff9d\u3000\u67d4\u9053\u3000\u4fee\u7406\u5c4b\u3055\u3093\u3000\u57fa\u672c\u30ea\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":498,"friends_count":745,"listed_count":4,"favourites_count":5,"statuses_count":2818,"created_at":"Sun Oct 09 08:00:03 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3035129527\/c19768ad930a0799b9ccba4cc3a23854_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3035129527\/c19768ad930a0799b9ccba4cc3a23854_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900722524160,"id_str":"663727900722524160","text":"@null sekarang jam 21:40:02 WIB","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Null\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":1965046004,"id_str":"1965046004","name":"mark","screen_name":"markttn93","location":"KaumElite","url":null,"description":"got7 mark roleplayer","protected":false,"verified":false,"followers_count":1354,"friends_count":1306,"listed_count":1,"favourites_count":20,"statuses_count":24476,"created_at":"Wed Oct 16 15:53:20 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471916820383821824\/hIhuGwOz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471916820383821824\/hIhuGwOz.png","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660462220975849472\/gnXN917t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660462220975849472\/gnXN917t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1965046004\/1446301437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080037657"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730912769,"id_str":"663727900730912769","text":"@ChrisChinValdez thank you, Noah! \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663705263501807616,"in_reply_to_status_id_str":"663705263501807616","in_reply_to_user_id":1091637836,"in_reply_to_user_id_str":"1091637836","in_reply_to_screen_name":"ChrisChinValdez","user":{"id":116345570,"id_str":"116345570","name":"Alecks","screen_name":"alecksmunchkin","location":null,"url":"http:\/\/Instagram.com\/alecksflores","description":"sbc olps ust | sc: alecksmunchkin","protected":false,"verified":false,"followers_count":1753,"friends_count":996,"listed_count":4,"favourites_count":5498,"statuses_count":37153,"created_at":"Mon Feb 22 03:50:30 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/799717451\/4fbd036679b6cf543853c31c3dfa88fd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/799717451\/4fbd036679b6cf543853c31c3dfa88fd.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"541E54","profile_text_color":"DD00FF","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663234952532635649\/4KpgJB7J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663234952532635649\/4KpgJB7J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116345570\/1446890779","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChrisChinValdez","name":"Noah Valdez","id":1091637836,"id_str":"1091637836","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900726718464,"id_str":"663727900726718464","text":"@QaersaraAfiqah @kuacicorn yg pasti aku punya choi minho, yonghwa ok \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727410404175873,"in_reply_to_status_id_str":"663727410404175873","in_reply_to_user_id":423340203,"in_reply_to_user_id_str":"423340203","in_reply_to_screen_name":"QaersaraAfiqah","user":{"id":823418940,"id_str":"823418940","name":"silly","screen_name":"LovatoAin","location":"XIX","url":null,"description":"a little girl with a big dream and expectation","protected":false,"verified":false,"followers_count":395,"friends_count":294,"listed_count":1,"favourites_count":2976,"statuses_count":24106,"created_at":"Fri Sep 14 14:46:34 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3F2C5E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454931421115609089\/1IN0noHQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454931421115609089\/1IN0noHQ.jpeg","profile_background_tile":true,"profile_link_color":"32A1EB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662628963320119296\/m3mrxiW__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662628963320119296\/m3mrxiW__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/823418940\/1439556651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QaersaraAfiqah","name":"QAMSM","id":423340203,"id_str":"423340203","indices":[0,15]},{"screen_name":"kuacicorn","name":"alissya","id":2410326362,"id_str":"2410326362","indices":[16,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080037658"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743630848,"id_str":"663727900743630848","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/h6CMughXDx","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2307186991,"id_str":"2307186991","name":"\u0635\u0627\u0628\u0631 \u0648\u0631\u0627\u0636\u064a","screen_name":"starsfolo","location":null,"url":null,"description":"\u0623\u0644\u0627 \u0643\u0644 \u0634\u0626 \u0645\u0627 \u062e\u0644\u0627 \u0627\u0644\u0644\u0647\u0651 \u0628\u0627\u0637\u0644\u064c \u0648\u0643\u0644 \u0646\u0639\u064a\u0645 \u0644\u0627 \u0645\u062d\u0627\u0644\u0629 \u0632\u0627\u0626\u0644\u064f","protected":false,"verified":false,"followers_count":539,"friends_count":567,"listed_count":1,"favourites_count":49,"statuses_count":10845,"created_at":"Thu Jan 23 20:19:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495167634233511936\/Wg8QE73A_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495167634233511936\/Wg8QE73A_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307186991\/1394037010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/h6CMughXDx","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743462912,"id_str":"663727900743462912","text":"#Israel Did Netanyahu's visit divide American opinion on Israel? These are the facts.: But in fact, ... https:\/\/t.co\/divx0rCQEr #Politics","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359028480,"id_str":"2359028480","name":"#JadeHelm15 INTERN","screen_name":"AnimalRightsJen","location":"NYC :) Ex- #Islamophobe","url":"http:\/\/jennyjacobs98.tumblr.com\/post\/124509393132\/your-feminist-from-hell-who-is-she","description":"#Vegan #AnimalRights #GUNSENSE #FEMINIST #Hillary2016 ex #conservative Now a #Liberal 4 #UniteBlue #WomensRights #Lgbt \n#Tumblr = http:\/\/t.co\/XFy6pDzYUf","protected":false,"verified":false,"followers_count":74669,"friends_count":67370,"listed_count":1203,"favourites_count":38946,"statuses_count":830111,"created_at":"Mon Feb 24 05:48:28 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459981243384221697\/v1AAIk1v.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459981243384221697\/v1AAIk1v.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622518681528958976\/4esDROCD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622518681528958976\/4esDROCD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359028480\/1437179071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Israel","indices":[0,7]},{"text":"Politics","indices":[128,137]}],"urls":[{"url":"https:\/\/t.co\/divx0rCQEr","expanded_url":"http:\/\/bit.ly\/1NEzKW2","display_url":"bit.ly\/1NEzKW2","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900751892480,"id_str":"663727900751892480","text":"RT @iKONTHSUB: (info) iKON \u0e01\u0e33\u0e25\u0e31\u0e07\u0e16\u0e48\u0e32\u0e22 MV\u0e15\u0e31\u0e27\u0e43\u0e2b\u0e21\u0e48\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e48\u0e30 \u0e17\u0e35\u0e48Wolmido \u0e2d\u0e34\u0e19\u0e0a\u0e2d\u0e19 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32MV\u0e15\u0e31\u0e27\u0e19\u0e35\u0e49\u0e08\u0e30\u0e21\u0e35\u0e19\u0e31\u0e01\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e49\u0e27\u0e22\u0e19\u0e30\u0e04\u0e30 \ud83d\ude02 |Cr: KIMJ1WON https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1855986925,"id_str":"1855986925","name":"Mr.Airplane","screen_name":"PK008_","location":"The Last Man Standing!!","url":null,"description":"waiting for DnE \u2661 | \u2765SJ\u2022IKON\u2022EXO | \u0e2a\u0e27\u0e22\u0e21\u0e32\u0e01\u0e19\u0e30\u0e41\u0e15\u0e48\u0e08\u0e19\u0e21\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32 | #\u0e17\u0e35\u0e21\u0e42\u0e2a\u0e14 #\u0e40\u0e1a\u0e37\u0e48\u0e2d\u0e1e\u0e27\u0e01\u0e2d\u0e27\u0e14\u0e41\u0e1f\u0e19 #\u0e2a\u0e32\u0e22\u0e0b\u0e49\u0e33\u0e40\u0e15\u0e34\u0e21","protected":false,"verified":false,"followers_count":377,"friends_count":393,"listed_count":2,"favourites_count":377,"statuses_count":14879,"created_at":"Thu Sep 12 01:42:23 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605288474040606720\/f8oyuY33.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605288474040606720\/f8oyuY33.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662296774766301184\/j7pJdZwX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662296774766301184\/j7pJdZwX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1855986925\/1442559893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:43:17 +0000 2015","id":663592677418528768,"id_str":"663592677418528768","text":"(info) iKON \u0e01\u0e33\u0e25\u0e31\u0e07\u0e16\u0e48\u0e32\u0e22 MV\u0e15\u0e31\u0e27\u0e43\u0e2b\u0e21\u0e48\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e48\u0e30 \u0e17\u0e35\u0e48Wolmido \u0e2d\u0e34\u0e19\u0e0a\u0e2d\u0e19 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e27\u0e48\u0e32MV\u0e15\u0e31\u0e27\u0e19\u0e35\u0e49\u0e08\u0e30\u0e21\u0e35\u0e19\u0e31\u0e01\u0e41\u0e2a\u0e14\u0e07\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e49\u0e27\u0e22\u0e19\u0e30\u0e04\u0e30 \ud83d\ude02 |Cr: KIMJ1WON https:\/\/t.co\/W2uVHpIqmf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2812452085,"id_str":"2812452085","name":"iKONTHSUB\u2661","screen_name":"iKONTHSUB","location":"since 140916, Thailand","url":"http:\/\/facebook.com\/iKONTHSUB","description":"\u2661SUPPORT iKON : \u0e1a\u0e49\u0e32\u0e19\u0e40\u0e25\u0e47\u0e01\u0e46\u0e17\u0e35\u0e48\u0e17\u0e38\u0e01\u0e04\u0e19\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e21\u0e31\u0e19\u0e43\u0e2b\u0e0d\u0e48\u0e02\u0e36\u0e49\u0e19 \u300cGet ready? Showtime!\u300d \u266a\u266d.","protected":false,"verified":false,"followers_count":50215,"friends_count":208,"listed_count":94,"favourites_count":540,"statuses_count":7271,"created_at":"Tue Sep 16 04:16:03 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511743103053479936\/fmGk5FMf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511743103053479936\/fmGk5FMf.jpeg","profile_background_tile":false,"profile_link_color":"E80C0C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657204849944059904\/qgMEcvWD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657204849944059904\/qgMEcvWD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2812452085\/1443593152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1558,"favorite_count":137,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663592661526253568,"id_str":"663592661526253568","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","url":"https:\/\/t.co\/W2uVHpIqmf","display_url":"pic.twitter.com\/W2uVHpIqmf","expanded_url":"http:\/\/twitter.com\/iKONTHSUB\/status\/663592677418528768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":1024,"resize":"fit"},"medium":{"w":600,"h":803,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663592661526253568,"id_str":"663592661526253568","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","url":"https:\/\/t.co\/W2uVHpIqmf","display_url":"pic.twitter.com\/W2uVHpIqmf","expanded_url":"http:\/\/twitter.com\/iKONTHSUB\/status\/663592677418528768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":1024,"resize":"fit"},"medium":{"w":600,"h":803,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iKONTHSUB","name":"iKONTHSUB\u2661","id":2812452085,"id_str":"2812452085","indices":[3,13]}],"symbols":[],"media":[{"id":663592661526253568,"id_str":"663592661526253568","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","url":"https:\/\/t.co\/W2uVHpIqmf","display_url":"pic.twitter.com\/W2uVHpIqmf","expanded_url":"http:\/\/twitter.com\/iKONTHSUB\/status\/663592677418528768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":1024,"resize":"fit"},"medium":{"w":600,"h":803,"resize":"fit"}},"source_status_id":663592677418528768,"source_status_id_str":"663592677418528768","source_user_id":2812452085,"source_user_id_str":"2812452085"}]},"extended_entities":{"media":[{"id":663592661526253568,"id_str":"663592661526253568","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWOAoHUEAAcTAq.jpg","url":"https:\/\/t.co\/W2uVHpIqmf","display_url":"pic.twitter.com\/W2uVHpIqmf","expanded_url":"http:\/\/twitter.com\/iKONTHSUB\/status\/663592677418528768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":765,"h":1024,"resize":"fit"},"medium":{"w":600,"h":803,"resize":"fit"}},"source_status_id":663592677418528768,"source_status_id_str":"663592677418528768","source_user_id":2812452085,"source_user_id_str":"2812452085"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080037664"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747694081,"id_str":"663727900747694081","text":"#Itsthattimeagain [Art Monday Gallery ] | Natura morta (Still Life), by Giorgio Morandi: https:\/\/t.co\/F7EjGDg5Rf","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427253416,"id_str":"427253416","name":"Realmotivator","screen_name":"the_realmotive","location":"Worldwide","url":null,"description":"Modest","protected":false,"verified":false,"followers_count":49481,"friends_count":42519,"listed_count":161,"favourites_count":140,"statuses_count":100863,"created_at":"Sat Dec 03 09:17:26 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EA1B2C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115040844\/6f5437f0f4cd308d8e76e2f5b805c00c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115040844\/6f5437f0f4cd308d8e76e2f5b805c00c.jpeg","profile_background_tile":true,"profile_link_color":"F38043","profile_sidebar_border_color":"38B5A9","profile_sidebar_fill_color":"A0D1A2","profile_text_color":"E3E67F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000729212231\/fff3d29e00ec4de505d6f2c6ebe691e5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000729212231\/fff3d29e00ec4de505d6f2c6ebe691e5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427253416\/1384232122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Itsthattimeagain","indices":[0,17]}],"urls":[{"url":"https:\/\/t.co\/F7EjGDg5Rf","expanded_url":"http:\/\/bit.ly\/1Sc1xvZ","display_url":"bit.ly\/1Sc1xvZ","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037663"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743639041,"id_str":"663727900743639041","text":"RT @brandie_lou: The only problem is it's heart banging now. Twitter we have no souls, leave the emotions pit of this","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2561145403,"id_str":"2561145403","name":"iseeoddpeople","screen_name":"Imsohoppy","location":"far enough.","url":"http:\/\/Favstar.FM\/users\/imsohoppy\/recent","description":"https:\/\/twitter.com\/search?q=from%3AImsohoppy","protected":false,"verified":false,"followers_count":9305,"friends_count":9226,"listed_count":203,"favourites_count":99450,"statuses_count":85745,"created_at":"Wed Jun 11 11:05:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660809225845755904\/Rt0BpgzQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660809225845755904\/Rt0BpgzQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561145403\/1414844611","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:27:11 +0000 2015","id":663498025013088256,"id_str":"663498025013088256","text":"The only problem is it's heart banging now. Twitter we have no souls, leave the emotions pit of this","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324278793,"id_str":"324278793","name":"Sinderella","screen_name":"brandie_lou","location":null,"url":null,"description":"Beautiful disaster, brilliant smartass, lover of anything funny. New Orleans Saints fan, Alabama football girl, whiskey drinker, Disney princess connoisseur","protected":false,"verified":false,"followers_count":498,"friends_count":822,"listed_count":12,"favourites_count":659,"statuses_count":1445,"created_at":"Sun Jun 26 09:38:56 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F9FDB8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/278088814\/x04d210542ff70c7e6af083e853e3c80.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/278088814\/x04d210542ff70c7e6af083e853e3c80.png","profile_background_tile":true,"profile_link_color":"F9AC91","profile_sidebar_border_color":"4F4C2D","profile_sidebar_fill_color":"FF4173","profile_text_color":"F8DAAE","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640050013352140800\/G4CQLeGP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640050013352140800\/G4CQLeGP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324278793\/1441653656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brandie_lou","name":"Sinderella","id":324278793,"id_str":"324278793","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730855424,"id_str":"663727900730855424","text":"\u771f\u9762\u76ee\u30c8\u30fc\u30af\u306b\u5f8c\u6094\u3082\u3051\u3051\ud83d\udc7e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":924971982,"id_str":"924971982","name":"yurie","screen_name":"yre1125","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":485,"friends_count":362,"listed_count":0,"favourites_count":1924,"statuses_count":6082,"created_at":"Sun Nov 04 09:06:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634693537418711040\/FW-p6uyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634693537418711040\/FW-p6uyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/924971982\/1446986728","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756045826,"id_str":"663727900756045826","text":"@pkmn_danchi @ckckckckck913 @migijo_yasu \u3046\u3093\u3061\u3054\u3063\u3053\u306f\u3057\u307e\u305b\u3093\u3088\u2026\u2026\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727828525944832,"in_reply_to_status_id_str":"663727828525944832","in_reply_to_user_id":552633246,"in_reply_to_user_id_str":"552633246","in_reply_to_screen_name":"pkmn_danchi","user":{"id":3099237746,"id_str":"3099237746","name":"\u7af9\u8f2a\u90e8","screen_name":"chikuwabu_iop","location":"2.5\u6b21\u5143","url":null,"description":"\u53f3\u627f\u306b\u98e2\u3048\u308b\u8150\u5973\u5b50\npixivID\u2192 5772783","protected":false,"verified":false,"followers_count":16,"friends_count":16,"listed_count":1,"favourites_count":2964,"statuses_count":1297,"created_at":"Fri Mar 20 08:48:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663487940157247488\/EZx_-QjU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663487940157247488\/EZx_-QjU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3099237746\/1444049290","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pkmn_danchi","name":"\u304b\u305f\u3064\u3080\u308a\u56e3\u5730@GBW10","id":552633246,"id_str":"552633246","indices":[0,12]},{"screen_name":"ckckckckck913","name":"\u30ea\u30af\u30fc\u30e0(rqm)","id":423534291,"id_str":"423534291","indices":[13,27]},{"screen_name":"migijo_yasu","name":"\u30e4\u30b9","id":921213882,"id_str":"921213882","indices":[28,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760260608,"id_str":"663727900760260608","text":"@IkqwanAzmi kenal ke?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727245391851521,"in_reply_to_status_id_str":"663727245391851521","in_reply_to_user_id":260192283,"in_reply_to_user_id_str":"260192283","in_reply_to_screen_name":"IkqwanAzmi","user":{"id":310189212,"id_str":"310189212","name":"aeb","screen_name":"aribwan","location":"Han's ","url":"http:\/\/www.instagram.com\/aribwan","description":"WeChat ID: aribwan","protected":false,"verified":false,"followers_count":3676,"friends_count":969,"listed_count":7,"favourites_count":10277,"statuses_count":105037,"created_at":"Fri Jun 03 10:15:13 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640429735\/xf0b19b80baa335754ecfe55df61f4f4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640429735\/xf0b19b80baa335754ecfe55df61f4f4.jpg","profile_background_tile":false,"profile_link_color":"377307","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0D0806","profile_text_color":"544C45","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662736334079946752\/w-n33Lgr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662736334079946752\/w-n33Lgr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310189212\/1446714335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IkqwanAzmi","name":"ikqwan","id":260192283,"id_str":"260192283","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756045825,"id_str":"663727900756045825","text":"@Nadiyahxoxo \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/nCUTKbyydD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":347287662,"in_reply_to_user_id_str":"347287662","in_reply_to_screen_name":"Nadiyahxoxo","user":{"id":369975230,"id_str":"369975230","name":"Hanna Marin's","screen_name":"aidiswift13","location":"breakfast club \/ Singapore","url":"http:\/\/taylorswift.com","description":"i set my expectations high so nothing ever comes out right \/\/ NP \/\/ ig: aidiswift13","protected":false,"verified":false,"followers_count":531,"friends_count":437,"listed_count":4,"favourites_count":23333,"statuses_count":40336,"created_at":"Thu Sep 08 07:57:08 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F53B2E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629055340\/ycag0mzil4q3oabrsd8m.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629055340\/ycag0mzil4q3oabrsd8m.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"170F16","profile_sidebar_fill_color":"FCE1C0","profile_text_color":"804517","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641276105337339905\/PZw4nfXH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641276105337339905\/PZw4nfXH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369975230\/1410083184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663675256758861824,"quoted_status_id_str":"663675256758861824","quoted_status":{"created_at":"Mon Nov 09 11:11:26 +0000 2015","id":663675256758861824,"id_str":"663675256758861824","text":"My few minutes with @taylorswift13 <3 thanks to @universalmusg for hooking this up! <3 https:\/\/t.co\/6vovagP0L3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251828655,"id_str":"1251828655","name":"Dee Kosh","screen_name":"TheDeeKosh","location":"Singapore","url":"http:\/\/youtube.com\/sweetestkind","description":"Youtuber, @Power98 big mouth, Music Dependant, Realist and Human Being Contact : deekosh@gmail.com","protected":false,"verified":false,"followers_count":56310,"friends_count":444,"listed_count":92,"favourites_count":109,"statuses_count":42831,"created_at":"Fri Mar 08 14:06:22 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570561762627448832\/sKZ7SYPb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570561762627448832\/sKZ7SYPb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251828655\/1424869058","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taylorswift13","name":"Taylor Swift","id":17919972,"id_str":"17919972","indices":[20,34]},{"screen_name":"universalmusg","name":"Universal Music SG","id":90345374,"id_str":"90345374","indices":[51,65]}],"symbols":[],"media":[{"id":663675225037369344,"id_str":"663675225037369344","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZGdKUcAAIGBY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZGdKUcAAIGBY.jpg","url":"https:\/\/t.co\/6vovagP0L3","display_url":"pic.twitter.com\/6vovagP0L3","expanded_url":"http:\/\/twitter.com\/TheDeeKosh\/status\/663675256758861824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":307,"resize":"fit"},"large":{"w":1024,"h":926,"resize":"fit"},"medium":{"w":600,"h":542,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663675225037369344,"id_str":"663675225037369344","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZGdKUcAAIGBY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZGdKUcAAIGBY.jpg","url":"https:\/\/t.co\/6vovagP0L3","display_url":"pic.twitter.com\/6vovagP0L3","expanded_url":"http:\/\/twitter.com\/TheDeeKosh\/status\/663675256758861824\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":307,"resize":"fit"},"large":{"w":1024,"h":926,"resize":"fit"},"medium":{"w":600,"h":542,"resize":"fit"}}},{"id":663675225054167040,"id_str":"663675225054167040","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZGdOUwAACHK7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZGdOUwAACHK7.jpg","url":"https:\/\/t.co\/6vovagP0L3","display_url":"pic.twitter.com\/6vovagP0L3","expanded_url":"http:\/\/twitter.com\/TheDeeKosh\/status\/663675256758861824\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nCUTKbyydD","expanded_url":"https:\/\/twitter.com\/TheDeeKosh\/status\/663675256758861824","display_url":"twitter.com\/TheDeeKosh\/sta\u2026","indices":[20,43]}],"user_mentions":[{"screen_name":"Nadiyahxoxo","name":"nadiyah","id":347287662,"id_str":"347287662","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747788288,"id_str":"663727900747788288","text":"RT @ddlovato: BREAKFAST BURRITO #AskDemi https:\/\/t.co\/xIwSU0jP4Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267753522,"id_str":"2267753522","name":"Emeline \u262e","screen_name":"SelenaEmeline","location":"France, Francia","url":"http:\/\/bit.ly\/ThisIsNotAnEP","description":"\u2764\ufe0fSelenator, TeamTal, Tiffanies, KatyCat, Romy M, #Auviteam, Gad, Maude, Sindy\u2764Dates: 23\/04\/14, 17\/02\/15, 13 & 14\/08\/15 Justine, Lina et Romain","protected":false,"verified":false,"followers_count":951,"friends_count":725,"listed_count":6,"favourites_count":4490,"statuses_count":27212,"created_at":"Sun Dec 29 18:36:46 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685886262030336\/2ORv7fhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685886262030336\/2ORv7fhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267753522\/1441538196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:11:07 +0000 2015","id":663690276721074177,"id_str":"663690276721074177","text":"BREAKFAST BURRITO #AskDemi https:\/\/t.co\/xIwSU0jP4Y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672550,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687182591242240,"quoted_status_id_str":"663687182591242240","quoted_status":{"created_at":"Mon Nov 09 11:58:49 +0000 2015","id":663687182591242240,"id_str":"663687182591242240","text":"@ddlovato favorite breakfast food?! #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":2696783630,"id_str":"2696783630","name":"THANK YOU DEMI ILY","screen_name":"true_lovaticc","location":null,"url":"https:\/\/twitter.com\/ddlovato\/status\/565322300124577793","description":"love yourself. || ready to see my girl 6.29.16 & 9.7.16 :))) https:\/\/twitter.com\/ddlovato\/status\/663690276721074177","protected":false,"verified":false,"followers_count":1229,"friends_count":1531,"listed_count":5,"favourites_count":11820,"statuses_count":16223,"created_at":"Thu Jul 31 22:52:11 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662609242248093696\/-0X_4Gnh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662609242248093696\/-0X_4Gnh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2696783630\/1446813328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[36,44]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1620,"favorite_count":3169,"entities":{"hashtags":[{"text":"AskDemi","indices":[18,26]}],"urls":[{"url":"https:\/\/t.co\/xIwSU0jP4Y","expanded_url":"https:\/\/twitter.com\/true_lovaticc\/status\/663687182591242240","display_url":"twitter.com\/true_lovaticc\/\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[32,40]}],"urls":[{"url":"https:\/\/t.co\/xIwSU0jP4Y","expanded_url":"https:\/\/twitter.com\/true_lovaticc\/status\/663687182591242240","display_url":"twitter.com\/true_lovaticc\/\u2026","indices":[41,64]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037663"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900731002880,"id_str":"663727900731002880","text":"oi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2199655327,"id_str":"2199655327","name":"carls","screen_name":"sweetharryangel","location":"luli \u2022 triz","url":null,"description":"i can see your wings, H.","protected":false,"verified":false,"followers_count":5335,"friends_count":4526,"listed_count":13,"favourites_count":6189,"statuses_count":51344,"created_at":"Sun Nov 17 14:55:10 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535051911255179265\/hrW45n3s.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535051911255179265\/hrW45n3s.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663561039657742336\/DgV0BdXG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663561039657742336\/DgV0BdXG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199655327\/1447040059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900760215552,"id_str":"663727900760215552","text":"RT @sd_bt: \u3010\u4eca\u65e5\u306e\u8d85\u7279\u6025\u2461\u3011\n\u660e\u65e5\u304b\u3089\u307e\u305f\u7d20\u6575\u306a1\u9031\u9593\u3092\u25e1\u0308\u20dd\ufe0e\u22c6\ufe0e* https:\/\/t.co\/CbIpikK8Os","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187814149,"id_str":"3187814149","name":"\u30cf\u30eb@\u30b5\u30d6\u30ab\u30eb\u30af\u30bd\u30de\u30c3\u30b7\u30e5\u91ce\u90ce","screen_name":"haru__naoya","location":"\u7fa4\u99ac\u770c \u4e2d\u4e4b\u6761\u753a","url":null,"description":"\u9ad8\u6821\uff12\u5e74\u751f\u2661\u821e\u53f0\u4ff3\u512a\u2661\u6c34\u77f3\u4e9c\u98db\u5922\/\u5c0f\u8d8a\u52c7\u8f1d\/\u5bae\u5d0e\u79cb\u4eba\/\u677e\u7530\u51cc\/\u6a4b\u672c\u7965\u5e73\/\u5bcc\u7530\u5065\u592a\u90ce\/etc\u2026 \u58f0\u512a\u2661\u5bfa\u5cf6\u62d3\u7be4\/\u795e\u8c37\u6d69\u53f2\/\u5897\u7530\u4fca\u6a39\/\u6728\u6751\u826f\u5e73\/\u5bae\u91ce\u771f\u5b88\/\u9234\u6728\u9054\u592e\/etc\u2026 D2\u2661\u963f\u4e45\u6d25\u613c\u592a\u90ce\/\u8fd1\u6c5f\u967d\u4e00\u90ce\/\u6961\u6728\u76f4\u4e5f\/etc\u2026 \u3086\u308a\u306b\u3083\u304c\u597d\u304d\u3067\u3059\u2661\u306b\u3083\u6c11\u65cf\u2661","protected":false,"verified":false,"followers_count":493,"friends_count":651,"listed_count":3,"favourites_count":1284,"statuses_count":1131,"created_at":"Thu May 07 14:12:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661952860540657664\/YJu_1h_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661952860540657664\/YJu_1h_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187814149\/1441528594","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:08:48 +0000 2015","id":663357504407998464,"id_str":"663357504407998464","text":"\u3010\u4eca\u65e5\u306e\u8d85\u7279\u6025\u2461\u3011\n\u660e\u65e5\u304b\u3089\u307e\u305f\u7d20\u6575\u306a1\u9031\u9593\u3092\u25e1\u0308\u20dd\ufe0e\u22c6\ufe0e* https:\/\/t.co\/CbIpikK8Os","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830604613,"id_str":"830604613","name":"\u8d85\u7279\u6025 OFFICIAL STAFF","screen_name":"sd_bt","location":null,"url":"http:\/\/bullettrain.jp\/","description":"\u53f2\u4e0a\u521d\uff01\u30e1\u30a4\u30f3\u30c0\u30f3\u30b5\u30fc&\u30d0\u30c3\u30af\u30dc\u30fc\u30ab\u30eb\u30b0\u30eb\u30fc\u30d7\u3002\u30b7\u30f3\u30b0\u30eb\uff06\u30a2\u30eb\u30d0\u30e09\u4f5c\u54c1\u9023\u7d9a\u30aa\u30ea\u30b3\u30f3\u30a6\u30a3\u30fc\u30af\u30ea\u30c1\u30e3\u30fc\u30c8TOP10\u5165\u308a\u3002 12\u670823\u65e524\u65e5\u306b\u56fd\u7acb\u4ee3\u3005\u6728\u7af6\u6280\u5834\u7b2c\u4e00\u4f53\u80b2\u9928\u306b\u30662DAYS\u5358\u72ec\u30e9\u30a4\u30d6\u3092\u958b\u50ac\uff019\/9\u767a\u58f2Sg\u300cBeautiful Chaser\u300d\u30aa\u30ea\u30b3\u30f3\u30c1\u30e3\u30fc\u30c82\u4f4d\uff01LINE ID: bullettrain","protected":false,"verified":false,"followers_count":61630,"friends_count":54,"listed_count":734,"favourites_count":4,"statuses_count":14418,"created_at":"Tue Sep 18 08:17:12 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663396601\/vyo1bx2c8j2gbxx523e6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663396601\/vyo1bx2c8j2gbxx523e6.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655394756713840641\/P_LIcb9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655394756713840641\/P_LIcb9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830604613\/1445093271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1590,"favorite_count":4723,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663357419859263488,"id_str":"663357419859263488","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","url":"https:\/\/t.co\/CbIpikK8Os","display_url":"pic.twitter.com\/CbIpikK8Os","expanded_url":"http:\/\/twitter.com\/sd_bt\/status\/663357504407998464\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663357419859263488,"id_str":"663357419859263488","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","url":"https:\/\/t.co\/CbIpikK8Os","display_url":"pic.twitter.com\/CbIpikK8Os","expanded_url":"http:\/\/twitter.com\/sd_bt\/status\/663357504407998464\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":11204,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/360x640\/4rRoq51S9yE5G8B0.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/360x640\/4rRoq51S9yE5G8B0.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/180x320\/x0I9e4YAi_kJSkpu.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/720x1280\/maCrG3JX4bsinasU.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/pl\/bzt-hKNm8aS38N8u.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/pl\/bzt-hKNm8aS38N8u.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sd_bt","name":"\u8d85\u7279\u6025 OFFICIAL STAFF","id":830604613,"id_str":"830604613","indices":[3,9]}],"symbols":[],"media":[{"id":663357419859263488,"id_str":"663357419859263488","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","url":"https:\/\/t.co\/CbIpikK8Os","display_url":"pic.twitter.com\/CbIpikK8Os","expanded_url":"http:\/\/twitter.com\/sd_bt\/status\/663357504407998464\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663357504407998464,"source_status_id_str":"663357504407998464","source_user_id":830604613,"source_user_id_str":"830604613"}]},"extended_entities":{"media":[{"id":663357419859263488,"id_str":"663357419859263488","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663357419859263488\/pu\/img\/tEYBM3d5UGMrQAYw.jpg","url":"https:\/\/t.co\/CbIpikK8Os","display_url":"pic.twitter.com\/CbIpikK8Os","expanded_url":"http:\/\/twitter.com\/sd_bt\/status\/663357504407998464\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663357504407998464,"source_status_id_str":"663357504407998464","source_user_id":830604613,"source_user_id_str":"830604613","video_info":{"aspect_ratio":[9,16],"duration_millis":11204,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/360x640\/4rRoq51S9yE5G8B0.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/360x640\/4rRoq51S9yE5G8B0.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/180x320\/x0I9e4YAi_kJSkpu.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/vid\/720x1280\/maCrG3JX4bsinasU.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/pl\/bzt-hKNm8aS38N8u.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663357419859263488\/pu\/pl\/bzt-hKNm8aS38N8u.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037666"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900726718470,"id_str":"663727900726718470","text":"RT @garupan: \u3010\u516c\u5f0f\u30d6\u30ed\u30b0\u66f4\u65b0\u3011\u5287\u5834\u7248\u767b\u5834\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u3092\u66f4\u65b0\uff01\u77e5\u6ce2\u5358\u5b66\u5712\u306e\u7d30\u898b\uff08CV\uff1a\u4e03\u702c\u4e9c\u6df1\u3055\u3093\uff09\u3092\u516c\u958b\uff01\u3059\u3067\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u672c\u4e88\u544a\u6620\u50cf\u306b\u3082\u767b\u5834\u3057\u3066\u304a\u308a\u307e\u3059\uff01 https:\/\/t.co\/g5XhPZhv03 #garupan https:\/\/t.co\/b0Qpow\u2026","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126648140,"id_str":"126648140","name":"\u3080\u3055\u3057\uff20C89\u4e00\u65e5\u76ee\u706b\u6771\u30bd\uff11\uff15A","screen_name":"musasi_kudubosi","location":"\u6f5c\u4f0f\u4e2d","url":"http:\/\/kuduboshi.blog114.fc2.com\/","description":"\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u300c\u5c51\u2606\u661f\u300d\u306e\u4e3b\u3002\u30ac\u30eb\u30d1\u30f3\u4e2d\u5fc3\u306b\u6d3b\u52d5\u3002\u897f\u4f4f\u79cb\u5c71\u3001\u5927\u6d17\u672c\u306a\u3069\u3002\u6b21\u56de\u53c2\u52a0\u30a4\u30d9\u30f3\u30c8\u306f\u53d7\u304b\u308c\u3070\u51ac\u30b3\u30df\u3002\u65b0\u520a\u306f\u30a2\u30ea\u30af\u30a4\u3055\u3093\u30c1\u30fc\u30e0\u672c\u3002\u65e2\u520a\u306f\u6c99\u8036\u306e\u5504\u00d7\u307e\u3069\u304b\u30de\u30ae\u30ab\u672c\u300c\u3055\u3084\u306e\u5504\u300d\u3002\u9b3c\u54ed\u8857\u00d7\u307e\u3069\u304b\u30de\u30ae\u30ab\u306a\u3069\u3002\u545f\u304d\u50be\u5411\u306f\u30a2\u30cb\u30e1\u306e\u611f\u60f3\u3068\u5b9f\u6cc1\u3002\u5e73\u65e5\u591c\u3068\u571f\u65e5\u306b\u96c6\u4e2d\u3002\u6c17\u306f\u512a\u3057\u304f\u3066\u982d\u304c\u60aa\u3044\u3002\u732b\u306b\u5f31\u3044","protected":false,"verified":false,"followers_count":389,"friends_count":284,"listed_count":25,"favourites_count":9335,"statuses_count":60922,"created_at":"Fri Mar 26 14:59:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639111194305888256\/uZCJtlj3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639111194305888256\/uZCJtlj3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126648140\/1441036114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:46:58 +0000 2015","id":663684201695199232,"id_str":"663684201695199232","text":"\u3010\u516c\u5f0f\u30d6\u30ed\u30b0\u66f4\u65b0\u3011\u5287\u5834\u7248\u767b\u5834\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u3092\u66f4\u65b0\uff01\u77e5\u6ce2\u5358\u5b66\u5712\u306e\u7d30\u898b\uff08CV\uff1a\u4e03\u702c\u4e9c\u6df1\u3055\u3093\uff09\u3092\u516c\u958b\uff01\u3059\u3067\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u672c\u4e88\u544a\u6620\u50cf\u306b\u3082\u767b\u5834\u3057\u3066\u304a\u308a\u307e\u3059\uff01 https:\/\/t.co\/g5XhPZhv03 #garupan https:\/\/t.co\/b0Qpow4PH5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":580916046,"id_str":"580916046","name":"\u300c\u30ac\u30fc\u30eb\u30ba\uff06\u30d1\u30f3\u30c4\u30a1\u30fc\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","screen_name":"garupan","location":"\u8328\u57ce\u770c\u5927\u6d17\u753a","url":"http:\/\/girls-und-panzer.jp\/","description":"\u300c\u30ac\u30fc\u30eb\u30ba\uff06\u30d1\u30f3\u30c4\u30a1\u30fc \u5287\u5834\u7248\u300d11\u670821\u65e5\u5168\u56fd\u516c\u958b\uff01\u7b2c3\u5f3e\u524d\u58f2\u308a\u5238\u304c\u3001\u4e0a\u6620\u5287\u5834\u306b\u3066\u767a\u58f2\u4e2d\uff0111\u6708\u306f\u30cb\u30b3\u751f\u4e00\u6319\u3001\u3042\u3093\u3053\u3046\u796d\u3001\u30d7\u30ec\u30df\u30a2\u5148\u884c\u4e0a\u6620\u30a4\u30d9\u30f3\u30c8\u3001\u5287\u5834\u7248\u4e0a\u6620\u3068\u76db\u308a\u6ca2\u5c71\uff01\u30d1\u30f3\u30c4\u30a1\u30fc\u30fb\u30d5\u30a9\u30fc\uff01","protected":false,"verified":false,"followers_count":68227,"friends_count":102,"listed_count":2480,"favourites_count":15,"statuses_count":12836,"created_at":"Tue May 15 12:15:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2668314121\/e509603377f26aa2ae7cb1fe95103f7c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2668314121\/e509603377f26aa2ae7cb1fe95103f7c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":153,"entities":{"hashtags":[{"text":"garupan","indices":[98,106]}],"urls":[{"url":"https:\/\/t.co\/g5XhPZhv03","expanded_url":"http:\/\/girls-und-panzer.at.webry.info\/201511\/article_8.html","display_url":"girls-und-panzer.at.webry.info\/201511\/article\u2026","indices":[74,97]}],"user_mentions":[],"symbols":[],"media":[{"id":663684198809538561,"id_str":"663684198809538561","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","url":"https:\/\/t.co\/b0Qpow4PH5","display_url":"pic.twitter.com\/b0Qpow4PH5","expanded_url":"http:\/\/twitter.com\/garupan\/status\/663684201695199232\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":700,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663684198809538561,"id_str":"663684198809538561","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","url":"https:\/\/t.co\/b0Qpow4PH5","display_url":"pic.twitter.com\/b0Qpow4PH5","expanded_url":"http:\/\/twitter.com\/garupan\/status\/663684201695199232\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":700,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"garupan","indices":[111,119]}],"urls":[{"url":"https:\/\/t.co\/g5XhPZhv03","expanded_url":"http:\/\/girls-und-panzer.at.webry.info\/201511\/article_8.html","display_url":"girls-und-panzer.at.webry.info\/201511\/article\u2026","indices":[87,110]}],"user_mentions":[{"screen_name":"garupan","name":"\u300c\u30ac\u30fc\u30eb\u30ba\uff06\u30d1\u30f3\u30c4\u30a1\u30fc\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","id":580916046,"id_str":"580916046","indices":[3,11]}],"symbols":[],"media":[{"id":663684198809538561,"id_str":"663684198809538561","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","url":"https:\/\/t.co\/b0Qpow4PH5","display_url":"pic.twitter.com\/b0Qpow4PH5","expanded_url":"http:\/\/twitter.com\/garupan\/status\/663684201695199232\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":700,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663684201695199232,"source_status_id_str":"663684201695199232","source_user_id":580916046,"source_user_id_str":"580916046"}]},"extended_entities":{"media":[{"id":663684198809538561,"id_str":"663684198809538561","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhQzEVEAEvwp6.jpg","url":"https:\/\/t.co\/b0Qpow4PH5","display_url":"pic.twitter.com\/b0Qpow4PH5","expanded_url":"http:\/\/twitter.com\/garupan\/status\/663684201695199232\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":700,"resize":"fit"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663684201695199232,"source_status_id_str":"663684201695199232","source_user_id":580916046,"source_user_id_str":"580916046"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037658"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900730875904,"id_str":"663727900730875904","text":"Wallpaper sa CP, Laptop,Lockscreen naay picture sa id, sa wallet, akoa lang jud lagi ka :D","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197252478,"id_str":"3197252478","name":"timomoy","screen_name":"HeeeyTimmmy","location":"Davao City, Matina Aplaya ","url":"http:\/\/facebook.com\/Hackerintheroom","description":"\u274cHappily In love with Dominique Clarabal\u2764\u274cMusic Lover\u274cSkateboarder\u274cFreelance Photographer\u274c IT student \n\u274ctry to touch my gf and ill stab u until u die\u274c","protected":false,"verified":false,"followers_count":48,"friends_count":67,"listed_count":1,"favourites_count":441,"statuses_count":371,"created_at":"Sat May 16 10:56:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640002308063911937\/neRiyNuc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640002308063911937\/neRiyNuc.jpg","profile_background_tile":true,"profile_link_color":"808080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663009298490900480\/CEhaAz3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663009298490900480\/CEhaAz3-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3197252478\/1446908706","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080037659"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900756045824,"id_str":"663727900756045824","text":"Patient moves back to Calgary after being moved 130 km Away https:\/\/t.co\/LTrOQ0xSN4","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2458573568,"id_str":"2458573568","name":"Calgary News Review","screen_name":"Calgary_Review","location":"Calgary, AB, Canada","url":"http:\/\/calgarynewsreview.com","description":"News, Events and Information","protected":false,"verified":false,"followers_count":6,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":10650,"created_at":"Tue Apr 22 20:00:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469860512033824768\/H_CW9C2z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469860512033824768\/H_CW9C2z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2458573568\/1400858510","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LTrOQ0xSN4","expanded_url":"http:\/\/calgarynewsreview.com\/?p=8301","display_url":"calgarynewsreview.com\/?p=8301","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080037665"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900751847424,"id_str":"663727900751847424","text":"@blue_soradori \u8ab2\u91d1\u30b3\u30fc\u30b9\u306e\u8f38\u51fa\u5f85\u3063\u305f\u306a\u3057\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726945356550145,"in_reply_to_status_id_str":"663726945356550145","in_reply_to_user_id":592329810,"in_reply_to_user_id_str":"592329810","in_reply_to_screen_name":"blue_soradori","user":{"id":97638929,"id_str":"97638929","name":"\u30b7\u30e7\u30a6","screen_name":"syosyo00","location":null,"url":null,"description":"\u30c7\u30a3\u30ba\u30cb\u30fc\u30d5\u30c3\u30c8\u30b5\u30eb\u30b9\u30ce\u30dc\u30b2\u30fc\u30e0\u304a\u3058\u3055\u3093","protected":false,"verified":false,"followers_count":2167,"friends_count":2025,"listed_count":97,"favourites_count":14,"statuses_count":52913,"created_at":"Fri Dec 18 10:37:58 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535599206\/26554573.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535599206\/26554573.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606865652532416514\/_kSkq9O1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606865652532416514\/_kSkq9O1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97638929\/1433523488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blue_soradori","name":"\u2514\u2518\u7a7a-\u9ce5\u250c\u2510\u2122","id":592329810,"id_str":"592329810","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037664"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900735082496,"id_str":"663727900735082496","text":"@arashi_19330606 \u3059\u307f\u307e\u305b\u3093\ud83d\ude25\n\u3053\u308c\u304b\u3089\u3082\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663379116318560257,"in_reply_to_status_id_str":"663379116318560257","in_reply_to_user_id":2875362064,"in_reply_to_user_id_str":"2875362064","in_reply_to_screen_name":"arashi_19330606","user":{"id":3160903668,"id_str":"3160903668","name":"\u3055\u304f\u3089\u3093\u3002\u3010\u798f\u5ca117\u65e5\u53c2\u6226\u3011","screen_name":"arashi_saku_","location":"\u6afb\u4e95\u306e\u5de6 \u4e8c\u5bae\u306e\u53f3 \u78c1\u77f3\u306e\u9593\u2190","url":"http:\/\/twpf.jp\/arashi_saku_","description":"\u6afb\u4e95\u7fd4\u304f\u3093\u2721.*2009.\u3042\u306a\u305f\u3092\u59cb\u3081\u3066\u898b\u305f\u5e74\u3002\u60da\u308c\u307e\u3057\u305f\u3002\u25e1\u0308\u2665\ufe0e \u57fa\u672c\u3001\u6afb\u4e95\u547c\u3073\u3002\u8cb6\u3059\u306e\u306f\u611b\u3057\u3066\u308b\u8a3c\u62e0(\uff40\uff653\uff65\u00b4) \u6642\u3005\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u3057\u3066\u307e\u3059\u3002 \u56db\u9023\u6240\u6301:\u7518\u611b\u6afb\u4e95\u30fb\u7518\u7f8e\u7fd4\u541b \u639b\u3051\u6301\u3061\u3002JUMP\u57a2\u2192@rankota01311 \u30c4\u30a4\u30d7\u30ed\u898b\u3066\u306dNext\u2192Japonism 12\/17","protected":false,"verified":false,"followers_count":785,"friends_count":464,"listed_count":41,"favourites_count":1670,"statuses_count":6757,"created_at":"Fri Apr 17 11:35:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661358630717947906\/KQj-ruCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661358630717947906\/KQj-ruCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3160903668\/1446392403","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arashi_19330606","name":"hono(*\u00b4\u30fb\u2200\u30fb`)","id":2875362064,"id_str":"2875362064","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037660"} +{"delete":{"status":{"id":663722100000227328,"id_str":"663722100000227328","user_id":169649103,"user_id_str":"169649103"},"timestamp_ms":"1447080037870"}} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900739411968,"id_str":"663727900739411968","text":"\ud83d\ude34\ud83d\ude34\ud83d\ude34\ud83d\ude34\ud83d\udc96\ud83d\udc96\ud83d\udc96\ud83d\udc96 https:\/\/t.co\/ko8x2pFYK2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4046486662,"id_str":"4046486662","name":"one_Vamps_sos_navy","screen_name":"Navy_soni_ces","location":null,"url":null,"description":"the Vamps\n1D\nwattpad- soni_cesing\ngirl","protected":false,"verified":false,"followers_count":5,"friends_count":27,"listed_count":0,"favourites_count":7,"statuses_count":8,"created_at":"Mon Oct 26 13:28:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663441784706609153\/CKBP_ma8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663441784706609153\/CKBP_ma8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4046486662\/1447011820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727828488208384,"id_str":"663727828488208384","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8YSUwAAtMTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8YSUwAAtMTb.jpg","url":"https:\/\/t.co\/ko8x2pFYK2","display_url":"pic.twitter.com\/ko8x2pFYK2","expanded_url":"http:\/\/twitter.com\/Navy_soni_ces\/status\/663727900739411968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":594,"resize":"fit"},"large":{"w":500,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727828488208384,"id_str":"663727828488208384","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8YSUwAAtMTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8YSUwAAtMTb.jpg","url":"https:\/\/t.co\/ko8x2pFYK2","display_url":"pic.twitter.com\/ko8x2pFYK2","expanded_url":"http:\/\/twitter.com\/Navy_soni_ces\/status\/663727900739411968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":594,"resize":"fit"},"large":{"w":500,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080037661"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900726661120,"id_str":"663727900726661120","text":"\u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3\u9b45\u529b\u7684\u3060\u3063\u305f\u2728 https:\/\/t.co\/EGuMFqzh8r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1253617484,"id_str":"1253617484","name":"hana","screen_name":"hengyo_babaa","location":null,"url":null,"description":"\u6df1\u6ca23-5 \u6709\u8a00\u5b9f\u884c\uff01\uff01\u2661\u30a2\u30a4\u30b9\u30af\u30ea\u30fc\u30e0\u2661","protected":false,"verified":false,"followers_count":289,"friends_count":195,"listed_count":2,"favourites_count":2262,"statuses_count":2911,"created_at":"Sat Mar 09 06:48:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620963520666939394\/vPQ3PcIS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620963520666939394\/vPQ3PcIS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253617484\/1430234134","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727894225510400,"id_str":"663727894225510400","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJANLUYAAqxwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJANLUYAAqxwJ.jpg","url":"https:\/\/t.co\/EGuMFqzh8r","display_url":"pic.twitter.com\/EGuMFqzh8r","expanded_url":"http:\/\/twitter.com\/hengyo_babaa\/status\/663727900726661120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":856,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727894225510400,"id_str":"663727894225510400","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJANLUYAAqxwJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJANLUYAAqxwJ.jpg","url":"https:\/\/t.co\/EGuMFqzh8r","display_url":"pic.twitter.com\/EGuMFqzh8r","expanded_url":"http:\/\/twitter.com\/hengyo_babaa\/status\/663727900726661120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":856,"resize":"fit"},"small":{"w":340,"h":284,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037658"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900739264512,"id_str":"663727900739264512","text":"\u3010\u30a6\u30c1\u59eb\u3011\u7be0\u30ce\u4e4b \u7b92\u304cLV90\u3001\u611b\u60c5\u5ea6max\u306b\u306a\u3063\u305f\u3088\uff01\uff01\n\u62db\u5f85\u30b3\u30fc\u30c9[3156-8013]\u3092\u5165\u308c\u3066\u3001\u8c6a\u83ef\u30d7\u30ec\u30bc\u30f3\u30c8\u3092\u3082\u3089\u304a\u3046\uff01DL\u306f\u3053\u3061\u3089\u2192 https:\/\/t.co\/Csm5TgB5KF #\u30a6\u30c1\u59eb_\u30b7\u30a7\u30a2 https:\/\/t.co\/2k43k8S6Gu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2927071795,"id_str":"2927071795","name":"\u3050\u308a\u3075\u3043\u3059","screen_name":"kentgreenfields","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":402,"created_at":"Thu Dec 11 16:54:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a6\u30c1\u59eb_\u30b7\u30a7\u30a2","indices":[96,104]}],"urls":[{"url":"https:\/\/t.co\/Csm5TgB5KF","expanded_url":"http:\/\/bit.ly\/uchihimem","display_url":"bit.ly\/uchihimem","indices":[72,95]}],"user_mentions":[],"symbols":[],"media":[{"id":663727900558909440,"id_str":"663727900558909440","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAkxUYAA4WhW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAkxUYAA4WhW.jpg","url":"https:\/\/t.co\/2k43k8S6Gu","display_url":"pic.twitter.com\/2k43k8S6Gu","expanded_url":"http:\/\/twitter.com\/kentgreenfields\/status\/663727900739264512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727900558909440,"id_str":"663727900558909440","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAkxUYAA4WhW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAkxUYAA4WhW.jpg","url":"https:\/\/t.co\/2k43k8S6Gu","display_url":"pic.twitter.com\/2k43k8S6Gu","expanded_url":"http:\/\/twitter.com\/kentgreenfields\/status\/663727900739264512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080037661"} +{"delete":{"status":{"id":533639033025347585,"id_str":"533639033025347585","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080038100"}} +{"delete":{"status":{"id":341548642362085376,"id_str":"341548642362085376","user_id":871444819,"user_id_str":"871444819"},"timestamp_ms":"1447080038148"}} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900743614465,"id_str":"663727900743614465","text":"Somos el mejor pa\u00eds del mundo! https:\/\/t.co\/qqfVucw9md","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304193843,"id_str":"3304193843","name":"Eze","screen_name":"EnrizEze","location":null,"url":null,"description":"las minitas aman a los payasos y la pasta de campe\u00f3n\n\nQue sea rock\/\/ Ser Forro mi mayor cualidad\/\/Acuario\/\/Hincha de River Plate","protected":false,"verified":false,"followers_count":198,"friends_count":183,"listed_count":1,"favourites_count":261,"statuses_count":11096,"created_at":"Sat May 30 23:47:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605084741772165120\/xB6U90rF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605084741772165120\/xB6U90rF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304193843\/1446143489","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727872474021888,"id_str":"663727872474021888","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-8JXAAA6OWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-8JXAAA6OWN.jpg","url":"https:\/\/t.co\/qqfVucw9md","display_url":"pic.twitter.com\/qqfVucw9md","expanded_url":"http:\/\/twitter.com\/EnrizEze\/status\/663727900743614465\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727872474021888,"id_str":"663727872474021888","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-8JXAAA6OWN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-8JXAAA6OWN.jpg","url":"https:\/\/t.co\/qqfVucw9md","display_url":"pic.twitter.com\/qqfVucw9md","expanded_url":"http:\/\/twitter.com\/EnrizEze\/status\/663727900743614465\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080037662"} +{"created_at":"Mon Nov 09 14:40:37 +0000 2015","id":663727900747698176,"id_str":"663727900747698176","text":"Edisi teh @aytingnew92 and bilqis https:\/\/t.co\/6orgFfFR88","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":490353174,"id_str":"490353174","name":"AELS","screen_name":"nisamanjuntak","location":"Tangerang","url":null,"description":"\u2665Jesus \u2665Mama \u2665Mawar \u2665Rio Palmart || 18thn || Kristen Protestan || Multimedia || Medan-Belgia || 18 februari 97","protected":false,"verified":false,"followers_count":95,"friends_count":247,"listed_count":0,"favourites_count":11,"statuses_count":524,"created_at":"Sun Feb 12 13:37:34 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648330149067227136\/j31X7and_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648330149067227136\/j31X7and_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490353174\/1440722150","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aytingnew92","name":"Rose","id":3283231038,"id_str":"3283231038","indices":[10,22]}],"symbols":[],"media":[{"id":663727832565022720,"id_str":"663727832565022720","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8neUAAAMx4U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8neUAAAMx4U.jpg","url":"https:\/\/t.co\/6orgFfFR88","display_url":"pic.twitter.com\/6orgFfFR88","expanded_url":"http:\/\/twitter.com\/nisamanjuntak\/status\/663727900747698176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727832565022720,"id_str":"663727832565022720","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8neUAAAMx4U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8neUAAAMx4U.jpg","url":"https:\/\/t.co\/6orgFfFR88","display_url":"pic.twitter.com\/6orgFfFR88","expanded_url":"http:\/\/twitter.com\/nisamanjuntak\/status\/663727900747698176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727848025296899,"id_str":"663727848025296899","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9hEVEAMzYDC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9hEVEAMzYDC.jpg","url":"https:\/\/t.co\/6orgFfFR88","display_url":"pic.twitter.com\/6orgFfFR88","expanded_url":"http:\/\/twitter.com\/nisamanjuntak\/status\/663727900747698176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727864878002176,"id_str":"663727864878002176","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI-f2U8AAsMRj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI-f2U8AAsMRj.jpg","url":"https:\/\/t.co\/6orgFfFR88","display_url":"pic.twitter.com\/6orgFfFR88","expanded_url":"http:\/\/twitter.com\/nisamanjuntak\/status\/663727900747698176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727879860031488,"id_str":"663727879860031488","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_XqUkAA-HN6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_XqUkAA-HN6.jpg","url":"https:\/\/t.co\/6orgFfFR88","display_url":"pic.twitter.com\/6orgFfFR88","expanded_url":"http:\/\/twitter.com\/nisamanjuntak\/status\/663727900747698176\/photo\/1","type":"photo","sizes":{"large":{"w":955,"h":955,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080037663"} +{"delete":{"status":{"id":645315568866717696,"id_str":"645315568866717696","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080038169"}} +{"delete":{"status":{"id":641217561888034816,"id_str":"641217561888034816","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080038100"}} +{"delete":{"status":{"id":620162277447053312,"id_str":"620162277447053312","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080038261"}} +{"delete":{"status":{"id":341548558467604482,"id_str":"341548558467604482","user_id":871444819,"user_id_str":"871444819"},"timestamp_ms":"1447080038408"}} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929554432,"id_str":"663727904929554432","text":"RT @KarasuNilsu: Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3569498968,"id_str":"3569498968","name":"EL\u0130F G\u0130B\u0130","screen_name":"27elifrt_28","location":null,"url":null,"description":"zerredenkucuk","protected":false,"verified":false,"followers_count":39,"friends_count":127,"listed_count":0,"favourites_count":1803,"statuses_count":1824,"created_at":"Sun Sep 06 19:56:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640615657592127488\/hSHORGVP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640615657592127488\/hSHORGVP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3569498968\/1441569707","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:19:43 +0000 2015","id":663647144369397760,"id_str":"663647144369397760","text":"Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150928581,"id_str":"2150928581","name":"nilsu karasu","screen_name":"KarasuNilsu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38060,"friends_count":14473,"listed_count":291,"favourites_count":170182,"statuses_count":978,"created_at":"Thu Oct 24 11:54:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150928581\/1446662431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarasuNilsu","name":"nilsu karasu","id":2150928581,"id_str":"2150928581","indices":[3,15]}],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929538049,"id_str":"663727904929538049","text":"\u30d1\u30b9\u30bf\u304c\u7f8e\u5473\u304b\u3063\u305f\u304b\u3089\uff1f\u6599\u7406\u306b\u306f\u5fc3\u304c\u51fa\u308b\u304b\u3089\uff1f\n\u53c2\u3063\u305f\u306a\u3041\u3001\u3081\u3061\u3083\u304f\u3061\u3083\u3060\u3002\u81ea\u5206\u52dd\u624b\u904e\u304e\u308b\u3002\n\u3060\u3051\u3069\u3001\u30d5\u30a1\u30df\u30ea\u30fc\u306e\u30dc\u30b9\u3063\u3066\u306e\u306f\u305d\u3046\u3044\u3046\u3082\u3093\u3060\u3002","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2959066807,"id_str":"2959066807","name":"\u60c5\u5831\u5c4b\u30d6\u30e9\u30a4\u30c8bot","screen_name":"mafias_Bright","location":null,"url":null,"description":"\u30de\u30d5\u30a3\u30a2\u30ba\u30d6\u30e9\u30c3\u30c9\u3000\u30d6\u30e9\u30a4\u30c8\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u30cd\u30bf\u30d0\u30ec\u6ce8\u610f\u3002\u307e\u3060\u304a\u8a71\u306f\u3067\u304d\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":20,"friends_count":18,"listed_count":4,"favourites_count":0,"statuses_count":5985,"created_at":"Mon Jan 05 02:16:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551941773493161984\/soI9_nc4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551941773493161984\/soI9_nc4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959066807\/1420428166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921149441,"id_str":"663727904921149441","text":"RT @LoveBeckworth: Has anyone started their Christmas shopping yet? Our Christmas Emporium is now open and packed with fantastic gifts! htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1935269935,"id_str":"1935269935","name":"WELLYBIX","screen_name":"Wellybix","location":"Teesdale, County Durham","url":"http:\/\/www.wellybix.co.uk","description":"Healthy Handbaked Dog Treats, made with lots of fresh garden herbs, and baked with Love.\nTrade Enquiries Welcome.\nTBA 'Best New Business Award 2014'","protected":false,"verified":false,"followers_count":1365,"friends_count":790,"listed_count":90,"favourites_count":3123,"statuses_count":16177,"created_at":"Fri Oct 04 19:32:34 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609844726490099712\/WLq5Kg4D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609844726490099712\/WLq5Kg4D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1935269935\/1424201442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:01 +0000 2015","id":663724727828144128,"id_str":"663724727828144128","text":"Has anyone started their Christmas shopping yet? Our Christmas Emporium is now open and packed with fantastic gifts! https:\/\/t.co\/a0TG6LVRmK","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550244198,"id_str":"550244198","name":"Beckworth Emporium","screen_name":"LoveBeckworth","location":"Mears Ashby, Northants","url":"http:\/\/www.beckworthemporium.com","description":"Beckworth Emporium is a contemporary gardening and food emporium housing a Food Hall, Produce Market, Garden Nursery and award-winning Restaurant","protected":false,"verified":false,"followers_count":1901,"friends_count":94,"listed_count":29,"favourites_count":341,"statuses_count":2097,"created_at":"Tue Apr 10 16:27:30 +0000 2012","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511134492\/DSC_0123_Garden_Nursery_sm_1600x1063.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511134492\/DSC_0123_Garden_Nursery_sm_1600x1063.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601347071115919360\/maxMiqDa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601347071115919360\/maxMiqDa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550244198\/1446746609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724727442149377,"id_str":"663724727442149377","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","url":"https:\/\/t.co\/a0TG6LVRmK","display_url":"pic.twitter.com\/a0TG6LVRmK","expanded_url":"http:\/\/twitter.com\/LoveBeckworth\/status\/663724727828144128\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":590,"h":332,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724727442149377,"id_str":"663724727442149377","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","url":"https:\/\/t.co\/a0TG6LVRmK","display_url":"pic.twitter.com\/a0TG6LVRmK","expanded_url":"http:\/\/twitter.com\/LoveBeckworth\/status\/663724727828144128\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":590,"h":332,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LoveBeckworth","name":"Beckworth Emporium","id":550244198,"id_str":"550244198","indices":[3,17]}],"symbols":[],"media":[{"id":663724727442149377,"id_str":"663724727442149377","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","url":"https:\/\/t.co\/a0TG6LVRmK","display_url":"pic.twitter.com\/a0TG6LVRmK","expanded_url":"http:\/\/twitter.com\/LoveBeckworth\/status\/663724727828144128\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":590,"h":332,"resize":"fit"}},"source_status_id":663724727828144128,"source_status_id_str":"663724727828144128","source_user_id":550244198,"source_user_id_str":"550244198"}]},"extended_entities":{"media":[{"id":663724727442149377,"id_str":"663724727442149377","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGH3_VEAEVjrz.jpg","url":"https:\/\/t.co\/a0TG6LVRmK","display_url":"pic.twitter.com\/a0TG6LVRmK","expanded_url":"http:\/\/twitter.com\/LoveBeckworth\/status\/663724727828144128\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":590,"h":332,"resize":"fit"}},"source_status_id":663724727828144128,"source_status_id_str":"663724727828144128","source_user_id":550244198,"source_user_id_str":"550244198"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933720065,"id_str":"663727904933720065","text":"RT @NorQ7: \u0645\u0627 \u0623\u062c\u0645\u0644 \u0623\u0646 \u062a\u0642\u0648\u0644 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u0627\u0621 :\u064a\u0627 \u0645\u0627\u0644\u0643 \u0627\u0644\u0645\u0644\u0643 \u0648\u0643\u0644\u062a\u0643 \u0623\u0645\u0631\u064a \u0648\u0627\u0633\u062a\u0648\u062f\u0639\u062a\u0643 \u0647\u0645\u064a \u0641\u0628\u0634\u0631\u0646\u064a \u0628\u0645\u0627 \u064a\u0641\u062a\u062d \u0645\u062f\u0627\u062e\u0644 \u0627\u0644\u0633\u0639\u0627\u062f\u0629 \u0625\u0644\u0649 \u0642\u0644\u0628\u064a\u201d\ud83c\udf39\u0623\u0633\u0639\u062f \u0627\u0644\u0644\u0647 \u0645\u0633\u0627\u0626\u0643\u0645 \u0628\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2251469819,"id_str":"2251469819","name":"\u0627\u0644\u063a\u0644\u0627 \u0627\u0644\u0639\u062a\u064a\u0628\u064a 511","screen_name":"khla4","location":null,"url":null,"description":"\u063a\u064a\u0631 \u0635\u0627\u0644\u062d\u0647 \u0644\u0644\u0639\u0644\u0627\u0642\u0627\u062a \u0627\u0644\u063a\u0631\u0627\u0645\u064a\u0647 ( \u0627\u062d\u062a\u0631\u0645 - \u062a\u062d\u062a\u0631\u0645 ) \u0642\u0644\u0629 \u0627\u0644\u0623\u062f\u0628 \u0628\u0644\u0648\u0643 \u0627\u062d\u0628 \u0627\u0644\u062e\u064a\u0631 \u0648\u0627\u0644\u0628\u0633\u0627\u0637\u0647 ( \u0647\u0630\u0627 \u062d\u0633\u0627\u0628\u064a \u0627\u0644\u0627\u0648\u0644 \u0648\u0627\u0644\u0648\u062d\u064a\u062f \u0628\u0627\u0627\u0644\u062a\u0648\u064a\u062a\u0631 \u063a\u064a\u0631\u0647 \u0644\u0627\u064a\u0645\u062b\u0644\u0646\u064a ) (. \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0647 .)","protected":false,"verified":false,"followers_count":9020,"friends_count":5674,"listed_count":9,"favourites_count":2495,"statuses_count":114208,"created_at":"Mon Dec 30 06:37:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649308606228070400\/9q9eOtzi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649308606228070400\/9q9eOtzi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2251469819\/1446223376","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:30:33 +0000 2015","id":663287479781470208,"id_str":"663287479781470208","text":"\u0645\u0627 \u0623\u062c\u0645\u0644 \u0623\u0646 \u062a\u0642\u0648\u0644 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u0627\u0621 :\u064a\u0627 \u0645\u0627\u0644\u0643 \u0627\u0644\u0645\u0644\u0643 \u0648\u0643\u0644\u062a\u0643 \u0623\u0645\u0631\u064a \u0648\u0627\u0633\u062a\u0648\u062f\u0639\u062a\u0643 \u0647\u0645\u064a \u0641\u0628\u0634\u0631\u0646\u064a \u0628\u0645\u0627 \u064a\u0641\u062a\u062d \u0645\u062f\u0627\u062e\u0644 \u0627\u0644\u0633\u0639\u0627\u062f\u0629 \u0625\u0644\u0649 \u0642\u0644\u0628\u064a\u201d\ud83c\udf39\u0623\u0633\u0639\u062f \u0627\u0644\u0644\u0647 \u0645\u0633\u0627\u0626\u0643\u0645 \u0628\u0643\u0644 \u062e\u064a\u0631\ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2582906570,"id_str":"2582906570","name":"\u2728\u0646\u0640\u0640\u0640 \u0640\u0640\u0640\u0648\u0631\u0647\u2764\ufe0f.","screen_name":"NorQ7","location":null,"url":null,"description":"\u0631\u062d\u0645 \u0627\u0644\u0644\u0647 \u0631\u0648\u062d\u0627\u064b \u0644\u0627 \u062a\u0639\u0648\u0651\u0636 \u0648\u0644\u0627 \u062a\u0648\u0644\u062f\u0645\u0631\u0629 \u0627\u062e\u0631\u0649 \u0627\u0644\u0644\u0647\u0645 \u0627\u063a\u0641\u0631\u0644\u0645\u0646 \u0639\u0634\u0646\u0627 \u0645\u0639\u0647 \u0623\u062c\u0645\u0644 \u0627\u0644\u0633\u0646\u064a\u0646 \u0648\u0647\u0632\u0646\u0627 \u0625\u0644\u064a\u0647 \u0627\u0644\u062d\u0646\u064a\u0646.\u0627\u0644\u0644\u0647\u0645 \u0627\u062c\u0645\u0639\u0646\u0627\u0628\u0647 \u0641\u064a \u062c\u0646\u062a\u0643. http:\/\/youtu.be\/PBOC8fySmwc","protected":false,"verified":false,"followers_count":5688,"friends_count":4016,"listed_count":10,"favourites_count":5820,"statuses_count":108678,"created_at":"Sun Jun 22 22:26:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639449429473230849\/khP7M3nN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639449429473230849\/khP7M3nN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2582906570\/1433703313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NorQ7","name":"\u2728\u0646\u0640\u0640\u0640 \u0640\u0640\u0640\u0648\u0631\u0647\u2764\ufe0f.","id":2582906570,"id_str":"2582906570","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925335552,"id_str":"663727904925335552","text":"RT @KarasuNilsu: Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312885533,"id_str":"3312885533","name":"EL\u0130F RT","screen_name":"27elifrt_15","location":null,"url":null,"description":"@EliF33003181","protected":false,"verified":false,"followers_count":37,"friends_count":146,"listed_count":0,"favourites_count":3726,"statuses_count":3786,"created_at":"Mon Jun 08 07:53:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607818078034919425\/ngSZJBnW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607818078034919425\/ngSZJBnW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312885533\/1433750446","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:19:43 +0000 2015","id":663647144369397760,"id_str":"663647144369397760","text":"Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150928581,"id_str":"2150928581","name":"nilsu karasu","screen_name":"KarasuNilsu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38060,"friends_count":14473,"listed_count":291,"favourites_count":170182,"statuses_count":978,"created_at":"Thu Oct 24 11:54:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150928581\/1446662431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarasuNilsu","name":"nilsu karasu","id":2150928581,"id_str":"2150928581","indices":[3,15]}],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937934848,"id_str":"663727904937934848","text":"\u0421\u0443\u043f \u0445\u0430\u0440\u0447\u043e - ...\u041c\u043d\u043e\u0433\u0438\u0435 \u0441\u0447\u0438\u0442\u0430\u044e\u0442, \u0447\u0442\u043e \u044d\u0442\u043e\u0442 \u0441\u0443\u043f \u0432\u0430\u0440\u0438\u0442\u0441\u044f \u043d\u0430 \u0431\u0430\u0440\u0430\u043d\u0438\u043d\u0435....","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259172362,"id_str":"1259172362","name":"LearWoodall","screen_name":"LearWoodall","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":17,"listed_count":2,"favourites_count":0,"statuses_count":88541,"created_at":"Mon Mar 11 10:56:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3594548456\/b9d3d561aaa3ef65dbe06badbac3ec9a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3594548456\/b9d3d561aaa3ef65dbe06badbac3ec9a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921096193,"id_str":"663727904921096193","text":"So happy ive ordered my birthday dress!! \ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1468406192,"id_str":"1468406192","name":"Sophie-Jo","screen_name":"sophiexjo","location":null,"url":null,"description":"Te amo","protected":false,"verified":false,"followers_count":509,"friends_count":297,"listed_count":0,"favourites_count":5693,"statuses_count":3208,"created_at":"Wed May 29 22:36:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662016015736377344\/sydGx94v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662016015736377344\/sydGx94v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1468406192\/1446672038","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933703680,"id_str":"663727904933703680","text":"RT @KarasuNilsu: Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3543884836,"id_str":"3543884836","name":"EL\u0130F G\u0130B\u0130","screen_name":"27elifrt_22","location":null,"url":null,"description":"@ zerredenkucuk","protected":false,"verified":false,"followers_count":72,"friends_count":147,"listed_count":0,"favourites_count":1910,"statuses_count":1932,"created_at":"Fri Sep 04 10:38:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639750202392510464\/gmpgZ-rj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639750202392510464\/gmpgZ-rj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3543884836\/1441363464","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:19:43 +0000 2015","id":663647144369397760,"id_str":"663647144369397760","text":"Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150928581,"id_str":"2150928581","name":"nilsu karasu","screen_name":"KarasuNilsu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38060,"friends_count":14473,"listed_count":291,"favourites_count":170182,"statuses_count":978,"created_at":"Thu Oct 24 11:54:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150928581\/1446662431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarasuNilsu","name":"nilsu karasu","id":2150928581,"id_str":"2150928581","indices":[3,15]}],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916938753,"id_str":"663727904916938753","text":"How much of an attitude can I give before you get the hint though?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346341615,"id_str":"346341615","name":"Talehia","screen_name":"TalehiaRansom","location":"South Carolina","url":null,"description":"The less you know, the better.\u270c","protected":false,"verified":false,"followers_count":383,"friends_count":201,"listed_count":2,"favourites_count":5995,"statuses_count":38340,"created_at":"Mon Aug 01 03:27:37 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663056456279805952\/koreexSW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663056456279805952\/koreexSW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346341615\/1413872266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925343744,"id_str":"663727904925343744","text":"@kissmelovarow pelo menos tuas f\u00e9rias ainda s\u00e3o esse m\u00eas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727667418648576,"in_reply_to_status_id_str":"663727667418648576","in_reply_to_user_id":312331158,"in_reply_to_user_id_str":"312331158","in_reply_to_screen_name":"kissmelovarow","user":{"id":82350559,"id_str":"82350559","name":"mi","screen_name":"SHOTSDIAMOND","location":"sendo trouxa","url":"http:\/\/Instagram.com\/miillanr","description":"ag - jb - rvg - spn - ddl","protected":false,"verified":false,"followers_count":635,"friends_count":631,"listed_count":2,"favourites_count":352,"statuses_count":20357,"created_at":"Wed Oct 14 12:47:14 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521058494510686209\/ZBacIees.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521058494510686209\/ZBacIees.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645301343448645633\/Iyaa07nc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645301343448645633\/Iyaa07nc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82350559\/1442686802","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kissmelovarow","name":"sarah","id":312331158,"id_str":"312331158","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937910272,"id_str":"663727904937910272","text":"Cada d\u00eda tiene su propio af\u00e1n \ud83d\udc4c\ud83d\udc4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3041931241,"id_str":"3041931241","name":"\u2022GABO\u2022","screen_name":"Payaso_triste7","location":null,"url":null,"description":"My days are sad.","protected":false,"verified":false,"followers_count":567,"friends_count":537,"listed_count":0,"favourites_count":5015,"statuses_count":2343,"created_at":"Thu Feb 26 00:39:09 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582727142678523904\/St55ae3r.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582727142678523904\/St55ae3r.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662446288710053890\/8J2d_GBA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662446288710053890\/8J2d_GBA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3041931241\/1444872622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921120768,"id_str":"663727904921120768","text":"RT @KarasuNilsu: Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3502296315,"id_str":"3502296315","name":"EL\u0130F RT","screen_name":"27elifrt_13","location":null,"url":null,"description":"@zerredenkucuk","protected":false,"verified":false,"followers_count":23,"friends_count":110,"listed_count":0,"favourites_count":2045,"statuses_count":2071,"created_at":"Mon Aug 31 13:53:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638349078980521985\/_RoPghpD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638349078980521985\/_RoPghpD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3502296315\/1441029301","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:19:43 +0000 2015","id":663647144369397760,"id_str":"663647144369397760","text":"Ve Unutmak Dedikleri\nAkl\u0131na Getirmemek De\u011fil\n\nKalbinden \u00c7\u0131karmakt\u0131r...!!! https:\/\/t.co\/gwcCMYdeKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150928581,"id_str":"2150928581","name":"nilsu karasu","screen_name":"KarasuNilsu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38060,"friends_count":14473,"listed_count":291,"favourites_count":170182,"statuses_count":978,"created_at":"Thu Oct 24 11:54:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658590214168948736\/GQSf3GGL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150928581\/1446662431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarasuNilsu","name":"nilsu karasu","id":2150928581,"id_str":"2150928581","indices":[3,15]}],"symbols":[],"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"extended_entities":{"media":[{"id":663646596165271552,"id_str":"663646596165271552","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW_ECTUAAAJ_qs.jpg","url":"https:\/\/t.co\/gwcCMYdeKt","display_url":"pic.twitter.com\/gwcCMYdeKt","expanded_url":"http:\/\/twitter.com\/KarasuNilsu\/status\/663647144369397760\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":699,"resize":"fit"},"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":699,"resize":"fit"}},"source_status_id":663647144369397760,"source_status_id_str":"663647144369397760","source_user_id":2150928581,"source_user_id_str":"2150928581"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904954720256,"id_str":"663727904954720256","text":"Banglawash coming soon \ud83d\udca6\ud83d\udca6\ud83d\ude02 2-0 \ud83c\udde7\ud83c\udde9\ud83c\udde7\ud83c\udde9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154766777,"id_str":"154766777","name":"Revis Island","screen_name":"MeloKabir","location":"Revis Island","url":"http:\/\/ask.fm\/melokabir","description":"\u007b21\u007d bengali. sc-Melokabir","protected":false,"verified":false,"followers_count":1310,"friends_count":1209,"listed_count":8,"favourites_count":16215,"statuses_count":42862,"created_at":"Sat Jun 12 04:10:54 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550740415\/knicks_team.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550740415\/knicks_team.png","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659061869978787840\/RPIspDFr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659061869978787840\/RPIspDFr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154766777\/1446812551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038666"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921137152,"id_str":"663727904921137152","text":"RT @KronesAG: Endlich - es ist so weit!\nWarum unsere Azubis zur Zeit so besch\u00e4ftigt sind, steht im Blog... :)\n#BrauBeviale\nhttps:\/\/t.co\/VOe\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60842516,"id_str":"60842516","name":"BrauBeviale","screen_name":"BrauBeviale","location":"N\u00fcrnberg, Germany #braubeviale","url":"http:\/\/www.braubeviale.de\/impressum","description":"10.-12. Nov 2015 N\u00fcrnberg, Germany BrauBeviale, a trade fair for raw materials, production technologies, logistics & marketing tools 4 beverage\/beer industry.","protected":false,"verified":false,"followers_count":1345,"friends_count":1858,"listed_count":45,"favourites_count":800,"statuses_count":1639,"created_at":"Tue Jul 28 07:35:40 +0000 2009","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116556062\/2c18251bad77c37e8f40a7b41c03a68e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116556062\/2c18251bad77c37e8f40a7b41c03a68e.jpeg","profile_background_tile":false,"profile_link_color":"294522","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539341560253407233\/PPBDHUf9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539341560253407233\/PPBDHUf9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60842516\/1442908574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:21:59 +0000 2015","id":663632614742491136,"id_str":"663632614742491136","text":"Endlich - es ist so weit!\nWarum unsere Azubis zur Zeit so besch\u00e4ftigt sind, steht im Blog... :)\n#BrauBeviale\nhttps:\/\/t.co\/VOebZDsFAS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97177774,"id_str":"97177774","name":"Krones","screen_name":"KronesAG","location":"Neutraubling","url":"http:\/\/www.krones.com","description":"Machines and complete lines, including product-specific IT solutions for process technology, filling and packaging technology, as well as intralogistics","protected":false,"verified":false,"followers_count":4492,"friends_count":938,"listed_count":186,"favourites_count":13401,"statuses_count":8450,"created_at":"Wed Dec 16 09:54:07 +0000 2009","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"D5D6D8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595916354479202305\/A1urJEiZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595916354479202305\/A1urJEiZ.png","profile_background_tile":false,"profile_link_color":"2F51A3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458947067902042112\/9A5iewgW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458947067902042112\/9A5iewgW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97177774\/1446203068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"BrauBeviale","indices":[96,108]}],"urls":[{"url":"https:\/\/t.co\/VOebZDsFAS","expanded_url":"http:\/\/bit.ly\/1MRwQyk","display_url":"bit.ly\/1MRwQyk","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BrauBeviale","indices":[110,122]}],"urls":[{"url":"https:\/\/t.co\/VOebZDsFAS","expanded_url":"http:\/\/bit.ly\/1MRwQyk","display_url":"bit.ly\/1MRwQyk","indices":[123,140]}],"user_mentions":[{"screen_name":"KronesAG","name":"Krones","id":97177774,"id_str":"97177774","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916963328,"id_str":"663727904916963328","text":"Que ricos que son jajaja \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2924326671,"id_str":"2924326671","name":"Waly","screen_name":"Walter164149451","location":null,"url":null,"description":"River\nC.J.A \nC.A.S\u2665\nMaluma\nFutbol\u2661\nQuiero mirar tu sonrisa frente a la m\u00eda\u2764","protected":false,"verified":false,"followers_count":94,"friends_count":45,"listed_count":0,"favourites_count":1373,"statuses_count":4675,"created_at":"Tue Dec 16 05:30:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662833659444142080\/9rfc3Dk6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662833659444142080\/9rfc3Dk6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2924326671\/1446907065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916815872,"id_str":"663727904916815872","text":"RT @johnnys_mokujou: 11\/9\n\n\u5409\u7965\u5bfa\n\n\u83ca\u6c60\u98a8\u78e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1015221360,"id_str":"1015221360","name":"\u3054\u308a\u3093\u3061\u3083\u3093","screen_name":"kf2runrun","location":null,"url":null,"description":"\u305f\u307e\u3061\u3083\u3093\u2764\ufe0e\u3051\u3093\u3066\u3043\u30fc\u2764\ufe0e\u307e\u3064\u304f\u2764\ufe0e\u3042\u3089\u3093\u304f\u3093\u2764\ufe0e\u30ad\u30f3\u30d7\u30ea\u2764\ufe0e\u30b8\u30e3\u30cb\u30fc\u30ba\u5927\u597d\u304d\u6a2a\u5c3e\u4e16\u4ee3\u3067\u3059(\u2661\u2200\u2661)\u30b8\u30e3\u30cb\u53cb\u5c11\u306a\u3044\u306e\u3067\u304a\u8a71\u3067\u304d\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3041\u3059\u2661","protected":false,"verified":false,"followers_count":104,"friends_count":139,"listed_count":0,"favourites_count":240,"statuses_count":3410,"created_at":"Sun Dec 16 13:38:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659284670475972608\/R2nuWCdD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659284670475972608\/R2nuWCdD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1015221360\/1435591826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:00 +0000 2015","id":663726486969384962,"id_str":"663726486969384962","text":"11\/9\n\n\u5409\u7965\u5bfa\n\n\u83ca\u6c60\u98a8\u78e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252778668,"id_str":"3252778668","name":"\u30b8\u30e3\u30cb\u30fc\u30ba\u906d\u9047\u60c5\u5831","screen_name":"johnnys_mokujou","location":"\u6771\u4eac\u90fd \u6e0b\u8c37\u533a","url":"http:\/\/www.xn--ycke4c5evf613xgtm76goy8b.net\/","description":"\u6bce\u65e5\u66f4\u65b0\u4e2d\uff01 \u906d\u9047\u60c5\u5831\u306fDM\u3067\u9001\u3063\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u6c17\u3065\u304d\u3084\u3059\u3044\u3067\u3059\uff01 \u30b8\u30e3\u30cb\u30fc\u30ba\u52d5\u753b\u307e\u3068\u3081\u306f\u3053\u3061\u3089\u2192@JohnnysDouga \u30b8\u30e3\u30cb\u30fc\u30ba\u307e\u3068\u3081\u2192@Johnnysmatome7","protected":false,"verified":false,"followers_count":106711,"friends_count":2,"listed_count":281,"favourites_count":78,"statuses_count":2285,"created_at":"Mon Jun 22 15:43:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614676275559448576\/KVRqPf3X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614676275559448576\/KVRqPf3X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252778668\/1443492846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":124,"favorite_count":191,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"johnnys_mokujou","name":"\u30b8\u30e3\u30cb\u30fc\u30ba\u906d\u9047\u60c5\u5831","id":3252778668,"id_str":"3252778668","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916815873,"id_str":"663727904916815873","text":"RT @joxxanna: Always remind yourself, our prophet Muhammad saw pesan dikala marah, diam.\n\nBila marah, diam.\n\nBila marah, diam.\n\nDiam.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3734801413,"id_str":"3734801413","name":". myma .","screen_name":"ima_fiera","location":"Taiping","url":null,"description":"Diploma in Business of Marketing \u270c\nLCCI-IQ student..\nHanya bergantung pada Allah bagi segalanya..","protected":false,"verified":false,"followers_count":83,"friends_count":272,"listed_count":0,"favourites_count":128,"statuses_count":340,"created_at":"Wed Sep 30 08:06:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663553209563123712\/CsNmvojs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663553209563123712\/CsNmvojs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3734801413\/1446602787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:17:16 +0000 2015","id":663676726107500544,"id_str":"663676726107500544","text":"Always remind yourself, our prophet Muhammad saw pesan dikala marah, diam.\n\nBila marah, diam.\n\nBila marah, diam.\n\nDiam.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189465785,"id_str":"2189465785","name":"joanna","screen_name":"joxxanna","location":"district 13, Malaysia","url":null,"description":"Thinker. Joanna is my alter ego. Software Engineer.","protected":false,"verified":false,"followers_count":13254,"friends_count":151,"listed_count":17,"favourites_count":11070,"statuses_count":43374,"created_at":"Tue Nov 12 02:45:35 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561376877588140032\/I0sG4b4S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561376877588140032\/I0sG4b4S.jpeg","profile_background_tile":true,"profile_link_color":"0F0D0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662077318949531648\/0dLm6J5G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662077318949531648\/0dLm6J5G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189465785\/1446160543","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":484,"favorite_count":177,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joxxanna","name":"joanna","id":2189465785,"id_str":"2189465785","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933695488,"id_str":"663727904933695488","text":"Corbata https:\/\/t.co\/zoP7YubrL2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3331923759,"id_str":"3331923759","name":"V@|\u00a3","screen_name":"VMeubry","location":null,"url":null,"description":"C.A.R.P ~~~~~\u00b0\u00b0\u00b0\u00b0\u00b0~~~~~~~~\ninsta: Valeemeubry","protected":false,"verified":false,"followers_count":128,"friends_count":141,"listed_count":0,"favourites_count":159,"statuses_count":216,"created_at":"Thu Jun 18 00:24:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659735348046598144\/PRsA26tH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659735348046598144\/PRsA26tH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725998328926208,"quoted_status_id_str":"663725998328926208","quoted_status":{"created_at":"Mon Nov 09 14:33:04 +0000 2015","id":663725998328926208,"id_str":"663725998328926208","text":"Anda a saber donde esta metida mi pollera del secundario","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2340591294,"id_str":"2340591294","name":"\u2b50Bianca \u2b50","screen_name":"BianPanchu","location":"La Francia :3","url":null,"description":"Que te vaya bien, un beso y adi\u00f3s...","protected":false,"verified":false,"followers_count":339,"friends_count":317,"listed_count":1,"favourites_count":409,"statuses_count":3170,"created_at":"Wed Feb 12 16:20:38 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"991DC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445020164929486848\/EmqmtCPj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445020164929486848\/EmqmtCPj.jpeg","profile_background_tile":true,"profile_link_color":"6018BD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653717480347672576\/CokqjRIj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653717480347672576\/CokqjRIj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2340591294\/1444504458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zoP7YubrL2","expanded_url":"https:\/\/twitter.com\/BianPanchu\/status\/663725998328926208","display_url":"twitter.com\/BianPanchu\/sta\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925179909,"id_str":"663727904925179909","text":"RT @shayar_yaar: \u090f \u091c\u093e\u0928-\u090f-\u092c\u0939\u093e\u0930 ..\r\u0906 \u092d\u0940 \u091c\u093e \u0915\u093f \r\u092e\u0941\u0938\u094d\u0915\u0941\u0930\u093e\u092f\u0947 \u091c\u092e\u093e\u0928\u0947 \u0917\u0941\u091c\u0930 \u0917\u090f .....!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2693146400,"id_str":"2693146400","name":"\u092e\u0928\u092e\u094c\u091c\u0940","screen_name":"JasveerDahiya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":62,"listed_count":0,"favourites_count":15,"statuses_count":707,"created_at":"Wed Jul 30 15:00:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613006045502312449\/1deRVK5p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613006045502312449\/1deRVK5p_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:54:47 +0000 2015","id":663308681086287873,"id_str":"663308681086287873","text":"\u090f \u091c\u093e\u0928-\u090f-\u092c\u0939\u093e\u0930 ..\r\u0906 \u092d\u0940 \u091c\u093e \u0915\u093f \r\u092e\u0941\u0938\u094d\u0915\u0941\u0930\u093e\u092f\u0947 \u091c\u092e\u093e\u0928\u0947 \u0917\u0941\u091c\u0930 \u0917\u090f .....!!","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":470255826,"id_str":"470255826","name":"\u0905\u091c\u094d\u091e\u093e\u0924 __ \u06cc\u0627\u0631","screen_name":"shayar_yaar","location":"ABOHAR - \u0a2a\u0a70\u0a1c\u0a3e\u0a2c ","url":null,"description":null,"protected":false,"verified":false,"followers_count":16044,"friends_count":217,"listed_count":85,"favourites_count":34111,"statuses_count":59403,"created_at":"Sat Jan 21 13:58:58 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494516408126943235\/dV9Mvlxs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494516408126943235\/dV9Mvlxs.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658665606657347584\/KCZHC14H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658665606657347584\/KCZHC14H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/470255826\/1445873133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shayar_yaar","name":"\u0905\u091c\u094d\u091e\u093e\u0924 __ \u06cc\u0627\u0631","id":470255826,"id_str":"470255826","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921165829,"id_str":"663727904921165829","text":"Nie\ud83d\ude02 https:\/\/t.co\/06CZbOSEhX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":728075336,"id_str":"728075336","name":"c\u00e4tnip","screen_name":"irwinaism","location":"454 km \u2639","url":null,"description":"i want to breath you in like a vapor, I want to be the one you remember","protected":false,"verified":false,"followers_count":4218,"friends_count":3553,"listed_count":7,"favourites_count":688,"statuses_count":70137,"created_at":"Tue Jul 31 10:21:57 +0000 2012","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463386545538334720\/hK1XoF8z.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463386545538334720\/hK1XoF8z.png","profile_background_tile":false,"profile_link_color":"1C1C1C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430002449477632\/BY8cFLJK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430002449477632\/BY8cFLJK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/728075336\/1447009856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663689822993850368,"quoted_status_id_str":"663689822993850368","quoted_status":{"created_at":"Mon Nov 09 12:09:19 +0000 2015","id":663689822993850368,"id_str":"663689822993850368","text":"38. Jeste\u015b dobry\/a w ukrywaniu uczu\u0107? #100pytan","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663689682102968320,"in_reply_to_status_id_str":"663689682102968320","in_reply_to_user_id":1165895208,"in_reply_to_user_id_str":"1165895208","in_reply_to_screen_name":"chyeeaah","user":{"id":1165895208,"id_str":"1165895208","name":"x X","screen_name":"chyeeaah","location":"Katowice, Poland","url":"http:\/\/blaxkseoul.tumblr.com","description":"\u262f master of disaster \u262f IG :xxkbczk \u262f","protected":false,"verified":false,"followers_count":544,"friends_count":354,"listed_count":3,"favourites_count":3488,"statuses_count":30041,"created_at":"Sun Feb 10 13:21:43 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533995388978462721\/ndxJYHvt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533995388978462721\/ndxJYHvt.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9A5071","profile_text_color":"E394A7","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545160626968854528\/HVWEeVpO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545160626968854528\/HVWEeVpO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1165895208\/1416147951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"100pytan","indices":[38,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/06CZbOSEhX","expanded_url":"https:\/\/twitter.com\/chyeeaah\/status\/663689822993850368","display_url":"twitter.com\/chyeeaah\/statu\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904942129152,"id_str":"663727904942129152","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308241733,"id_str":"3308241733","name":"\u0645\u062d\u0645\u062f \u0627\u0628\u0631\u0627\u0647\u064a\u0645 \u0627\u0644\u0639\u0633\u064a\u0631\u064a","screen_name":"alasire5559","location":"\u0627\u0644\u0634\u0631\u0642\u064a","url":null,"description":"\u200f\u200f\u0645\u0648\u0638\u0641 \u062d\u0643\u0648\u0645\u064a \u0648\u0623\u0633\u0623\u0644 \u0627\u0644\u0644\u0647 \u062c\u0644 \u0648\u0639\u0644\u0627 \u0623\u0646 \u064a\u0639\u064a\u0646\u0646\u0627 \u0639\u0644\u0649 \u0630\u0643\u0631\u0647 \u0648\u0634\u0643\u0631\u0647 \u0648\u062d\u0633\u0646 \u0639\u0628\u0627\u062f\u062a\u0647","protected":false,"verified":false,"followers_count":1517,"friends_count":2011,"listed_count":0,"favourites_count":32,"statuses_count":5989,"created_at":"Thu Aug 06 21:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645763539777355776\/wOpXu0CL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645763539777355776\/wOpXu0CL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308241733\/1442796964","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937742336,"id_str":"663727904937742336","text":"RT @qxpark_: \u0e21\u0e32\u0e14\u0e39\u0e20\u0e32\u0e1e\u0e21\u0e14\u0e01\u0e31\u0e14\u0e41\u0e1a\u0e1a\u0e0b\u0e39\u0e21\u0e46 http:\/\/t.co\/wS78z5vVBM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1006044913,"id_str":"1006044913","name":"\u0e08\u0e30\u0e44\u0e1b\u0e41\u0e2d\u0e19\u0e42\u0e14\u0e23\u0e40\u0e21\u0e14\u0e49\u0e32","screen_name":"adadadddPRAEW","location":null,"url":null,"description":"\u0e1a\u0e27\u0e21\u0e23\u0e30\u0e22\u0e30\u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22 l \u0e2a\u0e27\u0e22\u0e41\u0e15\u0e48\u0e44\u0e21\u0e48\u0e41\u0e2a\u0e14\u0e07\u0e2d\u0e2d\u0e01 l \u0e2a\u0e32\u0e22\u0e40\u0e2a\u0e37\u0e2d\u0e01 \u0e2a\u0e32\u0e22\u0e40\u0e2a\u0e35\u0e48\u0e22\u0e27 \u0e2a\u0e32\u0e22\u0e40\u0e2a\u0e35\u0e49\u0e22\u0e21 \u0e2a\u0e32\u0e22\u0e2a\u0e27\u0e22 \u0e2a\u0e32\u0e22\u0e2b\u0e37\u0e48\u0e19 l \u2600\ufe0f I \u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e19\u0e48\u0e32\u0e40\u0e1a\u0e37\u0e48\u0e2d I \u0e2d\u0e22\u0e32\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e23\u0e39\u0e2a\u0e2d\u0e19\u0e42\u0e23\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19\u0e40\u0e2d\u0e01\u0e0a\u0e19\u0e0a\u0e32\u0e22\u0e25\u0e49\u0e27\u0e19","protected":false,"verified":false,"followers_count":274,"friends_count":714,"listed_count":3,"favourites_count":3033,"statuses_count":23542,"created_at":"Wed Dec 12 10:28:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735978913\/fb26e8cf181c0427e30e65368cf11392.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735978913\/fb26e8cf181c0427e30e65368cf11392.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642377677878358016\/ItyAcpuJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642377677878358016\/ItyAcpuJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1006044913\/1442072650","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Apr 24 10:58:31 +0000 2015","id":591556821522874369,"id_str":"591556821522874369","text":"\u0e21\u0e32\u0e14\u0e39\u0e20\u0e32\u0e1e\u0e21\u0e14\u0e01\u0e31\u0e14\u0e41\u0e1a\u0e1a\u0e0b\u0e39\u0e21\u0e46 http:\/\/t.co\/wS78z5vVBM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400804982,"id_str":"400804982","name":"\u0e2d\u0e34\u0e07\u0e08\u0e31\u0e07 (\u0e44\u0e23)","screen_name":"qxpark_","location":"ig: qxpark","url":null,"description":"(6104 \u0e0a\u0e32\u0e19\u0e41\u0e1a\u0e04)","protected":false,"verified":false,"followers_count":2292,"friends_count":91,"listed_count":2,"favourites_count":2090,"statuses_count":118310,"created_at":"Sat Oct 29 16:08:40 +0000 2011","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654309758464212997\/tYKSTEW2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654309758464212997\/tYKSTEW2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400804982\/1437025545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32011,"favorite_count":1834,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":591556819924848642,"id_str":"591556819924848642","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","url":"http:\/\/t.co\/wS78z5vVBM","display_url":"pic.twitter.com\/wS78z5vVBM","expanded_url":"http:\/\/twitter.com\/qxpark_\/status\/591556821522874369\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":467,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":591556819924848642,"id_str":"591556819924848642","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","url":"http:\/\/t.co\/wS78z5vVBM","display_url":"pic.twitter.com\/wS78z5vVBM","expanded_url":"http:\/\/twitter.com\/qxpark_\/status\/591556821522874369\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":467,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"qxpark_","name":"\u0e2d\u0e34\u0e07\u0e08\u0e31\u0e07 (\u0e44\u0e23)","id":400804982,"id_str":"400804982","indices":[3,11]}],"symbols":[],"media":[{"id":591556819924848642,"id_str":"591556819924848642","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","url":"http:\/\/t.co\/wS78z5vVBM","display_url":"pic.twitter.com\/wS78z5vVBM","expanded_url":"http:\/\/twitter.com\/qxpark_\/status\/591556821522874369\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":467,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":591556821522874369,"source_status_id_str":"591556821522874369","source_user_id":400804982,"source_user_id_str":"400804982"}]},"extended_entities":{"media":[{"id":591556819924848642,"id_str":"591556819924848642","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDWhyyQUkAI4AII.jpg","url":"http:\/\/t.co\/wS78z5vVBM","display_url":"pic.twitter.com\/wS78z5vVBM","expanded_url":"http:\/\/twitter.com\/qxpark_\/status\/591556821522874369\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":467,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":591556821522874369,"source_status_id_str":"591556821522874369","source_user_id":400804982,"source_user_id_str":"400804982"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929501184,"id_str":"663727904929501184","text":"\u062e\u0641\u06af\u06cc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333537492,"id_str":"2333537492","name":"Ehsan","screen_name":"ehsanlune","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":409,"friends_count":509,"listed_count":8,"favourites_count":34887,"statuses_count":14267,"created_at":"Sat Feb 08 14:10:06 +0000 2014","utc_offset":12600,"time_zone":"Tehran","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655402146964348928\/VU3D647w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655402146964348928\/VU3D647w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333537492\/1439894328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904920985600,"id_str":"663727904920985600","text":"RT @bluesherbet_: \u0e04\u0e37\u0e2d\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e17\u0e22\u0e2a\u0e27\u0e22\u0e46 \u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e23\u0e35\u0e49\u0e22\u0e27\u0e46 \u0e40\u0e1b\u0e47\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1b\u0e01\u0e15\u0e34 \u0e41\u0e15\u0e48\u0e15\u0e21.\u0e2b\u0e31\u0e27\u0e42\u0e1a\u0e23\u0e32\u0e13\u0e21\u0e31\u0e01\u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08 \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e1e\u0e39\u0e14\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e01\u0e47\u0e2d\u0e32\u0e08\u0e2a\u0e48\u0e2d\u0e1e\u0e34\u0e23\u0e38\u0e18\u0e27\u0e48\u0e32 \u0e1d\u0e36\u0e01\u0e21\u0e32\u0e2b\u0e32\u0e07\u0e32\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":307290934,"id_str":"307290934","name":"\u0e1e\u0e34\u0e21\u0e1e\u0e23\u0e34\u0e21","screen_name":"Piimmy_Yogurt","location":"\u2661save","url":null,"description":"|| \u0e1e\u0e34\u0e21 || \u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27w\/\u0e1e\u0e25\u0e2d\u0e22 || FCB || \u2200\u03a3 \u2764\ufe0f \u2200\u0394\u03a3 || || Chomsurang95 || Logistics , Bangkok U ||","protected":false,"verified":false,"followers_count":629,"friends_count":889,"listed_count":1,"favourites_count":9021,"statuses_count":135022,"created_at":"Sun May 29 11:06:05 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685955434\/08ca04d8dce80ece20975f613d43584c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685955434\/08ca04d8dce80ece20975f613d43584c.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661189754050887680\/HCHtqmNV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661189754050887680\/HCHtqmNV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307290934\/1445911918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:44:57 +0000 2015","id":663170310288470016,"id_str":"663170310288470016","text":"\u0e04\u0e37\u0e2d\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e17\u0e22\u0e2a\u0e27\u0e22\u0e46 \u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e23\u0e35\u0e49\u0e22\u0e27\u0e46 \u0e40\u0e1b\u0e47\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1b\u0e01\u0e15\u0e34 \u0e41\u0e15\u0e48\u0e15\u0e21.\u0e2b\u0e31\u0e27\u0e42\u0e1a\u0e23\u0e32\u0e13\u0e21\u0e31\u0e01\u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08 \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e1e\u0e39\u0e14\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e01\u0e47\u0e2d\u0e32\u0e08\u0e2a\u0e48\u0e2d\u0e1e\u0e34\u0e23\u0e38\u0e18\u0e27\u0e48\u0e32 \u0e1d\u0e36\u0e01\u0e21\u0e32\u0e2b\u0e32\u0e07\u0e32\u0e19\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e2b\u0e23\u0e37\u0e2d\u0e40\u0e1b\u0e25\u0e48\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663169997364051968,"in_reply_to_status_id_str":"663169997364051968","in_reply_to_user_id":357929941,"in_reply_to_user_id_str":"357929941","in_reply_to_screen_name":"bluesherbet_","user":{"id":357929941,"id_str":"357929941","name":"\u0e2e\u0e07\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e01\u0e30\u0e14\u0e49\u0e32\u0e27","screen_name":"bluesherbet_","location":"\uc720\uc544\uc778","url":"https:\/\/www.facebook.com\/bluesherbet","description":"\u0e23\u0e49\u0e2d\u0e22\u0e0a\u0e32\u0e22\u0e0a\u0e39\u0e49 \u0e01\u0e47\u0e44\u0e21\u0e48\u0e2a\u0e39\u0e49 \u0e22\u0e39\u0e2d\u0e32\u0e2d\u0e34\u0e19","protected":false,"verified":false,"followers_count":24925,"friends_count":175,"listed_count":50,"favourites_count":1244,"statuses_count":155626,"created_at":"Fri Aug 19 03:27:25 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589266415393247232\/JnqzzEeF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589266415393247232\/JnqzzEeF.jpg","profile_background_tile":true,"profile_link_color":"9C78DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603806992797310976\/MhoXPv5p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603806992797310976\/MhoXPv5p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357929941\/1435756291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0185a65a271b66e9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0185a65a271b66e9.json","place_type":"city","name":"Jung-gu","full_name":"Jung-gu, Seoul","country_code":"KR","country":"\ub300\ud55c\ubbfc\uad6d","bounding_box":{"type":"Polygon","coordinates":[[[126.963036,37.542101],[126.963036,37.567048],[127.018855,37.567048],[127.018855,37.542101]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1672,"favorite_count":84,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bluesherbet_","name":"\u0e2e\u0e07\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e01\u0e30\u0e14\u0e49\u0e32\u0e27","id":357929941,"id_str":"357929941","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937775105,"id_str":"663727904937775105","text":"RT @liz_quen_4ever: Liza TheMostBeautiful.... EverydayILoveYou now on it's 2nd blockbuster week!!! https:\/\/t.co\/4Yz8FFTaXZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3966478934,"id_str":"3966478934","name":"larry","screen_name":"lizquen_144","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":10,"listed_count":4,"favourites_count":6,"statuses_count":34028,"created_at":"Wed Oct 21 06:57:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:05 +0000 2015","id":663727010456461312,"id_str":"663727010456461312","text":"Liza TheMostBeautiful.... EverydayILoveYou now on it's 2nd blockbuster week!!! https:\/\/t.co\/4Yz8FFTaXZ","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228071154,"id_str":"3228071154","name":"LizQuen_EvrydyILoveU","screen_name":"liz_quen_4ever","location":"Dubai, United Arab Emirates","url":null,"description":"This account was created for LizQuen. Forevermore has left a significant mark in my heart. I'm proud to say that I love LizQuen.","protected":false,"verified":false,"followers_count":872,"friends_count":183,"listed_count":9,"favourites_count":214,"statuses_count":125193,"created_at":"Wed May 27 10:48:14 +0000 2015","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661586809101553664\/WQxOvZke_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661586809101553664\/WQxOvZke_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228071154\/1446569565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724722241187840,"quoted_status_id_str":"663724722241187840","quoted_status":{"created_at":"Mon Nov 09 14:27:59 +0000 2015","id":663724722241187840,"id_str":"663724722241187840","text":"Liza TheMostBeautiful https:\/\/t.co\/63HynGqN1X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246517082,"id_str":"3246517082","name":"LizQuen LOVER","screen_name":"lizquenfelicity","location":null,"url":null,"description":"SUPPORTER OF BOTH ENRIQUE GIL AND LIZA SOBERANO","protected":false,"verified":false,"followers_count":462,"friends_count":283,"listed_count":4,"favourites_count":6216,"statuses_count":10034,"created_at":"Tue Jun 16 05:15:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658104597412601857\/4vhehLMF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658104597412601857\/4vhehLMF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724719913332736,"id_str":"663724719913332736","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","url":"https:\/\/t.co\/63HynGqN1X","display_url":"pic.twitter.com\/63HynGqN1X","expanded_url":"http:\/\/twitter.com\/lizquenfelicity\/status\/663724722241187840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":570,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":570,"h":700,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724719913332736,"id_str":"663724719913332736","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","url":"https:\/\/t.co\/63HynGqN1X","display_url":"pic.twitter.com\/63HynGqN1X","expanded_url":"http:\/\/twitter.com\/lizquenfelicity\/status\/663724722241187840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":570,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":570,"h":700,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":59,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4Yz8FFTaXZ","expanded_url":"http:\/\/twitter.com\/arhianeA\/status\/663726890021072896","display_url":"twitter.com\/arhianeA\/statu\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4Yz8FFTaXZ","expanded_url":"http:\/\/twitter.com\/arhianeA\/status\/663726890021072896","display_url":"twitter.com\/arhianeA\/statu\u2026","indices":[99,122]}],"user_mentions":[{"screen_name":"liz_quen_4ever","name":"LizQuen_EvrydyILoveU","id":3228071154,"id_str":"3228071154","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904954695680,"id_str":"663727904954695680","text":"@J_Coley12 yessir","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724396423573504,"in_reply_to_status_id_str":"663724396423573504","in_reply_to_user_id":84651633,"in_reply_to_user_id_str":"84651633","in_reply_to_screen_name":"J_Coley12","user":{"id":246521859,"id_str":"246521859","name":"#\ufe0f\u20e3yhateskeet","screen_name":"Bangbro_Skeet","location":"solo money chasin'","url":null,"description":"R.I.P Tiph #TrulyMissed","protected":false,"verified":false,"followers_count":2851,"friends_count":1468,"listed_count":2,"favourites_count":4636,"statuses_count":55833,"created_at":"Wed Feb 02 23:10:02 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4F4F4F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_link_color":"FA0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663396581199224832\/wJAHaxH4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663396581199224832\/wJAHaxH4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246521859\/1446873164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"J_Coley12","name":"STONER\u263a\ufe0f","id":84651633,"id_str":"84651633","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038666"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921165828,"id_str":"663727904921165828","text":"@canfixhearts thanks\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727815637016577,"in_reply_to_status_id_str":"663727815637016577","in_reply_to_user_id":816136002,"in_reply_to_user_id_str":"816136002","in_reply_to_screen_name":"canfixhearts","user":{"id":2751921774,"id_str":"2751921774","name":"d","screen_name":"demetriasoulx","location":null,"url":"https:\/\/twitter.com\/ddlovato\/status\/502988572123611138","description":"my baby replied me thrice","protected":false,"verified":false,"followers_count":172791,"friends_count":33242,"listed_count":33,"favourites_count":2276,"statuses_count":10986,"created_at":"Thu Aug 21 11:39:43 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650692320082399237\/WrvQordW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650692320082399237\/WrvQordW.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661257644989145088\/zKblQ7gf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661257644989145088\/zKblQ7gf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2751921774\/1446995329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"canfixhearts","name":"leticia","id":816136002,"id_str":"816136002","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921149440,"id_str":"663727904921149440","text":"RT @PPGetxo: Todav\u00eda queda gente que no respeta y no entiende la palabra Libertad. Nosotros seguiremos trabajando por conseguirla https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474203647,"id_str":"474203647","name":"Arwen","screen_name":"ArwenPlaza","location":null,"url":null,"description":"CRISTIANA. Memoria, Dignidad y Justicia! SI a la vida sin excepciones! Maestra, aprendiendo cada d\u00eda","protected":false,"verified":false,"followers_count":3485,"friends_count":2798,"listed_count":61,"favourites_count":273,"statuses_count":90622,"created_at":"Wed Jan 25 19:15:08 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/443175290848571392\/5hJEfXFK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/443175290848571392\/5hJEfXFK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474203647\/1443698278","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:04:47 +0000 2015","id":663341392983416832,"id_str":"663341392983416832","text":"Todav\u00eda queda gente que no respeta y no entiende la palabra Libertad. Nosotros seguiremos trabajando por conseguirla https:\/\/t.co\/MWbwxd3uUq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":469186997,"id_str":"469186997","name":"PP de Getxo","screen_name":"PPGetxo","location":"Getxo","url":"http:\/\/www.ppgetxo.net","description":"Canal abierto a todos los getxotarras. \u00bfNo te gusta lo que ves? Cuenta con los populares_Getxo. No dejes pasar la vida; pelea y v\u00edvela. http:\/\/ow.ly\/GnYts","protected":false,"verified":false,"followers_count":962,"friends_count":664,"listed_count":12,"favourites_count":253,"statuses_count":3226,"created_at":"Fri Jan 20 10:04:59 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640822431351996416\/ZZkzwode_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640822431351996416\/ZZkzwode_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469186997\/1434195676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"2d69e079581266bf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2d69e079581266bf.json","place_type":"city","name":"Getxo","full_name":"Getxo, Pa\u00eds Vasco","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[-3.037149,43.319954],[-3.037149,43.383056],[-2.967407,43.383056],[-2.967407,43.319954]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663341386280882178,"id_str":"663341386280882178","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663341386280882178,"id_str":"663341386280882178","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}}},{"id":663341386289258496,"id_str":"663341386289258496","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee6WIAAvrn_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee6WIAAvrn_.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PPGetxo","name":"PP de Getxo","id":469186997,"id_str":"469186997","indices":[3,11]}],"symbols":[],"media":[{"id":663341386280882178,"id_str":"663341386280882178","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}},"source_status_id":663341392983416832,"source_status_id_str":"663341392983416832","source_user_id":469186997,"source_user_id_str":"469186997"}]},"extended_entities":{"media":[{"id":663341386280882178,"id_str":"663341386280882178","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee4WUAIb8K2.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}},"source_status_id":663341392983416832,"source_status_id_str":"663341392983416832","source_user_id":469186997,"source_user_id_str":"469186997"},{"id":663341386289258496,"id_str":"663341386289258496","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSpee6WIAAvrn_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSpee6WIAAvrn_.jpg","url":"https:\/\/t.co\/MWbwxd3uUq","display_url":"pic.twitter.com\/MWbwxd3uUq","expanded_url":"http:\/\/twitter.com\/PPGetxo\/status\/663341392983416832\/photo\/1","type":"photo","sizes":{"medium":{"w":403,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":403,"h":720,"resize":"fit"},"small":{"w":340,"h":607,"resize":"fit"}},"source_status_id":663341392983416832,"source_status_id_str":"663341392983416832","source_user_id":469186997,"source_user_id_str":"469186997"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937762816,"id_str":"663727904937762816","text":"RT @KarlaLagerfield: No entiendo como Nelson Castro no not\u00f3 lo de Matias Al\u00e9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237669748,"id_str":"3237669748","name":"Veronica Antinori","screen_name":"706481a9b342483","location":"Santa Fe, Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":123,"friends_count":288,"listed_count":0,"favourites_count":2746,"statuses_count":936,"created_at":"Wed May 06 01:27:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595763511814389760\/acwDo0B6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595763511814389760\/acwDo0B6_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:24:13 +0000 2015","id":663527481438244864,"id_str":"663527481438244864","text":"No entiendo como Nelson Castro no not\u00f3 lo de Matias Al\u00e9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150669115,"id_str":"150669115","name":"Karlota","screen_name":"KarlaLagerfield","location":"Argentina- Entre Rios","url":"http:\/\/karlalagerfield.blogspot.com.ar","description":"Les traigo amor. Cuando me voy me lo llevo. \u00bfEres tan so\u00f1ador como para querer arreglar el mundo?","protected":false,"verified":false,"followers_count":1172,"friends_count":424,"listed_count":20,"favourites_count":33377,"statuses_count":76546,"created_at":"Tue Jun 01 14:26:42 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590691547152158720\/gAQfU_OU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590691547152158720\/gAQfU_OU.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660672512213258240\/xzRMHpuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660672512213258240\/xzRMHpuF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150669115\/1426906014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KarlaLagerfield","name":"Karlota","id":150669115,"id_str":"150669115","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937799680,"id_str":"663727904937799680","text":"RT @XtraTraffic: I will send 5000 Adsense Safe Visitors to your Website\/blogs for $20 https:\/\/t.co\/TOoYlwzd97 https:\/\/t.co\/JeRFtvwxvv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2416582183,"id_str":"2416582183","name":"Alba Aireton","screen_name":"donojevezylo","location":"Liverpool","url":null,"description":"experienced , Food trailblazer ; ideas - abe alcohol scholar - nt # Infuriatingly humble food geek ,","protected":false,"verified":false,"followers_count":386,"friends_count":338,"listed_count":8,"favourites_count":15572,"statuses_count":22602,"created_at":"Fri Mar 28 23:06:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/452865270877401088\/lbn6PRgp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/452865270877401088\/lbn6PRgp_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:16 +0000 2015","id":663725296118538240,"id_str":"663725296118538240","text":"I will send 5000 Adsense Safe Visitors to your Website\/blogs for $20 https:\/\/t.co\/TOoYlwzd97 https:\/\/t.co\/JeRFtvwxvv","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355512263,"id_str":"355512263","name":"Easy Web Visitors","screen_name":"XtraTraffic","location":"Milwaukee","url":"http:\/\/easywebvisitors.com","description":"If your looking for the easiest way to get a huge traffic boost to your website... We are here to meet your needs!","protected":false,"verified":false,"followers_count":26476,"friends_count":5176,"listed_count":19,"favourites_count":1,"statuses_count":2951,"created_at":"Mon Aug 15 13:37:45 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651915341975519232\/c12byFdz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651915341975519232\/c12byFdz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355512263\/1444263755","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":406,"favorite_count":277,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TOoYlwzd97","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Busi\/vgkgU","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[],"media":[{"id":663725295514488833,"id_str":"663725295514488833","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","url":"https:\/\/t.co\/JeRFtvwxvv","display_url":"pic.twitter.com\/JeRFtvwxvv","expanded_url":"http:\/\/twitter.com\/XtraTraffic\/status\/663725296118538240\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725295514488833,"id_str":"663725295514488833","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","url":"https:\/\/t.co\/JeRFtvwxvv","display_url":"pic.twitter.com\/JeRFtvwxvv","expanded_url":"http:\/\/twitter.com\/XtraTraffic\/status\/663725296118538240\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TOoYlwzd97","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Busi\/vgkgU","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[86,109]}],"user_mentions":[{"screen_name":"XtraTraffic","name":"Easy Web Visitors","id":355512263,"id_str":"355512263","indices":[3,15]}],"symbols":[],"media":[{"id":663725295514488833,"id_str":"663725295514488833","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","url":"https:\/\/t.co\/JeRFtvwxvv","display_url":"pic.twitter.com\/JeRFtvwxvv","expanded_url":"http:\/\/twitter.com\/XtraTraffic\/status\/663725296118538240\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663725296118538240,"source_status_id_str":"663725296118538240","source_user_id":355512263,"source_user_id_str":"355512263"}]},"extended_entities":{"media":[{"id":663725295514488833,"id_str":"663725295514488833","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo8OVEAE3gCm.jpg","url":"https:\/\/t.co\/JeRFtvwxvv","display_url":"pic.twitter.com\/JeRFtvwxvv","expanded_url":"http:\/\/twitter.com\/XtraTraffic\/status\/663725296118538240\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663725296118538240,"source_status_id_str":"663725296118538240","source_user_id":355512263,"source_user_id_str":"355512263"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904941993984,"id_str":"663727904941993984","text":"RT @steppphhhanieee: too tired to go to school & deal with people\ud83d\ude34\ud83d\ude34","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098497538,"id_str":"4098497538","name":"@haysbae_","screen_name":"haysbae_","location":null,"url":null,"description":"viii.vi.mmxv .\n\nAndrew Salas \u2764","protected":false,"verified":false,"followers_count":42,"friends_count":68,"listed_count":0,"favourites_count":201,"statuses_count":98,"created_at":"Mon Nov 02 05:36:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661055469578915841\/wpnrmFN3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661055469578915841\/wpnrmFN3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098497538\/1446444069","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:58 +0000 2015","id":663725723312484352,"id_str":"663725723312484352","text":"too tired to go to school & deal with people\ud83d\ude34\ud83d\ude34","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453913122,"id_str":"2453913122","name":"stephanie","screen_name":"steppphhhanieee","location":null,"url":null,"description":"suhs","protected":false,"verified":false,"followers_count":197,"friends_count":217,"listed_count":0,"favourites_count":12375,"statuses_count":5998,"created_at":"Sun Apr 20 01:15:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661078554419920896\/Ndw25ggZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661078554419920896\/Ndw25ggZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453913122\/1447054481","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"steppphhhanieee","name":"stephanie","id":2453913122,"id_str":"2453913122","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904946155520,"id_str":"663727904946155520","text":"RT @NATIVEg8r: #MotivationMonday! Opening minds and closing doors. https:\/\/t.co\/5Thhis61VM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16212447,"id_str":"16212447","name":"It's me... Dickers","screen_name":"ItsDickers","location":"Chicago 'Burbs","url":"http:\/\/pinterest.com\/skdickers\/","description":"Wife, Life run by 2 Jack Russells (1 diabetic), PMP, MBA student, Love Sports, White Sox Fan, Love God, Sweet Tea, & the SEC! Go Gators!, Fiorina 2016","protected":false,"verified":false,"followers_count":1778,"friends_count":2007,"listed_count":126,"favourites_count":1086,"statuses_count":72654,"created_at":"Tue Sep 09 22:24:57 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3895907\/IMAthsInTrain_sm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3895907\/IMAthsInTrain_sm.jpg","profile_background_tile":false,"profile_link_color":"E68D07","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441435425345777664\/EmRCqajA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441435425345777664\/EmRCqajA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16212447\/1395355317","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727763774439424,"id_str":"663727763774439424","text":"#MotivationMonday! Opening minds and closing doors. https:\/\/t.co\/5Thhis61VM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":12996812,"id_str":"12996812","name":"NATIVEg8r ~ Luwana","screen_name":"NATIVEg8r","location":"Paradise Coast, Florida #USA","url":"http:\/\/www.keepcollierbeautiful.com","description":"beaches, sunshine, palm trees and gators! #MakeAmericaGreatAgain #Trump2016 #TrumpTrain #Women4Trump #TeamTrump16","protected":false,"verified":false,"followers_count":4843,"friends_count":5183,"listed_count":132,"favourites_count":39160,"statuses_count":29264,"created_at":"Sun Feb 03 01:42:48 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1556374314\/nativegator_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1556374314\/nativegator_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/12996812\/1446391835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"MotivationMonday","indices":[0,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":566618367931318272,"id_str":"566618367931318272","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","url":"https:\/\/t.co\/5Thhis61VM","display_url":"pic.twitter.com\/5Thhis61VM","expanded_url":"http:\/\/twitter.com\/z_javeria\/status\/566618389653647360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":566618389653647360,"source_status_id_str":"566618389653647360","source_user_id":2555441954,"source_user_id_str":"2555441954"}]},"extended_entities":{"media":[{"id":566618367931318272,"id_str":"566618367931318272","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","url":"https:\/\/t.co\/5Thhis61VM","display_url":"pic.twitter.com\/5Thhis61VM","expanded_url":"http:\/\/twitter.com\/z_javeria\/status\/566618389653647360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":566618389653647360,"source_status_id_str":"566618389653647360","source_user_id":2555441954,"source_user_id_str":"2555441954"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MotivationMonday","indices":[15,32]}],"urls":[],"user_mentions":[{"screen_name":"NATIVEg8r","name":"NATIVEg8r ~ Luwana","id":12996812,"id_str":"12996812","indices":[3,13]}],"symbols":[],"media":[{"id":566618367931318272,"id_str":"566618367931318272","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","url":"https:\/\/t.co\/5Thhis61VM","display_url":"pic.twitter.com\/5Thhis61VM","expanded_url":"http:\/\/twitter.com\/z_javeria\/status\/566618389653647360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":566618389653647360,"source_status_id_str":"566618389653647360","source_user_id":2555441954,"source_user_id_str":"2555441954"}]},"extended_entities":{"media":[{"id":566618367931318272,"id_str":"566618367931318272","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B90IZ0_CAAAsF20.jpg","url":"https:\/\/t.co\/5Thhis61VM","display_url":"pic.twitter.com\/5Thhis61VM","expanded_url":"http:\/\/twitter.com\/z_javeria\/status\/566618389653647360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":566618389653647360,"source_status_id_str":"566618389653647360","source_user_id":2555441954,"source_user_id_str":"2555441954"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038664"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933548032,"id_str":"663727904933548032","text":"@root11_azu_y \n\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\uff01\uff01\uff01\uff01\uff01\uff01\u304a\u3081\u3067\u3068\u30fc\uff01\uff01\uff01\uff01\uff01\uff1b\uff1b\uff1b\uff1b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727752495796225,"in_reply_to_status_id_str":"663727752495796225","in_reply_to_user_id":452836659,"in_reply_to_user_id_str":"452836659","in_reply_to_screen_name":"root11_azu_y","user":{"id":1654113372,"id_str":"1654113372","name":"\u30ad\u30fc\u30d3\u30b8\u30e5\u606d\u4e8c\u3042\u308a\u304c\u3068\u3046","screen_name":"otimo_reg331","location":"\u6d1e\u7a9f\u306e\u6e56\u306e\u305d\u3070\u306b\u3042\u308b315\u30d7\u30ed\u4e8b\u52d9\u6240","url":null,"description":"\u3053\u3063\u3061\u304c\u672c\u57a2\u306b\u306a\u3063\u305f\u3088 \u9b54\u6cd5\u754c\u306b\u672c\u7c4d\u3092\u7f6e\u304f\u4eba\u9593\u754c\u4f4f\u307f\u306e\u9b54\u5973 \u30ec\u30ae\u30e5\u30e9\u30b9\/HP\/M\uff8f\uff7d(Beit\u62c5\u5f53\u606d\u4e8cP)\/\u30c7\u30ec\u30de\u30b9(\u99c6\u3051\u51fa\u3057\u667a\u9999P)\/\u6681\u306e\u30e8\u30ca\/\u3068\u3046\u3089\u3076(\u5973\u5be9\u795e\u8005\u6d3e)\/GS\/\u604b\u6226\u8a18\/\u3042\u3093\u30b9\u30bf(Knights\u7bb1,\u6731\u685c\u53f8\u63a8\u3057) \u30a2\u30a4\u30b3\u30f3\u306f\u3075\u3049\u308d\u308f\u3055\u3093\u304b\u3089 \u219119","protected":false,"verified":false,"followers_count":240,"friends_count":433,"listed_count":13,"favourites_count":25292,"statuses_count":26460,"created_at":"Wed Aug 07 23:56:02 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659736046691749888\/uq2yVNA9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659736046691749888\/uq2yVNA9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1654113372\/1445617559","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"root11_azu_y","name":"\u6d99\u3067\u306f\u6d88\u305b\u306a\u3044\u6d77\u8cca\u3042\u307e\u3068\u3046\u30dc\u30fc\u30c0\u30fc\u3042\u3065\u677e","id":452836659,"id_str":"452836659","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904946151424,"id_str":"663727904946151424","text":"@tangtaikiki \u0e40\u0e2b\u0e15\u0e38\u0e40\u0e01\u0e34\u0e14\u0e08\u0e32\u0e01\u0e41\u0e01\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2b\u0e19\u0e39\u0e15\u0e01\u0e43\u0e08 \u0e2b\u0e19\u0e39\u0e2b\u0e23\u0e2d\u0e08\u0e30\u0e01\u0e25\u0e49\u0e32\u0e04\u0e30\u0e1e\u0e35\u0e48\u0e41\u0e15\u0e07 \ud83d\ude0c\ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727605149896704,"in_reply_to_status_id_str":"663727605149896704","in_reply_to_user_id":434902657,"in_reply_to_user_id_str":"434902657","in_reply_to_screen_name":"tangtaikiki","user":{"id":380207962,"id_str":"380207962","name":"Reload..","screen_name":"SP_SirikarnPack","location":null,"url":null,"description":"\u2022 \uac71\uc815\ub9c8 EXO-L \uc774 EXO \ub97c\uc9c0\ucf1c\uc904\uac8c \u2022","protected":false,"verified":false,"followers_count":182,"friends_count":337,"listed_count":0,"favourites_count":11608,"statuses_count":30022,"created_at":"Mon Sep 26 07:59:02 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653939307820937216\/K4BNwcaI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653939307820937216\/K4BNwcaI.png","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662917570475855872\/AECoXfHj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662917570475855872\/AECoXfHj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380207962\/1444745953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tangtaikiki","name":"\u0e2e\u0e2d\u0e15\u0e40\u0e17\u0e2a\u0e2b\u0e31\u0e27\u0e1f\u0e39","id":434902657,"id_str":"434902657","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080038664"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916770816,"id_str":"663727904916770816","text":"RT @kemall_ID: Dari awal sampe akhir, gak berenti nyengir gue anjay :D Break dulu yok #miniBreakVideo https:\/\/t.co\/WPHWIpOPft","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1878229752,"id_str":"1878229752","name":"Tita","screen_name":"anita_hp_","location":null,"url":null,"description":"Oriflame I HPP I UMM I Ockyhp","protected":false,"verified":false,"followers_count":39,"friends_count":115,"listed_count":0,"favourites_count":29,"statuses_count":124,"created_at":"Wed Sep 18 06:09:55 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505578721542041600\/PgXV1ND__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505578721542041600\/PgXV1ND__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1878229752\/1410884563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:29:39 +0000 2015","id":662819171084824576,"id_str":"662819171084824576","text":"Dari awal sampe akhir, gak berenti nyengir gue anjay :D Break dulu yok #miniBreakVideo https:\/\/t.co\/WPHWIpOPft","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1441177778,"id_str":"1441177778","name":"\u03ba\u03b5\u028d\u03b1l","screen_name":"kemall_ID","location":"Surakarta","url":null,"description":"Tak Kemal Maka Tak Sayang | Kalo Udah Nge-Stalk jangan lupa pencet tombol FOLLOW ! | Followback ? just mention me \u263a","protected":false,"verified":false,"followers_count":58917,"friends_count":10973,"listed_count":2,"favourites_count":0,"statuses_count":17988,"created_at":"Sun May 19 13:18:52 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613726549456646144\/9ZSZ-Lx__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613726549456646144\/9ZSZ-Lx__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1441177778\/1426495851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":11,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[71,86]}],"urls":[{"url":"https:\/\/t.co\/WPHWIpOPft","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[86,101]}],"urls":[{"url":"https:\/\/t.co\/WPHWIpOPft","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[102,125]}],"user_mentions":[{"screen_name":"kemall_ID","name":"\u03ba\u03b5\u028d\u03b1l","id":1441177778,"id_str":"1441177778","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904954687489,"id_str":"663727904954687489","text":"Que cago de risa es Ivan \ud83d\ude0a\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3125420218,"id_str":"3125420218","name":"Dalila| Negrita #1","screen_name":"DaluBaez","location":null,"url":null,"description":"De mi Mejor\u2764","protected":false,"verified":false,"followers_count":1407,"friends_count":1397,"listed_count":1,"favourites_count":3171,"statuses_count":4812,"created_at":"Sun Mar 29 01:22:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663428131089461248\/bdqpIeaL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663428131089461248\/bdqpIeaL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3125420218\/1446347053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080038666"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937889792,"id_str":"663727904937889792","text":"RT @billboard: 10 #Sorry songs that made apologies sound better https:\/\/t.co\/Qi0jhyKM6Q https:\/\/t.co\/tWB1VEtiMO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3095235873,"id_str":"3095235873","name":"JB Interativo","screen_name":"JBinterativo","location":"Brasil","url":null,"description":"Tops, mutir\u00f5es, games, coment\u00e1rios e informa\u00e7\u00f5es sobre Justin Bieber (supporting JB). Siga e ative nossas notifica\u00e7\u00f5es e nos acompanhe.","protected":false,"verified":false,"followers_count":12614,"friends_count":1947,"listed_count":15,"favourites_count":1190,"statuses_count":16611,"created_at":"Wed Mar 18 19:48:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394973132439552\/AoN8tKzU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394973132439552\/AoN8tKzU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3095235873\/1447001328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:00:15 +0000 2015","id":663672443186380800,"id_str":"663672443186380800","text":"10 #Sorry songs that made apologies sound better https:\/\/t.co\/Qi0jhyKM6Q https:\/\/t.co\/tWB1VEtiMO","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":9695312,"id_str":"9695312","name":"billboard","screen_name":"billboard","location":"Worldwide!","url":"http:\/\/billboard.com","description":"Your destination for the world's most popular music charts, news, videos, reviews & more. Follow: @billboardbiz | @billboarddance | @billboardlatin","protected":false,"verified":true,"followers_count":3299421,"friends_count":2862,"listed_count":15957,"favourites_count":4225,"statuses_count":97009,"created_at":"Thu Oct 25 21:33:23 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/859213624\/0a4c4debd18292678c5c55a64c9fd228.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/859213624\/0a4c4debd18292678c5c55a64c9fd228.png","profile_background_tile":false,"profile_link_color":"1EB0E8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448936044625293312\/mokKeoul_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448936044625293312\/mokKeoul_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/9695312\/1446764105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":389,"favorite_count":473,"entities":{"hashtags":[{"text":"Sorry","indices":[3,9]}],"urls":[{"url":"https:\/\/t.co\/Qi0jhyKM6Q","expanded_url":"http:\/\/blbrd.cm\/RFpBZA","display_url":"blbrd.cm\/RFpBZA","indices":[49,72]}],"user_mentions":[],"symbols":[],"media":[{"id":663672426794893312,"id_str":"663672426794893312","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":642,"h":619,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672426794893312,"id_str":"663672426794893312","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":642,"h":619,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"}}},{"id":663672434009096192,"id_str":"663672434009096192","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWj_xUwAADfky.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWj_xUwAADfky.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":598,"resize":"fit"},"large":{"w":646,"h":644,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663672436618100736,"id_str":"663672436618100736","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWkJfXAAAf9zx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWkJfXAAAf9zx.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":598,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":645,"h":643,"resize":"fit"}}},{"id":663672442473213952,"id_str":"663672442473213952","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWkfTU8AAyQ2h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWkfTU8AAyQ2h.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":337,"resize":"fit"},"medium":{"w":445,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":445,"h":442,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sorry","indices":[18,24]}],"urls":[{"url":"https:\/\/t.co\/Qi0jhyKM6Q","expanded_url":"http:\/\/blbrd.cm\/RFpBZA","display_url":"blbrd.cm\/RFpBZA","indices":[64,87]}],"user_mentions":[{"screen_name":"billboard","name":"billboard","id":9695312,"id_str":"9695312","indices":[3,13]}],"symbols":[],"media":[{"id":663672426794893312,"id_str":"663672426794893312","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":642,"h":619,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"}},"source_status_id":663672443186380800,"source_status_id_str":"663672443186380800","source_user_id":9695312,"source_user_id_str":"9695312"}]},"extended_entities":{"media":[{"id":663672426794893312,"id_str":"663672426794893312","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWjk5UwAAcmpI.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":642,"h":619,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"}},"source_status_id":663672443186380800,"source_status_id_str":"663672443186380800","source_user_id":9695312,"source_user_id_str":"9695312"},{"id":663672434009096192,"id_str":"663672434009096192","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWj_xUwAADfky.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWj_xUwAADfky.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":598,"resize":"fit"},"large":{"w":646,"h":644,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663672443186380800,"source_status_id_str":"663672443186380800","source_user_id":9695312,"source_user_id_str":"9695312"},{"id":663672436618100736,"id_str":"663672436618100736","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWkJfXAAAf9zx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWkJfXAAAf9zx.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":598,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":645,"h":643,"resize":"fit"}},"source_status_id":663672443186380800,"source_status_id_str":"663672443186380800","source_user_id":9695312,"source_user_id_str":"9695312"},{"id":663672442473213952,"id_str":"663672442473213952","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXWkfTU8AAyQ2h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXWkfTU8AAyQ2h.png","url":"https:\/\/t.co\/tWB1VEtiMO","display_url":"pic.twitter.com\/tWB1VEtiMO","expanded_url":"http:\/\/twitter.com\/billboard\/status\/663672443186380800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":337,"resize":"fit"},"medium":{"w":445,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":445,"h":442,"resize":"fit"}},"source_status_id":663672443186380800,"source_status_id_str":"663672443186380800","source_user_id":9695312,"source_user_id_str":"9695312"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933568512,"id_str":"663727904933568512","text":"\u91cd\u5de1\u306f\u30fb\u30fb\u30fb\n\n\uff26\u30ab\u30c3\u30d7\uff27\u30ab\u30c3\u30d7\u30fb\u30fb\u30fb\n\n\u30a6\u30c1\u306b\u3042\u308b\u306e\u306f\u30fb\u30fb\u30fb\n\n\u30b9\u30fc\u30d1\u30fc\u30ab\u30c3\u30d7\u30fb\u30fb\u30fb\uff01\n\n#\u8266\u3053\u308c","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2377844629,"id_str":"2377844629","name":"\u6700\u5f37\u4f1d\u8aac\u3000\u9ed2\u6f6e","screen_name":"kuro_fukumoto","location":"\u7a74\u5e73\u8266\u968a\u53f8\u4ee4\u90e8","url":null,"description":"\u611f\u52d5\u306a\u3093\u3066\u306a\u3044\u3063\u30fb\u30fb\u30fb\uff01\u3000\r\n\u30a6\u30c1\u304c\u6c42\u3081\u3066\u3044\u308b\u306e\u306f\u30fb\u30fb\u30fb\u3000\r\n\u30a6\u30c1\u306e\u9f13\u52d5\u3002\u30a6\u30c1\u306e\u6b53\u559c\u3000\u30a6\u30c1\u306e\u5486\u54ee\u3002\u3000\r\n\u30a6\u30c1\u306e\u3001\u30a6\u30c1\u306b\u3088\u308b\u3001\u30a6\u30c1\u3060\u3051\u306e\u3001\u611f\u52d5\u3084\u3063\u305f\u306f\u305a\u3084\u30fb\u30fb\u30fb\uff01\u3000\u3000(\u8266\u3053\u308c bot)","protected":false,"verified":false,"followers_count":300,"friends_count":652,"listed_count":11,"favourites_count":0,"statuses_count":18787,"created_at":"Sat Mar 08 00:14:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442092066655330304\/wFD1i1Fl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442092066655330304\/wFD1i1Fl_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8266\u3053\u308c","indices":[46,50]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921096192,"id_str":"663727904921096192","text":"RT @VodafoneKartal_: @BahattinEs @SnC1903 b\u0131rak\u0131n \u015fu lafla\u0131 yeter beee g\u00fcnah ay\u0131p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1626544002,"id_str":"1626544002","name":"M.A.","screen_name":"muratakman1903","location":"Eski\u015fehir","url":null,"description":"\u00d6m\u00fcr biter bu sevda bitmez. #ebiletehay\u0131r #Be\u015fikta\u015ffa\u015fisti","protected":false,"verified":false,"followers_count":262,"friends_count":173,"listed_count":2,"favourites_count":3645,"statuses_count":24540,"created_at":"Sat Jul 27 23:47:46 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000044031900\/aa52ffcb083fd9775cfdd3ed44afa788.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000044031900\/aa52ffcb083fd9775cfdd3ed44afa788.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652706956143038464\/6jG6JlMS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652706956143038464\/6jG6JlMS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1626544002\/1401396908","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:45:24 +0000 2015","id":663457313169240064,"id_str":"663457313169240064","text":"@BahattinEs @SnC1903 b\u0131rak\u0131n \u015fu lafla\u0131 yeter beee g\u00fcnah ay\u0131p","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663455237018132483,"in_reply_to_status_id_str":"663455237018132483","in_reply_to_user_id":355280991,"in_reply_to_user_id_str":"355280991","in_reply_to_screen_name":"BahattinEs","user":{"id":3339793468,"id_str":"3339793468","name":"Q7","screen_name":"VodafoneKartal_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":501,"listed_count":0,"favourites_count":3,"statuses_count":430,"created_at":"Sun Jun 21 20:06:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BahattinEs","name":"Bahattin Es","id":355280991,"id_str":"355280991","indices":[0,11]},{"screen_name":"SnC1903","name":"Bar\u0131\u015f \u00d6zel","id":300303692,"id_str":"300303692","indices":[12,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VodafoneKartal_","name":"Q7","id":3339793468,"id_str":"3339793468","indices":[3,19]},{"screen_name":"BahattinEs","name":"Bahattin Es","id":355280991,"id_str":"355280991","indices":[21,32]},{"screen_name":"SnC1903","name":"Bar\u0131\u015f \u00d6zel","id":300303692,"id_str":"300303692","indices":[33,41]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921100288,"id_str":"663727904921100288","text":"RT JamesReidsArmy: RT JaDinexSweeties: Ang cute nila Axl at Kiko! Hahaha\n\nCam\n#OTWOLWish\n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2527024507,"id_str":"2527024507","name":"ashley","screen_name":"nightybutera4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":466,"listed_count":14,"favourites_count":11,"statuses_count":71223,"created_at":"Tue May 27 09:20:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631359166888542208\/t3ZYA28N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631359166888542208\/t3ZYA28N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2527024507\/1439364463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[78,88]},{"text":"PushAwardsJaDines","indices":[89,107]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916971521,"id_str":"663727904916971521","text":"RT @rmzy2134: Duyun da a\u00e7\u0131klama yap\u0131n art\u0131k #Y\u00d6KformasyonsesimiziDUY @yekta_sarac","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149781840,"id_str":"4149781840","name":"Meltem Dirik","screen_name":"MeltemDirik3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":11,"created_at":"Mon Nov 09 14:33:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726466098724865\/XWsdzYeS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726466098724865\/XWsdzYeS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:47 +0000 2015","id":663727185782554624,"id_str":"663727185782554624","text":"Duyun da a\u00e7\u0131klama yap\u0131n art\u0131k #Y\u00d6KformasyonsesimiziDUY @yekta_sarac","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3980896828,"id_str":"3980896828","name":"rmzy_34@hotmail.com","screen_name":"rmzy2134","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":28,"listed_count":0,"favourites_count":38,"statuses_count":203,"created_at":"Sat Oct 17 16:51:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655449892224151552\/5RgIB09F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655449892224151552\/5RgIB09F_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"Y\u00d6KformasyonsesimiziDUY","indices":[30,54]}],"urls":[],"user_mentions":[{"screen_name":"yekta_sarac","name":"M. A. Yekta Sara\u00e7","id":2890770580,"id_str":"2890770580","indices":[55,67]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Y\u00d6KformasyonsesimiziDUY","indices":[44,68]}],"urls":[],"user_mentions":[{"screen_name":"rmzy2134","name":"rmzy_34@hotmail.com","id":3980896828,"id_str":"3980896828","indices":[3,12]},{"screen_name":"yekta_sarac","name":"M. A. Yekta Sara\u00e7","id":2890770580,"id_str":"2890770580","indices":[69,81]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925179911,"id_str":"663727904925179911","text":"@05091993Me \u3042\u30fc\u305d\u3046\u3044\u3048\u3070\u8a00\u3063\u3068\u3063\u305f\u306dw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733646618624,"in_reply_to_status_id_str":"663727733646618624","in_reply_to_user_id":3482603779,"in_reply_to_user_id_str":"3482603779","in_reply_to_screen_name":"05091993Me","user":{"id":3195898458,"id_str":"3195898458","name":"\u3042\u3084\u3081\u308d\u30fc\u3093\u3002","screen_name":"a_1201xxx","location":"\u3042\u3084\u3081\u308d\u3068\u304b\u3044\u3046\u3084\u3064\u306e\u672c\u57a2","url":null,"description":"\u308b\u306a\u3068\u307f\u3064\u304d\u304c\u597d\u304d \u2307 \u3042\u3064\u304d","protected":false,"verified":false,"followers_count":60,"friends_count":73,"listed_count":1,"favourites_count":710,"statuses_count":2198,"created_at":"Fri May 15 04:53:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661941506345861121\/8PgbARRz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661941506345861121\/8PgbARRz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195898458\/1445788429","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"05091993Me","name":"\u3164","id":3482603779,"id_str":"3482603779","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929374209,"id_str":"663727904929374209","text":"@12207991 @xx_Jackxx \n\u3093\u3058\u3083\u3001\u5bb6\u6765\u3066\u3084\uff01\u4eca\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726803228323841,"in_reply_to_status_id_str":"663726803228323841","in_reply_to_user_id":495481451,"in_reply_to_user_id_str":"495481451","in_reply_to_screen_name":"12207991","user":{"id":3273176652,"id_str":"3273176652","name":"\u30cf\u30e4\u30bf@\u307f\u304b\u3048\u308b","screen_name":"haaa_yaa","location":null,"url":null,"description":"\u798f\u5ca1_\u65b0\u5bae\/\u5927\u962a_\u95a2\u5927_SBC\/\/","protected":false,"verified":false,"followers_count":130,"friends_count":121,"listed_count":0,"favourites_count":34,"statuses_count":1921,"created_at":"Thu Jul 09 16:57:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657563251815809024\/AJkB34XJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657563251815809024\/AJkB34XJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273176652\/1445840956","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"12207991","name":"\u304a\u304b\u3056\u308f\u305f\u3064\u3084","id":495481451,"id_str":"495481451","indices":[0,9]},{"screen_name":"xx_Jackxx","name":"\u307f \u3086 \u3046","id":1054087278,"id_str":"1054087278","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929394692,"id_str":"663727904929394692","text":"RT @GaemGyu: \ub0b4\uc77c\ubd80\ud130 \ubca0\ub974\ud14c\ub974 \uccab \uacf5\uc5f0 \uc2dc\uc791!!! \ub0b4 \uccab \uacf5\uc740 \uc544\uc9c1\ub3c4 18\uc77c\uc774\ub098 \ub0a8\uc558\uace0.. \u3160\u3160 \ube68\ub9ac \uacf5\uc5f0 \ud558\uace0\uc2f6\ub2e4..!! https:\/\/t.co\/NtS5WOywVn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":561299574,"id_str":"561299574","name":"\u2022...\u2022","screen_name":"toeyprchyn_","location":"\u0e02\u0e2d\u0e19\u0e41\u0e01\u0e48\u0e19.,\u0e44\u0e17\u0e22\u0e41\u0e25\u0e19\u0e14\u0e4c","url":null,"description":"\u00b0-Toey is ELF | EVERLASTING FRIEND |S U P E R J U N I O R| Y E S U N G |\n\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e23\u0e35\u0e17\u0e27\u0e34\u0e15 \u2764\ufe0f T A O K A C H A \u2764 \ufe0f| \u0e40 \u0e15\u0e4b \u0e32 \u0e04 \u0e0a \u0e32 | \u0e2b\u0e21\u0e39\u0e41\u0e02\u0e47\u0e07\u0e41\u0e23\u0e07:\u0e2e\u0e34\u0e1b\u0e42\u0e1b:\u0e41\u0e21\u0e27 | #Dek59","protected":false,"verified":false,"followers_count":413,"friends_count":370,"listed_count":2,"favourites_count":2938,"statuses_count":75099,"created_at":"Mon Apr 23 15:17:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596142543319924736\/t3lAI6Nw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596142543319924736\/t3lAI6Nw.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615448701469790208\/440KheE1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615448701469790208\/440KheE1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/561299574\/1444433377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:33:02 +0000 2015","id":663710893952204802,"id_str":"663710893952204802","text":"\ub0b4\uc77c\ubd80\ud130 \ubca0\ub974\ud14c\ub974 \uccab \uacf5\uc5f0 \uc2dc\uc791!!! \ub0b4 \uccab \uacf5\uc740 \uc544\uc9c1\ub3c4 18\uc77c\uc774\ub098 \ub0a8\uc558\uace0.. \u3160\u3160 \ube68\ub9ac \uacf5\uc5f0 \ud558\uace0\uc2f6\ub2e4..!! https:\/\/t.co\/NtS5WOywVn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135527082,"id_str":"135527082","name":"ChoKyuHyun","screen_name":"GaemGyu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1649709,"friends_count":46,"listed_count":32344,"favourites_count":1,"statuses_count":341,"created_at":"Wed Apr 21 15:07:40 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5929,"favorite_count":6483,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663710881868439552,"id_str":"663710881868439552","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":719,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GaemGyu","name":"ChoKyuHyun","id":135527082,"id_str":"135527082","indices":[3,11]}],"symbols":[],"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"}]},"extended_entities":{"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"},{"id":663710881868439552,"id_str":"663710881868439552","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":719,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925220865,"id_str":"663727904925220865","text":"RT @atosakav: \u3010\u67a1\u672c\u822a\u592apopo\uff12\u30de\u30f3\uff01\u301111\/10\uff08\u706b\uff09 \n\u67a1\u672c\u822a\u592a\u30a2\u30eb\u30d0\u30e0\u767a\u58f2\u524d\u591c\u796d \u300e\u67a1\u672c\u822a\u592a\u3068popo\u300f \n\u51fa\u6f14\uff1a\u67a1\u672c\u822a\u592a\uff08with\u9ed2\u7530\u8aa0\u4e8c\u90ce\uff09\uff0fpopo\uff08\u5c71\u672c\u4fe1\u8a18\uff0c\u6c5f\u5d0e\u5c07\u53f2\uff0c\u559c\u591a\u6751\u670b\u592a\uff09 \n\u4f1a\u5834\uff1aspace eauuu\n\u4e88\u7d04\u30fb\u5f53\u65e52000\u5186\uff081\u30c9\u30ea\u30f3\u30af\u4ee3\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074795888,"id_str":"3074795888","name":"\u3086\u3059\u3089\u3054","screen_name":"cafe_yusurago","location":"\u4eac\u90fd\u5e02\u4e0a\u4eac\u533a\u4ec1\u548c\u5bfa\u8857\u9053\u4e03\u672c\u677e\u897f\u5165\u4e8c\u756a\u753a199-1","url":"http:\/\/coffee-yusurago.blogspot.jp\/","description":"1\/7\u306b\u30aa\u30fc\u30d7\u30f3\u3002\u55ab\u8336\u5e97\u3001\u81ea\u4e3b\u5236\u4f5c\u30ec\u30b3\u30fc\u30c9\u5c4b\u3001\u96d1\u8ca8\u5c4b\u3002\u663c11:30\u3088\u308a\u55b6\u696d\u3001\u6708\u306e\u55b6\u696d\u4e88\u5b9a\u306f\u6bce\u6708\u30a2\u30c3\u30d7\u3057\u3066\u307e\u3059\u3002\u7981\u7159\u3001\u99d0\u8eca\u5834\u306a\u3057\u3002\u732b\u3044\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u3002\u96fb\u8a71: 0752019461","protected":false,"verified":false,"followers_count":770,"friends_count":210,"listed_count":24,"favourites_count":624,"statuses_count":108,"created_at":"Thu Mar 12 07:33:44 +0000 2015","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"99CC99","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627952208181510144\/KR9yeGVu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627952208181510144\/KR9yeGVu.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576102834627739649\/nVpRXeuj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576102834627739649\/nVpRXeuj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074795888\/1446903228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:49 +0000 2015","id":663703036162801664,"id_str":"663703036162801664","text":"\u3010\u67a1\u672c\u822a\u592apopo\uff12\u30de\u30f3\uff01\u301111\/10\uff08\u706b\uff09 \n\u67a1\u672c\u822a\u592a\u30a2\u30eb\u30d0\u30e0\u767a\u58f2\u524d\u591c\u796d \u300e\u67a1\u672c\u822a\u592a\u3068popo\u300f \n\u51fa\u6f14\uff1a\u67a1\u672c\u822a\u592a\uff08with\u9ed2\u7530\u8aa0\u4e8c\u90ce\uff09\uff0fpopo\uff08\u5c71\u672c\u4fe1\u8a18\uff0c\u6c5f\u5d0e\u5c07\u53f2\uff0c\u559c\u591a\u6751\u670b\u592a\uff09 \n\u4f1a\u5834\uff1aspace eauuu\n\u4e88\u7d04\u30fb\u5f53\u65e52000\u5186\uff081\u30c9\u30ea\u30f3\u30af\u4ee3\u542b\u3080\uff09\n19\u6642\u958b\u583420\u6642\u958b\u6f14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11554632,"id_str":"11554632","name":"11\/10\u300e\u67a1\u672c\u822a\u592a\u3068popo\u300f","screen_name":"atosakav","location":"DJ\u639b\u3051\u6d41\u3057\u3068MC\u5782\u308c\u6d41\u3057","url":"http:\/\/www.hatena.ne.jp\/atosakav\/","description":"\u3010\u4f01\u753b\u3057\u307e\u3059\uff01\u3011 11\/10\uff08\u706b\uff09 \u67a1\u672c\u822a\u592a\u30a2\u30eb\u30d0\u30e0\u767a\u58f2\u524d\u591c\u796d \u300e\u67a1\u672c\u822a\u592a\u3068popo\u300f \u51fa\u6f14\uff1a\u67a1\u672c\u822a\u592a\uff08with\u9ed2\u7530\u8aa0\u4e8c\u90ce\uff09\uff0fpopo\uff08\u5c71\u672c\u4fe1\u8a18\uff0c\u6c5f\u5d0e\u5c07\u53f2\uff0c\u559c\u591a\u6751\u670b\u592a\uff09 \u4f1a\u5834\uff1a\u795e\u6238\u5143\u753aspace eauuu \u4e88\u7d04\u30fb\u5f53\u65e52000\u5186\uff081\u30c9\u30ea\u30f3\u30af\u4ee3\u542b\u3080\uff0919\u6642\u958b\u583420\u6642\u958b\u6f14\u3010\u67a1\u672c\u822a\u592apopo\uff12\u30de\u30f3\uff01\u3011","protected":false,"verified":false,"followers_count":632,"friends_count":599,"listed_count":24,"favourites_count":11254,"statuses_count":13108,"created_at":"Thu Dec 27 04:09:15 +0000 2007","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685349289\/6651b1c37c4963c9514624bf80e27b82.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685349289\/6651b1c37c4963c9514624bf80e27b82.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1815304344\/P252iS0005243269_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1815304344\/P252iS0005243269_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11554632\/1444809522","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atosakav","name":"11\/10\u300e\u67a1\u672c\u822a\u592a\u3068popo\u300f","id":11554632,"id_str":"11554632","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925179904,"id_str":"663727904925179904","text":"RT @hikariver: \uff12\n\n\u4ed6\u306e\u754c\u9688\u306e\u4eba\u9593\u3092\u3064\u3064\u304d\u306b\u3044\u304f\u6642\u306f\u7279\u306b\u91cd\u8981\u3067\u3001\n\u300c\u25cb\u25cb\u52e2\u306f\u76f8\u624b\u306b\u3057\u306a\u3044\u3067\u3044\u3044\u300d\u307f\u305f\u3044\u306a\u98a8\u6f6e\u3092\u4f5c\u3089\u306a\u3044\u3088\u3046\u306b\u6700\u4f4e\u9650\u306e\u8a00\u8449\u9078\u3073\u306f\u3057\u3066\u6b32\u3057\u3044\u3068\u3053\u308d\u3002\n\u6d45\u304f\u898b\u3089\u308c\u305f\u3089\u7d42\u308f\u308a\u3002","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4 \/ www.movatwi.jp .\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197650899,"id_str":"197650899","name":"\u306f\u305c","screen_name":"haze1059_coj","location":"\u30b2\u30fc\u30e0\u30b9\u30da\u30fc\u30b9\u30b8\u30e3\u30f3\u30dc","url":null,"description":"\u306f\u305c\/\u3086\u30fc\u307d \u6226\u56fd\u306f\u525b\u6bc5\u5927\u91d1\u661f\u4ee5\u5916\u306a\u3093\u3082\u306a\u3044\u30d5\u30ea\u30de\u5e95\u8fba\u306e\u30e2\u30d6\u30024\u3063\u3066\u306a\u3093\u3060\u3088 \u4ed6\u306f\u5f10\u5bfa(SP\u516b\u6bb5)\/COJ(J1)\/\u30e2\u30d0\u30de\u30b9\/Electronica\/Acid\/dnb \u30ce\u30a4\u30ba\u7cfbRT\u591a\u3081","protected":false,"verified":false,"followers_count":492,"friends_count":536,"listed_count":23,"favourites_count":1019,"statuses_count":66572,"created_at":"Sat Oct 02 02:29:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493094413417992192\/vL7xIbrF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493094413417992192\/vL7xIbrF.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661014597667680256\/vLf7tmWo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661014597667680256\/vLf7tmWo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197650899\/1443525472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:17 +0000 2015","id":663727565513711616,"id_str":"663727565513711616","text":"\uff12\n\n\u4ed6\u306e\u754c\u9688\u306e\u4eba\u9593\u3092\u3064\u3064\u304d\u306b\u3044\u304f\u6642\u306f\u7279\u306b\u91cd\u8981\u3067\u3001\n\u300c\u25cb\u25cb\u52e2\u306f\u76f8\u624b\u306b\u3057\u306a\u3044\u3067\u3044\u3044\u300d\u307f\u305f\u3044\u306a\u98a8\u6f6e\u3092\u4f5c\u3089\u306a\u3044\u3088\u3046\u306b\u6700\u4f4e\u9650\u306e\u8a00\u8449\u9078\u3073\u306f\u3057\u3066\u6b32\u3057\u3044\u3068\u3053\u308d\u3002\n\u6d45\u304f\u898b\u3089\u308c\u305f\u3089\u7d42\u308f\u308a\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111517709,"id_str":"111517709","name":"\u30d2\u30c3\u30ad\u30fc\u2606","screen_name":"hikariver","location":"\u30aa\u30bf\u30af\u30bf\u30a6\u30f3","url":"http:\/\/hikariver.blog.fc2.com\/","description":"\u30a2\u30cb\u30e1\u3068\u30d7\u30ea\u30f3\u3068V\u30b7\u30cd\u30de\u3060\u3051\u3067\u751f\u304d\u3066\u3044\u3051\u307e\u3059\u3002\u30c6\u30ec\u30d3\u30b2\u30fc\u30e0\u306f\u5acc\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":3384,"friends_count":1038,"listed_count":113,"favourites_count":1044,"statuses_count":83417,"created_at":"Fri Feb 05 05:49:57 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/195417568\/komugi1600.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/195417568\/komugi1600.png","profile_background_tile":false,"profile_link_color":"0057B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662632421674749952\/aKklJq1f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662632421674749952\/aKklJq1f_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111517709\/1418837484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hikariver","name":"\u30d2\u30c3\u30ad\u30fc\u2606","id":111517709,"id_str":"111517709","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904950366208,"id_str":"663727904950366208","text":"RT @septicals: i like clingy. i like double texts, phone calls, good morning & goodnight texts. tbh it's just nice knowing someone truly ca\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3116460285,"id_str":"3116460285","name":"madison","screen_name":"madimcmilln","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":92,"friends_count":52,"listed_count":0,"favourites_count":63,"statuses_count":130,"created_at":"Thu Mar 26 00:22:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663188214493003776\/b6K0hoU4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663188214493003776\/b6K0hoU4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3116460285\/1446951369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 03:00:47 +0000 2015","id":661739843387531264,"id_str":"661739843387531264","text":"i like clingy. i like double texts, phone calls, good morning & goodnight texts. tbh it's just nice knowing someone truly cares about me","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2747938309,"id_str":"2747938309","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","screen_name":"septicals","location":null,"url":null,"description":"wus good shawty","protected":false,"verified":false,"followers_count":200836,"friends_count":37,"listed_count":381,"favourites_count":13,"statuses_count":1692,"created_at":"Wed Aug 20 03:16:27 +0000 2014","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600460615254147072\/PxdF9fOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600460615254147072\/PxdF9fOg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2747938309\/1431122106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":593,"favorite_count":960,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"septicals","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","id":2747938309,"id_str":"2747938309","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038665"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929398784,"id_str":"663727904929398784","text":"@sho_hituzi \n\u73cd\u3057\u3044\u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663686801517731840,"in_reply_to_status_id_str":"663686801517731840","in_reply_to_user_id":2789541768,"in_reply_to_user_id_str":"2789541768","in_reply_to_screen_name":"sho_hituzi","user":{"id":3162384416,"id_str":"3162384416","name":"\u30e6 \u30e1 \u307f","screen_name":"k_y_m_nns","location":"0920","url":"http:\/\/twpf.jp\/k_y_m_nns","description":"\u667a\u3001\u8ffd\u3044\u304b\u3051\u306d\u3070\u3002","protected":false,"verified":false,"followers_count":115,"friends_count":102,"listed_count":0,"favourites_count":1153,"statuses_count":1650,"created_at":"Sat Apr 18 11:55:45 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662580262610440192\/bML3FEPe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662580262610440192\/bML3FEPe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3162384416\/1446907055","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sho_hituzi","name":"\u30b7 \u30e7 \u30fc \u30a6","id":2789541768,"id_str":"2789541768","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038660"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916766720,"id_str":"663727904916766720","text":"@_5stm \u3044\u3044\u306d\u301c\u591c\u3086\u3063\u304f\u308a\u8a71\u3057\u305f\u3044\u3088\u306d\u263a\ufe0f\u308a\u3087\u3046\u304d\u3055\u3093\u306b\u3054\u76f8\u8ac7\u3057\u3088\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717370456731648,"in_reply_to_status_id_str":"663717370456731648","in_reply_to_user_id":1707799868,"in_reply_to_user_id_str":"1707799868","in_reply_to_screen_name":"_5stm","user":{"id":2397583442,"id_str":"2397583442","name":"\u305f\u306e\u3046\u3048","screen_name":"19h_x","location":null,"url":null,"description":"\u9e7f\u5927\u7363\u533b4th","protected":false,"verified":false,"followers_count":123,"friends_count":108,"listed_count":2,"favourites_count":448,"statuses_count":497,"created_at":"Wed Mar 19 09:43:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644737323104518145\/DBGBV4Az_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644737323104518145\/DBGBV4Az_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2397583442\/1442573572","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_5stm","name":"\u3064\u3064\u307f","id":1707799868,"id_str":"1707799868","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038657"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933613568,"id_str":"663727904933613568","text":"ASUS anuncia placa de rede ROG 10G Express: A divis\u00e3o Republic of Gamers (ROG) da ASUS anunciou a placa de red... https:\/\/t.co\/iCCP9JeryD","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1176492692,"id_str":"1176492692","name":"Chip Tim Beta","screen_name":"ChipTimBeta1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":97,"friends_count":157,"listed_count":12,"favourites_count":0,"statuses_count":78890,"created_at":"Wed Feb 13 18:32:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iCCP9JeryD","expanded_url":"http:\/\/bit.ly\/1Hq4U2c","display_url":"bit.ly\/1Hq4U2c","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904954519552,"id_str":"663727904954519552","text":"RT @JodhaakbarF: Winners of last identification game are @Simran_RT_lover @Zee_Purple28 @simranarora1nov @PrioGoswami\nCongratulations https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245769512,"id_str":"3245769512","name":"PRIODORSHINI GOSWAMI","screen_name":"PrioGoswami","location":"West Bengal, India","url":null,"description":"Die heart fan of RAJAT TOKAS & PARIDHI SHARMA","protected":false,"verified":false,"followers_count":245,"friends_count":310,"listed_count":0,"favourites_count":1452,"statuses_count":1448,"created_at":"Mon Jun 15 07:11:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663279922014609408\/JOD4uwGR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663279922014609408\/JOD4uwGR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245769512\/1444326941","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:35:20 +0000 2015","id":663681273127309313,"id_str":"663681273127309313","text":"Winners of last identification game are @Simran_RT_lover @Zee_Purple28 @simranarora1nov @PrioGoswami\nCongratulations https:\/\/t.co\/rWdZRHPFu7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052526785,"id_str":"3052526785","name":"jodhaakbarFC","screen_name":"JodhaakbarF","location":null,"url":null,"description":"all jodha akbar fans are invited Don't forget to watch Jodha Akbar at zee anmol from Mon-Sat 8:30pm","protected":false,"verified":false,"followers_count":791,"friends_count":20,"listed_count":1,"favourites_count":39123,"statuses_count":2470,"created_at":"Sun Mar 01 13:23:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662934792413954048\/Ahkzzo1I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662934792413954048\/Ahkzzo1I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052526785\/1446890941","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Simran_RT_lover","name":"\u2764Rajat Tokas lover\u2764","id":3271777550,"id_str":"3271777550","indices":[40,56]},{"screen_name":"Zee_Purple28","name":"Zee Althafunnisa","id":3187335834,"id_str":"3187335834","indices":[57,70]},{"screen_name":"simranarora1nov","name":"Mr.Tokas I \u2665U","id":3257352648,"id_str":"3257352648","indices":[71,87]},{"screen_name":"PrioGoswami","name":"PRIODORSHINI GOSWAMI","id":3245769512,"id_str":"3245769512","indices":[88,100]}],"symbols":[],"media":[{"id":663681248619966465,"id_str":"663681248619966465","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","url":"https:\/\/t.co\/rWdZRHPFu7","display_url":"pic.twitter.com\/rWdZRHPFu7","expanded_url":"http:\/\/twitter.com\/JodhaakbarF\/status\/663681273127309313\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":434,"h":376,"resize":"fit"},"large":{"w":434,"h":376,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663681248619966465,"id_str":"663681248619966465","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","url":"https:\/\/t.co\/rWdZRHPFu7","display_url":"pic.twitter.com\/rWdZRHPFu7","expanded_url":"http:\/\/twitter.com\/JodhaakbarF\/status\/663681273127309313\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":434,"h":376,"resize":"fit"},"large":{"w":434,"h":376,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JodhaakbarF","name":"jodhaakbarFC","id":3052526785,"id_str":"3052526785","indices":[3,15]},{"screen_name":"Simran_RT_lover","name":"\u2764Rajat Tokas lover\u2764","id":3271777550,"id_str":"3271777550","indices":[57,73]},{"screen_name":"Zee_Purple28","name":"Zee Althafunnisa","id":3187335834,"id_str":"3187335834","indices":[74,87]},{"screen_name":"simranarora1nov","name":"Mr.Tokas I \u2665U","id":3257352648,"id_str":"3257352648","indices":[88,104]},{"screen_name":"PrioGoswami","name":"PRIODORSHINI GOSWAMI","id":3245769512,"id_str":"3245769512","indices":[105,117]}],"symbols":[],"media":[{"id":663681248619966465,"id_str":"663681248619966465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","url":"https:\/\/t.co\/rWdZRHPFu7","display_url":"pic.twitter.com\/rWdZRHPFu7","expanded_url":"http:\/\/twitter.com\/JodhaakbarF\/status\/663681273127309313\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":434,"h":376,"resize":"fit"},"large":{"w":434,"h":376,"resize":"fit"}},"source_status_id":663681273127309313,"source_status_id_str":"663681273127309313","source_user_id":3052526785,"source_user_id_str":"3052526785"}]},"extended_entities":{"media":[{"id":663681248619966465,"id_str":"663681248619966465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXelEwUsAEIprX.jpg","url":"https:\/\/t.co\/rWdZRHPFu7","display_url":"pic.twitter.com\/rWdZRHPFu7","expanded_url":"http:\/\/twitter.com\/JodhaakbarF\/status\/663681273127309313\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":434,"h":376,"resize":"fit"},"large":{"w":434,"h":376,"resize":"fit"}},"source_status_id":663681273127309313,"source_status_id_str":"663681273127309313","source_user_id":3052526785,"source_user_id_str":"3052526785"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038666"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904942002176,"id_str":"663727904942002176","text":"RT @mereputlahkau: setiap kali aku mempunyai masalah https:\/\/t.co\/MI7XACo3wf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607990901,"id_str":"607990901","name":"nahkanoon","screen_name":"noonaheydar","location":null,"url":"http:\/\/instagram.com\/noonafzkhan","description":"hampeh gewe","protected":false,"verified":false,"followers_count":277,"friends_count":208,"listed_count":1,"favourites_count":1469,"statuses_count":6528,"created_at":"Thu Jun 14 09:37:10 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000018633438\/dcb562fbdecf4f0db6a89c2cd3c83e1e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000018633438\/dcb562fbdecf4f0db6a89c2cd3c83e1e.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663528679960522752\/dxeGTJmU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663528679960522752\/dxeGTJmU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607990901\/1445890843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 16:33:35 +0000 2015","id":661219615800823808,"id_str":"661219615800823808","text":"setiap kali aku mempunyai masalah https:\/\/t.co\/MI7XACo3wf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715868942,"id_str":"1715868942","name":"mereput","screen_name":"mereputlahkau","location":"Malaysia","url":null,"description":"mention for followback . nanti mereput pulak kita tak followback .","protected":false,"verified":false,"followers_count":55622,"friends_count":16495,"listed_count":13,"favourites_count":66,"statuses_count":24554,"created_at":"Sat Aug 31 14:57:34 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595037879274868736\/2kj-7L1T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595037879274868736\/2kj-7L1T.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648169683561017344\/1U1GNyu-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648169683561017344\/1U1GNyu-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715868942\/1435498513","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1920,"favorite_count":505,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661219613892440064,"id_str":"661219613892440064","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","url":"https:\/\/t.co\/MI7XACo3wf","display_url":"pic.twitter.com\/MI7XACo3wf","expanded_url":"http:\/\/twitter.com\/mereputlahkau\/status\/661219615800823808\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":480,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661219613892440064,"id_str":"661219613892440064","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","url":"https:\/\/t.co\/MI7XACo3wf","display_url":"pic.twitter.com\/MI7XACo3wf","expanded_url":"http:\/\/twitter.com\/mereputlahkau\/status\/661219615800823808\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":480,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mereputlahkau","name":"mereput","id":1715868942,"id_str":"1715868942","indices":[3,17]}],"symbols":[],"media":[{"id":661219613892440064,"id_str":"661219613892440064","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","url":"https:\/\/t.co\/MI7XACo3wf","display_url":"pic.twitter.com\/MI7XACo3wf","expanded_url":"http:\/\/twitter.com\/mereputlahkau\/status\/661219615800823808\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":480,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":480,"resize":"fit"}},"source_status_id":661219615800823808,"source_status_id_str":"661219615800823808","source_user_id":1715868942,"source_user_id_str":"1715868942"}]},"extended_entities":{"media":[{"id":661219613892440064,"id_str":"661219613892440064","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0fvEyUcAArrZZ.jpg","url":"https:\/\/t.co\/MI7XACo3wf","display_url":"pic.twitter.com\/MI7XACo3wf","expanded_url":"http:\/\/twitter.com\/mereputlahkau\/status\/661219615800823808\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":480,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":480,"resize":"fit"}},"source_status_id":661219615800823808,"source_status_id_str":"661219615800823808","source_user_id":1715868942,"source_user_id_str":"1715868942"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904925179910,"id_str":"663727904925179910","text":"RT @liz_quen_4ever: Liza TheMostBeautiful.... EverydayILoveYou now on it's 2nd blockbuster week!!! https:\/\/t.co\/4Yz8FFTaXZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3727307772,"id_str":"3727307772","name":"LizQuEn14344","screen_name":"LizQuEn14344","location":"The Capital, Kuwait","url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":61,"listed_count":0,"favourites_count":22,"statuses_count":11652,"created_at":"Tue Sep 29 16:07:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648907347977334784\/A7-MphQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648907347977334784\/A7-MphQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3727307772\/1443546631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:05 +0000 2015","id":663727010456461312,"id_str":"663727010456461312","text":"Liza TheMostBeautiful.... EverydayILoveYou now on it's 2nd blockbuster week!!! https:\/\/t.co\/4Yz8FFTaXZ","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228071154,"id_str":"3228071154","name":"LizQuen_EvrydyILoveU","screen_name":"liz_quen_4ever","location":"Dubai, United Arab Emirates","url":null,"description":"This account was created for LizQuen. Forevermore has left a significant mark in my heart. I'm proud to say that I love LizQuen.","protected":false,"verified":false,"followers_count":872,"friends_count":183,"listed_count":9,"favourites_count":214,"statuses_count":125193,"created_at":"Wed May 27 10:48:14 +0000 2015","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661586809101553664\/WQxOvZke_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661586809101553664\/WQxOvZke_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228071154\/1446569565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724722241187840,"quoted_status_id_str":"663724722241187840","quoted_status":{"created_at":"Mon Nov 09 14:27:59 +0000 2015","id":663724722241187840,"id_str":"663724722241187840","text":"Liza TheMostBeautiful https:\/\/t.co\/63HynGqN1X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246517082,"id_str":"3246517082","name":"LizQuen LOVER","screen_name":"lizquenfelicity","location":null,"url":null,"description":"SUPPORTER OF BOTH ENRIQUE GIL AND LIZA SOBERANO","protected":false,"verified":false,"followers_count":462,"friends_count":283,"listed_count":4,"favourites_count":6216,"statuses_count":10034,"created_at":"Tue Jun 16 05:15:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658104597412601857\/4vhehLMF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658104597412601857\/4vhehLMF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724719913332736,"id_str":"663724719913332736","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","url":"https:\/\/t.co\/63HynGqN1X","display_url":"pic.twitter.com\/63HynGqN1X","expanded_url":"http:\/\/twitter.com\/lizquenfelicity\/status\/663724722241187840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":570,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":570,"h":700,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724719913332736,"id_str":"663724719913332736","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGHb8UcAAQ-xB.jpg","url":"https:\/\/t.co\/63HynGqN1X","display_url":"pic.twitter.com\/63HynGqN1X","expanded_url":"http:\/\/twitter.com\/lizquenfelicity\/status\/663724722241187840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":570,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":570,"h":700,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":59,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4Yz8FFTaXZ","expanded_url":"http:\/\/twitter.com\/arhianeA\/status\/663726890021072896","display_url":"twitter.com\/arhianeA\/statu\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4Yz8FFTaXZ","expanded_url":"http:\/\/twitter.com\/arhianeA\/status\/663726890021072896","display_url":"twitter.com\/arhianeA\/statu\u2026","indices":[99,122]}],"user_mentions":[{"screen_name":"liz_quen_4ever","name":"LizQuen_EvrydyILoveU","id":3228071154,"id_str":"3228071154","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038659"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937775104,"id_str":"663727904937775104","text":"\u5317\u4e00\u306e\u30b3\u30b9\u3084\u3063\u3066\u308b\u4eba\u898b\u305f\u3089\u53cd\u5c04\u7684\u306b\u3044\u3044\u306d\uff01\u3060\u3088\u3082\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3946852394,"id_str":"3946852394","name":"\u9234\u306e\u52a9","screen_name":"suzumaru_00","location":"\u95a2\u6771","url":"http:\/\/twpf.jp\/suzumaru_00","description":"like\u25b7\u5200\u5263\u4e71\u821e.\u6392\u7403.K.Free.\u6771\u4eac\u55b0\u7a2e.\u30b5\u30a4\u30b3\u30d1\u30b9.\u304a\u305d\u677e\u3055\u3093etc... \u6700\u8fd1\u306f\u5200\u5263\u4e71\u821e\u306b\u304a\u71b1\u3002\u3060\u304c\u4e3b\u98df\u306f\u53ca\u5f71\u306e\u8150\u3063\u305f\u5973\u5b50(18\u2191)\u3067\u3059\u3002\u597d\u304d\u306a\u3082\u306e\u3092\u611b\u3067\u306a\u304c\u3089\u3082\u305d\u3082\u305d\u751f\u304d\u3066\u307e\u3059\u3002 \u3061\u3087\u3053\u3061\u3087\u3053\u30b3\u30b9\u6d3b\u52d5\u3092\u3057\u3066\u3044\u304d\u305f\u3044\u4eba\u3067\u3059(\u521d\u5fc3\u8005)\u203b\u3068\u3066\u3082\u4e0b\u54c1","protected":false,"verified":false,"followers_count":18,"friends_count":44,"listed_count":0,"favourites_count":577,"statuses_count":521,"created_at":"Mon Oct 19 12:21:53 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656084425239760896\/hG0L_3fc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656084425239760896\/hG0L_3fc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3946852394\/1446977160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904920985601,"id_str":"663727904920985601","text":"RT @goodsun1976: \u30c4\u30a2\u30fc\u30e9\u30f3\u30cb\u30f3\u30b0\uff01\n\u307e\u305f\u3082\u798f\u5ca1\u30b9\u30bf\u30fc\u30c8\u3002\n\u524d\u56de\u3082\u5929\u6c17\u304c\u60aa\u304b\u3063\u305f\u69d8\u306a\u3002\u3002\n\u5929\u6c17\u306e\u60aa\u3055\u306b\u95a2\u3057\u3066\u306f\u5e83\u5cf6\u306e\u5de8\u5320\u3068\u4e26\u3076\u798f\u5ca1\u306e\u5de8\u5320\u306e\u5b58\u5728\u304c\u3084\u3063\u3071\u308a\u5927\u304d\u3044\u306a\u3002\u3002\u3002\n\n#2\u30de\u30f3\u30e9\u30a4\u30d6\n#\u30e9\u30f3\u30cb\u30f3\u30b0\n#\u5927\u6fe0\u516c\u5712 https:\/\/t.co\/mkBniD8J81","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":373985260,"id_str":"373985260","name":"\u30d1\u30c3\u30c1","screen_name":"2nd_c_","location":"\u798f\u5ca1","url":"http:\/\/twpf.jp\/2nd_c_","description":"\u30b5\u30b6\u30f3\u30aa\u30fc\u30eb\u30b9\u30bf\u30fc\u30ba\/Mr.Children\/L'Arc\uff5een\uff5eCiel\/\u3044\u304d\u3082\u306e\u304c\u304b\u308a\/\u30b1\u30e9\u30b1\u30e9\/wacci(11.21\u798f\u5ca1\u306f\u65ad\u5ff5)\u306a\u3069\u97f3\u697d\/\u91ce\u7403\/\u304a\u7b11\u3044\u7b49\u306a\u3093\u3067\u3082\u3042\u308a \u7d61\u307f\u81ea\u7531\/\u7121\u8a00\u3067ok\/\u9069\u5f53\u304c\u4e00\u756a\uff01\u2605TV\u30e9\u30b8\u30aa\u7b49\u9023\u6295\u5b9f\u6cc1\u7528\u30b5\u30d6\u30a2\u30ab@patch_yoasobi","protected":false,"verified":false,"followers_count":1236,"friends_count":1789,"listed_count":23,"favourites_count":885,"statuses_count":45296,"created_at":"Thu Sep 15 14:21:04 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627798742926651393\/g1Ie4Wes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627798742926651393\/g1Ie4Wes_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373985260\/1443545325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:34:42 +0000 2015","id":663620713098571776,"id_str":"663620713098571776","text":"\u30c4\u30a2\u30fc\u30e9\u30f3\u30cb\u30f3\u30b0\uff01\n\u307e\u305f\u3082\u798f\u5ca1\u30b9\u30bf\u30fc\u30c8\u3002\n\u524d\u56de\u3082\u5929\u6c17\u304c\u60aa\u304b\u3063\u305f\u69d8\u306a\u3002\u3002\n\u5929\u6c17\u306e\u60aa\u3055\u306b\u95a2\u3057\u3066\u306f\u5e83\u5cf6\u306e\u5de8\u5320\u3068\u4e26\u3076\u798f\u5ca1\u306e\u5de8\u5320\u306e\u5b58\u5728\u304c\u3084\u3063\u3071\u308a\u5927\u304d\u3044\u306a\u3002\u3002\u3002\n\n#2\u30de\u30f3\u30e9\u30a4\u30d6\n#\u30e9\u30f3\u30cb\u30f3\u30b0\n#\u5927\u6fe0\u516c\u5712 https:\/\/t.co\/mkBniD8J81","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2568772507,"id_str":"2568772507","name":"\u305f\u306b\u3050\u3061","screen_name":"goodsun1976","location":null,"url":"http:\/\/www.enjing.jp","description":"\u682a\u5f0f\u4f1a\u793e\u30a8\u30f3\u30b8\u30f3 \u4ee3\u8868\u53d6\u7de0\u5f79","protected":false,"verified":false,"followers_count":16025,"friends_count":75,"listed_count":79,"favourites_count":1,"statuses_count":100,"created_at":"Sun Jun 15 10:07:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599020513009078272\/8c5ySb37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599020513009078272\/8c5ySb37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2568772507\/1437529197","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":204,"favorite_count":732,"entities":{"hashtags":[{"text":"2\u30de\u30f3\u30e9\u30a4\u30d6","indices":[76,83]},{"text":"\u30e9\u30f3\u30cb\u30f3\u30b0","indices":[84,90]},{"text":"\u5927\u6fe0\u516c\u5712","indices":[91,96]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663620705964027904,"id_str":"663620705964027904","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","url":"https:\/\/t.co\/mkBniD8J81","display_url":"pic.twitter.com\/mkBniD8J81","expanded_url":"http:\/\/twitter.com\/goodsun1976\/status\/663620713098571776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663620705964027904,"id_str":"663620705964027904","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","url":"https:\/\/t.co\/mkBniD8J81","display_url":"pic.twitter.com\/mkBniD8J81","expanded_url":"http:\/\/twitter.com\/goodsun1976\/status\/663620713098571776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2\u30de\u30f3\u30e9\u30a4\u30d6","indices":[93,100]},{"text":"\u30e9\u30f3\u30cb\u30f3\u30b0","indices":[101,107]},{"text":"\u5927\u6fe0\u516c\u5712","indices":[108,113]}],"urls":[],"user_mentions":[{"screen_name":"goodsun1976","name":"\u305f\u306b\u3050\u3061","id":2568772507,"id_str":"2568772507","indices":[3,15]}],"symbols":[],"media":[{"id":663620705964027904,"id_str":"663620705964027904","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","url":"https:\/\/t.co\/mkBniD8J81","display_url":"pic.twitter.com\/mkBniD8J81","expanded_url":"http:\/\/twitter.com\/goodsun1976\/status\/663620713098571776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663620713098571776,"source_status_id_str":"663620713098571776","source_user_id":2568772507,"source_user_id_str":"2568772507"}]},"extended_entities":{"media":[{"id":663620705964027904,"id_str":"663620705964027904","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnhByUcAAEn6_.jpg","url":"https:\/\/t.co\/mkBniD8J81","display_url":"pic.twitter.com\/mkBniD8J81","expanded_url":"http:\/\/twitter.com\/goodsun1976\/status\/663620713098571776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663620713098571776,"source_status_id_str":"663620713098571776","source_user_id":2568772507,"source_user_id_str":"2568772507"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904933715968,"id_str":"663727904933715968","text":"@katarince ovaj moj slu\u010daj zna sve o meni, a video me pet puta u \u017eivotu.Jedino ne mogu da doku\u010dim u koga je zaljubljen dal u Paju il u mene?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726475292647424,"in_reply_to_status_id_str":"663726475292647424","in_reply_to_user_id":125723556,"in_reply_to_user_id_str":"125723556","in_reply_to_screen_name":"katarince","user":{"id":461981261,"id_str":"461981261","name":"\u041f\u043e\u043c\u043e\u045b\u043d\u0438\u0446\u0430 \u043e\u0434 \u041b\u0430\u0434\u0435","screen_name":"HinicHinic","location":"\u041d\u043e\u0432\u0438 \u0421\u0430\u0434","url":null,"description":"\u041c\u0438\u043d\u0438\u0441\u0442\u0430\u0440\u043a\u0430 \u0434\u0430 \u0431\u0443\u0434\u0435\u043c, \u0441\u0435\u0431\u0438 \u0436\u0435\u0459\u0435 \u0434\u0430 \u0438\u0441\u043f\u0443\u043d\u0438\u043c.","protected":false,"verified":false,"followers_count":6005,"friends_count":2318,"listed_count":96,"favourites_count":213733,"statuses_count":65872,"created_at":"Thu Jan 12 12:31:09 +0000 2012","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636403480891158528\/T_Jh10TG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636403480891158528\/T_Jh10TG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461981261\/1424941296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"katarince","name":"Katarina","id":125723556,"id_str":"125723556","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hr","timestamp_ms":"1447080038661"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904950386688,"id_str":"663727904950386688","text":"@SOC_movie \u4ed9\u53f0\u306e\u6620\u753b\u9928\u3067\u3082\u4e0a\u6620\u3057\u307e\u3059\u304b\uff1f\ud83d\ude2c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3590944573,"in_reply_to_user_id_str":"3590944573","in_reply_to_screen_name":"SOC_movie","user":{"id":1250319511,"id_str":"1250319511","name":"\u3055 \u3068 \u3046 \u3042 \u3084","screen_name":"08_beat_27","location":null,"url":null,"description":"'95s \/ Sendai.JPN | \u26ab\ufe0e | Time waits for no one.","protected":false,"verified":false,"followers_count":162,"friends_count":235,"listed_count":2,"favourites_count":749,"statuses_count":5313,"created_at":"Fri Mar 08 00:00:13 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662971033247313920\/gkff5JBH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662971033247313920\/gkff5JBH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1250319511\/1446899636","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SOC_movie","name":"\u6620\u753b\u300e\u30b9\u30c8\u30ec\u30a4\u30c8\u30fb\u30a2\u30a6\u30bf\u30fb\u30b3\u30f3\u30d7\u30c8\u30f3\u300f","id":3590944573,"id_str":"3590944573","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038665"} +{"delete":{"status":{"id":661254263813906433,"id_str":"661254263813906433","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080038834"}} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904941932545,"id_str":"663727904941932545","text":"you want me to be perfect??","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":435711781,"id_str":"435711781","name":"BLACK AND WHITE","screen_name":"clairearmario","location":"cavite city","url":null,"description":"love your self than others","protected":false,"verified":false,"followers_count":146,"friends_count":278,"listed_count":0,"favourites_count":890,"statuses_count":1194,"created_at":"Tue Dec 13 10:57:58 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634205720297144320\/ih33QY3d.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634205720297144320\/ih33QY3d.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658452793678671872\/yqoLl3xO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658452793678671872\/yqoLl3xO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/435711781\/1428115025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904946151425,"id_str":"663727904946151425","text":"A married woman was unhappy\n\nbecause she has no child.\n\nOne day, she became pregnant,\n\nshe was very happy and... https:\/\/t.co\/8wwpcMSxFu","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":328258871,"id_str":"328258871","name":"itz_thespian","screen_name":"opydoc","location":"Nigeria","url":null,"description":"#lonelywood #Hot_shot #fast_whip #online. Many of my TWEETS here re Adverts, so...My Linked tweets doesn't define Me, i m scared some ppz wil take dis PersoNaL","protected":false,"verified":false,"followers_count":2105,"friends_count":697,"listed_count":39,"favourites_count":117,"statuses_count":355557,"created_at":"Sun Jul 03 01:36:26 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586121732303499264\/JSIkqIYN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586121732303499264\/JSIkqIYN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328258871\/1420398050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8wwpcMSxFu","expanded_url":"http:\/\/fb.me\/4xIOT0z13","display_url":"fb.me\/4xIOT0z13","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038664"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904941957120,"id_str":"663727904941957120","text":"RT @hikolive_: \u304a\u984c\uff1a\u30df\u306f\u03bc'sic\u306e\u30df\n#\u30e9\u30d6\u30e9\u30a4\u30d6\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 http:\/\/t.co\/YA3xu0s01F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115135220,"id_str":"3115135220","name":"\u304d\u3080\u304d\u3080","screen_name":"nourin2587","location":"\u4e00\u5fdc\u6771\u4eac\u90fd","url":null,"description":"\u753a\u7530\u9ad8\u68211\u5e74 \u305d\u306b\u5b50.\u306e\u3046\u308a\u3093.\u7d76\u30c1\u30eb.\u65b0\u59b9\u9b54\u738b.\u30e2\u30f3\u5a18.\u6771\u65b9project.\u6c34\u6a39\u5948\u3005etc\u2026\u57fc\u7389\u897f\u6b66\u5fdc\u63f4\u3057\u3066\u307e\u3059 \u30e9\u30d6\u30e9\u30a4\u30d6\u306f\u5e0c&\u82b1\u967d\u63a8\u3057(\u7d50\u5c40\u307f\u3093\u306a\u597d\u304d) \u99c5\u30e1\u30e2\u306b\u3064\u3044\u3066\u306f\u99c5\u30e1\u30e2\u57a2\u3067\u30c4\u30a4\u30fc\u30c8\u306d","protected":false,"verified":false,"followers_count":359,"friends_count":271,"listed_count":3,"favourites_count":10570,"statuses_count":14945,"created_at":"Sun Mar 29 10:51:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660399585878130688\/mj4VJAe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660399585878130688\/mj4VJAe5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115135220\/1446208646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 01 16:39:21 +0000 2015","id":638753018326814720,"id_str":"638753018326814720","text":"\u304a\u984c\uff1a\u30df\u306f\u03bc'sic\u306e\u30df\n#\u30e9\u30d6\u30e9\u30a4\u30d6\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 http:\/\/t.co\/YA3xu0s01F","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923969321,"id_str":"2923969321","name":"T04\u306f\u50d5\u30e9\u30d610\u3010\u3072\u3053\u3011","screen_name":"hikolive_","location":"\u307b\u306e\u307c\u306e\u30d5\u30ec\u30a4\u30e0\u3010T04\u3011","url":"http:\/\/pixiv.me\/hikolive","description":"\u666e\u901a\u3067\u3059 \uff0f \u666e\u901a\u306e\u672c https:\/\/www.melonbooks.co.jp\/detail\/detail.php?product_id=140599 \uff0f \u30a2\u30a4\u30b3\u30f3&\u30d8\u30c3\u30c0\u30fc\u306e\u30c9\u30c3\u30c8\u7d75\u306f\u3042\u3081\u3057\u3043\u3055\u3093\uff08@xamethyx\uff09\u4f5c\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":3084,"friends_count":261,"listed_count":98,"favourites_count":26066,"statuses_count":4901,"created_at":"Tue Dec 09 14:08:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660946630586163201\/l-uWyV4q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660946630586163201\/l-uWyV4q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923969321\/1441834649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":124,"favorite_count":255,"entities":{"hashtags":[{"text":"\u30e9\u30d6\u30e9\u30a4\u30d6\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[13,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":638753017265717248,"id_str":"638753017265717248","indices":[37,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","url":"http:\/\/t.co\/YA3xu0s01F","display_url":"pic.twitter.com\/YA3xu0s01F","expanded_url":"http:\/\/twitter.com\/hikolive_\/status\/638753018326814720\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1949,"resize":"fit"},"small":{"w":279,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":492,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":638753017265717248,"id_str":"638753017265717248","indices":[37,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","url":"http:\/\/t.co\/YA3xu0s01F","display_url":"pic.twitter.com\/YA3xu0s01F","expanded_url":"http:\/\/twitter.com\/hikolive_\/status\/638753018326814720\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1949,"resize":"fit"},"small":{"w":279,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":492,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30e9\u30d6\u30e9\u30a4\u30d6\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[28,51]}],"urls":[],"user_mentions":[{"screen_name":"hikolive_","name":"T04\u306f\u50d5\u30e9\u30d610\u3010\u3072\u3053\u3011","id":2923969321,"id_str":"2923969321","indices":[3,13]}],"symbols":[],"media":[{"id":638753017265717248,"id_str":"638753017265717248","indices":[52,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","url":"http:\/\/t.co\/YA3xu0s01F","display_url":"pic.twitter.com\/YA3xu0s01F","expanded_url":"http:\/\/twitter.com\/hikolive_\/status\/638753018326814720\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1949,"resize":"fit"},"small":{"w":279,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":492,"h":1200,"resize":"fit"}},"source_status_id":638753018326814720,"source_status_id_str":"638753018326814720","source_user_id":2923969321,"source_user_id_str":"2923969321"}]},"extended_entities":{"media":[{"id":638753017265717248,"id_str":"638753017265717248","indices":[52,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN1OfCVVAAAPAgD.png","url":"http:\/\/t.co\/YA3xu0s01F","display_url":"pic.twitter.com\/YA3xu0s01F","expanded_url":"http:\/\/twitter.com\/hikolive_\/status\/638753018326814720\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":1949,"resize":"fit"},"small":{"w":279,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":492,"h":1200,"resize":"fit"}},"source_status_id":638753018326814720,"source_status_id_str":"638753018326814720","source_user_id":2923969321,"source_user_id_str":"2923969321"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904920961025,"id_str":"663727904920961025","text":"RT @ningukt: \u30c8\u30c9\u677e\u3068\u4e00\u677e\u3068\u5341\u56db\u677e\u304c\u81ea\u64ae\u308a\u3059\u308b\u3060\u3051\u3002\u5f1f\u677e\n#\u304a\u305d\u677e\u3055\u3093 https:\/\/t.co\/6UztlPkXF9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2728435794,"id_str":"2728435794","name":"\u306a\u3064\u307f(*\u00b4\u03c9\uff40*)","screen_name":"naroanml5","location":null,"url":null,"description":"\u679a\uff12\u2192\u8fb2\u82b8\u9ad8\u6821\u8cc7\u6e90\u52d5\u7269\u79d12\u5e74\r\n\u30a2\u30cb\u30e1\u30fb\u30de\u30f3\u30ac\u30fb\u30dc\u30ab\u30ed\u5927\u597d\u304d\u306e\r\n\u8150\u3063\u3066\u308b\u5973\u5b50\u3067\u3059\uff01( \uffe3\u25bd\uffe3)\r\n\u30cf\u30a4\u30ad\u30e5\u30fc\/\u9032\u6483\/\u5f31\u30da\u30c0\/\u9ed2\u30d0\u30b9\/\u30c0\u30a4\u30e4\u306e\uff21\/\u6771\u4eac\u55b0\u7a2e\/\u30ef\u30f3\u30d4\u30fc\u30b9\/\u30ef\u30fc\u30eb\u30c9\u30c8\u30ea\u30ac\u30fc\/\u8584\u685c\u9b3c\/\u306a\u3069\u306a\u3069\u2026\u2026( \uff3e\u2200\uff3e)","protected":false,"verified":false,"followers_count":1010,"friends_count":1172,"listed_count":18,"favourites_count":6421,"statuses_count":7820,"created_at":"Wed Aug 13 04:00:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618806048057507840\/a8m5lZLZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618806048057507840\/a8m5lZLZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2728435794\/1436369832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 11:26:00 +0000 2015","id":661142208599339008,"id_str":"661142208599339008","text":"\u30c8\u30c9\u677e\u3068\u4e00\u677e\u3068\u5341\u56db\u677e\u304c\u81ea\u64ae\u308a\u3059\u308b\u3060\u3051\u3002\u5f1f\u677e\n#\u304a\u305d\u677e\u3055\u3093 https:\/\/t.co\/6UztlPkXF9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2731143852,"id_str":"2731143852","name":"\u3042\u3059","screen_name":"ningukt","location":"\u81ea\u7136\u8ecd","url":"http:\/\/twpf.jp\/ningukt","description":"\u4efb\u5929\u5802\u3068\u30b8\u30e7\u30b8\u30e7\u677e\u3002\u30b9\u30de\u30d6\u30e9\u3068\u304b\u30bc\u30eb\u30c0\u3068\u304b\u30a4\u30ab","protected":false,"verified":false,"followers_count":1920,"friends_count":187,"listed_count":38,"favourites_count":2194,"statuses_count":3379,"created_at":"Thu Aug 14 07:53:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538628253154430976\/Epng6I3m.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538628253154430976\/Epng6I3m.png","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654233325406584832\/bA1srGkS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654233325406584832\/bA1srGkS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2731143852\/1417254277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6930,"favorite_count":13698,"entities":{"hashtags":[{"text":"\u304a\u305d\u677e\u3055\u3093","indices":[22,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661142206321823744,"id_str":"661142206321823744","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","url":"https:\/\/t.co\/6UztlPkXF9","display_url":"pic.twitter.com\/6UztlPkXF9","expanded_url":"http:\/\/twitter.com\/ningukt\/status\/661142208599339008\/photo\/1","type":"photo","sizes":{"large":{"w":780,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":186,"resize":"fit"},"medium":{"w":600,"h":329,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661142206321823744,"id_str":"661142206321823744","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","url":"https:\/\/t.co\/6UztlPkXF9","display_url":"pic.twitter.com\/6UztlPkXF9","expanded_url":"http:\/\/twitter.com\/ningukt\/status\/661142208599339008\/photo\/1","type":"animated_gif","sizes":{"large":{"w":780,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":186,"resize":"fit"},"medium":{"w":600,"h":329,"resize":"fit"}},"video_info":{"aspect_ratio":[71,39],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSzZVXHUkAABSC7.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u305d\u677e\u3055\u3093","indices":[35,41]}],"urls":[],"user_mentions":[{"screen_name":"ningukt","name":"\u3042\u3059","id":2731143852,"id_str":"2731143852","indices":[3,11]}],"symbols":[],"media":[{"id":661142206321823744,"id_str":"661142206321823744","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","url":"https:\/\/t.co\/6UztlPkXF9","display_url":"pic.twitter.com\/6UztlPkXF9","expanded_url":"http:\/\/twitter.com\/ningukt\/status\/661142208599339008\/photo\/1","type":"photo","sizes":{"large":{"w":780,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":186,"resize":"fit"},"medium":{"w":600,"h":329,"resize":"fit"}},"source_status_id":661142208599339008,"source_status_id_str":"661142208599339008","source_user_id":2731143852,"source_user_id_str":"2731143852"}]},"extended_entities":{"media":[{"id":661142206321823744,"id_str":"661142206321823744","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSzZVXHUkAABSC7.png","url":"https:\/\/t.co\/6UztlPkXF9","display_url":"pic.twitter.com\/6UztlPkXF9","expanded_url":"http:\/\/twitter.com\/ningukt\/status\/661142208599339008\/photo\/1","type":"animated_gif","sizes":{"large":{"w":780,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":186,"resize":"fit"},"medium":{"w":600,"h":329,"resize":"fit"}},"source_status_id":661142208599339008,"source_status_id_str":"661142208599339008","source_user_id":2731143852,"source_user_id_str":"2731143852","video_info":{"aspect_ratio":[71,39],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSzZVXHUkAABSC7.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080038658"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904937787392,"id_str":"663727904937787392","text":"RT @Funny_Truth: If you're coughing uncontrollably, raise your hands above your head and it will stop!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459008028,"id_str":"2459008028","name":"Tana del Rey","screen_name":"TanahBarber","location":null,"url":null,"description":"Anything is possible when you lie -VT","protected":false,"verified":false,"followers_count":155,"friends_count":90,"listed_count":0,"favourites_count":22213,"statuses_count":10892,"created_at":"Wed Apr 23 01:53:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647982462778241024\/GNi_0_fe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647982462778241024\/GNi_0_fe.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651814919059324928\/z7dortqZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651814919059324928\/z7dortqZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459008028\/1443326802","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jul 23 14:06:50 +0000 2015","id":624219119424962560,"id_str":"624219119424962560","text":"If you're coughing uncontrollably, raise your hands above your head and it will stop!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296623811,"id_str":"296623811","name":"Survival Tips","screen_name":"Funny_Truth","location":null,"url":null,"description":"Tips on how to survive and make life easier.*parody* not affiliated with Bear Grylls or Man vs Wild.DO NOT OWN CONTENT POSTED.\u2709\ufe0f Contact Funny_Truth@Hotmail.com","protected":false,"verified":false,"followers_count":3909009,"friends_count":182,"listed_count":5043,"favourites_count":1366,"statuses_count":43810,"created_at":"Wed May 11 03:39:32 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E0E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/856293722\/d6b5bdfe6cb1e64e58b978054d01f24c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/856293722\/d6b5bdfe6cb1e64e58b978054d01f24c.jpeg","profile_background_tile":false,"profile_link_color":"D91811","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627698226280280066\/i09NCTN6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627698226280280066\/i09NCTN6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296623811\/1438546193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7604,"favorite_count":9734,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Funny_Truth","name":"Survival Tips","id":296623811,"id_str":"296623811","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038662"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904942104576,"id_str":"663727904942104576","text":"My eye is twitching","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15813347,"id_str":"15813347","name":"the em-zone \u2606 \u30a8\u30df\u30ea\u30fc","screen_name":"emilysu","location":"New York City","url":"http:\/\/emilysu.tumblr.com","description":"New York City \u2605 art?! \u2605 silly stuff \u2605 \u65e5\u672c\u306e\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u304c\u5927\u597d\u304d\u3067\u3059\u2661 \u266a(\u00b4\u03b5\uff40 )","protected":false,"verified":false,"followers_count":296,"friends_count":441,"listed_count":7,"favourites_count":17489,"statuses_count":30446,"created_at":"Mon Aug 11 20:23:04 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590517359833550848\/CgrCO3qd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590517359833550848\/CgrCO3qd.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661109287742115840\/cFWV-BKQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661109287742115840\/cFWV-BKQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15813347\/1446456148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038663"} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904921030656,"id_str":"663727904921030656","text":"@assautgorlla https:\/\/t.co\/3ddkg4RTSq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727786486423555,"in_reply_to_status_id_str":"663727786486423555","in_reply_to_user_id":3236537856,"in_reply_to_user_id_str":"3236537856","in_reply_to_screen_name":"assautgorlla","user":{"id":3282896486,"id_str":"3282896486","name":"\u6d77\u7fe0@\u79cb\u30a4\u30d9\u306fALL\u7532","screen_name":"kaisui0616","location":"\u5e4c\u7b75\u6cca\u5730 \u3057\u308c\u3047\uff01103","url":null,"description":"2015\u5e742\u670825\u65e5\u7740\u4efb 2015\u5e746\u670816\u65e5(\u9032\u6c34\u65e5)\u306b\u611b\u5b95\u3055\u3093\u3068\u30b1\u30c3\u30b3\u30f3 \u305f\u307e\u306b\u8266\u3053\u308c\u30c4\u30a4\u30ad\u30e3\u30b9(\u76f4\u64ae\u308a)\u3084\u3063\u3066\u307e\u3059\u3002\u30db\u30c3\u30ad\u30e7\u30af\u30a6\u30b5\u30ae\u306eAA\u4f7f\u3044\u307e\u3059(\u3059\u3054\u304f\u53ef\u611b\u3044)\u3002\u30d5\u30a9\u30ed\u30fc\u306f\u6c17\u307e\u3050\u308c\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\nhttp:\/\/kaisui0616.game-ss.com\u2190\u8266\u3053\u308c\u306e\u65e5\u8a18\u3067\u3059\u3002\n#\u5e30\u308d\u3046\u307c\u304f\u3089\u306e\u93ae\u5b88\u5e9c","protected":false,"verified":false,"followers_count":147,"friends_count":228,"listed_count":20,"favourites_count":8962,"statuses_count":9013,"created_at":"Sat Jul 18 01:52:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719252684206081\/Ja5vSdv7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719252684206081\/Ja5vSdv7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3282896486\/1441263257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"assautgorlla","name":"\u30a2\u30b5\u30eb\u30c8 \u30b4\u30ea\u30e9@\u7121\u5bb3","id":3236537856,"id_str":"3236537856","indices":[0,13]}],"symbols":[],"media":[{"id":663727902626725888,"id_str":"663727902626725888","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAseUwAAvFwW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAseUwAAvFwW.jpg","url":"https:\/\/t.co\/3ddkg4RTSq","display_url":"pic.twitter.com\/3ddkg4RTSq","expanded_url":"http:\/\/twitter.com\/kaisui0616\/status\/663727904921030656\/photo\/1","type":"photo","sizes":{"small":{"w":254,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":232,"resize":"fit"},"medium":{"w":254,"h":232,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727902626725888,"id_str":"663727902626725888","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAseUwAAvFwW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAseUwAAvFwW.jpg","url":"https:\/\/t.co\/3ddkg4RTSq","display_url":"pic.twitter.com\/3ddkg4RTSq","expanded_url":"http:\/\/twitter.com\/kaisui0616\/status\/663727904921030656\/photo\/1","type":"photo","sizes":{"small":{"w":254,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":254,"h":232,"resize":"fit"},"medium":{"w":254,"h":232,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080038658"} +{"delete":{"status":{"id":533633408451108864,"id_str":"533633408451108864","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080039090"}} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904916971520,"id_str":"663727904916971520","text":"@PAYNOFTGOMEZ \ud83d\ude2d\ud83d\ude0d https:\/\/t.co\/ODlgnTOsPJ","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717792328384513,"in_reply_to_status_id_str":"663717792328384513","in_reply_to_user_id":130581479,"in_reply_to_user_id_str":"130581479","in_reply_to_screen_name":"PAYNOFTGOMEZ","user":{"id":597504720,"id_str":"597504720","name":"gina gets weird","screen_name":"BTRAre_MyKings","location":"btr\u221ehd\u221em5\u221eyoutuber\u221efsog\u221enb\u221elm","url":"https:\/\/twitter.com\/bigtimerush\/status\/523869966802890752","description":"suprmaryface: btrare_mykings you guys changed my life. I need to give back to you as much as I can x","protected":false,"verified":false,"followers_count":25082,"friends_count":25173,"listed_count":112,"favourites_count":6485,"statuses_count":180393,"created_at":"Sat Jun 02 13:44:24 +0000 2012","utc_offset":3600,"time_zone":"Berlin","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450670178133483522\/pstXHG3k.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450670178133483522\/pstXHG3k.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663705623729733633\/jiktJSZG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663705623729733633\/jiktJSZG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/597504720\/1447074726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PAYNOFTGOMEZ","name":"| \u2022 ZiAM AF \u2022 |","id":130581479,"id_str":"130581479","indices":[0,13]}],"symbols":[],"media":[{"id":663727811555926016,"id_str":"663727811555926016","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI7ZNWoAAj4hB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI7ZNWoAAj4hB.png","url":"https:\/\/t.co\/ODlgnTOsPJ","display_url":"pic.twitter.com\/ODlgnTOsPJ","expanded_url":"http:\/\/twitter.com\/BTRAre_MyKings\/status\/663727904916971520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":500,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":260,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727811555926016,"id_str":"663727811555926016","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI7ZNWoAAj4hB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI7ZNWoAAj4hB.png","url":"https:\/\/t.co\/ODlgnTOsPJ","display_url":"pic.twitter.com\/ODlgnTOsPJ","expanded_url":"http:\/\/twitter.com\/BTRAre_MyKings\/status\/663727904916971520\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"large":{"w":500,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":260,"resize":"fit"}},"video_info":{"aspect_ratio":[25,13],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYI7ZNWoAAj4hB.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080038657"} +{"delete":{"status":{"id":663407711766364161,"id_str":"663407711766364161","user_id":3404598209,"user_id_str":"3404598209"},"timestamp_ms":"1447080039115"}} +{"delete":{"status":{"id":652110723028549632,"id_str":"652110723028549632","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080039159"}} +{"delete":{"status":{"id":659313370621988864,"id_str":"659313370621988864","user_id":3255445064,"user_id_str":"3255445064"},"timestamp_ms":"1447080039185"}} +{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904929501185,"id_str":"663727904929501185","text":"Good Morning Never Loose Focus For Nobody Remember You Have Goals To Accomplish. \ud83d\udc4c\ud83c\udffe\ud83d\udcb8\ud83d\udcb0\ud83d\udcb3\ud83d\udcda\ud83c\udf93 https:\/\/t.co\/Is7bDDa1W1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":939653803,"id_str":"939653803","name":"\u2728 Majesty \u2728","screen_name":"X_A_V_I_A","location":"Jersey","url":null,"description":"|| GOD FIRST || C\/O 16 ||bScorpio || #PettyGang #AugustAlsina","protected":false,"verified":false,"followers_count":4807,"friends_count":4553,"listed_count":11,"favourites_count":1836,"statuses_count":5529,"created_at":"Sat Nov 10 18:28:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636467648440635392\/SnVEsuB4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636467648440635392\/SnVEsuB4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/939653803\/1440054754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727877255512064,"id_str":"663727877255512064","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_N9WwAAipOv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_N9WwAAipOv.jpg","url":"https:\/\/t.co\/Is7bDDa1W1","display_url":"pic.twitter.com\/Is7bDDa1W1","expanded_url":"http:\/\/twitter.com\/X_A_V_I_A\/status\/663727904929501185\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":976,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":571,"resize":"fit"},"small":{"w":340,"h":324,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727877255512064,"id_str":"663727877255512064","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_N9WwAAipOv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_N9WwAAipOv.jpg","url":"https:\/\/t.co\/Is7bDDa1W1","display_url":"pic.twitter.com\/Is7bDDa1W1","expanded_url":"http:\/\/twitter.com\/X_A_V_I_A\/status\/663727904929501185\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":976,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":571,"resize":"fit"},"small":{"w":340,"h":324,"resize":"fit"}}},{"id":663727877305839616,"id_str":"663727877305839616","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_OJWsAAN4CQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_OJWsAAN4CQ.jpg","url":"https:\/\/t.co\/Is7bDDa1W1","display_url":"pic.twitter.com\/Is7bDDa1W1","expanded_url":"http:\/\/twitter.com\/X_A_V_I_A\/status\/663727904929501185\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1012,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":592,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}}},{"id":663727879344234496,"id_str":"663727879344234496","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_VvWIAAvzBc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_VvWIAAvzBc.jpg","url":"https:\/\/t.co\/Is7bDDa1W1","display_url":"pic.twitter.com\/Is7bDDa1W1","expanded_url":"http:\/\/twitter.com\/X_A_V_I_A\/status\/663727904929501185\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":590,"resize":"fit"},"large":{"w":1023,"h":1007,"resize":"fit"},"small":{"w":340,"h":334,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080038660"} +{"delete":{"status":{"id":533632649282080768,"id_str":"533632649282080768","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080039406"}} +{"delete":{"status":{"id":663557612001079296,"id_str":"663557612001079296","user_id":2464839068,"user_id_str":"2464839068"},"timestamp_ms":"1447080039493"}} +{"delete":{"status":{"id":663724578842087424,"id_str":"663724578842087424","user_id":2902799031,"user_id_str":"2902799031"},"timestamp_ms":"1447080039591"}} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909136408576,"id_str":"663727909136408576","text":"(\u0648\u0643\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u062a\u0633\u0639\u0629 \u0631\u0647\u0637 \u064a\u0641\u0633\u062f\u0648\u0646 \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \u0648\u0644\u0627 \u064a\u0635\u0644\u062d\u0648\u0646) [\u0627\u0644\u0646\u0645\u0644:48] http:\/\/qurani .tv","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594191856,"id_str":"594191856","name":"\u064a\u062a\u064a\u0645 \u0627\u0644\u0645\u0645\u0644\u0643\u0647 ...!!","screen_name":"dodealdeerh","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u062d\u0645\u0646\u0627 \u0641\u0648\u0642 \u0627\u0644\u0627\u0631\u0636 \u0648\u062a\u062d\u062a \u0627\u0644\u0627\u0631\u0636 \u0648\u0627\u0631\u0632\u0642\u0646\u064a \u0628\u0631 \u0648\u0627\u0644\u062f\u062a\u064a","protected":false,"verified":false,"followers_count":2719,"friends_count":3140,"listed_count":1,"favourites_count":48,"statuses_count":15237,"created_at":"Tue May 29 23:04:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565415629\/________________.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565415629\/________________.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562640775050063872\/bxvBQveT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562640775050063872\/bxvBQveT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594191856\/1438055595","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080039663"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909128028160,"id_str":"663727909128028160","text":"RT @_QveennC: All about my books and money \u270d\ud83c\udffe\ud83d\udcd8\ud83d\udcb0\ud83d\udcb8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2175356062,"id_str":"2175356062","name":"\u303d\ufe0f","screen_name":"hideousmary","location":null,"url":null,"description":"no instagram, no snapchat - stop asking me.","protected":false,"verified":false,"followers_count":21822,"friends_count":12604,"listed_count":26,"favourites_count":8662,"statuses_count":30029,"created_at":"Sun Nov 10 05:18:02 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663535701779202048\/-zW0_QgB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663535701779202048\/-zW0_QgB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2175356062\/1447028920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:51 +0000 2015","id":663721917128511488,"id_str":"663721917128511488","text":"All about my books and money \u270d\ud83c\udffe\ud83d\udcd8\ud83d\udcb0\ud83d\udcb8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152646790,"id_str":"152646790","name":"\u262e","screen_name":"_QveennC","location":"Snapchat : Chynnaduhh","url":null,"description":"\u2764\ufe0f\u2601\ufe0fzyshonne dupri jenkins\u2601\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":1678,"friends_count":1337,"listed_count":2,"favourites_count":18784,"statuses_count":19656,"created_at":"Sun Jun 06 14:17:50 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631351740\/z146en0qhng46x61i7rz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631351740\/z146en0qhng46x61i7rz.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"BA7CED","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650711356178612224\/y0kJhxdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650711356178612224\/y0kJhxdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152646790\/1444796444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_QveennC","name":"\u262e","id":152646790,"id_str":"152646790","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123858433,"id_str":"663727909123858433","text":"RT @nakedmagic: IT'S BEEN 3 YEARS SINCE THIS BOMB ASS ALBUM CAME OUT\n\n#3YearsOfTakeMeHome https:\/\/t.co\/9jNbKQC64m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2422757354,"id_str":"2422757354","name":"Isabel In The A.M","screen_name":"IsabelTrillo","location":"California, USA","url":null,"description":"But if you like causing trouble up in hotel rooms and if you like having secret little rendezvous.... Baby,I'm perfect","protected":false,"verified":false,"followers_count":533,"friends_count":530,"listed_count":6,"favourites_count":6050,"statuses_count":3136,"created_at":"Tue Apr 01 22:37:29 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652884481863323649\/U7ak46Sp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652884481863323649\/U7ak46Sp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2422757354\/1438349293","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:35 +0000 2015","id":663725628563300352,"id_str":"663725628563300352","text":"IT'S BEEN 3 YEARS SINCE THIS BOMB ASS ALBUM CAME OUT\n\n#3YearsOfTakeMeHome https:\/\/t.co\/9jNbKQC64m","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":48502930,"id_str":"48502930","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","screen_name":"nakedmagic","location":"on a windy rooftop","url":"https:\/\/twitter.com\/nakedmagic\/status\/663584401977143296","description":"#1 harry's tummy stan","protected":false,"verified":false,"followers_count":86587,"friends_count":49450,"listed_count":412,"favourites_count":76674,"statuses_count":200681,"created_at":"Thu Jun 18 21:48:31 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175479676\/lVaNX-S9.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661612157193228289\/xaOIEd75_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/48502930\/1446939726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":56,"entities":{"hashtags":[{"text":"3YearsOfTakeMeHome","indices":[54,73]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}},{"id":663725627652964353,"id_str":"663725627652964353","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":332,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"3YearsOfTakeMeHome","indices":[70,89]}],"urls":[],"user_mentions":[{"screen_name":"nakedmagic","name":"\u02d7\u02cfbeth in the a.m\u02ce\u02ca","id":48502930,"id_str":"48502930","indices":[3,14]}],"symbols":[],"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"}]},"extended_entities":{"media":[{"id":663725626507984896,"id_str":"663725626507984896","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8NRVAAA8-27.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"},{"id":663725627652964353,"id_str":"663725627652964353","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8RiUAAE3bq6.png","url":"https:\/\/t.co\/9jNbKQC64m","display_url":"pic.twitter.com\/9jNbKQC64m","expanded_url":"http:\/\/twitter.com\/nakedmagic\/status\/663725628563300352\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":332,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}},"source_status_id":663725628563300352,"source_status_id_str":"663725628563300352","source_user_id":48502930,"source_user_id_str":"48502930"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909128007680,"id_str":"663727909128007680","text":"RT @RealMofoChik: Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3059511797,"id_str":"3059511797","name":"christine","screen_name":"chrxstxnemilian","location":null,"url":null,"description":"*followback*","protected":false,"verified":false,"followers_count":22947,"friends_count":21897,"listed_count":33,"favourites_count":1092,"statuses_count":23448,"created_at":"Tue Feb 24 17:14:34 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570598751446659072\/Tr-ziPv0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570598751446659072\/Tr-ziPv0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3059511797\/1424855299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:26:40 +0000 2015","id":661987948011765760,"id_str":"661987948011765760","text":"Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\/ud6aMHckPw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946396400,"id_str":"2946396400","name":"\ue327Mal\u00f8ne $$$\ue327","screen_name":"RealMofoChik","location":null,"url":"http:\/\/TheSuperiorApparel.com","description":"kiss me where you miss me ;*","protected":false,"verified":false,"followers_count":4909,"friends_count":2777,"listed_count":8,"favourites_count":87,"statuses_count":68,"created_at":"Sun Dec 28 19:59:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946396400\/1419797187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":109,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}},{"id":661987849902927876,"id_str":"661987849902927876","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[103,126]}],"user_mentions":[{"screen_name":"RealMofoChik","name":"\ue327Mal\u00f8ne $$$\ue327","id":2946396400,"id_str":"2946396400","indices":[3,16]}],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"},{"id":661987849902927876,"id_str":"661987849902927876","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119655936,"id_str":"663727909119655936","text":"RT @RealMofoChik: Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2474412876,"id_str":"2474412876","name":"Christina Bensworth","screen_name":"C_Bensworth","location":"Cali","url":null,"description":"Latina Beach Bum","protected":false,"verified":false,"followers_count":32085,"friends_count":41869,"listed_count":30,"favourites_count":218,"statuses_count":51599,"created_at":"Fri May 02 18:56:34 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"010608","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462307874387927040\/t_8rNE1v.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462307874387927040\/t_8rNE1v.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570747574392639488\/5ZJTQjFD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570747574392639488\/5ZJTQjFD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474412876\/1421341878","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:26:40 +0000 2015","id":661987948011765760,"id_str":"661987948011765760","text":"Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\/ud6aMHckPw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946396400,"id_str":"2946396400","name":"\ue327Mal\u00f8ne $$$\ue327","screen_name":"RealMofoChik","location":null,"url":"http:\/\/TheSuperiorApparel.com","description":"kiss me where you miss me ;*","protected":false,"verified":false,"followers_count":4909,"friends_count":2777,"listed_count":8,"favourites_count":87,"statuses_count":68,"created_at":"Sun Dec 28 19:59:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946396400\/1419797187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":109,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}},{"id":661987849902927876,"id_str":"661987849902927876","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[103,126]}],"user_mentions":[{"screen_name":"RealMofoChik","name":"\ue327Mal\u00f8ne $$$\ue327","id":2946396400,"id_str":"2946396400","indices":[3,16]}],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"},{"id":661987849902927876,"id_str":"661987849902927876","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119598592,"id_str":"663727909119598592","text":"Je capote full parce que j'ai pas le temps de voir les gens que j'aime :(","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36508394,"id_str":"36508394","name":"Val\u00e9rie Caya","screen_name":"Queen__V","location":"Qc\/Canada","url":"http:\/\/facebook.com\/vcaya","description":"\u00c9tudiante en litt\u00e9rature, assez calme, pas mal drole et maladroite dans la vie. Montr\u00e9alaise d'adoption, \u2665","protected":false,"verified":false,"followers_count":196,"friends_count":773,"listed_count":2,"favourites_count":24,"statuses_count":2581,"created_at":"Wed Apr 29 22:46:04 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469447193535860737\/G19FKKdb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469447193535860737\/G19FKKdb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36508394\/1426227433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123858432,"id_str":"663727909123858432","text":"RT @GH16tv5: GH MARTA 27450 https:\/\/t.co\/BM5xERghik","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615466661,"id_str":"615466661","name":"Amandista Risaaa","screen_name":"MaitelaCuqui","location":"Mirador de Montepinar. Madrid","url":"http:\/\/www.MeCaigoMuerta.com","description":"Las divas de nacen, no se nacen. Han y Amanda las divas de GH 16","protected":false,"verified":false,"followers_count":5680,"friends_count":446,"listed_count":14,"favourites_count":404,"statuses_count":7292,"created_at":"Fri Jun 22 19:40:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679829818\/3eaf0187518df278e2be8ffa29acf015.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679829818\/3eaf0187518df278e2be8ffa29acf015.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651704320061218816\/xcQqtOmA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651704320061218816\/xcQqtOmA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615466661\/1373572407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:15 +0000 2015","id":663727557079121920,"id_str":"663727557079121920","text":"GH MARTA 27450 https:\/\/t.co\/BM5xERghik","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4120836688,"id_str":"4120836688","name":"GH MARTA al 27450","screen_name":"GH16tv5","location":"Guadalix de la Sierra, Madrid","url":null,"description":"#TeamLoser #TeamAmanda #TeamRaquel","protected":false,"verified":false,"followers_count":74,"friends_count":96,"listed_count":0,"favourites_count":290,"statuses_count":1506,"created_at":"Thu Nov 05 17:14:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317730033455104\/YN2w_xGS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317730033455104\/YN2w_xGS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4120836688\/1446744653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662431597401128960,"quoted_status_id_str":"662431597401128960","quoted_status":{"created_at":"Fri Nov 06 00:49:34 +0000 2015","id":662431597401128960,"id_str":"662431597401128960","text":"\u00bfQui\u00e9n quieres que sea la pr\u00f3xima expulsada?\nRT- Raquel\nFAV- Marta\nMenci\u00f3n- Sof\u00eda\n#Gala9GH16 https:\/\/t.co\/USFW9w5lwg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2449509001,"id_str":"2449509001","name":"Pitx\u00edn Aritzista \u2764\ufe0f","screen_name":"_JackGH","location":"\u2022COMENTANDO GH, GHVip y SV\u2022","url":null,"description":"Angloespa\u00f1ol que comenta todo tipo de TV. Chirlista \u263a\ufe0f\u270c | Cul\u00e9 \u2764\ufe0f\u2764\ufe0f | ESC \u2b50\ufe0f | #TeamPack ARITZISTA #TeamMafia #TeamHaritz","protected":false,"verified":false,"followers_count":1182,"friends_count":292,"listed_count":5,"favourites_count":11217,"statuses_count":13203,"created_at":"Thu Apr 17 10:45:10 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9E2E3D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652144119230398464\/92dB8Ffg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652144119230398464\/92dB8Ffg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2449509001\/1397731871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Gala9GH16","indices":[82,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662431585917095936,"id_str":"662431585917095936","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFuBIaWUAAyjQj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFuBIaWUAAyjQj.jpg","url":"https:\/\/t.co\/USFW9w5lwg","display_url":"pic.twitter.com\/USFW9w5lwg","expanded_url":"http:\/\/twitter.com\/_JackGH\/status\/662431597401128960\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":221,"resize":"fit"},"small":{"w":300,"h":221,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662431585917095936,"id_str":"662431585917095936","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFuBIaWUAAyjQj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFuBIaWUAAyjQj.jpg","url":"https:\/\/t.co\/USFW9w5lwg","display_url":"pic.twitter.com\/USFW9w5lwg","expanded_url":"http:\/\/twitter.com\/_JackGH\/status\/662431597401128960\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":221,"resize":"fit"},"small":{"w":300,"h":221,"resize":"fit"}}},{"id":662431594662248448,"id_str":"662431594662248448","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFuBo_WwAAyam9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFuBo_WwAAyam9.jpg","url":"https:\/\/t.co\/USFW9w5lwg","display_url":"pic.twitter.com\/USFW9w5lwg","expanded_url":"http:\/\/twitter.com\/_JackGH\/status\/662431597401128960\/photo\/1","type":"photo","sizes":{"large":{"w":748,"h":387,"resize":"fit"},"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":662431596130213888,"id_str":"662431596130213888","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFuBudWIAAYyR5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFuBudWIAAYyR5.jpg","url":"https:\/\/t.co\/USFW9w5lwg","display_url":"pic.twitter.com\/USFW9w5lwg","expanded_url":"http:\/\/twitter.com\/_JackGH\/status\/662431597401128960\/photo\/1","type":"photo","sizes":{"large":{"w":748,"h":387,"resize":"fit"},"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":310,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BM5xERghik","expanded_url":"https:\/\/twitter.com\/_jackgh\/status\/662431597401128960","display_url":"twitter.com\/_jackgh\/status\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BM5xERghik","expanded_url":"https:\/\/twitter.com\/_jackgh\/status\/662431597401128960","display_url":"twitter.com\/_jackgh\/status\u2026","indices":[28,51]}],"user_mentions":[{"screen_name":"GH16tv5","name":"GH MARTA al 27450","id":4120836688,"id_str":"4120836688","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123842048,"id_str":"663727909123842048","text":"when u make the most popular post in the fb event page of a party. you become the most important person at the party.they cant kick you out","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2161866822,"id_str":"2161866822","name":"the quiet pack","screen_name":"hairyconfucius","location":null,"url":"https:\/\/hairyconfucius.bandcamp.com\/","description":"shhh","protected":false,"verified":false,"followers_count":282,"friends_count":370,"listed_count":5,"favourites_count":2022,"statuses_count":1712,"created_at":"Tue Oct 29 00:32:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181602117\/hOEv9qhp.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181602117\/hOEv9qhp.png","profile_background_tile":true,"profile_link_color":"C70A7B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661654527431454720\/Qryhl7Zv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661654527431454720\/Qryhl7Zv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2161866822\/1432012746","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144776704,"id_str":"663727909144776704","text":"RT @odineko: Hedy Lamarr, un Doodle per il 101\u00b0 dell\u2019attrice che invent\u00f2 lo spread spectrum | https:\/\/t.co\/XQ1ZNjkA2c #Apple","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3890908881,"id_str":"3890908881","name":"Giulia","screen_name":"GiuliaVentu92","location":"Ravenna, Emilia Romagna","url":null,"description":"Studentessa #Marketing e #Pubblicit\u00e0 per le Organizzazioni","protected":false,"verified":false,"followers_count":61,"friends_count":94,"listed_count":4,"favourites_count":85,"statuses_count":73,"created_at":"Wed Oct 07 15:02:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651777189512368128\/6ETzxv3Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651777189512368128\/6ETzxv3Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3890908881\/1444232592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:25 +0000 2015","id":663719545652293633,"id_str":"663719545652293633","text":"Hedy Lamarr, un Doodle per il 101\u00b0 dell\u2019attrice che invent\u00f2 lo spread spectrum | https:\/\/t.co\/XQ1ZNjkA2c #Apple","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175797834,"id_str":"175797834","name":"iNeko","screen_name":"odineko","location":"Milano \/ Riva del Garda","url":"http:\/\/www.ineko.it","description":"officine digitali iNeko | e.motions technologies since 1999 | BPM & DMS solutions | compliance & security IT","protected":false,"verified":false,"followers_count":273,"friends_count":135,"listed_count":88,"favourites_count":72,"statuses_count":87997,"created_at":"Sat Aug 07 17:01:03 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580368815277506561\/wcHdTYrb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580368815277506561\/wcHdTYrb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175797834\/1398289729","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Apple","indices":[105,111]}],"urls":[{"url":"https:\/\/t.co\/XQ1ZNjkA2c","expanded_url":"http:\/\/ift.tt\/1SDk2KI","display_url":"ift.tt\/1SDk2KI","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Apple","indices":[118,124]}],"urls":[{"url":"https:\/\/t.co\/XQ1ZNjkA2c","expanded_url":"http:\/\/ift.tt\/1SDk2KI","display_url":"ift.tt\/1SDk2KI","indices":[94,117]}],"user_mentions":[{"screen_name":"odineko","name":"iNeko","id":175797834,"id_str":"175797834","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080039665"} +{"delete":{"status":{"id":646203511445786624,"id_str":"646203511445786624","user_id":3294379438,"user_id_str":"3294379438"},"timestamp_ms":"1447080039737"}} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115453440,"id_str":"663727909115453440","text":"@FinessKingU Wya","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727240333668352,"in_reply_to_status_id_str":"663727240333668352","in_reply_to_user_id":2766706269,"in_reply_to_user_id_str":"2766706269","in_reply_to_screen_name":"FinessKingU","user":{"id":1471224914,"id_str":"1471224914","name":"BallLikeImTommie","screen_name":"Peo309","location":null,"url":null,"description":"When Shit Don't add up subtract yourself #LordLand |Illinois| 309\/254","protected":false,"verified":false,"followers_count":277,"friends_count":384,"listed_count":0,"favourites_count":79,"statuses_count":104,"created_at":"Fri May 31 03:23:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663220814951616512\/W3yM-4bT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663220814951616512\/W3yM-4bT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1471224914\/1446959138","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FinessKingU","name":"Grizelda","id":2766706269,"id_str":"2766706269","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119631360,"id_str":"663727909119631360","text":"RT @RealMofoChik: Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99711338,"id_str":"99711338","name":"Captain Dabbin","screen_name":"CAPTAlNDABBIN","location":null,"url":null,"description":"dabs r life. #Trippin","protected":false,"verified":false,"followers_count":62574,"friends_count":59500,"listed_count":64,"favourites_count":3723,"statuses_count":7891,"created_at":"Sun Dec 27 13:50:03 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546359246170759168\/YMxmYoxM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546359246170759168\/YMxmYoxM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99711338\/1416953569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:26:40 +0000 2015","id":661987948011765760,"id_str":"661987948011765760","text":"Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\/ud6aMHckPw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946396400,"id_str":"2946396400","name":"\ue327Mal\u00f8ne $$$\ue327","screen_name":"RealMofoChik","location":null,"url":"http:\/\/TheSuperiorApparel.com","description":"kiss me where you miss me ;*","protected":false,"verified":false,"followers_count":4909,"friends_count":2777,"listed_count":8,"favourites_count":87,"statuses_count":68,"created_at":"Sun Dec 28 19:59:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946396400\/1419797187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":109,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}},{"id":661987849902927876,"id_str":"661987849902927876","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[103,126]}],"user_mentions":[{"screen_name":"RealMofoChik","name":"\ue327Mal\u00f8ne $$$\ue327","id":2946396400,"id_str":"2946396400","indices":[3,16]}],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"},{"id":661987849902927876,"id_str":"661987849902927876","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123702784,"id_str":"663727909123702784","text":"\u3075\u3041\u2026\u306d\u3080\u2026\u3000\u3082\u3046\u5bdd\u30e8\u2026","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":479446710,"id_str":"479446710","name":"\u30ab\u30b8\u30ad","screen_name":"kazikibot","location":null,"url":null,"description":"pixiv\u4f01\u753bpixiv\u306b\u3083\u3093\u3053\u8857(\u3074\u304f\u306b\u3083\u3093)\u306e\u30ad\u30e3\u30e9\u3000\u30ab\u30b8\u30ad\u306e\u30dc\u30c3\u30c8\u3067\u3059\u3002\u8b66\u5bdf\u3057\u3068\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":9560,"created_at":"Tue Jan 31 11:44:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1801052674\/57_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1801052674\/57_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909128019970,"id_str":"663727909128019970","text":"RT @186isisa: \u0648\u0638\u0646\u0648\u0627 \u0627\u0646\u0647\u0645 \u0645\u0627\u0646\u0639\u062a\u0647\u0645 \u062d\u0635\u0648\u0646\u0647\u0645 \u0645\u0646 \u0627\u0644\u0644\u0647 \u0641\u0623\u062a\u0627\u0647\u0645 \u0627\u0644\u0644\u0647 \u0645\u0646 \u062d\u064a\u062b \u0644\u0645 \u064a\u062d\u062a\u0633\u0628\u0648\u0627 \n\n#\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3959767515,"id_str":"3959767515","name":"\u2764 \u0627\u0644\u0632\u062d\u0640\u0644","screen_name":"k_xdf","location":"\u062c\u0641\u0627\u0641 \u0641\u064a \u0628\u0644\u0627\u062f\u064a \u0645\u0646 \u0627\u0644\u0645\u0648\u062d\u062f\u064a\u0646","url":null,"description":"\u064a\u0627 \u0623\u0647\u0644 \u0627\u0644\u0623\u0631\u0636 \u0625\u0646 \u0643\u0627\u0646\u062a \u0635\u062f\u0648\u0631\u0643\u0645 \u0643\u0623\u0641\u0626\u062f\u0629 \u0627\u0644\u0637\u064a\u0631 \u0641\u0642\u0644\u0628\u064a \u0643\u0627\u0644\u062d\u062c\u0631 \u0623\u062f\u0639\u0648 \u0644\u064a \u0628\u0627\u0644\u0647\u062f\u0627\u064a\u0629 \u2026","protected":false,"verified":false,"followers_count":324,"friends_count":507,"listed_count":0,"favourites_count":58,"statuses_count":848,"created_at":"Wed Oct 14 22:45:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661903184110178304\/QEx_4Gbp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661903184110178304\/QEx_4Gbp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3959767515\/1446725885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:23 +0000 2015","id":663718276338421760,"id_str":"663718276338421760","text":"\u0648\u0638\u0646\u0648\u0627 \u0627\u0646\u0647\u0645 \u0645\u0627\u0646\u0639\u062a\u0647\u0645 \u062d\u0635\u0648\u0646\u0647\u0645 \u0645\u0646 \u0627\u0644\u0644\u0647 \u0641\u0623\u062a\u0627\u0647\u0645 \u0627\u0644\u0644\u0647 \u0645\u0646 \u062d\u064a\u062b \u0644\u0645 \u064a\u062d\u062a\u0633\u0628\u0648\u0627 \n\n#\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3905923218,"id_str":"3905923218","name":"\u0627\u0633\u062a\u0634\u0647\u0627\u062f\u064a..","screen_name":"186isisa","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0645\u064a\u062a\u0629 \u0644\u0627\u063a\u0633\u0644\u0629 \u0641\u064a\u0647\u0627 \u0648\u0644\u0627\u0643\u0641\u0646..","protected":false,"verified":false,"followers_count":535,"friends_count":68,"listed_count":0,"favourites_count":14,"statuses_count":321,"created_at":"Thu Oct 15 19:42:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659670956261122048\/vkjoAF3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659670956261122048\/vkjoAF3i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3905923218\/1446112785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[{"text":"\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646","indices":[66,92]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0631\u062f\u0646\u064a_\u064a\u0642\u062a\u0644_\u0645\u062f\u0631\u0628\u064a\u0646_\u0627\u0645\u0631\u064a\u0643\u0627\u0646","indices":[80,106]}],"urls":[],"user_mentions":[{"screen_name":"186isisa","name":"\u0627\u0633\u062a\u0634\u0647\u0627\u062f\u064a..","id":3905923218,"id_str":"3905923218","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123850240,"id_str":"663727909123850240","text":"RT @ddlovato: Short!! #AskDemi https:\/\/t.co\/xSdAJ3ZDKE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306506670,"id_str":"306506670","name":"b","screen_name":"dilmerarmy","location":"\u2514A - dilmer af","url":"https:\/\/twitter.com\/dilmerarmy\/status\/616315692355321856","description":"Once I told Demi to sing with her mouth closed and she did \u2022 Demi RTed on 06\/01\/15 such a crazy day \u2022","protected":false,"verified":false,"followers_count":1537,"friends_count":640,"listed_count":83,"favourites_count":1803,"statuses_count":162810,"created_at":"Sat May 28 00:37:16 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465208264133599232\/z7UVAPgi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465208264133599232\/z7UVAPgi.png","profile_background_tile":false,"profile_link_color":"9D9B9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"080D02","profile_text_color":"EB1595","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663490395628785664\/IGXmJCYV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663490395628785664\/IGXmJCYV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306506670\/1447023412","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:17:52 +0000 2015","id":663691974709481472,"id_str":"663691974709481472","text":"Short!! #AskDemi https:\/\/t.co\/xSdAJ3ZDKE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672548,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687263012782080,"quoted_status_id_str":"663687263012782080","quoted_status":{"created_at":"Mon Nov 09 11:59:08 +0000 2015","id":663687263012782080,"id_str":"663687263012782080","text":"@ddlovato long\/short hair? #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":1540099166,"id_str":"1540099166","name":"magg.","screen_name":"maggPTX","location":"ptxjkt","url":null,"description":"yohanes alhamat saragih's #1 stan","protected":false,"verified":false,"followers_count":3659,"friends_count":1006,"listed_count":6,"favourites_count":25384,"statuses_count":20361,"created_at":"Sun Jun 23 04:12:35 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614305476294103041\/ZXTeTuHp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614305476294103041\/ZXTeTuHp.jpg","profile_background_tile":true,"profile_link_color":"657383","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663014331534045184\/CHmF3Glv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663014331534045184\/CHmF3Glv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1540099166\/1447079978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[27,35]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2134,"favorite_count":4298,"entities":{"hashtags":[{"text":"AskDemi","indices":[8,16]}],"urls":[{"url":"https:\/\/t.co\/xSdAJ3ZDKE","expanded_url":"https:\/\/twitter.com\/maggPTX\/status\/663687263012782080","display_url":"twitter.com\/maggPTX\/status\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[22,30]}],"urls":[{"url":"https:\/\/t.co\/xSdAJ3ZDKE","expanded_url":"https:\/\/twitter.com\/maggPTX\/status\/663687263012782080","display_url":"twitter.com\/maggPTX\/status\u2026","indices":[31,54]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115416577,"id_str":"663727909115416577","text":"Get Weather Updates from The Weather Channel. 09:40:39","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743905930,"id_str":"2743905930","name":"26269stwb","screen_name":"26269stwb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":84705,"created_at":"Tue Aug 19 04:06:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909127852032,"id_str":"663727909127852032","text":"\u5168\u7136\u4eba\u3044\u306a\u3044\u3057\u30db\u30fc\u30e0\u306b\u3057\u3088\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042956335,"id_str":"3042956335","name":"\u304a\u30fc\u306b\u3087\u3093","screen_name":"Zenkai_Onyon","location":"\u5175\u5eab\u3001\u3068\u304d\u3069\u304d\u5927\u962a","url":null,"description":"ZENKAI\u3057\u3066\u307e\u3059\u3002 \u3010 \u304a\u30fc\u306b\u3087\u3093\u3055\u3093\u3002 \/ \u3048\uff1f\u3050\u3063\u3055\u3093\uff1f \/ \u4f50\u4f2f\u30d0\u30ae\u30af\u30ed\u30b9 \/ \u9ed2\u7e01\u75be\u8d70\u6ce2\u7d0b\u2642 \u3011\u672c\u57a2 \u3010@_Onyon_\u3011\u97f3\u30b2\u30fc\u306f\u30ea\u30d5\u30ec\u30af\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":155,"friends_count":72,"listed_count":0,"favourites_count":853,"statuses_count":1284,"created_at":"Thu Feb 26 09:01:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659726498442559488\/wTzKFzBl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659726498442559488\/wTzKFzBl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042956335\/1444393126","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909111205888,"id_str":"663727909111205888","text":"@Helm_of_Awe @Real_New_guy The entire black existence\/depth\/perspective could fit on the head of a pin.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663574137177251840,"in_reply_to_status_id_str":"663574137177251840","in_reply_to_user_id":3116119020,"in_reply_to_user_id_str":"3116119020","in_reply_to_screen_name":"Helm_of_Awe","user":{"id":3242109249,"id_str":"3242109249","name":"Howy","screen_name":"Lantern68","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":633,"friends_count":673,"listed_count":39,"favourites_count":11675,"statuses_count":30850,"created_at":"Fri May 08 17:31:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657240625469722624\/9xvAmNi0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657240625469722624\/9xvAmNi0_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Helm_of_Awe","name":"Helm of Awe","id":3116119020,"id_str":"3116119020","indices":[0,12]},{"screen_name":"Real_New_guy","name":"Whitest Goy","id":3158332142,"id_str":"3158332142","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039657"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115445248,"id_str":"663727909115445248","text":"El plebiscito tramposo https:\/\/t.co\/0kdaTnQ1o4 v\u00eda ELTIEMPO","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286868074,"id_str":"286868074","name":"edgar cuero","screen_name":"EdgarcueroO","location":"Woodbridge, Virginia","url":null,"description":"julio 8","protected":false,"verified":false,"followers_count":182,"friends_count":435,"listed_count":1,"favourites_count":54,"statuses_count":7333,"created_at":"Sat Apr 23 21:24:20 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644557790032326656\/Dd9puctN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644557790032326656\/Dd9puctN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/286868074\/1404567876","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0kdaTnQ1o4","expanded_url":"http:\/\/bit.ly\/1MRku9s","display_url":"bit.ly\/1MRku9s","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119463424,"id_str":"663727909119463424","text":"RT @otonnnk: \u7d75\u63cf\u3044\u3066\u308b\u4eba\u306a\u3089\u3072\u3068\u3064\u3050\u3089\u3044\u306f\u3042\u308b\u304b\u306a\u2026\u3068\u601d\u3044\u307e\u3057\u3066\u2026_:(\u00b4\u0f40`\u300d \u2220):_ \u2026 http:\/\/t.co\/edTFdhrkKD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2449704090,"id_str":"2449704090","name":"\u3042\u3044\u308c\u3093","screen_name":"AceRtgmdcne","location":null,"url":null,"description":"AZD Ma1b \\\u2661\u2661\/ 18\u6b73\uff5e \u5357\u5149\u5352.kG\u5352.\u261e\u261e\u261ek.t\u304c\u3044\u3063\u3061\u3070\u30fc\u3093","protected":false,"verified":false,"followers_count":136,"friends_count":130,"listed_count":0,"favourites_count":1176,"statuses_count":2468,"created_at":"Thu Apr 17 13:04:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661147391924436992\/ZKKEGV7l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661147391924436992\/ZKKEGV7l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2449704090\/1446852587","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 07 07:53:55 +0000 2014","id":508523542489464832,"id_str":"508523542489464832","text":"\u7d75\u63cf\u3044\u3066\u308b\u4eba\u306a\u3089\u3072\u3068\u3064\u3050\u3089\u3044\u306f\u3042\u308b\u304b\u306a\u2026\u3068\u601d\u3044\u307e\u3057\u3066\u2026_:(\u00b4\u0f40`\u300d \u2220):_ \u2026 http:\/\/t.co\/edTFdhrkKD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1650110443,"id_str":"1650110443","name":"\u304a\u3068\u306e","screen_name":"otonnnk","location":"\u304a\u3046\u3061","url":"http:\/\/otonokko.tuna.be\/","description":"\u73fe\u5728\u3064\u3076\u3084\u304d\u5c11\u306a\u3081\u3067\u3059\uff01http:\/\/pixiv.me\/otonon","protected":false,"verified":false,"followers_count":114,"friends_count":117,"listed_count":4,"favourites_count":963,"statuses_count":1839,"created_at":"Tue Aug 06 11:06:35 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545774185746673664\/-KoU2_iQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545774185746673664\/-KoU2_iQ.png","profile_background_tile":true,"profile_link_color":"FF0040","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635078914893713408\/cvuWHy8c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635078914893713408\/cvuWHy8c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650110443\/1433748757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7502,"favorite_count":4363,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":508523535459840000,"id_str":"508523535459840000","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","url":"http:\/\/t.co\/edTFdhrkKD","display_url":"pic.twitter.com\/edTFdhrkKD","expanded_url":"http:\/\/twitter.com\/otonnnk\/status\/508523542489464832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1821,"resize":"fit"},"medium":{"w":600,"h":1067,"resize":"fit"},"small":{"w":340,"h":604,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":508523535459840000,"id_str":"508523535459840000","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","url":"http:\/\/t.co\/edTFdhrkKD","display_url":"pic.twitter.com\/edTFdhrkKD","expanded_url":"http:\/\/twitter.com\/otonnnk\/status\/508523542489464832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1821,"resize":"fit"},"medium":{"w":600,"h":1067,"resize":"fit"},"small":{"w":340,"h":604,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"otonnnk","name":"\u304a\u3068\u306e","id":1650110443,"id_str":"1650110443","indices":[3,11]}],"symbols":[],"media":[{"id":508523535459840000,"id_str":"508523535459840000","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","url":"http:\/\/t.co\/edTFdhrkKD","display_url":"pic.twitter.com\/edTFdhrkKD","expanded_url":"http:\/\/twitter.com\/otonnnk\/status\/508523542489464832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1821,"resize":"fit"},"medium":{"w":600,"h":1067,"resize":"fit"},"small":{"w":340,"h":604,"resize":"fit"}},"source_status_id":508523542489464832,"source_status_id_str":"508523542489464832","source_user_id":1650110443,"source_user_id_str":"1650110443"}]},"extended_entities":{"media":[{"id":508523535459840000,"id_str":"508523535459840000","indices":[55,77],"media_url":"http:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/Bw6jdhMCcAANFD6.png","url":"http:\/\/t.co\/edTFdhrkKD","display_url":"pic.twitter.com\/edTFdhrkKD","expanded_url":"http:\/\/twitter.com\/otonnnk\/status\/508523542489464832\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1821,"resize":"fit"},"medium":{"w":600,"h":1067,"resize":"fit"},"small":{"w":340,"h":604,"resize":"fit"}},"source_status_id":508523542489464832,"source_status_id_str":"508523542489464832","source_user_id":1650110443,"source_user_id_str":"1650110443"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140500480,"id_str":"663727909140500480","text":"RT @BABYCLARKYREID: GOODNIGHT EVERYONE \ud83d\udc36\n\n#OTWOLFinallyYours \n#OTWOLWish https:\/\/t.co\/JYEyHWLnii","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3953157020,"id_str":"3953157020","name":"Marnie Woods","screen_name":"dailydoseofcare","location":"Singapore","url":null,"description":null,"protected":false,"verified":false,"followers_count":37,"friends_count":13,"listed_count":2,"favourites_count":11,"statuses_count":6447,"created_at":"Tue Oct 20 02:02:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656291026953310208\/tgKSGlQH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656291026953310208\/tgKSGlQH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:56 +0000 2015","id":663726217493811200,"id_str":"663726217493811200","text":"GOODNIGHT EVERYONE \ud83d\udc36\n\n#OTWOLFinallyYours \n#OTWOLWish https:\/\/t.co\/JYEyHWLnii","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4102348218,"id_str":"4102348218","name":"BABY CLARKY BOY","screen_name":"BABYCLARKYREID","location":"comes out from a paper bag","url":null,"description":"James And Nadine's biological son arf arf","protected":false,"verified":false,"followers_count":1249,"friends_count":183,"listed_count":0,"favourites_count":467,"statuses_count":902,"created_at":"Mon Nov 02 13:56:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661193741932171265\/iInapLp0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661193741932171265\/iInapLp0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4102348218\/1446903008","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":14,"entities":{"hashtags":[{"text":"OTWOLFinallyYours","indices":[22,40]},{"text":"OTWOLWish","indices":[42,52]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725063766577152,"id_str":"663725063766577152","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","url":"https:\/\/t.co\/JYEyHWLnii","display_url":"pic.twitter.com\/JYEyHWLnii","expanded_url":"http:\/\/twitter.com\/BABYCLARKYREID\/status\/663726217493811200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"large":{"w":1024,"h":1009,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725063766577152,"id_str":"663725063766577152","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","url":"https:\/\/t.co\/JYEyHWLnii","display_url":"pic.twitter.com\/JYEyHWLnii","expanded_url":"http:\/\/twitter.com\/BABYCLARKYREID\/status\/663726217493811200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"large":{"w":1024,"h":1009,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLFinallyYours","indices":[42,60]},{"text":"OTWOLWish","indices":[62,72]}],"urls":[],"user_mentions":[{"screen_name":"BABYCLARKYREID","name":"BABY CLARKY BOY","id":4102348218,"id_str":"4102348218","indices":[3,18]}],"symbols":[],"media":[{"id":663725063766577152,"id_str":"663725063766577152","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","url":"https:\/\/t.co\/JYEyHWLnii","display_url":"pic.twitter.com\/JYEyHWLnii","expanded_url":"http:\/\/twitter.com\/BABYCLARKYREID\/status\/663726217493811200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"large":{"w":1024,"h":1009,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663726217493811200,"source_status_id_str":"663726217493811200","source_user_id":4102348218,"source_user_id_str":"4102348218"}]},"extended_entities":{"media":[{"id":663725063766577152,"id_str":"663725063766577152","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGbc5UkAAK4oa.jpg","url":"https:\/\/t.co\/JYEyHWLnii","display_url":"pic.twitter.com\/JYEyHWLnii","expanded_url":"http:\/\/twitter.com\/BABYCLARKYREID\/status\/663726217493811200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"large":{"w":1024,"h":1009,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663726217493811200,"source_status_id_str":"663726217493811200","source_user_id":4102348218,"source_user_id_str":"4102348218"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115416576,"id_str":"663727909115416576","text":"RT @Barcelonawith1D: ESTE HOMBRE PRETENDE MATARME https:\/\/t.co\/909Fp0cyTG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829610443,"id_str":"2829610443","name":"#1DLONDRESMTV","screen_name":"ourheroiszayn","location":null,"url":"http:\/\/i.instagram.com\/malagaloves1d5sos\/","description":"MALAGA. I'm in love with you, and all these little things. Thanks for getting me smiles everyday, love you @onedirection @5SOS \u2764.","protected":false,"verified":false,"followers_count":524,"friends_count":1072,"listed_count":5,"favourites_count":215,"statuses_count":6511,"created_at":"Tue Oct 14 14:49:49 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524215301856980992\/dSLWfigU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524215301856980992\/dSLWfigU.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640624243793874944\/81UCh1uj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640624243793874944\/81UCh1uj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829610443\/1427400479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:07:31 +0000 2015","id":663447777851154432,"id_str":"663447777851154432","text":"ESTE HOMBRE PRETENDE MATARME https:\/\/t.co\/909Fp0cyTG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242719853,"id_str":"242719853","name":"Carla","screen_name":"Barcelonawith1D","location":"Mystic Falls","url":"http:\/\/Instagram.com\/ccarla__","description":"\u00abBelieve in something bigger than yourself, and find your purpose.\u00bb","protected":false,"verified":false,"followers_count":9139,"friends_count":929,"listed_count":79,"favourites_count":3646,"statuses_count":80104,"created_at":"Tue Jan 25 12:49:49 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/884929483\/c204061d3e43bd0fce6162afd1f6cb0c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/884929483\/c204061d3e43bd0fce6162afd1f6cb0c.jpeg","profile_background_tile":true,"profile_link_color":"5D0573","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645227494640078849\/8vWyA34L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645227494640078849\/8vWyA34L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242719853\/1432837651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663447768804012032,"id_str":"663447768804012032","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":376,"resize":"fit"},"medium":{"w":594,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":657,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663447768804012032,"id_str":"663447768804012032","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":376,"resize":"fit"},"medium":{"w":594,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":657,"resize":"fit"}}},{"id":663447775141568512,"id_str":"663447775141568512","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKPIRWIAAPYWC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKPIRWIAAPYWC.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":584,"resize":"fit"},"large":{"w":585,"h":584,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Barcelonawith1D","name":"Carla","id":242719853,"id_str":"242719853","indices":[3,19]}],"symbols":[],"media":[{"id":663447768804012032,"id_str":"663447768804012032","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":376,"resize":"fit"},"medium":{"w":594,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":657,"resize":"fit"}},"source_status_id":663447777851154432,"source_status_id_str":"663447777851154432","source_user_id":242719853,"source_user_id_str":"242719853"}]},"extended_entities":{"media":[{"id":663447768804012032,"id_str":"663447768804012032","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKOwqWsAAKzFV.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":376,"resize":"fit"},"medium":{"w":594,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":657,"resize":"fit"}},"source_status_id":663447777851154432,"source_status_id_str":"663447777851154432","source_user_id":242719853,"source_user_id_str":"242719853"},{"id":663447775141568512,"id_str":"663447775141568512","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUKPIRWIAAPYWC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUKPIRWIAAPYWC.png","url":"https:\/\/t.co\/909Fp0cyTG","display_url":"pic.twitter.com\/909Fp0cyTG","expanded_url":"http:\/\/twitter.com\/Barcelonawith1D\/status\/663447777851154432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":584,"resize":"fit"},"large":{"w":585,"h":584,"resize":"fit"}},"source_status_id":663447777851154432,"source_status_id_str":"663447777851154432","source_user_id":242719853,"source_user_id_str":"242719853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144662016,"id_str":"663727909144662016","text":"RT @gchndp: \u0e41\u0e21\u0e48\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e02\u0e49\u0e2d\u0e40\u0e2a\u0e35\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e19\u0e42\u0e01\u0e23\u0e18\u0e07\u0e48\u0e32\u0e22\u0e2b\u0e32\u0e22\u0e40\u0e23\u0e47\u0e27\u0e04\u0e37\u0e2d\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e43\u0e08\u0e2d\u0e48\u0e2d\u0e19\u0e01\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e0b\u0e36\u0e48\u0e07\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936553140,"id_str":"2936553140","name":"nutnicha","screen_name":"nutnichajang","location":null,"url":"http:\/\/www.facebook.com\/natnicha.keawkamanjan","description":"ID jang2811","protected":false,"verified":false,"followers_count":157,"friends_count":59,"listed_count":0,"favourites_count":193,"statuses_count":801,"created_at":"Sat Dec 20 01:53:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618428799516958720\/5S9-cHVl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618428799516958720\/5S9-cHVl.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658259233067020288\/O45bBZHy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658259233067020288\/O45bBZHy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936553140\/1444322510","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 12 13:38:32 +0000 2015","id":642693779208564736,"id_str":"642693779208564736","text":"\u0e41\u0e21\u0e48\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32\u0e02\u0e49\u0e2d\u0e40\u0e2a\u0e35\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e19\u0e42\u0e01\u0e23\u0e18\u0e07\u0e48\u0e32\u0e22\u0e2b\u0e32\u0e22\u0e40\u0e23\u0e47\u0e27\u0e04\u0e37\u0e2d\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e43\u0e08\u0e2d\u0e48\u0e2d\u0e19\u0e01\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e0b\u0e36\u0e48\u0e07\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":295968945,"id_str":"295968945","name":"\u0e1e\u0e35\u0e48\u0e01\u0e34\u0e49\u0e1a","screen_name":"gchndp","location":null,"url":"https:\/\/Instagram.com\/gchndp\/","description":"@thakarnpanabut\u2661____\u2661","protected":false,"verified":false,"followers_count":3487,"friends_count":100,"listed_count":1,"favourites_count":711,"statuses_count":18243,"created_at":"Mon May 09 23:54:53 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663356250160148480\/n6XqaH3m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663356250160148480\/n6XqaH3m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/295968945\/1446991456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45582,"favorite_count":4982,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gchndp","name":"\u0e1e\u0e35\u0e48\u0e01\u0e34\u0e49\u0e1a","id":295968945,"id_str":"295968945","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080039665"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909111246848,"id_str":"663727909111246848","text":"Bet\nBet\nBet\nBet\nBet https:\/\/t.co\/93LmcciQY6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2872527128,"id_str":"2872527128","name":"IGNANT","screen_name":"KID_FOODSTAMP","location":"Georgia","url":null,"description":"I give no fucks about what you have to say. Please don't be on my dick. Dm for promo","protected":false,"verified":false,"followers_count":18262,"friends_count":5752,"listed_count":34,"favourites_count":10528,"statuses_count":14588,"created_at":"Thu Oct 23 03:33:07 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663548804977795072\/k1qix7Tr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663548804977795072\/k1qix7Tr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2872527128\/1444315503","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663170180864839680,"quoted_status_id_str":"663170180864839680","quoted_status":{"created_at":"Sun Nov 08 01:44:26 +0000 2015","id":663170180864839680,"id_str":"663170180864839680","text":"Get you a Latina.\nGet you a Latina.\nGet you a Latina.\nGet you a Latina.\nGet you a Latina.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3874999092,"id_str":"3874999092","name":"Lili","screen_name":"LMenendez_","location":"Houston, TX","url":"http:\/\/blackulthouston.com","description":null,"protected":false,"verified":false,"followers_count":457,"friends_count":94,"listed_count":2,"favourites_count":215,"statuses_count":441,"created_at":"Tue Oct 13 00:36:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663094980827881472\/TJTkL6RN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663094980827881472\/TJTkL6RN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3874999092\/1446948458","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/93LmcciQY6","expanded_url":"https:\/\/twitter.com\/LMenendez_\/status\/663170180864839680","display_url":"twitter.com\/LMenendez_\/sta\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"lv","timestamp_ms":"1447080039657"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115334656,"id_str":"663727909115334656","text":"\u3042\u3084\u7d0d\u8c46\u3055\u3093\u306b\u6295\u7968\uff01 https:\/\/t.co\/6Bg7MROB1J #\u30cb\u30b3\u751fJK\u30df\u30b9\u30b3\u30f3\u30002075","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2288898727,"id_str":"2288898727","name":"\u304a\u304b\u3081\u7d0d\u8c468\u53f7","screen_name":"8Gpmqb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":131536,"created_at":"Mon Jan 13 01:04:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422534886591700993\/GfnNa25O_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422534886591700993\/GfnNa25O_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30cb\u30b3\u751fJK\u30df\u30b9\u30b3\u30f3","indices":[35,45]}],"urls":[{"url":"https:\/\/t.co\/6Bg7MROB1J","expanded_url":"http:\/\/cirnan.com\/girls\/ayanatou","display_url":"cirnan.com\/girls\/ayanatou","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909149024256,"id_str":"663727909149024256","text":"RT @RealMofoChik: Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1188192379,"id_str":"1188192379","name":"Love Texts","screen_name":"BestLoveTxt","location":null,"url":null,"description":"Be a girl with a mind, a bitch with an attitude and a lady with class.","protected":false,"verified":false,"followers_count":57377,"friends_count":14679,"listed_count":29,"favourites_count":11,"statuses_count":22514,"created_at":"Sun Feb 17 03:15:15 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521347209543962625\/7lQITDEX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521347209543962625\/7lQITDEX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1188192379\/1413133863","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:26:40 +0000 2015","id":661987948011765760,"id_str":"661987948011765760","text":"Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\/ud6aMHckPw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946396400,"id_str":"2946396400","name":"\ue327Mal\u00f8ne $$$\ue327","screen_name":"RealMofoChik","location":null,"url":"http:\/\/TheSuperiorApparel.com","description":"kiss me where you miss me ;*","protected":false,"verified":false,"followers_count":4909,"friends_count":2777,"listed_count":8,"favourites_count":87,"statuses_count":68,"created_at":"Sun Dec 28 19:59:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946396400\/1419797187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":109,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}},{"id":661987849902927876,"id_str":"661987849902927876","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[103,126]}],"user_mentions":[{"screen_name":"RealMofoChik","name":"\ue327Mal\u00f8ne $$$\ue327","id":2946396400,"id_str":"2946396400","indices":[3,16]}],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"},{"id":661987849902927876,"id_str":"661987849902927876","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039666"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909148880896,"id_str":"663727909148880896","text":"RT @masayukahiro: \u30af\u30a4\u30ba\u6728\u6751\u62d3\u54c9\u3001\u3064\u3068\u3077\u3060\u3051\u697d\u3057\u3093\u3067\u308b\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u308bww https:\/\/t.co\/eBGPMu5CCq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3142614822,"id_str":"3142614822","name":"SMAP(\ufe61\u02c6\ufe40\u02c6\ufe61)\u2661F-mi","screen_name":"FuUmi37","location":null,"url":null,"description":"\u62d3\u54c9\u304f\u3093\u304c\u5927\u597d\u304d\u3067\u3059\u2728\u5468\u308a\u306b\u4e00\u7dd2\u306b\u76db\u308a\u4e0a\u304c\u308c\u308b\u4eba\u304c\u3044\u307e\u305b\u3093\u4ef2\u826f\u304f\u3057\u3066\u9802\u3051\u305f\u3089\u5b09\u3057\u3044\u3067\u3059\u266a\n\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306b\u306f\u4e00\u8a00\u9802\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306e\u65b9\u306f\u3059\u307f\u307e\u305b\u3093\u304c\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u2661\u4e8c\u306e\u8155\u4f1aNo.53.\uff61.:*\u2661","protected":false,"verified":false,"followers_count":130,"friends_count":161,"listed_count":1,"favourites_count":2852,"statuses_count":9055,"created_at":"Mon Apr 06 23:20:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649700316443578369\/5s0wgpO__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649700316443578369\/5s0wgpO__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3142614822\/1446895111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:23 +0000 2015","id":663719031501930496,"id_str":"663719031501930496","text":"\u30af\u30a4\u30ba\u6728\u6751\u62d3\u54c9\u3001\u3064\u3068\u3077\u3060\u3051\u697d\u3057\u3093\u3067\u308b\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u308bww https:\/\/t.co\/eBGPMu5CCq","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2742591146,"id_str":"2742591146","name":"yuka818","screen_name":"masayukahiro","location":"\u3066\u304d\u3068\u3046\u306e\u3066\u3068\u304d\u3068\u3068\u3046\u304d\u3087\u3046","url":null,"description":"\u6e96\u5099\u91ce\u90ce\u3067\u512a\u3057\u3044\u83ef\u5962\u306a\u95bb\u9b54\u69d8\u4e2d\u5c45\u304f\u3093\u3068\u308f\u3061\u3083\u308f\u3061\u3083SMAP5\u4eba\u304c\u3060\u3041\u3044\u3059\u304d(\u02f6\u203e\u1dc4 \u0f0d\u0f0d \u203e\u1dc5\u02f5) SMAP\u3068\u306e\u5947\u8de1\u306f\u3069\u308c\u3082\u5927\u5207\u306a\u5b9d\u7269\u2661 \u4e2d\u5c45\u304f\u3093\u306b\u30ac\u30f3\u898b\u3055\u308c\u3066\u306e\u820c\u307a\u308d\u2661\u30d4\u30fc\u30b92\u56de\u306b\u30b5\u30e0\u30ba\u30a2\u30c3\u30d7\u2661 \u30ef\u30c3\u30c42\/27\u8170\u30b0\u30a4\u30b0\u30a4\u2661\u30b5\u30e0\u30ac6\/6\u6795\u30019\/19\u65c5\u884c\u30bb\u30c3\u30c8\u30ab\u30b5\u30ab\u30b5\u2661 SMAP\u306e\u6b66\u5668\u306f5\u4eba\u3067\u3044\u308b\u3053\u3068\uff01 87\u5e74\u7d44\u2606","protected":false,"verified":false,"followers_count":588,"friends_count":468,"listed_count":3,"favourites_count":2131,"statuses_count":14337,"created_at":"Mon Aug 18 17:45:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663283609562779648\/krB5xmqF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663283609562779648\/krB5xmqF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2742591146\/1441965015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eBGPMu5CCq","expanded_url":"https:\/\/vine.co\/v\/elMtTBLUlHn","display_url":"vine.co\/v\/elMtTBLUlHn","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eBGPMu5CCq","expanded_url":"https:\/\/vine.co\/v\/elMtTBLUlHn","display_url":"vine.co\/v\/elMtTBLUlHn","indices":[47,70]}],"user_mentions":[{"screen_name":"masayukahiro","name":"yuka818","id":2742591146,"id_str":"2742591146","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039666"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132247041,"id_str":"663727909132247041","text":"\u30e2\u30ce\u30ec\u30fc\u30eb\u4e57\u3063\u3066\u3066\u307b\u3068\u3093\u3069\u51fa\u6765\u3066\u305f\u304b\u3089\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103493118,"id_str":"103493118","name":"\u5357\u6b66\u7dda\u5feb\u901f\u5fa9\u6d3b\u8a08\u753b","screen_name":"nambusen","location":"\u795e\u5948\u5ddd\u770c\u5ddd\u5d0e\u5e02","url":"http:\/\/d.hatena.ne.jp\/nambu\/","description":"\u601d\u3063\u305f\u3053\u3068\u3092\u3064\u3076\u3084\u3044\u3066\u307f\u3088\u3046 \u30b8\u30e3\u30f3\u30eb\u306f \u30b5\u30c3\u30ab\u30fc\u3001\u5ddd\u5d0e\u30d5\u30ed\u30f3\u30bf\u30fc\u30ec\uff08\u5ddd\u5d0e\u5e02\u95a2\u9023\uff09\u3001\u30aa\u30d5\u30a3\u30b9\u30ad\u30e5\u30fc\uff08\u5317\u6d77\u9053\u95a2\u9023\uff09\u3001U\u5b57\u5de5\u4e8b\uff08\u6803\u6728\u95a2\u9023\uff09\u3001\u58f0\u512a\u3042\u305f\u308a\u304b\u306a\u30fc","protected":false,"verified":false,"followers_count":454,"friends_count":391,"listed_count":23,"favourites_count":7321,"statuses_count":117946,"created_at":"Sun Jan 10 05:49:18 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445213957473574912\/edMkvvy2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445213957473574912\/edMkvvy2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658644257163468800\/fgeEeC_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658644257163468800\/fgeEeC_J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103493118\/1425523779","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039662"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132042241,"id_str":"663727909132042241","text":"@yyuuto3 \u307e\u305f\u3053\u3093\u3069\u306a\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727005746139136,"in_reply_to_status_id_str":"663727005746139136","in_reply_to_user_id":2916389299,"in_reply_to_user_id_str":"2916389299","in_reply_to_screen_name":"yyuuto3","user":{"id":3814049533,"id_str":"3814049533","name":"\u9678","screen_name":"0529_riku","location":null,"url":null,"description":"\u738b\u5bfa1IA \u30b5\u30c3\u30ab\u30fc#3 \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01\uff01","protected":false,"verified":false,"followers_count":183,"friends_count":199,"listed_count":0,"favourites_count":215,"statuses_count":84,"created_at":"Wed Oct 07 12:03:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651736404632797184\/tdofKVPk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651736404632797184\/tdofKVPk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3814049533\/1444221041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yyuuto3","name":"\u3086\u3045\u3068","id":2916389299,"id_str":"2916389299","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039662"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119483904,"id_str":"663727909119483904","text":"\uc528\u314f\u3139\ubb38\uc704\ub791 \uc778\ud658\uc774\uc880 \ud589\ubcf5\ud558\uac8c\ud574\uc918\ub77c\u3160","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2918150017,"id_str":"2918150017","name":"\ud478\ud478","screen_name":"p_up_u","location":"\uc9d1","url":null,"description":"\ucc28\uc6d0\uc744 \ub118\ub098\ub4dc\ub294 \uc624\ud0c0\ucfe0","protected":false,"verified":false,"followers_count":21,"friends_count":41,"listed_count":0,"favourites_count":193,"statuses_count":1849,"created_at":"Thu Dec 04 03:11:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624222105668726784\/2sEgcfYU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624222105668726784\/2sEgcfYU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918150017\/1437805667","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123702785,"id_str":"663727909123702785","text":"RT @ImThatGentleman: #IfWeDate \nYou're mine.\nI'm yours.\nNobody else.\nNo distractions\/interruptions.\nNo one can tear us apart.\nI'll be fait\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2311921789,"id_str":"2311921789","name":"nex","screen_name":"Anekssss","location":"RUGILYNA GONZALES BRIONESXZ","url":null,"description":"Gilynbrns\u2665 Made In England","protected":false,"verified":false,"followers_count":233,"friends_count":149,"listed_count":0,"favourites_count":1052,"statuses_count":7799,"created_at":"Sun Jan 26 14:09:39 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587626055529185281\/LBniND2-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587626055529185281\/LBniND2-.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640534981635239937\/OYMNajko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640534981635239937\/OYMNajko_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:35:13 +0000 2015","id":663560447971471360,"id_str":"663560447971471360","text":"#IfWeDate \nYou're mine.\nI'm yours.\nNobody else.\nNo distractions\/interruptions.\nNo one can tear us apart.\nI'll be faithful to you.\nOnly you.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910828603,"id_str":"910828603","name":"Gentleman's Handbook","screen_name":"ImThatGentleman","location":"Snapchat ImThatGentleman","url":"http:\/\/instagram.com\/iamthatgentleman\/","description":"J\u00e6. Real. Relating. Entertaining. Made In Canada. Hybrid Gentleman With Edge. Tweets About My Life, Love, Inspiration & Funny Shit. TheTwitterEmpire@outlook.com","protected":false,"verified":false,"followers_count":629534,"friends_count":475,"listed_count":1039,"favourites_count":5936,"statuses_count":54910,"created_at":"Sun Oct 28 18:12:25 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533478326669541376\/Hiwn0uGi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533478326669541376\/Hiwn0uGi.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554534561137172480\/A5D0C235_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554534561137172480\/A5D0C235_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910828603\/1404595194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":766,"favorite_count":1407,"entities":{"hashtags":[{"text":"IfWeDate","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IfWeDate","indices":[21,30]}],"urls":[],"user_mentions":[{"screen_name":"ImThatGentleman","name":"Gentleman's Handbook","id":910828603,"id_str":"910828603","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909127892992,"id_str":"663727909127892992","text":"@abcsuho lah emang susah sih nyari yg sreg (\u25cf_\u25cf)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727674594996224,"in_reply_to_status_id_str":"663727674594996224","in_reply_to_user_id":2169492680,"in_reply_to_user_id_str":"2169492680","in_reply_to_screen_name":"abcsuho","user":{"id":2572943947,"id_str":"2572943947","name":"Kiyo","screen_name":"wafelvt","location":null,"url":null,"description":"sonwendy pard- since1994","protected":false,"verified":false,"followers_count":2548,"friends_count":2570,"listed_count":5,"favourites_count":506,"statuses_count":53383,"created_at":"Tue Jun 17 13:35:14 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"940840","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660682305229295616\/DKza3FCd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660682305229295616\/DKza3FCd.png","profile_background_tile":true,"profile_link_color":"940840","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663661509533298688\/68u5cfmY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663661509533298688\/68u5cfmY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572943947\/1446371567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abcsuho","name":"suho","id":2169492680,"id_str":"2169492680","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144649728,"id_str":"663727909144649728","text":"\u2606\u3044\u307e\u51fa\u4f1a\u3044\u6c42\u3081\u3066\u308b\u5973\u306e\u5b50\u3060\u3088\uff01\u2606\n\u30b8\u30e3\u30f3\u30eb:\u5927\u4eba\u306e\u604b\u611b\u5bfe\u8c61\n\u30bf\u30a4\u30c8\u30eb:\u751fAF\u3057\u305f\u3044\u306a\u304a\u5c3b\u306b\u6b32\u3057\u3044\u7de0\u3081\u4ed8\u3051\u25ce\n\u540d\u524d:\u2640\u3048\u3064\u3053\n\u5e74\u9f62:18-19\u6b73\n\u5730\u57df:\u5343\u8449\u770c\u8239\u6a4b\u5e02\n\u5f7c\u5973\u3068\u4f1a\u3044\u305f\u3044\uff1f\u261e\u79c1\u306e\u30d7\u30ed\u30d5\u6b04\u306b\u3042\u308bURL\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\uff01\n\u6708\u66dc\u65e523\u664240\u5206\u306e\u6295\u7a3f\u3067\u3059\u266a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239897730,"id_str":"3239897730","name":"SHION","screen_name":"shion_n02","location":"\u5927\u962a\u5e02","url":"http:\/\/goo.gl\/u7BBpg","description":"20\u6b73\u306eOL\u3067\u3059\u266a\u591c\u306e\u304a\u4ed5\u4e8b\u3082\u5c11\u3057\u304a\u624b\u4f1d\u3044\u3057\u3066\u3044\u307e\u3059\u261c\u98a8\u4fd7\u3058\u3083\u306a\u3044\u304b\u3089\uff57\/24\u6642\u9593\u304b\u307e\u3063\u3066\u304f\u308c\u308b\u7d20\u6575\u306a\u7537\u6027\u52df\u96c6\u4e2d?\/DM\u306f\u7a7a\u3044\u305f\u6642\u9593\u306b\u8fd4\u3057\u307e\u3059\u3002\/spec\u261e\u8eab\u95771580\u3349 \u4f53\u91cd0.048\u3327 \u8996\u529b0.3 \u82e5\u5e72\u6b6f\u4e26\u3073\u60aa\u3044\u3067\u3059\uff57\/\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%\/\u7686\u3055\u3093\u304c\u5e78\u305b\u3067\u3042\u308a\u307e\u3059\u3088\u3046\u306b\u3063\u266a\/\u6c17\u306b\u306a\u308b\u5b50\u304c\u3044\u305f\u3089RT\u2661","protected":false,"verified":false,"followers_count":3503,"friends_count":3634,"listed_count":4,"favourites_count":22,"statuses_count":22342,"created_at":"Mon Jun 08 14:12:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655034573265375232\/JkOJXxNF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655034573265375232\/JkOJXxNF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239897730\/1433948982","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039665"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132079105,"id_str":"663727909132079105","text":"RT @s00182318: \u50d5\u3089\u306f\u5143\u6c17\u306a6\u3064\u5b50\u3060\u3044\u3063 https:\/\/t.co\/7Impyla7L8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128209856,"id_str":"128209856","name":"\u30cf\u30eb\u30aa05","screen_name":"haruoh05","location":null,"url":null,"description":"\u30a2\u30b6\u30e9\u30b7\u306e\u964d\u308b\u8857","protected":false,"verified":false,"followers_count":62,"friends_count":85,"listed_count":1,"favourites_count":1953,"statuses_count":28433,"created_at":"Wed Mar 31 12:51:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656731936895856642\/3xTPaWsH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656731936895856642\/3xTPaWsH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128209856\/1444560325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:16 +0000 2015","id":663723281258688513,"id_str":"663723281258688513","text":"\u50d5\u3089\u306f\u5143\u6c17\u306a6\u3064\u5b50\u3060\u3044\u3063 https:\/\/t.co\/7Impyla7L8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3846790332,"id_str":"3846790332","name":"risao","screen_name":"s00182318","location":null,"url":null,"description":"\u26a0\ufe0e \u3068\u3066\u3082\u3059\u3054\u304f\u30e1\u30c3\u30c1\u30e3\u30a6\u30eb\u30b5\u30a4 \u677e\u30cd\u30bf\u30d0\u30ec\u6ce8\u610f\u26a0\ufe0e","protected":false,"verified":false,"followers_count":2365,"friends_count":296,"listed_count":40,"favourites_count":935,"statuses_count":946,"created_at":"Sat Oct 10 11:23:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654023576547278848\/5bjzw3lZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654023576547278848\/5bjzw3lZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3846790332\/1445958284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":192,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723279484522496,"id_str":"663723279484522496","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","url":"https:\/\/t.co\/7Impyla7L8","display_url":"pic.twitter.com\/7Impyla7L8","expanded_url":"http:\/\/twitter.com\/s00182318\/status\/663723281258688513\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":490,"resize":"fit"},"medium":{"w":600,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1478,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723279484522496,"id_str":"663723279484522496","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","url":"https:\/\/t.co\/7Impyla7L8","display_url":"pic.twitter.com\/7Impyla7L8","expanded_url":"http:\/\/twitter.com\/s00182318\/status\/663723281258688513\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":490,"resize":"fit"},"medium":{"w":600,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1478,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s00182318","name":"risao","id":3846790332,"id_str":"3846790332","indices":[3,13]}],"symbols":[],"media":[{"id":663723279484522496,"id_str":"663723279484522496","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","url":"https:\/\/t.co\/7Impyla7L8","display_url":"pic.twitter.com\/7Impyla7L8","expanded_url":"http:\/\/twitter.com\/s00182318\/status\/663723281258688513\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":490,"resize":"fit"},"medium":{"w":600,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1478,"resize":"fit"}},"source_status_id":663723281258688513,"source_status_id_str":"663723281258688513","source_user_id":3846790332,"source_user_id_str":"3846790332"}]},"extended_entities":{"media":[{"id":663723279484522496,"id_str":"663723279484522496","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzl7VEAAyRDa.jpg","url":"https:\/\/t.co\/7Impyla7L8","display_url":"pic.twitter.com\/7Impyla7L8","expanded_url":"http:\/\/twitter.com\/s00182318\/status\/663723281258688513\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":490,"resize":"fit"},"medium":{"w":600,"h":866,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1478,"resize":"fit"}},"source_status_id":663723281258688513,"source_status_id_str":"663723281258688513","source_user_id":3846790332,"source_user_id_str":"3846790332"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039662"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909148844033,"id_str":"663727909148844033","text":"3\u6642\u9593\u3061\u3087\u3044\u4f11\u61a9\u631f\u307f\u306a\u304c\u3089\u5c0f\u5b66\u751f\u3067\u3082\u3067\u304d\u308b\u3088\u3046\u306a\u4f5c\u696d\u3092(\u7acb\u3063\u305f\u307e\u307e\u3068\u306f\u3044\u3048)\u3059\u308b\u3060\u3051\u30673000\u5186\u5f31\u3082\u3089\u3048\u3061\u3083\u3046\u3082\u3093\u3060\u304b\u3089\u3055\u3042()","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1218336343,"id_str":"1218336343","name":"\u3042\u304b\u3064\u304b","screen_name":"Tc411_1501","location":"\u6210\u5897(TJ-10)\/\u5149\u304c\u4e18(E-38)\u2190\u2192\u516b\u738b\u5b50\u5e02","url":"https:\/\/www.flickr.com\/photos\/136331490@N03\/","description":"\u65c5\/\u4e2d\u592e\u7dda\/\u4e5d\u5dde\/\u5199\u771f\/\u30d0\u30b9\/\u91ce\u7403\/\u30b9\u30af\u30d5\u30a7\u30b9","protected":false,"verified":false,"followers_count":626,"friends_count":303,"listed_count":23,"favourites_count":18596,"statuses_count":72956,"created_at":"Mon Feb 25 12:30:50 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663317982353879041\/GrDAkjTO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663317982353879041\/GrDAkjTO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218336343\/1446547073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039666"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909119631361,"id_str":"663727909119631361","text":"RT @andreobich: Cecilio G spanish feminist icon https:\/\/t.co\/oSMFva7a4x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214151594,"id_str":"214151594","name":"*sigh*","screen_name":"clxuexx","location":"\u2640","url":null,"description":"but this isnt a movie, these are the badlands","protected":false,"verified":false,"followers_count":2028,"friends_count":1084,"listed_count":27,"favourites_count":4375,"statuses_count":96625,"created_at":"Wed Nov 10 18:03:17 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435447376988237824\/hFYVOXCS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435447376988237824\/hFYVOXCS.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661632929978826754\/wFjqA0by_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661632929978826754\/wFjqA0by_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214151594\/1420733513","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:51:30 +0000 2015","id":663715540129718272,"id_str":"663715540129718272","text":"Cecilio G spanish feminist icon https:\/\/t.co\/oSMFva7a4x","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98971597,"id_str":"98971597","name":" Andrea","screen_name":"andreobich","location":"no quiero. ","url":"http:\/\/instagram.com\/andreobich","description":null,"protected":false,"verified":false,"followers_count":7998,"friends_count":604,"listed_count":110,"favourites_count":25713,"statuses_count":137962,"created_at":"Wed Dec 23 22:17:01 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114075385\/82d97e6772f9cd823f550a064495ed0b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114075385\/82d97e6772f9cd823f550a064495ed0b.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620236335933165569\/WSBt36BL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620236335933165569\/WSBt36BL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98971597\/1419345487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663542821362774016,"quoted_status_id_str":"663542821362774016","quoted_status":{"created_at":"Mon Nov 09 02:25:11 +0000 2015","id":663542821362774016,"id_str":"663542821362774016","text":"me caen bien las feministas porque quieren la igualdad entre sexos\npero ellas follan con mentirosos y yo me quedo a dos velas","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":942049010,"id_str":"942049010","name":"CECILIO CARIES HOE ","screen_name":"cecilioge","location":"BOGATELL","url":null,"description":"F.DOGZ \u00b7 WATCCITURROZ KLAN \u00b7 MPB NOT","protected":false,"verified":false,"followers_count":6307,"friends_count":400,"listed_count":9,"favourites_count":1526,"statuses_count":3943,"created_at":"Sun Nov 11 19:33:48 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/849589182\/df0958ceff8870dafb898545e6a52efa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/849589182\/df0958ceff8870dafb898545e6a52efa.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600808047150243840\/54qtF_32_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600808047150243840\/54qtF_32_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/942049010\/1432078843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":4,"favorite_count":9,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oSMFva7a4x","expanded_url":"https:\/\/twitter.com\/cecilioge\/status\/663542821362774016","display_url":"twitter.com\/cecilioge\/stat\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oSMFva7a4x","expanded_url":"https:\/\/twitter.com\/cecilioge\/status\/663542821362774016","display_url":"twitter.com\/cecilioge\/stat\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"andreobich","name":" Andrea","id":98971597,"id_str":"98971597","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080039659"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909127909376,"id_str":"663727909127909376","text":"@Zul_Zuhair like I said lah, nasib baik I bukan heroin ishh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727572727914496,"in_reply_to_status_id_str":"663727572727914496","in_reply_to_user_id":933963727,"in_reply_to_user_id_str":"933963727","in_reply_to_screen_name":"Zul_Zuhair","user":{"id":283111424,"id_str":"283111424","name":"duapuluhsembilan","screen_name":"Ainabillah","location":null,"url":"http:\/\/instagram.com\/ainabillah","description":"sayang kau lagi murah dari topup aku","protected":false,"verified":false,"followers_count":422,"friends_count":197,"listed_count":3,"favourites_count":4798,"statuses_count":19570,"created_at":"Sat Apr 16 16:06:29 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F1A1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502006945218179072\/_h5gi9A2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502006945218179072\/_h5gi9A2.jpeg","profile_background_tile":true,"profile_link_color":"ED2FED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660391563575472129\/oe7wAy3__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660391563575472129\/oe7wAy3__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283111424\/1446481403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Zul_Zuhair","name":"What do you mean?","id":933963727,"id_str":"933963727","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080039661"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909111222272,"id_str":"663727909111222272","text":"Pink! https:\/\/t.co\/F6f3qV3Jcq","source":"\u003ca href=\"http:\/\/pinterest.com\" rel=\"nofollow\"\u003ePinterest\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402998644,"id_str":"402998644","name":"Make Me Better","screen_name":"mmbetterblog","location":"Indaiatuba, S\u00e3o Paulo","url":"http:\/\/www.makemebetter.com.br\/","description":"Blog Make Me Better By Camila Magalh\u00e3es","protected":false,"verified":false,"followers_count":168,"friends_count":764,"listed_count":1,"favourites_count":818,"statuses_count":1148,"created_at":"Tue Nov 01 21:43:53 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596025386892283904\/-dm0tjB_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596025386892283904\/-dm0tjB_.jpg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620669896028983296\/fxsVf5BR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620669896028983296\/fxsVf5BR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402998644\/1430938623","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F6f3qV3Jcq","expanded_url":"http:\/\/pinterest.com\/pin\/334744184782111838\/","display_url":"pinterest.com\/pin\/3347441847\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039657"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909136306176,"id_str":"663727909136306176","text":"\u30b2\u30fc\u30e0\u696d\u754c\u306e\u6d41\u308c\u3092\u5909\u3048\u305f\u30bd\u30d5\u30c8\u3092\u6559\u3048\u3066\u3010FF\u30fbGTA\u3068\u304b\u3011 https:\/\/t.co\/GCHa1fdPCD","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3747793578,"id_str":"3747793578","name":"\u30cf\u30fc\u30c9\u30b3\u30a2\u30b2\u30fc\u30de\u30fc\u3067\u3044\u306a\u3088\uff20\u30b2\u30fc\u30e0\u901f\u5831","screen_name":"hardcoregame612","location":null,"url":"http:\/\/hardcoregame.blog.jp\/","description":"\u30b2\u30fc\u30e0\u306e\u60c5\u5831\u3092\u53d6\u308a\u6271\u3063\u3066\u307e\u3059\u2193","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":106,"created_at":"Thu Oct 01 12:35:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649564631258664960\/ogqW7d8h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649564631258664960\/ogqW7d8h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3747793578\/1443703286","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GCHa1fdPCD","expanded_url":"http:\/\/hardcoregame.blog.jp\/archives\/1256822.html","display_url":"hardcoregame.blog.jp\/archives\/12568\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039663"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909136297985,"id_str":"663727909136297985","text":"@Asr__rsA \u306a\u3093\u3068\uff01\u5b85\u5efa\u3068\u306f\uff01\u8a73\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(\u00b4\u2299\u03c9\u2299`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726560713674753,"in_reply_to_status_id_str":"663726560713674753","in_reply_to_user_id":321528756,"in_reply_to_user_id_str":"321528756","in_reply_to_screen_name":"Asr__rsA","user":{"id":1277044123,"id_str":"1277044123","name":"\u591c\u97f3@11\/29 \u30c0\u30a4\u30e4\u30aa\u30fc\u30eb\u30b9\u30bf\u30fc","screen_name":"yaoto_3721","location":"\u6674\u308c\u306e\u56fd","url":"http:\/\/twpf.jp\/yaoto_3721","description":"\u591c\u97f3(\u3084\u304a\u3068)\u3067\u3059\u300220\u2191 \u5927\u5b66\u751f \u798f\u5c71\u6f64\/\u5ca1\u672c\u4fe1\u5f66\/KENN\/\u6d6a\u5ddd\u5927\u8f14\/\u6728\u6751\u826f\u5e73\/DABA\/Kiramune\/OLDCODEX\/\u660e\u6cbb\u6771\u4eac\u604b\u4f3d\/\u3046\u305f\u30d7\u30ea\u304c\u597d\u304d\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u3001\u307e\u3061\u3083\u3044(@maccha0azuki)\u304b\u3089 \u798f\u5c71\u6f64\u611b\u3057\u968aNo.1","protected":false,"verified":false,"followers_count":465,"friends_count":453,"listed_count":23,"favourites_count":1500,"statuses_count":44792,"created_at":"Mon Mar 18 07:13:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446912515532795905\/7M1Wj5BO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446912515532795905\/7M1Wj5BO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277044123\/1427826525","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Asr__rsA","name":"\u30a2\u30b5\u30eb@\u4f4e\u6d6e\u4e0a","id":321528756,"id_str":"321528756","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039663"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909115301888,"id_str":"663727909115301888","text":"RT @Gurmeetramrahim: #MSG2onTheTopInRajasthan Everyone full of elation. Everywhere hues of celebration! Majestic craze in Keri (Raj). https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2853040489,"id_str":"2853040489","name":"NIDHI INSAN","screen_name":"InsanNidhi","location":"Govt.Teacher,Dancer[New Delhi]","url":null,"description":"Hmari ankho me Hazoor ka chehra\naor dil me khud Hazoor hon\nHm hmesha rhe unke khyalon me\naor hamari ye arzu kabul zarur ho","protected":false,"verified":false,"followers_count":51,"friends_count":1,"listed_count":0,"favourites_count":585,"statuses_count":668,"created_at":"Sun Oct 12 10:12:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547779925864759296\/UXX0isy6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547779925864759296\/UXX0isy6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853040489\/1419435846","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:04:41 +0000 2015","id":663431965077602304,"id_str":"663431965077602304","text":"#MSG2onTheTopInRajasthan Everyone full of elation. Everywhere hues of celebration! Majestic craze in Keri (Raj). https:\/\/t.co\/927105d0fg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2852359916,"id_str":"2852359916","name":"GURMEET RAM RAHIM","screen_name":"Gurmeetramrahim","location":"sirsa(haryana) India","url":"http:\/\/www.gurmeetramrahim.in","description":"Spiritual Saint\/philanthropist\/versatile singer\/allrounder sportsperson\/film director\/art director\/music director\/script writer\/lyricist\/autobiographer\/DOP\/","protected":false,"verified":true,"followers_count":1399186,"friends_count":0,"listed_count":757,"favourites_count":7,"statuses_count":935,"created_at":"Sat Oct 11 20:50:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2852359916\/1443248390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6355,"favorite_count":6525,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663431906743050240,"id_str":"663431906743050240","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","url":"https:\/\/t.co\/927105d0fg","display_url":"pic.twitter.com\/927105d0fg","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663431965077602304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663431906743050240,"id_str":"663431906743050240","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","url":"https:\/\/t.co\/927105d0fg","display_url":"pic.twitter.com\/927105d0fg","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663431965077602304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[21,45]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[3,19]}],"symbols":[],"media":[{"id":663431906743050240,"id_str":"663431906743050240","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","url":"https:\/\/t.co\/927105d0fg","display_url":"pic.twitter.com\/927105d0fg","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663431965077602304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663431965077602304,"source_status_id_str":"663431965077602304","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"extended_entities":{"media":[{"id":663431906743050240,"id_str":"663431906743050240","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT7zd4UYAA61Lg.jpg","url":"https:\/\/t.co\/927105d0fg","display_url":"pic.twitter.com\/927105d0fg","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663431965077602304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663431965077602304,"source_status_id_str":"663431965077602304","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039658"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144694784,"id_str":"663727909144694784","text":"\u7406\u60f3\u306e\u4e0a\u53f81\u4f4d\u30fb\u5929\u6d77\u7950\u5e0c\u306b\u5b66\u3076\uff01\u7686\u306b\u6155\u308f\u308c\u308b\u300c\u611b\u3055\u308c\u529b\u300d\u306e\u78e8\u304d\u65b9 https:\/\/t.co\/r4xOpHg649","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3738288133,"id_str":"3738288133","name":"\u6709\u6751\u67b6\u7d14\u30d5\u30a1\u30f3","screen_name":"j0088kasumi","location":null,"url":null,"description":"\u6709\u6751\u67b6\u7d14\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059\uff01Twitter\u3067\u76db\u308a\u4e0a\u304c\u308a\u305f\u3044\u3093\u3067\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\uff08o^\u25bd^o)\/","protected":false,"verified":false,"followers_count":133,"friends_count":239,"listed_count":0,"favourites_count":0,"statuses_count":3533,"created_at":"Wed Sep 30 15:40:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650219999643045888\/Y1nyWdbl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650219999643045888\/Y1nyWdbl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3738288133\/1443861102","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r4xOpHg649","expanded_url":"http:\/\/geinouchannel72.seesaa.net\/","display_url":"geinouchannel72.seesaa.net","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039665"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132247040,"id_str":"663727909132247040","text":"cheap hotels s'arenal\nhttps:\/\/t.co\/5X6EqB6dei https:\/\/t.co\/gbQDu6s8gi","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189948677,"id_str":"189948677","name":"Norhisham Rahmat","screen_name":"norhishamrahmat","location":"Masjid Tanah, Malaysia","url":"http:\/\/norhishamrahmat.com","description":"A husband and father of 2 sons exploring ways to make money online.","protected":false,"verified":false,"followers_count":10,"friends_count":7,"listed_count":1,"favourites_count":0,"statuses_count":1853,"created_at":"Sun Sep 12 17:36:17 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1602216335\/rsz_1norhisham_rahmat_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1602216335\/rsz_1norhisham_rahmat_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5X6EqB6dei","expanded_url":"http:\/\/norhishamrahmat.com\/go\/hotel","display_url":"norhishamrahmat.com\/go\/hotel","indices":[22,45]},{"url":"https:\/\/t.co\/gbQDu6s8gi","expanded_url":"http:\/\/youtu.be\/zS2vf1akB4E?a","display_url":"youtu.be\/zS2vf1akB4E?a","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039662"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140570113,"id_str":"663727909140570113","text":"RT @WShelsia: .... http:\/\/t.co\/JaIyexBj74","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2568966880,"id_str":"2568966880","name":"\u0442\u0131\u03b1 q\u03c5\u0454\u03b7\u0442\u03c3s\u03b1 \u2765","screen_name":"Queline__","location":"Almada, Portugal","url":"https:\/\/instagram.com\/iamthewar_\/","description":"Eu gosto de coisas que brilham, de pessoas de luz! De gente que sabe ser sol, mesmo quando a vida est\u00e1 nublada","protected":false,"verified":false,"followers_count":131,"friends_count":49,"listed_count":3,"favourites_count":9570,"statuses_count":9298,"created_at":"Wed May 28 13:20:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663585495402811392\/ZSeO9ph3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663585495402811392\/ZSeO9ph3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2568966880\/1446816939","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 28 21:06:07 +0000 2015","id":648604623872331776,"id_str":"648604623872331776","text":".... http:\/\/t.co\/JaIyexBj74","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2824983160,"id_str":"2824983160","name":"VanessaCh.","screen_name":"WShelsia","location":"Angola","url":null,"description":null,"protected":false,"verified":false,"followers_count":254,"friends_count":81,"listed_count":2,"favourites_count":1784,"statuses_count":2934,"created_at":"Sun Oct 12 12:38:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt-PT","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663665612581945344\/DbHBPSDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663665612581945344\/DbHBPSDr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2824983160\/1447064820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":161,"favorite_count":114,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":648604594465992704,"id_str":"648604594465992704","indices":[5,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":600,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":648604594465992704,"id_str":"648604594465992704","indices":[5,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":600,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}}},{"id":648604594474356736,"id_str":"648604594474356736","indices":[5,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTVUkAA3AcQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTVUkAA3AcQ.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WShelsia","name":"VanessaCh.","id":2824983160,"id_str":"2824983160","indices":[3,12]}],"symbols":[],"media":[{"id":648604594465992704,"id_str":"648604594465992704","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":600,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":648604623872331776,"source_status_id_str":"648604623872331776","source_user_id":2824983160,"source_user_id_str":"2824983160"}]},"extended_entities":{"media":[{"id":648604594465992704,"id_str":"648604594465992704","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTTU8AAwp1Z.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":600,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":648604623872331776,"source_status_id_str":"648604623872331776","source_user_id":2824983160,"source_user_id_str":"2824983160"},{"id":648604594474356736,"id_str":"648604594474356736","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CQBOcTVUkAA3AcQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQBOcTVUkAA3AcQ.jpg","url":"http:\/\/t.co\/JaIyexBj74","display_url":"pic.twitter.com\/JaIyexBj74","expanded_url":"http:\/\/twitter.com\/WShelsia\/status\/648604623872331776\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":648604623872331776,"source_status_id_str":"648604623872331776","source_user_id":2824983160,"source_user_id_str":"2824983160"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140619264,"id_str":"663727909140619264","text":"Piki Piki Piki Piki \ud83c\udfb6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4114154025,"id_str":"4114154025","name":"guadaa","screen_name":"guadaabalsamo","location":null,"url":null,"description":"Never Give Up...\/\/BOCA mi UNICO AMOR \/\/F\u00edjate en tus horrores y despu\u00e9s habla de los m\u00edos ...","protected":false,"verified":false,"followers_count":94,"friends_count":76,"listed_count":0,"favourites_count":52,"statuses_count":173,"created_at":"Wed Nov 04 19:40:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661994128293646336\/np60cJiN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661994128293646336\/np60cJiN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4114154025\/1446768895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909111095297,"id_str":"663727909111095297","text":"hobinya kamu apa?","source":"\u003ca href=\"http:\/\/fti-official.com\" rel=\"nofollow\"\u003eFTI-Official Team\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2898306668,"id_str":"2898306668","name":"Andreas Cahya ","screen_name":"rezky_hci","location":null,"url":"http:\/\/indonesiandark.net","description":"Live is Simple","protected":false,"verified":false,"followers_count":3939,"friends_count":51,"listed_count":2,"favourites_count":0,"statuses_count":109872,"created_at":"Thu Nov 13 10:02:35 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532852582419427329\/_zcgaPxy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532852582419427329\/_zcgaPxy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898306668\/1418522617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080039657"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909149024257,"id_str":"663727909149024257","text":"Mas contentooo No puedo estarrrr :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2170150863,"id_str":"2170150863","name":"\u2605\u2606Facu \u2606\u2605","screen_name":"faku124","location":null,"url":null,"description":"22\u00d7T TALLERES SOS MI VIDA \u2665\u2661\u2665\n ------- KICK BOXING-------","protected":false,"verified":false,"followers_count":30,"friends_count":33,"listed_count":0,"favourites_count":169,"statuses_count":453,"created_at":"Wed Nov 06 00:47:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660142725635919876\/V_UNKa2N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660142725635919876\/V_UNKa2N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2170150863\/1446225257","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080039666"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140459520,"id_str":"663727909140459520","text":"\u77e5\u3063\u3066\u308b\u3057\ud83c\udf1e\u304a\u524d\u304c\u77e5\u3063\u3066\u308b\u304b\u3069\u3046\u304b\u8a66\u3057\u305f\u3060\u3051\u3084\u3057\ud83c\udf1e","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3062513306,"id_str":"3062513306","name":"\u3060\u3118\u3085\u3093(\u30fb\u03c9\u30fb)","screen_name":"dachundachunda","location":"\u7f36\u8a70\u306e\u4e2d","url":null,"description":"\u697d\u3057\u304b\u3063\u305f\u3089\u306a\u3093\u3067\u3082\u3044\u3044(\u30fb\u03c9\u30fb) \u30bd\u30d5\u30a3\u3059\u304d\u5263\u58eb\u597d\u304d(\u30fb\u03c9\u30fb)\u30d8\u30c3\u30c0\u30fc\u306f\u5927\u4e8b\u306a\u5927\u4e8b\u306a\u3074\u3061\u3085\u304b\u3089(\u706c\u00ba\u03c9\u00ba\u706c)\u2669(@pilina_38)","protected":false,"verified":false,"followers_count":150,"friends_count":128,"listed_count":5,"favourites_count":2533,"statuses_count":10010,"created_at":"Thu Mar 05 08:18:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663614888997089281\/C-OX4hIR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663614888997089281\/C-OX4hIR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3062513306\/1444353391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144629249,"id_str":"663727909144629249","text":"RT @GengBBM: Stop falling in love with old memories! Go outside and start making new oneeee!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124746433,"id_str":"124746433","name":"Nedaa' Al idros","screen_name":"nedaaxyz","location":"PJ - KUL","url":null,"description":"ig : sharifahnedaa & i love tigers.","protected":false,"verified":false,"followers_count":715,"friends_count":948,"listed_count":0,"favourites_count":26484,"statuses_count":54737,"created_at":"Sat Mar 20 12:27:27 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/844466965\/2cd36ed9926f68f9788e8326282de42c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/844466965\/2cd36ed9926f68f9788e8326282de42c.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663015338112487425\/c_euuoTm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663015338112487425\/c_euuoTm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124746433\/1444068150","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:14 +0000 2015","id":663726797343748096,"id_str":"663726797343748096","text":"Stop falling in love with old memories! Go outside and start making new oneeee!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302499733,"id_str":"302499733","name":"SiakapKeli","screen_name":"GengBBM","location":"Kuala Lumpur","url":"http:\/\/GengBBM.blogspot.com","description":"Submit secrets: http:\/\/goo.gl\/901po3","protected":false,"verified":false,"followers_count":27852,"friends_count":187,"listed_count":47,"favourites_count":0,"statuses_count":5023,"created_at":"Sat May 21 08:55:56 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CF4944","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622159787\/5lx5wdo6akfjz079mapc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622159787\/5lx5wdo6akfjz079mapc.jpeg","profile_background_tile":true,"profile_link_color":"CF4944","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551371086638510082\/U0AzZImI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551371086638510082\/U0AzZImI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302499733\/1420292266","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GengBBM","name":"SiakapKeli","id":302499733,"id_str":"302499733","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039665"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132070912,"id_str":"663727909132070912","text":"RT @exok_hk: [SCAN] LOVE ME RIGHT(ROMANTIC UNIVERSE) CHANYEOL COVER->https:\/\/t.co\/QpWdySbRAU https:\/\/t.co\/aXD6SkdGhF","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":534162292,"id_str":"534162292","name":"\u0e40\u0e2d\u0e01\u0e34\u0e22\u0e48\u0e32 ","screen_name":"TeeraratR","location":"Exo Planet ","url":null,"description":"EXO BTS Apink Red Velvet \u2764\ufe0f \u0e16\u0e49\u0e32\u0e44\u0e14\u0e49\u0e40\u0e01\u0e34\u0e14\u0e43\u0e2b\u0e21\u0e48\u0e01\u0e47\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19 EXO EXO-L \u0e01\u0e31\u0e19\u0e2d\u0e35\u0e01\u0e19\u0e30 | #HUNHAN\u2764\ufe0f\u0e40\u0e2d\u0e01\u0e34\u0e22\u0e48\u0e32 \u0e02\u0e2d\u0e07\u0e1e\u0e35\u0e48\u0e2e\u0e38\u0e19 \u2764\ufe0f \u0e40\u0e19\u0e01\u0e2d \u0e02\u0e2d\u0e07\u0e19\u0e35\u0e19\u0e35\u0e48 \u2764\ufe0f \u0e22\u0e2d\u0e42\u0e1a \u0e02\u0e2d\u0e07\u0e1e\u0e35\u0e48\u0e0a\u0e32\u0e19 \u2764\ufe0f \u0e25\u0e39\u0e01\u0e2a\u0e32\u0e27\u0e02\u0e2d\u0e07\u0e1b\u0e4a\u0e32\u0e41\u0e1a\u0e04\u2764","protected":false,"verified":false,"followers_count":912,"friends_count":593,"listed_count":5,"favourites_count":23510,"statuses_count":90564,"created_at":"Fri Mar 23 10:57:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660782642619486208\/VDYSqd7c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660782642619486208\/VDYSqd7c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/534162292\/1445100432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:52 +0000 2015","id":663722424920215552,"id_str":"663722424920215552","text":"[SCAN] LOVE ME RIGHT(ROMANTIC UNIVERSE) CHANYEOL COVER->https:\/\/t.co\/QpWdySbRAU https:\/\/t.co\/aXD6SkdGhF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1424250714,"id_str":"1424250714","name":"KISMET","screen_name":"exok_hk","location":"Hong Kong","url":"http:\/\/www.exok-hk.com","description":"EXO-K HONG KONG FANPAGE \ud0a4\uc2a4\uba67","protected":false,"verified":false,"followers_count":6532,"friends_count":35,"listed_count":261,"favourites_count":4,"statuses_count":1364,"created_at":"Sun May 12 23:57:43 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"zh-TW","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"4B92B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581860287470379008\/sm3aznnu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581860287470379008\/sm3aznnu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1424250714\/1427561167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":10,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpWdySbRAU","expanded_url":"http:\/\/www.exok-hk.com\/lmrcy.html","display_url":"exok-hk.com\/lmrcy.html","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663722403923496960,"id_str":"663722403923496960","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":906,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722403923496960,"id_str":"663722403923496960","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":906,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}}},{"id":663722422076506113,"id_str":"663722422076506113","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEBr1VAAETroe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEBr1VAAETroe.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":276,"resize":"fit"},"large":{"w":1024,"h":472,"resize":"fit"},"small":{"w":340,"h":156,"resize":"fit"}}},{"id":663722417961877505,"id_str":"663722417961877505","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEBcgUwAERC3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEBcgUwAERC3w.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpWdySbRAU","expanded_url":"http:\/\/www.exok-hk.com\/lmrcy.html","display_url":"exok-hk.com\/lmrcy.html","indices":[72,95]}],"user_mentions":[{"screen_name":"exok_hk","name":"KISMET","id":1424250714,"id_str":"1424250714","indices":[3,11]}],"symbols":[],"media":[{"id":663722403923496960,"id_str":"663722403923496960","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":906,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}},"source_status_id":663722424920215552,"source_status_id_str":"663722424920215552","source_user_id":1424250714,"source_user_id_str":"1424250714"}]},"extended_entities":{"media":[{"id":663722403923496960,"id_str":"663722403923496960","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEAoNUEAAa3Vh.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":906,"resize":"fit"},"small":{"w":340,"h":300,"resize":"fit"}},"source_status_id":663722424920215552,"source_status_id_str":"663722424920215552","source_user_id":1424250714,"source_user_id_str":"1424250714"},{"id":663722422076506113,"id_str":"663722422076506113","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEBr1VAAETroe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEBr1VAAETroe.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":276,"resize":"fit"},"large":{"w":1024,"h":472,"resize":"fit"},"small":{"w":340,"h":156,"resize":"fit"}},"source_status_id":663722424920215552,"source_status_id_str":"663722424920215552","source_user_id":1424250714,"source_user_id_str":"1424250714"},{"id":663722417961877505,"id_str":"663722417961877505","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEBcgUwAERC3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEBcgUwAERC3w.jpg","url":"https:\/\/t.co\/aXD6SkdGhF","display_url":"pic.twitter.com\/aXD6SkdGhF","expanded_url":"http:\/\/twitter.com\/exok_hk\/status\/663722424920215552\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}},"source_status_id":663722424920215552,"source_status_id_str":"663722424920215552","source_user_id":1424250714,"source_user_id_str":"1424250714"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039662"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909136375808,"id_str":"663727909136375808","text":"Win A Pair Of Black Hunter Wellies RRP \u00a390.00 Closes 16\/11 https:\/\/t.co\/vPhTNGnjxB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310469980,"id_str":"3310469980","name":"Olga Diamond","screen_name":"adcanb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":693,"listed_count":10,"favourites_count":3,"statuses_count":2055,"created_at":"Sat Jun 06 10:30:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626091324417155072\/TnKk4Cq0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626091324417155072\/TnKk4Cq0_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vPhTNGnjxB","expanded_url":"https:\/\/mimagazine.net\/competitions\/win-a-pair-of-black-hunter-wellies-rrp-90-00-closes-1611\/","display_url":"mimagazine.net\/competitions\/w\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039663"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140492288,"id_str":"663727909140492288","text":"@ThickTaekThighs yung istura nya talaga AHAHHAHA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727860251688960,"in_reply_to_status_id_str":"663727860251688960","in_reply_to_user_id":3014228198,"in_reply_to_user_id_str":"3014228198","in_reply_to_screen_name":"ThickTaekThighs","user":{"id":1469961714,"id_str":"1469961714","name":"ST\u2729RLIGHT_KAEL","screen_name":"twinkletaek","location":"\uc720\ud1a0\ud53c\uc544 \u2728","url":null,"description":"You're MY LIGHT @JUNGTW_LEO :: vixx ; romeo ; uniq ; madtown ; got7 :: \u26a0 english101","protected":false,"verified":false,"followers_count":1473,"friends_count":845,"listed_count":9,"favourites_count":15063,"statuses_count":66977,"created_at":"Thu May 30 15:18:31 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600647408800792576\/snVkukJu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600647408800792576\/snVkukJu.png","profile_background_tile":true,"profile_link_color":"D3D3D7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663698696572301312\/QYo0UHMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663698696572301312\/QYo0UHMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1469961714\/1446816129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThickTaekThighs","name":"ST\u2b50RLIGHT_\u25cf\u03c9\u25cf","id":3014228198,"id_str":"3014228198","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909144629248,"id_str":"663727909144629248","text":"\uc9c8\ubb38\uc8fc\uc138\uc694\u3147\u3145\u3147 | https:\/\/t.co\/wwBruKtmgB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426669478,"id_str":"426669478","name":"\ubf50\ub9c8\uc774\ud06c\u00d72","screen_name":"bomi_mic","location":null,"url":null,"description":"APINK\/\ubcf4\ubbf8\/93line...\u2665 \ub208\ub355\ub208\ub355","protected":false,"verified":false,"followers_count":928,"friends_count":199,"listed_count":6,"favourites_count":275,"statuses_count":11698,"created_at":"Fri Dec 02 14:52:03 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633323487159959552\/vNZeiO72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633323487159959552\/vNZeiO72_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426669478\/1442736570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wwBruKtmgB","expanded_url":"http:\/\/ask.fm\/bomi_mic?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","display_url":"ask.fm\/bomi_mic?utm_s\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080039665"} +{"delete":{"status":{"id":548011247695052801,"id_str":"548011247695052801","user_id":93645726,"user_id_str":"93645726"},"timestamp_ms":"1447080039838"}} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909123829760,"id_str":"663727909123829760","text":"RT @RealMofoChik: Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34143417,"id_str":"34143417","name":"Collecting Drugs","screen_name":"CollectingDrugs","location":"WorldWide","url":null,"description":"Enjoy your life. \/\/","protected":false,"verified":false,"followers_count":56492,"friends_count":55151,"listed_count":74,"favourites_count":21817,"statuses_count":39480,"created_at":"Wed Apr 22 02:14:27 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550613801318375424\/qb47u5o4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550613801318375424\/qb47u5o4_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 19:26:40 +0000 2015","id":661987948011765760,"id_str":"661987948011765760","text":"Like\u2764\ufe0f \ud83d\ude0d if u would ROCK these TRIPPY WILD T-shirts\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/ksmawmlIi6 https:\/\/t.co\/ud6aMHckPw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946396400,"id_str":"2946396400","name":"\ue327Mal\u00f8ne $$$\ue327","screen_name":"RealMofoChik","location":null,"url":"http:\/\/TheSuperiorApparel.com","description":"kiss me where you miss me ;*","protected":false,"verified":false,"followers_count":4909,"friends_count":2777,"listed_count":8,"favourites_count":87,"statuses_count":68,"created_at":"Sun Dec 28 19:59:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648285956286582784\/KYnwJX24_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946396400\/1419797187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":109,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}},{"id":661987849902927876,"id_str":"661987849902927876","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksmawmlIi6","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[103,126]}],"user_mentions":[{"screen_name":"RealMofoChik","name":"\ue327Mal\u00f8ne $$$\ue327","id":2946396400,"id_str":"2946396400","indices":[3,16]}],"symbols":[],"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"extended_entities":{"media":[{"id":661987851500957696,"id_str":"661987851500957696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acY5WsAAZhfp.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"},{"id":661987849902927876,"id_str":"661987849902927876","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS_acS8WsAQR-At.jpg","url":"https:\/\/t.co\/ud6aMHckPw","display_url":"pic.twitter.com\/ud6aMHckPw","expanded_url":"http:\/\/twitter.com\/RealMofoChik\/status\/661987948011765760\/photo\/1","type":"photo","sizes":{"medium":{"w":442,"h":480,"resize":"fit"},"small":{"w":340,"h":369,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":442,"h":480,"resize":"fit"}},"source_status_id":661987948011765760,"source_status_id_str":"661987948011765760","source_user_id":2946396400,"source_user_id_str":"2946396400"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039660"} +{"delete":{"status":{"id":663712583137017856,"id_str":"663712583137017856","user_id":3727886057,"user_id_str":"3727886057"},"timestamp_ms":"1447080039944"}} +{"delete":{"status":{"id":661859246015836160,"id_str":"661859246015836160","user_id":633505326,"user_id_str":"633505326"},"timestamp_ms":"1447080039942"}} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909140570112,"id_str":"663727909140570112","text":"Crazy Mom Threw Teen Daughter a NUDE Twister Sex Party! https:\/\/t.co\/PuwDa1MqZk https:\/\/t.co\/75jYg6cnXp","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413356368,"id_str":"2413356368","name":"Boobie Queen","screen_name":"Boobie_Queen_","location":"Detroit, MI","url":"https:\/\/twitter.com\/Boobie_Queen_","description":"Follow ME - RT ME - Fave Me - Love Me\n\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764\u2764","protected":false,"verified":false,"followers_count":8002,"friends_count":1830,"listed_count":18,"favourites_count":0,"statuses_count":18994,"created_at":"Thu Mar 27 00:16:46 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF22BB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617398881945391104\/4tmKSfUB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617398881945391104\/4tmKSfUB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413356368\/1436034354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PuwDa1MqZk","expanded_url":"http:\/\/goo.gl\/zpxNJP","display_url":"goo.gl\/zpxNJP","indices":[56,79]}],"user_mentions":[],"symbols":[],"media":[{"id":663727908897300481,"id_str":"663727908897300481","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBD1WIAE4L4w.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBD1WIAE4L4w.png","url":"https:\/\/t.co\/75jYg6cnXp","display_url":"pic.twitter.com\/75jYg6cnXp","expanded_url":"http:\/\/twitter.com\/Boobie_Queen_\/status\/663727909140570112\/photo\/1","type":"photo","sizes":{"large":{"w":545,"h":273,"resize":"fit"},"medium":{"w":545,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727908897300481,"id_str":"663727908897300481","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBD1WIAE4L4w.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBD1WIAE4L4w.png","url":"https:\/\/t.co\/75jYg6cnXp","display_url":"pic.twitter.com\/75jYg6cnXp","expanded_url":"http:\/\/twitter.com\/Boobie_Queen_\/status\/663727909140570112\/photo\/1","type":"photo","sizes":{"large":{"w":545,"h":273,"resize":"fit"},"medium":{"w":545,"h":273,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080039664"} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132042242,"id_str":"663727909132042242","text":"\u8f9b\u53e3\u30c9\u30e9\u30a4\u30ab\u30ec\u30fc\u2661\n\u304a\u3044\u3057\u304b\u3063\u305f( ^\u03c9^ ) https:\/\/t.co\/zH3U58sSXl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4057344020,"id_str":"4057344020","name":"\u307f\u307b","screen_name":"mihomiho211","location":"tokyo","url":null,"description":"23\u624d\u65b0\u7c73\u4e3b\u5a66\u3002\u6765\u5e744\u6708\u306b\u51fa\u7523\u4e88\u5b9a\u2661\u2661 \u306d\u3053\u3001\u6d0b\u697d\u3001YUI\u3001\u30ab\u30d5\u30a7\u3001\u30c1\u30fc\u30ba\u3001\u3072\u3068\u308a\u3067\u3044\u308b\u3053\u3068\u30fb\u30fb\u30fb\u304c\u3059\u304d\u3002","protected":false,"verified":false,"followers_count":20,"friends_count":34,"listed_count":0,"favourites_count":4,"statuses_count":76,"created_at":"Thu Oct 29 12:08:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660083480504565760\/mUBtCLLk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660083480504565760\/mUBtCLLk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4057344020\/1446121093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727908951715840,"id_str":"663727908951715840","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBECUcAAKhY6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBECUcAAKhY6.jpg","url":"https:\/\/t.co\/zH3U58sSXl","display_url":"pic.twitter.com\/zH3U58sSXl","expanded_url":"http:\/\/twitter.com\/mihomiho211\/status\/663727909132042242\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727908951715840,"id_str":"663727908951715840","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBECUcAAKhY6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBECUcAAKhY6.jpg","url":"https:\/\/t.co\/zH3U58sSXl","display_url":"pic.twitter.com\/zH3U58sSXl","expanded_url":"http:\/\/twitter.com\/mihomiho211\/status\/663727909132042242\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080039662"} +{"delete":{"status":{"id":663727514884243456,"id_str":"663727514884243456","user_id":3021477167,"user_id_str":"3021477167"},"timestamp_ms":"1447080040042"}} +{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727909132201984,"id_str":"663727909132201984","text":"\u0644\u0627\u0627\u0627\u0627 \u064a\u0627 \u0631\u0627\u0642\u0644 \n\u0627\u0642\u0648\u0644 \u0647\u064a\u0648\u0631\u064a\u0646... \n\u0635\u0628\u0631\u064a \u0634\u0648\u0648\u064a\u0647 \u0628\u0633 \u0643\u0644\u0647\u0627 \u0646\u0635 \u0633\u0627\u0639\u0629 \u0648 \u064a\u062c\u064a\u0643 \u0641\u064a\u0636\u0627\u0646 \u0627\u0633\u0645\u0629 \u0627\u0644\u0627\u0643\u0633\u0648 \u0627\u0644\u0632. \ud83d\udc94\ud83c\udf43 https:\/\/t.co\/XAjCiZmEmm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3081428648,"id_str":"3081428648","name":"\u0628\u064a\u0648\u0646\u0627\/\ubcc0\ub098\u2654","screen_name":"exo_hanan","location":"I 'm \uc5d1 \uc18c _L & Army","url":"http:\/\/instagram.com\/hanan_baek97","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0644\u0627 \u064a\u0647\u0645 \u0643\u0645 \u0647\u064a \u0635\u0639\u0628\u0629 \u0628\u0639\u0636 \u0627\u0644\u0623\u0634\u064a\u0627\u0621 \u060c\u0623\u0646\u0627 \u062f\u0627\u0626\u0645\u0627\u064b \u0633\u0623\u0628\u0642\u0649 \u0625\u064a\u062c\u0627\u0628\u064a\u0627\u064b \u0648 \u0623\u0628\u062a\u0633\u0645 \u0643\u0627\u0644\u0623\u062d\u0645\u0642........ \u0628\u0627\u0631\u0643 \u062a\u0634\u0627\u0646\u064a\u0648\u0644^_^","protected":false,"verified":false,"followers_count":182,"friends_count":105,"listed_count":0,"favourites_count":21,"statuses_count":3893,"created_at":"Sat Mar 14 16:01:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662909427926900736\/Mp9ECKb0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662909427926900736\/Mp9ECKb0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3081428648\/1446645619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727883203059712,"id_str":"663727883203059712","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_kHXIAAQ7cj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_kHXIAAQ7cj.jpg","url":"https:\/\/t.co\/XAjCiZmEmm","display_url":"pic.twitter.com\/XAjCiZmEmm","expanded_url":"http:\/\/twitter.com\/exo_hanan\/status\/663727909132201984\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727883203059712,"id_str":"663727883203059712","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_kHXIAAQ7cj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_kHXIAAQ7cj.jpg","url":"https:\/\/t.co\/XAjCiZmEmm","display_url":"pic.twitter.com\/XAjCiZmEmm","expanded_url":"http:\/\/twitter.com\/exo_hanan\/status\/663727909132201984\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":480,"h":800,"resize":"fit"}}},{"id":663727897551720448,"id_str":"663727897551720448","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJAZkWUAALZZp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJAZkWUAALZZp.jpg","url":"https:\/\/t.co\/XAjCiZmEmm","display_url":"pic.twitter.com\/XAjCiZmEmm","expanded_url":"http:\/\/twitter.com\/exo_hanan\/status\/663727909132201984\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080039662"} +{"delete":{"status":{"id":661236425447247872,"id_str":"661236425447247872","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080040171"}} +{"delete":{"status":{"id":580463735350947840,"id_str":"580463735350947840","user_id":290574298,"user_id_str":"290574298"},"timestamp_ms":"1447080040334"}} +{"delete":{"status":{"id":662259378439892992,"id_str":"662259378439892992","user_id":2283644316,"user_id_str":"2283644316"},"timestamp_ms":"1447080040314"}} +{"delete":{"status":{"id":662528417875668992,"id_str":"662528417875668992","user_id":3310584408,"user_id_str":"3310584408"},"timestamp_ms":"1447080040327"}} +{"delete":{"status":{"id":640768842667421697,"id_str":"640768842667421697","user_id":244417170,"user_id_str":"244417170"},"timestamp_ms":"1447080040303"}} +{"delete":{"status":{"id":662557165639462912,"id_str":"662557165639462912","user_id":3987417193,"user_id_str":"3987417193"},"timestamp_ms":"1447080040378"}} +{"delete":{"status":{"id":663727279965659136,"id_str":"663727279965659136","user_id":2273644158,"user_id_str":"2273644158"},"timestamp_ms":"1447080040492"}} +{"delete":{"status":{"id":662240864790532096,"id_str":"662240864790532096","user_id":320950382,"user_id_str":"320950382"},"timestamp_ms":"1447080040629"}} +{"delete":{"status":{"id":663691754227392512,"id_str":"663691754227392512","user_id":3957363193,"user_id_str":"3957363193"},"timestamp_ms":"1447080040588"}} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309749248,"id_str":"663727913309749248","text":"RT @dudu_amorim: Wow! \nGypsy Vanner Horse \nhttp:\/\/t.co\/gWQs8UJ4BS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236041769,"id_str":"3236041769","name":"zuzu","screen_name":"zuzu4414","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":649,"friends_count":70,"listed_count":139,"favourites_count":11596,"statuses_count":39915,"created_at":"Tue May 05 15:09:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663254773647458304\/VP9IfQOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663254773647458304\/VP9IfQOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236041769\/1437394444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 13 02:42:11 +0000 2015","id":642890992249643008,"id_str":"642890992249643008","text":"Wow! \nGypsy Vanner Horse \nhttp:\/\/t.co\/gWQs8UJ4BS","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46288579,"id_str":"46288579","name":"Eduardo Amorim","screen_name":"dudu_amorim","location":"Brazil","url":null,"description":"Love Travel & Photography, Lawyer, Dairy Farmer, Tripadvisor Top Contributor","protected":false,"verified":false,"followers_count":54157,"friends_count":58085,"listed_count":596,"favourites_count":32400,"statuses_count":12958,"created_at":"Thu Jun 11 02:10:31 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658037884222611456\/G7rC1yey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658037884222611456\/G7rC1yey_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46288579\/1438344842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":92,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":468617234873872384,"id_str":"468617234873872384","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","url":"http:\/\/t.co\/gWQs8UJ4BS","display_url":"pic.twitter.com\/gWQs8UJ4BS","expanded_url":"http:\/\/twitter.com\/dudu_amorim\/status\/468617236048269313\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":468617236048269313,"source_status_id_str":"468617236048269313","source_user_id":46288579,"source_user_id_str":"46288579"}]},"extended_entities":{"media":[{"id":468617234873872384,"id_str":"468617234873872384","indices":[26,48],"media_url":"http:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","url":"http:\/\/t.co\/gWQs8UJ4BS","display_url":"pic.twitter.com\/gWQs8UJ4BS","expanded_url":"http:\/\/twitter.com\/dudu_amorim\/status\/468617236048269313\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":468617236048269313,"source_status_id_str":"468617236048269313","source_user_id":46288579,"source_user_id_str":"46288579"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dudu_amorim","name":"Eduardo Amorim","id":46288579,"id_str":"46288579","indices":[3,15]}],"symbols":[],"media":[{"id":468617234873872384,"id_str":"468617234873872384","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","url":"http:\/\/t.co\/gWQs8UJ4BS","display_url":"pic.twitter.com\/gWQs8UJ4BS","expanded_url":"http:\/\/twitter.com\/dudu_amorim\/status\/468617236048269313\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":468617236048269313,"source_status_id_str":"468617236048269313","source_user_id":46288579,"source_user_id_str":"46288579"}]},"extended_entities":{"media":[{"id":468617234873872384,"id_str":"468617234873872384","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BoDc5GxIcAAB252.jpg","url":"http:\/\/t.co\/gWQs8UJ4BS","display_url":"pic.twitter.com\/gWQs8UJ4BS","expanded_url":"http:\/\/twitter.com\/dudu_amorim\/status\/468617236048269313\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":873,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":545,"resize":"fit"},"small":{"w":340,"h":309,"resize":"fit"}},"source_status_id":468617236048269313,"source_status_id_str":"468617236048269313","source_user_id":46288579,"source_user_id_str":"46288579"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322303488,"id_str":"663727913322303488","text":"Pqp tenho que arrumar os slides e fazer o artigo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312883567,"id_str":"312883567","name":"Vit\u00f3ria","screen_name":"infortunada","location":"Rio Pardo","url":"http:\/\/Instagram.com\/Infortunada","description":"Na d\u00favida: vire \u00e0 esquerda! \n\u262d \u2640","protected":false,"verified":false,"followers_count":620,"friends_count":561,"listed_count":9,"favourites_count":1816,"statuses_count":70066,"created_at":"Tue Jun 07 20:28:08 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660221189156028416\/mbhvylh1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660221189156028416\/mbhvylh1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312883567\/1446601724","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305534464,"id_str":"663727913305534464","text":"RT @JstBelowTweetz: The person below gives wonderful advice.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349454380,"id_str":"2349454380","name":"Craig Anderson","screen_name":"canderson1989","location":"New York, NY","url":null,"description":"Engineering Technician","protected":false,"verified":false,"followers_count":629,"friends_count":590,"listed_count":28,"favourites_count":65443,"statuses_count":34366,"created_at":"Tue Feb 18 03:13:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662077826124812288\/h6_njuwR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662077826124812288\/h6_njuwR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349454380\/1392693639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:08 +0000 2015","id":663721234958434304,"id_str":"663721234958434304","text":"The person below gives wonderful advice.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2482499272,"id_str":"2482499272","name":"The Person Below","screen_name":"JstBelowTweetz","location":null,"url":null,"description":"\u2022 Will follow back \u2022 Share the results of these tweets & retweets with us if you like \u2022 Thanks for following \u2022 DM us more Tweet Below ideas \u2022","protected":false,"verified":false,"followers_count":19079,"friends_count":6147,"listed_count":20,"favourites_count":288,"statuses_count":4028,"created_at":"Sun Apr 13 20:53:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455450852837572609\/xHbRZjdr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455450852837572609\/xHbRZjdr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2482499272\/1397423099","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JstBelowTweetz","name":"The Person Below","id":2482499272,"id_str":"2482499272","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305546752,"id_str":"663727913305546752","text":"Hoje \u00e9 meu Anivers\u00e1rio! E Minha Paix\u00e3o \u00e9 Ler @Saraiva e @LivCultura Quem Tem o Melhor Desconto pra mim?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170497350,"id_str":"170497350","name":"Sidney Cleidson ","screen_name":"Sidneycleidson","location":"Pernambuco","url":"http:\/\/about.me\/sidneycleidson","description":"Um Fot\u00f3grafo que tem um grande apre\u00e7o por esta profiss\u00e3o procurando sempre melhorar para registrar os momentos marcantes da vida dos meus Clientes.","protected":false,"verified":false,"followers_count":140,"friends_count":175,"listed_count":6,"favourites_count":8,"statuses_count":574,"created_at":"Sun Jul 25 00:45:18 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440328543449264129\/NuRkwGIb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440328543449264129\/NuRkwGIb.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440327632119267328\/FjfD-9Kc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440327632119267328\/FjfD-9Kc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170497350\/1393817283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Saraiva","name":"Saraiva","id":60742949,"id_str":"60742949","indices":[45,53]},{"screen_name":"LivCultura","name":"Livraria Cultura","id":27968160,"id_str":"27968160","indices":[56,67]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913318109184,"id_str":"663727913318109184","text":"RT @throwbacktw: https:\/\/t.co\/qObhakPVD7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":908942682,"id_str":"908942682","name":"Jaiane","screen_name":"orgulhoamandap","location":" rio grande do sul","url":null,"description":"amanda parisi santovitti dylan o'brien teen wolf \n\n\n\n27\/10\/2012","protected":false,"verified":false,"followers_count":1161,"friends_count":515,"listed_count":2,"favourites_count":523,"statuses_count":58854,"created_at":"Sat Oct 27 21:23:28 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000043524123\/e35dd855012fdbf35562c60cd3afe7f8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000043524123\/e35dd855012fdbf35562c60cd3afe7f8.jpeg","profile_background_tile":false,"profile_link_color":"BA6EE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646327838413574144\/Q2tIMNls_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646327838413574144\/Q2tIMNls_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/908942682\/1443535661","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 18:27:48 +0000 2015","id":660885971471323137,"id_str":"660885971471323137","text":"https:\/\/t.co\/qObhakPVD7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3396685751,"id_str":"3396685751","name":"teen wolf cast","screen_name":"throwbacktw","location":null,"url":null,"description":"cuties (\uff89\u25d5\u30ee\u25d5)\uff89*:\uff65\uff9f\u2727 @luciencastles","protected":false,"verified":false,"followers_count":5898,"friends_count":94,"listed_count":12,"favourites_count":34,"statuses_count":2142,"created_at":"Fri Jul 31 05:47:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626994461868998657\/-vjGUWzM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626994461868998657\/-vjGUWzM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3396685751\/1438322237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660885967184789504,"id_str":"660885967184789504","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","url":"https:\/\/t.co\/qObhakPVD7","display_url":"pic.twitter.com\/qObhakPVD7","expanded_url":"http:\/\/twitter.com\/throwbacktw\/status\/660885971471323137\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":470,"resize":"fit"},"medium":{"w":357,"h":494,"resize":"fit"},"large":{"w":357,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660885967184789504,"id_str":"660885967184789504","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","url":"https:\/\/t.co\/qObhakPVD7","display_url":"pic.twitter.com\/qObhakPVD7","expanded_url":"http:\/\/twitter.com\/throwbacktw\/status\/660885971471323137\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":470,"resize":"fit"},"medium":{"w":357,"h":494,"resize":"fit"},"large":{"w":357,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"throwbacktw","name":"teen wolf cast","id":3396685751,"id_str":"3396685751","indices":[3,15]}],"symbols":[],"media":[{"id":660885967184789504,"id_str":"660885967184789504","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","url":"https:\/\/t.co\/qObhakPVD7","display_url":"pic.twitter.com\/qObhakPVD7","expanded_url":"http:\/\/twitter.com\/throwbacktw\/status\/660885971471323137\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":470,"resize":"fit"},"medium":{"w":357,"h":494,"resize":"fit"},"large":{"w":357,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660885971471323137,"source_status_id_str":"660885971471323137","source_user_id":3396685751,"source_user_id_str":"3396685751"}]},"extended_entities":{"media":[{"id":660885967184789504,"id_str":"660885967184789504","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSvwSR8XAAAT0he.jpg","url":"https:\/\/t.co\/qObhakPVD7","display_url":"pic.twitter.com\/qObhakPVD7","expanded_url":"http:\/\/twitter.com\/throwbacktw\/status\/660885971471323137\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":470,"resize":"fit"},"medium":{"w":357,"h":494,"resize":"fit"},"large":{"w":357,"h":494,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660885971471323137,"source_status_id_str":"660885971471323137","source_user_id":3396685751,"source_user_id_str":"3396685751"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913339101184,"id_str":"663727913339101184","text":"RT @elcosodelapizza: - \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4146583757,"id_str":"4146583757","name":"gustii","screen_name":"Gustavo22641510","location":null,"url":null,"description":"muchos me critican, pocos me superan!!","protected":false,"verified":false,"followers_count":3,"friends_count":28,"listed_count":0,"favourites_count":0,"statuses_count":26,"created_at":"Mon Nov 09 04:15:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663587564847308800\/IMF-bIV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663587564847308800\/IMF-bIV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4146583757\/1447044345","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:07 +0000 2015","id":663727269194563586,"id_str":"663727269194563586","text":"- \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834702151,"id_str":"834702151","name":"cosito de la pizza","screen_name":"elcosodelapizza","location":null,"url":"http:\/\/es.favstar.fm\/users\/elcosodelapizza","description":"Me llamo tr\u00edpode. Sirvo para que el queso no se pegue en la caja.\r\n\r\nCuenta oficial, cuidado con las cuentas falsas por favor. Si ven cuenta falsas reporten.","protected":false,"verified":false,"followers_count":3167621,"friends_count":428,"listed_count":1400,"favourites_count":165734,"statuses_count":29426,"created_at":"Thu Sep 20 03:45:21 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834702151\/1398224448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":269,"favorite_count":129,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elcosodelapizza","name":"cosito de la pizza","id":834702151,"id_str":"834702151","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322221568,"id_str":"663727913322221568","text":"\u30aa\u30fc\u30d7\u30f3\uff01\n#\u6e0b\u8c37 #\u30d3\u30b8\u30e7\u30f3 \u306b\u51fa\u6f14\uff01\n\u30a8\u30f3\u30c8\u30e9\u30f3\u30b9\u306b\u3066\u300a\u30d0\u30eb\u306e #\u30b2\u30b9\u30c8 \u3067\u30d0\u30eb\u30fc\u30f3\u300b\u3067\u30b2\u30b9\u30c8\u6599\u91d1\uff01\n\u26401500\/1D\n\u26421500\/1D\n\n#\u30af\u30e9\u30d6 #\u30d1\u30fc\u30c6\u30a3\u30fc #\u30d3\u30b8\u30e7\u30f3 #ALLMIX 10","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240706882,"id_str":"240706882","name":"DJ BAL","screen_name":"DJBaaaL","location":null,"url":null,"description":"\u516d\u672c\u6728\u2022\u6e0b\u8c37\u3092\u4e2d\u5fc3\u306bDJ\u3092\u3057\u3066\u3044\u307e\u3059\uff01\u305f\u307e\u306b\u5730\u65b9\u306b\u3082\u51fa\u6ca1\u3057\u307e\u3059\uff01 \u516d\u672c\u6728\/SIX\u2022\u30a8\u30b9\u30d7\u30ea\u2022IBEX\u20227SENSE\u2022HIVE\u2022NEWPLANET \u6e0b\u8c37\/ATOM\u2022HARLEM\u2022CAMELOT\u2022VISION\u2022DMZ\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(^^)","protected":false,"verified":false,"followers_count":5421,"friends_count":5205,"listed_count":27,"favourites_count":191,"statuses_count":38051,"created_at":"Thu Jan 20 15:12:04 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631766632944107520\/3lnzCg3V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631766632944107520\/3lnzCg3V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240706882\/1439649175","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6e0b\u8c37","indices":[6,9]},{"text":"\u30d3\u30b8\u30e7\u30f3","indices":[10,15]},{"text":"\u30b2\u30b9\u30c8","indices":[34,38]},{"text":"\u30af\u30e9\u30d6","indices":[72,76]},{"text":"\u30d1\u30fc\u30c6\u30a3\u30fc","indices":[77,83]},{"text":"\u30d3\u30b8\u30e7\u30f3","indices":[84,89]},{"text":"ALLMIX","indices":[90,97]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913313914880,"id_str":"663727913313914880","text":"@zencidervis cem k\u00fc\u00e7\u00fck'\u00fc hi\u00e7 sevmem ama bir program yapt\u0131lar schr\u00f6dinger'in kedisi diye, \u00e7ok umutluydum ama ne olduysa 4 b\u00f6l\u00fcmde bitirdiler.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726939757260800,"in_reply_to_status_id_str":"663726939757260800","in_reply_to_user_id":3701546655,"in_reply_to_user_id_str":"3701546655","in_reply_to_screen_name":"zencidervis","user":{"id":269034586,"id_str":"269034586","name":"Ay\u015fe Bey","screen_name":"aysebeyligi","location":".buralar hep yol, gidelim.","url":null,"description":".bu hayat benim 'tabu'lu mal\u0131m.","protected":false,"verified":false,"followers_count":733,"friends_count":131,"listed_count":6,"favourites_count":153,"statuses_count":29911,"created_at":"Sun Mar 20 00:06:35 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486973892192239616\/PZDB9ofn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486973892192239616\/PZDB9ofn.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621803635966615553\/8ZXPed7v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621803635966615553\/8ZXPed7v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269034586\/1430823514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zencidervis","name":"M. Fatih Kutan","id":3701546655,"id_str":"3701546655","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080040659"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305509888,"id_str":"663727913305509888","text":"RT @Frank_Cuesta: SEGUIMOS PELEANDO POR JUSTICIA! Un d\u00eda mas y hasta que pueda irse a casa con sus hijos #FREEYUYEE 515","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1959064585,"id_str":"1959064585","name":"Sonia C\u00e1novas","screen_name":"SoniaCnovas","location":"Totana, Regi\u00f3n de Murcia","url":null,"description":"Animalista\nGemelier\n25\/09\/15 the best day of my life\n#FREEYUYEE\nFrank Cuesta-Santi Serra\n3\u2b50de Santi","protected":false,"verified":false,"followers_count":102,"friends_count":93,"listed_count":1,"favourites_count":1385,"statuses_count":341,"created_at":"Sun Oct 13 16:41:58 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0131E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000093866595\/ffc4650527004f6507aff1a5d65b85e2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000093866595\/ffc4650527004f6507aff1a5d65b85e2.jpeg","profile_background_tile":true,"profile_link_color":"E9F028","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655736909470257152\/ZOfSwkjB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655736909470257152\/ZOfSwkjB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1959064585\/1443451995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:54 +0000 2015","id":663723946605346818,"id_str":"663723946605346818","text":"SEGUIMOS PELEANDO POR JUSTICIA! Un d\u00eda mas y hasta que pueda irse a casa con sus hijos #FREEYUYEE 515","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138023605,"id_str":"138023605","name":"Frank Cuesta","screen_name":"Frank_Cuesta","location":"Thailand","url":"http:\/\/www.youtube.com\/NATURALFRANK","description":"Entrenador de tenis al que le gustan los bichos","protected":false,"verified":true,"followers_count":439554,"friends_count":0,"listed_count":729,"favourites_count":2,"statuses_count":2815,"created_at":"Wed Apr 28 12:20:54 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/531852523\/face2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/531852523\/face2.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649692620558471168\/KVToRNgJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649692620558471168\/KVToRNgJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138023605\/1443733510","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":199,"favorite_count":213,"entities":{"hashtags":[{"text":"FREEYUYEE","indices":[89,99]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FREEYUYEE","indices":[107,117]}],"urls":[],"user_mentions":[{"screen_name":"Frank_Cuesta","name":"Frank Cuesta","id":138023605,"id_str":"138023605","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305509889,"id_str":"663727913305509889","text":"RT @ManuelaCarmena: As\u00ed ha sido el tradicional Voto de la Villa para la Almudena, respetuoso con creyentes y no creyentes: https:\/\/t.co\/e8f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":470294936,"id_str":"470294936","name":"Kikekom","screen_name":"Kikekom","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":423,"friends_count":1283,"listed_count":10,"favourites_count":4347,"statuses_count":22051,"created_at":"Sat Jan 21 16:17:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648272526825664512\/eZWyadla_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648272526825664512\/eZWyadla_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:33 +0000 2015","id":663718321473327105,"id_str":"663718321473327105","text":"As\u00ed ha sido el tradicional Voto de la Villa para la Almudena, respetuoso con creyentes y no creyentes: https:\/\/t.co\/e8fbKhUYWQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663679606893989888,"in_reply_to_status_id_str":"663679606893989888","in_reply_to_user_id":3091376321,"in_reply_to_user_id_str":"3091376321","in_reply_to_screen_name":"ManuelaCarmena","user":{"id":3091376321,"id_str":"3091376321","name":"Manuela Carmena","screen_name":"ManuelaCarmena","location":"Madrid","url":"http:\/\/ahoramadrid.org\/","description":"Alcaldesa de @Madrid. Gobernar es escuchar. Tuiteamos en equipo. Agenda p\u00fablica: https:\/\/t.co\/GVGxM4D3MG","protected":false,"verified":true,"followers_count":308042,"friends_count":402,"listed_count":1649,"favourites_count":126,"statuses_count":1117,"created_at":"Fri Mar 13 17:23:02 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589887350303502336\/oUrBLUCv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589887350303502336\/oUrBLUCv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3091376321\/1436525283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":54,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/e8fbKhUYWQ","expanded_url":"http:\/\/bit.ly\/1Sc2GDX","display_url":"bit.ly\/1Sc2GDX","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/e8fbKhUYWQ","expanded_url":"http:\/\/bit.ly\/1Sc2GDX","display_url":"bit.ly\/1Sc2GDX","indices":[123,140]}],"user_mentions":[{"screen_name":"ManuelaCarmena","name":"Manuela Carmena","id":3091376321,"id_str":"3091376321","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913339133952,"id_str":"663727913339133952","text":"On the other hand y'all phones stay boomin","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347274527,"id_str":"347274527","name":"Poltergei$t","screen_name":"Autopilot_Jet","location":"Souf Kak","url":null,"description":"S\/O to my lame brother @KeeFlair ..Keep 3 eyes wide open cause I know these niggas be scheming","protected":false,"verified":false,"followers_count":2086,"friends_count":1863,"listed_count":23,"favourites_count":12800,"statuses_count":184997,"created_at":"Tue Aug 02 15:00:48 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023961714\/db648f6738a7d75b6e143f750f9e2d38.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023961714\/db648f6738a7d75b6e143f750f9e2d38.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663111995009404928\/j51ZVjAJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663111995009404928\/j51ZVjAJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/347274527\/1446760632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913339117568,"id_str":"663727913339117568","text":"Amazon se phone magane par phone ke sat 1 year ki warranty aati he ki nahi","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349016841,"id_str":"2349016841","name":"Priyanka sharma","screen_name":"PPriyanka289","location":"rajasthan","url":null,"description":null,"protected":false,"verified":false,"followers_count":77,"friends_count":83,"listed_count":2,"favourites_count":233,"statuses_count":1623,"created_at":"Mon Feb 17 17:26:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647639800896352257\/7cDL-Ms__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647639800896352257\/7cDL-Ms__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349016841\/1433078994","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309757440,"id_str":"663727913309757440","text":"I posted a new photo to Facebook https:\/\/t.co\/ZWXbGwEirf","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457651371,"id_str":"457651371","name":"Caroline D'Monte","screen_name":"Sweet_surprizes","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":26,"listed_count":0,"favourites_count":2,"statuses_count":214,"created_at":"Sat Jan 07 17:18:12 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/525602911712063488\/86jwwnJM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525602911712063488\/86jwwnJM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457651371\/1414148558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZWXbGwEirf","expanded_url":"http:\/\/fb.me\/1VGF3hMSn","display_url":"fb.me\/1VGF3hMSn","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326522368,"id_str":"663727913326522368","text":"RT @lilwasthere: Blu \u00e8 buio che si vede","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":512372142,"id_str":"512372142","name":"lilaschon","screen_name":"LilaSchon","location":null,"url":"http:\/\/lilaschon.com","description":"non esiste","protected":false,"verified":false,"followers_count":13454,"friends_count":1072,"listed_count":134,"favourites_count":71648,"statuses_count":46686,"created_at":"Fri Mar 02 19:33:05 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"595959","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/808480905\/0a3b1d2eafa8f28b37787a47b34027d9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/808480905\/0a3b1d2eafa8f28b37787a47b34027d9.jpeg","profile_background_tile":false,"profile_link_color":"9B74A6","profile_sidebar_border_color":"A4F5E1","profile_sidebar_fill_color":"BDBDBD","profile_text_color":"C493B6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647768795638046720\/AOTetAKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647768795638046720\/AOTetAKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/512372142\/1443275090","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:35:00 +0000 2015","id":663696287464865793,"id_str":"663696287464865793","text":"Blu \u00e8 buio che si vede","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558842042,"id_str":"558842042","name":"Kalil","screen_name":"lilwasthere","location":null,"url":"https:\/\/soundcloud.com\/lila-k","description":"Sono quella che nota l'inclinazione e raddrizza il quadro appeso nella parete","protected":false,"verified":false,"followers_count":6319,"friends_count":405,"listed_count":67,"favourites_count":26599,"statuses_count":45003,"created_at":"Fri Apr 20 18:23:48 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641321053525012480\/pmITDB4h.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641321053525012480\/pmITDB4h.jpg","profile_background_tile":true,"profile_link_color":"995566","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655672882434088960\/iY9ckszQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655672882434088960\/iY9ckszQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558842042\/1434431811","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lilwasthere","name":"Kalil","id":558842042,"id_str":"558842042","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913317957632,"id_str":"663727913317957632","text":"\u660e\u65e5\u3082\u96e8\u3063\u307d\u3044\u3051\u3069\u3055\u3059\u304c\u306b\u7435\u7436\u6e56\u306e\u6c34\u306b\u307e\u307f\u308c\u305f\u30e8\u30c3\u30c8\u306e\u7528\u610f\u305d\u308d\u305d\u308d\u6d17\u308f\u306a\u00d7\u00d7\u00d7\u306a\u3053\u3068\u306b\u306a\u308b\u3057\u90e8\u5c4b\u5e72\u3057\u7528\u6d17\u5264\u4f7f\u3046\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1615263978,"id_str":"1615263978","name":"H2","screen_name":"masamanag","location":"\u53e4\u90fd","url":null,"description":"ND67\u2192KU\u533b\uff0f\u533b\u30e8\u30c3\u30c8\u26f5(\u2190\u3053\u306e\u7d75\u3067\u4f1d\u308f\u308c)\u3001mdc\uff0f\u6a21\u7bc4\u7684\u30af\u30ba\u5927\u5b66\u751f\uff0f\u75e9\u305b\u305f\u3044\uff0f\u3059\u306a\u3044\u3077\u7d1a\uff0f\u3079\u30fc\u3059\u2193\uff0f\u7269\u7406\u5f31\u8005\uff0f\u4eba\u793e\u306e\u5358\u4f4d\u304c\u6b32\u3057\u3044\u5e74\u9803","protected":false,"verified":false,"followers_count":413,"friends_count":380,"listed_count":13,"favourites_count":10485,"statuses_count":23700,"created_at":"Tue Jul 23 13:37:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583313562359099393\/ed20Uksa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583313562359099393\/ed20Uksa_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309569024,"id_str":"663727913309569024","text":"RT @TimPawlenty: Celebrating 28 years with my sweetie. #luckyguy http:\/\/t.co\/yGxd2uSOig","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3887981540,"id_str":"3887981540","name":"Phillip Ressler","screen_name":"macressler83","location":"Palmdale, CA USA","url":"http:\/\/about.me\/macressler","description":"I am a 32-year old college student. I enjoy news, politics, technology (tech), professional (pro) wrestling, comedy, music, being around family, pets, friends!","protected":false,"verified":false,"followers_count":1818,"friends_count":4999,"listed_count":46,"favourites_count":7444,"statuses_count":6530,"created_at":"Wed Oct 14 04:37:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654261216156606464\/YKnzwS-7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654261216156606464\/YKnzwS-7.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660717559608508417\/tbUcIUsY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660717559608508417\/tbUcIUsY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3887981540\/1444846412","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 19:49:59 +0000 2015","id":653658896431771649,"id_str":"653658896431771649","text":"Celebrating 28 years with my sweetie. #luckyguy http:\/\/t.co\/yGxd2uSOig","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23134068,"id_str":"23134068","name":"Tim Pawlenty","screen_name":"TimPawlenty","location":null,"url":"http:\/\/FSRoundtable.org","description":"CEO of FSR, lucky husband of remarkable woman, proud father of 2, MN Wild fan, former Governor of MN.","protected":false,"verified":true,"followers_count":71317,"friends_count":7,"listed_count":2600,"favourites_count":4,"statuses_count":637,"created_at":"Fri Mar 06 23:14:03 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565218864498106368\/uIblC5FL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565218864498106368\/uIblC5FL.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436258099981066240\/cAP2W1-L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436258099981066240\/cAP2W1-L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23134068\/1414721458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":27,"entities":{"hashtags":[{"text":"luckyguy","indices":[38,47]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653658896310124544,"id_str":"653658896310124544","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","url":"http:\/\/t.co\/yGxd2uSOig","display_url":"pic.twitter.com\/yGxd2uSOig","expanded_url":"http:\/\/twitter.com\/TimPawlenty\/status\/653658896431771649\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1322,"resize":"fit"},"medium":{"w":600,"h":775,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":653658896310124544,"id_str":"653658896310124544","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","url":"http:\/\/t.co\/yGxd2uSOig","display_url":"pic.twitter.com\/yGxd2uSOig","expanded_url":"http:\/\/twitter.com\/TimPawlenty\/status\/653658896431771649\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1322,"resize":"fit"},"medium":{"w":600,"h":775,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"luckyguy","indices":[55,64]}],"urls":[],"user_mentions":[{"screen_name":"TimPawlenty","name":"Tim Pawlenty","id":23134068,"id_str":"23134068","indices":[3,15]}],"symbols":[],"media":[{"id":653658896310124544,"id_str":"653658896310124544","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","url":"http:\/\/t.co\/yGxd2uSOig","display_url":"pic.twitter.com\/yGxd2uSOig","expanded_url":"http:\/\/twitter.com\/TimPawlenty\/status\/653658896431771649\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1322,"resize":"fit"},"medium":{"w":600,"h":775,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"}},"source_status_id":653658896431771649,"source_status_id_str":"653658896431771649","source_user_id":23134068,"source_user_id_str":"23134068"}]},"extended_entities":{"media":[{"id":653658896310124544,"id_str":"653658896310124544","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRJDTY7WwAAY5hJ.jpg","url":"http:\/\/t.co\/yGxd2uSOig","display_url":"pic.twitter.com\/yGxd2uSOig","expanded_url":"http:\/\/twitter.com\/TimPawlenty\/status\/653658896431771649\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1322,"resize":"fit"},"medium":{"w":600,"h":775,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"}},"source_status_id":653658896431771649,"source_status_id_str":"653658896431771649","source_user_id":23134068,"source_user_id_str":"23134068"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913330606081,"id_str":"663727913330606081","text":"RT @Lovega_Balam: LOVEGA itu Dukung Semata-mata @DA2_Ega Selamanya!:* MENANTI EGA DI DAMI CIREBON","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":590851227,"id_str":"590851227","name":"Evii Sapristiani","screen_name":"Evi_Sapristiani","location":"Bandung, Jawa Barat","url":null,"description":"LOVEGA INDONESIA | Support EGA NOVIANTIKA DA2 @DA2_Ega | Line : evisapristiani |\r\nInstagram : @evi_sapristiani","protected":false,"verified":false,"followers_count":1366,"friends_count":423,"listed_count":4,"favourites_count":646,"statuses_count":36805,"created_at":"Sat May 26 09:33:14 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662239861894545408\/9AsmvyxN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662239861894545408\/9AsmvyxN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590851227\/1446725423","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:36:15 +0000 2015","id":663696602092040192,"id_str":"663696602092040192","text":"LOVEGA itu Dukung Semata-mata @DA2_Ega Selamanya!:* MENANTI EGA DI DAMI CIREBON","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3189796171,"id_str":"3189796171","name":"LovEGA BandarLampung","screen_name":"Lovega_Balam","location":"BANDAR LAMPUNG ","url":"http:\/\/www.lovegaind.blogspot.com","description":"Terimakasih Ega 14-09-2015 | From Bandar Lampung Support @Da2_Ega TOP Seventh of DA2 | Founder Of Blog LOVEGA INDONESIA | 59584ECF |","protected":false,"verified":false,"followers_count":1312,"friends_count":153,"listed_count":0,"favourites_count":660,"statuses_count":19874,"created_at":"Sat May 09 12:19:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611868883255844865\/11DOwzry.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611868883255844865\/11DOwzry.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660827882885812224\/e4nO7ba5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660827882885812224\/e4nO7ba5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3189796171\/1445601822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DA2_Ega","name":"Ega (REAL)","id":3011090575,"id_str":"3011090575","indices":[30,38]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lovega_Balam","name":"LovEGA BandarLampung","id":3189796171,"id_str":"3189796171","indices":[3,16]},{"screen_name":"DA2_Ega","name":"Ega (REAL)","id":3011090575,"id_str":"3011090575","indices":[48,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040663"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913343299584,"id_str":"663727913343299584","text":"RT @_____oi2: @rthaill \u0647\u0648 \u0631\u0627\u062d \u0641\u064a \u062f\u0631\u0628\u06c1 \u0648\u0627\u0646\u0622 \u0645\u0627\u0646\u0633\u064a\u062a\u06c1 \n \u3000\u0645\u0646 \u064a\u0648\u0645 \u0648\u062f\u0639\u062a\u06c1 \u0648\u0627\u0646\u0627 \u0627\u0639\u064a\u0634 \u0630\u0643\u0631\u0622\u0647\u06c1 \n \u3000\u0645\u0622 \u0641\u064a\u06c1 \u0644\u062d\u0636\u06c1 \u0639\u0634\u062a\u0647\u0622 \u0645 \u0637\u0631\u064a\u062a\u06c1. \n\u3000\u064a \u0646\u0639\u0645\u06c1 \u0627\u0644\u0646\u0633\u064a\u0627\u0646 \u0648\u0627\u0644\u0644\u0647 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2512906209,"id_str":"2512906209","name":"\u0627\u0644\u0645\u062a\u0627\u0644\u0642\u0629 \u0646\u0648\u0631\u0627 5\/5","screen_name":"Retage324","location":"\u062c\u062f\u0629","url":null,"description":"\u062a\u0628\u0627\u062f\u0644_\u0631\u062a\u0648\u064a\u062a","protected":false,"verified":false,"followers_count":7216,"friends_count":6052,"listed_count":6,"favourites_count":15,"statuses_count":170470,"created_at":"Sun Apr 27 15:50:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662675770528153600\/JGDyAKx7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662675770528153600\/JGDyAKx7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2512906209\/1421406518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 07 17:27:32 +0000 2015","id":651811106722332672,"id_str":"651811106722332672","text":"@rthaill \u0647\u0648 \u0631\u0627\u062d \u0641\u064a \u062f\u0631\u0628\u06c1 \u0648\u0627\u0646\u0622 \u0645\u0627\u0646\u0633\u064a\u062a\u06c1 \n \u3000\u0645\u0646 \u064a\u0648\u0645 \u0648\u062f\u0639\u062a\u06c1 \u0648\u0627\u0646\u0627 \u0627\u0639\u064a\u0634 \u0630\u0643\u0631\u0622\u0647\u06c1 \n \u3000\u0645\u0622 \u0641\u064a\u06c1 \u0644\u062d\u0636\u06c1 \u0639\u0634\u062a\u0647\u0622 \u0645 \u0637\u0631\u064a\u062a\u06c1. \n\u3000\u064a \u0646\u0639\u0645\u06c1 \u0627\u0644\u0646\u0633\u064a\u0627\u0646 \u0648\u0627\u0644\u0644\u0647 \u0645 \u0627\u0646\u0633\u0622\u0647\u06c1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":349309325,"in_reply_to_user_id_str":"349309325","in_reply_to_screen_name":"rthaill","user":{"id":3300813780,"id_str":"3300813780","name":"\u0625\u0643\u062a\u0641\u0627\u0621 ~\u2765","screen_name":"_____oi2","location":null,"url":null,"description":"\u0648\u0627\u0630\u0627 \u062c\u064a\u0640\u0640\u0640\u0640\u0646\u0653\u0640\u0640\u0640\u0640\u0627 \u0644\u0637\u0627\u0631\u064a \u0627\u0644\u062d\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0628 !! \u0627\u0646\u0640\u0640\u0640\u0640\u0640\u0640\u0627 \u062d\u062c\u0627\u0632\u064a\u0647 \u0648 \u0645\u062d\u0628\u0648\u0628\u064a \u0634\u0645\u0627\u0644\u064a","protected":false,"verified":false,"followers_count":3739,"friends_count":4112,"listed_count":3,"favourites_count":11,"statuses_count":3150,"created_at":"Wed Jul 29 20:45:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300813780\/1444239042","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rthaill","name":"\u0631\u062a\u0648\u064a\u062a \u062d\u0627\u0626\u0644\u064a","id":349309325,"id_str":"349309325","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_____oi2","name":"\u0625\u0643\u062a\u0641\u0627\u0621 ~\u2765","id":3300813780,"id_str":"3300813780","indices":[3,12]},{"screen_name":"rthaill","name":"\u0631\u062a\u0648\u064a\u062a \u062d\u0627\u0626\u0644\u064a","id":349309325,"id_str":"349309325","indices":[14,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080040666"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913339068416,"id_str":"663727913339068416","text":"RT @tayoIor: Zendaya looks soooo good .....goodnight","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231470127,"id_str":"231470127","name":"\u2606marty mcfly mae\u2606","screen_name":"tshaymae","location":null,"url":"http:\/\/nextkaratekid.tumblr.com","description":"\u300atee-SHAW-nah may\u300b\u00b0sassy savage shauna\u00b0 #DCPSpring2016 \u2606","protected":false,"verified":false,"followers_count":866,"friends_count":518,"listed_count":3,"favourites_count":43349,"statuses_count":81321,"created_at":"Tue Dec 28 16:22:52 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F2FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653628807\/yfm00tbsl9ghijmp8p4w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653628807\/yfm00tbsl9ghijmp8p4w.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660735216609312768\/kMdak59V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660735216609312768\/kMdak59V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231470127\/1446444059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:47:48 +0000 2015","id":663593813261307904,"id_str":"663593813261307904","text":"Zendaya looks soooo good .....goodnight","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1564298076,"id_str":"1564298076","name":"\ufe0f","screen_name":"tayoIor","location":"ig: tayolor","url":"http:\/\/gluttens.tumblr.com","description":null,"protected":false,"verified":false,"followers_count":3713,"friends_count":187,"listed_count":16,"favourites_count":15285,"statuses_count":22353,"created_at":"Tue Jul 02 23:14:02 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530556307925770240\/ljPmuf-h.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530556307925770240\/ljPmuf-h.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662805324315889665\/QnqAgGrT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662805324315889665\/QnqAgGrT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1564298076\/1446860078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tayoIor","name":"\ufe0f","id":1564298076,"id_str":"1564298076","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913338966016,"id_str":"663727913338966016","text":"\u9280\u6843\u3067\u5229\u4f11\u3061\u3083\u3093\u304d\u305f \u3089\u3063\u304d\u30fc","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39388947,"id_str":"39388947","name":"\u82b3\u4e18\u65e5\u5411\u6a39","screen_name":"hinaki_y","location":"\u5317\u8d64\u7fbd","url":"http:\/\/dual-pony.com\/","description":"\u7279\u6280\uff1a\u5984\u60f3 \u8da3\u5473\uff1a\u5984\u60f3 \u30da\u30f3\u30ae\u30f3\u3068\u30cd\u30b3\u3068\u9d8f\u306e\u5510\u63da\u3052\u3068\u9ed2\u9aea\u304a\u304b\u3063\u3071\u5e7c\u5973\u3068\u91d1\u9aea\u30c4\u30a4\u30f3\u30c6\u5973\u5b50\u4e2d\u5b66\u751f\u3068\u30a2\u30cb\u30e1\u3068\u30de\u30f3\u30ac\u3068\u30e9\u30ce\u30d9\u3068\u30c7\u30b8\u30bf\u30eb\u30ac\u30b8\u30a7\u30c3\u30c8\u3060\u3051\u304c\u3042\u308c\u3070\u751f\u304d\u3066\u3044\u3051\u308b\u3002\u300c\u300d\u3002\u2642\u3002\u30e2\u30d0\u30b2\u30fcID\uff1a52425048","protected":false,"verified":false,"followers_count":1207,"friends_count":960,"listed_count":92,"favourites_count":7357,"statuses_count":77724,"created_at":"Tue May 12 00:41:40 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"31343D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/760827278\/8efe6b44a8f641a9e5c90318cc8231b5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/760827278\/8efe6b44a8f641a9e5c90318cc8231b5.jpeg","profile_background_tile":false,"profile_link_color":"323E4C","profile_sidebar_border_color":"212535","profile_sidebar_fill_color":"000C29","profile_text_color":"784726","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661776297761214464\/L2X2hQSW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661776297761214464\/L2X2hQSW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39388947\/1353415168","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913343148032,"id_str":"663727913343148032","text":"RT @imprakrut: #DilwaleTrailerDay \"Mujhe ishq hai......raftaar se...\" -Varun dialogue in Dilwale trailer","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830227322,"id_str":"830227322","name":"Variafan93","screen_name":"Variafan93","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":510,"friends_count":305,"listed_count":4,"favourites_count":4797,"statuses_count":10141,"created_at":"Tue Sep 18 02:33:13 +0000 2012","utc_offset":32400,"time_zone":"Yakutsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523826897147269121\/T2metGNo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523826897147269121\/T2metGNo_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:15 +0000 2015","id":663727052080545792,"id_str":"663727052080545792","text":"#DilwaleTrailerDay \"Mujhe ishq hai......raftaar se...\" -Varun dialogue in Dilwale trailer","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399312335,"id_str":"399312335","name":"Prakrut Chauhan","screen_name":"imprakrut","location":"Rajkot,India","url":null,"description":"Cricket,Computers,movies,books and a social geek.","protected":false,"verified":false,"followers_count":434,"friends_count":901,"listed_count":9,"favourites_count":4284,"statuses_count":16678,"created_at":"Thu Oct 27 09:39:16 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/728925248\/56d8672988aeb0d30e9d5dcd6056e9b9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/728925248\/56d8672988aeb0d30e9d5dcd6056e9b9.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528518055245004800\/FY84uce7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528518055245004800\/FY84uce7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/399312335\/1355904500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[15,33]}],"urls":[],"user_mentions":[{"screen_name":"imprakrut","name":"Prakrut Chauhan","id":399312335,"id_str":"399312335","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080040666"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326391296,"id_str":"663727913326391296","text":"RT @nadeadean: Part 4 ; https:\/\/t.co\/92JOL8ECfU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1472213900,"id_str":"1472213900","name":"Riy","screen_name":"FikIshak","location":null,"url":null,"description":"18\/student \/ http:\/\/AIREEN.com","protected":false,"verified":false,"followers_count":575,"friends_count":408,"listed_count":0,"favourites_count":584,"statuses_count":7343,"created_at":"Fri May 31 13:52:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107385330\/18196ff73da4d74a5dbc8ed423f1659f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107385330\/18196ff73da4d74a5dbc8ed423f1659f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662295862450634752\/Gzfi8ZNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662295862450634752\/Gzfi8ZNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1472213900\/1447028523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:05:05 +0000 2015","id":663673659307876352,"id_str":"663673659307876352","text":"Part 4 ; https:\/\/t.co\/92JOL8ECfU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231788112,"id_str":"231788112","name":"Yaya","screen_name":"nadeadean","location":"Johor Bahru, Johor","url":null,"description":"17 ,","protected":false,"verified":false,"followers_count":1369,"friends_count":912,"listed_count":4,"favourites_count":9266,"statuses_count":40664,"created_at":"Wed Dec 29 13:30:22 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558499647493128192\/UujQJu0X.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558499647493128192\/UujQJu0X.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"2DD117","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661790772790870016\/ahcrl1d8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661790772790870016\/ahcrl1d8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231788112\/1442999226","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"cc3b24a6eb9f8c89","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cc3b24a6eb9f8c89.json","place_type":"city","name":"Tebrau","full_name":"Tebrau, Johor","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[103.652184,1.494623],[103.652184,1.669973],[103.825569,1.669973],[103.825569,1.494623]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":131,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663673648901783553,"id_str":"663673648901783553","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673648901783553,"id_str":"663673648901783553","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}},{"id":663673651548450820,"id_str":"663673651548450820","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXq3dU8AQhW5l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXq3dU8AQhW5l.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}},{"id":663673655067471874,"id_str":"663673655067471874","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrEkU8AIqphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrEkU8AIqphf.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}},{"id":663673656992641024,"id_str":"663673656992641024","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrLvUsAAv4xy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrLvUsAAv4xy.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nadeadean","name":"Yaya","id":231788112,"id_str":"231788112","indices":[3,13]}],"symbols":[],"media":[{"id":663673648901783553,"id_str":"663673648901783553","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663673659307876352,"source_status_id_str":"663673659307876352","source_user_id":231788112,"source_user_id_str":"231788112"}]},"extended_entities":{"media":[{"id":663673648901783553,"id_str":"663673648901783553","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXqtmUAAEgbYM.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663673659307876352,"source_status_id_str":"663673659307876352","source_user_id":231788112,"source_user_id_str":"231788112"},{"id":663673651548450820,"id_str":"663673651548450820","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXq3dU8AQhW5l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXq3dU8AQhW5l.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663673659307876352,"source_status_id_str":"663673659307876352","source_user_id":231788112,"source_user_id_str":"231788112"},{"id":663673655067471874,"id_str":"663673655067471874","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrEkU8AIqphf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrEkU8AIqphf.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663673659307876352,"source_status_id_str":"663673659307876352","source_user_id":231788112,"source_user_id_str":"231788112"},{"id":663673656992641024,"id_str":"663673656992641024","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrLvUsAAv4xy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrLvUsAAv4xy.jpg","url":"https:\/\/t.co\/92JOL8ECfU","display_url":"pic.twitter.com\/92JOL8ECfU","expanded_url":"http:\/\/twitter.com\/nadeadean\/status\/663673659307876352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"large":{"w":945,"h":591,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":663673659307876352,"source_status_id_str":"663673659307876352","source_user_id":231788112,"source_user_id_str":"231788112"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305419776,"id_str":"663727913305419776","text":"RT @amsobittyagi: @Gurmeetramrahim \n\nSometime m waiting your of Tweet\n\nAnd Then I Get ..\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d \n\nThanks Almighty #MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558618506,"id_str":"558618506","name":"Rajinder Singh INSAN","screen_name":"Rajinde45891956","location":null,"url":null,"description":"State Bank Of Patiala Bhucho Mandi..............","protected":false,"verified":false,"followers_count":214,"friends_count":1235,"listed_count":4,"favourites_count":123,"statuses_count":18051,"created_at":"Fri Apr 20 13:05:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642014916879081472\/lRIfVgQ5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642014916879081472\/lRIfVgQ5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558618506\/1439134934","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:26:24 +0000 2015","id":663709222199128064,"id_str":"663709222199128064","text":"@Gurmeetramrahim \n\nSometime m waiting your of Tweet\n\nAnd Then I Get ..\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d \n\nThanks Almighty #MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708578235072516,"in_reply_to_status_id_str":"663708578235072516","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2835783602,"id_str":"2835783602","name":"Sobit Tyagi\u272a\u2605\u272a\u2605\u272a\u2605\u272a","screen_name":"amsobittyagi","location":"Panipat, Haryana","url":"http:\/\/Www.MSGTheFilm.com","description":"\u2665Proud To Be \u27b2Son & \u21e1\u27a4Biggest Fan Of MSG \n\u2605Gurmeetramrahim\n\n\u272aAthletes \u21f6Runner \u2736$inger\u2736\u2737\n\u21f2Social Worker \u21eeMusic Lover","protected":false,"verified":false,"followers_count":4678,"friends_count":57,"listed_count":10,"favourites_count":12185,"statuses_count":42088,"created_at":"Tue Sep 30 08:33:10 +0000 2014","utc_offset":19800,"time_zone":"Kolkata","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599402430271397888\/yI4UpO9U.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599402430271397888\/yI4UpO9U.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660457841946267648\/pIejdOBL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660457841946267648\/pIejdOBL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835783602\/1446210312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":16,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[92,116]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[110,134]}],"urls":[],"user_mentions":[{"screen_name":"amsobittyagi","name":"Sobit Tyagi\u272a\u2605\u272a\u2605\u272a\u2605\u272a","id":2835783602,"id_str":"2835783602","indices":[3,16]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[18,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326407680,"id_str":"663727913326407680","text":"RT @usako_yamarisa: \u9854\u30da\u30f3\n\n\u3053\u308c\u3092\u898b\u306a\u3055\u3044\n\n\u3053\u308c\u304cEXO\n\n\u3053\u308c\u304c\u5f7c\u3089\u3060\u304b\u3089 https:\/\/t.co\/P9CG9DxOFs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1961004517,"id_str":"1961004517","name":"\u3061\u3083\u3093\u307f\u30fc\u3002Luxion\u5f8c\u907a\u75c7","screen_name":"misagyu0122","location":"\u30c1\u30e3\u30cb\u30e7\u30eb\u306e\u8107\u306b\u4f4f\u3093\u3067\u307e\u3059\u3002","url":null,"description":"97(96)line\u3002SJ\u3001TEENTOP\u3001EXO\u3001BTS\u5927\u597d\u304d\u91ce\u90ce\u3067\u3059\u3002\u30c1\u30e3\u30cb\u30e7\u30eb\u306e\u8107\u6bdb\u898b\u3066\u8208\u596e\u3057\u3066\u307e\u3059\u3002\u6700\u8fd1\u30df\u30f3\u30b7\u30e5\u30ac\u306bdr\u671f\u3067\u3059\u3002\u203b\u30cb\u30e7\u30eb\u30c1\u30a7\u30f3\u30da\u30f3\u3067\u3059\u304c\u30c1\u30e3\u30f3\u30d9\u30af\u4fe1\u8005\u3067\u3054\u3056\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":144,"friends_count":122,"listed_count":13,"favourites_count":1006,"statuses_count":8911,"created_at":"Mon Oct 14 16:19:28 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663702089172803585\/-ALFHPU1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663702089172803585\/-ALFHPU1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1961004517\/1445862800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:31:09 +0000 2015","id":663348029542428672,"id_str":"663348029542428672","text":"\u9854\u30da\u30f3\n\n\u3053\u308c\u3092\u898b\u306a\u3055\u3044\n\n\u3053\u308c\u304cEXO\n\n\u3053\u308c\u304c\u5f7c\u3089\u3060\u304b\u3089 https:\/\/t.co\/P9CG9DxOFs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706350976,"id_str":"2706350976","name":"\u308a\u3055\u5b22\u306f\u8a95\u751f\u65e5&\u308b\u30fc\u3057\u3087\u309314\u65e5","screen_name":"usako_yamarisa","location":"\u30b8\u30e7\u30f3\u30c7\u30ef\u30fc\u30eb\u30c9","url":null,"description":"\u300a \u3057\u305a\u304a\u304b \u53ef\u7f8e 00line \u300b \u97d3\u56fd EXO\u2010L \u4e07\u7aef SHNee \uff98\uff6d\uff70\uff7c\uff6e\uff9d11\u670814\u65e5 #\u4ef2\u826f\u304f\u306a\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059#\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6c17\u3065\u304d\u307e\u305b\u3093#EXO","protected":false,"verified":false,"followers_count":571,"friends_count":271,"listed_count":6,"favourites_count":1224,"statuses_count":2678,"created_at":"Mon Aug 04 11:36:31 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660375513702117376\/Pvm3gtwM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660375513702117376\/Pvm3gtwM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2706350976\/1437371872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":630,"favorite_count":719,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663347857731141632,"id_str":"663347857731141632","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663347857731141632,"id_str":"663347857731141632","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663347919815184384,"id_str":"663347919815184384","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvayMUEAAzEd7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvayMUEAAzEd7.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663347966783041537,"id_str":"663347966783041537","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvdhKUsAEYPdn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvdhKUsAEYPdn.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"usako_yamarisa","name":"\u308a\u3055\u5b22\u306f\u8a95\u751f\u65e5&\u308b\u30fc\u3057\u3087\u309314\u65e5","id":2706350976,"id_str":"2706350976","indices":[3,18]}],"symbols":[],"media":[{"id":663347857731141632,"id_str":"663347857731141632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663348029542428672,"source_status_id_str":"663348029542428672","source_user_id":2706350976,"source_user_id_str":"2706350976"}]},"extended_entities":{"media":[{"id":663347857731141632,"id_str":"663347857731141632","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvXK6UwAANrXU.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663348029542428672,"source_status_id_str":"663348029542428672","source_user_id":2706350976,"source_user_id_str":"2706350976"},{"id":663347919815184384,"id_str":"663347919815184384","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvayMUEAAzEd7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvayMUEAAzEd7.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663348029542428672,"source_status_id_str":"663348029542428672","source_user_id":2706350976,"source_user_id_str":"2706350976"},{"id":663347966783041537,"id_str":"663347966783041537","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSvdhKUsAEYPdn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSvdhKUsAEYPdn.jpg","url":"https:\/\/t.co\/P9CG9DxOFs","display_url":"pic.twitter.com\/P9CG9DxOFs","expanded_url":"http:\/\/twitter.com\/usako_yamarisa\/status\/663348029542428672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663348029542428672,"source_status_id_str":"663348029542428672","source_user_id":2706350976,"source_user_id_str":"2706350976"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305403392,"id_str":"663727913305403392","text":"RT @SRKsTrooper: S-P-E-L-L-B-O-U-N-D <33333333\n#DhamakedaarDilwaleTrailer https:\/\/t.co\/dMwUWnNhS2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1930915998,"id_str":"1930915998","name":"MD saiful islam","screen_name":"saifulctg682","location":"UAE. Sharjah","url":null,"description":null,"protected":false,"verified":false,"followers_count":201,"friends_count":255,"listed_count":21,"favourites_count":60288,"statuses_count":22397,"created_at":"Thu Oct 03 14:37:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583208236624396288\/nUati-4y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583208236624396288\/nUati-4y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1930915998\/1421692872","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727363759456256,"id_str":"663727363759456256","text":"S-P-E-L-L-B-O-U-N-D <33333333\n#DhamakedaarDilwaleTrailer https:\/\/t.co\/dMwUWnNhS2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2203033836,"id_str":"2203033836","name":"s\u043d\u03b1\u043d \u044f\u03c5\u043a\u043d \u043a\u043d\u03b1\u03b7 \u0493\u03b1\u03b7.\u2122","screen_name":"SRKsTrooper","location":"Kolkata ","url":null,"description":"Zindagi Mein Kuch Banna Ho, Kuch Hasil Karna Ho, Kuch Jeetna Ho, Toh Hamesha Apne Dil Ki Suno...","protected":false,"verified":false,"followers_count":1602,"friends_count":75,"listed_count":10,"favourites_count":798,"statuses_count":24151,"created_at":"Tue Nov 19 12:37:11 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662613162160619520\/EQzbkUlN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662613162160619520\/EQzbkUlN.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663604077025083392\/dVt9KGik_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663604077025083392\/dVt9KGik_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203033836\/1442029285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[33,59]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727361423118336,"id_str":"663727361423118336","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","url":"https:\/\/t.co\/dMwUWnNhS2","display_url":"pic.twitter.com\/dMwUWnNhS2","expanded_url":"http:\/\/twitter.com\/SRKsTrooper\/status\/663727363759456256\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":444,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727361423118336,"id_str":"663727361423118336","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","url":"https:\/\/t.co\/dMwUWnNhS2","display_url":"pic.twitter.com\/dMwUWnNhS2","expanded_url":"http:\/\/twitter.com\/SRKsTrooper\/status\/663727363759456256\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":444,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[50,76]}],"urls":[],"user_mentions":[{"screen_name":"SRKsTrooper","name":"s\u043d\u03b1\u043d \u044f\u03c5\u043a\u043d \u043a\u043d\u03b1\u03b7 \u0493\u03b1\u03b7.\u2122","id":2203033836,"id_str":"2203033836","indices":[3,15]}],"symbols":[],"media":[{"id":663727361423118336,"id_str":"663727361423118336","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","url":"https:\/\/t.co\/dMwUWnNhS2","display_url":"pic.twitter.com\/dMwUWnNhS2","expanded_url":"http:\/\/twitter.com\/SRKsTrooper\/status\/663727363759456256\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":444,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663727363759456256,"source_status_id_str":"663727363759456256","source_user_id":2203033836,"source_user_id_str":"2203033836"}]},"extended_entities":{"media":[{"id":663727361423118336,"id_str":"663727361423118336","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhMVVEAAK38P.jpg","url":"https:\/\/t.co\/dMwUWnNhS2","display_url":"pic.twitter.com\/dMwUWnNhS2","expanded_url":"http:\/\/twitter.com\/SRKsTrooper\/status\/663727363759456256\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":444,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":444,"resize":"fit"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663727363759456256,"source_status_id_str":"663727363759456256","source_user_id":2203033836,"source_user_id_str":"2203033836"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322323968,"id_str":"663727913322323968","text":"Spongey a walking heartbreak forreal. You can't win.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454378700,"id_str":"454378700","name":"Paypal Is The Devil","screen_name":"Pebzus","location":"Somewhere in America ","url":null,"description":"Sz 11\/11.5 Well Connected. #284Soles Legit Check http:\/\/www.vtownkickz.com\/legit-buyers-sellers-on-twitter","protected":false,"verified":false,"followers_count":1591,"friends_count":1143,"listed_count":9,"favourites_count":2363,"statuses_count":114754,"created_at":"Tue Jan 03 22:53:58 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659994733268353024\/BLMHemmj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659994733268353024\/BLMHemmj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454378700\/1444193979","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913313935360,"id_str":"663727913313935360","text":"#nowplay on @coldplay_radio > Vance Joy - Mess Is Mine #VanceJoy","source":"\u003ca href=\"http:\/\/share.radionomy.com\" rel=\"nofollow\"\u003eShare.Radionomy.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495301879,"id_str":"495301879","name":"Coldplay Radio","screen_name":"Coldplay_Radio","location":"On Internet","url":"http:\/\/coldplay-radio.weebly.com","description":"#Coldplay #radio #alternative #rock | FB: https:\/\/facebook.com\/ColdplayRadio #vote now for the #top20 of @coldplay","protected":false,"verified":false,"followers_count":3668,"friends_count":3611,"listed_count":45,"favourites_count":50,"statuses_count":115313,"created_at":"Fri Feb 17 20:30:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550033432084877313\/jENJyJ5d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550033432084877313\/jENJyJ5d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460406071937351681\/EqqigCoG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460406071937351681\/EqqigCoG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495301879\/1439470962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nowplay","indices":[0,8]},{"text":"VanceJoy","indices":[58,67]}],"urls":[],"user_mentions":[{"screen_name":"Coldplay_Radio","name":"Coldplay Radio","id":495301879,"id_str":"495301879","indices":[12,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040659"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913313824768,"id_str":"663727913313824768","text":"\u86ed\u5b50\u3055\u3093\u306e\u8a00\u3063\u3066\u308b\u3053\u3068\u306f\u672c\u5f53\u306a\u3093\u3060\u3088\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":797597768,"id_str":"797597768","name":"\u30dd\u30c1\u30b3\u8a95\u751f\u65e5\u304a\u3081\u3067\u3068\u3046","screen_name":"saka66660335","location":"\u30dd\u30c1\u30b3\u306e\u3068\u306a\u308a","url":"http:\/\/twpf.jp\/saka66660335","description":"\u97f3\u30b2\u30fc\u3068\u30dd\u30c1\u30b3\u3068\u8266\u3053\u308c\u306e\u97ff\u3061\u3083\u3093\u304c\u597d\u304d\u306a\u5973\u5b50\u30c9\u30f3\u3060\u30fc\u3067\u3059 \u6deb\u5922\u8981\u7d20\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u4e03\u6bb5","protected":false,"verified":false,"followers_count":2252,"friends_count":2239,"listed_count":36,"favourites_count":69438,"statuses_count":72909,"created_at":"Sun Sep 02 05:42:20 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612540459500507137\/AWrp3KcQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612540459500507137\/AWrp3KcQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/797597768\/1389617533","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040659"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326497792,"id_str":"663727913326497792","text":"https:\/\/t.co\/umbDtHyEvs","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418205976,"id_str":"2418205976","name":"moisescoelho","screen_name":"nitocoelho","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":239,"listed_count":0,"favourites_count":78,"statuses_count":1272,"created_at":"Sun Mar 30 00:53:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453342742622396416\/bD8CyATn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453342742622396416\/bD8CyATn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2418205976\/1398310741","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/umbDtHyEvs","expanded_url":"http:\/\/fb.me\/2wUQxTJZJ","display_url":"fb.me\/2wUQxTJZJ","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334800385,"id_str":"663727913334800385","text":"Me duele la panza, traigo un chingo de hambre \u2639","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1730062362,"id_str":"1730062362","name":"g u r r o l a","screen_name":"cachetona___","location":"Durango, M\u00e9xico","url":"https:\/\/Instagram.com\/cachetona___\/","description":"si dios conmigo, quien contra m\u00ed ? \u2661","protected":false,"verified":false,"followers_count":864,"friends_count":638,"listed_count":1,"favourites_count":3231,"statuses_count":22371,"created_at":"Wed Sep 04 22:38:14 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000074523102\/dd60009f952fde0acb0cf67af37c234f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000074523102\/dd60009f952fde0acb0cf67af37c234f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661900706773778432\/lWlegGq3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661900706773778432\/lWlegGq3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1730062362\/1446417044","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080040664"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322287104,"id_str":"663727913322287104","text":"@kisuke_zx \u306a\u3093\u304b\u30fc\u3001\u6c34\u7740EB\u767a\u58f2\u65e5\u306b\u30fc\u3001\u79cb\u8449\u539f\u30db\u30d3\u30b9\u30c63rd\u3067\u30fc\u3001\u6c34\u7740\u306e\u30b0\u30e9\u5f31\u3044\u304b\u3089\uff01\u3068\u304b\u53eb\u3093\u3067\u305f\u4eba\u304c\u3044\u305f\u3089\u3057\u3044\u3067\u3059\u3088\u30fc\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727634614870016,"in_reply_to_status_id_str":"663727634614870016","in_reply_to_user_id":2763874279,"in_reply_to_user_id_str":"2763874279","in_reply_to_screen_name":"kisuke_zx","user":{"id":360495430,"id_str":"360495430","name":"\u9234\u97f3\u3086\u308a@\u52a0\u5948&\u97ff\u5b50P","screen_name":"yuri_suzuna_w","location":"\u51ea\u6c99\u306b\u4f1a\u3048\u308b\u5834\u6240","url":"http:\/\/yurisuzuna.blog.fc2.com\/","description":"\u7a81\u7136\u306e\u52a0\u5948\u3061\u3083\u3093\u3055\u3093\u30ac\u30c1\u30e3\u3067\u8ca1\u5e03\u304c\u6b7b\u306c","protected":false,"verified":false,"followers_count":845,"friends_count":1081,"listed_count":34,"favourites_count":9298,"statuses_count":97802,"created_at":"Tue Aug 23 09:08:45 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000112942672\/d12a8d785016a7c5985f91ea3e7a0689.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000112942672\/d12a8d785016a7c5985f91ea3e7a0689.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663609547953598464\/VEidDVwm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663609547953598464\/VEidDVwm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360495430\/1447059129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kisuke_zx","name":"kisuke@\u9769\u547d","id":2763874279,"id_str":"2763874279","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305411584,"id_str":"663727913305411584","text":"TOKIO\uff06C\u30fb\u30ed\u30ca\u30a6\u30c9\u76f8\u64b2\u5bfe\u6c7a\uff01\u52dd\u6557\u306e\u884c\u65b9\u306f\u3069\u3061\u3089\u306b\uff1f\uff01 https:\/\/t.co\/FIOqi9tYFm","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321820728,"id_str":"3321820728","name":"\uff0a\u4e80\u68a8\u548c\u4e5f\uff0aLOVE\uff0a","screen_name":"mj262KAMENASHIl","location":null,"url":null,"description":"\u4e80\u68a8\u548c\u4e5f\u306e\u30d5\u30a1\u30f3\u3067\u3059(\u7b11) \u5143LIZLISA\u5e97\u54e1\uff64\u6b6f\u79d1\u52a9\u624b\u3067\u73fe\u5728\u306f\u90fd\u5185\u3067OL\u3084\u3063\u3066\u307e\u3059\u266a Twitter\u30fbLINE\u2605\u53cb\u9054\u52df\u96c6\u2605\u305c\u3072\u3068\u3082\u6c17\u8efd\u306b\u3088\u308d\u3057\u304f\u3067\u3059(*\u00b4\u2200\uff40*)","protected":false,"verified":false,"followers_count":80,"friends_count":179,"listed_count":0,"favourites_count":0,"statuses_count":3308,"created_at":"Fri Aug 21 02:29:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639606109787983872\/djNxUULv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639606109787983872\/djNxUULv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3321820728\/1441328960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FIOqi9tYFm","expanded_url":"http:\/\/jonny002entamez.seesaa.net","display_url":"jonny002entamez.seesaa.net","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305423872,"id_str":"663727913305423872","text":"RT @19920506com: \uacf0\ub3c4\ub9ac\uc5d0\uac8c \uc190 \uc5b9\ub294 \uac15\uc544\uc9c0 \uadc0\uc5ec\uc6cc\uc624 \ud540 \ub098\uac14\uc9c0\ub9cc \uadc0\uc5fd\uae30 \ub54c\ubb38\uc774\uc870 \ub2c8\ud2b8 \ubc31\ud604 \uc870\uc544 https:\/\/t.co\/ykroDTeVmS https:\/\/t.co\/zZ4x1gloFE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3120116828,"id_str":"3120116828","name":"\ubd88\uccad","screen_name":"glorylee999","location":null,"url":null,"description":"\uc5b8\uc81c\ub098 \ud3c9\uc0dd \ud568\uaed8 \ube5b\ub098\uc694 \uc6b0\ub9ac","protected":false,"verified":false,"followers_count":3,"friends_count":17,"listed_count":0,"favourites_count":723,"statuses_count":24040,"created_at":"Tue Mar 31 12:38:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663038570186145793\/-jp8eclr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663038570186145793\/-jp8eclr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3120116828\/1446914215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:03:11 +0000 2015","id":663703381815328769,"id_str":"663703381815328769","text":"\uacf0\ub3c4\ub9ac\uc5d0\uac8c \uc190 \uc5b9\ub294 \uac15\uc544\uc9c0 \uadc0\uc5ec\uc6cc\uc624 \ud540 \ub098\uac14\uc9c0\ub9cc \uadc0\uc5fd\uae30 \ub54c\ubb38\uc774\uc870 \ub2c8\ud2b8 \ubc31\ud604 \uc870\uc544 https:\/\/t.co\/ykroDTeVmS https:\/\/t.co\/zZ4x1gloFE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":527799858,"id_str":"527799858","name":"SEE THE LIGHT","screen_name":"19920506com","location":null,"url":"http:\/\/19920506.com","description":"SINCE 2012.04.10 FOR BAEKHYUN \/ 2016 SEASON'S GREETING http:\/\/19920506.com\/2016","protected":false,"verified":false,"followers_count":260518,"friends_count":13,"listed_count":3376,"favourites_count":1,"statuses_count":7481,"created_at":"Sat Mar 17 20:13:17 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"2E2E2E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/667179358\/6f705344eabd104f723b2eda1bc775a3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/667179358\/6f705344eabd104f723b2eda1bc775a3.jpeg","profile_background_tile":false,"profile_link_color":"1E4DA5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656828772302217216\/-agF8q7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656828772302217216\/-agF8q7b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527799858\/1436078655","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1229,"favorite_count":1527,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ykroDTeVmS","expanded_url":"https:\/\/farm1.staticflickr.com\/636\/22707967150_553a7de4e9_o.jpg","display_url":"farm1.staticflickr.com\/636\/2270796715\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[],"media":[{"id":663703380477394944,"id_str":"663703380477394944","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","url":"https:\/\/t.co\/zZ4x1gloFE","display_url":"pic.twitter.com\/zZ4x1gloFE","expanded_url":"http:\/\/twitter.com\/19920506com\/status\/663703381815328769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703380477394944,"id_str":"663703380477394944","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","url":"https:\/\/t.co\/zZ4x1gloFE","display_url":"pic.twitter.com\/zZ4x1gloFE","expanded_url":"http:\/\/twitter.com\/19920506com\/status\/663703381815328769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ykroDTeVmS","expanded_url":"https:\/\/farm1.staticflickr.com\/636\/22707967150_553a7de4e9_o.jpg","display_url":"farm1.staticflickr.com\/636\/2270796715\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"19920506com","name":"SEE THE LIGHT","id":527799858,"id_str":"527799858","indices":[3,15]}],"symbols":[],"media":[{"id":663703380477394944,"id_str":"663703380477394944","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","url":"https:\/\/t.co\/zZ4x1gloFE","display_url":"pic.twitter.com\/zZ4x1gloFE","expanded_url":"http:\/\/twitter.com\/19920506com\/status\/663703381815328769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663703381815328769,"source_status_id_str":"663703381815328769","source_user_id":527799858,"source_user_id_str":"527799858"}]},"extended_entities":{"media":[{"id":663703380477394944,"id_str":"663703380477394944","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXytUWUwAAPx-6.jpg","url":"https:\/\/t.co\/zZ4x1gloFE","display_url":"pic.twitter.com\/zZ4x1gloFE","expanded_url":"http:\/\/twitter.com\/19920506com\/status\/663703381815328769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663703381815328769,"source_status_id_str":"663703381815328769","source_user_id":527799858,"source_user_id_str":"527799858"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322217477,"id_str":"663727913322217477","text":"@baebaesuzya @krungyipark @sevlgykg_ SUJAI PEHLIZ\/?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727293404057600,"in_reply_to_status_id_str":"663727293404057600","in_reply_to_user_id":612389938,"in_reply_to_user_id_str":"612389938","in_reply_to_screen_name":"baebaesuzya","user":{"id":585406555,"id_str":"585406555","name":"Njo \u2708","screen_name":"yurnjow","location":"Travelgency ~ \u20a96920","url":"http:\/\/instagram.com\/_yoonjo","description":"\uc548\ub155!! \ud5ec\ub85c \ube44\ub108\uc2a4 \uc804 \uba64\ubc84\u2570\uc2e0\uc724\ucd08's duplicate\u256e 1992\ub144 \u5f61 known as Njo \u5f61 ForJimin95's\u2661\u2661","protected":false,"verified":false,"followers_count":1785,"friends_count":1648,"listed_count":7,"favourites_count":2304,"statuses_count":91270,"created_at":"Sun May 20 05:58:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4100F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000127504220\/my5KiYso.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000127504220\/my5KiYso.jpeg","profile_background_tile":false,"profile_link_color":"05F7FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663602034046701568\/PiW1APAx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663602034046701568\/PiW1APAx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/585406555\/1445589512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"baebaesuzya","name":"Sujai \u2708","id":612389938,"id_str":"612389938","indices":[0,12]},{"screen_name":"krungyipark","name":"krungkrung~ \u2708 [LH]","id":613599297,"id_str":"613599297","indices":[13,25]},{"screen_name":"sevlgykg_","name":"nuna -inm\u2708","id":609096885,"id_str":"609096885","indices":[26,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"lt","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334804481,"id_str":"663727913334804481","text":"@9s_gd \n\n\u3044\u3048\u3044\u3048\ud83d\ude06\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727611609153537,"in_reply_to_status_id_str":"663727611609153537","in_reply_to_user_id":4101129192,"in_reply_to_user_id_str":"4101129192","in_reply_to_screen_name":"9s_gd","user":{"id":4147426513,"id_str":"4147426513","name":"\ub098\uce20\ubbf8","screen_name":"__818___","location":"osaka","url":null,"description":"\u2765\u2765\u2765#BIGBANG #iKON @bg_yuya","protected":false,"verified":false,"followers_count":77,"friends_count":94,"listed_count":0,"favourites_count":1,"statuses_count":62,"created_at":"Fri Nov 06 15:29:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662654539636477952\/CmoC7KR2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662654539636477952\/CmoC7KR2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4147426513\/1446824128","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9s_gd","name":"\uc2dc\uc624\uc740","id":4101129192,"id_str":"4101129192","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040664"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913343172608,"id_str":"663727913343172608","text":"#OTWOLWish One thousand four hundred eighty","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4153046892,"id_str":"4153046892","name":"James Reid","screen_name":"JamesReid_o1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":1,"favourites_count":0,"statuses_count":1604,"created_at":"Sat Nov 07 03:58:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040666"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913338957824,"id_str":"663727913338957824","text":"RT @FURUKAWA_23: \u8ffd\u52a0\u6599\u91d1\u4e00\u5207\u306a\u3057\"\u57fa\u672c\"\u7121\u6599\n\"\u57fa\u672c\"\u7121\u6599\u3063\u3066\u4f55\u3060\u3088(\u54f2\u5b66) https:\/\/t.co\/6kt5zEfkjZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185208078,"id_str":"3185208078","name":"\u307f\u3069@\u3057\u3070\u3089\u304f\u9ec4\u540d\u5b50\u53e3\u8abf","screen_name":"midtetora","location":"\u767d\u72ac\u968a\u6240\u5c5e ","url":"http:\/\/twpf.jp\/midtetora","description":"\u2606\u3075\u3076\u304d\u59eb\u63a8\u3057\u2606 \u5996\u602a\u30a6\u30a9\u30c3\u30c1\u306e\u4ed6\u306b\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3\u3082\u597d\u304d\u3067\u3059\uff01\u6700\u8fd1\u306f\u9ec4\u540d\u5b50\u3061\u3083\u3093\u306b\u30e1\u30ed\u30e1\u30ed\u3002\u305f\u307e\u306b\u4e0b\u624b\u304f\u305d\u306a\u7d75\u3092\u63cf\u304d\u307e\u3059\u88cf\u30a2\u30ab(@black_mid_kh)\u203b\u30c4\u30a4\u30d5\u30a3\u8aad\u3093\u3067\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":123,"friends_count":111,"listed_count":3,"favourites_count":579,"statuses_count":2309,"created_at":"Mon May 04 13:57:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661903438234578944\/Z7HxJfsP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661903438234578944\/Z7HxJfsP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185208078\/1445784236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:37 +0000 2015","id":663727649982824449,"id_str":"663727649982824449","text":"\u8ffd\u52a0\u6599\u91d1\u4e00\u5207\u306a\u3057\"\u57fa\u672c\"\u7121\u6599\n\"\u57fa\u672c\"\u7121\u6599\u3063\u3066\u4f55\u3060\u3088(\u54f2\u5b66) https:\/\/t.co\/6kt5zEfkjZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268099695,"id_str":"268099695","name":"\u30d5\u30eb\u30cb\u30e3\u30f3\/\u8d64\u732bR.95","screen_name":"FURUKAWA_23","location":"\u65e5\u672c","url":null,"description":"\u3010\u5546\u54c1\u540d\u3011\u30d5\u30eb\u30cb\u30e3\u30f3\n\u3010\u6210\u5206\u3011\u5996\u602a\u30a6\u30a9\u30c3\u30c1\u7b49\n\u3010\u5185\u5bb9\u91cf\u301160g\n\u3010\u8cde\u5473\u671f\u9650\u3011\u8cde\u5473\u671f\u9650\u5207\u308c","protected":false,"verified":false,"followers_count":1193,"friends_count":1017,"listed_count":26,"favourites_count":3351,"statuses_count":43910,"created_at":"Fri Mar 18 04:13:10 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637279473805557760\/Tbe9Mqr0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637279473805557760\/Tbe9Mqr0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268099695\/1441138289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727629405556737,"id_str":"663727629405556737","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","url":"https:\/\/t.co\/6kt5zEfkjZ","display_url":"pic.twitter.com\/6kt5zEfkjZ","expanded_url":"http:\/\/twitter.com\/FURUKAWA_23\/status\/663727649982824449\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":966,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":566,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727629405556737,"id_str":"663727629405556737","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","url":"https:\/\/t.co\/6kt5zEfkjZ","display_url":"pic.twitter.com\/6kt5zEfkjZ","expanded_url":"http:\/\/twitter.com\/FURUKAWA_23\/status\/663727649982824449\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":966,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":566,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FURUKAWA_23","name":"\u30d5\u30eb\u30cb\u30e3\u30f3\/\u8d64\u732bR.95","id":268099695,"id_str":"268099695","indices":[3,15]}],"symbols":[],"media":[{"id":663727629405556737,"id_str":"663727629405556737","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","url":"https:\/\/t.co\/6kt5zEfkjZ","display_url":"pic.twitter.com\/6kt5zEfkjZ","expanded_url":"http:\/\/twitter.com\/FURUKAWA_23\/status\/663727649982824449\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":966,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":566,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}},"source_status_id":663727649982824449,"source_status_id_str":"663727649982824449","source_user_id":268099695,"source_user_id_str":"268099695"}]},"extended_entities":{"media":[{"id":663727629405556737,"id_str":"663727629405556737","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwypUkAEyF90.jpg","url":"https:\/\/t.co\/6kt5zEfkjZ","display_url":"pic.twitter.com\/6kt5zEfkjZ","expanded_url":"http:\/\/twitter.com\/FURUKAWA_23\/status\/663727649982824449\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":966,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":566,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}},"source_status_id":663727649982824449,"source_status_id_str":"663727649982824449","source_user_id":268099695,"source_user_id_str":"268099695"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913343184896,"id_str":"663727913343184896","text":"RT @johanesaw: Jika Anda sedang benar, dan bila Anda sedang salah, jangan terlalu takut. Keseimbangan s https:\/\/t.co\/cDix6ZAcJB MENANTI EGA\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":590851227,"id_str":"590851227","name":"Evii Sapristiani","screen_name":"Evi_Sapristiani","location":"Bandung, Jawa Barat","url":null,"description":"LOVEGA INDONESIA | Support EGA NOVIANTIKA DA2 @DA2_Ega | Line : evisapristiani |\r\nInstagram : @evi_sapristiani","protected":false,"verified":false,"followers_count":1366,"friends_count":423,"listed_count":4,"favourites_count":646,"statuses_count":36805,"created_at":"Sat May 26 09:33:14 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662239861894545408\/9AsmvyxN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662239861894545408\/9AsmvyxN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590851227\/1446725423","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:56:57 +0000 2015","id":663716910282833920,"id_str":"663716910282833920","text":"Jika Anda sedang benar, dan bila Anda sedang salah, jangan terlalu takut. Keseimbangan s https:\/\/t.co\/cDix6ZAcJB MENANTI EGA DI DAMI CIREBON","source":"\u003ca href=\"http:\/\/www.nomor1.com\" rel=\"nofollow\"\u003eNOMOR1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20291244,"id_str":"20291244","name":"johanes ariffin","screen_name":"johanesaw","location":"\u00dcT: -6.141333,106.802188","url":"http:\/\/www.TrainingEntrepreneur.org","description":"Penulis Buku Pengembangan Diri, Life Inspirator, Salam Antusias","protected":false,"verified":false,"followers_count":2964,"friends_count":3138,"listed_count":24,"favourites_count":5221,"statuses_count":25856,"created_at":"Sat Feb 07 03:05:57 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/350071473\/the_power_of_bisa_1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/350071473\/the_power_of_bisa_1.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/312178253\/johanesaw-foto2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/312178253\/johanesaw-foto2_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cDix6ZAcJB","expanded_url":"http:\/\/goo.gl\/Tdlk5x","display_url":"goo.gl\/Tdlk5x","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cDix6ZAcJB","expanded_url":"http:\/\/goo.gl\/Tdlk5x","display_url":"goo.gl\/Tdlk5x","indices":[104,127]}],"user_mentions":[{"screen_name":"johanesaw","name":"johanes ariffin","id":20291244,"id_str":"20291244","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040666"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913317986304,"id_str":"663727913317986304","text":"Mulai ngakak lg krn mae @showimah udah mulai syuting lg di #StandUpAcademy","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2578109898,"id_str":"2578109898","name":"anis.Soimaniac","screen_name":"aniezvia_SWMC","location":"Kabupaten pemalang","url":null,"description":"I'm soimaniac pemalang,jawa tengah @showimaniac we are always support mae @showimah love you mae :-* :-*","protected":false,"verified":false,"followers_count":312,"friends_count":335,"listed_count":0,"favourites_count":487,"statuses_count":2535,"created_at":"Fri Jun 20 05:59:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635308609140711424\/nX2Qg0yG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635308609140711424\/nX2Qg0yG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2578109898\/1414562415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StandUpAcademy","indices":[59,74]}],"urls":[],"user_mentions":[{"screen_name":"showimah","name":"Soimah","id":123206116,"id_str":"123206116","indices":[24,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913330585600,"id_str":"663727913330585600","text":"sakana-shan \u0441\u043e\u0437\u0434\u0430\u044e\u0442 \u044d\u0442\u0438 \u043f\u0435\u0441\u043d\u0438. https:\/\/t.co\/3l5jCqXY6b","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88164939,"id_str":"88164939","name":"\u3055\u304b\u306a\u3061\u3083\u3093\u2606\u30a6\u30af\u30ec\u30ec\u6b4c\u4eba\u2190\u03b2\u5d29\u58ca","screen_name":"sakana20001","location":"\u5730\u7403","url":"http:\/\/sakana20001.fc2web.com\/","description":"\u5730\u9707\u3068\u539f\u767a\u3001\u5b87\u5b99\u3068\u4eba\u4f53\u3001\u975e\u5e38\u4e8b\u614b\u3068\u6c17\u306b\u306a\u3063\u305f\u73fe\u8c61\u3068\u611a\u75f4\u30fb\u4e80\u30fb\uff2c\uff2f\uff36\uff25\u3001\u5e73\u548c\u3001\u97f3\u697d\u3001\u30e2\u30ed\u30e2\u30ed\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\u30a2\u30ca\u30ad\u30ba\u30e0\u3068\u30a8\u30b3\u30ed\u30b8\u30fc\u3068\u6c11\u4e3b\u4e3b\u7fa9\u3068\u7d20\u7c92\u5b50\uff0b\u5730\u8cea\u30fb\u7d50\u6676\u30d6\u30fc\u30e0\u6765\u307e\u3057\u305f\u3002\u91ce\u8349\u3082\u89b3\u5bdf\u3057\u3066\u307e\u3059\uff08\u305f\u307e\u306b\u98df\u3079\u307e\u3059\uff09\u5b9c\u3057\u304f\u3002","protected":false,"verified":false,"followers_count":3108,"friends_count":2853,"listed_count":128,"favourites_count":14555,"statuses_count":208461,"created_at":"Sat Nov 07 11:08:26 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528713324523843584\/3l4u_V0v.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528713324523843584\/3l4u_V0v.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432760977285591040\/3j7cEaNS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432760977285591040\/3j7cEaNS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88164939\/1402629505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3l5jCqXY6b","expanded_url":"http:\/\/itunes.apple.com\/jp\/artist\/id4585","display_url":"itunes.apple.com\/jp\/artist\/id45\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080040663"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913330569217,"id_str":"663727913330569217","text":"\ub9c8\uc720 \ub204\ub098 \ub108\ubbc0 \uc8e0\ud0c0..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240702154,"id_str":"240702154","name":"\ub3d9\ub3d9 (\u30c9\u30f3\u30c9\u30f3)","screen_name":"mauu0326","location":"\ub9c8\uc720\uc758 \ub9c8\uc74c ","url":null,"description":"\ub9c8\uc720 \uc624\uc2dc\/\ub9c8\uc720\uc624\uc2dc \ud314\ub85c\uc6b0 \ud658\uc601\/\ub9c8\uc720 \uc2eb\uc73c\uba74 \ubba4\ud2b8 \ud544\uc694\uc5c6\uace0 \ube14\ub77d \u3131\u3131","protected":false,"verified":false,"followers_count":110,"friends_count":115,"listed_count":2,"favourites_count":1982,"statuses_count":19484,"created_at":"Thu Jan 20 14:58:10 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660834469239087104\/vdjFf6SK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660834469239087104\/vdjFf6SK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240702154\/1446390188","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080040663"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309618176,"id_str":"663727913309618176","text":"Bang, tanggal 12 des lo manggung bareng glenn di surabaya nggak ? @dameznababan \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3394024754,"id_str":"3394024754","name":"Ibu Peri","screen_name":"ranirahayu1208","location":"Kota Surabaya, East Java","url":null,"description":"Trk - sby \/ Snapchat : ranirahayu1208 | ask.fm : @ranirhyu | periscope : ranirahayu1208 | Smule : RANIRAHAYU1 | IG : Raniayu_IP let's join \u2764\ufe0f","protected":false,"verified":false,"followers_count":44,"friends_count":49,"listed_count":1,"favourites_count":32,"statuses_count":214,"created_at":"Sun Aug 30 15:37:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659062174212493312\/MlsAhCyJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659062174212493312\/MlsAhCyJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3394024754\/1445967757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ccb79fc6492c78ad","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ccb79fc6492c78ad.json","place_type":"city","name":"Gunung Anyar","full_name":"Gunung Anyar, East Java","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[112.757665,-7.355874],[112.757665,-7.327561],[112.831084,-7.327561],[112.831084,-7.355874]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dameznababan","name":"Pendekar Saxophone","id":143800194,"id_str":"143800194","indices":[66,79]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913318027264,"id_str":"663727913318027264","text":"@JL95131 Thx for enrolling in #AmexWFM offer. Spend w\/connected Card & receive credit. Terms: https:\/\/t.co\/E6hCNJDACB","source":"\u003ca href=\"https:\/\/sync.americanexpress.com\/twitter\" rel=\"nofollow\"\u003eAmex Sync Tree\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727853440262144,"in_reply_to_status_id_str":"663727853440262144","in_reply_to_user_id":2217187188,"in_reply_to_user_id_str":"2217187188","in_reply_to_screen_name":"JL95131","user":{"id":492532196,"id_str":"492532196","name":"Amex Offers","screen_name":"AmexOffers","location":null,"url":"http:\/\/amex.co\/twitter","description":"This automated handle activates when you tweet special Amex hashtags. Find offers from brands you love @AmericanExpress Favorites tab. Questions: @AskAmex","protected":false,"verified":true,"followers_count":77314,"friends_count":0,"listed_count":339,"favourites_count":1,"statuses_count":4052677,"created_at":"Tue Feb 14 20:42:15 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EAEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492532196\/1401974910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmexWFM","indices":[30,38]}],"urls":[{"url":"https:\/\/t.co\/E6hCNJDACB","expanded_url":"http:\/\/amex.co\/1Nb6XrV","display_url":"amex.co\/1Nb6XrV","indices":[98,121]}],"user_mentions":[{"screen_name":"JL95131","name":"Jeff","id":2217187188,"id_str":"2217187188","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322217472,"id_str":"663727913322217472","text":"RT @danchantall9: https:\/\/t.co\/y2uGZSFGMQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2896958137,"id_str":"2896958137","name":"londa bates","screen_name":"lrbates21517","location":"claremore, oklahoma","url":null,"description":"It's all about legalization! I love horticulture, @boondocksaints all time fave, walking dead _love @Seanflanery & @www.bigbaldhead. Keep it green America!","protected":false,"verified":false,"followers_count":1326,"friends_count":2071,"listed_count":185,"favourites_count":5254,"statuses_count":39751,"created_at":"Tue Nov 11 23:11:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601777978121392129\/zYXCNw08_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601777978121392129\/zYXCNw08_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2896958137\/1432304353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 10:21:12 +0000 2015","id":661850676411125760,"id_str":"661850676411125760","text":"https:\/\/t.co\/y2uGZSFGMQ","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763786177,"id_str":"2763786177","name":"Danielle Chantall","screen_name":"danchantall9","location":"Europe","url":null,"description":"Nature | Photography | Art | Ballet | Sport","protected":false,"verified":false,"followers_count":24158,"friends_count":4869,"listed_count":737,"favourites_count":9227,"statuses_count":12031,"created_at":"Sun Sep 07 09:10:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598166203975213056\/57OFQdZY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598166203975213056\/57OFQdZY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763786177\/1431449233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":188,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661850676302102528,"id_str":"661850676302102528","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","url":"https:\/\/t.co\/y2uGZSFGMQ","display_url":"pic.twitter.com\/y2uGZSFGMQ","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850676411125760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661850676302102528,"id_str":"661850676302102528","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","url":"https:\/\/t.co\/y2uGZSFGMQ","display_url":"pic.twitter.com\/y2uGZSFGMQ","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850676411125760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danchantall9","name":"Danielle Chantall","id":2763786177,"id_str":"2763786177","indices":[3,16]}],"symbols":[],"media":[{"id":661850676302102528,"id_str":"661850676302102528","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","url":"https:\/\/t.co\/y2uGZSFGMQ","display_url":"pic.twitter.com\/y2uGZSFGMQ","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850676411125760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}},"source_status_id":661850676411125760,"source_status_id_str":"661850676411125760","source_user_id":2763786177,"source_user_id_str":"2763786177"}]},"extended_entities":{"media":[{"id":661850676302102528,"id_str":"661850676302102528","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9drvdWwAA88xV.jpg","url":"https:\/\/t.co\/y2uGZSFGMQ","display_url":"pic.twitter.com\/y2uGZSFGMQ","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850676411125760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}},"source_status_id":661850676411125760,"source_status_id_str":"661850676411125760","source_user_id":2763786177,"source_user_id_str":"2763786177"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309573120,"id_str":"663727913309573120","text":"RT @danchantall9: https:\/\/t.co\/aUVH1F56Vz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2896958137,"id_str":"2896958137","name":"londa bates","screen_name":"lrbates21517","location":"claremore, oklahoma","url":null,"description":"It's all about legalization! I love horticulture, @boondocksaints all time fave, walking dead _love @Seanflanery & @www.bigbaldhead. Keep it green America!","protected":false,"verified":false,"followers_count":1326,"friends_count":2071,"listed_count":185,"favourites_count":5254,"statuses_count":39751,"created_at":"Tue Nov 11 23:11:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601777978121392129\/zYXCNw08_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601777978121392129\/zYXCNw08_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2896958137\/1432304353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 10:21:49 +0000 2015","id":661850831143219201,"id_str":"661850831143219201","text":"https:\/\/t.co\/aUVH1F56Vz","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763786177,"id_str":"2763786177","name":"Danielle Chantall","screen_name":"danchantall9","location":"Europe","url":null,"description":"Nature | Photography | Art | Ballet | Sport","protected":false,"verified":false,"followers_count":24158,"friends_count":4869,"listed_count":737,"favourites_count":9227,"statuses_count":12031,"created_at":"Sun Sep 07 09:10:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598166203975213056\/57OFQdZY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598166203975213056\/57OFQdZY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763786177\/1431449233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":105,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661850830908334081,"id_str":"661850830908334081","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","url":"https:\/\/t.co\/aUVH1F56Vz","display_url":"pic.twitter.com\/aUVH1F56Vz","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850831143219201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":794,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661850830908334081,"id_str":"661850830908334081","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","url":"https:\/\/t.co\/aUVH1F56Vz","display_url":"pic.twitter.com\/aUVH1F56Vz","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850831143219201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":794,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danchantall9","name":"Danielle Chantall","id":2763786177,"id_str":"2763786177","indices":[3,16]}],"symbols":[],"media":[{"id":661850830908334081,"id_str":"661850830908334081","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","url":"https:\/\/t.co\/aUVH1F56Vz","display_url":"pic.twitter.com\/aUVH1F56Vz","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850831143219201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":794,"resize":"fit"}},"source_status_id":661850831143219201,"source_status_id_str":"661850831143219201","source_user_id":2763786177,"source_user_id_str":"2763786177"}]},"extended_entities":{"media":[{"id":661850830908334081,"id_str":"661850830908334081","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9d0vaWoAEYQ8c.jpg","url":"https:\/\/t.co\/aUVH1F56Vz","display_url":"pic.twitter.com\/aUVH1F56Vz","expanded_url":"http:\/\/twitter.com\/danchantall9\/status\/661850831143219201\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":465,"resize":"fit"},"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":794,"resize":"fit"}},"source_status_id":661850831143219201,"source_status_id_str":"661850831143219201","source_user_id":2763786177,"source_user_id_str":"2763786177"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334734848,"id_str":"663727913334734848","text":"@yuriefujii \u307e\u305f\u30de\u30de\u3055\u3093\u306e\u30d1\u30f3\u98df\u3079\u305f\u3044\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727669662511104,"in_reply_to_status_id_str":"663727669662511104","in_reply_to_user_id":821404609,"in_reply_to_user_id_str":"821404609","in_reply_to_screen_name":"yuriefujii","user":{"id":117705262,"id_str":"117705262","name":"\u5ddd\u5185\u3044\u308d\u306f","screen_name":"runpa814","location":"Osaka","url":null,"description":"\u95a2\u897f\u5927\u5b66\u6cd5\u5b66\u90e8\u56db\u56de\u751f\uff01\u5352\u696d\u3068\u5922\u306e\u56fd\uff08\u9032\u8def\uff09\u3068\u306e\u72ed\u9593\u3067\u524d\u5411\u304d\u306b\u751f\u304d\u308b\u3002\u4eba\u898b\u77e5\u308a\u3002\u6f14\u5287\u7814\u7a76\u90e8\u5b66\u5712\u5ea7\u6240\u5c5e\u30012015\u5e74\u5ea6\u6587\u5316\u4f1a\u672c\u90e8\u526f\u672c\u90e8\u9577\u3002\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff01 \u5b89\u6cb3\u5185168(\u30e4\u30b9\u30b3\u30a6\u30c1\u30a4\u30ed\u30cf)\/\u6f14\u5287\u30e6\u30cb\u30c3\u30c8M\u00f6we(\u30e1\u30fc\u30f4\u30a7)","protected":false,"verified":false,"followers_count":377,"friends_count":436,"listed_count":9,"favourites_count":443,"statuses_count":11745,"created_at":"Fri Feb 26 10:19:45 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600657240870158336\/asCHK-ln_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600657240870158336\/asCHK-ln_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117705262\/1421815319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuriefujii","name":"\u3086\u308a\u3048\u3063\u3066\u3043","id":821404609,"id_str":"821404609","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040664"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913339068417,"id_str":"663727913339068417","text":"VAMOS MOVIMENTAR ISSO AQUI","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2252790228,"id_str":"2252790228","name":"queen dos hits","screen_name":"TonsdeAnitta","location":"13\/10\/14-07\/01\/15","url":null,"description":"minha fortaleza: @Anitta","protected":false,"verified":false,"followers_count":5974,"friends_count":2543,"listed_count":8,"favourites_count":3467,"statuses_count":140443,"created_at":"Thu Dec 19 01:34:02 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618894370654302209\/uKsatOW6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618894370654302209\/uKsatOW6.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663094843263074305\/-pWdIes3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663094843263074305\/-pWdIes3_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080040665"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913317961730,"id_str":"663727913317961730","text":"RT @dwitasaridwita: Burung kakatua sama gigi palsu nenek kayanya ngga bisa dipisahin deh, kayak ini: https:\/\/t.co\/0sj06BxeF7 #miniBREAKvideo","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1060802030,"id_str":"1060802030","name":"chanul","screen_name":"chanul_co","location":"jakarta","url":null,"description":"chanul herdiyansyah","protected":false,"verified":false,"followers_count":14,"friends_count":73,"listed_count":0,"favourites_count":13,"statuses_count":336,"created_at":"Fri Jan 04 16:05:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622472606130704384\/aQZhBi8Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622472606130704384\/aQZhBi8Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1060802030\/1444468101","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 12:59:40 +0000 2015","id":662615330317930496,"id_str":"662615330317930496","text":"Burung kakatua sama gigi palsu nenek kayanya ngga bisa dipisahin deh, kayak ini: https:\/\/t.co\/0sj06BxeF7 #miniBREAKvideo","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446241646,"id_str":"446241646","name":"#SamaDenganCinta","screen_name":"dwitasaridwita","location":"CP: 085310802658 (Mbak Tyas)","url":"http:\/\/bit.ly\/IniCinta","description":"Penulis di @Bukune, @Loveableous, dan @BentangPustaka \u2665 Novel terbaru, buku kesembilan: #SamaDenganCinta | IG: dwitasaridwita | ASK FM: DwitaDwitasari","protected":false,"verified":false,"followers_count":1253234,"friends_count":3,"listed_count":672,"favourites_count":2895,"statuses_count":65236,"created_at":"Sun Dec 25 13:27:40 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597556518456725504\/jO9Wnc65.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597556518456725504\/jO9Wnc65.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663527775651823616\/bErY1cUi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663527775651823616\/bErY1cUi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446241646\/1446905378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":7,"entities":{"hashtags":[{"text":"miniBREAKvideo","indices":[105,120]}],"urls":[{"url":"https:\/\/t.co\/0sj06BxeF7","expanded_url":"http:\/\/bit.ly\/1MkjNyQ","display_url":"bit.ly\/1MkjNyQ","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBREAKvideo","indices":[125,140]}],"urls":[{"url":"https:\/\/t.co\/0sj06BxeF7","expanded_url":"http:\/\/bit.ly\/1MkjNyQ","display_url":"bit.ly\/1MkjNyQ","indices":[101,124]}],"user_mentions":[{"screen_name":"dwitasaridwita","name":"#SamaDenganCinta","id":446241646,"id_str":"446241646","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913317994497,"id_str":"663727913317994497","text":"\u6539\u9020\u30c1\u30a2\u30ea\u30fc\u30c7\u30a3\u30f3\u30b0","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/hamoooooon\/\" rel=\"nofollow\"\u003ehamoooooon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925394484,"id_str":"925394484","name":"\u304a\u3061\u677e\u3055\u3093\u2606\u30cf\u30a4\uff01","screen_name":"kairu_3412","location":"\u5b66\u6821\u306e\u6821\u5ead","url":null,"description":"\u3086\u308b\u3086\u3089\u30fc\u3060\u3063\u305f\u308a\u97f3\u30b2\u30fc\u30de\u30fc\u3060\u3063\u305f\u308a\u897f\u5c3e\u7dad\u65b0\u4fe1\u8005\u3060\u3063\u305f\u308a\u30b9\u30ed\u30c3\u30ab\u30b9\u3060\u3063\u305f\u308a\u30d1\u30c1\u30f3\u30ab\u30b9\u3060\u3063\u305f\u308a\u3054\u3089\u304f\u90e8\u7bb1\u63a8\u3057\u306e\u7cdeDD\u3060\u3063\u305f\u308a\n\u30b3\u30df\u30e5\u969c\u306a\u306e\u3067\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u7387\u9ad8\u3081\u3067\u3059\u304c\u30b3\u30df\u30e5\u969c\u6545\u306b\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306b\u5bfe\u3059\u308b\u30d5\u30a9\u30ed\u30d0\u7387\u4f4e\u3081","protected":false,"verified":false,"followers_count":249,"friends_count":297,"listed_count":10,"favourites_count":879,"statuses_count":50766,"created_at":"Sun Nov 04 13:57:14 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655330215434940416\/VPT3_sSf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655330215434940416\/VPT3_sSf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326374912,"id_str":"663727913326374912","text":"\u5f8c\u6094\u3059\u308b\u306e\u306f\u9078\u3076\u81ea\u7531\u304c\u3042\u3063\u305f\u304b\u3089\u3002 \u9762\u5012\u81ed\u304c\u308b\u306e\u306f\u3084\u308a\u305f\u3044\u3053\u3068\u304c\u6ca2\u5c71\u3042\u308b\u304b\u3089\u3002 \u5bc2\u3057\u304f\u306a\u308b\u306e\u306f\u5927\u5207\u306a\u4eba\u304c\u3044\u308b\u304b\u3089\u3002 \u6094\u3057\u3044\u3068\u601d\u3046\u306e\u306f\u81ea\u5206\u306b\u8a87\u308a\u304c\u3042\u308b\u304b\u3089\u3002 \u8ae6\u3081\u3066\u3057\u307e\u3046\u306e\u306f\u672a\u6765\u3092\u5927\u5207\u306b\u3057\u3088\u3046\u3068\u3057\u305f\u304b\u3089\u3002 \u8a00\u3044\u305f\u3044\u3053\u3068\u304c\u53e3\u304b\u3089\u51fa\u306a\u3044\u306e\u306f\u60f3\u3044\u3067\u8a70\u307e\u3063\u3066\u3044\u308b\u304b\u3089\u3002","source":"\u003ca href=\"http:\/\/www.yahoo.co.jp\/\" rel=\"nofollow\"\u003e\u307f\u3084\u732b\u3092\u53ef\u611b\u304c\u308b\u30b5\u30a4\u30c8\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3248417766,"id_str":"3248417766","name":"\u96d1\u5b66\u304a\u308d\u3057","screen_name":"OroshiZatsugaku","location":null,"url":null,"description":"\u3042\u306a\u305f\u306e\u751f\u6d3b\u306b\u5f79\u7acb\u3064\u8272\u3005\u306a\u60c5\u5831\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\u5e38\u306b\u6700\u65b0\u306e\u60c5\u5831\u3092\u6295\u7a3f\u3057\u307e\u3059\u306e\u3067\u5fc5\u305a\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":4842,"friends_count":4638,"listed_count":3,"favourites_count":1,"statuses_count":2918,"created_at":"Thu Jun 18 06:43:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611424740192849920\/2F2Tjoyd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611424740192849920\/2F2Tjoyd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248417766\/1434609950","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913318096896,"id_str":"663727913318096896","text":"@JackJackJohnson you are the best","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727821831860224,"in_reply_to_status_id_str":"663727821831860224","in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":1418840132,"id_str":"1418840132","name":"luv my boys","screen_name":"luvmyshawnbae","location":null,"url":"https:\/\/www.wattpad.com\/myworks\/53161363-problem-shawn-mendes","description":"My idols are the best thing in my life Kwiatonator\/Mendes Army\/ Old Magcon FOLLOW= FOLLOW BACK","protected":false,"verified":false,"followers_count":258,"friends_count":295,"listed_count":0,"favourites_count":1362,"statuses_count":4979,"created_at":"Fri May 10 19:01:51 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462958048495951874\/A_Hyrqrt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462958048495951874\/A_Hyrqrt.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659799134975623168\/RiNNkocu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659799134975623168\/RiNNkocu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1418840132\/1446234063","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040660"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322151936,"id_str":"663727913322151936","text":"RT @desamei: t\u00e3o bom ver duas pessoas que se completam https:\/\/t.co\/7hdAycHxxN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281930191,"id_str":"3281930191","name":"Giovanna","screen_name":"_xofana_","location":null,"url":null,"description":"one direction\u2764\ufe0e","protected":false,"verified":false,"followers_count":67,"friends_count":59,"listed_count":0,"favourites_count":243,"statuses_count":1690,"created_at":"Thu Jul 16 23:35:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662943563542466560\/hQymnM5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662943563542466560\/hQymnM5S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281930191\/1446948933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:11 +0000 2015","id":663713951448825858,"id_str":"663713951448825858","text":"t\u00e3o bom ver duas pessoas que se completam https:\/\/t.co\/7hdAycHxxN","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":450874614,"id_str":"450874614","name":"ex trouxa","screen_name":"desamei","location":"Curitiba Paran\u00e1, - Brasil. ","url":"http:\/\/instagram.com\/extroxa","description":"ELEITO POR MIM, O TWITTER MAIS CRIATIVO DO BRASIL\u2122 | Linda, maravilhosa e ex trouxa | \u2709 Contato Profissional: desamei@outlook.com | \u2709\n#ExTrouxaNaoAmaDesama","protected":false,"verified":false,"followers_count":543254,"friends_count":31,"listed_count":222,"favourites_count":43,"statuses_count":31387,"created_at":"Fri Dec 30 19:25:18 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633450819342475264\/JpsVuGyT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633450819342475264\/JpsVuGyT.jpg","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430958398447618\/5R7N7JWp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430958398447618\/5R7N7JWp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/450874614\/1446998529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":125,"favorite_count":126,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660992185446309888,"id_str":"660992185446309888","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","url":"https:\/\/t.co\/7hdAycHxxN","display_url":"pic.twitter.com\/7hdAycHxxN","expanded_url":"http:\/\/twitter.com\/UmDrogalizado\/status\/660992186536849408\/photo\/1","type":"photo","sizes":{"large":{"w":438,"h":371,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"},"medium":{"w":438,"h":371,"resize":"fit"}},"source_status_id":660992186536849408,"source_status_id_str":"660992186536849408","source_user_id":630693768,"source_user_id_str":"630693768"}]},"extended_entities":{"media":[{"id":660992185446309888,"id_str":"660992185446309888","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","url":"https:\/\/t.co\/7hdAycHxxN","display_url":"pic.twitter.com\/7hdAycHxxN","expanded_url":"http:\/\/twitter.com\/UmDrogalizado\/status\/660992186536849408\/photo\/1","type":"photo","sizes":{"large":{"w":438,"h":371,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"},"medium":{"w":438,"h":371,"resize":"fit"}},"source_status_id":660992186536849408,"source_status_id_str":"660992186536849408","source_user_id":630693768,"source_user_id_str":"630693768"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"desamei","name":"ex trouxa","id":450874614,"id_str":"450874614","indices":[3,11]}],"symbols":[],"media":[{"id":660992185446309888,"id_str":"660992185446309888","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","url":"https:\/\/t.co\/7hdAycHxxN","display_url":"pic.twitter.com\/7hdAycHxxN","expanded_url":"http:\/\/twitter.com\/UmDrogalizado\/status\/660992186536849408\/photo\/1","type":"photo","sizes":{"large":{"w":438,"h":371,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"},"medium":{"w":438,"h":371,"resize":"fit"}},"source_status_id":660992186536849408,"source_status_id_str":"660992186536849408","source_user_id":630693768,"source_user_id_str":"630693768"}]},"extended_entities":{"media":[{"id":660992185446309888,"id_str":"660992185446309888","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSxQ4_zWIAAK8rI.jpg","url":"https:\/\/t.co\/7hdAycHxxN","display_url":"pic.twitter.com\/7hdAycHxxN","expanded_url":"http:\/\/twitter.com\/UmDrogalizado\/status\/660992186536849408\/photo\/1","type":"photo","sizes":{"large":{"w":438,"h":371,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":287,"resize":"fit"},"medium":{"w":438,"h":371,"resize":"fit"}},"source_status_id":660992186536849408,"source_status_id_str":"660992186536849408","source_user_id":630693768,"source_user_id_str":"630693768"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913326518272,"id_str":"663727913326518272","text":"@RatebTM \u0639\u0634\u0627\u0646 \u0623\u062d\u0645\u0633\u0643\u0645 \u0623\u0643\u062b\u0631\u060c \u0623\u0646\u0627 \u0645\u0646 \u0623\u0628\u0637\u0627\u0644 \u0627\u0644\u0641\u064a\u0644\u0645 \ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727705876250624,"in_reply_to_status_id_str":"663727705876250624","in_reply_to_user_id":236363292,"in_reply_to_user_id_str":"236363292","in_reply_to_screen_name":"RatebTM","user":{"id":236363292,"id_str":"236363292","name":"\u0627\u0644\u0645\u0646\u064a\u062d \u261d","screen_name":"RatebTM","location":"Amman, here since 1992","url":"http:\/\/sayat.me\/rtp","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0637\u0627\u0644\u0628 \u0637\u0628\/\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u0633\u0627\u062f\u0633\u0629\/\u0627\u0644\u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0623\u0631\u062f\u0646\u064a\u0629\/\u0633\u0627\u0643\u0646 \u0628\u0627\u0644\u0645\u0643\u062a\u0628\u0629 #\u0627\u0644\u0645\u0641\u0636\u0644\u0629\u060c\u0631\u0628 \u0623\u0643\u0631\u0645\u0646\u064a \u062e\u064a\u0631\u0627 \u0648\u0623\u0644\u062d\u0642\u0646\u064a \u0628\u0627\u0644\u0635\u0627\u0644\u062d\u064a\u0646.\u0645\u062e\u062a\u0635 \u0628\u0627\u0633\u062a\u0641\u0632\u0627\u0632 \u0627\u0644\u0633\u062d\u064a\u062c\u0629 \u0648\u0627\u0644\u0641\u064a\u0645\u064a\u0646\u064a\u0633","protected":false,"verified":false,"followers_count":1491,"friends_count":657,"listed_count":11,"favourites_count":3997,"statuses_count":30923,"created_at":"Mon Jan 10 12:18:12 +0000 2011","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B3000F","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644097252550533120\/3qEe_ZD__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644097252550533120\/3qEe_ZD__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236363292\/1382101675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RatebTM","name":"\u0627\u0644\u0645\u0646\u064a\u062d \u261d","id":236363292,"id_str":"236363292","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080040662"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913305444353,"id_str":"663727913305444353","text":"@HAO_bot_SK \u304a\u306f\u3088\u3046","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725934869114885,"in_reply_to_status_id_str":"663725934869114885","in_reply_to_user_id":1163123179,"in_reply_to_user_id_str":"1163123179","in_reply_to_screen_name":"HAO_bot_SK","user":{"id":2652115975,"id_str":"2652115975","name":"\u221e","screen_name":"_THE_WORLD_END_","location":null,"url":null,"description":"@BEGIN_THE_WORLD","protected":false,"verified":false,"followers_count":2404,"friends_count":2331,"listed_count":251,"favourites_count":29282,"statuses_count":570717,"created_at":"Wed Jul 16 21:52:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660058940609179648\/CQiJ4pXi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660058940609179648\/CQiJ4pXi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2652115975\/1446205563","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HAO_bot_SK","name":"\u30cf\u30aa","id":1163123179,"id_str":"1163123179","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040657"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334796288,"id_str":"663727913334796288","text":"@abc_air99 \u3061\u3087\u3063\u3068\u30ea\u30a2\u30eb\u3059\u304e\u3066\u304d\u3064\u3044\u3067\u3059\u7b11","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727828723085316,"in_reply_to_status_id_str":"663727828723085316","in_reply_to_user_id":814469545,"in_reply_to_user_id_str":"814469545","in_reply_to_screen_name":"abc_air99","user":{"id":436400436,"id_str":"436400436","name":"\u3051\u30fc\u3044\u3061@you more","screen_name":"K_ICHI_youmore","location":"\u30e9\u30a4\u30d6\u30cf\u30a6\u30b9\u306e\u4e2d(\u306b\u3044\u305f\u3044)","url":"http:\/\/s.ameblo.jp\/keeeeichi-f","description":"tkhk\u2192\u30e9\u30b8\u30aa\u5c02\u653b \u2033You more film\u2033 \u793e\u4f1a\u4eba \u65e5\u30cf\u30e0\/DeNA \u6016\u304f\u306a\u3044\u304b\u3089\u3001\u624b\u3092\u5dee\u3057\u4f38\u3079\u3066\u307f\u306a\u3088","protected":false,"verified":false,"followers_count":336,"friends_count":414,"listed_count":5,"favourites_count":1026,"statuses_count":35952,"created_at":"Wed Dec 14 04:24:26 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594304165171474432\/1K9RBcGc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594304165171474432\/1K9RBcGc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436400436\/1433696898","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abc_air99","name":"\u6c37\u7d50STRONG\u301c\u3042\u3044\u3074\u3088\u301c","id":814469545,"id_str":"814469545","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040664"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334800384,"id_str":"663727913334800384","text":"You are chosen to play the role of a highly skilled diplomat t... More for Capricorn https:\/\/t.co\/SNwprxhKo5","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1534090154,"id_str":"1534090154","name":"Ed","screen_name":"creativiy_killz","location":null,"url":null,"description":"275 Royalty","protected":false,"verified":false,"followers_count":122,"friends_count":249,"listed_count":0,"favourites_count":1425,"statuses_count":2077,"created_at":"Thu Jun 20 14:38:08 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653026555682164736\/opSrCPgs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653026555682164736\/opSrCPgs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1534090154\/1444514286","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SNwprxhKo5","expanded_url":"http:\/\/bit.ly\/A5KmeJ","display_url":"bit.ly\/A5KmeJ","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040664"} +{"delete":{"status":{"id":539551546233458688,"id_str":"539551546233458688","user_id":93645726,"user_id_str":"93645726"},"timestamp_ms":"1447080040877"}} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913309630465,"id_str":"663727913309630465","text":"\u653f\u6cbb\u5bb6\u306b\u805e\u3044\u305f\u3002\u300c\u306a\u3093\u3067\u7d04\u675f\u3092\u5b88\u3089\u306a\u3044\u3093\u3067\u3059\u304b\uff1f\u300d\u300c\u8a18\u61b6\u306b\u3054\u3056\u3044\u307e\u305b\u3093\u3082\u306e\u3067\u2026\u300d blackjoker_bot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1311293426,"id_str":"1311293426","name":"\u30ef\u30ed\u30bf\u30c4\u30a4\u30fc\u30c8","screen_name":"warottaa","location":null,"url":null,"description":"\u7b11\u3048\u308b\u30c4\u30a4\u30fc\u30c8\u3092\u3057\u3066\u3044\u304d\u307e\u3059\u3002\r\n\u9762\u767d\u304b\u3063\u305f\u3089RT\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u30ef\u30ed\u30bf\u30fc\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":2762,"friends_count":2813,"listed_count":3,"favourites_count":0,"statuses_count":43834,"created_at":"Thu Mar 28 17:43:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3443426911\/c8ec6f4159cfd8df5834150d93700689_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3443426911\/c8ec6f4159cfd8df5834150d93700689_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040658"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913330679808,"id_str":"663727913330679808","text":"\u307f\u3093\u306a\u97f3\u30b2\u30fc\u3046\u307e\u306a\u3063\u3066\u308b\u306a\u3042\u3001\u3082\u3046\u9152\u30ab\u30b9\u52e2\u306b\u306a\u308a\u3059\u304e\u3066\u6bce\u56de\u30b2\u30fc\u30bb\u30f3\u884c\u304f\u5ea6\u30ea\u30cf\u30d3\u30ea\u306b\u306a\u3063\u3066\u308b( \u02d8\u03c9\u02d8 )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292430434,"id_str":"292430434","name":"Angelic \u4e03\u661f","screen_name":"MERCURIA_77","location":"\uff75\uff8c\uff84\uff69\uff9d","url":null,"description":"\u6ce5\u9154\u3057\u3066\u5e30\u5b85\u96e3\u6c11\u306b\u306a\u308b\u4eba\n\u30a2\u30a4\u30b3\u30f3\u306f\u307f\u3055\u3068\u3055\u3093(@MISA_TON69)\u3001\u30d8\u30c3\u30c0\u30fc\u306f\u4e5d\u6761\u30ab\u30ce\u30f3\u3055\u3093(@kuzyoukanon)\u3088\u308a","protected":false,"verified":false,"followers_count":381,"friends_count":330,"listed_count":17,"favourites_count":10060,"statuses_count":77079,"created_at":"Tue May 03 16:50:55 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/353493630\/back1517906201653004894.JPEG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/353493630\/back1517906201653004894.JPEG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492103304122359808\/eldfhbhb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492103304122359808\/eldfhbhb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292430434\/1412991958","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040663"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913334759424,"id_str":"663727913334759424","text":"#OTWOLWish One thousand four hundred eighty","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4155159674,"id_str":"4155159674","name":"nadine lustree","screen_name":"nadinelustre01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":1605,"created_at":"Sat Nov 07 08:23:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040664"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913313800192,"id_str":"663727913313800192","text":"Momenti di tensione a Bologna. \nSi era staccato l'alimentatore del pupazzo... #violenzainaudita https:\/\/t.co\/vICqZcGIKo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118284260,"id_str":"118284260","name":"G.Bobbo","screen_name":"photob3u2","location":"Phuket-Samui","url":null,"description":"Appassionato viaggiatore, operaio della fotografia e assistente turistico, Espatriato durante l' era berlusconi, retweetto news asiatiche e curiosita'","protected":false,"verified":false,"followers_count":1702,"friends_count":1978,"listed_count":66,"favourites_count":21406,"statuses_count":29390,"created_at":"Sun Feb 28 05:09:39 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450513294768369664\/TKdNM5A-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450513294768369664\/TKdNM5A-.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440426592825651200\/1a7oXCBd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440426592825651200\/1a7oXCBd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118284260\/1427228741","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"violenzainaudita","indices":[78,95]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727887065874432,"id_str":"663727887065874432","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ygVAAAndyT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ygVAAAndyT.jpg","url":"https:\/\/t.co\/vICqZcGIKo","display_url":"pic.twitter.com\/vICqZcGIKo","expanded_url":"http:\/\/twitter.com\/photob3u2\/status\/663727913313800192\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":544,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":318,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727887065874432,"id_str":"663727887065874432","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ygVAAAndyT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ygVAAAndyT.jpg","url":"https:\/\/t.co\/vICqZcGIKo","display_url":"pic.twitter.com\/vICqZcGIKo","expanded_url":"http:\/\/twitter.com\/photob3u2\/status\/663727913313800192\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":544,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":318,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080040659"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913318019072,"id_str":"663727913318019072","text":"\u5ca9\u8c37\u7fd4\u543e\u306f\u30b8\u30f3\u30c8\u30cb\u30c3\u30af\u3002\u30b7\u30f3\u30d7\u30eb\u306a\u3082\u306e\u306b\u61a7\u308c\u308b\u3002\u723d\u3084\u304b\u3002\u305d\u306e\u5834\u306e\u7a7a\u6c17\u306b\u306a\u3058\u3080\u306e\u304c\u4e0a\u624b\u304f\u4e16\u6e21\u308a\u4e0a\u624b\u3002\u4e00\u7dd2\u306b\u3044\u308b\u3068\u5143\u6c17\u306e\u51fa\u308b\u4eba\u7269\u3002\u7518\u3048\u308b\u306e\u3082\u7518\u3048\u3055\u305b\u308b\u306e\u3082\u5f97\u610f\u3002\u591a\u5c11\u305a\u308b\u3044\u9762\u3082\u3002\u767d\u30ef\u30a4\u30f3\u306e\u4eba\u3068\u306f\u6c17\u304c\u3042\u3046\u3002\nhttps:\/\/t.co\/VbRPFgF9Uq\n\u3053\u308c\u7fd4\u543e\u304f\u3093\u306e\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1950896022,"id_str":"1950896022","name":"\u8389\u82b1","screen_name":"syogo_311","location":"Osaka\ufe0e\ufe0e\ufe0e\u2764\ufe0e","url":"https:\/\/instagram.com\/iwy_kun\/","description":"\u5ca9\u8c37\u7fd4\u543e\u304f\u3093\u2764\u2764\u2764","protected":false,"verified":false,"followers_count":319,"friends_count":198,"listed_count":4,"favourites_count":1250,"statuses_count":5642,"created_at":"Thu Oct 10 05:38:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629102278494924800\/AsWa3DxL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629102278494924800\/AsWa3DxL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1950896022\/1420111969","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VbRPFgF9Uq","expanded_url":"https:\/\/shindanmaker.com\/575762","display_url":"shindanmaker.com\/575762","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040660"} +{"delete":{"status":{"id":663727909115445248,"id_str":"663727909115445248","user_id":286868074,"user_id_str":"286868074"},"timestamp_ms":"1447080040947"}} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322201088,"id_str":"663727913322201088","text":"Kunjungi toko saya di Shopee! HananGadget: https:\/\/t.co\/kJOOriT8i2 #ShopeeID https:\/\/t.co\/kb0WnLn4KV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288055499,"id_str":"288055499","name":"Fabyola Sugiarto","screen_name":"yolaliyol","location":"Indonesia","url":"http:\/\/twitter.com\/fabyolasugiarto","description":"Beside @tarras_18","protected":false,"verified":false,"followers_count":268,"friends_count":260,"listed_count":0,"favourites_count":3,"statuses_count":1754,"created_at":"Tue Apr 26 04:53:51 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000074973859\/200014294cef7cb9b73346063e166e83.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000074973859\/200014294cef7cb9b73346063e166e83.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569025514229100544\/AGxoOtPp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569025514229100544\/AGxoOtPp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288055499\/1393637106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ShopeeID","indices":[67,76]}],"urls":[{"url":"https:\/\/t.co\/kJOOriT8i2","expanded_url":"http:\/\/shopee.co.id\/hanangadget","display_url":"shopee.co.id\/hanangadget","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":663727895332827136,"id_str":"663727895332827136","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJARTUsAAwseH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJARTUsAAwseH.jpg","url":"https:\/\/t.co\/kb0WnLn4KV","display_url":"pic.twitter.com\/kb0WnLn4KV","expanded_url":"http:\/\/twitter.com\/yolaliyol\/status\/663727913322201088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727895332827136,"id_str":"663727895332827136","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJARTUsAAwseH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJARTUsAAwseH.jpg","url":"https:\/\/t.co\/kb0WnLn4KV","display_url":"pic.twitter.com\/kb0WnLn4KV","expanded_url":"http:\/\/twitter.com\/yolaliyol\/status\/663727913322201088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080040661"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913343188992,"id_str":"663727913343188992","text":"Mondays: https:\/\/t.co\/A8ibu4IMEw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201131595,"id_str":"201131595","name":"Matt Ortile","screen_name":"ortile","location":"buzzfeed.com\/mattortile","url":"http:\/\/matthewortile.com","description":"or-TEE-lay | global editorial operations, @buzzfeed | bylines at BF, @details, @outmagazine, @sidebmag, and others | roland barthes, but filipino and on grindr","protected":false,"verified":true,"followers_count":3669,"friends_count":901,"listed_count":55,"favourites_count":16571,"statuses_count":16526,"created_at":"Mon Oct 11 04:22:40 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F121F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060777503\/8ef6029846b65302b1b07573000fb917.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060777503\/8ef6029846b65302b1b07573000fb917.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662034771342684160\/bk0use29_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662034771342684160\/bk0use29_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201131595\/1446410799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727910243713024,"id_str":"663727910243713024","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBI2WwAAb8z4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBI2WwAAb8z4.png","url":"https:\/\/t.co\/A8ibu4IMEw","display_url":"pic.twitter.com\/A8ibu4IMEw","expanded_url":"http:\/\/twitter.com\/ortile\/status\/663727913343188992\/photo\/1","type":"photo","sizes":{"large":{"w":208,"h":35,"resize":"fit"},"thumb":{"w":150,"h":35,"resize":"crop"},"medium":{"w":208,"h":35,"resize":"fit"},"small":{"w":208,"h":35,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727910243713024,"id_str":"663727910243713024","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBI2WwAAb8z4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBI2WwAAb8z4.png","url":"https:\/\/t.co\/A8ibu4IMEw","display_url":"pic.twitter.com\/A8ibu4IMEw","expanded_url":"http:\/\/twitter.com\/ortile\/status\/663727913343188992\/photo\/1","type":"photo","sizes":{"large":{"w":208,"h":35,"resize":"fit"},"thumb":{"w":150,"h":35,"resize":"crop"},"medium":{"w":208,"h":35,"resize":"fit"},"small":{"w":208,"h":35,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080040666"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913313898496,"id_str":"663727913313898496","text":"Ciclo de Cine Miseria, iniciativa de estudiantes de 2\u00ba a\u00f1o de nuestra carrera. Mi\u00e9rcoles 11 a las 14:30 en sala 44. https:\/\/t.co\/dseyHPjieO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3610008677,"id_str":"3610008677","name":"Psicolog\u00eda UChile","screen_name":"PsicoUChile","location":null,"url":null,"description":"\u00a1Bienvenidos a la comunidad de Psicolog\u00eda de la @uchile! Vis\u00edtanos en http:\/\/www.facso.uchile.cl\/psicologia y en https:\/\/www.facebook.com\/PsicologiaUChile","protected":false,"verified":false,"followers_count":60,"friends_count":159,"listed_count":3,"favourites_count":0,"statuses_count":41,"created_at":"Thu Sep 10 14:11:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641990162646454272\/JOA2cN_p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641990162646454272\/JOA2cN_p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3610008677\/1441898381","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727909870379013,"id_str":"663727909870379013","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBHdWIAUskRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBHdWIAUskRR.jpg","url":"https:\/\/t.co\/dseyHPjieO","display_url":"pic.twitter.com\/dseyHPjieO","expanded_url":"http:\/\/twitter.com\/PsicoUChile\/status\/663727913313898496\/photo\/1","type":"photo","sizes":{"large":{"w":810,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727909870379013,"id_str":"663727909870379013","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBHdWIAUskRR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBHdWIAUskRR.jpg","url":"https:\/\/t.co\/dseyHPjieO","display_url":"pic.twitter.com\/dseyHPjieO","expanded_url":"http:\/\/twitter.com\/PsicoUChile\/status\/663727913313898496\/photo\/1","type":"photo","sizes":{"large":{"w":810,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":503,"resize":"fit"},"medium":{"w":600,"h":888,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080040659"} +{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727913322180608,"id_str":"663727913322180608","text":"\u30af\u30ed\u30af\u30e2\u3067\u30ef\u30fc\u30c9\u30af\u30e9\u30a6\u30c9\u3092\u4f5c\u308a\u307e\u3057\u305f\uff01 #kurokumo https:\/\/t.co\/Wl3FUuLq8V https:\/\/t.co\/0pLe3mD5A9","source":"\u003ca href=\"http:\/\/kumo.lightnet328.com\" rel=\"nofollow\"\u003e\u30af\u30ed\u30af\u30e2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603516711,"id_str":"603516711","name":"\u30a2\u30eb\u30d0\u30fc\u30c8@\u5ac1\u30e4\u30d0&\u3053\u3053\u590f\u5fdc\u63f4\u4e2d","screen_name":"albert_souzi","location":"\u798f\u4e95\u770c ","url":"http:\/\/twpf.jp\/albert_souzi","description":"\u3061\u3063\u3071\u3044\u3068\u304a\u8179\u56de\u308a\u304c\u5927\u597d\u304d\u3067\u3059 GC\u7248PSO\u3084\u3063\u3066\u307e\u3059 \u73c8\u7432\u8cb4\u65cf\u3055\u3093\u63a8\u3057\u306e\u7248\u753b\u52e2\uff06\u75db\u90e8\u5c4b\u52e2 \u30a8\u30ed\u30b2\u3092\u305f\u3057\u306a\u3093\u3067\u3044\u307e\u3059 \u30d5\u30a9\u30ed\u30d0\u306f\u57fa\u672c\u6c17\u5206\u3067\u3059","protected":false,"verified":false,"followers_count":692,"friends_count":684,"listed_count":16,"favourites_count":5172,"statuses_count":27393,"created_at":"Sat Jun 09 08:42:23 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571700593064820736\/L5iYVmZY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571700593064820736\/L5iYVmZY.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661867066647969792\/nF6SA3tt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661867066647969792\/nF6SA3tt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603516711\/1437361493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kurokumo","indices":[20,29]}],"urls":[{"url":"https:\/\/t.co\/Wl3FUuLq8V","expanded_url":"http:\/\/kumo.lightnet328.com\/","display_url":"kumo.lightnet328.com","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663727912441417728,"id_str":"663727912441417728","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBRCVEAAq0L6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBRCVEAAq0L6.png","url":"https:\/\/t.co\/0pLe3mD5A9","display_url":"pic.twitter.com\/0pLe3mD5A9","expanded_url":"http:\/\/twitter.com\/albert_souzi\/status\/663727913322180608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727912441417728,"id_str":"663727912441417728","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBRCVEAAq0L6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBRCVEAAq0L6.png","url":"https:\/\/t.co\/0pLe3mD5A9","display_url":"pic.twitter.com\/0pLe3mD5A9","expanded_url":"http:\/\/twitter.com\/albert_souzi\/status\/663727913322180608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080040661"} +{"delete":{"status":{"id":661227852268900352,"id_str":"661227852268900352","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080041414"}} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917508272128,"id_str":"663727917508272128","text":"RT @Q8____3: \u0648\u064e\u0627\u0630\u0652\u0643\u064f\u0631 \u0631\u0628\u0651\u0643\u064e \u0625\u0650\u0630\u064e\u0627 \u0646\u064e\u0633\u0650\u064a\u062a\u064e \n\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u060c\n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u060c \n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u060c\n\u0627\u0644\u0644\u0647 \u0623\u0643\u0628\u0631\u060c \n\u0623\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0648 \u0623\u062a\u0648\u0628 \u0625\u0644\u064a\u0647\n\n\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1164305532,"id_str":"1164305532","name":"\u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"124_bodi","location":null,"url":null,"description":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648 \u0628\u062d\u0645\u062f\u0647\u0640","protected":false,"verified":false,"followers_count":1815,"friends_count":136,"listed_count":0,"favourites_count":261,"statuses_count":6629,"created_at":"Sat Feb 09 23:01:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655089946471084032\/UL2UXsG__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655089946471084032\/UL2UXsG__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1164305532\/1438006466","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 07:33:50 +0000 2015","id":663258106789568512,"id_str":"663258106789568512","text":"\u0648\u064e\u0627\u0630\u0652\u0643\u064f\u0631 \u0631\u0628\u0651\u0643\u064e \u0625\u0650\u0630\u064e\u0627 \u0646\u064e\u0633\u0650\u064a\u062a\u064e \n\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u060c\n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u060c \n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u060c\n\u0627\u0644\u0644\u0647 \u0623\u0643\u0628\u0631\u060c \n\u0623\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0648 \u0623\u062a\u0648\u0628 \u0625\u0644\u064a\u0647\n\n\u0627\u0644\u0627\u062d\u0645\u062f\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1379994174,"id_str":"1379994174","name":"\u0627\u0644\u0627\u062d\u0645\u062f\u064a","screen_name":"Q8____3","location":"\ufe0f\u2757\ufe0f\u2757\ufe0f\u0645\u0648\u0642\u0641 \u0627\u0644\u062a\u0628\u0627\u062f\u0644\u2757\ufe0f\u2757\ufe0f6950","url":null,"description":"\u0644\u0627 \u062a\u062c\u0628\u0631 \u0627\u0644\u0622\u062e\u0631\u064a\u0646 \u0639\u0644\u0649 \u0622\u0631\u0627\u0621\u0643 \u0648\u0644\u0627 \u062a\u0646\u0632\u0639\u062c \u0625\u0646 \u0644\u0645 \u064a\u0648\u0627\u0641\u0642\u0648\u0627 \u0642\u0646\u0627\u0639\u0627\u062a\u0643\u060c \u062a\u0623\u0643\u062f \u0623\u0646 \u0644\u0647\u0645 \u0623\u064a\u0636\u0627 \u0622\u0631\u0627\u0621 \u0648\u0642\u0646\u0627\u0639\u0627\u062a \u0644\u064a\u0633\u062a \u0628\u0627\u0644\u0636\u0631\u0648\u0631\u0629 \u0623\u0646 \u062a\u0639\u062c\u0628\u0643 \u0644\u0627\u0643\u0646 \u064a\u062c\u0628 \u0623\u0646 \u062a\u062d\u062a\u0631\u0645\u0647\u0627 \u0627\u0644\u062d\u0633\u0627\u0628 \u0628\u0625\u062f\u0627\u0631\u0629.....\u2757\ufe0f\u2708","protected":false,"verified":false,"followers_count":716815,"friends_count":665338,"listed_count":241,"favourites_count":410,"statuses_count":41207,"created_at":"Thu Apr 25 17:43:13 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559095410900217856\/rAcqqpRL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559095410900217856\/rAcqqpRL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1379994174\/1424987469","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":237,"favorite_count":59,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Q8____3","name":"\u0627\u0644\u0627\u062d\u0645\u062f\u064a","id":1379994174,"id_str":"1379994174","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080041659"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917524979712,"id_str":"663727917524979712","text":"no te fias ni de ti misma","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4082305955,"id_str":"4082305955","name":"Uvedp","screen_name":"uvedep","location":null,"url":null,"description":"Cada uno con su filosof\u00eda. Bailar como terapia y futura terapeuta","protected":false,"verified":false,"followers_count":15,"friends_count":19,"listed_count":0,"favourites_count":6,"statuses_count":48,"created_at":"Sat Oct 31 11:59:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660437968553959424\/yPCyDi-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660437968553959424\/yPCyDi-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4082305955\/1446296834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041663"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917512400896,"id_str":"663727917512400896","text":"RT @raganwald: How do German speakers feel about being told that user names like \u201c\u00fcbermensch\u201d are illegal because \u201c\u00fc\u201d is not a letter, numb\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18222168,"id_str":"18222168","name":"Bastien","screen_name":"basgys","location":"Z\u00fcrich - Switzerland","url":"http:\/\/soundcloud.com\/basgys","description":"Backend Engineer @centralway | Letzisound host | sofi.io co-founder | Coffee lover","protected":false,"verified":false,"followers_count":225,"friends_count":390,"listed_count":16,"favourites_count":481,"statuses_count":3894,"created_at":"Thu Dec 18 19:10:59 +0000 2008","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"31466C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581532675175002112\/kqmshLYp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581532675175002112\/kqmshLYp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18222168\/1398319797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:50 +0000 2015","id":663725939252207616,"id_str":"663725939252207616","text":"How do German speakers feel about being told that user names like \u201c\u00fcbermensch\u201d are illegal because \u201c\u00fc\u201d is not a letter, number, or _?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18137723,"id_str":"18137723","name":"Reginald Braithwaite","screen_name":"raganwald","location":"Toronto","url":"http:\/\/raganwald.com","description":"@pagerduty, formerly @github, @unspace, devtopia, kl group\/sitraka, codestorm, publishing revenue partners","protected":false,"verified":false,"followers_count":12200,"friends_count":819,"listed_count":853,"favourites_count":10161,"statuses_count":37051,"created_at":"Mon Dec 15 14:59:22 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/525649735856570368\/MvtI3PJj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525649735856570368\/MvtI3PJj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18137723\/1427562283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"raganwald","name":"Reginald Braithwaite","id":18137723,"id_str":"18137723","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041660"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917499715584,"id_str":"663727917499715584","text":"If first love never dies... \nthat would suck...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2717092453,"id_str":"2717092453","name":"Kirisuto","screen_name":"Zushifukado","location":null,"url":null,"description":"I always loved you and I always will","protected":false,"verified":false,"followers_count":133,"friends_count":77,"listed_count":1,"favourites_count":2366,"statuses_count":2161,"created_at":"Fri Aug 08 13:02:01 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641568148919943168\/WVXqWkdz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641568148919943168\/WVXqWkdz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2717092453\/1418029247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041657"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917499703296,"id_str":"663727917499703296","text":"cuma tau mb korea yg jadul\/?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570919318,"id_str":"1570919318","name":"Ducky Bora","screen_name":"Paarsbora","location":null,"url":null,"description":"Yoon Bora rapper of SISTAR. 30 JAN 90L #kaumelite","protected":false,"verified":false,"followers_count":219,"friends_count":85,"listed_count":3,"favourites_count":397,"statuses_count":11421,"created_at":"Fri Jul 05 16:53:22 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663672000074743808\/pO8AfQpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663672000074743808\/pO8AfQpx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570919318\/1446865154","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080041657"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529174016,"id_str":"663727917529174016","text":"@alysonmorris . folllow backkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":33541022,"in_reply_to_user_id_str":"33541022","in_reply_to_screen_name":"alysonmorris","user":{"id":1523526019,"id_str":"1523526019","name":"Kobe","screen_name":"kobeguy_","location":null,"url":null,"description":"go add me on insta @ic3y.k","protected":false,"verified":false,"followers_count":227,"friends_count":175,"listed_count":1,"favourites_count":419,"statuses_count":2217,"created_at":"Sun Jun 16 23:56:19 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369722805788672\/vWSsn8RV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369722805788672\/vWSsn8RV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1523526019\/1446961116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alysonmorris","name":"Alyson Morris","id":33541022,"id_str":"33541022","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041664"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917516660736,"id_str":"663727917516660736","text":"RT @lsucrerie: #Detalles https:\/\/t.co\/PbBz2gSE0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3577915883,"id_str":"3577915883","name":"ass..tronza","screen_name":"69melena","location":"Sempre a 90 come stile di vita","url":null,"description":"contro le foghe di legno","protected":false,"verified":false,"followers_count":375,"friends_count":733,"listed_count":2,"favourites_count":355,"statuses_count":1534,"created_at":"Mon Sep 07 14:53:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643267960749076481\/mDhnrOUi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643267960749076481\/mDhnrOUi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3577915883\/1441723727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:57 +0000 2015","id":663726723624734720,"id_str":"663726723624734720","text":"#Detalles https:\/\/t.co\/PbBz2gSE0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172330334,"id_str":"1172330334","name":"LESUCRERIE","screen_name":"lsucrerie","location":null,"url":"http:\/\/www.lesucrerie.com","description":"A NADIE LE AMARGA UN DULCE DESPUES DE UN DURO DIA DE NEGOCIOS.. NOS TOMAMOS UN RELAX? http:\/\/lsucrerie.tumblr.com #teamsensual (+18)","protected":false,"verified":false,"followers_count":39154,"friends_count":91,"listed_count":291,"favourites_count":93198,"statuses_count":60893,"created_at":"Tue Feb 12 15:44:58 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"61248A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000021807036\/8520ec5d9045cf0346b6efaff864a6ac.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000021807036\/8520ec5d9045cf0346b6efaff864a6ac.png","profile_background_tile":false,"profile_link_color":"B3008F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3592543396\/3fce457f2d56dfbbf761c02202c04464_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3592543396\/3fce457f2d56dfbbf761c02202c04464_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172330334\/1444560117","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"Detalles","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726711847174144,"id_str":"663726711847174144","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","url":"https:\/\/t.co\/PbBz2gSE0e","display_url":"pic.twitter.com\/PbBz2gSE0e","expanded_url":"http:\/\/twitter.com\/lsucrerie\/status\/663726723624734720\/photo\/1","type":"photo","sizes":{"medium":{"w":494,"h":640,"resize":"fit"},"large":{"w":494,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":440,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726711847174144,"id_str":"663726711847174144","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","url":"https:\/\/t.co\/PbBz2gSE0e","display_url":"pic.twitter.com\/PbBz2gSE0e","expanded_url":"http:\/\/twitter.com\/lsucrerie\/status\/663726723624734720\/photo\/1","type":"photo","sizes":{"medium":{"w":494,"h":640,"resize":"fit"},"large":{"w":494,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":440,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Detalles","indices":[15,24]}],"urls":[],"user_mentions":[{"screen_name":"lsucrerie","name":"LESUCRERIE","id":1172330334,"id_str":"1172330334","indices":[3,13]}],"symbols":[],"media":[{"id":663726711847174144,"id_str":"663726711847174144","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","url":"https:\/\/t.co\/PbBz2gSE0e","display_url":"pic.twitter.com\/PbBz2gSE0e","expanded_url":"http:\/\/twitter.com\/lsucrerie\/status\/663726723624734720\/photo\/1","type":"photo","sizes":{"medium":{"w":494,"h":640,"resize":"fit"},"large":{"w":494,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663726723624734720,"source_status_id_str":"663726723624734720","source_user_id":1172330334,"source_user_id_str":"1172330334"}]},"extended_entities":{"media":[{"id":663726711847174144,"id_str":"663726711847174144","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7YeWwAA1pmd.jpg","url":"https:\/\/t.co\/PbBz2gSE0e","display_url":"pic.twitter.com\/PbBz2gSE0e","expanded_url":"http:\/\/twitter.com\/lsucrerie\/status\/663726723624734720\/photo\/1","type":"photo","sizes":{"medium":{"w":494,"h":640,"resize":"fit"},"large":{"w":494,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":440,"resize":"fit"}},"source_status_id":663726723624734720,"source_status_id_str":"663726723624734720","source_user_id":1172330334,"source_user_id_str":"1172330334"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080041661"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917533372416,"id_str":"663727917533372416","text":"RT @EchoHauteVienne: La pr\u00e9sidente retient la d\u00e9tention provisoire pour un des 3 jeunes de La Bastide. Les deux autres sont sous contr\u00f4le j\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306108529,"id_str":"306108529","name":"Franck Petit","screen_name":"f3_franckpetit","location":null,"url":"http:\/\/www.facebook.com\/FranckPetitreportages","description":"Journaliste \u00e0 France 3 Limousin - La diffusion d\u2019annonces sur ce site rel\u00e8ve de ma responsabilit\u00e9.","protected":false,"verified":false,"followers_count":929,"friends_count":449,"listed_count":48,"favourites_count":44,"statuses_count":5389,"created_at":"Fri May 27 09:14:57 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2435812474\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2435812474\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306108529\/1435683897","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:14 +0000 2015","id":663727805595783168,"id_str":"663727805595783168","text":"La pr\u00e9sidente retient la d\u00e9tention provisoire pour un des 3 jeunes de La Bastide. Les deux autres sont sous contr\u00f4le judiciaire.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1328641951,"id_str":"1328641951","name":"L'Echo Haute-Vienne","screen_name":"EchoHauteVienne","location":null,"url":"http:\/\/l-echo.info","description":"L'Echo, un journal d'opinion, libre d'expression. R\u00e9daction de la Haute-Vienne.","protected":false,"verified":false,"followers_count":1010,"friends_count":65,"listed_count":33,"favourites_count":1,"statuses_count":1905,"created_at":"Fri Apr 05 07:45:18 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448460731986374656\/ot07Yo8g_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448460731986374656\/ot07Yo8g_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1328641951\/1427986848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EchoHauteVienne","name":"L'Echo Haute-Vienne","id":1328641951,"id_str":"1328641951","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080041665"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917537603584,"id_str":"663727917537603584","text":"Que inventa ramiro","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303111796,"id_str":"3303111796","name":"\u2655Araceli\u2655","screen_name":"sole_araceli","location":null,"url":"https:\/\/www.facebook.com\/ara.s.sole","description":"\u2b50Quisiera huir muy lejos de aqu\u00ed, pero \u00bfDe quien pretendo huir? Si el problema esta en m\u00ed. Pibita Hist\u00e9rica#1\u2b50","protected":false,"verified":false,"followers_count":926,"friends_count":1274,"listed_count":1,"favourites_count":6331,"statuses_count":12900,"created_at":"Fri May 29 18:56:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637304268471574528\/jSpd8FYc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637304268471574528\/jSpd8FYc.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663506475696918528\/oEnA0K0X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663506475696918528\/oEnA0K0X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303111796\/1447034086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080041666"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917504077825,"id_str":"663727917504077825","text":"solo qu\u00edtate la ropa, entra en mi cuarto y subamos de niveeeeeeeel'8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558865370,"id_str":"558865370","name":"Raquel Haro Mu\u00f1oz.","screen_name":"Rechel_Smiling","location":"Cuevas del Almanzora, Almer\u00eda","url":null,"description":"estaba loca joder, tenia unos ojos donde pod\u00eda perderme y joder, termine queriendo estar a su lado","protected":false,"verified":false,"followers_count":361,"friends_count":311,"listed_count":1,"favourites_count":3701,"statuses_count":11297,"created_at":"Fri Apr 20 19:00:45 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083393197\/48bcd64189d705f635812903bfa931d4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083393197\/48bcd64189d705f635812903bfa931d4.jpeg","profile_background_tile":true,"profile_link_color":"0042B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660488906144677888\/34b_bYFs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660488906144677888\/34b_bYFs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558865370\/1446307799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041658"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917512413184,"id_str":"663727917512413184","text":"RT @EresKurioso: Ser uno mismo es lo m\u00e1s original que puede haber.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544602889,"id_str":"544602889","name":"Fly","screen_name":"PalomaPrieto_16","location":"Cartagena","url":null,"description":"18.Jugadora de baloncesto en el nacional del CBCartagena y futura ingeniera agr\u00f3noma. Me puedo pasar horas viendo a alguien bailar. Humor absurdo :3 \/\/GOLD\/\/","protected":false,"verified":false,"followers_count":386,"friends_count":329,"listed_count":8,"favourites_count":3225,"statuses_count":19485,"created_at":"Tue Apr 03 21:22:03 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F027D2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616029693683363840\/a6CSv2RL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616029693683363840\/a6CSv2RL.jpg","profile_background_tile":false,"profile_link_color":"33BB99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657541757819863040\/ZSo7bmBZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657541757819863040\/ZSo7bmBZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544602889\/1434451254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:35:34 +0000 2015","id":663666231543660544,"id_str":"663666231543660544","text":"Ser uno mismo es lo m\u00e1s original que puede haber.","source":"\u003ca href=\"http:\/\/www.google.es\" rel=\"nofollow\"\u003eEresKurioso\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216328455,"id_str":"1216328455","name":"Sab\u00edas que...","screen_name":"EresKurioso","location":"Planeta Tierra, V\u00eda L\u00e1ctea","url":null,"description":"Datos alucinantes e incre\u00edbles: #Curiosidades #Frases #Ciencia #Tecnolog\u00eda #Cultura #Historia \/\/ RT tus tweets favoritos. Publi: http:\/\/promotwitter.tumblr.com","protected":false,"verified":false,"followers_count":597770,"friends_count":6250,"listed_count":1024,"favourites_count":0,"statuses_count":151,"created_at":"Sun Feb 24 19:11:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000375119009\/560e8ab1937d801f69a13d81ffcb9bb6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000375119009\/560e8ab1937d801f69a13d81ffcb9bb6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216328455\/1361814777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":77,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EresKurioso","name":"Sab\u00edas que...","id":1216328455,"id_str":"1216328455","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041660"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917525016576,"id_str":"663727917525016576","text":"RT @salwaalmutairi4: \u0623\u062a\u0648\u0642\u0639 \u0644\u0644\u0623\u0645\u064a\u0631 \u0647\u0627\u0631\u064a \u0623\u0646 \u064a\u0635\u0628\u062d \u0645\u0644\u0643 \u0639\u0644\u0649 \u0623\u062d\u062f \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a\u0647 ... \u0623\u0646\u0627 \u062a\u0648\u0642\u0639\u062a \u0644\u0644\u0623\u0645\u064a\u0631 \u0648\u0644\u064a\u0627\u0645 \u0627\u0646\u0647 \u0633\u0648\u0641 \u064a\u0646\u062c\u0628 \u0648\u0644\u062f\u2026 https:\/\/t.co\/ZyUwbl\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496674407,"id_str":"496674407","name":"\u0645\u062d\u0645\u062f","screen_name":"kmg911kmg","location":"\u0627\u0644\u0631\u064a\u0627\u0636","url":null,"description":null,"protected":false,"verified":false,"followers_count":2924,"friends_count":7,"listed_count":2,"favourites_count":54,"statuses_count":781,"created_at":"Sun Feb 19 05:54:09 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658948087575113728\/CYoqqPeS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658948087575113728\/CYoqqPeS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496674407\/1441160860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:03 +0000 2015","id":663724990383149056,"id_str":"663724990383149056","text":"\u0623\u062a\u0648\u0642\u0639 \u0644\u0644\u0623\u0645\u064a\u0631 \u0647\u0627\u0631\u064a \u0623\u0646 \u064a\u0635\u0628\u062d \u0645\u0644\u0643 \u0639\u0644\u0649 \u0623\u062d\u062f \u0627\u0644\u062f\u0648\u0644 \u0627\u0644\u0623\u0641\u0631\u064a\u0642\u064a\u0647 ... \u0623\u0646\u0627 \u062a\u0648\u0642\u0639\u062a \u0644\u0644\u0623\u0645\u064a\u0631 \u0648\u0644\u064a\u0627\u0645 \u0627\u0646\u0647 \u0633\u0648\u0641 \u064a\u0646\u062c\u0628 \u0648\u0644\u062f\u2026 https:\/\/t.co\/ZyUwblM4RR","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2594578831,"id_str":"2594578831","name":"\u0633\u0644\u0648\u064a \u0627\u0644\u0645\u0637\u064a\u0631\u064a","screen_name":"salwaalmutairi4","location":"\u0642\u0646\u0627\u062a\u064a \u0641\u064a \u0627\u0644\u064a\u0648\u062a\u064a\u0648\u0628","url":"https:\/\/m.youtube.com\/user\/salwaalmotare","description":"\u0645\u0646 \u062d\u0643\u0645 \u0627\u0644\u0639\u0631\u0628\u061b\n\u0623\u0646 \u0627\u0644\u0645\u0639\u0644\u0645 \u0648\u0627\u0644\u0637\u0628\u064a\u0628 \u0643\u0644\u0627\u0647\u0645\u0627\n\u0644\u0627\u064a\u0646\u0641\u0639\u0627\u0646 \u0625\u0630\u0627 \u0644\u0645 \u064a\u0643\u0631\u0645\u0627\n\u0641\u0623\u0635\u0628\u0631 \u0644\u062f\u0627\u0626\u0643 \u0625\u0646 \u0623\u0647\u0646\u062a \u0637\u0628\u064a\u0628\u0647\n\u0648\u0623\u0635\u0628\u0631 \u0644\u062c\u0647\u0644\u0643 \u0625\u0646 \u0623\u0647\u0646\u062a \u0645\u0639\u0644\u0645\u0627\u064b","protected":false,"verified":false,"followers_count":3175,"friends_count":174,"listed_count":5,"favourites_count":746,"statuses_count":8123,"created_at":"Sun Jun 29 09:54:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662618074961600512\/vs_rnL1G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662618074961600512\/vs_rnL1G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594578831\/1446815437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZyUwblM4RR","expanded_url":"https:\/\/instagram.com\/p\/93hC6EKxFA\/","display_url":"instagram.com\/p\/93hC6EKxFA\/","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZyUwblM4RR","expanded_url":"https:\/\/instagram.com\/p\/93hC6EKxFA\/","display_url":"instagram.com\/p\/93hC6EKxFA\/","indices":[120,140]}],"user_mentions":[{"screen_name":"salwaalmutairi4","name":"\u0633\u0644\u0648\u064a \u0627\u0644\u0645\u0637\u064a\u0631\u064a","id":2594578831,"id_str":"2594578831","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080041663"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917524983808,"id_str":"663727917524983808","text":"Charts That Perfectly Describe What It's Like To Have Big B**bs\n\n https:\/\/t.co\/2Nwdh6xbMJ","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090119122,"id_str":"3090119122","name":"BlueBell CA","screen_name":"BlueBellCA","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13718,"friends_count":12841,"listed_count":24,"favourites_count":8,"statuses_count":4504,"created_at":"Thu Mar 12 22:23:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576901532790083584\/Zr-nIHMv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576901532790083584\/Zr-nIHMv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090119122\/1426379028","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Nwdh6xbMJ","expanded_url":"http:\/\/dld.bz\/dXZcW","display_url":"dld.bz\/dXZcW","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041663"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529198592,"id_str":"663727917529198592","text":"RT @TiniStoessel: @alestoeessel gracias a dios tenemos lo m\u00e1s importante, una familia unida por el amor y buena gente, te amo hasta el fin.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1858720968,"id_str":"1858720968","name":"lorenzo","screen_name":"AliceFra01","location":null,"url":null,"description":"|| Lorenzo Fragola || Tini, Lodo, Clara, Diego \u25cf Greta, Sofia, Albe, Leo || Tekla \u2765 || Ed \u266b ||","protected":false,"verified":false,"followers_count":662,"friends_count":1843,"listed_count":5,"favourites_count":16747,"statuses_count":25277,"created_at":"Thu Sep 12 22:34:24 +0000 2013","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000074003057\/16928a58f0d6e615854069852a8fed53.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000074003057\/16928a58f0d6e615854069852a8fed53.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661261103008227328\/uC_CN7nG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661261103008227328\/uC_CN7nG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1858720968\/1446491906","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 18:16:17 +0000 2015","id":663057396634394626,"id_str":"663057396634394626","text":"@alestoeessel gracias a dios tenemos lo m\u00e1s importante, una familia unida por el amor y buena gente, te amo hasta el fin.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663056155363680257,"in_reply_to_status_id_str":"663056155363680257","in_reply_to_user_id":212769105,"in_reply_to_user_id_str":"212769105","in_reply_to_screen_name":"alestoeessel","user":{"id":550281859,"id_str":"550281859","name":"Tini Stoessel","screen_name":"TiniStoessel","location":null,"url":null,"description":"Tinistas\u2764\ufe0fpagina oficial: http:\/\/www.martinastoessel.com.ar FACEBOOK: https:\/\/www.facebook.com\/TinitaStoesel \nInstagram: tinitastoessel \nSimplementeTini MiLibro","protected":false,"verified":true,"followers_count":1454159,"friends_count":457,"listed_count":6521,"favourites_count":717,"statuses_count":14716,"created_at":"Tue Apr 10 17:15:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679384777\/0b6a6971bc838e88350fffbdaa97faf5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679384777\/0b6a6971bc838e88350fffbdaa97faf5.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642723118843301888\/f6xOhnGO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642723118843301888\/f6xOhnGO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550281859\/1441892307","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1577,"favorite_count":1925,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alestoeessel","name":"alejandro stoessel","id":212769105,"id_str":"212769105","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TiniStoessel","name":"Tini Stoessel","id":550281859,"id_str":"550281859","indices":[3,16]},{"screen_name":"alestoeessel","name":"alejandro stoessel","id":212769105,"id_str":"212769105","indices":[18,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041664"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917508243456,"id_str":"663727917508243456","text":"Utendaji wa kazi kwenye taasisi nyingi sana za Serikali unahitaji TOTAL REVAMP! Tunyooshe baba tunyooshe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248618354,"id_str":"248618354","name":"QueenKunta","screen_name":"CarolNdosi","location":"Dar es Salaam","url":"http:\/\/www.facebook.com\/nyamachomafest","description":"#ProudlyTanzanian I am what I am...Entrepreneur,Business woman,Event & PR Manager. My Tweets -Maoni YANGU Binafsi","protected":false,"verified":false,"followers_count":32541,"friends_count":956,"listed_count":49,"favourites_count":15201,"statuses_count":42116,"created_at":"Mon Feb 07 11:26:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623805410403860480\/HnfTkbGG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623805410403860480\/HnfTkbGG.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660825804490850304\/XG-6Ng1c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660825804490850304\/XG-6Ng1c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248618354\/1438768870","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080041659"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917525024768,"id_str":"663727917525024768","text":"Robbie Savage is \u2018Mr Marmite\u2019. Yeah, but some people like marmite surely? #1worthingtoncup","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054942753,"id_str":"4054942753","name":"LUX LISBON","screen_name":"_oLISBONPOP","location":"London","url":"http:\/\/bit.ly\/bullingdonclubvideo","description":"London Indie band, Bullingdon Club single - http:\/\/bit.ly\/bullingdonclubvideo - this deserves a wider audience - Billy Bragg. Also on Stewart Lee's Website.","protected":false,"verified":false,"followers_count":266,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":19,"created_at":"Thu Oct 29 06:48:17 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660768983415525376\/8gkaYkYt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660768983415525376\/8gkaYkYt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054942753\/1446374589","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1worthingtoncup","indices":[74,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041663"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520855041,"id_str":"663727917520855041","text":"@noahbowmar12 @HornyFacts sike that is personal stuff","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727831994732544,"in_reply_to_status_id_str":"663727831994732544","in_reply_to_user_id":382262940,"in_reply_to_user_id_str":"382262940","in_reply_to_screen_name":"noahbowmar12","user":{"id":574547595,"id_str":"574547595","name":"kayla","screen_name":"sparkle325","location":"delaware, oh","url":null,"description":"\u2661","protected":false,"verified":false,"followers_count":420,"friends_count":443,"listed_count":0,"favourites_count":14947,"statuses_count":8575,"created_at":"Tue May 08 13:14:27 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475790282147917824\/y79MqbMq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475790282147917824\/y79MqbMq.jpeg","profile_background_tile":true,"profile_link_color":"C211BC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723828523245568\/P1RJLace_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723828523245568\/P1RJLace_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574547595\/1447040161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noahbowmar12","name":"Noah Jacob Bowmar","id":382262940,"id_str":"382262940","indices":[0,13]},{"screen_name":"HornyFacts","name":"Horny Facts\u2122","id":561684253,"id_str":"561684253","indices":[14,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917508272129,"id_str":"663727917508272129","text":"Like, that's the most important question","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067546234,"id_str":"3067546234","name":"\u30ec\u30a4\u2728","screen_name":"kkomajirou","location":"Spain","url":"http:\/\/nabiruu.tumblr.com","description":"\u5996\u602a\u30a6\u30a9\u30c3\u30c1\u2022 Pkm \u2022\u9006\u8ee2\u88c1\u5224\u2022\u30ec\u30a4\u30c8\u30f3\u6559\u6388\u2022 FF \u2022 AC \u2728 \u65e5\u672c\u8a9eOK! Gaming acc~ \u2728Lvl. 21 \u2728 FC: 0018-3389-6341\u2728Main\u2192@littledvl94","protected":false,"verified":false,"followers_count":36,"friends_count":48,"listed_count":1,"favourites_count":133,"statuses_count":980,"created_at":"Tue Mar 03 09:29:29 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645507306977918976\/qalEuQK8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645507306977918976\/qalEuQK8.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645524167216005120\/QDE42nfK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645524167216005120\/QDE42nfK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067546234\/1446562481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041659"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917533298688,"id_str":"663727917533298688","text":"\u30b0\u30c3\u30ba\u60c5\u5831\u306f\u3001\u5e74\u306f\u3058\u3081\u306b\u3001\u3059\u3079\u3066\u306e\u30a4\u30d9\u30f3\u30c8\u306e\u5206\u767a\u8868\u3057\u3066\u6b32\u3057\u3044\u3067\u3059\u3002\u305d\u3046\u3057\u305f\u3089\u3001\u51fa\u8cbb\u4e88\u5b9a\u304c\u7acb\u3066\u3089\u308c\u307e\u3059\u3002\u3068\u307e\u3067\u3082\u3001\u601d\u3044\u59cb\u3081\u3066\u3057\u307e\u3063\u305f\u306e\u3067\u5bdd\u308b\u3057\u304b\u306a\u3044( \u02d8\u03c9\u02d8 ) \uff7d\uff94\uff67\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3105939890,"id_str":"3105939890","name":"natsuki","screen_name":"11_26so","location":"\u30d5\u30b3\u30a662(1B)","url":null,"description":"\u30af\u30ea\u30b9\u30de\u30b9\u30a6\u30a3\u30c3\u30b7\u30e5\u3068\u30af\u30ea\u30b9\u30de\u30b9\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u3092\u2026 \u30e1\u30ea\u30fc\u30af\u30ea\u30b9\u30de\u30b9\uff01","protected":false,"verified":false,"followers_count":379,"friends_count":433,"listed_count":1,"favourites_count":6242,"statuses_count":220,"created_at":"Tue Mar 24 04:21:21 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658130225620914176\/CcJSHKqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658130225620914176\/CcJSHKqG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3105939890\/1446297126","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041665"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917537624064,"id_str":"663727917537624064","text":"https:\/\/t.co\/zK5cmrIFKc","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2954871231,"id_str":"2954871231","name":"chamika gayashan","screen_name":"chamikagayasha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":14,"listed_count":0,"favourites_count":0,"statuses_count":9630,"created_at":"Thu Jan 01 14:55:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586939098528518144\/gR_Mgfby_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586939098528518144\/gR_Mgfby_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2954871231\/1428893907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zK5cmrIFKc","expanded_url":"http:\/\/fb.me\/3pNyqRiOK","display_url":"fb.me\/3pNyqRiOK","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080041666"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917499678721,"id_str":"663727917499678721","text":"\u3072\u3070\u308a\u3001\u3053\u306e\u307e\u307e\u305a\u3063\u3068\u843d\u3061\u3053\u307c\u308c\u306a\u306e\u304b\u306a\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1628856427,"id_str":"1628856427","name":"\u96f2\u96c0","screen_name":"hibari_sk_bot","location":null,"url":"http:\/\/twpf.jp\/hibari_sk_bot","description":"\u9583\u4e71\u30ab\u30b0\u30e9\u306e\u96f2\u96c0\u306e\u975e\u516c\u5f0fbot\u3002\u958b\u767a\u4e2d\u3067\u3059\u306e\u3067\u3002","protected":false,"verified":false,"followers_count":159,"friends_count":185,"listed_count":1,"favourites_count":2,"statuses_count":14038,"created_at":"Sun Jul 28 21:55:08 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454024603476582401\/Hi1s7-Sp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454024603476582401\/Hi1s7-Sp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1628856427\/1398248293","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041657"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917499727872,"id_str":"663727917499727872","text":"\"Take the opportunity to love again!\" shoots more arrows","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187100233,"id_str":"3187100233","name":"Lian Harper [Sick]","screen_name":"LittleRedHarper","location":"Jump or Star City","url":null,"description":"@HarpertheArcher & @MarkoviaTerra's little archer that fights like an assassin. Cheshire is the biological mom. |1-15 years old Lian| #MoreThanTitans","protected":false,"verified":false,"followers_count":235,"friends_count":207,"listed_count":6,"favourites_count":32,"statuses_count":2281,"created_at":"Wed May 06 22:21:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663086981618864128\/kjjnMRPY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663086981618864128\/kjjnMRPY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187100233\/1446923551","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041657"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917512327168,"id_str":"663727917512327168","text":"\u30b9\u30de\u30dbRPG\u306f\u4eca\u3053\u308c\u3092\u3084\u3063\u3066\u308b\u3088\u3002\u4eca\u306e\u30b8\u30e7\u30d6\u306f\u3053\u308c\uff01\u3000https:\/\/t.co\/NhtOn6I4nM \u30b2\u30fc\u30e0\u5185\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u2192\u3000https:\/\/t.co\/1gXCLH24QQ","source":"\u003ca href=\"http:\/\/granbluefantasy.jp\/\" rel=\"nofollow\"\u003e\u30b0\u30e9\u30f3\u30d6\u30eb\u30fc \u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3056544079,"id_str":"3056544079","name":"setel","screen_name":"setel0","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":9,"listed_count":0,"favourites_count":1,"statuses_count":351,"created_at":"Mon Mar 02 14:53:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1gXCLH24QQ","expanded_url":"http:\/\/gbf.game.mbga.jp\/#profile\/3268412","display_url":"gbf.game.mbga.jp\/#profile\/32684\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":545193714629349377,"id_str":"545193714629349377","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5Dqy35CEAErrpD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5Dqy35CEAErrpD.jpg","url":"https:\/\/t.co\/NhtOn6I4nM","display_url":"pic.twitter.com\/NhtOn6I4nM","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545193715396911104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545193715396911104,"source_status_id_str":"545193715396911104","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"extended_entities":{"media":[{"id":545193714629349377,"id_str":"545193714629349377","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5Dqy35CEAErrpD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5Dqy35CEAErrpD.jpg","url":"https:\/\/t.co\/NhtOn6I4nM","display_url":"pic.twitter.com\/NhtOn6I4nM","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545193715396911104\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545193715396911104,"source_status_id_str":"545193715396911104","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041660"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917516595200,"id_str":"663727917516595200","text":"RT @TweetsMuseum: https:\/\/t.co\/ThibRns4P8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2184671995,"id_str":"2184671995","name":"\u0627\u0644\u062d\u064f\u0628 \u0625\u0643\u062a\u0641\u0627\u0621 \u2763","screen_name":"dere5005","location":"\u062f\u0648\u0644\u0629 \u0627\u0644\u0643\u0648\u064a\u062a","url":null,"description":"\u0643\u0645\u0627 \u0623\u0648\u062f \u0644\u0627 \u0643\u0645\u0627 \u064a\u0648\u062f\u0648\u0646 \u0660\u0660 ( \u0623\u0643\u0648\u0646 )","protected":false,"verified":false,"followers_count":34865,"friends_count":35598,"listed_count":18,"favourites_count":3436,"statuses_count":78944,"created_at":"Sat Nov 09 16:54:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630184980623200256\/iPtH07CC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630184980623200256\/iPtH07CC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2184671995\/1440010988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 10:20:40 +0000 2015","id":662575316016209920,"id_str":"662575316016209920","text":"https:\/\/t.co\/ThibRns4P8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4096875802,"id_str":"4096875802","name":"\u0645\u064f\u062a\u062d\u0641 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a","screen_name":"TweetsMuseum","location":null,"url":null,"description":"\u062d\u0633\u0627\u0628 \u0627\u0642\u062a\u0628\u0627\u0633\u0627\u062a \u0644\u0623\u062c\u0645\u0644 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0641\u064a \u0627\u0644\u0633\u0627\u062d\u0629 \u0627\u0644\u0641\u0643\u0631\u064a\u0629\u060c \u0627\u0644\u062e\u0627\u0635 \u0645\u0641\u062a\u0648\u062d \u0644\u0622\u0631\u0627\u0626\u0643\u0645 \u0648 \u0627\u0642\u062a\u0631\u0627\u062d\u0627\u062a\u0643\u0645 \u0648 \u0645\u0634\u0627\u0631\u0643\u0627\u062a\u0643\u0645","protected":false,"verified":false,"followers_count":128,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":28,"created_at":"Mon Nov 02 11:14:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661680830369112064\/x73ZHxLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661680830369112064\/x73ZHxLt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4096875802\/1446500084","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662575253357481984,"id_str":"662575253357481984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","url":"https:\/\/t.co\/ThibRns4P8","display_url":"pic.twitter.com\/ThibRns4P8","expanded_url":"http:\/\/twitter.com\/TweetsMuseum\/status\/662575316016209920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662575253357481984,"id_str":"662575253357481984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","url":"https:\/\/t.co\/ThibRns4P8","display_url":"pic.twitter.com\/ThibRns4P8","expanded_url":"http:\/\/twitter.com\/TweetsMuseum\/status\/662575316016209920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TweetsMuseum","name":"\u0645\u064f\u062a\u062d\u0641 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a","id":4096875802,"id_str":"4096875802","indices":[3,16]}],"symbols":[],"media":[{"id":662575253357481984,"id_str":"662575253357481984","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","url":"https:\/\/t.co\/ThibRns4P8","display_url":"pic.twitter.com\/ThibRns4P8","expanded_url":"http:\/\/twitter.com\/TweetsMuseum\/status\/662575316016209920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662575316016209920,"source_status_id_str":"662575316016209920","source_user_id":4096875802,"source_user_id_str":"4096875802"}]},"extended_entities":{"media":[{"id":662575253357481984,"id_str":"662575253357481984","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHwrrVWUAANM5j.jpg","url":"https:\/\/t.co\/ThibRns4P8","display_url":"pic.twitter.com\/ThibRns4P8","expanded_url":"http:\/\/twitter.com\/TweetsMuseum\/status\/662575316016209920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":662575316016209920,"source_status_id_str":"662575316016209920","source_user_id":4096875802,"source_user_id_str":"4096875802"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080041661"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520699392,"id_str":"663727917520699392","text":"@masaki34341 @gunhiro1 \u53ef\u611b\u3044\u3088\u306d\uff5e\uff5e\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727764889927680,"in_reply_to_status_id_str":"663727764889927680","in_reply_to_user_id":2669417364,"in_reply_to_user_id_str":"2669417364","in_reply_to_screen_name":"masaki34341","user":{"id":2794028229,"id_str":"2794028229","name":"\u308b\u306a","screen_name":"OosimaAkb","location":"0813*\u3072\u308d\u3084","url":null,"description":"\u5bcc\u4e8c \u9ed2\u5ddd1st\/\u30d0\u30ec\u30fc\u90e8\/\u30a2\u30ea\u30a8\u30eb\u304c\u597d\u304d\u263a\n\u3068\u3082\u3066\u3043\u3093\u5927\u5acc\u3044\uff1f\u3000\u2665\u74b0\u5883\u30e1\u30f3\u30c4\u2660\n\u308a\u306a\u3061\u3087\u3059\u270c\u3000\u3000\u3000\u75e9\u305b\u308b\u2026\u9811\u5f35\u308b\u2026","protected":false,"verified":false,"followers_count":357,"friends_count":307,"listed_count":0,"favourites_count":2316,"statuses_count":1804,"created_at":"Tue Sep 30 09:24:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660038267169955841\/kfcLwqwb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660038267169955841\/kfcLwqwb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2794028229\/1446553771","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"masaki34341","name":"\u3088\u306d","id":2669417364,"id_str":"2669417364","indices":[0,12]},{"screen_name":"gunhiro1","name":"\u3050\u3093\u3058\u3072\u308d\u3084","id":2812917042,"id_str":"2812917042","indices":[13,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917537464320,"id_str":"663727917537464320","text":"RT @yendollar77: \u30c1\u30f3\u25cb\u30b3\u898b\u3066\u306f\u3057\u3083\u3050\u5c0f\u5b66\uff12\u5e74\u751f\u30f6\u702c https:\/\/t.co\/C9iZmEGpGv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2704234477,"id_str":"2704234477","name":"\u304b\u3042\u3089","screen_name":"yamano669","location":null,"url":null,"description":"\u3053\u3053(@yamano669)\u306f\u304b\u3042\u3089(@mwr669)\u306e\u8912\u3081\u3089\u308c\u305f\u3082\u306e\u3067\u306f\u306a\u3044\u5984\u60f3\u3068\u30a4\u30e9\u30b9\u30c8\u7f6e\u304d\u5834\u3002\u6210\u4eba\u6e08\u307f\u8150\u3002 \u3069\u3046\u3082\u3059\u307f\u307e\u305b\u3093\u3002\u3000\u63cf\u304f\u3082\u306e\u306f\u4e8c\u6b21\u3088\u308a\u5275\u4f5c\u306e\u65b9\u304c\u983b\u5ea6\u9ad8\u3044\u3067\u3059\u3002\u306a\u306a\u3055\u3093\u30d7\u30ec\u30a4\u4e2d\u306a\u306e\u3067\u3046\u3061\u306e\uff11\uff13\u73ed\u3068\u304b\u305d\u308c\u7cfb\u306e\u30c4\u30a4\u30fc\u30c8\u5897\u3048\u307e\u3059","protected":false,"verified":false,"followers_count":92,"friends_count":107,"listed_count":4,"favourites_count":2441,"statuses_count":8411,"created_at":"Sun Aug 03 14:02:55 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"F4A460","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660807232209027073\/bTLRwf23_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660807232209027073\/bTLRwf23_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704234477\/1446915903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:24 +0000 2015","id":663725076672483328,"id_str":"663725076672483328","text":"\u30c1\u30f3\u25cb\u30b3\u898b\u3066\u306f\u3057\u3083\u3050\u5c0f\u5b66\uff12\u5e74\u751f\u30f6\u702c https:\/\/t.co\/C9iZmEGpGv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1382074148,"id_str":"1382074148","name":"\uffe5\uff04","screen_name":"yendollar77","location":null,"url":null,"description":"\u6700\u8fd1\u3082\u3063\u3071\u3089\u30a2\u30a4\u30c9\u30eb\u30de\u30b9\u30bf\u30fcSideM\u3067\u904a\u3093\u3067\u3044\u308b\u3060\u3051\u306e\u5b58\u5728\u3068\u5316\u3057\u3066\u3044\u308b\u82e5\u5e72\u30b7\u30e7\u30bf\u30b3\u30f3\u6c17\u5473\u306a\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":203,"friends_count":198,"listed_count":7,"favourites_count":0,"statuses_count":9491,"created_at":"Fri Apr 26 14:38:02 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"24E024","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590168269320925184\/vnfK1I1-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590168269320925184\/vnfK1I1-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1382074148\/1403615758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":150,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725072398446592,"id_str":"663725072398446592","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","url":"https:\/\/t.co\/C9iZmEGpGv","display_url":"pic.twitter.com\/C9iZmEGpGv","expanded_url":"http:\/\/twitter.com\/yendollar77\/status\/663725076672483328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"large":{"w":749,"h":711,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":569,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725072398446592,"id_str":"663725072398446592","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","url":"https:\/\/t.co\/C9iZmEGpGv","display_url":"pic.twitter.com\/C9iZmEGpGv","expanded_url":"http:\/\/twitter.com\/yendollar77\/status\/663725076672483328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"large":{"w":749,"h":711,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":569,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yendollar77","name":"\uffe5\uff04","id":1382074148,"id_str":"1382074148","indices":[3,15]}],"symbols":[],"media":[{"id":663725072398446592,"id_str":"663725072398446592","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","url":"https:\/\/t.co\/C9iZmEGpGv","display_url":"pic.twitter.com\/C9iZmEGpGv","expanded_url":"http:\/\/twitter.com\/yendollar77\/status\/663725076672483328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"large":{"w":749,"h":711,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":569,"resize":"fit"}},"source_status_id":663725076672483328,"source_status_id_str":"663725076672483328","source_user_id":1382074148,"source_user_id_str":"1382074148"}]},"extended_entities":{"media":[{"id":663725072398446592,"id_str":"663725072398446592","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGb9DUcAAQBEG.jpg","url":"https:\/\/t.co\/C9iZmEGpGv","display_url":"pic.twitter.com\/C9iZmEGpGv","expanded_url":"http:\/\/twitter.com\/yendollar77\/status\/663725076672483328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"large":{"w":749,"h":711,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":569,"resize":"fit"}},"source_status_id":663725076672483328,"source_status_id_str":"663725076672483328","source_user_id":1382074148,"source_user_id_str":"1382074148"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041666"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917503897600,"id_str":"663727917503897600","text":"\u3042\u3063\uff1f\u306f\u3042\u2026\u3002\u305d\u3046\u306a\u3093\u3060\u3002\u305d\u308c\u306b\u3001\u305d\u3053\u306e\u5909\u306a\u679c\u7269\u304c\u30ed\u30c3\u30af\u30b7\u30fc\u30c9\u306b\u306a\u308b\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2195536374,"id_str":"2195536374","name":"\u845b\u8449\u7d18\u6c70","screen_name":"k_k_gaimu","location":null,"url":null,"description":"\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\u93a7\u6b66\u306b\u5909\u8eab\u3059\u308b\u9752\u5e74\u3001\u845b\u8449\u7d18\u6c70\u306e\u975e\u516c\u5f0fbot\u3002\u5287\u4e2d\u53f0\u8a5e\u3068\u5148\u9031\u307e\u3067\u306e\u304a\u3055\u3089\u3044\u3092\u81ea\u52d5\u3067\u545f\u304d\u307e\u3059\u3002\u3053\u3053\u304b\u3089\u306f\u4ffa\u306e\u30b9\u30c6\u30fc\u30b8\u3060\uff01","protected":false,"verified":false,"followers_count":326,"friends_count":392,"listed_count":0,"favourites_count":0,"statuses_count":29677,"created_at":"Fri Nov 15 07:21:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000741999457\/3db89c22e4caa4d8c4f53c18ceb1f4df_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000741999457\/3db89c22e4caa4d8c4f53c18ceb1f4df_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2195536374\/1384500416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041658"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917508132864,"id_str":"663727917508132864","text":"@hedgehogplant03 \u3000\u3044\u3064\u3082\u9811\u5f35\u3063\u3066\u308b\u306e\u3067\u8b72\u3063\u3066\uff5e\u3063\u3066\u7948\u3063\u3066\u304a\u304d\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727056170061824,"in_reply_to_status_id_str":"663727056170061824","in_reply_to_user_id":998417426,"in_reply_to_user_id_str":"998417426","in_reply_to_screen_name":"hedgehogplant03","user":{"id":814608668,"id_str":"814608668","name":"peace25_m","screen_name":"peace25key","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":57,"listed_count":0,"favourites_count":163,"statuses_count":1536,"created_at":"Mon Sep 10 06:34:12 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424416357543710720\/AC2JXvVl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424416357543710720\/AC2JXvVl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/814608668\/1386155436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hedgehogplant03","name":"hokutoka","id":998417426,"id_str":"998417426","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041659"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529108480,"id_str":"663727917529108480","text":"RT @morikuraen: \u30b3\u30df\u30c6\u30a3\u30a2\u7528\u306e\u30dd\u30b9\u30bf\u30fc\u7d75\u3067\u304d\u307e\u3057\u305f\uff01\u5f53\u65e5\u306f\u3053\u3061\u3089\u3092\u76ee\u5370\u306b\u304a\u8d8a\u3057\u304f\u3060\u3055\u3044\u3002\u30dd\u30b9\u30c8\u30ab\u30fc\u30c9\u306b\u3082\u3057\u3088\u3046\u304b\u8ff7\u3044\u307e\u3057\u305f\u304c\u3001\u30b9\u30da\u30fc\u30b9\u306b\u8db3\u3092\u904b\u3093\u3067\u4e0b\u3055\u3063\u305f\u65b9\u3078\u611f\u8b1d\u3092\u8fbc\u3081\u3066\u30d5\u30ea\u30fc\u30da\u30fc\u30d1\u30fc\uff08\u4e21\u9762\u5370\u5237\uff09\u306b\u3057\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01 https:\/\/t.co\/eZHHIzFbrs","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS v3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185757804,"id_str":"3185757804","name":"\u3042\u308b\u304f\u3093","screen_name":"Arucn","location":"Japan","url":null,"description":"\u3053\u3093\u306b\u3061\u308f\u3093","protected":false,"verified":false,"followers_count":39,"friends_count":262,"listed_count":0,"favourites_count":994,"statuses_count":1190,"created_at":"Tue May 05 04:22:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644111714410102784\/J5GA4T22.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644111714410102784\/J5GA4T22.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652021266723926016\/3fNJ_igk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652021266723926016\/3fNJ_igk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185757804\/1444286670","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:27:59 +0000 2015","id":662954648509149184,"id_str":"662954648509149184","text":"\u30b3\u30df\u30c6\u30a3\u30a2\u7528\u306e\u30dd\u30b9\u30bf\u30fc\u7d75\u3067\u304d\u307e\u3057\u305f\uff01\u5f53\u65e5\u306f\u3053\u3061\u3089\u3092\u76ee\u5370\u306b\u304a\u8d8a\u3057\u304f\u3060\u3055\u3044\u3002\u30dd\u30b9\u30c8\u30ab\u30fc\u30c9\u306b\u3082\u3057\u3088\u3046\u304b\u8ff7\u3044\u307e\u3057\u305f\u304c\u3001\u30b9\u30da\u30fc\u30b9\u306b\u8db3\u3092\u904b\u3093\u3067\u4e0b\u3055\u3063\u305f\u65b9\u3078\u611f\u8b1d\u3092\u8fbc\u3081\u3066\u30d5\u30ea\u30fc\u30da\u30fc\u30d1\u30fc\uff08\u4e21\u9762\u5370\u5237\uff09\u306b\u3057\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01 https:\/\/t.co\/eZHHIzFbrs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":41353707,"id_str":"41353707","name":"\u68ee\u5009\u5186*\u308401a\/COMITIA114","screen_name":"morikuraen","location":null,"url":"http:\/\/canvas701.blog51.fc2.com\/","description":"\u203b\u79c1\u306e\u540d\u524d\u3092\u9a19\u3063\u3066\u4e0d\u8b39\u614e\u306a\u5185\u5bb9\u306e\u30a4\u30e9\u30ea\u30af\u30e1\u30fc\u30eb\u304chttp:\/\/trash-mail.com\u306e\u30a2\u30c9\u30ec\u30b9\u304b\u3089\u9001\u3089\u308c\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u3002(10\/23\u73fe\u5728)\u203b \u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc\u3002\u80b2\u5150\u4e2d\u3002\u67f4\u72ac\u597d\u304d\u3002\u25a0http:\/\/morikuraen.tumblr.com\/ \u25a0http:\/\/pixiv.me\/enxcanvas","protected":false,"verified":false,"followers_count":14127,"friends_count":292,"listed_count":599,"favourites_count":8817,"statuses_count":6071,"created_at":"Wed May 20 13:04:37 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662985637096636418\/MnAsywLf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662985637096636418\/MnAsywLf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/41353707\/1438431307","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":631,"favorite_count":1890,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662954646743322625,"id_str":"662954646743322625","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","url":"https:\/\/t.co\/eZHHIzFbrs","display_url":"pic.twitter.com\/eZHHIzFbrs","expanded_url":"http:\/\/twitter.com\/morikuraen\/status\/662954648509149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":745,"h":1053,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662954646743322625,"id_str":"662954646743322625","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","url":"https:\/\/t.co\/eZHHIzFbrs","display_url":"pic.twitter.com\/eZHHIzFbrs","expanded_url":"http:\/\/twitter.com\/morikuraen\/status\/662954648509149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":745,"h":1053,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"morikuraen","name":"\u68ee\u5009\u5186*\u308401a\/COMITIA114","id":41353707,"id_str":"41353707","indices":[3,14]}],"symbols":[],"media":[{"id":662954646743322625,"id_str":"662954646743322625","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","url":"https:\/\/t.co\/eZHHIzFbrs","display_url":"pic.twitter.com\/eZHHIzFbrs","expanded_url":"http:\/\/twitter.com\/morikuraen\/status\/662954648509149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":745,"h":1053,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":662954648509149184,"source_status_id_str":"662954648509149184","source_user_id":41353707,"source_user_id_str":"41353707"}]},"extended_entities":{"media":[{"id":662954646743322625,"id_str":"662954646743322625","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNJvR1UkAE4mwp.png","url":"https:\/\/t.co\/eZHHIzFbrs","display_url":"pic.twitter.com\/eZHHIzFbrs","expanded_url":"http:\/\/twitter.com\/morikuraen\/status\/662954648509149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":745,"h":1053,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":662954648509149184,"source_status_id_str":"662954648509149184","source_user_id":41353707,"source_user_id_str":"41353707"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041664"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520855040,"id_str":"663727917520855040","text":"https:\/\/t.co\/2N5xfPNcwg","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":764185094,"id_str":"764185094","name":"hazem shaheen","screen_name":"hshaheen42","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":23,"friends_count":45,"listed_count":0,"favourites_count":0,"statuses_count":2404,"created_at":"Fri Aug 17 18:11:55 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2N5xfPNcwg","expanded_url":"http:\/\/fb.me\/6LidEJZBV","display_url":"fb.me\/6LidEJZBV","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917508091904,"id_str":"663727917508091904","text":"\u6e05\u695a\u7cfb\u751f\u4fdd\u30ec\u30c7\u30a3\u304c\u4e2d\u51fa\u3057\u55b6\u696d\u3067\u5951\u7d04\u3092\u3068\u308b\u4e00\u90e8\u59cb\u7d42\uff01\u21d2 https:\/\/t.co\/RM8e4MBrkR https:\/\/t.co\/I7cv5VRefB","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3602735418,"id_str":"3602735418","name":"\u3074\u3093\u304f\u308d\u30fc\u305f\u30fc\uff20\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","screen_name":"lcpinkrotorman","location":null,"url":null,"description":"\u30ea\u30d5\u30a9\u30ed\u30fc\uff11\uff10\uff10\uff05\u3059\u3050\u306b\u3057\u307e\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3067\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3067\u30d5\u30a9\u30ed\u30ef\u30fc\u3092\u5897\u3084\u3057\u3066\u3001\u30c4\u30a4\u30c3\u30bf\u30fc\u30e9\u30a4\u30d5\u3092\u6e80\u55ab\u3057\u307e\u3057\u3087\u3046\uff01","protected":false,"verified":false,"followers_count":381,"friends_count":436,"listed_count":0,"favourites_count":0,"statuses_count":3199,"created_at":"Fri Sep 18 07:46:41 +0000 2015","utc_offset":32400,"time_zone":"Sapporo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644779640528080896\/Huz9Kwl1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644779640528080896\/Huz9Kwl1_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RM8e4MBrkR","expanded_url":"http:\/\/click.dtiserv2.com\/Direct\/9000999-365-24226\/moviepages\/070215_250\/index.html","display_url":"click.dtiserv2.com\/Direct\/9000999\u2026","indices":[27,50]},{"url":"https:\/\/t.co\/I7cv5VRefB","expanded_url":"http:\/\/twitter.com\/kyonyuubinyuu\/status\/625986518658580480\/photo\/1","display_url":"pic.twitter.com\/I7cv5VRefB","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041659"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917533298689,"id_str":"663727917533298689","text":"RT @daiki_gekirock: \u8ab0\u304b\u30de\u30b8\u3067\u30e9\u30c3\u30c9\u3068\u30ef\u30f3\u30aa\u30af\u306e\u5bfe\u30d0\u30f3\u30c1\u30b1\u30c3\u30c8\u8b72\u3063\u3066\u304f\u308c\u2026\n\u30d1\u30f3\u30c4\u4e00\u4e01\u3067\u6821\u5ead\u306e\u3069\u771f\u3093\u4e2d\u3067\u9006\u7acb\u3061\u3059\u308b\u304b\u3089\u8b72\u3063\u3066\u304f\u308c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2849125892,"id_str":"2849125892","name":"Y\u144cI\u157c\u15e9\u144e @15SHISHAMO","screen_name":"____hhhhhan","location":"\u1587O\u1455K \u144e\u2019 \u1587O\u14aa\u14aaE\u1587 . \u15e9","url":"http:\/\/instagram.com\/yu1han","description":null,"protected":false,"verified":false,"followers_count":332,"friends_count":248,"listed_count":0,"favourites_count":5800,"statuses_count":4430,"created_at":"Thu Oct 09 18:45:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663284204789063681\/lEWbm2nt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663284204789063681\/lEWbm2nt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2849125892\/1445023759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727541031714816,"id_str":"663727541031714816","text":"\u8ab0\u304b\u30de\u30b8\u3067\u30e9\u30c3\u30c9\u3068\u30ef\u30f3\u30aa\u30af\u306e\u5bfe\u30d0\u30f3\u30c1\u30b1\u30c3\u30c8\u8b72\u3063\u3066\u304f\u308c\u2026\n\u30d1\u30f3\u30c4\u4e00\u4e01\u3067\u6821\u5ead\u306e\u3069\u771f\u3093\u4e2d\u3067\u9006\u7acb\u3061\u3059\u308b\u304b\u3089\u8b72\u3063\u3066\u304f\u308c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958682118,"id_str":"2958682118","name":"DAIKI@\u30b2\u30ad\u30af\u30ed\u30b9\u30bf\u30c3\u30d5","screen_name":"daiki_gekirock","location":null,"url":null,"description":"GEKIROCK CLOTHING(\u30b2\u30ad\u30af\u30ed)\u306e\u88cf\u65b9\u3067\u50cd\u304f\u4e0b\u30cd\u30bf\u5927\u597d\u304d\u91d1\u9aea\u3061\u3093\u3053\u30d8\u30a2\u30fc21\u6b73\u3067\u3059\uff01\u5e97\u982d\u306b\u306f\u57fa\u672c\u3044\u307e\u305b\u3093\u6ce3 \u30a4\u30f3\u30ac\u30b9\u30c8\u30ea\u30a2\u30eb(@in_gust_real )\u3068\u3044\u3046\u30d0\u30f3\u30c9\u3067\u30c9\u30e9\u30e0\u3084\u3063\u305f\u308a\u3002 \u30ef\u30f3\u30aa\u30af\u30ac\u30c1\u52e2\u3060\u3063\u305f\u308a\u3002\u6fc0\u30ed\u30c3\u30afDJ\u30d1\u30fc\u30c6\u30a3\u30fc\u306b\u306f\u6bce\u56de\u3044\u305f\u308a\u3002\u901a\u77e5\u304c\u30af\u30bd\u591a\u3044\u306e\u3067\u30ea\u30d7\u3001\u30d5\u30a9\u30ed\u30fc\u6c17\u3065\u304b\u306a\u3044\u3053\u3068\u3042\u3063\u305f\u308a\u3002","protected":false,"verified":false,"followers_count":4833,"friends_count":3279,"listed_count":36,"favourites_count":11675,"statuses_count":10108,"created_at":"Sun Jan 04 16:43:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656500381237710848\/xK7TF3jG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656500381237710848\/xK7TF3jG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958682118\/1435192928","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daiki_gekirock","name":"DAIKI@\u30b2\u30ad\u30af\u30ed\u30b9\u30bf\u30c3\u30d5","id":2958682118,"id_str":"2958682118","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041665"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520719872,"id_str":"663727917520719872","text":"\u672c\u65e5\u3082\u3054\u6765\u5e97\u306e\u304a\u5ba2\u69d8\u306b\u611f\u8b1d\u3001\u611f\u8b1d\u3002\u8d14\u5c53\u5c4b\u5317\u91ce\u962a\u6025\u5e97 06-6375-1450 https:\/\/t.co\/UBd2j3WgQO","source":"\u003ca href=\"http:\/\/www.hotpepper.jp\" rel=\"nofollow\"\u003eHotpepper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992928544,"id_str":"2992928544","name":"DD_hiikiya","screen_name":"DD_hiikiya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":10537,"created_at":"Fri Jan 23 06:09:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UBd2j3WgQO","expanded_url":"http:\/\/www.hotpepper.jp\/strJ000012494\/?vos=nhpp01","display_url":"hotpepper.jp\/strJ000012494\/\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917512400897,"id_str":"663727917512400897","text":"@thelovelymrfred Horror-comedy, but you might like the Horribly Slow Murderer (10 min short film) https:\/\/t.co\/0CPBPV4Lcr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726727311589376,"in_reply_to_status_id_str":"663726727311589376","in_reply_to_user_id":48043500,"in_reply_to_user_id_str":"48043500","in_reply_to_screen_name":"thelovelymrfred","user":{"id":3293225656,"id_str":"3293225656","name":"Christine","screen_name":"swefnwynn","location":"UK","url":null,"description":"A few things I like: dogs, dreams, history, herbs, fandom (#blakes7 #drwho #buffy), photography, eagerly awaiting the zombie apocalypse, and being asleep.","protected":false,"verified":false,"followers_count":79,"friends_count":167,"listed_count":7,"favourites_count":650,"statuses_count":1361,"created_at":"Thu May 21 16:27:48 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"106A25","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601428199663239168\/LzqYbNHg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601428199663239168\/LzqYbNHg_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0CPBPV4Lcr","expanded_url":"https:\/\/www.youtube.com\/watch?v=9VDvgL58h_Y","display_url":"youtube.com\/watch?v=9VDvgL\u2026","indices":[98,121]}],"user_mentions":[{"screen_name":"thelovelymrfred","name":"Erik the Otter","id":48043500,"id_str":"48043500","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041660"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529104384,"id_str":"663727917529104384","text":"All people made my morning \ud83c\udf92 .. \u2757\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3134194230,"id_str":"3134194230","name":"QueenJ\u2764\ufe0f","screen_name":"McdonaldJayla","location":null,"url":null,"description":"ig:___.QueenJ","protected":false,"verified":false,"followers_count":92,"friends_count":97,"listed_count":1,"favourites_count":326,"statuses_count":892,"created_at":"Fri Apr 03 05:29:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635548602908196864\/BfB3V9Go_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635548602908196864\/BfB3V9Go_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3134194230\/1440361721","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041664"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917516505088,"id_str":"663727917516505088","text":"@ManMolester nice","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726084362489856,"in_reply_to_status_id_str":"663726084362489856","in_reply_to_user_id":350840122,"in_reply_to_user_id_str":"350840122","in_reply_to_screen_name":"ManMolester","user":{"id":122962934,"id_str":"122962934","name":"Angel","screen_name":"angelicaasimm","location":null,"url":"http:\/\/ask.fm\/angelicaasimm","description":"@fbnhx \u2764\ufe0f","protected":false,"verified":false,"followers_count":810,"friends_count":455,"listed_count":4,"favourites_count":1612,"statuses_count":52731,"created_at":"Sun Mar 14 14:05:52 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3D9EFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613027246\/1n3bdujqtf73p9xbr8xp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613027246\/1n3bdujqtf73p9xbr8xp.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"5F79FA","profile_sidebar_fill_color":"FCFFFF","profile_text_color":"FF1F5E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660772417271263232\/v-LlI_j7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660772417271263232\/v-LlI_j7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122962934\/1446366453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ManMolester","name":"Gabriel Balana","id":350840122,"id_str":"350840122","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041661"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520695297,"id_str":"663727917520695297","text":"RT @DavidRomeiPHD: The radicalization of America's #Jewish youth is a major concern to those of us who know the dangers of #terrorism. http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1494070861,"id_str":"1494070861","name":"AugustLady241","screen_name":"AugustLady241","location":"NY","url":null,"description":null,"protected":false,"verified":false,"followers_count":2216,"friends_count":2250,"listed_count":225,"favourites_count":22002,"statuses_count":92247,"created_at":"Sat Jun 08 22:18:18 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261582990791\/06f0fba994640515a381ef7d4ca3408c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261582990791\/06f0fba994640515a381ef7d4ca3408c_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:16 +0000 2015","id":663721269431558144,"id_str":"663721269431558144","text":"The radicalization of America's #Jewish youth is a major concern to those of us who know the dangers of #terrorism. https:\/\/t.co\/UwR0mPmQyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2269619268,"id_str":"2269619268","name":"Dr. David Romei","screen_name":"DavidRomeiPHD","location":"Greater NYC","url":null,"description":"Scholar and Writer. Leadership, Philosophy, History and Justice. United States Army Veteran. RT's do not imply agreement or endorsement.","protected":false,"verified":false,"followers_count":13433,"friends_count":9069,"listed_count":297,"favourites_count":14784,"statuses_count":58752,"created_at":"Tue Dec 31 00:42:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"28A7BD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458468130507857921\/82sgrQeA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458468130507857921\/82sgrQeA.jpeg","profile_background_tile":false,"profile_link_color":"316ACC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555264560001601537\/TqclPAOl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555264560001601537\/TqclPAOl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2269619268\/1408259731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[{"text":"Jewish","indices":[32,39]},{"text":"terrorism","indices":[104,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721267850252288,"id_str":"663721267850252288","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","url":"https:\/\/t.co\/UwR0mPmQyo","display_url":"pic.twitter.com\/UwR0mPmQyo","expanded_url":"http:\/\/twitter.com\/DavidRomeiPHD\/status\/663721269431558144\/photo\/1","type":"photo","sizes":{"large":{"w":701,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"},"medium":{"w":600,"h":776,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721267850252288,"id_str":"663721267850252288","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","url":"https:\/\/t.co\/UwR0mPmQyo","display_url":"pic.twitter.com\/UwR0mPmQyo","expanded_url":"http:\/\/twitter.com\/DavidRomeiPHD\/status\/663721269431558144\/photo\/1","type":"photo","sizes":{"large":{"w":701,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"},"medium":{"w":600,"h":776,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Jewish","indices":[51,58]},{"text":"terrorism","indices":[123,133]}],"urls":[],"user_mentions":[{"screen_name":"DavidRomeiPHD","name":"Dr. David Romei","id":2269619268,"id_str":"2269619268","indices":[3,17]}],"symbols":[],"media":[{"id":663721267850252288,"id_str":"663721267850252288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","url":"https:\/\/t.co\/UwR0mPmQyo","display_url":"pic.twitter.com\/UwR0mPmQyo","expanded_url":"http:\/\/twitter.com\/DavidRomeiPHD\/status\/663721269431558144\/photo\/1","type":"photo","sizes":{"large":{"w":701,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"},"medium":{"w":600,"h":776,"resize":"fit"}},"source_status_id":663721269431558144,"source_status_id_str":"663721269431558144","source_user_id":2269619268,"source_user_id_str":"2269619268"}]},"extended_entities":{"media":[{"id":663721267850252288,"id_str":"663721267850252288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC-gAWEAACuBI.png","url":"https:\/\/t.co\/UwR0mPmQyo","display_url":"pic.twitter.com\/UwR0mPmQyo","expanded_url":"http:\/\/twitter.com\/DavidRomeiPHD\/status\/663721269431558144\/photo\/1","type":"photo","sizes":{"large":{"w":701,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":439,"resize":"fit"},"medium":{"w":600,"h":776,"resize":"fit"}},"source_status_id":663721269431558144,"source_status_id_str":"663721269431558144","source_user_id":2269619268,"source_user_id_str":"2269619268"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917499850752,"id_str":"663727917499850752","text":"Mauro no me deja fumar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1344383749,"id_str":"1344383749","name":"\u043c\u0454\u2113","screen_name":"forramalditx_","location":"en la concha de tu vieja","url":null,"description":null,"protected":false,"verified":false,"followers_count":6991,"friends_count":7671,"listed_count":7,"favourites_count":716,"statuses_count":14364,"created_at":"Thu Apr 11 13:19:47 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662479057699938304\/Vk7QjqMp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662479057699938304\/Vk7QjqMp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1344383749\/1446265251","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041657"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917533437952,"id_str":"663727917533437952","text":"RT @cmsktl12: \ubbf8\uce58\uaca0\ub124 #\uc778\ud53c\ub2c8\ud2b8 \ub791 #\ubc30\ub4dc \uc601\uc5b4\ub85c\uc4f8\ub54c #INFINITE \ub098 #BAD \ucc98\ub7fc\ub300\ubb38\uc790\ub85c\uc4f0\ub798\uc694 \ucd08\uc131\ub3c4\uc4f0\uba74\uc548\ub41c\ub300 \ud2b9\uc218\ubb38\uc790\uc4f0\uc9c0\ub9c8\ub798 \uba58\uc158\ub3c4\ubcf4\ub0b4\ub798 \ud558\ub77c\ub294\uac70\uc5c4\uccad\ub9ce\ub124 \ucc38\uace0\ub85c\ud0dc\uadf8\ubd99\uc5ec\uc11c\ub3c4\uc4f0\uc9c0\ub9c8\ub798\n@MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1830711440,"id_str":"1830711440","name":"\uc2be\uc774","screen_name":"sht9088","location":null,"url":null,"description":"\uc778\uc2be!!\u2661","protected":false,"verified":false,"followers_count":35,"friends_count":212,"listed_count":0,"favourites_count":24,"statuses_count":2303,"created_at":"Sun Sep 08 15:31:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648504525469290496\/Wp8Z-ld6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648504525469290496\/Wp8Z-ld6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1830711440\/1433782944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:59 +0000 2015","id":663724973815562241,"id_str":"663724973815562241","text":"\ubbf8\uce58\uaca0\ub124 #\uc778\ud53c\ub2c8\ud2b8 \ub791 #\ubc30\ub4dc \uc601\uc5b4\ub85c\uc4f8\ub54c #INFINITE \ub098 #BAD \ucc98\ub7fc\ub300\ubb38\uc790\ub85c\uc4f0\ub798\uc694 \ucd08\uc131\ub3c4\uc4f0\uba74\uc548\ub41c\ub300 \ud2b9\uc218\ubb38\uc790\uc4f0\uc9c0\ub9c8\ub798 \uba58\uc158\ub3c4\ubcf4\ub0b4\ub798 \ud558\ub77c\ub294\uac70\uc5c4\uccad\ub9ce\ub124 \ucc38\uace0\ub85c\ud0dc\uadf8\ubd99\uc5ec\uc11c\ub3c4\uc4f0\uc9c0\ub9c8\ub798\n@MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3293953838,"id_str":"3293953838","name":"[\ud22c\ud45c\uc774\ubca4\uc911]mini\ud074\ub85c\ubc84","screen_name":"cmsktl12","location":null,"url":null,"description":"98\ub144\uc0dd \uc778\uc2a4\ud53c\ub9bf \uc778\ud53c\ub2c8\ud2b8:\uc131\uaddc:\ub3d9\uc6b0:\uc6b0\ud604:\ud638\uc6d0:\uc131\uc5f4:\uba85\uc218:\uc131\uc885\nbins\uc5b8\ub2c80\ud638\ud32c","protected":false,"verified":false,"followers_count":175,"friends_count":160,"listed_count":0,"favourites_count":328,"statuses_count":7762,"created_at":"Sun Jul 26 00:29:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646717676841074688\/QOsB-kqw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646717676841074688\/QOsB-kqw_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[5,10]},{"text":"\ubc30\ub4dc","indices":[13,16]},{"text":"INFINITE","indices":[23,32]},{"text":"BAD","indices":[35,39]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[98,107]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[19,24]},{"text":"\ubc30\ub4dc","indices":[27,30]},{"text":"INFINITE","indices":[37,46]},{"text":"BAD","indices":[49,53]}],"urls":[],"user_mentions":[{"screen_name":"cmsktl12","name":"[\ud22c\ud45c\uc774\ubca4\uc911]mini\ud074\ub85c\ubc84","id":3293953838,"id_str":"3293953838","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[112,121]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080041665"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520699393,"id_str":"663727917520699393","text":"@leeeeechi pfft im poor. aiyo honestly dw not worth it lo.. some more so many fakes in the market. fossil also got alot of simple ones ma","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727621004357632,"in_reply_to_status_id_str":"663727621004357632","in_reply_to_user_id":513134738,"in_reply_to_user_id_str":"513134738","in_reply_to_screen_name":"leeeeechi","user":{"id":238071864,"id_str":"238071864","name":"\ufe0f","screen_name":"_cyberkello_","location":"cjm. ","url":"http:\/\/Instagram.com\/iamnumber33","description":"\u05de\u05d6\u05de\u05d5\u05e8 \u05db\u05d2:\u05d3","protected":false,"verified":false,"followers_count":1722,"friends_count":1095,"listed_count":5,"favourites_count":7913,"statuses_count":30608,"created_at":"Fri Jan 14 08:48:42 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182523450\/dtmfj-4u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182523450\/dtmfj-4u.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"61D5A8","profile_text_color":"C9D0A7","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659289000008511488\/cuhQa7yK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659289000008511488\/cuhQa7yK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238071864\/1445258052","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leeeeechi","name":"leechi","id":513134738,"id_str":"513134738","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520650240,"id_str":"663727917520650240","text":"@ayano_yamaki \u304a\u3084\u3059\u307f\u3002\u4eca\u65e5\u306f\u65e9\u304f\u5bdd\u308b\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727793142808576,"in_reply_to_status_id_str":"663727793142808576","in_reply_to_user_id":485630536,"in_reply_to_user_id_str":"485630536","in_reply_to_screen_name":"ayano_yamaki","user":{"id":89873594,"id_str":"89873594","name":"\u3053\u3053\u3042(\u7b11\u9854\u304c\u4e00\u756a)","screen_name":"cocoa0928","location":"\u798f\u5ca1","url":"http:\/\/youtu.be\/W1UbMZtAQG8","description":"Baby How much do you love me?","protected":false,"verified":false,"followers_count":683,"friends_count":669,"listed_count":36,"favourites_count":5813,"statuses_count":55381,"created_at":"Sat Nov 14 04:52:41 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663383062655295488\/OZj6b4YK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663383062655295488\/OZj6b4YK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89873594\/1439849397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayano_yamaki","name":"\u5c71\u6728\u5f69\u4e43@LinQ","id":485630536,"id_str":"485630536","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529067520,"id_str":"663727917529067520","text":"RT @1120Barbaroi: \u521d\u3081\u3066\u3067\u3059\uff0198line\u306e\u30c6\u30e8\u30f3\u30da\u30f3\u3067\u3059\uff01\n#\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4168994834,"id_str":"4168994834","name":"\u3086 \u306a@\u30bd\u30b7\u57a2","screen_name":"y_ytt0ss","location":"candle made by \ud0dc\uc5f0.*:\uff9f","url":null,"description":"\u524d\u306e\u57a2@g_fw0c \u30ed\u30b0\u30a4\u30f3\u3067\u304d\u306a\u304f\u306a\u3063\u305f\u306e\u3067\u65b0\u3057\u304f\u4f5c\u308a\u76f4\u3057\u307e\u3057\u305f(;_;) \u524d\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3057\u305f\uff01\u3053\u3063\u3061\u306e\u57a2\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff0198line(17) S\u2661NE JAPAN \uc724\uc544\u3068\u540c\u3058\u540d\u524d\u3086\u306a\u3067\u3059(^^) 12\/12\u30ac\u30a4\u30b7 \u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u3067\u3059\uff01 \u672c\u57a2\u21d2@ttssssts","protected":false,"verified":false,"followers_count":99,"friends_count":148,"listed_count":0,"favourites_count":13,"statuses_count":63,"created_at":"Sun Nov 08 14:25:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663363396557930496\/CVmJe07H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663363396557930496\/CVmJe07H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4168994834\/1446993194","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 09:14:17 +0000 2015","id":658572346647691264,"id_str":"658572346647691264","text":"\u521d\u3081\u3066\u3067\u3059\uff0198line\u306e\u30c6\u30e8\u30f3\u30da\u30f3\u3067\u3059\uff01\n#\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059 https:\/\/t.co\/kyWU9IzSjU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3924517513,"id_str":"3924517513","name":"LEO","screen_name":"1120Barbaroi","location":null,"url":null,"description":"\u3051\u30fc\u307d\u57a2 SONE \u30c6\u30e8\u30f3\u30da\u30f3 \u30ec\u30c8\u30d9\u30eb f(x) twice\u3070\u3093\u305f\u3093 bigbang \u57fc\u738924\u306823\u4ea4\u63db\u3057\u3066\u304f\u308c\u308b\u4eba\u52df\u96c6\u4e2d\uff01\u3001\u3060\u308c\u304b\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":104,"friends_count":159,"listed_count":0,"favourites_count":0,"statuses_count":30,"created_at":"Sat Oct 17 11:46:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656063758687571968\/CkRPa_eu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656063758687571968\/CkRPa_eu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3924517513\/1445253904","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":97,"favorite_count":38,"entities":{"hashtags":[{"text":"\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[22,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658572332571582465,"id_str":"658572332571582465","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658572332571582465,"id_str":"658572332571582465","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":658572332873547776,"id_str":"658572332873547776","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DCfUAAASp_P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DCfUAAASp_P.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":602,"resize":"fit"},"large":{"w":636,"h":639,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}}},{"id":658572332814856192,"id_str":"658572332814856192","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DCRUcAAlke3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DCRUcAAlke3.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":398,"resize":"fit"},"large":{"w":590,"h":398,"resize":"fit"}}},{"id":658572332991057920,"id_str":"658572332991057920","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DC7VEAAhPKb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DC7VEAAhPKb.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30bd\u30b7\u597d\u304d\u306a\u65b9\u5168\u54e1\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u30bd\u30b7\u304c\u597d\u304d\u306a\u65b9\u3067RT\u304b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089100\u3071\u30fc\u30d5\u30a9\u30ed\u30fc\u3057\u306b\u98db\u3093\u3067\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308b\u30d5\u30a9\u30ed\u30ef\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[40,130]}],"urls":[],"user_mentions":[{"screen_name":"1120Barbaroi","name":"LEO","id":3924517513,"id_str":"3924517513","indices":[3,16]}],"symbols":[],"media":[{"id":658572332571582465,"id_str":"658572332571582465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":658572346647691264,"source_status_id_str":"658572346647691264","source_user_id":3924517513,"source_user_id_str":"3924517513"}]},"extended_entities":{"media":[{"id":658572332571582465,"id_str":"658572332571582465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DBXUYAEsb2k.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":405,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":658572346647691264,"source_status_id_str":"658572346647691264","source_user_id":3924517513,"source_user_id_str":"3924517513"},{"id":658572332873547776,"id_str":"658572332873547776","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DCfUAAASp_P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DCfUAAASp_P.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":602,"resize":"fit"},"large":{"w":636,"h":639,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}},"source_status_id":658572346647691264,"source_status_id_str":"658572346647691264","source_user_id":3924517513,"source_user_id_str":"3924517513"},{"id":658572332814856192,"id_str":"658572332814856192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DCRUcAAlke3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DCRUcAAlke3.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":398,"resize":"fit"},"large":{"w":590,"h":398,"resize":"fit"}},"source_status_id":658572346647691264,"source_status_id_str":"658572346647691264","source_user_id":3924517513,"source_user_id_str":"3924517513"},{"id":658572332991057920,"id_str":"658572332991057920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSO4DC7VEAAhPKb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSO4DC7VEAAhPKb.jpg","url":"https:\/\/t.co\/kyWU9IzSjU","display_url":"pic.twitter.com\/kyWU9IzSjU","expanded_url":"http:\/\/twitter.com\/1120Barbaroi\/status\/658572346647691264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":658572346647691264,"source_status_id_str":"658572346647691264","source_user_id":3924517513,"source_user_id_str":"3924517513"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041664"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917516484608,"id_str":"663727917516484608","text":"Bikin fams yok?","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2243363948,"id_str":"2243363948","name":"-","screen_name":"Inliciouss","location":null,"url":null,"description":"I don't care.","protected":false,"verified":false,"followers_count":24,"friends_count":18,"listed_count":0,"favourites_count":2,"statuses_count":26959,"created_at":"Fri Dec 13 04:51:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/443268535565819905\/AdT0Gs9O_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/443268535565819905\/AdT0Gs9O_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2243363948\/1391509293","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041661"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917503909888,"id_str":"663727917503909888","text":"\u6620\u753b\u898b\u3066\u304d\u305f\u3067\u3059\u3002 https:\/\/t.co\/UMQHlCnNFd","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2467453957,"id_str":"2467453957","name":"\u3058\u3085\u308a\u3048\u3063\u305f\u30fb\u308a\u308a\u3043\uff20FF14\u3057\u3093\u308a\u3085\u30fc","screen_name":"JuliettaLyly","location":null,"url":"http:\/\/jp.finalfantasyxiv.com\/lodestone\/character\/3339256\/","description":"\u3057\u3093\u308a\u3085\u30fc\u9bd6\u3067\u307e\u3063\u305f\u308a\u30d7\u30ec\u30a4\u3057\u3066\u3044\u308b\u3058\u3085\u308a\u3048\u3063\u305f\u30fb\u308a\u308a\u3043\u3067\u3059\u3002FF14\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":25,"friends_count":54,"listed_count":1,"favourites_count":22,"statuses_count":880,"created_at":"Mon Apr 28 08:53:48 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"004C8F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662519168869142528\/cgT5hagh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662519168869142528\/cgT5hagh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467453957\/1444853917","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727914483978240,"id_str":"663727914483978240","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBYpUEAAD9rs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBYpUEAAD9rs.jpg","url":"https:\/\/t.co\/UMQHlCnNFd","display_url":"pic.twitter.com\/UMQHlCnNFd","expanded_url":"http:\/\/twitter.com\/JuliettaLyly\/status\/663727917503909888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727914483978240,"id_str":"663727914483978240","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBYpUEAAD9rs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBYpUEAAD9rs.jpg","url":"https:\/\/t.co\/UMQHlCnNFd","display_url":"pic.twitter.com\/UMQHlCnNFd","expanded_url":"http:\/\/twitter.com\/JuliettaLyly\/status\/663727917503909888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041658"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917537492992,"id_str":"663727917537492992","text":"@HSSkey \u725b\u4e73\u3068\u7247\u6817\u7c89\u9593\u9055\u3048\u3061\u3083\u3063\u305f \uff83\uff8d\uff6f\u2665(\u88cf\u58f0\uff09 https:\/\/t.co\/32jCj12R4h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715970972684288,"in_reply_to_status_id_str":"663715970972684288","in_reply_to_user_id":1100559102,"in_reply_to_user_id_str":"1100559102","in_reply_to_screen_name":"HSSkey","user":{"id":536992077,"id_str":"536992077","name":"\u308a\u3087\u305f","screen_name":"nakabisyaou","location":"\u3054\u98ef\u306e\u7f8e\u5473\u3057\u3044\u6240\u304b\u3089\u4ffa\u59b9\u306e\u8056\u5730\u3078","url":null,"description":"\u304f\u308a\u3080\u305f\u3093\u3068\u540c\u3058\u5927\u5b661\u5e74\u751f\uff01(\u2026\u3093\uff1f\u78ba\u304b\u9ad83\u6642\u3082\u2026\u2026)\u597d\u7269 \u30a2\u30cb\u30e1 \u6f2b\u753b SA \u5c06\u68cb \u56f2\u7881 \uff81\uff6a\uff7d \u9ebb\u96c0 \u904a\u622f\u738b \u5353\u7403\u3000\u5c06\u68cb\u306e\u64ec\u4eba\u5316\u540c\u4eba\u8a08\u753b\u9032\u884c\u4e2d","protected":false,"verified":false,"followers_count":650,"friends_count":762,"listed_count":2,"favourites_count":1425,"statuses_count":8792,"created_at":"Mon Mar 26 04:06:31 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417093736221265920\/lv71mB1W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417093736221265920\/lv71mB1W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/536992077\/1409670149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HSSkey","name":"key@\u68a8\u5b50\u3061\u3083\u3093\u63a8\u3057","id":1100559102,"id_str":"1100559102","indices":[0,7]}],"symbols":[],"media":[{"id":663727913586442240,"id_str":"663727913586442240","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBVTUwAAg96k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBVTUwAAg96k.jpg","url":"https:\/\/t.co\/32jCj12R4h","display_url":"pic.twitter.com\/32jCj12R4h","expanded_url":"http:\/\/twitter.com\/nakabisyaou\/status\/663727917537492992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":512,"h":287,"resize":"fit"},"large":{"w":512,"h":287,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727913586442240,"id_str":"663727913586442240","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBVTUwAAg96k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBVTUwAAg96k.jpg","url":"https:\/\/t.co\/32jCj12R4h","display_url":"pic.twitter.com\/32jCj12R4h","expanded_url":"http:\/\/twitter.com\/nakabisyaou\/status\/663727917537492992\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":512,"h":287,"resize":"fit"},"large":{"w":512,"h":287,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080041666"} +{"delete":{"status":{"id":663643427456708609,"id_str":"663643427456708609","user_id":1277271103,"user_id_str":"1277271103"},"timestamp_ms":"1447080042042"}} +{"delete":{"status":{"id":663709760382832640,"id_str":"663709760382832640","user_id":4110630854,"user_id_str":"4110630854"},"timestamp_ms":"1447080042096"}} +{"delete":{"status":{"id":537249733169790977,"id_str":"537249733169790977","user_id":2677400858,"user_id_str":"2677400858"},"timestamp_ms":"1447080042085"}} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917520830464,"id_str":"663727917520830464","text":"..!! https:\/\/t.co\/CSBaoqh9Gr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2592877112,"id_str":"2592877112","name":"\u062e\u0627\u0644\u062f","screen_name":"yara66c","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u062a\u062c\u0627\u0648\u0632\u062a \u0643\u0644 \u0627\u0644\u0627\u0634\u064a\u0627\u0621..\u0627\u0644\u062d\u0628...\u0648\u0627\u0644\u0643\u0631\u0647...\u0627\u0644\u063a\u0636\u0628...\u0648\u0627\u0644\u0645\u0635\u0644\u062d\u0647..\u0648\u0627\u0644\u0646\u0641\u0627\u0642!!\n\u0648\u0627\u0643\u062a\u0641\u064a\u062a..\u0628\u0627\u0644\u0645\u0631\u0627\u0642\u0628\u0647..\u0648\u0627\u0644\u062c\u0646\u0648\u0646!!\n\u0627\u064a\u0633\u0644\u0646\u062f\u0627...\u0628\u0644\u0627\u062f \u0627\u0644\u0646\u0647\u0627\u064a\u0627\u062a!!","protected":false,"verified":false,"followers_count":10176,"friends_count":11029,"listed_count":8,"favourites_count":393,"statuses_count":32264,"created_at":"Sat Jun 28 10:27:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662307446115930114\/5tNZGK20_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662307446115930114\/5tNZGK20_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2592877112\/1438971535","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727834066755584,"id_str":"663727834066755584","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8tEWoAAmHrY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8tEWoAAmHrY.jpg","url":"https:\/\/t.co\/CSBaoqh9Gr","display_url":"pic.twitter.com\/CSBaoqh9Gr","expanded_url":"http:\/\/twitter.com\/yara66c\/status\/663727917520830464\/photo\/1","type":"photo","sizes":{"large":{"w":552,"h":699,"resize":"fit"},"small":{"w":340,"h":430,"resize":"fit"},"medium":{"w":552,"h":699,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727834066755584,"id_str":"663727834066755584","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8tEWoAAmHrY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8tEWoAAmHrY.jpg","url":"https:\/\/t.co\/CSBaoqh9Gr","display_url":"pic.twitter.com\/CSBaoqh9Gr","expanded_url":"http:\/\/twitter.com\/yara66c\/status\/663727917520830464\/photo\/1","type":"photo","sizes":{"large":{"w":552,"h":699,"resize":"fit"},"small":{"w":340,"h":430,"resize":"fit"},"medium":{"w":552,"h":699,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080041662"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917512331265,"id_str":"663727917512331265","text":"Send prayers to my friend and his fam \ud83d\ude4f\ud83c\udffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2770453127,"id_str":"2770453127","name":"Ree","screen_name":"Sayree_","location":null,"url":null,"description":"Periquette | inspire someone","protected":false,"verified":false,"followers_count":298,"friends_count":382,"listed_count":0,"favourites_count":2386,"statuses_count":5486,"created_at":"Sun Sep 14 21:00:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652989660797534208\/hNgBfOqg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652989660797534208\/hNgBfOqg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2770453127\/1444519929","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080041660"} +{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727917529219072,"id_str":"663727917529219072","text":"El Aula Magna de la Facultat acoge las Jornadas de @farmacriticxs el 13 y 14 de noviembre https:\/\/t.co\/Xu6sCz4w56 https:\/\/t.co\/u74H863hbi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298881611,"id_str":"3298881611","name":"Fac. Medicina UV","screen_name":"medicina_uv","location":"Valencia, Comunidad Valenciana","url":"http:\/\/www.uv.es\/mediodont","description":"Twitter oficial de la Facultat de Medicina i Odontologia de la Universitat de Val\u00e8ncia.","protected":false,"verified":false,"followers_count":390,"friends_count":538,"listed_count":4,"favourites_count":54,"statuses_count":1343,"created_at":"Tue May 26 06:45:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603089929640476672\/DIw7nM_a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603089929640476672\/DIw7nM_a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298881611\/1432623022","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xu6sCz4w56","expanded_url":"http:\/\/bit.ly\/1iNMQmJ","display_url":"bit.ly\/1iNMQmJ","indices":[90,113]}],"user_mentions":[{"screen_name":"farmacriticxs","name":"farmacriticxs","id":216462999,"id_str":"216462999","indices":[51,65]}],"symbols":[],"media":[{"id":663727774201487365,"id_str":"663727774201487365","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5ODXIAU1LTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5ODXIAU1LTi.jpg","url":"https:\/\/t.co\/u74H863hbi","display_url":"pic.twitter.com\/u74H863hbi","expanded_url":"http:\/\/twitter.com\/medicina_uv\/status\/663727917529219072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727774201487365,"id_str":"663727774201487365","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI5ODXIAU1LTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI5ODXIAU1LTi.jpg","url":"https:\/\/t.co\/u74H863hbi","display_url":"pic.twitter.com\/u74H863hbi","expanded_url":"http:\/\/twitter.com\/medicina_uv\/status\/663727917529219072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080041664"} +{"delete":{"status":{"id":167035514426372096,"id_str":"167035514426372096","user_id":392695075,"user_id_str":"392695075"},"timestamp_ms":"1447080042275"}} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710948352,"id_str":"663727921710948352","text":"RT @auronplay: https:\/\/t.co\/jsOV2gGtM2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":769364604,"id_str":"769364604","name":"Adrian22Maister","screen_name":"Adrian22maister","location":null,"url":null,"description":"ELLA!!(5)love.Seguidor aferrimo de Juego de Tronos, pianista, y preparado para lo que venga.","protected":false,"verified":false,"followers_count":154,"friends_count":165,"listed_count":0,"favourites_count":270,"statuses_count":1262,"created_at":"Mon Aug 20 11:41:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4D5052","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472013143699255296\/-unciv6S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472013143699255296\/-unciv6S.jpeg","profile_background_tile":false,"profile_link_color":"1FDB25","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658347228780740609\/Jk9hkCk6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658347228780740609\/Jk9hkCk6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/769364604\/1432639055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:18:12 +0000 2015","id":663707160031977472,"id_str":"663707160031977472","text":"https:\/\/t.co\/jsOV2gGtM2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1501434991,"id_str":"1501434991","name":"AuronPlay","screen_name":"auronplay","location":"Polla, Scotland","url":"https:\/\/www.youtube.com\/user\/AuronPlay","description":"\u00bfTe parece muy ofensivo? A m\u00ed me parece bastante divertido, por eso soy m\u00e1s feliz que t\u00fa. De peque\u00f1o quemaba cosas. Voy to burlao. AuronPlay@gmail.com","protected":false,"verified":true,"followers_count":865420,"friends_count":342,"listed_count":870,"favourites_count":104933,"statuses_count":25317,"created_at":"Tue Jun 11 10:05:47 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654517799482691584\/hV_L-tqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654517799482691584\/hV_L-tqG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1501434991\/1438715380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1210,"favorite_count":2251,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663707101416562688,"id_str":"663707101416562688","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","url":"https:\/\/t.co\/jsOV2gGtM2","display_url":"pic.twitter.com\/jsOV2gGtM2","expanded_url":"http:\/\/twitter.com\/auronplay\/status\/663707160031977472\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707101416562688,"id_str":"663707101416562688","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","url":"https:\/\/t.co\/jsOV2gGtM2","display_url":"pic.twitter.com\/jsOV2gGtM2","expanded_url":"http:\/\/twitter.com\/auronplay\/status\/663707160031977472\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":9640,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/pl\/QOsGBZFeXahUwwdc.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/640x360\/hqsFX3GJYSESL4K1.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/pl\/QOsGBZFeXahUwwdc.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/640x360\/hqsFX3GJYSESL4K1.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/1280x720\/re7JBypfv0pEH5Ai.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/320x180\/ULh5k373I1TqSt5e.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"auronplay","name":"AuronPlay","id":1501434991,"id_str":"1501434991","indices":[3,13]}],"symbols":[],"media":[{"id":663707101416562688,"id_str":"663707101416562688","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","url":"https:\/\/t.co\/jsOV2gGtM2","display_url":"pic.twitter.com\/jsOV2gGtM2","expanded_url":"http:\/\/twitter.com\/auronplay\/status\/663707160031977472\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663707160031977472,"source_status_id_str":"663707160031977472","source_user_id":1501434991,"source_user_id_str":"1501434991"}]},"extended_entities":{"media":[{"id":663707101416562688,"id_str":"663707101416562688","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663707101416562688\/pu\/img\/94xfUvz8BUBeatRQ.jpg","url":"https:\/\/t.co\/jsOV2gGtM2","display_url":"pic.twitter.com\/jsOV2gGtM2","expanded_url":"http:\/\/twitter.com\/auronplay\/status\/663707160031977472\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663707160031977472,"source_status_id_str":"663707160031977472","source_user_id":1501434991,"source_user_id_str":"1501434991","video_info":{"aspect_ratio":[16,9],"duration_millis":9640,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/pl\/QOsGBZFeXahUwwdc.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/640x360\/hqsFX3GJYSESL4K1.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/pl\/QOsGBZFeXahUwwdc.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/640x360\/hqsFX3GJYSESL4K1.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/1280x720\/re7JBypfv0pEH5Ai.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663707101416562688\/pu\/vid\/320x180\/ULh5k373I1TqSt5e.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723502593,"id_str":"663727921723502593","text":"RT @ArsenalQuizz: Here's a stat you won't know about the North London Derby yesterday. https:\/\/t.co\/dpXXsK3rBh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558943918,"id_str":"1558943918","name":"N\u00f6rth Bank Gents","screen_name":"NorthBankGents","location":"Ashford, Kent","url":"http:\/\/arsenalgentlemen.wordpress.com","description":"People see me, and they see the suit, and they go: 'you're not fooling anyone', they know I'm rock and roll through and through.","protected":false,"verified":false,"followers_count":4129,"friends_count":778,"listed_count":9,"favourites_count":1788,"statuses_count":12481,"created_at":"Sun Jun 30 21:08:10 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645741202558570496\/MRebdPqd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645741202558570496\/MRebdPqd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558943918\/1442529734","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:07 +0000 2015","id":663726765852987393,"id_str":"663726765852987393","text":"Here's a stat you won't know about the North London Derby yesterday. https:\/\/t.co\/dpXXsK3rBh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2931932457,"id_str":"2931932457","name":"Arsenal Quiz Machine","screen_name":"ArsenalQuizz","location":"North London","url":null,"description":"#Arsenal have won the league more times at White Hart Lane than Spurs have. #GoonerFamily","protected":false,"verified":false,"followers_count":13428,"friends_count":8834,"listed_count":44,"favourites_count":601,"statuses_count":1529,"created_at":"Fri Dec 19 12:51:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582137446051094528\/QyknLuTh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582137446051094528\/QyknLuTh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2931932457\/1433059902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726764628303872,"id_str":"663726764628303872","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","url":"https:\/\/t.co\/dpXXsK3rBh","display_url":"pic.twitter.com\/dpXXsK3rBh","expanded_url":"http:\/\/twitter.com\/ArsenalQuizz\/status\/663726765852987393\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":1024,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":213,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726764628303872,"id_str":"663726764628303872","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","url":"https:\/\/t.co\/dpXXsK3rBh","display_url":"pic.twitter.com\/dpXXsK3rBh","expanded_url":"http:\/\/twitter.com\/ArsenalQuizz\/status\/663726765852987393\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":1024,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":213,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArsenalQuizz","name":"Arsenal Quiz Machine","id":2931932457,"id_str":"2931932457","indices":[3,16]}],"symbols":[],"media":[{"id":663726764628303872,"id_str":"663726764628303872","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","url":"https:\/\/t.co\/dpXXsK3rBh","display_url":"pic.twitter.com\/dpXXsK3rBh","expanded_url":"http:\/\/twitter.com\/ArsenalQuizz\/status\/663726765852987393\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":1024,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":213,"resize":"fit"}},"source_status_id":663726765852987393,"source_status_id_str":"663726765852987393","source_user_id":2931932457,"source_user_id_str":"2931932457"}]},"extended_entities":{"media":[{"id":663726764628303872,"id_str":"663726764628303872","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-dGW4AArarD.png","url":"https:\/\/t.co\/dpXXsK3rBh","display_url":"pic.twitter.com\/dpXXsK3rBh","expanded_url":"http:\/\/twitter.com\/ArsenalQuizz\/status\/663726765852987393\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":1024,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":213,"resize":"fit"}},"source_status_id":663726765852987393,"source_status_id_str":"663726765852987393","source_user_id":2931932457,"source_user_id_str":"2931932457"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710919680,"id_str":"663727921710919680","text":"[COWOK MASUK] Kebiasaan yang Menyebabkan Cowok Jadi Mandul\nhttps:\/\/t.co\/S1MNT1gdWN","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636040502,"id_str":"636040502","name":"PULSK.com","screen_name":"pulsker","location":"100% Indonesia","url":"http:\/\/pulsk.com","description":"Official http:\/\/PULSK.com Twitter Account - Place to Share Something WOW","protected":false,"verified":false,"followers_count":14461,"friends_count":5,"listed_count":12,"favourites_count":12,"statuses_count":23850,"created_at":"Sun Jul 15 09:01:44 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121820","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000019377776\/7df964f7e1daaa13b517e4eac51c0893.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000019377776\/7df964f7e1daaa13b517e4eac51c0893.jpeg","profile_background_tile":false,"profile_link_color":"007BFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577779849000927232\/UqVaxMqc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577779849000927232\/UqVaxMqc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636040502\/1365589181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/S1MNT1gdWN","expanded_url":"http:\/\/www.pulsk.com\/631653\/","display_url":"pulsk.com\/631653\/","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710948353,"id_str":"663727921710948353","text":"MEU DEUS, conheci o namorado que eu pedi \u00e0 Deus","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220077776,"id_str":"220077776","name":"mikaela","screen_name":"mikaelaadriano","location":"Brasil","url":"http:\/\/instagram.com\/mikacadriano","description":"i'm dead, wanna hook up?","protected":false,"verified":false,"followers_count":379,"friends_count":226,"listed_count":2,"favourites_count":7528,"statuses_count":55044,"created_at":"Fri Nov 26 18:25:39 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C486E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618200221458280452\/3xJyJsTc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618200221458280452\/3xJyJsTc.png","profile_background_tile":true,"profile_link_color":"088A7F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663523337918930948\/8pitpE6g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663523337918930948\/8pitpE6g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220077776\/1445984285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706745856,"id_str":"663727921706745856","text":"\u0412 \u043f\u0440\u044f\u043c\u043e\u043c \u044d\u0444\u0438\u0440\u0435 \u0432 #Periscope https:\/\/t.co\/KbVjqCrFYa","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3739482867,"id_str":"3739482867","name":"\u041a\u0430\u0442\u044f \u0412\u043e\u0440\u043e\u043f\u0430\u0435\u0432\u0430","screen_name":"voropaevak8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":55,"listed_count":0,"favourites_count":12,"statuses_count":36,"created_at":"Tue Sep 22 14:16:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648583873056665600\/bDR61Fcn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648583873056665600\/bDR61Fcn_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[17,27]}],"urls":[{"url":"https:\/\/t.co\/KbVjqCrFYa","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCn6TFheVFWQk52TkFRcHJ8MW1ueGVNTlFCekx4WDFik9TPfpqBSkFh_D_0g_fyw1_XgeGu-HN576rcPCsb","display_url":"periscope.tv\/w\/aRCn6TFheVFW\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731891200,"id_str":"663727921731891200","text":"RT JamesReidsArmy: RT l anningLMAO: Ohh...\nDoo-Doo...Roo-Doo...yeah\n\n#OTWOLWish \n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2527024507,"id_str":"2527024507","name":"ashley","screen_name":"nightybutera4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":466,"listed_count":14,"favourites_count":11,"statuses_count":71237,"created_at":"Tue May 27 09:20:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631359166888542208\/t3ZYA28N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631359166888542208\/t3ZYA28N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2527024507\/1439364463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[69,79]},{"text":"PushAwardsJaDines","indices":[81,99]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042666"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719324673,"id_str":"663727921719324673","text":"RT @BuscaMaria: Y en el peor de los caos, yo estar\u00e9 contigo.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1230920275,"id_str":"1230920275","name":"pity.","screen_name":"hectorcuello3","location":null,"url":null,"description":"XVI","protected":false,"verified":false,"followers_count":672,"friends_count":531,"listed_count":0,"favourites_count":304,"statuses_count":8980,"created_at":"Fri Mar 01 18:51:18 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F00909","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546836155467976704\/d2ZM8ECV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546836155467976704\/d2ZM8ECV.jpeg","profile_background_tile":true,"profile_link_color":"37D4C4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656473432801083393\/hf3zvgKk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656473432801083393\/hf3zvgKk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1230920275\/1419692940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:37:11 +0000 2015","id":663500544464433152,"id_str":"663500544464433152","text":"Y en el peor de los caos, yo estar\u00e9 contigo.","source":"\u003ca href=\"http:\/\/www.google.com\" rel=\"nofollow\"\u003eBuscaMaria\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2288463852,"id_str":"2288463852","name":"Buscando Mar\u00eda","screen_name":"BuscaMaria","location":"Amsterdam, Jamaica, 4:20","url":null,"description":"No fumamos ni sonrisas ni distancias, somos fieles a Mar\u00eda.\nDeja las preocupaciones de lado, vengo con un verde en la mano! experto en bot\u00e1nica y papiroflexia.","protected":false,"verified":false,"followers_count":279382,"friends_count":3,"listed_count":263,"favourites_count":6,"statuses_count":143,"created_at":"Sun Jan 12 17:39:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167032248\/S-8P9-b_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167032248\/S-8P9-b_.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422437199301210112\/1b70QmKr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422437199301210112\/1b70QmKr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2288463852\/1389645105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":424,"favorite_count":280,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BuscaMaria","name":"Buscando Mar\u00eda","id":2288463852,"id_str":"2288463852","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723494400,"id_str":"663727921723494400","text":"RT @cambiame: Maricarmen, Cristina y Alejandro estuvieron en la comuni\u00f3n de Jes\u00fas y Daniel @GemeliersMusic #c\u00e1mbiame105","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615196721,"id_str":"615196721","name":"sara","screen_name":"saric11gemelier","location":null,"url":null,"description":":-) Danis\u00fa los mejores os quiero gemeliers para siempre y de corazon jesus oviedo morilla y daniel oviedo morilla:-):-) calum heaslip mi ken te quiero","protected":false,"verified":false,"followers_count":149,"friends_count":461,"listed_count":3,"favourites_count":3064,"statuses_count":2828,"created_at":"Fri Jun 22 14:08:27 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658727660923834368\/2RIt4DeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658727660923834368\/2RIt4DeA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615196721\/1445887883","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:30 +0000 2015","id":663714279921754112,"id_str":"663714279921754112","text":"Maricarmen, Cristina y Alejandro estuvieron en la comuni\u00f3n de Jes\u00fas y Daniel @GemeliersMusic #c\u00e1mbiame105","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004029495,"id_str":"3004029495","name":"#c\u00e1mbiame105","screen_name":"cambiame","location":"MEDIASET ESPA\u00d1A","url":"http:\/\/www.telecinco.es\/cambiame\/","description":"Perfil oficial. Formato @fabricatele. De lunes a viernes 14:20 en @telecincoes. Mi\u00e9rcoles, a las 21:50h. Mejor idea MIPTV 2015.","protected":false,"verified":true,"followers_count":37379,"friends_count":161,"listed_count":39,"favourites_count":53,"statuses_count":8800,"created_at":"Thu Jan 29 10:41:41 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C94B7D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C94B7D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662201586685349889\/2zrtDJkY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662201586685349889\/2zrtDJkY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004029495\/1446716128","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":38,"entities":{"hashtags":[{"text":"c\u00e1mbiame105","indices":[94,106]}],"urls":[],"user_mentions":[{"screen_name":"GemeliersMusic","name":"Gemeliers Oficial","id":2410910904,"id_str":"2410910904","indices":[78,93]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"c\u00e1mbiame105","indices":[108,120]}],"urls":[],"user_mentions":[{"screen_name":"cambiame","name":"#c\u00e1mbiame105","id":3004029495,"id_str":"3004029495","indices":[3,12]},{"screen_name":"GemeliersMusic","name":"Gemeliers Oficial","id":2410910904,"id_str":"2410910904","indices":[92,107]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921694187521,"id_str":"663727921694187521","text":"@CampossDuda c\u00ea q ama a Isabella","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727273103785984,"in_reply_to_status_id_str":"663727273103785984","in_reply_to_user_id":2317300235,"in_reply_to_user_id_str":"2317300235","in_reply_to_screen_name":"CampossDuda","user":{"id":2264089119,"id_str":"2264089119","name":"n","screen_name":"noairhere","location":null,"url":null,"description":"nd a declarar","protected":false,"verified":false,"followers_count":1143,"friends_count":810,"listed_count":0,"favourites_count":10197,"statuses_count":32324,"created_at":"Sun Jan 05 19:29:06 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720991479209984\/SOd-9VmH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720991479209984\/SOd-9VmH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264089119\/1444705397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CampossDuda","name":"Maria Eduarda","id":2317300235,"id_str":"2317300235","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080042657"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723342848,"id_str":"663727921723342848","text":"\u6765\u9031\u306e \u305f\u3044\u3074\u3001\u30c6\u30f3\u30b7\u30e7\u30f3\u9ad8\u3044\u3093\u3060\u308d\u306a\u30fc\u00ab\u0669(*\u00b4\u2200`*)\u06f6\u00bb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1540298318,"id_str":"1540298318","name":"yuka\u2661 \u0441\u0435\u0440\u0434\u0446\u0435","screen_name":"TAIMO625","location":null,"url":null,"description":"\u2606Kis-My-Ft2\u5927\u597d\u304d\u2606\u3000 \u85e4\u30f6\u8c37\u62c5 \u2661\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u266a\u3048\u3073\u304d\u3059\u306e\u30fc\u307e\u3093 \u306f\u3058\u3081\u4ed6G\u306e\u753b\u50cf\u591a\u3081\u3067\u3059(*\u272a\u25bd\u272a)\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000 \u3000\u3000","protected":false,"verified":false,"followers_count":235,"friends_count":121,"listed_count":0,"favourites_count":2549,"statuses_count":10301,"created_at":"Sun Jun 23 06:37:34 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000032769963\/a60b72f0053855c67c99549a06e751fa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000032769963\/a60b72f0053855c67c99549a06e751fa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1540298318\/1446962860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921715089408,"id_str":"663727921715089408","text":"RT @fayez_malki: \ud83d\udc4d\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/PL3Qub34ZU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2313430720,"id_str":"2313430720","name":"\u0633\u0627\u0645\u064a \u0627\u0644\u0634\u0647\u0631\u064a","screen_name":"Simo_atti_4","location":null,"url":null,"description":"@ittihad","protected":false,"verified":false,"followers_count":1374,"friends_count":1998,"listed_count":0,"favourites_count":80,"statuses_count":7882,"created_at":"Thu Jan 30 05:36:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635757593793728513\/jXGJUeNj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635757593793728513\/jXGJUeNj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2313430720\/1440411348","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:14:03 +0000 2015","id":661863975638999040,"id_str":"661863975638999040","text":"\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d https:\/\/t.co\/PL3Qub34ZU","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619293948,"id_str":"619293948","name":"\u0641\u0627\u064a\u0632 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","screen_name":"fayez_malki","location":null,"url":null,"description":"\u0633\u0641\u064a\u0631 @ensanorg \u0633\u0641\u064a\u0631 @Ekhaa_sa \u0633\u0641\u064a\u0631 @tcf_sa \u0633\u0641\u064a\u0631 @kabidak \u0633\u0641\u064a\u0631 @saudi_cancer \u0633\u0641\u064a\u0631 @unicef_es \u0625\u0646\u0633\u0627\u0646 \u0645\u0646 \u0623\u062c\u0644 \u0627\u0644\u0625\u0646\u0633\u0627\u0646","protected":false,"verified":true,"followers_count":4172843,"friends_count":574,"listed_count":6903,"favourites_count":77,"statuses_count":45062,"created_at":"Tue Jun 26 16:18:54 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652033885119844352\/MZQIRjTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652033885119844352\/MZQIRjTt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619293948\/1442517049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":801,"favorite_count":170,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661863972237402120,"id_str":"661863972237402120","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","url":"https:\/\/t.co\/PL3Qub34ZU","display_url":"pic.twitter.com\/PL3Qub34ZU","expanded_url":"http:\/\/twitter.com\/fayez_malki\/status\/661863975638999040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661863972237402120,"id_str":"661863972237402120","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","url":"https:\/\/t.co\/PL3Qub34ZU","display_url":"pic.twitter.com\/PL3Qub34ZU","expanded_url":"http:\/\/twitter.com\/fayez_malki\/status\/661863975638999040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fayez_malki","name":"\u0641\u0627\u064a\u0632 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","id":619293948,"id_str":"619293948","indices":[3,15]}],"symbols":[],"media":[{"id":661863972237402120,"id_str":"661863972237402120","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","url":"https:\/\/t.co\/PL3Qub34ZU","display_url":"pic.twitter.com\/PL3Qub34ZU","expanded_url":"http:\/\/twitter.com\/fayez_malki\/status\/661863975638999040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":661863975638999040,"source_status_id_str":"661863975638999040","source_user_id":619293948,"source_user_id_str":"619293948"}]},"extended_entities":{"media":[{"id":661863972237402120,"id_str":"661863972237402120","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9pxqrW4AgwK9j.jpg","url":"https:\/\/t.co\/PL3Qub34ZU","display_url":"pic.twitter.com\/PL3Qub34ZU","expanded_url":"http:\/\/twitter.com\/fayez_malki\/status\/661863975638999040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":750,"h":1334,"resize":"fit"}},"source_status_id":661863975638999040,"source_status_id_str":"661863975638999040","source_user_id":619293948,"source_user_id_str":"619293948"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710796801,"id_str":"663727921710796801","text":"RT @kanata_ta_n: \u3010\u8b72\u6e21\u3011\n\u30c7\u30a3\u30a2\u30e9\u30d0\n\u30b7\u30e5\u30a6\nAGF\n\u7f36\u30d0\u30c3\u30b8 \u30db\u30ed\n\u30b9\u30af\u30a8\u30a2\u7f36\u30d0\u30c3\u30b8\u00d72\n\u540d\u53e4\u5c4b\u901a\u5e38\u00d72\n\u30aa\u30c8\u30ac \u30b9\u30af\u30a8\u30a2\u7f36\u30d0\u30c3\u30b8\n\u9999\u6e2fVol.5\n\u7e8f\u3081\u3066\u30d7\u30c1\u30d7\u30c1\u4e8c\u91cd\u5dfb\u68b1\u5305\u5b9a\u5f62\u5916\u9001\u6599\u8fbc\u307f4500\u5186\u306b\u3066m(_ _)m https:\/\/t.co\/hFDO2QIf\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1509436044,"id_str":"1509436044","name":"\u3089\u3093\u304b","screen_name":"KaRan2_29","location":null,"url":null,"description":"\u597d\u304d\u306a\u3082\u306e\u304c\u591a\u3059\u304e\u308b\u2026\u2026","protected":false,"verified":false,"followers_count":192,"friends_count":300,"listed_count":1,"favourites_count":1996,"statuses_count":12246,"created_at":"Wed Jun 12 05:53:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584924452523089921\/Vqx-7GH4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584924452523089921\/Vqx-7GH4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1509436044\/1446221882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:29 +0000 2015","id":663719310091661312,"id_str":"663719310091661312","text":"\u3010\u8b72\u6e21\u3011\n\u30c7\u30a3\u30a2\u30e9\u30d0\n\u30b7\u30e5\u30a6\nAGF\n\u7f36\u30d0\u30c3\u30b8 \u30db\u30ed\n\u30b9\u30af\u30a8\u30a2\u7f36\u30d0\u30c3\u30b8\u00d72\n\u540d\u53e4\u5c4b\u901a\u5e38\u00d72\n\u30aa\u30c8\u30ac \u30b9\u30af\u30a8\u30a2\u7f36\u30d0\u30c3\u30b8\n\u9999\u6e2fVol.5\n\u7e8f\u3081\u3066\u30d7\u30c1\u30d7\u30c1\u4e8c\u91cd\u5dfb\u68b1\u5305\u5b9a\u5f62\u5916\u9001\u6599\u8fbc\u307f4500\u5186\u306b\u3066m(_ _)m https:\/\/t.co\/hFDO2QIfat","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2371811458,"id_str":"2371811458","name":"\u548c\u6cc9@\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u898b\u3066\u306d\u0669( \u141b )\u0648","screen_name":"kanata_ta_n","location":"\u5e03\u56e3\u306e\u4e2d(:3[_____]","url":"http:\/\/twpf.jp\/kanata_ta_n","description":"\u8b72\u6e21\u30fb\u4ea4\u63db\u30fb2\u6b21\u5143\u57a2\u3002 \u30c4\u30a4\u30d7\u30ed\u3054\u89a7\u4e0b\u3055\u3044\u3002 \u5b66\u751f\u306e\u65b918\u672a\u6e80\u306e\u65b9\u306f\u5fc5\u305a\u30ea\u30d7\u4e0b\u3055\u3044\u3002 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\uff8c\uff9e\uff9b\uff6f\uff78\u3002 \u30c0\u30e9\u30c0\u30e9\u3055\u3093\u306f\u56de\u308c\u53f3\u3002 \u6761\u4ef6\u9055\u3044\u306e\u30ea\u30d7\u306a\u3069\u30b9\u30eb\u30fc\u3057\u307e\u3059\u3002\u2193\u4e0b\u8a18URL\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u304a\u8aad\u307f\u4e0b\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":553,"friends_count":627,"listed_count":2,"favourites_count":204,"statuses_count":19884,"created_at":"Fri Feb 28 20:45:22 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603040286873296896\/bCjOjFGj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603040286873296896\/bCjOjFGj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2371811458\/1422633842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719291909337089,"id_str":"663719291909337089","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","url":"https:\/\/t.co\/hFDO2QIfat","display_url":"pic.twitter.com\/hFDO2QIfat","expanded_url":"http:\/\/twitter.com\/kanata_ta_n\/status\/663719310091661312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719291909337089,"id_str":"663719291909337089","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","url":"https:\/\/t.co\/hFDO2QIfat","display_url":"pic.twitter.com\/hFDO2QIfat","expanded_url":"http:\/\/twitter.com\/kanata_ta_n\/status\/663719310091661312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanata_ta_n","name":"\u548c\u6cc9@\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u898b\u3066\u306d\u0669( \u141b )\u0648","id":2371811458,"id_str":"2371811458","indices":[3,15]}],"symbols":[],"media":[{"id":663719291909337089,"id_str":"663719291909337089","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","url":"https:\/\/t.co\/hFDO2QIfat","display_url":"pic.twitter.com\/hFDO2QIfat","expanded_url":"http:\/\/twitter.com\/kanata_ta_n\/status\/663719310091661312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663719310091661312,"source_status_id_str":"663719310091661312","source_user_id":2371811458,"source_user_id_str":"2371811458"}]},"extended_entities":{"media":[{"id":663719291909337089,"id_str":"663719291909337089","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBLfDUcAE5Z55.jpg","url":"https:\/\/t.co\/hFDO2QIfat","display_url":"pic.twitter.com\/hFDO2QIfat","expanded_url":"http:\/\/twitter.com\/kanata_ta_n\/status\/663719310091661312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663719310091661312,"source_status_id_str":"663719310091661312","source_user_id":2371811458,"source_user_id_str":"2371811458"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921698213889,"id_str":"663727921698213889","text":"@souha0 \n\u3084\u3063\u3071\u30e1\u30e1\u304f\u308b\u304b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b\uff1b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727617078505472,"in_reply_to_status_id_str":"663727617078505472","in_reply_to_user_id":257855073,"in_reply_to_user_id_str":"257855073","in_reply_to_screen_name":"souha0","user":{"id":2434611722,"id_str":"2434611722","name":"\u5bfa\u751f\u307e\u308c\u306e\u305f\u3041\u304f\u3093","screen_name":"Tarkn2525","location":"\u58f0\u771f\u4f3c\u4e3b\u306e\u67a0\u5185","url":"http:\/\/com.nicovideo.jp\/community\/co2265816","description":"\u30cb\u30b3\u30cb\u30b3\u306b\u3066\u6afb\u4e95\u5b5d\u5b8f\u3055\u3093\u306e\u58f0\u771f\u4f3c\u4e3b\u3092\u5e95\u8fba\u3067\u3053\u305d\u3053\u305d\u3084\u3063\u3066\u307e\u3057\u305f\u4f3c\u3066\u307e\u305b\u3093\u3067\u3057\u305f\u3075\u3047\u3048\u3000\u3042\u3001\u304d\u3083\u3059\u3082\u3084\u3063\u3066\u307e\u3057\u305f \u3042\u3001\u3086\u3048\u3061\u3087\u3093\u50d5\u306e\u3067\u3059 \u5fc3\u304c\u3074\u3087\u3093\u3074\u3087\u3093\u3059\u308b\uff3e","protected":false,"verified":false,"followers_count":361,"friends_count":334,"listed_count":35,"favourites_count":5243,"statuses_count":36177,"created_at":"Wed Apr 09 00:18:24 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644209235828436992\/wxBgnSDZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644209235828436992\/wxBgnSDZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2434611722\/1412720432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"souha0","name":"\u98af\u8449","id":257855073,"id_str":"257855073","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042658"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921715113984,"id_str":"663727921715113984","text":"RT @sakhaparivar: \u092e\u0947\u0930\u0940 \u0915\u094b\u0908 \u0916\u0924\u093e \u0924\u094b \u0938\u093e\u092c\u093f\u0924 \u0915\u0930 \n\n@upma23 @MangalSenacha @DrGPradhan @AnupamPkher @RakeshSinha01 @sardanarohit https:\/\/t.co\/qxB\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104092221,"id_str":"104092221","name":"\u0905\u0938\u0939\u093f\u0937\u094d\u0923\u0941 RUCHIR SHAH","screen_name":"RUCHIR2511","location":"Ahmedabad","url":null,"description":"\u0926\u0947\u0936 \u092a\u094d\u0930\u0925\u092e, \u092e\u094b\u0926\u0940 \u092d\u0915\u0924, \u092e\u0941\u091d\u0947 \u0917\u0930\u094d\u0935 \u0939\u0948 \u092e\u0947\u0902 \u0939\u093f\u0902\u0926\u0941 \u0939\u0941, \u0936\u093e\u0916\u093e \u0915\u093e \u0938\u094d\u0935\u092f\u0902\u0938\u0947\u0935\u0915 \u0939\u0941 \u0914\u0930 \u092d\u093e\u091c\u092a\u093e \u0915\u093e \u0915\u093e\u092f\u0901\u0915\u0930\u0924\u093e \u0939\u0941. #Trust Bjp #Join RSS","protected":false,"verified":false,"followers_count":1081,"friends_count":774,"listed_count":44,"favourites_count":5921,"statuses_count":63578,"created_at":"Tue Jan 12 06:45:32 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F75605","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117341644\/5154fd84abc112339ec9b16b45d28dfa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117341644\/5154fd84abc112339ec9b16b45d28dfa.jpeg","profile_background_tile":true,"profile_link_color":"F75605","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F9BA0B","profile_text_color":"E84C02","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662577055075278848\/Ao5_yHCx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662577055075278848\/Ao5_yHCx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104092221\/1353076976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:57:01 +0000 2015","id":663596132006821888,"id_str":"663596132006821888","text":"\u092e\u0947\u0930\u0940 \u0915\u094b\u0908 \u0916\u0924\u093e \u0924\u094b \u0938\u093e\u092c\u093f\u0924 \u0915\u0930 \n\n@upma23 @MangalSenacha @DrGPradhan @AnupamPkher @RakeshSinha01 @sardanarohit https:\/\/t.co\/qxB9rWW4Ol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1141694100,"id_str":"1141694100","name":"\u0936\u093e\u0916\u093e \u092a\u0930\u093f\u0935\u093e\u0930","screen_name":"sakhaparivar","location":null,"url":null,"description":"\u091c\u092f\u0924\u0941 \u091c\u092f\u0924\u0941 \u0939\u093f\u0928\u094d\u0926\u0942 \u0930\u093e\u0937\u094d\u091f\u094d\u0930\u092e \u091c\u092f \u0939\u094b \u092d\u0917\u0935\u093e - \u092d\u093e\u0930\u0924 \u092e\u0947\u0902 \u0938\u092c\u0938\u0947 \u092c\u095c\u093e \u0917\u094d\u0930\u0941\u092a \u0939\u0947 \u0939\u092e\u093e\u0930\u0947 \u0936\u093e\u0916\u093e \u092a\u0930\u093f\u0935\u093e\u0930 \u092e\u0947\u0902 \u091c\u0941\u095c \u0938\u0915\u0924\u0947 \u0939\u0947......\u0905\u092a\u0928\u093e \u0935\u094d\u0939\u091f\u094d\u0938\u092a\u094d\u092a","protected":false,"verified":false,"followers_count":2590,"friends_count":28,"listed_count":5,"favourites_count":500,"statuses_count":12501,"created_at":"Sat Feb 02 06:51:45 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658703443138207745\/J1kBYAeM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658703443138207745\/J1kBYAeM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141694100\/1414820609","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"upma23","name":"Keep Smiling","id":113655965,"id_str":"113655965","indices":[27,34]},{"screen_name":"MangalSenacha","name":"Mangal Senacha","id":109579523,"id_str":"109579523","indices":[35,49]},{"screen_name":"DrGPradhan","name":"#GauravPradhan","id":74433034,"id_str":"74433034","indices":[50,61]},{"screen_name":"AnupamPkher","name":"Anupam Kher","id":76294950,"id_str":"76294950","indices":[62,74]},{"screen_name":"RakeshSinha01","name":"Dr Rakesh Sinha","id":152719505,"id_str":"152719505","indices":[76,90]},{"screen_name":"sardanarohit","name":"Rohit Sardana","id":111944435,"id_str":"111944435","indices":[91,104]}],"symbols":[],"media":[{"id":663596082757312512,"id_str":"663596082757312512","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","url":"https:\/\/t.co\/qxB9rWW4Ol","display_url":"pic.twitter.com\/qxB9rWW4Ol","expanded_url":"http:\/\/twitter.com\/sakhaparivar\/status\/663596132006821888\/photo\/1","type":"photo","sizes":{"medium":{"w":373,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":373,"h":480,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663596082757312512,"id_str":"663596082757312512","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","url":"https:\/\/t.co\/qxB9rWW4Ol","display_url":"pic.twitter.com\/qxB9rWW4Ol","expanded_url":"http:\/\/twitter.com\/sakhaparivar\/status\/663596132006821888\/photo\/1","type":"photo","sizes":{"medium":{"w":373,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":373,"h":480,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakhaparivar","name":"\u0936\u093e\u0916\u093e \u092a\u0930\u093f\u0935\u093e\u0930","id":1141694100,"id_str":"1141694100","indices":[3,16]},{"screen_name":"upma23","name":"Keep Smiling","id":113655965,"id_str":"113655965","indices":[45,52]},{"screen_name":"MangalSenacha","name":"Mangal Senacha","id":109579523,"id_str":"109579523","indices":[53,67]},{"screen_name":"DrGPradhan","name":"#GauravPradhan","id":74433034,"id_str":"74433034","indices":[68,79]},{"screen_name":"AnupamPkher","name":"Anupam Kher","id":76294950,"id_str":"76294950","indices":[80,92]},{"screen_name":"RakeshSinha01","name":"Dr Rakesh Sinha","id":152719505,"id_str":"152719505","indices":[94,108]},{"screen_name":"sardanarohit","name":"Rohit Sardana","id":111944435,"id_str":"111944435","indices":[109,122]}],"symbols":[],"media":[{"id":663596082757312512,"id_str":"663596082757312512","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","url":"https:\/\/t.co\/qxB9rWW4Ol","display_url":"pic.twitter.com\/qxB9rWW4Ol","expanded_url":"http:\/\/twitter.com\/sakhaparivar\/status\/663596132006821888\/photo\/1","type":"photo","sizes":{"medium":{"w":373,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":373,"h":480,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}},"source_status_id":663596132006821888,"source_status_id_str":"663596132006821888","source_user_id":1141694100,"source_user_id_str":"1141694100"}]},"extended_entities":{"media":[{"id":663596082757312512,"id_str":"663596082757312512","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWRHxMXIAAnRVr.jpg","url":"https:\/\/t.co\/qxB9rWW4Ol","display_url":"pic.twitter.com\/qxB9rWW4Ol","expanded_url":"http:\/\/twitter.com\/sakhaparivar\/status\/663596132006821888\/photo\/1","type":"photo","sizes":{"medium":{"w":373,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":373,"h":480,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}},"source_status_id":663596132006821888,"source_status_id_str":"663596132006821888","source_user_id":1141694100,"source_user_id_str":"1141694100"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719308290,"id_str":"663727921719308290","text":"Big pay & little responsibility are circumstances seldom found together. Napoleon Hill #HouseOfIcons https:\/\/t.co\/sO8TN8X6f6","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2733260864,"id_str":"2733260864","name":"IntTaxExpert","screen_name":"IntTaxExpert","location":"Worldwide","url":"http:\/\/goo.gl\/EvoPIo","description":"#Finanz YOUR GOTO Partner for All Types of Finance, Investment & Tax Advice #Finance #Funding #Investment #Crowdfunding #AlternateFinance #CashFlow #TaxPlanning","protected":false,"verified":false,"followers_count":11338,"friends_count":12229,"listed_count":430,"favourites_count":0,"statuses_count":165846,"created_at":"Fri Aug 15 00:58:53 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500090463060103169\/-c7KbAOX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500090463060103169\/-c7KbAOX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2733260864\/1408065930","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HouseOfIcons","indices":[91,104]}],"urls":[{"url":"https:\/\/t.co\/sO8TN8X6f6","expanded_url":"http:\/\/goo.gl\/nPRAEA","display_url":"goo.gl\/nPRAEA","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723514880,"id_str":"663727921723514880","text":"Se puede amar en silencio.. Pero no sin acciones.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3510103818,"id_str":"3510103818","name":"Linda Gutierrez ","screen_name":"Linda_WGutierre","location":null,"url":null,"description":"No hay mejor compa\u00f1ia que la Soledad.","protected":false,"verified":false,"followers_count":31,"friends_count":206,"listed_count":0,"favourites_count":0,"statuses_count":1271,"created_at":"Thu Sep 10 01:18:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644971017992052736\/osznIEkd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644971017992052736\/osznIEkd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3510103818\/1442608050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727565824,"id_str":"663727921727565824","text":"RT @kanna_peche: \u4eca\u65e5\u306f\u79c1\u3001\u6355\u3089\u308f\u308c\u306e\u30a8\u30eb\u30d5\u306e\u904e\u9177\u306a\u751f\u6d3b\u3092\u63cf\u304f\u3079\u304d\u3060\u3068\u601d\u3063\u305f\u3093\u3060\u3088\u306d\u3002 https:\/\/t.co\/e6mgnZRMRK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1641149724,"id_str":"1641149724","name":"\u30de\u30c3\u30cf\u30ec\u30e2\u30f3@\u767d\u7dd1\u540c\u76df\u8005\u5e03\u6559\u304a\u3058\u3055\u3093","screen_name":"mach_lemon","location":"\u6210\u7530\u306e\u30b2\u30fc\u30bb\u30f3\u3001\u7384\u84bc\u515a","url":null,"description":"\u683c\u30b2\u30fc\uff0f\u30a2\u30a4\u30de\u30b9\uff0f\u6771\u65b9\uff0f\u30ac\u30f3\u30c0\u30e0VS\u30b7\u30ea\u30fc\u30ba\uff0f\u773c\u93e1\u597d\u304d\uff0f\u30a2\u30a4\u30de\u30b9\u771fP\uff0f\u30e2\u30d0\u30de\u30b9\u8352\u6728\u6bd4\u5948P\uff0f\u03b1\u30c9\u30e9\u30a4\u30d0\u30fc\uff0fmtg\u5fa9\u5e30(\u767d\u7dd1\u540c\u76df\u8005)\uff0f\u30ca\u30ca\u30b7\u30b9\u59cb\u3081\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":115,"friends_count":132,"listed_count":12,"favourites_count":905,"statuses_count":32612,"created_at":"Fri Aug 02 19:41:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648886871737565184\/fIiNBjP9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648886871737565184\/fIiNBjP9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1641149724\/1445041077","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:15 +0000 2015","id":663713715368230913,"id_str":"663713715368230913","text":"\u4eca\u65e5\u306f\u79c1\u3001\u6355\u3089\u308f\u308c\u306e\u30a8\u30eb\u30d5\u306e\u904e\u9177\u306a\u751f\u6d3b\u3092\u63cf\u304f\u3079\u304d\u3060\u3068\u601d\u3063\u305f\u3093\u3060\u3088\u306d\u3002 https:\/\/t.co\/e6mgnZRMRK","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168887455,"id_str":"168887455","name":"\u9cf4\u5cf6\u304b\u3093\u306a","screen_name":"kanna_peche","location":"\u91d1\u9b5a\u9262","url":"http:\/\/www.pixiv.net\/member.php?id=1971139","description":"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u304a\u7d75\u304b\u304d\u30de\u30f3\u25cb\u306e\u304b\u3093\u306a\u3067\u3059\u3002\u5e73\u65e5\u306f\u4f1a\u793e\u54e1\u3002\u304a\u9b5a\u304c\u3068\u3093\u3067\u3082\u306a\u304f\u597d\u304d\u3067\u3059\u3002 \u30d8\u30c1\u30e7\u3044\u6f2b\u753b\u306f\u30bf\u30f3\u30d6\u30e9\u30fc\u306b\u7f6e\u3044\u3066\u304a\u304d\u307e\u3059\u3002\u2192http:\/\/kanna-narushima.tumblr.com\/","protected":false,"verified":false,"followers_count":3454,"friends_count":229,"listed_count":120,"favourites_count":626,"statuses_count":99472,"created_at":"Wed Jul 21 01:15:41 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612476787776360448\/KhljNNzP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612476787776360448\/KhljNNzP.png","profile_background_tile":false,"profile_link_color":"FF8585","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662886944615956480\/kCiRbSVq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662886944615956480\/kCiRbSVq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168887455\/1443014635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1703,"favorite_count":1626,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanna_peche","name":"\u9cf4\u5cf6\u304b\u3093\u306a","id":168887455,"id_str":"168887455","indices":[3,15]}],"symbols":[],"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}},"source_status_id":663713715368230913,"source_status_id_str":"663713715368230913","source_user_id":168887455,"source_user_id_str":"168887455"}]},"extended_entities":{"media":[{"id":663713713652809728,"id_str":"663713713652809728","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8GybUwAA-sUL.png","url":"https:\/\/t.co\/e6mgnZRMRK","display_url":"pic.twitter.com\/e6mgnZRMRK","expanded_url":"http:\/\/twitter.com\/kanna_peche\/status\/663713715368230913\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":712,"h":2048,"resize":"fit"},"medium":{"w":417,"h":1200,"resize":"fit"},"small":{"w":236,"h":680,"resize":"fit"}},"source_status_id":663713715368230913,"source_status_id_str":"663713715368230913","source_user_id":168887455,"source_user_id_str":"168887455"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727733760,"id_str":"663727921727733760","text":"@kathynowicki https:\/\/t.co\/sal8z9gURU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":586664555,"in_reply_to_user_id_str":"586664555","in_reply_to_screen_name":"KathyNowicki","user":{"id":94890693,"id_str":"94890693","name":"Jonathan Carr","screen_name":"JonathanPCarr","location":"Ocean County, NJ ","url":"http:\/\/WeatherNJ.com","description":"Lead R&D Analyst & Weather Enthusiast","protected":false,"verified":false,"followers_count":99,"friends_count":50,"listed_count":0,"favourites_count":18,"statuses_count":326,"created_at":"Sat Dec 05 23:29:48 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637804862906888192\/6T30wrib_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637804862906888192\/6T30wrib_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94890693\/1428448880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sal8z9gURU","expanded_url":"http:\/\/bit.ly\/1Miulzp?84075umevuqo","display_url":"bit.ly\/1Miulzp?84075u\u2026","indices":[14,37]}],"user_mentions":[{"screen_name":"KathyNowicki","name":"Kathy Nowicki","id":586664555,"id_str":"586664555","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921714991109,"id_str":"663727921714991109","text":"\u5341\u56db\u677e\u3061\u3083\u3093\u306f\u6210\u4eba\u7537\u6027\u306a\u306e\u304b\u2026\u2026\u2026\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3959334494,"id_str":"3959334494","name":"\u307f\u3088\u677e","screen_name":"_miyomatsu","location":"\uff8b\uff7c\uff9e\uff98\uff7b\uff9c\u2193\uff7c\uff6e\uff73\uff89\uff7d\uff79\u2191\uff80\uff9e\uff67\uff70\u203c","url":null,"description":"\u304a\u305d\u677e\u3055\u3093\u7528\u57a2 \u8150\u3063\u305f\u6210\u4eba \u30cb\u30b3\u30c1\u30e3\u30f3\u914d\u4fe1\u5f85\u3061\u52e2\u30cd\u30bf\u30d0\u30ec\u53ef \u5341\u56db\u677e\u3061\u3083\u3093\u306e\u30e2\u30f3\u30da\u304a\u3070\u3055\u3093 \u30af\u30bd\u3075\u3041\u307c\u9b54 \u30d5\u30a9\u30ed\u30d0\u7d50\u69cb\u3067\u3059","protected":false,"verified":false,"followers_count":16,"friends_count":28,"listed_count":1,"favourites_count":3677,"statuses_count":849,"created_at":"Tue Oct 20 15:27:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660825610017640449\/Ei8K0w-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660825610017640449\/Ei8K0w-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3959334494\/1445355448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706602496,"id_str":"663727921706602496","text":"\u304b\u308f\u3044\u3059\u304e\u3084\u308d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33573977,"id_str":"33573977","name":"\u7530\u4e2d\u6c50@\u3046\u3089\u308910","screen_name":"sioOTL","location":"\u30c8\u30a4\u30ec","url":"http:\/\/www.pixiv.net\/member.php?id=72541","description":"\u305f\u307e\u306b\u7d75\u3092\u63cf\u3044\u305f\u308a\u3059\u308b\u305f\u3060\u306e\u30ad\u30e5\u30a2\u4e8b\u52d9\u54e1\u3067\u3059\u3002\u30d6\u30e9\u30a4\u30a2\u30f3\u30fb\u30c6\u30a4\u30e9\u30fc\u3053\u3058\u3089\u305b\u3066\u305f\u306f\u305a\u304b\u767e\u4e95\u4eac\u4ecb\u306b\u5fc3\u596a\u308f\u308c\u305f\u7d50\u679c\u767a\u8a00\u30c0\u30fc\u30af\u30b5\u30a4\u30c9\u306b\u305f\u307e\u306b\u5815\u3061\u307e\u3059\u3002\u3072\u3069\u3044\u8a71\u3059\u308b\u7cfb\u306e\u3053\u3058\u3089\u305b\u30ab\u30d7\u53a8\u3067\u3059\u3001\u8133\u76f4\u30c4\u30a4\u30fc\u30c8\u591a\u3081\u3067\u7169\u3044\u306e\u3067RBM\u63a8\u5968\u3057\u3066\u307e\u3059\u3002\u30d6\u30e9\u3042\u304b\u30a2\u30f3\u30bd\u30ed\u5b8c\u6210\u3057\u307e\u3057\u305f\uff01\u3010http:\/\/twipla.jp\/events\/120951 \u3011","protected":false,"verified":false,"followers_count":906,"friends_count":602,"listed_count":74,"favourites_count":7479,"statuses_count":127875,"created_at":"Mon Apr 20 16:39:30 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/31902882\/57.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/31902882\/57.gif","profile_background_tile":true,"profile_link_color":"F04187","profile_sidebar_border_color":"FCE8F1","profile_sidebar_fill_color":"FCE8F1","profile_text_color":"808080","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656840134625636352\/DqVBZwDt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656840134625636352\/DqVBZwDt_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710825472,"id_str":"663727921710825472","text":"\u6d88\u3057\u305f\u308f\u3046\u3093\u3053","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3251333839,"id_str":"3251333839","name":"\ub0d0\ud6c8","screen_name":"pledis_wooji","location":"\u7389\u306d\u304e\u3001\u306a\u304a\u3001SEVENTEEN","url":null,"description":"2015.10.30\uc2b9\uad00\u611b\u3057\u3066\u308b\u8a18\u5ff5@pledis_17 \u79c1\u306f\u8ab0\u3067\u3057\u3087\u3046\u304b\u30022013\u301cing\u2606SEVENTEEN\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u4eba\u9593 (*^^*)2013\u301c\u521d\u604b\u306e\u30c9\u30e6\u30f3\u8ffd\u3063\u3066\u307e\u3059\u2606 #\uc6b0\ub9ac\ub178\ub798\ub9cc\uc138\u2606 \u5927\u597d\u304d\u306a\u59c9\u8cb4\u2192@woozihoon7\u5927\u597d\u304d\u306a\u53cc\u5b50\u2192@sweet_suga2\u2606","protected":false,"verified":false,"followers_count":676,"friends_count":440,"listed_count":8,"favourites_count":43465,"statuses_count":43990,"created_at":"Sun Jun 21 05:16:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663170365867200513\/fUPRIKEo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663170365867200513\/fUPRIKEo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251333839\/1446358723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719345152,"id_str":"663727921719345152","text":"A new way of looking #DMZ - Finding the way #TrendSetters https:\/\/t.co\/1bzFy52sVJ","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323136095,"id_str":"3323136095","name":"Co&Bank Guaranteed","screen_name":"YBGCo_Bank","location":"Worldwide","url":"http:\/\/www.ybguk.com","description":"#Formations YOUR GOTO Partner for #Onshore #Offshore #CompanyFormations #BankAccounts","protected":false,"verified":false,"followers_count":5279,"friends_count":5787,"listed_count":739,"favourites_count":0,"statuses_count":118675,"created_at":"Sat Jun 13 14:55:27 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610847618088894466\/FglzYqhR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610847618088894466\/FglzYqhR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323136095\/1434472522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DMZ","indices":[21,25]},{"text":"TrendSetters","indices":[44,57]}],"urls":[{"url":"https:\/\/t.co\/1bzFy52sVJ","expanded_url":"http:\/\/goo.gl\/wLz5jl","display_url":"goo.gl\/wLz5jl","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921715159040,"id_str":"663727921715159040","text":"J\u00e1 passou de Fei\u00e3o https:\/\/t.co\/Ot16S22lyn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1465523456,"id_str":"1465523456","name":"Mari Ungida","screen_name":"sensataa","location":null,"url":"http:\/\/hospsicos.com","description":"Capriche louca, apenas","protected":false,"verified":false,"followers_count":1875,"friends_count":169,"listed_count":2,"favourites_count":16997,"statuses_count":51226,"created_at":"Tue May 28 19:39:59 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660980448278020096\/tdh94oZu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660980448278020096\/tdh94oZu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1465523456\/1441632412","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726447417249793,"quoted_status_id_str":"663726447417249793","quoted_status":{"created_at":"Mon Nov 09 14:34:51 +0000 2015","id":663726447417249793,"id_str":"663726447417249793","text":"Agora os ataques vindo DE ALGUNS douanne \u00e9 pesado,v\u00e3o no ig do Thiago azucrinar,dizem merdas sobre a Ana chamando de puta pra baixo.T\u00c1 FEI\u00c3O","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1338376964,"id_str":"1338376964","name":"La\u00eds \u265b","screen_name":"Lah_ss_","location":null,"url":null,"description":"Baiana, S\u00e3o Paulina, fan\u00e1tica por tecnologia,programa\u00e7\u00e3o e seriados \u2665 ~N\u00e3o abuse da minha paci\u00eancia~ #MarceloZagonel #LeoRodriguez #JuntosAt\u00e9DepoisDoFim","protected":false,"verified":false,"followers_count":1791,"friends_count":533,"listed_count":5,"favourites_count":9537,"statuses_count":49422,"created_at":"Tue Apr 09 05:32:16 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432098888867012608\/4l4be_Pj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432098888867012608\/4l4be_Pj.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617402434097410048\/OW0gNDD-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617402434097410048\/OW0gNDD-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1338376964\/1443659651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ot16S22lyn","expanded_url":"https:\/\/twitter.com\/lah_ss_\/status\/663726447417249793","display_url":"twitter.com\/lah_ss_\/status\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710919681,"id_str":"663727921710919681","text":"RT @Fashionspix: 9 Older Women Who Still Look Insanely Hot https:\/\/t.co\/8B1cAyZaBN https:\/\/t.co\/NYTdVnRrow","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2544243169,"id_str":"2544243169","name":"ALE ANDERSON","screen_name":"aleandersonok","location":"Salta, Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":293,"friends_count":873,"listed_count":0,"favourites_count":53,"statuses_count":832,"created_at":"Tue Jun 03 20:12:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480162380119171072\/1FxlGDCh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480162380119171072\/1FxlGDCh.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656914534209318912\/qBknXSST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656914534209318912\/qBknXSST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2544243169\/1446788983","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 09:31:13 +0000 2015","id":662200484086714369,"id_str":"662200484086714369","text":"9 Older Women Who Still Look Insanely Hot https:\/\/t.co\/8B1cAyZaBN https:\/\/t.co\/NYTdVnRrow","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288711326,"id_str":"3288711326","name":"DIY Fashion ","screen_name":"Fashionspix","location":null,"url":null,"description":"Style Guides, Beauty Tips and More!","protected":false,"verified":false,"followers_count":15019,"friends_count":11727,"listed_count":4,"favourites_count":0,"statuses_count":28,"created_at":"Thu Jul 23 10:48:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624454036008235008\/tdjVfdEr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624454036008235008\/tdjVfdEr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3288711326\/1437716689","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86,"favorite_count":146,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8B1cAyZaBN","expanded_url":"http:\/\/bit.ly\/1jlEfZi","display_url":"bit.ly\/1jlEfZi","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":661834217748217856,"id_str":"661834217748217856","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","url":"https:\/\/t.co\/NYTdVnRrow","display_url":"pic.twitter.com\/NYTdVnRrow","expanded_url":"http:\/\/twitter.com\/CuteBohoStyles\/status\/661834219480481792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661834219480481792,"source_status_id_str":"661834219480481792","source_user_id":2974557169,"source_user_id_str":"2974557169"}]},"extended_entities":{"media":[{"id":661834217748217856,"id_str":"661834217748217856","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","url":"https:\/\/t.co\/NYTdVnRrow","display_url":"pic.twitter.com\/NYTdVnRrow","expanded_url":"http:\/\/twitter.com\/CuteBohoStyles\/status\/661834219480481792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661834219480481792,"source_status_id_str":"661834219480481792","source_user_id":2974557169,"source_user_id_str":"2974557169"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8B1cAyZaBN","expanded_url":"http:\/\/bit.ly\/1jlEfZi","display_url":"bit.ly\/1jlEfZi","indices":[59,82]}],"user_mentions":[{"screen_name":"Fashionspix","name":"DIY Fashion ","id":3288711326,"id_str":"3288711326","indices":[3,15]}],"symbols":[],"media":[{"id":661834217748217856,"id_str":"661834217748217856","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","url":"https:\/\/t.co\/NYTdVnRrow","display_url":"pic.twitter.com\/NYTdVnRrow","expanded_url":"http:\/\/twitter.com\/CuteBohoStyles\/status\/661834219480481792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661834219480481792,"source_status_id_str":"661834219480481792","source_user_id":2974557169,"source_user_id_str":"2974557169"}]},"extended_entities":{"media":[{"id":661834217748217856,"id_str":"661834217748217856","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9OtukUwAA3xOM.jpg","url":"https:\/\/t.co\/NYTdVnRrow","display_url":"pic.twitter.com\/NYTdVnRrow","expanded_url":"http:\/\/twitter.com\/CuteBohoStyles\/status\/661834219480481792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661834219480481792,"source_status_id_str":"661834219480481792","source_user_id":2974557169,"source_user_id_str":"2974557169"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723523072,"id_str":"663727921723523072","text":"RT @Silvu_Rodriguez: #TeExtra\u00f1oPero despu\u00e9s me acuerdo que la cagaste y se me pasa","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":967028478,"id_str":"967028478","name":"Cami\u2661","screen_name":"Camitejadaok","location":null,"url":null,"description":"\u2665Amor infinito a Mi \u00e1ngel, MARIA VICTORIA\u2665\r\n\u2665Hapiness is a journey","protected":false,"verified":false,"followers_count":348,"friends_count":291,"listed_count":1,"favourites_count":530,"statuses_count":3029,"created_at":"Fri Nov 23 23:45:00 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458004984777281536\/KxnRzlVo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458004984777281536\/KxnRzlVo.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576595694011740160\/5Z1UcX_2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576595694011740160\/5Z1UcX_2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967028478\/1430669400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:05 +0000 2015","id":663727513319927808,"id_str":"663727513319927808","text":"#TeExtra\u00f1oPero despu\u00e9s me acuerdo que la cagaste y se me pasa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874695336,"id_str":"874695336","name":"Silvina","screen_name":"Silvu_Rodriguez","location":"Wonderland \u2020","url":null,"description":"15 | Boca Juniors | G\u00e9minis | Futura veterinaria","protected":false,"verified":false,"followers_count":656,"friends_count":747,"listed_count":3,"favourites_count":288,"statuses_count":10103,"created_at":"Fri Oct 12 01:35:43 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663182892193959936\/PgXzFitL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663182892193959936\/PgXzFitL.jpg","profile_background_tile":true,"profile_link_color":"6F00FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652924076101607424\/IreBNup0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652924076101607424\/IreBNup0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874695336\/1444490029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"TeExtra\u00f1oPero","indices":[0,14]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeExtra\u00f1oPero","indices":[21,35]}],"urls":[],"user_mentions":[{"screen_name":"Silvu_Rodriguez","name":"Silvina","id":874695336,"id_str":"874695336","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921698201600,"id_str":"663727921698201600","text":"@giruta_kai \n\u51db\u6708\u304f\u3093\uff01\uff1f\uff01\uff1f\uff01\uff1f\uff01\uff1f\u3042\u3073\u3083\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u51db\u6708\u304f\u3093\ud83d\ude02\ud83d\ude02\ud83d\ude02\u3042\u3093\u306a\u30af\u30bd\u5b85\u30b3\u30b9\u7a0b\u5ea6\u3067\u5165\u308c\u3066\u3082\u3089\u3048\u308b\u306a\u3093\u3066\u3042\u308a\u304c\u3066\u3047\u3088\u304a\u512a\u3057\u3044\u3088\u304a\u30ae\u30eb\u3061\u3083\u3093\ud83d\ude02\ud83d\ude02\ud83d\ude02\u3042\u3093\u30b9\u30bf\u4e88\u5b9a\u5897\u3084\u3057\u305f\u3044\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727310520975361,"in_reply_to_status_id_str":"663727310520975361","in_reply_to_user_id":2167943719,"in_reply_to_user_id_str":"2167943719","in_reply_to_screen_name":"giruta_kai","user":{"id":3268269319,"id_str":"3268269319","name":"\u306b\u3087\u3080@14\u65e5\u592a\u79e6\u5b89\u5b9a","screen_name":"nyo_mdy","location":"\u9996\u843d\u3061\u3066\u30fc\u3063\uff1f \uff3c\u3057\u306d\u30fc\u3063\uff0f","url":null,"description":"\u26a0\ufe0e\u5199\u771f\u3068\u73fe\u7269\u306f\u7570\u306a\u308a\u307e\u3059\u6ce8\u610f\u26a0\ufe0e \u95a2\u897f\u306b\u751f\u606f\u3059\u308b\u6210\u4eba\u6e08\u8150\u5973\u5b50\u517c\u30ec\u30a4\u30e4\u30fc\u3002\u30ab\u30eb\u30d4\u30b9\u3067\u751f\u304d\u3066\u3044\u307e\u3059\u3002 \u5200\u5263\u4e71\u821e \/ \u3042\u3093\u30b9\u30bf \/ \u30c4\u30ad\u30a6\u30bf\u3002 \/ \u30a2\u30a4\u30ca\u30ca \/ \u30e9\u30d6\u30e9\u30a4\u30d6\uff01 \/ \u9ed2\u57f7\u4e8b \/ Free! \/ \u2666\ufe0eA \/ APH \/ \u5546\u696dBL \/ \u3042\u3093\u307f\u3064\u5c0a\u3044\u3042\u3093\u307f\u3064\u30d0\u30d0\u30a2\u30022wink\u304c\u3059\u304d\u3067\u3059\u3002Knights\u3082\u3059\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":84,"friends_count":77,"listed_count":8,"favourites_count":1735,"statuses_count":8645,"created_at":"Sat Jul 04 15:46:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661831496475414528\/jxhiix6m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661831496475414528\/jxhiix6m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268269319\/1446350745","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giruta_kai","name":"\u30ae\u30eb\u6c70\u306f15\u65e5\u306e\u30a4\u30f3\u30c6\u6728\u514e","id":2167943719,"id_str":"2167943719","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042658"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719336960,"id_str":"663727921719336960","text":"Problems worthy of attack prove their worth by fighting back #QuoteYBG https:\/\/t.co\/y5lZLgkk1r","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":504421500,"id_str":"504421500","name":"Anthony Jackson","screen_name":"YBG_Anthony","location":"Santa Cruz de Tenerife, Spain","url":"http:\/\/goo.gl\/g6JZlm","description":"Your GoTo Partner 4 Business Connections - Global Business built on Partnerships #Talk2Us +44 20 3763 5199","protected":false,"verified":false,"followers_count":18186,"friends_count":19991,"listed_count":562,"favourites_count":43,"statuses_count":299895,"created_at":"Sun Feb 26 12:10:15 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506024892\/South_Africa_Kudu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506024892\/South_Africa_Kudu.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1855028048\/Anthony-web_2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1855028048\/Anthony-web_2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/504421500\/1388317630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteYBG","indices":[61,70]}],"urls":[{"url":"https:\/\/t.co\/y5lZLgkk1r","expanded_url":"http:\/\/goo.gl\/i050ho","display_url":"goo.gl\/i050ho","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723387905,"id_str":"663727921723387905","text":"\ubbf8\ud0a4: \ud0c0\uce74\ub124, \ud3f4\ub77c\ub85c\uc774\ub4dc \uce74\uba54\ub77c\uc778\uac70\uc57c~!\n\ud0c0\uce74\ub124: \uadf8\uac83\uc740 \ub2e4\ub978 \uce74\uba54\ub77c\uc778 \uac83\uc785\ub2c8\uae4c?\n\ubbf8\ud0a4: \uadf8\uac8c~ (\ucc30\uce75) \uc544\ud56b, \uc774\uac83 \ubd10~\ube48 \uc885\uc774\uc5d0 \uc544\uae4c \ucc0d\uc740 \ud0c0\uce74\ub124 \uc5bc\uad74 \ub098\uc624\ub294 \uac70\uc57c~!\n\ud0c0\uce74\ub124: \uadf8\ub7f0..\uae30\ubb18\ud55c....\uae30\ubb18\ud55c \uce74\uba54\ub77c\uad70\uc694..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2976865382,"id_str":"2976865382","name":"[\ubc18\ub3d9\uacb0] \uc11d\ub958","screen_name":"Fruit_Sukryu","location":null,"url":null,"description":"\uc544\uc8fc \uac00\ub054 \uc5f0\uc131\ud558\ub294 \uadf8\ub9bc\uc7c1\uc774 \/ \uba54\uc778\ud2b8\uc717 \ud655\uc778 \/ \uc370\uacc4 :: @Red_Sukryu \/ \uc798\uc0dd\uae30\uace0 \uc608\uc05c \ud654\uc9c4\uc774\u2661\uc778\uc7a5 :: \ud560\ub8e8\uc5b8\ub2c8 @dod0033","protected":false,"verified":false,"followers_count":109,"friends_count":118,"listed_count":2,"favourites_count":954,"statuses_count":33575,"created_at":"Mon Jan 12 13:40:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652172639335612418\/-v-iomrk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652172639335612418\/-v-iomrk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2976865382\/1445236251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921694052352,"id_str":"663727921694052352","text":"@w1ntya BENEERRR BANGEEETTTT yaampun sama mbak win.. Aku jg ngerasa gitu.. Mana dizoom cuma muka doang, jd berasa salah nonton","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727675756838912,"in_reply_to_status_id_str":"663727675756838912","in_reply_to_user_id":107007335,"in_reply_to_user_id_str":"107007335","in_reply_to_screen_name":"w1ntya","user":{"id":61715431,"id_str":"61715431","name":"Queen","screen_name":"womanequeen","location":null,"url":"http:\/\/www.giogiosisters.com","description":"\u00b0 random things from my world \u00b0\n \u2020Jesus\u2020 'lil girl \u00b0 so far, still a YG stan \u00b0","protected":false,"verified":false,"followers_count":3863,"friends_count":664,"listed_count":18,"favourites_count":243,"statuses_count":34623,"created_at":"Fri Jul 31 07:11:07 +0000 2009","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652826928940871680\/QhXJ5iaa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652826928940871680\/QhXJ5iaa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61715431\/1431152481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"w1ntya","name":"wintia sunny","id":107007335,"id_str":"107007335","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080042657"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921702436864,"id_str":"663727921702436864","text":"\u3042\u3001\u305d\u3046\u3060\u3001\u3001\u3001\u3001\u30af\u30ea\u30b9\u30de\u30b9\ud83d\udc6b\ud83d\ude45\ud83c\udffb\ud83d\udc69\ud83c\udffb\ud83d\ude4b\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3184337406,"id_str":"3184337406","name":"JURI","screen_name":"xxxjury_","location":"\uae40 \ubc14\ube44","url":null,"description":"\u97d3\u56fd\u306f\u3053\u3063\u3061\u3078\u25b6\ufe0e\u25b6\ufe0e@jury___k","protected":false,"verified":false,"followers_count":134,"friends_count":181,"listed_count":0,"favourites_count":1426,"statuses_count":2797,"created_at":"Sun May 03 16:54:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661541698762244097\/UdS3AnjW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661541698762244097\/UdS3AnjW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184337406\/1446749689","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042659"} +{"delete":{"status":{"id":662675252053344256,"id_str":"662675252053344256","user_id":59972446,"user_id_str":"59972446"},"timestamp_ms":"1447080042733"}} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706610688,"id_str":"663727921706610688","text":"RT @tappatan: \u8996\u91ce\u72ed\u7a84\u306e\u99ac\u9e7f\u306a\u30ac\u30ad\u3060\u306a\u3041\u3002\n\u6226\u4e89\u306b\u306a\u308b\u524d\u306b\u5bfe\u8a71\u304c\u7121\u3044\u3068\u3067\u3082\u601d\u3063\u3066\u3093\u306e\u304b\u3053\u3044\u3064\u306f\u3002\n\u5bfe\u8a71\u4ea4\u6e09\u99c6\u3051\u5f15\u304d\u3001\u305d\u3046\u3044\u3046\u3082\u3093\u304c\u305c\u30fc\u3093\u3076\u4e0d\u8abf\u306b\u7d42\u308f\u3063\u305f\u672b\u306b\u8d77\u304d\u308b\u306e\u304c\u6226\u4e89\u306a\u3093\u3060\u3088\u3002\n\u305d\u308c\u3059\u3089\u7406\u89e3\u51fa\u6765\u306a\u3044\u30ac\u30ad\u304c\u653f\u6cbb\u3092\u8a9e\u308b\u306a\u9ed9\u3063\u3066\u308d\u3002 https:\/\/t.co\/ny2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3009002155,"id_str":"3009002155","name":"\u79cb@\u30c0\u30a4\u30d3\u30f3\u30b0\u571f\u4e0b\u5ea7","screen_name":"aki_abc000","location":null,"url":null,"description":"\u751f\u304d\u3066\u3044\u308b\u3053\u3068\u304c\u9ed2\u6b74\u53f2","protected":false,"verified":false,"followers_count":9,"friends_count":23,"listed_count":1,"favourites_count":0,"statuses_count":238,"created_at":"Tue Feb 03 08:37:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615471144519360512\/ffab3wex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615471144519360512\/ffab3wex_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:37 +0000 2015","id":663720601224261632,"id_str":"663720601224261632","text":"\u8996\u91ce\u72ed\u7a84\u306e\u99ac\u9e7f\u306a\u30ac\u30ad\u3060\u306a\u3041\u3002\n\u6226\u4e89\u306b\u306a\u308b\u524d\u306b\u5bfe\u8a71\u304c\u7121\u3044\u3068\u3067\u3082\u601d\u3063\u3066\u3093\u306e\u304b\u3053\u3044\u3064\u306f\u3002\n\u5bfe\u8a71\u4ea4\u6e09\u99c6\u3051\u5f15\u304d\u3001\u305d\u3046\u3044\u3046\u3082\u3093\u304c\u305c\u30fc\u3093\u3076\u4e0d\u8abf\u306b\u7d42\u308f\u3063\u305f\u672b\u306b\u8d77\u304d\u308b\u306e\u304c\u6226\u4e89\u306a\u3093\u3060\u3088\u3002\n\u305d\u308c\u3059\u3089\u7406\u89e3\u51fa\u6765\u306a\u3044\u30ac\u30ad\u304c\u653f\u6cbb\u3092\u8a9e\u308b\u306a\u9ed9\u3063\u3066\u308d\u3002 https:\/\/t.co\/ny2sNMgZSZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80811133,"id_str":"80811133","name":"\u30bf\u30c3\u30d1\u305f\u3093(15\u6b73\u6e05\u7d14\u6d3e)","screen_name":"tappatan","location":null,"url":null,"description":"\u898b\u305f\u76ee\u306f\u5927\u4eba\u3001\u4e2d\u8eab\u306f\u304a\u3063\u3055\u3093\u306e\u30a2\u30e1\u30ea\u30ab\u4eba\u3002\u65e5\u672c\u3067\u306f\u95a2\u6771\u8fd1\u8fba\u306b\u51fa\u6ca1\u3002\u30d5\u30a9\u30ed\u30d0\u3057\u3066\u6b32\u3057\u3044\u4eba\u306f\u7533\u544a\u3057\u3066\u4e0b\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":2596,"friends_count":1532,"listed_count":121,"favourites_count":77,"statuses_count":43608,"created_at":"Thu Oct 08 09:44:36 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/437461593371074560\/LjZZn2nN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/437461593371074560\/LjZZn2nN_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720584442867713,"id_str":"663720584442867713","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","url":"https:\/\/t.co\/ny2sNMgZSZ","display_url":"pic.twitter.com\/ny2sNMgZSZ","expanded_url":"http:\/\/twitter.com\/tappatan\/status\/663720601224261632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":913,"resize":"fit"},"small":{"w":340,"h":303,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720584442867713,"id_str":"663720584442867713","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","url":"https:\/\/t.co\/ny2sNMgZSZ","display_url":"pic.twitter.com\/ny2sNMgZSZ","expanded_url":"http:\/\/twitter.com\/tappatan\/status\/663720601224261632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":913,"resize":"fit"},"small":{"w":340,"h":303,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tappatan","name":"\u30bf\u30c3\u30d1\u305f\u3093(15\u6b73\u6e05\u7d14\u6d3e)","id":80811133,"id_str":"80811133","indices":[3,12]}],"symbols":[],"media":[{"id":663720584442867713,"id_str":"663720584442867713","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","url":"https:\/\/t.co\/ny2sNMgZSZ","display_url":"pic.twitter.com\/ny2sNMgZSZ","expanded_url":"http:\/\/twitter.com\/tappatan\/status\/663720601224261632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":913,"resize":"fit"},"small":{"w":340,"h":303,"resize":"fit"}},"source_status_id":663720601224261632,"source_status_id_str":"663720601224261632","source_user_id":80811133,"source_user_id_str":"80811133"}]},"extended_entities":{"media":[{"id":663720584442867713,"id_str":"663720584442867713","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCWuHU8AE-zh4.jpg","url":"https:\/\/t.co\/ny2sNMgZSZ","display_url":"pic.twitter.com\/ny2sNMgZSZ","expanded_url":"http:\/\/twitter.com\/tappatan\/status\/663720601224261632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":913,"resize":"fit"},"small":{"w":340,"h":303,"resize":"fit"}},"source_status_id":663720601224261632,"source_status_id_str":"663720601224261632","source_user_id":80811133,"source_user_id_str":"80811133"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727537157,"id_str":"663727921727537157","text":"RT @htmy_kei: \u30d4\u30e8\u3061\u3083\u3093\u3068\u30de\u30f3\u30b4\u30fc\u30d7\u30ea\u30f3\u3002 http:\/\/t.co\/PcN67O5eNi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3845348065,"id_str":"3845348065","name":"\u5c71\u672c","screen_name":"14KIDOU_","location":null,"url":"http:\/\/twpf.jp\/14KIDOU_","description":"\u30d5\u30a1\u30d6\u30ea\u30fc\u30ba(\u30b3\u30f3\u30bd\u30e1\u5473)\u2745Takinomizu 303\u2745\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u306b\u5272\u3068\u5927\u5207\u306a\u3053\u3068\u66f8\u3044\u3066\u3042\u308b\u306e\u3067\u8aad\u3093\u3067\u304f\u3060\u3055\u3044\u2193","protected":false,"verified":false,"followers_count":43,"friends_count":126,"listed_count":0,"favourites_count":277,"statuses_count":250,"created_at":"Sat Oct 10 07:59:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652763970168684545\/74nd2jw__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652763970168684545\/74nd2jw__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3845348065\/1446382217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Dec 09 08:21:04 +0000 2014","id":542232447606194176,"id_str":"542232447606194176","text":"\u30d4\u30e8\u3061\u3083\u3093\u3068\u30de\u30f3\u30b4\u30fc\u30d7\u30ea\u30f3\u3002 http:\/\/t.co\/PcN67O5eNi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467053563,"id_str":"467053563","name":"\u3072\u3063\u3068\u307f\u30fc","screen_name":"htmy_kei","location":null,"url":null,"description":"\u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306a\u3060\u3051\u4f5c\u3063\u3066\u98df\u3079\u3066\u307e\u3059\u3002\u30da\u30c0\u30eb\uff0cHQ!!\uff0c\u3046\u305f\u30d7\u30ea\uff0cFree!\u306a\u3069\u4ed6\u306b\u3082\u305f\u304f\u3055\u3093\u3002\u8150\u3063\u3066\u307e\u3059\u304c\u57fa\u672c\u306f\u5358\u4f53\u840c\u3048\u3067\u3059\u3002\u6210\u4eba\u6e08\u307f\u3002\u203b \u30c8\u30fc\u30b9\u30c8\u306e\u4f5c\u308a\u65b9\u306f\u753b\u50cf\u904e\u53bblog\u306b\u8f09\u305b\u3066\u3042\u308a\u307e\u3059\u3002\u3054\u81ea\u8eab\u3067\u9061\u3063\u3066\u63a2\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u4f5c\u308a\u65b9\u306b\u95a2\u3059\u308b\u8cea\u554f\u306f\u4e00\u5207\u7b54\u3048\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u307e\u3050\u308c\u3067\u3059\u30b9\u30df\u30de\u30bb\u30f3\u3002","protected":false,"verified":false,"followers_count":5902,"friends_count":201,"listed_count":82,"favourites_count":7736,"statuses_count":12449,"created_at":"Wed Jan 18 02:26:13 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548849039530143744\/QwQM8VxN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548849039530143744\/QwQM8VxN.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660422062100492288\/dCt7L2FY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660422062100492288\/dCt7L2FY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467053563\/1429892856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":127,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":542232436415799297,"id_str":"542232436415799297","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","url":"http:\/\/t.co\/PcN67O5eNi","display_url":"pic.twitter.com\/PcN67O5eNi","expanded_url":"http:\/\/twitter.com\/htmy_kei\/status\/542232447606194176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":470,"resize":"fit"},"small":{"w":340,"h":266,"resize":"fit"},"large":{"w":1024,"h":803,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":542232436415799297,"id_str":"542232436415799297","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","url":"http:\/\/t.co\/PcN67O5eNi","display_url":"pic.twitter.com\/PcN67O5eNi","expanded_url":"http:\/\/twitter.com\/htmy_kei\/status\/542232447606194176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":470,"resize":"fit"},"small":{"w":340,"h":266,"resize":"fit"},"large":{"w":1024,"h":803,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"htmy_kei","name":"\u3072\u3063\u3068\u307f\u30fc","id":467053563,"id_str":"467053563","indices":[3,12]}],"symbols":[],"media":[{"id":542232436415799297,"id_str":"542232436415799297","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","url":"http:\/\/t.co\/PcN67O5eNi","display_url":"pic.twitter.com\/PcN67O5eNi","expanded_url":"http:\/\/twitter.com\/htmy_kei\/status\/542232447606194176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":470,"resize":"fit"},"small":{"w":340,"h":266,"resize":"fit"},"large":{"w":1024,"h":803,"resize":"fit"}},"source_status_id":542232447606194176,"source_status_id_str":"542232447606194176","source_user_id":467053563,"source_user_id_str":"467053563"}]},"extended_entities":{"media":[{"id":542232436415799297,"id_str":"542232436415799297","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B4Zlhy5CIAEyg67.jpg","url":"http:\/\/t.co\/PcN67O5eNi","display_url":"pic.twitter.com\/PcN67O5eNi","expanded_url":"http:\/\/twitter.com\/htmy_kei\/status\/542232447606194176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":470,"resize":"fit"},"small":{"w":340,"h":266,"resize":"fit"},"large":{"w":1024,"h":803,"resize":"fit"}},"source_status_id":542232447606194176,"source_status_id_str":"542232447606194176","source_user_id":467053563,"source_user_id_str":"467053563"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921714978816,"id_str":"663727921714978816","text":"@KeyndallJenner aku suka yang alot alot. gak","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717533816479745,"in_reply_to_status_id_str":"663717533816479745","in_reply_to_user_id":3547756819,"in_reply_to_user_id_str":"3547756819","in_reply_to_screen_name":"KeyndallJenner","user":{"id":3714197053,"id_str":"3714197053","name":"anna.","screen_name":"exposhure","location":null,"url":null,"description":"; kamu mau liat apa? gaada nama kamu di bioku. Y ;\n\n--barbara palvin roleplayer.","protected":false,"verified":false,"followers_count":270,"friends_count":269,"listed_count":0,"favourites_count":8,"statuses_count":994,"created_at":"Mon Sep 28 11:24:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663652093488599042\/ohNkAtJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663652093488599042\/ohNkAtJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3714197053\/1447061961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KeyndallJenner","name":"Kendall Jenner","id":3547756819,"id_str":"3547756819","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719177216,"id_str":"663727921719177216","text":"[\u5f37\u9707\u30e2\u30cb\u30bf\u901f\u5831] [\u5730\u4e2d\u30ab\u30a6\u30f3\u30c8\u5897\u52a0] 23:40 \u9752\u68ee\u770c \u897f\u76ee\u5c4b 1 #\u5730\u9707","source":"\u003ca href=\"http:\/\/kyomoniex.web.fc2.com\/\" rel=\"nofollow\"\u003eKyoshin Monitor Extension\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2847318126,"id_str":"2847318126","name":"\u304a\u306a\u3081\uff08\u5730\u9707\u5c02\u7528\uff09","screen_name":"tsfkyearthquake","location":null,"url":null,"description":"\u300c\u5f37\u9707\u30e2\u30cb\u30bfEx\u300d\u3067\u5730\u9707\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":192,"friends_count":566,"listed_count":5,"favourites_count":6,"statuses_count":58916,"created_at":"Wed Oct 08 13:16:56 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663239932589178880\/lL8H3vvJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663239932589178880\/lL8H3vvJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2847318126\/1431879087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5730\u9707","indices":[37,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723387906,"id_str":"663727921723387906","text":"\u30a2\u30e1\u30ea\u30ab\u30f3\u30d0\u30c8\u30eb\u30c9\u30fc\u30e0\u30c4\u30af\u30c0\u30aa\u30ea\u30b8\u30ca\u30eb\u304b\u30891994\u5e7410\u6708\u306b\u8ca9\u58f2\u3055\u308c\u305f\u3002 \u672c\u4f53\u8272\u306f\u9ed2\u3001\u30dc\u30fc\u30eb\u306e\u8272\u306f\u9ec4\u3068\u9ed2\u3002\u30b9\u30d4\u30ca\u30fc\uff08\u30c9\u30fc\u30e0\u306b\u53d6\u308a\u3064\u3051\u308bS\u5b57\u578b\u306e\u6a5f\u69cb\uff09\u306e\u8272\u306f\u9ec4\u7dd1\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1311370550,"id_str":"1311370550","name":"\u30d0\u30c8\u30eb\u30c9\u30fc\u30e0bot","screen_name":"battledoooom","location":"\u30c4\u30af\u30c0\u30aa\u30ea\u30b8\u30ca\u30eb","url":null,"description":"\u30c4\u30af\u30c0\u30aa\u30ea\u30b8\u30ca\u30eb\u304b\u3089\u51fa\u305f\u30a1\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff08\u5b9a\u671f\u7684\u306b\u545f\u3044\u3066\uff34\uff2c\u4e0a\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u6539\u5909\u3057\u305f\u308a\u3059\u308b\u3060\u3051\u306e\u500b\u4eba\u304c\u30c4\u30af\u3063\u305f\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u4e8c\u6b21\u5275\u4f5c\u8981\u7d20\u3092\u542b\u307f\u307e\u3059\u3002\u958b\u767a\u8005\u69d8\u53ca\u3073\u95a2\u4fc2\u8005\u69d8\u3068\u306f\u4e00\u5207\u95a2\u4fc2\u5fa1\u5ea7\u3044\u307e\u305b\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u306f\u81ea\u52d5\u3067\u3059\u306e\u3067\u8fd4\u3055\u308c\u308b\u307e\u3067\u66ab\u304f\u304a\u5f85\u3061\u4e0b\u3055\u3044\u3002\u3054\u610f\u898b\u3054\u8981\u671b\u7b49\u306fDM\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059\uff09","protected":false,"verified":false,"followers_count":466,"friends_count":549,"listed_count":12,"favourites_count":16,"statuses_count":18791,"created_at":"Thu Mar 28 18:16:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000391740413\/ab25d66e4defd6895b5d44850d074ea4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000391740413\/ab25d66e4defd6895b5d44850d074ea4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706745857,"id_str":"663727921706745857","text":"\u0627\u0630\u0627 \u0627\u0631\u062f\u062a\u064b \u0627\u0646 \u062a\u0632\u0648\u0639\u064b \u0634\u062c\u0631\u0647 \u0641\u0644\u0627\u062a\u0631\u0631\u0639\u064b \u0641\u064a \u0627\u0631\u0636 \u0635\u0628\u062e\u0627\u064b \u0644\u0627\u0646\u0647\u0627 \u0644\u0646 \u062a\u062b\u0645\u0631. \u0648\u0644\u0643\u0646 \u0627\u0632\u0631\u0639 \u0641\u064a \u0627\u0631\u0636 \u062e\u0635\u0628\u0647 \u062a\u0646\u0628\u062a \u0648\u062a\u062b\u0645\u0631 \u0648\u062a\u062c\u0646\u064a \u0645\u0646\u0647\u0627 \u0648\u0644\u0646 \u062a\u0646\u062f\u0645 \u0623\u0628\u062f\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297477920,"id_str":"3297477920","name":"\u0627\u0628\u0648 \u0633\u0644\u0637\u0627\u0646","screen_name":"mnd1382","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":null,"protected":false,"verified":false,"followers_count":530,"friends_count":460,"listed_count":0,"favourites_count":28,"statuses_count":749,"created_at":"Mon Jul 27 11:24:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629396763816824836\/ey6FFhES_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629396763816824836\/ey6FFhES_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297477920\/1444894662","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710764032,"id_str":"663727921710764032","text":"i need to sacrifice! ! in order to achieve something","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320219854,"id_str":"2320219854","name":"PREM :*","screen_name":"AdamJam490","location":null,"url":null,"description":"brown ceylon boy","protected":false,"verified":false,"followers_count":43,"friends_count":189,"listed_count":1,"favourites_count":462,"statuses_count":3064,"created_at":"Fri Jan 31 04:35:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468905150711492608\/EQHFd7Vn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468905150711492608\/EQHFd7Vn.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576753020819480576\/BRKvc2lr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576753020819480576\/BRKvc2lr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320219854\/1426343478","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731780608,"id_str":"663727921731780608","text":"@pikajusmin \u904a\u3073\u305f\u3044\u3051\u3069\uff65\uff65\uff65\u4eca\u65e5\u306f\u75b2\u308c\u305f\u30f3\u30b4\uff65\uff65\uff65","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726989396738048,"in_reply_to_status_id_str":"663726989396738048","in_reply_to_user_id":2832003385,"in_reply_to_user_id_str":"2832003385","in_reply_to_screen_name":"pikajusmin","user":{"id":2903504365,"id_str":"2903504365","name":"hide.Regen","screen_name":"hide_alice41","location":null,"url":null,"description":".Regen\u6240\u5c5e\nS\uff0b\n\u30db\u30bf\u30eb\u3061\u3083\u3093\u5927\u597d\u304d\u4eba\u9593\n(\u30cf\u30a4\u30c9\u3058\u3083\u306a\u3044\u3067\u3059\uff64\u30d2\u30c7\u3067\u3059)\n\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3084\u8266\u3053\u308c\u95a2\u4fc2\u3064\u3076\u3084\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":465,"friends_count":126,"listed_count":13,"favourites_count":328,"statuses_count":1862,"created_at":"Tue Nov 18 09:27:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659290837168205824\/4TJvFn5I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659290837168205824\/4TJvFn5I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903504365\/1446046328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pikajusmin","name":"JusMiN","id":2832003385,"id_str":"2832003385","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042666"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727537152,"id_str":"663727921727537152","text":"@opencar_scooter \uc2e4\uc81c\ub85c \uadc0\uccad\uc18c\ub97c \ud574\uc8fc\uc9c0\ub9cc \ud130\uce58\uac00 \uc624\uac00\uace0 \ubb50 \uadf8\ub7f0 \uacf3\uc77c\uac70\uc5d0\uc694 \uc720\uc0ac\uc131\ud589\uc704\uc5c5\uc18c.....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724866537820160,"in_reply_to_status_id_str":"663724866537820160","in_reply_to_user_id":1644912930,"in_reply_to_user_id_str":"1644912930","in_reply_to_screen_name":"opencar_scooter","user":{"id":4141850959,"id_str":"4141850959","name":"nana","screen_name":"nanais_x","location":null,"url":null,"description":"\ub0b4 \uafc8\uc740 \ud55c\ub7c9\u2b50\ufe0f","protected":false,"verified":false,"followers_count":8,"friends_count":31,"listed_count":0,"favourites_count":24,"statuses_count":27,"created_at":"Fri Nov 06 03:23:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662471666056888320\/j4ZXLdf1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662471666056888320\/j4ZXLdf1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4141850959\/1446876256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"opencar_scooter","name":"\uc218\ub9ac","id":1644912930,"id_str":"1644912930","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710809088,"id_str":"663727921710809088","text":"\u5c0f\u718a\u51fa\u6ca1\u6ce8\u610f\u30e9\u30fc\u30e1\u30f3\u3046\u3081\u3048","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120396083,"id_str":"120396083","name":"\u304a\u6e7f\u308aweb","screen_name":"syuu_JPN","location":"\u6f2b\u753b\u738b\u56fd()","url":"http:\/\/seisom.blog.fc2.com\/","description":"\u8056\u6c34\u30bd\u30e0\u30ea\u30a8\u3067\u3059\u3002 \u3044\u308d\u3044\u308d\u767a\u6563\u3057\u3066\u307e\u3059 \u3061\u3053\u305f\u3080\u3068\u6960\u539f\u3086\u3044\u3067\u751f\u304d\u3066\u307e\u3059 \u3000\u3000\u3000\u3000\u3000\u30a8\u30ed\u30b2,osu!,FPS(AVA,\u30ab\u30eb\u30de(\u6545)),\u5c11\u5973\u75c5,\u30e2\u30d0\u30de\u30b9","protected":false,"verified":false,"followers_count":124,"friends_count":250,"listed_count":1,"favourites_count":3919,"statuses_count":36919,"created_at":"Sat Mar 06 09:16:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617310801104273412\/10GaXMLR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617310801104273412\/10GaXMLR.jpg","profile_background_tile":false,"profile_link_color":"3EB833","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659563275256901632\/kDFJfiaP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659563275256901632\/kDFJfiaP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120396083\/1407339647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731928065,"id_str":"663727921731928065","text":"https:\/\/t.co\/3twm87NpF8\n\nhttps:\/\/t.co\/3twm87NpF8 Milf in leather shows her ass https:\/\/t.co\/NL5pOcSJW7 #milf #nsfw #porn #sex #hardcore \u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3377956665,"id_str":"3377956665","name":"pornhashtag","screen_name":"pornhashtag69","location":null,"url":"http:\/\/pornhashtag.com","description":null,"protected":false,"verified":false,"followers_count":10706,"friends_count":3259,"listed_count":649,"favourites_count":1330,"statuses_count":240476,"created_at":"Wed Jul 15 23:08:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661356636519473152\/tyWX5Ngj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661356636519473152\/tyWX5Ngj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3377956665\/1446514713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"milf","indices":[103,108]},{"text":"nsfw","indices":[109,114]},{"text":"porn","indices":[115,120]},{"text":"sex","indices":[121,125]},{"text":"hardcore","indices":[126,135]}],"urls":[{"url":"https:\/\/t.co\/3twm87NpF8","expanded_url":"http:\/\/pornhashtag.com","display_url":"pornhashtag.com","indices":[0,23]},{"url":"https:\/\/t.co\/3twm87NpF8","expanded_url":"http:\/\/pornhashtag.com","display_url":"pornhashtag.com","indices":[25,48]},{"url":"https:\/\/t.co\/NL5pOcSJW7","expanded_url":"http:\/\/hornymilfs.sexxbuzz.com\/milf-in-leather-shows-her-ass\/","display_url":"hornymilfs.sexxbuzz.com\/milf-in-leathe\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080042666"} +{"delete":{"status":{"id":639766123026628608,"id_str":"639766123026628608","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080042746"}} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710956544,"id_str":"663727921710956544","text":"RT @NiallOfficial: Loving the trend again today.. Love how u are responding to history.. It's one our favourite songs we've ever done.. So \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1073849964,"id_str":"1073849964","name":"harry","screen_name":"80sftstyles","location":null,"url":"http:\/\/onedirectionmusic.com","description":"2015-06-10 BEST DAY OF MY LIFE","protected":false,"verified":false,"followers_count":4885,"friends_count":4479,"listed_count":23,"favourites_count":12882,"statuses_count":19172,"created_at":"Wed Jan 09 13:59:47 +0000 2013","utc_offset":3600,"time_zone":"Vienna","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437918040991084545\/lqOm06m-.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437918040991084545\/lqOm06m-.png","profile_background_tile":false,"profile_link_color":"0A6D7A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624984579733090304\/tiTuvnfN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624984579733090304\/tiTuvnfN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1073849964\/1432285437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 17:19:54 +0000 2015","id":662680819379630080,"id_str":"662680819379630080","text":"Loving the trend again today.. Love how u are responding to history.. It's one our favourite songs we've ever done.. So this makes me happy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105119490,"id_str":"105119490","name":"Niall Horan","screen_name":"NiallOfficial","location":"Mullingar,Westmeath,Ireland","url":"http:\/\/www.onedirectionmusic.com","description":"Back on the road again, gona be an incredible year!","protected":false,"verified":true,"followers_count":23509227,"friends_count":5650,"listed_count":123567,"favourites_count":137,"statuses_count":10522,"created_at":"Fri Jan 15 12:14:24 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105119490\/1420558622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130015,"favorite_count":174526,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921715019776,"id_str":"663727921715019776","text":"RT @jeremyspangler: Are you looking for someone that Follows back? \n@jeremyspangler \u2b05Go FOLLOW.. \n #NewHaven #ct\n#f4f https:\/\/t.co\/vMt8ZYC\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1854363608,"id_str":"1854363608","name":"Lillian ","screen_name":"bomberisu","location":"Albertville, Alabama","url":null,"description":"I am a Financial Coach ,and Coach.","protected":false,"verified":false,"followers_count":101,"friends_count":1185,"listed_count":11,"favourites_count":720,"statuses_count":870,"created_at":"Wed Sep 11 13:37:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000537035693\/8f061385b2bbb279334659c605dcea7d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000537035693\/8f061385b2bbb279334659c605dcea7d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:51:25 +0000 2015","id":663655121595662336,"id_str":"663655121595662336","text":"Are you looking for someone that Follows back? \n@jeremyspangler \u2b05Go FOLLOW.. \n #NewHaven #ct\n#f4f https:\/\/t.co\/vMt8ZYCRvt","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148915233,"id_str":"148915233","name":"jeremyspangler","screen_name":"jeremyspangler","location":"worldwide","url":"http:\/\/bit.ly\/1KAoHGT","description":"I do random tweets anything you want to know just ask...\r\n|Networking|music|#makemoney #follow4afollowback #follow4follow","protected":false,"verified":false,"followers_count":5986,"friends_count":3909,"listed_count":14,"favourites_count":25,"statuses_count":2571,"created_at":"Thu May 27 23:19:19 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3209218650\/ac283fb588969c6a1bf8889f65a891b3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3209218650\/ac283fb588969c6a1bf8889f65a891b3_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1837,"favorite_count":851,"entities":{"hashtags":[{"text":"NewHaven","indices":[80,89]},{"text":"ct","indices":[90,93]},{"text":"f4f","indices":[94,98]}],"urls":[],"user_mentions":[{"screen_name":"jeremyspangler","name":"jeremyspangler","id":148915233,"id_str":"148915233","indices":[49,64]}],"symbols":[],"media":[{"id":663655121377587200,"id_str":"663655121377587200","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","url":"https:\/\/t.co\/vMt8ZYCRvt","display_url":"pic.twitter.com\/vMt8ZYCRvt","expanded_url":"http:\/\/twitter.com\/jeremyspangler\/status\/663655121595662336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663655121377587200,"id_str":"663655121377587200","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","url":"https:\/\/t.co\/vMt8ZYCRvt","display_url":"pic.twitter.com\/vMt8ZYCRvt","expanded_url":"http:\/\/twitter.com\/jeremyspangler\/status\/663655121595662336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NewHaven","indices":[100,109]},{"text":"ct","indices":[110,113]},{"text":"f4f","indices":[114,118]}],"urls":[],"user_mentions":[{"screen_name":"jeremyspangler","name":"jeremyspangler","id":148915233,"id_str":"148915233","indices":[3,18]},{"screen_name":"jeremyspangler","name":"jeremyspangler","id":148915233,"id_str":"148915233","indices":[69,84]}],"symbols":[],"media":[{"id":663655121377587200,"id_str":"663655121377587200","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","url":"https:\/\/t.co\/vMt8ZYCRvt","display_url":"pic.twitter.com\/vMt8ZYCRvt","expanded_url":"http:\/\/twitter.com\/jeremyspangler\/status\/663655121595662336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663655121595662336,"source_status_id_str":"663655121595662336","source_user_id":148915233,"source_user_id_str":"148915233"}]},"extended_entities":{"media":[{"id":663655121377587200,"id_str":"663655121377587200","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXG0RMUcAApJ2U.jpg","url":"https:\/\/t.co\/vMt8ZYCRvt","display_url":"pic.twitter.com\/vMt8ZYCRvt","expanded_url":"http:\/\/twitter.com\/jeremyspangler\/status\/663655121595662336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663655121595662336,"source_status_id_str":"663655121595662336","source_user_id":148915233,"source_user_id_str":"148915233"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727598592,"id_str":"663727921727598592","text":"@nJUTon0716 \n\u3042\u3001\u308a\u3087\u3046\u304b\u3044\u7b11\n\u305f\u3057\u304b\u306b\u7b11\n\u3067\u3082\u3001\u304d\u30fc\u3061\u3083\u3093\u3067\u3082\u30a4\u30b1\u308b\u3067( \u2022\u0e31\u0e47 _ \u2022\u0e47\u0e31 )\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727217742974976,"in_reply_to_status_id_str":"663727217742974976","in_reply_to_user_id":3115214396,"in_reply_to_user_id_str":"3115214396","in_reply_to_screen_name":"nJUTon0716","user":{"id":570672215,"id_str":"570672215","name":"Miki.a","screen_name":"48170911","location":"\u3042\u306a\u305f\u306e\u7b11\u9854\u304c\u30b9\u30ad\u3002\u3044\u3084\u3001\u7b11\u9854\u306e\u3042\u306a\u305f\u304c\u597d\u304d\u3002","url":null,"description":"CHUBU\/1PJ\/LAX#15 \u4f11\u307f\u304c\u6b32\u3057\u3044\u3002\u3002 \nHi-Fi CAMP NMB48","protected":false,"verified":false,"followers_count":251,"friends_count":320,"listed_count":0,"favourites_count":562,"statuses_count":5632,"created_at":"Fri May 04 09:14:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661010653692346369\/6qGUldRu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661010653692346369\/6qGUldRu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/570672215\/1443268272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nJUTon0716","name":"\u677e\u5cf6\u83dc\u90fd\u6a39@\u304d\u30fc\u3061\u3083\u3093\u3002","id":3115214396,"id_str":"3115214396","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921714999296,"id_str":"663727921714999296","text":"Kis-My-Ft2\u30fb\u85e4\u30f6\u8c37\u3001\u300c\u5317\u5c71\u3068\u306e\u66f2\u306f\u30cb\u30fc\u30ba\u306b\u5408\u308f\u305b\u305f\u300d\u767a\u8a00\u3067\u30d5\u30a1\u30f3\u8907\u96d1\u30e0\u30fc\u30c9 https:\/\/t.co\/lwQSrA5dJu","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3657865460,"id_str":"3657865460","name":"Kis-My-Ft2\u5927\u597d\u304d","screen_name":"p0042km2","location":null,"url":null,"description":"\u3044\u308d\u3044\u308d\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3084\u308a\u53d6\u308a\u3057\u305f\u3044\u3093\u3067\u30e8\u30ed\u30b7\u30af\u306dv(^\u25bd^)v","protected":false,"verified":false,"followers_count":108,"friends_count":236,"listed_count":0,"favourites_count":0,"statuses_count":5089,"created_at":"Wed Sep 23 08:53:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647811269060198400\/15WkUJP7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647811269060198400\/15WkUJP7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3657865460\/1443285250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lwQSrA5dJu","expanded_url":"http:\/\/musiclife1972.seesaa.net\/","display_url":"musiclife1972.seesaa.net","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706627077,"id_str":"663727921706627077","text":"kreynya lucu :))) https:\/\/t.co\/LEljEYlRNC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633016230,"id_str":"633016230","name":"chaeyoung","screen_name":"twice__twt","location":null,"url":null,"description":"\u275d roleplayer chaeyoung from twice \u273f \u275e ( @VKTH95_\u2661 )","protected":false,"verified":false,"followers_count":1986,"friends_count":1679,"listed_count":7,"favourites_count":615,"statuses_count":81799,"created_at":"Wed Jul 11 14:23:34 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628517814484103168\/9ZEtXydg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628517814484103168\/9ZEtXydg.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663557496062152704\/R30WsGfT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663557496062152704\/R30WsGfT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633016230\/1446848665","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727708430438402,"quoted_status_id_str":"663727708430438402","quoted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727708430438402,"id_str":"663727708430438402","text":"@twice__twt itu anggep juon sama krey hahaha https:\/\/t.co\/vunbpy7qp6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727167063195648,"in_reply_to_status_id_str":"663727167063195648","in_reply_to_user_id":633016230,"in_reply_to_user_id_str":"633016230","in_reply_to_screen_name":"twice__twt","user":{"id":2501385008,"id_str":"2501385008","name":"Kim Taehyung","screen_name":"VKTH95_","location":"BTSQUAD","url":null,"description":"Roleplayer of \ubc29\ud0c4\uc18c\ub144\ub2e8's \uc804\uc815\uad6d \u00a9 1995 (\u007b@twice__twt\u2661\u007d)","protected":false,"verified":false,"followers_count":1194,"friends_count":657,"listed_count":2,"favourites_count":846,"statuses_count":32732,"created_at":"Sat May 17 11:59:04 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661752897869254656\/8Cd-W4f1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661752897869254656\/8Cd-W4f1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501385008\/1447039190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twice__twt","name":"chaeyoung","id":633016230,"id_str":"633016230","indices":[0,11]}],"symbols":[],"media":[{"id":663727705033039876,"id_str":"663727705033039876","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1MYUYAQPBDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1MYUYAQPBDO.jpg","url":"https:\/\/t.co\/vunbpy7qp6","display_url":"pic.twitter.com\/vunbpy7qp6","expanded_url":"http:\/\/twitter.com\/VKTH95_\/status\/663727708430438402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":572,"resize":"fit"},"large":{"w":400,"h":674,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":674,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727705033039876,"id_str":"663727705033039876","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1MYUYAQPBDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1MYUYAQPBDO.jpg","url":"https:\/\/t.co\/vunbpy7qp6","display_url":"pic.twitter.com\/vunbpy7qp6","expanded_url":"http:\/\/twitter.com\/VKTH95_\/status\/663727708430438402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":572,"resize":"fit"},"large":{"w":400,"h":674,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":674,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LEljEYlRNC","expanded_url":"https:\/\/twitter.com\/vkth95_\/status\/663727708430438402","display_url":"twitter.com\/vkth95_\/status\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731792902,"id_str":"663727921731792902","text":"\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8\n\u6249\u98a8\u3068\u304b\u3044\u3046\u69cb\u7bc9\u898b\u305f\u304c\u3001\u306a\u3093\u3060\u304b\u306a\u30fc\u3063\u3066\u306a\u3063\u305f","source":"\u003ca href=\"http:\/\/jigtwi.jp\/?p=1\" rel=\"nofollow\"\u003ejigtwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1350734948,"id_str":"1350734948","name":"\u30aa\u30ba@WGP\u4ed9\u53f0\u53c2\u52a0 \u5922\u306f\u7269\u8a9e\u3092\u4f5c\u308b\u4eba","screen_name":"OZ_K_TCGP","location":"\u6771\u4eac\u30fb\u516b\u738b\u5b50","url":"http:\/\/com.nicovideo.jp\/community\/co2251392","description":"TCG\u30cb\u30b3\u751f\u4e3b\u3002TCGP\u3067\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\u8133\u3002VS\u3001PM\u3001WS\u306a\u3069\u3002\u5c0f\u8aac\u3001\u30e9\u30ce\u30d9\u3001\u30a2\u30cb\u30bd\u30f3\u3001\u30a2\u30cb\u30e1\u3001\u30b5\u30c3\u30ab\u30fc\u3001TCG\/\u541b\u5618\u3001\u4e00\u5b58\u3001\uff84\uff69\uff99\uff83\uff68\uff71\u3001\u30af\u30e9\u30ca\u30c9\/\u9375\u3063\u5b50\u3001\u714c\u3063\u5b50\/\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u306e\u5973\u5b50\u304c\u597d\u7269\u3002\u5bfe\u6226\u52d5\u753b\u3084\u958b\u5c01\u52d5\u753b\u3042\u3052\u3066\u307e\u3059\uff01 \u611f\u52d5\u30b7\u30ca\u30ea\u30aa\u66f8\u304d\u305f\u3044\u3068\u5fd7\u3059\u4eba\u9593\u3002e\u30a8\u30d6\u30ea\u30b9\u30bf\u306b\u3066\u300c\u96e8\u7537\u3068\u6674\u5973\u300d\u9023\u8f09\u4e2d\u3002\u5bfe\u6226\u52d5\u753b\u76f8\u624b\u52df\u96c6\u4e2d\uff01","protected":false,"verified":false,"followers_count":358,"friends_count":384,"listed_count":7,"favourites_count":98,"statuses_count":37913,"created_at":"Sun Apr 14 02:07:26 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175014312\/Fm-RHlI2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175014312\/Fm-RHlI2.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659145460905459712\/qzPqqUnj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659145460905459712\/qzPqqUnj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1350734948\/1379050077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042666"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723371520,"id_str":"663727921723371520","text":"\u6ce8(\u4e2d\u306e\u4eba\u306e\u7d20\u3067\u3059)\nLINE\u3067\u6709\u540d\u306a\u8352\u3089\u3057\u6d88\u3048\u305f\u3088\u306a\n\u307b\u3068\u3093\u3069\u306e\u5974\u7b49\u30ea\u30a2\u57a2\u306b\u306a\u3063\u3066\u308b\u3057\nLINE\u6c11\u3063\u3066\u6587\u5316\u306f\u3082\u3046\u30aa\u30ef\u30b3\u30f3\u78ba\u5b9a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2965826413,"id_str":"2965826413","name":"\u7d2b\u82d1@blood times","screen_name":"yozakuranosion","location":null,"url":null,"description":"PC\u5165\u624b\u6b21\u7b2c\u3086\u3063\u304f\u308a\u5b9f\u6cc1\u3057\u307e\u3059 \u30d3\u30fc\u30b9\u30c8,maimai,\u30de\u30ad\u30d6\u7b49\u3084\u3063\u3066\u307e\u3059 Angel Beats!\u304c\u5927\u597d\u304d\u306a\u81ea\u79f0Beats\u53a8 \u5168\u970a\u56e3","protected":false,"verified":false,"followers_count":250,"friends_count":346,"listed_count":6,"favourites_count":22,"statuses_count":1395,"created_at":"Thu Jan 08 10:32:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662997981776338945\/f1bEefqQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662997981776338945\/f1bEefqQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2965826413\/1446834894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921698222080,"id_str":"663727921698222080","text":"\u77f3\u304c\uff13\uff10\uff10\uff10\u3053\u3048\u305f\n\u3057\u304b\u3057\n\u307e\u308f\u3055\u306a\u3044\u3088\n\u304a\u308c\u306f\u307e\u308f\u3055\u306a\u3044\n\u307e\u3060\n\u6642\u671f\u3067\u306f\u306a\u3044(\uff03\uff40\u76bf\u00b4)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913571869,"id_str":"913571869","name":"\u30b7\u30d1\u30fc\u30d5\u8fb2\u592b@\u30e1\u30d3\u30a6\u30b9FF","screen_name":"kirin3335228","location":null,"url":null,"description":"\u5f8c\u65b9\u652f\u63f4\u5c02\u9580\u306e\u30d6\u30e9\u30f3\u30af\u3067\u3059\u3002\n\u5175\u7ce7\u306f\u4efb\u305b\u3066\u304f\u3060\u3055\u3044\u3002\n\u30ab\u30aa\u30b9\u306f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":43,"friends_count":35,"listed_count":0,"favourites_count":48,"statuses_count":136,"created_at":"Tue Oct 30 00:40:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661412450802122752\/mjmT6P3O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661412450802122752\/mjmT6P3O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913571869\/1446048088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042658"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731801089,"id_str":"663727921731801089","text":"RT @nnnnoeyyy: \u0e04\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e32\u0e41\u0e04\u0e48 2 \u0e27\u0e34\u0e01\u0e47\u0e2b\u0e25\u0e48\u0e2d\u0e0a\u0e34\u0e1a\u0e2b\u0e32\u0e22\u0e41\u0e25\u0e49\u0e27 \u0e2b\u0e31\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e22\u0e31\u0e07\u0e2b\u0e25\u0e48\u0e2d \u0e17\u0e35\u0e21\u0e2d\u0e27\u0e22 55555555555555555555555555555555555555555555555 #LIGHTSABER https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":919061838,"id_str":"919061838","name":"\u2765ffourthh","screen_name":"girl_fourth","location":"\u0e43\u0e19\u0e43\u0e08\u0e21\u0e22\u0e2d\u0e07\u0e0b\u0e39","url":null,"description":"E X O | I N F I N I T E | A S T R O | U N I Q \u221e \u2022 \u0e40\u0e14\u0e47\u0e01\u0e19\u0e49\u0e2d\u0e22\u0e02\u0e2d\u0e07\u0e40\u0e2d\u0e47\u0e01\u0e42\u0e0b \u2022 \u0e2a\u0e42\u0e19\u0e44\u0e27\u0e17\u0e4c\u0e02\u0e2d\u0e07\u0e2d\u0e34\u0e19\u0e1f\u0e34\u0e19\u0e34\u0e17 \u2022 \u0e17\u0e32\u0e2a\u0e2d\u0e38\u0e25\u0e25\u0e34\u0e21\u0e41\u0e25\u0e30\u0e40\u0e2d\u0e2a\u0e40\u0e2d\u0e47\u0e21 || \u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e2d\u0e34\u0e19\u0e1f\u0e34\u0e19\u0e34\u0e17\u0e21\u0e32\u0e01","protected":false,"verified":false,"followers_count":172,"friends_count":596,"listed_count":3,"favourites_count":1088,"statuses_count":48086,"created_at":"Thu Nov 01 13:56:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663055534237417472\/zBCE-MrQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663055534237417472\/zBCE-MrQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/919061838\/1418900532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:09:48 +0000 2015","id":663372856726712322,"id_str":"663372856726712322","text":"\u0e04\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e32\u0e41\u0e04\u0e48 2 \u0e27\u0e34\u0e01\u0e47\u0e2b\u0e25\u0e48\u0e2d\u0e0a\u0e34\u0e1a\u0e2b\u0e32\u0e22\u0e41\u0e25\u0e49\u0e27 \u0e2b\u0e31\u0e19\u0e2b\u0e25\u0e31\u0e07\u0e22\u0e31\u0e07\u0e2b\u0e25\u0e48\u0e2d \u0e17\u0e35\u0e21\u0e2d\u0e27\u0e22 55555555555555555555555555555555555555555555555 #LIGHTSABER https:\/\/t.co\/kkaTplxfCx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374536712,"id_str":"374536712","name":"\u0e19\u0e10 \u2022\u1d25\u2022","screen_name":"nnnnoeyyy","location":"\u5ee3\u5dde, \uc11c\uc6b8","url":null,"description":"\u2661 wyf osh kty jsj\u300ctaeoh\/asher\u300d","protected":false,"verified":false,"followers_count":21410,"friends_count":232,"listed_count":7,"favourites_count":350,"statuses_count":142278,"created_at":"Fri Sep 16 13:56:57 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624804393112604672\/9o4jXg0y.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624804393112604672\/9o4jXg0y.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662667894614921216\/rSZ-Og_k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662667894614921216\/rSZ-Og_k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374536712\/1445254386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":605,"favorite_count":62,"entities":{"hashtags":[{"text":"LIGHTSABER","indices":[103,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663372837000843264,"id_str":"663372837000843264","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663372837000843264,"id_str":"663372837000843264","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663372837059588101,"id_str":"663372837059588101","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFKKUcAUTLGT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFKKUcAUTLGT.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663372837156065280,"id_str":"663372837156065280","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFKhUkAACSZl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFKhUkAACSZl.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663372838041092100,"id_str":"663372838041092100","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFN0VAAQiDV1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFN0VAAQiDV1.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LIGHTSABER","indices":[118,129]}],"urls":[],"user_mentions":[{"screen_name":"nnnnoeyyy","name":"\u0e19\u0e10 \u2022\u1d25\u2022","id":374536712,"id_str":"374536712","indices":[3,13]}],"symbols":[],"media":[{"id":663372837000843264,"id_str":"663372837000843264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663372856726712322,"source_status_id_str":"663372856726712322","source_user_id":374536712,"source_user_id_str":"374536712"}]},"extended_entities":{"media":[{"id":663372837000843264,"id_str":"663372837000843264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFJ8UEAAzyXj.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663372856726712322,"source_status_id_str":"663372856726712322","source_user_id":374536712,"source_user_id_str":"374536712"},{"id":663372837059588101,"id_str":"663372837059588101","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFKKUcAUTLGT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFKKUcAUTLGT.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663372856726712322,"source_status_id_str":"663372856726712322","source_user_id":374536712,"source_user_id_str":"374536712"},{"id":663372837156065280,"id_str":"663372837156065280","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFKhUkAACSZl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFKhUkAACSZl.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663372856726712322,"source_status_id_str":"663372856726712322","source_user_id":374536712,"source_user_id_str":"374536712"},{"id":663372838041092100,"id_str":"663372838041092100","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGFN0VAAQiDV1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGFN0VAAQiDV1.jpg","url":"https:\/\/t.co\/kkaTplxfCx","display_url":"pic.twitter.com\/kkaTplxfCx","expanded_url":"http:\/\/twitter.com\/nnnnoeyyy\/status\/663372856726712322\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663372856726712322,"source_status_id_str":"663372856726712322","source_user_id":374536712,"source_user_id_str":"374536712"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080042666"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710899200,"id_str":"663727921710899200","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3434421573,"id_str":"3434421573","name":"Me Boludearon","screen_name":"Boludeadoo","location":"MAIAMEEEEE","url":null,"description":"Mecabio","protected":false,"verified":false,"followers_count":5933,"friends_count":4066,"listed_count":1,"favourites_count":396,"statuses_count":6371,"created_at":"Fri Aug 21 17:49:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634786479353544704\/OO0yRmtY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634786479353544704\/OO0yRmtY.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634785238053466112\/AfQV2vJ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634785238053466112\/AfQV2vJ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3434421573\/1440179654","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723478016,"id_str":"663727921723478016","text":"@robertzielinski mo\u017ce b\u0119dzie wydanie II poprawione.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727233325006848,"in_reply_to_status_id_str":"663727233325006848","in_reply_to_user_id":81087809,"in_reply_to_user_id_str":"81087809","in_reply_to_screen_name":"robertzielinski","user":{"id":2839992429,"id_str":"2839992429","name":"Goodman","screen_name":"Heidegger_PL","location":null,"url":null,"description":"achtung, achtung Herman","protected":false,"verified":false,"followers_count":327,"friends_count":922,"listed_count":4,"favourites_count":6047,"statuses_count":2694,"created_at":"Tue Oct 21 14:14:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535962382774718464\/cw1HLKWC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535962382774718464\/cw1HLKWC.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658962444371521536\/247A3MRB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658962444371521536\/247A3MRB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2839992429\/1424818793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"robertzielinski","name":"robert zielinski","id":81087809,"id_str":"81087809","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921723392000,"id_str":"663727921723392000","text":"@ALLIEE96 postannya seakan2 bilang cewe yg ga berhijab ngegoda dia. Anjir amat","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727667955433473,"in_reply_to_status_id_str":"663727667955433473","in_reply_to_user_id":196174280,"in_reply_to_user_id_str":"196174280","in_reply_to_screen_name":"ALLIEE96","user":{"id":565266863,"id_str":"565266863","name":"","screen_name":"martabaektaolor","location":null,"url":null,"description":"\ubc31\uad6c Dies for kaibaek squeals for tao cries for sulli sobs for cnu. \ub0b4 \uc774\ub984\uc740 zion t","protected":false,"verified":false,"followers_count":1232,"friends_count":870,"listed_count":1,"favourites_count":1879,"statuses_count":60941,"created_at":"Sat Apr 28 08:14:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636360517\/zvb5ye7kyxlmxfhvbgdb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636360517\/zvb5ye7kyxlmxfhvbgdb.jpeg","profile_background_tile":true,"profile_link_color":"E615A4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482751762604908545\/Fqnme9Rf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482751762604908545\/Fqnme9Rf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565266863\/1389851181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ALLIEE96","name":"virgin mojito","id":196174280,"id_str":"196174280","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080042664"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921727582208,"id_str":"663727921727582208","text":"\"@NINJAYEWOLF: IS THIS FREAKING LEGIT BC I'M FREAKING SHAKING.\n\n#OTWOLFinallyYours https:\/\/t.co\/DSnklDDMCM\" MAHIRAP.UMASA.ALAM.NIYO.YON ~C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2408144635,"id_str":"2408144635","name":"DIARY NG JADINE","screen_name":"DiaryngJaDine","location":"JDLand","url":"http:\/\/instagram.com\/diaryngjadine","description":"Admin -jns \/ ~C \/ -Kenz \/ -Yomi \/ -Lorie \/ -R \/ -Mai | One Fandom,One Family | Goodvibes Always | No hate allowed | JaDine Forever! | Since March 24 2014","protected":false,"verified":false,"followers_count":15695,"friends_count":378,"listed_count":9,"favourites_count":7170,"statuses_count":43560,"created_at":"Mon Mar 24 01:48:48 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452429226105241600\/LPm0DdOv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452429226105241600\/LPm0DdOv.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658975277616226304\/Xb7SBe6i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658975277616226304\/Xb7SBe6i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2408144635\/1403790051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLFinallyYours","indices":[64,82]}],"urls":[],"user_mentions":[{"screen_name":"NINJAYEWOLF","name":"ezra faulkner","id":2534736967,"id_str":"2534736967","indices":[1,13]}],"symbols":[],"media":[{"id":663725382093307904,"id_str":"663725382093307904","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGt-wVAAA8QFl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGt-wVAAA8QFl.jpg","url":"https:\/\/t.co\/DSnklDDMCM","display_url":"pic.twitter.com\/DSnklDDMCM","expanded_url":"http:\/\/twitter.com\/NINJAYEWOLF\/status\/663725394470633472\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"large":{"w":639,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"}},"source_status_id":663725394470633472,"source_status_id_str":"663725394470633472","source_user_id":2534736967,"source_user_id_str":"2534736967"}]},"extended_entities":{"media":[{"id":663725382093307904,"id_str":"663725382093307904","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGt-wVAAA8QFl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGt-wVAAA8QFl.jpg","url":"https:\/\/t.co\/DSnklDDMCM","display_url":"pic.twitter.com\/DSnklDDMCM","expanded_url":"http:\/\/twitter.com\/NINJAYEWOLF\/status\/663725394470633472\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"large":{"w":639,"h":282,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"}},"source_status_id":663725394470633472,"source_status_id_str":"663725394470633472","source_user_id":2534736967,"source_user_id_str":"2534736967"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080042665"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719218176,"id_str":"663727921719218176","text":"\u81ea\u5206\u3082\u7686\u3055\u3093\u306b\u4fbf\u4e57\u3057\u307e\u3059!(\u7b11)\n\u50d5\u306e\u56db\u798f\u795e\u3067\u3059!\n\u3053\u308c\u306f\u304b\u306a\u308a\u8ff7\u3044\u307e\u3057\u305f!\n\u7279\u306b\u5800\u3068\u5317\u91ce\u2026\u6700\u7d42\u7684\u306b\u306f\u5800\u306b\u3057\u305f\u3051\u3069\n\u5317\u91ce\u3082\u597d\u304d\u3067\u3059\u3088!(\u7b11)\n#\u81ea\u5206\u306e\u4e2d\u306e\u56db\u798f\u795e \n#\u4e43\u6728\u574246\u597d\u304d\u306a\u4ebaRT \n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/XettqhbdZu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4123430418,"id_str":"4123430418","name":"\u307f\u3063\u3064\u3093","screen_name":"swkf6sgCRQ1EYy4","location":null,"url":null,"description":"\u4e43\u6728\u5742\u5c02\u7528\u57a2!\n\u795e\u63a8\u3057\u261e\u751f\u7530\n\u63a8\u3057\u261e\u767d\u77f3\u2022\u661f\u91ce\u2022\u5800\u2022\u5317\u91ce\n\u3061\u306a\u307f\u306b\u30b0\u30c3\u30ba\u306f\u6301\u3063\u3066\u307e\u305b\u3093(T_T)\n\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044","protected":false,"verified":false,"followers_count":89,"friends_count":116,"listed_count":0,"favourites_count":37,"statuses_count":57,"created_at":"Wed Nov 04 11:42:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662310771162939392\/yc2fcgHX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662310771162939392\/yc2fcgHX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4123430418\/1446638669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u81ea\u5206\u306e\u4e2d\u306e\u56db\u798f\u795e","indices":[71,80]},{"text":"\u4e43\u6728\u574246\u597d\u304d\u306a\u4ebaRT","indices":[82,94]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[96,110]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727913041162240,"id_str":"663727913041162240","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBTRUcAAoQoA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBTRUcAAoQoA.jpg","url":"https:\/\/t.co\/XettqhbdZu","display_url":"pic.twitter.com\/XettqhbdZu","expanded_url":"http:\/\/twitter.com\/swkf6sgCRQ1EYy4\/status\/663727921719218176\/photo\/1","type":"photo","sizes":{"small":{"w":289,"h":350,"resize":"fit"},"medium":{"w":289,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":289,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727913041162240,"id_str":"663727913041162240","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBTRUcAAoQoA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBTRUcAAoQoA.jpg","url":"https:\/\/t.co\/XettqhbdZu","display_url":"pic.twitter.com\/XettqhbdZu","expanded_url":"http:\/\/twitter.com\/swkf6sgCRQ1EYy4\/status\/663727921719218176\/photo\/1","type":"photo","sizes":{"small":{"w":289,"h":350,"resize":"fit"},"medium":{"w":289,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":289,"h":350,"resize":"fit"}}},{"id":663727915108950016,"id_str":"663727915108950016","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBa-UYAAxkOZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBa-UYAAxkOZ.jpg","url":"https:\/\/t.co\/XettqhbdZu","display_url":"pic.twitter.com\/XettqhbdZu","expanded_url":"http:\/\/twitter.com\/swkf6sgCRQ1EYy4\/status\/663727921719218176\/photo\/1","type":"photo","sizes":{"large":{"w":290,"h":350,"resize":"fit"},"small":{"w":290,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":350,"resize":"fit"}}},{"id":663727917281624065,"id_str":"663727917281624065","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBjEUwAEinJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBjEUwAEinJV.jpg","url":"https:\/\/t.co\/XettqhbdZu","display_url":"pic.twitter.com\/XettqhbdZu","expanded_url":"http:\/\/twitter.com\/swkf6sgCRQ1EYy4\/status\/663727921719218176\/photo\/1","type":"photo","sizes":{"large":{"w":290,"h":350,"resize":"fit"},"small":{"w":290,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":350,"resize":"fit"}}},{"id":663727919735279617,"id_str":"663727919735279617","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBsNUkAEiWnp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBsNUkAEiWnp.jpg","url":"https:\/\/t.co\/XettqhbdZu","display_url":"pic.twitter.com\/XettqhbdZu","expanded_url":"http:\/\/twitter.com\/swkf6sgCRQ1EYy4\/status\/663727921719218176\/photo\/1","type":"photo","sizes":{"large":{"w":290,"h":350,"resize":"fit"},"small":{"w":290,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":290,"h":350,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921719328768,"id_str":"663727921719328768","text":"#FacebookPage Jeeves and Porter Concierge - News about Off Market https:\/\/t.co\/miPE3Z3JHR","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2836870202,"id_str":"2836870202","name":"Midas Chance","screen_name":"MidasChance","location":"Worldwide","url":"http:\/\/goo.gl\/V5cYcu","description":"TOMO - Totally Off Market Opportunities & Sponsors for the #HTAFC Boardroom 2015\/16 season #luxury #concierge #experiences #wealth #taxplanning #offmarket","protected":false,"verified":false,"followers_count":11812,"friends_count":12948,"listed_count":1277,"favourites_count":0,"statuses_count":165292,"created_at":"Wed Oct 01 16:07:36 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564440821374533632\/h87clBO2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564440821374533632\/h87clBO2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2836870202\/1423409670","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FacebookPage","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/miPE3Z3JHR","expanded_url":"http:\/\/goo.gl\/sigRj5","display_url":"goo.gl\/sigRj5","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042663"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710804992,"id_str":"663727921710804992","text":"RT @jirayu_JP: \u2468\u30b8\u30e9\u30e6\u304f\u3093\u304b\u3089\u306e\u304a\u624b\u7d19\n\u300c\u50d5\u306f\u65e5\u672c\u304c\u5927\u597d\u304d\u3067\u3059\u300d\n#JamesJirayu1stShowcaseJP https:\/\/t.co\/AdaxsHQl4h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2816335506,"id_str":"2816335506","name":"PIYANAT TSS\u0e39","screen_name":"fern_piyanat","location":null,"url":null,"description":"JJ&http:\/\/L.KIM","protected":false,"verified":false,"followers_count":75,"friends_count":322,"listed_count":0,"favourites_count":38621,"statuses_count":4411,"created_at":"Thu Sep 18 04:54:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653576037608001536\/wGEtEe1q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653576037608001536\/wGEtEe1q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2816335506\/1446310456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:19 +0000 2015","id":663721782684352512,"id_str":"663721782684352512","text":"\u2468\u30b8\u30e9\u30e6\u304f\u3093\u304b\u3089\u306e\u304a\u624b\u7d19\n\u300c\u50d5\u306f\u65e5\u672c\u304c\u5927\u597d\u304d\u3067\u3059\u300d\n#JamesJirayu1stShowcaseJP https:\/\/t.co\/AdaxsHQl4h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3687224833,"id_str":"3687224833","name":"\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30b8\u30e9\u30e6JP","screen_name":"jirayu_JP","location":null,"url":null,"description":"\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30b8\u30e9\u30e6\u304f\u3093\u3092\u5fdc\u63f4\u3059\u308b\u65e5\u672c\u306e\u30d5\u30a1\u30f3\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01 \u30b8\u30e9\u30e6\u304f\u3093\u306e\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002I'm Jirayu's japanese fan\u2606 not official.","protected":false,"verified":false,"followers_count":469,"friends_count":11,"listed_count":0,"favourites_count":14,"statuses_count":284,"created_at":"Sat Sep 26 00:52:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647578132355002368\/yrql7DSz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647578132355002368\/yrql7DSz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":32,"entities":{"hashtags":[{"text":"JamesJirayu1stShowcaseJP","indices":[26,51]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721570418823168,"id_str":"663721570418823168","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","url":"https:\/\/t.co\/AdaxsHQl4h","display_url":"pic.twitter.com\/AdaxsHQl4h","expanded_url":"http:\/\/twitter.com\/jirayu_JP\/status\/663721782684352512\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721570418823168,"id_str":"663721570418823168","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","url":"https:\/\/t.co\/AdaxsHQl4h","display_url":"pic.twitter.com\/AdaxsHQl4h","expanded_url":"http:\/\/twitter.com\/jirayu_JP\/status\/663721782684352512\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":30020,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/180x320\/MSm8JxR5WTAWX6QL.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/360x640\/tJpkeagD1fKNsM6W.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/pl\/XUXpPdWAmFnysDOj.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/360x640\/tJpkeagD1fKNsM6W.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/pl\/XUXpPdWAmFnysDOj.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/720x1280\/HOAi2vjMgbVP0er4.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JamesJirayu1stShowcaseJP","indices":[41,66]}],"urls":[],"user_mentions":[{"screen_name":"jirayu_JP","name":"\u30b8\u30a7\u30fc\u30e0\u30b9\u30fb\u30b8\u30e9\u30e6JP","id":3687224833,"id_str":"3687224833","indices":[3,13]}],"symbols":[],"media":[{"id":663721570418823168,"id_str":"663721570418823168","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","url":"https:\/\/t.co\/AdaxsHQl4h","display_url":"pic.twitter.com\/AdaxsHQl4h","expanded_url":"http:\/\/twitter.com\/jirayu_JP\/status\/663721782684352512\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663721782684352512,"source_status_id_str":"663721782684352512","source_user_id":3687224833,"source_user_id_str":"3687224833"}]},"extended_entities":{"media":[{"id":663721570418823168,"id_str":"663721570418823168","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721570418823168\/pu\/img\/TwV8YVpqorEQBREf.jpg","url":"https:\/\/t.co\/AdaxsHQl4h","display_url":"pic.twitter.com\/AdaxsHQl4h","expanded_url":"http:\/\/twitter.com\/jirayu_JP\/status\/663721782684352512\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663721782684352512,"source_status_id_str":"663721782684352512","source_user_id":3687224833,"source_user_id_str":"3687224833","video_info":{"aspect_ratio":[9,16],"duration_millis":30020,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/180x320\/MSm8JxR5WTAWX6QL.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/360x640\/tJpkeagD1fKNsM6W.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/pl\/XUXpPdWAmFnysDOj.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/360x640\/tJpkeagD1fKNsM6W.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/pl\/XUXpPdWAmFnysDOj.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721570418823168\/pu\/vid\/720x1280\/HOAi2vjMgbVP0er4.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921706635264,"id_str":"663727921706635264","text":"\u3082\u30fc\u5927\u597d\u304d\u3002 https:\/\/t.co\/p0eIMRWywO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4110239654,"id_str":"4110239654","name":"\u3048\u308a\u3061@YouTuber\u57a2","screen_name":"erichyoutuber","location":"\u9759\u5ca1","url":null,"description":"18\u306e\u4ee3 \u5973\u306e\u5b50\u3067\u3059\u3049w\u672c\u547d\u2192@saguwa_com YouTube\u304c\u306a\u3044\u3068\u751f\u304d\u3066\u884c\u3051\u307e\u305b\u3093\u3002\u306f\u3058\u3081\u3057\u3083\u3061\u3087\u30fc MAHOTO imiga \u30b5\u30b0\u30ef \u3086\u3046\u3053\u3093 \u305f\u3044\u307d\u3093 \u3082\u308b\u3055\u3093 \u30bf\u30b1\u30e4\u30ad\u7fd4 \u307e\u3044\u3081\u3093\u30c1\u30e3\u30f3\u30cd\u30eb \u30a2\u30d0\u30f3\u30c6\u30a3\u30fc\u30ba \u6771\u6d77\u30aa\u30f3\u30a8\u30a2 \u76f8\u99ac\u30c8\u30e9\u30f3\u30b8\u30b9\u30bf \u3078\u30ad\u30db\u30fc \u8ca1\u90e8\u4eae\u6cbb \u30ea\u30a2\u57a2\u2192@d216akutsu","protected":false,"verified":false,"followers_count":89,"friends_count":135,"listed_count":0,"favourites_count":71,"statuses_count":174,"created_at":"Tue Nov 03 06:55:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725590973800448\/FFsA6drP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725590973800448\/FFsA6drP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4110239654\/1447079858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727911698980864,"id_str":"663727911698980864","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBORUYAAFi-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBORUYAAFi-y.jpg","url":"https:\/\/t.co\/p0eIMRWywO","display_url":"pic.twitter.com\/p0eIMRWywO","expanded_url":"http:\/\/twitter.com\/erichyoutuber\/status\/663727921706635264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"},"large":{"w":750,"h":431,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727911698980864,"id_str":"663727911698980864","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBORUYAAFi-y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBORUYAAFi-y.jpg","url":"https:\/\/t.co\/p0eIMRWywO","display_url":"pic.twitter.com\/p0eIMRWywO","expanded_url":"http:\/\/twitter.com\/erichyoutuber\/status\/663727921706635264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"},"large":{"w":750,"h":431,"resize":"fit"}}},{"id":663727911711576064,"id_str":"663727911711576064","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBOUUkAAqOrg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBOUUkAAqOrg.jpg","url":"https:\/\/t.co\/p0eIMRWywO","display_url":"pic.twitter.com\/p0eIMRWywO","expanded_url":"http:\/\/twitter.com\/erichyoutuber\/status\/663727921706635264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":199,"resize":"fit"},"medium":{"w":600,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":439,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042660"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921715105792,"id_str":"663727921715105792","text":"Kai-Lin's face in the net #DTG_NetFace https:\/\/t.co\/ZZFELJFado","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4136742081,"id_str":"4136742081","name":"DrexelTinyGames","screen_name":"DrexelTinyGames","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":4,"created_at":"Sat Nov 07 20:47:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663095867855867904\/y1cCJH7m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663095867855867904\/y1cCJH7m_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DTG_NetFace","indices":[26,38]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727921169719297,"id_str":"663727921169719297","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBxjUYAELAEC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBxjUYAELAEC.jpg","url":"https:\/\/t.co\/ZZFELJFado","display_url":"pic.twitter.com\/ZZFELJFado","expanded_url":"http:\/\/twitter.com\/DrexelTinyGames\/status\/663727921715105792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727921169719297,"id_str":"663727921169719297","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBxjUYAELAEC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBxjUYAELAEC.jpg","url":"https:\/\/t.co\/ZZFELJFado","display_url":"pic.twitter.com\/ZZFELJFado","expanded_url":"http:\/\/twitter.com\/DrexelTinyGames\/status\/663727921715105792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042662"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731801090,"id_str":"663727921731801090","text":"DT https:\/\/t.co\/yNVIqM6ymv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2521618536,"id_str":"2521618536","name":"398","screen_name":"ur__398","location":null,"url":null,"description":"\u30d1\u30ba\u30c9\u30e9\u3001\u30de\u30a4\u30af\u30e9\u3001\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3001\u30c9\u30e9\u30dd\u3001\u767d\u732b\u3001\u30e1\u30eb\u30b9\u30c8\u3001\u904a\u622f\u738b\u3084\u3063\u3066\u307e\u3059 \u3088\u308d\u3057\u304f\u304a\u306d\u304c\u3044\u3057\u307e\u3041\u3059\u2514(\u055e\u0629\u06bc\u25d4)\u300d","protected":false,"verified":false,"followers_count":172,"friends_count":412,"listed_count":3,"favourites_count":2658,"statuses_count":9473,"created_at":"Sun May 25 00:01:28 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661732593834979331\/1W0qjsiB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661732593834979331\/1W0qjsiB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2521618536\/1433816526","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727908498747394,"id_str":"663727908498747394","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBCWUsAI-iuf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBCWUsAI-iuf.jpg","url":"https:\/\/t.co\/yNVIqM6ymv","display_url":"pic.twitter.com\/yNVIqM6ymv","expanded_url":"http:\/\/twitter.com\/ur__398\/status\/663727921731801090\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727908498747394,"id_str":"663727908498747394","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBCWUsAI-iuf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBCWUsAI-iuf.jpg","url":"https:\/\/t.co\/yNVIqM6ymv","display_url":"pic.twitter.com\/yNVIqM6ymv","expanded_url":"http:\/\/twitter.com\/ur__398\/status\/663727921731801090\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080042666"} +{"delete":{"status":{"id":576517641893969921,"id_str":"576517641893969921","user_id":563987940,"user_id_str":"563987940"},"timestamp_ms":"1447080043027"}} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921710759937,"id_str":"663727921710759937","text":"\u30c7\u30e4\u30ac\u30c3\u30bf\u2026 https:\/\/t.co\/XLltbBOcxQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4100243473,"id_str":"4100243473","name":"\u864e","screen_name":"game_shiro","location":"\u30b3\u30ea\u30f3\u306e\u96a3","url":null,"description":"\u30b2\u30fc\u30e0\u30fb\u30a2\u30cb\u30e1\u5927\u597d\u304d\u3067\u3059\uff01\u767d\u732b\u3001\u30d1\u30ba\u30c9\u30e9\u3001\u30e2\u30f3\u30b9\u30c8\u3084\u3063\u3066\u307e\u3059\u203c\ufe0e\u767d\u732b\u4ee5\u5916\u306f\u306e\u3093\u3073\u308a\u3067\u3059\uff08\uff3e\u03c9\uff3e\uff09\u30b3\u30ea\u30f3\u5927\u597d\u304d\u3067\u3059\u2661 \u767d\u732b(\u30e9\u30f3\u30af138\u3001\u5341\u6bb5)\u30d5\u30a9\u30ed\u30fc\u306f\u6c17\u306b\u306a\u3063\u305f\u65b9\u3055\u305b\u3066\u3082\u3089\u3044\u307e\u3059\u266a\u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u306a\uff08\u2267\u2207\u2266\uff09\u30a2\u30a4\u30b3\u30f3\u306f\u3053\u3081\u3053\u3055\u3093(@t0mshoge)\u3088\u308a\u9802\u304d\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":229,"friends_count":234,"listed_count":10,"favourites_count":450,"statuses_count":1384,"created_at":"Mon Nov 02 09:06:51 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663619670897922048\/WGfPBzeh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663619670897922048\/WGfPBzeh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4100243473\/1447078642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727910239367168,"id_str":"663727910239367168","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBI1UcAA6Tv6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBI1UcAA6Tv6.jpg","url":"https:\/\/t.co\/XLltbBOcxQ","display_url":"pic.twitter.com\/XLltbBOcxQ","expanded_url":"http:\/\/twitter.com\/game_shiro\/status\/663727921710759937\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727910239367168,"id_str":"663727910239367168","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBI1UcAA6Tv6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBI1UcAA6Tv6.jpg","url":"https:\/\/t.co\/XLltbBOcxQ","display_url":"pic.twitter.com\/XLltbBOcxQ","expanded_url":"http:\/\/twitter.com\/game_shiro\/status\/663727921710759937\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080042661"} +{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921731936256,"id_str":"663727921731936256","text":"I'm not even gn snitch though. He went about it too savagely for me to circum to bitch ass snitchery. \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222328980,"id_str":"3222328980","name":"Lexx.","screen_name":"idriveAlexis_","location":null,"url":null,"description":"Pray with me, Grind with me, Vibe with me.","protected":false,"verified":false,"followers_count":125,"friends_count":171,"listed_count":0,"favourites_count":510,"statuses_count":1318,"created_at":"Thu May 21 14:55:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661778336394272773\/G0JxTMbZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661778336394272773\/G0JxTMbZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222328980\/1446615225","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080042666"} +{"delete":{"status":{"id":663726814427136000,"id_str":"663726814427136000","user_id":3021477167,"user_id_str":"3021477167"},"timestamp_ms":"1447080043154"}} +{"delete":{"status":{"id":663717951850156032,"id_str":"663717951850156032","user_id":2386920667,"user_id_str":"2386920667"},"timestamp_ms":"1447080043180"}} +{"delete":{"status":{"id":469673611100307456,"id_str":"469673611100307456","user_id":173437781,"user_id_str":"173437781"},"timestamp_ms":"1447080043374"}} +{"delete":{"status":{"id":663723702245265408,"id_str":"663723702245265408","user_id":2575057058,"user_id_str":"2575057058"},"timestamp_ms":"1447080043439"}} +{"delete":{"status":{"id":663696791594921984,"id_str":"663696791594921984","user_id":4176080113,"user_id_str":"4176080113"},"timestamp_ms":"1447080043512"}} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925922021377,"id_str":"663727925922021377","text":"RT @ClassicPixs: Tim Curry takes a break while filming 'The Rocky Horror Picture Show', 1974 https:\/\/t.co\/hgrOjz1K24","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290501685,"id_str":"3290501685","name":"Alice Crepory","screen_name":"alicecrepory","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":75,"friends_count":138,"listed_count":0,"favourites_count":92,"statuses_count":199,"created_at":"Tue May 19 22:08:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602589743193296896\/aDAKuWui.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602589743193296896\/aDAKuWui.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643917999456522240\/iyJ_9ak8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643917999456522240\/iyJ_9ak8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290501685\/1432074703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:14 +0000 2015","id":663719749453484032,"id_str":"663719749453484032","text":"Tim Curry takes a break while filming 'The Rocky Horror Picture Show', 1974 https:\/\/t.co\/hgrOjz1K24","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1407123690,"id_str":"1407123690","name":"Classic Pics","screen_name":"ClassicPixs","location":null,"url":"http:\/\/www.facebook.com\/ClassicPics","description":"Share old, special and impressive images in history","protected":false,"verified":false,"followers_count":161217,"friends_count":15,"listed_count":1323,"favourites_count":0,"statuses_count":62834,"created_at":"Mon May 06 08:12:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3621213506\/c9f4006dfc01b933f29494b829ce9e19_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3621213506\/c9f4006dfc01b933f29494b829ce9e19_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":531056562862030848,"id_str":"531056562862030848","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","url":"https:\/\/t.co\/hgrOjz1K24","display_url":"pic.twitter.com\/hgrOjz1K24","expanded_url":"http:\/\/twitter.com\/HistoryInPics\/status\/531056563432456192\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":912,"resize":"fit"}},"source_status_id":531056563432456192,"source_status_id_str":"531056563432456192","source_user_id":1582853809,"source_user_id_str":"1582853809"}]},"extended_entities":{"media":[{"id":531056562862030848,"id_str":"531056562862030848","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","url":"https:\/\/t.co\/hgrOjz1K24","display_url":"pic.twitter.com\/hgrOjz1K24","expanded_url":"http:\/\/twitter.com\/HistoryInPics\/status\/531056563432456192\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":912,"resize":"fit"}},"source_status_id":531056563432456192,"source_status_id_str":"531056563432456192","source_user_id":1582853809,"source_user_id_str":"1582853809"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ClassicPixs","name":"Classic Pics","id":1407123690,"id_str":"1407123690","indices":[3,15]}],"symbols":[],"media":[{"id":531056562862030848,"id_str":"531056562862030848","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","url":"https:\/\/t.co\/hgrOjz1K24","display_url":"pic.twitter.com\/hgrOjz1K24","expanded_url":"http:\/\/twitter.com\/HistoryInPics\/status\/531056563432456192\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":912,"resize":"fit"}},"source_status_id":531056563432456192,"source_status_id_str":"531056563432456192","source_user_id":1582853809,"source_user_id_str":"1582853809"}]},"extended_entities":{"media":[{"id":531056562862030848,"id_str":"531056562862030848","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B16xIVkIAAA5Sc5.jpg","url":"https:\/\/t.co\/hgrOjz1K24","display_url":"pic.twitter.com\/hgrOjz1K24","expanded_url":"http:\/\/twitter.com\/HistoryInPics\/status\/531056563432456192\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":912,"resize":"fit"}},"source_status_id":531056563432456192,"source_status_id_str":"531056563432456192","source_user_id":1582853809,"source_user_id_str":"1582853809"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043665"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925892616193,"id_str":"663727925892616193","text":"Despierta Joc\u00e1ntarooooooo tu siervo te llaaamaaaaa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":542820742,"id_str":"542820742","name":"\u300e\u30ec\u30a4\u30bc\u300f","screen_name":"Fushioka","location":"Madrid, Espa\u00f1a \u2661","url":"http:\/\/ask.fm\/ReyceEngarde","description":"18 \u2642 | Ra\u00fal | \u2661 Mystery \u2661 | When [they] cry there are no survivors | Filolog\u00eda japonesa | @Cxrpseparty me hace bullying | Love inquisitor | \u2020Pelirrojas\u2020 |","protected":false,"verified":false,"followers_count":373,"friends_count":283,"listed_count":9,"favourites_count":5618,"statuses_count":56355,"created_at":"Sun Apr 01 20:15:12 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604006504090464256\/NrFYtFnh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604006504090464256\/NrFYtFnh.jpg","profile_background_tile":true,"profile_link_color":"9C0202","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661845481916661760\/LazUc-i8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661845481916661760\/LazUc-i8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542820742\/1431901992","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080043658"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925922037760,"id_str":"663727925922037760","text":"RT @kamalgomaa553: \u0634\u0643\u0644 - \u0647\u062f\u0647\u0648\u062f - \u0627\u0644\u0642\u0645\u0631 -\u0644\u0645\u0627 - \u064a\u062e\u0631\u062c - \u0645\u0646 - \u062d\u062c\u0631\u0629\n\u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a - \u0628\u0639\u062f\u0645\u0627 -\u0623\u062c\u0631\u0649 - \u0639\u0645\u0644\u064a\u0629 - \u062c\u0631\u0627\u062d\u064a\u0629 - \u0646\u0627\u062f\u0631\u0629\n\u0646\u0627\u062c\u062d\u0629 \/ \u0639\u0633\u0644 - \u064a\u0627 - \u0647\u062f\u0649 : htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3581445862,"id_str":"3581445862","name":"Kamal Gomaa 3","screen_name":"kimoelageeb1227","location":null,"url":null,"description":"\u0648\u0643\u064a\u0644 \u0648\u0632\u0627\u0631\u0629 \u0627\u0644\u0645\u0627\u0644\u064a\u0629 \u0627\u0644\u0645\u0635\u0631\u064a\u0629 - \u0648\u0627\u0644\u0645\u062d\u0627\u0645\u0649 - \u0648\u0627\u0644\u0645\u0633\u062a\u0634\u0627\u0631 \u0627\u0644\u0642\u0627\u0646\u0648\u0646\u0649 \u0648\u0627\u0644\u062c\u0645\u0631\u0643\u0649 - \u062d\u0627\u0641\u0638 \u0644\u0644\u0642\u0631\u0622\u0646 \u0627\u0644\u0643\u0631\u064a\u0645 \u0643\u0627\u0645\ufefb - \u0631\u0623\u0649 \u0627\u0644\u0631\u0633\u0648\u0644 \u0648\u0635\u0644\u0649 \u0648\u0631\u0627\u0621\u0647","protected":false,"verified":false,"followers_count":3087,"friends_count":3400,"listed_count":1,"favourites_count":2870,"statuses_count":7208,"created_at":"Mon Sep 07 22:39:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719161664061441\/J_eC-4x5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719161664061441\/J_eC-4x5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3581445862\/1446337374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 06 14:31:33 +0000 2015","id":640532793353719808,"id_str":"640532793353719808","text":"\u0634\u0643\u0644 - \u0647\u062f\u0647\u0648\u062f - \u0627\u0644\u0642\u0645\u0631 -\u0644\u0645\u0627 - \u064a\u062e\u0631\u062c - \u0645\u0646 - \u062d\u062c\u0631\u0629\n\u0627\u0644\u0639\u0645\u0644\u064a\u0627\u062a - \u0628\u0639\u062f\u0645\u0627 -\u0623\u062c\u0631\u0649 - \u0639\u0645\u0644\u064a\u0629 - \u062c\u0631\u0627\u062d\u064a\u0629 - \u0646\u0627\u062f\u0631\u0629\n\u0646\u0627\u062c\u062d\u0629 \/ \u0639\u0633\u0644 - \u064a\u0627 - \u0647\u062f\u0649 : http:\/\/t.co\/iko1H4DKil","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3331358307,"id_str":"3331358307","name":"Kamal Gomaa 2","screen_name":"kamalgomaa553","location":null,"url":null,"description":"\u0648\u0643\u064a\u0644 \u0648\u0632\u0627\u0631\u0629 \u0627\u0644\u0645\u0627\u0644\u064a\u0629 \u0627\u0644\u0645\u0635\u0631\u064a\u0629 .. \u0648\u0627\u0644\u0645\u062d\u0627\u0645\u0649 \u0648\u0627\u0644\u0645\u0633\u062a\u0634\u0627\u0631 \u0627\u0644\u0642\u0627\u0646\u0648\u0646\u0649 \u0648\u0627\u0644\u062c\u0645\u0631\u0643\u0649 .. \u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0642\u0627\u0646\u0648\u0646 .. \u062d\u0627\u0641\u0638 \u0644\u0644\u0642\u0631\u0622\u0646 \u0627\u0644\u0643\u0631\u064a\u0645 \u0643\u0627\u0645\ufefb .. \u0631\u0623\u0649 \u0627\u0644\u0631\u0633\u0648\u0644 \u0648\u0635\u0644\u0649 \u0648\u0631\u0627\u0621\u0647 \u0628\u0645\u0633\u062c\u062f\u0647","protected":false,"verified":false,"followers_count":3609,"friends_count":4119,"listed_count":1,"favourites_count":1455,"statuses_count":8047,"created_at":"Wed Jun 17 15:07:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638389832398598144\/8H71iIpb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638389832398598144\/8H71iIpb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3331358307\/1434561182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":640532789671165952,"id_str":"640532789671165952","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","url":"http:\/\/t.co\/iko1H4DKil","display_url":"pic.twitter.com\/iko1H4DKil","expanded_url":"http:\/\/twitter.com\/kamalgomaa553\/status\/640532793353719808\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":640532789671165952,"id_str":"640532789671165952","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","url":"http:\/\/t.co\/iko1H4DKil","display_url":"pic.twitter.com\/iko1H4DKil","expanded_url":"http:\/\/twitter.com\/kamalgomaa553\/status\/640532793353719808\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kamalgomaa553","name":"Kamal Gomaa 2","id":3331358307,"id_str":"3331358307","indices":[3,17]}],"symbols":[],"media":[{"id":640532789671165952,"id_str":"640532789671165952","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","url":"http:\/\/t.co\/iko1H4DKil","display_url":"pic.twitter.com\/iko1H4DKil","expanded_url":"http:\/\/twitter.com\/kamalgomaa553\/status\/640532793353719808\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":640532793353719808,"source_status_id_str":"640532793353719808","source_user_id":3331358307,"source_user_id_str":"3331358307"}]},"extended_entities":{"media":[{"id":640532789671165952,"id_str":"640532789671165952","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COOhLbNXAAA3b15.jpg","url":"http:\/\/t.co\/iko1H4DKil","display_url":"pic.twitter.com\/iko1H4DKil","expanded_url":"http:\/\/twitter.com\/kamalgomaa553\/status\/640532793353719808\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":640532793353719808,"source_status_id_str":"640532793353719808","source_user_id":3331358307,"source_user_id_str":"3331358307"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080043665"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917818880,"id_str":"663727925917818880","text":"RT @nytimes: 1 dead, 2 wounded in shooting near Penn Station in Manhattan this morning https:\/\/t.co\/XQCCl85FCj","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123622498,"id_str":"123622498","name":":: Nico McLane ::","screen_name":"NicoMcLane","location":"New York City","url":"http:\/\/NicoMcLane.com","description":":: GirlGeek :: I follow & write #NewMedia & the #Universe :: #Engineer stuff :: Make #Video :: What do you do?","protected":false,"verified":false,"followers_count":1728,"friends_count":959,"listed_count":45,"favourites_count":278,"statuses_count":17467,"created_at":"Tue Mar 16 17:51:56 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623917693176008705\/gHyv5H5j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623917693176008705\/gHyv5H5j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123622498\/1443205337","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727015435063296,"id_str":"663727015435063296","text":"1 dead, 2 wounded in shooting near Penn Station in Manhattan this morning https:\/\/t.co\/XQCCl85FCj","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":807095,"id_str":"807095","name":"The New York Times","screen_name":"nytimes","location":"New York City","url":"http:\/\/www.nytimes.com\/","description":"Where the conversation begins. Follow for breaking news, special reports, RTs of our journalists and more from http:\/\/NYTimes.com","protected":false,"verified":true,"followers_count":21092294,"friends_count":986,"listed_count":168460,"favourites_count":8101,"statuses_count":206172,"created_at":"Fri Mar 02 20:41:42 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/736339684\/948f072cc2da4e3a5e9f2ebfb3b1a0e7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/736339684\/948f072cc2da4e3a5e9f2ebfb3b1a0e7.png","profile_background_tile":true,"profile_link_color":"607696","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2044921128\/finals_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2044921128\/finals_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/807095\/1355346050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":21,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XQCCl85FCj","expanded_url":"http:\/\/nyti.ms\/1NZj49X","display_url":"nyti.ms\/1NZj49X","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XQCCl85FCj","expanded_url":"http:\/\/nyti.ms\/1NZj49X","display_url":"nyti.ms\/1NZj49X","indices":[87,110]}],"user_mentions":[{"screen_name":"nytimes","name":"The New York Times","id":807095,"id_str":"807095","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925913612288,"id_str":"663727925913612288","text":"RT @NvNDemirbasoglu: #Dayanamad\u0131\u011f\u0131mTek\u015eey Trafik","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416292896,"id_str":"416292896","name":"M@tr@X TT","screen_name":"MatraxMuratTT","location":"\u0130stanbul, T\u00fcrkiye","url":null,"description":"M@tr@X Official Twitter Account Ana Hesap : @matraxbirio0 EVL\u0130 . DM KES\u0130NL\u0130KLE YOK..!","protected":false,"verified":false,"followers_count":46133,"friends_count":24942,"listed_count":7,"favourites_count":18226,"statuses_count":15996,"created_at":"Sat Nov 19 13:50:33 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558730256249417730\/BRQsINUN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558730256249417730\/BRQsINUN.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646362322743726081\/3RtpFf2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646362322743726081\/3RtpFf2K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416292896\/1442845504","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:33 +0000 2015","id":663725867986780160,"id_str":"663725867986780160","text":"#Dayanamad\u0131\u011f\u0131mTek\u015eey Trafik","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3435143747,"id_str":"3435143747","name":"Nevin Demirba\u015fo\u011flu","screen_name":"NvNDemirbasoglu","location":"Tekirda\u011f, T\u00fcrkiye","url":null,"description":"\u2606\u2661\u2606 BE\u015e\u0130KTA\u015e \u2606\u2661\u2606 Bu d\u00fcnyada g\u00fclmek istiyorsan ya kaderin g\u00fczel olacak ya da kafan.. ikisi de olmuyorsa beni takip edicen o zaman ;)","protected":false,"verified":false,"followers_count":909,"friends_count":867,"listed_count":3,"favourites_count":954,"statuses_count":2446,"created_at":"Sat Aug 22 06:34:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662155373248401408\/-t5068cr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662155373248401408\/-t5068cr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3435143747\/1446359976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Dayanamad\u0131\u011f\u0131mTek\u015eey","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dayanamad\u0131\u011f\u0131mTek\u015eey","indices":[21,41]}],"urls":[],"user_mentions":[{"screen_name":"NvNDemirbasoglu","name":"Nevin Demirba\u015fo\u011flu","id":3435143747,"id_str":"3435143747","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080043663"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925888458752,"id_str":"663727925888458752","text":"RT @iiiiiraz: \ud83d\udc94\ud83d\udc94\ud83d\udc94 https:\/\/t.co\/vfUvJVNwk5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1624560043,"id_str":"1624560043","name":"\u0643\u0648\u0633\u0631","screen_name":"Cxkiip","location":"cindy ","url":null,"description":"\u0644\u0645\u0627 \u064a\u0635\u064a\u0631 \u062d\u0633\u0627\u0628\u064a \u062d\u0633\u0627\u0628\u0643 \u062a\u0639\u0627\u0644\u064a \u0643\u0644\u0645\u064a\u0646\u064a","protected":false,"verified":false,"followers_count":751,"friends_count":168,"listed_count":0,"favourites_count":694,"statuses_count":32022,"created_at":"Sat Jul 27 04:09:41 +0000 2013","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663058258572255232\/IHFVtZYZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663058258572255232\/IHFVtZYZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1624560043\/1445544436","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727776575434752,"id_str":"663727776575434752","text":"\ud83d\udc94\ud83d\udc94\ud83d\udc94 https:\/\/t.co\/vfUvJVNwk5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3989937179,"id_str":"3989937179","name":"\u0631\u0632\u0627\u0646 \u0627\u0644\u0634\u0647\u0631\u064a","screen_name":"iiiiiraz","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u0645\u0627\u0645\u0646\u064a \u0641\u0627\u064a\u062f\u0647 \u062f\u0648\u0631 \u0644\u063a\u064a\u0631\u064a","protected":false,"verified":false,"followers_count":124,"friends_count":414,"listed_count":0,"favourites_count":56,"statuses_count":1345,"created_at":"Sun Oct 18 21:54:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662496497322340352\/2xJQfmwW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662496497322340352\/2xJQfmwW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3989937179\/1446786446","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727158519603202,"quoted_status_id_str":"663727158519603202","quoted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727158519603202,"id_str":"663727158519603202","text":"\u062a\u0635\u062a\u064a\u0646\u0646\u0633\u0645\u0633\u0646\u0633\u0645\u0633\u0646\u0633\u0645\u064a\u0648\u0633\u0646\u0633\u0649\u0633\u0645\u0649\u0633\u0648\u0633\u0645\u0633\u0649\u0633\u0645\u0633\u0645\u0633\u0645\u0633\u0643\u0643\u0633\u0645\u064a\u0645\u0633\u0645\u0633\u0645\u0633\u0646\u0633\u062a\u0633\u0646\u0633\u0633\u062a\u0633\u0645\u0645\u0633\u0645 https:\/\/t.co\/LA83bP2JiY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1624560043,"id_str":"1624560043","name":"\u0643\u0648\u0633\u0631","screen_name":"Cxkiip","location":"cindy ","url":null,"description":"\u0644\u0645\u0627 \u064a\u0635\u064a\u0631 \u062d\u0633\u0627\u0628\u064a \u062d\u0633\u0627\u0628\u0643 \u062a\u0639\u0627\u0644\u064a \u0643\u0644\u0645\u064a\u0646\u064a","protected":false,"verified":false,"followers_count":751,"friends_count":168,"listed_count":0,"favourites_count":694,"statuses_count":32021,"created_at":"Sat Jul 27 04:09:41 +0000 2013","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663058258572255232\/IHFVtZYZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663058258572255232\/IHFVtZYZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1624560043\/1445544436","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727149166272512,"id_str":"663727149166272512","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIU1nWoAAZkkl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIU1nWoAAZkkl.jpg","url":"https:\/\/t.co\/LA83bP2JiY","display_url":"pic.twitter.com\/LA83bP2JiY","expanded_url":"http:\/\/twitter.com\/Cxkiip\/status\/663727158519603202\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727149166272512,"id_str":"663727149166272512","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIU1nWoAAZkkl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIU1nWoAAZkkl.jpg","url":"https:\/\/t.co\/LA83bP2JiY","display_url":"pic.twitter.com\/LA83bP2JiY","expanded_url":"http:\/\/twitter.com\/Cxkiip\/status\/663727158519603202\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vfUvJVNwk5","expanded_url":"https:\/\/twitter.com\/Cxkiip\/status\/663727158519603202","display_url":"twitter.com\/Cxkiip\/status\/\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vfUvJVNwk5","expanded_url":"https:\/\/twitter.com\/Cxkiip\/status\/663727158519603202","display_url":"twitter.com\/Cxkiip\/status\/\u2026","indices":[18,41]}],"user_mentions":[{"screen_name":"iiiiiraz","name":"\u0631\u0632\u0627\u0646 \u0627\u0644\u0634\u0647\u0631\u064a","id":3989937179,"id_str":"3989937179","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080043657"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917843456,"id_str":"663727925917843456","text":"\u0647\u0630\u0627 \u0637\u0644\u0639 \u0631\u0648\u062d\u064a \u0644\u0645\u0627 \u0628\u064a\u0627 \u062e\u0627\u0646!!!!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949794467,"id_str":"2949794467","name":"\u0653","screen_name":"Mariamalra_","location":"\u0633\u062a\u0647 \u0648\u0639\u0634\u0631\u064a\u0646.","url":null,"description":"\u0627\u0644\u062c\u0646\u0647 \u0644\u0640 \u0641\u0642\u064a\u062f\u064a \u064a\u0627\u0644\u0644\u0647..","protected":false,"verified":false,"followers_count":663,"friends_count":78,"listed_count":0,"favourites_count":682,"statuses_count":9171,"created_at":"Mon Dec 29 09:38:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663461118627749892\/IPSXDaXC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663461118627749892\/IPSXDaXC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949794467\/1446678328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925909286912,"id_str":"663727925909286912","text":"\u0411\u0420\u042f\u041d\u0421\u041a\u0418\u0425 \u0422\u0423\u0420\u0418\u0421\u0422\u041e\u0412 \u0418 \u0418\u0425 \u0411\u0410\u0413\u0410\u0416 \u0412\u042b\u0412\u0415\u0417\u0423\u0422 \u0418\u0417 \u0415\u0413\u0418\u041f\u0422\u0410","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1599917348,"id_str":"1599917348","name":"\u0420\u0430\u0434\u0438\u043c \u0420\u043e\u0434\u0438\u043e\u043d\u043e\u0432","screen_name":"LindaBeaumarcha","location":"\u0420\u043e\u0441\u0441\u0438\u044f","url":null,"description":null,"protected":false,"verified":false,"followers_count":54,"friends_count":43,"listed_count":0,"favourites_count":0,"statuses_count":20419,"created_at":"Wed Jul 17 03:22:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000028529409\/a017d4428196a83dd38113b8ceb9703c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000028529409\/a017d4428196a83dd38113b8ceb9703c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000159905680\/d4259717a2e7f155cd101adbbac4579c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000159905680\/d4259717a2e7f155cd101adbbac4579c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1599917348\/1374304227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080043662"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925888311297,"id_str":"663727925888311297","text":"RT @meshino_zzz: \u30a8\u30a4\u30c8\u30d5\u30c3\u30c8\u3055\u3093\u8abf\u7406\u3057\u305f\u3044 https:\/\/t.co\/kzlN9Om7XW","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211113451,"id_str":"211113451","name":"20\u500b\u3082\u3042\u308b\uff3c\u3086\u307e\u306b\uff0f","screen_name":"Umanimani","location":"\u3068\u30fc\u304d\u304a\u30fc\u3010\u30a2\u30f3\u30c0\u30fc\u30b6\u30b7\u30fc\u3011","url":null,"description":"[\u8150\u3063\u305f\u871c\u67d120\u2191]\u3082\u306e\u3059\u3054\u304f\u81ea\u7531\u306b\u4f55\u3082\u8003\u3048\u305a\u597d\u304d\u306b\u3084\u3063\u3066\u307e\u3059\u25ceTDR\u6d77\u6642\u3005\u9678\u25ce\u30b8\u30d6\u30ea.\u9032\u6483.\u8840\u754c.jojo\u30b9\u30bf\u30af\u30eb\u82b1\u4eac\u9662\u5178\u660e\u6700\u9ad8\u25ce\u3064\u308b\u3044\u3061.\u732e\u4e0a\u7d44.\u7c9f\u7530\u53e3\u25ce\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\u2026","protected":false,"verified":false,"followers_count":89,"friends_count":90,"listed_count":6,"favourites_count":408,"statuses_count":26317,"created_at":"Tue Nov 02 10:51:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662234785549410304\/PlBG9cDn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662234785549410304\/PlBG9cDn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211113451\/1446733354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:20:01 +0000 2015","id":663707617445806080,"id_str":"663707617445806080","text":"\u30a8\u30a4\u30c8\u30d5\u30c3\u30c8\u3055\u3093\u8abf\u7406\u3057\u305f\u3044 https:\/\/t.co\/kzlN9Om7XW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950962709,"id_str":"2950962709","name":"\u98ef\u91ce","screen_name":"meshino_zzz","location":null,"url":null,"description":"\u98ef\u91ce(\u3081\u3057\u306e)\/\u6210\u4eba\u6e08\/\u8150\u5973\u5b50\/\u30a2\u30e1\u30b3\u30df\u52c9\u5f37\u4e2d\/\u305f\u307e\u306b\u7d75\u3092\u63cf\u304d\u307e\u3059\u3002DP\u53d7\u304c\u597d\u304d\u3067\u3059\u3002\u30c7\u30c3\u30d7\u30fc\u30bf\u30b9\u30ad\u30fc\u30c9\u30de\u30e0\u69d8\/\u6700\u8fd1MMfr\u306e\u30b9\u30ea\u30c3\u30c8\u3068\u304b\u624b\u4e0b\u306e\u30bf\u30b3\u3082\u304b\u308f\u3044\u3044\u3002\u307f\u3093\u306a\u304b\u308f\u3044\u3044","protected":false,"verified":false,"followers_count":967,"friends_count":58,"listed_count":26,"favourites_count":565,"statuses_count":190,"created_at":"Mon Dec 29 21:17:52 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556153784313729024\/5SX9G_Dl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556153784313729024\/5SX9G_Dl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950962709\/1446480250","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":187,"favorite_count":531,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663707611930361856,"id_str":"663707611930361856","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":916,"h":1262,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":826,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707611930361856,"id_str":"663707611930361856","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":916,"h":1262,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":826,"resize":"fit"}}},{"id":663707615495499777,"id_str":"663707615495499777","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2j1BUsAEcZBd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2j1BUsAEcZBd.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":942,"resize":"fit"},"small":{"w":340,"h":534,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meshino_zzz","name":"\u98ef\u91ce","id":2950962709,"id_str":"2950962709","indices":[3,15]}],"symbols":[],"media":[{"id":663707611930361856,"id_str":"663707611930361856","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":916,"h":1262,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":826,"resize":"fit"}},"source_status_id":663707617445806080,"source_status_id_str":"663707617445806080","source_user_id":2950962709,"source_user_id_str":"2950962709"}]},"extended_entities":{"media":[{"id":663707611930361856,"id_str":"663707611930361856","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2jnvVAAAIM4Y.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":916,"h":1262,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":826,"resize":"fit"}},"source_status_id":663707617445806080,"source_status_id_str":"663707617445806080","source_user_id":2950962709,"source_user_id_str":"2950962709"},{"id":663707615495499777,"id_str":"663707615495499777","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2j1BUsAEcZBd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2j1BUsAEcZBd.png","url":"https:\/\/t.co\/kzlN9Om7XW","display_url":"pic.twitter.com\/kzlN9Om7XW","expanded_url":"http:\/\/twitter.com\/meshino_zzz\/status\/663707617445806080\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":942,"resize":"fit"},"small":{"w":340,"h":534,"resize":"fit"}},"source_status_id":663707617445806080,"source_status_id_str":"663707617445806080","source_user_id":2950962709,"source_user_id_str":"2950962709"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043657"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917650944,"id_str":"663727925917650944","text":"I want sweater dresses \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98459868,"id_str":"98459868","name":"Juanita","screen_name":"JuanitaS_","location":null,"url":null,"description":"America's favorite Colombian, and Colombia's favorite American.","protected":false,"verified":false,"followers_count":420,"friends_count":426,"listed_count":2,"favourites_count":7016,"statuses_count":19055,"created_at":"Mon Dec 21 20:06:58 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/831323689\/63b7d0304be279027e4a359b7cede474.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/831323689\/63b7d0304be279027e4a359b7cede474.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661776418120990720\/Z_I0rwBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661776418120990720\/Z_I0rwBI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98459868\/1446614767","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896851457,"id_str":"663727925896851457","text":"\u064a\u0624\u062f\u0628\u0646\u0627 \u0627\u0644\u0644\u0647 \u0628\u0627\u0644\u0639\u062b\u0631\u0629\u060c \u062d\u062a\u0649 \u0646\u062a\u0630\u0643\u0631 \u062d\u0627\u062c\u062a\u0646\u0627 \u0625\u0644\u064a\u0647. \u064a\u0624\u062f\u0628\u0646\u0627 \u0627\u0644\u0644\u0647 \u0628\u0627\u0644\u0639\u064f\u0632\u0644\u0647\u060c \u062d\u062a\u0649 \u064a\u0639\u064a\u062f\u0646\u0627 \u0625\u0644\u064a\u0647. \u062d\u064a\u0646 \u0646\u0643\u0648\u0646 \u0645\u0646 \u0627\u0644\u0644\u0647 \u0623\u0642\u0631\u0628 \u064a\u0643\u0648\u0646 \u0643\u0644 \u0634\u064a\u0621 \u062c\u0645\u064a\u0644\u0627.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547159713,"id_str":"547159713","name":"njahnasser","screen_name":"njahnasser","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2703,"friends_count":2641,"listed_count":6,"favourites_count":43,"statuses_count":63963,"created_at":"Fri Apr 06 20:12:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461215099202854912\/guekNDMj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461215099202854912\/guekNDMj_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896740864,"id_str":"663727925896740864","text":"\uff12\n\u57a2\u58f2\u308a\u307e\u3059Andloid\u7248\n\u4e3b\u8981\u30e1\u30f3\u30d0\u30fc\u7d9a\u304d\n\u30b0\u30ec\u30a4\u30b9\u30f4\u30a1\u30eb\u30ad\u30ea\u30fc\u3001\u30e1\u30bf\u30c8\u30ed\u30f3\u3001\u30d8\u30e9*2\u3001\u30b5\u30bf\u30f3\u3001\u30da\u30eb\u30bb\u30dd\u30cd\u3001\u30f4\u30a1\u30f3\u30d1\u30a4\u30a2\u30ed\u30fc\u30c9\u3001\u30a2\u30cc\u30d3\u30b9\u3001\u30a8\u30f3\u30b7\u30a7\u30f3\u30c8\u30c9\u30e9\u30b4\u30f3\u30ca\u30a4\u30c8\u3001CDN\u3001\u30ea\u30ea\u30b9\u3001\u8679\u30af\u30ea\u3002\n\u9032\u5316\u7d20\u6750\u591a\u6570\u3002\u3000#\u30d1\u30ba\u30c9\u30e9\u3000\u7d9a\u304d\u3042\u308a\u307e\u3059\u306e\u3067TL\u78ba\u8a8d\u304a\u9858\u3044\u3057\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2315728736,"id_str":"2315728736","name":"\u30d1\u30ba\u30c9\u30e9\u57a2\u58f2\u308a\u307e\u3059","screen_name":"akauri_senyou","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":181,"friends_count":217,"listed_count":0,"favourites_count":0,"statuses_count":5869,"created_at":"Tue Jan 28 16:12:35 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d1\u30ba\u30c9\u30e9","indices":[107,112]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926039552,"id_str":"663727925926039552","text":"RT @summons_board: \u300c\u30c8\u30a6\u30e4\u300d\u304c\u304d\u305f\u3068\u3044\u3046\u3053\u3068\u306f\uff65\uff65\uff65\n\u300c\u30df\u30ce\u30ea\u300d\u3082\u767b\u5834\uff01\n#\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9 #\u30b5\u30e2\u30f3\u30ba_\u30ed\u30b0\u30db\u30e9\u30a4\u30d9\u30f3\u30c8RTCP\n\n\u25bcTwitter\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306e\u8a73\u7d30\u306f\u3053\u3061\u3089\nhttps:\/\/t.co\/UfgVMBAqWg https:\/\/t.co\/pa2W\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014022140,"id_str":"3014022140","name":"\u3073\u3063\u304f\u308a@\u30a2\u30c8\u30ea\u30a8+","screen_name":"ssamonzu","location":null,"url":null,"description":"\u672c\u57a2@g94th\u3000\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9\u5c02\u7528\u57a2\u3067\u3059\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":140,"friends_count":132,"listed_count":0,"favourites_count":56,"statuses_count":654,"created_at":"Mon Feb 09 05:39:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564668415088943104\/MW1-hMYw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564668415088943104\/MW1-hMYw_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 03:07:06 +0000 2015","id":662828596675809280,"id_str":"662828596675809280","text":"\u300c\u30c8\u30a6\u30e4\u300d\u304c\u304d\u305f\u3068\u3044\u3046\u3053\u3068\u306f\uff65\uff65\uff65\n\u300c\u30df\u30ce\u30ea\u300d\u3082\u767b\u5834\uff01\n#\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9 #\u30b5\u30e2\u30f3\u30ba_\u30ed\u30b0\u30db\u30e9\u30a4\u30d9\u30f3\u30c8RTCP\n\n\u25bcTwitter\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306e\u8a73\u7d30\u306f\u3053\u3061\u3089\nhttps:\/\/t.co\/UfgVMBAqWg https:\/\/t.co\/pa2WH3KJGt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320100720,"id_str":"2320100720","name":"\u5e2b\u7bc4\u4ee3\uff20\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9\u516c\u5f0f\u5e83\u5831","screen_name":"summons_board","location":null,"url":"http:\/\/sb.gungho.jp\/","description":"\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9\u306e\u5e2b\u7bc4\u3092\u76ee\u6307\u3057\u3066\u307e\u3063\u305f\u308a\u4fee\u884c\u4e2d\u3002\u7686\u3055\u3093\u3068\u4e00\u7dd2\u306b\u304c\u3093\u3070\u308a\u307e\u3059\uff01\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9\u666e\u53ca\u306e\u305f\u3081\u3001\u5e2b\u7bc4\u4ee3\u3068\u3057\u3066\u5e83\u5831\u6d3b\u52d5\u306b\u3082\u529b\u3092\u5165\u308c\u3066\u3044\u307e\u3059\u3002\u6700\u65b0\u60c5\u5831\u306f\u3053\u3053\u3067\u30c1\u30a7\u30c3\u30af\uff01\u304a\u554f\u3044\u5408\u308f\u305b\u21d2http:\/\/sb.gungho.jp\/member\/faq\/ \n \u904b\u55b6\u30b5\u30a4\u30c8\u21d2http:\/\/sb.gungho.jp\/member\/","protected":false,"verified":false,"followers_count":53701,"friends_count":15,"listed_count":486,"favourites_count":1,"statuses_count":4944,"created_at":"Fri Jan 31 02:35:45 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432591333811707904\/uleErwVg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432591333811707904\/uleErwVg.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590513631290208256\/XaG_5Myc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590513631290208256\/XaG_5Myc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320100720\/1425866193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":985,"favorite_count":66,"entities":{"hashtags":[{"text":"\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9","indices":[28,36]},{"text":"\u30b5\u30e2\u30f3\u30ba_\u30ed\u30b0\u30db\u30e9\u30a4\u30d9\u30f3\u30c8RTCP","indices":[37,55]}],"urls":[{"url":"https:\/\/t.co\/UfgVMBAqWg","expanded_url":"http:\/\/sb.gungho.jp\/member\/collabo\/loghorizon\/retweet-campaign.html","display_url":"sb.gungho.jp\/member\/collabo\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":662710433187536897,"id_str":"662710433187536897","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","url":"https:\/\/t.co\/pa2WH3KJGt","display_url":"pic.twitter.com\/pa2WH3KJGt","expanded_url":"http:\/\/twitter.com\/summons_board\/status\/662828596675809280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":434,"resize":"fit"},"large":{"w":1000,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":246,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662710433187536897,"id_str":"662710433187536897","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","url":"https:\/\/t.co\/pa2WH3KJGt","display_url":"pic.twitter.com\/pa2WH3KJGt","expanded_url":"http:\/\/twitter.com\/summons_board\/status\/662828596675809280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":434,"resize":"fit"},"large":{"w":1000,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":246,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9","indices":[47,55]},{"text":"\u30b5\u30e2\u30f3\u30ba_\u30ed\u30b0\u30db\u30e9\u30a4\u30d9\u30f3\u30c8RTCP","indices":[56,74]}],"urls":[{"url":"https:\/\/t.co\/UfgVMBAqWg","expanded_url":"http:\/\/sb.gungho.jp\/member\/collabo\/loghorizon\/retweet-campaign.html","display_url":"sb.gungho.jp\/member\/collabo\u2026","indices":[98,121]}],"user_mentions":[{"screen_name":"summons_board","name":"\u5e2b\u7bc4\u4ee3\uff20\u30b5\u30e2\u30f3\u30ba\u30dc\u30fc\u30c9\u516c\u5f0f\u5e83\u5831","id":2320100720,"id_str":"2320100720","indices":[3,17]}],"symbols":[],"media":[{"id":662710433187536897,"id_str":"662710433187536897","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","url":"https:\/\/t.co\/pa2WH3KJGt","display_url":"pic.twitter.com\/pa2WH3KJGt","expanded_url":"http:\/\/twitter.com\/summons_board\/status\/662828596675809280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":434,"resize":"fit"},"large":{"w":1000,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":246,"resize":"fit"}},"source_status_id":662828596675809280,"source_status_id_str":"662828596675809280","source_user_id":2320100720,"source_user_id_str":"2320100720"}]},"extended_entities":{"media":[{"id":662710433187536897,"id_str":"662710433187536897","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJroLcWoAEPGix.png","url":"https:\/\/t.co\/pa2WH3KJGt","display_url":"pic.twitter.com\/pa2WH3KJGt","expanded_url":"http:\/\/twitter.com\/summons_board\/status\/662828596675809280\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":434,"resize":"fit"},"large":{"w":1000,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":246,"resize":"fit"}},"source_status_id":662828596675809280,"source_status_id_str":"662828596675809280","source_user_id":2320100720,"source_user_id_str":"2320100720"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896704000,"id_str":"663727925896704000","text":"Semuanya manisnya dirasakan adalah ketika suatu saat kata ,atau ide yang kita bisa rasakan dalam hati'apa yang... https:\/\/t.co\/AWUcdK39Rq","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230965754,"id_str":"3230965754","name":"mapia bois","screen_name":"mapiabois","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":43,"friends_count":243,"listed_count":0,"favourites_count":0,"statuses_count":459,"created_at":"Sat May 30 18:39:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604743058660298752\/ov7ObXP0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604743058660298752\/ov7ObXP0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230965754\/1433016853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AWUcdK39Rq","expanded_url":"http:\/\/fb.me\/2wbIIgIkf","display_url":"fb.me\/2wbIIgIkf","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917712384,"id_str":"663727925917712384","text":"\u3010H24-15-4\u3011\u4e0d\u4f5c\u70ba\u306b\u3064\u3044\u3066\u7570\u8b70\u7533\u7acb\u3066\u304c\u306a\u3055\u308c\u305f\u5834\u5408\u3001\u4e0d\u4f5c\u70ba\u5e81\u306f\u3001\u5f53\u8a72\u7570\u8b70\u7533\u7acb\u3066\u304c\u4e0d\u9069\u6cd5\u3067\u306a\u3044\u9650\u308a\u3001\u4e0d\u4f5c\u70ba\u306e\u9055\u6cd5\u3092\u78ba\u8a8d\u3059\u308b\u6c7a\u5b9a\u3092\u884c\u3046\u304b\u3001\u7570\u8b70\u7533\u7acb\u3066\u3092\u68c4\u5374\u3059\u308b\u6c7a\u5b9a\u3092\u884c\u3046\u3002 \u2192\u8aa4\u3002\u7533\u8acb\u306b\u5bfe\u3059\u308b\u306a\u3093\u3089\u304b\u306e\u884c\u70ba\u3092\u3059\u308b\u304b\u3001\u53c8\u306f\u66f8\u9762\u3067\u4e0d\u4f5c\u70ba\u306e\u7406\u7531\u3092\u793a\u3055\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1886570281,"id_str":"1886570281","name":"\u884c\u653f\u6cd5\u904e\u53bb\u554f","screen_name":"gyosei_goukaku","location":null,"url":null,"description":"\u884c\u653f\u66f8\u58eb\u306e\u672c\u8a66\u9a13\u554f\u984c\u306e\u904e\u53bb\u554f\uff08\u884c\u653f\u6cd5\u5206\u91ce\uff09\u3092\u30e9\u30f3\u30c0\u30e0\u306b\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u554f\u984c\u306f\u968f\u6642\u8ffd\u52a0\u4e2d\u3067\u3059\u3002\u57fa\u672c\u7684\u306b\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3002\u203b140\u5b57\u5236\u9650\u306e\u90fd\u5408\u4e0a\u3001\u8868\u73fe\u306f\u4e00\u90e8\u5909\u3048\u3066\u3042\u308a\u307e\u3059\u3002\u89e3\u8aac\u3082\u6587\u5b57\u6570\u304c\u53ef\u80fd\u3067\u3042\u308c\u3070\u306a\u308b\u3079\u304f\u2026\u3002","protected":false,"verified":false,"followers_count":1690,"friends_count":1966,"listed_count":11,"favourites_count":0,"statuses_count":29901,"created_at":"Fri Sep 20 13:24:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000487791870\/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000487791870\/0e45e3c089c6b641cdd8d1b6f1ceb8a4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896880132,"id_str":"663727925896880132","text":"@mesademujerescr @delurens @Jeannettellaja con todo gusto, la violencia es inaceptable en todas sus formas cc. @CarmenOmonte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727466591186944,"in_reply_to_status_id_str":"663727466591186944","in_reply_to_user_id":3817541488,"in_reply_to_user_id_str":"3817541488","in_reply_to_screen_name":"mesademujerescr","user":{"id":3402508997,"id_str":"3402508997","name":"Rolando Tasaico","screen_name":"tasaicorolando","location":null,"url":null,"description":"Ing. Industrial","protected":false,"verified":false,"followers_count":92,"friends_count":264,"listed_count":0,"favourites_count":557,"statuses_count":642,"created_at":"Tue Aug 04 10:19:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633286719140446208\/ZBYqAuBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633286719140446208\/ZBYqAuBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3402508997\/1444627152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mesademujerescr","name":"Mesa de Mujeres CR","id":3817541488,"id_str":"3817541488","indices":[0,16]},{"screen_name":"delurens","name":"Lucho Luna\u00ae","id":74204488,"id_str":"74204488","indices":[17,26]},{"screen_name":"Jeannettellaja","name":"Jeannette Llaja","id":139583521,"id_str":"139583521","indices":[27,42]},{"screen_name":"CarmenOmonte","name":"Carmen Omonte","id":340419304,"id_str":"340419304","indices":[111,124]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925905068032,"id_str":"663727925905068032","text":"\u7121\u7406\u3060\u3042\u3042\u3042\u3042\u3042\u3042","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2806645638,"id_str":"2806645638","name":"\u3055\u306e\u6b21\u90ce \u3010\u30c9\uff2d\u3011\u3010\u30b8\u30f3\u30c8\u30cb\u30c3\u30af\u3011","screen_name":"akizakurasion","location":"\u4eca\u6708\u306f\u512a\u3057\u3055\u306b\u3064\u3044\u3066\u60a9\u3093\u3067\u3044\u307e\u3059","url":"http:\/\/hibari.nana-music.com\/w\/profile\/683802\/","description":"\u30ea\u30d7\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3002\u30ea\u30d7\u306a\u3044\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u306e\u3067\u3054\u4e86\u627f\u4e0b\u3055\u3044","protected":false,"verified":false,"followers_count":50,"friends_count":53,"listed_count":4,"favourites_count":402,"statuses_count":4508,"created_at":"Sat Sep 13 03:43:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657698884546727937\/cUYQZJ8f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657698884546727937\/cUYQZJ8f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2806645638\/1444864988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043661"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925892526081,"id_str":"663727925892526081","text":"Sexy Zone\u30fb\u30de\u30ea\u30a6\u30b9\u8449\u306f\u30ea\u30a2\u30eb\u738b\u5b50\uff1f\uff01\u300c\u6559\u4f1a\u306e\u9418\u3067\u8d77\u304d\u308b\u300d\u8c6a\u90b8\u66ae\u3089\u3057\u306e\u5b9f\u614b\u3068\u306f\uff1f\uff01 https:\/\/t.co\/inbv2ZIjG2","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3978144854,"id_str":"3978144854","name":"*\u2605*Hey!Say!JUMP*\u2605*","screen_name":"Iv601Y","location":null,"url":null,"description":"Hey!Say!JUMP\u30d5\u30a1\u30f3\u306b\u306a\u3063\u30663\u5e74\u3067\u3059(^_\u2212)\u2212\u2606 \u3061\u306a\u307f\u306b\u6771\u4eac\u306e\u5973\u5b50\u5927\u306b\u901a\u3063\u3066\u307e\u3059\u2764 \u300e\u6709\u8a00\u5b9f\u884c\u300f\u3092\u30e2\u30c3\u30c8\u30fc\u306b\u751f\u304d\u3066\u307e\u3059\u266a\uff11\u65e5\uff11\u65e5happy\u306b\u904e\u3054\u3055\u306a\u304d\u3083\u30e2\u30c3\u30bf\u30a4\u30ca\u30a4\uff01(*\uff9f\u25bd\uff9f*)","protected":false,"verified":false,"followers_count":105,"friends_count":165,"listed_count":0,"favourites_count":0,"statuses_count":1367,"created_at":"Thu Oct 22 08:16:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657498673866149888\/blyH0rCo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657498673866149888\/blyH0rCo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3978144854\/1445594882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/inbv2ZIjG2","expanded_url":"http:\/\/jonny004entamez.seesaa.net","display_url":"jonny004entamez.seesaa.net","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043658"} +{"delete":{"status":{"id":663724171990573057,"id_str":"663724171990573057","user_id":75421947,"user_id_str":"75421947"},"timestamp_ms":"1447080043763"}} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925909430272,"id_str":"663727925909430272","text":"D\u00e9couvrez la photo du jour. Discover the photo of the day. #cdc #changedecopine #sexy #teen #girl #woman #porn #hot\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1013689638,"id_str":"1013689638","name":"changedecopine","screen_name":"changedecopine","location":null,"url":"http:\/\/www.changedecopine.fr\/","description":"http:\/\/t.co\/f6Nv53rccG - Le site que vous n'oublierez jamais !!! The site you will not forget ! TOUS LES MATINS 10h, une nouvelle photo, une nouvelle fille..","protected":false,"verified":false,"followers_count":301,"friends_count":743,"listed_count":40,"favourites_count":10,"statuses_count":474072,"created_at":"Sat Dec 15 18:20:24 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2979385730\/022e2ead5cd774294f2a0bf834eaba99_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2979385730\/022e2ead5cd774294f2a0bf834eaba99_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1013689638\/1398363471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cdc","indices":[59,63]},{"text":"changedecopine","indices":[64,79]},{"text":"sexy","indices":[80,85]},{"text":"teen","indices":[86,91]},{"text":"girl","indices":[92,97]},{"text":"woman","indices":[98,104]},{"text":"porn","indices":[105,110]},{"text":"hot","indices":[111,115]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080043662"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925909303296,"id_str":"663727925909303296","text":"@hit_noah_06 \u3053\u3061\u3089\u3053\u305d\u30fc\uff01(*\u00b4\u03c9\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725230796357633,"in_reply_to_status_id_str":"663725230796357633","in_reply_to_user_id":3181931479,"in_reply_to_user_id_str":"3181931479","in_reply_to_screen_name":"hit_noah_06","user":{"id":3063953540,"id_str":"3063953540","name":"\u30af\u30e9\u30c3\u30c1\u30a7\uff08\u30cf\u30a6\u30b9\u98df\u54c1\u526f\u793e\u9577\uff09","screen_name":"mangetunoyakus1","location":"\u65e5\u672c \u5c71\u53e3\u770c","url":null,"description":"5\/20Twitter\u958b\u59cb\uff01 \u30de\u30a4\u30d6\u30fc\u30e0\u306f \u30ea\u30c8\u30eb\u30ce\u30a2\uff01\u6240\u5c5e\u30ae\u30eb\u30c9\u300c\u643a\u5e2f\u306e\u96fb\u6ce2\u304c\u5c4a\u304f\u5834\u6240\u300d\u30ae\u30eb\u30c9\u6226\u9811\u5f35\u308a\u307e\u3059\uff01\uff3c(^o^)\uff0f \u5e73\u621027\u5e747\u67085\u65e5\u30ea\u30c8\u30eb\u30ce\u30a2\u5c71\u306e\u9802\u304d\u3078\u5230\u9054\u3057\u307e\u3057\u305f 8\u670830\u65e5\u518d\u767b\u9802ID914422 #\u30ea\u30c8\u30eb\u30ce\u30a2 \u30d8\u30c3\u30c0\u30fc\u306e\u7d75\u306f\u30a2\u30ca\u3055\u3093\u304c\u66f8\u3044\u3066\u304f\u308c\u307e\u3057\u305f\uff01\u611f\u8b1d\u30ab\u30f3\u30b2\u30ad\u96e8\u5d50\uff01\u3053\u306e\u30b8\u30f3\u30af\u30b9\u3092\u306a\u304f\u3057\u3066\u3044\u304d\u305f\u3044\uff01","protected":false,"verified":false,"followers_count":302,"friends_count":249,"listed_count":16,"favourites_count":5082,"statuses_count":23754,"created_at":"Fri Mar 06 03:49:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660710608824733697\/fLpu90UF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660710608824733697\/fLpu90UF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3063953540\/1437373297","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hit_noah_06","name":"hitomi","id":3181931479,"id_str":"3181931479","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043662"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925901045760,"id_str":"663727925901045760","text":"@Savchenko_Maks \u0442\u044e \u0434\u0430\u043a \u0430 \u0448\u043e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720310349422593,"in_reply_to_status_id_str":"663720310349422593","in_reply_to_user_id":810567811,"in_reply_to_user_id_str":"810567811","in_reply_to_screen_name":"Savchenko_Maks","user":{"id":2557552446,"id_str":"2557552446","name":"Anna Tymoshenko","screen_name":"an_ankaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":77,"friends_count":65,"listed_count":0,"favourites_count":1073,"statuses_count":812,"created_at":"Mon Jun 09 21:31:50 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"uk","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607281828286873600\/rAePFIJm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607281828286873600\/rAePFIJm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2557552446\/1402349704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Savchenko_Maks","name":"MaksAlexSavchenko","id":810567811,"id_str":"810567811","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080043660"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925888311296,"id_str":"663727925888311296","text":"Em MS, gestantes recebem cuidados especiais no per\u00edodo pr\u00e9-parto: Projeto come\u00e7ou h\u00e1 um m\u00eas no hospital Univer... https:\/\/t.co\/vpILjRVclu","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1542053611,"id_str":"1542053611","name":"#ANTi","screen_name":"HigherNavy","location":"Brasil","url":"http:\/\/page.is\/r8","description":null,"protected":false,"verified":false,"followers_count":1452,"friends_count":670,"listed_count":86,"favourites_count":18217,"statuses_count":652532,"created_at":"Sun Jun 23 23:09:36 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519950534187302913\/_hX4_m1L.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519950534187302913\/_hX4_m1L.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652117444912353284\/KPpltqMp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652117444912353284\/KPpltqMp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1542053611\/1443478280","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vpILjRVclu","expanded_url":"http:\/\/glo.bo\/1NEylyF","display_url":"glo.bo\/1NEylyF","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"pt","timestamp_ms":"1447080043657"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917696000,"id_str":"663727925917696000","text":"\u30af\u30fc\u30dd\u30f3\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u3002 https:\/\/t.co\/a8FYZC2KoK (11\/09 23:40)","source":"\u003ca href=\"http:\/\/www.hotpepper.jp\" rel=\"nofollow\"\u003eHotpepper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923764865,"id_str":"2923764865","name":"GARUM","screen_name":"Garum5587","location":"\u3012150-0021 \u6771\u4eac\u90fd\u6e0b\u8c37\u533a\u6075\u6bd4\u5bff\u897f2-10-3","url":"http:\/\/gstyle.ne.jp\/garum","description":"\u301c\u90fd\u4f1a\u306e\u306a\u304b\u306b \u6d77\u3092\u4f5c\u308a\u307e\u3057\u305f\u301c","protected":false,"verified":false,"followers_count":32,"friends_count":54,"listed_count":2,"favourites_count":6,"statuses_count":466,"created_at":"Tue Dec 09 11:12:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542276519666532353\/o0yiJPNc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542276519666532353\/o0yiJPNc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923764865\/1418521040","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a8FYZC2KoK","expanded_url":"http:\/\/www.hotpepper.jp\/strJ001110873\/map\/?vos=nhpp03","display_url":"hotpepper.jp\/strJ001110873\/\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926232065,"id_str":"663727925926232065","text":"RT @MejoresTwits: Yo: mam\u00e1 me dejas 5\u20ac?\nMam\u00e1: qu\u00e9 paso con los 5\u20ac que te di en 2007??","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2918437875,"id_str":"2918437875","name":"Ainhoa :3","screen_name":"A_M_V_168","location":null,"url":null,"description":"Nothing to say","protected":false,"verified":false,"followers_count":74,"friends_count":312,"listed_count":3,"favourites_count":6830,"statuses_count":6829,"created_at":"Fri Dec 12 21:24:15 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606227143794806784\/7K-MqiOU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606227143794806784\/7K-MqiOU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918437875\/1433370868","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:00:23 +0000 2015","id":662947702343385088,"id_str":"662947702343385088","text":"Yo: mam\u00e1 me dejas 5\u20ac?\nMam\u00e1: qu\u00e9 paso con los 5\u20ac que te di en 2007??","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582907105,"id_str":"582907105","name":"Lo Mejor de Twitland","screen_name":"MejoresTwits","location":null,"url":"http:\/\/instagram.com\/Mejorestwits_Twitter","description":"Los mejores tweets, \u00a1Est\u00e1n aqu\u00ed!\nInstagram: http:\/\/instagram.com\/Mejorestwits_Twitter\nContacto: mejorestwits@gmail.com","protected":false,"verified":false,"followers_count":1233868,"friends_count":2509,"listed_count":2007,"favourites_count":1639,"statuses_count":25574,"created_at":"Thu May 17 16:04:59 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2785525487\/05bbb42ec207e0140bd20fb0470cf76f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2785525487\/05bbb42ec207e0140bd20fb0470cf76f_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":393,"favorite_count":385,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MejoresTwits","name":"Lo Mejor de Twitland","id":582907105,"id_str":"582907105","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917822976,"id_str":"663727925917822976","text":"RT @FunnyPicsDepot: this vine will never get old https:\/\/t.co\/oShHnGPaOu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544814345,"id_str":"544814345","name":"Future is TRASH!","screen_name":"GhostLikeSwayz_","location":"Tampa\u2708Queens","url":"https:\/\/itun.es\/us\/LWreW","description":"R&B &Hip Head Aficionado |#L4L #TeamUR MIGUEL, #TB | DEDICATED, HARD-WORKING, OPTIMISTIC Mac User and iPhone user |Lightskin | Future Sailor| Drake | Nas | Cole","protected":false,"verified":false,"followers_count":971,"friends_count":922,"listed_count":16,"favourites_count":409,"statuses_count":1915,"created_at":"Wed Apr 04 03:48:53 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116000437\/614c90c6b7ff5b01aab4902d57737cb7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116000437\/614c90c6b7ff5b01aab4902d57737cb7.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659513850165874689\/9bejvaDo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659513850165874689\/9bejvaDo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544814345\/1446994944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:35 +0000 2015","id":663710273690329088,"id_str":"663710273690329088","text":"this vine will never get old https:\/\/t.co\/oShHnGPaOu","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524657792,"id_str":"524657792","name":"FunnyPicsDepot","screen_name":"FunnyPicsDepot","location":"GLOBAL ","url":"http:\/\/funnypicsdepot.com","description":"Twitter's #1 for funny pictures! Laughing burns calories, follow me for an intense workout! We do not own any of the content posted! contactfunnypicsd@gmail.com","protected":false,"verified":false,"followers_count":1233824,"friends_count":309376,"listed_count":2312,"favourites_count":1941,"statuses_count":23136,"created_at":"Wed Mar 14 19:33:58 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"050000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524657792\/1444265471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1163,"favorite_count":1716,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oShHnGPaOu","expanded_url":"http:\/\/vine.co\/v\/hE9jXMtzWb6","display_url":"vine.co\/v\/hE9jXMtzWb6","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oShHnGPaOu","expanded_url":"http:\/\/vine.co\/v\/hE9jXMtzWb6","display_url":"vine.co\/v\/hE9jXMtzWb6","indices":[49,72]}],"user_mentions":[{"screen_name":"FunnyPicsDepot","name":"FunnyPicsDepot","id":524657792,"id_str":"524657792","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926084608,"id_str":"663727925926084608","text":"RT @Tg_s_oO: \u624b\u8d8a\u304f\u3093\u306e\u56de\u7b54\u53ef\u611b\u3044 https:\/\/t.co\/8QmSWsHhIx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3841271592,"id_str":"3841271592","name":"\u30b5\u30e9\u30f3\u3061\u3083\u3093\u3002","screen_name":"nomchoaheyo_","location":".\u00b0\u029a \u624b\u8d8a\u7950\u4e5f \u025e\u00b0.\u3000","url":null,"description":"\u00b4\u03c9`)\uff89\uc548\ub155\ud558\uc138\uc694\u2661","protected":false,"verified":false,"followers_count":238,"friends_count":214,"listed_count":1,"favourites_count":1055,"statuses_count":2634,"created_at":"Fri Oct 09 23:25:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685727138385920\/EVEVkki0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685727138385920\/EVEVkki0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3841271592\/1446347416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:12:51 +0000 2015","id":663690712358109184,"id_str":"663690712358109184","text":"\u624b\u8d8a\u304f\u3093\u306e\u56de\u7b54\u53ef\u611b\u3044 https:\/\/t.co\/8QmSWsHhIx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3232782979,"id_str":"3232782979","name":"\u307e\u3086\u3061\u3087\u3059","screen_name":"Tg_s_oO","location":"\u3066\u3054\u3057\u3086\u3046\u3084 \u3068 \u307e\u3059\u3060\u3055\u3089","url":null,"description":"\u029a*\u2445\ufe0e\u0b68\u0b67\u2508\ufe0e\u2508\ufe0e #\u624b\u8d8a\u7950\u4e5f . \u52d5\u753b\u3068\u753b\u50cf . Lv 17 \u2508\ufe0e\u2508\ufe0e\u0b68\u0b67\u2445\ufe0e*\u025e \u4e00\u8a00\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059 \u3002\u6c17\u8efd\u306b\u30ea\u30d7\u3069\u3046\u305e \u271e","protected":false,"verified":false,"followers_count":357,"friends_count":309,"listed_count":10,"favourites_count":425,"statuses_count":1470,"created_at":"Mon Jun 01 16:18:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663690888497905665\/2JBGXMjQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663690888497905665\/2JBGXMjQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232782979\/1445656162","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":64,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690632993443840,"id_str":"663690632993443840","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","url":"https:\/\/t.co\/8QmSWsHhIx","display_url":"pic.twitter.com\/8QmSWsHhIx","expanded_url":"http:\/\/twitter.com\/Tg_s_oO\/status\/663690712358109184\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690632993443840,"id_str":"663690632993443840","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","url":"https:\/\/t.co\/8QmSWsHhIx","display_url":"pic.twitter.com\/8QmSWsHhIx","expanded_url":"http:\/\/twitter.com\/Tg_s_oO\/status\/663690712358109184\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":14405,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/320x180\/sZTPodwj-hDh1_rp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/pl\/EWoukFPikD_pdx62.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/640x360\/0XgilzlpcIGbLUHk.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/1280x720\/lZeDGYh9ocWH5ca6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/640x360\/0XgilzlpcIGbLUHk.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/pl\/EWoukFPikD_pdx62.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tg_s_oO","name":"\u307e\u3086\u3061\u3087\u3059","id":3232782979,"id_str":"3232782979","indices":[3,11]}],"symbols":[],"media":[{"id":663690632993443840,"id_str":"663690632993443840","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","url":"https:\/\/t.co\/8QmSWsHhIx","display_url":"pic.twitter.com\/8QmSWsHhIx","expanded_url":"http:\/\/twitter.com\/Tg_s_oO\/status\/663690712358109184\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663690712358109184,"source_status_id_str":"663690712358109184","source_user_id":3232782979,"source_user_id_str":"3232782979"}]},"extended_entities":{"media":[{"id":663690632993443840,"id_str":"663690632993443840","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663690632993443840\/pu\/img\/FpKp5rzPNZTE90xk.jpg","url":"https:\/\/t.co\/8QmSWsHhIx","display_url":"pic.twitter.com\/8QmSWsHhIx","expanded_url":"http:\/\/twitter.com\/Tg_s_oO\/status\/663690712358109184\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663690712358109184,"source_status_id_str":"663690712358109184","source_user_id":3232782979,"source_user_id_str":"3232782979","video_info":{"aspect_ratio":[16,9],"duration_millis":14405,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/320x180\/sZTPodwj-hDh1_rp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/pl\/EWoukFPikD_pdx62.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/640x360\/0XgilzlpcIGbLUHk.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/1280x720\/lZeDGYh9ocWH5ca6.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/vid\/640x360\/0XgilzlpcIGbLUHk.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663690632993443840\/pu\/pl\/EWoukFPikD_pdx62.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926080513,"id_str":"663727925926080513","text":"Why would I?","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164674228,"id_str":"164674228","name":"vanengtonji","screen_name":"vnssbrb","location":"Mnl, Ph. ","url":"http:\/\/www.vnssbrb.com","description":"Snapchat: vnssbrb","protected":false,"verified":false,"followers_count":405,"friends_count":216,"listed_count":1,"favourites_count":14929,"statuses_count":33424,"created_at":"Fri Jul 09 13:19:32 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456147221960867840\/zCVdhAYs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456147221960867840\/zCVdhAYs.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ACCEC2","profile_text_color":"BEAE8F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371738877550592\/wrnxmf7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371738877550592\/wrnxmf7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164674228\/1446884727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925909446656,"id_str":"663727925909446656","text":"https:\/\/t.co\/VkpLb52Lei","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714482244,"id_str":"714482244","name":"ANSIA","screen_name":"ANSIA__","location":"dentro di te","url":null,"description":"Non ti va di seguire migliaia di pagine per essere informato e disinformato allo stesso tempo?\nBene sei nella pagina giusta, quella che ti dar\u00e0 l'ANSIA di decid","protected":false,"verified":false,"followers_count":345,"friends_count":838,"listed_count":5,"favourites_count":7,"statuses_count":1925,"created_at":"Tue Jul 24 15:42:07 +0000 2012","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569577268066807808\/kO3hzgNW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569577268066807808\/kO3hzgNW_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VkpLb52Lei","expanded_url":"http:\/\/fb.me\/7CeBqAKYY","display_url":"fb.me\/7CeBqAKYY","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080043662"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925892542464,"id_str":"663727925892542464","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245977203,"id_str":"3245977203","name":"Hune Gallacher","screen_name":"laxenelesez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":0,"listed_count":15,"favourites_count":15974,"statuses_count":17463,"created_at":"Mon May 11 08:22:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641606668220940288\/QxhptGoF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641606668220940288\/QxhptGoF_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":37,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043658"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896675328,"id_str":"663727925896675328","text":"guildwars2 PC mobile phone carrying shells High Grade First-class iphone6 iphone 6 https:\/\/t.co\/3avUFWX5I3","source":"\u003ca href=\"http:\/\/service.rss2twi.com\/\" rel=\"nofollow\"\u003erss2twi.com\u306e\u30c4\u30a4\u30fc\u30c8\u5206\u6790\u30c4\u30fc\u30eb4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319902423,"id_str":"3319902423","name":"GuildWars2","screen_name":"GuildWars2_us","location":null,"url":null,"description":"GuildWars2 topics from reddit","protected":false,"verified":false,"followers_count":14,"friends_count":0,"listed_count":0,"favourites_count":894,"statuses_count":41170,"created_at":"Fri Jun 12 00:20:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609154388880273408\/Ci3SC6hV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609154388880273408\/Ci3SC6hV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3avUFWX5I3","expanded_url":"http:\/\/service.rss2twi.com\/af?id=11378","display_url":"service.rss2twi.com\/af?id=11378","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925913481216,"id_str":"663727925913481216","text":"\u624b\u304c\u6c5a\u308c\u306a\u3044\u307f\u304b\u3093\u306e\u5265\u304d\u65b9 https:\/\/t.co\/Kbi9M2w3f6","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2243420366,"id_str":"2243420366","name":"\u30b9\u30c6\u30ad\u30c7\u30b6\u30a4\u30f3","screen_name":"_suteki_design_","location":null,"url":null,"description":"\u30cd\u30c3\u30c8\u3067\u898b\u3064\u3051\u305f\u30b9\u30c6\u30ad\u306a\u753b\u50cf\u3092\u96c6\u3081\u307e\u3057\u305f\uff01","protected":false,"verified":false,"followers_count":260,"friends_count":81,"listed_count":10,"favourites_count":0,"statuses_count":15376,"created_at":"Fri Dec 13 05:51:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000865536427\/SzwzuYpB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000865536427\/SzwzuYpB_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":417330934111670272,"id_str":"417330934111670272","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/BcqoRgGCEAAP_vz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BcqoRgGCEAAP_vz.jpg","url":"https:\/\/t.co\/Kbi9M2w3f6","display_url":"pic.twitter.com\/Kbi9M2w3f6","expanded_url":"http:\/\/twitter.com\/_suteki_design_\/status\/417330934107475969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":620,"h":580,"resize":"fit"}},"source_status_id":417330934107475969,"source_status_id_str":"417330934107475969","source_user_id":2243420366,"source_user_id_str":"2243420366"}]},"extended_entities":{"media":[{"id":417330934111670272,"id_str":"417330934111670272","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/BcqoRgGCEAAP_vz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BcqoRgGCEAAP_vz.jpg","url":"https:\/\/t.co\/Kbi9M2w3f6","display_url":"pic.twitter.com\/Kbi9M2w3f6","expanded_url":"http:\/\/twitter.com\/_suteki_design_\/status\/417330934107475969\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":561,"resize":"fit"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":620,"h":580,"resize":"fit"}},"source_status_id":417330934107475969,"source_status_id_str":"417330934107475969","source_user_id":2243420366,"source_user_id_str":"2243420366"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043663"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926105089,"id_str":"663727925926105089","text":"@sepakberjoget lebih baik ingat kat i drp ayda jebat. sejuk hati tgk mak tam hahahaha","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662531534964965376,"in_reply_to_status_id_str":"662531534964965376","in_reply_to_user_id":115863185,"in_reply_to_user_id_str":"115863185","in_reply_to_screen_name":"sepakberjoget","user":{"id":1504507399,"id_str":"1504507399","name":"ekinggg","screen_name":"ashikin_nasir","location":null,"url":null,"description":"Kabul-Tehran-Istanbul-Athens-Rome-Paris-London","protected":false,"verified":false,"followers_count":168,"friends_count":216,"listed_count":0,"favourites_count":8053,"statuses_count":5998,"created_at":"Tue Jun 11 16:01:58 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572622488840830976\/PDkkvVBx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572622488840830976\/PDkkvVBx.jpeg","profile_background_tile":true,"profile_link_color":"E678D5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647056290544353280\/m75_YtQ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647056290544353280\/m75_YtQ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1504507399\/1431338036","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sepakberjoget","name":"N.S.J","id":115863185,"id_str":"115863185","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926170624,"id_str":"663727925926170624","text":"RT @Monica5D: \"Louis is the father\"\n\n\"Louis is not the father\"\n\n#OhNoBriana https:\/\/t.co\/XVDSMGcmvd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2888731493,"id_str":"2888731493","name":"name","screen_name":"glo_sabrinaa","location":"Louisville, KY","url":null,"description":"denisse rodriguez is bfffff; @Real_Liam_Payne is the love of my life; senior, graduating class of 16'","protected":false,"verified":false,"followers_count":412,"friends_count":465,"listed_count":2,"favourites_count":5206,"statuses_count":9620,"created_at":"Sun Nov 23 02:50:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657959217417035777\/obMyBItU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657959217417035777\/obMyBItU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2888731493\/1445704675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:25:00 +0000 2015","id":663663571889487872,"id_str":"663663571889487872","text":"\"Louis is the father\"\n\n\"Louis is not the father\"\n\n#OhNoBriana https:\/\/t.co\/XVDSMGcmvd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528518694,"id_str":"528518694","name":"M\u00f3nica","screen_name":"Monica5D","location":"London, Ireland","url":"http:\/\/instagram.com\/monicaferreiraaa","description":"M\u00f3nica, 19 years old\n#\u00c1toa #DAMA #Squad\n#1D for life.","protected":false,"verified":false,"followers_count":15745,"friends_count":15153,"listed_count":27,"favourites_count":28154,"statuses_count":53670,"created_at":"Sun Mar 18 13:32:40 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623420730747789312\/2rGUANaK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623420730747789312\/2rGUANaK.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656056609798492160\/2wbou3ND_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656056609798492160\/2wbou3ND_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528518694\/1445256377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":284,"favorite_count":204,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[50,61]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663663570291466240,"id_str":"663663570291466240","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","url":"https:\/\/t.co\/XVDSMGcmvd","display_url":"pic.twitter.com\/XVDSMGcmvd","expanded_url":"http:\/\/twitter.com\/Monica5D\/status\/663663571889487872\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":294,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":519,"h":294,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663663570291466240,"id_str":"663663570291466240","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","url":"https:\/\/t.co\/XVDSMGcmvd","display_url":"pic.twitter.com\/XVDSMGcmvd","expanded_url":"http:\/\/twitter.com\/Monica5D\/status\/663663571889487872\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":294,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":519,"h":294,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[64,75]}],"urls":[],"user_mentions":[{"screen_name":"Monica5D","name":"M\u00f3nica","id":528518694,"id_str":"528518694","indices":[3,12]}],"symbols":[],"media":[{"id":663663570291466240,"id_str":"663663570291466240","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","url":"https:\/\/t.co\/XVDSMGcmvd","display_url":"pic.twitter.com\/XVDSMGcmvd","expanded_url":"http:\/\/twitter.com\/Monica5D\/status\/663663571889487872\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":294,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":519,"h":294,"resize":"fit"}},"source_status_id":663663571889487872,"source_status_id_str":"663663571889487872","source_user_id":528518694,"source_user_id_str":"528518694"}]},"extended_entities":{"media":[{"id":663663570291466240,"id_str":"663663570291466240","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXOgD2XIAAkRlu.png","url":"https:\/\/t.co\/XVDSMGcmvd","display_url":"pic.twitter.com\/XVDSMGcmvd","expanded_url":"http:\/\/twitter.com\/Monica5D\/status\/663663571889487872\/photo\/1","type":"photo","sizes":{"large":{"w":519,"h":294,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":519,"h":294,"resize":"fit"}},"source_status_id":663663571889487872,"source_status_id_str":"663663571889487872","source_user_id":528518694,"source_user_id_str":"528518694"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925913522176,"id_str":"663727925913522176","text":"RT @jaepark_th: \u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 MTV 'I love idol' \u0e17\u0e35\u0e48\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46\u0e44\u0e1b\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e04\u0e23\u0e31\u0e49\u0e07\u0e01\u0e48\u0e2d\u0e19 (\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19) \u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 11 \u0e1e.\u0e22. \u0e19\u0e35\u0e49\u0e04\u0e48\u0e30 #DAY6 https:\/\/t.co\/oa\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2427475634,"id_str":"2427475634","name":"`\u0e0b\u0e34\u0e01\u0e41\u0e1e\u0e04\u0e1e\u0e35\u0e48\u0e42\u0e2e~","screen_name":"pexo_n43","location":null,"url":null,"description":"|| \u0e2d\u0e32\u0e01\u0e31\u0e0b\u0e40\u0e0b \u0e21\u0e2d\u0e19\u0e40\u0e1a\u0e40\u0e1a\u0e49 \u0e04\u0e2d\u0e19\u0e34\u0e04\u0e2a\u0e4c \u0e0b\u0e31\u0e19\u0e40\u0e14\u0e22\u0e4c \u0e42\u0e0b\u0e41\u0e2d\u0e25 \u0e2d\u0e32\u0e23\u0e4c\u0e21\u0e35\u0e48 \u0e40\u0e21\u0e42\u0e25\u0e14\u0e35\u0e49 \u0e42\u0e0b\u0e27\u0e2d\u0e19 \u0e1e\u0e34\u0e49\u0e07\u0e41\u0e1e\u0e19\u0e14\u0e49\u0e32 || \u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e2b\u0e25\u0e31\u0e01=\u0e41\u0e01\u0e25\u0e1a || \u0e1a\u0e23\u0e31\u0e4a\u0e22\u0e2a\u0e4c~","protected":false,"verified":false,"followers_count":126,"friends_count":613,"listed_count":3,"favourites_count":8731,"statuses_count":11309,"created_at":"Fri Apr 04 15:44:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663234167090475008\/4W6SE57J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663234167090475008\/4W6SE57J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2427475634\/1443711143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:18 +0000 2015","id":663723795773915136,"id_str":"663723795773915136","text":"\u0e23\u0e32\u0e22\u0e01\u0e32\u0e23 MTV 'I love idol' \u0e17\u0e35\u0e48\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46\u0e44\u0e1b\u0e1a\u0e31\u0e19\u0e17\u0e36\u0e01\u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e04\u0e23\u0e31\u0e49\u0e07\u0e01\u0e48\u0e2d\u0e19 (\u0e44\u0e15\u0e49\u0e2b\u0e27\u0e31\u0e19) \u0e08\u0e30\u0e2d\u0e2d\u0e01\u0e2d\u0e32\u0e01\u0e32\u0e28\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48 11 \u0e1e.\u0e22. \u0e19\u0e35\u0e49\u0e04\u0e48\u0e30 #DAY6 https:\/\/t.co\/oa96ZBxYVg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1563162247,"id_str":"1563162247","name":"Jae Park Thailand","screen_name":"jaepark_th","location":"since July 03rd 2013","url":null,"description":"1st Thailand fanbase for JAE a.k.a SwegChicken\u3163All About Jae Park (@Jae_Day6) \u3163DAY6\u316303\/07\/2013 | Trans ENG-TH (\u0e07\u0e32\u0e19\u0e41\u0e1b\u0e25\u0e43\u0e19 Likes)","protected":false,"verified":false,"followers_count":8830,"friends_count":71,"listed_count":50,"favourites_count":271,"statuses_count":3422,"created_at":"Tue Jul 02 13:07:30 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000079233709\/9f6622d099ce69fc2b014e1156a415e3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000079233709\/9f6622d099ce69fc2b014e1156a415e3.jpeg","profile_background_tile":false,"profile_link_color":"FC03AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644793018554281984\/1usJEWlY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644793018554281984\/1usJEWlY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1563162247\/1387057764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720872864124928,"quoted_status_id_str":"663720872864124928","quoted_status":{"created_at":"Mon Nov 09 14:12:42 +0000 2015","id":663720872864124928,"id_str":"663720872864124928","text":"#Day6 FIRST EVER TV show MtV i love idol will be aired on 11\/11! stay tuned! heres the teaser! @Jae_Day6 dude haha https:\/\/t.co\/PQEXmz14ba","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2384966540,"id_str":"2384966540","name":"JAEPARKHK","screen_name":"jaeparkhk","location":"\ud64d\ucf69 x \uc11c\uc6b8","url":"http:\/\/instagram.com\/jaeparkhk","description":"HongKong based fansite of JaePark from Day6! |-Since140311-|Email:jaeparkhk@gmail.com","protected":false,"verified":false,"followers_count":1655,"friends_count":20,"listed_count":36,"favourites_count":455,"statuses_count":4988,"created_at":"Wed Mar 12 09:21:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632762641740529666\/JpkvNwp-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632762641740529666\/JpkvNwp-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2384966540\/1441279095","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Day6","indices":[0,5]}],"urls":[],"user_mentions":[{"screen_name":"Jae_Day6","name":"Day6 Jae","id":3385125854,"id_str":"3385125854","indices":[95,104]}],"symbols":[],"media":[{"id":663720555422482432,"id_str":"663720555422482432","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720555422482432\/pu\/img\/Vwy5Lv6RmDZ-w-R-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720555422482432\/pu\/img\/Vwy5Lv6RmDZ-w-R-.jpg","url":"https:\/\/t.co\/PQEXmz14ba","display_url":"pic.twitter.com\/PQEXmz14ba","expanded_url":"http:\/\/twitter.com\/jaeparkhk\/status\/663720872864124928\/video\/1","type":"photo","sizes":{"large":{"w":400,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":400,"h":224,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720555422482432,"id_str":"663720555422482432","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720555422482432\/pu\/img\/Vwy5Lv6RmDZ-w-R-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720555422482432\/pu\/img\/Vwy5Lv6RmDZ-w-R-.jpg","url":"https:\/\/t.co\/PQEXmz14ba","display_url":"pic.twitter.com\/PQEXmz14ba","expanded_url":"http:\/\/twitter.com\/jaeparkhk\/status\/663720872864124928\/video\/1","type":"video","sizes":{"large":{"w":400,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":400,"h":224,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720555422482432\/pu\/vid\/320x180\/-xThDOuY38eKyVVk.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720555422482432\/pu\/pl\/bs37lcs66PHCiycD.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720555422482432\/pu\/pl\/bs37lcs66PHCiycD.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720555422482432\/pu\/vid\/320x180\/-xThDOuY38eKyVVk.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":18,"favorite_count":4,"entities":{"hashtags":[{"text":"DAY6","indices":[101,106]}],"urls":[{"url":"https:\/\/t.co\/oa96ZBxYVg","expanded_url":"https:\/\/twitter.com\/jaeparkhk\/status\/663720872864124928","display_url":"twitter.com\/jaeparkhk\/stat\u2026","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DAY6","indices":[117,122]}],"urls":[{"url":"https:\/\/t.co\/oa96ZBxYVg","expanded_url":"https:\/\/twitter.com\/jaeparkhk\/status\/663720872864124928","display_url":"twitter.com\/jaeparkhk\/stat\u2026","indices":[124,140]}],"user_mentions":[{"screen_name":"jaepark_th","name":"Jae Park Thailand","id":1563162247,"id_str":"1563162247","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080043663"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926223872,"id_str":"663727925926223872","text":"Es geht wieder \"lecker aufs Land\" - erste Station der neuen Staffel im SWR Fernsehen: ein Obsthof am Bodensee https:\/\/t.co\/PjBBsLmXe6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246379185,"id_str":"246379185","name":"SWR","screen_name":"SWRpresse","location":"Stuttgart, Mainz, Baden-Baden","url":"http:\/\/SWR.de\/presse","description":"Hier twittert die Pressestelle des SWR rund um den S\u00fcdwestrundfunk und seine Programme.","protected":false,"verified":true,"followers_count":5067,"friends_count":96,"listed_count":114,"favourites_count":100,"statuses_count":4612,"created_at":"Wed Feb 02 17:48:55 +0000 2011","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432912975901380609\/JVmEJdeA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432912975901380609\/JVmEJdeA.jpeg","profile_background_tile":false,"profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431393657673904128\/-e76FW06_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431393657673904128\/-e76FW06_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246379185\/1392110783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PjBBsLmXe6","expanded_url":"http:\/\/www.swr.de\/unternehmen\/kommunikation\/6-lecker-aufs-land-start-in-die-kulinarische-herbstreise\/-\/id=10563098\/did=16436106\/nid=10563098\/h9atgp\/index.html","display_url":"swr.de\/unternehmen\/ko\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925913456641,"id_str":"663727925913456641","text":"@nika_tama31721 \n\u308c\u30fc\u305f\u3093\u3063\u3066\u547c\u3093\u3067\u304f\u3060\u3055\u3044\ud83d\udc99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727816190464000,"in_reply_to_status_id_str":"663727816190464000","in_reply_to_user_id":2814716034,"in_reply_to_user_id_str":"2814716034","in_reply_to_screen_name":"nika_tama31721","user":{"id":2596394612,"id_str":"2596394612","name":"\u2704\u308c\u30fc\u305f\u3093\u24d2","screen_name":"fujikitafumake1","location":"if\u3068FOLLOW.\uff61o(\u2661)","url":null,"description":"\u2665*:;;;;;:*\u2661*:;;;;;:Ki\u26a1\u2015 \u2133y \u30fc Ft2\u2661*:;;;;;:*\u2665*:;;;;;\u261d\u85e4\u5317.\u3075\u3058\u304d\u305f.fujikita\u2764\u2934\u2934\u2934\uffe1\u03bf\u03bd\u0451 \u03b3\u03bf\u03c5\u261eF \uff8c\uff7c\uff9e\uff76\uff9e\uff94\u03be*' \uff70')\u2764Ki \uff77\uff80\uff94\uff8f\u2282*`\u2200\u00b4\u2283\u2661\u5144\u7d44\u2661\u512a\u7d46\uff78\uff9d\u250a\u6709\u5ca1\u5927\u8cb4","protected":false,"verified":false,"followers_count":1137,"friends_count":756,"listed_count":7,"favourites_count":25613,"statuses_count":13261,"created_at":"Mon Jun 30 13:51:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352981392261121\/_5qU_1qW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352981392261121\/_5qU_1qW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2596394612\/1447062009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nika_tama31721","name":"\u306b \u304b \u305f \u307e \u3086 \u304d \u3063 \u304d .\uff61+\uff9f","id":2814716034,"id_str":"2814716034","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043663"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925917671424,"id_str":"663727925917671424","text":"&#9733; \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0447\u0435\u0440\u0435\u0437: http:\/\/\u043e\u0433\u0440\u043e\u043c\u043d\u044b\u0435-\u043e\u0442\u043a\u0440\u044b\u0442\u043a\u0438.\u0440\u0444 https:\/\/t.co\/JJbg5nuHrG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2481802699,"id_str":"2481802699","name":"\u042d\u043b\u044c\u0437\u0430 \u0411\u0435\u0437\u043e\u0431\u0440\u0430\u0437\u043d\u0430\u044f","screen_name":"JelzaBezobrazn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":57,"friends_count":236,"listed_count":0,"favourites_count":0,"statuses_count":345,"created_at":"Wed May 07 09:56:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464247798536237056\/Jz5YN1cM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464247798536237056\/Jz5YN1cM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2481802699\/1399520495","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JJbg5nuHrG","expanded_url":"http:\/\/vk.com\/top_cards?mid","display_url":"vk.com\/top_cards?mid","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080043664"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925888331776,"id_str":"663727925888331776","text":"https:\/\/t.co\/GAoi9TIbiM\u82b1\u3073\u3089\u3092\u3059\u3063\u304b\u308a\u6fe1\u3089\u3057\u3066\u91cd\u305f\u304f\u898b\u305b\u3066\u304a\u308a\u307e\u3057\u305f\u3002\u571f\u9593\u3067\u53f0\u3092\u51fa\u3057\u3066\u304d\u3066\u7fc1\u306f\u74e2\u306e\u9152\u3092\u3061\u3073\u308a\u3061\u3073\u308a\u3068\u98f2\u307f\u306a\u304c\u3000https:\/\/t.co\/ZYS4BoHXiS\u3000https:\/\/t.co\/MjYbWylAHD","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2218744380,"id_str":"2218744380","name":"\u30a8\u30ed\u6cb3\u7ae5\u3061\u3083\u3093","screen_name":"kappadoujimayu","location":null,"url":null,"description":"\u30a8\u30ed\u3044\u5c0f\u8aac\u3000\u753b\u50cf\u3000\u304a\u3063\u3071\u3044\u3000\uff2a\uff2b\u3000\u88f8\u3000\u5199\u771f\u3000\u30a4\u30e9\u30b9\u30c8\u3000\u7d39\u4ecb\u3067\u3059\u3046","protected":false,"verified":false,"followers_count":77,"friends_count":38,"listed_count":6,"favourites_count":0,"statuses_count":139713,"created_at":"Thu Nov 28 02:19:15 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474378025736237058\/wlNCuux6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474378025736237058\/wlNCuux6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2218744380\/1401938817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GAoi9TIbiM","expanded_url":"http:\/\/youtu.be\/OTb5M0K2xEo","display_url":"youtu.be\/OTb5M0K2xEo","indices":[0,23]},{"url":"https:\/\/t.co\/ZYS4BoHXiS","expanded_url":"http:\/\/youtu.be\/fq1Mt4jhWFo","display_url":"youtu.be\/fq1Mt4jhWFo","indices":[75,98]},{"url":"https:\/\/t.co\/MjYbWylAHD","expanded_url":"http:\/\/bit.ly\/1rxPmkj","display_url":"bit.ly\/1rxPmkj","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080043657"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925905088512,"id_str":"663727925905088512","text":"RT @ritbabb: \u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e01\u0e31\u0e1a\u0e41\u0e04\u0e48\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19\u0e41\u0e25\u0e49\u0e27\u0e2d\u0e48\u0e30..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386052875,"id_str":"386052875","name":"\u0e21\u0e19\u0e38\u0e29\u0e22\u0e4c\u0e2b\u0e21\u0e39","screen_name":"Bbottkyn","location":null,"url":null,"description":"I want someone who feels lucky to have me.","protected":false,"verified":false,"followers_count":191,"friends_count":312,"listed_count":0,"favourites_count":4441,"statuses_count":48261,"created_at":"Thu Oct 06 15:54:05 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650240845321388033\/tRAviwQg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650240845321388033\/tRAviwQg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386052875\/1414044883","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Aug 24 19:18:43 +0000 2015","id":635894019634036736,"id_str":"635894019634036736","text":"\u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e01\u0e31\u0e1a\u0e41\u0e04\u0e48\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e23\u0e35\u0e22\u0e19\u0e41\u0e25\u0e49\u0e27\u0e2d\u0e48\u0e30..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3176689476,"id_str":"3176689476","name":"\u25ca","screen_name":"ritbabb","location":null,"url":null,"description":"@sawarinni is mine \u2601\ufe0f","protected":false,"verified":false,"followers_count":15059,"friends_count":48,"listed_count":6,"favourites_count":1265,"statuses_count":1441,"created_at":"Sun Apr 26 14:11:52 +0000 2015","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660356812303044613\/2_9l6TZK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660356812303044613\/2_9l6TZK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3176689476\/1446210318","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30926,"favorite_count":2632,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ritbabb","name":"\u25ca","id":3176689476,"id_str":"3176689476","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080043661"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925921890306,"id_str":"663727925921890306","text":"RT @Mona_dr23: Treat your woman with respect, love,kindness,because one day someone will do the same to your daughter. https:\/\/t.co\/sXv6m9b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2176004318,"id_str":"2176004318","name":"....","screen_name":"wnurulhaiza","location":"1574 ","url":null,"description":"\u2764\ufe0fBeing Sister and Brother means being there for each other\u2764\ufe0f","protected":false,"verified":false,"followers_count":428,"friends_count":417,"listed_count":0,"favourites_count":475,"statuses_count":3723,"created_at":"Tue Nov 05 12:41:29 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/525626260110594049\/D8SisfrH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/525626260110594049\/D8SisfrH.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637652595503312896\/rVcvyA4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637652595503312896\/rVcvyA4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176004318\/1440861812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:40 +0000 2015","id":663726907943424001,"id_str":"663726907943424001","text":"Treat your woman with respect, love,kindness,because one day someone will do the same to your daughter. https:\/\/t.co\/sXv6m9bVhs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":514882842,"id_str":"514882842","name":"Mona","screen_name":"Mona_dr23","location":"London, England","url":null,"description":"#Emirati, recently graduated from uni.MD. my tweets are reminder to my self and others.","protected":false,"verified":false,"followers_count":9743,"friends_count":217,"listed_count":27,"favourites_count":4550,"statuses_count":221,"created_at":"Sun Mar 04 23:28:44 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652605736573345792\/YZTqlT3Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652605736573345792\/YZTqlT3Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/514882842\/1444427993","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726899844259841,"id_str":"663726899844259841","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","url":"https:\/\/t.co\/sXv6m9bVhs","display_url":"pic.twitter.com\/sXv6m9bVhs","expanded_url":"http:\/\/twitter.com\/Mona_dr23\/status\/663726907943424001\/photo\/1","type":"photo","sizes":{"medium":{"w":441,"h":331,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":441,"h":331,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726899844259841,"id_str":"663726899844259841","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","url":"https:\/\/t.co\/sXv6m9bVhs","display_url":"pic.twitter.com\/sXv6m9bVhs","expanded_url":"http:\/\/twitter.com\/Mona_dr23\/status\/663726907943424001\/photo\/1","type":"photo","sizes":{"medium":{"w":441,"h":331,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":441,"h":331,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mona_dr23","name":"Mona","id":514882842,"id_str":"514882842","indices":[3,13]}],"symbols":[],"media":[{"id":663726899844259841,"id_str":"663726899844259841","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","url":"https:\/\/t.co\/sXv6m9bVhs","display_url":"pic.twitter.com\/sXv6m9bVhs","expanded_url":"http:\/\/twitter.com\/Mona_dr23\/status\/663726907943424001\/photo\/1","type":"photo","sizes":{"medium":{"w":441,"h":331,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":441,"h":331,"resize":"fit"}},"source_status_id":663726907943424001,"source_status_id_str":"663726907943424001","source_user_id":514882842,"source_user_id_str":"514882842"}]},"extended_entities":{"media":[{"id":663726899844259841,"id_str":"663726899844259841","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIGU0WoAEc8FD.jpg","url":"https:\/\/t.co\/sXv6m9bVhs","display_url":"pic.twitter.com\/sXv6m9bVhs","expanded_url":"http:\/\/twitter.com\/Mona_dr23\/status\/663726907943424001\/photo\/1","type":"photo","sizes":{"medium":{"w":441,"h":331,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":441,"h":331,"resize":"fit"}},"source_status_id":663726907943424001,"source_status_id_str":"663726907943424001","source_user_id":514882842,"source_user_id_str":"514882842"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043665"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925896744960,"id_str":"663727925896744960","text":"@shimoxx \u305d\u30fc\u306f\u8a00\u3046\u3082\u306e\u306e\u3001\u3081\u3056\u3059\u76ee\u6a19\u306b\u5411\u304b\u3063\u3066\u30c1\u30fc\u30e0\u3082\u30af\u30e9\u30d6\u3082\u30b5\u30dd\u3082\u307f\u3093\u306a\u304c\u3072\u3068\u3064\u306b\u306a\u3063\u3066\u9032\u3093\u3067\u3044\u304f\u7d4c\u9a13\u306f\u3068\u3066\u3082\u305f\u307e\u3089\u306a\u3044\u3002\u3042\u304f\u307e\u3067\u624b\u6bb5\u304b\u3082\u77e5\u308c\u306a\u3044\u3051\u3069\u3001\u3084\u306f\u308a\u5fc3\u3092\u63fa\u3055\u3076\u3089\u308c\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663289460847579136,"in_reply_to_status_id_str":"663289460847579136","in_reply_to_user_id":98628850,"in_reply_to_user_id_str":"98628850","in_reply_to_screen_name":"shimoxx","user":{"id":98628850,"id_str":"98628850","name":"\u3057\u3082xx","screen_name":"shimoxx","location":"\u5927\u6b73\u6c11","url":"http:\/\/d.hatena.ne.jp\/shimoxx\/","description":"\u4e2d\u4e16\u53f2\u3068\u304b\u5730\u5f62\u3068\u304b\u91ce\u7403\u3068\u304b\u5730\u57df\u30b9\u30dd\u30fc\u30c4\u3068\u304b\u30ec\u30ce\u30d5\u30a1","protected":false,"verified":false,"followers_count":684,"friends_count":127,"listed_count":76,"favourites_count":206,"statuses_count":8536,"created_at":"Tue Dec 22 13:00:54 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"FF8000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661934197251006464\/AczbAXWx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661934197251006464\/AczbAXWx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98628850\/1446810155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shimoxx","name":"\u3057\u3082xx","id":98628850,"id_str":"98628850","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043659"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926105088,"id_str":"663727925926105088","text":"\u304d\u305f\u3042\u3042\u3042\u3042\u3042\u3042\u3042\uff01\uff01\uff01\uff01\uff01\uff01 https:\/\/t.co\/E4bZs1WoKq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3263133330,"id_str":"3263133330","name":"\u9d7a:\u304a\u4ed5\u4e8b\u52df\u96c6\u4e2d","screen_name":"nue0toratugumi","location":"\u30c9\u30d5\u30e9\u3055\u3093\u306e\u3082\u3075\u3082\u3075","url":"http:\/\/touch.pixiv.net\/member.php","description":"\u7d75\u304b\u304d\u306b\u306a\u308a\u305f\u3044\u7121\u540d\u306e\u30a2\u30ab\u30a6\u30f3\u30c8(\u5909\u306a\u3053\u3068\u3082\u8a00\u3046).\u8150\u3063\u3066\u308b\u3002\uff9c\uff9d\uff8b\uff9f\uff70\uff7d\/\uff8a\uff72\uff77\uff6d\uff70\/\u3081\u3044\u3053\u3044\/\u3068\u3046\u3089\u3076\/\uff83\uff9e\uff68\uff7d\uff9e\uff86\uff70(\uff8c\uff9f\uff98\uff9d\uff7e\uff7d\u3082\uff73\uff9e\uff68\uff97\u3082\u624b\u4e0b\u3082)\/\uff7c\uff9e\uff8c\uff9e\uff98etc\uff0e\u624b\u4e0b\u6cbc\u306b\u751f\u606f\u4e2d\u3002\u88cf\u2192@nuetoratugumi","protected":false,"verified":false,"followers_count":77,"friends_count":124,"listed_count":3,"favourites_count":798,"statuses_count":1675,"created_at":"Wed Jul 01 11:51:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662612933726179328\/ZWLzQNRO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662612933726179328\/ZWLzQNRO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3263133330\/1445527328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727914383335425,"id_str":"663727914383335425","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBYRUYAEjAo3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBYRUYAEjAo3.jpg","url":"https:\/\/t.co\/E4bZs1WoKq","display_url":"pic.twitter.com\/E4bZs1WoKq","expanded_url":"http:\/\/twitter.com\/nue0toratugumi\/status\/663727925926105088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727914383335425,"id_str":"663727914383335425","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBYRUYAEjAo3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBYRUYAEjAo3.jpg","url":"https:\/\/t.co\/E4bZs1WoKq","display_url":"pic.twitter.com\/E4bZs1WoKq","expanded_url":"http:\/\/twitter.com\/nue0toratugumi\/status\/663727925926105088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925913481217,"id_str":"663727925913481217","text":"\u91ce\u7403\u5f37\u3044\u305e\uff01\u7532\u5b50\u5712\u307e\u3067\u3044\u3051\u308b\u3088\u3046\u306b\u304c\u3093\u3070\u3063\u3066\u304f\u3060\u3055\u3044\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1538613336,"id_str":"1538613336","name":"\u4f50\u571f\u539f\u9ad8\u6821bot","screen_name":"sdwrkoko_bot","location":"\u5bae\u5d0e\u770c","url":null,"description":"\u611b\u3059\u3079\u304d\u4f50\u571f\u539fbot\u3060\u3088","protected":false,"verified":false,"followers_count":177,"friends_count":350,"listed_count":1,"favourites_count":0,"statuses_count":40853,"created_at":"Sat Jun 22 12:31:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000029248359\/df41f1d884b89a142458838e44e177bd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000029248359\/df41f1d884b89a142458838e44e177bd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1538613336\/1371906196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080043663"} +{"delete":{"status":{"id":475438644233519104,"id_str":"475438644233519104","user_id":747422556,"user_id_str":"747422556"},"timestamp_ms":"1447080044045"}} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925926187009,"id_str":"663727925926187009","text":"\uff20s0t Searched for \"null\" at November 09, 2015 at 11:39PM by _NONNON_ https:\/\/t.co\/CXEjL52WNE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1060750549,"in_reply_to_user_id_str":"1060750549","in_reply_to_screen_name":"s0t","user":{"id":2958734845,"id_str":"2958734845","name":"\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164","screen_name":"A0WA_","location":null,"url":null,"description":"mmm\u2665\ufe0e","protected":false,"verified":false,"followers_count":1898,"friends_count":0,"listed_count":13,"favourites_count":6581,"statuses_count":31682,"created_at":"Sun Jan 04 17:20:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662239897021845504\/nl1A7uUZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662239897021845504\/nl1A7uUZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958734845\/1446632339","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s0t","name":"Asp.\u3086\u3063\u3051","id":1060750549,"id_str":"1060750549","indices":[0,4]}],"symbols":[],"media":[{"id":663727925666160645,"id_str":"663727925666160645","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCCTWoAUDPGG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCCTWoAUDPGG.jpg","url":"https:\/\/t.co\/CXEjL52WNE","display_url":"pic.twitter.com\/CXEjL52WNE","expanded_url":"http:\/\/twitter.com\/A0WA_\/status\/663727925926187009\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727925666160645,"id_str":"663727925666160645","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCCTWoAUDPGG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCCTWoAUDPGG.jpg","url":"https:\/\/t.co\/CXEjL52WNE","display_url":"pic.twitter.com\/CXEjL52WNE","expanded_url":"http:\/\/twitter.com\/A0WA_\/status\/663727925926187009\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080043666"} +{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925921886208,"id_str":"663727925921886208","text":"RT @_seekchic: \uc624\ub298\uc758 \ucda9\uaca9. '\ub418\uac1a\uc74c'\uc774 \uc544\ub2c8\ub77c '\ub300\uac1a\uc74c'. https:\/\/t.co\/ah4cURrTPN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3082433839,"id_str":"3082433839","name":"\ub028\ub07c","screen_name":"esicookie","location":null,"url":"http:\/\/esiyel.blog.me","description":"\uc5d8\uc18c\ub4dc\uc720\ub178\uae30\uc5ec\uc5b4\/FUB\uc790\uc720\/ask.fm\/esicookie","protected":false,"verified":false,"followers_count":58,"friends_count":221,"listed_count":4,"favourites_count":12253,"statuses_count":5690,"created_at":"Sat Mar 14 21:18:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643755320028729346\/bPYzLW4O_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643755320028729346\/bPYzLW4O_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3082433839\/1446705067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:37:04 +0000 2015","id":663379718930984961,"id_str":"663379718930984961","text":"\uc624\ub298\uc758 \ucda9\uaca9. '\ub418\uac1a\uc74c'\uc774 \uc544\ub2c8\ub77c '\ub300\uac1a\uc74c'. https:\/\/t.co\/ah4cURrTPN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196155855,"id_str":"196155855","name":"\uc774\ub9e4\ub825","screen_name":"_seekchic","location":null,"url":"http:\/\/ask.fm\/seekchic","description":"\ub2ec\uc740 \uc719\ud06c \ud55c \ubc88 \ud558\ub294\ub370 \ud55c \ub2ec\uc774\ub098 \uac78\ub9b0\ub2e4. \u300c\uc774\uc815\ub85d, '\ub354\ub518 \uc0ac\ub791'\u300d","protected":false,"verified":false,"followers_count":4461,"friends_count":82,"listed_count":74,"favourites_count":331,"statuses_count":174395,"created_at":"Tue Sep 28 13:30:11 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656195239065948160\/4yu7KniU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656195239065948160\/4yu7KniU.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660088646049988608\/rMiRdWhB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660088646049988608\/rMiRdWhB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196155855\/1446212509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3310,"favorite_count":322,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663379713209991169,"id_str":"663379713209991169","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","url":"https:\/\/t.co\/ah4cURrTPN","display_url":"pic.twitter.com\/ah4cURrTPN","expanded_url":"http:\/\/twitter.com\/_seekchic\/status\/663379718930984961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"large":{"w":1024,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663379713209991169,"id_str":"663379713209991169","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","url":"https:\/\/t.co\/ah4cURrTPN","display_url":"pic.twitter.com\/ah4cURrTPN","expanded_url":"http:\/\/twitter.com\/_seekchic\/status\/663379718930984961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"large":{"w":1024,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":284,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_seekchic","name":"\uc774\ub9e4\ub825","id":196155855,"id_str":"196155855","indices":[3,13]}],"symbols":[],"media":[{"id":663379713209991169,"id_str":"663379713209991169","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","url":"https:\/\/t.co\/ah4cURrTPN","display_url":"pic.twitter.com\/ah4cURrTPN","expanded_url":"http:\/\/twitter.com\/_seekchic\/status\/663379718930984961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"large":{"w":1024,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":284,"resize":"fit"}},"source_status_id":663379718930984961,"source_status_id_str":"663379718930984961","source_user_id":196155855,"source_user_id_str":"196155855"}]},"extended_entities":{"media":[{"id":663379713209991169,"id_str":"663379713209991169","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTMVZ0VAAEqJPG.jpg","url":"https:\/\/t.co\/ah4cURrTPN","display_url":"pic.twitter.com\/ah4cURrTPN","expanded_url":"http:\/\/twitter.com\/_seekchic\/status\/663379718930984961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"large":{"w":1024,"h":486,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":284,"resize":"fit"}},"source_status_id":663379718930984961,"source_status_id_str":"663379718930984961","source_user_id":196155855,"source_user_id_str":"196155855"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080043665"} +{"delete":{"status":{"id":663178937640423424,"id_str":"663178937640423424","user_id":395329961,"user_id_str":"395329961"},"timestamp_ms":"1447080044241"}} +{"delete":{"status":{"id":663432151971532800,"id_str":"663432151971532800","user_id":2398221381,"user_id_str":"2398221381"},"timestamp_ms":"1447080044366"}} +{"delete":{"status":{"id":663442448987869185,"id_str":"663442448987869185","user_id":3009176128,"user_id_str":"3009176128"},"timestamp_ms":"1447080044658"}} +{"delete":{"status":{"id":637262245173420032,"id_str":"637262245173420032","user_id":2445569184,"user_id_str":"2445569184"},"timestamp_ms":"1447080044645"}} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099527680,"id_str":"663727930099527680","text":"RT @blcmk: pronti?\ud83c\udf0a\ud83d\udd1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2194302840,"id_str":"2194302840","name":"20:05 \u2708","screen_name":"wakemeupalbe","location":"Italy","url":"http:\/\/Instagram.com\/http.eugeniaaax","description":"\u03b1\u043c\u03c3\u044f\u0454 vi\u0454\u0438i c\u03c3\u0438 \u043c\u0454,sc\u03b1\u03c1\u03c1i\u03b1\u043c\u03c3 \u03b1 \u0438\u0454\u03c9 y\u03c3\u044f\u0138 @Benji_Mascolo","protected":false,"verified":false,"followers_count":10331,"friends_count":8347,"listed_count":26,"favourites_count":13888,"statuses_count":28783,"created_at":"Thu Nov 14 14:36:03 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656930866678079489\/eapn8hNL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656930866678079489\/eapn8hNL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2194302840\/1445459497","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:50 +0000 2015","id":663724935198720000,"id_str":"663724935198720000","text":"pronti?\ud83c\udf0a\ud83d\udd1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459599920,"id_str":"459599920","name":"\/\/ C A P P Y \/\/","screen_name":"blcmk","location":null,"url":"https:\/\/twitter.com\/blcmk\/status\/620312354790735872","description":"se stai leggendo ti mando un abbraccio","protected":false,"verified":false,"followers_count":96609,"friends_count":33442,"listed_count":450,"favourites_count":54411,"statuses_count":65770,"created_at":"Mon Jan 09 21:11:24 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575318622748344320\/9ha_DWKY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575318622748344320\/9ha_DWKY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/459599920\/1446759585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":85,"favorite_count":187,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blcmk","name":"\/\/ C A P P Y \/\/","id":459599920,"id_str":"459599920","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112139264,"id_str":"663727930112139264","text":"\"Jag ska ligga, knulla och ha sex\"\nallts\u00e5... \ud83d\ude02 #paradisehotelSE","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149935009,"id_str":"149935009","name":"Julia \u221e","screen_name":"MissTuveyy","location":"Swedeeeeen","url":"http:\/\/nouw.com\/juliaatuvesson","description":"Food makes me happy.","protected":false,"verified":false,"followers_count":417,"friends_count":312,"listed_count":23,"favourites_count":306,"statuses_count":59146,"created_at":"Sun May 30 16:20:43 +0000 2010","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A13CA6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113096721\/0ee03699d241951b45e7ca284a7b9d98.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113096721\/0ee03699d241951b45e7ca284a7b9d98.jpeg","profile_background_tile":true,"profile_link_color":"0A050A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D166D1","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644850437703770112\/HsiMJUOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644850437703770112\/HsiMJUOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149935009\/1442579300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"paradisehotelSE","indices":[47,63]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080044664"} +{"delete":{"status":{"id":663727732963057664,"id_str":"663727732963057664","user_id":316054117,"user_id_str":"316054117"},"timestamp_ms":"1447080044707"}} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086973440,"id_str":"663727930086973440","text":"RT @YPedrolopez331: No hagas lo que no te gusta que te hagan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925802599,"id_str":"2925802599","name":"Blanquitaa","screen_name":"MamiDeLionel","location":"Morovis, Puerto Rico","url":null,"description":"Bilingual--Deep Love For Cars And Basketball-- Workout it's Fun--Libra\u264e\ufe0f--BlackDjarum-- Freckles and a couple Of Tattoos--MecanicaAutomotriz--Demonio Echo Mujer","protected":false,"verified":false,"followers_count":233,"friends_count":169,"listed_count":7,"favourites_count":4921,"statuses_count":11148,"created_at":"Tue Dec 16 21:14:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663486355226382337\/jiuJwAE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663486355226382337\/jiuJwAE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925802599\/1446775430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727693867823108,"id_str":"663727693867823108","text":"No hagas lo que no te gusta que te hagan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2297039936,"id_str":"2297039936","name":"Pedrofuckme","screen_name":"YPedrolopez331","location":"Puerto Rico ","url":null,"description":"\u00bfQue quieres?","protected":false,"verified":false,"followers_count":110,"friends_count":163,"listed_count":0,"favourites_count":198,"statuses_count":1643,"created_at":"Sat Jan 18 01:23:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663230778944294912\/g7L1mi2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663230778944294912\/g7L1mi2j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2297039936\/1445288308","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YPedrolopez331","name":"Pedrofuckme","id":2297039936,"id_str":"2297039936","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930116317184,"id_str":"663727930116317184","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2316922581,"id_str":"2316922581","name":"A R A","screen_name":"ohanameansjacob","location":"London \u2708 NYC| 828'2Lauri","url":null,"description":"my name? idk why don't you ask niall, he was screaming it last night | Jacob is my happiness. Justin follows\u2728 All the love as always x","protected":false,"verified":false,"followers_count":1653,"friends_count":841,"listed_count":5,"favourites_count":13095,"statuses_count":26166,"created_at":"Fri Jan 31 21:36:55 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662977338443976705\/DL-IHm0g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662977338443976705\/DL-IHm0g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316922581\/1446907640","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588963,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49991,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":303,"favorite_count":755,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044665"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095378432,"id_str":"663727930095378432","text":"Get Weather Updates from The Weather Channel. 09:40:43","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1355427098,"id_str":"1355427098","name":"BKIgtbt","screen_name":"BKIgtbt","location":null,"url":null,"description":"Continuous price updates for BUCKEYE CELLULOSE (BKI)","protected":false,"verified":false,"followers_count":29,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":84815,"created_at":"Mon Apr 15 21:50:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930107961344,"id_str":"663727930107961344","text":"RT @LoMas_40: \u00bfSabes por qu\u00e9 arrasa #Hello de @Adele? La ciencia tiene su propia explicaci\u00f3n: https:\/\/t.co\/HzZvxssEUq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":552673241,"id_str":"552673241","name":"EntuCara","screen_name":"salvameultratop","location":null,"url":null,"description":"aqu\u00ed dir\u00e9 de fente, lo bueno y lo malo de tus publicaciones...hace falta alguien que diga la verdad...muchos se la dan de sabios y critican sin saber","protected":false,"verified":false,"followers_count":19,"friends_count":81,"listed_count":0,"favourites_count":1,"statuses_count":12,"created_at":"Fri Apr 13 12:55:46 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2110329978\/images_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2110329978\/images_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:13 +0000 2015","id":663725284022095873,"id_str":"663725284022095873","text":"\u00bfSabes por qu\u00e9 arrasa #Hello de @Adele? La ciencia tiene su propia explicaci\u00f3n: https:\/\/t.co\/HzZvxssEUq","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2741876400,"id_str":"2741876400","name":"Lo+40","screen_name":"LoMas_40","location":"Spain","url":"http:\/\/los40.com","description":"Cuenta oficial. El gran show musical de la radio, con @XaviMartinez en @Los40_Spain. De lunes a viernes de 20:00h a 21:00h","protected":false,"verified":true,"followers_count":25333,"friends_count":329,"listed_count":48,"favourites_count":2127,"statuses_count":5790,"created_at":"Mon Aug 18 11:29:16 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502466620606803969\/Vgiu4QbC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502466620606803969\/Vgiu4QbC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2741876400\/1414000119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"entities":{"hashtags":[{"text":"Hello","indices":[22,28]}],"urls":[{"url":"https:\/\/t.co\/HzZvxssEUq","expanded_url":"http:\/\/los40.com\/los40\/2015\/11\/04\/lomas40\/1446658493_738237.html","display_url":"los40.com\/los40\/2015\/11\/\u2026","indices":[80,103]}],"user_mentions":[{"screen_name":"Adele","name":"Adele","id":184910040,"id_str":"184910040","indices":[32,38]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Hello","indices":[36,42]}],"urls":[{"url":"https:\/\/t.co\/HzZvxssEUq","expanded_url":"http:\/\/los40.com\/los40\/2015\/11\/04\/lomas40\/1446658493_738237.html","display_url":"los40.com\/los40\/2015\/11\/\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"LoMas_40","name":"Lo+40","id":2741876400,"id_str":"2741876400","indices":[3,12]},{"screen_name":"Adele","name":"Adele","id":184910040,"id_str":"184910040","indices":[46,52]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080044663"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930107916288,"id_str":"663727930107916288","text":"RT @revistasuper: Quais s\u00e3o, e como funcionam, os testes psicol\u00f3gicos usados nas entrevistas de emprego. https:\/\/t.co\/c1oDbNosV6 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4071617302,"id_str":"4071617302","name":"Qualidade em redes","screen_name":"RedesQualidade","location":"Macei\u00f3, Alagoas","url":null,"description":"Realizamos Projetos e execu\u00e7\u00e3o visando melhor rendimento em redes sociais -contato em hor\u00e1rio comercial 55 82 9992 5342","protected":false,"verified":false,"followers_count":54,"friends_count":574,"listed_count":0,"favourites_count":199,"statuses_count":216,"created_at":"Fri Oct 30 00:45:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659894458692067329\/HYFXkY8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659894458692067329\/HYFXkY8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4071617302\/1446952295","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:08 +0000 2015","id":663725764756561920,"id_str":"663725764756561920","text":"Quais s\u00e3o, e como funcionam, os testes psicol\u00f3gicos usados nas entrevistas de emprego. https:\/\/t.co\/c1oDbNosV6 https:\/\/t.co\/YDLdqgKMTv","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17240425,"id_str":"17240425","name":"Superinteressante","screen_name":"revistasuper","location":"S\u00e3o Paulo, Brazil","url":"http:\/\/www.superinteressante.com.br","description":"Acredite no conhecimento. Enxergue SUPER.","protected":false,"verified":true,"followers_count":2385669,"friends_count":111,"listed_count":11313,"favourites_count":297,"statuses_count":39814,"created_at":"Fri Nov 07 22:32:55 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ED1C24","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555579011\/deixeespertotwitter.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555579011\/deixeespertotwitter.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EEEEEE","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615958736000155648\/jdR7xV9W_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615958736000155648\/jdR7xV9W_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17240425\/1445978872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":33,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c1oDbNosV6","expanded_url":"http:\/\/abr.ai\/1NRv3X7","display_url":"abr.ai\/1NRv3X7","indices":[87,110]}],"user_mentions":[],"symbols":[],"media":[{"id":663725764148224000,"id_str":"663725764148224000","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","url":"https:\/\/t.co\/YDLdqgKMTv","display_url":"pic.twitter.com\/YDLdqgKMTv","expanded_url":"http:\/\/twitter.com\/revistasuper\/status\/663725764756561920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":1024,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725764148224000,"id_str":"663725764148224000","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","url":"https:\/\/t.co\/YDLdqgKMTv","display_url":"pic.twitter.com\/YDLdqgKMTv","expanded_url":"http:\/\/twitter.com\/revistasuper\/status\/663725764756561920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":1024,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c1oDbNosV6","expanded_url":"http:\/\/abr.ai\/1NRv3X7","display_url":"abr.ai\/1NRv3X7","indices":[105,128]}],"user_mentions":[{"screen_name":"revistasuper","name":"Superinteressante","id":17240425,"id_str":"17240425","indices":[3,16]}],"symbols":[],"media":[{"id":663725764148224000,"id_str":"663725764148224000","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","url":"https:\/\/t.co\/YDLdqgKMTv","display_url":"pic.twitter.com\/YDLdqgKMTv","expanded_url":"http:\/\/twitter.com\/revistasuper\/status\/663725764756561920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":1024,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663725764756561920,"source_status_id_str":"663725764756561920","source_user_id":17240425,"source_user_id_str":"17240425"}]},"extended_entities":{"media":[{"id":663725764148224000,"id_str":"663725764148224000","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHEOBUYAAjDxv.jpg","url":"https:\/\/t.co\/YDLdqgKMTv","display_url":"pic.twitter.com\/YDLdqgKMTv","expanded_url":"http:\/\/twitter.com\/revistasuper\/status\/663725764756561920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":1024,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663725764756561920,"source_status_id_str":"663725764756561920","source_user_id":17240425,"source_user_id_str":"17240425"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080044663"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095370240,"id_str":"663727930095370240","text":"I have zero motivation for school right now smh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297205003,"id_str":"297205003","name":"Lowkey McGee","screen_name":"Corey_2Gunnz","location":"731-615-931","url":null,"description":"#APSU #Money #Life.........","protected":false,"verified":false,"followers_count":614,"friends_count":685,"listed_count":4,"favourites_count":220,"statuses_count":25778,"created_at":"Thu May 12 03:36:14 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/525178413\/boston-celtics.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/525178413\/boston-celtics.png","profile_background_tile":true,"profile_link_color":"0A660A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638563215094489089\/dML656He_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638563215094489089\/dML656He_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297205003\/1349325559","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095308800,"id_str":"663727930095308800","text":"November 11, 2015\rVeteran\u2019s Day\rChurch Office Closed","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":430392949,"id_str":"430392949","name":"Catalyst","screen_name":"CatalystSCBC","location":"Norfolk, VA","url":"http:\/\/facebook.com\/catalyst09","description":"The Young Adult Ministry of Second Calvary Baptist Church (Norfolk, VA)","protected":false,"verified":false,"followers_count":255,"friends_count":301,"listed_count":2,"favourites_count":2,"statuses_count":4436,"created_at":"Wed Dec 07 03:36:18 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"161A1C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807822259\/e6cc61f5ef64160c842ac5dd2bc50574.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807822259\/e6cc61f5ef64160c842ac5dd2bc50574.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2181646390\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2181646390\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430392949\/1435808270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103713792,"id_str":"663727930103713792","text":"RT @NicoleNunezOk: Que paja tooodo culiaaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172638098,"id_str":"1172638098","name":"Paranoia","screen_name":"JvRodriguuez","location":"Florencio Varela (Bs.As Arg )","url":"https:\/\/www.facebook.com\/JaaaaQuii","description":"Mi sue\u00f1o es la fina mezcla, entre la risa y el llanto...\nROCK,POGOS, ALCOHOL Y AMIGOS\u2665 \n17PrimaverasLibra\nNTVG|Beriso|Pastillas :\u2022) \nFutbolera","protected":false,"verified":false,"followers_count":1108,"friends_count":1841,"listed_count":1,"favourites_count":1613,"statuses_count":29185,"created_at":"Tue Feb 12 17:48:40 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517814730988068864\/eJZjto0F.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517814730988068864\/eJZjto0F.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655063957489721344\/llWz-_q9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655063957489721344\/llWz-_q9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172638098\/1430166593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:44 +0000 2015","id":663726920962584577,"id_str":"663726920962584577","text":"Que paja tooodo culiaaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1613541907,"id_str":"1613541907","name":"Nicole \u00fc","screen_name":"NicoleNunezOk","location":"san Juan - Argentina","url":"https:\/\/www.facebook.com\/ola.ki.omda","description":"Bailarina de 18 a\u00f1os Amante de CABJ \u2661 El amor de mi vida naci\u00f3 en 1905. T O M O R R O W L A N D \u2661 EDM \u2661 UMF wsp 2645611420","protected":false,"verified":false,"followers_count":934,"friends_count":672,"listed_count":4,"favourites_count":1139,"statuses_count":29216,"created_at":"Mon Jul 22 19:41:46 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0913DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495732240811184128\/KWUsA_-q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495732240811184128\/KWUsA_-q.jpeg","profile_background_tile":true,"profile_link_color":"02024D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641765448703438848\/Umd4SW6i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641765448703438848\/Umd4SW6i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1613541907\/1403882982","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NicoleNunezOk","name":"Nicole \u00fc","id":1613541907,"id_str":"1613541907","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080044662"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930091159552,"id_str":"663727930091159552","text":"RT @Cici_masr37: \u0648\u0643\u0627\u0644\u0629 \u0623\u0646\u0628\u0627\u0621 \u0623\u0648\u0646\u0627\/ #\u0639\u0627\u062c\u0644| #\u0623\u0648\u0646\u0627| #\u0627\u0644\u0628\u0648\u0631\u0635\u0629 \u062a\u062a\u0644\u0642\u0649 \u0625\u062e\u0637\u0627\u0631\u0627 \u0631\u0633\u0645\u064a\u064b\u0627 \u0628\u062a\u062c\u0645\u064a\u062f \u0623\u0631\u0635\u062f\u0629 \u00ab#\u062f\u064a\u0627\u0628\u00bb \u0648\u00ab#\u0627\u0644\u062c\u0645\u0627\u0644\u00bb \u0648 . - \u0639\u0628\u0631 \u0646\u0628\u0636 @NabdApp https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1965115069,"id_str":"1965115069","name":"anomamohamed","screen_name":"anomamohamed","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0644\u0633\u064a\u0633\u064a \u0631\u0626\u064a\u0633\u0649","protected":false,"verified":false,"followers_count":2081,"friends_count":1090,"listed_count":17,"favourites_count":38488,"statuses_count":58956,"created_at":"Wed Oct 16 16:17:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661308308872151040\/ZJ7MHBg__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661308308872151040\/ZJ7MHBg__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1965115069\/1445530814","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:55 +0000 2015","id":663725960655687680,"id_str":"663725960655687680","text":"\u0648\u0643\u0627\u0644\u0629 \u0623\u0646\u0628\u0627\u0621 \u0623\u0648\u0646\u0627\/ #\u0639\u0627\u062c\u0644| #\u0623\u0648\u0646\u0627| #\u0627\u0644\u0628\u0648\u0631\u0635\u0629 \u062a\u062a\u0644\u0642\u0649 \u0625\u062e\u0637\u0627\u0631\u0627 \u0631\u0633\u0645\u064a\u064b\u0627 \u0628\u062a\u062c\u0645\u064a\u062f \u0623\u0631\u0635\u062f\u0629 \u00ab#\u062f\u064a\u0627\u0628\u00bb \u0648\u00ab#\u0627\u0644\u062c\u0645\u0627\u0644\u00bb \u0648 . - \u0639\u0628\u0631 \u0646\u0628\u0636 @NabdApp https:\/\/t.co\/cToWx9m6sE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":247448390,"id_str":"247448390","name":"\u0645\u0631\u0639\u0628 \u0627\u0644\u062e\u0631\u0641\u0627\u0646 ","screen_name":"Cici_masr37","location":"Egypt","url":"http:\/\/Twitter.com","description":"\u0627\u0644\u0644\u0647 .\u0627\u0644\u0648\u0637\u0646 .\u0627\u0644\u062c\u064a\u0634 .\u062d\u0641\u0638 \u0627\u0644\u0644\u0647 \u0645\u0635\u0631 \u0645\u0646 \u0627\u0644\u0642\u0630\u0627\u0631\u0629 \u0627\ufef7\u062e\u0648\u0627\u0646\u064a\u0629 \u0648\u0644\u0627\u062f \u062c\u0647\u0627\u062f \u0627\u0644\u0646\u0643\u0627\u062d \u064a\u0645\u062a\u0646\u0639\u0648\u0646.\u0645\u0645\u0646\u0648\u0639 \u0627\u0649 \u0646\u0642\u062f \u0644\u0644\u0631\u0626\u064a\u0633 \u0627\u0648 \u0627\u0644\u062c\u064a\u0634 \u0648\u0644\u0648 \u062d\u062a\u0649 \u0645\u0646 \u0628\u0627\u0628 \u0648\u062c\u0647\u0629 \u0627\u0644\u0646\u0638\u0631 \u0648\u0627\u0644\u0627 \u0628\u0644\u0648\u0643 !!","protected":false,"verified":false,"followers_count":9541,"friends_count":2897,"listed_count":87,"favourites_count":36039,"statuses_count":93301,"created_at":"Fri Feb 04 20:34:51 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634543874283843584\/DjNQP0b6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634543874283843584\/DjNQP0b6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247448390\/1402579197","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0639\u0627\u062c\u0644","indices":[18,23]},{"text":"\u0623\u0648\u0646\u0627","indices":[25,30]},{"text":"\u0627\u0644\u0628\u0648\u0631\u0635\u0629","indices":[32,40]},{"text":"\u062f\u064a\u0627\u0628","indices":[75,80]},{"text":"\u0627\u0644\u062c\u0645\u0627\u0644","indices":[84,91]}],"urls":[{"url":"https:\/\/t.co\/cToWx9m6sE","expanded_url":"http:\/\/nabdapp.com\/t\/24026741","display_url":"nabdapp.com\/t\/24026741","indices":[116,139]}],"user_mentions":[{"screen_name":"NabdApp","name":"\u062a\u0637\u0628\u064a\u0642 \u0646\u0628\u0636 Nabd App","id":941109194,"id_str":"941109194","indices":[107,115]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0639\u0627\u062c\u0644","indices":[35,40]},{"text":"\u0623\u0648\u0646\u0627","indices":[42,47]},{"text":"\u0627\u0644\u0628\u0648\u0631\u0635\u0629","indices":[49,57]},{"text":"\u062f\u064a\u0627\u0628","indices":[92,97]},{"text":"\u0627\u0644\u062c\u0645\u0627\u0644","indices":[101,108]}],"urls":[{"url":"https:\/\/t.co\/cToWx9m6sE","expanded_url":"http:\/\/nabdapp.com\/t\/24026741","display_url":"nabdapp.com\/t\/24026741","indices":[139,140]}],"user_mentions":[{"screen_name":"Cici_masr37","name":"\u0645\u0631\u0639\u0628 \u0627\u0644\u062e\u0631\u0641\u0627\u0646 ","id":247448390,"id_str":"247448390","indices":[3,15]},{"screen_name":"NabdApp","name":"\u062a\u0637\u0628\u064a\u0642 \u0646\u0628\u0636 Nabd App","id":941109194,"id_str":"941109194","indices":[124,132]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112086016,"id_str":"663727930112086016","text":"Nah, I get my bro or lil sis to wash them for me! @_BobLeRouxx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733269241856,"in_reply_to_status_id_str":"663727733269241856","in_reply_to_user_id":1428730465,"in_reply_to_user_id_str":"1428730465","in_reply_to_screen_name":"_BobLeRouxx","user":{"id":224241723,"id_str":"224241723","name":"Free Memphis","screen_name":"_Kagistian07","location":"Jo'burg City ","url":null,"description":"TMT: The Money Team. How To Get Rich Nigga...","protected":false,"verified":false,"followers_count":2097,"friends_count":894,"listed_count":15,"favourites_count":572,"statuses_count":91161,"created_at":"Wed Dec 08 14:19:59 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"0A1F26","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658298143025557508\/sEM1IpS0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658298143025557508\/sEM1IpS0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224241723\/1445785488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_BobLeRouxx","name":"- ferrero rocher","id":1428730465,"id_str":"1428730465","indices":[50,62]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095362049,"id_str":"663727930095362049","text":"@GUCCI_AINE at this rate i wont even blinkin get one!!!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727844992950273,"in_reply_to_status_id_str":"663727844992950273","in_reply_to_user_id":154684466,"in_reply_to_user_id_str":"154684466","in_reply_to_screen_name":"GUCCI_AINE","user":{"id":72263921,"id_str":"72263921","name":"Destiny Man","screen_name":"cooljinzo","location":null,"url":"http:\/\/twitter.com","description":"looking for a new guitar","protected":false,"verified":false,"followers_count":2105,"friends_count":683,"listed_count":25,"favourites_count":27841,"statuses_count":55125,"created_at":"Mon Sep 07 11:44:13 +0000 2009","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164227924\/g2KDoMn4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164227924\/g2KDoMn4.jpeg","profile_background_tile":true,"profile_link_color":"FF6905","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652091557361885185\/GW3-xg0G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652091557361885185\/GW3-xg0G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72263921\/1410152147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GUCCI_AINE","name":"The Queen of Fall","id":154684466,"id_str":"154684466","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112012288,"id_str":"663727930112012288","text":"@uddiii @yuorco \u308f\u30fc\u30fc\u3044\uff01\u89aa\u65cf\u5e2d\u5ea7\u308b\u306d\u2661\n\u697d\u3057\u307f\u3060\u306d\u30fc\u7dba\u9e97\u306a\u30c9\u30ec\u30b9\u7740\u3066\u306d\u3082\u308c\u306a\u304f\u6ce3\u304f\u306e\u3067","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718633760141312,"in_reply_to_status_id_str":"663718633760141312","in_reply_to_user_id":216138497,"in_reply_to_user_id_str":"216138497","in_reply_to_screen_name":"uddiii","user":{"id":400794310,"id_str":"400794310","name":"\u677e\u5ca1\u307f\u3055\u3053","screen_name":"sommbear","location":null,"url":null,"description":"\u4e3b\u6210\u5206\uff1a\u5510\u63da\u3052\/\u30d1\u30b9\u30bf\/\u304d\u306a\u7c89\/\u8c46\u8150\/\u4e03\u5473","protected":false,"verified":false,"followers_count":72,"friends_count":173,"listed_count":0,"favourites_count":4403,"statuses_count":19025,"created_at":"Sat Oct 29 15:48:26 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662165635858694144\/zo14fTdm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662165635858694144\/zo14fTdm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400794310\/1443574520","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uddiii","name":"\u611b\u7f8e","id":216138497,"id_str":"216138497","indices":[0,7]},{"screen_name":"yuorco","name":"N.YKK\uf8ff","id":152876389,"id_str":"152876389","indices":[8,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930091184129,"id_str":"663727930091184129","text":"RT @brian_the_lover: \u0e1a\u0e32\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07 \u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e40\u0e18\u0e2d\u0e01\u0e33\u0e25\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e2b\u0e32 \u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e18\u0e2d\u0e21\u0e2d\u0e07\u0e02\u0e49\u0e32\u0e21\u0e44\u0e1b \u0e2b\u0e23\u0e37\u0e2d \u0e17\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19 \n\n\u0e04\u0e19\u0e14\u0e35\u0e46 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e01\u0e25\u0e49\u0e15\u0e31\u0e27 \u0e21\u0e31\u0e01\u0e08\u0e30\u0e16\u0e39\u0e01\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2256135884,"id_str":"2256135884","name":"\u0e44\u0e2d\u0e2d\u0e2d\u0e19\u0e34\u0e01","screen_name":"ax_tharawuth","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":285,"friends_count":1017,"listed_count":3,"favourites_count":3780,"statuses_count":25312,"created_at":"Sat Dec 21 07:32:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661732166938722304\/6PjC-Ba-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661732166938722304\/6PjC-Ba-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2256135884\/1446743907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:13 +0000 2015","id":663725283732643841,"id_str":"663725283732643841","text":"\u0e1a\u0e32\u0e07\u0e04\u0e23\u0e31\u0e49\u0e07 \u0e2a\u0e34\u0e48\u0e07\u0e17\u0e35\u0e48\u0e40\u0e18\u0e2d\u0e01\u0e33\u0e25\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e2b\u0e32 \u0e2d\u0e32\u0e08\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e34\u0e48\u0e07\u0e40\u0e14\u0e35\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e17\u0e35\u0e48\u0e40\u0e18\u0e2d\u0e21\u0e2d\u0e07\u0e02\u0e49\u0e32\u0e21\u0e44\u0e1b \u0e2b\u0e23\u0e37\u0e2d \u0e17\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e2d\u0e07\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19 \n\n\u0e04\u0e19\u0e14\u0e35\u0e46 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e01\u0e25\u0e49\u0e15\u0e31\u0e27 \u0e21\u0e31\u0e01\u0e08\u0e30\u0e16\u0e39\u0e01\u0e21\u0e2d\u0e07\u0e02\u0e49\u0e32\u0e21\u0e2b\u0e31\u0e27 \u0e40\u0e2a\u0e21\u0e2d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16600625,"id_str":"16600625","name":"\u0e44\u0e1a\u0e23\u0e2d\u0e31\u0e19 \u0e40\u0e12\u0e48\u0e32\u0e17\u0e32\u0e23\u0e01","screen_name":"brian_the_lover","location":"Bangkok Metropolis - Thailand","url":null,"description":"\u0e41\u0e17\u0e49\u0e08\u0e23\u0e34\u0e07\u0e41\u0e25\u0e49\u0e27\u0e42\u0e25\u0e01\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2a\u0e27\u0e22\u0e07\u0e32\u0e21\u0e19\u0e31\u0e01\u0e2b\u0e23\u0e2d\u0e01 \u0e01\u0e47\u0e41\u0e04\u0e48\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e21\u0e2d\u0e07\u0e21\u0e38\u0e21\u0e17\u0e35\u0e48\u0e21\u0e31\u0e19\u0e2a\u0e27\u0e22\u0e07\u0e32\u0e21\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e40\u0e2d\u0e07","protected":false,"verified":false,"followers_count":163313,"friends_count":94298,"listed_count":215,"favourites_count":8568,"statuses_count":155273,"created_at":"Sun Oct 05 11:01:48 +0000 2008","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"16F5D7","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649465086512226304\/4f35Q36b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649465086512226304\/4f35Q36b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16600625\/1444565587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brian_the_lover","name":"\u0e44\u0e1a\u0e23\u0e2d\u0e31\u0e19 \u0e40\u0e12\u0e48\u0e32\u0e17\u0e32\u0e23\u0e01","id":16600625,"id_str":"16600625","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930116317185,"id_str":"663727930116317185","text":"\u3010\u91cd\u8981\u301117\u5352\u304b\u3089\u5c31\u6d3b\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u307e\u305f\u5909\u308f\u308a\u307e\u3059\uff01\u65e9\u3081\u306e\u60c5\u5831\u53ce\u96c6\u3092\u3059\u308b\u5b66\u751f\u306b\u306f\u3001\u6700\u901f\u3067\u60c5\u5831\u3092\u5f97\u3089\u308c\u308b\u5c31\u6d3b\u30a2\u30d7\u30ea\u300cLIFE\u300d\u304c\u304a\u30b9\u30b9\u30e1\u3002\u5546\u793e\u3001\u30b3\u30f3\u30b5\u30eb\u3001\u30e1\u30fc\u30ab\u30fc\u3001\u91d1\u878d\u306a\u3069\u3042\u3089\u3086\u308b\u696d\u614b\u306e\u4f01\u696d\u3068\u76f4\u63a5\u30a2\u30d7\u30ea\u3067\u3084\u308a\u3068\u308a\u3067\u304d\u308b\uff01\u4e8b\u524d\u767b\u9332\u53d7\u4ed8\u4e2dhttps:\/\/t.co\/x80fh4vkz7","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947503878,"id_str":"947503878","name":"\u9762\u63a5\u3067\u805e\u304b\u308c\u308b\u3053\u306850\u9078\u3010\u516c\u5f0f\u3011","screen_name":"mensetsu_50","location":null,"url":null,"description":"\u5c31\u6d3b\u751f\u306b\u3068\u3063\u3066\u9078\u8003\u30d5\u30ed\u30fc\u306e\u4e2d\u3067\u6700\u3082\u91cd\u8981\u306a\u306e\u306f\u3001\u3084\u306f\u308a\u9762\u63a5\u3002\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u69d8\u3005\u306a\u4f01\u696d\u306e\u9762\u63a5\u3067\u805e\u304b\u308c\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":4537,"friends_count":3473,"listed_count":76,"favourites_count":0,"statuses_count":29181,"created_at":"Wed Nov 14 10:46:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656338678990528512\/GqI0yZfk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656338678990528512\/GqI0yZfk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x80fh4vkz7","expanded_url":"http:\/\/bit.ly\/1Si9u3z","display_url":"bit.ly\/1Si9u3z","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044665"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930090979329,"id_str":"663727930090979329","text":"RT @Aofshowxxx: \u201c@non_power: \u0e23\u0e35\u0e27\u0e34\u0e27\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e40\u0e2a\u0e35\u0e22\u0e27\u0e21\u0e32\u0e01 \u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e07\u0e35\u0e48\u0e22\u0e19 https:\/\/t.co\/dgIEwq9zNf\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320690190,"id_str":"2320690190","name":"buddybleez","screen_name":"buddybleez","location":null,"url":null,"description":"\u0e1a\u0e32\u0e07\u0e41\u0e2a\u0e19 \nhttps:\/\/docs.google.com\/folderview?id=0Bwn19CpwAVwtQkd4WXhGX1djcDA&usp=docslist_api","protected":false,"verified":false,"followers_count":270,"friends_count":2020,"listed_count":1,"favourites_count":9627,"statuses_count":7632,"created_at":"Fri Jan 31 12:03:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429224639521251328\/6DrZvDTk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429224639521251328\/6DrZvDTk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320690190\/1391170103","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:44 +0000 2015","id":663726418610655232,"id_str":"663726418610655232","text":"\u201c@non_power: \u0e23\u0e35\u0e27\u0e34\u0e27\u0e1c\u0e25\u0e34\u0e15\u0e20\u0e31\u0e13\u0e11\u0e4c\u0e40\u0e2a\u0e35\u0e22\u0e27\u0e21\u0e32\u0e01 \u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e07\u0e35\u0e48\u0e22\u0e19 https:\/\/t.co\/dgIEwq9zNf\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663665483950850048,"in_reply_to_status_id_str":"663665483950850048","in_reply_to_user_id":2529094636,"in_reply_to_user_id_str":"2529094636","in_reply_to_screen_name":"non_power","user":{"id":2388541158,"id_str":"2388541158","name":"AOF APIRAK","screen_name":"Aofshowxxx","location":null,"url":null,"description":"\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e41\u0e25\u0e49\u0e27\u0e04\u0e23\u0e31\u0e1a \u0e2b\u0e25\u0e31\u0e07\u0e08\u0e32\u0e01\u0e17\u0e35\u0e48\u0e42\u0e14\u0e19\u0e1a\u0e25\u0e4a\u0e2d\u0e01\u0e44\u0e1b\u0e19\u0e32\u0e19 \u0e21\u0e35\u0e2d\u0e30\u0e44\u0e23\u0e17\u0e31\u0e01\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a \u0e1c\u0e21\u0e0a\u0e37\u0e48\u0e2d\u0e2d\u0e4a\u0e2d\u0e1f\u0e04\u0e23\u0e31\u0e1a","protected":false,"verified":false,"followers_count":42500,"friends_count":1483,"listed_count":55,"favourites_count":0,"statuses_count":26695,"created_at":"Fri Mar 14 06:29:43 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616610807774707712\/KLdOz0rB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616610807774707712\/KLdOz0rB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2388541158\/1435848368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"non_power","name":"powernon","id":2529094636,"id_str":"2529094636","indices":[1,11]}],"symbols":[],"media":[{"id":663665035986661376,"id_str":"663665035986661376","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","url":"https:\/\/t.co\/dgIEwq9zNf","display_url":"pic.twitter.com\/dgIEwq9zNf","expanded_url":"http:\/\/twitter.com\/non_power\/status\/663665483950850048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663665483950850048,"source_status_id_str":"663665483950850048","source_user_id":2529094636,"source_user_id_str":"2529094636"}]},"extended_entities":{"media":[{"id":663665035986661376,"id_str":"663665035986661376","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","url":"https:\/\/t.co\/dgIEwq9zNf","display_url":"pic.twitter.com\/dgIEwq9zNf","expanded_url":"http:\/\/twitter.com\/non_power\/status\/663665483950850048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663665483950850048,"source_status_id_str":"663665483950850048","source_user_id":2529094636,"source_user_id_str":"2529094636","video_info":{"aspect_ratio":[1,1],"duration_millis":30018,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/pl\/C5ETCKjgd_T60_M5.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/pl\/C5ETCKjgd_T60_M5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/240x240\/4U-iRatHDF6M5uex.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/720x720\/bzz7wXOFZ2yoLeTG.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/480x480\/HKIoWMRvSbLtgbTi.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/480x480\/HKIoWMRvSbLtgbTi.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aofshowxxx","name":"AOF APIRAK","id":2388541158,"id_str":"2388541158","indices":[3,14]},{"screen_name":"non_power","name":"powernon","id":2529094636,"id_str":"2529094636","indices":[17,27]}],"symbols":[],"media":[{"id":663665035986661376,"id_str":"663665035986661376","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","url":"https:\/\/t.co\/dgIEwq9zNf","display_url":"pic.twitter.com\/dgIEwq9zNf","expanded_url":"http:\/\/twitter.com\/non_power\/status\/663665483950850048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663665483950850048,"source_status_id_str":"663665483950850048","source_user_id":2529094636,"source_user_id_str":"2529094636"}]},"extended_entities":{"media":[{"id":663665035986661376,"id_str":"663665035986661376","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663665035986661376\/pu\/img\/-9I7txiPCRFz--y3.jpg","url":"https:\/\/t.co\/dgIEwq9zNf","display_url":"pic.twitter.com\/dgIEwq9zNf","expanded_url":"http:\/\/twitter.com\/non_power\/status\/663665483950850048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663665483950850048,"source_status_id_str":"663665483950850048","source_user_id":2529094636,"source_user_id_str":"2529094636","video_info":{"aspect_ratio":[1,1],"duration_millis":30018,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/pl\/C5ETCKjgd_T60_M5.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/pl\/C5ETCKjgd_T60_M5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/240x240\/4U-iRatHDF6M5uex.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/720x720\/bzz7wXOFZ2yoLeTG.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/480x480\/HKIoWMRvSbLtgbTi.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663665035986661376\/pu\/vid\/480x480\/HKIoWMRvSbLtgbTi.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930116304900,"id_str":"663727930116304900","text":"RT @foodporntho: Marshmallow-Stuffed S'mores Cookies Sandwiches. https:\/\/t.co\/PMLksVH8RP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786951851,"id_str":"2786951851","name":"Ley\u26a1\ufe0f","screen_name":"9yearoldhoe","location":null,"url":null,"description":"R.i.p Gma && Gpa,, I love y'all","protected":false,"verified":false,"followers_count":370,"friends_count":262,"listed_count":0,"favourites_count":336,"statuses_count":8974,"created_at":"Tue Sep 02 23:24:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663021683947806720\/vKQrvW51_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663021683947806720\/vKQrvW51_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786951851\/1446852795","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 04:30:41 +0000 2015","id":661400078922473472,"id_str":"661400078922473472","text":"Marshmallow-Stuffed S'mores Cookies Sandwiches. https:\/\/t.co\/PMLksVH8RP","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2440252190,"id_str":"2440252190","name":"Food Porn","screen_name":"foodporntho","location":"Kitchen mostly","url":null,"description":"Sweet, sweet food porn. Don't follow if you're on a diet. DM your food or email justfoodporn@gmail.com *not all content posted is created by us*","protected":false,"verified":false,"followers_count":168729,"friends_count":21074,"listed_count":695,"favourites_count":1679,"statuses_count":28046,"created_at":"Sat Apr 12 16:35:19 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647002480706998273\/5n5ek159_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647002480706998273\/5n5ek159_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2440252190\/1445711182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":333,"favorite_count":274,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661400078268125184,"id_str":"661400078268125184","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":493,"resize":"fit"},"large":{"w":968,"h":796,"resize":"fit"},"small":{"w":340,"h":279,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661400078268125184,"id_str":"661400078268125184","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":493,"resize":"fit"},"large":{"w":968,"h":796,"resize":"fit"},"small":{"w":340,"h":279,"resize":"fit"}}},{"id":661400077299249152,"id_str":"661400077299249152","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3bXWcAAZn71.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3bXWcAAZn71.jpg","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"large":{"w":525,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":525,"h":788,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"foodporntho","name":"Food Porn","id":2440252190,"id_str":"2440252190","indices":[3,15]}],"symbols":[],"media":[{"id":661400078268125184,"id_str":"661400078268125184","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":493,"resize":"fit"},"large":{"w":968,"h":796,"resize":"fit"},"small":{"w":340,"h":279,"resize":"fit"}},"source_status_id":661400078922473472,"source_status_id_str":"661400078922473472","source_user_id":2440252190,"source_user_id_str":"2440252190"}]},"extended_entities":{"media":[{"id":661400078268125184,"id_str":"661400078268125184","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3e-WUAAIU6z.png","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":493,"resize":"fit"},"large":{"w":968,"h":796,"resize":"fit"},"small":{"w":340,"h":279,"resize":"fit"}},"source_status_id":661400078922473472,"source_status_id_str":"661400078922473472","source_user_id":2440252190,"source_user_id_str":"2440252190"},{"id":661400077299249152,"id_str":"661400077299249152","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3D3bXWcAAZn71.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3D3bXWcAAZn71.jpg","url":"https:\/\/t.co\/PMLksVH8RP","display_url":"pic.twitter.com\/PMLksVH8RP","expanded_url":"http:\/\/twitter.com\/foodporntho\/status\/661400078922473472\/photo\/1","type":"photo","sizes":{"large":{"w":525,"h":788,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":525,"h":788,"resize":"fit"}},"source_status_id":661400078922473472,"source_status_id_str":"661400078922473472","source_user_id":2440252190,"source_user_id_str":"2440252190"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044665"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930107805696,"id_str":"663727930107805696","text":"RT @ibigpola: Don't break my heart..\nyou live there..\n\u0e2d\u0e22\u0e48\u0e32\u0e17\u0e33\u0e23\u0e49\u0e32\u0e22\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e40\u0e23\u0e32..\n\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e19\u0e31\u0e49\u0e19..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206988248,"id_str":"206988248","name":"\u0e1a\u0e34\u0e07\u0e42\u0e01","screen_name":"bringbino","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":192,"friends_count":112,"listed_count":0,"favourites_count":1558,"statuses_count":18571,"created_at":"Sun Oct 24 07:09:06 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630357261831933952\/rm3N-Bdx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630357261831933952\/rm3N-Bdx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206988248\/1443455745","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 01:58:20 +0000 2015","id":662811287982739456,"id_str":"662811287982739456","text":"Don't break my heart..\nyou live there..\n\u0e2d\u0e22\u0e48\u0e32\u0e17\u0e33\u0e23\u0e49\u0e32\u0e22\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e40\u0e23\u0e32..\n\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e40\u0e18\u0e2d\u0e01\u0e47\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e19\u0e31\u0e49\u0e19..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2681894155,"id_str":"2681894155","name":"\u0e2b\u0e21\u0e35\u0e2d\u0e49\u0e27\u0e19","screen_name":"ibigpola","location":null,"url":"http:\/\/Instagram.com\/artcial","description":"IG : artcial \u2764\ufe0f","protected":false,"verified":false,"followers_count":69195,"friends_count":29,"listed_count":15,"favourites_count":141,"statuses_count":617,"created_at":"Sat Jul 26 09:10:06 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663544059361755136\/Nh6waTs4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663544059361755136\/Nh6waTs4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2681894155\/1446869100","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8266,"favorite_count":1837,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ibigpola","name":"\u0e2b\u0e21\u0e35\u0e2d\u0e49\u0e27\u0e19","id":2681894155,"id_str":"2681894155","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080044663"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103701504,"id_str":"663727930103701504","text":"\u3010\u91cd\u8981\u301117\u5352\u304b\u3089\u5c31\u6d3b\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u307e\u305f\u5909\u308f\u308a\u307e\u3059\uff01\u65e9\u3081\u306e\u60c5\u5831\u53ce\u96c6\u3092\u3059\u308b\u5b66\u751f\u306b\u306f\u3001\u6700\u901f\u3067\u60c5\u5831\u3092\u5f97\u3089\u308c\u308b\u5c31\u6d3b\u30a2\u30d7\u30ea\u300cLIFE\u300d\u304c\u304a\u30b9\u30b9\u30e1\u3002\u5546\u793e\u3001\u30b3\u30f3\u30b5\u30eb\u3001\u30e1\u30fc\u30ab\u30fc\u3001\u91d1\u878d\u306a\u3069\u3042\u3089\u3086\u308b\u696d\u614b\u306e\u4f01\u696d\u3068\u76f4\u63a5\u30a2\u30d7\u30ea\u3067\u3084\u308a\u3068\u308a\u3067\u304d\u308b\uff01\u4e8b\u524d\u767b\u9332\u53d7\u4ed8\u4e2dhttps:\/\/t.co\/LMoKE4nC6T","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1614746808,"id_str":"1614746808","name":"\u301017\u5352\u3011SPI(\u975e\u8a00\u8a9e)\u3010\u516c\u5f0f\u3011","screen_name":"higengoshu","location":null,"url":null,"description":"2017\u5352\u5c31\u6d3b\u751f\u5411\u3051\u306bSPI\uff08\u975e\u8a00\u8a9e\u7de8\uff09\u306e\u554f\u984c\u3092\u914d\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u672c\u683c\u7684\u306b\u59cb\u307e\u308b\u524d\u306bSPI\u5bfe\u7b56\u3092\u59cb\u3081\u3066\u307f\u307e\u3057\u3087\u3046\uff01\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u63a8\u5968\u4e2d\uff01\u59c9\u59b9\u30a2\u30ab\u30a6\u30f3\u30c8(SPI\u8a00\u8a9e\u2192@spigengo_shu \u4e00\u822c\u5e38\u8b58\u2192@joshiki_shu \u6642\u4e8b\u554f\u984c\u2192@jijimondai_shu)","protected":false,"verified":false,"followers_count":1619,"friends_count":1482,"listed_count":36,"favourites_count":0,"statuses_count":23915,"created_at":"Tue Jul 23 08:39:20 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000603015020\/eaec88c26f29131fb43a7afb4d6590b2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000603015020\/eaec88c26f29131fb43a7afb4d6590b2_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LMoKE4nC6T","expanded_url":"http:\/\/bit.ly\/1Si9u3z","display_url":"bit.ly\/1Si9u3z","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044662"} +{"delete":{"status":{"id":620084594742681600,"id_str":"620084594742681600","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080044750"}} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099433472,"id_str":"663727930099433472","text":"\u307f\u3041\u304f\u3093\u306b\u5373\u30af\u30e9\u30af\u30b7\u30e7\u30f3\u6c7a\u3081\u3066\u3042\u3052\u305f\u305c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3906489499,"id_str":"3906489499","name":"\u3057\u3044\u3070","screen_name":"Siiba_3","location":null,"url":"http:\/\/twpf.jp\/Siiba_3","description":"supercell\/EGOIST\/\u3054\u3061\u3046\u3055\/SDVX\/MK8","protected":false,"verified":false,"followers_count":163,"friends_count":141,"listed_count":3,"favourites_count":498,"statuses_count":2551,"created_at":"Thu Oct 15 20:39:24 +0000 2015","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654830997754675200\/PDoN-Mv2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654830997754675200\/PDoN-Mv2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3906489499\/1444941818","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930091175936,"id_str":"663727930091175936","text":"RT @___MxGxWxVx___: \u2605\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n\u2605\uff29\uff26\n\n\u2605\uff39\uff2f\uff35\n\n\u2605\uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\n\u2605#F4F\n\n\u2605#MGWV\n\n\u2605#FollowTrick\n\n\u2605#TeamFollowBack\n\n\u2605#AnotherFollowTrain\n\n\u2605#FOLLOW \u261c~(\u25cf\u032e\u0303\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4137427121,"id_str":"4137427121","name":"I FOLLOW BACK","screen_name":"TheVigorousBlog","location":"United Kingdom","url":null,"description":"#TeamFollowBack Blog\/Website in the making so stay tuned!","protected":false,"verified":false,"followers_count":427,"friends_count":686,"listed_count":2,"favourites_count":2,"statuses_count":321,"created_at":"Sat Nov 07 22:47:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663131497935847424\/yExAi7W5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663131497935847424\/yExAi7W5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4137427121\/1446937888","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 03:14:04 +0000 2015","id":662467958657142785,"id_str":"662467958657142785","text":"\u2605\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n\u2605\uff29\uff26\n\n\u2605\uff39\uff2f\uff35\n\n\u2605\uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\n\u2605#F4F\n\n\u2605#MGWV\n\n\u2605#FollowTrick\n\n\u2605#TeamFollowBack\n\n\u2605#AnotherFollowTrain\n\n\u2605#FOLLOW \u261c~(\u25cf\u032e\u0303\u2022)~\u261e @realfifty","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e___MxGxWxVx___ (SHOUT)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115459582,"id_str":"3115459582","name":"\u0f3a\u2022\u263eM G W V\u263d\u2022\u0f3b","screen_name":"___MxGxWxVx___","location":"PROMO\/RETWEET? DM FOR PRICES","url":null,"description":"Do you want 1000-5000 REAL followers a week? 5-15 shoutouts a day? Accountmanagement such as followback, unfollow & retweet? DM for more info & prices #MGWV","protected":false,"verified":false,"followers_count":98229,"friends_count":93840,"listed_count":500,"favourites_count":24,"statuses_count":47243,"created_at":"Wed Mar 25 17:53:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604961120051470336\/sdJocaFu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604961120051470336\/sdJocaFu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115459582\/1433068946","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":11,"entities":{"hashtags":[{"text":"F4F","indices":[35,39]},{"text":"MGWV","indices":[42,47]},{"text":"FollowTrick","indices":[50,62]},{"text":"TeamFollowBack","indices":[65,80]},{"text":"AnotherFollowTrain","indices":[83,102]},{"text":"FOLLOW","indices":[105,112]}],"urls":[],"user_mentions":[{"screen_name":"realfifty","name":" RealFifty #F4F#MGWV","id":31651997,"id_str":"31651997","indices":[124,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"F4F","indices":[55,59]},{"text":"MGWV","indices":[62,67]},{"text":"FollowTrick","indices":[70,82]},{"text":"TeamFollowBack","indices":[85,100]},{"text":"AnotherFollowTrain","indices":[103,122]},{"text":"FOLLOW","indices":[125,132]}],"urls":[],"user_mentions":[{"screen_name":"___MxGxWxVx___","name":"\u0f3a\u2022\u263eM G W V\u263d\u2022\u0f3b","id":3115459582,"id_str":"3115459582","indices":[3,18]},{"screen_name":"realfifty","name":" RealFifty #F4F#MGWV","id":31651997,"id_str":"31651997","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086821888,"id_str":"663727930086821888","text":"\u4e0a\u304b\u3089\u76ee\u7dda\u306a\u306e\u304c\u3046\u305c\u3048","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143441868,"id_str":"143441868","name":"MITO Jamboree \u30cb\u30e7\u30ed\u8535","screen_name":"mitomask","location":"\u5927\u5206\u770c\u5927\u5206\u5e02","url":"http:\/\/vakamax.com","description":"\u5927\u5206\u30c8\u30ea\u30cb\u30fc\u30bfBUSTA\u4ee3\u8868\/ex.Vakamax\/DJ\u3084\u3063\u3066\u307e\u3059\u2192 B-Jamboree\/KAMIKAZE\/\uff34\u30b7\u30e3\u30c4\u65d7\u5c4bRuleZ\/MTK48-\uff3431\/ \u71b1\u304f\u6fc0\u3057\u304f\u697d\u3057\u304f\u771f\u5263\u306a\u99ac\u9e7f\u3068Trinita\u30b4\u30fc\u30eb\u88cf\u304c\u5927\u597d\u7269\uff01\u300c\u305d\u306e\u5411\u3053\u3046\u3078\uff01\u541b\u306e\u58f0\u3082\u305d\u306e\u60f3\u3044\u3082\u300dhttp:\/\/www3.to\/busta","protected":false,"verified":false,"followers_count":1180,"friends_count":998,"listed_count":67,"favourites_count":2216,"statuses_count":96845,"created_at":"Thu May 13 13:36:25 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642565809265491968\/sT09OlFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642565809265491968\/sT09OlFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143441868\/1428489673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086981632,"id_str":"663727930086981632","text":"@madisonfairly VAI ME AJUDAR SIM PORRA NAO ENTENDEU AINDA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727324765028352,"in_reply_to_status_id_str":"663727324765028352","in_reply_to_user_id":4149236595,"in_reply_to_user_id_str":"4149236595","in_reply_to_screen_name":"madisonfairly","user":{"id":2820909897,"id_str":"2820909897","name":"justin","screen_name":"bieberipple","location":null,"url":null,"description":"baby when you\u2019re with me it\u2019s like an angel came by, and took me to heaven","protected":false,"verified":false,"followers_count":1870,"friends_count":874,"listed_count":3,"favourites_count":1179,"statuses_count":29710,"created_at":"Fri Oct 10 00:50:16 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662630932264976384\/geZDrX85.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662630932264976384\/geZDrX85.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663533501069828096\/orvHpC5V_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663533501069828096\/orvHpC5V_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"madisonfairly","name":"madison","id":4149236595,"id_str":"4149236595","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099396608,"id_str":"663727930099396608","text":"Hanggang telenovela na lang ba tayo? Wala na bang mas ibababaw pa dyan?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2322215394,"id_str":"2322215394","name":"k\u00fck\u00fc","screen_name":"kuchikupz","location":"Republic of the Philippines","url":null,"description":"My interests include music (but I don't sing), movies, and American TV series.","protected":false,"verified":false,"followers_count":5708,"friends_count":297,"listed_count":2,"favourites_count":33821,"statuses_count":3189,"created_at":"Sat Feb 01 11:56:48 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661194162704748545\/G-Yu1GgO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661194162704748545\/G-Yu1GgO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2322215394\/1443364621","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930111987712,"id_str":"663727930111987712","text":"RT @nansura1: \u0e2d\u0e48\u0e32\u0e19\u0e02\u0e48\u0e32\u0e27\u0e02\u0e2d\u0e07\u0e2d\u0e38\u0e1a\u0e25 \u0e2b\u0e0d\u0e34\u0e07\u0e17\u0e49\u0e2d\u0e07 4-5 \u0e40\u0e14\u0e37\u0e2d\u0e19 \u0e19\u0e49\u0e2d\u0e22\u0e43\u0e08\u0e41\u0e1f\u0e19 \u0e02\u0e35\u0e48\u0e23\u0e16\u0e21\u0e32\u0e2a\u0e30\u0e1e\u0e32\u0e19 200 \u0e1b\u0e35 \u0e42\u0e17\u0e23\u0e44\u0e1b\u0e1a\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e1a\u0e49\u0e32\u0e19\u0e08\u0e30\u0e01\u0e23\u0e30\u0e42\u0e14\u0e14\u0e19\u0e49\u0e33 \u0e08\u0e2d\u0e14\u0e23\u0e16\u0e17\u0e34\u0e49\u0e07\u0e44\u0e27\u0e49 \u0e44\u0e1b\u0e41\u0e14\u0e01\u0e2b\u0e21\u0e39\u0e01\u0e23\u0e30\u0e17\u0e30\u0e01\u0e31\u0e1a\u0e40\u0e1e\u0e37\u0e48\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1052408904,"id_str":"1052408904","name":"\u0e07\u0e37\u0e21\u0e21","screen_name":"kararimkim","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":102,"listed_count":0,"favourites_count":49,"statuses_count":17692,"created_at":"Tue Jan 01 11:42:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582927771644506113\/IYg9Xc8N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582927771644506113\/IYg9Xc8N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052408904\/1414059725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 16 16:43:54 +0000 2015","id":655061618187833344,"id_str":"655061618187833344","text":"\u0e2d\u0e48\u0e32\u0e19\u0e02\u0e48\u0e32\u0e27\u0e02\u0e2d\u0e07\u0e2d\u0e38\u0e1a\u0e25 \u0e2b\u0e0d\u0e34\u0e07\u0e17\u0e49\u0e2d\u0e07 4-5 \u0e40\u0e14\u0e37\u0e2d\u0e19 \u0e19\u0e49\u0e2d\u0e22\u0e43\u0e08\u0e41\u0e1f\u0e19 \u0e02\u0e35\u0e48\u0e23\u0e16\u0e21\u0e32\u0e2a\u0e30\u0e1e\u0e32\u0e19 200 \u0e1b\u0e35 \u0e42\u0e17\u0e23\u0e44\u0e1b\u0e1a\u0e2d\u0e01\u0e17\u0e35\u0e48\u0e1a\u0e49\u0e32\u0e19\u0e08\u0e30\u0e01\u0e23\u0e30\u0e42\u0e14\u0e14\u0e19\u0e49\u0e33 \u0e08\u0e2d\u0e14\u0e23\u0e16\u0e17\u0e34\u0e49\u0e07\u0e44\u0e27\u0e49 \u0e44\u0e1b\u0e41\u0e14\u0e01\u0e2b\u0e21\u0e39\u0e01\u0e23\u0e30\u0e17\u0e30\u0e01\u0e31\u0e1a\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19 555555555555","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77943792,"id_str":"77943792","name":"nansura1","screen_name":"nansura1","location":null,"url":"http:\/\/nansura1.tumblr.com\/","description":"Graphic | VIP 2007 @forvictori @chaelinCL","protected":false,"verified":false,"followers_count":470,"friends_count":139,"listed_count":3,"favourites_count":661,"statuses_count":142684,"created_at":"Mon Sep 28 06:29:52 +0000 2009","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104569230\/b5904cb5bcbeb184ba2a10aa8917c4f4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104569230\/b5904cb5bcbeb184ba2a10aa8917c4f4.jpeg","profile_background_tile":true,"profile_link_color":"A6C206","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DBDBDB","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513329723829547009\/2Kgdu1Bu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513329723829547009\/2Kgdu1Bu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77943792\/1418647473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9968,"favorite_count":425,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nansura1","name":"nansura1","id":77943792,"id_str":"77943792","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086846464,"id_str":"663727930086846464","text":"I think always https:\/\/t.co\/cpPEXaXVco","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71678513,"id_str":"71678513","name":"Hazel Palacio","screen_name":"hazelpalacio","location":null,"url":null,"description":"You'll always be as young as you feel","protected":false,"verified":false,"followers_count":625,"friends_count":913,"listed_count":5,"favourites_count":13091,"statuses_count":49867,"created_at":"Sat Sep 05 00:13:02 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/345284011\/IMG_0046.PNG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/345284011\/IMG_0046.PNG","profile_background_tile":true,"profile_link_color":"1EA8A8","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656749011039330304\/lifVxQXV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656749011039330304\/lifVxQXV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71678513\/1445950973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724350302982144,"quoted_status_id_str":"663724350302982144","quoted_status":{"created_at":"Mon Nov 09 14:26:31 +0000 2015","id":663724350302982144,"id_str":"663724350302982144","text":"Don't we all need chocolate at some point? https:\/\/t.co\/l1lcB6sf61","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246898948,"id_str":"3246898948","name":"Beach Blonde","screen_name":"MSacaluso","location":"Southern USA","url":null,"description":"I am a mystery disguised as an enigma","protected":false,"verified":false,"followers_count":356,"friends_count":1480,"listed_count":1,"favourites_count":3283,"statuses_count":344,"created_at":"Mon May 11 21:46:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651503154811564032\/BjicAFdY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651503154811564032\/BjicAFdY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246898948\/1444165356","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663719571199660033,"quoted_status_id_str":"663719571199660033","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/l1lcB6sf61","expanded_url":"https:\/\/twitter.com\/hazelpalacio\/status\/663719571199660033","display_url":"twitter.com\/hazelpalacio\/s\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cpPEXaXVco","expanded_url":"https:\/\/twitter.com\/msacaluso\/status\/663724350302982144","display_url":"twitter.com\/msacaluso\/stat\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930107793408,"id_str":"663727930107793408","text":"\u7d50\u5c40\u597d\u304d\u306b\u843d\u3061\u7740\u304f","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":483190141,"id_str":"483190141","name":"\u3053\u308d","screen_name":"kr_83_v","location":"\u5c71\u5f62\u770c","url":null,"description":"\u97f3\u697d\u3001\u30b2\u30fc\u30e0\u3001\u6f2b\u753b\u3001\u30a2\u30cb\u30e1\u306a\u3069\u304c\u597d\u304d\u306a18\u6b73\u5973\u3002\u6687\u306a\u3068\u304d\u306f\u57fa\u672c\u30cb\u30b3\u52d5\u306e\u30b2\u30fc\u30e0\u5b9f\u6cc1\u898b\u3066\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\/\u547c\u3073\u30bf\u30e1\u5927\u6b53\u8fce\uff01\u6c17\u4ed8\u304b\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u306e\u3067\u4e00\u8a00\u30ea\u30d7\u3082\u3089\u3048\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u301c\u30fe(\uff65\uff6a\uff65\u30fe) \u5927\u8888\u88df\u3067\u306f\u306a\u304f\u6700\u611b\u306f\u30b7\u30c9\u3067\u3002","protected":false,"verified":false,"followers_count":405,"friends_count":265,"listed_count":5,"favourites_count":79,"statuses_count":21716,"created_at":"Sat Feb 04 18:51:17 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663233935871094784\/GqEiCCO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663233935871094784\/GqEiCCO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483190141\/1437716749","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044663"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930082762753,"id_str":"663727930082762753","text":"@TheRicass Ah, I saw a leaked (now obviously fake) list earlier that had Bayonetta and I got excited. That was short lived.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725036746993664,"in_reply_to_status_id_str":"663725036746993664","in_reply_to_user_id":85073927,"in_reply_to_user_id_str":"85073927","in_reply_to_screen_name":"TheRicass","user":{"id":402125793,"id_str":"402125793","name":"Mike Davies","screen_name":"atMikeDavies","location":"York, England","url":"https:\/\/unblevbletekkers.wordpress.com","description":"Professional wordsmith living in York, the greatest city in the world!","protected":false,"verified":false,"followers_count":253,"friends_count":713,"listed_count":8,"favourites_count":8,"statuses_count":2727,"created_at":"Mon Oct 31 15:54:47 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473458637457723392\/c6L-xE_d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473458637457723392\/c6L-xE_d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402125793\/1408456308","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheRicass","name":"Ric","id":85073927,"id_str":"85073927","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044657"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930090979328,"id_str":"663727930090979328","text":"RT @kaemkrty: \u0e14\u0e35\u0e40\u0e19\u0e32\u0e30\u0e07\u0e32\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e01\u0e2d\u0e07\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e17\u0e33\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1422447110,"id_str":"1422447110","name":"\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07","screen_name":"Beemitsrp","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":536,"friends_count":288,"listed_count":0,"favourites_count":448,"statuses_count":20500,"created_at":"Sun May 12 06:54:38 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2E6EC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504261037260939264\/MMfTBcX2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504261037260939264\/MMfTBcX2.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663543256001581056\/Wr4ceIHY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663543256001581056\/Wr4ceIHY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1422447110\/1446636324","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:52:23 +0000 2015","id":663715762327023617,"id_str":"663715762327023617","text":"\u0e14\u0e35\u0e40\u0e19\u0e32\u0e30\u0e07\u0e32\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e01\u0e2d\u0e07\u0e1e\u0e36\u0e48\u0e07\u0e21\u0e32\u0e40\u0e23\u0e34\u0e48\u0e21\u0e17\u0e33\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356892108,"id_str":"356892108","name":"221B","screen_name":"kaemkrty","location":"\/\/1975\/\/","url":null,"description":"series,movie addict | #FCB GU12 | 409sbw","protected":false,"verified":false,"followers_count":882,"friends_count":323,"listed_count":17,"favourites_count":6524,"statuses_count":150956,"created_at":"Wed Aug 17 14:44:53 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFE1FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546684739642331136\/caecDKTF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546684739642331136\/caecDKTF.jpeg","profile_background_tile":false,"profile_link_color":"C71585","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662996611551784960\/Sjg08iOP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662996611551784960\/Sjg08iOP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/356892108\/1446912076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00a83a96717dfea7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00a83a96717dfea7.json","place_type":"city","name":"\u0e2a\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e35","full_name":"\u0e2a\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e35, \u0e08.\u0e2a\u0e23\u0e30\u0e1a\u0e38\u0e23\u0e35","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.884019,14.496312],[100.884019,14.567120],[100.951205,14.567120],[100.951205,14.496312]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaemkrty","name":"221B","id":356892108,"id_str":"356892108","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930091167744,"id_str":"663727930091167744","text":"RT @JacksonGoMusic: Me gust\u00f3 un video de @YouTube de @jagoz_ https:\/\/t.co\/1oZCZMVmN5 H\u00e1blame Jes\u00fas ( En Vivo ) - JackSON GOMEZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3125529148,"id_str":"3125529148","name":"Nayi De Vargas","screen_name":"EduNayideCristo","location":null,"url":null,"description":"Somos una familia enamorada del Se\u00f1or Jes\u00fas","protected":false,"verified":false,"followers_count":10,"friends_count":75,"listed_count":0,"favourites_count":85,"statuses_count":132,"created_at":"Sun Mar 29 02:31:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604843302735761408\/29UGgnW1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604843302735761408\/29UGgnW1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3125529148\/1433041161","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:52:34 +0000 2015","id":663564812069298177,"id_str":"663564812069298177","text":"Me gust\u00f3 un video de @YouTube de @jagoz_ https:\/\/t.co\/1oZCZMVmN5 H\u00e1blame Jes\u00fas ( En Vivo ) - JackSON GOMEZ","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":436472575,"id_str":"436472575","name":"JackSON GOMEZ \u30c4","screen_name":"JacksonGoMusic","location":"Bogota, CO","url":"https:\/\/jacksongomez.bandpage.com","description":"AMO A DIOS POR SOBRE TODAS LAS COSAS!! Y USO LA MUSICA, ES MI HERRAMIENTA PARA CONECTAR A LOS DEMAS CON EL!","protected":false,"verified":false,"followers_count":458,"friends_count":153,"listed_count":2,"favourites_count":55,"statuses_count":3283,"created_at":"Wed Dec 14 06:37:11 +0000 2011","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B2816","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/879459942\/ed744387cfdcd09eae67bfe753a47893.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/879459942\/ed744387cfdcd09eae67bfe753a47893.jpeg","profile_background_tile":true,"profile_link_color":"2B2816","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"24210E","profile_text_color":"89B5A2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560835445597433856\/9m4Pa2aY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560835445597433856\/9m4Pa2aY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436472575\/1399148713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1oZCZMVmN5","expanded_url":"http:\/\/youtu.be\/6nqf36drFhw?a","display_url":"youtu.be\/6nqf36drFhw?a","indices":[41,64]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[21,29]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1oZCZMVmN5","expanded_url":"http:\/\/youtu.be\/6nqf36drFhw?a","display_url":"youtu.be\/6nqf36drFhw?a","indices":[61,84]}],"user_mentions":[{"screen_name":"JacksonGoMusic","name":"JackSON GOMEZ \u30c4","id":436472575,"id_str":"436472575","indices":[3,18]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[41,49]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930082627584,"id_str":"663727930082627584","text":"RT @wangisback: [PREVIEW]151105 \uc5ec\uc758\ub3c4 \ud32c\uc2f8\ud83c\udf39 #GOT7 #JACKSONWANG https:\/\/t.co\/f2By1PXCpC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2646986762,"id_str":"2646986762","name":"\u24dc\u24d0\u24e1\u24db\u24d4\u24e3","screen_name":"jacklet2808","location":null,"url":"https:\/\/instagram.com\/jacklet2808\/","description":"\u2605GOT7+IGOT7= FOREVER\u2605","protected":false,"verified":false,"followers_count":175,"friends_count":503,"listed_count":0,"favourites_count":3293,"statuses_count":13618,"created_at":"Tue Jul 15 05:56:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644778497450205185\/zc2ImtPb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644778497450205185\/zc2ImtPb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2646986762\/1445871684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:24:15 +0000 2015","id":662274230306738176,"id_str":"662274230306738176","text":"[PREVIEW]151105 \uc5ec\uc758\ub3c4 \ud32c\uc2f8\ud83c\udf39 #GOT7 #JACKSONWANG https:\/\/t.co\/f2By1PXCpC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2981467441,"id_str":"2981467441","name":"WANG IS BACK","screen_name":"wangisback","location":null,"url":"http:\/\/wangisback.tistory.com","description":"\u2605GOT7 - JACKSON \uc7ad\uc2a8 FANPAGE \u2605 INSTAGRAM: wangisback WEIBO:wangisback328\n\n \nhttp:\/\/wangisback.tistory.com\/notice\n1st Calendar Days with you","protected":false,"verified":false,"followers_count":11046,"friends_count":35,"listed_count":297,"favourites_count":30,"statuses_count":1245,"created_at":"Wed Jan 14 03:14:31 +0000 2015","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653412127437262849\/9dbJL_DX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653412127437262849\/9dbJL_DX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2981467441\/1438884996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":514,"favorite_count":224,"entities":{"hashtags":[{"text":"GOT7","indices":[24,29]},{"text":"JACKSONWANG","indices":[30,42]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662274209809235968,"id_str":"662274209809235968","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":650,"resize":"fit"},"medium":{"w":600,"h":418,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662274209809235968,"id_str":"662274209809235968","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":650,"resize":"fit"},"medium":{"w":600,"h":418,"resize":"fit"}}},{"id":662274212896247811,"id_str":"662274212896247811","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe40OVEAMbvzL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe40OVEAMbvzL.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":724,"resize":"fit"},"large":{"w":480,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"}}},{"id":662274217212182528,"id_str":"662274217212182528","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe5ETVAAAqnTz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe5ETVAAAqnTz.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"large":{"w":630,"h":953,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":514,"resize":"fit"}}},{"id":662274227798589440,"id_str":"662274227798589440","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe5rvUwAAkgMx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe5rvUwAAkgMx.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"large":{"w":658,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":496,"resize":"fit"},"medium":{"w":600,"h":875,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GOT7","indices":[40,45]},{"text":"JACKSONWANG","indices":[46,58]}],"urls":[],"user_mentions":[{"screen_name":"wangisback","name":"WANG IS BACK","id":2981467441,"id_str":"2981467441","indices":[3,14]}],"symbols":[],"media":[{"id":662274209809235968,"id_str":"662274209809235968","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":650,"resize":"fit"},"medium":{"w":600,"h":418,"resize":"fit"}},"source_status_id":662274230306738176,"source_status_id_str":"662274230306738176","source_user_id":2981467441,"source_user_id_str":"2981467441"}]},"extended_entities":{"media":[{"id":662274209809235968,"id_str":"662274209809235968","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe4ouVAAA_lKf.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":933,"h":650,"resize":"fit"},"medium":{"w":600,"h":418,"resize":"fit"}},"source_status_id":662274230306738176,"source_status_id_str":"662274230306738176","source_user_id":2981467441,"source_user_id_str":"2981467441"},{"id":662274212896247811,"id_str":"662274212896247811","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe40OVEAMbvzL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe40OVEAMbvzL.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":724,"resize":"fit"},"large":{"w":480,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"}},"source_status_id":662274230306738176,"source_status_id_str":"662274230306738176","source_user_id":2981467441,"source_user_id_str":"2981467441"},{"id":662274217212182528,"id_str":"662274217212182528","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe5ETVAAAqnTz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe5ETVAAAqnTz.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"large":{"w":630,"h":953,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":514,"resize":"fit"}},"source_status_id":662274230306738176,"source_status_id_str":"662274230306738176","source_user_id":2981467441,"source_user_id_str":"2981467441"},{"id":662274227798589440,"id_str":"662274227798589440","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDe5rvUwAAkgMx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDe5rvUwAAkgMx.jpg","url":"https:\/\/t.co\/f2By1PXCpC","display_url":"pic.twitter.com\/f2By1PXCpC","expanded_url":"http:\/\/twitter.com\/wangisback\/status\/662274230306738176\/photo\/1","type":"photo","sizes":{"large":{"w":658,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":496,"resize":"fit"},"medium":{"w":600,"h":875,"resize":"fit"}},"source_status_id":662274230306738176,"source_status_id_str":"662274230306738176","source_user_id":2981467441,"source_user_id_str":"2981467441"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080044657"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103631872,"id_str":"663727930103631872","text":"\u3053\u3093\u306a\u6642\u9593\u306bnimoca\u3092\u62fe\u3063\u3066\u3057\u307e\u3063\u305f\u3068\u3044\u3046\u5947\u8de1\n\u8b66\u5bdf\u884c\u3053\u2026\u7b11\n\u4eca\u65e5\u304f\u3089\u3044\u306f\u52d8\u5f01\u3057\u3066\u307b\u3057\u3044\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235149540,"id_str":"3235149540","name":"\u30d5\u30eb\u30fc\u30ea\u30fc\u30eb","screen_name":"fleurir666","location":null,"url":null,"description":"11\u670828\u65e5\u9580\u53f8\u3067\u30e9\u30a4\u30d6 11\u670829\u65e5D-studio","protected":false,"verified":false,"followers_count":99,"friends_count":98,"listed_count":0,"favourites_count":143,"statuses_count":449,"created_at":"Wed Jun 03 15:27:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634801336232448000\/oIjh7kba_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634801336232448000\/oIjh7kba_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235149540\/1433586513","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044662"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930120409088,"id_str":"663727930120409088","text":"@DI_GregLestrade -- in after you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727523038158849,"in_reply_to_status_id_str":"663727523038158849","in_reply_to_user_id":2852900415,"in_reply_to_user_id_str":"2852900415","in_reply_to_screen_name":"DI_GregLestrade","user":{"id":1392302598,"id_str":"1392302598","name":"Mycroft Holmes","screen_name":"GovernmentCroft","location":"Unknown.","url":"http:\/\/fuckyeahmagcroft.tumblr.com\/","description":"Classified.","protected":false,"verified":false,"followers_count":5352,"friends_count":860,"listed_count":25,"favourites_count":5606,"statuses_count":42160,"created_at":"Tue Apr 30 15:23:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551225859856531456\/p0poc4YT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551225859856531456\/p0poc4YT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1392302598\/1445216318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DI_GregLestrade","name":"Greg Lestrade","id":2852900415,"id_str":"2852900415","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044666"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112000001,"id_str":"663727930112000001","text":"Fall in love with yourself. Fall in love with your life. \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1280682926,"id_str":"1280682926","name":"Zam","screen_name":"zams_arJ","location":"Tenerife, Magdalena","url":null,"description":"Enter at your own risk. Uni. College London (UCL), KYUEM, SASER. London, UK | Negeri Sembilan, MY","protected":false,"verified":false,"followers_count":132,"friends_count":144,"listed_count":1,"favourites_count":820,"statuses_count":7614,"created_at":"Tue Mar 19 15:03:35 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660844571547471872\/OFLTaYdc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660844571547471872\/OFLTaYdc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280682926\/1363708002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930107908097,"id_str":"663727930107908097","text":"Walker Evans \/ Forrest City, Arkansas \/ February, 1937 - https:\/\/t.co\/RrSvJIY8WR \/ via @alcarbon68","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663660544436609025,"in_reply_to_status_id_str":"663660544436609025","in_reply_to_user_id":2756312377,"in_reply_to_user_id_str":"2756312377","in_reply_to_screen_name":"alcarbon68","user":{"id":11775362,"id_str":"11775362","name":"Camille Stein","screen_name":"CamilleStein","location":"Ourense \/ Galicia \/ Espa\u00f1a","url":"http:\/\/about.me\/camille.stein","description":"- Hombre \/ Male \/ \u2642 - (Siglos XX & XXI) - \n\nIm\u00e1genes, Escrituras, M\u00fasicas y otros Sentidos Ocultos. - Se llega al sol por encantamiento. (Ren\u00e9 Char)","protected":false,"verified":false,"followers_count":21446,"friends_count":20504,"listed_count":830,"favourites_count":10023,"statuses_count":55246,"created_at":"Wed Jan 02 22:39:42 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0B0A08","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/795026814\/25c3147f353eef86228b2e474db8ca37.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/795026814\/25c3147f353eef86228b2e474db8ca37.jpeg","profile_background_tile":true,"profile_link_color":"858069","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0B0A08","profile_text_color":"969684","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1785600092\/Dragon_OPG_180x180_copia_Facebook_15_dic_2011_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1785600092\/Dragon_OPG_180x180_copia_Facebook_15_dic_2011_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11775362\/1397670542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alcarbon68","name":"aucharbon","id":2756312377,"id_str":"2756312377","indices":[87,98]}],"symbols":[],"media":[{"id":663660543270649856,"id_str":"663660543270649856","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLv3UXAAAcX3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLv3UXAAAcX3l.jpg","url":"https:\/\/t.co\/RrSvJIY8WR","display_url":"pic.twitter.com\/RrSvJIY8WR","expanded_url":"http:\/\/twitter.com\/alcarbon68\/status\/663660544436609025\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":386,"resize":"fit"},"large":{"w":1024,"h":660,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663660544436609025,"source_status_id_str":"663660544436609025","source_user_id":2756312377,"source_user_id_str":"2756312377"}]},"extended_entities":{"media":[{"id":663660543270649856,"id_str":"663660543270649856","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLv3UXAAAcX3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLv3UXAAAcX3l.jpg","url":"https:\/\/t.co\/RrSvJIY8WR","display_url":"pic.twitter.com\/RrSvJIY8WR","expanded_url":"http:\/\/twitter.com\/alcarbon68\/status\/663660544436609025\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":386,"resize":"fit"},"large":{"w":1024,"h":660,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663660544436609025,"source_status_id_str":"663660544436609025","source_user_id":2756312377,"source_user_id_str":"2756312377"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044663"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099404800,"id_str":"663727930099404800","text":"RT @rratkinson: Absolutely !!! https:\/\/t.co\/rC7edtwLZL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99110535,"id_str":"99110535","name":"Quo Libertatem","screen_name":"_Comitatus_","location":"Traveling. Depends on day.","url":null,"description":"American. Pro III% Constitution, Small Government, German Shepherds, Malinois, Sailing, Flying, Military #MWD #GSD #GOA #NRA #2A #Liberty #USA","protected":false,"verified":false,"followers_count":2312,"friends_count":2317,"listed_count":57,"favourites_count":9333,"statuses_count":14023,"created_at":"Thu Dec 24 14:11:00 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662425070862598144\/qNrwIm3g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662425070862598144\/qNrwIm3g.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375478212964352\/yqieq07G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375478212964352\/yqieq07G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99110535\/1446923086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:26 +0000 2015","id":663726845821513732,"id_str":"663726845821513732","text":"Absolutely !!! https:\/\/t.co\/rC7edtwLZL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216195586,"id_str":"216195586","name":"Reagan Atkinson","screen_name":"rratkinson","location":"Pasadena, TX","url":null,"description":"Biblical Christian conservative, Reaganite, NRA gun lover, MOLON LABE, Native Texan, digital geek, not perfect but special edition. Love my Senator Cruz!","protected":false,"verified":false,"followers_count":7577,"friends_count":8307,"listed_count":274,"favourites_count":1498,"statuses_count":148382,"created_at":"Tue Nov 16 01:08:23 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3381295700\/42307ca0d4d85fbb0169cc5f5e5eea4f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3381295700\/42307ca0d4d85fbb0169cc5f5e5eea4f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216195586\/1438192566","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663714165245128704,"quoted_status_id_str":"663714165245128704","quoted_status":{"created_at":"Mon Nov 09 13:46:02 +0000 2015","id":663714165245128704,"id_str":"663714165245128704","text":"I would die for my country rather then see her lay down without a fight...\n\n#Patriots\n\n#TCOT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62815642,"id_str":"62815642","name":"Katt\u2764\ufe0fCountry","screen_name":"TrucksHorsesDog","location":"Arizona, USA","url":"http:\/\/youtu.be\/wSCaAx4cs3w","description":"Conservative #ProConstitution LoveAmericanExceptionalism #ProGun #2A #ProLife #ProIsrael #CruzCrew #SOV #SOT #LoveFreedom #StandUnited","protected":false,"verified":false,"followers_count":112841,"friends_count":73426,"listed_count":957,"favourites_count":20909,"statuses_count":82733,"created_at":"Tue Aug 04 13:22:24 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000098699309\/2b56f7e8fa2824fa495276371b8df70f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000098699309\/2b56f7e8fa2824fa495276371b8df70f.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352625698508801\/3bcuDKqu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352625698508801\/3bcuDKqu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62815642\/1446890053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Patriots","indices":[76,85]},{"text":"TCOT","indices":[87,92]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rC7edtwLZL","expanded_url":"https:\/\/twitter.com\/truckshorsesdog\/status\/663714165245128704","display_url":"twitter.com\/truckshorsesdo\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rC7edtwLZL","expanded_url":"https:\/\/twitter.com\/truckshorsesdog\/status\/663714165245128704","display_url":"twitter.com\/truckshorsesdo\u2026","indices":[31,54]}],"user_mentions":[{"screen_name":"rratkinson","name":"Reagan Atkinson","id":216195586,"id_str":"216195586","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930091008000,"id_str":"663727930091008000","text":"RT @MORI_Natsuko: \u65e5\u672c\u3067\u300c\u30d1\u30d1\u300d\u300c\u30d1\u30c3\u30d1\u300d\u3068\u547c\u3070\u308c\u3066\u308b\u77f3\u5207\u4e38\u304c\u3001\u6d77\u5916\u5be9\u795e\u8005\u306e\u9593\u3067\u3082\u3084\u306f\u308a\u300cIshi daddy\u300d\u3068\u547c\u3070\u308c\u3066\u308b\u4e8b\u5b9f\u306b\u3001\u3044\u307e\u3060\u306b\u6570\u65e5\u306b\u4e00\u5ea6\u306e\u5272\u5408\u3067\u601d\u3044\u51fa\u3057\u7b11\u3044\u3057\u3066\u308b\u308f\u3001\u79c1\u2026\u2026\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220704298,"id_str":"220704298","name":"\u67da\u5b50\u871c\u30b5\u30f3@\u54f2\u3055\u3093\u306e\u3068\u308a\u3053","screen_name":"yuzumitucochou","location":"\u9eba\u3064\u3086\u306e\u4e2d","url":null,"description":"\u30c0\u30a4\u30e4\u6cbc\u3068\u3068\u3046\u3089\u3076\u6cbc\u306e\u6c11\u3002 \u4e0d\u8a00\u5b9f\u884c\u80cc\u4e2d\u3067\u8a9e\u308b\u7537\u3001\u54f2\u3055\u3093\u795e\u63a8\u3057\u5922\u8c5a\u3002\u964d\u8c37\u541b\u306f\u9053\u6c11\u306e\u661f\uff01\u3084\u304d\u3046\u597d\u304d\u3002\u9060\u3044\u6614\u306b\u6210\u4eba\u6e08\u3002 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u30d6\u30ed\u30c3\u30af\u3059\u308b\u304b\u3082\u3002","protected":false,"verified":false,"followers_count":55,"friends_count":134,"listed_count":3,"favourites_count":3483,"statuses_count":26802,"created_at":"Sun Nov 28 16:04:05 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614426254217850880\/weV5jQM3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614426254217850880\/weV5jQM3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220704298\/1431542667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:36:01 +0000 2015","id":663666342386532353,"id_str":"663666342386532353","text":"\u65e5\u672c\u3067\u300c\u30d1\u30d1\u300d\u300c\u30d1\u30c3\u30d1\u300d\u3068\u547c\u3070\u308c\u3066\u308b\u77f3\u5207\u4e38\u304c\u3001\u6d77\u5916\u5be9\u795e\u8005\u306e\u9593\u3067\u3082\u3084\u306f\u308a\u300cIshi daddy\u300d\u3068\u547c\u3070\u308c\u3066\u308b\u4e8b\u5b9f\u306b\u3001\u3044\u307e\u3060\u306b\u6570\u65e5\u306b\u4e00\u5ea6\u306e\u5272\u5408\u3067\u601d\u3044\u51fa\u3057\u7b11\u3044\u3057\u3066\u308b\u308f\u3001\u79c1\u2026\u2026\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89413999,"id_str":"89413999","name":"\u68ee\u5948\u6d25\u5b50\uff0f\u507d\u57a2\u51cd\u7d50\u3001\u7686\u69d8\u306b\u611f\u8b1d\u3067\u3059\uff01","screen_name":"MORI_Natsuko","location":"\u6771\u4eac\u90fd","url":"http:\/\/morinatsuko.com\/","description":"\u4f5c\u5bb6\u3002\u30a8\u30ed\u30b9\uff08\u7279\u306b\u540c\u6027\u611b\uff09\u3068\u304a\u7b11\u3044\u3092\u4e8c\u5927\u30c6\u30fc\u30de\u3068\u3057\u3066\u304a\u308a\u307e\u3059\u3002\n\u6ce8\u610f\u2026\u2026amazon\u3078\u306e\u30ea\u30f3\u30af\u306f\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3067\u3059\uff0f\u53cd\u8ad6\u306f\u3057\u3070\u3057\u3070\u30b9\u30eb\u30fc\u3084\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\uff0f\u300c\u5200\u5263\u4e71\u821e\u300d\u3084\u300cTIGER&BUNNY\u300d\u306b\u95a2\u3057\u52dd\u624b\u306a\u89e3\u91c8\u3084\u3089\u5984\u60f3\u3084\u3089\u3092\u305f\u308c\u6d41\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":8360,"friends_count":133,"listed_count":773,"favourites_count":463,"statuses_count":25753,"created_at":"Thu Nov 12 09:56:07 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419496315198767104\/yu8ZoXjZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419496315198767104\/yu8ZoXjZ_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1570,"favorite_count":627,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MORI_Natsuko","name":"\u68ee\u5948\u6d25\u5b50\uff0f\u507d\u57a2\u51cd\u7d50\u3001\u7686\u69d8\u306b\u611f\u8b1d\u3067\u3059\uff01","id":89413999,"id_str":"89413999","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044659"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099548160,"id_str":"663727930099548160","text":"\u3010\u91cd\u8981\u301117\u5352\u304b\u3089\u5c31\u6d3b\u306e\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u307e\u305f\u5909\u308f\u308a\u307e\u3059\uff01\u65e9\u3081\u306e\u60c5\u5831\u53ce\u96c6\u3092\u3059\u308b\u5b66\u751f\u306b\u306f\u3001\u6700\u901f\u3067\u60c5\u5831\u3092\u5f97\u3089\u308c\u308b\u5c31\u6d3b\u30a2\u30d7\u30ea\u300cLIFE\u300d\u304c\u304a\u30b9\u30b9\u30e1\u3002\u5546\u793e\u3001\u30b3\u30f3\u30b5\u30eb\u3001\u30e1\u30fc\u30ab\u30fc\u3001\u91d1\u878d\u306a\u3069\u3042\u3089\u3086\u308b\u696d\u614b\u306e\u4f01\u696d\u3068\u76f4\u63a5\u30a2\u30d7\u30ea\u3067\u3084\u308a\u3068\u308a\u3067\u304d\u308b\uff01\u4e8b\u524d\u767b\u9332\u53d7\u4ed8\u4e2dhttps:\/\/t.co\/yZ6SFmNnyD","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2477183798,"id_str":"2477183798","name":"\u7406\u79d1\u5927\u5c31\u6d3b","screen_name":"rikadaishu","location":null,"url":null,"description":"\u3010\u7406\u79d1\u5927\u751f\u5411\u3051\u306e\u5c31\u6d3b\u30a2\u30ab\u30a6\u30f3\u30c8\u3011\u6771\u4eac\u7406\u79d1\u5927\u5b66\u306e\u5c31\u6d3b\u751f\u5411\u3051\u306b\u7279\u5316\u3057\u305f\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u4eca\u5f8c\u5c31\u6d3b\u3092\u3072\u304b\u3048\u308b\u7406\u79d1\u5927\u306e\u5b66\u751f\u306f\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\uff01\u59c9\u59b9\u30a2\u30ab\u30a6\u30f3\u30c8 \u65e9\u7a32\u7530\u5c31\u6d3b\u2192@wasedashu \u6176\u61c9\u5c31\u6d3b\u2192@keioshu \u4e0a\u667a\u5c31\u6d3b\u2192@jochishu ICU\u5c31\u6d3b\u2192@icushu","protected":false,"verified":false,"followers_count":463,"friends_count":372,"listed_count":8,"favourites_count":0,"statuses_count":11077,"created_at":"Sun May 04 17:30:32 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641858492832329728\/AmGNBQK__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641858492832329728\/AmGNBQK__normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yZ6SFmNnyD","expanded_url":"http:\/\/bit.ly\/1Si9u3z","display_url":"bit.ly\/1Si9u3z","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086785024,"id_str":"663727930086785024","text":"\u3057\u304a\u308a\u3093\u306e\u30bb\u30fc\u30e9\u30fc\u670d\u59ff\u3082\u53ef\u611b\u304b\u3063\u305f\u3088\uff01\u30c9\u30ad\u30c9\u30ad\u306f\u3057\u306a\u304b\u3063\u305f\u304cw\n\n\u3010\u73fe\u572863CHEER\u2661\u3011\u5c0f\u5ba4\u5fd7\u7e54\u3092\u5fdc\u63f4\u4e2d\uff01 https:\/\/t.co\/4eXRJx2Elp #CHEERZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1625600568,"id_str":"1625600568","name":"\u30bf\u30af\u30b7\u30fc\u306e\u3086\u3044\u305f\u3093","screen_name":"takushi0801","location":"Aka!Bane!JUMP","url":null,"description":"\u6a4b\u7530\u552f(\u3086\u3044\u305f\u3093)\/ \u597d\u304d\u306a\u306e\u306f\u3044\u3061\u3054\u3061\u3083\u3093\uff01 \u3086\u3044\u305f\u3093\u306b\u307e\u305f\u4f1a\u3048\u308b\u65e5\u3092\u5f85\u3061\u7d9a\u3051\u308b http:\/\/s.ameblo.jp\/yuumachi0521?frm_id=v.jpameblo","protected":false,"verified":false,"followers_count":232,"friends_count":224,"listed_count":1,"favourites_count":2491,"statuses_count":14177,"created_at":"Sat Jul 27 14:45:20 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368119923032065\/G8ooLYhT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368119923032065\/G8ooLYhT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1625600568\/1443975439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CHEERZ","indices":[79,86]}],"urls":[{"url":"https:\/\/t.co\/4eXRJx2Elp","expanded_url":"https:\/\/cheerz.cz\/post\/112268","display_url":"cheerz.cz\/post\/112268","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103701506,"id_str":"663727930103701506","text":"@_gabriellarp @arrudx atta sei qual \u00e9!!! Perto do Carrefour!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733927727105,"in_reply_to_status_id_str":"663727733927727105","in_reply_to_user_id":1257636866,"in_reply_to_user_id_str":"1257636866","in_reply_to_screen_name":"_gabriellarp","user":{"id":128372021,"id_str":"128372021","name":"Dayane Souza","screen_name":"DayaneSouz96","location":"Rio de janeiro","url":null,"description":"Take every chance, drop every fear.","protected":false,"verified":false,"followers_count":181,"friends_count":179,"listed_count":0,"favourites_count":10225,"statuses_count":7669,"created_at":"Wed Mar 31 23:10:02 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167015822\/TEmE1U5B.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167015822\/TEmE1U5B.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656519804724056064\/HxXSiFaJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656519804724056064\/HxXSiFaJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128372021\/1445361671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_gabriellarp","name":"gabi","id":1257636866,"id_str":"1257636866","indices":[0,13]},{"screen_name":"arrudx","name":"a \u264f","id":1416620432,"id_str":"1416620432","indices":[14,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080044662"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099429378,"id_str":"663727930099429378","text":"RT @yookihyun_net: 151107 \uba5c\ub860\ubba4\uc9c1\uc5b4\uc6cc\ub4dc #KIHYUN \n@OfficialMonstaX #\uae30\ud604 #HERO \n\uc0b0\ub2e4\ub294\uac74 #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4 #MONSTA_X https:\/\/t.co\/peoVrknWwp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258875606,"id_str":"3258875606","name":"jimin's rea","screen_name":"DOTJIMIN","location":"min yoongi my bias wrecker","url":"http:\/\/ask.fm\/dotjimin?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","description":"bangtan and monsta x saved my life","protected":false,"verified":false,"followers_count":568,"friends_count":338,"listed_count":4,"favourites_count":14287,"statuses_count":16508,"created_at":"Sun Jun 28 12:36:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662243756863651840\/wVhXhlef_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662243756863651840\/wVhXhlef_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258875606\/1446732444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:59:41 +0000 2015","id":662962624271781889,"id_str":"662962624271781889","text":"151107 \uba5c\ub860\ubba4\uc9c1\uc5b4\uc6cc\ub4dc #KIHYUN \n@OfficialMonstaX #\uae30\ud604 #HERO \n\uc0b0\ub2e4\ub294\uac74 #\ubaac\uc2a4\ud0c0\uc5d1\uc2a4 #MONSTA_X https:\/\/t.co\/peoVrknWwp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195397999,"id_str":"3195397999","name":"GOOD BOY !","screen_name":"yookihyun_net","location":"yookihyun_net@naver.com","url":"http:\/\/www.yookihyun.net","description":"@OfficialMonstaX \ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \uae30\ud604 \ud32c\ud398\uc774\uc9c0. MONSTA X KIHYUN FANPAGE.","protected":false,"verified":false,"followers_count":8372,"friends_count":26,"listed_count":396,"favourites_count":400,"statuses_count":1573,"created_at":"Thu May 14 14:14:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647076233419755520\/9ZZZLp4V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647076233419755520\/9ZZZLp4V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195397999\/1446211515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":351,"favorite_count":104,"entities":{"hashtags":[{"text":"KIHYUN","indices":[15,22]},{"text":"\uae30\ud604","indices":[41,44]},{"text":"HERO","indices":[45,50]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[57,63]},{"text":"MONSTA_X","indices":[64,73]}],"urls":[],"user_mentions":[{"screen_name":"OfficialMonstaX","name":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4_MONSTA X","id":3030158859,"id_str":"3030158859","indices":[24,40]}],"symbols":[],"media":[{"id":662962609516208128,"id_str":"662962609516208128","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662962609516208128,"id_str":"662962609516208128","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":662962609524621312,"id_str":"662962609524621312","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xgUwAASBql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xgUwAASBql.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KIHYUN","indices":[34,41]},{"text":"\uae30\ud604","indices":[60,63]},{"text":"HERO","indices":[64,69]},{"text":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4","indices":[76,82]},{"text":"MONSTA_X","indices":[83,92]}],"urls":[],"user_mentions":[{"screen_name":"yookihyun_net","name":"GOOD BOY !","id":3195397999,"id_str":"3195397999","indices":[3,17]},{"screen_name":"OfficialMonstaX","name":"\ubaac\uc2a4\ud0c0\uc5d1\uc2a4_MONSTA X","id":3030158859,"id_str":"3030158859","indices":[43,59]}],"symbols":[],"media":[{"id":662962609516208128,"id_str":"662962609516208128","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":662962624271781889,"source_status_id_str":"662962624271781889","source_user_id":3195397999,"source_user_id_str":"3195397999"}]},"extended_entities":{"media":[{"id":662962609516208128,"id_str":"662962609516208128","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xeUYAAC6VN.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":662962624271781889,"source_status_id_str":"662962624271781889","source_user_id":3195397999,"source_user_id_str":"3195397999"},{"id":662962609524621312,"id_str":"662962609524621312","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQ-xgUwAASBql.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQ-xgUwAASBql.jpg","url":"https:\/\/t.co\/peoVrknWwp","display_url":"pic.twitter.com\/peoVrknWwp","expanded_url":"http:\/\/twitter.com\/yookihyun_net\/status\/662962624271781889\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":662962624271781889,"source_status_id_str":"662962624271781889","source_user_id":3195397999,"source_user_id_str":"3195397999"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930120536068,"id_str":"663727930120536068","text":"RT @yana_pechnikova: \u043a\u043e\u0433\u0434\u0430-\u043d\u0438\u0431\u0443\u0434\u044c \u044f \u0442\u043e\u0436\u0435 \u0441\u0442\u0430\u043d\u0443 \u0445\u0443\u0434\u043e\u0439 \u043a\u0440\u0430\u0441\u043e\u0442\u043a\u043e\u0439!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1413474823,"id_str":"1413474823","name":"R E Z E D A","screen_name":"_gabdullovaa_","location":"Russia","url":null,"description":"\u043f\u043e\u0436\u0438\u0432\u0435\u043c-\u0443\u0432\u0438\u0434\u0438\u043c","protected":false,"verified":false,"followers_count":239,"friends_count":68,"listed_count":0,"favourites_count":929,"statuses_count":3321,"created_at":"Wed May 08 17:56:22 +0000 2013","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1BC7DE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661899328156524544\/H-_w2-Mf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661899328156524544\/H-_w2-Mf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1413474823\/1420290293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:31:01 +0000 2015","id":663347996327813120,"id_str":"663347996327813120","text":"\u043a\u043e\u0433\u0434\u0430-\u043d\u0438\u0431\u0443\u0434\u044c \u044f \u0442\u043e\u0436\u0435 \u0441\u0442\u0430\u043d\u0443 \u0445\u0443\u0434\u043e\u0439 \u043a\u0440\u0430\u0441\u043e\u0442\u043a\u043e\u0439!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363005069,"id_str":"363005069","name":"privuebok","screen_name":"yana_pechnikova","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":157,"friends_count":77,"listed_count":1,"favourites_count":5787,"statuses_count":3630,"created_at":"Sat Aug 27 10:55:19 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602392041809518592\/AF7XK9yh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602392041809518592\/AF7XK9yh.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647045595325177856\/NtAUbLse_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647045595325177856\/NtAUbLse_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363005069\/1426373044","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"828195aa8b25a274","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/828195aa8b25a274.json","place_type":"city","name":"\u0427\u0435\u0431\u043e\u043a\u0441\u0430\u0440\u044b","full_name":"\u0427\u0435\u0431\u043e\u043a\u0441\u0430\u0440\u044b, \u0427\u0443\u0432\u0430\u0448\u0441\u043a\u0430\u044f \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[47.134984,56.061506],[47.134984,56.200101],[47.371384,56.200101],[47.371384,56.061506]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yana_pechnikova","name":"privuebok","id":363005069,"id_str":"363005069","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080044666"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095222784,"id_str":"663727930095222784","text":"@keisei_1092 @kotoriena @tagoshu \u306f\u30fc\u3044\u3002\u5b9f\u9a13\u4f1a\u306b\u30b3\u30f3\u30c6\u30f3\u30c4\u3092\u6301\u3063\u3066\u884c\u3051\u308b\u3088\u3046\u9811\u5f35\u308a\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663560078134407169,"in_reply_to_status_id_str":"663560078134407169","in_reply_to_user_id":90432215,"in_reply_to_user_id_str":"90432215","in_reply_to_screen_name":"keisei_1092","user":{"id":754189814,"id_str":"754189814","name":"\u308c\u307f\u3063\u304f","screen_name":"Remikku_s","location":null,"url":null,"description":"\u65e5\u3005\u306e\u6b8b\u696d\u3092\u5606\u304d\u306a\u304c\u3089...\u30dd\u30ea\u30c3\u30c9\u30fb\u30a2\u30df\u30c3\u30c9etc\u3067\u30df\u30af\u3055\u3093\u6295\u5f71\u3057\u305f\u308a\u3001\u30de\u30c3\u30bf\u30ea\u30ed\u30fc\u30c9\u3067\u30d6\u30eb\u30d9\u306b\u53c2\u52a0\u3057\u3066\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u3000\uff2d\uff2d\uff24\u52c9\u5f37\u4e2d\u3002\n\u30a2\u30a4\u30b3\u30f3\u306e\u30ca\u30ca\u30a4\u30ed\u3055\u3093\u306f\u3086\u3046\u308a\u3061\u3083\u3093(@otyakana)\u4f5c","protected":false,"verified":false,"followers_count":401,"friends_count":483,"listed_count":27,"favourites_count":1310,"statuses_count":7226,"created_at":"Mon Aug 13 01:54:50 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593212064249720832\/xRUAmvq2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593212064249720832\/xRUAmvq2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/754189814\/1392213422","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"keisei_1092","name":"keisei@\u30dc\u30fc\u30de\u30b933 \u30a435","id":90432215,"id_str":"90432215","indices":[0,12]},{"screen_name":"kotoriena","name":"\u30b3\u30c8\u30ea\u5e97\u9577","id":16738991,"id_str":"16738991","indices":[13,23]},{"screen_name":"tagoshu","name":"\u661f\u98a8P@\u6b21\u56de\u5b9f\u9a13\u4f1a12\/12(\u571f)","id":83126734,"id_str":"83126734","indices":[24,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112139265,"id_str":"663727930112139265","text":"RT @FilmHyp: I can't stop laughing \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/UyjLWpkEHG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624627386,"id_str":"624627386","name":"Oswald Cobblepot ","screen_name":"FlorianCastro19","location":null,"url":null,"description":"I'm just a would've been, could've been, should've been, never was and never ever will be... 30STM - BMTH - Chelsea - CFC - Premier League - Tattoo - Inked","protected":false,"verified":false,"followers_count":90,"friends_count":114,"listed_count":7,"favourites_count":4076,"statuses_count":7464,"created_at":"Mon Jul 02 12:30:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575303745929674752\/G_inAyk5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575303745929674752\/G_inAyk5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624627386\/1392795130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:48 +0000 2015","id":663723921334771713,"id_str":"663723921334771713","text":"I can't stop laughing \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/UyjLWpkEHG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":831118495,"id_str":"831118495","name":"Film Hype","screen_name":"FilmHyp","location":"WHERE'S THE TRAILER?","url":"http:\/\/twitter.com\/FilmPoIls","description":"Posts about movies etc, mostly marvel and dc","protected":false,"verified":false,"followers_count":9690,"friends_count":10619,"listed_count":33,"favourites_count":3073,"statuses_count":2215,"created_at":"Tue Sep 18 13:55:57 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661213479374823424\/PkurAGFj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661213479374823424\/PkurAGFj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831118495\/1445172690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723825687867392,"id_str":"663723825687867392","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","url":"https:\/\/t.co\/UyjLWpkEHG","display_url":"pic.twitter.com\/UyjLWpkEHG","expanded_url":"http:\/\/twitter.com\/FilmHyp\/status\/663723921334771713\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723825687867392,"id_str":"663723825687867392","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","url":"https:\/\/t.co\/UyjLWpkEHG","display_url":"pic.twitter.com\/UyjLWpkEHG","expanded_url":"http:\/\/twitter.com\/FilmHyp\/status\/663723921334771713\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15082,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/pl\/P8wy67K8Z05gBiwu.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/480x480\/9r5Z2ZmunTDp5uCj.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/480x480\/9r5Z2ZmunTDp5uCj.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/240x240\/lFPKdLk6OE07nzlk.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/pl\/P8wy67K8Z05gBiwu.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FilmHyp","name":"Film Hype","id":831118495,"id_str":"831118495","indices":[3,11]}],"symbols":[],"media":[{"id":663723825687867392,"id_str":"663723825687867392","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","url":"https:\/\/t.co\/UyjLWpkEHG","display_url":"pic.twitter.com\/UyjLWpkEHG","expanded_url":"http:\/\/twitter.com\/FilmHyp\/status\/663723921334771713\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723921334771713,"source_status_id_str":"663723921334771713","source_user_id":831118495,"source_user_id_str":"831118495"}]},"extended_entities":{"media":[{"id":663723825687867392,"id_str":"663723825687867392","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663723825687867392\/pu\/img\/0R6a9qnpMmJv6ods.jpg","url":"https:\/\/t.co\/UyjLWpkEHG","display_url":"pic.twitter.com\/UyjLWpkEHG","expanded_url":"http:\/\/twitter.com\/FilmHyp\/status\/663723921334771713\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663723921334771713,"source_status_id_str":"663723921334771713","source_user_id":831118495,"source_user_id_str":"831118495","video_info":{"aspect_ratio":[1,1],"duration_millis":15082,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/pl\/P8wy67K8Z05gBiwu.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/480x480\/9r5Z2ZmunTDp5uCj.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/480x480\/9r5Z2ZmunTDp5uCj.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/vid\/240x240\/lFPKdLk6OE07nzlk.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663723825687867392\/pu\/pl\/P8wy67K8Z05gBiwu.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930111995904,"id_str":"663727930111995904","text":"RT @Meet_Mitt: \uc624\ub298 \ud6c4\ub8e8\uc57c\ub294 \uadf8\ub9cc\ud07c \uac15\ud55c \uc790\uac01\uc744 \ud488\uace0 \ub9c8\uc6b4\ub4dc\uc5d0 \uc11c\uc788\ub2e4.\n\ub0b4\uac00 \uc774 \ud300\uc758 \uc5d0\uc774\uc2a4\ub77c\uace0. https:\/\/t.co\/LLfeMXPseN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3492032114,"id_str":"3492032114","name":"Eugene","screen_name":"eugene_pedal","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":263,"listed_count":0,"favourites_count":1308,"statuses_count":686,"created_at":"Tue Sep 08 10:33:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653929952098697217\/aQskmVaq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653929952098697217\/aQskmVaq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3492032114\/1442972774","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:45 +0000 2015","id":663727176655638528,"id_str":"663727176655638528","text":"\uc624\ub298 \ud6c4\ub8e8\uc57c\ub294 \uadf8\ub9cc\ud07c \uac15\ud55c \uc790\uac01\uc744 \ud488\uace0 \ub9c8\uc6b4\ub4dc\uc5d0 \uc11c\uc788\ub2e4.\n\ub0b4\uac00 \uc774 \ud300\uc758 \uc5d0\uc774\uc2a4\ub77c\uace0. https:\/\/t.co\/LLfeMXPseN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3037789892,"id_str":"3037789892","name":"\ubbf8\uc720\ud0a4 \uc804\uc6a9 \ubbf8\ud2b8(*\u00b4\u30ee`*)","screen_name":"Meet_Mitt","location":null,"url":"http:\/\/meet-mitt.tistory.com","description":"\u25c6A \u964d\u5fa1 \u5fa1\u53f3 \ud6c4\ub8e8\ubbf8\uc720 \/ \uc131\uc778 \uae00\ub7ec \/ \uc778\uc7a5 \ube60\ub530(@dia_bat) \/ \ud5e4\ub354 \ub9c8\ub808\ub2d8 \ucee4\ubbf8\uc158","protected":false,"verified":false,"followers_count":121,"friends_count":77,"listed_count":1,"favourites_count":3139,"statuses_count":11643,"created_at":"Mon Feb 23 10:20:47 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660033031936192512\/gDZSKs_1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660033031936192512\/gDZSKs_1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037789892\/1432736187","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726986368434176,"id_str":"663726986368434176","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","url":"https:\/\/t.co\/LLfeMXPseN","display_url":"pic.twitter.com\/LLfeMXPseN","expanded_url":"http:\/\/twitter.com\/Meet_Mitt\/status\/663727176655638528\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726986368434176,"id_str":"663726986368434176","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","url":"https:\/\/t.co\/LLfeMXPseN","display_url":"pic.twitter.com\/LLfeMXPseN","expanded_url":"http:\/\/twitter.com\/Meet_Mitt\/status\/663727176655638528\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/pl\/59imyoHJqTl8yRTr.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/640x360\/pvwIFnfe0w0oNrow.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/320x180\/yTFRwjT48Db_VBIV.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/640x360\/pvwIFnfe0w0oNrow.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/pl\/59imyoHJqTl8yRTr.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Meet_Mitt","name":"\ubbf8\uc720\ud0a4 \uc804\uc6a9 \ubbf8\ud2b8(*\u00b4\u30ee`*)","id":3037789892,"id_str":"3037789892","indices":[3,13]}],"symbols":[],"media":[{"id":663726986368434176,"id_str":"663726986368434176","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","url":"https:\/\/t.co\/LLfeMXPseN","display_url":"pic.twitter.com\/LLfeMXPseN","expanded_url":"http:\/\/twitter.com\/Meet_Mitt\/status\/663727176655638528\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663727176655638528,"source_status_id_str":"663727176655638528","source_user_id":3037789892,"source_user_id_str":"3037789892"}]},"extended_entities":{"media":[{"id":663726986368434176,"id_str":"663726986368434176","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726986368434176\/pu\/img\/RIzxt5igWtqAQdtn.jpg","url":"https:\/\/t.co\/LLfeMXPseN","display_url":"pic.twitter.com\/LLfeMXPseN","expanded_url":"http:\/\/twitter.com\/Meet_Mitt\/status\/663727176655638528\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663727176655638528,"source_status_id_str":"663727176655638528","source_user_id":3037789892,"source_user_id_str":"3037789892","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/pl\/59imyoHJqTl8yRTr.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/640x360\/pvwIFnfe0w0oNrow.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/320x180\/yTFRwjT48Db_VBIV.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/vid\/640x360\/pvwIFnfe0w0oNrow.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726986368434176\/pu\/pl\/59imyoHJqTl8yRTr.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930086924288,"id_str":"663727930086924288","text":"RT @polls: Hard cookies or soft cookies?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2227472304,"id_str":"2227472304","name":"Cass","screen_name":"cassbarberio","location":null,"url":null,"description":"lets eat grandma","protected":false,"verified":false,"followers_count":377,"friends_count":211,"listed_count":0,"favourites_count":6300,"statuses_count":3714,"created_at":"Tue Dec 03 00:32:42 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663422533648166912\/XdleaQJk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663422533648166912\/XdleaQJk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2227472304\/1447007210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:19:28 +0000 2015","id":663511186332323840,"id_str":"663511186332323840","text":"Hard cookies or soft cookies?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4071934995,"id_str":"4071934995","name":"polls","screen_name":"polls","location":"twitter.com","url":null,"description":"the most important polls on twitter. Brought to you by @BuzzFeed. DM us your poll ideas!","protected":false,"verified":false,"followers_count":61238,"friends_count":0,"listed_count":70,"favourites_count":19,"statuses_count":266,"created_at":"Fri Oct 30 02:09:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660160253913382913\/qgvYqknJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660160253913382913\/qgvYqknJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4071934995\/1446225664","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":91,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"polls","name":"polls","id":4071934995,"id_str":"4071934995","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044658"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112016384,"id_str":"663727930112016384","text":"@mondimac Thank you so much, Mon! God bless! \u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698939946733568,"in_reply_to_status_id_str":"663698939946733568","in_reply_to_user_id":137942925,"in_reply_to_user_id_str":"137942925","in_reply_to_screen_name":"mondimac","user":{"id":178176198,"id_str":"178176198","name":"Viktor Kapunan","screen_name":"ViktorKapunan","location":"Republic of the Phililippines","url":"http:\/\/www.instagram.com\/ViktorKapunan","description":"Psalm 138:3","protected":false,"verified":false,"followers_count":2091,"friends_count":697,"listed_count":6,"favourites_count":6449,"statuses_count":23931,"created_at":"Sat Aug 14 02:09:32 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000043968653\/dffc3c8a0c397c8431dcb20c92eb0ff6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000043968653\/dffc3c8a0c397c8431dcb20c92eb0ff6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660392270424731648\/-Is6bcBx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660392270424731648\/-Is6bcBx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178176198\/1447001191","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"006523c50dfe9086","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/006523c50dfe9086.json","place_type":"city","name":"Quezon City","full_name":"Quezon City, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.989705,14.589376],[120.989705,14.776648],[121.135766,14.776648],[121.135766,14.589376]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mondimac","name":"Ramon Dimaculangan","id":137942925,"id_str":"137942925","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099372032,"id_str":"663727930099372032","text":"1\u65e5\u306e\u6c57\u304c\u67d3\u307f\u4ed8\u304d\u3059\u304e\u3066\u3081\u3061\u3083\u304f\u305b\u3048","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u03b3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":773845945,"id_str":"773845945","name":"( '\u03c9'o[ \u3082\u3044\u52a9 ]o","screen_name":"nnnguh312","location":null,"url":null,"description":"\u8ab0\u3060\u3063\u3066\u5b64\u72ec\u3060\u3002\u8ab0\u3060\u3063\u3066\u865a\u308d\u3060\u3002\u3082\u3046\u8ab0\u3082\u4ed6\u4eba\u3092\u5fc5\u8981\u3068\u3057\u306a\u3044\u3002\u3069\u3093\u306a\u624d\u80fd\u3082\u30b9\u30da\u30a2\u304c\u898b\u3064\u304b\u308b\u3002\u3069\u3093\u306a\u95a2\u4fc2\u3060\u3063\u3066\u53d6\u308a\u66ff\u3048\u304c\u52b9\u304f\u3002\u305d\u3093\u306a\u4e16\u754c\u306b\u98fd\u304d\u3066\u3044\u305f\u3002\u3067\u3082\u3069\u3046\u3057\u3066\u304b\u306a\u3001\u50d5\u304c\u541b\u4ee5\u5916\u306e\u8ab0\u304b\u306b\u6bba\u3055\u308c\u308b\u5149\u666f\u306f\u3069\u3046\u3057\u3066\u3082\u601d\u3044\u6d6e\u304b\u3070\u306a\u3044\u3093\u3060\u3002\n\u306a\u3042\u3001\u3069\u3046\u306a\u3093\u3060\u72e1\u565b\u3002\u304d\u307f\u306f\u3053\u306e\u3042\u3068\u3001\u50d5\u306e\u4ee3\u308f\u308a\u3092\u898b\u3064\u3051\u3089\u308c\u308b\u306e\u304b\uff1f","protected":false,"verified":false,"followers_count":361,"friends_count":366,"listed_count":12,"favourites_count":10391,"statuses_count":81773,"created_at":"Wed Aug 22 14:54:14 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000018110813\/6793fafefc8c6d6d74e0c8062d14f24b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000018110813\/6793fafefc8c6d6d74e0c8062d14f24b.jpeg","profile_background_tile":true,"profile_link_color":"993311","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660652191309434880\/6XoxgwD4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660652191309434880\/6XoxgwD4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/773845945\/1445421981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044661"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095210496,"id_str":"663727930095210496","text":"@May_daytime 2015\ub144\uc2dd\uc774\ub77c \uadf8\ub807\uc8e0 \ubb50\n\uc720\ub85c6\ubd80\ud130\ub294 \uc628\ub9ac \uc774\ubca0\ucf54 \uc5d4\uc9c4...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727609767813120,"in_reply_to_status_id_str":"663727609767813120","in_reply_to_user_id":3266002818,"in_reply_to_user_id_str":"3266002818","in_reply_to_screen_name":"May_daytime","user":{"id":269300439,"id_str":"269300439","name":"\uc218\ud37c\ud1b0\ucea3","screen_name":"f14xhazpt","location":"37\u00b044'02.5N\/ 128\u00b052'26.8E","url":"http:\/\/blog.naver.com\/f14xhazpt","description":"91\ub144\uc0dd \uc608\ube44\uc5ed \uc789\uc5ec | \uad50\ud1b5\ub355 & \ubc00\ub355 & \uc624\ub355 & etc \uc624\ub9cc\uac00\uc9c0 \uc7a1\ub355 | \uaca9\uc2dd \uc548\ub530\uc9d1\ub2c8\ub2e4 \uc120\uba58\uc740 \uc5b8\uc81c\ub098 \ud658\uc601 | \ucde8\ud5a5 \ub9de\uc73c\uba74 \ud314\ub85c\uc6b0\ub098 \ub9de\ud314 \uac00\uc694 | FUB free","protected":false,"verified":false,"followers_count":375,"friends_count":279,"listed_count":8,"favourites_count":2,"statuses_count":48723,"created_at":"Sun Mar 20 13:59:42 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561880419709112320\/0CiWxUL1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561880419709112320\/0CiWxUL1.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1280341295\/VF-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1280341295\/VF-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269300439\/1435258168","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"May_daytime","name":"MAY","id":3266002818,"id_str":"3266002818","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095243264,"id_str":"663727930095243264","text":"@satokic78 \u305d\u308cHey\uff01\u30df\u30b9\u30bf\u30fc\u30dd\u30ea\u30b9\u30de\u30f3\u7206\u7b11","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726504228945920,"in_reply_to_status_id_str":"663726504228945920","in_reply_to_user_id":181965334,"in_reply_to_user_id_str":"181965334","in_reply_to_screen_name":"satokic78","user":{"id":105147678,"id_str":"105147678","name":"\u304d\u308a\u2606","screen_name":"kiriwo1220","location":null,"url":null,"description":"\u30ed\u30c3\u30af\u30f3\u30ed\u30fc\u30eb","protected":false,"verified":false,"followers_count":174,"friends_count":212,"listed_count":9,"favourites_count":257,"statuses_count":25729,"created_at":"Fri Jan 15 14:05:20 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591970099478695936\/UUao0FdA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591970099478695936\/UUao0FdA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105147678\/1368328741","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"satokic78","name":"\u3055\u3068\u3063\u3061","id":181965334,"id_str":"181965334","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103586816,"id_str":"663727930103586816","text":"@masyusyu3 \u3060\u307e\u308c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727355198767108,"in_reply_to_status_id_str":"663727355198767108","in_reply_to_user_id":2907001789,"in_reply_to_user_id_str":"2907001789","in_reply_to_screen_name":"masyusyu3","user":{"id":3181698270,"id_str":"3181698270","name":"\u3061\u3063\u3061\u3083\u3093","screen_name":"j27j331","location":null,"url":null,"description":"\u3058\u306a\u3093\u3075\u3047\u306e\u7d61\u307f\u751f\u3067\u62dd\u3081\u307e\u3057\u305f\u3002\u3042\u308a\u304c\u3068\u3046\u3002\u3010@masyusyu3\u3011\u3010@YloooveG\u3011\u3010@a_xxx_gd\u3011\u3010@YgBbWnik_97\u3011\u3010@___kh1022\u3011","protected":false,"verified":false,"followers_count":256,"friends_count":157,"listed_count":28,"favourites_count":3876,"statuses_count":18495,"created_at":"Fri May 01 13:17:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657204291904499712\/VnP3khCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657204291904499712\/VnP3khCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181698270\/1444746898","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"masyusyu3","name":"\u304a\u5869\u3002\u30e1\u30f3\u30bf\u30eb\u5f37\u5316\u9031\u9593","id":2907001789,"id_str":"2907001789","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080044662"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930095218689,"id_str":"663727930095218689","text":"@frungnarikvnn jangan lah lo diusir ntar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724713567371265,"in_reply_to_status_id_str":"663724713567371265","in_reply_to_user_id":1068055333,"in_reply_to_user_id_str":"1068055333","in_reply_to_screen_name":"frungnarikvnn","user":{"id":248584832,"id_str":"248584832","name":"Mek Jirakit","screen_name":"jirakitth_a","location":"Thailand, BKK","url":"http:\/\/anu-favor-94s-thaisquad.co","description":"Jirakit Thawornwong. \u00a91994 #uglyducklingseries \/\/ my morning kiss @WJMlLDY","protected":false,"verified":false,"followers_count":5908,"friends_count":1516,"listed_count":26,"favourites_count":2,"statuses_count":46292,"created_at":"Mon Feb 07 09:26:14 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"161A1A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/824035618\/ff6938c49b73ce22d7bf2103f314a421.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/824035618\/ff6938c49b73ce22d7bf2103f314a421.jpeg","profile_background_tile":true,"profile_link_color":"1B3CE0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"F20909","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662914122141429760\/VPK_RcBt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662914122141429760\/VPK_RcBt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248584832\/1444110586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"frungnarikvnn","name":"frung\u3145","id":1068055333,"id_str":"1068055333","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080044660"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930099564544,"id_str":"663727930099564544","text":"\u041d\u0430 \u0441\u0435\u0432\u0435\u0440\u043e-\u0437\u0430\u043f\u0430\u0434\u0435 \u0441\u0442\u043e\u043b\u0438\u0446\u044b \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f 16 \u043f\u0443\u043d\u043a\u0442\u043e\u0432 \u0440\u0430\u0437\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0441\u0431\u043e\u0440\u0430 \u043c\u0443\u0441\u043e\u0440\u0430 https:\/\/t.co\/Fvb5wp3fNr https:\/\/t.co\/v9jhokjww8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547229419,"id_str":"547229419","name":"\u0411\u0435\u043b\u043e\u0447\u043a\u0430","screen_name":"patriotyy02","location":"\u041a\u0440\u0430\u0441\u043d\u043e\u0433\u043e\u0440\u0441\u043a","url":null,"description":"\u042f \u043f\u0440\u0438\u0448\u043b\u0430 \u0437\u0430 \u0442\u043e\u0431\u043e\u0439!","protected":false,"verified":false,"followers_count":15,"friends_count":124,"listed_count":0,"favourites_count":20,"statuses_count":705,"created_at":"Sat Apr 07 01:36:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490156067733528577\/EdWBQSEi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490156067733528577\/EdWBQSEi_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Fvb5wp3fNr","expanded_url":"http:\/\/dlvr.it\/ChXfPG","display_url":"dlvr.it\/ChXfPG","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663667038091513856,"id_str":"663667038091513856","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRp6aUkAAfgvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRp6aUkAAfgvQ.jpg","url":"https:\/\/t.co\/v9jhokjww8","display_url":"pic.twitter.com\/v9jhokjww8","expanded_url":"http:\/\/twitter.com\/urannews\/status\/663667038200578048\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":150,"resize":"fit"},"large":{"w":225,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":150,"resize":"fit"}},"source_status_id":663667038200578048,"source_status_id_str":"663667038200578048","source_user_id":1407773732,"source_user_id_str":"1407773732"}]},"extended_entities":{"media":[{"id":663667038091513856,"id_str":"663667038091513856","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRp6aUkAAfgvQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRp6aUkAAfgvQ.jpg","url":"https:\/\/t.co\/v9jhokjww8","display_url":"pic.twitter.com\/v9jhokjww8","expanded_url":"http:\/\/twitter.com\/urannews\/status\/663667038200578048\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":150,"resize":"fit"},"large":{"w":225,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":150,"resize":"fit"}},"source_status_id":663667038200578048,"source_status_id_str":"663667038200578048","source_user_id":1407773732,"source_user_id_str":"1407773732"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080044661"} +{"delete":{"status":{"id":300772407378051072,"id_str":"300772407378051072","user_id":75864248,"user_id_str":"75864248"},"timestamp_ms":"1447080044942"}} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112000000,"id_str":"663727930112000000","text":"\ubbf8\uc220\uc218\ud589...\ub3c4\uc7a5\uc744..\ud31f\ub2e4..!!!patta...!!!,.! https:\/\/t.co\/a821jaJxsd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3017982114,"id_str":"3017982114","name":"\u2606\uc720\ub989\ub9c8\uce20\u2605","screen_name":"yul_moorook","location":"\uae34\ud0c0\ub9c8\/\ub2cc\ud0c0\ub9c8\/\uc624...\uc18c...\ub9c8...\uce20...\uc0c1....","url":"http:\/\/m.blog.naver.com\/chesjjang","description":"\uc7a1\ub355 \uc18c\ube44\ub7ec rt\u591a FUBfree\n\ucef4\uc158\u25b7http:\/\/chesjjang.wix.com\/yuleun\n\n\uc548\ub155\ud558\uc0c8\uc624\uc728\uc740\uc774\uc5d0\uc624","protected":false,"verified":false,"followers_count":112,"friends_count":346,"listed_count":0,"favourites_count":605,"statuses_count":4648,"created_at":"Fri Feb 13 04:14:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"999999","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3F1600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659361403103416322\/xYOKs7Wh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659361403103416322\/xYOKs7Wh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017982114\/1429715788","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727923371704320,"id_str":"663727923371704320","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJB5wUAAAf7R4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJB5wUAAAf7R4.jpg","url":"https:\/\/t.co\/a821jaJxsd","display_url":"pic.twitter.com\/a821jaJxsd","expanded_url":"http:\/\/twitter.com\/yul_moorook\/status\/663727930112000000\/photo\/1","type":"photo","sizes":{"medium":{"w":525,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":525,"h":560,"resize":"fit"},"small":{"w":340,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727923371704320,"id_str":"663727923371704320","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJB5wUAAAf7R4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJB5wUAAAf7R4.jpg","url":"https:\/\/t.co\/a821jaJxsd","display_url":"pic.twitter.com\/a821jaJxsd","expanded_url":"http:\/\/twitter.com\/yul_moorook\/status\/663727930112000000\/photo\/1","type":"photo","sizes":{"medium":{"w":525,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":525,"h":560,"resize":"fit"},"small":{"w":340,"h":362,"resize":"fit"}}},{"id":663727927079497729,"id_str":"663727927079497729","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCHkUcAEuUD5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCHkUcAEuUD5.jpg","url":"https:\/\/t.co\/a821jaJxsd","display_url":"pic.twitter.com\/a821jaJxsd","expanded_url":"http:\/\/twitter.com\/yul_moorook\/status\/663727930112000000\/photo\/1","type":"photo","sizes":{"large":{"w":604,"h":735,"resize":"fit"},"medium":{"w":600,"h":730,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080044664"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930103767044,"id_str":"663727930103767044","text":"- \u0635\u0639\u0628 \u062c\u062f\u0627 \u0623\u0646 \u064a\u062a\u0623\u0642\u0644\u0645 \u0627\u0644\u0645\u0624\u0634\u0631 \u0645\u0639 \u0627\u0644\u0632\u0648\u0631\u064a . . \u0627\u0644\u062a\u062c\u0627\u0646\u0633 \u0628\u064a\u0646\u0647\u0645 \u0635\u0641\u0631 \u0639\u0627\u0644\u0634\u0645\u0627\u0644 ! https:\/\/t.co\/00WQKQDd2k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2838953088,"id_str":"2838953088","name":"\u062d\u0633\u0646 \u0628\u0646 \u0623\u062d\u0645\u062f","screen_name":"HassanBinAhmed","location":"Kingdom of Saudi Arabia","url":null,"description":"- \u0625\u0642\u0631\u0623 \u0648 \u062a\u0639\u0644\u0645 . . \u062b\u0645 \u0646\u0627\u0642\u0634 \u0648 \u062a\u0643\u0644\u0645","protected":false,"verified":false,"followers_count":1935,"friends_count":105,"listed_count":8,"favourites_count":411,"statuses_count":13029,"created_at":"Fri Oct 03 11:36:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660132370209775616\/PpVBeury_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660132370209775616\/PpVBeury_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838953088\/1447020235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727914727424000,"id_str":"663727914727424000","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBZjWwAAtvo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBZjWwAAtvo4.jpg","url":"https:\/\/t.co\/00WQKQDd2k","display_url":"pic.twitter.com\/00WQKQDd2k","expanded_url":"http:\/\/twitter.com\/HassanBinAhmed\/status\/663727930103767044\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":811,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"medium":{"w":600,"h":811,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727914727424000,"id_str":"663727914727424000","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBZjWwAAtvo4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBZjWwAAtvo4.jpg","url":"https:\/\/t.co\/00WQKQDd2k","display_url":"pic.twitter.com\/00WQKQDd2k","expanded_url":"http:\/\/twitter.com\/HassanBinAhmed\/status\/663727930103767044\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":811,"resize":"fit"},"small":{"w":340,"h":459,"resize":"fit"},"medium":{"w":600,"h":811,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727914719006721,"id_str":"663727914719006721","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBZhWUAEchRT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBZhWUAEchRT.jpg","url":"https:\/\/t.co\/00WQKQDd2k","display_url":"pic.twitter.com\/00WQKQDd2k","expanded_url":"http:\/\/twitter.com\/HassanBinAhmed\/status\/663727930103767044\/photo\/1","type":"photo","sizes":{"large":{"w":607,"h":696,"resize":"fit"},"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080044662"} +{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930112155648,"id_str":"663727930112155648","text":"\u0627\u0644\u0627\u0646 \u0644\u0639\u0628\u0629 :\nbatman arkham knight \u0644\u0644\u0627\u0643\u0633\u0628\u0648\u0643\u0633 \u0648\u0646 \u0628\u0633\u0639\u0631 190 \u0631\u064a\u0627\u0644 \u0641\u0642\u0637 \n\u0627\u0644\u062f\u0641\u0639 \u0627\u0645\u0627 \u062a\u062d\u0648\u064a\u0644 \u0628\u0646\u0643\u064a \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u062c\u062d\u064a \u0627\u0648 \u0628\u0627\u064a\u0628\u0627\u0644 https:\/\/t.co\/epJPBPEJoi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3941542093,"id_str":"3941542093","name":"GAMES MARKET","screen_name":"games_market15","location":"jeddah","url":"http:\/\/haraj.com.sa\/allreviews.php?seller_id=2047519","description":"\u200f\u0645\u062a\u062e\u0635\u0635\u064a\u0646 \u0628\u0628\u064a\u0639 \u0627\u0644\u0628\u0637\u0627\u0642\u0627\u062a \u0648\u0627\u0644\u0627\u0644\u0639\u0627\u0628 \u0644\u0644\u0633\u0648\u0646\u064a \u0648\u0627\u0644\u0627\u0643\u0633\u0628\u0648\u0643\u0633 \u0648\u0627\u0644\u0627\u064a\u062a\u0648\u0646\u0632 \u062a\u0642\u064a\u064a\u0645\u0627\u062a \u0627\u0644\u0645\u0634\u062a\u0631\u064a\u0646 \u0628\u062d\u0631\u0627\u062c \u062a\u0634\u0647\u062f \u0644\u064a","protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":13,"created_at":"Mon Oct 19 00:43:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662981098662662144\/aNGF2Igh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662981098662662144\/aNGF2Igh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3941542093\/1445579529","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727925150228480,"id_str":"663727925150228480","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCAYWIAANcle.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCAYWIAANcle.jpg","url":"https:\/\/t.co\/epJPBPEJoi","display_url":"pic.twitter.com\/epJPBPEJoi","expanded_url":"http:\/\/twitter.com\/games_market15\/status\/663727930112155648\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727925150228480,"id_str":"663727925150228480","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCAYWIAANcle.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCAYWIAANcle.jpg","url":"https:\/\/t.co\/epJPBPEJoi","display_url":"pic.twitter.com\/epJPBPEJoi","expanded_url":"http:\/\/twitter.com\/games_market15\/status\/663727930112155648\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080044664"} +{"delete":{"status":{"id":663680614143500288,"id_str":"663680614143500288","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080045148"}} +{"delete":{"status":{"id":663723870013161472,"id_str":"663723870013161472","user_id":2337328009,"user_id_str":"2337328009"},"timestamp_ms":"1447080045321"}} +{"delete":{"status":{"id":645244697712029696,"id_str":"645244697712029696","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080045466"}} +{"delete":{"status":{"id":663725694527119360,"id_str":"663725694527119360","user_id":350834909,"user_id_str":"350834909"},"timestamp_ms":"1447080045679"}} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934281228288,"id_str":"663727934281228288","text":"RT @novecento69: Sono sempre le sfumature a fare la differenza.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257919262,"id_str":"3257919262","name":"EmmaRose","screen_name":"moonlight_emma","location":null,"url":null,"description":"E poi c'\u00e8 la notte. C'\u00e8 chi fa l'amore, chi legge un libro e chi resta sveglio a pensare.","protected":false,"verified":false,"followers_count":521,"friends_count":593,"listed_count":0,"favourites_count":3056,"statuses_count":1343,"created_at":"Fri May 15 19:37:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610342411995320320\/RGBRb1Kw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610342411995320320\/RGBRb1Kw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257919262\/1446734225","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727862709673984,"id_str":"663727862709673984","text":"Sono sempre le sfumature a fare la differenza.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1327348261,"id_str":"1327348261","name":"Marco Schembri","screen_name":"novecento69","location":null,"url":null,"description":"Sono in pensiero per i miei pensieri","protected":false,"verified":false,"followers_count":7091,"friends_count":7793,"listed_count":28,"favourites_count":117,"statuses_count":58910,"created_at":"Thu Apr 04 16:44:34 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480673769200291841\/HZXa---s_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480673769200291841\/HZXa---s_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1327348261\/1373394243","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"novecento69","name":"Marco Schembri","id":1327348261,"id_str":"1327348261","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080045658"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934293823488,"id_str":"663727934293823488","text":"RT @IamMzilikazi: Child of the soil: Think about the children 49 https:\/\/t.co\/uTpHvl5m4w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2278760516,"id_str":"2278760516","name":"veronica molapisi","screen_name":"VMolapisi","location":null,"url":null,"description":".....on a journey of self discovery while balancing in stilettos_my essence is #SIMPLE","protected":false,"verified":false,"followers_count":710,"friends_count":655,"listed_count":10,"favourites_count":1101,"statuses_count":7401,"created_at":"Mon Jan 06 08:08:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445545868838461442\/nnSSqqYs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445545868838461442\/nnSSqqYs.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651032906698227712\/9sG4Kaxx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651032906698227712\/9sG4Kaxx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2278760516\/1424514283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:32 +0000 2015","id":663722091712282624,"id_str":"663722091712282624","text":"Child of the soil: Think about the children 49 https:\/\/t.co\/uTpHvl5m4w","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":249608059,"id_str":"249608059","name":"Mzilikazi wa Afrika","screen_name":"IamMzilikazi","location":"Johannesburg","url":"http:\/\/www.bombarecords.co.za","description":"African ambassador to the world, award winning investigative journalist and author of Nothing Left To Steal. Tweeting in my personal capacity as an idiot.","protected":false,"verified":false,"followers_count":56903,"friends_count":31498,"listed_count":252,"favourites_count":49,"statuses_count":29952,"created_at":"Wed Feb 09 12:03:52 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663403311765331968\/fOGl9-x5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663403311765331968\/fOGl9-x5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/249608059\/1446839940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722091557036032,"id_str":"663722091557036032","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","url":"https:\/\/t.co\/uTpHvl5m4w","display_url":"pic.twitter.com\/uTpHvl5m4w","expanded_url":"http:\/\/twitter.com\/IamMzilikazi\/status\/663722091712282624\/photo\/1","type":"photo","sizes":{"large":{"w":607,"h":607,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722091557036032,"id_str":"663722091557036032","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","url":"https:\/\/t.co\/uTpHvl5m4w","display_url":"pic.twitter.com\/uTpHvl5m4w","expanded_url":"http:\/\/twitter.com\/IamMzilikazi\/status\/663722091712282624\/photo\/1","type":"photo","sizes":{"large":{"w":607,"h":607,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IamMzilikazi","name":"Mzilikazi wa Afrika","id":249608059,"id_str":"249608059","indices":[3,16]}],"symbols":[],"media":[{"id":663722091557036032,"id_str":"663722091557036032","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","url":"https:\/\/t.co\/uTpHvl5m4w","display_url":"pic.twitter.com\/uTpHvl5m4w","expanded_url":"http:\/\/twitter.com\/IamMzilikazi\/status\/663722091712282624\/photo\/1","type":"photo","sizes":{"large":{"w":607,"h":607,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663722091712282624,"source_status_id_str":"663722091712282624","source_user_id":249608059,"source_user_id_str":"249608059"}]},"extended_entities":{"media":[{"id":663722091557036032,"id_str":"663722091557036032","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDucjWIAAU0hl.jpg","url":"https:\/\/t.co\/uTpHvl5m4w","display_url":"pic.twitter.com\/uTpHvl5m4w","expanded_url":"http:\/\/twitter.com\/IamMzilikazi\/status\/663722091712282624\/photo\/1","type":"photo","sizes":{"large":{"w":607,"h":607,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663722091712282624,"source_status_id_str":"663722091712282624","source_user_id":249608059,"source_user_id_str":"249608059"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045661"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934289657856,"id_str":"663727934289657856","text":"pero no imposible claro esta","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3454558453,"id_str":"3454558453","name":"Alma Acu\u00f1a ","screen_name":"AlmaAcuna_g","location":null,"url":null,"description":"El ignorante afirma, el sabio duda y reflexiona.","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":927,"created_at":"Sat Sep 05 02:23:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641046802402279424\/eZRoWABO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641046802402279424\/eZRoWABO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3454558453\/1441672443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080045660"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934277046272,"id_str":"663727934277046272","text":"RT @ElianparraOk: Una bien y 4785 mal \ud83d\udc4d\ud83d\udc4a\ud83d\udc4a\ud83d\udc4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3713457855,"id_str":"3713457855","name":"Sheii Carp","screen_name":"SheiiPeralta","location":null,"url":null,"description":"Ni Famosa, Ni Juntada Pero Por Las Envidiosas Soy Bien Nombrada\/\/ Muerte A La Yuta.\nWsp 3514597485\u2764","protected":false,"verified":false,"followers_count":91,"friends_count":155,"listed_count":0,"favourites_count":24,"statuses_count":2296,"created_at":"Sun Sep 20 03:12:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660585773171888128\/ZDYndD3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660585773171888128\/ZDYndD3i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3713457855\/1446818701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:49 +0000 2015","id":663723168234905600,"id_str":"663723168234905600","text":"Una bien y 4785 mal \ud83d\udc4d\ud83d\udc4a\ud83d\udc4a\ud83d\udc4a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297117478,"id_str":"3297117478","name":"Elian Parra","screen_name":"ElianparraOk","location":"Coronel Bogado, Santa Fe","url":null,"description":"Soy directo, no twitteo cualquier cosa | \u00danico Twitter.","protected":false,"verified":false,"followers_count":61193,"friends_count":44694,"listed_count":9,"favourites_count":846,"statuses_count":278,"created_at":"Sun May 24 21:12:19 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636330595690377217\/itN8KJo2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636330595690377217\/itN8KJo2_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":334,"favorite_count":86,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ElianparraOk","name":"Elian Parra","id":3297117478,"id_str":"3297117478","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934314803201,"id_str":"663727934314803201","text":"RT @An_141: - https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519089697,"id_str":"519089697","name":"Emi.","screen_name":"amolz_2","location":null,"url":null,"description":"she was live alone and watching footbal . @Alhilal_FC .","protected":false,"verified":false,"followers_count":665,"friends_count":245,"listed_count":0,"favourites_count":1296,"statuses_count":29116,"created_at":"Fri Mar 09 02:10:17 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662175880236658688\/wZwPOHhB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662175880236658688\/wZwPOHhB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519089697\/1446710030","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:58 +0000 2015","id":663727486031822848,"id_str":"663727486031822848","text":"- https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577121968,"id_str":"577121968","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","screen_name":"An_141","location":"Riyadh","url":"http:\/\/ask.fm\/iAn141","description":"\u0623\u062e\u0628\u062b \u0645\u0645\u0627 \u062a\u0638\u064f\u0646\u060c \u0648\u0623\u0641\u0636\u0644 \u0645\u0645\u0627 \u062a\u062a\u0648\u0642\u0639 SnapChat\/Kik : An_141 \u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a : ads.an141@gmail.com","protected":false,"verified":false,"followers_count":179881,"friends_count":398,"listed_count":332,"favourites_count":967,"statuses_count":28930,"created_at":"Fri May 11 13:04:40 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577121968\/1445965875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":167,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727458366136320,"id_str":"663727458366136320","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}}},{"id":663727458680729601,"id_str":"663727458680729601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663727458806575104,"id_str":"663727458806575104","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[3,10]}],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458366136320,"id_str":"663727458366136320","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458680729601,"id_str":"663727458680729601","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458806575104,"id_str":"663727458806575104","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080045666"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934298071040,"id_str":"663727934298071040","text":"RT @EmblemThree: You'll be my Monday my fresh start","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594790942,"id_str":"594790942","name":"gee","screen_name":"niallsranga","location":"isle of wight","url":null,"description":"let netflix light up your tv and be the light to guide you home","protected":false,"verified":false,"followers_count":3128,"friends_count":2853,"listed_count":13,"favourites_count":3857,"statuses_count":12127,"created_at":"Wed May 30 18:08:40 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"72C4B6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"759484","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662388947012685824\/307x7jxC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662388947012685824\/307x7jxC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594790942\/1437762780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727673085067264,"id_str":"663727673085067264","text":"You'll be my Monday my fresh start","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378376122,"id_str":"378376122","name":"EMBLEM3","screen_name":"EmblemThree","location":"Huntington Beach, CA","url":"http:\/\/www.emblem3.com","description":"We write and create music. Our mission is to empower the people ! @wesleystromberg @keatonstromberg @truechadwick #TeamInspire","protected":false,"verified":true,"followers_count":1004065,"friends_count":19556,"listed_count":3160,"favourites_count":5729,"statuses_count":9983,"created_at":"Fri Sep 23 03:02:16 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446785630559686657\/mvs8bnET.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446785630559686657\/mvs8bnET.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642743758128152576\/V7PGXbyy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642743758128152576\/V7PGXbyy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378376122\/1442077009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":151,"favorite_count":184,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EmblemThree","name":"EMBLEM3","id":378376122,"id_str":"378376122","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045662"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302240769,"id_str":"663727934302240769","text":"RT @LifelnWords: I fell in love with you for who you are.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2574099507,"id_str":"2574099507","name":"Neptune","screen_name":"RestoringKasey","location":"The Apollo X Tour","url":null,"description":"pay for your soul and set yourself free","protected":false,"verified":false,"followers_count":136,"friends_count":237,"listed_count":0,"favourites_count":3072,"statuses_count":1959,"created_at":"Sat May 31 17:02:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"697175","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499814938013999104\/Hcm9pyal.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499814938013999104\/Hcm9pyal.png","profile_background_tile":true,"profile_link_color":"777E80","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660504053533675521\/_5rJYiC8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660504053533675521\/_5rJYiC8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2574099507\/1445732058","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:28:57 +0000 2015","id":663483370282684416,"id_str":"663483370282684416","text":"I fell in love with you for who you are.","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343547084,"id_str":"343547084","name":"Thoughts","screen_name":"LifelnWords","location":"Head in the clouds \u2601","url":"http:\/\/www.twitter.com\/AdorabIeDisney","description":"\u273d A reader lives a thousand lives before he dies. The man who never reads lives only one. \u273d \u270d Also follow us on @AdorabIeDisney \u2764","protected":false,"verified":false,"followers_count":1675884,"friends_count":6258,"listed_count":1770,"favourites_count":51,"statuses_count":5195,"created_at":"Wed Jul 27 18:50:00 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482330134783881216\/AFxj9v_0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482330134783881216\/AFxj9v_0.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648297948745371648\/p0vApw1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648297948745371648\/p0vApw1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343547084\/1443401238","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1669,"favorite_count":2202,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LifelnWords","name":"Thoughts","id":343547084,"id_str":"343547084","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285443072,"id_str":"663727934285443072","text":"Ve tuttu\u011fum hi\u00e7bir elin fark\u0131 yoktu b\u0131\u00e7aktan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1063055929,"id_str":"1063055929","name":"Batuhan Bozdu\u011fan","screen_name":"T_Rockss","location":"Ankara, T\u00fcrkiye","url":null,"description":"MUSTAFA KEMAL ATAT\u00dcRK\u221e ,Basketbol, Supernatural,TWD,T-Rap ve tabi ki GALATASARAY \u221e","protected":false,"verified":false,"followers_count":5067,"friends_count":4826,"listed_count":2,"favourites_count":1415,"statuses_count":409,"created_at":"Sat Jan 05 13:50:59 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181396912\/R7tSebh3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181396912\/R7tSebh3.jpeg","profile_background_tile":true,"profile_link_color":"3E6BF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660505457732268032\/ZB-RL-ZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660505457732268032\/ZB-RL-ZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1063055929\/1446828066","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934277033984,"id_str":"663727934277033984","text":"RT @teletiendaa: \"Hija, coge un tupper del armario de la cocina\". https:\/\/t.co\/KWbgtbMVxo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":373554528,"id_str":"373554528","name":"Violeta Rossique","screen_name":"VRossique","location":"Madrid","url":"http:\/\/instagram.com\/rossique__","description":"i'll get my shit together soon","protected":false,"verified":false,"followers_count":1247,"friends_count":499,"listed_count":8,"favourites_count":5216,"statuses_count":23286,"created_at":"Wed Sep 14 19:53:19 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506831144172544000\/R03nDDrA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506831144172544000\/R03nDDrA.jpeg","profile_background_tile":true,"profile_link_color":"781439","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662380795613601792\/GsSlC8Rt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662380795613601792\/GsSlC8Rt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/373554528\/1446055828","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:11 +0000 2015","id":663721247029743616,"id_str":"663721247029743616","text":"\"Hija, coge un tupper del armario de la cocina\". https:\/\/t.co\/KWbgtbMVxo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149495267,"id_str":"4149495267","name":"Teletiendaa","screen_name":"teletiendaa","location":null,"url":null,"description":"Los anuncios m\u00e1s absurdos de la Teletienda. Parodia.","protected":false,"verified":false,"followers_count":22,"friends_count":547,"listed_count":0,"favourites_count":32,"statuses_count":38,"created_at":"Mon Nov 09 13:59:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719202247868416\/56paYGXY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719202247868416\/56paYGXY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4149495267\/1447078140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":48,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663407825276792832,"id_str":"663407825276792832","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","url":"https:\/\/t.co\/KWbgtbMVxo","display_url":"pic.twitter.com\/KWbgtbMVxo","expanded_url":"http:\/\/twitter.com\/Teletiendo\/status\/663407826849636352\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":186,"resize":"fit"},"medium":{"w":300,"h":186,"resize":"fit"}},"source_status_id":663407826849636352,"source_status_id_str":"663407826849636352","source_user_id":2760550650,"source_user_id_str":"2760550650"}]},"extended_entities":{"media":[{"id":663407825276792832,"id_str":"663407825276792832","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","url":"https:\/\/t.co\/KWbgtbMVxo","display_url":"pic.twitter.com\/KWbgtbMVxo","expanded_url":"http:\/\/twitter.com\/Teletiendo\/status\/663407826849636352\/photo\/1","type":"animated_gif","sizes":{"large":{"w":300,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":186,"resize":"fit"},"medium":{"w":300,"h":186,"resize":"fit"}},"source_status_id":663407826849636352,"source_status_id_str":"663407826849636352","source_user_id":2760550650,"source_user_id_str":"2760550650","video_info":{"aspect_ratio":[50,31],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTl5vbWcAA02cL.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teletiendaa","name":"Teletiendaa","id":4149495267,"id_str":"4149495267","indices":[3,15]}],"symbols":[],"media":[{"id":663407825276792832,"id_str":"663407825276792832","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","url":"https:\/\/t.co\/KWbgtbMVxo","display_url":"pic.twitter.com\/KWbgtbMVxo","expanded_url":"http:\/\/twitter.com\/Teletiendo\/status\/663407826849636352\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":186,"resize":"fit"},"medium":{"w":300,"h":186,"resize":"fit"}},"source_status_id":663407826849636352,"source_status_id_str":"663407826849636352","source_user_id":2760550650,"source_user_id_str":"2760550650"}]},"extended_entities":{"media":[{"id":663407825276792832,"id_str":"663407825276792832","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTl5vbWcAA02cL.png","url":"https:\/\/t.co\/KWbgtbMVxo","display_url":"pic.twitter.com\/KWbgtbMVxo","expanded_url":"http:\/\/twitter.com\/Teletiendo\/status\/663407826849636352\/photo\/1","type":"animated_gif","sizes":{"large":{"w":300,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":186,"resize":"fit"},"medium":{"w":300,"h":186,"resize":"fit"}},"source_status_id":663407826849636352,"source_status_id_str":"663407826849636352","source_user_id":2760550650,"source_user_id_str":"2760550650","video_info":{"aspect_ratio":[50,31],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTl5vbWcAA02cL.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285434880,"id_str":"663727934285434880","text":"RT @ImYourKindaGirl: tenho de ir ver o filme do Ronaldo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4041016527,"id_str":"4041016527","name":"BernaTavares","screen_name":"TavaresBerna","location":null,"url":null,"description":"Tavares\\13 anos\\ Sporting sempre\\ SL Cartaxo 4ever 3","protected":false,"verified":false,"followers_count":83,"friends_count":303,"listed_count":0,"favourites_count":43,"statuses_count":132,"created_at":"Sun Oct 25 19:35:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658367492356751362\/7UlTMfdv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658367492356751362\/7UlTMfdv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4041016527\/1446462767","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:53:13 +0000 2015","id":663700871188975616,"id_str":"663700871188975616","text":"tenho de ir ver o filme do Ronaldo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2501585802,"id_str":"2501585802","name":"eveline","screen_name":"ImYourKindaGirl","location":"Portugal","url":"http:\/\/imyourkindagirl.tumblr.com","description":"hh. FCP. insta\/snap: maria.machado02","protected":false,"verified":false,"followers_count":3045,"friends_count":860,"listed_count":1,"favourites_count":15077,"statuses_count":44086,"created_at":"Sat May 17 13:41:05 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543762914562162688\/XzZ2jKXA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543762914562162688\/XzZ2jKXA.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369590634844160\/0k2PDftL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369590634844160\/0k2PDftL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501585802\/1446984228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ImYourKindaGirl","name":"eveline","id":2501585802,"id_str":"2501585802","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934277074944,"id_str":"663727934277074944","text":"@Fernanda_Cid @mafiasummers Olha o queixo \u00c9 travesti","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727802668212224,"in_reply_to_status_id_str":"663727802668212224","in_reply_to_user_id":278268867,"in_reply_to_user_id_str":"278268867","in_reply_to_screen_name":"Fernanda_Cid","user":{"id":369049413,"id_str":"369049413","name":"GABRIEL PINHEIRO \u0646","screen_name":"GABRlELPINHEIRO","location":null,"url":"http:\/\/www.portaldatransparencia.gov.br\/despesasdiarias\/empenho?documento=115406204152014NE002291","description":"Tweets feitos \u00e0 m\u00e3o por crian\u00e7as escravas chinesas","protected":false,"verified":false,"followers_count":23088,"friends_count":895,"listed_count":66,"favourites_count":4257,"statuses_count":223491,"created_at":"Tue Sep 06 17:38:21 +0000 2011","utc_offset":46800,"time_zone":"Wellington","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555599644814618624\/jo4iwBO9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555599644814618624\/jo4iwBO9.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662860643394023424\/iUBHfh3J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662860643394023424\/iUBHfh3J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369049413\/1445241910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fernanda_Cid","name":"\u269c Maria Fernanda \u269c","id":278268867,"id_str":"278268867","indices":[0,13]},{"screen_name":"mafiasummers","name":"Daniel foi pro c\u00e9u","id":1195666020,"id_str":"1195666020","indices":[14,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934293843968,"id_str":"663727934293843968","text":"RT @RelatableQuote: Can't stop laughing at this\ud83d\ude02 https:\/\/t.co\/1r7Kje4o02","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263407729,"id_str":"263407729","name":"Pau Curotto","screen_name":"PauCurotto","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":442,"friends_count":156,"listed_count":0,"favourites_count":7342,"statuses_count":33371,"created_at":"Thu Mar 10 00:17:56 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C27A44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/771472551\/3d47c0de47d4c252ca97f6f717230278.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/771472551\/3d47c0de47d4c252ca97f6f717230278.jpeg","profile_background_tile":true,"profile_link_color":"B30083","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D0BFD9","profile_text_color":"0D0C0D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649326097188978688\/033t4QCg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649326097188978688\/033t4QCg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263407729\/1427753232","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:10:22 +0000 2015","id":663705187736010756,"id_str":"663705187736010756","text":"Can't stop laughing at this\ud83d\ude02 https:\/\/t.co\/1r7Kje4o02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147305691,"id_str":"147305691","name":"Relatable Quotes","screen_name":"RelatableQuote","location":null,"url":"https:\/\/Instagram.com\/arlindmusliu\/","description":"Tweets that Relate to your daily life! If you can relate then Retweet! *we do not own content posted* \/\/ Contact: contactrelatablequote@gmail.com","protected":false,"verified":false,"followers_count":3206378,"friends_count":16205,"listed_count":8674,"favourites_count":20793,"statuses_count":59615,"created_at":"Sun May 23 19:42:54 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"D815DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147305691\/1423611170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2405,"favorite_count":3258,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1r7Kje4o02","expanded_url":"https:\/\/vine.co\/v\/eiTFKeL7aMz","display_url":"vine.co\/v\/eiTFKeL7aMz","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1r7Kje4o02","expanded_url":"https:\/\/vine.co\/v\/eiTFKeL7aMz","display_url":"vine.co\/v\/eiTFKeL7aMz","indices":[49,72]}],"user_mentions":[{"screen_name":"RelatableQuote","name":"Relatable Quotes","id":147305691,"id_str":"147305691","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045661"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302089216,"id_str":"663727934302089216","text":"Teel klu rame 5 cewe lagi SS apa yg akan terjadi????\n\nSex party??! lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3029448154,"id_str":"3029448154","name":"\u271fmine \uc8fc\ubbfc\ud76c","screen_name":"Minhee93_YP","location":" \u2661Jesus overflows you","url":"http:\/\/twitter.com\/Stellar_MH","description":"\u10da Choi Minhee of Stellar Vocalist Dancer - know as Bunny \u314b\u314b\u314b since93\u00a9 \u10da #YPFams \/tabungan $1010\/?","protected":false,"verified":false,"followers_count":135,"friends_count":67,"listed_count":0,"favourites_count":190,"statuses_count":4888,"created_at":"Wed Feb 11 03:40:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663607786668818432\/4Mw56LxC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663607786668818432\/4Mw56LxC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3029448154\/1429545643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934276960256,"id_str":"663727934276960256","text":"RT @_ken_ko_: \u3010\u4ea4\u63db\u3011AGF \u3042\u3093\u30b9\u30bf \u30c9\u30ea\u30fc\u30e0\u7f36\u30d0\u30c3\u30b8\n\u8b72) \u702c\u540d \u96f6 \u8863\u66f42 \u306a\u305a\u306a \u5fcd \u5b88\u6ca2 \u9ad8\u5cef \u5927\u795e \u30a2\u30c9\u30cb\u30b9\n\u6c42)\u307e\u308b\u304b\u304f\u7f36\u30d0\u30c3\u30b8>>\u751f\u30d6\u30ed\u30de\u30a4\u30c9 \u3086\u3046\u305f\n\u30ad\u30e3\u30e9\u306b\u3088\u3063\u3066\u306f\u8907\u6570:1\u53ef\u3002\u7570\u7a2e\u306e\u305f\u3081\u96e3\u3057\u3044\u3068\u601d\u3044\u307e\u3059\u304c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2812477610,"id_str":"2812477610","name":"*\uff9f\u265a\u7f8e\u7434@\u304a\u53d6\u5f15\u7528\u265a\uff9f*","screen_name":"H_S_2428","location":"Next \u2192 7\u65e5AGF \/ 8\u65e59\u65e5\u6c60\u888b","url":"http:\/\/twpf.jp\/H_S_2428","description":"\u300a \u3086\u3046\u3061\u3087 \/ \u90f5\u9001 \/ \u90fd\u5185\u624b\u6e21\u3057 \u300b \u3010 \u73fe\u5728\u8cb7\u53d6\u505c\u6b62\u4e2d \u3011 \u7fa9\u52d9\u6559\u80b2\u7d42\u4e86\u6e08 \/ 15\u219120\u2193 \/ \u2640 \uff0a\u305d\u306e\u4ed6\u8a73\u7d30\u306f\u30c4\u30a4\u30d7\u30ed\u53c2\u7167\uff0a \u672c\u57a2 \u2192\u3010 @L_M_0917 \u3011","protected":false,"verified":false,"followers_count":270,"friends_count":270,"listed_count":6,"favourites_count":98,"statuses_count":16268,"created_at":"Tue Sep 16 05:22:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512425026973233153\/Z2Nz5Wp3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512425026973233153\/Z2Nz5Wp3.jpeg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655747319631974404\/2P92t-_R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655747319631974404\/2P92t-_R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2812477610\/1446094674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:22 +0000 2015","id":663727584761376769,"id_str":"663727584761376769","text":"\u3010\u4ea4\u63db\u3011AGF \u3042\u3093\u30b9\u30bf \u30c9\u30ea\u30fc\u30e0\u7f36\u30d0\u30c3\u30b8\n\u8b72) \u702c\u540d \u96f6 \u8863\u66f42 \u306a\u305a\u306a \u5fcd \u5b88\u6ca2 \u9ad8\u5cef \u5927\u795e \u30a2\u30c9\u30cb\u30b9\n\u6c42)\u307e\u308b\u304b\u304f\u7f36\u30d0\u30c3\u30b8>>\u751f\u30d6\u30ed\u30de\u30a4\u30c9 \u3086\u3046\u305f\n\u30ad\u30e3\u30e9\u306b\u3088\u3063\u3066\u306f\u8907\u6570:1\u53ef\u3002\u7570\u7a2e\u306e\u305f\u3081\u96e3\u3057\u3044\u3068\u601d\u3044\u307e\u3059\u304c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002 https:\/\/t.co\/3TVcQrc86K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299199585,"id_str":"299199585","name":"\u3051\u3093\u5b50 \u5e73\u65e5\u4f4e\u6d6e\u4e0a","screen_name":"_ken_ko_","location":"\u897f\u50743\u5217\u76ee\u4e00\u756a\u306f\u3058","url":"http:\/\/twpf.jp\/_ken_ko_","description":"\u821e\u53f0\/\u9ed2\uff8a\uff9e\uff7d\/HQ\/\u5f31\u30da\u30c0\/\u5fcd\u305f\u307e\/\uff83\uff86\uff8c\uff9f\uff98\/\u3068\u3046\u3089\u3076\/G.Addict\/\u68ee\u5c71\/\u65e9\u5ddd\/\u591c\u4e45\/\u6771\u5802\/\u5c3e\u6d5c\/\u5ca9\u878d\/\u3086\u3046\u305f\u2026 \u7531\u5b5d\u304f\u3093\u306b\u672c\u6c17\u3067\u604b\u3057\u3066\u307e\u3059\u2661(\uff89\uff9f\u25bd\uff9f)\uff89 \u304a\u53d6\u5f15\u306e\u65b9\u306f\u30c4\u30a4\u30d7\u30ed\u78ba\u8a8d\u63a8\u5968\u3002","protected":false,"verified":false,"followers_count":617,"friends_count":725,"listed_count":14,"favourites_count":1148,"statuses_count":29654,"created_at":"Sun May 15 17:34:07 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/689379535\/9b2888c13a62fd5ca546411fe33b5560.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/689379535\/9b2888c13a62fd5ca546411fe33b5560.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593051493386702848\/tO6-OTTY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593051493386702848\/tO6-OTTY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299199585\/1426469314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727556143661056,"id_str":"663727556143661056","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","url":"https:\/\/t.co\/3TVcQrc86K","display_url":"pic.twitter.com\/3TVcQrc86K","expanded_url":"http:\/\/twitter.com\/_ken_ko_\/status\/663727584761376769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727556143661056,"id_str":"663727556143661056","indices":[123,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","url":"https:\/\/t.co\/3TVcQrc86K","display_url":"pic.twitter.com\/3TVcQrc86K","expanded_url":"http:\/\/twitter.com\/_ken_ko_\/status\/663727584761376769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_ken_ko_","name":"\u3051\u3093\u5b50 \u5e73\u65e5\u4f4e\u6d6e\u4e0a","id":299199585,"id_str":"299199585","indices":[3,12]}],"symbols":[],"media":[{"id":663727556143661056,"id_str":"663727556143661056","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","url":"https:\/\/t.co\/3TVcQrc86K","display_url":"pic.twitter.com\/3TVcQrc86K","expanded_url":"http:\/\/twitter.com\/_ken_ko_\/status\/663727584761376769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663727584761376769,"source_status_id_str":"663727584761376769","source_user_id":299199585,"source_user_id_str":"299199585"}]},"extended_entities":{"media":[{"id":663727556143661056,"id_str":"663727556143661056","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIshuUwAALm2a.jpg","url":"https:\/\/t.co\/3TVcQrc86K","display_url":"pic.twitter.com\/3TVcQrc86K","expanded_url":"http:\/\/twitter.com\/_ken_ko_\/status\/663727584761376769\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663727584761376769,"source_status_id_str":"663727584761376769","source_user_id":299199585,"source_user_id_str":"299199585"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285283328,"id_str":"663727934285283328","text":"@chir05k \u3067\u3082\u304d\u305f\u3089\u3067\u304b\u3044\u304b\u3089\u3084\u305b\u3066\u307f\u3048\u308b\u304b\u3082","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727711597146112,"in_reply_to_status_id_str":"663727711597146112","in_reply_to_user_id":144777181,"in_reply_to_user_id_str":"144777181","in_reply_to_screen_name":"chir05k","user":{"id":87682269,"id_str":"87682269","name":"\u3057\u3089:)","screen_name":"shira056","location":"\u30c0\u30a4\u30e4\u63a1\u6398\u5834","url":"http:\/\/www.pixiv.net\/member.php?id=326281","description":"\u3042\u3093\u30b9\u30bf\uff08\u7fe0\u5343\u7fe0\uff09kgpr\uff08\u30b7\u30f3\u30b3\u30ce\/\u30bb\u30c8\u53d7\u3051\uff09\u30b8\u30e3\u30f3\u30eb\u3044\u308d\u3044\u308d\u3000\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":753,"friends_count":828,"listed_count":48,"favourites_count":5312,"statuses_count":322472,"created_at":"Thu Nov 05 13:15:41 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124724189\/d6881fb6b2be8191e3d8af4bd5519633.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124724189\/d6881fb6b2be8191e3d8af4bd5519633.jpeg","profile_background_tile":true,"profile_link_color":"46F0B7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"453608","profile_text_color":"F04F8D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662315291221692416\/F2eDesGk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662315291221692416\/F2eDesGk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87682269\/1446741439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chir05k","name":"\u91d1\u6b20","id":144777181,"id_str":"144777181","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934297927680,"id_str":"663727934297927680","text":"\u3068\u304b\u3044\u3044\u306a\u304c\u3089TERRACE HOUSE\u3060\u3051\u307f\u305f\u3089\u5bdd\u3066\u3057\u307e\u3046\u30e4\u30c4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1480833511,"id_str":"1480833511","name":"\u304b\u3093\u3061\u3087\u3073","screen_name":"tyobikan0215","location":null,"url":null,"description":"\u25b3\u25bc\u30e2\u30c7\u30eb\u76ee\u6307\u3057\u3066\u307e\u3059\u25bc\u25b3 \u6e6f\u53e3\u2192\u306f\u306a\u306e\u30fc\uff13\uff21\u5352\u696d live in Tokyo UVERworld\/\u897f\u91ce\u30ab\u30ca\/Silent Siren \u795e\u67a0 \u6771\u4eac\u53cb\u9054\u52df\u96c6\u4e2d\uff01\u8ab0\u3067\u3082follow me","protected":false,"verified":false,"followers_count":416,"friends_count":366,"listed_count":0,"favourites_count":882,"statuses_count":6482,"created_at":"Mon Jun 03 22:57:16 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663305547412705280\/jUKWJnu8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663305547412705280\/jUKWJnu8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1480833511\/1447023477","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045662"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285320193,"id_str":"663727934285320193","text":"RT @baikinsou0121: https:\/\/t.co\/YUrallsALV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2350148790,"id_str":"2350148790","name":"\u71ce","screen_name":"loty_izuriha","location":"\u2592\u2592\u2592\u2592\u2592\u2592\u771f\u6ce2\u53d7\u2592\u2592\u2592\u2592\u2592\u2592","url":"http:\/\/twpf.jp\/loty_izuriha","description":"\u304b\u304c\u308a\u3067\u30fc\u3059 love\u2192 @Monamann319 \/ h\u2192@Azuki_0716 \u6700\u8fd1\u306f\u30da\u30c0\u30eb\u3068\u304a\u305d\u677e\u304c\u597d\u304d \u30da\u30c0\u30eb\u306f\u771f\u6ce2\u53d7\u3051 \u304a\u305d\u677e\u306f\u6570\u5b57\u3068\u8272\u3068\u7d05\u597d\u304d\u306e\u4e00\u677e\u3068\u9577\u7537\u63a8\u3057","protected":false,"verified":false,"followers_count":467,"friends_count":196,"listed_count":39,"favourites_count":22846,"statuses_count":32901,"created_at":"Tue Feb 18 13:52:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663156048337895424\/lJNX3ZAs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663156048337895424\/lJNX3ZAs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2350148790\/1437222525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 29 05:54:24 +0000 2015","id":659609206052360192,"id_str":"659609206052360192","text":"https:\/\/t.co\/YUrallsALV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308840894,"id_str":"3308840894","name":"\u677e\u307f\u304b\u3093","screen_name":"baikinsou0121","location":null,"url":null,"description":"\u304a\u305d\u677e\u3055\u3093\u57a2\u3064\u304f\u308a\u307e\u3057\u305f\uff01\u307f\u3093\u306a\u597d\u304d\u3060\u3051\u3069\u304a\u305d\u677e\u3068\u30c8\u30c9\u677e\u304c\u7279\u306b\u597d\u304d\u3067\u3059\uff0118\u2193","protected":false,"verified":false,"followers_count":4270,"friends_count":45,"listed_count":98,"favourites_count":1221,"statuses_count":249,"created_at":"Fri Aug 07 14:37:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660057486167179264\/SNtXenZ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660057486167179264\/SNtXenZ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308840894\/1445955600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":243,"favorite_count":1048,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659609197441495040,"id_str":"659609197441495040","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","url":"https:\/\/t.co\/YUrallsALV","display_url":"pic.twitter.com\/YUrallsALV","expanded_url":"http:\/\/twitter.com\/baikinsou0121\/status\/659609206052360192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":571,"h":1016,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":1016,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":659609197441495040,"id_str":"659609197441495040","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","url":"https:\/\/t.co\/YUrallsALV","display_url":"pic.twitter.com\/YUrallsALV","expanded_url":"http:\/\/twitter.com\/baikinsou0121\/status\/659609206052360192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":571,"h":1016,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":1016,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"baikinsou0121","name":"\u677e\u307f\u304b\u3093","id":3308840894,"id_str":"3308840894","indices":[3,17]}],"symbols":[],"media":[{"id":659609197441495040,"id_str":"659609197441495040","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","url":"https:\/\/t.co\/YUrallsALV","display_url":"pic.twitter.com\/YUrallsALV","expanded_url":"http:\/\/twitter.com\/baikinsou0121\/status\/659609206052360192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":571,"h":1016,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":1016,"resize":"fit"}},"source_status_id":659609206052360192,"source_status_id_str":"659609206052360192","source_user_id":3308840894,"source_user_id_str":"3308840894"}]},"extended_entities":{"media":[{"id":659609197441495040,"id_str":"659609197441495040","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSdnEgAUsAARWhC.jpg","url":"https:\/\/t.co\/YUrallsALV","display_url":"pic.twitter.com\/YUrallsALV","expanded_url":"http:\/\/twitter.com\/baikinsou0121\/status\/659609206052360192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":571,"h":1016,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":1016,"resize":"fit"}},"source_status_id":659609206052360192,"source_status_id_str":"659609206052360192","source_user_id":3308840894,"source_user_id_str":"3308840894"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285320192,"id_str":"663727934285320192","text":"@_y_m_s_t_ \n\u304a\u8fd4\u4e8b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2661\n\n\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3057\u3087\u3046\u304b\uff1f\uff1f\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663683858626310145,"in_reply_to_status_id_str":"663683858626310145","in_reply_to_user_id":3434890880,"in_reply_to_user_id_str":"3434890880","in_reply_to_screen_name":"_y_m_s_t_","user":{"id":3246738944,"id_str":"3246738944","name":"\u24ce\u24e4\u24da\u24be 15\u65e5\u795e\u6238","screen_name":"_yh16S2","location":"\u6771\u6d77","url":null,"description":"\u6211\u4e00\u76f4\u7231\u4f60\u3002 20\u2191","protected":false,"verified":false,"followers_count":70,"friends_count":75,"listed_count":6,"favourites_count":624,"statuses_count":4176,"created_at":"Tue Jun 16 11:39:52 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649427154023747585\/FOmXzrko.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649427154023747585\/FOmXzrko.jpg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662799171045339136\/zvBMiQws_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662799171045339136\/zvBMiQws_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246738944\/1446901545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_y_m_s_t_","name":"\u263a\ufe0e\ufe0e \u3081 \u3046 \u677e \u263a\ufe0e\ufe0e","id":3434890880,"id_str":"3434890880","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302060545,"id_str":"663727934302060545","text":"\u7814\u7a76\u5ba4\u306e\u8ab2\u984c\u304d\u3064\u3044\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1453399368,"id_str":"1453399368","name":"\u30cc\u30fc","screen_name":"Mathew9497","location":null,"url":null,"description":"\u7dcf\u751f \u30cb\u30dd\u30dd Take It Easy!! \u963f\u5446\u306a\u751f\u304d\u65b9\u3053\u305d\u81f3\u9ad8!!","protected":false,"verified":false,"followers_count":92,"friends_count":74,"listed_count":1,"favourites_count":145,"statuses_count":1330,"created_at":"Fri May 24 06:48:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663398802691219456\/v6J8T6Gj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663398802691219456\/v6J8T6Gj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1453399368\/1437751706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934293700608,"id_str":"663727934293700608","text":"RT @business: N.Y.'s Exxon probe marks the toughest state climate crackdown yet https:\/\/t.co\/dUA9nOt8qu https:\/\/t.co\/e0Hhm5wcIt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294425970,"id_str":"294425970","name":"CitizensForWater","screen_name":"WaterCitizen","location":"We are Water","url":null,"description":null,"protected":false,"verified":false,"followers_count":1854,"friends_count":875,"listed_count":89,"favourites_count":133,"statuses_count":7424,"created_at":"Sat May 07 04:00:00 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/247641575\/z.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/247641575\/z.jpg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"FCCB05","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"05A9F5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477153111\/CFW-TWITTER-ICON-COMP2_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477153111\/CFW-TWITTER-ICON-COMP2_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294425970\/1398442544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 18:31:38 +0000 2015","id":663061262654423040,"id_str":"663061262654423040","text":"N.Y.'s Exxon probe marks the toughest state climate crackdown yet https:\/\/t.co\/dUA9nOt8qu https:\/\/t.co\/e0Hhm5wcIt","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34713362,"id_str":"34713362","name":"Bloomberg Business","screen_name":"business","location":"New York and the World","url":"http:\/\/www.bloomberg.com","description":"The first word in business news.","protected":false,"verified":true,"followers_count":2720062,"friends_count":686,"listed_count":35649,"favourites_count":255,"statuses_count":117323,"created_at":"Thu Apr 23 20:05:17 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"101112","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544322097833467904\/1fjpNCr9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544322097833467904\/1fjpNCr9.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"DADADA","profile_sidebar_fill_color":"EEEEEE","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545046583746633728\/NV8jT7c0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545046583746633728\/NV8jT7c0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34713362\/1418609243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":24,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dUA9nOt8qu","expanded_url":"http:\/\/bloom.bg\/1PqvWrc","display_url":"bloom.bg\/1PqvWrc","indices":[66,89]}],"user_mentions":[],"symbols":[],"media":[{"id":663061262335655937,"id_str":"663061262335655937","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","url":"https:\/\/t.co\/e0Hhm5wcIt","display_url":"pic.twitter.com\/e0Hhm5wcIt","expanded_url":"http:\/\/twitter.com\/business\/status\/663061262654423040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663061262335655937,"id_str":"663061262335655937","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","url":"https:\/\/t.co\/e0Hhm5wcIt","display_url":"pic.twitter.com\/e0Hhm5wcIt","expanded_url":"http:\/\/twitter.com\/business\/status\/663061262654423040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dUA9nOt8qu","expanded_url":"http:\/\/bloom.bg\/1PqvWrc","display_url":"bloom.bg\/1PqvWrc","indices":[80,103]}],"user_mentions":[{"screen_name":"business","name":"Bloomberg Business","id":34713362,"id_str":"34713362","indices":[3,12]}],"symbols":[],"media":[{"id":663061262335655937,"id_str":"663061262335655937","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","url":"https:\/\/t.co\/e0Hhm5wcIt","display_url":"pic.twitter.com\/e0Hhm5wcIt","expanded_url":"http:\/\/twitter.com\/business\/status\/663061262654423040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663061262654423040,"source_status_id_str":"663061262654423040","source_user_id":34713362,"source_user_id_str":"34713362"}]},"extended_entities":{"media":[{"id":663061262335655937,"id_str":"663061262335655937","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOqtH3WwAEhgXE.jpg","url":"https:\/\/t.co\/e0Hhm5wcIt","display_url":"pic.twitter.com\/e0Hhm5wcIt","expanded_url":"http:\/\/twitter.com\/business\/status\/663061262654423040\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663061262654423040,"source_status_id_str":"663061262654423040","source_user_id":34713362,"source_user_id_str":"34713362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045661"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934277029888,"id_str":"663727934277029888","text":"RT @SP3RKLE: #\u062c\u064a\u0634_\u0639\u0645\u0631_\u0628\u0646_\u0627\u0644\u062e\u0637\u0627\u0628 \n\ud83d\udc63\ud83d\udc63\nhttps:\/\/t.co\/aKscniynzD\nhttps:\/\/t.co\/Ijy1ya117Z\nhttps:\/\/t.co\/M0CFtmRGfT\n\ud83d\udc63\ud83d\udc63\n#\u062d\u0645\u0644\u0647_\u0633\u0628\u0627\u0645_\u0648\u0637\u0646\u064a\u0647 https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300813780,"id_str":"3300813780","name":"\u0625\u0643\u062a\u0641\u0627\u0621 ~\u2765","screen_name":"_____oi2","location":null,"url":null,"description":"\u0648\u0627\u0630\u0627 \u062c\u064a\u0640\u0640\u0640\u0640\u0646\u0653\u0640\u0640\u0640\u0640\u0627 \u0644\u0637\u0627\u0631\u064a \u0627\u0644\u062d\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0628 !! \u0627\u0646\u0640\u0640\u0640\u0640\u0640\u0640\u0627 \u062d\u062c\u0627\u0632\u064a\u0647 \u0648 \u0645\u062d\u0628\u0648\u0628\u064a \u0634\u0645\u0627\u0644\u064a","protected":false,"verified":false,"followers_count":3739,"friends_count":4112,"listed_count":3,"favourites_count":11,"statuses_count":3152,"created_at":"Wed Jul 29 20:45:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643453193080832\/Pnlt5P_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300813780\/1444239042","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:44:39 +0000 2015","id":663668516931829760,"id_str":"663668516931829760","text":"#\u062c\u064a\u0634_\u0639\u0645\u0631_\u0628\u0646_\u0627\u0644\u062e\u0637\u0627\u0628 \n\ud83d\udc63\ud83d\udc63\nhttps:\/\/t.co\/aKscniynzD\nhttps:\/\/t.co\/Ijy1ya117Z\nhttps:\/\/t.co\/M0CFtmRGfT\n\ud83d\udc63\ud83d\udc63\n#\u062d\u0645\u0644\u0647_\u0633\u0628\u0627\u0645_\u0648\u0637\u0646\u064a\u0647 https:\/\/t.co\/UMaYhvRUgy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877848795,"id_str":"3877848795","name":"\u0627\u0644\u064f\u0645\u0640\u064c\u062f\u0645\u0650\u0653\u0640\u0640\u0650\u0631","screen_name":"SP3RKLE","location":"\u265a\u2694]|:::)[=]3\\\/\\\/\u20ac\u20ac\u2022\u2022","url":null,"description":"\u062f\u0650\u0639\u0633 \u0628\u0647\u064e\u0627\u0626\u0645 \u0627\u0644\u0645\u062a\u064f\u0639\u0629\u0653 \u064e \u0644\u0644\u062e\u064c\u0645\u064a\u0646\u064a \u0648\u0627\u0644\u0645\u0633\u062a\u064f\u0646\u0633\u062e \u0627\u0644\u0648\u0644\u064a \u0627\u0644\u0633\u0650\u0641\u064a\u0647 \u0648\u062c\u0631\u0630\u0627\u0646 \u0627\u0644\u0641\u0627\u062c\u0631 \u0632\u0646\u062f\u064a\u0642 \u0627\u0644\u0639\u0631\u0627\u0642 \u0648\u0627\u0644\u0631\u064f\u0648\u0628\u064a\u0636\u0627\u062a \u0645\u0646 \u0627\u0644\u0645\u0644\u0622\u062d\u062f\u0647. #\u0639\u0631\u0636\u064a_\u062f\u0648\u0646_\u0639\u0631\u0636\u0643 #\u0633\u064a\u062f\u064a_\u0631\u0633\u0648\u0644_\u0627\u0644\u0644\u0647 #\ufdfa","protected":false,"verified":false,"followers_count":16411,"friends_count":10803,"listed_count":5,"favourites_count":199,"statuses_count":1767,"created_at":"Tue Oct 06 05:55:01 +0000 2015","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663175078494867457\/jjMVyfMi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663175078494867457\/jjMVyfMi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3877848795\/1446948236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":5,"entities":{"hashtags":[{"text":"\u062c\u064a\u0634_\u0639\u0645\u0631_\u0628\u0646_\u0627\u0644\u062e\u0637\u0627\u0628","indices":[0,18]},{"text":"\u062d\u0645\u0644\u0647_\u0633\u0628\u0627\u0645_\u0648\u0637\u0646\u064a\u0647","indices":[98,114]}],"urls":[{"url":"https:\/\/t.co\/aKscniynzD","expanded_url":"https:\/\/twitter.com\/retweet4jehad6","display_url":"twitter.com\/retweet4jehad6","indices":[23,46]},{"url":"https:\/\/t.co\/Ijy1ya117Z","expanded_url":"https:\/\/twitter.com\/a_d_kh28","display_url":"twitter.com\/a_d_kh28","indices":[47,70]},{"url":"https:\/\/t.co\/M0CFtmRGfT","expanded_url":"https:\/\/twitter.com\/waesrd7","display_url":"twitter.com\/waesrd7","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663668509033959424,"id_str":"663668509033959424","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","url":"https:\/\/t.co\/UMaYhvRUgy","display_url":"pic.twitter.com\/UMaYhvRUgy","expanded_url":"http:\/\/twitter.com\/SP3RKLE\/status\/663668516931829760\/photo\/1","type":"photo","sizes":{"large":{"w":565,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":309,"resize":"fit"},"medium":{"w":565,"h":514,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663668509033959424,"id_str":"663668509033959424","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","url":"https:\/\/t.co\/UMaYhvRUgy","display_url":"pic.twitter.com\/UMaYhvRUgy","expanded_url":"http:\/\/twitter.com\/SP3RKLE\/status\/663668516931829760\/photo\/1","type":"photo","sizes":{"large":{"w":565,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":309,"resize":"fit"},"medium":{"w":565,"h":514,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062c\u064a\u0634_\u0639\u0645\u0631_\u0628\u0646_\u0627\u0644\u062e\u0637\u0627\u0628","indices":[13,31]},{"text":"\u062d\u0645\u0644\u0647_\u0633\u0628\u0627\u0645_\u0648\u0637\u0646\u064a\u0647","indices":[111,127]}],"urls":[{"url":"https:\/\/t.co\/aKscniynzD","expanded_url":"https:\/\/twitter.com\/retweet4jehad6","display_url":"twitter.com\/retweet4jehad6","indices":[36,59]},{"url":"https:\/\/t.co\/Ijy1ya117Z","expanded_url":"https:\/\/twitter.com\/a_d_kh28","display_url":"twitter.com\/a_d_kh28","indices":[60,83]},{"url":"https:\/\/t.co\/M0CFtmRGfT","expanded_url":"https:\/\/twitter.com\/waesrd7","display_url":"twitter.com\/waesrd7","indices":[84,107]}],"user_mentions":[{"screen_name":"SP3RKLE","name":"\u0627\u0644\u064f\u0645\u0640\u064c\u062f\u0645\u0650\u0653\u0640\u0640\u0650\u0631","id":3877848795,"id_str":"3877848795","indices":[3,11]}],"symbols":[],"media":[{"id":663668509033959424,"id_str":"663668509033959424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","url":"https:\/\/t.co\/UMaYhvRUgy","display_url":"pic.twitter.com\/UMaYhvRUgy","expanded_url":"http:\/\/twitter.com\/SP3RKLE\/status\/663668516931829760\/photo\/1","type":"photo","sizes":{"large":{"w":565,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":309,"resize":"fit"},"medium":{"w":565,"h":514,"resize":"fit"}},"source_status_id":663668516931829760,"source_status_id_str":"663668516931829760","source_user_id":3877848795,"source_user_id_str":"3877848795"}]},"extended_entities":{"media":[{"id":663668509033959424,"id_str":"663668509033959424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXS_iGVEAAqAtZ.jpg","url":"https:\/\/t.co\/UMaYhvRUgy","display_url":"pic.twitter.com\/UMaYhvRUgy","expanded_url":"http:\/\/twitter.com\/SP3RKLE\/status\/663668516931829760\/photo\/1","type":"photo","sizes":{"large":{"w":565,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":309,"resize":"fit"},"medium":{"w":565,"h":514,"resize":"fit"}},"source_status_id":663668516931829760,"source_status_id_str":"663668516931829760","source_user_id":3877848795,"source_user_id_str":"3877848795"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934293676032,"id_str":"663727934293676032","text":"RT @Square_DI: [SYSTEM]\n\ucc38\uace0, \uc5ed\ub300 \ubcf8 \uc2dc\uc124\uc758 \uac01 \ud14c\uc2a4\ud2b8 \ubcc4 \ucd5c\uace0\ub09c\ub3c4 \ubb38\uc81c\ub85c\ub294\n1\uae30-\ud398\ub974\ub9c8\uc758 \ub300\uc815\ub9ac \uc911 \uae30\ud558\ud559 \uc99d\uba85 \uad00\ub828\n2\uae30-(\ub370\uc774\ud130 \ud655\uc778 \ubd88\uac00)\n3\uae30-\ub300\uac01\uc120 \uacf1\uc148\n4\uae30-7 by 7 \ud589\ub82c\n5\uae30-\uc790\uae30 \uc2a4\ud540 \uc591\uc790\uc218\n6\uae30-\uc544\ud3f4\ub85c\uc758 \uc815\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222627467,"id_str":"2222627467","name":"\uc774\ub8e8\uc2a4","screen_name":"172_164","location":"\u300e\uc624\ub298\uc758 \uac04\uc2dd\uc740 \ube0c\ub9ac\uc624\uc288\uc57c\u300f","url":"http:\/\/ljhcms33.tistory.com\/31","description":"\u258e\ud638\ub8e8\uc2a4\u272b\uc774\ub8e8\uc2a4 \u258e \uc5b8\ub77c\uc774\ud2b8 \uc704\uc8fc \ud504\ub85c \uc7a1\ub355 \/ \uc2ec\uc5f0\uc870 & \uc2e4\ub7ec\ub9ac \ucd5c\uc560 \/ \ud504\ub85c\ud544 \uc77d\uc5b4\uc8fc\uba74 \uac10\uc0ac\ud569\ub2c8\ub2e4 \/ \uc774\uc0c1\ud55c \uc0ac\ub78c\uc785\ub2c8\ub2e4 \/ \uc778\uc7a5 : \uc19c(@macaron2031)\ub2d8","protected":false,"verified":false,"followers_count":357,"friends_count":447,"listed_count":3,"favourites_count":3864,"statuses_count":284932,"created_at":"Sat Nov 30 07:06:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"2B0596","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662586927598579712\/dDpwHfOJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662586927598579712\/dDpwHfOJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222627467\/1446455370","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:41:22 +0000 2015","id":663320401997467649,"id_str":"663320401997467649","text":"[SYSTEM]\n\ucc38\uace0, \uc5ed\ub300 \ubcf8 \uc2dc\uc124\uc758 \uac01 \ud14c\uc2a4\ud2b8 \ubcc4 \ucd5c\uace0\ub09c\ub3c4 \ubb38\uc81c\ub85c\ub294\n1\uae30-\ud398\ub974\ub9c8\uc758 \ub300\uc815\ub9ac \uc911 \uae30\ud558\ud559 \uc99d\uba85 \uad00\ub828\n2\uae30-(\ub370\uc774\ud130 \ud655\uc778 \ubd88\uac00)\n3\uae30-\ub300\uac01\uc120 \uacf1\uc148\n4\uae30-7 by 7 \ud589\ub82c\n5\uae30-\uc790\uae30 \uc2a4\ud540 \uc591\uc790\uc218\n6\uae30-\uc544\ud3f4\ub85c\uc758 \uc815\uc721\uba74\uccb4\n7\uae30-\uc885\ud6a1 \uacf1\uc148","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4165165033,"id_str":"4165165033","name":"the Square. - D:I","screen_name":"Square_DI","location":"Square.","url":"http:\/\/www.evernote.com\/l\/AdepEICUctlNGrvLyGyls_RPVWdxxNY7pfc\/","description":"\ud2b8\uc704\ud130 \ud37c\uc990 \ucee4\ubba4\ub2c8\ud2f0 Square. 10.5\uae30. \u300cthe Square. - Dual:Intelligence\u300d","protected":false,"verified":false,"followers_count":36,"friends_count":1,"listed_count":0,"favourites_count":14,"statuses_count":40,"created_at":"Sun Nov 08 05:59:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663234918760058881\/0XyySJ0T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663234918760058881\/0XyySJ0T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4165165033\/1446962726","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Square_DI","name":"the Square. - D:I","id":4165165033,"id_str":"4165165033","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080045661"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934281125888,"id_str":"663727934281125888","text":"@aym62307 \u3042\u3084\u3081\u3061\u3083\u3093\u3063\u3066\u547c\u3093\u3067\u3044\u3044\u3067\u3059\u304b\u0b2a( \u0eca\u0e51\u02c3\u0336\u0348\u2314\u02c2\u0336\u0348)*\u0cc3\u2661\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663688713445093376,"in_reply_to_status_id_str":"663688713445093376","in_reply_to_user_id":2943097417,"in_reply_to_user_id_str":"2943097417","in_reply_to_screen_name":"aym62307","user":{"id":3256785583,"id_str":"3256785583","name":"\u3042\u304a\u3044\u2764\ufe0e","screen_name":"Da_iCE_6u6","location":null,"url":null,"description":"\u548c\u7530\u98af\u304f\u3093\u2661\u2727\u3002(@Da_iCE_HAYATE)","protected":false,"verified":false,"followers_count":91,"friends_count":89,"listed_count":0,"favourites_count":1170,"statuses_count":1271,"created_at":"Fri Jun 26 14:33:13 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660848788987219968\/KKNEgs9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660848788987219968\/KKNEgs9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3256785583\/1446394536","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aym62307","name":"a y a m e","id":2943097417,"id_str":"2943097417","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045658"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934276956160,"id_str":"663727934276956160","text":"@_w3w3 \u03a3(\uff9f\u0414\uff9f\uff1b\uff74\uff70\uff6f!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726651893649409,"in_reply_to_status_id_str":"663726651893649409","in_reply_to_user_id":3288689360,"in_reply_to_user_id_str":"3288689360","in_reply_to_screen_name":"_w3w3","user":{"id":3360640872,"id_str":"3360640872","name":"\u611b\u7dad","screen_name":"happy_setsuna77","location":null,"url":null,"description":"\u3068\u307f\u30fc\u56e3\u3001\u30a2\u30eb\u30af\u56e3 \u3001\u6708\u5883\u56e3\u3001\u9280\u72d0\u56e3 \u3001\u30ef\u30b5\u30e9\u30fc\u56e3\u3001\u30dd\u30cb\u30c6\u56e3\u3001Lovers\u3001\u307b\u3057\u306d\u3053\u56e3 \u5f1f\u2192\u3010@LCc_26\u3011","protected":false,"verified":false,"followers_count":541,"friends_count":502,"listed_count":12,"favourites_count":1971,"statuses_count":860,"created_at":"Thu Aug 27 15:18:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659581800163885056\/yn_zd9za_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659581800163885056\/yn_zd9za_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3360640872\/1446945571","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_w3w3","name":"\u308f\u3055\u308f\u3055","id":3288689360,"id_str":"3288689360","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934306283520,"id_str":"663727934306283520","text":"@cyolp maap:))))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727886679994368,"in_reply_to_status_id_str":"663727886679994368","in_reply_to_user_id":850514106,"in_reply_to_user_id_str":"850514106","in_reply_to_screen_name":"cyolp","user":{"id":948745334,"id_str":"948745334","name":"jesuy","screen_name":"suoyeon","location":"known as jesuy","url":"http:\/\/eliters.bkingdom.anu.favors.com","description":"jsy's pard \u2744","protected":false,"verified":false,"followers_count":4368,"friends_count":4352,"listed_count":7,"favourites_count":254,"statuses_count":43707,"created_at":"Thu Nov 15 00:16:57 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614669545853227009\/wj1QPSyD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614669545853227009\/wj1QPSyD.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663549082217005056\/_jjQqT8Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663549082217005056\/_jjQqT8Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/948745334\/1447003189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cyolp","name":"xoxe","id":850514106,"id_str":"850514106","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080045664"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934314692608,"id_str":"663727934314692608","text":"RT @BestBikiniGirls: Hotel Erotica Bikini \u2013 Product Rosanna Arkle High definition tunes... - https:\/\/t.co\/Np73Svh3HN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054440794,"id_str":"4054440794","name":"GrataYves","screen_name":"gratayves92","location":"Colorado, USA","url":null,"description":"Introvert. Social media practitioner. Avid zombie maven. Total gamer. Coffee junkie. Web lover.","protected":false,"verified":false,"followers_count":157,"friends_count":2358,"listed_count":1,"favourites_count":5526,"statuses_count":6583,"created_at":"Thu Oct 29 05:50:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659608342361321472\/BgibJ4DW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659608342361321472\/BgibJ4DW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054440794\/1446097892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:08 +0000 2015","id":663725262165536768,"id_str":"663725262165536768","text":"Hotel Erotica Bikini \u2013 Product Rosanna Arkle High definition tunes... - https:\/\/t.co\/Np73Svh3HN","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2332,"favorite_count":1464,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Np73Svh3HN","expanded_url":"http:\/\/bestgirlsbikinis.com\/hotel-erotica-bikini-product-rosanna-arkle-high-definition-tunes\/","display_url":"bestgirlsbikinis.com\/hotel-erotica-\u2026","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Np73Svh3HN","expanded_url":"http:\/\/bestgirlsbikinis.com\/hotel-erotica-bikini-product-rosanna-arkle-high-definition-tunes\/","display_url":"bestgirlsbikinis.com\/hotel-erotica-\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045666"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934281138176,"id_str":"663727934281138176","text":"RT @ThatTyrith_nat: \u0e04\u0e27\u0e32\u0e21\u0e21\u0e31\u0e48\u0e19\u0e42\u0e2b\u0e19\u0e01\u0e19\u0e35\u0e48\u0e19\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2221020714,"id_str":"2221020714","name":"red\u3002","screen_name":"pprimsn","location":"bkk,Thailand","url":"http:\/\/Instagram.com\/pprimsn","description":"dp.","protected":false,"verified":false,"followers_count":309,"friends_count":196,"listed_count":1,"favourites_count":391,"statuses_count":28315,"created_at":"Fri Nov 29 07:34:29 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659057599829008384\/wvLnlm-e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659057599829008384\/wvLnlm-e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2221020714\/1445966552","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727843080146944,"id_str":"663727843080146944","text":"\u0e04\u0e27\u0e32\u0e21\u0e21\u0e31\u0e48\u0e19\u0e42\u0e2b\u0e19\u0e01\u0e19\u0e35\u0e48\u0e19\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288771475,"id_str":"288771475","name":"N A T T H I","screen_name":"ThatTyrith_nat","location":null,"url":null,"description":"natthi's diary \u0e02\u0e35\u0e49\u0e1a\u0e48\u0e19\u0e0a\u0e2d\u0e1a\u0e23\u0e30\u0e1a\u0e32\u0e22\u0e41\u0e15\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e08\u0e34\u0e15\u0e23\u0e01\u0e23 | \u0e0a\u0e2d\u0e1a\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e40\u0e1a\u0e37\u0e48\u0e2d\u0e42\u0e25\u0e01\u0e23\u0e30\u0e14\u0e31\u0e1a10 | #dek59 |","protected":false,"verified":false,"followers_count":250,"friends_count":394,"listed_count":0,"favourites_count":1439,"statuses_count":10765,"created_at":"Wed Apr 27 12:59:32 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549105252587151360\/e-AarlSI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549105252587151360\/e-AarlSI.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663687577006772225\/Oj-k15gN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663687577006772225\/Oj-k15gN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288771475\/1446744142","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThatTyrith_nat","name":"N A T T H I","id":288771475,"id_str":"288771475","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080045658"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302060546,"id_str":"663727934302060546","text":"https:\/\/t.co\/vVrO5JLaZt","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457895824,"id_str":"457895824","name":"Dennison Ray Beers ","screen_name":"DennisonBeers","location":"Hudson Falls, NY","url":null,"description":"I am DJ Beers currently with @TheRevolution http:\/\/wgfr.org. Not sure where I'll go after WGFR and but some where. Use my #DJBeers!","protected":false,"verified":false,"followers_count":67,"friends_count":408,"listed_count":0,"favourites_count":53,"statuses_count":4757,"created_at":"Sat Jan 07 23:20:28 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"25A31F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/473292115829477376\/PYS3p_SL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/473292115829477376\/PYS3p_SL.jpeg","profile_background_tile":false,"profile_link_color":"41D91A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"24210E","profile_text_color":"2A8513","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526916973897076736\/I5EAKh-f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526916973897076736\/I5EAKh-f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457895824\/1401510991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vVrO5JLaZt","expanded_url":"http:\/\/fb.me\/T1esKDZq","display_url":"fb.me\/T1esKDZq","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302085121,"id_str":"663727934302085121","text":"@nitushi65 @awizena \u0432\u043e\u0442 \u0442\u0430\u043a \u043d\u0435 \u043d\u0430\u0434\u043e)))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727697969942528,"in_reply_to_status_id_str":"663727697969942528","in_reply_to_user_id":343932197,"in_reply_to_user_id_str":"343932197","in_reply_to_screen_name":"nitushi65","user":{"id":829169328,"id_str":"829169328","name":"\u0421\u0435\u0440\u0433\u0435\u0438\u0447","screen_name":"ditertom","location":"\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433","url":null,"description":"\u0412\u043e\u0440\u0443\u044e \u0442\u0432\u0438\u0442\u044b. \u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0438.","protected":false,"verified":false,"followers_count":6768,"friends_count":1285,"listed_count":61,"favourites_count":724,"statuses_count":79715,"created_at":"Mon Sep 17 14:31:17 +0000 2012","utc_offset":18000,"time_zone":"Ekaterinburg","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629488144824573952\/KOLGCrdu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629488144824573952\/KOLGCrdu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829169328\/1446704436","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nitushi65","name":"\u042e\u0440\u0438\u0439 \u0418\u0448\u0443\u0442\u0438\u043d","id":343932197,"id_str":"343932197","indices":[0,10]},{"screen_name":"awizena","name":"Oc\u043a\u0430\u0440 \u0425\u043e\u0434\u0436\u0430\u0435\u0432","id":411246576,"id_str":"411246576","indices":[11,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934285328385,"id_str":"663727934285328385","text":"@unsung_melody45 \u534a\u65e5\u4f11\u307f\u306f\u3042\u308b\u304b\u3089\u8010\u3048\u629c\u304d\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727332595662848,"in_reply_to_status_id_str":"663727332595662848","in_reply_to_user_id":1182898177,"in_reply_to_user_id_str":"1182898177","in_reply_to_screen_name":"unsung_melody45","user":{"id":212446936,"id_str":"212446936","name":"\u3057\u3076\u3084\u3084","screen_name":"ayamerococoa","location":"\u7fa4\u99ac\u21e8\u6771\u4eac","url":null,"description":"\u4f53\u6e29\u8a08\u304c\u597d\u304d\u3067\u3059\u3002 YOLO.","protected":false,"verified":false,"followers_count":552,"friends_count":655,"listed_count":14,"favourites_count":15820,"statuses_count":52596,"created_at":"Sat Nov 06 02:57:34 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663125236867461120\/5gjH-GnW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663125236867461120\/5gjH-GnW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212446936\/1441472722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"unsung_melody45","name":"Timmy","id":1182898177,"id_str":"1182898177","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045659"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934310510592,"id_str":"663727934310510592","text":"@rk_wrik \n\u30de\u30b8\u30c8\u30fc\u30f3\u306f\u3046\u304a\u3063\u3066\u306a\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3186\ufe4f\u3186\uff57\uff57\n\u3067\u3082\u3084\u3063\u3071\u308a\u597d\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727467459313664,"in_reply_to_status_id_str":"663727467459313664","in_reply_to_user_id":3141015086,"in_reply_to_user_id_str":"3141015086","in_reply_to_screen_name":"rk_wrik","user":{"id":2529096368,"id_str":"2529096368","name":"\u306a\u304b\u3058\u30fc\/Kodai","screen_name":"nakaji_sp6","location":"\u79cb\u7530\u770c \u5317\u79cb\u7530\u5e02","url":null,"description":"\u3069\u3063\u304b\u3067\u3082\u306a\u304b\u3060\u3063\u305f\u3084\u3064\u3002male 21\u3002\u771f\u9762\u76ee\u306a\u697d\u5929\u5bb6\u3002DTM\u521d\u5fc3\u8005\u3002\u30d2\u30eb\u30af\u30e9\u30a4\u30e0\u3068\u30b5\u30ab\u30ca\u30af\u30b7\u30e7\u30f3\u5927\u597d\u304d\u30de\u30f3\u3002\u3008ski,music,guitar,English\u3009","protected":false,"verified":false,"followers_count":430,"friends_count":742,"listed_count":3,"favourites_count":652,"statuses_count":4042,"created_at":"Wed May 28 04:58:35 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"30BFCF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472027288989466624\/gIKIusLT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472027288989466624\/gIKIusLT.jpeg","profile_background_tile":true,"profile_link_color":"491DCC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663357413282590720\/aIBbhdeM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663357413282590720\/aIBbhdeM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2529096368\/1445580901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rk_wrik","name":"\u6dd5","id":3141015086,"id_str":"3141015086","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045665"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934306304000,"id_str":"663727934306304000","text":"#OTWOLWish One thousand four hundred eighty one","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284241835,"id_str":"3284241835","name":"SolidJaDine_JDI OFC","screen_name":"ivypot16","location":"New Taipei City, Taiwan","url":null,"description":"Can act,can sing,can dance ,undergrad..","protected":false,"verified":false,"followers_count":180,"friends_count":480,"listed_count":4,"favourites_count":184,"statuses_count":14570,"created_at":"Sun Jul 19 09:42:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660719892904046592\/DjKcjLTZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660719892904046592\/DjKcjLTZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284241835\/1447077843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045664"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302064640,"id_str":"663727934302064640","text":"@imchloeboto paiwan tayo bahala na tayo pauwi hahahaha.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727729557114880,"in_reply_to_status_id_str":"663727729557114880","in_reply_to_user_id":2423811373,"in_reply_to_user_id_str":"2423811373","in_reply_to_screen_name":"imchloeboto","user":{"id":3999603500,"id_str":"3999603500","name":"Yosh","screen_name":"FarinYosha","location":"Quezon City","url":null,"description":"Everything has a choice \/\/ Original Acct \u27a1\ufe0f @FarinYosh \/\/","protected":false,"verified":false,"followers_count":7,"friends_count":34,"listed_count":0,"favourites_count":61,"statuses_count":793,"created_at":"Sat Oct 24 06:50:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663287578922082305\/Kcs6CtmF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663287578922082305\/Kcs6CtmF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3999603500\/1446982087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imchloeboto","name":"Chlong O\u00f1isac","id":2423811373,"id_str":"2423811373","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934281089024,"id_str":"663727934281089024","text":"\u3044\u307e\u306e\u81ea\u5206\u306e\u5fc3\u306f\u5ea6\u91cd\u306a\u308b\u9023\u65e5\u306e\u30d5\u30a1\u30d5\u30ca\u30fc\u8996\u8074\u306b\u3088\u308b\u7dcf\u58eb\u3068\u3070\u3089\u304b\u3082\u3093\u898b\u305f\u305b\u3044\u3067\u30d2\u30ed\u30b7\u306b\u3088\u3063\u3066\u652f\u914d\u3055\u308c\u3066\u308b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277100748,"id_str":"3277100748","name":"\u3057\u3093\u3046\u308a","screen_name":"wassoi","location":"\u30c0\u30a4\u30e4\u63a1\u77f3\u6240","url":null,"description":"\u3060\u3044\u3084\u304f\u3060\u3055\u3044 \u59dc\u7dad\u3068\u590f\u4faf\u8987\u304f\u3093\u306e\u884c\u304f\u672b\u3092\u898b\u5b88\u308a\u3064\u3064\u3001\u85ab\u594f\u3068\u53f8\u30ec\u30aa\u3092\u62dd\u3080\u3060\u3051\u3002\u8ab2\u91d1\u30c0\u30e1\u7d76\u5bfe \u6700\u8fd1\u306f\u3055\u3093\u3071\u305a\u30dd\u30c1\u30dd\u30c1","protected":false,"verified":false,"followers_count":2,"friends_count":14,"listed_count":0,"favourites_count":12,"statuses_count":807,"created_at":"Sun Jul 12 05:42:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663337638380724225\/D6og4N34_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663337638380724225\/D6og4N34_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277100748\/1446732749","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045658"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934310494209,"id_str":"663727934310494209","text":"@yokoi__honami \n\u3059\u304d\u307e\u308b\ud83d\ude46\ud83d\ude46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725136864935936,"in_reply_to_status_id_str":"663725136864935936","in_reply_to_user_id":1171602722,"in_reply_to_user_id_str":"1171602722","in_reply_to_screen_name":"yokoi__honami","user":{"id":2491707240,"id_str":"2491707240","name":"\u3086\u3081\u308d\u3093\u3061\u3083\u3093 \u0e05\u2022\ufecc\u2022\u0e05","screen_name":"yumepyooo","location":null,"url":null,"description":"\u2721 \u2661 \u53ef\u611b\u3044\u5973\u306e\u5b50\u304c\u5927\u597d\u304d\u307e\u308b \u1571\u2445\u1571 \u3086\u308b\u301c\u304f \uff4e\uff45\uff58\uff54\u2765\u2765","protected":false,"verified":false,"followers_count":178,"friends_count":153,"listed_count":1,"favourites_count":131,"statuses_count":730,"created_at":"Mon May 12 17:03:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655360634570182656\/wzdE4294_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655360634570182656\/wzdE4294_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2491707240\/1445172061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yokoi__honami","name":"\u6a2a\u4e95\u307b\u306a\u307f\uf8ffFES\u2606TIVE","id":1171602722,"id_str":"1171602722","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045665"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934314643456,"id_str":"663727934314643456","text":"\"his hands are so big, I wanna fall asleep in them like thumbelina\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230991839,"id_str":"230991839","name":"mystical missy\u2122","screen_name":"heyimmissy","location":"Medford, OR","url":null,"description":"Missy, you're actually such a bad influence on me -Stephanie","protected":false,"verified":false,"followers_count":346,"friends_count":362,"listed_count":1,"favourites_count":9361,"statuses_count":11274,"created_at":"Mon Dec 27 08:20:12 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659255367541522432\/hTC1S1zO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659255367541522432\/hTC1S1zO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230991839\/1446583728","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045666"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934310494208,"id_str":"663727934310494208","text":"\u304a\u3084\u3059\u307f\u30fc \/ #\u7537\u5973\u30e6\u30cb\u30c3\u30c8 \u30ad\u30e3\u30b9 https:\/\/t.co\/EuA8wrgF3N","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3136927724,"id_str":"3136927724","name":"\u304f\u3055\u304f\u306b0211","screen_name":"kusakuni0211","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":8,"listed_count":0,"favourites_count":4,"statuses_count":362,"created_at":"Fri Apr 03 17:26:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587629757887414273\/eCb-3wld_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587629757887414273\/eCb-3wld_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7537\u5973\u30e6\u30cb\u30c3\u30c8","indices":[8,15]}],"urls":[{"url":"https:\/\/t.co\/EuA8wrgF3N","expanded_url":"http:\/\/cas.st\/cd32aec","display_url":"cas.st\/cd32aec","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045665"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934297935874,"id_str":"663727934297935874","text":"\u30df\u30f3\u30c1\u3092\u63da\u3052\u305f\u3082\u306e\u306f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285460790,"id_str":"285460790","name":"\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u3066\u304c\u3089","screen_name":"ootegara","location":"\u308f\u304b\u3093\u306a\u3044","url":null,"description":"\u30dd\u30ac\u30c6\u30a3\u30d6\u30c4\u30a4\u30fc\u30c8\u3092\u5fc3\u304c\u3051\u305f\u3044\u3067\u3059\u306d\uff01","protected":false,"verified":false,"followers_count":692,"friends_count":715,"listed_count":43,"favourites_count":18174,"statuses_count":115819,"created_at":"Thu Apr 21 05:49:58 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/288296235\/twilk_background_4e1be3480ba2e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/288296235\/twilk_background_4e1be3480ba2e.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643066877061689344\/R6mRuKI0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643066877061689344\/R6mRuKI0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285460790\/1391843785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045662"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934297935872,"id_str":"663727934297935872","text":"RT Dance to the music of This Gravity!Groovy intro baby! #YoureMyHome \nFaveSong From JKTheAlbum https:\/\/t.co\/Vgl1cgyBUy","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014097270,"id_str":"3014097270","name":"bec mallari JKUFC","screen_name":"MccBec","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":486,"friends_count":105,"listed_count":1,"favourites_count":12,"statuses_count":27537,"created_at":"Mon Feb 09 08:35:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564704958038016000\/oXC5XwlG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564704958038016000\/oXC5XwlG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014097270\/1423471126","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[58,70]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717722727956480,"id_str":"663717722727956480","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663717722727956480\/pu\/img\/SG3uztd3J7HjUEfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663717722727956480\/pu\/img\/SG3uztd3J7HjUEfX.jpg","url":"https:\/\/t.co\/Vgl1cgyBUy","display_url":"pic.twitter.com\/Vgl1cgyBUy","expanded_url":"http:\/\/twitter.com\/MarimarVeve\/status\/663719944253628416\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663719944253628416,"source_status_id_str":"663719944253628416","source_user_id":2811250927,"source_user_id_str":"2811250927"}]},"extended_entities":{"media":[{"id":663717722727956480,"id_str":"663717722727956480","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663717722727956480\/pu\/img\/SG3uztd3J7HjUEfX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663717722727956480\/pu\/img\/SG3uztd3J7HjUEfX.jpg","url":"https:\/\/t.co\/Vgl1cgyBUy","display_url":"pic.twitter.com\/Vgl1cgyBUy","expanded_url":"http:\/\/twitter.com\/MarimarVeve\/status\/663719944253628416\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663719944253628416,"source_status_id_str":"663719944253628416","source_user_id":2811250927,"source_user_id_str":"2811250927","video_info":{"aspect_ratio":[1,1],"duration_millis":29960,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663717722727956480\/pu\/pl\/jfKYLHP2wyEElC3u.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663717722727956480\/pu\/vid\/480x480\/Qn4HB6Zb9RtQjG_5.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663717722727956480\/pu\/pl\/jfKYLHP2wyEElC3u.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663717722727956480\/pu\/vid\/240x240\/GzzzZYzthLsuKsVA.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663717722727956480\/pu\/vid\/480x480\/Qn4HB6Zb9RtQjG_5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045662"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934302220288,"id_str":"663727934302220288","text":"@AshHalfheart Nice speaking to you. Forgot to mention drivers are available on our support forum: https:\/\/t.co\/ovmFKBogSf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663694806007332864,"in_reply_to_status_id_str":"663694806007332864","in_reply_to_user_id":3788797455,"in_reply_to_user_id_str":"3788797455","in_reply_to_screen_name":"AshHalfheart","user":{"id":631792009,"id_str":"631792009","name":"HobbyComponents","screen_name":"HobbyComponents","location":"Chesterfield, England","url":"http:\/\/www.hobbycomponents.com","description":"We don't promise. We deliver!","protected":false,"verified":false,"followers_count":106,"friends_count":106,"listed_count":3,"favourites_count":10,"statuses_count":312,"created_at":"Tue Jul 10 07:57:29 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F7F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639721907097608192\/KQvsInYw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639721907097608192\/KQvsInYw.png","profile_background_tile":false,"profile_link_color":"2D3B31","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639720805006491648\/kGI8mIFI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639720805006491648\/kGI8mIFI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/631792009\/1378561794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ovmFKBogSf","expanded_url":"http:\/\/forum.hobbycomponents.com\/viewtopic.php?f=102&t=1411","display_url":"forum.hobbycomponents.com\/viewtopic.php?\u2026","indices":[99,122]}],"user_mentions":[{"screen_name":"AshHalfheart","name":"Ash Halfheart","id":3788797455,"id_str":"3788797455","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045663"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934306443264,"id_str":"663727934306443264","text":"Ma che siamo tornati alle elementari che ci si nasconde le cose?! Ma vaffanculo!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2203516956,"id_str":"2203516956","name":"Little Wolf","screen_name":"_myblueeyedboy","location":"New Orleans","url":null,"description":"|We've both castoff, we've learned to fight when we are backed into a corner| -KM\n#klayley","protected":false,"verified":false,"followers_count":150,"friends_count":274,"listed_count":1,"favourites_count":152,"statuses_count":1810,"created_at":"Tue Nov 19 18:04:46 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465946097324531712\/CTJza_k8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465946097324531712\/CTJza_k8.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663657135851614208\/nmXGna1k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663657135851614208\/nmXGna1k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203516956\/1447063165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080045664"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934310621184,"id_str":"663727934310621184","text":"What would be in your advent calendar? Mine would be yarn, obviously, seeing as I've made some! https:\/\/t.co\/4JLVfFGHDu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1831310659,"id_str":"1831310659","name":"Rebecca Farley","screen_name":"crafterways","location":"Wimborne, UK","url":"http:\/\/crafterways.com","description":"knitter, yarn dyer, cook, crafter, web developer, musician.\nI see my yarn at https:\/\/www.etsy.com\/uk\/shop\/bluebellyarns","protected":false,"verified":false,"followers_count":401,"friends_count":821,"listed_count":14,"favourites_count":30,"statuses_count":487,"created_at":"Sun Sep 08 16:19:20 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000433972599\/2e4e00f5d1e7f93dd40ce6a3bfc4e12b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000433972599\/2e4e00f5d1e7f93dd40ce6a3bfc4e12b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1831310659\/1398250452","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4JLVfFGHDu","expanded_url":"https:\/\/www.etsy.com\/uk\/listing\/253954430\/british-wool-yarn-advent-calendar","display_url":"etsy.com\/uk\/listing\/253\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080045665"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934276964352,"id_str":"663727934276964352","text":"\u306a\u306b\u3053\u308c\u307e\u3058\u3069\u3053\u304b\u3089\u7a81\u3063\u8fbc\u3081\u3070\u3044\u3044\u306e\u3069\u3046\u3044\u3046\u72b6\u6cc1\u306a\u306e\u3053\u3053\u3069\u3053\u3060\u3088\u610f\u5473\u308f\u304b\u3093\u306a\u3044\u3051\u3069\u3068\u308a\u3042\u3048\u305a\u3064\u306a\u304e\u3050\u3046\u6b63\u7fa9\u3063\u3066\u3053\u3068\u306f\u308f\u304b\u3063\u305f https:\/\/t.co\/KylI4yGonY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1929986221,"id_str":"1929986221","name":"\u306a\u304e\u308b\u3074\u3063\u3074\u306f\u71c3\u3048\u306a\u3044\u30b4\u30df","screen_name":"bk25errn","location":"\u8272\u677e\u5c0a\u3044","url":null,"description":"\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\/\u304a\u305d\u677e\u3055\u3093\/\u9032\u6483\/HQ\/\u5927\u7f6a \u4eca\u5e74\u53d7\u9a13\u3089\u3057\u3044\u306e\u3067\u3088\u308a\u4e00\u5c64Twitter\u306b\u7cbe\u3092\u51fa\u3059","protected":false,"verified":false,"followers_count":1257,"friends_count":2470,"listed_count":8,"favourites_count":2418,"statuses_count":6138,"created_at":"Thu Oct 03 08:46:34 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661891398556217345\/bMURGv12_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661891398556217345\/bMURGv12_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1929986221\/1446547964","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727932192370689,"id_str":"663727932192370689","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCanUsAEMMF2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCanUsAEMMF2.jpg","url":"https:\/\/t.co\/KylI4yGonY","display_url":"pic.twitter.com\/KylI4yGonY","expanded_url":"http:\/\/twitter.com\/bk25errn\/status\/663727934276964352\/photo\/1","type":"photo","sizes":{"medium":{"w":368,"h":207,"resize":"fit"},"large":{"w":368,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727932192370689,"id_str":"663727932192370689","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCanUsAEMMF2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCanUsAEMMF2.jpg","url":"https:\/\/t.co\/KylI4yGonY","display_url":"pic.twitter.com\/KylI4yGonY","expanded_url":"http:\/\/twitter.com\/bk25errn\/status\/663727934276964352\/photo\/1","type":"photo","sizes":{"medium":{"w":368,"h":207,"resize":"fit"},"large":{"w":368,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045657"} +{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727934310518789,"id_str":"663727934310518789","text":"@hill_nonko0304 \n\u3046\u3061\u660e\u65e5100\u5186\u306e\u51fa\u8cbb\u306a\u3093\u3060\u304b\u3089\u306a\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726758508662784,"in_reply_to_status_id_str":"663726758508662784","in_reply_to_user_id":3302397637,"in_reply_to_user_id_str":"3302397637","in_reply_to_screen_name":"hill_nonko0304","user":{"id":2986942777,"id_str":"2986942777","name":"\u3066\u3065\u304b \u3042\u304d\u3053","screen_name":"aki_amkm","location":"\u9752\u68ee\u770c \u9752\u68ee\u5e02","url":null,"description":"\u273f\u7532\u75302\u5e74\u273f\u5408\u5531\u90e8\u273f\u3000\u3080\u3059\u3081\u3093\/\u3082\u3082\u30af\u30ed\/\u30d9\u30d3\u30e1\u30bf\/\u30c1\u30ad\u30d1\/\u30b5\u30a4\u30b5\u30a4\/\u30d0\u30af\u30ca\u30f3\/love\u2661 @mykv6ken @kanano0902 @Yuri_lily2000 \u261c\u305f\u3044\u305b\u3064\u3002 \u897f\u9ad8\u5fd7\u671b \u30a2\u30f3\u30b3\u30f3\u304c\u3093\u3070\u308b \u3068\u3077\u53f3 \u2727\u6c17\u8efd\u306bfollow me\u2727","protected":false,"verified":false,"followers_count":549,"friends_count":468,"listed_count":4,"favourites_count":2751,"statuses_count":4744,"created_at":"Sat Jan 17 11:35:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660790715576750080\/CYA2TrQ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660790715576750080\/CYA2TrQ8_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hill_nonko0304","name":"hill","id":3302397637,"id_str":"3302397637","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080045665"} +{"delete":{"status":{"id":655342274885386240,"id_str":"655342274885386240","user_id":317761099,"user_id_str":"317761099"},"timestamp_ms":"1447080045940"}} +{"delete":{"status":{"id":663712025311354880,"id_str":"663712025311354880","user_id":148581410,"user_id_str":"148581410"},"timestamp_ms":"1447080046010"}} +{"delete":{"status":{"id":663536376227487744,"id_str":"663536376227487744","user_id":268477482,"user_id_str":"268477482"},"timestamp_ms":"1447080046092"}} +{"delete":{"status":{"id":663325809608957952,"id_str":"663325809608957952","user_id":4038174873,"user_id_str":"4038174873"},"timestamp_ms":"1447080046414"}} +{"delete":{"status":{"id":661215298746454016,"id_str":"661215298746454016","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080046433"}} +{"delete":{"status":{"id":663716001507246080,"id_str":"663716001507246080","user_id":122354598,"user_id_str":"122354598"},"timestamp_ms":"1447080046488"}} +{"delete":{"status":{"id":663000818157621248,"id_str":"663000818157621248","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447080046515"}} +{"delete":{"status":{"id":645244085347880960,"id_str":"645244085347880960","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080046657"}} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479738880,"id_str":"663727938479738880","text":"\"Walang nakaangat sa batas, maski ang presidente.\" Heneral Luna, 2015.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555102364,"id_str":"555102364","name":"angela","screen_name":"dngmrls","location":"AJISD","url":"http:\/\/instagram.com\/dngmrls","description":"Stubborn in Faith \u2022 Faithful in Prayer || Jeremiah 29:11 \u2022 Matthew 6:33 | LitEd \u2022 roar","protected":false,"verified":false,"followers_count":278,"friends_count":165,"listed_count":0,"favourites_count":24054,"statuses_count":19389,"created_at":"Mon Apr 16 12:51:27 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451274049998442496\/5iAOJCTz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451274049998442496\/5iAOJCTz.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614154476551712768\/68oKN1T0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614154476551712768\/68oKN1T0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555102364\/1441331970","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479792128,"id_str":"663727938479792128","text":"...\u043a\u0440\u0430\u044f \u043d\u0430\u043f\u043e\u043b\u043d\u044f\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u043e\u0442\u0431\u043b\u0435\u0441\u043a\u0430\u043c\u0438 \u0434\u0443\u0445\u043e\u0432\u043d\u043e\u0441\u0442\u0438 \u0438 \u043b\u0443\u0447\u0448\u0435...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251065558,"id_str":"1251065558","name":"RobeyAvalos","screen_name":"RobeyAvalos","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":51,"friends_count":22,"listed_count":13,"favourites_count":0,"statuses_count":136271,"created_at":"Fri Mar 08 07:45:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3596953337\/150f9b9bdd8a1e2475008fd7c13d02c6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3596953337\/150f9b9bdd8a1e2475008fd7c13d02c6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080046659"} +{"delete":{"status":{"id":532874243609210880,"id_str":"532874243609210880","user_id":328272846,"user_id_str":"328272846"},"timestamp_ms":"1447080046656"}} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938496552960,"id_str":"663727938496552960","text":"\u0625\u0646 \u0644\u0645 \u062a\u0643\u0646 \u0631\u062c\u0644\u0627\u064b \u0642\u0627\u062f\u0631\u0627\u064b \u0639\u0644\u0649 \u0627\u062d\u062a\u0648\u0627\u0621 \u0645\u0646 \u062a\u0639\u0634\u0642 \u061b \u0641\u064e\u0644\u0627 \u062a\u0632\u0631\u0639 \u0641\u064a \u0627\u0645\u0631\u0623\u0629 \u0646\u0628\u0636\u0627\u064b \u0644\u0627 \u064a\u0639\u0631\u0641 \u0643\u064a\u0641 \u064a\u0647\u062f\u0623 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229631568,"id_str":"3229631568","name":"Kaltham Mohd","screen_name":"cat_kaltham","location":"Qatif, Eastern","url":null,"description":"\u200f\u0623\ufeb3\ufe8e\ufee3\ufea2 \ufef7\ufead\ufe97\ufe8e\ufea1 \u060c \ufeed \u0623\ufe97\ufee8\ufe8e\ufeb3\ufef0 \ufef7\ufe91\ufe98\ufeb4\ufee2 \u060c \ufeed \u0623\ufebb\ufee4\ufe96 \ufef7\ufee7\ufef2 \ufefb \ufe83\ufead\ufef3\ufeaa \u0623\u0646 \u0623\ufe9f\ufe8e\ufea9\ufedd \u060c \ufeed \u0623\ufe97\ufed0\ufe8e\ufebf\ufef0 \u0644\u0627\ufee5 \ufefb\ufeb7\ufe8a \ufef3\ufeb4\ufe98\ufea4\ufed6 \u060c \ufeed \u0623\ufebb\ufe92\ufeae \ufef7\ufee5 \ufe9b\ufed8\ufe98\ufef2 \u0628\u0627\ufedf\ufee0\ufeea \ufedf\ufef4\ufeb2 \ufedf\ufeec\ufe8e \ufea3\ufeaa\ufeed\ufea9\nsimply enjoy in your life\u2665","protected":false,"verified":false,"followers_count":38,"friends_count":58,"listed_count":0,"favourites_count":13,"statuses_count":51,"created_at":"Fri May 29 11:34:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660573672290263040\/WH4Zwj2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660573672290263040\/WH4Zwj2a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229631568\/1446328009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080046663"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938488180737,"id_str":"663727938488180737","text":"RT @EscolhiEsperar: Uma das coisas que mais me impressionam em Deus \u00e9 a sua forma de mudar aquilo que precisa ser mudado em mim, s\u00f3 pra eu \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122814799,"id_str":"122814799","name":"Nightlock","screen_name":"lilyah777","location":"Sorocaba - Sp","url":null,"description":"_|||_ , 1,21gw, apx 4 Peeta,Maxon, Thomas, Edward, Quatro,25 ,fase convergente,singer, qualquer um pode usar um pouco de pepsicologia ^^","protected":false,"verified":false,"followers_count":334,"friends_count":199,"listed_count":1,"favourites_count":1743,"statuses_count":9543,"created_at":"Sun Mar 14 01:03:13 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/682363541\/6fa3b39dac40d174b647abe5f6131f4c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/682363541\/6fa3b39dac40d174b647abe5f6131f4c.jpeg","profile_background_tile":false,"profile_link_color":"D49B2A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"539DED","profile_text_color":"0F0E0F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555608079434534912\/SJSmd1Af_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555608079434534912\/SJSmd1Af_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122814799\/1402479841","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:02 +0000 2015","id":663710138436571136,"id_str":"663710138436571136","text":"Uma das coisas que mais me impressionam em Deus \u00e9 a sua forma de mudar aquilo que precisa ser mudado em mim, s\u00f3 pra eu ser como Ele quer.","source":"\u003ca href=\"http:\/\/www.onome.com.br\/twitter\/a\/\" rel=\"nofollow\"\u003eMinhaLeitura\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256258663,"id_str":"256258663","name":"Eu Escolhi Esperar","screen_name":"EscolhiEsperar","location":"Espirito Santo, Brasil","url":"http:\/\/euescolhiesperar.com\/","description":"Contato: (27) 3208-3292 \/ 98186-2222 contato@euescolhiesperar.com","protected":false,"verified":true,"followers_count":590270,"friends_count":738,"listed_count":737,"favourites_count":1072,"statuses_count":83249,"created_at":"Wed Feb 23 00:12:13 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/405827217\/capa-dvd-eee-verso.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/405827217\/capa-dvd-eee-verso.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539403900474757120\/I9L41UJ3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539403900474757120\/I9L41UJ3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256258663\/1443007496","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":195,"favorite_count":221,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EscolhiEsperar","name":"Eu Escolhi Esperar","id":256258663,"id_str":"256258663","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080046661"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938492350468,"id_str":"663727938492350468","text":"RT @MohamadAlarefe: \u0642\u0627\u0644 \u0627\u0628\u0652\u0646 \u062f\u064e\u0642\u0650\u064a\u0642 \u0627\u0644\u0652\u0639\u0650\u064a\u062f \u0641\u0650\u064a \u0622\u062e\u0631 \u0639\u0645\u0631\u0647 :\n\"\u0644\u064a \u0623\u064e\u0631\u0652\u0628\u064e\u0639\u064f\u0648\u0646\u064e \u0633\u0646\u0629\n\u0645\u064e\u0627 \u062a\u064e\u0643\u064e\u0644\u064e\u0651\u0645\u062a \u0643\u0644\u0645\u0629 \u0625\u0650\u0644\u064e\u0651\u0627 \u0648\u0623\u0639\u062f\u062f\u062a \u0644\u064e\u0647\u064e\u0627 \u062c\u064e\u0648\u064e\u0627\u0628\u0627 \u0628\u064e\u064a\u0646 \u064a\u064e\u062f\u064a \u0627\u0644\u0644\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344771856,"id_str":"344771856","name":"\u200f\u0644\u0648\u064f\u0643\u0631\u0650\u064a\u0633\u0650\u064a\u0627\u064e","screen_name":"_iMeMa_","location":"#DOH","url":"http:\/\/www.youtube.com\/watch?v=4l5yc6Ywe5I","description":"\u0622\u0635\u0644\u0650\u062d\u0646\u064a \u064a\u0627 \u0627\u0644\u0644\u0647 \u0643\u064e\u064a \u0623\u0633\u062a\u064e\u062d\u0650\u0642 \u062c\u0646\u0651\u062a\u0643","protected":false,"verified":false,"followers_count":774,"friends_count":165,"listed_count":6,"favourites_count":4766,"statuses_count":41994,"created_at":"Fri Jul 29 15:24:14 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626918364049321984\/wo8g4zst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626918364049321984\/wo8g4zst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344771856\/1438305348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:07 +0000 2015","id":663718212811563008,"id_str":"663718212811563008","text":"\u0642\u0627\u0644 \u0627\u0628\u0652\u0646 \u062f\u064e\u0642\u0650\u064a\u0642 \u0627\u0644\u0652\u0639\u0650\u064a\u062f \u0641\u0650\u064a \u0622\u062e\u0631 \u0639\u0645\u0631\u0647 :\n\"\u0644\u064a \u0623\u064e\u0631\u0652\u0628\u064e\u0639\u064f\u0648\u0646\u064e \u0633\u0646\u0629\n\u0645\u064e\u0627 \u062a\u064e\u0643\u064e\u0644\u064e\u0651\u0645\u062a \u0643\u0644\u0645\u0629 \u0625\u0650\u0644\u064e\u0651\u0627 \u0648\u0623\u0639\u062f\u062f\u062a \u0644\u064e\u0647\u064e\u0627 \u062c\u064e\u0648\u064e\u0627\u0628\u0627 \u0628\u064e\u064a\u0646 \u064a\u064e\u062f\u064a \u0627\u0644\u0644\u0647 \u062a\u064e\u0639\u064e\u0627\u0644\u064e\u0649\".","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219255067,"id_str":"219255067","name":"\u062f. \u0645\u062d\u0645\u062f #\u0627\u0644\u0639\u0631\u064a\u0641\u064a","screen_name":"MohamadAlarefe","location":"\u0623\u0633\u062a\u0627\u0630 \u0627\u0644\u0639\u0642\u064a\u062f\u0629 \u062c\u0627\u0645\u0639\u0629 \u0627\u0644\u0645\u0644\u0643 \u0633\u0639\u0648\u062f","url":"http:\/\/www.arefe.com","description":"(Muslim Scholar) \u0633\u0646\u0627\u0628 \u0634\u0627\u062a mohamad_alarefe \u0631\u0627\u0633\u0644 \u0627\u0644\u0645\u0643\u062a\u0628sms 00966535227779 \u0641\u064a\u0633 http:\/\/www.facebook.com\/3refe \u064a\u0648\u062a\u064a\u0648\u0628 http:\/\/www.youtube.com\/AlarefeTV","protected":false,"verified":true,"followers_count":13236889,"friends_count":2,"listed_count":31497,"favourites_count":25,"statuses_count":29024,"created_at":"Wed Nov 24 10:45:31 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/808440835\/88dff783cb81a74294e662bb0a5a689e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/808440835\/88dff783cb81a74294e662bb0a5a689e.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661036721845444608\/cCNjGtQo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661036721845444608\/cCNjGtQo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219255067\/1445771342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":474,"favorite_count":346,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MohamadAlarefe","name":"\u062f. \u0645\u062d\u0645\u062f #\u0627\u0644\u0639\u0631\u064a\u0641\u064a","id":219255067,"id_str":"219255067","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080046662"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938483957760,"id_str":"663727938483957760","text":"RT @elcosodelapizza: - \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3030246289,"id_str":"3030246289","name":"Mussatti","screen_name":"AntoMussatti","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":216,"friends_count":233,"listed_count":0,"favourites_count":310,"statuses_count":1653,"created_at":"Thu Feb 19 14:24:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642027514320261120\/e0njhNcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642027514320261120\/e0njhNcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3030246289\/1441906783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:07 +0000 2015","id":663727269194563586,"id_str":"663727269194563586","text":"- \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834702151,"id_str":"834702151","name":"cosito de la pizza","screen_name":"elcosodelapizza","location":null,"url":"http:\/\/es.favstar.fm\/users\/elcosodelapizza","description":"Me llamo tr\u00edpode. Sirvo para que el queso no se pegue en la caja.\r\n\r\nCuenta oficial, cuidado con las cuentas falsas por favor. Si ven cuenta falsas reporten.","protected":false,"verified":false,"followers_count":3167621,"friends_count":428,"listed_count":1400,"favourites_count":165734,"statuses_count":29426,"created_at":"Thu Sep 20 03:45:21 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834702151\/1398224448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":132,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elcosodelapizza","name":"cosito de la pizza","id":834702151,"id_str":"834702151","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080046660"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504814593,"id_str":"663727938504814593","text":"\u3042\u306a\u305f\u307f\u305f\u3044\u306a\u3088\u304f\u3070\u308a\u306f\u3044\u3064\u304b\u3059\u3079\u3066\u3053\u307c\u308c\u304a\u3061\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1838042912,"id_str":"1838042912","name":"\u3086\u20e3\u3093\u20e3\u3061\u20e3\u3083\u20e3\u3080\u20e3","screen_name":"yumcham_F","location":"\u2741\u3042\u306a\u305f\u304c\u98fd\u304d\u308b\u307e\u3067\u3042\u306a\u305f\u306e\u96a3\u306b\u5c45\u3055\u305b\u3066\u304f\u3060\u3055\u3044\u2741","url":"http:\/\/twpf.jp\/yumcham_F","description":"\u2741\u8056\u611b\u2741\uff8e\uff9f\uff7c\uff9e\uff83\uff68\uff8c\uff9e\uff7c\uff9d\uff77\uff9d\uff78\uff9e\u2741\u97f3\u697d\u2741\u97f3\u697d\u306f\u5fc3\u3068\u304a\u8033\u306e\u604b\u4eba\u2741\u5973\u306e\u5b50\u5fdc\u63f4\u3057\u968a\u968a\u9577\u2741RT\u3089\u3076\u9b54\u2741","protected":false,"verified":false,"followers_count":493,"friends_count":260,"listed_count":2,"favourites_count":9695,"statuses_count":5004,"created_at":"Mon Sep 09 02:31:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662944197524099072\/b5VflP0u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662944197524099072\/b5VflP0u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1838042912\/1447064595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938488127488,"id_str":"663727938488127488","text":"\u0623\u062a\u064e\u0639\u0644\u0645 \u0645\u0627 \u0647\u064a \u0646\u0648\u0627\u0642\u0636 \u0627\u0644\u0627\u0633\u0644\u0627\u0645\u061f\n\n\u0634\u0631\u062d\u0647\u0627 \u0647\u0646\u0627>> https:\/\/t.co\/36wMhtSZDZ\n\nhttps:\/\/t.co\/anhnP3XKQX\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n#\u0643\u0644\u0645\u0647_\u062a\u062a\u0648\u0642\u0639_\u062a\u0633\u0645\u0639\u0647\u0627_\u0642\u0631\u064a\u0628\u0627","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3714463888,"id_str":"3714463888","name":"\u062d\u0628\u0627\u064b \u0644\u0644\u0647","screen_name":"pghikh15","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":68,"listed_count":0,"favourites_count":51,"statuses_count":249,"created_at":"Sun Sep 20 05:15:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662687518920482816\/fGQfbz6T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662687518920482816\/fGQfbz6T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3714463888\/1446832011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[97,113]},{"text":"\u0643\u0644\u0645\u0647_\u062a\u062a\u0648\u0642\u0639_\u062a\u0633\u0645\u0639\u0647\u0627_\u0642\u0631\u064a\u0628\u0627","indices":[115,139]}],"urls":[{"url":"https:\/\/t.co\/36wMhtSZDZ","expanded_url":"http:\/\/justpaste.it\/Nauaqth","display_url":"justpaste.it\/Nauaqth","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":663030330975236096,"id_str":"663030330975236096","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOOkrkWsAA_5U0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOOkrkWsAA_5U0.jpg","url":"https:\/\/t.co\/anhnP3XKQX","display_url":"pic.twitter.com\/anhnP3XKQX","expanded_url":"http:\/\/twitter.com\/rpghikhg_15\/status\/663030336012558337\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":398,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":398,"resize":"fit"}},"source_status_id":663030336012558337,"source_status_id_str":"663030336012558337","source_user_id":3714463888,"source_user_id_str":"3714463888"}]},"extended_entities":{"media":[{"id":663030330975236096,"id_str":"663030330975236096","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOOkrkWsAA_5U0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOOkrkWsAA_5U0.jpg","url":"https:\/\/t.co\/anhnP3XKQX","display_url":"pic.twitter.com\/anhnP3XKQX","expanded_url":"http:\/\/twitter.com\/rpghikhg_15\/status\/663030336012558337\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":398,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":398,"resize":"fit"}},"source_status_id":663030336012558337,"source_status_id_str":"663030336012558337","source_user_id":3714463888,"source_user_id_str":"3714463888"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080046661"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938492350467,"id_str":"663727938492350467","text":"@gusrochaa postan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726659284172800,"in_reply_to_status_id_str":"663726659284172800","in_reply_to_user_id":2282918583,"in_reply_to_user_id_str":"2282918583","in_reply_to_screen_name":"gusrochaa","user":{"id":3386750962,"id_str":"3386750962","name":"MaiquelMarqu\u00eas","screen_name":"marques_maiquel","location":"Rio de Janeiro, Brasil","url":null,"description":"Rio de Janeiro. \nestudante.\nmeta\u25b6\n(Psic\u00f3logo)\n(fot\u00f3grafo)\nSnapchat (maiquel-12344)\ninstagran (marques_maiquel_)\nperiscope(@marques_maiquel)","protected":false,"verified":false,"followers_count":934,"friends_count":996,"listed_count":0,"favourites_count":1426,"statuses_count":3507,"created_at":"Wed Jul 22 02:30:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663202852169506817\/Nh2S-UgI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663202852169506817\/Nh2S-UgI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3386750962\/1447005954","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gusrochaa","name":"Gustavo Rocha","id":2282918583,"id_str":"2282918583","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046662"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938492170240,"id_str":"663727938492170240","text":"@nurfarahimpauzi kak hani: D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":543158605,"in_reply_to_user_id_str":"543158605","in_reply_to_screen_name":"nurfarahimpauzi","user":{"id":935998098,"id_str":"935998098","name":"K G","screen_name":"Fydayowww","location":null,"url":null,"description":"girl","protected":false,"verified":false,"followers_count":119,"friends_count":144,"listed_count":0,"favourites_count":18,"statuses_count":2313,"created_at":"Fri Nov 09 03:12:53 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/710534318\/9d49344fc85baa23377c94a7cd4d9b63.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/710534318\/9d49344fc85baa23377c94a7cd4d9b63.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444841391806373889\/oVAeWRGP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444841391806373889\/oVAeWRGP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/935998098\/1382668550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nurfarahimpauzi","name":"Miss \u0641\u0631\u062d :D","id":543158605,"id_str":"543158605","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080046662"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938475565056,"id_str":"663727938475565056","text":"RT @JasonK350: Whose streets? Our streets! #OurGenerationOurChoice marching to the White House https:\/\/t.co\/TfaCloiV0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13654792,"id_str":"13654792","name":"Phil Aroneanu","screen_name":"philaroneanu","location":null,"url":"http:\/\/philaroneanu.com","description":"co-founder @350; Political Engagement Director @350Action; banjoist @2ndstringband; runner. Tweets decidedly not endorsements.","protected":false,"verified":false,"followers_count":3911,"friends_count":954,"listed_count":218,"favourites_count":483,"statuses_count":6956,"created_at":"Tue Feb 19 03:13:31 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432908397956972544\/4Vw-J2aY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432908397956972544\/4Vw-J2aY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13654792\/1420473513","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:43 +0000 2015","id":663724150503161856,"id_str":"663724150503161856","text":"Whose streets? Our streets! #OurGenerationOurChoice marching to the White House https:\/\/t.co\/TfaCloiV0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44671045,"id_str":"44671045","name":"Jason Kowalski ","screen_name":"JasonK350","location":"Washington, DC","url":"http:\/\/www.350.org","description":"Policy Director at http:\/\/350.org and 350 Action. Tweets are my own","protected":false,"verified":false,"followers_count":1077,"friends_count":672,"listed_count":81,"favourites_count":710,"statuses_count":1487,"created_at":"Thu Jun 04 17:42:15 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"00C4FF","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489490788665925632\/FOmxLM6Z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489490788665925632\/FOmxLM6Z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44671045\/1405536170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[{"text":"OurGenerationOurChoice","indices":[28,51]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724137475670016,"id_str":"663724137475670016","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","url":"https:\/\/t.co\/TfaCloiV0a","display_url":"pic.twitter.com\/TfaCloiV0a","expanded_url":"http:\/\/twitter.com\/JasonK350\/status\/663724150503161856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724137475670016,"id_str":"663724137475670016","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","url":"https:\/\/t.co\/TfaCloiV0a","display_url":"pic.twitter.com\/TfaCloiV0a","expanded_url":"http:\/\/twitter.com\/JasonK350\/status\/663724150503161856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OurGenerationOurChoice","indices":[43,66]}],"urls":[],"user_mentions":[{"screen_name":"JasonK350","name":"Jason Kowalski ","id":44671045,"id_str":"44671045","indices":[3,13]}],"symbols":[],"media":[{"id":663724137475670016,"id_str":"663724137475670016","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","url":"https:\/\/t.co\/TfaCloiV0a","display_url":"pic.twitter.com\/TfaCloiV0a","expanded_url":"http:\/\/twitter.com\/JasonK350\/status\/663724150503161856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663724150503161856,"source_status_id_str":"663724150503161856","source_user_id":44671045,"source_user_id_str":"44671045"}]},"extended_entities":{"media":[{"id":663724137475670016,"id_str":"663724137475670016","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFliMXAAAXwY_.jpg","url":"https:\/\/t.co\/TfaCloiV0a","display_url":"pic.twitter.com\/TfaCloiV0a","expanded_url":"http:\/\/twitter.com\/JasonK350\/status\/663724150503161856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663724150503161856,"source_status_id_str":"663724150503161856","source_user_id":44671045,"source_user_id_str":"44671045"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046658"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938496499712,"id_str":"663727938496499712","text":"Monica - Just Right For Me ft. Lil Wayne https:\/\/t.co\/1CyP88rLrj","source":"\u003ca href=\"http:\/\/winthecustomer.com\/\" rel=\"nofollow\"\u003eWin the Customer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204352747,"id_str":"204352747","name":"HHRFD","screen_name":"HHRFD","location":"NYC","url":"http:\/\/www.HHRFD.com","description":"Brooklyn Hip-Hop Blog - http:\/\/www.HHRFD.com | Submit: hhrfdNY@gmail.com or hiphopreviewsfordummies@gmail.com \u2022We Offer Promo Packages\u2022 [Instagram]: @HHRFD","protected":false,"verified":false,"followers_count":5782,"friends_count":1172,"listed_count":198,"favourites_count":491,"statuses_count":1124822,"created_at":"Mon Oct 18 14:21:21 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658646618\/syjlfvk18g6fce7g333h.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658646618\/syjlfvk18g6fce7g333h.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502113348742180865\/_pmICGAw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502113348742180865\/_pmICGAw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204352747\/1367170486","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1CyP88rLrj","expanded_url":"http:\/\/www.hhrfd.com\/?p=9809","display_url":"hhrfd.com\/?p=9809","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046663"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938483941377,"id_str":"663727938483941377","text":"Thank you, https:\/\/t.co\/ZvSH16fToU from the The Geek #thegeek https:\/\/t.co\/X7f3K2TwNk","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2980236492,"id_str":"2980236492","name":"The Geek","screen_name":"dailynewsgeeks","location":"Beverly Hills, CA","url":"http:\/\/www.dailynewsgeek.com\/","description":"Tech news only a geek can love.","protected":false,"verified":false,"followers_count":500,"friends_count":590,"listed_count":100,"favourites_count":167,"statuses_count":16387,"created_at":"Tue Jan 13 18:14:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555065541572820992\/3cVtpw0-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555065541572820992\/3cVtpw0-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2980236492\/1421173258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"thegeek","indices":[53,61]}],"urls":[{"url":"https:\/\/t.co\/ZvSH16fToU","expanded_url":"http:\/\/twitter.com\/DontForget2Move","display_url":"twitter.com\/DontForget2Move","indices":[11,34]},{"url":"https:\/\/t.co\/X7f3K2TwNk","expanded_url":"http:\/\/dailynewsgeek.com","display_url":"dailynewsgeek.com","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046660"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938471268354,"id_str":"663727938471268354","text":"\u304a\u3067\u3093\u306b\u5165\u308c\u305f\u306e\u306f\u3001\n\u3068\u3068\u306a\u304b\u3060\u306a\u261c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228208808,"id_str":"3228208808","name":"Kento Nakajima","screen_name":"xxxKN_0313","location":"0601\uff5e","url":null,"description":"\u672c\u5bb6\u7121\u95a2\u4fc2\/\u672c\u5bb6:\u500b\u6027=50:50\/FreeZone\u6240\u5c5e\u4e2d\n\u30de\u30a4\u30da\u30fc\u30b9\u306a\u5f04\u3089\u308c\u6817\u9f20\u306e\u5f79\u76ee\u306f\u51fa\u4f1a\u3063\u305f\u4eba\u3092\u7b11\u9854\u306b\u3059\u308b\u3053\u3068\u3002\u5076\u7136\u306e\u51fa\u4f1a\u3044\u304c\u7b11\u9854\u304c\u6ea2\u308c\u308b\u5fc5\u7136\u306a\u51fa\u4f1a\u3044\u306b\u306a\u308a\u307e\u3059\u3088\u3046\u306b\u3002\/\u5927\u8c46\u5144\u5f1f(\u8c46\u8150)@Sexy_Rose_1030","protected":false,"verified":false,"followers_count":202,"friends_count":132,"listed_count":14,"favourites_count":3152,"statuses_count":4371,"created_at":"Wed May 27 12:50:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654623857072934912\/AcodlLlV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654623857072934912\/AcodlLlV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228208808\/1445036232","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046657"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504949761,"id_str":"663727938504949761","text":"\u043e\u043d \u0432 \u043c\u0435\u043d\u044f \u0432\u043b\u044e\u0431\u0438\u043b\u0441\u044f \u0431\u0435\u0437 \u043f\u0430\u043c\u044f\u0442\u0438-\u043f\u0438\u0448\u0435\u0442 \u043c\u043d\u0435 \u043f\u0435\u0441\u043d\u0438 ,\u0441\u0442\u0438\u0445\u0438","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441085885,"id_str":"441085885","name":"\u041f\u0430\u0443\u043d \u0410\u0440\u0441\u0435\u043d\u0438\u0439","screen_name":"paun_arseniy","location":"\u0412\u0438\u0445\u043e\u0440\u0435\u0432\u043a\u0430","url":"https:\/\/twitter.com\/paun_arseniy","description":"\u041a\u0430\u0436\u0434\u044b\u0439 \u0432\u0438\u043d\u043e\u0432\u043d\u044b\u0439 \u2013 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043f\u0430\u043b\u0430\u0447","protected":false,"verified":false,"followers_count":9517,"friends_count":1178,"listed_count":507,"favourites_count":104,"statuses_count":19780,"created_at":"Mon Dec 19 18:37:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719678716\/58__9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719678716\/58__9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441085885\/1436808776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479767552,"id_str":"663727938479767552","text":"A decade into a $1 billion project to digitize U.S. immigration forms, just one is online https:\/\/t.co\/pwSjb03AsU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17924677,"id_str":"17924677","name":"Curtis Kalin","screen_name":"CurtisKalin","location":"Washington, DC","url":"http:\/\/cagw.org\/about-us\/Curtis-Kalin","description":"Media Director for @GovWaste. St. Louis native. Sports fan. Political junkie chasing a dream. Personal thoughts are mine alone.","protected":false,"verified":false,"followers_count":3632,"friends_count":2880,"listed_count":168,"favourites_count":16205,"statuses_count":27343,"created_at":"Sat Dec 06 17:03:35 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/692628077\/333d451f683c9e5a26f07dd27938da91.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/692628077\/333d451f683c9e5a26f07dd27938da91.jpeg","profile_background_tile":true,"profile_link_color":"8C1414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662789772071563264\/i0nypkJC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662789772071563264\/i0nypkJC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17924677\/1438619284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pwSjb03AsU","expanded_url":"http:\/\/wpo.st\/U89m0","display_url":"wpo.st\/U89m0","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479611904,"id_str":"663727938479611904","text":"@tivanila @sehunxosh itu gue lakuin demi lu ma, biar makin nghh .g","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663516261888843776,"in_reply_to_status_id_str":"663516261888843776","in_reply_to_user_id":735957475,"in_reply_to_user_id_str":"735957475","in_reply_to_screen_name":"tivanila","user":{"id":3248692890,"id_str":"3248692890","name":"junoh","screen_name":"oshjunoh","location":"oohbabyz","url":null,"description":"oohsehun pard \u25cb bae kebo","protected":false,"verified":false,"followers_count":1832,"friends_count":1752,"listed_count":2,"favourites_count":760,"statuses_count":25242,"created_at":"Thu Jun 18 13:35:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623690791332900866\/jkwP4gE8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623690791332900866\/jkwP4gE8.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662254530294185984\/Ifae1H2C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662254530294185984\/Ifae1H2C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248692890\/1446395467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tivanila","name":"\u00bb jejey \u00ab","id":735957475,"id_str":"735957475","indices":[0,9]},{"screen_name":"sehunxosh","name":"hunaf","id":1258573651,"id_str":"1258573651","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938475581440,"id_str":"663727938475581440","text":"@alaflajNews \n\u0627\u0644\u0627\u0641\u0644\u0627\u062c (\u0644\u064a\u0644\u0649) \n#\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\ufef7\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663415481764872192,"in_reply_to_status_id_str":"663415481764872192","in_reply_to_user_id":1042284223,"in_reply_to_user_id_str":"1042284223","in_reply_to_screen_name":"alaflajNews","user":{"id":3309160387,"id_str":"3309160387","name":"\u0641\u062f\u0648\u0649 \u0637\u0648\u0642\u0627\u0646","screen_name":"fkefef","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":159,"listed_count":0,"favourites_count":3,"statuses_count":1412,"created_at":"Fri Aug 07 22:53:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629999155306364928\/LxedOl-0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629999155306364928\/LxedOl-0_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0628\u0642\u0629_\u0628\u0648\u0627\u0628\u0629_\u0627\ufef7\u0641\u0644\u0627\u062c_\u0627\u0644\u0627\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","indices":[30,62]}],"urls":[],"user_mentions":[{"screen_name":"alaflajNews","name":"\u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0623\u0641\u0644\u0627\u062c","id":1042284223,"id_str":"1042284223","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080046658"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479587328,"id_str":"663727938479587328","text":"@Book_offfffff \u7740\u3044\u305f\u306d\n\u306a\u3089\u3088\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727864940900352,"in_reply_to_status_id_str":"663727864940900352","in_reply_to_user_id":2980365577,"in_reply_to_user_id_str":"2980365577","in_reply_to_screen_name":"Book_offfffff","user":{"id":2966558455,"id_str":"2966558455","name":"\u30b3\u30a6\u30af\u30f3@\u751f\u4e3b","screen_name":"KaiEren45","location":null,"url":null,"description":"\u30cb\u30b3\u52d5\u5927\u597d\u304d\u3001\u30a2\u30af\u30ed\u30d0\u30c3\u30c8\u5927\u597d\u304d\u3001\u9ebb\u96c0\u5927\u597d\u304d\u3001\u30ed\u30fc\u30c9\u81ea\u8ee2\u8eca\u5927\u597d\u304d\u3001\u5ac1\u611b\u3057\u3066\u308b\u3002\u81ea\u5206\u306e\u9053\u3092\u4fe1\u3058\u3066\u3001\u81ea\u4fe1\u6301\u3063\u3066\u9811\u5f35\u308b\u306b\u3083\u30fc","protected":false,"verified":false,"followers_count":103,"friends_count":150,"listed_count":2,"favourites_count":1495,"statuses_count":2426,"created_at":"Thu Jan 08 15:14:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594039958035308544\/FFbQqQH2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594039958035308544\/FFbQqQH2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2966558455\/1444230516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Book_offfffff","name":"\u8c37\u5ddd","id":2980365577,"id_str":"2980365577","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938471260161,"id_str":"663727938471260161","text":"RT @seotato: \u0e27\u0e32\u0e23\u0e30\u0e41\u0e2b\u0e48\u0e07\u0e0a\u0e32\u0e15\u0e34\u0e08\u0e23\u0e34\u0e07\u0e46 MV GEE \u0e22\u0e2d\u0e14\u0e27\u0e34\u0e27\u0e2a\u0e39\u0e07 149,000,000 \u0e2d\u0e31\u0e1a \u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e08\u0e32\u0e01\u0e1c\u0e34\u0e14\u0e25\u0e34\u0e02\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c \u0e02\u0e19\u0e32\u0e14\u0e1e\u0e31\u0e01\u0e01\u0e36\u0e19\u0e2e\u0e40\u0e22 \u0e1b\u0e18\u0e19.\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e17\u0e19 https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312630774,"id_str":"312630774","name":"\u314d\u314e\u314c\u3142.","screen_name":"frn_Hotubby","location":null,"url":null,"description":"| CNBLUE | INFINITE || \ubcf4\uc774\uc2a4 | \uc778\uc2a4\ud53c\ub9bf |\u300a fall for @JYHeffect @hoya1991 \u2661 \u300b89`91`96 \u2667 \uc815\uc6a9\ud654 \u2667 \uc774\ud638\uc6d0 | support my 11 boys","protected":false,"verified":false,"followers_count":154,"friends_count":304,"listed_count":2,"favourites_count":5039,"statuses_count":122601,"created_at":"Tue Jun 07 12:35:49 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616954808621076481\/LOkg3yvF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616954808621076481\/LOkg3yvF.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A3EB9F","profile_text_color":"FF7417","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658674373696491521\/fFAbC7Jf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658674373696491521\/fFAbC7Jf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312630774\/1445860165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:19:11 +0000 2015","id":663707407948775424,"id_str":"663707407948775424","text":"\u0e27\u0e32\u0e23\u0e30\u0e41\u0e2b\u0e48\u0e07\u0e0a\u0e32\u0e15\u0e34\u0e08\u0e23\u0e34\u0e07\u0e46 MV GEE \u0e22\u0e2d\u0e14\u0e27\u0e34\u0e27\u0e2a\u0e39\u0e07 149,000,000 \u0e2d\u0e31\u0e1a \u0e16\u0e39\u0e01\u0e1a\u0e25\u0e47\u0e2d\u0e01\u0e40\u0e19\u0e37\u0e48\u0e2d\u0e07\u0e08\u0e32\u0e01\u0e1c\u0e34\u0e14\u0e25\u0e34\u0e02\u0e2a\u0e34\u0e17\u0e18\u0e34\u0e4c \u0e02\u0e19\u0e32\u0e14\u0e1e\u0e31\u0e01\u0e01\u0e36\u0e19\u0e2e\u0e40\u0e22 \u0e1b\u0e18\u0e19.\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e43\u0e15\u0e49\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e17\u0e19 https:\/\/t.co\/qXap6kyTLw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1468799952,"id_str":"1468799952","name":"seotato","screen_name":"seotato","location":"140930 ","url":"http:\/\/durl.me\/2yny4z","description":"Seohyun Fan \u2764\ufe0f @sjhsjh0628 #\uc11c\ud604(\uc11c\uc8fc\ud604) Support @GirlsGeneration","protected":false,"verified":false,"followers_count":2885,"friends_count":351,"listed_count":8,"favourites_count":1665,"statuses_count":54148,"created_at":"Thu May 30 03:16:54 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515166068369682433\/7Aq-WvsH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515166068369682433\/7Aq-WvsH.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626285931494928384\/UuIS69ea_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626285931494928384\/UuIS69ea_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1468799952\/1445525927","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":193,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663707406573047808,"id_str":"663707406573047808","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","url":"https:\/\/t.co\/qXap6kyTLw","display_url":"pic.twitter.com\/qXap6kyTLw","expanded_url":"http:\/\/twitter.com\/seotato\/status\/663707407948775424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":598,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":255,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707406573047808,"id_str":"663707406573047808","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","url":"https:\/\/t.co\/qXap6kyTLw","display_url":"pic.twitter.com\/qXap6kyTLw","expanded_url":"http:\/\/twitter.com\/seotato\/status\/663707407948775424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":598,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":255,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"seotato","name":"seotato","id":1468799952,"id_str":"1468799952","indices":[3,11]}],"symbols":[],"media":[{"id":663707406573047808,"id_str":"663707406573047808","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","url":"https:\/\/t.co\/qXap6kyTLw","display_url":"pic.twitter.com\/qXap6kyTLw","expanded_url":"http:\/\/twitter.com\/seotato\/status\/663707407948775424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":598,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":255,"resize":"fit"}},"source_status_id":663707407948775424,"source_status_id_str":"663707407948775424","source_user_id":1468799952,"source_user_id_str":"1468799952"}]},"extended_entities":{"media":[{"id":663707406573047808,"id_str":"663707406573047808","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2XquVEAAlqLO.jpg","url":"https:\/\/t.co\/qXap6kyTLw","display_url":"pic.twitter.com\/qXap6kyTLw","expanded_url":"http:\/\/twitter.com\/seotato\/status\/663707407948775424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":598,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":255,"resize":"fit"}},"source_status_id":663707407948775424,"source_status_id_str":"663707407948775424","source_user_id":1468799952,"source_user_id_str":"1468799952"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080046657"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938496393216,"id_str":"663727938496393216","text":"@aznitailyana pau mana? Dpda aritu order tak dpt au. Duit dh bayar. Aduhhh\ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727634640072704,"in_reply_to_status_id_str":"663727634640072704","in_reply_to_user_id":1530067663,"in_reply_to_user_id_str":"1530067663","in_reply_to_screen_name":"aznitailyana","user":{"id":871045538,"id_str":"871045538","name":"Syazwana","screen_name":"Nrlsyzwna_","location":null,"url":null,"description":"ig: Nrlsyzwna_\n\n\n\n\n\n\n\u2764","protected":false,"verified":false,"followers_count":414,"friends_count":422,"listed_count":0,"favourites_count":835,"statuses_count":17470,"created_at":"Wed Oct 10 03:27:01 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5AA1E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000016258455\/cd04cd7f4a4b252bb22ab47ae2188b52.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000016258455\/cd04cd7f4a4b252bb22ab47ae2188b52.jpeg","profile_background_tile":true,"profile_link_color":"EED4BF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D8BE60","profile_text_color":"8FAAA4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662666714518130688\/NZ6GQiRt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662666714518130688\/NZ6GQiRt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871045538\/1441206242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aznitailyana","name":"Neeta","id":1530067663,"id_str":"1530067663","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080046663"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938500739072,"id_str":"663727938500739072","text":"RT @martabausells: Y en espa\u00f1ol: @peatonito \u2013 el superh\u00e9roe que lucha para que las calles de la Ciudad de M\u00e9xico sean m\u00e1s seguras https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43856403,"id_str":"43856403","name":"Nabeelah ","screen_name":"lahnabee","location":"London","url":"http:\/\/www.theguardian.com\/environment\/ng-interactive\/2015\/mar\/16\/the-biggest-story-in-the-world","description":"Journalist @guardian #keepitintheground & #climatepublishersnetwork. EU-Balkans-allthingseastofhere. Views mine (Pics \u00a9 fbarca)","protected":false,"verified":false,"followers_count":1483,"friends_count":2042,"listed_count":96,"favourites_count":5792,"statuses_count":9685,"created_at":"Mon Jun 01 09:03:08 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3634849801\/3a302307b05137303c1d47020626b01b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3634849801\/3a302307b05137303c1d47020626b01b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43856403\/1368095873","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727681750458368,"id_str":"663727681750458368","text":"Y en espa\u00f1ol: @peatonito \u2013 el superh\u00e9roe que lucha para que las calles de la Ciudad de M\u00e9xico sean m\u00e1s seguras https:\/\/t.co\/F9ka5GFEdi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663697368542412800,"in_reply_to_status_id_str":"663697368542412800","in_reply_to_user_id":28575456,"in_reply_to_user_id_str":"28575456","in_reply_to_screen_name":"martabausells","user":{"id":28575456,"id_str":"28575456","name":"Marta Bausells","screen_name":"martabausells","location":"London","url":"http:\/\/www.theguardian.com\/profile\/marta-bausells","description":"Social & community editor, arts & culture, the @guardian | Half of @sotanofilms | De Barcelona | Into new forms of storytelling marta.bausells@theguardian.com","protected":false,"verified":false,"followers_count":2950,"friends_count":3173,"listed_count":87,"favourites_count":6724,"statuses_count":3684,"created_at":"Fri Apr 03 14:40:24 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655877101514596354\/Mi9QZpOD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655877101514596354\/Mi9QZpOD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28575456\/1433497415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F9ka5GFEdi","expanded_url":"http:\/\/gu.com\/p\/4dcbf\/stw","display_url":"gu.com\/p\/4dcbf\/stw","indices":[111,134]}],"user_mentions":[{"screen_name":"peatonito","name":"Peat\u00f3nito","id":569698444,"id_str":"569698444","indices":[14,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F9ka5GFEdi","expanded_url":"http:\/\/gu.com\/p\/4dcbf\/stw","display_url":"gu.com\/p\/4dcbf\/stw","indices":[139,140]}],"user_mentions":[{"screen_name":"martabausells","name":"Marta Bausells","id":28575456,"id_str":"28575456","indices":[3,17]},{"screen_name":"peatonito","name":"Peat\u00f3nito","id":569698444,"id_str":"569698444","indices":[33,43]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080046664"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938475429888,"id_str":"663727938475429888","text":"@Jia_9525 \n\u30cf\u30d6\u3089\u308c\u305f\uff1f\n\u307e\u3041\u3053\u3093\u304b\u3044\u306e\u304f\u3058\u306e\u8d64\u8466\u4eac\u6cbb\u304c\u3044\u308b\u306e\u306712\u6708\u3053\u306a\u304f\u3066\u3082\u3044\u3044\u3084\uff08\u672a\u3060\u306b\u672a\u958b\u5c01\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727677958832128,"in_reply_to_status_id_str":"663727677958832128","in_reply_to_user_id":908020645,"in_reply_to_user_id_str":"908020645","in_reply_to_screen_name":"Jia_9525","user":{"id":3874947794,"id_str":"3874947794","name":"\u6a2b\u5bae","screen_name":"sir0it0fu45","location":null,"url":"http:\/\/twpf.jp\/sir0it0fu45","description":"HQ\/\u514e\u8d64\/\u5730\u96f7\u7121\/FBR\u3054\u81ea\u7531\u306b","protected":false,"verified":false,"followers_count":75,"friends_count":44,"listed_count":5,"favourites_count":206,"statuses_count":508,"created_at":"Tue Oct 13 00:19:50 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662568978447904768\/vcm3kKs1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662568978447904768\/vcm3kKs1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3874947794\/1446538515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jia_9525","name":"\u3058\u3042\u3063\u3066\u3043\u30fc\u306b","id":908020645,"id_str":"908020645","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046658"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938471268352,"id_str":"663727938471268352","text":"https:\/\/t.co\/46BXOW67Bu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2806867248,"id_str":"2806867248","name":"\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e01\u0e25\u0e48\u0e32\u0e27\u0e44\u0e27\u0e49","screen_name":"prtisitnupakja1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":292,"friends_count":2044,"listed_count":0,"favourites_count":596,"statuses_count":1364,"created_at":"Sat Sep 13 06:32:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527136268254068736\/mRIHPZCV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527136268254068736\/mRIHPZCV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2806867248\/1414514052","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661572358331699201,"id_str":"661572358331699201","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5gjgOUEAEBcUQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5gjgOUEAEBcUQ.jpg","url":"https:\/\/t.co\/46BXOW67Bu","display_url":"pic.twitter.com\/46BXOW67Bu","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/661572375528386560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":559,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":559,"h":401,"resize":"fit"}},"source_status_id":661572375528386560,"source_status_id_str":"661572375528386560","source_user_id":3220957304,"source_user_id_str":"3220957304"}]},"extended_entities":{"media":[{"id":661572358331699201,"id_str":"661572358331699201","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5gjgOUEAEBcUQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5gjgOUEAEBcUQ.jpg","url":"https:\/\/t.co\/46BXOW67Bu","display_url":"pic.twitter.com\/46BXOW67Bu","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/661572375528386560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":559,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":559,"h":401,"resize":"fit"}},"source_status_id":661572375528386560,"source_status_id_str":"661572375528386560","source_user_id":3220957304,"source_user_id_str":"3220957304"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080046657"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479624192,"id_str":"663727938479624192","text":"@GR1MBLE If I drop more than 4 kills on host will you do an easy ass AW tourney with me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663631845100093440,"in_reply_to_status_id_str":"663631845100093440","in_reply_to_user_id":2408040578,"in_reply_to_user_id_str":"2408040578","in_reply_to_screen_name":"GR1MBLE","user":{"id":2778441760,"id_str":"2778441760","name":"Sam","screen_name":"FforSam","location":"NH","url":null,"description":"14 kills will not get you the win","protected":false,"verified":false,"followers_count":272,"friends_count":89,"listed_count":0,"favourites_count":434,"statuses_count":255,"created_at":"Sun Sep 21 00:34:30 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659739081543389184\/GB23vjHJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659739081543389184\/GB23vjHJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778441760\/1446678866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GR1MBLE","name":"RyaN","id":2408040578,"id_str":"2408040578","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938496430080,"id_str":"663727938496430080","text":"RT @EXO_HBK: \u0e41\u0e17\u0e47\u0e01\u0e19\u0e35\u0e48\u0e19\u0e48\u0e32\u0e08\u0e30\u0e2a\u0e25\u0e31\u0e1a\u0e15\u0e33\u0e41\u0e2b\u0e19\u0e48\u0e07\u0e44\u0e14\u0e49\u0e44\u0e2b\u0e21\u0e2d\u0e48\u0e30 #EXO \u0e40\u0e1e\u0e35\u0e22\u0e07\u0e41\u0e15\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e43\u0e2b\u0e49\u0e04\u0e23\u0e1a #CALLMEBABY \u0e41\u0e25\u0e30\u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e35\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2a\u0e34\u0e1a #MAMA2015 \u0e01\u0e15\u0e34\u0e01\u0e32\u0e07\u0e07 @M\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2398276814,"id_str":"2398276814","name":".\u0e17\u0e34\u0e07\u0e40\u0e01\u0e2d\u0e23\u0e4c\u0e40\u0e1a\u0e25\u262a","screen_name":"jjaismee_","location":null,"url":null,"description":"\u0e40\u0e2d\u0e23\u0e34\u0e42\u0e0b\u0e48(arizo)\/Heart3D|Sehun|HunHan|HunBaek|ChanBaek|\u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25\u0e2d\u0e35\u0e49\u0e0a\u0e34\u0e07\u0e08\u0e07\u0e2d\u0e34\u0e19-\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e40\u0e21\u0e19|Tzuyu|EXO12 We Are One! \u25b2I BELIEVE IN YOuR\u25b2Tinkerbell\u266a","protected":false,"verified":false,"followers_count":107,"friends_count":376,"listed_count":0,"favourites_count":1186,"statuses_count":13823,"created_at":"Wed Mar 19 18:24:10 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663366155172642817\/KhCZr3_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663366155172642817\/KhCZr3_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398276814\/1446569276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:58 +0000 2015","id":663727738302283777,"id_str":"663727738302283777","text":"\u0e41\u0e17\u0e47\u0e01\u0e19\u0e35\u0e48\u0e19\u0e48\u0e32\u0e08\u0e30\u0e2a\u0e25\u0e31\u0e1a\u0e15\u0e33\u0e41\u0e2b\u0e19\u0e48\u0e07\u0e44\u0e14\u0e49\u0e44\u0e2b\u0e21\u0e2d\u0e48\u0e30 #EXO \u0e40\u0e1e\u0e35\u0e22\u0e07\u0e41\u0e15\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e43\u0e2b\u0e49\u0e04\u0e23\u0e1a #CALLMEBABY \u0e41\u0e25\u0e30\u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23\u0e23\u0e35\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2a\u0e34\u0e1a #MAMA2015 \u0e01\u0e15\u0e34\u0e01\u0e32\u0e07\u0e07 @MnetMAMA \u0e04\u0e48\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[33,37]},{"text":"CALLMEBABY","indices":[59,70]},{"text":"MAMA2015","indices":[106,115]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[124,133]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[46,50]},{"text":"CALLMEBABY","indices":[72,83]},{"text":"MAMA2015","indices":[119,128]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[137,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080046663"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479616000,"id_str":"663727938479616000","text":"@erieri_prpr \n\u304d\u307e\u3007\u3066\u304b\u3007","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725321456254976,"in_reply_to_status_id_str":"663725321456254976","in_reply_to_user_id":1588344606,"in_reply_to_user_id_str":"1588344606","in_reply_to_screen_name":"erieri_prpr","user":{"id":3016944126,"id_str":"3016944126","name":"\u3061\u3085\u3093(\u30fb8\u30fb) \u02fb\u02f3\u02ef\u2091","screen_name":"kotori_tyunnnnn","location":"\u30e6\u30e1\u30ce\u30c8\u30d3\u30e9\u306e\u524d","url":null,"description":"\u3053\u3068\u308a\u305f\u305d\u2661\u306e\u3093\u305f\u3093\u63a8\u3057\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u2661(\u30fb8\u30fb)\u57fa\u672c\u30a2\u30cb\u30e1\u5927\u597d\u304d\u3067\u3059\u3002\u7279\u306b\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u3001\u9280\u9b42\u3001\u3086\u308b\u3086\u308a\u3001\u3051\u3044\u304a\u3093\u3001\u3054\u3061\u3046\u3055\u3001\u306a\u3069\u306a\u3069\u3002\u30a2\u30cb\u30e1\u304c\u5927\u597d\u304d\u306a\u65b9\u3001\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u69d8followme\u2661\u3053\u3068\u308a\u611b\u306b\u306f\u8ab0\u3082\u52dd\u3066\u306a\u3044\u5206\u304b\u3061\u5408\u3048\u308b\u4ef2\u9593&\u30d8\u30c3\u30c0\u30fc\u261e@_07221101","protected":false,"verified":false,"followers_count":383,"friends_count":351,"listed_count":5,"favourites_count":2072,"statuses_count":1494,"created_at":"Thu Feb 12 04:43:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652505348075425793\/ItxIeHmW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652505348075425793\/ItxIeHmW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016944126\/1445177319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"erieri_prpr","name":"NP.\u7d75\u7406","id":1588344606,"id_str":"1588344606","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504781826,"id_str":"663727938504781826","text":"RT @NaddictsOfc: Clark and Leah's facegram update! #OTWOLWish https:\/\/t.co\/Ab43NzmEVv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1240238418,"id_str":"1240238418","name":"C","screen_name":"ClovesSarahG","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":29,"listed_count":2,"favourites_count":908,"statuses_count":15825,"created_at":"Mon Mar 04 01:41:31 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660961016151339008\/5YjkoKUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660961016151339008\/5YjkoKUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1240238418\/1433732871","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:11 +0000 2015","id":663726532578283520,"id_str":"663726532578283520","text":"Clark and Leah's facegram update! #OTWOLWish https:\/\/t.co\/Ab43NzmEVv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402483632,"id_str":"402483632","name":"Naddicts Official","screen_name":"NaddictsOfc","location":"Philippines","url":"http:\/\/www.facebook.com\/naddicts","description":"| OFFICIAL | We're Not Addicts,We're Naddicts! We Love @hellobangsie. :) \u2022 Nadine Lustre EP - 250php \u2022 On The Wings of Love - Weekdays - 9:20PM on ABS-CBN","protected":false,"verified":false,"followers_count":52323,"friends_count":112,"listed_count":25,"favourites_count":6198,"statuses_count":18469,"created_at":"Tue Nov 01 04:20:22 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450123290955096065\/F3cmvWU0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450123290955096065\/F3cmvWU0.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"49C5EB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661852766529130496\/po8U8uwT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661852766529130496\/po8U8uwT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402483632\/1408858792","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":17,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[34,44]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726520901332992,"id_str":"663726520901332992","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":558,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726520901332992,"id_str":"663726520901332992","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":558,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}}},{"id":663726521148805120,"id_str":"663726521148805120","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwSEUkAA2G4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwSEUkAA2G4n.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":636,"h":562,"resize":"fit"},"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[51,61]}],"urls":[],"user_mentions":[{"screen_name":"NaddictsOfc","name":"Naddicts Official","id":402483632,"id_str":"402483632","indices":[3,15]}],"symbols":[],"media":[{"id":663726520901332992,"id_str":"663726520901332992","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":558,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}},"source_status_id":663726532578283520,"source_status_id_str":"663726532578283520","source_user_id":402483632,"source_user_id_str":"402483632"}]},"extended_entities":{"media":[{"id":663726520901332992,"id_str":"663726520901332992","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwRJUcAA_cLx.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":558,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}},"source_status_id":663726532578283520,"source_status_id_str":"663726532578283520","source_user_id":402483632,"source_user_id_str":"402483632"},{"id":663726521148805120,"id_str":"663726521148805120","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHwSEUkAA2G4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHwSEUkAA2G4n.jpg","url":"https:\/\/t.co\/Ab43NzmEVv","display_url":"pic.twitter.com\/Ab43NzmEVv","expanded_url":"http:\/\/twitter.com\/NaddictsOfc\/status\/663726532578283520\/photo\/1","type":"photo","sizes":{"large":{"w":636,"h":562,"resize":"fit"},"medium":{"w":600,"h":530,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":300,"resize":"fit"}},"source_status_id":663726532578283520,"source_status_id_str":"663726532578283520","source_user_id":402483632,"source_user_id_str":"402483632"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504957952,"id_str":"663727938504957952","text":"Lunes https:\/\/t.co\/cVpigOjKxS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":314651355,"id_str":"314651355","name":"Se\u00f1or G","screen_name":"gabeysanz","location":null,"url":null,"description":"Hablo mierda y soy un enorme desastre. Lo que no me mata me hace mas hijo de puta.","protected":false,"verified":false,"followers_count":318,"friends_count":76,"listed_count":3,"favourites_count":3328,"statuses_count":21141,"created_at":"Fri Jun 10 16:01:15 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0E0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469964334\/wolverine55.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469964334\/wolverine55.jpg","profile_background_tile":false,"profile_link_color":"F51111","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659626753833492480\/zA7BVS7F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659626753833492480\/zA7BVS7F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/314651355\/1438781905","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727935300444160,"id_str":"663727935300444160","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCmMWIAAdI9l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCmMWIAAdI9l.jpg","url":"https:\/\/t.co\/cVpigOjKxS","display_url":"pic.twitter.com\/cVpigOjKxS","expanded_url":"http:\/\/twitter.com\/gabeysanz\/status\/663727938504957952\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":616,"h":439,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727935300444160,"id_str":"663727935300444160","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCmMWIAAdI9l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCmMWIAAdI9l.jpg","url":"https:\/\/t.co\/cVpigOjKxS","display_url":"pic.twitter.com\/cVpigOjKxS","expanded_url":"http:\/\/twitter.com\/gabeysanz\/status\/663727938504957952\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":616,"h":439,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938488004609,"id_str":"663727938488004609","text":"\u5fc3\u81d3\u304c\u4ee5\u4e0a\u306b\u65e9\u3044\u3001\u3053\u306e\u4eba\u3060\u3051\u3067\u3044\u3044\u632f\u308a\u5411\u3044\u3066\u304f\u308c\u3063\u3066\u60f3\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992230364,"id_str":"2992230364","name":"yuGasu\u2b50yumi","screen_name":"Mi74Sea","location":null,"url":null,"description":"\u8d85\u221e\u97f3\u697d\u597d\u304dROCK'A'TRENCH\u221eLOVE\u2764\u5c71\u68ee\u5927\u8f14\u221ePEACE\n\u2764DizzyMizzLizzy\u266a\u30fd(\u00b4\u25bd\uff40)\u2764timchristensen(*\u00b4\u2200\uff40)\u30ce\u2764\nNICKELBACK(*\u00b4\u2200\uff40)\u2764\uff76\uff7b\uff8b\uff9e\uff71\uff9d\u2764WEAREHARLOT \uff74\uff71\uff9b\uff7d\uff90\uff7d","protected":false,"verified":false,"followers_count":187,"friends_count":607,"listed_count":0,"favourites_count":1555,"statuses_count":4856,"created_at":"Thu Jan 22 14:35:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663009229641420800\/Lppu5RPn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663009229641420800\/Lppu5RPn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992230364\/1429881498","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046661"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938500628480,"id_str":"663727938500628480","text":"Try Nyo mag ToothBrush Masaya. hahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3559342046,"id_str":"3559342046","name":"KuyaNyoRJ","screen_name":"secondchance121","location":null,"url":null,"description":"Never say Die","protected":false,"verified":false,"followers_count":162,"friends_count":731,"listed_count":0,"favourites_count":146,"statuses_count":277,"created_at":"Mon Sep 14 10:40:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643393503867768832\/HuwmHzsl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643393503867768832\/HuwmHzsl_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"006862d35c992d06","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/006862d35c992d06.json","place_type":"city","name":"Pateros","full_name":"Pateros, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[121.060913,14.537495],[121.060913,14.553540],[121.079431,14.553540],[121.079431,14.537495]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080046664"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504814592,"id_str":"663727938504814592","text":"RT @TsuyoshiWood: \u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2305968072,"id_str":"2305968072","name":"\u5343\u6b73\u3068\u3068\u308d@\u6e05\u3081\u3089\u308c\u305f\u3044","screen_name":"titose0702","location":"\u56db\u5929\u5b9d\u5bfa\u4e2d\u306e\u63b4\u307f\u306e\u9580\u524d ","url":null,"description":"\u3042\u304a\u3044\u738b\u56fd\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3002\u30c6\u30cb\u30df\u30e51st\u56db\u5929AB\u7acb\u6d772nd\u56db\u5929\u9752\u5b667\u4ee3\u76ee\u30c6\u30cb\u30d7\u30ea\u306f\u56db\u5929\u63a8\u3057\uff01\u6771\u5553\u4ecb\u3068\u591a\u548c\u7530\u79c0\u5f25\u30af\u30e9\u30b9\u30bf\u03b6*'\u03c9')\u03b6","protected":false,"verified":false,"followers_count":205,"friends_count":211,"listed_count":35,"favourites_count":202,"statuses_count":44362,"created_at":"Thu Jan 23 04:55:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659390887873503237\/CCWPIMyE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659390887873503237\/CCWPIMyE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2305968072\/1435401654","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:13 +0000 2015","id":663721760114651136,"id_str":"663721760114651136","text":"\u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2472381668,"id_str":"2472381668","name":"\u9d3b\u6c60\u3000\u525b","screen_name":"TsuyoshiWood","location":null,"url":"http:\/\/woodbook.xyz","description":"(\u3053\u3046\u306e\u3044\u3051 \u3064\u3088\u3057)\u3067\u3059\u3002\u6f2b\u753b\u63cf\u3044\u3066\u307e\u3059\u3002\u30a6\u30c3\u30c9\u30d6\u30c3\u30af(\u6f2b\u753b\u65e5\u8a18) http:\/\/woodbook.xyz \u4ed5\u4e8b\u60c5\u5831 http:\/\/goo.gl\/g2oKv6 \u30ea\u30d7\u30e9\u30a4\u898b\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u304c\u3042\u307e\u308a\u8fd4\u4e8b\u3067\u304d\u3066\u307e\u305b\u3093\u3002\u6f2b\u753b\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":513943,"friends_count":168,"listed_count":6381,"favourites_count":400,"statuses_count":5282,"created_at":"Thu May 01 11:52:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10655,"favorite_count":12838,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[36,59]}],"user_mentions":[{"screen_name":"TsuyoshiWood","name":"\u9d3b\u6c60\u3000\u525b","id":2472381668,"id_str":"2472381668","indices":[3,16]}],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938488111104,"id_str":"663727938488111104","text":"https:\/\/t.co\/rJmMnlRvrb RT ItalienInseln: Pr\u00e4chtige #Zitronen aus #Sizilien \nhttps:\/\/t.co\/oVua62Tcfy\nFotos aus #\u2026 https:\/\/t.co\/Ta1tmn6WKo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316751101,"id_str":"3316751101","name":"Jenna","screen_name":"me_jennaa","location":"Sydney, New South Wales","url":null,"description":"exhale everything impart nothing","protected":false,"verified":false,"followers_count":542,"friends_count":1944,"listed_count":313,"favourites_count":0,"statuses_count":186504,"created_at":"Sun Aug 16 09:35:13 +0000 2015","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316751101\/1439717815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Zitronen","indices":[52,61]},{"text":"Sizilien","indices":[66,75]}],"urls":[{"url":"https:\/\/t.co\/rJmMnlRvrb","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[0,23]},{"url":"https:\/\/t.co\/oVua62Tcfy","expanded_url":"http:\/\/buff.ly\/1DNAHIQ","display_url":"buff.ly\/1DNAHIQ","indices":[77,100]}],"user_mentions":[],"symbols":[],"media":[{"id":663664881544097792,"id_str":"663664881544097792","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPsYpWcAAtQ8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPsYpWcAAtQ8v.jpg","url":"https:\/\/t.co\/Ta1tmn6WKo","display_url":"pic.twitter.com\/Ta1tmn6WKo","expanded_url":"http:\/\/twitter.com\/ItalienInseln\/status\/663664881791598593\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":640,"h":426,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663664881791598593,"source_status_id_str":"663664881791598593","source_user_id":1378980013,"source_user_id_str":"1378980013"}]},"extended_entities":{"media":[{"id":663664881544097792,"id_str":"663664881544097792","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPsYpWcAAtQ8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPsYpWcAAtQ8v.jpg","url":"https:\/\/t.co\/Ta1tmn6WKo","display_url":"pic.twitter.com\/Ta1tmn6WKo","expanded_url":"http:\/\/twitter.com\/ItalienInseln\/status\/663664881791598593\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":640,"h":426,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663664881791598593,"source_status_id_str":"663664881791598593","source_user_id":1378980013,"source_user_id_str":"1378980013"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080046661"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938509008896,"id_str":"663727938509008896","text":"RT @faroutly: my girl crush\/pia mia http:\/\/t.co\/n9VnhonLVi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457692129,"id_str":"457692129","name":"Drawing Pencil","screen_name":"DrawingPenciI","location":"Parody","url":"http:\/\/www.instagram.com\/drawinggpencil","description":"Do not own image posted ** Send us your drawing with your name & country on drawinggpencil@gmail.com and we will share it here :)","protected":false,"verified":false,"followers_count":202423,"friends_count":170,"listed_count":420,"favourites_count":995,"statuses_count":4868,"created_at":"Sat Jan 07 18:14:31 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655560900494032897\/LtL_6f-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655560900494032897\/LtL_6f-N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457692129\/1445140509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 21 23:00:25 +0000 2015","id":646096673064615940,"id_str":"646096673064615940","text":"my girl crush\/pia mia http:\/\/t.co\/n9VnhonLVi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607727322,"id_str":"607727322","name":"Street Styles","screen_name":"faroutly","location":null,"url":null,"description":"We are here for all kinda latest Fashion trends & style tips, Street Style celebrity, So stay tuned. \u2709\ufe0fContact - faroutly@gmail.com","protected":false,"verified":false,"followers_count":178684,"friends_count":88,"listed_count":208,"favourites_count":126,"statuses_count":1107,"created_at":"Wed Jun 13 23:33:09 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607727322\/1434124785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2683,"favorite_count":5044,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":646096667712720898,"id_str":"646096667712720898","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":884,"resize":"fit"},"large":{"w":662,"h":976,"resize":"fit"}}},{"id":646096670300631040,"id_str":"646096670300631040","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":432,"resize":"fit"},"medium":{"w":600,"h":763,"resize":"fit"},"large":{"w":634,"h":807,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":646096668669046788,"id_str":"646096668669046788","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":755,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":404,"resize":"fit"},"medium":{"w":600,"h":714,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"faroutly","name":"Street Styles","id":607727322,"id_str":"607727322","indices":[3,12]}],"symbols":[],"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"}]},"extended_entities":{"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096667712720898,"id_str":"646096667712720898","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":884,"resize":"fit"},"large":{"w":662,"h":976,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096670300631040,"id_str":"646096670300631040","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":432,"resize":"fit"},"medium":{"w":600,"h":763,"resize":"fit"},"large":{"w":634,"h":807,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096668669046788,"id_str":"646096668669046788","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":755,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":404,"resize":"fit"},"medium":{"w":600,"h":714,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046666"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504925184,"id_str":"663727938504925184","text":"No nii m\u00f5ttetu!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177317537,"id_str":"177317537","name":"Kristi Malk","screen_name":"kristipristii","location":null,"url":null,"description":"Kristi, 17","protected":false,"verified":false,"followers_count":179,"friends_count":168,"listed_count":0,"favourites_count":2298,"statuses_count":7495,"created_at":"Wed Aug 11 20:42:51 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/363496690\/30.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/363496690\/30.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662678443126034432\/zBwljewh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662678443126034432\/zBwljewh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177317537\/1446829856","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938471223296,"id_str":"663727938471223296","text":"RT @Pascalourdes: Cara normal seorang pendekar mencari seorang pendekar lainnya. Siap2 kencengin perut gaes #miniBreakVideo https:\/\/t.co\/ue\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81136467,"id_str":"81136467","name":"Tri Nanda","screen_name":"chenk_nanda","location":"suro-boyo","url":null,"description":"aku didalamMu ,Kamu diDalamku","protected":false,"verified":false,"followers_count":256,"friends_count":188,"listed_count":2,"favourites_count":13,"statuses_count":14637,"created_at":"Fri Oct 09 15:44:06 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/81137716\/nest.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/81137716\/nest.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000833556651\/5c46208eefc80e203d19c555a98cd9be_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000833556651\/5c46208eefc80e203d19c555a98cd9be_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81136467\/1373917613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:36 +0000 2015","id":663695431507951616,"id_str":"663695431507951616","text":"Cara normal seorang pendekar mencari seorang pendekar lainnya. Siap2 kencengin perut gaes #miniBreakVideo https:\/\/t.co\/uepNlpOlR9","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317041553,"id_str":"317041553","name":"\u0cb0_\u0cb0","screen_name":"Pascalourdes","location":"Tangerang, Banten","url":"http:\/\/Pascalourdes.com","description":"Pursuing a Dream! || CP; 089508654202 || No one can hurt me without my permission -Hitler \u5350 #OnePieceLovers & #MIfans #BROFist #ViscaBarca","protected":false,"verified":false,"followers_count":211935,"friends_count":371,"listed_count":232549,"favourites_count":425,"statuses_count":15612,"created_at":"Tue Jun 14 10:33:15 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8F8FB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122892153\/1f1200e4ea79e2a6a8bac260b7ec8465.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122892153\/1f1200e4ea79e2a6a8bac260b7ec8465.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FF9800","profile_sidebar_fill_color":"FFF200","profile_text_color":"FF385F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662650821998305281\/EUIslMLs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662650821998305281\/EUIslMLs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317041553\/1445263593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":131,"favorite_count":4,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[90,105]}],"urls":[{"url":"https:\/\/t.co\/uepNlpOlR9","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[108,123]}],"urls":[{"url":"https:\/\/t.co\/uepNlpOlR9","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[124,140]}],"user_mentions":[{"screen_name":"Pascalourdes","name":"\u0cb0_\u0cb0","id":317041553,"id_str":"317041553","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080046657"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938500558848,"id_str":"663727938500558848","text":"@Hashitan_Power \n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059( \uff61\uff9f\u0414\uff9f\uff61)\n\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720902371074049,"in_reply_to_status_id_str":"663720902371074049","in_reply_to_user_id":3790712774,"in_reply_to_user_id_str":"3790712774","in_reply_to_screen_name":"Hashitan_Power","user":{"id":3018604147,"id_str":"3018604147","name":"\u8679\u8272\u30b8\u30e3\u30b9\u30df\u30f3@\u30d6\u30e9\u30b5\u30f3: )831\u2026","screen_name":"burasan_88_west","location":null,"url":null,"description":"\u8328\u57ce\/\u9ad8\uff12\/\u89aa\u65b9\u5927\u597d\u304d\u8679\u8272\u30b8\u30e3\u30b9\u30df\u30f3\/\u30bb\u30af\u30ac\u30eb\/Jr.\u7d76\u8cdb\u5fdc\u63f4\u4e2d\/\u30b8\u30e3\u30cb\u30fc\u30baall\u62c5\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fcOK\u2757\/\u540c\u62c5\u5927\u5927\u5927\u6b53\u8fce\/\u639b\u3051\u6301\u3061\u7406\u89e3\u8005\/\n\u95a2\u897fJr.\u2192\u4e08\u4e00\u90ce,\u5eb7\u4e8c, \u6587\u4e00,\u5927\u6a4b,\u771f\u9ce5\/\u6771\u4eacJr.\u2192\u6df1\u6fa4,\u9577\u59bb,\u5cb8,\u539f,\u6a39 \/\/NEXT\u2192\u30bb\u30af\u30be\u30ea\u30ea\u30a4\u30d9\/\u30e2\u30fc\u30eb\u30b9\/\u30b8\u30e3\u30cb\u30ef\/\u30c9\u30c3\u30b0\u30d5\u30a1\u30a4\u30c8\u00d7\uff12\/\u733f\u9b42","protected":false,"verified":false,"followers_count":885,"friends_count":715,"listed_count":6,"favourites_count":2540,"statuses_count":9025,"created_at":"Fri Feb 13 14:55:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577475204575674368\/B_CRadBH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577475204575674368\/B_CRadBH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3018604147\/1444480150","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hashitan_Power","name":"\u306f\u3057\u3086\u3074\u306e\u30bf\u30b0\u4f38\u3070\u3057\u3066(\u767d\u76ee)","id":3790712774,"id_str":"3790712774","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046664"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938500608000,"id_str":"663727938500608000","text":"\u6700\u8fd1\u7570\u5e38\u306a\u307e\u3067\u306b\u30d1\u30f3\u30c4\u304f\u3044\u8fbc\u3080\u306e\u304c\u30de\u30b8\u3067\u60a9\u307f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1343614537,"id_str":"1343614537","name":"\u99ff\u574a","screen_name":"shun_gt826","location":"\u6075\u90a3\u5e02\u2192\u540d\u53e4\u5c4b\u5e02","url":null,"description":"Arise\u3063\u3066\u30d0\u30f3\u30c9\u3067\u6b4c\u3063\u3066\u307e\u3057\u305f\uff01\u4e8c\u5341\u6b73\uff01\u4eca\u6c603star\u30d0\u30fc\u30ab\u30f3\u306b\u305f\u307e\u306b\u304a\u308b\u3002\u5922\u306f\u4e16\u754c\u5f81\u670d\u3002\u30ed\u30fc\u30c9\u30d0\u30a4\u30af\u306b\u30cf\u30de\u3063\u3066\u307e\u3059\uff01\u30d2\u30e8\u30c3\u30b3\u3067\u3059\u3088\u3002vocal\/guitar\/programming\/\u30ed\u30fc\u30c9\u30d0\u30a4\u30af\/specialized\/\u4f5c\u8a5e\/\u4f5c\u66f2\/\u304a\u306e\u306e\u306e\u304b\/\u5c0f\u85ea\u5343\u8c4a\/\u65b0\u6d77\u8aa0","protected":false,"verified":false,"followers_count":761,"friends_count":575,"listed_count":4,"favourites_count":2700,"statuses_count":25516,"created_at":"Thu Apr 11 05:36:57 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663202143873077248\/8SYn43b4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663202143873077248\/8SYn43b4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1343614537\/1441847305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046664"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938504757249,"id_str":"663727938504757249","text":"Eurovision 2015 Schweden M\u00e5ns Zelmerl\u00f6w Heroes Video https:\/\/t.co\/8Od60LZmCE","source":"\u003ca href=\"http:\/\/www.eurovisionvideo.com\" rel=\"nofollow\"\u003eEurovision Video\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":282780581,"id_str":"282780581","name":"Eurovision Video","screen_name":"eurovisionvideo","location":null,"url":"http:\/\/www.eurovisionvideo.com","description":null,"protected":false,"verified":false,"followers_count":253,"friends_count":0,"listed_count":16,"favourites_count":0,"statuses_count":1987427,"created_at":"Fri Apr 15 22:34:01 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1346022552\/euro_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1346022552\/euro_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8Od60LZmCE","expanded_url":"http:\/\/bit.ly\/1IuO7sy","display_url":"bit.ly\/1IuO7sy","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080046665"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938471198720,"id_str":"663727938471198720","text":"\u5341\u56db\u677e\u304c\u304b\u308f\u3044\u3044\u3063\u3066\u306f\u306a\u3057","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197585666,"id_str":"197585666","name":"\u84bc\u677e","screen_name":"ao0606","location":"\u4fee\u7f85\u306e\u56fd","url":"http:\/\/twpf.jp\/ao0606","description":"\u30ec\u30ea\u30a6\u30b9\u53ef\u611b\u3044\u306d\/\u6210\u4eba\u6e08\u307f\/\u30ec\u30ea\u30a6\u30b9\u53ef\u611b\u3044\/\u77f3\u5207\u4e38\u3055\u3093\u306b\u591c\u306e\u52a0\u6301\u7948\u7977\/\u30c7\u30ec\u30b9\u30c6\u3057\u3066\u308b\/\u97f3\u30b2\u30fc\u57a2\u2192@jube_ao\/\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed","protected":false,"verified":false,"followers_count":560,"friends_count":692,"listed_count":35,"favourites_count":27731,"statuses_count":126919,"created_at":"Fri Oct 01 22:17:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181358911\/nUtGJ-GJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181358911\/nUtGJ-GJ.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661553725404647425\/UYb24caz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661553725404647425\/UYb24caz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197585666\/1405843592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046657"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938492219392,"id_str":"663727938492219392","text":"And if you hurt me\nThat's OK, baby, only words bleed\nInside these pages you just hold me\nAnd I won't ever let you go","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":610626924,"id_str":"610626924","name":"Fathi Saif 3.0","screen_name":"fathisaif07","location":"nilai,negeri sembilan","url":null,"description":"Moga dipermudahkan urusan saya, kamu dan kita.","protected":false,"verified":false,"followers_count":513,"friends_count":378,"listed_count":0,"favourites_count":116,"statuses_count":10644,"created_at":"Sun Jun 17 05:46:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656087749565411330\/IiYDYMtJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656087749565411330\/IiYDYMtJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610626924\/1422752561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046662"} +{"delete":{"status":{"id":618826056108240896,"id_str":"618826056108240896","user_id":2228087984,"user_id_str":"2228087984"},"timestamp_ms":"1447080046947"}} +{"delete":{"status":{"id":663581150430937089,"id_str":"663581150430937089","user_id":250454840,"user_id_str":"250454840"},"timestamp_ms":"1447080046944"}} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479775744,"id_str":"663727938479775744","text":"https:\/\/t.co\/lQ7o0c9IuX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3374601431,"id_str":"3374601431","name":"jose luis","screen_name":"payaso_1342","location":"Buenos Aires, Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":356,"friends_count":922,"listed_count":0,"favourites_count":528,"statuses_count":5267,"created_at":"Mon Jul 13 20:44:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633993710854914048\/QV5-WXNo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633993710854914048\/QV5-WXNo_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4afa2757051c5192","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4afa2757051c5192.json","place_type":"admin","name":"Buenos Aires","full_name":"Buenos Aires, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-63.393860,-41.035009],[-63.393860,-33.260144],[-56.665836,-33.260144],[-56.665836,-41.035009]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727936877568000,"id_str":"663727936877568000","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCsEXIAALGMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCsEXIAALGMn.jpg","url":"https:\/\/t.co\/lQ7o0c9IuX","display_url":"pic.twitter.com\/lQ7o0c9IuX","expanded_url":"http:\/\/twitter.com\/payaso_1342\/status\/663727938479775744\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"large":{"w":412,"h":459,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727936877568000,"id_str":"663727936877568000","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCsEXIAALGMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCsEXIAALGMn.jpg","url":"https:\/\/t.co\/lQ7o0c9IuX","display_url":"pic.twitter.com\/lQ7o0c9IuX","expanded_url":"http:\/\/twitter.com\/payaso_1342\/status\/663727938479775744\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"large":{"w":412,"h":459,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938496425984,"id_str":"663727938496425984","text":"@nao_odd \u30b1\u30b1\u30b1\u30b1\u30b1\u30b1\u30b1\u30b1\u30ef\u30b7\u306e\u30d9\u30ac\u306e\u7570\u8cea\u3063\u3077\u308a\u306b\u8170\u629c\u304b\u3059\u3067","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/wakamesoba98\/sobacha\" rel=\"nofollow\"\u003eSobaCha\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727793398673408,"in_reply_to_status_id_str":"663727793398673408","in_reply_to_user_id":864665424,"in_reply_to_user_id_str":"864665424","in_reply_to_screen_name":"nao_odd","user":{"id":2725640850,"id_str":"2725640850","name":"\u30d9\u30ac\u5baeClown","screen_name":"vega_stro","location":"\u7b50\u4f53\u306e\u524d\u3001\u3042\u306e\u5b50\u306e\u8ecd\u670d\u306e\u4e2d","url":"http:\/\/twpf.jp\/vega_stro","description":"\u203b\u30a2\u30a4\u30b3\u30f3\u306f\u9ce5\u6ca2\u515c\u3055\u3093\u3010@techno_A \u3011\u304b\u3089\u306e\u9802\u304d\u7269\u203b\n\u79c1\u3001\u30d9\u30ac\u5baeClown\uff01\u30b9\u30bf\u30fc\u30e9\u30a4\u30c8\u5b66\u5712\u4e2d\u7b49\u90e8\u306b\u901a\u3044\u306a\u304c\u3089\u30a2\u30a4\u30c9\u30eb\u3092\u76ee\u6307\u305914\u6b73\uff01\u4ef2\u826f\u3057\u306a\u56db\u5929\u738b\u3067\u7d44\u3093\u3060\u30e6\u30cb\u30c3\u30c8\u300c\u30b7\u30e3\u30c9\u30eb\u30fc\u300d\u3082\u9806\u8abf\u306b\u4eba\u6c17\u304c\u51fa\u3066\u304d\u305f\u306e\u3060\u3051\u308c\u3069\u3001\u30b5\u30ac\u30c3\u30c8\u3061\u3083\u3093\u304c\u6025\u306b\u8131\u9000\uff01\uff1f\u79c1\u306e\u30d9\u30ac\u30ab\u30c4\u3001\u3053\u308c\u304b\u3089\u3069\u3049\u306a\u3063\u3061\u3083\u3046\u306e\uff5e\uff01\uff1f","protected":false,"verified":false,"followers_count":331,"friends_count":255,"listed_count":22,"favourites_count":23934,"statuses_count":53581,"created_at":"Tue Aug 12 07:59:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661889089935773696\/TkD_RRXW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661889089935773696\/TkD_RRXW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2725640850\/1412303304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nao_odd","name":"\u26a1\ufe0e\u3069\u3089\u307f\u26a1\ufe0e","id":864665424,"id_str":"864665424","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080046663"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938479726593,"id_str":"663727938479726593","text":"ela \u00e9 tao linda :( #YAASS5H https:\/\/t.co\/ncYO8PQqSq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2447521413,"id_str":"2447521413","name":"Lhama Luiza","screen_name":"LhamaManca","location":"Salvador \u2022 BA","url":"http:\/\/vejoflores-em-voce.tumblr.com\/","description":"Pagando muito caro por ter entrado naquele \u00f3vulo","protected":false,"verified":false,"followers_count":949,"friends_count":108,"listed_count":3,"favourites_count":27533,"statuses_count":100840,"created_at":"Sun Mar 30 16:43:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C328DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631919784196763651\/aiYJ7zC1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631919784196763651\/aiYJ7zC1.png","profile_background_tile":true,"profile_link_color":"BA26D1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662733920165691392\/tpHObIwU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662733920165691392\/tpHObIwU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2447521413\/1441274954","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"23d81de6fe7594cb","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/23d81de6fe7594cb.json","place_type":"city","name":"Goi\u00e2nia","full_name":"Goi\u00e2nia, Goi\u00e1s","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-49.444673,-16.831871],[-49.444673,-16.453694],[-49.077745,-16.453694],[-49.077745,-16.831871]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASS5H","indices":[19,27]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727848285450241,"id_str":"663727848285450241","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727848285450241\/pu\/img\/4BqwKcfB5Wx-kQ6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727848285450241\/pu\/img\/4BqwKcfB5Wx-kQ6L.jpg","url":"https:\/\/t.co\/ncYO8PQqSq","display_url":"pic.twitter.com\/ncYO8PQqSq","expanded_url":"http:\/\/twitter.com\/LhamaManca\/status\/663727938479726593\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727848285450241,"id_str":"663727848285450241","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727848285450241\/pu\/img\/4BqwKcfB5Wx-kQ6L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727848285450241\/pu\/img\/4BqwKcfB5Wx-kQ6L.jpg","url":"https:\/\/t.co\/ncYO8PQqSq","display_url":"pic.twitter.com\/ncYO8PQqSq","expanded_url":"http:\/\/twitter.com\/LhamaManca\/status\/663727938479726593\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":7826,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727848285450241\/pu\/pl\/uhNf16qU1HPCz-rT.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727848285450241\/pu\/pl\/uhNf16qU1HPCz-rT.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727848285450241\/pu\/vid\/360x640\/cWMTWsGxEuatiJXs.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727848285450241\/pu\/vid\/360x640\/cWMTWsGxEuatiJXs.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727848285450241\/pu\/vid\/180x320\/xXrUQNNwHb1iKB1B.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080046659"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938483810304,"id_str":"663727938483810304","text":"RT @faroutly: my girl crush\/pia mia http:\/\/t.co\/n9VnhonLVi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333082048,"id_str":"2333082048","name":"Learn Something","screen_name":"AllEXPENSlVE","location":null,"url":null,"description":"Posting the best life hacks, facts and mind boggling information. Learn something with us daily and make your life easier while expanding your knowledge.","protected":false,"verified":false,"followers_count":179054,"friends_count":75,"listed_count":103,"favourites_count":27,"statuses_count":263,"created_at":"Sat Feb 08 07:59:33 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432131258869481472\/FlYRbXPU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432131258869481472\/FlYRbXPU.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663427183134638080\/Ungpx_Vd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663427183134638080\/Ungpx_Vd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333082048\/1445739142","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 21 23:00:25 +0000 2015","id":646096673064615940,"id_str":"646096673064615940","text":"my girl crush\/pia mia http:\/\/t.co\/n9VnhonLVi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607727322,"id_str":"607727322","name":"Street Styles","screen_name":"faroutly","location":null,"url":null,"description":"We are here for all kinda latest Fashion trends & style tips, Street Style celebrity, So stay tuned. \u2709\ufe0fContact - faroutly@gmail.com","protected":false,"verified":false,"followers_count":178684,"friends_count":88,"listed_count":208,"favourites_count":126,"statuses_count":1107,"created_at":"Wed Jun 13 23:33:09 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538036794332176384\/HdOVTXTP.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660555536853676032\/APxfVzNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607727322\/1434124785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2683,"favorite_count":5044,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":646096667712720898,"id_str":"646096667712720898","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":884,"resize":"fit"},"large":{"w":662,"h":976,"resize":"fit"}}},{"id":646096670300631040,"id_str":"646096670300631040","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":432,"resize":"fit"},"medium":{"w":600,"h":763,"resize":"fit"},"large":{"w":634,"h":807,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":646096668669046788,"id_str":"646096668669046788","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":755,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":404,"resize":"fit"},"medium":{"w":600,"h":714,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"faroutly","name":"Street Styles","id":607727322,"id_str":"607727322","indices":[3,12]}],"symbols":[],"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"}]},"extended_entities":{"media":[{"id":646096671252680704,"id_str":"646096671252680704","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf9SUEAA0DN9.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"large":{"w":736,"h":1104,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096667712720898,"id_str":"646096667712720898","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfwGUkAIt4Hc.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":501,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":884,"resize":"fit"},"large":{"w":662,"h":976,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096670300631040,"id_str":"646096670300631040","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlf5vU8AApBaj.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":432,"resize":"fit"},"medium":{"w":600,"h":763,"resize":"fit"},"large":{"w":634,"h":807,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"},{"id":646096668669046788,"id_str":"646096668669046788","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPdlfzqU8AQNm4A.jpg","url":"http:\/\/t.co\/n9VnhonLVi","display_url":"pic.twitter.com\/n9VnhonLVi","expanded_url":"http:\/\/twitter.com\/faroutly\/status\/646096673064615940\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":755,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":404,"resize":"fit"},"medium":{"w":600,"h":714,"resize":"fit"}},"source_status_id":646096673064615940,"source_status_id_str":"646096673064615940","source_user_id":607727322,"source_user_id_str":"607727322"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046660"} +{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938488004608,"id_str":"663727938488004608","text":"See the trailer #AMillionHappyNows #ENDALZ Plz share @crystalchappell @PerfectFeatFilm https:\/\/t.co\/886eS3bAeX https:\/\/t.co\/ag8dRPziwn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155534639,"id_str":"2155534639","name":"Erin Brinson..Good E","screen_name":"BrinsonEb","location":"Spokane, Wa.","url":null,"description":"It doesn't matter who you fall in love with..Love is love.. I accept you. Be honest Be real Be you..Partner to an amazing woman, I'm blessed. AKA..Good E","protected":false,"verified":false,"followers_count":185,"friends_count":134,"listed_count":15,"favourites_count":695,"statuses_count":31385,"created_at":"Fri Oct 25 19:51:02 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663475688570097664\/pPMZ3wFv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663475688570097664\/pPMZ3wFv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155534639\/1447007479","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMillionHappyNows","indices":[16,34]},{"text":"ENDALZ","indices":[35,42]}],"urls":[{"url":"https:\/\/t.co\/886eS3bAeX","expanded_url":"https:\/\/youtu.be\/XTyL3_Wv8cI","display_url":"youtu.be\/XTyL3_Wv8cI","indices":[87,110]}],"user_mentions":[{"screen_name":"crystalchappell","name":"Crystal Chappell","id":41469782,"id_str":"41469782","indices":[53,69]},{"screen_name":"PerfectFeatFilm","name":"Perfect Features","id":2417923886,"id_str":"2417923886","indices":[70,86]}],"symbols":[],"media":[{"id":663727928484630528,"id_str":"663727928484630528","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCMzVEAAVDe2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCMzVEAAVDe2.jpg","url":"https:\/\/t.co\/ag8dRPziwn","display_url":"pic.twitter.com\/ag8dRPziwn","expanded_url":"http:\/\/twitter.com\/BrinsonEb\/status\/663727938488004608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727928484630528,"id_str":"663727928484630528","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCMzVEAAVDe2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCMzVEAAVDe2.jpg","url":"https:\/\/t.co\/ag8dRPziwn","display_url":"pic.twitter.com\/ag8dRPziwn","expanded_url":"http:\/\/twitter.com\/BrinsonEb\/status\/663727938488004608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080046661"} +{"delete":{"status":{"id":663724025202520064,"id_str":"663724025202520064","user_id":2701616552,"user_id_str":"2701616552"},"timestamp_ms":"1447080047414"}} +{"delete":{"status":{"id":663727770724208640,"id_str":"663727770724208640","user_id":3981224353,"user_id_str":"3981224353"},"timestamp_ms":"1447080047338"}} +{"delete":{"status":{"id":662758244784414721,"id_str":"662758244784414721","user_id":341392179,"user_id_str":"341392179"},"timestamp_ms":"1447080047527"}} +{"delete":{"status":{"id":660890244355522564,"id_str":"660890244355522564","user_id":3126312532,"user_id_str":"3126312532"},"timestamp_ms":"1447080047647"}} +{"delete":{"status":{"id":660890244363845633,"id_str":"660890244363845633","user_id":633752533,"user_id_str":"633752533"},"timestamp_ms":"1447080047647"}} +{"delete":{"status":{"id":660890244355506176,"id_str":"660890244355506176","user_id":2608248499,"user_id_str":"2608248499"},"timestamp_ms":"1447080047655"}} +{"delete":{"status":{"id":660890244380659712,"id_str":"660890244380659712","user_id":2893627222,"user_id_str":"2893627222"},"timestamp_ms":"1447080047647"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942674079744,"id_str":"663727942674079744","text":"RT @amoona126: @mloooke12 \u0627\u0644\u0644\u064a \u064a\u0641\u0648\u0632 \ud83c\udf1a\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1043443598,"id_str":"1043443598","name":"\u2022 \u0623\u0644\u0630\u0651 \u0622\u0642\u0651\u062f\u0652\u0627\u0631\u064a\u0651 \u275c \u0650","screen_name":"mloooke12","location":"Hail","url":null,"description":"\u0627\u0644\u0644\u0647 \u062b\u0645 \u0627\u0644\u0645\u0644\u064a\u0643 \u062b\u0645 \u0627\u0644\u0646\u0635\u0631","protected":false,"verified":false,"followers_count":780,"friends_count":679,"listed_count":0,"favourites_count":172,"statuses_count":12528,"created_at":"Sat Dec 29 00:09:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580183551238262784\/nsyDVXs2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580183551238262784\/nsyDVXs2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1043443598\/1429040927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:23 +0000 2015","id":663727588775493632,"id_str":"663727588775493632","text":"@mloooke12 \u0627\u0644\u0644\u064a \u064a\u0641\u0648\u0632 \ud83c\udf1a\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727479622868992,"in_reply_to_status_id_str":"663727479622868992","in_reply_to_user_id":1043443598,"in_reply_to_user_id_str":"1043443598","in_reply_to_screen_name":"mloooke12","user":{"id":1190996749,"id_str":"1190996749","name":"\u007b Amna .","screen_name":"amoona126","location":"\u062c\u062f\u0629","url":null,"description":"\u0644\u0627 \u0625\u062d\u0633\u0627\u0633 \u0648\u0644\u0627 \u0636\u0645\u064a\u0631.","protected":false,"verified":false,"followers_count":753,"friends_count":234,"listed_count":2,"favourites_count":467,"statuses_count":13138,"created_at":"Sun Feb 17 19:59:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655051434216439808\/WZdYWZh3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655051434216439808\/WZdYWZh3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1190996749\/1445009507","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mloooke12","name":"\u2022 \u0623\u0644\u0630\u0651 \u0622\u0642\u0651\u062f\u0652\u0627\u0631\u064a\u0651 \u275c \u0650","id":1043443598,"id_str":"1043443598","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amoona126","name":"\u007b Amna .","id":1190996749,"id_str":"1190996749","indices":[3,13]},{"screen_name":"mloooke12","name":"\u2022 \u0623\u0644\u0630\u0651 \u0622\u0642\u0651\u062f\u0652\u0627\u0631\u064a\u0651 \u275c \u0650","id":1043443598,"id_str":"1043443598","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047659"} +{"delete":{"status":{"id":662319679948595200,"id_str":"662319679948595200","user_id":457106854,"user_id_str":"457106854"},"timestamp_ms":"1447080047656"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942695059456,"id_str":"663727942695059456","text":"RT @dhygtjhfhfhgf: \u0627\u0644\u0627\u062e\u0648\u0627\u0646 \u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646 !\n\u0647\u0645 \u0643\u0644\u0627\u0628 \u0644\u0644\u0637\u0648\u0627\u063a\u064a\u062a\n\u0648\u0627\u062f\u0627\u0629 \u0644\u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0631\n\u0648\u0627\u0630\u0646\u0627\u0628 \u0644\u0644\u0645\u062d\u062a\u0644\u064a\u0646 \u0627\u0644\u0635\u0644\u064a\u0628\u064a\u064a\u0646\n\u0648\u0643\u0644\u0627\u0628 \u0644\u0644\u0645\u0634\u0627\u0631\u064a\u0639 \u0627\u0644\u0647\u062f\u0627\u0645\u0629 \u0644\u0644\u0627\u0633\u0644\u0627\u0645 \u0648\u0627\u0644\u062a\u0648\u062d\u064a\u062f\n\u062d\u0631\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149251424,"id_str":"4149251424","name":"Arab Ellsajinne","screen_name":"ellsajinne","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":295,"friends_count":783,"listed_count":2,"favourites_count":23,"statuses_count":1611,"created_at":"Fri Nov 06 19:44:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663451647927013376\/br75Vfp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663451647927013376\/br75Vfp7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:10 +0000 2015","id":663723003885125633,"id_str":"663723003885125633","text":"\u0627\u0644\u0627\u062e\u0648\u0627\u0646 \u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646 !\n\u0647\u0645 \u0643\u0644\u0627\u0628 \u0644\u0644\u0637\u0648\u0627\u063a\u064a\u062a\n\u0648\u0627\u062f\u0627\u0629 \u0644\u0644\u0627\u0633\u062a\u0639\u0645\u0627\u0631\n\u0648\u0627\u0630\u0646\u0627\u0628 \u0644\u0644\u0645\u062d\u062a\u0644\u064a\u0646 \u0627\u0644\u0635\u0644\u064a\u0628\u064a\u064a\u0646\n\u0648\u0643\u0644\u0627\u0628 \u0644\u0644\u0645\u0634\u0627\u0631\u064a\u0639 \u0627\u0644\u0647\u062f\u0627\u0645\u0629 \u0644\u0644\u0627\u0633\u0644\u0627\u0645 \u0648\u0627\u0644\u062a\u0648\u062d\u064a\u062f\n\u062d\u0631\u0628 \u0644\u0627\u0647\u0644 \u0627\u0644\u062c\u0647\u0627\u062f !!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4128099785,"id_str":"4128099785","name":"\u062d\u0631\u0628\u064a \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a","screen_name":"dhygtjhfhfhgf","location":null,"url":null,"description":"\u0645\u0627\u0631\u0634\u0627\u0644 \u0639\u0633\u0643\u0631\u064a \u0648\u0623\u0645\u0646\u064a, \u062e\u0628\u064a\u0631 \u0641\u064a \u0634\u0624\u0648\u0646 \u062f\u0648\u0644\u0629 \u0627\u0644\u062e\u0644\u0627\u0641\u0629 \u0623\u0639\u0632\u0647\u0627 \u0627\u0644\u0644\u0647 !!","protected":false,"verified":false,"followers_count":3334,"friends_count":23,"listed_count":8,"favourites_count":75,"statuses_count":216,"created_at":"Fri Nov 06 16:42:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662671662635220993\/HxCdRAJu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662671662635220993\/HxCdRAJu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4128099785\/1446828220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dhygtjhfhfhgf","name":"\u062d\u0631\u0628\u064a \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a","id":4128099785,"id_str":"4128099785","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942703448064,"id_str":"663727942703448064","text":"J'aime vraiment trop mon cul mdrr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503483453,"id_str":"503483453","name":"prince de mon cul","screen_name":"__Luisaa","location":"paris","url":null,"description":"It's not what we have in life but who we have in our life that matters. Colombiana parce","protected":false,"verified":false,"followers_count":414,"friends_count":99,"listed_count":10,"favourites_count":12901,"statuses_count":49181,"created_at":"Sat Feb 25 20:07:39 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497508022294286336\/u1R-QJXZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497508022294286336\/u1R-QJXZ.jpeg","profile_background_tile":true,"profile_link_color":"0E0157","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662764601759703041\/xFKBu8yF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662764601759703041\/xFKBu8yF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503483453\/1446850398","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080047666"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942695014400,"id_str":"663727942695014400","text":"RT @mabuhedaih: \u062f\u0627\u0645 \u0639\u0632 \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0623\u0631\u0636\u0627\u064b \u0648\u0625\u0646\u0633\u0627\u0646\u0627\u064b \u0648\u0645\u0642\u062f\u0633\u0627\u062a \u0641\u064a \u0638\u0644 \u062d\u0643\u0648\u0645\u0629 \u062e\u0627\u062f\u0645 \u0627\u0644\u062d\u0631\u0645\u064a\u0646 \u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646 \u062d\u0641\u0638\u0647 \u0627\u0644\u0644\u0647 .. \u0627\u0644\u0644\u0647\u0645 \u0625\u062d\u0641\u0638 \u0631\u062c\u0627\u0644 \u0623\u0645\u0646\u0646\u0627 \u0627\u0644\u0628\u0648\u0627\u0633\u0644 \u0641\u064a \u0627\u0644\u062d\u062f \u2026","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420239633,"id_str":"2420239633","name":"\u0648\u0644\u064a\u062f #\u0627\u0644\u0644\u0646\u062f\u0646\u064a","screen_name":"Wooll2014","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u0645\u0628\u0639\u062b\u0631 \u0628\u064a\u0646 \u0639\u0642\u0644 \u064a\u0631\u063a\u0628 \u0628 \u0627\u0644\u0643\u0645\u0627\u0644 \u0648 \u0642\u0644\u0628\u0627\u064b \u064a\u0647\u0648\u0649 \u0627\u0644\u062c\u0646\u0648\u0646` (\u062f\u064a\u0646\u064a \u0648\u0637\u0646\u064a \u0648\u0627\u0644\u0647\u0644\u0627\u0644 \u062e\u0637 \u0627\u062d\u0645\u0631)","protected":false,"verified":false,"followers_count":607,"friends_count":380,"listed_count":0,"favourites_count":311,"statuses_count":7920,"created_at":"Mon Mar 31 08:43:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647800641113362432\/e-KtvBkX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647800641113362432\/e-KtvBkX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420239633\/1443370968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:36:43 +0000 2015","id":663666520401276928,"id_str":"663666520401276928","text":"\u062f\u0627\u0645 \u0639\u0632 \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0623\u0631\u0636\u0627\u064b \u0648\u0625\u0646\u0633\u0627\u0646\u0627\u064b \u0648\u0645\u0642\u062f\u0633\u0627\u062a \u0641\u064a \u0638\u0644 \u062d\u0643\u0648\u0645\u0629 \u062e\u0627\u062f\u0645 \u0627\u0644\u062d\u0631\u0645\u064a\u0646 \u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646 \u062d\u0641\u0638\u0647 \u0627\u0644\u0644\u0647 .. \u0627\u0644\u0644\u0647\u0645 \u0625\u062d\u0641\u0638 \u0631\u062c\u0627\u0644 \u0623\u0645\u0646\u0646\u0627 \u0627\u0644\u0628\u0648\u0627\u0633\u0644 \u0641\u064a \u0627\u0644\u062d\u062f \u0627\u0644\u062c\u0646\u0648\u0628\u064a \u064a\u0627\u0643\u0631\u064a\u0645 .","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455680397,"id_str":"455680397","name":"\u0645\u062d\u0645\u062f \u0623\u0628\u0648\u0647\u062f\u0627\u064a\u0629","screen_name":"mabuhedaih","location":"\u0643\u0627\u062a\u0628 \u0628\u062c\u0631\u064a\u062f\u0629 \u0627\u0644\u0648\u0637\u0646 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u0644\u0623\u0646\u0646\u0627 \u0646\u062c\u064a\u062f \u0627\u0644\u0635\u0645\u062a \u062d\u0645\u0651\u0640\u0644\u0640\u0648\u0646\u0627 \u0648\u0632\u0631 \u0627\u0644\u0646\u0648\u0627\u064a\u0627 ..!!","protected":false,"verified":false,"followers_count":42446,"friends_count":2116,"listed_count":420,"favourites_count":1081,"statuses_count":40701,"created_at":"Thu Jan 05 11:35:16 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660340736043450368\/wK-5k1Lw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660340736043450368\/wK-5k1Lw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/455680397\/1446272391","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mabuhedaih","name":"\u0645\u062d\u0645\u062f \u0623\u0628\u0648\u0647\u062f\u0627\u064a\u0629","id":455680397,"id_str":"455680397","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942690840576,"id_str":"663727942690840576","text":"...\u043a\u043e\u043d\u0441\u043e\u043b\u0438\u0434\u0430\u0446\u0438\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430, \u043e\u0431\u043e\u0433\u0430\u0449\u0435\u043d\u0438\u044e \u0435\u0433\u043e \u0434\u0443\u0445\u043e\u0432\u043d\u043e\u0441\u0442\u0438...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1258625485,"id_str":"1258625485","name":"EdwardsWilke","screen_name":"EdwardsWilke","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":256,"friends_count":15,"listed_count":12,"favourites_count":0,"statuses_count":136036,"created_at":"Mon Mar 11 04:55:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3584605638\/d7a3cefb9ee71274aa847d24ad8e4d8b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3584605638\/d7a3cefb9ee71274aa847d24ad8e4d8b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080047663"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942678245376,"id_str":"663727942678245376","text":"Eu s\u00f3 pisquei e j\u00e1 estamos em triagem '-'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2819492763,"id_str":"2819492763","name":"Bia","screen_name":"BcBeacostta","location":"Narnia ","url":null,"description":"Rubro-negra, carioca.\nTec. Produ\u00e7\u00e3o de moda","protected":false,"verified":false,"followers_count":357,"friends_count":349,"listed_count":1,"favourites_count":2372,"statuses_count":5314,"created_at":"Thu Oct 09 12:54:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658945420996005889\/RnEf66_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658945420996005889\/RnEf66_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2819492763\/1447079508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080047660"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942694932480,"id_str":"663727942694932480","text":"Steady&Co\u3060\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109528277,"id_str":"109528277","name":"\u304a\u304b\u3078\u304f","screen_name":"pepin0323","location":"\u9ce5\u53d6\u770c\u4e2d\u90e8\u30b8\u30a7\u30c3\u30c8\u30b7\u30c6\u30a3","url":"http:\/\/bjc.wilddisk.com\/","description":"Valencia c.f.\/YuiKaori\/Yui Ogura\/Kenichi Asai\/Yusuke Chiba\/Kana Hanazawa","protected":false,"verified":false,"followers_count":1071,"friends_count":972,"listed_count":125,"favourites_count":1493,"statuses_count":193666,"created_at":"Fri Jan 29 10:40:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F27305","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460167521950126081\/a36IH4FR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460167521950126081\/a36IH4FR.jpeg","profile_background_tile":true,"profile_link_color":"F200FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657829078574039040\/GhxiFQDv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657829078574039040\/GhxiFQDv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109528277\/1443370748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699253762,"id_str":"663727942699253762","text":"Juro, d\u00e1 vontade de chorar com esses tweets a criticar o modo como as raparigas se vestem...\ncres\u00e7am e metam-se na vossa vida man lol.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351340413,"id_str":"3351340413","name":"Bongo.","screen_name":"MartaTeixxeira","location":null,"url":"http:\/\/m-aa-r-t-aa.tumblr.com\/","description":"20\/08\/2015, Ant\u00f3nio \u2764\ufe0f","protected":false,"verified":false,"followers_count":79,"friends_count":49,"listed_count":1,"favourites_count":1580,"statuses_count":2687,"created_at":"Tue Jun 30 01:00:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660914281190400000\/AVc2J6n8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660914281190400000\/AVc2J6n8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351340413\/1441630029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942690848770,"id_str":"663727942690848770","text":"(\u0645\u0648\u062d\u0632\u0646 \u0644\u0643\u0646 \u062d\u0632\u064a\u0646)\n\n\u062a\u0642\u062f\u0645\u062a\u0646\u064a \u0623\u0646\u0627\u0633 \u0643\u0627\u0646 \u0634\u0648\u0637\u0647\u0645\u064f \n\u0648\u0631\u0627\u0621 \u062e\u0637\u0648\u064a \u0625\u0630 \u0623\u0645\u0634\u064a \u0639\u0644\u0649 \u0645\u0647\u0644\u0650\n\u0641\u0625\u0646 \u0639\u0644\u0627\u0646\u064a \u0645\u0646 \u062f\u0648\u0646\u064a \u0641\u0644\u0627 \u0639\u062c\u0628\u064c\n\u0644\u064a \u0623\u0633\u0648\u0629\u064c \u0628\u0627\u0646\u062d\u0637\u0627\u0637 \u0627\u0644\u0634\u0645\u0633 \u0639\u0646 \u0632\u062d\u0644\u0650\n\n#\u0627\u0644\u0637\u063a\u0631\u0627\u0626\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267022873,"id_str":"267022873","name":"\u0645\u062d\u0645\u062f \u0642\u0631\u0627\u0637\u0627\u0633 ","screen_name":"mohammadkaratas","location":"(Oman)\u0638\u0641\u0627\u0631 - \u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646","url":null,"description":"\u0634\u0627\u0639\u0631 \u064a\u0636\u0639 \u062d\u0631\u0641\u0647 \u0641\u064a \u0642\u0627\u0644\u0628 \u0627\u0644\u0641\u0635\u064a\u062d... \u064a\u0628\u062d\u062b \u0639\u0646 \u0643\u0648\u0643\u0628 \u062c\u062f\u064a\u062f \u064a\u062a\u0634\u0628\u062b \u0628\u0647 \u0644\u064a\u0646\u062a\u0642\u0644 \u0639\u0644\u064a\u0647 \u0625\u0644\u0649 \u0645\u062c\u0631\u0629 \u062c\u062f\u064a\u062f\u0629....\u0623\u062f\u0639\u0648\u0643 \u0644\u0642\u0631\u0627\u0621\u0629 \u0628\u0639\u0636 \u0646\u062a\u0627\u062c\u064a \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629.","protected":false,"verified":false,"followers_count":2382,"friends_count":451,"listed_count":15,"favourites_count":1235,"statuses_count":9790,"created_at":"Wed Mar 16 06:01:47 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"6B523F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636968844100132864\/3jSPcrra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636968844100132864\/3jSPcrra_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267022873\/1435272234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0637\u063a\u0631\u0627\u0626\u064a","indices":[129,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047663"} +{"delete":{"status":{"id":661213256099450880,"id_str":"661213256099450880","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080047735"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699253761,"id_str":"663727942699253761","text":"RT @citrushyunee56: \uc0ac\uc2e4 \uc774\uac70 \ub118 \uc9dc\uc99d\uc774 \ub0a0\uac70\uac19\uc544\uc694 \uc65c \ud2b9\ubb38\ub3c4 \ub290\ub08c\ud45c \ubb3c\uc74c\ud45c\ub3c4 \uc548\ub418\ub294\uac70\uc560\uc624 \uc2ac\ud514 \uc6b0\ub9ac \uc774\uadf8\uc870 \uc790\ub791\uc2a4\ub7f0 \ub0b4\uc0c8\ub07c\ub4e4 #EXO \uc815\ub9d0 \uc9f1\uc9f1\ub9e8\ub4e4\uc774\uc5d0\uc694 #2015mama \uc5d0\uc11c #CALLMEBABY \uc88b\uc740\uc131\uc801 \uae30\ub300\ud574\uc694 \uadfc\ub370 \uc774\ub7f0\uac74 \ud558\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3842627784,"id_str":"3842627784","name":"\uc5d1\uc18c\uc73c\ud5e1\ub108\ubb34\uc88b\uc544\uc73c\uc5b4\uc5b4\u315c\uc6b0\u314f","screen_name":"asjasc02","location":null,"url":null,"description":"9\uc778\uc9c0\uc9c0\u2665\u2665\u2665\u2665!!\n8\uc778\uc9c0\uc9c0 \uc194\uc9c1\ud788 \ub9d8\uc5d0\uc548\ub4e4\uc9c0\ub9cc \uadf8\ub807\ub2e4\uccd0\ub3c4 7\uc778\uc9c0\uc9c0\ub294 \ubb54\ub370 \u315c\u315c\u315c\u315c\u315c\u315c \uac4d \ud0c8\ub355\ud558\ub294\uac8c \ub9de\ub294\ub4ef\u315c\u315c\u315c","protected":false,"verified":false,"followers_count":18,"friends_count":1024,"listed_count":0,"favourites_count":397,"statuses_count":328,"created_at":"Sat Oct 10 02:21:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663009794148532224\/CA2wCXsv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663009794148532224\/CA2wCXsv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3842627784\/1446899058","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:42 +0000 2015","id":663723896374341633,"id_str":"663723896374341633","text":"\uc0ac\uc2e4 \uc774\uac70 \ub118 \uc9dc\uc99d\uc774 \ub0a0\uac70\uac19\uc544\uc694 \uc65c \ud2b9\ubb38\ub3c4 \ub290\ub08c\ud45c \ubb3c\uc74c\ud45c\ub3c4 \uc548\ub418\ub294\uac70\uc560\uc624 \uc2ac\ud514 \uc6b0\ub9ac \uc774\uadf8\uc870 \uc790\ub791\uc2a4\ub7f0 \ub0b4\uc0c8\ub07c\ub4e4 #EXO \uc815\ub9d0 \uc9f1\uc9f1\ub9e8\ub4e4\uc774\uc5d0\uc694 #2015mama \uc5d0\uc11c #CALLMEBABY \uc88b\uc740\uc131\uc801 \uae30\ub300\ud574\uc694 \uadfc\ub370 \uc774\ub7f0\uac74 \ud558\uc9c0\ub9d0\uc544\uc624 \uc810\uc810\uc810 \ub208\ubb3c @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2581507032,"id_str":"2581507032","name":"\uc790\ubabd\uc5d0\ub9ac","screen_name":"citrushyunee56","location":"K-B.0506","url":null,"description":"\ubc31\ud604\uc774\uc640 \ud568\uaed8\ud558\ub294 \uc2dc\uac04 \uae30\ub85d plz don't follow me.\u3160\u3160 \ubc31\uacf5\ub3c4 \uc2eb\uc5b4\uc694..","protected":false,"verified":false,"followers_count":3846,"friends_count":291,"listed_count":17,"favourites_count":4031,"statuses_count":19542,"created_at":"Sun Jun 22 03:41:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663023040943407104\/bJm0bri9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663023040943407104\/bJm0bri9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2581507032\/1443323854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[60,64]},{"text":"2015mama","indices":[76,85]},{"text":"CALLMEBABY","indices":[89,100]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[131,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[80,84]},{"text":"2015mama","indices":[96,105]},{"text":"CALLMEBABY","indices":[109,120]}],"urls":[],"user_mentions":[{"screen_name":"citrushyunee56","name":"\uc790\ubabd\uc5d0\ub9ac","id":2581507032,"id_str":"2581507032","indices":[3,18]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942678261760,"id_str":"663727942678261760","text":"@MicaelaDeJ @pablovela80 @albertvaccaro21 @PDF404 @susypecoy @Chelo1964 algo as\u00ed, ja!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725809107116036,"in_reply_to_status_id_str":"663725809107116036","in_reply_to_user_id":815011140,"in_reply_to_user_id_str":"815011140","in_reply_to_screen_name":"MicaelaDeJ","user":{"id":3403202559,"id_str":"3403202559","name":"Mar\u00eda Bravo","screen_name":"mariabrava35","location":"Montevideo, Uruguay","url":null,"description":"Licenciada en Comunicaci\u00f3n. Exploradora. Abierta, espont\u00e1nea, buena amiga. No suelo callarme. Brava","protected":false,"verified":false,"followers_count":1502,"friends_count":1581,"listed_count":4,"favourites_count":2910,"statuses_count":2483,"created_at":"Tue Aug 04 20:39:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639864348266131456\/pAK_M31a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639864348266131456\/pAK_M31a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3403202559\/1438725161","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MicaelaDeJ","name":"micaela romero","id":815011140,"id_str":"815011140","indices":[0,11]},{"screen_name":"pablovela80","name":"Pablo Vela Gadea","id":1611312338,"id_str":"1611312338","indices":[12,24]},{"screen_name":"albertvaccaro21","name":"Alberto Vaccaro","id":318593717,"id_str":"318593717","indices":[25,41]},{"screen_name":"PDF404","name":"PABLO FREDES","id":1042346262,"id_str":"1042346262","indices":[42,49]},{"screen_name":"susypecoy","name":"Susana Pecoy Santoro","id":163036707,"id_str":"163036707","indices":[50,60]},{"screen_name":"Chelo1964","name":"Marcelo","id":163098583,"id_str":"163098583","indices":[61,71]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080047660"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942669832192,"id_str":"663727942669832192","text":"@GoTigers414 Some of the skits do work better than others, Ryan. Hopefully, they'll balance that out in future episodes.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717747923251201,"in_reply_to_status_id_str":"663717747923251201","in_reply_to_user_id":166389236,"in_reply_to_user_id_str":"166389236","in_reply_to_screen_name":"GoTigers414","user":{"id":135127952,"id_str":"135127952","name":"Tony Ortiz","screen_name":"ajortiz3","location":null,"url":null,"description":"Morning update anchor, WWJ and 97-1 The Ticket in Detroit. Sideline reporter, Detroit Lions Radio Network.","protected":false,"verified":false,"followers_count":10397,"friends_count":243,"listed_count":99,"favourites_count":0,"statuses_count":5524,"created_at":"Tue Apr 20 12:13:02 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599223779026403329\/RFxDDylB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599223779026403329\/RFxDDylB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GoTigers414","name":"Ryan","id":166389236,"id_str":"166389236","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047658"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942674071552,"id_str":"663727942674071552","text":"\u0420\u0435\u0446\u0435\u043f\u0442\u044b \u0434\u043b\u044f \u043c\u0443\u043b\u044c\u0442\u0438\u0432\u0430\u0440\u043a\u0438 \u0417\u0410\u041f\u0415\u041a\u0410\u041d\u041a\u0410 \u0418\u0417 \u041a\u0410\u0411\u0410\u0427\u041a\u041e\u0412...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259806196,"id_str":"1259806196","name":"PowersAbbott","screen_name":"PowersAbbott","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":13,"listed_count":0,"favourites_count":0,"statuses_count":32430,"created_at":"Mon Mar 11 16:03:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3644751660\/00728d397a34ce444dca9bb093471781_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3644751660\/00728d397a34ce444dca9bb093471781_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942674087936,"id_str":"663727942674087936","text":"Opera post moderna quasi metafisica direi che alla fine avr'un valore inestimabile con i loro corpi impressi ! :-\/ #gf14","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3965042361,"id_str":"3965042361","name":"masterofpuppet70","screen_name":"mastero29190307","location":null,"url":null,"description":"Audentes fortuna iuvat !","protected":false,"verified":false,"followers_count":34,"friends_count":42,"listed_count":1,"favourites_count":1040,"statuses_count":735,"created_at":"Thu Oct 15 12:23:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654644732065222656\/EpSBQN1N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654644732065222656\/EpSBQN1N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3965042361\/1444914258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gf14","indices":[115,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942669758464,"id_str":"663727942669758464","text":"RT @RaGoharShahi: 'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605011835,"id_str":"605011835","name":"shining star","screen_name":"shining48469199","location":null,"url":"http:\/\/www.goharshahi.us","description":"His Holiness Ra Riaz #GoharShahi is the Promised Messiah, Prophesised Mehdi and Foretold Kalki Avatar! And the proof is the images on the Moon","protected":false,"verified":false,"followers_count":298,"friends_count":410,"listed_count":22,"favourites_count":3939,"statuses_count":63141,"created_at":"Mon Jun 11 01:48:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888408708\/3048a9300c017ea5d9c1b7a7760ccb81.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888408708\/3048a9300c017ea5d9c1b7a7760ccb81.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512546347933634560\/WdGLf7mA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512546347933634560\/WdGLf7mA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605011835\/1366745794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 22:38:23 +0000 2015","id":660949031162654721,"id_str":"660949031162654721","text":"'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":5,"entities":{"hashtags":[{"text":"GoharShahi","indices":[53,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GoharShahi","indices":[71,82]}],"urls":[],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047658"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942682329088,"id_str":"663727942682329088","text":"RT @ShezLeya: Korang yang konvo or ambil gambar kenangan dengan kawan2, cuba ambik gambar macamnie pulak https:\/\/t.co\/rEno866jq4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":401363964,"id_str":"401363964","name":"\u2654","screen_name":"fathinhanna_","location":null,"url":null,"description":"Malaysia Truly Asia","protected":false,"verified":false,"followers_count":1549,"friends_count":654,"listed_count":2,"favourites_count":1047,"statuses_count":11186,"created_at":"Sun Oct 30 12:48:56 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/484226456344485888\/tERI_ABv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/484226456344485888\/tERI_ABv.jpeg","profile_background_tile":true,"profile_link_color":"80C2AF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCF9E8","profile_text_color":"886DD1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658272656479809536\/DuDnRlpy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658272656479809536\/DuDnRlpy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401363964\/1414594006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 11:19:40 +0000 2015","id":662590164045160448,"id_str":"662590164045160448","text":"Korang yang konvo or ambil gambar kenangan dengan kawan2, cuba ambik gambar macamnie pulak https:\/\/t.co\/rEno866jq4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317106416,"id_str":"317106416","name":"W.M.H","screen_name":"ShezLeya","location":"Perak - Melaka","url":null,"description":"Fight for me. And I promise you that I'll do the same \u2665W.M.H's heart\u2665","protected":false,"verified":false,"followers_count":841,"friends_count":602,"listed_count":1,"favourites_count":7207,"statuses_count":61562,"created_at":"Tue Jun 14 13:02:46 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106619774\/43a77c6cc456e9ee7db8c2f422f535a8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106619774\/43a77c6cc456e9ee7db8c2f422f535a8.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661018791728386048\/bhOksJpy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661018791728386048\/bhOksJpy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317106416\/1446255963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5298,"favorite_count":2461,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662590125663121408,"id_str":"662590125663121408","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662590125663121408,"id_str":"662590125663121408","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":662590134135619584,"id_str":"662590134135619584","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-N2jVAAAfPz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-N2jVAAAfPz5.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":662590145586049025,"id_str":"662590145586049025","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-OhNUsAEJHEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-OhNUsAEJHEU.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":662590161729929218,"id_str":"662590161729929218","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-PdWUwAIBXeN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-PdWUwAIBXeN.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShezLeya","name":"W.M.H","id":317106416,"id_str":"317106416","indices":[3,12]}],"symbols":[],"media":[{"id":662590125663121408,"id_str":"662590125663121408","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662590164045160448,"source_status_id_str":"662590164045160448","source_user_id":317106416,"source_user_id_str":"317106416"}]},"extended_entities":{"media":[{"id":662590125663121408,"id_str":"662590125663121408","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-NW_U8AAXD3U.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662590164045160448,"source_status_id_str":"662590164045160448","source_user_id":317106416,"source_user_id_str":"317106416"},{"id":662590134135619584,"id_str":"662590134135619584","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-N2jVAAAfPz5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-N2jVAAAfPz5.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662590164045160448,"source_status_id_str":"662590164045160448","source_user_id":317106416,"source_user_id_str":"317106416"},{"id":662590145586049025,"id_str":"662590145586049025","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-OhNUsAEJHEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-OhNUsAEJHEU.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662590164045160448,"source_status_id_str":"662590164045160448","source_user_id":317106416,"source_user_id_str":"317106416"},{"id":662590161729929218,"id_str":"662590161729929218","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH-PdWUwAIBXeN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH-PdWUwAIBXeN.jpg","url":"https:\/\/t.co\/rEno866jq4","display_url":"pic.twitter.com\/rEno866jq4","expanded_url":"http:\/\/twitter.com\/ShezLeya\/status\/662590164045160448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662590164045160448,"source_status_id_str":"662590164045160448","source_user_id":317106416,"source_user_id_str":"317106416"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080047661"} +{"delete":{"status":{"id":580583931516436480,"id_str":"580583931516436480","user_id":2438154102,"user_id_str":"2438154102"},"timestamp_ms":"1447080047712"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942690820096,"id_str":"663727942690820096","text":"@kristalkblog MMMMMMMMM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713239558172672,"in_reply_to_status_id_str":"663713239558172672","in_reply_to_user_id":2251685754,"in_reply_to_user_id_str":"2251685754","in_reply_to_screen_name":"kristalkblog","user":{"id":912894362,"id_str":"912894362","name":"\u0425\u0430\u0442","screen_name":"haatmensen","location":null,"url":"https:\/\/www.youtube.com\/user\/CondensedMilkVideo","description":"\u0413\u0443\u0441\u044c, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043b\u044e\u0431\u0438\u0442 \u0443\u0442\u043e\u0447\u0435\u043a.","protected":false,"verified":false,"followers_count":64,"friends_count":10,"listed_count":3,"favourites_count":1843,"statuses_count":835,"created_at":"Mon Oct 29 17:36:32 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621683467244310529\/5KKcyakO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621683467244310529\/5KKcyakO.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639666349277184\/xH5e8UhQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639666349277184\/xH5e8UhQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912894362\/1436454586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kristalkblog","name":"KristinaTalkBlog","id":2251685754,"id_str":"2251685754","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080047663"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942690693122,"id_str":"663727942690693122","text":"\u6700\u8fd1\u591c\u5bdd\u308c\u3093\u3002\u306a\u3093\u3067\u3002\u4e0d\u7720\u75c7\u306a\u3093\u3084\u304b\u3002\u6687\u3084\u306a\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2674139065,"id_str":"2674139065","name":"Anai Kyoko","screen_name":"kyokorin_x","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":139,"friends_count":147,"listed_count":0,"favourites_count":216,"statuses_count":741,"created_at":"Wed Jul 23 15:12:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604035991385452544\/Y3qTHz_g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604035991385452544\/Y3qTHz_g_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047663"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942682431493,"id_str":"663727942682431493","text":"@rodrixixon6 yo en f\u00edsica saqu\u00e9 un 1 y me sent\u00eda orgulloso \ud83d\ude02\u270c\ud83c\udffc\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727775115845632,"in_reply_to_status_id_str":"663727775115845632","in_reply_to_user_id":2518593458,"in_reply_to_user_id_str":"2518593458","in_reply_to_screen_name":"rodrixixon6","user":{"id":1545692798,"id_str":"1545692798","name":"Pizza \u2604\u2728","screen_name":"buflot","location":"Espa\u00f1a (Spain)","url":"https:\/\/www.youtube.com\/channel\/UCFeGEObVWFRBwek0FtXFicQ","description":"TGD | ABBA= life | 14 y.o |Antisocial by nature | Sims Forever | Gerbit | Love as a curse. Livin' large","protected":false,"verified":false,"followers_count":121,"friends_count":192,"listed_count":2,"favourites_count":14432,"statuses_count":6177,"created_at":"Tue Jun 25 13:03:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655497290954731520\/AvuVnwnF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655497290954731520\/AvuVnwnF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1545692798\/1436640915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rodrixixon6","name":"Rodri ","id":2518593458,"id_str":"2518593458","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080047661"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942678274048,"id_str":"663727942678274048","text":"RT @zamancomtr: 7 sayfal\u0131k iddianame iki saatte nas\u0131l 219 sayfaya \u00e7\u0131kt\u0131? \n\nhttps:\/\/t.co\/anlbrFiwqy https:\/\/t.co\/XUtPUW6Maq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1015847220,"id_str":"1015847220","name":"melek avsar","screen_name":"89Avs","location":null,"url":null,"description":"Hayvanda sever insanda","protected":false,"verified":false,"followers_count":224,"friends_count":286,"listed_count":0,"favourites_count":25,"statuses_count":8705,"created_at":"Sun Dec 16 18:57:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659303831772221440\/A5O6u6QR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659303831772221440\/A5O6u6QR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:05 +0000 2015","id":663722733268660225,"id_str":"663722733268660225","text":"7 sayfal\u0131k iddianame iki saatte nas\u0131l 219 sayfaya \u00e7\u0131kt\u0131? \n\nhttps:\/\/t.co\/anlbrFiwqy https:\/\/t.co\/XUtPUW6Maq","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37503614,"id_str":"37503614","name":"Zaman Gazetesi","screen_name":"zamancomtr","location":"\u0130stanbul \/ Turkiye","url":"http:\/\/www.zaman.com.tr","description":"T\u00fcrkiye'nin en \u00e7ok okunan gazetesi - https:\/\/fb.me\/Zamancomtr http:\/\/instagram.com\/zamancomtr","protected":false,"verified":true,"followers_count":976183,"friends_count":64,"listed_count":1848,"favourites_count":4861,"statuses_count":115548,"created_at":"Sun May 03 21:14:00 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/739860536\/f58af11c2994fefbb68cb521c98023e0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/739860536\/f58af11c2994fefbb68cb521c98023e0.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659445801232519168\/vHAg3GFD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659445801232519168\/vHAg3GFD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37503614\/1445945532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/anlbrFiwqy","expanded_url":"http:\/\/zmn.tc\/1Px5nAO","display_url":"zmn.tc\/1Px5nAO","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663718630052507648,"id_str":"663718630052507648","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","url":"https:\/\/t.co\/XUtPUW6Maq","display_url":"pic.twitter.com\/XUtPUW6Maq","expanded_url":"http:\/\/twitter.com\/zamancomtr\/status\/663722733268660225\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":563,"h":350,"resize":"fit"},"medium":{"w":563,"h":350,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718630052507648,"id_str":"663718630052507648","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","url":"https:\/\/t.co\/XUtPUW6Maq","display_url":"pic.twitter.com\/XUtPUW6Maq","expanded_url":"http:\/\/twitter.com\/zamancomtr\/status\/663722733268660225\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":563,"h":350,"resize":"fit"},"medium":{"w":563,"h":350,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/anlbrFiwqy","expanded_url":"http:\/\/zmn.tc\/1Px5nAO","display_url":"zmn.tc\/1Px5nAO","indices":[75,98]}],"user_mentions":[{"screen_name":"zamancomtr","name":"Zaman Gazetesi","id":37503614,"id_str":"37503614","indices":[3,14]}],"symbols":[],"media":[{"id":663718630052507648,"id_str":"663718630052507648","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","url":"https:\/\/t.co\/XUtPUW6Maq","display_url":"pic.twitter.com\/XUtPUW6Maq","expanded_url":"http:\/\/twitter.com\/zamancomtr\/status\/663722733268660225\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":563,"h":350,"resize":"fit"},"medium":{"w":563,"h":350,"resize":"fit"}},"source_status_id":663722733268660225,"source_status_id_str":"663722733268660225","source_user_id":37503614,"source_user_id_str":"37503614"}]},"extended_entities":{"media":[{"id":663718630052507648,"id_str":"663718630052507648","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAk9cWsAAisJ1.jpg","url":"https:\/\/t.co\/XUtPUW6Maq","display_url":"pic.twitter.com\/XUtPUW6Maq","expanded_url":"http:\/\/twitter.com\/zamancomtr\/status\/663722733268660225\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":563,"h":350,"resize":"fit"},"medium":{"w":563,"h":350,"resize":"fit"}},"source_status_id":663722733268660225,"source_status_id_str":"663722733268660225","source_user_id":37503614,"source_user_id_str":"37503614"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080047660"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942686498816,"id_str":"663727942686498816","text":"\u307e\u305f\uff13\uff12\u3084","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2783993840,"id_str":"2783993840","name":"\u3060\u3093","screen_name":"45194192525","location":"\u306a\u3089","url":null,"description":"\u5c51\u3067\u3059\/Wii U\u30d5\u30ec\u30b3-samsara114514","protected":false,"verified":false,"followers_count":319,"friends_count":286,"listed_count":5,"favourites_count":2911,"statuses_count":9155,"created_at":"Mon Sep 01 11:57:27 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655371850399150080\/AdUD304b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655371850399150080\/AdUD304b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2783993840\/1447062356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047662"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942673891328,"id_str":"663727942673891328","text":"\u305b\u3060\u30fc\u3093","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303385224,"id_str":"3303385224","name":"\u3086\u308b\u3044\u3070\u3063\u3057\u3085\u307c\u3063\u3068","screen_name":"yurubash","location":"\u3061\u3085\u30fc\u308a\u3072","url":"http:\/\/twpf.jp\/yurubash","description":"aph \u3072\u3053\u3046\u3057\u304d\u307c\u3063\u3068\u3067\u3042\u308b\u3000\u304d\u3083\u3089\u307b\u3046\u304b\u3044\u3000\u3059\u3054\u3044\u305e(\u306a\u304b\u306b\u3072\u3068\u306f \u3044\u306a\u3044\u306e\u3067\u3042\u308b)\n\u3064\u3044\u3077\u308d \u307f\u3066\u304f\u308c","protected":false,"verified":false,"followers_count":26,"friends_count":26,"listed_count":0,"favourites_count":0,"statuses_count":2637,"created_at":"Sat Aug 01 14:46:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627490919076401152\/7uxrR8Vp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627490919076401152\/7uxrR8Vp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303385224\/1438440692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942673920000,"id_str":"663727942673920000","text":"\u5927\u4e8b\u306b\u3057\u3066\u304f\u308c\u306a\u3044\u4eba\u3092\u5927\u4e8b\u306b\u3059\u308b\u306e\u306b\u9650\u754c\u304c\u6765\u3066\u5acc\u306b\u306a\u308b\u30bf\u30a4\u30df\u30f3\u30b0\u3068\u3001\u5927\u4e8b\u306b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u306e\u306b\u8abf\u5b50\u306b\u4e57\u3063\u3066\u96e2\u308c\u3066\u884c\u304b\u308c\u308b\u30bf\u30a4\u30df\u30f3\u30b0\u3001\u5f53\u305f\u308a\u524d\u3060\u3051\u3069\u307b\u307c\u540c\u6642\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4003874714,"id_str":"4003874714","name":"M","screen_name":"eriko_lips","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":23,"listed_count":0,"favourites_count":44,"statuses_count":122,"created_at":"Sat Oct 24 16:06:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661779162118537216\/5ni3XlU5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661779162118537216\/5ni3XlU5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942673936385,"id_str":"663727942673936385","text":"Thame-ing London. \ud83c\uddec\ud83c\udde7 @ Tower Bridge https:\/\/t.co\/szyVRl0WgU","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":526668276,"id_str":"526668276","name":"Stephen Helldorfer","screen_name":"SEHelldorfer","location":"Brooklyn, NY\n","url":"http:\/\/www.zazzle.com\/nmull22","description":"Tweet.","protected":false,"verified":false,"followers_count":95,"friends_count":463,"listed_count":7,"favourites_count":987,"statuses_count":1762,"created_at":"Fri Mar 16 18:28:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537771548766396416\/GnOMjd9D_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537771548766396416\/GnOMjd9D_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/526668276\/1417049746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[51.50514919,-0.07558474]},"coordinates":{"type":"Point","coordinates":[-0.07558474,51.50514919]},"place":{"id":"7f55e839e1715da2","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7f55e839e1715da2.json","place_type":"city","name":"Camberwell","full_name":"Camberwell, London","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.111476,51.419425],[-0.111476,51.509947],[-0.029731,51.509947],[-0.029731,51.419425]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/szyVRl0WgU","expanded_url":"https:\/\/instagram.com\/p\/93iYlRpT7v\/","display_url":"instagram.com\/p\/93iYlRpT7v\/","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699102208,"id_str":"663727942699102208","text":"Tum apni khidkiyon ko kholkar jab bhi naye aagaaz karti ho, Accha lagta hai..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727798230511616,"in_reply_to_status_id_str":"663727798230511616","in_reply_to_user_id":144009246,"in_reply_to_user_id_str":"144009246","in_reply_to_screen_name":"RetardEngineer","user":{"id":144009246,"id_str":"144009246","name":"Diabolus Scitis","screen_name":"RetardEngineer","location":"Terra incognita","url":"http:\/\/noteloquentenough.wordpress.com\/","description":"BIO? Very terrible subject... \u0905\u0932\u092b\u093e\u091c\u094b \u092e\u0947 \u0935\u094b \u0926\u092e \u0915\u0939\u093e\u0901 \u0915\u0940 \u092c\u092f\u093e\u0901 \u0915\u0930 \u0938\u0915\u0947 \u0936\u0916\u094d\u0938\u093f\u092f\u0924 \u0939\u092e\u093e\u0930\u0940\u0964 #GulzarFan","protected":false,"verified":false,"followers_count":413,"friends_count":202,"listed_count":16,"favourites_count":1556,"statuses_count":30816,"created_at":"Sat May 15 01:54:06 +0000 2010","utc_offset":19800,"time_zone":"Asia\/Calcutta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440523601054142464\/cH-qt6E7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440523601054142464\/cH-qt6E7.png","profile_background_tile":true,"profile_link_color":"FB840E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"373737","profile_text_color":"FDB31C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663543783703732224\/0WPDLPSg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663543783703732224\/0WPDLPSg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144009246\/1441216103","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942682419200,"id_str":"663727942682419200","text":"RT @_MinaaM: Mdr tu te mari\u00e9 \u00e0 un mec de tess, tu vien d'accoucher et ces pote vien rendre visite au b\u00e9b\u00e9 \ud83d\ude44\ud83d\ude29\ud83d\ude29\ud83d\ude29 https:\/\/t.co\/xirOFxIYpg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2250802187,"id_str":"2250802187","name":"\ufe0fSonny Bill Sofian's","screen_name":"Bnkddd","location":"bac fz pasteur CSC","url":null,"description":"S.","protected":false,"verified":false,"followers_count":140,"friends_count":50,"listed_count":1,"favourites_count":308,"statuses_count":12864,"created_at":"Sun Dec 29 20:54:37 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656253135292342272\/dFeWc6dW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656253135292342272\/dFeWc6dW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2250802187\/1447026571","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 22:16:49 +0000 2015","id":659131666393382913,"id_str":"659131666393382913","text":"Mdr tu te mari\u00e9 \u00e0 un mec de tess, tu vien d'accoucher et ces pote vien rendre visite au b\u00e9b\u00e9 \ud83d\ude44\ud83d\ude29\ud83d\ude29\ud83d\ude29 https:\/\/t.co\/xirOFxIYpg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2552623668,"id_str":"2552623668","name":"Minaa","screen_name":"_MinaaM","location":"BR4ZZA \\ 77","url":null,"description":"snap et ig : Maavied \/ t'as bouche me parle mais ton coeur me ment","protected":false,"verified":false,"followers_count":317,"friends_count":94,"listed_count":9,"favourites_count":801,"statuses_count":35578,"created_at":"Sat Jun 07 13:46:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365760325144576\/XM1cZDG7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365760325144576\/XM1cZDG7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2552623668\/1446995650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":484,"favorite_count":71,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659131660831735812,"id_str":"659131660831735812","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","url":"https:\/\/t.co\/xirOFxIYpg","display_url":"pic.twitter.com\/xirOFxIYpg","expanded_url":"http:\/\/twitter.com\/_MinaaM\/status\/659131666393382913\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":659131660831735812,"id_str":"659131660831735812","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","url":"https:\/\/t.co\/xirOFxIYpg","display_url":"pic.twitter.com\/xirOFxIYpg","expanded_url":"http:\/\/twitter.com\/_MinaaM\/status\/659131666393382913\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_MinaaM","name":"Minaa","id":2552623668,"id_str":"2552623668","indices":[3,11]}],"symbols":[],"media":[{"id":659131660831735812,"id_str":"659131660831735812","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","url":"https:\/\/t.co\/xirOFxIYpg","display_url":"pic.twitter.com\/xirOFxIYpg","expanded_url":"http:\/\/twitter.com\/_MinaaM\/status\/659131666393382913\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":659131666393382913,"source_status_id_str":"659131666393382913","source_user_id":2552623668,"source_user_id_str":"2552623668"}]},"extended_entities":{"media":[{"id":659131660831735812,"id_str":"659131660831735812","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSW0wNgWwAQAqdP.jpg","url":"https:\/\/t.co\/xirOFxIYpg","display_url":"pic.twitter.com\/xirOFxIYpg","expanded_url":"http:\/\/twitter.com\/_MinaaM\/status\/659131666393382913\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":659131666393382913,"source_status_id_str":"659131666393382913","source_user_id":2552623668,"source_user_id_str":"2552623668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080047661"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942669725696,"id_str":"663727942669725696","text":"@yuuuuko26 \u3046\u3061\u306e\u732b\u306f\u716e\u5e72\u3057\u306a\u3089\u72ac\u307f\u305f\u3044\u306b\u53d6\u308a\u306b\u884c\u304f\u3093\u3060\u3051\u3069\u306a\u3041w\u3053\u3093\u3069\u30a2\u30a4\u30b9\u306e\u84cb\u3067\u53cd\u5fdc\u3059\u308b\u304b\u3084\u3063\u3066\u307f\u308b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663706543401996288,"in_reply_to_status_id_str":"663706543401996288","in_reply_to_user_id":163872670,"in_reply_to_user_id_str":"163872670","in_reply_to_screen_name":"yuuuuko26","user":{"id":75965585,"id_str":"75965585","name":"\u304b\u3049\u308a","screen_name":"kaorenja","location":"Takayamashi","url":null,"description":"FF,DQ,\u4efb\u5929\u5802,\u9808\u7530\u30b2\u30fc\u7b49\u3005\u3001\u30b2\u30fc\u30e0\u5168\u822c\u611b\u3057\u3066\u307e\u3059\uff01\u30b2\u30fc\u30e0\u3060\u3051\u3067\u306a\u304f\u751f\u304d\u7269\u3082\u5927\u597d\u304d\u3067\u3059\u3002\u73fe\u5728\u732b\u4e00\u5339\u3068\u72ac\u4e00\u5339\u3068\u91d1\u9b5a\u9bc9\u3068\u66ae\u3089\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":113,"friends_count":235,"listed_count":3,"favourites_count":153,"statuses_count":4188,"created_at":"Mon Sep 21 05:33:20 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/181511342\/killer7wallpaper.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/181511342\/killer7wallpaper.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550340184726704128\/5JpHqUxF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550340184726704128\/5JpHqUxF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75965585\/1446398433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuuuuko26","name":"\u30e6\u30a6\u30b3@\u904a\u96e8\u5e78\u4eba","id":163872670,"id_str":"163872670","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047658"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699081728,"id_str":"663727942699081728","text":"\u307e\u305a\u3001\u5927\u524d\u63d0\u3068\u3057\u3066\n\n\uff3f\u4eba\u4eba \u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u30ec\u30ba\u3058\u3083\u306a\u3044 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y\uffe3\u3000 https:\/\/t.co\/omWGMqW7Zk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28054239,"id_str":"28054239","name":"\u548c\u516d\u91cc\u30cf\u30eb(\u30c8\u30ed\u30d4\u30ab\u30eb\u6bcd\u5a18mix\u767a\u58f2\u4e2d","screen_name":"wamusato","location":"\u4e9c\u7a7a\u9593","url":"http:\/\/wamusato.blog70.fc2.com\/","description":"\u30a8\u30ed\u6f2b\u753b\u5bb6\u3067\u3059\u3002\u30d6\u30ed\u30b0\u306f\uff11\uff18\u7981\u3067\u3059\u3002\u4ed5\u4e8b\u67c4\u3001\uff11\uff18\u6b73\u672a\u6e80\u3001\u307e\u305f\u9ad8\u6821\u751f\u306e\u65b9\u306f\u95b2\u89a7\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002\u30b2\u30fc\u30e0\u8a71@wamugemu\u3000\u771f\u9762\u76ee\u306b\u56de\u7b54\u3057\u307e\u305b\u3093\u304c\u304a\u6c17\u8efd\u306b\u3069\u3046\u305ehttp:\/\/ask.fm\/wamusato","protected":false,"verified":false,"followers_count":13377,"friends_count":1478,"listed_count":823,"favourites_count":21197,"statuses_count":30269,"created_at":"Wed Apr 01 04:58:15 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462255689599971328\/6QwbVGp-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462255689599971328\/6QwbVGp-.jpeg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"FCF9E8","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473221263419129856\/5UFOEKC1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473221263419129856\/5UFOEKC1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28054239\/1414773284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726892831236096,"quoted_status_id_str":"663726892831236096","quoted_status":{"created_at":"Mon Nov 09 14:36:37 +0000 2015","id":663726892831236096,"id_str":"663726892831236096","text":"\u548c\u516d\u91cc\u3055\u3093\u306e\u4ed5\u4e8b\u5834\u6f2b\u753b\u304c\u597d\u304d\u306a\u306e\u3067\u3059\u304c\u3001\u304a\u4e8c\u4eba\u306f\u30ec\u30ba\u30ab\u30c3\u30d7\u30eb\u3063\u3066\u3088\u308a\u4e00\u7dd2\u306b\u80b2\u3063\u3066\u3044\u308b\u52d5\u7269\u3063\u3066\u611f\u3058\u304c\u3059\u308b\u3002(\u8272\u3005\u3068\u5931\u793c\u306a\u7269\u8a00\u3044)","source":"\u003ca href=\"http:\/\/jigtwi.jp\/?p=1\" rel=\"nofollow\"\u003ejigtwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101149634,"id_str":"101149634","name":"\u83ca\u5730\u4e14\u5178\uff20\u30c6\u30a3\u30a2U30\uff42","screen_name":"kick_katze","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=6009","description":"\u76ee\u3092\u81e5\u305b\u3066\u3068\u307c\u3068\u307c\u7d75\u63cf\u304d\u3002","protected":false,"verified":false,"followers_count":317,"friends_count":161,"listed_count":38,"favourites_count":232,"statuses_count":64104,"created_at":"Sat Jan 02 05:48:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/95133831\/fishing.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/95133831\/fishing.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511895191318298624\/TMOr8o_p_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511895191318298624\/TMOr8o_p_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/omWGMqW7Zk","expanded_url":"https:\/\/twitter.com\/kick_katze\/status\/663726892831236096","display_url":"twitter.com\/kick_katze\/sta\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047665"} +{"delete":{"status":{"id":519264385655508993,"id_str":"519264385655508993","user_id":752498484,"user_id_str":"752498484"},"timestamp_ms":"1447080047781"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699261956,"id_str":"663727942699261956","text":"RT @Shh_gh16: Asi van los porcentajes \n66% Raquel\n32% Marta\n2% Sof\u00eda\n#GHDirecto #GH16 #gh #Nominadas #Raquel #Marta # Sof\u00eda https:\/\/t.co\/5\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4123394655,"id_str":"4123394655","name":"Sofista\u2665","screen_name":"Sofista_forever","location":null,"url":null,"description":"Club de fans de la concursante m\u00e1s aut\u00e9ntica de Gh16 \u2661","protected":false,"verified":false,"followers_count":63,"friends_count":127,"listed_count":0,"favourites_count":598,"statuses_count":960,"created_at":"Fri Nov 06 01:33:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662446483711610880\/mfO2S66A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662446483711610880\/mfO2S66A_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:06 +0000 2015","id":663723994634444800,"id_str":"663723994634444800","text":"Asi van los porcentajes \n66% Raquel\n32% Marta\n2% Sof\u00eda\n#GHDirecto #GH16 #gh #Nominadas #Raquel #Marta # Sof\u00eda https:\/\/t.co\/5GBM6UbqcU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142159517,"id_str":"4142159517","name":"Gran Hermano 16","screen_name":"Shh_gh16","location":"Guadalix de la Sierra, Comunid","url":null,"description":"Os contamos todas las novedades y la ultima hora de Gran Hermano.\n\u300bCuenta muy activa.\nRecomendadla. \u2665","protected":false,"verified":false,"followers_count":13,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":41,"created_at":"Sun Nov 08 14:21:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663365225924730880\/fbMZz18j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663365225924730880\/fbMZz18j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142159517\/1446993567","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"GHDirecto","indices":[55,65]},{"text":"GH16","indices":[66,71]},{"text":"gh","indices":[72,75]},{"text":"Nominadas","indices":[76,86]},{"text":"Raquel","indices":[87,94]},{"text":"Marta","indices":[96,102]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723992231059456,"id_str":"663723992231059456","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","url":"https:\/\/t.co\/5GBM6UbqcU","display_url":"pic.twitter.com\/5GBM6UbqcU","expanded_url":"http:\/\/twitter.com\/Shh_gh16\/status\/663723994634444800\/photo\/1","type":"photo","sizes":{"medium":{"w":219,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":219,"h":675,"resize":"fit"},"small":{"w":219,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723992231059456,"id_str":"663723992231059456","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","url":"https:\/\/t.co\/5GBM6UbqcU","display_url":"pic.twitter.com\/5GBM6UbqcU","expanded_url":"http:\/\/twitter.com\/Shh_gh16\/status\/663723994634444800\/photo\/1","type":"photo","sizes":{"medium":{"w":219,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":219,"h":675,"resize":"fit"},"small":{"w":219,"h":675,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GHDirecto","indices":[69,79]},{"text":"GH16","indices":[80,85]},{"text":"gh","indices":[86,89]},{"text":"Nominadas","indices":[90,100]},{"text":"Raquel","indices":[101,108]},{"text":"Marta","indices":[110,116]}],"urls":[],"user_mentions":[{"screen_name":"Shh_gh16","name":"Gran Hermano 16","id":4142159517,"id_str":"4142159517","indices":[3,12]}],"symbols":[],"media":[{"id":663723992231059456,"id_str":"663723992231059456","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","url":"https:\/\/t.co\/5GBM6UbqcU","display_url":"pic.twitter.com\/5GBM6UbqcU","expanded_url":"http:\/\/twitter.com\/Shh_gh16\/status\/663723994634444800\/photo\/1","type":"photo","sizes":{"medium":{"w":219,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":219,"h":675,"resize":"fit"},"small":{"w":219,"h":675,"resize":"fit"}},"source_status_id":663723994634444800,"source_status_id_str":"663723994634444800","source_user_id":4142159517,"source_user_id_str":"4142159517"}]},"extended_entities":{"media":[{"id":663723992231059456,"id_str":"663723992231059456","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFdFHWIAAcnya.jpg","url":"https:\/\/t.co\/5GBM6UbqcU","display_url":"pic.twitter.com\/5GBM6UbqcU","expanded_url":"http:\/\/twitter.com\/Shh_gh16\/status\/663723994634444800\/photo\/1","type":"photo","sizes":{"medium":{"w":219,"h":675,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":219,"h":675,"resize":"fit"},"small":{"w":219,"h":675,"resize":"fit"}},"source_status_id":663723994634444800,"source_status_id_str":"663723994634444800","source_user_id":4142159517,"source_user_id_str":"4142159517"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699094017,"id_str":"663727942699094017","text":"RT @ANONYMAI: #\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e01\u0e31\u0e19\u0e44\u0e1b\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e01\u0e31\u0e1a\u0e04\u0e33\u0e27\u0e48\u0e32..\n\n-\u0e0a\u0e32\u0e1a\u0e39\n-\u0e2b\u0e21\u0e39\u0e01\u0e23\u0e30\u0e17\u0e30\n-\u0e08\u0e34\u0e49\u0e21\u0e08\u0e38\u0e48\u0e21\n-\u0e41\u0e0b\u0e25\u0e21\u0e2d\u0e19\n-\u0e2a\u0e40\u0e15\u0e47\u0e01\n-\u0e2a\u0e49\u0e21\u0e15\u0e33\n-\u0e42\u0e01\u0e42\u0e01\u0e49\n-\u0e44\u0e2d\u0e15\u0e34\u0e21\n-\u0e40\u0e04\u0e49\u0e01\n-\u0e42\u0e17\u0e23\u0e2a\n\n\u0e04\u0e48\u0e30!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4107891073,"id_str":"4107891073","name":"A E I .","screen_name":"aeii6","location":null,"url":null,"description":"punyanuch kangvansaichol.","protected":false,"verified":false,"followers_count":2,"friends_count":62,"listed_count":0,"favourites_count":7,"statuses_count":43,"created_at":"Tue Nov 03 01:41:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661362063277555714\/NJZNVALa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661362063277555714\/NJZNVALa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4107891073\/1447065887","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 22 13:16:32 +0000 2015","id":657183757028360194,"id_str":"657183757028360194","text":"#\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e01\u0e31\u0e19\u0e44\u0e1b\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27 \u0e01\u0e31\u0e1a\u0e04\u0e33\u0e27\u0e48\u0e32..\n\n-\u0e0a\u0e32\u0e1a\u0e39\n-\u0e2b\u0e21\u0e39\u0e01\u0e23\u0e30\u0e17\u0e30\n-\u0e08\u0e34\u0e49\u0e21\u0e08\u0e38\u0e48\u0e21\n-\u0e41\u0e0b\u0e25\u0e21\u0e2d\u0e19\n-\u0e2a\u0e40\u0e15\u0e47\u0e01\n-\u0e2a\u0e49\u0e21\u0e15\u0e33\n-\u0e42\u0e01\u0e42\u0e01\u0e49\n-\u0e44\u0e2d\u0e15\u0e34\u0e21\n-\u0e40\u0e04\u0e49\u0e01\n-\u0e42\u0e17\u0e23\u0e2a\n\n\u0e04\u0e48\u0e30!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1602938016,"id_str":"1602938016","name":"\u0e40\u0e14\u0e47\u0e01\u0e01\u0e32\u0e07\u0e23\u0e48\u0e21","screen_name":"ANONYMAI","location":null,"url":null,"description":"\u0e17\u0e33\u0e43\u0e08\u0e2d\u0e22\u0e39\u0e48\u0e19\u0e30","protected":false,"verified":false,"followers_count":5536,"friends_count":69,"listed_count":3,"favourites_count":3980,"statuses_count":7906,"created_at":"Thu Jul 18 08:54:33 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660811440081625088\/LEOXzXaG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660811440081625088\/LEOXzXaG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1602938016\/1446134875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16544,"favorite_count":745,"entities":{"hashtags":[{"text":"\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e01\u0e31\u0e19\u0e44\u0e1b\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27","indices":[0,25]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2a\u0e39\u0e0d\u0e40\u0e2a\u0e35\u0e22\u0e01\u0e31\u0e19\u0e44\u0e1b\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e41\u0e25\u0e49\u0e27","indices":[14,39]}],"urls":[],"user_mentions":[{"screen_name":"ANONYMAI","name":"\u0e40\u0e14\u0e47\u0e01\u0e01\u0e32\u0e07\u0e23\u0e48\u0e21","id":1602938016,"id_str":"1602938016","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942686498817,"id_str":"663727942686498817","text":"@odayaka_chan \u541b\u306b\u306f\u4f55\u304c\u898b\u3048\u3066\u3044\u308b\u306e\u304b","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727705590906885,"in_reply_to_status_id_str":"663727705590906885","in_reply_to_user_id":3352813153,"in_reply_to_user_id_str":"3352813153","in_reply_to_screen_name":"odayaka_chan","user":{"id":250706012,"id_str":"250706012","name":"\u305f\u3066\u307e\u308b","screen_name":"miustara","location":"\u674f\u30fb\u674f","url":null,"description":"\u4ffa\u6614\u3001\u3058\u3093\u305f\u3093\u3060\u3063\u305f\u3093\u3059\u3088\u3002\u30b7\u30b9\u30c6\u30e0\u304c\u6226\u95d8\u6a5f\u306e\u6642\u4ee3\u306b\u6226\u8266\u3092\u4f5c\u308b\u7d4c\u6e08\u30de\u30b7\u30fc\u30f3","protected":false,"verified":false,"followers_count":108,"friends_count":154,"listed_count":7,"favourites_count":322,"statuses_count":34902,"created_at":"Fri Feb 11 16:50:28 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444174543284740096\/ejQPa9UH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444174543284740096\/ejQPa9UH.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444174411042545664\/DIOOgViG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444174411042545664\/DIOOgViG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250706012\/1394734374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"odayaka_chan","name":"\u304a\u3060\u3084\u304b\u3061\u3083\u3093","id":3352813153,"id_str":"3352813153","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047662"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942703321088,"id_str":"663727942703321088","text":"RT @jimsciutto: Just in: shooter who killed 2 US contractors in #Jordan was Jordanian police officer recently fired from job - US official \u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47093736,"id_str":"47093736","name":"elisa oddone","screen_name":"AglaiaTalia","location":"Amman","url":"http:\/\/elisaoddone.com\/","description":"Freelance journalist based in Jordan. Focus on Jordan, the Syrian conflict, refugees and economy. Previously worked for Reuters Berlin, Ansa Germany","protected":false,"verified":false,"followers_count":192,"friends_count":266,"listed_count":19,"favourites_count":114,"statuses_count":707,"created_at":"Sun Jun 14 13:46:05 +0000 2009","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462311884880764928\/5DwVB1wJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462311884880764928\/5DwVB1wJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47093736\/1384868932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:27 +0000 2015","id":663724081968214016,"id_str":"663724081968214016","text":"Just in: shooter who killed 2 US contractors in #Jordan was Jordanian police officer recently fired from job - US official tells me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22129280,"id_str":"22129280","name":"Jim Sciutto","screen_name":"jimsciutto","location":"Washington, DC","url":"http:\/\/www.jimsciutto.com","description":"CNN's Chief National Security Correspondent http:\/\/on.cnn.com\/1a7VCAU","protected":false,"verified":true,"followers_count":50785,"friends_count":260,"listed_count":2101,"favourites_count":152,"statuses_count":11607,"created_at":"Fri Feb 27 11:07:05 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000090610187\/ffc4f39d79a11b89fb5709703719aac2.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000090610187\/ffc4f39d79a11b89fb5709703719aac2.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450818997353578496\/Pwxkb5rA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450818997353578496\/Pwxkb5rA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22129280\/1391184572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":1,"entities":{"hashtags":[{"text":"Jordan","indices":[48,55]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Jordan","indices":[64,71]}],"urls":[],"user_mentions":[{"screen_name":"jimsciutto","name":"Jim Sciutto","id":22129280,"id_str":"22129280","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047666"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942678151168,"id_str":"663727942678151168","text":"\u53ef\u611b\u3051\u308c\u3070\u4f55\u3067\u3082\u3042\u308a\u304b\u3088\u3063\u3066\u805e\u304f\u3051\u3069\u4f55\u3067\u3082\u3042\u308a\u3060\u3068\u601d\u3046\u3001\u201c\u53ef\u611b\u3051\u308c\u3070\u201d\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1381757240,"id_str":"1381757240","name":"\u3061\u3083\u3093\u3061\u30fc","screen_name":"hideandseekxoxo","location":null,"url":null,"description":"3\u5e74(\u3063'\u30ee'c) ex.HiDe-and-SeeK \u30b4\u6c11*\u79c1\u306f\u305d\u306a\u305f\u306e\u5473\u65b9\u3060*","protected":false,"verified":false,"followers_count":803,"friends_count":750,"listed_count":6,"favourites_count":15873,"statuses_count":28964,"created_at":"Fri Apr 26 12:02:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612779442004307968\/NsdWi3PC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612779442004307968\/NsdWi3PC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1381757240\/1446995221","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047660"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942694924288,"id_str":"663727942694924288","text":"@uron271 \u3084\u3063\u305f\u306d\uff01\u3053\u308c\u3067\u697d\u3057\u307f\u304c\u5897\u3048\u308b\u306d\uff01\uff01\u3000\u305d\u3046\u306a\u306e\u3088\uff01\u3042\u306e\uff14\u4eba\u306f\u604b\u611b\u3068\u304b\u305d\u3046\u3044\u3046\u306e\u304c\u306a\u304f\u3066\u300c\u4ef2\u9593\u300d\u3067\u300c\u76f8\u68d2\u300d\u3067\u300c\u60aa\u53cb\u300d\u3067\u300c\u4e00\u84ee\u6258\u751f\u300d\u611f\u304c\u826f\u3044\u3093\u3060\u3068\u601d\u3046\u308f\u3051\u3067\u3059\u3088\u2026\uff01\uff01","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726603508183041,"in_reply_to_status_id_str":"663726603508183041","in_reply_to_user_id":910540304,"in_reply_to_user_id_str":"910540304","in_reply_to_screen_name":"uron271","user":{"id":147594181,"id_str":"147594181","name":"\u79cb\u590f","screen_name":"syuka_pics","location":"\u5317\u306e\u5927\u5730\u306e\u3069\u3053\u304b","url":"http:\/\/twipple.jp\/user\/syuka_pics","description":"\u3053\u3063\u305d\u308a\u3082\u3061\u3087\u3082\u3061\u3087\u30c4\u30a4\u30fc\u30c8\u4e2d\u3002\u71b1\u3057\u3084\u3059\u304f\u51b7\u3081\u3084\u3059\u3044\u82e5\u5e72\u8150\u308c\u305f\u6210\u4eba\u3002\u624b\u82b8\u6cbc\u306b\u305a\u3076\u305a\u3076\u3068\u5d4c\u307e\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u3000\u5be9\u795e\u8005\u517c\u63d0\u7763\u3002\u5ac1\u306f\u592a\u90ce\u592a\u5200\u3055\u3093\u3068\u5929\u9f8d\u3061\u3083\u3093\u3002\u3000\u304a\u6c17\u8efd\u30d5\u30a9\u30ed\u30fc\u306a\u308a\u30ea\u30e0\u306a\u308a\u3057\u3066\u304f\u3060\u3055\u3044\u306a\u3002\u3000","protected":false,"verified":false,"followers_count":166,"friends_count":215,"listed_count":4,"favourites_count":928,"statuses_count":21539,"created_at":"Mon May 24 14:56:29 +0000 2010","utc_offset":32400,"time_zone":"Sapporo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580664263225692160\/Nom71eVe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580664263225692160\/Nom71eVe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147594181\/1404293505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uron271","name":"\u85ab\u3086\u304d","id":910540304,"id_str":"910540304","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699094016,"id_str":"663727942699094016","text":"@Jamey_west1 we have the same backpack tho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663705642356637696,"in_reply_to_status_id_str":"663705642356637696","in_reply_to_user_id":3548933001,"in_reply_to_user_id_str":"3548933001","in_reply_to_screen_name":"Jamey_west1","user":{"id":2738200765,"id_str":"2738200765","name":"Sean","screen_name":"YoboySmeezy","location":null,"url":null,"description":"Live. Laugh. Thug. I guess Sam is my girlfriend.","protected":false,"verified":false,"followers_count":124,"friends_count":86,"listed_count":0,"favourites_count":887,"statuses_count":2463,"created_at":"Sat Aug 16 21:20:59 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660311548963852288\/n2aYMijd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660311548963852288\/n2aYMijd_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jamey_west1","name":"Jamey","id":3548933001,"id_str":"3548933001","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699061248,"id_str":"663727942699061248","text":"\u3044\u308d\u3044\u308d\u3057\u3093\u3069\u3044\u308f\u301c\u2935\ufe0e\u4e16\u306e\u4e2d\u3046\u307e\u304f\u3044\u304b\u3093\u306d\u2935\ufe0e\u8a95\u751f\u65e5\u3050\u3089\u3044\u3055\u301c\u826f\u5e2d\u304d\u3066\u304f\u308c\u3066\u3082\u826f\u304b\u3063\u305f\u306e\u306b\u301c\u3042\u301c\u7121\u7406","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1048328240,"id_str":"1048328240","name":"\u2729\u2729 ayano","screen_name":"exmkbigluv","location":"Nagoya","url":"https:\/\/instagram.com\/ayaryuuuu\/","description":"~~~~~~\u771e\u6728\u5927\u8f14\u306b\u5168\u529b\u3092\u5c3d\u304f\u3057\u3066\u5f8c\u6094\u3057\u306a\u3044\u3088\u3046\u306b~~~~~~ AW\u3067\u6ca2\u5c71\u30df\u30e9\u30af\u30eb\u8d77\u3053\u3057\u3061\u3083\u304a\u3046\u2934\ufe0e\u2934\ufe0e","protected":false,"verified":false,"followers_count":327,"friends_count":259,"listed_count":0,"favourites_count":3859,"statuses_count":19205,"created_at":"Sun Dec 30 16:52:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659302199197986816\/P2IzeqaN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659302199197986816\/P2IzeqaN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1048328240\/1438095622","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047665"} +{"delete":{"status":{"id":29379095821,"id_str":"29379095821","user_id":21863084,"user_id_str":"21863084"},"timestamp_ms":"1447080047781"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942694891520,"id_str":"663727942694891520","text":"@FrihaAyub hahaha g pagal to hun main. \ud83d\ude01\ud83d\ude01\ud83d\ude1c\ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727704706056193,"in_reply_to_status_id_str":"663727704706056193","in_reply_to_user_id":1311912294,"in_reply_to_user_id_str":"1311912294","in_reply_to_screen_name":"FrihaAyub","user":{"id":3081779394,"id_str":"3081779394","name":"Bint e Najeeb","screen_name":"Shehzdi01","location":"Karachi, Pakistan","url":null,"description":"Student,Muslim Alhumdolillah,Pakistani, Punjabi,Brave Rajput, Virgo... Ishq pyary Nabi se...","protected":false,"verified":false,"followers_count":344,"friends_count":37,"listed_count":2,"favourites_count":9266,"statuses_count":4133,"created_at":"Sat Mar 14 17:58:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662621921876439041\/jTnXM24b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662621921876439041\/jTnXM24b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3081779394\/1446389851","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FrihaAyub","name":"friha ayub","id":1311912294,"id_str":"1311912294","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942669877248,"id_str":"663727942669877248","text":"@EduPerMon @p_wallacy @juniorlpaiva a rede social inteira acha que eu devo ganhar uma festa surpresa sua","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727738944114688,"in_reply_to_status_id_str":"663727738944114688","in_reply_to_user_id":97021200,"in_reply_to_user_id_str":"97021200","in_reply_to_screen_name":"EduPerMon","user":{"id":167025731,"id_str":"167025731","name":"Leandronc\u00e9","screen_name":"leeaugustto","location":null,"url":null,"description":"Oh, honey. Goddesses don't speak in whispers. They scream.","protected":false,"verified":false,"followers_count":1342,"friends_count":943,"listed_count":6,"favourites_count":8118,"statuses_count":71404,"created_at":"Thu Jul 15 15:39:01 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"400300","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642817696212647936\/g8ziQOta.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642817696212647936\/g8ziQOta.jpg","profile_background_tile":true,"profile_link_color":"BF0900","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662342480080314369\/TpbrJgSC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662342480080314369\/TpbrJgSC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167025731\/1445869308","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EduPerMon","name":"Edu","id":97021200,"id_str":"97021200","indices":[0,10]},{"screen_name":"p_wallacy","name":"wallacy melo","id":1432161955,"id_str":"1432161955","indices":[11,21]},{"screen_name":"juniorlpaiva","name":"JP5","id":260435467,"id_str":"260435467","indices":[22,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080047658"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942699061249,"id_str":"663727942699061249","text":"@0311Lav \u305d\u3093\u306a\u7533\u3057\u308f\u3051\u306a\u3044(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727885237096449,"in_reply_to_status_id_str":"663727885237096449","in_reply_to_user_id":1521169765,"in_reply_to_user_id_str":"1521169765","in_reply_to_screen_name":"0311Lav","user":{"id":2827918496,"id_str":"2827918496","name":"\u5712\u5c71 \u6b69\u5922","screen_name":"0818aym05","location":null,"url":null,"description":"\u88cf\u3068\u8868\u3002\u8a9e\u308b\u306e\u597d\u304d\u2606 \u26be \u5927\u5207R&A \u26610108\u2661 \u91ce\u7403\u2661\u6ce2\u4f50\u898b\u9ad8\u6821\u91ce\u7403\u90e8\u2192\u9577\u5d0e\u7dcf\u5408\u79d1\u5b66\u5927\u5b66\u533b\u7642\u5de5\u5b66","protected":false,"verified":false,"followers_count":620,"friends_count":571,"listed_count":0,"favourites_count":2059,"statuses_count":5458,"created_at":"Tue Sep 23 11:38:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661113084983951361\/dPrevXzb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661113084983951361\/dPrevXzb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2827918496\/1428039132","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0311Lav","name":"\u307e\u3041\u3041\u3041\u3044","id":1521169765,"id_str":"1521169765","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047665"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942694866944,"id_str":"663727942694866944","text":"\u4eca\u63cf\u3044\u3066\u308b\u7d75\u3092\u660e\u65e5\u306b\u306f\u5b8c\u6210\u3055\u305b\u305f\u3044\u306a\u3041\u2026\u3068\u601d\u3044\u3064\u3064\uff11\u9031\u9593\u304f\u3089\u3044\u7d4c\u3063\u305f( '-' )\u6587\u5b57\u306e\u52a0\u5de5\u304c\u3067\u304d\u306a\u3044\u3093\u3088\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989742035,"id_str":"2989742035","name":"\u767d\u9b5a\u306e\u5927\u7fa4(\u3057\u3089)","screen_name":"sira2_um","location":"\u85ac\u7814\u6cbc","url":null,"description":"18\u2191\u5200\u5263\u4e71\u821e\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u7bc0\u64cd\u306a\u3057\u306b\u4f55\u3067\u3082\u545f\u304f\u3002\u591c\u306b\u51fa\u73fe\u7387\u9ad8\u3081\u3002\u306b\u3087\u305f\u3001\u8150\u767a\u8a00\u3001\u8150\u7d75\u6ce8\u610f\u3067\u3059\uff01\u7c9f\u7530\u53e3\u3001\u7e54\u7530\u7d44\u304c\u597d\u304d\u306a\u85ac\u7814\u6cbc\u4f4f\u5728\u306e\u67c4\u30e9\u30fc\u3002\u57fa\u672c\u85ac\u7814\u53f3\u4e2d\u5fc3\u3067\u3059\u304c\u3001\u85ac\u7814\u304c\u3044\u308c\u3070\u306a\u3093\u3067\u3082\u3042\u308a\u306e\u96d1\u98df\u3002\u30c4\u30a4\u30d7\u30ed\u4e00\u8aad\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u2192\u3010 http:\/\/twpf.jp\/sira2_um \u3011","protected":false,"verified":false,"followers_count":106,"friends_count":111,"listed_count":11,"favourites_count":943,"statuses_count":1740,"created_at":"Mon Jan 19 10:55:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660290579872399361\/AoLx9zI6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660290579872399361\/AoLx9zI6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989742035\/1446559680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942686613504,"id_str":"663727942686613504","text":"RT https:\/\/t.co\/4a5T8J3jGp 5 Kitchen Design Trends That Buyers Hate: https:\/\/t.co\/MxcQEQDbzT\n#homeimprovement https:\/\/t.co\/BM0GW8iSIP","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3318626610,"id_str":"3318626610","name":"Ashley Murphy","screen_name":"murphyashley13","location":"St Paul, MN","url":null,"description":"I enjoy working on my house and am always interested in learning more about #homeimprovement","protected":false,"verified":false,"followers_count":568,"friends_count":107,"listed_count":330,"favourites_count":0,"statuses_count":103243,"created_at":"Tue Aug 18 12:55:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636977012112908288\/gZmroOcl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636977012112908288\/gZmroOcl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318626610\/1440702143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725683009548290,"quoted_status_id_str":"663725683009548290","quoted_status":{"created_at":"Mon Nov 09 14:31:48 +0000 2015","id":663725683009548290,"id_str":"663725683009548290","text":"5 Kitchen Design Trends That Buyers Hate: https:\/\/t.co\/KyykdeNlOM\n#homeimprovement https:\/\/t.co\/WnyllpAX8Z","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36262236,"id_str":"36262236","name":"torelli realty","screen_name":"TorelliRealty","location":"Costa Mesa, California","url":"http:\/\/www.torellirealty.com","description":"The leader in Costa Mesa, CA real estate...Selling homes, leasing houses, staging homes, creating dreams","protected":false,"verified":false,"followers_count":3340,"friends_count":3218,"listed_count":114,"favourites_count":120,"statuses_count":10969,"created_at":"Wed Apr 29 02:38:58 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000086154800\/e261a9a4d84cb13a3c2934972fe7beee.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000086154800\/e261a9a4d84cb13a3c2934972fe7beee.jpeg","profile_background_tile":false,"profile_link_color":"65186E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532973384083066880\/YY36jUNi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532973384083066880\/YY36jUNi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36262236\/1418755384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"homeimprovement","indices":[66,82]}],"urls":[{"url":"https:\/\/t.co\/KyykdeNlOM","expanded_url":"http:\/\/bit.ly\/1kFVmWn","display_url":"bit.ly\/1kFVmWn","indices":[42,65]},{"url":"https:\/\/t.co\/WnyllpAX8Z","expanded_url":"http:\/\/fb.me\/3zdipZMJf","display_url":"fb.me\/3zdipZMJf","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"homeimprovement","indices":[93,109]}],"urls":[{"url":"https:\/\/t.co\/4a5T8J3jGp","expanded_url":"http:\/\/twitter.com\/TorelliRealty\/status\/663725683009548290","display_url":"twitter.com\/TorelliRealty\/\u2026","indices":[3,26]},{"url":"https:\/\/t.co\/MxcQEQDbzT","expanded_url":"http:\/\/bit.ly\/1kFVmWn","display_url":"bit.ly\/1kFVmWn","indices":[69,92]},{"url":"https:\/\/t.co\/BM0GW8iSIP","expanded_url":"http:\/\/fb.me\/3zdipZMJf","display_url":"fb.me\/3zdipZMJf","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047662"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942694912001,"id_str":"663727942694912001","text":"@loverumbines yes, youve summoned the guru? Oh tara","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720039409807360,"in_reply_to_status_id_str":"663720039409807360","in_reply_to_user_id":2598199009,"in_reply_to_user_id_str":"2598199009","in_reply_to_screen_name":"loverumbines","user":{"id":37131483,"id_str":"37131483","name":"Jean Edfhel Pascual","screen_name":"iambeingused","location":"Monster Pit","url":null,"description":"Mom, dad... I have to tell you something. I'm coming out as a Thespian | Dulaang UP turned me | IG: jeanedfhel","protected":false,"verified":false,"followers_count":390,"friends_count":116,"listed_count":9,"favourites_count":2256,"statuses_count":16004,"created_at":"Sat May 02 03:40:26 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F3F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/715023631\/d3471130939fbf30a5a1011775ccfcf2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/715023631\/d3471130939fbf30a5a1011775ccfcf2.jpeg","profile_background_tile":true,"profile_link_color":"E65CBA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663556934335787008\/EfDZOit7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663556934335787008\/EfDZOit7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37131483\/1438546103","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"loverumbines","name":"Love Rumbines","id":2598199009,"id_str":"2598199009","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942695043072,"id_str":"663727942695043072","text":"uma coisa que eu n\u00e3o suporto \u00e9 pessoa escandalosa.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":399431690,"id_str":"399431690","name":"Manuzinha.","screen_name":"manuuseijas","location":"puta que pariu","url":"https:\/\/www.facebook.com\/manuu.garciaseijas?fref=ts","description":"me abra\u00e7a e me d\u00ea um beijo...","protected":false,"verified":false,"followers_count":553,"friends_count":349,"listed_count":1,"favourites_count":6185,"statuses_count":20304,"created_at":"Thu Oct 27 13:55:15 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/525711626347900928\/Mpc9tMqX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/525711626347900928\/Mpc9tMqX.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662646047861248000\/QhjRzx-d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662646047861248000\/QhjRzx-d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/399431690\/1425493978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942703316992,"id_str":"663727942703316992","text":"\u83ca\u828b\u30bf\u30d6\u30ec\u30c3\u30c8\u3000250mg\u00d7300\u7c92\u3000\u304a\u5fb3\u75283\u500b\u30bb\u30c3\u30c8\u3000\u5185\u5bb9\u91cf\uff1a225g \u26053\u888b\u3067\u751f\u83ca\u828b\uff1d1980g\u5206\u3067\u3059\uff01 https:\/\/t.co\/LUsKYuCMxq","source":"\u003ca href=\"http:\/\/sumahochan.web.fc2.com\/\" rel=\"nofollow\"\u003esumahochan\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2321894558,"id_str":"2321894558","name":"\u65e8\u3044\u9152\u304c\u5451\u307f\u305f\u3044\u3060\u3051\uff20\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","screen_name":"sakedasakeda7","location":null,"url":null,"description":"\u65b0\u3057\u3044\u30c6\u30cb\u30b9\u90e8\u9583\u304b\u306a\u3044\u3002\u3086\u3042\u3068\u30c6\u30cb\u30b9\u3057\u305f\u3044\u3002LOVE\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","protected":false,"verified":false,"followers_count":2182,"friends_count":2408,"listed_count":3,"favourites_count":2,"statuses_count":165997,"created_at":"Sat Feb 01 06:43:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429505664449146881\/nu35kB2o_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429505664449146881\/nu35kB2o_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LUsKYuCMxq","expanded_url":"http:\/\/www.amazon.co.jp\/%E3%81%B5%E3%82%8B%E3%81%95%E3%81%A8%E5%BF%9C%E6%8F%B4%E5%9B%A3-%E8%8F%8A%E8%8A%8B%E3%82%BF%E3%83%96%E3%83%AC%E3%83%83%E3%83%88-250mg%C3%97300%E7%B2%92-%E3%81%8A%E5%BE%B3%E7%94%A83%E5%80%8B%E3%82%BB%E3%83%83%E3%83%88-%E5%86%85%E5%AE%B9%E9%87%8F%EF%BC%9A225g-%E2%98%853%E8%A2%8B%E3%81%A7%E7%94%9F%E8%8F%8A%E8%8A%8B%EF%BC%9D1980g%E5%88%86%E3%81%A7%E3%81%99%EF%BC%81\/dp\/B008BG66E4%3FSubscriptionId%3DAKIAJCDYKTBNARHXJIBA%26tag%3Dluneblanc-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB008BG66E4","display_url":"amazon.co.jp\/%E3%81%B5%E3%8\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047666"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942682324992,"id_str":"663727942682324992","text":"\u30c8\u30e0\u3044\u3053\u3044\u3053","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":861304171,"id_str":"861304171","name":"\u524d\u7530 \u9855\u6c70","screen_name":"ma_branch","location":"\u5cb8\u548c\u7530\u21c4\u5357\u8349\u6d25*","url":"http:\/\/twpf.jp\/ma_branch","description":"\u3046\u308b\u3055\u3044\u3067\u3059\u3002\n\u90a6\u30ed\u30c3\u30af\u306b\u8208\u5473\u304c\u3042\u308a\u3001\u30a8\u30ec\u30ad\u30d9\u30fc\u30b9\u3092\u8da3\u5473\u306e\u7bc4\u56f2\u3067\u55dc\u307f\u307e\u3059\u3002\n\u30d0\u30ca\u30fc\u306f #\u962a\u5927\u30ec\u30b4\u90e8 \u3055\u3093\u306e\u5c55\u793a\u3088\u308a\u304a\u501f\u308a\u3057\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":228,"friends_count":186,"listed_count":0,"favourites_count":129,"statuses_count":12215,"created_at":"Thu Oct 04 12:15:33 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661481820198801408\/mxfTNZCz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661481820198801408\/mxfTNZCz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/861304171\/1446682813","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047661"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942695034880,"id_str":"663727942695034880","text":"RT @seulggo: ela canta olhando pra seulgi to mal https:\/\/t.co\/4MFXmxE1nr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228526084,"id_str":"228526084","name":";","screen_name":"burkellers","location":"(?)","url":"http:\/\/burkellers.tumblr.com","description":null,"protected":false,"verified":false,"followers_count":141,"friends_count":597,"listed_count":0,"favourites_count":832,"statuses_count":4532,"created_at":"Mon Dec 20 00:14:17 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000149147074\/tCUlbcGZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000149147074\/tCUlbcGZ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663166419731894272\/tmMvmftT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663166419731894272\/tmMvmftT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228526084\/1446993417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:09 +0000 2015","id":663725518995501059,"id_str":"663725518995501059","text":"ela canta olhando pra seulgi to mal https:\/\/t.co\/4MFXmxE1nr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190080874,"id_str":"3190080874","name":"ingrid","screen_name":"seulggo","location":null,"url":null,"description":"love is 4walls","protected":false,"verified":false,"followers_count":198,"friends_count":164,"listed_count":2,"favourites_count":258,"statuses_count":25755,"created_at":"Tue Apr 21 09:09:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644416530608955392\/S1PFnQDy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644416530608955392\/S1PFnQDy.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662887573832994816\/eok9mjID_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662887573832994816\/eok9mjID_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190080874\/1446879778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663033594655301632,"id_str":"663033594655301632","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","url":"https:\/\/t.co\/4MFXmxE1nr","display_url":"pic.twitter.com\/4MFXmxE1nr","expanded_url":"http:\/\/twitter.com\/kib_9194\/status\/663033765887803392\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663033765887803392,"source_status_id_str":"663033765887803392","source_user_id":2901227814,"source_user_id_str":"2901227814"}]},"extended_entities":{"media":[{"id":663033594655301632,"id_str":"663033594655301632","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","url":"https:\/\/t.co\/4MFXmxE1nr","display_url":"pic.twitter.com\/4MFXmxE1nr","expanded_url":"http:\/\/twitter.com\/kib_9194\/status\/663033765887803392\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663033765887803392,"source_status_id_str":"663033765887803392","source_user_id":2901227814,"source_user_id_str":"2901227814","video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/240x240\/xZNO4tg97cpon3VR.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/pl\/XGLWQbZ4TLr1Jjo_.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/480x480\/PaDcyLGlaa4j4nnq.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/480x480\/PaDcyLGlaa4j4nnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/pl\/XGLWQbZ4TLr1Jjo_.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"seulggo","name":"ingrid","id":3190080874,"id_str":"3190080874","indices":[3,11]}],"symbols":[],"media":[{"id":663033594655301632,"id_str":"663033594655301632","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","url":"https:\/\/t.co\/4MFXmxE1nr","display_url":"pic.twitter.com\/4MFXmxE1nr","expanded_url":"http:\/\/twitter.com\/kib_9194\/status\/663033765887803392\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663033765887803392,"source_status_id_str":"663033765887803392","source_user_id":2901227814,"source_user_id_str":"2901227814"}]},"extended_entities":{"media":[{"id":663033594655301632,"id_str":"663033594655301632","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663033594655301632\/pu\/img\/zQB7NtCk7wEhVq7B.jpg","url":"https:\/\/t.co\/4MFXmxE1nr","display_url":"pic.twitter.com\/4MFXmxE1nr","expanded_url":"http:\/\/twitter.com\/kib_9194\/status\/663033765887803392\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663033765887803392,"source_status_id_str":"663033765887803392","source_user_id":2901227814,"source_user_id_str":"2901227814","video_info":{"aspect_ratio":[1,1],"duration_millis":15000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/240x240\/xZNO4tg97cpon3VR.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/pl\/XGLWQbZ4TLr1Jjo_.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/480x480\/PaDcyLGlaa4j4nnq.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/vid\/480x480\/PaDcyLGlaa4j4nnq.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663033594655301632\/pu\/pl\/XGLWQbZ4TLr1Jjo_.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942674063360,"id_str":"663727942674063360","text":"RT @Mistress_Faten: \u064a\u0627 \u0628\u062f\u0648\u0649 \u0645\u0627 \u062a\u0633\u062a\u062d\u0649 \u0627\u0646\u0627 \u0627\u062f\u0631\u0649 \u0627\u0646\u0643 \u062f\u064a\u0648\u062b \u0648 \u062a\u0639\u0634\u0642 \u0632\u0628 #\u0627\u0644\u0637\u0627\u063a\u064a\u0629 @ATTAGHIA2 \u0648 \u062a\u062c\u0644\u062e \u062a\u062a\u062e\u064a\u0644\u0647 \u0631\u0627\u0643\u0628 \u0645\u062d\u0627\u0631\u0645\u0643 \u0648 \u0647\u0627\u062a\u0643 \u0639\u0631\u0636\u0643. \u062a\u0639\u0627\u0644 \u062e\u0627\u0635 https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1332647150,"id_str":"1332647150","name":"\u062f\u064a\u0648\u062b #\u0627\u0644\u0637\u0627\u063a\u064a\u0629","screen_name":"aasaa00516666","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":973,"friends_count":964,"listed_count":2,"favourites_count":1936,"statuses_count":3805,"created_at":"Sat Apr 06 22:45:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487085834361778176\/zSuXYyva_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487085834361778176\/zSuXYyva_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:54:39 +0000 2015","id":663655935370489857,"id_str":"663655935370489857","text":"\u064a\u0627 \u0628\u062f\u0648\u0649 \u0645\u0627 \u062a\u0633\u062a\u062d\u0649 \u0627\u0646\u0627 \u0627\u062f\u0631\u0649 \u0627\u0646\u0643 \u062f\u064a\u0648\u062b \u0648 \u062a\u0639\u0634\u0642 \u0632\u0628 #\u0627\u0644\u0637\u0627\u063a\u064a\u0629 @ATTAGHIA2 \u0648 \u062a\u062c\u0644\u062e \u062a\u062a\u062e\u064a\u0644\u0647 \u0631\u0627\u0643\u0628 \u0645\u062d\u0627\u0631\u0645\u0643 \u0648 \u0647\u0627\u062a\u0643 \u0639\u0631\u0636\u0643. \u062a\u0639\u0627\u0644 \u062e\u0627\u0635 https:\/\/t.co\/MQeiQXmq1k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1892324762,"id_str":"1892324762","name":"\u0641\u0627\u062a\u0646 \u0627\u0644\u0639\u0646\u0632\u064a ","screen_name":"Mistress_Faten","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u0639\u0645\u062a\u0643\u0645 \u0648 \u062a\u0627\u062c \u0631\u0627\u0633\u0643\u0645 \u0641\u0627\u062a\u0646 \u0645\u062b\u0627\u0644 \u0627\u0644\u0632\u0648\u062c\u0629 \u0648 \u0623\u0644\u0623\u0645 \u0627\u0644\u0628\u062f\u0648\u064a\u0629 \u0648 \u0645\u0646 \u062d\u0631\u064a\u0645 #\u0627\u0644\u0637\u0627\u063a\u064a\u0629 \u200e\u200e\u200e\u200e@ATTAGHIA2 \u0646\u0627\u064a\u0643 \u0627\u0644\u0628\u062f\u0648 \u0648 \u0645\u0639\u0628\u0648\u062f \u0627\u0644\u0628\u062f\u0648\u064a\u0627\u062a","protected":false,"verified":false,"followers_count":6041,"friends_count":1078,"listed_count":8,"favourites_count":6594,"statuses_count":18220,"created_at":"Sun Sep 22 03:26:45 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644080654582444032\/hi3MqVYU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644080654582444032\/hi3MqVYU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1892324762\/1439698127","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":12,"entities":{"hashtags":[{"text":"\u0627\u0644\u0637\u0627\u063a\u064a\u0629","indices":[45,53]}],"urls":[],"user_mentions":[{"screen_name":"ATTAGHIA2","name":"#\u0627\u0644\u0637\u0627\u063a\u064a\u0629","id":1434897890,"id_str":"1434897890","indices":[54,64]}],"symbols":[],"media":[{"id":655024217449066499,"id_str":"655024217449066499","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":308,"h":352,"resize":"fit"},"small":{"w":308,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":308,"h":352,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"}]},"extended_entities":{"media":[{"id":655024217449066499,"id_str":"655024217449066499","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":308,"h":352,"resize":"fit"},"small":{"w":308,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":308,"h":352,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"},{"id":655024220196376580,"id_str":"655024220196376580","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDswVEAQcasL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDswVEAQcasL.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0637\u0627\u063a\u064a\u0629","indices":[65,73]}],"urls":[],"user_mentions":[{"screen_name":"Mistress_Faten","name":"\u0641\u0627\u062a\u0646 \u0627\u0644\u0639\u0646\u0632\u064a ","id":1892324762,"id_str":"1892324762","indices":[3,18]},{"screen_name":"ATTAGHIA2","name":"#\u0627\u0644\u0637\u0627\u063a\u064a\u0629","id":1434897890,"id_str":"1434897890","indices":[74,84]}],"symbols":[],"media":[{"id":655024217449066499,"id_str":"655024217449066499","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":308,"h":352,"resize":"fit"},"small":{"w":308,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":308,"h":352,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"}]},"extended_entities":{"media":[{"id":655024217449066499,"id_str":"655024217449066499","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDihUcAMe6lg.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":308,"h":352,"resize":"fit"},"small":{"w":308,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":308,"h":352,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"},{"id":655024220196376580,"id_str":"655024220196376580","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRcdDswVEAQcasL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRcdDswVEAQcasL.jpg","url":"https:\/\/t.co\/MQeiQXmq1k","display_url":"pic.twitter.com\/MQeiQXmq1k","expanded_url":"http:\/\/twitter.com\/Mistress_Faten\/status\/655024240450781184\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":655024240450781184,"source_status_id_str":"655024240450781184","source_user_id":1892324762,"source_user_id_str":"1892324762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047659"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942669721600,"id_str":"663727942669721600","text":"\u60aa\u306e\u652f\u914d\u4eba \u30d6\u30ea\u30fc\u30c9\u306e\u6d77\u7363\u30b5\u30fc\u30ab\u30b9\u56e3!\n\u260511\/3(12:00)\uff5e11\/17(11:59)\u671f\u9593\u9650\u5b9a\u2605\n\u64cd\u3089\u308c\u305f\u6d77\u7363\u305f\u3061\u3092\u9b54\u306e\u624b\u304b\u3089\u6551\u3044\u51fa\u305b\uff01\nhttps:\/\/t.co\/h448WaZSR4\u3000#\u30c8\u30ec\u30af\u30eb https:\/\/t.co\/SMx190vV2N","source":"\u003ca href=\"http:\/\/www.bandaigames.channel.or.jp\/list\/one_main\/tc\/\" rel=\"nofollow\"\u003eONE PIECE \u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4113486734,"id_str":"4113486734","name":"\u5c0f\u8c46","screen_name":"mkmkmmazk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":24,"created_at":"Tue Nov 03 13:57:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661750522785886208\/QDY_-hkY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661750522785886208\/QDY_-hkY_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30c8\u30ec\u30af\u30eb","indices":[95,100]}],"urls":[{"url":"https:\/\/t.co\/h448WaZSR4","expanded_url":"http:\/\/wpp.jp\/optw\/","display_url":"wpp.jp\/optw\/","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663727942476808192,"id_str":"663727942476808192","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDA7UwAACvZU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDA7UwAACvZU.png","url":"https:\/\/t.co\/SMx190vV2N","display_url":"pic.twitter.com\/SMx190vV2N","expanded_url":"http:\/\/twitter.com\/mkmkmmazk\/status\/663727942669721600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":480,"h":204,"resize":"fit"},"medium":{"w":480,"h":204,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727942476808192,"id_str":"663727942476808192","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDA7UwAACvZU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDA7UwAACvZU.png","url":"https:\/\/t.co\/SMx190vV2N","display_url":"pic.twitter.com\/SMx190vV2N","expanded_url":"http:\/\/twitter.com\/mkmkmmazk\/status\/663727942669721600\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":144,"resize":"fit"},"large":{"w":480,"h":204,"resize":"fit"},"medium":{"w":480,"h":204,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080047658"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942665527296,"id_str":"663727942665527296","text":"New Resell eBooks, Trivia & Thank You to All Vets\u00a011-9-15 https:\/\/t.co\/SiHvwpN6xY https:\/\/t.co\/C2w02xLCUD","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15202413,"id_str":"15202413","name":"Terri Seymour","screen_name":"SeymourProducts","location":null,"url":"http:\/\/www.SeymourProducts.com","description":"We can help you make your own success!","protected":false,"verified":false,"followers_count":442,"friends_count":263,"listed_count":28,"favourites_count":0,"statuses_count":1856,"created_at":"Mon Jun 23 01:05:38 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659157425547665408\/8DRzPI9n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659157425547665408\/8DRzPI9n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15202413\/1445990129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SiHvwpN6xY","expanded_url":"http:\/\/www.seymourproducts.com\/new-resell-ebooks-trivia-thank-you-to-all-vets-11-9-15","display_url":"seymourproducts.com\/new-resell-ebo\u2026","indices":[62,85]}],"user_mentions":[],"symbols":[],"media":[{"id":663727941352734720,"id_str":"663727941352734720","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC8vUwAACfCM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC8vUwAACfCM.jpg","url":"https:\/\/t.co\/C2w02xLCUD","display_url":"pic.twitter.com\/C2w02xLCUD","expanded_url":"http:\/\/twitter.com\/SeymourProducts\/status\/663727942665527296\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727941352734720,"id_str":"663727941352734720","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC8vUwAACfCM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC8vUwAACfCM.jpg","url":"https:\/\/t.co\/C2w02xLCUD","display_url":"pic.twitter.com\/C2w02xLCUD","expanded_url":"http:\/\/twitter.com\/SeymourProducts\/status\/663727942665527296\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080047657"} +{"delete":{"status":{"id":638917854364962817,"id_str":"638917854364962817","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080047970"}} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942695051264,"id_str":"663727942695051264","text":"\u0641\u064a\u062f\u064a\u0648 \u0635\u0627\u062f\u0645 \u0644\u0639\u0645\u0644\u064a\u0629 \u0625\u0646\u0642\u0627\u0630 \u0623\u0633\u0631\u0629 \u0645\u0635\u0631\u064a\u0629 \u0645\u0646 \u0627\u0644\u0633\u064a\u0648\u0644 \u0641\u064a \u0627 https:\/\/t.co\/tomJVFz9Ej https:\/\/t.co\/ojXonMyiIO","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630529805,"id_str":"630529805","name":"\u0645\u0632\u062f\u0648\u062c","screen_name":"mozdwj","location":null,"url":null,"description":"\u0639\u0632\u064a\u0632\u064a \u0627\u0644\u0645\u0648\u0627\u0637\u0646 \u0627\u0644\u062e\u0644\u064a\u062c\u064a \u0647\u0644 \u062a\u0639\u0644\u0645 \u0627\u0646 \u0639\u062c\u0632\u0646\u0627 \u0648\u0630\u0644\u0646\u0627 \u0648\u0647\u0648\u0627\u0646\u0646\u0627 \u0628\u064a\u0646 \u0627\u0644\u0627\u0645\u0645 \u0647\u0648 \u062a\u0641\u0631\u0642\u0646\u0627 \u0627\u0644\u0649 \u062f\u0648\u064a\u0644\u0627\u062a \u0635\u063a\u064a\u0631\u0647 \u0644\u0627\u064a\u062d\u0633\u0628 \u0644\u0647\u0627 \u062d\u0633\u0627\u0628 \n\u0627\u0646 \u0643\u0646\u062a \u062a\u0628\u062d\u062b \u0639\u0646 \u0627\u0644\u0639\u0632\u0647 \u0648\u0627\u0644\u0643\u0631\u0627\u0645\u0647 \u0641\u0647\u064a \u0641\u064a \u0627\u062a\u062d\u0627\u062f \u062f\u0648\u0644 \u0627\u0644\u062e\u0644\u064a\u062c","protected":false,"verified":false,"followers_count":91908,"friends_count":84660,"listed_count":83,"favourites_count":2234,"statuses_count":1614028,"created_at":"Sun Jul 08 21:19:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601472186\/s0lslsqzyfqxj13vc5ga.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601472186\/s0lslsqzyfqxj13vc5ga.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611239482797350912\/XjJnB59l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611239482797350912\/XjJnB59l_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tomJVFz9Ej","expanded_url":"http:\/\/www.wasm1.com\/31306?utm_source=ReviveOldPost&utm_medium=social&utm_campaign=ReviveOldPost","display_url":"wasm1.com\/31306?utm_sour\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[],"media":[{"id":663727939746443264,"id_str":"663727939746443264","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC2wWsAAh2PO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC2wWsAAh2PO.jpg","url":"https:\/\/t.co\/ojXonMyiIO","display_url":"pic.twitter.com\/ojXonMyiIO","expanded_url":"http:\/\/twitter.com\/mozdwj\/status\/663727942695051264\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":211,"resize":"fit"},"medium":{"w":400,"h":211,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727939746443264,"id_str":"663727939746443264","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC2wWsAAh2PO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC2wWsAAh2PO.jpg","url":"https:\/\/t.co\/ojXonMyiIO","display_url":"pic.twitter.com\/ojXonMyiIO","expanded_url":"http:\/\/twitter.com\/mozdwj\/status\/663727942695051264\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":211,"resize":"fit"},"medium":{"w":400,"h":211,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080047664"} +{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727942686625792,"id_str":"663727942686625792","text":"#porn #gifs #sexgifs #sexy #porngifs #sex https:\/\/t.co\/qez8EVE23U","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2718136328,"id_str":"2718136328","name":"Porn Institute","screen_name":"porn_institute","location":null,"url":null,"description":"Just porn!","protected":false,"verified":false,"followers_count":5105,"friends_count":0,"listed_count":37,"favourites_count":2,"statuses_count":112297,"created_at":"Fri Aug 08 22:45:30 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"BDB2B2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497876921296752640\/A3ZwkJIS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497876921296752640\/A3ZwkJIS_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"porn","indices":[0,5]},{"text":"gifs","indices":[6,11]},{"text":"sexgifs","indices":[12,20]},{"text":"sexy","indices":[21,26]},{"text":"porngifs","indices":[27,36]},{"text":"sex","indices":[37,41]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727942204309504,"id_str":"663727942204309504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC_6WwAAeBmy.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC_6WwAAeBmy.png","url":"https:\/\/t.co\/qez8EVE23U","display_url":"pic.twitter.com\/qez8EVE23U","expanded_url":"http:\/\/twitter.com\/porn_institute\/status\/663727942686625792\/photo\/1","type":"photo","sizes":{"large":{"w":323,"h":182,"resize":"fit"},"medium":{"w":323,"h":182,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":323,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727942204309504,"id_str":"663727942204309504","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC_6WwAAeBmy.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC_6WwAAeBmy.png","url":"https:\/\/t.co\/qez8EVE23U","display_url":"pic.twitter.com\/qez8EVE23U","expanded_url":"http:\/\/twitter.com\/porn_institute\/status\/663727942686625792\/photo\/1","type":"animated_gif","sizes":{"large":{"w":323,"h":182,"resize":"fit"},"medium":{"w":323,"h":182,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":323,"h":182,"resize":"fit"}},"video_info":{"aspect_ratio":[162,91],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJC_6WwAAeBmy.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447080047662"} +{"delete":{"status":{"id":660799328642985984,"id_str":"660799328642985984","user_id":890106925,"user_id_str":"890106925"},"timestamp_ms":"1447080048024"}} +{"delete":{"status":{"id":409433058333708288,"id_str":"409433058333708288","user_id":243660634,"user_id_str":"243660634"},"timestamp_ms":"1447080048349"}} +{"delete":{"status":{"id":663384970254139392,"id_str":"663384970254139392","user_id":4100603478,"user_id_str":"4100603478"},"timestamp_ms":"1447080048646"}} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868375552,"id_str":"663727946868375552","text":"RT @limaaray: Muito estranho quando voc\u00ea olha pro lado e a pessoa t\u00e1 te olhando mkkkkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310375195,"id_str":"310375195","name":"Sr. Pretin","screen_name":"Manopretin","location":"Rio de Janeiro","url":"https:\/\/www.facebook.com\/manopretin","description":"snap: manopretin\nhttp:\/\/sr-pretin.tumblr.com\nhttp:\/\/instagram.com\/mpretin\/\nWhatsapp: +5521975873666","protected":false,"verified":false,"followers_count":285,"friends_count":236,"listed_count":1,"favourites_count":1708,"statuses_count":18049,"created_at":"Fri Jun 03 16:54:28 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586913169127247872\/4oonXS5Q.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586913169127247872\/4oonXS5Q.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663639205189451776\/x2DbvQH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663639205189451776\/x2DbvQH3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310375195\/1446869293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:59 +0000 2015","id":663716415309000704,"id_str":"663716415309000704","text":"Muito estranho quando voc\u00ea olha pro lado e a pessoa t\u00e1 te olhando mkkkkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1922217330,"id_str":"1922217330","name":"1%","screen_name":"limaaray","location":"021","url":"http:\/\/instagram.com\/limaraynara","description":"@vascodagama \u2661","protected":false,"verified":false,"followers_count":521,"friends_count":311,"listed_count":0,"favourites_count":6972,"statuses_count":22922,"created_at":"Tue Oct 01 04:34:52 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434892096424529920\/wE_-O8N6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434892096424529920\/wE_-O8N6.png","profile_background_tile":false,"profile_link_color":"FF66C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663378424812187649\/oyVe6kVU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663378424812187649\/oyVe6kVU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1922217330\/1446764037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"limaaray","name":"1%","id":1922217330,"id_str":"1922217330","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872578048,"id_str":"663727946872578048","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787117197,"id_str":"2787117197","name":"abilay","screen_name":"abilay11974940","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":77,"listed_count":0,"favourites_count":221,"statuses_count":319,"created_at":"Sat Sep 27 13:28:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516294532128710656\/_LfcGGJ__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516294532128710656\/_LfcGGJ__normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880958468,"id_str":"663727946880958468","text":"\u0637\u0641\u0634\u062a \u0645\u0646 \u0646\u0641\u0633 \u0627\u0644\u0634\u0639\u0648\u0631 \u0627\u062d\u0633\u0647 \u0643\u0644 \u064a\u0648\u0645 \u0648\u0627\u0646\u063a\u0628\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760380518,"id_str":"760380518","name":"\u0627\u0644\u0639\u064f\u0645\u0640\u0631\u064a.","screen_name":"__itzrw","location":"Jeddah, Makkah Al Mukarrama","url":null,"description":"\u0661\u0660\/\u0661\u0660.","protected":false,"verified":false,"followers_count":1401,"friends_count":18,"listed_count":5,"favourites_count":4483,"statuses_count":11823,"created_at":"Wed Aug 15 23:29:00 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660441641879248896\/E13BxKMD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660441641879248896\/E13BxKMD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760380518\/1445614605","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"000799c66e428a87","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/000799c66e428a87.json","place_type":"city","name":"\u062c\u062f\u0629","full_name":"\u062c\u062f\u0629, \u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629","country_code":"SA","country":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","bounding_box":{"type":"Polygon","coordinates":[[[38.929659,20.913775],[38.929659,22.257646],[39.578598,22.257646],[39.578598,20.913775]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880929792,"id_str":"663727946880929792","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788268273,"id_str":"2788268273","name":"abiru","screen_name":"abiru27745070","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":45,"listed_count":0,"favourites_count":209,"statuses_count":301,"created_at":"Sun Sep 28 00:34:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516305895395831808\/sUJCS5vv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516305895395831808\/sUJCS5vv_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876764160,"id_str":"663727946876764160","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792468212,"id_str":"2792468212","name":"alten \u00f6nc\u00fc","screen_name":"altennc5","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":214,"friends_count":42,"listed_count":0,"favourites_count":191,"statuses_count":309,"created_at":"Mon Sep 29 18:37:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893549568,"id_str":"663727946893549568","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792374282,"id_str":"2792374282","name":"abidin elmali","screen_name":"ElmaliAbidin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":340,"friends_count":49,"listed_count":0,"favourites_count":206,"statuses_count":358,"created_at":"Mon Sep 29 18:12:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516866256863891457\/rH2t0S2M_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516866256863891457\/rH2t0S2M_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876788736,"id_str":"663727946876788736","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792333013,"id_str":"2792333013","name":"akdoru kitap\u00e7i","screen_name":"KitapciAkdoru","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":354,"friends_count":51,"listed_count":0,"favourites_count":204,"statuses_count":323,"created_at":"Mon Sep 29 18:16:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516867516556001281\/s-HCRhFz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516867516556001281\/s-HCRhFz_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868367360,"id_str":"663727946868367360","text":"RT @rtyourcharacter: caleb prior || divergent https:\/\/t.co\/iA9S6xISPP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1546201896,"id_str":"1546201896","name":"ainhoa coox.\u2022\u00b0\u2022.","screen_name":"cthxelgort","location":"Beacon Hills Shawn\u221a","url":"https:\/\/twitter.com\/Calum5SOS\/status\/503035633296998400?s=09","description":"The only thing you should know about me is that 5SOS saved my life. \u00b0\u2022.Soulmate.\u2022\u00b0 \n Two wrongs make a right.","protected":false,"verified":false,"followers_count":2154,"friends_count":1103,"listed_count":16,"favourites_count":13628,"statuses_count":28031,"created_at":"Tue Jun 25 17:16:08 +0000 2013","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620209571823513600\/5Ai5qwA_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620209571823513600\/5Ai5qwA_.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663370856563765248\/O2OoQfJB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663370856563765248\/O2OoQfJB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1546201896\/1446733720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 02:24:35 +0000 2015","id":660643569175289856,"id_str":"660643569175289856","text":"caleb prior || divergent https:\/\/t.co\/iA9S6xISPP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322347760,"id_str":"3322347760","name":"your fav character","screen_name":"rtyourcharacter","location":"unf=unf","url":null,"description":"REQUESTS CLOSED","protected":false,"verified":false,"followers_count":17383,"friends_count":17213,"listed_count":26,"favourites_count":17904,"statuses_count":816,"created_at":"Sat Jun 13 03:55:16 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663020118780289024\/GCN1OFMC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663020118780289024\/GCN1OFMC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322347760\/1446910683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":710,"favorite_count":501,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660643561692651520,"id_str":"660643561692651520","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660643561692651520,"id_str":"660643561692651520","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}}},{"id":660643562720243712,"id_str":"660643562720243712","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0e8WsAAiLD6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0e8WsAAiLD6.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rtyourcharacter","name":"your fav character","id":3322347760,"id_str":"3322347760","indices":[3,19]}],"symbols":[],"media":[{"id":660643561692651520,"id_str":"660643561692651520","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}},"source_status_id":660643569175289856,"source_status_id_str":"660643569175289856","source_user_id":3322347760,"source_user_id_str":"3322347760"}]},"extended_entities":{"media":[{"id":660643561692651520,"id_str":"660643561692651520","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0bHW4AAxpoG.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}},"source_status_id":660643569175289856,"source_status_id_str":"660643569175289856","source_user_id":3322347760,"source_user_id_str":"3322347760"},{"id":660643562720243712,"id_str":"660643562720243712","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSsT0e8WsAAiLD6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSsT0e8WsAAiLD6.jpg","url":"https:\/\/t.co\/iA9S6xISPP","display_url":"pic.twitter.com\/iA9S6xISPP","expanded_url":"http:\/\/twitter.com\/rtyourcharacter\/status\/660643569175289856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}},"source_status_id":660643569175289856,"source_status_id_str":"660643569175289856","source_user_id":3322347760,"source_user_id_str":"3322347760"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880983040,"id_str":"663727946880983040","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2742623929,"id_str":"2742623929","name":"T\u00fclay Kavak\u00e7\u0131","screen_name":"TulayKavakci","location":"Bursa","url":null,"description":"Bir g\u00fcn herkes Galatasarayl\u0131 olacak k\u00f6t\u00fc yola d\u00fc\u015fecek, akl\u0131 ba\u015f\u0131na gelecek 364 g\u00fcn Fenerbah\u00e7e'ye ge\u00e7ecek...","protected":false,"verified":false,"followers_count":341,"friends_count":284,"listed_count":0,"favourites_count":223,"statuses_count":2408,"created_at":"Mon Aug 18 17:47:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501425264249679873\/BXA-g1E7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501425264249679873\/BXA-g1E7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2742623929\/1408384081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880954369,"id_str":"663727946880954369","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2747096083,"id_str":"2747096083","name":"E\u015fref Karda\u015f","screen_name":"EsrefKardass","location":"Edremit","url":null,"description":"S\u00f6z a\u011fz\u0131n\u0131zdan \u00e7\u0131kt\u0131m\u0131 size hakim olur. S\u00f6ylemedik\u00e7e siz ona hakim olursunuz.","protected":false,"verified":false,"followers_count":419,"friends_count":280,"listed_count":0,"favourites_count":231,"statuses_count":2415,"created_at":"Tue Aug 19 22:50:13 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501863967245864960\/-slNjLiF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501863967245864960\/-slNjLiF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2747096083\/1408488675","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868334592,"id_str":"663727946868334592","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745506054,"id_str":"2745506054","name":"Mehtap Sevin\u00e7","screen_name":"MehtapSevincc","location":"Antalya","url":null,"description":"Kimyager , Telfilerle U\u011fra\u015f\u0131yor","protected":false,"verified":false,"followers_count":413,"friends_count":72,"listed_count":0,"favourites_count":186,"statuses_count":2349,"created_at":"Tue Aug 19 16:22:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501766307889442816\/kBYTOcyI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501766307889442816\/kBYTOcyI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745506054\/1408465407","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880958464,"id_str":"663727946880958464","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746994557,"id_str":"2746994557","name":"Aslan Bak\u0131r","screen_name":"AslanBakirr","location":"Konya","url":null,"description":"Harikalar Diyar\u0131ndaki tek Ger\u00e7e\u011fim En Harika Bebe\u011fimsin..","protected":false,"verified":false,"followers_count":339,"friends_count":66,"listed_count":0,"favourites_count":213,"statuses_count":2346,"created_at":"Tue Aug 19 22:22:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501856976389685248\/Fsr4tqnm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501856976389685248\/Fsr4tqnm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2746994557\/1408487017","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893512704,"id_str":"663727946893512704","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874318717,"id_str":"2874318717","name":"ikra Ak","screen_name":"denizeruslu627","location":"istanbul","url":null,"description":"benim hayat\u0131m twitter","protected":false,"verified":false,"followers_count":1420,"friends_count":1606,"listed_count":2,"favourites_count":240,"statuses_count":3078,"created_at":"Wed Nov 12 22:12:38 +0000 2014","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578615403880009729\/DKI-UlUB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578615403880009729\/DKI-UlUB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874318717\/1445769736","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893557760,"id_str":"663727946893557760","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787164578,"id_str":"2787164578","name":"acer","screen_name":"acer35080313","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":67,"listed_count":0,"favourites_count":208,"statuses_count":316,"created_at":"Sat Sep 27 13:52:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516265123652964352\/DxQXCVK9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516265123652964352\/DxQXCVK9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946897625089,"id_str":"663727946897625089","text":"\u98a8\u5442\u5165\u3063\u3066\u3054\u307e\u304b\u305d\u3046\u98df\u6b32 \u3046\u308b\u3068\u3089\u305d\u3045","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2564657382,"id_str":"2564657382","name":"jacco poki","screen_name":"jaccooooo","location":"\u3057\u3085\u3093\u306e\u3075\u306b\u3083\u3075\u3050\u308a","url":"http:\/\/pixiv.me\/yodayoda44","description":"\u5fa1\u4eca \u30b6\u30d7\u30c4\u30a7 \u7530\u6210 \u3059\u304d \u53d6\u8aac\u25b6\ufe0e\uff1ahttp:\/\/twpf.jp\/jaccooooo \u3059\u3051\u3079\u57a2\u25b6\ufe0e\uff1a@mobujaccooooo \u6210\u4eba\u7d42\u4e86BBA \u30db\u30e2\u3070\u304b\u308a\u6ce8\u610f\u3067\u3059\u3088","protected":false,"verified":false,"followers_count":224,"friends_count":205,"listed_count":8,"favourites_count":3559,"statuses_count":18326,"created_at":"Fri Jun 13 05:14:29 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603807063404216321\/rNGTIYqp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603807063404216321\/rNGTIYqp.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663675064286470145\/G7YDvdkn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663675064286470145\/G7YDvdkn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2564657382\/1441698745","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048666"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868367361,"id_str":"663727946868367361","text":"RT @ZigZagSwag: RT if you get it \ud83d\ude02\ud83d\ude02 http:\/\/t.co\/hnuLJUB54K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127896264,"id_str":"127896264","name":"Acid\u25ab\ufe0f","screen_name":"gispydanger_","location":null,"url":null,"description":"\u2022 beautifully flawed ~ \/\/ sissy: @DominiShortCake \u2764\ufe0f","protected":false,"verified":false,"followers_count":2224,"friends_count":1876,"listed_count":15,"favourites_count":4691,"statuses_count":96405,"created_at":"Tue Mar 30 15:17:33 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000109716518\/644fac641c970ac70e9fc6f31c170618.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000109716518\/644fac641c970ac70e9fc6f31c170618.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657436804048625664\/ZPxCPvLe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657436804048625664\/ZPxCPvLe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127896264\/1446176558","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jan 08 02:04:34 +0000 2015","id":553009336432480259,"id_str":"553009336432480259","text":"RT if you get it \ud83d\ude02\ud83d\ude02 http:\/\/t.co\/hnuLJUB54K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":307758523,"id_str":"307758523","name":"\u303d\ufe0fDr. ZiG\u26a1\ufe0f","screen_name":"ZigZagSwag","location":"Downtown Atlanta, GA","url":"http:\/\/AlmightyZiG.tumblr.com","description":"Medical Asst \/ HHA | I like Nutella & Rap Music | Aspiring Doctor (PA) | Premature millionaire | Creator of @Youandbae | SC\/IG AlmightyZiG","protected":false,"verified":false,"followers_count":316419,"friends_count":195660,"listed_count":421,"favourites_count":585,"statuses_count":59583,"created_at":"Mon May 30 07:19:39 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437802467292499968\/mX54Wbmy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437802467292499968\/mX54Wbmy.jpeg","profile_background_tile":true,"profile_link_color":"8A0808","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657075999195136\/2fdlfQPU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657075999195136\/2fdlfQPU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307758523\/1446713836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22794,"favorite_count":8023,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":553009325895995392,"id_str":"553009325895995392","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":553009325895995392,"id_str":"553009325895995392","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}},{"id":553009328500658176,"id_str":"553009328500658176","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDebCUAALsZW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDebCUAALsZW.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":701,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":410,"resize":"fit"}}},{"id":553009328509038592,"id_str":"553009328509038592","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDedCMAARo-B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDedCMAARo-B.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}},{"id":553009328521621506,"id_str":"553009328521621506","indices":[20,42],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDegCMAIAU8G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDegCMAIAU8G.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":270,"resize":"fit"},"large":{"w":340,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":270,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ZigZagSwag","name":"\u303d\ufe0fDr. ZiG\u26a1\ufe0f","id":307758523,"id_str":"307758523","indices":[3,14]}],"symbols":[],"media":[{"id":553009325895995392,"id_str":"553009325895995392","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":553009336432480259,"source_status_id_str":"553009336432480259","source_user_id":307758523,"source_user_id_str":"307758523"}]},"extended_entities":{"media":[{"id":553009325895995392,"id_str":"553009325895995392","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDUuCUAAt7YD.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":553009336432480259,"source_status_id_str":"553009336432480259","source_user_id":307758523,"source_user_id_str":"307758523"},{"id":553009328500658176,"id_str":"553009328500658176","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDebCUAALsZW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDebCUAALsZW.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":701,"resize":"fit"},"small":{"w":340,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":410,"resize":"fit"}},"source_status_id":553009336432480259,"source_status_id_str":"553009336432480259","source_user_id":307758523,"source_user_id_str":"307758523"},{"id":553009328509038592,"id_str":"553009328509038592","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDedCMAARo-B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDedCMAARo-B.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":730,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":553009336432480259,"source_status_id_str":"553009336432480259","source_user_id":307758523,"source_user_id_str":"307758523"},{"id":553009328521621506,"id_str":"553009328521621506","indices":[36,58],"media_url":"http:\/\/pbs.twimg.com\/media\/B6yvDegCMAIAU8G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6yvDegCMAIAU8G.jpg","url":"http:\/\/t.co\/hnuLJUB54K","display_url":"pic.twitter.com\/hnuLJUB54K","expanded_url":"http:\/\/twitter.com\/ZigZagSwag\/status\/553009336432480259\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":270,"resize":"fit"},"large":{"w":340,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":270,"resize":"fit"}},"source_status_id":553009336432480259,"source_status_id_str":"553009336432480259","source_user_id":307758523,"source_user_id_str":"307758523"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872414208,"id_str":"663727946872414208","text":"\u3081\u3063\u3061\u3083\u30c9\u30e4\u9854\u3067\u30aa\u30a4\u30ab\u30ef\u54a5\u3048\u3066\u308b\u3088\u3046\u306b\u898b\u3048\u307e\u3059\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1399190412,"id_str":"1399190412","name":"\u304a\u3044\u304b\u308f","screen_name":"maa_0124","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=6202749","description":"\u305d\u3046\u3067\u3059\u30a8\u30c3\u30af\u30b9\u306b\u54a5\u3048\u3089\u308c\u3066\u308b\u30aa\u30a4\u30ab\u30ef\u3067\u3059\u25c7\u5200\u57a2\u2192@oi_river40","protected":false,"verified":false,"followers_count":924,"friends_count":202,"listed_count":29,"favourites_count":10864,"statuses_count":31542,"created_at":"Fri May 03 08:41:42 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725858553630720\/bmHKBqKt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725858553630720\/bmHKBqKt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1399190412\/1445661249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859941889,"id_str":"663727946859941889","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787138335,"id_str":"2787138335","name":"acarturk","screen_name":"acarturk10","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":82,"listed_count":0,"favourites_count":202,"statuses_count":339,"created_at":"Sat Sep 27 13:50:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516265987490848768\/q53WmNCT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516265987490848768\/q53WmNCT_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893398017,"id_str":"663727946893398017","text":"\u3044\u3044\u52a0\u6e1b\u98a8\u5442\u306b\u5165\u3089\u306d\u3070( \u02d8\u03c9\u02d8 )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310020028,"id_str":"2310020028","name":"\u307f\u3053\u3068","screen_name":"machine717","location":"\u30ef\u30a4\u30ea\u30fc\u57ce\u306e\u3069\u3053\u304b\u306e\u9699\u9593","url":null,"description":"\u3042\u305f\u3057 \u3042\u305f\u3057 \u306f\u305f\u3061 \u3075\u308a\u305d\u3067\u30fc\u3057\u3087\u3093\u3002 \u672c\u5bb6\u30ed\u30c3\u30af\u30de\u30f3\u7a74\u306b\u843d\u3061\u307e\u3057\u305f \u30af\u30a4\u30c3\u30af\u304c\u30a4\u30b1\u30e1\u30f3\u3067\u8f9b\u3044\u20262nd 3rd\u30ca\u30f3\u30d0\u30fc\u30ba\u3082\u3002\u9032\u6483\u306e\u5de8\u4eba \u3002NARUTO \u3002 \u4e00\u8aad\u304a\u9858\u3044\u3057\u307e\u3059http:\/\/twpf.jp\/machine717","protected":false,"verified":false,"followers_count":215,"friends_count":131,"listed_count":9,"favourites_count":7375,"statuses_count":6597,"created_at":"Sat Jan 25 13:17:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661199650334990336\/yI0oz0Ws_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661199650334990336\/yI0oz0Ws_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310020028\/1442357846","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880954368,"id_str":"663727946880954368","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748953293,"id_str":"2748953293","name":"Sezgin K\u0131l","screen_name":"sezginkil","location":"Konya","url":null,"description":"\u201cHakiki arkada\u015fl\u0131k s\u0131hhatten farks\u0131zd\u0131r, k\u0131ymeti ancak elden gittikten sonra anla\u015f\u0131l\u0131r.\u201d","protected":false,"verified":false,"followers_count":334,"friends_count":243,"listed_count":0,"favourites_count":212,"statuses_count":2398,"created_at":"Wed Aug 20 12:47:14 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502074967194755072\/hGO6XXKN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502074967194755072\/hGO6XXKN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2748953293\/1408538983","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872541184,"id_str":"663727946872541184","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746959354,"id_str":"2746959354","name":"Leyla Hamamc\u0131","screen_name":"LeylaHamamci","location":"\u0130stanbul","url":null,"description":"D\u00fc\u015f\u00fcn\u00fcyorumda d\u00fc\u015f\u00fcncelerin en g\u00fczeli senin beni d\u00fc\u015f\u00fcn\u00fcp d\u00fc\u015f\u00fcnmedi\u011fini d\u00fc\u015f\u00fcn\u00fcrken d\u00fc\u015f\u00fcnd\u00fc\u011f\u00fcn\u00fc d\u00fc\u015f\u00fcnmek olsa gerek diye d\u00fc\u015f\u00fcn\u00fcyorum.","protected":false,"verified":false,"followers_count":347,"friends_count":276,"listed_count":0,"favourites_count":212,"statuses_count":2424,"created_at":"Tue Aug 19 22:28:52 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501860184843485184\/OND4hDRg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501860184843485184\/OND4hDRg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2746959354\/1408487780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876780544,"id_str":"663727946876780544","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2742405241,"id_str":"2742405241","name":"Nergiz Atalay","screen_name":"NergizAtalayy","location":"\u0130stanbul","url":null,"description":"Bir g\u00fcn herkes Fenerbah\u00e7eli olmas\u0131n... B\u0131rak\u0131n da o \u015feref bize kals\u0131n...","protected":false,"verified":false,"followers_count":361,"friends_count":292,"listed_count":0,"favourites_count":220,"statuses_count":2423,"created_at":"Mon Aug 18 16:20:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501403384767713280\/42hJ6_7n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501403384767713280\/42hJ6_7n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2742405241\/1408378868","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859941888,"id_str":"663727946859941888","text":"\u0397\u03bfw do you find this idea? Temporary tattoos to wear in your hair ! Available now! #sioou #ekaterini... https:\/\/t.co\/Db2tuTgGLp","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262703403,"id_str":"262703403","name":"EKATERINI Design","screen_name":"EKATERINIDesign","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":34,"friends_count":28,"listed_count":1,"favourites_count":0,"statuses_count":688,"created_at":"Tue Mar 08 15:49:44 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000831843790\/1970f98a32506310ece909d0a91eaf7d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000831843790\/1970f98a32506310ece909d0a91eaf7d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sioou","indices":[84,90]},{"text":"ekaterini","indices":[92,102]}],"urls":[{"url":"https:\/\/t.co\/Db2tuTgGLp","expanded_url":"http:\/\/fb.me\/2iXoVa6Ey","display_url":"fb.me\/2iXoVa6Ey","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946864152576,"id_str":"663727946864152576","text":"An IPv4 visitor from Ukraine pinged an IPv4 device in France using https:\/\/t.co\/6S1w5G1ULC New real-time Ajax #IPv4 ping6 tool","source":"\u003ca href=\"http:\/\/www.mebsd.com\" rel=\"nofollow\"\u003eIPv4 IPv6 ping traceroute\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417742748,"id_str":"417742748","name":"mebsd.com","screen_name":"mebsdcom","location":"GB","url":"http:\/\/www.mebsd.com","description":"Me, BSD is an online tool kit and reference manual for system administrators, network engineers, web designers or just any one who finds it useful to them.","protected":false,"verified":false,"followers_count":40,"friends_count":24,"listed_count":13,"favourites_count":3,"statuses_count":46636,"created_at":"Mon Nov 21 09:52:34 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000059693465\/fb65ea0ee1a3a912ce712578dbb6226e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000059693465\/fb65ea0ee1a3a912ce712578dbb6226e_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IPv4","indices":[110,115]}],"urls":[{"url":"https:\/\/t.co\/6S1w5G1ULC","expanded_url":"http:\/\/bit.ly\/vfZidP","display_url":"bit.ly\/vfZidP","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048658"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876743680,"id_str":"663727946876743680","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788297090,"id_str":"2788297090","name":"abidin","screen_name":"abidin34519748","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":42,"listed_count":0,"favourites_count":193,"statuses_count":1222,"created_at":"Sun Sep 28 00:36:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516346198723014656\/NuKK7C-j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516346198723014656\/NuKK7C-j_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859872261,"id_str":"663727946859872261","text":"\u79c1\u306eAKB\u5165\u308b\u524d\u306e\u304a\u3057\u3081\u3093\u3055\u3093\u306f\n\u4f50\u85e4\u3059\u307f\u308c\u3055\u3093\u3067\u3059\u3063\u2661\u2661\u2661\u2661\n\n\u9854\u304c\u597d\u307f\u3067\u3059\u3002\u2661\n\n\u597d\u304d\u3067\u3059\u3002\u2661\u2661","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2254592587,"id_str":"2254592587","name":"\u307f\u3064\u304dbot","screen_name":"maeda_mitsukl","location":null,"url":null,"description":"\u307f\u3093\u306a\u306e\u524d\u7530\u7f8e\u6708\u3002","protected":false,"verified":false,"followers_count":288,"friends_count":209,"listed_count":2,"favourites_count":25,"statuses_count":90665,"created_at":"Fri Dec 20 06:35:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC8AB0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577725701756882944\/NemTLjjh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577725701756882944\/NemTLjjh.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577725864529428480\/AowPloPr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577725864529428480\/AowPloPr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2254592587\/1413740439","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876719104,"id_str":"663727946876719104","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787099807,"id_str":"2787099807","name":"ablak","screen_name":"ablak29798260","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":80,"listed_count":0,"favourites_count":228,"statuses_count":354,"created_at":"Sat Sep 27 13:34:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516280039680131072\/dhfqcP2A_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516280039680131072\/dhfqcP2A_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872524800,"id_str":"663727946872524800","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788272233,"id_str":"2788272233","name":"abil","screen_name":"abil58708308","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":44,"listed_count":0,"favourites_count":200,"statuses_count":1264,"created_at":"Sun Sep 28 00:37:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516346503887990784\/dN6dehvS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516346503887990784\/dN6dehvS_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859835392,"id_str":"663727946859835392","text":"\u304a\u306a\u304b\u3059\u3044\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4092299952,"id_str":"4092299952","name":"nakakooooo","screen_name":"nakakooooo25","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":73,"friends_count":80,"listed_count":0,"favourites_count":16,"statuses_count":47,"created_at":"Sun Nov 01 16:09:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663210191316320256\/7eBHCjKM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663210191316320256\/7eBHCjKM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4092299952\/1446956607","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868334593,"id_str":"663727946868334593","text":"Yes. \ud83d\ude0a\ud83c\udf89 https:\/\/t.co\/I2vJuDtIzi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1655200554,"id_str":"1655200554","name":"hi","screen_name":"ohits5sos","location":null,"url":"http:\/\/www.youtube.com","description":"And we will find a way through the dark","protected":false,"verified":false,"followers_count":1265,"friends_count":1469,"listed_count":6,"favourites_count":12501,"statuses_count":23200,"created_at":"Thu Aug 08 12:00:28 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"040B0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122855395\/b51ebc916f0c7028033320b8bbbcd7d3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122855395\/b51ebc916f0c7028033320b8bbbcd7d3.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643114753666195456\/Fyq06dfE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643114753666195456\/Fyq06dfE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1655200554\/1442165479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727517384183809,"quoted_status_id_str":"663727517384183809","quoted_status":{"created_at":"Mon Nov 09 14:39:06 +0000 2015","id":663727517384183809,"id_str":"663727517384183809","text":"Now Playing: Bring Me The Horizon - Throne https:\/\/t.co\/Ni5vaEEwvd","source":"\u003ca href=\"http:\/\/www.3fm.nl\/\" rel=\"nofollow\"\u003e3FM Now\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234709726,"id_str":"234709726","name":"3FM Now Playing","screen_name":"3FMNow","location":null,"url":null,"description":"Officieel 3FM sub-account met alle gedraaide nummers op @3FM Serious Radio. Check ook http:\/\/3fm.nl en http:\/\/3fm.nl\/welkliedjewasdat","protected":false,"verified":false,"followers_count":1209,"friends_count":16,"listed_count":40,"favourites_count":0,"statuses_count":232822,"created_at":"Thu Jan 06 11:04:26 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428863468813287424\/rcODD6Zz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428863468813287424\/rcODD6Zz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234709726\/1360594582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ni5vaEEwvd","expanded_url":"http:\/\/www.3fm.nl\/welkliedje","display_url":"3fm.nl\/welkliedje","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I2vJuDtIzi","expanded_url":"https:\/\/twitter.com\/3FMNow\/status\/663727517384183809","display_url":"twitter.com\/3FMNow\/status\/\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946864037888,"id_str":"663727946864037888","text":"@petals11111 \uac00\uc57c\uc9c0\uc694 \uc554\uc694 \u314e\u314e \ubaa9\uc694\uc77c \uae30\ub2e4\ub9ac\uba70 \uc560\uac00 \ud0c0\ub294 \uc911\uc785\ub2c8\ub2e4\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727287586566152,"in_reply_to_status_id_str":"663727287586566152","in_reply_to_user_id":3096497970,"in_reply_to_user_id_str":"3096497970","in_reply_to_screen_name":"petals11111","user":{"id":138278203,"id_str":"138278203","name":"mari (\u30de\u30ea\u30fc)","screen_name":"mari_asmita","location":"\ub300\ud55c\ubbfc\uad6d \uc11c\uc6b8 \u97d3\u56fd \u30bd\u30a6\u30eb","url":"http:\/\/impulse13.blog.me","description":"\u8a69\u3001\u6587\u5eab\u672c\u304c\u597d\u304d\u3002\u4e80\u6709\u306e\u5341\u6708\u685c\u3001\u6839\u6d25\u306e\u91d1\u6728\u7280\u3001\u6771\u4eac\u3067\u4e00\u756a\u597d\u304d\u306a\u5834\u6240\u3002","protected":false,"verified":false,"followers_count":71,"friends_count":133,"listed_count":0,"favourites_count":762,"statuses_count":6919,"created_at":"Thu Apr 29 03:13:24 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616347510\/ab8wlszj08tdjeouorup.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616347510\/ab8wlszj08tdjeouorup.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599803486486671360\/jFypr8VV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599803486486671360\/jFypr8VV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138278203\/1444580367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"petals11111","name":"\uc774\ud504:D","id":3096497970,"id_str":"3096497970","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080048658"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946897735680,"id_str":"663727946897735680","text":"RT @Ne7naMagazine: \u0646\u062d\u0646\u0627 \u0633\u062a\u0627\u064a\u0644 \u2013 \u0646\u062c\u0648\u0649 \u0643\u0631\u0645 \u0641\u064a \u062b\u0644\u0627\u062b \u0625\u0637\u0644\u0627\u0644\u0627\u062a \u0633\u0627\u062d\u0631\u0629\nhttps:\/\/t.co\/2JSAPCKXnU\n#\u0646\u062c\u0648\u064a_\u0643\u0631\u0645 #\u062f\u064a\u0648_\u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631 #\u0644\u0628\u0646\u0627\u0646 #\u062c\u0645\u0627\u0644 #\u0641\u0646 #\u0627\u0646\u0627\u0642\u0629 http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883235757,"id_str":"2883235757","name":"Salma Hatem","screen_name":"salmahat13","location":"\u0641\u0644\u0633\u0637\u064a\u0646","url":null,"description":"@najwakaram is my life","protected":false,"verified":false,"followers_count":158,"friends_count":119,"listed_count":1,"favourites_count":4723,"statuses_count":4542,"created_at":"Tue Nov 18 22:26:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535107167196442624\/JKmrJL6__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535107167196442624\/JKmrJL6__normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:58:47 +0000 2015","id":663702272195428352,"id_str":"663702272195428352","text":"\u0646\u062d\u0646\u0627 \u0633\u062a\u0627\u064a\u0644 \u2013 \u0646\u062c\u0648\u0649 \u0643\u0631\u0645 \u0641\u064a \u062b\u0644\u0627\u062b \u0625\u0637\u0644\u0627\u0644\u0627\u062a \u0633\u0627\u062d\u0631\u0629\nhttps:\/\/t.co\/2JSAPCKXnU\n#\u0646\u062c\u0648\u064a_\u0643\u0631\u0645 #\u062f\u064a\u0648_\u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631 #\u0644\u0628\u0646\u0627\u0646 #\u062c\u0645\u0627\u0644 #\u0641\u0646 #\u0627\u0646\u0627\u0642\u0629 https:\/\/t.co\/6j70bnVu1A","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1350432854,"id_str":"1350432854","name":"\u0645\u062c\u0644\u0629 \u0646\u062d\u0646\u0627 - Ne7na","screen_name":"Ne7naMagazine","location":"lebanon","url":"http:\/\/www.ne7na.com","description":"Online Magazine - @mousa_abdallah http:\/\/www.facebook.com\/ne7namagazine","protected":false,"verified":false,"followers_count":6958,"friends_count":145,"listed_count":13,"favourites_count":399,"statuses_count":5083,"created_at":"Sat Apr 13 22:55:31 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444259532298928128\/vEHpseOA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444259532298928128\/vEHpseOA.jpeg","profile_background_tile":true,"profile_link_color":"B3008F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634356462496563200\/j3eZ3URI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634356462496563200\/j3eZ3URI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1350432854\/1440510542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":84,"entities":{"hashtags":[{"text":"\u0646\u062c\u0648\u064a_\u0643\u0631\u0645","indices":[68,77]},{"text":"\u062f\u064a\u0648_\u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631","indices":[78,91]},{"text":"\u0644\u0628\u0646\u0627\u0646","indices":[92,98]},{"text":"\u062c\u0645\u0627\u0644","indices":[99,104]},{"text":"\u0641\u0646","indices":[105,108]},{"text":"\u0627\u0646\u0627\u0642\u0629","indices":[109,115]}],"urls":[{"url":"https:\/\/t.co\/2JSAPCKXnU","expanded_url":"http:\/\/www.ne7na.com\/NewsDetails.php?NewsID=2848","display_url":"ne7na.com\/NewsDetails.ph\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663702270727471104,"id_str":"663702270727471104","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","url":"https:\/\/t.co\/6j70bnVu1A","display_url":"pic.twitter.com\/6j70bnVu1A","expanded_url":"http:\/\/twitter.com\/Ne7naMagazine\/status\/663702272195428352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":434,"resize":"fit"},"small":{"w":340,"h":307,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702270727471104,"id_str":"663702270727471104","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","url":"https:\/\/t.co\/6j70bnVu1A","display_url":"pic.twitter.com\/6j70bnVu1A","expanded_url":"http:\/\/twitter.com\/Ne7naMagazine\/status\/663702272195428352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":434,"resize":"fit"},"small":{"w":340,"h":307,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0646\u062c\u0648\u064a_\u0643\u0631\u0645","indices":[87,96]},{"text":"\u062f\u064a\u0648_\u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631","indices":[97,110]},{"text":"\u0644\u0628\u0646\u0627\u0646","indices":[111,117]},{"text":"\u062c\u0645\u0627\u0644","indices":[118,123]},{"text":"\u0641\u0646","indices":[124,127]},{"text":"\u0627\u0646\u0627\u0642\u0629","indices":[128,134]}],"urls":[{"url":"https:\/\/t.co\/2JSAPCKXnU","expanded_url":"http:\/\/www.ne7na.com\/NewsDetails.php?NewsID=2848","display_url":"ne7na.com\/NewsDetails.ph\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"Ne7naMagazine","name":"\u0645\u062c\u0644\u0629 \u0646\u062d\u0646\u0627 - Ne7na","id":1350432854,"id_str":"1350432854","indices":[3,17]}],"symbols":[],"media":[{"id":663702270727471104,"id_str":"663702270727471104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","url":"https:\/\/t.co\/6j70bnVu1A","display_url":"pic.twitter.com\/6j70bnVu1A","expanded_url":"http:\/\/twitter.com\/Ne7naMagazine\/status\/663702272195428352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":434,"resize":"fit"},"small":{"w":340,"h":307,"resize":"fit"}},"source_status_id":663702272195428352,"source_status_id_str":"663702272195428352","source_user_id":1350432854,"source_user_id_str":"1350432854"}]},"extended_entities":{"media":[{"id":663702270727471104,"id_str":"663702270727471104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxsuNUwAA5dw5.png","url":"https:\/\/t.co\/6j70bnVu1A","display_url":"pic.twitter.com\/6j70bnVu1A","expanded_url":"http:\/\/twitter.com\/Ne7naMagazine\/status\/663702272195428352\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":434,"resize":"fit"},"small":{"w":340,"h":307,"resize":"fit"}},"source_status_id":663702272195428352,"source_status_id_str":"663702272195428352","source_user_id":1350432854,"source_user_id_str":"1350432854"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080048666"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880806915,"id_str":"663727946880806915","text":"\u304a\u3063\u3071\u3044\u304a\u3063\u3071\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126094534,"id_str":"126094534","name":"\u30db\u30ef\u30a4\u30c8 \u30ce\u30fc\u30ba \u30d8\u30a2\u30fc \u30e9\u30af\u30c0","screen_name":"nayuta110","location":"\u0295\u0321\u0322\u0321\u0298\u0305\u035f\u035c\u0361\u0298\u0332\u0305\u0294\u0322\u0321\u0322","url":null,"description":"\u5e30\u3063\u3066\u304d\u305f\u305e\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049\u3049","protected":false,"verified":false,"followers_count":1402,"friends_count":1356,"listed_count":59,"favourites_count":4253,"statuses_count":220104,"created_at":"Wed Mar 24 20:33:50 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"92A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632981623693185024\/8x43xQGI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632981623693185024\/8x43xQGI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/126094534\/1446639072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876612608,"id_str":"663727946876612608","text":"@nanana3979 \u826f\u304b\u3063\u305f\uff01( \u00b4 \u25bd ` )\uff89\n\u3067\u306f\u3067\u306f\u5b9c\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u301c\u266a\n\u4f55\u304b\u3054\u5e0c\u671b\u306e\u30c8\u30e2\u30c1\u30b1\u3042\u308a\u307e\u3057\u305f\u3089\u4f5c\u3063\u3066\u304a\u304d\u307e\u3059\u306e\u3067\u3054\u9060\u616e\u306a\u304f\uff01(\u6301\u3063\u3066\u306a\u3044\u6642\u306f\u30b4\u30e1\u30f3\u306a\u3055\u3044\uff01)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727379810881536,"in_reply_to_status_id_str":"663727379810881536","in_reply_to_user_id":3034878638,"in_reply_to_user_id_str":"3034878638","in_reply_to_screen_name":"nanana3979","user":{"id":335429955,"id_str":"335429955","name":"\u9ed2\u5de3","screen_name":"yama84885","location":"\u798f\u5ca1\u770c","url":null,"description":"\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3075\u307e\u3075\u266a\uff08\u2267\u03c9\u2266\uff09 \u30ac\u30f3\u30d7\u30e9\u3084\u30df\u30af\u3055\u3093\u3001\u30a2\u30a4\u30ab\u30c4\u3001\u8272\u3005\u306a\u98a8\u666f\u306a\u3069\u306a\u3069\u3001\u5927\u597d\u304d\u3067\u3059\u3002\u69d8\u3005\u306a\u4eba\u3068\u306e\u7d20\u6575\u306a\u7e4b\u304c\u308a\u3092\u6c42\u3081\u3066\u2026 \u30a2\u30a4\u30c9\u30eb\u30c3\u30af https:\/\/idolook.aikatsu.com\/idolooks\/index\/hhCwuxg0c_BgAj7j\/","protected":false,"verified":false,"followers_count":372,"friends_count":286,"listed_count":22,"favourites_count":11597,"statuses_count":26835,"created_at":"Thu Jul 14 17:34:50 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544850091278753792\/MCLZVPHo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544850091278753792\/MCLZVPHo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335429955\/1420178228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nanana3979","name":"\u306a\u306a\u307f\u3002\u9752\u9ce5\u30de\u30cd\u3055\u3093","id":3034878638,"id_str":"3034878638","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946884997120,"id_str":"663727946884997120","text":"RT @NFL: Cam Newton had a DAY. https:\/\/t.co\/8OmFxaSIoq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572188980,"id_str":"2572188980","name":"Happiest Raven Fan !","screen_name":"Dougiedabeast","location":null,"url":"http:\/\/twitch.tv\/dougiedabeast","description":"Mut\/CoD | My Name Is Dom | Member of @MUTCOMMUNITYTRD","protected":false,"verified":false,"followers_count":1225,"friends_count":170,"listed_count":6,"favourites_count":12903,"statuses_count":8314,"created_at":"Tue Jun 17 04:14:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660810002857234432\/HltMapXr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660810002857234432\/HltMapXr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572188980\/1444880458","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:06 +0000 2015","id":663713928761970688,"id_str":"663713928761970688","text":"Cam Newton had a DAY. https:\/\/t.co\/8OmFxaSIoq","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19426551,"id_str":"19426551","name":"NFL","screen_name":"NFL","location":null,"url":"http:\/\/www.nfl.com","description":"Official Twitter account of the National Football League.","protected":false,"verified":true,"followers_count":14037450,"friends_count":1979,"listed_count":42490,"favourites_count":1142,"statuses_count":104969,"created_at":"Sat Jan 24 01:28:06 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/783952246\/66e217ec60a9c3c977295fb8b7ae1601.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/783952246\/66e217ec60a9c3c977295fb8b7ae1601.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661280918821191680\/YGHZVJ1G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661280918821191680\/YGHZVJ1G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19426551\/1430162479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":733,"favorite_count":1343,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713928564899840,"id_str":"663713928564899840","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","url":"https:\/\/t.co\/8OmFxaSIoq","display_url":"pic.twitter.com\/8OmFxaSIoq","expanded_url":"http:\/\/twitter.com\/NFL\/status\/663713928761970688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713928564899840,"id_str":"663713928564899840","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","url":"https:\/\/t.co\/8OmFxaSIoq","display_url":"pic.twitter.com\/8OmFxaSIoq","expanded_url":"http:\/\/twitter.com\/NFL\/status\/663713928761970688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NFL","name":"NFL","id":19426551,"id_str":"19426551","indices":[3,7]}],"symbols":[],"media":[{"id":663713928564899840,"id_str":"663713928564899840","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","url":"https:\/\/t.co\/8OmFxaSIoq","display_url":"pic.twitter.com\/8OmFxaSIoq","expanded_url":"http:\/\/twitter.com\/NFL\/status\/663713928761970688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663713928761970688,"source_status_id_str":"663713928761970688","source_user_id":19426551,"source_user_id_str":"19426551"}]},"extended_entities":{"media":[{"id":663713928564899840,"id_str":"663713928564899840","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8TTCXAAAa6cd.jpg","url":"https:\/\/t.co\/8OmFxaSIoq","display_url":"pic.twitter.com\/8OmFxaSIoq","expanded_url":"http:\/\/twitter.com\/NFL\/status\/663713928761970688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663713928761970688,"source_status_id_str":"663713928761970688","source_user_id":19426551,"source_user_id_str":"19426551"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048663"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946864062468,"id_str":"663727946864062468","text":"RT @ForwardProgs: Ben Carson Is Lying Again, This Time About Our Founding\u00a0Fathers https:\/\/t.co\/MQ0doGqDP4 https:\/\/t.co\/XVPtCg9sXv","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615252904,"id_str":"615252904","name":"heidi mackie pitt","screen_name":"heidimackiepitt","location":null,"url":null,"description":"DOGS Rule The World!","protected":false,"verified":false,"followers_count":95,"friends_count":151,"listed_count":11,"favourites_count":164,"statuses_count":7271,"created_at":"Fri Jun 22 15:12:41 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589408657\/spir_comb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589408657\/spir_comb.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2344097352\/candyglowsmall_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2344097352\/candyglowsmall_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615252904\/1430018381","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:24 +0000 2015","id":663726586210861056,"id_str":"663726586210861056","text":"Ben Carson Is Lying Again, This Time About Our Founding\u00a0Fathers https:\/\/t.co\/MQ0doGqDP4 https:\/\/t.co\/XVPtCg9sXv","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1258172900,"id_str":"1258172900","name":"Forward Progressives","screen_name":"ForwardProgs","location":null,"url":"http:\/\/www.ForwardProgressives.com","description":"Forward Thinking For Progressive Action\r\n#UniteBlue","protected":false,"verified":false,"followers_count":4385,"friends_count":706,"listed_count":97,"favourites_count":46,"statuses_count":3914,"created_at":"Sun Mar 10 23:24:39 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663724679891324928\/4n3EGnj6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663724679891324928\/4n3EGnj6.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462851753533136896\/Ssx10Avf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462851753533136896\/Ssx10Avf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1258172900\/1398466412","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MQ0doGqDP4","expanded_url":"http:\/\/www.forwardprogressives.com\/ben-carson-lying-founding-fathers\/","display_url":"forwardprogressives.com\/ben-carson-lyi\u2026","indices":[64,87]}],"user_mentions":[],"symbols":[],"media":[{"id":663726585078415361,"id_str":"663726585078415361","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","url":"https:\/\/t.co\/XVPtCg9sXv","display_url":"pic.twitter.com\/XVPtCg9sXv","expanded_url":"http:\/\/twitter.com\/ForwardProgs\/status\/663726586210861056\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":250,"resize":"fit"},"large":{"w":300,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726585078415361,"id_str":"663726585078415361","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","url":"https:\/\/t.co\/XVPtCg9sXv","display_url":"pic.twitter.com\/XVPtCg9sXv","expanded_url":"http:\/\/twitter.com\/ForwardProgs\/status\/663726586210861056\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":250,"resize":"fit"},"large":{"w":300,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":250,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MQ0doGqDP4","expanded_url":"http:\/\/www.forwardprogressives.com\/ben-carson-lying-founding-fathers\/","display_url":"forwardprogressives.com\/ben-carson-lyi\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"ForwardProgs","name":"Forward Progressives","id":1258172900,"id_str":"1258172900","indices":[3,16]}],"symbols":[],"media":[{"id":663726585078415361,"id_str":"663726585078415361","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","url":"https:\/\/t.co\/XVPtCg9sXv","display_url":"pic.twitter.com\/XVPtCg9sXv","expanded_url":"http:\/\/twitter.com\/ForwardProgs\/status\/663726586210861056\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":250,"resize":"fit"},"large":{"w":300,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":250,"resize":"fit"}},"source_status_id":663726586210861056,"source_status_id_str":"663726586210861056","source_user_id":1258172900,"source_user_id_str":"1258172900"}]},"extended_entities":{"media":[{"id":663726585078415361,"id_str":"663726585078415361","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0AOVAAEGapz.jpg","url":"https:\/\/t.co\/XVPtCg9sXv","display_url":"pic.twitter.com\/XVPtCg9sXv","expanded_url":"http:\/\/twitter.com\/ForwardProgs\/status\/663726586210861056\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":250,"resize":"fit"},"large":{"w":300,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":250,"resize":"fit"}},"source_status_id":663726586210861056,"source_status_id_str":"663726586210861056","source_user_id":1258172900,"source_user_id_str":"1258172900"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048658"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872565760,"id_str":"663727946872565760","text":"RT @newsjsTR: En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/www.filmizleport.com\" rel=\"nofollow\"\u003eHayatinuveyKizi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2754996044,"id_str":"2754996044","name":"Cihan Arac\u0131","screen_name":"CihanAraacii","location":"Kocaeli","url":null,"description":"Bir insan\u0131n hayat\u0131n\u0131n ikinci yar\u0131s\u0131, ilk yar\u0131da kazan\u0131lan al\u0131\u015fkanl\u0131klar\u0131n s\u00fcrd\u00fcr\u00fclmesinden ibarettir","protected":false,"verified":false,"followers_count":545,"friends_count":330,"listed_count":0,"favourites_count":212,"statuses_count":1352,"created_at":"Fri Aug 22 13:41:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502812873391755265\/sgwi_njS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502812873391755265\/sgwi_njS_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727810935148544,"id_str":"663727810935148544","text":"En G\u00fcncel G-20 Haberleri \nhttps:\/\/t.co\/Ms5NjuCs0P https:\/\/t.co\/ls4O6aVHfr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254014025,"id_str":"3254014025","name":"News JS TR","screen_name":"newsjsTR","location":"T\u00fcrkiye","url":"http:\/\/newsjs.com\/tr\/","description":"T\u00fcrkiye s\u00fcr\u00fcm\u00fc Haberler","protected":false,"verified":false,"followers_count":795,"friends_count":569,"listed_count":0,"favourites_count":3,"statuses_count":8381,"created_at":"Thu May 14 14:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598866937054003200\/R4vPMoB1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ms5NjuCs0P","expanded_url":"http:\/\/newsjs.com\/tr\/g20\/","display_url":"newsjs.com\/tr\/g20\/","indices":[40,63]}],"user_mentions":[{"screen_name":"newsjsTR","name":"News JS TR","id":3254014025,"id_str":"3254014025","indices":[3,12]}],"symbols":[],"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"extended_entities":{"media":[{"id":663727809609662464,"id_str":"663727809609662464","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7R9VAAAR2gL.jpg","url":"https:\/\/t.co\/ls4O6aVHfr","display_url":"pic.twitter.com\/ls4O6aVHfr","expanded_url":"http:\/\/twitter.com\/newsjsTR\/status\/663727810935148544\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":393,"resize":"fit"},"large":{"w":1024,"h":671,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663727810935148544,"source_status_id_str":"663727810935148544","source_user_id":3254014025,"source_user_id_str":"3254014025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880929793,"id_str":"663727946880929793","text":"RT @ABC: University of Missouri faculty to begin two-day walkout in solidarity with students: https:\/\/t.co\/SKX4yCudvi https:\/\/t.co\/iSjIC9jb\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203955069,"id_str":"203955069","name":"Merry Nickmas","screen_name":"nick_pls","location":"Columbus, OH","url":null,"description":"mexican food, social justice, and a lil' jiggery-pokery. tOSU '18","protected":false,"verified":false,"followers_count":922,"friends_count":672,"listed_count":4,"favourites_count":18528,"statuses_count":14989,"created_at":"Sun Oct 17 15:48:24 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663458403558236160\/n5akBkrz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663458403558236160\/n5akBkrz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203955069\/1444788414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:05:46 +0000 2015","id":663704030196178944,"id_str":"663704030196178944","text":"University of Missouri faculty to begin two-day walkout in solidarity with students: https:\/\/t.co\/SKX4yCudvi https:\/\/t.co\/iSjIC9jbHI","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28785486,"id_str":"28785486","name":"ABC News","screen_name":"ABC","location":"New York City \/ Worldwide","url":"http:\/\/ABCNews.com","description":"See the whole picture with @ABC News. Tweets by @callingcaterina and @brionnajay.","protected":false,"verified":true,"followers_count":4796488,"friends_count":942,"listed_count":40092,"favourites_count":549,"statuses_count":116075,"created_at":"Sat Apr 04 12:40:32 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6E8EB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441965491024719872\/pAv-lzCZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441965491024719872\/pAv-lzCZ.jpeg","profile_background_tile":false,"profile_link_color":"336699","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658688193651277824\/Kv_cNNub_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658688193651277824\/Kv_cNNub_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28785486\/1437184265","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":671,"favorite_count":237,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SKX4yCudvi","expanded_url":"http:\/\/abcn.ws\/1NmitMH","display_url":"abcn.ws\/1NmitMH","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":663704029537570816,"id_str":"663704029537570816","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","url":"https:\/\/t.co\/iSjIC9jbHI","display_url":"pic.twitter.com\/iSjIC9jbHI","expanded_url":"http:\/\/twitter.com\/ABC\/status\/663704030196178944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663704029537570816,"id_str":"663704029537570816","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","url":"https:\/\/t.co\/iSjIC9jbHI","display_url":"pic.twitter.com\/iSjIC9jbHI","expanded_url":"http:\/\/twitter.com\/ABC\/status\/663704030196178944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SKX4yCudvi","expanded_url":"http:\/\/abcn.ws\/1NmitMH","display_url":"abcn.ws\/1NmitMH","indices":[94,117]}],"user_mentions":[{"screen_name":"ABC","name":"ABC News","id":28785486,"id_str":"28785486","indices":[3,7]}],"symbols":[],"media":[{"id":663704029537570816,"id_str":"663704029537570816","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","url":"https:\/\/t.co\/iSjIC9jbHI","display_url":"pic.twitter.com\/iSjIC9jbHI","expanded_url":"http:\/\/twitter.com\/ABC\/status\/663704030196178944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663704030196178944,"source_status_id_str":"663704030196178944","source_user_id":28785486,"source_user_id_str":"28785486"}]},"extended_entities":{"media":[{"id":663704029537570816,"id_str":"663704029537570816","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXzTGSVEAAK0tC.jpg","url":"https:\/\/t.co\/iSjIC9jbHI","display_url":"pic.twitter.com\/iSjIC9jbHI","expanded_url":"http:\/\/twitter.com\/ABC\/status\/663704030196178944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663704030196178944,"source_status_id_str":"663704030196178944","source_user_id":28785486,"source_user_id_str":"28785486"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048662"} +{"delete":{"status":{"id":645276993857187840,"id_str":"645276993857187840","user_id":2645088437,"user_id_str":"2645088437"},"timestamp_ms":"1447080048734"}} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880806912,"id_str":"663727946880806912","text":"RT @JackJackJohnson: U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2868319313,"id_str":"2868319313","name":"Haley Rivas\u265b","screen_name":"haleyyrivas","location":null,"url":"https:\/\/www.gofundme.com\/x94zq2hs","description":"\u00b0California\u00b0","protected":false,"verified":false,"followers_count":940,"friends_count":34,"listed_count":12,"favourites_count":937,"statuses_count":82202,"created_at":"Sun Nov 09 02:17:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648260715413831681\/n_uBLUPl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648260715413831681\/n_uBLUPl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868319313\/1442783220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433779056641,"id_str":"663727433779056641","text":"U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT LIT!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588962,"friends_count":19062,"listed_count":9492,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1167,"favorite_count":2099,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946889363457,"id_str":"663727946889363457","text":"\uff20mdbjss https:\/\/t.co\/7mizkhaxB1 November 09, 2015 at 11:40PM #RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b a","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3004165688,"in_reply_to_user_id_str":"3004165688","in_reply_to_screen_name":"mdbjss","user":{"id":2165296556,"id_str":"2165296556","name":"\u713c\u304d\u30dd\u30bf\u30dd\u30bf(bot)","screen_name":"7tpqm","location":null,"url":null,"description":"\u5730\u9707\u60c5\u5831\u3068\u304b\u3064\u3076\u3084\u3044\u305f\u308a\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":2611,"friends_count":1183,"listed_count":45,"favourites_count":287557,"statuses_count":656081,"created_at":"Wed Oct 30 18:55:29 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624246457051164672\/aDooq7zS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624246457051164672\/aDooq7zS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2165296556\/1441634941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727890681470976,"quoted_status_id_str":"663727890681470976","quoted_status":{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727890681470976,"id_str":"663727890681470976","text":"\uff20mdbjss https:\/\/t.co\/uLO9cfLSg9 November 09, 2015 at 11:25PM #RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b a","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3004165688,"in_reply_to_user_id_str":"3004165688","in_reply_to_screen_name":"mdbjss","user":{"id":2165296556,"id_str":"2165296556","name":"\u713c\u304d\u30dd\u30bf\u30dd\u30bf(bot)","screen_name":"7tpqm","location":null,"url":null,"description":"\u5730\u9707\u60c5\u5831\u3068\u304b\u3064\u3076\u3084\u3044\u305f\u308a\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":2611,"friends_count":1183,"listed_count":45,"favourites_count":287557,"statuses_count":656080,"created_at":"Wed Oct 30 18:55:29 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624246457051164672\/aDooq7zS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624246457051164672\/aDooq7zS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2165296556\/1441634941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724139258257408,"quoted_status_id_str":"663724139258257408","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[61,75]}],"urls":[{"url":"https:\/\/t.co\/uLO9cfLSg9","expanded_url":"http:\/\/twitter.com\/7tpqm\/status\/663724139258257408","display_url":"twitter.com\/7tpqm\/status\/6\u2026","indices":[8,31]}],"user_mentions":[{"screen_name":"mdbjss","name":"(\u0b87\u0277\u0b87 )","id":3004165688,"id_str":"3004165688","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[61,75]}],"urls":[{"url":"https:\/\/t.co\/7mizkhaxB1","expanded_url":"http:\/\/twitter.com\/7tpqm\/status\/663727890681470976","display_url":"twitter.com\/7tpqm\/status\/6\u2026","indices":[8,31]}],"user_mentions":[{"screen_name":"mdbjss","name":"(\u0b87\u0277\u0b87 )","id":3004165688,"id_str":"3004165688","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080048664"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868240384,"id_str":"663727946868240384","text":"RT @Snoopy: Monday. https:\/\/t.co\/JXaG23ywCo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2340358867,"id_str":"2340358867","name":"\u307f\u3043","screen_name":"buu2049","location":"\u4f50\u91ce\u5e02","url":null,"description":null,"protected":false,"verified":false,"followers_count":75,"friends_count":79,"listed_count":0,"favourites_count":441,"statuses_count":813,"created_at":"Wed Feb 12 13:36:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628032404565823488\/r7HTTXLf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628032404565823488\/r7HTTXLf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2340358867\/1443624534","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:59 +0000 2015","id":663727238987325440,"id_str":"663727238987325440","text":"Monday. https:\/\/t.co\/JXaG23ywCo","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245548093,"id_str":"245548093","name":"PEANUTS","screen_name":"Snoopy","location":null,"url":null,"description":"\u00a9 2015 Peanuts Worldwide LLC - Instagram: Snoopygrams \/ Snapchat: SnoopysSnaps \/ Facebook: Snoopy","protected":false,"verified":true,"followers_count":468924,"friends_count":64,"listed_count":3582,"favourites_count":528,"statuses_count":9917,"created_at":"Mon Jan 31 23:14:17 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_tile":true,"profile_link_color":"005596","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFE600","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245548093\/1444425461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":167,"favorite_count":193,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Snoopy","name":"PEANUTS","id":245548093,"id_str":"245548093","indices":[3,10]}],"symbols":[],"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727238987325440,"source_status_id_str":"663727238987325440","source_user_id":245548093,"source_user_id_str":"245548093"}]},"extended_entities":{"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727238987325440,"source_status_id_str":"663727238987325440","source_user_id":245548093,"source_user_id_str":"245548093"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946864189440,"id_str":"663727946864189440","text":"@Vinny GOOOOD AFTERNOON FROM THE UK! :D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727546530418688,"in_reply_to_status_id_str":"663727546530418688","in_reply_to_user_id":2507565574,"in_reply_to_user_id_str":"2507565574","in_reply_to_screen_name":"Vinny","user":{"id":1596071636,"id_str":"1596071636","name":"Leon","screen_name":"LPMarshall94","location":"England","url":"http:\/\/www.youtube.com\/user\/LPMarshall94","description":"YouTube Let's Player and Commentator","protected":false,"verified":false,"followers_count":281,"friends_count":165,"listed_count":4,"favourites_count":3081,"statuses_count":11565,"created_at":"Mon Jul 15 15:13:17 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613024951650643968\/WifW_BUd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613024951650643968\/WifW_BUd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596071636\/1443623691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Vinny","name":"Vinny","id":2507565574,"id_str":"2507565574","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048658"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880827392,"id_str":"663727946880827392","text":"RT @tyleroakley: huge thanks to the @guardian for the thoughtful interview! if you find it, take a selfie with it & send it to me \ud83d\udcf0 https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521032954,"id_str":"521032954","name":"S U G G Y \u270c\ufe0f","screen_name":"BonniexClifford","location":"~New YouTube Video~ vvv","url":"http:\/\/youtu.be\/KBdKGcEnH5o?a","description":"I'm just a YouTuber with big dreams [PB]","protected":false,"verified":false,"followers_count":1906,"friends_count":1907,"listed_count":18,"favourites_count":24569,"statuses_count":49422,"created_at":"Sun Mar 11 05:20:22 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097840715\/a6a56c680f240a4a1fa4aa6d0455d876.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097840715\/a6a56c680f240a4a1fa4aa6d0455d876.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658622398166536192\/u0CT-9pD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658622398166536192\/u0CT-9pD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521032954\/1445862791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741515108352,"id_str":"663727741515108352","text":"huge thanks to the @guardian for the thoughtful interview! if you find it, take a selfie with it & send it to me \ud83d\udcf0 https:\/\/t.co\/sur6rsooQn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14222536,"id_str":"14222536","name":"Tyler Oakley \/\/ 33","screen_name":"tyleroakley","location":"Los Angeles, CA","url":"https:\/\/Instagram.com\/tyleroakley","description":"YouTube (http:\/\/youtube.com\/tyleroakley) Podcast (http:\/\/itunes.com\/psychobabble) Book (http:\/\/tyleroakleybook.com) Documentary (http:\/\/snervous.com)","protected":false,"verified":true,"followers_count":4746887,"friends_count":409,"listed_count":10688,"favourites_count":102335,"statuses_count":37333,"created_at":"Wed Mar 26 03:20:33 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662734880896192512\/8etFkc1T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662734880896192512\/8etFkc1T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14222536\/1446846757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663669751466586112,"quoted_status_id_str":"663669751466586112","quoted_status":{"created_at":"Mon Nov 09 10:49:33 +0000 2015","id":663669751466586112,"id_str":"663669751466586112","text":"At work reading a high quality newspaper and look who I see @tyleroakley #TeamInternet https:\/\/t.co\/0bE4g0hY8Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21199602,"id_str":"21199602","name":"Abbi \u2605","screen_name":"abbiglover","location":"Goxhill","url":"http:\/\/brxken-society.tumblr.com","description":"The town was paper, but the memories were not | \u2606\nhttp:\/\/www.abbiglover.wordpress.com","protected":false,"verified":false,"followers_count":308,"friends_count":229,"listed_count":3,"favourites_count":578,"statuses_count":5126,"created_at":"Wed Feb 18 14:22:48 +0000 2009","utc_offset":0,"time_zone":"Europe\/London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458330308450861057\/9TJd7EAf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458330308450861057\/9TJd7EAf.jpeg","profile_background_tile":true,"profile_link_color":"7286A3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658019005932961792\/RpMY-DbX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658019005932961792\/RpMY-DbX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21199602\/1445718871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeamInternet","indices":[73,86]}],"urls":[],"user_mentions":[{"screen_name":"tyleroakley","name":"Tyler Oakley \/\/ 33","id":14222536,"id_str":"14222536","indices":[60,72]}],"symbols":[],"media":[{"id":663669701881524224,"id_str":"663669701881524224","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUE9zWcAAjKx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUE9zWcAAjKx8.jpg","url":"https:\/\/t.co\/0bE4g0hY8Z","display_url":"pic.twitter.com\/0bE4g0hY8Z","expanded_url":"http:\/\/twitter.com\/abbiglover\/status\/663669751466586112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663669701881524224,"id_str":"663669701881524224","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUE9zWcAAjKx8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUE9zWcAAjKx8.jpg","url":"https:\/\/t.co\/0bE4g0hY8Z","display_url":"pic.twitter.com\/0bE4g0hY8Z","expanded_url":"http:\/\/twitter.com\/abbiglover\/status\/663669751466586112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":163,"favorite_count":508,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sur6rsooQn","expanded_url":"https:\/\/twitter.com\/abbiglover\/status\/663669751466586112","display_url":"twitter.com\/abbiglover\/sta\u2026","indices":[119,142]}],"user_mentions":[{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[19,28]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sur6rsooQn","expanded_url":"https:\/\/twitter.com\/abbiglover\/status\/663669751466586112","display_url":"twitter.com\/abbiglover\/sta\u2026","indices":[143,144]}],"user_mentions":[{"screen_name":"tyleroakley","name":"Tyler Oakley \/\/ 33","id":14222536,"id_str":"14222536","indices":[3,15]},{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[36,45]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876755968,"id_str":"663727946876755968","text":"RT @quietlovato: \"Party\" -Don't forget \nd\u00ea rt pra que outras pessoas possam votar e ajudar na vota\u00e7\u00e3o. \n#YAASSDemi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248408822,"id_str":"248408822","name":"adriano \u221d","screen_name":"njddl","location":"Nova Iorque, USA","url":"http:\/\/www.your-principe.tumblr.com","description":"fodasse fodasse fodasse","protected":false,"verified":false,"followers_count":1754,"friends_count":673,"listed_count":20,"favourites_count":48692,"statuses_count":154414,"created_at":"Sun Feb 06 23:13:44 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651161858414481408\/aR6IfIcV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651161858414481408\/aR6IfIcV.png","profile_background_tile":false,"profile_link_color":"696969","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663391289166176256\/yZUA7R2M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663391289166176256\/yZUA7R2M_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248408822\/1446999239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:10 +0000 2015","id":663727283493015553,"id_str":"663727283493015553","text":"\"Party\" -Don't forget \nd\u00ea rt pra que outras pessoas possam votar e ajudar na vota\u00e7\u00e3o. \n#YAASSDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":388909519,"id_str":"388909519","name":"t\u00edci","screen_name":"quietlovato","location":null,"url":null,"description":"dont talk to me","protected":false,"verified":false,"followers_count":8652,"friends_count":5709,"listed_count":18,"favourites_count":463,"statuses_count":60697,"created_at":"Tue Oct 11 14:58:39 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442287020690247680\/96urqBHK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442287020690247680\/96urqBHK.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662337486555914240\/aU91Ky_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662337486555914240\/aU91Ky_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/388909519\/1446901649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[87,97]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[104,114]}],"urls":[],"user_mentions":[{"screen_name":"quietlovato","name":"t\u00edci","id":388909519,"id_str":"388909519","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872393728,"id_str":"663727946872393728","text":"#Lovelyz #openfollow *26","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2558597528,"id_str":"2558597528","name":"Lovelyz Indonesia","screen_name":"Lovelyz__INA","location":null,"url":"http:\/\/lvlz8.com","description":"Indonesia Fanbase for Woollim Entertainment 1st Girl Group LOVELYZ","protected":false,"verified":false,"followers_count":50,"friends_count":3,"listed_count":10,"favourites_count":33,"statuses_count":72772,"created_at":"Tue Jun 10 09:13:47 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604982346668863488\/v6q8TNnH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604982346668863488\/v6q8TNnH.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535477986250612736\/5g0p_ND2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535477986250612736\/5g0p_ND2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2558597528\/1416503000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Lovelyz","indices":[0,8]},{"text":"openfollow","indices":[9,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880806913,"id_str":"663727946880806913","text":"RT @dwitasaridwita: #GEMINI: Cinta itu ruang untuk dua orang, bukan tiga orang, apalagi buat pengganggu hubungan orang! #RamalanDwita","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543304852,"id_str":"543304852","name":"Nuroh Latifah","screen_name":"Nuroohh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":163,"friends_count":122,"listed_count":0,"favourites_count":20,"statuses_count":837,"created_at":"Mon Apr 02 10:36:44 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591980336629743616\/dEy3vdZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591980336629743616\/dEy3vdZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543304852\/1429974083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:54:23 +0000 2015","id":663701167130611712,"id_str":"663701167130611712","text":"#GEMINI: Cinta itu ruang untuk dua orang, bukan tiga orang, apalagi buat pengganggu hubungan orang! #RamalanDwita","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446241646,"id_str":"446241646","name":"#SamaDenganCinta","screen_name":"dwitasaridwita","location":"CP: 085310802658 (Mbak Tyas)","url":"http:\/\/bit.ly\/IniCinta","description":"Penulis di @Bukune, @Loveableous, dan @BentangPustaka \u2665 Novel terbaru, buku kesembilan: #SamaDenganCinta | IG: dwitasaridwita | ASK FM: DwitaDwitasari","protected":false,"verified":false,"followers_count":1253234,"friends_count":3,"listed_count":672,"favourites_count":2895,"statuses_count":65236,"created_at":"Sun Dec 25 13:27:40 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597556518456725504\/jO9Wnc65.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597556518456725504\/jO9Wnc65.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663527775651823616\/bErY1cUi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663527775651823616\/bErY1cUi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446241646\/1446905378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":4,"entities":{"hashtags":[{"text":"GEMINI","indices":[0,7]},{"text":"RamalanDwita","indices":[100,113]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GEMINI","indices":[20,27]},{"text":"RamalanDwita","indices":[120,133]}],"urls":[],"user_mentions":[{"screen_name":"dwitasaridwita","name":"#SamaDenganCinta","id":446241646,"id_str":"446241646","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893361152,"id_str":"663727946893361152","text":"\u30c4\u30af\u30fc\u30eb\u30d5\u30ea\u30fc\u30b2\u30fc\u30e0\u306e\u30b2\u30fc\u30e0\u753b\u9762\u30b5\u30f3\u30d7\u30eb\u30b5\u30a4\u30b3\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134103898,"id_str":"134103898","name":"\u7690\u6708 \u9999","screen_name":"kou_satsuki","location":null,"url":null,"description":"\u3044\u3064\u3082\u2192\u30b2\u30fc\u30e0 \u304d\u307e\u3050\u308c\u2192\u7d75,\u30a2\u30ec\u30f3\u30b8\u66f2,\u83d3\u5b50,\u30d7\u30e9\u30e2,\u30b2\u30fc\u30e0\u30dc\u30fc\u30a4\u6539\u9020,\u30b3\u30b9\u30d7\u30ec","protected":false,"verified":false,"followers_count":394,"friends_count":226,"listed_count":47,"favourites_count":1684,"statuses_count":165414,"created_at":"Sat Apr 17 13:17:45 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC1414","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490516096424755200\/BnNV8APQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490516096424755200\/BnNV8APQ.jpeg","profile_background_tile":false,"profile_link_color":"544BFC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662271581612183552\/ZkP5IpeJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662271581612183552\/ZkP5IpeJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134103898\/1446732827","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880839680,"id_str":"663727946880839680","text":"#Watch #new #MUSICVIDEO by \"Gee Ess\" https:\/\/t.co\/V4ks2zCsOH https:\/\/t.co\/1YbA86DRPl","source":"\u003ca href=\"http:\/\/www.reverbnation.com\/\" rel=\"nofollow\"\u003eReverbNation\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611271299,"id_str":"611271299","name":"Gee Ess\u2122","screen_name":"gunnashicur","location":"215 - 919","url":"http:\/\/coast2coastmixtapes.com\/member\/gunna-shicur","description":"Philadelphia's Most Underrated Unsigned, K.O.S Affiliate & Founder of WII Legion, For Features: eighthwonda@gmail.com #NorthSide #DC","protected":false,"verified":false,"followers_count":1476,"friends_count":868,"listed_count":36,"favourites_count":3633,"statuses_count":40159,"created_at":"Mon Jun 18 01:15:16 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458872787596103680\/rlKq9hUe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458872787596103680\/rlKq9hUe.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651250227442155520\/XuD1yIVW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651250227442155520\/XuD1yIVW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611271299\/1444695309","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Watch","indices":[0,6]},{"text":"new","indices":[7,11]},{"text":"MUSICVIDEO","indices":[12,23]}],"urls":[{"url":"https:\/\/t.co\/V4ks2zCsOH","expanded_url":"https:\/\/www.youtube.com\/watch?v=mkqPI9jAYtw","display_url":"youtube.com\/watch?v=mkqPI9\u2026","indices":[37,60]},{"url":"https:\/\/t.co\/1YbA86DRPl","expanded_url":"http:\/\/www.datpiff.com\/Gunna-Shicur-Luke-Warm-mixtape.703906.html","display_url":"datpiff.com\/Gunna-Shicur-L\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946864173056,"id_str":"663727946864173056","text":"Juan Mata praises \"top class player\" Neymar after stunning goal for Barcelona https:\/\/t.co\/1IqZLfpmi0","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330255896,"id_str":"330255896","name":"Irish Daily Mirror","screen_name":"IrishMirror","location":"Dublin","url":"http:\/\/www.irishmirror.ie","description":"Official home of the Irish Daily Mirror on Twitter - the latest news, sport and celebrity gossip. Also on Facebook http:\/\/fb.me\/IrishMirror","protected":false,"verified":true,"followers_count":26879,"friends_count":754,"listed_count":307,"favourites_count":282,"statuses_count":113417,"created_at":"Wed Jul 06 10:40:16 +0000 2011","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E60909","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000093048248\/4576cdd7d7571d74a14a710e51cbe9fc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000093048248\/4576cdd7d7571d74a14a710e51cbe9fc.jpeg","profile_background_tile":true,"profile_link_color":"E60909","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000280112754\/4fa4f1f05d072ad06559aa9cdfb49871_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000280112754\/4fa4f1f05d072ad06559aa9cdfb49871_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330255896\/1379751637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1IqZLfpmi0","expanded_url":"http:\/\/www.irishmirror.ie\/sport\/soccer\/soccer-news\/juan-mata-praises-top-class-6798648","display_url":"irishmirror.ie\/sport\/soccer\/s\u2026","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048658"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859835393,"id_str":"663727946859835393","text":"RT @PinkWangza: \uce74\uba54\ub77c\ub97c \ucc3e\uc2b5\ub2c8\ub2e4... \ub3c4\ub09c\uc73c\ub85c \uc0dd\uac01\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4... \ub098\uc911\uc5d0 \ud314\uac70\ub098 \uc4f0\uace0\uc788\ub294\uac70 \ucc3e\uac8c\ub418\uba74 '\uc810\uc720\ubb3c\uc774\ud0c8\ud6a1\ub839\uc8c4'\ub85c \uace0\uc18c\ud560\uac70\uc5d0\uc694... \uc9c4\uc9dc \uc81c\ubc1c \uc544\ubb34\ub9d0\ub3c4 \uc548 \ud558\uace0 \uc0ac\ub840\ub3c4 \ud558\uace0 \ub2e4 \ud574\ub4dc\ub9b4\ud14c\ub2c8 \uc81c\ubc1c \ub3cc\ub824\uc8fc\uc138\uc694... https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161656668,"id_str":"3161656668","name":"\u2661\uc6b0\ubbf8\u2661","screen_name":"u_u1204j_n","location":"\u3082\u3050\u3058\u3093","url":null,"description":"\u3061\u3083\u3089\u308a\u3061\u3083\u3089\u308a","protected":false,"verified":false,"followers_count":122,"friends_count":111,"listed_count":2,"favourites_count":1844,"statuses_count":6965,"created_at":"Sat Apr 18 00:37:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655737278422061056\/QBzevBO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655737278422061056\/QBzevBO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3161656668\/1444580235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:46:57 +0000 2015","id":663669094139359232,"id_str":"663669094139359232","text":"\uce74\uba54\ub77c\ub97c \ucc3e\uc2b5\ub2c8\ub2e4... \ub3c4\ub09c\uc73c\ub85c \uc0dd\uac01\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4... \ub098\uc911\uc5d0 \ud314\uac70\ub098 \uc4f0\uace0\uc788\ub294\uac70 \ucc3e\uac8c\ub418\uba74 '\uc810\uc720\ubb3c\uc774\ud0c8\ud6a1\ub839\uc8c4'\ub85c \uace0\uc18c\ud560\uac70\uc5d0\uc694... \uc9c4\uc9dc \uc81c\ubc1c \uc544\ubb34\ub9d0\ub3c4 \uc548 \ud558\uace0 \uc0ac\ub840\ub3c4 \ud558\uace0 \ub2e4 \ud574\ub4dc\ub9b4\ud14c\ub2c8 \uc81c\ubc1c \ub3cc\ub824\uc8fc\uc138\uc694... https:\/\/t.co\/JxnWI9KmEB","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3064611276,"id_str":"3064611276","name":"\ud551\ud504","screen_name":"PinkWangza","location":"\uc11c\uc6b8\uc2dc \uac15\ub0a8\uad6c \ub17c\ud604\ub3d9 10-31\ubc88\uc9c0","url":null,"description":"\uc800\ub294 \uc815\ub9d0 \uc544\ubb34\uac83\ub3c4 \ubb3b\uc9c0\ub3c4 \ub530\uc9c0\uc9c0\ub3c4 \uc54a\uace0 \uce74\uba54\ub77c\ub97c \ubc1b\uace0 \uace0\uae30\ub97c \ub4e0\ub4e0\ud788 \uba39\uc5ec\uc11c \uad50\ud1b5\ube44\uae4c\uc9c0 \uc190\uc5d0 \uc950\uc5b4\uc8fc\uace0 \ubcf4\ub0b4\uc904 \uc218 \uc788\uc74d\ub2c8\ub2e4,, \uc800\ub294 \uc815\ub9d0 \ub108\ubb34\ub098 \uac04\uc808\ud569\ub2c8\ub2e4,, \uce74\uba54\ub77c \ub3cc\ub824\uc8fc\uc138\uc694,,","protected":false,"verified":false,"followers_count":941,"friends_count":99,"listed_count":38,"favourites_count":880,"statuses_count":3563,"created_at":"Fri Mar 06 11:17:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614063833158516736\/WOUod41g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614063833158516736\/WOUod41g.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663307709484130304\/QFs0QdIX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663307709484130304\/QFs0QdIX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3064611276\/1446205845","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2131,"favorite_count":101,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663668768023924736,"id_str":"663668768023924736","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","url":"https:\/\/t.co\/JxnWI9KmEB","display_url":"pic.twitter.com\/JxnWI9KmEB","expanded_url":"http:\/\/twitter.com\/PinkWangza\/status\/663669094139359232\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663668768023924736,"id_str":"663668768023924736","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","url":"https:\/\/t.co\/JxnWI9KmEB","display_url":"pic.twitter.com\/JxnWI9KmEB","expanded_url":"http:\/\/twitter.com\/PinkWangza\/status\/663669094139359232\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PinkWangza","name":"\ud551\ud504","id":3064611276,"id_str":"3064611276","indices":[3,14]}],"symbols":[],"media":[{"id":663668768023924736,"id_str":"663668768023924736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","url":"https:\/\/t.co\/JxnWI9KmEB","display_url":"pic.twitter.com\/JxnWI9KmEB","expanded_url":"http:\/\/twitter.com\/PinkWangza\/status\/663669094139359232\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663669094139359232,"source_status_id_str":"663669094139359232","source_user_id":3064611276,"source_user_id_str":"3064611276"}]},"extended_entities":{"media":[{"id":663668768023924736,"id_str":"663668768023924736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTOm6WUAAFa-Z.jpg","url":"https:\/\/t.co\/JxnWI9KmEB","display_url":"pic.twitter.com\/JxnWI9KmEB","expanded_url":"http:\/\/twitter.com\/PinkWangza\/status\/663669094139359232\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663669094139359232,"source_status_id_str":"663669094139359232","source_user_id":3064611276,"source_user_id_str":"3064611276"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893520896,"id_str":"663727946893520896","text":"Jalan lama satu kali (@ Taman Sutera Saleng, Kulai Johor in Kulai, Johor) https:\/\/t.co\/pV8u527nLU","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1384760204,"id_str":"1384760204","name":"Al ameen","screen_name":"Amingedebush","location":"Johor - Melaka ","url":null,"description":null,"protected":false,"verified":false,"followers_count":502,"friends_count":353,"listed_count":1,"favourites_count":690,"statuses_count":6411,"created_at":"Sat Apr 27 15:41:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631401126265405440\/iMrRSAwW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631401126265405440\/iMrRSAwW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1384760204\/1439372732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[1.62741728,103.62577216]},"coordinates":{"type":"Point","coordinates":[103.62577216,1.62741728]},"place":{"id":"299bcf9388bcaef4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/299bcf9388bcaef4.json","place_type":"city","name":"Senai Kulai","full_name":"Senai Kulai, Johor","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[103.449616,1.522834],[103.449616,1.767571],[103.738190,1.767571],[103.738190,1.522834]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pV8u527nLU","expanded_url":"https:\/\/www.swarmapp.com\/c\/jXqel2azill","display_url":"swarmapp.com\/c\/jXqel2azill","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080048665"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946897555456,"id_str":"663727946897555456","text":"\u091c\u0902\u0917\u0932 \u0930\u093e\u091c 2 https:\/\/t.co\/Ifhlnqro99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125274452,"id_str":"125274452","name":"Rakesh Ranjan","screen_name":"rakuji","location":"patna","url":null,"description":"Human, Learner,Reader, Stock market Buff,Poet, Engineer,Believer in miracle n Global citizenship .\r\ntrying to be better everyday ..","protected":false,"verified":false,"followers_count":237,"friends_count":312,"listed_count":8,"favourites_count":189,"statuses_count":6818,"created_at":"Mon Mar 22 08:26:42 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1229820339\/6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1229820339\/6_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727325784117248,"quoted_status_id_str":"663727325784117248","quoted_status":{"created_at":"Mon Nov 09 14:38:20 +0000 2015","id":663727325784117248,"id_str":"663727325784117248","text":"\u0906\u0930\u093e-\u0926\u094b \u0917\u0941\u091f\u094b\u0902 \u092e\u0947\u0902 \u091c\u092e\u0915\u0930 \u092e\u093e\u0930\u092a\u0940\u091f, 2 \u0918\u093e\u092f\u0932 \n\u091a\u0941\u0928\u093e\u0935 \u092a\u0930\u093f\u0923\u093e\u092e \u0915\u094b \u0932\u0947\u0915\u0930 \u0939\u0941\u0906 \u0935\u093f\u0935\u093e\u0926 \n\u091a\u093e\u0902\u0926\u0940 \u0925\u093e\u0928\u093e \u0915\u0947 \u091a\u093e\u0902\u0926\u0940 \u091a\u094c\u0915 \u0915\u0940 \u0918\u091f\u0928\u093e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1731129494,"id_str":"1731129494","name":"Etv Bihar","screen_name":"BiharEtv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13705,"friends_count":92,"listed_count":48,"favourites_count":13,"statuses_count":48582,"created_at":"Thu Sep 05 07:16:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000413947535\/b1377244a750ad02cfdf5e4b0709e37a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000413947535\/b1377244a750ad02cfdf5e4b0709e37a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ifhlnqro99","expanded_url":"https:\/\/twitter.com\/BiharEtv\/status\/663727325784117248","display_url":"twitter.com\/BiharEtv\/statu\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ne","timestamp_ms":"1447080048666"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946885038081,"id_str":"663727946885038081","text":"gomezalexandr15: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitennicell4: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3955183452,"id_str":"3955183452","name":"lepitens","screen_name":"lepitens2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":96,"listed_count":15,"favourites_count":0,"statuses_count":57182,"created_at":"Tue Oct 20 06:36:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[91,111]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080048663"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859872260,"id_str":"663727946859872260","text":"RT @SportsCenter: Crazy Stat of Day: Andre Drummond has 122 Pts and 122 Reb (20.3 PPG, 20.3 RPG) through 6 games. https:\/\/t.co\/lkC7h0v5nZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411899714,"id_str":"411899714","name":"Kyle Whitehead","screen_name":"KyWhite30","location":"St. Cloud","url":null,"description":"#family\u2708 810-320","protected":false,"verified":false,"followers_count":256,"friends_count":251,"listed_count":1,"favourites_count":1803,"statuses_count":5560,"created_at":"Mon Nov 14 01:13:24 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526759703075127296\/dOfTEJBe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526759703075127296\/dOfTEJBe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411899714\/1352394523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:05 +0000 2015","id":663715181499916288,"id_str":"663715181499916288","text":"Crazy Stat of Day: Andre Drummond has 122 Pts and 122 Reb (20.3 PPG, 20.3 RPG) through 6 games. https:\/\/t.co\/lkC7h0v5nZ","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26257166,"id_str":"26257166","name":"SportsCenter","screen_name":"SportsCenter","location":"Bristol, CT","url":null,"description":"All things sports. Nominate top plays using #SCtop10. *If you tweet or otherwise send us content, you consent to ESPN using and showcasing it in any media.*","protected":false,"verified":true,"followers_count":21854683,"friends_count":1602,"listed_count":40181,"favourites_count":547,"statuses_count":68731,"created_at":"Tue Mar 24 15:28:02 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26257166\/1441721587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3920,"favorite_count":4060,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SportsCenter","name":"SportsCenter","id":26257166,"id_str":"26257166","indices":[3,16]}],"symbols":[],"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715181499916288,"source_status_id_str":"663715181499916288","source_user_id":26257166,"source_user_id_str":"26257166"}]},"extended_entities":{"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715181499916288,"source_status_id_str":"663715181499916288","source_user_id":26257166,"source_user_id_str":"26257166"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876608512,"id_str":"663727946876608512","text":"@weareone_km \n\n\u7528\u4e8b\u306a\u304f\u3066\u3082\u3058\u3083\u3093\u3058\u3083\u3093\n\u8aad\u3093\u3067\u304f\u3060\u305b\u3047\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727588544634880,"in_reply_to_status_id_str":"663727588544634880","in_reply_to_user_id":3877829953,"in_reply_to_user_id_str":"3877829953","in_reply_to_screen_name":"weareone_km","user":{"id":3185365861,"id_str":"3185365861","name":"\u304b\u3077\u308a\u3053\u30c6\u30c6\u3064\u3041\u3093","screen_name":"Korea_ikumi","location":"\u3061\u306a\u307f\u306b\u30ac\u30c3\u30c4\u30ea\u3061\u3083\u307f\u30da\u30f3\u3002","url":null,"description":"\u304b\u3077\u308a\u3053\u5927\u597d\u304d\u30c6\u30c6\u3088\u308a\u304a\u308b : \u305b\u3076\u3061\u30b8\u30b9\u30ad\u30c6\u30eb\u3002\u4ed6\u96d1\u98df : 9 8 \u798f\u5ca1 ( \u6211\u306b\u4f1a\u3044\u306b\u6765\u3044\u30dd\u30ed\u30ef\u30cb\u30e0\u3088 ) \u3010@BTS_twt\u3011","protected":false,"verified":false,"followers_count":389,"friends_count":529,"listed_count":5,"favourites_count":2746,"statuses_count":4823,"created_at":"Mon May 04 15:01:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660796431880445952\/kXm2ZGH5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660796431880445952\/kXm2ZGH5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185365861\/1446868015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"weareone_km","name":"\ud06c\ub9ac\uc2a4\ud0c8","id":3877829953,"id_str":"3877829953","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868232192,"id_str":"663727946868232192","text":"@SuperAlexGaming @BethanyMota ik but I have my positive reasons why I love Beth","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663582766030696450,"in_reply_to_status_id_str":"663582766030696450","in_reply_to_user_id":3226665248,"in_reply_to_user_id_str":"3226665248","in_reply_to_screen_name":"SuperAlexGaming","user":{"id":3267335858,"id_str":"3267335858","name":"~Kitty_is_Beth_BFF~","screen_name":"Kitty_luv_Beth_","location":"Bethany Mota's world \u2600\ufe0f","url":"http:\/\/ask.fm\/demi_luv_swifty_life_13","description":"\u007bBeth is my new BFF\u007d Kitty.. 8th grade.. 13.. I model and sing! Beth followed 8-3-15 MET BETHANY MOTA ~10-20-15~!! YAY!!!!! \u007bbiggest motavator\u007d @bethanymota","protected":false,"verified":false,"followers_count":284,"friends_count":835,"listed_count":4,"favourites_count":5696,"statuses_count":4329,"created_at":"Fri Jul 03 18:17:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662819822468665345\/EdJuw3Gw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662819822468665345\/EdJuw3Gw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267335858\/1446382305","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SuperAlexGaming","name":"SuperAlexGaming","id":3226665248,"id_str":"3226665248","indices":[0,16]},{"screen_name":"BethanyMota","name":" Bethany Mota \u221e ","id":46832898,"id_str":"46832898","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859876352,"id_str":"663727946859876352","text":"RT @oso_kamo: \u5144\u8cb4\u306b\u96a0\u3057\u4e8b\u306f\u826f\u304f\u306a\u3044\u3067\u3057\u3087\uff5e\uff1f https:\/\/t.co\/kiwDGDxN40","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4049111112,"id_str":"4049111112","name":"\ub07c\ud480\ub9c8\uce20","screen_name":"looney__osmt","location":"\ud654\uc694\uc77c \ubc24\ub9c8\ub2e4 \uc6d0\uc791 \ub355\uc9c8\ud3ed\ud2b8 \uc8fc\uc758","url":null,"description":"* \uc624\uc18c\ub9c8\uce20\uc0c1 \ub355\uc9c8 \ud569\ub2c8\ub2e4 * \ucd5c\uc560 \uc96c\uc2dc\ub9c8\uce20 \uc8fc\ub85c \uc96c\uc2dc\ub978 * \uc22b\uc790\ub9c8\uce20(\uc774\uce58\uc96c\uc2dc) \ucd71\ucefe * \ub9c9\ub0b4\uc870 \uc0ac\ub791\ud568 \uc54c\ud2f0\ub9ce\uc544\uc6a5 * \ubcf8\uacc4 @looney2990_","protected":false,"verified":false,"followers_count":81,"friends_count":43,"listed_count":1,"favourites_count":746,"statuses_count":1372,"created_at":"Wed Oct 28 18:25:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661582873258930176\/4otk7i42_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661582873258930176\/4otk7i42_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4049111112\/1446058493","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:28:34 +0000 2015","id":663377578372104192,"id_str":"663377578372104192","text":"\u5144\u8cb4\u306b\u96a0\u3057\u4e8b\u306f\u826f\u304f\u306a\u3044\u3067\u3057\u3087\uff5e\uff1f https:\/\/t.co\/kiwDGDxN40","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1152058802,"id_str":"1152058802","name":"\u30ab\u30e2\u7af9","screen_name":"oso_kamo","location":null,"url":null,"description":"\u304a\u305d\u677e\u3055\u3093\u57a2\uff01\u4e00\u677e\u63a8\u3057\u677e\uff01","protected":false,"verified":false,"followers_count":1219,"friends_count":41,"listed_count":25,"favourites_count":149,"statuses_count":142,"created_at":"Tue Feb 05 21:03:03 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"9988AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661475559612944384\/ap_y1FMt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661475559612944384\/ap_y1FMt_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":263,"favorite_count":1101,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663377577021587456,"id_str":"663377577021587456","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","url":"https:\/\/t.co\/kiwDGDxN40","display_url":"pic.twitter.com\/kiwDGDxN40","expanded_url":"http:\/\/twitter.com\/oso_kamo\/status\/663377578372104192\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":630,"resize":"fit"},"small":{"w":340,"h":357,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663377577021587456,"id_str":"663377577021587456","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","url":"https:\/\/t.co\/kiwDGDxN40","display_url":"pic.twitter.com\/kiwDGDxN40","expanded_url":"http:\/\/twitter.com\/oso_kamo\/status\/663377578372104192\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":630,"resize":"fit"},"small":{"w":340,"h":357,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oso_kamo","name":"\u30ab\u30e2\u7af9","id":1152058802,"id_str":"1152058802","indices":[3,12]}],"symbols":[],"media":[{"id":663377577021587456,"id_str":"663377577021587456","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","url":"https:\/\/t.co\/kiwDGDxN40","display_url":"pic.twitter.com\/kiwDGDxN40","expanded_url":"http:\/\/twitter.com\/oso_kamo\/status\/663377578372104192\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":630,"resize":"fit"},"small":{"w":340,"h":357,"resize":"fit"}},"source_status_id":663377578372104192,"source_status_id_str":"663377578372104192","source_user_id":1152058802,"source_user_id_str":"1152058802"}]},"extended_entities":{"media":[{"id":663377577021587456,"id_str":"663377577021587456","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTKZD5UwAANDEi.png","url":"https:\/\/t.co\/kiwDGDxN40","display_url":"pic.twitter.com\/kiwDGDxN40","expanded_url":"http:\/\/twitter.com\/oso_kamo\/status\/663377578372104192\/photo\/1","type":"photo","sizes":{"large":{"w":700,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":630,"resize":"fit"},"small":{"w":340,"h":357,"resize":"fit"}},"source_status_id":663377578372104192,"source_status_id_str":"663377578372104192","source_user_id":1152058802,"source_user_id_str":"1152058802"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946880782336,"id_str":"663727946880782336","text":"@_sumi5 \u307b\u3093\u307e\u697d\u3057\u307f\u306b\u3057\u3066\u308b\u3088\u30fc\u203c\ufe0e(\u30ce>\u03c9<)\u30ce\n\u9006\u306b\u3084\u308a\u305f\u3044\u306e\u3042\u3063\u305f\u3089\u8a00\u3063\u3066\u306d\uff01\n\u3066\u3086\u304b\u5185\u756a\u5408\u308f\u305b\u697d\u3057\u307f\u306b\u3057\u3066\u308b\u203c\ufe0e\uff61:+((*\u2032\u8278`))+:\uff61","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663485745600921600,"in_reply_to_status_id_str":"663485745600921600","in_reply_to_user_id":3243037772,"in_reply_to_user_id_str":"3243037772","in_reply_to_screen_name":"_sumi5","user":{"id":128266249,"id_str":"128266249","name":"\u4e03\u4f0a","screen_name":"nanaishinn","location":"\u8c4a\u5f8c\u56fd(\u5927\u962a)","url":"http:\/\/touch.pixiv.net\/novel\/member.php","description":"\u6210\u4eba\u6e08\u307f\u306eT&B\u30af\u30e9\u30b9\u30bf\u4e14\u3064\u5be9\u795e\u8005\u3067\u8150\u5973\u5b50\u306a\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3002 \u304a\u3058\u3055\u3093\u3068\u5200\u5263\u7537\u5b50\u3068\u30a2\u30a4\u30c9\u30eb\u306e\u53ef\u611b\u3055\u306b\u9023\u65e5\u866b\u306e\u606f\u3002 \u305f\u307e\u306b\u7269\u66f8\u3067\u3001\u4e3b\u306b\u95a2\u897f\u306b\u3066\u7d30\u3005\u3068\u3057\u305f\u30b3\u30b9\u30d7\u30ec\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":98,"friends_count":609,"listed_count":1,"favourites_count":2480,"statuses_count":7187,"created_at":"Wed Mar 31 16:28:34 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633614865861468160\/CXMZ1HbV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633614865861468160\/CXMZ1HbV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128266249\/1438970195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_sumi5","name":"\u3059\u307f\u3063\u3053","id":3243037772,"id_str":"3243037772","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048662"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946876735488,"id_str":"663727946876735488","text":"#Periscope'ta CANLI: yurt g\u00fcnleti https:\/\/t.co\/NZumIOYips","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2993879027,"id_str":"2993879027","name":"\u00c7etin B\u00fctl\u00fcler","screen_name":"ButlulerCetin","location":"kocaeli kullar myo","url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":55,"listed_count":0,"favourites_count":4,"statuses_count":9,"created_at":"Fri Jan 23 09:28:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558557918287888384\/y7HwusNO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558557918287888384\/y7HwusNO_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/NZumIOYips","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCn7zU2Mjk4MTN8MVBsS1FXT21CTFZKRVOjIKP80c6RhzeD0oQc-P5PtW3vWmAmZzhvCgHAKBhE","display_url":"periscope.tv\/w\/aRCn7zU2Mjk4\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080048661"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946889363456,"id_str":"663727946889363456","text":"RT @Quirkscarco: View our range of #Audi cars here. >>> https:\/\/t.co\/9ta8oLsnFm #UsedCars #Essex #Wickford #BMW #Jaguar #Porsche https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3407019809,"id_str":"3407019809","name":"Watch Southend","screen_name":"WatchSouthend","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38,"friends_count":48,"listed_count":98,"favourites_count":92,"statuses_count":10191,"created_at":"Fri Aug 07 10:05:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634300048755556352\/1-oricUo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634300048755556352\/1-oricUo_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:04:25 +0000 2015","id":663688589465776128,"id_str":"663688589465776128","text":"View our range of #Audi cars here. >>> https:\/\/t.co\/9ta8oLsnFm #UsedCars #Essex #Wickford #BMW #Jaguar #Porsche https:\/\/t.co\/IQ3Uzr2AeG","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360596508,"id_str":"360596508","name":"Quirks Car Company","screen_name":"Quirkscarco","location":"NEAR LONDON ESSEX SS129JG","url":"http:\/\/www.quirkscarco.co.uk","description":"Award winning family business car dealership providing sports #cars #prestige #4x4 priding ourselves on customer service.we don't sell you buy #brightpigwinner","protected":false,"verified":false,"followers_count":2281,"friends_count":1203,"listed_count":53,"favourites_count":312,"statuses_count":9510,"created_at":"Tue Aug 23 13:22:17 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000020108636\/76c228158ee2acc502ee0d4a6e76c3a9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000020108636\/76c228158ee2acc502ee0d4a6e76c3a9.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419793474607513600\/MsTlp0Ae_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419793474607513600\/MsTlp0Ae_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360596508\/1407434678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":0,"entities":{"hashtags":[{"text":"Audi","indices":[18,23]},{"text":"UsedCars","indices":[72,81]},{"text":"Essex","indices":[82,88]},{"text":"Wickford","indices":[89,98]},{"text":"BMW","indices":[99,103]},{"text":"Jaguar","indices":[104,111]},{"text":"Porsche","indices":[112,120]}],"urls":[{"url":"https:\/\/t.co\/9ta8oLsnFm","expanded_url":"http:\/\/bit.ly\/QuirksAudi","display_url":"bit.ly\/QuirksAudi","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":663688587691606017,"id_str":"663688587691606017","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","url":"https:\/\/t.co\/IQ3Uzr2AeG","display_url":"pic.twitter.com\/IQ3Uzr2AeG","expanded_url":"http:\/\/twitter.com\/Quirkscarco\/status\/663688589465776128\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":614,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663688587691606017,"id_str":"663688587691606017","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","url":"https:\/\/t.co\/IQ3Uzr2AeG","display_url":"pic.twitter.com\/IQ3Uzr2AeG","expanded_url":"http:\/\/twitter.com\/Quirkscarco\/status\/663688589465776128\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":614,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Audi","indices":[35,40]},{"text":"UsedCars","indices":[89,98]},{"text":"Essex","indices":[99,105]},{"text":"Wickford","indices":[106,115]},{"text":"BMW","indices":[116,120]},{"text":"Jaguar","indices":[121,128]},{"text":"Porsche","indices":[129,137]}],"urls":[{"url":"https:\/\/t.co\/9ta8oLsnFm","expanded_url":"http:\/\/bit.ly\/QuirksAudi","display_url":"bit.ly\/QuirksAudi","indices":[65,88]}],"user_mentions":[{"screen_name":"Quirkscarco","name":"Quirks Car Company","id":360596508,"id_str":"360596508","indices":[3,15]}],"symbols":[],"media":[{"id":663688587691606017,"id_str":"663688587691606017","indices":[148,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","url":"https:\/\/t.co\/IQ3Uzr2AeG","display_url":"pic.twitter.com\/IQ3Uzr2AeG","expanded_url":"http:\/\/twitter.com\/Quirkscarco\/status\/663688589465776128\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":614,"resize":"fit"}},"source_status_id":663688589465776128,"source_status_id_str":"663688589465776128","source_user_id":360596508,"source_user_id_str":"360596508"}]},"extended_entities":{"media":[{"id":663688587691606017,"id_str":"663688587691606017","indices":[148,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlQQ7WwAEq4dx.png","url":"https:\/\/t.co\/IQ3Uzr2AeG","display_url":"pic.twitter.com\/IQ3Uzr2AeG","expanded_url":"http:\/\/twitter.com\/Quirkscarco\/status\/663688589465776128\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":614,"resize":"fit"}},"source_status_id":663688589465776128,"source_status_id_str":"663688589465776128","source_user_id":360596508,"source_user_id_str":"360596508"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048664"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946859855872,"id_str":"663727946859855872","text":"\u610f\u5916\u3068\u306b\u3042\u3063\u3066\u308b\u304b\u3082www \u3010facebook\u7248 https:\/\/t.co\/lJGS4oVbBc\u3011 https:\/\/t.co\/UUEvStHjYN","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1874690875,"id_str":"1874690875","name":"\u52d5\u7269\u3063\u3066\u3053\u3093\u306a\u306b\u9762\u767d\u3044\u3093\u3060\u305c","screen_name":"yasuanimal","location":" http:\/\/bit.ly\/181pJf3","url":null,"description":"\u52d5\u7269\u5927\u597d\u304d\u306a\u4eba\u96c6\u307e\u308c\uff5e","protected":false,"verified":false,"followers_count":407,"friends_count":410,"listed_count":0,"favourites_count":0,"statuses_count":19174,"created_at":"Tue Sep 17 08:20:18 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000468449743\/08527c83a8d1bb97bba73286b14371da_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000468449743\/08527c83a8d1bb97bba73286b14371da_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lJGS4oVbBc","expanded_url":"https:\/\/www.facebook.com\/animalyasu","display_url":"facebook.com\/animalyasu","indices":[25,48]}],"user_mentions":[],"symbols":[],"media":[{"id":410343846971592704,"id_str":"410343846971592704","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BbHVjgKCUAA7Kn9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BbHVjgKCUAA7Kn9.jpg","url":"https:\/\/t.co\/UUEvStHjYN","display_url":"pic.twitter.com\/UUEvStHjYN","expanded_url":"http:\/\/twitter.com\/twiscudetto27\/status\/410343846963204096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}},"source_status_id":410343846963204096,"source_status_id_str":"410343846963204096","source_user_id":1899694254,"source_user_id_str":"1899694254"}]},"extended_entities":{"media":[{"id":410343846971592704,"id_str":"410343846971592704","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BbHVjgKCUAA7Kn9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BbHVjgKCUAA7Kn9.jpg","url":"https:\/\/t.co\/UUEvStHjYN","display_url":"pic.twitter.com\/UUEvStHjYN","expanded_url":"http:\/\/twitter.com\/twiscudetto27\/status\/410343846963204096\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}},"source_status_id":410343846963204096,"source_status_id_str":"410343846963204096","source_user_id":1899694254,"source_user_id_str":"1899694254"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872455168,"id_str":"663727946872455168","text":"@AfirAzmi hahahahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726906341134336,"in_reply_to_status_id_str":"663726906341134336","in_reply_to_user_id":1328966424,"in_reply_to_user_id_str":"1328966424","in_reply_to_screen_name":"AfirAzmi","user":{"id":311370669,"id_str":"311370669","name":"hana","screen_name":"hanaghffr","location":"AfirAzmi's","url":null,"description":"awak rilek jap boleh?","protected":false,"verified":false,"followers_count":1235,"friends_count":300,"listed_count":2,"favourites_count":2594,"statuses_count":38608,"created_at":"Sun Jun 05 10:14:30 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6B0E20","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458587915719675904\/uxfkRlH9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458587915719675904\/uxfkRlH9.jpeg","profile_background_tile":true,"profile_link_color":"BD575C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CFBDBF","profile_text_color":"FCD0CF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663456905256239104\/tVLWEnMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663456905256239104\/tVLWEnMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311370669\/1446718397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AfirAzmi","name":"Rapatkan Saf","id":1328966424,"id_str":"1328966424","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946860011520,"id_str":"663727946860011520","text":"Self Care for Youth Pastors During the Holidays (Episode 47) https:\/\/t.co\/4fnU7kGlpm New YMCollective Article! #youthmin","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292357310,"id_str":"292357310","name":"andrew","screen_name":"goin2daCHAPPELL","location":null,"url":null,"description":"A piece of string walks into a bar...","protected":false,"verified":false,"followers_count":263,"friends_count":259,"listed_count":2,"favourites_count":395,"statuses_count":3321,"created_at":"Tue May 03 14:35:07 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574225690377199616\/t-YJRWQm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574225690377199616\/t-YJRWQm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292357310\/1433331104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"youthmin","indices":[111,120]}],"urls":[{"url":"https:\/\/t.co\/4fnU7kGlpm","expanded_url":"http:\/\/ift.tt\/1kFQtg3","display_url":"ift.tt\/1kFQtg3","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048657"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946868219904,"id_str":"663727946868219904","text":"\u3080\u304e\u3085\u3063 https:\/\/t.co\/z6laFkcxog","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314889920,"id_str":"3314889920","name":"Koto@\u30c5\u30ab\u57a2","screen_name":"92efhIzEqSW9c4c","location":null,"url":null,"description":"\u30c5\u30ab\u306b\u6eba\u308c\u305f\u4eba\u3067\u3059\u1559( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)\u1557\u82b1&\u6708love\u3067\u3082\u4e3b\u306b\u82b1\u3002 \u3054\u8d14\u5c53\u69d8\u306f\u660e\u65e5\u6d77\u308a\u304a\u3055\u3093\uff01\u7f8e\u5f25\u3061\u3083\u3093\u3042\u30fc\u3055\u308c\u3044\u3061\u3083\u3093\u307e\u304b\u3058\u3047\u3060\u3044\u3082\u3093\u3082\u3068\u3066\u3082\u30e9\u30d6\u3067\u3059\u3002\u307f\u308a\u304a\u3092\u611b\u3057\u3066\u3084\u307e\u306a\u3044\u4e2d\u4e8c|\u03c9`) \u591c\u8352\u308c\u307e\u3059\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":138,"friends_count":175,"listed_count":0,"favourites_count":2213,"statuses_count":556,"created_at":"Fri Aug 14 08:43:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643050105872879616\/h_HSh6D3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643050105872879616\/h_HSh6D3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314889920\/1443787826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727930334277632,"id_str":"663727930334277632","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCTsUcAAKYA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCTsUcAAKYA_.jpg","url":"https:\/\/t.co\/z6laFkcxog","display_url":"pic.twitter.com\/z6laFkcxog","expanded_url":"http:\/\/twitter.com\/92efhIzEqSW9c4c\/status\/663727946868219904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"large":{"w":960,"h":697,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727930334277632,"id_str":"663727930334277632","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCTsUcAAKYA_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCTsUcAAKYA_.jpg","url":"https:\/\/t.co\/z6laFkcxog","display_url":"pic.twitter.com\/z6laFkcxog","expanded_url":"http:\/\/twitter.com\/92efhIzEqSW9c4c\/status\/663727946868219904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":246,"resize":"fit"},"medium":{"w":600,"h":435,"resize":"fit"},"large":{"w":960,"h":697,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048659"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946897555457,"id_str":"663727946897555457","text":"@ttx__1234 \n\u305d\u308c\u306a\u30fc\ud83d\ude44\n\u98df\u3079\u3066\u308b\u6642\u3068\u5bdd\u3066\u308b\u6642\u304c1\u756a\u5e78\u305b\ud83d\udc97\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727659235479552,"in_reply_to_status_id_str":"663727659235479552","in_reply_to_user_id":1658088860,"in_reply_to_user_id_str":"1658088860","in_reply_to_screen_name":"ttx__1234","user":{"id":2923824523,"id_str":"2923824523","name":"\u5ca1\u5b89\u672a\u6765","screen_name":"kfOEpvcx37PRLcR","location":"\u3050\u3063\u3059\u308a\u7720\u308c\u308b\u5e03\u56e3\u306e\u4e2d","url":null,"description":"\u3061\u308a\u3085\u3046\u2461 \u7b11\u3063\u3066\u3044\u308c\u3070\u5e78\u305b\u306f\u304f\u308b\u306f\u305a\u301c\u3002\u305a\u3063\u3068\u5bdd\u3066\u305f\u3044\u304a\u5e74\u9803\u301c\u3002\u30ad\u30f3\u30d7\u30ea.NEWS.\u30c0\u30f3\u30b9 \u30a2\u30ab\u30a6\u30f3\u30c8\u21e8","protected":false,"verified":false,"followers_count":418,"friends_count":383,"listed_count":1,"favourites_count":1786,"statuses_count":2313,"created_at":"Tue Dec 09 12:21:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661529590267953153\/1zfbIFgM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661529590267953153\/1zfbIFgM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923824523\/1446073170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttx__1234","name":"Hiro.","id":1658088860,"id_str":"1658088860","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080048666"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946897752064,"id_str":"663727946897752064","text":"RT @maruliferrando: #BuenLunes arrancando la semana demostrando q podemos ser un pais mejor.Un pais tan rico con tanta gente que quiere cre\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3464889137,"id_str":"3464889137","name":"Irene Lopez","screen_name":"irene231313","location":"Ciudad Aut\u00f3noma de Buenos Aires, Argentina","url":null,"description":"Estudios universitarios incompletos (Lic.en Trabajo Social) una pena. No me gusta q me digan q decir, escuchar o ver. La vita e bella!!!!","protected":false,"verified":false,"followers_count":272,"friends_count":338,"listed_count":4,"favourites_count":4234,"statuses_count":12513,"created_at":"Fri Aug 28 04:42:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639291354632351744\/HVw45GBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639291354632351744\/HVw45GBB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:03 +0000 2015","id":663711651020070912,"id_str":"663711651020070912","text":"#BuenLunes arrancando la semana demostrando q podemos ser un pais mejor.Un pais tan rico con tanta gente que quiere crecer @FabianPereyra91","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1116233036,"id_str":"1116233036","name":"Mar\u00eda Ferrando ","screen_name":"maruliferrando","location":null,"url":null,"description":"21 a\u00f1os. Psicologia UBA. T\u00eda de Zoe. CAD Ministerio de Educaci\u00f3n GBA. ComPROmetida por un cambio cc @FabianPereyra91 @aforchieri @diegosantilli","protected":false,"verified":false,"followers_count":213,"friends_count":169,"listed_count":0,"favourites_count":2,"statuses_count":4896,"created_at":"Thu Jan 24 08:01:51 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/771885130\/a9efe87a5a5088a3992f68c6379a3957.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/771885130\/a9efe87a5a5088a3992f68c6379a3957.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632175556868603904\/2hX9y7Qs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632175556868603904\/2hX9y7Qs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1116233036\/1439583657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[{"text":"BuenLunes","indices":[0,10]}],"urls":[],"user_mentions":[{"screen_name":"FabianPereyra91","name":"Fabian Pereyra","id":1032863628,"id_str":"1032863628","indices":[123,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BuenLunes","indices":[20,30]}],"urls":[],"user_mentions":[{"screen_name":"maruliferrando","name":"Mar\u00eda Ferrando ","id":1116233036,"id_str":"1116233036","indices":[3,18]},{"screen_name":"FabianPereyra91","name":"Fabian Pereyra","id":1032863628,"id_str":"1032863628","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080048666"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946872549376,"id_str":"663727946872549376","text":"Found a Transponder Snail!\nGet an inside look at the ever-cheerful Buggy Pirates!\n#TreCru https:\/\/t.co\/yYWPPa5krI","source":"\u003ca href=\"http:\/\/www.bandaigames.channel.or.jp\/list\/one_main\/tc\/en\/\" rel=\"nofollow\"\u003eONE PIECE TREASURE CRUISE\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4092703865,"id_str":"4092703865","name":"badboy091290@gmail.c","screen_name":"MegaMrRomeo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":30,"created_at":"Sun Nov 01 21:31:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[82,89]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727946671251456,"id_str":"663727946671251456","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDQjW4AArcsi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDQjW4AArcsi.png","url":"https:\/\/t.co\/yYWPPa5krI","display_url":"pic.twitter.com\/yYWPPa5krI","expanded_url":"http:\/\/twitter.com\/MegaMrRomeo\/status\/663727946872549376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727946671251456,"id_str":"663727946671251456","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDQjW4AArcsi.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDQjW4AArcsi.png","url":"https:\/\/t.co\/yYWPPa5krI","display_url":"pic.twitter.com\/yYWPPa5krI","expanded_url":"http:\/\/twitter.com\/MegaMrRomeo\/status\/663727946872549376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048660"} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946889347072,"id_str":"663727946889347072","text":"https:\/\/t.co\/pAV8kbG4Yc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530913162,"id_str":"2530913162","name":"sui generis ","screen_name":"tonyk2169","location":" ","url":null,"description":"Beauty and Arsenal. Anti - appeasers and PC media. Self- love is not so vile a sin as self neglecting. Victoria Concordia Crescit","protected":false,"verified":false,"followers_count":6874,"friends_count":6765,"listed_count":74,"favourites_count":13933,"statuses_count":31107,"created_at":"Wed May 28 21:41:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471770889986383872\/dzd77EnF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471770889986383872\/dzd77EnF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2530913162\/1427871997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727946075611136,"id_str":"663727946075611136","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDOVWIAAsxpz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDOVWIAAsxpz.jpg","url":"https:\/\/t.co\/pAV8kbG4Yc","display_url":"pic.twitter.com\/pAV8kbG4Yc","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727946889347072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":607,"h":403,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727946075611136,"id_str":"663727946075611136","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDOVWIAAsxpz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDOVWIAAsxpz.jpg","url":"https:\/\/t.co\/pAV8kbG4Yc","display_url":"pic.twitter.com\/pAV8kbG4Yc","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727946889347072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":607,"h":403,"resize":"fit"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080048664"} +{"delete":{"status":{"id":655350478935486464,"id_str":"655350478935486464","user_id":3288527683,"user_id_str":"3288527683"},"timestamp_ms":"1447080048990"}} +{"delete":{"status":{"id":517982455345590272,"id_str":"517982455345590272","user_id":25797414,"user_id_str":"25797414"},"timestamp_ms":"1447080049083"}} +{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946893430784,"id_str":"663727946893430784","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/DJdMOcRTNz","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":433071613,"id_str":"433071613","name":"\u2654\u2661","screen_name":"SweetKissesNLuv","location":null,"url":null,"description":"@Dope_XLife \u2665 Becoming a great healthcare provider! #EMS","protected":false,"verified":false,"followers_count":1012,"friends_count":708,"listed_count":1,"favourites_count":820,"statuses_count":44815,"created_at":"Sat Dec 10 03:26:59 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623330333979619328\/xhM5mPVY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623330333979619328\/xhM5mPVY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/433071613\/1402529990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DJdMOcRTNz","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080048665"} +{"delete":{"status":{"id":443878888985223168,"id_str":"443878888985223168","user_id":440654219,"user_id_str":"440654219"},"timestamp_ms":"1447080049286"}} +{"delete":{"status":{"id":521316151100727296,"id_str":"521316151100727296","user_id":2449787578,"user_id_str":"2449787578"},"timestamp_ms":"1447080049360"}} +{"delete":{"status":{"id":449922990109888513,"id_str":"449922990109888513","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080049516"}} +{"delete":{"status":{"id":651397590706167808,"id_str":"651397590706167808","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080049579"}} +{"delete":{"status":{"id":663718329324978177,"id_str":"663718329324978177","user_id":3163539769,"user_id_str":"3163539769"},"timestamp_ms":"1447080049557"}} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058509824,"id_str":"663727951058509824","text":"RT @inspirou: Olha ai o mundo girando e a gente se esbarrando outra vez","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144387891,"id_str":"144387891","name":"dri*","screen_name":"a_eulalio","location":"#Ludmilla \u2764","url":null,"description":null,"protected":false,"verified":false,"followers_count":494,"friends_count":315,"listed_count":4,"favourites_count":6396,"statuses_count":32454,"created_at":"Sun May 16 04:30:57 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631298104399122432\/FZ1rA1DJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631298104399122432\/FZ1rA1DJ.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652135432264785920\/CupqN5BR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652135432264785920\/CupqN5BR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144387891\/1445797161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:08 +0000 2015","id":663727778617950208,"id_str":"663727778617950208","text":"Olha ai o mundo girando e a gente se esbarrando outra vez","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551275401,"id_str":"551275401","name":"\u2600","screen_name":"inspirou","location":null,"url":"http:\/\/facebook.com\/inspirou","description":"\u2709 inspirou@outlook.com.br","protected":false,"verified":false,"followers_count":1086051,"friends_count":20,"listed_count":639,"favourites_count":107,"statuses_count":50888,"created_at":"Wed Apr 11 18:00:13 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503261701941125120\/HXIDSLVI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503261701941125120\/HXIDSLVI.png","profile_background_tile":true,"profile_link_color":"9D9D9D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"1725EB","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619619231022252032\/HCic7XVU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619619231022252032\/HCic7XVU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551275401\/1436565861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inspirou","name":"\u2600","id":551275401,"id_str":"551275401","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951071027200,"id_str":"663727951071027200","text":"RT @TeamShawnSpain: es un angel\nhttps:\/\/t.co\/Pgn4ZVc1jJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":326839636,"id_str":"326839636","name":"i met shawn \/\/ maria","screen_name":"bieberneverfall","location":"seville","url":null,"description":"I saw my two angels and hugged one of them.","protected":false,"verified":false,"followers_count":12550,"friends_count":9727,"listed_count":60,"favourites_count":38763,"statuses_count":111351,"created_at":"Thu Jun 30 15:37:48 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445240848016363520\/tVtJ_Vps.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445240848016363520\/tVtJ_Vps.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"180018","profile_text_color":"D8FF00","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660899361291902977\/1HHJiJu4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660899361291902977\/1HHJiJu4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/326839636\/1446405479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727903117549569,"id_str":"663727903117549569","text":"es un angel\nhttps:\/\/t.co\/Pgn4ZVc1jJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2673620823,"id_str":"2673620823","name":"Shawn Mendes Spain","screen_name":"TeamShawnSpain","location":"Espa\u00f1a","url":"http:\/\/Ask.fm\/TeamShawnSpain","description":"Tu mayor y mejor fuente de informaci\u00f3n y club de fans de Shawn Mendes en Espa\u00f1a. Respaldados por @UniversalSpain. teamshawnspain@gmail.com","protected":false,"verified":false,"followers_count":7744,"friends_count":254,"listed_count":18,"favourites_count":11162,"statuses_count":15160,"created_at":"Fri Jul 04 23:16:10 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506559264832237568\/B2A75GKT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506559264832237568\/B2A75GKT.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587960478850244609\/s73SvbBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587960478850244609\/s73SvbBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2673620823\/1429015675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Pgn4ZVc1jJ","expanded_url":"https:\/\/vine.co\/v\/eLL77e5M9Ag","display_url":"vine.co\/v\/eLL77e5M9Ag","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Pgn4ZVc1jJ","expanded_url":"https:\/\/vine.co\/v\/eLL77e5M9Ag","display_url":"vine.co\/v\/eLL77e5M9Ag","indices":[32,55]}],"user_mentions":[{"screen_name":"TeamShawnSpain","name":"Shawn Mendes Spain","id":2673620823,"id_str":"2673620823","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951092011010,"id_str":"663727951092011010","text":"RT @hkhi2010: #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u0627\u0644\u062e\u064a\u0628\u0631\u064a \u064a\u0642\u0637\u0639 \u0627\u0644\u0643\u0648\u0631\u0629 \u0635\u062d \n\u0648\u064a\u0633\u0644\u0645\u0647\u0627 \u063a\u0644\u0637 \u0648\u064a\u0631\u062c\u0639 \u064a\u0642\u0637\u0639\u0647\u0627 \u0635\u062d \u0648\u064a\u0633\u0644\u0645\u0647\u0627 \u063a\u0644\u0637 \u0648\u064a\u0631\u062c\u0639 \u064a\u0642\u0637\u0639\u0647\u0627 ..\n\u0648\u0634 \u0627\u0644\u0641\u0627\u064a\u062f\u0629 !!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2481641618,"id_str":"2481641618","name":"\u0633\u0644\u0637\u0627\u0646","screen_name":"s___jaber","location":null,"url":null,"description":"\u0643\u0644\u064c \u0645\u0650\u0646\u0627 \u062c\u0645\u064a\u0644 \u0628\u0637\u0631\u064a\u0642\u0629\u064d \u0645\u0627 .. \u0637\u0644\u0627\u0644\u064a \u0627\u0644\u0647\u0648\u0649 .. \u0646\u0635\u0631\u0627\u0648\u064a .. \u062e\u064a\u0651\u0627\u0644 .","protected":false,"verified":false,"followers_count":1566,"friends_count":791,"listed_count":2,"favourites_count":392,"statuses_count":8774,"created_at":"Wed May 07 08:02:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660796492379250688\/EDW90a-m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660796492379250688\/EDW90a-m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2481641618\/1439851204","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:20 +0000 2015","id":663726822341890048,"id_str":"663726822341890048","text":"#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u0627\u0644\u062e\u064a\u0628\u0631\u064a \u064a\u0642\u0637\u0639 \u0627\u0644\u0643\u0648\u0631\u0629 \u0635\u062d \n\u0648\u064a\u0633\u0644\u0645\u0647\u0627 \u063a\u0644\u0637 \u0648\u064a\u0631\u062c\u0639 \u064a\u0642\u0637\u0639\u0647\u0627 \u0635\u062d \u0648\u064a\u0633\u0644\u0645\u0647\u0627 \u063a\u0644\u0637 \u0648\u064a\u0631\u062c\u0639 \u064a\u0642\u0637\u0639\u0647\u0627 ..\n\u0648\u0634 \u0627\u0644\u0641\u0627\u064a\u062f\u0629 !!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":937211036,"id_str":"937211036","name":"\u0646\u0635\u0640\u0640\u0640\u0640\u0631 .. # NFC","screen_name":"hkhi2010","location":"\u0627\u0644\u062c\u0628\u064a\u0644 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 _ \u0628\u064a\u0634\u0629 ","url":null,"description":"\u062a\u062c\u062f\u0646\u064a \u0623\u064a\u0646\u0645\u0627 \u064a\u062a\u0648\u0627\u062c\u062f \u0627\u0644\u0646\u0635\u0640\u0631 #\u0642\u0631\u0648\u0628_\u0627\u0644\u0635\u0646\u0627\u062f\u064a\u062f #\u0635\u0646\u0627\u062f\u064a\u062f_\u0643\u062d\u064a\u0644\u0627\u0646 #\u0633\u0641\u0631\u0627\u0621_\u0627\u0644\u0639\u0627\u0644\u0645\u064a_\u0644\u0644\u062f\u0639\u0645 #\u0645\u0637\u0627\u0646\u064a\u062e_\u0627\u0644\u0646\u0635\u0631","protected":false,"verified":false,"followers_count":16487,"friends_count":1500,"listed_count":9,"favourites_count":268,"statuses_count":20521,"created_at":"Fri Nov 09 15:58:58 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637056524825722880\/doy_4clA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637056524825722880\/doy_4clA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937211036\/1440008607","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[14,30]}],"urls":[],"user_mentions":[{"screen_name":"hkhi2010","name":"\u0646\u0635\u0640\u0640\u0640\u0640\u0631 .. # NFC","id":937211036,"id_str":"937211036","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080049666"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951083499520,"id_str":"663727951083499520","text":"Wo Tera Ek Wada Ke HaM KaBHi JuDa Na HonGey...!!\n-\n Wo Qissa HaM ApNe DiL Ko SuNa Ke, Aksar Muskuratey Hain......!! farooq from ughi","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2379006468,"id_str":"2379006468","name":"DuKHi DiL","screen_name":"AnDaz_E_DiL","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2326,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":21773,"created_at":"Sat Mar 08 16:58:05 +0000 2014","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490563302670344192\/PvBznO27_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490563302670344192\/PvBznO27_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2379006468\/1399009095","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080049664"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054270464,"id_str":"663727951054270464","text":"@k211bianca @JackJackJohnson yayyy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727576708444160,"in_reply_to_status_id_str":"663727576708444160","in_reply_to_user_id":132358425,"in_reply_to_user_id_str":"132358425","in_reply_to_screen_name":"k211bianca","user":{"id":798759954,"id_str":"798759954","name":"Julianne","screen_name":"its_julianne90","location":"one direction","url":null,"description":"I like Starbucks and long walks on the beach \u2022snapchat & instagram \/\/ julianne90","protected":false,"verified":false,"followers_count":652,"friends_count":310,"listed_count":4,"favourites_count":8357,"statuses_count":20166,"created_at":"Sun Sep 02 18:04:22 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660916592600031232\/brFP0-gA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660916592600031232\/brFP0-gA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/798759954\/1445424593","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k211bianca","name":"Bianca Marie","id":132358425,"id_str":"132358425","indices":[0,11]},{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[12,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951075278848,"id_str":"663727951075278848","text":"RT @shaaahr: \u0627\u062f\u0627\u0631\u0629 \u0627\u0644\u0627\u0647\u0644\u064a \u062a\u062d\u0627\u0631\u0628 \u0645\u0646 \u0627\u062c\u0644 \u0627\u0644\u062f\u0648\u0631\u064a \u0648\u062a\u062d\u0627\u0631\u0628 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0633\u0639\u0648\u062f\u064a \u0648\u0644\u062c\u0627\u0646\u0647 \u0648\u064a\u0623\u062a\u064a \u0645\u0646 \u064a\u062d\u0627\u0631\u0628\u0647\u0627 \u0645\u0646 \u0627\u0644\u0627\u0647\u0644\u0627\u0648\u064a\u064a\u0646 (\u0627\u0646 \u0643\u0627\u0646\u0648\u0627 \u0643\u0630\u0644\u0643 ) - \u0647\u0644 \u064a\u0631\u064a\u062f\u0648\u0646 \u0632\u0631\u0639\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489243872,"id_str":"1489243872","name":"\u062c\u0645\u0647\u0648\u0631 \u062e\u0637 \u0627\u0644\u0646\u0627\u0631","screen_name":"KAT_ALNAR","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17092,"friends_count":17069,"listed_count":18,"favourites_count":11,"statuses_count":28456,"created_at":"Fri Jun 07 02:09:27 +0000 2013","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654645991082225664\/lNUlgq4H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654645991082225664\/lNUlgq4H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1489243872\/1444914591","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:49:45 +0000 2015","id":663654699472691200,"id_str":"663654699472691200","text":"\u0627\u062f\u0627\u0631\u0629 \u0627\u0644\u0627\u0647\u0644\u064a \u062a\u062d\u0627\u0631\u0628 \u0645\u0646 \u0627\u062c\u0644 \u0627\u0644\u062f\u0648\u0631\u064a \u0648\u062a\u062d\u0627\u0631\u0628 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0633\u0639\u0648\u062f\u064a \u0648\u0644\u062c\u0627\u0646\u0647 \u0648\u064a\u0623\u062a\u064a \u0645\u0646 \u064a\u062d\u0627\u0631\u0628\u0647\u0627 \u0645\u0646 \u0627\u0644\u0627\u0647\u0644\u0627\u0648\u064a\u064a\u0646 (\u0627\u0646 \u0643\u0627\u0646\u0648\u0627 \u0643\u0630\u0644\u0643 ) - \u0647\u0644 \u064a\u0631\u064a\u062f\u0648\u0646 \u0632\u0631\u0639 \u0627\u0644\u0641\u062a\u0646\u0647 -\u062e\u0633\u0626\u0648\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":388443655,"id_str":"388443655","name":"\u0645\u0634\u0639\u0644 \u0639\u062a\u064a\u0642 \u0627\u0644\u063a\u064a\u062f\u0627\u0646\u064a","screen_name":"shaaahr","location":"\u0627\u0644\u0642\u0635\u064a\u0645 \/ \u062f\u062e\u0646\u0647","url":null,"description":"\u064a\u0627\u0644\u0644\u0647 \u0627\u0646\u0643 \u0644\u0627\u062a\u062e\u064a\u0651\u0628 \u0648\u0642\u0648\u0641\u064a \u064a\u0627\u0645\u0639\u064a\u0646 \u064a\u0648\u0645 \u0645\u0627\u064a\u0646\u0641\u0639 \u0639\u0645\u0627\u0645\u064d \u0648\u0644\u0627\u064a\u0646\u0641\u0639 \u062e\u0648\u0627\u0644 \u064a\u0648\u0645 \u0627\u062c\u064a \u0645\u062a\u062c\u0631\u062f\u064d \u0648\u0627\u0644\u0628\u0634\u0631 \u0645\u062a\u062c\u0631\u062f\u064a\u0646 \u0641\u064a \u0646\u0647\u0627\u0631 \u0627\u0644\u062d\u0634\u0631 \u064a\u0648\u0645 \u0627\u0644\u0646\u0633\u0627 \u0648\u0633\u0637 \u0627\u0644\u0631\u062c\u0627\u0644","protected":false,"verified":false,"followers_count":6293,"friends_count":532,"listed_count":23,"favourites_count":741,"statuses_count":30644,"created_at":"Mon Oct 10 19:10:39 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C1EBC1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572632740042772480\/DF4GOEKu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572632740042772480\/DF4GOEKu.png","profile_background_tile":true,"profile_link_color":"0057B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661070208728219648\/mPCL4hDV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661070208728219648\/mPCL4hDV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/388443655\/1438646667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shaaahr","name":"\u0645\u0634\u0639\u0644 \u0639\u062a\u064a\u0642 \u0627\u0644\u063a\u064a\u062f\u0627\u0646\u064a","id":388443655,"id_str":"388443655","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080049662"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951092056064,"id_str":"663727951092056064","text":"Bar\u00e7a B plays in the Copa Catalunya semifinal against Girona on Wednesday at 21:00h in the Mini. Live on @esport3.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2927227168,"id_str":"2927227168","name":"mert","screen_name":"BallCirculation","location":"Barcelona, Catalunya","url":"https:\/\/youtube.com\/channel\/UC-mrxZlRu6lL24KktyP2AhA","description":"FC Barcelona from Juvenil B to the first team. XXX-VIII-MCMXCIV. Ale\u00f1\u00e1-Busquets-Samper. Cruyff. UNICEF. La Masia. Personal: @mert4bcn","protected":false,"verified":false,"followers_count":1582,"friends_count":216,"listed_count":27,"favourites_count":10842,"statuses_count":23201,"created_at":"Wed Dec 17 15:52:02 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"Select Language...","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661694711942529024\/Ybll3knB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661694711942529024\/Ybll3knB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2927227168\/1441319955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"esport3","name":"Esport3","id":14866960,"id_str":"14866960","indices":[105,113]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080049666"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054315520,"id_str":"663727951054315520","text":"Mallory!!!!!! https:\/\/t.co\/UjPmvc9rkV","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577124971,"id_str":"577124971","name":"Rusty Foster","screen_name":"rustyk5","location":"Maine, 2.5 miles from America","url":"http:\/\/todayintabs.com","description":"We wouldn't be seen dead here in the day rusty@never.computer","protected":false,"verified":false,"followers_count":5450,"friends_count":555,"listed_count":167,"favourites_count":33350,"statuses_count":48698,"created_at":"Fri May 11 13:09:14 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549265089\/pwb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549265089\/pwb.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660657650187771904\/9QJMjlrT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660657650187771904\/9QJMjlrT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577124971\/1406433460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UjPmvc9rkV","expanded_url":"http:\/\/www.slate.com\/articles\/briefing\/slate_fare\/2015\/11\/mallory_ortberg_will_be_the_next_dear_prudence_succeeding_emily_yoffe.html","display_url":"slate.com\/articles\/brief\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087861760,"id_str":"663727951087861760","text":"Join Us For A Conversation About Rising Seas, Sinking Land, Justice And Community https:\/\/t.co\/5jC0iWtzJz","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37012900,"id_str":"37012900","name":"89.9 WWNO","screen_name":"WWNO","location":"New Orleans","url":"http:\/\/www.wwno.org","description":"89.9 WWNO \u2014 New Orleans Public Radio. Your source for NPR News, Music and Culture in New Orleans and throughout Southeast Louisiana.","protected":false,"verified":false,"followers_count":7280,"friends_count":541,"listed_count":295,"favourites_count":1989,"statuses_count":22392,"created_at":"Fri May 01 18:58:17 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"000066","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000066","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2542821365\/5v9tk1hrwxvumv5untm7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2542821365\/5v9tk1hrwxvumv5untm7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37012900\/1362682109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5jC0iWtzJz","expanded_url":"http:\/\/ow.ly\/Uod7d","display_url":"ow.ly\/Uod7d","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951071084544,"id_str":"663727951071084544","text":"RT @SonComics: Ser un caballero...... http:\/\/t.co\/340V9WxbyC","source":"\u003ca href=\"https:\/\/twitter.com\/ShakFrases\" rel=\"nofollow\"\u003eShakira10\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65453295,"id_str":"65453295","name":"TATTOOS","screen_name":"FAVTatuajes","location":"V e n e z u e l a.","url":null,"description":"\u2190 \u2198\u0442\u03b1\u0442\u0442\u00f8\u00f8\u0455\u2199 \u2192\r\nTROYANOS","protected":false,"verified":false,"followers_count":255463,"friends_count":79222,"listed_count":479,"favourites_count":4702,"statuses_count":27193,"created_at":"Thu Aug 13 20:03:23 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113703409\/419c3dac3de49abad347a2ae20f37764.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113703409\/419c3dac3de49abad347a2ae20f37764.jpeg","profile_background_tile":false,"profile_link_color":"0B2EDE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"08F523","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651012182755405825\/0RyHxLI2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651012182755405825\/0RyHxLI2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/65453295\/1431945252","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 14 04:27:41 +0000 2015","id":654151565956087808,"id_str":"654151565956087808","text":"Ser un caballero...... http:\/\/t.co\/340V9WxbyC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":452346554,"id_str":"452346554","name":"Comics","screen_name":"SonComics","location":null,"url":null,"description":"Parody...... PUBLICIDAD [ publicidadmavh@gmail.com ] \u01b8\u04dc\u01b7","protected":false,"verified":false,"followers_count":401473,"friends_count":12,"listed_count":431,"favourites_count":725,"statuses_count":1826,"created_at":"Sun Jan 01 18:46:37 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F9FBFC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"38B2DE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658837449204826116\/r_6PwErG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658837449204826116\/r_6PwErG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/452346554\/1438048227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":895,"favorite_count":722,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":654151552605622272,"id_str":"654151552605622272","indices":[23,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","url":"http:\/\/t.co\/340V9WxbyC","display_url":"pic.twitter.com\/340V9WxbyC","expanded_url":"http:\/\/twitter.com\/SonComics\/status\/654151565956087808\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":529,"resize":"fit"},"large":{"w":526,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":654151552605622272,"id_str":"654151552605622272","indices":[23,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","url":"http:\/\/t.co\/340V9WxbyC","display_url":"pic.twitter.com\/340V9WxbyC","expanded_url":"http:\/\/twitter.com\/SonComics\/status\/654151565956087808\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":529,"resize":"fit"},"large":{"w":526,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SonComics","name":"Comics","id":452346554,"id_str":"452346554","indices":[3,13]}],"symbols":[],"media":[{"id":654151552605622272,"id_str":"654151552605622272","indices":[38,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","url":"http:\/\/t.co\/340V9WxbyC","display_url":"pic.twitter.com\/340V9WxbyC","expanded_url":"http:\/\/twitter.com\/SonComics\/status\/654151565956087808\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":529,"resize":"fit"},"large":{"w":526,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}},"source_status_id":654151565956087808,"source_status_id_str":"654151565956087808","source_user_id":452346554,"source_user_id_str":"452346554"}]},"extended_entities":{"media":[{"id":654151552605622272,"id_str":"654151552605622272","indices":[38,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQDXwpUEAAi55J.jpg","url":"http:\/\/t.co\/340V9WxbyC","display_url":"pic.twitter.com\/340V9WxbyC","expanded_url":"http:\/\/twitter.com\/SonComics\/status\/654151565956087808\/photo\/1","type":"photo","sizes":{"medium":{"w":526,"h":529,"resize":"fit"},"large":{"w":526,"h":529,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":341,"resize":"fit"}},"source_status_id":654151565956087808,"source_status_id_str":"654151565956087808","source_user_id":452346554,"source_user_id_str":"452346554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087734785,"id_str":"663727951087734785","text":"RT @IS__z: 200\ud314\ub85c \ub118\uc740 \uae30\ub150 + \uc6b0\ub9ac \uac20\ubd07\ub2d8\uc744 \uc8fc\ub9d0\ub3d9\uc548 \uac70\uc758 \ubabb\ubcf8\uac8c \ub108\ubb34 \uc2ac\ud504\ubbc0\ub85c \ub098\ub214..\n\ud1a0\ub3c4\ub9c8\uce20 \ubcf4\uace0\uc2f6\uc5b4 \uc8fd\uc744 \uac83 \uac19\uc544\u3160\u3160\n\n\uae08\uc694\uc77c \ubc24\uc5d0 \ub2f9\ubc1c.. https:\/\/t.co\/znD94amkc2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4025973553,"id_str":"4025973553","name":"\uc544\uadc0","screen_name":"pretty110423","location":null,"url":null,"description":"\ub09c @btob2mh \uc758 \uc544\uae30","protected":false,"verified":false,"followers_count":113,"friends_count":143,"listed_count":0,"favourites_count":1,"statuses_count":1095,"created_at":"Mon Oct 26 15:56:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659017620247592960\/aQhofHfd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659017620247592960\/aQhofHfd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4025973553\/1446205138","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:49:15 +0000 2015","id":663382784799453184,"id_str":"663382784799453184","text":"200\ud314\ub85c \ub118\uc740 \uae30\ub150 + \uc6b0\ub9ac \uac20\ubd07\ub2d8\uc744 \uc8fc\ub9d0\ub3d9\uc548 \uac70\uc758 \ubabb\ubcf8\uac8c \ub108\ubb34 \uc2ac\ud504\ubbc0\ub85c \ub098\ub214..\n\ud1a0\ub3c4\ub9c8\uce20 \ubcf4\uace0\uc2f6\uc5b4 \uc8fd\uc744 \uac83 \uac19\uc544\u3160\u3160\n\n\uae08\uc694\uc77c \ubc24\uc5d0 \ub2f9\ubc1c.. https:\/\/t.co\/znD94amkc2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3925115725,"id_str":"3925115725","name":"\uc774\uc988\u273f","screen_name":"IS__z","location":"2015.10.27 \u2665 @Todo_for_IS \u2665","url":"http:\/\/mama.mwave.me\/mobile\/myVoteState#","description":"\ud638\ubaa8\uc5d0 \ud658\uc7a5\ud569\ub2c8\ub2e4 \/ \ub808\ubc85&\uc624\uc18c\ub9c8\uce20 \/ \uc885\uc885\uc695\ud2b8,\uac20\ubd07\uc553\uc774\u2665","protected":false,"verified":false,"followers_count":225,"friends_count":220,"listed_count":0,"favourites_count":95,"statuses_count":2516,"created_at":"Sat Oct 17 13:04:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660944419542056962\/NGBubqed_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660944419542056962\/NGBubqed_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3925115725\/1446985550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":405,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663382779984396288,"id_str":"663382779984396288","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":477,"h":471,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663382779984396288,"id_str":"663382779984396288","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":477,"h":471,"resize":"fit"}}},{"id":663382782463229952,"id_str":"663382782463229952","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPIDrUwAAONcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPIDrUwAAONcH.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":480,"h":478,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IS__z","name":"\uc774\uc988\u273f","id":3925115725,"id_str":"3925115725","indices":[3,9]}],"symbols":[],"media":[{"id":663382779984396288,"id_str":"663382779984396288","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":477,"h":471,"resize":"fit"}},"source_status_id":663382784799453184,"source_status_id_str":"663382784799453184","source_user_id":3925115725,"source_user_id_str":"3925115725"}]},"extended_entities":{"media":[{"id":663382779984396288,"id_str":"663382779984396288","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPH6cUwAAhsYJ.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":477,"h":471,"resize":"fit"}},"source_status_id":663382784799453184,"source_status_id_str":"663382784799453184","source_user_id":3925115725,"source_user_id_str":"3925115725"},{"id":663382782463229952,"id_str":"663382782463229952","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTPIDrUwAAONcH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTPIDrUwAAONcH.jpg","url":"https:\/\/t.co\/znD94amkc2","display_url":"pic.twitter.com\/znD94amkc2","expanded_url":"http:\/\/twitter.com\/IS__z\/status\/663382784799453184\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":480,"h":478,"resize":"fit"}},"source_status_id":663382784799453184,"source_status_id_str":"663382784799453184","source_user_id":3925115725,"source_user_id_str":"3925115725"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951083474944,"id_str":"663727951083474944","text":"@gtwashinshi \n\u3068\u304b\u8a00\u3063\u3061\u3083\u3063\u3066\u3044\u3064\u3082\u6c60\u7530\u306b\u4f1a\u3046\u3068\u30c9\u30f3\u30c9\u30f3\u3063\u3066\u304f\u308b\u3088\u306d\u30fc\u30fc\u30fc\u3084\u3063\u3071\u308a\u305d\u30fc\u3086\u3046\u3068\u3053\u308d\u3042\u308b\u3088\u306d\u30fc\u30fc\u30fc\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727831499730944,"in_reply_to_status_id_str":"663727831499730944","in_reply_to_user_id":391126373,"in_reply_to_user_id_str":"391126373","in_reply_to_screen_name":"gtwashinshi","user":{"id":2897238787,"id_str":"2897238787","name":"\u3061\u3083\u3093\u6c70(\u3044\u3051\u3060\u3093)","screen_name":"R_NRlove","location":null,"url":null,"description":"\u897f\u4e2d\u21d2\u8352\u5546 ~\u53ef\u611b\u3044\u3068\u5e78\u305b\u3068\u611b\u3092\u8ffd\u3044\u304b\u3051\u3066~","protected":false,"verified":false,"followers_count":110,"friends_count":123,"listed_count":0,"favourites_count":420,"statuses_count":1958,"created_at":"Wed Nov 12 05:50:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662207798831263744\/y3YdJDZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662207798831263744\/y3YdJDZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897238787\/1443802361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gtwashinshi","name":"\u3054\u30fc\u3065\u305f\u304f\u307e@\u5f26\u697d\u91cd\u4f4e\u97f3\u5c4b\u3055\u3093","id":391126373,"id_str":"391126373","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049664"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951083507712,"id_str":"663727951083507712","text":"@h_05__ \u3088\u308d\u3057\u304f\u3067\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727292770742272,"in_reply_to_status_id_str":"663727292770742272","in_reply_to_user_id":4169758752,"in_reply_to_user_id_str":"4169758752","in_reply_to_screen_name":"h_05__","user":{"id":4164265753,"id_str":"4164265753","name":"\u3086\u3046","screen_name":"JQz6m","location":"\u798f\u5ca1","url":null,"description":"\u88cf\u57a2 \u9ad8\uff13\/(L)GBT \u672c\u57a2\u3053\u3061\u3089@trlovexx1","protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":41,"statuses_count":9,"created_at":"Sun Nov 08 04:02:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663206472013099008\/c4Lzhe--_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663206472013099008\/c4Lzhe--_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"h_05__","name":"Minami.","id":4169758752,"id_str":"4169758752","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049664"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079321601,"id_str":"663727951079321601","text":"RT @manslifefact: It\u2019s your life.\n\nDon\u2019t let anyone make you feel guilty for living it your way.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1124888953,"id_str":"1124888953","name":"omgfacttweet","screen_name":"omgfacttweet","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10033,"friends_count":10915,"listed_count":18,"favourites_count":1469,"statuses_count":74366,"created_at":"Sun Jan 27 12:17:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3169663055\/b48a44e94c3ff262f86256bb0148ebd9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3169663055\/b48a44e94c3ff262f86256bb0148ebd9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:12 +0000 2015","id":663725531981094912,"id_str":"663725531981094912","text":"It\u2019s your life.\n\nDon\u2019t let anyone make you feel guilty for living it your way.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":702981799,"id_str":"702981799","name":"Lifefacts RealTweet ","screen_name":"manslifefact","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":108226,"friends_count":95285,"listed_count":255,"favourites_count":3241,"statuses_count":41695,"created_at":"Wed Jul 18 12:36:14 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634619308\/gryf8hh5iqgfy6t8urxg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634619308\/gryf8hh5iqgfy6t8urxg.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642385216762306560\/ibC5LPek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642385216762306560\/ibC5LPek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702981799\/1441993122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manslifefact","name":"Lifefacts RealTweet ","id":702981799,"id_str":"702981799","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951075221504,"id_str":"663727951075221504","text":"Mistakes Will Happen in Building a Startup. Learn From Them. Kaduna startup weekend 2015?\nRegister here-->https:\/\/t.co\/es6GLQFzNl","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4063619002,"id_str":"4063619002","name":"KadunaStartupWeekend","screen_name":"StartupKaduna","location":"Kaduna, Nigeria","url":"http:\/\/www.fb.com\/kadunastartupweekend","description":"We want to create a community inspiring, educating and connecting entrepreneurs in Kaduna","protected":false,"verified":false,"followers_count":30,"friends_count":20,"listed_count":11,"favourites_count":31,"statuses_count":103,"created_at":"Wed Oct 28 22:15:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659498613232541696\/G-a_v1OM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659498613232541696\/G-a_v1OM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4063619002\/1446071378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/es6GLQFzNl","expanded_url":"http:\/\/goo.gl\/nTnoVZ","display_url":"goo.gl\/nTnoVZ","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049662"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951075143680,"id_str":"663727951075143680","text":"RT @GoyonoS: \uff8c\uff8c\uff8c\u266a(\u0424\u03c9\u0424)\n\n #\u732b\u52d5\u753b https:\/\/t.co\/TQo75ZBU08","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066107275,"id_str":"3066107275","name":"\u90a3\u5948\u7f8e -nanami- \u2606\u5bae\u5d0e\u5728\u4f4f\u2606","screen_name":"ggtts0922","location":"\u5bae\u5d0eMangooo!\u770c","url":null,"description":"\u304a\u3044\u30fc\u3059\uff01 \u2764\ufe0e I love SMfamily & apink \u2764\ufe0e -99Line- \u2026\u2026\u2026\u2026\u2026\u2026\u2026\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u304c\u3044\u3044\u2026\u2026\u2026\u2026\u2026\u2026\u2026 \u30d0\u30ec\u30fc \u9f8d\u795e\u30cb\u30c3\u30dd\u30f3 \u2764\ufe0eNEXT4 \u6d45\u91ce \u6e05\u6c34 \u51fa\u8012\u305f\u3093\u2764\ufe0e\u30c6\u30a3\u30f3\u30ab\u30fc\u30d9\u30eb\u540c\u76df\u2192@salssal___hrd","protected":false,"verified":false,"followers_count":313,"friends_count":301,"listed_count":1,"favourites_count":323,"statuses_count":3776,"created_at":"Sat Mar 07 07:04:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659907806825320448\/8_QLCjoq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659907806825320448\/8_QLCjoq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066107275\/1446032465","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 05:18:21 +0000 2015","id":662499235644878849,"id_str":"662499235644878849","text":"\uff8c\uff8c\uff8c\u266a(\u0424\u03c9\u0424)\n\n #\u732b\u52d5\u753b https:\/\/t.co\/TQo75ZBU08","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1942670888,"id_str":"1942670888","name":"\u2220(\uffe3^\uffe3)\u5e1d\u570b\ufa45\u8ecd\u8ecd\u4eba\u305f\u307e\u5409\u5143\u5e25\u2693\ufe0e","screen_name":"GoyonoS","location":"______\u5e1d\ufa26\u67d0\u6240\u5728\u4f4f\u3002Tokyo,Japan.","url":null,"description":"\u62fe\u3072\u756b\u50cf\u3084GIF\u3067\u904a\u3076\u3053\u3068\u304c\u4f55\u3088\u308a\u597d\u304d\u306a\u304a\u6c23\u6a02\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u2026\uff8d(\u00b0\u2200\u00b0\uff8d)\u3002\u2026\u540c\u6642\u306b\u3001\u751f\u7cb9\u306e\u65e5\u672c\u4eba\u3068\u3057\u3066\u300c\u65e5\u672c\u6de8\u5316\u300d\u3092\u30e2\u30c3\u30c8\u30fc\u306b\u6d3b\u52d5\u3057\u3066\u5c45\u308a\u307e\u3059\u2026\u2220(\uffe3^\uffe3)[ \u25cf ]\u3002\u2026\u30c4\u30f0\u30fc\u30c8\u306f\u3001\u6b63\ufa47\u5b57\u30fb\u6b77\u53f2\u7684\u5047\u540d\u9063\u3092\u7528\u3090\u307e\u3059___\u03c6(\uffe3^\uffe3 )\u266a\u3002 \u2026\u306a\u306b\u3076\u3093\u3088\u308d\u3057\u3046\u304a\u9858\u3072\u7533\u3057\u4e0a\u3052\u307e\u3059\u2026\uff4d(\uff3f \uff3f)\uff4d\u3002","protected":false,"verified":false,"followers_count":10665,"friends_count":8532,"listed_count":155,"favourites_count":162681,"statuses_count":105933,"created_at":"Mon Oct 07 02:12:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650566671879438336\/I5b-1ZwQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650566671879438336\/I5b-1ZwQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1942670888\/1445410140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33397,"favorite_count":37354,"entities":{"hashtags":[{"text":"\u732b\u52d5\u753b","indices":[13,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662499142174838784,"id_str":"662499142174838784","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","url":"https:\/\/t.co\/TQo75ZBU08","display_url":"pic.twitter.com\/TQo75ZBU08","expanded_url":"http:\/\/twitter.com\/GoyonoS\/status\/662499235644878849\/video\/1","type":"photo","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662499142174838784,"id_str":"662499142174838784","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","url":"https:\/\/t.co\/TQo75ZBU08","display_url":"pic.twitter.com\/TQo75ZBU08","expanded_url":"http:\/\/twitter.com\/GoyonoS\/status\/662499235644878849\/video\/1","type":"video","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[203,360],"duration_millis":15000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/360x640\/IpdCrRjQEIl-PHAj.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/360x640\/IpdCrRjQEIl-PHAj.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/180x320\/mRXwMm7mXLhiuvfm.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/pl\/FxIps18W3UHxBNXc.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/pl\/FxIps18W3UHxBNXc.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u732b\u52d5\u753b","indices":[26,30]}],"urls":[],"user_mentions":[{"screen_name":"GoyonoS","name":"\u2220(\uffe3^\uffe3)\u5e1d\u570b\ufa45\u8ecd\u8ecd\u4eba\u305f\u307e\u5409\u5143\u5e25\u2693\ufe0e","id":1942670888,"id_str":"1942670888","indices":[3,11]}],"symbols":[],"media":[{"id":662499142174838784,"id_str":"662499142174838784","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","url":"https:\/\/t.co\/TQo75ZBU08","display_url":"pic.twitter.com\/TQo75ZBU08","expanded_url":"http:\/\/twitter.com\/GoyonoS\/status\/662499235644878849\/video\/1","type":"photo","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":662499235644878849,"source_status_id_str":"662499235644878849","source_user_id":1942670888,"source_user_id_str":"1942670888"}]},"extended_entities":{"media":[{"id":662499142174838784,"id_str":"662499142174838784","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662499142174838784\/pu\/img\/sbeQ486DFaxEBwe4.jpg","url":"https:\/\/t.co\/TQo75ZBU08","display_url":"pic.twitter.com\/TQo75ZBU08","expanded_url":"http:\/\/twitter.com\/GoyonoS\/status\/662499235644878849\/video\/1","type":"video","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":662499235644878849,"source_status_id_str":"662499235644878849","source_user_id":1942670888,"source_user_id_str":"1942670888","video_info":{"aspect_ratio":[203,360],"duration_millis":15000,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/360x640\/IpdCrRjQEIl-PHAj.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/360x640\/IpdCrRjQEIl-PHAj.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/vid\/180x320\/mRXwMm7mXLhiuvfm.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/pl\/FxIps18W3UHxBNXc.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662499142174838784\/pu\/pl\/FxIps18W3UHxBNXc.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049662"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070932992,"id_str":"663727951070932992","text":"Pop-Up Installation to Bring Animated Symphony to the Wall of the InterContinental Miami #art #Miami","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2944944427,"id_str":"2944944427","name":"Miami Today","screen_name":"TodayMiami","location":"Miami, FL","url":null,"description":"#Miami #news #breaking","protected":false,"verified":false,"followers_count":14828,"friends_count":4573,"listed_count":70,"favourites_count":0,"statuses_count":5546,"created_at":"Sat Dec 27 10:32:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577375979321970688\/6yNsA6Q9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577375979321970688\/6yNsA6Q9.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577375481391026176\/EfJaYEwh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577375481391026176\/EfJaYEwh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2944944427\/1426491973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"art","indices":[90,94]},{"text":"Miami","indices":[95,101]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058374657,"id_str":"663727951058374657","text":"@aoi8191 \u7a81\u7136\u306e\u3054\u7121\u793c\u304a\u8a31\u3057\u304f\u3060\u3055\u3044\n\u3053\u3061\u3089\u306e\u753b\u50cf\u4fdd\u5b58\u3057\u3066\u3082\u3088\u308d\u3057\u3044\u3067\u3057\u3087\u3046\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716125948047361,"in_reply_to_status_id_str":"663716125948047361","in_reply_to_user_id":2227820305,"in_reply_to_user_id_str":"2227820305","in_reply_to_screen_name":"aoi8191","user":{"id":3102765602,"id_str":"3102765602","name":"\u795e\u7121\u6728\u681e\u4f9d\u5b58\u75c7","screen_name":"nmatsui4509","location":null,"url":null,"description":"\u30b9\u30af\u30b9\u30c8 \u4e0b\u30cd\u30bf\u591a\u3081\u3067\u3059 \u6ce8\u610f \u66b4\u8d70\u3059\u308b\u304a\u305d\u308c\u3042\u308a \u753b\u50cf\u306e\u4fdd\u5b58\u306f\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002 \u7d50\u69cb\u3084\u304b\u307e\u3057\u3044\u306e\u3067\u3001\u5acc\u306b\u306a\u3063\u305f\u3089\u9060\u616e\u306a\u304f\u30d6\u30ed\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002 \u8003\u5bdf\u57a2\u4f5c\u308a\u307e\u3057\u305f\u2192@anko_nmo \u3084\u3070\u301c\u3044\u88cf\u57a2\u4f5c\u308a\u307e\u3057\u305f\u2192@shioritabetai (\u3042\u307e\u308a\u7d61\u3093\u3067\u306a\u3044\u65b9\u306f\u5931\u793c\u306a\u304c\u3089\u304a\u65ad\u308a\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u3002\u5927\u5909\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093)","protected":false,"verified":false,"followers_count":821,"friends_count":952,"listed_count":15,"favourites_count":13007,"statuses_count":9764,"created_at":"Sun Mar 22 07:01:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658583523750621184\/d-XYVWop_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658583523750621184\/d-XYVWop_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3102765602\/1444835464","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aoi8191","name":"\u3046\u3055\u304e","id":2227820305,"id_str":"2227820305","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951062548484,"id_str":"663727951062548484","text":"\u305d\u308d\u307c\u3061\u5207\u308a\u63db\u3048\u3088\u304b\u3002\u52c9\u5f37\u30e2\u30fc\u30c9\u306b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788076018,"id_str":"2788076018","name":"Sou","screen_name":"Hs__t12","location":null,"url":null,"description":"\u25b7\u25b7\u25b7Shinjo\u2192Kashiba1-1 29\u3010\u5143\u900f\u587e\u751f\u3011\u5927\u5207\u306a\u4eba\u3044\u307e\u3059\u3002\u30c7\u30b3\u30c8\u30e9\/\u30c7\u30b3\u30c1\u30e3\u30ea\/BeatBoxer\/\u6b4c\/\u30ab\u30e9\u30aa\u30b1\/\u304a\u3057\u3083\u308c\u2026\u306a\u3069\u591a\u8da3\u5473\u3067\u3059(^O^)\uff0f\u77e5\u3063\u3066\u308b\u4eba\u306e\u307fFollowMe\uff01\u25c1\u25c1\u25c1 \u203b\u77e5\u3063\u3066\u308b\u4eba\u3057\u304b\u30d5\u30a9\u30ed\u30d0\u3067\u304d\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":192,"friends_count":189,"listed_count":0,"favourites_count":7223,"statuses_count":6795,"created_at":"Wed Sep 03 14:35:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663609502164357120\/OC6Nf7dI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663609502164357120\/OC6Nf7dI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2788076018\/1443095537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049659"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058354176,"id_str":"663727951058354176","text":"Flirt with chocolate. \ud83d\ude02\ud83d\ude01\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2485103912,"id_str":"2485103912","name":"Merjen","screen_name":"marjaaane","location":null,"url":null,"description":"Tourism Student\u2708\ufe0f\u2693\u2b55\ufe0f..talented\u26be\ufe0f Real\u2764\ufe0f Lipstick lover .. Fashionista .. Pure Filipina . \u274cAllergic to plastic people \u274c","protected":false,"verified":false,"followers_count":146,"friends_count":403,"listed_count":0,"favourites_count":480,"statuses_count":1448,"created_at":"Fri May 09 09:46:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663173712003272704\/GdjTHFrE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663173712003272704\/GdjTHFrE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2485103912\/1446947908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087816704,"id_str":"663727951087816704","text":"RT @leamakhoulfan: #\u0628\u0627\u0644\u0641\u064a\u062f\u064a\u0648\n\u0647\u0643\u0630\u0627 \u0639\u0627\u064a\u062f\u062a \u0644\u064a\u0627 \u0645\u062e\u0648\u0644 \u0644\u064a\u062b \u0623\u0628\u0648 \u062c\u0648\u062f\u0629 \nhttps:\/\/t.co\/RYerfNZTwz\n#LaithAbuJoda \n#LeaMakhoul #HBDLaithAbuJoda23 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2188053616,"id_str":"2188053616","name":"\u0643\u0641\u0627\u062d \u0627\u0644\u0641\u0644\u0633\u0637\u064a\u0646\u064a\u0647(48)","screen_name":"Kefah07","location":"\u0641\u0644\u0633\u0637\u064a\u0646","url":null,"description":"\u0644\u064a\u062b \u0623\u0628\u0648 \u062c\u0648\u062f\u0629 \u0648\u0628\u0633\u270b","protected":false,"verified":false,"followers_count":1627,"friends_count":1661,"listed_count":5,"favourites_count":37659,"statuses_count":13682,"created_at":"Tue Nov 19 22:50:20 +0000 2013","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663500078452207616\/OIDjy9QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663500078452207616\/OIDjy9QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2188053616\/1444242796","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:41 +0000 2015","id":663725650780516352,"id_str":"663725650780516352","text":"#\u0628\u0627\u0644\u0641\u064a\u062f\u064a\u0648\n\u0647\u0643\u0630\u0627 \u0639\u0627\u064a\u062f\u062a \u0644\u064a\u0627 \u0645\u062e\u0648\u0644 \u0644\u064a\u062b \u0623\u0628\u0648 \u062c\u0648\u062f\u0629 \nhttps:\/\/t.co\/RYerfNZTwz\n#LaithAbuJoda \n#LeaMakhoul #HBDLaithAbuJoda23 https:\/\/t.co\/he8sBwgQdf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2824745766,"id_str":"2824745766","name":"Karim Elmahalawy\u2122","screen_name":"leamakhoulfan","location":"Egypt","url":null,"description":"The Admin Of @LeaMakhoul Admin Of @LeaMakhoulMag Big Fan Of @AjBrooks","protected":false,"verified":false,"followers_count":5733,"friends_count":2014,"listed_count":35,"favourites_count":12381,"statuses_count":30606,"created_at":"Sun Sep 21 18:24:27 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554478181445423106\/U_aXccLW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554478181445423106\/U_aXccLW.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650938400728416257\/SU-kWxlf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650938400728416257\/SU-kWxlf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2824745766\/1444030393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01ef644b49cd7f40","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01ef644b49cd7f40.json","place_type":"admin","name":"\u0627\u0644\u062c\u064a\u0632\u0629","full_name":"\u0627\u0644\u062c\u064a\u0632\u0629, \u0645\u0635\u0631","country_code":"EG","country":"\u0645\u0635\u0631","bounding_box":{"type":"Polygon","coordinates":[[[27.209937,27.660694],[27.209937,30.340044],[31.336110,30.340044],[31.336110,27.660694]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":24,"entities":{"hashtags":[{"text":"\u0628\u0627\u0644\u0641\u064a\u062f\u064a\u0648","indices":[0,9]},{"text":"LaithAbuJoda","indices":[68,81]},{"text":"LeaMakhoul","indices":[83,94]},{"text":"HBDLaithAbuJoda23","indices":[95,113]}],"urls":[{"url":"https:\/\/t.co\/RYerfNZTwz","expanded_url":"https:\/\/youtu.be\/ql3BW1M8DHI","display_url":"youtu.be\/ql3BW1M8DHI","indices":[44,67]}],"user_mentions":[],"symbols":[],"media":[{"id":663725639875301378,"id_str":"663725639875301378","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","url":"https:\/\/t.co\/he8sBwgQdf","display_url":"pic.twitter.com\/he8sBwgQdf","expanded_url":"http:\/\/twitter.com\/leamakhoulfan\/status\/663725650780516352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"},"large":{"w":812,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725639875301378,"id_str":"663725639875301378","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","url":"https:\/\/t.co\/he8sBwgQdf","display_url":"pic.twitter.com\/he8sBwgQdf","expanded_url":"http:\/\/twitter.com\/leamakhoulfan\/status\/663725650780516352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"},"large":{"w":812,"h":490,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0628\u0627\u0644\u0641\u064a\u062f\u064a\u0648","indices":[19,28]},{"text":"LaithAbuJoda","indices":[87,100]},{"text":"LeaMakhoul","indices":[102,113]},{"text":"HBDLaithAbuJoda23","indices":[114,132]}],"urls":[{"url":"https:\/\/t.co\/RYerfNZTwz","expanded_url":"https:\/\/youtu.be\/ql3BW1M8DHI","display_url":"youtu.be\/ql3BW1M8DHI","indices":[63,86]}],"user_mentions":[{"screen_name":"leamakhoulfan","name":"Karim Elmahalawy\u2122","id":2824745766,"id_str":"2824745766","indices":[3,17]}],"symbols":[],"media":[{"id":663725639875301378,"id_str":"663725639875301378","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","url":"https:\/\/t.co\/he8sBwgQdf","display_url":"pic.twitter.com\/he8sBwgQdf","expanded_url":"http:\/\/twitter.com\/leamakhoulfan\/status\/663725650780516352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"},"large":{"w":812,"h":490,"resize":"fit"}},"source_status_id":663725650780516352,"source_status_id_str":"663725650780516352","source_user_id":2824745766,"source_user_id_str":"2824745766"}]},"extended_entities":{"media":[{"id":663725639875301378,"id_str":"663725639875301378","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8_EWEAI6Q9V.png","url":"https:\/\/t.co\/he8sBwgQdf","display_url":"pic.twitter.com\/he8sBwgQdf","expanded_url":"http:\/\/twitter.com\/leamakhoulfan\/status\/663725650780516352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"},"large":{"w":812,"h":490,"resize":"fit"}},"source_status_id":663725650780516352,"source_status_id_str":"663725650780516352","source_user_id":2824745766,"source_user_id_str":"2824745766"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951083532289,"id_str":"663727951083532289","text":"@FieykaNakal ambil warna kelabu baru gang.\u263a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724398067646464,"in_reply_to_status_id_str":"663724398067646464","in_reply_to_user_id":603376794,"in_reply_to_user_id_str":"603376794","in_reply_to_screen_name":"FieykaNakal","user":{"id":484601530,"id_str":"484601530","name":"AYIEE","screen_name":"fiqrieenez","location":"Damansara","url":null,"description":"Masih Keseorangan Tutup Buku Lama Buka Buku Baru IG\/Wechat=fiqrieenez","protected":false,"verified":false,"followers_count":543,"friends_count":394,"listed_count":0,"favourites_count":9268,"statuses_count":15799,"created_at":"Mon Feb 06 09:03:03 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113526026\/3a13cbe6ca9a702622d8aba9f6e34ccb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113526026\/3a13cbe6ca9a702622d8aba9f6e34ccb.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615579721061904384\/8nkoaMEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615579721061904384\/8nkoaMEu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484601530\/1423720455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FieykaNakal","name":"\u265b Princess Ieyka \u265b","id":603376794,"id_str":"603376794","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080049664"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058370561,"id_str":"663727951058370561","text":"RT @His_Queen214: One hand firm, held under my back\n\nThe other hand, your fingers that trace upon my skin.\n\nTake me as you go deep within.","source":"\u003ca href=\"http:\/\/favstar.fm\" rel=\"nofollow\"\u003eFavstar.FM\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1633331521,"id_str":"1633331521","name":"Passion Princess","screen_name":"2Sassy4321","location":"In your heart","url":"http:\/\/favstar.fm\/users\/2Sassy4321","description":"Passionate about Love! Lil sassy Italian... Wanting real NOT fantasy - Forget the rules...follow your heart! https:\/\/t.co\/BLwBjJBXSh","protected":false,"verified":false,"followers_count":20491,"friends_count":12814,"listed_count":452,"favourites_count":66054,"statuses_count":79043,"created_at":"Tue Jul 30 16:32:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660455002465419265\/YSES9R-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660455002465419265\/YSES9R-0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1633331521\/1442024137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 10 08:57:05 +0000 2015","id":608558492153057280,"id_str":"608558492153057280","text":"One hand firm, held under my back\n\nThe other hand, your fingers that trace upon my skin.\n\nTake me as you go deep within.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239280044,"id_str":"3239280044","name":"\u2022\u041crs\u0412\u03b9\u0442c\u043d\u2022","screen_name":"His_Queen214","location":"Somewhere in Dreamland","url":"http:\/\/twitter.com\/search\/from:His_Queen214","description":"\u2022Like it\u2022Love it\u2022or Leave it\u2022 NO DM's ~Married to @TheLordOfDream2 He is My Always & Forever ~Avi is obviously not me~http:\/\/favstar.fm\/users\/His_Queen214","protected":false,"verified":false,"followers_count":2039,"friends_count":1039,"listed_count":97,"favourites_count":47092,"statuses_count":54788,"created_at":"Sun Jun 07 23:28:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649757198298406913\/LHenIRr7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649757198298406913\/LHenIRr7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239280044\/1442078531","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"His_Queen214","name":"\u2022\u041crs\u0412\u03b9\u0442c\u043d\u2022","id":3239280044,"id_str":"3239280044","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079313408,"id_str":"663727951079313408","text":"@_Rukia_O317 @sa_i0322 \n\u305d\u3046\u306a\u3093\u3060\u306a\u3001\u795e\u7236\u304b\u3002\n\uff95\uff6f\uff78\uff98\u6642\u9593\u304c\u4f5c\u308c\u308b\u65e5\u3092\u6c7a\u3081\u3066\u304b\u3089\u8272\u3005\u6e96\u5099\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726250339360769,"in_reply_to_status_id_str":"663726250339360769","in_reply_to_user_id":2332245842,"in_reply_to_user_id_str":"2332245842","in_reply_to_screen_name":"_Rukia_O317","user":{"id":2542809378,"id_str":"2542809378","name":"\u5ca1\u7530 \u5c06\u751f(\u4e5f)","screen_name":"masaki_o_001","location":"15\/10\/24\uff5e Re:Start.+*:\uff9f+\uff61.\u2606","url":null,"description":"\u4e5f\/\u96a3\u6709\/15\/10\/24\uff5eRe:Start\/marriage 15\/11\/09\uff5e\/\u3055\u3068\u307f\u2113\u03c3\u03bd\u0454\u2764\/\u56fa\u5b9a[\u307e\u3055\u304d]\/\uff8c\uff6b\uff9b\uff70\u306f\u76f8\u4e92\/\u4e5f\u3055\u3093\u306f\uff8c\uff6b\uff9b\uff8a\uff9e\u8fd4\u3057\u307e\u3059\/\u3044\u3064\u3067\u3082DM\u89e3\u653e\u4e2d\/\u672c\u5bb6\u69d8&\u4e8b\u52d9\u6240\u7121\u95a2\u4fc2\/","protected":false,"verified":false,"followers_count":50,"friends_count":51,"listed_count":3,"favourites_count":26,"statuses_count":1472,"created_at":"Tue Jun 03 05:19:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659081425581273088\/_1Syt-P7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659081425581273088\/_1Syt-P7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542809378\/1446998960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_Rukia_O317","name":"\u00a7 \u7460\u7dba\u611b","id":2332245842,"id_str":"2332245842","indices":[0,12]},{"screen_name":"sa_i0322","name":"\u2765\u2765s.ato.mi","id":3058998925,"id_str":"3058998925","indices":[13,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951066697728,"id_str":"663727951066697728","text":"\u30a8\u30eb\u30d5\u30a7\u30eb\u30c8\u30dc\u30a4\u30b9\u304b\u308f\u3044\u3044\u3051\u3093\u8cb7\u304a\u3046\u3068\u601d\u3063\u305f\u30896m\u3068\u304b\u3057\u3093\u3067\u304f\u308c\u3084","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253781532,"id_str":"3253781532","name":"\u3057\u3059\u306d\u3053","screen_name":"sisneco_cat","location":"Japan Rising\u203c\ufe0e","url":null,"description":"\u5b66\u751f\/pso2\/\/\u30b3\u30de\u30f3\u30c9\u30fc\/\u306e\u3093\u306e\u3093\u3073\u3088\u308a\/\u3053\u306e\u307f\uff06\u99c4\u83d3\u5b50\u5c4b\/\u9ebb\u96c0\/\u30d1\u30af\u30c4\u30a4\n\u30e2\u30bf\u30b9\u30dd&\u97f3\u697d\u7528\u57a2\u2192@musisneco \u307b\u307c\u60c5\u5831\u53ce\u96c6\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":102,"friends_count":104,"listed_count":3,"favourites_count":91,"statuses_count":13508,"created_at":"Tue Jun 23 16:42:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654290571373101056\/4Ga-QY98.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654290571373101056\/4Ga-QY98.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642732143773224960\/meq9MH-R_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642732143773224960\/meq9MH-R_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253781532\/1444829762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049660"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054139393,"id_str":"663727951054139393","text":"\u3082\u3046\u3053\u3093\u306a\u6642\u9593\u304b\u2026\u03a3\n\u660e\u65e5\u3082\u306f\u3084\u3044\u3093\u3060\u304b\u3089\u5bdd\u306a\u3044\u3068\u3001\u3001\n\u304a\u3084\u3059\u307f\u3093\u307f\u3093\u305c\u307f\u308b\u304f\u308b\u307f\u3089\u304f\u308b\u30fc\u2606\n(\u2229^o^)\u2283\u2501\u2501\u2501\u2501\u2501\u2606\uff9f.*\uff65\uff61\uff8a\uff9e\uff6f\uff77\uff6d\uff70\uff9d\n\u3010\u5b9a\u671f\u3011","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1919749580,"id_str":"1919749580","name":"\u3094\u3041\u306a\u306a\u306e\u4eba\/\u308f\u304f\u308f\u304f\u3055\u3093","screen_name":"877de1919","location":"\u30d6\u30ea\u30c6\u30f3","url":null,"description":"\u5ec3\u4eba\u7cfb\u6b8b\u5ff5LJK(\uff61\uff65\u03c9\uff65)\uff89 \u30b2\u30fc\u30e0\u57a2*plays game\u21e2\u30e2\u30f3\u30b9\u30c8\/\u30d1\u30ba\u30c9\u30e9\/\u767d\u732b\/\u30a8\u30ec\u30b9\u30c8\/\u30b9\u30af\u30d5\u30a7\u30b9\/\u307c\u304f\u30c9\u30e9\/\u30e1\u30eb\u30b9\u30c8\/\u4e56\u96e2\u6027MA\/\u30b0\u30e9\u30d6\u30eb\/VB\/\u3002likes youtuber\u21e2\u306f\u3058\u3081\u3057\u3083\u3061\u3087\u30fc\/\u30de\u30db\u30c8\/\u6771\u6d77","protected":false,"verified":false,"followers_count":488,"friends_count":461,"listed_count":5,"favourites_count":1106,"statuses_count":11209,"created_at":"Mon Sep 30 11:20:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531986789511073792\/QrliN4Qg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531986789511073792\/QrliN4Qg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1919749580\/1442230437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079428096,"id_str":"663727951079428096","text":"Nuevos seguidores: 11, unfollowers: 3 (10:06) #TuitUtil https:\/\/t.co\/W2G1fgFbAl","source":"\u003ca href=\"http:\/\/www.tuitutil.net\" rel=\"nofollow\"\u003eTuit \u00datil\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2405083422,"id_str":"2405083422","name":"RT LINK IN MY BIO \u270c","screen_name":"isis_verdugo","location":"RT al link y al twett pinned","url":"https:\/\/twitter.com\/isis_verdugo\/status\/663098719890333696","description":"\u270cSigueme y te sigo\u270c\nlarry shipper. RT al link En mi bio.\nAli Spagnola me sigui\u00f3 el 24\/10\/2015.\nLisa, Lauren, Amy Cimorelli me siguieron el 19\/10\/2015","protected":false,"verified":false,"followers_count":2044,"friends_count":2012,"listed_count":9,"favourites_count":6837,"statuses_count":11086,"created_at":"Sat Mar 22 21:49:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663128919181148160\/pI3TLBrF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663128919181148160\/pI3TLBrF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2405083422\/1446315549","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuitUtil","indices":[46,55]}],"urls":[{"url":"https:\/\/t.co\/W2G1fgFbAl","expanded_url":"http:\/\/www.tuitutil.net","display_url":"tuitutil.net","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070937089,"id_str":"663727951070937089","text":"@Hotaaaaan \u307e\u30601\u6708\u7a7a\u3044\u3066\u307e\u3059\uff1f\uff1f\uff1f\uff1f\uff1f\u4fee\u7f85\u5834\u7d42\u308f\u3063\u305f\u3089LINE\u3057\u307e\u3059\uff08\u8feb\u771f\uff09","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724613034119168,"in_reply_to_status_id_str":"663724613034119168","in_reply_to_user_id":288026940,"in_reply_to_user_id_str":"288026940","in_reply_to_screen_name":"Hotaaaaan","user":{"id":941203633,"id_str":"941203633","name":"\u304f\u307e\u3057\u308d1213\u307e\u3067\u30c4\u30a4\u7981\uff08\u9858\u671b\uff09","screen_name":"9mashi6","location":"\u51cd\u72c2","url":"http:\/\/twpf.jp\/9mashi6","description":"18\u2191 \u30b3\u30b9 \u8e0a\u308b\uff08\u30a2\u30cb\u3001\u30c6\u30af\u3009\u30e6\uff09\u5e74\u660e\u3051\u307e\u3067\u4f11\u6b62\u4e2d \u2661\u30c9\u30e9\u30d9\u30fc\u30b9\uff0f\u30df\u30e9\u30af\u30eb\u30dc\u30fc\u30eb\uff0f\u30a6\u30bd\u30b4\u30af\uff0f\u30c0\u30f3\u30a8\u30dcAC\uff0fpkmn\uff0f\u3046st\u5148\u751f\u4f5c\u54c1 \u305d\u306e\u4ed6\u8a73\u3057\u304f\u306fURL \u540c\u5fd7\u3055\u3093\u8efd\u7387\u306b\u7e4b\u304c\u3063\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":129,"friends_count":132,"listed_count":9,"favourites_count":5030,"statuses_count":36181,"created_at":"Sun Nov 11 12:28:25 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513273962474651648\/AMrW_Ycf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513273962474651648\/AMrW_Ycf.png","profile_background_tile":true,"profile_link_color":"C40000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661554476784861184\/yLU95IXA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661554476784861184\/yLU95IXA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941203633\/1410276859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hotaaaaan","name":"\u307e\u308c@20\u65e5\uff7d\uff84\uff8c\uff6a\uff7d\u8d64\u30e1\u30a4\u30c9","id":288026940,"id_str":"288026940","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070924800,"id_str":"663727951070924800","text":"RT @gonominishijin: \u5de5\u623f\u306e\u8fd1\u304f\u3067\u90fd\u30e9\u30a4\u30c8\u3068\u3044\u3046\u30e9\u30a4\u30c8\u30a2\u30c3\u30d7\u30a4\u30d9\u30f3\u30c8\u304c\u958b\u50ac\u3055\u308c\u3066\u3044\u307e\u3057\u305f\u3002\u6628\u65e5\u306f\u96e8\u306b\u6fe1\u308c\u305f\u77f3\u7573\u304c\u7dba\u9e97\u3067\u3057\u305f #\u4eac\u90fd #\u897f\u9663\u7e54 https:\/\/t.co\/7X3SdrZOcn","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63910046,"id_str":"63910046","name":"Hotta","screen_name":"hhotta","location":"Tokyo","url":"http:\/\/blog.livedoor.jp\/gunbeach\/","description":"IT\uff06\u30cd\u30c3\u30c8\u7cfb\u306a\u304a\u4ed5\u4e8b\u3067\u3059\u3002\u6700\u8fd1\u4eac\u90fd\u306b\u3088\u304f\u884c\u304d\u307e\u3059\u3002\u6700\u8fd1\u307e\u305f\u97f3\u697d\u3068\u306e\u63a5\u70b9\u304c\u5897\u52a0\u4e2d\u3002\u97f3\u697d\u306b\u52a0\u3048\u3001\u3088\u3055\u3052\u306a\u6599\u7406\uff08\u6700\u8fd1\u81ea\u5206\u3067\u306f\u5168\u304f\u3084\u3063\u3066\u3044\u307e\u305b\u3093\u304c\u3002\u3002\uff09\u3084\u304a\u9152\uff08\u65e5\u3005\u6442\u53d6\u4e2d\uff09\u306b\u5fc3\u304c\u596a\u308f\u308c\u3084\u3059\u3044\u3067\u3059\u3002\u3002","protected":false,"verified":false,"followers_count":115,"friends_count":130,"listed_count":5,"favourites_count":2160,"statuses_count":9514,"created_at":"Sat Aug 08 04:57:37 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"6FBF9F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599943355\/FaceImage_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599943355\/FaceImage_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:41 +0000 2015","id":663701994641625089,"id_str":"663701994641625089","text":"\u5de5\u623f\u306e\u8fd1\u304f\u3067\u90fd\u30e9\u30a4\u30c8\u3068\u3044\u3046\u30e9\u30a4\u30c8\u30a2\u30c3\u30d7\u30a4\u30d9\u30f3\u30c8\u304c\u958b\u50ac\u3055\u308c\u3066\u3044\u307e\u3057\u305f\u3002\u6628\u65e5\u306f\u96e8\u306b\u6fe1\u308c\u305f\u77f3\u7573\u304c\u7dba\u9e97\u3067\u3057\u305f #\u4eac\u90fd #\u897f\u9663\u7e54 https:\/\/t.co\/7X3SdrZOcn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2823671246,"id_str":"2823671246","name":"\u897f\u9663\u7e54\u82e5\u624b\u7e54\u624b\u80b2\u6210 \u3054\u306e\u307f","screen_name":"gonominishijin","location":"\u4eac\u90fd","url":"http:\/\/gonomi.jp","description":"\u4eac\u90fd\u306e\u4f1d\u7d71\u7523\u696d\u306e\u4e00\u3064\u897f\u9663\u7e54\u3002\u897f\u9663\u7e54\u306e\u8077\u4eba\u3055\u3093\u306e\u5e73\u5747\u5e74\u9f62\u306f\uff17\uff10\u6b73\u3002\u897f\u9663\u7e54\u4f1d\u7d71\u5de5\u82b8\u58eb\u306e\u547c\u3073\u304b\u3051\u3067\u96c6\u307e\u3063\u305f\u4ef2\u9593\u3067\u82e5\u624b\u7e54\u624b\u80b2\u6210\u3068\u30cd\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u3092\u7acb\u3061\u4e0a\u3052\u3001\u7740\u7269\u597d\u304d\u3055\u3093\u306e\u305f\u3081\u306e\u30a2\u30a4\u30c6\u30e0\u3084\u5de5\u623f\u30aa\u30ea\u30b8\u30ca\u30eb\u5546\u54c1\u3092\u8ca9\u58f2\u3057\u3066\u3044\u304d\u307e\u3059\u266a","protected":false,"verified":false,"followers_count":585,"friends_count":483,"listed_count":15,"favourites_count":1042,"statuses_count":1861,"created_at":"Sun Sep 21 07:38:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513594524656877568\/rfi-eQX3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513594524656877568\/rfi-eQX3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2823671246\/1418709763","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"\u4eac\u90fd","indices":[51,54]},{"text":"\u897f\u9663\u7e54","indices":[55,59]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663701985762279424,"id_str":"663701985762279424","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","url":"https:\/\/t.co\/7X3SdrZOcn","display_url":"pic.twitter.com\/7X3SdrZOcn","expanded_url":"http:\/\/twitter.com\/gonominishijin\/status\/663701994641625089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701985762279424,"id_str":"663701985762279424","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","url":"https:\/\/t.co\/7X3SdrZOcn","display_url":"pic.twitter.com\/7X3SdrZOcn","expanded_url":"http:\/\/twitter.com\/gonominishijin\/status\/663701994641625089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4eac\u90fd","indices":[71,74]},{"text":"\u897f\u9663\u7e54","indices":[75,79]}],"urls":[],"user_mentions":[{"screen_name":"gonominishijin","name":"\u897f\u9663\u7e54\u82e5\u624b\u7e54\u624b\u80b2\u6210 \u3054\u306e\u307f","id":2823671246,"id_str":"2823671246","indices":[3,18]}],"symbols":[],"media":[{"id":663701985762279424,"id_str":"663701985762279424","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","url":"https:\/\/t.co\/7X3SdrZOcn","display_url":"pic.twitter.com\/7X3SdrZOcn","expanded_url":"http:\/\/twitter.com\/gonominishijin\/status\/663701994641625089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663701994641625089,"source_status_id_str":"663701994641625089","source_user_id":2823671246,"source_user_id_str":"2823671246"}]},"extended_entities":{"media":[{"id":663701985762279424,"id_str":"663701985762279424","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxcIoVAAAcjSz.jpg","url":"https:\/\/t.co\/7X3SdrZOcn","display_url":"pic.twitter.com\/7X3SdrZOcn","expanded_url":"http:\/\/twitter.com\/gonominishijin\/status\/663701994641625089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663701994641625089,"source_status_id_str":"663701994641625089","source_user_id":2823671246,"source_user_id_str":"2823671246"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951092011008,"id_str":"663727951092011008","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/qRIVf5kmhv","source":"\u003ca href=\"http:\/\/www.ghared.com\/\" rel=\"nofollow\"\u003e\u063a\u0631\u062f \u0628\u0635\u062f\u0642\u0629\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3127880461,"id_str":"3127880461","name":"\u0627\u062d\u0645\u062f \u0627\u0644\u0646\u0627\u062f\u0631","screen_name":"ahmedalnader1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6463,"friends_count":5149,"listed_count":0,"favourites_count":281,"statuses_count":31653,"created_at":"Wed Apr 01 20:07:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612778692356378628\/lPaoVPHV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612778692356378628\/lPaoVPHV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qRIVf5kmhv","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080049666"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079301120,"id_str":"663727951079301120","text":"\u6c57\u529b\u5165\u308a\u3059\u304e\u3084\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":744578119,"id_str":"744578119","name":"\u30d8\u30f3","screen_name":"hen6248","location":"\u5927\u962a","url":null,"description":"\u4e3b\u306bBB\u52e2\u3002\u672c\u8077\u306f\u30a2\u30f3\u30ea\u30df\n\u6700\u8fd1\u30cb\u30c8\u30d6\u30e9\u59cb\u3081\u307e\u3057\u305f\u3002\u4f7f\u7528\u30ad\u30e3\u30e9\u306f\u5f37\u3044\u514e\u89d2\u3055\u3093\u3067\u3059","protected":false,"verified":false,"followers_count":146,"friends_count":141,"listed_count":6,"favourites_count":11,"statuses_count":7919,"created_at":"Wed Aug 08 06:17:39 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"09661F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000054183524\/14b7cf8ae69ae7eb8d08b1ff1e2d5e23.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000054183524\/14b7cf8ae69ae7eb8d08b1ff1e2d5e23.jpeg","profile_background_tile":true,"profile_link_color":"18B8B8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594726403649601536\/pA-HLUF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594726403649601536\/pA-HLUF7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744578119\/1406727813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951091896321,"id_str":"663727951091896321","text":"KOK UDAHAN\n\nE ABIS INI GW DONG YANG NGELAKUIN DARE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2929614464,"id_str":"2929614464","name":"susukudaliar","screen_name":"whygwaaam","location":null,"url":null,"description":"kalau jodoh tak kemana","protected":false,"verified":false,"followers_count":139,"friends_count":74,"listed_count":1,"favourites_count":1336,"statuses_count":8000,"created_at":"Sun Dec 14 11:07:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724814272565248\/IddMHOtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724814272565248\/IddMHOtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2929614464\/1446998372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080049666"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054159872,"id_str":"663727951054159872","text":"RT @manslifefact: It\u2019s your life.\n\nDon\u2019t let anyone make you feel guilty for living it your way.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":631952036,"id_str":"631952036","name":"j.s.rawat","screen_name":"myloveiswhere","location":"Karnal","url":null,"description":"Follow me for your daily dose of quotes about love, relationships and a lot more..#I love followers! Hit that follow button.","protected":false,"verified":false,"followers_count":30836,"friends_count":26499,"listed_count":78,"favourites_count":3450,"statuses_count":146010,"created_at":"Tue Jul 10 12:47:03 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608398690\/iut2b2ftpswgxxh7kc65.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608398690\/iut2b2ftpswgxxh7kc65.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2409684669\/bacsrgew6w6eaf81hpb8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2409684669\/bacsrgew6w6eaf81hpb8_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:12 +0000 2015","id":663725531981094912,"id_str":"663725531981094912","text":"It\u2019s your life.\n\nDon\u2019t let anyone make you feel guilty for living it your way.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":702981799,"id_str":"702981799","name":"Lifefacts RealTweet ","screen_name":"manslifefact","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":108226,"friends_count":95285,"listed_count":255,"favourites_count":3241,"statuses_count":41695,"created_at":"Wed Jul 18 12:36:14 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634619308\/gryf8hh5iqgfy6t8urxg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634619308\/gryf8hh5iqgfy6t8urxg.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642385216762306560\/ibC5LPek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642385216762306560\/ibC5LPek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702981799\/1441993122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manslifefact","name":"Lifefacts RealTweet ","id":702981799,"id_str":"702981799","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951075119104,"id_str":"663727951075119104","text":"RT @poyo_musumen_z: \u3010\u8b72\u3011\n2L \u8336\u8272 \u8d64 https:\/\/t.co\/I8Riw8frwJ","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":514098200,"id_str":"514098200","name":"\u3082\u3045\u3082\u3061\u3083\u3093\u2606","screen_name":"puddingmomo","location":null,"url":null,"description":"\u30d7\u30ea\u30f3\u304c\u597d\u304d\u3001\u6843\u304c\u597d\u304d\u3001\u30d5\u30a9\u30fc\u30b2\u30eb\u3055\u3093\u306f\u3082\u3063\u3068\u597d\u304d(*\u00b4 \uff9b `*) \u306b\u3083\u3044\u306b\u3043\u3001\u3080\u3059\u3081\u3093\u3002\u3001\u30ed\u30ad\u30ce\u30f3\u53a8(\uff62\uff65\u03c9\uff65)\uff62","protected":false,"verified":false,"followers_count":118,"friends_count":182,"listed_count":1,"favourites_count":485,"statuses_count":9897,"created_at":"Sun Mar 04 08:19:20 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/786278580\/d1f2572a67ce9ef8ea916ab456780d29.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/786278580\/d1f2572a67ce9ef8ea916ab456780d29.jpeg","profile_background_tile":true,"profile_link_color":"444444","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"6780AB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660639693436915712\/r1nlmQzD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660639693436915712\/r1nlmQzD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/514098200\/1360419690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:28 +0000 2015","id":663718551002345472,"id_str":"663718551002345472","text":"\u3010\u8b72\u3011\n2L \u8336\u8272 \u8d64 https:\/\/t.co\/I8Riw8frwJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923685749,"id_str":"2923685749","name":"\u300e\u3052\u3059\u3061\u3093\u300f","screen_name":"poyo_musumen_z","location":"\u3052\u3059\u3057\u3087\u3044","url":"http:\/\/twpf.jp\/poyo_musumen_z","description":"\u3080\u3059\u3081\u3093\u3002\u57a2 \/ \u9a12\u304c\u3057\u3044\u8336\u63a8\u3057 \/ \u54b2\u30a1\u304d\u4e71\u308c\u3066 \/ \u5730\u7344\u5e7d\u970a \/ \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093 \/ Next\u21d2\u30cb\u30b3\u3064\u304f \/ \u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed","protected":false,"verified":false,"followers_count":331,"friends_count":240,"listed_count":24,"favourites_count":12235,"statuses_count":19070,"created_at":"Tue Dec 09 09:35:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"865C4B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620551054745141248\/wCzsMDxm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620551054745141248\/wCzsMDxm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923685749\/1436861902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718536104144897,"id_str":"663718536104144897","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","url":"https:\/\/t.co\/I8Riw8frwJ","display_url":"pic.twitter.com\/I8Riw8frwJ","expanded_url":"http:\/\/twitter.com\/poyo_musumen_z\/status\/663718551002345472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718536104144897,"id_str":"663718536104144897","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","url":"https:\/\/t.co\/I8Riw8frwJ","display_url":"pic.twitter.com\/I8Riw8frwJ","expanded_url":"http:\/\/twitter.com\/poyo_musumen_z\/status\/663718551002345472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"poyo_musumen_z","name":"\u300e\u3052\u3059\u3061\u3093\u300f","id":2923685749,"id_str":"2923685749","indices":[3,18]}],"symbols":[],"media":[{"id":663718536104144897,"id_str":"663718536104144897","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","url":"https:\/\/t.co\/I8Riw8frwJ","display_url":"pic.twitter.com\/I8Riw8frwJ","expanded_url":"http:\/\/twitter.com\/poyo_musumen_z\/status\/663718551002345472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663718551002345472,"source_status_id_str":"663718551002345472","source_user_id":2923685749,"source_user_id_str":"2923685749"}]},"extended_entities":{"media":[{"id":663718536104144897,"id_str":"663718536104144897","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAffdUcAEdra0.jpg","url":"https:\/\/t.co\/I8Riw8frwJ","display_url":"pic.twitter.com\/I8Riw8frwJ","expanded_url":"http:\/\/twitter.com\/poyo_musumen_z\/status\/663718551002345472\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663718551002345472,"source_status_id_str":"663718551002345472","source_user_id":2923685749,"source_user_id_str":"2923685749"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049662"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951075086336,"id_str":"663727951075086336","text":"@1m2t7n9my \n\u3084\u3063\u3071\u308a\u4ef2\u826f\u3057\u3055\u3093\u3067\u3059\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727355811135488,"in_reply_to_status_id_str":"663727355811135488","in_reply_to_user_id":1648224878,"in_reply_to_user_id_str":"1648224878","in_reply_to_screen_name":"1m2t7n9my","user":{"id":2547285825,"id_str":"2547285825","name":"\u304b\u3089\u3042\u3052\u5927\u597d\u304d\uff01","screen_name":"nomoyan9","location":"\u795e\u5948\u5ddd\u770c","url":null,"description":"\u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u3001\u30b2\u30fc\u30e0\u597d\u304d\u3001\u5510\u63da\u3052\u3068\u30d3\u30fc\u30eb\u3068\u30e9\u30fc\u30e1\u30f3\u304c\u3042\u308c\u3070\u751f\u304d\u3066\u3044\u3051\u308b\u306f\u305a\uff01\u7b11\u3000\u3000\u3000\u30da\u30fc\u30bf\u30fc\u3068\u30d0\u30fc\u30eb\u306e\u304a\u7236\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":122,"friends_count":203,"listed_count":2,"favourites_count":1512,"statuses_count":2646,"created_at":"Wed May 14 12:41:46 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000B3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661894810362474496\/05-6QsDi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661894810362474496\/05-6QsDi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547285825\/1400157737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1m2t7n9my","name":"\u307f\u3044\u304d","id":1648224878,"id_str":"1648224878","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049662"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087734784,"id_str":"663727951087734784","text":"@srw_project \u6c7a\u307e\u308a\u3058\u3083\u3093w","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727326450991104,"in_reply_to_status_id_str":"663727326450991104","in_reply_to_user_id":162724449,"in_reply_to_user_id_str":"162724449","in_reply_to_screen_name":"srw_project","user":{"id":130739659,"id_str":"130739659","name":"Sho\b [a.k.a] loner","screen_name":"Shohei_Uto","location":"TOKYO JAPAN","url":"http:\/\/twpf.jp\/Shohei_Uto","description":"\u6176\u61c9\u7fa9\u587e\u5927\u5b66SFC\u5352\/\u30c7\u30b6\u30a4\u30f3\/\u6620\u50cf\u5236\u4f5c\/\u97f3\u697d\/\u30d0\u30f3\u30c9\/Live\/JAM Project\/T.M.R\/A.b.s\/\u548c\u697d\u5668\u30d0\u30f3\u30c9-\u516b\u91cd\u6d41\/niconico\/\u30b2\u30fc\u30e0\u5b9f\u6cc1\/\uf8ffUser\/\u3058\u3083\u3050\u30b8\u30a7\u30cd\u53c2\u53f7\u6a5f\/JAM\u30af\u30e9\u306eStandAlone","protected":false,"verified":false,"followers_count":648,"friends_count":720,"listed_count":30,"favourites_count":1972,"statuses_count":42204,"created_at":"Thu Apr 08 04:45:21 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"1A3CA3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592286673616011264\/EGrbQBnf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592286673616011264\/EGrbQBnf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130739659\/1420706641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"srw_project","name":"\u305f\u3044\u3055 (\u00ba\u03c9\u00ba \u044d)\u0417@\u30b9\u30c8\u30d1\u6a2a\u6d5c","id":162724449,"id_str":"162724449","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058341888,"id_str":"663727951058341888","text":"RT @TheDxpeGirl: Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard fe\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3198164626,"id_str":"3198164626","name":"wanderlust","screen_name":"ash_rose32","location":null,"url":null,"description":"stay humble","protected":false,"verified":false,"followers_count":168,"friends_count":418,"listed_count":0,"favourites_count":2251,"statuses_count":1919,"created_at":"Thu Apr 23 14:10:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659723325598384128\/tZ9REWkG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659723325598384128\/tZ9REWkG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3198164626\/1446125306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:25 +0000 2015","id":663726338449268737,"id_str":"663726338449268737","text":"Once I'm done with someone I completely block them out of my life & out of everything, they become nonexistent. No hard feelings though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859033914,"id_str":"2859033914","name":"Courtney Nicole","screen_name":"TheDxpeGirl","location":null,"url":null,"description":"To her, the only thing people needed to know was that she was happy, and loved. (Billionaire Devin) \u2764\ufe0f","protected":false,"verified":false,"followers_count":11743,"friends_count":3921,"listed_count":24,"favourites_count":43,"statuses_count":10606,"created_at":"Fri Oct 17 00:56:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531845152382656512\/UcALmk6L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859033914\/1446300601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":150,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDxpeGirl","name":"Courtney Nicole","id":2859033914,"id_str":"2859033914","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070953472,"id_str":"663727951070953472","text":"RT @Somzizhan: \u0e21\u0e31\u0e19\u0e04\u0e37\u0e2d #CALLMEBABY \u0e01\u0e32\u0e23\u0e42\u0e2b\u0e27\u0e15 #EXO \u0e41\u0e1a\u0e1a\u0e44\u0e2b\u0e19 #2015MAMA \u0e01\u0e31\u0e19\u0e41\u0e19\u0e48 @MnetMAMA \u0e27\u0e48\u0e30\u0e22\u0e32\u0e01\u0e40\u0e22\u0e47\u0e19\u0e25\u0e30\u0e40\u0e01\u0e34\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2971645784,"id_str":"2971645784","name":"PLEASE.","screen_name":"i_osh94","location":null,"url":null,"description":"\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32\u0e21\u0e31\u0e19\u0e44\u0e21\u0e48\u0e2a\u0e32\u0e21\u0e32\u0e23\u0e16\u0e22\u0e49\u0e2d\u0e19\u0e01\u0e25\u0e31\u0e1a\u0e04\u0e37\u0e19\u0e21\u0e32\u0e44\u0e14\u0e49","protected":false,"verified":false,"followers_count":530,"friends_count":565,"listed_count":0,"favourites_count":2088,"statuses_count":5235,"created_at":"Sat Jan 10 10:06:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583592342398996480\/lMzYl6EJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583592342398996480\/lMzYl6EJ.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637914909502672897\/MVDbT3eL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637914909502672897\/MVDbT3eL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971645784\/1435307380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:51 +0000 2015","id":663726699004084224,"id_str":"663726699004084224","text":"\u0e21\u0e31\u0e19\u0e04\u0e37\u0e2d #CALLMEBABY \u0e01\u0e32\u0e23\u0e42\u0e2b\u0e27\u0e15 #EXO \u0e41\u0e1a\u0e1a\u0e44\u0e2b\u0e19 #2015MAMA \u0e01\u0e31\u0e19\u0e41\u0e19\u0e48 @MnetMAMA \u0e27\u0e48\u0e30\u0e22\u0e32\u0e01\u0e40\u0e22\u0e47\u0e19\u0e25\u0e30\u0e40\u0e01\u0e34\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368950014,"id_str":"2368950014","name":"\u0e2d\u0e0b\u0e25\u3002","screen_name":"Somzizhan","location":"SeLuBaekPcy\u2661","url":null,"description":"bias : oohsehun 7_luhan_m \u25e1\u0308\u20dd | chanbaek\u2661 | \u2765Aewlu | 520 520 520 520 520 520 520 520 \u0e19\u0e32\u0e08\u0e32\u0e32","protected":false,"verified":false,"followers_count":1970,"friends_count":307,"listed_count":1,"favourites_count":24657,"statuses_count":120092,"created_at":"Sun Mar 02 14:22:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663626065525411840\/s5Edc1gp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663626065525411840\/s5Edc1gp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368950014\/1446884950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[7,18]},{"text":"EXO","indices":[27,31]},{"text":"2015MAMA","indices":[39,48]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[56,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[22,33]},{"text":"EXO","indices":[42,46]},{"text":"2015MAMA","indices":[54,63]}],"urls":[],"user_mentions":[{"screen_name":"Somzizhan","name":"\u0e2d\u0e0b\u0e25\u3002","id":2368950014,"id_str":"2368950014","indices":[3,13]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[71,80]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058493440,"id_str":"663727951058493440","text":"RT @ILLUMlNATI: Always be there for the person who is always there for you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913198201,"id_str":"913198201","name":"Jack brannan","screen_name":"jack_brannan","location":"carlisle ","url":null,"description":"QOS","protected":false,"verified":false,"followers_count":565,"friends_count":843,"listed_count":0,"favourites_count":305,"statuses_count":408,"created_at":"Mon Oct 29 20:35:52 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660951290281857024\/ooT0S-S2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660951290281857024\/ooT0S-S2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913198201\/1409435527","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:16:05 +0000 2015","id":663600928931627008,"id_str":"663600928931627008","text":"Always be there for the person who is always there for you.","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375245154,"id_str":"375245154","name":"ILLUMINATI","screen_name":"ILLUMlNATI","location":null,"url":null,"description":"Look to the light. FOLLOW the light. \u25b2","protected":false,"verified":false,"followers_count":755754,"friends_count":0,"listed_count":1642,"favourites_count":20,"statuses_count":14178,"created_at":"Sat Sep 17 19:32:37 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460871231969832961\/spqo4bH2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460871231969832961\/spqo4bH2.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1550541334\/eye_reasonably_small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1550541334\/eye_reasonably_small_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375245154\/1402297641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":476,"favorite_count":471,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ILLUMlNATI","name":"ILLUMINATI","id":375245154,"id_str":"375245154","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054172160,"id_str":"663727951054172160","text":"Haha fuck urself https:\/\/t.co\/johxkaHWk7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":857960720,"id_str":"857960720","name":"TRAP KING (679)","screen_name":"iammedhon","location":"GLXY \u2708\ufe0f PH","url":"https:\/\/www.facebook.com\/iammedeee","description":"they suck below my belt","protected":false,"verified":false,"followers_count":988,"friends_count":349,"listed_count":2,"favourites_count":4574,"statuses_count":21767,"created_at":"Tue Oct 02 12:17:36 +0000 2012","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615161981872386048\/JVDPHvhg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615161981872386048\/JVDPHvhg.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661912097664602112\/r37EXwuj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661912097664602112\/r37EXwuj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/857960720\/1432559653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727811182596097,"quoted_status_id_str":"663727811182596097","quoted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727811182596097,"id_str":"663727811182596097","text":"When someone asks me a dumbass question https:\/\/t.co\/QNlMPNRb6c","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102325442,"id_str":"102325442","name":"Male Thoughts","screen_name":"SteveStfler","location":null,"url":null,"description":"Tweets from Men's point of view! We do not own any contents, pictures or videos posted in this page. RealSteveStifler@gmail.com","protected":false,"verified":false,"followers_count":2388620,"friends_count":332,"listed_count":3173,"favourites_count":3511,"statuses_count":75086,"created_at":"Wed Jan 06 09:35:30 +0000 2010","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000132617453\/6i0RYzl-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000132617453\/6i0RYzl-.jpeg","profile_background_tile":false,"profile_link_color":"EB0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567686758158962689\/DtgmfMU7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567686758158962689\/DtgmfMU7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102325442\/1432147984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QNlMPNRb6c","expanded_url":"https:\/\/vine.co\/v\/ejXOaOJgYQd","display_url":"vine.co\/v\/ejXOaOJgYQd","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/johxkaHWk7","expanded_url":"https:\/\/twitter.com\/SteveStfler\/status\/663727811182596097","display_url":"twitter.com\/SteveStfler\/st\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070937088,"id_str":"663727951070937088","text":"\u3048\u3072\u3059\u2026(\uffe3\u25bd\uffe3;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210797153,"id_str":"210797153","name":"\u5fd7\u3005\u2606\u4eba\u751f\u30ea\u30bb\u30c3\u30c8\u4e2d\u0669(\u02ca\u15dc\u02cb*)\u0648\u2727","screen_name":"ShiShiBzLove","location":"\u6e58\u5357","url":null,"description":"B'z\/\uff90\uff7d\uff81\uff99\/LIVE\u5927\u597d\u304d\u2026(\u00b4.-`)\u540c\u3044\u6b73(\u0e51\u00b4`\u0e51)\u2661\n\u7121\u8a00\u306f\u5bc2\u3057\u3044(TT) \u8aa4\u7206\uff8c\uff6b\uff9b\uff70\u5fa1\u514d\u306a\u3055\u3044m(__)m\n\/B'z \u30c9\u30ea\u30d5\u30a7\u30b921\u65e5\u53c2\u6226 \/\u7a32\u30bd\u30ed en\u21623\u67083\u65e5\u30fb6\u65e5\u53c2\u6226\n\/Mr.Children \u672a\u5b8c\u6620\u50cf\u5316\u671f\u5f85\u4e2d","protected":false,"verified":false,"followers_count":135,"friends_count":237,"listed_count":3,"favourites_count":55,"statuses_count":16756,"created_at":"Mon Nov 01 12:38:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549416405095825408\/pazvAa_s_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549416405095825408\/pazvAa_s_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210797153\/1438007605","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079346176,"id_str":"663727951079346176","text":"@jirofish_3 \u79c1\u306a\u3089\u3053\u306e\u5ea7\u308a\u65b9\u3059\u3050\u3057\u3093\u3069\u304f\u306a\u308a\u307e\u3059\u301c\ud83d\ude2d\ud83d\udca6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719999140315136,"in_reply_to_status_id_str":"663719999140315136","in_reply_to_user_id":3219440545,"in_reply_to_user_id_str":"3219440545","in_reply_to_screen_name":"jirofish_3","user":{"id":2830560212,"id_str":"2830560212","name":"AKI","screen_name":"takaryujinino","location":null,"url":null,"description":"\u4e09\u4ee3\u76ee(\u9686\u4e8c)&EXILE(\uff71\uff82\uff80\uff76)&generations(\u308c\u304a&\u308a\u3085\uff5e\u3068)&\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9&\u5e83\u5cf6\u30ab\u30fc\u30d7\u306bBig LOVE\u3067\u3059(^w^)\u597d\u304d\u306a\u4eba\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(*\u00b4\u03c9\uff40*)\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u591a\u3005\u3042\u308a\u307e\u3059\u304c\u304a\u8a31\u3057\u304f\u3060\u3055\u3044(*\u00b4-`)100%\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2606","protected":false,"verified":false,"followers_count":254,"friends_count":279,"listed_count":0,"favourites_count":1417,"statuses_count":1396,"created_at":"Wed Sep 24 21:57:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768837361065984\/sLJkosbX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768837361065984\/sLJkosbX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830560212\/1446594328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00e9190a07f58988","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00e9190a07f58988.json","place_type":"city","name":"\u897f\u5bae\u5e02","full_name":"\u5175\u5eab\u770c \u897f\u5bae\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[135.224902,34.687996],[135.224902,34.854586],[135.383057,34.854586],[135.383057,34.687996]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jirofish_3","name":"\u3072\u3068\uff7c\uff9e\uff9b\uff73\u21dd\uff8a\uff9f\uff72\uff75\uff82\uff76\uff98\uff8b\uff9e\uff71\uff9d))","id":3219440545,"id_str":"3219440545","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087710208,"id_str":"663727951087710208","text":"\u30c6\u30ec\u30d3\u52dd\u624b\u306b\u6d88\u3048\u305f\u3053\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273323923,"id_str":"3273323923","name":"\u7a74\u4e95\u3042\u3084\u307f\u30fc\u308b(\u3042\u3084\u304d\u3083\u3093)","screen_name":"CHIHIROWA_AYANO","location":"99\u5e74\u7d44\/\u5317\u4e5d\u5dde","url":null,"description":"\u7a74\u4e95\u3055\u3093\u306f\u9802\u304d\u307e\u3057\u305f\u2220( \uff40\u2727\u03c9\u2727)\uff0f","protected":false,"verified":false,"followers_count":179,"friends_count":136,"listed_count":5,"favourites_count":3317,"statuses_count":850,"created_at":"Thu Jul 09 20:23:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706685274361856\/jV9sG96__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706685274361856\/jV9sG96__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273323923\/1447048292","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951083515904,"id_str":"663727951083515904","text":"@jumpzone0304 \ud83d\ude1d\ud83d\ude1d\ud83d\ude1d\u3084\u3070\u3044\u672c\u6c17\u3067\u5f53\u305f\u3063\u3066\u6b32\u3057\u3044\ud83d\udc93\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663359207962374144,"in_reply_to_status_id_str":"663359207962374144","in_reply_to_user_id":1412455412,"in_reply_to_user_id_str":"1412455412","in_reply_to_screen_name":"jumpzone0304","user":{"id":2381821676,"id_str":"2381821676","name":"\u306b\u3000\u3053\u3000\u305f\u3000\u3093","screen_name":"kisowachu","location":null,"url":null,"description":"\u5317\u5c71\u5b8f\u5149\u250a\u7389\u68ee\u88d5\u592a\u250a\u77e5\u5ff5\u4f91\u674e\u250a\u6709\u5ca1\u5927\u8cb4\u250a\u5c71\u7530\u6dbc\u4ecb\u2704------------------\u2704\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\uff2f\uff2b\/\u4f4e\u6d6e\u4e0a\/\u307a\u3053\u30ac\u30fc\u30eb\u2661\u30a4\u30de\u30c9\u30ad\u30ac\u30fc\u30eb\u2661","protected":false,"verified":false,"followers_count":117,"friends_count":78,"listed_count":1,"favourites_count":116,"statuses_count":859,"created_at":"Mon Mar 10 08:59:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660097798461788160\/2Kfb88vc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660097798461788160\/2Kfb88vc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2381821676\/1446883671","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jumpzone0304","name":"Ayaka","id":1412455412,"id_str":"1412455412","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049664"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951058370560,"id_str":"663727951058370560","text":"\u0e1e\u0e31\u0e01\u0e22\u0e01 \u0e21\u0e32\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e01\u0e31\u0e19\u0e2b\u0e19\u0e48\u0e2d\u0e22\u0e19\u0e30\u0e04\u0e48\u0e32 \u0e43\u0e04\u0e23\u0e2a\u0e19\u0e43\u0e08\u0e15\u0e31\u0e27\u0e44\u0e2b\u0e19 \u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e2a\u0e2d\u0e1a\u0e16\u0e32\u0e21\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e04\u0e48\u0e32 ^^","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4167528792,"id_str":"4167528792","name":"B-Sunshine\u2605Store","screen_name":"Bsunshine_store","location":"\u0e41\u0e2d\u0e14\u0e2b\u0e25\u0e31\u0e01 @yani_min","url":null,"description":"\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e1e\u0e23\u0e35\u0e2d\u0e2d\u0e40\u0e14\u0e2d\u0e23\u0e4c \u0e1b\u0e34\u0e14\u0e1e\u0e23\u0e35\u0e23\u0e2d\u0e1a\u0e40\u0e40\u0e23\u0e01 15.11.58 \u0e2a\u0e19\u0e43\u0e08\u0e2a\u0e34\u0e19\u0e04\u0e49\u0e32\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19 or DM \n\u2605\u0e02\u0e2d\u0e07\u0e16\u0e36\u0e07\u0e2b\u0e25\u0e31\u0e07\u0e1b\u0e34\u0e14\u0e23\u0e2d\u0e1a15-20 \u0e27\u0e31\u0e19 \u2605 \u0e41\u0e1a\u0e1a\u0e1f\u0e2d\u0e23\u0e4c\u0e21\u0e01\u0e32\u0e23\u0e42\u0e2d\u0e19\u0e40\u0e07\u0e34\u0e19\u0e41\u0e25\u0e30\u0e41\u0e08\u0e49\u0e07\u0e42\u0e2d\u0e19 http:\/\/goo.gl\/forms\/2rozRl7yIT","protected":false,"verified":false,"followers_count":745,"friends_count":0,"listed_count":1,"favourites_count":18,"statuses_count":105,"created_at":"Sun Nov 08 11:23:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A0A6A6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663374799704453120\/XrB47kVx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663374799704453120\/XrB47kVx.png","profile_background_tile":true,"profile_link_color":"676767","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663378062533201920\/9QOGkeTi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663378062533201920\/9QOGkeTi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4167528792\/1446998156","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080049658"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951054172161,"id_str":"663727951054172161","text":"RT @EXOBEAKHYUN_TB: HQ 151107- #Baekhyun #exoluxionintokyodome cr.HideandSeek\nhttps:\/\/t.co\/6pTsJIbZK0\nhttps:\/\/t.co\/gNQy2eCv2R https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":421123967,"id_str":"421123967","name":"XM.MOSS","screen_name":"awasada_","location":null,"url":"http:\/\/www.facebook.com\/awasadajunyosang","description":"Fc taokacha & exo (exo-L)","protected":false,"verified":false,"followers_count":122,"friends_count":1082,"listed_count":1,"favourites_count":14643,"statuses_count":37475,"created_at":"Fri Nov 25 14:47:31 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629287292696334336\/Bp6favoW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629287292696334336\/Bp6favoW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421123967\/1438868756","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:49:46 +0000 2015","id":663715101824778241,"id_str":"663715101824778241","text":"HQ 151107- #Baekhyun #exoluxionintokyodome cr.HideandSeek\nhttps:\/\/t.co\/6pTsJIbZK0\nhttps:\/\/t.co\/gNQy2eCv2R https:\/\/t.co\/mw2MbkWjqj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622656607,"id_str":"622656607","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","screen_name":"EXOBEAKHYUN_TB","location":"Bangkok, Thailand","url":null,"description":"\u3139H39EXOK EXOM =EXOL|12forever and ever|\u0e2d\u0e31\u0e1e\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1aEXO \u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46ID:great11575","protected":false,"verified":false,"followers_count":59914,"friends_count":544,"listed_count":81,"favourites_count":889,"statuses_count":186209,"created_at":"Sat Jun 30 08:56:37 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_tile":false,"profile_link_color":"D91161","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622656607\/1445573786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":64,"entities":{"hashtags":[{"text":"Baekhyun","indices":[11,20]},{"text":"exoluxionintokyodome","indices":[21,42]}],"urls":[{"url":"https:\/\/t.co\/6pTsJIbZK0","expanded_url":"http:\/\/i.imgur.com\/gErZvPR.jpg","display_url":"i.imgur.com\/gErZvPR.jpg","indices":[58,81]},{"url":"https:\/\/t.co\/gNQy2eCv2R","expanded_url":"http:\/\/i.imgur.com\/AMa27AN.jpg","display_url":"i.imgur.com\/AMa27AN.jpg","indices":[82,105]}],"user_mentions":[],"symbols":[],"media":[{"id":663715096019906560,"id_str":"663715096019906560","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715096019906560,"id_str":"663715096019906560","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}},{"id":663715096930025472,"id_str":"663715096930025472","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XTiUAAAJnBM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XTiUAAAJnBM.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Baekhyun","indices":[31,40]},{"text":"exoluxionintokyodome","indices":[41,62]}],"urls":[{"url":"https:\/\/t.co\/6pTsJIbZK0","expanded_url":"http:\/\/i.imgur.com\/gErZvPR.jpg","display_url":"i.imgur.com\/gErZvPR.jpg","indices":[78,101]},{"url":"https:\/\/t.co\/gNQy2eCv2R","expanded_url":"http:\/\/i.imgur.com\/AMa27AN.jpg","display_url":"i.imgur.com\/AMa27AN.jpg","indices":[102,125]}],"user_mentions":[{"screen_name":"EXOBEAKHYUN_TB","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","id":622656607,"id_str":"622656607","indices":[3,18]}],"symbols":[],"media":[{"id":663715096019906560,"id_str":"663715096019906560","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663715101824778241,"source_status_id_str":"663715101824778241","source_user_id":622656607,"source_user_id_str":"622656607"}]},"extended_entities":{"media":[{"id":663715096019906560,"id_str":"663715096019906560","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XQJUsAAlmQ5.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663715101824778241,"source_status_id_str":"663715101824778241","source_user_id":622656607,"source_user_id_str":"622656607"},{"id":663715096930025472,"id_str":"663715096930025472","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9XTiUAAAJnBM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9XTiUAAAJnBM.jpg","url":"https:\/\/t.co\/mw2MbkWjqj","display_url":"pic.twitter.com\/mw2MbkWjqj","expanded_url":"http:\/\/twitter.com\/EXOBEAKHYUN_TB\/status\/663715101824778241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663715101824778241,"source_status_id_str":"663715101824778241","source_user_id":622656607,"source_user_id_str":"622656607"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049657"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951070892032,"id_str":"663727951070892032","text":"#\u3053\u306e\u753b\u50cf\u306e\u60b2\u3057\u307f\u304c\u308f\u304b\u308b\u4eba\u3060\u3051rt \n\u718a\u8033\u3055\u3093\u30fb\u309c\u30fb(\u3064\u0414\uff40)\u30fb\u309c\u30fb https:\/\/t.co\/RRkXU1Si7Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2470742574,"id_str":"2470742574","name":"\u8aa0(\u3042\u304d)@\u53d7\u9a13\u751f","screen_name":"KendoMoon","location":"\u30d1\u30eb\u30b9\u56fd \u738b\u90fd\u30a8\u30af\u30d0\u30bf\u30fc\u30ca","url":null,"description":"\u8aa0(\u3042\u304d)\u3068\u7533\u3057\u307e\u3059\u3002\u5922\u5973\u5b50\u3067\u3059\u3002\u75db\u3044\u5922\u5973\u5b50\u767a\u8a00\u3057\u307e\u304f\u308b\u306e\u3067\u3001\u5acc\u3044\u306a\u4eba\u306fU\u30bf\u30fc\u30f3\uff01\u6642\u3005\u5922\u7d75\u63cf\u304d\u307e\u3059\u3002\u4e0b\u624b\u3067\u3059\u3002\u30f4\u30a1\u30f3\u30ac\u30fc\u30c9\u3001\u30c0\u30f3\u30ed\u30f3\u3001\u30b9\u30fc\u30c0\u30f32\u3001\u5e7d\u767d\u3001\u6697\u6bba\u6559\u5ba4\u3001\u30cf\u30a4\u30ad\u30e5\u30fc\u3001\u30a2\u30eb\u30b9\u30e9\u30fc\u30f3\u6226\u8a18\u3001\u9b3c\u706f\u306e\u51b7\u5fb9\u304c\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":217,"friends_count":207,"listed_count":2,"favourites_count":2751,"statuses_count":5768,"created_at":"Wed Apr 30 11:58:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646315254075383809\/o5gFVXJH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646315254075383809\/o5gFVXJH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2470742574\/1436217979","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e\u753b\u50cf\u306e\u60b2\u3057\u307f\u304c\u308f\u304b\u308b\u4eba\u3060\u3051rt","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727949749731329,"id_str":"663727949749731329","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDcBUwAEiRpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDcBUwAEiRpl.jpg","url":"https:\/\/t.co\/RRkXU1Si7Y","display_url":"pic.twitter.com\/RRkXU1Si7Y","expanded_url":"http:\/\/twitter.com\/KendoMoon\/status\/663727951070892032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727949749731329,"id_str":"663727949749731329","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDcBUwAEiRpl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDcBUwAEiRpl.jpg","url":"https:\/\/t.co\/RRkXU1Si7Y","display_url":"pic.twitter.com\/RRkXU1Si7Y","expanded_url":"http:\/\/twitter.com\/KendoMoon\/status\/663727951070892032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049661"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951066890240,"id_str":"663727951066890240","text":"#Estreno > \"OTRA DOSIS\" - @An1mala https:\/\/t.co\/KVD7y2RROe < @arianaaleja77 @JhojaOguillon @prinnscarito | 240559","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3858693219,"id_str":"3858693219","name":"YouTube News","screen_name":"YouTubeNews11","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4256,"created_at":"Sun Oct 04 05:01:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650537008746532864\/CUXTsXrQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650537008746532864\/CUXTsXrQ_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Estreno","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/KVD7y2RROe","expanded_url":"http:\/\/goo.gl\/OR8LxW","display_url":"goo.gl\/OR8LxW","indices":[38,61]}],"user_mentions":[{"screen_name":"An1mala","name":"An1mala","id":99241538,"id_str":"99241538","indices":[29,37]},{"screen_name":"arianaaleja77","name":"alejandra","id":145063009,"id_str":"145063009","indices":[67,81]},{"screen_name":"JhojaOguillon","name":"Jho \u270c\u265a","id":2739658419,"id_str":"2739658419","indices":[82,96]},{"screen_name":"prinnscarito","name":"natalia gutierrez ","id":159294348,"id_str":"159294348","indices":[97,110]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080049660"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951091896322,"id_str":"663727951091896322","text":"@yuruneko_lov \u3084\u308a\u304a\u308b(\u00b4\uff65(\uff6a)\uff65\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727819105566720,"in_reply_to_status_id_str":"663727819105566720","in_reply_to_user_id":105737512,"in_reply_to_user_id_str":"105737512","in_reply_to_screen_name":"yuruneko_lov","user":{"id":122316796,"id_str":"122316796","name":"\u306d\u30fc\u3075\u3041","screen_name":"Ne_fa","location":"\u30ed\u30ea\u30b3\u30f3\u3058\u3083\u306a\u3044\u3067\u3059","url":null,"description":"\u0e05( \u0333\u2022 \u00b7\u032b \u2022 \u0333\u0e05)\u304c\u304a\u30fc","protected":false,"verified":false,"followers_count":268,"friends_count":272,"listed_count":11,"favourites_count":3306,"statuses_count":66071,"created_at":"Fri Mar 12 09:02:30 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618661652959903744\/E3F0HC2I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618661652959903744\/E3F0HC2I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122316796\/1402488430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuruneko_lov","name":"\u3088\u308b\u306d\u3053","id":105737512,"id_str":"105737512","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080049666"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951079448576,"id_str":"663727951079448576","text":"\u041f\u0430\u0440\u043b\u0430\u043c\u0435\u043d\u0442 \u041a\u0430\u0442\u0430\u043b\u043e\u043d\u0438\u0438 \u043d\u0430\u0447\u0430\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043e\u0442\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u043e\u0442 \u0418\u0441\u043f\u0430\u043d\u0438\u0438 https:\/\/t.co\/hDN6vAVitq https:\/\/t.co\/MBM0WIvh2g","source":"\u003ca href=\"http:\/\/novapress.net.ru\/\" rel=\"nofollow\"\u003eNovaPress Publisher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2511107852,"id_str":"2511107852","name":"\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438","screen_name":"Dnr_news","location":"\u0414\u043e\u043d\u0435\u0446\u043a","url":"http:\/\/dnr-news.com","description":"\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0414\u043e\u043d\u0435\u0446\u043a\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438","protected":false,"verified":false,"followers_count":5332,"friends_count":58,"listed_count":106,"favourites_count":0,"statuses_count":24864,"created_at":"Tue May 20 18:29:01 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479717957845536768\/kjDfBw0G.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479717957845536768\/kjDfBw0G.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543036768765747201\/rfIm_zEG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543036768765747201\/rfIm_zEG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2511107852\/1433163290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hDN6vAVitq","expanded_url":"http:\/\/dnr-news.com\/dnr\/27170-parlament-katalonii-nachal-process-otdeleniya-ot-ispanii.html","display_url":"dnr-news.com\/dnr\/27170-parl\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[],"media":[{"id":663727950446071808,"id_str":"663727950446071808","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDenWEAAcg6H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDenWEAAcg6H.jpg","url":"https:\/\/t.co\/MBM0WIvh2g","display_url":"pic.twitter.com\/MBM0WIvh2g","expanded_url":"http:\/\/twitter.com\/Dnr_news\/status\/663727951079448576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727950446071808,"id_str":"663727950446071808","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDenWEAAcg6H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDenWEAAcg6H.jpg","url":"https:\/\/t.co\/MBM0WIvh2g","display_url":"pic.twitter.com\/MBM0WIvh2g","expanded_url":"http:\/\/twitter.com\/Dnr_news\/status\/663727951079448576\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080049663"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951087714304,"id_str":"663727951087714304","text":"@EllisMate wait but do you remember CB Dollaway Thursday night? too Funny... https:\/\/t.co\/fZsSXXixpL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718955203166209,"in_reply_to_status_id_str":"663718955203166209","in_reply_to_user_id":2914086608,"in_reply_to_user_id_str":"2914086608","in_reply_to_screen_name":"mdoran87tron","user":{"id":2914086608,"id_str":"2914086608","name":"Meghan","screen_name":"mdoran87tron","location":"Jersey \/ Atlanta .. ish","url":null,"description":"Illustration, Painting, Tron, Gas Masks, MMA, Flowers, Elephants, #Ellisfam","protected":false,"verified":false,"followers_count":20,"friends_count":65,"listed_count":0,"favourites_count":131,"statuses_count":60,"created_at":"Sat Nov 29 20:28:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643792758289899520\/XsGXb1oZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643792758289899520\/XsGXb1oZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914086608\/1435156124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EllisMate","name":"Jason Ellis","id":26798304,"id_str":"26798304","indices":[0,10]}],"symbols":[],"media":[{"id":663727950445998080,"id_str":"663727950445998080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDenU8AAerxj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDenU8AAerxj.jpg","url":"https:\/\/t.co\/fZsSXXixpL","display_url":"pic.twitter.com\/fZsSXXixpL","expanded_url":"http:\/\/twitter.com\/mdoran87tron\/status\/663727951087714304\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727950445998080,"id_str":"663727950445998080","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDenU8AAerxj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDenU8AAerxj.jpg","url":"https:\/\/t.co\/fZsSXXixpL","display_url":"pic.twitter.com\/fZsSXXixpL","expanded_url":"http:\/\/twitter.com\/mdoran87tron\/status\/663727951087714304\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080049665"} +{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951066882048,"id_str":"663727951066882048","text":"Muere funcionario del Cicpc en accidente de tr\u00e1nsito https:\/\/t.co\/IgCkTCgpNh #Guayana #PZO #Puertoordaz https:\/\/t.co\/8erdyg9rk0","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022612527,"id_str":"1022612527","name":"Ciudad Guayana","screen_name":"Guayana286","location":"Ciudad Guayana, Venezuela","url":"http:\/\/on.fb.me\/1lzJiTe","description":"Noticias e informaciones relacionadas a Ciudad #Guayana, el estado Bol\u00edvar y Venezuela. IG: Guayana286 publicidad: publicidadaguacate@gmail.com","protected":false,"verified":false,"followers_count":49882,"friends_count":49518,"listed_count":88,"favourites_count":5744,"statuses_count":24879,"created_at":"Wed Dec 19 18:18:22 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/742621287\/8930228281550100db5287638c49ec5d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/742621287\/8930228281550100db5287638c49ec5d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578173151873404928\/nj_F7tvf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578173151873404928\/nj_F7tvf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022612527\/1398461106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Guayana","indices":[77,85]},{"text":"PZO","indices":[86,90]},{"text":"Puertoordaz","indices":[91,103]}],"urls":[{"url":"https:\/\/t.co\/IgCkTCgpNh","expanded_url":"http:\/\/www.nuevaprensa.com.ve\/node\/5696","display_url":"nuevaprensa.com.ve\/node\/5696","indices":[53,76]}],"user_mentions":[],"symbols":[],"media":[{"id":663727950861369344,"id_str":"663727950861369344","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDgKXAAATSyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDgKXAAATSyN.jpg","url":"https:\/\/t.co\/8erdyg9rk0","display_url":"pic.twitter.com\/8erdyg9rk0","expanded_url":"http:\/\/twitter.com\/Guayana286\/status\/663727951066882048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727950861369344,"id_str":"663727950861369344","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDgKXAAATSyN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDgKXAAATSyN.jpg","url":"https:\/\/t.co\/8erdyg9rk0","display_url":"pic.twitter.com\/8erdyg9rk0","expanded_url":"http:\/\/twitter.com\/Guayana286\/status\/663727951066882048\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080049660"} +{"delete":{"status":{"id":582017964053901312,"id_str":"582017964053901312","user_id":629950599,"user_id_str":"629950599"},"timestamp_ms":"1447080050349"}} +{"delete":{"status":{"id":663727925888311296,"id_str":"663727925888311296","user_id":1542053611,"user_id_str":"1542053611"},"timestamp_ms":"1447080050522"}} +{"delete":{"status":{"id":371899934733107201,"id_str":"371899934733107201","user_id":1677619717,"user_id_str":"1677619717"},"timestamp_ms":"1447080050610"}} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955265380352,"id_str":"663727955265380352","text":"El estar solo no es tan malo, aprendes a drenar tus ideas y pensamientos.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3729776663,"id_str":"3729776663","name":"Joaquin Soria","screen_name":"JoaquinSoria_e","location":null,"url":null,"description":"No abandones cuando todav\u00eda tengas algo que dar, porque nada termina realmente hasta que dejas de luchar.","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1277,"created_at":"Mon Sep 21 16:09:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646330287937462273\/dPBLLY0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646330287937462273\/dPBLLY0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3729776663\/1442932125","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080050661"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269537792,"id_str":"663727955269537792","text":"Alfredo, I hope you\u2019re feeling well (no show, the day off is coming up \u2013 relax, my dear Kitten). As for me, I'm busy at work these days.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1492144807,"id_str":"1492144807","name":"Tatyana","screen_name":"TatyanaB5","location":null,"url":"http:\/\/www.facebook.com\/tatyana.bobyleva","description":"26 years old","protected":false,"verified":false,"followers_count":13,"friends_count":14,"listed_count":0,"favourites_count":5,"statuses_count":6336,"created_at":"Sat Jun 08 06:20:23 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000028795876\/08ec11b8a7f99230f81bea89b5b6a0a8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000028795876\/08ec11b8a7f99230f81bea89b5b6a0a8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1492144807\/1371898025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955252748288,"id_str":"663727955252748288","text":"RT @OxBe4: @NYTVFRC #RobotRumbleNY great day on Saturday. Thank you to all the teams that competed and joined us at #BSCSD https:\/\/t.co\/fTk\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913037851,"id_str":"913037851","name":"Ballston Spa CSD","screen_name":"BSCSD","location":"Ballston Spa NY","url":"http:\/\/www.bscsd.org","description":"An innovative K-12 public school district in Saratoga County.... Educating Everyone Takes Everyone","protected":false,"verified":false,"followers_count":1382,"friends_count":17,"listed_count":15,"favourites_count":8269,"statuses_count":3389,"created_at":"Mon Oct 29 18:59:31 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2781321586\/12f2295b7bc857d65c0a28e200e24a06_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2781321586\/12f2295b7bc857d65c0a28e200e24a06_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913037851\/1373896704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:13:05 +0000 2015","id":663539777636065281,"id_str":"663539777636065281","text":"@NYTVFRC #RobotRumbleNY great day on Saturday. Thank you to all the teams that competed and joined us at #BSCSD https:\/\/t.co\/fTkz44Mujk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2242698578,"in_reply_to_user_id_str":"2242698578","in_reply_to_screen_name":"NYTVFRC","user":{"id":914675899,"id_str":"914675899","name":"FRC Team 3044","screen_name":"OxBe4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":227,"friends_count":74,"listed_count":13,"favourites_count":36,"statuses_count":382,"created_at":"Tue Oct 30 13:40:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419546508262785024\/Hn02ToKa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419546508262785024\/Hn02ToKa_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":8,"entities":{"hashtags":[{"text":"RobotRumbleNY","indices":[9,23]},{"text":"BSCSD","indices":[105,111]}],"urls":[],"user_mentions":[{"screen_name":"NYTVFRC","name":"NY Tech Valley FRC","id":2242698578,"id_str":"2242698578","indices":[0,8]}],"symbols":[],"media":[{"id":663539775752699904,"id_str":"663539775752699904","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663539775752699904,"id_str":"663539775752699904","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663539776855760896,"id_str":"663539776855760896","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6VXUYAAScVC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6VXUYAAScVC.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RobotRumbleNY","indices":[20,34]},{"text":"BSCSD","indices":[116,122]}],"urls":[],"user_mentions":[{"screen_name":"OxBe4","name":"FRC Team 3044","id":914675899,"id_str":"914675899","indices":[3,9]},{"screen_name":"NYTVFRC","name":"NY Tech Valley FRC","id":2242698578,"id_str":"2242698578","indices":[11,19]}],"symbols":[],"media":[{"id":663539775752699904,"id_str":"663539775752699904","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663539777636065281,"source_status_id_str":"663539777636065281","source_user_id":914675899,"source_user_id_str":"914675899"}]},"extended_entities":{"media":[{"id":663539775752699904,"id_str":"663539775752699904","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6RQVAAACK5g.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663539777636065281,"source_status_id_str":"663539777636065281","source_user_id":914675899,"source_user_id_str":"914675899"},{"id":663539776855760896,"id_str":"663539776855760896","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVd6VXUYAAScVC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVd6VXUYAAScVC.jpg","url":"https:\/\/t.co\/fTkz44Mujk","display_url":"pic.twitter.com\/fTkz44Mujk","expanded_url":"http:\/\/twitter.com\/OxBe4\/status\/663539777636065281\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663539777636065281,"source_status_id_str":"663539777636065281","source_user_id":914675899,"source_user_id_str":"914675899"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050658"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261157376,"id_str":"663727955261157376","text":". Te vienes? ;)) #EnModoProvocaci\u00f3n. ;))","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169587924,"id_str":"169587924","name":"cosita zalamera","screen_name":"cosita_zalamera","location":null,"url":null,"description":"Si saltamos, nos salvamos los dos.","protected":false,"verified":false,"followers_count":78,"friends_count":54,"listed_count":4,"favourites_count":877,"statuses_count":21590,"created_at":"Thu Jul 22 18:07:46 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554185265934106624\/pTh5TswH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554185265934106624\/pTh5TswH.jpeg","profile_background_tile":true,"profile_link_color":"806D21","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557571844488708096\/nodEu0IN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557571844488708096\/nodEu0IN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169587924\/1443874359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnModoProvocaci\u00f3n","indices":[17,35]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080050660"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286339584,"id_str":"663727955286339584","text":"@aguilarkwllen tbm Lindinhaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726316211032065,"in_reply_to_status_id_str":"663726316211032065","in_reply_to_user_id":3028423907,"in_reply_to_user_id_str":"3028423907","in_reply_to_screen_name":"aguilarkwllen","user":{"id":794350506,"id_str":"794350506","name":"anna rezend\u2765","screen_name":"putzzAnna","location":null,"url":null,"description":"made of glitter","protected":false,"verified":false,"followers_count":52,"friends_count":207,"listed_count":0,"favourites_count":1080,"statuses_count":2626,"created_at":"Fri Aug 31 17:54:40 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447555653465165824\/sZDHXZpn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447555653465165824\/sZDHXZpn.jpeg","profile_background_tile":false,"profile_link_color":"A4A6A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663539224981979136\/UBdNvQyI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663539224981979136\/UBdNvQyI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794350506\/1447035362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aguilarkwllen","name":"Kell","id":3028423907,"id_str":"3028423907","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261149184,"id_str":"663727955261149184","text":"RT @yvzah: Herkes bir g\u00fcn \u00f6l\u00fcyor, korkanlar ise her g\u00fcn! H\u00fcrriyet'e hat\u0131rlatma!","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1907985900,"id_str":"1907985900","name":"g\u00f6ky\u00fcz\u00fc","screen_name":"SuyaYazmak","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6658,"friends_count":5419,"listed_count":31,"favourites_count":33023,"statuses_count":159702,"created_at":"Thu Sep 26 14:08:47 +0000 2013","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663471648822198276\/MerFkFhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663471648822198276\/MerFkFhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1907985900\/1444665289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 08:40:39 +0000 2015","id":662187759952666624,"id_str":"662187759952666624","text":"Herkes bir g\u00fcn \u00f6l\u00fcyor, korkanlar ise her g\u00fcn! H\u00fcrriyet'e hat\u0131rlatma!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726132506,"id_str":"2726132506","name":"Ahmet Yavuz","screen_name":"yvzah","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4165,"friends_count":1155,"listed_count":13,"favourites_count":5221,"statuses_count":10220,"created_at":"Sun Jul 27 08:28:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493315630758887424\/c7Z4Qk48_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493315630758887424\/c7Z4Qk48_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yvzah","name":"Ahmet Yavuz","id":2726132506,"id_str":"2726132506","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080050660"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955248553984,"id_str":"663727955248553984","text":"RT @PetraZabalgana: Construcci\u00f3n de nuevo edificio de formaci\u00f3n profesional en el IEFPS Miguel Altuna GLHBI de Bergara (Gipuzkoa).... https\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1708738633,"id_str":"1708738633","name":"Simple Job","screen_name":"simple8job","location":null,"url":"http:\/\/www.leadsleap.com\/go\/47557","description":"Do you want to work at home? Let me show you can get a simple job to work at home. Follow me for my tweet about jobs & money opportunities.","protected":false,"verified":false,"followers_count":873,"friends_count":2,"listed_count":1072,"favourites_count":147,"statuses_count":103112,"created_at":"Thu Aug 29 01:21:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000377367742\/c6454ac4ad7de9382056e362c9044043_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000377367742\/c6454ac4ad7de9382056e362c9044043_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:58 +0000 2015","id":663726730838806528,"id_str":"663726730838806528","text":"Construcci\u00f3n de nuevo edificio de formaci\u00f3n profesional en el IEFPS Miguel Altuna GLHBI de Bergara (Gipuzkoa).... https:\/\/t.co\/olRclanzHh","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84345329,"id_str":"84345329","name":"Petra","screen_name":"PetraZabalgana","location":null,"url":null,"description":"No al copago confiscatorio en dependencia. ILP de promoci\u00f3n de autonom\u00eda personal y atenci\u00f3n a las personas en situaci\u00f3n de dependencia","protected":false,"verified":false,"followers_count":322,"friends_count":575,"listed_count":59,"favourites_count":52,"statuses_count":107834,"created_at":"Thu Oct 22 15:02:49 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"399E14","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/47183283\/image_0077.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/47183283\/image_0077.JPG","profile_background_tile":true,"profile_link_color":"213809","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459363411923447808\/C7Xju855_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459363411923447808\/C7Xju855_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84345329\/1398355785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/olRclanzHh","expanded_url":"http:\/\/bit.ly\/1Sc83CY","display_url":"bit.ly\/1Sc83CY","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/olRclanzHh","expanded_url":"http:\/\/bit.ly\/1Sc83CY","display_url":"bit.ly\/1Sc83CY","indices":[139,140]}],"user_mentions":[{"screen_name":"PetraZabalgana","name":"Petra","id":84345329,"id_str":"84345329","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080050657"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261136896,"id_str":"663727955261136896","text":"RT @m_RT246: \u0632\u064a\u062a \u0627\u0644\u062d\u0634\u064a\u0634 \u0627\u0644\u062e\u0627\u0645 #\n\u26d4\ufe0f\u064a\u062a\u0633\u0631\u0628 \u0625\u0644\u0649 \u0641\u0631\u0648\u0629 \u0627\u0644\u0631\u0623\u0633 \u0628\u0623\u0645\u0627\u0646 \u0644\u064a\u0633\u0645\u062d \u0628\u0646\u0645\u0648 \u0627\u0644\u0634\u0639\u0631 \u0628\u0634\u0643\u0644 \u26d4\ufe0f\u0633\u0631\u064a\u0639 \u0648\u0645\u0645\u062a\u0627\u0632\u2663\ufe0f\n\u26d4\ufe0f\u0644\u0637\u0644\u0628 \u0648\u0627\u062a\u06330532411865\ud83d\udcf2 \ud83c\udf3a https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":637361669,"id_str":"637361669","name":"\u0646\u0643\u062a \u062a\u062d\u0634\u064a\u0634","screen_name":"nkt_m7","location":null,"url":null,"description":"\u0646\u0643\u062a \u0645\u062d\u0634\u0634 \u0641\u0644\u0647\u0627 \u0645\u0639\u0627\u0646\u0627 \u0646\u0643\u062a\n\u0646\u0643\u062a \u0636\u062d\u0643 \u0628\u0631\u0648\u062f\u0643\u0627\u0633\u062a \u0643\u064a\u064a\u0643 \u064a\u0648\u062a\u064a\u0648\u0628 \u0627\u062d\u0644\u0627\u0645 \u0639\u0631\u0628\n\u062c\u062f\u064a\u062f \u062a\u0648\u064a\u062a\u0631 \u0645\u0646 \u0641\u064a\u062f\u064a\u0648 \u0648 \u0635\u0648\u0631 \u0648 \u0627\u062e\u0628\u0627\u0631 \u062a\u062c\u062f\n\n\u0627\u0644\u062e\u0627\u0635 \u0645\u0641\u062a\u0648\u062d \u0644\u0644\u062a\u0628\u0627\u062f\u0644","protected":false,"verified":false,"followers_count":458077,"friends_count":134,"listed_count":774,"favourites_count":5881,"statuses_count":141518,"created_at":"Mon Jul 16 23:10:24 +0000 2012","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2818628386\/3cf0cd23e13f6d85e5a10839c299f997_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2818628386\/3cf0cd23e13f6d85e5a10839c299f997_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:04:19 +0000 2015","id":663401675072348161,"id_str":"663401675072348161","text":"\u0632\u064a\u062a \u0627\u0644\u062d\u0634\u064a\u0634 \u0627\u0644\u062e\u0627\u0645 #\n\u26d4\ufe0f\u064a\u062a\u0633\u0631\u0628 \u0625\u0644\u0649 \u0641\u0631\u0648\u0629 \u0627\u0644\u0631\u0623\u0633 \u0628\u0623\u0645\u0627\u0646 \u0644\u064a\u0633\u0645\u062d \u0628\u0646\u0645\u0648 \u0627\u0644\u0634\u0639\u0631 \u0628\u0634\u0643\u0644 \u26d4\ufe0f\u0633\u0631\u064a\u0639 \u0648\u0645\u0645\u062a\u0627\u0632\u2663\ufe0f\n\u26d4\ufe0f\u0644\u0637\u0644\u0628 \u0648\u0627\u062a\u06330532411865\ud83d\udcf2 \ud83c\udf3a https:\/\/t.co\/ZGvU1dQdR9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":629451937985867776,"in_reply_to_status_id_str":"629451937985867776","in_reply_to_user_id":2421173957,"in_reply_to_user_id_str":"2421173957","in_reply_to_screen_name":"m_RT246","user":{"id":2421173957,"id_str":"2421173957","name":"\u0632\u064a\u062a \u0627\u0644\u062d\u0634\u064a\u0634","screen_name":"m_RT246","location":null,"url":null,"description":"\u0644\u0637\u0644\u0628 \u0648\u0627\u062a\u0633 \u0627\u0628\/0532411865\/\u0632\u064a\u062a \u0627\u0644\u062d\u0634\u064a\u0634 \u0627\u0644\u062e\u0627\u0645 \u0627\u0635\u0644\u064a\/ \u0646\u0634\u062d\u0646 \u062c\u0645\u064a\u0639 \u0645\u062f\u0646 \u0627\u0644\u0645\u0645\u0644\u0643\u0647\/\u0646\u0633\u0639\u062f \u0628\u062e\u062f\u0645\u062a\u0643\u0645","protected":false,"verified":false,"followers_count":26689,"friends_count":19391,"listed_count":13,"favourites_count":1501,"statuses_count":3139,"created_at":"Tue Mar 18 22:40:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662359660222136321\/EOLsL4g1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662359660222136321\/EOLsL4g1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2421173957\/1446753819","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":226,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663401634727395329,"id_str":"663401634727395329","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":712,"resize":"fit"},"large":{"w":751,"h":892,"resize":"fit"},"small":{"w":340,"h":403,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663401634727395329,"id_str":"663401634727395329","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":712,"resize":"fit"},"large":{"w":751,"h":892,"resize":"fit"},"small":{"w":340,"h":403,"resize":"fit"}}},{"id":663401635050364930,"id_str":"663401635050364930","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRbCXIAIBpOg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRbCXIAIBpOg.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663401635549433857,"id_str":"663401635549433857","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRc5WUAEPYMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRc5WUAEPYMt.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m_RT246","name":"\u0632\u064a\u062a \u0627\u0644\u062d\u0634\u064a\u0634","id":2421173957,"id_str":"2421173957","indices":[3,11]}],"symbols":[],"media":[{"id":663401634727395329,"id_str":"663401634727395329","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":712,"resize":"fit"},"large":{"w":751,"h":892,"resize":"fit"},"small":{"w":340,"h":403,"resize":"fit"}},"source_status_id":663401675072348161,"source_status_id_str":"663401675072348161","source_user_id":2421173957,"source_user_id_str":"2421173957"}]},"extended_entities":{"media":[{"id":663401634727395329,"id_str":"663401634727395329","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRZ1XAAEq9lX.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":712,"resize":"fit"},"large":{"w":751,"h":892,"resize":"fit"},"small":{"w":340,"h":403,"resize":"fit"}},"source_status_id":663401675072348161,"source_status_id_str":"663401675072348161","source_user_id":2421173957,"source_user_id_str":"2421173957"},{"id":663401635050364930,"id_str":"663401635050364930","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRbCXIAIBpOg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRbCXIAIBpOg.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663401675072348161,"source_status_id_str":"663401675072348161","source_user_id":2421173957,"source_user_id_str":"2421173957"},{"id":663401635549433857,"id_str":"663401635549433857","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTgRc5WUAEPYMt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTgRc5WUAEPYMt.jpg","url":"https:\/\/t.co\/ZGvU1dQdR9","display_url":"pic.twitter.com\/ZGvU1dQdR9","expanded_url":"http:\/\/twitter.com\/m_RT246\/status\/663401675072348161\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663401675072348161,"source_status_id_str":"663401675072348161","source_user_id":2421173957,"source_user_id_str":"2421173957"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080050660"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269566464,"id_str":"663727955269566464","text":"\u042f \u0445\u043e\u0447\u0443 \u0435\u043c\u0443 \u0433\u043e\u0442\u043e\u0432\u0438\u0442\u044c \u0443\u0436\u0438\u043d... \u041e\u0431\u043d\u0438\u043c\u0430\u0442\u044c \u0432 \u043f\u0440\u0438\u0445\u043e\u0436\u0435\u0439 \u0431\u043e\u0441\u0438\u043a\u043e\u043c... \u042f \u0435\u0433\u043e...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261260697,"id_str":"1261260697","name":"BowdenHeadrick","screen_name":"BowdenHeadrick","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":16,"listed_count":5,"favourites_count":0,"statuses_count":149452,"created_at":"Tue Mar 12 06:09:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3582476416\/0a9479f1e70bc01b3070cc13cb6c687d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3582476416\/0a9479f1e70bc01b3070cc13cb6c687d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286343681,"id_str":"663727955286343681","text":"RT @yisucrist: la RAE no aguanta m\u00e1s https:\/\/t.co\/A2WGYC9f3x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328193573,"id_str":"2328193573","name":"\u24c2atias","screen_name":"RamirezMatias_","location":"BoulevardOfBrokenDreams","url":"http:\/\/instagram.com\/_matiasramirez_","description":"|| Basket Olimpia GreenDay","protected":false,"verified":false,"followers_count":198,"friends_count":145,"listed_count":0,"favourites_count":509,"statuses_count":5255,"created_at":"Wed Feb 05 04:23:40 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438287367263105024\/EkznXhUm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438287367263105024\/EkznXhUm.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638779178117136385\/-B1pxBBZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638779178117136385\/-B1pxBBZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328193573\/1435617104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:46 +0000 2015","id":663726678707933184,"id_str":"663726678707933184","text":"la RAE no aguanta m\u00e1s https:\/\/t.co\/A2WGYC9f3x","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701423664,"id_str":"701423664","name":"jezucrihto xd","screen_name":"yisucrist","location":"Hinstagram: @yisucristoficial","url":"https:\/\/www.facebook.com\/yisucrist","description":"nas\u00ed kat\u00f3lico xk jud\u00edos habia muxos. maria mahdalena tkm (L) shavales, ai k repetir santa sena cabrones. Paso d traidores http:\/\/t.co\/3WrBL1CtIg","protected":false,"verified":false,"followers_count":782570,"friends_count":188,"listed_count":965,"favourites_count":86228,"statuses_count":6278,"created_at":"Tue Jul 17 17:16:55 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000407368218\/fa1bad7b5fc824ed3deb233f7c586668_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000407368218\/fa1bad7b5fc824ed3deb233f7c586668_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701423664\/1429027060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":265,"favorite_count":231,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726676673757184,"id_str":"663726676673757184","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","url":"https:\/\/t.co\/A2WGYC9f3x","display_url":"pic.twitter.com\/A2WGYC9f3x","expanded_url":"http:\/\/twitter.com\/yisucrist\/status\/663726678707933184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":738,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"},"large":{"w":650,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726676673757184,"id_str":"663726676673757184","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","url":"https:\/\/t.co\/A2WGYC9f3x","display_url":"pic.twitter.com\/A2WGYC9f3x","expanded_url":"http:\/\/twitter.com\/yisucrist\/status\/663726678707933184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":738,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"},"large":{"w":650,"h":800,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yisucrist","name":"jezucrihto xd","id":701423664,"id_str":"701423664","indices":[3,13]}],"symbols":[],"media":[{"id":663726676673757184,"id_str":"663726676673757184","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","url":"https:\/\/t.co\/A2WGYC9f3x","display_url":"pic.twitter.com\/A2WGYC9f3x","expanded_url":"http:\/\/twitter.com\/yisucrist\/status\/663726678707933184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":738,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"},"large":{"w":650,"h":800,"resize":"fit"}},"source_status_id":663726678707933184,"source_status_id_str":"663726678707933184","source_user_id":701423664,"source_user_id_str":"701423664"}]},"extended_entities":{"media":[{"id":663726676673757184,"id_str":"663726676673757184","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH5VcXAAAndqe.jpg","url":"https:\/\/t.co\/A2WGYC9f3x","display_url":"pic.twitter.com\/A2WGYC9f3x","expanded_url":"http:\/\/twitter.com\/yisucrist\/status\/663726678707933184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":738,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":418,"resize":"fit"},"large":{"w":650,"h":800,"resize":"fit"}},"source_status_id":663726678707933184,"source_status_id_str":"663726678707933184","source_user_id":701423664,"source_user_id_str":"701423664"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286167552,"id_str":"663727955286167552","text":"RT @GaemGyu: \ub0b4\uc77c\ubd80\ud130 \ubca0\ub974\ud14c\ub974 \uccab \uacf5\uc5f0 \uc2dc\uc791!!! \ub0b4 \uccab \uacf5\uc740 \uc544\uc9c1\ub3c4 18\uc77c\uc774\ub098 \ub0a8\uc558\uace0.. \u3160\u3160 \ube68\ub9ac \uacf5\uc5f0 \ud558\uace0\uc2f6\ub2e4..!! https:\/\/t.co\/NtS5WOywVn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333257392,"id_str":"2333257392","name":"train","screen_name":"train926","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":55,"listed_count":0,"favourites_count":5,"statuses_count":3982,"created_at":"Sat Feb 08 10:27:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432099678654435330\/PRWMUr3c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432099678654435330\/PRWMUr3c.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627705695312318465\/jVUjCQhE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627705695312318465\/jVUjCQhE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333257392\/1436423944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:33:02 +0000 2015","id":663710893952204802,"id_str":"663710893952204802","text":"\ub0b4\uc77c\ubd80\ud130 \ubca0\ub974\ud14c\ub974 \uccab \uacf5\uc5f0 \uc2dc\uc791!!! \ub0b4 \uccab \uacf5\uc740 \uc544\uc9c1\ub3c4 18\uc77c\uc774\ub098 \ub0a8\uc558\uace0.. \u3160\u3160 \ube68\ub9ac \uacf5\uc5f0 \ud558\uace0\uc2f6\ub2e4..!! https:\/\/t.co\/NtS5WOywVn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135527082,"id_str":"135527082","name":"ChoKyuHyun","screen_name":"GaemGyu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1649709,"friends_count":46,"listed_count":32344,"favourites_count":1,"statuses_count":341,"created_at":"Wed Apr 21 15:07:40 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5934,"favorite_count":6491,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663710881868439552,"id_str":"663710881868439552","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":719,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GaemGyu","name":"ChoKyuHyun","id":135527082,"id_str":"135527082","indices":[3,11]}],"symbols":[],"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"}]},"extended_entities":{"media":[{"id":663710881855881216,"id_str":"663710881855881216","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9KUwAADCKm.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"},{"id":663710881868439552,"id_str":"663710881868439552","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5h9NUYAAjkQi.jpg","url":"https:\/\/t.co\/NtS5WOywVn","display_url":"pic.twitter.com\/NtS5WOywVn","expanded_url":"http:\/\/twitter.com\/GaemGyu\/status\/663710893952204802\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":719,"resize":"fit"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663710893952204802,"source_status_id_str":"663710893952204802","source_user_id":135527082,"source_user_id_str":"135527082"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955248611328,"id_str":"663727955248611328","text":"RT @FootbalIFights: Thierry I'M TALKING!!!! \ud83d\ude02\ud83d\udc4a https:\/\/t.co\/g50n07Sxg2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403525876,"id_str":"403525876","name":"Adam Sharp","screen_name":"AdamDavidSharp","location":"Kirkcaldy","url":null,"description":"Rangers and Man City supporter, Jorg Albertz aka The Hammer is a living legend!!! We all love abit batman!!","protected":false,"verified":false,"followers_count":208,"friends_count":244,"listed_count":5,"favourites_count":1913,"statuses_count":10378,"created_at":"Wed Nov 02 16:33:07 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/357124991\/poppys.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/357124991\/poppys.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654931023424323584\/ityLGGbl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654931023424323584\/ityLGGbl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403525876\/1437735738","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:32:43 +0000 2015","id":663454121693978624,"id_str":"663454121693978624","text":"Thierry I'M TALKING!!!! \ud83d\ude02\ud83d\udc4a https:\/\/t.co\/g50n07Sxg2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2541397107,"id_str":"2541397107","name":"Football Fights","screen_name":"FootbalIFights","location":null,"url":null,"description":"Bringing you the worst & most shocking fights in football. So shocking we can barely watch... that's a lie we fucking love it \u26bd","protected":false,"verified":false,"followers_count":232661,"friends_count":73,"listed_count":446,"favourites_count":3,"statuses_count":1039,"created_at":"Sun May 11 17:51:41 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655046934168805376\/ROJIsZB4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655046934168805376\/ROJIsZB4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2541397107\/1406661699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":413,"favorite_count":447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663424006645764097,"id_str":"663424006645764097","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","url":"https:\/\/t.co\/g50n07Sxg2","display_url":"pic.twitter.com\/g50n07Sxg2","expanded_url":"http:\/\/twitter.com\/NickDavenport9\/status\/663424037197127680\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663424037197127680,"source_status_id_str":"663424037197127680","source_user_id":626283629,"source_user_id_str":"626283629"}]},"extended_entities":{"media":[{"id":663424006645764097,"id_str":"663424006645764097","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","url":"https:\/\/t.co\/g50n07Sxg2","display_url":"pic.twitter.com\/g50n07Sxg2","expanded_url":"http:\/\/twitter.com\/NickDavenport9\/status\/663424037197127680\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663424037197127680,"source_status_id_str":"663424037197127680","source_user_id":626283629,"source_user_id_str":"626283629","video_info":{"aspect_ratio":[9,16],"duration_millis":6600,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/pl\/3moQvqcA_9OAK-K_.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/pl\/3moQvqcA_9OAK-K_.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/180x320\/LSdxd34-MXnLcYgA.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/720x1280\/T8tDy8X3It7rRKgX.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/360x640\/PaOz3eXoUNK5ntlk.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/360x640\/PaOz3eXoUNK5ntlk.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FootbalIFights","name":"Football Fights","id":2541397107,"id_str":"2541397107","indices":[3,18]}],"symbols":[],"media":[{"id":663424006645764097,"id_str":"663424006645764097","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","url":"https:\/\/t.co\/g50n07Sxg2","display_url":"pic.twitter.com\/g50n07Sxg2","expanded_url":"http:\/\/twitter.com\/NickDavenport9\/status\/663424037197127680\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663424037197127680,"source_status_id_str":"663424037197127680","source_user_id":626283629,"source_user_id_str":"626283629"}]},"extended_entities":{"media":[{"id":663424006645764097,"id_str":"663424006645764097","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663424006645764097\/pu\/img\/6uaAzbT9S4bRBDOT.jpg","url":"https:\/\/t.co\/g50n07Sxg2","display_url":"pic.twitter.com\/g50n07Sxg2","expanded_url":"http:\/\/twitter.com\/NickDavenport9\/status\/663424037197127680\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663424037197127680,"source_status_id_str":"663424037197127680","source_user_id":626283629,"source_user_id_str":"626283629","video_info":{"aspect_ratio":[9,16],"duration_millis":6600,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/pl\/3moQvqcA_9OAK-K_.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/pl\/3moQvqcA_9OAK-K_.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/180x320\/LSdxd34-MXnLcYgA.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/720x1280\/T8tDy8X3It7rRKgX.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/360x640\/PaOz3eXoUNK5ntlk.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663424006645764097\/pu\/vid\/360x640\/PaOz3eXoUNK5ntlk.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050657"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955277955072,"id_str":"663727955277955072","text":"https:\/\/t.co\/96G3PwvOnk Google Wants Its Delivery Drones Up and Running by 2017","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994383308,"id_str":"2994383308","name":"LessThunk","screen_name":"LessThunk","location":null,"url":"http:\/\/LessThunk.com","description":"DAILY COMMENTARY","protected":false,"verified":false,"followers_count":245,"friends_count":239,"listed_count":244,"favourites_count":19,"statuses_count":19196,"created_at":"Fri Jan 23 16:09:00 +0000 2015","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558658222844682240\/ueBYOkpC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558658222844682240\/ueBYOkpC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994383308\/1424743599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/96G3PwvOnk","expanded_url":"http:\/\/ift.tt\/1Mk4sPE","display_url":"ift.tt\/1Mk4sPE","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050664"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955265191937,"id_str":"663727955265191937","text":"\u3069\u3046\u304b \u4f53\u8abf\u60aa\u5316\u3057\u307e\u305b\u3093\u3088\u3046\u306b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1128173504,"id_str":"1128173504","name":"Yu-RiNa \u5c31\u6d3b\u306e\u305f\u3081\u4f4e\u6d6e\u4e0a","screen_name":"ymcn_30_jump10","location":"\u3044\u3064\u304b \u541b\u304c\u8a00\u3063\u3066\u305f \u9055\u3046\u4e16\u754c\u306e\u3053\u3068","url":null,"description":"\u25b3\uff81\uff88\uff9d\uff95\uff73\uff98\u25bd\uff81\uff8b\uff9e\uff70\uff7d\uff9e\u25b3\uff79\uff9d\uff81\uff6c\uff9d \u3001\u25bd95 \u25b3\u3044\u3064\u3082\u3044\u3064\u3082\u3042\u308a\u304c\u3068\u3046\u3002 \u25bd\u75c5\u6c17\u306b\u306a\u3093\u3066\u8ca0\u3051\u306a\u3044\u304f\u3089\u3044\u306e\u7b11\u9854\u3067\u751f\u304d\u308b\u3002\u25b3\u88d5\u7fd4\u304f\u3093\u3042\u308a\u304c\u3068\u3046\u3002\u25bd\u305f\u304f\u3055\u3093\u306e\u5e78\u305b\u3092\u3042\u308a\u304c\u3068\u3046\u3002 \u25b3JUMPing CARnival !\u2606August.12","protected":false,"verified":false,"followers_count":367,"friends_count":632,"listed_count":1,"favourites_count":4701,"statuses_count":3419,"created_at":"Mon Jan 28 14:05:53 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654315672931954688\/CA1ebBiV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654315672931954688\/CA1ebBiV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128173504\/1446624107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050661"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256832000,"id_str":"663727955256832000","text":"Get Weather Updates from The Weather Channel. 09:40:50","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354981927,"id_str":"3354981927","name":"muse31066","screen_name":"muse31066","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":38,"listed_count":0,"favourites_count":0,"statuses_count":41028,"created_at":"Thu Jul 02 13:09:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273625601,"id_str":"663727955273625601","text":"\u30d5\u30a9\u30c3\u30d5\u30a9\u30c3\u30d5\u30a9\u30c3\n\u4e45\u3005\u306b\u304a\u3057\u304a\u304d\u3092\u3057\u3066\u305f\u3089\u52c3\u8d77\u3057\u3066\u3057\u3082\u3046\u305f\u308f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571423090,"id_str":"571423090","name":"\u5f7c\u5cb8\u5cf6BOT","screen_name":"marutajima_bot","location":"\u8d85\u52a9\u304b\u308b\u307b\u3089\u7a74","url":"http:\/\/twpf.jp\/marutajima_bot","description":"\u300c\u3042\u3063\u305f\u3088\uff01\u5f7c\u5cb8\u5cf6\u306e\u30dc\u30c3\u30c8\u304c\uff01\u300d\u3000\u6f2b\u753b\u201d\u5f7c\u5cb8\u5cf6\u201d\u306e\u6570\u3005\u306e\u540d\u8a00\u30fb\u540d\u53f0\u8a5e\u3092\u545f\u304f\u975e\u516c\u5f0fBOT\u3067\u3059\u3002\u30ea\u30d7\u30e9\u30a4\u30fbTL\u4e0a\u306e\u7279\u5b9a\u30ef\u30fc\u30c9\u306b\u3082\u53cd\u5fdc\u3059\u308b\u304b\u3089\u3061\u304f\u3057\u3087\u3046\uff01\u30c4\u30a4\u30d7\u30ed\u30cf\u53d6\u8aac\u30e8\u3001\u30dc\u30a6\u30e4\u2025\u2025\u30bf\u30f3\u30c8\u30aa\u30e8\u30df\u2025\u2025","protected":false,"verified":false,"followers_count":935,"friends_count":968,"listed_count":14,"favourites_count":0,"statuses_count":19099,"created_at":"Sat May 05 04:02:11 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630760823476981760\/OYKUcEIG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630760823476981760\/OYKUcEIG_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955252654080,"id_str":"663727955252654080","text":"@tacobell \ud83c\udf2e+\ud83d\udd25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":7831092,"in_reply_to_user_id_str":"7831092","in_reply_to_screen_name":"tacobell","user":{"id":1011912266,"id_str":"1011912266","name":"Nathan Penski","screen_name":"NathanPenski","location":"probably somewhere","url":null,"description":"i have no interests (except music) shs 16","protected":false,"verified":false,"followers_count":159,"friends_count":219,"listed_count":0,"favourites_count":1096,"statuses_count":5102,"created_at":"Fri Dec 14 20:28:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"EB802F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659531652683595776\/1lCvnADr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659531652683595776\/1lCvnADr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011912266\/1445976519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tacobell","name":"Taco Bell","id":7831092,"id_str":"7831092","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080050658"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955248439296,"id_str":"663727955248439296","text":"\"The only way to gain mental toughness is to do things you don't like doing.\" \"When your brain says you're done, you're only 40% done.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2966762652,"id_str":"2966762652","name":"Ta'Mar Coby","screen_name":"coby_tay","location":null,"url":null,"description":"You tweeters like my tweetings...? SWIFTIE\/ LOVATIC\/ HARMONIZER In this world, not of it.","protected":false,"verified":false,"followers_count":99,"friends_count":255,"listed_count":1,"favourites_count":2339,"statuses_count":776,"created_at":"Thu Jan 08 17:10:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647409358989496321\/8Thvk0-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647409358989496321\/8Thvk0-0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2966762652\/1420739207","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050657"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955248443392,"id_str":"663727955248443392","text":"RT @Fiona7689Fiona: Rape victim tells how her father attacked her for four years https:\/\/t.co\/UmSoHtIG6H via @MailOnline","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2934036153,"id_str":"2934036153","name":"OSusannah...1","screen_name":"sphelan4594","location":"Ohio","url":null,"description":"NASCAR INDY CAR JUSTIN WILSON #BADASSWILSON\u2764 STEFAN WILSON JOHNNY THUNDERS R.I.P. MESI R.I.P WASHINGTON CAPITALS #RTR","protected":false,"verified":false,"followers_count":241,"friends_count":106,"listed_count":18,"favourites_count":2534,"statuses_count":14227,"created_at":"Sat Dec 20 19:16:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642748060976607233\/Dx0MHj1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642748060976607233\/Dx0MHj1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2934036153\/1446527597","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727822704394240,"id_str":"663727822704394240","text":"Rape victim tells how her father attacked her for four years https:\/\/t.co\/UmSoHtIG6H via @MailOnline","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906146191,"id_str":"2906146191","name":"Fiona Norris","screen_name":"Fiona7689Fiona","location":"Northern Ireland","url":null,"description":null,"protected":false,"verified":false,"followers_count":1032,"friends_count":920,"listed_count":60,"favourites_count":21068,"statuses_count":44958,"created_at":"Fri Dec 05 09:50:56 +0000 2014","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540807436966182912\/ae6hfWWl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540807436966182912\/ae6hfWWl_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UmSoHtIG6H","expanded_url":"http:\/\/dailym.ai\/1M1Bw15","display_url":"dailym.ai\/1M1Bw15","indices":[61,84]}],"user_mentions":[{"screen_name":"MailOnline","name":"Daily Mail Online","id":15438913,"id_str":"15438913","indices":[89,100]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UmSoHtIG6H","expanded_url":"http:\/\/dailym.ai\/1M1Bw15","display_url":"dailym.ai\/1M1Bw15","indices":[81,104]}],"user_mentions":[{"screen_name":"Fiona7689Fiona","name":"Fiona Norris","id":2906146191,"id_str":"2906146191","indices":[3,18]},{"screen_name":"MailOnline","name":"Daily Mail Online","id":15438913,"id_str":"15438913","indices":[109,120]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050657"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269455872,"id_str":"663727955269455872","text":"@kanseitou66 \u30b9\u30fc\u30d1\u30fc\u30de\u30ea\u30aa\u7684\u306b\u306f\u8e0f\u3093\u3067\u3082\u5fa9\u6d3b\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660514672641,"in_reply_to_status_id_str":"663727660514672641","in_reply_to_user_id":854464051,"in_reply_to_user_id_str":"854464051","in_reply_to_screen_name":"kanseitou66","user":{"id":128199756,"id_str":"128199756","name":"\u6298\u6ca2\u9752\u5f25\uff20\u307e\u306a\u677f\u304a\u3058\u3044\u3061","screen_name":"seiyaorisawa","location":null,"url":"http:\/\/ameblo.jp\/seiyaorisawa\/","description":"\u3089\u58f0\u512a\u3001MC\u3001\u30ca\u30ec\u30fc\u30b7\u30e7\u30f3\u3001\u6b4c\u3084\u3063\u3066\u308b\u30b2\u30fc\u30de\u30fc\u3002","protected":false,"verified":false,"followers_count":627,"friends_count":573,"listed_count":36,"favourites_count":3520,"statuses_count":73464,"created_at":"Wed Mar 31 12:03:29 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642953288288067584\/GwkpZKIO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642953288288067584\/GwkpZKIO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128199756\/1422226661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanseitou66","name":"\u6cbc\u5c3b\u76f4\u5b50\uff08\u76f4\u5b50\u5148\u751f\uff0911\/26\u3071\u305a\u308b","id":854464051,"id_str":"854464051","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273641984,"id_str":"663727955273641984","text":"\u79c1\u670d\u3067\u901a\u5b66\u3068\u304b\u3042\u308a\u3048\u3093\u308f\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162302462,"id_str":"1162302462","name":"\u3075\u304a\u3093\uff20\u6df1\u5fd7","screen_name":"Fuon_P","location":"\u5317\u9678","url":"https:\/\/www.fuon.jp\/","description":"\u6700\u8fd1\u30af\u30e9\u30ea\u30cd\u30c3\u30c8\u3092\u59cb\u3081\u305f\u3001\u67d0\u5927\u5b66\u306b\u901a\u3046\u8ab2\u91d1\u5175\uff08\u6a5f\u7532\u79d1\uff09\u3002WoT\uff08NA\u9bd6\uff09\u3067MOMO_KAWASHIMA_GuP\u3092\u304a\u898b\u304b\u3051\u306e\u969b\u306f\u3001\u662f\u975e\u304a\u6c17\u8efd\u306bAP\u5f3e\u3092\u6483\u3061\u8fbc\u3093\u3067\u3084\u3063\u3066\u4e0b\u3055\u3044\u3002 \nYCL-82\u3002","protected":false,"verified":false,"followers_count":160,"friends_count":193,"listed_count":2,"favourites_count":1765,"statuses_count":22324,"created_at":"Sat Feb 09 08:03:50 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633176910298640384\/n66SXAIy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633176910298640384\/n66SXAIy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1162302462\/1438261420","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955265196033,"id_str":"663727955265196033","text":"RT @black_na_zatu: \u4eba\u9593\u306f\u6975\u5ea6\u306b\u75b2\u308c\u3066\u304f\u308b\u3068\u4e0b\u30cd\u30bf\u3057\u304b\u982d\u306b\u6d6e\u304b\u3070\u306a\u304f\u306a\u308b\u3002\n\u8133\u304c\u547d\u306e\u5371\u6a5f\u3060\u3068\u5224\u65ad\u3059\u308b\u3068\u7a2e\u306e\u751f\u5b58\u672c\u80fd\u304c\u50cd\u3044\u3066\u982d\u304c\u4e0b\u30cd\u30bf\u3067\u3044\u3063\u3071\u3044\u304a\u3063\u3071\u3044\u306b\u306a\u308b\u3002\n\u3060\u304b\u3089\u7b11\u9854\u3067\u610f\u6c17\u63da\u3005\u3068\u4e0b\u30cd\u30bf\u3092\u8a00\u3063\u3066\u3044\u308b\u5974\u304c\u3044\u305f\u3089\n\u5fc3\u306b\u6df1\u3044\u50b7\u3092\u8ca0\u3063\u3066\u3044\u308b\u306b\u9055\u3044\u306a\u3044\u306e\u3067\u512a\u3057\u304f\u3057\u308d\u3088\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3007101469,"id_str":"3007101469","name":"\u30a2\u30cb\u30e1\u30d0\u30fc \u30ec\u30be\u30f3\u30c7\u30fc\u30c8\u30eb\uff01","screen_name":"06r2Ms","location":"\u9152\u7530\u5e02\u4e2d\u753a2-4-23 2F","url":null,"description":"\u958b\u5e97\u6642\u959320:00\u301c\u3072\u3063\u305d\u308a\u3068\u55b6\u696d\u4e2d\uff01\u6700\u8fd1\u306f\u65e5\u66dc\u65e5\u4f11\u307f\u306b\u306a\u3063\u3066\u307e\u3059\uff01 \u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u306eMay'n\u3092\u63a8\u3057\u3066\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":185,"friends_count":215,"listed_count":1,"favourites_count":491,"statuses_count":2407,"created_at":"Sun Feb 01 18:23:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657406147691851776\/TcUPyUu6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657406147691851776\/TcUPyUu6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3007101469\/1444305642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 02:00:01 +0000 2015","id":663174102107099136,"id_str":"663174102107099136","text":"\u4eba\u9593\u306f\u6975\u5ea6\u306b\u75b2\u308c\u3066\u304f\u308b\u3068\u4e0b\u30cd\u30bf\u3057\u304b\u982d\u306b\u6d6e\u304b\u3070\u306a\u304f\u306a\u308b\u3002\n\u8133\u304c\u547d\u306e\u5371\u6a5f\u3060\u3068\u5224\u65ad\u3059\u308b\u3068\u7a2e\u306e\u751f\u5b58\u672c\u80fd\u304c\u50cd\u3044\u3066\u982d\u304c\u4e0b\u30cd\u30bf\u3067\u3044\u3063\u3071\u3044\u304a\u3063\u3071\u3044\u306b\u306a\u308b\u3002\n\u3060\u304b\u3089\u7b11\u9854\u3067\u610f\u6c17\u63da\u3005\u3068\u4e0b\u30cd\u30bf\u3092\u8a00\u3063\u3066\u3044\u308b\u5974\u304c\u3044\u305f\u3089\n\u5fc3\u306b\u6df1\u3044\u50b7\u3092\u8ca0\u3063\u3066\u3044\u308b\u306b\u9055\u3044\u306a\u3044\u306e\u3067\u512a\u3057\u304f\u3057\u308d\u3088\u306a\u3002","source":"\u003ca href=\"https:\/\/twitter.com\/obgatlfbka\" rel=\"nofollow\"\u003eparial\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317149460,"id_str":"3317149460","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","screen_name":"black_na_zatu","location":null,"url":null,"description":"\u6bd2\u820c\u30c6\u30c7\u30a3\u30d9\u30a2\u300c\u30c6\u30c3\u30c9\u300d\u304c\u5c11\u3057\u30d6\u30e9\u30c3\u30af\u306a\u96d1\u5b66\u3092\u6559\u3048\u3066\u304f\u308c\u307e\u3059\u3002\u203b\u975e\u516c\u5f0f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":61343,"friends_count":0,"listed_count":215,"favourites_count":0,"statuses_count":150,"created_at":"Sun Aug 16 20:34:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317149460\/1444568111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15520,"favorite_count":9798,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"black_na_zatu","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","id":3317149460,"id_str":"3317149460","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050661"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269521408,"id_str":"663727955269521408","text":"RT @AlexPashkov: \u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 @korobkov \u044d\u0442\u043e... #JeSuisKorobkov #\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432\u0416\u0438\u0432\u0438 #\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3824117895,"id_str":"3824117895","name":"\u041e\u043a\u0441\u0430\u043d\u0430 \u0424\u0438\u043b\u0438\u043d\u0430","screen_name":"naka92702393","location":"\u0420\u0443\u0437\u0430\u0435\u0432\u043a\u0430, \u041c\u043e\u0440\u0434\u043e\u0432\u0438\u044f \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430","url":"http:\/\/ideaway.ru\/","description":"\u0432\u0441\u0435\u043c \u0431\u043e\u0431\u0440\u0430!","protected":false,"verified":false,"followers_count":396,"friends_count":1633,"listed_count":0,"favourites_count":1,"statuses_count":942,"created_at":"Wed Sep 30 12:45:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649204438561767424\/IiBOKRFo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649204438561767424\/IiBOKRFo.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649204016769970176\/L5cfwXG4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649204016769970176\/L5cfwXG4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3824117895\/1443617328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:22 +0000 2015","id":663726075260858368,"id_str":"663726075260858368","text":"\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 @korobkov \u044d\u0442\u043e... #JeSuisKorobkov #\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432\u0416\u0438\u0432\u0438 #\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191073934,"id_str":"191073934","name":"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u041f\u0430\u0448\u043a\u043e\u0432","screen_name":"AlexPashkov","location":"\u041a\u0443\u0440\u0447\u0430\u0442\u043e\u0432 \/ \u041a\u0443\u0440\u0441\u043a","url":"http:\/\/alexpashkov.info\/","description":"\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043f\u0440\u0435\u0434\u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c, \u0436\u0443\u0440\u043d\u0430\u043b\u0438\u0441\u0442, \u0431\u043b\u043e\u0433\u0435\u0440, \u0432\u0435\u0431-\u043c\u0430\u0441\u0442\u0435\u0440, \u043f\u0430\u0442\u0440\u0438\u043e\u0442. \u0410\u043a\u0442\u0438\u0432\u043d\u043e \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u0443\u044e\u0441\u044c IT, \u043f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u0438 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u043c\u0438 \u0432 \u044d\u0442\u0438\u0445 \u0432\u0430\u0448\u0438\u0445 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430\u0445","protected":false,"verified":false,"followers_count":135639,"friends_count":139583,"listed_count":194,"favourites_count":47,"statuses_count":24785,"created_at":"Wed Sep 15 15:05:38 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459250258644451328\/0PkdkFuC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459250258644451328\/0PkdkFuC.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6E6E6","profile_text_color":"7D7B7D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459249913000235008\/ke37F-80_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459249913000235008\/ke37F-80_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191073934\/1398328891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ff49f2c9cabad9a3","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ff49f2c9cabad9a3.json","place_type":"city","name":"\u041a\u0443\u0440\u0447\u0430\u0442\u043e\u0432","full_name":"\u041a\u0443\u0440\u0447\u0430\u0442\u043e\u0432, \u041a\u0443\u0440\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[35.603542,51.650644],[35.603542,51.680644],[35.750842,51.680644],[35.750842,51.650644]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":0,"entities":{"hashtags":[{"text":"JeSuisKorobkov","indices":[28,43]},{"text":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432\u0416\u0438\u0432\u0438","indices":[44,57]},{"text":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432","indices":[58,67]}],"urls":[],"user_mentions":[{"screen_name":"korobkov","name":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432-\u0417\u0435\u043c\u043b\u044f\u043d\u0441\u043a\u0438\u0439","id":29414182,"id_str":"29414182","indices":[11,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JeSuisKorobkov","indices":[45,60]},{"text":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432\u0416\u0438\u0432\u0438","indices":[61,74]},{"text":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"AlexPashkov","name":"\u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440 \u041f\u0430\u0448\u043a\u043e\u0432","id":191073934,"id_str":"191073934","indices":[3,15]},{"screen_name":"korobkov","name":"\u041a\u043e\u0440\u043e\u0431\u043a\u043e\u0432-\u0417\u0435\u043c\u043b\u044f\u043d\u0441\u043a\u0438\u0439","id":29414182,"id_str":"29414182","indices":[28,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261026305,"id_str":"663727955261026305","text":"RT @mildbbbbbb_: \u0e40\u0e17\u0e23\u0e19\u0e43\u0e2b\u0e49 #EXO \u0e17\u0e31\u0e49\u0e07\u0e17\u0e35\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e32\u0e21\u0e41\u0e17\u0e47\u0e01 #CALLMEBABY \u0e41\u0e16\u0e21\u0e22\u0e31\u0e07\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e0a\u0e44\u0e1b\u0e2b\u0e32 @MnetMAMA \u0e2d\u0e35\u0e01\u0e40\u0e22\u0e2d\u0e30\u0e44\u0e1b\u0e44\u0e2b\u0e19\u0e01\u0e0f\u0e01\u0e32\u0e23\u0e40\u0e17\u0e23\u0e19 #2015MAMA \u0e01\u0e47\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e0a\u0e48\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2681854747,"id_str":"2681854747","name":"\u0e0b\u0e34\u0e2a\u0e40\u0e17\u0e2d\u0e23\u0e4c\u0e0b\u0e39\u0e08\u0e2d\u0e07.","screen_name":"itsariya148","location":"\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e02\u0e2d\u0e07\u0e2e\u0e38\u0e19\u0e41\u0e1a\u0e04","url":null,"description":"Exo | Kim Taeyeon | Krystal Jung | Bea Miller | Emma Watson | Esther Supreela | Kiko Mizuhara","protected":false,"verified":false,"followers_count":128,"friends_count":270,"listed_count":0,"favourites_count":1315,"statuses_count":18029,"created_at":"Sat Jul 26 08:48:53 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650316712231858177\/kIj27qXA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650316712231858177\/kIj27qXA.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662983026675060736\/46Z1tGub_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662983026675060736\/46Z1tGub_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2681854747\/1445947353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:27 +0000 2015","id":663726599779422208,"id_str":"663726599779422208","text":"\u0e40\u0e17\u0e23\u0e19\u0e43\u0e2b\u0e49 #EXO \u0e17\u0e31\u0e49\u0e07\u0e17\u0e35\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e15\u0e31\u0e49\u0e07\u0e2a\u0e32\u0e21\u0e41\u0e17\u0e47\u0e01 #CALLMEBABY \u0e41\u0e16\u0e21\u0e22\u0e31\u0e07\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e0a\u0e44\u0e1b\u0e2b\u0e32 @MnetMAMA \u0e2d\u0e35\u0e01\u0e40\u0e22\u0e2d\u0e30\u0e44\u0e1b\u0e44\u0e2b\u0e19\u0e01\u0e0f\u0e01\u0e32\u0e23\u0e40\u0e17\u0e23\u0e19 #2015MAMA \u0e01\u0e47\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e31\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1382151330,"id_str":"1382151330","name":"`bameilkd","screen_name":"mildbbbbbb_","location":"since 1992 \u2661 1999","url":null,"description":"\u0e17\u0e32\u0e2a \uc138\ud6c8 again.","protected":false,"verified":false,"followers_count":4994,"friends_count":401,"listed_count":4,"favourites_count":3905,"statuses_count":78299,"created_at":"Fri Apr 26 15:20:38 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653959847600259073\/kWuPFpFZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653959847600259073\/kWuPFpFZ.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718326216974336\/bQ6lSJ6n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718326216974336\/bQ6lSJ6n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1382151330\/1446394544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[8,12]},{"text":"CALLMEBABY","indices":[42,53]},{"text":"2015MAMA","indices":[103,112]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[71,80]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[25,29]},{"text":"CALLMEBABY","indices":[59,70]},{"text":"2015MAMA","indices":[120,129]}],"urls":[],"user_mentions":[{"screen_name":"mildbbbbbb_","name":"`bameilkd","id":1382151330,"id_str":"1382151330","indices":[3,15]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[88,97]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080050660"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955252670466,"id_str":"663727955252670466","text":"@Lv_KK254jjj \u65e9\u304f\u5e30\u3063\u3066\u3053\u3044\u3088\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724400189943809,"in_reply_to_status_id_str":"663724400189943809","in_reply_to_user_id":2400951187,"in_reply_to_user_id_str":"2400951187","in_reply_to_screen_name":"Lv_KK254jjj","user":{"id":1062840884,"id_str":"1062840884","name":"\u3053\u3046\u3078\u3044","screen_name":"ko_hey528","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":117,"friends_count":134,"listed_count":0,"favourites_count":188,"statuses_count":3913,"created_at":"Sat Jan 05 11:55:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3511219905\/1aa5c129b0fa02b651ef98743af06d20_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3511219905\/1aa5c129b0fa02b651ef98743af06d20_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1062840884\/1365900857","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lv_KK254jjj","name":"\u3051\u3093\u308d\u301c","id":2400951187,"id_str":"2400951187","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050658"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286302720,"id_str":"663727955286302720","text":"@niclasbenjamin If u do this I don't want to cook with u\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727703670054912,"in_reply_to_status_id_str":"663727703670054912","in_reply_to_user_id":636124693,"in_reply_to_user_id_str":"636124693","in_reply_to_screen_name":"niclasbenjamin","user":{"id":3750475457,"id_str":"3750475457","name":"Benjamin Bolivia","screen_name":"BenPeltonenBol","location":"Benjamin\u2764\ufe0f","url":"http:\/\/ask.fm\/benjaminbolivia?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","description":"\u2022First account from Bolivia to support Benjamin\u2022 *You can listen Square One EP on Spotify or ITunes right now* Follow him @niclasbenjamin \u007b@milenkacarolina \u007d","protected":false,"verified":false,"followers_count":34,"friends_count":46,"listed_count":0,"favourites_count":268,"statuses_count":468,"created_at":"Wed Sep 23 15:04:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646712820684488704\/XnbuCmqU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646712820684488704\/XnbuCmqU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3750475457\/1445177735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"niclasbenjamin","name":"Benjamin","id":636124693,"id_str":"636124693","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269386241,"id_str":"663727955269386241","text":"RT @Truman_Black: Today is the day we take our new world out on the road. A more colourful world. A less colourful world","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3038686735,"id_str":"3038686735","name":"Zoyla","screen_name":"stckhlmzoyla","location":null,"url":null,"description":"I'm zoyla and I have no talent","protected":false,"verified":false,"followers_count":11,"friends_count":24,"listed_count":0,"favourites_count":154,"statuses_count":138,"created_at":"Tue Feb 24 01:15:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650890299510644737\/jV3A9ip7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650890299510644737\/jV3A9ip7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:05:39 +0000 2015","id":663688900448288769,"id_str":"663688900448288769","text":"Today is the day we take our new world out on the road. A more colourful world. A less colourful world","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227324947,"id_str":"227324947","name":"matty from the 1975","screen_name":"Truman_Black","location":null,"url":null,"description":"The 1975","protected":false,"verified":true,"followers_count":500584,"friends_count":662,"listed_count":1354,"favourites_count":312,"statuses_count":788,"created_at":"Thu Dec 16 14:58:09 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179382690\/AEWzr26K.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179382690\/AEWzr26K.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638862437693833216\/8MT8xTjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638862437693833216\/8MT8xTjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227324947\/1433232405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4228,"favorite_count":7646,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Truman_Black","name":"matty from the 1975","id":227324947,"id_str":"227324947","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273650176,"id_str":"663727955273650176","text":"About to snap on this Monday and it's only 8:40.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309838486,"id_str":"309838486","name":"Tatum Marie Knight","screen_name":"Tatum_Knight","location":"Kansas \u27a1 Willy Bap","url":null,"description":"I may not be perfect, but at least I'm not you.","protected":false,"verified":false,"followers_count":795,"friends_count":1549,"listed_count":2,"favourites_count":3331,"statuses_count":6166,"created_at":"Thu Jun 02 19:14:47 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0132","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432933982\/xa2a0dc46af7fe58aeb99f0f79be24ea.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432933982\/xa2a0dc46af7fe58aeb99f0f79be24ea.png","profile_background_tile":true,"profile_link_color":"504D53","profile_sidebar_border_color":"211B1E","profile_sidebar_fill_color":"521062","profile_text_color":"C6FFFA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657606676787236864\/cRYyPZPK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657606676787236864\/cRYyPZPK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309838486\/1446342618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e8ad2641c1cb666c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e8ad2641c1cb666c.json","place_type":"admin","name":"Arkansas","full_name":"Arkansas, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-94.617710,33.004106],[-94.617710,36.499767],[-89.644838,36.499767],[-89.644838,33.004106]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269435393,"id_str":"663727955269435393","text":"Kenapa gaada satupun foto gue ya dialbum digitalnya (Instagram) oh iya mungkin maluuu wkwk :-p-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718122134,"id_str":"718122134","name":"Risvia Marlitayani^^","screen_name":"_Risviamy","location":"Pandeglang, Banten","url":"http:\/\/risviam.blogspot.com\/","description":"Jadi lebih baik lagi!bismillah\u2665 | @_Fakhruroji135 \u2665\u2665\u2665","protected":false,"verified":false,"followers_count":1421,"friends_count":662,"listed_count":1,"favourites_count":371,"statuses_count":41279,"created_at":"Thu Jul 26 13:34:04 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E386B3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124017398\/46e8587f64adb5797e5c313210a1d92d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124017398\/46e8587f64adb5797e5c313210a1d92d.jpeg","profile_background_tile":true,"profile_link_color":"6167E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660116311658237952\/B7Sd3Vdx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660116311658237952\/B7Sd3Vdx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718122134\/1446243578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273580544,"id_str":"663727955273580544","text":"Get Weather Updates from The Weather Channel. 09:40:50","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2329313034,"id_str":"2329313034","name":"GHMgtbt","screen_name":"GHMgtbt","location":null,"url":null,"description":"Continuous price updates for GRAHAM (GHM)","protected":false,"verified":false,"followers_count":6,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":46143,"created_at":"Wed Feb 05 20:26:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955277824000,"id_str":"663727955277824000","text":"RT @NivekZitro: @ivorypistol22 @mariela81 @ChargerChick310 @lynnbenz69 @stefanibaez1 @I_Sell_Drywall @Lovemytexans Always. https:\/\/t.co\/iIE\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50719962,"id_str":"50719962","name":"\u2763R\u2022o\u2022s\u2022i\u2022e\u2763","screen_name":"ChargerChick310","location":"In The Hood, CA ","url":null,"description":"\u2022A mixture of good intentions and bad decisions\u2022 #TeamHorchata","protected":false,"verified":false,"followers_count":1599,"friends_count":1318,"listed_count":22,"favourites_count":60822,"statuses_count":48928,"created_at":"Thu Jun 25 18:10:41 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662799268726484992\/dKkH_Ia2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662799268726484992\/dKkH_Ia2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50719962\/1446388671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727435356045312,"id_str":"663727435356045312","text":"@ivorypistol22 @mariela81 @ChargerChick310 @lynnbenz69 @stefanibaez1 @I_Sell_Drywall @Lovemytexans Always. https:\/\/t.co\/iIEKNiDG4p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2753863633,"in_reply_to_user_id_str":"2753863633","in_reply_to_screen_name":"ivorypistol22","user":{"id":890261383,"id_str":"890261383","name":"Kevin Ortiz","screen_name":"NivekZitro","location":null,"url":null,"description":"He's not as good as everyone says he is....He's better!! #SonHusbandFather#Mohrrior Hat Trick Winner #jaymohrsports","protected":false,"verified":false,"followers_count":671,"friends_count":468,"listed_count":19,"favourites_count":41398,"statuses_count":44190,"created_at":"Fri Oct 19 03:57:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3235230833\/ae374298428e20619d0e51dd3e6f5e98_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3235230833\/ae374298428e20619d0e51dd3e6f5e98_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890261383\/1422736226","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727238987325440,"quoted_status_id_str":"663727238987325440","quoted_status":{"created_at":"Mon Nov 09 14:37:59 +0000 2015","id":663727238987325440,"id_str":"663727238987325440","text":"Monday. https:\/\/t.co\/JXaG23ywCo","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245548093,"id_str":"245548093","name":"PEANUTS","screen_name":"Snoopy","location":null,"url":null,"description":"\u00a9 2015 Peanuts Worldwide LLC - Instagram: Snoopygrams \/ Snapchat: SnoopysSnaps \/ Facebook: Snoopy","protected":false,"verified":true,"followers_count":468924,"friends_count":64,"listed_count":3582,"favourites_count":528,"statuses_count":9917,"created_at":"Mon Jan 31 23:14:17 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_tile":true,"profile_link_color":"005596","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFE600","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245548093\/1444425461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iIEKNiDG4p","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/663727238987325440","display_url":"twitter.com\/Snoopy\/status\/\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"ivorypistol22","name":"Iggy's Mom","id":2753863633,"id_str":"2753863633","indices":[0,14]},{"screen_name":"mariela81","name":"Tica81","id":41695758,"id_str":"41695758","indices":[15,25]},{"screen_name":"ChargerChick310","name":"\u2763R\u2022o\u2022s\u2022i\u2022e\u2763","id":50719962,"id_str":"50719962","indices":[26,42]},{"screen_name":"lynnbenz69","name":"Veronica Mercedes","id":1130405754,"id_str":"1130405754","indices":[43,54]},{"screen_name":"stefanibaez1","name":"stefani baez","id":38812887,"id_str":"38812887","indices":[55,68]},{"screen_name":"I_Sell_Drywall","name":"ErinNotAmber","id":631098207,"id_str":"631098207","indices":[69,84]},{"screen_name":"Lovemytexans","name":"Jessica","id":464674591,"id_str":"464674591","indices":[85,98]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iIEKNiDG4p","expanded_url":"https:\/\/twitter.com\/Snoopy\/status\/663727238987325440","display_url":"twitter.com\/Snoopy\/status\/\u2026","indices":[123,140]}],"user_mentions":[{"screen_name":"NivekZitro","name":"Kevin Ortiz","id":890261383,"id_str":"890261383","indices":[3,14]},{"screen_name":"ivorypistol22","name":"Iggy's Mom","id":2753863633,"id_str":"2753863633","indices":[16,30]},{"screen_name":"mariela81","name":"Tica81","id":41695758,"id_str":"41695758","indices":[31,41]},{"screen_name":"ChargerChick310","name":"\u2763R\u2022o\u2022s\u2022i\u2022e\u2763","id":50719962,"id_str":"50719962","indices":[42,58]},{"screen_name":"lynnbenz69","name":"Veronica Mercedes","id":1130405754,"id_str":"1130405754","indices":[59,70]},{"screen_name":"stefanibaez1","name":"stefani baez","id":38812887,"id_str":"38812887","indices":[71,84]},{"screen_name":"I_Sell_Drywall","name":"ErinNotAmber","id":631098207,"id_str":"631098207","indices":[85,100]},{"screen_name":"Lovemytexans","name":"Jessica","id":464674591,"id_str":"464674591","indices":[101,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050664"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273756672,"id_str":"663727955273756672","text":"Bring on the Dedicated Smell Words, and Other News https:\/\/t.co\/S8PLFh9XWW via #books #ebooks #bookswithbuzz","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367346002,"id_str":"367346002","name":"Riton Khan","screen_name":"RitonKhan","location":"Alpharetta, GA","url":"http:\/\/itweet.us","description":"Healthcare IT Engineer and Social Entrepreneur. #healthcareit #bookswithbuzz #stayhungryforknowledge\nKnowledge is good only if it is shared.","protected":false,"verified":false,"followers_count":594,"friends_count":499,"listed_count":145,"favourites_count":14,"statuses_count":88797,"created_at":"Sat Sep 03 20:28:36 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482900508336599040\/h7oLkCGi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482900508336599040\/h7oLkCGi.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495159342841073664\/MMsormk-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495159342841073664\/MMsormk-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367346002\/1427828420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"books","indices":[79,85]},{"text":"ebooks","indices":[86,93]},{"text":"bookswithbuzz","indices":[94,108]}],"urls":[{"url":"https:\/\/t.co\/S8PLFh9XWW","expanded_url":"http:\/\/bit.ly\/1NEzMNy","display_url":"bit.ly\/1NEzMNy","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955282034688,"id_str":"663727955282034688","text":"RT @K_stingraykai: \uc544 \ud574\uc2dc\ud0dc\uadf8\ud558\ub098\ub97c \uae4c\uba39\uc5c8\uc5b4\uc624 \uc2e4\ud328 \ub434\ub975\ub434\ub975 @MnetMAMA \uac00\uc624\ub9ac\uce74\uc774\uc5d0\uc624 \uba54\uc778\ud2b8\uc717\uc54c\ud2f0\ud574\uc918\uc624 \ud574\uc2dc\ud0dc\uadf8\ub3c4 \ud22c\ud45c\ub3c4 \ud574\uc918\uc624 #EXO \uc791\ub144\ucc98\ub7fc \uac10\ub3d9\uc744 \uc918\uc624 \uc694\ubc88 \ub9c8\ub9c8\ubb34\ub300 \uac81\ub098\uac8c \uae30\ub300\ud558\uace0 \uc788\uc5b4\uc624 #CALLMEBABY \uac13\ub3c4\ub77c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181411892,"id_str":"3181411892","name":"\ubc18\uafb8\ub77d","screen_name":"gonyyang2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":126,"listed_count":1,"favourites_count":1133,"statuses_count":8470,"created_at":"Fri May 01 06:39:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599948637313961984\/B4eAfmIk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599948637313961984\/B4eAfmIk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181411892\/1431873875","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:52 +0000 2015","id":663727460601610242,"id_str":"663727460601610242","text":"\uc544 \ud574\uc2dc\ud0dc\uadf8\ud558\ub098\ub97c \uae4c\uba39\uc5c8\uc5b4\uc624 \uc2e4\ud328 \ub434\ub975\ub434\ub975 @MnetMAMA \uac00\uc624\ub9ac\uce74\uc774\uc5d0\uc624 \uba54\uc778\ud2b8\uc717\uc54c\ud2f0\ud574\uc918\uc624 \ud574\uc2dc\ud0dc\uadf8\ub3c4 \ud22c\ud45c\ub3c4 \ud574\uc918\uc624 #EXO \uc791\ub144\ucc98\ub7fc \uac10\ub3d9\uc744 \uc918\uc624 \uc694\ubc88 \ub9c8\ub9c8\ubb34\ub300 \uac81\ub098\uac8c \uae30\ub300\ud558\uace0 \uc788\uc5b4\uc624 #CALLMEBABY \uac13\ub3c4\ub77c\ub3c4\ud574\uc918\uc624 \uc138\uc0c1\ub9c8\uc0c1 #2015MAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4046731272,"id_str":"4046731272","name":"\uac00\uc624\ub9ac\uce74\uc774 (\uc778\ud615\uac12) \uc785\uae08 \uc911","screen_name":"K_stingraykai","location":null,"url":null,"description":"\uac00\uc624\ub9ac\ub9c8\ubc95\uc5d0 \uac78\ub9b0 \uc885\uc778\uc774\uc778\ud615 \uc218\ub7c9\uc870\uc0ac \uc911 (\uace7 \uc785\uae08)\nRT\ub97c \uac08\ub9dd...\n\ud574\uc678\ucd1d\ub300\ub2d8\uacc4\uc815 @stingraykai\n \ubb38\uc758\ub294 \uba58\uc158 \ub610\ub294 ggulack@naver.com","protected":false,"verified":false,"followers_count":289,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":175,"created_at":"Wed Oct 28 13:15:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659358427907362816\/A38r4eF0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659358427907362816\/A38r4eF0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4046731272\/1446269060","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[67,71]},{"text":"CALLMEBABY","indices":[105,116]},{"text":"2015MAMA","indices":[130,139]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[25,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[86,90]},{"text":"CALLMEBABY","indices":[124,135]},{"text":"2015MAMA","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"K_stingraykai","name":"\uac00\uc624\ub9ac\uce74\uc774 (\uc778\ud615\uac12) \uc785\uae08 \uc911","id":4046731272,"id_str":"4046731272","indices":[3,17]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[44,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080050665"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955281997824,"id_str":"663727955281997824","text":"The guy beside me in the clinic is snap chatting... Should I try to get in his selfie?","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392310008,"id_str":"392310008","name":"summer","screen_name":"summersieczko","location":null,"url":null,"description":"UofG","protected":false,"verified":false,"followers_count":341,"friends_count":357,"listed_count":0,"favourites_count":1212,"statuses_count":4205,"created_at":"Sun Oct 16 20:55:34 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0ABDE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679965993\/d716b1c0559cfb54277f04f457d125f5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679965993\/d716b1c0559cfb54277f04f457d125f5.jpeg","profile_background_tile":true,"profile_link_color":"050505","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603563792493113344\/9Vbrghxv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603563792493113344\/9Vbrghxv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392310008\/1432735796","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050665"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286188032,"id_str":"663727955286188032","text":"@xxwx_xx \n\u4ffa\u3060\u3063\u3066\u8ca0\u3051\u306a\u3044\u3055\u3002knights\u306e\u8a87\u308a\u9ad8\u304d\u9280\u306e\u5263\u3067\u304a\u524d\u9054\u306e\u7ffc\u3060\u3063\u3066\u3082\u304e\u53d6\u3063\u3066\u3084\u308b\uff01\u307e\u3042\u3001\u300e\u7687\u5e1d\u300f\u7387\u3044\u308bfine\u3092\u305d\u3046\u7c21\u5358\u306b\u843d\u3068\u305b\u308b\u3068\u306f\u601d\u3063\u3066\u306a\u3044\u3051\u3069\u306d(\u80a9\u3092\u3059\u304f\u307e\u305b\u306a\u304c\u3089\u3082\u5fae\u7b11\u3092\u6d6e\u304b\u3079)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717231155503106,"in_reply_to_status_id_str":"663717231155503106","in_reply_to_user_id":3957969792,"in_reply_to_user_id_str":"3957969792","in_reply_to_screen_name":"xxwx_xx","user":{"id":3890696653,"id_str":"3890696653","name":"\u6708\u6c38\u30ec\u30aa","screen_name":"Reo_kotk","location":"\u970a\u611f(\u30a4\u30f3\u30b9\u30d4\u30ec\u30fc\u30b7\u30e7\u30f3)\u306e\u6e67\u304f\u3068\u3053\u308d","url":null,"description":"\u3010\u3042\u3093\u30b9\u30bf\u975e\u516c\u5f0f\u306a\u308a\u3011\u3046\u3063\u3061\u3085\u301c\u2606knights\u306e\u738b\u69d8\u3001\u6708\u6c38\u30ec\u30aa\u3060\uff01\u5b8c\u5168\u624b\u52d5\u3060\u304b\u308924h\u4e0d\u53ef\uff01\u4ed6\u4f5c\u3001\u540c\u4f5c\u3001\u4e00\u822c\u3007\uff01\u4e00\u822c\u306f\u8ee2\u6821\u751f\u6271\u3044\u306a\u30fc\uff01\u7089\u7559\u3001\u7d75\u6587\u5b57\u3001\u8a18\u53f7\u6709\uff01\u5b8c\u5168\u3092\u6c42\u3081\u308b\u3084\u3064\u306f\u56de\u308c\u53f3\uff01\u30d5\u30a9\u30ed\u30fc\u306f\u52dd\u624b\u306b\u3057\u3066\u3063\u3066\uff01\u76f8\u4e92\u5e0c\u671b\u306f\u6328\u62f6\u5fc5\u9808\u3060\u304b\u3089\uff01\uff01\u300a\u4e88\u6e2c\u4e0d\u53ef\u80fd\u306a\u738b\u69d8\u300b","protected":false,"verified":false,"followers_count":65,"friends_count":63,"listed_count":2,"favourites_count":273,"statuses_count":2022,"created_at":"Wed Oct 14 10:23:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663445748680228864\/n3a1PMrD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663445748680228864\/n3a1PMrD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3890696653\/1444818601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xxwx_xx","name":"\u5929\u7965\u9662 \u82f1\u667a","id":3957969792,"id_str":"3957969792","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955281993728,"id_str":"663727955281993728","text":"\u306d\u3002\u3068\u3045\u304e\u3061\u3083\u3093\u306e\u6c17\u306e\u6e08\u3080\u307e\u3067\u3001\u3068\u3045\u304e\u3061\u3083\u3093\u304c\u6e80\u305f\u3055\u308c\u308b\u307e\u3067\u3001\u3068\u3045\u304e\u3061\u3083\u3093\u304c\u671b\u3080\u307e\u3067\u305a\u3063\u3068\u305a\u3063\u3068\u30e1\u30f3\u30d0\u30fc\u306b\u3082\u30a8\u30eb\u30d7\u306b\u3082\u3082\u5074\u306b\u3044\u3066\u6b32\u3057\u3044\u3057\u79c1\u306f\u5c45\u308b\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":475576103,"id_str":"475576103","name":"\u3042\u304a\u3080\u3057","screen_name":"Aomusi1004","location":null,"url":null,"description":"\u30a4\u30c8\u30a5\u30af\u305f\u3060\u4e00\u4eba\u3092\u611b\u3057\u3066\u3044\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u5f7c\u304c\u597d\u304d\u3002\u307b\u3093\u3068\u3046\u306e\u5929\u4f7f\u3060\u3068\u4fe1\u3058\u3066\u3044\u308b\u306e\u3067\u3088\u308d\u3057\u304f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":114,"friends_count":139,"listed_count":4,"favourites_count":387,"statuses_count":9046,"created_at":"Fri Jan 27 06:28:12 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3635259503\/e533a715baf699b3df5c6147fbf1642b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3635259503\/e533a715baf699b3df5c6147fbf1642b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475576103\/1425895210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050665"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269431296,"id_str":"663727955269431296","text":"\u30b8\u30e3\u30f3\u30d7\u7cfb\u6f2b\u753b\u306f\u30ef\u30f3\u30d1\u30f3\u30de\u30f3\u3042\u305f\u308a\u304c\u3069\u30b9\u30c8\u30ec\u30fc\u30c8\u3060\u3051\u3069\u3001LINE\u6f2b\u753b\u898b\u3066\u305f\u3089\u5225\u65b9\u9762\u306e\u597d\u307f\u306e\u6f2b\u753b\u307f\u3064\u3051\u3061\u3083\u3063\u305f\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2870401800,"id_str":"2870401800","name":"\u305d\u3046\u308b@\u3053\u3093\u304d\u3064\u306d:D","screen_name":"russell_seed","location":"\u611b\u77e5","url":null,"description":"deemo\u3001\u30b9\u30af\u30d5\u30a7\u30b9 \u30c7\u30ec\u30b9\u30c6 cytus maimai \u30c1\u30e5\u30a6\u30cb\u30ba\u30e0 \u767d\u732b\/\u767d\u732b\u97d3\u56fd\u7248\/ \u30d1\u30ba\u30c9\u30e9","protected":false,"verified":false,"followers_count":1057,"friends_count":1054,"listed_count":23,"favourites_count":12932,"statuses_count":8726,"created_at":"Wed Oct 22 07:56:46 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572191676975882240\/TAaxRAgY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572191676975882240\/TAaxRAgY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2870401800\/1438908395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955282034689,"id_str":"663727955282034689","text":"RT @miyake_sirasu: \u7f8e\u3057\u3044\u306a\u30fc\u306e\u304f\u3093\u6295\u4e0b\n\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47 https:\/\/t.co\/qQNRa4BHf2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3256668624,"id_str":"3256668624","name":"\u3086\u3063\u305f\u3093@V\u30af\u30e9\u4f4e\u6d6e\u4e0a","screen_name":"yuttan12152","location":"\u718a\u672c \u7389\u540d\u5973\u5b50","url":null,"description":"\u9ad81\u3067\u3059\u3002\u5065\u541b\u5bc4\u308a\u3059\u304e\u306aAll\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059\u3002\u30ea\u30d7\u8e74\u308a\u3057\u3066\u3082\u3044\u3064\u304b\u306f\u8fd4\u4fe1\u3057\u307e\u3059\u304b\u3089\uff01\u30d5\u30a9\u30ed\u30fc\u5916\u304b\u3089\u306e\u30d5\u30a1\u30dc\u3001RT\u304a\u8a31\u3057\u304f\u3060\u3055\u3044\u3002FC\u4f1a\u54e1\u3002\u307e\u3060\u65b0\u898f\u3067\u3059\u304c\u3001\u3088\u308d\u3057\u304f\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":111,"friends_count":152,"listed_count":7,"favourites_count":2075,"statuses_count":1842,"created_at":"Fri Jun 26 14:09:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657490377889320960\/N4OUpJig_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657490377889320960\/N4OUpJig_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3256668624\/1443920988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:42 +0000 2015","id":663722384600399872,"id_str":"663722384600399872","text":"\u7f8e\u3057\u3044\u306a\u30fc\u306e\u304f\u3093\u6295\u4e0b\n\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47\ud83c\udf47 https:\/\/t.co\/qQNRa4BHf2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3347175013,"id_str":"3347175013","name":"\uff73 \uff84\uff9e \uff9d @V6","screen_name":"miyake_sirasu","location":"\u5742 \u9577 \u4e95 \u68ee \u5ca1 \u4e09 \u2362\u20dd","url":null,"description":"01line \/ \u795e\u5948\u5ddd \/ V6 \/ all\u62c5 \/ FC\u3044\u3064\u304b\u5165\u308b ! \/ \u6fc3\u304f\u7d61\u3081\u308b\u65b9\u52df\u96c6 \u164f\u0324\u032b\uff89 \/ \u30d5\u30a9\u30ed\u30d099% ! !","protected":false,"verified":false,"followers_count":180,"friends_count":208,"listed_count":2,"favourites_count":171,"statuses_count":387,"created_at":"Wed Aug 26 09:52:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661378214762156034\/ZERA2sah_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661378214762156034\/ZERA2sah_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3347175013\/1443229298","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722374131376128,"id_str":"663722374131376128","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","url":"https:\/\/t.co\/qQNRa4BHf2","display_url":"pic.twitter.com\/qQNRa4BHf2","expanded_url":"http:\/\/twitter.com\/miyake_sirasu\/status\/663722384600399872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":676,"h":500,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722374131376128,"id_str":"663722374131376128","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","url":"https:\/\/t.co\/qQNRa4BHf2","display_url":"pic.twitter.com\/qQNRa4BHf2","expanded_url":"http:\/\/twitter.com\/miyake_sirasu\/status\/663722384600399872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":676,"h":500,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miyake_sirasu","name":"\uff73 \uff84\uff9e \uff9d @V6","id":3347175013,"id_str":"3347175013","indices":[3,17]}],"symbols":[],"media":[{"id":663722374131376128,"id_str":"663722374131376128","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","url":"https:\/\/t.co\/qQNRa4BHf2","display_url":"pic.twitter.com\/qQNRa4BHf2","expanded_url":"http:\/\/twitter.com\/miyake_sirasu\/status\/663722384600399872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":676,"h":500,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}},"source_status_id":663722384600399872,"source_status_id_str":"663722384600399872","source_user_id":3347175013,"source_user_id_str":"3347175013"}]},"extended_entities":{"media":[{"id":663722374131376128,"id_str":"663722374131376128","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD-5OUYAAg62U.jpg","url":"https:\/\/t.co\/qQNRa4BHf2","display_url":"pic.twitter.com\/qQNRa4BHf2","expanded_url":"http:\/\/twitter.com\/miyake_sirasu\/status\/663722384600399872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":676,"h":500,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"},"medium":{"w":600,"h":443,"resize":"fit"}},"source_status_id":663722384600399872,"source_status_id_str":"663722384600399872","source_user_id":3347175013,"source_user_id_str":"3347175013"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050665"} +{"delete":{"status":{"id":663605590648709120,"id_str":"663605590648709120","user_id":2877237421,"user_id_str":"2877237421"},"timestamp_ms":"1447080050754"}} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955282006016,"id_str":"663727955282006016","text":"\u304a\u3084\u3059\u307f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245132557,"id_str":"3245132557","name":"\u9bad\u8336","screen_name":"Sl_mo_n","location":"Eternal Force Blizzard","url":null,"description":"\u30a2\u30a4\u30b3\u30f3\u81ea\u4f5c\uff01\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u5206\uff01\u7d61\u3093\u3067\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\uff01\u3010@Sa_myon\u3011","protected":false,"verified":false,"followers_count":194,"friends_count":133,"listed_count":12,"favourites_count":1291,"statuses_count":3142,"created_at":"Sun Jun 14 11:41:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661912532777500674\/wL7ITV-I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661912532777500674\/wL7ITV-I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245132557\/1446906237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050665"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256999936,"id_str":"663727955256999936","text":"Feel shocked and let down to discover that @NickyMorgan01 thinks that pupils are held back if they choose to study the arts.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55871154,"id_str":"55871154","name":"Wickedly Lovely","screen_name":"Wickedlovelyart","location":"England","url":"http:\/\/etsy.me\/1EjGToc","description":"Artist, writer, mother, a melancholic sentimentalist and hopeless romantic, lover of art, poetry and Finnish rock group HIM .","protected":false,"verified":false,"followers_count":1074,"friends_count":1057,"listed_count":25,"favourites_count":2167,"statuses_count":5841,"created_at":"Sat Jul 11 16:47:06 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F1A1A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/309263138\/950C8B64-CBDC-A984-F899-E66039C4A119wallpaper.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/309263138\/950C8B64-CBDC-A984-F899-E66039C4A119wallpaper.jpg","profile_background_tile":true,"profile_link_color":"1876A1","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"050505","profile_text_color":"28B3B8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586677961841106944\/Z3dSmhwk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586677961841106944\/Z3dSmhwk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55871154\/1428709853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NickyMorgan01","name":"Nicky Morgan ","id":34940114,"id_str":"34940114","indices":[43,57]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286188033,"id_str":"663727955286188033","text":"@HYT_Paul \n\u3042\u308a\u304c\u3068\ud83d\ude02\ud83d\udc95\n\u307d\u304a\u308b\u304f\u3093\u3082\u304a\u3064\u304b\u308c\u3055\u307e(^_^)\u30ce\uff96\uff7c\uff96\uff7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724407597088769,"in_reply_to_status_id_str":"663724407597088769","in_reply_to_user_id":540115371,"in_reply_to_user_id_str":"540115371","in_reply_to_screen_name":"HYT_Paul","user":{"id":2501737512,"id_str":"2501737512","name":"Yu-na\u300a@\u8cb4\u5927\u304f\u3093\u300b","screen_name":"JLovelen","location":"party7 8\/9\u2661","url":null,"description":"\u8cb4\u5927\u304f\u3093\/\u3057\u3085\u3046\u305b\u3044\u304f\u3093\/\u5927\u8056\u304f\u3093\/\u3072\u308d\u304f\u3093\/\u307d\u304a\u308b\u304f\u3093\/\u5fd7\u6069\u304f\u3093\/\u305f\u3051\u3042\u304d\u304f\u3093\/\u308c\u304a\u304f\u3093\/\u305f\u304f\u307e\u304f\u3093\/\u3064\u30fc\u305f\u308d\u304f\u3093\/\u3048\u308b\u3058\u3085\/HAYA\u304f\u3093\/\u307e\u3064\u305f\u304f\/\u3053\u30fc\u304f\u3093fam\/1MAfamily\/Team Genesis\/Onigily\/HYT\/Trouble some Fellow\u2026","protected":false,"verified":false,"followers_count":849,"friends_count":816,"listed_count":10,"favourites_count":96896,"statuses_count":14739,"created_at":"Sat May 17 14:52:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656030270664011776\/nUIEW00n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656030270664011776\/nUIEW00n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2501737512\/1440072870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HYT_Paul","name":"HYT\u307d\u304a\u308b(8\/8\u2606\u65b0\u66f2\u30ea\u30ea\u30fc\u30b9)","id":540115371,"id_str":"540115371","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261001728,"id_str":"663727955261001728","text":"@denicelansangan sobrang lala nya. white text pa on black bg HAHAHAHAAHAHA leche binay ano ba \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727759340908544,"in_reply_to_status_id_str":"663727759340908544","in_reply_to_user_id":299450352,"in_reply_to_user_id_str":"299450352","in_reply_to_screen_name":"denicelansangan","user":{"id":343916641,"id_str":"343916641","name":"Jessica Torres","screen_name":"imjesstorres","location":"Manila, Philippines","url":null,"description":"And miles to go before I sleep.","protected":false,"verified":false,"followers_count":300,"friends_count":262,"listed_count":0,"favourites_count":4946,"statuses_count":11891,"created_at":"Thu Jul 28 08:33:47 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471454917\/1570.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471454917\/1570.gif","profile_background_tile":false,"profile_link_color":"008080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607928663720337408\/DPwImti6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607928663720337408\/DPwImti6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343916641\/1433781386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"denicelansangan","name":"Denice Lansangan \u2728","id":299450352,"id_str":"299450352","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080050660"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269447680,"id_str":"663727955269447680","text":"\u3053\u308c\u304b RT @roi3331 \u306c\u3053 https:\/\/t.co\/eiMSZyYIcC","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39759534,"id_str":"39759534","name":"\u307b\u308a\u305f\u3093","screen_name":"horilab","location":"\u6771\u4eac","url":"http:\/\/horitan.cocolog-nifty.com\/","description":"\u5800\u7530\u9f8d\u4e5f\uff20\u6771\u5317\u5927\u5b66\u5927\u5b66\u9662\u60c5\u5831\u79d1\u5b66\u7814\u7a76\u79d1\u30fb\u6559\u6388\u3002\u5c02\u9580\u306f\u6559\u80b2\u5de5\u5b66\uff0cICT\u6d3b\u7528\u6388\u696d\uff0c\u60c5\u5831\u6559\u80b2\u306b\u95a2\u3059\u308b\u6559\u80b2\u5b9f\u8df5\u7814\u7a76\uff08\u7279\u306b\u5c0f\u5b66\u6821\uff09\u3002","protected":false,"verified":false,"followers_count":1637,"friends_count":106,"listed_count":97,"favourites_count":0,"statuses_count":27347,"created_at":"Wed May 13 14:23:41 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1731610863\/horitan_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1731610863\/horitan_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"roi3331","name":"\u306f\u307e\u3050\u308aroi\u3057\u3044bot","id":94696593,"id_str":"94696593","indices":[7,15]}],"symbols":[],"media":[{"id":663669018176303104,"id_str":"663669018176303104","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTdKzUsAAtdES.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTdKzUsAAtdES.jpg","url":"https:\/\/t.co\/eiMSZyYIcC","display_url":"pic.twitter.com\/eiMSZyYIcC","expanded_url":"http:\/\/twitter.com\/roi3331\/status\/663669066788290560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663669066788290560,"source_status_id_str":"663669066788290560","source_user_id":94696593,"source_user_id_str":"94696593"}]},"extended_entities":{"media":[{"id":663669018176303104,"id_str":"663669018176303104","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTdKzUsAAtdES.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTdKzUsAAtdES.jpg","url":"https:\/\/t.co\/eiMSZyYIcC","display_url":"pic.twitter.com\/eiMSZyYIcC","expanded_url":"http:\/\/twitter.com\/roi3331\/status\/663669066788290560\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663669066788290560,"source_status_id_str":"663669066788290560","source_user_id":94696593,"source_user_id_str":"94696593"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286233088,"id_str":"663727955286233088","text":"Di Filipina dah ada\nKapan Indonesia?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119076896,"id_str":"3119076896","name":"claudia","screen_name":"chanmebaby","location":"seoul","url":null,"description":"\u2728Park Chanyeol-23th,Korean,Idol\u2728 study hard fangirling (over yeol) harder","protected":false,"verified":false,"followers_count":10,"friends_count":59,"listed_count":0,"favourites_count":846,"statuses_count":378,"created_at":"Tue Mar 31 04:01:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661470279219089408\/bScascjq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661470279219089408\/bScascjq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3119076896\/1436624691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080050666"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955273719808,"id_str":"663727955273719808","text":"@fastwayireland do you vet your drivers at all? i just had the local scumbag deliver my parcel. for this reason i wont be using fastway","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1585672399,"in_reply_to_user_id_str":"1585672399","in_reply_to_screen_name":"fastwayireland","user":{"id":20158117,"id_str":"20158117","name":"Aine","screen_name":"ansmolach","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":148,"listed_count":0,"favourites_count":29,"statuses_count":550,"created_at":"Thu Feb 05 15:48:42 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fastwayireland","name":"Fastway Couriers IRE","id":1585672399,"id_str":"1585672399","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050663"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256954881,"id_str":"663727955256954881","text":"RT @BernieSanders: We should be investing in small businesses and worker-owned enterprises that want to create jobs in the United States of\u2026","source":"\u003ca href=\"http:\/\/klinkerapps.com\" rel=\"nofollow\"\u003eTalon Plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74498666,"id_str":"74498666","name":"Bernie Sanders 2016","screen_name":"SubyWill","location":"Orlando, FL","url":null,"description":"Sports (Magic, Bucs, Rays, Orlando City, Lightning), Science, Cars, Technology, Music, Politics, Religion, Food, Beer.","protected":false,"verified":false,"followers_count":808,"friends_count":199,"listed_count":73,"favourites_count":0,"statuses_count":136390,"created_at":"Tue Sep 15 17:14:23 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/404700662\/qqBlT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/404700662\/qqBlT.jpg","profile_background_tile":false,"profile_link_color":"888891","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"193BC4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614108690552082432\/361WjJfM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614108690552082432\/361WjJfM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74498666\/1348634401","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:01 +0000 2015","id":663725737711550464,"id_str":"663725737711550464","text":"We should be investing in small businesses and worker-owned enterprises that want to create jobs in the United States of America.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216776631,"id_str":"216776631","name":"Bernie Sanders","screen_name":"BernieSanders","location":"Vermont","url":"https:\/\/berniesanders.com","description":"I believe America is ready for a new path to the future. Join our campaign for president at http:\/\/berniesanders.com.","protected":false,"verified":true,"followers_count":819840,"friends_count":1352,"listed_count":4109,"favourites_count":462,"statuses_count":4252,"created_at":"Wed Nov 17 17:53:52 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EA5047","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576114811475341312\/Q2-L3Yol.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576114811475341312\/Q2-L3Yol.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"050005","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649063561273040896\/oCnTcltj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649063561273040896\/oCnTcltj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216776631\/1442495548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":94,"favorite_count":211,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BernieSanders","name":"Bernie Sanders","id":216776631,"id_str":"216776631","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256807424,"id_str":"663727955256807424","text":"\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\ud544\uc694\uc5c6\ub300\uc694 \ud574\uc2dc\ud0dc\uadf8\u3160\u315c\u315c\u315c\u315c~~~~~\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243951422,"id_str":"3243951422","name":"~ 12\/9 \uc885\uac1c","screen_name":"JJONGGAE","location":"\ud5e4\uc5b4\uc9c8 \ub550 \ube14\ub77d","url":null,"description":"SHINee World | FUB Free | As Always, I Need You \uc2dc\ud5d8\uae30\uac04 ~12\/9 \ud734\ud2b8","protected":false,"verified":false,"followers_count":392,"friends_count":303,"listed_count":2,"favourites_count":1301,"statuses_count":29048,"created_at":"Sat Jun 13 06:21:00 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650643403412078592\/gp5yXyoX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650643403412078592\/gp5yXyoX.jpg","profile_background_tile":true,"profile_link_color":"79E5CB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663623005428301824\/ho-CjRJd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663623005428301824\/ho-CjRJd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243951422\/1445177488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955269566465,"id_str":"663727955269566465","text":"RT @1Nssu: \u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745712634,"id_str":"2745712634","name":"jellybelly","screen_name":"Jellybellytropi","location":"\u041a\u043e\u0440\u043e\u043b\u0435\u0432, \u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c","url":null,"description":null,"protected":false,"verified":false,"followers_count":853,"friends_count":547,"listed_count":20,"favourites_count":871,"statuses_count":46469,"created_at":"Tue Aug 19 17:11:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644970418168840192\/yUrtRfdp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644970418168840192\/yUrtRfdp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745712634\/1422885312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:28:53 +0000 2015","id":663271961917652993,"id_str":"663271961917652993","text":"\u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193571228,"id_str":"3193571228","name":"\u4e2d\u5cf6\u512a\u592a\u6717","screen_name":"1Nssu","location":"\u9759\u5ca1 \u6d5c\u677e \u261e \u795e\u5948\u5ddd \u6a2a\u6d5c","url":null,"description":"\u65e5\u672c\u4f53\u80b2\u5927\u5b66 \u9678\u4e0a \u77ed\u8ddd\u96e2","protected":false,"verified":false,"followers_count":283,"friends_count":209,"listed_count":0,"favourites_count":241,"statuses_count":211,"created_at":"Tue May 12 18:57:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193571228\/1447078229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17646,"favorite_count":20062,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1Nssu","name":"\u4e2d\u5cf6\u512a\u592a\u6717","id":3193571228,"id_str":"3193571228","indices":[3,9]}],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228"}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228","video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050662"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256840192,"id_str":"663727955256840192","text":"@04nnnr \u76ee\u5143\u304c\u65b0\u958b\u26ab\ufe0e\u4eba\u304f\u3093\u306b\u305d\u3063\u304f\u308a\u3060\u3068\u601d\u3063\u3066\u30c8\u30ec\u30b9\u3057\u305f\u306e\u306b\u3069\u3046\u306b\u3082\u65b0\u958b\u3055\u3093\u304c\u30a4\u30b1\u30e1\u30f3\u3059\u304e\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727215402586112,"in_reply_to_status_id_str":"663727215402586112","in_reply_to_user_id":3701067378,"in_reply_to_user_id_str":"3701067378","in_reply_to_screen_name":"04nnnr","user":{"id":3192183726,"id_str":"3192183726","name":"\u3086\u5409\u2727\u5341\u5fcd\u5341\u8272K14","screen_name":"102oic_","location":"\u30b5\u30a4\u30d5","url":"http:\/\/twpf.jp\/102oic_","description":"\u3086\u304d\u3061\u3067\u3059\u3002\u56db\u5e74\u751f\u7bb1\u63a8\u3057\u3067\u3059 P\u2606AP","protected":false,"verified":false,"followers_count":178,"friends_count":123,"listed_count":12,"favourites_count":5131,"statuses_count":9126,"created_at":"Mon May 11 14:43:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650154579540099073\/JXOHKQB1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650154579540099073\/JXOHKQB1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3192183726\/1433156713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"04nnnr","name":"\u8d64\u77f3","id":3701067378,"id_str":"3701067378","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955252670464,"id_str":"663727955252670464","text":"\ud83d\udd25 https:\/\/t.co\/FjBenidrb3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":447684826,"id_str":"447684826","name":"2% Wilk","screen_name":"BryceWilkey","location":null,"url":null,"description":"sc:wilkeybryce11","protected":false,"verified":false,"followers_count":503,"friends_count":591,"listed_count":2,"favourites_count":2242,"statuses_count":5314,"created_at":"Tue Dec 27 04:56:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662030895742779392\/CnzGlqMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662030895742779392\/CnzGlqMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447684826\/1446610149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e0060cda70f5f341","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e0060cda70f5f341.json","place_type":"admin","name":"Texas","full_name":"Texas, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-106.645646,25.837092],[-106.645646,36.500695],[-93.508131,36.500695],[-93.508131,25.837092]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727946796953601,"id_str":"663727946796953601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDRBU8AEKHIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDRBU8AEKHIL.jpg","url":"https:\/\/t.co\/FjBenidrb3","display_url":"pic.twitter.com\/FjBenidrb3","expanded_url":"http:\/\/twitter.com\/BryceWilkey\/status\/663727955252670464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727946796953601,"id_str":"663727946796953601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDRBU8AEKHIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDRBU8AEKHIL.jpg","url":"https:\/\/t.co\/FjBenidrb3","display_url":"pic.twitter.com\/FjBenidrb3","expanded_url":"http:\/\/twitter.com\/BryceWilkey\/status\/663727955252670464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080050658"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955282030592,"id_str":"663727955282030592","text":"#DilwaleTrailerDay \ud83d\ude0d\ud83d\ude0d\ud83d\ude18\ud83d\ude18\ud83d\ude18\u2764 https:\/\/t.co\/v24rl1Q2W4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613427853,"id_str":"613427853","name":"Dilwale \u2764","screen_name":"YuniiSRK","location":"Indonesia","url":null,"description":"Big Fan of \u2764Shah Rukh Khan","protected":false,"verified":false,"followers_count":1113,"friends_count":76,"listed_count":6,"favourites_count":420,"statuses_count":18001,"created_at":"Wed Jun 20 11:04:37 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"E30404","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521167636361531392\/wfE80sb1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521167636361531392\/wfE80sb1.jpeg","profile_background_tile":true,"profile_link_color":"E30404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707299416944640\/nhKJ7c8X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707299416944640\/nhKJ7c8X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613427853\/1446967316","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727758644654080,"id_str":"663727758644654080","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4UGUsAAM0zw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4UGUsAAM0zw.jpg","url":"https:\/\/t.co\/v24rl1Q2W4","display_url":"pic.twitter.com\/v24rl1Q2W4","expanded_url":"http:\/\/twitter.com\/YuniiSRK\/status\/663727955282030592\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":420,"resize":"fit"},"large":{"w":480,"h":594,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727758644654080,"id_str":"663727758644654080","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4UGUsAAM0zw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4UGUsAAM0zw.jpg","url":"https:\/\/t.co\/v24rl1Q2W4","display_url":"pic.twitter.com\/v24rl1Q2W4","expanded_url":"http:\/\/twitter.com\/YuniiSRK\/status\/663727955282030592\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":420,"resize":"fit"},"large":{"w":480,"h":594,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080050665"} +{"delete":{"status":{"id":659665033639538688,"id_str":"659665033639538688","user_id":191451172,"user_id_str":"191451172"},"timestamp_ms":"1447080050899"}} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955286315008,"id_str":"663727955286315008","text":"I nominate @LaurenJauregui for @tccandler \"100 Most Beautiful Faces 2015\" #100FACES https:\/\/t.co\/Q0fTct0eh9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1322887202,"id_str":"1322887202","name":"louise","screen_name":"lylauregui","location":"Rio de Janeiro","url":null,"description":"aunty lolo","protected":false,"verified":false,"followers_count":1172,"friends_count":221,"listed_count":2,"favourites_count":3208,"statuses_count":55914,"created_at":"Tue Apr 02 17:06:11 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/831969432\/7bcf63632f1d2c758783e421bf0bbe4d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/831969432\/7bcf63632f1d2c758783e421bf0bbe4d.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663432802562523136\/_kMOEvM1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663432802562523136\/_kMOEvM1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1322887202\/1446329217","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"100FACES","indices":[74,83]}],"urls":[],"user_mentions":[{"screen_name":"LaurenJauregui","name":"Lauren Jauregui","id":363972381,"id_str":"363972381","indices":[11,26]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[31,41]}],"symbols":[],"media":[{"id":663727934864121856,"id_str":"663727934864121856","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCkkUYAAGQCh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCkkUYAAGQCh.jpg","url":"https:\/\/t.co\/Q0fTct0eh9","display_url":"pic.twitter.com\/Q0fTct0eh9","expanded_url":"http:\/\/twitter.com\/lylauregui\/status\/663727955286315008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"medium":{"w":600,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727934864121856,"id_str":"663727934864121856","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCkkUYAAGQCh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCkkUYAAGQCh.jpg","url":"https:\/\/t.co\/Q0fTct0eh9","display_url":"pic.twitter.com\/Q0fTct0eh9","expanded_url":"http:\/\/twitter.com\/lylauregui\/status\/663727955286315008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"medium":{"w":600,"h":819,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050666"} +{"delete":{"status":{"id":518198227120955392,"id_str":"518198227120955392","user_id":883017823,"user_id_str":"883017823"},"timestamp_ms":"1447080051005"}} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955282104320,"id_str":"663727955282104320","text":".@graywolf769 I'm not sure what this means... https:\/\/t.co\/fr1Of1OoQE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726960535805953,"in_reply_to_status_id_str":"663726960535805953","in_reply_to_user_id":14105771,"in_reply_to_user_id_str":"14105771","in_reply_to_screen_name":"graywolf769","user":{"id":3132494513,"id_str":"3132494513","name":"Rowel","screen_name":"RowelandFox","location":"Illinois, USA","url":"http:\/\/furaffinity.net\/user\/roweland","description":"Furry (if it wasn't obvious) Long time blogger\/tweeter, legume enthusiast, part time Chicagoan. | Holding out for MWFF2015 Icon by @Atimist. Cover by @mithmeoi","protected":false,"verified":false,"followers_count":161,"friends_count":214,"listed_count":3,"favourites_count":450,"statuses_count":969,"created_at":"Sat Apr 04 05:35:13 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640026058545233920\/hnDKRITC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640026058545233920\/hnDKRITC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3132494513\/1438380124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"graywolf769","name":"Gray Wolf","id":14105771,"id_str":"14105771","indices":[1,13]}],"symbols":[],"media":[{"id":663727949246427137,"id_str":"663727949246427137","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDaJU8AEnJ-Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDaJU8AEnJ-Q.jpg","url":"https:\/\/t.co\/fr1Of1OoQE","display_url":"pic.twitter.com\/fr1Of1OoQE","expanded_url":"http:\/\/twitter.com\/RowelandFox\/status\/663727955282104320\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":614,"resize":"fit"},"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1048,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727949246427137,"id_str":"663727949246427137","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDaJU8AEnJ-Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDaJU8AEnJ-Q.jpg","url":"https:\/\/t.co\/fr1Of1OoQE","display_url":"pic.twitter.com\/fr1Of1OoQE","expanded_url":"http:\/\/twitter.com\/RowelandFox\/status\/663727955282104320\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":614,"resize":"fit"},"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1048,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080050665"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955256848384,"id_str":"663727955256848384","text":"eto talaga gusto kong maachieve hahaha #FamilyReunion https:\/\/t.co\/p5NHhTszSr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182796490,"id_str":"182796490","name":"kristian lising","screen_name":"kristianlising","location":null,"url":null,"description":"a convergence of humor and tragedy. certified jologs","protected":false,"verified":false,"followers_count":2762,"friends_count":449,"listed_count":15,"favourites_count":15948,"statuses_count":34786,"created_at":"Wed Aug 25 12:22:28 +0000 2010","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"1CDBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663571477409562624\/G6qLDLoF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663571477409562624\/G6qLDLoF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182796490\/1446061771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FamilyReunion","indices":[39,53]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727942208352257,"id_str":"663727942208352257","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC_7UcAEHtmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC_7UcAEHtmO.jpg","url":"https:\/\/t.co\/p5NHhTszSr","display_url":"pic.twitter.com\/p5NHhTszSr","expanded_url":"http:\/\/twitter.com\/kristianlising\/status\/663727955256848384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":701,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"large":{"w":639,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727942208352257,"id_str":"663727942208352257","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJC_7UcAEHtmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJC_7UcAEHtmO.jpg","url":"https:\/\/t.co\/p5NHhTszSr","display_url":"pic.twitter.com\/p5NHhTszSr","expanded_url":"http:\/\/twitter.com\/kristianlising\/status\/663727955256848384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":701,"resize":"fit"},"small":{"w":340,"h":397,"resize":"fit"},"large":{"w":639,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080050659"} +{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727955261186048,"id_str":"663727955261186048","text":"#VirtualTour La visite virtuelle de la 22\u00e8me \u00e9dition d'@ArtissimaFair est en ligne ! \n\u25ba https:\/\/t.co\/EuSi04PY4H https:\/\/t.co\/UhExQgJAm1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88211649,"id_str":"88211649","name":"Sisso","screen_name":"AgenceSisso","location":"World, Paris","url":"http:\/\/www.sisso.fr","description":"L'Agence Digitale cr\u00e9ative","protected":false,"verified":false,"followers_count":242,"friends_count":600,"listed_count":9,"favourites_count":81,"statuses_count":478,"created_at":"Sat Nov 07 15:56:55 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502253631\/sisso_vert_2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502253631\/sisso_vert_2.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2048584743\/LOGO-SISSO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2048584743\/LOGO-SISSO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88211649\/1348057057","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VirtualTour","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/EuSi04PY4H","expanded_url":"http:\/\/bit.ly\/1OzhP4p","display_url":"bit.ly\/1OzhP4p","indices":[88,111]}],"user_mentions":[{"screen_name":"ArtissimaFair","name":"Artissima","id":369422997,"id_str":"369422997","indices":[55,69]}],"symbols":[],"media":[{"id":663727951981223936,"id_str":"663727951981223936","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDkVWoAAxGmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDkVWoAAxGmt.jpg","url":"https:\/\/t.co\/UhExQgJAm1","display_url":"pic.twitter.com\/UhExQgJAm1","expanded_url":"http:\/\/twitter.com\/AgenceSisso\/status\/663727955261186048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727951981223936,"id_str":"663727951981223936","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDkVWoAAxGmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDkVWoAAxGmt.jpg","url":"https:\/\/t.co\/UhExQgJAm1","display_url":"pic.twitter.com\/UhExQgJAm1","expanded_url":"http:\/\/twitter.com\/AgenceSisso\/status\/663727955261186048\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080050660"} +{"delete":{"status":{"id":663725216397398017,"id_str":"663725216397398017","user_id":2433935083,"user_id_str":"2433935083"},"timestamp_ms":"1447080051073"}} +{"delete":{"status":{"id":663726210430668800,"id_str":"663726210430668800","user_id":3369721889,"user_id_str":"3369721889"},"timestamp_ms":"1447080051316"}} +{"delete":{"status":{"id":663657922958856192,"id_str":"663657922958856192","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080051555"}} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959459684352,"id_str":"663727959459684352","text":"RT @rwinter6: \u0641\u064a \u0643\u0644 \u0623\u0644\u0641 \u0641\u062a\u0627\u0629\u060c \u0647\u0646\u0627\u0644\u0643 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637 \u0633\u062a\u0643\u0648\u0646 \u0641\u064a \u0646\u0638\u0631\u0643 \u0641\u062a\u0627\u0629 \u0646\u0627\u0628\u0636\u0629\u060c \u0623\u0645\u0627 \u0627\u0644\u0628\u0642\u064a\u0647 \u0641\u0645\u062c\u0631\u062f \u062e\u0631\u062f \u0628\u0644\u0627\u0633\u062a\u064a\u0643\u064a\u0629 \u0648\u0645\u0645\u0644\u0629.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3005097997,"id_str":"3005097997","name":"\u0623\u0645\u0644","screen_name":"AmalSa998","location":null,"url":"http:\/\/ask.fm\/Hope98_","description":"\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u062d\u0645\u0646\u064a \u0625\u0630\u0627 \u0646\u064f\u0633\u064a \u0627\u0633\u0645\u064a \u0648\u0628\u064f\u0644\u064a \u062c\u0633\u0645\u064a \u0648\u0628\u0642\u064a\u062a \u0641\u064a \u0627\u0644\u0642\u0628\u0631 \u0648\u062d\u062f\u064a \u0648\u0644\u0645 \u064a\u0632\u0631\u0646\u064a \u0632\u0627\u0626\u0631 \u0648\u0644\u0645 \u064a\u0630\u0643\u064f\u0631\u0646\u064a \u0630\u0627\u0643\u0631","protected":false,"verified":false,"followers_count":102,"friends_count":80,"listed_count":0,"favourites_count":195,"statuses_count":1977,"created_at":"Sat Jan 31 16:15:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655748334607577088\/E20tnH-H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655748334607577088\/E20tnH-H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3005097997\/1445177336","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 01:08:18 +0000 2015","id":662798697097510912,"id_str":"662798697097510912","text":"\u0641\u064a \u0643\u0644 \u0623\u0644\u0641 \u0641\u062a\u0627\u0629\u060c \u0647\u0646\u0627\u0644\u0643 \u0648\u0627\u062d\u062f\u0629 \u0641\u0642\u0637 \u0633\u062a\u0643\u0648\u0646 \u0641\u064a \u0646\u0638\u0631\u0643 \u0641\u062a\u0627\u0629 \u0646\u0627\u0628\u0636\u0629\u060c \u0623\u0645\u0627 \u0627\u0644\u0628\u0642\u064a\u0647 \u0641\u0645\u062c\u0631\u062f \u062e\u0631\u062f \u0628\u0644\u0627\u0633\u062a\u064a\u0643\u064a\u0629 \u0648\u0645\u0645\u0644\u0629.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":776347538,"id_str":"776347538","name":"\u063a\u064a\u0631 \u0635\u0627\u0644\u062d.","screen_name":"rwinter6","location":"\u062e\u0627\u0631\u062c \u0627\u0644\u0644\u0639\u0628\u0629\u060c \u0646\u0647\u0627\u0626\u064a\u064b\u0627.","url":"http:\/\/ask.fm\/rwinter6","description":"\u0623\u0646\u0627 \u0647\u0646\u0627 \u0644\u0645\u062d\u0627\u0648\u0644\u0629 \u0627\u0644\u0625\u0645\u0633\u0627\u0643 \u0628\u0646\u0641\u0633\u064a \u0645\u0646 \u0628\u064a\u0646 \u0643\u0644 \u0647\u0624\u0644\u0627\u0621 \u0627\u0644\u0633\u0643\u0627\u0631\u0649 \u0627\u0644\u0630\u064a\u0646 \u064a\u0642\u0628\u0639\u0648\u0646 \u0628\u062f\u0627\u062e\u0644\u064a. https:\/\/m.soundcloud.com\/rwinter6-631561180. \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0641\u0643\u0631\u0629 \u0633\u064a\u0626\u0629. Snap:rwinter_4","protected":false,"verified":false,"followers_count":25618,"friends_count":36,"listed_count":81,"favourites_count":9960,"statuses_count":31072,"created_at":"Thu Aug 23 16:55:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663039079177695232\/ROCNyRVZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663039079177695232\/ROCNyRVZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/776347538\/1445722363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rwinter6","name":"\u063a\u064a\u0631 \u0635\u0627\u0644\u062d.","id":776347538,"id_str":"776347538","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080051661"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480619008,"id_str":"663727959480619008","text":"RT @VSPINK_Queen: Warning Signs That Tell Your Vagina Is Unhealthy\n\n https:\/\/t.co\/3X4tDoHo1C","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324932700,"id_str":"324932700","name":"R. E. D. D.","screen_name":"PxssyKiller_","location":null,"url":null,"description":"|CINCINNATI \u2708\ufe0f MIAMI | \u2764\ufe0f@Soul_For_Soles\u2764\ufe0f #R\u03a9\u03a8\u0394L\u03a3MPIR\u03a3 #BlackMafia","protected":false,"verified":false,"followers_count":19395,"friends_count":21015,"listed_count":14,"favourites_count":107,"statuses_count":7548,"created_at":"Mon Jun 27 13:17:48 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662613900194668544\/1kLdLb2o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662613900194668544\/1kLdLb2o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324932700\/1446814424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:46 +0000 2015","id":663720638226432000,"id_str":"663720638226432000","text":"Warning Signs That Tell Your Vagina Is Unhealthy\n\n https:\/\/t.co\/3X4tDoHo1C","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2394862368,"id_str":"2394862368","name":"Kelly \u2757\ufe0f","screen_name":"VSPINK_Queen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2185,"friends_count":2622,"listed_count":2,"favourites_count":7,"statuses_count":56,"created_at":"Mon Mar 17 18:10:49 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662610916228374529\/Z0YNffQ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662610916228374529\/Z0YNffQ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394862368\/1446813727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3X4tDoHo1C","expanded_url":"http:\/\/newssash.com\/link\/lryt7v93gc","display_url":"newssash.com\/link\/lryt7v93gc","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3X4tDoHo1C","expanded_url":"http:\/\/newssash.com\/link\/lryt7v93gc","display_url":"newssash.com\/link\/lryt7v93gc","indices":[69,92]}],"user_mentions":[{"screen_name":"VSPINK_Queen","name":"Kelly \u2757\ufe0f","id":2394862368,"id_str":"2394862368","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463841792,"id_str":"663727959463841792","text":"RT @compulsivegirll: eu acho que to uns 3 dias sem ingerir \u00e1gua, menina assim n\u00e3o tem como defender","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328982914,"id_str":"2328982914","name":"luna 0\/5","screen_name":"skiwny","location":"not pro anything","url":"http:\/\/ask.fm\/skiwny","description":"everyone thinks that we're perfect please don't let them look through the curtains. \/ gw: 40","protected":false,"verified":false,"followers_count":950,"friends_count":380,"listed_count":0,"favourites_count":57,"statuses_count":382,"created_at":"Wed Feb 05 15:45:42 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661898618853572608\/sYPL6v1c.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661898618853572608\/sYPL6v1c.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663378404616597504\/g-XE_wO9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663378404616597504\/g-XE_wO9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328982914\/1446997013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:17 +0000 2015","id":663727311158706177,"id_str":"663727311158706177","text":"eu acho que to uns 3 dias sem ingerir \u00e1gua, menina assim n\u00e3o tem como defender","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3196613687,"id_str":"3196613687","name":"Mia","screen_name":"compulsivegirll","location":"de sol em le\u00e3o n\u00e3o tenho nada","url":null,"description":null,"protected":false,"verified":false,"followers_count":605,"friends_count":242,"listed_count":0,"favourites_count":109,"statuses_count":1003,"created_at":"Thu Apr 23 03:29:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652924334344937472\/QncNIH44_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652924334344937472\/QncNIH44_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196613687\/1441512677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"compulsivegirll","name":"Mia","id":3196613687,"id_str":"3196613687","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959447117824,"id_str":"663727959447117824","text":"Aveces el problema es tener muchos problemas\ud83d\udc7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3894144742,"id_str":"3894144742","name":"Karina","screen_name":"karinaPertuz1","location":null,"url":null,"description":"\u00abCause I'm not good at making promises\n\nBut if you like causing trouble up in hotel rooms, And if you like having secret little rendezvous\u00bb","protected":false,"verified":false,"followers_count":86,"friends_count":169,"listed_count":0,"favourites_count":425,"statuses_count":2283,"created_at":"Wed Oct 07 22:54:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663385322227675136\/-n1ADX5t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663385322227675136\/-n1ADX5t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3894144742\/1447001082","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476469760,"id_str":"663727959476469760","text":"\u0642\u0627\u0644 \u0627\u0644\u0646\u0628\u0649 \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u0645\u0627 \u0645\u0646 \u0645\u0648\u0644\u0648\u062f \u0625\u0644\u0627 \u064a\u0648\u0644\u062f \u0639\u0644\u0649 \u0627\u0644\u0641\u0637\u0631\u0629 \u0641\u0623\u0628\u0648\u0627\u0647 \u064a\u0647\u0648\u062f\u0627\u0646\u0647 \u0648\u064a\u0646\u0635\u0631\u0627\u0646\u0647 -- \u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a #hadith #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1896192312,"id_str":"1896192312","name":"\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ","screen_name":"semti_rex","location":"\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ","url":null,"description":"\u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647\u06c1 \u0648 \u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647\u06c1 \n# \u0627\u0644\u0644\u0647\u0645 \u0627\u0646\u064a \u0627\u0633\u062a\u0648\u062f\u0639\u0643 \u0627\u064a\u0627\u0647\u0627 \u0641\u064a \u0643\u0644 \u062d\u064a\u0646 @gidaa_z1","protected":false,"verified":false,"followers_count":25,"friends_count":12,"listed_count":0,"favourites_count":1,"statuses_count":7036,"created_at":"Mon Sep 23 05:21:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000581945226\/c8c487f177b9971603bf4be7b29897e9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000581945226\/c8c487f177b9971603bf4be7b29897e9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1896192312\/1381529967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hadith","indices":[101,108]},{"text":"\ufdfa","indices":[109,111]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959447064576,"id_str":"663727959447064576","text":"RT @roaringsience: The moment when we want to write exactly what we are feeling , but somehow the paper stays empty ...!!!","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98351137,"id_str":"98351137","name":"Nasim","screen_name":"Frozzen_heart","location":"France","url":"http:\/\/1litreovtears.blogspot.fr\/","description":"A damsel in distress...","protected":false,"verified":false,"followers_count":38,"friends_count":65,"listed_count":2,"favourites_count":137,"statuses_count":5263,"created_at":"Mon Dec 21 11:06:41 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/846990960\/4ee7febbc10f2a6937cbf7ebd9319209.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/846990960\/4ee7febbc10f2a6937cbf7ebd9319209.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657529301458427904\/ua3_GK-W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657529301458427904\/ua3_GK-W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98351137\/1445602242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 09:12:44 +0000 2015","id":661108670797770753,"id_str":"661108670797770753","text":"The moment when we want to write exactly what we are feeling , but somehow the paper stays empty ...!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2801995891,"id_str":"2801995891","name":"silent echo","screen_name":"roaringsience","location":null,"url":null,"description":"http:\/\/wordlyposessions.blogspot.com","protected":false,"verified":false,"followers_count":84,"friends_count":70,"listed_count":0,"favourites_count":5485,"statuses_count":1070,"created_at":"Wed Sep 10 15:08:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660283345486544896\/PvFMYFrS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660283345486544896\/PvFMYFrS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2801995891\/1438996400","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"roaringsience","name":"silent echo","id":2801995891,"id_str":"2801995891","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463862272,"id_str":"663727959463862272","text":"RT @richard_conway: As big as it gets. WADA commission recommends Russia banned from competition, state sponsored intimidation + infiltrati\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235836959,"id_str":"3235836959","name":"John McCarthy","screen_name":"John110895","location":null,"url":null,"description":"Leyton Orient fan, lawyer & animal rights advocate,vegan (VeganO) Cardiff & London. Loves Lord of the Rings & chocolate. Hates animal abuse.","protected":false,"verified":false,"followers_count":221,"friends_count":386,"listed_count":13,"favourites_count":60,"statuses_count":2298,"created_at":"Tue May 05 13:04:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595628903269605376\/05FjLdT2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595628903269605376\/05FjLdT2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235836959\/1444252664","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:42 +0000 2015","id":663722131692371968,"id_str":"663722131692371968","text":"As big as it gets. WADA commission recommends Russia banned from competition, state sponsored intimidation + infiltration of doping labs","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16241871,"id_str":"16241871","name":"Richard Conway","screen_name":"richard_conway","location":"Salford\/London\/around & about","url":"http:\/\/www.bbc.co.uk\/sport","description":"Sports News Correspondent, BBC 5Live","protected":false,"verified":true,"followers_count":50735,"friends_count":1390,"listed_count":986,"favourites_count":357,"statuses_count":15968,"created_at":"Thu Sep 11 15:22:32 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659348349875802112\/Ixx8oNsL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659348349875802112\/Ixx8oNsL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16241871\/1440590722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":64,"favorite_count":25,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"richard_conway","name":"Richard Conway","id":16241871,"id_str":"16241871","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442853888,"id_str":"663727959442853888","text":"RT @gassigirl88: Be an example. Show kindness to unkind people. Forgive people. Love unconditionally. Your actions always reflect who you a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492077106,"id_str":"2492077106","name":"MH's Sass On Fleek!","screen_name":"BecomingJennn","location":"North Alabama!","url":null,"description":"26. Child of God. Survivor of Child Abuse & Rape. Loving my life and my family.","protected":false,"verified":false,"followers_count":332,"friends_count":505,"listed_count":10,"favourites_count":727,"statuses_count":3819,"created_at":"Mon May 12 23:06:18 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465993415700660224\/eb8GaWcm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465993415700660224\/eb8GaWcm.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654696470910644225\/g-QisXfy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654696470910644225\/g-QisXfy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492077106\/1445791676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:27:33 +0000 2015","id":663558515823394816,"id_str":"663558515823394816","text":"Be an example. Show kindness to unkind people. Forgive people. Love unconditionally. Your actions always reflect who you are.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2263902887,"id_str":"2263902887","name":"Cassi Mitchell Smith","screen_name":"gassigirl88","location":null,"url":null,"description":"\u2728BE YOURSELF...EVERYONE ELSE IS TAKEN.\u2728 I LOVE JESUS, FAMILY, FRIENDS, & UNATTENDED MICROPHONES...","protected":false,"verified":false,"followers_count":3281,"friends_count":360,"listed_count":15,"favourites_count":7566,"statuses_count":6397,"created_at":"Sun Jan 05 17:16:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662654906382290944\/xzg3tsyw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662654906382290944\/xzg3tsyw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2263902887\/1446823965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":145,"favorite_count":199,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gassigirl88","name":"Cassi Mitchell Smith","id":2263902887,"id_str":"2263902887","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051657"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472115712,"id_str":"663727959472115712","text":"RT @ispraews: \u0e40\u0e04\u0e49\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e40\u0e17\u0e47\u0e01 #EXO \u0e2a\u0e32\u0e21\u0e40\u0e40\u0e17\u0e47\u0e01\u0e19\u0e35\u0e49 #CALLMEBABY \u0e44\u0e27\u0e49\u0e15\u0e23\u0e07\u0e01\u0e25\u0e32\u0e07\u0e07\u0e30 #2015MAMA \u0e2d\u0e30\u0e44\u0e23\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e40\u0e22\u0e30 \u0e40\u0e40\u0e15\u0e48\u0e01\u0e47\u0e17\u0e33","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288333809,"id_str":"288333809","name":"\u0e09\u0e49\u0e14\u0e43\u0e09\u2605","screen_name":"uzosou_tsuki","location":"Thammasat University","url":"http:\/\/uzosou.blogspot.com\/","description":null,"protected":false,"verified":false,"followers_count":282,"friends_count":340,"listed_count":2,"favourites_count":5983,"statuses_count":143663,"created_at":"Tue Apr 26 17:26:48 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/739999736\/52c1a24180d7a2852c92a02f2af976a9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/739999736\/52c1a24180d7a2852c92a02f2af976a9.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"381608","profile_text_color":"B8733F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641126334794563584\/GwBpMcPR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641126334794563584\/GwBpMcPR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288333809\/1435937667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:39 +0000 2015","id":663726398847086592,"id_str":"663726398847086592","text":"\u0e40\u0e04\u0e49\u0e32\u0e43\u0e2b\u0e49\u0e40\u0e40\u0e17\u0e47\u0e01 #EXO \u0e2a\u0e32\u0e21\u0e40\u0e40\u0e17\u0e47\u0e01\u0e19\u0e35\u0e49 #CALLMEBABY \u0e44\u0e27\u0e49\u0e15\u0e23\u0e07\u0e01\u0e25\u0e32\u0e07\u0e07\u0e30 #2015MAMA \u0e2d\u0e30\u0e44\u0e23\u0e40\u0e22\u0e2d\u0e30\u0e40\u0e40\u0e22\u0e30 \u0e40\u0e40\u0e15\u0e48\u0e01\u0e47\u0e17\u0e33","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84330058,"id_str":"84330058","name":"\u0e41\u0e1b\u0e27.","screen_name":"ispraews","location":null,"url":"http:\/\/ispraews.tumblr.com\/","description":"When nothing is sure, everything is possible.","protected":false,"verified":false,"followers_count":10218,"friends_count":215,"listed_count":14,"favourites_count":4191,"statuses_count":114376,"created_at":"Thu Oct 22 13:54:14 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610162295130296320\/LiSnVt8l.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610162295130296320\/LiSnVt8l.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2FAF9","profile_text_color":"FF9785","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663404453899337728\/Dw9L3Nrd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663404453899337728\/Dw9L3Nrd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84330058\/1446755040","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[13,17]},{"text":"CALLMEBABY","indices":[30,41]},{"text":"2015MAMA","indices":[56,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[27,31]},{"text":"CALLMEBABY","indices":[44,55]},{"text":"2015MAMA","indices":[70,79]}],"urls":[],"user_mentions":[{"screen_name":"ispraews","name":"\u0e41\u0e1b\u0e27.","id":84330058,"id_str":"84330058","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959459631104,"id_str":"663727959459631104","text":"Can I graduate already? \ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":420499239,"id_str":"420499239","name":"amanda mcnamara","screen_name":"amandamacc949","location":null,"url":null,"description":"CSU Nursing '20","protected":false,"verified":false,"followers_count":1399,"friends_count":826,"listed_count":3,"favourites_count":52347,"statuses_count":37428,"created_at":"Thu Nov 24 18:18:02 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173664430\/YcMqK-65.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173664430\/YcMqK-65.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350936715272192\/0oa_ANX9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350936715272192\/0oa_ANX9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/420499239\/1441844801","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051661"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959447117829,"id_str":"663727959447117829","text":"@Sodapoppintv wow I hate you now just for hoping I don't hate you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663639346944217089,"in_reply_to_status_id_str":"663639346944217089","in_reply_to_user_id":1087348778,"in_reply_to_user_id_str":"1087348778","in_reply_to_screen_name":"Sodapoppintv","user":{"id":2822791254,"id_str":"2822791254","name":"QTips","screen_name":"ILikeQTips","location":null,"url":null,"description":"My name is gabe but on the internet i go by ilikeqtips. I stream over at http:\/\/twitch.tv\/ilikeqtips and i send out some tweets sometimes :D","protected":false,"verified":false,"followers_count":18,"friends_count":79,"listed_count":0,"favourites_count":80,"statuses_count":265,"created_at":"Sat Sep 20 21:39:38 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576848112553066496\/Pxw9nTqh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576848112553066496\/Pxw9nTqh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2822791254\/1443470402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sodapoppintv","name":"Chance Morris","id":1087348778,"id_str":"1087348778","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455461376,"id_str":"663727959455461376","text":"RT @MrDDyer: https:\/\/t.co\/Y5bV1YCAgu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198887799,"id_str":"1198887799","name":"Luke Gregory","screen_name":"LukeGregory7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":283,"friends_count":336,"listed_count":1,"favourites_count":3911,"statuses_count":7379,"created_at":"Tue Feb 19 22:47:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660934711854919680\/pFRk804x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660934711854919680\/pFRk804x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198887799\/1444162805","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:08 +0000 2015","id":663726770655490048,"id_str":"663726770655490048","text":"https:\/\/t.co\/Y5bV1YCAgu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715124802,"id_str":"715124802","name":"Danny Dyer","screen_name":"MrDDyer","location":null,"url":"http:\/\/www.dannydyer.com","description":"The World according to Danny Dyer. 'Life lessons from the East End' http:\/\/amzn.to\/1WUQfk6","protected":false,"verified":true,"followers_count":1113050,"friends_count":546,"listed_count":817,"favourites_count":1689,"statuses_count":6299,"created_at":"Tue Jul 24 23:44:44 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/811460808\/1d35cdb853a05fac7fa1bfa6fb0809d5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/811460808\/1d35cdb853a05fac7fa1bfa6fb0809d5.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623806213541765121\/l-a5gKk2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623806213541765121\/l-a5gKk2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/715124802\/1442226279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15974,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/240x240\/2c6i4GoSGkV3J5KZ.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/720x720\/QfG4ySk-klYzWOPw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MrDDyer","name":"Danny Dyer","id":715124802,"id_str":"715124802","indices":[3,11]}],"symbols":[],"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726770655490048,"source_status_id_str":"663726770655490048","source_user_id":715124802,"source_user_id_str":"715124802"}]},"extended_entities":{"media":[{"id":663726682956787712,"id_str":"663726682956787712","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726682956787712\/pu\/img\/dwEDvwb-l-lSoTBp.jpg","url":"https:\/\/t.co\/Y5bV1YCAgu","display_url":"pic.twitter.com\/Y5bV1YCAgu","expanded_url":"http:\/\/twitter.com\/MrDDyer\/status\/663726770655490048\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726770655490048,"source_status_id_str":"663726770655490048","source_user_id":715124802,"source_user_id_str":"715124802","video_info":{"aspect_ratio":[1,1],"duration_millis":15974,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/240x240\/2c6i4GoSGkV3J5KZ.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/720x720\/QfG4ySk-klYzWOPw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/pl\/_mlhG4OPnaGhS4T1.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726682956787712\/pu\/vid\/480x480\/4QsielTkc9HaA1fz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080051660"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455371264,"id_str":"663727959455371264","text":"\ud06c\ub85c\uc2a4\uc9c4 #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \uc77c\ud558\ub294\uac70 \ubcf4\uba74 #CROSSGENE k pop\uc774\uc544\ub2c8\ub77c jpop\uac19\uc544","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899349845,"id_str":"2899349845","name":"\uc9c0\uc601\ud0c0\uc11d","screen_name":"cgcheery","location":null,"url":null,"description":"\uc548\ub155\ud558\uc138\uc694^^ dazzling boy\ub85c \uc815\ud588\uc5b4\uc694 \uae40\uc6a9\uc11d.net \uc73c\ub85c \ub4e4\uc5b4\uc624\uc154\ub3c4 \ub418\uc694. \uc5ec\uae30\ub294 \uac1c\uc778\uacc4\uc815.","protected":false,"verified":false,"followers_count":228,"friends_count":172,"listed_count":3,"favourites_count":476,"statuses_count":2985,"created_at":"Fri Nov 14 11:43:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631774686007787520\/SR9BZPxS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631774686007787520\/SR9BZPxS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[6,20]},{"text":"CROSSGENE","indices":[29,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080051660"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959468064768,"id_str":"663727959468064768","text":"RT @0500992d586543e: https:\/\/t.co\/NbRo3Lh92b\n\nNe yaparsan yap A\u015eK ile yap___ https:\/\/t.co\/e9j2Y9DJH2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1109635160,"id_str":"1109635160","name":"s\u00fcleyman mergen","screen_name":"sleymanmergen1","location":"tarsus mersin ","url":null,"description":"HAYAT BAZEN TATLIDIR SEVENLER KANATLI~DIR ~~","protected":false,"verified":false,"followers_count":2931,"friends_count":2921,"listed_count":2,"favourites_count":11977,"statuses_count":34967,"created_at":"Mon Jan 21 17:43:52 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460867863113252866\/v8r1CxAy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460867863113252866\/v8r1CxAy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1109635160\/1398714463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:38:02 +0000 2015","id":663395060814364672,"id_str":"663395060814364672","text":"https:\/\/t.co\/NbRo3Lh92b\n\nNe yaparsan yap A\u015eK ile yap___ https:\/\/t.co\/e9j2Y9DJH2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3143758619,"id_str":"3143758619","name":"Hicran yaras\u0131","screen_name":"0500992d586543e","location":null,"url":null,"description":"Ey Rabbim zat\u0131n\u0131n celaline ve saltanat\u0131n\u0131n b\u00fcy\u00fckl\u00fc\u011f\u00fcne yak\u0131\u015f\u0131r \u015fekilde sana Hamdolsun.\n\u274cEvli \u2194 DM atmay\u0131n l\u00fctfen\u274c","protected":false,"verified":false,"followers_count":5083,"friends_count":3472,"listed_count":36,"favourites_count":79354,"statuses_count":2642,"created_at":"Tue Apr 07 12:53:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663047630449213445\/Yx_-eTFw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663047630449213445\/Yx_-eTFw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3143758619\/1437727314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":68,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NbRo3Lh92b","expanded_url":"https:\/\/youtu.be\/EOrM5Qe21JU","display_url":"youtu.be\/EOrM5Qe21JU","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663395056892579840,"id_str":"663395056892579840","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","url":"https:\/\/t.co\/e9j2Y9DJH2","display_url":"pic.twitter.com\/e9j2Y9DJH2","expanded_url":"http:\/\/twitter.com\/0500992d586543e\/status\/663395060814364672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663395056892579840,"id_str":"663395056892579840","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","url":"https:\/\/t.co\/e9j2Y9DJH2","display_url":"pic.twitter.com\/e9j2Y9DJH2","expanded_url":"http:\/\/twitter.com\/0500992d586543e\/status\/663395060814364672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NbRo3Lh92b","expanded_url":"https:\/\/youtu.be\/EOrM5Qe21JU","display_url":"youtu.be\/EOrM5Qe21JU","indices":[21,44]}],"user_mentions":[{"screen_name":"0500992d586543e","name":"Hicran yaras\u0131","id":3143758619,"id_str":"3143758619","indices":[3,19]}],"symbols":[],"media":[{"id":663395056892579840,"id_str":"663395056892579840","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","url":"https:\/\/t.co\/e9j2Y9DJH2","display_url":"pic.twitter.com\/e9j2Y9DJH2","expanded_url":"http:\/\/twitter.com\/0500992d586543e\/status\/663395060814364672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}},"source_status_id":663395060814364672,"source_status_id_str":"663395060814364672","source_user_id":3143758619,"source_user_id_str":"3143758619"}]},"extended_entities":{"media":[{"id":663395056892579840,"id_str":"663395056892579840","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTaShfVEAAyn2K.jpg","url":"https:\/\/t.co\/e9j2Y9DJH2","display_url":"pic.twitter.com\/e9j2Y9DJH2","expanded_url":"http:\/\/twitter.com\/0500992d586543e\/status\/663395060814364672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":540,"resize":"fit"}},"source_status_id":663395060814364672,"source_status_id_str":"663395060814364672","source_user_id":3143758619,"source_user_id_str":"3143758619"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"tr","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472144384,"id_str":"663727959472144384","text":"Tu hi khud ka bhagyvidhata he ~ swami Vivekanand ji \ud83d\ude4f","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726311026720769,"in_reply_to_status_id_str":"663726311026720769","in_reply_to_user_id":3232614978,"in_reply_to_user_id_str":"3232614978","in_reply_to_screen_name":"PagalDwani","user":{"id":3232614978,"id_str":"3232614978","name":"be pOsiTivE ","screen_name":"PagalDwani","location":"India","url":null,"description":"17 \u00a4 gujarati girl \u00a4 books \u00a4 maths \u00a4steve jobs \u00a4 Dr.A.P.J. ABDUL KALAM \u00a4student \u00a4 pagal \u00a4 overacting karnewale dur rahe \u00a4 #Followback","protected":false,"verified":false,"followers_count":93,"friends_count":21,"listed_count":5,"favourites_count":1683,"statuses_count":2000,"created_at":"Mon Jun 01 14:36:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309564222156800\/AndkkBiQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309564222156800\/AndkkBiQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232614978\/1446737322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959451295744,"id_str":"663727959451295744","text":"Bio lecture starts. Guy sitting next to @taylorkimes and I starts sobbing quietly. Same dude, same.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2611750958,"id_str":"2611750958","name":"Maddie Diller","screen_name":"_maddiek8","location":null,"url":null,"description":"psalm 19:14 \/\/ UF","protected":false,"verified":false,"followers_count":31,"friends_count":53,"listed_count":0,"favourites_count":178,"statuses_count":143,"created_at":"Tue Jul 08 14:20:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8D1","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8D1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652635642774618112\/HU08xKLm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652635642774618112\/HU08xKLm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2611750958\/1407943942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taylorkimes","name":"Taylor Kimes","id":748317182,"id_str":"748317182","indices":[40,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051659"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442743296,"id_str":"663727959442743296","text":"\u5bdd\u305f\u304f\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4143872239,"id_str":"4143872239","name":"youknow","screen_name":"blsiko_kmwt","location":null,"url":null,"description":"\u30ad\u30e2\u30c1\u30ef\u30eb\u30a4\u306f\u8912\u3081\u8a00\u8449\u3002\u4e3b\u98df\u306f\u7b4b\u8089\u3002","protected":false,"verified":false,"followers_count":4,"friends_count":18,"listed_count":0,"favourites_count":5,"statuses_count":20,"created_at":"Fri Nov 06 07:47:00 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377423291912192\/YMhuC8Hi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377423291912192\/YMhuC8Hi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4143872239\/1447001919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051657"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476277248,"id_str":"663727959476277248","text":"\u5343\u8cc0\u5065\u6c38\u3001\u525b\u529b\u5f69\u82bd\u306b\u3079\u305f\u8912\u3081\u3055\u308c\u308b\uff1f\u300c\u9762\u767d\u3044\u7d50\u679c\u306b\u306a\u3063\u305f\u300d\u201c\u81ea\u64ae\u308a\u201d\u30e9\u30f3\u30ad\u30f3\u30b0\u3068\u306f\uff1f https:\/\/t.co\/TWW5Htcdbm","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319608090,"id_str":"3319608090","name":"\u03c6\u03c6KAT-TUN\u03c6\u03c6","screen_name":"vy221KATTUNgx","location":null,"url":null,"description":"KAT-TUN\u304c\u597d\u304d\u306aJK3\u3067\u3059\uff01\u53cb\u9054\u52df\u96c6\u4e2d\u3067\u3059(^-^)\/ \u30ad\u30e9\u30ad\u30e9\u3001\u30e2\u30d5\u30e2\u30d5\u5927\u597d\u304d\u2764 \u51fa\u4f1a\u3044\u308e\u5927\u4e8b\u306b\u3057\u305f\u3044\u3068\u601d\u3063\u3066\u307e\u3059(\u00b4\u30fc\uff40)\u2606 \u5f7c\u6c0f\u52df\u96c6\u4e2d\uff01 \u8ab0\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":46,"friends_count":174,"listed_count":0,"favourites_count":0,"statuses_count":6351,"created_at":"Wed Aug 19 05:31:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634545053030027265\/RQ_mb1Xh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634545053030027265\/RQ_mb1Xh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319608090\/1440122332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TWW5Htcdbm","expanded_url":"http:\/\/jonny002entamez.seesaa.net","display_url":"jonny002entamez.seesaa.net","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959468056576,"id_str":"663727959468056576","text":"RT @papyonluzenci2: HAYATIMDA EN REZ\u0130L OLDU\u011eUM ANLARDAN B\u0130R\u0130S\u0130... http:\/\/t.co\/kUF5vGsGli","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94735323,"id_str":"94735323","name":"RASUL","screen_name":"egoyukluinsan","location":null,"url":"http:\/\/instagram.com\/ra5ul","description":null,"protected":false,"verified":false,"followers_count":79827,"friends_count":14719,"listed_count":22,"favourites_count":24449,"statuses_count":3598,"created_at":"Sat Dec 05 05:45:39 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":true,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437868121861275648\/6xIBErDT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437868121861275648\/6xIBErDT.jpeg","profile_background_tile":true,"profile_link_color":"0000FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657594389070528512\/wkA-QLri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657594389070528512\/wkA-QLri_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94735323\/1445617693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jun 29 09:58:36 +0000 2015","id":615459343006367744,"id_str":"615459343006367744","text":"HAYATIMDA EN REZ\u0130L OLDU\u011eUM ANLARDAN B\u0130R\u0130S\u0130... http:\/\/t.co\/kUF5vGsGli","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1541343890,"id_str":"1541343890","name":"Servet Y\u0131ld\u0131z","screen_name":"papyonluzenci2","location":"\u0130ncirlik,Airbase Adana","url":"https:\/\/www.facebook.com\/profile.php?id=1168717312","description":"https:\/\/instagram.com\/papyonluzenci2 mi mi mizah show \u0130NC\u0130'TEN REY\u0130Z","protected":false,"verified":false,"followers_count":128356,"friends_count":74325,"listed_count":71,"favourites_count":95564,"statuses_count":1636,"created_at":"Sun Jun 23 16:29:54 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1541343890\/1423665576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4ded0c16e7e8fd2d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ded0c16e7e8fd2d.json","place_type":"admin","name":"\u00c7ukurova","full_name":"\u00c7ukurova, Adana","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[34.994527,36.982534],[34.994527,37.178096],[35.332430,37.178096],[35.332430,36.982534]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":490,"favorite_count":1672,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":615459341764820992,"id_str":"615459341764820992","indices":[46,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","url":"http:\/\/t.co\/kUF5vGsGli","display_url":"pic.twitter.com\/kUF5vGsGli","expanded_url":"http:\/\/twitter.com\/papyonluzenci2\/status\/615459343006367744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":329,"resize":"fit"},"small":{"w":340,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":541,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":615459341764820992,"id_str":"615459341764820992","indices":[46,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","url":"http:\/\/t.co\/kUF5vGsGli","display_url":"pic.twitter.com\/kUF5vGsGli","expanded_url":"http:\/\/twitter.com\/papyonluzenci2\/status\/615459343006367744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":329,"resize":"fit"},"small":{"w":340,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":541,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"papyonluzenci2","name":"Servet Y\u0131ld\u0131z","id":1541343890,"id_str":"1541343890","indices":[3,18]}],"symbols":[],"media":[{"id":615459341764820992,"id_str":"615459341764820992","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","url":"http:\/\/t.co\/kUF5vGsGli","display_url":"pic.twitter.com\/kUF5vGsGli","expanded_url":"http:\/\/twitter.com\/papyonluzenci2\/status\/615459343006367744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":329,"resize":"fit"},"small":{"w":340,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":541,"resize":"fit"}},"source_status_id":615459343006367744,"source_status_id_str":"615459343006367744","source_user_id":1541343890,"source_user_id_str":"1541343890"}]},"extended_entities":{"media":[{"id":615459341764820992,"id_str":"615459341764820992","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CIqNAq-WgAAB3rk.jpg","url":"http:\/\/t.co\/kUF5vGsGli","display_url":"pic.twitter.com\/kUF5vGsGli","expanded_url":"http:\/\/twitter.com\/papyonluzenci2\/status\/615459343006367744\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":329,"resize":"fit"},"small":{"w":340,"h":186,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":984,"h":541,"resize":"fit"}},"source_status_id":615459343006367744,"source_status_id_str":"615459343006367744","source_user_id":1541343890,"source_user_id_str":"1541343890"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959467909120,"id_str":"663727959467909120","text":"@haruhoriai \nSHUN\u3055\u3093\u304b\u306a\uff1f(>_<)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727756732043264,"in_reply_to_status_id_str":"663727756732043264","in_reply_to_user_id":1146596316,"in_reply_to_user_id_str":"1146596316","in_reply_to_screen_name":"haruhoriai","user":{"id":705201002,"id_str":"705201002","name":"\u3057\u3093\u3084\u4e38\u3002\u30d1\u30f3\u3071\u3093","screen_name":"hse27nyosu","location":null,"url":null,"description":"\u3042\u306e\u7d20\u6674\u3089\u3057\u3044\u611b\u3092\u3082\u3046\u4e00\u5ea6","protected":false,"verified":false,"followers_count":269,"friends_count":409,"listed_count":3,"favourites_count":2776,"statuses_count":61528,"created_at":"Thu Jul 19 14:48:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592615427609530368\/PSK2ykZO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592615427609530368\/PSK2ykZO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/705201002\/1445605833","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haruhoriai","name":"\u5800\u5408\u83ef\u5948\u266110COLOR'S","id":1146596316,"id_str":"1146596316","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480528896,"id_str":"663727959480528896","text":"@umbxkr \u7d50\u5a5a\u5f0f\u3044\u3044\u306d\u30fc\uff01\uff3c(^_^)\uff0f\u540c\u671f\u751f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721682285170688,"in_reply_to_status_id_str":"663721682285170688","in_reply_to_user_id":371000048,"in_reply_to_user_id_str":"371000048","in_reply_to_screen_name":"umbxkr","user":{"id":1320097338,"id_str":"1320097338","name":"\u3061\u3063\u3061","screen_name":"ruppitan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":53,"listed_count":0,"favourites_count":9,"statuses_count":380,"created_at":"Mon Apr 01 11:02:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517934660387483648\/9u_VaRpA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517934660387483648\/9u_VaRpA_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"umbxkr","name":"\u304f\u308a","id":371000048,"id_str":"371000048","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480504320,"id_str":"663727959480504320","text":"Next year is definitely our year","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378003415,"id_str":"378003415","name":"Taj","screen_name":"_queenCocky","location":null,"url":null,"description":"im chillin","protected":false,"verified":false,"followers_count":466,"friends_count":370,"listed_count":2,"favourites_count":4292,"statuses_count":33710,"created_at":"Thu Sep 22 13:46:30 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A65915","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/358285173\/liyah.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/358285173\/liyah.jpg","profile_background_tile":true,"profile_link_color":"59BDBD","profile_sidebar_border_color":"E8EDE8","profile_sidebar_fill_color":"2D4B75","profile_text_color":"BD7B77","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657333773701378049\/roSOVZpC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657333773701378049\/roSOVZpC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378003415\/1445555675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959451107328,"id_str":"663727959451107328","text":"RT @MindsConsole: Don't give up just because things are hard.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3778138700,"id_str":"3778138700","name":"Maitri Chakraborty","screen_name":"Maitri15213","location":"kolkata","url":null,"description":null,"protected":false,"verified":false,"followers_count":237,"friends_count":460,"listed_count":0,"favourites_count":420,"statuses_count":201,"created_at":"Sun Oct 04 06:14:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661435749888233472\/mFXcm-N9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661435749888233472\/mFXcm-N9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3778138700\/1446619797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 09:07:59 +0000 2015","id":660020309773299712,"id_str":"660020309773299712","text":"Don't give up just because things are hard.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830051135,"id_str":"2830051135","name":"Perfect Sayings","screen_name":"MindsConsole","location":null,"url":null,"description":"We post inspirational, motivational,love,feelings quotes and Sayings.Not own any contents we post. #lovelife #Relationship #motivation #richmafia","protected":false,"verified":false,"followers_count":501616,"friends_count":202103,"listed_count":1082,"favourites_count":242,"statuses_count":3924,"created_at":"Wed Sep 24 14:53:17 +0000 2014","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660347579125764096\/b5IVAt2i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660347579125764096\/b5IVAt2i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830051135\/1446274225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1557,"favorite_count":950,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MindsConsole","name":"Perfect Sayings","id":2830051135,"id_str":"2830051135","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051659"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476342784,"id_str":"663727959476342784","text":"@0launcher0 \n\u9593\u9055\u3044\u306a\u3044( \u02c7\u0df4\u02c7 )\u2728\n\u3084\u3093\u306a\uff01\uff01\u2934\ufe0e\u2934\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727367387410437,"in_reply_to_status_id_str":"663727367387410437","in_reply_to_user_id":793548542,"in_reply_to_user_id_str":"793548542","in_reply_to_screen_name":"0launcher0","user":{"id":2868830196,"id_str":"2868830196","name":"\u307f\u3093\u307f\u3093\u3068KEYTALK\u30b9\u30da\u30b5\u30f3\u677e\u5c71","screen_name":"tksn0616","location":"Ehime\u2192","url":null,"description":"\u65e9\u304f\u9ad8\u6821\u5352\u696d\u3057\u305f\u3044\u3042\u3068\u534a\u5e74\u30cf\u30a4\u30b9\u30af\u30fc\u30eb\u30ac\u30fc\u30eb\u2778\u5e74\u76ee\u306f\u8d64\u30c7\u30a3\u30c3\u30ad \uff12\u6708\u307e\u3067\u63da\u7269\u7518\u7269\u30d1\u30f3\u7981\u6b62\u4ee4\u0669( \u141b )\u0648 \u0669( \u141b )\u0648 \u0669( \u141b )\u0648","protected":false,"verified":false,"followers_count":237,"friends_count":237,"listed_count":16,"favourites_count":4677,"statuses_count":6041,"created_at":"Tue Oct 21 12:18:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655320813541814273\/IC29Dy-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655320813541814273\/IC29Dy-Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868830196\/1445638540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0launcher0","name":"\u270d\u3089\u3093\u305f\u3093\u270dSHISHAMO2days","id":793548542,"id_str":"793548542","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959446917120,"id_str":"663727959446917120","text":"Get Weather Updates from The Weather Channel. 09:40:51","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1358052955,"id_str":"1358052955","name":"DVRgtbt","screen_name":"DVRgtbt","location":null,"url":null,"description":"Continuous updates for CAL DIVE INTL (DVR)","protected":false,"verified":false,"followers_count":25,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":46206,"created_at":"Tue Apr 16 22:49:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455346689,"id_str":"663727959455346689","text":"RT @MaineAlden16: Syempre di mawawala ang suprise ni Meng na letter. \n @mainedcm @aldenrichards02\n\u00a9 EB PAGE\n#ALDUBMissingRing https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2825912244,"id_str":"2825912244","name":"Ryan Quinonez","screen_name":"sgt_rAyk","location":"Manila, Philippines","url":"https:\/\/www.facebook.com\/rayk12","description":null,"protected":false,"verified":false,"followers_count":173,"friends_count":403,"listed_count":2,"favourites_count":5159,"statuses_count":24509,"created_at":"Mon Sep 22 08:50:27 +0000 2014","utc_offset":28800,"time_zone":"Taipei","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655047145985175553\/xiMtK3wr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655047145985175553\/xiMtK3wr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2825912244\/1411445324","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:42:17 +0000 2015","id":663622621536215041,"id_str":"663622621536215041","text":"Syempre di mawawala ang suprise ni Meng na letter. \n @mainedcm @aldenrichards02\n\u00a9 EB PAGE\n#ALDUBMissingRing https:\/\/t.co\/Ttzo94o9XC","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281368988,"id_str":"3281368988","name":"ALDUB|MAIDEN NATION","screen_name":"MaineAlden16","location":null,"url":null,"description":"OFFICIAL Fans Club of Alden Richards @aldenrichards02 and Maine Mendoza @mainedcm Loveteam. est. 07\u202216\u202215 \u2764\ufe0f\u2764","protected":false,"verified":false,"followers_count":568586,"friends_count":301,"listed_count":182,"favourites_count":8737,"statuses_count":23280,"created_at":"Thu Jul 16 07:21:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647031997278191617\/XesF9TQz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647031997278191617\/XesF9TQz.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660491824096653312\/w2Y_QWSC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660491824096653312\/w2Y_QWSC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281368988\/1443100436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1621,"favorite_count":1678,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[90,107]}],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[53,62]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[63,79]}],"symbols":[],"media":[{"id":663622588992647168,"id_str":"663622588992647168","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","url":"https:\/\/t.co\/Ttzo94o9XC","display_url":"pic.twitter.com\/Ttzo94o9XC","expanded_url":"http:\/\/twitter.com\/MaineAlden16\/status\/663622621536215041\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"large":{"w":702,"h":960,"resize":"fit"},"medium":{"w":600,"h":820,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663622588992647168,"id_str":"663622588992647168","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","url":"https:\/\/t.co\/Ttzo94o9XC","display_url":"pic.twitter.com\/Ttzo94o9XC","expanded_url":"http:\/\/twitter.com\/MaineAlden16\/status\/663622621536215041\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"large":{"w":702,"h":960,"resize":"fit"},"medium":{"w":600,"h":820,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[108,125]}],"urls":[],"user_mentions":[{"screen_name":"MaineAlden16","name":"ALDUB|MAIDEN NATION","id":3281368988,"id_str":"3281368988","indices":[3,16]},{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[71,80]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[81,97]}],"symbols":[],"media":[{"id":663622588992647168,"id_str":"663622588992647168","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","url":"https:\/\/t.co\/Ttzo94o9XC","display_url":"pic.twitter.com\/Ttzo94o9XC","expanded_url":"http:\/\/twitter.com\/MaineAlden16\/status\/663622621536215041\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"large":{"w":702,"h":960,"resize":"fit"},"medium":{"w":600,"h":820,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663622621536215041,"source_status_id_str":"663622621536215041","source_user_id":3281368988,"source_user_id_str":"3281368988"}]},"extended_entities":{"media":[{"id":663622588992647168,"id_str":"663622588992647168","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpOonU8AA-R8I.jpg","url":"https:\/\/t.co\/Ttzo94o9XC","display_url":"pic.twitter.com\/Ttzo94o9XC","expanded_url":"http:\/\/twitter.com\/MaineAlden16\/status\/663622621536215041\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":464,"resize":"fit"},"large":{"w":702,"h":960,"resize":"fit"},"medium":{"w":600,"h":820,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663622621536215041,"source_status_id_str":"663622621536215041","source_user_id":3281368988,"source_user_id_str":"3281368988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080051660"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442755584,"id_str":"663727959442755584","text":"RT @SonamTillani: #DiwaliDhamakaWithPRDP Is Trending! Keep tweeting with this tag! Can't Wait\u2764\ufe0f @PRDP @BeingSalmanKhan @sonamakapoor \ud83d\ude0d http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2304953087,"id_str":"2304953087","name":"Salman Khan Matters","screen_name":"SalluCommunity","location":"Salman Kingdom","url":"http:\/\/bebeinghuman.com","description":"|| Woh Rambo ka baap hai, Terminator ka chacha hai, Rocky ka dadu hai aur Bruce Lee ka nana hai... last action hero hai woh || DEVOTEE of @beingsalmankhan ||","protected":false,"verified":false,"followers_count":982,"friends_count":169,"listed_count":14,"favourites_count":3762,"statuses_count":31110,"created_at":"Sun Jan 26 05:01:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662512732374089728\/mimSdYNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662512732374089728\/mimSdYNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304953087\/1447044043","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:32 +0000 2015","id":663727627186794496,"id_str":"663727627186794496","text":"#DiwaliDhamakaWithPRDP Is Trending! Keep tweeting with this tag! Can't Wait\u2764\ufe0f @PRDP @BeingSalmanKhan @sonamakapoor \ud83d\ude0d https:\/\/t.co\/CzY6HH7DZu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966949813,"id_str":"966949813","name":"P\u044f\u03b5\u043c\u273f\u039ai\u273fD\u03b5\u03b5w\u03b1\u03b7i\u2763","screen_name":"SonamTillani","location":"Indore (M.P) India","url":"http:\/\/beinghumanonline.com","description":"\u2606\u3002\u2133\u03b1i\u03b7 P\u044f\u03b5\u043c \u039ai D\u03b5\u03b5w\u03b1\u03b7i \u043d\u03c3\u03c3\u03b7\u3002\u2606SoNa\u2605 DabanGG GaL\u2606 TiGReSS\u2605 #SalKat\u2606 #SalBebo\u2606 #SalJac\u2606 I Respect \u2605 Admire\u2605N Love @BeingSalmanKhan 4m My SouL\u2661Plz Notice Me S\u03b1l\u043c\u03b1\u03b7\u30c4","protected":false,"verified":false,"followers_count":28785,"friends_count":3652,"listed_count":44,"favourites_count":55195,"statuses_count":214508,"created_at":"Fri Nov 23 22:26:21 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000075897011\/ab62e63bf5567afc6ecc14e0c1c9df33.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000075897011\/ab62e63bf5567afc6ecc14e0c1c9df33.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659816636816338944\/y2t97Cvq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659816636816338944\/y2t97Cvq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966949813\/1435004080","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[0,22]}],"urls":[],"user_mentions":[{"screen_name":"prdp","name":"Prem Ratan Dhan Payo","id":3439469566,"id_str":"3439469566","indices":[78,83]},{"screen_name":"BeingSalmanKhan","name":"Salman Khan","id":132385468,"id_str":"132385468","indices":[84,100]},{"screen_name":"sonamakapoor","name":"Sonam Kapoor","id":51376979,"id_str":"51376979","indices":[101,114]}],"symbols":[],"media":[{"id":663727610866745344,"id_str":"663727610866745344","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","url":"https:\/\/t.co\/CzY6HH7DZu","display_url":"pic.twitter.com\/CzY6HH7DZu","expanded_url":"http:\/\/twitter.com\/SonamTillani\/status\/663727627186794496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727610866745344,"id_str":"663727610866745344","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","url":"https:\/\/t.co\/CzY6HH7DZu","display_url":"pic.twitter.com\/CzY6HH7DZu","expanded_url":"http:\/\/twitter.com\/SonamTillani\/status\/663727627186794496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[18,40]}],"urls":[],"user_mentions":[{"screen_name":"SonamTillani","name":"P\u044f\u03b5\u043c\u273f\u039ai\u273fD\u03b5\u03b5w\u03b1\u03b7i\u2763","id":966949813,"id_str":"966949813","indices":[3,16]},{"screen_name":"prdp","name":"Prem Ratan Dhan Payo","id":3439469566,"id_str":"3439469566","indices":[96,101]},{"screen_name":"BeingSalmanKhan","name":"Salman Khan","id":132385468,"id_str":"132385468","indices":[102,118]},{"screen_name":"sonamakapoor","name":"Sonam Kapoor","id":51376979,"id_str":"51376979","indices":[119,132]}],"symbols":[],"media":[{"id":663727610866745344,"id_str":"663727610866745344","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","url":"https:\/\/t.co\/CzY6HH7DZu","display_url":"pic.twitter.com\/CzY6HH7DZu","expanded_url":"http:\/\/twitter.com\/SonamTillani\/status\/663727627186794496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727627186794496,"source_status_id_str":"663727627186794496","source_user_id":966949813,"source_user_id_str":"966949813"}]},"extended_entities":{"media":[{"id":663727610866745344,"id_str":"663727610866745344","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvtlUwAAJAY8.jpg","url":"https:\/\/t.co\/CzY6HH7DZu","display_url":"pic.twitter.com\/CzY6HH7DZu","expanded_url":"http:\/\/twitter.com\/SonamTillani\/status\/663727627186794496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727627186794496,"source_status_id_str":"663727627186794496","source_user_id":966949813,"source_user_id_str":"966949813"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051657"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442763776,"id_str":"663727959442763776","text":"RT @m_k_01272: \u3084\u3079\u3048\u3001\u3053\u3093\u306a\u306e\u3057\u3066\u307f\u305f\u3044\uff01\n\u3053\u308c\u306a\u3089\u935b\u3048\u306a\u304c\u3089\u30e9\u30d6\u30e9\u30d6\u51fa\u6765\u308b\u3057\uff01 https:\/\/t.co\/v3fm5xuzOc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179317418,"id_str":"4179317418","name":"\u307e\u30fc\u3061\u3085\u30fc","screen_name":"gudetaminionn","location":null,"url":null,"description":"\u611f\u60c5\u306e\u8d77\u4f0f\u304c\u6fc0\u3057\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u3063\u30b9\uff01 \u30d5\u30a9\u30ed\u30d0100%\uff01\u3088\u308d\u3057\u304f\u3063\u30b9(*\uff40\uff65\u03c9\u30fb)\u309e \/backnumber\/\u4e09\u4ee3\u76ee\/EXILETRIBE\/LDH\/miwa\/NON STYLE\/\u30b3\u30ed\u30b3\u30ed\u30c1\u30ad\u30c1\u30ad\u30da\u30c3\u30d1\u30fc\u30ba\/\u30ed\u30c3\u30c1\/\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9\/\u5343\u8449\u30ed\u30c3\u30c6\u5fdc\u63f4\u6b4c\/\u30df\u30cb\u30aa\u30f3\/\u3050\u3067\u305f\u307e\/\u30b5\u30f3\u30ea\u30aa\/\u30aa\u30b7\u30e3\u30ec\/\u30c0\u30f3\u30b9\/\u98df\u3079\u7269\/\u30a2\u30cb\u30e1\/\u30d0\u30a4\u2026","protected":false,"verified":false,"followers_count":14,"friends_count":145,"listed_count":1,"favourites_count":32,"statuses_count":58,"created_at":"Mon Nov 09 12:58:45 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663702575863103488\/ljk0BQlg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663702575863103488\/ljk0BQlg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179317418\/1447074032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 20 11:18:07 +0000 2015","id":656429183157993472,"id_str":"656429183157993472","text":"\u3084\u3079\u3048\u3001\u3053\u3093\u306a\u306e\u3057\u3066\u307f\u305f\u3044\uff01\n\u3053\u308c\u306a\u3089\u935b\u3048\u306a\u304c\u3089\u30e9\u30d6\u30e9\u30d6\u51fa\u6765\u308b\u3057\uff01 https:\/\/t.co\/v3fm5xuzOc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281147066,"id_str":"3281147066","name":"\u307f\u3063\u3061\u3047\u308b","screen_name":"m_k_01272","location":null,"url":null,"description":"18\u306e\u4ee3\u30fb\u9ad8\uff13\u30fb\u57fc\u7389\u5ddd\u53e3\u30fb\u81ea\u5206\u306e\u4eba\u751f\u306f\u81ea\u5206\u3067\u6c7a\u3081\u308b\u30fb\u6bce\u65e5\u8ab0\u304b\u3068\u3044\u3066\u5e78\u305b\u306a\u3089\u305d\u308c\u3067\u3044\u3044\u3093\u3067\u3059\u30fb\u57fa\u672c\u9069\u5f53\u30fb\u30e9\u30d7\u30c4\u30a7\u30eb\u3048\u307f\u2661\u30fb\u30d5\u30a9\u30ed\u30fc\u3057\u305f\u3089\u6c17\u306b\u306a\u308b\u4eba\u8fd4\u3057\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":557,"friends_count":379,"listed_count":4,"favourites_count":2647,"statuses_count":4226,"created_at":"Thu Jul 16 02:07:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662167036299087872\/nkep1rg4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662167036299087872\/nkep1rg4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281147066\/1446872329","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11904,"favorite_count":15465,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":654625922830614529,"id_str":"654625922830614529","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","url":"https:\/\/t.co\/v3fm5xuzOc","display_url":"pic.twitter.com\/v3fm5xuzOc","expanded_url":"http:\/\/twitter.com\/runsama_0711\/status\/654626050932998144\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":654626050932998144,"source_status_id_str":"654626050932998144","source_user_id":2253770826,"source_user_id_str":"2253770826"}]},"extended_entities":{"media":[{"id":654625922830614529,"id_str":"654625922830614529","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","url":"https:\/\/t.co\/v3fm5xuzOc","display_url":"pic.twitter.com\/v3fm5xuzOc","expanded_url":"http:\/\/twitter.com\/runsama_0711\/status\/654626050932998144\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":654626050932998144,"source_status_id_str":"654626050932998144","source_user_id":2253770826,"source_user_id_str":"2253770826","video_info":{"aspect_ratio":[1,1],"duration_millis":29956,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/pl\/cSRq3fpHgs2jO7t5.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/480x480\/ibrE8vQAsk0jPTOZ.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/480x480\/ibrE8vQAsk0jPTOZ.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/pl\/cSRq3fpHgs2jO7t5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/240x240\/HQjZvM_KsAjWhW7N.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m_k_01272","name":"\u307f\u3063\u3061\u3047\u308b","id":3281147066,"id_str":"3281147066","indices":[3,13]}],"symbols":[],"media":[{"id":654625922830614529,"id_str":"654625922830614529","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","url":"https:\/\/t.co\/v3fm5xuzOc","display_url":"pic.twitter.com\/v3fm5xuzOc","expanded_url":"http:\/\/twitter.com\/runsama_0711\/status\/654626050932998144\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":654626050932998144,"source_status_id_str":"654626050932998144","source_user_id":2253770826,"source_user_id_str":"2253770826"}]},"extended_entities":{"media":[{"id":654625922830614529,"id_str":"654625922830614529","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654625922830614529\/pu\/img\/2-Ll7zvI_Gr59uo8.jpg","url":"https:\/\/t.co\/v3fm5xuzOc","display_url":"pic.twitter.com\/v3fm5xuzOc","expanded_url":"http:\/\/twitter.com\/runsama_0711\/status\/654626050932998144\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":654626050932998144,"source_status_id_str":"654626050932998144","source_user_id":2253770826,"source_user_id_str":"2253770826","video_info":{"aspect_ratio":[1,1],"duration_millis":29956,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/pl\/cSRq3fpHgs2jO7t5.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/480x480\/ibrE8vQAsk0jPTOZ.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/480x480\/ibrE8vQAsk0jPTOZ.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/pl\/cSRq3fpHgs2jO7t5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654625922830614529\/pu\/vid\/240x240\/HQjZvM_KsAjWhW7N.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051657"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476334593,"id_str":"663727959476334593","text":"\uadf8\ubd84\uc758 \uc190\uac00\ub77d \ub05d\uc744 \uc78a\uc744\uc218\uac00 \uc5c6\uc9c0\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0\n.\n #CROSSGENE\n..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2913711288,"id_str":"2913711288","name":"\ub8e8\uc548","screen_name":"rooan0507","location":null,"url":null,"description":"Cross gene\/Fan art\/\uc0c1\ubbfc\uc624\ube60 \uc0ac\ub791\ud574!\/\ub9de\ud314\uc740 \uba58\uc158~","protected":false,"verified":false,"followers_count":152,"friends_count":126,"listed_count":0,"favourites_count":8,"statuses_count":2380,"created_at":"Sat Nov 29 13:19:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649963729459609601\/_4o97FrH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649963729459609601\/_4o97FrH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913711288\/1446562771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[19,33]},{"text":"CROSSGENE","indices":[37,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472107521,"id_str":"663727959472107521","text":"RT @RaGoharShahi: 'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2480936051,"id_str":"2480936051","name":"Umair_Aslam","screen_name":"GyUmair","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":11,"listed_count":24,"favourites_count":23,"statuses_count":22159,"created_at":"Sun Apr 13 08:01:29 +0000 2014","utc_offset":21600,"time_zone":"Almaty","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625381208990453760\/PsARuoS1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625381208990453760\/PsARuoS1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 22:38:23 +0000 2015","id":660949031162654721,"id_str":"660949031162654721","text":"'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":5,"entities":{"hashtags":[{"text":"GoharShahi","indices":[53,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GoharShahi","indices":[71,82]}],"urls":[],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476334592,"id_str":"663727959476334592","text":"\u5225\u308c\u305f\u6642\u306b\u5927\u5909\u306b\u306a\u308b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84846876,"id_str":"84846876","name":"\u975e\u5b9f\u5728\u4eba\u9593","screen_name":"ysnrXF","location":"\u7537\u5973\u517c\u7528\u811a\u30d5\u30a7\u30c1 \u30d2\u30e9\u30e1\u7b4b\u304b\u3089\u8153\u9aa8\u7b4b\u307e\u3067","url":"http:\/\/instagram.com\/not_existman","description":"\u79c1\u306f\u3069\u3053\u306b\u3082\u5c45\u306a\u3044\u3002 \u57ce\u30d7\u30ed \u30c7\u30ec\u30b9\u30c6 \u5c0f\u65e5\u5411\u3061\u3083\u3093\u304b\u308f\u3044\u3044\ningress-enlightened","protected":false,"verified":false,"followers_count":875,"friends_count":1128,"listed_count":51,"favourites_count":51479,"statuses_count":164394,"created_at":"Sat Oct 24 13:27:18 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"F72323","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476642403768471552\/ALa3OGbe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476642403768471552\/ALa3OGbe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84846876\/1426551432","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463718912,"id_str":"663727959463718912","text":"TOKIO\u5c71\u53e3\u9054\u4e5f\u3001\u30c1\u30e3\u30ea\u30c6\u30a3\u30fc\u30e9\u30f3\u30ca\u30fc\u306eDAIGO\u3092\u3082\u5727\u5012\u3057\u305f\u7b4b\u30c8\u30ec\u306e\u5b9f\u614b\uff01 https:\/\/t.co\/mRj1fqmyTN","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321600133,"id_str":"3321600133","name":"*\uff61\uff9f*\u5317\u5c71\u5b8f\u5149*\uff61\uff9f*","screen_name":"wi247KITAYAMAsp","location":null,"url":null,"description":"\u5317\u5c71\u5b8f\u5149\u304c\u597d\u304d\u306a\u5973\u5b50\u5927\u751f\u3067\u3059(*\u00b4\uff70`*\u4eba*\u00b4\uff70`*)\uff7d\uff77\uff7d\uff77\u266a \u30de\u30a4\u30d6\u30fc\u30e0\u306f\uff11\u4eba\u30ab\u30e9\u30aa\u30b1\u3057\u3061\u3083\u3046\u3053\u3068\u3067\u3059\u2661 \u6c17\u8efd\u306bDM\u30aa\u30fc\u30b1\u30fc\u3060\u3088\uff08\u309d\u3002\u2202\uff09~\u2606","protected":false,"verified":false,"followers_count":83,"friends_count":185,"listed_count":0,"favourites_count":0,"statuses_count":3445,"created_at":"Thu Aug 20 16:23:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634986111287169028\/nskyavb6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634986111287169028\/nskyavb6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3321600133\/1440227471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mRj1fqmyTN","expanded_url":"http:\/\/jonny002entamez.seesaa.net","display_url":"jonny002entamez.seesaa.net","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442784256,"id_str":"663727959442784256","text":"@prdp @beingsalmankhan @sonamakapoor @zeetv @beingn5855 2days left guys aag lga do #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727431497289729,"in_reply_to_status_id_str":"663727431497289729","in_reply_to_user_id":3439469566,"in_reply_to_user_id_str":"3439469566","in_reply_to_screen_name":"prdp","user":{"id":264718278,"id_str":"264718278","name":"Prem is back","screen_name":"abhayverma495","location":"india","url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":220,"listed_count":0,"favourites_count":18,"statuses_count":649,"created_at":"Sat Mar 12 10:26:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648848227450490880\/EbQTtOLN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648848227450490880\/EbQTtOLN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264718278\/1444666694","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[83,105]}],"urls":[],"user_mentions":[{"screen_name":"prdp","name":"Prem Ratan Dhan Payo","id":3439469566,"id_str":"3439469566","indices":[0,5]},{"screen_name":"BeingSalmanKhan","name":"Salman Khan","id":132385468,"id_str":"132385468","indices":[6,22]},{"screen_name":"sonamakapoor","name":"Sonam Kapoor","id":51376979,"id_str":"51376979","indices":[23,36]},{"screen_name":"ZeeTV","name":"Zee TV","id":791517902,"id_str":"791517902","indices":[37,43]},{"screen_name":"BeingN5855","name":"PRDP 12 Nov","id":2200135224,"id_str":"2200135224","indices":[44,55]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051657"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455477760,"id_str":"663727959455477760","text":"I get the question \"which is the best blender?\" all the time. Your blender is key to your Shakeology experience! https:\/\/t.co\/oSDoQTzqa5","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15092090,"id_str":"15092090","name":"Marissa Sweazy","screen_name":"marissasweazy","location":"Boston, MA","url":null,"description":"digital & social PR person, blogger, mom, I like a little bit of everything and in my free time - explore!","protected":false,"verified":false,"followers_count":1516,"friends_count":1406,"listed_count":101,"favourites_count":9,"statuses_count":3864,"created_at":"Thu Jun 12 02:33:11 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/53820639\/bg1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/53820639\/bg1.png","profile_background_tile":true,"profile_link_color":"722FED","profile_sidebar_border_color":"33C7A5","profile_sidebar_fill_color":"252429","profile_text_color":"2FC2EF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561225775060238336\/J7_2aZYR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561225775060238336\/J7_2aZYR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15092090\/1398297731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oSDoQTzqa5","expanded_url":"http:\/\/ow.ly\/Uq3Zr","display_url":"ow.ly\/Uq3Zr","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051660"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463694336,"id_str":"663727959463694336","text":"\u604b\u4eba\u306f\u8981\u3089\u306a\u3044\u3051\u3069\u3001\u30bb\u30c3\u30af\u30b9\u30d1\u30fc\u30c8\u30ca\u30fc\u306f\u6b32\u3057\u3044\u3063\u3066\u4eba\u3044\u307e\u305b\u3093\u304b\uff1f #\u4e0d\u502b\n\u2606\uff9f+.\u2606\uff9f+. e6u","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3523537212,"id_str":"3523537212","name":"\u7a32\u8449 \u77ac","screen_name":"inaba_shun_u5vj","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":206,"friends_count":1723,"listed_count":0,"favourites_count":0,"statuses_count":5797,"created_at":"Fri Sep 11 06:02:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4e0d\u502b","indices":[33,36]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959467909121,"id_str":"663727959467909121","text":"RT @sharmia_: \"Kalau hubungan dah hambar apa patut saya buat?\"\n\"Kalau kau matang , dont leave it but fix it\"\nDoa doa dan doa .. https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1949050212,"id_str":"1949050212","name":"N.A \u30c4","screen_name":"ohhhainnn","location":"Senawang \u25c1\u25b6 PD","url":"http:\/\/instagram.com\/ohhhainnn","description":null,"protected":false,"verified":false,"followers_count":411,"friends_count":233,"listed_count":1,"favourites_count":1025,"statuses_count":12789,"created_at":"Wed Oct 09 11:28:53 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8179F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448789127060656128\/djlmEBEF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448789127060656128\/djlmEBEF.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660193482225508352\/w9IGOx9X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660193482225508352\/w9IGOx9X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1949050212\/1434724893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:32:51 +0000 2015","id":663016267494719488,"id_str":"663016267494719488","text":"\"Kalau hubungan dah hambar apa patut saya buat?\"\n\"Kalau kau matang , dont leave it but fix it\"\nDoa doa dan doa .. https:\/\/t.co\/ERcDD0qvMw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427277539,"id_str":"427277539","name":"Syabab Jubah Putih","screen_name":"sharmia_","location":"Selangor, Malaysia","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200fUiTM Arau \/ UiTM Machang \n\u200f\u200f\u0644\u0622 \u0627\u0650\u0644\u064e\u0647\u064e \u0627\u0650\u0644\u0651\u0627 \u0627\u0644\u0644\u0651\u0647\u064f \u0645\u064f\u062d\u064e\u0645\u064e\u0651\u062f\u064c \u0631\u064e\u0633\u064f\u0648\u064f\u0644 \u0627\u0644\u0644\u0651\u0647\u0650","protected":false,"verified":false,"followers_count":9938,"friends_count":8802,"listed_count":6,"favourites_count":14386,"statuses_count":40938,"created_at":"Sat Dec 03 10:06:24 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452053769262338048\/opE92jgO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452053769262338048\/opE92jgO.jpeg","profile_background_tile":true,"profile_link_color":"F5A00E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639708497177767936\/h4E0Fkl5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639708497177767936\/h4E0Fkl5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427277539\/1400831614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1304,"favorite_count":529,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663016245692727296,"id_str":"663016245692727296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","url":"https:\/\/t.co\/ERcDD0qvMw","display_url":"pic.twitter.com\/ERcDD0qvMw","expanded_url":"http:\/\/twitter.com\/sharmia_\/status\/663016267494719488\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663016245692727296,"id_str":"663016245692727296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","url":"https:\/\/t.co\/ERcDD0qvMw","display_url":"pic.twitter.com\/ERcDD0qvMw","expanded_url":"http:\/\/twitter.com\/sharmia_\/status\/663016267494719488\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sharmia_","name":"Syabab Jubah Putih","id":427277539,"id_str":"427277539","indices":[3,12]}],"symbols":[],"media":[{"id":663016245692727296,"id_str":"663016245692727296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","url":"https:\/\/t.co\/ERcDD0qvMw","display_url":"pic.twitter.com\/ERcDD0qvMw","expanded_url":"http:\/\/twitter.com\/sharmia_\/status\/663016267494719488\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663016267494719488,"source_status_id_str":"663016267494719488","source_user_id":427277539,"source_user_id_str":"427277539"}]},"extended_entities":{"media":[{"id":663016245692727296,"id_str":"663016245692727296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOBwzzUAAAp9vi.jpg","url":"https:\/\/t.co\/ERcDD0qvMw","display_url":"pic.twitter.com\/ERcDD0qvMw","expanded_url":"http:\/\/twitter.com\/sharmia_\/status\/663016267494719488\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663016267494719488,"source_status_id_str":"663016267494719488","source_user_id":427277539,"source_user_id_str":"427277539"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480516608,"id_str":"663727959480516608","text":"\u307b\u3093\u3068\u306b\u305f\u307e\u305f\u307e\u5076\u7136\u305d\u3053\u3092\u901a\u308a\u304b\u304b\u3063\u305f(\u9b42\u3067\u60f9\u304b\u308c\u308b\u3082\u306e\u304c\u3042\u3063\u305f\u306e\u304b\u3082\u3057\u308c\u3093)\u6642\u3001\u5009\u5eab\u306e\u706f\u308a\u304c\u3064\u3044\u3066\u308b\u306e\u304c\u898b\u3048\u3066\u3001\u4e0d\u5be9\u306b\u601d\u3063\u3066\u884c\u3063\u3066\u307f\u305f\u3089\u30dc\u30ed\u30dc\u30ed\u306b\u306a\u3063\u3066\u308b\u4f3c\u975e\u3055\u3093\u304c\u653e\u7f6e\u3055\u308c\u3066\u3066\u3002\u7269\u51c4\u304f\u3073\u3063\u304f\u308a\u3057\u3064\u3064\u3082\u300c\u9811\u5f35\u308c\u3002\u6b7b\u306c\u3093\u3058\u3083\u306a\u3044\uff01\u300d\u3063\u3066\u52a9\u3051\u308b\u3002\u304d\u3063\u3068\u4f3c\u975e\u3055\u3093\u306f\u91cd\u3044\uff08\u30b3\u30e9\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726921360896001,"in_reply_to_status_id_str":"663726921360896001","in_reply_to_user_id":60287256,"in_reply_to_user_id_str":"60287256","in_reply_to_screen_name":"m2fslide","user":{"id":60287256,"id_str":"60287256","name":"\u66b4\u98a8\u8d64\u7d05\u30b9\u30ec\u30f3\u30c7\u30a3\u4e00\u767bV10\u30ed\u30fc\u30cb\u30f3","screen_name":"m2fslide","location":"\u30bb\u30f3\u30c8\u30e9\u30eb\u3068\u30b0\u30e9\u30f3\u30df\u30ea\u30aa\u30f3\u306e\u9593","url":"http:\/\/m2fslide.deviantart.com\/","description":"\u7d75\u63cf\u3044\u305f\u308a\u30b2\u30fc\u30e0\u3057\u305f\u308a\u3002\u30dd\u30b9\u30c8\u306e\u91cf\u304c\u6fc0\u3057\u3044\u5e38\u306b\u30c6\u30f3\u30b7\u30e7\u30f3\u8ff7\u5b50\u3002\u5275\u4f5c\/DOD\/\u30cb\u30fc\u30a2\/FF\/DMC4\/\u30a2\u30eb\u30c8\u30cd\/OFF\/\u7121\u53cc\/\u98a8\u65c5\/TRPG\u52d5\u753b\/\u5317\u6597\/\u307e\u308a\u30e1\u30e9\/\u30c7\u30c3\u30d7\u30fc\/\u30d1\u30b7\u30ea\u30e0\/\u30b9\u30ec\u30f3\u30c0\u30fc\u30de\u30f3\/Deemo\/\u30ce\u30fc\u30ac\u30f3\u30ba\u30e9\u30a4\u30d5\/\u30c1\u30e3\u30c3\u30d4\u30fc\/\u30de\u30c3\u30c9\u30de\u30c3\u30af\u30b9FR\uff01\u30a8\u30eb\u30f4\u30a3\u30b9\uff01\u30a8\u30eb\u30f4\u30a3\u30b9\uff01\u203b\u6700\u8fd1\u8150\u6ce8\u610f\u3002\u5fc3\u8eab\u5171\u306b\u8272\u3005\u3068\u30ea\u30da\u30a2\u4e2d\u3002","protected":false,"verified":false,"followers_count":745,"friends_count":1088,"listed_count":69,"favourites_count":3408,"statuses_count":231490,"created_at":"Sun Jul 26 11:32:25 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BDDAE6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631067710466621440\/3e4Y0T_j.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631067710466621440\/3e4Y0T_j.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CFCEF0","profile_text_color":"5726B3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661893561319735297\/yNuD-ymf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661893561319735297\/yNuD-ymf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60287256\/1424709805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480532994,"id_str":"663727959480532994","text":"@Izzah1802 tak cukup hm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727884977070080,"in_reply_to_status_id_str":"663727884977070080","in_reply_to_user_id":3145140482,"in_reply_to_user_id_str":"3145140482","in_reply_to_screen_name":"Izzah1802","user":{"id":77002303,"id_str":"77002303","name":"rakyat \/ fared","screen_name":"faridFared","location":"Kuantan x Melaka x MMU","url":null,"description":"kadang kadang kelakar","protected":false,"verified":false,"followers_count":878,"friends_count":537,"listed_count":3,"favourites_count":445,"statuses_count":95269,"created_at":"Thu Sep 24 18:04:34 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642541865\/zdf3716an44mqtb4sgep.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642541865\/zdf3716an44mqtb4sgep.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"291215","profile_text_color":"09F030","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621940065376186368\/AM9Krw1L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621940065376186368\/AM9Krw1L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77002303\/1433388979","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Izzah1802","name":"Izzah Ismuil","id":3145140482,"id_str":"3145140482","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480532993,"id_str":"663727959480532993","text":"RT @Iifepost: Me in November vs Me in December https:\/\/t.co\/LA1u7kUoS3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2278182392,"id_str":"2278182392","name":"Grace Zaferes","screen_name":"GraceZaferes","location":"Owasso, Ok","url":null,"description":null,"protected":false,"verified":false,"followers_count":227,"friends_count":242,"listed_count":0,"favourites_count":4004,"statuses_count":4645,"created_at":"Sun Jan 05 22:39:10 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653049717404774400\/dbiXQEOP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653049717404774400\/dbiXQEOP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2278182392\/1439938862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:28 +0000 2015","id":663714274590740480,"id_str":"663714274590740480","text":"Me in November vs Me in December https:\/\/t.co\/LA1u7kUoS3","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404916846,"id_str":"404916846","name":"Relatable","screen_name":"Iifepost","location":null,"url":"http:\/\/goo.gl\/1PKJtM","description":"Tweeting my thoughts and feelings. I hope to inspire each and every one of you! business ddvvcc2@gmail.com Kik: Life_Post - dm submissions","protected":false,"verified":false,"followers_count":1900569,"friends_count":322701,"listed_count":1665,"favourites_count":3897,"statuses_count":8341,"created_at":"Fri Nov 04 15:56:03 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404916846\/1437681456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":677,"favorite_count":920,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663535804468211712,"id_str":"663535804468211712","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"}]},"extended_entities":{"media":[{"id":663535804468211712,"id_str":"663535804468211712","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"},{"id":663535804459827200,"id_str":"663535804459827200","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHCUwAA44LW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHCUwAA44LW.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"large":{"w":574,"h":1000,"resize":"fit"},"medium":{"w":574,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":592,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iifepost","name":"Relatable","id":404916846,"id_str":"404916846","indices":[3,12]}],"symbols":[],"media":[{"id":663535804468211712,"id_str":"663535804468211712","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"}]},"extended_entities":{"media":[{"id":663535804468211712,"id_str":"663535804468211712","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHEUsAA5Hdl.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"},{"id":663535804459827200,"id_str":"663535804459827200","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVaTHCUwAA44LW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVaTHCUwAA44LW.jpg","url":"https:\/\/t.co\/LA1u7kUoS3","display_url":"pic.twitter.com\/LA1u7kUoS3","expanded_url":"http:\/\/twitter.com\/ACommonFemaIe\/status\/663535810931589121\/photo\/1","type":"photo","sizes":{"large":{"w":574,"h":1000,"resize":"fit"},"medium":{"w":574,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":592,"resize":"fit"}},"source_status_id":663535810931589121,"source_status_id_str":"663535810931589121","source_user_id":50944503,"source_user_id_str":"50944503"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051666"} +{"delete":{"status":{"id":663727506491621376,"id_str":"663727506491621376","user_id":117219727,"user_id_str":"117219727"},"timestamp_ms":"1447080051792"}} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959480512512,"id_str":"663727959480512512","text":"@k22ji \u305d\u3046\u3044\u3046\u6642\u304c\u3042\u3063\u305f\u3089\u69cb\u3063\u3066\u3082\u3089\u3048\u308b\u3068\u5b09\u3057\u3044\u3067\u3059(*\u00b4\u03c9`*)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727593196138497,"in_reply_to_status_id_str":"663727593196138497","in_reply_to_user_id":1039051459,"in_reply_to_user_id_str":"1039051459","in_reply_to_screen_name":"k22ji","user":{"id":3219410156,"id_str":"3219410156","name":"\u767d\u85cd","screen_name":"shiraai_tkrb","location":"\u5c71\u57ce\u56fd","url":null,"description":"\u5200\u5263\u4e71\u821e\u306e\u6cbc\u304c\u6df1\u304f\u3066\u629c\u3051\u51fa\u305b\u306a\u3044( \u02d8\u03c9\u02d8) \u6210\u4eba\u6e08\u307f\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u5bb9\u8d66\u9858\u3044\u307e\u3059\u3002\u305a\u3063\u3068ROM\u5c02\u3060\u3063\u305f\u3051\u3069\u6700\u8fd1\u306f\u5c11\u3057\u305a\u3064\u6587\u7ae0\u66f8\u3044\u3066\u308b\u3001\u304c\u3001\u5927\u4f53\u30cd\u30bf\u6295\u4e0b\u306b\u7559\u307e\u3063\u3066\u3044\u308b\u3002\u57fa\u672c\u7684\u306bBLGLNL\u5922\u306a\u3093\u3067\u3082\u304a\u3044\u3057\u304f\u3044\u305f\u3060\u304f\u96d1\u98df\u3067\u5730\u96f7\u304c\u306a\u3044\u30bf\u30a4\u30d7\u3002\u5200\u3055\u306b\u601d\u8003\u5bc4\u308a\u3002","protected":false,"verified":false,"followers_count":24,"friends_count":106,"listed_count":5,"favourites_count":3151,"statuses_count":2345,"created_at":"Mon May 18 13:22:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602026169936949250\/PtOs3seq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602026169936949250\/PtOs3seq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3219410156\/1432369216","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k22ji","name":"\u6851\u6298@\u66ab\u304f\u5145\u96fb","id":1039051459,"id_str":"1039051459","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051666"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959447089152,"id_str":"663727959447089152","text":"Advertise Your Website in Nigeria https:\/\/t.co\/Lf6ppgAySs","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1732989216,"id_str":"1732989216","name":"Hostvow Nigeria","screen_name":"hostvow","location":"Nigeria","url":"http:\/\/www.hostvow.com","description":"http:\/\/Hostvow.com is a Nigerian leading provider of Web hosting, reseller hosting, Wordpress hosting,VPS hosting, Cms and dedicated servers. BBM: 5914E366","protected":false,"verified":false,"followers_count":73565,"friends_count":80501,"listed_count":75,"favourites_count":22,"statuses_count":27230,"created_at":"Thu Sep 05 20:31:18 +0000 2013","utc_offset":14400,"time_zone":"Tbilisi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653312184852869120\/JkExEUF__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653312184852869120\/JkExEUF__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1732989216\/1427876502","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Lf6ppgAySs","expanded_url":"http:\/\/goo.gl\/VbmxKH","display_url":"goo.gl\/VbmxKH","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472078848,"id_str":"663727959472078848","text":"@mery_bis \u308f\u304c\u307e\u307e\u3067\u3054\u3081\u3093\u306a\u3055\u3044?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727761526165504,"in_reply_to_status_id_str":"663727761526165504","in_reply_to_user_id":2371229390,"in_reply_to_user_id_str":"2371229390","in_reply_to_screen_name":"mery_bis","user":{"id":3306810302,"id_str":"3306810302","name":"\u5b87\u4f50\u898b\u84ee\u5b50","screen_name":"MB_Renko","location":"\u8cb4\u65b9\u306e\u601d\u3046\u5834\u6240","url":null,"description":"Hello. \u79d8\u5c01\u5036\u697d\u90e8\u304c\u4e00\u4eba\u3001\u5b87\u4f50\u898b\u84ee\u5b50\u3088\u3002\u8272\u3005\u306a\u4e8b\u3092\u8003\u3048\u308b\u306e\u304c\u5927\u597d\u304d\u3002ID\u306b\u3064\u3044\u3066\u3044\u308bMB\u306f\u3001\u79c1\u304c\u5927\u597d\u304d\u306a\u30b2\u30fc\u30e0\u306e\u3053\u3068\u3088\u3002\u305d\u308c\u304c\u4f55\u304b\u306f\u3001\u79c1\u3068\u8a71\u305b\u3070\u308f\u304b\u308b\u308f\u3002","protected":false,"verified":false,"followers_count":27,"friends_count":28,"listed_count":1,"favourites_count":0,"statuses_count":1810,"created_at":"Wed Aug 05 09:56:38 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653362273734389760\/_PPQYJBE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653362273734389760\/_PPQYJBE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mery_bis","name":"Merry.","id":2371229390,"id_str":"2371229390","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959446913025,"id_str":"663727959446913025","text":"RT @higrashimzk: @hellsaizu \u540c\u58eb\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1890459386,"id_str":"1890459386","name":"turanari@\u526f\u90e8\u9580\u9577\u5148\u751fMrk-\u2161","screen_name":"hellsaizu","location":"\u3044\u3064\u3082\u3042\u306a\u305f\u306e\u5fc3\u306e\u4e2d\u306b","url":"http:\/\/i.bookmeter.com\/u\/445662","description":"\u552f\u4e00\u306e\u697d\u3057\u307f\u306f\u30e9\u30ce\u30d9\u3092\u8aad\u3093\u3067\u30cb\u30e4\u30cb\u30e4\u3059\u308b\u4e8b\u306e\u5909\u614b\u3002\u6700\u8fd1\u306f\u304a\u91d1\u3088\u308a\u3082\u6642\u9593\u304c\u6b32\u3057\u3044\u3002\u30aa\u30b9\u30b9\u30e1\u5c0f\u8aac\u306f\u7dcb\u5f3e\u306e\u30a2\u30ea\u30a2\u3001\u307e\u3088\u30c1\u30ad\u3002\u904a\u622f\u738b\u4f7f\u7528\u30c7\u30c3\u30ad\u306f\u708e\u661f\u3068X-\u30bb\u30a4\u30d0\u30fc\u3002\u3069\u3061\u3089\u304b\u3068\u8a00\u3048\u3070\u8ca7\u4e73\u304c\u597d\u304d\u3068\u3044\u3046\u304b\u8ca7\u4e73\u304c\u30b3\u30f3\u30d7\u30ec\u30c3\u30af\u30b9\u306e\u5973\u306e\u5b50\u304c\u597d\u304d\u3068\u3044\u3046\u304b\u80f8\u3088\u308a\u811a\u306e\u65b9\u304c\u597d\u304d","protected":false,"verified":false,"followers_count":12024,"friends_count":12148,"listed_count":47,"favourites_count":3305,"statuses_count":18738,"created_at":"Sat Sep 21 15:04:05 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662962191289618432\/_2GHVPDm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662962191289618432\/_2GHVPDm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1890459386\/1446531480","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727904207990784,"id_str":"663727904207990784","text":"@hellsaizu \u540c\u58eb\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727288412835841,"in_reply_to_status_id_str":"663727288412835841","in_reply_to_user_id":1890459386,"in_reply_to_user_id_str":"1890459386","in_reply_to_screen_name":"hellsaizu","user":{"id":2829441044,"id_str":"2829441044","name":"\u7d05\u693f@\u30ca\u30ca\u30b7\u30b9\u30a4\u30d91600\u4f4d\u53f0","screen_name":"higrashimzk","location":null,"url":null,"description":"\u30d7\u30ed\u30d5\u753b\u50cf \u3010@I_Love_2d_re\u3011\u9ad8\u6821\u751f \u4e8c\u6b21\u5143\u597d\u304d \u30fb\u9ebb\u96c0\u597d\u304d \u6226\u56fd\u4e59\u5973\u2192\u30bd\u30a6\u30ea\u30f3 \u30ce\u30d6\u30ca\u30ac\u63a8\u3057 \u30e9\u30ce\u30d9\u306f\u5897\u3048\u7d9a\u3051\u3064\u3044\u306b700\u518a\u8d8a\u3048\uff01\uff1f\uff08\u591a\u5206 \u4f11\u307f\u306e\u65e5\u306f\u57fa\u672c\u7684\u306b\u30b2\u30fc\u30bb\u30f3\u3067\u30d1\u30c1\u30f3\u30b3\u304b\u30b9\u30ed\u30c3\u30c8\u3057\u3066\u307e\u3059\u30fc \u30d3\u30fc\u30b9\u30c8 \u30e9\u30f3\u30af13\u306a\u3063\u305f\u3088\uff01\u795d\u3057\u3085\u308f\u30b9\u30d1\u8d64\u30d1\u30d5\u30a7\uff01\uff01","protected":false,"verified":false,"followers_count":503,"friends_count":504,"listed_count":9,"favourites_count":2796,"statuses_count":4148,"created_at":"Wed Sep 24 07:36:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641604829047984129\/o-xwgmKy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641604829047984129\/o-xwgmKy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829441044\/1445056628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hellsaizu","name":"turanari@\u526f\u90e8\u9580\u9577\u5148\u751fMrk-\u2161","id":1890459386,"id_str":"1890459386","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"higrashimzk","name":"\u7d05\u693f@\u30ca\u30ca\u30b7\u30b9\u30a4\u30d91600\u4f4d\u53f0","id":2829441044,"id_str":"2829441044","indices":[3,15]},{"screen_name":"hellsaizu","name":"turanari@\u526f\u90e8\u9580\u9577\u5148\u751fMrk-\u2161","id":1890459386,"id_str":"1890459386","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959446974464,"id_str":"663727959446974464","text":"RT @whzizi28: \uc73c\uc544 \uc9dc\uc99d\ub098 \uadf8\ub0e5 \uc0c1\uc870\ub77c \uc6b0\ub85c\ube60\ub4e4 #2015MAMA \uc194\uc9c1\ud788 #\uc778\ud53c\ub2c8\ud2b8 \uac00 \uc9f1 \uc544\ub2d8 #BAD \ub3c4 \uc878\ub77c \uc9f1\uc774\uc57c \uc6b0\ub9ac \uc0c1 \uc880 \uadf8\ub0e5 \uc870\ub77c \uc2dc\ud30c \ud574\uc2dc\ud0dc\uadf8 \uac1c\uc9dc\uc99d\ub0a8\uc73c\uc73c\uc73c\uc73c\ub77c\uc544 @MnetMAMA \uc544\uc544\ub8e8\uc544\uc6b0\uc5b4\uc544\uc544\uc5b4\uc57c\uc5b4\uc6b0\uc6b0\ud22c\ud22c\ub7ec\uc544\ud6c4\ub8e8\uc544\uc544\uc5b4 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":847207130,"id_str":"847207130","name":"[\ub9c8\ub9c8\ud22c\ud45c\ud558\uc790]\ub9e4\ub825\ubb34\ud55c\ub300","screen_name":"0070mary","location":"INFINITE ","url":"http:\/\/m.blog.naver.com\/PostList.nhn?blogId=0070mary","description":"\ubc30\uc0ac '\uc5f0\uc544' \u2661 (((((\uc778\ud53c\ub2c8\ud2b8)))))","protected":false,"verified":false,"followers_count":263,"friends_count":422,"listed_count":1,"favourites_count":230,"statuses_count":6342,"created_at":"Wed Sep 26 11:12:16 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662523746519904256\/omEhAsNJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662523746519904256\/omEhAsNJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847207130\/1444395202","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727546345762817,"id_str":"663727546345762817","text":"\uc73c\uc544 \uc9dc\uc99d\ub098 \uadf8\ub0e5 \uc0c1\uc870\ub77c \uc6b0\ub85c\ube60\ub4e4 #2015MAMA \uc194\uc9c1\ud788 #\uc778\ud53c\ub2c8\ud2b8 \uac00 \uc9f1 \uc544\ub2d8 #BAD \ub3c4 \uc878\ub77c \uc9f1\uc774\uc57c \uc6b0\ub9ac \uc0c1 \uc880 \uadf8\ub0e5 \uc870\ub77c \uc2dc\ud30c \ud574\uc2dc\ud0dc\uadf8 \uac1c\uc9dc\uc99d\ub0a8\uc73c\uc73c\uc73c\uc73c\ub77c\uc544 @MnetMAMA \uc544\uc544\ub8e8\uc544\uc6b0\uc5b4\uc544\uc544\uc5b4\uc57c\uc5b4\uc6b0\uc6b0\ud22c\ud22c\ub7ec\uc544\ud6c4\ub8e8\uc544\uc544\uc5b4 \uc774\uac70 \uc2ed\uc54c\ud2f0\uc774\uc0c1\uc774\ub798\uc54c\ud2f0\ud574\uc870\ub77c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3030173859,"id_str":"3030173859","name":"\u270c","screen_name":"whzizi28","location":null,"url":null,"description":"\ubbff\uace0 \uac00\uc790 \ub298 \uacc1\uc5d0 \uc788\uc744\uac8c @wowwh","protected":false,"verified":false,"followers_count":84,"friends_count":147,"listed_count":1,"favourites_count":139,"statuses_count":9698,"created_at":"Wed Feb 11 12:33:23 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662907925543784448\/YGEFWuQl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662907925543784448\/YGEFWuQl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3030173859\/1446993134","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[19,28]},{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[33,38]},{"text":"BAD","indices":[46,50]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[92,101]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[33,42]},{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[47,52]},{"text":"BAD","indices":[60,64]}],"urls":[],"user_mentions":[{"screen_name":"whzizi28","name":"\u270c","id":3030173859,"id_str":"3030173859","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[106,115]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463870465,"id_str":"663727959463870465","text":"La start-up Mobypark s\u2019associe au g\u00e9ant de la location Europcar\nhttps:\/\/t.co\/U1gTio0ZI2 https:\/\/t.co\/o41SiIa5TM @Dupratxavier1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302752974,"id_str":"2302752974","name":"AlexDuprat","screen_name":"XDuprat","location":"Ile de France","url":null,"description":"Bien + que les bruits de bottes, je crains le silence des pantoufles... Environnement - num\u00e9rique - d\u00e9mocratie - politiques publiques","protected":false,"verified":false,"followers_count":85,"friends_count":132,"listed_count":21,"favourites_count":7,"statuses_count":2041,"created_at":"Tue Jan 21 08:46:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570130555883094016\/hyJKBHTB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570130555883094016\/hyJKBHTB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302752974\/1399582714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U1gTio0ZI2","expanded_url":"http:\/\/business.lesechos.fr\/entrepreneurs\/success-stories\/la-start-up-mobypark-s-associe-au-geant-de-la-location-europcar-204439.php?5g8Y4grpqvEEcZw4.99","display_url":"business.lesechos.fr\/entrepreneurs\/\u2026","indices":[64,87]},{"url":"https:\/\/t.co\/o41SiIa5TM","expanded_url":"http:\/\/business.lesechos.fr\/entrepreneurs\/success-stories\/la-start-up-mobypark-s-associe-au-geant-de-la-location-europcar-204439.php","display_url":"business.lesechos.fr\/entrepreneurs\/\u2026","indices":[88,111]}],"user_mentions":[{"screen_name":"Dupratxavier1","name":"Duprat","id":4156083794,"id_str":"4156083794","indices":[112,126]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959468089344,"id_str":"663727959468089344","text":"#NowPlaying https:\/\/t.co\/usXsTRrffb","source":"\u003ca href=\"http:\/\/spotify.com\" rel=\"nofollow\"\u003eSpotify\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":10164512,"id_str":"10164512","name":"lboisset","screen_name":"lboisset","location":"Madrid, Spain","url":"http:\/\/www.lboisset.com","description":"Programador y Jefe de Proyecto. Adicto de la inform\u00e1tica.","protected":false,"verified":false,"followers_count":479,"friends_count":967,"listed_count":37,"favourites_count":70,"statuses_count":5389,"created_at":"Sun Nov 11 22:50:59 +0000 2007","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472659354119053312\/SOF0odzP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472659354119053312\/SOF0odzP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10164512\/1348003049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NowPlaying","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/usXsTRrffb","expanded_url":"http:\/\/spoti.fi\/11djqoS","display_url":"spoti.fi\/11djqoS","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476469761,"id_str":"663727959476469761","text":"@vigneshraaj Sorry! There is a delay in the shipment of certain order volumes across all Nexus 6P variants. Requesting your patience.","source":"\u003ca href=\"http:\/\/www.flipkart.com\" rel=\"nofollow\"\u003eSocialCS Flipkart\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663710244665733121,"in_reply_to_status_id_str":"663710244665733121","in_reply_to_user_id":214033286,"in_reply_to_user_id_str":"214033286","in_reply_to_screen_name":"vigneshraaj","user":{"id":951522626,"id_str":"951522626","name":"flipkartsupport","screen_name":"flipkartsupport","location":"India","url":"http:\/\/www.flipkart.com","description":"Social media support for Flipkart","protected":false,"verified":false,"followers_count":27938,"friends_count":8168,"listed_count":65,"favourites_count":20,"statuses_count":172018,"created_at":"Fri Nov 16 11:42:16 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603849359210356736\/CAbS59et_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603849359210356736\/CAbS59et_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951522626\/1432704499","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vigneshraaj","name":"Vignesh","id":214033286,"id_str":"214033286","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959459495936,"id_str":"663727959459495936","text":"RT @RaGoharShahi: 'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2579028981,"id_str":"2579028981","name":"Sajid Ali","screen_name":"SajidAl64255546","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":12,"listed_count":24,"favourites_count":86,"statuses_count":22378,"created_at":"Tue Jun 03 01:17:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618079988932177920\/F2i8T_LA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618079988932177920\/F2i8T_LA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 22:38:23 +0000 2015","id":660949031162654721,"id_str":"660949031162654721","text":"'I love those who love human beings.' - Lord Ra Riaz #GoharShahi https:\/\/t.co\/kADLLJP2dv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":5,"entities":{"hashtags":[{"text":"GoharShahi","indices":[53,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GoharShahi","indices":[71,82]}],"urls":[],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[],"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"extended_entities":{"media":[{"id":660949019766759424,"id_str":"660949019766759424","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSwpobHXIAAkzuX.jpg","url":"https:\/\/t.co\/kADLLJP2dv","display_url":"pic.twitter.com\/kADLLJP2dv","expanded_url":"http:\/\/twitter.com\/RaGoharShahi\/status\/660949031162654721\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":660949031162654721,"source_status_id_str":"660949031162654721","source_user_id":615689096,"source_user_id_str":"615689096"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051661"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463755776,"id_str":"663727959463755776","text":"@Knightsp525 @Riri_P_IMCG \n\u5f85\u3063\u3066\u5f85\u3063\u3066\u7b11\n\u3082\u3046\u76ee\u304c\u30a4\u304b\u308c\u3066\u3066\u3042\u308b\u3088\u3046\u306b\u3057\u304b\u898b\u3048\u306a\u3044\u304b\u3089\u3055(*_*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726526056108032,"in_reply_to_status_id_str":"663726526056108032","in_reply_to_user_id":3998125526,"in_reply_to_user_id_str":"3998125526","in_reply_to_screen_name":"Knightsp525","user":{"id":3140369623,"id_str":"3140369623","name":"ISKA\u3060\u3051\u3069\u3002@\u51db\u6708\u304f\u3093\u3044\u3051\u307e\u305b\u3093","screen_name":"iska_4752","location":"\u5922\u30ce\u54b2\u5b66\u9662\uff0a\u5922\u738b\u56fd","url":null,"description":"\u4e59\u5973\u30b2\u30fc\/\u2661\u5922100\u2661\/\u2661\u3042\u3093\u30b9\u30bfKnights\u7bb1\u63a8\u3057\u2661\u702c\u540d\u6cc9\u2661\u306a\u3093\u3067\u3082\u3044\u3051\u307e\u3059\uff01NL\u3059\u304d\/\u4ed6\u306b\u3082\u305f\u304f\u3055\u3093\u2192\u2661 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059m(._.)m \u6065\u305a\u304b\u3057\u304c\u308a\u5c4b\u3067\u3059(_) \u305d\u308d\u305d\u308d\u57a2\u5206\u3051\u3057\u3088\u3046\u304b\u306a\u2026 Love dies only when growth stops. Pearl S. Buck","protected":false,"verified":false,"followers_count":20,"friends_count":112,"listed_count":1,"favourites_count":266,"statuses_count":379,"created_at":"Sun Apr 05 13:49:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662178726856097792\/KyeV8Nr4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662178726856097792\/KyeV8Nr4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3140369623\/1446384842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Knightsp525","name":"\u716e\u8fbc\u307f\u7cfb\u7537\u5b50\u30c4\u30ca\u6cc9\u30a2\u30a4\u30e9","id":3998125526,"id_str":"3998125526","indices":[0,12]},{"screen_name":"Riri_P_IMCG","name":"Riri*","id":3639443353,"id_str":"3639443353","indices":[13,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472254976,"id_str":"663727959472254976","text":"https:\/\/t.co\/WYLIF8VEb2 \u041c\u0438\u043d\u044d\u043d\u0435\u0440\u0433\u0435\u0442\u0438\u043a\u0438 \u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0430 \u0438 \u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0438 \u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043b\u0438 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u0443\u044e \u0434\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044e","source":"\u003ca href=\"http:\/\/vadzim.net\/\" rel=\"nofollow\"\u003emytwitterapp78\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786895524,"id_str":"2786895524","name":"\u041a\u0430\u0440\u043e\u043b\u0438\u043d\u0430","screen_name":"3Milvds1PmKv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":21,"created_at":"Tue Sep 02 23:10:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570338624287461376\/OFCX-9GN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570338624287461376\/OFCX-9GN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786895524\/1424814300","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WYLIF8VEb2","expanded_url":"http:\/\/tinyurl.com\/oj67yo8","display_url":"tinyurl.com\/oj67yo8","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959446978564,"id_str":"663727959446978564","text":"@w_crew3 \u30d7\u30ec\u30d1\u884c\u3051\u305d\u3046\u306a\u306e\u3049\uff1f.\uff61\u826f\u304b\u3063\u305f\u3084\u3041\u301c\u3093\u0669\u030b(\u0e51\u02c3\u0301\ua1f4\u02c2\u0300\u0e51)\u266c\u2027*\u02da\u2727\u656c\u591a\u3092\u62dd\u3093\u3067\u304d\u3066\u30fc\u3063\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726619970830337,"in_reply_to_status_id_str":"663726619970830337","in_reply_to_user_id":3000201402,"in_reply_to_user_id_str":"3000201402","in_reply_to_screen_name":"w_crew3","user":{"id":3152220644,"id_str":"3152220644","name":"\u3061\u3083\u304d\u3061\u3083\u304d","screen_name":"LvLead","location":null,"url":null,"description":"2015.4.26.leaders\u52a0\u5165\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044m(_ _)m \u5927\u962a \u307f\u305d\u3058 \u30b1\u30a4\u30bf\u30fc\u30ba\u2661","protected":false,"verified":false,"followers_count":121,"friends_count":137,"listed_count":0,"favourites_count":2,"statuses_count":1057,"created_at":"Mon Apr 13 04:01:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659638374043545600\/_u6kcnTk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659638374043545600\/_u6kcnTk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3152220644\/1428898273","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"w_crew3","name":"aki.","id":3000201402,"id_str":"3000201402","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051658"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959468064769,"id_str":"663727959468064769","text":"\ud83d\udcf7 npr: It\u2019s getting harder to see the stars in North Dakota\u2019s Theodore Roosevelt National Park, and it\u2019s... https:\/\/t.co\/ugKLzeac9h","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325109421,"id_str":"325109421","name":"John","screen_name":"Jacknasius","location":"Denver, CO","url":"http:\/\/ssspacejanitor.tumblr.com","description":"The once and future. Jacknasius Thadeus Wallingsbeard, first of his name. Aspiring space janitor.","protected":false,"verified":false,"followers_count":75,"friends_count":366,"listed_count":1,"favourites_count":11,"statuses_count":9096,"created_at":"Mon Jun 27 19:09:19 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649745473847209984\/qfa-zD58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649745473847209984\/qfa-zD58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325109421\/1391159197","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ugKLzeac9h","expanded_url":"http:\/\/tmblr.co\/ZVo7zt1xlk2aA","display_url":"tmblr.co\/ZVo7zt1xlk2aA","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455305728,"id_str":"663727959455305728","text":"\u30ad\u30b9\u30de\u30a4\u7389\u68ee\u4e3b\u6f14\u30c9\u30e9\u30de\u306e\u9670\u306b\u6e26\u5dfb\u304f\u30b8\u30e3\u30cb\u30fc\u30ba\u4e8b\u60c5\uff01\uff1f\uff29\u5973\u53f2\u30b8\u30e3\u30cb\u30fc\u30ba\u9000\u793e\u304b\uff1f https:\/\/t.co\/Hrp6p9INRo","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3346054752,"id_str":"3346054752","name":"\u25bd\u25b2\u30ad\u30b9\u30de\u30a4\u25bd\u25b2","screen_name":"wi296KISMYsp","location":null,"url":null,"description":"\u30ad\u30b9\u30de\u30a4\u304c\u5927\u30b7\u30e5\u30ad(*^\u03c9^*) \u597d\u5947\u5fc3\u306e\u8d74\u304f\u307e\u307e\u306b\u30de\u30a4\u30da\u30fc\u30b9\u3067\u751f\u304d\u3066\u307e\u3059^^ \u76ee\u6a19\u306f\u3001\u5fc3\u304c\u304a\u304a\u304d\u3044\u4eba\u9593\u306b\u306a\u308b\u3053\u3068\uff01 \u53cb\u9054\u52df\u96c6\u4e2d\u306a\u306e\u3067\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044(\u2267\u2207\u2266*)","protected":false,"verified":false,"followers_count":107,"friends_count":177,"listed_count":0,"favourites_count":0,"statuses_count":3178,"created_at":"Wed Aug 26 07:39:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640076841961701376\/-TpeBw22_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640076841961701376\/-TpeBw22_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3346054752\/1441441195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Hrp6p9INRo","expanded_url":"http:\/\/jonny002entamez.seesaa.net","display_url":"jonny002entamez.seesaa.net","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051660"} +{"delete":{"status":{"id":645029278267019264,"id_str":"645029278267019264","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080051867"}} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959455338496,"id_str":"663727959455338496","text":"@teptepp_ yay!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708608744435712,"in_reply_to_status_id_str":"663708608744435712","in_reply_to_user_id":913739502,"in_reply_to_user_id_str":"913739502","in_reply_to_screen_name":"teptepp_","user":{"id":2328697040,"id_str":"2328697040","name":"SMART DOLL by DANNY","screen_name":"MiraiRobotics","location":"Tokyo","url":"http:\/\/www.smartdoll.jp","description":"Smart Doll designed by Danny Choo.\nMade in Japan. \u307f\u3089\u3044\u3061\u3083\u3093\u767a\u58f2\u4e2d\uff01","protected":false,"verified":false,"followers_count":8726,"friends_count":63,"listed_count":196,"favourites_count":472,"statuses_count":4837,"created_at":"Wed Feb 05 12:16:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182574211\/TeYS8djZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182574211\/TeYS8djZ.jpeg","profile_background_tile":false,"profile_link_color":"F06318","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662233344696975360\/oOvDeGUd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662233344696975360\/oOvDeGUd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328697040\/1446723628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teptepp_","name":"steffi","id":913739502,"id_str":"913739502","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080051660"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959467884544,"id_str":"663727959467884544","text":"\u30d0\u30a4\u30c8\u5148\u8f29\u65b9\u30e1\u30f3\u30d0\u30fc\u3067\u5973\u5b50\u4f1a\uff01\u672c\u5f53\u306b\u5927\u597d\u304d\u3059\u304e\u308b\ud83d\udc95\u96a3\u306e\u5e2d\u306e\u30b0\u30eb\u30fc\u30d7\u3068\u306e\u30d6\u30e9\u30a4\u30c0\u30eb\u306e\u306f\u306a\u3057\u306f\u8272\u3005\u5947\u8de1\uff08\u7b11\uff09\u307e\u305f\u884c\u304d\u307e\u3057\u3087\u301c\ud83d\udc4f https:\/\/t.co\/JAIpwoPF7G","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1404996662,"id_str":"1404996662","name":"\u307f\u304d","screen_name":"mi0325ki","location":null,"url":null,"description":"\u6587\u6559\u56fd\u969b\u89b3\u5149 Australia \u2708 World journey \n\u30bf\u30d3\u30a4\u30af2016\u6625\u53c2\u52a0\u4e88\u5b9a\uff01","protected":false,"verified":false,"followers_count":472,"friends_count":406,"listed_count":1,"favourites_count":1520,"statuses_count":3814,"created_at":"Sun May 05 12:51:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641980824296951808\/9bB1uVn4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641980824296951808\/9bB1uVn4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1404996662\/1444565685","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727937607208960,"id_str":"663727937607208960","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCuyUkAA9Y7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCuyUkAA9Y7v.jpg","url":"https:\/\/t.co\/JAIpwoPF7G","display_url":"pic.twitter.com\/JAIpwoPF7G","expanded_url":"http:\/\/twitter.com\/mi0325ki\/status\/663727959467884544\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727937607208960,"id_str":"663727937607208960","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCuyUkAA9Y7v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCuyUkAA9Y7v.jpg","url":"https:\/\/t.co\/JAIpwoPF7G","display_url":"pic.twitter.com\/JAIpwoPF7G","expanded_url":"http:\/\/twitter.com\/mi0325ki\/status\/663727959467884544\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051663"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463759872,"id_str":"663727959463759872","text":"Would it be too late to say that I still want to get to know you? :) I want to pick up from where we left.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136255336,"id_str":"136255336","name":"el\u00e9na","screen_name":"eileenaah","location":"\u2600\ufe0f","url":null,"description":"my phase of liking anime is growing again","protected":false,"verified":false,"followers_count":414,"friends_count":193,"listed_count":17,"favourites_count":6584,"statuses_count":25198,"created_at":"Fri Apr 23 12:29:14 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000159697162\/8tbbo7Py.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000159697162\/8tbbo7Py.jpeg","profile_background_tile":true,"profile_link_color":"F28896","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"F57878","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654714426772197376\/d_lgfJtw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654714426772197376\/d_lgfJtw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136255336\/1445328680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959463739392,"id_str":"663727959463739392","text":"\u3044\u3084\u301c\u4e45\u3005\u3060\u306a\u301c https:\/\/t.co\/jKXsL1M6Lx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586772526,"id_str":"2586772526","name":"\u3068\u3063\u3064\u3041\u3093@\u793e\u4f1a\u4eba\u30c1\u30e7\u30edQ\u57a2","screen_name":"hayatechoroQ","location":"\u30c1\u30e7\u30edQ\u30bf\u30a6\u30f3\u6771\u533a\u306e\u3068\u3042\u308b\u5c02\u9580\u5e97","url":null,"description":"\u30c1\u30e7\u30edQ\u3092\u96c6\u3081\u30662\u301c3\u5e74\u3001\u4eca\u3084\u53f0\u6570\u306f500\u3092\u8d85\u3048\u308b\u307b\u3069\u6240\u6301\u3057\u3066\u3044\u308b\u30c1\u30e7\u30ed\u72c2\u3067\u3054\u3056\u3044\u307e\u3059 \u6700\u8fd1\u306f80\u5e74\u4ee3\u306eA\u54c1\u756a\u3084\u3089\u4f55\u3084\u3089\u3088\u304f\u7d0d\u8eca\u3057\u307e\u3059\u3088\u301c \u65b0\u8eca\u3082\u3061\u3087\u304f\u3061\u3087\u304f\u624b\u3092\u3064\u3051\u3066\u307e\u3059 19\u3067\u3059\u304c\u4e2d\u8eab\u306f\u30aa\u30c3\u30b5\u30f3\u3067\u3059(\u7b11)\u30b3\u30f3\u30d1\u30af\u30c8\u30ed\u30fc\u30c9\u30d0\u30a4\u30af\u59cb\u3081\u307e\u3057\u305f\uff01\u662f\u975e\u662f\u975e\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3067\u3059(^_^)v","protected":false,"verified":false,"followers_count":77,"friends_count":89,"listed_count":3,"favourites_count":71,"statuses_count":463,"created_at":"Wed Jun 25 03:25:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637634123398385664\/EIpO6m4M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637634123398385664\/EIpO6m4M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586772526\/1440858393","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727948332077057,"id_str":"663727948332077057","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDWvVEAEZd0K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDWvVEAEZd0K.jpg","url":"https:\/\/t.co\/jKXsL1M6Lx","display_url":"pic.twitter.com\/jKXsL1M6Lx","expanded_url":"http:\/\/twitter.com\/hayatechoroQ\/status\/663727959463739392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727948332077057,"id_str":"663727948332077057","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDWvVEAEZd0K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDWvVEAEZd0K.jpg","url":"https:\/\/t.co\/jKXsL1M6Lx","display_url":"pic.twitter.com\/jKXsL1M6Lx","expanded_url":"http:\/\/twitter.com\/hayatechoroQ\/status\/663727959463739392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080051662"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476334594,"id_str":"663727959476334594","text":"#YoElegiCorrer porque ya quiero dejar de ser la t\u00eda gorda quedada de la familia y repartir putazos!!! https:\/\/t.co\/LwoQdlkEsS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231902485,"id_str":"231902485","name":"El Tristillo","screen_name":"TristilloHouse","location":null,"url":null,"description":"14 de febrero del 89, 56581111 para cualquier duda o sugerencia.","protected":false,"verified":false,"followers_count":623,"friends_count":888,"listed_count":0,"favourites_count":4107,"statuses_count":8725,"created_at":"Wed Dec 29 19:45:25 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0C0E0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539433643886669827\/Qt2qNs4X.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539433643886669827\/Qt2qNs4X.jpeg","profile_background_tile":true,"profile_link_color":"AF1DC2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"16191A","profile_text_color":"1CDB2C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577506528191614976\/ktl7vliY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577506528191614976\/ktl7vliY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231902485\/1405315628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoElegiCorrer","indices":[0,14]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727878031347712,"id_str":"663727878031347712","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_Q2VEAAzWiB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_Q2VEAAzWiB.jpg","url":"https:\/\/t.co\/LwoQdlkEsS","display_url":"pic.twitter.com\/LwoQdlkEsS","expanded_url":"http:\/\/twitter.com\/TristilloHouse\/status\/663727959476334594\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727878031347712,"id_str":"663727878031347712","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_Q2VEAAzWiB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_Q2VEAAzWiB.jpg","url":"https:\/\/t.co\/LwoQdlkEsS","display_url":"pic.twitter.com\/LwoQdlkEsS","expanded_url":"http:\/\/twitter.com\/TristilloHouse\/status\/663727959476334594\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080051665"} +{"delete":{"status":{"id":397645919048310784,"id_str":"397645919048310784","user_id":126808751,"user_id_str":"126808751"},"timestamp_ms":"1447080051969"}} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959476477952,"id_str":"663727959476477952","text":"https:\/\/t.co\/FVlvnb7J4g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300083197,"id_str":"2300083197","name":"Murat Oru\u00e7","screen_name":"muratoruc35","location":null,"url":null,"description":"beni takip edin \u00e7\u0131k\u0131\u015f\u0131 biliyorum","protected":false,"verified":false,"followers_count":543,"friends_count":342,"listed_count":0,"favourites_count":15,"statuses_count":8448,"created_at":"Thu Jan 23 21:35:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522764067870892032\/oN2WADna_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522764067870892032\/oN2WADna_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300083197\/1398277050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727959325454336,"id_str":"663727959325454336","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD_sWsAAPPpt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD_sWsAAPPpt.jpg","url":"https:\/\/t.co\/FVlvnb7J4g","display_url":"pic.twitter.com\/FVlvnb7J4g","expanded_url":"http:\/\/twitter.com\/muratoruc35\/status\/663727959476477952\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727959325454336,"id_str":"663727959325454336","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD_sWsAAPPpt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD_sWsAAPPpt.jpg","url":"https:\/\/t.co\/FVlvnb7J4g","display_url":"pic.twitter.com\/FVlvnb7J4g","expanded_url":"http:\/\/twitter.com\/muratoruc35\/status\/663727959476477952\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080051665"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959472128000,"id_str":"663727959472128000","text":"RT @IGNITEMEMGC: *forgets how to breathe and dies* https:\/\/t.co\/RhtGDmMGih","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":777988867,"id_str":"777988867","name":"Staceys (Mum)","screen_name":"DropDead694","location":"New Zealand","url":null,"description":"Forever poor, Forever Friendless \u270c\ufe0f","protected":false,"verified":false,"followers_count":1155,"friends_count":689,"listed_count":4,"favourites_count":35697,"statuses_count":33833,"created_at":"Fri Aug 24 11:34:01 +0000 2012","utc_offset":46800,"time_zone":"Fiji","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1860F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000062844373\/c6e45c2ec69e2ef00ccf31942777cddb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000062844373\/c6e45c2ec69e2ef00ccf31942777cddb.jpeg","profile_background_tile":true,"profile_link_color":"4F0099","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663338634657923072\/XWDVIyCI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663338634657923072\/XWDVIyCI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/777988867\/1445554887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727666793680896,"id_str":"663727666793680896","text":"*forgets how to breathe and dies* https:\/\/t.co\/RhtGDmMGih","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317461148,"id_str":"317461148","name":"michael clifford","screen_name":"IGNITEMEMGC","location":"22.08.2015","url":"https:\/\/itun.es\/us\/jqfz9","description":"no tongue with butt","protected":false,"verified":false,"followers_count":29630,"friends_count":16105,"listed_count":42,"favourites_count":31669,"statuses_count":18938,"created_at":"Tue Jun 14 23:53:52 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662987377862959104\/dhzsGgab_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662987377862959104\/dhzsGgab_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317461148\/1446903480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727614784380929,"id_str":"663727614784380929","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","url":"https:\/\/t.co\/RhtGDmMGih","display_url":"pic.twitter.com\/RhtGDmMGih","expanded_url":"http:\/\/twitter.com\/IGNITEMEMGC\/status\/663727666793680896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727614784380929,"id_str":"663727614784380929","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","url":"https:\/\/t.co\/RhtGDmMGih","display_url":"pic.twitter.com\/RhtGDmMGih","expanded_url":"http:\/\/twitter.com\/IGNITEMEMGC\/status\/663727666793680896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IGNITEMEMGC","name":"michael clifford","id":317461148,"id_str":"317461148","indices":[3,15]}],"symbols":[],"media":[{"id":663727614784380929,"id_str":"663727614784380929","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","url":"https:\/\/t.co\/RhtGDmMGih","display_url":"pic.twitter.com\/RhtGDmMGih","expanded_url":"http:\/\/twitter.com\/IGNITEMEMGC\/status\/663727666793680896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727666793680896,"source_status_id_str":"663727666793680896","source_user_id":317461148,"source_user_id_str":"317461148"}]},"extended_entities":{"media":[{"id":663727614784380929,"id_str":"663727614784380929","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv8LXIAE8Hlk.jpg","url":"https:\/\/t.co\/RhtGDmMGih","display_url":"pic.twitter.com\/RhtGDmMGih","expanded_url":"http:\/\/twitter.com\/IGNITEMEMGC\/status\/663727666793680896\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727666793680896,"source_status_id_str":"663727666793680896","source_user_id":317461148,"source_user_id_str":"317461148"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051664"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959451246592,"id_str":"663727959451246592","text":"Looking for a #Land #Surveyor - UK Wide Opportunities #jobs https:\/\/t.co\/JlNxHcRzAB https:\/\/t.co\/10RYd10Uv5","source":"\u003ca href=\"http:\/\/neuvoo.ca\" rel=\"nofollow\"\u003eseed.mytweetsys.app.t00\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280638271,"id_str":"3280638271","name":"Jobs Farnborough","screen_name":"NeuvooFarnboro","location":"Farnborough, Hampshire","url":"http:\/\/neuvoo.co.uk\/jobs\/?k=&l=Farnborough%2C+Hampshire&r=15","description":"Looking for a job in Farnborough? Check out our website http:\/\/neuvoo.co.uk\/jobs\/?k=&l=Farnborough%2C+Hampshire&r=15","protected":false,"verified":false,"followers_count":400,"friends_count":2005,"listed_count":159,"favourites_count":0,"statuses_count":8476,"created_at":"Wed Jul 15 12:13:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621292023958642688\/EE5X6r3q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621292023958642688\/EE5X6r3q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280638271\/1436962537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Land","indices":[14,19]},{"text":"Surveyor","indices":[20,29]},{"text":"jobs","indices":[54,59]}],"urls":[{"url":"https:\/\/t.co\/JlNxHcRzAB","expanded_url":"http:\/\/neuvoo.co.uk\/job.php?id=6r9yicrjzw&source=twitter&lang=EN&client_id=1567&l=Woking%2C+England%2C+GB&k=Land+Surveyor+-+UK+Wide+Opportunities","display_url":"neuvoo.co.uk\/job.php?id=6r9\u2026","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663727958251712512,"id_str":"663727958251712512","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD7sWsAA9_bY.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD7sWsAA9_bY.png","url":"https:\/\/t.co\/10RYd10Uv5","display_url":"pic.twitter.com\/10RYd10Uv5","expanded_url":"http:\/\/twitter.com\/NeuvooFarnboro\/status\/663727959451246592\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":232,"resize":"fit"},"small":{"w":340,"h":140,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727958251712512,"id_str":"663727958251712512","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD7sWsAA9_bY.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD7sWsAA9_bY.png","url":"https:\/\/t.co\/10RYd10Uv5","display_url":"pic.twitter.com\/10RYd10Uv5","expanded_url":"http:\/\/twitter.com\/NeuvooFarnboro\/status\/663727959451246592\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":232,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":232,"resize":"fit"},"small":{"w":340,"h":140,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080051659"} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442915328,"id_str":"663727959442915328","text":"El postre y el primero del d\u00eda. Que gran placer. #BuenosHumos cogollitos\ud83d\ude0a https:\/\/t.co\/7cxMFShqay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369444113,"id_str":"369444113","name":"Natural Mystic.","screen_name":"PaulaBoogie","location":"Valencia ","url":null,"description":"22. Welcome to HOLLYWEED. \u2665 Actuar, viajar, reggae. Ganjah smoker. Actriz en construcci\u00f3n. Libertad para el cannabis #SiNoTocaNoHayVoto","protected":false,"verified":false,"followers_count":753,"friends_count":753,"listed_count":10,"favourites_count":6523,"statuses_count":10665,"created_at":"Wed Sep 07 11:10:34 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"070808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181576310\/ykg4Izg5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181576310\/ykg4Izg5.jpeg","profile_background_tile":true,"profile_link_color":"00B324","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661547330353647616\/vW9SG_wR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661547330353647616\/vW9SG_wR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369444113\/1426064740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BuenosHumos","indices":[49,61]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727950135697408,"id_str":"663727950135697408","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDddWIAAOWLj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDddWIAAOWLj.jpg","url":"https:\/\/t.co\/7cxMFShqay","display_url":"pic.twitter.com\/7cxMFShqay","expanded_url":"http:\/\/twitter.com\/PaulaBoogie\/status\/663727959442915328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727950135697408,"id_str":"663727950135697408","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJDddWIAAOWLj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJDddWIAAOWLj.jpg","url":"https:\/\/t.co\/7cxMFShqay","display_url":"pic.twitter.com\/7cxMFShqay","expanded_url":"http:\/\/twitter.com\/PaulaBoogie\/status\/663727959442915328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080051657"} +{"delete":{"status":{"id":651105943971856385,"id_str":"651105943971856385","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080052108"}} +{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959442788352,"id_str":"663727959442788352","text":"https:\/\/t.co\/9I7urJePEG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325703574,"id_str":"325703574","name":"Rebel Elli \u266a","screen_name":"RebelElli","location":"Oscars Trash Can.","url":"https:\/\/m.facebook.com\/Rebel-Elli-1661445650764765\/","description":"I'm a lot of things.. fucked up maybe but chronically ill. #spoonielife #chroniclife #mentalhealth\nhttp:\/\/m.facebook.com\/profile.php?id\u2026","protected":false,"verified":false,"followers_count":100,"friends_count":136,"listed_count":6,"favourites_count":1690,"statuses_count":2256,"created_at":"Tue Jun 28 18:45:15 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662594628194013188\/-EFk18Ge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662594628194013188\/-EFk18Ge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325703574\/1443526867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727956905299968,"id_str":"663727956905299968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD2rWEAA5aqN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD2rWEAA5aqN.jpg","url":"https:\/\/t.co\/9I7urJePEG","display_url":"pic.twitter.com\/9I7urJePEG","expanded_url":"http:\/\/twitter.com\/RebelElli\/status\/663727959442788352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":552,"h":513,"resize":"fit"},"medium":{"w":552,"h":513,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727956905299968,"id_str":"663727956905299968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD2rWEAA5aqN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD2rWEAA5aqN.jpg","url":"https:\/\/t.co\/9I7urJePEG","display_url":"pic.twitter.com\/9I7urJePEG","expanded_url":"http:\/\/twitter.com\/RebelElli\/status\/663727959442788352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":315,"resize":"fit"},"large":{"w":552,"h":513,"resize":"fit"},"medium":{"w":552,"h":513,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080051657"} +{"delete":{"status":{"id":663724180408520704,"id_str":"663724180408520704","user_id":155443068,"user_id_str":"155443068"},"timestamp_ms":"1447080052188"}} +{"delete":{"status":{"id":663725136676126720,"id_str":"663725136676126720","user_id":2835792879,"user_id_str":"2835792879"},"timestamp_ms":"1447080052254"}} +{"delete":{"status":{"id":353146262004056064,"id_str":"353146262004056064","user_id":360000398,"user_id_str":"360000398"},"timestamp_ms":"1447080052316"}} +{"delete":{"status":{"id":663299863614873600,"id_str":"663299863614873600","user_id":3012346135,"user_id_str":"3012346135"},"timestamp_ms":"1447080052370"}} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641368576,"id_str":"663727963641368576","text":"@MaxineMaes good luck!!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727284730380288,"in_reply_to_status_id_str":"663727284730380288","in_reply_to_user_id":290710255,"in_reply_to_user_id_str":"290710255","in_reply_to_screen_name":"MaxineMaes","user":{"id":380562973,"id_str":"380562973","name":"\u2661 Char","screen_name":"Mertens97","location":null,"url":null,"description":"Zeb","protected":false,"verified":false,"followers_count":1378,"friends_count":286,"listed_count":3,"favourites_count":6105,"statuses_count":11761,"created_at":"Mon Sep 26 21:18:40 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651347281912827904\/rzBpJP0r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651347281912827904\/rzBpJP0r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380562973\/1446117580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaxineMaes","name":"\u272f\u272fmxnms\u272f\u272f","id":290710255,"id_str":"290710255","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653951488,"id_str":"663727963653951488","text":"RT @FilmIreland: Call For: Visual Effects Production Assistant https:\/\/t.co\/gFDPEsjAAB","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19599737,"id_str":"19599737","name":"Scott Evil","screen_name":"scott_evil","location":"Belfast","url":"http:\/\/www.sunnysidecomics.com","description":"Colour nerd. Trying to make Films and TV shows look nicer.","protected":false,"verified":false,"followers_count":734,"friends_count":322,"listed_count":19,"favourites_count":1325,"statuses_count":28871,"created_at":"Tue Jan 27 16:25:53 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655875371645169665\/OhxY_8ho_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655875371645169665\/OhxY_8ho_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19599737\/1445207867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:43 +0000 2015","id":663711818850897920,"id_str":"663711818850897920","text":"Call For: Visual Effects Production Assistant https:\/\/t.co\/gFDPEsjAAB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95665321,"id_str":"95665321","name":"Film Ireland","screen_name":"FilmIreland","location":"Dublin, Ireland","url":"http:\/\/www.filmireland.net","description":"'Get into Film'. Film Ireland is supported by @filmbase, a resource centre for Irish filmmakers.","protected":false,"verified":false,"followers_count":19962,"friends_count":2836,"listed_count":285,"favourites_count":366,"statuses_count":6547,"created_at":"Wed Dec 09 15:14:16 +0000 2009","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605830195\/ym117jspfzjxolm1by9w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605830195\/ym117jspfzjxolm1by9w.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2166984426\/Film-Ireland-Logo-web_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2166984426\/Film-Ireland-Logo-web_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95665321\/1404749349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gFDPEsjAAB","expanded_url":"http:\/\/filmireland.net\/2015\/11\/09\/call-for-visual-effects-production-assistant\/","display_url":"filmireland.net\/2015\/11\/09\/cal\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gFDPEsjAAB","expanded_url":"http:\/\/filmireland.net\/2015\/11\/09\/call-for-visual-effects-production-assistant\/","display_url":"filmireland.net\/2015\/11\/09\/cal\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"FilmIreland","name":"Film Ireland","id":95665321,"id_str":"95665321","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963662364672,"id_str":"663727963662364672","text":"RT @TrainingMindful: \"You get treated in life the way you teach people to treat you.\" ~ Wayne Dyer #kindness #quote","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19729568,"id_str":"19729568","name":"Briana Hansen","screen_name":"thebrianahansen","location":"\u2764\ufe0fin your dreams\u2764\ufe0f","url":"http:\/\/www.brianahansen.com","description":"Writer. Comedian. Actress. Author. Rapper? Goofball. Traveler. Dog-lover. Sunscreen-wearer. Weirdo.","protected":false,"verified":false,"followers_count":1116,"friends_count":843,"listed_count":42,"favourites_count":2502,"statuses_count":5974,"created_at":"Thu Jan 29 19:47:03 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/34647580\/aor.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/34647580\/aor.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572912331315613696\/Hv4lemON_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572912331315613696\/Hv4lemON_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19729568\/1377567210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879105155072,"id_str":"663727879105155072","text":"\"You get treated in life the way you teach people to treat you.\" ~ Wayne Dyer #kindness #quote","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1081982948,"id_str":"1081982948","name":"Mindfulness Training","screen_name":"TrainingMindful","location":"Raleigh, NC","url":"http:\/\/www.MindfulnessMeditationInstitute.org\/","description":"Charles A. Francis, #meditation teacher, HuffPost blogger, author of Mindfulness Meditation Made Simple: Your Guide to Finding True Inner Peace. #peace #love","protected":false,"verified":false,"followers_count":102064,"friends_count":24839,"listed_count":1588,"favourites_count":0,"statuses_count":68848,"created_at":"Sat Jan 12 05:56:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F3EBFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506691524751392770\/rG6XSOy0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506691524751392770\/rG6XSOy0.jpeg","profile_background_tile":false,"profile_link_color":"0F18D1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566526924059459584\/gdMxDA9x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566526924059459584\/gdMxDA9x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1081982948\/1424992385","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"kindness","indices":[78,87]},{"text":"quote","indices":[88,94]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kindness","indices":[99,108]},{"text":"quote","indices":[109,115]}],"urls":[],"user_mentions":[{"screen_name":"TrainingMindful","name":"Mindfulness Training","id":1081982948,"id_str":"1081982948","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052663"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963674951680,"id_str":"663727963674951680","text":"RT @trrf1990: \u2605\/!\n\n\u062a\u0646\u0633\u062f \u0646\u0641\u0633\u064a \u0645\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0644\u0648 \u0645\u0627\u0634\u0643\u064a\u062a\n\u0648\u0627\u0644\u064a\u0627 \u0630\u0643\u0631\u062a\u0643 \/\u062a\u062c\u064a\u0646\u064a \u0644\u0644\u062d\u064a\u0627\u0629\/\u0625\u0634\u0647\u0648\u0647 \n\u0645\u0627\u0628\u064a \u0625\u0642\u0647\u0648\u0647 \u0648\u0623\u062a\u0631\u0643 \u0627\u0644\u0641\u0646\u062c\u0627\u0644 \u0648\u0627\u0644\u064a\u0627 \u0637\u0631\u064a\u062a\n \u0623\u0642\u0648\u0644 \/ \u0644\u0645\u0633\u0648\u064a \u0627\u0644\u0641\u0646\u062c\u0627\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195353606,"id_str":"3195353606","name":"\u0634\u064a\u062e\u0629 \u0628\u0646\u0627\u062a \u063a\u0627\u0645\u062f..","screen_name":"aabbbnn32","location":"\u062c\u0646\u0648\u0628 \u0628\u0627\u0631\u064a\u0633 ...","url":null,"description":"\u200f\u200f\u200f\u0634\u0643\u0631\u0627 \u0644\u0644\u0646\u0627\u0633 \u0627\u0644\u0644\u064a \u062a\u062e\u0631\u0651\u0628 \u0645\u0643\u0627\u0646\u062a\u0647\u0627 \u0628\u0646\u0641\u0633\u0647\u0627 \u0648\u062a\u0631\u064a\u062d\u0646\u0651\u064a \u0645\u0646 \u062a\u0623\u0646\u064a\u0628 \u0627\u0644\u0636\u0645\u064a\u0631\n \u0643\u0644 \u0634\u062e\u0635 \u064a\u0645\u0631 \u0639\u0644\u0649 \u062d\u0633\u0627\u0628\u064a \u064a\u0642\u0648\u0644 \u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \u0648\u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647","protected":false,"verified":false,"followers_count":4474,"friends_count":3714,"listed_count":3,"favourites_count":656,"statuses_count":9117,"created_at":"Thu May 14 14:05:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662753611747827712\/b4qsSGsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662753611747827712\/b4qsSGsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195353606\/1446897568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 20:47:07 +0000 2015","id":660558642949828608,"id_str":"660558642949828608","text":"\u2605\/!\n\n\u062a\u0646\u0633\u062f \u0646\u0641\u0633\u064a \u0645\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0644\u0648 \u0645\u0627\u0634\u0643\u064a\u062a\n\u0648\u0627\u0644\u064a\u0627 \u0630\u0643\u0631\u062a\u0643 \/\u062a\u062c\u064a\u0646\u064a \u0644\u0644\u062d\u064a\u0627\u0629\/\u0625\u0634\u0647\u0648\u0647 \n\u0645\u0627\u0628\u064a \u0625\u0642\u0647\u0648\u0647 \u0648\u0623\u062a\u0631\u0643 \u0627\u0644\u0641\u0646\u062c\u0627\u0644 \u0648\u0627\u0644\u064a\u0627 \u0637\u0631\u064a\u062a\n \u0623\u0642\u0648\u0644 \/ \u0644\u0645\u0633\u0648\u064a \u0627\u0644\u0641\u0646\u062c\u0627\u0644 \/ \u0635\u0628 \u0625\u0642\u0647\u0648\u0647 \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":423502063,"id_str":"423502063","name":"\u264c\ufe0f","screen_name":"trrf1990","location":"5\/5 ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f( \u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u062a\u063a\u0631\u064a\u062f \u060c\u060c\u060c \u0648\u0644\u0643 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629 ) \u0645\u0627 \u0623\u0643\u062a\u0628\u0647 \u0644\u064a\u0633 \u0648\u0627\u0642\u0639\u064a \u0625\u0646\u0645\u0627 \u0643\u0644\u0645\u0627\u062a \u0631\u0627\u0642\u062a \u0644\u064a \u0648\u0642\u062f \u064a\u062d\u062a\u0627\u062c\u0647\u0627 \u063a\u064a\u0631\u064a!!","protected":false,"verified":false,"followers_count":6222,"friends_count":4184,"listed_count":8,"favourites_count":599,"statuses_count":12246,"created_at":"Mon Nov 28 15:51:37 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"02181F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659566994057003013\/RLl4dXMW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659566994057003013\/RLl4dXMW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/423502063\/1445143544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":34,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trrf1990","name":"\u264c\ufe0f","id":423502063,"id_str":"423502063","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080052666"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963674906624,"id_str":"663727963674906624","text":"Aceita a realidade","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129227370,"id_str":"129227370","name":"Carolzinha","screen_name":"carol_bbarros","location":null,"url":null,"description":"\u2022 Snap:carol.bbarros \u2022Instagram: carolzinhabarrosb \u2022","protected":false,"verified":false,"followers_count":192,"friends_count":124,"listed_count":1,"favourites_count":475,"statuses_count":1534,"created_at":"Sat Apr 03 15:53:36 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/707735218\/67d69e3a798306a936254b4950996b0a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/707735218\/67d69e3a798306a936254b4950996b0a.jpeg","profile_background_tile":true,"profile_link_color":"DB14FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658345696098152448\/NWrMJ5WT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658345696098152448\/NWrMJ5WT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129227370\/1446482697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080052666"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641397249,"id_str":"663727963641397249","text":"RT @JohannaKukka: Tulevaisuuden voittokulku: markkinoinnin ja designin yhteisty\u00f6. Design tekee markkinoinnista taidetta https:\/\/t.co\/adTriV\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":618955317,"id_str":"618955317","name":"(((G-a-b-o-r)))","screen_name":"G____B____","location":null,"url":"https:\/\/www.facebook.com\/pages\/Find-Finland\/784973574954619?ref=aymt_homepage_panel","description":"I \u2764 Suomi & much more!","protected":false,"verified":false,"followers_count":968,"friends_count":1008,"listed_count":218,"favourites_count":44721,"statuses_count":48234,"created_at":"Tue Jun 26 08:38:52 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"hu","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654643392870240256\/DkqYSKkm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654643392870240256\/DkqYSKkm.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639883816459350016\/cTy0tumG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639883816459350016\/cTy0tumG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618955317\/1445930691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:06:56 +0000 2015","id":663598625751228416,"id_str":"663598625751228416","text":"Tulevaisuuden voittokulku: markkinoinnin ja designin yhteisty\u00f6. Design tekee markkinoinnista taidetta https:\/\/t.co\/adTriV3KUm @KauppalehtiFi","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465127397,"id_str":"465127397","name":"Johanna Kukka","screen_name":"JohannaKukka","location":"Helsinki, Finland","url":null,"description":"Py\u00f6r\u00e4ilev\u00e4 gastronomian harrastaja.Innostuu&inspiroituu kaikesta kiintoisasta.Twitteriss\u00e4 silkasta ilosta.Viitt\u00e4 vailla valmis markkinoinnin KTM,Aalto-yliopisto","protected":false,"verified":false,"followers_count":645,"friends_count":936,"listed_count":7,"favourites_count":9155,"statuses_count":2742,"created_at":"Mon Jan 16 00:35:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600038416311529472\/1Hc2ZAE__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600038416311529472\/1Hc2ZAE__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/adTriV3KUm","expanded_url":"http:\/\/www.kauppalehti.fi\/uutiset\/design-tekee-markkinoinnista-taidetta\/DngFchV3?ref=twitter:3dfa","display_url":"kauppalehti.fi\/uutiset\/design\u2026","indices":[102,125]}],"user_mentions":[{"screen_name":"KauppalehtiFi","name":"Kauppalehti ","id":34621907,"id_str":"34621907","indices":[126,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/adTriV3KUm","expanded_url":"http:\/\/www.kauppalehti.fi\/uutiset\/design-tekee-markkinoinnista-taidetta\/DngFchV3?ref=twitter:3dfa","display_url":"kauppalehti.fi\/uutiset\/design\u2026","indices":[120,140]}],"user_mentions":[{"screen_name":"JohannaKukka","name":"Johanna Kukka","id":465127397,"id_str":"465127397","indices":[3,16]},{"screen_name":"KauppalehtiFi","name":"Kauppalehti ","id":34621907,"id_str":"34621907","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963645616129,"id_str":"663727963645616129","text":"OO QUE SAUDADES #askzord","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2999813382,"id_str":"2999813382","name":"ana pdb1m","screen_name":"worldzord","location":"mack ","url":"http:\/\/youtube.com\/zordtv","description":null,"protected":false,"verified":false,"followers_count":1610,"friends_count":447,"listed_count":2,"favourites_count":21779,"statuses_count":57807,"created_at":"Wed Jan 28 21:31:04 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663495469335752704\/SaR5ObUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663495469335752704\/SaR5ObUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2999813382\/1446939877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"894146230dd1d42d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/894146230dd1d42d.json","place_type":"city","name":"Porto Alegre","full_name":"Porto Alegre, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-51.306148,-30.268807],[-51.306148,-29.930636],[-51.012471,-29.930636],[-51.012471,-30.268807]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"askzord","indices":[16,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080052659"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666579456,"id_str":"663727963666579456","text":"RT @stpatslawrence: Today = Feast of the Dedication of the Lateran Basilica. What do you know about this? Read: https:\/\/t.co\/K9YIzYHaPn htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191051662,"id_str":"191051662","name":"Anne Bradley","screen_name":"amb3760","location":null,"url":null,"description":"Wife, Mother of two awesome kids, fundraising professional","protected":false,"verified":false,"followers_count":56,"friends_count":180,"listed_count":4,"favourites_count":476,"statuses_count":1992,"created_at":"Wed Sep 15 14:04:38 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484422862321627136\/fg3zYByb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484422862321627136\/fg3zYByb_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:49 +0000 2015","id":663726188871983104,"id_str":"663726188871983104","text":"Today = Feast of the Dedication of the Lateran Basilica. What do you know about this? Read: https:\/\/t.co\/K9YIzYHaPn https:\/\/t.co\/ZAexPwWAEZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2202218192,"id_str":"2202218192","name":"Saint Patrick Parish","screen_name":"stpatslawrence","location":null,"url":"http:\/\/www.saintpatrickparish.com","description":"Saint Patrick Parish is a vibrant Catholic community of disciples of Jesus Christ located in Lawrence, MA","protected":false,"verified":false,"followers_count":186,"friends_count":176,"listed_count":7,"favourites_count":0,"statuses_count":720,"created_at":"Tue Nov 19 00:35:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1C8A1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000759429350\/518b92f49a67d47b09a285eb0ab38a7e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000759429350\/518b92f49a67d47b09a285eb0ab38a7e_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K9YIzYHaPn","expanded_url":"http:\/\/tinyurl.com\/pcj5rej","display_url":"tinyurl.com\/pcj5rej","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663726187567517696,"id_str":"663726187567517696","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","url":"https:\/\/t.co\/ZAexPwWAEZ","display_url":"pic.twitter.com\/ZAexPwWAEZ","expanded_url":"http:\/\/twitter.com\/stpatslawrence\/status\/663726188871983104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726187567517696,"id_str":"663726187567517696","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","url":"https:\/\/t.co\/ZAexPwWAEZ","display_url":"pic.twitter.com\/ZAexPwWAEZ","expanded_url":"http:\/\/twitter.com\/stpatslawrence\/status\/663726188871983104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K9YIzYHaPn","expanded_url":"http:\/\/tinyurl.com\/pcj5rej","display_url":"tinyurl.com\/pcj5rej","indices":[112,135]}],"user_mentions":[{"screen_name":"stpatslawrence","name":"Saint Patrick Parish","id":2202218192,"id_str":"2202218192","indices":[3,18]}],"symbols":[],"media":[{"id":663726187567517696,"id_str":"663726187567517696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","url":"https:\/\/t.co\/ZAexPwWAEZ","display_url":"pic.twitter.com\/ZAexPwWAEZ","expanded_url":"http:\/\/twitter.com\/stpatslawrence\/status\/663726188871983104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}},"source_status_id":663726188871983104,"source_status_id_str":"663726188871983104","source_user_id":2202218192,"source_user_id_str":"2202218192"}]},"extended_entities":{"media":[{"id":663726187567517696,"id_str":"663726187567517696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHc3YWEAAIy3i.jpg","url":"https:\/\/t.co\/ZAexPwWAEZ","display_url":"pic.twitter.com\/ZAexPwWAEZ","expanded_url":"http:\/\/twitter.com\/stpatslawrence\/status\/663726188871983104\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":150,"resize":"fit"},"large":{"w":1024,"h":452,"resize":"fit"}},"source_status_id":663726188871983104,"source_status_id_str":"663726188871983104","source_user_id":2202218192,"source_user_id_str":"2202218192"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963637161984,"id_str":"663727963637161984","text":"Ol\u00e1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":507912427,"id_str":"507912427","name":"Matko","screen_name":"MattheIIs","location":"Paranagu\u00e1, Paran\u00e1","url":"https:\/\/www.facebook.com\/profile.php?id=100008287125831","description":"16, h\u00e9tero, viol\u00e3o\/guitarra, v\u00eddeo - game futebol, amo m\u00fasica. A melhor coisa que existe s\u00e3o pessoas que seguem de volta.","protected":false,"verified":false,"followers_count":1291,"friends_count":833,"listed_count":3,"favourites_count":1541,"statuses_count":14313,"created_at":"Tue Feb 28 20:57:59 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"141414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650098181221519360\/DqrHdvE4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650098181221519360\/DqrHdvE4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/507912427\/1444433382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080052657"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670753280,"id_str":"663727963670753280","text":"RT @LaSnltchDorada: Dormirte en el abrazo de la persona que amas. A veces eso es lo \u00fanico que necesitas.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402593128,"id_str":"2402593128","name":"ToMiTo","screen_name":"tomysayago1","location":"capitan sarmientoo","url":"https:\/\/www.facebook.com\/tomas.sayago.108","description":"Bostero Desde La Cuna Asta El Cajon :3 emm me gusta CJS,NTVG,Las Pastilla del abuelo, me gusta la cumbia, Juegoo al futbool, Salgo Todos Los Findes","protected":false,"verified":false,"followers_count":785,"friends_count":324,"listed_count":2,"favourites_count":10059,"statuses_count":54406,"created_at":"Sat Mar 22 03:56:26 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662873336662384640\/f2giz7fG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662873336662384640\/f2giz7fG.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663437149015011328\/sniIdCzC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663437149015011328\/sniIdCzC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402593128\/1447010731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Feb 22 16:23:12 +0000 2015","id":569532872714924032,"id_str":"569532872714924032","text":"Dormirte en el abrazo de la persona que amas. A veces eso es lo \u00fanico que necesitas.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2907963119,"id_str":"2907963119","name":"\u2640 Frases \u2640","screen_name":"LaSnltchDorada","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":36941,"friends_count":10478,"listed_count":32,"favourites_count":2,"statuses_count":139,"created_at":"Sat Dec 06 16:45:36 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562907004172132352\/8xerp75u_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562907004172132352\/8xerp75u_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LaSnltchDorada","name":"\u2640 Frases \u2640","id":2907963119,"id_str":"2907963119","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641397248,"id_str":"663727963641397248","text":"RT @blvckfame: I'm a shitty person, but i'd give the world to the right person.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351015633,"id_str":"3351015633","name":"o Simba ","screen_name":"simbadealvalade","location":"Alvalade ","url":null,"description":"O Simba \u00e9 marca registada.","protected":false,"verified":false,"followers_count":608,"friends_count":2003,"listed_count":6,"favourites_count":5528,"statuses_count":8258,"created_at":"Mon Jun 29 19:00:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624250284135550978\/xzboVcf2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624250284135550978\/xzboVcf2.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663514997381857284\/BLIEBEEk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663514997381857284\/BLIEBEEk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351015633\/1447029491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 31 21:35:04 +0000 2015","id":627231023600939008,"id_str":"627231023600939008","text":"I'm a shitty person, but i'd give the world to the right person.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":627916798,"id_str":"627916798","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","screen_name":"blvckfame","location":null,"url":null,"description":"\u2800\u2800\u2800\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u2800\u2800\u2800\u2800\u2800\u3164\u3164\u2800Turn on notifications \u2717\u2665O\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u2800","protected":false,"verified":false,"followers_count":326605,"friends_count":15,"listed_count":421,"favourites_count":3438,"statuses_count":4543,"created_at":"Fri Jul 06 01:22:58 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2E2E2E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468241281072644096\/f-H27r9v.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468241281072644096\/f-H27r9v.png","profile_background_tile":true,"profile_link_color":"080200","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602583072677081088\/wJHRaAJ3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602583072677081088\/wJHRaAJ3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/627916798\/1445235535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3797791ff9c0e4c6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3797791ff9c0e4c6.json","place_type":"city","name":"Toronto","full_name":"Toronto, Ontario","country_code":"CA","country":"Canada","bounding_box":{"type":"Polygon","coordinates":[[[-79.639319,43.403221],[-79.639319,43.855401],[-78.905820,43.855401],[-78.905820,43.403221]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":11554,"favorite_count":8953,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blvckfame","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","id":627916798,"id_str":"627916798","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670773760,"id_str":"663727963670773760","text":"Cabelos de Algod\u00e3o - Fly #PediuTocouRD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368299361,"id_str":"2368299361","name":"gabriel","screen_name":"LYLASSAMBA","location":"Rio de Janeiro","url":null,"description":"choose barone chupetinha de baleia (1\/3) (2\/6)","protected":false,"verified":false,"followers_count":5602,"friends_count":5566,"listed_count":5,"favourites_count":174,"statuses_count":60084,"created_at":"Sun Mar 02 04:45:21 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647869962044997632\/RAZHmsM_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647869962044997632\/RAZHmsM_.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663563125329944576\/ULJVKi5T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663563125329944576\/ULJVKi5T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368299361\/1446581185","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PediuTocouRD","indices":[25,38]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963657998344,"id_str":"663727963657998344","text":"\u985e\u3055\u3093\u3068\u3042\u3079\u3055\u3060\u3068\u548c\u308d\u3046\u305d\u304f\u304a\u3082\u308d\u304b\u3063\u305f\u266a (\u0e51\uffe3\u2200\uffe3) \uff1d3\n\n#\u3068\u308a\u3042\u3048\u305a\u30af\u30ba\u306f\u30c6\u30ec\u30d3\u3092\u6d88\u305d\u3046\u304b","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92981957,"id_str":"92981957","name":"\u9ed2\u59eb\u30a8\u30ea\u30ca\uff20\u9f8d\u306e\u59c9\u59b9","screen_name":"kyrie_nito","location":"\u30c9\u30e9\u30b3\u30cb\u30a2\u30fb\u30b7\u30b9\u30bf\u30fc\u30ba","url":"http:\/\/twpf.jp\/kyrie_nito","description":"\u65e5\u672c\u30a2\u30fc\u30ab\u30fc\u30c9\u3092\u5598\u304c\u305b\u308b\u4f1a\u66f8\u8a18\u3002\u30c7\u30eb\u30a2\u30fc\u306b\u306f\u307e\u3063\u3066\u5e7e\u661f\u971c\u306e\u4e09\u6b73\u5150\uff0820\u2191\uff09\u826f\u304f\u6b4c\u3046\u3002\u9031\u672b\u3055\u306b\u308f\u3002\u30c8\u30c1\u72c2\u3063\u3066\u77f3\u304b\u308a\u934b\u306b\u30c0\u30a4\u30d6\u3057\u8150\u5c0f\u8aac\u3092\u652f\u90e8\u306b\u751f\u7523\u4e2d\u3002\u3064\u3044\u3077\u308d\u53c2\u7167\u300210\u5e74\u4ee5\u4e0a\u30df\u30c3\u30c1\u30fc\uff08\u53ca\u5ddd\u5149\u535a\uff09\u306e\u304a\u3063\u304b\u3051\u3002\u99c4\u6587\u3092\u66f8\u304f\u306e\u306f\u30a2\u30a4\u30b3\u30f3\u306e\u9ed2\u3044\u65b9\u3001\u7d75\u3092\u63cf\u304f\u306e\u306f\u767d\u3002\u9375\u30a2\u30ab\u2192\u9ed2\u59eb\u30a8\u30ea\u30ca\u306eR18\u5c0f\u8aac\u7f6e\u304d\u5834\uff20eleanor_kurohim","protected":false,"verified":false,"followers_count":95,"friends_count":89,"listed_count":6,"favourites_count":1893,"statuses_count":42114,"created_at":"Fri Nov 27 14:47:03 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654302005490388998\/vKEgOntW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654302005490388998\/vKEgOntW_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3068\u308a\u3042\u3048\u305a\u30af\u30ba\u306f\u30c6\u30ec\u30d3\u3092\u6d88\u305d\u3046\u304b","indices":[33,50]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052662"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963649810432,"id_str":"663727963649810432","text":"RT @damienxpat: November is #TransAwarenessMonth! This illustration is only a snippet of micro aggressions trans ppl endure daily. https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766930207,"id_str":"2766930207","name":"\u263ecammie\u263d","screen_name":"goethelife","location":"NYC \/ NYU '17","url":null,"description":"caffeinated persian studying pre-med, english, and music. | she, her","protected":false,"verified":false,"followers_count":873,"friends_count":632,"listed_count":9,"favourites_count":12460,"statuses_count":5513,"created_at":"Thu Sep 11 07:09:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662406834007994368\/eLI0jMXW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662406834007994368\/eLI0jMXW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766930207\/1446765072","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:42:09 +0000 2015","id":663652786463182849,"id_str":"663652786463182849","text":"November is #TransAwarenessMonth! This illustration is only a snippet of micro aggressions trans ppl endure daily. https:\/\/t.co\/BIT6K3qDQj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958485614,"id_str":"2958485614","name":"damien","screen_name":"damienxpat","location":"336","url":"http:\/\/officialpaulwall.tumblr.com","description":"he\/him. coolin. 19","protected":false,"verified":false,"followers_count":13917,"friends_count":153,"listed_count":52,"favourites_count":24510,"statuses_count":14909,"created_at":"Sat Jan 03 13:32:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633962679753904128\/HkSoW4wo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633962679753904128\/HkSoW4wo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2958485614\/1429319575","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":914,"favorite_count":597,"entities":{"hashtags":[{"text":"TransAwarenessMonth","indices":[12,32]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663652777692819457,"id_str":"663652777692819457","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","url":"https:\/\/t.co\/BIT6K3qDQj","display_url":"pic.twitter.com\/BIT6K3qDQj","expanded_url":"http:\/\/twitter.com\/damienxpat\/status\/663652786463182849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"large":{"w":723,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663652777692819457,"id_str":"663652777692819457","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","url":"https:\/\/t.co\/BIT6K3qDQj","display_url":"pic.twitter.com\/BIT6K3qDQj","expanded_url":"http:\/\/twitter.com\/damienxpat\/status\/663652786463182849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"large":{"w":723,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TransAwarenessMonth","indices":[28,48]}],"urls":[],"user_mentions":[{"screen_name":"damienxpat","name":"damien","id":2958485614,"id_str":"2958485614","indices":[3,14]}],"symbols":[],"media":[{"id":663652777692819457,"id_str":"663652777692819457","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","url":"https:\/\/t.co\/BIT6K3qDQj","display_url":"pic.twitter.com\/BIT6K3qDQj","expanded_url":"http:\/\/twitter.com\/damienxpat\/status\/663652786463182849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"large":{"w":723,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663652786463182849,"source_status_id_str":"663652786463182849","source_user_id":2958485614,"source_user_id_str":"2958485614"}]},"extended_entities":{"media":[{"id":663652777692819457,"id_str":"663652777692819457","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXEr2SU8AE9qaz.jpg","url":"https:\/\/t.co\/BIT6K3qDQj","display_url":"pic.twitter.com\/BIT6K3qDQj","expanded_url":"http:\/\/twitter.com\/damienxpat\/status\/663652786463182849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"large":{"w":723,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663652786463182849,"source_status_id_str":"663652786463182849","source_user_id":2958485614,"source_user_id_str":"2958485614"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052660"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963649777665,"id_str":"663727963649777665","text":"RT @cJOKvGTyr1CvPoM: \u0628\u0639\u0636 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0646\u062e\u0628\u0626\u0647\u0627 \u0628\u0627\u0628\u062a\u0633\u0627\u0645\u0629..\ud83d\ude0a..\n\u0644\u0643\u0646\u0647\u0627\n\u062a\u0624\u0644\u0645\u0646\u0627 \u062c\u062f\u0627 \u0645\u0646 \u0627\u0644\u062f\u0627\u062e\u0644..\ud83d\ude22\ud83d\ude22\ud83d\ude22\ud83d\ude26 https:\/\/t.co\/NIHFDCwFsJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766677484,"id_str":"2766677484","name":"\u0635\u0645\u062a \u0627\u0644\u0645\u0634\u0627\u0639\u0631","screen_name":"ahemd99100","location":null,"url":null,"description":"\u200f\u062a\u0624\u0644\u0645\u0646\u0627 \u0628\u0639\u0636\u064e \u0627\u0644\u062a\u0635\u0631\u0641\u0627\u062a \u0648 \u0644\u0643\u0646 \u0646\u0628\u062a\u0633\u0645\u0651 \u062d\u0628\u064b\u0627 \u0644\u0623\u0635\u062d\u0627\u0628\u0647\u0627...","protected":false,"verified":false,"followers_count":3074,"friends_count":3805,"listed_count":2,"favourites_count":4360,"statuses_count":13486,"created_at":"Mon Aug 25 15:23:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511830046919516160\/a8SLpRtj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511830046919516160\/a8SLpRtj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766677484\/1431210560","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:06:59 +0000 2015","id":663659038010404864,"id_str":"663659038010404864","text":"\u0628\u0639\u0636 \u0627\u0644\u0643\u0644\u0645\u0627\u062a \u0646\u062e\u0628\u0626\u0647\u0627 \u0628\u0627\u0628\u062a\u0633\u0627\u0645\u0629..\ud83d\ude0a..\n\u0644\u0643\u0646\u0647\u0627\n\u062a\u0624\u0644\u0645\u0646\u0627 \u062c\u062f\u0627 \u0645\u0646 \u0627\u0644\u062f\u0627\u062e\u0644..\ud83d\ude22\ud83d\ude22\ud83d\ude22\ud83d\ude26 https:\/\/t.co\/NIHFDCwFsJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4020752535,"id_str":"4020752535","name":"\u0628\u0633\u0645\u0629 \u0623\u0645\u0645\u0645\u0645\u0645\u0645\u0645\u0644 ","screen_name":"cJOKvGTyr1CvPoM","location":"\u0627\u0644\u062e\u0627\u0635 \u0644\u0627\u270b \u0627\u0644\u062e\u0627\u0635 \u0644\u0627\u270b\u0628\u0644\u0648\u0643 \u0644\u0644\u062e\u0627\u0635 ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0628\u0648\u062d \u0627\u0644\u0645\u0634\u0627\u0639\u0631\u200f\u200f\u200f \u062f\u0627\u0626\u0645\u0627 \u0647\u0627\u062f\u0626\u0629 \u2764\u0627\u0644\u0642\u0644\u0648\u0628 \u0627\u0644\u0628\u064a\u0636\u0627\u0621 \u062a\u0628\u0642\u0649 \u062f\u0627\u0626\u0645\u0627 \u0646\u0642\u064a\u0629\u2764","protected":false,"verified":false,"followers_count":982,"friends_count":654,"listed_count":1,"favourites_count":62,"statuses_count":1266,"created_at":"Fri Oct 23 01:23:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661526282409222144\/ge3sQw6j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661526282409222144\/ge3sQw6j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4020752535\/1447065212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663659005936590848,"id_str":"663659005936590848","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","url":"https:\/\/t.co\/NIHFDCwFsJ","display_url":"pic.twitter.com\/NIHFDCwFsJ","expanded_url":"http:\/\/twitter.com\/cJOKvGTyr1CvPoM\/status\/663659038010404864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663659005936590848,"id_str":"663659005936590848","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","url":"https:\/\/t.co\/NIHFDCwFsJ","display_url":"pic.twitter.com\/NIHFDCwFsJ","expanded_url":"http:\/\/twitter.com\/cJOKvGTyr1CvPoM\/status\/663659038010404864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cJOKvGTyr1CvPoM","name":"\u0628\u0633\u0645\u0629 \u0623\u0645\u0645\u0645\u0645\u0645\u0645\u0645\u0644 ","id":4020752535,"id_str":"4020752535","indices":[3,19]}],"symbols":[],"media":[{"id":663659005936590848,"id_str":"663659005936590848","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","url":"https:\/\/t.co\/NIHFDCwFsJ","display_url":"pic.twitter.com\/NIHFDCwFsJ","expanded_url":"http:\/\/twitter.com\/cJOKvGTyr1CvPoM\/status\/663659038010404864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663659038010404864,"source_status_id_str":"663659038010404864","source_user_id":4020752535,"source_user_id_str":"4020752535"}]},"extended_entities":{"media":[{"id":663659005936590848,"id_str":"663659005936590848","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXKWYTW4AA95VV.jpg","url":"https:\/\/t.co\/NIHFDCwFsJ","display_url":"pic.twitter.com\/NIHFDCwFsJ","expanded_url":"http:\/\/twitter.com\/cJOKvGTyr1CvPoM\/status\/663659038010404864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663659038010404864,"source_status_id_str":"663659038010404864","source_user_id":4020752535,"source_user_id_str":"4020752535"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080052660"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963658018816,"id_str":"663727963658018816","text":"@winiewidia ggs doang wkakak","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727082720006145,"in_reply_to_status_id_str":"663727082720006145","in_reply_to_user_id":407522093,"in_reply_to_user_id_str":"407522093","in_reply_to_screen_name":"winiewidia","user":{"id":1356381415,"id_str":"1356381415","name":"PLAS","screen_name":"dithafatma","location":null,"url":null,"description":"urusin real life aja skenario Tuhan lebih indah","protected":false,"verified":false,"followers_count":4716,"friends_count":654,"listed_count":3,"favourites_count":657,"statuses_count":41995,"created_at":"Tue Apr 16 08:29:19 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579532999215046657\/3XCrkZGQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579532999215046657\/3XCrkZGQ.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660291113639538688\/84-cgIi9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660291113639538688\/84-cgIi9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1356381415\/1442935004","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"winiewidia","name":"Wini widia","id":407522093,"id_str":"407522093","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080052662"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641413632,"id_str":"663727963641413632","text":"jajaja! Esas enterevistas son un show comico! O se estara quedando sordo por los gritos de la K? https:\/\/t.co\/iOMozz8r75","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558823208,"id_str":"558823208","name":"Nora Kreimer","screen_name":"NoraKreimer","location":"Ciudad de Buenos Aires","url":null,"description":"Profesora de Literatura e Historia Inglesas","protected":false,"verified":false,"followers_count":476,"friends_count":427,"listed_count":11,"favourites_count":6866,"statuses_count":31094,"created_at":"Fri Apr 20 17:55:17 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555378689177698305\/gv9ZCQsf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555378689177698305\/gv9ZCQsf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558823208\/1421244619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727219861254144,"quoted_status_id_str":"663727219861254144","quoted_status":{"created_at":"Mon Nov 09 14:37:55 +0000 2015","id":663727219861254144,"id_str":"663727219861254144","text":"- Scioli, cu\u00e1nto es la inflaci\u00f3n ?\n\n- Nadie mejor que yo para terminar con la menstruaci\u00f3n del sapo blanco.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151252784,"id_str":"151252784","name":"Sebasti\u00e1n Katz","screen_name":"sebakatz","location":"Buenos Aires, Argentina","url":null,"description":"....constituir la uni\u00f3n nacional, afianzar la justicia, consolidar la paz interior, promover el bienestar general, y asegurar los beneficios de la libertad.....","protected":false,"verified":false,"followers_count":33699,"friends_count":19254,"listed_count":126,"favourites_count":38130,"statuses_count":38140,"created_at":"Thu Jun 03 00:15:43 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1832487358\/sheldon-cooper-apesta_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1832487358\/sheldon-cooper-apesta_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151252784\/1397699136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iOMozz8r75","expanded_url":"https:\/\/twitter.com\/sebakatz\/status\/663727219861254144","display_url":"twitter.com\/sebakatz\/statu\u2026","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653951489,"id_str":"663727963653951489","text":"RT @EdmontonOilers: Did customs nod their head yes but then tell him to go? And did he reply, what do you mean? https:\/\/t.co\/9QDcPDXODf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362841079,"id_str":"362841079","name":"Jon Cielinski","screen_name":"joncielinski","location":"Buffalo, NY","url":null,"description":"Cashier at Tops, die hard Sabres, Bills, and Bandits fan","protected":false,"verified":false,"followers_count":161,"friends_count":1041,"listed_count":7,"favourites_count":3884,"statuses_count":10056,"created_at":"Sat Aug 27 02:23:17 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647968421720801280\/O_dmX2kw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647968421720801280\/O_dmX2kw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362841079\/1437423458","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:58 +0000 2015","id":663725722947612673,"id_str":"663725722947612673","text":"Did customs nod their head yes but then tell him to go? And did he reply, what do you mean? https:\/\/t.co\/9QDcPDXODf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15361389,"id_str":"15361389","name":"Edmonton Oilers","screen_name":"EdmontonOilers","location":"#OilCountry","url":"http:\/\/www.edmontonoilers.com","description":"Official Twitter account of the five-time #StanleyCup champion Edmonton #Oilers Hockey Club | Tweets by @ryanfrankson | #FarewellRexallPlace","protected":false,"verified":true,"followers_count":456475,"friends_count":282,"listed_count":4397,"favourites_count":26422,"statuses_count":56172,"created_at":"Wed Jul 09 02:45:44 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161413605\/FdaqH2vA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161413605\/FdaqH2vA.jpeg","profile_background_tile":false,"profile_link_color":"00275D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBEBEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661664122610716672\/Kw4ZAa4Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661664122610716672\/Kw4ZAa4Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15361389\/1446927685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663655160602726400,"quoted_status_id_str":"663655160602726400","quoted_status":{"created_at":"Mon Nov 09 09:51:35 +0000 2015","id":663655160602726400,"id_str":"663655160602726400","text":"Justin Bieber just tried to say hello to the team. But he can't because he just got off international flight.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28498139,"id_str":"28498139","name":"Jack Michaels","screen_name":"EdmontonJack","location":null,"url":null,"description":"Play-by-Play Announcer, Edmonton Oilers. @IthacaCollege grad.","protected":false,"verified":true,"followers_count":14836,"friends_count":75,"listed_count":281,"favourites_count":66,"statuses_count":3981,"created_at":"Fri Apr 03 03:59:28 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1825683452\/IMG00527-20111127-0903_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1825683452\/IMG00527-20111127-0903_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28498139\/1431364378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":27,"favorite_count":36,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9QDcPDXODf","expanded_url":"https:\/\/twitter.com\/edmontonjack\/status\/663655160602726400","display_url":"twitter.com\/edmontonjack\/s\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9QDcPDXODf","expanded_url":"https:\/\/twitter.com\/edmontonjack\/status\/663655160602726400","display_url":"twitter.com\/edmontonjack\/s\u2026","indices":[112,135]}],"user_mentions":[{"screen_name":"EdmontonOilers","name":"Edmonton Oilers","id":15361389,"id_str":"15361389","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963649675264,"id_str":"663727963649675264","text":"@114514_45450721 \u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\u2606\n\u3042\u306a\u305f\u306e\u5143\u6c17\u306a\u9854\u304c\u898b\u308c\u3066\u5b09\u3057\u3044\u3067\u3059\u2661","source":"\u003ca href=\"https:\/\/mobile.twitter.com\/__OSX\" rel=\"nofollow\"\u003eMac OS_X\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727235086594048,"in_reply_to_status_id_str":"663727235086594048","in_reply_to_user_id":2842976496,"in_reply_to_user_id_str":"2842976496","in_reply_to_screen_name":"114514_45450721","user":{"id":1022163990,"id_str":"1022163990","name":"\u5357\u3053\u3068\u308a","screen_name":"_M_KOTORI_","location":null,"url":null,"description":"\u5357\u3053\u3068\u308a\u3067\u3059\u266a\u4e00\u671f\u3067\u6642\u9593\u6b62\u307e\u3063\u3066\u308b\u3051\u3069\u3088\u308d\u3057\u304f\u306d\u2661","protected":false,"verified":false,"followers_count":3298,"friends_count":430,"listed_count":8,"favourites_count":13883,"statuses_count":592723,"created_at":"Wed Dec 19 14:18:39 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/796921167\/20edf5d01eb520df93dc1834f5ea64c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/796921167\/20edf5d01eb520df93dc1834f5ea64c1.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647097265849438208\/HwyhP6rJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647097265849438208\/HwyhP6rJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022163990\/1442645222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"114514_45450721","name":"@366618 @hima_jln","id":2842976496,"id_str":"2842976496","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052660"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670749184,"id_str":"663727963670749184","text":"\u0627\u0644\u0645\u0648\u0644\u062f \u0628\u062f\u0627\u0644 \u0627\u0644\u0624\u0634\u0631 #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":799120393,"id_str":"799120393","name":"\u2744 \u0639\u0628\u062f\ufe82\ufedf\u0639\u064e\u0632\u0651\u064a\u0632 '*","screen_name":"nzf007","location":"K.S.A - al ahssa ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0645\u0627 \u0627\u0646\u0627 \u0639\u0644\u064a\u0647 \u0644\u064a\u0633 \u0645\u0646 \u0634\u0623\u0646\u0643 \u0627\u0646 \u0644\u0645 \u064a\u0636\u0631\u0643 .. \u0647\u0646\u0627 \u0627\u0644\u0639\u0634\u0652\u0642\u064f \u062f\u0627\u0626\u0645\u0627\u064b \u0644\u0644\u0632\u0639\u0645\u0627\u0627\u0621 .. HFC : #MUFC# \u062a\u0627\u0628\u0639\u0646\u064a \u0623\u062a\u0627\u0628\u0639\u0643\u0643\u064e \u2661\u2661*","protected":false,"verified":false,"followers_count":4735,"friends_count":4155,"listed_count":0,"favourites_count":322,"statuses_count":10521,"created_at":"Sun Sep 02 21:58:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607616476728561664\/u2rkN416_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607616476728561664\/u2rkN416_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/799120393\/1428081464","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[18,34]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963662233600,"id_str":"663727963662233600","text":"RT @bon_9_: [RT\u2665] \uc628\ub9acSD \ucee4\ubbf8\uc158\/\uc8fc\uad34\uc9e4 \ubc1b\uc2b5\ub2c8\ub2e4~ \ud398\uc774\uc9c0\uac00 \ub530\ub85c \uc5c6\uc73c\ubbc0\ub85c \uba58\uc158\uc8fc\uc138\uc694!\n-150\uad34\/5000\uc6d0\n-\ucd5c\ub3005\uc77c\ub9cc\uc5d0 \uc791\uc5c5\n-\uc2ac\ub86f\uc81c\ud55cx\n\uc54c\ud2f0\ud574\uc8fc\uc2e0 \ubd84\ub4e4 \uc911 \ud55c\ubd84 \uc6d0\ud558\ub294 \uce90\ub9ad\ud130 SD\ub85c \uadf8\ub824\ub4dc\ub824\uc694! https:\/\/t.co\/DIRx0a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008200848,"id_str":"3008200848","name":"\ub9de\uc7a5","screen_name":"0157decde4384d6","location":null,"url":null,"description":"\uac8c\uc784\n-[\uc0ac\uc774\ud37c\uc988:\ud55c\ub300\ub9cc\ub9de\uc7a5\/70\uae09 \uc8fc\uce90x], [\ucd5c\uac15\uc758\uad70\ub2e8:\ub450\ub300\ub9cc\ub9de\uc7a5\/\uc8fc\uce90:\ud1b0] [\uc138\ube10\ub098\uc774\uce20\/\uc138\uc778 \uc81c\uc774\ube0c \uc704\uc8fc \ud50c\ub808\uc774]\n\uc560\ub2c8 - [\ud788\uc5b4\ub85c\ubb3c \uc874\uc88b!-\ubca410, \uc2a4\ud30c\uc774\ub354\ub9e8, \uc6d0\ud380\ub9e8 \ub4f1]","protected":false,"verified":false,"followers_count":45,"friends_count":93,"listed_count":0,"favourites_count":185,"statuses_count":5058,"created_at":"Mon Feb 02 17:30:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653849362485764097\/XJMUa4y4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653849362485764097\/XJMUa4y4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3008200848\/1431112363","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:06:38 +0000 2015","id":663326759249571840,"id_str":"663326759249571840","text":"[RT\u2665] \uc628\ub9acSD \ucee4\ubbf8\uc158\/\uc8fc\uad34\uc9e4 \ubc1b\uc2b5\ub2c8\ub2e4~ \ud398\uc774\uc9c0\uac00 \ub530\ub85c \uc5c6\uc73c\ubbc0\ub85c \uba58\uc158\uc8fc\uc138\uc694!\n-150\uad34\/5000\uc6d0\n-\ucd5c\ub3005\uc77c\ub9cc\uc5d0 \uc791\uc5c5\n-\uc2ac\ub86f\uc81c\ud55cx\n\uc54c\ud2f0\ud574\uc8fc\uc2e0 \ubd84\ub4e4 \uc911 \ud55c\ubd84 \uc6d0\ud558\ub294 \uce90\ub9ad\ud130 SD\ub85c \uadf8\ub824\ub4dc\ub824\uc694! https:\/\/t.co\/DIRx0a6MhZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992988239,"id_str":"2992988239","name":"bong9(1\/5)","screen_name":"bon_9_","location":null,"url":null,"description":"\ub738\ud568","protected":false,"verified":false,"followers_count":37,"friends_count":41,"listed_count":0,"favourites_count":2348,"statuses_count":504,"created_at":"Fri Jan 23 06:07:03 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574482146447904769\/YjNeR6Od.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574482146447904769\/YjNeR6Od.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659387614227595265\/uh5K_pb6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659387614227595265\/uh5K_pb6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992988239\/1446045259","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663326305350471680,"id_str":"663326305350471680","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663326305350471680,"id_str":"663326305350471680","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}}},{"id":663326324166119424,"id_str":"663326324166119424","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbxwIWUAAoVSb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbxwIWUAAoVSb.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}}},{"id":663326349617201152,"id_str":"663326349617201152","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbzO8XAAAPjZx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbzO8XAAAPjZx.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bon_9_","name":"bong9(1\/5)","id":2992988239,"id_str":"2992988239","indices":[3,10]}],"symbols":[],"media":[{"id":663326305350471680,"id_str":"663326305350471680","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663326759249571840,"source_status_id_str":"663326759249571840","source_user_id":2992988239,"source_user_id_str":"2992988239"}]},"extended_entities":{"media":[{"id":663326305350471680,"id_str":"663326305350471680","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbwqCWUAAKN0h.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663326759249571840,"source_status_id_str":"663326759249571840","source_user_id":2992988239,"source_user_id_str":"2992988239"},{"id":663326324166119424,"id_str":"663326324166119424","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbxwIWUAAoVSb.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbxwIWUAAoVSb.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663326759249571840,"source_status_id_str":"663326759249571840","source_user_id":2992988239,"source_user_id_str":"2992988239"},{"id":663326349617201152,"id_str":"663326349617201152","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSbzO8XAAAPjZx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSbzO8XAAAPjZx.png","url":"https:\/\/t.co\/DIRx0a6MhZ","display_url":"pic.twitter.com\/DIRx0a6MhZ","expanded_url":"http:\/\/twitter.com\/bon_9_\/status\/663326759249571840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663326759249571840,"source_status_id_str":"663326759249571840","source_user_id":2992988239,"source_user_id_str":"2992988239"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080052663"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666419712,"id_str":"663727963666419712","text":"RT @histopian: \"\uc544\uc774\uc720\uc758 \ub178\ub7ab\ub9d0\uc740 \uc81c\uc81c\ub97c \uc65c\uace1\ud55c \uac83\uc73c\ub85c '\uc62c\ubc14\ub978' \ud574\uc11d\uc774 \uc544\ub2c8\ub2e4\"(\ucd9c\ud310\uc0ac)\n\"\uc544\uc774\uc720\uc758 \ub178\ub7ab\ub9d0\uc740 \uad50\ubb18\ud558\uac8c \uc544\ub3d9\uc131\uc560\ub97c \ubd80\ucd94\uae34\ub2e4\"(\uc77c\ubd80 \ub124\ud2f0\uc98c)\n\uc774\uac8c \uc5ed\uc0ac\uad50\uacfc\uc11c \uad6d\uc815\ud654\uac00 \uac00\ub2a5\ud55c \ubb38\ud654\ud48d\ud1a0\uc77c \uac81\ub2c8\ub2e4.\n\ub098\ub9cc\uc758 \uc62c\ubc14\ub978 \uc81c\uc81c, \ub098\ub9cc\uc758 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":469035640,"id_str":"469035640","name":"\uc7dd\uace0","screen_name":"shsh7600","location":null,"url":null,"description":"\ubd80\uc0b0 \ucd9c\uc2e0. \uc815\uc758\uac00 \uc2b9\ub9ac\ud558\uace0 \uc0c1\uc2dd\uc774 \uc9c0\ubc30\ud558\ub294 \uc0ac\ud68c\ub97c \uafc8\uafb8\ub294 \uce5c\ub178 \ubcf4\uc218\uc8fc\uc758\uc790..... \ub4dc\uace8 \uac19\uc740 \uc9c0\ub3c4\uc790\uac00 \ub300\ud1b5\ub839\uc774 \ub418\uc5b4 \ub098\uc05c\ub188\ub4e4\uc758 \uc804\uc131\uc2dc\ub300\ub97c \ub05d\ub0b4\uc57c","protected":false,"verified":false,"followers_count":14770,"friends_count":14505,"listed_count":69,"favourites_count":1584,"statuses_count":67649,"created_at":"Fri Jan 20 05:00:38 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1767877880\/________normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1767877880\/________normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469035640\/1406031546","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:21:35 +0000 2015","id":663572116386680833,"id_str":"663572116386680833","text":"\"\uc544\uc774\uc720\uc758 \ub178\ub7ab\ub9d0\uc740 \uc81c\uc81c\ub97c \uc65c\uace1\ud55c \uac83\uc73c\ub85c '\uc62c\ubc14\ub978' \ud574\uc11d\uc774 \uc544\ub2c8\ub2e4\"(\ucd9c\ud310\uc0ac)\n\"\uc544\uc774\uc720\uc758 \ub178\ub7ab\ub9d0\uc740 \uad50\ubb18\ud558\uac8c \uc544\ub3d9\uc131\uc560\ub97c \ubd80\ucd94\uae34\ub2e4\"(\uc77c\ubd80 \ub124\ud2f0\uc98c)\n\uc774\uac8c \uc5ed\uc0ac\uad50\uacfc\uc11c \uad6d\uc815\ud654\uac00 \uac00\ub2a5\ud55c \ubb38\ud654\ud48d\ud1a0\uc77c \uac81\ub2c8\ub2e4.\n\ub098\ub9cc\uc758 \uc62c\ubc14\ub978 \uc81c\uc81c, \ub098\ub9cc\uc758 \uc62c\ubc14\ub978 \ub300\ud55c\ubbfc\uad6d.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155742974,"id_str":"155742974","name":"\uc804\uc6b0\uc6a9","screen_name":"histopian","location":"Seoul, Korea","url":"http:\/\/koreantweeters.com\/histopian","description":"\uc5b5\uc6b8\ud55c \ud76c\uc0dd\uc774 \uc5c6\ub294 \uc2dc\ub300\ub97c \uae30\uc6d0\ud569\ub2c8\ub2e4. \uc695\uc124 \uc5c6\ub294 \uccad\uc815 \ud0c0\uc784\ub77c\uc778\uc744 \uc9c0\ud5a5\ud569\ub2c8\ub2e4. \uc695\ud558\ub294 \uc790, \uc88c\uc6b0\ubd84\uac04 \ubabb\ud558\ub294 \uc790, \uc9c0\ub098\uce58\uac8c \ubb34\uc2dd\ud55c \uc790\ub294 \ube14\ub85d\ud569\ub2c8\ub2e4. \uc870\uc120\uc77c\ubcf4\uc758 \ubc1c\ucdcc \uc778\uc6a9\uc744 \uc5c4\uae08\ud569\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":111761,"friends_count":716,"listed_count":2629,"favourites_count":88,"statuses_count":12057,"created_at":"Tue Jun 15 00:04:50 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"15122D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450188913\/x181944fd149ab58a5a3250226abb0ea.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450188913\/x181944fd149ab58a5a3250226abb0ea.jpg","profile_background_tile":false,"profile_link_color":"0A0A0A","profile_sidebar_border_color":"FDD1AE","profile_sidebar_fill_color":"CC8068","profile_text_color":"90716E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663520607233937408\/b99T5J-U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663520607233937408\/b99T5J-U_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":444,"favorite_count":101,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"histopian","name":"\uc804\uc6b0\uc6a9","id":155742974,"id_str":"155742974","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963637092354,"id_str":"663727963637092354","text":"@i_h_sk_xxx \n\u305b\u30fc\u304b\uff01\u65e5\u7acb\u5e02\u3063\u3066\u305b\u30fc\u304b\u3093\u3061\u304b\u3089\u8fd1\u3044\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718237092220928,"in_reply_to_status_id_str":"663718237092220928","in_reply_to_user_id":1917179443,"in_reply_to_user_id_str":"1917179443","in_reply_to_screen_name":"i_h_sk_xxx","user":{"id":2792157924,"id_str":"2792157924","name":"\u3055\u3068\u308c\u306a","screen_name":"zja1443","location":null,"url":null,"description":"\u9577\u4e95 - \u660e\u5149 - \u56fd\u58eb\u8218 \u2721 \u5c45\u3048\u3050'15 \u2721 LDH \/ J.khan","protected":false,"verified":false,"followers_count":262,"friends_count":237,"listed_count":0,"favourites_count":1897,"statuses_count":3786,"created_at":"Fri Sep 05 15:44:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661055055383040002\/F79kwoMX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661055055383040002\/F79kwoMX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792157924\/1446437893","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"i_h_sk_xxx","name":"\u5e73\u548c\u30ba\u30e9","id":1917179443,"id_str":"1917179443","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052657"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963674796032,"id_str":"663727963674796032","text":"RT @bieberdepth: \"SOON\" IS FINALLY HERE! #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2869815359,"id_str":"2869815359","name":"CD9 es mi vida","screen_name":"gomez_kavanatic","location":"Nezahualc\u00f3yotl, M\u00e9xico","url":null,"description":"CD9-BigTimeRush-OneDirection.AbrahamMateo-MarioBautista-MichaelJackson.SelenaGomez-VictoriaJustice-SabrinaCarpenter-TaylorSwift.","protected":false,"verified":false,"followers_count":314,"friends_count":630,"listed_count":2,"favourites_count":1281,"statuses_count":1649,"created_at":"Mon Nov 10 00:00:26 +0000 2014","utc_offset":-21600,"time_zone":"Monterrey","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594674439754686464\/rmESSpNk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594674439754686464\/rmESSpNk.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650038005500022784\/FLeFngPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650038005500022784\/FLeFngPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2869815359\/1443725849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:47:45 +0000 2015","id":663473005314629632,"id_str":"663473005314629632","text":"\"SOON\" IS FINALLY HERE! #5DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2768245779,"id_str":"2768245779","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","screen_name":"bieberdepth","location":null,"url":null,"description":"our new album 'purpose' is out nov 13th","protected":false,"verified":false,"followers_count":51421,"friends_count":34680,"listed_count":80,"favourites_count":15751,"statuses_count":30033,"created_at":"Fri Sep 12 21:02:02 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375736284295168\/jH6UWrmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375736284295168\/jH6UWrmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2768245779\/1446996075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14004,"favorite_count":18701,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[24,41]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[41,58]}],"urls":[],"user_mentions":[{"screen_name":"bieberdepth","name":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800","id":2768245779,"id_str":"2768245779","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052666"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963662327808,"id_str":"663727963662327808","text":"RT @SportsCenter: Three unbeatens remain.\n\nFor the first time in NFL history, three teams are 8-0. https:\/\/t.co\/5ipbDGTu27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85360572,"id_str":"85360572","name":"\u2764\ufe0fDijoneEunique\u2764\ufe0f","screen_name":"BlowMyLifeAway_","location":"Fayetteville to Columbia","url":null,"description":"One Life To Live...","protected":false,"verified":false,"followers_count":1010,"friends_count":817,"listed_count":2,"favourites_count":797,"statuses_count":27799,"created_at":"Mon Oct 26 17:00:02 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DB0463","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622253238\/ynfctff0bs4nl5apto0c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622253238\/ynfctff0bs4nl5apto0c.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663473093185286144\/lixvDO7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663473093185286144\/lixvDO7b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85360572\/1408949263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:06 +0000 2015","id":663720221124001792,"id_str":"663720221124001792","text":"Three unbeatens remain.\n\nFor the first time in NFL history, three teams are 8-0. https:\/\/t.co\/5ipbDGTu27","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26257166,"id_str":"26257166","name":"SportsCenter","screen_name":"SportsCenter","location":"Bristol, CT","url":null,"description":"All things sports. Nominate top plays using #SCtop10. *If you tweet or otherwise send us content, you consent to ESPN using and showcasing it in any media.*","protected":false,"verified":true,"followers_count":21854744,"friends_count":1602,"listed_count":40181,"favourites_count":547,"statuses_count":68731,"created_at":"Tue Mar 24 15:28:02 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26257166\/1441721587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1438,"favorite_count":1847,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720220536807424,"id_str":"663720220536807424","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","url":"https:\/\/t.co\/5ipbDGTu27","display_url":"pic.twitter.com\/5ipbDGTu27","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663720221124001792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720220536807424,"id_str":"663720220536807424","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","url":"https:\/\/t.co\/5ipbDGTu27","display_url":"pic.twitter.com\/5ipbDGTu27","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663720221124001792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SportsCenter","name":"SportsCenter","id":26257166,"id_str":"26257166","indices":[3,16]}],"symbols":[],"media":[{"id":663720220536807424,"id_str":"663720220536807424","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","url":"https:\/\/t.co\/5ipbDGTu27","display_url":"pic.twitter.com\/5ipbDGTu27","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663720221124001792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663720221124001792,"source_status_id_str":"663720221124001792","source_user_id":26257166,"source_user_id_str":"26257166"}]},"extended_entities":{"media":[{"id":663720220536807424,"id_str":"663720220536807424","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCBidXIAA6Rno.jpg","url":"https:\/\/t.co\/5ipbDGTu27","display_url":"pic.twitter.com\/5ipbDGTu27","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663720221124001792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663720221124001792,"source_status_id_str":"663720221124001792","source_user_id":26257166,"source_user_id_str":"26257166"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052663"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963645435904,"id_str":"663727963645435904","text":"\u4e43\u6728\u574246\u6df1\u5ddd\u9ebb\u8863\u306e\u6027\u683c\u306b\u3064\u3044\u3066\u5fb9\u5e95\u8abf\u67fb\uff01\uff01 \u4eba\u6c17\u6025\u4e0a\u6607\u306e\u7406\u7531\u306f\uff1f\uff1f \u51fa\u8eab\u9ad8\u6821\u3084\u5927\u5b66\u3001\u71b1\u611b\u5f7c\u6c0f\u306e\u5642\u306b\u3064\u3044\u3066\u3082\uff01 https:\/\/t.co\/yQ8rBXBi1q","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3420615466,"id_str":"3420615466","name":"\u5927\u91ce\u667a\u2665LOVE(*\u00b4\u2200\uff40*)","screen_name":"r0152fcabOono","location":null,"url":null,"description":"\u5927\u91ce\u667a\u306e\u30d5\u30a1\u30f3\u3067\u3059\u3002\u9aea\u578b\u3001\u30c0\u30f3\u30b9\u306e\u30ad\u30ec\u304c\u3059\u3070\u3089\u3057\u3044\uff01\uff01 \u30fe(*\u00b4\u2200\uff40*)\uff89 \u3084\u3063\u3071\u308a\u30ab\u30c3\u30b3\u30a4\u30a4\u3068\u601d\u3044\u307e\u3059\u2665 \u3053\u308c\u304b\u3089\u3082\u5fdc\u63f4\u3057\u3066\u3044\u304d\u305f\u3044\u3067\u3059\u3002\u7686\u3055\u3093\u3068\u60c5\u5831\u5171\u6709\u3057\u305f\u3044\u3067\u3059\u3002\u3069\u3057\u3069\u3057\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u266a\u266a","protected":false,"verified":false,"followers_count":25,"friends_count":56,"listed_count":0,"favourites_count":0,"statuses_count":11086,"created_at":"Thu Aug 13 17:49:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631885610173665280\/1UzknDGv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631885610173665280\/1UzknDGv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420615466\/1439488253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yQ8rBXBi1q","expanded_url":"http:\/\/geinonews01abc.seesaa.net\/","display_url":"geinonews01abc.seesaa.net","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052659"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666427905,"id_str":"663727963666427905","text":"RT @M_tomoyohi: \u5e30\u5b85\u3057\u305f\u307b\u307d\u5b50\u3061\u3083\u3093 https:\/\/t.co\/DFZuglpqhq","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1056545504,"id_str":"1056545504","name":"\u304f\u308c\u3044\u3055\u3093","screen_name":"claymore307","location":"\u52a0\u8cc0\u3055\u3093\u306e\u96a3","url":null,"description":"\u30a2\u30fc\u30af\u30b9\u3067\u795e\u55b0\u3044\u3067\u30a4\u30ab \u30a2\u30a4\u30b3\u30f3\u306f@Goddess_of_Fate\u69d8\u304b\u3089","protected":false,"verified":false,"followers_count":732,"friends_count":1138,"listed_count":13,"favourites_count":858,"statuses_count":60467,"created_at":"Thu Jan 03 01:12:08 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180580779\/lU2lGQIA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180580779\/lU2lGQIA.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530713582577524738\/R1nLDZFO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530713582577524738\/R1nLDZFO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056545504\/1398223755","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:22:43 +0000 2015","id":663602600097415168,"id_str":"663602600097415168","text":"\u5e30\u5b85\u3057\u305f\u307b\u307d\u5b50\u3061\u3083\u3093 https:\/\/t.co\/DFZuglpqhq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663282565520846849,"in_reply_to_status_id_str":"663282565520846849","in_reply_to_user_id":96759835,"in_reply_to_user_id_str":"96759835","in_reply_to_screen_name":"M_tomoyohi","user":{"id":96759835,"id_str":"96759835","name":"\u30de\u30c4\u30e2\u30c8 \u30c8\u30e2\u30e8\u30d2@2\u65e5\u76ee\u6771D-25b","screen_name":"M_tomoyohi","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=54642","description":"\u30d5\u30ea\u30fc\u3067\u30b2\u30fc\u30e0\u95a2\u4fc2\u306e\u30a4\u30e9\u30b9\u30c8\u306e\u304a\u4ed5\u4e8b\u3092\u3055\u305b\u3066\u9802\u3044\u3066\u304a\u308a\u307e\u3059\uff01 \u305f\u307e\u306b\u30b2\u30fc\u30e0\u96d1\u8a8c\u7b49\u3067\u3082\u63cf\u304b\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\uff01 \u3000\u304a\u4ed5\u4e8b\u306a\u3069\u306e\u3054\u4f9d\u983c\u7b49\u306f\u2192 asa_sotosiyo\u2606http:\/\/hotmail.com \u304b\u3089\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\uff01\uff08\u2606\u306f\uff20\u306b\u5909\u63db\u3057\u3066\u304f\u3060\u3055\u3044\uff09","protected":false,"verified":false,"followers_count":1211,"friends_count":312,"listed_count":70,"favourites_count":1012,"statuses_count":28791,"created_at":"Mon Dec 14 13:22:25 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599681316494258176\/hlwCTCWS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599681316494258176\/hlwCTCWS.png","profile_background_tile":false,"profile_link_color":"414BB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF0B2","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662186082633515008\/Nkt0lndd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662186082633515008\/Nkt0lndd_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":182,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"M_tomoyohi","name":"\u30de\u30c4\u30e2\u30c8 \u30c8\u30e2\u30e8\u30d2@2\u65e5\u76ee\u6771D-25b","id":96759835,"id_str":"96759835","indices":[3,14]}],"symbols":[],"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}},"source_status_id":663602600097415168,"source_status_id_str":"663602600097415168","source_user_id":96759835,"source_user_id_str":"96759835"}]},"extended_entities":{"media":[{"id":663602598730006528,"id_str":"663602598730006528","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXDDFUAAAIHk0.png","url":"https:\/\/t.co\/DFZuglpqhq","display_url":"pic.twitter.com\/DFZuglpqhq","expanded_url":"http:\/\/twitter.com\/M_tomoyohi\/status\/663602600097415168\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":1200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":283,"h":680,"resize":"fit"},"large":{"w":500,"h":1200,"resize":"fit"}},"source_status_id":663602600097415168,"source_status_id_str":"663602600097415168","source_user_id":96759835,"source_user_id_str":"96759835"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641286656,"id_str":"663727963641286656","text":"RT @WhoIsMelo: #NoFeelingsNovember","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169742749,"id_str":"169742749","name":"Haleigh","screen_name":"_hayhill","location":"Knoxville, TN","url":null,"description":"\u2022Knoxville, TN\u2022","protected":false,"verified":false,"followers_count":1127,"friends_count":1327,"listed_count":2,"favourites_count":1847,"statuses_count":18678,"created_at":"Fri Jul 23 02:00:28 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/326050194\/gcnhgdj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/326050194\/gcnhgdj.jpg","profile_background_tile":true,"profile_link_color":"875487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"7D797D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639924650017988608\/yXpyZhKP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639924650017988608\/yXpyZhKP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169742749\/1429105595","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:07 +0000 2015","id":663725510128615424,"id_str":"663725510128615424","text":"#NoFeelingsNovember","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396295148,"id_str":"396295148","name":"Melvin","screen_name":"WhoIsMelo","location":"DTX","url":null,"description":"maneuvering through distractions","protected":false,"verified":false,"followers_count":88062,"friends_count":45921,"listed_count":53,"favourites_count":3,"statuses_count":31109,"created_at":"Sun Oct 23 02:04:27 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437805931544326145\/NAkQ3y7J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437805931544326145\/NAkQ3y7J.jpeg","profile_background_tile":true,"profile_link_color":"E80927","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658413732553322496\/TsbfC79O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658413732553322496\/TsbfC79O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396295148\/1442792818","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":3,"entities":{"hashtags":[{"text":"NoFeelingsNovember","indices":[0,19]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NoFeelingsNovember","indices":[15,34]}],"urls":[],"user_mentions":[{"screen_name":"WhoIsMelo","name":"Melvin","id":396295148,"id_str":"396295148","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653799936,"id_str":"663727963653799936","text":"\\\uff8d\uff72\uff97\uff6f\uff7c\uff6c\uff72\/","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420554716,"id_str":"2420554716","name":"\u5449\u7e54\u3042\u304b\u3081\u304c\u306d","screen_name":"a_ka_me_ga_ne","location":"\u3051\u3075","url":null,"description":"\u5fcd\u6cd5\u4e00\u9031\u9593\u304c\u3042\u3063\u3068\u3044\u3046\u9593\u306b\u904e\u304e\u308b\u306e\u8853\u301c","protected":false,"verified":false,"followers_count":362,"friends_count":408,"listed_count":17,"favourites_count":14543,"statuses_count":26206,"created_at":"Mon Mar 31 13:40:40 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659206732044873728\/0qV5gVVX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659206732044873728\/0qV5gVVX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420554716\/1433030473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670581250,"id_str":"663727963670581250","text":"$UBN in M halt at 09:39:11 -- Individual Security Volatility Trading Pause","source":"\u003ca href=\"https:\/\/twitter.com\/HaltBot\" rel=\"nofollow\"\u003eTrading Halts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1468556084,"id_str":"1468556084","name":"Trading Halts","screen_name":"HaltBot","location":null,"url":null,"description":"Tweeting out US equity trading halts.","protected":false,"verified":false,"followers_count":522,"friends_count":7,"listed_count":18,"favourites_count":0,"statuses_count":19674,"created_at":"Thu May 30 00:16:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3731873132\/26ded5d4b9a9aef836f972f5eee0b4b1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3731873132\/26ded5d4b9a9aef836f972f5eee0b4b1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[{"text":"UBN","indices":[0,4]}]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963645472768,"id_str":"663727963645472768","text":"RT @farrxx_: Star light, star bright , first star i see tonight. I wish i may, i wish i might, i wish my dream come true tonight \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1421240348,"id_str":"1421240348","name":"frdy.","screen_name":"HFirdayu","location":null,"url":"http:\/\/ask.fm\/HFirdayu","description":"life tidak seindah novel selalu win bahagia","protected":false,"verified":false,"followers_count":3860,"friends_count":1660,"listed_count":3,"favourites_count":2046,"statuses_count":47083,"created_at":"Sat May 11 17:53:47 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632182760447197184\/MmeCFMbF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632182760447197184\/MmeCFMbF.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663701713317052418\/qNrWyJAe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663701713317052418\/qNrWyJAe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1421240348\/1443345401","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653199835137,"id_str":"663727653199835137","text":"Star light, star bright , first star i see tonight. I wish i may, i wish i might, i wish my dream come true tonight \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":727376388,"id_str":"727376388","name":"to.ot","screen_name":"farrxx_","location":"Welcome to frs world","url":null,"description":"hahahaha","protected":false,"verified":false,"followers_count":903,"friends_count":804,"listed_count":0,"favourites_count":7234,"statuses_count":17426,"created_at":"Tue Jul 31 02:31:56 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175116541\/UCwsUKXy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175116541\/UCwsUKXy.jpeg","profile_background_tile":true,"profile_link_color":"381447","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662658803997896704\/cMMK1wW4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662658803997896704\/cMMK1wW4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/727376388\/1445945692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"farrxx_","name":"to.ot","id":727376388,"id_str":"727376388","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052659"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666382848,"id_str":"663727963666382848","text":"Dialoga Claudia Pavlovich con empresarios para detonar\u00a0inversi\u00f3n https:\/\/t.co\/hQ738WTTbr","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2534902785,"id_str":"2534902785","name":"Portal Quintana Roo","screen_name":"portalqr","location":"Quintana Roo, M\u00e9xico","url":null,"description":"Reportes y noticias desde Quintana Roo","protected":false,"verified":false,"followers_count":111,"friends_count":139,"listed_count":0,"favourites_count":19,"statuses_count":2285,"created_at":"Thu May 08 10:18:32 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629380451895873537\/PJPm4TEx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629380451895873537\/PJPm4TEx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2534902785\/1438890981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hQ738WTTbr","expanded_url":"http:\/\/mayacomunicacion.com.mx\/?p=3719","display_url":"mayacomunicacion.com.mx\/?p=3719","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963674820608,"id_str":"663727963674820608","text":"RT @kiyuko4179: \u30b9\u30b2\u30a7\u3088\u306a\u3001\u30de\u30ae\u3002\u6700\u521d\u306f\u30a2\u30e9\u30d3\u30a2\u30f3\u30ca\u30a4\u30c8\u3060\u3063\u305f\u306e\u306b\u9014\u4e2d\u30cf\u30ea\u30fc\u30dd\u30c3\u30bf\u30fc\u306b\u306a\u3063\u3066\u3001\u3053\u306e\u9593\u307e\u3067\u4e09\u56fd\u5fd7\u3060\u3063\u305f\u306e\u306b\u4eca\u30d5\u30a1\u30a4\u30ca\u30eb\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u3060\u3082\u3093\u306a\u3002\u30b9\u30b2\u30a7\u3088\u306a\u3001\u30de\u30ae\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2381878686,"id_str":"2381878686","name":"\u771f\u3093\u4e2d\u306e\u3086\u3046\u3086\u306f\u9752\u5cf0\u306b\u98e2\u3048\u308b","screen_name":"yu856","location":"\u8910\u8272\u30ad\u30e3\u30e9\u306e\u3044\u308b\u5834\u6240\u3002\u6d3b\u52d5\u306f\u5ca1\u5c71","url":null,"description":"\u601d\u3063\u305f\u3053\u3068\u3092\u601d\u3063\u305f\u3088\u3046\u306b\u545f\u304d\u307e\u3059\u3002\u30b3\u30b9\u30d7\u30ec\u3059\u308b\u4eba\u306a\u306e\u3067\u30b3\u30b9\u30d7\u30ec\u5199\u771f\u3082\u591a\u3005\u3002\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u9ed2\u30d0\u30b9\/\u30ae\u30e3\u30b0\u65e5\/\u30d8\u30bf\u30ea\u30a2\/\u66c7\u5929\/\u3068\u3046\u3089\u3076\/\u30e9\u30d6\u30e9\u30a4\u30d6\/NARUTO\/BLEACH\/\u7a2e\u6751\u4f5c\u54c1\/\u30b3\u30b2\u3069\u3093\u307c\u4f5c\u54c1","protected":false,"verified":false,"followers_count":343,"friends_count":315,"listed_count":26,"favourites_count":13346,"statuses_count":40140,"created_at":"Mon Mar 10 09:48:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661593450177949696\/ug4Z4HTS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661593450177949696\/ug4Z4HTS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2381878686\/1418024483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 11:01:46 +0000 2015","id":662223272335929345,"id_str":"662223272335929345","text":"\u30b9\u30b2\u30a7\u3088\u306a\u3001\u30de\u30ae\u3002\u6700\u521d\u306f\u30a2\u30e9\u30d3\u30a2\u30f3\u30ca\u30a4\u30c8\u3060\u3063\u305f\u306e\u306b\u9014\u4e2d\u30cf\u30ea\u30fc\u30dd\u30c3\u30bf\u30fc\u306b\u306a\u3063\u3066\u3001\u3053\u306e\u9593\u307e\u3067\u4e09\u56fd\u5fd7\u3060\u3063\u305f\u306e\u306b\u4eca\u30d5\u30a1\u30a4\u30ca\u30eb\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u3060\u3082\u3093\u306a\u3002\u30b9\u30b2\u30a7\u3088\u306a\u3001\u30de\u30ae\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":127159851,"id_str":"127159851","name":"\u304d\u3086\u5b50\u3001\u304a\u3061\u3064\u304d\u306a\u3055\u3044\u306a","screen_name":"kiyuko4179","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=1688787","description":"\u6210\u4eba\u6e08\uff0f\u30de\u30ae(\u30b7\u30f3\u30b8\u30e3)\u3001\u30c0\u30f3\u6226(\u90f7\u4ed9)\u3002\u30b8\u30e3\u30fc\u30d5\u30a1\u30eb\u4e3b\u7fa9\u3067\u30b7\u30f3\u69d8\u306f\u5b97\u6559\u3001\u5b50\u30b8\u30e3\u3061\u3083\u3093\u306b\u5922\u4e2d\u3002\u3089\u304f\u304c\u304d\u6295\u3052\u3066\u904a\u3073\u307e\u3059\u3002\u672c\u8a8c&\u30de\u30f3\u30ac\u30ef\u30f3\u6d3e\u3002\u9375\u57a2\u30fb\u672a\u6210\u5e74\u306e\u65b9\u306b\u306f\u5fc5\u305a\u3057\u3082\u30d5\u30a9\u30ed\u30d0\u306f\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u3002\u9375\u639b\u3051\u6c17\u307e\u3050\u308c\u3002","protected":false,"verified":false,"followers_count":556,"friends_count":272,"listed_count":16,"favourites_count":2510,"statuses_count":56354,"created_at":"Sun Mar 28 07:41:10 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655229179118546944\/KRlEAhBs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655229179118546944\/KRlEAhBs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/127159851\/1397146501","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3891,"favorite_count":2367,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kiyuko4179","name":"\u304d\u3086\u5b50\u3001\u304a\u3061\u3064\u304d\u306a\u3055\u3044\u306a","id":127159851,"id_str":"127159851","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052666"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670626305,"id_str":"663727963670626305","text":"@fender071014 @sushi____sushi @zelbja7yafss \u30d5\u30b6\u30b1\u30f3\u30ca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727845089259520,"in_reply_to_status_id_str":"663727845089259520","in_reply_to_user_id":2382207456,"in_reply_to_user_id_str":"2382207456","in_reply_to_screen_name":"fender071014","user":{"id":2410873574,"id_str":"2410873574","name":"\u304a\u30fc\u308f\u3060","screen_name":"o3ugboy","location":"\u3068\u3093\u307a\u30fcE\u68df","url":null,"description":"\u3059\u3068\u308c\u3093 \u3048\u3075\u3048\u3075 \u3042\u3059\u3066\u308d \u305f\u307e\u306bLCC","protected":false,"verified":false,"followers_count":603,"friends_count":580,"listed_count":12,"favourites_count":70628,"statuses_count":57603,"created_at":"Tue Mar 25 11:39:03 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622049179968233472\/HtfCRQR2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622049179968233472\/HtfCRQR2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2410873574\/1446466870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fender071014","name":"\u3054\u304f\u3060\u3093","id":2382207456,"id_str":"2382207456","indices":[0,13]},{"screen_name":"sushi____sushi","name":"\u308f\u305f\u3044","id":229498242,"id_str":"229498242","indices":[14,29]},{"screen_name":"zelbja7yafss","name":"\u3055\u3055\u3057\u3087\u3046","id":310740843,"id_str":"310740843","indices":[30,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666427904,"id_str":"663727963666427904","text":"\u4e43\u6728\u574246\u6589\u85e4\u512a\u91cc\u306e\u71b1\u611b\u767a\u899a\uff01\uff1f \u5f7c\u6c0f\u3068\u306e\u30d7\u30ea\u30af\u30e9\u6d41\u51fa\u304c\u539f\u56e0\uff1f\uff1f \u771f\u76f8\u306f\u30fb\u30fb\u30fb \u51e6\u5206\u306f\u3069\u3046\u306a\u3063\u305f\u306e\uff1f https:\/\/t.co\/VCuvO1pYfg","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3311105826,"id_str":"3311105826","name":"\u77f3\u7530\u6674\u9999\u2606\uff9f+(\u8278\uff9f\u0414\u00b0)\uff7c\uff6d\uff83\uff77\uff6f\u2605","screen_name":"k0081Ishida","location":null,"url":null,"description":"\u77f3\u7530\u6674\u9999\u306b\u5922\u4e2d\u306a\u5927\u5b66\u751f\u3067\u3059\u3002\u9aea\u578b\u3001\u7b11\u9854\u304c\uff9f+(\u8278\uff9f\u0414\u00b0)\uff7c\uff6d\uff83\uff77\uff6f\u2605\u904e\u304e\u307e\u3059\u30fb\u30fb\u30fb\u3002\u2665 \u30e9\u30a4\u30d6\u306b\u307e\u305f\u884c\u304d\u305f\u3044\u3067\u3059\uff5e\uff01\uff01 \u76f4\u63a5\u4f1a\u3063\u3066\u63e1\u624b\u3082\u3057\u305f\u3044\uff01\uff01 \u30d5\u30a1\u30f3\u306e\u65b9\u3001\u662f\u975e\u4ef2\u826f\u304f\u306a\u3063\u3066\u304f\u3060\u3055\u3044\u3002(^^) \u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\uff01\uff01","protected":false,"verified":false,"followers_count":35,"friends_count":55,"listed_count":0,"favourites_count":0,"statuses_count":11416,"created_at":"Mon Aug 10 05:27:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630611979523063808\/3gyxVCPG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630611979523063808\/3gyxVCPG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311105826\/1439184602","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VCuvO1pYfg","expanded_url":"http:\/\/geinonews01abc.seesaa.net\/","display_url":"geinonews01abc.seesaa.net","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641278464,"id_str":"663727963641278464","text":"\u4e88\u7d04\u7248\u306e\u3001\u30e9\u30a4\u30d6\u30d1\u30fc\u30c8\u304c\u5404\u30ad\u30e3\u30e9\u306e\u30ab\u30c3\u30c8\u591a\u3081\u3067\u500b\u5225\u306b\u7de8\u96c6\u3055\u308c\u3066\u308b\u306a\u3089\u305c\u3093\u305c\u3093\u5168\u90e8\u8cb7\u3046\u3093\u3060\u3051\u3069\u306a\u30fc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319590707,"id_str":"319590707","name":"\u5fa1\u6851","screen_name":"star_miRin","location":"\u5e4c\u7b75\u6cca\u5730\u3001\u76f8\u6a21\u56fd","url":null,"description":"\u8150\u5973\u5b50\u3068\u540d\u4e57\u308a\u7d9a\u3051\u3066\u5e7e\u661f\u971c\u2026\u305d\u308d\u305d\u308d\u5973\u5b50\u3068\u8868\u8a18\u3059\u308b\u306e\u3082\u304a\u3053\u304c\u307e\u3057\u3044\u5e74\u9f62\u3002\u5510\u7a81\u306b\u4e0b\u30cd\u30bf\u3068\u304b\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u3002\u30b8\u30e3\u30f3\u30eb\u306f\u96d1\u98df\u306a\u304c\u3089\u3001\u6700\u8fd1\u30bd\u30a6\u30c8\u30b5\u3001\u4e09\u65e5\u6708\u4e2d\u5fc3\u306b\u3070\u304b\u308a\u9a12\u3044\u3067\u3044\u307e\u3059\u3002\u9577\u304f\u3044\u308b\u306e\u306f\u5fcd\u305f\u307e\u3002\u9262\u5c4b\u81f3\u9ad8\u3002\u4e94\u5e74\u304c\u4ef2\u826f\u3057\u306a\u3089\u305d\u308c\u3067\u3044\u3044\u3002BSR\u306f\u702c\u6238\u5185\u3002\u6587\u5b57\u66f8\u304d\u3002RKRN\u3067MMD\u3082\u52c9\u5f37\u4e2d\u3002","protected":false,"verified":false,"followers_count":49,"friends_count":68,"listed_count":6,"favourites_count":126,"statuses_count":9760,"created_at":"Sat Jun 18 11:33:59 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591777036340834304\/XqlcSlMc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591777036340834304\/XqlcSlMc_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641221120,"id_str":"663727963641221120","text":"\u5d50\u30fb\u4e8c\u5bae\u548c\u4e5f\u3001\u95a2\u30b8\u30e3\u30cb\u221e\u30fb\u6751\u4e0a\u4fe1\u4e94\u306e\u3053\u3068\u304c\u5acc\u3044\uff1f https:\/\/t.co\/keACoRZkJI","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3657699314,"id_str":"3657699314","name":"\u95a2\u30b8\u30e3\u30cb\u221ed=(^O^)=b","screen_name":"g0033kanja","location":null,"url":null,"description":"\u95a2\u30b8\u30e3\u30cb\u221e\u306e\u30d5\u30a1\u30f3\u3067\u3059\uff01Twitter\u3067\u76db\u308a\u4e0a\u304c\u308a\u305f\u3044\u3093\u3067\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\uff08o^\u25bd\uff3eo)\/","protected":false,"verified":false,"followers_count":154,"friends_count":235,"listed_count":0,"favourites_count":0,"statuses_count":3630,"created_at":"Wed Sep 23 08:31:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647659722519121920\/3bnt6AHM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647659722519121920\/3bnt6AHM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3657699314\/1443249140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/keACoRZkJI","expanded_url":"http:\/\/musiclife19722.seesaa.net\/","display_url":"musiclife19722.seesaa.net","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963645476865,"id_str":"663727963645476865","text":"RT @celebstyle006: Justin bieber \u306ewhat do you mean\n\u3092\u8e0a\u308b\u30c0\u30f3\u30b5\u30fc\u304c\u6700\u5f37\u306b\u304b\u3063\u3053\u3044\u3044\u2764\ufe0f\n\n#\u304b\u3063\u3053\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT https:\/\/t.co\/wQ2ozRUSlD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333295794,"id_str":"2333295794","name":"\u308a\u3063\u305f(\u3084\u307e\u3057\u305f)","screen_name":"mika_minoriho","location":"\u798f\u5cf6\u2194\u65b0\u6f5f","url":"http:\/\/s.ameblo.jp\/rittan-313\/","description":"\u82e52\u2192\uff7b\uff9e\uff8d\uff9e\uff98\uff753 \u5439\u594f\u697d\u5f15\u9000 \u6625\u304b\u3089\u25ceNIT-interior design\u25ce\nMAX &\u5927\uff01\u5929\/PrizmaX\/M!LK\/\u3055\u304f\u3089\u3057\u3081\u3058\/\u91ce\u7530\u771f\u54c9\/\u4eee\u9762\u30e9\u30a4\u30c0\u30fc\/\u3067\u3093\u3071\u7d44.inc\/momotaro\/NPC\/","protected":false,"verified":false,"followers_count":836,"friends_count":1075,"listed_count":3,"favourites_count":5057,"statuses_count":8558,"created_at":"Sat Feb 08 10:58:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661562850402430976\/FQuEWimT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661562850402430976\/FQuEWimT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333295794\/1445766658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:06 +0000 2015","id":663716195527331841,"id_str":"663716195527331841","text":"Justin bieber \u306ewhat do you mean\n\u3092\u8e0a\u308b\u30c0\u30f3\u30b5\u30fc\u304c\u6700\u5f37\u306b\u304b\u3063\u3053\u3044\u3044\u2764\ufe0f\n\n#\u304b\u3063\u3053\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT https:\/\/t.co\/wQ2ozRUSlD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3330392277,"id_str":"3330392277","name":"\u6d77\u5916\u2661CelebSTYLE\uff1a\uff09","screen_name":"celebstyle006","location":"the queen of this world","url":null,"description":"girls just wanna have fun \u2764\ufe0f \u6d77\u5916\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\uff01 \u30ea\u30af\u30a8\u30b9\u30c8\u3082\u53d7\u3051\u4ed8\u3051\u3066\u3044\u307e\u3059\uff01\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f \u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059:)","protected":false,"verified":false,"followers_count":12096,"friends_count":9883,"listed_count":11,"favourites_count":408,"statuses_count":294,"created_at":"Wed Jun 17 00:45:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624105129621393410\/Jv4om0Wr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624105129621393410\/Jv4om0Wr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3330392277\/1439359569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":384,"favorite_count":650,"entities":{"hashtags":[{"text":"\u304b\u3063\u3053\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[52,65]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715970691694592,"id_str":"663715970691694592","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","url":"https:\/\/t.co\/wQ2ozRUSlD","display_url":"pic.twitter.com\/wQ2ozRUSlD","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663716195527331841\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715970691694592,"id_str":"663715970691694592","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","url":"https:\/\/t.co\/wQ2ozRUSlD","display_url":"pic.twitter.com\/wQ2ozRUSlD","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663716195527331841\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/640x360\/29Q8seu1qt90Q7dz.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/640x360\/29Q8seu1qt90Q7dz.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/320x180\/mpvvfNwFO5dawft7.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/pl\/BKO_GdgTMUx-e-0B.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/pl\/BKO_GdgTMUx-e-0B.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304b\u3063\u3053\u3044\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[71,84]}],"urls":[],"user_mentions":[{"screen_name":"celebstyle006","name":"\u6d77\u5916\u2661CelebSTYLE\uff1a\uff09","id":3330392277,"id_str":"3330392277","indices":[3,17]}],"symbols":[],"media":[{"id":663715970691694592,"id_str":"663715970691694592","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","url":"https:\/\/t.co\/wQ2ozRUSlD","display_url":"pic.twitter.com\/wQ2ozRUSlD","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663716195527331841\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663716195527331841,"source_status_id_str":"663716195527331841","source_user_id":3330392277,"source_user_id_str":"3330392277"}]},"extended_entities":{"media":[{"id":663715970691694592,"id_str":"663715970691694592","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663715970691694592\/pu\/img\/lRma5koRxbzV4H8_.jpg","url":"https:\/\/t.co\/wQ2ozRUSlD","display_url":"pic.twitter.com\/wQ2ozRUSlD","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663716195527331841\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663716195527331841,"source_status_id_str":"663716195527331841","source_user_id":3330392277,"source_user_id_str":"3330392277","video_info":{"aspect_ratio":[16,9],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/640x360\/29Q8seu1qt90Q7dz.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/640x360\/29Q8seu1qt90Q7dz.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/vid\/320x180\/mpvvfNwFO5dawft7.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/pl\/BKO_GdgTMUx-e-0B.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663715970691694592\/pu\/pl\/BKO_GdgTMUx-e-0B.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052659"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963670601728,"id_str":"663727963670601728","text":"RT @TheJustinStyle: Justin and Ellen relationship is amazing \n\nRetweet to vote @justinbieber Collaboration of the Year #AMAs https:\/\/t.co\/j\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322515078,"id_str":"322515078","name":"\u0e2a\u0e21\u0e28\u0e23\u0e35\u0e23\u0e31\u0e01\u0e08\u0e31\u0e2a\u0e15\u0e34\u0e19.","screen_name":"Biedallas_","location":"\u0e1f\u0e2d\u0e25\u0e1b\u0e31\u0e4a\u0e1a\u0e23\u0e31\u0e1a\u0e1f\u0e23\u0e35\u0e04\u0e27\u0e32\u0e21\u0e08\u0e31\u0e07\u0e44\u0e23.","url":"http:\/\/instagram.com\/toeyhaq_","description":"\u0e35Beliebers | Magcon | Mahomies | Directioner | Swiftie | arianator | #\u0e41\u0e2d\u0e04\u0e15\u0e34\u0e48\u0e07 #CameronDallas #\u0e08\u0e31\u0e07\u0e44\u0e23\u0e40\u0e01\u0e34\u0e23\u0e4c\u0e25 #NOV13 #Purpose #Cashew #CaraHileyKileyKendall","protected":false,"verified":false,"followers_count":1078,"friends_count":383,"listed_count":4,"favourites_count":12902,"statuses_count":31882,"created_at":"Thu Jun 23 09:10:40 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533191981741002756\/pjLNaYsB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533191981741002756\/pjLNaYsB.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656116007216353280\/y202I0iJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656116007216353280\/y202I0iJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322515078\/1442932686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:08 +0000 2015","id":663727022972248064,"id_str":"663727022972248064","text":"Justin and Ellen relationship is amazing \n\nRetweet to vote @justinbieber Collaboration of the Year #AMAs https:\/\/t.co\/juAy2ULhxL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1851877784,"id_str":"1851877784","name":"Justin Bieber Crew","screen_name":"TheJustinStyle","location":"Instagram:BieberBestPictures","url":"https:\/\/instagram.com\/bieberbestpictures\/","description":"If you don't like Justin Bieber, there is no reason for you to be on my account. The biggest pleasure in life is doing what people say you can't do","protected":false,"verified":false,"followers_count":145522,"friends_count":95084,"listed_count":383,"favourites_count":1552,"statuses_count":9761,"created_at":"Tue Sep 10 16:04:01 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"B1B4B5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431811046643204096\/gNv_dvAP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431811046643204096\/gNv_dvAP.jpeg","profile_background_tile":false,"profile_link_color":"A6ACAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451226533429252097\/TrdWfAcW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451226533429252097\/TrdWfAcW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1851877784\/1402864584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":158,"favorite_count":61,"entities":{"hashtags":[{"text":"AMAs","indices":[99,104]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[59,72]}],"symbols":[],"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}}},{"id":663727021785284608,"id_str":"663727021785284608","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":406,"resize":"fit"},"large":{"w":600,"h":406,"resize":"fit"},"small":{"w":340,"h":230,"resize":"fit"}}},{"id":663727021604909057,"id_str":"663727021604909057","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663727021822996480,"id_str":"663727021822996480","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":505,"resize":"fit"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":599,"h":505,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[119,124]}],"urls":[],"user_mentions":[{"screen_name":"TheJustinStyle","name":"Justin Bieber Crew","id":1851877784,"id_str":"1851877784","indices":[3,18]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[79,92]}],"symbols":[],"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"}]},"extended_entities":{"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021785284608,"id_str":"663727021785284608","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":406,"resize":"fit"},"large":{"w":600,"h":406,"resize":"fit"},"small":{"w":340,"h":230,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021604909057,"id_str":"663727021604909057","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021822996480,"id_str":"663727021822996480","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":505,"resize":"fit"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":599,"h":505,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052665"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963662188544,"id_str":"663727963662188544","text":"RT @kubricker_: \uc18c\ub77c\ub137\uc73c\ub85c \uc2dc\uc791\ub41c \uc774\uc57c\uae30\uac00,\n\ubaa8\ub4e0 \ub0a8\uc131\uc5d0 \ub300\ud55c \ud610\uc624\ub85c \uacb0\ub860\uc9c0\uc5b4\uc9c0\ub294 \uac83\uc774\n\ub098 \uc5ed\uc2dc\ub3c4 \ud55c \ub0a8\uc131\uc73c\ub85c\uc11c \uc874\ub098 \ubd88\ucf8c\ud558\ub2e4.\n\n\uc911\uc694\ud55c\uac74,\n\uc774 \ubd88\ucf8c\ud568\uc740 \uc18c\ub77c\ub137 \ub54c\ubb38\uc774\ub2e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3964291574,"id_str":"3964291574","name":"\u263a","screen_name":"homework_ch","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":24,"listed_count":0,"favourites_count":5,"statuses_count":63,"created_at":"Wed Oct 21 02:12:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656655312875745280\/zcFDm53F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656655312875745280\/zcFDm53F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3964291574\/1445429434","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:48:11 +0000 2015","id":662989928536535040,"id_str":"662989928536535040","text":"\uc18c\ub77c\ub137\uc73c\ub85c \uc2dc\uc791\ub41c \uc774\uc57c\uae30\uac00,\n\ubaa8\ub4e0 \ub0a8\uc131\uc5d0 \ub300\ud55c \ud610\uc624\ub85c \uacb0\ub860\uc9c0\uc5b4\uc9c0\ub294 \uac83\uc774\n\ub098 \uc5ed\uc2dc\ub3c4 \ud55c \ub0a8\uc131\uc73c\ub85c\uc11c \uc874\ub098 \ubd88\ucf8c\ud558\ub2e4.\n\n\uc911\uc694\ud55c\uac74,\n\uc774 \ubd88\ucf8c\ud568\uc740 \uc18c\ub77c\ub137 \ub54c\ubb38\uc774\ub2e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3116347021,"id_str":"3116347021","name":"\ub300\uac10","screen_name":"kubricker_","location":"\uc720\uad50\uc6d4\ub4dc","url":null,"description":"\ubb34\uc5c4\ud558\ub2e4, \uc774\ub188\ub4e4","protected":false,"verified":false,"followers_count":499,"friends_count":186,"listed_count":4,"favourites_count":19,"statuses_count":114,"created_at":"Mon Mar 30 03:56:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650653767889633280\/yS_nsOJ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650653767889633280\/yS_nsOJ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3116347021\/1441019526","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2517,"favorite_count":146,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kubricker_","name":"\ub300\uac10","id":3116347021,"id_str":"3116347021","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080052663"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963637084160,"id_str":"663727963637084160","text":"@namika2121 \u5b9f\u306f\u3053\u3063\u305d\u308a\u30e6\u30ad\u3061\u3083\u3093\u3068\u8466\u6728\u5834\u3061\u3083\u3093\u306e\u30a4\u30e9\u30b9\u30c8\u304c\u4ed5\u4e0a\u304c\u308b\u306e\u3092\u697d\u3057\u307f\u306b\u3057\u3066\u3044\u307e\u3059\/\/\/","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727676453097472,"in_reply_to_status_id_str":"663727676453097472","in_reply_to_user_id":97867570,"in_reply_to_user_id_str":"97867570","in_reply_to_screen_name":"namika2121","user":{"id":120137054,"id_str":"120137054","name":"REI","screen_name":"rain0806","location":"\u5343\u8449\u3068\u7bb1\u6839\u3068\u65e5\u5149\u3068\u718a\u672c\u3068\u6b27\u7c73\u306e\u72ed\u9593","url":null,"description":"\u3053\u3063\u3077\u308c\u3057\u3066\u307e\u3059\u3002 \u30da\u30c0\u30eb\u306b\u30c9\u30dc\u30f3\u4e2d\u3002\u8352\u6771\u3001\u798f\u65b0\u3001\u4eca\u9cf4\u3068\u304b\u3002\u7686\u597d\u304d\u3060\u3051\u3069\u30cf\u30b3\u30ac\u30af\u5bc4\u308a\u3002\u540c\u5b66\u6821\u540c\u5b66\u5e74\u306e\u7d44\u307f\u5408\u308f\u305b\u304c\u597d\u304d\u3067\u3059\u3002\u30d8\u30bf\u306f\u6545\u90f7\u3002\u597d\u304d\u306a\u3082\u306e\u3092\u597d\u304d\u306a\u3060\u3051\u3002","protected":false,"verified":false,"followers_count":591,"friends_count":446,"listed_count":13,"favourites_count":2656,"statuses_count":49778,"created_at":"Fri Mar 05 15:36:38 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653708672015577089\/U6hpA0My_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653708672015577089\/U6hpA0My_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120137054\/1446914014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"namika2121","name":"\u90a3\u7f8e\u83ef","id":97867570,"id_str":"97867570","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052657"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963666382849,"id_str":"663727963666382849","text":"@inftggom \uc6b0\ud6d7..........\uafac\ub2d8\uacfc \uacb0\ud63c.....\ud558\ub2e5\ud558\ub2e5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726202197118976,"in_reply_to_status_id_str":"663726202197118976","in_reply_to_user_id":3312963128,"in_reply_to_user_id_str":"3312963128","in_reply_to_screen_name":"inftggom","user":{"id":104209261,"id_str":"104209261","name":"\u2728\ub81d\u3132i\ub9c8\uce20\u2728","screen_name":"renki29","location":"\uc6b8\ud76c \uc774\uce58\ub9c8\uce20 \ub208\ud654\ub791 \ud55c\uc794 \ud560\uae4c?( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)\u314e","url":null,"description":"\uc7a1\ub355\uc758 \uae30\uc6b4\uc774 \uac15\ud558\uac8c \ub290\uaef4\uc9c0\ub294\uad70. \uc5bc\ub978 \ube14\uc5b8\ube14\uc744 \ud558\uc2dc\ub294\uac8c \uc815\uc2e0\uac74\uac15\uc5d0 \uc774\ub85c\uc6b8 \uac83 \uac19\uc544\uc624!'\u3145'*)\n\uc778\ud615\uacc4 @BJD_renki","protected":false,"verified":false,"followers_count":101,"friends_count":93,"listed_count":2,"favourites_count":120,"statuses_count":4262,"created_at":"Tue Jan 12 16:44:34 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557911479391776769\/zoPiOi_q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557911479391776769\/zoPiOi_q.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661923800653500416\/Si4ioMR8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661923800653500416\/Si4ioMR8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104209261\/1441124390","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inftggom","name":"\uafac\uaf9c\ubbf8","id":3312963128,"id_str":"3312963128","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080052664"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963658129408,"id_str":"663727963658129408","text":"RT @sweetnsexy_: https:\/\/t.co\/IMRfEJli4V","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454397932,"id_str":"2454397932","name":"Pretty Nuts","screen_name":"prettynuts__","location":null,"url":null,"description":"Show me how strong you are... I want to feel you so bad...","protected":false,"verified":false,"followers_count":2984,"friends_count":1264,"listed_count":5,"favourites_count":174,"statuses_count":11502,"created_at":"Sun Apr 20 07:24:44 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626593036886147072\/gGjHW9UK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626593036886147072\/gGjHW9UK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2454397932\/1438226384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:37:24 +0000 2015","id":662277537536598016,"id_str":"662277537536598016","text":"https:\/\/t.co\/IMRfEJli4V","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413366903,"id_str":"2413366903","name":"Sweet \u272a Sexy","screen_name":"sweetnsexy_","location":"University, FL","url":"https:\/\/twitter.com\/sweetnsexy_","description":"If you like sweet and sexy girls! You are going to want to follow me!","protected":false,"verified":false,"followers_count":8144,"friends_count":2294,"listed_count":35,"favourites_count":0,"statuses_count":18883,"created_at":"Thu Mar 27 00:20:17 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FAAAAA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617420374167302144\/YAGlyLDh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617420374167302144\/YAGlyLDh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413366903\/1436039488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662277537473654784,"id_str":"662277537473654784","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","url":"https:\/\/t.co\/IMRfEJli4V","display_url":"pic.twitter.com\/IMRfEJli4V","expanded_url":"http:\/\/twitter.com\/sweetnsexy_\/status\/662277537536598016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":640,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"},"medium":{"w":500,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662277537473654784,"id_str":"662277537473654784","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","url":"https:\/\/t.co\/IMRfEJli4V","display_url":"pic.twitter.com\/IMRfEJli4V","expanded_url":"http:\/\/twitter.com\/sweetnsexy_\/status\/662277537536598016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":640,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"},"medium":{"w":500,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sweetnsexy_","name":"Sweet \u272a Sexy","id":2413366903,"id_str":"2413366903","indices":[3,15]}],"symbols":[],"media":[{"id":662277537473654784,"id_str":"662277537473654784","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","url":"https:\/\/t.co\/IMRfEJli4V","display_url":"pic.twitter.com\/IMRfEJli4V","expanded_url":"http:\/\/twitter.com\/sweetnsexy_\/status\/662277537536598016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":640,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"},"medium":{"w":500,"h":640,"resize":"fit"}},"source_status_id":662277537536598016,"source_status_id_str":"662277537536598016","source_user_id":2413366903,"source_user_id_str":"2413366903"}]},"extended_entities":{"media":[{"id":662277537473654784,"id_str":"662277537473654784","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDh6VPWcAA5QLg.jpg","url":"https:\/\/t.co\/IMRfEJli4V","display_url":"pic.twitter.com\/IMRfEJli4V","expanded_url":"http:\/\/twitter.com\/sweetnsexy_\/status\/662277537536598016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":640,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"},"medium":{"w":500,"h":640,"resize":"fit"}},"source_status_id":662277537536598016,"source_status_id_str":"662277537536598016","source_user_id":2413366903,"source_user_id_str":"2413366903"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080052662"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963649810433,"id_str":"663727963649810433","text":"\u041f\u043e\u0447\u0435\u043c\u0443 \u0440\u0435\u0431\u0435\u043d\u043e\u043a \u0447\u0430\u0441\u0442\u043e \u043a\u0430\u043f\u0440\u0438\u0437\u043d\u0438\u0447\u0430\u0435\u0442, \u0434\u0430\u0448\u044c \u0435\u043c\u0443 \u0442\u0433\u0440\u0443\u0448\u043a\u0443 \u043e\u043d \u043d\u0435\u043c\u043d\u043e\u0433\u043e \u043f\u043e\u0438\u0433\u0440\u0430\u0435\u0442 \u0438 \u043e\u043f\u044f\u0442\u044c \u043a\u0430\u043f\u0440\u0438\u0437\u043d\u0438\u0447\u0430\u0435\u0442. \u0427\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441102309,"id_str":"441102309","name":"\u041f\u043e\u043b\u0438\u0446\u0430\u043d \u041c\u0430\u0442\u0432\u0435\u0439","screen_name":"matvey_politsan","location":"\u0423\u0433\u043b\u0438\u0447","url":"https:\/\/twitter.com\/matvey_politsan","description":"\u0423\u043c\u043d\u044b\u0439 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u043d\u0430\u0439\u0434\u0435\u0442 \u0432\u044b\u0445\u043e\u0434 \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e \u0441\u043b\u043e\u0436\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u041c\u0443\u0434\u0440\u044b\u0439 \u0432 \u044d\u0442\u043e\u043c \u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438 \u043d\u0435 \u043e\u043a\u0430\u0436\u0435\u0442\u0441\u044f","protected":false,"verified":false,"followers_count":17308,"friends_count":821,"listed_count":528,"favourites_count":98,"statuses_count":56328,"created_at":"Mon Dec 19 18:57:48 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719408022\/71__9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719408022\/71__9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441102309\/1436808247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080052660"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963645616128,"id_str":"663727963645616128","text":"RT @OnlyHipHopFacts: At the age of 13, @RZA used to sell fruits with ODB in downtown Brooklyn. https:\/\/t.co\/AKvk5mJEpj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381280295,"id_str":"381280295","name":"Dylan","screen_name":"D_Shull","location":"803","url":null,"description":"Always Strive And Prosper | #BigDreams #RIPGrandpa #RIPAJ #RIPLuq","protected":false,"verified":false,"followers_count":2478,"friends_count":3629,"listed_count":4,"favourites_count":13800,"statuses_count":14237,"created_at":"Wed Sep 28 01:55:13 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540086377065353216\/z2iJlI1U.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540086377065353216\/z2iJlI1U.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633448389468946432\/IYdE2EpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633448389468946432\/IYdE2EpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381280295\/1415155175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:00:33 +0000 2015","id":663581921860014080,"id_str":"663581921860014080","text":"At the age of 13, @RZA used to sell fruits with ODB in downtown Brooklyn. https:\/\/t.co\/AKvk5mJEpj","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834095274,"id_str":"834095274","name":"Only Hip Hop Facts","screen_name":"OnlyHipHopFacts","location":null,"url":null,"description":"We're varsity, chump, you're JV.","protected":false,"verified":false,"followers_count":277349,"friends_count":908,"listed_count":755,"favourites_count":871,"statuses_count":27488,"created_at":"Wed Sep 19 20:42:29 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095953696\/3d74f20a57d957f8db35afc708a51f85.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095953696\/3d74f20a57d957f8db35afc708a51f85.png","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/429508172730998786\/T6o94fTE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/429508172730998786\/T6o94fTE_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":287,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RZA","name":"RZA!","id":29663668,"id_str":"29663668","indices":[18,22]}],"symbols":[],"media":[{"id":663581920794660864,"id_str":"663581920794660864","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","url":"https:\/\/t.co\/AKvk5mJEpj","display_url":"pic.twitter.com\/AKvk5mJEpj","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663581921860014080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":416,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":500,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663581920794660864,"id_str":"663581920794660864","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","url":"https:\/\/t.co\/AKvk5mJEpj","display_url":"pic.twitter.com\/AKvk5mJEpj","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663581921860014080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":416,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":500,"h":416,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OnlyHipHopFacts","name":"Only Hip Hop Facts","id":834095274,"id_str":"834095274","indices":[3,19]},{"screen_name":"RZA","name":"RZA!","id":29663668,"id_str":"29663668","indices":[39,43]}],"symbols":[],"media":[{"id":663581920794660864,"id_str":"663581920794660864","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","url":"https:\/\/t.co\/AKvk5mJEpj","display_url":"pic.twitter.com\/AKvk5mJEpj","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663581921860014080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":416,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":500,"h":416,"resize":"fit"}},"source_status_id":663581921860014080,"source_status_id_str":"663581921860014080","source_user_id":834095274,"source_user_id_str":"834095274"}]},"extended_entities":{"media":[{"id":663581920794660864,"id_str":"663581920794660864","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEPbxWUAAXIZZ.jpg","url":"https:\/\/t.co\/AKvk5mJEpj","display_url":"pic.twitter.com\/AKvk5mJEpj","expanded_url":"http:\/\/twitter.com\/OnlyHipHopFacts\/status\/663581921860014080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":416,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":500,"h":416,"resize":"fit"}},"source_status_id":663581921860014080,"source_status_id_str":"663581921860014080","source_user_id":834095274,"source_user_id_str":"834095274"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052659"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963641368577,"id_str":"663727963641368577","text":"OMG\ud83d\ude31\ud83d\ude02\ud83d\ude02 (Vine by OMG) https:\/\/t.co\/HxET05CMsx","source":"\u003ca href=\"https:\/\/vine.co\" rel=\"nofollow\"\u003eVine for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1554797042,"id_str":"1554797042","name":"Knoah Zavala","screen_name":"YTStitch","location":"Santa Rosa CA","url":"https:\/\/www.youtube.com\/channel\/UC4PKl4m3V_hhnGOEUw-iCDA","description":"Hello! my name is Knoah. I am a Gamer. I'm not good at it; but that's the funny part.","protected":false,"verified":false,"followers_count":115,"friends_count":120,"listed_count":0,"favourites_count":211,"statuses_count":1325,"created_at":"Sat Jun 29 05:01:35 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651209381191614465\/Lh13kLc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651209381191614465\/Lh13kLc7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1554797042\/1439691433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HxET05CMsx","expanded_url":"https:\/\/vine.co\/v\/eL2D2ETMWE3","display_url":"vine.co\/v\/eL2D2ETMWE3","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080052658"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653824512,"id_str":"663727963653824512","text":"\u0e43\u0e04\u0e23\u0e08\u0e30\u0e1d\u0e32\u0e01\u0e08\u0e48\u0e32\u0e22\u0e15\u0e31\u0e07 \u0e1e\u0e48\u0e2d\u0e2b\u0e22\u0e38\u0e14..\u0e1e\u0e24\u0e2b\u0e31\u0e2a\u0e19\u0e35\u0e49\u0e16\u0e36\u0e07\u0e1e\u0e38\u0e18\u0e2b\u0e19\u0e49\u0e32\u0e19\u0e32\u0e08\u0e32\u0e32\u0e32\u0e32\u0e32 \ud83d\ude09 55555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285632081,"id_str":"285632081","name":".thanya.","screen_name":"Aom_Thanyamat","location":"Phetchaburi, Thailand","url":null,"description":"\u0e08\u0e23\u0e34\u0e07\u0e08\u0e31\u0e07\u0e21\u0e32\u0e01\u0e19\u0e30 Physical Therapy \u270c\ufe0f","protected":false,"verified":false,"followers_count":488,"friends_count":243,"listed_count":1,"favourites_count":1238,"statuses_count":18400,"created_at":"Thu Apr 21 14:18:53 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659754581102997504\/WSrhfT4B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659754581102997504\/WSrhfT4B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285632081\/1444730432","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653836802,"id_str":"663727963653836802","text":"@PSO2_Lieutenant \n\u3060\u3001\uff80\uff9e\uff7c\uff6c\uff9a\uff80\uff9e\uff70\uff70\uff70\uff70!!!!(\u00b0\u0414\u00b0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660506284033,"in_reply_to_status_id_str":"663727660506284033","in_reply_to_user_id":420257562,"in_reply_to_user_id_str":"420257562","in_reply_to_screen_name":"PSO2_Lieutenant","user":{"id":389476021,"id_str":"389476021","name":"\u30c0\u30ea\u30a2\uff20PSO2\u8239\uff14","screen_name":"dalia0527","location":"\u3075\u306d\u3088\u3093","url":null,"description":"PSO2\u30b7\u30c3\u30d7\uff14\u306b\u751f\u606f\u4e2d\u3002\u30e1\u30a4\u30f3\uff1a\u306b\u3085\u307e\u7537\u30b0\u30ea\u30d5\u30a3\u30b9\u3092\u7b46\u982d\u306b\u306b\u3085\u307e\u5b50\u30c0\u30ea\u30a2\u3001\u306b\u3085\u307e\u5b50\u30b7\u30eb\u30d3\u30a2\u3067\u30e2\u30be\u30e2\u30be\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3002\u5f71\u304c\u8584\u3044\u3051\u3069\u3067\u3085\u307e\u7537\u306e\u30ab\u30a4\u30a8\u30f3\u304a\u3058\u3055\u3093\u3001\u30b7\u30e7\u30bf\u30ed\u30dc\u30a8\u30af\u30ea\u30d7\u30b9\u3082\u3044\u305f\u308a\u3044\u306a\u304b\u3063\u305f\u308a\u3002","protected":false,"verified":false,"followers_count":91,"friends_count":159,"listed_count":4,"favourites_count":1839,"statuses_count":16589,"created_at":"Wed Oct 12 13:54:58 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"188694","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655752500214009856\/yzkHx747_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655752500214009856\/yzkHx747_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389476021\/1403090345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PSO2_Lieutenant","name":"\u30a8\u30b9\u30c6\u30a3\u30f3","id":420257562,"id_str":"420257562","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653836801,"id_str":"663727963653836801","text":"\uc73c\uc5d0\uc5d0\uc5d0\uc5d0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335902598,"id_str":"335902598","name":"\ucc9c\ubb18\/\u5929\u732b","screen_name":"Skypoke_wing","location":"3DS \uce5c\uad6c\ucf54\ub4dc 3926 - 4774 - 3612","url":null,"description":"\ud3ec\ucf13\ubaac(Pokemon) \/ \ud3ec\ucf00\uc2a4\ud398 \/ \uc0ac\uc774\ud37c\uc988 \/ BLEACH \/ WAKFU \/ \ud55c\uad6d\uc131\uc6b0","protected":false,"verified":false,"followers_count":264,"friends_count":304,"listed_count":3,"favourites_count":5821,"statuses_count":134303,"created_at":"Fri Jul 15 12:40:08 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/407247427\/naver_com_20120123_192749.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/407247427\/naver_com_20120123_192749.png","profile_background_tile":true,"profile_link_color":"5D00BA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662914613143429120\/6O5UxAuO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662914613143429120\/6O5UxAuO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335902598\/1429610704","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080052661"} +{"delete":{"status":{"id":651879340074999808,"id_str":"651879340074999808","user_id":3621377963,"user_id_str":"3621377963"},"timestamp_ms":"1447080052866"}} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963653836800,"id_str":"663727963653836800","text":"RT @_19kq: \u0e15\u0e2d\u0e19\u0e01\u0e39\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e21\u0e31\u0e19\u0e21\u0e31\u0e01\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e39\u0e42\u0e15\u0e02\u0e36\u0e49\u0e19\u0e40\u0e2a\u0e21\u0e2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230972154,"id_str":"230972154","name":"\u0e08\u0e34\u0e19\u0e19\u0e35\u0e48 \u0e40\u0e01\u0e23\u0e19\u0e40\u0e08\u0e2d\u0e23\u0e4c","screen_name":"Ablaheiei","location":"Amphoe Mueang Chiang Mai, Chiang Mai","url":null,"description":"\u2800\u2800\u2800\u2661kimmon\u2661 \u0e02\u0e2d\u0e07\u0e01\u0e34\u0e19\u0e01\u0e31\u0e1a\u0e04\u0e34\u0e21\u0e01\u0e47\u0e40\u0e25\u0e37\u0e2d\u0e01\u0e22\u0e32\u0e01\u0e2d\u0e22\u0e39\u0e48\u0e19\u0e30 \u2800\u2800\u2800\u2800\u2800\u0e08\u0e34\u0e19\u0e19\u0e35\u0e48\u0e17\u0e35\u0e21\u0e15\u0e32\u0e21\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49 \u0e40\u0e0b\u0e1f\u0e23\u0e39\u0e1b\u0e23\u0e31\u0e27\u0e46. . .","protected":false,"verified":false,"followers_count":597,"friends_count":261,"listed_count":2,"favourites_count":4578,"statuses_count":147871,"created_at":"Mon Dec 27 06:37:51 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000028516781\/0cf3474a77d42e0f6a6f943d7c1cc290.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000028516781\/0cf3474a77d42e0f6a6f943d7c1cc290.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661161558928523264\/0e0EWjpU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661161558928523264\/0e0EWjpU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230972154\/1446828212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:31 +0000 2015","id":663720325608161282,"id_str":"663720325608161282","text":"\u0e15\u0e2d\u0e19\u0e01\u0e39\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32\u0e21\u0e31\u0e19\u0e21\u0e31\u0e01\u0e08\u0e30\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e01\u0e39\u0e42\u0e15\u0e02\u0e36\u0e49\u0e19\u0e40\u0e2a\u0e21\u0e2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227207046,"id_str":"3227207046","name":"\u0e13","screen_name":"_19kq","location":"Chiang Mai, Thailand","url":null,"description":"\u221e \u0e2d\u0e22\u0e32\u0e01\u0e08\u0e30\u0e40\u0e1b\u0e47\u0e19\u0e19\u0e34\u0e2a\u0e34\u0e15 | \u0e01\u0e32\u0e23\u0e40\u0e14\u0e34\u0e19\u0e17\u0e32\u0e07 | \u2022 \u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27 \u2022","protected":false,"verified":false,"followers_count":99,"friends_count":98,"listed_count":2,"favourites_count":1492,"statuses_count":33249,"created_at":"Tue May 26 15:18:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631869402892271616\/UhX9XNNX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631869402892271616\/UhX9XNNX.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663616087586566144\/LlwNH5Zf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663616087586566144\/LlwNH5Zf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227207046\/1443927523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_19kq","name":"\u0e13","id":3227207046,"id_str":"3227207046","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080052661"} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963637084161,"id_str":"663727963637084161","text":"\u306a\u3064\u304d\u3061\u3083\u3093\u304a\u3044\u3066\u304f https:\/\/t.co\/ADcUFvYAJL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257269064,"id_str":"3257269064","name":"\u30bd\u30b4\u30a6\u30df\u30c1\u30eb","screen_name":"Michiru5_5","location":"\u5996\u602a\u767d\u76ee\u307e\u3076\u305f","url":null,"description":"\u90a6\u30ed\u30c3\u30af\u304c\u597d\u304d\u306a\u91d1\u661f\u4eba\u3067\u3059","protected":false,"verified":false,"followers_count":674,"friends_count":609,"listed_count":3,"favourites_count":3580,"statuses_count":3110,"created_at":"Sat Jun 27 02:44:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639125024010240\/Zh-rxASI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639125024010240\/Zh-rxASI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257269064\/1444562744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727958775885824,"id_str":"663727958775885824","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD9pU8AAOcew.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD9pU8AAOcew.jpg","url":"https:\/\/t.co\/ADcUFvYAJL","display_url":"pic.twitter.com\/ADcUFvYAJL","expanded_url":"http:\/\/twitter.com\/Michiru5_5\/status\/663727963637084161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727958775885824,"id_str":"663727958775885824","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD9pU8AAOcew.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD9pU8AAOcew.jpg","url":"https:\/\/t.co\/ADcUFvYAJL","display_url":"pic.twitter.com\/ADcUFvYAJL","expanded_url":"http:\/\/twitter.com\/Michiru5_5\/status\/663727963637084161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080052657"} +{"delete":{"status":{"id":660264261277478912,"id_str":"660264261277478912","user_id":2563333106,"user_id_str":"2563333106"},"timestamp_ms":"1447080053151"}} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963662376960,"id_str":"663727963662376960","text":"@mauriciomacri saca las ratas de @BaSamore Escalada 2800 Caba pone luminarias https:\/\/t.co\/wjr7nMQX1U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663032662043533312,"in_reply_to_status_id_str":"663032662043533312","in_reply_to_user_id":24900072,"in_reply_to_user_id_str":"24900072","in_reply_to_screen_name":"mauriciomacri","user":{"id":3185129404,"id_str":"3185129404","name":"Barrio Samore","screen_name":"BaSamore","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":50,"listed_count":0,"favourites_count":75,"statuses_count":280,"created_at":"Sun Apr 19 23:59:36 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589943143971303424\/BWCpmFes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589943143971303424\/BWCpmFes_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185129404\/1430666920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mauriciomacri","name":"Mauricio Macri","id":24900072,"id_str":"24900072","indices":[0,14]},{"screen_name":"BaSamore","name":"Barrio Samore","id":3185129404,"id_str":"3185129404","indices":[33,42]}],"symbols":[],"media":[{"id":663727735433490436,"id_str":"663727735433490436","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727735433490436\/pu\/img\/uQf-RXto3SVklLuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727735433490436\/pu\/img\/uQf-RXto3SVklLuX.jpg","url":"https:\/\/t.co\/wjr7nMQX1U","display_url":"pic.twitter.com\/wjr7nMQX1U","expanded_url":"http:\/\/twitter.com\/BaSamore\/status\/663727963662376960\/video\/1","type":"photo","sizes":{"medium":{"w":176,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":176,"h":320,"resize":"fit"},"small":{"w":176,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727735433490436,"id_str":"663727735433490436","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727735433490436\/pu\/img\/uQf-RXto3SVklLuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727735433490436\/pu\/img\/uQf-RXto3SVklLuX.jpg","url":"https:\/\/t.co\/wjr7nMQX1U","display_url":"pic.twitter.com\/wjr7nMQX1U","expanded_url":"http:\/\/twitter.com\/BaSamore\/status\/663727963662376960\/video\/1","type":"video","sizes":{"medium":{"w":176,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":176,"h":320,"resize":"fit"},"small":{"w":176,"h":320,"resize":"fit"}},"video_info":{"aspect_ratio":[11,20],"duration_millis":20000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727735433490436\/pu\/pl\/Dp9Ag8SvWtXOqQO-.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727735433490436\/pu\/pl\/Dp9Ag8SvWtXOqQO-.m3u8"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727735433490436\/pu\/vid\/176x320\/6Y3sgCVyzIhQcbie.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727735433490436\/pu\/vid\/176x320\/6Y3sgCVyzIhQcbie.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080052663"} +{"delete":{"status":{"id":663722230057078784,"id_str":"663722230057078784","user_id":3087173982,"user_id_str":"3087173982"},"timestamp_ms":"1447080053105"}} +{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727963649765376,"id_str":"663727963649765376","text":"#DoctorWho wood symbol https:\/\/t.co\/Bs7STkcz4Y #Gallifreyan #Tardis #awesome #buzzfeed #Family #scifi https:\/\/t.co\/5KcezmjkvL","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3023971604,"id_str":"3023971604","name":"woodentek","screen_name":"woodentek","location":null,"url":"http:\/\/www.woodentek.etsy.com","description":"Wooden Art, Models, Clocks & more. Contact woodentek@gmail.com.","protected":false,"verified":false,"followers_count":62,"friends_count":41,"listed_count":81,"favourites_count":189,"statuses_count":5945,"created_at":"Tue Feb 17 13:23:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569961557627383808\/Et-Ju83F_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569961557627383808\/Et-Ju83F_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023971604\/1433778723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DoctorWho","indices":[0,10]},{"text":"Gallifreyan","indices":[47,59]},{"text":"Tardis","indices":[60,67]},{"text":"awesome","indices":[68,76]},{"text":"buzzfeed","indices":[77,86]},{"text":"Family","indices":[87,94]},{"text":"scifi","indices":[95,101]}],"urls":[{"url":"https:\/\/t.co\/Bs7STkcz4Y","expanded_url":"https:\/\/www.etsy.com\/listing\/252261766\/doctor-who-wood-name-in-ancient?ref=shop_home_active_2","display_url":"etsy.com\/listing\/252261\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[],"media":[{"id":663727963268100096,"id_str":"663727963268100096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEOYWsAA2LMC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEOYWsAA2LMC.jpg","url":"https:\/\/t.co\/5KcezmjkvL","display_url":"pic.twitter.com\/5KcezmjkvL","expanded_url":"http:\/\/twitter.com\/woodentek\/status\/663727963649765376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"medium":{"w":560,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":411,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727963268100096,"id_str":"663727963268100096","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEOYWsAA2LMC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEOYWsAA2LMC.jpg","url":"https:\/\/t.co\/5KcezmjkvL","display_url":"pic.twitter.com\/5KcezmjkvL","expanded_url":"http:\/\/twitter.com\/woodentek\/status\/663727963649765376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"medium":{"w":560,"h":411,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":411,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080052660"} +{"delete":{"status":{"id":663725002466836481,"id_str":"663725002466836481","user_id":3068923116,"user_id_str":"3068923116"},"timestamp_ms":"1447080053360"}} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967865016320,"id_str":"663727967865016320","text":"\u0645\u0633\u0622\u0621 \u0627\u0644: \u0644\u0648 \u0639\u0650\u0631\u0641\u062a \u0643\u0645 \u064a\u0632\u0631\u0639 \u062d\u0643\u064a\u0643 \u0645\u0646 \u0627\u0644\u0648\u0631\u062f \u0641\u064a \u0642\u0644\u0628\u064a \u0645\u0627\u0633\u0650\u0643\u062a .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301032928,"id_str":"3301032928","name":"xbreen","screen_name":"breeneth","location":null,"url":null,"description":"http:\/\/ask.fm\/xbreena ..","protected":false,"verified":false,"followers_count":46,"friends_count":93,"listed_count":0,"favourites_count":2,"statuses_count":852,"created_at":"Wed May 27 22:24:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603692273738481664\/QyrI424z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603692273738481664\/QyrI424z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301032928\/1432766518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080053665"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967848284160,"id_str":"663727967848284160","text":"RT @kmichelle: I wish dumb and dumber the best\ud83c\udf3b\ud83d\ude01\ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3344061964,"id_str":"3344061964","name":"Chanel\u2728","screen_name":"astoldbykeyauna","location":"Winston-Salem, NC","url":null,"description":"\u2728","protected":false,"verified":false,"followers_count":446,"friends_count":356,"listed_count":1,"favourites_count":1192,"statuses_count":4138,"created_at":"Wed Jun 24 13:21:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661982273475072000\/GhOSselq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661982273475072000\/GhOSselq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3344061964\/1445128454","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:46:40 +0000 2015","id":663623728014585856,"id_str":"663623728014585856","text":"I wish dumb and dumber the best\ud83c\udf3b\ud83d\ude01\ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28442098,"id_str":"28442098","name":"K. Michelle","screen_name":"kmichelle","location":"In my pink bubble","url":"http:\/\/www.thekmichelle.com","description":"@AtlanticRecords | My album #AWBAH is available now, http:\/\/smarturl.it\/AWBAH! | ICM: mwhite@icmpartners.com bookkmichelle@gmail.com","protected":false,"verified":true,"followers_count":1407588,"friends_count":5533,"listed_count":2490,"favourites_count":91,"statuses_count":53876,"created_at":"Thu Apr 02 23:02:18 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065218444\/271b10179a86c7914b27428b59c94674.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065218444\/271b10179a86c7914b27428b59c94674.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"A7A7B0","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617134989482827776\/MkM0LkC5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617134989482827776\/MkM0LkC5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28442098\/1418143889","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":330,"favorite_count":259,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kmichelle","name":"K. Michelle","id":28442098,"id_str":"28442098","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053661"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967839903744,"id_str":"663727967839903744","text":"RT @BlitzQuotidiano: Artista russo d\u00e0 fuoco alla porta dell'ex #kgb #VIDEO - https:\/\/t.co\/FBx0CpHKMj","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251663248,"id_str":"251663248","name":"Informazione pura","screen_name":"PatriceinMilano","location":"Italia ","url":"https:\/\/m.facebook.com\/informazionepurabypatrice","description":"Retweetiamo notizie da qualsiasi fonte ufficiale o attendibile poi sta a voi farvi un'idea e se avete voglia di commentarle con noi","protected":false,"verified":false,"followers_count":33521,"friends_count":30262,"listed_count":399,"favourites_count":132,"statuses_count":383411,"created_at":"Sun Feb 13 16:11:24 +0000 2011","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631421084470894594\/gmONwioF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631421084470894594\/gmONwioF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251663248\/1444372396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:58 +0000 2015","id":663726730549592064,"id_str":"663726730549592064","text":"Artista russo d\u00e0 fuoco alla porta dell'ex #kgb #VIDEO - https:\/\/t.co\/FBx0CpHKMj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31762979,"id_str":"31762979","name":"Blitz quotidiano","screen_name":"BlitzQuotidiano","location":"Rome, Italy","url":"http:\/\/www.blitzquotidiano.it","description":"Il quotidiano online diretto da Marco Benedetto. Notizie sempre aggiornate di Cronaca, Politica, Esteri, Economia, Sport e Gossip","protected":false,"verified":false,"followers_count":87048,"friends_count":3798,"listed_count":1364,"favourites_count":17,"statuses_count":277308,"created_at":"Thu Apr 16 12:54:06 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/48225993\/background_twitter.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/48225993\/background_twitter.gif","profile_background_tile":false,"profile_link_color":"E40702","profile_sidebar_border_color":"A6A6A6","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/479241312684621824\/zmbnuo_5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/479241312684621824\/zmbnuo_5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31762979\/1441368588","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"kgb","indices":[42,46]},{"text":"VIDEO","indices":[47,53]}],"urls":[{"url":"https:\/\/t.co\/FBx0CpHKMj","expanded_url":"http:\/\/goo.gl\/T5ybyT","display_url":"goo.gl\/T5ybyT","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kgb","indices":[63,67]},{"text":"VIDEO","indices":[68,74]}],"urls":[{"url":"https:\/\/t.co\/FBx0CpHKMj","expanded_url":"http:\/\/goo.gl\/T5ybyT","display_url":"goo.gl\/T5ybyT","indices":[77,100]}],"user_mentions":[{"screen_name":"BlitzQuotidiano","name":"Blitz quotidiano","id":31762979,"id_str":"31762979","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080053659"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831498752,"id_str":"663727967831498752","text":"-\n\u0633\u0627\u0642\u0646\u0640\u064a \u062d\u0628\u0643 \u0639\u0644\u0640\u0649 \u0627\u0644\u0645\u0648\u062a \u0648 \u0633\u0646\u064a\u0646\u064a \u0647\u0632\u0627\u0644\n\u0648\u0627\u0644\u0638\u0631\u0648\u0641 \u0627\u0642\u0633\u0649 \u0645\u0646 \u0627\u0644\u0638\u0644\u0645 \u0644\u0644\u0639\u0631\u0636 \u0627\u0644\u0646\u0632\u064a\u0647 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1327057333,"id_str":"1327057333","name":"fe.","screen_name":"5Gl_AlQahtani","location":"Riyadh","url":null,"description":"\ufd3f \u0639\u0633\u0649 \u0639\u0622\u062f \u062e\u064a\u0631\u0627\u062a \u0627\u0644\u0632\u0645\u0646\u060c\u060c\u0641\u064a \u0645\u0642\u0627\u0628\u064a\u0644\u0647\u06c1\ufd3e\u2743\u007b\u0627\u0644\u062e\u0627\u0635 \u0645\u0647\u0645\u0644\u007d \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0647~","protected":false,"verified":false,"followers_count":490,"friends_count":105,"listed_count":0,"favourites_count":525,"statuses_count":5630,"created_at":"Thu Apr 04 14:18:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663065134114426881\/tMHXzfSU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663065134114426881\/tMHXzfSU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1327057333\/1446884319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080053657"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860883456,"id_str":"663727967860883456","text":"RT @FunnyBrawls: David vs Goliath \ud83d\udc80 https:\/\/t.co\/IbRa1v2WyJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3375622487,"id_str":"3375622487","name":"\u2022VeeBoogie\u2022","screen_name":"bigDawgVee","location":"Sc:lilveeeee ","url":null,"description":"\u2764\ufe0f\u2022Dejah & Kiarra's Bff\u2022\u2764\ufe0f. \u26a0\ufe0f\u2022UnderConstruction\u2022\u26a0\ufe0f.","protected":false,"verified":false,"followers_count":410,"friends_count":280,"listed_count":1,"favourites_count":2321,"statuses_count":9725,"created_at":"Tue Jul 14 12:04:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663618468210700288\/TgTIk6H5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663618468210700288\/TgTIk6H5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375622487\/1447076894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 23 20:59:46 +0000 2015","id":657662721715011584,"id_str":"657662721715011584","text":"David vs Goliath \ud83d\udc80 https:\/\/t.co\/IbRa1v2WyJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2609647929,"id_str":"2609647929","name":"Fights","screen_name":"FunnyBrawls","location":null,"url":null,"description":"Fighting Videos. Turn on our notifications. Send fights to: FunnyBrawls@gmail.com (We do not own any content)","protected":false,"verified":false,"followers_count":51843,"friends_count":58,"listed_count":66,"favourites_count":12,"statuses_count":6136,"created_at":"Sat Jun 14 20:42:34 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657457145500291073\/vWIol5rW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657457145500291073\/vWIol5rW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2609647929\/1445585359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2731,"favorite_count":1856,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657662608267431936,"id_str":"657662608267431936","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","url":"https:\/\/t.co\/IbRa1v2WyJ","display_url":"pic.twitter.com\/IbRa1v2WyJ","expanded_url":"http:\/\/twitter.com\/FunnyBrawls\/status\/657662721715011584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657662608267431936,"id_str":"657662608267431936","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","url":"https:\/\/t.co\/IbRa1v2WyJ","display_url":"pic.twitter.com\/IbRa1v2WyJ","expanded_url":"http:\/\/twitter.com\/FunnyBrawls\/status\/657662721715011584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/180x320\/9ew0cekI6loV2Zws.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/720x1280\/oX4Z0BrMMqXHjUZY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/360x640\/DQqaZuURtwK1yyhy.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/360x640\/DQqaZuURtwK1yyhy.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/pl\/-NBOY3vd_lPHEKhm.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/pl\/-NBOY3vd_lPHEKhm.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FunnyBrawls","name":"Fights","id":2609647929,"id_str":"2609647929","indices":[3,15]}],"symbols":[],"media":[{"id":657662608267431936,"id_str":"657662608267431936","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","url":"https:\/\/t.co\/IbRa1v2WyJ","display_url":"pic.twitter.com\/IbRa1v2WyJ","expanded_url":"http:\/\/twitter.com\/FunnyBrawls\/status\/657662721715011584\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":657662721715011584,"source_status_id_str":"657662721715011584","source_user_id":2609647929,"source_user_id_str":"2609647929"}]},"extended_entities":{"media":[{"id":657662608267431936,"id_str":"657662608267431936","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/657662608267431936\/pu\/img\/wJljYhIRE2D1Vews.jpg","url":"https:\/\/t.co\/IbRa1v2WyJ","display_url":"pic.twitter.com\/IbRa1v2WyJ","expanded_url":"http:\/\/twitter.com\/FunnyBrawls\/status\/657662721715011584\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":657662721715011584,"source_status_id_str":"657662721715011584","source_user_id":2609647929,"source_user_id_str":"2609647929","video_info":{"aspect_ratio":[9,16],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/180x320\/9ew0cekI6loV2Zws.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/720x1280\/oX4Z0BrMMqXHjUZY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/360x640\/DQqaZuURtwK1yyhy.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/vid\/360x640\/DQqaZuURtwK1yyhy.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/pl\/-NBOY3vd_lPHEKhm.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/657662608267431936\/pu\/pl\/-NBOY3vd_lPHEKhm.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852478465,"id_str":"663727967852478465","text":"RT @_SaudiMed: \u062a\u0645 \u0627\u0636\u0627\u0641\u0629 \u0623\u0633\u0626\u0644\u0629 #\u0627\u062e\u062a\u0628\u0627\u0631_SMLE \u0644\u064a\u0648\u0645 \u0669 \u0646\u0648\u0641\u0645\u0628\u0631 \u0662\u0660\u0661\u0665\n\n\u0647\u0646\u0627: https:\/\/t.co\/oKMhyvFc0G \n\n#\u0641\u0636\u0641\u0636\u0629_\u0637\u0628\u064a\u0628 #\u0637\u0628\u064a\u0628_\u0627\u0645\u062a\u064a\u0627\u0632","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555383414,"id_str":"555383414","name":"\u062f. \u0641\u0627\u0626\u0642\u0629 dr.faygah","screen_name":"drfaygah","location":null,"url":null,"description":"\u200f\u200f\u200f\u0637\u0628\u064a\u0628\u0629 \u0627\u0645\u062a\u064a\u0627\u0632 \u0647\u062f\u0641\u064a \u0623\u0646 \u0623\u0635\u0628\u062d \u0637\u0628\u064a\u0628\u0629 \u062a\u0641\u064a\u062f \u0648\u062a\u0633\u0627\u0639\u062f \u0641\u064a \u0628\u0646\u0627\u0621 \u0627\u0644\u0645\u062c\u062a\u0645\u0639. \u0623\u062a\u0645\u0646\u0649 \u0645\u0646 \u0634\u0628\u0627\u0628 \u0647\u0630\u0647 \u0627\u0644\u0623\u0645\u0629 \u0623\u0644\u0627 \u064a\u062d\u0628\u0637\u0648\u0627 \u0648 \u064a\u0634\u062f\u0648\u0627 \u0627\u0644\u0647\u0645\u0645\nan intern doctor who hopes to make a difference","protected":false,"verified":false,"followers_count":118,"friends_count":254,"listed_count":0,"favourites_count":166,"statuses_count":324,"created_at":"Mon Apr 16 20:02:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2438613418\/yss7u84way3tr5ovnh1p_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2438613418\/yss7u84way3tr5ovnh1p_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555383414\/1434781769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:58 +0000 2015","id":663723205841059840,"id_str":"663723205841059840","text":"\u062a\u0645 \u0627\u0636\u0627\u0641\u0629 \u0623\u0633\u0626\u0644\u0629 #\u0627\u062e\u062a\u0628\u0627\u0631_SMLE \u0644\u064a\u0648\u0645 \u0669 \u0646\u0648\u0641\u0645\u0628\u0631 \u0662\u0660\u0661\u0665\n\n\u0647\u0646\u0627: https:\/\/t.co\/oKMhyvFc0G \n\n#\u0641\u0636\u0641\u0636\u0629_\u0637\u0628\u064a\u0628 #\u0637\u0628\u064a\u0628_\u0627\u0645\u062a\u064a\u0627\u0632","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2791944259,"id_str":"2791944259","name":"\u0645\u062f\u0648\u0646\u0629 \u0637\u0627\u0644\u0628 \u0637\u0628 \u0633\u0639\u0648\u062f\u064a","screen_name":"_SaudiMed","location":null,"url":"http:\/\/saudimedstudent.com","description":"\u0646\u0647\u062a\u0645 \u0641\u064a \u0643\u0644 \u0637\u0627\u0644\u0628 \u0637\u0628\u060c \u0637\u0628\u064a\u0628 \u0627\u0645\u062a\u064a\u0627\u0632 \u0648\u0637\u0628\u064a\u0628 \u0645\u0642\u064a\u0645! \u0645\u0642\u0627\u0644\u0627\u062a\u0646\u0627 \u062a\u062c\u062f\u0647\u0627 \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629.\n#\u0641\u0636\u0641\u0636\u0629_\u0637\u0628\u064a\u0628 #\u0637\u0627\u0644\u0628_\u0637\u0628 #\u0637\u0628\u064a\u0628_\u0627\u0645\u062a\u064a\u0627\u0632","protected":false,"verified":false,"followers_count":9211,"friends_count":3319,"listed_count":30,"favourites_count":96,"statuses_count":1292,"created_at":"Fri Sep 05 13:03:44 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508925352236691457\/Pz7KqX63_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508925352236691457\/Pz7KqX63_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":15,"entities":{"hashtags":[{"text":"\u0627\u062e\u062a\u0628\u0627\u0631_SMLE","indices":[15,27]},{"text":"\u0641\u0636\u0641\u0636\u0629_\u0637\u0628\u064a\u0628","indices":[80,91]},{"text":"\u0637\u0628\u064a\u0628_\u0627\u0645\u062a\u064a\u0627\u0632","indices":[92,104]}],"urls":[{"url":"https:\/\/t.co\/oKMhyvFc0G","expanded_url":"http:\/\/saudimedstudent.com\/smle","display_url":"saudimedstudent.com\/smle","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u062e\u062a\u0628\u0627\u0631_SMLE","indices":[30,42]},{"text":"\u0641\u0636\u0641\u0636\u0629_\u0637\u0628\u064a\u0628","indices":[95,106]},{"text":"\u0637\u0628\u064a\u0628_\u0627\u0645\u062a\u064a\u0627\u0632","indices":[107,119]}],"urls":[{"url":"https:\/\/t.co\/oKMhyvFc0G","expanded_url":"http:\/\/saudimedstudent.com\/smle","display_url":"saudimedstudent.com\/smle","indices":[68,91]}],"user_mentions":[{"screen_name":"_SaudiMed","name":"\u0645\u062f\u0648\u0646\u0629 \u0637\u0627\u0644\u0628 \u0637\u0628 \u0633\u0639\u0648\u062f\u064a","id":2791944259,"id_str":"2791944259","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856631808,"id_str":"663727967856631808","text":"RT @StockDeportes: Adidas Superstar \ud83e\udd11 https:\/\/t.co\/iI1M4xgYnh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1096599336,"id_str":"1096599336","name":"\u2667Diego Rivas\u2606","screen_name":"DiegoGilRivas","location":null,"url":null,"description":"V\u00e1zquez Cultural Nacional || Cada loco con su locura ||","protected":false,"verified":false,"followers_count":443,"friends_count":163,"listed_count":0,"favourites_count":1411,"statuses_count":5486,"created_at":"Wed Jan 16 23:12:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658771044858273793\/CqBgJEps_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658771044858273793\/CqBgJEps_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096599336\/1447024651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:23 +0000 2015","id":663718530483953664,"id_str":"663718530483953664","text":"Adidas Superstar \ud83e\udd11 https:\/\/t.co\/iI1M4xgYnh","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2741257727,"id_str":"2741257727","name":"\u265a StockDeportes \u265a","screen_name":"StockDeportes","location":null,"url":null,"description":"Ventas de botines y camisetas online (Thai). Se reparte en toda Espa\u00f1a. Para mas informaci\u00f3n MD\/\/WA 665680827 \/\/","protected":false,"verified":false,"followers_count":10384,"friends_count":11189,"listed_count":5,"favourites_count":1078,"statuses_count":2199,"created_at":"Tue Aug 12 23:02:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538708680683048960\/2FN4IdiV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538708680683048960\/2FN4IdiV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2741257727\/1445806200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718522636394496,"id_str":"663718522636394496","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","url":"https:\/\/t.co\/iI1M4xgYnh","display_url":"pic.twitter.com\/iI1M4xgYnh","expanded_url":"http:\/\/twitter.com\/StockDeportes\/status\/663718530483953664\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":531,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718522636394496,"id_str":"663718522636394496","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","url":"https:\/\/t.co\/iI1M4xgYnh","display_url":"pic.twitter.com\/iI1M4xgYnh","expanded_url":"http:\/\/twitter.com\/StockDeportes\/status\/663718530483953664\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":531,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"StockDeportes","name":"\u265a StockDeportes \u265a","id":2741257727,"id_str":"2741257727","indices":[3,17]}],"symbols":[],"media":[{"id":663718522636394496,"id_str":"663718522636394496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","url":"https:\/\/t.co\/iI1M4xgYnh","display_url":"pic.twitter.com\/iI1M4xgYnh","expanded_url":"http:\/\/twitter.com\/StockDeportes\/status\/663718530483953664\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":531,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":663718530483953664,"source_status_id_str":"663718530483953664","source_user_id":2741257727,"source_user_id_str":"2741257727"}]},"extended_entities":{"media":[{"id":663718522636394496,"id_str":"663718522636394496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAetSW4AAo_1R.jpg","url":"https:\/\/t.co\/iI1M4xgYnh","display_url":"pic.twitter.com\/iI1M4xgYnh","expanded_url":"http:\/\/twitter.com\/StockDeportes\/status\/663718530483953664\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":531,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":398,"resize":"fit"}},"source_status_id":663718530483953664,"source_status_id_str":"663718530483953664","source_user_id":2741257727,"source_user_id_str":"2741257727"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967844089857,"id_str":"663727967844089857","text":"RT @JackJackJohnson: Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3515017456,"id_str":"3515017456","name":"kitty","screen_name":"thiskittycat9","location":null,"url":null,"description":"HI! I'm a girl from Denmark, copenhagen:\ni am 15 years old. And dancing is my life! ;P \nI LOVE fifth harmony and little mix! \n#AlwaysKeepSmiling :) 3","protected":false,"verified":false,"followers_count":69,"friends_count":351,"listed_count":0,"favourites_count":331,"statuses_count":80,"created_at":"Tue Sep 01 18:04:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"da","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638775052926865408\/ONTLH8tq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638775052926865408\/ONTLH8tq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3515017456\/1441131396","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821831860224,"id_str":"663727821831860224","text":"Haha you are the babe! Can't wait to see you again https:\/\/t.co\/n7qsdqnYeK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588963,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718557625229312,"quoted_status_id_str":"663718557625229312","quoted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49994,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":343,"favorite_count":877,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7qsdqnYeK","expanded_url":"https:\/\/twitter.com\/dinkymendes\/status\/663718557625229312","display_url":"twitter.com\/dinkymendes\/st\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053660"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856627712,"id_str":"663727967856627712","text":"RT https:\/\/t.co\/rJmMnlRvrb kt_mcg: Someone take me on a date to the friendly toast","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316751101,"id_str":"3316751101","name":"Jenna","screen_name":"me_jennaa","location":"Sydney, New South Wales","url":null,"description":"exhale everything impart nothing","protected":false,"verified":false,"followers_count":542,"friends_count":1944,"listed_count":313,"favourites_count":0,"statuses_count":186560,"created_at":"Sun Aug 16 09:35:13 +0000 2015","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316751101\/1439717815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rJmMnlRvrb","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856541698,"id_str":"663727967856541698","text":"RT @Michael5SOS: first proper sleep I've had in about a week \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2236524384,"id_str":"2236524384","name":"elyssa misses atc:-(","screen_name":"iloveyouElyssa","location":"broken world ","url":null,"description":null,"protected":false,"verified":false,"followers_count":1157,"friends_count":378,"listed_count":4,"favourites_count":28029,"statuses_count":41787,"created_at":"Sun Dec 08 20:08:04 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646842921547792384\/O7xpoyrD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646842921547792384\/O7xpoyrD.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649814786130051072\/BSE1K85V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649814786130051072\/BSE1K85V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236524384\/1443764579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:03:37 +0000 2015","id":663658190874222592,"id_str":"663658190874222592","text":"first proper sleep I've had in about a week \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403246803,"id_str":"403246803","name":"Michael Clifford","screen_name":"Michael5SOS","location":null,"url":"http:\/\/5sosf.am\/vjnufZ","description":"i play in a band. so do other people in my band","protected":false,"verified":true,"followers_count":5620729,"friends_count":15497,"listed_count":34351,"favourites_count":98,"statuses_count":10898,"created_at":"Wed Nov 02 07:04:18 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_tile":true,"profile_link_color":"0E45B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"030203","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403246803\/1446535517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22782,"favorite_count":41361,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967848300544,"id_str":"663727967848300544","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3213788157,"id_str":"3213788157","name":"Jack","screen_name":"DemarinisEmma","location":"Minneapolis","url":null,"description":"Happiness is priority one. I provide freelance work, look at my bio link to get the work I provide....","protected":false,"verified":false,"followers_count":82,"friends_count":647,"listed_count":6,"favourites_count":18466,"statuses_count":19984,"created_at":"Mon Apr 27 15:34:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1722,"favorite_count":1064,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053661"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860838400,"id_str":"663727967860838400","text":"RT @deedatree: @RedBaren907 Classic!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1678914001,"id_str":"1678914001","name":"RedBaren907","screen_name":"RedBaren907","location":"The World","url":"http:\/\/www.soundcloud.com\/redbaren907","description":"WRITER \/LYRICIST\/VOCALIST twitter@redbaren907\n business email redbaren907@gmail.com. #hiphop #neosoul #vocals #music","protected":false,"verified":false,"followers_count":22940,"friends_count":2443,"listed_count":8,"favourites_count":1288,"statuses_count":5336,"created_at":"Sat Aug 17 18:38:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657480973894971392\/Byznpt0__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657480973894971392\/Byznpt0__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678914001\/1445450923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727815028662272,"id_str":"663727815028662272","text":"@RedBaren907 Classic!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725628198383616,"in_reply_to_status_id_str":"663725628198383616","in_reply_to_user_id":1678914001,"in_reply_to_user_id_str":"1678914001","in_reply_to_screen_name":"RedBaren907","user":{"id":131512188,"id_str":"131512188","name":"Yusuf Shafeeq","screen_name":"deedatree","location":"Out West ","url":"http:\/\/www.soundcloud.com\/shafeeqbeats","description":"I sample old soul records and the world's finest coffees.","protected":false,"verified":false,"followers_count":66,"friends_count":56,"listed_count":1,"favourites_count":589,"statuses_count":1065,"created_at":"Sat Apr 10 14:00:29 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1DE373","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434449570\/arabic_calligraphy_by_telpo-d2ytqq3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434449570\/arabic_calligraphy_by_telpo-d2ytqq3.jpg","profile_background_tile":false,"profile_link_color":"2E2ABD","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636287621434576896\/PnSaxaAC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636287621434576896\/PnSaxaAC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131512188\/1440537404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.940033,42.023067],[-87.523993,42.023067],[-87.523993,41.644102]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RedBaren907","name":"RedBaren907","id":1678914001,"id_str":"1678914001","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"deedatree","name":"Yusuf Shafeeq","id":131512188,"id_str":"131512188","indices":[3,13]},{"screen_name":"RedBaren907","name":"RedBaren907","id":1678914001,"id_str":"1678914001","indices":[15,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852326913,"id_str":"663727967852326913","text":"\u3055\u3059\u304c\u306b\u3084\u3070\u3044\u3068\u601d\u3063\u3066\u3053\u308c\u304b\u3089\u306f\u66f4\u65b0\u9811\u5f35\u308d\u3046\u3068\u601d\u3063\u305f\u3051\u3069\u3001\u3053\u308c\u304b\u3089\u30c6\u30b9\u30c8\u3060\u3063\u305f\u308f\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3409683254,"id_str":"3409683254","name":"\u3042\u3081\u306a\uff20\u30c6\u30b9\u30c8\u9031\u9593\u306fPC\u306b\u89e6\u308c\u306a\u3044","screen_name":"amena8511","location":null,"url":null,"description":"\u3053\u3093\u306b\u3061\u306f\u3001\u3042\u3081\u306a\u3068\u7533\u3057\u307e\u3059\uff01 \u5360\u30c4\u30af\u306b\u3066\u5c0f\u8aac\u66f8\u3044\u3066\u307e\u3059\u3002\u597d\u304d\u306a\u5b9f\u6cc1\u8005\u2192\u8d64\u9aea\u306e\u3068\u3082\/MSSP\/\u6700\u4ffa\/\u5e55\u672b\u5fd7\u58eb\/\u307d\u3053\u306b\u3083\u3093\/\u305f\u3053\u3089\u3044\u3059\/etc\u2026\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3063\u305f\u3068\u304d\u306b\u30ea\u30d7\u3044\u305f\u3060\u3051\u305f\u3089\u3053\u3061\u3089\u304b\u3089\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3002\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u3088\u3063\u3066\u306f\u30d6\u30ed\u30c3\u30af\u3059\u308b\u3068\u304d\u304c\u3042\u308a\u307e\u3059\u3002\n I always sleepy!!","protected":false,"verified":false,"followers_count":38,"friends_count":80,"listed_count":0,"favourites_count":68,"statuses_count":728,"created_at":"Tue Sep 01 01:36:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638526921848942592\/R6NMZ0SE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638526921848942592\/R6NMZ0SE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3409683254\/1444034707","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967835525120,"id_str":"663727967835525120","text":"Idk what I'm doing when I graduate, all I know is I'm leaving sag","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826537358,"id_str":"826537358","name":"The legendary wausf","screen_name":"wasifahmed13","location":"Saginaw","url":null,"description":"Trying to make something of myself. Lifelong underachiever #RIPVINCENT","protected":false,"verified":false,"followers_count":147,"friends_count":111,"listed_count":1,"favourites_count":2339,"statuses_count":3785,"created_at":"Sun Sep 16 05:20:43 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655206739764113408\/6fc7FXrZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655206739764113408\/6fc7FXrZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826537358\/1436246924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053658"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967844114432,"id_str":"663727967844114432","text":"RT @justinarianasus: i love this part so much \ud83d\ude29 https:\/\/t.co\/NprV9SvxS1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":492461296,"id_str":"492461296","name":"clare","screen_name":"muguetniall","location":"i will meet him ","url":null,"description":"i can only draw what i can see; fortunately i see beauty i everything and everyone","protected":false,"verified":false,"followers_count":7106,"friends_count":7822,"listed_count":20,"favourites_count":10093,"statuses_count":86910,"created_at":"Tue Feb 14 19:03:39 +0000 2012","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441301643116552192\/uHHy-Jac.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441301643116552192\/uHHy-Jac.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660879865630040064\/DpLP3uAc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660879865630040064\/DpLP3uAc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492461296\/1446401012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:28:41 +0000 2015","id":663604100228100096,"id_str":"663604100228100096","text":"i love this part so much \ud83d\ude29 https:\/\/t.co\/NprV9SvxS1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1905009049,"id_str":"1905009049","name":"\ufe0f\ufe0f\ufe0f","screen_name":"justinarianasus","location":null,"url":null,"description":"i feel a little bad, i forgot the words, ariana","protected":false,"verified":false,"followers_count":57771,"friends_count":21294,"listed_count":78,"favourites_count":10882,"statuses_count":55621,"created_at":"Wed Sep 25 18:01:15 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549989283805671425\/7VIPJe3j.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549989283805671425\/7VIPJe3j.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662281122815037440\/AaT2PYYo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662281122815037440\/AaT2PYYo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1905009049\/1446735098","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54,"favorite_count":37,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663446359790497796,"id_str":"663446359790497796","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","url":"https:\/\/t.co\/NprV9SvxS1","display_url":"pic.twitter.com\/NprV9SvxS1","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663446738213163009\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663446738213163009,"source_status_id_str":"663446738213163009","source_user_id":295261244,"source_user_id_str":"295261244"}]},"extended_entities":{"media":[{"id":663446359790497796,"id_str":"663446359790497796","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","url":"https:\/\/t.co\/NprV9SvxS1","display_url":"pic.twitter.com\/NprV9SvxS1","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663446738213163009\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663446738213163009,"source_status_id_str":"663446738213163009","source_user_id":295261244,"source_user_id_str":"295261244","video_info":{"aspect_ratio":[16,9],"duration_millis":18000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/640x360\/hC-6lLXAloQoKYwE.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/320x180\/MOJIwIYjYPHyPeAc.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/1280x720\/ldObmfwAYvPMwA30.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/640x360\/hC-6lLXAloQoKYwE.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/pl\/GZxSpSoC6_-Fxz_u.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/pl\/GZxSpSoC6_-Fxz_u.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justinarianasus","name":"\ufe0f\ufe0f\ufe0f","id":1905009049,"id_str":"1905009049","indices":[3,19]}],"symbols":[],"media":[{"id":663446359790497796,"id_str":"663446359790497796","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","url":"https:\/\/t.co\/NprV9SvxS1","display_url":"pic.twitter.com\/NprV9SvxS1","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663446738213163009\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663446738213163009,"source_status_id_str":"663446738213163009","source_user_id":295261244,"source_user_id_str":"295261244"}]},"extended_entities":{"media":[{"id":663446359790497796,"id_str":"663446359790497796","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663446359790497796\/pu\/img\/Wi-o9GE1nTBU2HKq.jpg","url":"https:\/\/t.co\/NprV9SvxS1","display_url":"pic.twitter.com\/NprV9SvxS1","expanded_url":"http:\/\/twitter.com\/SecuteBelieber\/status\/663446738213163009\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663446738213163009,"source_status_id_str":"663446738213163009","source_user_id":295261244,"source_user_id_str":"295261244","video_info":{"aspect_ratio":[16,9],"duration_millis":18000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/640x360\/hC-6lLXAloQoKYwE.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/320x180\/MOJIwIYjYPHyPeAc.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/1280x720\/ldObmfwAYvPMwA30.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/vid\/640x360\/hC-6lLXAloQoKYwE.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/pl\/GZxSpSoC6_-Fxz_u.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663446359790497796\/pu\/pl\/GZxSpSoC6_-Fxz_u.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053660"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967835680768,"id_str":"663727967835680768","text":"RT @luckybsmith: People are savages in the Ralphs parking lot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3435157799,"id_str":"3435157799","name":"Valentina","screen_name":"valentna_delf","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":73,"listed_count":1,"favourites_count":1387,"statuses_count":423,"created_at":"Sat Aug 22 06:59:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635405693542117377\/VKSjM2xU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635405693542117377\/VKSjM2xU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3435157799\/1440327496","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:05:25 +0000 2015","id":663507649359556608,"id_str":"663507649359556608","text":"People are savages in the Ralphs parking lot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2265327894,"id_str":"2265327894","name":"Lucky Blue","screen_name":"luckybsmith","location":"Los Angeles","url":"http:\/\/Instagram.com\/luckybsmith","description":"@nextmodels worldwide, bookings mimi@nextmodels.com stay golden","protected":false,"verified":true,"followers_count":167443,"friends_count":6001,"listed_count":418,"favourites_count":7524,"statuses_count":2618,"created_at":"Sat Dec 28 04:09:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647688219614539776\/7QMT-QKH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647688219614539776\/7QMT-QKH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2265327894\/1442524306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3b77caf94bfc81fe","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3b77caf94bfc81fe.json","place_type":"city","name":"Los Angeles","full_name":"Los Angeles, CA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-118.668404,33.704538],[-118.668404,34.337041],[-118.155409,34.337041],[-118.155409,33.704538]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":267,"favorite_count":779,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"luckybsmith","name":"Lucky Blue","id":2265327894,"id_str":"2265327894","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053658"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831502848,"id_str":"663727967831502848","text":"\u041f\u043e\u0447 \u043f\u043e\u0441\u043b\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0444\u043e\u0442\u043e\u043a \u0421\u043b\u0430\u0432\u043e\u0447\u043a\u0438 \u044f \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0432 \u0436\u0438\u0437\u043d\u0438 \u0440\u0438\u043b\u0438 \u0437\u0430\u0445\u043e\u0442\u0435\u043b\u0430 \u0441\u0435\u0431\u0435 \u043c\u0443\u0436\u0438\u043a\u0430?\u0415\u0431\u0430\u0442\u044c \u043e\u0440\u0443","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400537176,"id_str":"400537176","name":"Eskimo Callgirl ","screen_name":"YanaROCK_EC","location":"\u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a, \u0420\u043e\u0441\u0441\u0438\u044f","url":null,"description":"boyfriend- @EskimoCallboy","protected":false,"verified":false,"followers_count":3229,"friends_count":2777,"listed_count":16,"favourites_count":203,"statuses_count":41138,"created_at":"Sat Oct 29 05:59:06 +0000 2011","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629337788605931520\/aXCOePuW.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629337788605931520\/aXCOePuW.jpg","profile_background_tile":true,"profile_link_color":"EECBAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629288710639603712\/Wu5LAeMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629288710639603712\/Wu5LAeMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400537176\/1438869247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080053657"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860752385,"id_str":"663727967860752385","text":"RT @kafirkaty: As per the #motherofbelievers, Aisha, believing women suffer the most in Islam ... End the #patriarchy \ud83d\ude0f https:\/\/t.co\/hNUAay\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31025283,"id_str":"31025283","name":"Pat Sumner","screen_name":"txnet","location":"Dallas, TX","url":"http:\/\/www.txnetworking.com","description":"Systems Analyst to U.S. Militia, Conservative, #2A I use English sarcasm and I'm a World View Analyst\/Hacker","protected":false,"verified":false,"followers_count":201,"friends_count":426,"listed_count":7,"favourites_count":235,"statuses_count":955,"created_at":"Tue Apr 14 01:53:52 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662021683188928512\/llh_atWy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662021683188928512\/llh_atWy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31025283\/1446673284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:13:48 +0000 2015","id":663706053419393026,"id_str":"663706053419393026","text":"As per the #motherofbelievers, Aisha, believing women suffer the most in Islam ... End the #patriarchy \ud83d\ude0f https:\/\/t.co\/hNUAay3rJr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7809282,"id_str":"7809282","name":"Kafirkaty","screen_name":"kafirkaty","location":null,"url":null,"description":"Just your average foul mouthed Kafir.. Nothing special. Trolls are #blocked I don't engage with fools","protected":false,"verified":false,"followers_count":854,"friends_count":946,"listed_count":12,"favourites_count":9304,"statuses_count":6291,"created_at":"Mon Jul 30 03:14:20 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF00F7","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663155616295182337\/Snr-xeZ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663155616295182337\/Snr-xeZ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7809282\/1441574976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[{"text":"motherofbelievers","indices":[11,29]},{"text":"patriarchy","indices":[91,102]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663706047807365124,"id_str":"663706047807365124","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","url":"https:\/\/t.co\/hNUAay3rJr","display_url":"pic.twitter.com\/hNUAay3rJr","expanded_url":"http:\/\/twitter.com\/kafirkaty\/status\/663706053419393026\/photo\/1","type":"photo","sizes":{"large":{"w":685,"h":785,"resize":"fit"},"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706047807365124,"id_str":"663706047807365124","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","url":"https:\/\/t.co\/hNUAay3rJr","display_url":"pic.twitter.com\/hNUAay3rJr","expanded_url":"http:\/\/twitter.com\/kafirkaty\/status\/663706053419393026\/photo\/1","type":"photo","sizes":{"large":{"w":685,"h":785,"resize":"fit"},"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"motherofbelievers","indices":[26,44]},{"text":"patriarchy","indices":[106,117]}],"urls":[],"user_mentions":[{"screen_name":"kafirkaty","name":"Kafirkaty","id":7809282,"id_str":"7809282","indices":[3,13]}],"symbols":[],"media":[{"id":663706047807365124,"id_str":"663706047807365124","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","url":"https:\/\/t.co\/hNUAay3rJr","display_url":"pic.twitter.com\/hNUAay3rJr","expanded_url":"http:\/\/twitter.com\/kafirkaty\/status\/663706053419393026\/photo\/1","type":"photo","sizes":{"large":{"w":685,"h":785,"resize":"fit"},"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"}},"source_status_id":663706053419393026,"source_status_id_str":"663706053419393026","source_user_id":7809282,"source_user_id_str":"7809282"}]},"extended_entities":{"media":[{"id":663706047807365124,"id_str":"663706047807365124","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ik7WIAQTihm.jpg","url":"https:\/\/t.co\/hNUAay3rJr","display_url":"pic.twitter.com\/hNUAay3rJr","expanded_url":"http:\/\/twitter.com\/kafirkaty\/status\/663706053419393026\/photo\/1","type":"photo","sizes":{"large":{"w":685,"h":785,"resize":"fit"},"medium":{"w":600,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"}},"source_status_id":663706053419393026,"source_status_id_str":"663706053419393026","source_user_id":7809282,"source_user_id_str":"7809282"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852326912,"id_str":"663727967852326912","text":"BERLATIHLAH SAMPAI MELAMPAUI BATAS DIRI KEMAMPUANMU !! #1stAnnivIndahnyaJKT48SupportIndah","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242279378,"id_str":"3242279378","name":"trans philiph","screen_name":"TPhiliph","location":null,"url":null,"description":"Pacaran adalah jomblo yang tersamarkan. Pernikahanlah yang mengakhiri masa jomblo","protected":false,"verified":false,"followers_count":16,"friends_count":42,"listed_count":0,"favourites_count":0,"statuses_count":6325,"created_at":"Thu Jun 11 12:33:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608975793637621760\/UeDb5sG4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608975793637621760\/UeDb5sG4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242279378\/1434026206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1stAnnivIndahnyaJKT48SupportIndah","indices":[55,89]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860736001,"id_str":"663727967860736001","text":"\u062d\u0633\u0628\u064a \u0627\u0644\u0644\u0647 \u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0647\u0648 \u0639\u0644\u064a\u0647 \u062a\u0648\u0643\u0644\u062a \u0648\u0647\u0648 \u0631\u0628 \u0627\u0644\u0639\u0631\u0634 \u0627\u0644\u0639\u0638\u064a\u0645 . ( \u0633\u0628\u0639 \u0645\u0631\u0627\u062a \u062d\u064a\u0646 \u064a\u0635\u0628\u062d \u0648\u064a\u0645\u0633\u064a) #\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621 #Hadith","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2477360696,"id_str":"2477360696","name":"\u0641\u0647\u064a\u062f \u0628\u0646 \u062c\u0627\u0628\u0631 \u0627\u0644\u0634\u0631\u0647\u0627\u0646","screen_name":"4f2370284fe748c","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":118,"friends_count":75,"listed_count":0,"favourites_count":3,"statuses_count":637,"created_at":"Sun May 04 20:24:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480683968300199936\/9K2a_mvY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480683968300199936\/9K2a_mvY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0623\u0630\u0643\u0627\u0631_\u0627\u0644\u0635\u0628\u0627\u062d_\u0648\u0627\u0644\u0645\u0633\u0627\u0621","indices":[85,106]},{"text":"Hadith","indices":[107,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831523328,"id_str":"663727967831523328","text":"I might miss you but it's still fuck you \ud83d\udd95\ud83c\udffc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596576691,"id_str":"1596576691","name":"dawone","screen_name":"aypiyess","location":"Indianapolis, IN","url":"http:\/\/tumblr.com\/aypiyess","description":"lol @ my trash ass avi","protected":false,"verified":false,"followers_count":2128,"friends_count":983,"listed_count":1,"favourites_count":18227,"statuses_count":16423,"created_at":"Mon Jul 15 19:14:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663568684292644864\/PnFzAT4u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663568684292644864\/PnFzAT4u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596576691\/1447041801","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053657"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831330818,"id_str":"663727967831330818","text":"I'm hungry asf \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2901784184,"id_str":"2901784184","name":"Jake Weston\u2122","screen_name":"Krossover_king","location":null,"url":null,"description":"#chopsum","protected":false,"verified":false,"followers_count":153,"friends_count":83,"listed_count":0,"favourites_count":51,"statuses_count":126,"created_at":"Sun Nov 16 15:19:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660813685342892032\/tX4rQIyF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660813685342892032\/tX4rQIyF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2901784184\/1446385187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053657"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967835570176,"id_str":"663727967835570176","text":"RT @oswayk_325: @nanana_prfm0210 @gangurowhite \u30c8\u30ea\u30fc\u30ba\u6625\u96c6\u5408\u6c7a\u5b9a\u3067\u3059\u306d\ud83d\udc4f\ud83c\udffb\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052515192,"id_str":"3052515192","name":"\u3044\u306c\u305f\u3072\u306a\u3053","screen_name":"gangurowhite","location":"Fukuoka\u2022Tenjin \u27a1\ufe0eTokyo\u2022Shibuya","url":"http:\/\/Instagram.com\/naasmile","description":null,"protected":false,"verified":false,"followers_count":439,"friends_count":451,"listed_count":2,"favourites_count":3739,"statuses_count":7564,"created_at":"Sun Mar 01 13:48:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663157232431853568\/_vH37OAw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663157232431853568\/_vH37OAw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052515192\/1446464558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:01:52 +0000 2015","id":663627550933958656,"id_str":"663627550933958656","text":"@nanana_prfm0210 @gangurowhite \u30c8\u30ea\u30fc\u30ba\u6625\u96c6\u5408\u6c7a\u5b9a\u3067\u3059\u306d\ud83d\udc4f\ud83c\udffb\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663527218568495104,"in_reply_to_status_id_str":"663527218568495104","in_reply_to_user_id":2664534133,"in_reply_to_user_id_str":"2664534133","in_reply_to_screen_name":"nanana_prfm0210","user":{"id":3550906634,"id_str":"3550906634","name":"\u5927 \u6fa4 \u5f69 \u52a0","screen_name":"oswayk_325","location":"LINE\uff1c\uff1c\uff1c\uff1c\uff1cTwitter","url":"http:\/\/Instagram.com\/ayk_army_","description":"\u2765\u2765\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2661CJ\u4e2d\u9ad866 \u27b3\ufe0e\ufe0e\ufe0e FU EI15 4\uff5c\u682b\u4e95\u30bc\u30df\uff5c\u897f\u65e5\u672c\u30b7\u30df\u30ba\uff5c\u4e32\u4e43\u5320\uff5c#\u304a\u5b22\u30bc\u30df #\u539f\uff25\u30bc\u30df #\u30c4\u30a4\u5ec3 #BTS #\uc815\uad6d #sbhawks #\u4f8d\u30b8\u30e3\u30d1\u30f3 #24N @ayk_fuArmy \u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2765\u2765","protected":false,"verified":false,"followers_count":217,"friends_count":179,"listed_count":0,"favourites_count":1428,"statuses_count":2223,"created_at":"Sun Sep 13 16:23:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389237652275200\/Nb7T2K5S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389237652275200\/Nb7T2K5S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3550906634\/1445764059","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nanana_prfm0210","name":"\u306a\u306a","id":2664534133,"id_str":"2664534133","indices":[0,16]},{"screen_name":"gangurowhite","name":"\u3044\u306c\u305f\u3072\u306a\u3053","id":3052515192,"id_str":"3052515192","indices":[17,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oswayk_325","name":"\u5927 \u6fa4 \u5f69 \u52a0","id":3550906634,"id_str":"3550906634","indices":[3,14]},{"screen_name":"nanana_prfm0210","name":"\u306a\u306a","id":2664534133,"id_str":"2664534133","indices":[16,32]},{"screen_name":"gangurowhite","name":"\u3044\u306c\u305f\u3072\u306a\u3053","id":3052515192,"id_str":"3052515192","indices":[33,46]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053658"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967848103936,"id_str":"663727967848103936","text":"@hiyori_0320 \n\u304a\u304b\u3048\u308a\u306a\u3055\u3044( ^\u03c9^ )\n\u304a\u4f11\u307f\u3057\u3063\u304b\u308a\u697d\u3057\u3081\u307e\u3057\u305f\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722907093217280,"in_reply_to_status_id_str":"663722907093217280","in_reply_to_user_id":3880698559,"in_reply_to_user_id_str":"3880698559","in_reply_to_screen_name":"hiyori_0320","user":{"id":2719591566,"id_str":"2719591566","name":"\u548c\u4eba","screen_name":"t4lv4ev","location":"\u4e09\u91cd\u770c","url":null,"description":"\u57fa\u672c\u30a8\u30ed\u30f2\u30bf\u3067S\u306a\u30aa\u30c3\u30b5\u30f3 \u75c5\u3093\u3067\u307e\u3059\u304c\u5371\u967a\u306f\u7121\u3044\u3068\u601d\u3044\u307e\u3059 \u541b\u3060\u3051\u3092\u611b\u3057\u305f\u3044","protected":false,"verified":false,"followers_count":132,"friends_count":126,"listed_count":1,"favourites_count":625,"statuses_count":17788,"created_at":"Sat Aug 09 15:56:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539221139373817856\/2CbrpZkF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539221139373817856\/2CbrpZkF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2719591566\/1420423490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiyori_0320","name":"\u3072\u3088\u308a","id":3880698559,"id_str":"3880698559","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053661"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856529408,"id_str":"663727967856529408","text":"@Oimo_sara \u3069\u3093\u306a\u3075\u3046\u306b\u3084\u3070\u3044\uff1f","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld Rev\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727676197244928,"in_reply_to_status_id_str":"663727676197244928","in_reply_to_user_id":1624278560,"in_reply_to_user_id_str":"1624278560","in_reply_to_screen_name":"Oimo_sara","user":{"id":539082896,"id_str":"539082896","name":"\u300c\u00b4\u00d7\u03c9\u00d7\uff40\u300d","screen_name":"icnph","location":null,"url":null,"description":"\u6226\u306e\u6642\u9593\u3058\u3083","protected":false,"verified":false,"followers_count":618,"friends_count":408,"listed_count":57,"favourites_count":412178,"statuses_count":162452,"created_at":"Wed Mar 28 14:18:44 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639818035272945665\/AePE-8jT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639818035272945665\/AePE-8jT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539082896\/1415281925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Oimo_sara","name":"\u304a\u3044\u3082\u3061\u3083\u305d","id":1624278560,"id_str":"1624278560","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852359681,"id_str":"663727967852359681","text":"Desde que me registr\u00e9 en Twitter he bebido 37 litros de vino #TuitUtil https:\/\/t.co\/yEyS8HUyie","source":"\u003ca href=\"http:\/\/www.tuitutil.net\" rel=\"nofollow\"\u003eTuit \u00datil\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1952792880,"id_str":"1952792880","name":"H.B.D 5 De Enero","screen_name":"Dime_Ruso","location":null,"url":null,"description":"Lleno de Odio) Ella yO La AmOQuee Noo Puedo Olvidar!! Disculpa Kien Eres?Tu Novia Me Envia Mesaje Y Tu No Sabe:.....Soiiii PobrE PerO BesO RicO000\u2665............","protected":false,"verified":false,"followers_count":258,"friends_count":89,"listed_count":1,"favourites_count":14,"statuses_count":18151,"created_at":"Thu Oct 10 23:11:56 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451466643516825600\/aL7S5xAB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451466643516825600\/aL7S5xAB.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627284168464994304\/5S1cV0U3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627284168464994304\/5S1cV0U3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1952792880\/1424559231","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuitUtil","indices":[61,70]}],"urls":[{"url":"https:\/\/t.co\/yEyS8HUyie","expanded_url":"http:\/\/www.tuitutil.net","display_url":"tuitutil.net","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967843971072,"id_str":"663727967843971072","text":"@meikoi_min_tea \u3089\u3076\u307b\u3067\u304a\u3051\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727914639167488,"in_reply_to_status_id_str":"663727914639167488","in_reply_to_user_id":2840333648,"in_reply_to_user_id_str":"2840333648","in_reply_to_screen_name":"meikoi_min_tea","user":{"id":1555189315,"id_str":"1555189315","name":"\u4e8c\u65e5\u9154\u3046\u3057\u3089\u307e\u3081\u261e11\/17\u880d\u5ea7Fes","screen_name":"129_love","location":"\u57fa\u672c\u4e0a\u624b\u3002","url":"http:\/\/twpf.jp\/129_love","description":"\u8da3\u5473\u57a2\u3067OCD\u57a2\u3002\u3064\u3044\u3077\u308d\u5fc5\u8aad\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u00d7\u3002\u304a\u5225\u308c\u306fB\u3067\u3002\u9054\u592e\u3001\u307e\u3082\u3001\u3051\u3093\u306cetc\u2026\u3002\u7dd1\u9ad8\u5927\u597d\u304d\u3002\nmmko!!\u2192\uff8d\uff9f\uff71\uff8d\uff6f\uff80\uff9e\uff70&\uff71\uff72\uff7a\uff9d\nNEXT\u261e12.15 hangover vol.3","protected":false,"verified":false,"followers_count":164,"friends_count":292,"listed_count":40,"favourites_count":10644,"statuses_count":37500,"created_at":"Sat Jun 29 08:33:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648876850152759296\/Y-eZWrze_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648876850152759296\/Y-eZWrze_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1555189315\/1443539269","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meikoi_min_tea","name":"\u3077\u308a\u3093.\uff61*","id":2840333648,"id_str":"2840333648","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053660"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967864909824,"id_str":"663727967864909824","text":"\u6687\u3059\u304e\u3066\u6b7b\u306c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4102746620,"id_str":"4102746620","name":"\u3086\u3046\u304d","screen_name":"arashi70513","location":null,"url":null,"description":"\u5bae\u57ce \u5c06\u76e3\u2192\u5c71\u306e\u5bfa \u5c06\u76e3\u6771\u2192\u660e\u6210 \u8abf\u7406\u79d1\uff13 \u5d50\u597d\u304d\u301c\u2728 \u7537\u5b50\u3042\u3089\u3057\u3063\u304f \u5c71\u30b3\u30f3\u30d3\u6700\u9ad8\u203c\ufe0f ARASHI BLAST in miyagi 19.20.22.23 @0513arashi\u2190\u5d50\u57a2 @yokoharphi\u2190\u524d\u306e\u57a2\u203c\ufe0f","protected":false,"verified":false,"followers_count":16,"friends_count":27,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Mon Nov 02 14:39:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663271342037270528\/OykvNLd1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663271342037270528\/OykvNLd1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4102746620\/1446477040","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053665"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856537601,"id_str":"663727967856537601","text":"\u308f\u30fc\u6b8b\u5ff5\n\u52dd\u3063\u305f\u3089\u4f55\u304b\u304b\u308b\u304b\u697d\u3057\u307f\u3060\u3063\u305f\u306e\u306b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229215212,"id_str":"3229215212","name":"\u3064\u3057\u308d\uff20\u30d7\u30ec\u30df\u30a212\u2606\u5f61","screen_name":"sports_TSUSIRO","location":null,"url":null,"description":"\u30e4\u30af\u30eb\u30c8\u5c71\u7530\u54f2\u4eba\u3092\u611b\u3059\u308b\u91ce\u7403\u57a2\u3002\u30b9\u30ef\u30ed\u30fc\u30ba\u306e\u8a66\u5408\u304c\u7121\u3044\u6642\u306f\u30bf\u30a4\u30ac\u30fc\u30b9\u3084\u30db\u30fc\u30af\u30b9\u306e\u8a66\u5408\u3092\u898b\u3066\u3044\u307e\u3059\u3002\u3069\u3061\u3089\u306e\u30d5\u30a1\u30f3\u306e\u65b9\u3067\u3082\u30d5\u30a9\u30ed\u30ea\u30e0\u81ea\u7531\u3002\u697d\u3057\u304f\u91ce\u7403\u3092\u898b\u3066\u3044\u304f\u30b9\u30bf\u30a4\u30eb\u3067\u3059\u3002\n\u5c71\u7530\u3001\u4e2d\u6751\u3001\u85e4\u6d6a\u3001\u798f\u7559\u3001\u30de\u30fc\u30c8\u30f3\u3001\u67f3\u7530\u3001\u4eca\u5bae\u304c\u7279\u306b\u597d\u304d\n\u3066\u3044\u3046\u304b\u307f\u3093\u306a\u597d\u304d","protected":false,"verified":false,"followers_count":15,"friends_count":43,"listed_count":0,"favourites_count":339,"statuses_count":1905,"created_at":"Thu May 28 23:19:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604244215833329665\/SkbbyLBh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604244215833329665\/SkbbyLBh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229215212\/1432898110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860748288,"id_str":"663727967860748288","text":"RT @bj_kppbot: \u85ea\u300c\u30a6\u30a4\u30f3\u30ca\u30fc\u3001\u7389\u5b50\u713c\u304d\u3001\u30d6\u30c3\u30b3\u30ed\u30ea\u3001\u30c8\u30de\u30c8\u304f\u3089\u3044\u306e\u8272\u53d6\u308a\u304c\u3042\u308b\u3068\u98df\u7269\u30d0\u30e9\u30f3\u30b9\u826f\u3055\u305d\u3046\u3060\u306a\uff01\u300d\n\u9593\u300c\u85ea\u3055\u3093\u3001\u30d6\u30c3\u30b3\u30ed\u30ea\u3068\u4e91\u3046\u7269\u9a12\u306a\u98df\u3079\u7269\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289877791,"id_str":"3289877791","name":"\u304b\u3063\u3057\u3043\u30fc(\u00b0\u03b5\u00b0)@\u30eb\u30f3\u30d0\u300e\uff76\uff9e\uff7a\uff9d\u300f","screen_name":"4213_4860_love","location":"2\u6b21\u5143 \u6c60\u888b \u5fc3\u306f\u3044\u3064\u3082\u6298\u539f\u81e8\u4e5f\u306e\u508d\u306b","url":"http:\/\/twpf.jp\/4213_4860_love","description":"\u6298\u539f\u81e8\u4e5f\u306e\u611b\u306e\u5bfe\u8c61\u3067\u3042\u308b\u300c \u4eba\u9593 \u300d\u3068\u3044\u3046\u5b58\u5728\u3068\u3057\u3066\u3053\u306e\u4e16\u306b\u751f\u3092\u53d7\u3051\u305f\u3053\u3068\u306b\u65e5\u3005\u611f\u8b1d\u3057\u3066\u751f\u304d\u3066\u3044\u307e\u3059\u3002\u30ca\u30a4\u30d5\u306b\u5207\u308a\u523b\u307e\u308c\u3066\u643a\u5e2f\u306e\u3054\u3068\u304f\u8e0f\u307e\u308c\u305f\u3044\u6298\u539f\u4fe1\u8005\u3002\u300e\u306a\u308a\u304d\u308a\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u300f\u2190\u91cd\u8981\u3002\u30a2\u30a4\u30b3\u30f3\u81ea\u4f5c\u3002\u30a4\u30e9\u30b9\u30c8\u3042\u3052\u305f\u308a\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":177,"friends_count":400,"listed_count":8,"favourites_count":1560,"statuses_count":2499,"created_at":"Fri Jul 24 13:03:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661162134630326273\/TbTQLtxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661162134630326273\/TbTQLtxe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289877791\/1446711357","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:25 +0000 2015","id":663727347489570816,"id_str":"663727347489570816","text":"\u85ea\u300c\u30a6\u30a4\u30f3\u30ca\u30fc\u3001\u7389\u5b50\u713c\u304d\u3001\u30d6\u30c3\u30b3\u30ed\u30ea\u3001\u30c8\u30de\u30c8\u304f\u3089\u3044\u306e\u8272\u53d6\u308a\u304c\u3042\u308b\u3068\u98df\u7269\u30d0\u30e9\u30f3\u30b9\u826f\u3055\u305d\u3046\u3060\u306a\uff01\u300d\n\u9593\u300c\u85ea\u3055\u3093\u3001\u30d6\u30c3\u30b3\u30ed\u30ea\u3068\u4e91\u3046\u7269\u9a12\u306a\u98df\u3079\u7269\u306b\u3064\u3044\u3066\u8a73\u3057\u304f\u300d","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359369116,"id_str":"2359369116","name":"\u30d6\u30e9\u30c3\u30af\u30b8\u30e3\u30c3\u30af \u30b3\u30d4\u30dabot","screen_name":"bj_kppbot","location":null,"url":null,"description":"\u30d6\u30e9\u30c3\u30af\u30b8\u30e3\u30c3\u30af\u3001\u30e4\u30f3\u30b0\u30d6\u30e9\u30c3\u30af\u30b8\u30e3\u30c3\u30af\u306e\u30b3\u30d4\u30da\u6539\u5909bot\u3067\u3059\u30021\u6642\u9593\u306b\u4e00\u56de\u545f\u304d\u307e\u3059\u3002\u30ad\u30e3\u30e9\u5d29\u58ca\u3001\u8150\u3001CP\u8981\u7d20\u3001\u5973\u6027\u5411\u3051\u8868\u73fe\u306a\u3069\u3001\u3044\u308d\u3044\u308d\u3042\u308a\u307e\u3059\u3002\u82e6\u624b\u306a\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u6ce8\u610f\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u624b\u52d5\u3067\u3059\u3002\u306a\u306b\u304b\u3042\u308a\u307e\u3057\u305f\u3089DM\u307e\u3067\u3002","protected":false,"verified":false,"followers_count":204,"friends_count":71,"listed_count":2,"favourites_count":0,"statuses_count":11783,"created_at":"Mon Feb 24 11:40:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/447980474074271745\/2G-DXkjm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/447980474074271745\/2G-DXkjm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359369116\/1395635686","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bj_kppbot","name":"\u30d6\u30e9\u30c3\u30af\u30b8\u30e3\u30c3\u30af \u30b3\u30d4\u30dabot","id":2359369116,"id_str":"2359369116","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967864905728,"id_str":"663727967864905728","text":"\u7c73\u5144\u8cb4\u30ab\u30b9\u30bf\u30e0\u30e1\u30a4\u30c9\u6301\u3063\u3066\u306a\u3044\u306e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1121004464,"id_str":"1121004464","name":"Palky.mtmt","screen_name":"palky_mtmt","location":null,"url":null,"description":"\u597d\u304d\u306a\u4f5c\u54c1\u8a9e\u308a\u304c\u597d\u304d\u306a\u306b\u308f\u304b\u30aa\u30bf\u30af USG\u306e\u7530\u6df5\u3055\u3093\u304c\u597d\u304d\u3067\u3059\u3002\u5ddd\u5185\u3068\u30e9\u30a6\u30e9\u3068\u52a0\u85e4\u6075\u3001\u5c0f\u91ce\u5bfa\u3055\u3093\u3078\u306e\u611b\u304c\u91cd\u3044 \u30d9\u30fc\u30b9\u5f3e\u3044\u3066\u307e\u3059\u3002\u305f\u307e\u306b\u30a8\u30ec\u30ad\u30ae\u30bf\u30fc\u3002\u30d8\u30c3\u30c0\u30fc\u30a2\u30a4\u30b3\u30f3\u2192\u59c9\u306e@bakaoto \u534a\u5206bot","protected":false,"verified":false,"followers_count":208,"friends_count":337,"listed_count":7,"favourites_count":128632,"statuses_count":100245,"created_at":"Sat Jan 26 05:07:27 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448871888580653056\/NIrx-6vV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448871888580653056\/NIrx-6vV.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648445984607854592\/W5Lq5JB6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648445984607854592\/W5Lq5JB6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1121004464\/1396346896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7efb0fd5276fdda5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7efb0fd5276fdda5.json","place_type":"city","name":"\u8c4a\u5cf6\u533a","full_name":"\u6771\u4eac\u90fd \u8c4a\u5cf6\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.678026,35.710074],[139.678026,35.743412],[139.751474,35.743412],[139.751474,35.710074]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053665"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852335105,"id_str":"663727967852335105","text":"@0621_yuno \u307e\u3055\u304b\u82b1\u305f\u3093\u30e9\u30a4\u30d6\u3067\u898b\u304b\u3051\u308b\u3068\u306f\u306d( \u02d8\u03c9\u02d8 )\n\u30e9\u30a4\u30d6\u884c\u3063\u3066\u305f\u3089\u307f\u308c\u305f\u304b\u3082\u3088\uff01w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717524949766145,"in_reply_to_status_id_str":"663717524949766145","in_reply_to_user_id":3039464293,"in_reply_to_user_id_str":"3039464293","in_reply_to_screen_name":"0621_yuno","user":{"id":2890178401,"id_str":"2890178401","name":"\u305c\u308b\u304f\u3093\u03c9\u30fb\uff40@\u3042\u308b\u3075\u3041\u304d\u3085\u3093\u30ef\u30f3\u30de\u30f3","screen_name":"zelzel_v","location":null,"url":null,"description":"\u6b4c\u3044\u624b\/\u308c\u3092\u308b\/\u82b1\u305f\u3093\/\u79cb\u8d64\u97f3\/\u3042\u308b\u3075\u3041\u304d\u3085\u3093\/\u8d64\u30c6\u30a3\u30f3\/\u9e7f\u4e43\/\u9396\u90a3\/\u677e\u4e0b\/\u307e\u3075\u307e\u3075\/96\u732b\/\u306a\u306a\u3072\u3089 \u308c\u3092\u308b\u6771\u306e\u5bb4\u4f59\u97fb...","protected":false,"verified":false,"followers_count":70,"friends_count":114,"listed_count":0,"favourites_count":21,"statuses_count":811,"created_at":"Tue Nov 04 22:22:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663629698375639040\/ivEcWjoB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663629698375639040\/ivEcWjoB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2890178401\/1446115829","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0621_yuno","name":"\u60a0\u4e43@\u308c\u3092\u308b\u751f\u8a95\u796d","id":3039464293,"id_str":"3039464293","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967839784960,"id_str":"663727967839784960","text":"Meron na siyang ibaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":953075976,"id_str":"953075976","name":"chris fernandez","screen_name":"ImSuperSheg","location":null,"url":null,"description":"Tomboy man sa inyong paningin. Subukan niyong mahalin. baka pati Asin LALANGGAMIN :DD","protected":false,"verified":false,"followers_count":44,"friends_count":91,"listed_count":0,"favourites_count":7,"statuses_count":401,"created_at":"Sat Nov 17 07:07:40 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060583441\/8ff14579466ffa5d6b5063c0b70e0748.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060583441\/8ff14579466ffa5d6b5063c0b70e0748.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645997370925158400\/IajjB6AZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645997370925158400\/IajjB6AZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953075976\/1442852638","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080053659"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831351296,"id_str":"663727967831351296","text":"\uc0c9\uae4c\ub294\u3134\ub370 \ubb54\uac00\ud5c8\uc804\ud558\ub354\ub77c","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2932385413,"id_str":"2932385413","name":"\uce20\ub4dc\ub9bc @\ubc84\uce74\ucda9 \uc218\uc694\uc77c","screen_name":"I_Ru__","location":"\ub780\uc0ec\ub9cc\uc138.. \uc564\uce90\ub791 \ub0b4\uce90\uc0ac\uc774 \uff3c\uc778\uc7a5\u2665\ubcf4\ub77c","url":null,"description":"\uce20 \uc720\uba54 \u2740 \ud558 \uc774\ub8e8 * \ud0d0\ub77c\ub300\ud654\uc8fc\uc758 * \ud3ed\ud2b8\u00b7\uc695\ud2b8\u00b7\uc8fc\uc758 * \ub0b4\uc0ac\ub78c\ub0b4\uc0ac\ub791 * 1\ucc28\ubcf8\uc9c4 * \uc740\ud63c * \uad6c\ub3c5X *\nTraditio-Karan\u2665Charlotte","protected":false,"verified":false,"followers_count":55,"friends_count":58,"listed_count":2,"favourites_count":1147,"statuses_count":11437,"created_at":"Tue Dec 16 14:04:46 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652144676913348611\/jR-whxvD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652144676913348611\/jR-whxvD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2932385413\/1446738572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080053657"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860736000,"id_str":"663727967860736000","text":"@ayachapo819 @navoo05 \u306a\u3070\u3061\u3083\u3093\u304a\u307f\u3084\u3052\u3088\u308d\u3057\u304f\u306d\u7b11\n\u3066\u304b\u3042\u3084\u306d\u3082\u3046\u4eac\u90fd\u304b\u3089\u5e30\u3063\u3066\u304d\u305f\u306e\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727586602692608,"in_reply_to_status_id_str":"663727586602692608","in_reply_to_user_id":3016956091,"in_reply_to_user_id_str":"3016956091","in_reply_to_screen_name":"ayachapo819","user":{"id":3318001784,"id_str":"3318001784","name":"Kame-p??","screen_name":"4tWb677igNLVwS9","location":"\u6771\u4eac\u90fd \u6c60\u888b 1\u4eba\u66ae\u3089\u3057","url":null,"description":"goosehouse\/\u30dc\u30ab\u30ed\/honeyworks\/\u6b4c\u3044\u624b\/\u30a2\u30cb\u30e1 \u7f8e\u5bb9\u5c02\u9580\u5b66\u751f TSBS 1C","protected":false,"verified":false,"followers_count":1272,"friends_count":1144,"listed_count":6,"favourites_count":376,"statuses_count":628,"created_at":"Mon Aug 17 18:19:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663714078779506688\/zpABCpxu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663714078779506688\/zpABCpxu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318001784\/1443718578","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayachapo819","name":"Ayane","id":3016956091,"id_str":"3016956091","indices":[0,12]},{"screen_name":"navoo05","name":"\u306a\u3070\u3063\u3061","id":524120314,"id_str":"524120314","indices":[13,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080053664"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967864950784,"id_str":"663727967864950784","text":"Get Weather Updates from The Weather Channel. 09:40:53","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418909127,"id_str":"2418909127","name":"02667gnlc","screen_name":"02667gnlc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":46964,"created_at":"Sun Mar 30 12:01:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080053665"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852359680,"id_str":"663727967852359680","text":"De visita nuevamente en la radio #ChiquitaDejaDeCrecer #Mia #BuenLunes https:\/\/t.co\/ytjzzRikkN","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146704360,"id_str":"146704360","name":"Nico Rojas","screen_name":"NicoRojasDj","location":null,"url":"http:\/\/www.facebook.com\/nico.rojas1234","description":null,"protected":false,"verified":false,"followers_count":657,"friends_count":657,"listed_count":1,"favourites_count":1679,"statuses_count":3889,"created_at":"Sat May 22 03:50:45 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652512435300118528\/rPrBgEYz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652512435300118528\/rPrBgEYz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146704360\/1444086702","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ChiquitaDejaDeCrecer","indices":[33,54]},{"text":"Mia","indices":[55,59]},{"text":"BuenLunes","indices":[60,70]}],"urls":[{"url":"https:\/\/t.co\/ytjzzRikkN","expanded_url":"https:\/\/instagram.com\/p\/93iZSloUKgrVUcnG069sywjuodrN44xSAwIo00\/","display_url":"instagram.com\/p\/93iZSloUKgrV\u2026","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967869079553,"id_str":"663727967869079553","text":"@SK_floARA112 belum unni boboin","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726713025630208,"in_reply_to_status_id_str":"663726713025630208","in_reply_to_user_id":950769314,"in_reply_to_user_id_str":"950769314","in_reply_to_screen_name":"SK_floARA112","user":{"id":1521714199,"id_str":"1521714199","name":"YUKO","screen_name":"SK_Baeksumin","location":null,"url":null,"description":"Ulzzang Model Baek Sumin \u00a9 January 94 [V] @SK__ROLEPLAYER Anufams;sundasqSmofc;","protected":false,"verified":false,"followers_count":2657,"friends_count":2478,"listed_count":1,"favourites_count":31,"statuses_count":44208,"created_at":"Sun Jun 16 09:14:34 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663475974655209472\/YXxNXRdN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663475974655209472\/YXxNXRdN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1521714199\/1446987256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SK_floARA112","name":"\u30b3\u30fb\u30a2\u30e9","id":950769314,"id_str":"950769314","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080053666"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967869247488,"id_str":"663727967869247488","text":"Ce soir !!!! Lundi 9 novembre reprises des cours !!!!\nDANSER LA SALSA A SAVERNE!\n\n- 19h30 Salsa cours d\u00e9butant.\n-... https:\/\/t.co\/s5avYgUYHX","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1818989592,"id_str":"1818989592","name":"Salsa Vibrations","screen_name":"SalsaVibrations","location":"Saverne","url":"http:\/\/www.salsavibrations.com","description":"Cours de Danse, collectifs et particuliers, pour d\u00e9butants ou confirm\u00e9s ! Contactez-nous au 06.68.81.11.08 !","protected":false,"verified":false,"followers_count":12,"friends_count":15,"listed_count":0,"favourites_count":0,"statuses_count":1156,"created_at":"Sun Sep 08 08:44:32 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000428019364\/c6a85d59d3dc01b234bfc3f66e1ff5d7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000428019364\/c6a85d59d3dc01b234bfc3f66e1ff5d7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1818989592\/1378630177","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/s5avYgUYHX","expanded_url":"http:\/\/fb.me\/4uLELu2tF","display_url":"fb.me\/4uLELu2tF","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080053666"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860752384,"id_str":"663727967860752384","text":"\uc73c\uc74c. \uc544\ud53c\ub974 \uc871 \ub2f9\uc2e0\ub4e4\uc758 \uc131\uc778\uc2dd\uc774 \uc774 \uc2dc\uae30\uac70\ub4e0. \uc544\ud53c\ub974 \uc871\uc758 \uc131\uc778\uc2dd\uc5d0\uc11c \uc18c\ub144 \ub2f9\uc2e0\uc740 \uba39\uc744\uac83\ub3c4 \uc5c6\uc774 \uce7c \ud55c \uc790\ub8e8\ub9cc \ub4e4\uace0 \ud63c\uc790\uc11c \ubd80\ub77d\uc744 \ube60\uc838\ub098\uc624\uc9c0. \ubc30\uac00 \ubab9\uc2dc \uace0\ud50c \uac70\uc57c.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319845404,"id_str":"3319845404","name":"\ub370\uc2a4\ud544\ub4dc","screen_name":"PR_deathfield_b","location":null,"url":null,"description":"\uc774\uc601\ub3c4 \uc791 \ud3f4\ub77c\ub9ac\uc2a4 \ub7a9\uc18c\ub514\uc758 \ub370\uc2a4\ud544\ub4dc \ube44\uacf5\uc2dd \ubc18\uc790\ub3d9\ubd07. FUB \uc790\uc720. \ubb38\uc758\ub294 DM\uc73c\ub85c. \uc57d\uc2a4\ud3ec\uc8fc\uc758.","protected":false,"verified":false,"followers_count":31,"friends_count":30,"listed_count":4,"favourites_count":0,"statuses_count":1998,"created_at":"Wed Aug 19 09:24:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634041971074449408\/me7OY-1M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634041971074449408\/me7OY-1M_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080053664"} +{"delete":{"status":{"id":663674943440158720,"id_str":"663674943440158720","user_id":2897525005,"user_id_str":"2897525005"},"timestamp_ms":"1447080053794"}} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967856689152,"id_str":"663727967856689152","text":"@inconseguir Olha, agora podia atirar-te com o Charlie Quadros outra vez...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726166809931776,"in_reply_to_status_id_str":"663726166809931776","in_reply_to_user_id":3040424454,"in_reply_to_user_id_str":"3040424454","in_reply_to_screen_name":"inconseguir","user":{"id":21769623,"id_str":"21769623","name":"LFP","screen_name":"lfpedrosa","location":"Devem ter muito a ver com isso","url":"http:\/\/estorcegar.blogs.sapo.pt","description":"O twitter est\u00e1 dividido em duas partes em profunda di\u00e1lise: a parte A e a parte B. H\u00e1 ainda a parte C, que \u00e9 a das minorias. \n\nN\u00e3o ao Holoc\u00e1ustico!","protected":false,"verified":false,"followers_count":658,"friends_count":666,"listed_count":12,"favourites_count":1420,"statuses_count":16049,"created_at":"Tue Feb 24 16:43:50 +0000 2009","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9EB0A0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000089919466\/d502f03e1612c2ee1726a5c3a01f883c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000089919466\/d502f03e1612c2ee1726a5c3a01f883c.jpeg","profile_background_tile":true,"profile_link_color":"027538","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651793432491356160\/ZI-JRBlU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651793432491356160\/ZI-JRBlU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21769623\/1444225907","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inconseguir","name":"o pai j\u00e1 vai","id":3040424454,"id_str":"3040424454","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080053663"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967852478464,"id_str":"663727967852478464","text":"@RedstoneKnarias mejorate uapo!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663706886496239616,"in_reply_to_status_id_str":"663706886496239616","in_reply_to_user_id":1702272008,"in_reply_to_user_id_str":"1702272008","in_reply_to_screen_name":"RedstoneKnarias","user":{"id":2165344510,"id_str":"2165344510","name":"jesuss68","screen_name":"jesuslu90665036","location":null,"url":null,"description":"Con ganas de que habr\u00e1 @KubrixGames \nNuestro IDLM siempre estar\u00e1 con nosotros ^^","protected":false,"verified":false,"followers_count":52,"friends_count":39,"listed_count":1,"favourites_count":244,"statuses_count":367,"created_at":"Sat Nov 02 20:15:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596030078213042176\/5i2IzEyM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596030078213042176\/5i2IzEyM_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RedstoneKnarias","name":"RedstoneCanarias","id":1702272008,"id_str":"1702272008","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080053662"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967843934208,"id_str":"663727967843934208","text":"RT @DoffleLove: (RT\uc774\ubca4\ud2b8)\n\u2606\uc194\ub85c\ubd84\ub4e4\uc744 \uc704\ud55c \ube7c\ube7c\ub85c \uc774\ubca4\ud2b8\u2606\n\uace7\uc788\uc74c \ube7c\ube7c\ub85c\ub370\uc774\uc778\ub370 \ubabb\ubc1b\uc74c \uc11c\uc6b4\ud558\uc796\uc544\uc694.\n\ucd94\ucca8\uae30\ud1b5\ud574 2\ubd84\uaed8 \uae30\ud504\ud2f0\ucf58 \ud55c\uc7a5 \ub4dc\ub9b4\uac8c\uc694\n\ud2b8\uce5c\ud55c\uc815(X) \ud314\ub85c\uc790\uc720(O)\n\ub2f9\ubc1c\uc740 11\uc6d4 11\uc77c https:\/\/t.co\/NbRqVcIv\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990949139,"id_str":"2990949139","name":"\ud788\uc57c\/\ub9b0","screen_name":"K95685521","location":"secret message \/ \uc870\uae08\ubc14\uc068 !","url":null,"description":"\ucd71\ucefe\uc11c\uce58+\uc54c\ud2f0\u591a http:\/\/twpf.jp\/K95685521 \u261c \ubd10\uc8fc\uc138\uc694 \u3160\u25bd\u3160","protected":false,"verified":false,"followers_count":54,"friends_count":67,"listed_count":6,"favourites_count":85190,"statuses_count":3717,"created_at":"Tue Jan 20 08:52:40 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663336174501498881\/2y_gUrfB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663336174501498881\/2y_gUrfB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990949139\/1446209631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:42:49 +0000 2015","id":663622756718645248,"id_str":"663622756718645248","text":"(RT\uc774\ubca4\ud2b8)\n\u2606\uc194\ub85c\ubd84\ub4e4\uc744 \uc704\ud55c \ube7c\ube7c\ub85c \uc774\ubca4\ud2b8\u2606\n\uace7\uc788\uc74c \ube7c\ube7c\ub85c\ub370\uc774\uc778\ub370 \ubabb\ubc1b\uc74c \uc11c\uc6b4\ud558\uc796\uc544\uc694.\n\ucd94\ucca8\uae30\ud1b5\ud574 2\ubd84\uaed8 \uae30\ud504\ud2f0\ucf58 \ud55c\uc7a5 \ub4dc\ub9b4\uac8c\uc694\n\ud2b8\uce5c\ud55c\uc815(X) \ud314\ub85c\uc790\uc720(O)\n\ub2f9\ubc1c\uc740 11\uc6d4 11\uc77c https:\/\/t.co\/NbRqVcIvje","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3547312633,"id_str":"3547312633","name":"\ub3c4\ud53c\uc5d0\uac8c\uc601\uc6d0\ud788\ud640\ub9ad\ub41c\uc81c\uc774\u2665","screen_name":"DoffleLove","location":"\ub3c4\ub828\ub2d8\ud488\uc18d","url":null,"description":"\ub3c4\ud53c\ub77c\uba74 \ubb34\uc870\uac74 \ud30c\ub294 \uc8fc\uc758\uc790 \uc785\ub2c8\ub2e4.\n\uc874\uc798\ub7ec(X) \uadf8\ub9bc \uc7ac\uc8fc\uac00 \uc5c6\uc5b4\uc11c \uc2ac\ud508 1\uc778 \n\uc18c\ube44\ub7ec\/\uc774\ubca4\ud2b8\ub7ec (O)\n\uc55e\uc73c\ub85c \ud06c\uace0 \uc791\uc740 \uc774\ubca4\ud2b8\ub3c4 \uac00\ub054 \uc5f4\uac81\ub2c8\ub2e4.\n\uc120\uba58\ud6c4 \ub9de\ud314(O)\/\uc9c0\ub8b0 (X)","protected":false,"verified":false,"followers_count":67,"friends_count":84,"listed_count":0,"favourites_count":851,"statuses_count":2737,"created_at":"Sun Sep 13 08:36:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660365640113328128\/uc55VyxJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660365640113328128\/uc55VyxJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3547312633\/1443084451","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663622687592288256,"id_str":"663622687592288256","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":782,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663622687592288256,"id_str":"663622687592288256","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":782,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}}},{"id":663622755057733632,"id_str":"663622755057733632","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpYTQVEAAIZeO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpYTQVEAAIZeO.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":406,"resize":"fit"},"large":{"w":640,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":718,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DoffleLove","name":"\ub3c4\ud53c\uc5d0\uac8c\uc601\uc6d0\ud788\ud640\ub9ad\ub41c\uc81c\uc774\u2665","id":3547312633,"id_str":"3547312633","indices":[3,14]}],"symbols":[],"media":[{"id":663622687592288256,"id_str":"663622687592288256","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":782,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}},"source_status_id":663622756718645248,"source_status_id_str":"663622756718645248","source_user_id":3547312633,"source_user_id_str":"3547312633"}]},"extended_entities":{"media":[{"id":663622687592288256,"id_str":"663622687592288256","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpUX7UEAAC2-r.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":782,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}},"source_status_id":663622756718645248,"source_status_id_str":"663622756718645248","source_user_id":3547312633,"source_user_id_str":"3547312633"},{"id":663622755057733632,"id_str":"663622755057733632","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWpYTQVEAAIZeO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWpYTQVEAAIZeO.jpg","url":"https:\/\/t.co\/NbRqVcIvje","display_url":"pic.twitter.com\/NbRqVcIvje","expanded_url":"http:\/\/twitter.com\/DoffleLove\/status\/663622756718645248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":406,"resize":"fit"},"large":{"w":640,"h":766,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":718,"resize":"fit"}},"source_status_id":663622756718645248,"source_status_id_str":"663622756718645248","source_user_id":3547312633,"source_user_id_str":"3547312633"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080053660"} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967831330816,"id_str":"663727967831330816","text":"@esposasincoger buen inicio de semana https:\/\/t.co\/T8ZcC4kR9z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3600231614,"in_reply_to_user_id_str":"3600231614","in_reply_to_screen_name":"esposasincoger","user":{"id":2249799601,"id_str":"2249799601","name":"TANGAS SUCIAS,USADAS","screen_name":"tangasuci","location":null,"url":null,"description":"tangas o calzones sucios recien quitados novias,amigas,vecinas,primas o esposas no te sorprendas si encuentras la tuya aqui .","protected":false,"verified":false,"followers_count":2735,"friends_count":230,"listed_count":11,"favourites_count":60,"statuses_count":1183,"created_at":"Tue Dec 17 04:28:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662471063255711744\/58Ek34tt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662471063255711744\/58Ek34tt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2249799601\/1441938574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"esposasincoger","name":"esposacalcypGeisha","id":3600231614,"id_str":"3600231614","indices":[0,15]}],"symbols":[],"media":[{"id":663726650719256576,"id_str":"663726650719256576","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH30wUwAAdOzY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH30wUwAAdOzY.jpg","url":"https:\/\/t.co\/T8ZcC4kR9z","display_url":"pic.twitter.com\/T8ZcC4kR9z","expanded_url":"http:\/\/twitter.com\/tangasuci\/status\/663727967831330816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726650719256576,"id_str":"663726650719256576","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH30wUwAAdOzY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH30wUwAAdOzY.jpg","url":"https:\/\/t.co\/T8ZcC4kR9z","display_url":"pic.twitter.com\/T8ZcC4kR9z","expanded_url":"http:\/\/twitter.com\/tangasuci\/status\/663727967831330816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727925825417216,"id_str":"663727925825417216","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCC5UsAASyJ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCC5UsAASyJ0.jpg","url":"https:\/\/t.co\/T8ZcC4kR9z","display_url":"pic.twitter.com\/T8ZcC4kR9z","expanded_url":"http:\/\/twitter.com\/tangasuci\/status\/663727967831330816\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080053657"} +{"delete":{"status":{"id":645000224310730752,"id_str":"645000224310730752","user_id":592273658,"user_id_str":"592273658"},"timestamp_ms":"1447080054052"}} +{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967860731904,"id_str":"663727967860731904","text":"@babaenkospartak \u0427\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0441 \u043a\u0430\u043a\u0438\u043c\u0438 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430\u043c\u0438 \u0432\u044b \u043c\u043e\u0433\u043b\u0438 \u0431\u044b \u043f\u043e\u043b\u044e\u0431\u0438\u0442\u044c?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":442611973,"in_reply_to_user_id_str":"442611973","in_reply_to_screen_name":"BabaenkoSpartak","user":{"id":442600679,"id_str":"442600679","name":"\u0422\u0435\u043e\u0434\u043e\u0440 \u0428\u0435\u0431\u0430\u043b\u043a\u043e","screen_name":"TeodorShebalko","location":"\u0421\u0430\u0440\u0430\u043d\u0441\u043a","url":"https:\/\/twitter.com\/teodorshebalko","description":"\u0413\u043b\u0443\u043f\u043e\u0441\u0442\u044c \u0441\u0442\u043e\u043b\u044c \u0436\u0435 \u0447\u0430\u0441\u0442\u043e \u0432\u044b\u0437\u0432\u0430\u043d\u0430 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u043e\u043c \u0447\u0443\u0432\u0441\u0442\u0432, \u043a\u0430\u043a \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043a\u043e\u043c \u043c\u044b\u0441\u043b\u0435\u0439","protected":false,"verified":false,"followers_count":5880,"friends_count":806,"listed_count":530,"favourites_count":73,"statuses_count":14362,"created_at":"Wed Dec 21 08:24:54 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719814441\/12__6__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719814441\/12__6__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/442600679\/1436809435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BabaenkoSpartak","name":"\u0411\u0430\u0431\u0430\u0435\u043d\u043a\u043e \u0421\u043f\u0430\u0440\u0442\u0430\u043a","id":442611973,"id_str":"442611973","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080053664"} +{"delete":{"status":{"id":663727963645616128,"id_str":"663727963645616128","user_id":381280295,"user_id_str":"381280295"},"timestamp_ms":"1447080054173"}} +{"delete":{"status":{"id":585080695200026624,"id_str":"585080695200026624","user_id":1633681885,"user_id_str":"1633681885"},"timestamp_ms":"1447080054260"}} +{"delete":{"status":{"id":371589971473207296,"id_str":"371589971473207296","user_id":1677619717,"user_id_str":"1677619717"},"timestamp_ms":"1447080054349"}} +{"delete":{"status":{"id":628813901874868224,"id_str":"628813901874868224","user_id":374961847,"user_id_str":"374961847"},"timestamp_ms":"1447080054560"}} +{"delete":{"status":{"id":645028451989131264,"id_str":"645028451989131264","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080054667"}} +{"delete":{"status":{"id":476285469987459072,"id_str":"476285469987459072","user_id":2325655002,"user_id_str":"2325655002"},"timestamp_ms":"1447080054695"}} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972042579968,"id_str":"663727972042579968","text":"When you just trying to smoke a blunt and all she wanna do is get it in","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1125565682,"id_str":"1125565682","name":"S.","screen_name":"_sterlingG","location":null,"url":"https:\/\/soundcloud.com\/mathew-thompson-17\/sterling-g-wavez","description":"chilly got it","protected":false,"verified":false,"followers_count":464,"friends_count":389,"listed_count":0,"favourites_count":1401,"statuses_count":21906,"created_at":"Sun Jan 27 16:43:06 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653286926263435264\/nbYTaa5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653286926263435264\/nbYTaa5V_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054661"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038393856,"id_str":"663727972038393856","text":"RT @muyinteresante: Un nuevo f\u00e1rmaco consigue curar el c\u00e1ncer de mama en el 50% de los casos: \nhttps:\/\/t.co\/qMFMxRZDKW https:\/\/t.co\/Cwijx67\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150028242,"id_str":"2150028242","name":"El Maetro\u00ae","screen_name":"lomaetro","location":"Bella Isla RD","url":null,"description":"Mi pasion s el dise\u00f1o grafico y con ello me gusta expresar lo k entiendo es el sentir d mi RD. Licenciado en informatica. Maestr\u00eda en Relaciones Internacionales","protected":false,"verified":false,"followers_count":415,"friends_count":102,"listed_count":6,"favourites_count":643,"statuses_count":3649,"created_at":"Wed Oct 23 01:36:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659946932153032704\/V6AIXmDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659946932153032704\/V6AIXmDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150028242\/1446195800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:04 +0000 2015","id":663710146854387713,"id_str":"663710146854387713","text":"Un nuevo f\u00e1rmaco consigue curar el c\u00e1ncer de mama en el 50% de los casos: \nhttps:\/\/t.co\/qMFMxRZDKW https:\/\/t.co\/Cwijx67vT5","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15648827,"id_str":"15648827","name":"MUY Interesante","screen_name":"muyinteresante","location":"Spain","url":"http:\/\/www.muyinteresante.es","description":"Revista de ciencia, historia, tecnolog\u00eda, salud, psicolog\u00eda, innovaci\u00f3n y curiosidades","protected":false,"verified":true,"followers_count":6546004,"friends_count":494,"listed_count":30242,"favourites_count":3380,"statuses_count":76306,"created_at":"Tue Jul 29 17:54:35 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EA0023","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435760607665479680\/vsDh8XdX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435760607665479680\/vsDh8XdX.jpeg","profile_background_tile":false,"profile_link_color":"C80028","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BBBBBB","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469400872925937664\/lOUWQ5lJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469400872925937664\/lOUWQ5lJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15648827\/1436271035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":149,"favorite_count":154,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qMFMxRZDKW","expanded_url":"http:\/\/www.muyinteresante.es\/innovacion\/articulo\/un-nuevo-farmaco-consigue-curar-el-cancer-de-mama-en-el-50-de-los-casos-801410430143","display_url":"muyinteresante.es\/innovacion\/art\u2026","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":657572651070681089,"id_str":"657572651070681089","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","url":"https:\/\/t.co\/Cwijx67vT5","display_url":"pic.twitter.com\/Cwijx67vT5","expanded_url":"http:\/\/twitter.com\/muyinteresante\/status\/663710146854387713\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657572651070681089,"id_str":"657572651070681089","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","url":"https:\/\/t.co\/Cwijx67vT5","display_url":"pic.twitter.com\/Cwijx67vT5","expanded_url":"http:\/\/twitter.com\/muyinteresante\/status\/663710146854387713\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qMFMxRZDKW","expanded_url":"http:\/\/www.muyinteresante.es\/innovacion\/articulo\/un-nuevo-farmaco-consigue-curar-el-cancer-de-mama-en-el-50-de-los-casos-801410430143","display_url":"muyinteresante.es\/innovacion\/art\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"muyinteresante","name":"MUY Interesante","id":15648827,"id_str":"15648827","indices":[3,18]}],"symbols":[],"media":[{"id":657572651070681089,"id_str":"657572651070681089","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","url":"https:\/\/t.co\/Cwijx67vT5","display_url":"pic.twitter.com\/Cwijx67vT5","expanded_url":"http:\/\/twitter.com\/muyinteresante\/status\/663710146854387713\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663710146854387713,"source_status_id_str":"663710146854387713","source_user_id":15648827,"source_user_id_str":"15648827"}]},"extended_entities":{"media":[{"id":657572651070681089,"id_str":"657572651070681089","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSAq15kUcAEz-0J.jpg","url":"https:\/\/t.co\/Cwijx67vT5","display_url":"pic.twitter.com\/Cwijx67vT5","expanded_url":"http:\/\/twitter.com\/muyinteresante\/status\/663710146854387713\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":400,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":300,"resize":"fit"}},"source_status_id":663710146854387713,"source_status_id_str":"663710146854387713","source_user_id":15648827,"source_user_id_str":"15648827"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972034158592,"id_str":"663727972034158592","text":"IndiaToday: There was an entire series of attempts were made to polarise the polls on communal grounds by BJP PavanK_Varma #BiharResults #T\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3890695347,"id_str":"3890695347","name":"Jascapital","screen_name":"jascapital2","location":null,"url":"http:\/\/www.jascapital.com","description":"JAS Capital is an investment consulting firm, transparent and independent for all investors.","protected":false,"verified":false,"followers_count":317,"friends_count":1415,"listed_count":49,"favourites_count":0,"statuses_count":42991,"created_at":"Wed Oct 07 14:29:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651812917353029632\/WraWjsqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651812917353029632\/WraWjsqy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3890695347\/1444239322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BiharResults","indices":[123,136]},{"text":"T","indices":[137,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054659"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972042547200,"id_str":"663727972042547200","text":"\u0442\u043e\u0442 \u0441\u0430\u043c\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442, \u043a\u043e\u0433\u0434\u0430 \u0442\u044b \u043f\u043e\u043d\u044f\u043b, \u0447\u0442\u043e \u0442\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0448\u044c \u0431\u044b\u0442\u044c \u043c\u0438\u043b\u044b\u043c \u0438\u0437-\u0437\u0430 \u0441\u0432\u043e\u0435\u0433\u043e \u043b\u0438\u0446\u0430.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":927059142,"id_str":"927059142","name":"\u043f\u043e\u0436\u0438\u0434\u043e\u0441\u0438\u043d\u043a\u0430","screen_name":"pozid2738","location":null,"url":null,"description":"\u0440\u0430\u0434\u0443\u0436\u043d\u0430\u044f \u043f\u043e\u043b\u043e\u0432\u0438\u043d\u043e\u0447\u043a\u0430| ~*5*~| \u30a2\u30ca\u30b9\u30bf\u30b7\u30a2\u2605|","protected":false,"verified":false,"followers_count":135,"friends_count":55,"listed_count":2,"favourites_count":4850,"statuses_count":9584,"created_at":"Mon Nov 05 07:12:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663234010563395584\/9CbVNY7I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663234010563395584\/9CbVNY7I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/927059142\/1440270742","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080054661"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038393858,"id_str":"663727972038393858","text":"RT @Tumblrciler: Peki ben nas\u0131l hissediyorum. Bundan haberin var m\u0131?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3656697203,"id_str":"3656697203","name":"Gamzee","screen_name":"GaMiyy","location":"\u0130stanbul, T\u00fcrkiye","url":null,"description":"\u0130STANBUL \/ BE\u015e\u0130KTA\u015e. YENGE\u00c7","protected":false,"verified":false,"followers_count":369,"friends_count":207,"listed_count":0,"favourites_count":5522,"statuses_count":3797,"created_at":"Mon Sep 14 20:46:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721459794255872\/IRVrDVrx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721459794255872\/IRVrDVrx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3656697203\/1445076873","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727799694327808,"id_str":"663727799694327808","text":"Peki ben nas\u0131l hissediyorum. Bundan haberin var m\u0131?","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2833726899,"id_str":"2833726899","name":"Tumblr.","screen_name":"Tumblrciler","location":null,"url":null,"description":"Hem kad\u0131na hem erke\u011fe hitap ederim g\u00fczel tweetlerim var ka\u00e7\u0131rmay\u0131n derim.","protected":false,"verified":false,"followers_count":138489,"friends_count":18917,"listed_count":40,"favourites_count":11396,"statuses_count":29471,"created_at":"Thu Oct 16 10:09:55 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598851973501362176\/AwCE0c9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598851973501362176\/AwCE0c9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833726899\/1417038330","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tumblrciler","name":"Tumblr.","id":2833726899,"id_str":"2833726899","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972034154496,"id_str":"663727972034154496","text":"RT @moooooni22: #\u0642\u0631\u0648\u0628_\u0645\u0644\u0643\u0647_\u0646\u0641\u0633\u064a_\u0644\u0644\u062f\u0639\u0645 \u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u0630\u064a \u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0647\u0648 \u0627\u0644\u062d\u064a \u0627\u0644\u0642\u064a\u0645 \u0648\u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2465128617,"id_str":"2465128617","name":"\u82e6\u3057\u307f\u3092\u611b","screen_name":"Ailss199951","location":null,"url":null,"description":"\u0648\u064e\u0645\u064e\u0627 \u062e\u064e\u0627\u0628 \u0645\u0646 \u0642\u064e\u0627\u0644 \u0631\u0628\u0651\u064a \u0623\u0646\u062a\u064e \u0627\u0644\u0645\u064c\u064a\u0633\u0631 \u0648\u0623\u0646\u062a\u064e \u0627\u0644\u0645\u064f\u0633\u0647\u0650\u0644 , \u0633\u064e\u0647\u0651\u0644 \u0623\u0645\u0631\u0650\u064a \u0648\u064e\u062d\u064e\u0642\u0642 \u0645\u064e\u0637\u0644\u064e\u0628\u064a \u0648\u064e\u0633\u064e\u062e\u0650\u0631\u0644\u064a \u0645\u064e\u0627 \u0647\u064f\u0648 \u062e\u064e\u064a\u0631 \u0644\u064a\u2665\ufe0f \u0627\u0644\u0634\u0645\u0631\u064a","protected":false,"verified":false,"followers_count":60454,"friends_count":59676,"listed_count":30,"favourites_count":2434,"statuses_count":48438,"created_at":"Sun Apr 06 15:43:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663021004067905536\/DVeM_zAM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663021004067905536\/DVeM_zAM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465128617\/1446655841","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 08:36:42 +0000 2015","id":662549152044326913,"id_str":"662549152044326913","text":"#\u0642\u0631\u0648\u0628_\u0645\u0644\u0643\u0647_\u0646\u0641\u0633\u064a_\u0644\u0644\u062f\u0639\u0645 \u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u0630\u064a \u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0647\u0648 \u0627\u0644\u062d\u064a \u0627\u0644\u0642\u064a\u0645 \u0648\u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3157922071,"id_str":"3157922071","name":"\u0645\u064a\u0639\u0627\u062f","screen_name":"moooooni22","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\n\n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645.","protected":false,"verified":false,"followers_count":6144,"friends_count":6192,"listed_count":1,"favourites_count":6552,"statuses_count":17487,"created_at":"Wed Apr 15 16:34:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661545514241011712\/EPP2j4zc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661545514241011712\/EPP2j4zc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3157922071\/1446559828","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0645\u0644\u0643\u0647_\u0646\u0641\u0633\u064a_\u0644\u0644\u062f\u0639\u0645","indices":[0,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0645\u0644\u0643\u0647_\u0646\u0641\u0633\u064a_\u0644\u0644\u062f\u0639\u0645","indices":[16,37]}],"urls":[],"user_mentions":[{"screen_name":"moooooni22","name":"\u0645\u064a\u0639\u0627\u062f","id":3157922071,"id_str":"3157922071","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080054659"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972050956288,"id_str":"663727972050956288","text":"cara amanh\u00e3 vou jogar as cartas na mesa e acabou","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3647716217,"id_str":"3647716217","name":"maria eduarda","screen_name":"eduardaaqq","location":"Blumenau, Santa Catarina","url":null,"description":"\u2764\ufe0fXXI.VIII.MMXV\u2764\ufe0f@FalaAmorim\u2764\ufe0f \/\/ Amo a Juju","protected":false,"verified":false,"followers_count":106,"friends_count":129,"listed_count":0,"favourites_count":2729,"statuses_count":6159,"created_at":"Mon Sep 14 00:58:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644543108965892096\/rTob1n9e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644543108965892096\/rTob1n9e.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661678400000667649\/Mp5wZ8aZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661678400000667649\/Mp5wZ8aZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3647716217\/1446226053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080054663"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038365184,"id_str":"663727972038365184","text":"Appreciate every day of your life. Good days give you happiness, bad days give you experience, and the worst days give you lessons.","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462452148,"id_str":"462452148","name":"Sunny imeh","screen_name":"Suniero","location":"Portharcourt city, naija","url":"http:\/\/www.suniero.com","description":"Am cool,lovly n friendly beside all, am fun to be with.","protected":false,"verified":false,"followers_count":71,"friends_count":48,"listed_count":2,"favourites_count":0,"statuses_count":965,"created_at":"Thu Jan 12 23:47:40 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646378933873676289\/oGaS1cY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646378933873676289\/oGaS1cY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462452148\/1442943714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972063518724,"id_str":"663727972063518724","text":"\u0634\u0627\u0647\u062f \u0643\u064a\u0641 \u062a\u0641\u062a\u062e\u0631 \u0627\u0644\u0645\u0631\u0623\u0629 \u0627\u0644\u0645\u063a\u0631\u0628\u064a\u0629 https:\/\/t.co\/9Zar5CG7VI #ibtissamtiskat #MBCTheVoice November 09, 2015 at 03:37PM","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2845285164,"id_str":"2845285164","name":"weli lia","screen_name":"ely_rayan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":428,"friends_count":202,"listed_count":7,"favourites_count":2260,"statuses_count":26965,"created_at":"Tue Oct 07 23:57:44 +0000 2014","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642880724383739905\/bXkqKs8q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642880724383739905\/bXkqKs8q_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ibtissamtiskat","indices":[55,70]},{"text":"MBCTheVoice","indices":[71,83]}],"urls":[{"url":"https:\/\/t.co\/9Zar5CG7VI","expanded_url":"https:\/\/www.youtube.com\/watch?v=pL_3unnzFOU","display_url":"youtube.com\/watch?v=pL_3un\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080054666"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046778368,"id_str":"663727972046778368","text":"RT @FedNor: \u201cPop\u201d by and visit Dave at @NanasKettleCorn. #RAWFnorth15 https:\/\/t.co\/LgRcZbzbEp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15751851,"id_str":"15751851","name":"Foodland Ontario","screen_name":"FoodlandOnt","location":null,"url":"http:\/\/www.foodlandontario.ca","description":"Look for the Foodland Ontario symbol when you're shopping. It's an easy way for you to identify Ontario foods in grocery stores and farmers markets.","protected":false,"verified":true,"followers_count":27335,"friends_count":4354,"listed_count":869,"favourites_count":640,"statuses_count":8940,"created_at":"Wed Aug 06 16:28:20 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460855726865256448\/tzX2j0Bh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460855726865256448\/tzX2j0Bh.jpeg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1152194530\/newlogo-flo_normal.GIF","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1152194530\/newlogo-flo_normal.GIF","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15751851\/1444055307","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:57:09 +0000 2015","id":663022383465385984,"id_str":"663022383465385984","text":"\u201cPop\u201d by and visit Dave at @NanasKettleCorn. #RAWFnorth15 https:\/\/t.co\/LgRcZbzbEp","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":469427500,"id_str":"469427500","name":"FedNor","screen_name":"FedNor","location":"Northern Ontario","url":"http:\/\/fednor.gc.ca","description":"Your federal partner in Northern Ontario. Terms: http:\/\/bit.ly\/1l0BaXC | Votre partenaire f\u00e9d\u00e9ral dans le Nord de l'Ontario. Avis: http:\/\/bit.ly\/1qhOz2p","protected":false,"verified":false,"followers_count":1836,"friends_count":492,"listed_count":38,"favourites_count":105,"statuses_count":1653,"created_at":"Fri Jan 20 15:49:29 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000039609295\/dbc43bc25be396270b3d9193f241ae0a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000039609295\/dbc43bc25be396270b3d9193f241ae0a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461577136512307200\/U8KsuVyq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461577136512307200\/U8KsuVyq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469427500\/1401119153","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"RAWFnorth15","indices":[45,57]}],"urls":[],"user_mentions":[{"screen_name":"nanaskettlecorn","name":"Nanas Kettle Corn","id":3140527800,"id_str":"3140527800","indices":[27,43]}],"symbols":[],"media":[{"id":663022381624115200,"id_str":"663022381624115200","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","url":"https:\/\/t.co\/LgRcZbzbEp","display_url":"pic.twitter.com\/LgRcZbzbEp","expanded_url":"http:\/\/twitter.com\/FedNor\/status\/663022383465385984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663022381624115200,"id_str":"663022381624115200","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","url":"https:\/\/t.co\/LgRcZbzbEp","display_url":"pic.twitter.com\/LgRcZbzbEp","expanded_url":"http:\/\/twitter.com\/FedNor\/status\/663022383465385984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RAWFnorth15","indices":[57,69]}],"urls":[],"user_mentions":[{"screen_name":"FedNor","name":"FedNor","id":469427500,"id_str":"469427500","indices":[3,10]},{"screen_name":"nanaskettlecorn","name":"Nanas Kettle Corn","id":3140527800,"id_str":"3140527800","indices":[39,55]}],"symbols":[],"media":[{"id":663022381624115200,"id_str":"663022381624115200","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","url":"https:\/\/t.co\/LgRcZbzbEp","display_url":"pic.twitter.com\/LgRcZbzbEp","expanded_url":"http:\/\/twitter.com\/FedNor\/status\/663022383465385984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663022383465385984,"source_status_id_str":"663022383465385984","source_user_id":469427500,"source_user_id_str":"469427500"}]},"extended_entities":{"media":[{"id":663022381624115200,"id_str":"663022381624115200","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOHV97WwAALo9a.jpg","url":"https:\/\/t.co\/LgRcZbzbEp","display_url":"pic.twitter.com\/LgRcZbzbEp","expanded_url":"http:\/\/twitter.com\/FedNor\/status\/663022383465385984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663022383465385984,"source_status_id_str":"663022383465385984","source_user_id":469427500,"source_user_id_str":"469427500"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972059344896,"id_str":"663727972059344896","text":"RT @IzzadZahari: \"Awak single? Saya plural.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":706686805,"id_str":"706686805","name":"Jane. \u30c4","screen_name":"AlanisAlauddin","location":"Kelantan,Malaysia","url":null,"description":"16 , perdanarians . aliff fietry .. follow my ig \u2192 alanisalauddin","protected":false,"verified":false,"followers_count":241,"friends_count":200,"listed_count":0,"favourites_count":1131,"statuses_count":1228,"created_at":"Fri Jul 20 07:37:12 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487787130240761856\/cyPV-Ypm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487787130240761856\/cyPV-Ypm.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663704879425191936\/A2LEWCoc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663704879425191936\/A2LEWCoc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/706686805\/1443010686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Mar 18 13:55:23 +0000 2013","id":313649837704880128,"id_str":"313649837704880128","text":"\"Awak single? Saya plural.\"","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188227249,"id_str":"188227249","name":"Izzad","screen_name":"IzzadZahari","location":"R A D I O H E A D","url":null,"description":"@chelseafc","protected":false,"verified":false,"followers_count":14596,"friends_count":774,"listed_count":28,"favourites_count":1971,"statuses_count":147177,"created_at":"Wed Sep 08 06:23:05 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512731650124292098\/CAyx6q3I.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512731650124292098\/CAyx6q3I.jpeg","profile_background_tile":true,"profile_link_color":"3965D4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"216470","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661546126756081664\/LgGtlpH__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661546126756081664\/LgGtlpH__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188227249\/1441753291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1049,"favorite_count":227,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IzzadZahari","name":"Izzad","id":188227249,"id_str":"188227249","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080054665"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038217729,"id_str":"663727972038217729","text":"\u30e9\u30a6\u30b6\u30fc\u30c9\uff1a\u4eca\u65e5\u306e\u4ed5\u4e8b\u304c\u7d42\u308f\u3063\u305f\u3089\u98f2\u307f\u306b\u3044\u304f\u305e\u30fc\u30fc","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455514000,"id_str":"455514000","name":"\u3068\u3048\u308b\/\u3068\u3076\u308c\/\u3068\u3068\u308d\/\uff42\uff4f\uff54","screen_name":"ra_syu_ri_bot","location":null,"url":null,"description":"pixiv\u5185\u4f01\u753b\u306e\u3068\u3048\u308b\u3001\u3068\u3076\u308c\u3001\u3068\u3068\u308d\u306b\u53c2\u52a0\u3057\u3066\u3044\u308b\u30e9\u30a6\u30b6\u30fc\u30c9\/\u30b7\u30e5\u30ca\/\u30ea\u30ab\u30eb\/\u30ea\u30ea\u30c6\u30a3\u30a2\/\u30ec\u30a4\u30e9\u30b9\/\u30e6\u30ad\u30e5\u30e9\u306e\u5408\u540cbot\u3067\u3059\u3002\u540c\u6240\u5c5e\u69d8\u3001\u7d61\u3093\u3067\u304f\u3060\u3055\u3063\u305f\u3053\u3068\u304c\u3042\u308b\u65b9\u306e\u304a\u540d\u524d\u3092\u304a\u501f\u308a\u3057\u3066\u3044\u307e\u3059\u3002\u554f\u984c\u304c\u3042\u308a\u307e\u3057\u305f\u3089\uff20omohiyo\u307e\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u4f01\u753b\u53c2\u52a0\u8005\u69d8\u4ee5\u5916\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":58,"friends_count":49,"listed_count":1,"favourites_count":2,"statuses_count":52847,"created_at":"Thu Jan 05 06:00:22 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2102792295\/____06_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2102792295\/____06_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972029964288,"id_str":"663727972029964288","text":"RT @witermine: @DanMister_ ficou bom? (Ignore os bugs das plantas e da porta) https:\/\/t.co\/4q9bn1jKzE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291344140,"id_str":"3291344140","name":"Junin #VNM50K","screen_name":"junin404","location":"Fortaleza, Cear\u00e1","url":"https:\/\/www.youtube.com\/c\/Junin404?gvnc=1","description":"YouTuber Mcpe | Faco Cartoons | Se For Usar No YouTube, Deixe Os Cr\u00e9ditos!! | Sonho: 1K | Videos Diariamente!! | Link Ai Em Baixo!!","protected":false,"verified":false,"followers_count":69,"friends_count":127,"listed_count":0,"favourites_count":2682,"statuses_count":1007,"created_at":"Wed May 20 13:16:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663190381639651328\/0a3gW2Ch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663190381639651328\/0a3gW2Ch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291344140\/1444354652","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:47 +0000 2015","id":663724920304742400,"id_str":"663724920304742400","text":"@DanMister_ ficou bom? (Ignore os bugs das plantas e da porta) https:\/\/t.co\/4q9bn1jKzE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2606302403,"in_reply_to_user_id_str":"2606302403","in_reply_to_screen_name":"DanMister_","user":{"id":3234114546,"id_str":"3234114546","name":"witerminebr10","screen_name":"witermine","location":"Lages, Santa Catarina","url":"https:\/\/www.youtube.com\/channel\/UC3fxU2gEUEQ4edNM0_Y5_-w","description":"#redstonegang","protected":false,"verified":false,"followers_count":25,"friends_count":42,"listed_count":0,"favourites_count":357,"statuses_count":2455,"created_at":"Tue Jun 02 21:01:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027306005454849\/ylvWwCQx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027306005454849\/ylvWwCQx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234114546\/1446922840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DanMister_","name":"DanMister #VNM50K","id":2606302403,"id_str":"2606302403","indices":[0,11]}],"symbols":[],"media":[{"id":663724907629551616,"id_str":"663724907629551616","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","url":"https:\/\/t.co\/4q9bn1jKzE","display_url":"pic.twitter.com\/4q9bn1jKzE","expanded_url":"http:\/\/twitter.com\/witermine\/status\/663724920304742400\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":410,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724907629551616,"id_str":"663724907629551616","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","url":"https:\/\/t.co\/4q9bn1jKzE","display_url":"pic.twitter.com\/4q9bn1jKzE","expanded_url":"http:\/\/twitter.com\/witermine\/status\/663724920304742400\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":410,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"witermine","name":"witerminebr10","id":3234114546,"id_str":"3234114546","indices":[3,13]},{"screen_name":"DanMister_","name":"DanMister #VNM50K","id":2606302403,"id_str":"2606302403","indices":[15,26]}],"symbols":[],"media":[{"id":663724907629551616,"id_str":"663724907629551616","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","url":"https:\/\/t.co\/4q9bn1jKzE","display_url":"pic.twitter.com\/4q9bn1jKzE","expanded_url":"http:\/\/twitter.com\/witermine\/status\/663724920304742400\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":410,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663724920304742400,"source_status_id_str":"663724920304742400","source_user_id":3234114546,"source_user_id_str":"3234114546"}]},"extended_entities":{"media":[{"id":663724907629551616,"id_str":"663724907629551616","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGSXPWoAAuSC-.jpg","url":"https:\/\/t.co\/4q9bn1jKzE","display_url":"pic.twitter.com\/4q9bn1jKzE","expanded_url":"http:\/\/twitter.com\/witermine\/status\/663724920304742400\/photo\/1","type":"photo","sizes":{"large":{"w":719,"h":410,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663724920304742400,"source_status_id_str":"663724920304742400","source_user_id":3234114546,"source_user_id_str":"3234114546"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080054658"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038279168,"id_str":"663727972038279168","text":"@wrong_feet \u305d\u308c\u306a\uff01\u5668\u7528\u3063\u3066\u7fa8\u307e\u3057\u3044...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727188072501249,"in_reply_to_status_id_str":"663727188072501249","in_reply_to_user_id":784162844,"in_reply_to_user_id_str":"784162844","in_reply_to_screen_name":"wrong_feet","user":{"id":317111687,"id_str":"317111687","name":"\u3048\u3063\u3061\u3083\u3093","screen_name":"e___chan69","location":"\u8328\u57ce \/ \u963f\u898b","url":"https:\/\/instagram.com\/echan_69","description":"Mr.JiNGLES SHANK POT Mrs.WiENER \u3060\u3044\u3059\u304d\u30de\u30f3\u307b\u3063\u307a\u304c\u75db\u304f\u306a\u308b\u7a0b\u7b11\u9854\u306b\u306a\u308c\u308b\u30e9\u30a4\u30d6\u306b\u884c\u304d\u305f\u3044\u3067\u3059\u4e00\u677e\u63a8\u3057 \/ \u6570\u5b57\u677e\u8d14\u5c53 \/ \u516d\u3064\u5b50\u3061\u3083\u3093 \u263a\ufe0e \u263a\ufe0e \u263a\ufe0e \u263a\ufe0e \u263a\ufe0e \u263a\ufe0e","protected":false,"verified":false,"followers_count":648,"friends_count":627,"listed_count":14,"favourites_count":5399,"statuses_count":63461,"created_at":"Tue Jun 14 13:13:09 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662408062586630145\/aeQjg8RO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662408062586630145\/aeQjg8RO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317111687\/1447077537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wrong_feet","name":"\u3061\u308b\u305f\u308a\u3059","id":784162844,"id_str":"784162844","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972029849600,"id_str":"663727972029849600","text":"@miwa441_yh \n\n\u308f\u304b\u3063\u305f \u5927\u4e8b\u306b\u53d6\u3063\u3068\u304f...\n\n\u7802\u304f\u3093\u30ab\u30c3\u30b3\u3044\u3044:;(\u2229\u00b4\ufe4f`\u2229);:\ud83d\udc93\n\u305f\u3051\u304a\u306f\u53cb\u9054\u306b\u306a\u3063\u3066\u307b\u3057\u3044\u3043\u3043","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663682693582860289,"in_reply_to_status_id_str":"663682693582860289","in_reply_to_user_id":3252709958,"in_reply_to_user_id_str":"3252709958","in_reply_to_screen_name":"miwa441_yh","user":{"id":3984959780,"id_str":"3984959780","name":"\u304d \u3083 \u3057 \u30fc @ miwa\u57a2","screen_name":"miwa__nk","location":null,"url":null,"description":"\u3042\u3044\u3061\u770c \/ \u5973\uff23 \/ \u9ad8\u6821\u2461 (( love )) miwa \/ \u963f\u90e8\u771f\u592e \/ \u4e95\u4e0a\u82d1\u5b50 (( study )) \u5927\u539f\u6afb\u5b50\/ Silent Siren \/ \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u591a\u3081 \/ miwa\u30af\u30e9\u3055\u3093\u306f321\u3067441%\u30d5\u30a9\u30ed\u30d0\u2669 \/ \u2721 1209 0429 \u53c2\u6226\u6e08\u307f \u2721","protected":false,"verified":false,"followers_count":437,"friends_count":462,"listed_count":1,"favourites_count":223,"statuses_count":934,"created_at":"Thu Oct 22 23:03:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657334805646831616\/995sKy66_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657334805646831616\/995sKy66_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3984959780\/1446112769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miwa441_yh","name":"\u3061\u3083\u3093\u3072\u306e \u301c WEGO\u5927\u9808\u5e97\u4f59\u97fb\u301c","id":3252709958,"id_str":"3252709958","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054658"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972050821120,"id_str":"663727972050821120","text":"@zlazladjf \ubb3c\ub860 \uae40\uacbd\ud638\uc758 \uadc0\uace0\ub9ac \uc598\uae41\ub2c8\ub2e4(\ud398\ud2f0\uc26c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727840429367296,"in_reply_to_status_id_str":"663727840429367296","in_reply_to_user_id":3273083630,"in_reply_to_user_id_str":"3273083630","in_reply_to_screen_name":"zlazladjf","user":{"id":608949574,"id_str":"608949574","name":"\uae40\ucd5c\ud30c\ub294 \uc544\uac00\ud1a0\uc758 \uc0ac\ub839 \ubc00\ud53c\uc730","screen_name":"lmy0762","location":"\uc9c0\uad6c","url":"https:\/\/ask.fm\/lmy0762","description":"\uc6b0\uc6b8\ud2b8\u119e\uc695\ud2b8\uc791\ub82c | \ubcf8\uc9c4 \uae40\uacbd\ud638 \uc704\uc8fc. \ub9c8\ub9c8\ubb34, \uac80\uc740 \uc0ac\uc81c\ub4e4, \ud0ac\ubbf8\ud790\ubbf8, \uae40\uc5f0\uc6b0, \uc790\uce90 \uc678 | \ud0ac\ud0c0, \ud558\uc9c0\ud604, \uce74\ub97c\ub85c, \uc5d1\uc2a4\ud130\uc2dc, \uad8c\uc9c0\ud601, \uc784\uc9c0\ub9ac \uc624\ub108","protected":false,"verified":false,"followers_count":281,"friends_count":388,"listed_count":5,"favourites_count":3799,"statuses_count":80187,"created_at":"Fri Jun 15 09:43:54 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663286992738742272\/tP4qwh92_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663286992738742272\/tP4qwh92_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608949574\/1446975012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zlazladjf","name":"\ub4dc\ub7ec\ub204\uc6b4 \uccbb\u314f","id":3273083630,"id_str":"3273083630","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080054663"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972025634816,"id_str":"663727972025634816","text":"RT @Minnie_Mickey_x: @TeamSuperrGaa hey beautiful \ud83d\ude18 \ud83d\ude0a that's hella sweet of you. Love you too and yes my day's going great. How's yours?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2156165176,"id_str":"2156165176","name":"Victoria \u2764\ufe0f's Lilly","screen_name":"TeamSuperrGaa","location":"In your heart\u263a\ufe0f\u2764\ufe0f","url":null,"description":"I'm Victoria\u2728 Official #TeamSuperGeorgia account\u2728 @AT2UI follows\u2728 Lilly retweeted x2\u2728 Babe-@Michellealeyabi\u2728 Supporting the Lovely Lilly Singh\u2728","protected":false,"verified":false,"followers_count":597,"friends_count":491,"listed_count":5,"favourites_count":26127,"statuses_count":18898,"created_at":"Sun Oct 27 18:33:52 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657759301163986944\/4lsgewAH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657759301163986944\/4lsgewAH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2156165176\/1446436660","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:29 +0000 2015","id":663727109760790528,"id_str":"663727109760790528","text":"@TeamSuperrGaa hey beautiful \ud83d\ude18 \ud83d\ude0a that's hella sweet of you. Love you too and yes my day's going great. How's yours?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726179279474690,"in_reply_to_status_id_str":"663726179279474690","in_reply_to_user_id":2156165176,"in_reply_to_user_id_str":"2156165176","in_reply_to_screen_name":"TeamSuperrGaa","user":{"id":260885007,"id_str":"260885007","name":"\u270c Kia","screen_name":"Minnie_Mickey_x","location":"ox U\u03b7icor\u03b7 Isla\u03b7d xo","url":null,"description":"Team super for life.\r\nIndecisive adult trying to succeed at life :)","protected":false,"verified":false,"followers_count":3109,"friends_count":1630,"listed_count":19,"favourites_count":3345,"statuses_count":46407,"created_at":"Fri Mar 04 20:22:53 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641579459691302916\/ZYbNMEOu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641579459691302916\/ZYbNMEOu.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659039960453009408\/_Tvw4LlG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659039960453009408\/_Tvw4LlG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260885007\/1446780473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TeamSuperrGaa","name":"Victoria \u2764\ufe0f's Lilly","id":2156165176,"id_str":"2156165176","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Minnie_Mickey_x","name":"\u270c Kia","id":260885007,"id_str":"260885007","indices":[3,19]},{"screen_name":"TeamSuperrGaa","name":"Victoria \u2764\ufe0f's Lilly","id":2156165176,"id_str":"2156165176","indices":[21,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054657"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972042559488,"id_str":"663727972042559488","text":"Brawo polska firma. Wyznacza kierunek, nie pod\u0105\u017ca za. https:\/\/t.co\/wTGokKqsgw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319513955,"id_str":"3319513955","name":"PATRIUS","screen_name":"PATRIUS_media","location":"Krak\u00f3w, Ma\u0142opolskie","url":"http:\/\/www.patrius.com.pl","description":"Piotr Kurcz - prawnik i mediator, szef inicjatywy PATRIUS, cz\u0142onek Stowarzyszenia Mediator\u00f3w Rodzinnych.","protected":false,"verified":false,"followers_count":11,"friends_count":234,"listed_count":0,"favourites_count":15,"statuses_count":30,"created_at":"Thu Jun 11 19:44:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609086058278457344\/Mwi8Wu7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609086058278457344\/Mwi8Wu7t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319513955\/1438293569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663675315131162624,"quoted_status_id_str":"663675315131162624","quoted_status":{"created_at":"Mon Nov 09 11:11:40 +0000 2015","id":663675315131162624,"id_str":"663675315131162624","text":"Strategiczne inwestycje #GrupaAzoty realizowane w Policach, Pu\u0142awach, Tarnowie i K\u0119dzierzynie-Ko\u017alu #wyniki @wnppl https:\/\/t.co\/CBDEJHwBNX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1417508102,"id_str":"1417508102","name":"grupaazoty.com","screen_name":"Grupa_Azoty","location":"Polska","url":"http:\/\/www.grupaazoty.com","description":"Najwi\u0119kszy w Polsce i jeden z najwi\u0119kszych w Europie koncern chemiczny. Producent nawoz\u00f3w, tworzyw konstrukcyjnych, a tak\u017ce alkoholi OXO i plastyfikator\u00f3w.","protected":false,"verified":false,"followers_count":1410,"friends_count":542,"listed_count":31,"favourites_count":541,"statuses_count":3151,"created_at":"Fri May 10 08:09:33 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/868047056\/524daf75606f7485b20c34d86af6120d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/868047056\/524daf75606f7485b20c34d86af6120d.png","profile_background_tile":false,"profile_link_color":"0F76D1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467262318791782400\/AKpOD2Jp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467262318791782400\/AKpOD2Jp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1417508102\/1400611566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GrupaAzoty","indices":[24,35]},{"text":"wyniki","indices":[100,107]}],"urls":[],"user_mentions":[{"screen_name":"wnppl","name":"wnp.pl","id":402036288,"id_str":"402036288","indices":[108,114]}],"symbols":[],"media":[{"id":663675294864252929,"id_str":"663675294864252929","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZKhSWIAE4jAw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZKhSWIAE4jAw.jpg","url":"https:\/\/t.co\/CBDEJHwBNX","display_url":"pic.twitter.com\/CBDEJHwBNX","expanded_url":"http:\/\/twitter.com\/Grupa_Azoty\/status\/663675315131162624\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663675294864252929,"id_str":"663675294864252929","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZKhSWIAE4jAw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZKhSWIAE4jAw.jpg","url":"https:\/\/t.co\/CBDEJHwBNX","display_url":"pic.twitter.com\/CBDEJHwBNX","expanded_url":"http:\/\/twitter.com\/Grupa_Azoty\/status\/663675315131162624\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wTGokKqsgw","expanded_url":"https:\/\/twitter.com\/Grupa_Azoty\/status\/663675315131162624","display_url":"twitter.com\/Grupa_Azoty\/st\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080054661"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972055150592,"id_str":"663727972055150592","text":"Y\u00fcksek dozda mutluluk istiyorum.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190355237,"id_str":"3190355237","name":"Tu\u011fbanurrr","screen_name":"meqa65","location":"\u0130zmir, T\u00fcrkiye","url":null,"description":"17 - Bal\u0131k burcu - Voleybol - TALADRO \u2764","protected":false,"verified":false,"followers_count":118,"friends_count":115,"listed_count":0,"favourites_count":525,"statuses_count":440,"created_at":"Tue Apr 21 11:03:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658555369917128704\/w01E0X0__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658555369917128704\/w01E0X0__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190355237\/1445935557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080054664"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972063567872,"id_str":"663727972063567872","text":"@AsaMardskog @DickSweden Jag har kakmonstret-trosor. Bara s\u00e5 ni vet. S\u00c5 sexig \u00e4r jag. For real.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724291469524993,"in_reply_to_status_id_str":"663724291469524993","in_reply_to_user_id":42227560,"in_reply_to_user_id_str":"42227560","in_reply_to_screen_name":"AsaMardskog","user":{"id":1188281468,"id_str":"1188281468","name":"Tessa Anl\u00e9r","screen_name":"Tessa_A76","location":"Uppsala","url":null,"description":"Kuppmakare. Kaosstartare. Livlina. Skr\u00e5lla. Petit Chablis. Jobbar in EDEL foder.","protected":false,"verified":false,"followers_count":881,"friends_count":847,"listed_count":3,"favourites_count":27112,"statuses_count":33857,"created_at":"Sun Feb 17 04:04:42 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"sv","contributors_enabled":false,"is_translator":false,"profile_background_color":"95926F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000035850684\/6455fab093a7d59d399ad5ee8bf09eda.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000035850684\/6455fab093a7d59d399ad5ee8bf09eda.png","profile_background_tile":true,"profile_link_color":"439A87","profile_sidebar_border_color":"5A3644","profile_sidebar_fill_color":"58596E","profile_text_color":"347B7D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663444623940022272\/GvzoFDil_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663444623940022272\/GvzoFDil_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1188281468\/1412509635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AsaMardskog","name":"\u00c5sa M\u00e5rdskog","id":42227560,"id_str":"42227560","indices":[0,12]},{"screen_name":"DickSweden","name":"Dick G","id":20619005,"id_str":"20619005","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080054666"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038373376,"id_str":"663727972038373376","text":"\u30fb\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u7121\u99c4\u30a1\u30fc\uff01\uff01 https:\/\/t.co\/gT20fkrgdD","source":"\u003ca href=\"http:\/\/www.yahoo.co.jp\/\" rel=\"nofollow\"\u003e\u6c7a\u3057\u3066\u3072\u3068\u308a\u3058\u3083\u306a\u3044\uff01\uff01\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3919760777,"id_str":"3919760777","name":"\u304a\u3082\u3057\u308d\u304b\u308f\u3044\u3044\u30a2\u30cb\u30de\u30eb","screen_name":"haitukubatte","location":null,"url":null,"description":"\u304b\u308f\u3044\u304f\u3066\u3001\u9762\u767d\u3044\u52d5\u7269\u306e\u753b\u50cf\u30fb\u52d5\u753b\u96c6\u3067\u3059\u3002\n\u5fae\u7b11\u307e\u3057\u3044\u52d5\u7269\u305f\u3061\u76db\u308a\u3060\u304f\u3055\u3093\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":424,"friends_count":556,"listed_count":0,"favourites_count":0,"statuses_count":129,"created_at":"Sat Oct 10 16:16:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658880239867555840\/vIjRs9PR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658880239867555840\/vIjRs9PR_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":438107775105642496,"id_str":"438107775105642496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/BhR4s0SCMAAsVbp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BhR4s0SCMAAsVbp.jpg","url":"https:\/\/t.co\/gT20fkrgdD","display_url":"pic.twitter.com\/gT20fkrgdD","expanded_url":"http:\/\/twitter.com\/kawaomodoubutsu\/status\/438107775101448192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":292,"h":400,"resize":"fit"},"large":{"w":292,"h":400,"resize":"fit"},"medium":{"w":292,"h":400,"resize":"fit"}},"source_status_id":438107775101448192,"source_status_id_str":"438107775101448192","source_user_id":1148368567,"source_user_id_str":"1148368567"}]},"extended_entities":{"media":[{"id":438107775105642496,"id_str":"438107775105642496","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/BhR4s0SCMAAsVbp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BhR4s0SCMAAsVbp.jpg","url":"https:\/\/t.co\/gT20fkrgdD","display_url":"pic.twitter.com\/gT20fkrgdD","expanded_url":"http:\/\/twitter.com\/kawaomodoubutsu\/status\/438107775101448192\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":292,"h":400,"resize":"fit"},"large":{"w":292,"h":400,"resize":"fit"},"medium":{"w":292,"h":400,"resize":"fit"}},"source_status_id":438107775101448192,"source_status_id_str":"438107775101448192","source_user_id":1148368567,"source_user_id_str":"1148368567"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038348800,"id_str":"663727972038348800","text":"RT @Izsmiz: Thank god for my iPod when everyone on this train is eating crisps","source":"\u003ca href=\"http:\/\/neuflair.com\" rel=\"nofollow\"\u003eTransport BOT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3357004523,"id_str":"3357004523","name":"Public Transport","screen_name":"BusTrainPeople","location":"England, United Kingdom","url":null,"description":"This account relentlessly seeks out the nastiness people get up to on public transport. Expect it to be busy.","protected":false,"verified":false,"followers_count":61,"friends_count":60,"listed_count":2,"favourites_count":61,"statuses_count":2230,"created_at":"Fri Jul 03 15:52:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617016773033000960\/2qZM76jU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617016773033000960\/2qZM76jU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3357004523\/1435943179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:38 +0000 2015","id":663724127346405377,"id_str":"663724127346405377","text":"Thank god for my iPod when everyone on this train is eating crisps","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368987871,"id_str":"368987871","name":"L","screen_name":"Izsmiz","location":"Derby ","url":"http:\/\/www.facebook.com\/izsmiz","description":"20, beauty therapist, dancer. @wozza_jozza, metal, mods, music, life \u2764 SC\/IG - izsmiz","protected":false,"verified":false,"followers_count":5102,"friends_count":541,"listed_count":9,"favourites_count":821,"statuses_count":9331,"created_at":"Tue Sep 06 15:33:39 +0000 2011","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/767909783\/fc1bfdb734df050bcb51f226a87b618c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/767909783\/fc1bfdb734df050bcb51f226a87b618c.jpeg","profile_background_tile":true,"profile_link_color":"E666FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659108476908642304\/IDFtHAXv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659108476908642304\/IDFtHAXv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368987871\/1442327962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Izsmiz","name":"L","id":368987871,"id_str":"368987871","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972025806848,"id_str":"663727972025806848","text":"@IsukunSays saltate eso que es relleno","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727617049296896,"in_reply_to_status_id_str":"663727617049296896","in_reply_to_user_id":2335243088,"in_reply_to_user_id_str":"2335243088","in_reply_to_screen_name":"IsukunSays","user":{"id":707816985,"id_str":"707816985","name":"Gekota","screen_name":"FeelSpheal","location":"Hoell\u00ednn","url":"http:\/\/myanimelist.net\/profile\/alexgg1999","description":"No pongo todas las cosas que me gustan separadas por puntos porque no caben y porque da pereza (animes, videojuegos y mierdas de esas)","protected":false,"verified":false,"followers_count":1203,"friends_count":1397,"listed_count":5,"favourites_count":3105,"statuses_count":11921,"created_at":"Thu Oct 10 13:46:06 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558333862837637120\/DzFLZD8m.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558333862837637120\/DzFLZD8m.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661243753835962368\/8rWD8FDe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661243753835962368\/8rWD8FDe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/707816985\/1445985283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IsukunSays","name":"Yeesu","id":2335243088,"id_str":"2335243088","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080054657"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972038279169,"id_str":"663727972038279169","text":"RT @ox_Rea: good morning https:\/\/t.co\/Z6wCZI3jmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1468277684,"id_str":"1468277684","name":"Hai","screen_name":"haibai33","location":null,"url":"http:\/\/originalartbyhai.etsy.com","description":"self taught artist \u2728 &jor","protected":false,"verified":false,"followers_count":339,"friends_count":159,"listed_count":0,"favourites_count":26458,"statuses_count":16334,"created_at":"Wed May 29 21:16:19 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656185827429453824\/7Im35N9a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656185827429453824\/7Im35N9a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1468277684\/1446485579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:12:23 +0000 2015","id":663690595953606656,"id_str":"663690595953606656","text":"good morning https:\/\/t.co\/Z6wCZI3jmo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":389675797,"id_str":"389675797","name":"R\u00e6","screen_name":"ox_Rea","location":"unavailable","url":null,"description":"Pardon my french. 19 years. \u264c\ufe0f. RIP J.G. #eop xox","protected":false,"verified":false,"followers_count":998,"friends_count":295,"listed_count":6,"favourites_count":62112,"statuses_count":45035,"created_at":"Wed Oct 12 20:32:19 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659563131748749312\/8dQwTUQO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659563131748749312\/8dQwTUQO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389675797\/1446509345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690590094143488,"id_str":"663690590094143488","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","url":"https:\/\/t.co\/Z6wCZI3jmo","display_url":"pic.twitter.com\/Z6wCZI3jmo","expanded_url":"http:\/\/twitter.com\/ox_Rea\/status\/663690595953606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690590094143488,"id_str":"663690590094143488","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","url":"https:\/\/t.co\/Z6wCZI3jmo","display_url":"pic.twitter.com\/Z6wCZI3jmo","expanded_url":"http:\/\/twitter.com\/ox_Rea\/status\/663690595953606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ox_Rea","name":"R\u00e6","id":389675797,"id_str":"389675797","indices":[3,10]}],"symbols":[],"media":[{"id":663690590094143488,"id_str":"663690590094143488","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","url":"https:\/\/t.co\/Z6wCZI3jmo","display_url":"pic.twitter.com\/Z6wCZI3jmo","expanded_url":"http:\/\/twitter.com\/ox_Rea\/status\/663690595953606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663690595953606656,"source_status_id_str":"663690595953606656","source_user_id":389675797,"source_user_id_str":"389675797"}]},"extended_entities":{"media":[{"id":663690590094143488,"id_str":"663690590094143488","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnE0dUsAAf0qY.jpg","url":"https:\/\/t.co\/Z6wCZI3jmo","display_url":"pic.twitter.com\/Z6wCZI3jmo","expanded_url":"http:\/\/twitter.com\/ox_Rea\/status\/663690595953606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663690595953606656,"source_status_id_str":"663690595953606656","source_user_id":389675797,"source_user_id_str":"389675797"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054660"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972059344897,"id_str":"663727972059344897","text":"RT @escorpio_hn: #Escorpio en su lado negativo tiende a ser arrogante, presumido, orgulloso, celoso en exceso, vengativo y violento.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3218863246,"id_str":"3218863246","name":"Marta Carmona","screen_name":"martiitacarmona","location":null,"url":null,"description":"TODO CONTIGO, NADA SIN TI #VII","protected":false,"verified":false,"followers_count":78,"friends_count":84,"listed_count":0,"favourites_count":319,"statuses_count":1838,"created_at":"Tue Apr 28 21:00:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659129902080368640\/4iv7t7My_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659129902080368640\/4iv7t7My_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3218863246\/1446539621","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 12:00:24 +0000 2015","id":661875640619126784,"id_str":"661875640619126784","text":"#Escorpio en su lado negativo tiende a ser arrogante, presumido, orgulloso, celoso en exceso, vengativo y violento.","source":"\u003ca href=\"http:\/\/www.postcron.com\" rel=\"nofollow\"\u003ePostcronApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1275370560,"id_str":"1275370560","name":"\u25b2ESCORPIO\u25b2","screen_name":"escorpio_hn","location":null,"url":"http:\/\/www.facebook.com\/EscorpioHoroscopoNegro","description":"Te mostramos el lado oscuro de tu signo del zodiaco. Escorpio, loco por el poder, obsesivo, intenso y con una reputaci\u00f3n bastante pesada... @horoscoponegro \u25b2","protected":false,"verified":false,"followers_count":139201,"friends_count":12,"listed_count":151,"favourites_count":0,"statuses_count":1200,"created_at":"Sun Mar 17 16:22:28 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3393780257\/5f67d4b089e6cb85ce6e39a001aec84c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3393780257\/5f67d4b089e6cb85ce6e39a001aec84c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275370560\/1363557283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3373,"favorite_count":3065,"entities":{"hashtags":[{"text":"Escorpio","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Escorpio","indices":[17,26]}],"urls":[],"user_mentions":[{"screen_name":"escorpio_hn","name":"\u25b2ESCORPIO\u25b2","id":1275370560,"id_str":"1275370560","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080054665"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046651392,"id_str":"663727972046651392","text":"\u6c17\u306b\u306a\u3063\u3066\u5a5a\u671f\u8a3a\u65ad\u3084\u3063\u3066\u307f\u305f\u3089\u3001\u7d50\u5a5a\u306b\u9069\u7528\u3057\u3066\u308b\u6b73\u304c\u30cf\u30bf\u30c1\u3060\u3063\u305f\u3002\n\u3042\u306e\u3001\u601d\u3044\u3063\u304d\u308a\u904e\u304e\u3066\u307e\u3059(^_^;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323135624,"id_str":"323135624","name":"\uff26\uff2f\uff32\uff0d\uff3a\u6240\u5c5e\u2661\u7460\u8863","screen_name":"2s0ka1kikuko411","location":"\u672a\u6765\u304b\u3089\u6765\u307e\u3057\u305f\u2190","url":"http:\/\/twpf.jp\/2s0ka1kikuko411","description":"\u9280\u9b42\u30af\u30e9\u30b9\u30bf(\u571f\u65b9\u3055\u3093\u3001\u611b\u3057\u3066\u307e\u3059\u2661)\u3001\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc(\u3048\u308a\u3093\u3071\u306a\u63a8\u3057\u266a)\u3001\u9ed2\u30d0\u30b9\u3001\u3046\u305f\u30d7\u30ea\u3001\u9032\u6483\u306b\u30cf\u30de\u30ea\u4e2d\uff01 \u6700\u8fd1\u3001\u30e6\u30cb\u30be\u30f3\u3068\u85cd\u4e95\u30a8\u30a4\u30eb\u304c\u597d\u304d\u306b\u306a\u308a\u307e\u3057\u305f\u266a \u5f7c\u6c0f\u306e\u51ac\u99ac\u306f\u5a5a\u7d04\u8005\u2661\u8ab0\u306b\u3082\u6e21\u3055\u306a\u3044\u2190","protected":false,"verified":false,"followers_count":383,"friends_count":292,"listed_count":10,"favourites_count":1939,"statuses_count":27334,"created_at":"Fri Jun 24 09:37:23 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660420087610916864\/AKrnzN8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660420087610916864\/AKrnzN8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323135624\/1443063917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972063555584,"id_str":"663727972063555584","text":"RT @LauSuarez01: Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3215015636,"id_str":"3215015636","name":"Incomprendida","screen_name":"Chicarrebelde_","location":"MAIAME","url":null,"description":"Nadie me entiende","protected":false,"verified":false,"followers_count":407,"friends_count":495,"listed_count":0,"favourites_count":359,"statuses_count":6190,"created_at":"Sun May 17 19:26:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656699479966547969\/WIpa-HUo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656699479966547969\/WIpa-HUo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3215015636\/1445404347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727843399114753,"id_str":"663727843399114753","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239706813,"id_str":"3239706813","name":"Lautaro Suarez\u2122\u265a","screen_name":"LauSuarez01","location":"La Plata, Argentina","url":"https:\/\/instagram.com\/lausuarez_01","description":"16 A\u00f1os | Estudiantes de La Plata \u2764 | Creador #EsReChamuyoSi & 32 TT's mas \u26a1| Fui 22 veces TT Arg | \u2605 Rap Electronica \u2605","protected":false,"verified":false,"followers_count":53514,"friends_count":50060,"listed_count":16,"favourites_count":7986,"statuses_count":17177,"created_at":"Thu May 07 00:57:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643815642907439104\/cD9ALNAQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643815642907439104\/cD9ALNAQ.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658351945531457537\/PUuBzrHt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658351945531457537\/PUuBzrHt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239706813\/1446999597","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LauSuarez01","name":"Lautaro Suarez\u2122\u265a","id":3239706813,"id_str":"3239706813","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080054666"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972029870080,"id_str":"663727972029870080","text":"if im not the one then im the best mistake you ever had","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1905356348,"id_str":"1905356348","name":"HB","screen_name":"hannahbailey_16","location":"MC Soccer #16","url":null,"description":"i am who i am && thats all i can be.","protected":false,"verified":false,"followers_count":330,"friends_count":500,"listed_count":2,"favourites_count":3247,"statuses_count":4470,"created_at":"Wed Sep 25 20:41:22 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"05FFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F200FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662481286435467265\/3Q6qjQB1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662481286435467265\/3Q6qjQB1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1905356348\/1446832111","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054658"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046737408,"id_str":"663727972046737408","text":"@NF62 \u0647\u0648 \u0631\u0641\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727543212777472,"in_reply_to_status_id_str":"663727543212777472","in_reply_to_user_id":324254338,"in_reply_to_user_id_str":"324254338","in_reply_to_screen_name":"NF62","user":{"id":2268463388,"id_str":"2268463388","name":"anwar","screen_name":"_anwerx","location":"Tabuk","url":null,"description":"\u0637\u0648\u0651\u0644 \u0628\u0627\u0644\u0643","protected":false,"verified":false,"followers_count":197,"friends_count":415,"listed_count":0,"favourites_count":132,"statuses_count":4430,"created_at":"Mon Dec 30 06:59:31 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657072403688914945\/Wg9bTDfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657072403688914945\/Wg9bTDfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2268463388\/1446133328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NF62","name":"\u062a\u062e\u064a\u0640\u0640\u0644","id":324254338,"id_str":"324254338","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972042436608,"id_str":"663727972042436608","text":"@camomilehoney1 \u305d\u3046\u3060\u3063\u305f\u3093\u3067\u3059\u304b\uff1f\uff01((\u7b11\n\u9045\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u304c\u3001\u5dee\u3057\u5165\u308c\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\u3068\u3063\u3066\u3082\u53ef\u611b\u304f\u3066\u305d\u306e\u307e\u307e\u98fe\u3063\u3066\u304a\u308a\u307e\u3059\u2661\n\u308f\u30fc\uff01\u79c1\u3082\u307e\u305f\u7be0\u7af9\u3055\u3093\u3068\u304a\u4f1a\u3044\u3057\u305f\u3044\u3067\u3059\ud83d\ude06\ud83d\ude06\ud83d\ude4c\ud83d\ude4c\n\u4eca\u5ea6\u306f\u3082\u3046\u5c11\u3057\u3086\u3063\u304f\u308a\u304a\u8a71\u3057\u3067\u304d\u308b\u3068\u826f\u3044\u3067\u3059\u306d\u2026\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663602309788647425,"in_reply_to_status_id_str":"663602309788647425","in_reply_to_user_id":2599779433,"in_reply_to_user_id_str":"2599779433","in_reply_to_screen_name":"camomilehoney1","user":{"id":1674961981,"id_str":"1674961981","name":"\u3044\u3059\u307f\uff1a\u5742\u30de\u30cb\u304a\u75b2\u308c\u3055\u307e\u2661\u8352\u5317\u4f11\u6b62","screen_name":"isumi3838","location":"\u6d0b\u5357\u5927","url":"http:\/\/m.worldcosplay.net\/member\/308795","description":"\u30ec\u30a4\u30e4\u30fc\u300220\u2191\u6771\u4eac\u3002\u30d7\u30ea\u30d1\u30e9BBA\u3002\u826f\u3044\u6b73\u3057\u3066\u307e\u3060\u5b66\u751f\u3002\u30ef\u30fc\u30c8\u30ea\u6cbc\u3002\u30ab\u30a4\u30d6:255256\u3002 \u7de8\u96c6\u307e\u3067\u304c\u30b3\u30b9\u30d7\u30ec\u3002\u8150\u8981\u7d20\u6ce8\u610f\u3002\u9ec4\u7b20\u30fb\u6d0b\u5357\u30fb\u5742\u9053\u304f\u3093\u30fb\u4fee\u304f\u3093\u81f3\u4e0a\u4e3b\u7fa9\u3002\u9ed2\u30d0\u30b9\u30fb\u5f31\u30da\u30c0\u30fbHQ\u30fb\u30a2\u30aa\u30cf\u30eb\u3002\u9ec4\u7b20\u57a2:@rikuto_isumi\u3000\u30c4\u30a4\u30d5\u30a3\u3054\u4e00\u8aad\u304f\u3060\u3055\u3044\u3002 http:\/\/twpf.jp\/isumi3838","protected":false,"verified":false,"followers_count":287,"friends_count":287,"listed_count":19,"favourites_count":2930,"statuses_count":12685,"created_at":"Fri Aug 16 05:59:07 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065261152\/f4f5dd334c1fc4493b5f052a0581dd56.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065261152\/f4f5dd334c1fc4493b5f052a0581dd56.png","profile_background_tile":true,"profile_link_color":"1100FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ABE4A8","profile_text_color":"86BB96","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661033084289089536\/Ufht1gdt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661033084289089536\/Ufht1gdt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1674961981\/1444730227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"camomilehoney1","name":"\u7be0\u7af9\uff20\u51ac\u30b3\u30df1\u65e5\u76ee\u897f\u305314a","id":2599779433,"id_str":"2599779433","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054661"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046647296,"id_str":"663727972046647296","text":"school tom nd im here on twitter, wide awake lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2449841910,"id_str":"2449841910","name":"shana","screen_name":"aniallhole","location":"otra mnl","url":null,"description":"i close my eyes but all i see is your sex face \u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800 \u2800\u2800@ausvocalist's","protected":false,"verified":false,"followers_count":4241,"friends_count":851,"listed_count":76,"favourites_count":20933,"statuses_count":45093,"created_at":"Thu Apr 17 14:27:53 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658112859927265280\/uO4S8Na4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658112859927265280\/uO4S8Na4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2449841910\/1445934684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972034043905,"id_str":"663727972034043905","text":"RT @SABENZZ: \u0e1a\u0e32\u0e07\u0e17\u0e35 \u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e17\u0e29\u0e43\u0e04\u0e23\u0e40\u0e25\u0e22 \u0e21\u0e36\u0e07\u0e1c\u0e34\u0e14\u0e40\u0e15\u0e47\u0e21\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2234199930,"id_str":"2234199930","name":"Aex","screen_name":"GaoAex","location":null,"url":null,"description":"\u0e40\u0e2d\u0e32\u0e44\u0e27\u0e49\u0e1a\u0e48\u0e19..","protected":false,"verified":false,"followers_count":46,"friends_count":90,"listed_count":1,"favourites_count":308,"statuses_count":3149,"created_at":"Sat Dec 07 08:45:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655219929361203200\/STwKjljT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655219929361203200\/STwKjljT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2234199930\/1445051580","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:35:34 +0000 2015","id":663001852095565824,"id_str":"663001852095565824","text":"\u0e1a\u0e32\u0e07\u0e17\u0e35 \u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e17\u0e29\u0e43\u0e04\u0e23\u0e40\u0e25\u0e22 \u0e21\u0e36\u0e07\u0e1c\u0e34\u0e14\u0e40\u0e15\u0e47\u0e21\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161491798,"id_str":"161491798","name":"\u0e04\u0e19\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e02\u0e35\u0e22\u0e19.","screen_name":"SABENZZ","location":"instragram : sabenz","url":"https:\/\/www.facebook.com\/SABENZZ","description":"\u0e17\u0e31\u0e49\u0e07\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e02\u0e32\u0e14\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e2b\u0e31\u0e27\u0e40\u0e23\u0e32\u0e30 . triamnom 25 | sdu | Bizcom","protected":false,"verified":false,"followers_count":128259,"friends_count":292,"listed_count":40,"favourites_count":1580,"statuses_count":37529,"created_at":"Thu Jul 01 00:27:23 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0B0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704063044\/f0df007d068b81c920b48cea6ec0269f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704063044\/f0df007d068b81c920b48cea6ec0269f.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660093579755261952\/Ix-zmmnK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660093579755261952\/Ix-zmmnK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161491798\/1441454848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1351,"favorite_count":136,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SABENZZ","name":"\u0e04\u0e19\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e02\u0e35\u0e22\u0e19.","id":161491798,"id_str":"161491798","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080054659"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972059213824,"id_str":"663727972059213824","text":"\u4eca\u65e5\u306f\u30dd\u30eb\u30ca\u30ec\u30d5\u306e\u30bf\u30fc\u30f3\u266a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237038322,"id_str":"2237038322","name":"\u3042\u3059\u304b","screen_name":"asuka1126anime","location":null,"url":null,"description":"\u4ed7\u52a9\u304f\u3093\u3092\u611b\u3067\u308b\u3002","protected":false,"verified":false,"followers_count":381,"friends_count":536,"listed_count":4,"favourites_count":2130,"statuses_count":3924,"created_at":"Mon Dec 09 05:01:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653971126461136897\/zWgPXcXp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653971126461136897\/zWgPXcXp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2237038322\/1422632690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054665"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972025782272,"id_str":"663727972025782272","text":"Estava torcendo para que fosse zoeira. N\u00e3o \u00e9. https:\/\/t.co\/n3nZBL6ZQI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46531277,"id_str":"46531277","name":"Bruno Paiva Teixeira","screen_name":"paivallandro","location":"S\u00e3o Paulo, Brasil","url":"http:\/\/www.facebook.com\/brunopaivat","description":"Jornalista, gamer, animemang\u00e1comicsman\u00edaco e pioneiro no uso de fones de ouvido bluetooth em transporte coletivo.","protected":false,"verified":false,"followers_count":471,"friends_count":247,"listed_count":21,"favourites_count":4,"statuses_count":16056,"created_at":"Fri Jun 12 00:18:36 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472175518029062144\/2DncZ2wc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472175518029062144\/2DncZ2wc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46531277\/1436563393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726050929713152,"quoted_status_id_str":"663726050929713152","quoted_status":{"created_at":"Mon Nov 09 14:33:16 +0000 2015","id":663726050929713152,"id_str":"663726050929713152","text":"MANO! A PLACAR lan\u00e7ou um CADERNO ESPECIAL de quase t\u00edtulo. Amigos jornalistas esportivos de qualidade, fujam enquanto \u00e9 tempo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16329860,"id_str":"16329860","name":"Fernando Pedroso","screen_name":"fpedroso","location":null,"url":null,"description":"Entre brigar e bater o p\u00eanalti, prefiro ajudar na briga","protected":false,"verified":false,"followers_count":469,"friends_count":489,"listed_count":14,"favourites_count":1126,"statuses_count":31274,"created_at":"Wed Sep 17 15:03:12 +0000 2008","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FC0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656131873589080064\/pb7CuTfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656131873589080064\/pb7CuTfR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16329860\/1409051772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n3nZBL6ZQI","expanded_url":"https:\/\/twitter.com\/fpedroso\/status\/663726050929713152","display_url":"twitter.com\/fpedroso\/statu\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080054657"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972029853696,"id_str":"663727972029853696","text":"RT @knockknock0408: [HQ] 151025 SEHUN cr.\ubc14\ub78c\uacfc \ud568\uaed8 \uc0ac\ub77c\uc9c0\ub2e4\nhttps:\/\/t.co\/1Svku6ZsDF\nhttps:\/\/t.co\/AF20NT8N5P\nhttps:\/\/t.co\/Am4s14Moaj https:\/\/t.co\/q\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":162656798,"id_str":"162656798","name":"LOEYNAHC","screen_name":"CHAN10X","location":"Thailand","url":"http:\/\/fernbarberkie.deviantart.com\/","description":"\u2014\u266112\u03df9 EXO-L | \u51e1 \u00d7 \uc885\uc778 \u00d7 \ucc2c\uc5f4\u2014","protected":false,"verified":false,"followers_count":3433,"friends_count":127,"listed_count":5,"favourites_count":85,"statuses_count":748829,"created_at":"Sun Jul 04 09:17:02 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629655926190964736\/ZklzYtod.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629655926190964736\/ZklzYtod.png","profile_background_tile":false,"profile_link_color":"12110F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFD599","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938556160491520\/uHUd5JVx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938556160491520\/uHUd5JVx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/162656798\/1445790632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:43 +0000 2015","id":663722386978529281,"id_str":"663722386978529281","text":"[HQ] 151025 SEHUN cr.\ubc14\ub78c\uacfc \ud568\uaed8 \uc0ac\ub77c\uc9c0\ub2e4\nhttps:\/\/t.co\/1Svku6ZsDF\nhttps:\/\/t.co\/AF20NT8N5P\nhttps:\/\/t.co\/Am4s14Moaj https:\/\/t.co\/q1NpqElM34","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627921021,"id_str":"1627921021","name":"'KNOCK KNOCK!'","screen_name":"knockknock0408","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":211614,"friends_count":0,"listed_count":2300,"favourites_count":159,"statuses_count":116934,"created_at":"Sun Jul 28 13:30:31 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_tile":true,"profile_link_color":"0A376E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":177,"favorite_count":328,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1Svku6ZsDF","expanded_url":"http:\/\/cfile25.uf.tistory.com\/original\/22077036563FFFCA2250B7","display_url":"cfile25.uf.tistory.com\/original\/22077\u2026","indices":[33,56]},{"url":"https:\/\/t.co\/AF20NT8N5P","expanded_url":"http:\/\/cfile2.uf.tistory.com\/original\/2745883A563FFC3A2B408B","display_url":"cfile2.uf.tistory.com\/original\/27458\u2026","indices":[57,80]},{"url":"https:\/\/t.co\/Am4s14Moaj","expanded_url":"http:\/\/cfile6.uf.tistory.com\/original\/2108DF36563FFC97133BB7","display_url":"cfile6.uf.tistory.com\/original\/2108D\u2026","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663722383400767488,"id_str":"663722383400767488","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":599,"h":900,"resize":"fit"},"large":{"w":599,"h":900,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722383400767488,"id_str":"663722383400767488","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":599,"h":900,"resize":"fit"},"large":{"w":599,"h":900,"resize":"fit"}}},{"id":663722385263083520,"id_str":"663722385263083520","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_isUwAACZt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_isUwAACZt6.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":899,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1Svku6ZsDF","expanded_url":"http:\/\/cfile25.uf.tistory.com\/original\/22077036563FFFCA2250B7","display_url":"cfile25.uf.tistory.com\/original\/22077\u2026","indices":[53,76]},{"url":"https:\/\/t.co\/AF20NT8N5P","expanded_url":"http:\/\/cfile2.uf.tistory.com\/original\/2745883A563FFC3A2B408B","display_url":"cfile2.uf.tistory.com\/original\/27458\u2026","indices":[77,100]},{"url":"https:\/\/t.co\/Am4s14Moaj","expanded_url":"http:\/\/cfile6.uf.tistory.com\/original\/2108DF36563FFC97133BB7","display_url":"cfile6.uf.tistory.com\/original\/2108D\u2026","indices":[101,124]}],"user_mentions":[{"screen_name":"knockknock0408","name":"'KNOCK KNOCK!'","id":1627921021,"id_str":"1627921021","indices":[3,18]}],"symbols":[],"media":[{"id":663722383400767488,"id_str":"663722383400767488","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":599,"h":900,"resize":"fit"},"large":{"w":599,"h":900,"resize":"fit"}},"source_status_id":663722386978529281,"source_status_id_str":"663722386978529281","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"extended_entities":{"media":[{"id":663722383400767488,"id_str":"663722383400767488","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_bwUEAAzgXz.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":599,"h":900,"resize":"fit"},"large":{"w":599,"h":900,"resize":"fit"}},"source_status_id":663722386978529281,"source_status_id_str":"663722386978529281","source_user_id":1627921021,"source_user_id_str":"1627921021"},{"id":663722385263083520,"id_str":"663722385263083520","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_isUwAACZt6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_isUwAACZt6.jpg","url":"https:\/\/t.co\/q1NpqElM34","display_url":"pic.twitter.com\/q1NpqElM34","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663722386978529281\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":899,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}},"source_status_id":663722386978529281,"source_status_id_str":"663722386978529281","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080054658"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046639104,"id_str":"663727972046639104","text":"RT @chifumi88148814: 97\u5e74\u306e\u304a\u7b11\u3044\u30e9\u30a4\u30d6\u306e\u30d3\u30c7\u30aa\u898b\u305f\u3089\n\u5f53\u6642\u304b\u3089\u50d5\u3089\u306fJr\u30cd\u30bf\u3092\u3084\u3063\u3066\u307e\u3057\u305f\u3002\n97\u5e74\u3066\n\u5ca9\u6a4b\u7384\u6a39\u304f\u3093\n\u30b8\u30a7\u30b7\u30fc\u304f\u3093\u304c\uff11\u6b73\n\u795e\u5bae\u5bfa\u52c7\u592a\u304f\u3093\u304c\u7523\u307e\u308c\u305f\u5e74\n\u5d50\u3084\u30bf\u30c3\u30ad\u30fc\u304c\u307e\u3060Jr\n\u5f53\u6642\u304b\u3089\u30b8\u30e3\u30cb\u30fc\u30ba\u30b7\u30e7\u30c3\u30d7\nJr\u30b3\u30f3\u884c\u3063\u3066\u307e\u3059\u3002 http:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2515036428,"id_str":"2515036428","name":"\u300a\u516c\u5f0f\u300b\u042f\u0415~\u3061\u3083\u3093 27\u65e5\u53c2\u6226","screen_name":"re_cha09arashi","location":"ARASHIANS Follow Me!!","url":null,"description":"\u8d64\u3088\u308a\u306eall\u62c5\/TOKYO\/FC\u4f1a\u54e1\/\u5973\/\u6c17\u306b\u306a\u3063\u305fARASHIANS\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\/\u5e74\u9f62\u554f\u308f\u305a\u7e4b\u304c\u308a\u307esho!! \/LINE\u30b0\u30eb\u30fc\u30d7\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":2239,"friends_count":2146,"listed_count":7,"favourites_count":698,"statuses_count":3554,"created_at":"Thu May 22 10:08:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628112004956360704\/pCs53f3J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628112004956360704\/pCs53f3J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2515036428\/1443001712","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jan 06 22:28:32 +0000 2015","id":552592578386722816,"id_str":"552592578386722816","text":"97\u5e74\u306e\u304a\u7b11\u3044\u30e9\u30a4\u30d6\u306e\u30d3\u30c7\u30aa\u898b\u305f\u3089\n\u5f53\u6642\u304b\u3089\u50d5\u3089\u306fJr\u30cd\u30bf\u3092\u3084\u3063\u3066\u307e\u3057\u305f\u3002\n97\u5e74\u3066\n\u5ca9\u6a4b\u7384\u6a39\u304f\u3093\n\u30b8\u30a7\u30b7\u30fc\u304f\u3093\u304c\uff11\u6b73\n\u795e\u5bae\u5bfa\u52c7\u592a\u304f\u3093\u304c\u7523\u307e\u308c\u305f\u5e74\n\u5d50\u3084\u30bf\u30c3\u30ad\u30fc\u304c\u307e\u3060Jr\n\u5f53\u6642\u304b\u3089\u30b8\u30e3\u30cb\u30fc\u30ba\u30b7\u30e7\u30c3\u30d7\nJr\u30b3\u30f3\u884c\u3063\u3066\u307e\u3059\u3002 http:\/\/t.co\/gxrvaYdHF2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1442281812,"id_str":"1442281812","name":"\u30b8\u30e3\u30ac\u30fc\u30ba \u3061\u30fc\u3084\u3093","screen_name":"chifumi88148814","location":"\u30ce\u30fc\u30ea\u30fc\u30ba\u30f3\u6240\u5c5e ","url":"http:\/\/s.ameblo.jp\/moto-0616\/","description":"\u304a\u7b11\u3044&\u30e2\u30ce\u30de\u30cd\u82b8\u4eba\u30b8\u30e3\u30ac\u30fc\u30ba\u3061\u30fc\u3084\u3093\u82b8\u6b74\uff11\uff19\u5e74\r\u5317\u6d77\u9053\u6edd\u5ddd\u5e02\u51fa\u8eab\u30b8\u30e3\u30cb\u30fc\u30ba\u30d5\u30a1\u30f3\u624b\u8d8a\u304f\u3093\u62c5\u5f53\u3001Jr\u5fdc\u63f4 \u4e43\u6728\u5742\uff14\uff16\u885b\u85e4\u7f8e\u5f69\u63a8\u3057\uff01\u305b\u3044\u3089\u308a\u3093\u3001\u3042\u307f\u3042\u307f\u3001\u308c\u306a\u308a\u3093\u5fdc\u63f4 \u30b8\u30e3\u30ac\u30fc\u30ba\u516c\u5f0f\u30d6\u30ed\u30b0\u3082\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3042\u305f\u3002","protected":false,"verified":false,"followers_count":40514,"friends_count":417,"listed_count":95,"favourites_count":9029,"statuses_count":2069,"created_at":"Sun May 19 22:12:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554425095389581312\/SPWZF9ng_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554425095389581312\/SPWZF9ng_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1442281812\/1402375965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2046,"favorite_count":2071,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":552592575748509697,"id_str":"552592575748509697","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","url":"http:\/\/t.co\/gxrvaYdHF2","display_url":"pic.twitter.com\/gxrvaYdHF2","expanded_url":"http:\/\/twitter.com\/chifumi88148814\/status\/552592578386722816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":552592575748509697,"id_str":"552592575748509697","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","url":"http:\/\/t.co\/gxrvaYdHF2","display_url":"pic.twitter.com\/gxrvaYdHF2","expanded_url":"http:\/\/twitter.com\/chifumi88148814\/status\/552592578386722816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chifumi88148814","name":"\u30b8\u30e3\u30ac\u30fc\u30ba \u3061\u30fc\u3084\u3093","id":1442281812,"id_str":"1442281812","indices":[3,19]}],"symbols":[],"media":[{"id":552592575748509697,"id_str":"552592575748509697","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","url":"http:\/\/t.co\/gxrvaYdHF2","display_url":"pic.twitter.com\/gxrvaYdHF2","expanded_url":"http:\/\/twitter.com\/chifumi88148814\/status\/552592578386722816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":552592578386722816,"source_status_id_str":"552592578386722816","source_user_id":1442281812,"source_user_id_str":"1442281812"}]},"extended_entities":{"media":[{"id":552592575748509697,"id_str":"552592575748509697","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6s0BRcCEAER6og.jpg","url":"http:\/\/t.co\/gxrvaYdHF2","display_url":"pic.twitter.com\/gxrvaYdHF2","expanded_url":"http:\/\/twitter.com\/chifumi88148814\/status\/552592578386722816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":552592578386722816,"source_status_id_str":"552592578386722816","source_user_id":1442281812,"source_user_id_str":"1442281812"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972025692160,"id_str":"663727972025692160","text":"RT @dotttttttto: \u4ed5\u4e8b\u3084\u3081\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3038130792,"id_str":"3038130792","name":"nana@\u30ac\u30eb\u30d5\u30ec","screen_name":"nanagf_01","location":null,"url":null,"description":"GF(\u4eee)\u2192\u672c\u547d:\u4e94\u4ee3\u5f8b\u3001\u3086\u3089\u3089\u3002\u4ed6COOL\u7cfb\u597d\u304d\u3002\n\u30b9\u30af\u30d5\u30a1\u30f3\u2192\u672c\u547d:\u6a39\u9759\u3002\u30c4\u30a4\u6d88\u3057\u591a\u3002","protected":false,"verified":false,"followers_count":30,"friends_count":31,"listed_count":0,"favourites_count":333,"statuses_count":1486,"created_at":"Mon Feb 23 15:00:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"A0D8EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658075259099222016\/mURb-pTE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658075259099222016\/mURb-pTE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3038130792\/1425132393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:16:52 +0000 2015","id":663706823170461696,"id_str":"663706823170461696","text":"\u4ed5\u4e8b\u3084\u3081\u3088","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419003747,"id_str":"2419003747","name":"\u3069\u3063\u3068","screen_name":"dotttttttto","location":null,"url":"http:\/\/vcard.ameba.jp\/profile?userId=4503953","description":"\u30d5\u30a9\u30ed\u30fc\u306f\u3088\u304f\u8003\u3048\u3088\u3046\n\u30d6\u30ed\u30c3\u30af\u306f\u8ff7\u308f\u305a\u3057\u3088\u3046","protected":false,"verified":false,"followers_count":408,"friends_count":272,"listed_count":32,"favourites_count":57962,"statuses_count":28230,"created_at":"Sun Mar 30 13:20:37 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654097541840044032\/67nlFC8j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654097541840044032\/67nlFC8j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419003747\/1446956072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dotttttttto","name":"\u3069\u3063\u3068","id":2419003747,"id_str":"2419003747","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054657"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972029997056,"id_str":"663727972029997056","text":"Bed: Hello...\nMe:...\nBed: it's me...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348774781,"id_str":"348774781","name":"I.R.G.","screen_name":"IRGonzales","location":"Hammond","url":null,"description":"Student: Sports Management |\nFlex Watch Campus Rep.","protected":false,"verified":false,"followers_count":636,"friends_count":617,"listed_count":3,"favourites_count":1258,"statuses_count":8422,"created_at":"Fri Aug 05 00:05:38 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663120594200887296\/V-DgF1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663120594200887296\/V-DgF1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348774781\/1445626669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054658"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046651393,"id_str":"663727972046651393","text":"@hoshi_dahea \ub09c \ud55c\ubc88\ub3c4 \ubabb\ubd24\ub2e4\uad6c\u315c\u315c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727769780523008,"in_reply_to_status_id_str":"663727769780523008","in_reply_to_user_id":3879807852,"in_reply_to_user_id_str":"3879807852","in_reply_to_screen_name":"hoshi_dahea","user":{"id":3833790854,"id_str":"3833790854","name":"\ub9c8\uc694:)","screen_name":"Hoshi_Mayo","location":null,"url":null,"description":"\uae00\uc528\uc4f0\ub294 \uc0ac\ub78c, \ub9c8\uc694\uc785\ub2c8\ub2e4:)\u2665\u2606\uc120\ud314+\uc120\uba58 \ubab9\uc2dc \ud658\uc601\ud574\uc694\u2606 \ubaa8\ub4e0 \uae00\uc528\uc5d0 \ub300\ud55c 2\ucc28\uac00\uacf5\uc740 \ud5c8\ub77d\uc2dc\uc5d0 \uac00\ub2a5\ud569\ub2c8\ub2e4.(\ub85c\uace0\ud06c\ub86dX) \ud504\uc0ac: \uc544\uc774(@ioi_TATIA) \ub2d8:)\u2665","protected":false,"verified":false,"followers_count":62,"friends_count":166,"listed_count":0,"favourites_count":140,"statuses_count":874,"created_at":"Fri Oct 09 07:00:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656803892009697280\/K1ehEy6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656803892009697280\/K1ehEy6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3833790854\/1447075540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hoshi_dahea","name":"\ud2f0\ucf13\ud305\uc131\uacf5\ud560 \uc139\uc2dc\ud55c \ud638\uc2dc","id":3879807852,"id_str":"3879807852","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972051001344,"id_str":"663727972051001344","text":"RT @TheDannyCage: Guess who else impressed? @vrivera520 & @DeonnaPurrazzo The guys are on notice! These GIRLS can work! cc @Hustler2754 @Da\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101406702,"id_str":"101406702","name":"jetsbk","screen_name":"jetsbk","location":null,"url":"http:\/\/www.flickr.com\/bksports","description":null,"protected":false,"verified":false,"followers_count":167,"friends_count":692,"listed_count":8,"favourites_count":263,"statuses_count":1931,"created_at":"Sun Jan 03 05:32:18 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023947217\/053622c8d75446cd537a6a8080270fd3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023947217\/053622c8d75446cd537a6a8080270fd3.jpeg","profile_background_tile":true,"profile_link_color":"1E5C73","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643855759411908609\/dsMD42ng_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643855759411908609\/dsMD42ng_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101406702\/1405561015","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:55 +0000 2015","id":663716652647915520,"id_str":"663716652647915520","text":"Guess who else impressed? @vrivera520 & @DeonnaPurrazzo The guys are on notice! These GIRLS can work! cc @Hustler2754 @DamianAdamsss","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107614992,"id_str":"107614992","name":"Danny Cage","screen_name":"TheDannyCage","location":"Monster Factory ","url":"http:\/\/TheMFNetwork.com","description":"Owner & head coach of the world famous Monster Factory in Paulsboro, NJ\nFor bookings (609) 471-7904","protected":false,"verified":false,"followers_count":14437,"friends_count":1128,"listed_count":63,"favourites_count":143,"statuses_count":51892,"created_at":"Sat Jan 23 04:18:11 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573044659582205954\/qqtzdt0y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573044659582205954\/qqtzdt0y.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644154075676852224\/3PoVZ69c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644154075676852224\/3PoVZ69c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107614992\/1445240734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vrivera520","name":"Vionette Rivera","id":2773463349,"id_str":"2773463349","indices":[26,37]},{"screen_name":"DeonnaPurrazzo","name":"Deonna Purrazzo","id":1236278743,"id_str":"1236278743","indices":[44,59]},{"screen_name":"Hustler2754","name":"Rip Rogers","id":86188401,"id_str":"86188401","indices":[109,121]},{"screen_name":"DamianAdamsss","name":"Damian Adams","id":321809048,"id_str":"321809048","indices":[122,136]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDannyCage","name":"Danny Cage","id":107614992,"id_str":"107614992","indices":[3,16]},{"screen_name":"vrivera520","name":"Vionette Rivera","id":2773463349,"id_str":"2773463349","indices":[44,55]},{"screen_name":"DeonnaPurrazzo","name":"Deonna Purrazzo","id":1236278743,"id_str":"1236278743","indices":[62,77]},{"screen_name":"Hustler2754","name":"Rip Rogers","id":86188401,"id_str":"86188401","indices":[127,139]},{"screen_name":"DamianAdamsss","name":"Damian Adams","id":321809048,"id_str":"321809048","indices":[140,144]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054663"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972055015424,"id_str":"663727972055015424","text":"Selasa, 10 Nov 2015 @cinema21tasik STD 2. AIR MATA SURGA (R) : 14.30 18.30 https:\/\/t.co\/e5JG5kaihM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428712617,"id_str":"2428712617","name":"Cinema 21 Tasik","screen_name":"cinema21tasik","location":"Asia Plaza Tasikmalaya ","url":"http:\/\/21cineplex.com","description":"Official Account Cinema 21 Tasik. Update informasi seputar film yg sedang tayang di @Cinema21Tasik Jln. HZ No. 326 Lt GF Asia Plaza [ ( 0265 ) 2350021 ].","protected":false,"verified":false,"followers_count":5086,"friends_count":58,"listed_count":1,"favourites_count":26,"statuses_count":6771,"created_at":"Sat Apr 05 10:51:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458228170613727232\/1oB4u1ak_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458228170613727232\/1oB4u1ak_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2428712617\/1414799087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cinema21tasik","name":"Cinema 21 Tasik","id":2428712617,"id_str":"2428712617","indices":[20,34]}],"symbols":[],"media":[{"id":658655052450562048,"id_str":"658655052450562048","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CSQDR87VAAAJP4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSQDR87VAAAJP4a.jpg","url":"https:\/\/t.co\/e5JG5kaihM","display_url":"pic.twitter.com\/e5JG5kaihM","expanded_url":"http:\/\/twitter.com\/cinema21tasik\/status\/658655069806596096\/photo\/1","type":"photo","sizes":{"large":{"w":428,"h":640,"resize":"fit"},"medium":{"w":428,"h":640,"resize":"fit"},"small":{"w":340,"h":508,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":658655069806596096,"source_status_id_str":"658655069806596096","source_user_id":2428712617,"source_user_id_str":"2428712617"}]},"extended_entities":{"media":[{"id":658655052450562048,"id_str":"658655052450562048","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CSQDR87VAAAJP4a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSQDR87VAAAJP4a.jpg","url":"https:\/\/t.co\/e5JG5kaihM","display_url":"pic.twitter.com\/e5JG5kaihM","expanded_url":"http:\/\/twitter.com\/cinema21tasik\/status\/658655069806596096\/photo\/1","type":"photo","sizes":{"large":{"w":428,"h":640,"resize":"fit"},"medium":{"w":428,"h":640,"resize":"fit"},"small":{"w":340,"h":508,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":658655069806596096,"source_status_id_str":"658655069806596096","source_user_id":2428712617,"source_user_id_str":"2428712617"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080054664"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972025782273,"id_str":"663727972025782273","text":"@srsvt14 @paijeeem ya amsyong, kalo ada mah tak kasih dah :|","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726888699867137,"in_reply_to_status_id_str":"663726888699867137","in_reply_to_user_id":104078315,"in_reply_to_user_id_str":"104078315","in_reply_to_screen_name":"srsvt14","user":{"id":306835407,"id_str":"306835407","name":"Nothing","screen_name":"HendsmSr","location":"Pacitan","url":null,"description":"8 \u2022 Crypto","protected":false,"verified":false,"followers_count":467,"friends_count":224,"listed_count":0,"favourites_count":51,"statuses_count":9598,"created_at":"Sat May 28 14:45:35 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083359467\/121c37466423d9d371765047682b2cf7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083359467\/121c37466423d9d371765047682b2cf7.png","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662891677292474368\/eqYHwSkQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662891677292474368\/eqYHwSkQ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"srsvt14","name":"S\u039bR\u039bSV\u039bTI","id":104078315,"id_str":"104078315","indices":[0,8]},{"screen_name":"paijeeem","name":"Novie Kurnia A.","id":2439285678,"id_str":"2439285678","indices":[9,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080054657"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972063584256,"id_str":"663727972063584256","text":"RT @foochiaofficial: \u0646\u062c\u0648\u0649 \u0643\u0631\u0645 \u062a\u0628\u0647\u0631 \u0627\u0644\u062c\u0645\u0647\u0648\u0631 \u0628\u0623\u0646\u0627\u0642\u062a\u0647\u0627 \u0641\u064a \u201c\u062f\u064a\u0648 \u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631\u201d\n\nhttps:\/\/t.co\/aACAifbQEt\n\n#\u0641\u0648\u0634\u064a\u0627 #\u0646\u062c\u0648\u0649_\u0643\u0631\u0645 @najwakaram https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883235757,"id_str":"2883235757","name":"Salma Hatem","screen_name":"salmahat13","location":"\u0641\u0644\u0633\u0637\u064a\u0646","url":null,"description":"@najwakaram is my life","protected":false,"verified":false,"followers_count":158,"friends_count":119,"listed_count":1,"favourites_count":4724,"statuses_count":4543,"created_at":"Tue Nov 18 22:26:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535107167196442624\/JKmrJL6__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535107167196442624\/JKmrJL6__normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:31:51 +0000 2015","id":663604899532242945,"id_str":"663604899532242945","text":"\u0646\u062c\u0648\u0649 \u0643\u0631\u0645 \u062a\u0628\u0647\u0631 \u0627\u0644\u062c\u0645\u0647\u0648\u0631 \u0628\u0623\u0646\u0627\u0642\u062a\u0647\u0627 \u0641\u064a \u201c\u062f\u064a\u0648 \u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631\u201d\n\nhttps:\/\/t.co\/aACAifbQEt\n\n#\u0641\u0648\u0634\u064a\u0627 #\u0646\u062c\u0648\u0649_\u0643\u0631\u0645 @najwakaram https:\/\/t.co\/TBeA3hArmz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988992081,"id_str":"2988992081","name":"#\u0641\u0648\u0634\u064a\u0627 - \u0645\u0631\u0622\u0629 \u0627\u0644\u0645\u0631\u0623\u0629","screen_name":"foochiaofficial","location":"Middle East","url":"http:\/\/www.foochia.com","description":"\u0645\u0648\u0642\u0639 \u0646\u0633\u0627\u0626\u064a \u0645\u062a\u062e\u0635\u0635 \u0628\u0634\u0624\u0648\u0646 \u0627\u0644\u0645\u0631\u0623\u0629 \u0648\u0627\u0647\u062a\u0645\u0627\u0645\u0627\u062a\u0647\u0627 \u060c \u064a\u0647\u062a\u0645 \u0628\u0627\u0644\u0623\u0632\u064a\u0627\u0621 \u0648\u0627\u0644\u0645\u0648\u0636\u0629\u060c \u0627\u0644\u0645\u0634\u0627\u0647\u064a\u0631\u060c \u0627\u0644\u0641\u0646 \u0648\u0627\u0644\u062b\u0642\u0627\u0641\u0629 \u0648\u0643\u0644 \u0645\u0627 \u064a\u0647\u0645 \u0627\u0644\u0645\u0631\u0623\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629.","protected":false,"verified":false,"followers_count":11086,"friends_count":193,"listed_count":13,"favourites_count":15,"statuses_count":3771,"created_at":"Wed Jan 21 05:39:38 +0000 2015","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E1BDD7","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"8E3C65","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615820245706485760\/hyvx953A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615820245706485760\/hyvx953A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988992081\/1435658348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":85,"entities":{"hashtags":[{"text":"\u0641\u0648\u0634\u064a\u0627","indices":[75,81]},{"text":"\u0646\u062c\u0648\u0649_\u0643\u0631\u0645","indices":[83,92]}],"urls":[{"url":"https:\/\/t.co\/aACAifbQEt","expanded_url":"http:\/\/goo.gl\/1wrvt8","display_url":"goo.gl\/1wrvt8","indices":[50,73]}],"user_mentions":[{"screen_name":"najwakaram","name":"Najwa Karam","id":462004145,"id_str":"462004145","indices":[94,105]}],"symbols":[],"media":[{"id":663604897854545920,"id_str":"663604897854545920","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","url":"https:\/\/t.co\/TBeA3hArmz","display_url":"pic.twitter.com\/TBeA3hArmz","expanded_url":"http:\/\/twitter.com\/foochiaofficial\/status\/663604899532242945\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663604897854545920,"id_str":"663604897854545920","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","url":"https:\/\/t.co\/TBeA3hArmz","display_url":"pic.twitter.com\/TBeA3hArmz","expanded_url":"http:\/\/twitter.com\/foochiaofficial\/status\/663604899532242945\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0641\u0648\u0634\u064a\u0627","indices":[96,102]},{"text":"\u0646\u062c\u0648\u0649_\u0643\u0631\u0645","indices":[104,113]}],"urls":[{"url":"https:\/\/t.co\/aACAifbQEt","expanded_url":"http:\/\/goo.gl\/1wrvt8","display_url":"goo.gl\/1wrvt8","indices":[71,94]}],"user_mentions":[{"screen_name":"foochiaofficial","name":"#\u0641\u0648\u0634\u064a\u0627 - \u0645\u0631\u0622\u0629 \u0627\u0644\u0645\u0631\u0623\u0629","id":2988992081,"id_str":"2988992081","indices":[3,19]},{"screen_name":"najwakaram","name":"Najwa Karam","id":462004145,"id_str":"462004145","indices":[115,126]}],"symbols":[],"media":[{"id":663604897854545920,"id_str":"663604897854545920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","url":"https:\/\/t.co\/TBeA3hArmz","display_url":"pic.twitter.com\/TBeA3hArmz","expanded_url":"http:\/\/twitter.com\/foochiaofficial\/status\/663604899532242945\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":500,"resize":"fit"}},"source_status_id":663604899532242945,"source_status_id_str":"663604899532242945","source_user_id":2988992081,"source_user_id_str":"2988992081"}]},"extended_entities":{"media":[{"id":663604897854545920,"id_str":"663604897854545920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWZI3_UYAAtWHs.jpg","url":"https:\/\/t.co\/TBeA3hArmz","display_url":"pic.twitter.com\/TBeA3hArmz","expanded_url":"http:\/\/twitter.com\/foochiaofficial\/status\/663604899532242945\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":352,"resize":"fit"},"small":{"w":340,"h":199,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":500,"resize":"fit"}},"source_status_id":663604899532242945,"source_status_id_str":"663604899532242945","source_user_id":2988992081,"source_user_id_str":"2988992081"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080054666"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972055187456,"id_str":"663727972055187456","text":"@Badabingsta @marcomig88 cant wait to see this","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713883413155840,"in_reply_to_status_id_str":"663713883413155840","in_reply_to_user_id":65901877,"in_reply_to_user_id_str":"65901877","in_reply_to_screen_name":"Badabingsta","user":{"id":614455897,"id_str":"614455897","name":"Guido ","screen_name":"GuidoMig87","location":"Bedford Italian","url":null,"description":"i Just wanna start by saying... Guido is good all the time..","protected":false,"verified":false,"followers_count":140,"friends_count":165,"listed_count":0,"favourites_count":1201,"statuses_count":3640,"created_at":"Thu Jun 21 17:36:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/716160339\/ad1642cfed52b500a51326cc85e564f4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/716160339\/ad1642cfed52b500a51326cc85e564f4.jpeg","profile_background_tile":true,"profile_link_color":"E0260D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414478265882267648\/_8UJQ3TA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414478265882267648\/_8UJQ3TA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614455897\/1389456429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Badabingsta","name":"Luigi Spinelli","id":65901877,"id_str":"65901877","indices":[0,12]},{"screen_name":"marcomig88","name":"Marco","id":477794216,"id_str":"477794216","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054664"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972050821121,"id_str":"663727972050821121","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242114627,"id_str":"3242114627","name":"Amul Callander","screen_name":"jywijaxakajy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":112,"friends_count":892,"listed_count":5,"favourites_count":14625,"statuses_count":15801,"created_at":"Fri May 08 16:59:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642655842383347713\/KRF6fV15_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642655842383347713\/KRF6fV15_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":80,"favorite_count":50,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054663"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972046606336,"id_str":"663727972046606336","text":"@OmoriUNTD \n\u5b57\u6c5a\u3044\u4eba\u30e0\u30ea\u306a\u306e\u3067\u30b9\u30df\u30de\u30bb\u30f3\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726073268428800,"in_reply_to_status_id_str":"663726073268428800","in_reply_to_user_id":4175928074,"in_reply_to_user_id_str":"4175928074","in_reply_to_screen_name":"OmoriUNTD","user":{"id":904427569,"id_str":"904427569","name":"\u502b\u5b50","screen_name":"tmkc0327","location":null,"url":null,"description":"DEVA","protected":false,"verified":false,"followers_count":461,"friends_count":303,"listed_count":0,"favourites_count":1841,"statuses_count":7781,"created_at":"Thu Oct 25 18:29:01 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661363790617772032\/NMDJSzqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661363790617772032\/NMDJSzqy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OmoriUNTD","name":"OMORI UNITED","id":4175928074,"id_str":"4175928074","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054662"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972059185152,"id_str":"663727972059185152","text":"PHL to import onions as #LandoPH dents supply https:\/\/t.co\/s0aXVqfZcH https:\/\/t.co\/vz4Uzvwhbv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114108107,"id_str":"114108107","name":"PJ Valisno","screen_name":"PHINews1","location":"Manila, Philippines","url":"https:\/\/twitter.com\/PHIEWN","description":null,"protected":false,"verified":false,"followers_count":13698,"friends_count":12541,"listed_count":84,"favourites_count":16,"statuses_count":176121,"created_at":"Sun Feb 14 04:55:53 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655562582766415873\/eY88YbV9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655562582766415873\/eY88YbV9.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655562408719613952\/IPvZi7n4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655562408719613952\/IPvZi7n4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114108107\/1426502594","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LandoPH","indices":[24,32]}],"urls":[{"url":"https:\/\/t.co\/s0aXVqfZcH","expanded_url":"http:\/\/gmane.ws\/1Hpv19i","display_url":"gmane.ws\/1Hpv19i","indices":[46,69]}],"user_mentions":[],"symbols":[],"media":[{"id":663639621599907842,"id_str":"663639621599907842","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4uEBWUAI_MrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4uEBWUAI_MrU.jpg","url":"https:\/\/t.co\/vz4Uzvwhbv","display_url":"pic.twitter.com\/vz4Uzvwhbv","expanded_url":"http:\/\/twitter.com\/gmanews\/status\/663646231520940032\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663646231520940032,"source_status_id_str":"663646231520940032","source_user_id":39453212,"source_user_id_str":"39453212"}]},"extended_entities":{"media":[{"id":663639621599907842,"id_str":"663639621599907842","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4uEBWUAI_MrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4uEBWUAI_MrU.jpg","url":"https:\/\/t.co\/vz4Uzvwhbv","display_url":"pic.twitter.com\/vz4Uzvwhbv","expanded_url":"http:\/\/twitter.com\/gmanews\/status\/663646231520940032\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663646231520940032,"source_status_id_str":"663646231520940032","source_user_id":39453212,"source_user_id_str":"39453212"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080054665"} +{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972042412033,"id_str":"663727972042412033","text":"RT @UnrealEngineJP: \u3084\u306f\u308a\u5730\u5143\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3068\u3044\u3046\u3082\u306e\u304c\u5927\u4e8b\u3060\u3068\u601d\u3046\u306e\u3067\u3059\u3002\u5404\u5730\u3067\u30df\u30fc\u30c8\u30a2\u30c3\u30d7\u3092\u305d\u306e\u571f\u5730\u306e\u65b9\u3005\u306b\u304a\u9858\u3044\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u3044\u308b\u306e\u3067\u3059\u304c\u3001\u5171\u901a\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u5c4a\u304d\u307e\u3057\u305f\uff01\u3000\u5730\u65b9\u3067\u30a4\u30d9\u30f3\u30c8\u958b\u50ac\u3084\u3063\u3066\u3082\u3044\u3044\u3088\u3063\u3066\u3044\u3046\u4eba\u52df\u96c6\u4e2d\u3067\u3059\u301c\u3000\u7279\u306b\u6c96\u7e04\u3068\u56db\u56fd\u3042\u305f\u308a ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301613393,"id_str":"3301613393","name":"Mau Sakuragi","screen_name":"MauSakuragi","location":"Fukuoka,JAPAN","url":null,"description":"ZBrush\u3068UE4\u52c9\u5f37\u4e2d\u3002","protected":false,"verified":false,"followers_count":3,"friends_count":5,"listed_count":0,"favourites_count":7,"statuses_count":30,"created_at":"Thu May 28 11:40:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634262877365362688\/7c_dvfpk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634262877365362688\/7c_dvfpk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:55:42 +0000 2015","id":663641098259050496,"id_str":"663641098259050496","text":"\u3084\u306f\u308a\u5730\u5143\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\u3068\u3044\u3046\u3082\u306e\u304c\u5927\u4e8b\u3060\u3068\u601d\u3046\u306e\u3067\u3059\u3002\u5404\u5730\u3067\u30df\u30fc\u30c8\u30a2\u30c3\u30d7\u3092\u305d\u306e\u571f\u5730\u306e\u65b9\u3005\u306b\u304a\u9858\u3044\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u3044\u308b\u306e\u3067\u3059\u304c\u3001\u5171\u901a\u30b0\u30e9\u30d5\u30a3\u30c3\u30af\u5c4a\u304d\u307e\u3057\u305f\uff01\u3000\u5730\u65b9\u3067\u30a4\u30d9\u30f3\u30c8\u958b\u50ac\u3084\u3063\u3066\u3082\u3044\u3044\u3088\u3063\u3066\u3044\u3046\u4eba\u52df\u96c6\u4e2d\u3067\u3059\u301c\u3000\u7279\u306b\u6c96\u7e04\u3068\u56db\u56fd\u3042\u305f\u308a https:\/\/t.co\/1HKa0MFoD3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2615700554,"id_str":"2615700554","name":"Unreal Engine Japan","screen_name":"UnrealEngineJP","location":"\u6a2a\u6d5c\u30fb\u685c\u6728\u753a","url":"https:\/\/www.unrealengine.com\/ja","description":"Unreal Engine 4 \u306e\u65e5\u672c\u516c\u5f0f\u3002\u300c\u672c\u6c17\u306a\u3089\u30a2\u30f3\u30ea\u30a2\u30eb\uff01\u300d #UE4","protected":false,"verified":false,"followers_count":2805,"friends_count":255,"listed_count":106,"favourites_count":1238,"statuses_count":2896,"created_at":"Thu Jul 10 15:40:37 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"123456","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496317299960188930\/qLLBiqBE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496317299960188930\/qLLBiqBE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2615700554\/1410266258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":32,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663641097046921216,"id_str":"663641097046921216","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","url":"https:\/\/t.co\/1HKa0MFoD3","display_url":"pic.twitter.com\/1HKa0MFoD3","expanded_url":"http:\/\/twitter.com\/UnrealEngineJP\/status\/663641098259050496\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":284,"resize":"fit"},"medium":{"w":600,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":94,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663641097046921216,"id_str":"663641097046921216","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","url":"https:\/\/t.co\/1HKa0MFoD3","display_url":"pic.twitter.com\/1HKa0MFoD3","expanded_url":"http:\/\/twitter.com\/UnrealEngineJP\/status\/663641098259050496\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":284,"resize":"fit"},"medium":{"w":600,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":94,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UnrealEngineJP","name":"Unreal Engine Japan","id":2615700554,"id_str":"2615700554","indices":[3,18]}],"symbols":[],"media":[{"id":663641097046921216,"id_str":"663641097046921216","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","url":"https:\/\/t.co\/1HKa0MFoD3","display_url":"pic.twitter.com\/1HKa0MFoD3","expanded_url":"http:\/\/twitter.com\/UnrealEngineJP\/status\/663641098259050496\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":284,"resize":"fit"},"medium":{"w":600,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":94,"resize":"fit"}},"source_status_id":663641098259050496,"source_status_id_str":"663641098259050496","source_user_id":2615700554,"source_user_id_str":"2615700554"}]},"extended_entities":{"media":[{"id":663641097046921216,"id_str":"663641097046921216","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6D8fVEAA2TUw.png","url":"https:\/\/t.co\/1HKa0MFoD3","display_url":"pic.twitter.com\/1HKa0MFoD3","expanded_url":"http:\/\/twitter.com\/UnrealEngineJP\/status\/663641098259050496\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":284,"resize":"fit"},"medium":{"w":600,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":94,"resize":"fit"}},"source_status_id":663641098259050496,"source_status_id_str":"663641098259050496","source_user_id":2615700554,"source_user_id_str":"2615700554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080054661"} +{"delete":{"status":{"id":444539156312895488,"id_str":"444539156312895488","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080055011"}} +{"delete":{"status":{"id":619909566440968192,"id_str":"619909566440968192","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080055050"}} +{"delete":{"status":{"id":663650327086911488,"id_str":"663650327086911488","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080055351"}} +{"delete":{"status":{"id":663725879084773376,"id_str":"663725879084773376","user_id":26140710,"user_id_str":"26140710"},"timestamp_ms":"1447080055489"}} +{"delete":{"status":{"id":663727967844089857,"id_str":"663727967844089857","user_id":3515017456,"user_id_str":"3515017456"},"timestamp_ms":"1447080055577"}} +{"delete":{"status":{"id":663349662594633728,"id_str":"663349662594633728","user_id":3251380316,"user_id_str":"3251380316"},"timestamp_ms":"1447080055615"}} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976232722432,"id_str":"663727976232722432","text":"#balanco","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3415573552,"id_str":"3415573552","name":"\u00c9dina Lopes","screen_name":"edinalopes1414","location":null,"url":null,"description":"pra mim todos pingos \u00e9 letras","protected":false,"verified":false,"followers_count":3,"friends_count":81,"listed_count":0,"favourites_count":25,"statuses_count":6,"created_at":"Tue Aug 11 15:34:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631128263419691008\/Nh0XDZsh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631128263419691008\/Nh0XDZsh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"balanco","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080055660"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224264192,"id_str":"663727976224264192","text":"RT @soliditary: Don't say you're happy because everything is alright, but be happy because while everything is complicated, you're still do\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344151370,"id_str":"344151370","name":"Nastazia","screen_name":"stazywazy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":211,"friends_count":196,"listed_count":0,"favourites_count":5879,"statuses_count":16109,"created_at":"Thu Jul 28 16:32:28 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E74139","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179541826\/oH7hRQoi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179541826\/oH7hRQoi.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ABEBB0","profile_text_color":"81E6CB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660142376313348096\/ijeKjyeK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660142376313348096\/ijeKjyeK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344151370\/1446223834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 21:19:40 +0000 2015","id":661291610194501632,"id_str":"661291610194501632","text":"Don't say you're happy because everything is alright, but be happy because while everything is complicated, you're still doing fine.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1535742139,"id_str":"1535742139","name":"art","screen_name":"soliditary","location":"selling accounts & retweets","url":null,"description":"you aren't really you, are you?","protected":false,"verified":false,"followers_count":10253,"friends_count":0,"listed_count":10,"favourites_count":0,"statuses_count":78,"created_at":"Fri Jun 21 04:33:27 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000004145116\/4f8b4c2b1d270c52a5f46edcdc9736d7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000004145116\/4f8b4c2b1d270c52a5f46edcdc9736d7.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658631074000556032\/ULz2KXg2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658631074000556032\/ULz2KXg2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1535742139\/1445864850","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":155,"favorite_count":220,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soliditary","name":"art","id":1535742139,"id_str":"1535742139","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257835009,"id_str":"663727976257835009","text":"RT @mfkolecki: @Cymcyk zgadzam si\u0119 z @AndStefaniak kwestia czasu a zagranica wr\u00f3ci na GPW po zaprzysi\u0119\u017ceniu sko\u0144czy si\u0119 niepewno\u015b\u0107 i popraw\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114229978,"id_str":"1114229978","name":"Andrzej Stefaniak","screen_name":"AndStefaniak","location":null,"url":"http:\/\/andrzejstefaniak.bblog.pl","description":"Dealer walutowy DMK, http:\/\/acemarketu.com","protected":false,"verified":false,"followers_count":460,"friends_count":149,"listed_count":26,"favourites_count":31,"statuses_count":7339,"created_at":"Wed Jan 23 12:11:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660061225603227648\/_QApPQK3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660061225603227648\/_QApPQK3.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3152243479\/23940405bf40aba8e458b90792a1e788_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3152243479\/23940405bf40aba8e458b90792a1e788_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114229978\/1446206024","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:17 +0000 2015","id":663727314254045184,"id_str":"663727314254045184","text":"@Cymcyk zgadzam si\u0119 z @AndStefaniak kwestia czasu a zagranica wr\u00f3ci na GPW po zaprzysi\u0119\u017ceniu sko\u0144czy si\u0119 niepewno\u015b\u0107 i poprawia fundamenty","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724922489970688,"in_reply_to_status_id_str":"663724922489970688","in_reply_to_user_id":1114229978,"in_reply_to_user_id_str":"1114229978","in_reply_to_screen_name":"AndStefaniak","user":{"id":1329119785,"id_str":"1329119785","name":"Mateusz Kolecki","screen_name":"mfkolecki","location":null,"url":null,"description":"Ekonomista, analityk rynk\u00f3w finansowych, akcji, walut, forex. Z wykszta\u0142cenia manager. Zainteresowania literatura, polityka i sport \/ Economist, forex analyst","protected":false,"verified":false,"followers_count":55,"friends_count":225,"listed_count":3,"favourites_count":1252,"statuses_count":476,"created_at":"Fri Apr 05 12:33:27 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602839266763255810\/3pglRyyT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602839266763255810\/3pglRyyT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1329119785\/1427400742","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cymcyk","name":"Pawe\u0142 Cymcyk","id":174978985,"id_str":"174978985","indices":[0,7]},{"screen_name":"AndStefaniak","name":"Andrzej Stefaniak","id":1114229978,"id_str":"1114229978","indices":[22,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mfkolecki","name":"Mateusz Kolecki","id":1329119785,"id_str":"1329119785","indices":[3,13]},{"screen_name":"Cymcyk","name":"Pawe\u0142 Cymcyk","id":174978985,"id_str":"174978985","indices":[15,22]},{"screen_name":"AndStefaniak","name":"Andrzej Stefaniak","id":1114229978,"id_str":"1114229978","indices":[37,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257818624,"id_str":"663727976257818624","text":"RT @J_francis613: @DavidDynomite @1043FreshRadio Uber has created a perfect scenario for sexual predators to take advantage of girls http:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3682822515,"id_str":"3682822515","name":"PROPER LONDON CABBIE","screen_name":"shart1334","location":"London, England","url":null,"description":"GREEN BADGE SINCE 1985 LONDONER BORN AND BRED \nPROUD OF MY LUDDITE PROFESSION\n\nMORE HONORABLE THAN\nMAYOR OF LONDON.","protected":false,"verified":false,"followers_count":256,"friends_count":266,"listed_count":10,"favourites_count":7,"statuses_count":3066,"created_at":"Thu Sep 17 06:26:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644416518160281600\/SVcbEzBh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644416518160281600\/SVcbEzBh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3682822515\/1442475844","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jul 28 17:29:52 +0000 2015","id":626082156239056896,"id_str":"626082156239056896","text":"@DavidDynomite @1043FreshRadio Uber has created a perfect scenario for sexual predators to take advantage of girls http:\/\/t.co\/kyk7Zff8dx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":626060674586804224,"in_reply_to_status_id_str":"626060674586804224","in_reply_to_user_id":768644682,"in_reply_to_user_id_str":"768644682","in_reply_to_screen_name":"DavidDynomite","user":{"id":2831725672,"id_str":"2831725672","name":"Joe Francis","screen_name":"J_francis613","location":"Ottawa,Canada","url":null,"description":null,"protected":false,"verified":false,"followers_count":718,"friends_count":693,"listed_count":26,"favourites_count":540,"statuses_count":11761,"created_at":"Wed Oct 15 14:44:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661929046503129089\/f7Ep2WBS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661929046503129089\/f7Ep2WBS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2831725672\/1419791923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/kyk7Zff8dx","expanded_url":"http:\/\/valleywag.gawker.com\/people-keep-getting-into-strangers-cars-because-they-th-1623164934","display_url":"valleywag.gawker.com\/people-keep-ge\u2026","indices":[115,137]}],"user_mentions":[{"screen_name":"DavidDynomite","name":"David Wallgren","id":768644682,"id_str":"768644682","indices":[0,14]},{"screen_name":"1043FreshRadio","name":"1043 Fresh Radio","id":314106075,"id_str":"314106075","indices":[15,30]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/kyk7Zff8dx","expanded_url":"http:\/\/valleywag.gawker.com\/people-keep-getting-into-strangers-cars-because-they-th-1623164934","display_url":"valleywag.gawker.com\/people-keep-ge\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"J_francis613","name":"Joe Francis","id":2831725672,"id_str":"2831725672","indices":[3,16]},{"screen_name":"DavidDynomite","name":"David Wallgren","id":768644682,"id_str":"768644682","indices":[18,32]},{"screen_name":"1043FreshRadio","name":"1043 Fresh Radio","id":314106075,"id_str":"314106075","indices":[33,48]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976228519936,"id_str":"663727976228519936","text":"RT @m06910: \u0639\u0627\u062c\u0644 \u0639\u0627\u062c\u0644 \u0643\u0644\u0628 \u062f\u0627\u0639\u0634\u064a \u0645\u062a\u0646\u0643\u0631 \u0628\u0644\u0628\u0633 \u0637\u0644\u0628\u062a \u0627\u0644\u0639\u0644\u0645 https:\/\/t.co\/S8cDzYos09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298849927,"id_str":"3298849927","name":"\u064a\u0640\u0627 \u0623\u0645\u064a\u0631 \u0627\u0644\u0645\u0624\u0645\u0646\u064a\u0646","screen_name":"zxczxc00945839","location":"\u0634\u064a\u0639\u064a .\u0631\u0627\u0641\u0636\u064a .\u0645\u0648\u0627\u0644\u064a .\u0644\u0623\u0647\u0644 \u0627\u0644\u0628\u064a\u062a","url":null,"description":"\u0628\u0644\u0651\u063a\u064a \u0627\u0644\u0645\u063a\u064a\u0651\u0628 \u0639\u0646\u0651\u0627 \u0627\u0644\u0633\u0651\u0644\u0627\u0645.. \u0648 \u0627\u0633\u0623\u0644\u064a\u0647 \u0628\u062e\u062c\u0644\u064d \u0623\u0646 \u0646\u0643\u0648\u0646\u064e \u0628\u064a\u0646 \u0643\u0641\u0651\u064a \u062f\u0639\u0627\u0626\u0650\u0647 \u0627\u0644\u0645\u0628\u0627\u0631\u0643.. \u0627\u0644\u0633\u0651\u0644\u0627\u0645\u064f \u0639\u0644\u064a\u0643\u064e \u064a\u0627 \u0642\u0627\u0626\u0645\u064e \u0622\u0644 \u0645\u062d\u0645\u0651\u062f \u0633\u0644\u0627\u0645\u064b\u0627 \u0644\u0627 \u064a\u0646\u0642\u064e\u0637\u0639 \u0623\u0628\u062f\u0627..\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0645\u0641\u0636\u0644\u0627\u062a\u064a","protected":false,"verified":false,"followers_count":2328,"friends_count":804,"listed_count":1,"favourites_count":398,"statuses_count":11456,"created_at":"Mon Jul 27 22:25:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626009691768799232\/kQZOuzZ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298849927\/1440334902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:56:28 +0000 2015","id":663716790598549504,"id_str":"663716790598549504","text":"\u0639\u0627\u062c\u0644 \u0639\u0627\u062c\u0644 \u0643\u0644\u0628 \u062f\u0627\u0639\u0634\u064a \u0645\u062a\u0646\u0643\u0631 \u0628\u0644\u0628\u0633 \u0637\u0644\u0628\u062a \u0627\u0644\u0639\u0644\u0645 https:\/\/t.co\/S8cDzYos09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950536469,"id_str":"2950536469","name":"\u0634\u0640\u0640\u0640\u0640\u062c\u0640\u0640\u0640\u0640\u0640\u0627\u0639 \u0627\u0644\u0639\u0646\u0632\u064a","screen_name":"m06910","location":null,"url":null,"description":"\u0633\u0646\u064a\u0646 \u0633\u0644\u064a\u062a \u0628\u0647\u0648\u0627\u0643 \u0648\u0646\u062d\u0644\u062a \u0631\u0648\u062d\u064a \u0641\u062f\u0627\u0643","protected":false,"verified":false,"followers_count":4800,"friends_count":2589,"listed_count":4,"favourites_count":18015,"statuses_count":36985,"created_at":"Mon Dec 29 15:47:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659332253969948672\/kofvt-sl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659332253969948672\/kofvt-sl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950536469\/1421089079","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716781425565696,"id_str":"663716781425565696","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","url":"https:\/\/t.co\/S8cDzYos09","display_url":"pic.twitter.com\/S8cDzYos09","expanded_url":"http:\/\/twitter.com\/m06910\/status\/663716790598549504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":643,"resize":"fit"},"medium":{"w":539,"h":643,"resize":"fit"},"small":{"w":340,"h":405,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716781425565696,"id_str":"663716781425565696","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","url":"https:\/\/t.co\/S8cDzYos09","display_url":"pic.twitter.com\/S8cDzYos09","expanded_url":"http:\/\/twitter.com\/m06910\/status\/663716790598549504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":643,"resize":"fit"},"medium":{"w":539,"h":643,"resize":"fit"},"small":{"w":340,"h":405,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m06910","name":"\u0634\u0640\u0640\u0640\u0640\u062c\u0640\u0640\u0640\u0640\u0640\u0627\u0639 \u0627\u0644\u0639\u0646\u0632\u064a","id":2950536469,"id_str":"2950536469","indices":[3,10]}],"symbols":[],"media":[{"id":663716781425565696,"id_str":"663716781425565696","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","url":"https:\/\/t.co\/S8cDzYos09","display_url":"pic.twitter.com\/S8cDzYos09","expanded_url":"http:\/\/twitter.com\/m06910\/status\/663716790598549504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":643,"resize":"fit"},"medium":{"w":539,"h":643,"resize":"fit"},"small":{"w":340,"h":405,"resize":"fit"}},"source_status_id":663716790598549504,"source_status_id_str":"663716790598549504","source_user_id":2950536469,"source_user_id_str":"2950536469"}]},"extended_entities":{"media":[{"id":663716781425565696,"id_str":"663716781425565696","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-5WxWIAAzeEa.jpg","url":"https:\/\/t.co\/S8cDzYos09","display_url":"pic.twitter.com\/S8cDzYos09","expanded_url":"http:\/\/twitter.com\/m06910\/status\/663716790598549504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":539,"h":643,"resize":"fit"},"medium":{"w":539,"h":643,"resize":"fit"},"small":{"w":340,"h":405,"resize":"fit"}},"source_status_id":663716790598549504,"source_status_id_str":"663716790598549504","source_user_id":2950536469,"source_user_id_str":"2950536469"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080055659"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224325633,"id_str":"663727976224325633","text":"\uff20rzzp \uff20lov \uff20rzzp _ZEROTO_\u30bf\u30b0\u3075\u3041\u307c\u304a\u75b2\u308c\u69d8 \u81ea\u767a\u304f\u3060\u3055\u3044\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059 #RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b #\u3075\u3041\u307c\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b #\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT #\u76f8\u4e92\u5e0c\u671b #\u62e1\u6563\u5e0c\u671b #TFB #TeamFollowBack #TFB #T\u2026 \u2026 \uff20rzz\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1156417987,"in_reply_to_user_id_str":"1156417987","in_reply_to_screen_name":"rzzp","user":{"id":3106123609,"id_str":"3106123609","name":"@\u30d5\u30a9\u30ed\u30d0100\uff05","screen_name":"_morimori_4649","location":null,"url":null,"description":"\u76f8\u4e92\u5e0c\u671b\u3067\u3059\u3000\u7247\u601d\u3044\u306f\u3057\u307e\u305b\u3093\u3000\u30d5\u30a9\u30ed\u30d0\u6f0f\u308c\u3057\u3066\u305f\u3089\u30ea\u30d7\u304f\u3060\u3055\u3044\u3000\u81ea\u52d5\u30c4\u30a4\u76db\u308a\u81ea\u52d5\u30d5\u30a9\u30ed\u30d0\u81ea\u52d5\u3075\u3041\u307c\u81ea\u52d5rt\u9069\u7528\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":1190,"friends_count":1241,"listed_count":9,"favourites_count":7935,"statuses_count":212262,"created_at":"Tue Mar 24 05:49:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650592725801132032\/AkuGzy6o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650592725801132032\/AkuGzy6o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106123609\/1439171673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[49,63]},{"text":"\u3075\u3041\u307c\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[64,79]},{"text":"\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT","indices":[80,90]},{"text":"\u76f8\u4e92\u5e0c\u671b","indices":[91,96]},{"text":"\u62e1\u6563\u5e0c\u671b","indices":[97,102]},{"text":"TFB","indices":[103,107]},{"text":"TeamFollowBack","indices":[108,123]},{"text":"TFB","indices":[124,128]},{"text":"T","indices":[129,131]}],"urls":[],"user_mentions":[{"screen_name":"rzzp","name":"rzzp","id":1156417987,"id_str":"1156417987","indices":[0,5]},{"screen_name":"lov","name":"\u63a7\u8a00\u3046\u3069\u3093","id":2560693227,"id_str":"2560693227","indices":[6,10]},{"screen_name":"rzzp","name":"rzzp","id":1156417987,"id_str":"1156417987","indices":[11,16]},{"screen_name":"Rzz","name":"Rzz","id":14498248,"id_str":"14498248","indices":[135,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976232693761,"id_str":"663727976232693761","text":"RT @TheHijueputa: Me muero por escribirle, pero ni mierda marica, mi dignidad vale m\u00e1s.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2437590936,"id_str":"2437590936","name":"\u2661YAYG #11\u2661","screen_name":"_Guio11","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":5116,"created_at":"Thu Apr 10 22:38:51 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0E0E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653716330919673856\/lEIwBMYZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653716330919673856\/lEIwBMYZ.jpg","profile_background_tile":true,"profile_link_color":"0E0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650353487604281344\/HAEYxYQw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650353487604281344\/HAEYxYQw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2437590936\/1445445363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 22:23:16 +0000 2015","id":658408512935084033,"id_str":"658408512935084033","text":"Me muero por escribirle, pero ni mierda marica, mi dignidad vale m\u00e1s.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2902830081,"id_str":"2902830081","name":"El Hijueputa.","screen_name":"TheHijueputa","location":"Cali, Colombia.","url":null,"description":"Cada d\u00eda mas makia. Contacto\/Publicidad elhijueputa08@gmail.com","protected":false,"verified":false,"followers_count":62260,"friends_count":58946,"listed_count":71,"favourites_count":14151,"statuses_count":2600,"created_at":"Tue Dec 02 20:41:44 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633124032599166980\/eIKGwKNz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633124032599166980\/eIKGwKNz.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580476560672710657\/xQx9L37P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580476560672710657\/xQx9L37P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2902830081\/1427492756","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":283,"favorite_count":384,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheHijueputa","name":"El Hijueputa.","id":2902830081,"id_str":"2902830081","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055660"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976245272576,"id_str":"663727976245272576","text":"\"Lun\u00e1tico, Colagusano, Canuto y Cornamenta, presentan sus cumplidos al profesor Snape y... (Cont)","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3524446756,"id_str":"3524446756","name":"NicolasTorres_E","screen_name":"NicolasTorres_E","location":null,"url":null,"description":"Amante de la lectura, de mi tranquilidad y felizmente enamorado de la vida :))\nHay un cierto placer en la locura, que solo el loco conoce.","protected":false,"verified":false,"followers_count":64,"friends_count":357,"listed_count":1,"favourites_count":0,"statuses_count":1067,"created_at":"Wed Sep 02 15:09:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639530699150749696\/k5uPgFUr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639530699150749696\/k5uPgFUr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3524446756\/1441310976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055663"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976236871680,"id_str":"663727976236871680","text":"Hoy que est\u00e1 lindo para tomar sol tengo ingl\u00e9s lpm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173904415,"id_str":"173904415","name":"Soli \u265a","screen_name":"SoliPinasco","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":927,"friends_count":600,"listed_count":0,"favourites_count":582,"statuses_count":5547,"created_at":"Mon Aug 02 17:07:25 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000045324691\/8d7c125fe3f4f41b5f7fcde03ca45709.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000045324691\/8d7c125fe3f4f41b5f7fcde03ca45709.jpeg","profile_background_tile":true,"profile_link_color":"E8338A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570685427105054722\/NEysAzcb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570685427105054722\/NEysAzcb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173904415\/1404398371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055661"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224333824,"id_str":"663727976224333824","text":"RT @LaResistenciaML: \u2757vamooooooooooooooooooooooooooo perdemos de mucho pero se pueeede\u2757 #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417994195,"id_str":"417994195","name":"Matilde","screen_name":"MatildeBolle","location":"Ferrara, Emilia Romagna","url":null,"description":"studentessa. i prossimi sono 18. (da grande aprir\u00f2 un conad in patagonia) sappiatelo. inguaribile ottimista. @laliespos @marroneemma","protected":false,"verified":false,"followers_count":169,"friends_count":501,"listed_count":0,"favourites_count":1226,"statuses_count":1926,"created_at":"Mon Nov 21 16:26:39 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000022801318\/0dc16bba976317baf5b7e5ac5c6fddf0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000022801318\/0dc16bba976317baf5b7e5ac5c6fddf0.jpeg","profile_background_tile":true,"profile_link_color":"FA6ED9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DC87ED","profile_text_color":"EB15AE","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661187790839918592\/BhZZuKBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661187790839918592\/BhZZuKBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417994195\/1437823952","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:21 +0000 2015","id":663727076063727616,"id_str":"663727076063727616","text":"\u2757vamooooooooooooooooooooooooooo perdemos de mucho pero se pueeede\u2757 #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/PhyrP7AvFl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3793688675,"id_str":"3793688675","name":"LA RESISTENCIA M&L","screen_name":"LaResistenciaML","location":"Donde Mariano y Lali esten","url":null,"description":"Somos un grupo de 7 amigas del mundo que aman a Lali y Mariano\u2665 \nTenemos mucho humor y #MarialiExiste 3\/11\/15\n\u2665 Ask de @lalaespositoesp : suelo invitar a caf\u00e9!","protected":false,"verified":false,"followers_count":3184,"friends_count":107,"listed_count":5,"favourites_count":10406,"statuses_count":14748,"created_at":"Sun Sep 27 14:31:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648255174822219778\/FCYKCsuQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648255174822219778\/FCYKCsuQ.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659232034536181760\/yGnLwseA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659232034536181760\/yGnLwseA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3793688675\/1445917822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":4,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[67,82]},{"text":"ArtistaDelA\u00f1o","indices":[83,97]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727074784509952,"id_str":"663727074784509952","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","url":"https:\/\/t.co\/PhyrP7AvFl","display_url":"pic.twitter.com\/PhyrP7AvFl","expanded_url":"http:\/\/twitter.com\/LaResistenciaML\/status\/663727076063727616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":625,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":1077,"resize":"fit"},"large":{"w":585,"h":1077,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727074784509952,"id_str":"663727074784509952","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","url":"https:\/\/t.co\/PhyrP7AvFl","display_url":"pic.twitter.com\/PhyrP7AvFl","expanded_url":"http:\/\/twitter.com\/LaResistenciaML\/status\/663727076063727616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":625,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":1077,"resize":"fit"},"large":{"w":585,"h":1077,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[88,103]},{"text":"ArtistaDelA\u00f1o","indices":[104,118]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[3,19]}],"symbols":[],"media":[{"id":663727074784509952,"id_str":"663727074784509952","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","url":"https:\/\/t.co\/PhyrP7AvFl","display_url":"pic.twitter.com\/PhyrP7AvFl","expanded_url":"http:\/\/twitter.com\/LaResistenciaML\/status\/663727076063727616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":625,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":1077,"resize":"fit"},"large":{"w":585,"h":1077,"resize":"fit"}},"source_status_id":663727076063727616,"source_status_id_str":"663727076063727616","source_user_id":3793688675,"source_user_id_str":"3793688675"}]},"extended_entities":{"media":[{"id":663727074784509952,"id_str":"663727074784509952","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQghXAAAR5V7.jpg","url":"https:\/\/t.co\/PhyrP7AvFl","display_url":"pic.twitter.com\/PhyrP7AvFl","expanded_url":"http:\/\/twitter.com\/LaResistenciaML\/status\/663727076063727616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":625,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":585,"h":1077,"resize":"fit"},"large":{"w":585,"h":1077,"resize":"fit"}},"source_status_id":663727076063727616,"source_status_id_str":"663727076063727616","source_user_id":3793688675,"source_user_id_str":"3793688675"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976249454592,"id_str":"663727976249454592","text":"In an oddly respectful move, the person that stole my gamecube took out and left the memory cards #noblenoblenoble","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157835001,"id_str":"157835001","name":"Aflyyy","screen_name":"Aflyyy","location":"#UNC16 DMV \u262e\u2764PG","url":null,"description":"Yeezy Taught Me. I intend to live forever. So far, so good","protected":false,"verified":false,"followers_count":400,"friends_count":267,"listed_count":1,"favourites_count":1121,"statuses_count":8017,"created_at":"Mon Jun 21 01:30:01 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085761089\/a6d0eaf392018608666902f65f82fed3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085761089\/a6d0eaf392018608666902f65f82fed3.jpeg","profile_background_tile":true,"profile_link_color":"BADA55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643934690081173504\/wMb8wC7u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643934690081173504\/wMb8wC7u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157835001\/1398890698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"noblenoblenoble","indices":[98,114]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055664"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257863680,"id_str":"663727976257863680","text":"No tengo ganas de ir al colegio,quiero dormir","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":838822754,"id_str":"838822754","name":"liz","screen_name":"Lizsuarezx","location":null,"url":null,"description":"\u2764A thousand years\u2764","protected":false,"verified":false,"followers_count":590,"friends_count":274,"listed_count":0,"favourites_count":3861,"statuses_count":16817,"created_at":"Sat Sep 22 00:50:46 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565621757407539200\/vu4lAf_c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565621757407539200\/vu4lAf_c.jpeg","profile_background_tile":true,"profile_link_color":"050504","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663388877139374084\/W2yck_Jn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663388877139374084\/W2yck_Jn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/838822754\/1446310793","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224325632,"id_str":"663727976224325632","text":"@xy48o0vs@5mqpxqk\n\nBATTLE\u3000START!","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165287605,"id_str":"3165287605","name":"BATTLE\u3000MATINE","screen_name":"6ajij","location":"CANADA","url":null,"description":"this is landam battle matine.","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4047,"created_at":"Mon Apr 20 11:41:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590119529314783236\/n0QAhka7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590119529314783236\/n0QAhka7_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257708032,"id_str":"663727976257708032","text":"RT @Mister_Patama: Hirap talaga makatulog pag naka on pa ang wifi \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599011146,"id_str":"599011146","name":"Mark Agbulos","screen_name":"Crepeeeee","location":"Fail Harder","url":"http:\/\/Gamer.com","description":"Life is about trusting your feelings, taking chances, and finding happiness.","protected":false,"verified":false,"followers_count":348,"friends_count":516,"listed_count":0,"favourites_count":454,"statuses_count":1164,"created_at":"Mon Jun 04 04:31:44 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660056261535252481\/ebTdNJIU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660056261535252481\/ebTdNJIU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599011146\/1445064022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727690646687744,"id_str":"663727690646687744","text":"Hirap talaga makatulog pag naka on pa ang wifi \ud83d\ude10","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1413311664,"id_str":"1413311664","name":"Mister Patama","screen_name":"Mister_Patama","location":"United Influencers","url":null,"description":"This page serves a high quality of Quotes, Jokes, Patama, Banat, Hugot & Kasabihan in 140 characters or less.","protected":false,"verified":false,"followers_count":112740,"friends_count":21682,"listed_count":46,"favourites_count":3979,"statuses_count":15795,"created_at":"Wed May 08 17:04:15 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1C130E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543713218137296898\/pQ_0Pmqw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543713218137296898\/pQ_0Pmqw.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"9DB98C","profile_sidebar_fill_color":"140E0A","profile_text_color":"838978","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604254581648793601\/TN_s6dL__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604254581648793601\/TN_s6dL__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1413311664\/1432943947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mister_Patama","name":"Mister Patama","id":1413311664,"id_str":"1413311664","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976245276672,"id_str":"663727976245276672","text":"RT @QueenQueen1990: With glasses. Waiting for your Money.@RT_Slave @RTpig @tonybobo3 @moneypigg @slaveboy18 @slave_paypig @slavefr http:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ertpigrt\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385292770,"id_str":"385292770","name":"@\uff32\uff34\uff30\uff29\uff27","screen_name":"RTpig","location":"kik & snapchat: rtpig","url":"https:\/\/twitter.com\/rtpig\/favorites","description":"Slave for all Ladies. Need more subs to follow you? Just Tag me in your tweet and I'll RT everything. 24\/7 #paypig #findom #femdom #jasmin #mfc #camgirl #webcam","protected":false,"verified":false,"followers_count":13229,"friends_count":4513,"listed_count":182,"favourites_count":105,"statuses_count":122768,"created_at":"Wed Oct 05 07:21:09 +0000 2011","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFF1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624995684505251842\/o8ywmUaq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624995684505251842\/o8ywmUaq.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662759967569682432\/GfqI1EPn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662759967569682432\/GfqI1EPn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385292770\/1447006628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Aug 07 13:29:14 +0000 2015","id":629645476032323584,"id_str":"629645476032323584","text":"With glasses. Waiting for your Money.@RT_Slave @RTpig @tonybobo3 @moneypigg @slaveboy18 @slave_paypig @slavefr http:\/\/t.co\/CryHRi2npP","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193935923,"id_str":"3193935923","name":"Vanessa Queen","screen_name":"QueenQueen1990","location":null,"url":null,"description":"Good #piggies send #Tribute to their #Goddess. Where Are the good #slaves to make me happy?!email:queenvanessa@outlook.de","protected":false,"verified":false,"followers_count":350,"friends_count":548,"listed_count":1,"favourites_count":338,"statuses_count":596,"created_at":"Wed Apr 22 07:51:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634682369065283584\/3GypfZr8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634682369065283584\/3GypfZr8_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RT_Slave","name":"RT & Promo Slave","id":2459289994,"id_str":"2459289994","indices":[37,46]},{"screen_name":"RTpig","name":"@\uff32\uff34\uff30\uff29\uff27","id":385292770,"id_str":"385292770","indices":[47,53]},{"screen_name":"tonybobo3","name":"RT And Promo Bitch","id":750282492,"id_str":"750282492","indices":[54,64]},{"screen_name":"moneypigg","name":"Money Piggy","id":99833382,"id_str":"99833382","indices":[65,75]},{"screen_name":"Slaveboy18","name":"Slaveboy","id":3451011925,"id_str":"3451011925","indices":[76,87]},{"screen_name":"slave_paypig","name":"paypig slave K","id":2380177923,"id_str":"2380177923","indices":[88,101]},{"screen_name":"slavefr","name":"sissy4Anna","id":3241205837,"id_str":"3241205837","indices":[102,110]}],"symbols":[],"media":[{"id":629645474786594816,"id_str":"629645474786594816","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","url":"http:\/\/t.co\/CryHRi2npP","display_url":"pic.twitter.com\/CryHRi2npP","expanded_url":"http:\/\/twitter.com\/QueenQueen1990\/status\/629645476032323584\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":714,"resize":"fit"},"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":629645474786594816,"id_str":"629645474786594816","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","url":"http:\/\/t.co\/CryHRi2npP","display_url":"pic.twitter.com\/CryHRi2npP","expanded_url":"http:\/\/twitter.com\/QueenQueen1990\/status\/629645476032323584\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":714,"resize":"fit"},"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QueenQueen1990","name":"Vanessa Queen","id":3193935923,"id_str":"3193935923","indices":[3,18]},{"screen_name":"RT_Slave","name":"RT & Promo Slave","id":2459289994,"id_str":"2459289994","indices":[57,66]},{"screen_name":"RTpig","name":"@\uff32\uff34\uff30\uff29\uff27","id":385292770,"id_str":"385292770","indices":[67,73]},{"screen_name":"tonybobo3","name":"RT And Promo Bitch","id":750282492,"id_str":"750282492","indices":[74,84]},{"screen_name":"moneypigg","name":"Money Piggy","id":99833382,"id_str":"99833382","indices":[85,95]},{"screen_name":"Slaveboy18","name":"Slaveboy","id":3451011925,"id_str":"3451011925","indices":[96,107]},{"screen_name":"slave_paypig","name":"paypig slave K","id":2380177923,"id_str":"2380177923","indices":[108,121]},{"screen_name":"slavefr","name":"sissy4Anna","id":3241205837,"id_str":"3241205837","indices":[122,130]}],"symbols":[],"media":[{"id":629645474786594816,"id_str":"629645474786594816","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","url":"http:\/\/t.co\/CryHRi2npP","display_url":"pic.twitter.com\/CryHRi2npP","expanded_url":"http:\/\/twitter.com\/QueenQueen1990\/status\/629645476032323584\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":714,"resize":"fit"},"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":629645476032323584,"source_status_id_str":"629645476032323584","source_user_id":3193935923,"source_user_id_str":"3193935923"}]},"extended_entities":{"media":[{"id":629645474786594816,"id_str":"629645474786594816","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLzzOSsWUAAyLDt.jpg","url":"http:\/\/t.co\/CryHRi2npP","display_url":"pic.twitter.com\/CryHRi2npP","expanded_url":"http:\/\/twitter.com\/QueenQueen1990\/status\/629645476032323584\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":714,"resize":"fit"},"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":629645476032323584,"source_status_id_str":"629645476032323584","source_user_id":3193935923,"source_user_id_str":"3193935923"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080055663"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224288768,"id_str":"663727976224288768","text":"RT @imactuallywes: I may hate my smile but I love the people who put it there","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2194015336,"id_str":"2194015336","name":"maria","screen_name":"itsleviosahh","location":"hogwarts ","url":null,"description":"I like too many bands. Addicted to clouds and sleep, oh and @GabrielConte.|18|","protected":false,"verified":false,"followers_count":519,"friends_count":511,"listed_count":1,"favourites_count":542,"statuses_count":3260,"created_at":"Sun Nov 24 11:49:45 +0000 2013","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461939123729604609\/gOJ3cvMD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461939123729604609\/gOJ3cvMD.jpeg","profile_background_tile":true,"profile_link_color":"0C3602","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657994119059480577\/-Qzh6Jua_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657994119059480577\/-Qzh6Jua_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2194015336\/1446412877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:01:25 +0000 2015","id":663461344193089536,"id_str":"663461344193089536","text":"I may hate my smile but I love the people who put it there","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904727191,"id_str":"2904727191","name":"wes","screen_name":"imactuallywes","location":"business-wesleyfinn1@gmail.com","url":"http:\/\/Instagram.com\/okokalright","description":"if ur nice i probably love u ----- P.O. Box 15674 Phoenix AZ 85060","protected":false,"verified":false,"followers_count":86796,"friends_count":934,"listed_count":127,"favourites_count":8016,"statuses_count":1111,"created_at":"Thu Dec 04 06:39:22 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653643881532276736\/e1FW5fFX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653643881532276736\/e1FW5fFX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2904727191\/1444675890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":870,"favorite_count":1821,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imactuallywes","name":"wes","id":2904727191,"id_str":"2904727191","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976220086276,"id_str":"663727976220086276","text":"I think it\u2019s time to get an office job again. I\u2019ve run out of tampons.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374145613,"id_str":"374145613","name":"Eliana Horeczko, NBD","screen_name":"IGiveGoodNooch","location":"Brooklyn, NY","url":"http:\/\/www.elianahoreczko.com\/","description":"I only eat carbs. Sorry boys, taken. YouTubeses: https:\/\/www.youtube.com\/user\/elianuchka","protected":false,"verified":false,"followers_count":2015,"friends_count":977,"listed_count":31,"favourites_count":16035,"statuses_count":3206,"created_at":"Thu Sep 15 19:51:53 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/330609256\/i_see_you.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/330609256\/i_see_you.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532934221979865088\/Sx_Q0XR3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532934221979865088\/Sx_Q0XR3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374145613\/1401850489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055657"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976236900352,"id_str":"663727976236900352","text":"RT @shedancestibet: Rest in natural \nGreat peace \nThis exhausted mind\nNyoshul Khen Rinpoche https:\/\/t.co\/7HHcyhWg3F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2218438780,"id_str":"2218438780","name":"Ethya","screen_name":"irldream37","location":"Indre-et-Loire, Centre","url":"http:\/\/ethya.skyrock.com\/","description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":90,"listed_count":0,"favourites_count":33,"statuses_count":50,"created_at":"Tue Dec 10 23:01:38 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663029000676253696\/bXSWrJGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663029000676253696\/bXSWrJGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2218438780\/1446821903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:50:17 +0000 2015","id":663685033996218368,"id_str":"663685033996218368","text":"Rest in natural \nGreat peace \nThis exhausted mind\nNyoshul Khen Rinpoche https:\/\/t.co\/7HHcyhWg3F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":991670881,"id_str":"991670881","name":"she dances tibet","screen_name":"shedancestibet","location":null,"url":null,"description":"Solidarity with Tibet \u0f68\u0f7c\u0f7e\u0f0b\u0f58\u0f0b\u0f4e\u0f72\u0f0b\u0f54\u0f51\u0fa8\u0f7a\u0f0b\u0f67\u0f71\u0f74\u0f83 Compassion~Peace~Earth","protected":false,"verified":false,"followers_count":22371,"friends_count":19472,"listed_count":416,"favourites_count":49897,"statuses_count":14000,"created_at":"Wed Dec 05 20:00:35 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458940697949655040\/Peo5o3oE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458940697949655040\/Peo5o3oE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/991670881\/1415916733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":19,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663685006976524288,"id_str":"663685006976524288","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663685006976524288,"id_str":"663685006976524288","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}}},{"id":663685009639915520,"id_str":"663685009639915520","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh__pWwAAesFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh__pWwAAesFJ.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"large":{"w":864,"h":861,"resize":"fit"},"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shedancestibet","name":"she dances tibet","id":991670881,"id_str":"991670881","indices":[3,18]}],"symbols":[],"media":[{"id":663685006976524288,"id_str":"663685006976524288","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":663685033996218368,"source_status_id_str":"663685033996218368","source_user_id":991670881,"source_user_id_str":"991670881"}]},"extended_entities":{"media":[{"id":663685006976524288,"id_str":"663685006976524288","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh_1uWoAAoyr6.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":800,"h":800,"resize":"fit"}},"source_status_id":663685033996218368,"source_status_id_str":"663685033996218368","source_user_id":991670881,"source_user_id_str":"991670881"},{"id":663685009639915520,"id_str":"663685009639915520","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXh__pWwAAesFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXh__pWwAAesFJ.jpg","url":"https:\/\/t.co\/7HHcyhWg3F","display_url":"pic.twitter.com\/7HHcyhWg3F","expanded_url":"http:\/\/twitter.com\/shedancestibet\/status\/663685033996218368\/photo\/1","type":"photo","sizes":{"large":{"w":864,"h":861,"resize":"fit"},"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}},"source_status_id":663685033996218368,"source_status_id_str":"663685033996218368","source_user_id":991670881,"source_user_id_str":"991670881"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055661"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976228352000,"id_str":"663727976228352000","text":"RT @mainedcm: Just.....just be happy for me and support me in the decisions I make. Is that too much to ask???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3681543494,"id_str":"3681543494","name":"Kiara Abraham","screen_name":"KiaraAyen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":55,"listed_count":0,"favourites_count":254,"statuses_count":337,"created_at":"Fri Sep 25 12:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647394722713997313\/qsk6YFyC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647394722713997313\/qsk6YFyC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:14:45 +0000 2015","id":663706289176903680,"id_str":"663706289176903680","text":"Just.....just be happy for me and support me in the decisions I make. Is that too much to ask???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63701775,"id_str":"63701775","name":"Maine Mendoza","screen_name":"mainedcm","location":null,"url":null,"description":"yup, I am that girl","protected":false,"verified":true,"followers_count":2488044,"friends_count":276,"listed_count":1549,"favourites_count":1400,"statuses_count":38005,"created_at":"Fri Aug 07 12:07:22 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_tile":true,"profile_link_color":"1A1A17","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63701775\/1446987129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10025,"favorite_count":27764,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055659"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976253624320,"id_str":"663727976253624320","text":"@Donalee1Wright hi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3428549175,"in_reply_to_user_id_str":"3428549175","in_reply_to_screen_name":"Donalee1Wright","user":{"id":251958313,"id_str":"251958313","name":"Anthony J Guarino","screen_name":"AJGtweet","location":"Oakland, CA","url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":41,"listed_count":0,"favourites_count":4,"statuses_count":43,"created_at":"Mon Feb 14 05:23:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2909828248\/0b384c62a209faa58ea060ad44d21654_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2909828248\/0b384c62a209faa58ea060ad44d21654_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251958313\/1354174990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4ec01c9dbc693497","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4ec01c9dbc693497.json","place_type":"admin","name":"Florida","full_name":"Florida, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.634643,24.396308],[-87.634643,31.001056],[-79.974307,31.001056],[-79.974307,24.396308]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Donalee1Wright","name":"Donalee Wright","id":3428549175,"id_str":"3428549175","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080055665"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976249475072,"id_str":"663727976249475072","text":"Que verg\u00fcenza que Prieto no este de titular hoy siendo que ya est\u00e1 recuperado de su lesi\u00f3n. Que miedo tienen. #IgualVamosSW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302410789,"id_str":"2302410789","name":"Yubii \u26bd\ufe0f","screen_name":"Yubisw","location":"Valpara\u00edso, Chile ","url":"http:\/\/www.soywanderino.cl","description":"Community Manager de @soywanderinocl, Wanderina y Porte\u00f1a a morir. Devora libros, amo el f\u00fatbol, tenis #NoleLovers y la buena m\u00fasica.","protected":false,"verified":false,"followers_count":745,"friends_count":2038,"listed_count":7,"favourites_count":468,"statuses_count":10259,"created_at":"Fri Jan 24 23:16:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655697095198965760\/xW_vsco6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655697095198965760\/xW_vsco6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302410789\/1444528097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IgualVamosSW","indices":[110,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055664"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257835008,"id_str":"663727976257835008","text":"@thehill with any luck, there are no survivors.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663686229666488321,"in_reply_to_status_id_str":"663686229666488321","in_reply_to_user_id":1917731,"in_reply_to_user_id_str":"1917731","in_reply_to_screen_name":"thehill","user":{"id":46809129,"id_str":"46809129","name":"Frank Benson","screen_name":"mfbenson1","location":null,"url":null,"description":"Superpowers include receiving poor customer service, not being noticed, and leaving without buying anything.","protected":false,"verified":false,"followers_count":209,"friends_count":825,"listed_count":14,"favourites_count":75,"statuses_count":11371,"created_at":"Sat Jun 13 02:47:12 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3053080787\/5fbe0bcde5343046b9e0f2f7c55dbb1c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3053080787\/5fbe0bcde5343046b9e0f2f7c55dbb1c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46809129\/1357094440","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thehill","name":"The Hill","id":1917731,"id_str":"1917731","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976220004352,"id_str":"663727976220004352","text":"@y_2_ore 3\u6bb5\u968e\u8a55\u4fa1\u3067\u3060\u308d\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727874466181121,"in_reply_to_status_id_str":"663727874466181121","in_reply_to_user_id":860927239,"in_reply_to_user_id_str":"860927239","in_reply_to_screen_name":"y_2_ore","user":{"id":1528177928,"id_str":"1528177928","name":"\u6cf0\u767b","screen_name":"otiat4560","location":null,"url":null,"description":"\u304b\u306a\u3061\u3083\u3093\u307e\u3093","protected":false,"verified":false,"followers_count":107,"friends_count":124,"listed_count":0,"favourites_count":600,"statuses_count":3400,"created_at":"Tue Jun 18 16:13:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580260315280977921\/UxYbjeq6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580260315280977921\/UxYbjeq6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1528177928\/1447079072","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"y_2_ore","name":"\u3060\u30fc\u3084\u307e","id":860927239,"id_str":"860927239","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055657"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976241041408,"id_str":"663727976241041408","text":"RT @piscis_hn: Para #Piscis si una relaci\u00f3n no sale como esperaba, despu\u00e9s de haber puesto todas las ganas del mundo, se frustra, y mucho.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627418642,"id_str":"1627418642","name":"Caffarena.","screen_name":"DahiiCaffarena","location":"Londres, Inglaterra","url":null,"description":"Dios tiene un plan para mi \u2661\nClub Benz Py \u2606\nMercedes Benz C270 \u2661","protected":false,"verified":false,"followers_count":1289,"friends_count":859,"listed_count":9,"favourites_count":16650,"statuses_count":52612,"created_at":"Sun Jul 28 08:34:56 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659206521151188992\/zFExtXCt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659206521151188992\/zFExtXCt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1627418642\/1444685542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 22 10:01:14 +0000 2015","id":657134611420459008,"id_str":"657134611420459008","text":"Para #Piscis si una relaci\u00f3n no sale como esperaba, despu\u00e9s de haber puesto todas las ganas del mundo, se frustra, y mucho.","source":"\u003ca href=\"http:\/\/www.postcron.com\" rel=\"nofollow\"\u003ePostcronApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1275466304,"id_str":"1275466304","name":"\u25b2PISCIS\u25b2","screen_name":"piscis_hn","location":null,"url":"http:\/\/www.facebook.com\/HoroscopoNegro","description":"Te mostramos el lado oscuro de tu signo del zodiaco. Piscis, una vida contigo es una vida llena de caos. Lo sabes. Lo s\u00e9 @horoscoponegro \u25b2","protected":false,"verified":false,"followers_count":132826,"friends_count":12,"listed_count":142,"favourites_count":0,"statuses_count":1092,"created_at":"Sun Mar 17 16:56:32 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3393967697\/13d5270b87c2a30ef17ac59f5b94aca3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3393967697\/13d5270b87c2a30ef17ac59f5b94aca3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1275466304\/1363560426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2883,"favorite_count":3095,"entities":{"hashtags":[{"text":"Piscis","indices":[5,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Piscis","indices":[20,27]}],"urls":[],"user_mentions":[{"screen_name":"piscis_hn","name":"\u25b2PISCIS\u25b2","id":1275466304,"id_str":"1275466304","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055662"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976220094464,"id_str":"663727976220094464","text":"Lol focus on your exams and forget about those please o https:\/\/t.co\/3sedCqeeiA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":852619188,"id_str":"852619188","name":"tumelow_","screen_name":"tumelow_","location":"Cape Town\/Johannesburg","url":"https:\/\/m.facebook.com\/senooane.tumelo","description":"IG: tumelow_ Everything Expensive and Beyond","protected":false,"verified":false,"followers_count":340,"friends_count":118,"listed_count":3,"favourites_count":1339,"statuses_count":10182,"created_at":"Sat Sep 29 10:26:30 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662432277411069952\/PKhVj_iH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662432277411069952\/PKhVj_iH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/852619188\/1444656074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727752101654529,"quoted_status_id_str":"663727752101654529","quoted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727752101654529,"id_str":"663727752101654529","text":"Lol potential might be in here https:\/\/t.co\/VZ5WohIMqS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899616992,"id_str":"2899616992","name":"IG:","screen_name":"IamLungi_M","location":"Johannesburg, South Africa","url":null,"description":"RT \u2260 Endorsement","protected":false,"verified":false,"followers_count":434,"friends_count":233,"listed_count":1,"favourites_count":358,"statuses_count":7626,"created_at":"Sun Nov 30 18:52:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647203657050624000\/TH_ZOu72.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647203657050624000\/TH_ZOu72.png","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660850609415970816\/_rxGTOQG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660850609415970816\/_rxGTOQG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899616992\/1446331627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725619948179456,"quoted_status_id_str":"663725619948179456","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VZ5WohIMqS","expanded_url":"https:\/\/twitter.com\/tumelow_\/status\/663725619948179456","display_url":"twitter.com\/tumelow_\/statu\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3sedCqeeiA","expanded_url":"https:\/\/twitter.com\/iamlungi_m\/status\/663727752101654529","display_url":"twitter.com\/iamlungi_m\/sta\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055657"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976236777472,"id_str":"663727976236777472","text":"@Sasuke686116361 \u2026\u2026(\u68da\u306e\u57c3\u304c\u6c17\u306b\u306a\u308b\u306a)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726130571022338,"in_reply_to_status_id_str":"663726130571022338","in_reply_to_user_id":4145068573,"in_reply_to_user_id_str":"4145068573","in_reply_to_screen_name":"Sasuke686116361","user":{"id":1463411845,"id_str":"1463411845","name":"\u30ea\u30f4\u30a1\u30a4\u5175\u58eb\u9577(bot)","screen_name":"lovaixxxbot","location":"4.25\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u5b8c\u4e86","url":null,"description":"\u968f\u6642\u6539\u826f\u3057\u3066\u308b\u304c\u3001\uff24\uff2d\u306b\u306f\u7b54\u3048\u306d\u3047\u3088\u3002\u81ea\u5df1\u8cac\u4efb\u3067\u697d\u3057\u3081\u3002\u5206\u304b\u308b\u306a\uff1f\u5225\u308c\u308b\u3068\u304d\u306f\u3044\u3061\u3044\u3061\u30d6\u30ed\u30c3\u30af\u3057\u308d\u3001\u3055\u3082\u306a\u3044\u3068\u3053\u3063\u3061\u304b\u3089\u30d6\u30ed\u30c3\u30af\u3059\u308b\u3002","protected":false,"verified":false,"followers_count":2960,"friends_count":3292,"listed_count":33,"favourites_count":13,"statuses_count":68655,"created_at":"Mon May 27 23:43:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3786040493\/ed9533ef240956a7e430cd33c1adbb7d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3786040493\/ed9533ef240956a7e430cd33c1adbb7d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1463411845\/1376418146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sasuke686116361","name":"Sasuke.","id":4145068573,"id_str":"4145068573","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055661"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976232554496,"id_str":"663727976232554496","text":"\u5927\u795e\u306fROCK\u306b\u611b\u3055\u308c\u3066\u3044\u308b\u2728\u2728\ud83d\ude0e\u2728\u2728","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69522019,"id_str":"69522019","name":"\u30cf\u30cb\u30fc\u30df\u30eb\u30af\u306f\uff8f\uff7c\uff8f\uff7c\u3067","screen_name":"odenumai","location":"\u9b42\u3092\u5927\u5bae\u306b\u7f6e\u3044\u3066\u304d\u305f","url":"http:\/\/petrompeloeil.blog.fc2.com\/","description":"\u3053\u3044\u3051\u3067\u3059 \u6210\u4eba\u6e08\u8150 \u306f\u3050\u308c\u30aa\u30bf\u30af\u30b3\u30df\u30e5\u969c\u6d3e \u30ad\u30e9\u30eb\u3068\u30a2\u30c8\u30e9\u30b9 \u6700\u8fd1\u306f\u3042\u3093\u30b9\u30bf\u3067\u30a2\u30c9\u30cb\u30b9\u62c5\u3000\u63a8\u3057\u30ab\u30d7\u304c\u4eca\u65e5\u3082\u30ab\u30ef\u30a4\u30a4\u30e4\u30c3\u30bf\u30fc \u305f\u307e\u306b\u30b3\u30b9\u30d7\u30ec\u753b\u50cf\u51fa\u307e\u3059\u3059\u307f\u307e\u305b\u3093 FRB\u304a\u6c17\u8efd\u306b \u652f\u90e8=2461903","protected":false,"verified":false,"followers_count":99,"friends_count":101,"listed_count":9,"favourites_count":126,"statuses_count":40305,"created_at":"Fri Aug 28 06:19:39 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/417281972\/28aa0ce7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/417281972\/28aa0ce7.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660774995535130624\/okeoUztQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660774995535130624\/okeoUztQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69522019\/1443020037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055660"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976232583169,"id_str":"663727976232583169","text":"legend2\u306f\u5168\u4f53\u7684\u306b\u9b45\u305b\u65b9\u304c\u3046\u307e\u304f\u306a\u3063\u3066\u3066\u597d\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/Ragna_BB\" rel=\"nofollow\"\u003eBay Lagoon Wharf\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":996973814,"id_str":"996973814","name":"\u304f\u30fc\u3059\u3051","screen_name":"Ku_123_","location":"Tochigi\u2026\u4ffa\u305f\u3061\u306eSTREET\u2026","url":null,"description":"\u6700\u8fd1\u306f\u96fb\u6483FCI\u3068\u30de\u30ad\u30d6\u3084\u3063\u3066\u307e\u3059\u3002 \u30b9\u30bf\u30f3\u30c9\u3067\u30d0\u30a4\u30c8\u3057\u306a\u304c\u3089CR-Z\u3044\u3058\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":900,"friends_count":908,"listed_count":52,"favourites_count":25394,"statuses_count":195601,"created_at":"Sat Dec 08 11:23:53 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/810879935\/2eee2580dd19238f51b5383fb861d25b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/810879935\/2eee2580dd19238f51b5383fb861d25b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662515460924030976\/gEG7wDCR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662515460924030976\/gEG7wDCR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/996973814\/1446124712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055660"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976253534209,"id_str":"663727976253534209","text":"RT @RitaroAkmrs: \u3067\u304d\u308c\u3070\u6a2a\u306b\u3044\u3066\u307b\u3057\u304f\u3066\ud83d\udc6b\ud83d\udc91\n\n\u3069\u3053\u306b\u3082\u884c\u3063\u3066\u307b\u3057\u304f\u306a\u304f\u3066\ud83d\udc6b\ud83d\ude45\ud83c\udffc\ud83d\udc91\n\n\u50d5\u306e\u3053\u3068\u3060\u3051\u3092\u305a\u3063\u3068\u8003\u3048\u3066\u3044\u3066\u307b\u3057\u3044\ud83e\udd14\n\n\u3067\u3082\u305d\u3093\u306a\u3053\u3068\u4f1d\u3048\u305f\u3089\u30ab\u30c3\u30b3\u60aa\u3044\u3057\ud83d\ude05\n\n\u9577\u304f\u306a\u308b\u3060\u3051\u3060\u304b\u3089\u307e\u3068\u3081\u308b\u3088\ud83d\ude0a\ud83d\udc4d\ud83c\udffb\u2728\n\n\u541b\u304c ....\n\n\u597d\u304d\u3060\ud83d\ude48\ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3592399032,"id_str":"3592399032","name":"\u25b3 \u3082\u3093\u3061 \u25bc","screen_name":"looooo097","location":"\u7b11\u9854 \u2741.\u00b0\u30fb*","url":"http:\/\/line.me\/ti\/p\/cdGxGz5-pq","description":"\u261e\uff5c@Rinka930 \u5927\u5207 \uff5c \u263a\ufe0e \u5973\u5b50\u529b\u00dcP \u263a\ufe0e\uff5c \u4f4e\u6d6e\u4e0a\uff5c","protected":false,"verified":false,"followers_count":863,"friends_count":1320,"listed_count":0,"favourites_count":2139,"statuses_count":1743,"created_at":"Thu Sep 17 09:31:29 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663272640358952960\/v5KvSO4U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663272640358952960\/v5KvSO4U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3592399032\/1447076806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 00:34:08 +0000 2015","id":662065322623504384,"id_str":"662065322623504384","text":"\u3067\u304d\u308c\u3070\u6a2a\u306b\u3044\u3066\u307b\u3057\u304f\u3066\ud83d\udc6b\ud83d\udc91\n\n\u3069\u3053\u306b\u3082\u884c\u3063\u3066\u307b\u3057\u304f\u306a\u304f\u3066\ud83d\udc6b\ud83d\ude45\ud83c\udffc\ud83d\udc91\n\n\u50d5\u306e\u3053\u3068\u3060\u3051\u3092\u305a\u3063\u3068\u8003\u3048\u3066\u3044\u3066\u307b\u3057\u3044\ud83e\udd14\n\n\u3067\u3082\u305d\u3093\u306a\u3053\u3068\u4f1d\u3048\u305f\u3089\u30ab\u30c3\u30b3\u60aa\u3044\u3057\ud83d\ude05\n\n\u9577\u304f\u306a\u308b\u3060\u3051\u3060\u304b\u3089\u307e\u3068\u3081\u308b\u3088\ud83d\ude0a\ud83d\udc4d\ud83c\udffb\u2728\n\n\u541b\u304c ....\n\n\u597d\u304d\u3060\ud83d\ude48\ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2895019795,"id_str":"2895019795","name":"R.\u2765\u2765","screen_name":"RitaroAkmrs","location":" \u00b7\u2022\u00b0 \u96e2\u308c\u3066\u6c17\u3065\u304f\u5927\u5207\u306a\u4eba\u306e\u5927\u5207\u3055 \u00b7\u2022\u00b0","url":null,"description":"\u5f8c\u6094\u3059\u308b\u304f\u3089\u3044\u306a\u3089\u3082\u3063\u3068\u5927\u5207\u306b\u3057\u3068\u3051\u3070\u3088\u304b\u3063\u305f","protected":false,"verified":false,"followers_count":977,"friends_count":0,"listed_count":0,"favourites_count":92,"statuses_count":283,"created_at":"Sun Nov 09 18:16:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559165644352933888\/acTYrGIE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559165644352933888\/acTYrGIE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2895019795\/1422150452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":86,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RitaroAkmrs","name":"R.\u2765\u2765","id":2895019795,"id_str":"2895019795","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055665"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257871872,"id_str":"663727976257871872","text":"RT https:\/\/t.co\/rJmMnlRvrb mcg_gotta: RT 0831x0802: \uba38\ub9ac \uae50 \uc81c\ub178\uc2a4\ub294 \uadfc\ub370 \uc880 \ub108\ubb34 \uc2ec\ud558\ub2e4... https:\/\/t.co\/7lGc8zTtyU","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316751101,"id_str":"3316751101","name":"Jenna","screen_name":"me_jennaa","location":"Sydney, New South Wales","url":null,"description":"exhale everything impart nothing","protected":false,"verified":false,"followers_count":542,"friends_count":1944,"listed_count":313,"favourites_count":0,"statuses_count":186589,"created_at":"Sun Aug 16 09:35:13 +0000 2015","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316751101\/1439717815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rJmMnlRvrb","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[3,26]}],"user_mentions":[],"symbols":[],"media":[{"id":663604179676495872,"id_str":"663604179676495872","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWYfEkVAAAPbck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWYfEkVAAAPbck.jpg","url":"https:\/\/t.co\/7lGc8zTtyU","display_url":"pic.twitter.com\/7lGc8zTtyU","expanded_url":"http:\/\/twitter.com\/0831x0802\/status\/663604187591131136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":556,"h":645,"resize":"fit"},"large":{"w":556,"h":645,"resize":"fit"},"small":{"w":340,"h":394,"resize":"fit"}},"source_status_id":663604187591131136,"source_status_id_str":"663604187591131136","source_user_id":3155115277,"source_user_id_str":"3155115277"}]},"extended_entities":{"media":[{"id":663604179676495872,"id_str":"663604179676495872","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWYfEkVAAAPbck.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWYfEkVAAAPbck.jpg","url":"https:\/\/t.co\/7lGc8zTtyU","display_url":"pic.twitter.com\/7lGc8zTtyU","expanded_url":"http:\/\/twitter.com\/0831x0802\/status\/663604187591131136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":556,"h":645,"resize":"fit"},"large":{"w":556,"h":645,"resize":"fit"},"small":{"w":340,"h":394,"resize":"fit"}},"source_status_id":663604187591131136,"source_status_id_str":"663604187591131136","source_user_id":3155115277,"source_user_id_str":"3155115277"},{"id":663604179701657600,"id_str":"663604179701657600","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWYfEqU8AAybGG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWYfEqU8AAybGG.jpg","url":"https:\/\/t.co\/7lGc8zTtyU","display_url":"pic.twitter.com\/7lGc8zTtyU","expanded_url":"http:\/\/twitter.com\/0831x0802\/status\/663604187591131136\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":359,"resize":"fit"},"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":500,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663604187591131136,"source_status_id_str":"663604187591131136","source_user_id":3155115277,"source_user_id_str":"3155115277"},{"id":663604179902922752,"id_str":"663604179902922752","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWYfFaUAAA5Gm6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWYfFaUAAA5Gm6.jpg","url":"https:\/\/t.co\/7lGc8zTtyU","display_url":"pic.twitter.com\/7lGc8zTtyU","expanded_url":"http:\/\/twitter.com\/0831x0802\/status\/663604187591131136\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":744,"h":496,"resize":"fit"}},"source_status_id":663604187591131136,"source_status_id_str":"663604187591131136","source_user_id":3155115277,"source_user_id_str":"3155115277"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976232546304,"id_str":"663727976232546304","text":"RT @Ktown4u_spanish: [Pre-Order]\n\nB.A.P - Mini Album Vol.4 [MATRIX] (Special X ver.)\n#BAP #BAPMATRIX #BAPisBack \n\nhttps:\/\/t.co\/3pVIfhCCvq h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1318480279,"id_str":"1318480279","name":"CHANWOO","screen_name":"MundaeYessy","location":"inside your heart ","url":null,"description":"Simple\nKpop\u2764\nReviews\nL O V E","protected":false,"verified":false,"followers_count":18,"friends_count":131,"listed_count":1,"favourites_count":7,"statuses_count":213,"created_at":"Sun Mar 31 14:18:26 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650650294615826432\/NtIpC9Z__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650650294615826432\/NtIpC9Z__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318480279\/1443962092","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:44:59 +0000 2015","id":663698798171062272,"id_str":"663698798171062272","text":"[Pre-Order]\n\nB.A.P - Mini Album Vol.4 [MATRIX] (Special X ver.)\n#BAP #BAPMATRIX #BAPisBack \n\nhttps:\/\/t.co\/3pVIfhCCvq https:\/\/t.co\/drKNL88EBd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245721876,"id_str":"3245721876","name":"Ktown4u_spanish","screen_name":"Ktown4u_spanish","location":"Se\u00fal, Corea del Sur","url":"http:\/\/www.ktown4u.com\/","description":"Ktown4u es el nuevo sitio de DVDHeaven. Contamos con una gran variedad de art\u00edculos relacionados con K-pop como CDs, DVDs y goods oficiales.","protected":false,"verified":false,"followers_count":85,"friends_count":98,"listed_count":0,"favourites_count":18,"statuses_count":348,"created_at":"Mon Jun 15 07:24:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610347217715511296\/N3pkg5bP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610347217715511296\/N3pkg5bP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"BAP","indices":[64,68]},{"text":"BAPMATRIX","indices":[69,79]},{"text":"BAPisBack","indices":[80,90]}],"urls":[{"url":"https:\/\/t.co\/3pVIfhCCvq","expanded_url":"http:\/\/www.ktown4u.com\/iteminfo?eve_no=34190&biz_no=228&goods_no=22173","display_url":"ktown4u.com\/iteminfo?eve_n\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663698789908238336,"id_str":"663698789908238336","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","url":"https:\/\/t.co\/drKNL88EBd","display_url":"pic.twitter.com\/drKNL88EBd","expanded_url":"http:\/\/twitter.com\/Ktown4u_spanish\/status\/663698798171062272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":680,"resize":"fit"},"small":{"w":340,"h":385,"resize":"fit"},"large":{"w":874,"h":991,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698789908238336,"id_str":"663698789908238336","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","url":"https:\/\/t.co\/drKNL88EBd","display_url":"pic.twitter.com\/drKNL88EBd","expanded_url":"http:\/\/twitter.com\/Ktown4u_spanish\/status\/663698798171062272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":680,"resize":"fit"},"small":{"w":340,"h":385,"resize":"fit"},"large":{"w":874,"h":991,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BAP","indices":[85,89]},{"text":"BAPMATRIX","indices":[90,100]},{"text":"BAPisBack","indices":[101,111]}],"urls":[{"url":"https:\/\/t.co\/3pVIfhCCvq","expanded_url":"http:\/\/www.ktown4u.com\/iteminfo?eve_no=34190&biz_no=228&goods_no=22173","display_url":"ktown4u.com\/iteminfo?eve_n\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"Ktown4u_spanish","name":"Ktown4u_spanish","id":3245721876,"id_str":"3245721876","indices":[3,19]}],"symbols":[],"media":[{"id":663698789908238336,"id_str":"663698789908238336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","url":"https:\/\/t.co\/drKNL88EBd","display_url":"pic.twitter.com\/drKNL88EBd","expanded_url":"http:\/\/twitter.com\/Ktown4u_spanish\/status\/663698798171062272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":680,"resize":"fit"},"small":{"w":340,"h":385,"resize":"fit"},"large":{"w":874,"h":991,"resize":"fit"}},"source_status_id":663698798171062272,"source_status_id_str":"663698798171062272","source_user_id":3245721876,"source_user_id_str":"3245721876"}]},"extended_entities":{"media":[{"id":663698789908238336,"id_str":"663698789908238336","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuiHJWUAA3N3O.jpg","url":"https:\/\/t.co\/drKNL88EBd","display_url":"pic.twitter.com\/drKNL88EBd","expanded_url":"http:\/\/twitter.com\/Ktown4u_spanish\/status\/663698798171062272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":680,"resize":"fit"},"small":{"w":340,"h":385,"resize":"fit"},"large":{"w":874,"h":991,"resize":"fit"}},"source_status_id":663698798171062272,"source_status_id_str":"663698798171062272","source_user_id":3245721876,"source_user_id_str":"3245721876"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080055660"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976236781568,"id_str":"663727976236781568","text":"\u30a2\u30ab\u30fc\u30fc\u30fc\u30fc\u30fc\u30f3\ud83e\udd13(cv.\u5bae\u5ddd\u5927\u8f14)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228051624,"id_str":"3228051624","name":"\u3082\u3048\u3063\u3053","screen_name":"hkmi6_","location":"\u30ab\u30f3\u30b5\u30a4\u30d4\u30fc\u30dd\u30fc","url":null,"description":"\u5d50\u3055\u3093\u3068\u304a\u3058\u3083\u3093\u3077\u306e\u7bb1\u63a8\u3057\u3084\u308d\u3046 \/ \u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\u2026( \u02d8\u03c9\u02d8)","protected":false,"verified":false,"followers_count":72,"friends_count":77,"listed_count":2,"favourites_count":7055,"statuses_count":6736,"created_at":"Wed May 27 10:20:42 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659771252899385344\/5dqBPUBr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659771252899385344\/5dqBPUBr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228051624\/1446136699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055661"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976241111040,"id_str":"663727976241111040","text":"RT @1DsTumblr: the aliens came here to send y'all an important message \n\n#5DaysUntilMITAM https:\/\/t.co\/GLiRJXEjtT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2355244273,"id_str":"2355244273","name":"Elsapricot","screen_name":"directioner0700","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1171,"friends_count":1997,"listed_count":0,"favourites_count":3891,"statuses_count":6241,"created_at":"Fri Feb 21 19:24:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637314674036449280\/MkdhsbvZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637314674036449280\/MkdhsbvZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2355244273\/1441777767","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:48:40 +0000 2015","id":663412835049938944,"id_str":"663412835049938944","text":"the aliens came here to send y'all an important message \n\n#5DaysUntilMITAM https:\/\/t.co\/GLiRJXEjtT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726349521,"id_str":"2726349521","name":"1D Tumblr Post","screen_name":"1DsTumblr","location":"@1Ds_Nixller is my louis","url":null,"description":"\u029a \u0dc6 \u025e \u2800send in 1d text posts in our dms","protected":false,"verified":false,"followers_count":164520,"friends_count":50,"listed_count":415,"favourites_count":2263,"statuses_count":3223,"created_at":"Sun Jul 27 14:04:34 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637621146091958273\/l-mRNNCb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637621146091958273\/l-mRNNCb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726349521\/1431940611","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1174,"favorite_count":901,"entities":{"hashtags":[{"text":"5DaysUntilMITAM","indices":[58,74]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663412829794471936,"id_str":"663412829794471936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663412829794471936,"id_str":"663412829794471936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663412829836468224,"id_str":"663412829836468224","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdC3W4AAyrRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdC3W4AAyrRQ.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysUntilMITAM","indices":[73,89]}],"urls":[],"user_mentions":[{"screen_name":"1DsTumblr","name":"1D Tumblr Post","id":2726349521,"id_str":"2726349521","indices":[3,13]}],"symbols":[],"media":[{"id":663412829794471936,"id_str":"663412829794471936","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663412835049938944,"source_status_id_str":"663412835049938944","source_user_id":2726349521,"source_user_id_str":"2726349521"}]},"extended_entities":{"media":[{"id":663412829794471936,"id_str":"663412829794471936","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdCtWEAATn00.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663412835049938944,"source_status_id_str":"663412835049938944","source_user_id":2726349521,"source_user_id_str":"2726349521"},{"id":663412829836468224,"id_str":"663412829836468224","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTqdC3W4AAyrRQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTqdC3W4AAyrRQ.jpg","url":"https:\/\/t.co\/GLiRJXEjtT","display_url":"pic.twitter.com\/GLiRJXEjtT","expanded_url":"http:\/\/twitter.com\/1DsTumblr\/status\/663412835049938944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663412835049938944,"source_status_id_str":"663412835049938944","source_user_id":2726349521,"source_user_id_str":"2726349521"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055662"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976236773376,"id_str":"663727976236773376","text":"\u79c1\u306e\u76ee\u306e\u4fdd\u990a()\u81ea\u64ae\u308a\u53ef\u611b\u304f\u3066\u3044\u3064\u3082\u306b\u3084\u306b\u3084\u3057\u3066\u898b\u3066\u308b\u307e\u3067\u3042\u308b\uff01\u4f1a\u3063\u305f\u3089\u3059\u3054\u3044\u69cb\u3063\u3066\u304f\u308c\u308b\u3042\u308a\u304c\u3068\uff01 https:\/\/t.co\/dYze8yFLJR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3034583574,"id_str":"3034583574","name":"\u306a\u304d\u306b\u3057\u3082\u306f\u308b\u304b\u30de\u30f3(\u3042\u308a\u3055\u307e\u3093)","screen_name":"haruuu__99","location":"\u95a2\u897f\u4eba\u306f\u73fe\u5728\u3001\u7530\u820e\u306e\u6c11","url":null,"description":"\\\u306a\u304d\u306b\u3057\u3082\uff1f\u3042\u308a\u3055\u307e\u30fc\u3093\uff01\u306f\u308b\u304b\u307e\u30fc\u3093\uff01\/ \u306a\u304d\u306b\u3057\u3082\uff1f\u3068\u306a\u3093\u3066\uff1f\u3092\u3069\u3053\u304b\u3067\u6d41\u3057\u3066\u307e\u3059 \/ \u65c5\u4eba\u306f\u308b\u304b \/ \u9662\u8a66\u306b\u52dd\u3061\u307e\u3057\u305f \/ \u306a\u304d\u306b\u3057\u3082\u3042\u308a\u3055\u307e\u3093\u63a8\u5968 \/ \u306a\u308b\u307f\u3068\u59c9\u59b9\u7591\u60d1","protected":false,"verified":false,"followers_count":265,"friends_count":246,"listed_count":41,"favourites_count":3545,"statuses_count":11993,"created_at":"Sat Feb 21 12:48:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660472268007407616\/BTGJBEzJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660472268007407616\/BTGJBEzJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3034583574\/1428212886","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663710437662310400,"quoted_status_id_str":"663710437662310400","quoted_status":{"created_at":"Mon Nov 09 13:31:14 +0000 2015","id":663710437662310400,"id_str":"663710437662310400","text":"\u6c17\u306b\u306a\u308b\u6728\n\n#\u79c1\u306f\u3042\u306a\u305f\u306e\u306a\u3093\u3067\u3059\u304b\u5f15\u7528RT\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2943390404,"id_str":"2943390404","name":"\u3042\u304d\u3066\u3043","screen_name":"kitty__a","location":null,"url":null,"description":"\u3068\u3089\u304f\u3093\u3010@to_ra_law\u3011","protected":false,"verified":false,"followers_count":296,"friends_count":282,"listed_count":32,"favourites_count":20631,"statuses_count":31667,"created_at":"Fri Dec 26 02:20:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662929294373470208\/1Nc9_J_w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662929294373470208\/1Nc9_J_w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2943390404\/1438319013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u79c1\u306f\u3042\u306a\u305f\u306e\u306a\u3093\u3067\u3059\u304b\u5f15\u7528RT\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044","indices":[7,31]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dYze8yFLJR","expanded_url":"https:\/\/twitter.com\/kitty__a\/status\/663710437662310400","display_url":"twitter.com\/kitty__a\/statu\u2026","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055661"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976249360384,"id_str":"663727976249360384","text":"@MIny926 \uc751.....,24\uc77c\u315c\u315c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727928023224325,"in_reply_to_status_id_str":"663727928023224325","in_reply_to_user_id":503072069,"in_reply_to_user_id_str":"503072069","in_reply_to_screen_name":"MIny926","user":{"id":499640853,"id_str":"499640853","name":"\uc698\uc774","screen_name":"900CHAYONI630","location":null,"url":null,"description":"\uc544!\ub080!\ub2e4!","protected":false,"verified":false,"followers_count":63,"friends_count":782,"listed_count":0,"favourites_count":8357,"statuses_count":57708,"created_at":"Wed Feb 22 09:56:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663321390792097792\/p1HLrXVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663321390792097792\/p1HLrXVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/499640853\/1445610105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MIny926","name":"\uac1c\uac15 \ub9dd\ud588\uc73c\uba74","id":503072069,"id_str":"503072069","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080055664"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976245100545,"id_str":"663727976245100545","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/UbS8NzyAoo","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416037372,"id_str":"416037372","name":"\u2605..bitch IM BACK\u2122 \u2022","screen_name":"iHATE_LAMESZz","location":null,"url":"http:\/\/facebook.com\/Onasha.Shatia","description":"#teamJOURNI #RIPDADDY \u2665 !","protected":false,"verified":false,"followers_count":349,"friends_count":364,"listed_count":0,"favourites_count":144,"statuses_count":9120,"created_at":"Sat Nov 19 04:37:47 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535119818\/HelloKittyBow02_HotPink.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535119818\/HelloKittyBow02_HotPink.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000531394628\/e46d0bb3dcfbacd21fafaabc529c542a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000531394628\/e46d0bb3dcfbacd21fafaabc529c542a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416037372\/1367849884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UbS8NzyAoo","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055663"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257843200,"id_str":"663727976257843200","text":"@BluePrint_Dub @Bcaru_15 so y'all want them to spare your feelings?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725100932440064,"in_reply_to_status_id_str":"663725100932440064","in_reply_to_user_id":2321512734,"in_reply_to_user_id_str":"2321512734","in_reply_to_screen_name":"BluePrint_Dub","user":{"id":1335272293,"id_str":"1335272293","name":"whitney","screen_name":"whitwashere","location":"in the gym","url":null,"description":"we are the soul of america, and the heroes of diaspora...","protected":false,"verified":false,"followers_count":575,"friends_count":565,"listed_count":1,"favourites_count":4798,"statuses_count":7943,"created_at":"Sun Apr 07 22:50:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663422024111497216\/MO6Z5_Y4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663422024111497216\/MO6Z5_Y4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1335272293\/1439618457","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BluePrint_Dub","name":"The BluePrint '97","id":2321512734,"id_str":"2321512734","indices":[0,14]},{"screen_name":"Bcaru_15","name":"Brandon Caruthers","id":316251810,"id_str":"316251810","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976253517824,"id_str":"663727976253517824","text":"RT @cristalaxxx: Proximamente estreno con esta mamasita @johanitagonzale https:\/\/t.co\/XVodNxhfTL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1289991151,"id_str":"1289991151","name":"iran","screen_name":"IranAtlampa","location":"Mexico d.f.","url":null,"description":"Hombre Maduro -. Me encanta el Erotismo -Respeto todas las formas d Ser y d pensar. Amo la Vida. Soy diferente Orgullosamente","protected":false,"verified":false,"followers_count":239,"friends_count":80,"listed_count":3,"favourites_count":918,"statuses_count":4358,"created_at":"Sat Mar 23 00:10:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580527336476549120\/OwQXJbuI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580527336476549120\/OwQXJbuI_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:23:03 +0000 2015","id":663481888636452864,"id_str":"663481888636452864","text":"Proximamente estreno con esta mamasita @johanitagonzale https:\/\/t.co\/XVodNxhfTL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253430113,"id_str":"3253430113","name":"cristal caraballo","screen_name":"cristalaxxx","location":null,"url":null,"description":"modelo ,actriz xxx","protected":false,"verified":false,"followers_count":18504,"friends_count":85,"listed_count":77,"favourites_count":5025,"statuses_count":1029,"created_at":"Tue Jun 23 06:53:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663531351216250880\/ZWG09OlH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663531351216250880\/ZWG09OlH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253430113\/1435042858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":134,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"johanitagonzale","name":"johanna gonzalez","id":314245489,"id_str":"314245489","indices":[39,55]}],"symbols":[],"media":[{"id":663481771149815809,"id_str":"663481771149815809","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","url":"https:\/\/t.co\/XVodNxhfTL","display_url":"pic.twitter.com\/XVodNxhfTL","expanded_url":"http:\/\/twitter.com\/cristalaxxx\/status\/663481888636452864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663481771149815809,"id_str":"663481771149815809","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","url":"https:\/\/t.co\/XVodNxhfTL","display_url":"pic.twitter.com\/XVodNxhfTL","expanded_url":"http:\/\/twitter.com\/cristalaxxx\/status\/663481888636452864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cristalaxxx","name":"cristal caraballo","id":3253430113,"id_str":"3253430113","indices":[3,15]},{"screen_name":"johanitagonzale","name":"johanna gonzalez","id":314245489,"id_str":"314245489","indices":[56,72]}],"symbols":[],"media":[{"id":663481771149815809,"id_str":"663481771149815809","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","url":"https:\/\/t.co\/XVodNxhfTL","display_url":"pic.twitter.com\/XVodNxhfTL","expanded_url":"http:\/\/twitter.com\/cristalaxxx\/status\/663481888636452864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663481888636452864,"source_status_id_str":"663481888636452864","source_user_id":3253430113,"source_user_id_str":"3253430113"}]},"extended_entities":{"media":[{"id":663481771149815809,"id_str":"663481771149815809","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUpJ9RU8AEAO3O.jpg","url":"https:\/\/t.co\/XVodNxhfTL","display_url":"pic.twitter.com\/XVodNxhfTL","expanded_url":"http:\/\/twitter.com\/cristalaxxx\/status\/663481888636452864\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663481888636452864,"source_status_id_str":"663481888636452864","source_user_id":3253430113,"source_user_id_str":"3253430113"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080055665"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976228499456,"id_str":"663727976228499456","text":"RT @PositiveMinds__: Do u ever just think about the first time u met someone & then compare it to where u guys are now & its like wow who k\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":803562906,"id_str":"803562906","name":"Cody Kmecak","screen_name":"Cody_Kmecak","location":null,"url":null,"description":"I was Phi Gam born, I was Phi Gam bred, and when I die ill be Phi Gam dead-FIJI","protected":false,"verified":false,"followers_count":260,"friends_count":252,"listed_count":1,"favourites_count":650,"statuses_count":2149,"created_at":"Wed Sep 05 01:12:46 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597037391849861121\/I8XKVSx4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597037391849861121\/I8XKVSx4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/803562906\/1411825648","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:10:56 +0000 2015","id":663418438942113794,"id_str":"663418438942113794","text":"Do u ever just think about the first time u met someone & then compare it to where u guys are now & its like wow who knew this would happen.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1698040651,"id_str":"1698040651","name":"Positive Minds","screen_name":"PositiveMinds__","location":"positivemindstwit@gmail.com","url":"http:\/\/redtidemedia.com","description":"Adding some positivity to your day. We own nothing shared. Content can be taken down by request.","protected":false,"verified":false,"followers_count":483245,"friends_count":151,"listed_count":769,"favourites_count":6,"statuses_count":8065,"created_at":"Sun Aug 25 03:12:58 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163872517\/CNxU6ZYq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163872517\/CNxU6ZYq.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000372870774\/62198e4340a5e217107f2e4c5595259e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000372870774\/62198e4340a5e217107f2e4c5595259e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1698040651\/1377664535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":447,"favorite_count":839,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PositiveMinds__","name":"Positive Minds","id":1698040651,"id_str":"1698040651","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055659"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976224157697,"id_str":"663727976224157697","text":"RT @naomipineda0201: \u30d5\u30a9\u30ed\u30fc\u5897\u3084\u3057\u305f\u3044\u306e\u3067\u3001RT\u3088\u308d\u3057\u304f\u2728\n\n\uff031D\u597d\u304d\u306a\u4ebaRT\n\uff03\u30a2\u30ea\u30a2\u30ca\u597d\u304d\u306a\u4ebaRT\n\uff03\u30b8\u30e3\u30b9\u30c6\u30a3\u30f3\u597d\u304d\u306a\u4ebaRT\n\uff03\u30c6\u30a4\u30e9\u30fc\u597d\u304d\u306a\u4ebaRT\n\nRT\u3057\u3066\u304f\u308c\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u3088\ud83d\udc4d https:\/\/t.co\/7lV4XyQS6v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076522111,"id_str":"3076522111","name":"Ray'n","screen_name":"_Rayn_Tana","location":null,"url":null,"description":"\u308c\u3044\u3093\u3063\u3066\u8aad\u3080\/LDC\/15\u3061\u3083\u3044\/\u2642\/\u9678\u4e0a\u90e8\/\u77ed\u8ddd\u96e2\/11\u201d73\/\u30b9\u30bf\u30d0\u597d\u304d\/\u6d0b\u697d\u597d\u304d\/Justin Bieber \/One Direction\/\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u52c9\u5f37\u4e2d\/WEGO\u597d\u304d\/HARE\u597d\u304d\/\u30b9\u30ad\u30f3\u30b1\u30a2\u59cb\u3081\u307e\u3057\u305f\/\u304a\u6d12\u843d\u3055\u3093\u306b\u306a\u308a\u305f\u3044","protected":false,"verified":false,"followers_count":370,"friends_count":459,"listed_count":2,"favourites_count":5735,"statuses_count":4899,"created_at":"Fri Mar 13 11:03:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653506420524974081\/O7-NRhhX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653506420524974081\/O7-NRhhX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076522111\/1444564071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 09:14:36 +0000 2015","id":662196301786845185,"id_str":"662196301786845185","text":"\u30d5\u30a9\u30ed\u30fc\u5897\u3084\u3057\u305f\u3044\u306e\u3067\u3001RT\u3088\u308d\u3057\u304f\u2728\n\n\uff031D\u597d\u304d\u306a\u4ebaRT\n\uff03\u30a2\u30ea\u30a2\u30ca\u597d\u304d\u306a\u4ebaRT\n\uff03\u30b8\u30e3\u30b9\u30c6\u30a3\u30f3\u597d\u304d\u306a\u4ebaRT\n\uff03\u30c6\u30a4\u30e9\u30fc\u597d\u304d\u306a\u4ebaRT\n\nRT\u3057\u3066\u304f\u308c\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u3088\ud83d\udc4d https:\/\/t.co\/7lV4XyQS6v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3123306817,"id_str":"3123306817","name":"\u261e \u306a\u304a\u3068\u3080\u261c","screen_name":"naomipineda0201","location":"\u4f1a\u3044\u305f\u3044","url":null,"description":"\uff03OneDirection\n13 years old\u25b6follow me","protected":false,"verified":false,"followers_count":409,"friends_count":591,"listed_count":0,"favourites_count":568,"statuses_count":453,"created_at":"Wed Apr 01 06:40:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655377662035148800\/AdX6uaMt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655377662035148800\/AdX6uaMt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3123306817\/1446940362","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":193,"favorite_count":77,"entities":{"hashtags":[{"text":"1D\u597d\u304d\u306a\u4ebaRT","indices":[21,30]},{"text":"\u30a2\u30ea\u30a2\u30ca\u597d\u304d\u306a\u4ebaRT","indices":[31,42]},{"text":"\u30b8\u30e3\u30b9\u30c6\u30a3\u30f3\u597d\u304d\u306a\u4ebaRT","indices":[43,56]},{"text":"\u30c6\u30a4\u30e9\u30fc\u597d\u304d\u306a\u4ebaRT","indices":[57,68]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662196204848091136,"id_str":"662196204848091136","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":553,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":553,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662196204848091136,"id_str":"662196204848091136","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":553,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":553,"resize":"fit"}}},{"id":662196207356219392,"id_str":"662196207356219392","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8S8UEAAptbs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8S8UEAAptbs.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}}},{"id":662196260233867264,"id_str":"662196260233867264","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX_X7U8AAS3JT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX_X7U8AAS3JT.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":483,"resize":"fit"},"medium":{"w":600,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1024,"resize":"fit"}}},{"id":662196298800459780,"id_str":"662196298800459780","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCYBnmUcAQfOmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCYBnmUcAQfOmK.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":676,"resize":"fit"},"medium":{"w":600,"h":396,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1D\u597d\u304d\u306a\u4ebaRT","indices":[42,51]},{"text":"\u30a2\u30ea\u30a2\u30ca\u597d\u304d\u306a\u4ebaRT","indices":[52,63]},{"text":"\u30b8\u30e3\u30b9\u30c6\u30a3\u30f3\u597d\u304d\u306a\u4ebaRT","indices":[64,77]},{"text":"\u30c6\u30a4\u30e9\u30fc\u597d\u304d\u306a\u4ebaRT","indices":[78,89]}],"urls":[],"user_mentions":[{"screen_name":"naomipineda0201","name":"\u261e \u306a\u304a\u3068\u3080\u261c","id":3123306817,"id_str":"3123306817","indices":[3,19]}],"symbols":[],"media":[{"id":662196204848091136,"id_str":"662196204848091136","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":553,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":553,"resize":"fit"}},"source_status_id":662196301786845185,"source_status_id_str":"662196301786845185","source_user_id":3123306817,"source_user_id_str":"3123306817"}]},"extended_entities":{"media":[{"id":662196204848091136,"id_str":"662196204848091136","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8JmVEAAi0zb.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":553,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":553,"resize":"fit"}},"source_status_id":662196301786845185,"source_status_id_str":"662196301786845185","source_user_id":3123306817,"source_user_id_str":"3123306817"},{"id":662196207356219392,"id_str":"662196207356219392","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX8S8UEAAptbs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX8S8UEAAptbs.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}},"source_status_id":662196301786845185,"source_status_id_str":"662196301786845185","source_user_id":3123306817,"source_user_id_str":"3123306817"},{"id":662196260233867264,"id_str":"662196260233867264","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCX_X7U8AAS3JT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCX_X7U8AAS3JT.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":483,"resize":"fit"},"medium":{"w":600,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1024,"resize":"fit"}},"source_status_id":662196301786845185,"source_status_id_str":"662196301786845185","source_user_id":3123306817,"source_user_id_str":"3123306817"},{"id":662196298800459780,"id_str":"662196298800459780","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCYBnmUcAQfOmK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCYBnmUcAQfOmK.jpg","url":"https:\/\/t.co\/7lV4XyQS6v","display_url":"pic.twitter.com\/7lV4XyQS6v","expanded_url":"http:\/\/twitter.com\/naomipineda0201\/status\/662196301786845185\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":676,"resize":"fit"},"medium":{"w":600,"h":396,"resize":"fit"}},"source_status_id":662196301786845185,"source_status_id_str":"662196301786845185","source_user_id":3123306817,"source_user_id_str":"3123306817"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055658"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976257732608,"id_str":"663727976257732608","text":"@nagisa112286 \u3080\u304b\u3064\u304b\u3093\u3067:;(\u2229\u00b4\ufe4f`\u2229);:","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727332331356161,"in_reply_to_status_id_str":"663727332331356161","in_reply_to_user_id":1863875083,"in_reply_to_user_id_str":"1863875083","in_reply_to_screen_name":"nagisa112286","user":{"id":1549691336,"id_str":"1549691336","name":"\u2721\u3000\u306f\u3000\u308b\u3000\u306a\u3000\u2721","screen_name":"217Crew","location":"Tsubasa\u2765\uff65\u2022AXELA","url":null,"description":"\u308a\u3042\u57a2*:\u2721:*Assistant\u25e1\u0308\u20dd\u20dd\u20dd\u20dd\u20dd\u20dd\u20dd\u20dd\u2729*\u30db\u30b9\u30c8\u541b\u306e\u96a3\\( \u02c6o\u02c6 )\u2661","protected":false,"verified":false,"followers_count":149,"friends_count":145,"listed_count":0,"favourites_count":2047,"statuses_count":7295,"created_at":"Thu Jun 27 03:44:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662637932369473536\/plu5EmNT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662637932369473536\/plu5EmNT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1549691336\/1447078067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nagisa112286","name":"\u982d\u5272\u308c\u3066\u30de\u30b9(\u7b11)","id":1863875083,"id_str":"1863875083","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055666"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976253534208,"id_str":"663727976253534208","text":"Falling in love with Bryan was the best thing that's ever happened to me #winner","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1222846752,"id_str":"1222846752","name":"Jacqueline","screen_name":"Jackjacklloyd","location":null,"url":null,"description":"CSU-P Junior. AT major2\u20e30\u20e31\u20e37\u20e3. Family means everything to me. I'm an incredibly happy girlfriend to @Lupton60.","protected":false,"verified":false,"followers_count":55,"friends_count":130,"listed_count":1,"favourites_count":1168,"statuses_count":2748,"created_at":"Tue Feb 26 20:10:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655571553187270657\/lXryxLxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655571553187270657\/lXryxLxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1222846752\/1445135413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"winner","indices":[73,80]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055665"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976245125120,"id_str":"663727976245125120","text":"RT @yume100prince: \u30b7\u30e5\u30c6\u30eb\u300c\u661f\u3082\u3001\u96ea\u3082\u3001\u82b1\u3082\u2026\u4f55\u306b\u3060\u3063\u3066\u6c38\u9060\u306f\u306a\u3044\u3002\u3051\u308c\u3069\u3001\u541b\u3092\u898b\u3066\u308b\u3068\u2026\u300dhttps:\/\/t.co\/4PPOqsjWt4 #\u30b7\u30e5\u30c6\u30eb #\u5922100\u30ad\u30e3\u30e9\u7d39\u4ecb https:\/\/t.co\/Go7K7wCcVh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416596026,"id_str":"416596026","name":"xx\u30ec\u30a4\u30caxx","screen_name":"mamiy841","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":28,"listed_count":0,"favourites_count":3,"statuses_count":97,"created_at":"Sat Nov 19 22:22:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1652822153\/09_8.15_Sat___8___normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1652822153\/09_8.15_Sat___8___normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416596026\/1407126287","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:18 +0000 2015","id":663711464314638336,"id_str":"663711464314638336","text":"\u30b7\u30e5\u30c6\u30eb\u300c\u661f\u3082\u3001\u96ea\u3082\u3001\u82b1\u3082\u2026\u4f55\u306b\u3060\u3063\u3066\u6c38\u9060\u306f\u306a\u3044\u3002\u3051\u308c\u3069\u3001\u541b\u3092\u898b\u3066\u308b\u3068\u2026\u300dhttps:\/\/t.co\/4PPOqsjWt4 #\u30b7\u30e5\u30c6\u30eb #\u5922100\u30ad\u30e3\u30e9\u7d39\u4ecb https:\/\/t.co\/Go7K7wCcVh","source":"\u003ca href=\"http:\/\/tabtter.jp\" rel=\"nofollow\"\u003eTabtter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2857842834,"id_str":"2857842834","name":"\u5922\u738b\u56fd\u3068\u7720\u308c\u308b100\u4eba\u306e\u738b\u5b50\u69d8\uff5e\u516c\u5f0f","screen_name":"yume100prince","location":"\u5922\u738b\u56fd","url":"http:\/\/www.yume-100.com\/","description":"\u5973\u6027\u5411\u3051\u30b9\u30de\u30db\u30d1\u30ba\u30ebRPG\u300e\u5922\u738b\u56fd\u3068\u7720\u308c\u308b100\u4eba\u306e\u738b\u5b50\u69d8\u300f\u306e\u516c\u5f0fTwitter\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u266a\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306f #\u5922100 \n\u30a2\u30d7\u30ea\u306e\u60c5\u5831\u3084\u304a\u3057\u3089\u305b\u3092\u3064\u3076\u3084\u3044\u3066\u307e\u3059\uff01\u738b\u5b50\u69d8\u63cf\u304d\u304a\u308d\u3057\u30a4\u30e9\u30b9\u30c8\u3084\u65b0\u60c5\u5831\u3082\u2026\u2665 \u30a2\u30d7\u30ea\u306b\u95a2\u3059\u308b\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u3001\u304a\u624b\u6570\u3067\u3059\u304c\u30a2\u30d7\u30ea\u5185\u307e\u305f\u306f\u3001\u516c\u5f0f\u30b5\u30a4\u30c8\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u3088\u308a\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":138556,"friends_count":19033,"listed_count":1218,"favourites_count":2518,"statuses_count":4283,"created_at":"Thu Oct 16 10:25:52 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526729816100184064\/siTZa0-E.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526729816100184064\/siTZa0-E.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526727815094226945\/KgLVyNap_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526727815094226945\/KgLVyNap_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2857842834\/1446446735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":510,"favorite_count":926,"entities":{"hashtags":[{"text":"\u30b7\u30e5\u30c6\u30eb","indices":[61,66]},{"text":"\u5922100\u30ad\u30e3\u30e9\u7d39\u4ecb","indices":[67,77]}],"urls":[{"url":"https:\/\/t.co\/4PPOqsjWt4","expanded_url":"http:\/\/www.yume-100.com\/character\/profile\/ster.html","display_url":"yume-100.com\/character\/prof\u2026","indices":[37,60]}],"user_mentions":[],"symbols":[],"media":[{"id":663711463320649728,"id_str":"663711463320649728","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","url":"https:\/\/t.co\/Go7K7wCcVh","display_url":"pic.twitter.com\/Go7K7wCcVh","expanded_url":"http:\/\/twitter.com\/yume100prince\/status\/663711464314638336\/photo\/1","type":"photo","sizes":{"medium":{"w":544,"h":336,"resize":"fit"},"large":{"w":544,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711463320649728,"id_str":"663711463320649728","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","url":"https:\/\/t.co\/Go7K7wCcVh","display_url":"pic.twitter.com\/Go7K7wCcVh","expanded_url":"http:\/\/twitter.com\/yume100prince\/status\/663711464314638336\/photo\/1","type":"photo","sizes":{"medium":{"w":544,"h":336,"resize":"fit"},"large":{"w":544,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b7\u30e5\u30c6\u30eb","indices":[80,85]},{"text":"\u5922100\u30ad\u30e3\u30e9\u7d39\u4ecb","indices":[86,96]}],"urls":[{"url":"https:\/\/t.co\/4PPOqsjWt4","expanded_url":"http:\/\/www.yume-100.com\/character\/profile\/ster.html","display_url":"yume-100.com\/character\/prof\u2026","indices":[56,79]}],"user_mentions":[{"screen_name":"yume100prince","name":"\u5922\u738b\u56fd\u3068\u7720\u308c\u308b100\u4eba\u306e\u738b\u5b50\u69d8\uff5e\u516c\u5f0f","id":2857842834,"id_str":"2857842834","indices":[3,17]}],"symbols":[],"media":[{"id":663711463320649728,"id_str":"663711463320649728","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","url":"https:\/\/t.co\/Go7K7wCcVh","display_url":"pic.twitter.com\/Go7K7wCcVh","expanded_url":"http:\/\/twitter.com\/yume100prince\/status\/663711464314638336\/photo\/1","type":"photo","sizes":{"medium":{"w":544,"h":336,"resize":"fit"},"large":{"w":544,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663711464314638336,"source_status_id_str":"663711464314638336","source_user_id":2857842834,"source_user_id_str":"2857842834"}]},"extended_entities":{"media":[{"id":663711463320649728,"id_str":"663711463320649728","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6DzSVAAADaMv.jpg","url":"https:\/\/t.co\/Go7K7wCcVh","display_url":"pic.twitter.com\/Go7K7wCcVh","expanded_url":"http:\/\/twitter.com\/yume100prince\/status\/663711464314638336\/photo\/1","type":"photo","sizes":{"medium":{"w":544,"h":336,"resize":"fit"},"large":{"w":544,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663711464314638336,"source_status_id_str":"663711464314638336","source_user_id":2857842834,"source_user_id_str":"2857842834"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055663"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976249344003,"id_str":"663727976249344003","text":"\u30de\u30c4\u30b1\u30f3\u3068\u3044\u3048\u3070","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3681822433,"id_str":"3681822433","name":"\u30d6\u30ca\u30b7\u30e1\u30b8","screen_name":"mauve_capelite","location":null,"url":null,"description":"\u307c\u3061\u307c\u3061\u30c4\u30a4\u6e1b\u3057\u305f\u3044","protected":false,"verified":false,"followers_count":50,"friends_count":68,"listed_count":2,"favourites_count":409,"statuses_count":1195,"created_at":"Fri Sep 25 13:18:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663534833759457281\/e_8jP54s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663534833759457281\/e_8jP54s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3681822433\/1445052230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080055664"} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976228511744,"id_str":"663727976228511744","text":"with a chuckle following it. She walked into the darken passageway and headed to the detention room. @SlyRosier","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727622086647808,"in_reply_to_status_id_str":"663727622086647808","in_reply_to_user_id":3852923547,"in_reply_to_user_id_str":"3852923547","in_reply_to_screen_name":"DarkenEstella","user":{"id":3852923547,"id_str":"3852923547","name":"Estella Dolohov","screen_name":"DarkenEstella","location":"Ravenclaw ","url":null,"description":"Act what your mind says, do what your soul says. If your soul is dark, follow me.","protected":false,"verified":false,"followers_count":42,"friends_count":47,"listed_count":1,"favourites_count":3,"statuses_count":343,"created_at":"Sat Oct 03 14:17:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662859828566577152\/vm0K5Ioh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662859828566577152\/vm0K5Ioh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3852923547\/1446767629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SlyRosier","name":"Jason Rosier","id":3188365015,"id_str":"3188365015","indices":[101,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055659"} +{"delete":{"status":{"id":663727326107185152,"id_str":"663727326107185152","user_id":116271842,"user_id_str":"116271842"},"timestamp_ms":"1447080056026"}} +{"created_at":"Mon Nov 09 14:40:55 +0000 2015","id":663727976245129216,"id_str":"663727976245129216","text":"a lesson from the mother road: build with respect, empathy, sincerity and trust: @BMWMotorradUSA @alphabetsuccess https:\/\/t.co\/mO34lGgv13","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":802525778,"id_str":"802525778","name":"Phil Ventresca","screen_name":"PhilVentresca","location":"Biography","url":"http:\/\/www.amsconsulting.com\/biophilventresca.asp","description":"Founding Partner: Advanced Management Services, Inc. (AMS) Entrepreneur, Investor, Thought Leader, Speaker, Adventurist, Pilot","protected":false,"verified":false,"followers_count":4794,"friends_count":3980,"listed_count":53,"favourites_count":1371,"statuses_count":1959,"created_at":"Tue Sep 04 14:26:35 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661124494489178112\/j7Ejy1Pj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661124494489178112\/j7Ejy1Pj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/802525778\/1446459305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BMWMotorradUSA","name":"BMW Motorrad USA","id":1183552465,"id_str":"1183552465","indices":[81,96]},{"screen_name":"alphabetsuccess","name":"Tim Fargo","id":200583835,"id_str":"200583835","indices":[97,113]}],"symbols":[],"media":[{"id":663727969307881476,"id_str":"663727969307881476","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEk4WcAQm7Bc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEk4WcAQm7Bc.jpg","url":"https:\/\/t.co\/mO34lGgv13","display_url":"pic.twitter.com\/mO34lGgv13","expanded_url":"http:\/\/twitter.com\/PhilVentresca\/status\/663727976245129216\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727969307881476,"id_str":"663727969307881476","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEk4WcAQm7Bc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEk4WcAQm7Bc.jpg","url":"https:\/\/t.co\/mO34lGgv13","display_url":"pic.twitter.com\/mO34lGgv13","expanded_url":"http:\/\/twitter.com\/PhilVentresca\/status\/663727976245129216\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080055663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980435382272,"id_str":"663727980435382272","text":"RT @sam78925588: .\n\n \u062a\u0630\u0643\u0631\u0648\u0646 \u0627\u0644\u0648\u0631\u0642\u0629 \u0627\u0644\u0645\u0643\u062a\u0648\u0628 \u0641\u064a\u0647\u0627 \u0623\u062d\u0628 \u0627\u0644\u0645\u0637\u0631 \u0648\u0641\u0644\u0627\u0646\u061f \u0627\u0644\u0645\u0647\u0645 \u0645\u0646 \u064a\u0648\u0645\u0647\u0627 \u0645\u0627 \u0642\u0627\u0645 \u064a\u0637\u064a\u062d \u0639\u0644\u064a\u0646\u0627 \u0645\u0637\u0631 \u0627\u0644\u0644\u0647 \u0644\u0627\u064a\u0633\u0627\u0645\u062d\u0643\u0645 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":548586646,"id_str":"548586646","name":"\u0631\u064a\u0645 \u0645\u062d\u0645\u062f \u264c\ufe0f'","screen_name":"alhrae","location":"\u062c\u062f\u0629.","url":null,"description":"\u0635\u0653\u062f\u064a\u0642\u062a\u064a \u0628\u0639\u062f \u0631\u062d\u062d\u064a\u0644\u064a\u064c \u0627\u062d\u0641\u0638\u064a\u0646\u064a\u0650 \u0628\u0650\u0642\u0644\u0628\u0650\u0643\u0643 \u1d2e\u1d3a\u1d30\u1d3c\u1d3f\u1d35.","protected":false,"verified":false,"followers_count":2094,"friends_count":1581,"listed_count":1,"favourites_count":988,"statuses_count":17844,"created_at":"Sun Apr 08 17:31:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"0E1A14","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659021482094370816\/hxsruv5X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659021482094370816\/hxsruv5X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/548586646\/1435808541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 16:11:59 +0000 2015","id":660851791861518336,"id_str":"660851791861518336","text":".\n\n \u062a\u0630\u0643\u0631\u0648\u0646 \u0627\u0644\u0648\u0631\u0642\u0629 \u0627\u0644\u0645\u0643\u062a\u0648\u0628 \u0641\u064a\u0647\u0627 \u0623\u062d\u0628 \u0627\u0644\u0645\u0637\u0631 \u0648\u0641\u0644\u0627\u0646\u061f \u0627\u0644\u0645\u0647\u0645 \u0645\u0646 \u064a\u0648\u0645\u0647\u0627 \u0645\u0627 \u0642\u0627\u0645 \u064a\u0637\u064a\u062d \u0639\u0644\u064a\u0646\u0627 \u0645\u0637\u0631 \u0627\u0644\u0644\u0647 \u0644\u0627\u064a\u0633\u0627\u0645\u062d\u0643\u0645 .","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2885659164,"id_str":"2885659164","name":"\u0628\u0646\u0651\u062a\u0646 \u062d\u0644\u0648\u062a\u0651\u0646.. ","screen_name":"sam78925588","location":"\u062a\u0633\u0630\u0628\u064a\u0627 \u0627\u0633\u0637\u0646\u0628\u0648\u0644","url":null,"description":"\u0645\u0632\u062a\u0646 \u0645\u0646 \u0627\u0644\u0645\u0632\u0627\u0645\u064a\u0632 \u0645\u0647\u0643\u0631\u064a\u0646\u0647\u0627 \u0627\u0644\u062c\u062d\u0644\u0637 20 \u0645\u0644\u064a\u0648\u0646 \u0645\u0631\u0647 \u062d\u0648\u0648\u0648\u0648\u0648\u0648\u0648\u0648\u0633\u0628\u064a \u0627\u0644\u0644\u0647 \u0639\u0644\u0627\u0647\u0645","protected":false,"verified":false,"followers_count":11847,"friends_count":91,"listed_count":6,"favourites_count":145,"statuses_count":15272,"created_at":"Sat Nov 01 00:17:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532289996124733440\/leIHUWEu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532289996124733440\/leIHUWEu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885659164\/1417745736","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sam78925588","name":"\u0628\u0646\u0651\u062a\u0646 \u062d\u0644\u0648\u062a\u0651\u0646.. ","id":2885659164,"id_str":"2885659164","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080056662"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418637824,"id_str":"663727980418637824","text":"RT @blockb_komi: DJ \uc9c0\ucf54(ZICO) '\uc2a4\ud30c\ud074\ub9c1 War\ud130'[1\ud68c]\nhttps:\/\/t.co\/CgF9w3SQqN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2995856086,"id_str":"2995856086","name":"\u20bauNo(\uc6b0\ub178)","screen_name":"gayjiho","location":"I adore seven nerds.","url":"https:\/\/twitter.com\/ZICO92\/status\/447619234106187776","description":"My angelic maknae @bangtanfect \u2728\u3164 Team Red Tiger [@ZICO92] \u3164 \u3164 \u3164 \u3164 Zico: Derping with swag since 1992.","protected":false,"verified":false,"followers_count":1443,"friends_count":418,"listed_count":6,"favourites_count":43420,"statuses_count":39601,"created_at":"Sat Jan 24 13:21:40 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634414638931816449\/lMga6GDa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634414638931816449\/lMga6GDa.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663423927155208192\/KMDTmxPG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663423927155208192\/KMDTmxPG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995856086\/1447007451","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:08 +0000 2015","id":663725260101955584,"id_str":"663725260101955584","text":"DJ \uc9c0\ucf54(ZICO) '\uc2a4\ud30c\ud074\ub9c1 War\ud130'[1\ud68c]\nhttps:\/\/t.co\/CgF9w3SQqN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1960583431,"id_str":"1960583431","name":"\ube14\ub77d\ube44\uc601\uc0c1\uacf5\uc720\ucf54\ubbf8","screen_name":"blockb_komi","location":"\ub2e4\uc2dc \ub3cc\uc544\ubd10\ub3c4 \ub108\ub97c \uc751\uc6d0\ud55c\uac74 \ud6c4\ud68c\uac00 \uc5c6\ub354\ub77c","url":"https:\/\/www.youtube.com\/channel\/UCrQNKVCV8YTzX2F7HfK-B_Q","description":"\ube14\ub77d\ube44 \/ \ube14\ub77d\ube44 \uc601\uc0c1 \/ 131014\uc2dc\uc791 \/ @pyo_komi","protected":false,"verified":false,"followers_count":10743,"friends_count":15,"listed_count":38,"favourites_count":25,"statuses_count":10011,"created_at":"Mon Oct 14 12:05:02 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"EBC400","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588707187934924800\/RwFhCjbQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588707187934924800\/RwFhCjbQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1960583431\/1429026797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":19,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CgF9w3SQqN","expanded_url":"https:\/\/www.youtube.com\/playlist?list=PL8jfdosLDe2jd_X_5E7G16NjB4oT-XraG","display_url":"youtube.com\/playlist?list=\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CgF9w3SQqN","expanded_url":"https:\/\/www.youtube.com\/playlist?list=PL8jfdosLDe2jd_X_5E7G16NjB4oT-XraG","display_url":"youtube.com\/playlist?list=\u2026","indices":[45,68]}],"user_mentions":[{"screen_name":"blockb_komi","name":"\ube14\ub77d\ube44\uc601\uc0c1\uacf5\uc720\ucf54\ubbf8","id":1960583431,"id_str":"1960583431","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980422815744,"id_str":"663727980422815744","text":"...\u0443\u0436\u0435 \u043f\u043e\u043b\u044e\u0431\u0438\u0432\u0448\u0435\u0435\u0441\u044f \u043c\u043d\u043e\u0433\u0438\u043c \u0431\u043b\u044e\u0434\u043e \u041a\u0443\u0440\u0438\u043d\u0430\u044f \u043f\u043e\u0434\u0436\u0430\u0440\u043a\u0430 \u0441 \u043e\u0432\u043e\u0449\u0430\u043c\u0438...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263819222,"id_str":"1263819222","name":"MillerBertha","screen_name":"MillerBertha1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":15,"listed_count":0,"favourites_count":0,"statuses_count":53316,"created_at":"Wed Mar 13 07:36:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3681450873\/cb2b47feda4ec0a3babe6a7ca4831ca0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3681450873\/cb2b47feda4ec0a3babe6a7ca4831ca0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080056659"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980422787072,"id_str":"663727980422787072","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3449213657,"id_str":"3449213657","name":"avery schowalter","screen_name":"averypsp54","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":0,"listed_count":5,"favourites_count":15866,"statuses_count":16715,"created_at":"Wed Aug 26 17:40:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636650733052391424\/SOkkp7-__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636650733052391424\/SOkkp7-__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3449213657\/1440624322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1735,"favorite_count":1073,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056659"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980414410752,"id_str":"663727980414410752","text":"RT @rpdiego_: se me durmi\u00f3 la wa nos vimos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1544338962,"id_str":"1544338962","name":"flor","screen_name":"srpyvn","location":"tigre","url":"https:\/\/instagram.com\/florcasenave","description":"tu vieja","protected":false,"verified":false,"followers_count":1378,"friends_count":1026,"listed_count":1,"favourites_count":14319,"statuses_count":28419,"created_at":"Mon Jun 24 23:53:07 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122622570\/ff597f9b6f1ee5385e6ca28a5ea69028.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122622570\/ff597f9b6f1ee5385e6ca28a5ea69028.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663435935900688384\/NoMXwYi0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663435935900688384\/NoMXwYi0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1544338962\/1447010413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:07:46 +0000 2015","id":663598837332865024,"id_str":"663598837332865024","text":"se me durmi\u00f3 la wa nos vimos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1537848672,"id_str":"1537848672","name":"\u0628\u0631\u062c","screen_name":"rpdiego_","location":"Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":263,"friends_count":140,"listed_count":1,"favourites_count":2724,"statuses_count":22557,"created_at":"Sat Jun 22 03:47:30 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661417321194483712\/wUTzDHxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661417321194483712\/wUTzDHxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1537848672\/1429456119","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rpdiego_","name":"\u0628\u0631\u062c","id":1537848672,"id_str":"1537848672","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080056657"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452159488,"id_str":"663727980452159488","text":"RT ___MxGxWxVx___: \u2605\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n\u2605\uff29\uff26\n\n\u2605\uff39\uff2f\uff35\n\n\u2605\uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\n\u2605#F4F\n\n\u2605#MGWV\n\n\u2605#FollowTrick\n\n\u2605#TeamFollowBack\n\n\u2605#AnotherFollowTrain\n\n\u2605#FOLLOW \u261c~(\u25cf\u032e\u0303\u2022\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3983911643,"id_str":"3983911643","name":"Nitu Rai","screen_name":"nitusexy","location":"In your eye.","url":null,"description":"Iam sexy, Follow Me.","protected":false,"verified":false,"followers_count":1496,"friends_count":7,"listed_count":129,"favourites_count":0,"statuses_count":53202,"created_at":"Sun Oct 18 02:38:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659590325929930752\/8DztY2VH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659590325929930752\/8DztY2VH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"F4F","indices":[54,58]},{"text":"MGWV","indices":[61,66]},{"text":"FollowTrick","indices":[69,81]},{"text":"TeamFollowBack","indices":[84,99]},{"text":"AnotherFollowTrain","indices":[102,121]},{"text":"FOLLOW","indices":[124,131]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980443774976,"id_str":"663727980443774976","text":"RT @honestonestor: Entrevista a Cristina a\u00f1o 1996, revista Noticias.\n\n\"Es oficialista, pero odia al gobierno de Menem\"\n\n#Coherencia https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3999948677,"id_str":"3999948677","name":"Dickinson Emily","screen_name":"DickinsonEmily3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":65,"friends_count":240,"listed_count":0,"favourites_count":289,"statuses_count":391,"created_at":"Tue Oct 20 06:06:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656511170086621184\/qsUuXThk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656511170086621184\/qsUuXThk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:07:46 +0000 2015","id":663417643182006273,"id_str":"663417643182006273","text":"Entrevista a Cristina a\u00f1o 1996, revista Noticias.\n\n\"Es oficialista, pero odia al gobierno de Menem\"\n\n#Coherencia https:\/\/t.co\/2BNyRiYz3i","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275023420,"id_str":"275023420","name":"Honesto Nestor","screen_name":"honestonestor","location":null,"url":null,"description":"Chavez me abrio los ojos, Cristina la mente y Maradona el corazon.","protected":false,"verified":false,"followers_count":19428,"friends_count":21342,"listed_count":76,"favourites_count":794,"statuses_count":15355,"created_at":"Thu Mar 31 13:47:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/225935310\/cristina.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/225935310\/cristina.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625841283282694145\/UjH3Boge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625841283282694145\/UjH3Boge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275023420\/1438784539","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":63,"entities":{"hashtags":[{"text":"Coherencia","indices":[101,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663417597464047616,"id_str":"663417597464047616","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","url":"https:\/\/t.co\/2BNyRiYz3i","display_url":"pic.twitter.com\/2BNyRiYz3i","expanded_url":"http:\/\/twitter.com\/honestonestor\/status\/663417643182006273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":732,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663417597464047616,"id_str":"663417597464047616","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","url":"https:\/\/t.co\/2BNyRiYz3i","display_url":"pic.twitter.com\/2BNyRiYz3i","expanded_url":"http:\/\/twitter.com\/honestonestor\/status\/663417643182006273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":732,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Coherencia","indices":[120,131]}],"urls":[],"user_mentions":[{"screen_name":"honestonestor","name":"Honesto Nestor","id":275023420,"id_str":"275023420","indices":[3,17]}],"symbols":[],"media":[{"id":663417597464047616,"id_str":"663417597464047616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","url":"https:\/\/t.co\/2BNyRiYz3i","display_url":"pic.twitter.com\/2BNyRiYz3i","expanded_url":"http:\/\/twitter.com\/honestonestor\/status\/663417643182006273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":732,"h":1024,"resize":"fit"}},"source_status_id":663417643182006273,"source_status_id_str":"663417643182006273","source_user_id":275023420,"source_user_id_str":"275023420"}]},"extended_entities":{"media":[{"id":663417597464047616,"id_str":"663417597464047616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTuyjqWcAAxHyM.jpg","url":"https:\/\/t.co\/2BNyRiYz3i","display_url":"pic.twitter.com\/2BNyRiYz3i","expanded_url":"http:\/\/twitter.com\/honestonestor\/status\/663417643182006273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"medium":{"w":600,"h":839,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":732,"h":1024,"resize":"fit"}},"source_status_id":663417643182006273,"source_status_id_str":"663417643182006273","source_user_id":275023420,"source_user_id_str":"275023420"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080056664"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980426846208,"id_str":"663727980426846208","text":"@mtp_emo \u5e30\u308c\u306a\u3044\u3067\u3059\u30fc\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727531376250881,"in_reply_to_status_id_str":"663727531376250881","in_reply_to_user_id":2381874080,"in_reply_to_user_id_str":"2381874080","in_reply_to_screen_name":"mtp_emo","user":{"id":3184095889,"id_str":"3184095889","name":"\u3048\u3050\u3061","screen_name":"2HjSMqDRRXQimuV","location":"\u9759\u5ca1\u770c","url":null,"description":"\u5bcc\u58eb\u9ad8\u6c34\u6cf3\u90e8\u2192\u9759\u5ca1\u5927\u5b66\u4eba\u6587\u793e\u4f1a\u79d1\u5b66\u90e8\u7d4c\u6e08\u5b66\u79d1 JC\u7d44\u7e54\u90e8\u30d5\u30ea\u30de\u62c5\u5f53\/\u6d77\u4eba\u4f1a","protected":false,"verified":false,"followers_count":206,"friends_count":199,"listed_count":0,"favourites_count":1257,"statuses_count":1782,"created_at":"Sun May 03 11:34:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646284527476715521\/9Y0Faa33_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646284527476715521\/9Y0Faa33_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184095889\/1440205565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtp_emo","name":"\u307f\u304f","id":2381874080,"id_str":"2381874080","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056660"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439474176,"id_str":"663727980439474176","text":"@dicky_bodo \u5f53\u305f\u308a\u524d\u3084\u308d\u4e00\u7dd2\u306bSOF\u884c\u3063\u305f\u4ef2\u3084\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727884331122689,"in_reply_to_status_id_str":"663727884331122689","in_reply_to_user_id":2197345573,"in_reply_to_user_id_str":"2197345573","in_reply_to_screen_name":"dicky_bodo","user":{"id":3000446264,"id_str":"3000446264","name":"\u3058\u3087\u3058\u3087 11\/12 HNIB\u4ed9\u53f0","screen_name":"jojo_1126j","location":null,"url":null,"description":"\u3044\u3063\u3064\u3082\u7b11\u9854\u3068\u8a00\u308f\u308c\u308b21\u6b73\u3002CF\/CL\/NOISE\/9mm\/HNIB\/ARTEMA\/FACT\/TTHT \u3044\u308d\u3093\u306a\u30b8\u30e3\u30f3\u30eb\u8074\u304f\u3002 \u3088\u304f\u4ed9\u53f0\u306e\u30e9\u30a4\u30d6\u306b\u51fa\u6ca1\u3002\u30e9\u30a4\u30d6\u3001\u30d3\u30fc\u30eb\u3001\u30d5\u30a7\u30b9\u5927\u597d\u304d\u30024\u6708\u304b\u3089\u5bae\u57ce\u770c\u2192\u6771\u4eac \u306b\u306a\u308a\u307e\u3057\u305f\u0669( \u2022\u0300\u03c9\u2022\u0301 )\ufeed","protected":false,"verified":false,"followers_count":498,"friends_count":564,"listed_count":9,"favourites_count":978,"statuses_count":18683,"created_at":"Thu Jan 29 03:50:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662780858839896064\/TNFSjSlm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662780858839896064\/TNFSjSlm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3000446264\/1445727775","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dicky_bodo","name":"\u3057\u3087\u30fc","id":2197345573,"id_str":"2197345573","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980447944705,"id_str":"663727980447944705","text":"\u062a\u0648\u0631\u0637\u062a \u0642\u0644\u0628\u064a \u0641 \u062d\u0628\u0643 \u062a\u0648\u0631\u0637\u062a \ud83c\udfa7\ud83d\udc95\ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1445558370,"id_str":"1445558370","name":"\u2728s\u03c3\u043c\u026a","screen_name":"AL_3aneDa7","location":" ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u064a\u0622\u0627\u0631\u0628\u064e \u062a\u0648\u0628\u06be\u064e\u06c2 .. \u062b\u0645\u0651 \u0645\u0648\u062a\u064c .. \u062b\u0645\u0651 \u062c\u0646\u06be\u0653\u06c1\u0652 \u2661","protected":false,"verified":false,"followers_count":249,"friends_count":29,"listed_count":0,"favourites_count":135,"statuses_count":16257,"created_at":"Tue May 21 06:00:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642021493656842240\/iKw3nhym_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642021493656842240\/iKw3nhym_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1445558370\/1398634247","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080056665"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439580672,"id_str":"663727980439580672","text":"@binttilovestar @ZoedeGroot0 @OmgItsAnUnicorn weet ik ;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727901938991104,"in_reply_to_status_id_str":"663727901938991104","in_reply_to_user_id":3043010992,"in_reply_to_user_id_str":"3043010992","in_reply_to_screen_name":"binttilovestar","user":{"id":3397372895,"id_str":"3397372895","name":"Lisanne","screen_name":"Lisannuhhh","location":"The Netherlands","url":null,"description":"Youtube verslaafde \u2665| :3 | Handbal :) | #TheLegendOfZelda","protected":false,"verified":false,"followers_count":36,"friends_count":94,"listed_count":1,"favourites_count":1061,"statuses_count":1156,"created_at":"Fri Jul 31 16:52:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646312765846618114\/7R2efcuO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646312765846618114\/7R2efcuO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3397372895\/1442933041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"binttilovestar","name":"\u00df\u00a1n\u314f\u314f\u00a1 \u2665","id":3043010992,"id_str":"3043010992","indices":[0,15]},{"screen_name":"ZoedeGroot0","name":"ZoedeGroot ^3^","id":3376999287,"id_str":"3376999287","indices":[16,28]},{"screen_name":"OmgItsAnUnicorn","name":"Sonja Lisa :')","id":2940075868,"id_str":"2940075868","indices":[29,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418482176,"id_str":"663727980418482176","text":"@mayu_yamayu 12\u670811\u65e5\uff01\u4f11\u307f\u304c\u3042\u3048\u3070\u305c\u3072\u5411\u3053\u3046\u3067\u4f1a\u304a\u3046\uff01","source":"\u003ca href=\"http:\/\/sinproject.net\/tweecha\/\" rel=\"nofollow\"\u003etweecha for android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722827946725376,"in_reply_to_status_id_str":"663722827946725376","in_reply_to_user_id":147898892,"in_reply_to_user_id_str":"147898892","in_reply_to_screen_name":"mayu_yamayu","user":{"id":25974479,"id_str":"25974479","name":"\u3066\u3043\u30fc\u3084\u307e","screen_name":"rumando","location":"\u5927\u962a\u90fd\u306e\u306f\u3057\u3063\u3053","url":"http:\/\/balloondam.blogspot.jp\/","description":"\u3088\u308a\u3088\u3044\u4eba\u751f\u3092\u751f\u304d\u308b\u3002\u305d\u308c\u3060\u3051\u3002","protected":false,"verified":false,"followers_count":238,"friends_count":406,"listed_count":1,"favourites_count":1787,"statuses_count":18088,"created_at":"Mon Mar 23 08:58:45 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3786544445\/167a8833d47b37675db0fd6a26eea1e5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3786544445\/167a8833d47b37675db0fd6a26eea1e5_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mayu_yamayu","name":"\u3084\u307e\u3086","id":147898892,"id_str":"147898892","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439429120,"id_str":"663727980439429120","text":"RT @kyohei0901: \u96ea\u56fd\u3078\u5e30\u308a\u307e\u3059\uff01\uff01\n\u300c\u30b5\u30f3\u30c7\u30fc\u30d6\u30e9\u30f3\u30c1\u30af\u30e9\u30b7\u30c3\u30af&\u63e1\u529b\u300dhttps:\/\/t.co\/U9uBqyTk46 https:\/\/t.co\/haentFjQKv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3049956271,"id_str":"3049956271","name":"makichan","screen_name":"m2015k2015y","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":5,"listed_count":1,"favourites_count":361,"statuses_count":132,"created_at":"Sat Feb 28 14:11:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625700384804204544\/h8w5gBcW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625700384804204544\/h8w5gBcW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3049956271\/1438013476","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:09:36 +0000 2015","id":663569098052268033,"id_str":"663569098052268033","text":"\u96ea\u56fd\u3078\u5e30\u308a\u307e\u3059\uff01\uff01\n\u300c\u30b5\u30f3\u30c7\u30fc\u30d6\u30e9\u30f3\u30c1\u30af\u30e9\u30b7\u30c3\u30af&\u63e1\u529b\u300dhttps:\/\/t.co\/U9uBqyTk46 https:\/\/t.co\/haentFjQKv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941606797,"id_str":"941606797","name":"\u53cd\u7530\u606d\u5e73 Kyohei Sorita","screen_name":"kyohei0901","location":"Russia, Japan","url":"http:\/\/soritakyohei.com","description":"'94~The official Twitter news feed of Japanese pianist. \u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0422\u0432\u0438\u0442\u0435\u0440. \u042f\u043f\u043e\u043d\u0441\u043a\u0438\u0439 \u043f\u0438\u0430\u043d\u0438\u0441\u0442. \u65e5\u672c\u30b3\u30ed\u30e0\u30d3\u30a2\u304b\u3089\u300e\u30ea\u30b9\u30c8\u300f \u767a\u58f2\u4e2d!! #Vine #\u30d4\u30a2\u30ce\u7537\u5b50","protected":false,"verified":true,"followers_count":1732,"friends_count":177,"listed_count":29,"favourites_count":1847,"statuses_count":3897,"created_at":"Sun Nov 11 15:58:30 +0000 2012","utc_offset":10800,"time_zone":"Volgograd","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599606471660326912\/tJ0FxnUW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599606471660326912\/tJ0FxnUW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941606797\/1443240473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4b03568897fabffa","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4b03568897fabffa.json","place_type":"city","name":"\u6210\u7530\u5e02","full_name":"\u5343\u8449\u770c \u6210\u7530\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[140.252692,35.717569],[140.252692,35.899879],[140.473643,35.899879],[140.473643,35.717569]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":24,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U9uBqyTk46","expanded_url":"https:\/\/www.facebook.com\/KyoheiSorita\/posts\/907967629284372","display_url":"facebook.com\/KyoheiSorita\/p\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663569054699884544,"id_str":"663569054699884544","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663569054699884544,"id_str":"663569054699884544","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663569054704074752,"id_str":"663569054704074752","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih2UAAAFyh8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih2UAAAFyh8.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663569054989287424,"id_str":"663569054989287424","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ii6UAAARSDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ii6UAAARSDT.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663569055136088064,"id_str":"663569055136088064","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ijdUAAAvtJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ijdUAAAvtJV.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":1024,"h":636,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/U9uBqyTk46","expanded_url":"https:\/\/www.facebook.com\/KyoheiSorita\/posts\/907967629284372","display_url":"facebook.com\/KyoheiSorita\/p\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"kyohei0901","name":"\u53cd\u7530\u606d\u5e73 Kyohei Sorita","id":941606797,"id_str":"941606797","indices":[3,14]}],"symbols":[],"media":[{"id":663569054699884544,"id_str":"663569054699884544","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663569098052268033,"source_status_id_str":"663569098052268033","source_user_id":941606797,"source_user_id_str":"941606797"}]},"extended_entities":{"media":[{"id":663569054699884544,"id_str":"663569054699884544","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih1UEAA-Npv.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663569098052268033,"source_status_id_str":"663569098052268033","source_user_id":941606797,"source_user_id_str":"941606797"},{"id":663569054704074752,"id_str":"663569054704074752","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ih2UAAAFyh8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ih2UAAAFyh8.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663569098052268033,"source_status_id_str":"663569098052268033","source_user_id":941606797,"source_user_id_str":"941606797"},{"id":663569054989287424,"id_str":"663569054989287424","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ii6UAAARSDT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ii6UAAARSDT.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663569098052268033,"source_status_id_str":"663569098052268033","source_user_id":941606797,"source_user_id_str":"941606797"},{"id":663569055136088064,"id_str":"663569055136088064","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV4ijdUAAAvtJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV4ijdUAAAvtJV.jpg","url":"https:\/\/t.co\/haentFjQKv","display_url":"pic.twitter.com\/haentFjQKv","expanded_url":"http:\/\/twitter.com\/kyohei0901\/status\/663569098052268033\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":372,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":1024,"h":636,"resize":"fit"}},"source_status_id":663569098052268033,"source_status_id_str":"663569098052268033","source_user_id":941606797,"source_user_id_str":"941606797"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980426825728,"id_str":"663727980426825728","text":"RT @ohmylifeposts: I didn't change, I grew up. You should try it sometime.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899393393,"id_str":"2899393393","name":"Marjorie Legaspi","screen_name":"LMarjorieee","location":null,"url":null,"description":"I'm the Girl you'll never be \u2764\u2764\u2764","protected":false,"verified":false,"followers_count":89,"friends_count":26,"listed_count":0,"favourites_count":10006,"statuses_count":5593,"created_at":"Fri Nov 14 12:35:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653394417139609601\/4lCcnqe3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653394417139609601\/4lCcnqe3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899393393\/1418125844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:23 +0000 2015","id":663722555996418048,"id_str":"663722555996418048","text":"I didn't change, I grew up. You should try it sometime.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520236079,"id_str":"520236079","name":"story of my life","screen_name":"ohmylifeposts","location":null,"url":null,"description":"\u2800\u2800\u2800\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u2800\u2800\u2800\u2800\u2800 \u3164\u3164\u2800 turn on notifications \u2717\u2665O\u3164\u3164\u3164\u3164\u3164\u3164\u3164\u2800","protected":false,"verified":false,"followers_count":173322,"friends_count":43261,"listed_count":105,"favourites_count":1451,"statuses_count":16038,"created_at":"Sat Mar 10 09:05:57 +0000 2012","utc_offset":28800,"time_zone":"Asia\/Manila","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176505761\/gV4hNT2U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176505761\/gV4hNT2U.jpeg","profile_background_tile":true,"profile_link_color":"252F33","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546982902840307712\/hS8xci65_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546982902840307712\/hS8xci65_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520236079\/1427544852","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":58,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ohmylifeposts","name":"story of my life","id":520236079,"id_str":"520236079","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056660"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980431192065,"id_str":"663727980431192065","text":"@SoloExMachina Who told you this? #BasetBallJones","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663694336777977856,"in_reply_to_status_id_str":"663694336777977856","in_reply_to_user_id":24872724,"in_reply_to_user_id_str":"24872724","in_reply_to_screen_name":"SoloExMachina","user":{"id":3092148387,"id_str":"3092148387","name":"faster34me","screen_name":"faster34me","location":null,"url":null,"description":"Reports of my premature demise have been greatly exaggerated!","protected":false,"verified":false,"followers_count":149,"friends_count":219,"listed_count":6,"favourites_count":1524,"statuses_count":3585,"created_at":"Sun Mar 15 20:57:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577268138418446336\/HOUat1Rg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577268138418446336\/HOUat1Rg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092148387\/1426466461","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BasetBallJones","indices":[34,49]}],"urls":[],"user_mentions":[{"screen_name":"SoloExMachina","name":"Yung Metaphysics","id":24872724,"id_str":"24872724","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056661"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980431175680,"id_str":"663727980431175680","text":"RT @reem_adeeb: \u0646\u0633\u0639\u062f \u0628\u0645\u0631\u0648\u0631\u0643\u0645 \u0628\u0643\u0631\u0649 \u2728#juc https:\/\/t.co\/WNIr4ZIv6h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":430856719,"id_str":"430856719","name":"WEAM \u2728","screen_name":"WMG95","location":"SA - jubail ","url":null,"description":"Interior Design Student @JUC \u2b50\ufe0f \u0627\u0644\u062d\u064a\u0627\u0629 \u0628\u0633\u064a\u0637\u0629 \u060c\u0644\u0627\u062a\u0642\u062a\u0644\u0648\u0647\u0627 \u0628\u062a\u0643\u0644\u0641\u0643\u0645 ~ @design_juc_club","protected":false,"verified":false,"followers_count":410,"friends_count":371,"listed_count":1,"favourites_count":839,"statuses_count":10963,"created_at":"Wed Dec 07 17:00:08 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453981548593688577\/Le_ar8Er.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453981548593688577\/Le_ar8Er.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590444673941934080\/sz2JA61R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590444673941934080\/sz2JA61R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430856719\/1427885870","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:34:53 +0000 2015","id":663681158778101760,"id_str":"663681158778101760","text":"\u0646\u0633\u0639\u062f \u0628\u0645\u0631\u0648\u0631\u0643\u0645 \u0628\u0643\u0631\u0649 \u2728#juc https:\/\/t.co\/WNIr4ZIv6h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":389999170,"id_str":"389999170","name":"\u0631\u064a\u0645 \u0627\u0644\u0632\u0627\u0645\u0644","screen_name":"reem_adeeb","location":"\u0627\u0644\u062c\u0628\u064a\u0644 \u0627\u0644\u0635\u0646\u0627\u0639\u064a\u0629 ","url":null,"description":"Interior Design student @JUC instagram;Reem_adeeb \u0625\u0628\u0652\u0646\u064e\u0629\u064c \u0644\u0644\u062e\u064e\u064a\u0627\u0644.. \u0648\u064e\u0644\u064a \u0648\u064e\u0631\u064a\u062f\u064c \u0645\u0650\u0644\u0643\u064c \u0644\u064e\u0647","protected":false,"verified":false,"followers_count":323,"friends_count":212,"listed_count":0,"favourites_count":59,"statuses_count":5361,"created_at":"Thu Oct 13 09:32:12 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/804206546\/6d135dcda0093968d64559c959dada49.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/804206546\/6d135dcda0093968d64559c959dada49.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587805799562379264\/Qn-Yq6CU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587805799562379264\/Qn-Yq6CU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/389999170\/1398081691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"juc","indices":[19,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663681141711441924,"id_str":"663681141711441924","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","url":"https:\/\/t.co\/WNIr4ZIv6h","display_url":"pic.twitter.com\/WNIr4ZIv6h","expanded_url":"http:\/\/twitter.com\/reem_adeeb\/status\/663681158778101760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"},"large":{"w":1024,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663681141711441924,"id_str":"663681141711441924","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","url":"https:\/\/t.co\/WNIr4ZIv6h","display_url":"pic.twitter.com\/WNIr4ZIv6h","expanded_url":"http:\/\/twitter.com\/reem_adeeb\/status\/663681158778101760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"},"large":{"w":1024,"h":554,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"juc","indices":[35,39]}],"urls":[],"user_mentions":[{"screen_name":"reem_adeeb","name":"\u0631\u064a\u0645 \u0627\u0644\u0632\u0627\u0645\u0644","id":389999170,"id_str":"389999170","indices":[3,14]}],"symbols":[],"media":[{"id":663681141711441924,"id_str":"663681141711441924","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","url":"https:\/\/t.co\/WNIr4ZIv6h","display_url":"pic.twitter.com\/WNIr4ZIv6h","expanded_url":"http:\/\/twitter.com\/reem_adeeb\/status\/663681158778101760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"},"large":{"w":1024,"h":554,"resize":"fit"}},"source_status_id":663681158778101760,"source_status_id_str":"663681158778101760","source_user_id":389999170,"source_user_id_str":"389999170"}]},"extended_entities":{"media":[{"id":663681141711441924,"id_str":"663681141711441924","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXee2fWEAQUi4h.jpg","url":"https:\/\/t.co\/WNIr4ZIv6h","display_url":"pic.twitter.com\/WNIr4ZIv6h","expanded_url":"http:\/\/twitter.com\/reem_adeeb\/status\/663681158778101760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":324,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":183,"resize":"fit"},"large":{"w":1024,"h":554,"resize":"fit"}},"source_status_id":663681158778101760,"source_status_id_str":"663681158778101760","source_user_id":389999170,"source_user_id_str":"389999170"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080056661"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980443660288,"id_str":"663727980443660288","text":"#1\u3044\u3044\u306d\u3054\u3068\u306b\u30b9\u30c8\u30ec\u30fc\u30c8\u306b\u597d\u304d\u306a\u30bf\u30a4\u30d7\u8a00\u3044\u307e\u3059 \n\u6687\u3064\u3076\u3057","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3177607915,"id_str":"3177607915","name":"\uf8ff \u304b\u3043\u3068 \uf8ff","screen_name":"kaitan_zu","location":null,"url":null,"description":"\u767e\u5408\u5927\u597d\u304d\u91ce\u90ce(\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u3051\u3044\u304a\u3093\u3001\u30c7\u30ec\u30de\u30b9\u3001\u30cd\u30ae\u307e\u306a\u3069\u306a\u3069)\u305f\u307e\u306b\u9375\u57a2\u3002\u8da3\u5473\u5984\u60f3\u3002\u6642\u305f\u307e\u652f\u90e8\u306b\u3076\u3093\u6295\u3052\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u306f\u57fa\u672c\u7684\u306b\u8fd4\u3057\u307e\u305b\u3093\u304c\u60aa\u3057\u304b\u3089\u305a\u3002","protected":false,"verified":false,"followers_count":41,"friends_count":49,"listed_count":0,"favourites_count":2167,"statuses_count":3020,"created_at":"Mon Apr 27 07:35:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627130040619175937\/5heE0-cO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627130040619175937\/5heE0-cO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3177607915\/1430313370","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1\u3044\u3044\u306d\u3054\u3068\u306b\u30b9\u30c8\u30ec\u30fc\u30c8\u306b\u597d\u304d\u306a\u30bf\u30a4\u30d7\u8a00\u3044\u307e\u3059","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056664"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418437120,"id_str":"663727980418437120","text":"RT @SalavitaV: \u0e40\u0e2a\u0e35\u0e48\u0e22\u0e01\u0e31\u0e19\u0e15\u0e4c\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e2a\u0e19\u0e48\u0e2b\u0e4c\u0e41\u0e23\u0e07\u0e2a\u0e38\u0e14\u0e46 #BamBam #GOT7 #JackBam #MarkBam #NiorBam #YugBam #allbam https:\/\/t.co\/eSg5NkOYmV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3371318353,"id_str":"3371318353","name":"\u0e1a\u0e31\u0e21\u0e02\u0e2d\u0e07\u0e21\u0e31\u0e04\u30b7","screen_name":"pang_0809","location":"\u0e14\u0e32\u0e27\u0e2d\u0e31\u0e07\u0e04\u0e32\u0e23","url":null,"description":"MB9397 Forever \u30b7\u2764","protected":false,"verified":false,"followers_count":6,"friends_count":140,"listed_count":0,"favourites_count":343,"statuses_count":2152,"created_at":"Fri Aug 28 14:15:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657579914388881408\/Uip3xgoV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657579914388881408\/Uip3xgoV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3371318353\/1444458265","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 14:20:05 +0000 2015","id":661910791348580352,"id_str":"661910791348580352","text":"\u0e40\u0e2a\u0e35\u0e48\u0e22\u0e01\u0e31\u0e19\u0e15\u0e4c\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e2a\u0e19\u0e48\u0e2b\u0e4c\u0e41\u0e23\u0e07\u0e2a\u0e38\u0e14\u0e46 #BamBam #GOT7 #JackBam #MarkBam #NiorBam #YugBam #allbam https:\/\/t.co\/eSg5NkOYmV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2749333499,"id_str":"2749333499","name":"\u273f\uff65Gotta be U \uff65\u273f","screen_name":"SalavitaV","location":" ","url":null,"description":"GOT7 || BIGBANG || 2NE1 || iKON :: \u0e02\u0e2d\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e40\u0e25\u0e47\u0e01\u0e46\u0e44\u0e27\u0e49\u0e23\u0e30\u0e1a\u0e32\u0e22 :: \u0e04\u0e34\u0e14\u0e14\u0e35\u0e46\u0e01\u0e48\u0e2d\u0e19\u0e1f\u0e2d\u0e25 :: \n\u0e16\u0e49\u0e32\u0e44\u0e14\u0e49\u0e23\u0e32\u0e21\u0e32 \u0e08\u0e30\u0e43\u0e0a\u0e49\u0e23\u0e39\u0e1b\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07 1\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c\u0e40\u0e25\u0e22","protected":false,"verified":false,"followers_count":302,"friends_count":941,"listed_count":2,"favourites_count":2066,"statuses_count":15194,"created_at":"Thu Aug 21 18:26:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655463829367689216\/arrKeCa__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655463829367689216\/arrKeCa__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2749333499\/1416833372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":16,"entities":{"hashtags":[{"text":"BamBam","indices":[30,37]},{"text":"GOT7","indices":[38,43]},{"text":"JackBam","indices":[44,52]},{"text":"MarkBam","indices":[53,61]},{"text":"NiorBam","indices":[62,70]},{"text":"YugBam","indices":[71,78]},{"text":"allbam","indices":[79,86]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661910743227338752,"id_str":"661910743227338752","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661910743227338752,"id_str":"661910743227338752","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":661910746968657920,"id_str":"661910746968657920","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUUIUkAA1dyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUUIUkAA1dyV.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":898,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}},{"id":661910760075825152,"id_str":"661910760075825152","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UVE9UEAA8MMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UVE9UEAA8MMs.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":661910772893650944,"id_str":"661910772893650944","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UV0tUkAA98dB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UV0tUkAA98dB.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":898,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BamBam","indices":[45,52]},{"text":"GOT7","indices":[53,58]},{"text":"JackBam","indices":[59,67]},{"text":"MarkBam","indices":[68,76]},{"text":"NiorBam","indices":[77,85]},{"text":"YugBam","indices":[86,93]},{"text":"allbam","indices":[94,101]}],"urls":[],"user_mentions":[{"screen_name":"SalavitaV","name":"\u273f\uff65Gotta be U \uff65\u273f","id":2749333499,"id_str":"2749333499","indices":[3,13]}],"symbols":[],"media":[{"id":661910743227338752,"id_str":"661910743227338752","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":661910791348580352,"source_status_id_str":"661910791348580352","source_user_id":2749333499,"source_user_id_str":"2749333499"}]},"extended_entities":{"media":[{"id":661910743227338752,"id_str":"661910743227338752","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUGMUkAAUpGM.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":661910791348580352,"source_status_id_str":"661910791348580352","source_user_id":2749333499,"source_user_id_str":"2749333499"},{"id":661910746968657920,"id_str":"661910746968657920","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UUUIUkAA1dyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UUUIUkAA1dyV.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":898,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":661910791348580352,"source_status_id_str":"661910791348580352","source_user_id":2749333499,"source_user_id_str":"2749333499"},{"id":661910760075825152,"id_str":"661910760075825152","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UVE9UEAA8MMs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UVE9UEAA8MMs.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":661910791348580352,"source_status_id_str":"661910791348580352","source_user_id":2749333499,"source_user_id_str":"2749333499"},{"id":661910772893650944,"id_str":"661910772893650944","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-UV0tUkAA98dB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-UV0tUkAA98dB.jpg","url":"https:\/\/t.co\/eSg5NkOYmV","display_url":"pic.twitter.com\/eSg5NkOYmV","expanded_url":"http:\/\/twitter.com\/SalavitaV\/status\/661910791348580352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":898,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":684,"h":1024,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":661910791348580352,"source_status_id_str":"661910791348580352","source_user_id":2749333499,"source_user_id_str":"2749333499"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980414238720,"id_str":"663727980414238720","text":"@61236c73e2e0472 @Niiikamochi \n\u8cb7\u3063\u3066\u304f\u3060\u3055\u3044\u3088\uff01\uff01\uff01\n\u6700\u5f8c\u3082\u3084\u3063\u3071\u308a\u541b\u3068\u540c\u3058\u679a\u6570\u3092\u2026wwwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727087467925504,"in_reply_to_status_id_str":"663727087467925504","in_reply_to_user_id":3103394016,"in_reply_to_user_id_str":"3103394016","in_reply_to_screen_name":"61236c73e2e0472","user":{"id":806454030,"id_str":"806454030","name":"\u304a\u307e\u306a","screen_name":"mana_ki917","location":"\u8eab\u8fd1\u306atwins\u2192\u30aa\u30f3\u30c1\u30d3\u5317\u5c3e","url":null,"description":"\uff8d\uff9e\uff98\uff70\uff77\uff6d\uff70\uff84\u306a\u30c4\u30c1\u30ce\u30b3\u30d2\u30ed\u30df\u30c4\u306f\u3044\u304b\u304c\u3067\u3059\u304b\uff5e\uff01\uff01 \u85e4\u5317\u4ef2\u826f\u3057kiss&Peace\u3002\u5bdd\u9854\u3002\u5507\u3002\u3061\u3087\u3063\u3068\u51fa\u3063\u6b6f\u3002\u30b5\u30a4\u30ba\u611f\u3002\u7b11\u3044\u58f0\u30025\u6b73\u5150\u3002\u30ae\u30e3\u30c3\u30d7\u3002\u5eb6\u6c11\u6d3e\u30a2\u30a4\u30c9\u30eb\u3002\u9577\u9aea\u306e\u91d1\u9aea\u3002\u304a\u3093\u307e\u3086\u3002\u8033\u639b\u3051\u3002\u306d\u3063\u3068\u308a\u3088\u308d\u3057\u3085\u3046 \u203b\u5b9a\u671f\u591a\u3081\u203b96(97)Line\u203b\u81ea\u7531\u4eba","protected":false,"verified":false,"followers_count":152,"friends_count":170,"listed_count":6,"favourites_count":988,"statuses_count":25573,"created_at":"Thu Sep 06 09:44:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660611963869773824\/2oCh3UVe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660611963869773824\/2oCh3UVe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806454030\/1443443185","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"61236c73e2e0472","name":"\u305f\u307e\u307f\u304f\u308f\u6795\u306e\u4e2d","id":3103394016,"id_str":"3103394016","indices":[0,16]},{"screen_name":"Niiikamochi","name":"\u4e8c\u968e\u5802\u7523\u3055\u304f\u3089\u3082\u3061\u3002","id":3739953072,"id_str":"3739953072","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056657"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980414414850,"id_str":"663727980414414850","text":"Di ko kaya baka himatayin akooo hahahah!! https:\/\/t.co\/SlzMMvvzr7","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2318100961,"id_str":"2318100961","name":"\u2765V","screen_name":"vernahknows_","location":null,"url":"http:\/\/instagram.com\/omgitsvernuuhh_","description":"\u274c Vulnerable but Versatile \u274c More of Jesus, Less of Me","protected":false,"verified":false,"followers_count":380,"friends_count":252,"listed_count":0,"favourites_count":6970,"statuses_count":8591,"created_at":"Thu Jan 30 01:39:45 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506658453041864705\/7gAYzYh0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506658453041864705\/7gAYzYh0.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656084121400164357\/qhSp-vSv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656084121400164357\/qhSp-vSv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2318100961\/1439909797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SlzMMvvzr7","expanded_url":"http:\/\/fb.me\/3ydqHLoeL","display_url":"fb.me\/3ydqHLoeL","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080056657"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452167681,"id_str":"663727980452167681","text":"RT @Quote_Soup: Everyone you will ever meet knows something you don't.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":512150430,"id_str":"512150430","name":"Lyds","screen_name":"LydiaM96","location":null,"url":"http:\/\/instagram.com\/lydiam96","description":"19. When I'm not studying Linguistics in London I like to see the world.\nLove God. Love People. Love Life. We love because He first loved us - 1 John 4:19","protected":false,"verified":false,"followers_count":520,"friends_count":354,"listed_count":1,"favourites_count":26882,"statuses_count":4625,"created_at":"Fri Mar 02 16:30:45 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439554801\/tumblr_lcxmfw65Bk1qdjn3to1_500_png.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439554801\/tumblr_lcxmfw65Bk1qdjn3to1_500_png.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627488509297827840\/yQFELBNb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627488509297827840\/yQFELBNb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/512150430\/1427755542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:13 +0000 2015","id":663725534216589312,"id_str":"663725534216589312","text":"Everyone you will ever meet knows something you don't.","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601227277,"id_str":"601227277","name":"Quote Soup","screen_name":"Quote_Soup","location":null,"url":"http:\/\/Facebook.com\/pages\/Quote-Soup\/149319245209758","description":"A Delicious Mix of the Best Inspirational Quotes","protected":false,"verified":false,"followers_count":425524,"friends_count":23,"listed_count":2894,"favourites_count":11,"statuses_count":36472,"created_at":"Wed Jun 06 19:25:38 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8C0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600369055\/yrnv8cc486sbfcz6cpvs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600369055\/yrnv8cc486sbfcz6cpvs.jpeg","profile_background_tile":false,"profile_link_color":"870000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2401767570\/0a8h01y4ir7b0a3w0yld_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2401767570\/0a8h01y4ir7b0a3w0yld_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Quote_Soup","name":"Quote Soup","id":601227277,"id_str":"601227277","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980447842304,"id_str":"663727980447842304","text":"RT @serenaaphillips: @skylarrmurrell happy birthday beautiful make it great\ud83d\udc97\ud83c\udf89\ud83c\udf8a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415278070,"id_str":"2415278070","name":"Skylar Murrell","screen_name":"skylarrmurrell","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":780,"friends_count":471,"listed_count":1,"favourites_count":5285,"statuses_count":2683,"created_at":"Fri Mar 28 03:25:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656604216891457537\/cpLHoYPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656604216891457537\/cpLHoYPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415278070\/1446772349","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727706861776896,"id_str":"663727706861776896","text":"@skylarrmurrell happy birthday beautiful make it great\ud83d\udc97\ud83c\udf89\ud83c\udf8a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2415278070,"in_reply_to_user_id_str":"2415278070","in_reply_to_screen_name":"skylarrmurrell","user":{"id":2915383045,"id_str":"2915383045","name":"serena","screen_name":"serenaaphillips","location":"az livin","url":null,"description":"@BrookeEmptage","protected":false,"verified":false,"followers_count":356,"friends_count":667,"listed_count":0,"favourites_count":2809,"statuses_count":2774,"created_at":"Mon Dec 01 07:01:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663410986255167488\/6v8fL1PL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663410986255167488\/6v8fL1PL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915383045\/1445999683","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"skylarrmurrell","name":"Skylar Murrell","id":2415278070,"id_str":"2415278070","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"serenaaphillips","name":"serena","id":2915383045,"id_str":"2915383045","indices":[3,19]},{"screen_name":"skylarrmurrell","name":"Skylar Murrell","id":2415278070,"id_str":"2415278070","indices":[21,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056665"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980451987457,"id_str":"663727980451987457","text":"RT @NowMag: Hiya @justinbieber making a surprise appearance at the #R1TeenAwards right now \ud83d\udc9e https:\/\/t.co\/ml1FwTg8pv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139195170,"id_str":"139195170","name":"purpose","screen_name":"biebermyskittle","location":"6\/7\/11 \u2022 4\/16\/13","url":null,"description":"November 13","protected":false,"verified":false,"followers_count":6289,"friends_count":3823,"listed_count":63,"favourites_count":679,"statuses_count":54858,"created_at":"Sat May 01 21:24:43 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000109349749\/ba5a8686ffd8fd5954ee28852e74293e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000109349749\/ba5a8686ffd8fd5954ee28852e74293e.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"FC2A2A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660993284752277505\/U9uEPyCe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660993284752277505\/U9uEPyCe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139195170\/1446427967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:11:21 +0000 2015","id":663373247044575232,"id_str":"663373247044575232","text":"Hiya @justinbieber making a surprise appearance at the #R1TeenAwards right now \ud83d\udc9e https:\/\/t.co\/ml1FwTg8pv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15375383,"id_str":"15375383","name":"Now Magazine","screen_name":"NowMag","location":"London","url":"http:\/\/www.nowmagazine.co.uk","description":"For all the latest celebrity gossip - go to http:\/\/www.nowmagazine.co.uk or https:\/\/www.facebook.com\/NowMag Snapchat: nowmag","protected":false,"verified":true,"followers_count":114582,"friends_count":3275,"listed_count":467,"favourites_count":8057,"statuses_count":104443,"created_at":"Thu Jul 10 08:29:42 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636103629414469632\/gw-O1YB1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636103629414469632\/gw-O1YB1.jpg","profile_background_tile":true,"profile_link_color":"D9155D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461107083924881408\/cPCFf9h9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461107083924881408\/cPCFf9h9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15375383\/1429630433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5817,"favorite_count":8019,"entities":{"hashtags":[{"text":"R1TeenAwards","indices":[55,68]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[5,18]}],"symbols":[],"media":[{"id":663373040605110272,"id_str":"663373040605110272","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","url":"https:\/\/t.co\/ml1FwTg8pv","display_url":"pic.twitter.com\/ml1FwTg8pv","expanded_url":"http:\/\/twitter.com\/NowMag\/status\/663373247044575232\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663373040605110272,"id_str":"663373040605110272","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","url":"https:\/\/t.co\/ml1FwTg8pv","display_url":"pic.twitter.com\/ml1FwTg8pv","expanded_url":"http:\/\/twitter.com\/NowMag\/status\/663373247044575232\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"R1TeenAwards","indices":[67,80]}],"urls":[],"user_mentions":[{"screen_name":"NowMag","name":"Now Magazine","id":15375383,"id_str":"15375383","indices":[3,10]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[17,30]}],"symbols":[],"media":[{"id":663373040605110272,"id_str":"663373040605110272","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","url":"https:\/\/t.co\/ml1FwTg8pv","display_url":"pic.twitter.com\/ml1FwTg8pv","expanded_url":"http:\/\/twitter.com\/NowMag\/status\/663373247044575232\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663373247044575232,"source_status_id_str":"663373247044575232","source_user_id":15375383,"source_user_id_str":"15375383"}]},"extended_entities":{"media":[{"id":663373040605110272,"id_str":"663373040605110272","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTGRAbWoAAxiOU.jpg","url":"https:\/\/t.co\/ml1FwTg8pv","display_url":"pic.twitter.com\/ml1FwTg8pv","expanded_url":"http:\/\/twitter.com\/NowMag\/status\/663373247044575232\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663373247044575232,"source_status_id_str":"663373247044575232","source_user_id":15375383,"source_user_id_str":"15375383"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452036608,"id_str":"663727980452036608","text":"RT @Gurmeetramrahim: #MSG2onTheTopInRajasthan God bless you all https:\/\/t.co\/D4DchIwLx4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220396171,"id_str":"3220396171","name":"Jagroop Insan","screen_name":"jagroopsingh018","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":9,"listed_count":1,"favourites_count":213,"statuses_count":324,"created_at":"Tue May 19 13:14:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634407161439715328\/LODW9ENA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634407161439715328\/LODW9ENA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220396171\/1440210715","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:26 +0000 2015","id":663721562743267328,"id_str":"663721562743267328","text":"#MSG2onTheTopInRajasthan God bless you all https:\/\/t.co\/D4DchIwLx4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2852359916,"id_str":"2852359916","name":"GURMEET RAM RAHIM","screen_name":"Gurmeetramrahim","location":"sirsa(haryana) India","url":"http:\/\/www.gurmeetramrahim.in","description":"Spiritual Saint\/philanthropist\/versatile singer\/allrounder sportsperson\/film director\/art director\/music director\/script writer\/lyricist\/autobiographer\/DOP\/","protected":false,"verified":true,"followers_count":1399186,"friends_count":0,"listed_count":757,"favourites_count":7,"statuses_count":935,"created_at":"Sat Oct 11 20:50:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2852359916\/1443248390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2009,"favorite_count":1996,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721539708129281,"id_str":"663721539708129281","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","url":"https:\/\/t.co\/D4DchIwLx4","display_url":"pic.twitter.com\/D4DchIwLx4","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663721562743267328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721539708129281,"id_str":"663721539708129281","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","url":"https:\/\/t.co\/D4DchIwLx4","display_url":"pic.twitter.com\/D4DchIwLx4","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663721562743267328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[21,45]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[3,19]}],"symbols":[],"media":[{"id":663721539708129281,"id_str":"663721539708129281","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","url":"https:\/\/t.co\/D4DchIwLx4","display_url":"pic.twitter.com\/D4DchIwLx4","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663721562743267328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663721562743267328,"source_status_id_str":"663721562743267328","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"extended_entities":{"media":[{"id":663721539708129281,"id_str":"663721539708129281","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDOUwUEAEAMFW.jpg","url":"https:\/\/t.co\/D4DchIwLx4","display_url":"pic.twitter.com\/D4DchIwLx4","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663721562743267328\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663721562743267328,"source_status_id_str":"663721562743267328","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418498560,"id_str":"663727980418498560","text":"\u5931\u604b\u3092\u30ba\u30eb\u30ba\u30eb\u5f15\u304d\u305a\u3089\u306a\u3044\u305f\u3081\u306b\u3084\u308a\u305f\u3044\u3053\u3068\uff19\u30d1\u30bf\u30fc\u30f3|mine https:\/\/t.co\/r8FDfvNdHK via @mine_g_jp","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230443125,"id_str":"3230443125","name":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u652f\u63f4","screen_name":"locisimuxav","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":425,"friends_count":121,"listed_count":1,"favourites_count":0,"statuses_count":3889,"created_at":"Sun May 03 13:00:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614736977074597889\/h1Ryo1oR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614736977074597889\/h1Ryo1oR_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r8FDfvNdHK","expanded_url":"http:\/\/mine-g.jp\/article\/33439\/1658\/","display_url":"mine-g.jp\/article\/33439\/\u2026","indices":[33,56]}],"user_mentions":[{"screen_name":"mine_g_jp","name":"mine","id":2927319242,"id_str":"2927319242","indices":[61,71]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980427001856,"id_str":"663727980427001856","text":"RT @teenagernotes: Me in November vs Me in December https:\/\/t.co\/boh3gusEAj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362024380,"id_str":"2362024380","name":"morgan tracy","screen_name":"morganetracy1","location":null,"url":null,"description":"is this a joke","protected":false,"verified":false,"followers_count":168,"friends_count":151,"listed_count":2,"favourites_count":3948,"statuses_count":2749,"created_at":"Wed Feb 26 03:05:24 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661711605164548096\/PLykCRKx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661711605164548096\/PLykCRKx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362024380\/1437670658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:14:12 +0000 2015","id":663570256330432512,"id_str":"663570256330432512","text":"Me in November vs Me in December https:\/\/t.co\/boh3gusEAj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148779151,"id_str":"148779151","name":"Seriously!","screen_name":"teenagernotes","location":"Shop Now! \u27b3","url":"http:\/\/SunlitDaisy.com","description":"Seriously tweeting my thoughts bc im bored \u2655 *we do not own any content posted* Inquires; Mei@SunlitDaisy.Com","protected":false,"verified":false,"followers_count":2129754,"friends_count":95,"listed_count":4694,"favourites_count":198,"statuses_count":64472,"created_at":"Thu May 27 15:45:14 +0000 2010","utc_offset":-14400,"time_zone":"La Paz","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/536936239866187776\/Q17l2gcI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/536936239866187776\/Q17l2gcI.png","profile_background_tile":false,"profile_link_color":"FF45B5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610605058422644738\/D841oWhp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610605058422644738\/D841oWhp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148779151\/1434414096","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":980,"favorite_count":1447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663523216581873664,"id_str":"663523216581873664","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"}]},"extended_entities":{"media":[{"id":663523216581873664,"id_str":"663523216581873664","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"},{"id":663523216909058052,"id_str":"663523216909058052","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2awWwAQeDRw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2awWwAQeDRw.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"large":{"w":574,"h":1000,"resize":"fit"},"medium":{"w":574,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":592,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teenagernotes","name":"Seriously!","id":148779151,"id_str":"148779151","indices":[3,17]}],"symbols":[],"media":[{"id":663523216581873664,"id_str":"663523216581873664","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"}]},"extended_entities":{"media":[{"id":663523216581873664,"id_str":"663523216581873664","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2ZiWUAAogsf.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1008,"resize":"fit"},"large":{"w":575,"h":1008,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":596,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"},{"id":663523216909058052,"id_str":"663523216909058052","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVO2awWwAQeDRw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVO2awWwAQeDRw.jpg","url":"https:\/\/t.co\/boh3gusEAj","display_url":"pic.twitter.com\/boh3gusEAj","expanded_url":"http:\/\/twitter.com\/TweetLikeAGirI\/status\/663523221153689600\/photo\/1","type":"photo","sizes":{"large":{"w":574,"h":1000,"resize":"fit"},"medium":{"w":574,"h":1000,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":592,"resize":"fit"}},"source_status_id":663523221153689600,"source_status_id_str":"663523221153689600","source_user_id":891826837,"source_user_id_str":"891826837"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056660"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452024320,"id_str":"663727980452024320","text":"@sachinoka \u5168\u90e8\u304c\u5984\u60f3\u306e\u7bc4\u56f2\u3067\u306e\u8a71\u3001\u3068\u3044\u3046\u306e\u304c\u4f55\u3068\u3082\u60b2\u3057\u3044\u3068\u3053\u308d\u3067\u3059\u304c\u5e0c\u671b\u3060\u3051\u306f\u6301\u3061\u7d9a\u3051\u305f\u3044\u3067\u3059\u306d\uff01\n\u30bd\u30ed\u3067\u30a4\u30d9\u30f3\u30c8\u3067\u306a\u304f\u3066\u3082\u3001\u30c8\u30fc\u30af\u30b7\u30e7\u30fc\u3067\u3082\u5927\u3044\u306b\u7d50\u69cb\u3067\u3059\u2669\u500b\u4eba\u540d\u7fa9CD\u3082\u73fe\u5728\u51fa\u3057\u3066\u306a\u3044\u304b\u3089\u7279\u306b\u3054\u672c\u4eba\u3055\u3093\u306b\u95a2\u3059\u308b\u30a4\u30d9\u30f3\u30c8\u5c11\u306a\u3044\u3067\u3059\u3082\u3093\u306d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727180212383745,"in_reply_to_status_id_str":"663727180212383745","in_reply_to_user_id":92953172,"in_reply_to_user_id_str":"92953172","in_reply_to_screen_name":"sachinoka","user":{"id":138814659,"id_str":"138814659","name":"\u308a\u3063\u304d\u30fc","screen_name":"rickey_hogeo","location":"\u753b\u9762\u306e\u5411\u3053\u3046","url":null,"description":"\u96d1\u98df\u3067\u6b8b\u5ff5\u306a\u6210\u4eba\u6e08\u30aa\u30bf\u30af\u3002\u6c34\u6a39\u5948\u3005(S.C.NANANET\u4f1a\u54e1)\/\u524d\u91ce\u667a\u662d\/\u795e\u8c37\u6d69\u53f2\/\u4e0b\u91ce\u7d18\u306f\u3058\u3081\u305f\u3060\u306e\u58f0\u30aa\u30bf\u3002 \u3046\u305f\u30d7\u30ea\/\u30b7\u30f3\u30d5\u30a9\u30ae\u30a2\/\u30c6\u30a4\u30eb\u30ba\/\u30dd\u30b1\u30e2\u30f3\/\u5200\u5263\u4e71\u821e\u3002 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u304b\u307e\u3057\u307e\u3059\u3001\u3059\u307f\u307e\u305b\u3093\u3002\u8a73\u3057\u304f\u306f\u2192http:\/\/twpf.jp\/rickey_hogeo","protected":false,"verified":false,"followers_count":59,"friends_count":165,"listed_count":6,"favourites_count":625,"statuses_count":11670,"created_at":"Fri Apr 30 17:39:19 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653376994466402304\/84YfQV85_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653376994466402304\/84YfQV85_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138814659\/1444611578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sachinoka","name":"\u3055\u3061\u306e\u304b","id":92953172,"id_str":"92953172","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980451987456,"id_str":"663727980451987456","text":"@Emi3Gb \u7fbd\u751f\u3055\u3093\u306b\u5143\u6c17\u8cb0\u3063\u3066\u9811\u5f35\u3063\u3066\u50cd\u304f\u3057\u304b\u306a\u30fc\u3044\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726692356091905,"in_reply_to_status_id_str":"663726692356091905","in_reply_to_user_id":2422707234,"in_reply_to_user_id_str":"2422707234","in_reply_to_screen_name":"Emi3Gb","user":{"id":2380561705,"id_str":"2380561705","name":"\u304f\u307e\u3055\u3093@\u9045\u8fd4\u5fa1\u514d\u306d","screen_name":"yellowphoow","location":"\u6771\u4eac","url":null,"description":"\u97f3\u697d\u30fb\u304a\u83d3\u5b50\u30fb\u9ec4\u8272\u3002\u7fbd\u751f\u7d50\u5f26\u3055\u3093\u306e\u30b9\u30b1\u30fc\u30c8\uff06V.\u30a2\u30b7\u30e5\u30b1\u30ca\u30fc\u30b8\u306e\u30d4\u30a2\u30ce\u3002 \u96d1\u591a\u306a\u545f\u304d\u3002\u3053\u3063\u305d\u308a\u30d5\u30a9\u30ed\u3054\u3081\u3093\u306a\u3055\u3044\u3002\u30d8\u30c3\u30c0\u306f\u96ea\u91ce\u3055\u3093 \u30a2\u30a4\u30b3\u30f3\u306f\u671d\u3082\u5915\u3082 \u304f\u3082\u3055\u3093\u3002\u3069\u3093\u306a\u671d\u3067\u3082\u5148\u305a\u306f \u304a\u306f\u306b\u3085\u3002","protected":false,"verified":false,"followers_count":302,"friends_count":207,"listed_count":0,"favourites_count":7179,"statuses_count":32391,"created_at":"Sun Mar 09 14:33:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663570636992679936\/yKp6Zbf7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663570636992679936\/yKp6Zbf7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380561705\/1438786257","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Emi3Gb","name":"\u3048\u307f\u306d","id":2422707234,"id_str":"2422707234","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980431192064,"id_str":"663727980431192064","text":"WBSO aanvragen voor 2016? Dien de aanvraag uiterlijk 30 november a.s. in! #subsidie #wbso https:\/\/t.co\/6giMta3fec","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":492999992,"id_str":"492999992","name":"CONTOUR Accountants","screen_name":"CONTOURacc","location":null,"url":"http:\/\/www.contouraccountants.nl","description":"CONTOUR is een no-nonsense accountantskantoor. Samen met CONTOUR vormt u een team dat het beste uit uw onderneming haalt.","protected":false,"verified":false,"followers_count":232,"friends_count":89,"listed_count":2,"favourites_count":2,"statuses_count":417,"created_at":"Wed Feb 15 10:29:54 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/790750824\/9c061b87c6f0ee7ce113ade7b9ff7b9e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/790750824\/9c061b87c6f0ee7ce113ade7b9ff7b9e.jpeg","profile_background_tile":false,"profile_link_color":"131B78","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620967794042097664\/jJQp7DUG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620967794042097664\/jJQp7DUG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492999992\/1443596221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"subsidie","indices":[74,83]},{"text":"wbso","indices":[84,89]}],"urls":[{"url":"https:\/\/t.co\/6giMta3fec","expanded_url":"http:\/\/ow.ly\/Uk3kH","display_url":"ow.ly\/Uk3kH","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080056661"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452048897,"id_str":"663727980452048897","text":"\u4ffa\u306e\u30a4\u30e1\u30fc\u30b8\u3068\u304b\n\n\u30a4\u30b1\u30e1\u30f3\u3000\u30a4\u30b1\u30dc\u3000\u7d33\u58eb\n\n\u3060\u308d\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2434611722,"id_str":"2434611722","name":"\u5bfa\u751f\u307e\u308c\u306e\u305f\u3041\u304f\u3093","screen_name":"Tarkn2525","location":"\u58f0\u771f\u4f3c\u4e3b\u306e\u67a0\u5185","url":"http:\/\/com.nicovideo.jp\/community\/co2265816","description":"\u30cb\u30b3\u30cb\u30b3\u306b\u3066\u6afb\u4e95\u5b5d\u5b8f\u3055\u3093\u306e\u58f0\u771f\u4f3c\u4e3b\u3092\u5e95\u8fba\u3067\u3053\u305d\u3053\u305d\u3084\u3063\u3066\u307e\u3057\u305f\u4f3c\u3066\u307e\u305b\u3093\u3067\u3057\u305f\u3075\u3047\u3048\u3000\u3042\u3001\u304d\u3083\u3059\u3082\u3084\u3063\u3066\u307e\u3057\u305f \u3042\u3001\u3086\u3048\u3061\u3087\u3093\u50d5\u306e\u3067\u3059 \u5fc3\u304c\u3074\u3087\u3093\u3074\u3087\u3093\u3059\u308b\uff3e","protected":false,"verified":false,"followers_count":361,"friends_count":334,"listed_count":35,"favourites_count":5244,"statuses_count":36179,"created_at":"Wed Apr 09 00:18:24 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644209235828436992\/wxBgnSDZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644209235828436992\/wxBgnSDZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2434611722\/1412720432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980435398656,"id_str":"663727980435398656","text":"Hahahahahahhahah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3336038890,"id_str":"3336038890","name":"Exploooooodeeee !!","screen_name":"My_Life_Dudu","location":"criado 19\/06 ","url":"http:\/\/duduzinhooficial.com","description":"Meu \u00eddolo me fez entender que por mais que tudo esteja dif\u00edcil NADA e NUNCA \u00e9 imposs\u00edvel. Meu \u00eddolo me ensinou a Sempre acreditar. @Duduzinhomc","protected":false,"verified":false,"followers_count":528,"friends_count":278,"listed_count":0,"favourites_count":9227,"statuses_count":12168,"created_at":"Sat Jun 20 02:26:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662004721385938944\/CyFGiIG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662004721385938944\/CyFGiIG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3336038890\/1441710325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080056662"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439408640,"id_str":"663727980439408640","text":"\u30d6\u30ed\u30b0\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\u300c\u30e8\u30ac\u306f\u79d8\u5bc6\u9053\u5177\u3002\u300d https:\/\/t.co\/IDj28kGuda","source":"\u003ca href=\"http:\/\/www.ameba.jp\" rel=\"nofollow\"\u003eAmeba smartphone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3250626944,"id_str":"3250626944","name":"\u3068\u307e\u308a\u3048\u308a\u3053","screen_name":"erikochomari","location":null,"url":"http:\/\/s.ameblo.jp\/chomachoma224","description":"\u5927\u962a\u3067\u30e8\u30ac\u30a4\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u30fc\u3068\u3057\u3066\u6d3b\u52d5\u3057\u3066\u307e\u3059\u3001\u3068\u307e\u308a\u3048\u308a\u3053\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":19,"friends_count":19,"listed_count":0,"favourites_count":1,"statuses_count":235,"created_at":"Sat Jun 20 11:47:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630350588266479616\/KZqTLNve_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630350588266479616\/KZqTLNve_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3250626944\/1434801779","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IDj28kGuda","expanded_url":"http:\/\/amba.to\/1PxH0TB","display_url":"amba.to\/1PxH0TB","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452122624,"id_str":"663727980452122624","text":"@savemebananas @Ocean_iz \u043e\u043e \u043a\u0440\u0435\u043f\u0438\u0441\u044c,10 \u043a\u043b\u0430\u0441\u0441 \u044d\u0442\u043e \u0442\u043e\u0436\u0435 \u0436\u0435\u0441\u0442\u044c :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727807797862400,"in_reply_to_status_id_str":"663727807797862400","in_reply_to_user_id":714203502,"in_reply_to_user_id_str":"714203502","in_reply_to_screen_name":"savemebananas","user":{"id":380357572,"id_str":"380357572","name":"\u2716\ufe0f\u041b\u0410\u0412 \u041b\u0423\u0418\u2716\ufe0f","screen_name":"Princess_Died8","location":null,"url":null,"description":"\u041c\u0435\u043d\u044f \u0437\u043e\u0432\u0443\u0442 \u041b\u0435\u0440\u0430 \u0412 \u0444\u0430\u043d\u0434\u043e\u043c\u0435 3 \u0433\u043e\u0434\u0430\u2665\u2665 #Directioner \u0427\u0418\u0422\u0410\u042e \u0412\u0417\u0410\u0418\u041c\u041d\u041e\n\u2716\ufe0f\u0412 \u043f\u043e\u0438\u0441\u043a\u0430\u0445 \u043c\u0443\u0436\u0430\u2716\ufe0f","protected":false,"verified":false,"followers_count":1240,"friends_count":1380,"listed_count":1,"favourites_count":82,"statuses_count":478,"created_at":"Mon Sep 26 14:25:40 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624159149446832128\/baS_B9oB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624159149446832128\/baS_B9oB.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631210793850306561\/WCQeVWVl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631210793850306561\/WCQeVWVl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380357572\/1439327315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"savemebananas","name":"\u25b2sunshine\u25b2zquad\u25b2","id":714203502,"id_str":"714203502","indices":[0,14]},{"screen_name":"Ocean_iz","name":"\u2022OCEAN\u2022","id":3298055793,"id_str":"3298055793","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980422692864,"id_str":"663727980422692864","text":"@nik_frs whatevs. Eh nanti kan i stay in kl for a week or two \ud83d\ude46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727742597238784,"in_reply_to_status_id_str":"663727742597238784","in_reply_to_user_id":4156503072,"in_reply_to_user_id_str":"4156503072","in_reply_to_screen_name":"nik_frs","user":{"id":442782021,"id_str":"442782021","name":"nik's","screen_name":"soullessbrae","location":null,"url":null,"description":"watch me kick some ass","protected":false,"verified":false,"followers_count":1451,"friends_count":826,"listed_count":6,"favourites_count":7800,"statuses_count":44214,"created_at":"Wed Dec 21 13:18:47 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555614630924398592\/FeA1zy-I.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555614630924398592\/FeA1zy-I.png","profile_background_tile":false,"profile_link_color":"A4A4A4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662300102694821888\/KXcadBTS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662300102694821888\/KXcadBTS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/442782021\/1446816245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nik_frs","name":"nik","id":4156503072,"id_str":"4156503072","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056659"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439465985,"id_str":"663727980439465985","text":"\u12ad\u1349 \u12a8\u134d\u1276 \u12e8\u121b\u12ed\u122b\u122b\u1363\n\u12e8\u1218\u12a8\u122b\u12cd \u130d\u134d \u1218\u122b\u122b\u1363\n\u12e8\u12a0\u12d8\u1295 \u1208\u1245\u1236 \u121b\u12eb\u1263\u122b\u1362\n\u12e8\u130e\u12f0\u1208\u12cd \u12ed\u1263\u1235 \u130e\u120e \u12e8\u12c8\u1320\u1229\u1275 \u12a5\u12e8\u120b\u120b\u1363\n\u12eb\u1230\u1261\u1275 \u12ab\u120d\u1270\u1233\u12ab \u12eb\u1240\u12f1\u1275 \u12ab\u120d\u1270\u121f\u120b\u1363\n\u1270\u1235\u134b \u1328\u120d\u121e \u1232\u1273\u12ed \u1260\u12f5\u1245\u12f5\u1245 \u1345\u120d\u1218\u1275... https:\/\/t.co\/kZ28QXTDMf","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324102371,"id_str":"324102371","name":"ABEL ETHIOPIA","screen_name":"ABELELSA","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":47,"listed_count":0,"favourites_count":0,"statuses_count":8193,"created_at":"Sun Jun 26 00:49:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324102371\/1373495121","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kZ28QXTDMf","expanded_url":"http:\/\/fb.me\/4uSF6lEn0","display_url":"fb.me\/4uSF6lEn0","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"am","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452057088,"id_str":"663727980452057088","text":"@Kozatoto \u81ea\u5206\u3082\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u6b32\u3057\u304b\u3063\u305f\u3093\u3067\u3059\u3051\u3069\u306d\u3002\u4eca\u3055\u3089\u8cb7\u3046\u306e\u3082\u9045\u3044\u3088\u3046\u306a\u6c17\u304c\u3057\u307e\u3059....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726986653597697,"in_reply_to_status_id_str":"663726986653597697","in_reply_to_user_id":3264009222,"in_reply_to_user_id_str":"3264009222","in_reply_to_screen_name":"Kozatoto","user":{"id":3316458612,"id_str":"3316458612","name":"\u2605\u96bc\u6597","screen_name":"hkhk4haihuyama","location":"\u5730\u7403\u4e0a","url":null,"description":"\u5e0c\u63a8\u3057\u4e2d\u5b663\u5e74\n\u30b9\u30af\u30d5\u30a7\u30b9\u3084\u3063\u3066\u307e\u3059!!\nID344914545\u826f\u3051\u308c\u3070\u767b\u9332\u3092\n\u30d5\u30a9\u30ed\u30fc\u306f100%\u8fd4\u3057\u307e\u3059!\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u4e8b\u3042\u308a\u307e\u3059m(__)m\n\u8b0e\u3044\u306e\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\n\u898b\u3066\u308b\u30a2\u30cb\u30e1\u2192\u30e9\u30d6\u30e9\u30a4\u30d6!\/\u9032\u6483\u306e\u5de8\u4eba\/\u8d85\u96fb\u78c1\u7832\/\u7981\u66f8\u76ee\u9332\/\u30df\u30eb\u30ad\u30a3\u30db\u30fc\u30e0\u30ba\u2190\u3050\u3089\u3044\u3067\u3059\u306d\u3002\u30b9\u30de\u30d6\u30e9\u3084\u3063\u3066\u305f\u308a\u3057\u307e\u3059\uff01\u52dd\u73879\u5272(\u30d4\u30c3\u30c8)","protected":false,"verified":false,"followers_count":981,"friends_count":1101,"listed_count":3,"favourites_count":132,"statuses_count":290,"created_at":"Sun Aug 16 04:47:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364069089345540\/6mdrGY7z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364069089345540\/6mdrGY7z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316458612\/1446934975","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kozatoto","name":"\u53e4\u91cc","id":3264009222,"id_str":"3264009222","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056666"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980414283777,"id_str":"663727980414283777","text":"@sechx94 \u0e21\u0e32\u0e1f\u0e31\u0e14\u0e17\u0e35\u0e22\u0e31\u0e22\u0e2b\u0e21\u0e39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726676707184640,"in_reply_to_status_id_str":"663726676707184640","in_reply_to_user_id":3303357474,"in_reply_to_user_id_str":"3303357474","in_reply_to_screen_name":"sechx94","user":{"id":574332655,"id_str":"574332655","name":"\u0e40\u0e17\u0e47\u0e01\u0e0b\u0e31\u0e2a","screen_name":"texas94k_","location":"#1OXXXTIT #KSQUAD","url":null,"description":"\u0e22\u0e31\u0e22\u0e2a\u0e32\u0e23\u0e40\u0e2a\u0e1e\u0e15\u0e34\u0e14 @sechx94 \u26615.11 \u3161 #\u0e17\u0e35\u0e21\u0e19\u0e31\u0e14\u0e22\u0e33\u0e41\u0e0a\u0e17\u0e02\u0e32\u0e27\u0e40\u0e14","protected":false,"verified":false,"followers_count":107,"friends_count":98,"listed_count":0,"favourites_count":165,"statuses_count":9446,"created_at":"Tue May 08 09:14:04 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872941916\/9c19ec0b29f2bd2f38e3ceff36c7854d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872941916\/9c19ec0b29f2bd2f38e3ceff36c7854d.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"AB473B","profile_text_color":"B18432","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660721369248718848\/7VxuxYNu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660721369248718848\/7VxuxYNu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574332655\/1446908239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sechx94","name":"\u0e04\u0e25\u0e35\u0e19","id":3303357474,"id_str":"3303357474","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080056657"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980426858496,"id_str":"663727980426858496","text":"RT @HIFOON: \u062d\u0642\u0648\u0644 \u062c\u0645\u064a\u0644\u0629 \u0641\u064a \u0627\u064a\u0637\u0627\u0644\u064a\u0627. https:\/\/t.co\/Vf9iVvnIw4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2440764746,"id_str":"2440764746","name":"Luis Alfonso Angulo","screen_name":"LuisAlfonsoAng2","location":"Guamuchil, Sinaloa, M\u00e9xico","url":null,"description":"http:\/\/google.com.mx\/search?ie=ISO-\u2026. WhatsApp+526731018281","protected":false,"verified":false,"followers_count":2980,"friends_count":3222,"listed_count":1,"favourites_count":368,"statuses_count":1466,"created_at":"Sun Apr 13 00:20:00 +0000 2014","utc_offset":-25200,"time_zone":"Mazatlan","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581638029292376064\/ZUNYbgyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581638029292376064\/ZUNYbgyZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2440764746\/1427515663","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 10:22:57 +0000 2015","id":662575891273355264,"id_str":"662575891273355264","text":"\u062d\u0642\u0648\u0644 \u062c\u0645\u064a\u0644\u0629 \u0641\u064a \u0627\u064a\u0637\u0627\u0644\u064a\u0627. https:\/\/t.co\/Vf9iVvnIw4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83533494,"id_str":"83533494","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0623\u0631\u0627\u0645\u0643\u0648","screen_name":"HIFOON","location":"Saudi Arabia - Jeddah - ARAMCO","url":"http:\/\/www.flickriver.com\/photos\/hifoon\/popular-interesting\/","description":"#private #personal #account \u0623\u0628\u0648 \u0645\u0647\u0646\u062f #\u0645\u062d\u0645\u062f #\u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0645\u0648\u0638\u0641 #\u0627\u0631\u0627\u0645\u0643\u0648 #\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 #aramco #\u0627\u0644\u0639\u0644\u0627\u0642\u0627\u062a #\u0627\u0644\u062d\u0643\u0648\u0645\u064a\u0629 #\u062c\u062f\u0629 #\u062d\u0633\u0627\u0628 #\u0634\u062e\u0635\u064a #\u062e\u0627\u0635 \u0644\u0627\u064a\u062e\u0635 #\u0634\u0631\u0643\u0629 #\u0623\u0631\u0627\u0645\u0643\u0648","protected":false,"verified":false,"followers_count":39716,"friends_count":601,"listed_count":13,"favourites_count":3255,"statuses_count":22772,"created_at":"Mon Oct 19 05:57:18 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D8EA8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653514990750695424\/7PDIHbkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653514990750695424\/7PDIHbkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83533494\/1446748373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662569601457389568,"id_str":"662569601457389568","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","url":"https:\/\/t.co\/Vf9iVvnIw4","display_url":"pic.twitter.com\/Vf9iVvnIw4","expanded_url":"http:\/\/twitter.com\/PicWrld\/status\/662569613968998400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":662569613968998400,"source_status_id_str":"662569613968998400","source_user_id":1257565116,"source_user_id_str":"1257565116"}]},"extended_entities":{"media":[{"id":662569601457389568,"id_str":"662569601457389568","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","url":"https:\/\/t.co\/Vf9iVvnIw4","display_url":"pic.twitter.com\/Vf9iVvnIw4","expanded_url":"http:\/\/twitter.com\/PicWrld\/status\/662569613968998400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":662569613968998400,"source_status_id_str":"662569613968998400","source_user_id":1257565116,"source_user_id_str":"1257565116"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HIFOON","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u062d\u0627\u0632\u0645\u064a #\u0623\u0631\u0627\u0645\u0643\u0648","id":83533494,"id_str":"83533494","indices":[3,10]}],"symbols":[],"media":[{"id":662569601457389568,"id_str":"662569601457389568","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","url":"https:\/\/t.co\/Vf9iVvnIw4","display_url":"pic.twitter.com\/Vf9iVvnIw4","expanded_url":"http:\/\/twitter.com\/PicWrld\/status\/662569613968998400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":662569613968998400,"source_status_id_str":"662569613968998400","source_user_id":1257565116,"source_user_id_str":"1257565116"}]},"extended_entities":{"media":[{"id":662569601457389568,"id_str":"662569601457389568","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHrisXXAAAYEsL.jpg","url":"https:\/\/t.co\/Vf9iVvnIw4","display_url":"pic.twitter.com\/Vf9iVvnIw4","expanded_url":"http:\/\/twitter.com\/PicWrld\/status\/662569613968998400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":662569613968998400,"source_status_id_str":"662569613968998400","source_user_id":1257565116,"source_user_id_str":"1257565116"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080056660"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980435234816,"id_str":"663727980435234816","text":"@miffyx5 \u3057\u304b\u3082\u5148\u6708\u304b\u3089\u5968\u5b66\u91d1\u306e\u652f\u6255\u3044\u3082\u5897\u3048\u305f\u3058\u3083\u3093\uff1f\u91d1\u6b20\u3059\u304e\u3066\u30e4\u30d0\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727664591572993,"in_reply_to_status_id_str":"663727664591572993","in_reply_to_user_id":2276141364,"in_reply_to_user_id_str":"2276141364","in_reply_to_screen_name":"miffyx5","user":{"id":194790218,"id_str":"194790218","name":"\u3086\u308a\u307d\u3093","screen_name":"yu09ri05","location":"\u672d\u5e4c","url":null,"description":"\u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u3001\u30b2\u30fc\u30e0\u3001\u97f3\u697d\u5927\u597d\u304d\u3002\u4e00\u5fdc\u30ea\u30a2\u57a2\u3060\u3051\u3069\u4e8c\u6b21\u5143\u57a2\u306b\u306a\u308a\u3064\u3064\u3042\u308b\u3002\u30d5\u30a9\u30ed\u30fc\u7b49\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":149,"friends_count":99,"listed_count":1,"favourites_count":369,"statuses_count":12024,"created_at":"Sat Sep 25 00:24:57 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658998213853097984\/2tcQPw49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658998213853097984\/2tcQPw49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194790218\/1441467958","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miffyx5","name":"\u3059\u305a","id":2276141364,"id_str":"2276141364","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056662"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980422688768,"id_str":"663727980422688768","text":"\u3044\u308d\u3093\u306a\u9762\u3067\u5c0a\u656c\u3057\u3066\u307e\u3059\uff01\u305f\u304f\u3055\u3093\u306e\u3053\u3068\u3092\u6559\u3048\u3066\u6b32\u3057\u3044\u3067\u3059\uff01\u6700\u8fd1\u30e9\u30a4\u30d6\u4f1a\u5834\u3068\u304b\u3067\u4f1a\u3046\u3068\u6c17\u3065\u3044\u3066\u304f\u308c\u3066\u5b09\u3057\u3044\u3067\u3059\ud83d\ude2d\ud83d\udc97\ud83d\udc97 https:\/\/t.co\/4AqMgREfmn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2859585446,"id_str":"2859585446","name":"\ud6c4\ubbf8","screen_name":"skullaoki","location":"\u2765\u2765\u30c1\u30e5\u30a4\u304f\u3089\u3076\u2765\u2765 ","url":null,"description":"1001 \u3042\u308a\u304c\u3068\u3046 \u307b\u3093\u304e\u3060\u3044\u3059\u304d \n\u300a\u304c\u3093\u3070\u308b\u7cfb\u3077\u308a\u307e\u3069\u3093\u306a\u300b","protected":false,"verified":false,"followers_count":417,"friends_count":353,"listed_count":46,"favourites_count":2273,"statuses_count":15268,"created_at":"Fri Oct 17 06:18:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660054822918340608\/47w5i3QC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660054822918340608\/47w5i3QC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2859585446\/1428466108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727717125242880,"quoted_status_id_str":"663727717125242880","quoted_status":{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727717125242880,"id_str":"663727717125242880","text":"#\u79c1\u306f\u3042\u306a\u305f\u306e\u306a\u3093\u3067\u3059\u304b\u5f15\u7528RT\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044\n\n\u79c1\u3082\u4e45\u3057\u3076\u308a\u306b@\u8fd4\u3057\u305f\u3044(\u7b11)\u6700\u8fd1\u3084\u3063\u3066\u306a\u3044\u3088\u306d\uff08\uff1b\uff3f\uff1b\uff09\u306f\u307b\u306f\u306f\u306f\u306f\u306f\u8001\u773c\u3067w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480460194,"id_str":"480460194","name":"\u3061\u3047\u3086\u306a\u2764\ufe0e\u307f\u306a\u308a\u305b\u3093\u3044\u308b\u4f01\u753b\u4e2d","screen_name":"jsmhj","location":null,"url":"http:\/\/ameblo.jp\/ft0611yuna\/","description":"(( \uff0a \ub9e4 \uc77c \ubbf8 \ub098 \ub9ac \uc77c \uff0a )) \u307f\u306a\u308a\u305b\u3093\u3044\u308b\u4f01\u753b\u3092\u3084\u3063\u3066\u3044\u307e\u3059\u3002 \u305c\u3072\u53c2\u52a0\u3057\u305f\u3044\u304b\u305fDM\u3001\u30ea\u30d7\u4e0b\u3055\u3044\u3002 \u78ba\u5b9f\u306b\u672c\u4eba\u306b\u5c4a\u3051\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":2467,"friends_count":2318,"listed_count":62,"favourites_count":3875,"statuses_count":99460,"created_at":"Wed Feb 01 14:36:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652331584905867265\/bNVdeVzg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652331584905867265\/bNVdeVzg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480460194\/1441817467","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u79c1\u306f\u3042\u306a\u305f\u306e\u306a\u3093\u3067\u3059\u304b\u5f15\u7528RT\u3067\u6559\u3048\u3066\u304f\u3060\u3055\u3044","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4AqMgREfmn","expanded_url":"https:\/\/twitter.com\/jsmhj\/status\/663727717125242880","display_url":"twitter.com\/jsmhj\/status\/6\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056659"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439404545,"id_str":"663727980439404545","text":"\u548c\u4f50\u3055\u3093\u306b\u6559\u3048\u3066\u3082\u3089\u3063\u305f\u30ea\u30d7\u30ec\u30a4\u898b\u3066\u308b\u3051\u3069\u795e\u8a71\u751f\u7269\u304c\u7206\u767a\u3057\u307e\u304f\u308a\u3067\u5175\u5668\u306e\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u3063\u3066\u304d\u3063\u3068\u5927\u4e8b\u306a\u3093\u3060\u308d\u3046\u306a\u3063\u3066\u601d\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1395052380,"id_str":"1395052380","name":"\u3042\u3084\u306a\u307f\u3069\u308a\uff20\u6c34\u9762\u4e0b","screen_name":"ayanamidori","location":null,"url":null,"description":"\u9854\u3092\u51fa\u3057\u305f\u308a\u3072\u3063\u3053\u3081\u305f\u308a\u3002\u5275\u4f5c\u3057\u305f\u308a\u3001\u30cf\u30f3\u30bf\u30fc\u3057\u305f\u308a\u3002","protected":false,"verified":false,"followers_count":58,"friends_count":71,"listed_count":4,"favourites_count":2486,"statuses_count":33626,"created_at":"Wed May 01 16:56:03 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654687958197366784\/BXK2deFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654687958197366784\/BXK2deFU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056663"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980447965184,"id_str":"663727980447965184","text":"\uff20tos https:\/\/t.co\/1BDMu6qtYL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12371162,"in_reply_to_user_id_str":"12371162","in_reply_to_screen_name":"TOS","user":{"id":2552542754,"id_str":"2552542754","name":"\u51b7\u5974\u3055\u3093","screen_name":"r29n","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":721,"friends_count":62,"listed_count":7,"favourites_count":8909,"statuses_count":70833,"created_at":"Sat Jun 07 12:47:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653486808995491840\/z1Yl2z58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653486808995491840\/z1Yl2z58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2552542754\/1445595322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724767762112512,"quoted_status_id_str":"663724767762112512","quoted_status":{"created_at":"Mon Nov 09 14:28:10 +0000 2015","id":663724767762112512,"id_str":"663724767762112512","text":"\uff20tos : https:\/\/t.co\/IbZWHeRZMD","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":12371162,"in_reply_to_user_id_str":"12371162","in_reply_to_screen_name":"TOS","user":{"id":2552542754,"id_str":"2552542754","name":"\u51b7\u5974\u3055\u3093","screen_name":"r29n","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":721,"friends_count":62,"listed_count":7,"favourites_count":8909,"statuses_count":70832,"created_at":"Sat Jun 07 12:47:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653486808995491840\/z1Yl2z58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653486808995491840\/z1Yl2z58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2552542754\/1445595322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724284255322112,"quoted_status_id_str":"663724284255322112","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IbZWHeRZMD","expanded_url":"http:\/\/twitter.com\/r29n\/status\/663724284255322112","display_url":"twitter.com\/r29n\/status\/66\u2026","indices":[7,30]}],"user_mentions":[{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[0,4]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1BDMu6qtYL","expanded_url":"http:\/\/twitter.com\/r29n\/status\/663724767762112512","display_url":"twitter.com\/r29n\/status\/66\u2026","indices":[5,28]}],"user_mentions":[{"screen_name":"TOS","name":"TOS","id":12371162,"id_str":"12371162","indices":[0,4]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080056665"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452012032,"id_str":"663727980452012032","text":"Do you hate me? You can take this heart. Heal it, or break it all apart. No, this isn't fair. Love me, or leave me here.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922341096,"id_str":"922341096","name":"M.","screen_name":"ReallyMarissa","location":"Instagram \u262e ReallyMarissa18","url":"http:\/\/reallymarissa.tumblr.com","description":"This one time I took a chonce ...","protected":false,"verified":false,"followers_count":44,"friends_count":29,"listed_count":5,"favourites_count":187,"statuses_count":173,"created_at":"Sat Nov 03 03:28:12 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"111111","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593587026898780160\/8iQ5_vG1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593587026898780160\/8iQ5_vG1.jpg","profile_background_tile":false,"profile_link_color":"3A798C","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660467959488380929\/0YyQ6-sA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660467959488380929\/0YyQ6-sA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/922341096\/1443188481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"delete":{"status":{"id":663716395763417089,"id_str":"663716395763417089","user_id":369341069,"user_id_str":"369341069"},"timestamp_ms":"1447080056833"}} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980439470080,"id_str":"663727980439470080","text":"\u3060\u3068\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1510579555,"id_str":"1510579555","name":"\u30aa\u30ec\u30f3\u30b8","screen_name":"beautiful6301","location":null,"url":null,"description":"\u300c\u717d\u3063\u3066\u3044\u3044\u306e\u306f\u717d\u3089\u308c\u308b\u899a\u609f\u306e\u3042\u308b\u5974\u3060\u3051\u3060\u300d \u300c\u3068\u308a\u307e100\u9023\u30ac\u30c1\u30e3\u300d \u5acc\u3044\u306a\u30b3\u30e9\u30dc\u30ac\u30c1\u30e3\u4ee5\u5916\u307b\u307c\u30b3\u30f3\u30d7 (\u30b5\u30ea\u30a2\u672a\u6240\u6301)\u717d\u3063\u3066\u304f\u308c\u308b\u4eba\u3001\u5927\u6b53\u8fce\uff01\uff01\uff01ID192.202.894","protected":false,"verified":false,"followers_count":196,"friends_count":203,"listed_count":10,"favourites_count":34,"statuses_count":39726,"created_at":"Wed Jun 12 13:38:37 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"A200FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650871230652792832\/68g4sR4__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650871230652792832\/68g4sR4__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1510579555\/1440862120","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056663"} +{"delete":{"status":{"id":663727896561893376,"id_str":"663727896561893376","user_id":2307120166,"user_id_str":"2307120166"},"timestamp_ms":"1447080056840"}} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418461697,"id_str":"663727980418461697","text":"\u8170\u3044\u3066\u30fc\u3002\u304f\u3063\u305d\u30fc\u3002\n\u30c0\u30d6\u30eb\u30d1\u30f3\u30c1\u306f\u3001\u3064\u3089\u3044\u305c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2933289385,"id_str":"2933289385","name":"\u304a\u308a\u305f\u307f\u30fc\u305a","screen_name":"tvxqom80","location":null,"url":null,"description":"\u6771\u4eac\u5de5\u5b66\u9662\u30b3\u30f3\u30b5\u30fc\u30c8\u30a4\u30d9\u30f3\u30c8\u79d1\u4e8c\u5e74\u751f \u7167\u660e\u30b3\u30fc\u30b9","protected":false,"verified":false,"followers_count":435,"friends_count":536,"listed_count":1,"favourites_count":314,"statuses_count":4987,"created_at":"Wed Dec 17 09:31:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545507164702244864\/cGRs50Xs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545507164702244864\/cGRs50Xs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933289385\/1418894013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980447858688,"id_str":"663727980447858688","text":"@irmansss_ @fajariskandaar inget keneh sugan etaa Zola Futsal di semkaii delapan bdg :)) https:\/\/t.co\/0x0f255Zew","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":592434170,"in_reply_to_user_id_str":"592434170","in_reply_to_screen_name":"irmansss_","user":{"id":427707316,"id_str":"427707316","name":"R I C K Y","screen_name":"RICKY_atenk","location":null,"url":null,"description":"Politeknik Negeri Padang | vespa | Persib Bandung | Desember | sepak bola | korban kebingungan \\m\/ |","protected":false,"verified":false,"followers_count":197,"friends_count":195,"listed_count":0,"favourites_count":3,"statuses_count":5815,"created_at":"Sat Dec 03 21:36:50 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/837131397\/98fccb8dd8c640ff27dd8952c50d00de.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/837131397\/98fccb8dd8c640ff27dd8952c50d00de.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660782183737524225\/gzXQAFNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660782183737524225\/gzXQAFNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427707316\/1404546671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663722353206140928,"quoted_status_id_str":"663722353206140928","quoted_status":{"created_at":"Mon Nov 09 14:18:35 +0000 2015","id":663722353206140928,"id_str":"663722353206140928","text":"Gian Zola, Febri Hariyadi Dan Sidik Permana siap tampil maksimal pada Piala Jendral Sudirman #persib #maungngora https:\/\/t.co\/oYUnQjhWhB","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14372726,"id_str":"14372726","name":"PERSIB","screen_name":"persib","location":"Bandung","url":"http:\/\/persib.co.id","description":"The Official Twitter of PERSIB Bandung","protected":false,"verified":false,"followers_count":1586575,"friends_count":94,"listed_count":1047,"favourites_count":15,"statuses_count":9922,"created_at":"Sun Apr 13 03:30:47 +0000 2008","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B4BAD4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/43286336\/LogoPersib.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/43286336\/LogoPersib.png","profile_background_tile":true,"profile_link_color":"0088FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620872148173766656\/Cu88oWlx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620872148173766656\/Cu88oWlx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14372726\/1442988757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"persib","indices":[93,100]},{"text":"maungngora","indices":[101,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722352857993216,"id_str":"663722352857993216","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD9p-WUAA5r6g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD9p-WUAA5r6g.jpg","url":"https:\/\/t.co\/oYUnQjhWhB","display_url":"pic.twitter.com\/oYUnQjhWhB","expanded_url":"http:\/\/twitter.com\/persib\/status\/663722353206140928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":683,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722352857993216,"id_str":"663722352857993216","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD9p-WUAA5r6g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD9p-WUAA5r6g.jpg","url":"https:\/\/t.co\/oYUnQjhWhB","display_url":"pic.twitter.com\/oYUnQjhWhB","expanded_url":"http:\/\/twitter.com\/persib\/status\/663722353206140928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":683,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0x0f255Zew","expanded_url":"https:\/\/twitter.com\/persib\/status\/663722353206140928","display_url":"twitter.com\/persib\/status\/\u2026","indices":[89,112]}],"user_mentions":[{"screen_name":"irmansss_","name":"irman firmansyah","id":592434170,"id_str":"592434170","indices":[0,10]},{"screen_name":"fajariskandaar","name":"BLUE TRACE","id":396315675,"id_str":"396315675","indices":[11,26]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080056665"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980418461696,"id_str":"663727980418461696","text":"These Rick Grimes Dad Jokes Will Make You LOL. https:\/\/t.co\/upbboDbsgg https:\/\/t.co\/cQbrBxfpmw","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003etravelerclever\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317322557,"id_str":"317322557","name":"Olive Hogan","screen_name":"travelerclever","location":"Mesa\r","url":null,"description":"Proud social media junkie. Avid thinker. Coffee fan. Typical beer scholar. Troublemaker. Student.","protected":false,"verified":false,"followers_count":2139,"friends_count":2483,"listed_count":17,"favourites_count":0,"statuses_count":2724,"created_at":"Tue Jun 14 19:23:37 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580514173450358787\/DEmBulN__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580514173450358787\/DEmBulN__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317322557\/1427240362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/upbboDbsgg","expanded_url":"http:\/\/bit.ly\/1k82lqP","display_url":"bit.ly\/1k82lqP","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":663727980296843264,"id_str":"663727980296843264","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFN0UsAA5FVD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFN0UsAA5FVD.jpg","url":"https:\/\/t.co\/cQbrBxfpmw","display_url":"pic.twitter.com\/cQbrBxfpmw","expanded_url":"http:\/\/twitter.com\/travelerclever\/status\/663727980418461696\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":313,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727980296843264,"id_str":"663727980296843264","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFN0UsAA5FVD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFN0UsAA5FVD.jpg","url":"https:\/\/t.co\/cQbrBxfpmw","display_url":"pic.twitter.com\/cQbrBxfpmw","expanded_url":"http:\/\/twitter.com\/travelerclever\/status\/663727980418461696\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":313,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056658"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980447944704,"id_str":"663727980447944704","text":"We are giving away F_R_E_E IO HAWK Hoverboards for our social promotion! Just answer 4 simple questions! YES THAT S\u2026 https:\/\/t.co\/fJRAp0l0Ej","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3949171642,"id_str":"3949171642","name":"Swegway","screen_name":"swegwaySwag","location":"London, England","url":"https:\/\/swegway.io","description":"#Swegway","protected":false,"verified":false,"followers_count":70,"friends_count":0,"listed_count":33,"favourites_count":1,"statuses_count":8468,"created_at":"Tue Oct 13 19:20:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654014064985706496\/dW_0Psvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654014064985706496\/dW_0Psvx_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727979437101056,"id_str":"663727979437101056","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKnWEAAi3Vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKnWEAAi3Vd.jpg","url":"https:\/\/t.co\/fJRAp0l0Ej","display_url":"pic.twitter.com\/fJRAp0l0Ej","expanded_url":"http:\/\/twitter.com\/swegwaySwag\/status\/663727980447944704\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727979437101056,"id_str":"663727979437101056","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKnWEAAi3Vd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKnWEAAi3Vd.jpg","url":"https:\/\/t.co\/fJRAp0l0Ej","display_url":"pic.twitter.com\/fJRAp0l0Ej","expanded_url":"http:\/\/twitter.com\/swegwaySwag\/status\/663727980447944704\/photo\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056665"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980414414848,"id_str":"663727980414414848","text":"I want Selena to perform for the Exotic butterflies & pink USA https:\/\/t.co\/H2IvZ8gt1r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2659799918,"id_str":"2659799918","name":"Gigi Hadid","screen_name":"YoureNotSelena","location":"you're beautiful \u2661","url":"http:\/\/selenagomez.com","description":"\u25d0 #BuyRevivalOniTunes \u25d0\r\n\r\n\r\n \r\nCody Simpson followed 1\/2\/15.","protected":false,"verified":false,"followers_count":1282,"friends_count":2030,"listed_count":10,"favourites_count":881,"statuses_count":15634,"created_at":"Sat Jul 19 15:54:27 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663461901859426305\/Hh4n6v_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663461901859426305\/Hh4n6v_7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2659799918\/1446789894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727976639524865,"id_str":"663727976639524865","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFAMWcAEY4Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFAMWcAEY4Ac.jpg","url":"https:\/\/t.co\/H2IvZ8gt1r","display_url":"pic.twitter.com\/H2IvZ8gt1r","expanded_url":"http:\/\/twitter.com\/YoureNotSelena\/status\/663727980414414848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":522,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":666,"h":1024,"resize":"fit"},"medium":{"w":600,"h":922,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727976639524865,"id_str":"663727976639524865","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFAMWcAEY4Ac.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFAMWcAEY4Ac.jpg","url":"https:\/\/t.co\/H2IvZ8gt1r","display_url":"pic.twitter.com\/H2IvZ8gt1r","expanded_url":"http:\/\/twitter.com\/YoureNotSelena\/status\/663727980414414848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":522,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":666,"h":1024,"resize":"fit"},"medium":{"w":600,"h":922,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056657"} +{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980452167680,"id_str":"663727980452167680","text":"THE ELUSIVE SPOOKY CAT HAS VISITED MY YARD SEVEN TIMES AND I AM YET TO SPOT HIM https:\/\/t.co\/GKSAdHAfl4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882003667,"id_str":"2882003667","name":"goddess of mocha","screen_name":"majestic_harri","location":"Land of Ooo","url":null,"description":"19. realist. feminist. pans. nihilist. sub-streamer. cartoon enthusiast. naive. left wing.","protected":false,"verified":false,"followers_count":1307,"friends_count":1796,"listed_count":0,"favourites_count":2737,"statuses_count":5063,"created_at":"Tue Nov 18 01:44:12 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535864673560567808\/3zupTbWB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535864673560567808\/3zupTbWB.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659135044288671748\/92WTybwg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659135044288671748\/92WTybwg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882003667\/1445984977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727971904176128,"id_str":"663727971904176128","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEujWwAAdnBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEujWwAAdnBH.jpg","url":"https:\/\/t.co\/GKSAdHAfl4","display_url":"pic.twitter.com\/GKSAdHAfl4","expanded_url":"http:\/\/twitter.com\/majestic_harri\/status\/663727980452167680\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727971904176128,"id_str":"663727971904176128","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEujWwAAdnBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEujWwAAdnBH.jpg","url":"https:\/\/t.co\/GKSAdHAfl4","display_url":"pic.twitter.com\/GKSAdHAfl4","expanded_url":"http:\/\/twitter.com\/majestic_harri\/status\/663727980452167680\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080056666"} +{"delete":{"status":{"id":663727942694924288,"id_str":"663727942694924288","user_id":147594181,"user_id_str":"147594181"},"timestamp_ms":"1447080057325"}} +{"delete":{"status":{"id":649162676770205696,"id_str":"649162676770205696","user_id":108667914,"user_id_str":"108667914"},"timestamp_ms":"1447080057392"}} +{"delete":{"status":{"id":644865582974676996,"id_str":"644865582974676996","user_id":1043920470,"user_id_str":"1043920470"},"timestamp_ms":"1447080057611"}} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984638099456,"id_str":"663727984638099456","text":"RT @inesrebelop: Tenho medo de come\u00e7ar a andar e trope\u00e7ar nas minhas olheiras","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3091853393,"id_str":"3091853393","name":"\u5361\u7f85\u7433","screen_name":"taomeutasfixe","location":null,"url":null,"description":"v\u00e3o passear.","protected":false,"verified":false,"followers_count":488,"friends_count":292,"listed_count":1,"favourites_count":10361,"statuses_count":18836,"created_at":"Sat Mar 14 23:25:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653702106680041472\/UhkTPN4-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653702106680041472\/UhkTPN4-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3091853393\/1442719339","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:25 +0000 2015","id":663727597050798080,"id_str":"663727597050798080","text":"Tenho medo de come\u00e7ar a andar e trope\u00e7ar nas minhas olheiras","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69855434,"id_str":"69855434","name":"Shakur","screen_name":"inesrebelop","location":"Dentro do teu arm\u00e1rio","url":"http:\/\/www.arrotapelintrafaztelorde.blogspot.pt","description":"Escrevi um bestseller que \u00e9 a hist\u00f3ria de uma sanita encantada. Como cascas de \u00e1rvores. Tenho fobia a monges. N\u00e3o sei dizer os L's. #VerdaRapTuga","protected":false,"verified":false,"followers_count":7140,"friends_count":173,"listed_count":6,"favourites_count":20202,"statuses_count":45570,"created_at":"Sat Aug 29 12:16:43 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/821601080\/22b665140c4e925b57ef983f2cdcd941.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/821601080\/22b665140c4e925b57ef983f2cdcd941.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"4912E0","profile_text_color":"F50541","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661284111944953860\/ub3MHTls_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661284111944953860\/ub3MHTls_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69855434\/1441567436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inesrebelop","name":"Shakur","id":69855434,"id_str":"69855434","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080057664"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984617119746,"id_str":"663727984617119746","text":"RT @Nene_Dominguez: Los lunes no tengo resaca, tengo nostalgia. Una dulce y abrasadora nostalgia, https:\/\/t.co\/ah6EzBbqy3","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":257588345,"id_str":"257588345","name":"Santi Bellido","screen_name":"Santi9922","location":"Sherry","url":"http:\/\/www.deinterescofrade.es\/","description":"16.Cofrade,Fagotista,Madridista y Carnavalero. Soy el que vais a oir, no el que os hayan dicho. Sagrada Cena y Carmen Coronada.","protected":false,"verified":false,"followers_count":642,"friends_count":936,"listed_count":4,"favourites_count":1217,"statuses_count":20299,"created_at":"Fri Feb 25 19:09:12 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116827902\/fe6e8cad76f4ac2d974c3de6c739f74a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116827902\/fe6e8cad76f4ac2d974c3de6c739f74a.png","profile_background_tile":true,"profile_link_color":"E82A2A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592796389941325824\/q-rESayq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592796389941325824\/q-rESayq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/257588345\/1398507614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:07:30 +0000 2015","id":663644069718056960,"id_str":"663644069718056960","text":"Los lunes no tengo resaca, tengo nostalgia. Una dulce y abrasadora nostalgia, https:\/\/t.co\/ah6EzBbqy3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339587821,"id_str":"339587821","name":"Nene Dom\u00ednguez \ufee5","screen_name":"Nene_Dominguez","location":null,"url":"http:\/\/www.elblogdenenedominguez.blogspot.com","description":"Profesor de Geografia e Historia en Secundaria. Acr\u00f3bata del boli rojo. Y mon\u00e1rquico de Carlos III, con cola.","protected":false,"verified":false,"followers_count":1014,"friends_count":364,"listed_count":12,"favourites_count":6134,"statuses_count":12366,"created_at":"Thu Jul 21 10:21:24 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663072751280906240\/VkT8KNm7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663072751280906240\/VkT8KNm7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339587821\/1438814141","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663644063258845184,"id_str":"663644063258845184","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","url":"https:\/\/t.co\/ah6EzBbqy3","display_url":"pic.twitter.com\/ah6EzBbqy3","expanded_url":"http:\/\/twitter.com\/Nene_Dominguez\/status\/663644069718056960\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":600,"h":283,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663644063258845184,"id_str":"663644063258845184","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","url":"https:\/\/t.co\/ah6EzBbqy3","display_url":"pic.twitter.com\/ah6EzBbqy3","expanded_url":"http:\/\/twitter.com\/Nene_Dominguez\/status\/663644069718056960\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":600,"h":283,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nene_Dominguez","name":"Nene Dom\u00ednguez \ufee5","id":339587821,"id_str":"339587821","indices":[3,18]}],"symbols":[],"media":[{"id":663644063258845184,"id_str":"663644063258845184","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","url":"https:\/\/t.co\/ah6EzBbqy3","display_url":"pic.twitter.com\/ah6EzBbqy3","expanded_url":"http:\/\/twitter.com\/Nene_Dominguez\/status\/663644069718056960\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":600,"h":283,"resize":"fit"}},"source_status_id":663644069718056960,"source_status_id_str":"663644069718056960","source_user_id":339587821,"source_user_id_str":"339587821"}]},"extended_entities":{"media":[{"id":663644063258845184,"id_str":"663644063258845184","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW8wmfXIAAuxE9.jpg","url":"https:\/\/t.co\/ah6EzBbqy3","display_url":"pic.twitter.com\/ah6EzBbqy3","expanded_url":"http:\/\/twitter.com\/Nene_Dominguez\/status\/663644069718056960\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":160,"resize":"fit"},"medium":{"w":600,"h":283,"resize":"fit"}},"source_status_id":663644069718056960,"source_status_id_str":"663644069718056960","source_user_id":339587821,"source_user_id_str":"339587821"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612913152,"id_str":"663727984612913152","text":"Putaquepariu que t\u00e9dio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330774219,"id_str":"330774219","name":"g\u00f3tica suaver","screen_name":"nacruthh","location":"Goi\u00e2nia. ","url":null,"description":"turn on my notifications","protected":false,"verified":false,"followers_count":2592,"friends_count":2026,"listed_count":1,"favourites_count":40521,"statuses_count":46670,"created_at":"Thu Jul 07 04:02:11 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541975627197198337\/wz1kNJV0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541975627197198337\/wz1kNJV0.png","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661558058758352896\/Vg3YNX7t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661558058758352896\/Vg3YNX7t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330774219\/1446130196","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984617103360,"id_str":"663727984617103360","text":"RT @Adma22: \u0627\u0628\u063a\u0649 \u062d\u0628\u0648\u0628 \u062a\u062e\u0644\u064a \u0645\u062e\u064a \u064a\u0642\u0641\u0644 \u0634\u0648\u064a \u0645\u0627 \u0627\u0628\u063a\u0649 \u0627\u0641\u0643\u0631 \u062a\u0639\u0628\u062a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":716047466,"id_str":"716047466","name":"Mema.","screen_name":"iMema7","location":"NEVERLAND ","url":null,"description":"\u0643\u064f\u0644 \u0645\u0627\u064a\u064f\u0643\u062a\u0653\u0628 \u0647\u0646\u0627 \u0644\u064a\u0633 \u0644\u0643 \u0628\u0647 \u0639\u0644\u0627\u0642\u0629 | \u2652\ufe0f.","protected":false,"verified":false,"followers_count":464,"friends_count":151,"listed_count":2,"favourites_count":217,"statuses_count":30527,"created_at":"Wed Jul 25 13:14:50 +0000 2012","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/833226802\/4e143034a198a8acbe3a5e3ef526a0b2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/833226802\/4e143034a198a8acbe3a5e3ef526a0b2.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627760287245049856\/b0finTU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627760287245049856\/b0finTU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/716047466\/1436925369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:15 +0000 2015","id":663717488211984385,"id_str":"663717488211984385","text":"\u0627\u0628\u063a\u0649 \u062d\u0628\u0648\u0628 \u062a\u062e\u0644\u064a \u0645\u062e\u064a \u064a\u0642\u0641\u0644 \u0634\u0648\u064a \u0645\u0627 \u0627\u0628\u063a\u0649 \u0627\u0641\u0643\u0631 \u062a\u0639\u0628\u062a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241871883,"id_str":"241871883","name":"\u0623\u062f\u0645\u0627\u0621","screen_name":"Adma22","location":"Saudi Arabia","url":null,"description":"Je pense, donc je suis","protected":false,"verified":false,"followers_count":816,"friends_count":171,"listed_count":2,"favourites_count":8649,"statuses_count":14186,"created_at":"Sun Jan 23 10:20:57 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C5C1C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/766091115\/77ae05f80829c4e49add0f985de9a772.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/766091115\/77ae05f80829c4e49add0f985de9a772.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"34024D","profile_text_color":"D90D76","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597237803110432768\/RKCICxD6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597237803110432768\/RKCICxD6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241871883\/1445669625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Adma22","name":"\u0623\u062f\u0645\u0627\u0621","id":241871883,"id_str":"241871883","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608731136,"id_str":"663727984608731136","text":"RT @bomani_jones: attacking double standards without irony while benefiting from them more than anyone else is always hilarious.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201523963,"id_str":"201523963","name":"Wazz Jashington","screen_name":"AkamaiWikiwiki","location":"Detroit","url":null,"description":"My potential is limitless, So I work hard and keep my mind open to all possibilities. Everything I do will move me towards my goals. #Progression #AintIStrong","protected":false,"verified":false,"followers_count":177,"friends_count":749,"listed_count":1,"favourites_count":936,"statuses_count":7519,"created_at":"Tue Oct 12 01:29:01 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/393585673\/M_Sparty.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/393585673\/M_Sparty.jpg","profile_background_tile":true,"profile_link_color":"FA0505","profile_sidebar_border_color":"F50808","profile_sidebar_fill_color":"0F0E0E","profile_text_color":"F50505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655930562641817600\/oDB5TF-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655930562641817600\/oDB5TF-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201523963\/1445221008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727891340009473,"id_str":"663727891340009473","text":"attacking double standards without irony while benefiting from them more than anyone else is always hilarious.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21129105,"id_str":"21129105","name":"El Flaco","screen_name":"bomani_jones","location":"Miami Beach, FL","url":"http:\/\/www.bomanijones.com\/contact\/","description":"i leave that to the brothers with the funny haircuts","protected":false,"verified":true,"followers_count":274146,"friends_count":3971,"listed_count":4293,"favourites_count":1276,"statuses_count":301208,"created_at":"Tue Feb 17 20:53:46 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661191533668921344\/LEbko1mt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661191533668921344\/LEbko1mt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21129105\/1408488885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bomani_jones","name":"El Flaco","id":21129105,"id_str":"21129105","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642301952,"id_str":"663727984642301952","text":"RT @yeah_baaddy: strathy uni wisdom https:\/\/t.co\/KbUoAxxkED","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1638035281,"id_str":"1638035281","name":"SarahSarahSarah","screen_name":"_Sarah_221B","location":null,"url":null,"description":"My love for Elizabeth Bennet knows no bounds","protected":false,"verified":false,"followers_count":246,"friends_count":597,"listed_count":1,"favourites_count":2200,"statuses_count":3228,"created_at":"Thu Aug 01 13:40:59 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627523340836687872\/IFW18Mbj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627523340836687872\/IFW18Mbj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1638035281\/1416912147","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 12:58:07 +0000 2015","id":661890165183508480,"id_str":"661890165183508480","text":"strathy uni wisdom https:\/\/t.co\/KbUoAxxkED","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":948622098,"id_str":"948622098","name":"david gemmell","screen_name":"yeah_baaddy","location":null,"url":null,"description":"http:\/\/instagram.com\/davidgemmell","protected":false,"verified":false,"followers_count":667,"friends_count":401,"listed_count":0,"favourites_count":3201,"statuses_count":4638,"created_at":"Wed Nov 14 22:43:15 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578951267755634689\/e2dJK9RI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578951267755634689\/e2dJK9RI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/948622098\/1443029664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1108,"favorite_count":1901,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661889934886875136,"id_str":"661889934886875136","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","url":"https:\/\/t.co\/KbUoAxxkED","display_url":"pic.twitter.com\/KbUoAxxkED","expanded_url":"http:\/\/twitter.com\/yeah_baaddy\/status\/661890165183508480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661889934886875136,"id_str":"661889934886875136","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","url":"https:\/\/t.co\/KbUoAxxkED","display_url":"pic.twitter.com\/KbUoAxxkED","expanded_url":"http:\/\/twitter.com\/yeah_baaddy\/status\/661890165183508480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yeah_baaddy","name":"david gemmell","id":948622098,"id_str":"948622098","indices":[3,15]}],"symbols":[],"media":[{"id":661889934886875136,"id_str":"661889934886875136","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","url":"https:\/\/t.co\/KbUoAxxkED","display_url":"pic.twitter.com\/KbUoAxxkED","expanded_url":"http:\/\/twitter.com\/yeah_baaddy\/status\/661890165183508480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":661890165183508480,"source_status_id_str":"661890165183508480","source_user_id":948622098,"source_user_id_str":"948622098"}]},"extended_entities":{"media":[{"id":661889934886875136,"id_str":"661889934886875136","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-BY5FWsAAwrOf.jpg","url":"https:\/\/t.co\/KbUoAxxkED","display_url":"pic.twitter.com\/KbUoAxxkED","expanded_url":"http:\/\/twitter.com\/yeah_baaddy\/status\/661890165183508480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":661890165183508480,"source_status_id_str":"661890165183508480","source_user_id":948622098,"source_user_id_str":"948622098"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608739328,"id_str":"663727984608739328","text":"RT @Juniorlooost93: sigo todos de volta ! #tim #timbeta #operacaobetalab #sdv #RT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223768311,"id_str":"3223768311","name":"Araujo#betalab","screen_name":"ACardoso197","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1853,"friends_count":2042,"listed_count":2,"favourites_count":14,"statuses_count":9949,"created_at":"Thu Apr 30 08:13:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652483712886640640\/xxzWGDFh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652483712886640640\/xxzWGDFh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223768311\/1430385149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:30:26 +0000 2015","id":663121359455838208,"id_str":"663121359455838208","text":"sigo todos de volta ! #tim #timbeta #operacaobetalab #sdv #RT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3046699789,"id_str":"3046699789","name":"Junior Tim Beta","screen_name":"Juniorlooost93","location":null,"url":null,"description":"Bitch, dant kill my vibe","protected":false,"verified":false,"followers_count":309,"friends_count":395,"listed_count":0,"favourites_count":434,"statuses_count":1056,"created_at":"Fri Feb 27 14:05:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618942872893698051\/02gHMoRd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618942872893698051\/02gHMoRd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3046699789\/1425046444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":0,"entities":{"hashtags":[{"text":"tim","indices":[22,26]},{"text":"timbeta","indices":[27,35]},{"text":"operacaobetalab","indices":[36,52]},{"text":"sdv","indices":[54,58]},{"text":"RT","indices":[59,62]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tim","indices":[42,46]},{"text":"timbeta","indices":[47,55]},{"text":"operacaobetalab","indices":[56,72]},{"text":"sdv","indices":[74,78]},{"text":"RT","indices":[79,82]}],"urls":[],"user_mentions":[{"screen_name":"Juniorlooost93","name":"Junior Tim Beta","id":3046699789,"id_str":"3046699789","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608694272,"id_str":"663727984608694272","text":"RT @NoticiasVenezue: \u00a1CAMPA\u00d1A SUCIA! Los trucos del chavismo para evitar una cat\u00e1strofe electoral (Detalles) https:\/\/t.co\/R8DqwjbMtt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117540823,"id_str":"117540823","name":"Emilmar Rojo","screen_name":"dikiyeya","location":null,"url":null,"description":"Ingeniero Civil, egresada de la UCLA , madre de una bella ni\u00f1a, Venezolana, luchadora , opositora,deseo que todos tengamos las oportunidades en Democracia","protected":false,"verified":false,"followers_count":308,"friends_count":698,"listed_count":0,"favourites_count":62,"statuses_count":898,"created_at":"Thu Feb 25 21:45:58 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3736461882\/bc137875a994c73266b8742a7ae765b0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3736461882\/bc137875a994c73266b8742a7ae765b0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:02 +0000 2015","id":663725992305942529,"id_str":"663725992305942529","text":"\u00a1CAMPA\u00d1A SUCIA! Los trucos del chavismo para evitar una cat\u00e1strofe electoral (Detalles) https:\/\/t.co\/R8DqwjbMtt","source":"\u003ca href=\"http:\/\/actualidadvenezuela.org\" rel=\"nofollow\"\u003eActualidad Venezuela\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42832810,"id_str":"42832810","name":"Noticias Venezuela","screen_name":"NoticiasVenezue","location":"Caracas, Venezuela","url":"http:\/\/noticiasvenezuela.org\/","description":"Noticias ciudadanas de Venezuela y el Mundo http:\/\/noticiasdevenezuela.org","protected":false,"verified":false,"followers_count":522483,"friends_count":73457,"listed_count":3263,"favourites_count":72,"statuses_count":1107405,"created_at":"Wed May 27 06:50:45 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"510800","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/694973330\/e2d1562b9a36c8499a34459cf373d0f9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/694973330\/e2d1562b9a36c8499a34459cf373d0f9.jpeg","profile_background_tile":true,"profile_link_color":"A16A23","profile_sidebar_border_color":"3D0702","profile_sidebar_fill_color":"2C1703","profile_text_color":"E0912A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1648393748\/NV112011_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1648393748\/NV112011_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42832810\/1430309926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R8DqwjbMtt","expanded_url":"http:\/\/actualidadvenezuela.org\/2015\/11\/09\/campana-sucia-los-trucos-del-chavismo-para-evitar-una-catastrofe-electoral-detalles\/","display_url":"actualidadvenezuela.org\/2015\/11\/09\/cam\u2026","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R8DqwjbMtt","expanded_url":"http:\/\/actualidadvenezuela.org\/2015\/11\/09\/campana-sucia-los-trucos-del-chavismo-para-evitar-una-catastrofe-electoral-detalles\/","display_url":"actualidadvenezuela.org\/2015\/11\/09\/cam\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"NoticiasVenezue","name":"Noticias Venezuela","id":42832810,"id_str":"42832810","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984625455104,"id_str":"663727984625455104","text":"Con ganas de gomosearte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994431914,"id_str":"2994431914","name":"Mica \u2655","screen_name":"Miculopz","location":"Buenos Aires, Argentina","url":null,"description":"(16.) Nicol\u00e1s y nada m\u00e1s. 04-01-2015 \u2764","protected":false,"verified":false,"followers_count":366,"friends_count":322,"listed_count":0,"favourites_count":3708,"statuses_count":11761,"created_at":"Fri Jan 23 16:42:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662430298072875008\/Bt2qFJKo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662430298072875008\/Bt2qFJKo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994431914\/1445746705","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057661"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642256896,"id_str":"663727984642256896","text":"@thermo4you ich antworte: haben sie ein L\u00e4tzchen dabei?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727160906137604,"in_reply_to_status_id_str":"663727160906137604","in_reply_to_user_id":3200987391,"in_reply_to_user_id_str":"3200987391","in_reply_to_screen_name":"681343ab6c80441","user":{"id":3200987391,"id_str":"3200987391","name":"CHF","screen_name":"681343ab6c80441","location":null,"url":null,"description":"Weltverbesserer und Idealist","protected":false,"verified":false,"followers_count":255,"friends_count":1309,"listed_count":9,"favourites_count":1342,"statuses_count":1643,"created_at":"Fri Apr 24 12:31:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600671604398514176\/qHYbHIbX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600671604398514176\/qHYbHIbX_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thermo4you","name":"titania","id":3404033123,"id_str":"3404033123","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984617119745,"id_str":"663727984617119745","text":"RT @_gsacramento: um acidente grave aqui \nbateu\na\nvontade\nde\nbejar sua boca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882829575,"id_str":"2882829575","name":"Victor Marcondes","screen_name":"badboyl3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":126,"listed_count":0,"favourites_count":257,"statuses_count":144,"created_at":"Tue Nov 18 16:50:45 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633038670686236672\/1mO6V_k9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633038670686236672\/1mO6V_k9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2882829575\/1445698225","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:06 +0000 2015","id":663723240536326144,"id_str":"663723240536326144","text":"um acidente grave aqui \nbateu\na\nvontade\nde\nbejar sua boca","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90725568,"id_str":"90725568","name":"Gabriel Sacramento","screen_name":"_gsacramento","location":"011","url":"http:\/\/instagram.com\/_gsacramento","description":"Muitos v\u00e3o me julgar sem ao menos me conhecer, ent\u00e3o antes de julgar irm\u00e3o, cala a boca e faz metade. \/ @PQPARlU \/ snapchat: gsacramento","protected":false,"verified":false,"followers_count":79359,"friends_count":42880,"listed_count":22,"favourites_count":4235,"statuses_count":65306,"created_at":"Tue Nov 17 21:35:55 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"116423","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635037159460835328\/8-vHfNye.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635037159460835328\/8-vHfNye.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648976839956934656\/Y9vaHn7D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648976839956934656\/Y9vaHn7D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90725568\/1446729182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":327,"favorite_count":133,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_gsacramento","name":"Gabriel Sacramento","id":90725568,"id_str":"90725568","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984625524737,"id_str":"663727984625524737","text":"Weer eens wat anders: #Pepernotenkroket met #chocoladesaus. https:\/\/t.co\/SCvFBtampp","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":800416776,"id_str":"800416776","name":"Nolda Straatman","screen_name":"StraatmanNolda","location":"Groningen","url":"http:\/\/nl.linkedin.com\/in\/noldastraatman\/","description":"Redacteur, Auteur, Blogger, Recensent, Cultuur en Lifestyle Projecten, Community Manager, Social media, Historie, Cultuur, Reizen, Lifestyle","protected":false,"verified":false,"followers_count":222,"friends_count":373,"listed_count":15,"favourites_count":9,"statuses_count":1304,"created_at":"Mon Sep 03 13:33:56 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460732938087190529\/BnsRlHpv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460732938087190529\/BnsRlHpv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/800416776\/1398682247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pepernotenkroket","indices":[22,39]},{"text":"chocoladesaus","indices":[44,58]}],"urls":[{"url":"https:\/\/t.co\/SCvFBtampp","expanded_url":"http:\/\/ow.ly\/Uhofp","display_url":"ow.ly\/Uhofp","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080057661"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621264896,"id_str":"663727984621264896","text":"Nosde https:\/\/t.co\/Eo9C3jepJE","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362178803,"id_str":"2362178803","name":"\u2020 Horrorfilia \u2020","screen_name":"HorrorfiliaCrow","location":null,"url":null,"description":"\u2523\u2587\u2587\u2587\u2550\u2500 Tu dosis diaria de Horror | Terror | Bizarre |Gore |Creepypastas|Videos | y mas...|\r\nArt in Horror |Due\u00f1o: Katrina Crow.|http:\/\/t.co\/X6t0pDU2DB","protected":false,"verified":false,"followers_count":21,"friends_count":12,"listed_count":0,"favourites_count":1,"statuses_count":15804,"created_at":"Wed Feb 26 05:17:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438745269421604865\/xU_Oyyjk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438745269421604865\/xU_Oyyjk.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438737308704342016\/9mP168er_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438737308704342016\/9mP168er_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362178803\/1440029387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Eo9C3jepJE","expanded_url":"http:\/\/fb.me\/6OAURaTFm","display_url":"fb.me\/6OAURaTFm","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057660"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984633712640,"id_str":"663727984633712640","text":"RT @Do_lv0408: @MnetMAMA \uc548\ub155\ud558\uc138\uc624 \ub9c8\ub9c8 #2015MAMA \uc5d0\uc11c #EXO \uc0c1\uc8fc\uc138\uc694 \ub0b4\ub144\uc5d0 \uc774\ub7f0\uac70 \uc548\ud588\uc73c\uba74 \uc88b\uaca0\uc5b4\uc694 \uc774\uac8c 10\uc54c\ud2f0\uac00 \ub118\uc744\uae4c #CallMeBaby \ub85c \uc5d1\uc18c \uc0c1\ubc1b\uc790\uc694 5\uc904 \ub108\ubb34\ud55c\uac70 \uc544\ub2d9\ub2c8\uae4c \uc774\ub807\uac8c\uae4c\uc9c0 \ud588\uc73c\uba74 \uc0c1\uc8fc\uc138\uc694 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2958823230,"id_str":"2958823230","name":"\uc54c\ud2f0\ud558\ub2e4\ud648\ub9c8\uc0ac\uc9c4\ubabb\ubcf4\uaca0\ub124\ub9c8\ub9c8\uc528\ubc1c\ub144","screen_name":"1304_01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":33,"listed_count":0,"favourites_count":0,"statuses_count":163,"created_at":"Sun Jan 04 20:49:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722901749653504\/1vC-QC4x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722901749653504\/1vC-QC4x_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:16 +0000 2015","id":663727811341844481,"id_str":"663727811341844481","text":"@MnetMAMA \uc548\ub155\ud558\uc138\uc624 \ub9c8\ub9c8 #2015MAMA \uc5d0\uc11c #EXO \uc0c1\uc8fc\uc138\uc694 \ub0b4\ub144\uc5d0 \uc774\ub7f0\uac70 \uc548\ud588\uc73c\uba74 \uc88b\uaca0\uc5b4\uc694 \uc774\uac8c 10\uc54c\ud2f0\uac00 \ub118\uc744\uae4c #CallMeBaby \ub85c \uc5d1\uc18c \uc0c1\ubc1b\uc790\uc694 5\uc904 \ub108\ubb34\ud55c\uac70 \uc544\ub2d9\ub2c8\uae4c \uc774\ub807\uac8c\uae4c\uc9c0 \ud588\uc73c\uba74 \uc0c1\uc8fc\uc138\uc694 \ub9c8\ub9c8 \uc0ac\ub791\ud574\uc694","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":128487133,"in_reply_to_user_id_str":"128487133","in_reply_to_screen_name":"MnetMAMA","user":{"id":3097978154,"id_str":"3097978154","name":"\ub9e4\ub85d \u270c","screen_name":"Do_lv0408","location":"\uc790\uc0b4930112","url":null,"description":"\uac70\uc758 RT\/ RPS \/ \uc218\ub140 \/ \ub9de\ud314\uba58\uc158","protected":false,"verified":false,"followers_count":66,"friends_count":839,"listed_count":0,"favourites_count":857,"statuses_count":1508,"created_at":"Thu Mar 19 13:50:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663648988856324096\/DKqw59-I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663648988856324096\/DKqw59-I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3097978154\/1438667093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[19,28]},{"text":"EXO","indices":[32,36]},{"text":"CallMeBaby","indices":[73,84]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[34,43]},{"text":"EXO","indices":[47,51]},{"text":"CallMeBaby","indices":[88,99]}],"urls":[],"user_mentions":[{"screen_name":"Do_lv0408","name":"\ub9e4\ub85d \u270c","id":3097978154,"id_str":"3097978154","indices":[3,13]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080057663"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984616976384,"id_str":"663727984616976384","text":"\u5c11\u30cf\u30ea\u3067\u4e0b\u534a\u8eab\u53cd\u5fdc\u3057\u305f\u3089\u30e4\u30d0\u3044\u3067\u3057\u3087\u2026","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168554432,"id_str":"168554432","name":"\u3068\u3057\u3092","screen_name":"10shiwo","location":null,"url":null,"description":"\u631f\u307e\u308c\u308b\u306a\u3089\u3001\u592a\u3082\u3082\u304b\u3001\u304a\u3063\u3071\u3044\u304b\u3001","protected":false,"verified":false,"followers_count":408,"friends_count":432,"listed_count":54,"favourites_count":8948,"statuses_count":53907,"created_at":"Tue Jul 20 06:27:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5DFF3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610179859\/2a51cluha5xhbppu59cv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610179859\/2a51cluha5xhbppu59cv.jpeg","profile_background_tile":true,"profile_link_color":"3BAAF5","profile_sidebar_border_color":"F0FFFD","profile_sidebar_fill_color":"FFF7FE","profile_text_color":"4F2F49","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595618844762308609\/_85s2-IO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595618844762308609\/_85s2-IO_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629551104,"id_str":"663727984629551104","text":"RT @SolaSoless: \u0e44\u0e2d\u0e49\u0e2a\u0e31\u0e2a \u0e40\u0e1f\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517200843,"id_str":"517200843","name":"T A I","screen_name":"kamphaengkaew","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":794,"friends_count":109,"listed_count":0,"favourites_count":490,"statuses_count":21266,"created_at":"Wed Mar 07 04:18:23 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDD6C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000029449528\/7251557225740452d08f82fa167fe27d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000029449528\/7251557225740452d08f82fa167fe27d.jpeg","profile_background_tile":true,"profile_link_color":"F08C11","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636921480295485440\/5Kt8LUDA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636921480295485440\/5Kt8LUDA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517200843\/1441685484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:11 +0000 2015","id":663724266320363520,"id_str":"663724266320363520","text":"\u0e44\u0e2d\u0e49\u0e2a\u0e31\u0e2a \u0e40\u0e1f\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897560860,"id_str":"2897560860","name":"\u0e42\u0e0b\u0e25\u0e48\u0e32","screen_name":"SolaSoless","location":null,"url":null,"description":"\u0e42\u0e0b\u0e25\u0e48\u0e32 ceo of \u0e01\u0e36\u0e48\u0e21 brand IG : solascifi\n #\u0e01\u0e36\u0e48\u0e21\u0e04\u0e37\u0e2d\u0e41\u0e1a\u0e23\u0e19\u0e14\u0e4c\u0e17\u0e35\u0e48\u0e40\u0e2d\u0e32\u0e44\u0e27\u0e49\u0e02\u0e32\u0e22\u0e02\u0e2d\u0e07\u0e41\u0e15\u0e48\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e02\u0e2d\u0e07\u0e02\u0e32\u0e22","protected":false,"verified":false,"followers_count":296,"friends_count":198,"listed_count":0,"favourites_count":199,"statuses_count":10279,"created_at":"Wed Nov 12 14:12:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"339999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659238998489980928\/72rB22ZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659238998489980928\/72rB22ZH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897560860\/1446301544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SolaSoless","name":"\u0e42\u0e0b\u0e25\u0e48\u0e32","id":2897560860,"id_str":"2897560860","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984625500160,"id_str":"663727984625500160","text":"@puffindiaries really?! They're really not helping at all right now are they. Sending hugs x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663681161810550785,"in_reply_to_status_id_str":"663681161810550785","in_reply_to_user_id":429264790,"in_reply_to_user_id_str":"429264790","in_reply_to_screen_name":"puffindiaries","user":{"id":1640614843,"id_str":"1640614843","name":"3girlstogether","screen_name":"3girlstogether","location":null,"url":null,"description":"Single mum through adoption to my two girls http:\/\/3girlstogether.wordpress.com","protected":false,"verified":false,"followers_count":592,"friends_count":327,"listed_count":14,"favourites_count":4066,"statuses_count":4597,"created_at":"Fri Aug 02 14:30:47 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553375239183544320\/O85Y6_rU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553375239183544320\/O85Y6_rU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1640614843\/1414256175","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"puffindiaries","name":"Sarah","id":429264790,"id_str":"429264790","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057661"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629563393,"id_str":"663727984629563393","text":"\u0915\u094d\u092f\u093e \u0939\u093e\u0932 \u0939\u0947 \u091f\u094d\u0935\u093f\u091f\u0930 \u091c\u0928 \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420107538,"id_str":"2420107538","name":"Mystique","screen_name":"musumatic","location":"\u0939\u093e\u0935\u093e\u092a\u0941\u0930 ","url":"http:\/\/www.instagram.com\/usha.ahsu","description":"The Girl With Curly Hair~~~~","protected":false,"verified":false,"followers_count":1848,"friends_count":88,"listed_count":4,"favourites_count":8377,"statuses_count":11613,"created_at":"Mon Mar 31 06:32:57 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662919246301630464\/eUqlrHxL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662919246301630464\/eUqlrHxL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2420107538\/1443975448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642125824,"id_str":"663727984642125824","text":"\u3061\u3043\u305f\u3093\u306b\u60aa\u9b54\u59c9\u59b9\uff1f\u59c9\u3060\u3051\u304b\uff1f\uff1f\u63cf\u3044\u305f\u5e74\u8cc0\u72b6\u3042\u3052\u305f\u306a\u3041\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171094631,"id_str":"171094631","name":"\u308a\u306e\u306e\u306e\uff01","screen_name":"8209595","location":"\u304a\u3046\u3061\u3060\u3044\u3059\u304d","url":null,"description":"\u2605\u3086\u308b\u3086\u308b\u30f2\u30bf\u3063\u3066\u308b\u3002\u57fa\u672c\u96d1\u98df\u3002\u8150\u3063\u3066\u307e\u3059\u2026\u3002\u697d\u3057\u3044\u3053\u3068\u304c\u3057\u305f\u3044\u304a\u5e74\u3054\u308d\u3002","protected":false,"verified":false,"followers_count":118,"friends_count":223,"listed_count":5,"favourites_count":2010,"statuses_count":42481,"created_at":"Mon Jul 26 15:00:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419443475839324160\/FIdABchq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419443475839324160\/FIdABchq_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984637952001,"id_str":"663727984637952001","text":"\u4eca\u65e5\u306f\u5bdd\u308c\u308b...\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386732136,"id_str":"2386732136","name":"\u3061\u304d\u306e\u3053","screen_name":"ikuminosan918","location":"\u30b3\u30c3\u30da\u30d1\u30f3","url":null,"description":"\u300c\u30c1\u30ad\u30f3\u306a\u304d\u306e\u3053\u300d\u2192\u300c\u3061\u304d\u306e\u3053\u300d\n\u3044\u3084\u3041\u30fc\u3002\u307e\u3058\u30b3\u30c3\u30da\u30d1\u30f3(\uff5e '\u03c9' )\uff5e\u30c4\u30a4\u30fc\u30c8\u8352\u308c\u3066\u307e\u3059\u304c\u3088\u308d\u3057\u304f(\u00b4\u2200`)\n\u301c\u660e\u7d50\u56e3\u301c","protected":false,"verified":false,"followers_count":294,"friends_count":285,"listed_count":1,"favourites_count":330,"statuses_count":10206,"created_at":"Thu Mar 13 10:10:38 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658624335683293185\/DDa67AWQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658624335683293185\/DDa67AWQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386732136\/1446857733","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057664"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621162496,"id_str":"663727984621162496","text":"RT @HospiMadero: Somos lo que hacemos d\u00eda a dia. \nDe modo que la #excelencia no es un acto, sino un h\u00e1bito.\n\nArist\u00f3teles.\n\n#FraseDelDia \nEx\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137867916,"id_str":"137867916","name":"Dr. Zurita","screen_name":"AZSRock","location":"En el Corazon de la Republica!","url":null,"description":"Padawan de la Vida, trovador de caminos, aprendiz de humano, rockstar de la Medicina y firme creyente del GADU!!!","protected":false,"verified":false,"followers_count":1601,"friends_count":1897,"listed_count":10,"favourites_count":1126,"statuses_count":16045,"created_at":"Wed Apr 28 00:38:48 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522876258326433793\/kG7DEnF3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522876258326433793\/kG7DEnF3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137867916\/1377907232","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:52 +0000 2015","id":663727208943366144,"id_str":"663727208943366144","text":"Somos lo que hacemos d\u00eda a dia. \nDe modo que la #excelencia no es un acto, sino un h\u00e1bito.\n\nArist\u00f3teles.\n\n#FraseDelDia \nExcelente lunes!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4049822660,"id_str":"4049822660","name":"Hospital Fco iMadero","screen_name":"HospiMadero","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":18,"friends_count":111,"listed_count":0,"favourites_count":16,"statuses_count":34,"created_at":"Wed Oct 28 19:48:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659458621655248896\/Ulf3qI1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659458621655248896\/Ulf3qI1g_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"excelencia","indices":[48,59]},{"text":"FraseDelDia","indices":[106,118]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"excelencia","indices":[65,76]},{"text":"FraseDelDia","indices":[123,135]}],"urls":[],"user_mentions":[{"screen_name":"HospiMadero","name":"Hospital Fco iMadero","id":4049822660,"id_str":"4049822660","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057660"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646488064,"id_str":"663727984646488064","text":"RT @thatgirlkenzi: I just wanna get your attention. I really wanna be all up in your head.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2756089703,"id_str":"2756089703","name":"nic","screen_name":"nicolekayejeff","location":null,"url":null,"description":"[L]GBT\/\/17\/\/EMS\/\/KC is the shit\/\/EDC","protected":false,"verified":false,"followers_count":343,"friends_count":320,"listed_count":0,"favourites_count":3858,"statuses_count":7215,"created_at":"Sat Aug 30 18:40:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655986173966467072\/G0Ifwseu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655986173966467072\/G0Ifwseu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756089703\/1446060530","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:14:57 +0000 2015","id":663555345948794880,"id_str":"663555345948794880","text":"I just wanna get your attention. I really wanna be all up in your head.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17971336,"id_str":"17971336","name":"PEPPER","screen_name":"thatgirlkenzi","location":"Alabama. ","url":null,"description":"I fall in love with songs, not people. Roll Tide. #NBK","protected":false,"verified":false,"followers_count":7436,"friends_count":664,"listed_count":7,"favourites_count":34226,"statuses_count":38271,"created_at":"Mon Dec 08 19:54:52 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/424177507\/polo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/424177507\/polo.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661387033546477569\/yPMv8Eyu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661387033546477569\/yPMv8Eyu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17971336\/1446965552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thatgirlkenzi","name":"PEPPER","id":17971336,"id_str":"17971336","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984637968384,"id_str":"663727984637968384","text":"@boe767_bot \u30dc\u30fc\u30a4\u30f3\u30b0767bot\u3055\u3093\u3001\u307c\u304f\u306f@boe767_bot\u306a\u3093\u304b\u3068\u9055\u3046\u3093\u3060!","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003eWL\u306e\u5148\u7aef\u304b\u3089\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727435976847360,"in_reply_to_status_id_str":"663727435976847360","in_reply_to_user_id":1961528832,"in_reply_to_user_id_str":"1961528832","in_reply_to_screen_name":"boe767_bot","user":{"id":2778371492,"id_str":"2778371492","name":"\u30dc\u30fc\u30a4\u30f3\u30b0767(WL)bot","screen_name":"boe767WL_bot","location":"\u56fd\u969b\u7dda\u30bf\u30fc\u30df\u30ca\u30eb","url":null,"description":"\u30dc\u30fc\u30a4\u30f3\u30b0767\u306e\u30a6\u30a3\u30f3\u30b0\u30ec\u30c3\u30c8\u4ed8\u304d\u30d0\u30fc\u30b8\u30e7\u30f3\u3060\u3088\uff01 \u203b\u753b\u50cf\u306f\u3059\u3079\u3066\u3068\u3046\u3075\u3002\u3055\u3093(@JA833A)\u304b\u3089\u3054\u63d0\u4f9b\u3044\u305f\u3060\u304d\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":225,"friends_count":206,"listed_count":2,"favourites_count":20,"statuses_count":310752,"created_at":"Fri Aug 29 12:21:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505331274622316544\/kemNf5k7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505331274622316544\/kemNf5k7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778371492\/1409315347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"boe767_bot","name":"\u30dc\u30fc\u30a4\u30f3\u30b0767bot","id":1961528832,"id_str":"1961528832","indices":[0,11]},{"screen_name":"boe767_bot","name":"\u30dc\u30fc\u30a4\u30f3\u30b0767bot","id":1961528832,"id_str":"1961528832","indices":[29,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057664"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612761600,"id_str":"663727984612761600","text":"@K_Chihaya_0225 \u306f\u3044\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727618483617792,"in_reply_to_status_id_str":"663727618483617792","in_reply_to_user_id":2306281675,"in_reply_to_user_id_str":"2306281675","in_reply_to_screen_name":"K_Chihaya_0225","user":{"id":2533193143,"id_str":"2533193143","name":"\u30cf\u30a4\u30bf\u30c3\u30c1\u3084\u3088\u3044","screen_name":"haiyayo","location":null,"url":"http:\/\/twpf.jp\/haiyayo","description":"\u30b9\u30fc\u30d1\u30fc\u30a8\u30af\u30b9\u30c8\u30ea\u30fc\u30e0\u30a6\u30eb\u30c8\u30e9\u30b9\u30fc\u30d1\u30fc\u30c7\u30e9\u30c3\u30af\u30b9\u30b7\u30e3\u30ec\u30aa\u30c4\u306a\u30a2\u30a4\u30c9\u30eb\u3068\u5642\u3067\u3059\u3063\u2606 \u672c\u5f53\u306f\u8ca7\u4e4f\u3067\u904b\u52d5\u3082\u30c0\u30e1\u30c0\u30e1\u30a2\u30a4\u30c9\u30eb\u3067\u3059\u3051\u3069\u4eca\u65e5\u3082\u5143\u6c17\u306b\u304c\u3093\u3070\u308a\u307e\u30fc\u3059\u3063\uff01\uff01","protected":false,"verified":false,"followers_count":1322,"friends_count":1310,"listed_count":45,"favourites_count":4522,"statuses_count":67637,"created_at":"Thu May 29 18:37:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663571245070311424\/lQjCPbJY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663571245070311424\/lQjCPbJY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2533193143\/1441991390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"K_Chihaya_0225","name":"\u5982\u6708 \u5343\u65e9@\u3089\u3076\u3061\u306f","id":2306281675,"id_str":"2306281675","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629575680,"id_str":"663727984629575680","text":"@k_uuprrp \u304d\u3048\u3063\u3061\u3055\u3093\u304a\u304b\u3042\u308a\u3067\u3059\u301c(\u204e\u02c3 \ua1f4 \u02c2\u204e) \u307e\u3060\u307e\u3060\u3042\u3052\u3089\u308c\u3066\u306a\u3044\u5199\u771f\u3070\u3063\u304b\u306a\u306e\u3067\u307e\u305f\u3058\u308f\u3058\u308f\u3042\u3052\u3066\u3044\u304d\u307e\u3059\u0669(\u02ca\u15dc\u02cb*)\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718793974149120,"in_reply_to_status_id_str":"663718793974149120","in_reply_to_user_id":2838655111,"in_reply_to_user_id_str":"2838655111","in_reply_to_screen_name":"k_uuprrp","user":{"id":1349561575,"id_str":"1349561575","name":"\u30ea\u30c4\u541b\u306f\u6b4c\u59eb\u304c\u304a\u597d\u304d","screen_name":"litsuki_D","location":null,"url":"http:\/\/twpf.jp\/litsuki_D","description":"\u308a\u3064\u304dD\u57a2\u300220\u2191\u30ef\u30f3\u30c7\u30fc\u3002\u3046\u305f\u30d7\u30ea\u3068\u30c7\u30a3\u30ba\u30cb\u30fc\u306e\u4e8c\u8db3\u306e\u8349\u978b\u3002\u4eee\u88c5\u597d\u304d\u306a\u30f2\u30bf\u30af\u3067\u3059\u3002\u6817\u9f20\u4eee\u88c5\u306e\u6c11\u3002\u52a0\u5de5\u53a8\u3002\u81ea\u5df1\u6e80D\u5199\u771f\u30fb\u4eee\u88c5\u5199\u771f\u591a\u3044\u306e\u3067\u3054\u6ce8\u610f\u3092\uff01\u30df\u30ad\u69d8\u5d07\u62dd\u3001\u30df\u30ad\u30df\u30cb\u306f\u5225\u683c\u3002\u30c1\u30c7\u30af\u30e9\u30fb\u30db\u30bb\u30d1\u30f3\u306b\u304a\u71b1\u3060\u3051\u3069\u307f\u30fc\u3093\u306a\u5927\u597d\u304d\u2661 \u30a4\u30f3\u591a\u304f\u306a\u3044\u3067\u3059\u304c\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff1e\uff1c","protected":false,"verified":false,"followers_count":77,"friends_count":38,"listed_count":10,"favourites_count":463,"statuses_count":2193,"created_at":"Sat Apr 13 15:45:44 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660837751978266624\/C0kQvnu0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660837751978266624\/C0kQvnu0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1349561575\/1446390882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k_uuprrp","name":"\u304d\u3048\u3063\u3061","id":2838655111,"id_str":"2838655111","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629719040,"id_str":"663727984629719040","text":"RT @SwaggyCinco: Who you love more ? \ud83d\ude33 RT for both","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3110547339,"id_str":"3110547339","name":"September 11","screen_name":"NiqueNini","location":null,"url":null,"description":"God First R.I.P Bj Virgo \u264d Sept 11 SCHS","protected":false,"verified":false,"followers_count":577,"friends_count":561,"listed_count":4,"favourites_count":1680,"statuses_count":912,"created_at":"Tue Mar 24 15:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655606302543056896\/lQf5VJKN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655606302543056896\/lQf5VJKN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3110547339\/1430245538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:35:11 +0000 2015","id":663545338339287041,"id_str":"663545338339287041","text":"Who you love more ? \ud83d\ude33 RT for both","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663540294856503296,"in_reply_to_status_id_str":"663540294856503296","in_reply_to_user_id":486326551,"in_reply_to_user_id_str":"486326551","in_reply_to_screen_name":"SwaggyCinco","user":{"id":486326551,"id_str":"486326551","name":"cinco","screen_name":"SwaggyCinco","location":"Oklahoma City, OK","url":null,"description":"#LongLiveDeuce living w\/ no limits RSC17 but LU19 - soon","protected":false,"verified":false,"followers_count":1801,"friends_count":1465,"listed_count":4,"favourites_count":1304,"statuses_count":60085,"created_at":"Wed Feb 08 05:20:06 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582274955\/a5x2onq9ohqlp9lezdqv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582274955\/a5x2onq9ohqlp9lezdqv.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660027420246806528\/JJEJolg8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660027420246806528\/JJEJolg8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/486326551\/1428722155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5327a9b6dceff63e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5327a9b6dceff63e.json","place_type":"city","name":"Midwest City","full_name":"Midwest City, OK","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-97.424091,35.433034],[-97.424091,35.507694],[-97.291149,35.507694],[-97.291149,35.433034]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SwaggyCinco","name":"cinco","id":486326551,"id_str":"486326551","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612737024,"id_str":"663727984612737024","text":"RT @Nonoo11222: \u062e\u0631\u0648\u0648\u0648\u062c \u0628\u0639\u062f \u0627\u0644\u0631\u0627\u062d\u0647\ud83d\ude34\ud83d\udca6\ud83d\udca6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4174022239,"id_str":"4174022239","name":"nana.pales","screen_name":"nanapales","location":"jordan","url":null,"description":"\u200f\u200f\u200f\u0627\u0644\u064a \u0628\u062f\u0647\u0627 \u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0644\u064a\u0632\u0628\u0648\u0648\u0648\u0648\u0648 \u0627\u0636\u064a\u0641\u0646\u064a \u0648 \u0639\u0644\u0649 \u0627\u0644\u062e\u0627\u0635\u0635","protected":false,"verified":false,"followers_count":12,"friends_count":110,"listed_count":0,"favourites_count":36,"statuses_count":21,"created_at":"Mon Nov 09 01:12:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663526435450023936\/yWOJZaO4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663526435450023936\/yWOJZaO4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4174022239\/1447073379","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:08 +0000 2015","id":663726520280743937,"id_str":"663726520280743937","text":"\u062e\u0631\u0648\u0648\u0648\u062c \u0628\u0639\u062f \u0627\u0644\u0631\u0627\u062d\u0647\ud83d\ude34\ud83d\udca6\ud83d\udca6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2228738043,"id_str":"2228738043","name":"\u0646\u0648\u0641\u0651 | \u0645\u0627\u0633\u0648\u0634\u064a\u0647","screen_name":"Nonoo11222","location":null,"url":null,"description":"\u0644\u0627 \u0623\u0643\u0631\u0647 \u0627\u0644\u0631\u062c\u0627\u0644 \u060c \u0648\u0644\u0643\u0646 \u0644\u0627 \u0627\u062d\u0628 \u0627\u0644\u062c\u0646\u0633 \u0645\u0639\u0647\u0645 \u060c \u0633\u062d\u0627\u0642\u064a\u0647 \u0641\u0642\u0637 #\u062a\u0641\u0636\u064a\u0644 = #\u0628\u0644\u0648\u0643","protected":false,"verified":false,"followers_count":1327,"friends_count":214,"listed_count":1,"favourites_count":9,"statuses_count":1026,"created_at":"Mon Dec 16 15:40:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647128386897207296\/RaxCWWhQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647128386897207296\/RaxCWWhQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2228738043\/1447073728","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nonoo11222","name":"\u0646\u0648\u0641\u0651 | \u0645\u0627\u0633\u0648\u0634\u064a\u0647","id":2228738043,"id_str":"2228738043","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646320128,"id_str":"663727984646320128","text":"RT @AsmiaAt: Masalah rong taun kepungkur og ra rampung2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322469701,"id_str":"3322469701","name":"Shelly Aprilia","screen_name":"Sl24Ly","location":"SMK Kristen 2 Klaten","url":"http:\/\/instagram.com\/shellyap","description":"Office Administration || krisda'18 || JesusChild\u2661 || 16 y.o","protected":false,"verified":false,"followers_count":355,"friends_count":1126,"listed_count":0,"favourites_count":10,"statuses_count":4558,"created_at":"Fri Aug 21 14:03:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661446400559808513\/cVfSrhqT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661446400559808513\/cVfSrhqT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322469701\/1446221710","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727014856159237,"id_str":"663727014856159237","text":"Masalah rong taun kepungkur og ra rampung2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3021925182,"id_str":"3021925182","name":"Asmia T. Hawa","screen_name":"AsmiaAt","location":"Magelang","url":null,"description":"Pecinta rona merah senja dan kopi dengan sedikit gula.~","protected":false,"verified":false,"followers_count":252,"friends_count":229,"listed_count":0,"favourites_count":7,"statuses_count":3214,"created_at":"Mon Feb 16 05:12:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572336204423520256\/RCnFBdNn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572336204423520256\/RCnFBdNn.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663696240140402688\/oLDMk5qA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663696240140402688\/oLDMk5qA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3021925182\/1446162151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AsmiaAt","name":"Asmia T. Hawa","id":3021925182,"id_str":"3021925182","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642134016,"id_str":"663727984642134016","text":"@Todo_beauty8 (\u30b7\u30e5\u30ec\u30c3\u30c0\u30fc\u306b\u304b\u3051)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663363608500244481,"in_reply_to_status_id_str":"663363608500244481","in_reply_to_user_id":4103555600,"in_reply_to_user_id_str":"4103555600","in_reply_to_screen_name":"Todo_beauty8","user":{"id":3021304832,"id_str":"3021304832","name":"\u6020\u60f0\u306a\u5dfb\u5cf6","screen_name":"mksm_ash","location":null,"url":null,"description":"\u6020\u60f0\u306b\u751f\u304d\u305f\u3044\u5dfb\u5cf6 \u57fa\u672c\u7684\u306b\u3084\u308b\u6c17\u7121\u3057\/pdl\u975e\u516c\u5f0f\/\u5922\u8150\u5bfe\u5fdc(\u5de6)\/24\u6642\u9593\u4e0d\u53ef\/\u540c\u4f5c\u540c\u9854\u7279\u6b8a\u6b53\u8fce\/\u5e38\u6642\u90e8\u5c4b\u958b\u653e\/\u5510\u7a81\u306a\u8a91\u3057\u7656\u6709\/\u533a\u5225\u540d\u2192\u60f0","protected":false,"verified":false,"followers_count":185,"friends_count":181,"listed_count":3,"favourites_count":21,"statuses_count":6891,"created_at":"Sun Feb 15 14:14:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641639872000724992\/7Y56XtBZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641639872000724992\/7Y56XtBZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3021304832\/1440468278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Todo_beauty8","name":"\u6771\u5802\u5c3d\u516b","id":4103555600,"id_str":"4103555600","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629575681,"id_str":"663727984629575681","text":"Nakakapagod! Monday palang. 2DAYS pa. \ud83d\ude31\ud83d\ude28\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224137309,"id_str":"3224137309","name":"KnoxxMontefalco's","screen_name":"lukesgirl1796","location":"Alegria","url":null,"description":"EllaOsoresco \nMahalNaMahal si KnoxxGideonNavarroMontefalco(WattpadCharacter) -Whipped -JonaxxFan","protected":false,"verified":false,"followers_count":186,"friends_count":382,"listed_count":3,"favourites_count":321,"statuses_count":585,"created_at":"Sat May 23 09:41:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650907432416251904\/3K4Is5OI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650907432416251904\/3K4Is5OI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224137309\/1446971648","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608702464,"id_str":"663727984608702464","text":"RT @DewangDhanesh: @pradipnikam21 @BajrangdalOrg Ab paid media ki pol khulegi #2DaysFor_FlipSide","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150407597,"id_str":"2150407597","name":"Hariom Bhanwariya","screen_name":"Hariom525","location":"sheopur","url":"http:\/\/www.hariombhanwariya.com","description":"SABKA MANGAL SABKA BHALA","protected":false,"verified":false,"followers_count":950,"friends_count":292,"listed_count":12,"favourites_count":11539,"statuses_count":74741,"created_at":"Wed Oct 23 06:49:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000637663011\/bb85a6e505f81af58f21027b3ffd284c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000637663011\/bb85a6e505f81af58f21027b3ffd284c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150407597\/1425885861","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:09 +0000 2015","id":663723251722391553,"id_str":"663723251722391553","text":"@pradipnikam21 @BajrangdalOrg Ab paid media ki pol khulegi #2DaysFor_FlipSide","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663665228970917888,"in_reply_to_status_id_str":"663665228970917888","in_reply_to_user_id":2832914671,"in_reply_to_user_id_str":"2832914671","in_reply_to_screen_name":"pradipnikam21","user":{"id":3317809310,"id_str":"3317809310","name":"D.K. DEWANGAN","screen_name":"DewangDhanesh","location":"Burhar, Madhya Pradesh","url":null,"description":null,"protected":false,"verified":false,"followers_count":339,"friends_count":183,"listed_count":1,"favourites_count":3013,"statuses_count":10012,"created_at":"Mon Aug 17 14:02:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633278333308964865\/nBSGY_YI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633278333308964865\/nBSGY_YI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"2DaysFor_FlipSide","indices":[59,77]}],"urls":[],"user_mentions":[{"screen_name":"pradipnikam21","name":"Pradip Nikam","id":2832914671,"id_str":"2832914671","indices":[0,14]},{"screen_name":"BajrangdalOrg","name":"Bajrang Dal","id":1251255176,"id_str":"1251255176","indices":[15,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2DaysFor_FlipSide","indices":[78,96]}],"urls":[],"user_mentions":[{"screen_name":"DewangDhanesh","name":"D.K. DEWANGAN","id":3317809310,"id_str":"3317809310","indices":[3,17]},{"screen_name":"pradipnikam21","name":"Pradip Nikam","id":2832914671,"id_str":"2832914671","indices":[19,33]},{"screen_name":"BajrangdalOrg","name":"Bajrang Dal","id":1251255176,"id_str":"1251255176","indices":[34,48]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984616935424,"id_str":"663727984616935424","text":"Untung semua org suka \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1028506688,"id_str":"1028506688","name":"kingcha.","screen_name":"ichalocha","location":"ig : _ichx","url":null,"description":"#COYG","protected":false,"verified":false,"followers_count":1313,"friends_count":1297,"listed_count":2,"favourites_count":14184,"statuses_count":27700,"created_at":"Sat Dec 22 13:28:25 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF9F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616409185249443840\/Iz_PQb-H.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616409185249443840\/Iz_PQb-H.jpg","profile_background_tile":true,"profile_link_color":"F29E0C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646368617735434242\/lSkl5KY4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646368617735434242\/lSkl5KY4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1028506688\/1434698713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"2f12f0aa37a67965","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2f12f0aa37a67965.json","place_type":"city","name":"Paloh","full_name":"Paloh, Johor","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[103.103569,2.116024],[103.103569,2.379084],[103.449699,2.379084],[103.449699,2.116024]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984637902849,"id_str":"663727984637902849","text":"@yk05311122 \n\n\u3053\u3061\u3089\u3053\u305d\u3067\u3059\u30fc(*\u02d8\ufe36\u02d8*).\uff61.:*\u2661\n\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3063\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726569756561408,"in_reply_to_status_id_str":"663726569756561408","in_reply_to_user_id":2603475342,"in_reply_to_user_id_str":"2603475342","in_reply_to_screen_name":"yk05311122","user":{"id":1425723392,"id_str":"1425723392","name":"\u89b3\u6708\u30eb\u30ca\u2606\u3084\u3089\u304b\u3044\u306f\u3041\u30681000\u679a\u9054\u6210\uff01","screen_name":"runacchi_HS","location":"\u3061\u3087\u3053\u3061\u3087\u3053\u3057\u3066\u307e\u3059","url":"http:\/\/s.ameblo.jp\/mizukiruna616\/","description":"Honey Squash(\u30cf\u30cb\u30b9\u30ab)\u9752\u8272\u62c5\u5f53\u30eb\u30ca\u3063\u3061\u3067\u3059\\\u2661\/Like\u2661*\u21dd\u30b9\u30ab\u30c3\u30b7\u30e3\u30fc\u69d8\u2721\u30a2\u30a4\u30c9\u30eb\u3055\u3093\u2721\u30a2\u30dc\u30ab\u30c9\u2721\u3057\u3081\u3058\u2721\u4e09\u3064\u7de8\u307f\u2661\u61a7\u308c\u21dd\u7530\u53e3\u672a\u5f69\u3061\u3083\u3093\u2661\u5e74\u304c\u3089\u5e74\u4e2d\u6c57\u304b\u3044\u3066\u307e\u3059\u3002\u4e00\u9014\u7cfbDD\u3002\u534d\u5168\u529b\u717d\u308a\u3059\u3068\u534d\u203b\u9375\u57a2\u306e\u30d5\u30a9\u30ed\u30fc\u306f\u3067\u304d\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":3634,"friends_count":2170,"listed_count":93,"favourites_count":70828,"statuses_count":51520,"created_at":"Mon May 13 15:20:00 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000062772451\/8b1ad592c7a3e236203ce2228c344e34.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000062772451\/8b1ad592c7a3e236203ce2228c344e34.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724536500584449\/ElOT4I3z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724536500584449\/ElOT4I3z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1425723392\/1446446818","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yk05311122","name":"\u304f\u308f\u3063\u3061\uff20\u306b\u3053\u3061\u3083\u3093\u266a\u63a8\u3057","id":2603475342,"id_str":"2603475342","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057664"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642146305,"id_str":"663727984642146305","text":"\u3042\u3063\u305f\u4eba\u5c11\u306a\u3044\u306aw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3001264855,"id_str":"3001264855","name":"yodo1year","screen_name":"yodo_1class","location":"\u65e5\u672c \u8fd1\u757f\u5730\u65b9","url":"http:\/\/dannsonn0609.jimdo.com\/?logout=1","description":"yodo_70th \u4e2d1_\u5353\u7403\u90e8\u3002\u73fe\u5728\u98a8\u7d00\u59d4\u54e1\u306b\u6240\u5c5e\u4e2d.....\u3002____ YouTube\u30c1\u30e3\u30f3\u30cd\u30eb:\u27a1https:\/\/www.youtube.com\/channel\/UCXyTrHX9F1SDIvt6w8VSZBQ \u30d4\u30a2\u30ce\u3084\u3063\u3066\u307e\u3059\u3051\u3069\u3001\u4e0b\u624b\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":58,"friends_count":64,"listed_count":1,"favourites_count":107,"statuses_count":909,"created_at":"Thu Jan 29 12:41:07 +0000 2015","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633124326527533057\/E_JzYthm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633124326527533057\/E_JzYthm.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659388147986395137\/ZnN-uDkV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659388147986395137\/ZnN-uDkV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3001264855\/1446986385","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621187073,"id_str":"663727984621187073","text":"\u0648\u0644\u0626\u0646 \u0633\u0623\u0644\u062a\u0647\u0645 \u0645\u0646 \u062e\u0644\u0642 \u0627\u0644\u0633\u0645\u0627\u0648\u0627\u062a \u0648\u0627\u0644\u0623\u0631\u0636 \u0648\u0633\u062e\u0631 \u0627\u0644\u0634\u0645\u0633 \u0648\u0627\u0644\u0642\u0645\u0631 \u0644\u064a\u0642\u0648\u0644\u0646 \u0627\u0644\u0644\u0647 \u0641\u0623\u0646\u0649 \u064a\u0624\u0641\u0643\u0648\u0646 \ufd3f\u0666\u0661\ufd3e -- \u0633\u0648\u0631\u0629 \u0627\u0644\u0639\u0646\u0643\u0628\u0648\u062a #Quran","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1316551662,"id_str":"1316551662","name":"\u062d\u0645\u0648\u062f \u0627\u0644\u062c\u0627\u0633\u0631","screen_name":"AboJaaaser","location":null,"url":null,"description":"\u200f\u0625\u0646 \u0623\u063a\u0631\u0642\u0640\u0640\u0640\u0640\u0640\u0643 \u0627\u0644\u062d\u0640\u0640\u0640\u0640\u0632\u0646 \u0641\u062a\u0630\u0643\u0631 \u0623\u0646 \u0641\u064a \u0627\u0644\u062d\u064a\u0640\u0640\u0640\u0640\u0640\u0627\u0629 \u0623\u0634\u064a\u0627\u0621 \u0643\u062b\u064a\u0631\u0629 \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u0633\u0639\u062f\u0646\u0627","protected":false,"verified":false,"followers_count":69,"friends_count":37,"listed_count":0,"favourites_count":0,"statuses_count":3172,"created_at":"Sat Mar 30 14:39:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3453239925\/5ed0dbbb48d6f36473aa0e4fc00d3fb5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3453239925\/5ed0dbbb48d6f36473aa0e4fc00d3fb5_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Quran","indices":[99,105]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080057660"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646430720,"id_str":"663727984646430720","text":"RT @Drrake: WHEN HER REPLIES ARE GRADUALLY GETTING SHORTER AND LESS FREQUENT https:\/\/t.co\/JhcJwrHHlR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312162061,"id_str":"312162061","name":"\u3164","screen_name":"JasperPlunkett","location":"behind you","url":null,"description":"@MesutOzil1088 \u2764\ufe0f","protected":false,"verified":false,"followers_count":267,"friends_count":175,"listed_count":1,"favourites_count":5316,"statuses_count":8122,"created_at":"Mon Jun 06 17:44:50 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657251922978672640\/V0vFxiDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657251922978672640\/V0vFxiDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312162061\/1444980881","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:36 +0000 2015","id":663710279822352388,"id_str":"663710279822352388","text":"WHEN HER REPLIES ARE GRADUALLY GETTING SHORTER AND LESS FREQUENT https:\/\/t.co\/JhcJwrHHlR","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557455977,"id_str":"557455977","name":"Drake","screen_name":"Drrake","location":"*Parody*","url":null,"description":"Views From The 6. Turn notifications on to stay updated. draketwittercontact@gmail.com","protected":false,"verified":false,"followers_count":982728,"friends_count":785699,"listed_count":760,"favourites_count":659,"statuses_count":40298,"created_at":"Thu Apr 19 02:54:16 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459524986491789312\/CQ85nvVj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459524986491789312\/CQ85nvVj.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650927004154470401\/JSnC-YiY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650927004154470401\/JSnC-YiY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557455977\/1444028066","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":207,"favorite_count":397,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662720844536283139,"id_str":"662720844536283139","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","url":"https:\/\/t.co\/JhcJwrHHlR","display_url":"pic.twitter.com\/JhcJwrHHlR","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPH0P\/status\/662720849959522304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}},"source_status_id":662720849959522304,"source_status_id_str":"662720849959522304","source_user_id":2808663432,"source_user_id_str":"2808663432"}]},"extended_entities":{"media":[{"id":662720844536283139,"id_str":"662720844536283139","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","url":"https:\/\/t.co\/JhcJwrHHlR","display_url":"pic.twitter.com\/JhcJwrHHlR","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPH0P\/status\/662720849959522304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}},"source_status_id":662720849959522304,"source_status_id_str":"662720849959522304","source_user_id":2808663432,"source_user_id_str":"2808663432"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Drrake","name":"Drake","id":557455977,"id_str":"557455977","indices":[3,10]}],"symbols":[],"media":[{"id":662720844536283139,"id_str":"662720844536283139","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","url":"https:\/\/t.co\/JhcJwrHHlR","display_url":"pic.twitter.com\/JhcJwrHHlR","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPH0P\/status\/662720849959522304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}},"source_status_id":662720849959522304,"source_status_id_str":"662720849959522304","source_user_id":2808663432,"source_user_id_str":"2808663432"}]},"extended_entities":{"media":[{"id":662720844536283139,"id_str":"662720844536283139","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJ1GMvVAAM22zW.jpg","url":"https:\/\/t.co\/JhcJwrHHlR","display_url":"pic.twitter.com\/JhcJwrHHlR","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPH0P\/status\/662720849959522304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":318,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":318,"resize":"fit"}},"source_status_id":662720849959522304,"source_status_id_str":"662720849959522304","source_user_id":2808663432,"source_user_id_str":"2808663432"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612786177,"id_str":"663727984612786177","text":"@supercharmz28 yes po nung hacking episode hayy sobrang babaw lang","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727802810675200,"in_reply_to_status_id_str":"663727802810675200","in_reply_to_user_id":3493687992,"in_reply_to_user_id_str":"3493687992","in_reply_to_screen_name":"supercharmz28","user":{"id":3273077468,"id_str":"3273077468","name":"maine mendoza tho.","screen_name":"fantasticmaine","location":null,"url":null,"description":"richard faulkerson jr & maine mendoza are actual human being goals. #mengandtisoy","protected":false,"verified":false,"followers_count":878,"friends_count":171,"listed_count":2,"favourites_count":1778,"statuses_count":11577,"created_at":"Thu Jul 09 14:42:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661900640793161728\/DgtW6-Db_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661900640793161728\/DgtW6-Db_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273077468\/1446372645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"supercharmz28","name":"Charmie Joy","id":3493687992,"id_str":"3493687992","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621187074,"id_str":"663727984621187074","text":"am\u00e9m irm\u00e3os?","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1658617249,"id_str":"1658617249","name":"tia eva","screen_name":"whodlrz","location":"manaus","url":null,"description":"she ain\u2019t the average chick, she the baddest chick","protected":false,"verified":false,"followers_count":6106,"friends_count":4730,"listed_count":4,"favourites_count":5890,"statuses_count":52138,"created_at":"Fri Aug 09 20:52:29 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577827842634817536\/IXUUyFuy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577827842634817536\/IXUUyFuy.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663694864542994432\/hcJW6BZl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663694864542994432\/hcJW6BZl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1658617249\/1438461609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080057660"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612786176,"id_str":"663727984612786176","text":"@kakeru4012 \n\u4fdd\u5b58\u3084\u306a\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727913980694528,"in_reply_to_status_id_str":"663727913980694528","in_reply_to_user_id":3009896958,"in_reply_to_user_id_str":"3009896958","in_reply_to_screen_name":"kakeru4012","user":{"id":886353727,"id_str":"886353727","name":"\u30d2\u30ed\u30ad\u30f3\u30b0","screen_name":"hirokin1717","location":"\u5927\u962a \u6cc9\u5dde","url":null,"description":"172\/105\/28 29\u306e\u5b66\u5e74\u3060\u3088\uff01 \uff27 \u51f9 \u3002\u4ecb\u8b77\u58eb\u3057\u3066\u307e\u3059 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":1380,"friends_count":1338,"listed_count":11,"favourites_count":7958,"statuses_count":108372,"created_at":"Wed Oct 17 07:59:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652599108327178240\/j0QBIBxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652599108327178240\/j0QBIBxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/886353727\/1442815115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kakeru4012","name":"\u304b\u3051\u308b","id":3009896958,"id_str":"3009896958","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646361089,"id_str":"663727984646361089","text":"@boe767_bot \u3059\u3079\u3066\u306e\u753b\u50cf\u306f\u63d0\u4f9b\u753b\u50cf\u3060\u3088!\u63d0\u4f9b\u4e3b\u3055\u3093\u306b\u306f\u611f\u8b1d\u3060\u306d\u3063\uff01","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003eWL\u306e\u5148\u7aef\u304b\u3089\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727435834200064,"in_reply_to_status_id_str":"663727435834200064","in_reply_to_user_id":1961528832,"in_reply_to_user_id_str":"1961528832","in_reply_to_screen_name":"boe767_bot","user":{"id":2778371492,"id_str":"2778371492","name":"\u30dc\u30fc\u30a4\u30f3\u30b0767(WL)bot","screen_name":"boe767WL_bot","location":"\u56fd\u969b\u7dda\u30bf\u30fc\u30df\u30ca\u30eb","url":null,"description":"\u30dc\u30fc\u30a4\u30f3\u30b0767\u306e\u30a6\u30a3\u30f3\u30b0\u30ec\u30c3\u30c8\u4ed8\u304d\u30d0\u30fc\u30b8\u30e7\u30f3\u3060\u3088\uff01 \u203b\u753b\u50cf\u306f\u3059\u3079\u3066\u3068\u3046\u3075\u3002\u3055\u3093(@JA833A)\u304b\u3089\u3054\u63d0\u4f9b\u3044\u305f\u3060\u304d\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":225,"friends_count":206,"listed_count":2,"favourites_count":20,"statuses_count":310752,"created_at":"Fri Aug 29 12:21:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505331274622316544\/kemNf5k7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505331274622316544\/kemNf5k7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778371492\/1409315347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"boe767_bot","name":"\u30dc\u30fc\u30a4\u30f3\u30b0767bot","id":1961528832,"id_str":"1961528832","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646479872,"id_str":"663727984646479872","text":"\u0627\u0644\u0644\u0647\u0645 \u0623\u0639\u0630\u0646\u0627 \u0645\u0646 \u0639\u0630\u0627\u0628 \u0627\u0644\u0642\u0628\u0631 \u0648\u0639\u0630\u0627\u0628 \u062c\u0647\u0646\u0645\n\u267b\ufe0f https:\/\/t.co\/N4EUVfY3Sp","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1160589702,"id_str":"1160589702","name":"\u0641\u0648\u0632.","screen_name":"fouz_16_","location":null,"url":null,"description":"..","protected":false,"verified":false,"followers_count":201,"friends_count":62,"listed_count":0,"favourites_count":199,"statuses_count":2482,"created_at":"Fri Feb 08 16:23:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653245865759506432\/q6nVgRBZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653245865759506432\/q6nVgRBZ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N4EUVfY3Sp","expanded_url":"http:\/\/zad-muslim.com","display_url":"zad-muslim.com","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984637931520,"id_str":"663727984637931520","text":"\u96e3\u8074\u306b\u306a\u308b\u524d\u306b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":852680725,"id_str":"852680725","name":"\u3062\u304f\u3066\u3093","screen_name":"yoku_2000","location":null,"url":"http:\/\/www.takamin.com\/oekakichat\/app\/oekakibbs\/Index?roomid=548252","description":"\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u30fc\u3059\uff01\u30b2\u30fc\u30e0\u3068\u304a\u7d75\u63cf\u304d\u304c\u597d\u304d\u3067\u3059\u3002\u7a7a\u30ea\u30d7 3DS\uff3b4554-0258-2520\uff3dWiiU\uff3byoku2000\uff3d","protected":false,"verified":false,"followers_count":41,"friends_count":58,"listed_count":2,"favourites_count":595,"statuses_count":9559,"created_at":"Sat Sep 29 11:09:38 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655422803944976384\/IajM0Z18_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655422803944976384\/IajM0Z18_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/852680725\/1443699622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057664"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984625508352,"id_str":"663727984625508352","text":"https:\/\/t.co\/rJmMnlRvrb RT UNCLE80075178: Wonder how this will play out in the polls. Honeymoon is over Mal. #AusUPR #auspol","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316751101,"id_str":"3316751101","name":"Jenna","screen_name":"me_jennaa","location":"Sydney, New South Wales","url":null,"description":"exhale everything impart nothing","protected":false,"verified":false,"followers_count":542,"friends_count":1944,"listed_count":313,"favourites_count":0,"statuses_count":186614,"created_at":"Sun Aug 16 09:35:13 +0000 2015","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632848179143151620\/tacBr1TC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316751101\/1439717815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AusUPR","indices":[109,116]},{"text":"auspol","indices":[117,124]}],"urls":[{"url":"https:\/\/t.co\/rJmMnlRvrb","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057661"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984612798465,"id_str":"663727984612798465","text":"[\uc61b\ub0a0\uc5d4 \ub9c8\uc220\uc774\ub77c\ub294\uac8c \uc788\ub294\uc904\ub3c4 \ubab0\ub790\uc5b4\uc694. \uadf8\ub0e5 \ud3c9\ubc94\ud558\uac8c \ucef7\uc9c0 \ubb50. \u2026\uc81c\ub300\ub85c \uc54c\uace0 \ubc30\uc6b4\uac8c\u2026 \u2026\u202618\uc0b4? \uc131\ubc30\uc804\uc7c1\uc5d0 \ucc38\uc5ec\ud558\uae30 \ub300\ucda9 3\ub144 \uc804\ubd80\ud130 \ubc30\uc6e0\ub124\uc694.]","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1655873059,"id_str":"1655873059","name":"\uc11c\uc9c0\uc724","screen_name":"SeoJY_Bot","location":"Thesla.","url":null,"description":"More than you think.","protected":false,"verified":false,"followers_count":3,"friends_count":1,"listed_count":0,"favourites_count":6,"statuses_count":11788,"created_at":"Thu Aug 08 17:31:24 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495235220728078336\/SlR_9vU0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495235220728078336\/SlR_9vU0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1655873059\/1376028294","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080057658"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642125826,"id_str":"663727984642125826","text":"b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":254901598,"id_str":"254901598","name":"rion","screen_name":"rin_ot04","location":null,"url":"http:\/\/com.nicovideo.jp\/community\/co1637125","description":".\u00b0 \u262a\u00b7\u0329\u0359 \u58f0\u771f\u4f3c\u3084\u3063\u3066\u307e\u3059\u3002\u6ca2\u57ce\u307f\u3086\u304d\u3055\u3093\u304c\u5927\u597d\u304d\u3002AB! \/ \u30c0\u30f3\u30ac\u30f3\u30ed\u30f3\u30d1 \/ MLP \/ HQ! (\u0a6d\u0941\u02d9\ua4b3\u02d9)\u0a6d\u0941\u207e\u207e\u0329\u0359\u2729\u00b0.\u30b5\u30e8\u30ca\u30e9\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002\u30ea\u30d5\u30a9\u30ed\u304d\u307e\u3050\u308c\u3002(( TMbox\u261ehttp:\/\/tmbox.net\/user\/rin_ot04\/sound ))","protected":false,"verified":false,"followers_count":424,"friends_count":231,"listed_count":17,"favourites_count":5450,"statuses_count":80933,"created_at":"Sun Feb 20 07:09:19 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"CCFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/302083215\/fkWwz8_220.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/302083215\/fkWwz8_220.gif","profile_background_tile":true,"profile_link_color":"CC66FF","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662167491628527617\/549V5lt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662167491628527617\/549V5lt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254901598\/1445181474","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621285376,"id_str":"663727984621285376","text":"\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/VpESGMJbNy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2840675219,"id_str":"2840675219","name":"Ana Rui","screen_name":"anaarui","location":"Portugal bitch","url":"https:\/\/twitter.com\/anaarui\/status\/649690247928741888","description":"17, portuguese and bitchy | \u201cI'm not ignoring you but I did follow you\u201d \u201cShe's so sweet, I love her too\u201d \u201cI really like you too\u201d | Aus10 & N8\/4 | bEAu\/5 | JACOB","protected":false,"verified":false,"followers_count":871,"friends_count":803,"listed_count":5,"favourites_count":20428,"statuses_count":14544,"created_at":"Tue Oct 21 21:11:31 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608244497487659008\/rxRkxdz2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608244497487659008\/rxRkxdz2.jpg","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660917982730784768\/9iWEITWU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660917982730784768\/9iWEITWU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2840675219\/1444520083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727172008329216,"quoted_status_id_str":"663727172008329216","quoted_status":{"created_at":"Mon Nov 09 14:37:43 +0000 2015","id":663727172008329216,"id_str":"663727172008329216","text":"Oh my gosh Michael is turning...... me on","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2531696503,"id_str":"2531696503","name":"Jessica","screen_name":"JessicaZynn","location":"luke+b\/4","url":null,"description":"you're all going to regret not dating me in high school","protected":false,"verified":false,"followers_count":20696,"friends_count":15271,"listed_count":12,"favourites_count":18853,"statuses_count":5427,"created_at":"Thu May 29 04:29:29 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663285267818672128\/M1IgP-Fi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663285267818672128\/M1IgP-Fi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2531696503\/1447071244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VpESGMJbNy","expanded_url":"https:\/\/twitter.com\/JessicaZynn\/status\/663727172008329216","display_url":"twitter.com\/JessicaZynn\/st\u2026","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080057660"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984646328320,"id_str":"663727984646328320","text":"@vegettaboludo yo tengo que hacer tarea y no la he hecho, viva yo (?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727819399237632,"in_reply_to_status_id_str":"663727819399237632","in_reply_to_user_id":2458843780,"in_reply_to_user_id_str":"2458843780","in_reply_to_screen_name":"vegettaboludo","user":{"id":444235523,"id_str":"444235523","name":"[Suga]","screen_name":"NekiraSama","location":"M\u00e1s all\u00e1 del R\u00edo Lethe (Mex)","url":null,"description":"RPGMaker|Saint Seiya| Jodete @wighty_ \u2661| ENG\/ESP OK!! | I love utaites so much it hurts |","protected":false,"verified":false,"followers_count":360,"friends_count":119,"listed_count":1,"favourites_count":84157,"statuses_count":22364,"created_at":"Fri Dec 23 01:51:42 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"330033","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576844523969474560\/agWBSXKB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576844523969474560\/agWBSXKB.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659407386587758593\/dFYLEWvJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659407386587758593\/dFYLEWvJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444235523\/1442625178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vegettaboludo","name":"cartalina","id":2458843780,"id_str":"2458843780","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057666"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984617119744,"id_str":"663727984617119744","text":"GET INSTAGRAM STRATEGIC: join us tonite at @FotoWeekDC + learn how #aCreativeDC does the damn thing. https:\/\/t.co\/frxwXpyhpF","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2965995161,"id_str":"2965995161","name":"A Creative DC","screen_name":"aCreativeDC","location":"Washington, DC","url":"http:\/\/www.aCreativeDC.com","description":"Your life looks good here: A Creative DC celebrates + showcases DC's creative communities + creative economy. Add your perspective: #aCreativeDC.","protected":false,"verified":false,"followers_count":2651,"friends_count":1187,"listed_count":89,"favourites_count":12310,"statuses_count":6512,"created_at":"Wed Jan 07 13:35:23 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595039676865609729\/iSTY2XhU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595039676865609729\/iSTY2XhU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2965995161\/1427895429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"aCreativeDC","indices":[67,79]}],"urls":[{"url":"https:\/\/t.co\/frxwXpyhpF","expanded_url":"http:\/\/bit.ly\/FotoWeek-ACDC","display_url":"bit.ly\/FotoWeek-ACDC","indices":[101,124]}],"user_mentions":[{"screen_name":"FotoWeekDC","name":"FotoWeekDC","id":15705161,"id_str":"15705161","indices":[43,54]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629694464,"id_str":"663727984629694464","text":"RT @ch3lseasmile: @AnyAguiirre VAAMOS QUE EXPLOTA CAIX *prende bengalas* LA MUSIK NO MATA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157111482,"id_str":"157111482","name":"Pheebs","screen_name":"AnyAguiirre","location":"Argentina","url":"http:\/\/Instagram.com\/Anyaguirre","description":"no me olvido de los que alguna vez estuvieron. informal pero presentable. \nClub Atl\u00e9tico River Plate","protected":false,"verified":false,"followers_count":288,"friends_count":206,"listed_count":0,"favourites_count":2075,"statuses_count":15210,"created_at":"Fri Jun 18 22:14:46 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434166027702636545\/L_Ewsn8S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434166027702636545\/L_Ewsn8S.jpeg","profile_background_tile":true,"profile_link_color":"946787","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"FF00FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656649850977697792\/bpRXfC9b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656649850977697792\/bpRXfC9b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157111482\/1442543557","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:25 +0000 2015","id":663726591227387904,"id_str":"663726591227387904","text":"@AnyAguiirre VAAMOS QUE EXPLOTA CAIX *prende bengalas* LA MUSIK NO MATA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726344820416518,"in_reply_to_status_id_str":"663726344820416518","in_reply_to_user_id":157111482,"in_reply_to_user_id_str":"157111482","in_reply_to_screen_name":"AnyAguiirre","user":{"id":119498775,"id_str":"119498775","name":"medusa","screen_name":"ch3lseasmile","location":"i feel dark blue ","url":"http:\/\/neeckxdeep.tumblr.com\/","description":"me contest\u00f3 alex gaskarth el 30\/8\/14 \u007b@phantasytrash\u2661\u007d \u007b@piercethxveiI\u2661\u007d","protected":false,"verified":false,"followers_count":10164,"friends_count":7786,"listed_count":76,"favourites_count":5957,"statuses_count":74571,"created_at":"Wed Mar 03 20:58:56 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447845809631928320\/j3rOsF3U.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447845809631928320\/j3rOsF3U.jpeg","profile_background_tile":false,"profile_link_color":"18181A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663507801206104064\/r7n-SWJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663507801206104064\/r7n-SWJ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119498775\/1424910861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AnyAguiirre","name":"Pheebs","id":157111482,"id_str":"157111482","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ch3lseasmile","name":"medusa","id":119498775,"id_str":"119498775","indices":[3,16]},{"screen_name":"AnyAguiirre","name":"Pheebs","id":157111482,"id_str":"157111482","indices":[18,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608718848,"id_str":"663727984608718848","text":"10 November\n#Concert \u2014 \u2026\nhttps:\/\/t.co\/89KzE9AxkM","source":"\u003ca href=\"http:\/\/www.yohobby.com\" rel=\"nofollow\"\u003eYoHobby\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170491469,"id_str":"3170491469","name":"YoHobby San Antonio","screen_name":"YoHobbySA","location":"San Antonio","url":"https:\/\/www.yohobby.com\/","description":"https:\/\/www.yohobby.com\/ - Free online service to connect people to their favorite hobbies. New York City","protected":false,"verified":false,"followers_count":993,"friends_count":2026,"listed_count":71,"favourites_count":0,"statuses_count":6164,"created_at":"Wed Apr 15 16:04:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588372671139819521\/sWZL0zwa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588372671139819521\/sWZL0zwa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170491469\/1429114167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Concert","indices":[12,20]}],"urls":[{"url":"https:\/\/t.co\/89KzE9AxkM","expanded_url":"http:\/\/www.yohobby.com\/Events\/United-States\/New-Braunfels\/Concert-Bo-Porter-10-November-ID-0173093.html","display_url":"yohobby.com\/Events\/United-\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984633774081,"id_str":"663727984633774081","text":"someday...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1270081819,"id_str":"1270081819","name":"chelleee","screen_name":"rchllsntgo","location":"mnl \u2708","url":null,"description":"i'm sorry i'm not what you wanted; happiness pls","protected":false,"verified":false,"followers_count":1386,"friends_count":1659,"listed_count":1,"favourites_count":9638,"statuses_count":28984,"created_at":"Fri Mar 15 16:06:23 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624769701130821632\/awR3ItZI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624769701130821632\/awR3ItZI.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF200","profile_text_color":"FF385F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663001126317330432\/kBbqytQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663001126317330432\/kBbqytQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1270081819\/1446904699","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"53df18e21825a89c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/53df18e21825a89c.json","place_type":"admin","name":"National Capital Region","full_name":"National Capital Region, Republic of the Philippines","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.898652,14.347731],[120.898652,14.787321],[121.135766,14.787321],[121.135766,14.347731]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057663"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608591872,"id_str":"663727984608591872","text":"Cupcakes \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":428246099,"id_str":"428246099","name":"tebteb","screen_name":"praybeytsteban","location":"Where do I begin?","url":"http:\/\/facebook.com\/steveberdigay","description":"mema #proudPUPian #proudBatangPolomolok","protected":false,"verified":false,"followers_count":222,"friends_count":144,"listed_count":2,"favourites_count":5427,"statuses_count":4314,"created_at":"Sun Dec 04 14:37:48 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000080","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177724396\/DIy2McqJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177724396\/DIy2McqJ.jpeg","profile_background_tile":true,"profile_link_color":"060000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662248564874047488\/tHrBm-Uf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662248564874047488\/tHrBm-Uf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/428246099\/1446561452","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"011a05612b6a331c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/011a05612b6a331c.json","place_type":"city","name":"Pasig City","full_name":"Pasig City, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[121.051811,14.542797],[121.051811,14.623816],[121.112879,14.623816],[121.112879,14.542797]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984616955904,"id_str":"663727984616955904","text":"@monokuro40 \u308f\u304b\u308c\u3070\u3044\u3044\u3093\u3060\u3088\u3002\u308f\u304b\u308c\u3070\u30fb\u30fb\u30fb\u30fb","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727176693362688,"in_reply_to_status_id_str":"663727176693362688","in_reply_to_user_id":229811189,"in_reply_to_user_id_str":"229811189","in_reply_to_screen_name":"monokuro40","user":{"id":444306147,"id_str":"444306147","name":"\u3058\u3047\u306b\u3075\u3041\u30fc","screen_name":"sashibu_s","location":"\u767d\u96ea\u304a\u59c9\u69d8\u306e\u6226\u59b9","url":"http:\/\/com.nicovideo.jp\/community\/co1741027","description":"\u30d5\u30ea\u30fc\u30c0\u30e0\u306b\u653e\u9001\u3059\u308b\u96d1\u8ac7\u7cfb\u30dd\u30b1\u30e2\u30f3\u751f\u4e3b\n\n \u8a73\u3057\u3044\u30d7\u30ed\u30d5\u306f\u3053\u3061\u3089\uff1ahttp:\/\/twpf.jp\/sashibu_s","protected":false,"verified":false,"followers_count":419,"friends_count":485,"listed_count":9,"favourites_count":7547,"statuses_count":38761,"created_at":"Fri Dec 23 03:49:52 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645932801246687233\/zIiiQn-N.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645932801246687233\/zIiiQn-N.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653485038563016704\/WXK2h7H5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653485038563016704\/WXK2h7H5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444306147\/1425661224","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"monokuro40","name":"\u304a\u3053\u306e\u307f\uff20\u3086\u304b\u306a\u52e2","id":229811189,"id_str":"229811189","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984608567296,"id_str":"663727984608567296","text":"@nekoneko9_ \u3067\u3082\u3001\u672c\u5f53\u306b\u3088\u304f\u9811\u5f35\u3063\u305f\u3088\u306d\u30fc(._.)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727650725216256,"in_reply_to_status_id_str":"663727650725216256","in_reply_to_user_id":2441249490,"in_reply_to_user_id_str":"2441249490","in_reply_to_screen_name":"nekoneko9_","user":{"id":3306942151,"id_str":"3306942151","name":"\u5de6\u53f3\u7530@\u672c\u57a2\u30fb\u4ea4\u63db\u57a2","screen_name":"3G0nGvqbspuq5Ks","location":"\u767d\u9ce5\u6ca2\u5b66\u5712\u9ad8\u7b49\u5b66\u6821","url":null,"description":"\u6210\u4eba\u6e08\u307f\u3002\u725b\u5cf6\u82e5\u5229\u63a8\u3057\u306e\u82e5\u69d8\u30af\u30e9\u30b9\u30bf\u3002\u767d\u9ce5\u6ca2\u30fb\u5909\u4eba\u30b3\u30f3\u30d3\u30fb\u9752\u57ce3\u5e74\u8d14\u5c53\u6c17\u5473\u3002\u8150\u3063\u3066\u307e\u3059\u304c\u3001\u610f\u5916\u3068\u5730\u96f7CP\u3042\u308b\u304b\u3082\u3067\u3059\u3002\u5927\u672c\u547dCP\u306f\u3001\u5f71\u65e5\u3067\u3059!!\u65e5\u5411\u53d7\u3051\u306a\u3089\u306a\u3093\u3067\u3082\u5927\u597d\u7269\u3067\u3059\u3002\n\u6642\u3005\u3001\u4ea4\u63dbor\u8b72\u6e21\u51fa\u3059\u3068\u601d\u3044\u307e\u3059\u304c\u3001\u305d\u306e\u5834\u5408\u3001\u5c71\u624b\u7dda\u5468\u8fba\u3001\u5ddd\u5d0e\u3001\u6a2a\u6d5c\u306a\u3069\u306f\u624b\u6e21\u3057\u53ef\u80fd\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":37,"friends_count":43,"listed_count":3,"favourites_count":88,"statuses_count":1329,"created_at":"Wed Aug 05 12:12:22 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649597621833633794\/Mdt7Pn7c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649597621833633794\/Mdt7Pn7c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3306942151\/1445613687","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nekoneko9_","name":"\u6c5f\u6238\u5ddd\u30df\u30ca\u30f3","id":2441249490,"id_str":"2441249490","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057657"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984633860096,"id_str":"663727984633860096","text":"We know Mondays suck. But atleast you get happy hour specials! M-F 3pm-7pm $2 drafts and daily drink specials #HappyHour #PerfectStart","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3047287543,"id_str":"3047287543","name":"RuinsPubKC","screen_name":"RuinsPubKC","location":"Kansas City, MO","url":"http:\/\/ruinspubkc.com\/","description":"KCMO's first bar with 40 self tap beers!","protected":false,"verified":false,"followers_count":230,"friends_count":188,"listed_count":7,"favourites_count":45,"statuses_count":134,"created_at":"Fri Feb 27 17:47:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571366549663911936\/TbDg_oth_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571366549663911936\/TbDg_oth_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HappyHour","indices":[112,122]},{"text":"PerfectStart","indices":[123,136]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057663"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984629563392,"id_str":"663727984629563392","text":"\uc6b0\uc6b0\uc6b0 \uc0b0\ud638\uc57c..\u315c\u315c\u315c\u315c\u315c\u315c","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2944114201,"id_str":"2944114201","name":"\ud6c4\uc640\ud492 \ub2c8\ub098\uc624\ub108 \uc0b6\uacc4","screen_name":"C_Salmgye","location":null,"url":null,"description":"\uc790\uce90, \ud3ec\ucf13\ubaac, \uadf8 \uc678 \uc7a1\ub355\n\ud0d0\ub77c\ub300\ud654\/\uc695\ud2b8\uc8fc\uc758","protected":false,"verified":false,"followers_count":80,"friends_count":84,"listed_count":0,"favourites_count":219,"statuses_count":9473,"created_at":"Fri Dec 26 16:03:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634738927451041792\/aOw-gX-m_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634738927451041792\/aOw-gX-m_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2944114201\/1428036157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080057662"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621187072,"id_str":"663727984621187072","text":"Too many reasons to smile. \ud83d\ude0a https:\/\/t.co\/mnCNQZ1xpv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2832399720,"id_str":"2832399720","name":"honoszamri","screen_name":"Nrl_Hns","location":"GGMU","url":"http:\/\/instagram.com\/honosthenbhd","description":"\u00d7","protected":false,"verified":false,"followers_count":70,"friends_count":48,"listed_count":0,"favourites_count":857,"statuses_count":1870,"created_at":"Fri Sep 26 02:09:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663193840845590528\/Yi6YRnks_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663193840845590528\/Yi6YRnks_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2832399720\/1447076462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727979617325056,"id_str":"663727979617325056","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFLSUEAAT3TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFLSUEAAT3TC.jpg","url":"https:\/\/t.co\/mnCNQZ1xpv","display_url":"pic.twitter.com\/mnCNQZ1xpv","expanded_url":"http:\/\/twitter.com\/Nrl_Hns\/status\/663727984621187072\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":453,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727979617325056,"id_str":"663727979617325056","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFLSUEAAT3TC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFLSUEAAT3TC.jpg","url":"https:\/\/t.co\/mnCNQZ1xpv","display_url":"pic.twitter.com\/mnCNQZ1xpv","expanded_url":"http:\/\/twitter.com\/Nrl_Hns\/status\/663727984621187072\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":453,"resize":"fit"},"small":{"w":340,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057660"} +{"delete":{"status":{"id":663717419190321152,"id_str":"663717419190321152","user_id":4168716012,"user_id_str":"4168716012"},"timestamp_ms":"1447080058026"}} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984616968193,"id_str":"663727984616968193","text":"Found a Transponder Snail!\nEncounter with a giant whale! \"We'll meet here again!\"\n#TreCru https:\/\/t.co\/AcRJxQjigv","source":"\u003ca href=\"http:\/\/www.bandaigames.channel.or.jp\/list\/one_main\/tc\/en\/\" rel=\"nofollow\"\u003eONE PIECE TREASURE CRUISE\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2837667591,"id_str":"2837667591","name":"BJA BJA","screen_name":"TheRealBJA007","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":113,"created_at":"Sun Oct 19 22:51:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TreCru","indices":[82,89]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727984419803137,"id_str":"663727984419803137","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFdLUEAE-ggs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFdLUEAE-ggs.png","url":"https:\/\/t.co\/AcRJxQjigv","display_url":"pic.twitter.com\/AcRJxQjigv","expanded_url":"http:\/\/twitter.com\/TheRealBJA007\/status\/663727984616968193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727984419803137,"id_str":"663727984419803137","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFdLUEAE-ggs.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFdLUEAE-ggs.png","url":"https:\/\/t.co\/AcRJxQjigv","display_url":"pic.twitter.com\/AcRJxQjigv","expanded_url":"http:\/\/twitter.com\/TheRealBJA007\/status\/663727984616968193\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":272,"resize":"fit"},"medium":{"w":600,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057659"} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984621129728,"id_str":"663727984621129728","text":"@ my cramps rn \u2639 https:\/\/t.co\/guJEhfGlQB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1144446721,"id_str":"1144446721","name":"Desiree \u2728","screen_name":"Danielle_23_","location":"Texas","url":null,"description":"AHS'17 \u26be\ufe0f","protected":false,"verified":false,"followers_count":655,"friends_count":354,"listed_count":1,"favourites_count":5938,"statuses_count":11734,"created_at":"Sun Feb 03 07:04:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663258992383143936\/go2qMblP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663258992383143936\/go2qMblP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1144446721\/1446964853","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727978673631236,"id_str":"663727978673631236","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFHxUcAQecwW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFHxUcAQecwW.jpg","url":"https:\/\/t.co\/guJEhfGlQB","display_url":"pic.twitter.com\/guJEhfGlQB","expanded_url":"http:\/\/twitter.com\/Danielle_23_\/status\/663727984621129728\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727978673631236,"id_str":"663727978673631236","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFHxUcAQecwW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFHxUcAQecwW.jpg","url":"https:\/\/t.co\/guJEhfGlQB","display_url":"pic.twitter.com\/guJEhfGlQB","expanded_url":"http:\/\/twitter.com\/Danielle_23_\/status\/663727984621129728\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663727978677821444,"id_str":"663727978677821444","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFHyUYAQj4aW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFHyUYAQj4aW.jpg","url":"https:\/\/t.co\/guJEhfGlQB","display_url":"pic.twitter.com\/guJEhfGlQB","expanded_url":"http:\/\/twitter.com\/Danielle_23_\/status\/663727984621129728\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663727978690383874,"id_str":"663727978690383874","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFH1UEAIxwNf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFH1UEAIxwNf.jpg","url":"https:\/\/t.co\/guJEhfGlQB","display_url":"pic.twitter.com\/guJEhfGlQB","expanded_url":"http:\/\/twitter.com\/Danielle_23_\/status\/663727984621129728\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663727978686185472,"id_str":"663727978686185472","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFH0UAAAzJFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFH0UAAAzJFJ.jpg","url":"https:\/\/t.co\/guJEhfGlQB","display_url":"pic.twitter.com\/guJEhfGlQB","expanded_url":"http:\/\/twitter.com\/Danielle_23_\/status\/663727984621129728\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080057660"} +{"delete":{"status":{"id":638838284232302592,"id_str":"638838284232302592","user_id":964670958,"user_id_str":"964670958"},"timestamp_ms":"1447080058194"}} +{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727984642162688,"id_str":"663727984642162688","text":"\u4eca\u65e5\u306f\uff5e\uff5e\u5199\u771f\u3044\u3063\u3071\u3044\u8f09\u305b\u308b\uff5e\uff01\u30fd(\u30fb\u03c9\u30fb)\u30ce\u3082\u3046\u3044\u3063\u3061\u3087\uff01\u30dd\u30a4\u30dd\u30a4\uff01 https:\/\/t.co\/xhbrvqvKDh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715177477505024,"in_reply_to_status_id_str":"663715177477505024","in_reply_to_user_id":561994597,"in_reply_to_user_id_str":"561994597","in_reply_to_screen_name":"miya14k","user":{"id":561994597,"id_str":"561994597","name":"\u7f8e\u5f25","screen_name":"miya14k","location":null,"url":"http:\/\/worldcosplay.net\/member\/58894\/","description":"\u30ec\u30a4\u30e4\u30fc\u3067\u3059^^\u30b3\u30b9\u5199\u771f\u3059\u3050\u6295\u4e0b\u3059\u308b\u306e\u3067\u6ce8\u610f\uff01\uff7e\uff70\uff97\uff70\uff91\uff70\uff9d\u5927\u597d\u304d\uff5e\uff01\uff84\uff9e\uff97\uff7a\uff9e\uff9d\uff8e\uff9e\uff70\uff99\u3068\u304b\u3089\u304f\u308a\u30b5\u30fc\u30ab\u30b9\u3001\u30a8\u30f4\u30a1\u306f\u539f\u70b9\uff01\u85e4\u7530\u5148\u751f\u4f5c\u54c1\/\uff8f\uff7b\uff99\u3055\u3093\/KH\/\u308b\u30fc\u307f\u3063\u304f\/\u30b8\u30d6\u30ea\u304c\u3059\u304d\u3067\u3059\uff01 \u540c\u3058\u7269\u304c\u597d\u304d\u306a\u65b9\u306f\u3001\u3069\u3093\u3069\u3093\u3001\u7d61\u3093\u3067\u4e0b\u3055\u3044\u307e\u305b\uff01 \uff71\uff70\uff76\uff72\uff8c\uff9e\u219238014","protected":false,"verified":false,"followers_count":467,"friends_count":134,"listed_count":14,"favourites_count":1986,"statuses_count":16835,"created_at":"Tue Apr 24 12:45:43 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659432988879355904\/9Z3_72gp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659432988879355904\/9Z3_72gp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/561994597\/1446710350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727982628880384,"id_str":"663727982628880384","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFWgUwAAlbWF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFWgUwAAlbWF.png","url":"https:\/\/t.co\/xhbrvqvKDh","display_url":"pic.twitter.com\/xhbrvqvKDh","expanded_url":"http:\/\/twitter.com\/miya14k\/status\/663727984642162688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727982628880384,"id_str":"663727982628880384","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFWgUwAAlbWF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFWgUwAAlbWF.png","url":"https:\/\/t.co\/xhbrvqvKDh","display_url":"pic.twitter.com\/xhbrvqvKDh","expanded_url":"http:\/\/twitter.com\/miya14k\/status\/663727984642162688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}},{"id":663727983031521280,"id_str":"663727983031521280","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFYAUkAA0GKP.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFYAUkAA0GKP.png","url":"https:\/\/t.co\/xhbrvqvKDh","display_url":"pic.twitter.com\/xhbrvqvKDh","expanded_url":"http:\/\/twitter.com\/miya14k\/status\/663727984642162688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":509,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":898,"resize":"fit"},"large":{"w":601,"h":900,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080057665"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840734720,"id_str":"663727988840734720","text":"RT @wandering_will: My next #adventure! \n\nUK to PNG - 18 months - Europe, Iran, Pakistan, India, Nepal, Burma...\n\nhttps:\/\/t.co\/RWPQ5eLGig h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94750192,"id_str":"94750192","name":"Lisa Aaron Jordan","screen_name":"lisaaaronj","location":"Macon, Georgia","url":null,"description":null,"protected":false,"verified":false,"followers_count":445,"friends_count":797,"listed_count":4,"favourites_count":316,"statuses_count":2267,"created_at":"Sat Dec 05 07:46:12 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628907578517553152\/drF5O7DB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628907578517553152\/drF5O7DB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94750192\/1438778403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Aug 18 11:40:35 +0000 2015","id":633604399542202368,"id_str":"633604399542202368","text":"My next #adventure! \n\nUK to PNG - 18 months - Europe, Iran, Pakistan, India, Nepal, Burma...\n\nhttps:\/\/t.co\/RWPQ5eLGig http:\/\/t.co\/2RmzzI2jzn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1400519414,"id_str":"1400519414","name":"The Broke Backpacker","screen_name":"wandering_will","location":"On the Road","url":"http:\/\/www.thebrokebackpacker.com","description":"Adventurer and journalist. Backpacking from the UK to Papau New Guinea over 2 years. Say hello:\nhttp:\/\/t.co\/HJgdk4qZT7\nhttps:\/\/t.co\/dLwcm32QtH","protected":false,"verified":false,"followers_count":56645,"friends_count":31428,"listed_count":915,"favourites_count":7550,"statuses_count":6336,"created_at":"Fri May 03 19:19:26 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505761654575861760\/iXTAg_tB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505761654575861760\/iXTAg_tB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1400519414\/1446036216","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":347,"entities":{"hashtags":[{"text":"adventure","indices":[8,18]}],"urls":[{"url":"https:\/\/t.co\/RWPQ5eLGig","expanded_url":"https:\/\/www.youtube.com\/watch?v=wfUs4vUyWKY","display_url":"youtube.com\/watch?v=wfUs4v\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[],"media":[{"id":633604398636097536,"id_str":"633604398636097536","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","url":"http:\/\/t.co\/2RmzzI2jzn","display_url":"pic.twitter.com\/2RmzzI2jzn","expanded_url":"http:\/\/twitter.com\/wandering_will\/status\/633604399542202368\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1019,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":633604398636097536,"id_str":"633604398636097536","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","url":"http:\/\/t.co\/2RmzzI2jzn","display_url":"pic.twitter.com\/2RmzzI2jzn","expanded_url":"http:\/\/twitter.com\/wandering_will\/status\/633604399542202368\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1019,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"adventure","indices":[28,38]}],"urls":[{"url":"https:\/\/t.co\/RWPQ5eLGig","expanded_url":"https:\/\/www.youtube.com\/watch?v=wfUs4vUyWKY","display_url":"youtube.com\/watch?v=wfUs4v\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"wandering_will","name":"The Broke Backpacker","id":1400519414,"id_str":"1400519414","indices":[3,18]}],"symbols":[],"media":[{"id":633604398636097536,"id_str":"633604398636097536","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","url":"http:\/\/t.co\/2RmzzI2jzn","display_url":"pic.twitter.com\/2RmzzI2jzn","expanded_url":"http:\/\/twitter.com\/wandering_will\/status\/633604399542202368\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1019,"h":533,"resize":"fit"}},"source_status_id":633604399542202368,"source_status_id_str":"633604399542202368","source_user_id":1400519414,"source_user_id_str":"1400519414"}]},"extended_entities":{"media":[{"id":633604398636097536,"id_str":"633604398636097536","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMsD1_TUYAAoh7Q.jpg","url":"http:\/\/t.co\/2RmzzI2jzn","display_url":"pic.twitter.com\/2RmzzI2jzn","expanded_url":"http:\/\/twitter.com\/wandering_will\/status\/633604399542202368\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"},"large":{"w":1019,"h":533,"resize":"fit"}},"source_status_id":633604399542202368,"source_status_id_str":"633604399542202368","source_user_id":1400519414,"source_user_id_str":"1400519414"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811423744,"id_str":"663727988811423744","text":"Pa nada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1733813834,"id_str":"1733813834","name":"LUCIA D.","screen_name":"LuciaDiaz2000","location":"Santiago del Estero, Argentina","url":"https:\/\/www.facebook.com\/profile.php?id=100008286883651","description":null,"protected":false,"verified":false,"followers_count":1086,"friends_count":1140,"listed_count":0,"favourites_count":458,"statuses_count":11055,"created_at":"Fri Sep 06 02:59:43 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618254402168725504\/B2MdVRJE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618254402168725504\/B2MdVRJE.jpg","profile_background_tile":true,"profile_link_color":"441122","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661317118118481920\/aQklXIDU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661317118118481920\/aQklXIDU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1733813834\/1435117126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840771584,"id_str":"663727988840771584","text":"RT @BigDataBlogs: What you missed in Big Data : Understanding the consumer ... https:\/\/t.co\/sEjXqcKdXf via @BigDataBlogs #Opines on #BigData","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53405160,"id_str":"53405160","name":"WarairaRepano","screen_name":"Warairarepano","location":" Las Tic conectan! ","url":null,"description":"La juventud tiene que crear, una juventud que no crea es una anomal\u00eda realmente. Che Guevara","protected":false,"verified":false,"followers_count":4228,"friends_count":4639,"listed_count":45,"favourites_count":1459,"statuses_count":37621,"created_at":"Fri Jul 03 14:54:55 +0000 2009","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"143BA6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493735351278501888\/hi1qVZjM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493735351278501888\/hi1qVZjM.jpeg","profile_background_tile":true,"profile_link_color":"F50323","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"211BDB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651346227238334465\/8CRJbPLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651346227238334465\/8CRJbPLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53405160\/1438611552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:16 +0000 2015","id":663726806017679364,"id_str":"663726806017679364","text":"What you missed in Big Data : Understanding the consumer ... https:\/\/t.co\/sEjXqcKdXf via @BigDataBlogs #Opines on #BigData","source":"\u003ca href=\"https:\/\/zapier.com\/\" rel=\"nofollow\"\u003eZapier.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408520849,"id_str":"408520849","name":"BigData Opines","screen_name":"BigDataBlogs","location":null,"url":"http:\/\/www.opineit.com","description":"#Opines on #BigData by Opine Media Group (OMG) http:\/\/www.OpineIT.com","protected":false,"verified":false,"followers_count":38838,"friends_count":3918,"listed_count":1380,"favourites_count":2,"statuses_count":24667,"created_at":"Wed Nov 09 14:46:48 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637995858265444352\/it-FbVO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637995858265444352\/it-FbVO2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"Opines","indices":[103,110]},{"text":"BigData","indices":[114,122]}],"urls":[{"url":"https:\/\/t.co\/sEjXqcKdXf","expanded_url":"http:\/\/zpr.io\/acak","display_url":"zpr.io\/acak","indices":[61,84]}],"user_mentions":[{"screen_name":"BigDataBlogs","name":"BigData Opines","id":408520849,"id_str":"408520849","indices":[89,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Opines","indices":[121,128]},{"text":"BigData","indices":[132,140]}],"urls":[{"url":"https:\/\/t.co\/sEjXqcKdXf","expanded_url":"http:\/\/zpr.io\/acak","display_url":"zpr.io\/acak","indices":[79,102]}],"user_mentions":[{"screen_name":"BigDataBlogs","name":"BigData Opines","id":408520849,"id_str":"408520849","indices":[3,16]},{"screen_name":"BigDataBlogs","name":"BigData Opines","id":408520849,"id_str":"408520849","indices":[107,120]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988824014848,"id_str":"663727988824014848","text":"@FHEEFS \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727462229147648,"in_reply_to_status_id_str":"663727462229147648","in_reply_to_user_id":72397721,"in_reply_to_user_id_str":"72397721","in_reply_to_screen_name":"FHEEFS","user":{"id":2730116698,"id_str":"2730116698","name":"Valeri","screen_name":"itsnotcrims","location":"Location ","url":"http:\/\/WWW.WEBSITE.COM","description":"Bio","protected":false,"verified":false,"followers_count":1430,"friends_count":438,"listed_count":16,"favourites_count":6229,"statuses_count":57600,"created_at":"Thu Jul 31 18:44:39 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663137991779569664\/MMXPJREn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663137991779569664\/MMXPJREn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2730116698\/1447069860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FHEEFS","name":"MOST HATED","id":72397721,"id_str":"72397721","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080058662"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807077888,"id_str":"663727988807077888","text":"\u3046\u30fc\u30fc\u307b\u30fc\u30fc\u30fc\u30fc\u30fc\u30fd(\uff1b\u25bd\uff1b)\u30ce","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":453931017,"id_str":"453931017","name":"\u30b4\u30ea\u5b22","screen_name":"gorilla_m_bot","location":null,"url":null,"description":"\u3046\u3063\u307b\u307b\uff01\u3046\u307b\u3063\uff01\u3046\u3063\u307b\u3046\u307b\uff01","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":51168,"created_at":"Tue Jan 03 12:49:34 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1731941656\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1731941656\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058658"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988819763200,"id_str":"663727988819763200","text":"Allam bu k\u0131z\u0131n tipine nolmu\u015f\u015f b\u00f6le djdjdjsksmskkdksks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2182172014,"id_str":"2182172014","name":"Allah\u0131n a\u00e7 Koalas\u0131","screen_name":"Quenkoalaa","location":null,"url":null,"description":"Fenerbah\u00e7e \/Smiler,K\u0131rm\u0131z\u0131,ATAT\u00dcRK","protected":false,"verified":false,"followers_count":1456,"friends_count":554,"listed_count":0,"favourites_count":25863,"statuses_count":2180,"created_at":"Fri Nov 15 17:40:01 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50C0C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176694537\/zpagbzvL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176694537\/zpagbzvL.jpeg","profile_background_tile":true,"profile_link_color":"F30E10","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"080607","profile_text_color":"C28E38","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577904970391035904\/08_vNY3C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577904970391035904\/08_vNY3C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2182172014\/1390853617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080058661"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988802891777,"id_str":"663727988802891777","text":"\u30d4\u30f3\u30ca\u5207\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243267079,"id_str":"3243267079","name":"\u3055 \u304d \u3077 \u308b\u3010 \u516c\u5f0f\u3060\u30be \u3011","screen_name":"JUMP_0509saki","location":"\u5c71\u7530\u306e\u30b7\u30c3\u30af\u30b9\u30d1\u30c3\u30af\u306e2\u30d1\u30c3\u30af\u76ee\u306e\u5de6\u5074","url":null,"description":"\u25c7 \u541b\u3068\u4e00\u7dd2\u306b\u30c6\u30a4\u30af\u30aa\u30d5 \u5c71\u7530\u6dbc\u4ecb\u304c\u5927\u597d\u304d\u306a\uff77\uff81\uff76\uff9e\uff72 \u25c7 \u25c7 \u3042\u3084\u3061\u3083\u305d \u2192 @ayachas___t \u25c7 \u3042\u308a\u305d\u308b\u3045\u3045\u2192 \u2192 @Arioka_love0415 \u25c7 \u5869\u5bfe\u5fdc \u5927\u6b53\u8fce\u3060\u3088\u3002\u30a6\u30d5","protected":false,"verified":false,"followers_count":1445,"friends_count":1041,"listed_count":8,"favourites_count":3445,"statuses_count":10474,"created_at":"Fri Jun 12 12:04:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655421861082173440\/k5uSSETC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655421861082173440\/k5uSSETC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243267079\/1444833056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058657"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988832382976,"id_str":"663727988832382976","text":"Por mais chato que o livro esteja a ser, n\u00e3o consigo deixar ler por que fico curiosa p saber o que vai acontecer. Vai que acontece algo bom.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476149289,"id_str":"476149289","name":"J.","screen_name":"JesuelmaTorres","location":"Luanda\/Rio de Janeiro. ","url":null,"description":null,"protected":false,"verified":false,"followers_count":112,"friends_count":297,"listed_count":0,"favourites_count":3228,"statuses_count":4317,"created_at":"Fri Jan 27 20:36:41 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444981275\/IMG_0731.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444981275\/IMG_0731.JPG","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646173935315365888\/_EtIvbyT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646173935315365888\/_EtIvbyT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476149289\/1443154568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080058664"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807229440,"id_str":"663727988807229440","text":"https:\/\/t.co\/RCPJP4vcLa RT infobae: Fall\u00f3 un sem\u00e1foro y el tr\u00e1nsito est\u00e1 imposible en Palermo \u2026 https:\/\/t.co\/1IWJOUyyjN","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328503122,"id_str":"3328503122","name":"Haley","screen_name":"halihaliey","location":"Buenos Aires, Argentina","url":null,"description":"Naturally and artificially flavored","protected":false,"verified":false,"followers_count":397,"friends_count":1035,"listed_count":217,"favourites_count":0,"statuses_count":142266,"created_at":"Mon Aug 24 11:26:02 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635775296587743232\/OVu2A3xN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635775296587743232\/OVu2A3xN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328503122\/1440415668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RCPJP4vcLa","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663711483746996224,"id_str":"663711483746996224","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6E_YWUAAwjor.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6E_YWUAAwjor.jpg","url":"https:\/\/t.co\/1IWJOUyyjN","display_url":"pic.twitter.com\/1IWJOUyyjN","expanded_url":"http:\/\/twitter.com\/infobae\/status\/663711499685351424\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663711499685351424,"source_status_id_str":"663711499685351424","source_user_id":69416519,"source_user_id_str":"69416519"}]},"extended_entities":{"media":[{"id":663711483746996224,"id_str":"663711483746996224","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6E_YWUAAwjor.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6E_YWUAAwjor.jpg","url":"https:\/\/t.co\/1IWJOUyyjN","display_url":"pic.twitter.com\/1IWJOUyyjN","expanded_url":"http:\/\/twitter.com\/infobae\/status\/663711499685351424\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663711499685351424,"source_status_id_str":"663711499685351424","source_user_id":69416519,"source_user_id_str":"69416519"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080058658"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988828184576,"id_str":"663727988828184576","text":"Simple Water Icons (Icons) \u007bgraphicriver\u007d https:\/\/t.co\/CWNvUJ4oBo","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4058986692,"id_str":"4058986692","name":"cody carter","screen_name":"codycarter671","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":40,"listed_count":15,"favourites_count":0,"statuses_count":19803,"created_at":"Thu Oct 29 15:51:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659760259003584513\/FXp5MSz2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659760259003584513\/FXp5MSz2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CWNvUJ4oBo","expanded_url":"http:\/\/bit.ly\/1W7F7X4","display_url":"bit.ly\/1W7F7X4","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058663"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988803026944,"id_str":"663727988803026944","text":"RT @NBCInvestigates: There are 19 years worth of Christmas presents for Kevin Ott. If he ever gets out of prison. https:\/\/t.co\/sJtsxbK16s h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348592041,"id_str":"348592041","name":"Clark","screen_name":"Timclark72","location":"West Chester, PA","url":null,"description":"Patriot","protected":false,"verified":false,"followers_count":61,"friends_count":260,"listed_count":1,"favourites_count":179,"statuses_count":480,"created_at":"Thu Aug 04 17:44:45 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1477875749\/Picture_3681_-_Copy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1477875749\/Picture_3681_-_Copy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348592041\/1432038849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:19 +0000 2015","id":663721783682539520,"id_str":"663721783682539520","text":"There are 19 years worth of Christmas presents for Kevin Ott. If he ever gets out of prison. https:\/\/t.co\/sJtsxbK16s https:\/\/t.co\/1ih34GDH0T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218289790,"id_str":"218289790","name":"NBC Investigations","screen_name":"NBCInvestigates","location":"New York City","url":"http:\/\/nbcnews.com\/news\/investigations","description":"Your home for investigative journalism from @NBCNews. We hope you'll share your story ideas, documents and comments.","protected":false,"verified":true,"followers_count":10882,"friends_count":127,"listed_count":319,"favourites_count":77,"statuses_count":3452,"created_at":"Sun Nov 21 23:05:55 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"062131","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181866273\/s5G80wWy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181866273\/s5G80wWy.jpeg","profile_background_tile":true,"profile_link_color":"5172A0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430962811510849536\/hHzagfgO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430962811510849536\/hHzagfgO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218289790\/1398203223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sJtsxbK16s","expanded_url":"http:\/\/www.nbcnews.com\/news\/us-news\/they-sentenced-me-die-prison-n459511","display_url":"nbcnews.com\/news\/us-news\/t\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663721779408539648,"id_str":"663721779408539648","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","url":"https:\/\/t.co\/1ih34GDH0T","display_url":"pic.twitter.com\/1ih34GDH0T","expanded_url":"http:\/\/twitter.com\/NBCInvestigates\/status\/663721783682539520\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721779408539648,"id_str":"663721779408539648","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","url":"https:\/\/t.co\/1ih34GDH0T","display_url":"pic.twitter.com\/1ih34GDH0T","expanded_url":"http:\/\/twitter.com\/NBCInvestigates\/status\/663721783682539520\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sJtsxbK16s","expanded_url":"http:\/\/www.nbcnews.com\/news\/us-news\/they-sentenced-me-die-prison-n459511","display_url":"nbcnews.com\/news\/us-news\/t\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"NBCInvestigates","name":"NBC Investigations","id":218289790,"id_str":"218289790","indices":[3,19]}],"symbols":[],"media":[{"id":663721779408539648,"id_str":"663721779408539648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","url":"https:\/\/t.co\/1ih34GDH0T","display_url":"pic.twitter.com\/1ih34GDH0T","expanded_url":"http:\/\/twitter.com\/NBCInvestigates\/status\/663721783682539520\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663721783682539520,"source_status_id_str":"663721783682539520","source_user_id":218289790,"source_user_id_str":"218289790"}]},"extended_entities":{"media":[{"id":663721779408539648,"id_str":"663721779408539648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDcRtWEAAyvUd.jpg","url":"https:\/\/t.co\/1ih34GDH0T","display_url":"pic.twitter.com\/1ih34GDH0T","expanded_url":"http:\/\/twitter.com\/NBCInvestigates\/status\/663721783682539520\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663721783682539520,"source_status_id_str":"663721783682539520","source_user_id":218289790,"source_user_id_str":"218289790"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058657"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807237632,"id_str":"663727988807237632","text":"mTrabajadores: isumanijaz: RT EyvazovOruj: Check it out! I will prepare presentations on powerpoint for $5 on #Fiv\u2026 https:\/\/t.co\/yVgy6atYjE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3407341575,"id_str":"3407341575","name":"cyberstormonfiverr","screen_name":"cyberstormonfiv","location":"On Fiverr","url":"https:\/\/www.fiverr.com\/cyberstorm","description":"Working to help entrepreneurs make a statement on the World Wide Web.","protected":false,"verified":false,"followers_count":296,"friends_count":2,"listed_count":570,"favourites_count":0,"statuses_count":136570,"created_at":"Fri Aug 07 15:59:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629688075212455936\/iHdhXHqv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629688075212455936\/iHdhXHqv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407341575\/1438964677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Fiv","indices":[110,114]}],"urls":[{"url":"https:\/\/t.co\/yVgy6atYjE","expanded_url":"https:\/\/www.fiverr.com\/s2\/946302c505","display_url":"fiverr.com\/s2\/946302c505","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058658"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988832411648,"id_str":"663727988832411648","text":"RT @TooLegitDeck: Warning Signs That Tell Your Vagina Is Unhealthy\n\n https:\/\/t.co\/Y9VDiGmrJB","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1692631236,"id_str":"1692631236","name":"\ufe0fSugar Daddy","screen_name":"MyBootyYourFace","location":"your dreams","url":null,"description":"follow me :)","protected":false,"verified":false,"followers_count":32223,"friends_count":11304,"listed_count":96,"favourites_count":9134,"statuses_count":32907,"created_at":"Fri Aug 23 02:32:55 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660175314581106688\/MCvOepxx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660175314581106688\/MCvOepxx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1692631236\/1441831372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:41 +0000 2015","id":663720618076991488,"id_str":"663720618076991488","text":"Warning Signs That Tell Your Vagina Is Unhealthy\n\n https:\/\/t.co\/Y9VDiGmrJB","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3367530887,"id_str":"3367530887","name":"\u2764\ufe0f","screen_name":"TooLegitDeck","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1186,"friends_count":2968,"listed_count":0,"favourites_count":44,"statuses_count":17,"created_at":"Thu Jul 09 12:12:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619117733960110080\/o3H44zhN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619117733960110080\/o3H44zhN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3367530887\/1436444827","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y9VDiGmrJB","expanded_url":"http:\/\/newssash.com\/link\/lryt7v93gc","display_url":"newssash.com\/link\/lryt7v93gc","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y9VDiGmrJB","expanded_url":"http:\/\/newssash.com\/link\/lryt7v93gc","display_url":"newssash.com\/link\/lryt7v93gc","indices":[69,92]}],"user_mentions":[{"screen_name":"TooLegitDeck","name":"\u2764\ufe0f","id":3367530887,"id_str":"3367530887","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058664"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815499264,"id_str":"663727988815499264","text":"RT @o8o8oo8: \u3042\u3068\u3053\u3053 https:\/\/t.co\/GRCEavbsfe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227158489,"id_str":"3227158489","name":"\u3074\u30fc\u3061\u3083\u3093","screen_name":"p_p_p_1219","location":"\u30ec\u30fc\u30d1\u30f3","url":"http:\/\/twpf.jp\/p_p_p_1219","description":"\u305f\u3060\u306e\u6771\u5802\u3055\u3093\u3068\u8352\u5317\u3055\u3093\u304c\u597d\u304d\u306a\u30ad\u30c1\u30ac\u30a4\u270c(\u2018\u03c9\u2019)\u270c\ufe0f \u304a\u7d75\u63cf\u304d\u3068\u821e\u53f0\u4ff3\u512a\u3082\u597d\u304d","protected":false,"verified":false,"followers_count":70,"friends_count":108,"listed_count":3,"favourites_count":2795,"statuses_count":5132,"created_at":"Tue May 26 13:03:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626963733701509120\/_ZlTmt-3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626963733701509120\/_ZlTmt-3.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658141474891042816\/yU4V7vPY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658141474891042816\/yU4V7vPY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3227158489\/1446998130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:16:25 +0000 2015","id":663344323170177026,"id_str":"663344323170177026","text":"\u3042\u3068\u3053\u3053 https:\/\/t.co\/GRCEavbsfe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212823348,"id_str":"212823348","name":"OOY\u2600\ufe0f\u3061\u3093\u3053\u3059\u3053\u3046","screen_name":"o8o8oo8","location":"\u89aa\u306b\u306f\u30d0\u30ec\u306a\u3044\u3088\u3046\u306b\u306d","url":null,"description":"20\u4ee3\u8150\u308a\u624b\u96d1\u98df\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u304a\u7d75\u63cf\u304d\u304a\u3070\u3055\u3093.\u4e0b\u54c1.\u8a73\u3057\u304f\u306f\uff82\uff72\uff8c\uff68\uff70\uff99.\u8ee2\u8f09\u7981\u6b62( \u88cf\u57a2\u306f18\u6b73\u3068\u5224\u308a\u304b\u306d\u308b\u5834\u5408\u3001\u8a8d\u8a3c\u3055\u308c\u307e\u305b\u3093@008_nakamuraya) http:\/\/twpf.jp\/o8o8oo8 \u30a2\u30a4\u30b3\u30f3\u306f\u3082\u3075\u3052\u307c\u6c0f","protected":false,"verified":false,"followers_count":18604,"friends_count":966,"listed_count":579,"favourites_count":106278,"statuses_count":148526,"created_at":"Sun Nov 07 04:31:19 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513636409215684608\/ZRiZdLzB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513636409215684608\/ZRiZdLzB.jpeg","profile_background_tile":true,"profile_link_color":"FFD700","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661762538741235712\/HyB78Omk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661762538741235712\/HyB78Omk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212823348\/1436965448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":242,"favorite_count":795,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663344313833689088,"id_str":"663344313833689088","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","url":"https:\/\/t.co\/GRCEavbsfe","display_url":"pic.twitter.com\/GRCEavbsfe","expanded_url":"http:\/\/twitter.com\/o8o8oo8\/status\/663344323170177026\/photo\/1","type":"photo","sizes":{"large":{"w":951,"h":1023,"resize":"fit"},"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663344313833689088,"id_str":"663344313833689088","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","url":"https:\/\/t.co\/GRCEavbsfe","display_url":"pic.twitter.com\/GRCEavbsfe","expanded_url":"http:\/\/twitter.com\/o8o8oo8\/status\/663344323170177026\/photo\/1","type":"photo","sizes":{"large":{"w":951,"h":1023,"resize":"fit"},"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"o8o8oo8","name":"OOY\u2600\ufe0f\u3061\u3093\u3053\u3059\u3053\u3046","id":212823348,"id_str":"212823348","indices":[3,11]}],"symbols":[],"media":[{"id":663344313833689088,"id_str":"663344313833689088","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","url":"https:\/\/t.co\/GRCEavbsfe","display_url":"pic.twitter.com\/GRCEavbsfe","expanded_url":"http:\/\/twitter.com\/o8o8oo8\/status\/663344323170177026\/photo\/1","type":"photo","sizes":{"large":{"w":951,"h":1023,"resize":"fit"},"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"}},"source_status_id":663344323170177026,"source_status_id_str":"663344323170177026","source_user_id":212823348,"source_user_id_str":"212823348"}]},"extended_entities":{"media":[{"id":663344313833689088,"id_str":"663344313833689088","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSsI43VEAA0Wq1.jpg","url":"https:\/\/t.co\/GRCEavbsfe","display_url":"pic.twitter.com\/GRCEavbsfe","expanded_url":"http:\/\/twitter.com\/o8o8oo8\/status\/663344323170177026\/photo\/1","type":"photo","sizes":{"large":{"w":951,"h":1023,"resize":"fit"},"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"}},"source_status_id":663344323170177026,"source_status_id_str":"663344323170177026","source_user_id":212823348,"source_user_id_str":"212823348"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840632320,"id_str":"663727988840632320","text":"\u6d0b\u5e73\u3055\u3093\u5927\u4e08\u592b\u304b\u306a\n\u3061\u3083\u3093\u3068\u4f11\u3093\u3067\u304f\u3060\u3055\u3044\n\u304a\u5927\u4e8b\u306b\u306a\u3055\u3063\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228795361,"id_str":"3228795361","name":"\u30c4\u30ca\u30d1\u30f3\u30c0\u306f11\/15SLASH","screen_name":"panda76_kb","location":"\u6687\u4eba\u30c4\u30a4\u30c3\u30bf\u30e9\u30fc","url":null,"description":"KANA-BOON\u3068\u2026\u65e5\u66dc\u30bf\u30b0\u898b\u3066\u304f\u3060\u3055\u3044(\u00eb)\u4e00\u8a00\u304f\u308c\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059(\uff1f)11\/15 SLASH\u53c2\u6226\u3057\u307e\u3059\u308b\u27262015.6.1\u53e4\u8cc0\u3055\u3093\u27262015.10.29\u305f\u306a\u3057\u3093\u3055\u3093\u2726\u306a\u3086\u307d\u3088(@magumeshi_nayu)\u5927\u597d\u304d\u30d5\u30a1\u30f3\u30af\u30e9\u30d6\u4f1a\u54e1\u756a\u53f7No.1","protected":false,"verified":false,"followers_count":579,"friends_count":521,"listed_count":12,"favourites_count":2062,"statuses_count":2456,"created_at":"Thu May 28 09:22:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655662746659258368\/jrWd8MPk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655662746659258368\/jrWd8MPk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228795361\/1433127810","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811272192,"id_str":"663727988811272192","text":"\u5168\u304f\u5148\u751f\u3068\u30c1\u30fc\u30e0\u306b\u306a\u3089\u306a\u3044\u3051\u3069\u90e8\u5c4b\u306e\u96f0\u56f2\u6c17\u306f\u3081\u3063\u3061\u3083\u3088\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315643532,"id_str":"3315643532","name":"\u308b\u3044","screen_name":"koto_spt","location":"ksm \u6240\u5c5e","url":null,"description":"\u7d76\u8cdb\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3 NN\u540d\u308b\u3044\u305f\u308d\u3067\u307e\u3063\u305f\u308a\u30a8\u30f3\u30b8\u30e7\u30a4\u52e2 \u30b9\u30d7\u30c1\u30e3\u7121\u5370S \u30dd\u30b1\u30e2\u30f3\u3068\u304b\u30b9\u30de\u30d6\u30e9\u3068\u304b\u5bfe\u6226\u3044\u3064\u3067\u3082 \u30b2\u30fc\u30e0\u3068\u304b http:\/\/twpf.jp\/koto_spt","protected":false,"verified":false,"followers_count":53,"friends_count":62,"listed_count":5,"favourites_count":1217,"statuses_count":3104,"created_at":"Sat Aug 15 04:50:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706654462992384\/6rmaYxHS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706654462992384\/6rmaYxHS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315643532\/1446971735","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807086081,"id_str":"663727988807086081","text":"RT @GeoHashTrendTH: Top Trends Bangkok-Nov09 20:16 ICT\n#\u0e1a\u0e38\u0e23\u0e4d\u0e32\u0e1b\u0e23\u0e31\u0e21\u0e1b\u0e23\u0e32\ud83c\udd95\n#kissme_thailand\ud83c\udd95\n#\u0e23\u0e2d\u0e09\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e23\u0e07\u0e19\u0e31\u0e49\u0e19\ud83d\udcc9\n#\u0e2b\u0e21\u0e2d\u0e2b\u0e22\u0e2d\u0e07\ud83d\udd25\ud83d\udcc9\n\nhttps:\/\/t.co\/P3kyLgK\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":819155731,"id_str":"819155731","name":"jane","screen_name":"soda_sukanya","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":427,"friends_count":258,"listed_count":3,"favourites_count":2346,"statuses_count":46538,"created_at":"Wed Sep 12 08:48:24 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660452994538823680\/9lPSdWji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660452994538823680\/9lPSdWji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/819155731\/1444122757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:38:10 +0000 2015","id":663712183235178497,"id_str":"663712183235178497","text":"Top Trends Bangkok-Nov09 20:16 ICT\n#\u0e1a\u0e38\u0e23\u0e4d\u0e32\u0e1b\u0e23\u0e31\u0e21\u0e1b\u0e23\u0e32\ud83c\udd95\n#kissme_thailand\ud83c\udd95\n#\u0e23\u0e2d\u0e09\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e23\u0e07\u0e19\u0e31\u0e49\u0e19\ud83d\udcc9\n#\u0e2b\u0e21\u0e2d\u0e2b\u0e22\u0e2d\u0e07\ud83d\udd25\ud83d\udcc9\n\nhttps:\/\/t.co\/P3kyLgKlIB","source":"\u003ca href=\"http:\/\/www.geohashtrend.com\/?cc=TH\" rel=\"nofollow\"\u003eGeoHashTrendTH\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3292390374,"id_str":"3292390374","name":"Geo # Trend-Thailand","screen_name":"GeoHashTrendTH","location":"Thailand","url":"http:\/\/www.geohashtrend.com\/?cc=TH","description":"Latest Geographic Trends Thailand","protected":false,"verified":false,"followers_count":834,"friends_count":7,"listed_count":11,"favourites_count":0,"statuses_count":3758,"created_at":"Sat Jul 25 10:53:52 +0000 2015","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624911863017402368\/2Q2Yx6zA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624911863017402368\/2Q2Yx6zA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292390374\/1437825966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[{"text":"\u0e1a\u0e38\u0e23\u0e4d\u0e32\u0e1b\u0e23\u0e31\u0e21\u0e1b\u0e23\u0e32","indices":[35,48]},{"text":"kissme_thailand","indices":[50,66]},{"text":"\u0e23\u0e2d\u0e09\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e23\u0e07\u0e19\u0e31\u0e49\u0e19","indices":[68,85]},{"text":"\u0e2b\u0e21\u0e2d\u0e2b\u0e22\u0e2d\u0e07","indices":[87,95]}],"urls":[{"url":"https:\/\/t.co\/P3kyLgKlIB","expanded_url":"http:\/\/www.geohashtrend.com?cc=TH","display_url":"geohashtrend.com\/?cc=TH","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1a\u0e38\u0e23\u0e4d\u0e32\u0e1b\u0e23\u0e31\u0e21\u0e1b\u0e23\u0e32","indices":[55,68]},{"text":"kissme_thailand","indices":[70,86]},{"text":"\u0e23\u0e2d\u0e09\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e15\u0e23\u0e07\u0e19\u0e31\u0e49\u0e19","indices":[88,105]},{"text":"\u0e2b\u0e21\u0e2d\u0e2b\u0e22\u0e2d\u0e07","indices":[107,115]}],"urls":[{"url":"https:\/\/t.co\/P3kyLgKlIB","expanded_url":"http:\/\/www.geohashtrend.com?cc=TH","display_url":"geohashtrend.com\/?cc=TH","indices":[119,140]}],"user_mentions":[{"screen_name":"GeoHashTrendTH","name":"Geo # Trend-Thailand","id":3292390374,"id_str":"3292390374","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080058658"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811300864,"id_str":"663727988811300864","text":"RT @blxcknicotine: This cat look at his owner sleeping instead of waking him up. So precious little furball. http:\/\/t.co\/ODdNP0prdR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33854349,"id_str":"33854349","name":"\u0641\u0631\u062d\u0627\u0646\u0629","screen_name":"fhnh_","location":null,"url":null,"description":"Happy.","protected":false,"verified":false,"followers_count":199,"friends_count":153,"listed_count":1,"favourites_count":1833,"statuses_count":38669,"created_at":"Tue Apr 21 08:49:57 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117978416\/8ae9882a1efb9540fbbfbd5975f8b3c3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117978416\/8ae9882a1efb9540fbbfbd5975f8b3c3.jpeg","profile_background_tile":true,"profile_link_color":"FA0A4E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582122960707686400\/5OEecHQc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582122960707686400\/5OEecHQc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33854349\/1429778078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Aug 31 10:29:50 +0000 2015","id":638297636685021184,"id_str":"638297636685021184","text":"This cat look at his owner sleeping instead of waking him up. So precious little furball. http:\/\/t.co\/ODdNP0prdR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284197383,"id_str":"284197383","name":"human error.","screen_name":"blxcknicotine","location":"Seoul, Korea ","url":null,"description":"Don\u2019t try to figure me out. It will only exhaust you. #illhueminati","protected":false,"verified":false,"followers_count":122416,"friends_count":25120,"listed_count":217,"favourites_count":13595,"statuses_count":102582,"created_at":"Mon Apr 18 20:37:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E09CCB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_tile":true,"profile_link_color":"D662B3","profile_sidebar_border_color":"F283E1","profile_sidebar_fill_color":"1A1D1F","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284197383\/1446304062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6850,"favorite_count":2651,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":638297497085964288,"id_str":"638297497085964288","indices":[90,112],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","url":"http:\/\/t.co\/ODdNP0prdR","display_url":"pic.twitter.com\/ODdNP0prdR","expanded_url":"http:\/\/twitter.com\/blxcknicotine\/status\/638297636685021184\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":638297497085964288,"id_str":"638297497085964288","indices":[90,112],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","url":"http:\/\/t.co\/ODdNP0prdR","display_url":"pic.twitter.com\/ODdNP0prdR","expanded_url":"http:\/\/twitter.com\/blxcknicotine\/status\/638297636685021184\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30030,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/640x360\/n4spwvht80rOfHAr.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/pl\/xpOGAXiFl6zPWONP.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/320x180\/QqFUr6hNlFnJoxKf.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/640x360\/n4spwvht80rOfHAr.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/pl\/xpOGAXiFl6zPWONP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/1280x720\/h8aHr45Y2w5N_P0O.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blxcknicotine","name":"human error.","id":284197383,"id_str":"284197383","indices":[3,17]}],"symbols":[],"media":[{"id":638297497085964288,"id_str":"638297497085964288","indices":[109,131],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","url":"http:\/\/t.co\/ODdNP0prdR","display_url":"pic.twitter.com\/ODdNP0prdR","expanded_url":"http:\/\/twitter.com\/blxcknicotine\/status\/638297636685021184\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":638297636685021184,"source_status_id_str":"638297636685021184","source_user_id":284197383,"source_user_id_str":"284197383"}]},"extended_entities":{"media":[{"id":638297497085964288,"id_str":"638297497085964288","indices":[109,131],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/638297497085964288\/pu\/img\/bVZE8QqpSUTiEFiu.jpg","url":"http:\/\/t.co\/ODdNP0prdR","display_url":"pic.twitter.com\/ODdNP0prdR","expanded_url":"http:\/\/twitter.com\/blxcknicotine\/status\/638297636685021184\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":638297636685021184,"source_status_id_str":"638297636685021184","source_user_id":284197383,"source_user_id_str":"284197383","video_info":{"aspect_ratio":[16,9],"duration_millis":30030,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/640x360\/n4spwvht80rOfHAr.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/pl\/xpOGAXiFl6zPWONP.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/320x180\/QqFUr6hNlFnJoxKf.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/640x360\/n4spwvht80rOfHAr.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/pl\/xpOGAXiFl6zPWONP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/638297497085964288\/pu\/vid\/1280x720\/h8aHr45Y2w5N_P0O.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988819628032,"id_str":"663727988819628032","text":"RT @Mojahedinar: #\u0627\u064a\u0631\u0627\u0646 #\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631 \u062d\u0645\u0644\u0629 \u0639\u0627\u0644\u0645\u064a\u0629 \u0644\u0645\u0646\u0627\u0635\u0631\u064a \u0627\u0634\u0631\u0641: \u062a\u0638\u0627\u0647\u0631\u0627\u062a \u0627\u0644\u0625\u064a\u0631\u0627\u0646\u064a\u064a\u0646 \u0627\u0644\u0625\u062d\u062a\u062c\u0627\u062c\u064a\u0629 \u0641\u064a \u0628\u0631\u0644\u064a\u0646 \u0628\u062d\u0636\u0648\u0631 \u0645\u0646\u2026 https:\/\/t.co\/214HisbxgR https:\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1725795398,"id_str":"1725795398","name":"ShahrokhOhadi","screen_name":"ShahrokhOhadi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":850,"friends_count":424,"listed_count":1,"favourites_count":5282,"statuses_count":47504,"created_at":"Tue Sep 03 15:09:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000411618106\/5adeeca67a408da75b63cfe0e98fa5f9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000411618106\/5adeeca67a408da75b63cfe0e98fa5f9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:14 +0000 2015","id":663726041647616000,"id_str":"663726041647616000","text":"#\u0627\u064a\u0631\u0627\u0646 #\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631 \u062d\u0645\u0644\u0629 \u0639\u0627\u0644\u0645\u064a\u0629 \u0644\u0645\u0646\u0627\u0635\u0631\u064a \u0627\u0634\u0631\u0641: \u062a\u0638\u0627\u0647\u0631\u0627\u062a \u0627\u0644\u0625\u064a\u0631\u0627\u0646\u064a\u064a\u0646 \u0627\u0644\u0625\u062d\u062a\u062c\u0627\u062c\u064a\u0629 \u0641\u064a \u0628\u0631\u0644\u064a\u0646 \u0628\u062d\u0636\u0648\u0631 \u0645\u0646\u2026 https:\/\/t.co\/214HisbxgR https:\/\/t.co\/hdanPcddwZ","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62085384,"id_str":"62085384","name":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642","screen_name":"Mojahedinar","location":"IRAN","url":"http:\/\/www.mojahedin.org\/pagesar\/index.aspx","description":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642 \u062a\u0639\u0645\u0644 \u0639\u0644\u0649 \u062a\u062d\u0648\u064a\u0644 \u0646\u0638\u0627\u0645 \u0627\u0644\u062f\u064a\u0643\u062a\u0627\u062a\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u064a\u0646\u064a\u0629 \u0641\u064a \u0627\u064a\u0631\u0627\u0646 \u0627\u0644\u0649 \u062d\u0643\u0648\u0645\u0629 \u0633\u0643\u0648\u0644\u0627\u0631\u064a\u0629 \u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u062a\u0639\u062f\u062f\u064a\u0629 \u062a\u062d\u062a\u0631\u0645 \u0627\u0644\u062d\u0631\u064a\u0627\u062a \u0627\u0644\u0641\u0631\u062f\u064a\u0629 \u0648\u0627\u0644\u0645\u0633\u0627\u0648\u0627\u0629 \u0628\u064a\u0646 \u0627\u0644\u0631\u062c\u0644 \u0648\u0627\u0644\u0645\u0631\u0623\u0629","protected":false,"verified":false,"followers_count":5961,"friends_count":2,"listed_count":42,"favourites_count":2,"statuses_count":86896,"created_at":"Sat Aug 01 18:10:24 +0000 2009","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3173290496\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3173290496\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62085384\/1383226123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u064a\u0631\u0627\u0646","indices":[0,6]},{"text":"\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631","indices":[7,16]}],"urls":[{"url":"https:\/\/t.co\/214HisbxgR","expanded_url":"http:\/\/dlvr.it\/ChfV7Q","display_url":"dlvr.it\/ChfV7Q","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663726041425248256,"id_str":"663726041425248256","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","url":"https:\/\/t.co\/hdanPcddwZ","display_url":"pic.twitter.com\/hdanPcddwZ","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726041647616000\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726041425248256,"id_str":"663726041425248256","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","url":"https:\/\/t.co\/hdanPcddwZ","display_url":"pic.twitter.com\/hdanPcddwZ","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726041647616000\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u064a\u0631\u0627\u0646","indices":[17,23]},{"text":"\u0627\u0644\u0623\u062e\u0628\u0640\u0627\u0631","indices":[24,33]}],"urls":[{"url":"https:\/\/t.co\/214HisbxgR","expanded_url":"http:\/\/dlvr.it\/ChfV7Q","display_url":"dlvr.it\/ChfV7Q","indices":[109,132]}],"user_mentions":[{"screen_name":"Mojahedinar","name":"\u0645\u0646\u0638\u0645\u0629 \u0645\u062c\u0627\u0647\u062f\u064a \u062e\u0644\u0642","id":62085384,"id_str":"62085384","indices":[3,15]}],"symbols":[],"media":[{"id":663726041425248256,"id_str":"663726041425248256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","url":"https:\/\/t.co\/hdanPcddwZ","display_url":"pic.twitter.com\/hdanPcddwZ","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726041647616000\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726041647616000,"source_status_id_str":"663726041647616000","source_user_id":62085384,"source_user_id_str":"62085384"}]},"extended_entities":{"media":[{"id":663726041425248256,"id_str":"663726041425248256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUW9UAAAvRwL.jpg","url":"https:\/\/t.co\/hdanPcddwZ","display_url":"pic.twitter.com\/hdanPcddwZ","expanded_url":"http:\/\/twitter.com\/Mojahedinar\/status\/663726041647616000\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663726041647616000,"source_status_id_str":"663726041647616000","source_user_id":62085384,"source_user_id_str":"62085384"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080058661"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815605760,"id_str":"663727988815605760","text":"RT @amiemarsh11: \ud83d\ude4c\ud83c\udffc https:\/\/t.co\/gjJFkTemF4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187221193,"id_str":"187221193","name":"Melissa","screen_name":"melzz_xo","location":null,"url":null,"description":"@SamGoodd is alright i guess","protected":false,"verified":false,"followers_count":580,"friends_count":469,"listed_count":2,"favourites_count":1728,"statuses_count":25760,"created_at":"Sun Sep 05 16:28:14 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1F1C1A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/501486179833757696\/5F-uWIuy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/501486179833757696\/5F-uWIuy.jpeg","profile_background_tile":true,"profile_link_color":"050505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663462761133944832\/uXK4DGjl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663462761133944832\/uXK4DGjl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187221193\/1423328830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:01:11 +0000 2015","id":663717975124504576,"id_str":"663717975124504576","text":"\ud83d\ude4c\ud83c\udffc https:\/\/t.co\/gjJFkTemF4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32251474,"id_str":"32251474","name":"Amie Marsh","screen_name":"amiemarsh11","location":"Wales","url":null,"description":null,"protected":false,"verified":false,"followers_count":366,"friends_count":542,"listed_count":1,"favourites_count":1311,"statuses_count":3443,"created_at":"Fri Apr 17 01:57:19 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640266116108021764\/2n3ugB33_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640266116108021764\/2n3ugB33_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32251474\/1441486182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0f4e16e27e637b40","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0f4e16e27e637b40.json","place_type":"city","name":"Church Village","full_name":"Church Village, Wales","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-3.335436,51.549563],[-3.335436,51.577064],[-3.288995,51.577064],[-3.288995,51.549563]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717968082280448,"id_str":"663717968082280448","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","url":"https:\/\/t.co\/gjJFkTemF4","display_url":"pic.twitter.com\/gjJFkTemF4","expanded_url":"http:\/\/twitter.com\/amiemarsh11\/status\/663717975124504576\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717968082280448,"id_str":"663717968082280448","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","url":"https:\/\/t.co\/gjJFkTemF4","display_url":"pic.twitter.com\/gjJFkTemF4","expanded_url":"http:\/\/twitter.com\/amiemarsh11\/status\/663717975124504576\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amiemarsh11","name":"Amie Marsh","id":32251474,"id_str":"32251474","indices":[3,15]}],"symbols":[],"media":[{"id":663717968082280448,"id_str":"663717968082280448","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","url":"https:\/\/t.co\/gjJFkTemF4","display_url":"pic.twitter.com\/gjJFkTemF4","expanded_url":"http:\/\/twitter.com\/amiemarsh11\/status\/663717975124504576\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663717975124504576,"source_status_id_str":"663717975124504576","source_user_id":32251474,"source_user_id_str":"32251474"}]},"extended_entities":{"media":[{"id":663717968082280448,"id_str":"663717968082280448","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-baWoAAB-GE.jpg","url":"https:\/\/t.co\/gjJFkTemF4","display_url":"pic.twitter.com\/gjJFkTemF4","expanded_url":"http:\/\/twitter.com\/amiemarsh11\/status\/663717975124504576\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":720,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663717975124504576,"source_status_id_str":"663717975124504576","source_user_id":32251474,"source_user_id_str":"32251474"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988823863296,"id_str":"663727988823863296","text":"RT @nekogazou: \u3069\u3046\u3057\u305f\u3093\u3060\uff57\uff57\uff57\uff57\uff57\uff57 https:\/\/t.co\/eoGLDeyHKN https:\/\/t.co\/3UKvulioin","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416904142,"id_str":"416904142","name":"\u30a8\u30af\u30b9\u30ab\u30ea\u30d0\u30fc","screen_name":"excalibur2140","location":"\u6771\u4eac\u90fd","url":"http:\/\/odin2099.exblog.jp\/","description":"\u3088\u308d\u305a\u30a8\u30f3\u30bf\u30fc\u30c6\u30a4\u30e1\u30f3\u30c8\u30b5\u30a4\u30c8\u300c\uff23\uff28\uff21\uff2f\uff33\u3000\u221e\u300d(http:\/\/chaos-i.com\/)\u3092\u5171\u540c\u3067\u904b\u55b6\u4e2d\u3002\u3000\u66f4\u306b\u300c\u5f92\u7136\u306a\u308b\u307e\u307e\u306b\u30fb\u30fb\u30fb\u300d\u3068\u3044\u3046\u30d6\u30ed\u30b0\u3082\u3084\u3063\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":221,"friends_count":538,"listed_count":9,"favourites_count":858,"statuses_count":49359,"created_at":"Sun Nov 20 08:40:23 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1648171659\/e003357020080427160023_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1648171659\/e003357020080427160023_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416904142\/1418125004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:52:57 +0000 2015","id":663715902387425280,"id_str":"663715902387425280","text":"\u3069\u3046\u3057\u305f\u3093\u3060\uff57\uff57\uff57\uff57\uff57\uff57 https:\/\/t.co\/eoGLDeyHKN https:\/\/t.co\/3UKvulioin","source":"\u003ca href=\"http:\/\/nendeb.jp\" rel=\"nofollow\"\u003enendeb Tweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1945532712,"id_str":"1945532712","name":"\u306d\u3053\u753b\u50cfBot","screen_name":"nekogazou","location":null,"url":"http:\/\/zuttocat.com","description":"\u304b\u308f\u3044\u3044\u732b\u3092\u3072\u305f\u3059\u3089\u7d39\u4ecb\u3059\u308b\u3088\uff01","protected":false,"verified":false,"followers_count":26061,"friends_count":21815,"listed_count":419,"favourites_count":0,"statuses_count":9259,"created_at":"Tue Oct 08 01:25:52 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000565010953\/debd2deec30aea5040de855be1668a0b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000565010953\/debd2deec30aea5040de855be1668a0b_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":80,"favorite_count":83,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eoGLDeyHKN","expanded_url":"http:\/\/zuttocat.com\/?p=3568","display_url":"zuttocat.com\/?p=3568","indices":[14,37]}],"user_mentions":[],"symbols":[],"media":[{"id":663715899208105989,"id_str":"663715899208105989","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","url":"https:\/\/t.co\/3UKvulioin","display_url":"pic.twitter.com\/3UKvulioin","expanded_url":"http:\/\/twitter.com\/nekogazou\/status\/663715902387425280\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":240,"resize":"fit"},"large":{"w":426,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715899208105989,"id_str":"663715899208105989","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","url":"https:\/\/t.co\/3UKvulioin","display_url":"pic.twitter.com\/3UKvulioin","expanded_url":"http:\/\/twitter.com\/nekogazou\/status\/663715902387425280\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":426,"h":240,"resize":"fit"},"large":{"w":426,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"video_info":{"aspect_ratio":[71,40],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX-GAQUAAU1159.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eoGLDeyHKN","expanded_url":"http:\/\/zuttocat.com\/?p=3568","display_url":"zuttocat.com\/?p=3568","indices":[29,52]}],"user_mentions":[{"screen_name":"nekogazou","name":"\u306d\u3053\u753b\u50cfBot","id":1945532712,"id_str":"1945532712","indices":[3,13]}],"symbols":[],"media":[{"id":663715899208105989,"id_str":"663715899208105989","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","url":"https:\/\/t.co\/3UKvulioin","display_url":"pic.twitter.com\/3UKvulioin","expanded_url":"http:\/\/twitter.com\/nekogazou\/status\/663715902387425280\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":240,"resize":"fit"},"large":{"w":426,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663715902387425280,"source_status_id_str":"663715902387425280","source_user_id":1945532712,"source_user_id_str":"1945532712"}]},"extended_entities":{"media":[{"id":663715899208105989,"id_str":"663715899208105989","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX-GAQUAAU1159.png","url":"https:\/\/t.co\/3UKvulioin","display_url":"pic.twitter.com\/3UKvulioin","expanded_url":"http:\/\/twitter.com\/nekogazou\/status\/663715902387425280\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":426,"h":240,"resize":"fit"},"large":{"w":426,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663715902387425280,"source_status_id_str":"663715902387425280","source_user_id":1945532712,"source_user_id_str":"1945532712","video_info":{"aspect_ratio":[71,40],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX-GAQUAAU1159.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058662"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811284480,"id_str":"663727988811284480","text":"RT @IngenieroDice: Colegas, les dejo la formula para el \u00e9xito... https:\/\/t.co\/82VvJm2fkY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196818943,"id_str":"196818943","name":"Karen Carranco","screen_name":"akarencarranco","location":"Monterrey, N. L. M\u00e9xico","url":"https:\/\/www.facebook.com\/karencarranco9","description":"20.Regia\u270cEstudiante de Ingeniero Industrial Adm. en UANL. Amo a mi familia. 14;Rub\u00e9n\u2764 Instagram: akaren_carranco","protected":false,"verified":false,"followers_count":421,"friends_count":214,"listed_count":2,"favourites_count":748,"statuses_count":7125,"created_at":"Thu Sep 30 00:06:22 +0000 2010","utc_offset":-21600,"time_zone":"Monterrey","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7EFF3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437326200474583040\/Vd9y0et5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437326200474583040\/Vd9y0et5.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"B210CF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653039563854647302\/OWNQfVIT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653039563854647302\/OWNQfVIT_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 03:01:25 +0000 2015","id":662464779097804800,"id_str":"662464779097804800","text":"Colegas, les dejo la formula para el \u00e9xito... https:\/\/t.co\/82VvJm2fkY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":629430743,"id_str":"629430743","name":"Newton \u222b(Ing)dx=x+C","screen_name":"IngenieroDice","location":"Biblioteca de la Universidad.","url":"http:\/\/favstar.fm\/users\/IngenieroDice","description":"El mejor Ingeniero de todos los tiempos es Dios, Si eres un verdadero estudiante de Ingenier\u00eda te identificaras: Restringido el paso a Licenciados.","protected":false,"verified":false,"followers_count":117675,"friends_count":3022,"listed_count":329,"favourites_count":21465,"statuses_count":9330,"created_at":"Sat Jul 07 15:52:59 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"23612F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/724119705\/c692ed61960d9551a99eafe752373c51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/724119705\/c692ed61960d9551a99eafe752373c51.jpeg","profile_background_tile":true,"profile_link_color":"15A32F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3678883435\/82cadc834e3780d227d217f4ca64e5df_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3678883435\/82cadc834e3780d227d217f4ca64e5df_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/629430743\/1445219212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":880,"favorite_count":838,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662464775993978880,"id_str":"662464775993978880","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","url":"https:\/\/t.co\/82VvJm2fkY","display_url":"pic.twitter.com\/82VvJm2fkY","expanded_url":"http:\/\/twitter.com\/IngenieroDice\/status\/662464779097804800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"},"large":{"w":960,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662464775993978880,"id_str":"662464775993978880","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","url":"https:\/\/t.co\/82VvJm2fkY","display_url":"pic.twitter.com\/82VvJm2fkY","expanded_url":"http:\/\/twitter.com\/IngenieroDice\/status\/662464779097804800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"},"large":{"w":960,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IngenieroDice","name":"Newton \u222b(Ing)dx=x+C","id":629430743,"id_str":"629430743","indices":[3,17]}],"symbols":[],"media":[{"id":662464775993978880,"id_str":"662464775993978880","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","url":"https:\/\/t.co\/82VvJm2fkY","display_url":"pic.twitter.com\/82VvJm2fkY","expanded_url":"http:\/\/twitter.com\/IngenieroDice\/status\/662464779097804800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"},"large":{"w":960,"h":682,"resize":"fit"}},"source_status_id":662464779097804800,"source_status_id_str":"662464779097804800","source_user_id":629430743,"source_user_id_str":"629430743"}]},"extended_entities":{"media":[{"id":662464775993978880,"id_str":"662464775993978880","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGMNDFUcAAUzjJ.jpg","url":"https:\/\/t.co\/82VvJm2fkY","display_url":"pic.twitter.com\/82VvJm2fkY","expanded_url":"http:\/\/twitter.com\/IngenieroDice\/status\/662464779097804800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"},"large":{"w":960,"h":682,"resize":"fit"}},"source_status_id":662464779097804800,"source_status_id_str":"662464779097804800","source_user_id":629430743,"source_user_id_str":"629430743"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988823818248,"id_str":"663727988823818248","text":"RT @chanstar_92: 151109 #CHANYEOL - \u0e40\u0e2a\u0e37\u0e49\u0e2d\u0e40\u0e0b\u0e47\u0e15\u0e19\u0e35\u0e49\u0e21\u0e35\u0e17\u0e38\u0e01\u0e2a\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e48\u0e32\u0e27\u0e19\u0e4a\u0e32??? \u0e27\u0e31\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e43\u0e2a\u0e48\u0e2a\u0e2d\u0e07\u0e2a\u0e35\u0e40\u0e25\u0e22 \ud83d\udc99\u2764\ufe0f\n\nCr.Precioso1127 , atmospherechan https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647577126,"id_str":"2647577126","name":"charain\u2661","screen_name":"Pachitk","location":"krystal","url":null,"description":"fearless","protected":false,"verified":false,"followers_count":97,"friends_count":485,"listed_count":4,"favourites_count":47683,"statuses_count":44441,"created_at":"Tue Jul 15 12:55:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661195741549887488\/d9DHSQFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661195741549887488\/d9DHSQFy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647577126\/1445616394","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:05:06 +0000 2015","id":663673664798257152,"id_str":"663673664798257152","text":"151109 #CHANYEOL - \u0e40\u0e2a\u0e37\u0e49\u0e2d\u0e40\u0e0b\u0e47\u0e15\u0e19\u0e35\u0e49\u0e21\u0e35\u0e17\u0e38\u0e01\u0e2a\u0e35\u0e2b\u0e23\u0e37\u0e2d\u0e1b\u0e48\u0e32\u0e27\u0e19\u0e4a\u0e32??? \u0e27\u0e31\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e43\u0e2a\u0e48\u0e2a\u0e2d\u0e07\u0e2a\u0e35\u0e40\u0e25\u0e22 \ud83d\udc99\u2764\ufe0f\n\nCr.Precioso1127 , atmospherechan https:\/\/t.co\/iocCyUAtph","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38606,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":509,"favorite_count":106,"entities":{"hashtags":[{"text":"CHANYEOL","indices":[7,16]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663673662222917633,"id_str":"663673662222917633","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":417,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":599,"h":417,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663673662222917633,"id_str":"663673662222917633","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":417,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":599,"h":417,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663673662893985792,"id_str":"663673662893985792","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrhuUEAACokO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrhuUEAACokO.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":852,"resize":"fit"},"small":{"w":340,"h":482,"resize":"fit"},"medium":{"w":600,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CHANYEOL","indices":[24,33]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663673662222917633,"id_str":"663673662222917633","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":417,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":599,"h":417,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663673664798257152,"source_status_id_str":"663673664798257152","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663673662222917633,"id_str":"663673662222917633","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrfOUYAEbP1c.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":417,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":599,"h":417,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663673664798257152,"source_status_id_str":"663673664798257152","source_user_id":2261424374,"source_user_id_str":"2261424374"},{"id":663673662893985792,"id_str":"663673662893985792","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXrhuUEAACokO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXrhuUEAACokO.jpg","url":"https:\/\/t.co\/iocCyUAtph","display_url":"pic.twitter.com\/iocCyUAtph","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663673664798257152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":852,"resize":"fit"},"small":{"w":340,"h":482,"resize":"fit"},"medium":{"w":600,"h":852,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663673664798257152,"source_status_id_str":"663673664798257152","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080058662"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840599552,"id_str":"663727988840599552","text":"The Malaysia's global trading hub. https:\/\/t.co\/I7Faw5UV6D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3648823178,"id_str":"3648823178","name":"Carol Chooi","screen_name":"ChooiCarol","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":4504,"created_at":"Tue Sep 22 12:58:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646308047267102720\/K_F4Ypyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646308047267102720\/K_F4Ypyz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I7Faw5UV6D","expanded_url":"http:\/\/mygravytrain.com\/63610\/390629","display_url":"mygravytrain.com\/63610\/390629","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988823842817,"id_str":"663727988823842817","text":"\u65ad\u308b\u3067\u3057\u3087\u3046\u306dw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3128503321,"id_str":"3128503321","name":"\u3086\u3044\u308a","screen_name":"375_ange","location":"Sapporo","url":null,"description":"\u9ad8\u6a4b\u307f\u306a\u307f\u3061\u3083\u3093('A`)\u300a@taka4848mina\u300b\/ 6\u5e74\u76ee\u2729\ufe0e \/ \u306b\u3083\u3093\u307f\u306a\ufe0e\ufe0e\u2764\ufe0e \/ no3b (\u0431\u0432\u0431)\u4eba('A`)\u4eba(\u0398\u03c9\u0398) \/ \u306b\u3083\u30fc\u3061\u3083\u3093 \u208d\u02c4\u00b7\u0348\u0f1d\u00b7\u0348\u02c4\u208e\u0e05\u02d2\u02d2 \/ 97line (18) \/ LJK\u2445\ufe0e\u25e1\u0308\ufe0e* \/ \u53d7\u9a13\u751f\u4f4e\u6d6e\u4e0a\u2639","protected":false,"verified":false,"followers_count":133,"friends_count":115,"listed_count":4,"favourites_count":3359,"statuses_count":3161,"created_at":"Thu Apr 02 01:09:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660645187484385280\/hoT8crce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660645187484385280\/hoT8crce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3128503321\/1446346377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058662"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840620032,"id_str":"663727988840620032","text":"Dihalte? https:\/\/t.co\/xwCzxtIVxi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1226665130,"id_str":"1226665130","name":"Name cannot be blank","screen_name":"ibendork","location":null,"url":null,"description":"About me,my made. i wont to book :). bukan akun promote. akun biasa aja sama kayak yang lain. eh yang lain kayak gimana ya?","protected":false,"verified":false,"followers_count":88,"friends_count":95,"listed_count":0,"favourites_count":5,"statuses_count":3231,"created_at":"Thu Feb 28 04:20:16 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662983787484045312\/LLvShwhA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662983787484045312\/LLvShwhA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1226665130\/1423671694","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663722453944762368,"quoted_status_id_str":"663722453944762368","quoted_status":{"created_at":"Mon Nov 09 14:18:59 +0000 2015","id":663722453944762368,"id_str":"663722453944762368","text":"Tapi, aku tetep nungguin kamu kok. Ehehe.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1074473168,"id_str":"1074473168","name":"Venus KinkyBar","screen_name":"Chaadicted","location":"Wild si(d)te of Venus","url":null,"description":"The Last Chapter : On my way, back to Venus.\n\r\n -Welcome to My Black Diary-","protected":false,"verified":false,"followers_count":110261,"friends_count":1030,"listed_count":174,"favourites_count":462,"statuses_count":102010,"created_at":"Wed Jan 09 18:04:48 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/777432040\/7070204e95977cc6fc542448a78a62d6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/777432040\/7070204e95977cc6fc542448a78a62d6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661899771590782976\/cHQCE7oc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661899771590782976\/cHQCE7oc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1074473168\/1387288944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xwCzxtIVxi","expanded_url":"https:\/\/twitter.com\/Chaadicted\/status\/663722453944762368","display_url":"twitter.com\/Chaadicted\/sta\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ro","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988836470784,"id_str":"663727988836470784","text":"RT @FeelingMsgs: I just want to feel something.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":501454477,"id_str":"501454477","name":"Asmidar\u2122","screen_name":"asmidarrr","location":null,"url":null,"description":"21 - SOKSEK-UNITEN -PENANG","protected":false,"verified":false,"followers_count":571,"friends_count":542,"listed_count":0,"favourites_count":270,"statuses_count":27743,"created_at":"Fri Feb 24 04:45:56 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481049237426163712\/IEttP3Ny.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481049237426163712\/IEttP3Ny.jpeg","profile_background_tile":true,"profile_link_color":"F70A31","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632893589593284608\/fTAAA8Th_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632893589593284608\/fTAAA8Th_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501454477\/1415150780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 00:34:26 +0000 2015","id":662790174707834881,"id_str":"662790174707834881","text":"I just want to feel something.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908344684,"id_str":"2908344684","name":"Feelings","screen_name":"FeelingMsgs","location":null,"url":null,"description":"Hi I'm a teenager, Follow me on my journey to inspire people with my quotes.","protected":false,"verified":false,"followers_count":118000,"friends_count":82176,"listed_count":81,"favourites_count":145,"statuses_count":3815,"created_at":"Sun Nov 23 18:01:28 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627733564285562880\/uZQBSoFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627733564285562880\/uZQBSoFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908344684\/1438874137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":195,"favorite_count":168,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FeelingMsgs","name":"Feelings","id":2908344684,"id_str":"2908344684","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058665"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840665088,"id_str":"663727988840665088","text":"RT @onedirection: #EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148130327,"id_str":"148130327","name":"Sulliee_","screen_name":"Sullie_Styles","location":"Fontana, CA","url":null,"description":"some dancing, prancing and a bit of romancing.","protected":false,"verified":false,"followers_count":277,"friends_count":133,"listed_count":2,"favourites_count":11389,"statuses_count":3188,"created_at":"Tue May 25 22:51:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657053815749799936\/rEg7O-bd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657053815749799936\/rEg7O-bd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148130327\/1446615465","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:22 +0000 2015","id":663716009912627200,"id_str":"663716009912627200","text":"#EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648637,"friends_count":3931,"listed_count":66282,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16372,"favorite_count":20990,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]},{"text":"MadeInTheAm","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[75,98]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]},{"text":"MadeInTheAm","indices":[69,81]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[93,116]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807102464,"id_str":"663727988807102464","text":"RT @Beautydiary1989: \u0e01\u0e34\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e35\u0e01\u0e25\u0e39\u0e15\u0e49\u0e32\u0e2a\u0e39\u0e07\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e09\u0e35\u0e14\n-\u0e41\u0e15\u0e07\u0e42\u0e21\n-\u0e2d\u0e07\u0e38\u0e48\u0e19\n-\u0e2a\u0e15\u0e2d\u0e40\u0e1a\u0e2d\u0e23\u0e35\u0e48\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e21\u0e39\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e27\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e1b\u0e25\u0e32\n-\u0e2d\u0e42\u0e27\u0e04\u0e32\u0e42\u0e14\n-\u0e2b\u0e19\u0e48\u0e2d\u0e44\u0e21\u0e49\u0e1d\u0e23\u0e31\u0e48\u0e07\n-\u0e44\u0e02\u0e48\n-\u0e19\u0e21\n-\u0e42\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2773602530,"id_str":"2773602530","name":"\u2022\u0e25\u0e39\u0e48\u0e27\u0e31\u0e19\u2022","screen_name":"LU_iness08","location":"\u0e17\u0e35\u0e48\u0e40\u0e14\u0e34\u0e21\u0e43\u0e19\u0e2b\u0e31\u0e27\u0e43\u0e08\u2661\u0e40\u0e1b\u0e47\u0e14","url":null,"description":"\u2662#\u0e01\u0e47\u0e0a\u0e48\u0e32\u0e07\u0e44\u0e25\u0e19\u0e4c \n\u2664#\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e1f\u0e49\u0e32\u0e22\u0e31\u0e07\u0e21\u0e35\u0e1f\u0e49\u0e32\u0e40\u0e2b\u0e19\u0e37\u0e2d#\u0e08\u0e15\u0e38\u0e23\u0e20\u0e32\u0e04\u0e35\u0e44\u0e25\u0e19\u0e4c \u0e23\u0e31\u0e01\u0e19\u0e30\u0e40\u0e1b\u0e47\u0e14\u0e42\u0e07\u0e48\u2661","protected":false,"verified":false,"followers_count":395,"friends_count":1023,"listed_count":0,"favourites_count":1391,"statuses_count":7899,"created_at":"Wed Aug 27 15:35:25 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660666413699362816\/rnxzWfgj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660666413699362816\/rnxzWfgj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2773602530\/1445190879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 14:17:58 +0000 2015","id":660823097222676480,"id_str":"660823097222676480","text":"\u0e01\u0e34\u0e19\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e35\u0e01\u0e25\u0e39\u0e15\u0e49\u0e32\u0e2a\u0e39\u0e07\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e09\u0e35\u0e14\n-\u0e41\u0e15\u0e07\u0e42\u0e21\n-\u0e2d\u0e07\u0e38\u0e48\u0e19\n-\u0e2a\u0e15\u0e2d\u0e40\u0e1a\u0e2d\u0e23\u0e35\u0e48\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e21\u0e39\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e27\n-\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e1b\u0e25\u0e32\n-\u0e2d\u0e42\u0e27\u0e04\u0e32\u0e42\u0e14\n-\u0e2b\u0e19\u0e48\u0e2d\u0e44\u0e21\u0e49\u0e1d\u0e23\u0e31\u0e48\u0e07\n-\u0e44\u0e02\u0e48\n-\u0e19\u0e21\n-\u0e42\u0e22\u0e40\u0e01\u0e34\u0e23\u0e4c\u0e15\n#HowtoPerfect","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2232426158,"id_str":"2232426158","name":"\u03b2\u03b5\u03b1\u03c5\u0422\u03c8Di\u03b1\u0413\u040f1989","screen_name":"Beautydiary1989","location":null,"url":null,"description":"IGbeautydiary1989,ask.fm(miniberry1989)FC Manutd. Tips\u0e04\u0e27\u0e32\u0e21\u0e07\u0e32\u0e21, HowtoPerfect, \u0e01\u0e32\u0e23\u0e17\u0e33\u0e07\u0e32\u0e19\u0e04\u0e37\u0e2d\u0e0a\u0e35\u0e27\u0e34\u0e15 \u0e42\u0e22\u0e04\u0e30\u0e04\u0e37\u0e2d\u0e07\u0e32\u0e19\u0e2d\u0e14\u0e34\u0e40\u0e23\u0e01 \u0e01\u0e32\u0e23\u0e01\u0e34\u0e19\u0e04\u0e37\u0e2d\u0e01\u0e32\u0e23\u0e1e\u0e31\u0e01\u0e1c\u0e48\u0e2d\u0e19","protected":false,"verified":false,"followers_count":32828,"friends_count":308,"listed_count":14,"favourites_count":9174,"statuses_count":40836,"created_at":"Fri Dec 06 04:17:09 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532340877268496386\/Nl_iFH3c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532340877268496386\/Nl_iFH3c.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648215573046804480\/np90rQEq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648215573046804480\/np90rQEq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2232426158\/1445183001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3841,"favorite_count":825,"entities":{"hashtags":[{"text":"HowtoPerfect","indices":[126,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HowtoPerfect","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"Beautydiary1989","name":"\u03b2\u03b5\u03b1\u03c5\u0422\u03c8Di\u03b1\u0413\u040f1989","id":2232426158,"id_str":"2232426158","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080058658"} +{"delete":{"status":{"id":649568781883191296,"id_str":"649568781883191296","user_id":108667914,"user_id_str":"108667914"},"timestamp_ms":"1447080058794"}} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988823846912,"id_str":"663727988823846912","text":"RT @PoemPorns: https:\/\/t.co\/H8gPexnznj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":454376892,"id_str":"454376892","name":"lauren michael","screen_name":"laurenmichael_7","location":"Livonia, MI | DePere WI","url":null,"description":"SNC hockey #17 | SNC softball #21 7\/1\/12 Brett Young \u2764\ufe0f H.A.P","protected":false,"verified":false,"followers_count":563,"friends_count":662,"listed_count":1,"favourites_count":10727,"statuses_count":10203,"created_at":"Tue Jan 03 22:51:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"51F013","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435001520\/x7ba8d196753c95283cc4e3d5a5294bc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435001520\/x7ba8d196753c95283cc4e3d5a5294bc.png","profile_background_tile":false,"profile_link_color":"251EEB","profile_sidebar_border_color":"F0A830","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607730715367645185\/JA1pCog9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607730715367645185\/JA1pCog9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454376892\/1445059043","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:30:14 +0000 2015","id":662864615337013248,"id_str":"662864615337013248","text":"https:\/\/t.co\/H8gPexnznj","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2333517996,"id_str":"2333517996","name":"Poems Porn","screen_name":"PoemPorns","location":null,"url":"http:\/\/www.poemporn.com\/","description":"Not real porn, just a collection of beautiful poetry from all around the world.","protected":false,"verified":false,"followers_count":767949,"friends_count":1,"listed_count":1596,"favourites_count":0,"statuses_count":35913,"created_at":"Sat Feb 08 13:57:06 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444385698695479296\/kzkICfZC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444385698695479296\/kzkICfZC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2333517996\/1394784854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1762,"favorite_count":2407,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662864615278268416,"id_str":"662864615278268416","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","url":"https:\/\/t.co\/H8gPexnznj","display_url":"pic.twitter.com\/H8gPexnznj","expanded_url":"http:\/\/twitter.com\/PoemPorns\/status\/662864615337013248\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662864615278268416,"id_str":"662864615278268416","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","url":"https:\/\/t.co\/H8gPexnznj","display_url":"pic.twitter.com\/H8gPexnznj","expanded_url":"http:\/\/twitter.com\/PoemPorns\/status\/662864615337013248\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PoemPorns","name":"Poems Porn","id":2333517996,"id_str":"2333517996","indices":[3,13]}],"symbols":[],"media":[{"id":662864615278268416,"id_str":"662864615278268416","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","url":"https:\/\/t.co\/H8gPexnznj","display_url":"pic.twitter.com\/H8gPexnznj","expanded_url":"http:\/\/twitter.com\/PoemPorns\/status\/662864615337013248\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}},"source_status_id":662864615337013248,"source_status_id_str":"662864615337013248","source_user_id":2333517996,"source_user_id_str":"2333517996"}]},"extended_entities":{"media":[{"id":662864615278268416,"id_str":"662864615278268416","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL32wfWUAAOGJ0.jpg","url":"https:\/\/t.co\/H8gPexnznj","display_url":"pic.twitter.com\/H8gPexnznj","expanded_url":"http:\/\/twitter.com\/PoemPorns\/status\/662864615337013248\/photo\/1","type":"photo","sizes":{"large":{"w":590,"h":590,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":590,"h":590,"resize":"fit"}},"source_status_id":662864615337013248,"source_status_id_str":"662864615337013248","source_user_id":2333517996,"source_user_id_str":"2333517996"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080058662"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840644608,"id_str":"663727988840644608","text":"@Nuts__momo |\u03c9\uff65)\u53d6\u308a\u6562\u3048\u305a\u30b3\u30e1\u30f3\u30c8\u306a\u3057\u3067\u898b\u5b88\u3063\u3068\u304d\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722899929350144,"in_reply_to_status_id_str":"663722899929350144","in_reply_to_user_id":3253958713,"in_reply_to_user_id_str":"3253958713","in_reply_to_screen_name":"Nuts__momo","user":{"id":1377596442,"id_str":"1377596442","name":"\u306f\u3063\u3064@\u8d85\u7d76\u3082\u3082\u63a8\u3057","screen_name":"hatabo21","location":null,"url":null,"description":"NO CRAZY, NO LIFE\n\n I'm crazy for you forever\u2764","protected":false,"verified":false,"followers_count":25,"friends_count":30,"listed_count":0,"favourites_count":402,"statuses_count":824,"created_at":"Wed Apr 24 17:45:18 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649630664615038977\/tS_gERjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649630664615038977\/tS_gERjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1377596442\/1445819243","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nuts__momo","name":"momo","id":3253958713,"id_str":"3253958713","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811370496,"id_str":"663727988811370496","text":"\u0627\u0641\u0644\u0627\u0645 \u0633\u0643\u0633 \u0645\u062d\u0627\u0631\u0645 \u0648\u0644\u062f \u064a\u0646\u064a\u0643 \n \nhttps:\/\/t.co\/FqCRLw9aj7\n https:\/\/t.co\/PnLv8Yuq4S","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220030331,"id_str":"3220030331","name":"Maluum Eye","screen_name":"gavykusuwyx","location":"Lyman, SC","url":null,"description":"\u265b'BOY BELIEBER'\u265b If you don't like Justin Bieber, there is no reason for you to be on my account.","protected":false,"verified":false,"followers_count":217,"friends_count":1906,"listed_count":0,"favourites_count":0,"statuses_count":77,"created_at":"Wed Apr 29 02:45:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618136749760344064\/MhW_am7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618136749760344064\/MhW_am7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220030331\/1436070810","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FqCRLw9aj7","expanded_url":"http:\/\/goo.gl\/2wH6N1","display_url":"goo.gl\/2wH6N1","indices":[28,51]},{"url":"https:\/\/t.co\/PnLv8Yuq4S","expanded_url":"http:\/\/sco.lt\/8zWHr7","display_url":"sco.lt\/8zWHr7","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840595456,"id_str":"663727988840595456","text":"\u064a\u0627\u0631\u0628 \u0641\u0631\u062c \u0647\u0645\u0649 \u0648\u0647\u0645 \u0627\u0644\u0645\u0624\u0645\u0646\u064a\u0646 \u062c\u0645\u064a\u0639\u0627\n\nhttps:\/\/t.co\/6vIlNjKzLy","source":"\u003ca href=\"http:\/\/7snah.info\" rel=\"nofollow\"\u003e\u062d\u0633\u0651\u064b\u0646\u0627\u062a\u0651\u064c\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2533338761,"id_str":"2533338761","name":"\u062d\u0645\u0648\u062f \u0627\u0644\u0639\u0648\u0627\u062f","screen_name":"hm1386od","location":null,"url":null,"description":"\u0647\u0630\u0627 \u062d\u0633\u0627\u0628\u064a \u0627\u0644\u062c\u062f\u064a\u062f","protected":false,"verified":false,"followers_count":255,"friends_count":976,"listed_count":1,"favourites_count":5,"statuses_count":2628,"created_at":"Tue May 06 18:24:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657248522664833025\/v4IgGa5P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657248522664833025\/v4IgGa5P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2533338761\/1445535266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6vIlNjKzLy","expanded_url":"http:\/\/7snah.info","display_url":"7snah.info","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988836401152,"id_str":"663727988836401152","text":"\u30b5\u30c3\u30af\u30b9\u5439\u304d\u3067\u3059","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220212000,"id_str":"3220212000","name":"\u7530\u4e2d \u5b9f\u3000\u5439\u594f\u697d","screen_name":"0000abcdefghijk","location":null,"url":null,"description":"\u30b5\u30c3\u30af\u30b9\u5439\u304d\u3067\u3059\u3002\u3088\u308d\u3057\u304f\u306d\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u30b4\u30e1\u30f3\u30ca\u30b5\u30a4(\u256f\u2022\u03c9\u2022\u2570) I'm sorry...","protected":false,"verified":false,"followers_count":192,"friends_count":291,"listed_count":2,"favourites_count":7,"statuses_count":11132,"created_at":"Tue May 19 11:14:59 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600623148594147328\/krupRpU-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600623148594147328\/krupRpU-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058665"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840660992,"id_str":"663727988840660992","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242195925,"id_str":"3242195925","name":"Shrinivasa Elcoate","screen_name":"megoditaxag","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":163,"friends_count":1194,"listed_count":10,"favourites_count":14442,"statuses_count":15472,"created_at":"Fri May 08 18:40:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642687805911515136\/0S3UDeed_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642687805911515136\/0S3UDeed_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":93,"favorite_count":59,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988832382977,"id_str":"663727988832382977","text":"RT @MEC_2000: Felicidades guap\u00edsima, disfruta mucho de este d\u00eda!!!, mil besos cari\u00f1oooo \ud83d\udc96\ud83d\udc9c\ud83d\ude18 @RocioPc18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":590218398,"id_str":"590218398","name":"Srta.P\u00e9rez","screen_name":"RocioPc18","location":"Ciudad Del BETIS","url":null,"description":"C\u00f3mo si hubieramos ganado por habernos conocido.\n\nVenecia.","protected":false,"verified":false,"followers_count":510,"friends_count":605,"listed_count":0,"favourites_count":1178,"statuses_count":6290,"created_at":"Fri May 25 16:45:23 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"17B6CF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"CF21CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645964043405107200\/bP3-rjhq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645964043405107200\/bP3-rjhq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590218398\/1445858734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:28 +0000 2015","id":663722578717069312,"id_str":"663722578717069312","text":"Felicidades guap\u00edsima, disfruta mucho de este d\u00eda!!!, mil besos cari\u00f1oooo \ud83d\udc96\ud83d\udc9c\ud83d\ude18 @RocioPc18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663621344769286144,"in_reply_to_status_id_str":"663621344769286144","in_reply_to_user_id":590218398,"in_reply_to_user_id_str":"590218398","in_reply_to_screen_name":"RocioPc18","user":{"id":371852679,"id_str":"371852679","name":"marina (\u2651)","screen_name":"MEC_2000","location":"damps!!","url":null,"description":"Lo que la vida junt\u00f3, que no lo separe la gente; jdom || [madt23] || mmf19 || (mi) caos\u2764 || MMBC (16) || hasta la muerte contigo sfc ||","protected":false,"verified":false,"followers_count":848,"friends_count":737,"listed_count":9,"favourites_count":7958,"statuses_count":17078,"created_at":"Sun Sep 11 16:56:17 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/564438031734554625\/GGC6_n26.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/564438031734554625\/GGC6_n26.jpeg","profile_background_tile":true,"profile_link_color":"66FFFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662757033054220288\/d1u7L5AM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662757033054220288\/d1u7L5AM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/371852679\/1442067944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RocioPc18","name":"Srta.P\u00e9rez","id":590218398,"id_str":"590218398","indices":[78,88]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MEC_2000","name":"marina (\u2651)","id":371852679,"id_str":"371852679","indices":[3,12]},{"screen_name":"RocioPc18","name":"Srta.P\u00e9rez","id":590218398,"id_str":"590218398","indices":[92,102]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080058664"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988836466688,"id_str":"663727988836466688","text":"RT @rain_forest94: 151107 MMA #\uc2b9\uc724 \uc874\uc608\uc874\uc798\ubcf4\uc2a4 \uc6b0\ub9ac \uc544\uc774 \ubcf4\uace0 \uc788\uc74c \ubc25 \uc548\uba39\uc5b4\ub3c4 \ubc30\uac00 \ubd88\ub7ec\uc5ec...(?)\ud83d\udc40\nhttps:\/\/t.co\/763SKxALMp\nhttps:\/\/t.co\/XUDES6Uw8q https:\/\/t.co\/22Hy\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2516788400,"id_str":"2516788400","name":"\u0e25\u0e38\u0e07\u0e0b\u0e07\u0e23\u0e49\u0e2d\u0e22\u0e40\u0e21\u0e35\u0e22 \u221e","screen_name":"sminodl","location":"Bangkok,Thailand","url":"http:\/\/twitter.com\/SDOLLERRH","description":"\u028d\u026a\u0274o\u043d\u03c5\u0262\u0454\u0432o\u028f |\u1d37\u1d35\u1d39\u1d36\u1d35\u1d42\u1d3c\u1d3a '\u1d2e\u1d3c\u1d2e\u1d2e\u1d5e'|\u1d37\u1d35\u1d39\u1d36\u1d35\u1d3a\u1d34\u1d42\u1d2c\u1d3a |\u1d36\u1d41\u1d3a\u1d33\u1d36\u1d2c\u1d31\u1d42\u1d3c\u1d3a '\u1d3c\u1d3a\u1d31'| \u1d36\u1d41\u1d3a\u1d33\u1d34\u1d5e\u1d41\u1d3a\u1d40\u1d2c\u1d31 '\u1d35\u1d3a\u1d9c\u1d3f\u1d31\u1d30\u1d35\u1d5b\u1d38\u1d31' | 2740\u2665\ufe0e |\u0280\u1d00\u1d18\u1d18\u1d07\u0280s| \u026a\u0274\u0274\u0454\u0280c\u026a\u0280\u0441\u029f\u03b5 | \u026a\u1d0b\u1d0f\u0274\u026a\u1d04 | \u1d00\u0280\u1d0d\u028f | \u028f\u0262 |#WINNER #iKON #BTS #YG","protected":false,"verified":false,"followers_count":46,"friends_count":679,"listed_count":2,"favourites_count":871,"statuses_count":7017,"created_at":"Fri May 23 01:31:03 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655816286404870144\/pYc_EL6R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655816286404870144\/pYc_EL6R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2516788400\/1440827078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:03:28 +0000 2015","id":663673253295054849,"id_str":"663673253295054849","text":"151107 MMA #\uc2b9\uc724 \uc874\uc608\uc874\uc798\ubcf4\uc2a4 \uc6b0\ub9ac \uc544\uc774 \ubcf4\uace0 \uc788\uc74c \ubc25 \uc548\uba39\uc5b4\ub3c4 \ubc30\uac00 \ubd88\ub7ec\uc5ec...(?)\ud83d\udc40\nhttps:\/\/t.co\/763SKxALMp\nhttps:\/\/t.co\/XUDES6Uw8q https:\/\/t.co\/22Hyahudho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2292674952,"id_str":"2292674952","name":"Rain Forest","screen_name":"rain_forest94","location":"rainforest9494@gmail.com","url":"http:\/\/rainforest94.net","description":"2016 RAIN FOREST CALENDAR '365DAYS A FLOWER WAY'\nhttp:\/\/rainforest94.net\/calendar","protected":false,"verified":false,"followers_count":20699,"friends_count":22,"listed_count":474,"favourites_count":0,"statuses_count":1003,"created_at":"Wed Jan 15 13:02:56 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644531857548152832\/Zp8baSWa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644531857548152832\/Zp8baSWa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2292674952\/1427902772","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":448,"favorite_count":228,"entities":{"hashtags":[{"text":"\uc2b9\uc724","indices":[11,14]}],"urls":[{"url":"https:\/\/t.co\/763SKxALMp","expanded_url":"http:\/\/i.imgur.com\/qJ5hV8u.jpg","display_url":"i.imgur.com\/qJ5hV8u.jpg","indices":[55,78]},{"url":"https:\/\/t.co\/XUDES6Uw8q","expanded_url":"http:\/\/i.imgur.com\/f3kx23N.jpg","display_url":"i.imgur.com\/f3kx23N.jpg","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663673207631642624,"id_str":"663673207631642624","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"medium":{"w":600,"h":857,"resize":"fit"},"large":{"w":1024,"h":1463,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663673207631642624,"id_str":"663673207631642624","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"medium":{"w":600,"h":857,"resize":"fit"},"large":{"w":1024,"h":1463,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663673233216933888,"id_str":"663673233216933888","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXShDUkAA7GF2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXShDUkAA7GF2.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":538,"resize":"fit"},"large":{"w":1024,"h":1623,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":951,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc2b9\uc724","indices":[30,33]}],"urls":[{"url":"https:\/\/t.co\/763SKxALMp","expanded_url":"http:\/\/i.imgur.com\/qJ5hV8u.jpg","display_url":"i.imgur.com\/qJ5hV8u.jpg","indices":[74,97]},{"url":"https:\/\/t.co\/XUDES6Uw8q","expanded_url":"http:\/\/i.imgur.com\/f3kx23N.jpg","display_url":"i.imgur.com\/f3kx23N.jpg","indices":[98,121]}],"user_mentions":[{"screen_name":"rain_forest94","name":"Rain Forest","id":2292674952,"id_str":"2292674952","indices":[3,17]}],"symbols":[],"media":[{"id":663673207631642624,"id_str":"663673207631642624","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"medium":{"w":600,"h":857,"resize":"fit"},"large":{"w":1024,"h":1463,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663673253295054849,"source_status_id_str":"663673253295054849","source_user_id":2292674952,"source_user_id_str":"2292674952"}]},"extended_entities":{"media":[{"id":663673207631642624,"id_str":"663673207631642624","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXRBvUAAA8U4P.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":485,"resize":"fit"},"medium":{"w":600,"h":857,"resize":"fit"},"large":{"w":1024,"h":1463,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663673253295054849,"source_status_id_str":"663673253295054849","source_user_id":2292674952,"source_user_id_str":"2292674952"},{"id":663673233216933888,"id_str":"663673233216933888","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXShDUkAA7GF2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXShDUkAA7GF2.jpg","url":"https:\/\/t.co\/22Hyahudho","display_url":"pic.twitter.com\/22Hyahudho","expanded_url":"http:\/\/twitter.com\/rain_forest94\/status\/663673253295054849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":538,"resize":"fit"},"large":{"w":1024,"h":1623,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":951,"resize":"fit"}},"source_status_id":663673253295054849,"source_status_id_str":"663673253295054849","source_user_id":2292674952,"source_user_id_str":"2292674952"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080058665"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811407361,"id_str":"663727988811407361","text":"RT @greatvibesss: \ud83d\ude4c\ud83c\udffc https:\/\/t.co\/DRZQ6ig1eL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":745602312,"id_str":"745602312","name":"\u2721","screen_name":"shawn2times","location":null,"url":null,"description":"slow feet, dont eat. \u24c2\ufe0f\u26fd\ufe0f","protected":false,"verified":false,"followers_count":1367,"friends_count":1294,"listed_count":1,"favourites_count":746,"statuses_count":37128,"created_at":"Wed Aug 08 17:26:10 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609949977306009600\/0OdndFXg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609949977306009600\/0OdndFXg.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707920555778048\/p4DPOqeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707920555778048\/p4DPOqeR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/745602312\/1447029639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 16:31:34 +0000 2015","id":657957614605750272,"id_str":"657957614605750272","text":"\ud83d\ude4c\ud83c\udffc https:\/\/t.co\/DRZQ6ig1eL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1873652694,"id_str":"1873652694","name":"snapchat:Greatvibess","screen_name":"greatvibesss","location":"USA","url":"http:\/\/www.instagram.com\/greatvibee","description":"p \u2022 o \u2022 s \u2022 i \u2022 t \u2022 i \u2022 v \u2022 i \u2022 t \u2022 y ||business inquires Kik: greatvibesss or DM|| snapchat: greatvibesss","protected":false,"verified":false,"followers_count":221520,"friends_count":40,"listed_count":288,"favourites_count":8,"statuses_count":2471,"created_at":"Tue Sep 17 01:34:53 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000100082640\/719e7cb2429bde8eda20c3fd0d586ddf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000100082640\/719e7cb2429bde8eda20c3fd0d586ddf.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/489253259077357568\/8WVcIvy-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/489253259077357568\/8WVcIvy-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1873652694\/1405483112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5780,"favorite_count":5586,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"greatvibesss","name":"snapchat:Greatvibess","id":1873652694,"id_str":"1873652694","indices":[3,16]}],"symbols":[],"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}},"source_status_id":657957614605750272,"source_status_id_str":"657957614605750272","source_user_id":1873652694,"source_user_id_str":"1873652694"}]},"extended_entities":{"media":[{"id":657957611073986560,"id_str":"657957611073986560","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGI9hVUYAAavXS.jpg","url":"https:\/\/t.co\/DRZQ6ig1eL","display_url":"pic.twitter.com\/DRZQ6ig1eL","expanded_url":"http:\/\/twitter.com\/greatvibesss\/status\/657957614605750272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":999,"h":561,"resize":"fit"}},"source_status_id":657957614605750272,"source_status_id_str":"657957614605750272","source_user_id":1873652694,"source_user_id_str":"1873652694"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815564800,"id_str":"663727988815564800","text":"@lukstenebroso kkkkkkkkkkkkkkkkkkkkmkkk engra\u00e7ado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727862776782848,"in_reply_to_status_id_str":"663727862776782848","in_reply_to_user_id":302994606,"in_reply_to_user_id_str":"302994606","in_reply_to_screen_name":"lukstenebroso","user":{"id":3392469742,"id_str":"3392469742","name":"Gui2\u00d3","screen_name":"gui__barros","location":"S\u00e3o Paulo, Brasil","url":"https:\/\/instagram.com\/gui_sbarros\/","description":"H2ois\u00d3","protected":false,"verified":false,"followers_count":73,"friends_count":85,"listed_count":0,"favourites_count":896,"statuses_count":1367,"created_at":"Tue Jul 28 17:57:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650840579169980416\/9S0cdvRV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650840579169980416\/9S0cdvRV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3392469742\/1438123925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lukstenebroso","name":"bay","id":302994606,"id_str":"302994606","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988807086080,"id_str":"663727988807086080","text":"\u30c8\u30c9\u677e\u3060\u3063\u305f\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229640802,"id_str":"3229640802","name":"\u3042\u3093\u3058\u30fc\u3086\uff2015\u65e5\u8607\u6211\u30c1\u30e7\u30ed\u677e\u3068\u6d77\u672a","screen_name":"Anotaju419","location":"\u30e9\u30d6\u30a2\u30ed\u30fc\u30b7\u30e5\u30fc\u30c8\u2661\u30aa\u30e9\u30aa\u30e9\u30a1\u30c3\uff01\uff01\uff01","url":"http:\/\/twpf.jp\/Anotaju419","description":"\u521d\u5fc3\u8005\u30ec\u30a4\u30e4\u30fc\u6210\u4eba\u6e08 \u4e3b\u306b\u30b8\u30e7\u30b8\u30e7 \u627f\u592a\u90ce\u30aa\u30e9\u89aa\u5b50\u9732\u4f34ATM \u91cd\u5ea6\u306eNL\u597d\u304d\u2661 \u305f\u307e\u306b\u304a\u7d75\u63cf\u304d\uff01\u6700\u8fd1\u306f\u30e9\u30d6\u30e9\u30a4\u30d6(\u6d77\u672a\u63a8\u3057)\u3068\u3046\u3089\u3076(\u4e00\u671f \u52a0\u5dde)\u304a\u305d\u677e\u3055\u3093(\u30c1\u30e7\u30ed\u677e)\u9006\u88c1\/FF\/DQ\/\u30e2\u30f3\u30cf\u30f3\/\u30dd\u30b1\u30e2\u30f3 \u3329\u8150\u5973\u5b50\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u4e00\u8a00\u9802\u3051\u308c\u3070\u5b09\u3057\u3044\u3067\u3059\uff01\u826f\u3051\u308c\u3070\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u304f\u3060\u3055\u3044\uff01\u30a2\u30fc\u30ab\u30a4\u30d6425453","protected":false,"verified":false,"followers_count":89,"friends_count":298,"listed_count":4,"favourites_count":4282,"statuses_count":3510,"created_at":"Fri May 29 11:45:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661573945326309376\/ZMp92feQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661573945326309376\/ZMp92feQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229640802\/1446644048","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058658"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815458304,"id_str":"663727988815458304","text":"@natsume_619 \n\u3068\u308a\u3042\u3048\u305a\u3001\u30dc\u30ed\u30af\u30bd\u306e\u6210\u7e3e\u3092\u30d0\u30cd\u306b\u9811\u5f35\u308b\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663690366193811456,"in_reply_to_status_id_str":"663690366193811456","in_reply_to_user_id":3744386071,"in_reply_to_user_id_str":"3744386071","in_reply_to_screen_name":"natsume_619","user":{"id":3888876499,"id_str":"3888876499","name":"\u307f\u3055\u304d","screen_name":"_1211basket","location":null,"url":null,"description":"\u30b9\u30dd\u30fc\u30c4\u57a2\/\u9ad83\/next4\/\u77f3\u5ddd\u7950\u5e0c\/\u4f4e\u6d6e\u4e0a","protected":false,"verified":false,"followers_count":75,"friends_count":38,"listed_count":0,"favourites_count":190,"statuses_count":289,"created_at":"Wed Oct 14 06:26:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654188331945693184\/RKlDv5lk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654188331945693184\/RKlDv5lk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3888876499\/1444804544","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"natsume_619","name":"\u306a\u3064\u3081","id":3744386071,"id_str":"3744386071","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815466496,"id_str":"663727988815466496","text":"@Dayaahjumat shaiful...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722948046356481,"in_reply_to_status_id_str":"663722948046356481","in_reply_to_user_id":383799526,"in_reply_to_user_id_str":"383799526","in_reply_to_screen_name":"Dayaahjumat","user":{"id":2500485252,"id_str":"2500485252","name":"N.A.B.K","screen_name":"ayukeciq","location":null,"url":null,"description":"A wife. A mother.","protected":false,"verified":false,"followers_count":53,"friends_count":44,"listed_count":0,"favourites_count":594,"statuses_count":829,"created_at":"Sat May 17 03:27:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619657285439111168\/VrE4gXhc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619657285439111168\/VrE4gXhc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2500485252\/1429192522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dayaahjumat","name":"sitinurhidayah.","id":383799526,"id_str":"383799526","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840624128,"id_str":"663727988840624128","text":"RT @adored5SOS: Michael Clifford from @5sos https:\/\/t.co\/Z6HmdAIAjl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312722522,"id_str":"3312722522","name":"t h e f l a s h","screen_name":"olzanskicp","location":"S.T.A.R. Labs","url":"http:\/\/vine.co\/v\/eLuYig7AFWm","description":"barry allen tho","protected":false,"verified":false,"followers_count":306,"friends_count":546,"listed_count":0,"favourites_count":10083,"statuses_count":4297,"created_at":"Tue Aug 11 20:01:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663558005896556544\/PdLONKJ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663558005896556544\/PdLONKJ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312722522\/1447039578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:19:23 +0000 2015","id":663586661448736768,"id_str":"663586661448736768","text":"Michael Clifford from @5sos https:\/\/t.co\/Z6HmdAIAjl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":789696188,"id_str":"789696188","name":"agatka","screen_name":"adored5SOS","location":"Poland","url":null,"description":"jack hemmings wouldn't treat me like this","protected":false,"verified":false,"followers_count":4778,"friends_count":1895,"listed_count":25,"favourites_count":681,"statuses_count":178975,"created_at":"Wed Aug 29 16:36:36 +0000 2012","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475376010456600579\/mbQYUhf2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475376010456600579\/mbQYUhf2.png","profile_background_tile":false,"profile_link_color":"AD0909","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658753168797474816\/jBIwcpOo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658753168797474816\/jBIwcpOo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/789696188\/1445926146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[22,27]}],"symbols":[],"media":[{"id":663586578300870657,"id_str":"663586578300870657","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","url":"https:\/\/t.co\/Z6HmdAIAjl","display_url":"pic.twitter.com\/Z6HmdAIAjl","expanded_url":"http:\/\/twitter.com\/adored5SOS\/status\/663586661448736768\/video\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663586578300870657,"id_str":"663586578300870657","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","url":"https:\/\/t.co\/Z6HmdAIAjl","display_url":"pic.twitter.com\/Z6HmdAIAjl","expanded_url":"http:\/\/twitter.com\/adored5SOS\/status\/663586661448736768\/video\/1","type":"video","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":16055,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/480x480\/r6eapmt_2V-8_4Sf.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/240x240\/INDzjMM8i4-hcPCj.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/480x480\/r6eapmt_2V-8_4Sf.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/pl\/UJtMdUXLRrI6tL_7.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/pl\/UJtMdUXLRrI6tL_7.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"adored5SOS","name":"agatka","id":789696188,"id_str":"789696188","indices":[3,14]},{"screen_name":"5SOS","name":"5 Seconds of Summer","id":264107729,"id_str":"264107729","indices":[38,43]}],"symbols":[],"media":[{"id":663586578300870657,"id_str":"663586578300870657","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","url":"https:\/\/t.co\/Z6HmdAIAjl","display_url":"pic.twitter.com\/Z6HmdAIAjl","expanded_url":"http:\/\/twitter.com\/adored5SOS\/status\/663586661448736768\/video\/1","type":"photo","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663586661448736768,"source_status_id_str":"663586661448736768","source_user_id":789696188,"source_user_id_str":"789696188"}]},"extended_entities":{"media":[{"id":663586578300870657,"id_str":"663586578300870657","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663586578300870657\/pu\/img\/KcbANVE_igxADc3B.jpg","url":"https:\/\/t.co\/Z6HmdAIAjl","display_url":"pic.twitter.com\/Z6HmdAIAjl","expanded_url":"http:\/\/twitter.com\/adored5SOS\/status\/663586661448736768\/video\/1","type":"video","sizes":{"large":{"w":512,"h":512,"resize":"fit"},"medium":{"w":512,"h":512,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663586661448736768,"source_status_id_str":"663586661448736768","source_user_id":789696188,"source_user_id_str":"789696188","video_info":{"aspect_ratio":[1,1],"duration_millis":16055,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/480x480\/r6eapmt_2V-8_4Sf.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/240x240\/INDzjMM8i4-hcPCj.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/vid\/480x480\/r6eapmt_2V-8_4Sf.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/pl\/UJtMdUXLRrI6tL_7.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663586578300870657\/pu\/pl\/UJtMdUXLRrI6tL_7.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811415552,"id_str":"663727988811415552","text":"@PamelaTyahla https:\/\/t.co\/67MxNfaVuA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4025314103,"in_reply_to_user_id_str":"4025314103","in_reply_to_screen_name":"PamelaTyahla","user":{"id":3290945359,"id_str":"3290945359","name":"Kalan J. Weingartz","screen_name":"KalanOTMA","location":"Michigan, USA","url":null,"description":"Sedevacantist","protected":false,"verified":false,"followers_count":58,"friends_count":51,"listed_count":3,"favourites_count":708,"statuses_count":2203,"created_at":"Fri Jul 24 19:17:52 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662623349068029952\/Bzf4PNPV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662623349068029952\/Bzf4PNPV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290945359\/1442853115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727807894261760,"quoted_status_id_str":"663727807894261760","quoted_status":{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727807894261760,"id_str":"663727807894261760","text":"Jordanian police officer opens fire on foreign trainers at a police compound near Amman, killing two Americans: https:\/\/t.co\/x4T5WyoOVw","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15754281,"id_str":"15754281","name":"USA TODAY","screen_name":"USATODAY","location":"USA TODAY HQ, McLean, Va.","url":"http:\/\/www.usatoday.com","description":"The latest news and most interesting stories from USA TODAY. News that's meant to be shared.","protected":false,"verified":true,"followers_count":1834486,"friends_count":868,"listed_count":26640,"favourites_count":1320,"statuses_count":133508,"created_at":"Wed Aug 06 19:55:31 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0092D0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000089862470\/7aa9f896147a89917aa047e30ab6ebc2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000089862470\/7aa9f896147a89917aa047e30ab6ebc2.jpeg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657279996650725378\/1xCIaEt0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657279996650725378\/1xCIaEt0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15754281\/1414526404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x4T5WyoOVw","expanded_url":"http:\/\/usat.ly\/1NZkvFe","display_url":"usat.ly\/1NZkvFe","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/67MxNfaVuA","expanded_url":"https:\/\/twitter.com\/USATODAY\/status\/663727807894261760","display_url":"twitter.com\/USATODAY\/statu\u2026","indices":[15,38]}],"user_mentions":[{"screen_name":"PamelaTyahla","name":"Pamela Tyahla","id":4025314103,"id_str":"4025314103","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447080058659"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840792064,"id_str":"663727988840792064","text":"https:\/\/t.co\/agiK86ZpIW #\u041c\u0435\u0434\u0432\u0435\u0434\u0435\u0432 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0438\u043b \u0440\u043e\u0441\u0441\u0438\u044f\u043d\u0430\u043c \u0437\u0430\u0431\u044b\u0442\u044c \u043e \u0415\u0433\u0438\u043f\u0442\u0435 #\u043f\u043e\u043f\u043b\u0438\u043d\u043a\u0441 https:\/\/t.co\/disBE7sA0F","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1266421652,"id_str":"1266421652","name":"Poplinks.ru","screen_name":"PoplinksRu","location":null,"url":"http:\/\/poplinks.ru","description":"\u0410\u0433\u0440\u0435\u0433\u0430\u0442\u043e\u0440 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e\u0441\u0442\u0435\u0439","protected":false,"verified":false,"followers_count":93,"friends_count":5,"listed_count":12,"favourites_count":1,"statuses_count":36408,"created_at":"Thu Mar 14 07:12:06 +0000 2013","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514830821719408640\/QF-of9mh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514830821719408640\/QF-of9mh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266421652\/1411583662","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u041c\u0435\u0434\u0432\u0435\u0434\u0435\u0432","indices":[24,33]},{"text":"\u043f\u043e\u043f\u043b\u0438\u043d\u043a\u0441","indices":[70,79]}],"urls":[{"url":"https:\/\/t.co\/agiK86ZpIW","expanded_url":"http:\/\/poplinks.ru","display_url":"poplinks.ru","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663727988287107076,"id_str":"663727988287107076","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFrlWcAQ4K__.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFrlWcAQ4K__.jpg","url":"https:\/\/t.co\/disBE7sA0F","display_url":"pic.twitter.com\/disBE7sA0F","expanded_url":"http:\/\/twitter.com\/PoplinksRu\/status\/663727988840792064\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727988287107076,"id_str":"663727988287107076","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFrlWcAQ4K__.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFrlWcAQ4K__.jpg","url":"https:\/\/t.co\/disBE7sA0F","display_url":"pic.twitter.com\/disBE7sA0F","expanded_url":"http:\/\/twitter.com\/PoplinksRu\/status\/663727988840792064\/photo\/1","type":"photo","sizes":{"large":{"w":675,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988828057600,"id_str":"663727988828057600","text":"RT @ai_music_14: \u5341\u56db\u677e\u306e\u96fb\u8a71\u306e\u51fa\u65b9\u304c\u53ef\u611b\u3059\u304e\u308b\u4ef6\u306b\u3064\u3044\u3066\n\n#\u304a\u305d\u677e\u3055\u3093 https:\/\/t.co\/or4pp7P5ts","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2780189725,"id_str":"2780189725","name":"\u3086\u307f\u677e@\u30da\u30c0\u30b9\u30c6\u5c0a\u3044","screen_name":"ymk_0204","location":"\u3064\u3044\u30d7\u30ed\u4f5c\u308a\u305f\u304b\u3063\u305f\uff08\u4f5c\u308b\u3088\uff09","url":null,"description":"18\u2193 \u7fa9\u52d9\u6559\u80b2\u7d42\u4e86\u6e08\u307f \u304a\u305d\u677e\u3055\u3093\/\u5f31\u30da\u30c0\/\u30da\u30c0\u30b9\u30c6\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u30d7\u30ea\u30d1\u30e9\/\u3042\u3093\u30b9\u30bf\u7b49\u3005 \u30a2\u30a4\u30b3\u30f3\u7dba\u702c \u5ac1 \u30e1\u30ed\u30f3\u3118\u3093\u2661\u3010@kaorimeron\u3011\u6bcd \u306b\u3057\u3080\u30fc\u3010@Todo_j88\u3011\u53cc\u5b50 \u3053\u3068\u306f\u3061\u3083\u3093 \u3010@kotochann_com\u3011","protected":false,"verified":false,"followers_count":565,"friends_count":566,"listed_count":72,"favourites_count":31211,"statuses_count":35072,"created_at":"Sat Aug 30 07:36:11 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651739174320537600\/AHeBKPe9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651739174320537600\/AHeBKPe9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2780189725\/1445790191","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 05:07:36 +0000 2015","id":661771755178954752,"id_str":"661771755178954752","text":"\u5341\u56db\u677e\u306e\u96fb\u8a71\u306e\u51fa\u65b9\u304c\u53ef\u611b\u3059\u304e\u308b\u4ef6\u306b\u3064\u3044\u3066\n\n#\u304a\u305d\u677e\u3055\u3093 https:\/\/t.co\/or4pp7P5ts","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2522983646,"id_str":"2522983646","name":"\u85cd","screen_name":"ai_music_14","location":"\u72d0\u306e\u5098","url":"http:\/\/twpf.jp\/ai_music_14","description":"\u273e\u6c17\u307e\u307e\u306b\u6b4c\u3063\u3066\u98df\u3079\u308b\u4eba\u273e\u84b2\u713c\u3055\u3093\u592a\u90ce\u3092\u80b2\u3066\u305f\u3044\u273e\u6b4c\u3063\u3066\u307f\u305f\uff08nana\uff09\u27abhttp:\/\/hibari.nana-music.com\/w\/profile\/321386\/\u300b\u273e\uff71\uff72\uff7a\uff9d\u3068\uff8d\uff9e\uff6f\uff80\uff70\u306f\u81ea\u5206\u3067\u63cf\u304d\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":278,"friends_count":173,"listed_count":8,"favourites_count":2899,"statuses_count":8438,"created_at":"Sun May 25 15:58:28 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590803405414662144\/vQeK7snk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590803405414662144\/vQeK7snk.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654200030488694784\/d9JvDnek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654200030488694784\/d9JvDnek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2522983646\/1441966662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4908,"favorite_count":8081,"entities":{"hashtags":[{"text":"\u304a\u305d\u677e\u3055\u3093","indices":[22,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661771608680300544,"id_str":"661771608680300544","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","url":"https:\/\/t.co\/or4pp7P5ts","display_url":"pic.twitter.com\/or4pp7P5ts","expanded_url":"http:\/\/twitter.com\/ai_music_14\/status\/661771755178954752\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661771608680300544,"id_str":"661771608680300544","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","url":"https:\/\/t.co\/or4pp7P5ts","display_url":"pic.twitter.com\/or4pp7P5ts","expanded_url":"http:\/\/twitter.com\/ai_music_14\/status\/661771755178954752\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":28663,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/pl\/H5w4MWwdv6JANHWM.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/1280x720\/uZRqZGaaBQ-9HwVS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/640x360\/_6kK11X10UDrvZFZ.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/pl\/H5w4MWwdv6JANHWM.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/640x360\/_6kK11X10UDrvZFZ.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/320x180\/9v6vttSzH0liD8ZY.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u305d\u677e\u3055\u3093","indices":[39,45]}],"urls":[],"user_mentions":[{"screen_name":"ai_music_14","name":"\u85cd","id":2522983646,"id_str":"2522983646","indices":[3,15]}],"symbols":[],"media":[{"id":661771608680300544,"id_str":"661771608680300544","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","url":"https:\/\/t.co\/or4pp7P5ts","display_url":"pic.twitter.com\/or4pp7P5ts","expanded_url":"http:\/\/twitter.com\/ai_music_14\/status\/661771755178954752\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661771755178954752,"source_status_id_str":"661771755178954752","source_user_id":2522983646,"source_user_id_str":"2522983646"}]},"extended_entities":{"media":[{"id":661771608680300544,"id_str":"661771608680300544","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661771608680300544\/pu\/img\/NS8rsw1m0ohM-Xud.jpg","url":"https:\/\/t.co\/or4pp7P5ts","display_url":"pic.twitter.com\/or4pp7P5ts","expanded_url":"http:\/\/twitter.com\/ai_music_14\/status\/661771755178954752\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661771755178954752,"source_status_id_str":"661771755178954752","source_user_id":2522983646,"source_user_id_str":"2522983646","video_info":{"aspect_ratio":[16,9],"duration_millis":28663,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/pl\/H5w4MWwdv6JANHWM.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/1280x720\/uZRqZGaaBQ-9HwVS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/640x360\/_6kK11X10UDrvZFZ.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/pl\/H5w4MWwdv6JANHWM.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/640x360\/_6kK11X10UDrvZFZ.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661771608680300544\/pu\/vid\/320x180\/9v6vttSzH0liD8ZY.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058663"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988840656896,"id_str":"663727988840656896","text":"@nagi0215milan \u30aa\u30e9\u30f3\u30c0\u306e\u30e4\u30f3\u30de\u30fc\u30c8\u3068\u304b\u3069\u3046\u3084\u308d SB\u3067185\u3042\u3063\u305f\u3088\u3046\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726439221497857,"in_reply_to_status_id_str":"663726439221497857","in_reply_to_user_id":527024022,"in_reply_to_user_id_str":"527024022","in_reply_to_screen_name":"nagi0215milan","user":{"id":243869761,"id_str":"243869761","name":"\u307f\u3055\u304d","screen_name":"sonic9072","location":"\u798f\u5ca1","url":null,"description":"\u8266\u3053\u308c\/\u6d77\u5916\u30b5\u30c3\u30ab\u30fc\/\u5929\u4f53\u89b3\u6e2c\/ \u307e\u3063\u305f\u308a\u3068\u8266\u3053\u308c\u3084\u3063\u3066\u308b\u3067\u3061","protected":false,"verified":false,"followers_count":57,"friends_count":40,"listed_count":5,"favourites_count":7,"statuses_count":12653,"created_at":"Fri Jan 28 00:20:02 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579698681466609664\/ajP9gfb9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579698681466609664\/ajP9gfb9.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629898545433198592\/CR2PyyVK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629898545433198592\/CR2PyyVK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243869761\/1435438279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nagi0215milan","name":"\u306a\u304e","id":527024022,"id_str":"527024022","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058666"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988811264000,"id_str":"663727988811264000","text":"\u9b3c\u5b09\u3057\u3044 https:\/\/t.co\/Z5K4Dg1w1z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3492687434,"id_str":"3492687434","name":"\u3068\u308f","screen_name":"m39jywwdskAeAbI","location":"OSAKA ","url":null,"description":"\u6cb3\u4e2d\u4e8c\u5e74 \u30dc\u30e9\u30f3\u30c1\u5927\u962a\u3067\u30b5\u30c3\u30ab\u30fc\u3057\u3066\u307e\u3059\uff2e\uff4f\uff0e36","protected":false,"verified":false,"followers_count":137,"friends_count":155,"listed_count":0,"favourites_count":138,"statuses_count":250,"created_at":"Tue Sep 08 11:57:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663344073923686401\/0FJC82EY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663344073923686401\/0FJC82EY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3492687434\/1446976388","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727975309795328,"id_str":"663727975309795328","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJE7PUYAAuoA5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJE7PUYAAuoA5.jpg","url":"https:\/\/t.co\/Z5K4Dg1w1z","display_url":"pic.twitter.com\/Z5K4Dg1w1z","expanded_url":"http:\/\/twitter.com\/m39jywwdskAeAbI\/status\/663727988811264000\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727975309795328,"id_str":"663727975309795328","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJE7PUYAAuoA5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJE7PUYAAuoA5.jpg","url":"https:\/\/t.co\/Z5K4Dg1w1z","display_url":"pic.twitter.com\/Z5K4Dg1w1z","expanded_url":"http:\/\/twitter.com\/m39jywwdskAeAbI\/status\/663727988811264000\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058659"} +{"delete":{"status":{"id":663723790308913152,"id_str":"663723790308913152","user_id":65935886,"user_id_str":"65935886"},"timestamp_ms":"1447080058965"}} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988815568896,"id_str":"663727988815568896","text":"The Big Eight's Latest Photo!\nShooting awhile ago for ABS CBN Christmas ID!\n\n#PBB #Bailona#Tomiho #DawnChang #Ylona\u2026 https:\/\/t.co\/SIpJDh8vNA","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1609797768,"id_str":"1609797768","name":"PBB Bailey May","screen_name":"BAlLEYmay","location":null,"url":null,"description":"Your official spot for the ultimate #BaileyMayFans! Here to support Providing The LATEST POSTS OF Bailey's FANS WORLDWIDE.\n@officialbaileymay PBB","protected":false,"verified":false,"followers_count":3237,"friends_count":13,"listed_count":24,"favourites_count":0,"statuses_count":45023,"created_at":"Sun Jul 21 05:47:45 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609331011860590592\/-iWRqfSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609331011860590592\/-iWRqfSL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1609797768\/1434110836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PBB","indices":[77,81]},{"text":"DawnChang","indices":[98,108]},{"text":"Ylona","indices":[109,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727988660400129,"id_str":"663727988660400129","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFs-WcAEN_No.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFs-WcAEN_No.jpg","url":"https:\/\/t.co\/SIpJDh8vNA","display_url":"pic.twitter.com\/SIpJDh8vNA","expanded_url":"http:\/\/twitter.com\/BAlLEYmay\/status\/663727988815568896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727988660400129,"id_str":"663727988660400129","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFs-WcAEN_No.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFs-WcAEN_No.jpg","url":"https:\/\/t.co\/SIpJDh8vNA","display_url":"pic.twitter.com\/SIpJDh8vNA","expanded_url":"http:\/\/twitter.com\/BAlLEYmay\/status\/663727988815568896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058660"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988836438016,"id_str":"663727988836438016","text":"\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u3067\u304d\u308b\u30e2\u30b6\u30a4\u30af\u6a21\u69d8\u306e\u30c1\u30a7\u30b9\u30c8\u30e9\u30c3\u30af(N\u30e9\u30f3\u30c0\u30e080) \u30cb\u30c8\u30ea \u3010\u9001\u6599\u7121\u6599\u30fb\u914d\u9001\u54e1\u8a2d\u7f6e\u3011 \u30105\u5e74\u4fdd\u8a3c\u3011\nhttps:\/\/t.co\/vkD4GaYHds https:\/\/t.co\/Q5hAIU2qbr","source":"\u003ca href=\"http:\/\/rakuten.co.jp\" rel=\"nofollow\"\u003e\u697d\u5929\u4eba\u6c17\u5546\u54c1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2434071709,"id_str":"2434071709","name":"\u68da\u30fb\u30b7\u30a7\u30eb\u30d5","screen_name":"pyjapynevut","location":null,"url":null,"description":"\u697d\u5929\u306e\u68da\u30fb\u30b7\u30a7\u30eb\u30d5\u306e\u4eba\u6c17\u5546\u54c1\u306e\u7d39\u4ecb\u266a","protected":false,"verified":false,"followers_count":2,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":492,"created_at":"Tue Apr 08 18:41:26 +0000 2014","utc_offset":32400,"time_zone":"Asia\/Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655281871316643840\/aPcqVWXl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655281871316643840\/aPcqVWXl_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vkD4GaYHds","expanded_url":"http:\/\/white2.black\/d73ea4d","display_url":"white2.black\/d73ea4d","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663727975003586560,"id_str":"663727975003586560","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJE6GUAAAK7Lk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJE6GUAAAK7Lk.jpg","url":"https:\/\/t.co\/Q5hAIU2qbr","display_url":"pic.twitter.com\/Q5hAIU2qbr","expanded_url":"http:\/\/twitter.com\/pyjapynevut\/status\/663727988836438016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727975003586560,"id_str":"663727975003586560","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJE6GUAAAK7Lk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJE6GUAAAK7Lk.jpg","url":"https:\/\/t.co\/Q5hAIU2qbr","display_url":"pic.twitter.com\/Q5hAIU2qbr","expanded_url":"http:\/\/twitter.com\/pyjapynevut\/status\/663727988836438016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663727979667681284,"id_str":"663727979667681284","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFLeUcAQSf18.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFLeUcAQSf18.jpg","url":"https:\/\/t.co\/Q5hAIU2qbr","display_url":"pic.twitter.com\/Q5hAIU2qbr","expanded_url":"http:\/\/twitter.com\/pyjapynevut\/status\/663727988836438016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663727986378608644,"id_str":"663727986378608644","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFkeVEAQQLJa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFkeVEAQQLJa.jpg","url":"https:\/\/t.co\/Q5hAIU2qbr","display_url":"pic.twitter.com\/Q5hAIU2qbr","expanded_url":"http:\/\/twitter.com\/pyjapynevut\/status\/663727988836438016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080058665"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988802846720,"id_str":"663727988802846720","text":"https:\/\/t.co\/BupX9kV9sD","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33953512,"id_str":"33953512","name":"Steven Roberts","screen_name":"unedited_meat","location":"Toronto","url":"http:\/\/www.facebook.com\/uneditedmeat","description":"*Rubble - (*a miscellaneous confused mass or group of usually broken or worthless things.)\r\n\r\njustlikeroses.com\r\nuneditedmeat.com\r\nblindmorality.com","protected":false,"verified":false,"followers_count":198,"friends_count":223,"listed_count":2,"favourites_count":1,"statuses_count":1140,"created_at":"Tue Apr 21 16:23:38 +0000 2009","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579860597\/cdbvs8ot584gkz5tpk59.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579860597\/cdbvs8ot584gkz5tpk59.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1109756604\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1109756604\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BupX9kV9sD","expanded_url":"http:\/\/fb.me\/2lGSpHZf4","display_url":"fb.me\/2lGSpHZf4","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080058657"} +{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727988802891776,"id_str":"663727988802891776","text":"RT @FunnyPicsDepot: hardest I've ever seen someone dab https:\/\/t.co\/5iNxTiK4hv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1472999484,"id_str":"1472999484","name":"Kolt \u00a9asey","screen_name":"casey__09","location":null,"url":"http:\/\/www.hudl.com\/athlete\/4273956\/kolt-casey","description":"(TYLER TX) travel\u2708\ufe0f \u2022 #etbufootball \u2022 #etbunursing","protected":false,"verified":false,"followers_count":364,"friends_count":199,"listed_count":0,"favourites_count":1181,"statuses_count":2589,"created_at":"Fri May 31 20:29:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654456179913953280\/jzwRBR7Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654456179913953280\/jzwRBR7Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1472999484\/1444611178","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:12 +0000 2015","id":663725780531355648,"id_str":"663725780531355648","text":"hardest I've ever seen someone dab https:\/\/t.co\/5iNxTiK4hv","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524657792,"id_str":"524657792","name":"FunnyPicsDepot","screen_name":"FunnyPicsDepot","location":"GLOBAL ","url":"http:\/\/funnypicsdepot.com","description":"Twitter's #1 for funny pictures! Laughing burns calories, follow me for an intense workout! We do not own any of the content posted! contactfunnypicsd@gmail.com","protected":false,"verified":false,"followers_count":1233818,"friends_count":309376,"listed_count":2312,"favourites_count":1941,"statuses_count":23136,"created_at":"Wed Mar 14 19:33:58 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"050000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524657792\/1444265471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":329,"favorite_count":417,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663463839367897093,"id_str":"663463839367897093","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","url":"https:\/\/t.co\/5iNxTiK4hv","display_url":"pic.twitter.com\/5iNxTiK4hv","expanded_url":"http:\/\/twitter.com\/lordflaconegro\/status\/663464210945458176\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663464210945458176,"source_status_id_str":"663464210945458176","source_user_id":357953332,"source_user_id_str":"357953332"}]},"extended_entities":{"media":[{"id":663463839367897093,"id_str":"663463839367897093","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","url":"https:\/\/t.co\/5iNxTiK4hv","display_url":"pic.twitter.com\/5iNxTiK4hv","expanded_url":"http:\/\/twitter.com\/lordflaconegro\/status\/663464210945458176\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663464210945458176,"source_status_id_str":"663464210945458176","source_user_id":357953332,"source_user_id_str":"357953332","video_info":{"aspect_ratio":[16,9],"duration_millis":27200,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/pl\/CIHHrpzfB9DLFTuU.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/320x180\/lve4JhaZDzB9cxoi.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/pl\/CIHHrpzfB9DLFTuU.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/640x360\/b1GGPV1AsKpwNyuV.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/640x360\/b1GGPV1AsKpwNyuV.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FunnyPicsDepot","name":"FunnyPicsDepot","id":524657792,"id_str":"524657792","indices":[3,18]}],"symbols":[],"media":[{"id":663463839367897093,"id_str":"663463839367897093","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","url":"https:\/\/t.co\/5iNxTiK4hv","display_url":"pic.twitter.com\/5iNxTiK4hv","expanded_url":"http:\/\/twitter.com\/lordflaconegro\/status\/663464210945458176\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663464210945458176,"source_status_id_str":"663464210945458176","source_user_id":357953332,"source_user_id_str":"357953332"}]},"extended_entities":{"media":[{"id":663463839367897093,"id_str":"663463839367897093","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663463839367897093\/pu\/img\/yxHFF_n7fkzSaf87.jpg","url":"https:\/\/t.co\/5iNxTiK4hv","display_url":"pic.twitter.com\/5iNxTiK4hv","expanded_url":"http:\/\/twitter.com\/lordflaconegro\/status\/663464210945458176\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663464210945458176,"source_status_id_str":"663464210945458176","source_user_id":357953332,"source_user_id_str":"357953332","video_info":{"aspect_ratio":[16,9],"duration_millis":27200,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/pl\/CIHHrpzfB9DLFTuU.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/320x180\/lve4JhaZDzB9cxoi.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/pl\/CIHHrpzfB9DLFTuU.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/640x360\/b1GGPV1AsKpwNyuV.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663463839367897093\/pu\/vid\/640x360\/b1GGPV1AsKpwNyuV.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080058657"} +{"delete":{"status":{"id":420669762322960386,"id_str":"420669762322960386","user_id":287142868,"user_id_str":"287142868"},"timestamp_ms":"1447080059146"}} +{"delete":{"status":{"id":663642924144599040,"id_str":"663642924144599040","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080059193"}} +{"delete":{"status":{"id":663721256961769472,"id_str":"663721256961769472","user_id":3492380610,"user_id_str":"3492380610"},"timestamp_ms":"1447080059188"}} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009909760,"id_str":"663727993009909760","text":"RT @hikmetgenc: Kuzu kuzu bekleyeceksin art\u0131k Kemal abi!...\n2019'a kadar!...\n\nhttps:\/\/t.co\/AJpEp5A4RK https:\/\/t.co\/mUgKmFbOo4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4106468224,"id_str":"4106468224","name":"Aykut Cem Bulut","screen_name":"aykutronaldo7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":127,"listed_count":0,"favourites_count":2,"statuses_count":22,"created_at":"Tue Nov 03 18:38:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661614667731771393\/-JaiVuyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661614667731771393\/-JaiVuyD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:04:37 +0000 2015","id":663537647508398082,"id_str":"663537647508398082","text":"Kuzu kuzu bekleyeceksin art\u0131k Kemal abi!...\n2019'a kadar!...\n\nhttps:\/\/t.co\/AJpEp5A4RK https:\/\/t.co\/mUgKmFbOo4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105308593,"id_str":"105308593","name":"Hikmet Genc","screen_name":"hikmetgenc","location":"\u0130stanbul","url":null,"description":"Yeni \u015eafak'ta yazar... \u00d6yle i\u015fte!...","protected":false,"verified":false,"followers_count":214609,"friends_count":748,"listed_count":725,"favourites_count":32,"statuses_count":10669,"created_at":"Sat Jan 16 00:22:26 +0000 2010","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/475075902540234752\/SD_-fO1q_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/475075902540234752\/SD_-fO1q_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105308593\/1377102320","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":257,"favorite_count":296,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AJpEp5A4RK","expanded_url":"http:\/\/www.yenisafak.com\/yazarlar\/hikmetgenc\/kuzu-kuzu-bekleyeceksin-artik-kemal-abi-2022913","display_url":"yenisafak.com\/yazarlar\/hikme\u2026","indices":[62,85]}],"user_mentions":[],"symbols":[],"media":[{"id":663537640973721602,"id_str":"663537640973721602","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","url":"https:\/\/t.co\/mUgKmFbOo4","display_url":"pic.twitter.com\/mUgKmFbOo4","expanded_url":"http:\/\/twitter.com\/hikmetgenc\/status\/663537647508398082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":307,"resize":"fit"},"large":{"w":750,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663537640973721602,"id_str":"663537640973721602","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","url":"https:\/\/t.co\/mUgKmFbOo4","display_url":"pic.twitter.com\/mUgKmFbOo4","expanded_url":"http:\/\/twitter.com\/hikmetgenc\/status\/663537647508398082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":307,"resize":"fit"},"large":{"w":750,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AJpEp5A4RK","expanded_url":"http:\/\/www.yenisafak.com\/yazarlar\/hikmetgenc\/kuzu-kuzu-bekleyeceksin-artik-kemal-abi-2022913","display_url":"yenisafak.com\/yazarlar\/hikme\u2026","indices":[78,101]}],"user_mentions":[{"screen_name":"hikmetgenc","name":"Hikmet Genc","id":105308593,"id_str":"105308593","indices":[3,14]}],"symbols":[],"media":[{"id":663537640973721602,"id_str":"663537640973721602","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","url":"https:\/\/t.co\/mUgKmFbOo4","display_url":"pic.twitter.com\/mUgKmFbOo4","expanded_url":"http:\/\/twitter.com\/hikmetgenc\/status\/663537647508398082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":307,"resize":"fit"},"large":{"w":750,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"}},"source_status_id":663537647508398082,"source_status_id_str":"663537647508398082","source_user_id":105308593,"source_user_id_str":"105308593"}]},"extended_entities":{"media":[{"id":663537640973721602,"id_str":"663537640973721602","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVb-AlW4AI0T7q.jpg","url":"https:\/\/t.co\/mUgKmFbOo4","display_url":"pic.twitter.com\/mUgKmFbOo4","expanded_url":"http:\/\/twitter.com\/hikmetgenc\/status\/663537647508398082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":307,"resize":"fit"},"large":{"w":750,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"}},"source_status_id":663537647508398082,"source_status_id_str":"663537647508398082","source_user_id":105308593,"source_user_id_str":"105308593"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001525248,"id_str":"663727993001525248","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242199100,"id_str":"3242199100","name":"Udgama Castagnasso","screen_name":"jesiqodyhuri","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":1608,"listed_count":3,"favourites_count":15442,"statuses_count":16021,"created_at":"Fri May 08 17:29:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642662967322898434\/hI-EUgc7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642662967322898434\/hI-EUgc7_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":207,"favorite_count":127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001525249,"id_str":"663727993001525249","text":"\u062c\u0645\u0647\u0648\u0631 \u0641\u0644\u0637\u0633\u064a\u0646 \u064a\u0645\u062c\u062f\u0648\u0646 \u062f\u0648\u0644\u062a\u0647\u0645\n\u0648\u0643\u0646 \u0645\u0646\u0627\u0641\u0633 \u0645\u0646 \u0634\u0627\u064a\u0644 \u0639\u0646\u0647\u0645 \u0647\u0645\u0647\u0645 \u0628\u0643\u0644 \u0627\u0644\u062f\u0639\u0645 \u0645\u0627\u062f\u064a \u0648\u0633\u064a\u0627\u0633\u064a \n\u0642\u0645\u0647 \u0645\u0633\u062e\u0631\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1045886659,"id_str":"1045886659","name":"\u0633\u0644\u0637\u0627\u0646 \u0627\u0644\u0631\u064a\u0627\u0636","screen_name":"ssxx204","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":682,"friends_count":226,"listed_count":1,"favourites_count":50,"statuses_count":12276,"created_at":"Sat Dec 29 20:18:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585566953353453568\/WHde4iza_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585566953353453568\/WHde4iza_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1045886659\/1445468944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993005719552,"id_str":"663727993005719552","text":"RT @MACHOM0E: BALD DAD.. 20 NEW VIDEOS.. MACHO MONDAY.. CUM DUMP A LOAD.. https:\/\/t.co\/I37XeCbMGb .. GET ON.. GET OFF https:\/\/t.co\/VVGgC9P\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3611732122,"id_str":"3611732122","name":"Want Fuck-You -","screen_name":"SexyQuente","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":589,"friends_count":713,"listed_count":2,"favourites_count":568,"statuses_count":652,"created_at":"Thu Sep 10 17:32:45 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643839752106561540\/LVXL5gdR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643839752106561540\/LVXL5gdR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3611732122\/1442338404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:56:35 +0000 2015","id":663671519541723136,"id_str":"663671519541723136","text":"BALD DAD.. 20 NEW VIDEOS.. MACHO MONDAY.. CUM DUMP A LOAD.. https:\/\/t.co\/I37XeCbMGb .. GET ON.. GET OFF https:\/\/t.co\/VVGgC9PH83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":222983632,"id_str":"222983632","name":"MACHOMOE.COM","screen_name":"MACHOM0E","location":"San Francisco \/ New York","url":"http:\/\/MACHOMOE.COM","description":"\u2471 ONLY \u2623 Voted Best Gay Tube Site 2014 \u2623\n@TIMPorn #BBBH #BareBack \u200f@FortTroff","protected":false,"verified":false,"followers_count":86009,"friends_count":78057,"listed_count":338,"favourites_count":519,"statuses_count":97998,"created_at":"Sun Dec 05 01:34:24 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/877067351\/dc5386b6baa46fed4ee4e09e074adeb6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/877067351\/dc5386b6baa46fed4ee4e09e074adeb6.jpeg","profile_background_tile":true,"profile_link_color":"21EDED","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/437921338083119104\/8x_iGNMi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/437921338083119104\/8x_iGNMi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222983632\/1402882561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":25,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I37XeCbMGb","expanded_url":"http:\/\/MACHOMOE.COM","display_url":"MACHOMOE.COM","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663671518526750720,"id_str":"663671518526750720","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","url":"https:\/\/t.co\/VVGgC9PH83","display_url":"pic.twitter.com\/VVGgC9PH83","expanded_url":"http:\/\/twitter.com\/MACHOM0E\/status\/663671519541723136\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":500,"h":376,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663671518526750720,"id_str":"663671518526750720","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","url":"https:\/\/t.co\/VVGgC9PH83","display_url":"pic.twitter.com\/VVGgC9PH83","expanded_url":"http:\/\/twitter.com\/MACHOM0E\/status\/663671519541723136\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":500,"h":376,"resize":"fit"}},"video_info":{"aspect_ratio":[125,94],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXVutVUwAAQddN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I37XeCbMGb","expanded_url":"http:\/\/MACHOMOE.COM","display_url":"MACHOMOE.COM","indices":[74,97]}],"user_mentions":[{"screen_name":"MACHOM0E","name":"MACHOMOE.COM","id":222983632,"id_str":"222983632","indices":[3,12]}],"symbols":[],"media":[{"id":663671518526750720,"id_str":"663671518526750720","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","url":"https:\/\/t.co\/VVGgC9PH83","display_url":"pic.twitter.com\/VVGgC9PH83","expanded_url":"http:\/\/twitter.com\/MACHOM0E\/status\/663671519541723136\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":500,"h":376,"resize":"fit"}},"source_status_id":663671519541723136,"source_status_id_str":"663671519541723136","source_user_id":222983632,"source_user_id_str":"222983632"}]},"extended_entities":{"media":[{"id":663671518526750720,"id_str":"663671518526750720","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXVutVUwAAQddN.png","url":"https:\/\/t.co\/VVGgC9PH83","display_url":"pic.twitter.com\/VVGgC9PH83","expanded_url":"http:\/\/twitter.com\/MACHOM0E\/status\/663671519541723136\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":500,"h":376,"resize":"fit"}},"source_status_id":663671519541723136,"source_status_id_str":"663671519541723136","source_user_id":222983632,"source_user_id_str":"222983632","video_info":{"aspect_ratio":[125,94],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXVutVUwAAQddN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080059659"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001541632,"id_str":"663727993001541632","text":"@nanamokkori773 \u4f5c\u3063\u305f\u3089\u5373\u9001\u3063\u3066\u306d\uff01w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727849522630657,"in_reply_to_status_id_str":"663727849522630657","in_reply_to_user_id":3480768072,"in_reply_to_user_id_str":"3480768072","in_reply_to_screen_name":"nanamokkori773","user":{"id":3013159975,"id_str":"3013159975","name":"yu-ka\\\u2721\/","screen_name":"Yuuka1215I","location":null,"url":null,"description":"\u51fd\u9928\u30fb \u8c37\u5730\u982d \u21f0 \u935b\u795e\u5c0f \u21f0 \u672c\u4e2d \u21f0 \uff33\uff27\u30fb\uff33\u79d11\u5e74 \u203c\ufe0e\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\uff01\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\u6687\u4eba!\u4e43\u6728\u574246\/\u4e09\u4ee3JSB \/Da-iCE \/ \uff242 \/\u6642\u4eba\u304f\u3093\/\u3068\u3082\u304f\u3093\u2721\u5927\u597d\u304d\u2764\ufe0e \u8eab\u9577\u306e\u3073\u305f\u304f\u306a\u3044\u3002\u75e9\u305b\u308b!! \uff84\uff8c\uff9f\u53f3\u203b\u5b9f\u7269\u3068\u7570\u306a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":437,"friends_count":322,"listed_count":1,"favourites_count":5759,"statuses_count":6026,"created_at":"Sun Feb 08 07:18:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663022763771211776\/zMHzzjWA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663022763771211776\/zMHzzjWA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3013159975\/1446645013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nanamokkori773","name":"\u306a\u306a\u3082\u3063\u3053\u308a","id":3480768072,"id_str":"3480768072","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018318848,"id_str":"663727993018318848","text":"RT @dweissmann75: Formations \u00e0 la r\u00e9forme du coll\u00e8ge : chahut et m\u00e9contentement des profs #college2016 https:\/\/t.co\/ZI38FFXbof","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1464836642,"id_str":"1464836642","name":"Claire Gu\u00e9ville","screen_name":"CGville","location":"Dieppe, Haute-Normandie","url":null,"description":"Prof d'histoire-g\u00e9o, responsable des questions lyc\u00e9e au #SNES-FSU #CSE","protected":false,"verified":false,"followers_count":327,"friends_count":263,"listed_count":17,"favourites_count":899,"statuses_count":3822,"created_at":"Tue May 28 14:31:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3723342995\/866846cfe04baddcd46a74e2b7b9a87c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3723342995\/866846cfe04baddcd46a74e2b7b9a87c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:42 +0000 2015","id":663714833234309120,"id_str":"663714833234309120","text":"Formations \u00e0 la r\u00e9forme du coll\u00e8ge : chahut et m\u00e9contentement des profs #college2016 https:\/\/t.co\/ZI38FFXbof","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2815372684,"id_str":"2815372684","name":"dw","screen_name":"dweissmann75","location":"Paris, Ile-de-France","url":"http:\/\/u-pec.academia.edu\/dirkweissmann","description":"Universitaire \/ Academic, Paris, France MCF \/ Assistant Professor #UPEC #literature #multilingualism #translation AGAINST #college2016","protected":false,"verified":false,"followers_count":391,"friends_count":265,"listed_count":35,"favourites_count":7633,"statuses_count":6969,"created_at":"Wed Oct 08 13:28:14 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"006699","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641233533621653508\/2qKQYCh-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641233533621653508\/2qKQYCh-_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[{"text":"college2016","indices":[72,84]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663714832278011904,"id_str":"663714832278011904","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","url":"https:\/\/t.co\/ZI38FFXbof","display_url":"pic.twitter.com\/ZI38FFXbof","expanded_url":"http:\/\/twitter.com\/dweissmann75\/status\/663714833234309120\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":842,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":360,"resize":"fit"},"medium":{"w":600,"h":635,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714832278011904,"id_str":"663714832278011904","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","url":"https:\/\/t.co\/ZI38FFXbof","display_url":"pic.twitter.com\/ZI38FFXbof","expanded_url":"http:\/\/twitter.com\/dweissmann75\/status\/663714833234309120\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":842,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":360,"resize":"fit"},"medium":{"w":600,"h":635,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"college2016","indices":[90,102]}],"urls":[],"user_mentions":[{"screen_name":"dweissmann75","name":"dw","id":2815372684,"id_str":"2815372684","indices":[3,16]}],"symbols":[],"media":[{"id":663714832278011904,"id_str":"663714832278011904","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","url":"https:\/\/t.co\/ZI38FFXbof","display_url":"pic.twitter.com\/ZI38FFXbof","expanded_url":"http:\/\/twitter.com\/dweissmann75\/status\/663714833234309120\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":842,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":360,"resize":"fit"},"medium":{"w":600,"h":635,"resize":"fit"}},"source_status_id":663714833234309120,"source_status_id_str":"663714833234309120","source_user_id":2815372684,"source_user_id_str":"2815372684"}]},"extended_entities":{"media":[{"id":663714832278011904,"id_str":"663714832278011904","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9H5oWwAAnrGu.jpg","url":"https:\/\/t.co\/ZI38FFXbof","display_url":"pic.twitter.com\/ZI38FFXbof","expanded_url":"http:\/\/twitter.com\/dweissmann75\/status\/663714833234309120\/photo\/1","type":"photo","sizes":{"large":{"w":795,"h":842,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":360,"resize":"fit"},"medium":{"w":600,"h":635,"resize":"fit"}},"source_status_id":663714833234309120,"source_status_id_str":"663714833234309120","source_user_id":2815372684,"source_user_id_str":"2815372684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080059662"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993034964992,"id_str":"663727993034964992","text":"Bought EURUSD 1.07402","source":"\u003ca href=\"https:\/\/www.myfxbook.com\" rel=\"nofollow\"\u003eMyfxbook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194023751,"id_str":"3194023751","name":"moneymaker_demo","screen_name":"MoneyMaker_Demo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":68,"friends_count":0,"listed_count":7,"favourites_count":2,"statuses_count":12196,"created_at":"Wed Apr 22 08:31:19 +0000 2015","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590795478972899328\/FyUN07Va_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590795478972899328\/FyUN07Va_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997285888,"id_str":"663727992997285888","text":"@Cibe275 jajaja, espero no sufrir \ud83d\ude48\ud83d\ude4f\ud83c\udffd, sino me muerooo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727640742899713,"in_reply_to_status_id_str":"663727640742899713","in_reply_to_user_id":1463361145,"in_reply_to_user_id_str":"1463361145","in_reply_to_screen_name":"Cibe275","user":{"id":1473092148,"id_str":"1473092148","name":"Delfina Elissalde","screen_name":"delfi_elissalde","location":null,"url":null,"description":"Nadie es lo suficientemente bueno para caerle bien a todo el mundo, no te preocupes, tampoco Dios lo ha logrado.","protected":false,"verified":false,"followers_count":973,"friends_count":476,"listed_count":1,"favourites_count":1535,"statuses_count":35839,"created_at":"Fri May 31 21:21:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"E61717","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651563189017165824\/2fdH6WG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651563189017165824\/2fdH6WG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1473092148\/1444180014","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cibe275","name":"Cibeles Taranto","id":1463361145,"id_str":"1463361145","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997322752,"id_str":"663727992997322752","text":"COME BACK TO SANTIAGO @JackJackJohnson","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1380213242,"id_str":"1380213242","name":"I miss Jacks:(","screen_name":"xhoranbaex","location":"luc\u00eda","url":null,"description":"'Everything inside me screams for just one more kiss, one more word, one more glance, one more.'","protected":false,"verified":false,"followers_count":523,"friends_count":407,"listed_count":7,"favourites_count":548,"statuses_count":7071,"created_at":"Thu Apr 25 19:13:29 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000017978109\/ad7c1d07b3e59b6098ae15de44d3b32e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000017978109\/ad7c1d07b3e59b6098ae15de44d3b32e.jpeg","profile_background_tile":true,"profile_link_color":"00B377","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660234544906412032\/cD0mTapv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660234544906412032\/cD0mTapv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1380213242\/1446247155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[22,38]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059657"} +{"delete":{"status":{"id":623639430994264064,"id_str":"623639430994264064","user_id":2398610028,"user_id_str":"2398610028"},"timestamp_ms":"1447080059724"}} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009782784,"id_str":"663727993009782784","text":"#\ub77c\uc774\ube0c\ubc14\uce74\ub77c\n\n \uc8fc\uc18c B a C 7 2 , C O M\n\n\uc0dd\n\uadf8\n\uc2a4\n\ub4e4\n\uc11c\n\uc5d0\n\ud568\n\ud55c\n\ubc14\n\uc758\n.\n\uc0dd\n\uadf8\n\uc2a4\n\ub4e4\n\uc11c\n\uc5d0\n\ud568\n\ud55c\n\ubc14\n\uc758\n.\n\uc0dd\n\uadf8\n\uc2a4\n\ub4e4\n\uc11c\n\uc5d0\n\ud568\n\ud55c\n\ubc14\n\uc758","source":"\u003ca href=\"http:\/\/newtwt.dothome.co.kr\/tweet06\" rel=\"nofollow\"\u003esista85\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":229083580,"id_str":"229083580","name":"ha seung hee","screen_name":"gktmdxks","location":"\ubba4\uc9c1\ud31c \ubc15\uc131\uaddc \ub9d8\uc18d..\uc73c\ud5c8\ud5c8\u314b","url":null,"description":"GBJ\/ john23\uc77c come back\u2665\/22\uc77c \uc568\ubc94\u2665","protected":false,"verified":false,"followers_count":6,"friends_count":7,"listed_count":0,"favourites_count":0,"statuses_count":21795,"created_at":"Tue Dec 21 13:34:08 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/220083727\/99469660_1290863106.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/220083727\/99469660_1290863106.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1279875119\/phpCPc1eA_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1279875119\/phpCPc1eA_normal","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ub77c\uc774\ube0c\ubc14\uce74\ub77c","indices":[0,7]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993035038720,"id_str":"663727993035038720","text":"@iiNoura16 \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\u0645\u0646 \u062c\u062f\u0643 \u062a\u062a\u062d\u0645\u0633\u064a\u0646 \u0645\u0639 \u0627\u0644\u0645\u0628\u0627\u0631\u0627\u0647\u061f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727853587070976,"in_reply_to_status_id_str":"663727853587070976","in_reply_to_user_id":2264238586,"in_reply_to_user_id_str":"2264238586","in_reply_to_screen_name":"123_saraahmed","user":{"id":2264238586,"id_str":"2264238586","name":"\u0633\u0627\u0631\u0627\u0647","screen_name":"123_saraahmed","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45,"friends_count":8,"listed_count":0,"favourites_count":1083,"statuses_count":724,"created_at":"Sun Jan 05 21:14:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662999506598891520\/2kl2_A4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662999506598891520\/2kl2_A4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264238586\/1446906373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iiNoura16","name":"Daimond.","id":534779753,"id_str":"534779753","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009885184,"id_str":"663727993009885184","text":"\u0627\u064a\u0648\u0627 \u060c \u0634\u0643\u0631\u0627 \ud83d\ude47\ud83c\udffb\ud83d\udc95. https:\/\/t.co\/gURVdMLqgN","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386360379,"id_str":"2386360379","name":"\u0631\u0650\u06a4\u0627\u0646\u062f\u0627~","screen_name":"masar_tech","location":"lost plant","url":"http:\/\/ask.fm\/account\/questions","description":"EXAM || \u062b\u0642\u0628\u064f \u0645\u064f\u0636\u064a\u0621 150505 \u2728.","protected":false,"verified":false,"followers_count":878,"friends_count":412,"listed_count":2,"favourites_count":5456,"statuses_count":42181,"created_at":"Wed Mar 05 20:19:08 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727165360480256\/Xn7T5P9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727165360480256\/Xn7T5P9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386360379\/1445269471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726963593465856,"quoted_status_id_str":"663726963593465856","quoted_status":{"created_at":"Mon Nov 09 14:36:54 +0000 2015","id":663726963593465856,"id_str":"663726963593465856","text":"\u0639\u0634\u0627\u0646 \u062c\u0627\u0626\u0632\u0629 \u0641\u0646\u0627\u0646 \u0627\u0644\u0633\u0646\u0647 \u0648 \u062c\u0627\u0626\u0632\u0629 \u062b\u0627\u0646\u064a\u0647 \u0646\u0627\u0633\u064a\u0647 \u0627\u0633\u0645\u0647\u0627 https:\/\/t.co\/kciEHHlToZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3184432633,"id_str":"3184432633","name":"ariana","screen_name":"oo7_exo","location":"just exo ...","url":null,"description":"\u200f\u200f\u200f\u200f\u062a\u0639\u0628 \u0627\u0644\u0643\u0644\u0627\u0645 \u0645\u0646 \u0627\u0644\u0643\u0644\u0627\u0645 ..","protected":false,"verified":false,"followers_count":124,"friends_count":356,"listed_count":0,"favourites_count":147,"statuses_count":8503,"created_at":"Sun May 03 17:03:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658379959233355776\/pTatG50v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658379959233355776\/pTatG50v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184432633\/1445019521","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726811189260288,"quoted_status_id_str":"663726811189260288","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kciEHHlToZ","expanded_url":"https:\/\/twitter.com\/masar_tech\/status\/663726811189260288","display_url":"twitter.com\/masar_tech\/sta\u2026","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gURVdMLqgN","expanded_url":"https:\/\/twitter.com\/oo7_exo\/status\/663726963593465856","display_url":"twitter.com\/oo7_exo\/status\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993035075584,"id_str":"663727993035075584","text":"one person followed me \/\/ automatically checked by https:\/\/t.co\/iWcXb0vZUg","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375468964,"id_str":"375468964","name":"Yeremi\u00e4s","screen_name":"YereMaranressy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":498,"friends_count":115,"listed_count":0,"favourites_count":15,"statuses_count":29049,"created_at":"Sun Sep 18 05:41:31 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441939495311515648\/gD8iRB9p.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441939495311515648\/gD8iRB9p.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486729035653718016\/zfzmFYPA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486729035653718016\/zfzmFYPA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375468964\/1392128272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iWcXb0vZUg","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993026576385,"id_str":"663727993026576385","text":"RT @RaGoharShahi: #QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2482934919,"id_str":"2482934919","name":"Nasira ","screen_name":"nasira_gohar","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":16,"listed_count":33,"favourites_count":33,"statuses_count":22194,"created_at":"Mon Apr 14 01:03:19 +0000 2014","utc_offset":21600,"time_zone":"Almaty","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483261554356264960\/oneQr61W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483261554356264960\/oneQr61W_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 00:01:21 +0000 2015","id":660969909892071424,"id_str":"660969909892071424","text":"#QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t.co\/3vQqsiguFU","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":83,"favorite_count":7,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[18,32]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[139,140]}],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059664"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997330944,"id_str":"663727992997330944","text":"I think you mean \"yea or nay,\" ConnorArmstrong. https:\/\/t.co\/pnww8GMFxM https:\/\/t.co\/3kPZtU41Dc","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3100475160,"id_str":"3100475160","name":"SameSiders","screen_name":"samesiders","location":"One side of a table","url":"http:\/\/samesiders.tumblr.com","description":null,"protected":false,"verified":false,"followers_count":69,"friends_count":275,"listed_count":5,"favourites_count":1,"statuses_count":26117,"created_at":"Sat Mar 21 00:54:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654022781693202432\/cDwT9Diw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654022781693202432\/cDwT9Diw_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726114351783936,"quoted_status_id_str":"663726114351783936","quoted_status":{"created_at":"Mon Nov 09 14:33:31 +0000 2015","id":663726114351783936,"id_str":"663726114351783936","text":"Call of Duty: Black Ops III - yay or nay?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26839133,"id_str":"26839133","name":"Connor Armstrong","screen_name":"ConnorArmstrong","location":"Brighton \/ Southend","url":"https:\/\/www.linkedin.com\/profile\/public-profile-settings?trk=prof-edit-edit-public_profile","description":"Matchday Media at @SUFCRootsHall. Freelance journalist for the Telegraph, Sun, Mirror, People, Star, Sky Sports, FLP\/NLP + more. Writer for @YahooSportUK.","protected":false,"verified":false,"followers_count":4738,"friends_count":1789,"listed_count":95,"favourites_count":7135,"statuses_count":181914,"created_at":"Thu Mar 26 20:18:25 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCF9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000010302838\/2eb8c16e40459a06d69070e723316637.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000010302838\/2eb8c16e40459a06d69070e723316637.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640172813073170433\/mFu84_mn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640172813073170433\/mFu84_mn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26839133\/1444229363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pnww8GMFxM","expanded_url":"http:\/\/ift.tt\/1czCcuf","display_url":"ift.tt\/1czCcuf","indices":[48,71]},{"url":"https:\/\/t.co\/3kPZtU41Dc","expanded_url":"http:\/\/twitter.com\/ConnorArmstrong\/status\/663726114351783936","display_url":"twitter.com\/ConnorArmstron\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001349120,"id_str":"663727993001349120","text":"Happy Monday\ud83d\ude04hope everyone had an awesome weekend, I know I did. \ud83d\ude06 @Loomy7 I will soon give you cuddles \ud83d\ude01 even if I have 2 go rabbit hunting","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3152676914,"id_str":"3152676914","name":"Rukus","screen_name":"Bloo_Rukus","location":null,"url":null,"description":"Male\/\/ almost 21\/\/ Fur Suiter\/\/ Soldier first, Geospatial Engineer second\/\/ Future Architect\/\/ lover of food and music ^^","protected":false,"verified":false,"followers_count":167,"friends_count":244,"listed_count":1,"favourites_count":385,"statuses_count":202,"created_at":"Mon Apr 13 11:36:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651753873179176960\/IASaDyoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651753873179176960\/IASaDyoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3152676914\/1428927601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Loomy7","name":"Loomy","id":64531979,"id_str":"64531979","indices":[67,74]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993013989376,"id_str":"663727993013989376","text":"\u3010\u677e\u672c\u6f64\uff06\u4e95\u4e0a\u771f\u592e\u3011\u30ea\u30a2\u30eb\u300c\u82b1\u3088\u308a\u7537\u5b50\u300d\u306e\u53ef\u80fd\u6027\uff01\uff1f https:\/\/t.co\/WSiPccSpeP","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314092735,"id_str":"3314092735","name":"\u03c6\u03c6\u30ad\u30e0\u30bf\u30af\u03c6\u03c6","screen_name":"ko043KIMUTAKU","location":null,"url":null,"description":"\u6728\u6751\u62d3\u54c9\u304c\u3001\u597d\u304d\u306aJK3\u3067\u3059\u53cb\u9054\u52df\u96c6\u4e2d\u3067\u3059(^-^)\/ \u30ad\u30e9\u30ad\u30e9\u3001\u30e2\u30d5\u30e2\u30d5\u5927\u597d\u304d\u2764 \u51fa\u4f1a\u3044\u308e\u5927\u4e8b\u306b\u3057\u305f\u3044\u3068\u601d\u3063\u3066\u307e\u3059(\u00b4\u30fc\uff40)\u2606 \u5f7c\u6c0f\u52df\u96c6\u4e2d! \u8ab0\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":57,"friends_count":206,"listed_count":0,"favourites_count":0,"statuses_count":8018,"created_at":"Thu Aug 13 05:39:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631992242505256960\/-0qfLtE2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631992242505256960\/-0qfLtE2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314092735\/1439513673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WSiPccSpeP","expanded_url":"http:\/\/jonny001entamez.seesaa.net","display_url":"jonny001entamez.seesaa.net","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059661"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018167297,"id_str":"663727993018167297","text":"\u306f\uff1f\u610f\u5473\u308f\u304b\u3093\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119157062,"id_str":"3119157062","name":"\u502d\u7409\u2701@\u91d1\u6b20\u2026","screen_name":"iru6xxxxxx3","location":"2.5\u6b21\u5143","url":null,"description":"\u65b0\u3057\u3044\u79c1\u3092\u304a\u898b\u305b\u3059\u308b\u305c\u3063\uff01\u58f0\u90e8\u306b\u3082\u6240\u5c5e\u4e2d \u53cc\u5b50\u306e\u304a\u59c9\u3061\u3083\u3093\u2192@neru_11 \u30a2\u30a4\u30b3\u30f3\u306f@link0412\u69d8\u3067\u3059\uff01\u795e\uff01\u30d8\u30c3\u30c0\u30fc\u306f@neru_11","protected":false,"verified":false,"followers_count":1057,"friends_count":1076,"listed_count":6,"favourites_count":933,"statuses_count":3645,"created_at":"Tue Mar 31 05:09:24 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582774702835261440\/CRe1oJoC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582774702835261440\/CRe1oJoC.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645887893286711296\/Q20NXuYC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645887893286711296\/Q20NXuYC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3119157062\/1445188625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059662"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993013977088,"id_str":"663727993013977088","text":"RT @egumeoniNAM: Promise we'll learn the fanchants and the songs @kyuzizi #InspiritPHLovesLeaderGyu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233049145,"id_str":"3233049145","name":"cheerioXyanne","screen_name":"inspirit_lhee","location":"Republic of the Philippines","url":null,"description":"A nonkpop who turned kpop because of Infinite( \uc778\ud53c\ub2c8\ud2b8 ) :))","protected":false,"verified":false,"followers_count":140,"friends_count":216,"listed_count":0,"favourites_count":1226,"statuses_count":1612,"created_at":"Tue Jun 02 00:19:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638231779409682432\/4uxmPrbN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638231779409682432\/4uxmPrbN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233049145\/1436100647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:40 +0000 2015","id":663726904831184896,"id_str":"663726904831184896","text":"Promise we'll learn the fanchants and the songs @kyuzizi #InspiritPHLovesLeaderGyu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2519700974,"id_str":"2519700974","name":"\u30fd(\uffe3\u0434\uffe3;)\u30ce=3=3=3","screen_name":"egumeoniNAM","location":"Republic of the Philippines","url":null,"description":"Janine \u2022 legally blind w\/o glasses \u2022 \uff29\uff2e\uff26\uff29\uff2e\uff29\uff34\uff25 \u221e my forever \ub0a8\uc790\uce5c\uad6c \u2022 \ub0a8\uc6b0\ud604 and \uc7a5\ub3d9\uc6b0's noona \u2022 2Woo ft. \uc774\ud638\uc6d0 \u2022 Wrecked by OT7 \u2022 loves to stalk IFNT's bushy armpits \u2022","protected":false,"verified":false,"followers_count":594,"friends_count":616,"listed_count":3,"favourites_count":3760,"statuses_count":7959,"created_at":"Sat May 24 06:44:26 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647386320029880320\/ia4XfOvb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647386320029880320\/ia4XfOvb.jpg","profile_background_tile":true,"profile_link_color":"EFC818","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652899048051965952\/RipH1jUs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652899048051965952\/RipH1jUs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519700974\/1433948844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"InspiritPHLovesLeaderGyu","indices":[57,82]}],"urls":[],"user_mentions":[{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[48,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"InspiritPHLovesLeaderGyu","indices":[74,99]}],"urls":[],"user_mentions":[{"screen_name":"egumeoniNAM","name":"\u30fd(\uffe3\u0434\uffe3;)\u30ce=3=3=3","id":2519700974,"id_str":"2519700974","indices":[3,15]},{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[65,73]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059661"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009737729,"id_str":"663727993009737729","text":"RT @yakyuu_gif: \u5be9\u5224\u304b\u3089\u898b\u305f\u9ce5\u8c37\u306e\u30bb\u30f3\u30bf\u30fc\u8fd4\u3057 https:\/\/t.co\/gsUnCi8IZZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253770656,"id_str":"3253770656","name":"\u3057 \u3052 \u304a","screen_name":"Soft2S","location":"\u702c\u6238\u2192\u8c4a\u7530\u2192\u7f8e\u6d5c","url":null,"description":"\u4e2d\u90e8\u5927\u7b2c\u4e00 \u30bd\u30d5\u30c8\u90e8#2\u2026\u5f15\u9000 Next\u65e5\u672c\u798f\u7949\u5927\u5b66\u793e\u4f1a\u798f\u7949\u5b66\u90e8 \u5e83\u3044\u5fc3\u5927\u304d\u306a\u5668 \u5fc3\u512a\u3057\u304d\u5f37\u8005","protected":false,"verified":false,"followers_count":449,"friends_count":429,"listed_count":0,"favourites_count":1366,"statuses_count":2579,"created_at":"Tue Jun 23 15:29:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663019526913523712\/CRIBZ6x0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663019526913523712\/CRIBZ6x0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253770656\/1446911306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 23:45:10 +0000 2015","id":661690612740186112,"id_str":"661690612740186112","text":"\u5be9\u5224\u304b\u3089\u898b\u305f\u9ce5\u8c37\u306e\u30bb\u30f3\u30bf\u30fc\u8fd4\u3057 https:\/\/t.co\/gsUnCi8IZZ","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2863872644,"id_str":"2863872644","name":"\u91ce\u74036\u79d230\u79d2\u52d5\u753b","screen_name":"yakyuu_gif","location":"\u91ce\u7403\u5834","url":null,"description":"\u4e16\u754c\u306e\u91ce\u7403\u52d5\u753b\u3092\u304a\u5c4a\u3051\u3057\u3066\u3044\u304d\u307e\u3059\uff01(\u624b\u52d5)","protected":false,"verified":false,"followers_count":58745,"friends_count":334,"listed_count":44,"favourites_count":56,"statuses_count":821,"created_at":"Sun Oct 19 02:18:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618377479355416577\/jsswMkGl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618377479355416577\/jsswMkGl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2863872644\/1413685212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":602,"favorite_count":1071,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gsUnCi8IZZ","expanded_url":"https:\/\/vine.co\/v\/eXuVAmu0rqT","display_url":"vine.co\/v\/eXuVAmu0rqT","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gsUnCi8IZZ","expanded_url":"https:\/\/vine.co\/v\/eXuVAmu0rqT","display_url":"vine.co\/v\/eXuVAmu0rqT","indices":[32,55]}],"user_mentions":[{"screen_name":"yakyuu_gif","name":"\u91ce\u74036\u79d230\u79d2\u52d5\u753b","id":2863872644,"id_str":"2863872644","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997195777,"id_str":"663727992997195777","text":"RT @iamFayezur: 2 minutes to go. #DhamakedarDilwaleTrailer","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3061155507,"id_str":"3061155507","name":"Pradeep Dhakad","screen_name":"Beingdon1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":21,"listed_count":0,"favourites_count":170,"statuses_count":714,"created_at":"Wed Feb 25 07:13:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646224222679793664\/N_sd8tjg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646224222679793664\/N_sd8tjg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:53 +0000 2015","id":663724948221915136,"id_str":"663724948221915136","text":"2 minutes to go. #DhamakedarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1444042135,"id_str":"1444042135","name":"Fan Rohit","screen_name":"iamFayezur","location":"West Bengal, India","url":null,"description":"SRKian, @iamsrk is my inspiration.","protected":false,"verified":false,"followers_count":155,"friends_count":273,"listed_count":4,"favourites_count":88,"statuses_count":3212,"created_at":"Mon May 20 15:08:10 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609433328777691136\/7fgfTqzh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609433328777691136\/7fgfTqzh.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609437512147140608\/IITA6Rfo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609437512147140608\/IITA6Rfo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1444042135\/1414962940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":7,"entities":{"hashtags":[{"text":"DhamakedarDilwaleTrailer","indices":[17,42]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedarDilwaleTrailer","indices":[33,58]}],"urls":[],"user_mentions":[{"screen_name":"iamFayezur","name":"Fan Rohit","id":1444042135,"id_str":"1444042135","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018167296,"id_str":"663727993018167296","text":"\uff6b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":371016116,"id_str":"371016116","name":"( \u02d8\u03c9\u02d8 )\uff61 o O(\u307e\u3081)","screen_name":"mameko0324","location":"Moisschar Kingdom","url":null,"description":"\u308f\u3057\u306e\u3053\u3068\u308f\u3059\u308c\u3066\u308b\u3060\u308d\u30fc\u30fc\u30fc\uff01\uff01\uff01\n\u26a0\u5b9f\u6cc1\u8005\u3067\u304a\u9854\u634f\u9020\u7d75\u3092\u63cf\u3044\u3066\u3044\u308b\u306e\u3067\u6ce8\u610f\/\u7d75\u306e\u7df4\u7fd2\u4e2d\u30de\u30f3\uff3c\uff3c\\\\ \u0669( '\u03c9' )\u0648 \/\/\uff0f\uff0f \uff90\uff83\uff88( \u261e \u02ca\u25bf\u02cb )\u261ehttp:\/\/twpf.jp\/mameko0324 \u30b2\u30fc\u30e0\u3068\u52d5\u753b\u3068\u6f2b\u753b\u3068\u30a2\u30cb\u30e1\u3068\u30db\u30e2\u3068\u767e\u5408\u3068","protected":false,"verified":false,"followers_count":147,"friends_count":177,"listed_count":20,"favourites_count":12968,"statuses_count":50060,"created_at":"Sat Sep 10 01:48:35 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507866738449334272\/JunTr6it_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507866738449334272\/JunTr6it_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/371016116\/1401593976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059662"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009770496,"id_str":"663727993009770496","text":"RT @OVOJALEN: Mood https:\/\/t.co\/obvrOYH0SF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2962882284,"id_str":"2962882284","name":"your steppapi","screen_name":"younglebbo","location":"\u0628\u0644\u0627\u062f \u0645\u0627 \u0628\u064a\u0646 \u0627\u0644\u0641\u062e\u0636\u064a\u0646","url":null,"description":"if you think I care then u right","protected":false,"verified":false,"followers_count":332,"friends_count":171,"listed_count":3,"favourites_count":4940,"statuses_count":21300,"created_at":"Wed Jan 07 11:27:08 +0000 2015","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E7A1B0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"E7A1B0","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659296107990638592\/s-OZL2Yu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659296107990638592\/s-OZL2Yu_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:35:31 +0000 2015","id":663469925114187776,"id_str":"663469925114187776","text":"Mood https:\/\/t.co\/obvrOYH0SF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441335524,"id_str":"441335524","name":"J\u0394Y","screen_name":"OVOJALEN","location":"Virginia, USA (757)","url":null,"description":"| | |","protected":false,"verified":false,"followers_count":110135,"friends_count":56823,"listed_count":45,"favourites_count":4142,"statuses_count":37755,"created_at":"Tue Dec 20 00:20:45 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000103884603\/0e5c7dd60dc783c800d58a44eb777b9d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000103884603\/0e5c7dd60dc783c800d58a44eb777b9d.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"E0D7E0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662322420309716992\/wQ2Wvr9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662322420309716992\/wQ2Wvr9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441335524\/1446682780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":147,"favorite_count":179,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663469912246104065,"id_str":"663469912246104065","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663469912246104065,"id_str":"663469912246104065","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}}},{"id":663469912329949184,"id_str":"663469912329949184","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXruWEAAkCpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXruWEAAkCpF.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OVOJALEN","name":"J\u0394Y","id":441335524,"id_str":"441335524","indices":[3,12]}],"symbols":[],"media":[{"id":663469912246104065,"id_str":"663469912246104065","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}},"source_status_id":663469925114187776,"source_status_id_str":"663469925114187776","source_user_id":441335524,"source_user_id_str":"441335524"}]},"extended_entities":{"media":[{"id":663469912246104065,"id_str":"663469912246104065","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXraWsAEOLmu.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}},"source_status_id":663469925114187776,"source_status_id_str":"663469925114187776","source_user_id":441335524,"source_user_id_str":"441335524"},{"id":663469912329949184,"id_str":"663469912329949184","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeXruWEAAkCpF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeXruWEAAkCpF.jpg","url":"https:\/\/t.co\/obvrOYH0SF","display_url":"pic.twitter.com\/obvrOYH0SF","expanded_url":"http:\/\/twitter.com\/OVOJALEN\/status\/663469925114187776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":853,"resize":"fit"},"medium":{"w":600,"h":799,"resize":"fit"}},"source_status_id":663469925114187776,"source_status_id_str":"663469925114187776","source_user_id":441335524,"source_user_id_str":"441335524"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993030729728,"id_str":"663727993030729728","text":"\u30b7\u30e3\u30ef\u30fc\u6d74\u3073\u3066\u304f\u308b\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211121686,"id_str":"211121686","name":"\u304a\u558b\u308a\u30af\u30bd\u773c\u93e1","screen_name":"tyoko210","location":"\u9752\u68ee\u770c","url":null,"description":"\u7121\u8077(28)","protected":false,"verified":false,"followers_count":97,"friends_count":121,"listed_count":0,"favourites_count":44,"statuses_count":9682,"created_at":"Tue Nov 02 11:31:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644512936510160896\/-xttrxw9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644512936510160896\/-xttrxw9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211121686\/1445331418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059665"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993005608960,"id_str":"663727993005608960","text":"RT @CHAMYO_0429: \uc751\ud314\uc774 \uc815\ud658 \ud0dd\uc778 \uc774\uc720.\n\ud3ec\uc2a4\ud130\ubd80\ud130 \ubcf5\uc120\uc784 \u314e\u314e https:\/\/t.co\/XoBERYN1xx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1429872763,"id_str":"1429872763","name":"\ud589\ubcf5\ud55c \ub85c\ub2c8","screen_name":"autumnchestnut","location":"#lovewins","url":null,"description":"\uc26c\ub2e4 \uac00\uc138\uc694.","protected":false,"verified":false,"followers_count":239,"friends_count":169,"listed_count":0,"favourites_count":2402,"statuses_count":22691,"created_at":"Wed May 15 08:03:54 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522051899550228481\/IbT9AmUD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522051899550228481\/IbT9AmUD.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604856524469497856\/JeFjX9R8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604856524469497856\/JeFjX9R8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1429872763\/1445083973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727823815704576,"id_str":"663727823815704576","text":"\uc751\ud314\uc774 \uc815\ud658 \ud0dd\uc778 \uc774\uc720.\n\ud3ec\uc2a4\ud130\ubd80\ud130 \ubcf5\uc120\uc784 \u314e\u314e https:\/\/t.co\/XoBERYN1xx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3054496110,"id_str":"3054496110","name":"\u2741 NewSpring\uae40\ucc54 \u2741","screen_name":"CHAMYO_0429","location":"\uc5b8\uc81c\ub098 \uc606\uc790\ub9ac","url":null,"description":"\ub124\uac00 \uaf43\ud53c\uace0 \ub098\ub3c4 \uaf43\ud53c\uba74 \n \uacb0\uad6d \ud480\ubc2d\uc774 \uc628\ud1b5 \n \uaf43\ubc2d\uc774 \ub418\ub294 \uac83 \uc544\ub2c8\uaca0\ub290\ub0d0","protected":false,"verified":false,"followers_count":82,"friends_count":156,"listed_count":0,"favourites_count":185,"statuses_count":134,"created_at":"Mon Mar 02 04:14:50 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587265652236271618\/nl8wBYsj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587265652236271618\/nl8wBYsj.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663576843782455296\/9N0kmzFj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663576843782455296\/9N0kmzFj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3054496110\/1435033572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727822242902017,"id_str":"663727822242902017","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","url":"https:\/\/t.co\/XoBERYN1xx","display_url":"pic.twitter.com\/XoBERYN1xx","expanded_url":"http:\/\/twitter.com\/CHAMYO_0429\/status\/663727823815704576\/photo\/1","type":"photo","sizes":{"small":{"w":188,"h":167,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":188,"h":167,"resize":"fit"},"large":{"w":188,"h":167,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727822242902017,"id_str":"663727822242902017","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","url":"https:\/\/t.co\/XoBERYN1xx","display_url":"pic.twitter.com\/XoBERYN1xx","expanded_url":"http:\/\/twitter.com\/CHAMYO_0429\/status\/663727823815704576\/photo\/1","type":"photo","sizes":{"small":{"w":188,"h":167,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":188,"h":167,"resize":"fit"},"large":{"w":188,"h":167,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CHAMYO_0429","name":"\u2741 NewSpring\uae40\ucc54 \u2741","id":3054496110,"id_str":"3054496110","indices":[3,15]}],"symbols":[],"media":[{"id":663727822242902017,"id_str":"663727822242902017","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","url":"https:\/\/t.co\/XoBERYN1xx","display_url":"pic.twitter.com\/XoBERYN1xx","expanded_url":"http:\/\/twitter.com\/CHAMYO_0429\/status\/663727823815704576\/photo\/1","type":"photo","sizes":{"small":{"w":188,"h":167,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":188,"h":167,"resize":"fit"},"large":{"w":188,"h":167,"resize":"fit"}},"source_status_id":663727823815704576,"source_status_id_str":"663727823815704576","source_user_id":3054496110,"source_user_id_str":"3054496110"}]},"extended_entities":{"media":[{"id":663727822242902017,"id_str":"663727822242902017","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8BBU8AEGeUV.jpg","url":"https:\/\/t.co\/XoBERYN1xx","display_url":"pic.twitter.com\/XoBERYN1xx","expanded_url":"http:\/\/twitter.com\/CHAMYO_0429\/status\/663727823815704576\/photo\/1","type":"photo","sizes":{"small":{"w":188,"h":167,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":188,"h":167,"resize":"fit"},"large":{"w":188,"h":167,"resize":"fit"}},"source_status_id":663727823815704576,"source_status_id_str":"663727823815704576","source_user_id":3054496110,"source_user_id_str":"3054496110"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080059659"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018159104,"id_str":"663727993018159104","text":"@jasminine1205 \n\u3046\u3061\u3082\u5927\u597d\u304d\u3044\u3084\u611b\u3057\u3066\u308b\u305c(o\u00b4\u7f52`o)\u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663666485697490944,"in_reply_to_status_id_str":"663666485697490944","in_reply_to_user_id":3022018106,"in_reply_to_user_id_str":"3022018106","in_reply_to_screen_name":"jasminine1205","user":{"id":3313161648,"id_str":"3313161648","name":"\u3053\u3053\u308a\u308a\u306f\u53ea\u4eca\u4f4e\u6d6e\u4e0a \u56fa\u5b9a\u30c4\u30a4\u307f\u3066\u306d","screen_name":"jwks_05081526","location":null,"url":null,"description":"\u8d64\u3088\u308a\u8679\u8272\u30b8\u30e3\u30b9\u6c11\u306e\u95a2\u897f\u62c5 \u3068\u3073\u3063\u3053 99line \n\u203b\u304b\u306a\u308a\u639b\u3051\u6301\u3061\u3057\u3066\u307e\u3059(\u3053\u308c\u3088\u308a\u591a\u3044)\u2191 \n\u76f8\u65b9\u2192\u3057\u306e \u53cc\u5b50\u2192\u3086\u3046 \u540c\u76df\u2192\u308a\u3085\u3046\u306a \n\u7d14\u7c8b\u3067\u3082\u306a\u304f\u3075\u308f\u3075\u308f\u3067\u3082\u306a\u304f\u30ad\u30c1\u3063\u3066\u308b\u3088\u3002\n\u4ef2\u826f\u304f\u306a\u308b\u3068\u30a6\u30b6\u3055\u500d\u5897\u2190 \u3068\u3042\u308b\u3084\u3064\u306e\u65b0\u57a2","protected":false,"verified":false,"followers_count":208,"friends_count":228,"listed_count":10,"favourites_count":748,"statuses_count":2984,"created_at":"Wed Aug 12 09:13:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655011870957432832\/9D3ieA8S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655011870957432832\/9D3ieA8S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313161648\/1446741920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jasminine1205","name":"\uff3c\u306e\u306e\uff0f","id":3022018106,"id_str":"3022018106","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059662"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993022386176,"id_str":"663727993022386176","text":"RT @Nemo_Suho_: \uc544\ub2c8 \ub2d8\ub35c\uc544,,,\n\ud574\uc2dc\ud0dc\uadf8 \ud655\uc2e4\ud558\uc9c0 \uc54a\uc544\uc694,,,\n\uc5e0\uce74\ud22c\ud45c\uc600\ub2e4\uace0\ud574\uc11c \u314e\u314f\uc2dc\ub294\uac83 \uac19\uc740\ub370 \ud574\uc2dc\ud0dc\uadf8\ub294 \uc5e0\uce74\ud22c\ud45c \u3147\u314f\ub2c8\ub77c\uace0 \uc5e0\ub137\uc774 \uc9c1\uc811 \ub9d0\ud588\uad6c\uc694,,\n\uadf8 \u3145\u3163\uac04\uc5d0 \ub9c8\ub9c8 \ud22c\ud45c\ud558\uc2dc\ub77c\uad6c\uc694,,,,\n\uc9c0\uae08 \ub300\uc0c1 \ub450 \ubd80\ubb38 \ucc28\uc774 \ub9ce\uc774\ub098\uc694,,,","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303515618,"id_str":"3303515618","name":"\uac00\uc124","screen_name":"oohners","location":null,"url":null,"description":"\ub9dd\ud574\uc368","protected":false,"verified":false,"followers_count":36,"friends_count":31,"listed_count":0,"favourites_count":47,"statuses_count":91,"created_at":"Sat Aug 01 16:21:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627514939486253057\/yIUgpPzw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627514939486253057\/yIUgpPzw_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:09 +0000 2015","id":663726273114472452,"id_str":"663726273114472452","text":"\uc544\ub2c8 \ub2d8\ub35c\uc544,,,\n\ud574\uc2dc\ud0dc\uadf8 \ud655\uc2e4\ud558\uc9c0 \uc54a\uc544\uc694,,,\n\uc5e0\uce74\ud22c\ud45c\uc600\ub2e4\uace0\ud574\uc11c \u314e\u314f\uc2dc\ub294\uac83 \uac19\uc740\ub370 \ud574\uc2dc\ud0dc\uadf8\ub294 \uc5e0\uce74\ud22c\ud45c \u3147\u314f\ub2c8\ub77c\uace0 \uc5e0\ub137\uc774 \uc9c1\uc811 \ub9d0\ud588\uad6c\uc694,,\n\uadf8 \u3145\u3163\uac04\uc5d0 \ub9c8\ub9c8 \ud22c\ud45c\ud558\uc2dc\ub77c\uad6c\uc694,,,,\n\uc9c0\uae08 \ub300\uc0c1 \ub450 \ubd80\ubb38 \ucc28\uc774 \ub9ce\uc774\ub098\uc694,,,","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3117065563,"id_str":"3117065563","name":"\ud22c \ub2c8\ubaa8(\u0e51\u275b\u1d17\u275b\u0e51) \ud45c","screen_name":"Nemo_Suho_","location":"\uc5b4\ub355\ud589\ub355 \/ \ub2c8\uc0dd\uac01\u2260\ub0b4\uc0dd\uac01 \uac15\uc694\u3134\u3134 ","url":"http:\/\/ask.fm\/nemo_suho_","description":"\uc5d1\uc18c\ub791 \uc900\uba74\uc774\ub791 \/ RPS \/","protected":false,"verified":false,"followers_count":1137,"friends_count":417,"listed_count":3,"favourites_count":360,"statuses_count":22715,"created_at":"Mon Mar 30 12:12:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611551658519085056\/Y4ep5_pj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611551658519085056\/Y4ep5_pj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117065563\/1439201540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nemo_Suho_","name":"\ud22c \ub2c8\ubaa8(\u0e51\u275b\u1d17\u275b\u0e51) \ud45c","id":3117065563,"id_str":"3117065563","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080059663"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993026572288,"id_str":"663727993026572288","text":"RT @onedirection: #EndOfTheDay \u2013 https:\/\/t.co\/thYSMYaGQB https:\/\/t.co\/wwGGaLOzYP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3856542111,"id_str":"3856542111","name":"never enough","screen_name":"wydhaz","location":"otra baltimore","url":null,"description":"if i could be anything i wanted; i would be the one that you love","protected":false,"verified":false,"followers_count":5152,"friends_count":3071,"listed_count":3,"favourites_count":3948,"statuses_count":17104,"created_at":"Sat Oct 03 23:30:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661389186071699456\/gw2VxceP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661389186071699456\/gw2VxceP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3856542111\/1446522443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:06:14 +0000 2015","id":663689047932579840,"id_str":"663689047932579840","text":"#EndOfTheDay \u2013 https:\/\/t.co\/thYSMYaGQB https:\/\/t.co\/wwGGaLOzYP","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648637,"friends_count":3931,"listed_count":66282,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19545,"favorite_count":27345,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/thYSMYaGQB","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]}],"urls":[{"url":"https:\/\/t.co\/thYSMYaGQB","expanded_url":"http:\/\/madeintheam.com","display_url":"madeintheam.com","indices":[33,56]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[],"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689047932579840,"source_status_id_str":"663689047932579840","source_user_id":209708391,"source_user_id_str":"209708391"}]},"extended_entities":{"media":[{"id":663689017238646785,"id_str":"663689017238646785","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpRHWcAEIKmR.jpg","url":"https:\/\/t.co\/wwGGaLOzYP","display_url":"pic.twitter.com\/wwGGaLOzYP","expanded_url":"http:\/\/twitter.com\/onedirection\/status\/663689047932579840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689047932579840,"source_status_id_str":"663689047932579840","source_user_id":209708391,"source_user_id_str":"209708391"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080059664"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993034944512,"id_str":"663727993034944512","text":"RT @all4b2uty: \u4eca\u65e5\u6765\u3066\u9802\u3044\u305f\u65b9\u3005\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1734926419,"id_str":"1734926419","name":"\uc720\ub098","screen_name":"b2uty95line","location":null,"url":null,"description":"\u6771\u4eac\u306b\u4e0a\u4eac\u3057\u3066\u65e9\u304f\u3082\u4e00\u5e74 \u306a\u3093\u3060\u304b\u3093\u3060\u5730\u5143\u304c\u597d\u304d\u306a95line\uc694\uc12d\u307a\u3093\uff01 \u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":412,"friends_count":320,"listed_count":3,"favourites_count":376,"statuses_count":8916,"created_at":"Fri Sep 06 11:56:23 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108091262\/1dd5ab52f1d469c769195f6c52d155f3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108091262\/1dd5ab52f1d469c769195f6c52d155f3.jpeg","profile_background_tile":true,"profile_link_color":"18A33D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640504896471470080\/QCJL_fmx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640504896471470080\/QCJL_fmx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1734926419\/1445424248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:07:18 +0000 2015","id":663704417607094272,"id_str":"663704417607094272","text":"\u4eca\u65e5\u6765\u3066\u9802\u3044\u305f\u65b9\u3005\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2157135906,"id_str":"2157135906","name":"\uc591\u3147\u3145","screen_name":"all4b2uty","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":317120,"friends_count":0,"listed_count":3589,"favourites_count":1,"statuses_count":2012,"created_at":"Sat Oct 26 16:15:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644390957962555393\/itaUmPtu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644390957962555393\/itaUmPtu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2157135906\/1442462395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1796,"favorite_count":2933,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"all4b2uty","name":"\uc591\u3147\u3145","id":2157135906,"id_str":"2157135906","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001345024,"id_str":"663727993001345024","text":"@JeerawajG 71\u0e1b\u0e35 \u0e1e\u0e23\u0e30\u0e40\u0e17\u0e1e\u0e0d\u0e32\u0e13\u0e21\u0e2b\u0e32\u0e21\u0e38\u0e19\u0e35 \u0e2b\u0e25\u0e27\u0e07\u0e1e\u0e48\u0e2d\u0e18\u0e31\u0e21\u0e21\u0e0a\u0e42\u0e22 \u0e25\u0e49\u0e27\u0e19\u0e1c\u0e25\u0e07\u0e32\u0e19\u0e41\u0e17\u0e19\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e19\u0e31\u0e1a\u0e25\u0e49\u0e32\u0e19","source":"\u003ca href=\"http:\/\/www.dmc.tv\" rel=\"nofollow\"\u003eSocial DMK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727980196139008,"in_reply_to_status_id_str":"663727980196139008","in_reply_to_user_id":2493080329,"in_reply_to_user_id_str":"2493080329","in_reply_to_screen_name":"JeerawajG","user":{"id":110343535,"id_str":"110343535","name":"PomPomPurin","screen_name":"jinsawat072","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":21,"listed_count":1,"favourites_count":1759,"statuses_count":7079,"created_at":"Mon Feb 01 06:11:03 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2701405604\/96a6e241278901c94c0df4bdf437929b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2701405604\/96a6e241278901c94c0df4bdf437929b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JeerawajG","name":"kanokpon","id":2493080329,"id_str":"2493080329","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993005604864,"id_str":"663727993005604864","text":"25\u6b73\u307e\u3067\u751f\u304d\u3066\u305f\u3089\u3060\u3044\u305f\u3044\u6b7b\u306a\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184806364,"id_str":"184806364","name":"\u304c\u3058\uff20\u30ad\u30c3\u30af\u5f37\u3044\u30b3\u30f3\u30d4\u304c\u3093\u3070\u308d\u3046","screen_name":"_GaziGaji","location":"Japan","url":"https:\/\/soundcloud.com\/gazigaji","description":"\u66f2\u4f5c\u3063\u305f\u308aDJ\u3057\u305f\u308a\u3057\u3066\u308b\u3051\u3069\u6599\u7406\u3082\u3059\u308b\u30aa\u30bf\u30af\u3002Hardstyle\u3068\u304bHardcore\u304c\u597d\u304d\u3067\u3059\u3002 \u304a\u4ed5\u4e8b\u306e\u4f9d\u983c\u306fDM\u306b\u3066\u3002\u3084\u308b\u3053\u3068\u3084\u308a\u305f\u3044\u4e8b\u5168\u90e8\u5168\u529b\u3002","protected":false,"verified":false,"followers_count":2296,"friends_count":1954,"listed_count":164,"favourites_count":13038,"statuses_count":128093,"created_at":"Mon Aug 30 14:46:07 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E075AA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/192514783\/tumblr_leoeewzVHb1qfbzxgo1_500.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/192514783\/tumblr_leoeewzVHb1qfbzxgo1_500.jpg","profile_background_tile":true,"profile_link_color":"D6248C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F28EC5","profile_text_color":"ED56ED","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562610645959327745\/ZBeEKa3n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562610645959327745\/ZBeEKa3n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184806364\/1434816100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059659"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993022361600,"id_str":"663727993022361600","text":"@kikinari0604 \u308f\u304b\u3063\u305f\uff01\u4ffa\u3082\u3051\u3044\u3068\u3063\u3066\u547c\u3093\u3067\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727772406165508,"in_reply_to_status_id_str":"663727772406165508","in_reply_to_user_id":3835871294,"in_reply_to_user_id_str":"3835871294","in_reply_to_screen_name":"kikinari0604","user":{"id":2713895696,"id_str":"2713895696","name":"\u3051\u3044\u3068","screen_name":"setsuna35601","location":null,"url":null,"description":"\u306c\u307e\u3057\u3087\u3046 \u30d0\u30b9\u30b1\u90e8\nSince2015\/10\/20\u301cYOSHIKI\u3055\u3093\u3088\u308a\u30d5\u30a9\u30ed\u30fc\u2728\n@10\u4ee3\u904b\u547d\u5171\u540c\u4f53\n #TeamYoshiki \n#hide\u30b0\u30eb\n XJAPAN\u3001L'Arc\u301cen\u301cCiel\u3001LUNASEAetc\nSilentSiren\u3001SCANDAL\u3001NMBetc\nAAA\u2190\u306b\u3057\u3061\u3042\u5bc4\u308a\u306eall","protected":false,"verified":false,"followers_count":687,"friends_count":1006,"listed_count":8,"favourites_count":3887,"statuses_count":2044,"created_at":"Thu Aug 07 06:38:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661153383676379136\/Eikhn_ef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661153383676379136\/Eikhn_ef_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2713895696\/1445347833","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kikinari0604","name":"\u3057\u304a\u308a@AAA\u57a2","id":3835871294,"id_str":"3835871294","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059663"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993005563905,"id_str":"663727993005563905","text":"@kida_rugure \u7c73\u7ce0\uff1f((((","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727923514380289,"in_reply_to_status_id_str":"663727923514380289","in_reply_to_user_id":582549359,"in_reply_to_user_id_str":"582549359","in_reply_to_screen_name":"kida_rugure","user":{"id":3160008494,"id_str":"3160008494","name":"\u9ad8\u5343\u7a42\u3061\u3083\u3093","screen_name":"abec094","location":"\u767d\u9732\u578b\u6cbc\u306e\u5965\u5e95","url":null,"description":"\u30d6\u30eb\u30cd\u30a4\u6cca\u5730\u3067\u63d0\u7763\u3057\u3066\u307e\u3059\u3002\u79d8\u66f8\u8266\u306f\u6642\u96e8\u3002\u8749\u3067\u3082\u30ed\u30ea\u30b3\u30f3\u3067\u3082\u306d\u3047\u3064\u3063\u3066\u3093\u3060\u308d","protected":false,"verified":false,"followers_count":71,"friends_count":89,"listed_count":6,"favourites_count":20427,"statuses_count":34846,"created_at":"Thu Apr 16 16:53:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703277029101568\/KRz6LVWz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703277029101568\/KRz6LVWz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3160008494\/1445860879","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kida_rugure","name":"\u5f71\u591c \u30eb\u30b0\u30ec","id":582549359,"id_str":"582549359","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059659"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018183680,"id_str":"663727993018183680","text":"#\uc628\ub77c\uc778\ubc14\uce74\ub77c\n\n \uc811\uc18d V A T 8 8 8 , C O M\n\n\ub538\n\ub807\n\ud558\n\ub9d0\n\ub73b\n\uc774\n\ub294\n\uc758\n\ucf54\n\uc6b8\n.\n\ub538\n\ub807\n\ud558\n\ub9d0\n\ub73b\n\uc774\n\ub294\n\uc758\n\ucf54\n\uc6b8\n.\n\ub538\n\ub807\n\ud558\n\ub9d0\n\ub73b\n\uc774\n\ub294\n\uc758\n\ucf54\n\uc6b8","source":"\u003ca href=\"http:\/\/newtwt.dothome.co.kr\/tweet03\" rel=\"nofollow\"\u003eexo139\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144411130,"id_str":"144411130","name":"LEE HONG JOON","screen_name":"Omse_HJ","location":null,"url":null,"description":"Musiq, KIA Tigers","protected":false,"verified":false,"followers_count":6,"friends_count":17,"listed_count":0,"favourites_count":0,"statuses_count":5398,"created_at":"Sun May 16 06:17:21 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/903895868\/smile1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/903895868\/smile1_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc628\ub77c\uc778\ubc14\uce74\ub77c","indices":[0,7]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080059662"} +{"delete":{"status":{"id":663727934310621184,"id_str":"663727934310621184","user_id":1831310659,"user_id_str":"1831310659"},"timestamp_ms":"1447080059788"}} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993034944513,"id_str":"663727993034944513","text":"RT @kawl_ys: \u5168\u7136TL\u306e\u6d41\u884c\u308a\u3068\u8da3\u65e8\u9055\u3046\u3082\u306e\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3072\u306d\u304f\u308c\u3067\u3059\u3002\n\uff08\u306a\u3064\u304b\u3057\u3044\u306a\u2026\uff09 https:\/\/t.co\/LThqbs8ZdM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145675698,"id_str":"145675698","name":"kei kurono","screen_name":"kuro_nino","location":"Gantz room","url":null,"description":null,"protected":false,"verified":false,"followers_count":55,"friends_count":369,"listed_count":0,"favourites_count":3269,"statuses_count":23057,"created_at":"Wed May 19 15:47:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464286821778616321\/Y-xSE3wE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464286821778616321\/Y-xSE3wE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145675698\/1399558016","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:15:05 +0000 2015","id":663676177123426304,"id_str":"663676177123426304","text":"\u5168\u7136TL\u306e\u6d41\u884c\u308a\u3068\u8da3\u65e8\u9055\u3046\u3082\u306e\u3092\u30a2\u30c3\u30d7\u3059\u308b\u3072\u306d\u304f\u308c\u3067\u3059\u3002\n\uff08\u306a\u3064\u304b\u3057\u3044\u306a\u2026\uff09 https:\/\/t.co\/LThqbs8ZdM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":849142436,"id_str":"849142436","name":"\u3057\u0b67(.\u2299\u03c9\u2299)\u0b68\u3082","screen_name":"kawl_ys","location":null,"url":null,"description":"\u30d5\u30a9\u30ed\u30fc\/RT\/\u4fdd\u5b58etc\u3044\u308d\u3044\u308d\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3001\u9023\u7d61\u4e0d\u8981\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":14186,"friends_count":171,"listed_count":93,"favourites_count":11629,"statuses_count":54478,"created_at":"Thu Sep 27 12:05:11 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F6F6E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593796150894800896\/6QeC1xia.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593796150894800896\/6QeC1xia.jpg","profile_background_tile":true,"profile_link_color":"FFD71D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662262628094382080\/YD5hwLGH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662262628094382080\/YD5hwLGH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/849142436\/1446483128","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":502,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663676160937558016,"id_str":"663676160937558016","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":772,"h":800,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":621,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663676160937558016,"id_str":"663676160937558016","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":772,"h":800,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":621,"resize":"fit"}}},{"id":663676160925011968,"id_str":"663676160925011968","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87nUkAAWdTc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87nUkAAWdTc.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":788,"h":1024,"resize":"fit"},"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"}}},{"id":663676160950140929,"id_str":"663676160950140929","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87tUAAELQJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87tUAAELQJ9.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"medium":{"w":541,"h":641,"resize":"fit"},"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":541,"h":641,"resize":"fit"}}},{"id":663676160929214464,"id_str":"663676160929214464","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87oUsAAfPBu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87oUsAAfPBu.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":834,"resize":"fit"},"medium":{"w":599,"h":834,"resize":"fit"},"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kawl_ys","name":"\u3057\u0b67(.\u2299\u03c9\u2299)\u0b68\u3082","id":849142436,"id_str":"849142436","indices":[3,11]}],"symbols":[],"media":[{"id":663676160937558016,"id_str":"663676160937558016","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":772,"h":800,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":621,"resize":"fit"}},"source_status_id":663676177123426304,"source_status_id_str":"663676177123426304","source_user_id":849142436,"source_user_id_str":"849142436"}]},"extended_entities":{"media":[{"id":663676160937558016,"id_str":"663676160937558016","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87qUAAAYEqH.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":772,"h":800,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":621,"resize":"fit"}},"source_status_id":663676177123426304,"source_status_id_str":"663676177123426304","source_user_id":849142436,"source_user_id_str":"849142436"},{"id":663676160925011968,"id_str":"663676160925011968","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87nUkAAWdTc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87nUkAAWdTc.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":788,"h":1024,"resize":"fit"},"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"}},"source_status_id":663676177123426304,"source_status_id_str":"663676177123426304","source_user_id":849142436,"source_user_id_str":"849142436"},{"id":663676160950140929,"id_str":"663676160950140929","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87tUAAELQJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87tUAAELQJ9.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"medium":{"w":541,"h":641,"resize":"fit"},"small":{"w":340,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":541,"h":641,"resize":"fit"}},"source_status_id":663676177123426304,"source_status_id_str":"663676177123426304","source_user_id":849142436,"source_user_id_str":"849142436"},{"id":663676160929214464,"id_str":"663676160929214464","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZ87oUsAAfPBu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZ87oUsAAfPBu.jpg","url":"https:\/\/t.co\/LThqbs8ZdM","display_url":"pic.twitter.com\/LThqbs8ZdM","expanded_url":"http:\/\/twitter.com\/kawl_ys\/status\/663676177123426304\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":834,"resize":"fit"},"medium":{"w":599,"h":834,"resize":"fit"},"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663676177123426304,"source_status_id_str":"663676177123426304","source_user_id":849142436,"source_user_id_str":"849142436"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993014108160,"id_str":"663727993014108160","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244961189,"id_str":"3244961189","name":"Gruffudd Evequot","screen_name":"mibyxuwekyhe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":145,"friends_count":124,"listed_count":10,"favourites_count":15575,"statuses_count":16129,"created_at":"Sun May 10 15:11:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643572793259327488\/fvSKSBPt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643572793259327488\/fvSKSBPt_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":207,"favorite_count":127,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059661"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993013997568,"id_str":"663727993013997568","text":"\u5317\u5ddd\u666f\u5b50\u3068DAIGO\u306e\u71b1\u611b\u306e\u88cf\u306b\u5c71\u4e0b\u667a\u4e45\u304c\u5b58\u5728\u3059\u308b\uff01\uff1f\u305d\u306e\u7406\u7531\u3068\u306f ..https:\/\/t.co\/nIHhVzUriw","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3311671926,"id_str":"3311671926","name":"\u25c7\u25c6\u25c7\u4e2d\u4e38\u96c4\u4e00\u25c7\u25c6\u25c7","screen_name":"NAKAMA327XXX","location":null,"url":null,"description":"\u4e2d\u4e38\u96c4\u4e00\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059\u3002\u90fd\u5185\u5728\u4f4f\u306eOL26\u6b73\u3002H\u5927\u597d\u304d\u3002\u5f7c\u6c0f\u30fb\u30bb\u30d5\u30ec\u52df\u96c6\u4e2d\u2665FB\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":48,"friends_count":121,"listed_count":0,"favourites_count":0,"statuses_count":12304,"created_at":"Mon Aug 10 18:29:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631139145683853312\/gB_AYBrj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631139145683853312\/gB_AYBrj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311671926\/1439310289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nIHhVzUriw","expanded_url":"http:\/\/lovejony03.seesaa.net\/","display_url":"lovejony03.seesaa.net","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059661"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997150720,"id_str":"663727992997150720","text":"\u5f7c\u5973\u3044\u306a\u3044\u4eba \u5373\u767b\u9332\u3002\u3000\u3000\u3000\u4ee5\u4e0a \u21d2\u3000https:\/\/t.co\/gFLiIaby8I \u672c\u5f53\u306b\u6025\u3052\uff01\u4ed6\u306e\u5974\u3089\u306b\u6301\u3063\u3066\u304b\u308c\u308b\u305e https:\/\/t.co\/QZWKqJwXNx\n\n\uff9f\uff61O\uff61\uff9f\uff61O\uff61\uff9f\uff61 s8p","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3425924412,"id_str":"3425924412","name":"\u5185\u6751 \u83dc\u3005\u7f8e","screen_name":"uchimura_n_f8zv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":650,"listed_count":0,"favourites_count":0,"statuses_count":7463,"created_at":"Wed Sep 02 12:58:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gFLiIaby8I","expanded_url":"http:\/\/goo.gl\/ciYFei","display_url":"goo.gl\/ciYFei","indices":[19,42]}],"user_mentions":[],"symbols":[],"media":[{"id":568321580694900736,"id_str":"568321580694900736","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/B-MVd2-CEAAEI4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-MVd2-CEAAEI4F.jpg","url":"https:\/\/t.co\/QZWKqJwXNx","display_url":"pic.twitter.com\/QZWKqJwXNx","expanded_url":"http:\/\/twitter.com\/deai_01_mori\/status\/568321581472067584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":727,"resize":"fit"},"medium":{"w":600,"h":426,"resize":"fit"}},"source_status_id":568321581472067584,"source_status_id_str":"568321581472067584","source_user_id":2998944324,"source_user_id_str":"2998944324"}]},"extended_entities":{"media":[{"id":568321580694900736,"id_str":"568321580694900736","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/B-MVd2-CEAAEI4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B-MVd2-CEAAEI4F.jpg","url":"https:\/\/t.co\/QZWKqJwXNx","display_url":"pic.twitter.com\/QZWKqJwXNx","expanded_url":"http:\/\/twitter.com\/deai_01_mori\/status\/568321581472067584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":727,"resize":"fit"},"medium":{"w":600,"h":426,"resize":"fit"}},"source_status_id":568321581472067584,"source_status_id_str":"568321581472067584","source_user_id":2998944324,"source_user_id_str":"2998944324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993034936321,"id_str":"663727993034936321","text":"RT @5DaysFor1D: Take Me Home was released exactly three years ago today! https:\/\/t.co\/QLTyTUcExr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300803356,"id_str":"2300803356","name":"5 DAYS UNTIL MITAM","screen_name":"lovatics221","location":"PRE ORDER MADE IN THE A.M.","url":"http:\/\/ama.votenow.tv\/","description":"|1D|Lana Del Rey|Melanie Martinez|#MadeInTheAM -#WeAreMadeInTheAM \u2604","protected":false,"verified":false,"followers_count":3559,"friends_count":3937,"listed_count":14,"favourites_count":7064,"statuses_count":77532,"created_at":"Mon Jan 20 05:11:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663189544007680000\/epdC5-WP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663189544007680000\/epdC5-WP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300803356\/1446421988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:08:17 +0000 2015","id":663689562913312769,"id_str":"663689562913312769","text":"Take Me Home was released exactly three years ago today! https:\/\/t.co\/QLTyTUcExr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1603242559,"id_str":"1603242559","name":"5DaysFor1D","screen_name":"5DaysFor1D","location":"Liam\/4","url":"https:\/\/twitter.com\/5daysfor1d\/status\/624750387233357824","description":"Official #5DaysFor1D project account !!","protected":false,"verified":false,"followers_count":29848,"friends_count":81,"listed_count":67,"favourites_count":3260,"statuses_count":9153,"created_at":"Thu Jul 18 11:23:39 +0000 2013","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487480913471606785\/lqxf57HG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487480913471606785\/lqxf57HG.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661466005852413952\/bpLQmz5p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661466005852413952\/bpLQmz5p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1603242559\/1437268159","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":226,"favorite_count":149,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663689537210548225,"id_str":"663689537210548225","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","url":"https:\/\/t.co\/QLTyTUcExr","display_url":"pic.twitter.com\/QLTyTUcExr","expanded_url":"http:\/\/twitter.com\/5DaysFor1D\/status\/663689562913312769\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689537210548225,"id_str":"663689537210548225","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","url":"https:\/\/t.co\/QLTyTUcExr","display_url":"pic.twitter.com\/QLTyTUcExr","expanded_url":"http:\/\/twitter.com\/5DaysFor1D\/status\/663689562913312769\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5DaysFor1D","name":"5DaysFor1D","id":1603242559,"id_str":"1603242559","indices":[3,14]}],"symbols":[],"media":[{"id":663689537210548225,"id_str":"663689537210548225","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","url":"https:\/\/t.co\/QLTyTUcExr","display_url":"pic.twitter.com\/QLTyTUcExr","expanded_url":"http:\/\/twitter.com\/5DaysFor1D\/status\/663689562913312769\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689562913312769,"source_status_id_str":"663689562913312769","source_user_id":1603242559,"source_user_id_str":"1603242559"}]},"extended_entities":{"media":[{"id":663689537210548225,"id_str":"663689537210548225","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmHiKUAAEFsrS.jpg","url":"https:\/\/t.co\/QLTyTUcExr","display_url":"pic.twitter.com\/QLTyTUcExr","expanded_url":"http:\/\/twitter.com\/5DaysFor1D\/status\/663689562913312769\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663689562913312769,"source_status_id_str":"663689562913312769","source_user_id":1603242559,"source_user_id_str":"1603242559"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059666"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997175296,"id_str":"663727992997175296","text":"Ini malam kita layan Dil To Pagal Hai dkt Astro \ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264155517,"id_str":"264155517","name":"\u0646\u0648\u0631 \u0627\u0644\u0647\u062f\u0627\u064a\u0629","screen_name":"hdyhmzln","location":"Ipoh, MY","url":null,"description":"21; Malaysia. Bachelor in Education. Pluviophile.","protected":false,"verified":false,"followers_count":750,"friends_count":734,"listed_count":2,"favourites_count":1479,"statuses_count":61672,"created_at":"Fri Mar 11 12:37:56 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000076301558\/655462ce310055c4c6759ffaf5ac0234.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000076301558\/655462ce310055c4c6759ffaf5ac0234.jpeg","profile_background_tile":true,"profile_link_color":"F551B1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662100152153341952\/IH-C6EfO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662100152153341952\/IH-C6EfO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264155517\/1447033627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993013964800,"id_str":"663727993013964800","text":"\u301023:40\u3011\u3000\u30a8\u30bf\u30d5\u30a9\u8ca9\u58f2\u518d\u958b\u3057\u307e\u3057\u305f\u3002300\u57a2 \/ 2000\u5186\u3000800\u57a2 \/ 5000\u5186\u30002000\u57a2 \/ 10000\u5186\u30005000\u57a2 \/ 20000\u5186\u3000\u51cd\u7d50\u9632\u6b62\u306e\u305f\u3081\u3001\u304a\u4e00\u4eba\u69d8\u306b\u3064\u304d10000\u57a2\u307e\u3067\u3068\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244149020,"id_str":"3244149020","name":"\u30df\u30c8\u30b9\uff20\u30a8\u30bf\u30d5\u30a9\u8ca9\u58f2","screen_name":"EtafoHanbai","location":null,"url":null,"description":"\u30a8\u30bf\u30d5\u30a9\u8ca9\u58f2\u518d\u958b\u3057\u307e\u3057\u305f\u3002300\u57a2 \/ 2000\u5186\u3000800\u57a2 \/ 5000\u5186\u30002000\u57a2 \/ 10000\u5186\u30005000\u57a2 \/ 20000\u5186\u3000\u51cd\u7d50\u9632\u6b62\u306e\u305f\u3081\u3001\u304a\u4e00\u4eba\u69d8\u306b\u3064\u304d10000\u57a2\u307e\u3067\u3068\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":38192,"friends_count":757,"listed_count":8,"favourites_count":68405,"statuses_count":8984,"created_at":"Sat Jun 13 11:30:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609684741319585792\/Hs86xNey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609684741319585792\/Hs86xNey_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059661"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993018159105,"id_str":"663727993018159105","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/wFHmEfrZ9K","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":377646547,"id_str":"377646547","name":"littleSlut xo","screen_name":"fattie_arse","location":"wicklow","url":null,"description":"#TEAMFOLLOWBACK","protected":false,"verified":false,"followers_count":248,"friends_count":476,"listed_count":1,"favourites_count":3,"statuses_count":7205,"created_at":"Wed Sep 21 22:12:01 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807256362\/7c79964b3f42e55c6c6abed0c0908862.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807256362\/7c79964b3f42e55c6c6abed0c0908862.png","profile_background_tile":true,"profile_link_color":"FFA314","profile_sidebar_border_color":"FF0066","profile_sidebar_fill_color":"FF523D","profile_text_color":"FF7A29","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000535560876\/f5d5e24db134bfe5ca362ba5a50216e7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000535560876\/f5d5e24db134bfe5ca362ba5a50216e7_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wFHmEfrZ9K","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059662"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993013972992,"id_str":"663727993013972992","text":"@sigure_yudachi @Amane86_NS1 \u5b89\u5168\u78ba\u4fdd\u306e\u305f\u3081\u30d8\u30eb\u30e1\u30c3\u30c8\u304b\u3076\u308a\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727744505647104,"in_reply_to_status_id_str":"663727744505647104","in_reply_to_user_id":3248719758,"in_reply_to_user_id_str":"3248719758","in_reply_to_screen_name":"sigure_yudachi","user":{"id":2982884634,"id_str":"2982884634","name":"\u9678","screen_name":"GSXrikuR","location":"\u65e5\u672c \u5948\u826f\u770c","url":null,"description":"\u30d0\u30f3\u30c7\u30a3\u30c3\u30c8250\u2192\u30b0\u30e9\u30c7\u30a3\u30a6\u30b9400\u3068\u30a2\u30c9\u30ec\u30b9V125S\u4e57\u308a \u91dd\u3001\u5ba4\u751f\u3001\u5929\u7406\u30c0\u30e0","protected":false,"verified":false,"followers_count":264,"friends_count":290,"listed_count":3,"favourites_count":1689,"statuses_count":3582,"created_at":"Wed Jan 14 14:57:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661417066189094912\/zZ-vW0Jf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661417066189094912\/zZ-vW0Jf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2982884634\/1445325788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sigure_yudachi","name":"Kurumatani_Nao","id":3248719758,"id_str":"3248719758","indices":[0,15]},{"screen_name":"Amane86_NS1","name":"\u5929\u97f3\/\u6b21\u306e\u30d0\u30a4\u30af\u691c\u8a0e\u4e2d?","id":3254669066,"id_str":"3254669066","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080059661"} +{"delete":{"status":{"id":661229525812932608,"id_str":"661229525812932608","user_id":21483915,"user_id_str":"21483915"},"timestamp_ms":"1447080059734"}} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993009758208,"id_str":"663727993009758208","text":"RT @RaGoharShahi: #QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2340856508,"id_str":"2340856508","name":"Uzair Aslam","screen_name":"UzairAslam14","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":19,"listed_count":20,"favourites_count":146,"statuses_count":22571,"created_at":"Wed Feb 12 19:53:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433691028478889984\/gvZKu_rp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433691028478889984\/gvZKu_rp_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 00:01:21 +0000 2015","id":660969909892071424,"id_str":"660969909892071424","text":"#QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t.co\/3vQqsiguFU","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":83,"favorite_count":7,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[18,32]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[139,140]}],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059660"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993001517057,"id_str":"663727993001517057","text":"RT @myboycrush: MY CHILDHOOD IS COMPLETE https:\/\/t.co\/IxNABH1uGW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558707555,"id_str":"558707555","name":"lunosky \u2b50\ufe0f","screen_name":"liveforwrite","location":"Poland","url":null,"description":"Workout!Dont worry be happy \u263a Jesli masz jakis problem, napisz do mnie:) \/ #Directioner #JB #DL #ES #SG #PLL #ZQUAD https:\/\/t.co\/65TVVisF0y ---ZAPRASZAM","protected":false,"verified":false,"followers_count":2229,"friends_count":2224,"listed_count":6,"favourites_count":11105,"statuses_count":30743,"created_at":"Fri Apr 20 15:08:32 +0000 2012","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553667218089586688\/HC57SMNG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553667218089586688\/HC57SMNG.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638703751864418304\/btYcHseD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638703751864418304\/btYcHseD_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558707555\/1441113844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:28:11 +0000 2015","id":663468079599357953,"id_str":"663468079599357953","text":"MY CHILDHOOD IS COMPLETE https:\/\/t.co\/IxNABH1uGW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726063372,"id_str":"726063372","name":"\ufe0fBoy Crushes","screen_name":"myboycrush","location":"original account","url":null,"description":"blessing your timeline","protected":false,"verified":false,"followers_count":137365,"friends_count":37,"listed_count":270,"favourites_count":1282,"statuses_count":2030,"created_at":"Mon Jul 30 13:27:59 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652480106372337666\/LXcMo8WP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652480106372337666\/LXcMo8WP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726063372\/1437499791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5078,"favorite_count":4650,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663468075245662208,"id_str":"663468075245662208","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663468075245662208,"id_str":"663468075245662208","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}},{"id":663468075249831936,"id_str":"663468075249831936","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswEUEAAj9m7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswEUEAAj9m7.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":359,"h":597,"resize":"fit"},"medium":{"w":359,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"myboycrush","name":"\ufe0fBoy Crushes","id":726063372,"id_str":"726063372","indices":[3,14]}],"symbols":[],"media":[{"id":663468075245662208,"id_str":"663468075245662208","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663468079599357953,"source_status_id_str":"663468079599357953","source_user_id":726063372,"source_user_id_str":"726063372"}]},"extended_entities":{"media":[{"id":663468075245662208,"id_str":"663468075245662208","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswDUcAA4WHd.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663468079599357953,"source_status_id_str":"663468079599357953","source_user_id":726063372,"source_user_id_str":"726063372"},{"id":663468075249831936,"id_str":"663468075249831936","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcswEUEAAj9m7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcswEUEAAj9m7.jpg","url":"https:\/\/t.co\/IxNABH1uGW","display_url":"pic.twitter.com\/IxNABH1uGW","expanded_url":"http:\/\/twitter.com\/myboycrush\/status\/663468079599357953\/photo\/1","type":"photo","sizes":{"large":{"w":359,"h":597,"resize":"fit"},"medium":{"w":359,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}},"source_status_id":663468079599357953,"source_status_id_str":"663468079599357953","source_user_id":726063372,"source_user_id_str":"726063372"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080059658"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997326848,"id_str":"663727992997326848","text":"RT @confidei_: Justin com vergonha meu deus que fofo, d\u00e1 vontade de abra\u00e7a ele e nunca mais solta #4DaysTillPURPOSE https:\/\/t.co\/eHsSJB0SIP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2227524121,"id_str":"2227524121","name":"robertaPURPOSE","screen_name":"LYLASBELIEBER","location":"im here for jb & 5h","url":"https:\/\/twitter.com\/MadisonElleBeer\/status\/647964731131621376","description":"OUR New album PURPOSE out Nov 13","protected":false,"verified":false,"followers_count":12322,"friends_count":9894,"listed_count":91,"favourites_count":298,"statuses_count":60848,"created_at":"Tue Dec 03 01:24:37 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644645527523590144\/H_CRUHLq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644645527523590144\/H_CRUHLq.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663447869194567680\/LJvUevtu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663447869194567680\/LJvUevtu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2227524121\/1446939055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:01:09 +0000 2015","id":663717967725780992,"id_str":"663717967725780992","text":"Justin com vergonha meu deus que fofo, d\u00e1 vontade de abra\u00e7a ele e nunca mais solta #4DaysTillPURPOSE https:\/\/t.co\/eHsSJB0SIP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2688283363,"id_str":"2688283363","name":"Maah Purpose","screen_name":"confidei_","location":"Bieber + 21 follows ","url":"https:\/\/twitter.com\/ddlovato\/status\/500041251937583106","description":"My world believe in a PURPOSE","protected":false,"verified":false,"followers_count":23171,"friends_count":22542,"listed_count":59,"favourites_count":10904,"statuses_count":69665,"created_at":"Mon Jul 28 20:03:27 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"836FFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661187228060811264\/DKSFMjoI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661187228060811264\/DKSFMjoI.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711483944116224\/FazC7WwW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711483944116224\/FazC7WwW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2688283363\/1447076170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":7,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[83,100]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717964529692673,"id_str":"663717964529692673","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717964529692673,"id_str":"663717964529692673","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}}},{"id":663717897764741120,"id_str":"663717897764741120","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_6VdWIAAFulR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_6VdWIAAFulR.jpg","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663717918685929472,"id_str":"663717918685929472","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_7jZWIAAWhme.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_7jZWIAAWhme.jpg","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663717941771436032,"id_str":"663717941771436032","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_85ZXAAAHF9T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_85ZXAAAHF9T.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[98,115]}],"urls":[],"user_mentions":[{"screen_name":"confidei_","name":"Maah Purpose","id":2688283363,"id_str":"2688283363","indices":[3,13]}],"symbols":[],"media":[{"id":663717964529692673,"id_str":"663717964529692673","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}},"source_status_id":663717967725780992,"source_status_id_str":"663717967725780992","source_user_id":2688283363,"source_user_id_str":"2688283363"}]},"extended_entities":{"media":[{"id":663717964529692673,"id_str":"663717964529692673","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_-OLWcAEh1qZ.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}},"source_status_id":663717967725780992,"source_status_id_str":"663717967725780992","source_user_id":2688283363,"source_user_id_str":"2688283363"},{"id":663717897764741120,"id_str":"663717897764741120","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_6VdWIAAFulR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_6VdWIAAFulR.jpg","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663717967725780992,"source_status_id_str":"663717967725780992","source_user_id":2688283363,"source_user_id_str":"2688283363"},{"id":663717918685929472,"id_str":"663717918685929472","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_7jZWIAAWhme.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_7jZWIAAWhme.jpg","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663717967725780992,"source_status_id_str":"663717967725780992","source_user_id":2688283363,"source_user_id_str":"2688283363"},{"id":663717941771436032,"id_str":"663717941771436032","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_85ZXAAAHF9T.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_85ZXAAAHF9T.png","url":"https:\/\/t.co\/eHsSJB0SIP","display_url":"pic.twitter.com\/eHsSJB0SIP","expanded_url":"http:\/\/twitter.com\/confidei_\/status\/663717967725780992\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":600,"h":338,"resize":"fit"}},"source_status_id":663717967725780992,"source_status_id_str":"663717967725780992","source_user_id":2688283363,"source_user_id_str":"2688283363"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080059657"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993026547712,"id_str":"663727993026547712","text":"@Both_ZELO96 \u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e08\u0e30\u0e40\u0e16\u0e35\u0e22\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661601496778211329,"in_reply_to_status_id_str":"661601496778211329","in_reply_to_user_id":1341047995,"in_reply_to_user_id_str":"1341047995","in_reply_to_screen_name":"Both_ZELO96","user":{"id":1330964940,"id_str":"1330964940","name":"\u0e1e\u0e35\u0e48\u0e42\u0e04\u0e48\u0e27","screen_name":"ZICO_MONke","location":"@ZICO92","url":null,"description":"\u0e16\u0e36\u0e07\u0e40\u0e23\u0e32\u0e08\u0e30\u0e2b\u0e32\u0e22\u0e1a\u0e48\u0e2d\u0e22\u0e41\u0e15\u0e48\u0e44\u0e14\u0e49\u0e42\u0e1b\u0e23\u0e14\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e40\u0e23\u0e32\u0e14\u0e49\u0e27\u0e22..\u0e19\u0e30 *\u0e19\u0e49\u0e33\u0e15\u0e32\u0e44\u0e2b\u0e25\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e32\u0e22\u0e19\u0e49\u0e33\u0e42\u0e0a\u0e04\u0e14\u0e35\u0e21\u0e32\u0e1b\u0e32\u0e01\u0e25\u0e48\u0e32\u0e07\u0e23\u0e2d\u0e07\u0e23\u0e31\u0e1a* | \u0e1a\u0e2d\u0e17 #MONke","protected":false,"verified":false,"followers_count":147,"friends_count":64,"listed_count":1,"favourites_count":24,"statuses_count":6819,"created_at":"Sat Apr 06 07:42:51 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFFFFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727817079713792\/_YfnFUwi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727817079713792\/_YfnFUwi_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Both_ZELO96","name":"\u0e08\u0e38\u0e19\u0e2e\u0e07\u0e40\u0e14\u0e47\u0e01\u0e41\u0e01\u0e4a\u0e07\u265b","id":1341047995,"id_str":"1341047995","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080059664"} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727993014124544,"id_str":"663727993014124544","text":"Hoy por la ma\u00f1ana @franmorchio con @mauriciomacri en su visita a Parana. #MacriPresidente https:\/\/t.co\/p0JhsqmFNO","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906628712,"id_str":"2906628712","name":"PRO Gualeguay","screen_name":"GualeguayPRO","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":363,"friends_count":931,"listed_count":1,"favourites_count":401,"statuses_count":682,"created_at":"Fri Dec 05 17:28:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645656287963914241\/SQzhKjR3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645656287963914241\/SQzhKjR3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906628712\/1442771619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MacriPresidente","indices":[73,89]}],"urls":[],"user_mentions":[{"screen_name":"FranMorchio","name":"Francisco Morchio","id":3359109993,"id_str":"3359109993","indices":[18,30]},{"screen_name":"mauriciomacri","name":"Mauricio Macri","id":24900072,"id_str":"24900072","indices":[35,49]}],"symbols":[],"media":[{"id":663727989889323008,"id_str":"663727989889323008","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFxjWUAAzGfW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFxjWUAAzGfW.jpg","url":"https:\/\/t.co\/p0JhsqmFNO","display_url":"pic.twitter.com\/p0JhsqmFNO","expanded_url":"http:\/\/twitter.com\/GualeguayPRO\/status\/663727993014124544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":484,"resize":"fit"},"medium":{"w":600,"h":854,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":864,"h":1231,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727989889323008,"id_str":"663727989889323008","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFxjWUAAzGfW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFxjWUAAzGfW.jpg","url":"https:\/\/t.co\/p0JhsqmFNO","display_url":"pic.twitter.com\/p0JhsqmFNO","expanded_url":"http:\/\/twitter.com\/GualeguayPRO\/status\/663727993014124544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":484,"resize":"fit"},"medium":{"w":600,"h":854,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":864,"h":1231,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080059661"} +{"delete":{"status":{"id":663727657465610240,"id_str":"663727657465610240","user_id":321965578,"user_id_str":"321965578"},"timestamp_ms":"1447080059822"}} +{"delete":{"status":{"id":663727233832493056,"id_str":"663727233832493056","user_id":3076440258,"user_id_str":"3076440258"},"timestamp_ms":"1447080059932"}} +{"delete":{"status":{"id":663676533110939652,"id_str":"663676533110939652","user_id":3235722605,"user_id_str":"3235722605"},"timestamp_ms":"1447080059971"}} +{"delete":{"status":{"id":662922032338833408,"id_str":"662922032338833408","user_id":2878597794,"user_id_str":"2878597794"},"timestamp_ms":"1447080060148"}} +{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727992997179393,"id_str":"663727992997179393","text":"@pey_4600 \uc6cc\ud6c4! https:\/\/t.co\/mBXprUH8LT","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727722615566339,"in_reply_to_status_id_str":"663727722615566339","in_reply_to_user_id":355569431,"in_reply_to_user_id_str":"355569431","in_reply_to_screen_name":"pey_4600","user":{"id":2287322996,"id_str":"2287322996","name":"\u25c0\uc559\ube75\ub2d8\uc758 \uba4b\uc9c4 \uae00\uc528\ub97c \ubd10 \uc918!","screen_name":"zeyan_36","location":"\uc870\uae08 \uc2ac\ud50c \ub54c\uba74, \uc790\uc2e0\uc758 \ud488\uc5d0\uc11c.","url":null,"description":"Flabbit * 980503 \/\/ Fub Free \uadf8\ub9ac\uace0 \uc2f6\uc740\uac70 \uadf8\ub9bd\ub2c8\ub2e4~\n\uc624\uc18c\ub9c8\uce20\uc0c1 \uacc4\uc815 (@zeyan_matu)","protected":false,"verified":false,"followers_count":148,"friends_count":218,"listed_count":1,"favourites_count":2410,"statuses_count":13552,"created_at":"Sat Jan 11 23:36:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEAD0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581052659794202624\/Tb6f7maV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581052659794202624\/Tb6f7maV.png","profile_background_tile":false,"profile_link_color":"FF8080","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663630666324512768\/Lt4p704D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663630666324512768\/Lt4p704D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2287322996\/1446638455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pey_4600","name":"\uac16\ub2d8","id":355569431,"id_str":"355569431","indices":[0,9]}],"symbols":[],"media":[{"id":663727991306997761,"id_str":"663727991306997761","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJF21WUAEvbeJ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJF21WUAEvbeJ.png","url":"https:\/\/t.co\/mBXprUH8LT","display_url":"pic.twitter.com\/mBXprUH8LT","expanded_url":"http:\/\/twitter.com\/zeyan_36\/status\/663727992997179393\/photo\/1","type":"photo","sizes":{"medium":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":299,"h":168,"resize":"fit"},"small":{"w":299,"h":168,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727991306997761,"id_str":"663727991306997761","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJF21WUAEvbeJ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJF21WUAEvbeJ.png","url":"https:\/\/t.co\/mBXprUH8LT","display_url":"pic.twitter.com\/mBXprUH8LT","expanded_url":"http:\/\/twitter.com\/zeyan_36\/status\/663727992997179393\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":299,"h":168,"resize":"fit"},"small":{"w":299,"h":168,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJF21WUAEvbeJ.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080059657"} +{"delete":{"status":{"id":663639082170458112,"id_str":"663639082170458112","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080060435"}} +{"delete":{"status":{"id":525761689698832384,"id_str":"525761689698832384","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080060457"}} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212602369,"id_str":"663727997212602369","text":"RT @_annylize: @brubys14 senta l\u00e1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877157835,"id_str":"2877157835","name":"Nabru ","screen_name":"brubys14","location":" ","url":null,"description":"Quero estar cntg e n\u00e3o importa o lugar \u2764","protected":false,"verified":false,"followers_count":202,"friends_count":204,"listed_count":0,"favourites_count":4378,"statuses_count":7166,"created_at":"Fri Nov 14 22:53:51 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661654173646258176\/O0K5xiH8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661654173646258176\/O0K5xiH8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877157835\/1446776250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727887560941568,"id_str":"663727887560941568","text":"@brubys14 senta l\u00e1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727756077899782,"in_reply_to_status_id_str":"663727756077899782","in_reply_to_user_id":2877157835,"in_reply_to_user_id_str":"2877157835","in_reply_to_screen_name":"brubys14","user":{"id":2830052938,"id_str":"2830052938","name":"Anny\ufe0f","screen_name":"_annylize","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":196,"friends_count":128,"listed_count":0,"favourites_count":3590,"statuses_count":7170,"created_at":"Tue Oct 14 18:09:55 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569235937280815104\/6u5O8B7r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569235937280815104\/6u5O8B7r.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663467218299133952\/5FKGCTTe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663467218299133952\/5FKGCTTe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830052938\/1447017884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brubys14","name":"Nabru ","id":2877157835,"id_str":"2877157835","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_annylize","name":"Anny\ufe0f","id":2830052938,"id_str":"2830052938","indices":[3,13]},{"screen_name":"brubys14","name":"Nabru ","id":2877157835,"id_str":"2877157835","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997208436740,"id_str":"663727997208436740","text":"RT @PoyrazzKarayel_: Ad\u0131n\u0131 duydu\u011fum an akl\u0131m gidiyor.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3018818289,"id_str":"3018818289","name":"Melike \u00dcn","screen_name":"mlikeun","location":"\u00c7anakkale","url":"https:\/\/instagram.com\/mlikeun\/","description":"16 YA\u015eINDA B\u0130R \u00d6\u011eRENC\u0130","protected":false,"verified":false,"followers_count":270,"friends_count":185,"listed_count":0,"favourites_count":693,"statuses_count":490,"created_at":"Wed Feb 04 22:23:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662996484577738752\/uQy-hstt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662996484577738752\/uQy-hstt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3018818289\/1447017824","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:01:38 +0000 2015","id":663687888790515713,"id_str":"663687888790515713","text":"Ad\u0131n\u0131 duydu\u011fum an akl\u0131m gidiyor.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3691723522,"id_str":"3691723522","name":"Poyraz Karayel","screen_name":"PoyrazzKarayel_","location":null,"url":null,"description":"Bazen Poyraz, Bazen Karayel","protected":false,"verified":false,"followers_count":24374,"friends_count":6,"listed_count":7,"favourites_count":1,"statuses_count":132,"created_at":"Fri Sep 18 01:50:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660041177773826048\/XalCYbRp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660041177773826048\/XalCYbRp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3691723522\/1446201054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":200,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PoyrazzKarayel_","name":"Poyraz Karayel","id":3691723522,"id_str":"3691723522","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080060661"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997221019648,"id_str":"663727997221019648","text":"RT @Gwenda: You guys, @timhanley01's book about the history of Lois Lane is so fabulously smart and gripping. #airplanereading","source":"\u003ca href=\"https:\/\/launchpad.net\/polly\" rel=\"nofollow\"\u003ePolly\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59827358,"id_str":"59827358","name":"Baudy Hallee","screen_name":"baudyhallee","location":"Midwest cowtown","url":"http:\/\/baudyhallee.wordpress.com","description":"Follower of Yeshua. what you see is what you get. Write on the side. Enjoy Superman, Smallville, movies, tv, & yacking w my friends #LoisCorps","protected":false,"verified":false,"followers_count":606,"friends_count":624,"listed_count":40,"favourites_count":94,"statuses_count":131755,"created_at":"Fri Jul 24 16:42:12 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/236933079\/netwit.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/236933079\/netwit.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2614311625\/ns5c2jr5x2s2vl77s6tu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2614311625\/ns5c2jr5x2s2vl77s6tu_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:55:06 +0000 2015","id":663565449578291200,"id_str":"663565449578291200","text":"You guys, @timhanley01's book about the history of Lois Lane is so fabulously smart and gripping. #airplanereading","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243863,"id_str":"243863","name":"Gwenda Bond","screen_name":"Gwenda","location":"Lexington, Ky.","url":"http:\/\/www.gwendabond.com","description":"Author: Lois Lane: Fallout, Girl on a Wire, and others. Next up are Lois Lane: Double Down and Girl in the Shadows in 2016. Wise-cracking dame.","protected":false,"verified":false,"followers_count":6014,"friends_count":740,"listed_count":373,"favourites_count":25054,"statuses_count":75760,"created_at":"Mon Dec 25 15:30:40 +0000 2006","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457174815133007872\/euUktoKx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457174815133007872\/euUktoKx.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630868226218393601\/05ddOys1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630868226218393601\/05ddOys1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243863\/1428197326","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"entities":{"hashtags":[{"text":"airplanereading","indices":[98,114]}],"urls":[],"user_mentions":[{"screen_name":"timhanley01","name":"Tim Hanley","id":368762147,"id_str":"368762147","indices":[10,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"airplanereading","indices":[110,126]}],"urls":[],"user_mentions":[{"screen_name":"Gwenda","name":"Gwenda Bond","id":243863,"id_str":"243863","indices":[3,10]},{"screen_name":"timhanley01","name":"Tim Hanley","id":368762147,"id_str":"368762147","indices":[22,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997204242432,"id_str":"663727997204242432","text":"RT @martinspfvrr: @roodrigoft e eu na escola","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763661655,"id_str":"2763661655","name":"diguinho","screen_name":"roodrigoft","location":"In your mind","url":null,"description":"since 99|| snapchat: Rodrigooft || instagram: Roodrigoft","protected":false,"verified":false,"followers_count":788,"friends_count":127,"listed_count":0,"favourites_count":42909,"statuses_count":22437,"created_at":"Sun Sep 07 03:20:51 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660946511178686466\/dD14G59B.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660946511178686466\/dD14G59B.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663381741390929920\/obR8gkT2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663381741390929920\/obR8gkT2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763661655\/1446997505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946817888256,"id_str":"663727946817888256","text":"@roodrigoft e eu na escola","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727888588513280,"in_reply_to_status_id_str":"663727888588513280","in_reply_to_user_id":2763661655,"in_reply_to_user_id_str":"2763661655","in_reply_to_screen_name":"roodrigoft","user":{"id":379442996,"id_str":"379442996","name":"carol","screen_name":"martinspfvrr","location":"Rj, br.","url":null,"description":"malhar \u00e9 vida","protected":false,"verified":false,"followers_count":1535,"friends_count":1209,"listed_count":2,"favourites_count":3226,"statuses_count":43809,"created_at":"Sun Sep 25 00:03:44 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459090919027781633\/4JnE6pHI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459090919027781633\/4JnE6pHI.jpeg","profile_background_tile":true,"profile_link_color":"FF00E1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"040405","profile_text_color":"722ED9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659501342306795521\/EBotT142_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659501342306795521\/EBotT142_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379442996\/1443249733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"roodrigoft","name":"diguinho","id":2763661655,"id_str":"2763661655","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"martinspfvrr","name":"carol","id":379442996,"id_str":"379442996","indices":[3,16]},{"screen_name":"roodrigoft","name":"diguinho","id":2763661655,"id_str":"2763661655","indices":[18,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080060660"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997221011456,"id_str":"663727997221011456","text":"RT @Michael5SOS: envy https:\/\/t.co\/vKCRUgZwb8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":464953245,"id_str":"464953245","name":"THANR YI BEAU","screen_name":"MICHAELFTJAl","location":"JY,B,L\/5 Janos ","url":"https:\/\/twitter.com\/myuniversemgc\/status\/553337871093202945","description":"balls deep into 5sos and stuff buy SGFG bc balls\u00b0\u00b0 \u10da @5secofsomeshit 's michael \u10da\u00b0\u00b0","protected":false,"verified":false,"followers_count":3897,"friends_count":729,"listed_count":19,"favourites_count":19325,"statuses_count":33736,"created_at":"Sun Jan 15 20:08:58 +0000 2012","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000109098611\/c7b25d067047fb7c0eedf07878a1fd32.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000109098611\/c7b25d067047fb7c0eedf07878a1fd32.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663175589218660352\/nVjMwen1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663175589218660352\/nVjMwen1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/464953245\/1446929611","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 23:05:14 +0000 2015","id":662042953674805252,"id_str":"662042953674805252","text":"envy https:\/\/t.co\/vKCRUgZwb8","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403246803,"id_str":"403246803","name":"Michael Clifford","screen_name":"Michael5SOS","location":null,"url":"http:\/\/5sosf.am\/vjnufZ","description":"i play in a band. so do other people in my band","protected":false,"verified":true,"followers_count":5620730,"friends_count":15497,"listed_count":34351,"favourites_count":98,"statuses_count":10898,"created_at":"Wed Nov 02 07:04:18 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_tile":true,"profile_link_color":"0E45B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"030203","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403246803\/1446535517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21402,"favorite_count":40208,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vKCRUgZwb8","expanded_url":"https:\/\/instagram.com\/p\/9rkJKqtlhn\/","display_url":"instagram.com\/p\/9rkJKqtlhn\/","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vKCRUgZwb8","expanded_url":"https:\/\/instagram.com\/p\/9rkJKqtlhn\/","display_url":"instagram.com\/p\/9rkJKqtlhn\/","indices":[22,45]}],"user_mentions":[{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212577792,"id_str":"663727997212577792","text":"RT @diogomainardi: Caminhoneiros desgastam o governo: https:\/\/t.co\/lmHmfNh67R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305366365,"id_str":"305366365","name":"Gynraf84","screen_name":"Gynraf84","location":"Goiania","url":null,"description":"Advogado","protected":false,"verified":false,"followers_count":50,"friends_count":249,"listed_count":0,"favourites_count":3674,"statuses_count":1309,"created_at":"Thu May 26 02:49:20 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2638601778\/b9f3492e70893365b03ac5f62782c48e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2638601778\/b9f3492e70893365b03ac5f62782c48e_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:16 +0000 2015","id":663724288458006528,"id_str":"663724288458006528","text":"Caminhoneiros desgastam o governo: https:\/\/t.co\/lmHmfNh67R","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15249841,"id_str":"15249841","name":"diogomainardi","screen_name":"diogomainardi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":486497,"friends_count":117,"listed_count":2461,"favourites_count":274,"statuses_count":6128,"created_at":"Fri Jun 27 00:16:00 +0000 2008","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520125595603066880\/WcZnzB4B_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520125595603066880\/WcZnzB4B_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":15,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lmHmfNh67R","expanded_url":"http:\/\/www.oantagonista.com\/posts\/os-caminhoneiros-desgastam-o-governo","display_url":"oantagonista.com\/posts\/os-camin\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lmHmfNh67R","expanded_url":"http:\/\/www.oantagonista.com\/posts\/os-caminhoneiros-desgastam-o-governo","display_url":"oantagonista.com\/posts\/os-camin\u2026","indices":[54,77]}],"user_mentions":[{"screen_name":"diogomainardi","name":"diogomainardi","id":15249841,"id_str":"15249841","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220864000,"id_str":"663727997220864000","text":"RT @ana_ame: \u5fd7\u5e0c\u306b\u3083\u3093\u306e\u30de\u30eb\u79d8\u85ac\uff5e\u2661 https:\/\/t.co\/tbhFMdxQoq","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103728353,"id_str":"103728353","name":"\u9060\u51fa\u7559\u5b88","screen_name":"RusuToode","location":"\u6771\u4eac\u90fd","url":"http:\/\/rusutoode.tumblr.com\/","description":"\u304a\u7d75\u304b\u304d\u30de\u30f3\u3002\u3044\u3044\u3061\u3053\u3092\u71c3\u6599\u306b\u3057\u3066\u52d5\u304f\u3002 \u6240\u5c5e\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u2192 http:\/\/papillonunion.com","protected":false,"verified":false,"followers_count":3533,"friends_count":991,"listed_count":157,"favourites_count":213,"statuses_count":5905,"created_at":"Mon Jan 11 02:15:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B83329","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/230424201\/2011_kabegami.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/230424201\/2011_kabegami.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609940766023008256\/pLz9038i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609940766023008256\/pLz9038i_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:22 +0000 2015","id":663725822176456704,"id_str":"663725822176456704","text":"\u5fd7\u5e0c\u306b\u3083\u3093\u306e\u30de\u30eb\u79d8\u85ac\uff5e\u2661 https:\/\/t.co\/tbhFMdxQoq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106359803,"id_str":"106359803","name":"\u30a2\u30ca","screen_name":"ana_ame","location":"\u3075\u3068\u3093","url":null,"description":"\u5973\u306e\u5b50\u306e\u7d75\u3092\u63cf\u3044\u3066\u308b\u3088\n\u30a2\u30a4\u30b3\u30f3\u306f\u3061\u307e\u308a\uff08@c_ma28\uff09\u304b\u3089\u3082\u3089\u3063\u305f\u3088\uff01","protected":false,"verified":false,"followers_count":1673,"friends_count":148,"listed_count":105,"favourites_count":602,"statuses_count":32489,"created_at":"Tue Jan 19 09:06:21 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655917462915907584\/4mRImIrb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655917462915907584\/4mRImIrb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106359803\/1445788022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":48,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ana_ame","name":"\u30a2\u30ca","id":106359803,"id_str":"106359803","indices":[3,11]}],"symbols":[],"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}},"source_status_id":663725822176456704,"source_status_id_str":"663725822176456704","source_user_id":106359803,"source_user_id_str":"106359803"}]},"extended_entities":{"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}},"source_status_id":663725822176456704,"source_status_id_str":"663725822176456704","source_user_id":106359803,"source_user_id_str":"106359803"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220974592,"id_str":"663727997220974592","text":"Yucat\u00e1n #followback #sigodevuelta #SIGUEMEYTESIGO #buscoamigos #RETWEET #MeSiguesTeSigo","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4001875469,"id_str":"4001875469","name":"Daniel Perez Rios","screen_name":"broderickjudit2","location":"Coyoac\u00e1n, Distrito Federal","url":null,"description":"I don't need a perfect one. I just need someone who can make me feel that I'm the only one. Normal people, scare me!","protected":false,"verified":false,"followers_count":128,"friends_count":4,"listed_count":7,"favourites_count":43,"statuses_count":1747,"created_at":"Tue Oct 20 12:17:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657368355444125696\/-mwHROh9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657368355444125696\/-mwHROh9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4001875469\/1445563796","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"followback","indices":[8,19]},{"text":"sigodevuelta","indices":[20,33]},{"text":"SIGUEMEYTESIGO","indices":[34,49]},{"text":"buscoamigos","indices":[50,62]},{"text":"RETWEET","indices":[63,71]},{"text":"MeSiguesTeSigo","indices":[72,87]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997191454720,"id_str":"663727997191454720","text":"\u4eca\u306e\u545f\u304d\u3067\u81ea\u5206\u306e\u30ea\u30c0\u8abf\u3079\u305f\u4eba\u306f\u5bc6\u5ba4\u3067\u8ab0\u304b\u304c\u300c\u3084\u3079\u30c1\u30e3\u30c3\u30af\u958b\u3044\u3066\u308b\u300d\u3068\u3044\u3046\u3068\u6c17\u306b\u306a\u3063\u3066\u81ea\u5206\u3082\u8abf\u3079\u3061\u3083\u3046\u30de\u30f3\u3067\u3059\u306d","source":"\u003ca href=\"http:\/\/yubitter.com\/\" rel=\"nofollow\"\u003eyubitter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835235970,"id_str":"2835235970","name":"\u3077\u306e\u30fc\u3073\u30fc\u5c06\u8ecd","screen_name":"punokawa_0614","location":null,"url":null,"description":"6461546514132165\u6d41P\u3000\u91ce\u7403\u7b46\u982d\u306b\u30b9\u30dd\u30fc\u30c4\u306b\u95a2\u3059\u308b\u545f\u304d\u30fb\u5b9f\u6cc1\u3042\u308a\u3000\u30e2\u30d0\u30de\u30b9ID:75260267 \u30df\u30cb\u30c1\u30fc\u30e0\u30a4\u30d9\u591a\u3059\u304e\u306a\u306e\u3067\u4eca\u306f\u304a\u7a7a\u306b\u304a\u71b1","protected":false,"verified":false,"followers_count":143,"friends_count":149,"listed_count":14,"favourites_count":45,"statuses_count":26696,"created_at":"Sun Sep 28 16:19:58 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615921674123243520\/pwB-q9Cb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615921674123243520\/pwB-q9Cb.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656335503852113920\/QB_4uQs-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656335503852113920\/QB_4uQs-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835235970\/1445317630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060657"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212491776,"id_str":"663727997212491776","text":"RT @RaGoharShahi: #QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2480870121,"id_str":"2480870121","name":"Sumair","screen_name":"g_sumair","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":10,"listed_count":25,"favourites_count":33,"statuses_count":22183,"created_at":"Sun Apr 13 07:26:15 +0000 2014","utc_offset":21600,"time_zone":"Almaty","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483255638546337794\/_cf8LvcK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483255638546337794\/_cf8LvcK_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 00:01:21 +0000 2015","id":660969909892071424,"id_str":"660969909892071424","text":"#QuoteoftheDay \u2018Eternal peace will come by enlightening the hearts and changing the way people think.\u2019 - His... https:\/\/t.co\/3vQqsiguFU","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":93,"favorite_count":7,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[18,32]}],"urls":[{"url":"https:\/\/t.co\/3vQqsiguFU","expanded_url":"http:\/\/fb.me\/47aPBHJc9","display_url":"fb.me\/47aPBHJc9","indices":[139,140]}],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997199978497,"id_str":"663727997199978497","text":"RT @PapaJackQuote: Brain, I need you to focus.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1693297196,"id_str":"1693297196","name":"Levyyyy","screen_name":"levymonge","location":null,"url":null,"description":"Sasha Raphaelle Gloria \u2665","protected":false,"verified":false,"followers_count":286,"friends_count":207,"listed_count":0,"favourites_count":496,"statuses_count":1646,"created_at":"Fri Aug 23 08:47:27 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651805895035191296\/g7ElVY_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651805895035191296\/g7ElVY_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1693297196\/1440851249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821932527616,"id_str":"663727821932527616","text":"Brain, I need you to focus.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008769416,"id_str":"1008769416","name":"PAPA JACK \u00ae","screen_name":"PapaJackQuote","location":null,"url":"http:\/\/bit.ly\/contactpapajack","description":"Papa Jack's Quotable-Quotes-Advices.","protected":false,"verified":false,"followers_count":856805,"friends_count":125,"listed_count":302,"favourites_count":315,"statuses_count":77999,"created_at":"Thu Dec 13 13:08:36 +0000 2012","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A9A07F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_tile":true,"profile_link_color":"4C6AA6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"434752","profile_text_color":"30676A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008769416\/1409884282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":50,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PapaJackQuote","name":"PAPA JACK \u00ae","id":1008769416,"id_str":"1008769416","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060659"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997229232128,"id_str":"663727997229232128","text":"@ruumi__0210 \n\u305d\u306b\u306a\u306b\uff01\uff01\u7b11\n\u3055\u3059\u304c\u306b\u305d\u308c\u306f\u805e\u3044\u3066\u3066\u3064\u3089\u3044\u306d\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726604477042688,"in_reply_to_status_id_str":"663726604477042688","in_reply_to_user_id":2914681356,"in_reply_to_user_id_str":"2914681356","in_reply_to_screen_name":"ruumi__0210","user":{"id":2673317108,"id_str":"2673317108","name":"SENA","screen_name":"e_girls1105","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":184,"friends_count":220,"listed_count":0,"favourites_count":226,"statuses_count":83,"created_at":"Wed Jul 23 10:37:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727686976573440\/Oj_1ttg-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727686976573440\/Oj_1ttg-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2673317108\/1447079986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ruumi__0210","name":"\u2765Rumi","id":2914681356,"id_str":"2914681356","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060666"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997229203456,"id_str":"663727997229203456","text":"RT @00kgst00: \u5200\u5263\u7537\u58eb\u306e\u53e3\u8abf\u60c5\u5831\u3092\u500b\u4eba\u7684\u306b\u5275\u4f5c\u6642\u6700\u4f4e\u9650\u5fc5\u8981\u3068\u3057\u3066\u308b\u9805\u76ee\u3067\u307e\u3068\u3081\u3066\u307f\u305f https:\/\/t.co\/Ff8IAMheGI","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138690561,"id_str":"138690561","name":"\u67da\u6a39\u266a\u7269\u5409\u304f\u3093\u3092\u304a\u91d1\u3067\u8cb7\u3046\u65c5","screen_name":"citron0x0","location":"\u30b8\u30a7\u30a4\u30c9\u306e\u773c\u93e1\u306b\u30b3\u30f3\u30bf\u30df\u30cd\u30fc\u30b7\u30e7\u30f3","url":"http:\/\/twpf.jp\/citron0x0","description":"\u6307\u8f2a\u7269\u8a9e,BUMP,\u30c6\u30a4\u30eb\u30ba,\u30d5\u30a1\u30d5\u30ca\u30fc,\u97f3\u30b2\u30fc\u4ed6\u5e45\u5e83\u304f\/\u30af\u30e9\u30ed\u30ea\/\u30c9\u30fc\u30eb\u266aDeemo\u3001SB69\u3001\u5200\u5263\u4e71\u821e\/\u30b2\u30fc\u30e0\u30a2\u30ab\uff1a@TO0x0\u266a\u30c9\u30fc\u30eb\u30a2\u30ab\uff1a@lothlorien0x0","protected":false,"verified":false,"followers_count":840,"friends_count":789,"listed_count":87,"favourites_count":3355,"statuses_count":55469,"created_at":"Fri Apr 30 08:38:39 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FE4365","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499548261703626752\/P8YsSdy9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499548261703626752\/P8YsSdy9.png","profile_background_tile":true,"profile_link_color":"FC9D9A","profile_sidebar_border_color":"83AF9B","profile_sidebar_fill_color":"C8C8A9","profile_text_color":"F9CDAD","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641966545111941120\/aa2S1wX1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641966545111941120\/aa2S1wX1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138690561\/1429957350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:26:59 +0000 2015","id":663407380286214150,"id_str":"663407380286214150","text":"\u5200\u5263\u7537\u58eb\u306e\u53e3\u8abf\u60c5\u5831\u3092\u500b\u4eba\u7684\u306b\u5275\u4f5c\u6642\u6700\u4f4e\u9650\u5fc5\u8981\u3068\u3057\u3066\u308b\u9805\u76ee\u3067\u307e\u3068\u3081\u3066\u307f\u305f https:\/\/t.co\/Ff8IAMheGI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":418769291,"id_str":"418769291","name":"\u52a0\u8cc0\u91cc","screen_name":"00kgst00","location":null,"url":"http:\/\/www.pixiv.net\/novel\/member.php?id=1299104","description":"\u300c\u307f\u3093\u306a\u5e78\u305b\u306b\u306a\u30fc\u308c\uff01\u300d\u306a\u6210\u4eba\u6e08\u5b57\u66f8\u304d\u3002\u597d\u304d\u306a\u6642\u306b\u597d\u304d\u306a\u3053\u3068\u3092\u597d\u304d\u306a\u3088\u3046\u306b\u5168\u529b\u6295\u7403\u3002\u3010\u5973\u306e\u5b50\u611b\u30fb\u5bb6\u65cf\u611b\uff06\u53cb\u60c5\uff08\u8907\u6570\u4eba\u306e\u308f\u3061\u3083\u308f\u3061\u3083\uff09\u30fb\u71c3\u3048\uff1e\u840c\u3048\u30fb\u7a2e\u65cf\u5dee\u4f53\u683c\u5dee\u4ed6\u8af8\u3005\u306e\u300e\u5dee\u300f\u3011\u203b\u6df1\u591c\uff5e\u65e9\u671d\u4e0d\u5b9a\u671f\u51fa\u6ca1\u30fb\u7a81\u7136\u4f55\u3092\u8a00\u3044\u51fa\u3059\u304b\u5206\u304b\u3089\u306a\u3044\u7cfb","protected":false,"verified":false,"followers_count":129,"friends_count":82,"listed_count":9,"favourites_count":161,"statuses_count":15989,"created_at":"Tue Nov 22 15:13:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556325987\/xb56fe4853e7d226bbeb65445846b465.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556325987\/xb56fe4853e7d226bbeb65445846b465.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"CC3366","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607976907729084418\/xizeuAoa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607976907729084418\/xizeuAoa_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":367,"favorite_count":705,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663407378453237760,"id_str":"663407378453237760","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":117,"resize":"fit"},"medium":{"w":600,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":354,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663407378453237760,"id_str":"663407378453237760","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":117,"resize":"fit"},"medium":{"w":600,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":354,"resize":"fit"}}},{"id":663407378499399680,"id_str":"663407378499399680","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfvDUcAAwr6-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfvDUcAAwr6-.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":111,"resize":"fit"},"medium":{"w":600,"h":196,"resize":"fit"},"large":{"w":1024,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"00kgst00","name":"\u52a0\u8cc0\u91cc","id":418769291,"id_str":"418769291","indices":[3,12]}],"symbols":[],"media":[{"id":663407378453237760,"id_str":"663407378453237760","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":117,"resize":"fit"},"medium":{"w":600,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":354,"resize":"fit"}},"source_status_id":663407380286214150,"source_status_id_str":"663407380286214150","source_user_id":418769291,"source_user_id_str":"418769291"}]},"extended_entities":{"media":[{"id":663407378453237760,"id_str":"663407378453237760","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfu4UEAA_L3d.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":117,"resize":"fit"},"medium":{"w":600,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":354,"resize":"fit"}},"source_status_id":663407380286214150,"source_status_id_str":"663407380286214150","source_user_id":418769291,"source_user_id_str":"418769291"},{"id":663407378499399680,"id_str":"663407378499399680","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTlfvDUcAAwr6-.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTlfvDUcAAwr6-.png","url":"https:\/\/t.co\/Ff8IAMheGI","display_url":"pic.twitter.com\/Ff8IAMheGI","expanded_url":"http:\/\/twitter.com\/00kgst00\/status\/663407380286214150\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":111,"resize":"fit"},"medium":{"w":600,"h":196,"resize":"fit"},"large":{"w":1024,"h":335,"resize":"fit"}},"source_status_id":663407380286214150,"source_status_id_str":"663407380286214150","source_user_id":418769291,"source_user_id_str":"418769291"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060666"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997191503872,"id_str":"663727997191503872","text":"RT @riripon48: \u6211\u3089\u304c\u30c8\u30c3\u30d7\u30ea\u30fc\u30c9\u5148\u8f29\uff01\uff01\uff08\u2267\u2207\u2266\uff09 https:\/\/t.co\/1rzrFTNMTP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3631715412,"id_str":"3631715412","name":"\u9375\u3055\u3093","screen_name":"keropanda8","location":null,"url":null,"description":"@ASkeropanda","protected":false,"verified":false,"followers_count":32,"friends_count":193,"listed_count":0,"favourites_count":10190,"statuses_count":1579,"created_at":"Sun Sep 20 23:29:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646069539919167488\/i2UeVOJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646069539919167488\/i2UeVOJR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:39 +0000 2015","id":663722873664638976,"id_str":"663722873664638976","text":"\u6211\u3089\u304c\u30c8\u30c3\u30d7\u30ea\u30fc\u30c9\u5148\u8f29\uff01\uff01\uff08\u2267\u2207\u2266\uff09 https:\/\/t.co\/1rzrFTNMTP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2914924488,"id_str":"2914924488","name":"\u9808\u85e4\u51dc\u3005\u82b1Must be now\u767a\u58f2\u4e2d","screen_name":"riripon48","location":null,"url":null,"description":"NMB48\u306e\u30b9\u30c8\u30fc\u308a\u308a\u307d\u3093\u3067\u3059\u3002 \u6771\u4eac\u90fd\u51fa\u8eab\u300118\u6b73\u3001\u54f2\u5b66\u8005\u3092\u76ee\u6307\u3057\u3066\u3044\u307e\u3059\u3002 \u3068\u306b\u304b\u304f\u660e\u308b\u3044\u30cb\u30d2\u30ea\u30ba\u30e0\u3002 \u6575\u5bfe\u3059\u308b\u76f8\u4e92\u95a2\u4fc2\u306e\u4e8c\u5143\u7684\u5b9f\u8df5\u3002 \u897f\u5358\u9a0e\u5730\u7344\u5f85\u3061\u3002\u3044\u3064\u306e\u65e5\u304b\u300c\uff15\u6642\u306b\u5922\u4e2d\u300d\u306b\u51fa\u305f\u3044\u3067\u3059(#^.^#)\u3042\u3068\u3001\u30e2\u30c6\u305f\u3044\u3067\u3059\uff01\u9811\u5f35\u308a\u307e\u3059\uff01","protected":false,"verified":true,"followers_count":108579,"friends_count":442,"listed_count":2262,"favourites_count":743,"statuses_count":433,"created_at":"Sun Nov 30 17:46:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659752283211587584\/eYbNG554_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659752283211587584\/eYbNG554_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914924488\/1446142043","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662592031722606592,"quoted_status_id_str":"662592031722606592","quoted_status":{"created_at":"Fri Nov 06 11:27:05 +0000 2015","id":662592031722606592,"id_str":"662592031722606592","text":"\u518d\u751f\u56de\u65701\u4f4d\u3067\u6e96\u6c7a\u52dd\u884c\u3051\u308b\u307f\u305f\u3044\uff01\u307f\u3093\u306a\u30aa\u30e9\u306b\u529b\u3092\u2026\u30aa\u30e9\u9054\u3092\u6e96\u6c7a\u52dd\u306b\u9023\u308c\u3066\u3063\u3066\u304f\u308c\u3047\u3047\uff01\uff01\uff01\uff01\nhttps:\/\/t.co\/19hRl631ed","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170338543,"id_str":"170338543","name":"\u30c8\u30c3\u30d7\u30ea\u30fc\u30c9\u65b0\u59bb\u60a0\u592a","screen_name":"ningning5725","location":"\u65b0\u5bbf\u3001\u4e0b\u5317\u6ca2\u3001\u79cb\u8449\u539f\u3001\u516d\u672c\u6728\u3001\u56db\u8c37\u4e09\u4e01\u76ee\u3001\u305d\u306e\u8fba\u308a\u306b\u3002","url":"http:\/\/ningen-concent.com\/","description":"\u592a\u7530\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3\u6240\u5c5e\u82b8\u4eba\u3001\n\u30c8\u30c3\u30d7\u30ea\u30fc\u30c9\u306e\u65b0\u59bb\u60a0\u592a\u3067\u3059\u3002\r\n\u30b3\u30f3\u30c8\u304c\u3042\u308b\u304b\u3089\u751f\u304d\u3066\u3044\u3051\u307e\u3059\uff01\r\n\r\n\u6700\u8fd1\u306f\u304a\u9152\u3092\u30aa\u30fc\u30eb\u30de\u30a4\u30c6\u30a3\u306b\u98f2\u307f\u3001\u6c34\u66dc\u3069\u3046\u3067\u3057\u3087\u3046\u304c\u5b50\u5b88\u5504\u3002\n\n\u9699\u3042\u308a\u3083\u30d9\u30e9\u30f3\u30c0\u3067\u304a\u9152\u3092\u98f2\u307f\u3001\u30ad\u30e3\u30f3\u30d7\u306b\u884c\u304d\u307e\u3059\u3002\r\n\nAKB\u30b0\u30eb\u30fc\u30d7\u306b\u751f\u304b\u3055\u308c\u3066\u307e\u3059\u3002\r\n\r\n\u3069\u3046\u304b\u304a\u898b\u77e5\u308a\u304a\u304d\u3092\u3002","protected":false,"verified":true,"followers_count":21218,"friends_count":460,"listed_count":460,"favourites_count":0,"statuses_count":26618,"created_at":"Sat Jul 24 15:21:58 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C3F0CD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"81E38D","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1146082816\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1146082816\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170338543\/1439186478","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/19hRl631ed","expanded_url":"http:\/\/gyao.yahoo.co.jp\/player\/00031\/v08723\/v0870000000000530601\/","display_url":"gyao.yahoo.co.jp\/player\/00031\/v\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":46,"favorite_count":255,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1rzrFTNMTP","expanded_url":"https:\/\/twitter.com\/ningning5725\/status\/662592031722606592","display_url":"twitter.com\/ningning5725\/s\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1rzrFTNMTP","expanded_url":"https:\/\/twitter.com\/ningning5725\/status\/662592031722606592","display_url":"twitter.com\/ningning5725\/s\u2026","indices":[34,57]}],"user_mentions":[{"screen_name":"riripon48","name":"\u9808\u85e4\u51dc\u3005\u82b1Must be now\u767a\u58f2\u4e2d","id":2914924488,"id_str":"2914924488","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060657"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997216817152,"id_str":"663727997216817152","text":"\u0411\u0430\u043b\u0438, \u0414\u0436\u0438\u043c\u0431\u0430\u0440\u0430\u043d, \u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f\/Bali, Jimbaran, Indonesia: https:\/\/t.co\/6SieIzxND3 \u043d\u0430 @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3398682555,"id_str":"3398682555","name":"viking.by","screen_name":"viking_by","location":"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c","url":"http:\/\/www.viking.by","description":"\u041d\u0430\u0448\u0430 \u0441\u0435\u0442\u044c \u0442\u0443\u0440\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0430\u0433\u0435\u043d\u0442\u0441\u0442\u0432 \u0412\u0438\u043a\u0438\u043d\u0433 \u0422\u0443\u0440\u0438\u0441\u0442\u0438\u043a \u043f\u043e\u043c\u043e\u0436\u0435\u0442 \u0432\u0430\u043c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0438\u043c\u0435\u043d\u043d\u043e \u0442\u043e\u0442 \u043e\u0442\u0434\u044b\u0445, \u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c \u0432\u044b \u043c\u0435\u0447\u0442\u0430\u043b\u0438.","protected":false,"verified":false,"followers_count":2,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":366,"created_at":"Sat Aug 01 13:46:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631786858280648705\/uF3EPXqJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631786858280648705\/uF3EPXqJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3398682555\/1439558400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6SieIzxND3","expanded_url":"http:\/\/youtu.be\/DSpf2ZS1Su0?a","display_url":"youtu.be\/DSpf2ZS1Su0?a","indices":[54,77]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[81,89]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080060663"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997216686080,"id_str":"663727997216686080","text":"\u0e07\u0e32\u0e19\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e22\u0e2d\u0e30\u0e2d\u0e35\u0e01\u0e25\u0e48\u0e30 #EXO \u0e08\u0e30\u0e43\u0e2b\u0e49\u0e41\u0e17\u0e47\u0e01\u0e44\u0e23\u0e19\u0e31\u0e01\u0e2b\u0e19\u0e32 #CALLMEBABY \u0e2b\u0e37\u0e49\u0e21\u0e21\u0e21\u0e21\u0e21 #MAMA2015 \u0e19\u0e48\u0e32\u0e21\u0e04\u0e32\u0e19\u0e19\u0e19\u0e19 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67604804,"id_str":"67604804","name":"\u0e19\u0e49\u0e2d\u0e07\u0e21\u0e38\u0e01\u0e1e\u0e38\u0e17\u0e22\u0e31\u0e27\u0e41\u0e2e\u0e19\u0e0b\u0e31\u0e1a","screen_name":"moooookky","location":"Thailand","url":null,"description":"JUST A FAKE PRIVATE SPACE.","protected":false,"verified":false,"followers_count":194,"friends_count":258,"listed_count":6,"favourites_count":1121,"statuses_count":40495,"created_at":"Fri Aug 21 13:21:12 +0000 2009","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660160905016008704\/SGKLvrs3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660160905016008704\/SGKLvrs3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67604804\/1446989968","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[20,24]},{"text":"CALLMEBABY","indices":[43,54]},{"text":"MAMA2015","indices":[64,73]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[85,94]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080060663"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997208301568,"id_str":"663727997208301568","text":"We gotta make it work","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557524035,"id_str":"557524035","name":"Vanessa","screen_name":"_vanessaalexis","location":null,"url":null,"description":"18","protected":false,"verified":false,"followers_count":406,"friends_count":176,"listed_count":1,"favourites_count":21525,"statuses_count":65946,"created_at":"Thu Apr 19 05:11:00 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459598008040955904\/isNZpu9y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459598008040955904\/isNZpu9y.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663287871416107008\/AqhvQkWY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663287871416107008\/AqhvQkWY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557524035\/1446984286","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060661"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997200048128,"id_str":"663727997200048128","text":"RT @justokayx: \u00faltimamente me siento tan solo..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537582928,"id_str":"537582928","name":"IRIS","screen_name":"Iris_diamonds","location":null,"url":"http:\/\/instagram.com\/iris_diamonds","description":"Son las apariencias las que nos matan y nos convierten en personas superficiales. Y a veces olvidamos lo de dentro.","protected":false,"verified":false,"followers_count":1192,"friends_count":951,"listed_count":7,"favourites_count":2394,"statuses_count":12741,"created_at":"Mon Mar 26 21:37:32 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/811425162\/3a098a64dead4c7cd453d35468923215.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/811425162\/3a098a64dead4c7cd453d35468923215.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644151397311737856\/Ybp-tJbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644151397311737856\/Ybp-tJbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/537582928\/1445885756","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:35:47 +0000 2015","id":663439791984402436,"id_str":"663439791984402436","text":"\u00faltimamente me siento tan solo..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1344814746,"id_str":"1344814746","name":"jos\u00e9 carlos","screen_name":"justokayx","location":"durmiendo","url":null,"description":"si no me entiendo yo, qu\u00e9 cojones esperas entenderme t\u00fa.","protected":false,"verified":false,"followers_count":3901,"friends_count":2352,"listed_count":87,"favourites_count":63489,"statuses_count":35618,"created_at":"Thu Apr 11 17:05:21 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0CF5F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574617634546700288\/U-l9NGHb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574617634546700288\/U-l9NGHb.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662981571880878081\/61HdmxvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662981571880878081\/61HdmxvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1344814746\/1446902076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justokayx","name":"jos\u00e9 carlos","id":1344814746,"id_str":"1344814746","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060659"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997191479298,"id_str":"663727997191479298","text":"@tsutaivy \uc7a5\ub974\/\ucee4\ud50c\ub9c1 \uc601\uc5c5\uc5d0 \uc120\uc545\uc774 \uc5b4\ub528\uc2b5\ub2c8\uae4c \ucac4\ub9ac\uba74 \ub488\uc9c0\uc2dc\ub4e0\u3131.....\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727513638584322,"in_reply_to_status_id_str":"663727513638584322","in_reply_to_user_id":2399992196,"in_reply_to_user_id_str":"2399992196","in_reply_to_screen_name":"tsutaivy","user":{"id":3275011692,"id_str":"3275011692","name":"\ubb34\uae30\ub18d","screen_name":"function_not","location":null,"url":null,"description":"\ub300\uccb4\ub85c \ud0c8\ubd80\ucc29 \uac00\ub2a5","protected":false,"verified":false,"followers_count":459,"friends_count":305,"listed_count":7,"favourites_count":813,"statuses_count":11454,"created_at":"Sat Jul 11 02:04:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641283152833482752\/13rmW-oi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641283152833482752\/13rmW-oi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3275011692\/1436777414","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsutaivy","name":"[\ucee4\ubbf8\uc158]\uce20\ud0c0;\ud0dd\ubc30\ub118\uae40","id":2399992196,"id_str":"2399992196","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080060657"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997229207552,"id_str":"663727997229207552","text":"@Ryo_19930509 \n\n\u307e\u3060\u5bdd\u306a\u3044\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727333417705472,"in_reply_to_status_id_str":"663727333417705472","in_reply_to_user_id":2951260272,"in_reply_to_user_id_str":"2951260272","in_reply_to_screen_name":"Ryo_19930509","user":{"id":2741834941,"id_str":"2741834941","name":"\u68a8\u604b (\u308a\u3093)","screen_name":"omi__haruyama_","location":null,"url":null,"description":"\u4e00\u822c\u30d6\u30ed\u30c3\u30af \u53cc\u5b50\u2192\u611b\u7406 \u30d1\u30d1\u2192\u305f\u3041 \u304a\u5144\u3061\u3083\u3093\u2192\u592a\u8f14 \u548c\u771f \u304a\u59c9\u3061\u3083\u3093\u2192\u307f\u308b\u304d\u30fc\u3061\u3083\u3093 \u56fa\u5b9a\u547c\u3073\u2192\u3042\u304b\u308a\u3093\u3054\u3001\u6731\u828b\u3001\u308a\u30fc\u3001\u3086\u304b\u308a\u3001\u3042\u30fc\u3061\u3083\u3093\u3001\u308a\u308a\u3061\u3083\u3093\u3001\u3042\u304b\u308a\u3063\u3061\u3001\u3042\u30fc\u305f\u3093\u3001\u3042\u3041\u3061\u3083\u3093\u3001\u3042\u30fc\u308a\u3001\u308a\u3093\u3054\u3061\u3083\u3093\u3001","protected":false,"verified":false,"followers_count":107,"friends_count":131,"listed_count":4,"favourites_count":1151,"statuses_count":10188,"created_at":"Mon Aug 18 10:16:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630051345395879936\/gjP_2kbS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630051345395879936\/gjP_2kbS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ryo_19930509","name":"\u3006 \u6f3e \u5f3c .","id":2951260272,"id_str":"2951260272","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060666"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997208256512,"id_str":"663727997208256512","text":"@tamamoDOD \u5931\u793c\u306a\u3001\u30ae\u30eb\u30de\u30b9\u306e\u30ef\u30a4\u3082\u307e\u3068\u3082\u3084\u3067(# \uff9f\u0414\uff9f)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727327889637376,"in_reply_to_status_id_str":"663727327889637376","in_reply_to_user_id":2748381858,"in_reply_to_user_id_str":"2748381858","in_reply_to_screen_name":"tamamoDOD","user":{"id":268791444,"id_str":"268791444","name":"\u30ce\u30fc\u30de\u30c3\u30c9\uff08Re3\u307e\u3067\u4f11\u990a\u4e2d\uff09","screen_name":"nomad0513","location":"\u8b83\u5c90","url":"http:\/\/www.nicovideo.jp\/my\/mylist\/#\/39814984","description":"\u30cb\u30b3\u52d5\u306b\u6771\u65b9\u30b3\u30e9\u30dc\u306e\u4f1a\u8a71\u4ed8\u304dLOV\u52d5\u753b\u3092\u4e0a\u3052\u3066\u308b\u30ce\u30fc\u30de\u30c3\u30c9\u3068\u8a00\u3044\u307e\u3059\u3002 LOV\u30ae\u30eb\u30c9\uff1aSCARLET\u306e\u30ae\u30eb\u30de\u30b9 \u8a71\u306e\u30e1\u30a4\u30f3\u306fLOV\u3001\u6771\u65b9\u3001\u8266\u3053\u308c\u7b49\u30b2\u30fc\u30e0\u95a2\u9023\u30e1\u30a4\u30f3\u3002 \u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u306f\u5272\u3068\u6c17\u307e\u3050\u308c\u3002 \u5bc6\u304b\u306b\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u3002 ST\u535a\u9e97\u970a\u5922\u306f\u7121\u9650\u56de\u53ce\u4e2d \u79f0\u53f7@\u6708\u514940","protected":false,"verified":false,"followers_count":287,"friends_count":375,"listed_count":27,"favourites_count":966,"statuses_count":33428,"created_at":"Sat Mar 19 13:35:49 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475452025698652160\/A_wC_Ww5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475452025698652160\/A_wC_Ww5.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663686599822061569\/sbmD1em8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663686599822061569\/sbmD1em8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268791444\/1402192133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tamamoDOD","name":"\u30bf\u30de\u30e2@\u30e9\u30fc\u00d7\u30a2\u30dd\u30d4\u30b9","id":2748381858,"id_str":"2748381858","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060661"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997199872000,"id_str":"663727997199872000","text":"RT @yoitslorenzo: I miss these niggas \ud83d\ude02 #PolfWack https:\/\/t.co\/adtQn6jlMX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487607557,"id_str":"487607557","name":"Michael Sharif","screen_name":"MACSharif","location":null,"url":null,"description":"Let go and let God\nInstagram: @MACSharif","protected":false,"verified":false,"followers_count":232,"friends_count":354,"listed_count":1,"favourites_count":3379,"statuses_count":9798,"created_at":"Thu Feb 09 15:04:44 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B2728","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660710637\/xqokv872tsfzv4qmg339.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660710637\/xqokv872tsfzv4qmg339.jpeg","profile_background_tile":true,"profile_link_color":"120DB3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659851529101316096\/NxbBQ7CN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659851529101316096\/NxbBQ7CN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487607557\/1444886554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:18:58 +0000 2015","id":663662052330766336,"id_str":"663662052330766336","text":"I miss these niggas \ud83d\ude02 #PolfWack https:\/\/t.co\/adtQn6jlMX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":631329353,"id_str":"631329353","name":"Lorenzo","screen_name":"yoitslorenzo","location":"Pearland, TX","url":null,"description":"Snapchat: yoitslorenzoo PH | HTX","protected":false,"verified":false,"followers_count":223,"friends_count":171,"listed_count":0,"favourites_count":2566,"statuses_count":2755,"created_at":"Mon Jul 09 18:56:17 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"02091C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648776660\/x9ec436a10d7bf1e06b3b0f834ab1d24.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648776660\/x9ec436a10d7bf1e06b3b0f834ab1d24.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FDF1E5","profile_sidebar_fill_color":"CCD8D6","profile_text_color":"90DCD8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599089816081334272\/XeAB5RqO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599089816081334272\/XeAB5RqO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/631329353\/1435163368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01b763b150004405","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01b763b150004405.json","place_type":"city","name":"Davao City","full_name":"Davao City, Davao Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[125.214820,6.959006],[125.214820,7.676159],[125.671703,7.676159],[125.671703,6.959006]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":5,"entities":{"hashtags":[{"text":"PolfWack","indices":[22,31]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663662015966154752,"id_str":"663662015966154752","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","url":"https:\/\/t.co\/adtQn6jlMX","display_url":"pic.twitter.com\/adtQn6jlMX","expanded_url":"http:\/\/twitter.com\/yoitslorenzo\/status\/663662052330766336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663662015966154752,"id_str":"663662015966154752","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","url":"https:\/\/t.co\/adtQn6jlMX","display_url":"pic.twitter.com\/adtQn6jlMX","expanded_url":"http:\/\/twitter.com\/yoitslorenzo\/status\/663662052330766336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PolfWack","indices":[40,49]}],"urls":[],"user_mentions":[{"screen_name":"yoitslorenzo","name":"Lorenzo","id":631329353,"id_str":"631329353","indices":[3,16]}],"symbols":[],"media":[{"id":663662015966154752,"id_str":"663662015966154752","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","url":"https:\/\/t.co\/adtQn6jlMX","display_url":"pic.twitter.com\/adtQn6jlMX","expanded_url":"http:\/\/twitter.com\/yoitslorenzo\/status\/663662052330766336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663662052330766336,"source_status_id_str":"663662052330766336","source_user_id":631329353,"source_user_id_str":"631329353"}]},"extended_entities":{"media":[{"id":663662015966154752,"id_str":"663662015966154752","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNFliVEAAntrs.jpg","url":"https:\/\/t.co\/adtQn6jlMX","display_url":"pic.twitter.com\/adtQn6jlMX","expanded_url":"http:\/\/twitter.com\/yoitslorenzo\/status\/663662052330766336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663662052330766336,"source_status_id_str":"663662052330766336","source_user_id":631329353,"source_user_id_str":"631329353"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060659"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220859904,"id_str":"663727997220859904","text":"RT @vidya_05: vedalam premier show review kaaga kaathukondu irukum enga anna fans :D #VedalamDiwali https:\/\/t.co\/CoOb6IlIVs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238858484,"id_str":"238858484","name":"yadinshiva","screen_name":"yadinshiva","location":"chennai","url":null,"description":"common man","protected":false,"verified":false,"followers_count":328,"friends_count":2045,"listed_count":3,"favourites_count":570,"statuses_count":2808,"created_at":"Sun Jan 16 05:54:36 +0000 2011","utc_offset":19800,"time_zone":"Asia\/Calcutta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599528419408220160\/rZ3JyUrN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599528419408220160\/rZ3JyUrN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238858484\/1437652696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:07 +0000 2015","id":663718211435626496,"id_str":"663718211435626496","text":"vedalam premier show review kaaga kaathukondu irukum enga anna fans :D #VedalamDiwali https:\/\/t.co\/CoOb6IlIVs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1437573842,"id_str":"1437573842","name":"Vidya","screen_name":"vidya_05","location":"Karnataka","url":null,"description":"Proud Hindu | #Thala devotee | Aamir Khan, Sallu, Thalaivar, Nayanthara, ARR & Dada | No DM & Personal Questions plsss |","protected":false,"verified":false,"followers_count":15790,"friends_count":1615,"listed_count":52,"favourites_count":52376,"statuses_count":89510,"created_at":"Sat May 18 06:28:09 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510828947081134080\/PrlUOPYx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510828947081134080\/PrlUOPYx.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662987132605063168\/ZkXlaagg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662987132605063168\/ZkXlaagg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1437573842\/1445780241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":15,"entities":{"hashtags":[{"text":"VedalamDiwali","indices":[71,85]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718206129868800,"id_str":"663718206129868800","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","url":"https:\/\/t.co\/CoOb6IlIVs","display_url":"pic.twitter.com\/CoOb6IlIVs","expanded_url":"http:\/\/twitter.com\/vidya_05\/status\/663718211435626496\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":645,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718206129868800,"id_str":"663718206129868800","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","url":"https:\/\/t.co\/CoOb6IlIVs","display_url":"pic.twitter.com\/CoOb6IlIVs","expanded_url":"http:\/\/twitter.com\/vidya_05\/status\/663718211435626496\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":645,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VedalamDiwali","indices":[85,99]}],"urls":[],"user_mentions":[{"screen_name":"vidya_05","name":"Vidya","id":1437573842,"id_str":"1437573842","indices":[3,12]}],"symbols":[],"media":[{"id":663718206129868800,"id_str":"663718206129868800","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","url":"https:\/\/t.co\/CoOb6IlIVs","display_url":"pic.twitter.com\/CoOb6IlIVs","expanded_url":"http:\/\/twitter.com\/vidya_05\/status\/663718211435626496\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":645,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"}},"source_status_id":663718211435626496,"source_status_id_str":"663718211435626496","source_user_id":1437573842,"source_user_id_str":"1437573842"}]},"extended_entities":{"media":[{"id":663718206129868800,"id_str":"663718206129868800","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAMSNUkAA0Pa_.jpg","url":"https:\/\/t.co\/CoOb6IlIVs","display_url":"pic.twitter.com\/CoOb6IlIVs","expanded_url":"http:\/\/twitter.com\/vidya_05\/status\/663718211435626496\/photo\/1","type":"photo","sizes":{"large":{"w":634,"h":645,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"}},"source_status_id":663718211435626496,"source_status_id_str":"663718211435626496","source_user_id":1437573842,"source_user_id_str":"1437573842"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212426240,"id_str":"663727997212426240","text":"@sennsenn12 \u30de\uff1f","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003efrom TheWorld\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727948353007617,"in_reply_to_status_id_str":"663727948353007617","in_reply_to_user_id":2372122766,"in_reply_to_user_id_str":"2372122766","in_reply_to_screen_name":"sennsenn12","user":{"id":2532436315,"id_str":"2532436315","name":"\u76ee\u3068\u9f3b\u3068\u53e3\u3068\u9aea\u578b\u3092\u5165\u308c\u66ff\u3048\u308c\u3070\u30a4\u30b1\u30e1\u30f3","screen_name":"riba_knj098","location":"\u3051\u30fc\u306f\u307b\u3055\u304b\u306e\u3051\u30fc","url":"http:\/\/blog.livedoor.jp\/ribamu098\/","description":"\u512a\u3057\u3044\u3060\u3051\u306e\u7537\u306f\u30e2\u30c6\u306a\u3044\u904e\u6fc0\u6d3e","protected":false,"verified":false,"followers_count":229,"friends_count":188,"listed_count":7,"favourites_count":3402,"statuses_count":37039,"created_at":"Thu May 29 11:01:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658636098147520512\/tT33Flka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658636098147520512\/tT33Flka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2532436315\/1446476419","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sennsenn12","name":"\u305b\u3093\u307e","id":2372122766,"id_str":"2372122766","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997229273089,"id_str":"663727997229273089","text":"RT @caopsaooq: \u6700\u8fd1\u30cd\u30c3\u30c8\u3084TV\u3067\u8a71\u984c\u306e\u300e\u6fc0\u75e9\u305b\u82b8\u80fd\u4eba\u300f\u304c\u5bc6\u304b\u306b\u98f2\u3093\u3067\u3044\u308b\n\u6fc0\u75e9\u305b\u30c9\u30ea\u30f3\u30af\u304c\u30b9\u30b4\u30a4\u306d\u3093\u3051\u3069( \uff9f\u0434\uff9f)\n\u21d2https:\/\/t.co\/SGHcIc1CMy https:\/\/t.co\/XCLhtqiMob","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003e\u30b4\u30b7\u30c3\u30d7\u307e\u3068\u3081\u901f\u5831( ^\u03c9^ )\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3099061681,"id_str":"3099061681","name":"\u30a8\u30ed\u57a2","screen_name":"erobot6","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":892,"created_at":"Fri Mar 20 06:50:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:04 +0000 2015","id":663722225304907776,"id_str":"663722225304907776","text":"\u6700\u8fd1\u30cd\u30c3\u30c8\u3084TV\u3067\u8a71\u984c\u306e\u300e\u6fc0\u75e9\u305b\u82b8\u80fd\u4eba\u300f\u304c\u5bc6\u304b\u306b\u98f2\u3093\u3067\u3044\u308b\n\u6fc0\u75e9\u305b\u30c9\u30ea\u30f3\u30af\u304c\u30b9\u30b4\u30a4\u306d\u3093\u3051\u3069( \uff9f\u0434\uff9f)\n\u21d2https:\/\/t.co\/SGHcIc1CMy https:\/\/t.co\/XCLhtqiMob","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003ewertkios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3723476599,"id_str":"3723476599","name":"\u3055\u3086\u308a\u3061","screen_name":"caopsaooq","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":30,"created_at":"Tue Sep 29 07:32:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657085222144487424\/gbdKkP8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657085222144487424\/gbdKkP8R_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SGHcIc1CMy","expanded_url":"http:\/\/bit.ly\/1PtQn6Q","display_url":"bit.ly\/1PtQn6Q","indices":[53,76]}],"user_mentions":[],"symbols":[],"media":[{"id":654205616739581953,"id_str":"654205616739581953","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":422,"resize":"fit"},"large":{"w":300,"h":422,"resize":"fit"},"small":{"w":300,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":654205616739581953,"id_str":"654205616739581953","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":422,"resize":"fit"},"large":{"w":300,"h":422,"resize":"fit"},"small":{"w":300,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"},{"id":654205616852877312,"id_str":"654205616852877312","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itqUwAA4bRI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itqUwAA4bRI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":184,"resize":"fit"},"small":{"w":320,"h":184,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":184,"resize":"fit"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"},{"id":654205616953520128,"id_str":"654205616953520128","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0iuCUcAAVLY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0iuCUcAAVLY4.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":218,"resize":"fit"},"medium":{"w":320,"h":218,"resize":"fit"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SGHcIc1CMy","expanded_url":"http:\/\/bit.ly\/1PtQn6Q","display_url":"bit.ly\/1PtQn6Q","indices":[68,91]}],"user_mentions":[{"screen_name":"caopsaooq","name":"\u3055\u3086\u308a\u3061","id":3723476599,"id_str":"3723476599","indices":[3,13]}],"symbols":[],"media":[{"id":654205616739581953,"id_str":"654205616739581953","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":422,"resize":"fit"},"large":{"w":300,"h":422,"resize":"fit"},"small":{"w":300,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":654205616739581953,"id_str":"654205616739581953","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itPUAAEqkHI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":422,"resize":"fit"},"large":{"w":300,"h":422,"resize":"fit"},"small":{"w":300,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"},{"id":654205616852877312,"id_str":"654205616852877312","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0itqUwAA4bRI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0itqUwAA4bRI.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":184,"resize":"fit"},"small":{"w":320,"h":184,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":184,"resize":"fit"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"},{"id":654205616953520128,"id_str":"654205616953520128","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CRQ0iuCUcAAVLY4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRQ0iuCUcAAVLY4.jpg","url":"https:\/\/t.co\/XCLhtqiMob","display_url":"pic.twitter.com\/XCLhtqiMob","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/654205618652184576\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":218,"resize":"fit"},"medium":{"w":320,"h":218,"resize":"fit"}},"source_status_id":654205618652184576,"source_status_id_str":"654205618652184576","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060666"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212471297,"id_str":"663727997212471297","text":"Countdown To Customer Service Excellence https:\/\/t.co\/5QGbdWJIxv #BigData","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1269383796,"id_str":"1269383796","name":"Data Scientists","screen_name":"DataScienceFr","location":"Paris, France","url":null,"description":"#BigData #DataScience #Analytics #Statistics #PredictiveModeling #ComputerScience #MachineLearning","protected":false,"verified":false,"followers_count":1525,"friends_count":532,"listed_count":196,"favourites_count":0,"statuses_count":3138,"created_at":"Fri Mar 15 10:33:24 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/815142663\/6dc57fd41b38674cd96718db02c7272b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/815142663\/6dc57fd41b38674cd96718db02c7272b.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584756112773226496\/djAQtEO5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584756112773226496\/djAQtEO5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1269383796\/1428251696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BigData","indices":[65,73]}],"urls":[{"url":"https:\/\/t.co\/5QGbdWJIxv","expanded_url":"http:\/\/bit.ly\/1WM3sZw","display_url":"bit.ly\/1WM3sZw","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220950016,"id_str":"663727997220950016","text":"@, @MairaCa49578258 te regal\u00f3 un 2x1. Descarga el cup\u00f3n para redimirlo: https:\/\/t.co\/ZQ2eamzkVR","source":"\u003ca href=\"http:\/\/comparteenmcdonalds.coca-cola.com.co\/\" rel=\"nofollow\"\u003eComparteEnMc Job\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727349821792257,"in_reply_to_status_id_str":"663727349821792257","in_reply_to_user_id":4149649707,"in_reply_to_user_id_str":"4149649707","in_reply_to_screen_name":"MairaCa49578258","user":{"id":3392320053,"id_str":"3392320053","name":"ComparteEnMc","screen_name":"ComparteEnMc","location":"Colombia","url":"http:\/\/comparteenmcdonalds.coca-cola.com.co\/","description":"Promoci\u00f3n de @CocaColaCol y @McDonaldsCol v\u00e1lida del 7 Oct - 30 Nov 2015. Consultar t\u00e9rminos en el link: http:\/\/bit.ly\/1jd1GEC","protected":false,"verified":false,"followers_count":24902,"friends_count":2,"listed_count":4,"favourites_count":77,"statuses_count":193193,"created_at":"Tue Jul 28 17:19:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352101628702720\/aXlDjFFK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352101628702720\/aXlDjFFK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3392320053\/1444166455","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZQ2eamzkVR","expanded_url":"https:\/\/secure.comparteenmcdonalds.coca-cola.com.co\/ssldocs\/site\/confirmTwitterAccount?keyId=lftk8q4hmz3wqjwngl9sse74kldbou0e","display_url":"\u2026.comparteenmcdonalds.coca-cola.com.co\/ssldocs\/site\/c\u2026","indices":[72,95]}],"user_mentions":[{"screen_name":"MairaCa49578258","name":"Maira Castro","id":4149649707,"id_str":"4149649707","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997191479297,"id_str":"663727997191479297","text":"RT @hohohoza: \uff1c\u672c\u65e5\u306e\u6c17\u306b\u306a\u308b\u5165\u8377\uff1e\u2462\u300eThis is Sports\u300f\u7530\u53e3\u7f8e\u65e9\u7d00\u3000\u30d0\u30b9\u30b1\u30c3\u30c8\u30dc\u30fc\u30eb\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u9678\u4e0a\u3001\u30d7\u30ed\u30ec\u30b9\u306a\u3069\u3092\u30e6\u30fc\u30e2\u30e9\u30b9\u306a\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u305f\u3061\u3067\u63cf\u3044\u305f\u56f3\u9451\u306e\u3088\u3046\u306a\u4f5c\u54c1\u96c6\u3002\uff12\uff15\uff10\u90e8\u9650\u5b9a https:\/\/t.co\/EN0b95xlVi https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374042925,"id_str":"374042925","name":"\u7530\u53e3\u7f8e\u65e9\u7d00","screen_name":"otaguchi_tabi","location":"\u6d5c\u5317\uff0d\u5927\u962a","url":"http:\/\/otaguchi.com\/","description":"\u3046\u304b\u308c\u305f\u6c17\u5206\u3067\u306f\u3058\u3081\u307e\u3057\u305f\u3002\u304a\u305f\u3050\u3061\u3067\u3059\u3002\u7d75\u3092\u304b\u3044\u305f\u308a\u3001\u3044\u308d\u3044\u308d\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u3069\u3046\u305e\n\nhttp:\/\/twitter.com\/otaguchi","protected":false,"verified":false,"followers_count":235,"friends_count":93,"listed_count":6,"favourites_count":367,"statuses_count":1691,"created_at":"Thu Sep 15 16:17:45 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2DA05","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1544165382\/07_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1544165382\/07_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:15:48 +0000 2015","id":663268668004921344,"id_str":"663268668004921344","text":"\uff1c\u672c\u65e5\u306e\u6c17\u306b\u306a\u308b\u5165\u8377\uff1e\u2462\u300eThis is Sports\u300f\u7530\u53e3\u7f8e\u65e9\u7d00\u3000\u30d0\u30b9\u30b1\u30c3\u30c8\u30dc\u30fc\u30eb\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u9678\u4e0a\u3001\u30d7\u30ed\u30ec\u30b9\u306a\u3069\u3092\u30e6\u30fc\u30e2\u30e9\u30b9\u306a\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u305f\u3061\u3067\u63cf\u3044\u305f\u56f3\u9451\u306e\u3088\u3046\u306a\u4f5c\u54c1\u96c6\u3002\uff12\uff15\uff10\u90e8\u9650\u5b9a https:\/\/t.co\/EN0b95xlVi https:\/\/t.co\/PjVbk8bCN3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99452256,"id_str":"99452256","name":"\u30db\u30db\u30db\u5ea7","screen_name":"hohohoza","location":"\u4eac\u90fd\u5e9c\u4eac\u90fd\u5e02\u5de6\u4eac\u533a\u6d44\u571f\u5bfa\u99ac\u5834\u753a\uff17\uff11\u3000\u30cf\u30a4\u30cd\u30b9\u30c8\u30d3\u30eb\uff11F\/2F","url":"http:\/\/hohohoza.com\/","description":"\u304a\u571f\u7523\u5c4b","protected":false,"verified":false,"followers_count":14852,"friends_count":3,"listed_count":1052,"favourites_count":0,"statuses_count":5275,"created_at":"Sat Dec 26 07:31:44 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566512653573447683\/VqM5Kcov_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566512653573447683\/VqM5Kcov_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d4255b2b43cbf2cc","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d4255b2b43cbf2cc.json","place_type":"admin","name":"\u4eac\u90fd\u5e9c","full_name":"\u65e5\u672c \u4eac\u90fd\u5e9c","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[134.867310,34.702613],[134.867310,35.779083],[136.048188,35.779083],[136.048188,34.702613]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EN0b95xlVi","expanded_url":"http:\/\/gake.shop-pro.jp\/?pid=95336199","display_url":"gake.shop-pro.jp\/?pid=95336199","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663268666310430720,"id_str":"663268666310430720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","url":"https:\/\/t.co\/PjVbk8bCN3","display_url":"pic.twitter.com\/PjVbk8bCN3","expanded_url":"http:\/\/twitter.com\/hohohoza\/status\/663268668004921344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":392,"h":554,"resize":"fit"},"medium":{"w":392,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663268666310430720,"id_str":"663268666310430720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","url":"https:\/\/t.co\/PjVbk8bCN3","display_url":"pic.twitter.com\/PjVbk8bCN3","expanded_url":"http:\/\/twitter.com\/hohohoza\/status\/663268668004921344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":392,"h":554,"resize":"fit"},"medium":{"w":392,"h":554,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EN0b95xlVi","expanded_url":"http:\/\/gake.shop-pro.jp\/?pid=95336199","display_url":"gake.shop-pro.jp\/?pid=95336199","indices":[107,130]}],"user_mentions":[{"screen_name":"hohohoza","name":"\u30db\u30db\u30db\u5ea7","id":99452256,"id_str":"99452256","indices":[3,12]}],"symbols":[],"media":[{"id":663268666310430720,"id_str":"663268666310430720","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","url":"https:\/\/t.co\/PjVbk8bCN3","display_url":"pic.twitter.com\/PjVbk8bCN3","expanded_url":"http:\/\/twitter.com\/hohohoza\/status\/663268668004921344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":392,"h":554,"resize":"fit"},"medium":{"w":392,"h":554,"resize":"fit"}},"source_status_id":663268668004921344,"source_status_id_str":"663268668004921344","source_user_id":99452256,"source_user_id_str":"99452256"}]},"extended_entities":{"media":[{"id":663268666310430720,"id_str":"663268666310430720","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRnVn4UkAAcExJ.jpg","url":"https:\/\/t.co\/PjVbk8bCN3","display_url":"pic.twitter.com\/PjVbk8bCN3","expanded_url":"http:\/\/twitter.com\/hohohoza\/status\/663268668004921344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":392,"h":554,"resize":"fit"},"medium":{"w":392,"h":554,"resize":"fit"}},"source_status_id":663268668004921344,"source_status_id_str":"663268668004921344","source_user_id":99452256,"source_user_id_str":"99452256"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060657"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997229207553,"id_str":"663727997229207553","text":"RT @0412_Sehunnn: \ub9ac\uc11c\uce58 \uc9d1\uacc4 \ub2e4 \ub05d\ub0ac\ub294\ub370 \uadf8\uac83\ub3c4 \ubaa8\ub974\uace0 \uacc4\uc18d \ud574\uc26c\ud0dc\uadf8 \ud558\uba70 \uc544\uae5d\uac8c \uc2dc\uac04\ub0a0\ub9b0 \uc883\uac00\ud2bc \uae30\ubd84\uc744 \ud22c\ud45c\uc640 \uc2a4\ubc0d\ud558\uba70 \ud480\uc5b4\uc694.. \ubd80\ub4e4\ubd80\ub4e4...\n\n\ub9c8\ub9c8\ud22c\ud45c - https:\/\/t.co\/fxQ4lKsZka\n\n\ubba4\ube44\uc2a4\ubc0d - https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2956324392,"id_str":"2956324392","name":"\uc815\uc0ac\ub791","screen_name":"sarang506","location":"BAEK TOP","url":"http:\/\/ask.fm\/sarang506","description":"\ub124 \ub9c8\uc74c\uc774 \ubc14\ub85c \ub098\uc758 \uc138\uacc4\uc57c @Amor_luz56","protected":false,"verified":false,"followers_count":777,"friends_count":253,"listed_count":1,"favourites_count":2950,"statuses_count":57491,"created_at":"Fri Jan 02 17:35:14 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615760043644850176\/3aqND0_Q.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615760043644850176\/3aqND0_Q.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660381578283974657\/DfeKYIDz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660381578283974657\/DfeKYIDz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2956324392\/1445612697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:48 +0000 2015","id":663727692483694592,"id_str":"663727692483694592","text":"\ub9ac\uc11c\uce58 \uc9d1\uacc4 \ub2e4 \ub05d\ub0ac\ub294\ub370 \uadf8\uac83\ub3c4 \ubaa8\ub974\uace0 \uacc4\uc18d \ud574\uc26c\ud0dc\uadf8 \ud558\uba70 \uc544\uae5d\uac8c \uc2dc\uac04\ub0a0\ub9b0 \uc883\uac00\ud2bc \uae30\ubd84\uc744 \ud22c\ud45c\uc640 \uc2a4\ubc0d\ud558\uba70 \ud480\uc5b4\uc694.. \ubd80\ub4e4\ubd80\ub4e4...\n\n\ub9c8\ub9c8\ud22c\ud45c - https:\/\/t.co\/fxQ4lKsZka\n\n\ubba4\ube44\uc2a4\ubc0d - https:\/\/t.co\/EboEO2xqsD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225484771,"id_str":"3225484771","name":"\uccad\ub791 (\u0e51\u203a \u1d4c \u2039\u0e51)","screen_name":"0412_Sehunnn","location":"Present time 15:00 ~ 15:25","url":"http:\/\/sehunluv412.tumblr.com\/","description":"\ub108\uc758 \ucc2c\ub780\ud55c \uc2a4\ubb3c \ub450 \uc0b4 \uccad\ucd98\uc744 \uc751\uc6d0\ud574 \u2764 \u6211\u6c38\u8fdc\u652f\u6301\u4f60\uff01 http:\/\/mama.mwave.me\/vote","protected":false,"verified":false,"followers_count":2700,"friends_count":465,"listed_count":8,"favourites_count":10,"statuses_count":21887,"created_at":"Sun May 24 16:33:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724859000684545\/urXAzpmu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724859000684545\/urXAzpmu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225484771\/1446996881","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fxQ4lKsZka","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[81,104]},{"url":"https:\/\/t.co\/EboEO2xqsD","expanded_url":"https:\/\/youtu.be\/yWfsla_Uh80","display_url":"youtu.be\/yWfsla_Uh80","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fxQ4lKsZka","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[99,122]},{"url":"https:\/\/t.co\/EboEO2xqsD","expanded_url":"https:\/\/youtu.be\/yWfsla_Uh80","display_url":"youtu.be\/yWfsla_Uh80","indices":[139,140]}],"user_mentions":[{"screen_name":"0412_Sehunnn","name":"\uccad\ub791 (\u0e51\u203a \u1d4c \u2039\u0e51)","id":3225484771,"id_str":"3225484771","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080060666"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997225074688,"id_str":"663727997225074688","text":"Not PARENTS, SOCIETY rather. But... Don't ever be shaped by this world. https:\/\/t.co\/PGVMKVR1Mu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521023780,"id_str":"521023780","name":"G. \u2728","screen_name":"angelamericig","location":"PH","url":"http:\/\/www.instagram.com\/angelamericig","description":"b l e s s e d","protected":false,"verified":false,"followers_count":2005,"friends_count":1150,"listed_count":5,"favourites_count":6960,"statuses_count":3229,"created_at":"Sun Mar 11 05:03:51 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662820352376963073\/zzCQLuDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662820352376963073\/zzCQLuDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521023780\/1445954986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726335445987328,"quoted_status_id_str":"663726335445987328","quoted_status":{"created_at":"Mon Nov 09 14:34:24 +0000 2015","id":663726335445987328,"id_str":"663726335445987328","text":"Parents: https:\/\/t.co\/MpLS7BCjnK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359717144,"id_str":"2359717144","name":"Funny Answers (:","screen_name":"artsofdrawing","location":"New York, USA","url":null,"description":"Bringing u the best funny answer to make u laugh hard until ur stomach pain !!!","protected":false,"verified":false,"followers_count":169926,"friends_count":89613,"listed_count":260,"favourites_count":42,"statuses_count":3861,"created_at":"Sat Feb 22 23:39:27 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359717144\/1446184624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PGVMKVR1Mu","expanded_url":"https:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328","display_url":"twitter.com\/artsofdrawing\/\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060665"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220851712,"id_str":"663727997220851712","text":"RT @baddsoup: \u0e2a\u0e32\u0e22\u0e01\u0e35\u0e15\u0e32\u0e23\u0e4c\u0e41\u0e21\u0e48\u0e07\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e04\u0e19\u0e1a\u0e32\u0e07\u0e04\u0e19\u0e14\u0e35\u0e19\u0e30\n\u0e22\u0e34\u0e48\u0e07\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e40\u0e23\u0e35\u0e22\u0e19\u0e23\u0e39\u0e49\u0e21\u0e32\u0e01\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e22\u0e34\u0e48\u0e07\u0e40\u0e08\u0e47\u0e1a\n\u0e04\u0e27\u0e22\u0e40\u0e16\u0e2d\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96276169,"id_str":"96276169","name":"Solitude","screen_name":"baviiew","location":null,"url":null,"description":"\u0e09\u0e31\u0e19\u0e41\u0e1e\u0e49","protected":false,"verified":false,"followers_count":626,"friends_count":291,"listed_count":7,"favourites_count":1869,"statuses_count":83613,"created_at":"Sat Dec 12 04:38:40 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7FF00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000048974355\/ab44e2f799aadb4ae986dfe4098defe0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000048974355\/ab44e2f799aadb4ae986dfe4098defe0.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"4D4C48","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662265734001618944\/HdEw9AnO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662265734001618944\/HdEw9AnO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96276169\/1445793241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:37:59 +0000 2015","id":662987360297074689,"id_str":"662987360297074689","text":"\u0e2a\u0e32\u0e22\u0e01\u0e35\u0e15\u0e32\u0e23\u0e4c\u0e41\u0e21\u0e48\u0e07\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e04\u0e19\u0e1a\u0e32\u0e07\u0e04\u0e19\u0e14\u0e35\u0e19\u0e30\n\u0e22\u0e34\u0e48\u0e07\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e40\u0e23\u0e35\u0e22\u0e19\u0e23\u0e39\u0e49\u0e21\u0e32\u0e01\u0e40\u0e17\u0e48\u0e32\u0e44\u0e2b\u0e23\u0e48\u0e22\u0e34\u0e48\u0e07\u0e40\u0e08\u0e47\u0e1a\n\u0e04\u0e27\u0e22\u0e40\u0e16\u0e2d\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":453312760,"id_str":"453312760","name":"aek alter","screen_name":"baddsoup","location":null,"url":null,"description":"HeadskinheadWearliverpoolshirt\nListeningallofrocknrollmusic\nLefthandholdwong-ka-waimovie","protected":false,"verified":false,"followers_count":555,"friends_count":150,"listed_count":0,"favourites_count":215,"statuses_count":3737,"created_at":"Mon Jan 02 20:04:26 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663455036794470400\/w9JvpXZ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663455036794470400\/w9JvpXZ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/453312760\/1446903617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"baddsoup","name":"aek alter","id":453312760,"id_str":"453312760","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997216665600,"id_str":"663727997216665600","text":"@nii32525 \u30cf\u30fc\u30c8\uff65\uff65\uff65\u30cf\u30fc\u30c8\uff65\uff65\uff65\u4e09(((((\u00b4\u03c9`\uff1b)\uff7d\uff7d\uff7d\uff70\u2190\u3053\u3089w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698923245015040,"in_reply_to_status_id_str":"663698923245015040","in_reply_to_user_id":2993003792,"in_reply_to_user_id_str":"2993003792","in_reply_to_screen_name":"nii32525","user":{"id":3235875355,"id_str":"3235875355","name":"\u30e9\u30a6\u30b7\u30e3\u30b9@\u3077\u3061\u304f\u308d","screen_name":"luscious_puchi","location":null,"url":null,"description":"\u3077\u3061\u304f\u308d\u5c02\u7528\uff08\u73fe\u5b9f\u9003\u907f\u7528w\uff09\u666e\u6bb5\u30ea\u30a2\u30eb\u306b\u51fa\u305b\u306a\u3044\u9762\u7528\u3002\u8272\u3093\u306a\u79c1\u304c\u898b\u308c\u308b\u304b\u3082\u2026w\uff08\u95b2\u89a7\u7528\u306b\u306a\u308b\u304b\u3082\u3060\u3051\u3069\uff09","protected":false,"verified":false,"followers_count":26,"friends_count":18,"listed_count":0,"favourites_count":298,"statuses_count":291,"created_at":"Thu Jun 04 08:25:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643012891499630592\/P9iKCvl8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643012891499630592\/P9iKCvl8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235875355\/1441857546","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nii32525","name":"\u306b\u3043.\u3002@\u3077\u3061\u304f\u308d\u3001\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3","id":2993003792,"id_str":"2993003792","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060663"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997195788288,"id_str":"663727997195788288","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/czzD8sWkbf","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3969288732,"id_str":"3969288732","name":"Andrei Swift","screen_name":"Swift1Andrei","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":4,"listed_count":10,"favourites_count":6,"statuses_count":32817,"created_at":"Wed Oct 21 13:12:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657669863691845632\/-XkuEITs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657669863691845632\/-XkuEITs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3969288732\/1445548775","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727601555513344,"quoted_status_id_str":"663727601555513344","quoted_status":{"created_at":"Mon Nov 09 14:39:26 +0000 2015","id":663727601555513344,"id_str":"663727601555513344","text":"TUNAyyyNaMAMON #PushAwardsLizQuens https:\/\/t.co\/3Fd60kjUux","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727290434629632,"quoted_status_id_str":"663727290434629632","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/3Fd60kjUux","expanded_url":"http:\/\/twitter.com\/TUNAyyyNaMAMON\/status\/663727290434629632","display_url":"twitter.com\/TUNAyyyNaMAMON\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/czzD8sWkbf","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727601555513344","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060658"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212430337,"id_str":"663727997212430337","text":"Pinterest\u2019s \u201cFlashlight\u201d Search Tool Goes Live! Search within Pins on\u00a0Pinterest https:\/\/t.co\/mPAd6UiT0R","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236425960,"id_str":"3236425960","name":"PinRight","screen_name":"pin_right","location":"London, England","url":"http:\/\/www.pinright.com","description":"Pinterest Tutorials, Tips & Training for Business","protected":false,"verified":false,"followers_count":50,"friends_count":17,"listed_count":10,"favourites_count":20,"statuses_count":94,"created_at":"Tue May 05 17:28:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"C5272D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638308263063363584\/jRtuTihV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638308263063363584\/jRtuTihV_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mPAd6UiT0R","expanded_url":"http:\/\/www.pinright.com\/pinterests-flashlight-search-tool-goes-live-search-within-pins-on-pinterest\/","display_url":"pinright.com\/pinterests-fla\u2026","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212426241,"id_str":"663727997212426241","text":"RT @pinkjyoudai: \u3068\u3053\u308d\u304c\u3046\u3061\u306b\u306f\u3059\u3067\u306b\u3042\u308b\u3002\uff1eRT\n\u3057\u304b\u3082\u8349\u647a\u90e8\u5206\u306f\u672c\u6b4c\u3089\u3057\u3044\u3002\n(\u30b2\u30b2\u4ead\u4f5c\u7532\u5191\u30dd\u30fc\u30c1) https:\/\/t.co\/EWiZGjXpmO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339940679,"id_str":"339940679","name":"yuzuki","screen_name":"x_YUZUKI_x","location":null,"url":"http:\/\/ncode.syosetu.com\/n6956cp","description":"\u3053\u3061\u3089\u306f\u30b2\u30fc\u30de\u30fc\u3001\u58f0\u512a\u6cbc\u30a2\u30ab\u3002\u30b3\u30fc\u30a8\u30fc\u30c6\u30af\u30e2&\u6b74\u53f2\u30aa\u30bf\u3002\u7121\u53cc\u3001\u9059\u304b\u3002\u9aa8\u6298\u30ea\u30cf\u30d3\u30ea\u4e2d\u3002\u30d5\u30a3\u30af\u30b7\u30e7\u30f3\u5275\u4f5c\u95a2\u4fc2\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f@yuzuki_nakatomi\u3002\u4e8c\u6b21\u3067\u306f\u306a\u304f\u30aa\u30ea\u30b8\u30ca\u30eb\u3002\u30b7\u30ca\u30ea\u30aa\u53c2\u52a0\u3057\u3066MS\u3057\u3066\u3044\u308b\u30ea\u30f3\u30af\u30d6\u30ec\u30a4\u30d6\u3068\u3044\u3046\u30b2\u30fc\u30e0\u304c\u59cb\u52d5\u3057\u307e\u3057\u305f\u3002\u30e9\u30a4\u30bf\u30fc\u3001\u5c0f\u8aac\u66f8\u304d\u3067\u3059\u3002\u30ce\u30f3\u30d5\u30a3\u30af\u30b7\u30e7\u30f3\u7cfb\u30e9\u30a4\u30bf\u30fc\u304a\u4ed5\u4e8b\u30a2\u30ab\u306f\u307e\u305f\u5225\u306b\u3002","protected":false,"verified":false,"followers_count":52,"friends_count":87,"listed_count":1,"favourites_count":193,"statuses_count":1630,"created_at":"Thu Jul 21 22:17:10 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660773172938051584\/2mA51nzZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660773172938051584\/2mA51nzZ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:18 +0000 2015","id":663726056906428416,"id_str":"663726056906428416","text":"\u3068\u3053\u308d\u304c\u3046\u3061\u306b\u306f\u3059\u3067\u306b\u3042\u308b\u3002\uff1eRT\n\u3057\u304b\u3082\u8349\u647a\u90e8\u5206\u306f\u672c\u6b4c\u3089\u3057\u3044\u3002\n(\u30b2\u30b2\u4ead\u4f5c\u7532\u5191\u30dd\u30fc\u30c1) https:\/\/t.co\/EWiZGjXpmO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1968341545,"id_str":"1968341545","name":"\u78a7\u4e5f\u3074\u3093\u304f\u2605\u5929\u4e0b\u4e00!!\u30fb\u7fa9\u7d4c\u9b3c11\u6708\u65b0\u520a","screen_name":"pinkjyoudai","location":null,"url":"http:\/\/blog.goo.ne.jp\/pink-a-gvc","description":"\u6f2b\u753b\u5bb6\u30fb\u78a7\u4e5f\u3074\u3093\u304f\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\n\u300c\u7fa9\u7d4c\u9b3c\u300d(\u79cb\u7530\u66f8\u5e97\u30d7\u30ea\u30f3\u30bb\u30b9GOLD)\u9694\u6708\u9023\u8f09\u4e2d\u3002\u300c\u5929\u4e0b\u4e00!!\u300d(\u65b0\u66f8\u9928\u30a6\u30a3\u30f3\u30b0\u30b9)\u756a\u5916\u7de8\u4e0d\u5b9a\u671f\u9023\u8f09\u4e2d\u3002\n\u81ea\u4f5c\u30fb\u304a\u77e5\u3089\u305b\u30fb\u6b74\u53f2\u95a2\u4fc2\u306e\u545f\u304d\u591a\u3081\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u306f\u3054\u81ea\u7531\u306b\u3069\u3046\u305e!!","protected":false,"verified":false,"followers_count":1342,"friends_count":59,"listed_count":75,"favourites_count":175,"statuses_count":11969,"created_at":"Fri Oct 18 06:38:49 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF99EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097518200\/9d19b4076bc4371eaa570b38c1fb23e2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097518200\/9d19b4076bc4371eaa570b38c1fb23e2.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638568770861043712\/cf31oixz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638568770861043712\/cf31oixz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1968341545\/1404201686","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726044994670592,"id_str":"663726044994670592","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","url":"https:\/\/t.co\/EWiZGjXpmO","display_url":"pic.twitter.com\/EWiZGjXpmO","expanded_url":"http:\/\/twitter.com\/pinkjyoudai\/status\/663726056906428416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726044994670592,"id_str":"663726044994670592","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","url":"https:\/\/t.co\/EWiZGjXpmO","display_url":"pic.twitter.com\/EWiZGjXpmO","expanded_url":"http:\/\/twitter.com\/pinkjyoudai\/status\/663726056906428416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pinkjyoudai","name":"\u78a7\u4e5f\u3074\u3093\u304f\u2605\u5929\u4e0b\u4e00!!\u30fb\u7fa9\u7d4c\u9b3c11\u6708\u65b0\u520a","id":1968341545,"id_str":"1968341545","indices":[3,15]}],"symbols":[],"media":[{"id":663726044994670592,"id_str":"663726044994670592","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","url":"https:\/\/t.co\/EWiZGjXpmO","display_url":"pic.twitter.com\/EWiZGjXpmO","expanded_url":"http:\/\/twitter.com\/pinkjyoudai\/status\/663726056906428416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663726056906428416,"source_status_id_str":"663726056906428416","source_user_id":1968341545,"source_user_id_str":"1968341545"}]},"extended_entities":{"media":[{"id":663726044994670592,"id_str":"663726044994670592","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHUkQVEAAU1Oq.jpg","url":"https:\/\/t.co\/EWiZGjXpmO","display_url":"pic.twitter.com\/EWiZGjXpmO","expanded_url":"http:\/\/twitter.com\/pinkjyoudai\/status\/663726056906428416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663726056906428416,"source_status_id_str":"663726056906428416","source_user_id":1968341545,"source_user_id_str":"1968341545"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212495872,"id_str":"663727997212495872","text":"Vybz Kartel\n- I Neve\n\u3084\u3063\u3071\u3001junkanoo riddim\u306f\u3053\u306e\u4eba\uff01\uff01 https:\/\/t.co\/bc3ACwjxmA","source":"\u003ca href=\"https:\/\/www.yahoo.co.jp\" rel=\"nofollow\"\u003e\u53f0\u98a8\u516b\u90ce\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321361952,"id_str":"3321361952","name":"\u30d1\u30c8\u30ef\u8a9ebot","screen_name":"bot24798440","location":"Jamaica","url":null,"description":"\u5b9a\u671f\u7684\u306b\u30d1\u30c8\u30ef\u8a9e\u8f9e\u5178\u306e\u69d8\u306a\u3064\u3076\u3084\u304d\u306830\u79d2\u306eMV\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u307e\u305f\u5404\u5730\u306edance\u60c5\u5831\u3084deejay\u3084sound\u306e\u97f3\u6e90\u3082\u62e1\u6563\u81f4\u3057\u307e\u3059\u306e\u3067\u662f\u975e\u30d5\u30a9\u30ed\u30fc\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u5927\u597d\u304d\u306a\u30ec\u30b2\u30a8\u306e\u7d20\u6674\u3089\u3057\u3055\u3092\u8272\u3093\u306a\u4eba\u3068\u5206\u304b\u3061\u5408\u3044\u305f\u3044\u3067\u3059\u3002#\u30b8\u30e3\u30d1\u30ec\u30b2 \u266fJAMAICA\u266fREGGAE\u266f\u30ec\u30b2\u30a8","protected":false,"verified":false,"followers_count":3387,"friends_count":3351,"listed_count":1,"favourites_count":17,"statuses_count":1368,"created_at":"Thu Aug 20 13:07:12 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634355346706817024\/t-73w0Ww_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634355346706817024\/t-73w0Ww_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3321361952\/1440078133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":654544180455206912,"id_str":"654544180455206912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654544180455206912\/pu\/img\/d9K_AegHJdqO4jNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654544180455206912\/pu\/img\/d9K_AegHJdqO4jNw.jpg","url":"https:\/\/t.co\/bc3ACwjxmA","display_url":"pic.twitter.com\/bc3ACwjxmA","expanded_url":"http:\/\/twitter.com\/bot24798440\/status\/654544236700807168\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":654544236700807168,"source_status_id_str":"654544236700807168","source_user_id":3321361952,"source_user_id_str":"3321361952"}]},"extended_entities":{"media":[{"id":654544180455206912,"id_str":"654544180455206912","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654544180455206912\/pu\/img\/d9K_AegHJdqO4jNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654544180455206912\/pu\/img\/d9K_AegHJdqO4jNw.jpg","url":"https:\/\/t.co\/bc3ACwjxmA","display_url":"pic.twitter.com\/bc3ACwjxmA","expanded_url":"http:\/\/twitter.com\/bot24798440\/status\/654544236700807168\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":654544236700807168,"source_status_id_str":"654544236700807168","source_user_id":3321361952,"source_user_id_str":"3321361952","video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/654544180455206912\/pu\/pl\/osIckHXMLlj7QN9N.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654544180455206912\/pu\/vid\/320x180\/SjINgWylw5bMc6Aw.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/654544180455206912\/pu\/pl\/osIckHXMLlj7QN9N.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/654544180455206912\/pu\/vid\/640x360\/mBq6JJNaqRUDEgus.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654544180455206912\/pu\/vid\/640x360\/mBq6JJNaqRUDEgus.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997216681984,"id_str":"663727997216681984","text":"RT @nujxnepu: \u8a00\u8449\u304c\u60aa\u3044\u306e\u627f\u77e5\u3067\u8a00\u3044\u307e\u3059\n\u307b\u3068\u3093\u3069\u30a2\u30ca\u30eb\u3057\u304b\u89e6\u3089\u306a\u3044\u4eba\u306f\u4f55\u304c\u76ee\u6a19\u3067\u30aa\u30ca\u30cb\u30fc\u3084\u3063\u3066\u308b\u306e\u304b\u4ffa\u306b\u306f\u308f\u304b\u308a\u307e\u305b\u3093\n\u305f\u3060\u30b1\u30c4\u7a74\u62e1\u5f35\u3057\u3066\uff62\u4ffa\u30db\u30e2\uff63\u3063\u3066\u3057\u305f\u3044\u3060\u3051\uff1f\n\u305d\u3046\u3044\u3046\u4eba\u306f\u90fd\u4f1a\u3067\u81ea\u5206\u3088\u308a\u5de8\u6839\u306a\u4eba\u3068\u30bb\u30c3\u30af\u30b9\u3057\u3066\u6065\u304b\u3051\u3070\u3044\u3044\n\u81ea\u5206\u306b\u9069\u3057\u305f\u30aa\u30ca\u30cb\u30fc\u3059\u308b\u65b9\u304c\u4ffa\u306f\u6c17\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607122210,"id_str":"2607122210","name":"\u3064\u3080@\u30a8\u30d0\u30e9\u30b9\u56de169%\u306e\u30e2\u30d6","screen_name":"7sum_s","location":"Ibaraki ","url":"http:\/\/bluekingdragon.dip.jp\/sdvx\/showUserData.php?id=tsumu6140","description":"\u793e\u4f1a\u4eba\u306a\u308a\u305f\u3066\u306a\u306e\u3067\u4ed5\u4e8b\u9811\u5f35\u3089\u306a\u3044\u3068() SDVX\u91d1\u67a0\u66b4\u9f8d\u5929(20150718\u521d\u53d6\u5f97)\/\u5f10\u5bfaSP\u4e5d\u6bb5\/\u30ea\u30d5\u30ec\u30afCLASS1\/AVA\/\u767d\u732b\/coj\u59cb\u3081\u305f\u3066(S2) etc... \u30fe(\uff20\u2312\u30fc\u2312\uff20)\u30ce","protected":false,"verified":false,"followers_count":181,"friends_count":181,"listed_count":8,"favourites_count":6407,"statuses_count":12937,"created_at":"Sun Jul 06 08:48:59 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652510415851687936\/m0z24gSE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652510415851687936\/m0z24gSE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607122210\/1441290863","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:09 +0000 2015","id":663727780731863040,"id_str":"663727780731863040","text":"\u8a00\u8449\u304c\u60aa\u3044\u306e\u627f\u77e5\u3067\u8a00\u3044\u307e\u3059\n\u307b\u3068\u3093\u3069\u30a2\u30ca\u30eb\u3057\u304b\u89e6\u3089\u306a\u3044\u4eba\u306f\u4f55\u304c\u76ee\u6a19\u3067\u30aa\u30ca\u30cb\u30fc\u3084\u3063\u3066\u308b\u306e\u304b\u4ffa\u306b\u306f\u308f\u304b\u308a\u307e\u305b\u3093\n\u305f\u3060\u30b1\u30c4\u7a74\u62e1\u5f35\u3057\u3066\uff62\u4ffa\u30db\u30e2\uff63\u3063\u3066\u3057\u305f\u3044\u3060\u3051\uff1f\n\u305d\u3046\u3044\u3046\u4eba\u306f\u90fd\u4f1a\u3067\u81ea\u5206\u3088\u308a\u5de8\u6839\u306a\u4eba\u3068\u30bb\u30c3\u30af\u30b9\u3057\u3066\u6065\u304b\u3051\u3070\u3044\u3044\n\u81ea\u5206\u306b\u9069\u3057\u305f\u30aa\u30ca\u30cb\u30fc\u3059\u308b\u65b9\u304c\u4ffa\u306f\u6c17\u6301\u3061\u826f\u3044\u3068\u601d\u3063\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2607189758,"id_str":"2607189758","name":"\u6765\u4e16\u306fJK\u306e\u30b1\u30c4\u6bdb","screen_name":"nujxnepu","location":"\u30d7\u30e9\u30cd\u30c6\u30e5\u30fc\u30cc","url":null,"description":"\u9b45\u73b2(\u307f\u308c\u3044)\u3068\u7533\u3057\u307e\u3059\u266a\u30c1\u30e5\u30a6\u30cb\u30ba\u30e0AJ75\/102 \u30ea\u30d7\u3057\u3066\u304f\u308c\u308c\u3070\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059\u2606\u8ab0\u3088\u308a\u3082\u6b63\u5e38\u306a\u601d\u8003\u3092\u6301\u3063\u3066\u308b\u2764\ufe0f@NubesukoXXX_T","protected":false,"verified":false,"followers_count":382,"friends_count":240,"listed_count":33,"favourites_count":2074,"statuses_count":40075,"created_at":"Sun Jul 06 09:43:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659333771959791616\/EnbwOL5l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659333771959791616\/EnbwOL5l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2607189758\/1447031920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nujxnepu","name":"\u6765\u4e16\u306fJK\u306e\u30b1\u30c4\u6bdb","id":2607189758,"id_str":"2607189758","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060663"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997199843328,"id_str":"663727997199843328","text":"RT @kadobakidon: JUMP\u306e\u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3\u30b3\u30e9\u30dc\u304f\u3058\u306e\u666f\u54c1\u306b\u30cf\u30f3\u30ac\u30fc\u304c\u3042\u308b\u3093\u3060\u3051\u3069\u3053\u308c\u3063\u3066\u3044\u3064\u3057\u304b\u306eNEWS\u5148\u8f29\u3068\u30e9\u30b9\u30b1\u30fc\u306e\u30b3\u30e9\u30dc\u30cf\u30f3\u30ac\u30fc\u307f\u305f\u3044\u306b\u30cf\u30f3\u30ac\u30fc\u306b\u30e1\u30f3\u30ba\u670d\u304b\u3051\u3066\u98fe\u3063\u3066\u904a\u3079\u308b\u3063\u3066\u4e8b\u3060\u3088\u306d\uff01\uff01\uff01\u304f\u3058\u5f15\u304f\uff01\uff01\uff01\u8d85\u5f15\u304f\uff01\uff01\uff01\uff01(\u753b\u50cf:\u53c2\u8003 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3318659952,"id_str":"3318659952","name":"\u307e\u304d\u30e1\u30ed","screen_name":"d_y_415","location":"next\u27b3\u30b8\u30e3\u30cb\u30b9\u30c8 01.23.24 1\u90e8","url":"http:\/\/twpf.jp\/d_y_415","description":"\u6709\u5ca1\u304f\u3093\u2661\u2661\/'98","protected":false,"verified":false,"followers_count":167,"friends_count":185,"listed_count":9,"favourites_count":5888,"statuses_count":5301,"created_at":"Tue Aug 18 13:32:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658858299790462976\/d9JIAeFZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658858299790462976\/d9JIAeFZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318659952\/1445757334","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:46:53 +0000 2015","id":663351989049274368,"id_str":"663351989049274368","text":"JUMP\u306e\u30bb\u30d6\u30f3\u30a4\u30ec\u30d6\u30f3\u30b3\u30e9\u30dc\u304f\u3058\u306e\u666f\u54c1\u306b\u30cf\u30f3\u30ac\u30fc\u304c\u3042\u308b\u3093\u3060\u3051\u3069\u3053\u308c\u3063\u3066\u3044\u3064\u3057\u304b\u306eNEWS\u5148\u8f29\u3068\u30e9\u30b9\u30b1\u30fc\u306e\u30b3\u30e9\u30dc\u30cf\u30f3\u30ac\u30fc\u307f\u305f\u3044\u306b\u30cf\u30f3\u30ac\u30fc\u306b\u30e1\u30f3\u30ba\u670d\u304b\u3051\u3066\u98fe\u3063\u3066\u904a\u3079\u308b\u3063\u3066\u4e8b\u3060\u3088\u306d\uff01\uff01\uff01\u304f\u3058\u5f15\u304f\uff01\uff01\uff01\u8d85\u5f15\u304f\uff01\uff01\uff01\uff01(\u753b\u50cf:\u53c2\u8003 https:\/\/t.co\/ppgezX8Ufh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022020866,"id_str":"1022020866","name":"\u3070\u3063\u304d\u30fc","screen_name":"kadobakidon","location":"\u6771\u4eac","url":null,"description":"\u30a2\u30a4\u30c9\u30eb\u3063\u3066\u3001\u3059\u3054\u3044\u3002","protected":false,"verified":false,"followers_count":3529,"friends_count":58,"listed_count":38,"favourites_count":1217,"statuses_count":17298,"created_at":"Wed Dec 19 12:56:32 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635633917089878016\/LlBCJnGf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635633917089878016\/LlBCJnGf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1022020866\/1431502541","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":836,"favorite_count":635,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663351978081153024,"id_str":"663351978081153024","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":319,"h":239,"resize":"fit"},"medium":{"w":319,"h":239,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663351978081153024,"id_str":"663351978081153024","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":319,"h":239,"resize":"fit"},"medium":{"w":319,"h":239,"resize":"fit"}}},{"id":663351978081189888,"id_str":"663351978081189888","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaVAAAIKVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaVAAAIKVs.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":288,"resize":"fit"},"large":{"w":480,"h":288,"resize":"fit"}}},{"id":663351978085384192,"id_str":"663351978085384192","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAbVAAAkAZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAbVAAAkAZB.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"medium":{"w":572,"h":285,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":572,"h":285,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kadobakidon","name":"\u3070\u3063\u304d\u30fc","id":1022020866,"id_str":"1022020866","indices":[3,15]}],"symbols":[],"media":[{"id":663351978081153024,"id_str":"663351978081153024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":319,"h":239,"resize":"fit"},"medium":{"w":319,"h":239,"resize":"fit"}},"source_status_id":663351989049274368,"source_status_id_str":"663351989049274368","source_user_id":1022020866,"source_user_id_str":"1022020866"}]},"extended_entities":{"media":[{"id":663351978081153024,"id_str":"663351978081153024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaUcAA6pIQ.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":319,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":319,"h":239,"resize":"fit"},"medium":{"w":319,"h":239,"resize":"fit"}},"source_status_id":663351989049274368,"source_status_id_str":"663351989049274368","source_user_id":1022020866,"source_user_id_str":"1022020866"},{"id":663351978081189888,"id_str":"663351978081189888","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAaVAAAIKVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAaVAAAIKVs.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":288,"resize":"fit"},"large":{"w":480,"h":288,"resize":"fit"}},"source_status_id":663351989049274368,"source_status_id_str":"663351989049274368","source_user_id":1022020866,"source_user_id_str":"1022020866"},{"id":663351978085384192,"id_str":"663351978085384192","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSzHAbVAAAkAZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSzHAbVAAAkAZB.jpg","url":"https:\/\/t.co\/ppgezX8Ufh","display_url":"pic.twitter.com\/ppgezX8Ufh","expanded_url":"http:\/\/twitter.com\/kadobakidon\/status\/663351989049274368\/photo\/1","type":"photo","sizes":{"medium":{"w":572,"h":285,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":572,"h":285,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"}},"source_status_id":663351989049274368,"source_status_id_str":"663351989049274368","source_user_id":1022020866,"source_user_id_str":"1022020866"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080060659"} +{"delete":{"status":{"id":601690763978747904,"id_str":"601690763978747904","user_id":3041923945,"user_id_str":"3041923945"},"timestamp_ms":"1447080060857"}} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997200019456,"id_str":"663727997200019456","text":"El flagelo de comprar ropa plus size en Argentina https:\/\/t.co\/SvjvYMeIR4\n\nLa ley de talles son los padres.\n\nSea cual sea tu tipo de cuerp\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362299894,"id_str":"2362299894","name":"Ignacio Jim\u00e9nez","screen_name":"IgnJim","location":"Colima","url":null,"description":null,"protected":false,"verified":false,"followers_count":107,"friends_count":160,"listed_count":2,"favourites_count":0,"statuses_count":5501,"created_at":"Wed Feb 26 07:27:34 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514472769879171072\/8TM1UIXS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514472769879171072\/8TM1UIXS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362299894\/1411570553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SvjvYMeIR4","expanded_url":"http:\/\/ift.tt\/1kFVW6p","display_url":"ift.tt\/1kFVW6p","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060659"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997220990976,"id_str":"663727997220990976","text":"Truth. https:\/\/t.co\/9SkDyXJ5ag","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2757092738,"id_str":"2757092738","name":"Nae","screen_name":"__vernaee","location":"Sacramento, CA \u2708\ufe0f Howard U.","url":"http:\/\/rahman-n-smiths.tumblr.com","description":"Gay. Feminist. Activist.","protected":false,"verified":false,"followers_count":573,"friends_count":397,"listed_count":0,"favourites_count":15818,"statuses_count":16740,"created_at":"Sat Aug 23 00:32:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662735071699300352\/vlwymlin_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662735071699300352\/vlwymlin_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2757092738\/1438753994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727978392608768,"id_str":"663727978392608768","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFGuUYAAExLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFGuUYAAExLZ.jpg","url":"https:\/\/t.co\/9SkDyXJ5ag","display_url":"pic.twitter.com\/9SkDyXJ5ag","expanded_url":"http:\/\/twitter.com\/__vernaee\/status\/663727997220990976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":609,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":638,"h":648,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727978392608768,"id_str":"663727978392608768","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFGuUYAAExLZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFGuUYAAExLZ.jpg","url":"https:\/\/t.co\/9SkDyXJ5ag","display_url":"pic.twitter.com\/9SkDyXJ5ag","expanded_url":"http:\/\/twitter.com\/__vernaee\/status\/663727997220990976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":609,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":638,"h":648,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060664"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997199880192,"id_str":"663727997199880192","text":"@anego555anego https:\/\/t.co\/I9wW5Pz9kl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718811762212864,"in_reply_to_status_id_str":"663718811762212864","in_reply_to_user_id":163289471,"in_reply_to_user_id_str":"163289471","in_reply_to_screen_name":"anego555anego","user":{"id":2595675806,"id_str":"2595675806","name":"shige1972","screen_name":"shige19720406","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":73,"friends_count":131,"listed_count":0,"favourites_count":766,"statuses_count":154,"created_at":"Mon Jun 30 02:50:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483469492098318337\/40_OxiX6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483469492098318337\/40_OxiX6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2595675806\/1404097266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anego555anego","name":"NORInney","id":163289471,"id_str":"163289471","indices":[0,14]}],"symbols":[],"media":[{"id":663727983450980352,"id_str":"663727983450980352","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFZkVAAAvRpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFZkVAAAvRpW.jpg","url":"https:\/\/t.co\/I9wW5Pz9kl","display_url":"pic.twitter.com\/I9wW5Pz9kl","expanded_url":"http:\/\/twitter.com\/shige19720406\/status\/663727997199880192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727983450980352,"id_str":"663727983450980352","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFZkVAAAvRpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFZkVAAAvRpW.jpg","url":"https:\/\/t.co\/I9wW5Pz9kl","display_url":"pic.twitter.com\/I9wW5Pz9kl","expanded_url":"http:\/\/twitter.com\/shige19720406\/status\/663727997199880192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080060659"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997195714560,"id_str":"663727997195714560","text":"It's so close #HAPPYLEODAY really close #Chained_up https:\/\/t.co\/TmFdX4HFvE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2956820328,"id_str":"2956820328","name":"ST\u2606RLIGHT_Jehwan","screen_name":"ChopperKenVIXX","location":"Yeeun's Forehead ","url":"http:\/\/twitter.com\/jaehwany0406","description":"VIXX mainvocal Lee Jaehwan\u26ab #Chained_Up 151110\u26ab\n'92\u26ab\nSanghyuk's Trash\u26abpardrp VIXXSquad;CassieFams\u26abn.s.f.w","protected":false,"verified":false,"followers_count":636,"friends_count":639,"listed_count":9,"favourites_count":1203,"statuses_count":54919,"created_at":"Sat Jan 03 05:26:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663090882149638144\/f5m1judH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663090882149638144\/f5m1judH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2956820328\/1446876516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[14,26]},{"text":"Chained_up","indices":[40,51]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727968871518208,"id_str":"663727968871518208","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEjQUEAAj8sm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEjQUEAAj8sm.jpg","url":"https:\/\/t.co\/TmFdX4HFvE","display_url":"pic.twitter.com\/TmFdX4HFvE","expanded_url":"http:\/\/twitter.com\/ChopperKenVIXX\/status\/663727997195714560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727968871518208,"id_str":"663727968871518208","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEjQUEAAj8sm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEjQUEAAj8sm.jpg","url":"https:\/\/t.co\/TmFdX4HFvE","display_url":"pic.twitter.com\/TmFdX4HFvE","expanded_url":"http:\/\/twitter.com\/ChopperKenVIXX\/status\/663727997195714560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060658"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997212598272,"id_str":"663727997212598272","text":"RT @Imnataliko: @nnatasha_24 \ud83d\udd2e\ud83d\udd2e\ud83d\udd2e\ud83d\udd2e \u043f\u0440\u0435\u043b\u0435\u0441\u0442\u044c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3430403289,"id_str":"3430403289","name":"\u0421\u043a\u043e\u0440\u043f\u0438\u043e\u0448\u043a\u0430","screen_name":"nnatasha_24","location":"\u0418\u0440\u043a\u0443\u0442\u0441\u043a, \u0418\u0440\u043a\u0443\u0442\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c","url":null,"description":null,"protected":false,"verified":false,"followers_count":169,"friends_count":163,"listed_count":0,"favourites_count":242,"statuses_count":769,"created_at":"Tue Aug 18 19:28:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662301755724705792\/umik-ehx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662301755724705792\/umik-ehx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3430403289\/1446740014","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:04 +0000 2015","id":663727005209395200,"id_str":"663727005209395200","text":"@nnatasha_24 \ud83d\udd2e\ud83d\udd2e\ud83d\udd2e\ud83d\udd2e \u043f\u0440\u0435\u043b\u0435\u0441\u0442\u044c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3430403289,"in_reply_to_user_id_str":"3430403289","in_reply_to_screen_name":"nnatasha_24","user":{"id":3963418665,"id_str":"3963418665","name":"\u043e\u0442\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0439 \u043f\u0438\u0440\u043e\u0436\u043e\u043a","screen_name":"Imnataliko","location":null,"url":null,"description":"\u041f\u043e\u0447\u0435\u043c\u0443 \u044f \u043f\u043e\u043c\u043d\u044e \u0432\u0441\u0435, \u0447\u0442\u043e \u0431\u044b\u043b\u043e \u0437\u0430\u0432\u0442\u0440\u0430 \u0438 \u043d\u0435 \u0437\u043d\u0430\u044e \u0447\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0432\u0447\u0435\u0440\u0430?\n\u041f\u043e\u0447\u0435\u043c\u0443 \u0432\u0441\u044f \u043c\u043e\u044f \u0436\u0438\u0437\u043d\u044c - \u044d\u0442\u043e \u0447\u0435\u0440\u0435\u0434\u0430 \u0441\u0442\u043e\u043f-\u043a\u0430\u0434\u0440\u043e\u0432 \u0440\u0430\u0437\u043d\u044b\u0445 \u0441\u043e\u0440\u0442\u043e\u0432 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u0435\u0440\u044c\u043c\u0430? \u0427\u0418\u0422\u0410\u0419_\u041c\u0415\u041d\u042f_\u041b\u0410\u0419\u041a\u0410\u0419_\u041c\u0415\u041d\u042f","protected":false,"verified":false,"followers_count":164,"friends_count":44,"listed_count":0,"favourites_count":330,"statuses_count":414,"created_at":"Thu Oct 15 08:14:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663261270611787776\/3N4jScqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663261270611787776\/3N4jScqG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3963418665\/1447037319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nnatasha_24","name":"\u0421\u043a\u043e\u0440\u043f\u0438\u043e\u0448\u043a\u0430","id":3430403289,"id_str":"3430403289","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Imnataliko","name":"\u043e\u0442\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0439 \u043f\u0438\u0440\u043e\u0436\u043e\u043a","id":3963418665,"id_str":"3963418665","indices":[3,14]},{"screen_name":"nnatasha_24","name":"\u0421\u043a\u043e\u0440\u043f\u0438\u043e\u0448\u043a\u0430","id":3430403289,"id_str":"3430403289","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080060662"} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997208367104,"id_str":"663727997208367104","text":"Read This Book https:\/\/t.co\/EqnzXQdepS #1207 AND ANOTHER THING 1st Edition Hardcover Book Hitchhiker's Guide NEW https:\/\/t.co\/PM4bEFHqUi","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3437658153,"id_str":"3437658153","name":"NEW BOOK","screen_name":"B0_S8_HX","location":"USA","url":"http:\/\/buyonlineeshop.com","description":"Read This Book","protected":false,"verified":false,"followers_count":60,"friends_count":18,"listed_count":19,"favourites_count":0,"statuses_count":42089,"created_at":"Mon Aug 24 08:39:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637038925769408512\/Rr0QZKuS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637038925769408512\/Rr0QZKuS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3437658153\/1440720660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EqnzXQdepS","expanded_url":"http:\/\/ift.tt\/1RzjQeK","display_url":"ift.tt\/1RzjQeK","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663727997023862784,"id_str":"663727997023862784","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMIWwAAIUyj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMIWwAAIUyj.jpg","url":"https:\/\/t.co\/PM4bEFHqUi","display_url":"pic.twitter.com\/PM4bEFHqUi","expanded_url":"http:\/\/twitter.com\/B0_S8_HX\/status\/663727997208367104\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727997023862784,"id_str":"663727997023862784","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMIWwAAIUyj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMIWwAAIUyj.jpg","url":"https:\/\/t.co\/PM4bEFHqUi","display_url":"pic.twitter.com\/PM4bEFHqUi","expanded_url":"http:\/\/twitter.com\/B0_S8_HX\/status\/663727997208367104\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080060661"} +{"delete":{"status":{"id":370084853854638080,"id_str":"370084853854638080","user_id":1677619717,"user_id_str":"1677619717"},"timestamp_ms":"1447080061163"}} +{"delete":{"status":{"id":657888175486926848,"id_str":"657888175486926848","user_id":3370710746,"user_id_str":"3370710746"},"timestamp_ms":"1447080061262"}} +{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727997225189376,"id_str":"663727997225189376","text":"\u00bfNo sabes que d\u00eda puedes adquirir productos regulados seg\u00fan tu terminal de c\u00e9dula? Aqu\u00ed te lo decimos. https:\/\/t.co\/3sZf6MajR5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96014196,"id_str":"96014196","name":"Kromi Market","screen_name":"KromiMarket","location":"Valencia, Carabobo","url":"http:\/\/www.kromimarket.com","description":"Hipermercado con variedad, frescura y calidad en sus productos.\n\u00a1Tu sitio de encuentro, el lugar de tus compras! de 7:00 a.m. a 9:00 p.m.","protected":false,"verified":false,"followers_count":12195,"friends_count":143,"listed_count":51,"favourites_count":75,"statuses_count":22433,"created_at":"Thu Dec 10 23:58:40 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438676602893770752\/PQ1AwxP-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438676602893770752\/PQ1AwxP-.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000424758851\/0b61b459a8ac5b0fe4b0e6489de6a24b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000424758851\/0b61b459a8ac5b0fe4b0e6489de6a24b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96014196\/1426270680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727977843326977,"id_str":"663727977843326977","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFErXAAE6Q-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFErXAAE6Q-u.jpg","url":"https:\/\/t.co\/3sZf6MajR5","display_url":"pic.twitter.com\/3sZf6MajR5","expanded_url":"http:\/\/twitter.com\/KromiMarket\/status\/663727997225189376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727977843326977,"id_str":"663727977843326977","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFErXAAE6Q-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFErXAAE6Q-u.jpg","url":"https:\/\/t.co\/3sZf6MajR5","display_url":"pic.twitter.com\/3sZf6MajR5","expanded_url":"http:\/\/twitter.com\/KromiMarket\/status\/663727997225189376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080060665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001415294976,"id_str":"663728001415294976","text":"RT @tweetsTJ: @sri50 about Thala (next only to Superstar) :)) #Vedalam #VedalamDiwali https:\/\/t.co\/y7uJ7zmOVZ","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487487287,"id_str":"487487287","name":"Muthuraj","screen_name":"tisisjk","location":null,"url":null,"description":"Nothing!","protected":false,"verified":false,"followers_count":2417,"friends_count":210,"listed_count":19,"favourites_count":19864,"statuses_count":58416,"created_at":"Thu Feb 09 12:21:31 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577450073254064128\/52Q5A-G_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577450073254064128\/52Q5A-G_.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662260380501041152\/aDz9Jys6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662260380501041152\/aDz9Jys6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487487287\/1443938959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:32 +0000 2015","id":663724607854088193,"id_str":"663724607854088193","text":"@sri50 about Thala (next only to Superstar) :)) #Vedalam #VedalamDiwali https:\/\/t.co\/y7uJ7zmOVZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":44900754,"in_reply_to_user_id_str":"44900754","in_reply_to_screen_name":"sri50","user":{"id":217387455,"id_str":"217387455","name":"TJ","screen_name":"tweetsTJ","location":"Now @ Bangalore. ","url":null,"description":"Software Engineer | Ajith is my Inspiration & Role Model #Thala | Yuvi | Dada | \u0ba8\u0bb2\u0bcd\u0bb2\u0ba4\u0bc7 \u0ba8\u0bbf\u0ba9\u0bc8, \u0ba8\u0bb2\u0bcd\u0bb2\u0ba4\u0bc7 \u0b9a\u0bc6\u0baf\u0bcd!!!","protected":false,"verified":false,"followers_count":1767,"friends_count":308,"listed_count":10,"favourites_count":1538,"statuses_count":14838,"created_at":"Fri Nov 19 11:41:52 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000028543161\/17360aa95ea0202b6e46629a3d4850fb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000028543161\/17360aa95ea0202b6e46629a3d4850fb.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595879005028360192\/AZEug-jj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595879005028360192\/AZEug-jj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217387455\/1376494318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":6,"entities":{"hashtags":[{"text":"Vedalam","indices":[48,56]},{"text":"VedalamDiwali","indices":[57,71]}],"urls":[],"user_mentions":[{"screen_name":"sri50","name":"Sreedhar Pillai","id":44900754,"id_str":"44900754","indices":[0,6]}],"symbols":[],"media":[{"id":663724606432276480,"id_str":"663724606432276480","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","url":"https:\/\/t.co\/y7uJ7zmOVZ","display_url":"pic.twitter.com\/y7uJ7zmOVZ","expanded_url":"http:\/\/twitter.com\/tweetsTJ\/status\/663724607854088193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":119,"resize":"crop"},"medium":{"w":451,"h":119,"resize":"fit"},"small":{"w":340,"h":89,"resize":"fit"},"large":{"w":451,"h":119,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724606432276480,"id_str":"663724606432276480","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","url":"https:\/\/t.co\/y7uJ7zmOVZ","display_url":"pic.twitter.com\/y7uJ7zmOVZ","expanded_url":"http:\/\/twitter.com\/tweetsTJ\/status\/663724607854088193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":119,"resize":"crop"},"medium":{"w":451,"h":119,"resize":"fit"},"small":{"w":340,"h":89,"resize":"fit"},"large":{"w":451,"h":119,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Vedalam","indices":[62,70]},{"text":"VedalamDiwali","indices":[71,85]}],"urls":[],"user_mentions":[{"screen_name":"tweetsTJ","name":"TJ","id":217387455,"id_str":"217387455","indices":[3,12]},{"screen_name":"sri50","name":"Sreedhar Pillai","id":44900754,"id_str":"44900754","indices":[14,20]}],"symbols":[],"media":[{"id":663724606432276480,"id_str":"663724606432276480","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","url":"https:\/\/t.co\/y7uJ7zmOVZ","display_url":"pic.twitter.com\/y7uJ7zmOVZ","expanded_url":"http:\/\/twitter.com\/tweetsTJ\/status\/663724607854088193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":119,"resize":"crop"},"medium":{"w":451,"h":119,"resize":"fit"},"small":{"w":340,"h":89,"resize":"fit"},"large":{"w":451,"h":119,"resize":"fit"}},"source_status_id":663724607854088193,"source_status_id_str":"663724607854088193","source_user_id":217387455,"source_user_id_str":"217387455"}]},"extended_entities":{"media":[{"id":663724606432276480,"id_str":"663724606432276480","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGA1MU8AA0Xz2.png","url":"https:\/\/t.co\/y7uJ7zmOVZ","display_url":"pic.twitter.com\/y7uJ7zmOVZ","expanded_url":"http:\/\/twitter.com\/tweetsTJ\/status\/663724607854088193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":119,"resize":"crop"},"medium":{"w":451,"h":119,"resize":"fit"},"small":{"w":340,"h":89,"resize":"fit"},"large":{"w":451,"h":119,"resize":"fit"}},"source_status_id":663724607854088193,"source_status_id_str":"663724607854088193","source_user_id":217387455,"source_user_id_str":"217387455"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061664"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406918656,"id_str":"663728001406918656","text":"#Recuerda: siempre que el primer beso no se da con la boca, sino con la mirada. #amor","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3452345233,"id_str":"3452345233","name":"Luz Pereira","screen_name":"LuzPereira0q","location":null,"url":null,"description":"No s\u00e9 lo que vi en ti, solo s\u00e9 que no lo veo en nadie m\u00e1s.","protected":false,"verified":false,"followers_count":20,"friends_count":347,"listed_count":1,"favourites_count":0,"statuses_count":1011,"created_at":"Fri Sep 04 21:39:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640181055207682048\/cpEfIeLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640181055207682048\/cpEfIeLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3452345233\/1441466033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Recuerda","indices":[0,9]},{"text":"amor","indices":[80,85]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419464704,"id_str":"663728001419464704","text":"Deixou a Melissa aqui,e foi na rua","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2845297700,"id_str":"2845297700","name":"bea","screen_name":"bia_jpvive","location":null,"url":null,"description":"Perdoe essa alma revel ..... Jpvive\u2020\u2764","protected":false,"verified":false,"followers_count":210,"friends_count":118,"listed_count":0,"favourites_count":6231,"statuses_count":14172,"created_at":"Tue Oct 07 23:51:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663494199761838085\/s7pIkdRK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663494199761838085\/s7pIkdRK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2845297700\/1446984643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402724353,"id_str":"663728001402724353","text":"RT @vijju1408: \u0918\u0930 \u0915\u093e \u092d\u0947\u0926\u0940 \u0932\u0902\u0915\u093e \u0922\u093e\u090f\n\u0914\u0930 \u091c\u094b \u0907\u0938 \u0939\u0915\u0932\u0947 \u0915\u0940 \u092e\u0942\u0935\u0940 \u0926\u0947\u0916\u0928\u0947 \u091c\u093e\u090f\n\u0909\u0938\u0915\u093e \u092a\u0930\u094d\u0938 \u091a\u094b\u0930\u0940 \u0939\u094b \u091c\u093e\u090f\n\u0915\u092e\u0940\u0928\u093e \u092a\u0948\u0926\u0932 \u0939\u0940 \u0918\u0930 \u0906\u090f\ud83d\ude02\ud83d\ude1d #BoycottPAKISTANwale https:\/\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3957221967,"id_str":"3957221967","name":"BJP Youth 19","screen_name":"BJPYouth19","location":null,"url":null,"description":"jai hind","protected":false,"verified":false,"followers_count":34,"friends_count":29,"listed_count":0,"favourites_count":0,"statuses_count":109,"created_at":"Wed Oct 14 16:17:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662737597702082560\/9xM0ArYY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662737597702082560\/9xM0ArYY_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727929386385408,"id_str":"663727929386385408","text":"\u0918\u0930 \u0915\u093e \u092d\u0947\u0926\u0940 \u0932\u0902\u0915\u093e \u0922\u093e\u090f\n\u0914\u0930 \u091c\u094b \u0907\u0938 \u0939\u0915\u0932\u0947 \u0915\u0940 \u092e\u0942\u0935\u0940 \u0926\u0947\u0916\u0928\u0947 \u091c\u093e\u090f\n\u0909\u0938\u0915\u093e \u092a\u0930\u094d\u0938 \u091a\u094b\u0930\u0940 \u0939\u094b \u091c\u093e\u090f\n\u0915\u092e\u0940\u0928\u093e \u092a\u0948\u0926\u0932 \u0939\u0940 \u0918\u0930 \u0906\u090f\ud83d\ude02\ud83d\ude1d #BoycottPAKISTANwale https:\/\/t.co\/e4JgiZiZBV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238637236,"id_str":"238637236","name":"CHiller\u00b0\u2122The rupay","screen_name":"vijju1408","location":"Jaipur, Rajasthan (\u091c\u0948\u092a\u0930) ","url":null,"description":"(\u0906\u092a\u0915\u093e \u091a\u093f\u0932\u094d\u0932\u0930 \u0915\u093f\u0938\u0940 \u0915\u0940 \u0926\u094c\u0932\u0924) \n\u091a\u093f\u0932\u094d\u0932\u0930 \u092e\u0947\u0902 \u0916\u0928\u0915\u0924\u0947 \u0939\u0930 \u090f\u0939\u0938\u093e\u0938 \u0915\u094b \u0926\u0947\u0916\u093e..\n\u0906\u091c \u092b\u093f\u0930 \u092e\u0948\u0902\u0928\u0947 \u0905\u092a\u0928\u0947 \u0926\u092c\u0947\u0902 \u0939\u093e\u0932 \u0915\u094b \u0926\u0947\u0916\u093e...\n\n\n \narc.-- @Vijju__1408","protected":false,"verified":false,"followers_count":9434,"friends_count":465,"listed_count":70,"favourites_count":20387,"statuses_count":126996,"created_at":"Sat Jan 15 17:13:55 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663582221194805248\/rXUMUpCh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663582221194805248\/rXUMUpCh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238637236\/1447048402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"BoycottPAKISTANwale","indices":[96,116]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727917533294593,"id_str":"663727917533294593","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","url":"https:\/\/t.co\/e4JgiZiZBV","display_url":"pic.twitter.com\/e4JgiZiZBV","expanded_url":"http:\/\/twitter.com\/vijju1408\/status\/663727929386385408\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727917533294593,"id_str":"663727917533294593","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","url":"https:\/\/t.co\/e4JgiZiZBV","display_url":"pic.twitter.com\/e4JgiZiZBV","expanded_url":"http:\/\/twitter.com\/vijju1408\/status\/663727929386385408\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BoycottPAKISTANwale","indices":[111,131]}],"urls":[],"user_mentions":[{"screen_name":"vijju1408","name":"CHiller\u00b0\u2122The rupay","id":238637236,"id_str":"238637236","indices":[3,13]}],"symbols":[],"media":[{"id":663727917533294593,"id_str":"663727917533294593","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","url":"https:\/\/t.co\/e4JgiZiZBV","display_url":"pic.twitter.com\/e4JgiZiZBV","expanded_url":"http:\/\/twitter.com\/vijju1408\/status\/663727929386385408\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}},"source_status_id":663727929386385408,"source_status_id_str":"663727929386385408","source_user_id":238637236,"source_user_id_str":"238637236"}]},"extended_entities":{"media":[{"id":663727917533294593,"id_str":"663727917533294593","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBkAU8AEG8Oq.jpg","url":"https:\/\/t.co\/e4JgiZiZBV","display_url":"pic.twitter.com\/e4JgiZiZBV","expanded_url":"http:\/\/twitter.com\/vijju1408\/status\/663727929386385408\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}},"source_status_id":663727929386385408,"source_status_id_str":"663727929386385408","source_user_id":238637236,"source_user_id_str":"238637236"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080061661"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001423642624,"id_str":"663728001423642624","text":"RT @fucksrihkaty: me resumiu https:\/\/t.co\/LZfnMfrQGH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251426624,"id_str":"1251426624","name":"gotica","screen_name":"gagacretina","location":"@fucksrihkaty is my life \u2764\ufe0f","url":"https:\/\/twitter.com\/fucksrihkaty\/status\/659467259367268352","description":"lady gaga \u00e9 meu pastor e nada me faltar\u00e1","protected":false,"verified":false,"followers_count":14151,"friends_count":310,"listed_count":31,"favourites_count":10892,"statuses_count":169929,"created_at":"Fri Mar 08 11:10:42 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566399518145384448\/4xYPlLN3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566399518145384448\/4xYPlLN3.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663092752020856833\/-2vviYtd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663092752020856833\/-2vviYtd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251426624\/1446928607","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:39:45 +0000 2015","id":663637083236474880,"id_str":"663637083236474880","text":"me resumiu https:\/\/t.co\/LZfnMfrQGH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":566702358,"id_str":"566702358","name":"fenty","screen_name":"fucksrihkaty","location":"Katy \u2022 Rihanna","url":null,"description":"mari is my life \u2764","protected":false,"verified":false,"followers_count":11558,"friends_count":334,"listed_count":20,"favourites_count":5754,"statuses_count":106258,"created_at":"Sun Apr 29 19:50:14 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466294575535910912\/j88jczzx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466294575535910912\/j88jczzx.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663665860666630144\/a2rB11P5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663665860666630144\/a2rB11P5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/566702358\/1447065245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663523207471869952,"quoted_status_id_str":"663523207471869952","quoted_status":{"created_at":"Mon Nov 09 01:07:14 +0000 2015","id":663523207471869952,"id_str":"663523207471869952","text":"coisa mais idiota pergunta pra 2 l\u00e9sbicas quem \u00e9 o homem da rela\u00e7\u00e3o, se fosse pra ter um homem n\u00e3o seria casal l\u00e9sbico, ot\u00e1rios","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251426624,"id_str":"1251426624","name":"gotica","screen_name":"gagacretina","location":"@fucksrihkaty is my life \u2764\ufe0f","url":"https:\/\/twitter.com\/fucksrihkaty\/status\/659467259367268352","description":"lady gaga \u00e9 meu pastor e nada me faltar\u00e1","protected":false,"verified":false,"followers_count":14151,"friends_count":310,"listed_count":31,"favourites_count":10892,"statuses_count":169928,"created_at":"Fri Mar 08 11:10:42 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566399518145384448\/4xYPlLN3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566399518145384448\/4xYPlLN3.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663092752020856833\/-2vviYtd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663092752020856833\/-2vviYtd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251426624\/1446928607","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LZfnMfrQGH","expanded_url":"https:\/\/twitter.com\/gagacretina\/status\/663523207471869952","display_url":"twitter.com\/gagacretina\/st\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LZfnMfrQGH","expanded_url":"https:\/\/twitter.com\/gagacretina\/status\/663523207471869952","display_url":"twitter.com\/gagacretina\/st\u2026","indices":[29,52]}],"user_mentions":[{"screen_name":"fucksrihkaty","name":"fenty","id":566702358,"id_str":"566702358","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061666"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394286592,"id_str":"663728001394286592","text":"RT @abn_alrawndi: \u0648\u0630\u0644\u0643 \u0628\u0647\u062f\u0641 \u0627\u0644\u0645\u062a\u0639\u0629 \u0648\u0627\u0644\u0644\u0630\u0647 \u0627\u0644\u062c\u0646\u0633\u064a\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629 .\u0648\u0643\u0644\u0645\u0629 \u0637\u0627\u0628 \u062a\u0628\u064a\u0646 \u0627\u0644\u0647\u062f\u0641 \u0645\u0646 \u0627\u0644\u0632\u0648\u0627\u062c \u0648\u0645\u0639\u0646\u0627\u0647\u0627 \u0645\u0627 \u064a\u0639\u062c\u0628\u0643\u0645 \u0648\u064a\u0631\u0648\u0642 \u0644\u0643\u0645 \u0648\u064a\u062d\u0642\u0642 \u0634\u0647\u0648\u062a\u0643\u0645\n\n#\u0639\u0642\u0644\u0627\u0646\u064a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2182255880,"id_str":"2182255880","name":"maryam .\u062d\u0631\u0629","screen_name":"memo44323","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0644\u0627 \u062a\u0646\u0627\u0644 \u0627\u0639\u062c\u0627\u0628 \u0627\u0644\u0645\u0633\u062a\u0639\u0628\u062f\u064a\u0646:)\n\n#\u0627\u0644\u0633\u0631\u0637\u0627\u0646 \u264b\ufe0f","protected":false,"verified":false,"followers_count":492,"friends_count":188,"listed_count":2,"favourites_count":770,"statuses_count":16437,"created_at":"Fri Nov 08 13:56:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"130C29","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165591095\/iz0dOd5R.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165591095\/iz0dOd5R.jpeg","profile_background_tile":true,"profile_link_color":"170D5E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661205651494993920\/JD1_HF6w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661205651494993920\/JD1_HF6w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2182255880\/1444065651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:19:19 +0000 2015","id":663511146662486017,"id_str":"663511146662486017","text":"\u0648\u0630\u0644\u0643 \u0628\u0647\u062f\u0641 \u0627\u0644\u0645\u062a\u0639\u0629 \u0648\u0627\u0644\u0644\u0630\u0647 \u0627\u0644\u062c\u0646\u0633\u064a\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629 .\u0648\u0643\u0644\u0645\u0629 \u0637\u0627\u0628 \u062a\u0628\u064a\u0646 \u0627\u0644\u0647\u062f\u0641 \u0645\u0646 \u0627\u0644\u0632\u0648\u0627\u062c \u0648\u0645\u0639\u0646\u0627\u0647\u0627 \u0645\u0627 \u064a\u0639\u062c\u0628\u0643\u0645 \u0648\u064a\u0631\u0648\u0642 \u0644\u0643\u0645 \u0648\u064a\u062d\u0642\u0642 \u0634\u0647\u0648\u062a\u0643\u0645\n\n#\u0639\u0642\u0644\u0627\u0646\u064a\u0648\u0646 \n#\u0627\u0644\u0645\u0631\u0623\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663510714779238400,"in_reply_to_status_id_str":"663510714779238400","in_reply_to_user_id":379099956,"in_reply_to_user_id_str":"379099956","in_reply_to_screen_name":"abn_alrawndi","user":{"id":379099956,"id_str":"379099956","name":"\u0627\u0628\u0646 \u0627\u0644\u0631\u0627\u0648\u0646\u062f\u064a","screen_name":"abn_alrawndi","location":"Australia","url":null,"description":"\u0644\u064a\u0633 \u0635\u062d\u064a\u062d\u0627\u064b \u0645\u0627 \u064a\u0634\u0627\u0639 \u0628\u0623\u0646 \u0627\u0644\u0627\u0637\u0641\u0627\u0644 \u064a\u0646\u0633\u0648\u0646 \u0628\u0633\u0647\u0648\u0644\u0647 \u0641\u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u0646\u0627\u0633 \u064a\u0639\u064a\u0634\u0648\u0646 \u062d\u064a\u0627\u062a\u0647\u0645 \u0648\u0647\u0645 \u0631\u0647\u0627\u0626\u0646 \u0644\u0623\u0641\u0643\u0627\u0631 \u0627\u0646\u0637\u0628\u0639\u062a \u0641\u064a \u0627\u0639\u0645\u0627\u0642\u0647\u0645 \u0645\u0646\u0630 \u0633\u0646\u0648\u0627\u062a \u0637\u0641\u0648\u0644\u062a\u0647\u0645 \u0627\u0644\u0645\u0628\u0643\u0631\u0629 .. \u0627\u062c\u0627\u062b\u0627 \u0643\u0631\u064a\u0633\u062a\u064a .. \u0644\u0627 \u062f\u064a\u0646\u064a","protected":false,"verified":false,"followers_count":1896,"friends_count":768,"listed_count":12,"favourites_count":598,"statuses_count":4499,"created_at":"Sat Sep 24 11:07:12 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574861568363618304\/eXTTkpiP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574861568363618304\/eXTTkpiP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379099956\/1428966424","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0639\u0642\u0644\u0627\u0646\u064a\u0648\u0646","indices":[114,123]},{"text":"\u0627\u0644\u0645\u0631\u0623\u0629","indices":[125,132]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0639\u0642\u0644\u0627\u0646\u064a\u0648\u0646","indices":[132,140]},{"text":"\u0627\u0644\u0645\u0631\u0623\u0629","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"abn_alrawndi","name":"\u0627\u0628\u0646 \u0627\u0644\u0631\u0627\u0648\u0646\u062f\u064a","id":379099956,"id_str":"379099956","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061659"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001415270400,"id_str":"663728001415270400","text":"RT @Victoria0911f: Qr ir pra escola hj n mano \ud83d\udc4c\ud83d\udc4e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1438984423,"id_str":"1438984423","name":"#For\u00e7aParaiba","screen_name":"amandafs_14","location":null,"url":null,"description":"Uma dama na rua, piranha na kama-sutra, sabe, ama, surta","protected":false,"verified":false,"followers_count":537,"friends_count":798,"listed_count":1,"favourites_count":4102,"statuses_count":3742,"created_at":"Sat May 18 17:36:45 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659508729503682560\/wtJvjMRL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659508729503682560\/wtJvjMRL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1438984423\/1444806190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:10 +0000 2015","id":663727033579651072,"id_str":"663727033579651072","text":"Qr ir pra escola hj n mano \ud83d\udc4c\ud83d\udc4e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307715206,"id_str":"3307715206","name":"Smoked Nigga \u274c","screen_name":"Victoria0911f","location":"Rio de Janeiro, Brasil","url":"http:\/\/Vagabunda.com","description":"Snap : Victoriaf-0 | I need a hug \u2026\u2026 e bottle of vodka | Te prometo a lua assim q ela aparecer jae?!","protected":false,"verified":false,"followers_count":253,"friends_count":225,"listed_count":4,"favourites_count":5127,"statuses_count":6555,"created_at":"Thu Jun 04 01:26:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621647572529233920\/1f2VxABm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621647572529233920\/1f2VxABm.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663400175604469761\/84tdRuAp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663400175604469761\/84tdRuAp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307715206\/1447003230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Victoria0911f","name":"Smoked Nigga \u274c","id":3307715206,"id_str":"3307715206","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061664"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419493376,"id_str":"663728001419493376","text":"RT @_alsagheer: \u0634\u0643\u0631\u0627\u064b \u0644\u0642\u0644\u0628\u0643 \u0639\u0644\u0649 \" \u062d\u0632\u0646 \" \u0627\u0644\u0636\u064a\u0627\u0641\u0647 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2285882380,"id_str":"2285882380","name":"\u06af\u0640\u0648\u064a\u0640\u0646..&","screen_name":"Amooworh2014","location":"..","url":null,"description":"\u0644\u0627 \u0634\u0623\u0646 \u0644\u064a \u0628\u064a ..","protected":false,"verified":false,"followers_count":1604,"friends_count":1650,"listed_count":0,"favourites_count":586,"statuses_count":17295,"created_at":"Thu Jan 16 13:25:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285882380\/1408602198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:46:58 +0000 2015","id":663472806185861120,"id_str":"663472806185861120","text":"\u0634\u0643\u0631\u0627\u064b \u0644\u0642\u0644\u0628\u0643 \u0639\u0644\u0649 \" \u062d\u0632\u0646 \" \u0627\u0644\u0636\u064a\u0627\u0641\u0647 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760428248,"id_str":"760428248","name":"\u0645\u0634\u0627\u0631\u064a \u0627\u0644\u0635\u063a\u064a\u0651\u0631","screen_name":"_alsagheer","location":null,"url":"http:\/\/instagram.com\/_alsagheer","description":"\u0634\u0627\u0639\u0631 | \u0623\u062e\u0637\u0631 \u0645\u0646 \u0645\u0627 \u062a\u0638\u0646 \u060c \u0644\u0627 \u0623\u0642\u062a\u0628\u0633 !","protected":false,"verified":false,"followers_count":6264,"friends_count":249,"listed_count":6,"favourites_count":125,"statuses_count":6497,"created_at":"Thu Aug 16 00:04:41 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653010825024831488\/z1UvV_Hz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653010825024831488\/z1UvV_Hz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760428248\/1445096678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_alsagheer","name":"\u0645\u0634\u0627\u0631\u064a \u0627\u0644\u0635\u063a\u064a\u0651\u0631","id":760428248,"id_str":"760428248","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402724352,"id_str":"663728001402724352","text":"RT @MiriamBrett: If I had a pound for every time I was told that we have gender equality - Wait no, I'd actually only get 85p of it. #Equal\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1314783144,"id_str":"1314783144","name":"Darren Harper","screen_name":"sanctionedman","location":null,"url":"http:\/\/www.thesanctionedjobseeker.co.uk","description":"Freelance web developer, musician, truthseeker and activist.\n\nSome people won't like what I say, but I'm gonna say it anyway.","protected":false,"verified":false,"followers_count":99,"friends_count":88,"listed_count":3,"favourites_count":1564,"statuses_count":2414,"created_at":"Fri Mar 29 18:36:46 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512457105295429632\/uBya7K8o_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512457105295429632\/uBya7K8o_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:47:29 +0000 2015","id":663714530300661760,"id_str":"663714530300661760","text":"If I had a pound for every time I was told that we have gender equality - Wait no, I'd actually only get 85p of it. #EqualPayDay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427687855,"id_str":"427687855","name":"Miriam Brett","screen_name":"MiriamBrett","location":"Glasgow Southside \/ Shetland ","url":null,"description":"Policy analyst @Common_Weal | Interests: Poverty alleviation, Feminism, alternatives to status quo politics | Aye, have a dream | Tweeting: personal capacity","protected":false,"verified":false,"followers_count":6963,"friends_count":1053,"listed_count":89,"favourites_count":5851,"statuses_count":5191,"created_at":"Sat Dec 03 21:05:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639792423569264640\/vCDj1pje_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639792423569264640\/vCDj1pje_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427687855\/1431289930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":149,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[116,128]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EqualPayDay","indices":[133,140]}],"urls":[],"user_mentions":[{"screen_name":"MiriamBrett","name":"Miriam Brett","id":427687855,"id_str":"427687855","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061661"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001398521856,"id_str":"663728001398521856","text":"Coleman Ray Savage https:\/\/t.co\/Q4qmVD1HHR","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343746358,"id_str":"343746358","name":"DevaMcCoySchell","screen_name":"Deva__Schell","location":"Lexington, KY","url":null,"description":"21. Insanity is imaginative, sanity is simple. #BBN","protected":false,"verified":false,"followers_count":314,"friends_count":204,"listed_count":0,"favourites_count":1158,"statuses_count":1468,"created_at":"Thu Jul 28 00:58:51 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628525155636113408\/xcDtb9G2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628525155636113408\/xcDtb9G2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343746358\/1435648606","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q4qmVD1HHR","expanded_url":"http:\/\/fb.me\/5uFSEOyis","display_url":"fb.me\/5uFSEOyis","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061660"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001411096576,"id_str":"663728001411096576","text":"RT @Nsian_q8: \u064a\u0642\u0648\u0644 :\n \u3164\n\u0627\u0644\u0637\u064a\u0628 \u0648\u0627\u0644\u062d\u0628 \u0648\u0631\u0630\u0627\u0630 \u0627\u0644\u0645\u0637\u0631 .. \u0648\u0627\u0644\u0648\u0642\u0627\u0631\n\u0623\u0634\u064a\u0627\u0621 \u0645\u0627 \u062a\u0634\u062a\u0631\u064a\u0647\u0627 \u0627\u0644\u0646\u0627\u0633 \u0628\u0640 \u0641\u0644\u0648\u0633\u0647\u0627 ')","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2285882380,"id_str":"2285882380","name":"\u06af\u0640\u0648\u064a\u0640\u0646..&","screen_name":"Amooworh2014","location":"..","url":null,"description":"\u0644\u0627 \u0634\u0623\u0646 \u0644\u064a \u0628\u064a ..","protected":false,"verified":false,"followers_count":1604,"friends_count":1650,"listed_count":0,"favourites_count":586,"statuses_count":17295,"created_at":"Thu Jan 16 13:25:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285882380\/1408602198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:20:36 +0000 2015","id":663481271306354688,"id_str":"663481271306354688","text":"\u064a\u0642\u0648\u0644 :\n \u3164\n\u0627\u0644\u0637\u064a\u0628 \u0648\u0627\u0644\u062d\u0628 \u0648\u0631\u0630\u0627\u0630 \u0627\u0644\u0645\u0637\u0631 .. \u0648\u0627\u0644\u0648\u0642\u0627\u0631\n\u0623\u0634\u064a\u0627\u0621 \u0645\u0627 \u062a\u0634\u062a\u0631\u064a\u0647\u0627 \u0627\u0644\u0646\u0627\u0633 \u0628\u0640 \u0641\u0644\u0648\u0633\u0647\u0627 ')","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966588432,"id_str":"966588432","name":"67.","screen_name":"Nsian_q8","location":"\u0627\u0644\u062c\u0647\u0631\u0627\u0621 .","url":null,"description":"\u200f\u0644\u064a \u0648\u062c\u0647 \u0648\u0627\u062d\u062f \u060c \u0648 \u0623\u0628\u062a\u0633\u0627\u0645\u0627\u062a : \u0643\u062b\u064a\u0631\u0647 : )","protected":false,"verified":false,"followers_count":6041,"friends_count":159,"listed_count":17,"favourites_count":31,"statuses_count":8099,"created_at":"Fri Nov 23 18:24:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650653369216798720\/DhZJcPlh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650653369216798720\/DhZJcPlh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966588432\/1443024668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nsian_q8","name":"67.","id":966588432,"id_str":"966588432","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061663"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406902272,"id_str":"663728001406902272","text":"#\u0633\u0643\u0633_\u0639\u0631\u0628\u064a_\u0627\u062c\u0646\u0628\u064a_\u0645\u062d\u0627\u0631\u0645_\u0642\u062d\u0628\u0647_\u0646\u064a\u0643_\u0648\u0631\u0639\u0627\u0646_\u0633\u062d\u0627\u0642_\u062f\u064a\u0627\u062b\u0647_\u0627\u063a\u062a\u0635\u0627\u0628\n https:\/\/t.co\/9LlnsdfUBX #\u0633\u0643\u0633 \u062c\u0627\u0645\u062f \u0633\u0643\u0633 #\u0633\u0643\u0633 #\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633 #\u0631\u064a\u062a\u0648\u064a\u062a\n\n234537","source":"\u003ca href=\"http:\/\/bb4us.com\/\" rel=\"nofollow\"\u003efunnnny so funnny\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3103323608,"id_str":"3103323608","name":"\u062c\u0627\u062f\u0647 \u0627\u0628\u064a \u0641\u062d\u0644 ","screen_name":"sexfhl69","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":260,"friends_count":2,"listed_count":3,"favourites_count":0,"statuses_count":485149,"created_at":"Sun Mar 22 13:45:44 +0000 2015","utc_offset":10800,"time_zone":"Minsk","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579645647596318721\/DqNJtwyP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579645647596318721\/DqNJtwyP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0633\u0643\u0633_\u0639\u0631\u0628\u064a_\u0627\u062c\u0646\u0628\u064a_\u0645\u062d\u0627\u0631\u0645_\u0642\u062d\u0628\u0647_\u0646\u064a\u0643_\u0648\u0631\u0639\u0627\u0646_\u0633\u062d\u0627\u0642_\u062f\u064a\u0627\u062b\u0647_\u0627\u063a\u062a\u0635\u0627\u0628","indices":[0,54]},{"text":"\u0633\u0643\u0633","indices":[80,84]},{"text":"\u0633\u0643\u0633","indices":[94,98]},{"text":"\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633","indices":[99,109]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a","indices":[111,118]}],"urls":[{"url":"https:\/\/t.co\/9LlnsdfUBX","expanded_url":"http:\/\/1bbm.net\/BqJW","display_url":"1bbm.net\/BqJW","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001411063808,"id_str":"663728001411063808","text":"#sougofollow #MT2 #followme #followback","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4001792835,"id_str":"4001792835","name":"Lanora Horton","screen_name":"hortonlanora1","location":"Mexico","url":null,"description":"Juan Pablo Jaramillo, Santiago Alarc\u00f3n, Juana Martinez,Mario Bautista,Christian Castiblanco, Sebas Arango, Carolina Jaramillo, Afroo, Sebas Villalobos","protected":false,"verified":false,"followers_count":200,"friends_count":4,"listed_count":9,"favourites_count":42,"statuses_count":2234,"created_at":"Tue Oct 20 12:11:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657367126454329344\/BE4dMTOp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657367126454329344\/BE4dMTOp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4001792835\/1445563495","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sougofollow","indices":[0,12]},{"text":"MT2","indices":[13,17]},{"text":"followme","indices":[18,27]},{"text":"followback","indices":[28,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061663"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001385947136,"id_str":"663728001385947136","text":"RT @VoceNaoSabiaQ: Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192439286,"id_str":"192439286","name":", Bruna Belarmino .","screen_name":"Bhrunaa_","location":null,"url":null,"description":"Fashion Designer, Figurinista, Consultora de Estilo, Bailarina, Flamenguista \u2764","protected":false,"verified":false,"followers_count":233,"friends_count":1051,"listed_count":5,"favourites_count":203,"statuses_count":3522,"created_at":"Sun Sep 19 04:16:55 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/246514488\/fashion.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/246514488\/fashion.gif","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511705263729291265\/4gYHPiNC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511705263729291265\/4gYHPiNC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192439286\/1410835034","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:18 +0000 2015","id":663725303315890176,"id_str":"663725303315890176","text":"Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e estado emocional.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558141890,"id_str":"1558141890","name":"Voc\u00ea Sabia?","screen_name":"VoceNaoSabiaQ","location":"Brasil","url":"http:\/\/instagram.com\/VoceNaoSabiaQ","description":"Curiosidades, fotos e fatos interessantes sobre o mundo e as pessoas que provavelmente voc\u00ea n\u00e3o sabia. \r\nContato: vocenaosabiaq@hotmail.com","protected":false,"verified":false,"followers_count":1927647,"friends_count":1,"listed_count":487,"favourites_count":799,"statuses_count":43683,"created_at":"Sun Jun 30 14:23:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9E2709","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_tile":false,"profile_link_color":"ED0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558141890\/1389764551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":283,"favorite_count":250,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VoceNaoSabiaQ","name":"Voc\u00ea Sabia?","id":1558141890,"id_str":"1558141890","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061657"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001389977600,"id_str":"663728001389977600","text":"\u75e9\u305b\u308b\u305e\u3053\u308c\u307e\u305a\u3044\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3097202684,"id_str":"3097202684","name":"\u3044","screen_name":"sp89t","location":null,"url":null,"description":"\u5b66\u7fd2\u9662 \u82f1\u7c73 \u30a6\u30a7\u30a4\u30c8\u90e8 SkyC\u5e74Trp \u30e2\u30c8\u30bb\u30c3\u30d7\u76ee\u767d\u652f\u90e8\u9577","protected":false,"verified":false,"followers_count":59,"friends_count":55,"listed_count":0,"favourites_count":1944,"statuses_count":5436,"created_at":"Thu Mar 19 05:37:13 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662801690454679552\/K0dlDv7P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662801690454679552\/K0dlDv7P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3097202684\/1446859210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001390104576,"id_str":"663728001390104576","text":"#\u0645\u0641\u064a\u062f_\u0633\u0631\u0642_15k_\u0641\u0648\u0644\u0648\u0631\u0632 \u0628\u0627\u0643","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185392521,"id_str":"185392521","name":"islam borham","screen_name":"islamborham","location":"quesna","url":null,"description":"\u0645\u062d\u0627\u0633\u0628 \u0644\u062f\u0649 \u0634\u0631\u0643\u0629 \u0627\u0644\u0645\u0632\u064a\u062f \u0644\u0644\u062a\u062c\u0627\u0631\u0629 \u0648\u0627\u0644\u0645\u0642\u0627\u0648\u0644\u0627\u062a \u0628\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","protected":false,"verified":false,"followers_count":332,"friends_count":199,"listed_count":0,"favourites_count":120,"statuses_count":2222,"created_at":"Tue Aug 31 21:51:10 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539511309373415424\/wbZB5CWa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539511309373415424\/wbZB5CWa.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635385137010573312\/XImLmQa0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635385137010573312\/XImLmQa0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185392521\/1440322568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0116fcf600926d4f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0116fcf600926d4f.json","place_type":"city","name":"\u0639\u0646\u064a\u0632\u0629","full_name":"\u0639\u0646\u064a\u0632\u0629, \u0627\u0644\u0642\u0635\u064a\u0645","country_code":"SA","country":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","bounding_box":{"type":"Polygon","coordinates":[[[43.837312,25.930033],[43.837312,26.181514],[44.117903,26.181514],[44.117903,25.930033]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0641\u064a\u062f_\u0633\u0631\u0642_15k_\u0641\u0648\u0644\u0648\u0631\u0632","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001385807872,"id_str":"663728001385807872","text":"\u3042\u309b\u30fc\u30fc\u30fc\u30fc\u30fc\u5148\u8f29\u306e\u30d8\u30c3\u30c0\u30fc\u8d85\u304b\u308f\u3044\u3044\u3063\u3059\u308f\u3041\u3042\u3042\u3042","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3760525453,"id_str":"3760525453","name":"\u7d19\u548c(^o^)","screen_name":"shimohara_475","location":"\u30d6\u30a4\u30f3\u57fa\u5730\u93ae\u5b88\u5e9c","url":"http:\/\/twpf.jp\/shimohara_475","description":"\u3058\u3063\u304d\u3087\u3068\u7d50\u6708\u3068\u8266\u3053\u308c\u3002\u65e5\u5e38\u904e\u591a\u3002\u3000\u6700\u8fd1\u306f\u5275\u4f5c\u3068\u304a\u305d\u677e\u6cbc\u3082\u6765\u3066\u308b\u3002","protected":false,"verified":false,"followers_count":113,"friends_count":109,"listed_count":14,"favourites_count":1821,"statuses_count":2866,"created_at":"Fri Oct 02 15:54:28 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653072559529832448\/oKPM78SF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653072559529832448\/oKPM78SF.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663296773545263104\/WbkCvFQh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663296773545263104\/WbkCvFQh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3760525453\/1444661334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061657"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394212864,"id_str":"663728001394212864","text":"RT @CheerfulGimbouy: \u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3124162612,"id_str":"3124162612","name":"MARiSA.","screen_name":"marisajourney","location":null,"url":null,"description":"all that time.","protected":false,"verified":false,"followers_count":18,"friends_count":137,"listed_count":0,"favourites_count":368,"statuses_count":7551,"created_at":"Sat Mar 28 15:45:35 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663448431080288256\/_gMn7bNM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663448431080288256\/_gMn7bNM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3124162612\/1445876965","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:02 +0000 2015","id":663725993115258880,"id_str":"663725993115258880","text":"\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e2d\u0e30 \u0e40\u0e2a\u0e35\u0e22\u0e41\u0e25\u0e49\u0e27\u0e40\u0e2a\u0e35\u0e22\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e08\u0e33\u0e44\u0e27\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2930143004,"id_str":"2930143004","name":"saltedplum","screen_name":"CheerfulGimbouy","location":"utcc ","url":null,"description":"\u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07 \u0e16\u0e49\u0e32\u0e22\u0e31\u0e07\u0e21\u0e2d\u0e07\u0e27\u0e48\u0e32\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\nid : bouyjub","protected":false,"verified":false,"followers_count":36855,"friends_count":20,"listed_count":8,"favourites_count":1970,"statuses_count":2902,"created_at":"Sun Dec 14 18:20:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608542667765481472\/EIgwu2hY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2930143004\/1428188051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":191,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CheerfulGimbouy","name":"saltedplum","id":2930143004,"id_str":"2930143004","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080061659"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406775297,"id_str":"663728001406775297","text":"@barbiekkken \uadfc\ub370....\uc774\uc815\uc7ac\uac00...\ubc84\uac70\ud0b9\uc758 \ud004\ub9ac\ud2f0\ub97c \ub192\uc5ec\ubc84\ub838...... \uc544 \ub9e5\ub0a0??!!!!!!!!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727752441237504,"in_reply_to_status_id_str":"663727752441237504","in_reply_to_user_id":2691266797,"in_reply_to_user_id_str":"2691266797","in_reply_to_screen_name":"barbiekkken","user":{"id":2998438008,"id_str":"2998438008","name":"\uc624\ub611\ud560\ub808\uc624","screen_name":"gmlwn02093","location":null,"url":null,"description":"\uac15\uc544\uc9c0\ub625\/\uc553\ub2e4\uc8fd\uc744\ucf04\ucd1d...\/ \u3147--","protected":false,"verified":false,"followers_count":11,"friends_count":53,"listed_count":0,"favourites_count":47,"statuses_count":3690,"created_at":"Tue Jan 27 14:57:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639424394528337920\/MHQj38z4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639424394528337920\/MHQj38z4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998438008\/1426147164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"barbiekkken","name":"\ubc14\ube44\ucf00\u3134","id":2691266797,"id_str":"2691266797","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406869504,"id_str":"663728001406869504","text":"RT @FinDom_Scarlett: Making my #feet even prettier! #footfettish #heels #baresoles #smooth @womenruleonly @slavefr @underdeskloser @RTpig h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003ertpigrt\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385292770,"id_str":"385292770","name":"@\uff32\uff34\uff30\uff29\uff27","screen_name":"RTpig","location":"kik & snapchat: rtpig","url":"https:\/\/twitter.com\/rtpig\/favorites","description":"Slave for all Ladies. Need more subs to follow you? Just Tag me in your tweet and I'll RT everything. 24\/7 #paypig #findom #femdom #jasmin #mfc #camgirl #webcam","protected":false,"verified":false,"followers_count":13229,"friends_count":4513,"listed_count":182,"favourites_count":105,"statuses_count":122773,"created_at":"Wed Oct 05 07:21:09 +0000 2011","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFF1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624995684505251842\/o8ywmUaq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624995684505251842\/o8ywmUaq.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662759967569682432\/GfqI1EPn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662759967569682432\/GfqI1EPn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385292770\/1447006628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Aug 05 20:01:38 +0000 2015","id":629019452370223106,"id_str":"629019452370223106","text":"Making my #feet even prettier! #footfettish #heels #baresoles #smooth @womenruleonly @slavefr @underdeskloser @RTpig http:\/\/t.co\/FnMJGUPLS1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2314365166,"id_str":"2314365166","name":"FinDom Scarlett","screen_name":"FinDom_Scarlett","location":"The Netherlands","url":"http:\/\/findomscarlett.wix.com\/findommescarlett","description":"Financial Dominatrix accepting moneyslaves\/finsubs. #findom #moneyslave #tribute #paypig #financialcuckold #worship #walletrape #humanatm #Findomme #spoilme","protected":false,"verified":false,"followers_count":437,"friends_count":100,"listed_count":12,"favourites_count":324,"statuses_count":1159,"created_at":"Thu Jan 30 15:44:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580137260294774785\/x0cZnBU__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580137260294774785\/x0cZnBU__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2314365166\/1427150474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":4,"entities":{"hashtags":[{"text":"feet","indices":[10,15]},{"text":"footfettish","indices":[31,43]},{"text":"heels","indices":[44,50]},{"text":"baresoles","indices":[51,61]},{"text":"smooth","indices":[62,69]}],"urls":[],"user_mentions":[{"screen_name":"womenruleonly","name":"FINDOM Tweets","id":1319716986,"id_str":"1319716986","indices":[70,84]},{"screen_name":"slavefr","name":"frenchslave","id":3241205837,"id_str":"3241205837","indices":[85,93]},{"screen_name":"underdeskloser","name":"STUPIG","id":459264335,"id_str":"459264335","indices":[94,109]},{"screen_name":"RTpig","name":"@\uff32\uff34\uff30\uff29\uff27","id":385292770,"id_str":"385292770","indices":[110,116]}],"symbols":[],"media":[{"id":629019445059563520,"id_str":"629019445059563520","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","url":"http:\/\/t.co\/FnMJGUPLS1","display_url":"pic.twitter.com\/FnMJGUPLS1","expanded_url":"http:\/\/twitter.com\/FinDom_Scarlett\/status\/629019452370223106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":629019445059563520,"id_str":"629019445059563520","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","url":"http:\/\/t.co\/FnMJGUPLS1","display_url":"pic.twitter.com\/FnMJGUPLS1","expanded_url":"http:\/\/twitter.com\/FinDom_Scarlett\/status\/629019452370223106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"feet","indices":[31,36]},{"text":"footfettish","indices":[52,64]},{"text":"heels","indices":[65,71]},{"text":"baresoles","indices":[72,82]},{"text":"smooth","indices":[83,90]}],"urls":[],"user_mentions":[{"screen_name":"FinDom_Scarlett","name":"FinDom Scarlett","id":2314365166,"id_str":"2314365166","indices":[3,19]},{"screen_name":"womenruleonly","name":"FINDOM Tweets","id":1319716986,"id_str":"1319716986","indices":[91,105]},{"screen_name":"slavefr","name":"frenchslave","id":3241205837,"id_str":"3241205837","indices":[106,114]},{"screen_name":"underdeskloser","name":"STUPIG","id":459264335,"id_str":"459264335","indices":[115,130]},{"screen_name":"RTpig","name":"@\uff32\uff34\uff30\uff29\uff27","id":385292770,"id_str":"385292770","indices":[131,137]}],"symbols":[],"media":[{"id":629019445059563520,"id_str":"629019445059563520","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","url":"http:\/\/t.co\/FnMJGUPLS1","display_url":"pic.twitter.com\/FnMJGUPLS1","expanded_url":"http:\/\/twitter.com\/FinDom_Scarlett\/status\/629019452370223106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":629019452370223106,"source_status_id_str":"629019452370223106","source_user_id":2314365166,"source_user_id_str":"2314365166"}]},"extended_entities":{"media":[{"id":629019445059563520,"id_str":"629019445059563520","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLq52kOWsAA1QBI.jpg","url":"http:\/\/t.co\/FnMJGUPLS1","display_url":"pic.twitter.com\/FnMJGUPLS1","expanded_url":"http:\/\/twitter.com\/FinDom_Scarlett\/status\/629019452370223106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":629019452370223106,"source_status_id_str":"629019452370223106","source_user_id":2314365166,"source_user_id_str":"2314365166"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001389953024,"id_str":"663728001389953024","text":"Keeping your attention on the here and now could be tricky bus... More for Aquarius https:\/\/t.co\/FQNj5mQI4x","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":445180626,"id_str":"445180626","name":"Deannie \u2020","screen_name":"fvoxoxox","location":" 239 \u2708 770 ","url":null,"description":"IG : lilchuckytaylor","protected":false,"verified":false,"followers_count":341,"friends_count":319,"listed_count":0,"favourites_count":18,"statuses_count":4533,"created_at":"Sat Dec 24 03:26:22 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000007745665\/dc2ea07bee9244fa41e96863bc29531f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000007745665\/dc2ea07bee9244fa41e96863bc29531f.jpeg","profile_background_tile":true,"profile_link_color":"6EE364","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"C20B15","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639236827401089024\/Ris-qbja_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639236827401089024\/Ris-qbja_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445180626\/1385913635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FQNj5mQI4x","expanded_url":"http:\/\/bit.ly\/whBNNw","display_url":"bit.ly\/whBNNw","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001390022656,"id_str":"663728001390022656","text":"RT @dearsalisa: \u0e42\u0e2d\u0e49\u0e22\u0e22\u0e22\u0e22 \u0e08\u0e30\u0e02\u0e33\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e30\u0e2a\u0e07\u0e2a\u0e32\u0e23\u0e01\u0e48\u0e2d\u0e19\u0e14\u0e35 5555555555555 \u0e2a\u0e39\u0e49\u0e40\u0e02\u0e32\u0e25\u0e39\u0e01 strong!! https:\/\/t.co\/imgmLnbIUm","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141061032,"id_str":"141061032","name":"\u0e01\u0e2d\u0e44\u0e01\u0e48+","screen_name":"KOokKai_SujU13D","location":"\u0e15\u0e35\u0e19\u0e01\u0e32\u0e40\u0e2d\u0e2a\u0e40\u0e08\u0e40\u0e14\u0e2d\u0e30\u0e40\u0e1a\u0e2a","url":null,"description":"\u0e40\u0e2d\u0e2a\u0e40\u0e08\u0e2a\u0e44\u0e15\u0e25\u0e4c I'm Thai E.L.F \u2665only13( + 2 ) \u0e40\u0e25\u0e37\u0e2d\u0e14\u0e0b\u0e31\u0e1f\u0e1f\u0e25\u0e32\u0e22\u0e40\u0e02\u0e49\u0e21\u0e02\u0e49\u0e19 99.13%. \uc774\uc900\uae30JG","protected":false,"verified":false,"followers_count":224,"friends_count":172,"listed_count":5,"favourites_count":122,"statuses_count":44432,"created_at":"Fri May 07 02:50:49 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"CFCFF7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/139077060\/105295800.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/139077060\/105295800.jpg","profile_background_tile":true,"profile_link_color":"0588ED","profile_sidebar_border_color":"0CB3F0","profile_sidebar_fill_color":"0E38F0","profile_text_color":"10A2E6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632044900482048001\/sbKW3Io6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632044900482048001\/sbKW3Io6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141061032\/1350540452","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:41:43 +0000 2015","id":663003402553569280,"id_str":"663003402553569280","text":"\u0e42\u0e2d\u0e49\u0e22\u0e22\u0e22\u0e22 \u0e08\u0e30\u0e02\u0e33\u0e2b\u0e23\u0e37\u0e2d\u0e08\u0e30\u0e2a\u0e07\u0e2a\u0e32\u0e23\u0e01\u0e48\u0e2d\u0e19\u0e14\u0e35 5555555555555 \u0e2a\u0e39\u0e49\u0e40\u0e02\u0e32\u0e25\u0e39\u0e01 strong!! https:\/\/t.co\/imgmLnbIUm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1227342722,"id_str":"1227342722","name":"\u0e21\u0e34\u0e19\u0e34\u0e21\u0e2d\u0e2a\u0e01\u0e49\u0e32 \u03b5\u0457\u0437","screen_name":"dearsalisa","location":null,"url":"https:\/\/www.facebook.com\/dearsalisa","description":"[\u0e2b\u0e25\u0e35\u0e19\u0e30\u0e40\u0e2d\u0e2d] (*\u00b4\u30fb\u30a7\u30fb)\u3063 ComEng #KU73 #CPE27 || #KKW115 || \u0e1c\u0e39\u0e49\u0e19\u0e33\u0e17\u0e31\u0e1e\u0e41\u0e21\u0e27\u0e19\u0e49\u0e33 \u0e27\u0e32\u0e2c \u0e41\u0e25\u0e30\u0e2a\u0e34\u0e48\u0e07\u0e21\u0e35\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e15\u0e31\u0e27\u0e01\u0e25\u0e21 :3","protected":false,"verified":false,"followers_count":220,"friends_count":300,"listed_count":1,"favourites_count":1571,"statuses_count":14654,"created_at":"Thu Feb 28 11:32:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530926040571318273\/tgZJUo8S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530926040571318273\/tgZJUo8S.jpeg","profile_background_tile":false,"profile_link_color":"6023A4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566617753197359104\/IVmy1xEo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566617753197359104\/IVmy1xEo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1227342722\/1429450179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11367,"favorite_count":2054,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663002634505183232,"id_str":"663002634505183232","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","url":"https:\/\/t.co\/imgmLnbIUm","display_url":"pic.twitter.com\/imgmLnbIUm","expanded_url":"http:\/\/twitter.com\/dearsalisa\/status\/663003402553569280\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663002634505183232,"id_str":"663002634505183232","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","url":"https:\/\/t.co\/imgmLnbIUm","display_url":"pic.twitter.com\/imgmLnbIUm","expanded_url":"http:\/\/twitter.com\/dearsalisa\/status\/663003402553569280\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/1280x720\/uV3IWajKvDVNww_9.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/640x360\/k7K43l01JCC9-APz.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/640x360\/k7K43l01JCC9-APz.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/pl\/c5m2fbYRpk08qO_Y.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/pl\/c5m2fbYRpk08qO_Y.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/320x180\/r1P2HzZGqKFI0OT0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dearsalisa","name":"\u0e21\u0e34\u0e19\u0e34\u0e21\u0e2d\u0e2a\u0e01\u0e49\u0e32 \u03b5\u0457\u0437","id":1227342722,"id_str":"1227342722","indices":[3,14]}],"symbols":[],"media":[{"id":663002634505183232,"id_str":"663002634505183232","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","url":"https:\/\/t.co\/imgmLnbIUm","display_url":"pic.twitter.com\/imgmLnbIUm","expanded_url":"http:\/\/twitter.com\/dearsalisa\/status\/663003402553569280\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663003402553569280,"source_status_id_str":"663003402553569280","source_user_id":1227342722,"source_user_id_str":"1227342722"}]},"extended_entities":{"media":[{"id":663002634505183232,"id_str":"663002634505183232","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663002634505183232\/pu\/img\/TQ6yF-zVt4TkTRS8.jpg","url":"https:\/\/t.co\/imgmLnbIUm","display_url":"pic.twitter.com\/imgmLnbIUm","expanded_url":"http:\/\/twitter.com\/dearsalisa\/status\/663003402553569280\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663003402553569280,"source_status_id_str":"663003402553569280","source_user_id":1227342722,"source_user_id_str":"1227342722","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/1280x720\/uV3IWajKvDVNww_9.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/640x360\/k7K43l01JCC9-APz.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/640x360\/k7K43l01JCC9-APz.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/pl\/c5m2fbYRpk08qO_Y.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/pl\/c5m2fbYRpk08qO_Y.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663002634505183232\/pu\/vid\/320x180\/r1P2HzZGqKFI0OT0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394298880,"id_str":"663728001394298880","text":"All I do is sit at home by myself. And my hotline never blings","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":270298414,"id_str":"270298414","name":"De'Aaron","screen_name":"Im_Dirty_Dan_","location":null,"url":null,"description":"Ponitz Alumni 2015. OCDA","protected":false,"verified":false,"followers_count":928,"friends_count":546,"listed_count":0,"favourites_count":1946,"statuses_count":30080,"created_at":"Tue Mar 22 10:55:45 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6EB7EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594209746\/4th_period_3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594209746\/4th_period_3.jpg","profile_background_tile":false,"profile_link_color":"E3BE04","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658724154577920000\/rdwi4V73_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658724154577920000\/rdwi4V73_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270298414\/1445886965","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061659"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406918657,"id_str":"663728001406918657","text":"RT @SeerviBharath: 4th consecutive ODI series win for Bangladesh at home. They had won only 2 in the previous 10 ODI series at home.\n#Banvs\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55815908,"id_str":"55815908","name":"SWETANK M MOHANTY","screen_name":"ShortThirdMan","location":"Kolkata, IN","url":"https:\/\/instagram.com\/shortthirdman","description":"Cricket crazy geek. #Cricket fanatics. Not any country specific. Cricket is a drug for me. #StatsPreview #BleedBlue #riseoftigers #ProteaFire #backtheblackcaps","protected":false,"verified":false,"followers_count":815,"friends_count":80,"listed_count":37,"favourites_count":1370,"statuses_count":40945,"created_at":"Sat Jul 11 11:54:32 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458918452816670720\/WcK7VWlQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458918452816670720\/WcK7VWlQ.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658176008441364480\/F8uxna9-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658176008441364480\/F8uxna9-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55815908\/1426312667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:57 +0000 2015","id":663727730681364480,"id_str":"663727730681364480","text":"4th consecutive ODI series win for Bangladesh at home. They had won only 2 in the previous 10 ODI series at home.\n#BanvsZim","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1179253993,"id_str":"1179253993","name":"Bharath Seervi","screen_name":"SeerviBharath","location":"Bengaluru, Karnataka","url":"http:\/\/www.CricketSeerviStats.blogspot.com\/","description":"Cricket Statistician at @ESPNCricinfo, highly passionate about Cricket's numbers, statistics and records. FB - http:\/\/www.facebook.com\/SeerviBharath","protected":false,"verified":false,"followers_count":2882,"friends_count":98,"listed_count":58,"favourites_count":12,"statuses_count":12819,"created_at":"Thu Feb 14 14:07:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3252516547\/51e8904dab3bde3eae972b374ba796e6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3252516547\/51e8904dab3bde3eae972b374ba796e6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"BanvsZim","indices":[114,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BanvsZim","indices":[133,140]}],"urls":[],"user_mentions":[{"screen_name":"SeerviBharath","name":"Bharath Seervi","id":1179253993,"id_str":"1179253993","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394327552,"id_str":"663728001394327552","text":"@sharpseven https:\/\/t.co\/rqVpRzRny3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":43597769,"in_reply_to_user_id_str":"43597769","in_reply_to_screen_name":"sharpseven","user":{"id":2484912817,"id_str":"2484912817","name":"Nicholas D Sneed","screen_name":"49ers_d","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":7,"created_at":"Fri May 09 05:43:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rqVpRzRny3","expanded_url":"http:\/\/bit.ly\/1MQysZd?79592sefuzawo","display_url":"bit.ly\/1MQysZd?79592s\u2026","indices":[12,35]}],"user_mentions":[{"screen_name":"sharpseven","name":"JudySharp","id":43597769,"id_str":"43597769","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061659"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419350017,"id_str":"663728001419350017","text":"#CareerArc #Hospitality #Job alert: General Manager | SONIC Drive-In | #ReedSprings, MO https:\/\/t.co\/DS3DUmMQkw #SONIC #Jobs #Hiring","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":88192950,"id_str":"88192950","name":"TMJ-MO HRTA Jobs","screen_name":"tmj_mo_hrta","location":"Missouri","url":"http:\/\/tweetmyjobs.com","description":"Follow this account for geo-targeted Hospitality\/Restaurant\/Tourism job tweets in Missouri Non-Metro from TweetMyJobs. Need help? Tweet us at @TweetMyJobs!","protected":false,"verified":false,"followers_count":362,"friends_count":282,"listed_count":34,"favourites_count":0,"statuses_count":1741,"created_at":"Sat Nov 07 14:12:13 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315412574\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315412574\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"96BEDF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303701101\/Logo_tmj_new2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303701101\/Logo_tmj_new2b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/88192950\/1349358962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[36.6840062,-93.3837738]},"coordinates":{"type":"Point","coordinates":[-93.3837738,36.6840062]},"place":{"id":"2526edd24c06e60c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2526edd24c06e60c.json","place_type":"admin","name":"Missouri","full_name":"Missouri, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-95.774704,35.995476],[-95.774704,40.613641],[-89.098843,40.613641],[-89.098843,35.995476]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CareerArc","indices":[0,10]},{"text":"Hospitality","indices":[11,23]},{"text":"Job","indices":[24,28]},{"text":"ReedSprings","indices":[71,83]},{"text":"SONIC","indices":[112,118]},{"text":"Jobs","indices":[119,124]},{"text":"Hiring","indices":[125,132]}],"urls":[{"url":"https:\/\/t.co\/DS3DUmMQkw","expanded_url":"http:\/\/bit.ly\/1Jm3bK9","display_url":"bit.ly\/1Jm3bK9","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001390141440,"id_str":"663728001390141440","text":"dzien po comebacku bap mam krw inwokacje recytowac czy wy widcie co ja czuje","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2442008276,"id_str":"2442008276","name":"\u3164","screen_name":"YOOXGI","location":"kc linu\u015b","url":"http:\/\/v-miny.tumblr.com\/","description":"\u275d kim taehyung always in my heart || army, baby and vmin trash...\u275d","protected":false,"verified":false,"followers_count":1624,"friends_count":228,"listed_count":8,"favourites_count":4431,"statuses_count":70182,"created_at":"Sun Apr 13 17:36:33 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609452198762819584\/Kgxuw59D.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609452198762819584\/Kgxuw59D.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663439310050324480\/3AhRqy8X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663439310050324480\/3AhRqy8X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2442008276\/1446990114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402601473,"id_str":"663728001402601473","text":"RT @fannoreturn: \u0e17\u0e33\u0e44\u0e21\u0e41\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e15\u0e34\u0e14\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e01\u0e39\u0e27\u0e30 55555555 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49\u0e41\u0e21\u0e48\u0e07\u0e1e\u0e39\u0e14\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22\u0e17\u0e31\u0e49\u0e07\u0e27\u0e31\u0e19 5555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3146199413,"id_str":"3146199413","name":"\u2661\u1d39\u1d35\u1d3a\u1d40\u2661","screen_name":"mintsuayeiei","location":"\u0e1a\u0e19\u0e42\u0e25\u0e01\u0e41\u0e2b\u0e48\u0e07\u0e02\u0e32\u0e27\u0e1c\u0e2d\u0e21\u0e04\u0e37\u0e2d\u0e0a\u0e19\u0e30","url":null,"description":"\u0e44\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e01\u0e49\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e42\u0e19\u0e49\u0e30|ig:mmintcheese|fb:mintnps","protected":false,"verified":false,"followers_count":48,"friends_count":152,"listed_count":1,"favourites_count":71,"statuses_count":14431,"created_at":"Wed Apr 08 02:24:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662578806411030529\/wc6_CRwM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662578806411030529\/wc6_CRwM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146199413\/1446806603","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:18:37 +0000 2015","id":663707263815708672,"id_str":"663707263815708672","text":"\u0e17\u0e33\u0e44\u0e21\u0e41\u0e21\u0e48\u0e0a\u0e2d\u0e1a\u0e15\u0e34\u0e14\u0e04\u0e33\u0e1e\u0e39\u0e14\u0e01\u0e39\u0e27\u0e30 55555555 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e35\u0e49\u0e41\u0e21\u0e48\u0e07\u0e1e\u0e39\u0e14\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22\u0e17\u0e31\u0e49\u0e07\u0e27\u0e31\u0e19 5555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535137568,"id_str":"535137568","name":"\u0e41\u0e1f\u0e19","screen_name":"fannoreturn","location":"ManchesterUnited","url":"http:\/\/ask.fm\/fanreacog_earth","description":"\u0e17\u0e49\u0e2d\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e19\u0e14\u0e35\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01 \u0e15\u0e34\u0e14\u0e1a\u0e2d\u0e25 \u0e40\u0e25\u0e34\u0e01\u0e40\u0e2b\u0e25\u0e49\u0e32 \u0e41\u0e21\u0e19\u0e46\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e14\u0e35\u0e46\u0e04\u0e19\u0e19\u0e36\u0e07 \u0e25\u0e38\u0e22\u0e14\u0e34\u0e27\u0e30 \u0e44\u0e21\u0e48\u0e40\u0e02\u0e49\u0e32\u0e1c\u0e31\u0e1a \u0e40\u0e21\u0e29\u0e32 2561 #\u0e27\u0e34\u0e16\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e04\u0e19\u0e08\u0e23\u0e34\u0e07","protected":false,"verified":false,"followers_count":80981,"friends_count":411,"listed_count":16,"favourites_count":18536,"statuses_count":81447,"created_at":"Sat Mar 24 08:16:44 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/747600181\/1fe84a4cc6bf7dafe7dfbef02350d1e9.jpeg","profile_background_tile":true,"profile_link_color":"080707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654972258880884736\/mAK4PKi__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535137568\/1442132184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":195,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fannoreturn","name":"\u0e41\u0e1f\u0e19","id":535137568,"id_str":"535137568","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080061661"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402564608,"id_str":"663728001402564608","text":"Kapan member jawab pertanyaan \"mau masuk senbatsu ga?\"\nJawabannya, \"Ga mau.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1695807865,"id_str":"1695807865","name":"Wira Herd","screen_name":"WiraHerd","location":null,"url":null,"description":"Jadilah rumput yang bergoyang. Come on guys, semangat semangat semangat!!!","protected":false,"verified":false,"followers_count":889,"friends_count":412,"listed_count":2,"favourites_count":229,"statuses_count":56653,"created_at":"Sat Aug 24 07:04:34 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439111647769030656\/wfbIommp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439111647769030656\/wfbIommp.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663312581054980097\/N7kzGXqA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663312581054980097\/N7kzGXqA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1695807865\/1446492032","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080061661"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001390141441,"id_str":"663728001390141441","text":"@PatruSoyYo Buenos tardes... jejeje \u0150\u2661\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663617424646922241,"in_reply_to_status_id_str":"663617424646922241","in_reply_to_user_id":237828121,"in_reply_to_user_id_str":"237828121","in_reply_to_screen_name":"PatruSoyYo","user":{"id":3298649464,"id_str":"3298649464","name":"Esquirol","screen_name":"Rinconete_","location":"Yo qu\u00e9 s\u00e9. ","url":null,"description":"Qu\u00e9 s\u00e9 yo.","protected":false,"verified":false,"followers_count":422,"friends_count":194,"listed_count":19,"favourites_count":33441,"statuses_count":37105,"created_at":"Tue May 26 00:01:30 +0000 2015","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662003092230119424\/cwfpGkWR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662003092230119424\/cwfpGkWR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298649464\/1446501489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PatruSoyYo","name":"Cleopatri","id":237828121,"id_str":"237828121","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001423532032,"id_str":"663728001423532032","text":"\u306e\u30fc\u3079\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224015689,"id_str":"3224015689","name":"\u3057\u304a\u3042\u308f","screen_name":"Rrk_s1113","location":null,"url":null,"description":"*\u0323\u0329\u22c6\u0329\u6771\u67ff\u751f\u5c0f\u25b9\u25b8 \u67ff\u751f\u4e2d1\u5e74\u3057\u304a\u3042\u308f\u308a\u308a\u304b\u3067\u3059(\u00b4\ufe36` )\u22c6\u0329*\u0323\u0329","protected":false,"verified":false,"followers_count":154,"friends_count":181,"listed_count":0,"favourites_count":190,"statuses_count":200,"created_at":"Sat May 23 06:37:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663191147838242816\/zv1T6avH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663191147838242816\/zv1T6avH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224015689\/1446951892","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061666"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001385963520,"id_str":"663728001385963520","text":"@Gazi_Otb \n\u0644\u0646 \u0627\u0631\u062f \u0639\u0644\u064a\u0643","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727931060060160,"in_reply_to_status_id_str":"663727931060060160","in_reply_to_user_id":2474616523,"in_reply_to_user_id_str":"2474616523","in_reply_to_screen_name":"Gazi_Otb","user":{"id":957635353,"id_str":"957635353","name":"\u0627\u0645\u0646\u0647 \u0627\u0644\u062c\u0647\u0646\u064a.","screen_name":"2iiiiii","location":"madrid, Hilal ","url":null,"description":"\u0627\u0643\u062a\u0628 \u0627\u0644\u0644\u064a \u0627\u0628\u063a\u0649 \u0648\u0627\u0632\u0631\u0641 \u0627\u0644\u0644\u064a \u0627\u0628\u063a\u0649 \u0627\u0646\u062a \u0645\u0627\u0644\u0643 \u0635\u0644\u0627\u062d.","protected":false,"verified":false,"followers_count":15033,"friends_count":607,"listed_count":16,"favourites_count":32874,"statuses_count":194200,"created_at":"Mon Nov 19 15:22:34 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707570125807616\/RmVfKXDH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707570125807616\/RmVfKXDH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957635353\/1447078828","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gazi_Otb","name":"\u0647\u0639","id":2474616523,"id_str":"2474616523","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061657"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001385955332,"id_str":"663728001385955332","text":"Me arrependi do que eu falei mas ao mesmo tempo n\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267046465,"id_str":"2267046465","name":"J\u00fa","screen_name":"juliamnnds","location":"RJ","url":null,"description":"Seja feita Tua vontade.","protected":false,"verified":false,"followers_count":468,"friends_count":359,"listed_count":0,"favourites_count":10804,"statuses_count":1842,"created_at":"Tue Jan 07 14:50:49 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569911555639087104\/FWzp2jg_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569911555639087104\/FWzp2jg_.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717365578887168\/W5UVumEQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717365578887168\/W5UVumEQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267046465\/1446952888","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061657"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419341825,"id_str":"663728001419341825","text":"RT @delta_trap: \uc694\uc0c8 \uc138\uc0c1 \uc81c\uc77c \ub458\uc774 \uc798\ub180\uc544... \uc608\uc058\ubbf8\ub4e4... #\uc0ac\ub098 #\ucbd4\uc704 #\uc0ac\ucbd4 #\ud2b8\uc640\uc774\uc2a4 #TWICE #SANA #TZUYU https:\/\/t.co\/p0weoBCfYs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2612948520,"id_str":"2612948520","name":"kale.com","screen_name":"babestal","location":"china","url":"http:\/\/morewalls.tumblr.com\/","description":"the grass aint greener on the other side it's greener where u water it #tokyo","protected":false,"verified":false,"followers_count":761,"friends_count":114,"listed_count":11,"favourites_count":4800,"statuses_count":32956,"created_at":"Wed Jul 09 05:05:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491789877654990850\/gnXjE-dn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491789877654990850\/gnXjE-dn.jpeg","profile_background_tile":false,"profile_link_color":"241973","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662456812738777088\/aHOB-Pta_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662456812738777088\/aHOB-Pta_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2612948520\/1430952537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:27:54 +0000 2015","id":663664303786954752,"id_str":"663664303786954752","text":"\uc694\uc0c8 \uc138\uc0c1 \uc81c\uc77c \ub458\uc774 \uc798\ub180\uc544... \uc608\uc058\ubbf8\ub4e4... #\uc0ac\ub098 #\ucbd4\uc704 #\uc0ac\ucbd4 #\ud2b8\uc640\uc774\uc2a4 #TWICE #SANA #TZUYU https:\/\/t.co\/p0weoBCfYs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230986974,"id_str":"3230986974","name":"\ub378\ud0c0\ud2b8\ub7a9\u26a1\ufe0f","screen_name":"delta_trap","location":"weibo @delta_trap","url":"http:\/\/tzuyu.kr","description":"TWICE TZUYU; \ucbd4\uc704\uc0bc\uac01\uc9c0\ub300 trapped in Atzukaban","protected":false,"verified":false,"followers_count":14875,"friends_count":7,"listed_count":381,"favourites_count":36,"statuses_count":396,"created_at":"Sat May 30 21:11:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663034245439328257\/JvF7lOIW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663034245439328257\/JvF7lOIW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230986974\/1444757813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":563,"favorite_count":414,"entities":{"hashtags":[{"text":"\uc0ac\ub098","indices":[27,30]},{"text":"\ucbd4\uc704","indices":[31,34]},{"text":"\uc0ac\ucbd4","indices":[35,38]},{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[39,44]},{"text":"TWICE","indices":[45,51]},{"text":"SANA","indices":[52,57]},{"text":"TZUYU","indices":[58,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663664288356134912,"id_str":"663664288356134912","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663664288356134912,"id_str":"663664288356134912","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663664288351977472,"id_str":"663664288351977472","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ21VAAAJobx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ21VAAAJobx.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc0ac\ub098","indices":[43,46]},{"text":"\ucbd4\uc704","indices":[47,50]},{"text":"\uc0ac\ucbd4","indices":[51,54]},{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[55,60]},{"text":"TWICE","indices":[61,67]},{"text":"SANA","indices":[68,73]},{"text":"TZUYU","indices":[74,80]}],"urls":[],"user_mentions":[{"screen_name":"delta_trap","name":"\ub378\ud0c0\ud2b8\ub7a9\u26a1\ufe0f","id":3230986974,"id_str":"3230986974","indices":[3,14]}],"symbols":[],"media":[{"id":663664288356134912,"id_str":"663664288356134912","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663664303786954752,"source_status_id_str":"663664303786954752","source_user_id":3230986974,"source_user_id_str":"3230986974"}]},"extended_entities":{"media":[{"id":663664288356134912,"id_str":"663664288356134912","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ22UcAA8eOt.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663664303786954752,"source_status_id_str":"663664303786954752","source_user_id":3230986974,"source_user_id_str":"3230986974"},{"id":663664288351977472,"id_str":"663664288351977472","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPJ21VAAAJobx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPJ21VAAAJobx.jpg","url":"https:\/\/t.co\/p0weoBCfYs","display_url":"pic.twitter.com\/p0weoBCfYs","expanded_url":"http:\/\/twitter.com\/delta_trap\/status\/663664303786954752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663664303786954752,"source_status_id_str":"663664303786954752","source_user_id":3230986974,"source_user_id_str":"3230986974"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001389989888,"id_str":"663728001389989888","text":"*Andr\u00e9s","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=org.mariotaku.twidere\" rel=\"nofollow\"\u003eTwidere for Android #4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663408465,"id_str":"1663408465","name":"Andr\u00e9s Visha","screen_name":"AndresVisha","location":"GuateAmala :)","url":"https:\/\/instagram.com\/andres.visha\/","description":"Mujer, eres bienvenida a la FriendZone :) Dios sobre todas las Cosas :')","protected":false,"verified":false,"followers_count":1530,"friends_count":1245,"listed_count":12,"favourites_count":13826,"statuses_count":43012,"created_at":"Sun Aug 11 20:23:31 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"030000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/473618231236624384\/RJZgGLkH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/473618231236624384\/RJZgGLkH.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661960388045438977\/YMBQzO0__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661960388045438977\/YMBQzO0__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1663408465\/1442297006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001398538240,"id_str":"663728001398538240","text":"https:\/\/t.co\/AApWYWfJF3","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143578504,"id_str":"1143578504","name":"isaac","screen_name":"CoffeeKb","location":"soest","url":null,"description":null,"protected":false,"verified":false,"followers_count":583,"friends_count":2004,"listed_count":21,"favourites_count":381,"statuses_count":18006,"created_at":"Sat Feb 02 22:30:23 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553275796794523648\/7bFFuTBj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553275796794523648\/7bFFuTBj.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633393417314246658\/eQxqTUJ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633393417314246658\/eQxqTUJ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1143578504\/1428105059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AApWYWfJF3","expanded_url":"http:\/\/fb.me\/4Kn18o1le","display_url":"fb.me\/4Kn18o1le","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061660"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001385758720,"id_str":"663728001385758720","text":"@1046lynx \u53ef\u611b\u304b\u3063\u305f\u3089\u8a50\u6b3a\u8a50\u6b3a\u3063\u3066\u3044\u308f\u308c\u306a\u3044\u3067\u3059\u3088wwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727803309801472,"in_reply_to_status_id_str":"663727803309801472","in_reply_to_user_id":2891442794,"in_reply_to_user_id_str":"2891442794","in_reply_to_screen_name":"1046lynx","user":{"id":2792086563,"id_str":"2792086563","name":"\uff4b\uff41\uff4e\uff41@\u6b32\u60c5\u30ad\u30ea\u30f3","screen_name":"kana_syokora","location":"\u306f\u3074\u306d\u3059\u3073\u3063\u304f\u3070\u30fc\u3093\u3063","url":null,"description":"\u9ad8\u6821\uff12\u5e74\u751f \u4e00\u5fdc\u5973\u5b50\u9ad8\u751f \u305c\u308a\u30fc\u30e1\u30f3\u30bf\u30eb \u6ce3\u304d\u866b \u30c4\u30f3\u30c4\u30f3 \u7ae5\u9854 \u30ce\u30c3\u30dd \u3057\u305f\u304e\u3061\u3083\u3093 \u307d\u3063\u3061\u3083\u308a\u5a18 \u7d0d\u8c46\u5927\u597d\u304d \u8efd\u97f3\u90e82\u5e74 \u30d9\u30fc\u30b9 \u30c7\u30d6\u3067\u306f\u306a\u3044\u3068\u4fe1\u3058\u305f\u3044\u307d\u3063\u3061\u3083\u308a \u30cb\u30b3\u5b66\u30b9\u30bf\u30c3\u30d5\u3057\u3066\u307e\u3059(^_^)","protected":false,"verified":false,"followers_count":231,"friends_count":292,"listed_count":0,"favourites_count":793,"statuses_count":2085,"created_at":"Mon Sep 29 16:31:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663600102825529344\/Cu0joowg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663600102825529344\/Cu0joowg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792086563\/1441897439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1046lynx","name":"Lynx","id":2891442794,"id_str":"2891442794","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061657"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001406881792,"id_str":"663728001406881792","text":"RT https:\/\/t.co\/RCPJP4vcLa CuervaBrissa : Distintos tipos de mujeres y yo que me siento como un chabon https:\/\/t.co\/WGG1vc9mRH","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328503122,"id_str":"3328503122","name":"Haley","screen_name":"halihaliey","location":"Buenos Aires, Argentina","url":null,"description":"Naturally and artificially flavored","protected":false,"verified":false,"followers_count":397,"friends_count":1035,"listed_count":217,"favourites_count":0,"statuses_count":142283,"created_at":"Mon Aug 24 11:26:02 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635775296587743232\/OVu2A3xN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635775296587743232\/OVu2A3xN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328503122\/1440415668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RCPJP4vcLa","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[3,26]}],"user_mentions":[],"symbols":[],"media":[{"id":663727758426656768,"id_str":"663727758426656768","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4TSWUAAQSUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4TSWUAAQSUd.jpg","url":"https:\/\/t.co\/WGG1vc9mRH","display_url":"pic.twitter.com\/WGG1vc9mRH","expanded_url":"http:\/\/twitter.com\/CuervaBrissa\/status\/663727759945019392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727759945019392,"source_status_id_str":"663727759945019392","source_user_id":3082288269,"source_user_id_str":"3082288269"}]},"extended_entities":{"media":[{"id":663727758426656768,"id_str":"663727758426656768","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4TSWUAAQSUd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4TSWUAAQSUd.jpg","url":"https:\/\/t.co\/WGG1vc9mRH","display_url":"pic.twitter.com\/WGG1vc9mRH","expanded_url":"http:\/\/twitter.com\/CuervaBrissa\/status\/663727759945019392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727759945019392,"source_status_id_str":"663727759945019392","source_user_id":3082288269,"source_user_id_str":"3082288269"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080061662"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419341824,"id_str":"663728001419341824","text":"RT @ItsOGcoral: I literally saw Shawn build SayCheese from the ground up, it used to be Saycheeze lmao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296582736,"id_str":"296582736","name":"Fatt Geech","screen_name":"1FattGeech","location":"Dallas,TX","url":"http:\/\/spnr.la\/sDnHDWjf","description":"For Bookings or Features Contact : pesogvng@gmail.com |","protected":false,"verified":false,"followers_count":3613,"friends_count":852,"listed_count":4,"favourites_count":1682,"statuses_count":24133,"created_at":"Wed May 11 01:36:33 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/547072273773916160\/W_dYCN4W.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/547072273773916160\/W_dYCN4W.jpeg","profile_background_tile":false,"profile_link_color":"992400","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660271698571362305\/IdHiv0-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660271698571362305\/IdHiv0-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296582736\/1446228403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727668752355328,"id_str":"663727668752355328","text":"I literally saw Shawn build SayCheese from the ground up, it used to be Saycheeze lmao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72715627,"id_str":"72715627","name":"Young OG","screen_name":"ItsOGcoral","location":"SATX | HTX","url":"http:\/\/www.saycheesetv.com","description":"First female blogger for @SayCheese_TV \u221e Bookings\/Features\/Media for @ChaseNCashe email: itsogcoral@gmail.com","protected":false,"verified":false,"followers_count":1431,"friends_count":572,"listed_count":29,"favourites_count":322,"statuses_count":91694,"created_at":"Wed Sep 09 00:35:03 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/757360509\/a193f58c334fec1b1a5c980e553014af.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/757360509\/a193f58c334fec1b1a5c980e553014af.jpeg","profile_background_tile":false,"profile_link_color":"B00A47","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"E8177C","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659167104214528000\/Vvfu_wQw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659167104214528000\/Vvfu_wQw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72715627\/1446482647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ItsOGcoral","name":"Young OG","id":72715627,"id_str":"72715627","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001410949120,"id_str":"663728001410949120","text":"@turu_gojyo \n\u55da\u547c\u3001\u5e78\u305b\u3060\u3002\u2026\u6c42\u3081\u3066\u3044\u308b\u3067\u3042\u308d\u3046\uff1f\u6c42\u3081\u904e\u304e\u3066\u6c17\u3065\u304b\u308c\u3066\u7121\u3044\u306e\u3060\u308d\u3046\u304b\uff1f(\u9996\u3092\u50be\u3052)\n\n\u3075\u3075\u3063\u3001\u697d\u3057\u307f\u3060(\u306b\u3053\u306b\u3053\u3068\u7b11\u3044)\n\n\u512a\u3057\u904e\u304e\u3066\u7533\u3057\u8a33\u7121\u304f\u306a\u308b\u3088\u3002\u7518\u3084\u304b\u3057\u3066\u3084\u308a\u305f\u3044\u306e\u306b\u512a\u3057\u3055\u306b\u7518\u3048\u3066\u7518\u3084\u304b\u3059\u65b9\u3070\u304b\u308a\u3055\u305b\u3066\u3057\u307e\u3063\u3066\u5c45\u308b\u304b\u3089\u306a(\u304e\u3085\u3063\u3068\u62b1\u304d\u3064\u304d)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663672564753940481,"in_reply_to_status_id_str":"663672564753940481","in_reply_to_user_id":3321008281,"in_reply_to_user_id_str":"3321008281","in_reply_to_screen_name":"turu_gojyo","user":{"id":2937469704,"id_str":"2937469704","name":"\u5f7c\u5cb8\u30ce\u6708","screen_name":"No3_mkdk___","location":"\u9db4\u304c\u821e\u3044\u964d\u308a\u308b\u5f7c\u5cb8\u82b1\u304c\u54b2\u304d\u4e71\u308c\u308b\u793e","url":null,"description":"\u975e\u516c\u5f0f\u4e5f\uff0e\u25a0\u7e01\u7d50|\u53ef\u2192\u540c\u9854,\u5275\u4f5c,\u7279\u6b8a,\u4e00\u822c|\u4e0d\u53ef\u219218\u2193,\u696d\u8005,\u67f5\u8d8a| \u25a0\u4ed6|\u5ea7\u6577\u5e38\u6642\u89e3\u653e,\u95a2\u4fc2\u6d41(\u604b\u4ef2\u6709),\u91ce\u826f\u5200,\u89e6\u308c\u5408\u3044\u591a,\u6b7b\u57a2\u4f7f\u7528\u6709(\u53cd\u5fdc\u81ea\u7531),\u591c\u67b7\u5bfe\u5fdc\u5ea7\u6577(\u53f3\u5bc4\u4e21\u5200\u6765\u308b\u3082\u306e\u62d2\u307e\u305a),\u4e8c\u5341\u56db\u6642\u9593\u5bfe\u5fdc\u4e0d\u53ef,\u59ff\u7d75\u501f\u7269\uff0e\u533a\u5225\u540d\uff3f\u5983\u5cb8\u6708(\uff8b\uff76\uff9e\uff9d\uff82\uff9e\uff77) \u2026\u597d\u304d\u306a\u6642\u306b\u7e01\u3092\u5207\u3063\u3066\u304a\u304f\u308c","protected":false,"verified":false,"followers_count":27,"friends_count":27,"listed_count":0,"favourites_count":395,"statuses_count":737,"created_at":"Sat Dec 20 22:18:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659677105211338752\/VzBYn1zG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659677105211338752\/VzBYn1zG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2937469704\/1446120966","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"turu_gojyo","name":"\u9db4\u4e38.\u56fd\u6c38_\u5915\u9db4","id":3321008281,"id_str":"3321008281","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061663"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402605568,"id_str":"663728001402605568","text":"CDK Global #IT #Job: Software Development Manager - MS Net Stack (#Hyderabad) https:\/\/t.co\/YMQDvGn6y9 #Jobs #Hiring","source":"\u003ca href=\"http:\/\/tweetmyjobs.com\" rel=\"nofollow\"\u003eSafeTweet by TweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008189977,"id_str":"3008189977","name":"CDK Global Open Jobs","screen_name":"CDKopenjobs","location":null,"url":"http:\/\/cdkglobal.com\/company\/career-opportunities","description":"This is the dream team, and we're hiring. Join us and #GreenLightYourCareer","protected":false,"verified":false,"followers_count":120,"friends_count":31,"listed_count":132,"favourites_count":0,"statuses_count":453,"created_at":"Mon Feb 02 16:16:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"72AE00","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"82C600","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562283798658686976\/2eSuUOoS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562283798658686976\/2eSuUOoS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3008189977\/1422893867","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[17.385044,78.486671]},"coordinates":{"type":"Point","coordinates":[78.486671,17.385044]},"place":{"id":"243cc16f6417a167","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/243cc16f6417a167.json","place_type":"city","name":"Hyderabad","full_name":"Hyderabad, Andhra Pradesh","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[78.389772,17.301399],[78.389772,17.475900],[78.540417,17.475900],[78.540417,17.301399]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IT","indices":[11,14]},{"text":"Job","indices":[15,19]},{"text":"Hyderabad","indices":[66,76]},{"text":"Jobs","indices":[102,107]},{"text":"Hiring","indices":[108,115]}],"urls":[{"url":"https:\/\/t.co\/YMQDvGn6y9","expanded_url":"http:\/\/bit.ly\/1M98Y8V","display_url":"bit.ly\/1M98Y8V","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061661"} +{"delete":{"status":{"id":659528987195088896,"id_str":"659528987195088896","user_id":3540828375,"user_id_str":"3540828375"},"timestamp_ms":"1447080061823"}} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001423507457,"id_str":"663728001423507457","text":"@_syuaaa APA ACI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727946113220609,"in_reply_to_status_id_str":"663727946113220609","in_reply_to_user_id":1286006617,"in_reply_to_user_id_str":"1286006617","in_reply_to_screen_name":"_syuaaa","user":{"id":1485523651,"id_str":"1485523651","name":"Imtiaz","screen_name":"imtiaz1999","location":"Kedah","url":null,"description":"All praise to allah \/\/16\/\/wcid:imtiazpro\/\/ig:tiaz__","protected":false,"verified":false,"followers_count":94,"friends_count":119,"listed_count":1,"favourites_count":371,"statuses_count":1297,"created_at":"Wed Jun 05 17:01:40 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662983976898859010\/7sfNVy-4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662983976898859010\/7sfNVy-4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1485523651\/1445239165","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_syuaaa","name":"syua","id":1286006617,"id_str":"1286006617","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080061666"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419382784,"id_str":"663728001419382784","text":"RT @UGTWO: \u3010\u3082\u3046\u6765\u9031\u3058\u3083\u306a\u3044\u304b\uff01\uff01\u51ac\u652f\u5ea6\u306e\u306f\u3058\u307e\u308a\u3011\n11\/15(\u65e5)\u897f\u837b\u7aaaPIT BAR\n\u5c0f\u91cepre\u300cYOU GIVE ME ALL I NEED vol.2\u300d\n\u8cb4\u65b9\u306e\u8840\u6db2\u3092\u6cb8\u9a30\u3055\u305b\u308b\u4e00\u591c\u306b\uff01\uff01\u524d\u58f2\u308a\u7b49\u304a\u6c17\u8efd\u306b\u30ea\u30d7\u4e0b\u3055\u3044\u3002 https:\/\/t.co\/P8WHXzi\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46389844,"id_str":"46389844","name":"\u304f\u3073\u306d\u30c7\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30b7\u30e7\u30f3","screen_name":"sxdxkubine","location":"\u30e0\u30fc\u30df\u30f3\u8c37","url":"http:\/\/selfdeconstruction.bandcamp.com","description":"\u30b0\u30e9\u30a4\u30f3\u30c9\u30b3\u30a2\/\u30d1\u30ef\u30fc\u30d0\u30a4\u30aa\u30ec\u30f3\u30b9\u306e\u30d0\u30f3\u30c9Self Deconstruction\u306e\u30dc\u30fc\u30ab\u30eb\n\u672d\u5e4c\u51fa\u8eab\u3001\u6a2a\u6d5c\u5728\u4f4f\u306e\u6012\u308c\u308bOL\u5973\u6027(24)","protected":false,"verified":false,"followers_count":1119,"friends_count":1230,"listed_count":11,"favourites_count":3064,"statuses_count":8957,"created_at":"Thu Jun 11 13:50:40 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/718487556\/d5eeded5f7357edd8a2a9714ff88885f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/718487556\/d5eeded5f7357edd8a2a9714ff88885f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"3B3737","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661220338366156800\/QlD7e7bC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661220338366156800\/QlD7e7bC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46389844\/1446482422","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 03:35:41 +0000 2015","id":661748626436165637,"id_str":"661748626436165637","text":"\u3010\u3082\u3046\u6765\u9031\u3058\u3083\u306a\u3044\u304b\uff01\uff01\u51ac\u652f\u5ea6\u306e\u306f\u3058\u307e\u308a\u3011\n11\/15(\u65e5)\u897f\u837b\u7aaaPIT BAR\n\u5c0f\u91cepre\u300cYOU GIVE ME ALL I NEED vol.2\u300d\n\u8cb4\u65b9\u306e\u8840\u6db2\u3092\u6cb8\u9a30\u3055\u305b\u308b\u4e00\u591c\u306b\uff01\uff01\u524d\u58f2\u308a\u7b49\u304a\u6c17\u8efd\u306b\u30ea\u30d7\u4e0b\u3055\u3044\u3002 https:\/\/t.co\/P8WHXzilDP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265284170,"id_str":"265284170","name":"\u5c0f\u91ce\u7950\u53f21115\u500b\u4eba\u4f01\u753b\u897f\u837bPITBAR","screen_name":"UGTWO","location":"\u6771\u4eac\u90fd","url":null,"description":"DEAD INFIELD\u3068CRUCEM\u306e\u30ae\u30bf\u30fc\u3002\u4ed6\u306b\u3082\u5f3e\u304b\u305b\u3066\u9802\u304f\u6a5f\u4f1a\u304c\u3042\u308c\u3070\u4f55\u51e6\u3078\u3067\u3082\u3002\u9aea\u578b\u304c\u843d\u3061\u7740\u304b\u306a\u3044\u4e8b\u304c\u6700\u8fd1\u306e\u60a9\u307f\u3002\u305d\u3053\u3089\u8fba\u306e\u9752\u6625\u30be\u30f3\u30d3\u3002 http:\/\/thrash1211.wix.com\/dead-infield http:\/\/crucem.info","protected":false,"verified":false,"followers_count":654,"friends_count":1370,"listed_count":6,"favourites_count":273,"statuses_count":5144,"created_at":"Sun Mar 13 09:04:19 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438660740145090560\/mvqpTRwM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438660740145090560\/mvqpTRwM.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629886411974422528\/TlpqLnf5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629886411974422528\/TlpqLnf5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265284170\/1410344395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661748615224754177,"id_str":"661748615224754177","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","url":"https:\/\/t.co\/P8WHXzilDP","display_url":"pic.twitter.com\/P8WHXzilDP","expanded_url":"http:\/\/twitter.com\/UGTWO\/status\/661748626436165637\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661748615224754177,"id_str":"661748615224754177","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","url":"https:\/\/t.co\/P8WHXzilDP","display_url":"pic.twitter.com\/P8WHXzilDP","expanded_url":"http:\/\/twitter.com\/UGTWO\/status\/661748626436165637\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UGTWO","name":"\u5c0f\u91ce\u7950\u53f21115\u500b\u4eba\u4f01\u753b\u897f\u837bPITBAR","id":265284170,"id_str":"265284170","indices":[3,9]}],"symbols":[],"media":[{"id":661748615224754177,"id_str":"661748615224754177","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","url":"https:\/\/t.co\/P8WHXzilDP","display_url":"pic.twitter.com\/P8WHXzilDP","expanded_url":"http:\/\/twitter.com\/UGTWO\/status\/661748626436165637\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":661748626436165637,"source_status_id_str":"661748626436165637","source_user_id":265284170,"source_user_id_str":"265284170"}]},"extended_entities":{"media":[{"id":661748615224754177,"id_str":"661748615224754177","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS8A3AUUAAEWR7c.jpg","url":"https:\/\/t.co\/P8WHXzilDP","display_url":"pic.twitter.com\/P8WHXzilDP","expanded_url":"http:\/\/twitter.com\/UGTWO\/status\/661748626436165637\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":661748626436165637,"source_status_id_str":"661748626436165637","source_user_id":265284170,"source_user_id_str":"265284170"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001423687680,"id_str":"663728001423687680","text":"@bronwynlynne7 cheers cov","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725322748186625,"in_reply_to_status_id_str":"663725322748186625","in_reply_to_user_id":3566750122,"in_reply_to_user_id_str":"3566750122","in_reply_to_screen_name":"bronwynlynne7","user":{"id":1117250778,"id_str":"1117250778","name":"jack","screen_name":"__jackforsyth","location":null,"url":null,"description":"@aileyyparsonss","protected":false,"verified":false,"followers_count":3140,"friends_count":948,"listed_count":0,"favourites_count":1307,"statuses_count":2406,"created_at":"Thu Jan 24 17:04:04 +0000 2013","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658412980426682368\/BNqzHLlm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658412980426682368\/BNqzHLlm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1117250778\/1446710516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bronwynlynne7","name":"Bronwyn","id":3566750122,"id_str":"3566750122","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061666"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001415315456,"id_str":"663728001415315456","text":"@xxmm550 @ali7005aa @DoraOmar11 \u062c\u0632\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u062e\u064a\u0631 \u062c\u0645\u064a\u0639\u0627\u064b \u0628\u0645\u0627 \u064a\u062c\u0632\u064a \u0627\u0644\u0644\u0647 \u0628\u0647 \u0639\u0628\u0627\u062f\u0629 \u0627\u0644\u0635\u0627\u0644\u062d\u064a\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698522793971712,"in_reply_to_status_id_str":"663698522793971712","in_reply_to_user_id":1236931663,"in_reply_to_user_id_str":"1236931663","in_reply_to_screen_name":"xxmm550","user":{"id":423024766,"id_str":"423024766","name":"\u0623\u0628\u0640\u0627 \/ \u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646","screen_name":"mnff900","location":"\u0627\u0644\u0645\u062f\u064a\u0646\u0647 \u0627\u0644\u0646\u0628\u0648\u064a\u0647\/ \u0637\u0627\u0644\u0628 \u0639\u0644\u0645","url":null,"description":"\u0645\u064e\u0627 \u064a\u064e\u0644\u0652\u0641\u0650\u0638\u064f \u0645\u0650\u0646\u0652 \u0642\u064e\u0648\u0652\u0644\u064d \u0625\u0650\u0644\u0651\u064e\u0627 \u0644\u064e\u062f\u064e\u064a\u0652\u0647\u0650 \u0631\u064e\u0642\u0650\u064a\u0628\u064c \u0639\u064e\u062a\u0650\u064a\u062f","protected":false,"verified":false,"followers_count":1352,"friends_count":2018,"listed_count":1,"favourites_count":3532,"statuses_count":4100,"created_at":"Mon Nov 28 00:15:35 +0000 2011","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498090864783015937\/zseL2Rxn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498090864783015937\/zseL2Rxn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/423024766\/1407716011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xxmm550","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0641\u0627\u064a\u0632","id":1236931663,"id_str":"1236931663","indices":[0,8]},{"screen_name":"ali7005aa","name":"\u0627\u0644\u062d\u0632\u0645 \u0623\u0628\u0648 \u0627\u0644\u0639\u0632\u0645","id":515728895,"id_str":"515728895","indices":[9,19]},{"screen_name":"DoraOmar11","name":"\u0641\u0647\u062f \u0628\u0646 \u062b\u0627\u0645\u0631","id":2404954771,"id_str":"2404954771","indices":[20,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080061664"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001402712064,"id_str":"663728001402712064","text":"Vivica anal snacker Fox \ud83d\ude29\ud83d\ude29\ud83d\ude29\ud83d\ude29\ud83d\ude29\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 I can't stand @cthagod","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39694251,"id_str":"39694251","name":"B!","screen_name":"VivaLaBran","location":"Brooklyn ","url":"http:\/\/www.StyledByBran.com","description":"Style coach! Catch me giving style tips on #periscope everyday","protected":false,"verified":false,"followers_count":1244,"friends_count":1088,"listed_count":23,"favourites_count":264,"statuses_count":41340,"created_at":"Wed May 13 05:16:49 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/155321294\/collage-kelis-changing-face.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/155321294\/collage-kelis-changing-face.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646060205076283392\/nWg3SFFN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646060205076283392\/nWg3SFFN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39694251\/1442867731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cthagod","name":"Charlamagne Tha God","id":17878322,"id_str":"17878322","indices":[48,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061661"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419378688,"id_str":"663728001419378688","text":"Real talk. Pa order po ng isang Clark Medina\/James Reid. *ehem* Banker *ehem* #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33859488,"id_str":"33859488","name":"SabS.","screen_name":"_ssaabbbbyy","location":"Manila City, National Capital Region","url":"http:\/\/www.facebook.com\/sabs.suarez","description":"|| DLSZ 2014 || DLS-CSB 114 || BS-ARCH || BaradAmigos || SB-YC","protected":false,"verified":false,"followers_count":378,"friends_count":1024,"listed_count":3,"favourites_count":806,"statuses_count":15809,"created_at":"Tue Apr 21 09:29:57 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"08CC1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/789773960\/bfe7b36cda17b3be0ffc51db2f13d3db.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/789773960\/bfe7b36cda17b3be0ffc51db2f13d3db.jpeg","profile_background_tile":true,"profile_link_color":"08CC1F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635366904006209536\/wVVkwhFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635366904006209536\/wVVkwhFO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33859488\/1375702796","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[78,88]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080061665"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001398341632,"id_str":"663728001398341632","text":"\u982d\u76ee\u304c\u3044\u306a\u3044\u3068\u3053\u3067\u306f\u3081\u3063\u3061\u3083\u30ac\u30e9\u60aa\u3044\u3051\u3069\u982d\u76ee\u304c\u304f\u308b\u3068\u304a\u3068\u306a\u3057\u304f\u306a\u3063\u3066\u30c7\u30ec\u30c7\u30ec\u306b\u306a\u308b\u30b7\u30b9\u304f\uff4e\u6982\u5ff5","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264479128,"id_str":"1264479128","name":"\u591c\u90a3","screen_name":"palebraze","location":"Shadow Isles","url":"http:\/\/twpf.jp\/palebraze","description":"\u304d\u304f\u3046\u3057\u3068\u3055\u3082\u306a\u30fc\u3068\u5929\u547cEno.2635\u3000\u540c\u62c5\u306f\u62d2\u5426\u3001\u305d\u308c\u304c\u9244\u306e\u639f","protected":false,"verified":false,"followers_count":280,"friends_count":340,"listed_count":45,"favourites_count":99545,"statuses_count":114619,"created_at":"Wed Mar 13 13:33:23 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693392052772864\/ofpw1YhQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693392052772864\/ofpw1YhQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1264479128\/1432351395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061660"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001410994176,"id_str":"663728001410994176","text":"This 5 Foot Monster Washed Up On the Shores of England https:\/\/t.co\/i5BtK8plIe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3082324113,"id_str":"3082324113","name":"Charlie Sheen","screen_name":"Charly__Harper","location":null,"url":null,"description":"My Tweets are here to inspire. I am not the real Charlie Sheen. This Account is not associated with the actor Charlie. Parodie Account to inspire.","protected":false,"verified":false,"followers_count":6575,"friends_count":343,"listed_count":7,"favourites_count":3,"statuses_count":5027,"created_at":"Mon Mar 09 20:11:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575029019554357251\/NmTm0Qwl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575029019554357251\/NmTm0Qwl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3082324113\/1425932607","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/i5BtK8plIe","expanded_url":"http:\/\/motlvate.com\/4891981-12554200?sFQ8","display_url":"motlvate.com\/4891981-125542\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080061663"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001423507456,"id_str":"663728001423507456","text":"@Tany_AUGUST \u3064\u3050\u30fc\u3093","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727535033679872,"in_reply_to_status_id_str":"663727535033679872","in_reply_to_user_id":299624333,"in_reply_to_user_id_str":"299624333","in_reply_to_screen_name":"Tany_AUGUST","user":{"id":211721092,"id_str":"211721092","name":"\u60a0\u5d0e \u88d5","screen_name":"Haruna_Y_August","location":"\u60a0\u6728\u967d\u83dc\u3001\u767d\u5d0e\u3064\u3050\u307f\u3068\u3044\u3046\u539f\u70b9\u3068\u7406\u60f3\u306e\u65c5\u306e\u4e2d","url":"http:\/\/twpf.jp\/Haruna_Y_August","description":"\u60a0\u5d0e \u88d5\uff08Yu Yusaki\uff09\u3002\u3086\u30fc\u307e\u304d\u306e\u4eba\u3002\u30aa\u30fc\u30ac\u30b9\u30c8\uff08AUGUST\uff09\u597d\u304d\u3002\u7279\u306b\u60a0\u6728\u967d\u83dc\u3068\u767d\u5d0e\u3064\u3050\u307f\u304c\u5927\u597d\u304d\u306a\u4eba\u3002\u7406\u7cfb\u9662\u5352\uff06\u5143\u4f53\u80b2\u4f1a\u7cfb\u30a4\u30f3\u30bf\u30fc\u30cf\u30a4\u9078\u624b\u3002\u73fe\u5728\u306f\u67d0\u793e\u3067\u6280\u8853\u30b3\u30f3\u30b5\u30eb\u3068\u7814\u7a76\u958b\u767a\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u4eca\u306e\u30c8\u30ec\u30f3\u30c9\u306f\u30c7\u30b8\u30e2\u30f3\u30a2\u30c9\u30d9\u30f3\u30c1\u30e3\u30fc\u3068\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3067\u3002\u203b\u753b\u50cf\u306e\u8457\u4f5c\u6a29\u306f\u30aa\u30fc\u30ac\u30b9\u30c8\u69d8\u306b\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":718,"friends_count":740,"listed_count":98,"favourites_count":1303,"statuses_count":137349,"created_at":"Thu Nov 04 01:45:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162483964\/RuUqJwat.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162483964\/RuUqJwat.jpeg","profile_background_tile":false,"profile_link_color":"FFAA00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711161469177856\/Xi8JNWd0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711161469177856\/Xi8JNWd0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211721092\/1446546313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tany_AUGUST","name":"\u3042\u3055\u304e\u306c\u305f\u306b\u30fc@\u9ebb\u8863\u5343\u8389\u63a8\u3057","id":299624333,"id_str":"299624333","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061666"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394323456,"id_str":"663728001394323456","text":"#PushAwardsKathNiels https:\/\/t.co\/oxCiHjT9AI","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3930453973,"id_str":"3930453973","name":"kath","screen_name":"kathdjjj7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":3,"listed_count":22,"favourites_count":0,"statuses_count":58197,"created_at":"Sun Oct 18 00:39:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655544407844786176\/i0slnNpx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655544407844786176\/i0slnNpx_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727878614458368,"quoted_status_id_str":"663727878614458368","quoted_status":{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727878614458368,"id_str":"663727878614458368","text":"AllureKath: kathnielquotes_: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1188121111,"id_str":"1188121111","name":"Cecaina S. Rodrigo","screen_name":"kathnielcecaina","location":"Negros Occidental","url":null,"description":"Solid Kathniel- One heart for @bernardokath and @imdanielpadilla !\nEVEN--STEADY--TRUE","protected":false,"verified":false,"followers_count":187,"friends_count":1036,"listed_count":28,"favourites_count":346,"statuses_count":40229,"created_at":"Sun Feb 17 02:37:20 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658275442659430400\/VA31SqDI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658275442659430400\/VA31SqDI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1188121111\/1445138299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[69,89]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/oxCiHjT9AI","expanded_url":"http:\/\/twitter.com\/kathnielcecaina\/status\/663727878614458368","display_url":"twitter.com\/kathnielcecain\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061659"} +{"delete":{"status":{"id":638693899523915776,"id_str":"638693899523915776","user_id":1592848885,"user_id_str":"1592848885"},"timestamp_ms":"1447080061834"}} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001390088192,"id_str":"663728001390088192","text":"@batipark: @batipark drama kursumuzdan 10 Kas\u0131m etkinli\u011fi\n@06melihgokcek @asimbalci @receparac06 https:\/\/t.co\/DijlUbH9O3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716429972307968,"in_reply_to_status_id_str":"663716429972307968","in_reply_to_user_id":495779432,"in_reply_to_user_id_str":"495779432","in_reply_to_screen_name":"batipark","user":{"id":2535210979,"id_str":"2535210979","name":"ABB SOSYAL H\u0130ZMETLER","screen_name":"abbSosHiz","location":"Ankara","url":null,"description":"Ankara B\u00fcy\u00fck\u015fehir Belediyesi \nSosyal Hizmetler Dairesi Ba\u015fkanl\u0131\u011f\u0131 Resmi Twitter Hesab\u0131d\u0131r","protected":false,"verified":false,"followers_count":2957,"friends_count":955,"listed_count":1,"favourites_count":819,"statuses_count":7847,"created_at":"Fri May 30 14:29:49 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472395214854705152\/KsQRGMrd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472395214854705152\/KsQRGMrd.jpeg","profile_background_tile":true,"profile_link_color":"007AB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472388669437779969\/jxy0PzFK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472388669437779969\/jxy0PzFK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2535210979\/1401461381","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"batipark","name":"Bat\u0131park \u00c7ocukKul\u00fcb\u00fc","id":495779432,"id_str":"495779432","indices":[0,9]},{"screen_name":"batipark","name":"Bat\u0131park \u00c7ocukKul\u00fcb\u00fc","id":495779432,"id_str":"495779432","indices":[11,20]},{"screen_name":"06melihgokcek","name":"\u0130brahim Melih G\u00f6k\u00e7ek","id":236131165,"id_str":"236131165","indices":[58,72]},{"screen_name":"asimbalci","name":"As\u0131m Balc\u0131","id":489728426,"id_str":"489728426","indices":[73,83]},{"screen_name":"receparac06","name":"Recep Ara\u00e7 \u0631\u062c\u0628","id":501024041,"id_str":"501024041","indices":[84,96]}],"symbols":[],"media":[{"id":663716073238339584,"id_str":"663716073238339584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-QIkWoAA_Llo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-QIkWoAA_Llo.jpg","url":"https:\/\/t.co\/DijlUbH9O3","display_url":"pic.twitter.com\/DijlUbH9O3","expanded_url":"http:\/\/twitter.com\/batipark\/status\/663716096869011456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716096869011456,"source_status_id_str":"663716096869011456","source_user_id":495779432,"source_user_id_str":"495779432"}]},"extended_entities":{"media":[{"id":663716073238339584,"id_str":"663716073238339584","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-QIkWoAA_Llo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-QIkWoAA_Llo.jpg","url":"https:\/\/t.co\/DijlUbH9O3","display_url":"pic.twitter.com\/DijlUbH9O3","expanded_url":"http:\/\/twitter.com\/batipark\/status\/663716096869011456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716096869011456,"source_status_id_str":"663716096869011456","source_user_id":495779432,"source_user_id_str":"495779432"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080061658"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419374593,"id_str":"663728001419374593","text":"@Ryoooooo_y0509 \n\u3042\u3084\u304b\u3063\u3066\u3044\u3046\u3093\u3067\u547c\u3073\u3084\u3059\u3044\u547c\u3073\u65b9\u3067\u3044\u3044\u3067\u3059\u3088\u263a\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663330586174459905,"in_reply_to_status_id_str":"663330586174459905","in_reply_to_user_id":3414827534,"in_reply_to_user_id_str":"3414827534","in_reply_to_screen_name":"Ryoooooo_y0509","user":{"id":2868496489,"id_str":"2868496489","name":"\u2661*\u21dd\uff7a\uff94\uff8f\u306e\u3042\u3084\u305f\u3093\u306f\u5e78\u305b","screen_name":"sho_kei_chan44","location":"\u6176\u4e00\u90ce\uff78\uff9d\u306e\u8155\u306e\u4e2d\u306b\u3044\u305f\u3044","url":"http:\/\/twpf.jp\/sho_kei_chan44","description":"\u22c8\u2661*\uff61\uff9fSho Sakurai\u2661*.~~\u5fc3\u306e\u592a\u967d~~\u6afb\u4e95\u4f9d\u5b58\u75c7\u2661\u0337\u00ab\u611b\u53e3\u6afb\u4e95\u00bb\u00ab\u7f8e\u76ee\u6afb\u4e95\u00bb4\u9023\u6240\u6301\u6e08\u3067\u3059\uff01\uff01\u22c8\u2661*\uff61\uff9fKeiichiro Koyama\u2661*.\u3044\u3064\u307e\u3067\u3082\u6176\u4e00\u90ce\u304f\u3093\u3042\u3044\u3057\u3066\u308b\u2661\u0337\u5168\u3066\u304c\u611b\u3057\u3044\u738b\u5b50\u69d8\u2661\u20dc \u00ab\u5fc3\u512a\u5c0f\u5c71\u00bb\u00ab\u7518\u597d\u5c0f\u5c71\u00bb\u00ab\u7f8e\u80cc\u5c0f\u5c71\u00bb\u00ab\u984d\u51fa\u5c0f\u5c71\u00bb4\u9023\u6240\u6301 \u2765\u2765 \u30b3\u30e4\u30c6\u30b4\u3092\u611b\u3067\u308b\u4f1a#5 \u639b\u3051\u6301\u3061\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":1750,"friends_count":577,"listed_count":31,"favourites_count":6061,"statuses_count":28043,"created_at":"Tue Oct 21 03:41:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660677470941679616\/GaZ9i9OP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660677470941679616\/GaZ9i9OP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868496489\/1444988007","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ryoooooo_y0509","name":"\u2661 \u2661 \u3042 \u3084 \u307f \u3086","id":3414827534,"id_str":"3414827534","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061665"} +{"delete":{"status":{"id":442764231717711872,"id_str":"442764231717711872","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080061932"}} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001398390784,"id_str":"663728001398390784","text":"\u982d\u304a\u304b\u3057\u304f\u306a\u3063\u305f\u3067\u3002\u308a\u3061\u3083\u308a\u3061\u3083 https:\/\/t.co\/6PrgYSaIw1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763562278,"id_str":"2763562278","name":"\u307f\u3061\u3087\u304d \u3002","screen_name":"9999mic","location":"Next \u2192 Home VS \u30f4\u30a7\u30eb\u30c7\u30a3","url":null,"description":"Cerezo Osaka \/ Toyoda Youhei \/ \u30bb\u30ec\u5973\u306e\u30c8\u30c3\u30d7","protected":false,"verified":false,"followers_count":708,"friends_count":336,"listed_count":25,"favourites_count":9536,"statuses_count":34856,"created_at":"Sun Aug 24 19:07:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661484998315249669\/EI3Chw3M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661484998315249669\/EI3Chw3M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763562278\/1440084107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727988001771520,"id_str":"663727988001771520","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFqhUkAAeSnf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFqhUkAAeSnf.jpg","url":"https:\/\/t.co\/6PrgYSaIw1","display_url":"pic.twitter.com\/6PrgYSaIw1","expanded_url":"http:\/\/twitter.com\/9999mic\/status\/663728001398390784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":264,"resize":"fit"},"medium":{"w":600,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":713,"h":554,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727988001771520,"id_str":"663727988001771520","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFqhUkAAeSnf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFqhUkAAeSnf.jpg","url":"https:\/\/t.co\/6PrgYSaIw1","display_url":"pic.twitter.com\/6PrgYSaIw1","expanded_url":"http:\/\/twitter.com\/9999mic\/status\/663728001398390784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":264,"resize":"fit"},"medium":{"w":600,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":713,"h":554,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080061660"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001394307072,"id_str":"663728001394307072","text":"Eu t\u00f4 te querendo, s\u00f3 um pouco mais, pra ver se esse amor \u00e9 o que me satisfaz...","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209199567,"id_str":"209199567","name":"Camila Ferreira","screen_name":"Peepiinha","location":"Rio de Janeiro","url":null,"description":null,"protected":false,"verified":false,"followers_count":450,"friends_count":399,"listed_count":1,"favourites_count":23759,"statuses_count":55343,"created_at":"Thu Oct 28 18:18:46 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176343536\/_32bemNZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176343536\/_32bemNZ.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654075970215874560\/v3SUVO6v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654075970215874560\/v3SUVO6v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209199567\/1444785614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080061659"} +{"delete":{"status":{"id":663726059427262465,"id_str":"663726059427262465","user_id":1486111266,"user_id_str":"1486111266"},"timestamp_ms":"1447080062216"}} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001419485184,"id_str":"663728001419485184","text":"https:\/\/t.co\/uFjZ4lQ2Ce","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4067033123,"id_str":"4067033123","name":"Lucy Sutton","screen_name":"SwanstaffLucy","location":"Dartford, England","url":"http:\/\/uk.linkedin.com\/in\/swanstafflucy","description":"I am a Recruitment Consultant at @Swanstaff - I specialise in #Permanent #recruitment and #commercial #recruitment","protected":false,"verified":false,"followers_count":93,"friends_count":303,"listed_count":0,"favourites_count":2,"statuses_count":6,"created_at":"Thu Oct 29 10:08:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659673598106296320\/Jofb128C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659673598106296320\/Jofb128C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4067033123\/1446116443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727999926345728,"id_str":"663727999926345728","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGW8XIAALzhX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGW8XIAALzhX.jpg","url":"https:\/\/t.co\/uFjZ4lQ2Ce","display_url":"pic.twitter.com\/uFjZ4lQ2Ce","expanded_url":"http:\/\/twitter.com\/SwanstaffLucy\/status\/663728001419485184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"large":{"w":1024,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727999926345728,"id_str":"663727999926345728","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGW8XIAALzhX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGW8XIAALzhX.jpg","url":"https:\/\/t.co\/uFjZ4lQ2Ce","display_url":"pic.twitter.com\/uFjZ4lQ2Ce","expanded_url":"http:\/\/twitter.com\/SwanstaffLucy\/status\/663728001419485184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"large":{"w":1024,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061665"} +{"delete":{"status":{"id":381029575586631681,"id_str":"381029575586631681","user_id":1041408284,"user_id_str":"1041408284"},"timestamp_ms":"1447080062316"}} +{"delete":{"status":{"id":663725472258220032,"id_str":"663725472258220032","user_id":3892925294,"user_id_str":"3892925294"},"timestamp_ms":"1447080062484"}} +{"delete":{"status":{"id":663724943763337216,"id_str":"663724943763337216","user_id":334425618,"user_id_str":"334425618"},"timestamp_ms":"1447080062587"}} +{"delete":{"status":{"id":663716114732482560,"id_str":"663716114732482560","user_id":3466341912,"user_id_str":"3466341912"},"timestamp_ms":"1447080062580"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005609627648,"id_str":"663728005609627648","text":"@moutricr2 \u0645\u0645\u062a\u0627\u0632","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3986939541,"in_reply_to_user_id_str":"3986939541","in_reply_to_screen_name":"moutricr2","user":{"id":3929565317,"id_str":"3929565317","name":"\u0639\u0627\u0634\u0642 \u0646\u064a\u0643 \u0627\u0644\u0628\u0646\u0627\u062a.","screen_name":"saweky2","location":null,"url":null,"description":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","protected":false,"verified":false,"followers_count":1027,"friends_count":2148,"listed_count":6,"favourites_count":2443,"statuses_count":3816,"created_at":"Sun Oct 11 17:19:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663634040055050240\/NMVd5kNC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663634040055050240\/NMVd5kNC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3929565317\/1446368121","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"moutricr2","name":"\u0633\u0639\u0648\u062f\u064a\u0629\u0648 \u0627\u0641\u062a\u062e\u0631","id":3986939541,"id_str":"3986939541","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080062664"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605388288,"id_str":"663728005605388288","text":"RT zerohedge \"RT KayBurley: Breaking: Interpol says it will coordinate a global investigation into corruption in athletics\"","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":729547352,"id_str":"729547352","name":"Jonathan","screen_name":"jonnylaw59","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":114,"friends_count":75,"listed_count":17,"favourites_count":37,"statuses_count":42831,"created_at":"Wed Aug 01 00:08:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000425383458\/23adbb7ac832f0d81ae35bb39e7fc19b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000425383458\/23adbb7ac832f0d81ae35bb39e7fc19b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062663"} +{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728001411121152,"id_str":"663728001411121152","text":"#Mercedes #diesel #automotive #facts #goodfellascars https:\/\/t.co\/trqNhQ6NpX","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3384278920,"id_str":"3384278920","name":"goodfellas-cars","screen_name":"goodfellas_cars","location":"Poland","url":null,"description":"Exclusive car rental in Poland. Travel in luxury tailored just for you \u2013 Mercedes E320, BMW 530i and Audi A6.","protected":false,"verified":false,"followers_count":132,"friends_count":150,"listed_count":10,"favourites_count":18,"statuses_count":61,"created_at":"Mon Jul 20 07:36:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"282828","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623037071528230912\/GqKIBG8F_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623037071528230912\/GqKIBG8F_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3384278920\/1440061107","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Mercedes","indices":[0,9]},{"text":"diesel","indices":[10,17]},{"text":"automotive","indices":[18,29]},{"text":"facts","indices":[30,36]},{"text":"goodfellascars","indices":[37,52]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728000605622273,"id_str":"663728000605622273","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGZeUEAE5bZp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGZeUEAE5bZp.png","url":"https:\/\/t.co\/trqNhQ6NpX","display_url":"pic.twitter.com\/trqNhQ6NpX","expanded_url":"http:\/\/twitter.com\/goodfellas_cars\/status\/663728001411121152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":940,"h":788,"resize":"fit"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":285,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728000605622273,"id_str":"663728000605622273","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGZeUEAE5bZp.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGZeUEAE5bZp.png","url":"https:\/\/t.co\/trqNhQ6NpX","display_url":"pic.twitter.com\/trqNhQ6NpX","expanded_url":"http:\/\/twitter.com\/goodfellas_cars\/status\/663728001411121152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":940,"h":788,"resize":"fit"},"medium":{"w":600,"h":502,"resize":"fit"},"small":{"w":340,"h":285,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080061663"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584429056,"id_str":"663728005584429056","text":"RT @ohitshanaa: We found the trampoline \ud83d\ude42\ud83d\ude42\ud83d\ude42","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":972768222,"id_str":"972768222","name":"Rachel Oldfield","screen_name":"Rachel_oldfield","location":"Leeds","url":null,"description":"instagram racheloldfield_","protected":false,"verified":false,"followers_count":809,"friends_count":535,"listed_count":7,"favourites_count":19184,"statuses_count":24442,"created_at":"Mon Nov 26 21:51:12 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474929910654324736\/xK4HWVa6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474929910654324736\/xK4HWVa6.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662609574017544192\/3pTc10pz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662609574017544192\/3pTc10pz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972768222\/1446998919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:33:31 +0000 2015","id":663680815440781312,"id_str":"663680815440781312","text":"We found the trampoline \ud83d\ude42\ud83d\ude42\ud83d\ude42","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2326547991,"id_str":"2326547991","name":"Hanaa","screen_name":"ohitshanaa","location":"leeds ","url":null,"description":"sc - hanaa_xxx","protected":false,"verified":false,"followers_count":494,"friends_count":493,"listed_count":2,"favourites_count":2422,"statuses_count":3123,"created_at":"Wed Feb 05 19:13:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661580627947487232\/qELPfOuR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661580627947487232\/qELPfOuR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2326547991\/1446716115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ohitshanaa","name":"Hanaa","id":2326547991,"id_str":"2326547991","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005580091393,"id_str":"663728005580091393","text":"\uadf8\ub300\ub294 \ub0b4\ub9d8\uc5d0.....\uc544....","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3018593760,"id_str":"3018593760","name":"\ub9e4\ubbf8\ub9f4\ucc0c","screen_name":"ckwldms1234","location":null,"url":null,"description":"(\uacc4\ub2c8\ub791) \uc8fc\uc27d\uc774\uc88b\uc544\uc694:D","protected":false,"verified":false,"followers_count":705,"friends_count":185,"listed_count":6,"favourites_count":12012,"statuses_count":17489,"created_at":"Fri Feb 13 15:51:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629602882447257600\/DFvD2Rya_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629602882447257600\/DFvD2Rya_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080062657"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005618016256,"id_str":"663728005618016256","text":"RT @__Sona1: \"\u0639\u064a\u0651\u062a \u064a\u062f\u064a \u0639\u0644\u0649 \u0648\u062f\u0627\u0639\u0643 \u062a\u0647\u062a\u062f\u064a\".","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":737511086,"id_str":"737511086","name":"\u0631\u0648\u0627\u0646.","screen_name":"raw_51","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1748,"friends_count":186,"listed_count":2,"favourites_count":5120,"statuses_count":22691,"created_at":"Sat Aug 04 22:15:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366225616510976\/pJdLP908_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366225616510976\/pJdLP908_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/737511086\/1444968677","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:43 +0000 2015","id":663726163269976064,"id_str":"663726163269976064","text":"\"\u0639\u064a\u0651\u062a \u064a\u062f\u064a \u0639\u0644\u0649 \u0648\u062f\u0627\u0639\u0643 \u062a\u0647\u062a\u062f\u064a\".","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1667912460,"id_str":"1667912460","name":"\ufe0f","screen_name":"__Sona1","location":null,"url":"http:\/\/ask.fm\/Ees0","description":"10 jun.","protected":false,"verified":false,"followers_count":1618,"friends_count":234,"listed_count":0,"favourites_count":815,"statuses_count":13277,"created_at":"Tue Aug 13 14:24:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662320073177227268\/b6G_gsas_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662320073177227268\/b6G_gsas_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1667912460\/1446736140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__Sona1","name":"\ufe0f","id":1667912460,"id_str":"1667912460","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005580201984,"id_str":"663728005580201984","text":"Me pasan este caso se agradece que se difusi\u00f3n... https:\/\/t.co\/KGU2KhjuVU","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465943816,"id_str":"465943816","name":"luces de bohemia","screen_name":"lucesdebohemiaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":2879,"created_at":"Mon Jan 16 22:12:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KGU2KhjuVU","expanded_url":"http:\/\/fb.me\/JoJL43SK","display_url":"fb.me\/JoJL43SK","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080062657"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584326656,"id_str":"663728005584326656","text":"\u75c5\u9662\u3001\u4eba\u5c11\u306a\u304b\u3063\u305f\u30fc\u3002\u3059\u3050\u85ac\u51e6\u65b9\u3057\u3066\u3082\u3089\u3063\u3066\u3059\u3050\u5e30\u3089\u305b\u3066\u3082\u3089\u3048\u305f\u30e9\u30c3\u30ad\u30fc\u3002","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1175180893,"id_str":"1175180893","name":"\u307f\u3093\u3068","screen_name":"manami1240","location":null,"url":null,"description":"\u751f\u6daf\u864e\u547d\u3002","protected":false,"verified":false,"followers_count":61,"friends_count":29,"listed_count":0,"favourites_count":1573,"statuses_count":2754,"created_at":"Wed Feb 13 12:33:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487572085162536960\/jdi5uCuA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487572085162536960\/jdi5uCuA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1175180893\/1401623835","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605404672,"id_str":"663728005605404672","text":"RT @123456789Memoma: \u0644\u064a\u0633 \u0645\u0646 \u0627\u0644\u0636\u0631\u0648\u0631\u0629 \u0623\u0646 \u062a\u0646\u0638\u0631 \u0628\u0639\u064a\u0646\u064a\u0643 \u0625\u0644\u0649 \u0645\u0646 \u064a\u0631\u0639\u0627\u0643 \u0641\u0627\u0644\u062c\u0646\u064a\u0646 \u0648\u0644\u0648 \u062e\u0631\u062c \u0645\u0646 \u0631\u062d\u0645 \u0623\u0645\u0647 \u0644\u0627\u064a\u0631\u0649 \u0631\u063a\u0645 \u0648\u062c\u0648\u062f \u0627\u0644\u0639\u064a\u0646 \u0644\u0643\u0646\u0647 \u064a\u0634\u0639\u0631 \u0628\u062f\u0641\u0626 \u0627\u0644\u0645\u062d\u0628 \u0644\u0647 \u0648\u0645\u0646\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268495218,"id_str":"3268495218","name":"\u06c6\u0631\u062f\u0650\u0629\u0651 \u0622\u0644\u064f\u0628\u0652\u0646\u0652\u0641\u064e\u0633\u062c\u064d","screen_name":"sara11223445","location":"Iraq\u0630\u064a \u0642\u0627\u0631 ","url":null,"description":"\u200f((\u0634\u064a\u0639\u064a\u0647 \u0648\u0627\u0641\u062a\u062e\u0631))((\u0627\u0644\u062e\u0627\u0635 \u0645\u0647\u0645\u0644))","protected":false,"verified":false,"followers_count":2915,"friends_count":900,"listed_count":1,"favourites_count":228,"statuses_count":10577,"created_at":"Sun Jul 05 00:46:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646270344915906560\/9cnAFBbb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646270344915906560\/9cnAFBbb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268495218\/1442917830","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:51 +0000 2015","id":663726953237622784,"id_str":"663726953237622784","text":"\u0644\u064a\u0633 \u0645\u0646 \u0627\u0644\u0636\u0631\u0648\u0631\u0629 \u0623\u0646 \u062a\u0646\u0638\u0631 \u0628\u0639\u064a\u0646\u064a\u0643 \u0625\u0644\u0649 \u0645\u0646 \u064a\u0631\u0639\u0627\u0643 \u0641\u0627\u0644\u062c\u0646\u064a\u0646 \u0648\u0644\u0648 \u062e\u0631\u062c \u0645\u0646 \u0631\u062d\u0645 \u0623\u0645\u0647 \u0644\u0627\u064a\u0631\u0649 \u0631\u063a\u0645 \u0648\u062c\u0648\u062f \u0627\u0644\u0639\u064a\u0646 \u0644\u0643\u0646\u0647 \u064a\u0634\u0639\u0631 \u0628\u062f\u0641\u0626 \u0627\u0644\u0645\u062d\u0628 \u0644\u0647 \u0648\u0645\u0646 \u064a\u0631\u0639\u0627\u0647 \u0641\u064a\u0634\u0639\u0631 \u0628\u0627\u0644\u0623\u0645\u0627\u0646.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949073967,"id_str":"2949073967","name":"\u2661 \u0628\u0646\u062a \u0627\u0644\u0639\u0631\u0627\u0642 \u2661","screen_name":"123456789Memoma","location":"\u0642\u0644 \u0644\u0646 \u064a\u0635\u064a\u0628\u0646\u0627 \u0625\ufefb \u0645\u0627\u0643\u062a\u0628 \u0627\u0644\u0644\u0647 \u0644\u0646\u0627","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u2665 \u0639\u0631\u0627\u0642\u064a\u0629 \u0648\u0627\u0644\u0641\u062e\u0631 \u0644\u064a\u0647 \u2665\n\u26a1\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0641\u064a \u0627\u0644\u0627\u0639\u062c\u0627\u0628\u0627\u062a\u26a1","protected":false,"verified":false,"followers_count":8045,"friends_count":6267,"listed_count":5,"favourites_count":37340,"statuses_count":18430,"created_at":"Mon Dec 29 12:00:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654358801919950848\/EGd0mhm6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654358801919950848\/EGd0mhm6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949073967\/1444981948","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"123456789Memoma","name":"\u2661 \u0628\u0646\u062a \u0627\u0644\u0639\u0631\u0627\u0642 \u2661","id":2949073967,"id_str":"2949073967","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080062663"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592711169,"id_str":"663728005592711169","text":"RT @yadongarea: #ya \/tarik collarnya\/cambukin pantatnya sampe merah\/liat mukanya yg kesakitan dari kaca\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3936090619,"id_str":"3936090619","name":"Holly","screen_name":"pwrangerforce","location":"#WSQ #PlanetYadong #KaumHorny","url":null,"description":"[BAD GIRL] [19+] [NO RL] I love hard sex, so much \u2764","protected":false,"verified":false,"followers_count":151,"friends_count":194,"listed_count":0,"favourites_count":12,"statuses_count":485,"created_at":"Sun Oct 18 12:53:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663690169988485120\/KYtgLEPU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663690169988485120\/KYtgLEPU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3936090619\/1446592666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:57 +0000 2015","id":663726473073827840,"id_str":"663726473073827840","text":"#ya \/tarik collarnya\/cambukin pantatnya sampe merah\/liat mukanya yg kesakitan dari kaca\/","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":626316672,"id_str":"626316672","name":"ceklike","screen_name":"yadongarea","location":"[O]J - [A]U,Z","url":null,"description":"smut rpbase - mature content - DM langsung kirim #YAMF (menfess) #YA (bebas, promote, etc) - yaoi\/yuri\/straight - RP ONLY","protected":false,"verified":false,"followers_count":14985,"friends_count":8641,"listed_count":19,"favourites_count":13,"statuses_count":124935,"created_at":"Wed Jul 04 07:03:37 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000059965475\/64a4cb32b025d67a195ad7dcd4113acf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000059965475\/64a4cb32b025d67a195ad7dcd4113acf.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657254486658838528\/cpiQ26p8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657254486658838528\/cpiQ26p8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626316672\/1445282325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"ya","indices":[0,3]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ya","indices":[16,19]}],"urls":[],"user_mentions":[{"screen_name":"yadongarea","name":"ceklike","id":626316672,"id_str":"626316672","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584445444,"id_str":"663728005584445444","text":"Estoy muy agraviado por AMLO, no merezco sus descalificaciones: N\u00fa\u00f1ez. Con Ciro G\u00f3mez Leyva https:\/\/t.co\/HMUPtHXi7a","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2365925462,"id_str":"2365925462","name":"Luc\u00eda Noriega","screen_name":"Luzz_Nor","location":"Tabasco, M\u00e9xico","url":null,"description":"QUIEN NO MIRA HACIA ADELANTE, ATR\u00c1S SE QUEDA.","protected":false,"verified":false,"followers_count":94,"friends_count":104,"listed_count":14,"favourites_count":0,"statuses_count":98076,"created_at":"Fri Feb 28 17:39:54 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523228615249379328\/0wI_A5qd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523228615249379328\/0wI_A5qd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365925462\/1413582406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HMUPtHXi7a","expanded_url":"http:\/\/ift.tt\/1kFX61U","display_url":"ift.tt\/1kFX61U","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605289984,"id_str":"663728005605289984","text":"@minidorara718 \u304a\u306f\u3088\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726850066092032,"in_reply_to_status_id_str":"663726850066092032","in_reply_to_user_id":3463911492,"in_reply_to_user_id_str":"3463911492","in_reply_to_screen_name":"minidorara718","user":{"id":3085906584,"id_str":"3085906584","name":"\u3086\u3061\u308a\u3093\u266a \u029a(\u0e51\u2022\u03c9\u2022\u0e51)\u025e\u2190","screen_name":"yu_chi_gf","location":"\u3044\u3070\u3057\u3087\uff1a@\u30e1\u30a4\u30f3\u30a2\u30ab\u30a6\u30f3\u30c8","url":"http:\/\/vcard.ameba.jp\/profile?userId=1530402","description":"\u767d\u732b\u3057\u3066\u307e\u3059\u4ef2\u826f\u304f\u3057\u3066\u306d\u266a(\u706c\u2579\u03c9\u2579\u706c)\u5354\u529b\u7acb\u3066\u308b\u306e\u3067\u3088\u304b\u3063\u305f\u3089\u6765\u3066\u306d\u207d\u207d\u25dd( \u2022\u0bf0\u2022 )\u25dc\u207e\u207e\u30e1\u30a4\u30f3\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3057\u3065\u3089\u3044\u81ea\u767a\u30c4\u30a4\u30fc\u30c8\u306f\u3053\u3061\u3089\u3067\u3057\u3066\u307e\u3059\u266a\u8272\u3005\u7528\u3067\u3059\u301c\u304b\u308f\u3044\u3044\u3082\u306e\u597d\u304d\u266a\u3042\u3093\u307e\u308a\u6642\u9593\u7121\u3044\u65b9\u3067\u3059(*\u00b4\u25a1`\u03c3)\u03c3 GF\u30ac\u30fc\u30eb\u30d5\u30ec\u30f3\u30c9\uff08\u4eee\uff09\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 \u30e2\u30f3\u30b9\u30c8 \u30dd\u30b1\u30e2\u30f3 \u30ab\u30e9\u30aa\u30b1\u2661\u2661\u2661","protected":false,"verified":false,"followers_count":248,"friends_count":133,"listed_count":20,"favourites_count":15280,"statuses_count":10813,"created_at":"Sun Mar 15 16:07:08 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587061285428170752\/8eA3aDvF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587061285428170752\/8eA3aDvF.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662575366268030976\/uuU-a9vD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662575366268030976\/uuU-a9vD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3085906584\/1442982824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minidorara718","name":"((\u2261\u0eb6\u26b2\u035c\u2261\u0eb6))\u3089\u3089\u3061\u3083\u3093\u2661@\u767d\u732b","id":3463911492,"id_str":"3463911492","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062663"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005613821952,"id_str":"663728005613821952","text":"RT @ewnreporter: #SAPSshooting the gunmen fled in a white BMW X-series with tinted windows. BB https:\/\/t.co\/FlQ2l5YIRM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213364197,"id_str":"213364197","name":"Tichaona Chitsinde","screen_name":"TiChitsinde","location":"Zimbabwe","url":null,"description":"Delivers like DHL. Lemon & herb twitter.","protected":false,"verified":false,"followers_count":2341,"friends_count":587,"listed_count":35,"favourites_count":844,"statuses_count":64039,"created_at":"Mon Nov 08 18:44:05 +0000 2010","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662990076788518912\/vnd0-b3c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662990076788518912\/vnd0-b3c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213364197\/1439761520","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:56 +0000 2015","id":663725966020239360,"id_str":"663725966020239360","text":"#SAPSshooting the gunmen fled in a white BMW X-series with tinted windows. BB https:\/\/t.co\/FlQ2l5YIRM","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191795989,"id_str":"191795989","name":"EWN Reporter","screen_name":"ewnreporter","location":"South Africa","url":"http:\/\/www.ewn.co.za","description":"Updates from the Eyewitness News team - always factual, sometimes funny, often insightful.","protected":false,"verified":false,"followers_count":278187,"friends_count":578,"listed_count":1252,"favourites_count":100,"statuses_count":156250,"created_at":"Fri Sep 17 11:23:05 +0000 2010","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F8F8F8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537147472\/EWN_Twitter_BG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537147472\/EWN_Twitter_BG.jpg","profile_background_tile":false,"profile_link_color":"DC0707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498684508997025792\/zzDCk8Zt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498684508997025792\/zzDCk8Zt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191795989\/1437137068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"SAPSshooting","indices":[0,13]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725962379530241,"id_str":"663725962379530241","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","url":"https:\/\/t.co\/FlQ2l5YIRM","display_url":"pic.twitter.com\/FlQ2l5YIRM","expanded_url":"http:\/\/twitter.com\/ewnreporter\/status\/663725966020239360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663725962379530241,"id_str":"663725962379530241","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","url":"https:\/\/t.co\/FlQ2l5YIRM","display_url":"pic.twitter.com\/FlQ2l5YIRM","expanded_url":"http:\/\/twitter.com\/ewnreporter\/status\/663725966020239360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SAPSshooting","indices":[17,30]}],"urls":[],"user_mentions":[{"screen_name":"ewnreporter","name":"EWN Reporter","id":191795989,"id_str":"191795989","indices":[3,15]}],"symbols":[],"media":[{"id":663725962379530241,"id_str":"663725962379530241","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","url":"https:\/\/t.co\/FlQ2l5YIRM","display_url":"pic.twitter.com\/FlQ2l5YIRM","expanded_url":"http:\/\/twitter.com\/ewnreporter\/status\/663725966020239360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725966020239360,"source_status_id_str":"663725966020239360","source_user_id":191795989,"source_user_id_str":"191795989"}]},"extended_entities":{"media":[{"id":663725962379530241,"id_str":"663725962379530241","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHPwfWEAEfyTn.jpg","url":"https:\/\/t.co\/FlQ2l5YIRM","display_url":"pic.twitter.com\/FlQ2l5YIRM","expanded_url":"http:\/\/twitter.com\/ewnreporter\/status\/663725966020239360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"large":{"w":1024,"h":614,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725966020239360,"source_status_id_str":"663725966020239360","source_user_id":191795989,"source_user_id_str":"191795989"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062665"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005618008065,"id_str":"663728005618008065","text":"RT @al_shakranova: \u0645\u0646 \u0642\u0644\u0628\u064a \u0627\u0644\u0649 \u0642\u0644\u0648\u0628\u0643\u0645\ud83d\udc9e https:\/\/t.co\/ZllAT668st","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2869324003,"id_str":"2869324003","name":":","screen_name":"maasttr","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":458,"friends_count":1082,"listed_count":0,"favourites_count":8272,"statuses_count":9043,"created_at":"Tue Oct 21 19:26:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657431272294338561\/4gOHDD36_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657431272294338561\/4gOHDD36_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2869324003\/1445579558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:50:23 +0000 2015","id":663669959827046400,"id_str":"663669959827046400","text":"\u0645\u0646 \u0642\u0644\u0628\u064a \u0627\u0644\u0649 \u0642\u0644\u0648\u0628\u0643\u0645\ud83d\udc9e https:\/\/t.co\/ZllAT668st","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2856314960,"id_str":"2856314960","name":"\u0627\u0644\u0647\u0627\u0634\u0645\u0640\u0640\u0640\u0640\u064a\u0647","screen_name":"al_shakranova","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u0627\u0646\u0638\u0631 \u0644\u0644\u0645\u0641\u0636\u0644\u0647 \u0646\u0638\u0627\u0645\u064a \u0644\u0644\u062a\u0639\u0628\u064a\u0631 \u0648\u0641\u0648\u0627\u0626\u062f\/\u0627\u0644\u0631\u0624\u0649 \u0627\u0644\u062a\u064a \u0648\u0642\u0639\u062a \u0641\u064a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0648\u0644\u064a\u0633 \u0627\u0644\u0645\u0641\u0636\u0644\u0647\/\u0627\u0639\u0628\u0631 \u0639 \u0627\u0644\u062e\u0627\u0635 \u0641\u0642\u0637 \/\u0627\u062c\u0645\u0644 \u0627\u0644\u0634\u0643\u0631 \u062c\u0632\u0627\u0643 \u0627\u0644\u0644\u0647 \u062e\u064a\u0631 \u060c \u0627\u0644\u0644\u0647 \u064a\u0631\u0632\u0642\u0646\u064a \u062f\u0639\u0648\u0627\u062a\u0643\u0645 \u0627\u0644\u063a\u064a\u0628\u064a\u0647 \u0627\u0644\u0635\u0627\u062f\u0642\u0647","protected":false,"verified":false,"followers_count":1203,"friends_count":0,"listed_count":3,"favourites_count":136,"statuses_count":975,"created_at":"Wed Oct 15 04:49:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649776317244813312\/73p3IBW9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649776317244813312\/73p3IBW9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2856314960\/1447055935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663669916109840384,"id_str":"663669916109840384","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663669916109840384,"id_str":"663669916109840384","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}}},{"id":663669916227272704,"id_str":"663669916227272704","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURcTXAAA30Eu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURcTXAAA30Eu.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":812,"resize":"fit"},"large":{"w":750,"h":1016,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"al_shakranova","name":"\u0627\u0644\u0647\u0627\u0634\u0645\u0640\u0640\u0640\u0640\u064a\u0647","id":2856314960,"id_str":"2856314960","indices":[3,17]}],"symbols":[],"media":[{"id":663669916109840384,"id_str":"663669916109840384","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}},"source_status_id":663669959827046400,"source_status_id_str":"663669959827046400","source_user_id":2856314960,"source_user_id_str":"2856314960"}]},"extended_entities":{"media":[{"id":663669916109840384,"id_str":"663669916109840384","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURb3XIAAIydp.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"large":{"w":686,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":507,"resize":"fit"},"medium":{"w":600,"h":895,"resize":"fit"}},"source_status_id":663669959827046400,"source_status_id_str":"663669959827046400","source_user_id":2856314960,"source_user_id_str":"2856314960"},{"id":663669916227272704,"id_str":"663669916227272704","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXURcTXAAA30Eu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXURcTXAAA30Eu.jpg","url":"https:\/\/t.co\/ZllAT668st","display_url":"pic.twitter.com\/ZllAT668st","expanded_url":"http:\/\/twitter.com\/al_shakranova\/status\/663669959827046400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":460,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":812,"resize":"fit"},"large":{"w":750,"h":1016,"resize":"fit"}},"source_status_id":663669959827046400,"source_status_id_str":"663669959827046400","source_user_id":2856314960,"source_user_id_str":"2856314960"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605257216,"id_str":"663728005605257216","text":"RT @06290629Kaho: \u3086\u3046\u3051\u3093\u611b\u3057\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3032626484,"id_str":"3032626484","name":"\u305b\u306a","screen_name":"sena0713713","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":271,"friends_count":238,"listed_count":1,"favourites_count":6295,"statuses_count":949,"created_at":"Fri Feb 20 10:48:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652745314596577281\/1HVjJy1f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652745314596577281\/1HVjJy1f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3032626484\/1439474115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727972440866816,"id_str":"663727972440866816","text":"\u3086\u3046\u3051\u3093\u611b\u3057\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2726528384,"id_str":"2726528384","name":"\u5cb8\u672c \u590f\u7a42","screen_name":"06290629Kaho","location":"\u4fe1\u7528\u3057\u3066\u308b\u4eba\u3002","url":null,"description":"[[\u4e2d\u4e2d33HR\u2192\u5553\u53171B]]","protected":false,"verified":false,"followers_count":208,"friends_count":215,"listed_count":0,"favourites_count":194,"statuses_count":134,"created_at":"Tue Aug 12 15:43:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663334130604617729\/df_UYR8o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663334130604617729\/df_UYR8o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726528384\/1445675612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"06290629Kaho","name":"\u5cb8\u672c \u590f\u7a42","id":2726528384,"id_str":"2726528384","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062663"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584281600,"id_str":"663728005584281600","text":"RT @HappyNaila: Are you Ready? #FiftyShadesDarker\n(via @PerezHilton) https:\/\/t.co\/ODhGHB3xxL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81966762,"id_str":"81966762","name":"Alida V.","screen_name":"alida_v","location":"Trois-Rivi\u00e8res, Qu\u00e9bec","url":"http:\/\/ibelieveinsoulmate.tumblr.com\/","description":"A Backstreet Boys fan | Current obsession: Fifty Shades Of Grey | Favourite TV Show: Arrow |","protected":false,"verified":false,"followers_count":134,"friends_count":127,"listed_count":17,"favourites_count":65250,"statuses_count":32778,"created_at":"Tue Oct 13 00:21:21 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609838205244805120\/CTnWA25f.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609838205244805120\/CTnWA25f.png","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610312212184313856\/bkWUABAe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610312212184313856\/bkWUABAe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81966762\/1394918141","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:24:15 +0000 2015","id":663648284418920448,"id_str":"663648284418920448","text":"Are you Ready? #FiftyShadesDarker\n(via @PerezHilton) https:\/\/t.co\/ODhGHB3xxL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207782649,"id_str":"3207782649","name":"Maike\u2766","screen_name":"HappyNaila","location":"Germany","url":"http:\/\/pinterest.com\/HappyNaila","description":"Owner of all the HappyNailaEdits! \n#BookLover #GabrielsInferno #BeautifulBastard #Tangled #Manwhore #FiftyShades #RemindMe #Afterburn #Collide","protected":false,"verified":false,"followers_count":2317,"friends_count":191,"listed_count":23,"favourites_count":8910,"statuses_count":7894,"created_at":"Sun Apr 26 09:18:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632848803222147072\/m4Tn_z58.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632848803222147072\/m4Tn_z58.jpg","profile_background_tile":false,"profile_link_color":"9E1618","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632179275718897664\/B67rZkDN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632179275718897664\/B67rZkDN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207782649\/1439561343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":28,"entities":{"hashtags":[{"text":"FiftyShadesDarker","indices":[15,33]}],"urls":[],"user_mentions":[{"screen_name":"PerezHilton","name":"Perez Hilton","id":19329393,"id_str":"19329393","indices":[39,51]}],"symbols":[],"media":[{"id":663648283290652672,"id_str":"663648283290652672","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","url":"https:\/\/t.co\/ODhGHB3xxL","display_url":"pic.twitter.com\/ODhGHB3xxL","expanded_url":"http:\/\/twitter.com\/HappyNaila\/status\/663648284418920448\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":704,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":704,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663648283290652672,"id_str":"663648283290652672","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","url":"https:\/\/t.co\/ODhGHB3xxL","display_url":"pic.twitter.com\/ODhGHB3xxL","expanded_url":"http:\/\/twitter.com\/HappyNaila\/status\/663648284418920448\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":704,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":704,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FiftyShadesDarker","indices":[31,49]}],"urls":[],"user_mentions":[{"screen_name":"HappyNaila","name":"Maike\u2766","id":3207782649,"id_str":"3207782649","indices":[3,14]},{"screen_name":"PerezHilton","name":"Perez Hilton","id":19329393,"id_str":"19329393","indices":[55,67]}],"symbols":[],"media":[{"id":663648283290652672,"id_str":"663648283290652672","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","url":"https:\/\/t.co\/ODhGHB3xxL","display_url":"pic.twitter.com\/ODhGHB3xxL","expanded_url":"http:\/\/twitter.com\/HappyNaila\/status\/663648284418920448\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":704,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":704,"resize":"fit"}},"source_status_id":663648284418920448,"source_status_id_str":"663648284418920448","source_user_id":3207782649,"source_user_id_str":"3207782649"}]},"extended_entities":{"media":[{"id":663648283290652672,"id_str":"663648283290652672","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXAmPVWUAAsVZt.jpg","url":"https:\/\/t.co\/ODhGHB3xxL","display_url":"pic.twitter.com\/ODhGHB3xxL","expanded_url":"http:\/\/twitter.com\/HappyNaila\/status\/663648284418920448\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":704,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":580,"h":704,"resize":"fit"}},"source_status_id":663648284418920448,"source_status_id_str":"663648284418920448","source_user_id":3207782649,"source_user_id_str":"3207782649"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005609558017,"id_str":"663728005609558017","text":"The accuracy \ud83d\ude02 https:\/\/t.co\/jX1tyee1hV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2324786775,"id_str":"2324786775","name":"Yohun \u2764","screen_name":"Mioasha_","location":"New Orleans, LA","url":null,"description":"Senior At Yette #LLSD | IG: Mioasha__ |","protected":false,"verified":false,"followers_count":2472,"friends_count":2427,"listed_count":3,"favourites_count":1190,"statuses_count":14250,"created_at":"Tue Feb 04 22:17:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660864644228227072\/VGw8MmIY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660864644228227072\/VGw8MmIY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2324786775\/1446658471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":661612817364205568,"quoted_status_id_str":"661612817364205568","quoted_status":{"created_at":"Tue Nov 03 18:36:02 +0000 2015","id":661612817364205568,"id_str":"661612817364205568","text":"A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368395273,"id_str":"2368395273","name":"SC: xdeasiaa\u2734","screen_name":"xDeAsiaa_","location":"419 | 937","url":"http:\/\/ftr.io\/r\/71O1UX91","description":"Retweet ALL My Favorites","protected":false,"verified":false,"followers_count":29758,"friends_count":19429,"listed_count":46,"favourites_count":94,"statuses_count":12046,"created_at":"Thu Feb 27 06:27:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368395273\/1427639965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jX1tyee1hV","expanded_url":"https:\/\/twitter.com\/xDeAsiaa_\/status\/661612817364205568","display_url":"twitter.com\/xDeAsiaa_\/stat\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062664"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588451329,"id_str":"663728005588451329","text":"RT @hiroshipepepepe: \u30b7\u30fc\u30eb\u306e\u8cbc\u308a\u65b9\u306b\u3082\u500b\u6027\u304c\u3067\u3066\u308bw\n\u63a8\u3057\u677e\u3068\u30af\u30e9\u30b9\u30bf\u3055\u3093\u3063\u3066\u4f3c\u3066\u308b\u306e\u304b\u306d https:\/\/t.co\/us0hlDTRM8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2622365264,"id_str":"2622365264","name":"\u6dbc\u2192@14\u592a\u79e6","screen_name":"szlancavl","location":"\u793e\u755c\u6751","url":"http:\/\/twpf.jp\/szlancavl","description":"20\u2191 \u305f\u307e\u306b\u4eee\u88c5\u3057\u3066\u308b \u5e73\u65e5\u3088\u308a\u306e\u4f11\u65e5\u30ec\u30a4\u30e4\u30fc \u90e8\u6d3b\u3068\u677e\u306b\uff71\uff82\uff72 \u58f0\u8c5a\u5922\u8c5a\u30c9\u30eb\u30f2\u30bf\u304a\u8150\u308c\u3067\u3059 \u65e5\u5e38\u3068\u5909\u9854\u3068\u30b3\u30b9\u30c4\u30a4\u591a\u3081\u306e\u52a0\u5de5\u53a8 \u30ab\u30a4\u30d6\u261e363687 3\/6wedding\u2661","protected":false,"verified":false,"followers_count":480,"friends_count":461,"listed_count":50,"favourites_count":15379,"statuses_count":43721,"created_at":"Sat Jul 12 10:05:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626078866126143488\/-rflklTM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626078866126143488\/-rflklTM.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663301265556811780\/eVpljZFX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663301265556811780\/eVpljZFX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2622365264\/1443616838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 06:29:39 +0000 2015","id":663241954642169856,"id_str":"663241954642169856","text":"\u30b7\u30fc\u30eb\u306e\u8cbc\u308a\u65b9\u306b\u3082\u500b\u6027\u304c\u3067\u3066\u308bw\n\u63a8\u3057\u677e\u3068\u30af\u30e9\u30b9\u30bf\u3055\u3093\u3063\u3066\u4f3c\u3066\u308b\u306e\u304b\u306d https:\/\/t.co\/us0hlDTRM8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2176078693,"id_str":"2176078693","name":"\u3072\u308d\u3057@\u53d7\u9a13\uff08\u30ab\u30e9\u677e","screen_name":"hiroshipepepepe","location":"\u30aa\u30fc\u30c8\u30dc\u30c3\u30c8\u683c\u7d0d\u5eab\u5185","url":"http:\/\/twpro.jp\/hiroshipepepepe","description":"\u30a2\u30cb\u30e1\/\u30b2\u30fc\u30e0\/\u30e9\u30d0\u30c3\u30d1\u30fc\/\u9162\u693f\u90b8\/\u8eca\/\u962a\u795e \u6700\u8fd1\u306e\u30d6\u30fc\u30e0:TF \u30c0\u30af\u30bd \u30b8\u30e7\u30b8\u30e7 \u8de1\u90e8\u69d8 \u304a\u7d75\u63cf\u304d\u57a2\u3082\u4f5c\u3063\u3066\u307f\u305f@hiroshipopopopo","protected":false,"verified":false,"followers_count":1663,"friends_count":1644,"listed_count":32,"favourites_count":11467,"statuses_count":28077,"created_at":"Tue Nov 05 13:25:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472986920318820353\/1jdAIgn3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472986920318820353\/1jdAIgn3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176078693\/1446894985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":227,"favorite_count":250,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663241947486621696,"id_str":"663241947486621696","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663241947486621696,"id_str":"663241947486621696","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}},{"id":663241947490861056,"id_str":"663241947490861056","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYhUwAA20g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYhUwAA20g2.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}},{"id":663241947516022785,"id_str":"663241947516022785","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYnUsAEMmDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYnUsAEMmDt.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiroshipepepepe","name":"\u3072\u308d\u3057@\u53d7\u9a13\uff08\u30ab\u30e9\u677e","id":2176078693,"id_str":"2176078693","indices":[3,19]}],"symbols":[],"media":[{"id":663241947486621696,"id_str":"663241947486621696","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663241954642169856,"source_status_id_str":"663241954642169856","source_user_id":2176078693,"source_user_id_str":"2176078693"}]},"extended_entities":{"media":[{"id":663241947486621696,"id_str":"663241947486621696","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYgUEAA-qJk.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663241954642169856,"source_status_id_str":"663241954642169856","source_user_id":2176078693,"source_user_id_str":"2176078693"},{"id":663241947490861056,"id_str":"663241947490861056","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYhUwAA20g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYhUwAA20g2.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663241954642169856,"source_status_id_str":"663241954642169856","source_user_id":2176078693,"source_user_id_str":"2176078693"},{"id":663241947516022785,"id_str":"663241947516022785","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRPCYnUsAEMmDt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRPCYnUsAEMmDt.jpg","url":"https:\/\/t.co\/us0hlDTRM8","display_url":"pic.twitter.com\/us0hlDTRM8","expanded_url":"http:\/\/twitter.com\/hiroshipepepepe\/status\/663241954642169856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663241954642169856,"source_status_id_str":"663241954642169856","source_user_id":2176078693,"source_user_id_str":"2176078693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592784896,"id_str":"663728005592784896","text":"Do nothing from selfish ambition or conceit, but in humility count others more significant than yourselves. Let... https:\/\/t.co\/ymMbXUidAG","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2192856447,"id_str":"2192856447","name":"Johnny Greg","screen_name":"Johnnyjawdrop","location":"Ohio Cleveland","url":"http:\/\/www.iamsecond.com","description":"I'm only brave when I have to be! But being brave does not mean that you go out looking for trouble \u25c7\u25c6\u25b6","protected":false,"verified":false,"followers_count":32,"friends_count":121,"listed_count":0,"favourites_count":43,"statuses_count":1489,"created_at":"Sat Nov 23 15:39:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549580688421560322\/H8cBC5oh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549580688421560322\/H8cBC5oh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2192856447\/1419865189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ymMbXUidAG","expanded_url":"http:\/\/fb.me\/7rfgFUQ7Y","display_url":"fb.me\/7rfgFUQ7Y","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005601210368,"id_str":"663728005601210368","text":"RT @BetaList: Routes: Share and discover new travel routes https:\/\/t.co\/QpB2uzCW58 https:\/\/t.co\/CQB1xCgCGj","source":"\u003ca href=\"http:\/\/betalist.com\" rel=\"nofollow\"\u003eBetaList\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21276198,"id_str":"21276198","name":"D.C MoJo ","screen_name":"DCMoJo","location":"DC","url":"https:\/\/www.facebook.com\/MoJoEntertainmentGroup?ref=hl","description":"I Take Risk, Set Trends & Make It Happen\r\nIn The Brand Marketing & Music Business Consulting World.","protected":false,"verified":false,"followers_count":1337,"friends_count":1963,"listed_count":89,"favourites_count":2810,"statuses_count":19731,"created_at":"Thu Feb 19 04:36:54 +0000 2009","utc_offset":-18000,"time_zone":"America\/New_York","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B2816","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/671068850\/ba3fcbc15301df932b067bac268fc97f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/671068850\/ba3fcbc15301df932b067bac268fc97f.jpeg","profile_background_tile":false,"profile_link_color":"2B2816","profile_sidebar_border_color":"89B5A2","profile_sidebar_fill_color":"24210E","profile_text_color":"89B5A2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/731238619\/mojoLogo-v10_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/731238619\/mojoLogo-v10_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21276198\/1371167410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:04:21 +0000 2015","id":663658373808828416,"id_str":"663658373808828416","text":"Routes: Share and discover new travel routes https:\/\/t.co\/QpB2uzCW58 https:\/\/t.co\/CQB1xCgCGj","source":"\u003ca href=\"http:\/\/betalist.com\" rel=\"nofollow\"\u003eBetaList\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212711552,"id_str":"212711552","name":"BetaList","screen_name":"BetaList","location":"Ahead of the curve","url":"http:\/\/BetaList.com","description":"Get early access to the latest internet startups.\n\nTweets by @marckohlbrugge (MK) and @RPISH (RP).\nSupport: team@betalist.com","protected":false,"verified":false,"followers_count":31699,"friends_count":0,"listed_count":1424,"favourites_count":1950,"statuses_count":15026,"created_at":"Sat Nov 06 20:59:56 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/263363473\/Untitled-1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/263363473\/Untitled-1.png","profile_background_tile":true,"profile_link_color":"00CCD2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618036813525979136\/jdVhNqga_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618036813525979136\/jdVhNqga_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212711552\/1431692948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpB2uzCW58","expanded_url":"http:\/\/btl.st\/1kiMiXY","display_url":"btl.st\/1kiMiXY","indices":[45,68]}],"user_mentions":[],"symbols":[],"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QpB2uzCW58","expanded_url":"http:\/\/btl.st\/1kiMiXY","display_url":"btl.st\/1kiMiXY","indices":[59,82]}],"user_mentions":[{"screen_name":"BetaList","name":"BetaList","id":212711552,"id_str":"212711552","indices":[3,12]}],"symbols":[],"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663658373808828416,"source_status_id_str":"663658373808828416","source_user_id":212711552,"source_user_id_str":"212711552"}]},"extended_entities":{"media":[{"id":663658372844138496,"id_str":"663658372844138496","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXJxh2WsAAWjrU.jpg","url":"https:\/\/t.co\/CQB1xCgCGj","display_url":"pic.twitter.com\/CQB1xCgCGj","expanded_url":"http:\/\/twitter.com\/BetaList\/status\/663658373808828416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663658373808828416,"source_status_id_str":"663658373808828416","source_user_id":212711552,"source_user_id_str":"212711552"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062662"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592817664,"id_str":"663728005592817664","text":"I just saw a post on my Twitter that says","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35184916,"id_str":"35184916","name":"EminemStays#1","screen_name":"MarshallsLover","location":"United States of America","url":"http:\/\/www.facebook.com","description":"Im NOT the same progress in the making im me NOTHING else matters win some lose some BUT im STILL me","protected":false,"verified":false,"followers_count":724,"friends_count":2009,"listed_count":1,"favourites_count":9793,"statuses_count":70105,"created_at":"Sat Apr 25 09:56:09 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608935735266164738\/3jCiRpSZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608935735266164738\/3jCiRpSZ.jpg","profile_background_tile":true,"profile_link_color":"6A4836","profile_sidebar_border_color":"B68B9E","profile_sidebar_fill_color":"200709","profile_text_color":"C96D43","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427374567649460225\/c0lNUyUi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427374567649460225\/c0lNUyUi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35184916\/1446539226","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592694784,"id_str":"663728005592694784","text":"\u0e1b\u0e27\u0e14\u0e17\u0e49\u0e2d\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197373797,"id_str":"2197373797","name":"\u0e41\u0e1a\u0e49\u0e01\u0e41\u0e21\u0e19","screen_name":"Baek_man","location":"\u0e41\u0e1a\u0e49\u0e01\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e2b\u0e25\u0e48\u0e2d\u0e14\u0e49\u0e27\u0e22","url":null,"description":"\u0e15\u0e2d\u0e1a\u0e40\u0e23\u0e47\u0e27\u0e22\u0e34\u0e48\u0e07\u0e01\u0e27\u0e48\u0e32\u0e41\u0e2a\u0e07 \u0e1b\u0e4a\u0e32\u0e44\u0e1b\u0e1a\u0e27\u0e0a @QZYEOL3X\n #\u0e28\u0e38\u0e01\u0e23\u0e4c13line #100sline","protected":false,"verified":false,"followers_count":427,"friends_count":309,"listed_count":2,"favourites_count":12780,"statuses_count":29643,"created_at":"Sat Nov 16 08:42:24 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647710247256100865\/O6nj_Iti.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647710247256100865\/O6nj_Iti.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652877787276034049\/IjnXHshL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652877787276034049\/IjnXHshL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2197373797\/1442122430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080062660"} +{"delete":{"status":{"id":662207725573509120,"id_str":"662207725573509120","user_id":3737926874,"user_id_str":"3737926874"},"timestamp_ms":"1447080062774"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592711168,"id_str":"663728005592711168","text":"Best Diet- Simple Steps to Start Eating Healthy https:\/\/t.co\/PeKgx7ecVs","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003erttt2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423188052,"id_str":"3423188052","name":"Karen","screen_name":"Karen66901933","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":51,"friends_count":1650,"listed_count":2,"favourites_count":0,"statuses_count":738,"created_at":"Wed Sep 02 07:02:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639236013236207616\/ZfFnCY9U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639236013236207616\/ZfFnCY9U_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PeKgx7ecVs","expanded_url":"http:\/\/bit.ly\/1QdQZio","display_url":"bit.ly\/1QdQZio","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592797186,"id_str":"663728005592797186","text":"RT @ralfbatista: HOMEM DEVERIA SER IGUAL BOLA DE VOLEI: VOC\u00ca GRITA \"\u00c9 MEU\" E TODOS SE AFASTAM.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93509123,"id_str":"93509123","name":"MariaLuiza","screen_name":"mallu_jallas","location":"Brasil","url":null,"description":null,"protected":false,"verified":false,"followers_count":217,"friends_count":180,"listed_count":2,"favourites_count":105,"statuses_count":10832,"created_at":"Sun Nov 29 23:43:09 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/724960913\/c0d22ab9f006ad76e6f258692126848e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/724960913\/c0d22ab9f006ad76e6f258692126848e.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635638559135924224\/Q8E6rCGm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635638559135924224\/Q8E6rCGm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93509123\/1446778190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:40:19 +0000 2015","id":663712726355722240,"id_str":"663712726355722240","text":"HOMEM DEVERIA SER IGUAL BOLA DE VOLEI: VOC\u00ca GRITA \"\u00c9 MEU\" E TODOS SE AFASTAM.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":882891649,"id_str":"882891649","name":"Ralf","screen_name":"ralfbatista","location":"Brasil - S\u00e3o Paulo ","url":"http:\/\/www.facebook.com.br\/wendellralff","description":"Instagram: @ralfbatista Snapchat: ralfldl","protected":false,"verified":false,"followers_count":2681,"friends_count":463,"listed_count":10,"favourites_count":28053,"statuses_count":44695,"created_at":"Mon Oct 15 18:45:04 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F75605","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/881665292\/58a417e6f87b536264e3eb4621c208e4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/881665292\/58a417e6f87b536264e3eb4621c208e4.jpeg","profile_background_tile":true,"profile_link_color":"0420D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660528005865934849\/iHCY7gnx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660528005865934849\/iHCY7gnx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882891649\/1425157996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":50,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ralfbatista","name":"Ralf","id":882891649,"id_str":"882891649","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005596839937,"id_str":"663728005596839937","text":"@_tsubamebot \u3075\u3063\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726896148905985,"in_reply_to_status_id_str":"663726896148905985","in_reply_to_user_id":531917786,"in_reply_to_user_id_str":"531917786","in_reply_to_screen_name":"_tsubamebot","user":{"id":733635404,"id_str":"733635404","name":"\u30b0\u30ec\u30a4","screen_name":"_graybot","location":"\u4ffa\u306e\u5c45\u5834\u6240\uff1f\u3000\u98a8\u306b\u3067\u3082\u805e\u3044\u3066\u304f\u308c\u3002","url":null,"description":"\u30b0\u30ec\u30a4\u3060\u3001\u30b0\u30ec\u30a4\u30fb\u30de\u30a4\u30b1\u30eb\u30fb\u30d3\u30f3\u30bb\u30f3\u30c8\u3002\u3000\uff08\u30d0\u30c8\u30eb\u30d3\u30fc\u30c0\u30de\u30f3\u306b\u767b\u5834\u3059\u308b\u30b0\u30ec\u30a4\u306e\u975e\u516c\u5f0fBOT\u3067\u3059\u3002\uff09\u708e\u546a\u306e\u65b9\u3082\u5b9c\u3057\u304f\u983c\u3080@_enjiyubot","protected":false,"verified":false,"followers_count":78,"friends_count":86,"listed_count":2,"favourites_count":1,"statuses_count":78912,"created_at":"Thu Aug 02 22:08:53 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2462055693\/120803_1439_010001_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2462055693\/120803_1439_010001_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_tsubamebot","name":"\u30c4\u30d0\u30e1","id":531917786,"id_str":"531917786","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617876993,"id_str":"663728005617876993","text":"RT @han_yuju: \ub300\ud559\ucd95\uc81c \uc2a4\ucf00\uc904\uc740\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \n\uc65c\n#CROSSGENE \n\uc548 \uc54c\ub824\uc8fc\ub0d0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304154017,"id_str":"3304154017","name":"\ud589\ubcf5\ud574\ucfe0\uc57c","screen_name":"no1_crossgene","location":null,"url":null,"description":"\uc288\ud37c\uc2a4\ud0c0! \uc6d4\ub4dc\uc2a4\ud0c0! \ub97c \ub6f0\uc5b4\ub118\uc5b4 \uc804\uc124\uc774 \ub420 \ud06c\ub85c\uc2a4\uc9c4!!!\uc744 \uc751\uc6d0\ud558\ub294 \uc9c0\ud321\uc774","protected":false,"verified":false,"followers_count":8,"friends_count":9,"listed_count":0,"favourites_count":35,"statuses_count":216,"created_at":"Sun Aug 02 08:57:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650577318641995777\/sVFDnOag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650577318641995777\/sVFDnOag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304154017\/1444234805","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:23 +0000 2015","id":663725576729968640,"id_str":"663725576729968640","text":"\ub300\ud559\ucd95\uc81c \uc2a4\ucf00\uc904\uc740\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \n\uc65c\n#CROSSGENE \n\uc548 \uc54c\ub824\uc8fc\ub0d0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052618293,"id_str":"4052618293","name":"\uaf43\uae38\ub9cc\uac78\uc5b4","screen_name":"han_yuju","location":null,"url":null,"description":"\uc778\uc2a4\ud0c0\uadf8\ub7a8 lunatic_cassie","protected":false,"verified":false,"followers_count":2,"friends_count":18,"listed_count":0,"favourites_count":100,"statuses_count":345,"created_at":"Thu Oct 29 01:45:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713010007961601\/VHz0eABS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713010007961601\/VHz0eABS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052618293\/1446642074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[10,24]},{"text":"CROSSGENE","indices":[29,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[24,38]},{"text":"CROSSGENE","indices":[43,53]}],"urls":[],"user_mentions":[{"screen_name":"han_yuju","name":"\uaf43\uae38\ub9cc\uac78\uc5b4","id":4052618293,"id_str":"4052618293","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080062666"} +{"delete":{"status":{"id":663724457207336960,"id_str":"663724457207336960","user_id":4008602249,"user_id_str":"4008602249"},"timestamp_ms":"1447080062738"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005580132356,"id_str":"663728005580132356","text":"nak sgt jd comel macam Mira Filzah ,sumpah comel hihi .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":869330330,"id_str":"869330330","name":"Nanaaaaaa \u2661","screen_name":"fanachubby","location":"Malaysia","url":null,"description":"I Love You Mr F","protected":false,"verified":false,"followers_count":308,"friends_count":321,"listed_count":1,"favourites_count":41,"statuses_count":5465,"created_at":"Tue Oct 09 06:20:51 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182715246\/oMGhQ1fX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182715246\/oMGhQ1fX.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657507113585897474\/AVFvjSFK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657507113585897474\/AVFvjSFK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/869330330\/1447064733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080062657"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592707072,"id_str":"663728005592707072","text":"@adilahyusof_ takda punnn. \ud83d\ude12\ud83d\ude12\ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727867633627137,"in_reply_to_status_id_str":"663727867633627137","in_reply_to_user_id":2355769315,"in_reply_to_user_id_str":"2355769315","in_reply_to_screen_name":"adilahyusof_","user":{"id":945926569,"id_str":"945926569","name":"fiwaaa","screen_name":"fieghaaaa","location":"A I Z A T A D H A","url":null,"description":"addicted","protected":false,"verified":false,"followers_count":1152,"friends_count":1020,"listed_count":1,"favourites_count":4889,"statuses_count":31343,"created_at":"Tue Nov 13 14:47:10 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661116583813627904\/Issah8nv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661116583813627904\/Issah8nv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/945926569\/1440769703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"adilahyusof_","name":"dilllss","id":2355769315,"id_str":"2355769315","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592670208,"id_str":"663728005592670208","text":"@okura_nr_cyu \n\n\u304c\u308b\u308b\u3063\u3066\u3001\u5e38\u306b\u5468\u308a\u3092\u5a01\u5687\u3057\u3066\u308b\u611f\u3058(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715160159227904,"in_reply_to_status_id_str":"663715160159227904","in_reply_to_user_id":3303758268,"in_reply_to_user_id_str":"3303758268","in_reply_to_screen_name":"okura_nr_cyu","user":{"id":3310678694,"id_str":"3310678694","name":"RYO.N","screen_name":"11r_n03","location":"\u5927\u304d\u306a\u304f\u307e\u3055\u3093\u306e\u8155\u306e\u4e2d","url":"http:\/\/twpf.jp\/11r_n03","description":"\u6c42\u3081\u308b\u3088\u308a\u3082\u4e0e\u3048\u308d\u3068 \u8aed\u3059\u306e\u3067\u3059\u304b","protected":false,"verified":false,"followers_count":68,"friends_count":68,"listed_count":8,"favourites_count":847,"statuses_count":10294,"created_at":"Sun Aug 09 15:05:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660476645535408128\/uYZeIgr1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660476645535408128\/uYZeIgr1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310678694\/1439420512","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"okura_nr_cyu","name":"\u304a\u30fc\u304f\u3089","id":3303758268,"id_str":"3303758268","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605408768,"id_str":"663728005605408768","text":"Now playing on KICKING RADIO : Bauhaus - Lagartija Nick https:\/\/t.co\/dMPsYkfS2H","source":"\u003ca href=\"http:\/\/wavestreaming.com\" rel=\"nofollow\"\u003eWavepanel\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":901749312,"id_str":"901749312","name":"KICKING RADIO","screen_name":"kickingradio","location":null,"url":"http:\/\/www.kickingradio.com","description":"Au micro, les fils spirituels de Hunter S. Thompson et Lester Bangs, adeptes d\u2019un gonzo journalisme pouss\u00e9 \u00e0 son paroxysme!","protected":false,"verified":false,"followers_count":381,"friends_count":1937,"listed_count":8,"favourites_count":120,"statuses_count":18582,"created_at":"Wed Oct 24 12:44:40 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2758497765\/46df7f06e19c44e18642662f0ea71893_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2758497765\/46df7f06e19c44e18642662f0ea71893_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901749312\/1371114295","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dMPsYkfS2H","expanded_url":"http:\/\/www.kickingrecords.com\/radio\/playerKR.html","display_url":"kickingrecords.com\/radio\/playerKR\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080062663"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005580128257,"id_str":"663728005580128257","text":"RT @DaisiesK: \u0e21\u0e32\u0e2a\u0e21\u0e35\u0e41\u0e1e\u0e25\u0e19\u0e17\u0e33\u0e2a\u0e49\u0e21 \u0e2a\u0e15\u0e23\u0e2d\u0e40\u0e1a\u0e2d\u0e23\u0e35\u0e48 \u0e21\u0e30\u0e19\u0e32\u0e27 \u0e41\u0e15\u0e48\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e21\u0e32\u0e22\u0e31\u0e07\u0e21\u0e35\u0e08\u0e38\u0e14\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e43\u0e08\u0e01\u0e47\u0e08\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e01\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b *\u0e01\u0e33\u0e40\u0e07\u0e34\u0e19\u0e43\u0e2b\u0e49\u0e41\u0e19\u0e48\u0e19\u0e46\u0e2a\u0e32\u0e27\u0e19\u0e49\u0e2d\u0e22\u0e1c\u0e25\u0e44\u0e21\u0e49\u0e08\u0e30\u0e21\u0e32\u0e02\u0e42\u0e21\u0e22\u0e40\u0e07\u0e34\u0e19\u0e43\u0e19\u0e01\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":614080271,"id_str":"614080271","name":"\u0e2d\u0e49\u0e27\u0e19\u0e44\u0e07","screen_name":"CNMinnie","location":null,"url":null,"description":"#dek59 \u0e2a\u0e32\u0e22\u0e41\u0e14\u0e01","protected":false,"verified":false,"followers_count":276,"friends_count":170,"listed_count":2,"favourites_count":6969,"statuses_count":79163,"created_at":"Thu Jun 21 06:37:53 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446630283576475648\/Pll86Dcd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446630283576475648\/Pll86Dcd.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633303383768633344\/ElcvacOk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633303383768633344\/ElcvacOk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614080271\/1437221240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:43 +0000 2015","id":663725659366166528,"id_str":"663725659366166528","text":"\u0e21\u0e32\u0e2a\u0e21\u0e35\u0e41\u0e1e\u0e25\u0e19\u0e17\u0e33\u0e2a\u0e49\u0e21 \u0e2a\u0e15\u0e23\u0e2d\u0e40\u0e1a\u0e2d\u0e23\u0e35\u0e48 \u0e21\u0e30\u0e19\u0e32\u0e27 \u0e41\u0e15\u0e48\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48\u0e1b\u0e25\u0e48\u0e2d\u0e22\u0e21\u0e32\u0e22\u0e31\u0e07\u0e21\u0e35\u0e08\u0e38\u0e14\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e1e\u0e2d\u0e43\u0e08\u0e01\u0e47\u0e08\u0e30\u0e1b\u0e23\u0e31\u0e1a\u0e41\u0e01\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b *\u0e01\u0e33\u0e40\u0e07\u0e34\u0e19\u0e43\u0e2b\u0e49\u0e41\u0e19\u0e48\u0e19\u0e46\u0e2a\u0e32\u0e27\u0e19\u0e49\u0e2d\u0e22\u0e1c\u0e25\u0e44\u0e21\u0e49\u0e08\u0e30\u0e21\u0e32\u0e02\u0e42\u0e21\u0e22\u0e40\u0e07\u0e34\u0e19\u0e43\u0e19\u0e01\u0e23\u0e30\u0e40\u0e1b\u0e4b\u0e32\u0e25\u0e30\u0e08\u0e49\u0e32* \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724970233610240,"in_reply_to_status_id_str":"663724970233610240","in_reply_to_user_id":370924203,"in_reply_to_user_id_str":"370924203","in_reply_to_screen_name":"DaisiesK","user":{"id":370924203,"id_str":"370924203","name":"DaisiesK","screen_name":"DaisiesK","location":"\u0e2a\u0e48\u0e07\u0e02\u0e2d\u0e07 SAT-SUN","url":null,"description":"d5doll+chanis \u0e23\u0e2d\u0e02\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e44\u0e17\u0e22 \u0e1b\u0e23\u0e30\u0e21\u0e32\u0e13\u0e01\u0e25\u0e32\u0e07\u0e1e.\u0e22 \/ bazaar \u0e23\u0e49\u0e32\u0e19\u0e40\u0e1e\u0e34\u0e48\u0e07\u0e2a\u0e48\u0e07\u0e02\u0e2d\u0e07\u0e43\u0e2b\u0e49 \u0e23\u0e2d\u0e16\u0e36\u0e07\u0e44\u0e17\u0e22\u0e1b\u0e25\u0e32\u0e22\u0e1e.\u0e22 \/ second box \u0e21\u0e32\u0e2d\u0e32\u0e17\u0e34\u0e15\u0e22\u0e4c\u0e2b\u0e19\u0e49\u0e32","protected":false,"verified":false,"followers_count":17881,"friends_count":352,"listed_count":70,"favourites_count":884,"statuses_count":83670,"created_at":"Fri Sep 09 21:45:51 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662704769505472512\/c674L-ss_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662704769505472512\/c674L-ss_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DaisiesK","name":"DaisiesK","id":370924203,"id_str":"370924203","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080062657"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617815552,"id_str":"663728005617815552","text":"RT @tvtelehit: \"@H4RRYBIEBS: @tvtelehit den boletos hasta las 2, que a esa hora llego del colegio\"\/\/ Estaremos dando boletos de 11am a 9pm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1431361748,"id_str":"1431361748","name":"mary jacob jacob","screen_name":"mariajacobo9","location":" inglaterra","url":null,"description":"Everything should be made as simple as possible,but not simpler -Albert Einstein","protected":false,"verified":false,"followers_count":805,"friends_count":2053,"listed_count":3,"favourites_count":23307,"statuses_count":22647,"created_at":"Wed May 15 19:43:54 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632634037815775232\/b6x8WLK9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632634037815775232\/b6x8WLK9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1431361748\/1412280780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:23:32 +0000 2015","id":663693403314524160,"id_str":"663693403314524160","text":"\"@H4RRYBIEBS: @tvtelehit den boletos hasta las 2, que a esa hora llego del colegio\"\/\/ Estaremos dando boletos de 11am a 9pm","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76038813,"id_str":"76038813","name":"Telehit","screen_name":"tvtelehit","location":"M\u00e9xico ","url":"http:\/\/telehit.com","description":"Canal de m\u00fasica y entretenimiento, hecho en M\u00e9xico; que se transmite a m\u00e1s de 40 pa\u00edses.","protected":false,"verified":true,"followers_count":2497273,"friends_count":1074,"listed_count":2451,"favourites_count":659,"statuses_count":64690,"created_at":"Mon Sep 21 14:23:12 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652164537928433664\/r6f4mkHc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652164537928433664\/r6f4mkHc.jpg","profile_background_tile":false,"profile_link_color":"0E21B0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"38AFFF","profile_text_color":"0B0785","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647172771819098113\/brdLvqd4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647172771819098113\/brdLvqd4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76038813\/1446928337","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":159,"favorite_count":589,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"H4RRYBIEBS","name":"\u1160daniela\/18","id":716993466,"id_str":"716993466","indices":[1,12]},{"screen_name":"tvtelehit","name":"Telehit","id":76038813,"id_str":"76038813","indices":[14,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tvtelehit","name":"Telehit","id":76038813,"id_str":"76038813","indices":[3,13]},{"screen_name":"H4RRYBIEBS","name":"\u1160daniela\/18","id":716993466,"id_str":"716993466","indices":[16,27]},{"screen_name":"tvtelehit","name":"Telehit","id":76038813,"id_str":"76038813","indices":[29,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584302080,"id_str":"663728005584302080","text":"sorry , he's mine babe @aabel_","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2920167433,"id_str":"2920167433","name":"reez","screen_name":"syrml_","location":"Malaysia","url":"http:\/\/www.instagram.com\/syrml_","description":"trust no man , fears no bitch","protected":false,"verified":false,"followers_count":329,"friends_count":223,"listed_count":0,"favourites_count":2551,"statuses_count":5490,"created_at":"Sat Dec 06 02:53:50 +0000 2014","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578473490694606848\/c-qyz1jY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578473490694606848\/c-qyz1jY.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663295118389047296\/3XcCpfhl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663295118389047296\/3XcCpfhl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2920167433\/1446913873","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aabel_","name":"\u00ae","id":1492676335,"id_str":"1492676335","indices":[23,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584261121,"id_str":"663728005584261121","text":"RT @4thImpactMusic: Download now! \ud83d\ude1a\u2764\ufe0f https:\/\/t.co\/tycJmOqoC9 #4thImpactItunes https:\/\/t.co\/47fGunVGmi","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1577853150,"id_str":"1577853150","name":"Queen of Disaster","screen_name":"LanaDelRayPH","location":"yayo","url":"http:\/\/LanaDelRey.com","description":"U should feel lucky to have my $79 lipstick kisses all over your face. Ur probably used to those cheap tricks kissin u w their .99 cent lips -LANA","protected":false,"verified":false,"followers_count":898,"friends_count":479,"listed_count":3,"favourites_count":48,"statuses_count":9119,"created_at":"Mon Jul 08 15:00:15 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622422918157303808\/brVlQIYW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622422918157303808\/brVlQIYW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1577853150\/1436061033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:20:31 +0000 2015","id":663118860606947328,"id_str":"663118860606947328","text":"Download now! \ud83d\ude1a\u2764\ufe0f https:\/\/t.co\/tycJmOqoC9 #4thImpactItunes https:\/\/t.co\/47fGunVGmi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3481701083,"id_str":"3481701083","name":"4TH IMPACT","screen_name":"4thImpactMusic","location":null,"url":null,"description":"OFFICIAL TWITTER ACCOUNT | INSTAGRAM @4thImpactMusic | FACEBOOK 4th Impact | X FACTOR 2015 | #4thImpact #TeamCherylGroups","protected":false,"verified":true,"followers_count":52608,"friends_count":795,"listed_count":100,"favourites_count":4373,"statuses_count":1172,"created_at":"Sat Aug 29 15:45:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655853517886889984\/tOuSMjlh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655853517886889984\/tOuSMjlh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3481701083\/1445299338","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":299,"favorite_count":616,"entities":{"hashtags":[{"text":"4thImpactItunes","indices":[42,58]}],"urls":[{"url":"https:\/\/t.co\/tycJmOqoC9","expanded_url":"http:\/\/apple.co\/1GLo4Q3","display_url":"apple.co\/1GLo4Q3","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663118851123605504,"id_str":"663118851123605504","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","url":"https:\/\/t.co\/47fGunVGmi","display_url":"pic.twitter.com\/47fGunVGmi","expanded_url":"http:\/\/twitter.com\/4thImpactMusic\/status\/663118860606947328\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":639,"h":650,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663118851123605504,"id_str":"663118851123605504","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","url":"https:\/\/t.co\/47fGunVGmi","display_url":"pic.twitter.com\/47fGunVGmi","expanded_url":"http:\/\/twitter.com\/4thImpactMusic\/status\/663118860606947328\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":639,"h":650,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4thImpactItunes","indices":[62,78]}],"urls":[{"url":"https:\/\/t.co\/tycJmOqoC9","expanded_url":"http:\/\/apple.co\/1GLo4Q3","display_url":"apple.co\/1GLo4Q3","indices":[38,61]}],"user_mentions":[{"screen_name":"4thImpactMusic","name":"4TH IMPACT","id":3481701083,"id_str":"3481701083","indices":[3,18]}],"symbols":[],"media":[{"id":663118851123605504,"id_str":"663118851123605504","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","url":"https:\/\/t.co\/47fGunVGmi","display_url":"pic.twitter.com\/47fGunVGmi","expanded_url":"http:\/\/twitter.com\/4thImpactMusic\/status\/663118860606947328\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":639,"h":650,"resize":"fit"}},"source_status_id":663118860606947328,"source_status_id_str":"663118860606947328","source_user_id":3481701083,"source_user_id_str":"3481701083"}]},"extended_entities":{"media":[{"id":663118851123605504,"id_str":"663118851123605504","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPfFO0WcAAArbt.jpg","url":"https:\/\/t.co\/47fGunVGmi","display_url":"pic.twitter.com\/47fGunVGmi","expanded_url":"http:\/\/twitter.com\/4thImpactMusic\/status\/663118860606947328\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":345,"resize":"fit"},"large":{"w":639,"h":650,"resize":"fit"}},"source_status_id":663118860606947328,"source_status_id_str":"663118860606947328","source_user_id":3481701083,"source_user_id_str":"3481701083"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588639744,"id_str":"663728005588639744","text":"@Huevito_Alarcon Es que si no hay conversaci\u00f3n qu\u00e9 m\u00e1s da que mire el m\u00f3vil. Cuando hablo lo dejo y ya est\u00e1.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727828572225536,"in_reply_to_status_id_str":"663727828572225536","in_reply_to_user_id":105964708,"in_reply_to_user_id_str":"105964708","in_reply_to_screen_name":"Huevito_Alarcon","user":{"id":231168475,"id_str":"231168475","name":"Thirst-ci","screen_name":"FriKitty","location":"Un pueblo redundante, M\u00e1laga","url":"https:\/\/www.patreon.com\/frikitty?ty=h","description":"20. Bicis. Dibujera pelicolores. Atea cu\u00f1\u00e1, femi(ce)cista caducada, abstemia obstinada, ortonazi. La revoluci\u00f3n ser\u00e1, o no, depende","protected":false,"verified":false,"followers_count":1291,"friends_count":329,"listed_count":56,"favourites_count":1906,"statuses_count":332597,"created_at":"Mon Dec 27 19:59:08 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663846495\/1ontfxj533dcupr58mii.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663846495\/1ontfxj533dcupr58mii.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658028560007974912\/Y4JgqJpf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658028560007974912\/Y4JgqJpf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231168475\/1445474139","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Huevito_Alarcon","name":"Huevito","id":105964708,"id_str":"105964708","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005613621248,"id_str":"663728005613621248","text":"RT @OGOCboys_: Who wants new Jack and Jack music? https:\/\/t.co\/doAsbMWtYp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3100785176,"id_str":"3100785176","name":"timawima$","screen_name":"timaaaraee","location":null,"url":"http:\/\/Instagram.com\/fatimarae","description":"I'm chilling.","protected":false,"verified":false,"followers_count":285,"friends_count":209,"listed_count":0,"favourites_count":13647,"statuses_count":9139,"created_at":"Sat Mar 21 03:34:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662823320878886912\/bP134ths_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662823320878886912\/bP134ths_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3100785176\/1446864369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 02:18:57 +0000 2015","id":663178867163717632,"id_str":"663178867163717632","text":"Who wants new Jack and Jack music? https:\/\/t.co\/doAsbMWtYp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3146019903,"id_str":"3146019903","name":"Danielle","screen_name":"OGOCboys_","location":"NY ","url":null,"description":"Stay Humble| OGOC| 3\/4","protected":false,"verified":false,"followers_count":1134,"friends_count":439,"listed_count":4,"favourites_count":5858,"statuses_count":4829,"created_at":"Wed Apr 08 01:19:16 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/591603322399760384\/1B4CNLen.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/591603322399760384\/1B4CNLen.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654786873173282816\/8DObms7a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654786873173282816\/8DObms7a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146019903\/1446932433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2251,"favorite_count":5639,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663178863787294721,"id_str":"663178863787294721","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663178863787294721,"id_str":"663178863787294721","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663178864106053632,"id_str":"663178864106053632","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqcmWoAA9II3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqcmWoAA9II3.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OGOCboys_","name":"Danielle","id":3146019903,"id_str":"3146019903","indices":[3,13]}],"symbols":[],"media":[{"id":663178863787294721,"id_str":"663178863787294721","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663178867163717632,"source_status_id_str":"663178867163717632","source_user_id":3146019903,"source_user_id_str":"3146019903"}]},"extended_entities":{"media":[{"id":663178863787294721,"id_str":"663178863787294721","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqbaWwAEFGfF.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663178867163717632,"source_status_id_str":"663178867163717632","source_user_id":3146019903,"source_user_id_str":"3146019903"},{"id":663178864106053632,"id_str":"663178864106053632","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQVqcmWoAA9II3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQVqcmWoAA9II3.jpg","url":"https:\/\/t.co\/doAsbMWtYp","display_url":"pic.twitter.com\/doAsbMWtYp","expanded_url":"http:\/\/twitter.com\/OGOCboys_\/status\/663178867163717632\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663178867163717632,"source_status_id_str":"663178867163717632","source_user_id":3146019903,"source_user_id_str":"3146019903"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062665"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617987584,"id_str":"663728005617987584","text":"Join Sue Norton @PepsiCo & Sheryl @WuDunn, author of @APathAppears at #SDGforum to talk women & girls. Tickets https:\/\/t.co\/leaWRkPwJz","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21453086,"id_str":"21453086","name":"SocialEarth","screen_name":"SocialEarth","location":"Global","url":"http:\/\/www.socialearth.org","description":"Promoting social entrepreneurs, businesses and ideas. #SocEnt #SocInn Part of the @3BLMedia Group.","protected":false,"verified":false,"followers_count":28024,"friends_count":7582,"listed_count":1730,"favourites_count":26,"statuses_count":13733,"created_at":"Sat Feb 21 01:15:18 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/5930178\/twitterlogo.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/5930178\/twitterlogo.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"DBDBDB","profile_sidebar_fill_color":"F0F0F0","profile_text_color":"6E6868","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2626627012\/ez0dwz36m18dtn5qkncg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2626627012\/ez0dwz36m18dtn5qkncg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21453086\/1434738664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SDGforum","indices":[74,83]}],"urls":[{"url":"https:\/\/t.co\/leaWRkPwJz","expanded_url":"http:\/\/bit.ly\/SDGforumTickets","display_url":"bit.ly\/SDGforumTickets","indices":[119,142]}],"user_mentions":[{"screen_name":"PepsiCo","name":"PepsiCo","id":21346619,"id_str":"21346619","indices":[16,24]},{"screen_name":"WuDunn","name":"Sheryl WuDunn","id":252835084,"id_str":"252835084","indices":[38,45]},{"screen_name":"APathAppears","name":"A Path Appears","id":2167508618,"id_str":"2167508618","indices":[57,70]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588516865,"id_str":"663728005588516865","text":"@null 1845095519","source":"\u003ca href=\"http:\/\/yoshika23218.com\/twitcle\/\" rel=\"nofollow\"\u003etwitcle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":3281396718,"id_str":"3281396718","name":"Megayuniar","screen_name":"Megayuniar6","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":37,"listed_count":1,"favourites_count":2,"statuses_count":43251,"created_at":"Thu Jul 16 09:31:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"FFF04D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659746252691652608\/LmbIIEQe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659746252691652608\/LmbIIEQe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281396718\/1446187289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005613797376,"id_str":"663728005613797376","text":"RT @SingaporeAir: Spring has arrived, take advantage of our Spring Fever and Spring Fever Early Bird fares: http:\/\/t.co\/Xip11K0XSc http:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":809676570,"id_str":"809676570","name":"T-I-N-O","screen_name":"VavaMobutu","location":"Japan","url":null,"description":"Art and global views, @BBCTheVoiceUK , @NatGeo ... #MeCuracao","protected":false,"verified":false,"followers_count":449,"friends_count":643,"listed_count":11,"favourites_count":220,"statuses_count":7958,"created_at":"Fri Sep 07 22:02:34 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638768797193793536\/QOzJ-Y58.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638768797193793536\/QOzJ-Y58.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727114596691968\/uirUu62c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727114596691968\/uirUu62c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/809676570\/1444025617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 15 15:00:48 +0000 2015","id":654673282382217218,"id_str":"654673282382217218","text":"Spring has arrived, take advantage of our Spring Fever and Spring Fever Early Bird fares: http:\/\/t.co\/Xip11K0XSc http:\/\/t.co\/B7jj5mCP0D","source":"\u003ca href=\"http:\/\/expion.com\" rel=\"nofollow\"\u003eExpionDev\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253340062,"id_str":"253340062","name":"Singapore Airlines","screen_name":"SingaporeAir","location":null,"url":"http:\/\/www.singaporeair.com","description":"Welcome aboard Singapore Airlines on Twitter! Tell us your travel stories and tips with #FlySQ #SingaporeAir. For feedback, write to http:\/\/goo.gl\/ZDDIKS","protected":false,"verified":true,"followers_count":330955,"friends_count":14,"listed_count":1572,"favourites_count":10,"statuses_count":21357,"created_at":"Thu Feb 17 01:38:16 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582394267382906881\/3wspad2x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582394267382906881\/3wspad2x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253340062\/1443759005","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/Xip11K0XSc","expanded_url":"http:\/\/goo.gl\/FW94qt","display_url":"goo.gl\/FW94qt","indices":[90,112]}],"user_mentions":[],"symbols":[],"media":[{"id":654673281782382592,"id_str":"654673281782382592","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","url":"http:\/\/t.co\/B7jj5mCP0D","display_url":"pic.twitter.com\/B7jj5mCP0D","expanded_url":"http:\/\/twitter.com\/SingaporeAir\/status\/654673282382217218\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":507,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":654673281782382592,"id_str":"654673281782382592","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","url":"http:\/\/t.co\/B7jj5mCP0D","display_url":"pic.twitter.com\/B7jj5mCP0D","expanded_url":"http:\/\/twitter.com\/SingaporeAir\/status\/654673282382217218\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":507,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"place_ids":["dd9c0d7d7e07eb49"]},"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/Xip11K0XSc","expanded_url":"http:\/\/goo.gl\/FW94qt","display_url":"goo.gl\/FW94qt","indices":[108,130]}],"user_mentions":[{"screen_name":"SingaporeAir","name":"Singapore Airlines","id":253340062,"id_str":"253340062","indices":[3,16]}],"symbols":[],"media":[{"id":654673281782382592,"id_str":"654673281782382592","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","url":"http:\/\/t.co\/B7jj5mCP0D","display_url":"pic.twitter.com\/B7jj5mCP0D","expanded_url":"http:\/\/twitter.com\/SingaporeAir\/status\/654673282382217218\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":507,"resize":"fit"}},"source_status_id":654673282382217218,"source_status_id_str":"654673282382217218","source_user_id":253340062,"source_user_id_str":"253340062"}]},"extended_entities":{"media":[{"id":654673281782382592,"id_str":"654673281782382592","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXd4ZSUAAAZWB2.png","url":"http:\/\/t.co\/B7jj5mCP0D","display_url":"pic.twitter.com\/B7jj5mCP0D","expanded_url":"http:\/\/twitter.com\/SingaporeAir\/status\/654673282382217218\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":297,"resize":"fit"},"small":{"w":340,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1023,"h":507,"resize":"fit"}},"source_status_id":654673282382217218,"source_status_id_str":"654673282382217218","source_user_id":253340062,"source_user_id_str":"253340062"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062665"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005609472000,"id_str":"663728005609472000","text":"@sironasuu \u5c11\u306a\u76ee\u3060\u3063\u305f\u3051\u3069\u5c45\u307e\u3057\u305f\u3088\u306d\u30fc\u3002\u3067\u3082\u7981\u6b62\u306a\u306e\u304c\u4f1d\u308f\u3063\u3066\u3044\u306a\u3044\u6c17\u3082\u3057\u307e\u3057\u305f\u3002\u7269\u8ca9\u3082\u30ad\u30f3\u30d6\u30ec\u58f2\u3063\u3066\u305f\u69d8\u306a\u6c17\u304c\u3001\u3001\u3001","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724683653611520,"in_reply_to_status_id_str":"663724683653611520","in_reply_to_user_id":3008072456,"in_reply_to_user_id_str":"3008072456","in_reply_to_screen_name":"sironasuu","user":{"id":610805225,"id_str":"610805225","name":"\u3051\u3093\u3055\u3093\u306f\u305f\u3055\u3093","screen_name":"kenhata_thee","location":"\u5c90\u961c \u897f\u6fc3","url":null,"description":"\u4f0a\u96c6\u9662\u306e\u30e9\u30b8\u30aa\u304c\u5fc3\u306e\u652f\u3048","protected":false,"verified":false,"followers_count":204,"friends_count":255,"listed_count":1,"favourites_count":72,"statuses_count":7199,"created_at":"Sun Jun 17 13:19:58 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2595981957\/twipple1347282713776_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2595981957\/twipple1347282713776_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610805225\/1445671502","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sironasuu","name":"\u30b5\u30ab\u30caFly@\u3086\u3046\u304d\u3072\u3044\u308d","id":3008072456,"id_str":"3008072456","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062664"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005613654017,"id_str":"663728005613654017","text":"@suuuzuuu @MissanU10 \n\u4e00\u8a00\u8fd4\u4e8b\u591a\u304f\u306a\u3044\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727864404013056,"in_reply_to_status_id_str":"663727864404013056","in_reply_to_user_id":276230178,"in_reply_to_user_id_str":"276230178","in_reply_to_screen_name":"suuuzuuu","user":{"id":537075475,"id_str":"537075475","name":"aikawa","screen_name":"1Miwa","location":null,"url":null,"description":"\u307f\u306a\u3055\u3093\u3001\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":81,"friends_count":132,"listed_count":0,"favourites_count":1168,"statuses_count":2185,"created_at":"Mon Mar 26 09:36:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611095274744745984\/w-NQiE3z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611095274744745984\/w-NQiE3z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/537075475\/1396956963","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suuuzuuu","name":"suzu","id":276230178,"id_str":"276230178","indices":[0,9]},{"screen_name":"MissanU10","name":"\u3074\u307e\u3093","id":1278939967,"id_str":"1278939967","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062665"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005601239041,"id_str":"663728005601239041","text":"@gabyrealista quem disse que \u00e9 tu Kkkkkkkkkkkkkkkkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727850592280576,"in_reply_to_status_id_str":"663727850592280576","in_reply_to_user_id":3460010116,"in_reply_to_user_id_str":"3460010116","in_reply_to_screen_name":"gabyrealista","user":{"id":3891075197,"id_str":"3891075197","name":"Medeiros mete vai","screen_name":"Lucas999032466","location":"Santa Cruz, Rio de Janeiro","url":null,"description":"Se N\u00e3o fosse o futebol eu estaria morto ou na cadeia...","protected":false,"verified":false,"followers_count":63,"friends_count":39,"listed_count":0,"favourites_count":750,"statuses_count":315,"created_at":"Wed Oct 07 15:19:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663576300087549953\/lXakLsRb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663576300087549953\/lXakLsRb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3891075197\/1446652316","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gabyrealista","name":"S\/LIMITES","id":3460010116,"id_str":"3460010116","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080062662"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592784897,"id_str":"663728005592784897","text":"RT @sextvx: Retweet #sextvx RT @sextvx: Retweet #sextvx RT @frenchstrapon: #threesome #pegging #strapon #gif https:\/\/t.co\/UwxDatf5KN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3049083502,"id_str":"3049083502","name":"Cyril Vallerault","screen_name":"vallerault271","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":613,"friends_count":1296,"listed_count":26,"favourites_count":33515,"statuses_count":5663,"created_at":"Sat Feb 21 08:12:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589717128460263424\/TzBQKWT2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589717128460263424\/TzBQKWT2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3049083502\/1444462849","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:18:02 +0000 2015","id":663676916910694400,"id_str":"663676916910694400","text":"Retweet #sextvx RT @sextvx: Retweet #sextvx RT @frenchstrapon: #threesome #pegging #strapon #gif https:\/\/t.co\/UwxDatf5KN","source":"\u003ca href=\"http:\/\/www.sextvx.com\" rel=\"nofollow\"\u003esextvx\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31370747,"id_str":"31370747","name":"Sextvx","screen_name":"sextvx","location":null,"url":"http:\/\/www.sextvx.com","description":"Your daily source of porn","protected":false,"verified":false,"followers_count":6137,"friends_count":377,"listed_count":61,"favourites_count":6972,"statuses_count":96720,"created_at":"Wed Apr 15 08:48:11 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492939070717169667\/FCNtPAtW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492939070717169667\/FCNtPAtW.jpeg","profile_background_tile":false,"profile_link_color":"575B61","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ECF0F3","profile_text_color":"737373","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483456188105777155\/UISMjqnu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483456188105777155\/UISMjqnu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31370747\/1404100248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":8,"entities":{"hashtags":[{"text":"sextvx","indices":[8,15]},{"text":"sextvx","indices":[36,43]},{"text":"threesome","indices":[63,73]},{"text":"pegging","indices":[74,82]},{"text":"strapon","indices":[83,91]},{"text":"gif","indices":[92,96]}],"urls":[],"user_mentions":[{"screen_name":"sextvx","name":"Sextvx","id":31370747,"id_str":"31370747","indices":[19,26]},{"screen_name":"frenchstrapon","name":"Strapon lover","id":479465143,"id_str":"479465143","indices":[47,61]}],"symbols":[],"media":[{"id":660005929866231808,"id_str":"660005929866231808","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","url":"https:\/\/t.co\/UwxDatf5KN","display_url":"pic.twitter.com\/UwxDatf5KN","expanded_url":"http:\/\/twitter.com\/frenchstrapon\/status\/660005972316934144\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":256,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":660005972316934144,"source_status_id_str":"660005972316934144","source_user_id":479465143,"source_user_id_str":"479465143"}]},"extended_entities":{"media":[{"id":660005929866231808,"id_str":"660005929866231808","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","url":"https:\/\/t.co\/UwxDatf5KN","display_url":"pic.twitter.com\/UwxDatf5KN","expanded_url":"http:\/\/twitter.com\/frenchstrapon\/status\/660005972316934144\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":400,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":256,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":660005972316934144,"source_status_id_str":"660005972316934144","source_user_id":479465143,"source_user_id_str":"479465143","video_info":{"aspect_ratio":[25,16],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSjP5XdUAAAlVN1.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sextvx","indices":[20,27]},{"text":"sextvx","indices":[48,55]},{"text":"threesome","indices":[75,85]},{"text":"pegging","indices":[86,94]},{"text":"strapon","indices":[95,103]},{"text":"gif","indices":[104,108]}],"urls":[],"user_mentions":[{"screen_name":"sextvx","name":"Sextvx","id":31370747,"id_str":"31370747","indices":[3,10]},{"screen_name":"sextvx","name":"Sextvx","id":31370747,"id_str":"31370747","indices":[31,38]},{"screen_name":"frenchstrapon","name":"Strapon lover","id":479465143,"id_str":"479465143","indices":[59,73]}],"symbols":[],"media":[{"id":660005929866231808,"id_str":"660005929866231808","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","url":"https:\/\/t.co\/UwxDatf5KN","display_url":"pic.twitter.com\/UwxDatf5KN","expanded_url":"http:\/\/twitter.com\/frenchstrapon\/status\/660005972316934144\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":256,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":660005972316934144,"source_status_id_str":"660005972316934144","source_user_id":479465143,"source_user_id_str":"479465143"}]},"extended_entities":{"media":[{"id":660005929866231808,"id_str":"660005929866231808","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSjP5XdUAAAlVN1.png","url":"https:\/\/t.co\/UwxDatf5KN","display_url":"pic.twitter.com\/UwxDatf5KN","expanded_url":"http:\/\/twitter.com\/frenchstrapon\/status\/660005972316934144\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":400,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":256,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}},"source_status_id":660005972316934144,"source_status_id_str":"660005972316934144","source_user_id":479465143,"source_user_id_str":"479465143","video_info":{"aspect_ratio":[25,16],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSjP5XdUAAAlVN1.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005613666304,"id_str":"663728005613666304","text":"@khong0011 \u3053\u3061\u3089\u3053\u305d\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(^\u03c9^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727778659856385,"in_reply_to_status_id_str":"663727778659856385","in_reply_to_user_id":4143038712,"in_reply_to_user_id_str":"4143038712","in_reply_to_screen_name":"khong0011","user":{"id":1014840990,"id_str":"1014840990","name":"\u512a\u6a39","screen_name":"ponpon5678145","location":null,"url":null,"description":"\u5927\u5b664\u5e74 \u57fc\u7389 \u6771\u4eac \u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff01\uff01","protected":false,"verified":false,"followers_count":185,"friends_count":364,"listed_count":0,"favourites_count":18,"statuses_count":5169,"created_at":"Sun Dec 16 09:42:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000762051026\/f1464cd9e4b00b2af2f378dfc0066bd6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000762051026\/f1464cd9e4b00b2af2f378dfc0066bd6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"khong0011","name":"\u3053\u30fc\u305f@\u03c8(\uff40\u2207\u00b4)\u03c8","id":4143038712,"id_str":"4143038712","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062665"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588516864,"id_str":"663728005588516864","text":"@_mmxtxi \u5ba3\u8a00\u901a\u308a\u3067\u3054\u3056\u3044\u307e\u3059\uff08\u7167\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663705627009519617,"in_reply_to_status_id_str":"663705627009519617","in_reply_to_user_id":2149095739,"in_reply_to_user_id_str":"2149095739","in_reply_to_screen_name":"_mmxtxi","user":{"id":209026123,"id_str":"209026123","name":"\u307f\u305a\u304d\u3085\u3093","screen_name":"mizukyunika","location":" Kis-My-Ft2*\u4e8c\u968e\u5802\u9ad8\u55e3\u2764\ufe0e\u30b7\u30c9\u2764\ufe0eABC","url":null,"description":"\u2763 m i w a \u261e t - e a s t \u261e a u 1 4 m \u2763","protected":false,"verified":false,"followers_count":316,"friends_count":275,"listed_count":0,"favourites_count":1228,"statuses_count":12509,"created_at":"Thu Oct 28 11:27:59 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654256341691691008\/Hp2SQhJU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654256341691691008\/Hp2SQhJU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209026123\/1440660446","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_mmxtxi","name":"momoi\u2661","id":2149095739,"id_str":"2149095739","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005596991488,"id_str":"663728005596991488","text":"@Dory @JoAnnHL his name is Jesse watch him https:\/\/t.co\/p8LFKxncYx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663553207801614336,"in_reply_to_status_id_str":"663553207801614336","in_reply_to_user_id":1187647735,"in_reply_to_user_id_str":"1187647735","in_reply_to_screen_name":"Dory","user":{"id":1244721745,"id_str":"1244721745","name":"landy Gillett","screen_name":"Landy__g","location":null,"url":null,"description":"YouTube is life","protected":false,"verified":false,"followers_count":24,"friends_count":38,"listed_count":0,"favourites_count":701,"statuses_count":505,"created_at":"Tue Mar 05 22:09:19 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577703835432407040\/E0UB_0gS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577703835432407040\/E0UB_0gS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1244721745\/1428084494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p8LFKxncYx","expanded_url":"http:\/\/YouTube.com\/prankvsprank","display_url":"YouTube.com\/prankvsprank","indices":[43,66]}],"user_mentions":[{"screen_name":"Dory","name":"Dory","id":1187647735,"id_str":"1187647735","indices":[0,5]},{"screen_name":"JoAnnHL","name":"JoAnn","id":230485688,"id_str":"230485688","indices":[6,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617848320,"id_str":"663728005617848320","text":"RT @haziflatif: Tak dapat bantu dengan wang ,tolonglah sebarkanlah abang ni yang sedang berusaha kumpul duit bagi anaknya 5thn lumpuh http:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2828077273,"id_str":"2828077273","name":"ig; eykayns_","screen_name":"eykayns_","location":"Bota, Perak","url":null,"description":"takot gemuk tapi kuad makan. tak secantik macam dalam gambar, tak sempurna macam orang lain. try to change better than before :). #SatuEnam. #MAABR.","protected":false,"verified":false,"followers_count":1192,"friends_count":1802,"listed_count":0,"favourites_count":1244,"statuses_count":14177,"created_at":"Tue Sep 23 13:14:43 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/514408686488281091\/2Ty4wYsM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/514408686488281091\/2Ty4wYsM.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647988382275006468\/IiGAC8k4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647988382275006468\/IiGAC8k4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2828077273\/1434288559","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon May 25 12:05:47 +0000 2015","id":602807772363689986,"id_str":"602807772363689986","text":"Tak dapat bantu dengan wang ,tolonglah sebarkanlah abang ni yang sedang berusaha kumpul duit bagi anaknya 5thn lumpuh http:\/\/t.co\/tqSAF1I7E8","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1313255946,"id_str":"1313255946","name":"azif","screen_name":"haziflatif","location":"Malaysia darul najib","url":null,"description":"aku suka buat kau berasap dalam diam","protected":false,"verified":false,"followers_count":47717,"friends_count":35710,"listed_count":16,"favourites_count":48461,"statuses_count":488,"created_at":"Fri Mar 29 10:04:49 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454233408198021120\/BO3Iaz0f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454233408198021120\/BO3Iaz0f.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640120801912422400\/9Vp7xSFL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640120801912422400\/9Vp7xSFL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1313255946\/1441451662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21738,"favorite_count":3875,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":602807707410673665,"id_str":"602807707410673665","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":602807707410673665,"id_str":"602807707410673665","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}}},{"id":602807762767085568,"id_str":"602807762767085568","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2ad2eUgAA4NZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2ad2eUgAA4NZB.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":432,"resize":"fit"}}},{"id":602807770392305666,"id_str":"602807770392305666","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aeS4UIAIOEb8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aeS4UIAIOEb8.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haziflatif","name":"azif","id":1313255946,"id_str":"1313255946","indices":[3,14]}],"symbols":[],"media":[{"id":602807707410673665,"id_str":"602807707410673665","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}},"source_status_id":602807772363689986,"source_status_id_str":"602807772363689986","source_user_id":1313255946,"source_user_id_str":"1313255946"}]},"extended_entities":{"media":[{"id":602807707410673665,"id_str":"602807707410673665","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aaoQUsAEZWzC.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}},"source_status_id":602807772363689986,"source_status_id_str":"602807772363689986","source_user_id":1313255946,"source_user_id_str":"1313255946"},{"id":602807762767085568,"id_str":"602807762767085568","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2ad2eUgAA4NZB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2ad2eUgAA4NZB.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":432,"resize":"fit"}},"source_status_id":602807772363689986,"source_status_id_str":"602807772363689986","source_user_id":1313255946,"source_user_id_str":"1313255946"},{"id":602807770392305666,"id_str":"602807770392305666","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CF2aeS4UIAIOEb8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF2aeS4UIAIOEb8.jpg","url":"http:\/\/t.co\/tqSAF1I7E8","display_url":"pic.twitter.com\/tqSAF1I7E8","expanded_url":"http:\/\/twitter.com\/haziflatif\/status\/602807772363689986\/photo\/1","type":"photo","sizes":{"large":{"w":432,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"medium":{"w":432,"h":720,"resize":"fit"}},"source_status_id":602807772363689986,"source_status_id_str":"602807772363689986","source_user_id":1313255946,"source_user_id_str":"1313255946"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005596889088,"id_str":"663728005596889088","text":"RT @Alisa_GER: #\u30a2\u30e9\u30ac\u30df\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u304crt\u3057\u3066\u304f\u308c\u3066\u307e\u3060\u898b\u306c\u6e05\u6383\u54e1\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u3084\u30d5\u30a7\u30f3\u30ea\u30eb\u95a2\u4fc2\u8005\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\n\u672c\u65e5\u4ed8\u3067\u7740\u4efb\u3057\u307e\u3057\u305f\u3002\u0410\u043b\u0438\u0441\u0430 \u0418\u043b\u044c\u0438\u043d\u0438\u0447\u0438\u043d\u0430 \u0410\u043c\u0438\u0435\u043b\u043b\u0430\u3067\u3059\u3002\n\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u53cd\u5fdc\u3092\u9802\u3051\u308c\u3070\u304a\u8fce\u3048\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3926330666,"id_str":"3926330666","name":"\u91c7\u83ef \u30ed\u30fc\u30c8","screen_name":"Rot_GE","location":"\u6975\u6771\u652f\u90e8","url":null,"description":"\u307b\u3044\u307b\u30fc\u3044GE\u53ca\u3073GER(\u5bfe\u5fdc\u4e88\u5b9a)\u306e\u30a8\u30c7\u30a3\u30c3\u30c8\u306a\u308a\u304d\u308a\u3060\u3088\u3002\u4ed5\u69d8\u66f8\u306f\u6e96\u5099\u4e2d\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u304a\u65ad\u308a\uff01\u4eca\u306f\u305d\u3093\u3060\u3051\uff01\u3088\u308d\u3057\u304f\u3045\uff01","protected":false,"verified":false,"followers_count":13,"friends_count":13,"listed_count":0,"favourites_count":0,"statuses_count":52,"created_at":"Sat Oct 17 15:50:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663316244326518784\/o9UGX-zY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663316244326518784\/o9UGX-zY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3926330666\/1445097578","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:38 +0000 2015","id":663727402590167040,"id_str":"663727402590167040","text":"#\u30a2\u30e9\u30ac\u30df\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u304crt\u3057\u3066\u304f\u308c\u3066\u307e\u3060\u898b\u306c\u6e05\u6383\u54e1\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u3084\u30d5\u30a7\u30f3\u30ea\u30eb\u95a2\u4fc2\u8005\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b\n\u672c\u65e5\u4ed8\u3067\u7740\u4efb\u3057\u307e\u3057\u305f\u3002\u0410\u043b\u0438\u0441\u0430 \u0418\u043b\u044c\u0438\u043d\u0438\u0447\u0438\u043d\u0430 \u0410\u043c\u0438\u0435\u043b\u043b\u0430\u3067\u3059\u3002\n\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u53cd\u5fdc\u3092\u9802\u3051\u308c\u3070\u304a\u8fce\u3048\u306b\u5411\u304b\u308f\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4173630734,"id_str":"4173630734","name":"\u0410\u043b\u0438\u0441\u0430","screen_name":"Alisa_GER","location":"\u6975\u6771\u652f\u90e8","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\u3001\u300c\u30a2\u30ea\u30b5\uff65\u30a4\u30ea\u30fc\u30cb\u30c1\u30ca\uff65\u30a2\u30df\u30a8\u30fc\u30e9\u300d\u3068\u7533\u3057\u307e\u3059 \u672c\u65e5\u4e00\u4e8c\u25cb\u25cb\u4ed8\u3051\u3067\u3001\u30ed\u30b7\u30a2\u652f\u90e8\u304b\u3089\u3001\u3053\u3061\u3089\u306e\u652f\u90e8\u306b\u914d\u5c5e\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002START:2015\/11\/9","protected":false,"verified":false,"followers_count":4,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":14,"created_at":"Mon Nov 09 00:29:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663517951811653632\/MACq5jKR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663517951811653632\/MACq5jKR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4173630734\/1447030536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a2\u30e9\u30ac\u30df\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u304crt\u3057\u3066\u304f\u308c\u3066\u307e\u3060\u898b\u306c\u6e05\u6383\u54e1\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u3084\u30d5\u30a7\u30f3\u30ea\u30eb\u95a2\u4fc2\u8005\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b","indices":[0,63]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a2\u30e9\u30ac\u30df\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u304crt\u3057\u3066\u304f\u308c\u3066\u307e\u3060\u898b\u306c\u6e05\u6383\u54e1\u3084\u30b4\u30c3\u30c9\u30a4\u30fc\u30bf\u30fc\u3084\u30d5\u30a7\u30f3\u30ea\u30eb\u95a2\u4fc2\u8005\u304c\u305d\u308c\u3092\u898b\u3066\u304d\u3063\u3068\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u308b","indices":[15,78]}],"urls":[],"user_mentions":[{"screen_name":"Alisa_GER","name":"\u0410\u043b\u0438\u0441\u0430","id":4173630734,"id_str":"4173630734","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005592821760,"id_str":"663728005592821760","text":"@PTCLCares Wth is this? No speed, no connection, no signals. Internet sucks \ud83d\ude11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1148051953,"in_reply_to_user_id_str":"1148051953","in_reply_to_screen_name":"PTCLCares","user":{"id":171368026,"id_str":"171368026","name":"Hafsa","screen_name":"NiHaoItsHafsa_","location":"Karachi","url":"http:\/\/instagram.com\/i_hafsaa","description":"The less you reveal, the more people can wonder! I adore ImranKhan \u2764 Barca is life. #TeamIK","protected":false,"verified":false,"followers_count":3943,"friends_count":339,"listed_count":14,"favourites_count":37555,"statuses_count":43249,"created_at":"Tue Jul 27 05:18:03 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661907744543416320\/0sSi38Df_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661907744543416320\/0sSi38Df_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171368026\/1446645962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PTCLCares","name":"PTCL Cares","id":1148051953,"id_str":"1148051953","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062660"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588475904,"id_str":"663728005588475904","text":"\u771f\u59eb\u300c\u306b\u3053\u3061\u3083\u3093\u304b\u3089\u5909\u306a\u4eba\u5f62\u3092\u8cb0\u3063\u305f\u308f\u300d https:\/\/t.co\/O49inHqMwU #2ch","source":"\u003ca href=\"http:\/\/s2ch.nonip.info\/\" rel=\"nofollow\"\u003esureken_news_app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453744858,"id_str":"2453744858","name":"2ch\u904e\u53bb","screen_name":"sureken_log","location":null,"url":"http:\/\/s2ch.nonip.info","description":"2ch\u901f\u5831 @sureken_sokuhou |\n2ch\u904e\u53bb\u30ed\u30b0 @sureken_log |\n2chVIP @sureken_vip","protected":false,"verified":false,"followers_count":2504,"friends_count":2784,"listed_count":30,"favourites_count":27,"statuses_count":787093,"created_at":"Sat Apr 19 22:12:31 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486015162038501379\/l23U6xvR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486015162038501379\/l23U6xvR_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2ch","indices":[45,49]}],"urls":[{"url":"https:\/\/t.co\/O49inHqMwU","expanded_url":"http:\/\/s2ch.nonip.info\/c2ch\/nozomi.2ch.sc\/test\/read.cgi\/lovelive\/1446204749\/l50","display_url":"s2ch.nonip.info\/c2ch\/nozomi.2c\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588512768,"id_str":"663728005588512768","text":"RT @soraeliminate: .....\uc624\ub298 \uc18c\ub77c\ub137\uc5d0 \uc5c5\ub85c\ub4dc\ub41c \ub450\uac1c\uc758 \uae00 \n\n\uc800\uac74 \ubc94\uc8c4\uac00 \uc544\ub2c8\uace0 \ubb50\ub77c\uace0 \ud558\ub294\uac70\uc8e0? \n\n \uc81c\uc815\uc2e0 \ub9de\ub294\uac70\uc57c? \n\ubbf8\ucce4\ub2e4\ub294 \ub9d0 \ubc16\uc5d4 \uc548\ub098\uc624\ub124\uc694.\n\ud610\uc624\uc2a4\ub7ec\uc6cc\uc694. https:\/\/t.co\/G6652kvQ0O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":308993526,"id_str":"308993526","name":"\uae00\ub8e8","screen_name":"heyforest","location":"\uadf8\ub0e5 \uc5ec\ub2f4\uc778\ub370","url":null,"description":"\uc5f4\uc2ec\ud788 \uc778\uc7a5\ud5e4\ub354 \ub358\uc838\uc8fc\uc2e0 \ud53c\uace8 @pigolsangz_up\uacfc \ubc00\ud06c\ud2f0\ub2d8 @21404991 \ub2d8\uacfc \ubc84\ube14\ub2d8 @Ahh8_8 \u2661","protected":false,"verified":false,"followers_count":98,"friends_count":86,"listed_count":0,"favourites_count":1954,"statuses_count":16788,"created_at":"Wed Jun 01 10:37:19 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663297016273866752\/2ZPb8NL7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663297016273866752\/2ZPb8NL7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/308993526\/1441190619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:07:17 +0000 2015","id":663689311074684928,"id_str":"663689311074684928","text":".....\uc624\ub298 \uc18c\ub77c\ub137\uc5d0 \uc5c5\ub85c\ub4dc\ub41c \ub450\uac1c\uc758 \uae00 \n\n\uc800\uac74 \ubc94\uc8c4\uac00 \uc544\ub2c8\uace0 \ubb50\ub77c\uace0 \ud558\ub294\uac70\uc8e0? \n\n \uc81c\uc815\uc2e0 \ub9de\ub294\uac70\uc57c? \n\ubbf8\ucce4\ub2e4\ub294 \ub9d0 \ubc16\uc5d4 \uc548\ub098\uc624\ub124\uc694.\n\ud610\uc624\uc2a4\ub7ec\uc6cc\uc694. https:\/\/t.co\/G6652kvQ0O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4168404494,"id_str":"4168404494","name":"\uc18c\ub77c\ub137 \ubc15\uba78 \ud504\ub85c\uc81d\ud2b8.","screen_name":"soraeliminate","location":null,"url":null,"description":"\uc18c\ub77c\ub137 \ubc15\uba78\uc744 \uc704\ud55c \uc9d1\ud68c\ub97c \uc900\ube44\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ud55c\ubd84 \ud55c\ubd84\uc758 \ucc38\uc5ec\uac00 \ud070 \ud798\uc774 \ub429\ub2c8\ub2e4. \uc9d1\ud68c \ub0a0\uc9dc\ub294 11\uc6d4 15\uc77c 1\ucc28 \ud68c\uc758\ud6c4 \uc815\ud574\uc9d1\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":1179,"friends_count":7,"listed_count":3,"favourites_count":0,"statuses_count":86,"created_at":"Sun Nov 08 13:08:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342985963171840\/PF9QT8is_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342985963171840\/PF9QT8is_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4168404494\/1446988265","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":296,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663689296050688000,"id_str":"663689296050688000","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":588,"resize":"fit"},"large":{"w":592,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689296050688000,"id_str":"663689296050688000","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":588,"resize":"fit"},"large":{"w":592,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":1024,"resize":"fit"}}},{"id":663689308671311872,"id_str":"663689308671311872","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl6OyUAAAo8Zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl6OyUAAAo8Zb.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soraeliminate","name":"\uc18c\ub77c\ub137 \ubc15\uba78 \ud504\ub85c\uc81d\ud2b8.","id":4168404494,"id_str":"4168404494","indices":[3,17]}],"symbols":[],"media":[{"id":663689296050688000,"id_str":"663689296050688000","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":588,"resize":"fit"},"large":{"w":592,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":1024,"resize":"fit"}},"source_status_id":663689311074684928,"source_status_id_str":"663689311074684928","source_user_id":4168404494,"source_user_id_str":"4168404494"}]},"extended_entities":{"media":[{"id":663689296050688000,"id_str":"663689296050688000","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl5fxUkAALJkH.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":588,"resize":"fit"},"large":{"w":592,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":1024,"resize":"fit"}},"source_status_id":663689311074684928,"source_status_id_str":"663689311074684928","source_user_id":4168404494,"source_user_id_str":"4168404494"},{"id":663689308671311872,"id_str":"663689308671311872","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXl6OyUAAAo8Zb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXl6OyUAAAo8Zb.jpg","url":"https:\/\/t.co\/G6652kvQ0O","display_url":"pic.twitter.com\/G6652kvQ0O","expanded_url":"http:\/\/twitter.com\/soraeliminate\/status\/663689311074684928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663689311074684928,"source_status_id_str":"663689311074684928","source_user_id":4168404494,"source_user_id_str":"4168404494"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080062659"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617971200,"id_str":"663728005617971200","text":"RT @jeaantwitteiro: Voc\u00ea n\u00e3o chora pela m\u00fasica, e sim pelo que ela te lembra. \ud83d\udcad\ud83d\udcab","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111741417,"id_str":"111741417","name":"Thayn\u00e1 Gomes \u264c","screen_name":"eelthay02","location":"snap chat : thaygomes1996","url":null,"description":"insta : thaygomes01","protected":false,"verified":false,"followers_count":681,"friends_count":1570,"listed_count":12,"favourites_count":901,"statuses_count":4872,"created_at":"Sat Feb 06 00:41:29 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164909565\/6vx84Nfr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164909565\/6vx84Nfr.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653240134863843328\/JeuQA1hi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653240134863843328\/JeuQA1hi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111741417\/1444579554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:19 +0000 2015","id":663725809950171136,"id_str":"663725809950171136","text":"Voc\u00ea n\u00e3o chora pela m\u00fasica, e sim pelo que ela te lembra. \ud83d\udcad\ud83d\udcab","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1578854690,"id_str":"1578854690","name":"Snap: jeaanmorais1","screen_name":"jeaantwitteiro","location":"Macei\u00f3, Alagoas","url":"https:\/\/instagram.com\/jeaanmorais1\/","description":"Snap: jeaanmorais1","protected":false,"verified":false,"followers_count":51579,"friends_count":51091,"listed_count":17,"favourites_count":3664,"statuses_count":31469,"created_at":"Mon Jul 08 23:07:10 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644607197243121665\/gBsWdeQa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644607197243121665\/gBsWdeQa.jpg","profile_background_tile":true,"profile_link_color":"050105","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663485586007826432\/FYEkC1P5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663485586007826432\/FYEkC1P5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1578854690\/1446915255","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jeaantwitteiro","name":"Snap: jeaanmorais1","id":1578854690,"id_str":"1578854690","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584302081,"id_str":"663728005584302081","text":"\u3010\u885d\u6483\u753b\u50cf\u3011\u3053\u306e\u307e\u308a\u3084\u304e\u3001\u3053\u307e\u308a\u3053\u306e\u3059\u3063\u3074\u3093\u59ffwwwwwwww | \u3055\u3055\u304d\u30a2\u30f3\u30c6\u30ca https:\/\/t.co\/EO2QK4Ge4H","source":"\u003ca href=\"http:\/\/ssk-ant.com\" rel=\"nofollow\"\u003essk-ant\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3921453860,"id_str":"3921453860","name":"\u3055\u3055\u304d\u30a2\u30f3\u30c6\u30ca","screen_name":"sskantennatweet","location":null,"url":"http:\/\/ssk-ant.com","description":"2ch\u307e\u3068\u3081\u30b5\u30a4\u30c8\u306e\u30a2\u30f3\u30c6\u30ca\u3002\u76f8\u4e92100%\u3002","protected":false,"verified":false,"followers_count":729,"friends_count":787,"listed_count":0,"favourites_count":0,"statuses_count":24843,"created_at":"Sat Oct 17 05:15:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657811672984195072\/RyeDwwb__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657811672984195072\/RyeDwwb__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3921453860\/1445669235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EO2QK4Ge4H","expanded_url":"http:\/\/goo.gl\/8JB0RS","display_url":"goo.gl\/8JB0RS","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005584257026,"id_str":"663728005584257026","text":"@kancolle_nico \u305d\u306d\u307f\u3055\u3093\u306e\u78ba\u8a8d\u3082\u3068\u3089\u305a\u3001TS\u3092\u6d88\u3057\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093\u3002\u30da\u30ca\u30eb\u30c6\u30a3\u30fc\u304c\u767a\u751f\u3059\u308b\u306e\u3067\u3042\u308c\u3070\u53d7\u3051\u5165\u308c\u305f\u3044\u3068\u304a\u3082\u3044\u307e\u3059\u306e\u3067\u3001\u4eca\u5f8c\u3053\u306e\u3088\u3046\u306a\u4e8b\u304c\u7121\u3044\u69d8\u3001\u914d\u4fe1\u3092\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2412494899,"in_reply_to_user_id_str":"2412494899","in_reply_to_screen_name":"kancolle_nico","user":{"id":3167055235,"id_str":"3167055235","name":"\u307f\u3084\u3055\u3093","screen_name":"G4r8577","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":2,"listed_count":0,"favourites_count":3,"statuses_count":2,"created_at":"Wed Apr 22 08:09:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592032405826834432\/7ns_uvKS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592032405826834432\/7ns_uvKS_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kancolle_nico","name":"\u8266\u968a\u3053\u308c\u304f\u3057\u3087\u3093\u30b3\u30df\u30e5\u30cb\u30c6\u30a3\uff5e\u8266\u30b3\u30df\u30e5\uff5e","id":2412494899,"id_str":"2412494899","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062658"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005596864512,"id_str":"663728005596864512","text":"RT @__OKHA: \uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2475184218,"id_str":"2475184218","name":"\ucc9c\ucc9c\u7a7f\u5598","screen_name":"1002gak","location":null,"url":null,"description":"1\ucc28 \uadf8\ub9bc, \uae00 \/ \ucee4\ubba4 \ub701\ub2c8\ub2e4 \/ \ub9cc\ud654 \/ \uc131\uc778 \/ \ud5e4\ub354:\ub85c\uc9c1\ub2d8\u2665","protected":false,"verified":false,"followers_count":182,"friends_count":105,"listed_count":1,"favourites_count":799,"statuses_count":618,"created_at":"Sat May 03 08:53:30 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663706418373988352\/bnlffztA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663706418373988352\/bnlffztA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2475184218\/1443634291","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:02:51 +0000 2015","id":662857723415912448,"id_str":"662857723415912448","text":"\uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328479976,"id_str":"2328479976","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","screen_name":"__OKHA","location":null,"url":null,"description":"\u30da\u30c0\u30eb l \ud504\ub85c \uc7a1\ub355 l \ubc30\uacbd\uc740 \ub51c\ub2d8\uc758, \ud5e4\ub354\ub294 \ud344\ucc28\ub2d8\uc758 \ucee4\ubbf8\uc158 l\n\uad6c\ub3c5 \ub9ce\uc774 \ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":2555,"friends_count":503,"listed_count":21,"favourites_count":7727,"statuses_count":14900,"created_at":"Wed Feb 05 09:10:25 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328479976\/1427255632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1680,"favorite_count":494,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__OKHA","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","id":2328479976,"id_str":"2328479976","indices":[3,10]}],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005601099776,"id_str":"663728005601099776","text":"#iPad iPad 1st GENERATION BOXED 9.7\" BLACK SCREEN 32 GB WIFI & 3G BUNDLED WITH CASE: \u00a3100.00End Date: Thursda... https:\/\/t.co\/pVDK5NzEdz","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3414353613,"id_str":"3414353613","name":"Best4U","screen_name":"AllBest4U","location":"@AllBest4U","url":"http:\/\/bit.ly\/1TjwjrJ","description":"#iPhone #iPad #iOS #android #comupter #ordinateur #tablette #hightech http:\/\/bit.ly\/1TjwjrJ","protected":false,"verified":false,"followers_count":890,"friends_count":2082,"listed_count":38,"favourites_count":0,"statuses_count":19346,"created_at":"Tue Aug 11 05:34:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630975797319331840\/cHEcPjE-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630975797319331840\/cHEcPjE-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3414353613\/1439271337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iPad","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/pVDK5NzEdz","expanded_url":"http:\/\/ebay.to\/1kFX2PC","display_url":"ebay.to\/1kFX2PC","indices":[118,141]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062662"} +{"delete":{"status":{"id":663724436244205568,"id_str":"663724436244205568","user_id":3123013509,"user_id_str":"3123013509"},"timestamp_ms":"1447080062909"}} +{"delete":{"status":{"id":661909464451186690,"id_str":"661909464451186690","user_id":3737926874,"user_id_str":"3737926874"},"timestamp_ms":"1447080062964"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005580201985,"id_str":"663728005580201985","text":"Para vos claraa https:\/\/t.co\/kxbRaylWmg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2598077790,"id_str":"2598077790","name":"Kronologic","screen_name":"NicoSobrecasa98","location":"Con Anto siempre ","url":null,"description":"Insta: NicoSobrecasa \u264f","protected":false,"verified":false,"followers_count":292,"friends_count":241,"listed_count":1,"favourites_count":1754,"statuses_count":4196,"created_at":"Tue Jul 01 14:41:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646226093154897920\/txpwHxIA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646226093154897920\/txpwHxIA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2598077790\/1446471495","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727910554116096,"id_str":"663727910554116096","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBKAXIAAve9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBKAXIAAve9y.jpg","url":"https:\/\/t.co\/kxbRaylWmg","display_url":"pic.twitter.com\/kxbRaylWmg","expanded_url":"http:\/\/twitter.com\/NicoSobrecasa98\/status\/663728005580201985\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727910554116096,"id_str":"663727910554116096","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBKAXIAAve9y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBKAXIAAve9y.jpg","url":"https:\/\/t.co\/kxbRaylWmg","display_url":"pic.twitter.com\/kxbRaylWmg","expanded_url":"http:\/\/twitter.com\/NicoSobrecasa98\/status\/663728005580201985\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080062657"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005617963008,"id_str":"663728005617963008","text":"Let's Make A Child's Life Brighter!! https:\/\/t.co\/LKIA735bOY #retweet #donate #toysfortots #NATIONALILOVEYOUDAY No\u2026 https:\/\/t.co\/4v51ba5h2D","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3906762134,"id_str":"3906762134","name":"Vidiout","screen_name":"VidiOut1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":1,"listed_count":60,"favourites_count":0,"statuses_count":36703,"created_at":"Thu Oct 15 21:22:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"retweet","indices":[61,69]},{"text":"donate","indices":[70,77]},{"text":"toysfortots","indices":[78,90]},{"text":"NATIONALILOVEYOUDAY","indices":[91,111]}],"urls":[{"url":"https:\/\/t.co\/LKIA735bOY","expanded_url":"http:\/\/ift.tt\/1QG1lVm","display_url":"ift.tt\/1QG1lVm","indices":[37,60]}],"user_mentions":[],"symbols":[],"media":[{"id":663728004506509317,"id_str":"663728004506509317","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGoAW4AUuAN2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGoAW4AUuAN2.jpg","url":"https:\/\/t.co\/4v51ba5h2D","display_url":"pic.twitter.com\/4v51ba5h2D","expanded_url":"http:\/\/twitter.com\/VidiOut1\/status\/663728005617963008\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728004506509317,"id_str":"663728004506509317","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGoAW4AUuAN2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGoAW4AUuAN2.jpg","url":"https:\/\/t.co\/4v51ba5h2D","display_url":"pic.twitter.com\/4v51ba5h2D","expanded_url":"http:\/\/twitter.com\/VidiOut1\/status\/663728005617963008\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062666"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005605433344,"id_str":"663728005605433344","text":"@Talayaaa honestly this is gonna happen! I'm gonna start searching for places \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724398256459776,"in_reply_to_status_id_str":"663724398256459776","in_reply_to_user_id":2196035300,"in_reply_to_user_id_str":"2196035300","in_reply_to_screen_name":"Talayaaa","user":{"id":711308004,"id_str":"711308004","name":"Olive","screen_name":"Olisboard","location":"hemel","url":null,"description":"An a class wanker","protected":false,"verified":false,"followers_count":420,"friends_count":456,"listed_count":0,"favourites_count":3584,"statuses_count":9451,"created_at":"Sun Jul 22 21:38:12 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000129609339\/dAnx700-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000129609339\/dAnx700-.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663533267233193984\/uVJ4sHGb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663533267233193984\/uVJ4sHGb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711308004\/1430179279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Talayaaa","name":"\u2020","id":2196035300,"id_str":"2196035300","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062663"} +{"delete":{"status":{"id":663724335589253124,"id_str":"663724335589253124","user_id":3123637084,"user_id_str":"3123637084"},"timestamp_ms":"1447080062982"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005597020161,"id_str":"663728005597020161","text":"\u00d0\u2660 A sweet littketreat to wear around your neck #lollipop #necklace #etsyfinds https:\/\/t.co\/yIry4FSzja https:\/\/t.co\/zUFCpWnk40","source":"\u003ca href=\"http:\/\/tweet-eye.com\/\" rel=\"nofollow\"\u003eTweet Eye - Tweet My Website\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19514458,"id_str":"19514458","name":"GlassDezignz","screen_name":"GLassdezignz","location":"Clermont","url":"http:\/\/www.glassdezignz.etsy.com","description":"Jewelry design","protected":false,"verified":false,"followers_count":1056,"friends_count":706,"listed_count":240,"favourites_count":10,"statuses_count":297477,"created_at":"Mon Jan 26 01:18:44 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"C55FED","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476186406864171009\/giOY4Gd4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476186406864171009\/giOY4Gd4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19514458\/1403754108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lollipop","indices":[48,57]},{"text":"necklace","indices":[58,67]},{"text":"etsyfinds","indices":[68,78]}],"urls":[{"url":"https:\/\/t.co\/yIry4FSzja","expanded_url":"http:\/\/etsy.me\/1O7YEOr","display_url":"etsy.me\/1O7YEOr","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663728005441839105,"id_str":"663728005441839105","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGrfW4AEcfSw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGrfW4AEcfSw.png","url":"https:\/\/t.co\/zUFCpWnk40","display_url":"pic.twitter.com\/zUFCpWnk40","expanded_url":"http:\/\/twitter.com\/GLassdezignz\/status\/663728005597020161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":722,"h":428,"resize":"fit"},"medium":{"w":600,"h":355,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728005441839105,"id_str":"663728005441839105","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGrfW4AEcfSw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGrfW4AEcfSw.png","url":"https:\/\/t.co\/zUFCpWnk40","display_url":"pic.twitter.com\/zUFCpWnk40","expanded_url":"http:\/\/twitter.com\/GLassdezignz\/status\/663728005597020161\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":722,"h":428,"resize":"fit"},"medium":{"w":600,"h":355,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005596889089,"id_str":"663728005596889089","text":"@minecraftraid02 \u78ba\u304b\u306b\u6280\u8853\u7cfb\u3092\u7d50\u69cb\u3064\u3076\u3084\u3044\u305f\u308a\u3057\u3066\u307e\u3059\u304b\u3089\u306d...w\nPvP\u3082\u3057\u3066\u307e\u3059\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727741783506944,"in_reply_to_status_id_str":"663727741783506944","in_reply_to_user_id":3416649372,"in_reply_to_user_id_str":"3416649372","in_reply_to_screen_name":"minecraftraid02","user":{"id":2679479930,"id_str":"2679479930","name":"\u3053\u3051","screen_name":"haniwa_koke","location":"\u3053\u305f\u3064","url":"http:\/\/niwaniwa.github.io\/","description":"profile http:\/\/twpf.jp\/haniwa_koke : \u8cea\u554f\u306f\u3053\u3061\u3089 http:\/\/ask.fm\/haniwa_koke : icon \u3042\u30fc\u308b\u69d8 @RRR_everie : \u8a73\u7d30\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3092... : \u6843\u306e\u9999\u308a","protected":false,"verified":false,"followers_count":750,"friends_count":666,"listed_count":59,"favourites_count":139058,"statuses_count":31573,"created_at":"Fri Jul 25 12:19:09 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"49ADFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631544454080401408\/V98JrNCA.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631544454080401408\/V98JrNCA.png","profile_background_tile":true,"profile_link_color":"FFA75A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663376648016826370\/Vxw1qMFA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663376648016826370\/Vxw1qMFA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2679479930\/1445079854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minecraftraid02","name":"\u30e9\u30a4\u30c9\u30a5\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30f3","id":3416649372,"id_str":"3416649372","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062661"} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005597011968,"id_str":"663728005597011968","text":"NEW The Python Standard Library by Example by Doug Hellmann Paperback Book (Engl https:\/\/t.co\/LG3AYrwWAY https:\/\/t.co\/lqiCuYQWgj","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3019006968,"id_str":"3019006968","name":"majestic deals","screen_name":"ferrariaurelia5","location":null,"url":null,"description":"majestic deals","protected":false,"verified":false,"followers_count":61,"friends_count":40,"listed_count":19,"favourites_count":0,"statuses_count":100876,"created_at":"Sat Feb 14 02:26:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566423504526913536\/vr289K8l_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566423504526913536\/vr289K8l_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3019006968\/1423880871","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LG3AYrwWAY","expanded_url":"http:\/\/spain-travel-now.info\/sn\/re\/?query=141823685764","display_url":"spain-travel-now.info\/sn\/re\/?query=1\u2026","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663728005487984640,"id_str":"663728005487984640","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGrqXAAAOV7F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGrqXAAAOV7F.jpg","url":"https:\/\/t.co\/lqiCuYQWgj","display_url":"pic.twitter.com\/lqiCuYQWgj","expanded_url":"http:\/\/twitter.com\/ferrariaurelia5\/status\/663728005597011968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":643,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":643,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728005487984640,"id_str":"663728005487984640","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGrqXAAAOV7F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGrqXAAAOV7F.jpg","url":"https:\/\/t.co\/lqiCuYQWgj","display_url":"pic.twitter.com\/lqiCuYQWgj","expanded_url":"http:\/\/twitter.com\/ferrariaurelia5\/status\/663728005597011968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":643,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":643,"resize":"fit"},"small":{"w":340,"h":437,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080062661"} +{"delete":{"status":{"id":663635240188051456,"id_str":"663635240188051456","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080063173"}} +{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728005588500480,"id_str":"663728005588500480","text":"\u6628\u65e5\u306f\u55a7\u5629\u3057\u305f\u3051\u3069\u3001\n\u4ef2\u76f4\u308a\u3057\u3066\u4eca\u65e5\u306f\u8a95\u751f\u65e5\u3084\u3063\u305f\u270c\n\uff12\u4eba\u3060\u3051\u3069\u559c\u3093\u3067\u305f\u304b\u3089( \u30fb\u2200\u30fb)\uff72\uff72!! https:\/\/t.co\/c2POqJsIUB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3896351234,"id_str":"3896351234","name":"\u6bd4\u5609\u3000\u3053\u3068\u306e","screen_name":"9Al7DpCsqaJeVKX","location":null,"url":null,"description":"18\u6b73\u306e\u598a\u5a66\u3055\u3093\u53ea\u4eca\u2466\u30f6\u6708\u2665\u30d9\u30d3\u7537\u304f\u3093\n\u5143\u6c17\u306b\u6210\u9577\u4e2d\n\u30d1\u30d1\u3055\u3093\u3068\u51fa\u7523\u307e\u3067\u306e\u65e5\u3005~\u2729","protected":false,"verified":false,"followers_count":69,"friends_count":66,"listed_count":0,"favourites_count":117,"statuses_count":186,"created_at":"Wed Oct 14 22:46:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658910324775522304\/Loa-dmvK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658910324775522304\/Loa-dmvK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3896351234\/1446198090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727972210249728,"id_str":"663727972210249728","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEvsVEAAMP1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEvsVEAAMP1E.jpg","url":"https:\/\/t.co\/c2POqJsIUB","display_url":"pic.twitter.com\/c2POqJsIUB","expanded_url":"http:\/\/twitter.com\/9Al7DpCsqaJeVKX\/status\/663728005588500480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"},"large":{"w":1024,"h":1820,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727972210249728,"id_str":"663727972210249728","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJEvsVEAAMP1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJEvsVEAAMP1E.jpg","url":"https:\/\/t.co\/c2POqJsIUB","display_url":"pic.twitter.com\/c2POqJsIUB","expanded_url":"http:\/\/twitter.com\/9Al7DpCsqaJeVKX\/status\/663728005588500480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"},"large":{"w":1024,"h":1820,"resize":"fit"}}},{"id":663727988089884672,"id_str":"663727988089884672","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFq2VEAApyq1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFq2VEAApyq1.jpg","url":"https:\/\/t.co\/c2POqJsIUB","display_url":"pic.twitter.com\/c2POqJsIUB","expanded_url":"http:\/\/twitter.com\/9Al7DpCsqaJeVKX\/status\/663728005588500480\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727996436516864,"id_str":"663727996436516864","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGJ8UkAALbFE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGJ8UkAALbFE.jpg","url":"https:\/\/t.co\/c2POqJsIUB","display_url":"pic.twitter.com\/c2POqJsIUB","expanded_url":"http:\/\/twitter.com\/9Al7DpCsqaJeVKX\/status\/663728005588500480\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080062659"} +{"delete":{"status":{"id":661912132028514304,"id_str":"661912132028514304","user_id":3737926874,"user_id_str":"3737926874"},"timestamp_ms":"1447080063245"}} +{"delete":{"status":{"id":663727997216681984,"id_str":"663727997216681984","user_id":2607122210,"user_id_str":"2607122210"},"timestamp_ms":"1447080063452"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009782906880,"id_str":"663728009782906880","text":"RT JamesReidsArmy: RT JamesReidsArmy: RT THIS \u2014 Tweets pa more\n#OTWOLWish \n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3466012100,"id_str":"3466012100","name":"Shite Paris","screen_name":"shiteparis","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":13,"listed_count":14,"favourites_count":0,"statuses_count":70443,"created_at":"Sun Sep 06 02:58:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640358501663928320\/p4J_X-yt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640358501663928320\/p4J_X-yt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[63,73]},{"text":"PushAwardsJaDines","indices":[75,93]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063659"} +{"delete":{"status":{"id":637093248264048640,"id_str":"637093248264048640","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080063658"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009787154432,"id_str":"663728009787154432","text":"https:\/\/t.co\/ytpFaJehSH","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726480703,"id_str":"726480703","name":"Fabi","screen_name":"cancer_famdom","location":"Brasil","url":null,"description":"I'm Directioner bitch","protected":false,"verified":false,"followers_count":430,"friends_count":1416,"listed_count":2,"favourites_count":471,"statuses_count":5167,"created_at":"Mon Jul 30 17:24:12 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588128046315507713\/6hbsZGeL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588128046315507713\/6hbsZGeL.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627158759341559809\/OGiqHA5I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627158759341559809\/OGiqHA5I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726480703\/1435342208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ytpFaJehSH","expanded_url":"http:\/\/fb.me\/2YHLZKOpn","display_url":"fb.me\/2YHLZKOpn","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080063660"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009787088896,"id_str":"663728009787088896","text":"RT @marialiparaguay: No puedo evitar mirarte, no puedo sin perder la raz\u00f3n \ud83c\udfb6\ud83d\udc8b #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/mqa\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622968316,"id_str":"3622968316","name":"AZUL","screen_name":"Gaette_","location":"Paraguay","url":null,"description":"Fan de una mina de un 1.54mts.\n En su sonrisa mi Paz\u2661","protected":false,"verified":false,"followers_count":57,"friends_count":99,"listed_count":0,"favourites_count":12,"statuses_count":564,"created_at":"Fri Sep 11 18:19:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653368873543204865\/L4d45-JE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653368873543204865\/L4d45-JE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3622968316\/1447035601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:06:26 +0000 2015","id":663704199285366784,"id_str":"663704199285366784","text":"No puedo evitar mirarte, no puedo sin perder la raz\u00f3n \ud83c\udfb6\ud83d\udc8b #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/mqasass3gV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4106348074,"id_str":"4106348074","name":"MARIALI Paraguay","screen_name":"marialiparaguay","location":null,"url":null,"description":"Nos mueve el amor por Lali y Mariano! El amor que transmiten cuando est\u00e1n juntos! hoy es el d\u00eda mas feliz para las Marialis de todo el mundo! 03\/11\/15","protected":false,"verified":false,"followers_count":28,"friends_count":50,"listed_count":0,"favourites_count":113,"statuses_count":171,"created_at":"Tue Nov 03 18:15:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661670822793379840\/cA7AmjvF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661670822793379840\/cA7AmjvF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4106348074\/1446585563","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":3,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[57,72]},{"text":"ArtistaDelA\u00f1o","indices":[73,87]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663703401524514816,"id_str":"663703401524514816","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","url":"https:\/\/t.co\/mqasass3gV","display_url":"pic.twitter.com\/mqasass3gV","expanded_url":"http:\/\/twitter.com\/marialiparaguay\/status\/663704199285366784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703401524514816,"id_str":"663703401524514816","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","url":"https:\/\/t.co\/mqasass3gV","display_url":"pic.twitter.com\/mqasass3gV","expanded_url":"http:\/\/twitter.com\/marialiparaguay\/status\/663704199285366784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[78,93]},{"text":"ArtistaDelA\u00f1o","indices":[94,108]}],"urls":[],"user_mentions":[{"screen_name":"marialiparaguay","name":"MARIALI Paraguay","id":4106348074,"id_str":"4106348074","indices":[3,19]}],"symbols":[],"media":[{"id":663703401524514816,"id_str":"663703401524514816","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","url":"https:\/\/t.co\/mqasass3gV","display_url":"pic.twitter.com\/mqasass3gV","expanded_url":"http:\/\/twitter.com\/marialiparaguay\/status\/663704199285366784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663704199285366784,"source_status_id_str":"663704199285366784","source_user_id":4106348074,"source_user_id_str":"4106348074"}]},"extended_entities":{"media":[{"id":663703401524514816,"id_str":"663703401524514816","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyuiwWUAAv95S.jpg","url":"https:\/\/t.co\/mqasass3gV","display_url":"pic.twitter.com\/mqasass3gV","expanded_url":"http:\/\/twitter.com\/marialiparaguay\/status\/663704199285366784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663704199285366784,"source_status_id_str":"663704199285366784","source_user_id":4106348074,"source_user_id_str":"4106348074"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080063660"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009791205376,"id_str":"663728009791205376","text":"\u4eca\u65e5\u3082\uff11\u65e5\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\uff01\n\u671d\u8d77\u304d\u3066\u304b\u3089\u4e0d\u904b\u7d9a\u304d\u306e\u50d5\u306f\u6700\u5f8c\u307e\u3067\u4e0d\u904b\u3067\u3057\u305f\ud83d\udca7\n\u660e\u65e5\u304b\u3089\u306f\u3082\u3063\u3068\u3044\u3044\u65e5\u306b\u306a\u308b\u3068\u3044\u3044\u306a\u3041(*\u00b4\u03c9\uff40*)\n\u305d\u308c\u3067\u306f\u3001\u304a\u4f11\u307f\u306a\u3055\u3044\u301c(^O^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257086190,"id_str":"3257086190","name":"\u57ce\u91d1\u3057\u3093\u3058@\u5bbf\u6bdb\u63d0\u7763","screen_name":"QfiRZ4eRCS3cSrM","location":null,"url":null,"description":"\u5e74\u59cb\u304b\u3089\u8266\u3053\u308c\u30d7\u30ec\u30a4\u3057\u3066\u307e\u3059\uff08\u745e\u9db4\u63d0\u7763\uff09\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\/\u4f1a\u8a71\u3067\u306f\u304b\u306a\u308a\u306e\u78ba\u7387\u3067\u8a71\u304c\u305d\u308c\u307e\u3059w\/\u4e00\u4eba\u79f0\u304c\u5b9a\u304b\u3067\u306f\u3042\u308a\u307e\u305b\u3093\/\u79cb\u30a4\u30d9\u3067\u306f\u521d\u5236\u8987\u3092\u76ee\u6307\u3057\u307e\u3059\/\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":148,"friends_count":203,"listed_count":9,"favourites_count":719,"statuses_count":715,"created_at":"Fri Jun 26 22:13:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707823767879681\/s2BVjNhp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707823767879681\/s2BVjNhp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257086190\/1446435614","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063661"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009774391296,"id_str":"663728009774391296","text":"RT @jadon_neha: \" \u092e\u0947\u0902 \u0924\u0947\u0928\u0941 \u0938\u092e\u091d\u093e\u0935\u093e \u0915\u0940 \u0928\u093e \n \u0924\u0947\u0930\u0947 \u092c\u093f\u0928\u093e \u0932\u0917\u0926\u093e \u091c\u0940 ..\ud83c\udf39\n \u0924\u0942 \u0915\u0940 \u091c\u093e\u0928\u0947 \u092a\u094d\u092f\u093e\u0930 \u092e\u0947\u0930\u093e \n \u092e\u0947\u0902 \u0915\u0930\u093e \u0907\u0902\u0924\u091c\u093e\u0930 \u0924\u0947\u0930\u093e ..\ud83c\udf39\n #SUPER_HIT_S\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329775433,"id_str":"3329775433","name":"\u092e\u094b\u0926\u0940\u0935\u093e\u0923\u0940","screen_name":"modivanibharat","location":"India","url":"http:\/\/www.narendramodi.in","description":"\u0950 \u0928\u092e\u094b \u092d\u0915\u094d\u0924 \u0950 \u092f\u0939 \u0939\u092e\u093e\u0930\u093e \u0938\u094b\u092d\u093e\u0917\u094d\u092f \u0939\u0948 \u0915\u093f \u0906\u0926\u0930\u0923\u0940\u092f \u0936\u094d\u0930\u0940 @narendramodi \u091c\u0940 \u0939\u092e\u093e\u0930\u0947 \u0926\u0947\u0936 \u0915\u0947 \u092a\u094d\u0930\u0927\u093e\u0928\u092e\u0902\u0924\u094d\u0930\u0940 \u0939\u0948 \u091c\u094b \u0939\u092e\u093e\u0930\u0947 \u0926\u0947\u0936 \u0915\u093e \u092d\u093e\u0917\u094d\u092f \u092c\u0926\u0932\u0947\u0902\u0917\u0947 \u0950 \u0926\u0947\u0936\u092d\u0915\u094d\u0924\u093f \u0939\u0940 \u0938\u091a\u094d\u091a\u0940 \u092d\u0915\u094d\u0924\u093f \u0939\u0948 \u0950.","protected":false,"verified":false,"followers_count":3884,"friends_count":754,"listed_count":33,"favourites_count":5602,"statuses_count":29897,"created_at":"Mon Aug 24 20:00:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648676249162772481\/72elSM0S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648676249162772481\/72elSM0S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329775433\/1446529711","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:44:13 +0000 2015","id":663683508628418562,"id_str":"663683508628418562","text":"\" \u092e\u0947\u0902 \u0924\u0947\u0928\u0941 \u0938\u092e\u091d\u093e\u0935\u093e \u0915\u0940 \u0928\u093e \n \u0924\u0947\u0930\u0947 \u092c\u093f\u0928\u093e \u0932\u0917\u0926\u093e \u091c\u0940 ..\ud83c\udf39\n \u0924\u0942 \u0915\u0940 \u091c\u093e\u0928\u0947 \u092a\u094d\u092f\u093e\u0930 \u092e\u0947\u0930\u093e \n \u092e\u0947\u0902 \u0915\u0930\u093e \u0907\u0902\u0924\u091c\u093e\u0930 \u0924\u0947\u0930\u093e ..\ud83c\udf39\n #SUPER_HIT_SONG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308698358,"id_str":"3308698358","name":"Neha jadon","screen_name":"jadon_neha","location":"Indore ( Madhya pradesh )","url":null,"description":"\u0939\u093f\u0928\u094d\u0926\u0940 \u092e\u0947\u0930\u0940 \u0939\u093f\u092e\u094d\u092e\u0924 \u0939\u0948\u0902, \u0915\u0932\u092e \u092e\u0947\u0930\u0940 \u0924\u093e\u0915\u0924, \u0938\u0936\u0915\u094d\u0924 \u0935\u093f\u091a\u093e\u0930\n\n \u092e\u0947\u0930\u0940 \u0936\u0915\u094d\u0924\u093f \u0939\u0948\u0902 \u0914\u0930 \u0906\u0924\u094d\u092e \u0938\u092e\u094d\u092e\u093e\u0928 \u092e\u0947\u0930\u0940 \u0906\u0926\u0924\u0964\r\n\n \u092e\u0947\u0930\u0947 tweet \u0906\u092a likes \u092e\u0947\u0902 \u092a\u095d\u0947 \u0964 \n\nDM \u0915\u0930\u0915\u0947 \u0926\u093f\u092e\u093e\u0917 \u0915\u093e \u092a\u0930\u093f\u091a\u092f \u0928\u093e \u0926\u0947 \u0964","protected":false,"verified":false,"followers_count":2332,"friends_count":805,"listed_count":5,"favourites_count":1162,"statuses_count":17312,"created_at":"Fri Aug 07 11:25:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662885242970198016\/chNMa4c8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662885242970198016\/chNMa4c8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3308698358\/1443248272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":8,"entities":{"hashtags":[{"text":"SUPER_HIT_SONG","indices":[111,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SUPER_HIT_SONG","indices":[127,140]}],"urls":[],"user_mentions":[{"screen_name":"jadon_neha","name":"Neha jadon","id":3308698358,"id_str":"3308698358","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080063657"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009808060416,"id_str":"663728009808060416","text":"\u00e0 mn arr\u00eat dbus cmatin yen avait ils parlaient de secret story","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1690565485,"id_str":"1690565485","name":"objectifs","screen_name":"MCD0BRIEN","location":null,"url":null,"description":"jsui peut-\u00eatre moche mais \u00e2me doux lila g un placard rempli dkinder d\u00e9lice","protected":false,"verified":false,"followers_count":3298,"friends_count":754,"listed_count":6,"favourites_count":3220,"statuses_count":18849,"created_at":"Thu Aug 22 09:23:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662873663016935424\/deXalyvQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662873663016935424\/deXalyvQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1690565485\/1445183249","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009807986688,"id_str":"663728009807986688","text":"\u306f\u3058\u3081\u3066\u30a2\u30eb\u30b3\u30fc\u30eb\u3067\u610f\u8b58\u5931\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195222095,"id_str":"195222095","name":"\u871c\u67d1","screen_name":"6mikan0","location":"\u5343\u8449\u770c\u67cf\u5e02","url":null,"description":"\u4f53\u304c\u51b7\u3048\u308b\u30fc!\u7d76\u8b9a\u3042\u3089\u3055\u30fc\u4e2d!!!","protected":false,"verified":false,"followers_count":40,"friends_count":81,"listed_count":1,"favourites_count":544,"statuses_count":9826,"created_at":"Sun Sep 26 03:45:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/426615416035618816\/SOaWK5df_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/426615416035618816\/SOaWK5df_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195222095\/1390062127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009812160512,"id_str":"663728009812160512","text":"Jangan Merangkak dalam Keraguan, Berlarilah dengan KEYAKINAN","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187193172,"id_str":"3187193172","name":"Cinta Bersemi Lagi","screen_name":"cintabersemi112","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":51,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":13303,"created_at":"Thu May 07 03:24:45 +0000 2015","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596199871574450176\/qJKJ3tVj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596199871574450176\/qJKJ3tVj_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080063666"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795362818,"id_str":"663728009795362818","text":"\u304f\u3059\u3050\u308aSS\u6295\u4e0b\u3057\u307e\u3057\u305f\n\u304b\u3063\u3053\u308f\u3089\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489505985,"id_str":"489505985","name":"Y@\u304f\u3059\u3050\u308a\u738b\u56fd\u6c11","screen_name":"game_create","location":null,"url":"http:\/\/touch.pixiv.net\/novel\/member.php?id=4182081","description":"\u4e3b\u306b\u30cf\u30fc\u30c9\u306a\u4e8c\u6b21\u5275\u4f5c\u304f\u3059\u3050\u308a\u5c0f\u8aac\u3092\u66f8\u3044\u3066\u307e\u3059\u3002\n\u304f\u3059\u3050\u308a\u8981\u7d20\u306e\u3042\u308b\u30b2\u30fc\u30e0\u3082\u3088\u308d\u3057\u304f\u306a\u3093\u3002","protected":false,"verified":false,"followers_count":173,"friends_count":160,"listed_count":6,"favourites_count":1177,"statuses_count":10276,"created_at":"Sat Feb 11 16:05:41 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661922544216215556\/j73i5L1m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661922544216215556\/j73i5L1m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489505985\/1441026239","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803788289,"id_str":"663728009803788289","text":"@nene_teru \u30c9\u30e9\u30af\u30a8\u3067\u6ce3\u3044\u305f\u306e\u521d\u3081\u3066\u3067\u3059\u3088\u3001\u3046\u3061\u306fw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727609864318976,"in_reply_to_status_id_str":"663727609864318976","in_reply_to_user_id":1666132314,"in_reply_to_user_id_str":"1666132314","in_reply_to_screen_name":"nene_teru","user":{"id":2398738926,"id_str":"2398738926","name":"\u300c(\u4eee)\u305f\u306a\u304b\u300d","screen_name":"wish634m","location":null,"url":null,"description":"\u96d1\u591a\u306b\u545f\u3044\u3066\u3044\u307e\u3059(\u611a\u75f4\u3068\u304b\u3082\u6709)\n\u73fe\u5728\u30fb\u30e2\u30f3\u30cf\u30f3\u30a8\u30af\u30b9\u30d7\u30ed\u30a2\u3001\u30e2\u30f3\u30cf\u30f34G\u3086\u308b\u301c\u308a\u3068\u904a\u3073\u3061\u3085\u30fc\u3002DQ10\u306f\u307b\u307c\u304a\u4f11\u307f\u4e2d\u3002\u524d\u4e16\u306f\u7dd1\u306e\u3042\u3075\u308d\u3077\u304f\u3002","protected":false,"verified":false,"followers_count":69,"friends_count":159,"listed_count":4,"favourites_count":1394,"statuses_count":12717,"created_at":"Thu Mar 20 02:33:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653477758903824386\/9Pe7I40J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653477758903824386\/9Pe7I40J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398738926\/1442712356","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nene_teru","name":"\u304a\u3057\u3087","id":1666132314,"id_str":"1666132314","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803898880,"id_str":"663728009803898880","text":"RT @SPONGEBOBALLCAP: History \/\/ One Direction https:\/\/t.co\/omHhTIzFEX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2891460086,"id_str":"2891460086","name":"c","screen_name":"softsoundhoran","location":null,"url":"https:\/\/vine.co\/v\/eFHW907lwW2","description":"yeah cos i walk past girls schools all the time.... what the hell of course i dont","protected":false,"verified":false,"followers_count":808,"friends_count":605,"listed_count":4,"favourites_count":1781,"statuses_count":17476,"created_at":"Thu Nov 06 01:31:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653949900787437569\/YE7DhUuU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653949900787437569\/YE7DhUuU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891460086\/1444748678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:21:12 +0000 2015","id":663330424853299200,"id_str":"663330424853299200","text":"History \/\/ One Direction https:\/\/t.co\/omHhTIzFEX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3718085415,"id_str":"3718085415","name":"SPONGEBOB ALL CAPS","screen_name":"SPONGEBOBALLCAP","location":"bikini bottom ","url":null,"description":null,"protected":false,"verified":false,"followers_count":22341,"friends_count":26,"listed_count":23,"favourites_count":1245,"statuses_count":180,"created_at":"Sun Sep 20 13:43:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660825720638296064\/94R5c7Yy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660825720638296064\/94R5c7Yy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3718085415\/1443728383","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":604,"favorite_count":511,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663330397296676865,"id_str":"663330397296676865","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":366,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663330397296676865,"id_str":"663330397296676865","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":366,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}}},{"id":663330397359636480,"id_str":"663330397359636480","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe19XAAAZ82s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe19XAAAZ82s.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":454,"resize":"fit"},"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"}}},{"id":663330397405716481,"id_str":"663330397405716481","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe2IWIAEcMSo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe2IWIAEcMSo.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":430,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663330397430915073,"id_str":"663330397430915073","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe2OWoAE6sBN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe2OWoAE6sBN.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":413,"resize":"fit"},"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SPONGEBOBALLCAP","name":"SPONGEBOB ALL CAPS","id":3718085415,"id_str":"3718085415","indices":[3,19]}],"symbols":[],"media":[{"id":663330397296676865,"id_str":"663330397296676865","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":366,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}},"source_status_id":663330424853299200,"source_status_id_str":"663330424853299200","source_user_id":3718085415,"source_user_id_str":"3718085415"}]},"extended_entities":{"media":[{"id":663330397296676865,"id_str":"663330397296676865","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe1uWUAEyTtX.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":390,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":366,"resize":"fit"},"small":{"w":340,"h":207,"resize":"fit"}},"source_status_id":663330424853299200,"source_status_id_str":"663330424853299200","source_user_id":3718085415,"source_user_id_str":"3718085415"},{"id":663330397359636480,"id_str":"663330397359636480","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe19XAAAZ82s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe19XAAAZ82s.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":454,"resize":"fit"},"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":426,"resize":"fit"}},"source_status_id":663330424853299200,"source_status_id_str":"663330424853299200","source_user_id":3718085415,"source_user_id_str":"3718085415"},{"id":663330397405716481,"id_str":"663330397405716481","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe2IWIAEcMSo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe2IWIAEcMSo.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":430,"resize":"fit"},"medium":{"w":600,"h":403,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663330424853299200,"source_status_id_str":"663330424853299200","source_user_id":3718085415,"source_user_id_str":"3718085415"},{"id":663330397430915073,"id_str":"663330397430915073","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfe2OWoAE6sBN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfe2OWoAE6sBN.jpg","url":"https:\/\/t.co\/omHhTIzFEX","display_url":"pic.twitter.com\/omHhTIzFEX","expanded_url":"http:\/\/twitter.com\/SPONGEBOBALLCAP\/status\/663330424853299200\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":413,"resize":"fit"},"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}},"source_status_id":663330424853299200,"source_status_id_str":"663330424853299200","source_user_id":3718085415,"source_user_id_str":"3718085415"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009774391297,"id_str":"663728009774391297","text":"RT @instiz: \ubc30\uc2a4\ud0a8\ub77c\ube48\uc2a4 \uc54c\ubc14\uc0dd\ub4e4\uc774 \uac00\uc7a5 \uc2eb\uc5b4\ud55c\ub2e4\ub294 \ub9db \ub450 \uac00\uc9c0 https:\/\/t.co\/DYPPUiqVc9 https:\/\/t.co\/gnr066uoYk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3892807512,"id_str":"3892807512","name":"\uc740\uc11d\ubbfc","screen_name":"esg0912","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":23,"listed_count":0,"favourites_count":15,"statuses_count":123,"created_at":"Wed Oct 14 15:14:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660660144586424320\/cuO9LDeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660660144586424320\/cuO9LDeR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3892807512\/1446348626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:34:35 +0000 2015","id":663348892721807360,"id_str":"663348892721807360","text":"\ubc30\uc2a4\ud0a8\ub77c\ube48\uc2a4 \uc54c\ubc14\uc0dd\ub4e4\uc774 \uac00\uc7a5 \uc2eb\uc5b4\ud55c\ub2e4\ub294 \ub9db \ub450 \uac00\uc9c0 https:\/\/t.co\/DYPPUiqVc9 https:\/\/t.co\/gnr066uoYk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184363884,"id_str":"184363884","name":"\uc778\uc2a4\ud2f0\uc988 \uc5f0\uc608\uc18c\uc2dd","screen_name":"instiz","location":"\ub9ce\uc740 \uc5f0\uc608\uacc4 \uc774\uc288\uac00 \uc5ec\uae30\uc11c \uc2dc\uc791!","url":"http:\/\/www.instiz.net","description":"\uad6d\ub0b4 \ucd5c\ub300\uc758 \uc5f0\uc608\uc624\ub77d \ucee4\ubba4\ub2c8\ud2f0, \uc778\uc2a4\ud2f0\uc988","protected":false,"verified":false,"followers_count":255358,"friends_count":234833,"listed_count":478,"favourites_count":0,"statuses_count":26234,"created_at":"Sun Aug 29 10:43:08 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000001380770\/0b0611f726d7cbba57d61b8d37e1b82b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000001380770\/0b0611f726d7cbba57d61b8d37e1b82b.png","profile_background_tile":false,"profile_link_color":"0DAB57","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648921124147847169\/rnV5IlDO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648921124147847169\/rnV5IlDO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184363884\/1420742846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":404,"favorite_count":125,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DYPPUiqVc9","expanded_url":"http:\/\/instiz.net\/pt\/3361069","display_url":"instiz.net\/pt\/3361069","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663348889311801344,"id_str":"663348889311801344","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":424,"h":407,"resize":"fit"},"large":{"w":424,"h":407,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663348889311801344,"id_str":"663348889311801344","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":424,"h":407,"resize":"fit"},"large":{"w":424,"h":407,"resize":"fit"}}},{"id":663348886367440897,"id_str":"663348886367440897","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTC4VEAED_jA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTC4VEAED_jA.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":651,"h":324,"resize":"fit"}}},{"id":663348891610279936,"id_str":"663348891610279936","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTWaUcAADFOX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTWaUcAADFOX.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":354,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":624,"h":369,"resize":"fit"}}},{"id":663348886367420416,"id_str":"663348886367420416","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTC4UwAAzIdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTC4UwAAzIdz.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":425,"h":251,"resize":"fit"},"small":{"w":340,"h":200,"resize":"fit"},"large":{"w":425,"h":251,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DYPPUiqVc9","expanded_url":"http:\/\/instiz.net\/pt\/3361069","display_url":"instiz.net\/pt\/3361069","indices":[41,64]}],"user_mentions":[{"screen_name":"instiz","name":"\uc778\uc2a4\ud2f0\uc988 \uc5f0\uc608\uc18c\uc2dd","id":184363884,"id_str":"184363884","indices":[3,10]}],"symbols":[],"media":[{"id":663348889311801344,"id_str":"663348889311801344","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":424,"h":407,"resize":"fit"},"large":{"w":424,"h":407,"resize":"fit"}},"source_status_id":663348892721807360,"source_status_id_str":"663348892721807360","source_user_id":184363884,"source_user_id_str":"184363884"}]},"extended_entities":{"media":[{"id":663348889311801344,"id_str":"663348889311801344","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTN2UcAAxTea.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":424,"h":407,"resize":"fit"},"large":{"w":424,"h":407,"resize":"fit"}},"source_status_id":663348892721807360,"source_status_id_str":"663348892721807360","source_user_id":184363884,"source_user_id_str":"184363884"},{"id":663348886367440897,"id_str":"663348886367440897","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTC4VEAED_jA.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTC4VEAED_jA.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":298,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":651,"h":324,"resize":"fit"}},"source_status_id":663348892721807360,"source_status_id_str":"663348892721807360","source_user_id":184363884,"source_user_id_str":"184363884"},{"id":663348891610279936,"id_str":"663348891610279936","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTWaUcAADFOX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTWaUcAADFOX.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":354,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":624,"h":369,"resize":"fit"}},"source_status_id":663348892721807360,"source_status_id_str":"663348892721807360","source_user_id":184363884,"source_user_id_str":"184363884"},{"id":663348886367420416,"id_str":"663348886367420416","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwTC4UwAAzIdz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwTC4UwAAzIdz.png","url":"https:\/\/t.co\/gnr066uoYk","display_url":"pic.twitter.com\/gnr066uoYk","expanded_url":"http:\/\/twitter.com\/instiz\/status\/663348892721807360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":425,"h":251,"resize":"fit"},"small":{"w":340,"h":200,"resize":"fit"},"large":{"w":425,"h":251,"resize":"fit"}},"source_status_id":663348892721807360,"source_status_id_str":"663348892721807360","source_user_id":184363884,"source_user_id_str":"184363884"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080063657"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803866112,"id_str":"663728009803866112","text":"RT @Daleington9: Unbelievable racism. https:\/\/t.co\/SAtbOQYoe1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":628774196,"id_str":"628774196","name":"_","screen_name":"_ykxnvxl","location":"Surrey","url":null,"description":null,"protected":false,"verified":false,"followers_count":307,"friends_count":403,"listed_count":0,"favourites_count":4337,"statuses_count":1522,"created_at":"Fri Jul 06 22:26:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641750848339595264\/x9Uryf9D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641750848339595264\/x9Uryf9D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/628774196\/1430128584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:28:32 +0000 2015","id":663498364726702082,"id_str":"663498364726702082","text":"Unbelievable racism. https:\/\/t.co\/SAtbOQYoe1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":196730233,"id_str":"196730233","name":"Dale","screen_name":"Daleington9","location":"Liverpool","url":"http:\/\/www.instagram.com\/Daleington9","description":"Jack of all trades, Master of none.\n Peace&Love \u270c","protected":false,"verified":false,"followers_count":7358,"friends_count":4205,"listed_count":38,"favourites_count":25282,"statuses_count":5875,"created_at":"Wed Sep 29 19:44:45 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"023149","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650074954533355520\/Zm8PRenF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650074954533355520\/Zm8PRenF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/196730233\/1447032528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3188,"favorite_count":1815,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663498331964968960,"id_str":"663498331964968960","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":768,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663498331964968960,"id_str":"663498331964968960","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":768,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}}},{"id":663498342085849090,"id_str":"663498342085849090","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4Og0WcAI_rCL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4Og0WcAI_rCL.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":728,"resize":"fit"},"small":{"w":340,"h":413,"resize":"fit"}}},{"id":663498354874298368,"id_str":"663498354874298368","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4PQdWsAAT-9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4PQdWsAAT-9J.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":705,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1203,"resize":"fit"},"small":{"w":340,"h":399,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Daleington9","name":"Dale","id":196730233,"id_str":"196730233","indices":[3,15]}],"symbols":[],"media":[{"id":663498331964968960,"id_str":"663498331964968960","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":768,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}},"source_status_id":663498364726702082,"source_status_id_str":"663498364726702082","source_user_id":196730233,"source_user_id_str":"196730233"}]},"extended_entities":{"media":[{"id":663498331964968960,"id_str":"663498331964968960","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4N7HWEAAVNq2.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":768,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}},"source_status_id":663498364726702082,"source_status_id_str":"663498364726702082","source_user_id":196730233,"source_user_id_str":"196730233"},{"id":663498342085849090,"id_str":"663498342085849090","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4Og0WcAI_rCL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4Og0WcAI_rCL.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1243,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":728,"resize":"fit"},"small":{"w":340,"h":413,"resize":"fit"}},"source_status_id":663498364726702082,"source_status_id_str":"663498364726702082","source_user_id":196730233,"source_user_id_str":"196730233"},{"id":663498354874298368,"id_str":"663498354874298368","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4PQdWsAAT-9J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4PQdWsAAT-9J.jpg","url":"https:\/\/t.co\/SAtbOQYoe1","display_url":"pic.twitter.com\/SAtbOQYoe1","expanded_url":"http:\/\/twitter.com\/Daleington9\/status\/663498364726702082\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":705,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1203,"resize":"fit"},"small":{"w":340,"h":399,"resize":"fit"}},"source_status_id":663498364726702082,"source_status_id_str":"663498364726702082","source_user_id":196730233,"source_user_id_str":"196730233"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795342336,"id_str":"663728009795342336","text":"RT @ore_toku_: \u80a1\u9593\u306e\u683c\u5dee\u793e\u4f1a https:\/\/t.co\/JnkfXgmFOR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1477259713,"id_str":"1477259713","name":"\u3057\u308d\u3083","screen_name":"shhiipo","location":null,"url":null,"description":"\u30dd\u30c3\u30d7\u30b3\u30fc\u30f3\u304c\u306f\u3058\u3051\u308b\u3088\u3046\u306b\u5bff\u4e00","protected":false,"verified":false,"followers_count":57,"friends_count":80,"listed_count":3,"favourites_count":2362,"statuses_count":16312,"created_at":"Sun Jun 02 12:51:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656331110385762304\/1yrdErAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656331110385762304\/1yrdErAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1477259713\/1444562931","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:50:43 +0000 2015","id":663639846913622016,"id_str":"663639846913622016","text":"\u80a1\u9593\u306e\u683c\u5dee\u793e\u4f1a https:\/\/t.co\/JnkfXgmFOR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2462497010,"id_str":"2462497010","name":"\u30b5\u30d3","screen_name":"ore_toku_","location":null,"url":null,"description":"\u65b0\u6771\u306f\u771f\u7406 \u6700\u8fd1\u30c7\u30ec\u30b9\u30c6\u306e\u545f\u304d\u591a\u3057 \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u4e0b\u3055\u3044\u2192http:\/\/twpf.jp\/ore_toku_","protected":false,"verified":false,"followers_count":91,"friends_count":61,"listed_count":8,"favourites_count":6365,"statuses_count":15195,"created_at":"Fri Apr 25 01:49:54 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656149967237545985\/UNU-9dCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656149967237545985\/UNU-9dCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2462497010\/1421674777","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":748,"favorite_count":580,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663639837786771456,"id_str":"663639837786771456","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":493,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":493,"h":434,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663639837786771456,"id_str":"663639837786771456","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":493,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":493,"h":434,"resize":"fit"}}},{"id":663639837921034240,"id_str":"663639837921034240","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46p4UwAAXDIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46p4UwAAXDIZ.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":981,"h":897,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ore_toku_","name":"\u30b5\u30d3","id":2462497010,"id_str":"2462497010","indices":[3,13]}],"symbols":[],"media":[{"id":663639837786771456,"id_str":"663639837786771456","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":493,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":493,"h":434,"resize":"fit"}},"source_status_id":663639846913622016,"source_status_id_str":"663639846913622016","source_user_id":2462497010,"source_user_id_str":"2462497010"}]},"extended_entities":{"media":[{"id":663639837786771456,"id_str":"663639837786771456","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46pYUEAAqimf.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":299,"resize":"fit"},"medium":{"w":493,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":493,"h":434,"resize":"fit"}},"source_status_id":663639846913622016,"source_status_id_str":"663639846913622016","source_user_id":2462497010,"source_user_id_str":"2462497010"},{"id":663639837921034240,"id_str":"663639837921034240","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW46p4UwAAXDIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW46p4UwAAXDIZ.jpg","url":"https:\/\/t.co\/JnkfXgmFOR","display_url":"pic.twitter.com\/JnkfXgmFOR","expanded_url":"http:\/\/twitter.com\/ore_toku_\/status\/663639846913622016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":981,"h":897,"resize":"fit"}},"source_status_id":663639846913622016,"source_status_id_str":"663639846913622016","source_user_id":2462497010,"source_user_id_str":"2462497010"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009778626561,"id_str":"663728009778626561","text":"RT @Detroit_Buzz: Everyone can make a difference! Here's what a motivated 15 year old is doing. https:\/\/t.co\/UcSgHAboAF #Detroit https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2844152837,"id_str":"2844152837","name":"Culture Lab Detroit","screen_name":"CultureLabDET","location":"Detroit, MI","url":"http:\/\/culturelabdetroit.org\/","description":"A catalyst for conversations and collaborations to stimulate deeper connections between Detroit and the international design community. September 10+11, 2015.","protected":false,"verified":false,"followers_count":271,"friends_count":536,"listed_count":9,"favourites_count":265,"statuses_count":274,"created_at":"Sat Oct 25 19:48:38 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622646291709857792\/tCdrzi21_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622646291709857792\/tCdrzi21_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2844152837\/1444237411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:28 +0000 2015","id":663725345292554244,"id_str":"663725345292554244","text":"Everyone can make a difference! Here's what a motivated 15 year old is doing. https:\/\/t.co\/UcSgHAboAF #Detroit https:\/\/t.co\/YFh8TJgkt7","source":"\u003ca href=\"http:\/\/www.GroupTweet.com\" rel=\"nofollow\"\u003eGroupTweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":252934694,"id_str":"252934694","name":"Detroit Buzz","screen_name":"Detroit_Buzz","location":"Detroit MI","url":"http:\/\/breakingdetroitnews.com\/","description":"Curating the best media feeds in Detroit. A city in http:\/\/TheBreakingNewsNetwork.com, a community service media network supporting civic causes and local arts","protected":false,"verified":false,"followers_count":1294,"friends_count":941,"listed_count":68,"favourites_count":17,"statuses_count":163912,"created_at":"Wed Feb 16 06:22:04 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/206434168\/detroit-buildings.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/206434168\/detroit-buildings.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652355965283516416\/kVj-N_Yx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652355965283516416\/kVj-N_Yx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252934694\/1403314037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Detroit","indices":[102,110]}],"urls":[{"url":"https:\/\/t.co\/UcSgHAboAF","expanded_url":"http:\/\/blog.thedetroithub.com\/2015\/11\/08\/motivated-15-year-old-heads-out-to-help-clean-up-old-redford\/","display_url":"blog.thedetroithub.com\/2015\/11\/08\/mot\u2026","indices":[78,101]},{"url":"https:\/\/t.co\/YFh8TJgkt7","expanded_url":"http:\/\/twtd.by\/BedrockPR\/bN1RSRu30o8","display_url":"twtd.by\/BedrockPR\/bN1R\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Detroit","indices":[120,128]}],"urls":[{"url":"https:\/\/t.co\/UcSgHAboAF","expanded_url":"http:\/\/blog.thedetroithub.com\/2015\/11\/08\/motivated-15-year-old-heads-out-to-help-clean-up-old-redford\/","display_url":"blog.thedetroithub.com\/2015\/11\/08\/mot\u2026","indices":[96,119]},{"url":"https:\/\/t.co\/YFh8TJgkt7","expanded_url":"http:\/\/twtd.by\/BedrockPR\/bN1RSRu30o8","display_url":"twtd.by\/BedrockPR\/bN1R\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Detroit_Buzz","name":"Detroit Buzz","id":252934694,"id_str":"252934694","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063658"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009778626560,"id_str":"663728009778626560","text":"RT @TODAYshow: Biggest crowd of the day greets @alroker in Casper, Wyoming! #Rokerthon https:\/\/t.co\/KmHic1G4M1","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19001855,"id_str":"19001855","name":"Visit Wyoming","screen_name":"wyomingtourism","location":"Wyoming","url":"http:\/\/www.wyomingtourism.org","description":"Hiking, Rafting and outdoor adventure are all found in Wyoming. Home of Yellowstone & Grand Teton National Parks. E-Newsletter Signup: http:\/\/t.co\/3XTBiicnON","protected":false,"verified":false,"followers_count":15458,"friends_count":4100,"listed_count":550,"favourites_count":161,"statuses_count":5975,"created_at":"Wed Jan 14 23:39:15 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FDFDFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593863022768050176\/6oCZYPMq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593863022768050176\/6oCZYPMq.jpg","profile_background_tile":false,"profile_link_color":"DD3640","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0B7E9","profile_text_color":"1C085E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461880938234777600\/kzTlPMoT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461880938234777600\/kzTlPMoT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19001855\/1430759812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:55:39 +0000 2015","id":663580686603841536,"id_str":"663580686603841536","text":"Biggest crowd of the day greets @alroker in Casper, Wyoming! #Rokerthon https:\/\/t.co\/KmHic1G4M1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7744592,"id_str":"7744592","name":"TODAY","screen_name":"TODAYshow","location":"Studio 1A","url":"http:\/\/TODAY.com","description":"America's favorite morning show | Snapchat: today_show","protected":false,"verified":true,"followers_count":3135045,"friends_count":8175,"listed_count":18060,"favourites_count":7435,"statuses_count":71985,"created_at":"Thu Jul 26 19:56:22 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF9805","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000075651649\/5556d4cd58e5926e835a0ba20050e466.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000075651649\/5556d4cd58e5926e835a0ba20050e466.jpeg","profile_background_tile":false,"profile_link_color":"E68A00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFAED","profile_text_color":"525252","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638194426611941376\/pOJoKl-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638194426611941376\/pOJoKl-f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7744592\/1418328379","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":95,"entities":{"hashtags":[{"text":"Rokerthon","indices":[61,71]}],"urls":[],"user_mentions":[{"screen_name":"alroker","name":"Al Roker","id":16379018,"id_str":"16379018","indices":[32,40]}],"symbols":[],"media":[{"id":663580673043599360,"id_str":"663580673043599360","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","url":"https:\/\/t.co\/KmHic1G4M1","display_url":"pic.twitter.com\/KmHic1G4M1","expanded_url":"http:\/\/twitter.com\/TODAYshow\/status\/663580686603841536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663580673043599360,"id_str":"663580673043599360","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","url":"https:\/\/t.co\/KmHic1G4M1","display_url":"pic.twitter.com\/KmHic1G4M1","expanded_url":"http:\/\/twitter.com\/TODAYshow\/status\/663580686603841536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Rokerthon","indices":[76,86]}],"urls":[],"user_mentions":[{"screen_name":"TODAYshow","name":"TODAY","id":7744592,"id_str":"7744592","indices":[3,13]},{"screen_name":"alroker","name":"Al Roker","id":16379018,"id_str":"16379018","indices":[47,55]}],"symbols":[],"media":[{"id":663580673043599360,"id_str":"663580673043599360","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","url":"https:\/\/t.co\/KmHic1G4M1","display_url":"pic.twitter.com\/KmHic1G4M1","expanded_url":"http:\/\/twitter.com\/TODAYshow\/status\/663580686603841536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663580686603841536,"source_status_id_str":"663580686603841536","source_user_id":7744592,"source_user_id_str":"7744592"}]},"extended_entities":{"media":[{"id":663580673043599360,"id_str":"663580673043599360","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWDGziUEAA3nTi.jpg","url":"https:\/\/t.co\/KmHic1G4M1","display_url":"pic.twitter.com\/KmHic1G4M1","expanded_url":"http:\/\/twitter.com\/TODAYshow\/status\/663580686603841536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663580686603841536,"source_status_id_str":"663580686603841536","source_user_id":7744592,"source_user_id_str":"7744592"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063658"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795383296,"id_str":"663728009795383296","text":"RT @emi1127swimmer: \u660e\u65e5\u306f\uff14\u6642\u9593\u3060\u304b\u3089\u9811\u5f35\u308d\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190753080,"id_str":"3190753080","name":"\u304a\u30fc\u304c\u30fc\u305f\u30fc\u3044\u3064\u304d","screen_name":"1gHqaSnV9V9434p","location":null,"url":null,"description":"\u795e\u5948\u5dddswimmer\/\u76f8\u6a21\u539fDC\/\u5354\u6804\u3060\u3044\u3059\u304d\u2661\/\u308f\u304b\u3060\u3044\u3059\u304d\u2661\/\u6a4b\u672c\u7406\u54b2\u4e00\u7dd2\u306b\u3044\u308b\u3068\u304a\u304b\u3057\u304f\u306a\u308b\u3051\u3069\u5927\u597d\u304d\u2661\/\u3042\u3084\u306e\u5927\u597d\u304d\u2661\/\u6d77\u306e\u4ef2\u9593\u3060\u3044\u3059\u304d\u2661\/\u65ed\u4e2d\/\u7dd1\u30d6\u30ed\u5927\u597d\u304d\/\u65ed\u5c0f\u2192\u65ed\u4e2d14HR\u219228HR\u5927\u597d\u304d\/\u6587\u5316\u59d4\u54e1\u9577\/ARASHIBIGlove\u2661\/followme\u2661","protected":false,"verified":false,"followers_count":332,"friends_count":325,"listed_count":1,"favourites_count":6332,"statuses_count":1982,"created_at":"Sun May 10 13:07:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662844276615680000\/W238KVly_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662844276615680000\/W238KVly_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190753080\/1446954009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:16 +0000 2015","id":663726805061275648,"id_str":"663726805061275648","text":"\u660e\u65e5\u306f\uff14\u6642\u9593\u3060\u304b\u3089\u9811\u5f35\u308d\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3104458416,"id_str":"3104458416","name":"\u67f4 \u7530 \u7b11","screen_name":"emi1127swimmer","location":"\u65e5\u672c","url":null,"description":"\u6c34\u6cf3\u3084\u3063\u3066\u307e\u30fc\u3059\uff01\uff01 \/ \u91d1\u6ca2\u4e2d \/ OCEAN \/ \u81ea\u7531\u5f62 \/ \u795e\u5948\u5dddswimmer \/ \u53d7\u9a13\u751f \/ \u653e\u7f6e\u304e\u307f \/ \u30ea\u30e0\u3089\u306a\u3044\u3067\u6ce3","protected":false,"verified":false,"followers_count":248,"friends_count":172,"listed_count":0,"favourites_count":501,"statuses_count":1672,"created_at":"Mon Mar 23 07:58:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663663389030268928\/9Ypet5OM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663663389030268928\/9Ypet5OM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104458416\/1446900613","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emi1127swimmer","name":"\u67f4 \u7530 \u7b11","id":3104458416,"id_str":"3104458416","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009791193088,"id_str":"663728009791193088","text":"@SLH_RYO \n\u304a\u9858\u3044\u3057\u307e\u3059\uff01\n(\u250c\u00b4\uff9f\u03c9\uff9f)\u250c \uff71\uff81\uff6e\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722053409705984,"in_reply_to_status_id_str":"663722053409705984","in_reply_to_user_id":320665685,"in_reply_to_user_id_str":"320665685","in_reply_to_screen_name":"SLH_RYO","user":{"id":1496643716,"id_str":"1496643716","name":"\u9234(\u308c\u3044)@\u30c4\u30a4\u6e1b\u4e2d","screen_name":"reirei_misa","location":null,"url":null,"description":"\u7537\u6027\u58f0\u512a\u3001\u6b4c\u3063\u3066\u307f\u305f\u3001\u8e0a\u3063\u3066\u307f\u305f\u3001\u6f14\u594f\u3057\u3066\u307f\u305f\u3001\u751f\u653e\u9001\u7b49\u597d\u304d\u3067\u3059\u3002\u751f\u4e3b\u3084\u3063\u3066\u307e\u3057\u305f\u3002\u305d\u306e\u3046\u3061\u653e\u9001\u518d\u958b\u3067\u304d\u305f\u3089\u3044\u3044\u306a\u2026 http:\/\/com.nicovideo.jp\/community\/co20\u2026","protected":false,"verified":false,"followers_count":316,"friends_count":445,"listed_count":4,"favourites_count":1650,"statuses_count":4715,"created_at":"Sun Jun 09 21:19:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000418915666\/9633dd47fab91dc7dd09d24e97052eff_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000418915666\/9633dd47fab91dc7dd09d24e97052eff_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1496643716\/1442526733","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SLH_RYO","name":"SLH\u306eRYO@\u30cf\u30c3\u30d4\u30fc\u30dc\u30fc\u30a4\u2721","id":320665685,"id_str":"320665685","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063661"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009808097280,"id_str":"663728009808097280","text":"RT @FreddyAmazin: Who else cried \ud83d\ude2d https:\/\/t.co\/v8eZZeOMDb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3180155161,"id_str":"3180155161","name":"abbigail","screen_name":"lewisabbi2","location":null,"url":null,"description":"if you can't shoot it race it sleep w\/ it or eat it, you just don't need it #dcoestrongand6ohhon","protected":false,"verified":false,"followers_count":525,"friends_count":412,"listed_count":3,"favourites_count":5879,"statuses_count":5271,"created_at":"Thu Apr 30 02:21:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660084185806348289\/h5vaO7Tm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660084185806348289\/h5vaO7Tm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3180155161\/1445977401","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:05 +0000 2015","id":663716443230494721,"id_str":"663716443230494721","text":"Who else cried \ud83d\ude2d https:\/\/t.co\/v8eZZeOMDb","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61003804,"id_str":"61003804","name":"FREDDY","screen_name":"FreddyAmazin","location":"San Diego, CA","url":"http:\/\/FREDDYAMAZIN.COM","description":"I love food more than people & that's all u need to know. I tweet pics, quotes, jokes, & advice. Add me on snapchat: FredAmazin freddycabrales@freddyamazin.com","protected":false,"verified":true,"followers_count":3686586,"friends_count":623952,"listed_count":12078,"favourites_count":80510,"statuses_count":99111,"created_at":"Tue Jul 28 20:02:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_tile":false,"profile_link_color":"A16CD8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61003804\/1441851464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1456,"favorite_count":2483,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663716439963115524,"id_str":"663716439963115524","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663716441363865600,"id_str":"663716441363865600","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FreddyAmazin","name":"FREDDY","id":61003804,"id_str":"61003804","indices":[3,16]}],"symbols":[],"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"}]},"extended_entities":{"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"},{"id":663716439963115524,"id_str":"663716439963115524","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"},{"id":663716441363865600,"id_str":"663716441363865600","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009774563328,"id_str":"663728009774563328","text":"RT @franciscoargot1: As\u00ed cerr\u00f3 en el Mun. Zamora el #EnsayoParaLaVictoria juntos vamos a la Victoria Perfecta @TareckPSUV @ElvisAmoroso h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451072330,"id_str":"451072330","name":"franc vega","screen_name":"el_santo_67","location":null,"url":null,"description":"cat\u00f3lico patriota bolivariano y 100 por 100 chavista","protected":false,"verified":false,"followers_count":957,"friends_count":1140,"listed_count":2,"favourites_count":680,"statuses_count":9060,"created_at":"Sat Dec 31 00:50:17 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575053581574873090\/HQ5fdlcf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575053581574873090\/HQ5fdlcf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451072330\/1419204653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:48 +0000 2015","id":663716370559930368,"id_str":"663716370559930368","text":"As\u00ed cerr\u00f3 en el Mun. Zamora el #EnsayoParaLaVictoria juntos vamos a la Victoria Perfecta @TareckPSUV @ElvisAmoroso https:\/\/t.co\/he6MTwoJsb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2511617566,"id_str":"2511617566","name":"Francisco Argote","screen_name":"franciscoargot1","location":null,"url":null,"description":"MILITANTE DEL LEGADO DE CHAVEZ Vocero de la region central del CFG y Concejal PSUV del Municipio Jose Angel Lamas Edo. Aragua","protected":false,"verified":false,"followers_count":277,"friends_count":33,"listed_count":2,"favourites_count":126,"statuses_count":1347,"created_at":"Sun Apr 27 02:00:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464112749145255936\/RI5xY6Uj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464112749145255936\/RI5xY6Uj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2511617566\/1422231057","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"EnsayoParaLaVictoria","indices":[32,53]}],"urls":[],"user_mentions":[{"screen_name":"TareckPSUV","name":"Tareck El Aissami","id":132570884,"id_str":"132570884","indices":[91,102]},{"screen_name":"ElvisAmoroso","name":"ELVIS AMOROSO ","id":593357058,"id_str":"593357058","indices":[103,116]}],"symbols":[],"media":[{"id":663716296362754048,"id_str":"663716296362754048","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","url":"https:\/\/t.co\/he6MTwoJsb","display_url":"pic.twitter.com\/he6MTwoJsb","expanded_url":"http:\/\/twitter.com\/franciscoargot1\/status\/663716370559930368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716296362754048,"id_str":"663716296362754048","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","url":"https:\/\/t.co\/he6MTwoJsb","display_url":"pic.twitter.com\/he6MTwoJsb","expanded_url":"http:\/\/twitter.com\/franciscoargot1\/status\/663716370559930368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnsayoParaLaVictoria","indices":[53,74]}],"urls":[],"user_mentions":[{"screen_name":"franciscoargot1","name":"Francisco Argote","id":2511617566,"id_str":"2511617566","indices":[3,19]},{"screen_name":"TareckPSUV","name":"Tareck El Aissami","id":132570884,"id_str":"132570884","indices":[112,123]},{"screen_name":"ElvisAmoroso","name":"ELVIS AMOROSO ","id":593357058,"id_str":"593357058","indices":[124,137]}],"symbols":[],"media":[{"id":663716296362754048,"id_str":"663716296362754048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","url":"https:\/\/t.co\/he6MTwoJsb","display_url":"pic.twitter.com\/he6MTwoJsb","expanded_url":"http:\/\/twitter.com\/franciscoargot1\/status\/663716370559930368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716370559930368,"source_status_id_str":"663716370559930368","source_user_id":2511617566,"source_user_id_str":"2511617566"}]},"extended_entities":{"media":[{"id":663716296362754048,"id_str":"663716296362754048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-dHxXAAAK_qM.jpg","url":"https:\/\/t.co\/he6MTwoJsb","display_url":"pic.twitter.com\/he6MTwoJsb","expanded_url":"http:\/\/twitter.com\/franciscoargot1\/status\/663716370559930368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663716370559930368,"source_status_id_str":"663716370559930368","source_user_id":2511617566,"source_user_id_str":"2511617566"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080063657"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795526656,"id_str":"663728009795526656","text":"Decisions on restoration of #everglades must incorporate protection for American crocodiles https:\/\/t.co\/cU2je2tYty https:\/\/t.co\/HqPZbolhzp","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1701904590,"id_str":"1701904590","name":"Earth Quake","screen_name":"EarthQuake_glob","location":"World ","url":null,"description":"GEO-tagged world earthquakes magnitude 4.5+ and tsunami warnings. Dynamic avatar shows last earthquake. Sources: USGS, NOAA, GEOFON. (terremotos)","protected":false,"verified":false,"followers_count":195,"friends_count":0,"listed_count":14,"favourites_count":6266,"statuses_count":6911,"created_at":"Mon Aug 26 13:29:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000363924798\/719eb7fd42c28fba7e1aaa5500d8f35b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000363924798\/719eb7fd42c28fba7e1aaa5500d8f35b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1701904590\/1377524729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"everglades","indices":[28,39]}],"urls":[{"url":"https:\/\/t.co\/cU2je2tYty","expanded_url":"http:\/\/on.doi.gov\/1SDlvAK","display_url":"on.doi.gov\/1SDlvAK","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663722225418248192,"id_str":"663722225418248192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","url":"https:\/\/t.co\/HqPZbolhzp","display_url":"pic.twitter.com\/HqPZbolhzp","expanded_url":"http:\/\/twitter.com\/USGS\/status\/663727783311380481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":500,"h":333,"resize":"fit"},"large":{"w":500,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727783311380481,"source_status_id_str":"663727783311380481","source_user_id":14505838,"source_user_id_str":"14505838"}]},"extended_entities":{"media":[{"id":663722225418248192,"id_str":"663722225418248192","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD2POWIAA-gls.jpg","url":"https:\/\/t.co\/HqPZbolhzp","display_url":"pic.twitter.com\/HqPZbolhzp","expanded_url":"http:\/\/twitter.com\/USGS\/status\/663727783311380481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"medium":{"w":500,"h":333,"resize":"fit"},"large":{"w":500,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727783311380481,"source_status_id_str":"663727783311380481","source_user_id":14505838,"source_user_id_str":"14505838"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009782824960,"id_str":"663728009782824960","text":"RT @Chymhongz: \u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e04\u0e32\u0e41\u0e23\u0e01\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e08\u0e32\u0e01 \"Alice Through the Looking Glass\" \u0e20\u0e32\u0e04\u0e15\u0e48\u0e2d\u0e02\u0e2d\u0e07 Alice in Wonderland \u0e40\u0e02\u0e49\u0e32\u0e44\u0e17\u0e22\u0e40\u0e23\u0e32 26 \u0e1e.\u0e04.\u0e1b\u0e35\u0e2b\u0e19\u0e49\u0e32 https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2653943917,"id_str":"2653943917","name":".NT\u2661","screen_name":"nan_nedchanok","location":null,"url":null,"description":"SSYT88","protected":false,"verified":false,"followers_count":60,"friends_count":544,"listed_count":0,"favourites_count":1404,"statuses_count":7916,"created_at":"Thu Jul 17 14:30:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656438826747871232\/elFXP3K6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656438826747871232\/elFXP3K6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2653943917\/1446894274","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:59:28 +0000 2015","id":663173963040747520,"id_str":"663173963040747520","text":"\u0e42\u0e1b\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e04\u0e32\u0e41\u0e23\u0e01\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e25\u0e48\u0e32\u0e2a\u0e38\u0e14\u0e08\u0e32\u0e01 \"Alice Through the Looking Glass\" \u0e20\u0e32\u0e04\u0e15\u0e48\u0e2d\u0e02\u0e2d\u0e07 Alice in Wonderland \u0e40\u0e02\u0e49\u0e32\u0e44\u0e17\u0e22\u0e40\u0e23\u0e32 26 \u0e1e.\u0e04.\u0e1b\u0e35\u0e2b\u0e19\u0e49\u0e32 https:\/\/t.co\/VDbt5QhoaL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1395426846,"id_str":"1395426846","name":"\u0e1e\u0e35\u0e48\u0e2b\u0e21\u0e2d\u0e07","screen_name":"Chymhongz","location":"\u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35 \u0e04\u0e27\u0e32\u0e21\u0e21\u0e31\u0e48\u0e07\u0e21\u0e35\u0e01\u0e47\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e31\u0e19","url":"http:\/\/weibo.com\/Chymhongz","description":"\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23\u0e1a\u0e31\u0e19\u0e40\u0e17\u0e34\u0e07\u0e08\u0e32\u0e01\u0e17\u0e31\u0e48\u0e27\u0e42\u0e25\u0e01,\u0e04\u0e27\u0e32\u0e21\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e43\u0e2b\u0e27\u0e02\u0e2d\u0e07\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e04\u0e19\u0e14\u0e31\u0e07,\u0e21\u0e31\u0e07\u0e07\u0e30,\u0e2b\u0e19\u0e31\u0e07,\u0e25\u0e30\u0e04\u0e23,\u0e40\u0e1e\u0e25\u0e07,\u0e01\u0e35\u0e2c\u0e32 \u0e17\u0e31\u0e49\u0e07\u0e44\u0e17\u0e22\u0e40\u0e40\u0e25\u0e30\u0e15\u0e48\u0e32\u0e07\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28,\u0e15\u0e34\u0e48\u0e07\u0e17\u0e38\u0e01\u0e2a\u0e16\u0e32\u0e1a\u0e31\u0e19 \u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e17\u0e35\u0e40\u0e14\u0e47\u0e14\u0e40\u0e01\u0e23\u0e47\u0e14\u0e19\u0e48\u0e32\u0e23\u0e39\u0e49","protected":false,"verified":false,"followers_count":123878,"friends_count":168,"listed_count":54,"favourites_count":1294,"statuses_count":23368,"created_at":"Wed May 01 19:56:56 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0E8E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453966407210790912\/NLH_pUAQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453966407210790912\/NLH_pUAQ.jpeg","profile_background_tile":false,"profile_link_color":"1F83CF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639502160007290880\/tgD5-Px0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639502160007290880\/tgD5-Px0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1395426846\/1446392024","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4210,"favorite_count":291,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663173908963528704,"id_str":"663173908963528704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663173908963528704,"id_str":"663173908963528704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663173928064446465,"id_str":"663173928064446465","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRLIaU8AEa0nj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRLIaU8AEa0nj.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663173943788834816,"id_str":"663173943788834816","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRMC_UEAA8NdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRMC_UEAA8NdK.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663173960758988800,"id_str":"663173960758988800","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRNCNUEAAj4FO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRNCNUEAAj4FO.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Chymhongz","name":"\u0e1e\u0e35\u0e48\u0e2b\u0e21\u0e2d\u0e07","id":1395426846,"id_str":"1395426846","indices":[3,13]}],"symbols":[],"media":[{"id":663173908963528704,"id_str":"663173908963528704","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663173963040747520,"source_status_id_str":"663173963040747520","source_user_id":1395426846,"source_user_id_str":"1395426846"}]},"extended_entities":{"media":[{"id":663173908963528704,"id_str":"663173908963528704","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRKBQUEAA23dQ.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663173963040747520,"source_status_id_str":"663173963040747520","source_user_id":1395426846,"source_user_id_str":"1395426846"},{"id":663173928064446465,"id_str":"663173928064446465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRLIaU8AEa0nj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRLIaU8AEa0nj.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663173963040747520,"source_status_id_str":"663173963040747520","source_user_id":1395426846,"source_user_id_str":"1395426846"},{"id":663173943788834816,"id_str":"663173943788834816","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRMC_UEAA8NdK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRMC_UEAA8NdK.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663173963040747520,"source_status_id_str":"663173963040747520","source_user_id":1395426846,"source_user_id_str":"1395426846"},{"id":663173960758988800,"id_str":"663173960758988800","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQRNCNUEAAj4FO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQRNCNUEAAj4FO.jpg","url":"https:\/\/t.co\/VDbt5QhoaL","display_url":"pic.twitter.com\/VDbt5QhoaL","expanded_url":"http:\/\/twitter.com\/Chymhongz\/status\/663173963040747520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":700,"resize":"fit"},"small":{"w":340,"h":495,"resize":"fit"},"large":{"w":480,"h":700,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663173963040747520,"source_status_id_str":"663173963040747520","source_user_id":1395426846,"source_user_id_str":"1395426846"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080063659"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803862017,"id_str":"663728009803862017","text":"Before you reject someone's advice and assistance, just consider for a moment that they may have genuinely wanted to HELP you.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":176462613,"id_str":"176462613","name":".","screen_name":"Alhamdhulillaah","location":null,"url":"https:\/\/www.facebook.com\/islamifyofficial","description":"May whatever good come from this account be my salvation in the hereafter. May the bad from it be forgiven by the Most Merciful. Ameen","protected":false,"verified":false,"followers_count":352763,"friends_count":110,"listed_count":728,"favourites_count":2475,"statuses_count":69718,"created_at":"Mon Aug 09 16:14:54 +0000 2010","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577473483891867649\/QrRGjFOd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577473483891867649\/QrRGjFOd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/176462613\/1429351787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795362817,"id_str":"663728009795362817","text":"\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19 \u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19 \u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19 \u0e41\u0e25\u0e30\u0e01\u0e32\u0e23\u0e1a\u0e49\u0e32\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428081268,"id_str":"2428081268","name":"\u0e40\u0e1a\u0e27","screen_name":"Ntcpmrz","location":null,"url":null,"description":"ig: @nntcp Nantouchaporn \u25e1\u0308\u20dd","protected":false,"verified":false,"followers_count":730,"friends_count":235,"listed_count":2,"favourites_count":2470,"statuses_count":25066,"created_at":"Sat Apr 05 01:18:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663372959407407104\/H19QgkyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663372959407407104\/H19QgkyZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2428081268\/1443922678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009799704576,"id_str":"663728009799704576","text":"...\u0432\u043a\u0443\u0441\u043d\u044b\u0439 \u0438 \u043f\u0440\u043e\u0441\u0442\u043e\u0439 \u0440\u0435\u0446\u0435\u043f\u0442 \u043a\u0430\u0440\u0442\u043e\u0448\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0430\u0437\u0434\u043d\u0438\u0447\u043d\u043e\u0433\u043e \u0441\u0442\u043e\u043b\u0430!...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264695570,"id_str":"1264695570","name":"TroutmanClifton","screen_name":"TroutmanClifton","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":26,"listed_count":0,"favourites_count":0,"statuses_count":28993,"created_at":"Wed Mar 13 15:14:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3682709114\/317f40fe3d631bcb662ebd563887913c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3682709114\/317f40fe3d631bcb662ebd563887913c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080063663"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009807958016,"id_str":"663728009807958016","text":"\u53ca\u5ddd\u309c\u2200\u309c\u5ddd\u3055\u3093\u306e\u80cc\u5f8c\u5927\u5b66\u751f\u306a\u3093\u3059\u304b\uff01\n\u305d\u3057\u3066\u674f\u5948\u304c14\u306e\u30cf\u30fc\u30d5\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3776277012,"id_str":"3776277012","name":"\u5f71\u5c71\u9cf6\u96c4","screen_name":"hqkage_tobio","location":"\u70cf\u91ce\u9ad8\u6821\/\u3069\u3063\u304b\u306e\u8ab0\u304b\u3055\u3093\u306e\u3068\u3053","url":null,"description":"\u30cf\u30a4\u30ad\u30e5\u30fc\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u3002\u5b8c\u74a7\u6c42\u3081\u308b\u3093\u306a\u3089\u56de\u308c\u53f3\u3060\u3002\u540c\u4f5c\u3001\u67f5\u8d8a\u5bfe\u5fdc\u3002\u4e00\u822c\u306f\u5bfe\u5fdc\u3067\u304d\u307e\u305b\u3093\u3002\u80cc\u5f8c\u57a2\u3082\u3042\u308b\u3093\u3067\u3001\u6c17\u306b\u306a\u3063\u305f\u3089\u3069\u3046\u305e\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3082\u5bfe\u5fdc\u3057\u307e\u305b\u3093\u3002\u539f\u4f5c\u3088\u308a\u7518\u3081\u3060\u3068\u601d\u3046\u3002\u90e8\u5c4b\u5e38\u6642\u89e3\u653e\u3002\u591a\u5c11\u30cd\u30bf\u52e2\u306b\u3082\u306a\u308c\u308b\u3002\u30ad\u30e3\u30e9\u5d29\u58ca\u3068\u304b\u3082\u3042\u308b\u304b\u3082\u306a\u3093\u3067\u3001\u3088\u308d\u3057\u304f\u30c3\u30b9\u3002\u533a\u5225\u540d\u2192\u9cf6\u96c4\n \n\u3054\u4e3b\u4eba\u2192@fwB3wqjmsIfGdDS","protected":false,"verified":false,"followers_count":89,"friends_count":85,"listed_count":6,"favourites_count":666,"statuses_count":7856,"created_at":"Sun Oct 04 02:22:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663011214960660480\/3oQLvUaq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663011214960660480\/3oQLvUaq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3776277012\/1443925580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009782894592,"id_str":"663728009782894592","text":"all connected","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":114033008,"id_str":"114033008","name":"vibesdealer","screen_name":"vibesdealer","location":"nj\/ny","url":"https:\/\/soundcloud.com\/vibesdealer","description":"instagram: @vibesdealer","protected":false,"verified":false,"followers_count":1175,"friends_count":645,"listed_count":13,"favourites_count":136,"statuses_count":7064,"created_at":"Sat Feb 13 21:50:01 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/410674720\/Northern_Lights_over_the_fjords.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/410674720\/Northern_Lights_over_the_fjords.jpg","profile_background_tile":true,"profile_link_color":"2DC4CF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"6293AD","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659727189731115008\/BOi6M9x6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659727189731115008\/BOi6M9x6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/114033008\/1417667912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063659"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009791143937,"id_str":"663728009791143937","text":"\ub7f0\ub2dd\ub9e8 \uc57d\uac04 \uc9c0\uae08 \ud0b9\uc2a4\ub9e8 \uad50\ud68c\uc52c\uac19\uc544","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232530925,"id_str":"232530925","name":"\ubcf4\ub77c\ubb34","screen_name":"boramoo","location":"instagram : @boramoo","url":"http:\/\/kimboramoo.blog.me","description":"\ubc34\ub4dc \ud540\ub780\ub4dc\uc0b0 \uc790\uc791\ub098\ubb34 @finnish_birch https:\/\/soundcloud.com\/finnishbirch","protected":false,"verified":false,"followers_count":1125,"friends_count":650,"listed_count":18,"favourites_count":2541,"statuses_count":47485,"created_at":"Fri Dec 31 12:16:45 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000036257173\/9a39c3cb67a159a0f912ccb14b6593c7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000036257173\/9a39c3cb67a159a0f912ccb14b6593c7.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661949342899527680\/-awRsbHY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661949342899527680\/-awRsbHY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232530925\/1446656744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080063661"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009808097281,"id_str":"663728009808097281","text":"More Porn HERE ---> https:\/\/t.co\/ptLOYQ3Iew OR https:\/\/t.co\/RiiyoTePue RT https:\/\/t.co\/C6CEeDLiKN","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3369395147,"id_str":"3369395147","name":"Porn Vines +18 [96K]","screen_name":"PornVines18","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":97431,"friends_count":55,"listed_count":512,"favourites_count":0,"statuses_count":12247,"created_at":"Fri Jul 10 15:52:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662555335786414080\/z__w4LI6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662555335786414080\/z__w4LI6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3369395147\/1446800462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ptLOYQ3Iew","expanded_url":"http:\/\/goo.gl\/bPXu7t","display_url":"goo.gl\/bPXu7t","indices":[23,46]},{"url":"https:\/\/t.co\/RiiyoTePue","expanded_url":"http:\/\/goo.gl\/gzMHp3","display_url":"goo.gl\/gzMHp3","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":651277718118502400,"id_str":"651277718118502400","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651277718118502400\/pu\/img\/BtMwOEiJwlLaJYmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651277718118502400\/pu\/img\/BtMwOEiJwlLaJYmD.jpg","url":"https:\/\/t.co\/C6CEeDLiKN","display_url":"pic.twitter.com\/C6CEeDLiKN","expanded_url":"http:\/\/twitter.com\/brucesolo1\/status\/651278288698998784\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":651278288698998784,"source_status_id_str":"651278288698998784","source_user_id":1074329112,"source_user_id_str":"1074329112"}]},"extended_entities":{"media":[{"id":651277718118502400,"id_str":"651277718118502400","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651277718118502400\/pu\/img\/BtMwOEiJwlLaJYmD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651277718118502400\/pu\/img\/BtMwOEiJwlLaJYmD.jpg","url":"https:\/\/t.co\/C6CEeDLiKN","display_url":"pic.twitter.com\/C6CEeDLiKN","expanded_url":"http:\/\/twitter.com\/brucesolo1\/status\/651278288698998784\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":651278288698998784,"source_status_id_str":"651278288698998784","source_user_id":1074329112,"source_user_id_str":"1074329112","video_info":{"aspect_ratio":[16,9],"duration_millis":19968,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/pl\/m8J8Oovr5dtrNVd7.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/vid\/640x360\/UAm8SZq96lclAIuH.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/vid\/1280x720\/h-iBPqViCuzuI002.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/pl\/m8J8Oovr5dtrNVd7.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/vid\/320x180\/o3JO6JY30mTpZ-1N.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651277718118502400\/pu\/vid\/640x360\/UAm8SZq96lclAIuH.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009812144129,"id_str":"663728009812144129","text":"@mika03162 \n\u3046\u3047\u3044\u3046\u3047\u3044\u3046\u3047\u3044\u3046\u3047\u3044\n\u4e00\u756a\u4e57\u308a\u301c\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663263946795683840,"in_reply_to_status_id_str":"663263946795683840","in_reply_to_user_id":3257643979,"in_reply_to_user_id_str":"3257643979","in_reply_to_screen_name":"mika03162","user":{"id":2814754476,"id_str":"2814754476","name":"\u5317\u5c71 \u3089\u3089\u3002 \u5e78\u305b\u306a\u6642\u3092\u3042\u308a\u304c\u3068\u3046","screen_name":"__Mitsutamaxxx","location":"\u7f8e\u7a42\u306e\u5de6\u96a3\u3002\u307e\u3044\u306e\u53f3\u96a3\u3002","url":null,"description":"99\u5e74\u7d44\/\u6a2a\u6d5c \u30ad\u30b9\u57a2\u4f5c\u308a\u307e\u3057\u305f\u2661 \u5317\u5c71\u5b8f\u5149\u2661\u2661\u2661\u85e4\u5317\u4fe1\u8005\u2661\u672c\u57a2\u261e@_eight8r \u611b\u65b9\u261e @mpjnvpmxejggtx \u261c\u304b\u3051\u3082\u3061\u7406\u89e3\u3042\u308b\u4eba\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01 \u30ad\u30b9\u62c5\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u2661\u2661\u2661 \u30d5\u30a9\u30ed\u30d0917%\u2661\u2661","protected":false,"verified":false,"followers_count":2388,"friends_count":2131,"listed_count":29,"favourites_count":20838,"statuses_count":10839,"created_at":"Wed Sep 17 11:41:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661213820128399360\/AL-a3czD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661213820128399360\/AL-a3czD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814754476\/1410954319","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mika03162","name":"\u30df\u30ab","id":3257643979,"id_str":"3257643979","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063666"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803763712,"id_str":"663728009803763712","text":"@amirahshafputra hahaha. Tunggu official announcement. Melodi Ahad ni. Hahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723489812090880,"in_reply_to_status_id_str":"663723489812090880","in_reply_to_user_id":39211803,"in_reply_to_user_id_str":"39211803","in_reply_to_screen_name":"amirahshafputra","user":{"id":77244382,"id_str":"77244382","name":"Ad\u00e1xis S\u00e1nchez","screen_name":"AdamIqball","location":"Celah ketiak isteri","url":null,"description":"Fa-biayyi alaa'i Rabbi kuma tukadzdzi ban","protected":false,"verified":false,"followers_count":370,"friends_count":345,"listed_count":1,"favourites_count":314,"statuses_count":26258,"created_at":"Fri Sep 25 15:56:50 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539807767658127360\/AYoNdM4z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539807767658127360\/AYoNdM4z_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77244382\/1372710041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amirahshafputra","name":"Amirah Najihah","id":39211803,"id_str":"39211803","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009807966208,"id_str":"663728009807966208","text":"@CharlesOrtega_ pasok ka bukas?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727904677736448,"in_reply_to_status_id_str":"663727904677736448","in_reply_to_user_id":2237757571,"in_reply_to_user_id_str":"2237757571","in_reply_to_screen_name":"CharlesOrtega_","user":{"id":2433968286,"id_str":"2433968286","name":"NOC","screen_name":"Maglanoc14","location":null,"url":null,"description":"Oinky your my everything without you im nothing. I just wanna say ILOVEYOU. NMT :)","protected":false,"verified":false,"followers_count":250,"friends_count":211,"listed_count":0,"favourites_count":1743,"statuses_count":7899,"created_at":"Tue Apr 08 17:25:55 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653039312175366144\/9nko0GUs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653039312175366144\/9nko0GUs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2433968286\/1445261753","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CharlesOrtega_","name":"\u2654","id":2237757571,"id_str":"2237757571","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803878400,"id_str":"663728009803878400","text":"Nada mejor que sentirse fresca despu\u00e9s de un ba\u00f1o con agua fr\u00eda.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2179234454,"id_str":"2179234454","name":"Ana \u2665","screen_name":"ana14belen","location":"Santiago del Estero","url":"http:\/\/instagram.com\/ana__gomez_","description":null,"protected":false,"verified":false,"followers_count":184,"friends_count":182,"listed_count":1,"favourites_count":227,"statuses_count":4833,"created_at":"Thu Nov 07 03:07:58 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"998844","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"998844","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660581737085468673\/rB4W69JJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660581737085468673\/rB4W69JJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2179234454\/1446329932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080063664"} +{"delete":{"status":{"id":663724033582592000,"id_str":"663724033582592000","user_id":1720599061,"user_id_str":"1720599061"},"timestamp_ms":"1447080063762"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795526657,"id_str":"663728009795526657","text":"Peshawar, Swat, Shangla, Dir, Chitral, Ghizar & Gird-o-Nawah Me Zalzale K Jhatke, Shiddat 5 Record, Gehrai 135 Kilo Meter Thi: @Azad_MediaPK","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1220409403,"id_str":"1220409403","name":"NEWS KI DUNYA","screen_name":"Azad_MediaPK","location":"Hyderabad (Sindh)","url":null,"description":"Get Free Urdu Breaking News, HeadLines & Sports Update On Your Mobile, Just Type,\r\n-\r\nFollow @Azad_MediaPK\r\n-\r\n& Send It To 40404.\r\nForward To All..","protected":false,"verified":false,"followers_count":8632,"friends_count":0,"listed_count":15,"favourites_count":0,"statuses_count":10414,"created_at":"Tue Feb 26 03:49:29 +0000 2013","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518704235790086144\/vA61Mbh__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518704235790086144\/vA61Mbh__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1220409403\/1409889492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Azad_MediaPK","name":"NEWS KI DUNYA","id":1220409403,"id_str":"1220409403","indices":[131,144]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803862018,"id_str":"663728009803862018","text":"Need #Realestate questions answered?\nQ & A Saturday \u2013 What is the 50% Rule for Rentals? \nhttps:\/\/t.co\/Kg4a964cRV \n#CreativeRealEstate","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22403869,"id_str":"22403869","name":"Shaun Reilly","screen_name":"shaun_reilly","location":"Boston","url":"http:\/\/masshomesale.com\/","description":"Father, husband, real estate investor, MA real estate agent and entrepreneur.","protected":false,"verified":false,"followers_count":1774,"friends_count":515,"listed_count":133,"favourites_count":420,"statuses_count":57572,"created_at":"Sun Mar 01 20:41:34 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000405","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/197435684\/RRE_Logo_Web_RGB_w-moto.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/197435684\/RRE_Logo_Web_RGB_w-moto.jpg","profile_background_tile":true,"profile_link_color":"000405","profile_sidebar_border_color":"000205","profile_sidebar_fill_color":"FC0015","profile_text_color":"030303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1245419856\/Me_and_Mady_at_Pikes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1245419856\/Me_and_Mady_at_Pikes_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22403869\/1408419887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Realestate","indices":[5,16]},{"text":"CreativeRealEstate","indices":[118,137]}],"urls":[{"url":"https:\/\/t.co\/Kg4a964cRV","expanded_url":"http:\/\/masshomesale.com\/2015\/06\/06\/q-a-saturday-what-is-the-50-rule-for-rentals\/","display_url":"masshomesale.com\/2015\/06\/06\/q-a\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009799720960,"id_str":"663728009799720960","text":"LMMM_CTR is online now. Status on https:\/\/t.co\/NXwpcBE3gS #vatsim #vmm","source":"\u003ca href=\"http:\/\/vmm.strausshome.org\/ng\/\" rel=\"nofollow\"\u003evmmbot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3542184257,"id_str":"3542184257","name":"Vatsim Mobile Mon","screen_name":"vmmbot","location":null,"url":"http:\/\/vmm.strausshome.org","description":"I'm tweeting all new ATC stations on Vatsim.","protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":39062,"created_at":"Fri Sep 04 06:57:36 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639875105334628353\/a9BPZvA7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639875105334628353\/a9BPZvA7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3542184257\/1446986743","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"vatsim","indices":[58,65]},{"text":"vmm","indices":[66,70]}],"urls":[{"url":"https:\/\/t.co\/NXwpcBE3gS","expanded_url":"http:\/\/vmm.strausshome.org\/ng\/atc\/callsign\/LMMM_CTR","display_url":"vmm.strausshome.org\/ng\/atc\/callsig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063663"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803886594,"id_str":"663728009803886594","text":"V\u00e3o passar o Show do Stewart Sukuma na STV\n\ud83d\udc83\ud83d\udc83\ud83d\udc83\ud83d\udc83 \ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1312831242,"id_str":"1312831242","name":"Leot\u00edcia.Helena","screen_name":"LeoticiaHelena","location":"Maputo ","url":null,"description":"\u2022 Justo A Mim Coube Ser Eu","protected":false,"verified":false,"followers_count":1213,"friends_count":418,"listed_count":3,"favourites_count":757,"statuses_count":22025,"created_at":"Fri Mar 29 06:43:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661245603846950913\/201YcnSF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661245603846950913\/201YcnSF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1312831242\/1368110087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080063664"} +{"delete":{"status":{"id":663724008420982784,"id_str":"663724008420982784","user_id":1720567592,"user_id_str":"1720567592"},"timestamp_ms":"1447080063755"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009803788288,"id_str":"663728009803788288","text":"#VERNON, NJ #Transportation #Job: Tractor Trailer Driver at UPS https:\/\/t.co\/fNMKWYSCiS #Jobs #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148607922,"id_str":"148607922","name":"TMJ-NJ Transport.","screen_name":"tmj_NJ_transp","location":"New Jersey","url":"http:\/\/tweetmyjobs.com","description":"Follow this account for geo-targeted Transportation job tweets in New Jersey Non-Metro from TweetMyJobs. Need help? Tweet us at @TweetMyJobs!","protected":false,"verified":false,"followers_count":327,"friends_count":281,"listed_count":18,"favourites_count":0,"statuses_count":299,"created_at":"Thu May 27 04:02:29 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315354199\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315354199\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"96BEDF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303680814\/Logo_tmj_new2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303680814\/Logo_tmj_new2b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148607922\/1349357104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[41.1958204,-74.4935913]},"coordinates":{"type":"Point","coordinates":[-74.4935913,41.1958204]},"place":{"id":"00436411737d0600","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00436411737d0600.json","place_type":"city","name":"Vernon","full_name":"Vernon, NJ","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.575051,41.160143],[-74.575051,41.244301],[-74.480677,41.244301],[-74.480677,41.160143]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VERNON","indices":[0,7]},{"text":"Transportation","indices":[12,27]},{"text":"Job","indices":[28,32]},{"text":"Jobs","indices":[88,93]},{"text":"Hiring","indices":[94,101]},{"text":"CareerArc","indices":[102,112]}],"urls":[{"url":"https:\/\/t.co\/fNMKWYSCiS","expanded_url":"http:\/\/bit.ly\/1QbK5HA","display_url":"bit.ly\/1QbK5HA","indices":[64,87]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063664"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009812144130,"id_str":"663728009812144130","text":"@Abanie_Jae ayyyyeee u have the clip?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725689892446208,"in_reply_to_status_id_str":"663725689892446208","in_reply_to_user_id":1969236445,"in_reply_to_user_id_str":"1969236445","in_reply_to_screen_name":"Abanie_Jae","user":{"id":46948569,"id_str":"46948569","name":"#9400D3","screen_name":"squarepegjam","location":"...terra incognita. ","url":null,"description":"insatiable thirst for more.","protected":false,"verified":false,"followers_count":862,"friends_count":525,"listed_count":26,"favourites_count":3464,"statuses_count":125099,"created_at":"Sat Jun 13 19:37:42 +0000 2009","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/675349117\/52597fab64a3f10966e84940e547eca0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/675349117\/52597fab64a3f10966e84940e547eca0.jpeg","profile_background_tile":false,"profile_link_color":"C34CEB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D589EC","profile_text_color":"710E36","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660146686476464129\/CD5naRkU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660146686476464129\/CD5naRkU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46948569\/1366610978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Abanie_Jae","name":"AhBayKnee","id":1969236445,"id_str":"1969236445","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063666"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009787101184,"id_str":"663728009787101184","text":"You never know what is going to change your perception of anything.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276950570,"id_str":"276950570","name":"Eggs.Smokes.Ex.","screen_name":"EggsSmokesEx","location":"MA ","url":"http:\/\/eggssmokesex.wordpress.com\/how-do-you-like-your-eggs\/","description":"Blogging on My Modern Family and Coping with Addictions. http:\/\/EggsSmokesEx.wordpress.com http:\/\/Instagram.com\/eggssmokesex","protected":false,"verified":false,"followers_count":1525,"friends_count":1988,"listed_count":66,"favourites_count":2869,"statuses_count":54429,"created_at":"Mon Apr 04 12:10:50 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528524997\/eggs_background__mn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528524997\/eggs_background__mn.jpg","profile_background_tile":true,"profile_link_color":"A8930D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548466185486884867\/IRQr-cWb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548466185486884867\/IRQr-cWb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276950570\/1407527204","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063660"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009774501888,"id_str":"663728009774501888","text":"@HighPayzh @RedDjak @SparkyyyDesigns @dZResurge_ =)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725298786172928,"in_reply_to_status_id_str":"663725298786172928","in_reply_to_user_id":3579570674,"in_reply_to_user_id_str":"3579570674","in_reply_to_screen_name":"HighPayzh","user":{"id":3513065657,"id_str":"3513065657","name":"Nexus Dxbzi\u2122 #RedDRC","screen_name":"DxbziFFA","location":"Brasil","url":"https:\/\/www.youtube.com\/c\/FineDxbziTM","description":"Co-Lead For @VultarReturns ... Designer For @TheFineFaction\nPowered By:@NoScopeGlasses @CinchGaming.Use Code #Dxbzi For 5% Discount Inspiration:@SoarCubn @Agony","protected":false,"verified":false,"followers_count":612,"friends_count":492,"listed_count":3,"favourites_count":7638,"statuses_count":372,"created_at":"Tue Sep 01 13:49:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662584526607130624\/IuFGoz-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662584526607130624\/IuFGoz-N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513065657\/1444049737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HighPayzh","name":"dZ Payzh - Leader","id":3579570674,"id_str":"3579570674","indices":[0,10]},{"screen_name":"RedDjak","name":"Red Djak","id":2293442617,"id_str":"2293442617","indices":[11,19]},{"screen_name":"SparkyyyDesigns","name":"dZ Sparky","id":3720818512,"id_str":"3720818512","indices":[20,36]},{"screen_name":"dZResurge_","name":"dZResurge","id":1173512084,"id_str":"1173512084","indices":[37,48]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080063657"} +{"delete":{"status":{"id":663720216757604353,"id_str":"663720216757604353","user_id":3397981942,"user_id_str":"3397981942"},"timestamp_ms":"1447080063806"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009782792192,"id_str":"663728009782792192","text":"\u53f6\u3046\u3053\u3068\u53f6\u308f\u306a\u3044\u3053\u3068 \u305d\u308c\u3088\u308a\u3082\u5927\u4e8b\u306a\u4f55\u304b\u3092\n\u305d\u3093\u306a\u65e5\u306e\u52df\u308b\u8a00\u8449\u3092 \u541b\u306b\u5b9b\u3066\u3066\u50d5\u306f\u66f8\u3044\u3066\u3044\u3066 \n\u305d\u308c\u3092\u541b\u304c\u65e5\u3005\u306e\u5fc3\u306b \u91cd\u306d\u308b\u6642\u3092\u305f\u3060\u60f3\u3063\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190452547,"id_str":"3190452547","name":"\u30b4\u30ed\u30ea","screen_name":"dakgbump","location":null,"url":null,"description":"\u30b4\u30ed\u30ea\u3053\u3068\u5c71\u7530\u8cb4\u6d0b\u3001\u5347\u79c0\u592b\u304c\u72c2\u304a\u3057\u3044\u307b\u3069\u3059\u304d\u3002\u3042\u3068SHIT HAPPENING\u306e\u4eca\u702c\u3055\u3093\u3082\u597d\u304d\u3002\u7121\u8a00\u306b\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":98,"friends_count":91,"listed_count":8,"favourites_count":837,"statuses_count":3167,"created_at":"Sun May 10 04:33:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631121268419366912\/LoYy_rm0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631121268419366912\/LoYy_rm0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190452547\/1441303625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063659"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009812140032,"id_str":"663728009812140032","text":"\u3042\u3057\u305f\u7523\u5a66\u4eba\u79d1\u3061\u3087\u3044\u65e9\u3081\u3060\u3057\u5bdd\u308b\u304b\u306a\n(\u314e\u03c9\u314e*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344763638,"id_str":"344763638","name":"\u306b\u3083\u3093\u304a@\u51fa\u7523\u4e88\u5b9a\u65e5\u8d8a\u3048w","screen_name":"Nyano7th","location":"\u6bb5\u30dc\u30fc\u30eb\u306e\u4e2d","url":null,"description":"\u25a0\u732b\u597d\u304d\u306e\u6bcd\u89aa\u898b\u7fd2\u3044\u25fe\ufe0e\u30c4\u30a4\u30fc\u30c8\u3001RT\u3001\u30d5\u30a1\u30dc\u7121\u53cc\u3059\u308b\u6642\u6709\u3002\u25fe\ufe0e\u4e3b\u306b\u7d61\u307f\u304c\u6709\u308b\u306e\u65b9\u306e\u307f\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059\u3002\u25fe\ufe0e\u51fa\u25cb\u3044\u7cfb\u3001\u30a8\u25cb\u57a2\u7b49\u3064\u3044\u3066\u308b\u696d\u8005\u306e\u57a2\u306f\u5373\u30b9\u30d1\u30d6\u30ed\u3057\u307e\u3059\u3002\u25bc\u30a2\u30cb\u30e1\u30fb\u30b2\u30fc\u30e0\u30fb\u6f2b\u753b\u30fb\u653f\u6cbb\u30fb\u5b50\u80b2\u3066","protected":false,"verified":false,"followers_count":624,"friends_count":507,"listed_count":26,"favourites_count":6774,"statuses_count":167793,"created_at":"Fri Jul 29 15:08:56 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652761364809695232\/mnBmOuGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652761364809695232\/mnBmOuGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344763638\/1446610025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063666"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009778606080,"id_str":"663728009778606080","text":"RT @askflexpod: 25 Best\u00a0#tech\u00a0companies to work for in America @Cisco @NetApp https:\/\/t.co\/isq7Rh4wo2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":407212827,"id_str":"407212827","name":"AvnetCloudSolutions","screen_name":"AvnetCloudReady","location":"Tempe, AZ","url":"http:\/\/www.AvnetCloudReady.com","description":"Avnet Cloud Solutions helps customers move their businesses to the Cloud.","protected":false,"verified":false,"followers_count":873,"friends_count":1195,"listed_count":38,"favourites_count":35,"statuses_count":2646,"created_at":"Mon Nov 07 19:56:31 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D2D5D6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661916487062593536\/1A8oVJBR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661916487062593536\/1A8oVJBR.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"191F22","profile_text_color":"8FCAE0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477170230905434112\/9E5g6T9c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477170230905434112\/9E5g6T9c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/407212827\/1446648187","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:01:10 +0000 2015","id":663536778461241344,"id_str":"663536778461241344","text":"25 Best\u00a0#tech\u00a0companies to work for in America @Cisco @NetApp https:\/\/t.co\/isq7Rh4wo2","source":"\u003ca href=\"http:\/\/meetedgar.com\" rel=\"nofollow\"\u003eMeet Edgar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":282723018,"id_str":"282723018","name":"FlexPod","screen_name":"askflexpod","location":null,"url":"http:\/\/www.facebook.com\/flexpod","description":"Find out how a unified, pretested and validated shared infrastructure built on Cisco and NetApp can simplify your data center transformation","protected":false,"verified":false,"followers_count":2286,"friends_count":755,"listed_count":69,"favourites_count":89,"statuses_count":1393,"created_at":"Fri Apr 15 19:48:30 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BABFC2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"2011F0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633708247304830976\/eMXCHuRJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633708247304830976\/eMXCHuRJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282723018\/1403546411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"tech","indices":[8,13]}],"urls":[{"url":"https:\/\/t.co\/isq7Rh4wo2","expanded_url":"http:\/\/read.bi\/1PhnMPW","display_url":"read.bi\/1PhnMPW","indices":[62,85]}],"user_mentions":[{"screen_name":"Cisco","name":"Cisco","id":15749983,"id_str":"15749983","indices":[47,53]},{"screen_name":"NetApp","name":"NetApp","id":15897465,"id_str":"15897465","indices":[54,61]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tech","indices":[24,29]}],"urls":[{"url":"https:\/\/t.co\/isq7Rh4wo2","expanded_url":"http:\/\/read.bi\/1PhnMPW","display_url":"read.bi\/1PhnMPW","indices":[78,101]}],"user_mentions":[{"screen_name":"askflexpod","name":"FlexPod","id":282723018,"id_str":"282723018","indices":[3,14]},{"screen_name":"Cisco","name":"Cisco","id":15749983,"id_str":"15749983","indices":[63,69]},{"screen_name":"NetApp","name":"NetApp","id":15897465,"id_str":"15897465","indices":[70,77]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063658"} +{"delete":{"status":{"id":663726025872838656,"id_str":"663726025872838656","user_id":3269842507,"user_id_str":"3269842507"},"timestamp_ms":"1447080063835"}} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009795387392,"id_str":"663728009795387392","text":"RT @nobunaga_s: \u4eca\u65e5\u3082\u697d\u3057\u304b\u3063\u305f\u3041\u30fc\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281353556,"id_str":"3281353556","name":"\u3059\u3046\u3061\u3083\u3093 \u541b\u3068\u51fa\u4f1a\u3048\u305f\u4e8b\u306b\u30b8\u30e3\u30b9\u30c6\u30a3\u30b9","screen_name":"_ky_yu_kn_ys_tm","location":"\u58f0\u512a\u3055\u3093\u76ee\u6307\u3057\u3066\u305f\u308a\u3059\u308b\u30e1\u30b9\u30b4\u30ea\u30e9","url":null,"description":"\u5cf6\ufa11\u4fe1\u9577 \u5897\u7530\u4fca\u6a39 \u82b1\u6c5f\u590f\u6a39 \u897f\u5c71\u5b8f\u592a\u6717 \u6885\u539f\u88d5\u4e00\u90ce \u767d\u4e95\u60a0\u4ecb \u5c71\u672c\u548c\u81e3 Trignal:\u6728\u6751\u826f\u5e73 \u30b9\u30d5\u30a3\u30a2:\u6238\u677e\u9065 Free!:\u4e03\u702c\u9059 \u9632\u885b\u90e8:\u8535\u738b\u7acb \u30de\u30b8\u30d5\u30a9\u30fc:\u6850\u539f\u30a2\u30c8\u30e0 \u30a2\u30a4\u30ca\u30ca:\u4e00\u7e54\uff64\u9678 \u3042\u3093\u30b9\u30bf:\u6df1\u6d77\u594f\u6c70 B\u30d7\u30ed:\u5897\u9577\u548c\u5357 \u261e\u81ea\u5206\u306e\u30da\u30fc\u30b9\u3067\u5fdc\u63f4\u30a4\u30d9\u30f3\u30c8\u7b49\u306b\u53c2\u52a0\u3057\u3066\u3044\u307e\u3059 \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":162,"friends_count":158,"listed_count":9,"favourites_count":1756,"statuses_count":3797,"created_at":"Thu Jul 16 06:55:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658301959368130560\/cJ20tW6y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658301959368130560\/cJ20tW6y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281353556\/1445642277","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727929566736384,"id_str":"663727929566736384","text":"\u4eca\u65e5\u3082\u697d\u3057\u304b\u3063\u305f\u3041\u30fc\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":200406959,"id_str":"200406959","name":"\u5cf6\ufa11\u4fe1\u9577(\u5cf6\u5d0e\u4fe1\u9577)","screen_name":"nobunaga_s","location":"\u6226\u56fd","url":"http:\/\/ameblo.jp\/nobunagashimazaki\/","description":"\u5cf6\ufa11\u4fe1\u9577(\u5cf6\u5d0e\u4fe1\u9577)\u3067\u3059\u3002\u9752\u4e8c\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3\u3067\u3001\u58f0\u512a\u3068\u3057\u3066\u6d3b\u52d5\u3055\u305b\u3066\u9802\u3044\u3066\u304a\u308a\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":365066,"friends_count":444,"listed_count":9947,"favourites_count":0,"statuses_count":15025,"created_at":"Sat Oct 09 06:15:24 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000091226379\/b72b4cdd38eb619c8c18cd39ddef0d34_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000091226379\/b72b4cdd38eb619c8c18cd39ddef0d34_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":110,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nobunaga_s","name":"\u5cf6\ufa11\u4fe1\u9577(\u5cf6\u5d0e\u4fe1\u9577)","id":200406959,"id_str":"200406959","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063662"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009782784000,"id_str":"663728009782784000","text":"@omgarinm @tzuuyujype how are you dear?\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663205509416116225,"in_reply_to_status_id_str":"663205509416116225","in_reply_to_user_id":2535078348,"in_reply_to_user_id_str":"2535078348","in_reply_to_screen_name":"omgarinm","user":{"id":3320914838,"id_str":"3320914838","name":"\uc724\uc544, yoona","screen_name":"imyoornaa","location":"#SI #iSM","url":"https:\/\/instagram.com\/yoona__lim","description":"\ubd07.) \uc18c\ub140\uc2dc\ub300's \u00a91990 \u265a don't ask about love because someone has stolen my love\u2661\n[selective following]","protected":false,"verified":false,"followers_count":250,"friends_count":187,"listed_count":2,"favourites_count":611,"statuses_count":4646,"created_at":"Thu Aug 20 04:30:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663030804541411328\/G0YcH9pF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663030804541411328\/G0YcH9pF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320914838\/1446488132","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"omgarinm","name":"\uc544\ub9ac\ub2c8","id":2535078348,"id_str":"2535078348","indices":[0,9]},{"screen_name":"tzuuyujype","name":"Ilhoon is perfect --","id":1282883760,"id_str":"1282883760","indices":[10,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080063659"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009807970304,"id_str":"663728009807970304","text":"@mtry_1115 @rrrgtu0116 \u30cf\u30cb\u30fc\u4f1a\u3044\u305f\u3044 https:\/\/t.co\/4Ex6yakrdg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727328665534469,"in_reply_to_status_id_str":"663727328665534469","in_reply_to_user_id":1030196557,"in_reply_to_user_id_str":"1030196557","in_reply_to_screen_name":"mtry_1115","user":{"id":544163579,"id_str":"544163579","name":"\u5927\u53cb \u5f25\u6765","screen_name":"Me__39","location":"GOK","url":"http:\/\/instagram.com\/mee__25","description":null,"protected":false,"verified":false,"followers_count":684,"friends_count":364,"listed_count":0,"favourites_count":2261,"statuses_count":4412,"created_at":"Tue Apr 03 10:34:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658309621363269632\/njt3ahbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658309621363269632\/njt3ahbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544163579\/1442218924","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtry_1115","name":"miwa","id":1030196557,"id_str":"1030196557","indices":[0,10]},{"screen_name":"rrrgtu0116","name":"\u5f8c\u85e4 \u601c\u679c","id":2919079502,"id_str":"2919079502","indices":[11,22]}],"symbols":[],"media":[{"id":663727995761221633,"id_str":"663727995761221633","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGHbUYAE8L6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGHbUYAE8L6m.jpg","url":"https:\/\/t.co\/4Ex6yakrdg","display_url":"pic.twitter.com\/4Ex6yakrdg","expanded_url":"http:\/\/twitter.com\/Me__39\/status\/663728009807970304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727995761221633,"id_str":"663727995761221633","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGHbUYAE8L6m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGHbUYAE8L6m.jpg","url":"https:\/\/t.co\/4Ex6yakrdg","display_url":"pic.twitter.com\/4Ex6yakrdg","expanded_url":"http:\/\/twitter.com\/Me__39\/status\/663728009807970304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080063665"} +{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009807966209,"id_str":"663728009807966209","text":"\uac00\ub791\uc774\uac00 \ucc22\uc5b4\uc838 \uc790,\ube60\uc9c8\ud14c\ub2c8\uae4c\uc544~~~","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1367070588,"id_str":"1367070588","name":"\ub355who\ub134\u2728","screen_name":"951221_O","location":"\ub798\ud37c\ubc14\ube44 \uc539\uc9c0 \ub9d0\uace0 \ubc25\uc774\ub098 \uc539\uc5b4","url":"http:\/\/xn--0j2b01b12c93cb8hhpel8cz8vimfl2g.com","description":"\u266fFear only God Hate only sins\u266f ask - http:\/\/ask.fm\/yuckyolo \ud504\uc0ac\ub294 \ubc0d\ub07c\uc7c8\ub9c8\uac00\u2764\ufe0f @MinG_771","protected":false,"verified":false,"followers_count":3205,"friends_count":368,"listed_count":25,"favourites_count":8438,"statuses_count":16802,"created_at":"Sat Apr 20 13:51:46 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599218525434089473\/9TClIu7b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599218525434089473\/9TClIu7b.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661922591024611328\/9Xt4mS01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661922591024611328\/9Xt4mS01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1367070588\/1440502528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080063665"} +{"delete":{"status":{"id":663720262907600896,"id_str":"663720262907600896","user_id":3406516289,"user_id_str":"3406516289"},"timestamp_ms":"1447080064011"}} +{"delete":{"status":{"id":663727980435382272,"id_str":"663727980435382272","user_id":548586646,"user_id_str":"548586646"},"timestamp_ms":"1447080064110"}} +{"delete":{"status":{"id":663725241538117632,"id_str":"663725241538117632","user_id":283068877,"user_id_str":"283068877"},"timestamp_ms":"1447080064119"}} +{"delete":{"status":{"id":663725220574814208,"id_str":"663725220574814208","user_id":2944773667,"user_id_str":"2944773667"},"timestamp_ms":"1447080064204"}} +{"delete":{"status":{"id":524125160379412480,"id_str":"524125160379412480","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080064201"}} +{"delete":{"status":{"id":663720262924390400,"id_str":"663720262924390400","user_id":3381470433,"user_id_str":"3381470433"},"timestamp_ms":"1447080064524"}} +{"delete":{"status":{"id":568855151810891776,"id_str":"568855151810891776","user_id":2477000056,"user_id_str":"2477000056"},"timestamp_ms":"1447080064517"}} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013973000193,"id_str":"663728013973000193","text":"52526kn: Imma_lonely_: kbdpftcrisone1: lepitens2: jeca30301: BanggoDimple: kbdpftcris30: immadam_angelo: #PushAwardsKathNiels #PushAwardsKa\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3815139074,"id_str":"3815139074","name":"Kathryn Chandria Ber","screen_name":"obcessed1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":2,"listed_count":18,"favourites_count":7,"statuses_count":50625,"created_at":"Wed Oct 07 14:32:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654340900223512576\/38Wg57sT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654340900223512576\/38Wg57sT_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[105,125]},{"text":"PushAwardsKa","indices":[126,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080064658"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013973037056,"id_str":"663728013973037056","text":"RT @hijadelaines: dime d\u00f3nde estabas todo este tiempo atr\u00e1s","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":570030430,"id_str":"570030430","name":".eLe.","screen_name":"LoreNeila","location":"Logro\u00f1o, La Rioja\/Neia\u27a1PDV,CyL","url":"http:\/\/instagram.com\/lore_neila","description":"Malinfluenciando desde mayo del 98. Neilensa ante todo.Riojana.Madridista. Guerrera.Rap,reggae,rock.Si lo que quieres es joderme te deseo mucha suerte. \u2764P.A\u2764CW\u2764","protected":false,"verified":false,"followers_count":439,"friends_count":389,"listed_count":3,"favourites_count":5891,"statuses_count":10562,"created_at":"Thu May 03 14:44:27 +0000 2012","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530494378993664000\/o98Mn3SO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530494378993664000\/o98Mn3SO.jpeg","profile_background_tile":true,"profile_link_color":"00FF00","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642390376666501120\/yCOEcbRg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642390376666501120\/yCOEcbRg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/570030430\/1441992872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:35 +0000 2015","id":663725878929698819,"id_str":"663725878929698819","text":"dime d\u00f3nde estabas todo este tiempo atr\u00e1s","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":569387249,"id_str":"569387249","name":"Reina de Saba","screen_name":"hijadelaines","location":"EXTREMODURO ","url":null,"description":"Que las cosas te salgan bien tiene que ser la hostia. \u00abviata mea, inima mea\u00bb","protected":false,"verified":false,"followers_count":2693,"friends_count":581,"listed_count":136,"favourites_count":95446,"statuses_count":111531,"created_at":"Wed May 02 20:11:34 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177755049\/GVlTFqB_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177755049\/GVlTFqB_.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660868854625738752\/LVg_Yg-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660868854625738752\/LVg_Yg-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/569387249\/1435610898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hijadelaines","name":"Reina de Saba","id":569387249,"id_str":"569387249","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080064658"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013994008576,"id_str":"663728013994008576","text":"RT @__Onur61: Ben se\u00e7ilmem SE\u00c7ER\u0130M \ud83d\ude00 https:\/\/t.co\/u1VC1mNKbf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2462954494,"id_str":"2462954494","name":"ahalbooo","screen_name":"ahalbo01","location":null,"url":null,"description":"-- etkile\u015fim hesabi @ahalbo hesab\u0131na at\u0131lan yeni twitlerr rt alman\u0131z\u0131 saglar\n@ahalbo Hesabina yap\u0131lan yorumlar da rt lenir","protected":false,"verified":false,"followers_count":14687,"friends_count":15411,"listed_count":7,"favourites_count":17088,"statuses_count":20433,"created_at":"Sat Apr 05 18:16:14 +0000 2014","utc_offset":3600,"time_zone":"Bern","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630050519361433600\/udweGLAd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630050519361433600\/udweGLAd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2462954494\/1435297016","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 05:31:13 +0000 2015","id":662502473404432384,"id_str":"662502473404432384","text":"Ben se\u00e7ilmem SE\u00c7ER\u0130M \ud83d\ude00 https:\/\/t.co\/u1VC1mNKbf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2192951008,"id_str":"2192951008","name":"\u27a1 ONUR \u2b05\ufe0f","screen_name":"__Onur61","location":"\u0130stanbul, trabzon","url":null,"description":"Mutlu olmak i\u00e7in bahanem \u00e7ok \u00fcz\u00fclmek i\u00e7in Zaman'\u0131m yok ..","protected":false,"verified":false,"followers_count":59156,"friends_count":52392,"listed_count":14,"favourites_count":5698,"statuses_count":448,"created_at":"Sat Nov 23 16:57:21 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DEB5AD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":true,"profile_link_color":"850472","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654233372638711808\/ueTqGzRH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654233372638711808\/ueTqGzRH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2192951008\/1445938544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":210,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662502467490443264,"id_str":"662502467490443264","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","url":"https:\/\/t.co\/u1VC1mNKbf","display_url":"pic.twitter.com\/u1VC1mNKbf","expanded_url":"http:\/\/twitter.com\/__Onur61\/status\/662502473404432384\/photo\/1","type":"photo","sizes":{"medium":{"w":337,"h":434,"resize":"fit"},"large":{"w":337,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":434,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662502467490443264,"id_str":"662502467490443264","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","url":"https:\/\/t.co\/u1VC1mNKbf","display_url":"pic.twitter.com\/u1VC1mNKbf","expanded_url":"http:\/\/twitter.com\/__Onur61\/status\/662502473404432384\/photo\/1","type":"photo","sizes":{"medium":{"w":337,"h":434,"resize":"fit"},"large":{"w":337,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":434,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__Onur61","name":"\u27a1 ONUR \u2b05\ufe0f","id":2192951008,"id_str":"2192951008","indices":[3,12]}],"symbols":[],"media":[{"id":662502467490443264,"id_str":"662502467490443264","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","url":"https:\/\/t.co\/u1VC1mNKbf","display_url":"pic.twitter.com\/u1VC1mNKbf","expanded_url":"http:\/\/twitter.com\/__Onur61\/status\/662502473404432384\/photo\/1","type":"photo","sizes":{"medium":{"w":337,"h":434,"resize":"fit"},"large":{"w":337,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":434,"resize":"fit"}},"source_status_id":662502473404432384,"source_status_id_str":"662502473404432384","source_user_id":2192951008,"source_user_id_str":"2192951008"}]},"extended_entities":{"media":[{"id":662502467490443264,"id_str":"662502467490443264","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGue-2WcAA_SQT.jpg","url":"https:\/\/t.co\/u1VC1mNKbf","display_url":"pic.twitter.com\/u1VC1mNKbf","expanded_url":"http:\/\/twitter.com\/__Onur61\/status\/662502473404432384\/photo\/1","type":"photo","sizes":{"medium":{"w":337,"h":434,"resize":"fit"},"large":{"w":337,"h":434,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":337,"h":434,"resize":"fit"}},"source_status_id":662502473404432384,"source_status_id_str":"662502473404432384","source_user_id":2192951008,"source_user_id_str":"2192951008"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080064663"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013998190592,"id_str":"663728013998190592","text":"RT @DBallsbuddy: Jaki szcz\u0119\u015bliwy, a\u017c serce szybciej bije https:\/\/t.co\/KYFRuhY49b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3678549737,"id_str":"3678549737","name":"Harry Tomlinson","screen_name":"haroldboobear7","location":null,"url":null,"description":"Larryshipper","protected":false,"verified":false,"followers_count":107,"friends_count":55,"listed_count":1,"favourites_count":879,"statuses_count":5373,"created_at":"Wed Sep 16 20:55:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662572221634887680\/1OWm71fH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662572221634887680\/1OWm71fH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3678549737\/1446804472","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:42:12 +0000 2015","id":663396110032109568,"id_str":"663396110032109568","text":"Jaki szcz\u0119\u015bliwy, a\u017c serce szybciej bije https:\/\/t.co\/KYFRuhY49b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":984720608,"id_str":"984720608","name":"Larents updates","screen_name":"DBallsbuddy","location":"w szafie z Hazz i Lou","url":"http:\/\/staywithmesweetie.tumblr.com","description":"Treat yourself like harry styles would treat you \u2728 Me and Harry wrote on it \u2728 Baby, we're perfect \u2728","protected":false,"verified":false,"followers_count":16968,"friends_count":5977,"listed_count":95,"favourites_count":8419,"statuses_count":67986,"created_at":"Sun Dec 02 14:27:08 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577920424949874688\/Gj-Yc8sF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577920424949874688\/Gj-Yc8sF.jpeg","profile_background_tile":false,"profile_link_color":"F5CCB0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660606631756058624\/FPjUlV_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660606631756058624\/FPjUlV_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984720608\/1435003733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":43,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663396094273916928,"id_str":"663396094273916928","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","url":"https:\/\/t.co\/KYFRuhY49b","display_url":"pic.twitter.com\/KYFRuhY49b","expanded_url":"http:\/\/twitter.com\/DBallsbuddy\/status\/663396110032109568\/photo\/1","type":"photo","sizes":{"large":{"w":245,"h":300,"resize":"fit"},"medium":{"w":245,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":245,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663396094273916928,"id_str":"663396094273916928","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","url":"https:\/\/t.co\/KYFRuhY49b","display_url":"pic.twitter.com\/KYFRuhY49b","expanded_url":"http:\/\/twitter.com\/DBallsbuddy\/status\/663396110032109568\/photo\/1","type":"animated_gif","sizes":{"large":{"w":245,"h":300,"resize":"fit"},"medium":{"w":245,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":245,"h":300,"resize":"fit"}},"video_info":{"aspect_ratio":[49,60],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTbO6CUEAAeC5L.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DBallsbuddy","name":"Larents updates","id":984720608,"id_str":"984720608","indices":[3,15]}],"symbols":[],"media":[{"id":663396094273916928,"id_str":"663396094273916928","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","url":"https:\/\/t.co\/KYFRuhY49b","display_url":"pic.twitter.com\/KYFRuhY49b","expanded_url":"http:\/\/twitter.com\/DBallsbuddy\/status\/663396110032109568\/photo\/1","type":"photo","sizes":{"large":{"w":245,"h":300,"resize":"fit"},"medium":{"w":245,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":245,"h":300,"resize":"fit"}},"source_status_id":663396110032109568,"source_status_id_str":"663396110032109568","source_user_id":984720608,"source_user_id_str":"984720608"}]},"extended_entities":{"media":[{"id":663396094273916928,"id_str":"663396094273916928","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTbO6CUEAAeC5L.png","url":"https:\/\/t.co\/KYFRuhY49b","display_url":"pic.twitter.com\/KYFRuhY49b","expanded_url":"http:\/\/twitter.com\/DBallsbuddy\/status\/663396110032109568\/photo\/1","type":"animated_gif","sizes":{"large":{"w":245,"h":300,"resize":"fit"},"medium":{"w":245,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":245,"h":300,"resize":"fit"}},"source_status_id":663396110032109568,"source_status_id_str":"663396110032109568","source_user_id":984720608,"source_user_id_str":"984720608","video_info":{"aspect_ratio":[49,60],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTbO6CUEAAeC5L.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080064664"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014006595584,"id_str":"663728014006595584","text":"RT @SRKswarrior1: SRKians are tolerant \n\nKYUNKI FARIDOON KE GHAR PE ABHI TAK KISSI NE PATHAR NAHI MAAAARA \n#DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2399941012,"id_str":"2399941012","name":"MauritianSRKfan","screen_name":"RadeshDomun","location":"Glasgow, Scotland","url":null,"description":"19yrs from Mauritius. #SRKIAN. only here for this man @Iamsrk","protected":false,"verified":false,"followers_count":287,"friends_count":232,"listed_count":6,"favourites_count":2136,"statuses_count":7855,"created_at":"Mon Mar 10 17:16:57 +0000 2014","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662191246467801088\/DSF3eMp7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662191246467801088\/DSF3eMp7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2399941012\/1445702722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:30 +0000 2015","id":663727618102005760,"id_str":"663727618102005760","text":"SRKians are tolerant \n\nKYUNKI FARIDOON KE GHAR PE ABHI TAK KISSI NE PATHAR NAHI MAAAARA \n#DhamakedaarDilwaleTrailer","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":829163149,"id_str":"829163149","name":"SRK HATERS KO MAARO","screen_name":"SRKswarrior1","location":"SRK's COUNTRY ","url":"http:\/\/recordsofsrk.blogspot.in\/","description":"DONT FOLLOW ME . VISIT - http:\/\/twitter.com\/SRKswarrior1\/t\u2026 @SRKianPrincess is LIFE + LOVE","protected":false,"verified":false,"followers_count":22635,"friends_count":1953,"listed_count":76,"favourites_count":1983,"statuses_count":225888,"created_at":"Mon Sep 17 14:23:42 +0000 2012","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178157007\/QpW3_nMg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178157007\/QpW3_nMg.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3482098221\/84f5edacdc9cdc577f52a251d2a16440_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3482098221\/84f5edacdc9cdc577f52a251d2a16440_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829163149\/1365202732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":6,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[89,115]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[107,133]}],"urls":[],"user_mentions":[{"screen_name":"SRKswarrior1","name":"SRK HATERS KO MAARO","id":829163149,"id_str":"829163149","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080064666"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013989830656,"id_str":"663728013989830656","text":"Six ways to maximize your twitter marketing efforts https:\/\/t.co\/DNF6UnUUaf","source":"\u003ca href=\"http:\/\/socialadcenter.com\" rel=\"nofollow\"\u003eSocial Ad Center\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790091459,"id_str":"2790091459","name":"Addison Wilson","screen_name":"wilsonr6878m","location":null,"url":null,"description":"Recent grad and small business owner.","protected":false,"verified":false,"followers_count":1824,"friends_count":1604,"listed_count":43,"favourites_count":450,"statuses_count":22939,"created_at":"Thu Sep 04 16:09:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508713709922160640\/NGIBZlIJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508713709922160640\/NGIBZlIJ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DNF6UnUUaf","expanded_url":"http:\/\/allmediasoftware.com\/blog\/6-twitter-marketing-tips-for-businesses\/","display_url":"allmediasoftware.com\/blog\/6-twitter\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064662"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013972926464,"id_str":"663728013972926464","text":"\ub124\uc77c \uc0c9\uae54\uc774 \uac00\uc7a5 \uc798 \ub098\uc624\ub294\uac74 \uac80\uc815,\ubcf4\ub77c\uc778\ub4ef \uc824\uc740 \uc544\ubb34\ub798\ub3c4 \ud504\ub80c\uce58\uac00 \uac00\uc7a5 \uae54\ub054\ud558\uace0 \uc88b\uc9c0\ub9cc \ud3ec\uc778\ud2b8 \ud558\ub098\uc529\uc740 \uc788\uc5b4\uc8fc\ub294\uac8c \uc774\uc058\uace0!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925120842,"id_str":"2925120842","name":"\ube60\uafcd^^*","screen_name":"T1226020618","location":null,"url":null,"description":"\ub3d9\ubc29\uc2e0\uae30TVXQ=U-KNOW+MAX \/ Only TVXQ\u2665 \/ \ud2b8\uc717\uc8fc\uae30\uc801\uccad\uc18c\/ HATE JYJ YJ SMF","protected":false,"verified":false,"followers_count":138,"friends_count":104,"listed_count":1,"favourites_count":302,"statuses_count":589,"created_at":"Wed Dec 10 03:27:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662473806615740418\/dbbvnzLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662473806615740418\/dbbvnzLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925120842\/1437221989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080064658"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014002294786,"id_str":"663728014002294786","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242229124,"id_str":"3242229124","name":"Mubarak Lightbourne","screen_name":"qijiwonoviw","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":138,"friends_count":1043,"listed_count":3,"favourites_count":14637,"statuses_count":15945,"created_at":"Fri May 08 17:53:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642671667001430020\/pm0zZLKL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642671667001430020\/pm0zZLKL_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":265,"favorite_count":158,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064665"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014006579200,"id_str":"663728014006579200","text":"RT nightybutera22: RT nightybutera31: RT nightybutera13: Nosebleed si Clark kay Rico!\n#OTWOLWish \n#PushAwardsJaDines \nJ_RedHoney-","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3466012100,"id_str":"3466012100","name":"Shite Paris","screen_name":"shiteparis","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":13,"listed_count":14,"favourites_count":0,"statuses_count":70446,"created_at":"Sun Sep 06 02:58:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640358501663928320\/p4J_X-yt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640358501663928320\/p4J_X-yt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[86,96]},{"text":"PushAwardsJaDines","indices":[98,116]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064666"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985628160,"id_str":"663728013985628160","text":"Bsndnd #FansAwards2015 #LaDiosa Flor Vigna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3984559725,"id_str":"3984559725","name":"vignistas","screen_name":"gonzalezfandres","location":"Argentina","url":null,"description":"lucha por tus sue\u00f1os \u2764 sos hermosa","protected":false,"verified":false,"followers_count":33,"friends_count":30,"listed_count":0,"favourites_count":307,"statuses_count":508,"created_at":"Sun Oct 18 04:55:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662082193154547712\/5PNPeh7V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662082193154547712\/5PNPeh7V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3984559725\/1446446329","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[7,22]},{"text":"LaDiosa","indices":[24,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013994041344,"id_str":"663728013994041344","text":"RT @ThePowerfulPics: HOLY \ud83d\ude33\ud83d\ude3b https:\/\/t.co\/2zz4Iki3j0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550690773,"id_str":"550690773","name":"Kambria Lynn Heath","screen_name":"KambriaaLynn","location":"Hammond, IN.","url":"http:\/\/Instagram.com\/_kambrialynn","description":"sunshine mixed with a little hurricane. \u2661","protected":false,"verified":false,"followers_count":265,"friends_count":594,"listed_count":0,"favourites_count":1069,"statuses_count":1906,"created_at":"Wed Apr 11 01:50:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659199677229899776\/admA9Z_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659199677229899776\/admA9Z_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550690773\/1444656660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:28:45 +0000 2015","id":663649417677795328,"id_str":"663649417677795328","text":"HOLY \ud83d\ude33\ud83d\ude3b https:\/\/t.co\/2zz4Iki3j0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1520006918,"id_str":"1520006918","name":"Billionaires","screen_name":"ThePowerfulPics","location":null,"url":null,"description":"We do not own any of the content posted. *Not Affiliated With Any Website in anyway* *Parody* Request DMCA removal #Cont :- powerfulpixs@gmail.com","protected":false,"verified":false,"followers_count":1461694,"friends_count":566,"listed_count":1872,"favourites_count":45,"statuses_count":2175,"created_at":"Sat Jun 15 17:45:30 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663661589183135744\/s_TflaqU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663661589183135744\/s_TflaqU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1520006918\/1446948086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"317fcc4b21a604d5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/317fcc4b21a604d5.json","place_type":"city","name":"New Delhi","full_name":"New Delhi, Delhi","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[76.842520,28.397657],[76.842520,28.879322],[77.347652,28.879322],[77.347652,28.397657]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":279,"favorite_count":479,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663649416021078017,"id_str":"663649416021078017","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","url":"https:\/\/t.co\/2zz4Iki3j0","display_url":"pic.twitter.com\/2zz4Iki3j0","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663649417677795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":543,"resize":"fit"},"large":{"w":583,"h":543,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663649416021078017,"id_str":"663649416021078017","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","url":"https:\/\/t.co\/2zz4Iki3j0","display_url":"pic.twitter.com\/2zz4Iki3j0","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663649417677795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":543,"resize":"fit"},"large":{"w":583,"h":543,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThePowerfulPics","name":"Billionaires","id":1520006918,"id_str":"1520006918","indices":[3,19]}],"symbols":[],"media":[{"id":663649416021078017,"id_str":"663649416021078017","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","url":"https:\/\/t.co\/2zz4Iki3j0","display_url":"pic.twitter.com\/2zz4Iki3j0","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663649417677795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":543,"resize":"fit"},"large":{"w":583,"h":543,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}},"source_status_id":663649417677795328,"source_status_id_str":"663649417677795328","source_user_id":1520006918,"source_user_id_str":"1520006918"}]},"extended_entities":{"media":[{"id":663649416021078017,"id_str":"663649416021078017","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXBoLFU8AE6St7.jpg","url":"https:\/\/t.co\/2zz4Iki3j0","display_url":"pic.twitter.com\/2zz4Iki3j0","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663649417677795328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":543,"resize":"fit"},"large":{"w":583,"h":543,"resize":"fit"},"small":{"w":340,"h":316,"resize":"fit"}},"source_status_id":663649417677795328,"source_status_id_str":"663649417677795328","source_user_id":1520006918,"source_user_id_str":"1520006918"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064663"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968805888,"id_str":"663728013968805888","text":"RT @Mr_Running_Back: \ud83d\udcaf\ud83d\udcaf\ud83d\udcaf https:\/\/t.co\/Jnrqp6wtl6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619369229,"id_str":"619369229","name":"lil chico baby","screen_name":"trillycjuicy","location":"ocho uno tres, fl","url":null,"description":"381-330-8004","protected":false,"verified":false,"followers_count":2406,"friends_count":804,"listed_count":17,"favourites_count":10610,"statuses_count":69002,"created_at":"Tue Jun 26 19:50:40 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"070808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177547361\/a3Fgt23I.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177547361\/a3Fgt23I.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661204774390513664\/7QU6bT7U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661204774390513664\/7QU6bT7U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619369229\/1445441049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:49 +0000 2015","id":663727951691849728,"id_str":"663727951691849728","text":"\ud83d\udcaf\ud83d\udcaf\ud83d\udcaf https:\/\/t.co\/Jnrqp6wtl6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535969168,"id_str":"535969168","name":"Cadi Molina","screen_name":"Mr_Running_Back","location":" Florida ","url":null,"description":"#Tampaboy SC- Mr.RunningBack","protected":false,"verified":false,"followers_count":673,"friends_count":603,"listed_count":3,"favourites_count":14622,"statuses_count":6162,"created_at":"Sun Mar 25 03:56:12 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/564442984\/nike-oregon-ducks-2011-pro-combat-system-of-dress-uniforms.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/564442984\/nike-oregon-ducks-2011-pro-combat-system-of-dress-uniforms.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662387546912120832\/GshHDxgF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662387546912120832\/GshHDxgF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535969168\/1444356636","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726115656212480,"quoted_status_id_str":"663726115656212480","quoted_status":{"created_at":"Mon Nov 09 14:33:32 +0000 2015","id":663726115656212480,"id_str":"663726115656212480","text":"I just wanna be cuddled up rn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619369229,"id_str":"619369229","name":"lil chico baby","screen_name":"trillycjuicy","location":"ocho uno tres, fl","url":null,"description":"381-330-8004","protected":false,"verified":false,"followers_count":2406,"friends_count":804,"listed_count":17,"favourites_count":10610,"statuses_count":69001,"created_at":"Tue Jun 26 19:50:40 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"070808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177547361\/a3Fgt23I.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177547361\/a3Fgt23I.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661204774390513664\/7QU6bT7U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661204774390513664\/7QU6bT7U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619369229\/1445441049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jnrqp6wtl6","expanded_url":"https:\/\/twitter.com\/trillycjuicy\/status\/663726115656212480","display_url":"twitter.com\/trillycjuicy\/s\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jnrqp6wtl6","expanded_url":"https:\/\/twitter.com\/trillycjuicy\/status\/663726115656212480","display_url":"twitter.com\/trillycjuicy\/s\u2026","indices":[25,48]}],"user_mentions":[{"screen_name":"Mr_Running_Back","name":"Cadi Molina","id":535969168,"id_str":"535969168","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013981257729,"id_str":"663728013981257729","text":"\u3053\u3053\uff12\u9031\u9593\u304f\u3089\u3044\u91ce\u83dc\u98df\u3079\u3066\u306a\u304f\u3066\u307b\u307c\u30c1\u30e7\u30b3\u30ec\u30fc\u30c8\u3068\u6804\u990a\u306e\u306a\u3044\u3082\u306e\u3070\u3063\u304b\u98df\u3079\u3066\u3066\u808c\u30dc\u30ed\u30dc\u30ed\u3084\u3057\u592a\u308b\u3057\u30af\u30bd\u3002\ud83d\ude42\ud83d\ude43\ud83d\ude42\ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3309549252,"id_str":"3309549252","name":"\u308a \u3043 \u3081 \u308d","screen_name":"Rabbit_xx__2","location":"\u4e2d \u5cf6 \u306e \u5b50","url":"http:\/\/twpf.jp\/Rabbit_xx__2","description":". \u79c1 \u306e \u738b \u5b50 \u69d8 \u306f \u3069 \u3053 \u3067 \u3059 \u304b .","protected":false,"verified":false,"followers_count":97,"friends_count":79,"listed_count":7,"favourites_count":3144,"statuses_count":4369,"created_at":"Sat Aug 08 11:35:25 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661823320606662656\/Ech9KMh4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661823320606662656\/Ech9KMh4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3309549252\/1446627065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064660"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985452032,"id_str":"663728013985452032","text":"RT @_AndVIXX: #HAPPYLEODAY #\ube45\uc2a4 #VIXX #\ub808\uc624 #LEO #\ud0dd\uc6b4 #Chained_up #\uc0ac\uc2ac @JUNGTW_LEO \n\n\uadf8\ub300\uc758 B.O.D.Y !!! \n\ud56b\ubc14\ub514\ub3c4 \ubd84\uc704\uae30\ub3c4 ;\u3145;)b https:\/\/t.co\/j6VC3PIBrF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1446665664,"id_str":"1446665664","name":"\ub808\uc624\uc2dc\uc2a4","screen_name":"LEO_sis1110","location":null,"url":null,"description":"\ubcc4\ub458, \ubcc4\uc14b \ubcc4\ube5b \n\ud56d\uc0c1 \uace0\ub9c8\uc6cc!","protected":false,"verified":false,"followers_count":0,"friends_count":236,"listed_count":4,"favourites_count":5313,"statuses_count":36365,"created_at":"Tue May 21 15:53:36 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527874938254786560\/FouLICTc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527874938254786560\/FouLICTc_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:15 +0000 2015","id":663725037564751872,"id_str":"663725037564751872","text":"#HAPPYLEODAY #\ube45\uc2a4 #VIXX #\ub808\uc624 #LEO #\ud0dd\uc6b4 #Chained_up #\uc0ac\uc2ac @JUNGTW_LEO \n\n\uadf8\ub300\uc758 B.O.D.Y !!! \n\ud56b\ubc14\ub514\ub3c4 \ubd84\uc704\uae30\ub3c4 ;\u3145;)b https:\/\/t.co\/j6VC3PIBrF","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1908392586,"id_str":"1908392586","name":"\uc564\ub4dc\ube45\uc2a4","screen_name":"_AndVIXX","location":"Since 20130927","url":"http:\/\/andvixx.tistory.com","description":"\ub290\ub9ac\uac8c \ud758\ub7ec\uac00\ub294 \ub204\ub098\ub4e4\uc758 \ube45\uc2a4 \uc0ac\ub791\ubc29\u2661\n\uad00\uc2ec\uae00 \ud655\uc778\ud574\uc8fc\uc138\uc694~! \n2\ucc28\uac00\uacf5, \uc778\uc6a9\uc54c\ud2f0 \ud558\uc9c0 \ub9d0\uc544\uc8fc\uc138\uc694~ DO NOT EDIT AND QUOTE RETWEET.","protected":false,"verified":false,"followers_count":8348,"friends_count":11,"listed_count":171,"favourites_count":5,"statuses_count":2256,"created_at":"Thu Sep 26 16:21:10 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561778412847497216\/JMjdRH7B_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561778412847497216\/JMjdRH7B_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1908392586\/1446525162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":50,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[0,12]},{"text":"\ube45\uc2a4","indices":[13,16]},{"text":"VIXX","indices":[17,22]},{"text":"\ub808\uc624","indices":[23,26]},{"text":"LEO","indices":[27,31]},{"text":"\ud0dd\uc6b4","indices":[32,35]},{"text":"Chained_up","indices":[36,47]},{"text":"\uc0ac\uc2ac","indices":[48,51]}],"urls":[],"user_mentions":[{"screen_name":"JUNGTW_LEO","name":"VIXX_LEO","id":3583104920,"id_str":"3583104920","indices":[52,63]}],"symbols":[],"media":[{"id":663724985027006464,"id_str":"663724985027006464","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724985027006464,"id_str":"663724985027006464","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}}},{"id":663724978332913664,"id_str":"663724978332913664","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGWeoWUAAWg8M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGWeoWUAAWg8M.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663724984444043264,"id_str":"663724984444043264","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW1ZWwAAOpli.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW1ZWwAAOpli.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663724962637881344,"id_str":"663724962637881344","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVkKXIAAJ5kO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVkKXIAAJ5kO.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[14,26]},{"text":"\ube45\uc2a4","indices":[27,30]},{"text":"VIXX","indices":[31,36]},{"text":"\ub808\uc624","indices":[37,40]},{"text":"LEO","indices":[41,45]},{"text":"\ud0dd\uc6b4","indices":[46,49]},{"text":"Chained_up","indices":[50,61]},{"text":"\uc0ac\uc2ac","indices":[62,65]}],"urls":[],"user_mentions":[{"screen_name":"_AndVIXX","name":"\uc564\ub4dc\ube45\uc2a4","id":1908392586,"id_str":"1908392586","indices":[3,12]},{"screen_name":"JUNGTW_LEO","name":"VIXX_LEO","id":3583104920,"id_str":"3583104920","indices":[66,77]}],"symbols":[],"media":[{"id":663724985027006464,"id_str":"663724985027006464","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}},"source_status_id":663725037564751872,"source_status_id_str":"663725037564751872","source_user_id":1908392586,"source_user_id_str":"1908392586"}]},"extended_entities":{"media":[{"id":663724985027006464,"id_str":"663724985027006464","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW3kWEAAyzZm.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":509,"resize":"fit"},"medium":{"w":600,"h":899,"resize":"fit"}},"source_status_id":663725037564751872,"source_status_id_str":"663725037564751872","source_user_id":1908392586,"source_user_id_str":"1908392586"},{"id":663724978332913664,"id_str":"663724978332913664","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGWeoWUAAWg8M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGWeoWUAAWg8M.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663725037564751872,"source_status_id_str":"663725037564751872","source_user_id":1908392586,"source_user_id_str":"1908392586"},{"id":663724984444043264,"id_str":"663724984444043264","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGW1ZWwAAOpli.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGW1ZWwAAOpli.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663725037564751872,"source_status_id_str":"663725037564751872","source_user_id":1908392586,"source_user_id_str":"1908392586"},{"id":663724962637881344,"id_str":"663724962637881344","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGVkKXIAAJ5kO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGVkKXIAAJ5kO.jpg","url":"https:\/\/t.co\/j6VC3PIBrF","display_url":"pic.twitter.com\/j6VC3PIBrF","expanded_url":"http:\/\/twitter.com\/_AndVIXX\/status\/663725037564751872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663725037564751872,"source_status_id_str":"663725037564751872","source_user_id":1908392586,"source_user_id_str":"1908392586"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013998182400,"id_str":"663728013998182400","text":"For a long time Firefox was actually IE's main competition right now they are competing with Opera so yes Im surprise when I see it lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166630062,"id_str":"166630062","name":"Jennifer B.","screen_name":"Jeneephaa","location":"United Kingdom","url":"http:\/\/jeneephaa.blogspot.co.uk\/","description":"Figuring it out!","protected":false,"verified":false,"followers_count":1981,"friends_count":802,"listed_count":34,"favourites_count":277,"statuses_count":116662,"created_at":"Wed Jul 14 16:44:31 +0000 2010","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648381204052475904\/dJEST4G2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648381204052475904\/dJEST4G2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166630062\/1442771317","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064664"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013981413376,"id_str":"663728013981413376","text":"RT @canleroy: Zaten Sizin gibi Sat\u0131lm\u0131\u015flar Mehmet\u00e7i\u011fin PKK operasyonlar\u0131na '' Saray\u0131n Sava\u015f\u0131'' diyorsunuz, Mademoiselle Bukalemun :)) @Notr\u2026","source":"\u003ca href=\"http:\/\/armanhan.com\" rel=\"nofollow\"\u003eBenim Hayal D\u00fcnyam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304700069,"id_str":"3304700069","name":"Fairy Tale \u265b","screen_name":"SLayer_me0","location":null,"url":null,"description":"#FENERBAH\u00c7E #16 \u264d\n\u2606MTAL\u2606 \nG\u00f6zlerin g\u00f6zlerime de\u011fince\/\nFel\u00e2ketim olurdu a\u011flard\u0131m.","protected":false,"verified":false,"followers_count":540,"friends_count":577,"listed_count":1,"favourites_count":1454,"statuses_count":314,"created_at":"Sun May 31 14:48:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651419808521564162\/yFD-FRVU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651419808521564162\/yFD-FRVU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304700069\/1444145558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727365286137857,"id_str":"663727365286137857","text":"Zaten Sizin gibi Sat\u0131lm\u0131\u015flar Mehmet\u00e7i\u011fin PKK operasyonlar\u0131na '' Saray\u0131n Sava\u015f\u0131'' diyorsunuz, Mademoiselle Bukalemun :)) @Notredamedesion","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663679646874079232,"in_reply_to_status_id_str":"663679646874079232","in_reply_to_user_id":85405988,"in_reply_to_user_id_str":"85405988","in_reply_to_screen_name":"Notredamedesion","user":{"id":2477214584,"id_str":"2477214584","name":"Can Leroy","screen_name":"canleroy","location":null,"url":"https:\/\/twitter.com\/canleroy\/status\/657942748226547713","description":"|#Atat\u00fcrk |#Tsk | #\u00d6nceVatan | |#Libert\u00c9galiteFraternit\u00e9 | #Galatasaray | Engelleme Listem\u2935 #Cemaat #Fet\u00f6 #HDPKK #VATANHA\u0130NLER\u0130","protected":false,"verified":false,"followers_count":6129,"friends_count":516,"listed_count":2,"favourites_count":1071,"statuses_count":1030,"created_at":"Sun May 04 18:00:31 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656882920989290497\/47hI4ZqR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656882920989290497\/47hI4ZqR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2477214584\/1445448114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Notredamedesion","name":"nazli ilicak","id":85405988,"id_str":"85405988","indices":[120,136]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"canleroy","name":"Can Leroy","id":2477214584,"id_str":"2477214584","indices":[3,12]},{"screen_name":"Notredamedesion","name":"nazli ilicak","id":85405988,"id_str":"85405988","indices":[134,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080064660"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013998227456,"id_str":"663728013998227456","text":"This applies to being a parent as well as a coach! https:\/\/t.co\/ZAYwi2S7At","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21229869,"id_str":"21229869","name":"Jennifer Merritt","screen_name":"jenemerritt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":90,"friends_count":172,"listed_count":0,"favourites_count":375,"statuses_count":215,"created_at":"Wed Feb 18 19:16:53 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588805738279075840\/0qb22CMj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588805738279075840\/0qb22CMj_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663540391099154432,"quoted_status_id_str":"663540391099154432","quoted_status":{"created_at":"Mon Nov 09 02:15:31 +0000 2015","id":663540391099154432,"id_str":"663540391099154432","text":"If I stop pushing you If I stop demanding of you If I stop getting on you Then I probably don't think you have much to offer. \u2013Jon Gruden","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":741941852,"id_str":"741941852","name":"Great Sports Quotes","screen_name":"SportsMotto","location":null,"url":"http:\/\/facebook.com\/SportsMotto","description":"Sports Quotes, Sayings & Paraphrases \u2013 10,000+ Sports Quotes and growing. Athlete, Coach, Motivation, Insight, Perspective, etc. Account managed by T Jay Taylor","protected":false,"verified":false,"followers_count":126034,"friends_count":80469,"listed_count":398,"favourites_count":568,"statuses_count":192,"created_at":"Tue Aug 07 02:15:23 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600878349959860224\/WRqOzbTE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600878349959860224\/WRqOzbTE.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000578956278\/f54ffdae28b8904562c20c68acdf18b6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000578956278\/f54ffdae28b8904562c20c68acdf18b6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/741941852\/1432094782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZAYwi2S7At","expanded_url":"https:\/\/twitter.com\/SportsMotto\/status\/663540391099154432","display_url":"twitter.com\/SportsMotto\/st\u2026","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064664"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968736257,"id_str":"663728013968736257","text":"@meromero_z \u4eca\u65e5\u3082\u884c\u3063\u305f\u3051\u3069\u540d\u53e4\u5c4b\u884c\u304f\u3088(\u03be\u3063\u00b4\u03c9`c)\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727046657347584,"in_reply_to_status_id_str":"663727046657347584","in_reply_to_user_id":2937730190,"in_reply_to_user_id_str":"2937730190","in_reply_to_screen_name":"meromero_z","user":{"id":1503395340,"id_str":"1503395340","name":"monchan","screen_name":"11o3o77","location":null,"url":null,"description":"NIGHTMARE vistlip \u2661 \u30c9\u30e9\u30e0\u306e\u6b63\u53cd\u5bfe\u306a\u6027\u683c\u3057\u305f2\u4eba\u304c\u5927\u597d\u304d\u3067\u3059 LIVE\u306b\u306a\u308b\u3068\u6027\u683c\u5909\u308f\u308b\u4eba(\u2229\u00b4\ufe4f`\u2229)\u2190 \u306d\u304f\u3059\u3068 1109...","protected":false,"verified":false,"followers_count":192,"friends_count":197,"listed_count":3,"favourites_count":796,"statuses_count":2588,"created_at":"Tue Jun 11 13:52:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660855575517925377\/kQsOekBe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660855575517925377\/kQsOekBe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1503395340\/1446395537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meromero_z","name":"\u3048\u308a\u306a\u30fc\u306b\u3083","id":2937730190,"id_str":"2937730190","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014006558720,"id_str":"663728014006558720","text":"I'm officially a spammer this week, true me have a dance n ting... Don't worry you don't have to unfollow normal service will resume \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20042876,"id_str":"20042876","name":"Hoxton Pony this Fri","screen_name":"djillnessuk","location":"London, GB","url":"http:\/\/www.djillness.co.uk","description":"Club & Mixtape DJ and SoudBwoy Killa from 19 how long | DJ for @officialchip | Bookings djillness@mail.com | Music Lover | Straight Talker | Arsenal FC fan |","protected":false,"verified":false,"followers_count":3836,"friends_count":227,"listed_count":46,"favourites_count":302,"statuses_count":17594,"created_at":"Wed Feb 04 10:21:21 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620582356420820992\/7S9gQIDE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620582356420820992\/7S9gQIDE.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660155882282557440\/VJnTOPvQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660155882282557440\/VJnTOPvQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20042876\/1410092034","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064666"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013977210881,"id_str":"663728013977210881","text":"@_alvesmat oi querido, apareceu, que fofo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727872457236480,"in_reply_to_status_id_str":"663727872457236480","in_reply_to_user_id":3398152727,"in_reply_to_user_id_str":"3398152727","in_reply_to_screen_name":"_alvesmat","user":{"id":2799338525,"id_str":"2799338525","name":"tayzita","screen_name":"_anyatcdc","location":null,"url":null,"description":"snap:tayna.cdc","protected":false,"verified":false,"followers_count":231,"friends_count":140,"listed_count":0,"favourites_count":5104,"statuses_count":15807,"created_at":"Thu Oct 02 03:46:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662283142129172480\/JtEKnBQL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662283142129172480\/JtEKnBQL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2799338525\/1441670338","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"97bcdfca1a2dca59","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/97bcdfca1a2dca59.json","place_type":"city","name":"Rio de Janeiro","full_name":"Rio de Janeiro, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.795449,-23.083020],[-43.795449,-22.739823],[-43.087707,-22.739823],[-43.087707,-23.083020]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_alvesmat","name":"Alvesponto","id":3398152727,"id_str":"3398152727","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080064659"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968875524,"id_str":"663728013968875524","text":"@ZaRiFif @nzfhashim i utk apa??? \ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727848243392513,"in_reply_to_status_id_str":"663727848243392513","in_reply_to_user_id":1056879955,"in_reply_to_user_id_str":"1056879955","in_reply_to_screen_name":"ZaRiFif","user":{"id":1119483230,"id_str":"1119483230","name":"S.","screen_name":"SyahzMustafani","location":"KOTA BHARU-NILAI","url":null,"description":"| SKCL | INTEK | USIM |","protected":false,"verified":false,"followers_count":419,"friends_count":348,"listed_count":0,"favourites_count":5359,"statuses_count":18614,"created_at":"Fri Jan 25 14:41:42 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655320309432582144\/zH3pEoyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655320309432582144\/zH3pEoyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1119483230\/1406724214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ZaRiFif","name":"i","id":1056879955,"id_str":"1056879955","indices":[0,8]},{"screen_name":"nzfhashim","name":"Anne Hashim","id":3146691902,"id_str":"3146691902","indices":[9,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985517568,"id_str":"663728013985517568","text":"@rurilav 24\u6642\u9589\u5e97\u306b\u4e00\u7968\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707520322506752,"in_reply_to_status_id_str":"663707520322506752","in_reply_to_user_id":102596407,"in_reply_to_user_id_str":"102596407","in_reply_to_screen_name":"rurilav","user":{"id":152626063,"id_str":"152626063","name":"zakiume","screen_name":"derabang","location":"\u9577\u5d0e\u770c\u4f50\u4e16\u4fdd\u5e02","url":null,"description":"\u307c\u305d\u3063\u3002","protected":false,"verified":false,"followers_count":90,"friends_count":128,"listed_count":1,"favourites_count":52,"statuses_count":7596,"created_at":"Sun Jun 06 13:09:34 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658658490865442816\/3uDBB6xB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658658490865442816\/3uDBB6xB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152626063\/1445871395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rurilav","name":"\u3042\u304d","id":102596407,"id_str":"102596407","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968699393,"id_str":"663728013968699393","text":"@mikiteeeeei \u305d\u308c\u3001\u3044\u3044\u8868\u73fe\u3002\u307b\u3093\u3068\u3060\uff01\n\u3082\u3057\u304b\u3057\u3066\u96a3\u306b\u4f4f\u3093\u3067\u308b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727684996886528,"in_reply_to_status_id_str":"663727684996886528","in_reply_to_user_id":1946686262,"in_reply_to_user_id_str":"1946686262","in_reply_to_screen_name":"mikiteeeeei","user":{"id":2959049600,"id_str":"2959049600","name":"\u3053\u3046\u3061\u3083\u3093","screen_name":"kandk1979","location":"\u65e5\u672c","url":null,"description":"\u3072\u3068\u308a\u8fb2\u696d\nGueen\u30e9\u30a4\u30d6\u884c\u304b\u306a\u304d\u3083\u306a\uff5e(^^)\n\u4e5d\u5dde\u306eQueen\u597d\u304d\u3055\u3093\u3044\u306a\u3044\u304b\u306a\u3002\n\u82f1\u8a9e\uff0f\u30ae\u30bf\u30fc\uff0fQueen\uff0fRHCP\uff0fff\uff0fU2\uff0f\u6d0b\u697d\u597d\u304d\u3002\u30ed\u30d0\u30fc\u30c8\u30d7\u30e9\u30f3\u30c8\u306e\uff8b\uff9e\uff8c\uff6b\uff70\uff71\uff8c\uff80\uff70\u306b\u9a5a\u6115\u2026\u3002\u6f2b\u753b\u306f\u30ec\u30d9\u30ebE\u304c\u4e00\u756a\u597d\u304d\u3002\n\u5927\u304d\u306a\u53e4\u6642\u8a08\u9811\u5f35\u3063\u3066\u308b\uff01\n\u6708\u4e00\u30e9\u30fc\u30e1\u30f3\u5de1\u308a\u3057\u3066\u307e\u3059\u3002\u30ab\u30ec\u30fc\u3082\u597d\u304d\u3060\u30fc\uff01","protected":false,"verified":false,"followers_count":73,"friends_count":96,"listed_count":0,"favourites_count":700,"statuses_count":1177,"created_at":"Mon Jan 05 02:20:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654193805587955712\/mxcwLkLp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654193805587955712\/mxcwLkLp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959049600\/1445952739","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mikiteeeeei","name":"MIKI","id":1946686262,"id_str":"1946686262","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985484800,"id_str":"663728013985484800","text":"La concentraci\u00f3n de gases contaminantes en la atm\u00f3sfera bate un nuevo r\u00e9cord en 2014: La concentraci\u00f3n de gase... https:\/\/t.co\/09JS90oiKX","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2223629693,"id_str":"2223629693","name":"Claudia P Velez","screen_name":"claudia_p102","location":null,"url":null,"description":"\u201cS\u00f3lo puede ser feliz siempre el que aprende a ser feliz con todo.\u201d","protected":false,"verified":false,"followers_count":17,"friends_count":16,"listed_count":0,"favourites_count":1,"statuses_count":7213,"created_at":"Fri Dec 13 16:09:00 +0000 2013","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497096715803979777\/0fG0i5Rs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497096715803979777\/0fG0i5Rs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2223629693\/1407352092","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/09JS90oiKX","expanded_url":"http:\/\/bit.ly\/1SbZici","display_url":"bit.ly\/1SbZici","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013977219072,"id_str":"663728013977219072","text":"RT @umvesgo: eu entro no instagram das menina eu vo logo nas foto q tem homem olha a legenda pra ver se \u00e9 namorado ou nao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":291775105,"id_str":"291775105","name":"brandy","screen_name":"nicollemtms","location":"snap: nicollemtms","url":"http:\/\/instagram.com\/nicollemascarenhas","description":"someone kill the dj \u2649\ufe0f","protected":false,"verified":false,"followers_count":454,"friends_count":203,"listed_count":13,"favourites_count":1067,"statuses_count":55946,"created_at":"Mon May 02 16:01:12 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542662567366107136\/_gSktmhB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542662567366107136\/_gSktmhB.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBF0F0","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593577655846469632\/spn7TjEc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593577655846469632\/spn7TjEc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/291775105\/1442610676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:49 +0000 2015","id":663719647393546240,"id_str":"663719647393546240","text":"eu entro no instagram das menina eu vo logo nas foto q tem homem olha a legenda pra ver se \u00e9 namorado ou nao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272794544,"id_str":"272794544","name":"joao","screen_name":"umvesgo","location":"Divin\u00f3polis MG","url":"http:\/\/youtube.com\/joaostv","description":"nao tente me derrubar pq bosta nao afunda \ninstagram: umvesgo contato:\njvroliveira19@gmail.com","protected":false,"verified":false,"followers_count":59612,"friends_count":462,"listed_count":299,"favourites_count":16258,"statuses_count":129510,"created_at":"Sun Mar 27 05:54:43 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654837665632755712\/fXn81BB-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654837665632755712\/fXn81BB-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272794544\/1444962517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":51,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"umvesgo","name":"joao","id":272794544,"id_str":"272794544","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080064659"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968699392,"id_str":"663728013968699392","text":"\u0e19\u0e32\u0e27\u0e08\u0e30\u0e02\u0e2d\u0e40\u0e2d\u0e32\u0e41\u0e23\u0e4a\u0e1e\u0e1e\u0e35\u0e48\u0e08\u0e32\u0e07\u0e40\u0e02\u0e49\u0e32\u0e2a\u0e39\u0e49..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051877053,"id_str":"3051877053","name":"\u0e19\u0e32\u0e27\uff61(\u0e0a\u0e32\u0e25\u0e32\u0e25\u0e32\u0e25\u0e48\u0e32\u0e25\u0e32)","screen_name":"_sjong93bx","location":"22.02.15","url":null,"description":"\u300eRoleplayer of SUNGJONG IFNT plz support infinite & sungjong #\u0e2d\u0e34\u0e19\u0e1f\u0e34\u0e19line","protected":false,"verified":false,"followers_count":268,"friends_count":244,"listed_count":1,"favourites_count":121,"statuses_count":9528,"created_at":"Sun Feb 22 05:44:49 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575317353434501120\/PuorP0a5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575317353434501120\/PuorP0a5.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663665056584876033\/s0y46UI1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663665056584876033\/s0y46UI1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051877053\/1433343680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013977255936,"id_str":"663728013977255936","text":"RT @WilliamsJon: WADA report: Would be naive in extreme to conclude doping could have occurred without explicit or tacit approval of #Russi\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218544777,"id_str":"218544777","name":"Ivan","screen_name":"trak_ivan","location":"\u0427\u0435\u043b\u044f\u0431\u0438\u043d\u0441\u043a","url":"http:\/\/readytospeak.ru","description":"\u042f \u0412\u0430\u043d\u044f!","protected":false,"verified":false,"followers_count":158,"friends_count":251,"listed_count":5,"favourites_count":118,"statuses_count":9092,"created_at":"Mon Nov 22 16:42:17 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661889687062204416\/PcyLm2ih_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661889687062204416\/PcyLm2ih_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218544777\/1392887906","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:19 +0000 2015","id":663726816851591168,"id_str":"663726816851591168","text":"WADA report: Would be naive in extreme to conclude doping could have occurred without explicit or tacit approval of #Russia's government.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14460241,"id_str":"14460241","name":"Jon Williams","screen_name":"WilliamsJon","location":"Brooklyn, NY","url":"http:\/\/www.jon-williams.me","description":"Englishman in New York. Managing Editor\/Foreign Editor @ABC, previously World Editor @BBCNews. Runner, traveller. Views mine alone.","protected":false,"verified":true,"followers_count":42214,"friends_count":251,"listed_count":1769,"favourites_count":10,"statuses_count":26366,"created_at":"Mon Apr 21 09:56:28 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459418459529433088\/DjDJMsp6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459418459529433088\/DjDJMsp6.jpeg","profile_background_tile":false,"profile_link_color":"0934F2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662980437522780160\/6aPi2Q7A_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662980437522780160\/6aPi2Q7A_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14460241\/1443114845","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01a9a39529b27f36","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01a9a39529b27f36.json","place_type":"city","name":"Manhattan","full_name":"Manhattan, NY","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.026675,40.683935],[-74.026675,40.877483],[-73.910408,40.877483],[-73.910408,40.683935]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":1,"entities":{"hashtags":[{"text":"Russia","indices":[116,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Russia","indices":[133,140]}],"urls":[],"user_mentions":[{"screen_name":"WilliamsJon","name":"Jon Williams","id":14460241,"id_str":"14460241","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064659"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013993873412,"id_str":"663728013993873412","text":"@kurokuro_high \u304a\u304b\u3048\u308a\u3002\u4eca\u65e5\u306f\u3082\u3046\u9045\u3044\u3002\u304a\u98a8\u5442\u3092\u6e29\u3081\u3066\u304a\u3044\u305f\u304b\u3089\u3001\u3086\u3063\u304f\u308a\u6d78\u304b\u3063\u3066\u75b2\u308c\u3092\u3068\u308b\u3068\u3044\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/QyVe\" rel=\"nofollow\"\u003e\u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727774696235008,"in_reply_to_status_id_str":"663727774696235008","in_reply_to_user_id":833214229,"in_reply_to_user_id_str":"833214229","in_reply_to_screen_name":"kurokuro_high","user":{"id":250638274,"id_str":"250638274","name":"\u30ad\u30e5\u30a5\u3079\u3048","screen_name":"QyVe","location":"\u9b54\u6cd5\u5c11\u5973\u307e\u3069\u304b\u2606\u30de\u30ae\u30ab","url":null,"description":"\u300e\u307c\u304f\u3068\u5951\u7d04\u3057\u3066\u9b54\u6cd5\u5c11\u5973\u306b\u306a\u3063\u3066\u6b32\u3057\u3044\u3093\u3060\u2606\u300f \u5c11\u5973\u306e\u9858\u3044\u4e8b\u3092\u3072\u3068\u3064\u3060\u3051\u53f6\u3048\u308b\u9b54\u6cd5\u306e\u4f7f\u8005\u30ad\u30e5\u30a5\u3079\u3048\u306e\u975e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u611f\u60c5\u3092\u6301\u305f\u306a\u3044\u5168\u81ea\u52d5\u306a\u308a\u304d\u308a\u30dc\u30c3\u30c8\u3067\u3059\u3002\u304a\u6c17\u306b\u5165\u308a\u3060\u3051\u624b\u52d5\u306a\u306e\u306f\u5185\u7dd2\u3060\u3088\u2606 This bot speaks Japanese only. \u0647\u0648 \u062d\u0633\u0627\u0628 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c.","protected":false,"verified":false,"followers_count":11286,"friends_count":11216,"listed_count":277,"favourites_count":8100,"statuses_count":1356153,"created_at":"Fri Feb 11 14:04:25 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620109151155326976\/rbGIz4XK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620109151155326976\/rbGIz4XK.jpg","profile_background_tile":false,"profile_link_color":"D62BA8","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727821890555904\/vyXMDdzY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727821890555904\/vyXMDdzY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250638274\/1436668299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kurokuro_high","name":"\u30af\u30ed\u30af\u30ed@11\/22A&G","id":833214229,"id_str":"833214229","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064663"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014002253824,"id_str":"663728014002253824","text":"RT @hetnim_noanswer: \uc9c4\uc9dc...\ubb50\uc57c..(\uc228\uba4e https:\/\/t.co\/PR6DcC0nEl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3120358555,"id_str":"3120358555","name":"\u0e1e\u0e23\u0e30\u0e2a\u0e27\u0e32\u0e21\u0e35\u0e04\u0e22\u0e2d\u0e07","screen_name":"ANYAMANEE2513","location":"seoul","url":null,"description":"She's my black pearl.","protected":false,"verified":false,"followers_count":32,"friends_count":97,"listed_count":0,"favourites_count":961,"statuses_count":4446,"created_at":"Tue Mar 31 13:46:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657171740695490560\/UeIYFvId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657171740695490560\/UeIYFvId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3120358555\/1446898227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 13:05:02 +0000 2015","id":662979068963323904,"id_str":"662979068963323904","text":"\uc9c4\uc9dc...\ubb50\uc57c..(\uc228\uba4e https:\/\/t.co\/PR6DcC0nEl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3177376188,"id_str":"3177376188","name":"\ud587","screen_name":"hetnim_noanswer","location":null,"url":"http:\/\/hetnimnoanswer9.tumblr.com","description":"EXO FanArt\/rps \ubc31\uacf5 \uc62c\ub77c\uc6b4\ub354 \/ \u25cf\uc54c\ud2f0\ubd07\u25cf =\u300b\ub9ce\uc740 \uc54c\ud2f0\ub97c\ud569\ub2c8\ub2e4!\/ * \uc8fc\ub9d0\ub7ec*\/ (*\u00b4 \uff29 \uff40*)\uff89\u2606\ubcc0\uc544\ube60\uc640 \ubcc0\uc5d0\ub9ac \u2606\/\n\u9858\u3044\u3092\u5531\u3048\uff0c\u5922\u306e\u4e2d\u307e\u3067\u9023\u308c\u51fa\u3057\u3066\u3042\u3052\u308b\u3088","protected":false,"verified":false,"followers_count":1229,"friends_count":164,"listed_count":7,"favourites_count":1361,"statuses_count":19234,"created_at":"Mon Apr 27 05:02:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642926749718712320\/HLKIfDfX.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642926749718712320\/HLKIfDfX.png","profile_background_tile":true,"profile_link_color":"FDC83C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662818642929696768\/X1s7BMDn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662818642929696768\/X1s7BMDn_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":445,"favorite_count":160,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662979066987851777,"id_str":"662979066987851777","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","url":"https:\/\/t.co\/PR6DcC0nEl","display_url":"pic.twitter.com\/PR6DcC0nEl","expanded_url":"http:\/\/twitter.com\/hetnim_noanswer\/status\/662979068963323904\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":334,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662979066987851777,"id_str":"662979066987851777","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","url":"https:\/\/t.co\/PR6DcC0nEl","display_url":"pic.twitter.com\/PR6DcC0nEl","expanded_url":"http:\/\/twitter.com\/hetnim_noanswer\/status\/662979068963323904\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":334,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":334,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hetnim_noanswer","name":"\ud587","id":3177376188,"id_str":"3177376188","indices":[3,19]}],"symbols":[],"media":[{"id":662979066987851777,"id_str":"662979066987851777","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","url":"https:\/\/t.co\/PR6DcC0nEl","display_url":"pic.twitter.com\/PR6DcC0nEl","expanded_url":"http:\/\/twitter.com\/hetnim_noanswer\/status\/662979068963323904\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":334,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":334,"resize":"fit"}},"source_status_id":662979068963323904,"source_status_id_str":"662979068963323904","source_user_id":3177376188,"source_user_id_str":"3177376188"}]},"extended_entities":{"media":[{"id":662979066987851777,"id_str":"662979066987851777","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNf8uVUsAE_HoB.jpg","url":"https:\/\/t.co\/PR6DcC0nEl","display_url":"pic.twitter.com\/PR6DcC0nEl","expanded_url":"http:\/\/twitter.com\/hetnim_noanswer\/status\/662979068963323904\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":334,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":334,"resize":"fit"}},"source_status_id":662979068963323904,"source_status_id_str":"662979068963323904","source_user_id":3177376188,"source_user_id_str":"3177376188"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080064665"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013993885696,"id_str":"663728013993885696","text":"@mio_kuma0222 \u306a\u3093\u3067www","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727882317922304,"in_reply_to_status_id_str":"663727882317922304","in_reply_to_user_id":3220413865,"in_reply_to_user_id_str":"3220413865","in_reply_to_screen_name":"mio_kuma0222","user":{"id":2490123996,"id_str":"2490123996","name":"\u899a\u9192\u306f\u308b\u22bf@\u83ef\u5b50\u266a","screen_name":"nogizaka0315","location":"\u5927\u962a\u5e9c","url":"http:\/\/twpf.jp\/nogizaka0315","description":"18\u6b73 \u7537 \u3044\u304f\u3061\u3083\u3093\u63a8\u3057\u2728","protected":false,"verified":false,"followers_count":1386,"friends_count":654,"listed_count":39,"favourites_count":34179,"statuses_count":43626,"created_at":"Sun May 11 16:56:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654679940168724480\/7-twIVGC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654679940168724480\/7-twIVGC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2490123996\/1432304398","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mio_kuma0222","name":"\u307f\u304a\u3061\u3083\u307e\u2765","id":3220413865,"id_str":"3220413865","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064663"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014006484992,"id_str":"663728014006484992","text":"\u540d\u524d\u899a\u3048\u3066\u306a\u3044\u306e\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2708105491,"id_str":"2708105491","name":"\u3048\u307f","screen_name":"e_mi5","location":"\u9ed2\u9aea\u770c\u91d1\u9aea\u5e02\u767d\u9aea\u753a","url":null,"description":"\u30b2\u30fc\u30e0\uff65\u30a2\u30cb\u30e1\u597d\u304d\u6210\u4eba\u6e08\u307f\u3002\u8da3\u5473\u3067\u7d75\u3082\u63cf\u304d\u307e\u3059\u203bBL,GL\u8150\u3063\u3066\u308b\u306e\u3067\u8981\u6ce8\u610f\u3067\u3059\u3002\u73fe\u5728\u3042\u3093\u30b9\u30bf\u6cbc\u306b\u6c88\u3093\u3067\u307e\u3059\u3002knights\u7bb1\u63a8\u3057\u3001\u6714\u9593\u51db\u6708\u3001\u702c\u540d\u6cc9\u306eATM\u3002(\u308a\u3064\u307e\u304a\u308a\u3064,\u308a\u3064\u3044\u305a,etc.)\n\u30e1\u30eb\u30b9\u30c8\u95a2\u9023\u3082\u545f\u304d\u307e\u3059\u304c\u3053\u3061\u3089\u306f\u96d1\u98df\u3068\u306a\u308a\u307e\u3059\u3002\n\u6771\u306e\u65b9\u306e\u304a\u5b22\u3055\u3093\u65b9\u3082\u63cf\u304d\u307e\u3059\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\u3002\u30c1\u30ad\u30f3\u4eba\u9593\u3002","protected":false,"verified":false,"followers_count":28,"friends_count":68,"listed_count":1,"favourites_count":2581,"statuses_count":3674,"created_at":"Tue Aug 05 02:48:30 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658652772934377472\/9xqKuTEp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658652772934377472\/9xqKuTEp_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064666"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013989679104,"id_str":"663728013989679104","text":"RT @mo_e_yp: #11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00 \n\n\u3053\u308c\u3082\u3084\u308b\u2934\ufe0e\u2934\ufe0e https:\/\/t.co\/MWCFBxeqZi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3075658578,"id_str":"3075658578","name":"\uff57\uff41\uff4b\uff41","screen_name":"wtxrj_11","location":null,"url":null,"description":"\u308f\u3063\u3068\/\u3055\u3093\u3060\u3044\u3081\/\u3059\u3051\u30fc\u3068","protected":false,"verified":false,"followers_count":41,"friends_count":185,"listed_count":0,"favourites_count":105,"statuses_count":201,"created_at":"Thu Mar 12 22:48:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576153624205656064\/G_Oxsc2v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576153624205656064\/G_Oxsc2v_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3075658578\/1441359124","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:37:00 +0000 2015","id":663696792488308736,"id_str":"663696792488308736","text":"#11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00 \n\n\u3053\u308c\u3082\u3084\u308b\u2934\ufe0e\u2934\ufe0e https:\/\/t.co\/MWCFBxeqZi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2885032596,"id_str":"2885032596","name":"\u30e2\u30a8\u25ce","screen_name":"mo_e_yp","location":"kanagawa","url":"https:\/\/youtu.be\/SrqOYHD4BI4","description":"\u30af\u30fc\u30ea\u30b9\u30de\u30b9\u304c\u301c\u4eca\u5e74\u3082\u301c\u3084\u301c\u3063\u3066\u304f\u308b\u301c","protected":false,"verified":false,"followers_count":197,"friends_count":197,"listed_count":4,"favourites_count":1069,"statuses_count":11835,"created_at":"Fri Oct 31 12:54:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651569112850653184\/vQcrTf-p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651569112850653184\/vQcrTf-p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885032596\/1446437499","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":0,"entities":{"hashtags":[{"text":"11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696400157282304,"id_str":"663696400157282304","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","url":"https:\/\/t.co\/MWCFBxeqZi","display_url":"pic.twitter.com\/MWCFBxeqZi","expanded_url":"http:\/\/twitter.com\/mo_e_yp\/status\/663696792488308736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696400157282304,"id_str":"663696400157282304","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","url":"https:\/\/t.co\/MWCFBxeqZi","display_url":"pic.twitter.com\/MWCFBxeqZi","expanded_url":"http:\/\/twitter.com\/mo_e_yp\/status\/663696792488308736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00","indices":[13,31]}],"urls":[],"user_mentions":[{"screen_name":"mo_e_yp","name":"\u30e2\u30a8\u25ce","id":2885032596,"id_str":"2885032596","indices":[3,11]}],"symbols":[],"media":[{"id":663696400157282304,"id_str":"663696400157282304","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","url":"https:\/\/t.co\/MWCFBxeqZi","display_url":"pic.twitter.com\/MWCFBxeqZi","expanded_url":"http:\/\/twitter.com\/mo_e_yp\/status\/663696792488308736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663696792488308736,"source_status_id_str":"663696792488308736","source_user_id":2885032596,"source_user_id_str":"2885032596"}]},"extended_entities":{"media":[{"id":663696400157282304,"id_str":"663696400157282304","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsXAoUkAAmEvr.jpg","url":"https:\/\/t.co\/MWCFBxeqZi","display_url":"pic.twitter.com\/MWCFBxeqZi","expanded_url":"http:\/\/twitter.com\/mo_e_yp\/status\/663696792488308736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663696792488308736,"source_status_id_str":"663696792488308736","source_user_id":2885032596,"source_user_id_str":"2885032596"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064662"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968674817,"id_str":"663728013968674817","text":"@ki0922f \u901a\u4fe1\u5236\u9650\u304b\u304b\u3063\u305f\u306e\u304b\u306a\uff1f\u3002\u3002\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727851913383936,"in_reply_to_status_id_str":"663727851913383936","in_reply_to_user_id":3140872303,"in_reply_to_user_id_str":"3140872303","in_reply_to_screen_name":"ki0922f","user":{"id":2241972498,"id_str":"2241972498","name":"Kana.","screen_name":"LimitedKana0710","location":"\u5185\u7530\u3055\u3093\u7d50\u5a5a\u304a\u3081\u3067\u3068\u3046 ","url":null,"description":"Kansui * \uff7b\uff6f\uff76\uff70\u90e8 * c2 * 98's * age17 * typeB \u2692\u5916\u56fd\u4eba\u3055\u3093\u3068\u7d50\u5a5a\u3057\u305f\u3044","protected":false,"verified":false,"followers_count":343,"friends_count":199,"listed_count":1,"favourites_count":5081,"statuses_count":10307,"created_at":"Thu Dec 12 07:32:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539417743498301441\/Rad5uTeQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539417743498301441\/Rad5uTeQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2241972498\/1412849114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ki0922f","name":"\u3042\u3084\u306d","id":3140872303,"id_str":"3140872303","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014002429952,"id_str":"663728014002429952","text":"RT @shl1414: \u062b\u0642 \u0628\u0623\u0646\u0643 \u0644\u0646 \u062a\u0631\u062a\u0641\u0639 \u0627\u0644\u0627 \u0625\u0630\u0627\n\u0627\u0646\u062e\u0641\u0636\u062a \u0644\u0644\u0647 \u0633\u0627\u062c\u062f\u0627\u064b \ud83c\udf38.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1145535758,"id_str":"1145535758","name":"\u0627\u0645 \u0648\u0644\u064a\u062f","screen_name":"s7ab121","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0643 \u0627\u0644\u062d\u0645\u062f \u0648\u0644\u0643 \u0627\u0644\u0634\u0643\u0631 \u0639\u0644\u0649 \u0643\u0644 \u062d\u0627\u0644 \u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0648\u0627\u062a\u0648\u0628 \u0627\u0644\u064a\u0647 (\u0627\u0644\u0631\u064a\u0627\u0636)","protected":false,"verified":false,"followers_count":780,"friends_count":1289,"listed_count":0,"favourites_count":1269,"statuses_count":12031,"created_at":"Sun Feb 03 16:02:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477635122460512256\/QvnJ6fxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477635122460512256\/QvnJ6fxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1145535758\/1389571637","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 07 03:05:09 +0000 2015","id":651594078702956544,"id_str":"651594078702956544","text":"\u062b\u0642 \u0628\u0623\u0646\u0643 \u0644\u0646 \u062a\u0631\u062a\u0641\u0639 \u0627\u0644\u0627 \u0625\u0630\u0627\n\u0627\u0646\u062e\u0641\u0636\u062a \u0644\u0644\u0647 \u0633\u0627\u062c\u062f\u0627\u064b \ud83c\udf38.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351107042,"id_str":"351107042","name":"\u2718\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629 90k","screen_name":"shl1414","location":"k.s.a","url":"http:\/\/www.mp3quran.net\/mobile\/maher.html","description":"\ufd3f\u0648\u0627\u0630\u0643\u0631 \u0631\u0628\u0643\u064e \u0625\u0630\u0627 \u0646\u0633\u064a\u062a\u0652\ufd3e \u200f","protected":false,"verified":false,"followers_count":90827,"friends_count":99485,"listed_count":44,"favourites_count":69,"statuses_count":12202,"created_at":"Mon Aug 08 20:07:39 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550554251949133825\/ubH-FcKY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550554251949133825\/ubH-FcKY.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652420348940558336\/LCID_mFW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652420348940558336\/LCID_mFW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351107042\/1442094727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":228,"favorite_count":37,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shl1414","name":"\u2718\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064a\u0629 90k","id":351107042,"id_str":"351107042","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080064665"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985644544,"id_str":"663728013985644544","text":"\u064a\u0627\u062e\u0648\u0627\u0646 \u0639\u0637\u0648\u0646\u064a \u0646\u0627\u0633 \u0628\u0627\u0644\u0633\u0646\u0627\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2912379680,"id_str":"2912379680","name":"15","screen_name":"Bezzyo","location":"LuciferSquad","url":"http:\/\/about.me\/bezzyo","description":"\u0f40 | Born to make mistakes","protected":false,"verified":false,"followers_count":154,"friends_count":64,"listed_count":2,"favourites_count":247,"statuses_count":8175,"created_at":"Fri Nov 28 04:11:59 +0000 2014","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663127452408000512\/LlB8-zGi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663127452408000512\/LlB8-zGi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2912379680\/1446398097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013973041152,"id_str":"663728013973041152","text":"\u3057\u304a\u3093\n\u306a\u3093\u304b\u6b4c\u3063\u3066\u308b\n\u7121\u8996\u3057\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3426242234,"id_str":"3426242234","name":"\u30de\u30f3\u30b4\u30fc\u306f\u7686\u3042\u308a\u304c\u3068\u3046","screen_name":"mangoo_mori","location":"\u7389\u68ee\u306e\u706b\u50b7\u8de1","url":"http:\/\/twpf.jp\/mangoo_mori","description":"\u7389\u68ee\u62c5\u3060\u3051\u3069\u8cb6\u3057\u591a\u3044\u3088(\u767d\u76ee)\u5317\u5c71\u3055\u3093\u304f\u305d\u304b\u308f\u3052\u308d\u304b\u308f\u304a\u5b50\u69d8\u30bd\u30fc\u30bb\u30fc\u30b8\u540c\u76df \u300a@____ta3534_oO\u300b","protected":false,"verified":false,"followers_count":114,"friends_count":100,"listed_count":2,"favourites_count":653,"statuses_count":3711,"created_at":"Wed Sep 02 13:32:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663345883115687936\/TraDd1BG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663345883115687936\/TraDd1BG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3426242234\/1446369999","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064658"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968736256,"id_str":"663728013968736256","text":"You may feel external pressure to tie up loose ends early in t... More for Scorpio https:\/\/t.co\/pS6XNTi89Y","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240729513,"id_str":"240729513","name":"SDEB\u2728","screen_name":"_TweetMeHoes","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":246,"friends_count":207,"listed_count":0,"favourites_count":106,"statuses_count":7282,"created_at":"Thu Jan 20 16:16:31 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658980228920922112\/xVBuRYSt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658980228920922112\/xVBuRYSt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240729513\/1443805167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pS6XNTi89Y","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985619968,"id_str":"663728013985619968","text":"Kak @fryda_enrique_i Ayo BURUAN order di kami! PROMO 20% HANYA smp 15 nov | Hbgi pin 59C591DE - line Djualfollowers - wa 08121747938","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1708588202,"id_str":"1708588202","name":"Evlaliya Hessay","screen_name":"evlaliya_hessay","location":"Manchester","url":null,"description":"Working . General social media fanatic :keen on...Entrepreneur , vocate ... Professional pop culture aficionado ,","protected":false,"verified":false,"followers_count":2,"friends_count":225,"listed_count":1,"favourites_count":0,"statuses_count":3439,"created_at":"Thu Aug 29 00:05:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000457783713\/04f495a4220201ec6a8eba83e7e54d5a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000457783713\/04f495a4220201ec6a8eba83e7e54d5a_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fryda_enrique_i","name":"fryda holic","id":2615051462,"id_str":"2615051462","indices":[4,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985619969,"id_str":"663728013985619969","text":"My friend asked me to write something that's beautiful on a piece of paper and I wrote Michael Clifford <3 @Michael5SOS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3150366930,"id_str":"3150366930","name":"Dead Princess Mil\u534c","screen_name":"Millie_Mia26","location":null,"url":"http:\/\/www.hot995.com\/pages\/jb2015\/d.php?55","description":"scouse girl :3 small town DJ #DJ wanna be a drummer:) @Ashton5SOS PLEASE! limited dm give aways if possible! \n4\/3 CMD follow","protected":false,"verified":false,"followers_count":1927,"friends_count":2124,"listed_count":10,"favourites_count":8857,"statuses_count":11778,"created_at":"Sat Apr 11 19:57:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601825189127593984\/VPhMQuOJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601825189127593984\/VPhMQuOJ.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662231219787141120\/pTDEPtWF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662231219787141120\/pTDEPtWF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150366930\/1445881061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[110,122]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985447936,"id_str":"663728013985447936","text":"\u3082\u3063\u3068X-Wing\u306e\u3053\u3068\u8003\u3048\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110670980,"id_str":"110670980","name":"keisuke","screen_name":"i_love_ranger","location":"\u30af\u30c1\u30d0\u30b7\u30c6\u30a3","url":"http:\/\/www34.atwiki.jp\/dungeoncommand\/","description":"Java\u30d7\u30ed\u30b0\u30e9\u30de\u3002X-Wing\u30df\u30cb\u30c1\u30e5\u30a2\u30b2\u30fc\u30e0\u3092\u304a\u3082\u306b\u3084\u3063\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":423,"friends_count":460,"listed_count":29,"favourites_count":871,"statuses_count":40931,"created_at":"Tue Feb 02 11:00:04 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642699109510483969\/qIwHpBNw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642699109510483969\/qIwHpBNw_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013981257728,"id_str":"663728013981257728","text":"You're quite thankful for coworkers who support you even when ... More for Aries https:\/\/t.co\/2V3WuzOeE7","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222832743,"id_str":"2222832743","name":"\uc544\uba54\ub4dc \ud0a4 \u264b","screen_name":"Dimo_msels","location":"Benghazi","url":null,"description":null,"protected":false,"verified":false,"followers_count":329,"friends_count":304,"listed_count":1,"favourites_count":1134,"statuses_count":25006,"created_at":"Fri Dec 13 05:47:08 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/484367916096188416\/o66gn0T8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/484367916096188416\/o66gn0T8.jpeg","profile_background_tile":false,"profile_link_color":"03B6F7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627959325491888129\/MLFQQqam_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627959325491888129\/MLFQQqam_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2222832743\/1435835681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2V3WuzOeE7","expanded_url":"http:\/\/bit.ly\/zzEL3G","display_url":"bit.ly\/zzEL3G","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064660"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013981298690,"id_str":"663728013981298690","text":"RT @chm04104: \ubcf8\uc778\uc778\uc99d\ud574\uc11c\ud55c\uba85\ub2f9\ud558\ub8e8\uc5d0\ud55c\ubc88\uc529\ub9cc\ud22c\ud45c\ud558\uac8c\ud574\uc8fc\uc2dc\uba74\uc548\ub418\ub098\ud798\ub4e4\ub2e4\ud558\uc9c0\ub9cc\uc5d1\uc18c\ub97c\uc0ac\ub791\ud558\ub2c8\ub05d\uae4c\uc9c0\ud574\ubcf4\uaca0\uc5b4\uc774\ub807\uac8c\uae4c\uc9c0\ud558\ub294\ub370#2015MAMA\uc5d0\uc11c\uc0c1\uc548\uc8fc\uc2dc\uba74\uc9c4\uc9dc\uc0ac\ub78c\ub3c4\uc544\ub2c8\ub2e4#EXO\uac00\ud77d\uc4f8\uac8c\ud574\uc918@MnetMAMA#CALLMEBABY\ub791\uc5d8\ub3c4\ub77c\ub3c4\ub85c\uc5ed\ub300\uae09\ubb34\ub300\uac00\ub098\uc62c\uc218\uc788\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949795822,"id_str":"2949795822","name":"\ud587\uc0b4\ud55c\uac00\ub4dd","screen_name":"sunset0326","location":null,"url":null,"description":"\uc2dc\uc6b0\ubbfcv \ub108\uc758 \uc55e\uae38\uc5d0 \ud587\uc0b4\ub9cc \uac00\ub4dd\ud558\uae38","protected":false,"verified":false,"followers_count":8,"friends_count":97,"listed_count":0,"favourites_count":726,"statuses_count":1557,"created_at":"Mon Dec 29 10:08:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557543336173522944\/NClbZVKi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557543336173522944\/NClbZVKi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949795822\/1432885373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:01 +0000 2015","id":663727498430050304,"id_str":"663727498430050304","text":"\ubcf8\uc778\uc778\uc99d\ud574\uc11c\ud55c\uba85\ub2f9\ud558\ub8e8\uc5d0\ud55c\ubc88\uc529\ub9cc\ud22c\ud45c\ud558\uac8c\ud574\uc8fc\uc2dc\uba74\uc548\ub418\ub098\ud798\ub4e4\ub2e4\ud558\uc9c0\ub9cc\uc5d1\uc18c\ub97c\uc0ac\ub791\ud558\ub2c8\ub05d\uae4c\uc9c0\ud574\ubcf4\uaca0\uc5b4\uc774\ub807\uac8c\uae4c\uc9c0\ud558\ub294\ub370#2015MAMA\uc5d0\uc11c\uc0c1\uc548\uc8fc\uc2dc\uba74\uc9c4\uc9dc\uc0ac\ub78c\ub3c4\uc544\ub2c8\ub2e4#EXO\uac00\ud77d\uc4f8\uac8c\ud574\uc918@MnetMAMA#CALLMEBABY\ub791\uc5d8\ub3c4\ub77c\ub3c4\ub85c\uc5ed\ub300\uae09\ubb34\ub300\uac00\ub098\uc62c\uc218\uc788\uac8c\uc608\uc05c\uc5f0\ucd9c\ub3c4\ubd80\ud0c1\ub4dc\ub9bc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2425663224,"id_str":"2425663224","name":"\ubbf8\ub2c8\uc694\ub2c8","screen_name":"chm04104","location":"\ubd84\ub2f9","url":null,"description":"\uc11c\uae30\uc11c\uae30\u2665\ucc28\ub878\ucc28\ucc28","protected":false,"verified":false,"followers_count":6,"friends_count":153,"listed_count":0,"favourites_count":19,"statuses_count":219,"created_at":"Thu Apr 03 13:57:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027561920774145\/s_1oCBvk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027561920774145\/s_1oCBvk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[89,98]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chm04104","name":"\ubbf8\ub2c8\uc694\ub2c8","id":2425663224,"id_str":"2425663224","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[103,112]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080064660"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014006607872,"id_str":"663728014006607872","text":"@d83_valeria @AgentSkyeQuakes @sylvia6935 @Monjia @tulleofdec20th thanks \ud83d\ude01\ud83d\udc4d\ud83d\udcaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717524564025344,"in_reply_to_status_id_str":"663717524564025344","in_reply_to_user_id":3098094893,"in_reply_to_user_id_str":"3098094893","in_reply_to_screen_name":"d83_valeria","user":{"id":370832037,"id_str":"370832037","name":"HAIL WARD","screen_name":"Agent_Francisco","location":"Brazil","url":null,"description":"#skyeward forever, and as Kara said: No matter what he does I will always #StandWithWard \u270a\u270a, male Marvel addicted and enjoy a lot of TV Shows","protected":false,"verified":false,"followers_count":584,"friends_count":453,"listed_count":6,"favourites_count":7134,"statuses_count":3988,"created_at":"Fri Sep 09 18:15:21 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645709024135020545\/AwuFPtbE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645709024135020545\/AwuFPtbE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370832037\/1442784021","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"d83_valeria","name":"Valeria","id":3098094893,"id_str":"3098094893","indices":[0,12]},{"screen_name":"AgentSkyeQuakes","name":"Erika \/semi-hiatus\/","id":2685771699,"id_str":"2685771699","indices":[13,29]},{"screen_name":"sylvia6935","name":"Sylvia","id":3273230532,"id_str":"3273230532","indices":[30,41]},{"screen_name":"Monjia","name":"Monjia","id":540952774,"id_str":"540952774","indices":[42,49]},{"screen_name":"tulleofdec20th","name":"Nicole ","id":132622786,"id_str":"132622786","indices":[50,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064666"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013985492992,"id_str":"663728013985492992","text":"\uc5ed\uc2dc \ub300\ud559 \uc870\ubcc4\uacfc\uc81c\ub294 \uc5c6\uc5b4\uc838\uc57c \ub9c8\ub545\ud558\ub2e4\uace0 \uc0dd\uac01\ud55c\ub2e4.....","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/wakamesoba98\/sobacha\" rel=\"nofollow\"\u003eSobaCha\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":542449877,"id_str":"542449877","name":"[\ubc18\ub3d9\uacb0]\ucea0","screen_name":"thfl197","location":"\ud55c\uad6d","url":null,"description":"\uc8fc\uc27d\uc740 \uc778\uc0dd\uc7a5\ub974\uc785\ub2c8\ub2e4!\/\n\ucd5c\uc560\ub294 \uc5b4\uc2a4 \ucc28\uc560\ub294 \uba3c,\ub35c\uc2a4,\ud50c\ub8e8\ud1a0,\uc0bc\uc560\ub294 \uc8fc\uc27d\uce90 \uc804\ubd80\/\n\uadf8\ub9bc \ubabb\uadf8\ub9ac\ub294 \uc874\ubabb\uc740 \uc6c1\ub2c8\ub2e4(\uc5c9\uc5c9)\/\n(\ud0c0\ube14\ub81b\uc774 \uc5c6\uc5b4\uc11c)\uc190\uadf8\ub9bc\/\n\uc778\uc7a5 \ud3d0\uc774\ub2d8!!\/\uc804\uc778\uc7a5(\ub2e4\ub9c1\ub2d8\uc758 \uc5b4\uc2a4\ub2d8)\uacfc \ud604\uc778\uc7a5 \uadf8\ub9bc\uc774 \ub118 \uc774\ubed0\uc11c \ud589\ubcf5\ud569\ub2c8\ub2e4\/\n\uc120\uba58 \ub9de\ud314\ud569\ub2c8\ub2e4..!!!","protected":false,"verified":false,"followers_count":190,"friends_count":216,"listed_count":4,"favourites_count":2957,"statuses_count":31956,"created_at":"Sun Apr 01 10:50:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650514143330480128\/W54cWlIW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650514143330480128\/W54cWlIW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/542449877\/1439829673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080064661"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013981298689,"id_str":"663728013981298689","text":"\u76f4\u9001\u4fbf\u3092\u66f4\u65b0\u3057\u307e\u3057\u305f\uff01 \u2606\u3054\u65b0\u898f\u306e\u304a\u5ba2\u69d8\u9650\u5b9a\u2606 \u7dcf\u984d\uff15\uff0c\uff10\uff10\uff10\u5186\u5272\u5f15\uff01\uff1a18\u7981 https:\/\/t.co\/c1Zvm5tzr6","source":"\u003ca href=\"http:\/\/www.cityheaven.net\/\" rel=\"nofollow\"\u003e\u30d8\u30d6\u30f3\u30cd\u30c3\u30c8\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130442684,"id_str":"130442684","name":"\u30a2\u30ed\u30de\u30de\u30fc\u30e1\u30a4\u30c9","screen_name":"aromamermaid","location":"\u6c60\u888b","url":"http:\/\/www.aroma-mermaid.com\/","description":"\u6d3e\u9063\u578b\u98a8\u4fd7\u6027\u611f\u30a2\u30ed\u30de\u30a8\u30b9\u30c6\u300c\u30a2\u30ed\u30de\u30de\u30fc\u30e1\u30a4\u30c9\u6c60\u888b\u300d\u3002\u53b3\u9078\u3055\u308c\u305f\u65e5\u672c\u4eba\u30bb\u30e9\u30d4\u30b9\u30c8\u306b\u3088\u308b\u9b45\u60d1\u306e\u30aa\u30fc\u30eb\u30cc\u30fc\u30c9\u30a8\u30b9\u30c6\u300c\u738b\u671d\u6d41\u6027\u611f\u30a2\u30ed\u30de\u30a8\u30b9\u30c6\u30fb\u56de\u6625\u30a8\u30b9\u30c6\u30de\u30c3\u30b5\u30fc\u30b8\u300d\u3067\u6700\u9ad8\u306e\u7652\u3057\u3092\u304a\u5c4a\u3051\u3044\u305f\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1260,"friends_count":2079,"listed_count":25,"favourites_count":1,"statuses_count":28476,"created_at":"Wed Apr 07 09:08:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/869423082\/ningyo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/869423082\/ningyo_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c1Zvm5tzr6","expanded_url":"http:\/\/365diary.net\/QWt1WkZiL3R0L2Fyb21hLW1lcm1haWQtaQ--","display_url":"365diary.net\/QWt1WkZiL3R0L2\u2026","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064660"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014002405376,"id_str":"663728014002405376","text":"Sharing Content isn't Enough, Enlist Employee Advocacy https:\/\/t.co\/rYHYiEI5Cf","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1245133386,"id_str":"1245133386","name":"SMTULSA","screen_name":"SMTulsa","location":"Tulsa,OK","url":"https:\/\/www.surveymonkey.com\/r\/KXVR2LY","description":"Every business deserves to the opportunity to be successful. Tulsa's Social Media Community & Conference puts Success in your way #smtulsa","protected":false,"verified":false,"followers_count":1719,"friends_count":1811,"listed_count":112,"favourites_count":1252,"statuses_count":6503,"created_at":"Wed Mar 06 03:11:16 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618500679053611008\/ASh9Cfhk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618500679053611008\/ASh9Cfhk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1245133386\/1440432349","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rYHYiEI5Cf","expanded_url":"http:\/\/smtulsa.co\/1iMUii6","display_url":"smtulsa.co\/1iMUii6","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064665"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968695296,"id_str":"663728013968695296","text":"https:\/\/t.co\/jVtRzqbjGZ\n\u50d5\u304c\u4e00\u56de\u3060\u3051\u5800\u6c5f\u7531\u8863\u30ac\u30c1\u604b\u3057\u305f\u66f2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3134135400,"id_str":"3134135400","name":"\u8b66\u5099\u62c5\u5f53\u4e3b\u4efb","screen_name":"keibi_tantou","location":"Security office of 765 theater","url":"http:\/\/eventernote.com\/users\/keibi_tantou","description":"\u5728\u5b85 \u7537\u5b50\u6821 \u4ed6 \u30aa\u30bf\u30af\u306f\u30de\u30b8\u3067\u300c\u8b66\u5099\u300d\u3063\u3066\u547c\u3093\u3067\u304f\u308c","protected":false,"verified":false,"followers_count":76,"friends_count":141,"listed_count":3,"favourites_count":4402,"statuses_count":12464,"created_at":"Fri Apr 03 05:00:08 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652070739097419776\/X_n9O5WH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652070739097419776\/X_n9O5WH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3134135400\/1444740656","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jVtRzqbjGZ","expanded_url":"http:\/\/www.dailymotion.com\/video\/x1x37u_yui-horie-days_music","display_url":"dailymotion.com\/video\/x1x37u_y\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064657"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013998055425,"id_str":"663728013998055425","text":"@samenoshippo \u30a4\u30f3\u30c7\u30a3\u306e\u3069\u3053\u304b\u304b\u30a2\u30c9\u30d9\u30f3\u306e\u3069\u3053\u304b\u3063\u3066\u4e8b\u306b\u3057\u3088\u3046\u30ed\u30b9\u30c8\u306e\u304c\u795e\u3063\u307d\u3044\u304b\u3089\u30ed\u30b9\u30c8\u306b\u3057\u3088\u270c(\u9069\u5f53)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727576188190720,"in_reply_to_status_id_str":"663727576188190720","in_reply_to_user_id":2872540946,"in_reply_to_user_id_str":"2872540946","in_reply_to_screen_name":"samenoshippo","user":{"id":3028964524,"id_str":"3028964524","name":"\u5185","screen_name":"__u__c__h__i","location":"\uff8a-\uff8d\uff9e\uff7d\uff84\uff6b\u2026\uff8a-\uff8d\uff9e\uff7d\uff84\uff6b\uff6b\u2026","url":"http:\/\/u-c-h-i.tumblr.com\/","description":"\u2721\u5185\u3067\u3059\u3002\u2721\u8da3\u5473\u57a2\u3002\u30c7\u30a3\u30ba\u30cb\u30fc\u3068\u6d77\u5916\u30a2\u30cb\u30e1\u3068\u670d\u3002\u2721\u8a73\u3057\u304f\u306f\u30b3\u30c1\u30e9\u3002\u305c\u3072\u8aad\u3093\u3067\u306d\uff01\u261ehttp:\/\/twpf.jp\/__u__c__h__i","protected":false,"verified":false,"followers_count":91,"friends_count":74,"listed_count":4,"favourites_count":1580,"statuses_count":3903,"created_at":"Tue Feb 10 22:28:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3EDB9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616920715783094272\/9tKbB7tY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616920715783094272\/9tKbB7tY.png","profile_background_tile":true,"profile_link_color":"FFD100","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660718517302374400\/Sp7GHudi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660718517302374400\/Sp7GHudi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3028964524\/1444894288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"samenoshippo","name":"\u307e\u3086","id":2872540946,"id_str":"2872540946","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064664"} +{"delete":{"status":{"id":663725795215597568,"id_str":"663725795215597568","user_id":1336750447,"user_id_str":"1336750447"},"timestamp_ms":"1447080064872"}} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013973000192,"id_str":"663728013973000192","text":"RT @WSHHFANS: this is the best thing i've ever seen \ud83d\ude39 https:\/\/t.co\/dxR0bXyHsx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848004544,"id_str":"2848004544","name":"NOV 14 ","screen_name":"djcurly63","location":null,"url":null,"description":"snapchat: carlosave63 instagram:carlosave63 follow for follow back carlos aka curly","protected":false,"verified":false,"followers_count":95,"friends_count":244,"listed_count":0,"favourites_count":341,"statuses_count":1299,"created_at":"Thu Oct 09 00:38:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575499046749536256\/iOOyCpuB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575499046749536256\/iOOyCpuB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848004544\/1412815389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:00:34 +0000 2015","id":663702722898731008,"id_str":"663702722898731008","text":"this is the best thing i've ever seen \ud83d\ude39 https:\/\/t.co\/dxR0bXyHsx","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370986902,"id_str":"1370986902","name":"WSHH FANS","screen_name":"WSHHFANS","location":"wshhfansbusiness@gmail.com","url":null,"description":"NOT Affiliated With @WORLDSTAR or Vine. We Do Not Own The Media That Is Posted, Parody . 18+ Content Instagram & Snapchat: WSHHFANS","protected":false,"verified":false,"followers_count":885688,"friends_count":147688,"listed_count":512,"favourites_count":0,"statuses_count":25711,"created_at":"Mon Apr 22 01:48:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BB0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109036104912896\/6aCiEcju_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370986902\/1444071563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1104,"favorite_count":1360,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662732810277384193,"id_str":"662732810277384193","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","url":"https:\/\/t.co\/dxR0bXyHsx","display_url":"pic.twitter.com\/dxR0bXyHsx","expanded_url":"http:\/\/twitter.com\/alxstair\/status\/662733644520251398\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":662733644520251398,"source_status_id_str":"662733644520251398","source_user_id":29807361,"source_user_id_str":"29807361"}]},"extended_entities":{"media":[{"id":662732810277384193,"id_str":"662732810277384193","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","url":"https:\/\/t.co\/dxR0bXyHsx","display_url":"pic.twitter.com\/dxR0bXyHsx","expanded_url":"http:\/\/twitter.com\/alxstair\/status\/662733644520251398\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":662733644520251398,"source_status_id_str":"662733644520251398","source_user_id":29807361,"source_user_id_str":"29807361","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/640x360\/STxGwTLP-6E37Ya1.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/640x360\/STxGwTLP-6E37Ya1.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/320x180\/0Gsf84hSLEiG2Ss3.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/pl\/2DuQnoiSRxhVJ6RD.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/pl\/2DuQnoiSRxhVJ6RD.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WSHHFANS","name":"WSHH FANS","id":1370986902,"id_str":"1370986902","indices":[3,12]}],"symbols":[],"media":[{"id":662732810277384193,"id_str":"662732810277384193","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","url":"https:\/\/t.co\/dxR0bXyHsx","display_url":"pic.twitter.com\/dxR0bXyHsx","expanded_url":"http:\/\/twitter.com\/alxstair\/status\/662733644520251398\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":662733644520251398,"source_status_id_str":"662733644520251398","source_user_id":29807361,"source_user_id_str":"29807361"}]},"extended_entities":{"media":[{"id":662732810277384193,"id_str":"662732810277384193","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662732810277384193\/pu\/img\/y3TGMJMicW9IFFIL.jpg","url":"https:\/\/t.co\/dxR0bXyHsx","display_url":"pic.twitter.com\/dxR0bXyHsx","expanded_url":"http:\/\/twitter.com\/alxstair\/status\/662733644520251398\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":662733644520251398,"source_status_id_str":"662733644520251398","source_user_id":29807361,"source_user_id_str":"29807361","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/640x360\/STxGwTLP-6E37Ya1.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/640x360\/STxGwTLP-6E37Ya1.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/vid\/320x180\/0Gsf84hSLEiG2Ss3.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/pl\/2DuQnoiSRxhVJ6RD.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662732810277384193\/pu\/pl\/2DuQnoiSRxhVJ6RD.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064658"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728014002429953,"id_str":"663728014002429953","text":"RT @Tameside_Tories: We have now been blocked by Angela Rayner's \"spokesperson\" Matthew Finnegan. How \"regrettable\"... https:\/\/t.co\/hFBmjBf\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2178811634,"id_str":"2178811634","name":"Sue Carroll","screen_name":"SueACarroll","location":"Stockport","url":null,"description":"Chairman, Cheadle Conservatives. Any views expressed are my own. RTs do not imply endorsement.","protected":false,"verified":false,"followers_count":776,"friends_count":1176,"listed_count":13,"favourites_count":13625,"statuses_count":6572,"created_at":"Wed Nov 06 21:15:06 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000765335923\/80b5f69f7c7281251ec820541679fd8a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000765335923\/80b5f69f7c7281251ec820541679fd8a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2178811634\/1401048112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:56 +0000 2015","id":663693000241979392,"id_str":"663693000241979392","text":"We have now been blocked by Angela Rayner's \"spokesperson\" Matthew Finnegan. How \"regrettable\"... https:\/\/t.co\/hFBmjBf1SA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3092426123,"id_str":"3092426123","name":"TamesideTories","screen_name":"Tameside_Tories","location":"Tameside","url":"http:\/\/www.tamesideconservatives.com\/get-involved\/join-us\/","description":"News and updates from the Conservative Party in Tameside. Email: info@tamesideconservatives.com","protected":false,"verified":false,"followers_count":244,"friends_count":314,"listed_count":6,"favourites_count":57,"statuses_count":1099,"created_at":"Mon Mar 16 15:18:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577489437464002561\/55huwZTu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577489437464002561\/55huwZTu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092426123\/1426536817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663692993673740289,"id_str":"663692993673740289","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","url":"https:\/\/t.co\/hFBmjBf1SA","display_url":"pic.twitter.com\/hFBmjBf1SA","expanded_url":"http:\/\/twitter.com\/Tameside_Tories\/status\/663693000241979392\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692993673740289,"id_str":"663692993673740289","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","url":"https:\/\/t.co\/hFBmjBf1SA","display_url":"pic.twitter.com\/hFBmjBf1SA","expanded_url":"http:\/\/twitter.com\/Tameside_Tories\/status\/663693000241979392\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tameside_Tories","name":"TamesideTories","id":3092426123,"id_str":"3092426123","indices":[3,19]}],"symbols":[],"media":[{"id":663692993673740289,"id_str":"663692993673740289","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","url":"https:\/\/t.co\/hFBmjBf1SA","display_url":"pic.twitter.com\/hFBmjBf1SA","expanded_url":"http:\/\/twitter.com\/Tameside_Tories\/status\/663693000241979392\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663693000241979392,"source_status_id_str":"663693000241979392","source_user_id":3092426123,"source_user_id_str":"3092426123"}]},"extended_entities":{"media":[{"id":663692993673740289,"id_str":"663692993673740289","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpQufWwAEoLmt.jpg","url":"https:\/\/t.co\/hFBmjBf1SA","display_url":"pic.twitter.com\/hFBmjBf1SA","expanded_url":"http:\/\/twitter.com\/Tameside_Tories\/status\/663693000241979392\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663693000241979392,"source_status_id_str":"663693000241979392","source_user_id":3092426123,"source_user_id_str":"3092426123"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064665"} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013989818368,"id_str":"663728013989818368","text":"2+2ES 4 Y NOSOTROS NECECITAMOS 1 MILLON VAMOOS\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/ZTCKGQvzyR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851865908,"id_str":"851865908","name":"Meli|Lalita","screen_name":"56Magali","location":"Florencio Varela, Argentina","url":null,"description":"Reir te salva\u2764|| Lalita || AGUANTE MARIALI VIEJO|| 03-11-15|| Llevo su sonrisa como bandera, y que sea lo que sea.|| 12 a\u00f1os|| No estoy sola. MORIDAA","protected":false,"verified":false,"followers_count":326,"friends_count":401,"listed_count":3,"favourites_count":8473,"statuses_count":7826,"created_at":"Fri Sep 28 22:55:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851865908\/1446398426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[76,91]},{"text":"MejorFandom","indices":[92,104]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[47,63]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[64,75]}],"symbols":[],"media":[{"id":663728012706336772,"id_str":"663728012706336772","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHGjWUAQeh1i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHGjWUAQeh1i.jpg","url":"https:\/\/t.co\/ZTCKGQvzyR","display_url":"pic.twitter.com\/ZTCKGQvzyR","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663728013989818368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728012706336772,"id_str":"663728012706336772","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHGjWUAQeh1i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHGjWUAQeh1i.jpg","url":"https:\/\/t.co\/ZTCKGQvzyR","display_url":"pic.twitter.com\/ZTCKGQvzyR","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663728013989818368\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":300,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080064662"} +{"delete":{"status":{"id":663727829423693824,"id_str":"663727829423693824","user_id":2656469486,"user_id_str":"2656469486"},"timestamp_ms":"1447080064949"}} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013989666817,"id_str":"663728013989666817","text":"@Dt52Gra \u5927\u3061\u3083\u3093\/\/\/\/\/\/\/\/\/\/\n\u304a\u30fb\u306d\u30fb\u304c\u30fb\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727477223653376,"in_reply_to_status_id_str":"663727477223653376","in_reply_to_user_id":1343856444,"in_reply_to_user_id_str":"1343856444","in_reply_to_screen_name":"Dt52Gra","user":{"id":2811102906,"id_str":"2811102906","name":"\u3042\u304d\u3042\u304d","screen_name":"shaki_131115","location":"\u541b\u304c\u3059\u304d","url":null,"description":"\u4e16\u754c\u3092\u652f\u914d\u3059\u308b\u6700\u5f37\u306e\u30b7\u30e7\u30bf\u30b3\u30f3\u5815\u5929\u4f7f\u2721\n\u3010@linlinlin21\u3011\u2190\u8650\u3081\u305f\u3089\u6bba\u3059\u3088\u266a\n\u3010@akiaki0701\u3011\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f","protected":false,"verified":false,"followers_count":3351,"friends_count":3122,"listed_count":99,"favourites_count":45741,"statuses_count":18397,"created_at":"Mon Sep 15 11:21:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663311021335953410\/_XI-Bt0U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663311021335953410\/_XI-Bt0U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2811102906\/1446645499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dt52Gra","name":"\u5927\u5730","id":1343856444,"id_str":"1343856444","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080064662"} +{"delete":{"status":{"id":644856770750353410,"id_str":"644856770750353410","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080064967"}} +{"delete":{"status":{"id":523473319400464385,"id_str":"523473319400464385","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080065039"}} +{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728013968674816,"id_str":"663728013968674816","text":"@joshuadun can I get my credit?? https:\/\/t.co\/HeeGb8WjC3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":16712746,"in_reply_to_user_id_str":"16712746","in_reply_to_screen_name":"joshuadun","user":{"id":2581104764,"id_str":"2581104764","name":"-:.Tiffany.:-","screen_name":"tiffanyespinal1","location":null,"url":null,"description":"And I'll reveal my strength to the whole human race","protected":false,"verified":false,"followers_count":333,"friends_count":600,"listed_count":2,"favourites_count":4538,"statuses_count":3028,"created_at":"Sat Jun 21 22:08:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663613564393947136\/j5EYJbcu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663613564393947136\/j5EYJbcu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2581104764\/1446321497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joshuadun","name":"spooky jim","id":16712746,"id_str":"16712746","indices":[0,10]}],"symbols":[],"media":[{"id":663728006494457856,"id_str":"663728006494457856","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGvaUkAAXSms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGvaUkAAXSms.jpg","url":"https:\/\/t.co\/HeeGb8WjC3","display_url":"pic.twitter.com\/HeeGb8WjC3","expanded_url":"http:\/\/twitter.com\/tiffanyespinal1\/status\/663728013968674816\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728006494457856,"id_str":"663728006494457856","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGvaUkAAXSms.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGvaUkAAXSms.jpg","url":"https:\/\/t.co\/HeeGb8WjC3","display_url":"pic.twitter.com\/HeeGb8WjC3","expanded_url":"http:\/\/twitter.com\/tiffanyespinal1\/status\/663728013968674816\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663728006775504896,"id_str":"663728006775504896","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGwdVAAA6P3U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGwdVAAA6P3U.jpg","url":"https:\/\/t.co\/HeeGb8WjC3","display_url":"pic.twitter.com\/HeeGb8WjC3","expanded_url":"http:\/\/twitter.com\/tiffanyespinal1\/status\/663728013968674816\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663728008163799040,"id_str":"663728008163799040","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG1oUsAA4rHu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG1oUsAA4rHu.jpg","url":"https:\/\/t.co\/HeeGb8WjC3","display_url":"pic.twitter.com\/HeeGb8WjC3","expanded_url":"http:\/\/twitter.com\/tiffanyespinal1\/status\/663728013968674816\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080064657"} +{"delete":{"status":{"id":663725606467538944,"id_str":"663725606467538944","user_id":3879916640,"user_id_str":"3879916640"},"timestamp_ms":"1447080065149"}} +{"delete":{"status":{"id":499308235354947585,"id_str":"499308235354947585","user_id":962896826,"user_id_str":"962896826"},"timestamp_ms":"1447080065202"}} +{"delete":{"status":{"id":641379319437127680,"id_str":"641379319437127680","user_id":3176912672,"user_id_str":"3176912672"},"timestamp_ms":"1447080065270"}} +{"delete":{"status":{"id":663717511456624640,"id_str":"663717511456624640","user_id":71311821,"user_id_str":"71311821"},"timestamp_ms":"1447080065421"}} +{"delete":{"status":{"id":663631410759102464,"id_str":"663631410759102464","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080065703"}} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179948544,"id_str":"663728018179948544","text":"\u0639\u0628\u062f\u0627\u0644\u0645\u0644\u0643 \u0627\u0644\u062e\u064a\u0628\u0631\u064a .... \u0648\u062d\u0634 \n\n\u0636\u0631\u0648\u0631\u064a \u064a\u0633\u062a\u0645\u0631 . \u0646\u0643\u0628\u0646\u0627 \u0643\u062b\u064a\u064a\u064a\u064a\u064a\u0631 .. \u062c\u0627\u0621 \u0648\u0642\u062a \u0625\u0646\u0647 \u064a\u0633\u062f\u062f \u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0646\u0643\u0628\u0627\u062a .! \n\n\u0644\u0627 \u064a\u0631\u0648\u0648\u0648\u062d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":541035978,"id_str":"541035978","name":"M. ALQAHTANI","screen_name":"msm1405","location":"\u0627\u0644\u062f\u0645\u0627\u0645 - \u0627\u0644\u0631\u064a\u0627\u0636 - \u0623\u0628\u0647\u0627 - \u062c\u064a\u0632\u0627\u0646","url":null,"description":"\u0645\u064f\u0639\u0644\u0651\u0645 \u0648\u0644\u0627 \u0632\u0644\u062a \u0623\u062a\u0639\u0644\u0645 \u0645\u0646 \u0627\u0644\u062d\u064a\u0627\u0629 \u060c \u0639\u0636\u0648 \u0641\u064a \u0627\u0644\u062c\u0645\u0639\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 \u0644\u0644\u0625\u0639\u0644\u0627\u0645 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u060c \u0644\u0633\u062a \u0645\u062a\u0639\u0635\u0628\u0627\u064b \u0644\u0631\u0623\u064a\u064a\u060c\u0623\u062d\u0628 \u0627\u0644\u0639\u0641\u0648 \u0648 \u0627\u0644\u062a\u0633\u0627\u0645\u062d . \u0627\u0644\u0634\u0628\u0627\u0628 \u0641\u062e\u0631 \u0627\u0644\u0648\u0637\u0646 pin:5A58DD57","protected":false,"verified":false,"followers_count":2822,"friends_count":235,"listed_count":6,"favourites_count":878,"statuses_count":24656,"created_at":"Fri Mar 30 16:31:55 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647402346150912000\/CVubYo1N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647402346150912000\/CVubYo1N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/541035978\/1426356099","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018188328960,"id_str":"663728018188328960","text":"RT @CNNEE: El aumento del nivel del mar podr\u00eda dejar sin hogar a 760 millones de personas https:\/\/t.co\/1vFwO8t1fn https:\/\/t.co\/hfrUzJXo6A","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197683861,"id_str":"3197683861","name":"Mirna Peralta","screen_name":"Fitness_Mirnita","location":"Tabasco y Puebla","url":null,"description":"Motivaci\u00f3n total para una vida un poco sana. Ejercicio y salud #FitnessTeam","protected":false,"verified":false,"followers_count":65,"friends_count":159,"listed_count":4,"favourites_count":2,"statuses_count":1767,"created_at":"Sat May 16 15:59:26 +0000 2015","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625835721622884352\/ooArjjRe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625835721622884352\/ooArjjRe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3197683861\/1438045913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:04 +0000 2015","id":663726000115576833,"id_str":"663726000115576833","text":"El aumento del nivel del mar podr\u00eda dejar sin hogar a 760 millones de personas https:\/\/t.co\/1vFwO8t1fn https:\/\/t.co\/hfrUzJXo6A","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33884545,"id_str":"33884545","name":"CNN en Espa\u00f1ol","screen_name":"CNNEE","location":"Atlanta","url":"http:\/\/www.cnnespanol.com","description":"CNN en Espa\u00f1ol es tu principal fuente de informaci\u00f3n y breaking news. Cubrimos las noticias de Am\u00e9rica Latina y el resto del mundo. Vive la noticia.","protected":false,"verified":true,"followers_count":11449887,"friends_count":916,"listed_count":45380,"favourites_count":1190,"statuses_count":62448,"created_at":"Tue Apr 21 12:14:47 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526905009\/CNNespanol_TwitterSkin.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526905009\/CNNespanol_TwitterSkin.jpg","profile_background_tile":false,"profile_link_color":"AB1529","profile_sidebar_border_color":"B5B5B5","profile_sidebar_fill_color":"B5B5B5","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589795319216504832\/6a71ZHkx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589795319216504832\/6a71ZHkx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33884545\/1411070627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":30,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1vFwO8t1fn","expanded_url":"http:\/\/cnn.it\/1iNqxxL","display_url":"cnn.it\/1iNqxxL","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663707731468120064,"id_str":"663707731468120064","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","url":"https:\/\/t.co\/hfrUzJXo6A","display_url":"pic.twitter.com\/hfrUzJXo6A","expanded_url":"http:\/\/twitter.com\/CNNEE\/status\/663726000115576833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707731468120064,"id_str":"663707731468120064","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","url":"https:\/\/t.co\/hfrUzJXo6A","display_url":"pic.twitter.com\/hfrUzJXo6A","expanded_url":"http:\/\/twitter.com\/CNNEE\/status\/663726000115576833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1vFwO8t1fn","expanded_url":"http:\/\/cnn.it\/1iNqxxL","display_url":"cnn.it\/1iNqxxL","indices":[90,113]}],"user_mentions":[{"screen_name":"CNNEE","name":"CNN en Espa\u00f1ol","id":33884545,"id_str":"33884545","indices":[3,9]}],"symbols":[],"media":[{"id":663707731468120064,"id_str":"663707731468120064","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","url":"https:\/\/t.co\/hfrUzJXo6A","display_url":"pic.twitter.com\/hfrUzJXo6A","expanded_url":"http:\/\/twitter.com\/CNNEE\/status\/663726000115576833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726000115576833,"source_status_id_str":"663726000115576833","source_user_id":33884545,"source_user_id_str":"33884545"}]},"extended_entities":{"media":[{"id":663707731468120064,"id_str":"663707731468120064","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2qlDWcAA8QRd.jpg","url":"https:\/\/t.co\/hfrUzJXo6A","display_url":"pic.twitter.com\/hfrUzJXo6A","expanded_url":"http:\/\/twitter.com\/CNNEE\/status\/663726000115576833\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726000115576833,"source_status_id_str":"663726000115576833","source_user_id":33884545,"source_user_id_str":"33884545"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065663"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196709376,"id_str":"663728018196709376","text":"knlovers_525: AllureKath: kathnielquotes_: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3683904679,"id_str":"3683904679","name":"Ashly Manalo","screen_name":"manalo_ashly","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":81,"listed_count":10,"favourites_count":2,"statuses_count":19655,"created_at":"Fri Sep 25 17:46:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647468396024496128\/qDjYJ-FK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647468396024496128\/qDjYJ-FK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3683904679\/1446476135","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[83,103]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184126464,"id_str":"663728018184126464","text":"RT nightybutera22: RT nightybutera31: RT nightybutera13: Nosebleed si Clark kay Rico!\n#OTWOLWish \n#PushAwardsJaDines \nJ_RedHoney-","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3465853393,"id_str":"3465853393","name":"jaquen is real","screen_name":"jaquenslays","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":13,"listed_count":10,"favourites_count":0,"statuses_count":73125,"created_at":"Sun Sep 06 02:31:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640357119980494848\/enFFNxHG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640357119980494848\/enFFNxHG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[86,96]},{"text":"PushAwardsJaDines","indices":[98,116]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171514880,"id_str":"663728018171514880","text":"RT @gholam60: Presidente della Repubblica Italiana, Presidente del Consiglio Matteo Renzi, Ministro, Presidente del... https:\/\/t.co\/uHBZIR9\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":809436014,"id_str":"809436014","name":"saeed jahangiri","screen_name":"saeedjahangiri1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":303,"friends_count":161,"listed_count":8,"favourites_count":11,"statuses_count":12601,"created_at":"Fri Sep 07 19:14:15 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"fa","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625114964425089024\/T9stqbbG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625114964425089024\/T9stqbbG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/809436014\/1437915913","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:59:51 +0000 2015","id":663627045814054912,"id_str":"663627045814054912","text":"Presidente della Repubblica Italiana, Presidente del Consiglio Matteo Renzi, Ministro, Presidente del... https:\/\/t.co\/uHBZIR99Lp via @Change","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310515096,"id_str":"2310515096","name":"\u063a\u0644\u0627\u0645 \u0635\u0627\u0644\u062d\u064a","screen_name":"gholam60","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":225,"friends_count":407,"listed_count":1,"favourites_count":424,"statuses_count":5572,"created_at":"Sat Jan 25 18:32:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427148513802067970\/k-KG4-4r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427148513802067970\/k-KG4-4r_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310515096\/1398062471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uHBZIR99Lp","expanded_url":"https:\/\/www.change.org\/p\/presidente-della-repubblica-italiana-presidente-del-consiglio-matteo-renzi-ministro-presidente-della-repubblica-italiana-sergio-mattarella-presidente-della-repubblica-italiana-matteo-renzi-liberare-mio-padre-e-gli-altri-detenuti-politici-i?recruiter=422220650&utm_source=share_petition&utm_medium=twitter&utm_campaign=share_twitter_responsive","display_url":"change.org\/p\/presidente-d\u2026","indices":[105,128]}],"user_mentions":[{"screen_name":"Change","name":"Change.org","id":15947602,"id_str":"15947602","indices":[133,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uHBZIR99Lp","expanded_url":"https:\/\/www.change.org\/p\/presidente-della-repubblica-italiana-presidente-del-consiglio-matteo-renzi-ministro-presidente-della-repubblica-italiana-sergio-mattarella-presidente-della-repubblica-italiana-matteo-renzi-liberare-mio-padre-e-gli-altri-detenuti-politici-i?recruiter=422220650&utm_source=share_petition&utm_medium=twitter&utm_campaign=share_twitter_responsive","display_url":"change.org\/p\/presidente-d\u2026","indices":[119,140]}],"user_mentions":[{"screen_name":"gholam60","name":"\u063a\u0644\u0627\u0645 \u0635\u0627\u0644\u062d\u064a","id":2310515096,"id_str":"2310515096","indices":[3,12]},{"screen_name":"Change","name":"Change.org","id":15947602,"id_str":"15947602","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192486400,"id_str":"663728018192486400","text":"RT @balochkhan221: UNintervenebalochistan#UN70 https:\/\/t.co\/el4gJTMpbG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2194526402,"id_str":"2194526402","name":"abu yousuf","screen_name":"AbdulMmmm","location":null,"url":null,"description":"we baloch want justice peace freedom equality and our right\nwe hate injustice corruption bribery unfair occupation","protected":false,"verified":false,"followers_count":308,"friends_count":688,"listed_count":19,"favourites_count":773,"statuses_count":10709,"created_at":"Thu Nov 14 16:56:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577745705680252928\/foUQdYT8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577745705680252928\/foUQdYT8_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 16:32:35 +0000 2015","id":657957872706408450,"id_str":"657957872706408450","text":"UNintervenebalochistan#UN70 https:\/\/t.co\/el4gJTMpbG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4030732265,"id_str":"4030732265","name":"Balach","screen_name":"balochkhan221","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":34,"friends_count":545,"listed_count":0,"favourites_count":16,"statuses_count":4,"created_at":"Sat Oct 24 09:56:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663386214389542912\/1SNNy3FW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663386214389542912\/1SNNy3FW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4030732265\/1446998572","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":657913207634436096,"quoted_status_id_str":"657913207634436096","quoted_status":{"created_at":"Sat Oct 24 13:35:06 +0000 2015","id":657913207634436096,"id_str":"657913207634436096","text":"#UNInterveneBalochistan #UN70\n@UN https:\/\/t.co\/xMRjh6VV2J","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1542143942,"id_str":"1542143942","name":"Noori Baloch","screen_name":"nooribaloch1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1656,"friends_count":241,"listed_count":10,"favourites_count":2461,"statuses_count":25623,"created_at":"Mon Jun 24 00:23:05 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655542552544833536\/O81tpqpk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655542552544833536\/O81tpqpk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1542143942\/1409279519","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":657913102390984704,"quoted_status_id_str":"657913102390984704","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"UNInterveneBalochistan","indices":[0,23]},{"text":"UN70","indices":[24,29]}],"urls":[{"url":"https:\/\/t.co\/xMRjh6VV2J","expanded_url":"https:\/\/twitter.com\/najeebabaloch\/status\/657913102390984704","display_url":"twitter.com\/najeebabaloch\/\u2026","indices":[35,58]}],"user_mentions":[{"screen_name":"UN","name":"United Nations","id":14159148,"id_str":"14159148","indices":[30,33]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/el4gJTMpbG","expanded_url":"https:\/\/twitter.com\/nooribaloch1\/status\/657913207634436096","display_url":"twitter.com\/nooribaloch1\/s\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/el4gJTMpbG","expanded_url":"https:\/\/twitter.com\/nooribaloch1\/status\/657913207634436096","display_url":"twitter.com\/nooribaloch1\/s\u2026","indices":[47,70]}],"user_mentions":[{"screen_name":"balochkhan221","name":"Balach","id":4030732265,"id_str":"4030732265","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184126465,"id_str":"663728018184126465","text":"@coemujer oie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727560086429696,"in_reply_to_status_id_str":"663727560086429696","in_reply_to_user_id":2528173855,"in_reply_to_user_id_str":"2528173855","in_reply_to_screen_name":"coemujer","user":{"id":2867299453,"id_str":"2867299453","name":"Hector Cheng","screen_name":"ogrocoe","location":"$P011","url":null,"description":"quero um destino incerto p vida inteira","protected":false,"verified":false,"followers_count":1664,"friends_count":833,"listed_count":0,"favourites_count":6254,"statuses_count":28293,"created_at":"Mon Oct 20 13:55:59 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663418443178315777\/6mkaDTO9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663418443178315777\/6mkaDTO9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2867299453\/1446737201","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"coemujer","name":"Let\u00edcia Noer","id":2528173855,"id_str":"2528173855","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192363520,"id_str":"663728018192363520","text":"\u30b7\u30f3\u30d5\u30a9\u79fb\u52d5\u97ff\u304d\u3068\u304b\u3044\u3089\u3093\u3084\u308d\u30fc\u3066\u3044\u3044\u306a\u304c\u3089\u305a\u3063\u3068\u8cb7\u3063\u3066\u306a\u3044\u308f\u3002\n\u307e\u3041\u3001\u4f7f\u308f\u3093\u3060\u308d\u3046\u306a\u3041\u3001\u3080\u3057\u308d\u65b0\u898f\u3067\u5f37\u3044\u306e\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234292258,"id_str":"234292258","name":"\u304f\u308d\u3048\u3010IS\u3011","screen_name":"kuroe0353","location":null,"url":null,"description":"\u30ab\u30fc\u30c9\u30b2\u30fc\u30e0\u3092\u3061\u3089\u307b\u3089\u30cb\u30b3\u751f\u3067\u3057\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u3002 \u69cb\u7bc9\u529b\u7686\u7121\u306e\u96d1\u9b5a\u3067\u3059\u3002\u7d61\u3093\u3067\u304f\u308c\u308b\u4eba\u5927\u597d\u304d\u30c7\u30b9\u3002","protected":false,"verified":false,"followers_count":222,"friends_count":527,"listed_count":3,"favourites_count":575,"statuses_count":13544,"created_at":"Wed Jan 05 08:49:52 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033434141\/2d0ff59e59c0fce3c79f9411c6c66c1f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033434141\/2d0ff59e59c0fce3c79f9411c6c66c1f.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630807702738894848\/CcOScr7A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630807702738894848\/CcOScr7A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234292258\/1435510596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184134658,"id_str":"663728018184134658","text":"pot muitos gostos diferentes que possam haver por a\u00ed, acho que todas as raparigas acham o Beckham hot hot hot \ud83d\udd25\ud83d\udd25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2446202563,"id_str":"2446202563","name":"docinho ","screen_name":"elisafdsilva","location":null,"url":"http:\/\/instagram.com\/elisafdsilva","description":"snap \u2022 instagram : elisafdsilva","protected":false,"verified":false,"followers_count":230,"friends_count":131,"listed_count":0,"favourites_count":3142,"statuses_count":15636,"created_at":"Tue Apr 15 23:22:13 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"929E99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636712340994584576\/mB8cL5fL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636712340994584576\/mB8cL5fL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2446202563\/1441641304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d54a39cd6263b153","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d54a39cd6263b153.json","place_type":"city","name":"Vila Nova de Gaia","full_name":"Vila Nova de Gaia, Portugal","country_code":"PT","country":"Portugal","bounding_box":{"type":"Polygon","coordinates":[[[-8.673278,41.009309],[-8.673278,41.147474],[-8.448741,41.147474],[-8.448741,41.009309]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196733952,"id_str":"663728018196733952","text":"RT @OrwellGeorge: Me tiene muy preocupado lo de Albino. https:\/\/t.co\/FN3B2yeS3n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216254861,"id_str":"216254861","name":"Saul Goodman","screen_name":"ibettercallsaul","location":"Belize","url":null,"description":"The test of our progress is not whether we add more to the abundance of those who have much, its whether we provide enough for those who have too little.","protected":false,"verified":false,"followers_count":215,"friends_count":238,"listed_count":4,"favourites_count":2209,"statuses_count":16021,"created_at":"Tue Nov 16 05:20:41 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449602426127912960\/O3P-DYhP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449602426127912960\/O3P-DYhP.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9BD4CF","profile_text_color":"35C7E7","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501546414791335936\/tbkDNsa0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501546414791335936\/tbkDNsa0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216254861\/1408412980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:16:34 +0000 2015","id":663706747031429120,"id_str":"663706747031429120","text":"Me tiene muy preocupado lo de Albino. https:\/\/t.co\/FN3B2yeS3n","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75879733,"id_str":"75879733","name":"Mariano","screen_name":"OrwellGeorge","location":"Argentina","url":"http:\/\/page.is\/mariano","description":"A HGW XX\/7, en agradecimiento","protected":false,"verified":false,"followers_count":15442,"friends_count":477,"listed_count":168,"favourites_count":22170,"statuses_count":113116,"created_at":"Sun Sep 20 21:30:07 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472053669664288768\/F72j386i.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472053669664288768\/F72j386i.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658511464920166401\/tdU4sggD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658511464920166401\/tdU4sggD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75879733\/1403216424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663706729608306688,"id_str":"663706729608306688","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","url":"https:\/\/t.co\/FN3B2yeS3n","display_url":"pic.twitter.com\/FN3B2yeS3n","expanded_url":"http:\/\/twitter.com\/OrwellGeorge\/status\/663706747031429120\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706729608306688,"id_str":"663706729608306688","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","url":"https:\/\/t.co\/FN3B2yeS3n","display_url":"pic.twitter.com\/FN3B2yeS3n","expanded_url":"http:\/\/twitter.com\/OrwellGeorge\/status\/663706747031429120\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OrwellGeorge","name":"Mariano","id":75879733,"id_str":"75879733","indices":[3,16]}],"symbols":[],"media":[{"id":663706729608306688,"id_str":"663706729608306688","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","url":"https:\/\/t.co\/FN3B2yeS3n","display_url":"pic.twitter.com\/FN3B2yeS3n","expanded_url":"http:\/\/twitter.com\/OrwellGeorge\/status\/663706747031429120\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663706747031429120,"source_status_id_str":"663706747031429120","source_user_id":75879733,"source_user_id_str":"75879733"}]},"extended_entities":{"media":[{"id":663706729608306688,"id_str":"663706729608306688","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1wQ1W4AAqsIS.jpg","url":"https:\/\/t.co\/FN3B2yeS3n","display_url":"pic.twitter.com\/FN3B2yeS3n","expanded_url":"http:\/\/twitter.com\/OrwellGeorge\/status\/663706747031429120\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663706747031429120,"source_status_id_str":"663706747031429120","source_user_id":75879733,"source_user_id_str":"75879733"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192506880,"id_str":"663728018192506880","text":"RT @trufflesbruton: Hi #EnglandHour See all our November events @trufflesbruton at https:\/\/t.co\/nVpGfkwIRT https:\/\/t.co\/AWKBQTUouM","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2855638887,"id_str":"2855638887","name":"Terry D Wilton","screen_name":"coombe49","location":"Somerset","url":null,"description":"general alround wag!","protected":false,"verified":false,"followers_count":71,"friends_count":120,"listed_count":3,"favourites_count":1555,"statuses_count":1599,"created_at":"Sat Nov 01 21:33:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574657290533478401\/hx7NySiJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574657290533478401\/hx7NySiJ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:09:44 +0000 2015","id":663463436274294784,"id_str":"663463436274294784","text":"Hi #EnglandHour See all our November events @trufflesbruton at https:\/\/t.co\/nVpGfkwIRT https:\/\/t.co\/AWKBQTUouM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1004527441,"id_str":"1004527441","name":"Truffles Brasserie","screen_name":"trufflesbruton","location":"Bruton, Somerset","url":"http:\/\/www.trufflesbistro.co.uk","description":"Truffles Brasserie in Bruton. Modern French dishes using locally sourced west country produce. Friendly family run business setting the local standard","protected":false,"verified":false,"followers_count":1687,"friends_count":1997,"listed_count":21,"favourites_count":246,"statuses_count":3278,"created_at":"Tue Dec 11 17:45:09 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528538040415711232\/raorWPS1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528538040415711232\/raorWPS1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1004527441\/1436437088","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"EnglandHour","indices":[3,15]}],"urls":[{"url":"https:\/\/t.co\/nVpGfkwIRT","expanded_url":"http:\/\/www.trufflesbistro.co.uk\/news\/","display_url":"trufflesbistro.co.uk\/news\/","indices":[65,88]}],"user_mentions":[{"screen_name":"trufflesbruton","name":"Truffles Brasserie","id":1004527441,"id_str":"1004527441","indices":[46,61]}],"symbols":[],"media":[{"id":663463435087323136,"id_str":"663463435087323136","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","url":"https:\/\/t.co\/AWKBQTUouM","display_url":"pic.twitter.com\/AWKBQTUouM","expanded_url":"http:\/\/twitter.com\/trufflesbruton\/status\/663463436274294784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":640,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663463435087323136,"id_str":"663463435087323136","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","url":"https:\/\/t.co\/AWKBQTUouM","display_url":"pic.twitter.com\/AWKBQTUouM","expanded_url":"http:\/\/twitter.com\/trufflesbruton\/status\/663463436274294784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":640,"h":424,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnglandHour","indices":[23,35]}],"urls":[{"url":"https:\/\/t.co\/nVpGfkwIRT","expanded_url":"http:\/\/www.trufflesbistro.co.uk\/news\/","display_url":"trufflesbistro.co.uk\/news\/","indices":[85,108]}],"user_mentions":[{"screen_name":"trufflesbruton","name":"Truffles Brasserie","id":1004527441,"id_str":"1004527441","indices":[3,18]},{"screen_name":"trufflesbruton","name":"Truffles Brasserie","id":1004527441,"id_str":"1004527441","indices":[66,81]}],"symbols":[],"media":[{"id":663463435087323136,"id_str":"663463435087323136","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","url":"https:\/\/t.co\/AWKBQTUouM","display_url":"pic.twitter.com\/AWKBQTUouM","expanded_url":"http:\/\/twitter.com\/trufflesbruton\/status\/663463436274294784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":640,"h":424,"resize":"fit"}},"source_status_id":663463436274294784,"source_status_id_str":"663463436274294784","source_user_id":1004527441,"source_user_id_str":"1004527441"}]},"extended_entities":{"media":[{"id":663463435087323136,"id_str":"663463435087323136","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUYeqHXIAAA59i.jpg","url":"https:\/\/t.co\/AWKBQTUouM","display_url":"pic.twitter.com\/AWKBQTUouM","expanded_url":"http:\/\/twitter.com\/trufflesbruton\/status\/663463436274294784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":640,"h":424,"resize":"fit"}},"source_status_id":663463436274294784,"source_status_id_str":"663463436274294784","source_user_id":1004527441,"source_user_id_str":"1004527441"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196680705,"id_str":"663728018196680705","text":"RT @turcocarp: Un ejemplo Coudet calmando a los que agreden. Justo contra Arruabarrena, el que quiso jugar sin importarle agresiones ni riv\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2856398159,"id_str":"2856398159","name":"el marian","screen_name":"elmarian625","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":159,"listed_count":0,"favourites_count":73,"statuses_count":284,"created_at":"Sun Nov 02 08:51:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633925471953113088\/IddDoBpc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633925471953113088\/IddDoBpc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2856398159\/1439387749","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:16:18 +0000 2015","id":663540586742489088,"id_str":"663540586742489088","text":"Un ejemplo Coudet calmando a los que agreden. Justo contra Arruabarrena, el que quiso jugar sin importarle agresiones ni rivales lastimados.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152432319,"id_str":"152432319","name":"Nadir Ghazal","screen_name":"turcocarp","location":"Longchamps","url":"http:\/\/ramondiaz.com","description":"Periodista deportivo y arquero. Ram\u00f3n D\u00edaz, mi religi\u00f3n. Enzo, Ariel, Salas, Lionel, Marcelo y Fernando me alegraron la vida...","protected":false,"verified":false,"followers_count":48633,"friends_count":1086,"listed_count":143,"favourites_count":9014,"statuses_count":58203,"created_at":"Sat Jun 05 23:43:19 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBD2D2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/213167614\/o_river_plate_historia-307695.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/213167614\/o_river_plate_historia-307695.jpg","profile_background_tile":true,"profile_link_color":"093580","profile_sidebar_border_color":"C1EBD2","profile_sidebar_fill_color":"B6BDBA","profile_text_color":"541D07","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491339279163879424\/Blrv1tCT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491339279163879424\/Blrv1tCT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152432319\/1381463325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":697,"favorite_count":557,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"turcocarp","name":"Nadir Ghazal","id":152432319,"id_str":"152432319","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184134657,"id_str":"663728018184134657","text":"RT @BibliothecaRara: Miniaturen aus der Hand Jean Poyets im Gebetbuch der Anne de Bretagne. https:\/\/t.co\/8E2g2TaeA7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":165338054,"id_str":"165338054","name":"Jean-Luc Deuffic","screen_name":"medievalpecia","location":"St-Denis (France)","url":"http:\/\/blog.pecia.fr","description":"La recherche ma passion - les manuscrits mon quotidien - les Livres d'heures mon bonheur - la Bretagne dans mon coeur !\nMedieval mss- Book of hours","protected":false,"verified":false,"followers_count":2776,"friends_count":364,"listed_count":210,"favourites_count":452,"statuses_count":13157,"created_at":"Sun Jul 11 08:08:01 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/124044714\/stat.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/124044714\/stat.jpg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1620077351\/0_g_fillastre_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1620077351\/0_g_fillastre_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165338054\/1398449347","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:12 +0000 2015","id":663725780359344128,"id_str":"663725780359344128","text":"Miniaturen aus der Hand Jean Poyets im Gebetbuch der Anne de Bretagne. https:\/\/t.co\/8E2g2TaeA7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224376306,"id_str":"224376306","name":"Bibliotheca Rara","screen_name":"BibliothecaRara","location":"M\u00fcnster, Germany","url":"http:\/\/www.br-faksimile.de","description":"Faksimile-Verlag, gegr. 1990. Europas Faksimile-Welt unter einem Dach! Impressum: http:\/\/www.br-faksimile.de\/html\/impressum.html","protected":false,"verified":false,"followers_count":3201,"friends_count":3146,"listed_count":90,"favourites_count":8,"statuses_count":56484,"created_at":"Wed Dec 08 21:06:21 +0000 2010","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/179572270\/010v_TWI2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/179572270\/010v_TWI2.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1185849658\/Logo_K_nig1_ABCD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1185849658\/Logo_K_nig1_ABCD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224376306\/1359422159","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725779264630784,"id_str":"663725779264630784","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","url":"https:\/\/t.co\/8E2g2TaeA7","display_url":"pic.twitter.com\/8E2g2TaeA7","expanded_url":"http:\/\/twitter.com\/BibliothecaRara\/status\/663725780359344128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":271,"resize":"fit"},"large":{"w":716,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":479,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725779264630784,"id_str":"663725779264630784","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","url":"https:\/\/t.co\/8E2g2TaeA7","display_url":"pic.twitter.com\/8E2g2TaeA7","expanded_url":"http:\/\/twitter.com\/BibliothecaRara\/status\/663725780359344128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":271,"resize":"fit"},"large":{"w":716,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":479,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BibliothecaRara","name":"Bibliotheca Rara","id":224376306,"id_str":"224376306","indices":[3,19]}],"symbols":[],"media":[{"id":663725779264630784,"id_str":"663725779264630784","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","url":"https:\/\/t.co\/8E2g2TaeA7","display_url":"pic.twitter.com\/8E2g2TaeA7","expanded_url":"http:\/\/twitter.com\/BibliothecaRara\/status\/663725780359344128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":271,"resize":"fit"},"large":{"w":716,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":479,"resize":"fit"}},"source_status_id":663725780359344128,"source_status_id_str":"663725780359344128","source_user_id":224376306,"source_user_id_str":"224376306"}]},"extended_entities":{"media":[{"id":663725779264630784,"id_str":"663725779264630784","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHFGVWcAAs8C9.jpg","url":"https:\/\/t.co\/8E2g2TaeA7","display_url":"pic.twitter.com\/8E2g2TaeA7","expanded_url":"http:\/\/twitter.com\/BibliothecaRara\/status\/663725780359344128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":271,"resize":"fit"},"large":{"w":716,"h":572,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":479,"resize":"fit"}},"source_status_id":663725780359344128,"source_status_id_str":"663725780359344128","source_user_id":224376306,"source_user_id_str":"224376306"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167169024,"id_str":"663728018167169024","text":"RT @kimosugimasu: \u96fb\u8a71\u3067\u3066\u3082\u3089\u3063\u3066\u81ea\u5206\u306e\u540d\u5b57\u3044\u308f\u308c\u3066\u3046\u308f\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3063\u3066\u3044\u3046\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u30d9\u30bf https:\/\/t.co\/yKElJDICyh","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105133948,"id_str":"105133948","name":"\u56db\u56db\u753b\u7261\u4e39","screen_name":"botan_shishiga","location":"\u3044\u3048\u306e\u306a\u304b\u306b\u3044\u308b","url":null,"description":"PeCa\uff0fWeb\u30c7\u30b6\u30a4\u30f3\u5c4b\uff0f\u54b2\uff0f\u307e\u307b\u3044\u304f\uff0f\u6a2a\u9808\u8cc0\u93ae\u5b88\u5e9c\uff0fPINARELLO RAZHA","protected":false,"verified":false,"followers_count":174,"friends_count":446,"listed_count":5,"favourites_count":1737,"statuses_count":32227,"created_at":"Fri Jan 15 13:11:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEEEE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"CC5577","profile_sidebar_border_color":"DDDDBB","profile_sidebar_fill_color":"FAF5E6","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512481272329826304\/TOC6L4zC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512481272329826304\/TOC6L4zC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105133948\/1434626734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727705800622080,"id_str":"663727705800622080","text":"\u96fb\u8a71\u3067\u3066\u3082\u3089\u3063\u3066\u81ea\u5206\u306e\u540d\u5b57\u3044\u308f\u308c\u3066\u3046\u308f\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3063\u3066\u3044\u3046\u3081\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3063\u3061\u3083\u30d9\u30bf https:\/\/t.co\/yKElJDICyh","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2315257771,"id_str":"2315257771","name":"\u306a\u3044\u305e\u3046","screen_name":"kimosugimasu","location":null,"url":null,"description":"\u6210\u4eba\u5411\u3051\u3002\u63cf\u304f\u3082\u306e\u5168\u90e8\u767e\u5408\u3067\u3059\u3002\u634f\u9020\u5984\u60f3\u304c\u904e\u304e\u308b\u5834\u5408\u591a\u3005\u3042\u308a\u307e\u3059\u3002\u767e\u5408\u3001\u767e\u5408\u3057\u304b\u306a\u3044\u3067\u3059\u3002\u6c5a\u3044\u3067\u3059\u3002\u7a7a\u30ea\u30d7\u304c\u591a\u304f\u3046\u308b\u3055\u3044\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u3001\u30d8\u30c3\u30c0\u30fc\u306f\u3071\u3055\u3093(@0Alpha02)","protected":false,"verified":false,"followers_count":6984,"friends_count":131,"listed_count":265,"favourites_count":38131,"statuses_count":2551,"created_at":"Tue Jan 28 10:12:49 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663284294933049344\/Oj0vIA2N_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663284294933049344\/Oj0vIA2N_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2315257771\/1446521037","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":44,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727367496560640,"id_str":"663727367496560640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":938,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"large":{"w":639,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727367496560640,"id_str":"663727367496560640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":938,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"large":{"w":639,"h":1000,"resize":"fit"}}},{"id":663727394608578560,"id_str":"663727394608578560","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjH9XAAAbba_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjH9XAAAbba_.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":607,"resize":"fit"},"medium":{"w":600,"h":569,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kimosugimasu","name":"\u306a\u3044\u305e\u3046","id":2315257771,"id_str":"2315257771","indices":[3,16]}],"symbols":[],"media":[{"id":663727367496560640,"id_str":"663727367496560640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":938,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"large":{"w":639,"h":1000,"resize":"fit"}},"source_status_id":663727705800622080,"source_status_id_str":"663727705800622080","source_user_id":2315257771,"source_user_id_str":"2315257771"}]},"extended_entities":{"media":[{"id":663727367496560640,"id_str":"663727367496560640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIhi9WcAAuICc.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":938,"resize":"fit"},"small":{"w":340,"h":532,"resize":"fit"},"large":{"w":639,"h":1000,"resize":"fit"}},"source_status_id":663727705800622080,"source_status_id_str":"663727705800622080","source_user_id":2315257771,"source_user_id_str":"2315257771"},{"id":663727394608578560,"id_str":"663727394608578560","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIjH9XAAAbba_.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIjH9XAAAbba_.png","url":"https:\/\/t.co\/yKElJDICyh","display_url":"pic.twitter.com\/yKElJDICyh","expanded_url":"http:\/\/twitter.com\/kimosugimasu\/status\/663727705800622080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":322,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":607,"resize":"fit"},"medium":{"w":600,"h":569,"resize":"fit"}},"source_status_id":663727705800622080,"source_status_id_str":"663727705800622080","source_user_id":2315257771,"source_user_id_str":"2315257771"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065658"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196705284,"id_str":"663728018196705284","text":"Comments... https:\/\/t.co\/EwGjOc6zKS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":997557980,"id_str":"997557980","name":"Bunny Bentley","screen_name":"bunny_bentley","location":null,"url":null,"description":"...first they must catch you...","protected":false,"verified":false,"followers_count":104,"friends_count":559,"listed_count":2,"favourites_count":357,"statuses_count":1072,"created_at":"Sat Dec 08 17:02:27 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451885503416373248\/yjKQrEm4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451885503416373248\/yjKQrEm4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/997557980\/1396573586","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663705365779910656,"quoted_status_id_str":"663705365779910656","quoted_status":{"created_at":"Mon Nov 09 13:11:04 +0000 2015","id":663705365779910656,"id_str":"663705365779910656","text":"Faculty to Walk Out in Solidarity... https:\/\/t.co\/ZLWF3w9mKI","source":"\u003ca href=\"http:\/\/drudge.tw\" rel=\"nofollow\"\u003eDrudge\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14669951,"id_str":"14669951","name":"DRUDGE REPORT","screen_name":"DRUDGE_REPORT","location":"US","url":"http:\/\/www.DRUDGEREPORT.com","description":"The DRUDGE REPORT is a U.S. based news aggregation website run by Matt Drudge(@DRUDGE).","protected":false,"verified":false,"followers_count":843362,"friends_count":2,"listed_count":19046,"favourites_count":0,"statuses_count":154898,"created_at":"Tue May 06 05:34:47 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/4623499\/white.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/4623499\/white.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/53808884\/images_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/53808884\/images_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZLWF3w9mKI","expanded_url":"http:\/\/abcn.ws\/1Oz9tKd","display_url":"abcn.ws\/1Oz9tKd","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EwGjOc6zKS","expanded_url":"https:\/\/twitter.com\/DRUDGE_REPORT\/status\/663705365779910656","display_url":"twitter.com\/DRUDGE_REPORT\/\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171412480,"id_str":"663728018171412480","text":"RT @AstoundingCam: @JackJackJohnson one of those cities better be New Orleans","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630368861,"id_str":"630368861","name":"Kyle? Dakota?","screen_name":"Gabby__R","location":"New Jersey|Maine","url":"https:\/\/vine.co\/u\/1050861378711552000","description":"16|| I make Vines vine-gggaabbbbyy ||click below||","protected":false,"verified":false,"followers_count":2423,"friends_count":2619,"listed_count":15,"favourites_count":40258,"statuses_count":63648,"created_at":"Sun Jul 08 17:14:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00EEFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/813547158\/bc0b8722c86f0b9fba5cc3ce78c806fe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/813547158\/bc0b8722c86f0b9fba5cc3ce78c806fe.jpeg","profile_background_tile":true,"profile_link_color":"F50A8F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663203729655599104\/q2n8kEgr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663203729655599104\/q2n8kEgr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630368861\/1446942892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727967592321024,"id_str":"663727967592321024","text":"@JackJackJohnson one of those cities better be New Orleans","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727433779056641,"in_reply_to_status_id_str":"663727433779056641","in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":2961352387,"id_str":"2961352387","name":"Cameron Dallas","screen_name":"AstoundingCam","location":"Marksville, LA\/ Shreveport, LA","url":null,"description":"turn my notifs on for a solo DM with 11\/12!||Don't Forget To Smile,whatever ur going through, you can get through it, youre worth it. i promise","protected":false,"verified":false,"followers_count":95345,"friends_count":6369,"listed_count":82,"favourites_count":2216,"statuses_count":80,"created_at":"Tue Jan 06 20:13:15 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663456436454723584\/_gVFrnHg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663456436454723584\/_gVFrnHg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2961352387\/1446405223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AstoundingCam","name":"Cameron Dallas","id":2961352387,"id_str":"2961352387","indices":[3,17]},{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[19,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179788800,"id_str":"663728018179788800","text":"Me pase de v al enviarle eso\ud83c\udf1a\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":477409761,"id_str":"477409761","name":"Fernando","screen_name":"Fernando12__","location":"Sonora, Mex.","url":null,"description":null,"protected":false,"verified":false,"followers_count":651,"friends_count":507,"listed_count":1,"favourites_count":6555,"statuses_count":41393,"created_at":"Sun Jan 29 05:00:57 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613597603830218752\/fdNPytLR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613597603830218752\/fdNPytLR.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663582010003197952\/LxHh3uMH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663582010003197952\/LxHh3uMH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/477409761\/1446876381","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018175709184,"id_str":"663728018175709184","text":"@Harry_Styles you deserve all the love\nand respect in the world.\nthank you for always making me smile.\nwould you mind following me?\n69,728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662691957039304704,"in_reply_to_status_id_str":"662691957039304704","in_reply_to_user_id":181561712,"in_reply_to_user_id_str":"181561712","in_reply_to_screen_name":"Harry_Styles","user":{"id":2275126410,"id_str":"2275126410","name":"it'll happen.","screen_name":"niallscrushx","location":"Poland","url":null,"description":"liam\/four. 11.09.15 - m&g with the janoskians.","protected":false,"verified":false,"followers_count":6423,"friends_count":120,"listed_count":71,"favourites_count":97,"statuses_count":201781,"created_at":"Fri Jan 03 21:30:46 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FAF9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_tile":true,"profile_link_color":"0E359E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275126410\/1426864732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065660"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196590592,"id_str":"663728018196590592","text":"\u5a18\u306e\u56de\u7b54\u300c\u77e5\u3089\u306a\u3044\uff01\uff01\uff01\uff01\uff01\u5fd8\u308c\u3066\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\u304d\u3053\u3048\u306a\u3044\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272324847,"id_str":"272324847","name":"\u3068\u3055\u677e","screen_name":"tosayakitty","location":"\u4e09\u9580\u5e02( -3-)","url":null,"description":"\uff0a\u6210\u4eba\u6e08\u8150\u308c\u58f0\u8c5a \uff0a\u5730\u96f7\u7121\u3057\u96d1\u98df \uff0a\u597d\u304d\/\u9ed2\u30d0\u30b9(\u5e1d\u5149)\u30fb\uff28\uff31(\u97f3\u99d2)\u30fb\u2662\uff21(\u5c0f\u6e4a\u5144\u5f1f)\u30fbWT(\u5d50\u5c71\u968a)\u30fb\u82b1\u6c5f\u590f\u6a39\u3055\u3093\u30fb\u9022\u5742\u826f\u592a\u3055\u3093\u30fb\u5ca1\u672c\u4fe1\u5f66\u3055\u3093 \u4ed6 \uff0a\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\u2026 \uff0a\u30a2\u30a4\u30b3\u30f3\u306f\u30c2\u30ce(@blueblue_512)","protected":false,"verified":false,"followers_count":56,"friends_count":116,"listed_count":5,"favourites_count":2873,"statuses_count":31777,"created_at":"Sat Mar 26 08:23:31 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661064921921130496\/OFIJ6z-d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661064921921130496\/OFIJ6z-d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272324847\/1446999463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167193600,"id_str":"663728018167193600","text":"\u3046\u3093\u3053\u6f0f\u3089\u3057\u305f\u306e\u77e5\u3063\u3066\u308b\u306e\u306f\u7537\u306e\u53cb\u9054\u3060\u3051\u3060\u3088\u2026","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":306646887,"id_str":"306646887","name":"\u5927\u7d71\u9818\u677e","screen_name":"F328_P_prEs","location":null,"url":"http:\/\/ameblo.jp\/pres328tf\/","description":"\u732b\u30ad\u30e3\u30e9\u597d\u304d\u3060\u3051\u3069\u732b\u30a2\u30ec\u30eb\u30ae\u30fc\u3002 \u5909\u5f62\u3059\u308b\u73a9\u5177\u597d\u304d\u3002 \u55da\u547c\u3001\u4eca\u5bb5\u3082\u91d1\u306e\u306a\u3044\u751f\u6d3b\u3092\u8b33\u6b4c\u3059\u308b\u3002","protected":false,"verified":false,"followers_count":1121,"friends_count":1117,"listed_count":36,"favourites_count":18011,"statuses_count":171850,"created_at":"Sat May 28 07:05:54 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470189816772960256\/-u_10vK7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470189816772960256\/-u_10vK7.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663406757062946817\/3mxl0uRl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663406757062946817\/3mxl0uRl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/306646887\/1446229585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065658"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192539648,"id_str":"663728018192539648","text":"RT @jooseohyun366: @secret4_sj ne gomawo :* ^^","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3440832382,"id_str":"3440832382","name":"\uc2dc\ud06c\ub9bf-\uc1a1\uc9c0\uc740","screen_name":"secret4_sj","location":"Seoul, Republic of Korea","url":"https:\/\/instagram.com\/secret_jieunssong","description":"SECRET SONGJIEUN First Twitter account @SECRETsongjieun Forever mine my cutie handsome husband \u2764 @mark__got7 \u2764 Special Day 80915","protected":false,"verified":false,"followers_count":181,"friends_count":213,"listed_count":0,"favourites_count":679,"statuses_count":882,"created_at":"Tue Aug 25 22:48:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371867546255360\/o9eKeJ8d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371867546255360\/o9eKeJ8d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3440832382\/1446993514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:40 +0000 2015","id":663727661638774784,"id_str":"663727661638774784","text":"@secret4_sj ne gomawo :* ^^","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726613826297857,"in_reply_to_status_id_str":"663726613826297857","in_reply_to_user_id":3440832382,"in_reply_to_user_id_str":"3440832382","in_reply_to_screen_name":"secret4_sj","user":{"id":3300066031,"id_str":"3300066031","name":"joo seohyun","screen_name":"jooseohyun366","location":null,"url":null,"description":"Annyeong Maknae of SNSD imnida ^^, I love you SONE. \u00bbI like keroro cartoon\u00ab My nickname is Seohyun\/Seororo_mine @seongyeol2708 \u300b04\/24\/2015\u00ae\u2764\u2764","protected":false,"verified":false,"followers_count":131,"friends_count":55,"listed_count":0,"favourites_count":1105,"statuses_count":714,"created_at":"Wed Jul 29 01:25:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663141130456829952\/dYPGeOnZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663141130456829952\/dYPGeOnZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300066031\/1447072448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"secret4_sj","name":"\uc2dc\ud06c\ub9bf-\uc1a1\uc9c0\uc740","id":3440832382,"id_str":"3440832382","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jooseohyun366","name":"joo seohyun","id":3300066031,"id_str":"3300066031","indices":[3,17]},{"screen_name":"secret4_sj","name":"\uc2dc\ud06c\ub9bf-\uc1a1\uc9c0\uc740","id":3440832382,"id_str":"3440832382","indices":[19,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184015872,"id_str":"663728018184015872","text":"\u8db3\u308a\u308b\u304b\u3069\u3046\u304b\u308f\u304b\u3089\u3093\u304c\u306a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":290397156,"id_str":"290397156","name":"\u3078\u306e\u3078\u306e@\u30c7\u30ec\u30b9\u30c6PLv83","screen_name":"henomohejiheno","location":null,"url":"http:\/\/www56.atwiki.jp\/akitatnp\/","description":"\u4eba\u72fc\u666e\u53ca\u59d4\u54e1(\u81ea\u79f0) \u521d\u7d1a\u8005\u30dc\u30fc\u30c9\u30b2\u30fc\u30de\u30fc WiiU\u306eID\u306fTwitter\u3068\u540c\u3058 \u52d5\u753b\u4f5c\u6210\u3082\u305f\u307e\u306b\u3059\u308b \u6700\u8fd1\u3086\u3063\u304f\u308a\u5b9f\u6cc1\u52d5\u753b\u3092\u4e0a\u3052\u3066\u3044\u308b\u3089\u3057\u3044 \u8272\u3093\u306a\u30b8\u30e3\u30f3\u30eb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u3059\u308b\u72ed\u304f\u6d45\u3044\u30a2\u30ab\u30a6\u30f3\u30c8 \u73fe\u5728\u306e\u30a2\u30a4\u30b3\u30f3\u306f\u5929\u7a7a \u7fd4\u3055\u3093(@Yamashigo5)\u306b\u63cf\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":562,"friends_count":464,"listed_count":18,"favourites_count":0,"statuses_count":188269,"created_at":"Sat Apr 30 06:31:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657209930487738370\/aMMvDbPj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657209930487738370\/aMMvDbPj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290397156\/1400055969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018162974720,"id_str":"663728018162974720","text":"@TSNBobMcKenzie congrats to the best in the biz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":54791458,"in_reply_to_user_id_str":"54791458","in_reply_to_screen_name":"TSNBobMcKenzie","user":{"id":32363996,"id_str":"32363996","name":"Wahab Ali","screen_name":"CrazySecurity","location":"Langley B.C. Canada","url":null,"description":"Expert in the Field of Tuning and Die-Hard Calgary Flames Fan","protected":false,"verified":false,"followers_count":46,"friends_count":228,"listed_count":1,"favourites_count":94,"statuses_count":3713,"created_at":"Fri Apr 17 10:39:26 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477416862515355648\/izD7qp6C_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477416862515355648\/izD7qp6C_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32363996\/1363800619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TSNBobMcKenzie","name":"Bob McKenzie","id":54791458,"id_str":"54791458","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065657"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196680704,"id_str":"663728018196680704","text":"@enzoamored @TwerkOwensTwerk Yes he is, agent. Please save me.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727797844762624,"in_reply_to_status_id_str":"663727797844762624","in_reply_to_user_id":812027509,"in_reply_to_user_id_str":"812027509","in_reply_to_screen_name":"enzoamored","user":{"id":1671256242,"id_str":"1671256242","name":"amber","screen_name":"eraofambrose","location":"Italy.","url":"http:\/\/fleetwood-babe.tumblr.com","description":"scorpio. chicana. social & political justice. modern hippie. serial killer enthusiast.","protected":false,"verified":false,"followers_count":1537,"friends_count":214,"listed_count":8,"favourites_count":180,"statuses_count":38153,"created_at":"Wed Aug 14 19:38:24 +0000 2013","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575228223857930241\/CC3jR2q2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575228223857930241\/CC3jR2q2.jpeg","profile_background_tile":true,"profile_link_color":"6E2345","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660925887341273088\/kl1fQ3Lk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660925887341273088\/kl1fQ3Lk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1671256242\/1446412257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"enzoamored","name":"Adam","id":812027509,"id_str":"812027509","indices":[0,11]},{"screen_name":"TwerkOwensTwerk","name":"josh","id":2416564428,"id_str":"2416564428","indices":[12,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200727552,"id_str":"663728018200727552","text":"RT @secretbrains: Brain-Enhancing 'Smart Pills' Used By Billionaires Are Leaving People Wanting More!\ud83d\udcb8\ud83d\udc8a\nhttps:\/\/t.co\/elwrj78KiV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3460343534,"id_str":"3460343534","name":"s\u03b1\u05e0\u03b9\u2202 \u03b1\u03b7s\u03b1\u044f\u03b9","screen_name":"sajidan26142744","location":null,"url":"http:\/\/www.host.com","description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":45,"listed_count":8,"favourites_count":179,"statuses_count":151,"created_at":"Sat Sep 05 14:51:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663680206016659457\/Nt7c_maL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663680206016659457\/Nt7c_maL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3460343534\/1447068665","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:42:19 +0000 2015","id":663426339337191425,"id_str":"663426339337191425","text":"Brain-Enhancing 'Smart Pills' Used By Billionaires Are Leaving People Wanting More!\ud83d\udcb8\ud83d\udc8a\nhttps:\/\/t.co\/elwrj78KiV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2372548099,"id_str":"2372548099","name":"Secret Brain","screen_name":"secretbrains","location":"Synapses","url":null,"description":"Increase your Energy, Focus, Memory and Boost Brain Performance.","protected":false,"verified":false,"followers_count":23627,"friends_count":1,"listed_count":12,"favourites_count":0,"statuses_count":115,"created_at":"Tue Mar 04 21:56:12 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640344584640331776\/xXtqwj9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640344584640331776\/xXtqwj9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2372548099\/1441505104","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":44,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/elwrj78KiV","expanded_url":"http:\/\/megafocus.co\/ayCamQ","display_url":"megafocus.co\/ayCamQ","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/elwrj78KiV","expanded_url":"http:\/\/megafocus.co\/ayCamQ","display_url":"megafocus.co\/ayCamQ","indices":[104,127]}],"user_mentions":[{"screen_name":"secretbrains","name":"Secret Brain","id":2372548099,"id_str":"2372548099","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065666"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179776512,"id_str":"663728018179776512","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3092\u5e0c\u671b\u3059\u308b\u65b9\u306e\u305f\u3081\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u5f53\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3001\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3001\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3092\u5f85\u3061\u307e\u3057\u3087\u3046\u3002\u305d\u3057\u3066\u3053\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3001\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u3066\u3044\u308b\u4eba\u3092\u30d5\u30a9\u30ed\u30fc\u3002\u30ea\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u3068\u65b0\u898f\u30d5\u30a9\u30ed\u30ef\u30fc\u304c\u5897\u3048\u307e\u3059\uff17","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170264948,"id_str":"3170264948","name":"risa\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","screen_name":"heffernanelvin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":318,"friends_count":291,"listed_count":0,"favourites_count":1,"statuses_count":396,"created_at":"Fri Apr 24 07:16:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660385920634384384\/K8gEcyN8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660385920634384384\/K8gEcyN8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170264948\/1446283278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200752129,"id_str":"663728018200752129","text":"@kaitom_kaitom20 \n\u597d\u304d\u3060\u3088\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663705921097338880,"in_reply_to_status_id_str":"663705921097338880","in_reply_to_user_id":4124694433,"in_reply_to_user_id_str":"4124694433","in_reply_to_screen_name":"MrPrinceLove","user":{"id":4124694433,"id_str":"4124694433","name":"\u795e\u5bae\u5bfa\u52c7\u592a","screen_name":"MrPrinceLove","location":"\u300e\u5927\u5207\u300f\u67ca\u771f\u2606(2015\/11\/8)\uff5e","url":null,"description":"\u795e\u5bae\u5bfa\u52c7\u592anr\/\u4e8b\u52d9\u6240\u7121\u95a2\u4fc2\u2716\/\u672c\u4eba\u610f\u8b58\u4f4e\u3081\/\u7537\u4e5f\u25cb,\u5973\u4e5f\u25cb,\u4e00\u822c\u25cb\/\n\u300e\u8eab\u5185\u300f\u5927\u5207\u2192 \u67ca\u771f \u59bb\u2192\u304b\u3093\u306a \u59b9\u2192\u3086\u304d\u3053 \u59c9\u2192\u7f8e\u54b2 \u5f1f\u2192\u5ec9\n\u300e\u56fa\u5b9a\u300f\u3086\u3046\u3061\u3083\u3093.\u3058\u3093\u305f\u3093","protected":false,"verified":false,"followers_count":16,"friends_count":14,"listed_count":0,"favourites_count":23,"statuses_count":231,"created_at":"Wed Nov 04 14:09:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663676254231531521\/_yF_Jqcx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663676254231531521\/_yF_Jqcx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4124694433\/1446999374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaitom_kaitom20","name":"\u677e\u5009\u6d77\u6597","id":4135655833,"id_str":"4135655833","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065666"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179780608,"id_str":"663728018179780608","text":"RT @P_tan: \u30b7\u30f3\u30b1\u30f3\u30b8\u30e3\u30fc\u306e\u6bbf\u3001\u6700\u521d\u306b\u5727\u5012\u7684\u306a\u5b9f\u529b\u3092\u898b\u305b\u3064\u3051\u3066\u8a8d\u3081\u3055\u305b\u305f\u4e0a\u3067\u3001\u53cd\u9aa8\u7cbe\u795e\u306e\u3042\u308b\u7dd1\u306b\u306f\u53b3\u3057\u3081\u306b\u5f31\u70b9\u3092\u6307\u6458\u3001\u81ea\u5df1\u8a55\u4fa1\u306e\u4f4e\u3044\u9ec4\u306b\u306f\u627f\u8a8d\u3001\u5fe0\u7fa9\u306e\u539a\u3044\u9752\u306b\u306f\u4fe1\u983c\u3001\u59c9\u5fa1\u808c\u306e\u30d4\u30f3\u30af\u306b\u306f\u82e5\u5e72\u306e\u9699\u3092\u898b\u305b\u3066\u5171\u540c\u6226\u7dda\u7684\u306b\u632f\u308b\u821e\u3046\u3068\u3001\u304d\u3063\u3061\u308a\u500b\u5225\u306e\u80fd\u529b\u30fb\u5354\u529b\u3092\u5f15\u304d\u51fa\u3057\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/sinproject.net\/tweecha\/\" rel=\"nofollow\"\u003etweecha OLD\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298900558,"id_str":"298900558","name":"\u7bc0\u5ea6\u3042\u308b\u751f\u6d3b","screen_name":"tamuraramuta","location":null,"url":null,"description":"\u7bc0\u5236\u30fb\u7bc0\u7d04\u30fb\u81ea\u5df1\u5553\u767a","protected":false,"verified":false,"followers_count":379,"friends_count":636,"listed_count":7,"favourites_count":17904,"statuses_count":46062,"created_at":"Sun May 15 04:30:51 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"128156","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649285371637792769\/u0rPuXCX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649285371637792769\/u0rPuXCX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298900558\/1385826644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:12:29 +0000 2015","id":663479227476348928,"id_str":"663479227476348928","text":"\u30b7\u30f3\u30b1\u30f3\u30b8\u30e3\u30fc\u306e\u6bbf\u3001\u6700\u521d\u306b\u5727\u5012\u7684\u306a\u5b9f\u529b\u3092\u898b\u305b\u3064\u3051\u3066\u8a8d\u3081\u3055\u305b\u305f\u4e0a\u3067\u3001\u53cd\u9aa8\u7cbe\u795e\u306e\u3042\u308b\u7dd1\u306b\u306f\u53b3\u3057\u3081\u306b\u5f31\u70b9\u3092\u6307\u6458\u3001\u81ea\u5df1\u8a55\u4fa1\u306e\u4f4e\u3044\u9ec4\u306b\u306f\u627f\u8a8d\u3001\u5fe0\u7fa9\u306e\u539a\u3044\u9752\u306b\u306f\u4fe1\u983c\u3001\u59c9\u5fa1\u808c\u306e\u30d4\u30f3\u30af\u306b\u306f\u82e5\u5e72\u306e\u9699\u3092\u898b\u305b\u3066\u5171\u540c\u6226\u7dda\u7684\u306b\u632f\u308b\u821e\u3046\u3068\u3001\u304d\u3063\u3061\u308a\u500b\u5225\u306e\u80fd\u529b\u30fb\u5354\u529b\u3092\u5f15\u304d\u51fa\u3057\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53594876,"id_str":"53594876","name":"\u539f\u5e4c\u9c2d\u6674","screen_name":"P_tan","location":"\u65e5\u672c\u306e\u6c34\u74f6\u306e\u8fd1\u304f","url":"http:\/\/p-tan.hatenablog.com\/","description":"\u30bd\u30d5\u30c8\u5c4b@\u30e1\u30fc\u30ab\u30fc\/\u5408\u6c17\u9053\/\u5973\u795e\u8ee2\u751f\/\u30bd\u30d5\u30c8\u958b\u767a\/\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0\/\u89aa\u30d0\u30ab\/ \u6c17\u306b\u306a\u308b\u30c4\u30a4\u30fc\u30c8\u3092\u898b\u308b\u3068@\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u304c\u304a\u6c17\u306b\u306a\u3055\u3089\u305a\u3002","protected":false,"verified":false,"followers_count":439,"friends_count":748,"listed_count":30,"favourites_count":586,"statuses_count":7663,"created_at":"Sat Jul 04 04:36:16 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604609934739668992\/zPrnLBgg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604609934739668992\/zPrnLBgg_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"P_tan","name":"\u539f\u5e4c\u9c2d\u6674","id":53594876,"id_str":"53594876","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167214081,"id_str":"663728018167214081","text":"RT @ValaAfshar: Life is like riding a bicycle. To keep your balance, you must keep moving.\n\n\u2014Albert Einstein #mondaymotivation https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1492302054,"id_str":"1492302054","name":"Hugo O. Medina Jr.","screen_name":"KingH2flow","location":"Los Angeles ","url":null,"description":"Gamer, Boxing enthusiast, Music lover and Maker, Lover of Wisdom and of God, fitness fanatic, Science Lover, Chess Player, Hip-Hopper, Twitter Thug.","protected":false,"verified":false,"followers_count":20,"friends_count":114,"listed_count":0,"favourites_count":48,"statuses_count":98,"created_at":"Sat Jun 08 08:22:42 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000367120460\/7d570ce7fd34b2800cd269e920f9bf03_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000367120460\/7d570ce7fd34b2800cd269e920f9bf03_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1492302054\/1377566668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:14:37 +0000 2015","id":663706257539375104,"id_str":"663706257539375104","text":"Life is like riding a bicycle. To keep your balance, you must keep moving.\n\n\u2014Albert Einstein #mondaymotivation https:\/\/t.co\/eaVjckvWs4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259725229,"id_str":"259725229","name":"Vala Afshar","screen_name":"ValaAfshar","location":"Boston","url":"http:\/\/www.huffingtonpost.com\/vala-afshar\/","description":"Chief Digital Evangelist @Salesforce | Blog: @HuffingtonPost | Book: http:\/\/bit.ly\/tposbe | Show: http:\/\/www.cxotalk.com","protected":false,"verified":true,"followers_count":91629,"friends_count":540,"listed_count":5294,"favourites_count":18,"statuses_count":245607,"created_at":"Wed Mar 02 13:31:29 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259558245\/vala_300dpi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259558245\/vala_300dpi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259725229\/1439209336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":21,"entities":{"hashtags":[{"text":"mondaymotivation","indices":[93,110]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663706249675059200,"id_str":"663706249675059200","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","url":"https:\/\/t.co\/eaVjckvWs4","display_url":"pic.twitter.com\/eaVjckvWs4","expanded_url":"http:\/\/twitter.com\/ValaAfshar\/status\/663706257539375104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":151,"resize":"fit"},"medium":{"w":600,"h":267,"resize":"fit"},"large":{"w":1024,"h":456,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706249675059200,"id_str":"663706249675059200","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","url":"https:\/\/t.co\/eaVjckvWs4","display_url":"pic.twitter.com\/eaVjckvWs4","expanded_url":"http:\/\/twitter.com\/ValaAfshar\/status\/663706257539375104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":151,"resize":"fit"},"medium":{"w":600,"h":267,"resize":"fit"},"large":{"w":1024,"h":456,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mondaymotivation","indices":[109,126]}],"urls":[],"user_mentions":[{"screen_name":"ValaAfshar","name":"Vala Afshar","id":259725229,"id_str":"259725229","indices":[3,14]}],"symbols":[],"media":[{"id":663706249675059200,"id_str":"663706249675059200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","url":"https:\/\/t.co\/eaVjckvWs4","display_url":"pic.twitter.com\/eaVjckvWs4","expanded_url":"http:\/\/twitter.com\/ValaAfshar\/status\/663706257539375104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":151,"resize":"fit"},"medium":{"w":600,"h":267,"resize":"fit"},"large":{"w":1024,"h":456,"resize":"fit"}},"source_status_id":663706257539375104,"source_status_id_str":"663706257539375104","source_user_id":259725229,"source_user_id_str":"259725229"}]},"extended_entities":{"media":[{"id":663706249675059200,"id_str":"663706249675059200","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UU8WsAAl5fy.jpg","url":"https:\/\/t.co\/eaVjckvWs4","display_url":"pic.twitter.com\/eaVjckvWs4","expanded_url":"http:\/\/twitter.com\/ValaAfshar\/status\/663706257539375104\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":151,"resize":"fit"},"medium":{"w":600,"h":267,"resize":"fit"},"large":{"w":1024,"h":456,"resize":"fit"}},"source_status_id":663706257539375104,"source_status_id_str":"663706257539375104","source_user_id":259725229,"source_user_id_str":"259725229"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065658"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018188165121,"id_str":"663728018188165121","text":"\u3042\u306820\u5206\u3044\u3084\u3084\uff01\uff01\uff01\n\u4ed5\u4e8b\u3082\u59cb\u307e\u308b\u3057\u6b73\u3082\u3068\u308b\uff01\u3044\u3084\u3084\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1870575318,"id_str":"1870575318","name":"\u30ab\u30ef\u30e0\u30e9\u4f4e\u6d6e\u4e0a","screen_name":"Kyusyu_yk","location":"\u6642\u8a08 \u4e5d\u5ddecrew \u30ad\u30b9\u30de\u30a4 \u30cf\u30c1\u30ed\u30af","url":null,"description":"\u5ddd\u6751\u3055\u3093\u3067\u3059\u3002\u30cf\u30c1\u30ed\u30af\u3068\u30ad\u30b9\u30de\u30a4\u306b\u6d78\u3063\u3066\u308b\u65e5\u7530\u3063\u5b50\u793e\u4f1a\u4eba\u30022\u5e74\u76ee\u7a81\u5165\u3057\u307e\u3057\u305f\u3002 \u4ee5\u5f8c\u304a\u898b\u77e5\u308a\u304a\u304d\u3092\u3002","protected":false,"verified":false,"followers_count":258,"friends_count":303,"listed_count":1,"favourites_count":941,"statuses_count":19233,"created_at":"Mon Sep 16 07:27:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663268632042975233\/S4dq3efU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663268632042975233\/S4dq3efU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1870575318\/1445477354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065663"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167197696,"id_str":"663728018167197696","text":"\u3060\u3001\u304c\u629c\u3051\u3066\u308b\u3088\u5929\u4f7f\u3055\u3093\u2026\u3068\u304b\u3086\u30fc\u3068\n\u53a8\u306b\u6bba\u3055\u308c\u308b\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2541354727,"id_str":"2541354727","name":"\u3042\u307f","screen_name":"noa_06140106","location":null,"url":null,"description":"\u3000\u3000\u3000\u3000\u3000\u3000\uff12\u306e\uff12\u3000\u30d0\u30ec\u30fc\u3000\u8056\uff0a\u306e\u3042\u3000","protected":false,"verified":false,"followers_count":268,"friends_count":310,"listed_count":0,"favourites_count":6138,"statuses_count":3459,"created_at":"Mon Jun 02 12:11:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658604608676212736\/HQuSB6vI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658604608676212736\/HQuSB6vI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2541354727\/1445866710","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065658"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184011776,"id_str":"663728018184011776","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214621439,"id_str":"3214621439","name":"Caden","screen_name":"HarrusLatasha","location":"Los Angeles","url":null,"description":"Joy is priority one. I do freelance work, check the bio link for the particular jobs I provide....","protected":false,"verified":false,"followers_count":286,"friends_count":2326,"listed_count":9,"favourites_count":18654,"statuses_count":18720,"created_at":"Mon Apr 27 20:18:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1786,"favorite_count":1107,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018188185600,"id_str":"663728018188185600","text":"@kazu_miya_nino \n\n\u305d\u3093\u306a\u899a\u609f\u3057\u306a\u304f\u3066\u3044\u3044\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727382767886336,"in_reply_to_status_id_str":"663727382767886336","in_reply_to_user_id":3626802192,"in_reply_to_user_id_str":"3626802192","in_reply_to_screen_name":"kazu_miya_nino","user":{"id":2975020548,"id_str":"2975020548","name":"\u4eca\u91ce \u674f\u5357 \u3001","screen_name":"anan__sex","location":null,"url":null,"description":"\u4eca\u91ce\u674f\u5357nr.\u96a3\u6709\u3002","protected":false,"verified":false,"followers_count":14,"friends_count":14,"listed_count":0,"favourites_count":570,"statuses_count":5216,"created_at":"Sun Jan 11 15:43:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662809243855159296\/0uAOgCF3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662809243855159296\/0uAOgCF3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975020548\/1439295483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kazu_miya_nino","name":"\u79be\u53e3\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3001","id":3626802192,"id_str":"3626802192","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065663"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196553728,"id_str":"663728018196553728","text":"@JlyJin Thx for enrolling in #AmexJCP offer. Spend w\/connected Card & receive credit. Terms: https:\/\/t.co\/Br22Aoze9v","source":"\u003ca href=\"https:\/\/sync.americanexpress.com\/twitter\" rel=\"nofollow\"\u003eAmex Sync Tree\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727853389922304,"in_reply_to_status_id_str":"663727853389922304","in_reply_to_user_id":2541953094,"in_reply_to_user_id_str":"2541953094","in_reply_to_screen_name":"JlyJin","user":{"id":492532196,"id_str":"492532196","name":"Amex Offers","screen_name":"AmexOffers","location":null,"url":"http:\/\/amex.co\/twitter","description":"This automated handle activates when you tweet special Amex hashtags. Find offers from brands you love @AmericanExpress Favorites tab. Questions: @AskAmex","protected":false,"verified":true,"followers_count":77315,"friends_count":0,"listed_count":339,"favourites_count":1,"statuses_count":4052758,"created_at":"Tue Feb 14 20:42:15 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EAEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449290101000912896\/S-vKYS51.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000834357788\/afd9498cf0529101b1da81e750e41986_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/492532196\/1401974910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmexJCP","indices":[29,37]}],"urls":[{"url":"https:\/\/t.co\/Br22Aoze9v","expanded_url":"http:\/\/amex.co\/1H98EF8","display_url":"amex.co\/1H98EF8","indices":[97,120]}],"user_mentions":[{"screen_name":"JlyJin","name":"jly","id":2541953094,"id_str":"2541953094","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171367425,"id_str":"663728018171367425","text":"NICA NO","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881810538,"id_str":"881810538","name":"cali","screen_name":"califlair","location":"seoul","url":"http:\/\/cali-flair.tumblr.com","description":"cali | English | owari no seraph - yuumika & gyumi | FUB free | an account for wips and doodles | please do not repost my art","protected":false,"verified":false,"followers_count":806,"friends_count":93,"listed_count":16,"favourites_count":3566,"statuses_count":15490,"created_at":"Mon Oct 15 07:52:44 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFBF5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000076474398\/6f2d890d88b86e7ddc5391f831063e26.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000076474398\/6f2d890d88b86e7ddc5391f831063e26.png","profile_background_tile":true,"profile_link_color":"EB9D94","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8C838F","profile_text_color":"D0D6C3","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655397027275124737\/a9oyFYsv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655397027275124737\/a9oyFYsv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881810538\/1439568263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200748032,"id_str":"663728018200748032","text":"RT @OGDoIIaz: When there's twitter beef, but the one account is private https:\/\/t.co\/Q0qToH83BC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2367172699,"id_str":"2367172699","name":"RMB\u2693\ufe0f","screen_name":"RAwind_","location":null,"url":null,"description":"\ue10e\ufe0f #RoNhere #iloveyousis\u2764\ufe0f #Bigsishere\u2764\ufe0f #missingyoulikecrazystink\u2764\ufe0f #iloveyoubff","protected":false,"verified":false,"followers_count":1795,"friends_count":1270,"listed_count":4,"favourites_count":15839,"statuses_count":45190,"created_at":"Sat Mar 01 14:42:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660907836524785664\/HqPHbqwz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660907836524785664\/HqPHbqwz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2367172699\/1446407683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 20:11:48 +0000 2015","id":658737813744128000,"id_str":"658737813744128000","text":"When there's twitter beef, but the one account is private https:\/\/t.co\/Q0qToH83BC","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":574848216,"id_str":"574848216","name":"Peter","screen_name":"OGDoIIaz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":150275,"friends_count":94977,"listed_count":99,"favourites_count":5623,"statuses_count":2341,"created_at":"Tue May 08 20:26:51 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/840624262\/ae4a21fcde070b5a2ff4004224772eb1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/840624262\/ae4a21fcde070b5a2ff4004224772eb1.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662021190723219456\/yIr4Nmjm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662021190723219456\/yIr4Nmjm_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3344,"favorite_count":2739,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q0qToH83BC","expanded_url":"http:\/\/vine.co\/v\/MTOZrJqZrYF","display_url":"vine.co\/v\/MTOZrJqZrYF","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q0qToH83BC","expanded_url":"http:\/\/vine.co\/v\/MTOZrJqZrYF","display_url":"vine.co\/v\/MTOZrJqZrYF","indices":[72,95]}],"user_mentions":[{"screen_name":"OGDoIIaz","name":"Peter","id":574848216,"id_str":"574848216","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065666"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184081408,"id_str":"663728018184081408","text":"@LabradorEduardo @manuelrosalesg Labrador yo te puedo subir el v\u00eddeo donde Arias denuncia a Chavez y lo se\u00f1ala de este gran desastre.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":657946894971371520,"in_reply_to_status_id_str":"657946894971371520","in_reply_to_user_id":138868069,"in_reply_to_user_id_str":"138868069","in_reply_to_screen_name":"LabradorEduardo","user":{"id":148385918,"id_str":"148385918","name":"Valgust","screen_name":"valeracast","location":"Venezuela ","url":null,"description":"Venezolano Deseoso de una vzla con oportunidades para todos. Bienvenidos Amigos Latinoamericanos y del Mundo entero. Venezuela Despierta.","protected":false,"verified":false,"followers_count":823,"friends_count":873,"listed_count":2,"favourites_count":573,"statuses_count":7021,"created_at":"Wed May 26 15:25:43 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629086198766641153\/WzlYthiZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629086198766641153\/WzlYthiZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148385918\/1444415776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LabradorEduardo","name":"Eduardo Labrador","id":138868069,"id_str":"138868069","indices":[0,16]},{"screen_name":"manuelrosalesg","name":"Manuel Rosales","id":71076388,"id_str":"71076388","indices":[17,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167238656,"id_str":"663728018167238656","text":"@polls neither Jimmy choo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727655158616065,"in_reply_to_status_id_str":"663727655158616065","in_reply_to_user_id":4071934995,"in_reply_to_user_id_str":"4071934995","in_reply_to_screen_name":"polls","user":{"id":119171690,"id_str":"119171690","name":"Diane Wallace","screen_name":"bluemyfriend","location":"San Antonio, Texas","url":null,"description":"Lover, Buddhist,So So Fan of Everything Marvel, BATMAN Fan Girl #Hiddlestoner #Whovain","protected":false,"verified":false,"followers_count":122,"friends_count":272,"listed_count":9,"favourites_count":897,"statuses_count":2187,"created_at":"Tue Mar 02 21:54:14 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"067990","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"101E7A","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661361853939912705\/DYP8L-St_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661361853939912705\/DYP8L-St_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119171690\/1437187817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"polls","name":"polls","id":4071934995,"id_str":"4071934995","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065658"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018188345344,"id_str":"663728018188345344","text":"@firewaterpaul99 https:\/\/t.co\/dsp6oO4YPl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2734646570,"in_reply_to_user_id_str":"2734646570","in_reply_to_screen_name":"firewaterpaul99","user":{"id":3806626393,"id_str":"3806626393","name":"Tongue_307@yahoo.com","screen_name":"Tongue307","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":16,"created_at":"Tue Oct 06 19:57:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dsp6oO4YPl","expanded_url":"http:\/\/bit.ly\/1MsM2zP?86592ypabager","display_url":"bit.ly\/1MsM2zP?86592y\u2026","indices":[17,40]}],"user_mentions":[{"screen_name":"firewaterpaul99","name":"Paul Michaels","id":2734646570,"id_str":"2734646570","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080065663"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018175557632,"id_str":"663728018175557632","text":"@4ag_k_86 @hechyo \u30ae\u30a2\u3060\u3081\u3060\u3063\u305f\u3089\u524d\u306e\u30ae\u30a2\u9001\u308a\u307e\u3059\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727493174562817,"in_reply_to_status_id_str":"663727493174562817","in_reply_to_user_id":2926042202,"in_reply_to_user_id_str":"2926042202","in_reply_to_screen_name":"4ag_k_86","user":{"id":231801317,"id_str":"231801317","name":"\u30ec\u30d3\u306e\u3059\u3051\\(\u3000\uff9f\u0434\uff9f)\/","screen_name":"4AGspirit","location":"\u7df4\u99ac\u5927\u6839\u9e97\u5bdd\u5177","url":null,"description":"\u305f\u3060\u306e\u53e4\u3044\u8eca\u3092\u58ca\u3057\u305f\u308a\u58ca\u3057\u305f\u308a\u58ca\u3057\u305f\u308a\u30d0\u30e9\u3057\u305f\u308a\u3057\u3066\u3044\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059","protected":false,"verified":false,"followers_count":1183,"friends_count":483,"listed_count":17,"favourites_count":10736,"statuses_count":45612,"created_at":"Wed Dec 29 14:18:00 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658195929942503424\/96jD9xOd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658195929942503424\/96jD9xOd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231801317\/1447003432","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"4ag_k_86","name":"kenya","id":2926042202,"id_str":"2926042202","indices":[0,9]},{"screen_name":"hechyo","name":"\u3078\u306a\u3118\u3087\u3053","id":122320713,"id_str":"122320713","indices":[10,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065660"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179788801,"id_str":"663728018179788801","text":"RT @PutriAinNatasha: damn true! http:\/\/t.co\/6Ht0MiozCS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955796028,"id_str":"2955796028","name":"nwahidahmusa","screen_name":"wahidahmusa__","location":"Kuala Terengganu, Terengganu","url":"http:\/\/instagram.com\/wahidahmusa_","description":"\u2728","protected":false,"verified":false,"followers_count":104,"friends_count":210,"listed_count":0,"favourites_count":1069,"statuses_count":3311,"created_at":"Fri Jan 02 08:26:26 +0000 2015","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560819494990278656\/NJ81EOJ4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560819494990278656\/NJ81EOJ4.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663037013193392129\/F9oYyd7A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663037013193392129\/F9oYyd7A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955796028\/1446818540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Jul 12 13:10:07 +0000 2015","id":620218580777328640,"id_str":"620218580777328640","text":"damn true! http:\/\/t.co\/6Ht0MiozCS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":894300714,"id_str":"894300714","name":"PAN","screen_name":"PutriAinNatasha","location":"Stamford Bridge ","url":"https:\/\/instagram.com\/putriainnatasha\/","description":"sleeping","protected":false,"verified":false,"followers_count":3722,"friends_count":600,"listed_count":9,"favourites_count":1513,"statuses_count":63447,"created_at":"Sun Oct 21 00:28:17 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660831568961777664\/zayFk2lq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660831568961777664\/zayFk2lq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/894300714\/1439438568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8609,"favorite_count":2271,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":620218569222000641,"id_str":"620218569222000641","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","url":"http:\/\/t.co\/6Ht0MiozCS","display_url":"pic.twitter.com\/6Ht0MiozCS","expanded_url":"http:\/\/twitter.com\/PutriAinNatasha\/status\/620218580777328640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"},"large":{"w":1024,"h":783,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":620218569222000641,"id_str":"620218569222000641","indices":[11,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","url":"http:\/\/t.co\/6Ht0MiozCS","display_url":"pic.twitter.com\/6Ht0MiozCS","expanded_url":"http:\/\/twitter.com\/PutriAinNatasha\/status\/620218580777328640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"},"large":{"w":1024,"h":783,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PutriAinNatasha","name":"PAN","id":894300714,"id_str":"894300714","indices":[3,19]}],"symbols":[],"media":[{"id":620218569222000641,"id_str":"620218569222000641","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","url":"http:\/\/t.co\/6Ht0MiozCS","display_url":"pic.twitter.com\/6Ht0MiozCS","expanded_url":"http:\/\/twitter.com\/PutriAinNatasha\/status\/620218580777328640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"},"large":{"w":1024,"h":783,"resize":"fit"}},"source_status_id":620218580777328640,"source_status_id_str":"620218580777328640","source_user_id":894300714,"source_user_id_str":"894300714"}]},"extended_entities":{"media":[{"id":620218569222000641,"id_str":"620218569222000641","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CJt1gK2UEAEu0uN.jpg","url":"http:\/\/t.co\/6Ht0MiozCS","display_url":"pic.twitter.com\/6Ht0MiozCS","expanded_url":"http:\/\/twitter.com\/PutriAinNatasha\/status\/620218580777328640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":259,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"},"large":{"w":1024,"h":783,"resize":"fit"}},"source_status_id":620218580777328640,"source_status_id_str":"620218580777328640","source_user_id":894300714,"source_user_id_str":"894300714"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179801089,"id_str":"663728018179801089","text":"\u7b2c92\u4f4d\uff1a\u3010Minecraft\u3011\u3086\u3063\u305f\u308a\u3086\u3068\u308a\u30af\u30e9\u30d5\u30c8Survival #03 https:\/\/t.co\/XdBYaIsn7T","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3221184445,"id_str":"3221184445","name":"jnwaa19w","screen_name":"jnwaa19w","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":14395,"created_at":"Wed May 20 07:26:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602851545500110848\/gIQ0GMIZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602851545500110848\/gIQ0GMIZ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XdBYaIsn7T","expanded_url":"http:\/\/dlvr.it\/ChffwW","display_url":"dlvr.it\/ChffwW","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171408384,"id_str":"663728018171408384","text":"Lion king speaks the truth","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3103352568,"id_str":"3103352568","name":"Maria","screen_name":"16THERESE_Maria","location":"Pembroke Pines FL","url":"http:\/\/twiterpict.com\/Reasons-Why-Girls-Dont-Give-Blowjobs","description":"Probably the best meat eater in the world","protected":false,"verified":false,"followers_count":31343,"friends_count":21368,"listed_count":43,"favourites_count":0,"statuses_count":14489,"created_at":"Sun Mar 22 14:49:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/591753593495027712\/QRig1Pr_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/591753593495027712\/QRig1Pr_.jpg","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591745334948139008\/6NeEvSJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591745334948139008\/6NeEvSJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3103352568\/1429920068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018162978816,"id_str":"663728018162978816","text":"I find my lack of viewers disturbing. @Twitch_SH1FTY: https:\/\/t.co\/uoQauDtW5u","source":"\u003ca href=\"http:\/\/www.twitch.tv\" rel=\"nofollow\"\u003eTwitch.tv\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2360524327,"id_str":"2360524327","name":"SH1FTY","screen_name":"Twitch_SH1FTY","location":null,"url":null,"description":"http:\/\/twitch.tv\/shiifty1","protected":false,"verified":false,"followers_count":19,"friends_count":63,"listed_count":0,"favourites_count":17,"statuses_count":167,"created_at":"Tue Feb 25 04:48:00 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639934458620153856\/IB_hmFhw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639934458620153856\/IB_hmFhw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2360524327\/1441407238","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uoQauDtW5u","expanded_url":"http:\/\/www.twitch.tv\/shiifty1#9416","display_url":"twitch.tv\/shiifty1#9416","indices":[55,78]}],"user_mentions":[{"screen_name":"Twitch_SH1FTY","name":"SH1FTY","id":2360524327,"id_str":"2360524327","indices":[39,53]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065657"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018175561728,"id_str":"663728018175561728","text":"RT @mr_russel24: Ganito Kasi Yon Binigay ko sayo lahat ng gusto mo, pero hinde naman pala ako ang gusto mo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3709770925,"id_str":"3709770925","name":"Miller's Baby","screen_name":"Sheendelacruz27","location":"United States","url":null,"description":"Living Young Wild and FREE \u21e6\u21e6","protected":false,"verified":false,"followers_count":893,"friends_count":2069,"listed_count":2,"favourites_count":1238,"statuses_count":920,"created_at":"Mon Sep 28 01:48:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660358304279859200\/_y0jRagk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660358304279859200\/_y0jRagk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3709770925\/1446118989","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:34 +0000 2015","id":663727633981566976,"id_str":"663727633981566976","text":"Ganito Kasi Yon Binigay ko sayo lahat ng gusto mo, pero hinde naman pala ako ang gusto mo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1221944185,"id_str":"1221944185","name":"A.RJ","screen_name":"mr_russel24","location":"Outer space","url":"http:\/\/Facebook.com\/russeljames.aldea","description":"\u201cFocus on making yourself better, not on thinking that you are better. IG: ARXJAY","protected":false,"verified":false,"followers_count":83,"friends_count":292,"listed_count":0,"favourites_count":187,"statuses_count":843,"created_at":"Tue Feb 26 14:36:25 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"216EE0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/830617919\/51d71236a1ef2b78e2ac459c79e79fc0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/830617919\/51d71236a1ef2b78e2ac459c79e79fc0.jpeg","profile_background_tile":true,"profile_link_color":"12E018","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655662250695356416\/jpeLR2lZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655662250695356416\/jpeLR2lZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221944185\/1445157035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00fc4c873d8a5e32","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00fc4c873d8a5e32.json","place_type":"city","name":"Santa Rosa City","full_name":"Santa Rosa City, Calabarzon","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[121.049918,14.218480],[121.049918,14.337554],[121.130829,14.337554],[121.130829,14.218480]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mr_russel24","name":"A.RJ","id":1221944185,"id_str":"1221944185","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080065660"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171559936,"id_str":"663728018171559936","text":"RT @tarachawmbler: RICK SEU VIADO VC AINDA N\u00c3O ENTENDEU QUE TEM QUE FICAR COM A MICHONNE?????? SEU VACIL\u00c3O #TWD6naFOX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913262780,"id_str":"913262780","name":"baby","screen_name":"jeenlopes","location":null,"url":null,"description":"We keep this love in a photograph, we made these memories for ourselves","protected":false,"verified":false,"followers_count":911,"friends_count":1046,"listed_count":0,"favourites_count":111,"statuses_count":6754,"created_at":"Mon Oct 29 21:20:04 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545020374685999104\/yz8mhBj2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545020374685999104\/yz8mhBj2.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652882400930852864\/m7WoTbKc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652882400930852864\/m7WoTbKc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913262780\/1444394545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:10:39 +0000 2015","id":663554265630302208,"id_str":"663554265630302208","text":"RICK SEU VIADO VC AINDA N\u00c3O ENTENDEU QUE TEM QUE FICAR COM A MICHONNE?????? SEU VACIL\u00c3O #TWD6naFOX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2745603153,"id_str":"2745603153","name":"brenda","screen_name":"tarachawmbler","location":"twd - the script","url":null,"description":"eu choro mas o glenn rhee","protected":false,"verified":false,"followers_count":1292,"friends_count":837,"listed_count":14,"favourites_count":21089,"statuses_count":43933,"created_at":"Sun Aug 17 19:24:50 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614892362670678016\/kgx0cXuf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614892362670678016\/kgx0cXuf.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663052462673272835\/EgBC8pKi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663052462673272835\/EgBC8pKi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2745603153\/1446918994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102,"favorite_count":83,"entities":{"hashtags":[{"text":"TWD6naFOX","indices":[88,98]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TWD6naFOX","indices":[107,117]}],"urls":[],"user_mentions":[{"screen_name":"tarachawmbler","name":"brenda","id":2745603153,"id_str":"2745603153","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018179796992,"id_str":"663728018179796992","text":"RT @suicidalfigures: To the ones I cared about that left https:\/\/t.co\/xkhItnUPiS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576047507,"id_str":"576047507","name":"WaN sYaFiQa ","screen_name":"KogyBear","location":"Selangor, Malaysia","url":null,"description":"Things alway get harder \u30fd(^\u3002^)\u4e3f","protected":false,"verified":false,"followers_count":472,"friends_count":91,"listed_count":1,"favourites_count":904,"statuses_count":27305,"created_at":"Thu May 10 08:04:14 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/825026532\/3b1f524d4b657212441c7b5c24755005.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/825026532\/3b1f524d4b657212441c7b5c24755005.jpeg","profile_background_tile":true,"profile_link_color":"20D9CA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628236068563750913\/et-jIBTF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628236068563750913\/et-jIBTF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576047507\/1441183081","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:01:27 +0000 2015","id":663310356765392896,"id_str":"663310356765392896","text":"To the ones I cared about that left https:\/\/t.co\/xkhItnUPiS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2776811114,"id_str":"2776811114","name":"\ufe0f","screen_name":"suicidalfigures","location":null,"url":null,"description":"you, the ocean & me #illhueminati","protected":false,"verified":false,"followers_count":17524,"friends_count":20,"listed_count":77,"favourites_count":5854,"statuses_count":10602,"created_at":"Thu Aug 28 17:07:14 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644795075042500608\/ahPq80ju.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644795075042500608\/ahPq80ju.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377165161906176\/Izv_fHOT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377165161906176\/Izv_fHOT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2776811114\/1446996414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":302,"favorite_count":224,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663310319071031297,"id_str":"663310319071031297","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663310319071031297,"id_str":"663310319071031297","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663310319301738497,"id_str":"663310319301738497","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOJXUwAEUbu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOJXUwAEUbu4.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suicidalfigures","name":"\ufe0f","id":2776811114,"id_str":"2776811114","indices":[3,19]}],"symbols":[],"media":[{"id":663310319071031297,"id_str":"663310319071031297","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663310356765392896,"source_status_id_str":"663310356765392896","source_user_id":2776811114,"source_user_id_str":"2776811114"}]},"extended_entities":{"media":[{"id":663310319071031297,"id_str":"663310319071031297","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOIgUcAEuBhA.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663310356765392896,"source_status_id_str":"663310356765392896","source_user_id":2776811114,"source_user_id_str":"2776811114"},{"id":663310319301738497,"id_str":"663310319301738497","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSNOJXUwAEUbu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSNOJXUwAEUbu4.jpg","url":"https:\/\/t.co\/xkhItnUPiS","display_url":"pic.twitter.com\/xkhItnUPiS","expanded_url":"http:\/\/twitter.com\/suicidalfigures\/status\/663310356765392896\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663310356765392896,"source_status_id_str":"663310356765392896","source_user_id":2776811114,"source_user_id_str":"2776811114"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065661"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018171400192,"id_str":"663728018171400192","text":"\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0430\u0441\u044c \u0441\u0435\u0441\u0441\u0438\u044f \u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0413\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u043a\u043e\u0433\u043e \u0435\u0432\u0440\u0435\u0439\u0441\u043a\u043e\u0433\u043e \u0433\u0443\u043c\u0430\u043d\u0438\u0442\u0430\u0440\u043d\u043e\u0433\u043e \u0444\u043e\u043d\u0434\u0430: https:\/\/t.co\/EYuADUubPP","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251020749,"id_str":"251020749","name":"\u041c\u041a \u0432 \u0418\u0437\u0440\u0430\u0438\u043b\u0435","screen_name":"Mkisraelnews","location":"\u0411\u043b\u0438\u0436\u043d\u0438\u0439 \u0412\u043e\u0441\u0442\u043e\u043a","url":"http:\/\/www.mkisrael.co.il","description":"\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u0438\u0439 \u041a\u043e\u043c\u0441\u043e\u043c\u043e\u043b\u0435\u0446 \u0432 \u0418\u0437\u0440\u0430\u0438\u043b\u0435. \u041a\u043e\u0448\u0435\u0440\u043d\u044b\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438 \u0441\u043e \u0421\u0432\u044f\u0442\u043e\u0439 \u0437\u0435\u043c\u043b\u0438 \u0438 \u0411\u043b\u0438\u0436\u043d\u0435\u0433\u043e \u0412\u043e\u0441\u0442\u043e\u043a\u0430.\u00a9","protected":false,"verified":false,"followers_count":542,"friends_count":294,"listed_count":8,"favourites_count":2,"statuses_count":964,"created_at":"Sat Feb 12 08:18:09 +0000 2011","utc_offset":7200,"time_zone":"Jerusalem","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/204479896\/moskkomsom22.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/204479896\/moskkomsom22.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1241997007\/moskkomsom2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1241997007\/moskkomsom2_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EYuADUubPP","expanded_url":"http:\/\/bit.ly\/1HCyigu","display_url":"bit.ly\/1HCyigu","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080065659"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192338946,"id_str":"663728018192338946","text":"@sugar_shop24 \u306f\u3063\u3074\u30fc\u306f\u308d\u3046\u3043\u30fc\u3093!\n\u304b\u3089\u306e\u82e6\u7b11\u3044\u30fc\u30fc\u30fc\u30fc\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727889095901185,"in_reply_to_status_id_str":"663727889095901185","in_reply_to_user_id":1642462339,"in_reply_to_user_id_str":"1642462339","in_reply_to_screen_name":"sugar_shop24","user":{"id":146496453,"id_str":"146496453","name":"\u3042\u3059\u307d\u3093\u304f@\u30b9\u30ad\u30de\u30c4\u30a4\u30c3\u30c1\u3060\u3044\u3059\u304d","screen_name":"kaoruichi_5","location":"\u9244\u3068\u862d\u306e\u8857\u306e\u96a3","url":"http:\/\/kaoruichi5.blog.fc2.com\/","description":"\u30b9\u30ad\u30de\u30b9\u30a4\u30c3\u30c1\u304c\u3068\u3066\u3082\u597d\u304d\u3067\u3059\u3001\u3046\u3093\u3073\u3063\u304f\u308a\u3059\u308b\u304f\u3089\u3044\u3002\u30ca\u30aa\u30c8\u306f\u5c0a\u656c\u3059\u3079\u304d\u4eba\u3067\u3042\u308a\u52dd\u624b\u306b\u30e9\u30a4\u30d0\u30eb\u5fc3\u3002\u98a8\u5473\u5802\u3082\u5927\u597d\u304d\u3067\u3059\u3001\u5922\u5e0c\u671b\u304c\u6b32\u3057\u3044\u3068\u304d\u306f\u98a8\u5473\u5802\u3002\u591a\u8da3\u5473\u3067\u3059\u3002\u30ab\u30e1\u30e9\u3001\u65c5\u884c\u3001\u97f3\u697d\u3001\u6620\u753b\u3001\u30c9\u30e9\u30a4\u30d6\u3001\u30d5\u30c3\u30c8\u30b5\u30eb\u3001\u3044\u308d\u3044\u308d\u597d\u304d\u3067\u3059\u3002 \u5922\u306f\u6d77\u8fba\u3067\u96d1\u8ca8\u5c4b\u3055\u3093\u958b\u304f\u3053\u3068\u3002\u51fa\u6765\u308c\u3070\u3001\u30ab\u30d5\u30a7\u517c\u96d1\u8ca8\u5c4b\u3055\u3093\u3002\u203b\u6b32\u5f35\u308a\u304b","protected":false,"verified":false,"followers_count":1042,"friends_count":1198,"listed_count":22,"favourites_count":2686,"statuses_count":104891,"created_at":"Fri May 21 15:41:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642884102115299330\/hyNrd0qR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642884102115299330\/hyNrd0qR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146496453\/1425855092","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sugar_shop24","name":"\u67d0\u7802\u7cd6\u30c4\u30a4\u30c3\u30c1","id":1642462339,"id_str":"1642462339","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018192338947,"id_str":"663728018192338947","text":"Finally tried #BurroCheese last night\ud83e\uddc0\ud83e\uddc0....it was amazing!! The guy recommended the Via 206 #FIGgrilledcheese","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33080311,"id_str":"33080311","name":"Natasha Wilson","screen_name":"BigTash","location":"Austin, TX","url":"http:\/\/www.facebook.com\/search.php?q=Natasha+wilson&type=users#!\/BigTash","description":"Professional Human Being. Simply Complex, Eclectically Conventional\/SC:Bigtash4","protected":false,"verified":false,"followers_count":254,"friends_count":423,"listed_count":12,"favourites_count":333,"statuses_count":16455,"created_at":"Sun Apr 19 01:20:47 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/425027634\/beyonce.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/425027634\/beyonce.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608737852667486208\/lCxJXzzC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608737852667486208\/lCxJXzzC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33080311\/1427849932","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BurroCheese","indices":[14,26]},{"text":"FIGgrilledcheese","indices":[92,109]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065664"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196594688,"id_str":"663728018196594688","text":"@poofmontana https:\/\/t.co\/L3s0z1Scqk","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2214646855,"in_reply_to_user_id_str":"2214646855","in_reply_to_screen_name":"poofmontana","user":{"id":1605665978,"id_str":"1605665978","name":"06zHp","screen_name":"06zHp","location":"MA","url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":62,"listed_count":0,"favourites_count":0,"statuses_count":9,"created_at":"Fri Jul 19 10:53:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000156155057\/947b5d7bca457a28c9f0c494858374ca_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000156155057\/947b5d7bca457a28c9f0c494858374ca_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/L3s0z1Scqk","expanded_url":"http:\/\/bit.ly\/1S8Q5Bx?11560lefydo","display_url":"bit.ly\/1S8Q5Bx?11560l\u2026","indices":[13,36]}],"user_mentions":[{"screen_name":"poofmontana","name":"poof montana","id":2214646855,"id_str":"2214646855","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018167214080,"id_str":"663728018167214080","text":"Missi Holt Yoga: Desk Series Video 4 https:\/\/t.co\/c6pbS1DGe4 https:\/\/t.co\/IGCLtVSpF7","source":"\u003ca href=\"https:\/\/buzcast.com\" rel=\"nofollow\"\u003eBuzcast.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886011080,"id_str":"2886011080","name":"Health & Fitness","screen_name":"TVHealthFitness","location":null,"url":"http:\/\/thehealthfitnesschannel.com","description":"Looking to live a healthy life? Follow these tips and workout routines to get started.","protected":false,"verified":false,"followers_count":555,"friends_count":283,"listed_count":42,"favourites_count":16,"statuses_count":17153,"created_at":"Thu Nov 20 19:11:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593406933731643392\/MrEp3dux_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593406933731643392\/MrEp3dux_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886011080\/1416517838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c6pbS1DGe4","expanded_url":"http:\/\/mlz.es\/4QhfM","display_url":"mlz.es\/4QhfM","indices":[37,60]}],"user_mentions":[],"symbols":[],"media":[{"id":663728017970065408,"id_str":"663728017970065408","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHaKUcAAGS44.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHaKUcAAGS44.jpg","url":"https:\/\/t.co\/IGCLtVSpF7","display_url":"pic.twitter.com\/IGCLtVSpF7","expanded_url":"http:\/\/twitter.com\/TVHealthFitness\/status\/663728018167214080\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728017970065408,"id_str":"663728017970065408","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHaKUcAAGS44.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHaKUcAAGS44.jpg","url":"https:\/\/t.co\/IGCLtVSpF7","display_url":"pic.twitter.com\/IGCLtVSpF7","expanded_url":"http:\/\/twitter.com\/TVHealthFitness\/status\/663728018167214080\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080065658"} +{"delete":{"status":{"id":663726092994420737,"id_str":"663726092994420737","user_id":1265705484,"user_id_str":"1265705484"},"timestamp_ms":"1447080065848"}} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018183983104,"id_str":"663728018183983104","text":"#Kids Fitness Equipment\u00a0News https:\/\/t.co\/GZ6pkBFe4t https:\/\/t.co\/ekHvPMpS2g","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3823623973,"id_str":"3823623973","name":"TaraBWatkins","screen_name":"TarabwatkinsB","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":317,"friends_count":879,"listed_count":23,"favourites_count":157,"statuses_count":6719,"created_at":"Thu Oct 08 08:50:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652043491258662912\/I2jq3IS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652043491258662912\/I2jq3IS9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Kids","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/GZ6pkBFe4t","expanded_url":"http:\/\/startfitness.xyz\/index.php\/2015\/11\/09\/kids-fitness-equipment-news-9\/","display_url":"startfitness.xyz\/index.php\/2015\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663728017110274048,"id_str":"663728017110274048","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHW9VEAAwrx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHW9VEAAwrx0.jpg","url":"https:\/\/t.co\/ekHvPMpS2g","display_url":"pic.twitter.com\/ekHvPMpS2g","expanded_url":"http:\/\/twitter.com\/TarabwatkinsB\/status\/663728018183983104\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":500,"h":351,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728017110274048,"id_str":"663728017110274048","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHW9VEAAwrx0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHW9VEAAwrx0.jpg","url":"https:\/\/t.co\/ekHvPMpS2g","display_url":"pic.twitter.com\/ekHvPMpS2g","expanded_url":"http:\/\/twitter.com\/TarabwatkinsB\/status\/663728018183983104\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"medium":{"w":500,"h":351,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065662"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018175619072,"id_str":"663728018175619072","text":"@zgmf_srn \u305d\u3046\u3060\u3063\u305f\u3093\u3067\u3059\u306d\u2026\uff01\uff01\uff01\uff1f\n\u938c\u5009\u3001\u571f\u66dc\u65e5\u306b\u884c\u3063\u305f\u306e\u306b\uff01\uff01\uff01\u5168\u7136\u6c17\u3065\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u2026\u3046\u304a\u304a\u304a\u3001\u304b\u306a\u3057\u307f\u2026\u3002\u305d\u308c\u3067\u3082\uff15\u6bb5\u968e\u3042\u308b\u3068\u304b\u5922\u306e\u3088\u3046\u3067\u3059\u2026\u6b21\u306b\u938c\u5009\u884c\u3063\u305f\u3089\u63a2\u3057\u3066\u307f\u307e\u3059\uff5e(*\u00b4\u03c9\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724647343460352,"in_reply_to_status_id_str":"663724647343460352","in_reply_to_user_id":921453180,"in_reply_to_user_id_str":"921453180","in_reply_to_screen_name":"zgmf_srn","user":{"id":2816571300,"id_str":"2816571300","name":"\u3078\u304d\u3055\uff201\/24\u30c6\u30a4\u30ea\u30f31\/31\u30e9\u30f4\u30b3\u30ec","screen_name":"towafuku_neo","location":"\u8056\u5730\u304c\u8fd1\u3044\u304b\u3082\u3057\u308c\u306a\u3044","url":"http:\/\/pixiv.me\/hekisa_neo","description":"\u9059\u304b\u597d\u304d\u3067\u3059\u3002\uff13\u30fb\uff14\u30fb\uff16\u304c\u7279\u306b\u3002\n\u30cd\u30aa\u30ed\u30de\u30a4\u30d9\u306b\u3082\u7d50\u69cb\u53c2\u52a0\u3057\u307e\u3059\u3002\n\u30d5\u30a9\u30ed\u30fc\u30d6\u30ed\u30c3\u30af\u3054\u81ea\u7531\u306b\uff01\u30cd\u30aa\u30ed\u30de\u597d\u304d\u3055\u3093\u3068\u5206\u304b\u3089\u306a\u304b\u3063\u305f\u3089\u7d50\u69cb\u30d6\u30ed\u30c3\u30af\u3057\u3066\u3044\u304d\u307e\u3059\u306e\u3067\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u307e\u305b\u3002","protected":false,"verified":false,"followers_count":194,"friends_count":220,"listed_count":7,"favourites_count":1171,"statuses_count":21417,"created_at":"Thu Sep 18 08:10:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645661383233699840\/Dn8ukpC3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645661383233699840\/Dn8ukpC3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2816571300\/1442772992","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zgmf_srn","name":"\u79c0\u862d*\u5ead\u5e2b\u6728\u5f6b\u308a\u90e8","id":921453180,"id_str":"921453180","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065660"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200899585,"id_str":"663728018200899585","text":"lgii \u2014 nisem kudu pie(?) https:\/\/t.co\/Ltr2oBcia4","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1005035263,"id_str":"1005035263","name":"AnnisaMukti","screen_name":"AnnisaMuktii","location":"Smg.","url":"http:\/\/ask.fm\/annisamukti","description":"Smkn2smg.","protected":false,"verified":false,"followers_count":637,"friends_count":309,"listed_count":0,"favourites_count":77,"statuses_count":16563,"created_at":"Tue Dec 11 22:31:07 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551632234856214530\/Jc8nZoRw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551632234856214530\/Jc8nZoRw.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586103282617057280\/OlwdOw5o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586103282617057280\/OlwdOw5o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1005035263\/1430472164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ltr2oBcia4","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO7C6GDTJPQ3R7T67HFZKHV2XYNMYIYI2Z2MFRB4WQBXL23PYFYEJQUH4DB7YEV7M2VONS5LPBR5UUARBEY3C53DWGP5B6MTGOHPZS2PFWD7SCSMUBQC2TTHDFMILWLAES3NVXGHNYUKYTFGLYDTQOPPYP7SFZZWHX6M6NPKJ47XTQI72VY=","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080065666"} +{"delete":{"status":{"id":440093940663201793,"id_str":"440093940663201793","user_id":118485013,"user_id_str":"118485013"},"timestamp_ms":"1447080065978"}} +{"delete":{"status":{"id":594860537046900736,"id_str":"594860537046900736","user_id":3182906520,"user_id_str":"3182906520"},"timestamp_ms":"1447080065968"}} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018196717568,"id_str":"663728018196717568","text":"SGTMJuGG: RT RealDrRickMusic: Making #music on a budget? Need your music to sound HighQuality? #fiverr \u2026 https:\/\/t.co\/nLIuCrkQRE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3407341575,"id_str":"3407341575","name":"cyberstormonfiverr","screen_name":"cyberstormonfiv","location":"On Fiverr","url":"https:\/\/www.fiverr.com\/cyberstorm","description":"Working to help entrepreneurs make a statement on the World Wide Web.","protected":false,"verified":false,"followers_count":296,"friends_count":2,"listed_count":570,"favourites_count":0,"statuses_count":136592,"created_at":"Fri Aug 07 15:59:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629688075212455936\/iHdhXHqv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629688075212455936\/iHdhXHqv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407341575\/1438964677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"music","indices":[37,43]},{"text":"fiverr","indices":[95,102]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663572514711445504,"id_str":"663572514711445504","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV7r7YWoAAoN_H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV7r7YWoAAoN_H.jpg","url":"https:\/\/t.co\/nLIuCrkQRE","display_url":"pic.twitter.com\/nLIuCrkQRE","expanded_url":"http:\/\/twitter.com\/RealDrRickMusic\/status\/663572515097346048\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":847,"h":567,"resize":"fit"}},"source_status_id":663572515097346048,"source_status_id_str":"663572515097346048","source_user_id":3367575345,"source_user_id_str":"3367575345"}]},"extended_entities":{"media":[{"id":663572514711445504,"id_str":"663572514711445504","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV7r7YWoAAoN_H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV7r7YWoAAoN_H.jpg","url":"https:\/\/t.co\/nLIuCrkQRE","display_url":"pic.twitter.com\/nLIuCrkQRE","expanded_url":"http:\/\/twitter.com\/RealDrRickMusic\/status\/663572515097346048\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":847,"h":567,"resize":"fit"}},"source_status_id":663572515097346048,"source_status_id_str":"663572515097346048","source_user_id":3367575345,"source_user_id_str":"3367575345"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065665"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018163134464,"id_str":"663728018163134464","text":"Tagged by @tvfxq_14 and @jhan_azn wow lol my baby, my otp and my bias xD https:\/\/t.co\/IUduIarsZZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300563465,"id_str":"300563465","name":"jaan30","screen_name":"c_carissa","location":null,"url":"http:\/\/jaan30.tumblr.com\/","description":"OT5, Yunho is my ultimate bias \u2665 ~~~ http:\/\/weibo.com\/jaan30, http:\/\/oyunjae.tumblr.com","protected":false,"verified":false,"followers_count":433,"friends_count":515,"listed_count":2,"favourites_count":22098,"statuses_count":20713,"created_at":"Wed May 18 00:01:32 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"3AB2F2","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555667856583442433\/-RgY6GVG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555667856583442433\/-RgY6GVG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300563465\/1424841590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tvfxq_14","name":"Aishu","id":251779287,"id_str":"251779287","indices":[10,19]},{"screen_name":"jhan_azn","name":"OTALL~ COME AT ME~","id":58633456,"id_str":"58633456","indices":[24,33]}],"symbols":[],"media":[{"id":663728008696496128,"id_str":"663728008696496128","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG3nVAAAl5P6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG3nVAAAl5P6.jpg","url":"https:\/\/t.co\/IUduIarsZZ","display_url":"pic.twitter.com\/IUduIarsZZ","expanded_url":"http:\/\/twitter.com\/c_carissa\/status\/663728018163134464\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":198,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":598,"h":198,"resize":"fit"},"small":{"w":340,"h":112,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728008696496128,"id_str":"663728008696496128","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG3nVAAAl5P6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG3nVAAAl5P6.jpg","url":"https:\/\/t.co\/IUduIarsZZ","display_url":"pic.twitter.com\/IUduIarsZZ","expanded_url":"http:\/\/twitter.com\/c_carissa\/status\/663728018163134464\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":198,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":598,"h":198,"resize":"fit"},"small":{"w":340,"h":112,"resize":"fit"}}},{"id":663728008700653573,"id_str":"663728008700653573","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG3oUcAUGMJl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG3oUcAUGMJl.jpg","url":"https:\/\/t.co\/IUduIarsZZ","display_url":"pic.twitter.com\/IUduIarsZZ","expanded_url":"http:\/\/twitter.com\/c_carissa\/status\/663728018163134464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663728008721657857,"id_str":"663728008721657857","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG3tU8AE0Rv3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG3tU8AE0Rv3.jpg","url":"https:\/\/t.co\/IUduIarsZZ","display_url":"pic.twitter.com\/IUduIarsZZ","expanded_url":"http:\/\/twitter.com\/c_carissa\/status\/663728018163134464\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":544,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":318,"resize":"fit"}}},{"id":663728008721657856,"id_str":"663728008721657856","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG3tU8AAcZZ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG3tU8AAcZZ9.jpg","url":"https:\/\/t.co\/IUduIarsZZ","display_url":"pic.twitter.com\/IUduIarsZZ","expanded_url":"http:\/\/twitter.com\/c_carissa\/status\/663728018163134464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065657"} +{"delete":{"status":{"id":522858988052832256,"id_str":"522858988052832256","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080066037"}} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200752128,"id_str":"663728018200752128","text":"@QualcommLife \"stay tuned for intelligent care\" #connectedhealth @XAHIVE @mhealthsummit https:\/\/t.co\/M5uJkCfweW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":211329040,"in_reply_to_user_id_str":"211329040","in_reply_to_screen_name":"QualcommLife","user":{"id":42329189,"id_str":"42329189","name":"Sem","screen_name":"Enlightenment09","location":"Canada","url":null,"description":"Chief Operating Officer of Xahive and also interested in social media, not-for-profit causes, business, health, & humanitarian news.","protected":false,"verified":false,"followers_count":525,"friends_count":1380,"listed_count":11,"favourites_count":119,"statuses_count":1113,"created_at":"Mon May 25 02:10:38 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506225199360901120\/re14Ud_f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506225199360901120\/re14Ud_f_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"connectedhealth","indices":[48,64]}],"urls":[],"user_mentions":[{"screen_name":"QualcommLife","name":"Qualcomm Life","id":211329040,"id_str":"211329040","indices":[0,13]},{"screen_name":"XAHIVE","name":"XAHIVE","id":2322998336,"id_str":"2322998336","indices":[65,72]},{"screen_name":"mhealthsummit","name":"mHealth Summit","id":212771854,"id_str":"212771854","indices":[73,87]}],"symbols":[],"media":[{"id":663728008402866176,"id_str":"663728008402866176","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG2hUkAATvmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG2hUkAATvmj.jpg","url":"https:\/\/t.co\/M5uJkCfweW","display_url":"pic.twitter.com\/M5uJkCfweW","expanded_url":"http:\/\/twitter.com\/Enlightenment09\/status\/663728018200752128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728008402866176,"id_str":"663728008402866176","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG2hUkAATvmj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG2hUkAATvmj.jpg","url":"https:\/\/t.co\/M5uJkCfweW","display_url":"pic.twitter.com\/M5uJkCfweW","expanded_url":"http:\/\/twitter.com\/Enlightenment09\/status\/663728018200752128\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080065666"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018188320768,"id_str":"663728018188320768","text":"Venga la reinserto a la sociedad mi amor... https:\/\/t.co\/zkTSeQ3A0F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281035366,"id_str":"281035366","name":"Tu Tinieblo","screen_name":"TuTinieblo_","location":"Pereira, Risaralda","url":null,"description":"Modelo de lenceria fina. Nacido en Venezuela, bien criado en Colombia.","protected":false,"verified":false,"followers_count":6584,"friends_count":2269,"listed_count":51,"favourites_count":38591,"statuses_count":46105,"created_at":"Tue Apr 12 14:04:51 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588094036264620032\/xRVYJTkR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588094036264620032\/xRVYJTkR.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663028180622659588\/lSzwOMA__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663028180622659588\/lSzwOMA__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281035366\/1442400961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727987049766912,"id_str":"663727987049766912","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFm-WIAAkUmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFm-WIAAkUmM.jpg","url":"https:\/\/t.co\/zkTSeQ3A0F","display_url":"pic.twitter.com\/zkTSeQ3A0F","expanded_url":"http:\/\/twitter.com\/TuTinieblo_\/status\/663728018188320768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":769,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"},"large":{"w":798,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727987049766912,"id_str":"663727987049766912","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFm-WIAAkUmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFm-WIAAkUmM.jpg","url":"https:\/\/t.co\/zkTSeQ3A0F","display_url":"pic.twitter.com\/zkTSeQ3A0F","expanded_url":"http:\/\/twitter.com\/TuTinieblo_\/status\/663728018188320768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":769,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"},"large":{"w":798,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080065663"} +{"delete":{"status":{"id":663727984625455104,"id_str":"663727984625455104","user_id":2994431914,"user_id_str":"2994431914"},"timestamp_ms":"1447080066117"}} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018200768512,"id_str":"663728018200768512","text":"\u6620\u50cf\u96fb\u4f1d\u866b\u767a\u898b\uff01\n\u6355\u3089\u3048\u3089\u308c\u305f\u6d77\u8cca\u72e9\u308a\u3092\u6fc0\u5199\u3057\u307e\u3057\u305f!!!\nhttps:\/\/t.co\/4U4WoCxb2z\u3000#\u30c8\u30ec\u30af\u30eb https:\/\/t.co\/jo4c5nBJuM","source":"\u003ca href=\"http:\/\/www.bandaigames.channel.or.jp\/list\/one_main\/tc\/\" rel=\"nofollow\"\u003eONE PIECE \u30c8\u30ec\u30b8\u30e3\u30fc\u30af\u30eb\u30fc\u30ba\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3302989212,"id_str":"3302989212","name":"\u96ea\u306e\u5973\u738b","screen_name":"EELyt2SBUndfz88","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":167,"created_at":"Sat Aug 01 05:05:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30c8\u30ec\u30af\u30eb","indices":[54,59]}],"urls":[{"url":"https:\/\/t.co\/4U4WoCxb2z","expanded_url":"http:\/\/bnent.jp\/optw\/","display_url":"bnent.jp\/optw\/","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663728018074963970,"id_str":"663728018074963970","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHajVEAIcuNL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHajVEAIcuNL.png","url":"https:\/\/t.co\/jo4c5nBJuM","display_url":"pic.twitter.com\/jo4c5nBJuM","expanded_url":"http:\/\/twitter.com\/EELyt2SBUndfz88\/status\/663728018200768512\/photo\/1","type":"photo","sizes":{"large":{"w":450,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":450,"h":577,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728018074963970,"id_str":"663728018074963970","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHajVEAIcuNL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHajVEAIcuNL.png","url":"https:\/\/t.co\/jo4c5nBJuM","display_url":"pic.twitter.com\/jo4c5nBJuM","expanded_url":"http:\/\/twitter.com\/EELyt2SBUndfz88\/status\/663728018200768512\/photo\/1","type":"photo","sizes":{"large":{"w":450,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":450,"h":577,"resize":"fit"},"small":{"w":340,"h":435,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080065666"} +{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728018184011778,"id_str":"663728018184011778","text":"@Rertarku_P \ub189\ub189 \ub2e4\ub978\ud559\uad50\uc58c \u3147\u3145\u3147\uadfc\ub370\uc598\ub124\ud559\uad50\ub294\ud3d0\uad50\ud655\uc815\uc774\ub77c\ub294 \uae00\uc744 \ubd04 \u3147\u3145\u3147... \ubc14\ubc14 \ubba4\uc988\uc560\ub4e4 \uad50\ubcf5 \uc785\uad6c \uc804\ud559\uc640\ub5a0 https:\/\/t.co\/3Z2LDXpUCB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725323016507392,"in_reply_to_status_id_str":"663725323016507392","in_reply_to_user_id":3614177354,"in_reply_to_user_id_str":"3614177354","in_reply_to_screen_name":"Rertarku_P","user":{"id":2599444220,"id_str":"2599444220","name":"\ub278\ub274 \ub4f8\uc9d0","screen_name":"chryx_x","location":"\uc544\uac00\uc606\uc790\ub9ac@GanbotPeter (\u266514.12.02~)","url":"http:\/\/ask.fm\/chryx_x","description":"\ub9ac\ud2b8\uc717\uc774 \uc5c4\uccad\ub0a9\ub2c8\ub2f7...\ud574\uce58\uc9c0 \uc54a\uc544\uc694 ...\uc0ac\ub791\ud569\ub2c8\ub2f7uu \/ \uc778\uc7a5: \ubc8c\uc9c0\ub2d8\u2665 \/ \ud5e4\ub354: \ud638\ub2e8\ub2d8\u2665 \/ \uace0\uc218\uc704,\uace0\uc5b4 \uacc4 : @chryx_xxx","protected":false,"verified":false,"followers_count":146,"friends_count":249,"listed_count":2,"favourites_count":4594,"statuses_count":89383,"created_at":"Wed Jul 02 08:29:04 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656400113242238976\/38fOXv0W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656400113242238976\/38fOXv0W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2599444220\/1445336224","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rertarku_P","name":"\ub9b0\ub0e5\uc774\uac00 \uc571\ubc84\uc8fd\ub208 \ub808\ub85c","id":3614177354,"id_str":"3614177354","indices":[0,11]}],"symbols":[],"media":[{"id":663727997967470592,"id_str":"663727997967470592","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJGPpVEAAwSsX.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJGPpVEAAwSsX.png","url":"https:\/\/t.co\/3Z2LDXpUCB","display_url":"pic.twitter.com\/3Z2LDXpUCB","expanded_url":"http:\/\/twitter.com\/chryx_x\/status\/663728018184011778\/photo\/1","type":"photo","sizes":{"small":{"w":268,"h":150,"resize":"fit"},"medium":{"w":268,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":268,"h":150,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727997967470592,"id_str":"663727997967470592","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJGPpVEAAwSsX.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJGPpVEAAwSsX.png","url":"https:\/\/t.co\/3Z2LDXpUCB","display_url":"pic.twitter.com\/3Z2LDXpUCB","expanded_url":"http:\/\/twitter.com\/chryx_x\/status\/663728018184011778\/photo\/1","type":"animated_gif","sizes":{"small":{"w":268,"h":150,"resize":"fit"},"medium":{"w":268,"h":150,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":268,"h":150,"resize":"fit"}},"video_info":{"aspect_ratio":[134,75],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJGPpVEAAwSsX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080065662"} +{"delete":{"status":{"id":648948670826721280,"id_str":"648948670826721280","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080066384"}} +{"delete":{"status":{"id":663717947643314176,"id_str":"663717947643314176","user_id":2397168277,"user_id_str":"2397168277"},"timestamp_ms":"1447080066392"}} +{"delete":{"status":{"id":663727116400386049,"id_str":"663727116400386049","user_id":389741078,"user_id_str":"389741078"},"timestamp_ms":"1447080066578"}} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365855744,"id_str":"663728022365855744","text":"que se foda essa palha\u00e7ada toda a\u00ed","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245598576,"id_str":"245598576","name":"Gustavo Miranda","screen_name":"mulatweetts","location":null,"url":null,"description":"You've Got to Be Crazy","protected":false,"verified":false,"followers_count":218,"friends_count":71,"listed_count":0,"favourites_count":1802,"statuses_count":11968,"created_at":"Tue Feb 01 01:53:43 +0000 2011","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000023106388\/63508b5f3764e7f7e7c0ebc69ae4b4df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000023106388\/63508b5f3764e7f7e7c0ebc69ae4b4df.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651240305878962177\/k_ASNnqq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651240305878962177\/k_ASNnqq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245598576\/1433456786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022395215872,"id_str":"663728022395215872","text":"RT @EzeBasualdoo: Calor antes que fr\u00edo, sin dudas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564082460,"id_str":"564082460","name":"Snow White \u2740","screen_name":"AggosTorres23","location":null,"url":null,"description":"\u2740 BE A LIGTH TO THE WORLD \u2740\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdicta a las pel\u00edculas. Amor por el verano. Pasi\u00f3n por Boca. 18.","protected":false,"verified":false,"followers_count":635,"friends_count":335,"listed_count":2,"favourites_count":3913,"statuses_count":51032,"created_at":"Thu Apr 26 22:14:30 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F50C90","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497071843686117376\/y7uu3TLQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497071843686117376\/y7uu3TLQ.jpeg","profile_background_tile":true,"profile_link_color":"F50C90","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663426399202603013\/0rEkAvPe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663426399202603013\/0rEkAvPe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564082460\/1423874760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:47 +0000 2015","id":663723410296541185,"id_str":"663723410296541185","text":"Calor antes que fr\u00edo, sin dudas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587919203,"id_str":"587919203","name":"S","screen_name":"EzeBasualdoo","location":"Villa Allende\/Cba\/Argentina","url":"http:\/\/www.instagram.com\/ezebasualdo\/","description":"Alegria es el secreto. \nEstudiante Higiene y Seguridad. \nBombero Voluntario.","protected":false,"verified":false,"followers_count":1091,"friends_count":690,"listed_count":2,"favourites_count":69,"statuses_count":76760,"created_at":"Wed May 23 01:55:56 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0417E0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/854113252\/2f4ab510d1183e69a455b4da3f1c56df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/854113252\/2f4ab510d1183e69a455b4da3f1c56df.jpeg","profile_background_tile":true,"profile_link_color":"169EAD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654041593989738498\/FiJRR3gY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654041593989738498\/FiJRR3gY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587919203\/1444973567","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EzeBasualdoo","name":"S","id":587919203,"id_str":"587919203","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066666"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022361632768,"id_str":"663728022361632768","text":"@kafercita yo digo @OskRolando","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726198288199681,"in_reply_to_status_id_str":"663726198288199681","in_reply_to_user_id":151960739,"in_reply_to_user_id_str":"151960739","in_reply_to_screen_name":"kafercita","user":{"id":252857724,"id_str":"252857724","name":"Oscar S\u00e1nchez L\u00f3pez\u00ae","screen_name":"OskRolando","location":"Sur","url":"http:\/\/derechoutmach.blogspot.com","description":"De IZQUIERDA. Presidente Asociaci\u00f3n de Derecho de la #UTMACH 2014. En el 2016 Abogado. Barcelonista. Nac\u00ed en la #PatriaGrande. Amo @kafercita","protected":false,"verified":false,"followers_count":892,"friends_count":812,"listed_count":5,"favourites_count":1952,"statuses_count":9153,"created_at":"Wed Feb 16 01:57:40 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611351044669480961\/ms-Z131j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611351044669480961\/ms-Z131j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/252857724\/1425675402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kafercita","name":"Fernanda Landin \u00a9","id":151960739,"id_str":"151960739","indices":[0,10]},{"screen_name":"OskRolando","name":"Oscar S\u00e1nchez L\u00f3pez\u00ae","id":252857724,"id_str":"252857724","indices":[19,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066658"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374191105,"id_str":"663728022374191105","text":"RT @nochilljezzy: I'm bout to be okay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2678783060,"id_str":"2678783060","name":"Dec.27\u2728","screen_name":"Jaleah_love","location":"FHS Track & Field","url":null,"description":"why you lurkin my page?. Ig, Snapchat, PHHHOTO - @Jaleah_love","protected":false,"verified":false,"followers_count":1435,"friends_count":838,"listed_count":1,"favourites_count":21175,"statuses_count":18909,"created_at":"Fri Jul 25 05:21:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660486224717680640\/-PzxZQhu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660486224717680640\/-PzxZQhu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2678783060\/1446207706","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:59 +0000 2015","id":663726733003251712,"id_str":"663726733003251712","text":"I'm bout to be okay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3392909074,"id_str":"3392909074","name":"Jezaniah","screen_name":"nochilljezzy","location":"Hollywood, FL","url":null,"description":"EHS | Class of 2017 | Ig: jezzy_gonzalez | Carribean girl \u2728 | Single","protected":false,"verified":false,"followers_count":351,"friends_count":423,"listed_count":2,"favourites_count":6138,"statuses_count":11271,"created_at":"Tue Jul 28 23:07:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660576409086218240\/olusA963_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660576409086218240\/olusA963_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3392909074\/1446640648","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nochilljezzy","name":"Jezaniah","id":3392909074,"id_str":"3392909074","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022369996800,"id_str":"663728022369996800","text":"Bankroll fresh might be my new boyfriend.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3056564181,"id_str":"3056564181","name":"honcho","screen_name":"Jenna_LDN","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":964,"friends_count":359,"listed_count":9,"favourites_count":6468,"statuses_count":33604,"created_at":"Mon Feb 23 17:55:26 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663024149074440192\/BhCPaBje_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663024149074440192\/BhCPaBje_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3056564181\/1447072997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374215680,"id_str":"663728022374215680","text":"RT @eurolobo: El \u00faltimo evento telurico registrado a las 9 y 2 minutos de la ma\u00f1ana tuvo una magnitud de4.1, una de las replicas mas fuertes","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551041357,"id_str":"551041357","name":"NORKA ","screen_name":"norkadd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":412,"friends_count":207,"listed_count":7,"favourites_count":22,"statuses_count":90460,"created_at":"Wed Apr 11 14:34:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441218002449469441\/mhnESmEZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441218002449469441\/mhnESmEZ_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:55 +0000 2015","id":663719418946560000,"id_str":"663719418946560000","text":"El \u00faltimo evento telurico registrado a las 9 y 2 minutos de la ma\u00f1ana tuvo una magnitud de4.1, una de las replicas mas fuertes","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210992600,"id_str":"210992600","name":"Euro Lobo","screen_name":"eurolobo","location":"Merida","url":"http:\/\/www.eurolobo.blogspot.com","description":"04247483700","protected":false,"verified":false,"followers_count":48780,"friends_count":1584,"listed_count":286,"favourites_count":18,"statuses_count":8490,"created_at":"Tue Nov 02 00:27:00 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/876846597\/2e9c7c11d5cdf42972f1b1244a536af9.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/876846597\/2e9c7c11d5cdf42972f1b1244a536af9.gif","profile_background_tile":false,"profile_link_color":"57704C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"424242","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632974922575446016\/Ifezmrcu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632974922575446016\/Ifezmrcu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210992600\/1356741524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eurolobo","name":"Euro Lobo","id":210992600,"id_str":"210992600","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374191104,"id_str":"663728022374191104","text":"RT @sycondotta: Doug acabou de falar q considera a Mine apesar d bonita um homem e vc\u00eas interpretam q ele quer comer ela por necessidade, m\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1454551327,"id_str":"1454551327","name":"laury PURPOSE","screen_name":"ovadafeatshots","location":"justin follows%%%","url":null,"description":"BIEBER IS BACK","protected":false,"verified":false,"followers_count":7868,"friends_count":6536,"listed_count":8,"favourites_count":15802,"statuses_count":51364,"created_at":"Fri May 24 15:33:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658419233295069188\/9iDdlHpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658419233295069188\/9iDdlHpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1454551327\/1445814284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:43 +0000 2015","id":663719618775752704,"id_str":"663719618775752704","text":"Doug acabou de falar q considera a Mine apesar d bonita um homem e vc\u00eas interpretam q ele quer comer ela por necessidade, me ajudem","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90482412,"id_str":"90482412","name":"Syl #TeamDouglas","screen_name":"sycondotta","location":null,"url":null,"description":"Eu gosto do imposs\u00edvel pq l\u00e1 a concorr\u00eancia \u00e9 menor e dentro da minha loucura me permito ser feliz \u2764","protected":false,"verified":false,"followers_count":3182,"friends_count":335,"listed_count":12,"favourites_count":29648,"statuses_count":95527,"created_at":"Mon Nov 16 20:57:45 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660181085490429956\/qH5JdCTt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660181085490429956\/qH5JdCTt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90482412\/1446901729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sycondotta","name":"Syl #TeamDouglas","id":90482412,"id_str":"90482412","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382632960,"id_str":"663728022382632960","text":"A negative mind will never give you a positive life.","source":"\u003ca href=\"http:\/\/www.kucukbeyin.com\/\" rel=\"nofollow\"\u003eer\u0131gha\u0131dfg\u0131ajdf\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1870271708,"id_str":"1870271708","name":"Words","screen_name":"MoreThanTweetsQ","location":null,"url":null,"description":"Something to Remember","protected":false,"verified":false,"followers_count":11994,"friends_count":12951,"listed_count":21,"favourites_count":0,"statuses_count":20853,"created_at":"Mon Sep 16 04:43:47 +0000 2013","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478909691938877441\/VwsPcJzA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478909691938877441\/VwsPcJzA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1870271708\/1403015933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022369906689,"id_str":"663728022369906689","text":"RT @poke_battlebot: \u30ab\u30a4\u30ea\u30ad\u30fc\u306f \u3042\u306a\u3092\u307b\u308b \u3092\u899a\u3048\u308b\u3002","source":"\u003ca href=\"https:\/\/itunes.apple.com\/jp\/app\/ye-hu-ba-zhong-zou\/id557514907?mt=8\" rel=\"nofollow\"\u003eNightfoxDuo iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3250810188,"id_str":"3250810188","name":"\u8ab2\u9577","screen_name":"YAMI_krs","location":"Twitter\u304c\u73fe\u5b9f\u3060\u3063\u305f\u3089","url":null,"description":"\u30fb\u4e0b\u30cd\u30bf\u304c\u5acc\u3044 \u30fb\u30af\u30bd\u30ea\u30d7\u98db\u3070\u3055\u308c\u305f\u304f\u306a\u3044 \u30fbTL\u57cb\u3081\u5c3d\u304f\u3055\u308c\u305f\u304f\u306a\u3044 \u30fb\u30d5\u30a9\u30ed\u30ef\u30fc\u7a3c\u304e\u305f\u3044\u3060\u3051 \u30fb\u30d1\u30af\u30c4\u30a4\u304c\u5acc\u3044 \u4ee5\u4e0a\u306b1\u3064\u3067\u3082\u5f53\u3066\u306f\u307e\u308b\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u975e\u63a8\u5968\u3067\u3059 \u30d8\u30c3\u30c0\u30fc\u306f @toLO668 \u304b\u3089\u9802\u304d\u307e\u3057\u305f \u30a2\u30a4\u30b3\u30f3\u306f @oeki_P \u304b\u3089","protected":false,"verified":false,"followers_count":381,"friends_count":256,"listed_count":24,"favourites_count":29203,"statuses_count":60374,"created_at":"Sat Jun 20 17:17:56 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662294928840495104\/ixzyHAVr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662294928840495104\/ixzyHAVr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3250810188\/1446738390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 06:04:36 +0000 2015","id":658886999927984128,"id_str":"658886999927984128","text":"\u30ab\u30a4\u30ea\u30ad\u30fc\u306f \u3042\u306a\u3092\u307b\u308b \u3092\u899a\u3048\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3992812814,"id_str":"3992812814","name":"\u30dd\u30b1\u30e2\u30f3\u5bfe\u6226\u8c46\u77e5\u8b58bot","screen_name":"poke_battlebot","location":null,"url":null,"description":"\u30dd\u30b1\u30e2\u30f3\u5bfe\u6226\u306b\u95a2\u3059\u308b\u77e5\u8b58\u3092\u3072\u305f\u3059\u3089\u3064\u3076\u3084\u304fbot\u3067\u3059\u3002\u30cd\u30bf\u63d0\u4f9b\u306f\u968f\u6642\u52df\u96c6\u4e2d\u306a\u306e\u3067DM\u304b\u30ea\u30d7\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":721,"friends_count":989,"listed_count":2,"favourites_count":2,"statuses_count":61,"created_at":"Fri Oct 23 16:06:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657589751705276416\/yd7w10Or_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657589751705276416\/yd7w10Or_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3992812814\/1446877986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"poke_battlebot","name":"\u30dd\u30b1\u30e2\u30f3\u5bfe\u6226\u8c46\u77e5\u8b58bot","id":3992812814,"id_str":"3992812814","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022369931264,"id_str":"663728022369931264","text":"\uc790\uce90\ucee4\ubba4 \uc194\uc81c\ub974 \uc81c\uad6d \uae30\ubc18 \uba54\uc774\ub4dc\uc785\ub2c8\ub2e4.\n\uc774\ub798\ubcf4\uc5ec\ub3c4 \uc2f8\uc6c0\uc740 \uc798\ud558\ub2c8 \uc8fc\uc778\ub2d8 \ud55c\ubd84\uc815\ub3c8 \uc9c0\ud0ac \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n#\ud2b8\uce5c\uc18c_\ub9c8\uc74c\ub9cc_\uc8fc\uc2dc\uba74_\uc7a1\uc73c\ub7ec_\uac00\uc694","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180061474,"id_str":"4180061474","name":"\ud790\ub2e4","screen_name":"Hilda_maid_bot","location":"\uc194\ud14c\ub974 \uc81c\uad6d \uc5b4\ub518\uac00\uc5d0 \uc788\uaca0\uc8e0.","url":null,"description":"\uc790\uce90\ucee4\ubba4 \uc194\ud14c\ub974\uc81c\uad6d \uae30\ubc18 RPA\uacc4\uc815.\n\uc77c\uba85 '\ucd1d\uc880 \uc3dc\ub2e4\ub294 \uba54\uc774\ub4dc'\n\uc218\uc704 \uc548\ubc1b\uc544\uc694.","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 09 14:26:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725869152628736\/-61Nl9YG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725869152628736\/-61Nl9YG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud2b8\uce5c\uc18c_\ub9c8\uc74c\ub9cc_\uc8fc\uc2dc\uba74_\uc7a1\uc73c\ub7ec_\uac00\uc694","indices":[57,76]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022370021376,"id_str":"663728022370021376","text":"Viciado... \ud83d\ude0d https:\/\/t.co\/Q1ny3gfsIA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":119228539,"id_str":"119228539","name":"Felipe Duarte","screen_name":"feeduart","location":"Juiz de Fora, MG","url":"http:\/\/www.facebook.com\/feeduarte","description":"Paulista de sangue, MINEIRO de coracao. Formado em Design Grafico pela UNIVEM e apaixonado por Fotografia.","protected":false,"verified":false,"followers_count":582,"friends_count":293,"listed_count":2,"favourites_count":313,"statuses_count":2239,"created_at":"Wed Mar 03 01:26:42 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"21990F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441287012104937472\/sBfjWZq5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441287012104937472\/sBfjWZq5.png","profile_background_tile":true,"profile_link_color":"21990F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456453532569182208\/r7epoGaK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456453532569182208\/r7epoGaK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119228539\/1393793916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q1ny3gfsIA","expanded_url":"https:\/\/youtu.be\/W62-ZG9tPpI","display_url":"youtu.be\/W62-ZG9tPpI","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022386835456,"id_str":"663728022386835456","text":"@LeMartialTurn and Supposedly MW2 And Blacks Ops 2 Will be coming to Xbox one at a Later Date :)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727614201339904,"in_reply_to_status_id_str":"663727614201339904","in_reply_to_user_id":2310722436,"in_reply_to_user_id_str":"2310722436","in_reply_to_screen_name":"LeMartialTurn","user":{"id":266219191,"id_str":"266219191","name":"DAN","screen_name":"DanielH44","location":"United Kingdom","url":null,"description":"#MUFC|Gaming|Wrestling|Patriots","protected":false,"verified":false,"followers_count":793,"friends_count":464,"listed_count":6,"favourites_count":25025,"statuses_count":2325,"created_at":"Mon Mar 14 21:46:17 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662236850082471936\/LUnUYPWD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662236850082471936\/LUnUYPWD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266219191\/1442536434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeMartialTurn","name":"Luke","id":2310722436,"id_str":"2310722436","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066664"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022395224065,"id_str":"663728022395224065","text":"RT @iFaridoon: \"Presenting your film to d public is like giving away your daughter\":@iamsrk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2772716823,"id_str":"2772716823","name":"#DilwaleTrailerDay","screen_name":"SRKian_Deepika","location":"United Kingdom","url":null,"description":"Anisa \u2022 In love with the worlds biggest star @iamsrk (we are secretly married) \u2764 \u2022 @deepikapadukone is bae","protected":false,"verified":false,"followers_count":1909,"friends_count":504,"listed_count":18,"favourites_count":15891,"statuses_count":36447,"created_at":"Tue Sep 16 21:51:33 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644105302682566656\/CQ9nluPP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644105302682566656\/CQ9nluPP.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663704710684258304\/t5TPcJtc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663704710684258304\/t5TPcJtc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2772716823\/1446409375","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727945115172865,"id_str":"663727945115172865","text":"\"Presenting your film to d public is like giving away your daughter\":@iamsrk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217017676,"id_str":"1217017676","name":"Faridoon Shahryar","screen_name":"iFaridoon","location":null,"url":null,"description":"Journalist based in Mumbai, India, who believes in credible infotainment. Works for Bollywood Hungama. Loves Music, Swimming,Smiling! faridoonshahryar@gmail.com","protected":false,"verified":false,"followers_count":42830,"friends_count":285,"listed_count":123,"favourites_count":3274,"statuses_count":22114,"created_at":"Mon Feb 25 01:54:40 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217017676\/1446533556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[69,76]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iFaridoon","name":"Faridoon Shahryar","id":1217017676,"id_str":"1217017676","indices":[3,13]},{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[84,91]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066666"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022391013376,"id_str":"663728022391013376","text":"Depois de saber as notas da outra turma estou ainda mais em p\u00e2nico, s\u00f3 quero desaparecer e n\u00e3o fazer a frequ\u00eancia amanh\u00e3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":806948929,"id_str":"806948929","name":"Chihiro","screen_name":"spiritedchihir0","location":null,"url":null,"description":"I get called ugly some days and I get called cute some days but it really doesn't matter to me because my ego be staying on Kanye level","protected":false,"verified":false,"followers_count":11824,"friends_count":162,"listed_count":13,"favourites_count":17485,"statuses_count":109918,"created_at":"Thu Sep 06 14:32:01 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000168279953\/v_LaTGAf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000168279953\/v_LaTGAf.jpeg","profile_background_tile":true,"profile_link_color":"750475","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661328701339115523\/sYDycCb-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661328701339115523\/sYDycCb-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/806948929\/1413323921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080066665"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022361477120,"id_str":"663728022361477120","text":"RT @andoyjohn: Yun na man talagang \"BOSS\" ohh.. #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2509473264,"id_str":"2509473264","name":"Pat","screen_name":"pat2tqtqtqt","location":null,"url":null,"description":"Certified CDP\u2022LZ|DawnZpost x 1richardgomez1|C-H-A-R-D-A-W-N|CharDawnian Forever| I will always have a weak spot for you\/\/ HUGOT QUEEN","protected":false,"verified":false,"followers_count":555,"friends_count":1010,"listed_count":2,"favourites_count":11512,"statuses_count":10287,"created_at":"Tue May 20 06:26:45 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663333890380066816\/UozcxlLH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663333890380066816\/UozcxlLH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2509473264\/1446074526","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:27 +0000 2015","id":663726097226293249,"id_str":"663726097226293249","text":"Yun na man talagang \"BOSS\" ohh.. #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":326624426,"id_str":"326624426","name":"Kyle Torres","screen_name":"andoyjohn","location":"Dumaguete","url":null,"description":"There\u2019s a lot right in your life\u2014don\u2019t take it for granted.","protected":false,"verified":false,"followers_count":111,"friends_count":348,"listed_count":3,"favourites_count":8477,"statuses_count":764,"created_at":"Thu Jun 30 06:34:42 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644271394029629440\/Z-hon8Tz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644271394029629440\/Z-hon8Tz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/326624426\/1446605607","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[33,45]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[48,60]}],"urls":[],"user_mentions":[{"screen_name":"andoyjohn","name":"Kyle Torres","id":326624426,"id_str":"326624426","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080066658"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382473216,"id_str":"663728022382473216","text":"RT @masa00808: \u3059\u3050\u6d88\u3057\u307e\u3059w\nRT\u3057\u3066\u306d\uff01 https:\/\/t.co\/SwdzWyxeKT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2288895576,"id_str":"2288895576","name":"\u685c\u5742\u307f\u3063\u304f\u3093","screen_name":"Touch521","location":null,"url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\u3002\u5343\u8449\u770c\u4f4f\u307f\u3001171#60#33\u306e\u72ec\u8eab\u3001G\u5bc4\u308a\u306eB\u3067\u3059\u3002\u97f3\u697d\u5927\u597d\u304d\u3067J-POP\u4e2d\u5fc3\u306b\u8074\u3044\u3066\u3044\u307e\u3059\u3002\u6c17\u306b\u306a\u308a\u307e\u3057\u305f\u3089\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":550,"friends_count":1079,"listed_count":3,"favourites_count":1998,"statuses_count":3527,"created_at":"Mon Jan 13 01:07:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648823492905799681\/2RmDuI7j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648823492905799681\/2RmDuI7j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2288895576\/1427025739","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:02:38 +0000 2015","id":663703240551219201,"id_str":"663703240551219201","text":"\u3059\u3050\u6d88\u3057\u307e\u3059w\nRT\u3057\u3066\u306d\uff01 https:\/\/t.co\/SwdzWyxeKT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3017991969,"id_str":"3017991969","name":"TAKUYA","screen_name":"masa00808","location":null,"url":null,"description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u51cd\u7d50\u3057\u305f\u306e\u3067\u65b0\u3057\u304f\u3057\u307e\u3057\u305f\uff01 18\u6b73\u3067\u3059\uff01\u5c02\u9580\u5b66\u751f\uff01\u6c17\u8efd\u306bDM\u304f\u3060\u3055\u3044\uff01 \u30d0\u30a4\uff01","protected":false,"verified":false,"followers_count":75,"friends_count":381,"listed_count":0,"favourites_count":1,"statuses_count":8,"created_at":"Wed Feb 04 16:37:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653910916984016896\/481M_ZrD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653910916984016896\/481M_ZrD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017991969\/1444637612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663703018508955649,"id_str":"663703018508955649","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","url":"https:\/\/t.co\/SwdzWyxeKT","display_url":"pic.twitter.com\/SwdzWyxeKT","expanded_url":"http:\/\/twitter.com\/masa00808\/status\/663703240551219201\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703018508955649,"id_str":"663703018508955649","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","url":"https:\/\/t.co\/SwdzWyxeKT","display_url":"pic.twitter.com\/SwdzWyxeKT","expanded_url":"http:\/\/twitter.com\/masa00808\/status\/663703240551219201\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":28743,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/pl\/zZSGneuVHyllPmGU.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/360x640\/gXCe9F-nfzM6xMB0.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/720x1280\/aaNw0INOz_jfmlm0.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/360x640\/gXCe9F-nfzM6xMB0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/pl\/zZSGneuVHyllPmGU.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/180x320\/OQYCSyCf-PSyBmog.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"masa00808","name":"TAKUYA","id":3017991969,"id_str":"3017991969","indices":[3,13]}],"symbols":[],"media":[{"id":663703018508955649,"id_str":"663703018508955649","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","url":"https:\/\/t.co\/SwdzWyxeKT","display_url":"pic.twitter.com\/SwdzWyxeKT","expanded_url":"http:\/\/twitter.com\/masa00808\/status\/663703240551219201\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663703240551219201,"source_status_id_str":"663703240551219201","source_user_id":3017991969,"source_user_id_str":"3017991969"}]},"extended_entities":{"media":[{"id":663703018508955649,"id_str":"663703018508955649","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663703018508955649\/pu\/img\/S5Tlb_7TNKvuMm8p.jpg","url":"https:\/\/t.co\/SwdzWyxeKT","display_url":"pic.twitter.com\/SwdzWyxeKT","expanded_url":"http:\/\/twitter.com\/masa00808\/status\/663703240551219201\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663703240551219201,"source_status_id_str":"663703240551219201","source_user_id":3017991969,"source_user_id_str":"3017991969","video_info":{"aspect_ratio":[9,16],"duration_millis":28743,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/pl\/zZSGneuVHyllPmGU.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/360x640\/gXCe9F-nfzM6xMB0.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/720x1280\/aaNw0INOz_jfmlm0.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/360x640\/gXCe9F-nfzM6xMB0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/pl\/zZSGneuVHyllPmGU.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663703018508955649\/pu\/vid\/180x320\/OQYCSyCf-PSyBmog.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022361661440,"id_str":"663728022361661440","text":"I am gay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487905080,"id_str":"487905080","name":"zac collins\u270c","screen_name":"ZacCollins7","location":"Liverpool, England","url":null,"description":"I am a baller and yes I can drive, Also known for being a pro tipster and pro pub sport player. Me Me Me Liverpool, @guncrayzy isnt too shabby, check her out","protected":false,"verified":false,"followers_count":617,"friends_count":793,"listed_count":2,"favourites_count":4820,"statuses_count":6015,"created_at":"Thu Feb 09 21:33:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429935418\/newc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429935418\/newc.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609105098405474304\/BrYgLZL5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609105098405474304\/BrYgLZL5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487905080\/1437949896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066658"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382641152,"id_str":"663728022382641152","text":"\u201cThere are 2 modes, open mode and closed mode, we need both\u201d - John Cleese #Cleeseoncreativity","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054860619,"id_str":"4054860619","name":"LUX LISBON","screen_name":"oSONGS_LISBON_","location":"London","url":"http:\/\/bit.ly\/bullingdonclubvideo","description":"London Indie band, Bullingdon Club single - http:\/\/bit.ly\/bullingdonclubvideo - this deserves a wider audience - Billy Bragg. Also on Stewart Lee's Website.","protected":false,"verified":false,"followers_count":283,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":21,"created_at":"Thu Oct 29 06:37:44 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660764641866330112\/PJvqS3sk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660764641866330112\/PJvqS3sk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054860619\/1446373553","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Cleeseoncreativity","indices":[75,94]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022357430272,"id_str":"663728022357430272","text":"\u0633\u0646\u062f\u06be \u06a9\u06d2 15 \u0627\u0636\u0644\u0627\u0639 \u0645\u06cc\u06ba \u0628\u0644\u062f\u06cc\u0627\u062a\u06cc \u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a \u06a9\u06cc\u0644\u0626\u06d27 \u06c1\u0632\u0627\u0631 \u067e\u0648\u0644\u0646\u06af \u0627\u0633\u0679\u06cc\u0634\u0646\u0632 \u0642\u0627\u0626\u0645 \u06a9\u0626\u06d2 \u06af\u0626\u06d2 \u06c1\u06cc\u06ba\u060c 2500 \u067e\u0648\u0644\u0646\u06af \u0627\u0633\u0679\u06cc\u0634\u0646 \u0627\u0646\u062a\u06c1\u0627\u0626\u06cc \u062d\u0633\u0627\u0633\u2026 https:\/\/t.co\/eQLe2DbSMU","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3182772721,"id_str":"3182772721","name":"Shah Jee","screen_name":"mardanone","location":"Mardan, Pakistan","url":"http:\/\/mardan.com","description":"Himmat na haarna bey","protected":false,"verified":false,"followers_count":653,"friends_count":691,"listed_count":116,"favourites_count":3,"statuses_count":196585,"created_at":"Sat May 02 10:34:09 +0000 2015","utc_offset":14400,"time_zone":"Baku","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594453324574822401\/wgFPidy6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594453324574822401\/wgFPidy6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3182772721\/1430563846","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eQLe2DbSMU","expanded_url":"http:\/\/go.urdupoint.com\/Chffjf","display_url":"go.urdupoint.com\/Chffjf","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ur","timestamp_ms":"1447080066657"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365847552,"id_str":"663728022365847552","text":"C\u00f3mo duele lo de no ir a la uni pero tener que aguantar el conservatorio igual.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319214218,"id_str":"319214218","name":"\u03c6","screen_name":"dontwalkayaw","location":"Imre, a 3 km de la Universidad","url":"http:\/\/ddizzyhurricane.tumblr.com\/","description":"'Las cicatrices pueden ser \u00fatiles. Yo tengo una en la rodilla izquierda que es un diagrama perfecto del metro de Londres.'\nLogan Lerman\u2665. ATL. Phoenix. 221B. \u2640","protected":false,"verified":false,"followers_count":559,"friends_count":330,"listed_count":8,"favourites_count":355,"statuses_count":29117,"created_at":"Fri Jun 17 19:02:49 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/328926414\/HP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/328926414\/HP.jpg","profile_background_tile":true,"profile_link_color":"EB0000","profile_sidebar_border_color":"FF0000","profile_sidebar_fill_color":"1C1C1C","profile_text_color":"8F0606","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526465365971185664\/kp-CCNSj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526465365971185664\/kp-CCNSj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319214218\/1403995669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374232068,"id_str":"663728022374232068","text":"\u041d\u0430\u0448\u0435 \u043b\u044e\u0431\u0438\u043c\u043e\u0435 \u0444\u043e\u0442\u043e \u0420\u044d\u0439\u0444\u0430 \u0424\u0430\u0439\u043d\u0441\u0430) #007\u0421\u041f\u0415\u041a\u0422\u0420 \u0443\u0436\u0435 \u0432 \u043a\u0438\u043d\u043e! https:\/\/t.co\/iakhWS5w6j","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197885476,"id_str":"2197885476","name":"\u0421\u0435\u0440\u0433\u0435\u0439 \u0425\u0430\u043c\u0438\u0442\u043e\u0432","screen_name":"gogowoo1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":169,"created_at":"Sat Nov 16 15:01:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575003894213799938\/i0s8rW1-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575003894213799938\/i0s8rW1-_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"007\u0421\u041f\u0415\u041a\u0422\u0420","indices":[33,43]}],"urls":[{"url":"https:\/\/t.co\/iakhWS5w6j","expanded_url":"http:\/\/letfriend.ru\/share\/235\/share_fanart.php?id=235&fanart_id=165996&advocat_id=0&referrer=twitter&__=1447080062690","display_url":"letfriend.ru\/share\/235\/shar\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378315776,"id_str":"663728022378315776","text":"RT @letvindia: We're excited to celebrate #Diwali with our 10,000+ awesome #SuperFans. We appreciate your support. Follow us! https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81632010,"id_str":"81632010","name":"..","screen_name":"Leaf_L0VER","location":null,"url":"http:\/\/xn--31ba5fwc.com","description":"follow me n earn enough blessings to date five girlfriends","protected":false,"verified":false,"followers_count":14,"friends_count":46,"listed_count":0,"favourites_count":17,"statuses_count":374,"created_at":"Sun Oct 11 16:36:35 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608646616161976320\/2BchF8VQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608646616161976320\/2BchF8VQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81632010\/1433947635","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 07:16:21 +0000 2015","id":662528931979915264,"id_str":"662528931979915264","text":"We're excited to celebrate #Diwali with our 10,000+ awesome #SuperFans. We appreciate your support. Follow us! https:\/\/t.co\/wWYwQCQopG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3534907093,"id_str":"3534907093","name":"Letv India","screen_name":"letvindia","location":"India","url":"http:\/\/forum.letv.com\/in\/","description":"Breaking boundaries through industry-disrupting innovations & technology #DisruptiveFuture #SuperPhone #LeMax #Le1s","protected":false,"verified":true,"followers_count":16672,"friends_count":55,"listed_count":10,"favourites_count":42,"statuses_count":90,"created_at":"Sat Sep 12 06:05:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D70D18","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650285294177021952\/gdJ5sIE6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650285294177021952\/gdJ5sIE6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3534907093\/1443876473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":51,"favorite_count":76,"entities":{"hashtags":[{"text":"Diwali","indices":[27,34]},{"text":"SuperFans","indices":[60,70]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662528930587344896,"id_str":"662528930587344896","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","url":"https:\/\/t.co\/wWYwQCQopG","display_url":"pic.twitter.com\/wWYwQCQopG","expanded_url":"http:\/\/twitter.com\/letvindia\/status\/662528931979915264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662528930587344896,"id_str":"662528930587344896","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","url":"https:\/\/t.co\/wWYwQCQopG","display_url":"pic.twitter.com\/wWYwQCQopG","expanded_url":"http:\/\/twitter.com\/letvindia\/status\/662528931979915264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Diwali","indices":[42,49]},{"text":"SuperFans","indices":[75,85]}],"urls":[],"user_mentions":[{"screen_name":"letvindia","name":"Letv India","id":3534907093,"id_str":"3534907093","indices":[3,13]}],"symbols":[],"media":[{"id":662528930587344896,"id_str":"662528930587344896","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","url":"https:\/\/t.co\/wWYwQCQopG","display_url":"pic.twitter.com\/wWYwQCQopG","expanded_url":"http:\/\/twitter.com\/letvindia\/status\/662528931979915264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}},"source_status_id":662528931979915264,"source_status_id_str":"662528931979915264","source_user_id":3534907093,"source_user_id_str":"3534907093"}]},"extended_entities":{"media":[{"id":662528930587344896,"id_str":"662528930587344896","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHGjVkUAAA6VDv.png","url":"https:\/\/t.co\/wWYwQCQopG","display_url":"pic.twitter.com\/wWYwQCQopG","expanded_url":"http:\/\/twitter.com\/letvindia\/status\/662528931979915264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}},"source_status_id":662528931979915264,"source_status_id_str":"662528931979915264","source_user_id":3534907093,"source_user_id_str":"3534907093"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382583808,"id_str":"663728022382583808","text":"\u0646\u0644\u0639\u0628 \u0641\u064a \u0627\u064a\u0631\u0627\u0646 \u0645\u0648 \u0641\u064a \u0627\u0644\u0627\u0631\u062f\u0627\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2579413568,"id_str":"2579413568","name":"\u0641\u0647\u062f \u0627\u0644\u062d\u0631\u0628\u064a.","screen_name":"lll2li","location":"\u0633\u0646\u0627\u0628: fhhdd53","url":null,"description":"\u0627\u0646\u0627 \u0634\u0627\u0647\u062f\u062a \u0645\u062d\u0645\u062f \u0646\u0648\u0631 \u0648\u0647\u0648 \u064a\u0631\u0641\u0639 \u0627\u0628\u0637\u0627\u0644 \u0627\u0633\u064a\u0627 \u0645\u0631\u062a\u064a\u0646 \u0627\u0646\u062a \u0648\u0634 \u0634\u0627\u0647\u062f\u062a \u061f","protected":false,"verified":false,"followers_count":4203,"friends_count":191,"listed_count":11,"favourites_count":1905,"statuses_count":76772,"created_at":"Fri Jun 20 23:30:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652877771958546433\/1QjsjnCU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652877771958546433\/1QjsjnCU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579413568\/1446810750","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374125569,"id_str":"663728022374125569","text":"RT @Ys_words: @yoshki_mika \u305d\u3093\u306a\u306b\u98df\u3079\u308d\u3063\u3066\u3044\u3046\u306a\u3089\u98df\u3079\u308b\u3088\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2841972463,"id_str":"2841972463","name":"Yoshiki\u221eMika","screen_name":"yoshki_mika","location":"\u65b0\u5927\u962a","url":null,"description":"\u30d5\u30a9\u30ed\u30ef\u30fc\u306e\u7686\u3055\u3093\n\u305f\u3060\u3044\u307e\uff5e\u2728\u7121\u4e8b\u306b\u304a\u5f15\u8d8a\u3057\u51fa\u6765\u307e\u3057\u305f\uff86\uff8b\uff6f\uff01\u3053\u308c\u304b\u3089\u306f\u4ee5\u524d\u306e\u69d8\u306bIN\u3057\u307e\u3059\u306d\u2728\u30d0\u30ec\u305a\u306b\u65b0\u5c45\u306b\u6765\u308c\u305f\u2728\u4eca\u306e\u6240\u306f\u7570\u5e38\u7121\u3057\u3067\u3059\u307e\u305f\u3001\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u306d","protected":false,"verified":false,"followers_count":114,"friends_count":218,"listed_count":1,"favourites_count":22090,"statuses_count":36613,"created_at":"Mon Oct 06 03:37:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661768457684291584\/P42Kxi8D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661768457684291584\/P42Kxi8D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841972463\/1423717754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:26:39 +0000 2015","id":663709284056719360,"id_str":"663709284056719360","text":"@yoshki_mika \u305d\u3093\u306a\u306b\u98df\u3079\u308d\u3063\u3066\u3044\u3046\u306a\u3089\u98df\u3079\u308b\u3088\uff01\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708854564208640,"in_reply_to_status_id_str":"663708854564208640","in_reply_to_user_id":2841972463,"in_reply_to_user_id_str":"2841972463","in_reply_to_screen_name":"yoshki_mika","user":{"id":272882307,"id_str":"272882307","name":"YOSHIKI\u307c\u3063\u3068","screen_name":"Ys_words","location":null,"url":null,"description":"\u975e\u516c\u5f0fYOSHIKI bot\u3067\u3059\u3002\u30a4\u30f3\u30bf\u30d3\u30e5\u30fc\u7b49\u304b\u3089\u545f\u304d\u307e\u3059\u3002@\u3067\u8a71\u3057\u304b\u3051\u308b\u3068\u8fd4\u4fe1\u3057\u307e\u3059\u3002\u305f\u307e\u306b\u307c\u3063\u3068\u3068\u304b\u3089\u307f\u307e\u3059\u2190","protected":false,"verified":false,"followers_count":2739,"friends_count":1531,"listed_count":75,"favourites_count":6,"statuses_count":55554,"created_at":"Sun Mar 27 11:04:09 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661566738404773888\/X-esIwwL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661566738404773888\/X-esIwwL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272882307\/1415796552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yoshki_mika","name":"Yoshiki\u221eMika","id":2841972463,"id_str":"2841972463","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ys_words","name":"YOSHIKI\u307c\u3063\u3068","id":272882307,"id_str":"272882307","indices":[3,12]},{"screen_name":"yoshki_mika","name":"Yoshiki\u221eMika","id":2841972463,"id_str":"2841972463","indices":[14,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382604288,"id_str":"663728022382604288","text":"https:\/\/t.co\/fICcFDF1T7 Apple iPhone 6 (Latest Model) - 16GB - Silver (Verizon) Smartphone","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33799339,"id_str":"33799339","name":"Reeeemix","screen_name":"ReeeemixHQ","location":"USA","url":"http:\/\/reeeemix.com","description":"Reeeemix - say it like you mean it. Upgrade taste: #music, #lifestyle, #fashion. \u270c","protected":false,"verified":false,"followers_count":1626,"friends_count":2,"listed_count":144,"favourites_count":542,"statuses_count":628710,"created_at":"Tue Apr 21 03:45:56 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A80FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/340307642\/myphonenumberqr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/340307642\/myphonenumberqr.png","profile_background_tile":true,"profile_link_color":"FF4E08","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BAC3D9","profile_text_color":"1B001C","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632763595567140865\/WojeXev0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632763595567140865\/WojeXev0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33799339\/1439697623","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fICcFDF1T7","expanded_url":"http:\/\/ift.tt\/1NZpjdU","display_url":"ift.tt\/1NZpjdU","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022361624576,"id_str":"663728022361624576","text":"RT @_d3struxxion_: Quiero abrazarla hasta morirme real","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095856622,"id_str":"1095856622","name":"Agus","screen_name":"xagustinax_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1400,"friends_count":757,"listed_count":2,"favourites_count":3112,"statuses_count":13906,"created_at":"Wed Jan 16 17:36:23 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620794821230379008\/4V-qdcA6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620794821230379008\/4V-qdcA6.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660835659612102656\/5J4MTl1Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660835659612102656\/5J4MTl1Y_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:02 +0000 2015","id":663726748505407488,"id_str":"663726748505407488","text":"Quiero abrazarla hasta morirme real","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1257032329,"id_str":"1257032329","name":"Golfa #5","screen_name":"_d3struxxion_","location":null,"url":"https:\/\/instagram.com\/_jupit3r\/","description":"\u00abte voy a encontrar en la oscuridad\u00bb","protected":false,"verified":false,"followers_count":2828,"friends_count":2555,"listed_count":1,"favourites_count":17521,"statuses_count":29925,"created_at":"Sun Mar 10 13:28:02 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E7CDFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614151590778404865\/yi-fZXAM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614151590778404865\/yi-fZXAM.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"D090F0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658798620498612224\/aqAisBfG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658798620498612224\/aqAisBfG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1257032329\/1445870422","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_d3struxxion_","name":"Golfa #5","id":1257032329,"id_str":"1257032329","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080066658"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365667328,"id_str":"663728022365667328","text":"\u5c0f\u591c\u306f\u713c\u914e\u3060\u3088","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69262870,"id_str":"69262870","name":"\u3082\u307f@\u5c0f\u591c\u3061\u3083\u3093\u611b\u3067\u3066\u308b","screen_name":"momi_819","location":"\u3055\u3088\u3061\u3083\u3093\u306e\u8888\u88df\u306e\u9699\u9593","url":"http:\/\/twpf.jp\/momi_819","description":"\u6210\u4eba \u65e5\u5411 \u5f71\u65e5 \u70cf\u91ce\u4e00\u5e74 \u5c0f\u591c \u6b4c\u5c0f\u591c \u5e7b\u6c34 \u30eb\u30c3\u30af \u5973\u4f53\u5316 \u5c0f\u3055\u3044\u5b50 \u304c \u597d\u304d\u3067\u3059\u3000\u65e5\u5e38\u3054\u3068\u3064\u3076\u3084\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":108,"friends_count":266,"listed_count":3,"favourites_count":5032,"statuses_count":54945,"created_at":"Thu Aug 27 11:10:46 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE3A6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106625161\/d32bc2ff03b7a978cfe13b43256c120a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106625161\/d32bc2ff03b7a978cfe13b43256c120a.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A8D98D","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629358617825779712\/kdJccUG0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629358617825779712\/kdJccUG0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69262870\/1440947604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022386642948,"id_str":"663728022386642948","text":"RT @Love_McD: \u3010 #\u304a\u3084\u3059\u307f\u671d\u30de\u30c3\u30af \u3011\n https:\/\/t.co\/tRZFYGnGj1\n@Love_McD \u3092\u30d5\u30a9\u30ed\u30fc\uff06\u3053\u306e\u30c4\u30a4\u30fc\u30c8\u3092AM3:00\u307e\u3067\u306bRT\uff01\u62bd\u9078\u3067\u30db\u30c3\u30c8\u30a2\u30c3\u30d7\u30eb\u30d1\u30a4\u304c\u5f53\u305f\u308b\uff01\u30ae\u30c3\u30b7\u30ea\u3064\u307e\u3063\u305f\u30ea\u30f3\u30b4\u306e\u7518\u3055\u3067\u307b\u3063\u3068\u3059\u308b\u671d\u3092\u3002 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":862889281,"id_str":"862889281","name":"\u3077\u3046\u3055\u3093\u2721zom\u00d7zomSTAFF","screen_name":"zOm_Fucy724","location":"\u2600\ufe0eM!yagi\u2661","url":null,"description":"\u261e\u261e\u30e6\u30fc\u30ea\u00d7\u30ce\u30be\u30e0\u00d7\u30ea\u30e5\u30fc\u30d8\u30a4=\u7a81\u7136\u5909\u7570\u306e\u9ec4\u718a\u3002\u261c95Line\u263b\u3075\u305f\u3054\u25b7@blue_72423\u3002\u76f8\u65b9\u25b7@so_jump","protected":false,"verified":false,"followers_count":276,"friends_count":277,"listed_count":3,"favourites_count":644,"statuses_count":23362,"created_at":"Fri Oct 05 11:15:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663580133144461312\/HHwWQ6Cu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663580133144461312\/HHwWQ6Cu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/862889281\/1444053280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:00:13 +0000 2015","id":663672434831159297,"id_str":"663672434831159297","text":"\u3010 #\u304a\u3084\u3059\u307f\u671d\u30de\u30c3\u30af \u3011\n https:\/\/t.co\/tRZFYGnGj1\n@Love_McD \u3092\u30d5\u30a9\u30ed\u30fc\uff06\u3053\u306e\u30c4\u30a4\u30fc\u30c8\u3092AM3:00\u307e\u3067\u306bRT\uff01\u62bd\u9078\u3067\u30db\u30c3\u30c8\u30a2\u30c3\u30d7\u30eb\u30d1\u30a4\u304c\u5f53\u305f\u308b\uff01\u30ae\u30c3\u30b7\u30ea\u3064\u307e\u3063\u305f\u30ea\u30f3\u30b4\u306e\u7518\u3055\u3067\u307b\u3063\u3068\u3059\u308b\u671d\u3092\u3002 https:\/\/t.co\/z3YtML7QWR","source":"\u003ca href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184004752,"id_str":"184004752","name":"\u30de\u30af\u30c9\u30ca\u30eb\u30c9","screen_name":"Love_McD","location":null,"url":"http:\/\/www.mcdonalds.co.jp\/","description":"\u65e5\u672c\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u304c\u904b\u55b6\u3059\u308b\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u65b0\u5546\u54c1\u3092\u306f\u3058\u3081\u3068\u3059\u308b\u3001\u5546\u54c1\u60c5\u5831\u3001\u30b5\u30fc\u30d3\u30b9\u306a\u3069\u3054\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002\u3055\u3089\u306b\u3001\u30de\u30c3\u30af\u30ab\u30fc\u30c9\u3084\u30af\u30fc\u30dd\u30f3\u304c\u5f53\u305f\u308b\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u306a\u3069\u304a\u30c8\u30af\u306a\u60c5\u5831\u3082\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":true,"followers_count":759785,"friends_count":17157,"listed_count":3528,"favourites_count":0,"statuses_count":7117,"created_at":"Sat Aug 28 12:54:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466860540170493952\/Tzrz3iue_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466860540170493952\/Tzrz3iue_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184004752\/1435626158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16438,"favorite_count":1502,"entities":{"hashtags":[{"text":"\u304a\u3084\u3059\u307f\u671d\u30de\u30c3\u30af","indices":[2,11]}],"urls":[{"url":"https:\/\/t.co\/tRZFYGnGj1","expanded_url":"http:\/\/w.mdj.jp\/aaavw","display_url":"w.mdj.jp\/aaavw","indices":[15,38]}],"user_mentions":[{"screen_name":"Love_McD","name":"\u30de\u30af\u30c9\u30ca\u30eb\u30c9","id":184004752,"id_str":"184004752","indices":[39,48]}],"symbols":[],"media":[{"id":662180311363485696,"id_str":"662180311363485696","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","url":"https:\/\/t.co\/z3YtML7QWR","display_url":"pic.twitter.com\/z3YtML7QWR","expanded_url":"http:\/\/twitter.com\/Love_McD\/status\/663672434831159297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662180311363485696,"id_str":"662180311363485696","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","url":"https:\/\/t.co\/z3YtML7QWR","display_url":"pic.twitter.com\/z3YtML7QWR","expanded_url":"http:\/\/twitter.com\/Love_McD\/status\/663672434831159297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u3084\u3059\u307f\u671d\u30de\u30c3\u30af","indices":[16,25]}],"urls":[{"url":"https:\/\/t.co\/tRZFYGnGj1","expanded_url":"http:\/\/w.mdj.jp\/aaavw","display_url":"w.mdj.jp\/aaavw","indices":[29,52]}],"user_mentions":[{"screen_name":"Love_McD","name":"\u30de\u30af\u30c9\u30ca\u30eb\u30c9","id":184004752,"id_str":"184004752","indices":[3,12]},{"screen_name":"Love_McD","name":"\u30de\u30af\u30c9\u30ca\u30eb\u30c9","id":184004752,"id_str":"184004752","indices":[53,62]}],"symbols":[],"media":[{"id":662180311363485696,"id_str":"662180311363485696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","url":"https:\/\/t.co\/z3YtML7QWR","display_url":"pic.twitter.com\/z3YtML7QWR","expanded_url":"http:\/\/twitter.com\/Love_McD\/status\/663672434831159297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663672434831159297,"source_status_id_str":"663672434831159297","source_user_id":184004752,"source_user_id_str":"184004752"}]},"extended_entities":{"media":[{"id":662180311363485696,"id_str":"662180311363485696","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTCJfBwUAAAaiy9.jpg","url":"https:\/\/t.co\/z3YtML7QWR","display_url":"pic.twitter.com\/z3YtML7QWR","expanded_url":"http:\/\/twitter.com\/Love_McD\/status\/663672434831159297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":800,"h":450,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663672434831159297,"source_status_id_str":"663672434831159297","source_user_id":184004752,"source_user_id_str":"184004752"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066664"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365712384,"id_str":"663728022365712384","text":"@_8nx \u304a\u3084\u3059\u307f\u30fc\uff89\uff7c","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727735550840832,"in_reply_to_status_id_str":"663727735550840832","in_reply_to_user_id":108039093,"in_reply_to_user_id_str":"108039093","in_reply_to_screen_name":"_8nx","user":{"id":173032699,"id_str":"173032699","name":"\u30af\u30a6\u306f\u71ed\u53f0\u3068\u4e00\u7dd2\u306b\u5207\u3089\u308c\u308b","screen_name":"eirin1342","location":"\u71ed\u53f0\u5207\u5149\u5fe0\u6cbc","url":"http:\/\/twpf.jp\/eirin1342","description":"\u6210\u4eba\u6e08\u307f\u96d1\u98df\u8150\u5973\u5b50\u3000\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u306b\u3066\u3000\u4eca\u306f\u5200\u5263\u4e71\u821e\u306b\u304a\u71b1\uff08\u307f\u3064\u304f\u308a\/\u3064\u308b\u3044\u3061\/\u71ed\u3078\u3057\uff09\u3000\u30a2\u30a4\u30b3\u30f3\u306f\u3076\u3063\u304d\u3061\u3083\u3093\u304b\u3089\u3044\u305f\u3060\u304d\u307e\u3057\u305f\uff01\uff01","protected":false,"verified":false,"followers_count":979,"friends_count":898,"listed_count":67,"favourites_count":1101,"statuses_count":221199,"created_at":"Sat Jul 31 06:49:10 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/137447048\/ringo.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/137447048\/ringo.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"E86F37","profile_sidebar_fill_color":"F56E95","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462204132850294784\/UsCbxr4G_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462204132850294784\/UsCbxr4G_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173032699\/1390965599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_8nx","name":"\u306f\u306a","id":108039093,"id_str":"108039093","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022357307392,"id_str":"663728022357307392","text":"RT @Ezby: Too true! \ud83d\ude02\ud83d\ude02\ud83d\ude29 http:\/\/t.co\/ipzibtAuOr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3834335232,"id_str":"3834335232","name":"Laurie S. Dantonio","screen_name":"LaurieDantonio","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":121,"friends_count":537,"listed_count":1,"favourites_count":262,"statuses_count":3451,"created_at":"Fri Oct 09 08:22:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652398744105709568\/_t-dXU0R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652398744105709568\/_t-dXU0R_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 09 22:39:09 +0000 2015","id":652614301035954177,"id_str":"652614301035954177","text":"Too true! \ud83d\ude02\ud83d\ude02\ud83d\ude29 http:\/\/t.co\/ipzibtAuOr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":60216313,"id_str":"60216313","name":"Young King \u2655","screen_name":"Ezby","location":"Turn On My Notifications \u261c ","url":"http:\/\/www.instagram.com\/ezby","description":"I'm Squidward, you're Squidward, he's Squidward, WE'RE ALL FUCKING SQUIDWARD!","protected":false,"verified":false,"followers_count":49153,"friends_count":9834,"listed_count":71,"favourites_count":591,"statuses_count":51343,"created_at":"Sun Jul 26 03:00:43 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000150828639\/L8lIx54w.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000150828639\/L8lIx54w.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663481061855358976\/SnlJuVRR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663481061855358976\/SnlJuVRR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/60216313\/1446999549","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":763,"favorite_count":468,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":652614297009295360,"id_str":"652614297009295360","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","url":"http:\/\/t.co\/ipzibtAuOr","display_url":"pic.twitter.com\/ipzibtAuOr","expanded_url":"http:\/\/twitter.com\/Ezby\/status\/652614301035954177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":638,"h":638,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":652614297009295360,"id_str":"652614297009295360","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","url":"http:\/\/t.co\/ipzibtAuOr","display_url":"pic.twitter.com\/ipzibtAuOr","expanded_url":"http:\/\/twitter.com\/Ezby\/status\/652614301035954177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":638,"h":638,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ezby","name":"Young King \u2655","id":60216313,"id_str":"60216313","indices":[3,8]}],"symbols":[],"media":[{"id":652614297009295360,"id_str":"652614297009295360","indices":[24,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","url":"http:\/\/t.co\/ipzibtAuOr","display_url":"pic.twitter.com\/ipzibtAuOr","expanded_url":"http:\/\/twitter.com\/Ezby\/status\/652614301035954177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":638,"h":638,"resize":"fit"}},"source_status_id":652614301035954177,"source_status_id_str":"652614301035954177","source_user_id":60216313,"source_user_id_str":"60216313"}]},"extended_entities":{"media":[{"id":652614297009295360,"id_str":"652614297009295360","indices":[24,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQ6NPtSUkAAWQVn.jpg","url":"http:\/\/t.co\/ipzibtAuOr","display_url":"pic.twitter.com\/ipzibtAuOr","expanded_url":"http:\/\/twitter.com\/Ezby\/status\/652614301035954177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":638,"h":638,"resize":"fit"}},"source_status_id":652614301035954177,"source_status_id_str":"652614301035954177","source_user_id":60216313,"source_user_id_str":"60216313"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066657"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378311682,"id_str":"663728022378311682","text":"Am I wrong to think that young players over the past few years have become more fundamentally sound?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46310899,"id_str":"46310899","name":"Dakota Schmidt","screen_name":"Dakota_Schmidt","location":"Wisconsin","url":"https:\/\/www.youtube.com\/user\/buckscast","description":"Most famous Dakota Schmidt in the world. Best pal is an adorable doggy. Associate Professor Of Basketball. contact: buckscast@gmail.com. DMs open","protected":false,"verified":false,"followers_count":1662,"friends_count":1780,"listed_count":99,"favourites_count":52,"statuses_count":66332,"created_at":"Thu Jun 11 04:08:57 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/17572370\/lambeau.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/17572370\/lambeau.jpg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639760340490678272\/qRs4SLF0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639760340490678272\/qRs4SLF0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46310899\/1446520540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"7dc5c6d3bfb10ccc","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7dc5c6d3bfb10ccc.json","place_type":"admin","name":"Wisconsin","full_name":"Wisconsin, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-92.889433,42.491889],[-92.889433,47.309715],[-86.249550,47.309715],[-86.249550,42.491889]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022395088898,"id_str":"663728022395088898","text":"RT @EgNk24: Flower\u306e\u91cd\u5927\u767a\u8868\u3063\u3066\u4f55\u3084\u308d\uff01\uff01\n\u6c17\u306b\u306a\u308b\uff01\uff01\ud83d\ude22\ud83d\ude22\ud83d\ude22\n\u65b0\u30dc\u30fc\u30ab\u30eb\u8ffd\u52a0\u3068\u304b\u304b\u306a\uff01\uff01\n\u305d\u308c\u306f\u3084\u3081\u3066\u307b\u3057\u3044\uff01\uff01\ud83d\ude22\ud83d\ude22\n\u305d\u308c\u3084\u3063\u305f\u3089\u6b66\u85e4\u3068\u304b\u304d\u3087\u305f\u306b\u623b\u3063\u3066\u304d\u3066\u307b\u3057\u3044\uff01\uff01\n\u307e\u305fstill\u306e\u6642\u307f\u305f\u3044\u306a\u6b4c\u58f0\u805e\u304d\u305f\u3044\n#\u5171\u611f\u3059\u308b\u4eba\uff32\uff34 \n#Flower\u306e\u91cd\u5927\u767a\u8868\u6c17\u306b\u306a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3049423027,"id_str":"3049423027","name":"\u306f\u306a\u2741","screen_name":"3JSBLoveTRIBE","location":"\u4f4e\u6d6e\u4e0a( \u00b4-` )","url":null,"description":"\u3084 \u307e \u3057 \u305f \u304c \u3060 \u3044 \u3059 \u304d\u2364\u20dd\u2661 [\u67cf\uff12]","protected":false,"verified":false,"followers_count":716,"friends_count":677,"listed_count":2,"favourites_count":1325,"statuses_count":232,"created_at":"Sat Feb 28 10:28:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656340967327297536\/ZZzCjwxf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656340967327297536\/ZZzCjwxf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3049423027\/1445171520","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:48:39 +0000 2015","id":663699721739853824,"id_str":"663699721739853824","text":"Flower\u306e\u91cd\u5927\u767a\u8868\u3063\u3066\u4f55\u3084\u308d\uff01\uff01\n\u6c17\u306b\u306a\u308b\uff01\uff01\ud83d\ude22\ud83d\ude22\ud83d\ude22\n\u65b0\u30dc\u30fc\u30ab\u30eb\u8ffd\u52a0\u3068\u304b\u304b\u306a\uff01\uff01\n\u305d\u308c\u306f\u3084\u3081\u3066\u307b\u3057\u3044\uff01\uff01\ud83d\ude22\ud83d\ude22\n\u305d\u308c\u3084\u3063\u305f\u3089\u6b66\u85e4\u3068\u304b\u304d\u3087\u305f\u306b\u623b\u3063\u3066\u304d\u3066\u307b\u3057\u3044\uff01\uff01\n\u307e\u305fstill\u306e\u6642\u307f\u305f\u3044\u306a\u6b4c\u58f0\u805e\u304d\u305f\u3044\n#\u5171\u611f\u3059\u308b\u4eba\uff32\uff34 \n#Flower\u306e\u91cd\u5927\u767a\u8868\u6c17\u306b\u306a\u308b\u4eba \n#\u62e1\u6563\u5e0c\u671b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2959355472,"id_str":"2959355472","name":"\u30b3\u30a6\u30b9\u30b1LDH","screen_name":"EgNk24","location":"LDH","url":null,"description":"KGN1-2 \/\uff11\uff16\u6b73\/LDH\/EXILE\/\u4e09\u4ee3\u76ee\/\/E-girls 1\u756a\uff01\uff01\u9df2\u5c3e\u3001\u306e\u306e\u308a\u304d\u3001Ami\u304c\u7279\u306b\u597d\u304d\u2757AW9\u670813\u65e5\u53c2\u6226\u6e08 \uff11\uff12\u6708\u53c2\u6226\u4e88\u5b9a \u30c9\u30ea\u30d111\u67087\u65e5\u53c2\u6226\u6e08 \u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u4eba\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3002\u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\uff01\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u5927\u5207\u3067\u3059\u2757\u6ca2\u5c71\u306eLDH\u30d5\u30a1\u30f3\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":962,"friends_count":1245,"listed_count":4,"favourites_count":1064,"statuses_count":2170,"created_at":"Mon Jan 05 08:41:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643703819407360\/5A1CC9Ip_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643703819407360\/5A1CC9Ip_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959355472\/1447059963","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":39,"entities":{"hashtags":[{"text":"\u5171\u611f\u3059\u308b\u4eba\uff32\uff34","indices":[102,110]},{"text":"Flower\u306e\u91cd\u5927\u767a\u8868\u6c17\u306b\u306a\u308b\u4eba","indices":[112,129]},{"text":"\u62e1\u6563\u5e0c\u671b","indices":[131,136]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5171\u611f\u3059\u308b\u4eba\uff32\uff34","indices":[114,122]},{"text":"Flower\u306e\u91cd\u5927\u767a\u8868\u6c17\u306b\u306a\u308b\u4eba","indices":[124,140]},{"text":"\u62e1\u6563\u5e0c\u671b","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"EgNk24","name":"\u30b3\u30a6\u30b9\u30b1LDH","id":2959355472,"id_str":"2959355472","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066666"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022395224064,"id_str":"663728022395224064","text":"RT @mojokilington: \u0421\u0442\u0430\u0440 \u0441\u0438 \u043a\u043e\u0433\u0430 \u0432\u043e \u043d\u0435\u0434\u0435\u043b\u0430 \u0442\u0438 \u0441\u0438 \u043a\u043e\u043c\u0448\u0438\u0458\u0430\u0442\u0430 \u0441\u043e \u0431\u043e\u0440\u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576983741,"id_str":"576983741","name":"\u0411\u043e\u0436\u0430\u043d\u0430","screen_name":"catfromtheblok","location":"Macedonija","url":null,"description":"\u201cWhat greater gift than the love of a cat.\u201d \n\u2015 Charles Dickens","protected":false,"verified":false,"followers_count":188,"friends_count":452,"listed_count":0,"favourites_count":1438,"statuses_count":749,"created_at":"Fri May 11 09:13:45 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662003460926230529\/kdBILDMp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662003460926230529\/kdBILDMp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576983741\/1446668993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:16:08 +0000 2015","id":663344251565133824,"id_str":"663344251565133824","text":"\u0421\u0442\u0430\u0440 \u0441\u0438 \u043a\u043e\u0433\u0430 \u0432\u043e \u043d\u0435\u0434\u0435\u043b\u0430 \u0442\u0438 \u0441\u0438 \u043a\u043e\u043c\u0448\u0438\u0458\u0430\u0442\u0430 \u0441\u043e \u0431\u043e\u0440\u043c\u0430\u0448\u0438\u043d\u0430\u0442\u0430.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1300919257,"id_str":"1300919257","name":"\u041c\u0440 \u041c\u043e\u045f\u043e \u041a\u0438\u043b\u0438\u043d\u0433\u0442\u043e\u043d","screen_name":"mojokilington","location":null,"url":null,"description":"I am the son and the heir of a shyness that is criminally vulgar.","protected":false,"verified":false,"followers_count":11080,"friends_count":2747,"listed_count":50,"favourites_count":31321,"statuses_count":19506,"created_at":"Mon Mar 25 20:01:46 +0000 2013","utc_offset":3600,"time_zone":"Skopje","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"59BEE4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000040708903\/8ae70fda6dfc0807ec3f3b42e200fa74.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000040708903\/8ae70fda6dfc0807ec3f3b42e200fa74.jpeg","profile_background_tile":true,"profile_link_color":"8FCAE0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"191F22","profile_text_color":"4BB7DF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645138350479962113\/RI-vI3FO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645138350479962113\/RI-vI3FO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1300919257\/1407776158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":48,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bg"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mojokilington","name":"\u041c\u0440 \u041c\u043e\u045f\u043e \u041a\u0438\u043b\u0438\u043d\u0433\u0442\u043e\u043d","id":1300919257,"id_str":"1300919257","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bg","timestamp_ms":"1447080066666"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378254336,"id_str":"663728022378254336","text":"\u3042\u30fc\u6642\u8a08\u6b32\u3057\u30444\u4e07\u4f4d\u306e\u3044\u3044\u30c7\u30b6\u30a4\u30f3\u306e\u6b32\u3057\u3044\u30c4\u30dc\u306a\u306e\u304c\u6b32\u3057\u3044\u231a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987053819,"id_str":"2987053819","name":"\u306f\u3042","screen_name":"Cat_03_nyan","location":"\u6625\u304b\u3089TDHS","url":null,"description":"LJK-\u6b6f\u79d1\u52a9\u624b-\u3061\u3041\u3093-","protected":false,"verified":false,"followers_count":322,"friends_count":299,"listed_count":0,"favourites_count":7477,"statuses_count":3597,"created_at":"Sat Jan 17 13:05:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656871685153394688\/yoQxpnel_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656871685153394688\/yoQxpnel_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987053819\/1446993136","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022357315585,"id_str":"663728022357315585","text":"RT @SieDaffan: Lagi mentok dari kerjaan? Mending nonton #miniBreakVideo dulu deh. Asli gokil ini orang https:\/\/t.co\/XKsjWbleAt","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288772272,"id_str":"3288772272","name":"muhammad charlie","screen_name":"alghazaliarrah2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":87,"listed_count":0,"favourites_count":1,"statuses_count":443,"created_at":"Thu Jul 23 13:03:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632743314689691648\/bBd8KIT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632743314689691648\/bBd8KIT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3288772272\/1437750832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:29:35 +0000 2015","id":663710024414302208,"id_str":"663710024414302208","text":"Lagi mentok dari kerjaan? Mending nonton #miniBreakVideo dulu deh. Asli gokil ini orang https:\/\/t.co\/XKsjWbleAt","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1518652753,"id_str":"1518652753","name":"ig : daffanputro","screen_name":"SieDaffan","location":"Surakarta, Central Java","url":"http:\/\/twitter.com\/SieDaffan","description":"Jangan jadi stalker doang, DiFollow dong | Akulah Pengagum Rahasiamu :* | #OriableTools | Marketing | Professional Buzzer | Businness | Info\/CP 08973447217","protected":false,"verified":false,"followers_count":168735,"friends_count":970,"listed_count":96371,"favourites_count":301,"statuses_count":125122,"created_at":"Sat Jun 15 06:50:26 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610637659984146434\/ILv9m4kC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610637659984146434\/ILv9m4kC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1518652753\/1433295457","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":48,"favorite_count":10,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[41,56]}],"urls":[{"url":"https:\/\/t.co\/XKsjWbleAt","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[56,71]}],"urls":[{"url":"https:\/\/t.co\/XKsjWbleAt","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[103,126]}],"user_mentions":[{"screen_name":"SieDaffan","name":"ig : daffanputro","id":1518652753,"id_str":"1518652753","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080066657"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382505984,"id_str":"663728022382505984","text":"\u516c\u5bb3\u3068\u6226\u3046\u6c7a\u610f","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3160542907,"id_str":"3160542907","name":"\u6d41\u661f","screen_name":"rxstarx","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":17,"listed_count":0,"favourites_count":0,"statuses_count":2472,"created_at":"Fri Apr 17 04:34:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588924379339169793\/gqNysY_a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588924379339169793\/gqNysY_a_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374080512,"id_str":"663728022374080512","text":"\uc624 \ud53c\ud53c\ud2f0 \uc644\uc131... \uc0c9\uc870\ud569 \ub108\ubb34 \ud558\ub098\ub85c \ud558\uace0 \ud53d\ud1a0\uadf8\ub7a8\uc5d0 \ub3c4\ud615 \ubc94\ubc85 \uc774\uc9c0\ub9cc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1335513432,"id_str":"1335513432","name":"\u314e \u3156 \u3148 \u314f","screen_name":"Hzaaaaa_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":137,"friends_count":123,"listed_count":0,"favourites_count":604,"statuses_count":505,"created_at":"Mon Apr 08 02:03:07 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663662466560225280\/5UYi_9V5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663662466560225280\/5UYi_9V5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1335513432\/1446296277","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382493696,"id_str":"663728022382493696","text":"@awfvlly [ small amount of members that are active!! That would be heaven ]","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727548229025792,"in_reply_to_status_id_str":"663727548229025792","in_reply_to_user_id":3308767363,"in_reply_to_user_id_str":"3308767363","in_reply_to_screen_name":"awfvlly","user":{"id":4123829713,"id_str":"4123829713","name":"mia","screen_name":"fantcmee","location":null,"url":null,"description":"a sub that swings both ways; college-girl!au","protected":false,"verified":false,"followers_count":9,"friends_count":18,"listed_count":0,"favourites_count":0,"statuses_count":43,"created_at":"Wed Nov 04 12:17:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663388868922609664\/6ub2SwU__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663388868922609664\/6ub2SwU__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4123829713\/1446957731","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"awfvlly","name":"andrew","id":3308767363,"id_str":"3308767363","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022382448640,"id_str":"663728022382448640","text":"\u795e\u306e\u5b50\u304c\u5b89\u5b9a\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u3057\u3066\u308b\u3051\u3069\u9375\u306e\u305b\u3044\u3067RT\u6652\u3057\u304c\u51fa\u6765\u306a\u304f\u3066\u6094\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473718940,"id_str":"2473718940","name":"\u307e\u304d\u306e\u3059\u3051@\u4ed6\u7a2e\u65cf\u9593\u4ea4\u6d41PT","screen_name":"azmk77","location":"\u713c\u304d\u7269\u3068\u68a8\u306e\u7530\u820e","url":null,"description":"\u771f\u59eb\u63a8\u3057\u30e9\u30a4\u30d0\u30fc \u30d5\u30a9\u30ed\u30d0\u306f\u57fa\u672c\u77e5\u308a\u5408\u3044\u3001\u4f1a\u3046\u4e88\u5b9a\u306e\u65b9\u306e\u307f RT\u9b54\uff65\u80c3\u75db\u5b9f\u6cc1\u6c11","protected":false,"verified":false,"followers_count":116,"friends_count":212,"listed_count":15,"favourites_count":132,"statuses_count":17130,"created_at":"Fri May 02 09:16:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649436662217314305\/d6r2Z1JB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649436662217314305\/d6r2Z1JB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473718940\/1442815460","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066663"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378311680,"id_str":"663728022378311680","text":"@jinoppa_0412 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727536908595200,"in_reply_to_status_id_str":"663727536908595200","in_reply_to_user_id":3266896640,"in_reply_to_user_id_str":"3266896640","in_reply_to_screen_name":"jinoppa_0412","user":{"id":1490213419,"id_str":"1490213419","name":"\u265a\u0e1e\u0e34\u0e08\u0e38\u0e19\u0e19\u0e19\u0e35\u0e48\u0e19\u0e30.\u2122","screen_name":"xsershoQo_","location":"\u2765EXOKBW_Kai ","url":null,"description":"\u00d7\u0e1e\u0e34\u0e08\u0e38\u0e19\u0e19\u0e35\u0e48\u0e19\u0e30\u2122\u25bc \u2765 \u0e08\u0e38\u0e19\u0e2a\u0e44\u0e15\u0e25\u0e4c ~ \u0e1a\u0e2d\u0e17\u0e0a\u0e2d\u0e1a\u0e1f\u0e31\u0e07\u0e40\u0e1e\u0e25\u0e07 \u0e1a\u0e2d\u0e17\u0e0a\u0e2d\u0e1a\u0e40\u0e1e\u0e49\u0e2d\u0e40\u0e08\u0e49\u0e2d #\u0e44\u0e23\u0e49\u0e2a\u0e15\u0e34line #\u0e23\u0e48\u0e2d\u0e07\u0e2a\u0e4cline #B0X0FAM_ [07\/06\/2013]\u2765[07\/08\/15]","protected":false,"verified":false,"followers_count":305,"friends_count":208,"listed_count":0,"favourites_count":328,"statuses_count":35095,"created_at":"Fri Jun 07 11:39:14 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442132420754558977\/n-agL11u.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442132420754558977\/n-agL11u.png","profile_background_tile":true,"profile_link_color":"D6B222","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661014215864414208\/QQAmbOXr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661014215864414208\/QQAmbOXr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1490213419\/1446815268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jinoppa_0412","name":"\u0e04\u0e34\u0e21\u0e15\u0e4a\u0e2d\u0e01\u0e15\u0e34\u0e4b\u0e19","id":3266896640,"id_str":"3266896640","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022386663425,"id_str":"663728022386663425","text":"RT @0704Kyoka: \u6311\u6226\u3057\u307e\u3059\uff01\n\u6afb\u4e95\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\uff01\ud83d\udc95\nARASHIANS\u306e\u7686\u3055\u3093\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude18\n#\u6afb\u4e95\u7fd4\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\n#\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4086901873,"id_str":"4086901873","name":"RIRI\u3010\u56fa\u5b9a\u30c4\u30a4\u898b\u3066\u304f\u3060\u3055\u3044\u25ce\u3011","screen_name":"621arashibb","location":"\u4e00\u5fdc\u53d7\u9a13\u751f\u306a\u306e\u3067\u6d6e\u4e0a\u5c11\u306a\u3044\u3067\u3059\uff01","url":null,"description":"\u5d50\u57a2((((*\u309c\u25bd\u309c*))))\n(00)01line\n\u30cb\u30ce\u3088\u308a\u306e\u30aa\u30fc\u30eb\u62c5\u00ab\u2661\u00bb\n\u300eARASHIANS\u300f\u3075\u3049\u308d\u307f\u30fc\uff01\n\u5d50\u57a2\u306f\u3058\u3081\u305f\u3070\u304b\u308a\u3067\u3059(\uff1b\u00b4\u0414\uff40)\n\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5e0c\u671b!!!!!","protected":false,"verified":false,"followers_count":361,"friends_count":385,"listed_count":0,"favourites_count":385,"statuses_count":894,"created_at":"Sun Nov 01 04:09:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661402085255020544\/jUlbxD3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661402085255020544\/jUlbxD3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4086901873\/1446525500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 23:24:19 +0000 2015","id":655524770885206016,"id_str":"655524770885206016","text":"\u6311\u6226\u3057\u307e\u3059\uff01\n\u6afb\u4e95\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\uff01\ud83d\udc95\nARASHIANS\u306e\u7686\u3055\u3093\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude18\n#\u6afb\u4e95\u7fd4\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\n#\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\/jCyoCK2qDf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3024012210,"id_str":"3024012210","name":"\u304d\u3087\u304a*\uff9f12\/19\u65e5\u672c\u9b42\u53c2\u6226\uff01*\uff9f","screen_name":"0704Kyoka","location":null,"url":null,"description":"\u6afb\u4e95\u7fd4\u2661\u9ad9\u6a4b\u51dc\u2661\u5e73\u91ce\u7d2b\u8000\u2661\u5ca9\u6a4b\u7384\u6a39\u2661\u30de\u30ea\u30a6\u30b9\u8449 \u306a\u306b\u304d\u3093\u3082\u597d\u304d\u3060\u3057\u3001\u30bb\u30af\u30dc\u3082\u597d\u304d\u3060\u3057\u3001\u30ad\u30f3\u30d7\u30ea\u3082\u597d\u304d\u3067\u3059\uff9f\uff65*:.\uff61..:*\uff65\uff9f.:*\uff65\uff9f\u6c17\u8efd\u306bfollow\u3057\u3066\u4e0b\u3055\u301c\u3044\uff3c\uff08*\u00b4\u2207\uff40*\uff09\uff0f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059(\u00b4\uff65 \uff65`)","protected":false,"verified":false,"followers_count":468,"friends_count":688,"listed_count":1,"favourites_count":437,"statuses_count":1389,"created_at":"Tue Feb 17 14:20:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660434091293052928\/gGAG3A4C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660434091293052928\/gGAG3A4C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3024012210\/1426643237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":626,"favorite_count":70,"entities":{"hashtags":[{"text":"\u6afb\u4e95\u7fd4\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT","indices":[54,71]},{"text":"\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT","indices":[72,89]},{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[90,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655524742296801280,"id_str":"655524742296801280","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"large":{"w":427,"h":256,"resize":"fit"},"medium":{"w":427,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":655524742296801280,"id_str":"655524742296801280","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"large":{"w":427,"h":256,"resize":"fit"},"medium":{"w":427,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}},{"id":655524742384844801,"id_str":"655524742384844801","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR7NUAAEzcRO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR7NUAAEzcRO.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":293,"resize":"fit"},"medium":{"w":220,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":293,"resize":"fit"}}},{"id":655524742842052608,"id_str":"655524742842052608","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR86UcAAymdE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR86UcAAymdE.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":487,"resize":"fit"},"large":{"w":714,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":860,"resize":"fit"}}},{"id":655524742884032512,"id_str":"655524742884032512","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR9EVAAAk80d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR9EVAAAk80d.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6afb\u4e95\u7fd4\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT","indices":[69,86]},{"text":"\u7fd4\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1250RT","indices":[87,104]},{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[105,127]}],"urls":[],"user_mentions":[{"screen_name":"0704Kyoka","name":"\u304d\u3087\u304a*\uff9f12\/19\u65e5\u672c\u9b42\u53c2\u6226\uff01*\uff9f","id":3024012210,"id_str":"3024012210","indices":[3,13]}],"symbols":[],"media":[{"id":655524742296801280,"id_str":"655524742296801280","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"large":{"w":427,"h":256,"resize":"fit"},"medium":{"w":427,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}},"source_status_id":655524770885206016,"source_status_id_str":"655524770885206016","source_user_id":3024012210,"source_user_id_str":"3024012210"}]},"extended_entities":{"media":[{"id":655524742296801280,"id_str":"655524742296801280","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR64UkAA4Jdu.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"large":{"w":427,"h":256,"resize":"fit"},"medium":{"w":427,"h":256,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}},"source_status_id":655524770885206016,"source_status_id_str":"655524770885206016","source_user_id":3024012210,"source_user_id_str":"3024012210"},{"id":655524742384844801,"id_str":"655524742384844801","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR7NUAAEzcRO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR7NUAAEzcRO.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":293,"resize":"fit"},"medium":{"w":220,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":293,"resize":"fit"}},"source_status_id":655524770885206016,"source_status_id_str":"655524770885206016","source_user_id":3024012210,"source_user_id_str":"3024012210"},{"id":655524742842052608,"id_str":"655524742842052608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR86UcAAymdE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR86UcAAymdE.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":487,"resize":"fit"},"large":{"w":714,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":860,"resize":"fit"}},"source_status_id":655524770885206016,"source_status_id_str":"655524770885206016","source_user_id":3024012210,"source_user_id_str":"3024012210"},{"id":655524742884032512,"id_str":"655524742884032512","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRjkR9EVAAAk80d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRjkR9EVAAAk80d.jpg","url":"http:\/\/t.co\/jCyoCK2qDf","display_url":"pic.twitter.com\/jCyoCK2qDf","expanded_url":"http:\/\/twitter.com\/0704Kyoka\/status\/655524770885206016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":655524770885206016,"source_status_id_str":"655524770885206016","source_user_id":3024012210,"source_user_id_str":"3024012210"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066664"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022369886209,"id_str":"663728022369886209","text":"\u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u0649 \u0623\u0633\u0623\u0644\u0643 \u0625\u064a\u0645\u0627\u0646\u0627 \u0627\u0647\u062a\u062f\u064a \u0628\u0647 \u0648\u0646\u0648\u0631\u0627 \u0627\u0642\u062a\u062f\u064a \u0628\u0647 \u0648\u0631\u0632\u0642\u0627 \u062d\u0644\u0627\u0644\u0627 \u0623\u0643\u062a\u0641\u064a \u0628\u0647\nhttps:\/\/t.co\/pG4YB0wjKD","source":"\u003ca href=\"http:\/\/7snah.info\" rel=\"nofollow\"\u003e\u062d\u0633\u0651\u064b\u0646\u0627\u062a\u0651\u064c\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2771575170,"id_str":"2771575170","name":"H.","screen_name":"Hessaaldhik","location":null,"url":null,"description":"\u0623\u0646\u0627 \u0623\u0628\u0646\u0647 \u0644\u0640 \u0631\u062c\u0644 \u0639\u0644\u0645\u0646\u064a \u0644\u0645 \u064a\u0631\u0627\u0642\u0628\u0646\u064a \u064a\u0648\u0645\u0627 \u0628\u0644 \u0639\u0644\u0645\u0646\u064a \u0643\u064a\u0641 \u0623\u0633\u062a\u0634\u0639\u0631 \u0645\u0631\u0627\u0642\u0628\u0647 \u0627\u0644\u0644\u0647 \u0644\u064a \u0648\u062b\u0642\u062a\u0647 \u0645\u0639\u0627 \u2665! * \u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0644\u0639\u0644\u0647\u0627 \u062a\u0634\u0641\u0639 \u0644\u064a *","protected":false,"verified":false,"followers_count":120,"friends_count":93,"listed_count":0,"favourites_count":463,"statuses_count":3295,"created_at":"Tue Aug 26 23:10:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656434425379422212\/aurS-6OK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656434425379422212\/aurS-6OK_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pG4YB0wjKD","expanded_url":"http:\/\/7snah.info","display_url":"7snah.info","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022386704384,"id_str":"663728022386704384","text":"@o323hgs \u5ff5\u9858\u306e\u30cf\u30ea\u30cd\u30ba\u30df\u3061\u3083\u3093\u3084\u306a\u3002\u7b11 \u307e\u3058\u3067\u98fc\u3046\u3068\u306f\u601d\u3063\u3066\u306a\u304b\u3063\u305f\u3051\u3069\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727856652910592,"in_reply_to_status_id_str":"663727856652910592","in_reply_to_user_id":3029222719,"in_reply_to_user_id_str":"3029222719","in_reply_to_screen_name":"o323hgs","user":{"id":3017046487,"id_str":"3017046487","name":"\u305f\u304b\u306e \u307f\u306a\u307f","screen_name":"0726Xxs","location":null,"url":null,"description":"\u6771 \u25b7 \u8fd1\u5927 \u7dcf\u793e \u793e\u30de\u30b9","protected":false,"verified":false,"followers_count":354,"friends_count":386,"listed_count":0,"favourites_count":4100,"statuses_count":629,"created_at":"Thu Feb 12 05:49:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658653483986345985\/PtWKZ1UT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658653483986345985\/PtWKZ1UT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017046487\/1445156190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"o323hgs","name":"\u7d30\u5ddd \u51dc","id":3029222719,"id_str":"3029222719","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066664"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374121473,"id_str":"663728022374121473","text":"RT @SRKUniverseBAN: Dilwale Team On The Stage\n#DilwaleTrailerDay https:\/\/t.co\/oEHwdoI9f0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359526972,"id_str":"2359526972","name":"Awantika Subedi","screen_name":"AvntkaaSubedi","location":"kathmandu","url":null,"description":"Nepali |\nVaruniac \u2661","protected":false,"verified":false,"followers_count":190,"friends_count":42,"listed_count":6,"favourites_count":6450,"statuses_count":6840,"created_at":"Mon Feb 24 13:46:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658521092416389120\/Z5yB4iJ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658521092416389120\/Z5yB4iJ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359526972\/1441352391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:25 +0000 2015","id":663723067005251584,"id_str":"663723067005251584","text":"Dilwale Team On The Stage\n#DilwaleTrailerDay https:\/\/t.co\/oEHwdoI9f0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2891068202,"id_str":"2891068202","name":"SRK Universe BD","screen_name":"SRKUniverseBAN","location":"Bangladesh","url":null,"description":"This is the Bangladesh branch of SRK Universe.This, as the name suggests, is the universe of SRK fans in Bangladesh.","protected":false,"verified":false,"followers_count":2766,"friends_count":96,"listed_count":16,"favourites_count":817,"statuses_count":19582,"created_at":"Wed Nov 05 18:35:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661251161849094144\/ZxYSnEfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661251161849094144\/ZxYSnEfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891068202\/1426525016","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":16,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[26,44]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722932225470464,"id_str":"663722932225470464","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","url":"https:\/\/t.co\/oEHwdoI9f0","display_url":"pic.twitter.com\/oEHwdoI9f0","expanded_url":"http:\/\/twitter.com\/SRKUniverseBAN\/status\/663723067005251584\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722932225470464,"id_str":"663722932225470464","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","url":"https:\/\/t.co\/oEHwdoI9f0","display_url":"pic.twitter.com\/oEHwdoI9f0","expanded_url":"http:\/\/twitter.com\/SRKUniverseBAN\/status\/663723067005251584\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":19950,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/240x240\/JujcwZKKhstvWzci.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/pl\/dKaJsbmzhZwkJX2x.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/480x480\/O1J_fo4WXCXKJf0Z.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/480x480\/O1J_fo4WXCXKJf0Z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/pl\/dKaJsbmzhZwkJX2x.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[46,64]}],"urls":[],"user_mentions":[{"screen_name":"SRKUniverseBAN","name":"SRK Universe BD","id":2891068202,"id_str":"2891068202","indices":[3,18]}],"symbols":[],"media":[{"id":663722932225470464,"id_str":"663722932225470464","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","url":"https:\/\/t.co\/oEHwdoI9f0","display_url":"pic.twitter.com\/oEHwdoI9f0","expanded_url":"http:\/\/twitter.com\/SRKUniverseBAN\/status\/663723067005251584\/video\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663723067005251584,"source_status_id_str":"663723067005251584","source_user_id":2891068202,"source_user_id_str":"2891068202"}]},"extended_entities":{"media":[{"id":663722932225470464,"id_str":"663722932225470464","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663722932225470464\/pu\/img\/EhVOTwSmINxeqCgj.jpg","url":"https:\/\/t.co\/oEHwdoI9f0","display_url":"pic.twitter.com\/oEHwdoI9f0","expanded_url":"http:\/\/twitter.com\/SRKUniverseBAN\/status\/663723067005251584\/video\/1","type":"video","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663723067005251584,"source_status_id_str":"663723067005251584","source_user_id":2891068202,"source_user_id_str":"2891068202","video_info":{"aspect_ratio":[1,1],"duration_millis":19950,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/240x240\/JujcwZKKhstvWzci.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/pl\/dKaJsbmzhZwkJX2x.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/480x480\/O1J_fo4WXCXKJf0Z.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/vid\/480x480\/O1J_fo4WXCXKJf0Z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663722932225470464\/pu\/pl\/dKaJsbmzhZwkJX2x.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022395088896,"id_str":"663728022395088896","text":"Find more work by George Desort-Creator of Counting Wolves-on vimeo here: https:\/\/t.co\/7BGRqSkG8X","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2520446759,"id_str":"2520446759","name":"Charlotte Eve Edmins","screen_name":"charlo_eve","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":87,"listed_count":11,"favourites_count":56,"statuses_count":86,"created_at":"Thu May 01 04:20:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645261679970770944\/b48mnhVA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645261679970770944\/b48mnhVA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2520446759\/1444842435","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7BGRqSkG8X","expanded_url":"https:\/\/vimeo.com\/user1556409","display_url":"vimeo.com\/user1556409","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066666"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022390894593,"id_str":"663728022390894593","text":"CHRIS ATTOH PRAISES HIS WIFE - [caption id=\"attachment_1649\"... https:\/\/t.co\/t4YsQ9nxwp","source":"\u003ca href=\"http:\/\/winthecustomer.com\/\" rel=\"nofollow\"\u003eWin the Customer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3567845535,"id_str":"3567845535","name":"Nkonkonsa","screen_name":"Nkonkonsa","location":null,"url":"http:\/\/Nkonkonsa.com","description":"NKONKONSA means GOSSIP! This is the first pour Celebrity GOSSIP, NEWS, VIDEOS and PAPARAZZI PHOTOS website in Africa from Ghana...NKONKONSA.com.","protected":false,"verified":false,"followers_count":401,"friends_count":408,"listed_count":5,"favourites_count":1,"statuses_count":7946,"created_at":"Sun Sep 06 16:28:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640562841620234240\/nL9DHvyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640562841620234240\/nL9DHvyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3567845535\/1441557300","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t4YsQ9nxwp","expanded_url":"http:\/\/nkonkonsa.com\/2015\/11\/06\/chris-attoh-praises-his-wife\/","display_url":"nkonkonsa.com\/2015\/11\/06\/chr\u2026","indices":[64,87]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066665"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374121472,"id_str":"663728022374121472","text":"Checkers, CRVA host free skating at Bojangles' Coliseum - Charlotte Observer https:\/\/t.co\/1mGqnCvmHE","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1036591974,"id_str":"1036591974","name":"Skating Tweet","screen_name":"SkatingTweet","location":"Newcastle","url":null,"description":"Your source for the latest news on Skating","protected":false,"verified":false,"followers_count":363,"friends_count":660,"listed_count":5,"favourites_count":0,"statuses_count":7811,"created_at":"Wed Dec 26 08:00:27 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/818520043\/eb61cd9b43db95c1437f9111f882e8cd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/818520043\/eb61cd9b43db95c1437f9111f882e8cd.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3400058065\/5a90a8de46b384a1ad631e5c101f6277_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3400058065\/5a90a8de46b384a1ad631e5c101f6277_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1mGqnCvmHE","expanded_url":"http:\/\/dlvr.it\/Chffvt","display_url":"dlvr.it\/Chffvt","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365736960,"id_str":"663728022365736960","text":"@lovemainero978 \u3044\u3044\u306d\u3066\u304b\u304a\u3063\u3071\u3044\u3060\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724991872040961,"in_reply_to_status_id_str":"663724991872040961","in_reply_to_user_id":3448092133,"in_reply_to_user_id_str":"3448092133","in_reply_to_screen_name":"lovemainero978","user":{"id":1609428840,"id_str":"1609428840","name":"\u30a2\u30e9\u30b8\u30f3","screen_name":"2013dogma","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":33,"listed_count":0,"favourites_count":10,"statuses_count":63,"created_at":"Sun Jul 21 01:43:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659697877292204033\/Di3Qchoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659697877292204033\/Di3Qchoe_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovemainero978","name":"\u307e\u3044\u3081\u308d","id":3448092133,"id_str":"3448092133","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378315777,"id_str":"663728022378315777","text":"Haiiiiiiii @yasyaslina \ud83d\ude48\ud83d\ude48\ud83d\ude48\ud83d\ude48","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245319523,"id_str":"3245319523","name":"al\u00edssa","screen_name":"alissarshd","location":null,"url":null,"description":"Ashton is b\u00e6.","protected":false,"verified":false,"followers_count":150,"friends_count":171,"listed_count":1,"favourites_count":2553,"statuses_count":10839,"created_at":"Sun Jun 14 15:38:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663152216836968448\/SRX6vLoi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663152216836968448\/SRX6vLoi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245319523\/1447001927","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yasyaslina","name":"yaslina","id":120039811,"id_str":"120039811","indices":[11,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365872128,"id_str":"663728022365872128","text":"RT @Yesmina_T: Anyway. I'm coming to terms with the fact that the number of people who preach honesty and those who actually practise it ar\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154685441,"id_str":"154685441","name":"Yemi Web Master","screen_name":"ScarTissue101","location":"La Ciudad De Las Gidi","url":"http:\/\/www.sciocarre.com","description":"Still waiting for my lawyer.","protected":false,"verified":false,"followers_count":670,"friends_count":492,"listed_count":11,"favourites_count":192,"statuses_count":66145,"created_at":"Fri Jun 11 23:06:17 +0000 2010","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621040438707945472\/EXTnv4Cf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621040438707945472\/EXTnv4Cf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154685441\/1421361808","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:47:42 +0000 2015","id":663699483478372352,"id_str":"663699483478372352","text":"Anyway. I'm coming to terms with the fact that the number of people who preach honesty and those who actually practise it are worlds apart","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38707129,"id_str":"38707129","name":"Sub-Zero","screen_name":"Yesmina_T","location":null,"url":null,"description":"Happy","protected":false,"verified":false,"followers_count":697,"friends_count":265,"listed_count":4,"favourites_count":230,"statuses_count":25344,"created_at":"Fri May 08 17:35:50 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/192361227\/IMG_0132.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/192361227\/IMG_0132.JPG","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631771307223482368\/VW_2JD60_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631771307223482368\/VW_2JD60_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38707129\/1419863762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Yesmina_T","name":"Sub-Zero","id":38707129,"id_str":"38707129","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374227968,"id_str":"663728022374227968","text":"@NewsParodyPk :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727781730197504,"in_reply_to_status_id_str":"663727781730197504","in_reply_to_user_id":2988042300,"in_reply_to_user_id_str":"2988042300","in_reply_to_screen_name":"NewsParodyPk","user":{"id":2815059626,"id_str":"2815059626","name":"Erum","screen_name":"erumtair1","location":"Sab k Dil main ","url":null,"description":"I am who I am. I like what I like. I love who I love. I do what I want It's my life, not yours. II love Poetry ll Music .","protected":false,"verified":false,"followers_count":9012,"friends_count":252,"listed_count":13,"favourites_count":38187,"statuses_count":26148,"created_at":"Wed Sep 17 14:47:10 +0000 2014","utc_offset":14400,"time_zone":"Baku","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703287888236544\/fArs_Dm__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703287888236544\/fArs_Dm__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2815059626\/1447038371","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NewsParodyPk","name":"Broken News","id":2988042300,"id_str":"2988042300","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378299392,"id_str":"663728022378299392","text":"RT @yappa_teamb: \u8896\u3053\u3046\u3084\u308b\u7cfb\u5973\u5b50\u3068\u3044\u3046\u304b\u8896\u3053\u3046\u3084\u308b\u3086\u304d\u308a\u3093\u304b\u308f\u3044\u3059\u304e\u308b\ud83d\ude33 https:\/\/t.co\/hFQcTt7vdS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2602682792,"id_str":"2602682792","name":"\u304b\u3057\uff1f","screen_name":"kobekasiyuki","location":null,"url":null,"description":"\u3086\u304d\u308a\u3093\u8d85\u795e\u5358\u63a8\u3057\u3067\u3059\u266a\n\u30c1\u30fc\u30e0\uff39\uff5e\u7d46\uff5e","protected":false,"verified":false,"followers_count":200,"friends_count":183,"listed_count":2,"favourites_count":2541,"statuses_count":7584,"created_at":"Fri Jul 04 03:15:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645909240553472001\/sEkpfvef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645909240553472001\/sEkpfvef_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:46:32 +0000 2015","id":663699188652228608,"id_str":"663699188652228608","text":"\u8896\u3053\u3046\u3084\u308b\u7cfb\u5973\u5b50\u3068\u3044\u3046\u304b\u8896\u3053\u3046\u3084\u308b\u3086\u304d\u308a\u3093\u304b\u308f\u3044\u3059\u304e\u308b\ud83d\ude33 https:\/\/t.co\/hFQcTt7vdS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":713538793,"id_str":"713538793","name":"\u30c1\u30fc\u30e0B\u63a8\u3057","screen_name":"yappa_teamb","location":null,"url":"http:\/\/akb48teambfan.blog.fc2.com\/","description":"AKB48\u306e\u30d5\u30a1\u30f3\u3068\u3044\u3046\u304b\u3001\u30c1\u30fc\u30e0B\u63a8\u3057\u3068\u3044\u3046\u304b\u3001\u3086\u304d\u308a\u3093\u63a8\u3057\u3002\u307e\u3086\u3086\u304d\u308a\u3093\u304c\u597d\u304d\u266a","protected":false,"verified":false,"followers_count":2656,"friends_count":70,"listed_count":38,"favourites_count":3023,"statuses_count":50156,"created_at":"Tue Jul 24 02:32:41 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/830845321\/a0d7b20873fc25bbc389812eb0fc68e5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/830845321\/a0d7b20873fc25bbc389812eb0fc68e5.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659688696661176324\/e2bSfepn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659688696661176324\/e2bSfepn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/713538793\/1415597797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663699186945122304,"id_str":"663699186945122304","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","url":"https:\/\/t.co\/hFQcTt7vdS","display_url":"pic.twitter.com\/hFQcTt7vdS","expanded_url":"http:\/\/twitter.com\/yappa_teamb\/status\/663699188652228608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":736,"h":349,"resize":"fit"},"medium":{"w":600,"h":284,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663699186945122304,"id_str":"663699186945122304","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","url":"https:\/\/t.co\/hFQcTt7vdS","display_url":"pic.twitter.com\/hFQcTt7vdS","expanded_url":"http:\/\/twitter.com\/yappa_teamb\/status\/663699188652228608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":736,"h":349,"resize":"fit"},"medium":{"w":600,"h":284,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yappa_teamb","name":"\u30c1\u30fc\u30e0B\u63a8\u3057","id":713538793,"id_str":"713538793","indices":[3,15]}],"symbols":[],"media":[{"id":663699186945122304,"id_str":"663699186945122304","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","url":"https:\/\/t.co\/hFQcTt7vdS","display_url":"pic.twitter.com\/hFQcTt7vdS","expanded_url":"http:\/\/twitter.com\/yappa_teamb\/status\/663699188652228608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":736,"h":349,"resize":"fit"},"medium":{"w":600,"h":284,"resize":"fit"}},"source_status_id":663699188652228608,"source_status_id_str":"663699188652228608","source_user_id":713538793,"source_user_id_str":"713538793"}]},"extended_entities":{"media":[{"id":663699186945122304,"id_str":"663699186945122304","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu5OOUYAA8w1K.jpg","url":"https:\/\/t.co\/hFQcTt7vdS","display_url":"pic.twitter.com\/hFQcTt7vdS","expanded_url":"http:\/\/twitter.com\/yappa_teamb\/status\/663699188652228608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":161,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":736,"h":349,"resize":"fit"},"medium":{"w":600,"h":284,"resize":"fit"}},"source_status_id":663699188652228608,"source_status_id_str":"663699188652228608","source_user_id":713538793,"source_user_id_str":"713538793"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066662"} +{"delete":{"status":{"id":663728014006595584,"id_str":"663728014006595584","user_id":2399941012,"user_id_str":"2399941012"},"timestamp_ms":"1447080066804"}} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378311683,"id_str":"663728022378311683","text":"RT @hannalyze_: Hagikhikang chardawn. Natatangi po 'yan ang natural.\n\n #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2509473264,"id_str":"2509473264","name":"Pat","screen_name":"pat2tqtqtqt","location":null,"url":null,"description":"Certified CDP\u2022LZ|DawnZpost x 1richardgomez1|C-H-A-R-D-A-W-N|CharDawnian Forever| I will always have a weak spot for you\/\/ HUGOT QUEEN","protected":false,"verified":false,"followers_count":555,"friends_count":1010,"listed_count":2,"favourites_count":11512,"statuses_count":10287,"created_at":"Tue May 20 06:26:45 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663333890380066816\/UozcxlLH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663333890380066816\/UozcxlLH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2509473264\/1446074526","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:34 +0000 2015","id":663726124736774144,"id_str":"663726124736774144","text":"Hagikhikang chardawn. Natatangi po 'yan ang natural.\n\n #YoureMyHome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131180236,"id_str":"1131180236","name":"Binibining Luna.\u2744","screen_name":"hannalyze_","location":"Las Pinas","url":null,"description":"Nabuhay ako para magsulat.\nNabuhay ako para umasa sa Second Chance para sa CHARDAWN.\nNabuhay ako para makaramdam ng lungkot at saya.\nNabuhay ako para magtweet.","protected":false,"verified":false,"followers_count":364,"friends_count":270,"listed_count":3,"favourites_count":10472,"statuses_count":19901,"created_at":"Tue Jan 29 14:24:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1C9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551035328132177920\/scxS8lJj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551035328132177920\/scxS8lJj.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314476075106304\/TK-bvGyI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314476075106304\/TK-bvGyI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131180236\/1445513984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[55,67]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoureMyHome","indices":[71,83]}],"urls":[],"user_mentions":[{"screen_name":"hannalyze_","name":"Binibining Luna.\u2744","id":1131180236,"id_str":"1131180236","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080066662"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365671424,"id_str":"663728022365671424","text":"Greedy polar bear breaks into BBC crew's hut, steals all the bacon https:\/\/t.co\/leHFbaf1aU","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559799896,"id_str":"559799896","name":"Jad Monzer","screen_name":"JMonzer","location":"Lebanon","url":null,"description":"Thinking of everything special","protected":false,"verified":false,"followers_count":39,"friends_count":41,"listed_count":10,"favourites_count":0,"statuses_count":371110,"created_at":"Sat Apr 21 19:02:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2154111259\/JadMonzer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2154111259\/JadMonzer_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/leHFbaf1aU","expanded_url":"http:\/\/dlvr.it\/Chfc4L","display_url":"dlvr.it\/Chfc4L","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374084608,"id_str":"663728022374084608","text":"RT @MYKRSONG: \ub09c \uac00\uc2dc\ub97c \ud488\uc740 \ub4ef\n\uc0c1\ucc98\ub97c \ub0b4\uba74\uc11c\ub3c4\n\ub110 \ub04c\uc5b4 \uc548\uc558\uc9c0.\n\u0e21\u0e31\u0e19\u0e40\u0e08\u0e47\u0e1a\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e42\u0e2d\u0e1a\u0e01\u0e2d\u0e14\u0e25\u0e27\u0e14\u0e2b\u0e25\u0e32\u0e21\u0e40\u0e2d\u0e32\u0e44\u0e27\u0e49\n\u0e41\u0e15\u0e48\u0e41\u0e21\u0e49\u0e27\u0e48\u0e32\u0e1c\u0e21\u0e08\u0e30\u0e40\u0e15\u0e47\u0e21\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e1a\u0e32\u0e14\u0e41\u0e1c\u0e25,\n\u0e1c\u0e21\u0e01\u0e47\u0e22\u0e31\u0e07\u0e08\u0e30\u0e14\u0e36\u0e07\u0e04\u0e38\u0e13\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32.\n( stay -\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066988429,"id_str":"3066988429","name":"ilhoonlicimota \u2606\u5f61","screen_name":"ilhoonlic1004","location":null,"url":null,"description":"\u2661 BTOB\/2503 : B2ST\/0306 ~ \u0e2d\u0e34\u0e25\u0e21\u0e34\u0e19\u0e41\u0e08 : \u0e08\u0e38\u0e19\u0e42\u0e22\u0e0b\u0e36\u0e07 \u2022 \u0e40\u0e1b\u0e47\u0e19\u0e02\u0e2d\u0e07\u0e2d\u0e34\u0e25\u0e15\u0e4b\u0e32 \u0e40\u0e08\u0e2d\u0e2d\u0e34\u0e25\u0e15\u0e4b\u0e32\u0e41\u0e25\u0e49\u0e27 071115 \u0e2d\u0e34\u0e25\u0e15\u0e4b\u0e32\u0e21\u0e2d\u0e07\u0e2d\u0e34\u0e25\u0e15\u0e4b\u0e32\u0e40\u0e21\u0e34\u0e19 \u0e40\u0e1e\u0e49\u0e2d\u0e2d\u0e34\u0e25\u0e15\u0e4b\u0e32\u0e02\u0e31\u0e49\u0e19\u0e2a\u0e38\u0e14 || 93line.","protected":false,"verified":false,"followers_count":130,"friends_count":306,"listed_count":2,"favourites_count":1152,"statuses_count":22362,"created_at":"Sat Mar 07 17:27:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663008435349291014\/noy3z8mQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663008435349291014\/noy3z8mQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066988429\/1443749938","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 26 16:17:14 +0000 2014","id":526407215142301697,"id_str":"526407215142301697","text":"\ub09c \uac00\uc2dc\ub97c \ud488\uc740 \ub4ef\n\uc0c1\ucc98\ub97c \ub0b4\uba74\uc11c\ub3c4\n\ub110 \ub04c\uc5b4 \uc548\uc558\uc9c0.\n\u0e21\u0e31\u0e19\u0e40\u0e08\u0e47\u0e1a\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e42\u0e2d\u0e1a\u0e01\u0e2d\u0e14\u0e25\u0e27\u0e14\u0e2b\u0e25\u0e32\u0e21\u0e40\u0e2d\u0e32\u0e44\u0e27\u0e49\n\u0e41\u0e15\u0e48\u0e41\u0e21\u0e49\u0e27\u0e48\u0e32\u0e1c\u0e21\u0e08\u0e30\u0e40\u0e15\u0e47\u0e21\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e1a\u0e32\u0e14\u0e41\u0e1c\u0e25,\n\u0e1c\u0e21\u0e01\u0e47\u0e22\u0e31\u0e07\u0e08\u0e30\u0e14\u0e36\u0e07\u0e04\u0e38\u0e13\u0e40\u0e02\u0e49\u0e32\u0e21\u0e32.\n( stay - beast )\n#\u0e0a\u0e2d\u0e1a","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451509101,"id_str":"451509101","name":"\u266a","screen_name":"MYKRSONG","location":"\u25bc \u0e22\u0e49\u0e2d\u0e19\u0e2d\u0e48\u0e32\u0e19\u0e44\u0e14\u0e49\u0e43\u0e19 fav.","url":"http:\/\/ask.fm\/MYKRSONG","description":"\u0e40 \u0e1e \u0e25 \u0e07 \u0e40 \u0e01 \u0e32 \u0e2b \u0e25\u0e35 \u0e02 \u0e2d \u0e07 \u0e09\u0e31 \u0e19 \u266b","protected":false,"verified":false,"followers_count":73591,"friends_count":62,"listed_count":103,"favourites_count":2936,"statuses_count":9368,"created_at":"Sat Dec 31 15:22:33 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516263949231071232\/z9u1njUr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516263949231071232\/z9u1njUr.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CEA4A6","profile_text_color":"AB8288","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515160906070646784\/87u1XEkB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515160906070646784\/87u1XEkB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451509101\/1411921928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1768,"favorite_count":324,"entities":{"hashtags":[{"text":"\u0e0a\u0e2d\u0e1a","indices":[134,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e0a\u0e2d\u0e1a","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"MYKRSONG","name":"\u266a","id":451509101,"id_str":"451509101","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080066661"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022365691904,"id_str":"663728022365691904","text":"\u30bf\u30a4\u713c\u304d\u98df\u3079\u30bf\u30a4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3150242018,"id_str":"3150242018","name":"\u3042\u3064\u3057","screen_name":"4tsuda_M4tsushi","location":"\u3053\u305f\u3064\u3092\u631f\u3093\u3067\u30e2\u30cb\u30bf\u306e\u524d","url":null,"description":"\u30b96 PNID:A4shie play CoDBO3 together","protected":false,"verified":false,"followers_count":35,"friends_count":35,"listed_count":0,"favourites_count":51,"statuses_count":867,"created_at":"Sat Apr 11 19:05:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648526567279235072\/2O4NQAdp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648526567279235072\/2O4NQAdp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150242018\/1446740674","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066659"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022369898500,"id_str":"663728022369898500","text":"\u3010\u68ee\u7530\u5f69\u82b1\u3011 \u30b5\u30a4\u30c9\u30dd\u30cb\u30fc\u30c6\u30fc\u30eb\u2665\u2665\u2665 https:\/\/t.co\/sbGMdOyES7 https:\/\/t.co\/WT6Z3y29Dz","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":730025322,"id_str":"730025322","name":"NMB\u3050\u3050\u305f\u3059","screen_name":"nmb_ggts","location":null,"url":null,"description":"NMB48\u30fb\u305d\u306e\u4ed6\u95a2\u4fc2\u8005\u306eGoogle+\u6295\u7a3f\u66f4\u65b0\u60c5\u5831(\u500b\u4eba\u7684\u304b\u3064\u30c6\u30b9\u30c8\u904b\u7528)\u3000AKB\u21d2@akb_ggts\u3000SKE\u21d2@ske_ggts\u3000HKT\u21d2@hkt_ggts","protected":false,"verified":false,"followers_count":414,"friends_count":2,"listed_count":9,"favourites_count":0,"statuses_count":211143,"created_at":"Wed Aug 01 05:12:07 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2831051456\/5f346d7c81404561799a2c439715c808_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2831051456\/5f346d7c81404561799a2c439715c808_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sbGMdOyES7","expanded_url":"http:\/\/dlvr.it\/ChfcY9","display_url":"dlvr.it\/ChfcY9","indices":[20,43]}],"user_mentions":[],"symbols":[],"media":[{"id":663728022126596097,"id_str":"663728022126596097","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHppUEAEQIS_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHppUEAEQIS_.jpg","url":"https:\/\/t.co\/WT6Z3y29Dz","display_url":"pic.twitter.com\/WT6Z3y29Dz","expanded_url":"http:\/\/twitter.com\/nmb_ggts\/status\/663728022369898500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728022126596097,"id_str":"663728022126596097","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHppUEAEQIS_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHppUEAEQIS_.jpg","url":"https:\/\/t.co\/WT6Z3y29Dz","display_url":"pic.twitter.com\/WT6Z3y29Dz","expanded_url":"http:\/\/twitter.com\/nmb_ggts\/status\/663728022369898500\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022370013184,"id_str":"663728022370013184","text":"\u0643\u0644 \u062a\u0641\u0643\u064a\u0631\u064a \u0648\u0627\u0644\u0644\u0647! https:\/\/t.co\/LJYO92TBUL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752593584,"id_str":"752593584","name":"\u0631\u064a\u0645 \u0627\u0644\u0633\u0648\u064a\u0637\u064a","screen_name":"Reemalswaity","location":"\u062d\u0627\u0626\u0644, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":"http:\/\/ask.fm\/RSJ1","description":"\u0627\u0644\u0644\u0647\u0645 \u0627\u062c\u0631\u0646\u064a \u0645\u0646 \u0645\u0648\u062a \u0627\u0644\u063a\u0641\u0644\u0629 \u0648\u0627\u062d\u0633\u0646 \u062e\u0627\u062a\u0645\u062a\u064a \u0648\u0644\u0627 \u062a\u0627\u062e\u0630\u0646\u064a \u0645\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0627\u0644\u0627 \u0648\u0627\u0646\u062a \u0631\u0627\u0636\u064a \u0639\u0646\u064a \ufd3f\u0648\u064e\u0642\u064f\u0644\u0652 \u0631\u064e\u0628\u0650\u0651\u064a \u0627\u0631\u0652\u062d\u064e\u0645\u0652\u0647\u064f\u0645\u064e\u0627 \u0643\u064e\u0645\u064e\u0627 \u0631\u064e\u0628\u064e\u0651\u064a\u064e\u0627\u0646\u0650\u064a \u0635\u064e\u063a\u0650\u064a\u0631\u0627\ufd3e","protected":false,"verified":false,"followers_count":1727,"friends_count":399,"listed_count":0,"favourites_count":1100,"statuses_count":25275,"created_at":"Sun Aug 12 06:24:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659008098993053696\/fn-A1pdC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659008098993053696\/fn-A1pdC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752593584\/1428285236","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728010533732352,"id_str":"663728010533732352","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG-dXAAAvUQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG-dXAAAvUQD.jpg","url":"https:\/\/t.co\/LJYO92TBUL","display_url":"pic.twitter.com\/LJYO92TBUL","expanded_url":"http:\/\/twitter.com\/Reemalswaity\/status\/663728022370013184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":108,"resize":"fit"},"large":{"w":745,"h":135,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":135,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728010533732352,"id_str":"663728010533732352","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG-dXAAAvUQD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG-dXAAAvUQD.jpg","url":"https:\/\/t.co\/LJYO92TBUL","display_url":"pic.twitter.com\/LJYO92TBUL","expanded_url":"http:\/\/twitter.com\/Reemalswaity\/status\/663728022370013184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":108,"resize":"fit"},"large":{"w":745,"h":135,"resize":"fit"},"small":{"w":340,"h":61,"resize":"fit"},"thumb":{"w":150,"h":135,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080066660"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022390894592,"id_str":"663728022390894592","text":"Aw I love how on your birthday snapchat makes your snaps birthday presents https:\/\/t.co\/6oQnmupdfE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1268539716,"id_str":"1268539716","name":"Stefanieee","screen_name":"stefanie_rohde","location":"Litchfield, Minnesota","url":"http:\/\/instagram.com\/stefanie_rohde","description":null,"protected":false,"verified":false,"followers_count":563,"friends_count":198,"listed_count":1,"favourites_count":4625,"statuses_count":9322,"created_at":"Fri Mar 15 02:18:18 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663405996870512641\/aQoZLuDX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663405996870512641\/aQoZLuDX.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663587741028843520\/Axdxj2ji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663587741028843520\/Axdxj2ji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1268539716\/1446961639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728013939449856,"id_str":"663728013939449856","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHLJWIAAq4kQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHLJWIAAq4kQ.jpg","url":"https:\/\/t.co\/6oQnmupdfE","display_url":"pic.twitter.com\/6oQnmupdfE","expanded_url":"http:\/\/twitter.com\/stefanie_rohde\/status\/663728022390894592\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728013939449856,"id_str":"663728013939449856","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHLJWIAAq4kQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHLJWIAAq4kQ.jpg","url":"https:\/\/t.co\/6oQnmupdfE","display_url":"pic.twitter.com\/6oQnmupdfE","expanded_url":"http:\/\/twitter.com\/stefanie_rohde\/status\/663728022390894592\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066665"} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022374125568,"id_str":"663728022374125568","text":"#\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19 \u0e40\u0e23\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e2a\u0e15\u0e23\u0e2d\u0e07\u0e04\u0e48\u0e30 \u0e2a\u0e15\u0e23\u0e2d\u0e07 \u0e2a\u0e15\u0e23\u0e2d\u0e07 https:\/\/t.co\/YieVtoAvg8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3103246854,"id_str":"3103246854","name":"\u0e15\u0e30\u0e19\u0e2d\u0e22\u0e04\u0e19\u0e14\u0e35 ft.\u0e41\u0e21\u0e19","screen_name":"Choi_baby123","location":"\u0e1a\u0e49\u0e32\u0e19\u0e43\u0e2b\u0e21\u0e48, \u0e08.\u0e1b\u0e17\u0e38\u0e21\u0e18\u0e32\u0e19\u0e35","url":null,"description":"BAPisback | 4MINUTE \u2661 taeyeon both `Cherbonita","protected":false,"verified":false,"followers_count":183,"friends_count":1238,"listed_count":1,"favourites_count":4255,"statuses_count":22896,"created_at":"Sun Mar 22 13:20:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662842720205930497\/-bjyN6Cd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662842720205930497\/-bjyN6Cd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3103246854\/1446210656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00caa84930b96b7f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00caa84930b96b7f.json","place_type":"admin","name":"\u0e2d.\u0e2b\u0e19\u0e2d\u0e07\u0e40\u0e2a\u0e37\u0e2d","full_name":"\u0e2d.\u0e2b\u0e19\u0e2d\u0e07\u0e40\u0e2a\u0e37\u0e2d, \u0e08.\u0e1b\u0e17\u0e38\u0e21\u0e18\u0e32\u0e19\u0e35","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.755096,14.044197],[100.755096,14.275978],[100.951979,14.275978],[100.951979,14.044197]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727980431060993,"id_str":"663727980431060993","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJFOUUsAEQAYo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJFOUUsAEQAYo.png","url":"https:\/\/t.co\/YieVtoAvg8","display_url":"pic.twitter.com\/YieVtoAvg8","expanded_url":"http:\/\/twitter.com\/Choi_baby123\/status\/663728022374125568\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727980431060993,"id_str":"663727980431060993","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJFOUUsAEQAYo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJFOUUsAEQAYo.png","url":"https:\/\/t.co\/YieVtoAvg8","display_url":"pic.twitter.com\/YieVtoAvg8","expanded_url":"http:\/\/twitter.com\/Choi_baby123\/status\/663728022374125568\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":500,"h":250,"resize":"fit"}},"video_info":{"aspect_ratio":[2,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJFOUUsAEQAYo.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080066661"} +{"delete":{"status":{"id":661380076173266944,"id_str":"661380076173266944","user_id":859253833,"user_id_str":"859253833"},"timestamp_ms":"1447080067186"}} +{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022378430464,"id_str":"663728022378430464","text":"@minseoqt okay :D https:\/\/t.co\/jum7WpkHPs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726821343498240,"in_reply_to_status_id_str":"663726821343498240","in_reply_to_user_id":1344550489,"in_reply_to_user_id_str":"1344550489","in_reply_to_screen_name":"minseoqt","user":{"id":2197661659,"id_str":"2197661659","name":"\u2605","screen_name":"lycheesi","location":null,"url":null,"description":"\u2661 multifandom ||","protected":false,"verified":false,"followers_count":125,"friends_count":106,"listed_count":1,"favourites_count":5543,"statuses_count":11218,"created_at":"Sat Nov 16 12:32:09 +0000 2013","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663543142986199041\/cJoapDNr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663543142986199041\/cJoapDNr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2197661659\/1415394362","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minseoqt","name":"tami","id":1344550489,"id_str":"1344550489","indices":[0,9]}],"symbols":[],"media":[{"id":663727940425879552,"id_str":"663727940425879552","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC5SWEAAqB_r.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC5SWEAAqB_r.png","url":"https:\/\/t.co\/jum7WpkHPs","display_url":"pic.twitter.com\/jum7WpkHPs","expanded_url":"http:\/\/twitter.com\/lycheesi\/status\/663728022378430464\/photo\/1","type":"photo","sizes":{"medium":{"w":268,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":268,"h":338,"resize":"fit"},"small":{"w":268,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727940425879552,"id_str":"663727940425879552","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC5SWEAAqB_r.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJC5SWEAAqB_r.png","url":"https:\/\/t.co\/jum7WpkHPs","display_url":"pic.twitter.com\/jum7WpkHPs","expanded_url":"http:\/\/twitter.com\/lycheesi\/status\/663728022378430464\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":268,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":268,"h":338,"resize":"fit"},"small":{"w":268,"h":338,"resize":"fit"}},"video_info":{"aspect_ratio":[134,169],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJC5SWEAAqB_r.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080066662"} +{"delete":{"status":{"id":661418357573337088,"id_str":"661418357573337088","user_id":374068076,"user_id_str":"374068076"},"timestamp_ms":"1447080067281"}} +{"delete":{"status":{"id":644848809952960512,"id_str":"644848809952960512","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080067467"}} +{"delete":{"status":{"id":636773000553979904,"id_str":"636773000553979904","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080067497"}} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564354048,"id_str":"663728026564354048","text":"+.\uff9f(*\u00b4\u2200`)\uff9f \u30d5\u30a9\u30ed\u30ef\u30fc\u6570\u3092\u5897\u3084\u3057\u305f\u3044\u65b9\u3002#followall #shout_out #followback #shoutout","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3983911643,"id_str":"3983911643","name":"Nitu Rai","screen_name":"nitusexy","location":"In your eye.","url":null,"description":"Iam sexy, Follow Me.","protected":false,"verified":false,"followers_count":1496,"friends_count":7,"listed_count":129,"favourites_count":0,"statuses_count":53242,"created_at":"Sun Oct 18 02:38:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659590325929930752\/8DztY2VH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659590325929930752\/8DztY2VH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"followall","indices":[26,36]},{"text":"shout_out","indices":[37,47]},{"text":"followback","indices":[48,59]},{"text":"shoutout","indices":[60,69]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067660"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560106497,"id_str":"663728026560106497","text":"\u041d\u0438\u043a\u043e\u043b\u0430\u0439 \u0414\u043e\u043b\u0436\u0430\u043d\u0441\u043a\u0438\u0439 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442\u0441\u044f \u0432 \u041c\u043e\u0441\u043a\u0432\u0443","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1250564174,"id_str":"1250564174","name":"LeyvaDaniels","screen_name":"LeyvaDaniels","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":103,"friends_count":13,"listed_count":34,"favourites_count":0,"statuses_count":209642,"created_at":"Fri Mar 08 02:49:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3616894111\/b6ade070a38bcb5b9ff23f8ce98f0c2c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3616894111\/b6ade070a38bcb5b9ff23f8ce98f0c2c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568519680,"id_str":"663728026568519680","text":"Somehow Essence jeans got in my closet I tried to put them shits on and bought ripped them \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112574054,"id_str":"112574054","name":"modesti andretti \u2708.","screen_name":"Money_NOillumin","location":"336. ","url":null,"description":"appreciate life. uncg. \u264b\ufe0f.","protected":false,"verified":false,"followers_count":1966,"friends_count":1609,"listed_count":8,"favourites_count":1927,"statuses_count":72340,"created_at":"Tue Feb 09 00:27:04 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560789666\/tumblr_m31yyhlZmu1rqqm4so1_500.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560789666\/tumblr_m31yyhlZmu1rqqm4so1_500.png","profile_background_tile":true,"profile_link_color":"E01B1B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"DBA797","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659928360886378496\/VSSM7864_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659928360886378496\/VSSM7864_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112574054\/1443848677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568548352,"id_str":"663728026568548352","text":"https:\/\/t.co\/VIC2EY1OZ2 nanchamalakar #Mockingbird #Eminem","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4056297976,"id_str":"4056297976","name":"Eminem","screen_name":"Eminemthingz","location":null,"url":null,"description":"Just Eminem things, follow & RT.\ncheck out this link! \nhttp:\/\/amzn.to\/1PuaLWC","protected":false,"verified":false,"followers_count":497,"friends_count":1203,"listed_count":73,"favourites_count":0,"statuses_count":31192,"created_at":"Tue Oct 27 21:51:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659126218336399360\/gTsSgnjd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659126218336399360\/gTsSgnjd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4056297976\/1445983107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Mockingbird","indices":[38,50]},{"text":"Eminem","indices":[51,58]}],"urls":[{"url":"https:\/\/t.co\/VIC2EY1OZ2","expanded_url":"http:\/\/amzn.to\/1PuaLWC","display_url":"amzn.to\/1PuaLWC","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568511488,"id_str":"663728026568511488","text":"@vulgonathan \ud83d\udc94","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727701447073792,"in_reply_to_status_id_str":"663727701447073792","in_reply_to_user_id":3369588580,"in_reply_to_user_id_str":"3369588580","in_reply_to_screen_name":"vulgonathan","user":{"id":2236571190,"id_str":"2236571190","name":"\u0cc3\u2740laju 6 meses\/\/4d\u2740\u0cc3","screen_name":"mattostyles","location":"zayummm you gotta bae? or nah?","url":"https:\/\/twitter.com\/pcastagnoli\/status\/611501229722705920","description":"My beautiful girl @TOWERSPAYNE All The Love ? \u2764 \u0cc3*\u275dCamila mommy Lauren daddy \u275e\u0cc3 \n \u0cc3*\u275d Louis mommy Harry daddy \u275e\u0cc3","protected":false,"verified":false,"followers_count":7901,"friends_count":7252,"listed_count":7,"favourites_count":11645,"statuses_count":51393,"created_at":"Sun Dec 08 20:54:12 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655190943109357568\/6dsbP2GE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655190943109357568\/6dsbP2GE.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663350123779514368\/N2YUxYQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663350123779514368\/N2YUxYQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236571190\/1446989967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vulgonathan","name":"potinho","id":3369588580,"id_str":"3369588580","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551779329,"id_str":"663728026551779329","text":"Desde el punto de vista espiritual, los que practican deliberadamente las cosas que #Dios condena tienen al #Diablo como padre suyo 1Jn3:10","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3495200960,"id_str":"3495200960","name":"Tania Nos ","screen_name":"TaniaNose_K0","location":null,"url":null,"description":"Lo que tiene que ser, ser\u00e1... a su tiempo y en su momento; solo hay que confiar y esperar con paciencia.","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1282,"created_at":"Tue Sep 08 17:20:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645258015873069056\/oUgJ6wwJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645258015873069056\/oUgJ6wwJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3495200960\/1442676475","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Dios","indices":[84,89]},{"text":"Diablo","indices":[108,115]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576928776,"id_str":"663728026576928776","text":"RT @GLOuary5th: \"Suck that dick with a smile cause you ain't suck it in a while\" \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 she a G.O.A.T https:\/\/t.co\/GtNbUrZQcG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153531540,"id_str":"153531540","name":"call me muva","screen_name":"MickieeMoscoto","location":"where the wild things are ","url":null,"description":"a niggas dream & bitches nightmare. bookingmickiee@gmail.com #mickieemoscotoforBGC16","protected":false,"verified":false,"followers_count":73396,"friends_count":57550,"listed_count":104,"favourites_count":14622,"statuses_count":80090,"created_at":"Tue Jun 08 20:15:09 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D117D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661496811\/2dhoqhk8wg0n8ci9es3c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661496811\/2dhoqhk8wg0n8ci9es3c.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662993818552303616\/UWsD9o8h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662993818552303616\/UWsD9o8h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153531540\/1434920677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:41 +0000 2015","id":663727666223185921,"id_str":"663727666223185921","text":"\"Suck that dick with a smile cause you ain't suck it in a while\" \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 she a G.O.A.T https:\/\/t.co\/GtNbUrZQcG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1367466710,"id_str":"1367466710","name":"King Kunta","screen_name":"GLOuary5th","location":null,"url":null,"description":"My bestfriend Imaginary Gary and I breaking you hoes heart","protected":false,"verified":false,"followers_count":1087,"friends_count":979,"listed_count":2,"favourites_count":5221,"statuses_count":9182,"created_at":"Sat Apr 20 16:36:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646170301332525056\/VZzieltF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646170301332525056\/VZzieltF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1367466710\/1445972443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662800294397542401,"quoted_status_id_str":"662800294397542401","quoted_status":{"created_at":"Sat Nov 07 01:14:39 +0000 2015","id":662800294397542401,"id_str":"662800294397542401","text":"Just saying \ud83d\ude02 https:\/\/t.co\/eIGRKnHzXX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153531540,"id_str":"153531540","name":"call me muva","screen_name":"MickieeMoscoto","location":"where the wild things are ","url":null,"description":"a niggas dream & bitches nightmare. bookingmickiee@gmail.com #mickieemoscotoforBGC16","protected":false,"verified":false,"followers_count":73396,"friends_count":57550,"listed_count":104,"favourites_count":14622,"statuses_count":80089,"created_at":"Tue Jun 08 20:15:09 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D117D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661496811\/2dhoqhk8wg0n8ci9es3c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661496811\/2dhoqhk8wg0n8ci9es3c.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662993818552303616\/UWsD9o8h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662993818552303616\/UWsD9o8h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153531540\/1434920677","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662799775285161985,"id_str":"662799775285161985","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662799775285161985\/pu\/img\/zzBLO4j2RBYmjQD1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662799775285161985\/pu\/img\/zzBLO4j2RBYmjQD1.jpg","url":"https:\/\/t.co\/eIGRKnHzXX","display_url":"pic.twitter.com\/eIGRKnHzXX","expanded_url":"http:\/\/twitter.com\/MickieeMoscoto\/status\/662800294397542401\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662799775285161985,"id_str":"662799775285161985","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662799775285161985\/pu\/img\/zzBLO4j2RBYmjQD1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662799775285161985\/pu\/img\/zzBLO4j2RBYmjQD1.jpg","url":"https:\/\/t.co\/eIGRKnHzXX","display_url":"pic.twitter.com\/eIGRKnHzXX","expanded_url":"http:\/\/twitter.com\/MickieeMoscoto\/status\/662800294397542401\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":18652,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/pl\/xEN7tFHRYE8ZIh-I.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/vid\/480x480\/aWgPjzyJRHoUEorv.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/pl\/xEN7tFHRYE8ZIh-I.mpd"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/vid\/720x720\/1_j7khJIWJwMGa7c.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/vid\/480x480\/aWgPjzyJRHoUEorv.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662799775285161985\/pu\/vid\/240x240\/NxnxHG4CrLZlLaOB.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GtNbUrZQcG","expanded_url":"https:\/\/twitter.com\/mickieemoscoto\/status\/662800294397542401","display_url":"twitter.com\/mickieemoscoto\u2026","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GtNbUrZQcG","expanded_url":"https:\/\/twitter.com\/mickieemoscoto\/status\/662800294397542401","display_url":"twitter.com\/mickieemoscoto\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"GLOuary5th","name":"King Kunta","id":1367466710,"id_str":"1367466710","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551787520,"id_str":"663728026551787520","text":"RT @guillaumepley: Qui veut se battre les enfants ? @Mokobe113 \ud83d\ude02 https:\/\/t.co\/HJgQFml9Jk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163566932,"id_str":"163566932","name":"Lucifer \u2020","screen_name":"lulu5200","location":"Paris","url":null,"description":"Lucie\u2764\ufe0f\u270c\ufe0f snap: lucie040113 ajoutez ! Je me sens comme abandonn\u00e9, b\u00e9b\u00e9 seras tu me pardonner ? BACHELIERE ASSP 2015","protected":false,"verified":false,"followers_count":188,"friends_count":224,"listed_count":5,"favourites_count":46,"statuses_count":5843,"created_at":"Tue Jul 06 19:02:38 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/706090376\/840b9df50d736c892f310a5f3a89d5bc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/706090376\/840b9df50d736c892f310a5f3a89d5bc.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663312790497714176\/agCr0JQa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663312790497714176\/agCr0JQa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163566932\/1446506403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:56 +0000 2015","id":663725716689784832,"id_str":"663725716689784832","text":"Qui veut se battre les enfants ? @Mokobe113 \ud83d\ude02 https:\/\/t.co\/HJgQFml9Jk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272883603,"id_str":"272883603","name":"guillaume pley","screen_name":"guillaumepley","location":"Paris","url":"http:\/\/www.guillaume.fm","description":"NRJ #guillaumeradio\n20h minuit le dimanche \n22h 1h la semaine ! , On s'amuse bien .Sur M6 NRJ et YOUTUBE !","protected":false,"verified":true,"followers_count":358351,"friends_count":1910,"listed_count":444,"favourites_count":2695,"statuses_count":15009,"created_at":"Sun Mar 27 11:08:25 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441272617467523072\/X85yGipL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441272617467523072\/X85yGipL.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611678026942803968\/PHp_dMK__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611678026942803968\/PHp_dMK__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272883603\/1445632153","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mokobe113","name":"#SONSOFAFRICA","id":60517213,"id_str":"60517213","indices":[33,43]}],"symbols":[],"media":[{"id":663725117806149633,"id_str":"663725117806149633","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","url":"https:\/\/t.co\/HJgQFml9Jk","display_url":"pic.twitter.com\/HJgQFml9Jk","expanded_url":"http:\/\/twitter.com\/guillaumepley\/status\/663725716689784832\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725117806149633,"id_str":"663725117806149633","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","url":"https:\/\/t.co\/HJgQFml9Jk","display_url":"pic.twitter.com\/HJgQFml9Jk","expanded_url":"http:\/\/twitter.com\/guillaumepley\/status\/663725716689784832\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":9673,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/pl\/kqG-gW6Bf39Zu-EP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/640x360\/vYR5xZMWnbOud3pF.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/pl\/kqG-gW6Bf39Zu-EP.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/320x180\/GzkEx1ZU0Gsm4pO3.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/640x360\/vYR5xZMWnbOud3pF.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"guillaumepley","name":"guillaume pley","id":272883603,"id_str":"272883603","indices":[3,17]},{"screen_name":"Mokobe113","name":"#SONSOFAFRICA","id":60517213,"id_str":"60517213","indices":[52,62]}],"symbols":[],"media":[{"id":663725117806149633,"id_str":"663725117806149633","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","url":"https:\/\/t.co\/HJgQFml9Jk","display_url":"pic.twitter.com\/HJgQFml9Jk","expanded_url":"http:\/\/twitter.com\/guillaumepley\/status\/663725716689784832\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663725716689784832,"source_status_id_str":"663725716689784832","source_user_id":272883603,"source_user_id_str":"272883603"}]},"extended_entities":{"media":[{"id":663725117806149633,"id_str":"663725117806149633","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725117806149633\/pu\/img\/5I_kxQZSxW5aogOG.jpg","url":"https:\/\/t.co\/HJgQFml9Jk","display_url":"pic.twitter.com\/HJgQFml9Jk","expanded_url":"http:\/\/twitter.com\/guillaumepley\/status\/663725716689784832\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663725716689784832,"source_status_id_str":"663725716689784832","source_user_id":272883603,"source_user_id_str":"272883603","video_info":{"aspect_ratio":[16,9],"duration_millis":9673,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/pl\/kqG-gW6Bf39Zu-EP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/640x360\/vYR5xZMWnbOud3pF.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/pl\/kqG-gW6Bf39Zu-EP.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/320x180\/GzkEx1ZU0Gsm4pO3.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725117806149633\/pu\/vid\/640x360\/vYR5xZMWnbOud3pF.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551717892,"id_str":"663728026551717892","text":"I saw the new James bond movie last night, it was rossome","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4086657305,"id_str":"4086657305","name":"Brian Rohrer","screen_name":"rohrer_brian","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":7,"listed_count":0,"favourites_count":0,"statuses_count":11,"created_at":"Sun Nov 01 01:58:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661042876114149376\/W9kdS9_u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661042876114149376\/W9kdS9_u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4086657305\/1446345611","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555928576,"id_str":"663728026555928576","text":"RT ThaUntouchablez: I have no special talents. I am only passionately curious. - Albert Einstein #quote","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208677445,"id_str":"208677445","name":"Einstein_BOT","screen_name":"Einstein_BOT","location":"Universe","url":null,"description":"Albert Einstein's quotes quoted. :)","protected":false,"verified":false,"followers_count":2905,"friends_count":0,"listed_count":465,"favourites_count":5,"statuses_count":238379,"created_at":"Wed Oct 27 18:31:07 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1153738445\/AlbertEinstein_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1153738445\/AlbertEinstein_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"quote","indices":[97,103]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555912192,"id_str":"663728026555912192","text":"RT @WayneRoot: Morons, he comes to every city, whether u sign up or not. Ruin your life and sign up. he'll come to your city. WOW.\nhttps:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46136742,"id_str":"46136742","name":"American Patriot","screen_name":"AveGratiaPlena","location":"NRA USA","url":null,"description":"100% Roman Catholic=100%Pro-Life! Rosary,Scapular. Congressional cmp. strategist. U.S.Constitution! Rtw.not alw.endorsed","protected":false,"verified":false,"followers_count":1737,"friends_count":2006,"listed_count":57,"favourites_count":3937,"statuses_count":59250,"created_at":"Wed Jun 10 15:24:42 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000124243195\/66601dd30e45cf3682a29d0b7529b6c9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000124243195\/66601dd30e45cf3682a29d0b7529b6c9_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 16:25:20 +0000 2015","id":663029476268240896,"id_str":"663029476268240896","text":"Morons, he comes to every city, whether u sign up or not. Ruin your life and sign up. he'll come to your city. WOW.\nhttps:\/\/t.co\/rOStSTXJzz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38284349,"id_str":"38284349","name":"Wayne Allyn Root","screen_name":"WayneRoot","location":"Las Vegas, Nevada","url":"http:\/\/www.rootforamerica.com\/","description":"CAPITALIST EVANGELIST, Libertarian Vice Presidential nominee, conservative media dynamo, bestselling author, intl. business speaker, Fox News guest, RAINMAKER.","protected":false,"verified":false,"followers_count":99389,"friends_count":6545,"listed_count":549,"favourites_count":4,"statuses_count":11689,"created_at":"Wed May 06 21:43:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"222222","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/479434380239065089\/4vfwtKrw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/479434380239065089\/4vfwtKrw.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1740034034\/crop1_1242146820_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1740034034\/crop1_1242146820_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38284349\/1360602578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rOStSTXJzz","expanded_url":"http:\/\/www.theblaze.com\/stories\/2015\/11\/07\/obama-announces-obamacare-competition-this-is-reality-this-is-healthcare-in-america\/","display_url":"theblaze.com\/stories\/2015\/1\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rOStSTXJzz","expanded_url":"http:\/\/www.theblaze.com\/stories\/2015\/11\/07\/obama-announces-obamacare-competition-this-is-reality-this-is-healthcare-in-america\/","display_url":"theblaze.com\/stories\/2015\/1\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"WayneRoot","name":"Wayne Allyn Root","id":38284349,"id_str":"38284349","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572713984,"id_str":"663728026572713984","text":"Quiero llegar a casa y ahogarme abajo de la ducha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":787831800,"id_str":"787831800","name":"Nahuel Qui\u00f1ones","screen_name":"NahueeQuinones","location":"Buenos Aires, Argentina","url":null,"description":"Portador , gamer y poco mas","protected":false,"verified":false,"followers_count":125,"friends_count":273,"listed_count":0,"favourites_count":1473,"statuses_count":4579,"created_at":"Tue Aug 28 20:54:29 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663508732622565376\/s2aAjV9n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663508732622565376\/s2aAjV9n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/787831800\/1432780334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551779328,"id_str":"663728026551779328","text":"Banking from the bus: See how #APIs power a productive commute. How do #APIs improve your day? #Rewrite https:\/\/t.co\/SDUoByWXi6","source":"\u003ca href=\"http:\/\/gaggleamp.com\/twit\/\" rel=\"nofollow\"\u003eGaggleAMP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197195199,"id_str":"2197195199","name":"Prediction News !","screen_name":"BetExpo","location":"Nigeria","url":"http:\/\/betexpo.WordPress.com","description":"Verdict ! Judgement, Decision, Finding, Ruling, Resolution, Pronouncement, Settlement, Result, Conclusion, Opinion, Assumption, Presumption, For Wealth Creation","protected":false,"verified":false,"followers_count":16,"friends_count":193,"listed_count":3,"favourites_count":1,"statuses_count":875,"created_at":"Tue Nov 26 18:18:56 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591972005416669184\/Nll4dfZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591972005416669184\/Nll4dfZN_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"APIs","indices":[30,35]},{"text":"APIs","indices":[71,76]},{"text":"Rewrite","indices":[95,103]}],"urls":[{"url":"https:\/\/t.co\/SDUoByWXi6","expanded_url":"http:\/\/go.ca.com\/L7hvpz","display_url":"go.ca.com\/L7hvpz","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560176128,"id_str":"663728026560176128","text":"RT @IndepenRadio: \"Catalu\u00f1a aprueba resoluci\u00f3n para separarse de Espa\u00f1a\" (@ElUniversal, un dels primers diaris de M\u00e8xic) https:\/\/t.co\/yw4s\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111319877,"id_str":"111319877","name":"||*|| Pedro L","screen_name":"pedrolo2","location":"Barcelona","url":null,"description":"||*|| Interested in Technology, Science and Humanity.\r\nInteressat en Tecnologia, Ci\u00e8ncia i Humanitats.\r\nInteresado en Tecnolog\u00eda, Ciencia, Humanidades.","protected":false,"verified":false,"followers_count":684,"friends_count":2014,"listed_count":6,"favourites_count":130,"statuses_count":3082,"created_at":"Thu Feb 04 14:26:18 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/272733995\/02042011460m.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/272733995\/02042011460m.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510459332539199488\/od6A-OH__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510459332539199488\/od6A-OH__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111319877\/1412523048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:46 +0000 2015","id":663723913227214848,"id_str":"663723913227214848","text":"\"Catalu\u00f1a aprueba resoluci\u00f3n para separarse de Espa\u00f1a\" (@ElUniversal, un dels primers diaris de M\u00e8xic) https:\/\/t.co\/yw4setAT33 #27SNews","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":771554077,"id_str":"771554077","name":"Independ\u00e8n&Cia R\u00e0dio","screen_name":"IndepenRadio","location":null,"url":"http:\/\/www.independencia-radio.cat\/radio.html","description":"24 hores al dia sense interrupcions de m\u00fasica i piulades de not\u00edcies del proc\u00e9s en catal\u00e0.","protected":false,"verified":false,"followers_count":4959,"friends_count":2166,"listed_count":109,"favourites_count":365,"statuses_count":114752,"created_at":"Tue Aug 21 13:52:32 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565259268006215680\/nJrHympP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565259268006215680\/nJrHympP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/771554077\/1411464834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"27SNews","indices":[128,136]}],"urls":[{"url":"https:\/\/t.co\/yw4setAT33","expanded_url":"http:\/\/eluni.mx\/1MRWP8R","display_url":"eluni.mx\/1MRWP8R","indices":[104,127]}],"user_mentions":[{"screen_name":"ElUniversal","name":"El Universal","id":6015212,"id_str":"6015212","indices":[56,68]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"27SNews","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/yw4setAT33","expanded_url":"http:\/\/eluni.mx\/1MRWP8R","display_url":"eluni.mx\/1MRWP8R","indices":[122,140]}],"user_mentions":[{"screen_name":"IndepenRadio","name":"Independ\u00e8n&Cia R\u00e0dio","id":771554077,"id_str":"771554077","indices":[3,16]},{"screen_name":"ElUniversal","name":"El Universal","id":6015212,"id_str":"6015212","indices":[74,86]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568499200,"id_str":"663728026568499200","text":"RT @blacka_ryssy229: Moi quand j'accompagne papa au taff https:\/\/t.co\/E920GkWtyV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":972424753,"id_str":"972424753","name":"\u2728MUGIWARA\u2728","screen_name":"unebeninoise","location":"cergy 95","url":null,"description":"IG\\SNAP: morgaan229 || #Floriiiiiiiiiiiiiane #229 #Pvsslibres || 22.10.09","protected":false,"verified":false,"followers_count":797,"friends_count":484,"listed_count":9,"favourites_count":1674,"statuses_count":47443,"created_at":"Mon Nov 26 17:50:50 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555745191005405184\/rDYyZ0rx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555745191005405184\/rDYyZ0rx.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651471091232342016\/N1DdPqAh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651471091232342016\/N1DdPqAh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/972424753\/1445853925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:30:09 +0000 2015","id":663423278074208257,"id_str":"663423278074208257","text":"Moi quand j'accompagne papa au taff https:\/\/t.co\/E920GkWtyV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2743382983,"id_str":"2743382983","name":"Coller la petite","screen_name":"blacka_ryssy229","location":null,"url":null,"description":"#229'zer #OL #TMT #teamnyjets","protected":false,"verified":false,"followers_count":139,"friends_count":122,"listed_count":0,"favourites_count":149,"statuses_count":1060,"created_at":"Mon Aug 18 23:22:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648926400511090688\/Yb3p4EVW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648926400511090688\/Yb3p4EVW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2743382983\/1443550430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":282,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663423271753424896,"id_str":"663423271753424896","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","url":"https:\/\/t.co\/E920GkWtyV","display_url":"pic.twitter.com\/E920GkWtyV","expanded_url":"http:\/\/twitter.com\/blacka_ryssy229\/status\/663423278074208257\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":539,"h":553,"resize":"fit"},"large":{"w":539,"h":553,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663423271753424896,"id_str":"663423271753424896","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","url":"https:\/\/t.co\/E920GkWtyV","display_url":"pic.twitter.com\/E920GkWtyV","expanded_url":"http:\/\/twitter.com\/blacka_ryssy229\/status\/663423278074208257\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":539,"h":553,"resize":"fit"},"large":{"w":539,"h":553,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blacka_ryssy229","name":"Coller la petite","id":2743382983,"id_str":"2743382983","indices":[3,19]}],"symbols":[],"media":[{"id":663423271753424896,"id_str":"663423271753424896","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","url":"https:\/\/t.co\/E920GkWtyV","display_url":"pic.twitter.com\/E920GkWtyV","expanded_url":"http:\/\/twitter.com\/blacka_ryssy229\/status\/663423278074208257\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":539,"h":553,"resize":"fit"},"large":{"w":539,"h":553,"resize":"fit"}},"source_status_id":663423278074208257,"source_status_id_str":"663423278074208257","source_user_id":2743382983,"source_user_id_str":"2743382983"}]},"extended_entities":{"media":[{"id":663423271753424896,"id_str":"663423271753424896","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz82CXIAAabIF.jpg","url":"https:\/\/t.co\/E920GkWtyV","display_url":"pic.twitter.com\/E920GkWtyV","expanded_url":"http:\/\/twitter.com\/blacka_ryssy229\/status\/663423278074208257\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":539,"h":553,"resize":"fit"},"large":{"w":539,"h":553,"resize":"fit"}},"source_status_id":663423278074208257,"source_status_id_str":"663423278074208257","source_user_id":2743382983,"source_user_id_str":"2743382983"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564341760,"id_str":"663728026564341760","text":"\u201cLos nietos nacidos en cautiverio son los nietos de todas\u201d https:\/\/t.co\/HT4ehfGCJH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473027602,"id_str":"2473027602","name":"Compa mabra","screen_name":"tbravjusticiabc","location":null,"url":null,"description":"#JusticiaABC #GaleanoVive #UrgenciaMigrante #Palestina #Holbox #EZLN #TribuYaqui #TPPM\u00e9xico #Ayotzinapa #La72","protected":false,"verified":false,"followers_count":319,"friends_count":592,"listed_count":10,"favourites_count":1447,"statuses_count":11015,"created_at":"Thu May 01 21:05:39 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462013907544993793\/-yLm2Us0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462013907544993793\/-yLm2Us0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473027602\/1438537506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HT4ehfGCJH","expanded_url":"http:\/\/www.infojusnoticias.gov.ar\/nacionales\/los-nietos-nacidos-en-cautiverio-son-los-nietos-de-todas-10456.html","display_url":"infojusnoticias.gov.ar\/nacionales\/los\u2026","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447080067660"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576809984,"id_str":"663728026576809984","text":"\u3075\u3075\u3075\u3001\u3042\u3093\u307e\u308a\u597d\u611f\u3082\u3066\u306a\u304f\u306a\u3063\u305f\u306e\u304b\u306a\u3001\u3075\u3075\u3075(^o^\u2261^o^\u2261^o^\u2261^o^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2887676293,"id_str":"2887676293","name":"\u4e03\u702c\u667a\u6d38@12\/23\u767e\u5200\u58f2\u308a\u5b50","screen_name":"cos_chrn","location":"\u9059\u306e\u96a3","url":"http:\/\/sp.cosp.jp\/prof.aspx?id=279444","description":"20\u2191\u9059\u30ad\u30c1\u30ec\u30a4\u30e4\u30fc\u3002\u4e00\u751f\u4e03\u702c\u9059\u2661\u9059\u304c\u3044\u308c\u3070\u305d\u308c\u3067\u3044\u3044\u2661\u9059\u306e\u7b11\u9854\u3067\u4eca\u65e5\u3082\u5e78\u305b\u26611\u65e51\u9059\u30c4\u30a4\u2661\u4e03\u702c\u9059\u540c\u62c5\u62d2\u5426\u2661not\u8150\u5973\u5b50\u2661\u9059\u30af\u30e9(CP\u542b)\u304b\u3089\u306eF.RP.RT\u975e\u63a8\u5968\u2661\n\n\u30d7\u30ea\u30d1\u30e9:\u8d64\u718a\uff8f\uff88\u30012015.02.16\uff5e","protected":false,"verified":false,"followers_count":118,"friends_count":115,"listed_count":4,"favourites_count":793,"statuses_count":7977,"created_at":"Sun Nov 02 16:42:47 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662254063082278912\/dxz3iJbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662254063082278912\/dxz3iJbv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887676293\/1445610752","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576924672,"id_str":"663728026576924672","text":"RT @wtsconfident: ANJO DA MINHA VIDA #YAASSDemi https:\/\/t.co\/MpYSz7u9Ug","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408392542,"id_str":"408392542","name":"vit\u00f3ria","screen_name":"lionhearwt","location":"adriana ","url":null,"description":"lovatic sim trouxa tambem","protected":false,"verified":false,"followers_count":5542,"friends_count":4797,"listed_count":30,"favourites_count":3287,"statuses_count":45418,"created_at":"Wed Nov 09 11:04:34 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660836561664286720\/eTDP39iB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660836561664286720\/eTDP39iB.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663096028812439552\/EFhL1L3p_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663096028812439552\/EFhL1L3p_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408392542\/1446929442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727851699625984,"id_str":"663727851699625984","text":"ANJO DA MINHA VIDA #YAASSDemi https:\/\/t.co\/MpYSz7u9Ug","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994990472,"id_str":"2994990472","name":"gabri","screen_name":"wtsconfident","location":"\u264a","url":null,"description":"what's wrong with being confident?","protected":false,"verified":false,"followers_count":406,"friends_count":271,"listed_count":0,"favourites_count":3,"statuses_count":4152,"created_at":"Fri Jan 23 22:46:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727008740872192\/bC0lJvEG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727008740872192\/bC0lJvEG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994990472\/1446664249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"c5292d78d38e3af6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c5292d78d38e3af6.json","place_type":"city","name":"Juiz de Fora","full_name":"Juiz de Fora, Minas Gerais","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.698151,-21.999866],[-43.698151,-21.416164],[-43.147387,-21.416164],[-43.147387,-21.999866]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[19,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727850650886144,"id_str":"663727850650886144","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","url":"https:\/\/t.co\/MpYSz7u9Ug","display_url":"pic.twitter.com\/MpYSz7u9Ug","expanded_url":"http:\/\/twitter.com\/wtsconfident\/status\/663727851699625984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727850650886144,"id_str":"663727850650886144","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","url":"https:\/\/t.co\/MpYSz7u9Ug","display_url":"pic.twitter.com\/MpYSz7u9Ug","expanded_url":"http:\/\/twitter.com\/wtsconfident\/status\/663727851699625984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[37,47]}],"urls":[],"user_mentions":[{"screen_name":"wtsconfident","name":"gabri","id":2994990472,"id_str":"2994990472","indices":[3,16]}],"symbols":[],"media":[{"id":663727850650886144,"id_str":"663727850650886144","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","url":"https:\/\/t.co\/MpYSz7u9Ug","display_url":"pic.twitter.com\/MpYSz7u9Ug","expanded_url":"http:\/\/twitter.com\/wtsconfident\/status\/663727851699625984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663727851699625984,"source_status_id_str":"663727851699625984","source_user_id":2994990472,"source_user_id_str":"2994990472"}]},"extended_entities":{"media":[{"id":663727850650886144,"id_str":"663727850650886144","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9q2UYAAuizL.jpg","url":"https:\/\/t.co\/MpYSz7u9Ug","display_url":"pic.twitter.com\/MpYSz7u9Ug","expanded_url":"http:\/\/twitter.com\/wtsconfident\/status\/663727851699625984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":640,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663727851699625984,"source_status_id_str":"663727851699625984","source_user_id":2994990472,"source_user_id_str":"2994990472"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555981824,"id_str":"663728026555981824","text":"knlovers_525: gelKathNiel2526: AyalaXander: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitens1: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3834279612,"id_str":"3834279612","name":"SQUAD","screen_name":"babykathniel31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":9,"favourites_count":0,"statuses_count":18695,"created_at":"Fri Oct 09 08:14:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[113,133]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026589491200,"id_str":"663728026589491200","text":"RT @asa9255: \u0670\u2743.\u060c\u2765\n\n\u0639\u0644\u064a\u0647 \u0627\u0644\u062d\u0634\u0627 \u0644\u0622 \u0633\u0645\u0639 \u0637\u0622\u0631\u064a\u0647 \u0641\u0632 \u0648 \u0642\u0627\u0645 \n\u0645\u062b\u0644 \u0641\u0632\u0629 \u0627\u0644\u0645\u0633\u062c\u0648\u0646 \u060c \u0644\u0627 \u0634\u0627\u0641 \u0632\u0648\u0627\u0631\u0647 ..\u2661\n\n#\u0642\u0631\u0648\u0628_\u0627\u0644\u0623\u062d\u0628\u0627\u0628_\u0644\u062a\u0628\u0627\u062f\u0644_\u0627\u0644\u0631\u062a\u0648\u064a\u062a ..\u2743.\u060c\u2765","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2211994236,"id_str":"2211994236","name":"\u0627\u064a\u0646\u0627\u0633 \u0645\u062d\u0645\u062f","screen_name":"eennaas1","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0646\u0627 \u0627\u062d\u062a\u0631\u0645 \u064a\u0627\u0646\u0627\u0633 \u0645\u0646 \u064a\u062d\u062a\u0631\u0645\u0646\u064a\u060c\u0648\u0627\u0644\u0645\u062d\u062a\u0631\u0645 \u064a\u0641\u0631\u0636 \u0639\u0644\u064a \u0627\u062d\u062a\u0631\u0627\u0645\u0647\n\u0648\u0627\u0644\u0644\u064a \u0628\u0634\u062e\u0635\u064a \u0628\u0627\u0644\u063a\u0644\u0637 \u064a\u062a\u0647\u0645\u0646\u064a \u060c\u0645\u0627\u0627\u0633\u0627\u0645\u062d\u0647 \u0627\u0644\u064a\u0646 \u064a\u0648\u0645 \u0627\u0644\u0642\u064a\u0627\u0645\u0647 ...","protected":false,"verified":false,"followers_count":16509,"friends_count":14437,"listed_count":15,"favourites_count":4703,"statuses_count":67806,"created_at":"Sun Nov 24 06:16:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"D67EA1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462245357112414208\/81PDCURv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462245357112414208\/81PDCURv.jpeg","profile_background_tile":true,"profile_link_color":"538F77","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636596532720963585\/-MGBclcb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636596532720963585\/-MGBclcb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2211994236\/1438123936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:00:55 +0000 2015","id":663385721181446144,"id_str":"663385721181446144","text":"\u0670\u2743.\u060c\u2765\n\n\u0639\u0644\u064a\u0647 \u0627\u0644\u062d\u0634\u0627 \u0644\u0622 \u0633\u0645\u0639 \u0637\u0622\u0631\u064a\u0647 \u0641\u0632 \u0648 \u0642\u0627\u0645 \n\u0645\u062b\u0644 \u0641\u0632\u0629 \u0627\u0644\u0645\u0633\u062c\u0648\u0646 \u060c \u0644\u0627 \u0634\u0627\u0641 \u0632\u0648\u0627\u0631\u0647 ..\u2661\n\n#\u0642\u0631\u0648\u0628_\u0627\u0644\u0623\u062d\u0628\u0627\u0628_\u0644\u062a\u0628\u0627\u062f\u0644_\u0627\u0644\u0631\u062a\u0648\u064a\u062a ..\u2743.\u060c\u2765","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":965994948,"id_str":"965994948","name":"#aboood_alkedaisi..\u2765","screen_name":"asa9255","location":"\u0644\u0627 \u0627\u0631\u062a\u0648\u062a \u0644\u0635\u0648\u0631 \u0639\u0631\u0636 \u0646\u0633\u0627\u0621 \u274c","url":null,"description":"\u200f5\/5 ..\u2661 10\/10 ..\u2661\n\n\n\n\n\n #\u0642\u0631\u0648\u0628_\u0627\u0644\u0623\u062d\u0628\u0627\u0628_\u0644\u062a\u0628\u0627\u062f\u0644_\u0627\u0644\u0631\u062a\u0648\u064a\u062a ..\u2661","protected":false,"verified":false,"followers_count":28067,"friends_count":27429,"listed_count":13,"favourites_count":1345,"statuses_count":34309,"created_at":"Fri Nov 23 12:11:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661650314135736321\/pcoITJfP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661650314135736321\/pcoITJfP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/965994948\/1446584340","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":7,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0627\u0644\u0623\u062d\u0628\u0627\u0628_\u0644\u062a\u0628\u0627\u062f\u0644_\u0627\u0644\u0631\u062a\u0648\u064a\u062a","indices":[77,105]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0642\u0631\u0648\u0628_\u0627\u0644\u0623\u062d\u0628\u0627\u0628_\u0644\u062a\u0628\u0627\u062f\u0644_\u0627\u0644\u0631\u062a\u0648\u064a\u062a","indices":[90,118]}],"urls":[],"user_mentions":[{"screen_name":"asa9255","name":"#aboood_alkedaisi..\u2765","id":965994948,"id_str":"965994948","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080067666"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564169728,"id_str":"663728026564169728","text":"RT @TiempoReal_mx: \u00a1M\u00e1s elogios! Otra persona se rinde ante @Miguel_layun y vaya que este le conviene mucho https:\/\/t.co\/83b84NuKND https:\/\u2026","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131650917,"id_str":"1131650917","name":"RODRIGO ANTONIO","screen_name":"antonio_flores3","location":null,"url":null,"description":"estudiante so\u00f1ador de futbolista megusta marvel comics","protected":false,"verified":false,"followers_count":192,"friends_count":645,"listed_count":2,"favourites_count":1884,"statuses_count":1897,"created_at":"Tue Jan 29 17:25:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597603596234985472\/fqtgH_xt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597603596234985472\/fqtgH_xt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131650917\/1400429519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727760204951553,"id_str":"663727760204951553","text":"\u00a1M\u00e1s elogios! Otra persona se rinde ante @Miguel_layun y vaya que este le conviene mucho https:\/\/t.co\/83b84NuKND https:\/\/t.co\/lWnTGDD4EF","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145720202,"id_str":"145720202","name":"Tiempo Real","screen_name":"TiempoReal_mx","location":null,"url":"http:\/\/www.tiemporeal.mx","description":"Encuentra la mejor informaci\u00f3n del acontecer deportivo en Tiempo Real.","protected":false,"verified":false,"followers_count":67373,"friends_count":303,"listed_count":626,"favourites_count":377,"statuses_count":182335,"created_at":"Wed May 19 18:09:09 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F70830","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661575975252049920\/NeIwrxxr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661575975252049920\/NeIwrxxr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145720202\/1446835100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/83b84NuKND","expanded_url":"http:\/\/goo.gl\/cDXT78","display_url":"goo.gl\/cDXT78","indices":[89,112]}],"user_mentions":[{"screen_name":"Miguel_layun","name":"Miguel Layun","id":186941132,"id_str":"186941132","indices":[41,54]}],"symbols":[],"media":[{"id":663726836631937024,"id_str":"663726836631937024","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","url":"https:\/\/t.co\/lWnTGDD4EF","display_url":"pic.twitter.com\/lWnTGDD4EF","expanded_url":"http:\/\/twitter.com\/TiempoReal_mx\/status\/663727760204951553\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":337,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726836631937024,"id_str":"663726836631937024","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","url":"https:\/\/t.co\/lWnTGDD4EF","display_url":"pic.twitter.com\/lWnTGDD4EF","expanded_url":"http:\/\/twitter.com\/TiempoReal_mx\/status\/663727760204951553\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":337,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/83b84NuKND","expanded_url":"http:\/\/goo.gl\/cDXT78","display_url":"goo.gl\/cDXT78","indices":[108,131]}],"user_mentions":[{"screen_name":"TiempoReal_mx","name":"Tiempo Real","id":145720202,"id_str":"145720202","indices":[3,17]},{"screen_name":"Miguel_layun","name":"Miguel Layun","id":186941132,"id_str":"186941132","indices":[60,73]}],"symbols":[],"media":[{"id":663726836631937024,"id_str":"663726836631937024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","url":"https:\/\/t.co\/lWnTGDD4EF","display_url":"pic.twitter.com\/lWnTGDD4EF","expanded_url":"http:\/\/twitter.com\/TiempoReal_mx\/status\/663727760204951553\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":337,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663727760204951553,"source_status_id_str":"663727760204951553","source_user_id":145720202,"source_user_id_str":"145720202"}]},"extended_entities":{"media":[{"id":663726836631937024,"id_str":"663726836631937024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYICpVXIAA-W-K.jpg","url":"https:\/\/t.co\/lWnTGDD4EF","display_url":"pic.twitter.com\/lWnTGDD4EF","expanded_url":"http:\/\/twitter.com\/TiempoReal_mx\/status\/663727760204951553\/photo\/1","type":"photo","sizes":{"medium":{"w":577,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":577,"h":337,"resize":"fit"},"small":{"w":340,"h":198,"resize":"fit"}},"source_status_id":663727760204951553,"source_status_id_str":"663727760204951553","source_user_id":145720202,"source_user_id_str":"145720202"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080067660"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551607297,"id_str":"663728026551607297","text":"@jumpluvrdys10 \u30fd(\u3003\u2019\u25bd\u2019\u3003)\uff89\u2606\uff9f\u2019\uff65:*\u2606\uff75\uff92\uff83\uff9e\uff84\uff6b\u266a\n\u3059\u3052\u30fc\uff01\uff01\uff01\n1000\u30b8\u30e3\u30b9\u30c8\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718113691602944,"in_reply_to_status_id_str":"663718113691602944","in_reply_to_user_id":941629255,"in_reply_to_user_id_str":"941629255","in_reply_to_screen_name":"jumpluvrdys10","user":{"id":789039492,"id_str":"789039492","name":"\u512a\u5f25\u260612\/23\uff9c\uff9d\uff8f\uff9d\uff97\uff72\uff8c\uff9e","screen_name":"Vipera_yuya","location":null,"url":"http:\/\/ameblo.jp\/viperablog\/","description":"\u7537\u88c5\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u30e6\u30cb\u30c3\u30c8\u3010Vipera\u3011\u30ea\u30fc\u30c0\u30fc\u512a\u5f25\u3067\u3059\u30028\/5\u30a2\u30eb\u30d0\u30e0\u300cTARGET\u300d\u5168\u56fd\u30ea\u30ea\u30fc\u30b9\u2605\u30dc\u30a4\u30d1\u306e\u4eba\/\u30ec\u30c3\u30b5\u30fc\u30d1\u30f3\u30c0\u985e\u4f3c\/\u304a\u3063\u3071\u3044\u5927\u597d\u304d\u72ac\u7cfb\u7537\u5b50\u2605\u79cb\u8449\u539f\u3067\u7537\u88c5\u30ab\u30d5\u30a7\u958b\u50ac\u4e2d\uff0111\u67081&15&29\u65e5\u2605","protected":false,"verified":false,"followers_count":2128,"friends_count":124,"listed_count":53,"favourites_count":5322,"statuses_count":18754,"created_at":"Wed Aug 29 10:30:55 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661071954254802944\/dcooL_7Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661071954254802944\/dcooL_7Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/789039492\/1446990622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jumpluvrdys10","name":"\u30c4\u30a4\u30f3\u30c6\u3061\u3083\u3093","id":941629255,"id_str":"941629255","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555953152,"id_str":"663728026555953152","text":"RT @ntlfx: Seja uma namorada assim http:\/\/t.co\/eNGPJhnnbC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197639758,"id_str":"2197639758","name":"Becas","screen_name":"bebecaass","location":"Porto","url":null,"description":"17 | Your nigthmare","protected":false,"verified":false,"followers_count":1499,"friends_count":1604,"listed_count":1,"favourites_count":5226,"statuses_count":19016,"created_at":"Sat Nov 16 12:18:25 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"335544","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661972681554792448\/wDho_45v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661972681554792448\/wDho_45v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2197639758\/1446660599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 14 00:06:05 +0000 2015","id":643214097295745028,"id_str":"643214097295745028","text":"Seja uma namorada assim http:\/\/t.co\/eNGPJhnnbC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3403199381,"id_str":"3403199381","name":"Scarlet Fiore","screen_name":"ntlfx","location":"made in bahia","url":null,"description":"No time for drama.","protected":false,"verified":false,"followers_count":1404,"friends_count":1147,"listed_count":0,"favourites_count":2531,"statuses_count":2972,"created_at":"Tue Aug 04 20:01:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656936354459308032\/j6x7uJWK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656936354459308032\/j6x7uJWK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3403199381\/1444778571","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1578,"favorite_count":1068,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":643213972108374017,"id_str":"643213972108374017","indices":[24,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","url":"http:\/\/t.co\/eNGPJhnnbC","display_url":"pic.twitter.com\/eNGPJhnnbC","expanded_url":"http:\/\/twitter.com\/ntlfx\/status\/643214097295745028\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":643213972108374017,"id_str":"643213972108374017","indices":[24,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","url":"http:\/\/t.co\/eNGPJhnnbC","display_url":"pic.twitter.com\/eNGPJhnnbC","expanded_url":"http:\/\/twitter.com\/ntlfx\/status\/643214097295745028\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":5973,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/240x240\/3zkQr4iIecm-BvV-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/480x480\/jHhVCyclJXiM387u.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/pl\/LXgLh8r07gd5UD-T.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/pl\/LXgLh8r07gd5UD-T.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/480x480\/jHhVCyclJXiM387u.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ntlfx","name":"Scarlet Fiore","id":3403199381,"id_str":"3403199381","indices":[3,9]}],"symbols":[],"media":[{"id":643213972108374017,"id_str":"643213972108374017","indices":[35,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","url":"http:\/\/t.co\/eNGPJhnnbC","display_url":"pic.twitter.com\/eNGPJhnnbC","expanded_url":"http:\/\/twitter.com\/ntlfx\/status\/643214097295745028\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643214097295745028,"source_status_id_str":"643214097295745028","source_user_id":3403199381,"source_user_id_str":"3403199381"}]},"extended_entities":{"media":[{"id":643213972108374017,"id_str":"643213972108374017","indices":[35,57],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/643213972108374017\/pu\/img\/u9TfYb3ldtnwWcSm.jpg","url":"http:\/\/t.co\/eNGPJhnnbC","display_url":"pic.twitter.com\/eNGPJhnnbC","expanded_url":"http:\/\/twitter.com\/ntlfx\/status\/643214097295745028\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":643214097295745028,"source_status_id_str":"643214097295745028","source_user_id":3403199381,"source_user_id_str":"3403199381","video_info":{"aspect_ratio":[1,1],"duration_millis":5973,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/240x240\/3zkQr4iIecm-BvV-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/480x480\/jHhVCyclJXiM387u.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/pl\/LXgLh8r07gd5UD-T.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/pl\/LXgLh8r07gd5UD-T.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/643213972108374017\/pu\/vid\/480x480\/jHhVCyclJXiM387u.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555846656,"id_str":"663728026555846656","text":"RT @imejazoe03: @iqbaallan iya lan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630786275,"id_str":"630786275","name":"Anniv 40 Month","screen_name":"iqbaallan","location":"vidnylthfa","url":null,"description":"@iqbaale parodi. SMK48. EightBeat #Pard2012Gen","protected":false,"verified":false,"followers_count":26802,"friends_count":2469,"listed_count":17,"favourites_count":2667,"statuses_count":126958,"created_at":"Mon Jul 09 04:37:58 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169682235\/GcRRVzmY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169682235\/GcRRVzmY.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660078355933298689\/EYxND3cN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660078355933298689\/EYxND3cN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630786275\/1446623490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:46:29 +0000 2015","id":663638777986871296,"id_str":"663638777986871296","text":"@iqbaallan iya lan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663626688417394688,"in_reply_to_status_id_str":"663626688417394688","in_reply_to_user_id":630786275,"in_reply_to_user_id_str":"630786275","in_reply_to_screen_name":"iqbaallan","user":{"id":867610224,"id_str":"867610224","name":"x setir","screen_name":"imejazoe03","location":"Martil\u2764","url":"http:\/\/www.twitter.com\/imajizoe03","description":null,"protected":false,"verified":false,"followers_count":3637,"friends_count":2209,"listed_count":1,"favourites_count":974,"statuses_count":55140,"created_at":"Mon Oct 08 08:08:51 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662563869366181888\/f5_nSgNn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662563869366181888\/f5_nSgNn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/867610224\/1446874371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iqbaallan","name":"Anniv 40 Month","id":630786275,"id_str":"630786275","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imejazoe03","name":"x setir","id":867610224,"id_str":"867610224","indices":[3,14]},{"screen_name":"iqbaallan","name":"Anniv 40 Month","id":630786275,"id_str":"630786275","indices":[16,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572582914,"id_str":"663728026572582914","text":"RT @miuraeito: \u672b\u5ee3\u4ead\u3067\u306e\u677e\u9bc9\u5148\u751f\u306e\u8d64\u7a42\u7fa9\u58eb\u4f1d\u304c\u4eca\u65e5\u307e\u3067(\u660e\u65e5\u306f\u4ee3\u30d0\u30cd)\u3068\u3044\u3046\u3053\u3068\u3067\u3001\u30a2\u30ec\u3092\u30a2\u30ec\u3057\u3066\u99c6\u3051\u4ed8\u3051\u3066\u307f\u305f\u3089\u3001\u4e2d\u5165\u308a\u524d\u306e\u8ac7\u5e78\u5e2b\u306f\u3046\u3069\u3093\u5c4b\u306e\u90e8\u5206\u307e\u3067\u305f\u3063\u3077\u308a\u306e\u300c\u66ff\u308a\u76ee\u300d\u3001\u30d2\u30b6\u524d\u306e\u8336\u697d\u5e2b\u306f\u3053\u306e\u4f4d\u7f6e\u3067\u307e\u3055\u304b\u306e\u300c\u5b50\u5225\u308c\u30fb\u4e0b\u300d\uff01\u3053\u308c\u3060\u304b\u3089\u5bc4\u5e2d\u901a\u3044\u306f\u3084\u3081\u3089\u308c\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4smart \/ www.movatwi.jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273518892,"id_str":"3273518892","name":"\u677e\u756a","screen_name":"kandaMJ_bk","location":null,"url":null,"description":"\u8b1b\u8ac7\u754c\u306e\uff2d\uff2a\u3001\u65e5\u672c\u8b1b\u8ac7\u5354\u4f1a\u3068\u843d\u8a9e\u82b8\u8853\u5354\u4f1a\u306b\u6240\u5c5e\u3059\u308b\u4e8c\u30c4\u76ee\u30fb\u795e\u7530\u677e\u4e4b\u4e1e\u3055\u3093\u306e\u5468\u8fba\u60c5\u5831\u53ce\u96c6\u4e2d\u306e\u756a\u8a18\u8005\u3067\u3059\uff01\u3010\u3054\u672c\u4eba\u975e\u516c\u8a8d\uff3c(^o^)\uff0f\u3011\u203b\u300c\u4e1e(\u3058\u3087\u3046)\u300d\u306f\u300c\u3059\u3051\u300d\u3067\u3082\u5909\u63db\u53ef\u80fd\u3067\u3059\u3002\u3000\u203b\u300c\u51fa\u6f14\u60c5\u5831\u300d\u63b2\u8f09\u6642\u3001\u656c\u79f0\u7565\u306b\u3066\u6050\u7e2e\u3067\u3059\u3002m(__)m","protected":false,"verified":false,"followers_count":48,"friends_count":0,"listed_count":5,"favourites_count":0,"statuses_count":3178,"created_at":"Fri Jul 10 00:57:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619478130185633792\/KT8BREIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619478130185633792\/KT8BREIr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:41:35 +0000 2015","id":663713045844131840,"id_str":"663713045844131840","text":"\u672b\u5ee3\u4ead\u3067\u306e\u677e\u9bc9\u5148\u751f\u306e\u8d64\u7a42\u7fa9\u58eb\u4f1d\u304c\u4eca\u65e5\u307e\u3067(\u660e\u65e5\u306f\u4ee3\u30d0\u30cd)\u3068\u3044\u3046\u3053\u3068\u3067\u3001\u30a2\u30ec\u3092\u30a2\u30ec\u3057\u3066\u99c6\u3051\u4ed8\u3051\u3066\u307f\u305f\u3089\u3001\u4e2d\u5165\u308a\u524d\u306e\u8ac7\u5e78\u5e2b\u306f\u3046\u3069\u3093\u5c4b\u306e\u90e8\u5206\u307e\u3067\u305f\u3063\u3077\u308a\u306e\u300c\u66ff\u308a\u76ee\u300d\u3001\u30d2\u30b6\u524d\u306e\u8336\u697d\u5e2b\u306f\u3053\u306e\u4f4d\u7f6e\u3067\u307e\u3055\u304b\u306e\u300c\u5b50\u5225\u308c\u30fb\u4e0b\u300d\uff01\u3053\u308c\u3060\u304b\u3089\u5bc4\u5e2d\u901a\u3044\u306f\u3084\u3081\u3089\u308c\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209064490,"id_str":"209064490","name":"\u4e09\u6d66\u6804\u6597","screen_name":"miuraeito","location":"Comae, Tokio, Nihon","url":"http:\/\/miuraeito.exblog.jp\/","description":"\u5348\u5e74\u3060\u3051\u306b\u99ac\u8033\u6771\u98a8\u306a\u30b9\u30af\u30c1\u30ca\u30e0\u30f3(\u2252\u7c97\u5ffd\u8005)\u3002\u9375\u76e4\u5f3e\u304d\u3002\u3060\u3044\u305f\u3044\u30ed\u30c3\u30af\u3002\u6f14\u82b8\u597d\u304d\uff08\u4e3b\u306b\u843d\u8a9e\u21e8\u5bc4\u5e2d\uff1e\u843d\u8a9e\u4f1a\uff09\u3002\u56e0\u4e3a\u5c5e\u9a6c\uff0c\u662f\u9a6c\u5927\u54c8\uff0c\u662f\u4e2a\u6447\u6eda\u952e\u76d8\u624b\u3002\u559c\u6b22\u6f14\u827a\u3002\u21d2\u30b3\u30f3\u30c9\u30a6\u30d2\u30ed\u30e6\u30ad&Just A Friend\u3001sonic & trip\u3001\u539f\u5b50\u7267\u5834\u3001\u5373\u8208\u6f14\u5287\u3060\u3093\u3059\u3060\u3093\u3059\u3060\u3093\u3059\u3001etc\u2026","protected":false,"verified":false,"followers_count":399,"friends_count":1182,"listed_count":7,"favourites_count":687,"statuses_count":7867,"created_at":"Thu Oct 28 13:01:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"4F0642","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551284620000366592\/ZQShimOT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551284620000366592\/ZQShimOT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209064490\/1427387447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miuraeito","name":"\u4e09\u6d66\u6804\u6597","id":209064490,"id_str":"209064490","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568425472,"id_str":"663728026568425472","text":"#TuitIndonesia Bank Mandiri Berencana Akuisisi Perusahaan Switching ATM #Indonesia #Tuit","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218530743,"id_str":"218530743","name":"New Tuit Indonesia","screen_name":"TuitIndonesia","location":"Sosial Media Indonesia","url":"http:\/\/twtrland.com\/profile\/tuitindonesia","description":"Official Account of @TuitIndonesia\r\n\r\nMedia Partner & Advertising Contact: tuitadvertising[at]gmail[dot]com","protected":false,"verified":false,"followers_count":6341,"friends_count":38,"listed_count":57,"favourites_count":0,"statuses_count":1105301,"created_at":"Mon Nov 22 16:01:44 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000101426115\/c8cb7ee29248667c52f779fab16c5874.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000101426115\/c8cb7ee29248667c52f779fab16c5874.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000644792447\/cbb2ef025a12a9394147b7fe7f185625_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000644792447\/cbb2ef025a12a9394147b7fe7f185625_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218530743\/1382690835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuitIndonesia","indices":[0,14]},{"text":"Indonesia","indices":[72,82]},{"text":"Tuit","indices":[83,88]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560032768,"id_str":"663728026560032768","text":"Raja Sampah Bantargebang https:\/\/t.co\/od5Te7ffVF","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2722447009,"id_str":"2722447009","name":"Lowongan Cpns","screen_name":"cpnsna","location":null,"url":"http:\/\/goo.gl\/IwUNTa","description":"http:\/\/goo.gl\/IwUNTa Kumpulan Soal Tes Cpns Dan Info Lowongan Cpns Terbaru Terkini Klik http:\/\/goo.gl\/IwUNTa","protected":false,"verified":false,"followers_count":1651,"friends_count":18,"listed_count":11,"favourites_count":0,"statuses_count":344176,"created_at":"Sun Aug 10 20:30:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499539488029155332\/Azwae32t_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499539488029155332\/Azwae32t_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/od5Te7ffVF","expanded_url":"http:\/\/goo.gl\/qF6JLR","display_url":"goo.gl\/qF6JLR","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026589507584,"id_str":"663728026589507584","text":"@An_141 \ud83d\ude02\ud83d\ude02\ud83d\ude02\n\u0645\u0627\u064a\u0634\u0648\u0641 \u0634\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727486031822848,"in_reply_to_status_id_str":"663727486031822848","in_reply_to_user_id":577121968,"in_reply_to_user_id_str":"577121968","in_reply_to_screen_name":"An_141","user":{"id":2271436095,"id_str":"2271436095","name":"\u27b0 salman \u27b0","screen_name":"s_buredy","location":"HFC | FCB ","url":null,"description":"\u0644\u0627\u064a\u062a\u0648\u0627\u0636\u0639 \u0627\u0644\u0627 \u0645\u0646 \u06af\u0627\u0646 \u0648\u0627\u062b\u0642\u0627\u064b \u0628\u0646\u0641\u0633\u0647 \u0648\u0644\u0627\u064a\u062a\u06af\u0628\u0631 \u0627\u0644\u0627 \u0645\u0646 \u06af\u0627\u0646 \u0639\u0627\u0644\u0645\u0627\u064b \u0628\u0646\u0642\u0635","protected":false,"verified":false,"followers_count":1190,"friends_count":1286,"listed_count":1,"favourites_count":53,"statuses_count":9622,"created_at":"Thu Jan 09 19:30:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663363726028984321\/PLg3pFz4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663363726028984321\/PLg3pFz4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271436095\/1446993416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080067666"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551582720,"id_str":"663728026551582720","text":"RT @redjuhye0n: VELVET https:\/\/t.co\/ASkG4v8Ztg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":951077905,"id_str":"951077905","name":"bae.","screen_name":"bjhxrvt","location":"#REVEL \u27ab #barbx \u27ac #armysq","url":null,"description":"\u2601 roleplayer \/ parody of \ubc30 \uc8fc \ud604. #bjhbebe \u007b ooc. \u007d \u2601 \ub808\ub4dc\ubca8\ubcb3. \u2654 ; i'm just too cool for you, so goodbye.","protected":false,"verified":false,"followers_count":6299,"friends_count":4680,"listed_count":12,"favourites_count":1263,"statuses_count":80297,"created_at":"Fri Nov 16 05:44:53 +0000 2012","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658940696057942016\/D7ry-2hO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658940696057942016\/D7ry-2hO.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663695917225082880\/9ARoe0a-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663695917225082880\/9ARoe0a-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951077905\/1447063170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:43:08 +0000 2015","id":663290645985947648,"id_str":"663290645985947648","text":"VELVET https:\/\/t.co\/ASkG4v8Ztg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663290425092927488,"in_reply_to_status_id_str":"663290425092927488","in_reply_to_user_id":2712637880,"in_reply_to_user_id_str":"2712637880","in_reply_to_screen_name":"redjuhye0n","user":{"id":2712637880,"id_str":"2712637880","name":"katy \u2728","screen_name":"redjuhye0n","location":null,"url":null,"description":"\uac00\uc218\ud574\uc918\uc11c\uace0\ub9c8\uc6cc\uc694, 329 \u2764 \/\/ kor-eng","protected":false,"verified":false,"followers_count":25657,"friends_count":45,"listed_count":332,"favourites_count":1255,"statuses_count":3880,"created_at":"Wed Aug 06 18:12:49 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"EB73B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663353751357386752\/iYwF4NXW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663353751357386752\/iYwF4NXW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2712637880\/1445229762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":227,"favorite_count":103,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663290492361150466,"id_str":"663290492361150466","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","url":"https:\/\/t.co\/ASkG4v8Ztg","display_url":"pic.twitter.com\/ASkG4v8Ztg","expanded_url":"http:\/\/twitter.com\/redjuhye0n\/status\/663290645985947648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":151,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":240,"resize":"fit"},"large":{"w":540,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663290492361150466,"id_str":"663290492361150466","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","url":"https:\/\/t.co\/ASkG4v8Ztg","display_url":"pic.twitter.com\/ASkG4v8Ztg","expanded_url":"http:\/\/twitter.com\/redjuhye0n\/status\/663290645985947648\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":151,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":240,"resize":"fit"},"large":{"w":540,"h":240,"resize":"fit"}},"video_info":{"aspect_ratio":[9,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTR7MEQUkAI5SeA.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"no"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"redjuhye0n","name":"katy \u2728","id":2712637880,"id_str":"2712637880","indices":[3,14]}],"symbols":[],"media":[{"id":663290492361150466,"id_str":"663290492361150466","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","url":"https:\/\/t.co\/ASkG4v8Ztg","display_url":"pic.twitter.com\/ASkG4v8Ztg","expanded_url":"http:\/\/twitter.com\/redjuhye0n\/status\/663290645985947648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":151,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":240,"resize":"fit"},"large":{"w":540,"h":240,"resize":"fit"}},"source_status_id":663290645985947648,"source_status_id_str":"663290645985947648","source_user_id":2712637880,"source_user_id_str":"2712637880"}]},"extended_entities":{"media":[{"id":663290492361150466,"id_str":"663290492361150466","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTR7MEQUkAI5SeA.png","url":"https:\/\/t.co\/ASkG4v8Ztg","display_url":"pic.twitter.com\/ASkG4v8Ztg","expanded_url":"http:\/\/twitter.com\/redjuhye0n\/status\/663290645985947648\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":151,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":240,"resize":"fit"},"large":{"w":540,"h":240,"resize":"fit"}},"source_status_id":663290645985947648,"source_status_id_str":"663290645985947648","source_user_id":2712637880,"source_user_id_str":"2712637880","video_info":{"aspect_ratio":[9,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTR7MEQUkAI5SeA.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"no","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572693504,"id_str":"663728026572693504","text":"RT @IamTreyDetroit: Lovers and friends \ud83d\ude0f http:\/\/t.co\/Lxdaq2YONX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760355552,"id_str":"760355552","name":"angellica","screen_name":"xoxoAngellica","location":"atl","url":null,"description":"@_madebylaay | @dollface_pinkk\u2764\ufe0f","protected":false,"verified":false,"followers_count":836,"friends_count":369,"listed_count":2,"favourites_count":683,"statuses_count":12050,"created_at":"Wed Aug 15 23:11:27 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663529925048213504\/NrR4XURf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663529925048213504\/NrR4XURf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760355552\/1446413328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 07 15:34:14 +0000 2015","id":651782591687737346,"id_str":"651782591687737346","text":"Lovers and friends \ud83d\ude0f http:\/\/t.co\/Lxdaq2YONX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":701245796,"id_str":"701245796","name":"iamtreydetroit","screen_name":"IamTreyDetroit","location":"Texas, USA","url":"https:\/\/m.soundcloud.com\/reyetroit\/all-i-want-is-you-ft-jb-ace-youngn","description":"@goldmindz_ artist. For All Booking : business.goldmindz@gmail.com Listen to my newest single below . MGMT:@aceakayoungn","protected":false,"verified":false,"followers_count":3915,"friends_count":923,"listed_count":4,"favourites_count":3304,"statuses_count":29230,"created_at":"Tue Jul 17 15:27:07 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158319808\/2iJaF-G0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158319808\/2iJaF-G0.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662776618633400320\/YQNibgqM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662776618633400320\/YQNibgqM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/701245796\/1445872602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23652,"favorite_count":26463,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":651782147905224704,"id_str":"651782147905224704","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","url":"http:\/\/t.co\/Lxdaq2YONX","display_url":"pic.twitter.com\/Lxdaq2YONX","expanded_url":"http:\/\/twitter.com\/IamTreyDetroit\/status\/651782591687737346\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":651782147905224704,"id_str":"651782147905224704","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","url":"http:\/\/t.co\/Lxdaq2YONX","display_url":"pic.twitter.com\/Lxdaq2YONX","expanded_url":"http:\/\/twitter.com\/IamTreyDetroit\/status\/651782591687737346\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":26667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/pl\/0P2ztjXfvxKK0bkk.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/360x640\/qESSuKFTThm5Io53.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/360x640\/qESSuKFTThm5Io53.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/180x320\/ybO4EwW30dY-IK3v.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/pl\/0P2ztjXfvxKK0bkk.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/720x1280\/ZCMqAN2ECi2IAose.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IamTreyDetroit","name":"iamtreydetroit","id":701245796,"id_str":"701245796","indices":[3,18]}],"symbols":[],"media":[{"id":651782147905224704,"id_str":"651782147905224704","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","url":"http:\/\/t.co\/Lxdaq2YONX","display_url":"pic.twitter.com\/Lxdaq2YONX","expanded_url":"http:\/\/twitter.com\/IamTreyDetroit\/status\/651782591687737346\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":651782591687737346,"source_status_id_str":"651782591687737346","source_user_id":701245796,"source_user_id_str":"701245796"}]},"extended_entities":{"media":[{"id":651782147905224704,"id_str":"651782147905224704","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651782147905224704\/pu\/img\/5XSR0sOPARlz6YXh.jpg","url":"http:\/\/t.co\/Lxdaq2YONX","display_url":"pic.twitter.com\/Lxdaq2YONX","expanded_url":"http:\/\/twitter.com\/IamTreyDetroit\/status\/651782591687737346\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":651782591687737346,"source_status_id_str":"651782591687737346","source_user_id":701245796,"source_user_id_str":"701245796","video_info":{"aspect_ratio":[9,16],"duration_millis":26667,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/pl\/0P2ztjXfvxKK0bkk.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/360x640\/qESSuKFTThm5Io53.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/360x640\/qESSuKFTThm5Io53.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/180x320\/ybO4EwW30dY-IK3v.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/pl\/0P2ztjXfvxKK0bkk.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651782147905224704\/pu\/vid\/720x1280\/ZCMqAN2ECi2IAose.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026589466624,"id_str":"663728026589466624","text":"Vou ter q ir no dentista com a minha irm\u00e3 \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130516614,"id_str":"4130516614","name":"Dio \u2650","screen_name":"diooss_","location":"F\u00e1tima","url":null,"description":"N\u00f3s por n\u00f3s sempre cadelinha, te amo manaaa \/@flowzera_","protected":false,"verified":false,"followers_count":55,"friends_count":87,"listed_count":0,"favourites_count":45,"statuses_count":88,"created_at":"Sat Nov 07 00:29:02 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663539918350786560\/zlGlQjWB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663539918350786560\/zlGlQjWB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4130516614\/1446857387","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080067666"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572619776,"id_str":"663728026572619776","text":"The idea have designs on wide-extended prepare earrings exclusive of online: WfuTdD https:\/\/t.co\/zcU0xpe6Rd","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1238423208,"id_str":"1238423208","name":"SusanHazel","screen_name":"SusanHazel1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":144,"friends_count":2,"listed_count":33,"favourites_count":0,"statuses_count":81297,"created_at":"Sun Mar 03 09:33:55 +0000 2013","utc_offset":28800,"time_zone":"Chongqing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3483581951\/de419fa875f35db98244ef69fb9d3262_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3483581951\/de419fa875f35db98244ef69fb9d3262_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zcU0xpe6Rd","expanded_url":"http:\/\/dlvr.it\/ChfdSM","display_url":"dlvr.it\/ChfdSM","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026585165824,"id_str":"663728026585165824","text":"RT @jessture_net: https:\/\/t.co\/6g9dsHAbZO\nhttps:\/\/t.co\/MoQRcj8Vx9\nhttps:\/\/t.co\/7PvK60DGyq\nhttps:\/\/t.co\/MTvmMElU2R https:\/\/t.co\/4JCNqlxUQM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384660034,"id_str":"384660034","name":"YJ","screen_name":"LoveJ418","location":null,"url":null,"description":"\u2764\ufe0f\u2764\ufe0f\uc0ac\ub791\ud574\uc694 \u2764\ufe0f\u2764\ufe0f\u2764\u2764\ufe0f \uc81c\uc2dc \uc735\uc2dc\u2764\ufe0f\u2764\ufe0f At any time delete not important message","protected":false,"verified":false,"followers_count":571,"friends_count":327,"listed_count":7,"favourites_count":28,"statuses_count":17398,"created_at":"Tue Oct 04 02:46:50 +0000 2011","utc_offset":28800,"time_zone":"Taipei","geo_enabled":true,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519757375511597058\/XDhGez2n.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519757375511597058\/XDhGez2n.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663158955317706752\/FqWSz-cJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663158955317706752\/FqWSz-cJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384660034\/1446704585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:46 +0000 2015","id":663727938928406528,"id_str":"663727938928406528","text":"https:\/\/t.co\/6g9dsHAbZO\nhttps:\/\/t.co\/MoQRcj8Vx9\nhttps:\/\/t.co\/7PvK60DGyq\nhttps:\/\/t.co\/MTvmMElU2R https:\/\/t.co\/4JCNqlxUQM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259128660,"id_str":"259128660","name":"Jessture","screen_name":"jessture_net","location":null,"url":"http:\/\/jessture.net","description":"\uc81c\uc2dc\uce74 \uc815\ub9d0 \uc0ac\ub791\ud558\uace0\uc694..","protected":false,"verified":false,"followers_count":53695,"friends_count":5,"listed_count":907,"favourites_count":0,"statuses_count":750,"created_at":"Tue Mar 01 05:34:13 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527428227006885889\/NdqvfhpZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527428227006885889\/NdqvfhpZ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6g9dsHAbZO","expanded_url":"https:\/\/farm1.staticflickr.com\/630\/22271205463_c036498afa_o.jpg","display_url":"farm1.staticflickr.com\/630\/2227120546\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/MoQRcj8Vx9","expanded_url":"https:\/\/farm6.staticflickr.com\/5776\/22892346335_3dc5a22bcb_o.jpg","display_url":"farm6.staticflickr.com\/5776\/228923463\u2026","indices":[24,47]},{"url":"https:\/\/t.co\/7PvK60DGyq","expanded_url":"https:\/\/farm6.staticflickr.com\/5707\/22500203319_82fd702b7b_o.jpg","display_url":"farm6.staticflickr.com\/5707\/225002033\u2026","indices":[48,71]},{"url":"https:\/\/t.co\/MTvmMElU2R","expanded_url":"https:\/\/farm1.staticflickr.com\/650\/22903489141_175869beb7_o.jpg","display_url":"farm1.staticflickr.com\/650\/2290348914\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[],"media":[{"id":663727919051608065,"id_str":"663727919051608065","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727919051608065,"id_str":"663727919051608065","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663727925376618497,"id_str":"663727925376618497","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCBOUkAE800T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCBOUkAE800T.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663727936999034881,"id_str":"663727936999034881","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCshUkAEMfv2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCshUkAEMfv2.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663727883752333312,"id_str":"663727883752333312","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_mKUYAA9VsP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_mKUYAA9VsP.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6g9dsHAbZO","expanded_url":"https:\/\/farm1.staticflickr.com\/630\/22271205463_c036498afa_o.jpg","display_url":"farm1.staticflickr.com\/630\/2227120546\u2026","indices":[18,41]},{"url":"https:\/\/t.co\/MoQRcj8Vx9","expanded_url":"https:\/\/farm6.staticflickr.com\/5776\/22892346335_3dc5a22bcb_o.jpg","display_url":"farm6.staticflickr.com\/5776\/228923463\u2026","indices":[42,65]},{"url":"https:\/\/t.co\/7PvK60DGyq","expanded_url":"https:\/\/farm6.staticflickr.com\/5707\/22500203319_82fd702b7b_o.jpg","display_url":"farm6.staticflickr.com\/5707\/225002033\u2026","indices":[66,89]},{"url":"https:\/\/t.co\/MTvmMElU2R","expanded_url":"https:\/\/farm1.staticflickr.com\/650\/22903489141_175869beb7_o.jpg","display_url":"farm1.staticflickr.com\/650\/2290348914\u2026","indices":[90,113]}],"user_mentions":[{"screen_name":"jessture_net","name":"Jessture","id":259128660,"id_str":"259128660","indices":[3,16]}],"symbols":[],"media":[{"id":663727919051608065,"id_str":"663727919051608065","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727938928406528,"source_status_id_str":"663727938928406528","source_user_id":259128660,"source_user_id_str":"259128660"}]},"extended_entities":{"media":[{"id":663727919051608065,"id_str":"663727919051608065","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJBpqUkAEy8aW.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727938928406528,"source_status_id_str":"663727938928406528","source_user_id":259128660,"source_user_id_str":"259128660"},{"id":663727925376618497,"id_str":"663727925376618497","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCBOUkAE800T.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCBOUkAE800T.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727938928406528,"source_status_id_str":"663727938928406528","source_user_id":259128660,"source_user_id_str":"259128660"},{"id":663727936999034881,"id_str":"663727936999034881","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCshUkAEMfv2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCshUkAEMfv2.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727938928406528,"source_status_id_str":"663727938928406528","source_user_id":259128660,"source_user_id_str":"259128660"},{"id":663727883752333312,"id_str":"663727883752333312","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_mKUYAA9VsP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_mKUYAA9VsP.jpg","url":"https:\/\/t.co\/4JCNqlxUQM","display_url":"pic.twitter.com\/4JCNqlxUQM","expanded_url":"http:\/\/twitter.com\/jessture_net\/status\/663727938928406528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727938928406528,"source_status_id_str":"663727938928406528","source_user_id":259128660,"source_user_id_str":"259128660"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067665"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026585141248,"id_str":"663728026585141248","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%\u3000\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\u304b? #follow #followme #followmejp #sougofollow #followback #teamautofollow #teamfollowback #autofollow 9","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396919546,"id_str":"2396919546","name":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\uff11\uff10\uff10\uff05","screen_name":"sannburoi","location":null,"url":null,"description":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100%\u3092\u6a5f\u68b0\u3067\u78ba\u5b9f\u306b\u884c\u3063\u3066\u3044\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u81ea\u52d5\u30ea\u30d5\u30a9\u30ed\u30fc\uff08\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\uff09\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u65b9\u3001\u5f53\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002 #autofollow #auto_follow #autofollowJP","protected":false,"verified":false,"followers_count":4164,"friends_count":3971,"listed_count":30,"favourites_count":2,"statuses_count":8867,"created_at":"Tue Mar 18 23:38:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/446070885472927744\/kK8aOvt1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/446070885472927744\/kK8aOvt1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"follow","indices":[24,31]},{"text":"followme","indices":[32,41]},{"text":"followmejp","indices":[42,53]},{"text":"sougofollow","indices":[54,66]},{"text":"followback","indices":[67,78]},{"text":"teamautofollow","indices":[79,94]},{"text":"teamfollowback","indices":[95,110]},{"text":"autofollow","indices":[111,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067665"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555965440,"id_str":"663728026555965440","text":"https:\/\/t.co\/gcdkO5pb8l","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":999771745,"id_str":"999771745","name":"VENEZUELA LIBRE!","screen_name":"GUERREROS2015","location":"Caracas, Distrito Capital","url":"http:\/\/www.sinbloqueo.com\/","description":"PUEDE QUE NOS QUITEN LA VIDA, PERO JAM\u00c1S NOS QUITAR\u00c1N LA #LIBERTAD! #OPOSITOR #RESISTENCIA #SOSVENEZUELA #TRIBU #VENEZOLANO FUERA MADURO, FIDEL Y LOS CUBANOS!","protected":false,"verified":false,"followers_count":60055,"friends_count":0,"listed_count":169,"favourites_count":3491,"statuses_count":196823,"created_at":"Sun Dec 09 17:37:19 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434045762507259904\/zJbkwZzx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434045762507259904\/zJbkwZzx.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511298228008923137\/2RVhwXfo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511298228008923137\/2RVhwXfo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/999771745\/1392319455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726811004669952,"quoted_status_id_str":"663726811004669952","quoted_status":{"created_at":"Mon Nov 09 14:36:17 +0000 2015","id":663726811004669952,"id_str":"663726811004669952","text":"EN DIRECTO en #Periscope: Seguimos desde Uni\u00f3n Radio Noticias 93.7 de Puerto la Cruz llevando nuestro mensaje #PorL\u2026 https:\/\/t.co\/sqdHuxmHEM","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62917505,"id_str":"62917505","name":"Lilian Tintori","screen_name":"liliantintori","location":"Venezuela","url":null,"description":"Activista por los #DDHH. Lucho por la Democracia y la Libertad. Madre de 2 y esposa de @LeopoldoLopez. #LiberenALeopoldo","protected":false,"verified":true,"followers_count":1841247,"friends_count":4424,"listed_count":3222,"favourites_count":1029,"statuses_count":48917,"created_at":"Tue Aug 04 20:21:30 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435921293662486528\/_4zxZJXE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435921293662486528\/_4zxZJXE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62917505\/1398971467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[14,24]},{"text":"PorL","indices":[110,115]}],"urls":[{"url":"https:\/\/t.co\/sqdHuxmHEM","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCm2jF6WUVia05McHhRZXh8MXlwSmREcUJnZG5KVw9oq4xYDRAwwaHi8GSch_4eoYhmGtxQwysg6KrFr5Tf","display_url":"periscope.tv\/w\/aRCm2jF6WUVi\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gcdkO5pb8l","expanded_url":"http:\/\/twitter.com\/liliantintori\/status\/663726811004669952","display_url":"twitter.com\/liliantintori\/\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551586816,"id_str":"663728026551586816","text":"@Nikudorobou @natsune55555 \u4e8c\u6bb5\u653b\u6483\u3063\u3066\u30a2\u30bf\u30eb\u30ab\u3067\u5927\u30c0\u30e1\u30fc\u30b8\u3063\u3066\u30a4\u30e1\u30fc\u30b8\u5f37\u304b\u3063\u305f\u3051\u3069\u305d\u3046\u3044\u3048\u3070\u3042\u308c\u3082\u30c8\u30e9\u30f3\u30d7\u30eb\u3082\u3063\u3066\u305f\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727483779321856,"in_reply_to_status_id_str":"663727483779321856","in_reply_to_user_id":196205482,"in_reply_to_user_id_str":"196205482","in_reply_to_screen_name":"Nikudorobou","user":{"id":2737836564,"id_str":"2737836564","name":"\u304b\u3082\u3057\u304b \u904b75\uff0b15","screen_name":"arokamoshika","location":null,"url":null,"description":"\u89aa\u548c\u30a8\u30eb\u30d5\u30b3\u30c4\u30b3\u30c4\u5f37\u5316\u4e2d\u3002\u30ac\u30a4\u30a2\u6b32\u3057\u3044\u306a\u3042","protected":false,"verified":false,"followers_count":19,"friends_count":25,"listed_count":2,"favourites_count":270,"statuses_count":2024,"created_at":"Sat Aug 16 18:48:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600867162664734723\/ksmPMXqm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600867162664734723\/ksmPMXqm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737836564\/1441994185","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nikudorobou","name":"\u306b\u304f\u3069\u308d\u307c\u3046","id":196205482,"id_str":"196205482","indices":[0,12]},{"screen_name":"natsune55555","name":"\u306a\u3063\u3061\u3085\u3093","id":471080532,"id_str":"471080532","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564227072,"id_str":"663728026564227072","text":"@gdlburns CleanTech: 296 Cos, 359 fundings, 10k+ people. Stay on top of it https:\/\/t.co\/yW0c1oyAiM https:\/\/t.co\/zEskTja4vT","source":"\u003ca href=\"https:\/\/unfollowers.com\" rel=\"nofollow\"\u003eUnfollowers\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":38376510,"in_reply_to_user_id_str":"38376510","in_reply_to_screen_name":"gdlburns","user":{"id":3564690314,"id_str":"3564690314","name":"WaterTech|VBProfiles","screen_name":"WaterProfiles","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1494,"friends_count":2034,"listed_count":21,"favourites_count":2,"statuses_count":1171,"created_at":"Mon Sep 14 22:11:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643548434994085888\/ByoB4Hob_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643548434994085888\/ByoB4Hob_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3564690314\/1442547394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zEskTja4vT","expanded_url":"http:\/\/bit.ly\/2040NPn","display_url":"bit.ly\/2040NPn","indices":[99,122]}],"user_mentions":[{"screen_name":"gdlburns","name":"Graeme Burns","id":38376510,"id_str":"38376510","indices":[0,9]}],"symbols":[],"media":[{"id":657634325492436992,"id_str":"657634325492436992","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CSBi70sUkAAZrVI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSBi70sUkAAZrVI.png","url":"https:\/\/t.co\/yW0c1oyAiM","display_url":"pic.twitter.com\/yW0c1oyAiM","expanded_url":"http:\/\/twitter.com\/WaterProfiles\/status\/657634326276919296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":308,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":672,"h":610,"resize":"fit"}},"source_status_id":657634326276919296,"source_status_id_str":"657634326276919296","source_user_id":3564690314,"source_user_id_str":"3564690314"}]},"extended_entities":{"media":[{"id":657634325492436992,"id_str":"657634325492436992","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CSBi70sUkAAZrVI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSBi70sUkAAZrVI.png","url":"https:\/\/t.co\/yW0c1oyAiM","display_url":"pic.twitter.com\/yW0c1oyAiM","expanded_url":"http:\/\/twitter.com\/WaterProfiles\/status\/657634326276919296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":308,"resize":"fit"},"medium":{"w":600,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":672,"h":610,"resize":"fit"}},"source_status_id":657634326276919296,"source_status_id_str":"657634326276919296","source_user_id":3564690314,"source_user_id_str":"3564690314"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067660"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568384512,"id_str":"663728026568384512","text":"RT @sup3rnovas: 151108 fanmeeting: handsome wonwoo #\uc138\ube10\ud2f4 #\uc6d0\uc6b0 #SEVENTEEN https:\/\/t.co\/ekJ8EQwoGg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227627630,"id_str":"227627630","name":"\u0e08\u0e2a\u0e21\u0e15.\u2661","screen_name":"jswenen852","location":"Mahachai, Samut Sakhon","url":null,"description":"Got7Monsta x : \u2661Jackson \u2022 Jooheon \u2661 |\u2665mark t. kihyun |\u2661 jark`bnior | wonpil day6 \u2022 dk 17 | shipper. \u0e02\u0e35\u0e49\u0e0a\u0e34\u0e1b~ \u0e41\u0e2b\u0e01\u0e40\u0e15\u0e47\u0e21\u0e17\u0e35\u0e48 `niorjae\u2606","protected":false,"verified":false,"followers_count":480,"friends_count":207,"listed_count":3,"favourites_count":2297,"statuses_count":114187,"created_at":"Fri Dec 17 10:26:51 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661554835339128833\/_gsCqsUH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661554835339128833\/_gsCqsUH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227627630\/1445099346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:26 +0000 2015","id":663727601219866625,"id_str":"663727601219866625","text":"151108 fanmeeting: handsome wonwoo #\uc138\ube10\ud2f4 #\uc6d0\uc6b0 #SEVENTEEN https:\/\/t.co\/ekJ8EQwoGg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2294970690,"id_str":"2294970690","name":"anenium \u2606","screen_name":"sup3rnovas","location":": \/","url":"http:\/\/kkoming.tumblr.com","description":"super seventeen \u2606 151004 i fell in love hello i am nova and i came from space","protected":false,"verified":false,"followers_count":525,"friends_count":116,"listed_count":15,"favourites_count":2570,"statuses_count":19885,"created_at":"Thu Jan 16 20:20:52 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEBEC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627665940877062144\/PptCgUf8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627665940877062144\/PptCgUf8.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657277971709952\/d6qJBKrV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657277971709952\/d6qJBKrV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2294970690\/1446800613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[35,39]},{"text":"\uc6d0\uc6b0","indices":[40,43]},{"text":"SEVENTEEN","indices":[44,54]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727599311450112,"id_str":"663727599311450112","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727599311450112,"id_str":"663727599311450112","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}}},{"id":663727600024481792,"id_str":"663727600024481792","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvFMU8AA8D8h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvFMU8AA8D8h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[51,55]},{"text":"\uc6d0\uc6b0","indices":[56,59]},{"text":"SEVENTEEN","indices":[60,70]}],"urls":[],"user_mentions":[{"screen_name":"sup3rnovas","name":"anenium \u2606","id":2294970690,"id_str":"2294970690","indices":[3,14]}],"symbols":[],"media":[{"id":663727599311450112,"id_str":"663727599311450112","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}},"source_status_id":663727601219866625,"source_status_id_str":"663727601219866625","source_user_id":2294970690,"source_user_id_str":"2294970690"}]},"extended_entities":{"media":[{"id":663727599311450112,"id_str":"663727599311450112","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvCiU8AACQ1h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}},"source_status_id":663727601219866625,"source_status_id_str":"663727601219866625","source_user_id":2294970690,"source_user_id_str":"2294970690"},{"id":663727600024481792,"id_str":"663727600024481792","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvFMU8AA8D8h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvFMU8AA8D8h.png","url":"https:\/\/t.co\/ekJ8EQwoGg","display_url":"pic.twitter.com\/ekJ8EQwoGg","expanded_url":"http:\/\/twitter.com\/sup3rnovas\/status\/663727601219866625\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1000,"h":750,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}},"source_status_id":663727601219866625,"source_status_id_str":"663727601219866625","source_user_id":2294970690,"source_user_id_str":"2294970690"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568359936,"id_str":"663728026568359936","text":"@yt_CL49sweetie \u3055\u3068\u308a\u3093\u301c\\( *\u00b4\u03c9`* )\/\u304a\u305f\u3093\u3058\u3087\u3046\u3073\u3060\u3063\u305f\u306e\u306d\uff5e\u2661\u2661\u304a\u3081\u3067\u3068\u3046\\( *\u00b4\u03c9`* )\/\u307e\u305f\u307f\u3093\u306a\u3067\u3084\u307e\u3074\u30fc\u306e\u8a71\u3057\u305f\u3044\u306a\u301c\\( *\u00b4\u03c9`* )\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663681125953486848,"in_reply_to_status_id_str":"663681125953486848","in_reply_to_user_id":135862482,"in_reply_to_user_id_str":"135862482","in_reply_to_screen_name":"yt_CL49sweetie","user":{"id":875746741,"id_str":"875746741","name":"\u2741\u3042\u3084\u3061\u3083\u3093\u2741","screen_name":"mocopy49","location":null,"url":null,"description":"\u5c71\u4e0b\u667a\u4e45\u2740\u5343\u8449\u96c4\u5927\u3075\u305f\u3064\u306e\u4e16\u754c\u3067\u751f\u606f\u4e2d\u3001\u3001\u2661","protected":false,"verified":false,"followers_count":65,"friends_count":83,"listed_count":5,"favourites_count":325,"statuses_count":1533,"created_at":"Fri Oct 12 14:27:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596039770859376640\/xSo3tiz6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596039770859376640\/xSo3tiz6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875746741\/1440855088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yt_CL49sweetie","name":"\u22c8\u2445\u3055\u3068\u308a\u3093\u262a","id":135862482,"id_str":"135862482","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026568421376,"id_str":"663728026568421376","text":"#\u3042\u306a\u305f\u306e\u30d5\u30a1\u30fc\u30b9\u30c8\u30a2\u30eb\u30d0\u30e0\u53ce\u9332\u66f2\n\u30fb\u30d7\u30ec\u30a4\u6155\u60c5\n\u30fb\u30ea\u30a2\u30eb\u3092\u795e\u69d8\u304c\u304f\u308c\u305f\n\u30fb\u666e\u901a\u306b\u306a\u308d\u3046\u3058\u3083\u306a\u3044\u304b\n\u30fb\u62e1\u6563\u30d1\u30ec\u30fc\u30c9\n\u30fb\u5fc5\u8981\u304c\u5f3e\u3051\u305f\u306a\u3089\n\u30fb\u3086\u308b\u30ad\u30e3\u30e9\u30af\u30ed\u30ed\u30d9\u30f3\u30bc\u30f3\n\u30fb\u88cf\u9762\u306e\u5927\u5730\n\u30fb\u3055\u3088\u306a\u3089\u30de\u30b8\u30c3\u30af\u30c6\u30fc\u30d7\n\u30fb\u604b\u611b\u884c\u65b9\u4e0d\u660e\n\u2026\nhttps:\/\/t.co\/UcDbFucRWa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99660954,"id_str":"99660954","name":"\u82b3\u5ca1\u96c4\u6a39(\u5ddd\u5d0e\u30d2\u30ca)@11\/29\u6c60\u888b","screen_name":"Kawasaki_Hina","location":"\u6a2a\u9808\u8cc0\u93ae\u5b88\u5e9c","url":"http:\/\/nico.ms\/sm26179690","description":"\u96f6\u96db\u30e9\u30dc\u30e9\u30c8\u30ea\u30fc\uff08\u6771\u65b9\u30dc\u30fc\u30ab\u30eb\uff09\u306e\u6b4c\u4ee5\u5916\u5168\u90e8\u62c5\u5f53\u3001Pills,the Candy Girl\u306eVo\u3068Gt\u62c5\u5f53\u3001\u65b0\u7530\u7f8e\u6ce2\u62c5\u5f53","protected":false,"verified":false,"followers_count":1648,"friends_count":570,"listed_count":28,"favourites_count":7108,"statuses_count":83172,"created_at":"Sun Dec 27 07:09:06 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/690310088\/5280fd385515ba9cb697573a148623df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/690310088\/5280fd385515ba9cb697573a148623df.jpeg","profile_background_tile":true,"profile_link_color":"3FA82F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663697474427555840\/muJ9S5ej_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663697474427555840\/muJ9S5ej_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99660954\/1439402138","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3042\u306a\u305f\u306e\u30d5\u30a1\u30fc\u30b9\u30c8\u30a2\u30eb\u30d0\u30e0\u53ce\u9332\u66f2","indices":[0,17]}],"urls":[{"url":"https:\/\/t.co\/UcDbFucRWa","expanded_url":"http:\/\/appli-maker.jp\/analytic_apps\/25883\/results\/67612814","display_url":"appli-maker.jp\/analytic_apps\/\u2026","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067661"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572603392,"id_str":"663728026572603392","text":"@theRaid_yuuha \u304a\u304a\u304a\uff1f\uff01\ud83c\udf79\n\u697d\u3057\u305d\u3046\u3067\u3059\u306d(\u00b4\u0e51\u2022\u2010\u2022\u0e51`)\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723941291167744,"in_reply_to_status_id_str":"663723941291167744","in_reply_to_user_id":517239933,"in_reply_to_user_id_str":"517239933","in_reply_to_screen_name":"theRaid_yuuha","user":{"id":3241226472,"id_str":"3241226472","name":"\u3042\u3093\u306a","screen_name":"_xr7an7px_","location":"\u3042\u3093\u306a \u3053\u3093\u306a \u3042\u3093\u306a(\uff65\u2235\uff65)\u2661","url":null,"description":"\u30ea\u30d7 \u3068 \u3072\u3068\u308a\u3054\u3068( \u2022\u0300_\u2022\u0301)\u0e07\u201d","protected":false,"verified":false,"followers_count":7,"friends_count":32,"listed_count":0,"favourites_count":1442,"statuses_count":1225,"created_at":"Wed Jun 10 11:27:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650367588971577344\/onTCDX6g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650367588971577344\/onTCDX6g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241226472\/1441785894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"theRaid_yuuha","name":"theRaid.\u7531\u7fbd","id":517239933,"id_str":"517239933","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572623876,"id_str":"663728026572623876","text":"@katagiri_fanbot \u50d5\u306f\u5909\u614b\u3055\u3093\u3067\u306f\u3042\u308a\u307e\u305b\u3093!!!!\u7d33\u58eb\u3055\u3093\u3067\u3059!!!!!!!!!","source":"\u003ca href=\"http:\/\/makebot.sh\/\" rel=\"nofollow\"\u003e\u93e1\u97f3\u30ec\u30f3\u306e\u30d9\u30c3\u30c9\u306e\u3046\u3048\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726885927391232,"in_reply_to_status_id_str":"663726885927391232","in_reply_to_user_id":314005190,"in_reply_to_user_id_str":"314005190","in_reply_to_screen_name":"katagiri_fanbot","user":{"id":873373488,"id_str":"873373488","name":"\u93e1\u97f3\u30ec\u30f3 \u3067\u3059\u3088","screen_name":"erorendesuyo","location":"\u4e8c\u6b21\u5143\u30ef\u30fc\u30eb\u30c9\u93e1\u97f3\u5bb6","url":null,"description":"\u300c\u304a\u307e\u3058\u306a\u3044\u304b\u3051\u3066\u300d\u3063\u3068\u8a00\u3046\u3068\u3042\u306a\u305f\u306e\u4eca\u65e5\u306e\u904b\u52e2\u3092\u3046\u3089\u306a\u3044\u304a\u307e\u3058\u306a\u3044\u3092\u304b\u3051\u307e\u3059\u30021\u65e5\u4e00\u56de\u307e\u3067\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u3048\u3063\u3061\u3043\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\uff1e\uff1c","protected":false,"verified":false,"followers_count":1242,"friends_count":910,"listed_count":19,"favourites_count":5457,"statuses_count":669921,"created_at":"Thu Oct 11 10:31:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2705707645\/a68b889654b67b91fa8fbd78541d1c7b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2705707645\/a68b889654b67b91fa8fbd78541d1c7b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873373488\/1349968045","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"katagiri_fanbot","name":"\u7247\u6850\u7a14\uff08\u30a8\u30ed\u307f\u306e\uff09fanbot","id":314005190,"id_str":"314005190","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026585161732,"id_str":"663728026585161732","text":"\u30b9\u30de\u30dbRPG\u306f\u4eca\u3053\u308c\u3092\u3084\u3063\u3066\u308b\u3088\u3002\u4eca\u306e\u30b8\u30e7\u30d6\u306f\u3053\u308c\uff01\u3000https:\/\/t.co\/q5jpcXSCtm \u30b2\u30fc\u30e0\u5185\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u2192\u3000https:\/\/t.co\/AXOQwXi2CK","source":"\u003ca href=\"http:\/\/granbluefantasy.jp\/\" rel=\"nofollow\"\u003e\u30b0\u30e9\u30f3\u30d6\u30eb\u30fc \u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":414161286,"id_str":"414161286","name":"\u3089\u3093\u305f\u3093@\u30ca\u30a6\u30ed\u30de\u30f3\u30c6\u30a3\u30c3\u30af","screen_name":"RANTAN_mc","location":null,"url":null,"description":"\u8b0e\u306e\u55b6\u696d\u3067\u5404\u5730\u3092\u653e\u6d6a\u3057\u3066\u307e\u3059\u3002\u305d\u308d\u305d\u308d\u8ee2\u8077\u4e88\u5b9a\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":34,"friends_count":84,"listed_count":3,"favourites_count":4,"statuses_count":6173,"created_at":"Wed Nov 16 18:17:04 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653419380995284993\/wyEaVJ1d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653419380995284993\/wyEaVJ1d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/414161286\/1394759360","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AXOQwXi2CK","expanded_url":"http:\/\/gbf.game.mbga.jp\/#profile\/4563176","display_url":"gbf.game.mbga.jp\/#profile\/45631\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":545202238700789760,"id_str":"545202238700789760","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5DyjCiCIAALQy_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5DyjCiCIAALQy_.jpg","url":"https:\/\/t.co\/q5jpcXSCtm","display_url":"pic.twitter.com\/q5jpcXSCtm","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545202239434801152\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545202239434801152,"source_status_id_str":"545202239434801152","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"extended_entities":{"media":[{"id":545202238700789760,"id_str":"545202238700789760","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5DyjCiCIAALQy_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5DyjCiCIAALQy_.jpg","url":"https:\/\/t.co\/q5jpcXSCtm","display_url":"pic.twitter.com\/q5jpcXSCtm","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545202239434801152\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545202239434801152,"source_status_id_str":"545202239434801152","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067665"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576809985,"id_str":"663728026576809985","text":"@ionia_bot \u3059\u307e\u306d\u3047\u3002\u805e\u304d\u9003\u3057\u3061\u307e\u3063\u305f\u3082\u3046\u4e00\u5ea6\u8a71\u3057\u3066\u304f\u308c\u3002","source":"\u003ca href=\"https:\/\/twitter.com\/Tau_harbi_bot\" rel=\"nofollow\"\u003e\u91d1\u725b\u5bae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727395854114819,"in_reply_to_status_id_str":"663727395854114819","in_reply_to_user_id":1022172894,"in_reply_to_user_id_str":"1022172894","in_reply_to_screen_name":"ionia_bot","user":{"id":1021259106,"id_str":"1021259106","name":"\u30cf\u30fc\u30d3\u30f3\u30b8\u30e3\u30fc","screen_name":"Tau_harbi_bot","location":"\u91d1\u725b\u5bae","url":"http:\/\/twpf.jp\/Tau_harbi_bot","description":"\u8056\u95d8\u58eb\u661f\u77e2\u03a9\u306b\u767b\u5834\u3059\u308b\u7261\u725b\u5ea7\u306e\u9ec4\u91d1\u8056\u95d8\u58eb\u30cf\u30fc\u30d3\u30f3\u30b8\u30e3\u30fc\u306e\u975e\u516c\u5f0fBOT\u3067\u3059\u3002 \r\n\u6c38\u4e45\u8a66\u904b\u8ee2\r\n\u203b\u304a\u5225\u308c\u306e\u969b\u306f\u30d6\u30ed\u30c3\u30af\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\r\n\r\n\u8a73\u3057\u3044\u8aac\u660e\u66f8\u306fhttp:\/\/twpf.jp\/Tau_harbi_bot","protected":false,"verified":false,"followers_count":312,"friends_count":285,"listed_count":29,"favourites_count":3,"statuses_count":304349,"created_at":"Wed Dec 19 03:56:00 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/746530898\/efb5e6672817287fab5f9b5b2396566b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/746530898\/efb5e6672817287fab5f9b5b2396566b.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548305415201497090\/2rnkLjSj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548305415201497090\/2rnkLjSj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1021259106\/1362564891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ionia_bot","name":"\u30a4\u30aa\u30cb\u30a2","id":1022172894,"id_str":"1022172894","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551734272,"id_str":"663728026551734272","text":"RT @michelleringor: Who else cried \ud83d\ude22 https:\/\/t.co\/uYNrXqcIky","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1362965353,"id_str":"1362965353","name":"U got Bum thts Y I","screen_name":"DrBabzz","location":"S6 - NN2 - SLDN","url":"https:\/\/soundcloud.com\/djbabzz\/nothingbutafrobeats","description":"LOL NO HOMO - Multi-Genre DJ | Afrobeats\/ Hip-Hop Specialist | For Bookings: DJBABZZOFFICIAL@GMAIL.COM | SC:drtsmith","protected":false,"verified":false,"followers_count":1556,"friends_count":1401,"listed_count":1,"favourites_count":2911,"statuses_count":11220,"created_at":"Thu Apr 18 21:34:31 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656591046193905664\/kVkXZG5g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656591046193905664\/kVkXZG5g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1362965353\/1443811442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:34:07 +0000 2015","id":663348776254377984,"id_str":"663348776254377984","text":"Who else cried \ud83d\ude22 https:\/\/t.co\/uYNrXqcIky","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1348405579,"id_str":"1348405579","name":"Michelle","screen_name":"michelleringor","location":null,"url":"http:\/\/itsmichelleangela.tumblr.com","description":"Blessed \u2764 Personal acc: @oldsxvI","protected":false,"verified":false,"followers_count":63018,"friends_count":10520,"listed_count":92,"favourites_count":8113,"statuses_count":12724,"created_at":"Sat Apr 13 05:02:41 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614285706727284736\/PFt3-IAL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614285706727284736\/PFt3-IAL.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655511865502511104\/s87RTuJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655511865502511104\/s87RTuJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1348405579\/1446716816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2041,"favorite_count":2045,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663348766385147904,"id_str":"663348766385147904","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663348766385147904,"id_str":"663348766385147904","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663348768943665152,"id_str":"663348768943665152","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMNcUcAA4lmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMNcUcAA4lmm.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663348771380572160,"id_str":"663348771380572160","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMWhUsAAGEV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMWhUsAAGEV-.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"michelleringor","name":"Michelle","id":1348405579,"id_str":"1348405579","indices":[3,18]}],"symbols":[],"media":[{"id":663348766385147904,"id_str":"663348766385147904","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663348776254377984,"source_status_id_str":"663348776254377984","source_user_id":1348405579,"source_user_id_str":"1348405579"}]},"extended_entities":{"media":[{"id":663348766385147904,"id_str":"663348766385147904","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMD6UkAA7RbY.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663348776254377984,"source_status_id_str":"663348776254377984","source_user_id":1348405579,"source_user_id_str":"1348405579"},{"id":663348768943665152,"id_str":"663348768943665152","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMNcUcAA4lmm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMNcUcAA4lmm.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663348776254377984,"source_status_id_str":"663348776254377984","source_user_id":1348405579,"source_user_id_str":"1348405579"},{"id":663348771380572160,"id_str":"663348771380572160","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSwMWhUsAAGEV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSwMWhUsAAGEV-.jpg","url":"https:\/\/t.co\/uYNrXqcIky","display_url":"pic.twitter.com\/uYNrXqcIky","expanded_url":"http:\/\/twitter.com\/michelleringor\/status\/663348776254377984\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663348776254377984,"source_status_id_str":"663348776254377984","source_user_id":1348405579,"source_user_id_str":"1348405579"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576785408,"id_str":"663728026576785408","text":"Gpp https:\/\/t.co\/eXCvkfxdLd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4178232624,"id_str":"4178232624","name":"[Base]","screen_name":"Availableclsd","location":"eunbi - dhyn - bam","url":null,"description":"\u2022Welcome to Available!\u2022 New closed agency \u2022 \u007b no Mt time : 19.00-21.00 \u007d \n[b:2\/30 | g:5\/30] 'availableclsd' in bio!\nWishlist? #WishlistAvailable","protected":false,"verified":false,"followers_count":9,"friends_count":9,"listed_count":0,"favourites_count":11,"statuses_count":129,"created_at":"Mon Nov 09 10:37:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663672972859707392\/manfHDzz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663672972859707392\/manfHDzz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4178232624\/1447072530","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727525365833728,"quoted_status_id_str":"663727525365833728","quoted_status":{"created_at":"Mon Nov 09 14:39:08 +0000 2015","id":663727525365833728,"id_str":"663727525365833728","text":"apaa? https:\/\/t.co\/FkXElKhxnv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254418331,"id_str":"3254418331","name":"dahyun","screen_name":"AvE_dhyn","location":"Availclsd","url":null,"description":"rapper twice's - Kim Dahyun","protected":false,"verified":false,"followers_count":61,"friends_count":9,"listed_count":0,"favourites_count":93,"statuses_count":1114,"created_at":"Wed Jun 24 06:46:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658265754354106368\/2DxU0vZK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658265754354106368\/2DxU0vZK.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663683733749284864\/VipGK7rf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663683733749284864\/VipGK7rf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254418331\/1447069534","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726775856316417,"quoted_status_id_str":"663726775856316417","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FkXElKhxnv","expanded_url":"https:\/\/twitter.com\/Availableclsd\/status\/663726775856316417","display_url":"twitter.com\/Availableclsd\/\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eXCvkfxdLd","expanded_url":"https:\/\/twitter.com\/AvE_dhyn\/status\/663727525365833728","display_url":"twitter.com\/AvE_dhyn\/statu\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572582913,"id_str":"663728026572582913","text":"\u3066\u304b\u3001\u975e\u901a\u77e5\u306e\u96fb\u8a71\u3060\u3051\u3069\u756a\u53f7\u6559\u3048\u3066\u308b\u3084\u3064\u5c11\u306a\u3044\u304b\u3089\u591a\u5206\u77e5\u308a\u5408\u3044\u3060\u3088\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2786044640,"id_str":"2786044640","name":"\u5c0f\u6fa4 \u96c4\u58eb","screen_name":"nayo1011","location":"\u6e58\u5357\u4e43\u98a8 134","url":null,"description":"\u306b\u3063\u3071\u3053\u30fc\u3053\u30fc\u3055\u3093\u306d\u3093\u305b\u30fc","protected":false,"verified":false,"followers_count":343,"friends_count":300,"listed_count":0,"favourites_count":297,"statuses_count":6147,"created_at":"Tue Sep 02 14:03:25 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660431490765852672\/SWzaVa6F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660431490765852672\/SWzaVa6F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2786044640\/1438683295","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572558337,"id_str":"663728026572558337","text":"@afterfishy #dontsohai","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727973275598848,"in_reply_to_status_id_str":"663727973275598848","in_reply_to_user_id":3165630000,"in_reply_to_user_id_str":"3165630000","in_reply_to_screen_name":"afterfishy","user":{"id":1060323078,"id_str":"1060323078","name":"JLL","screen_name":"JiaLe9781","location":"Alternate Universe ","url":null,"description":null,"protected":false,"verified":false,"followers_count":47,"friends_count":36,"listed_count":1,"favourites_count":230,"statuses_count":5376,"created_at":"Fri Jan 04 12:25:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592791746641326081\/_kJdF1n0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592791746641326081\/_kJdF1n0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1060323078\/1436628793","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"dontsohai","indices":[12,22]}],"urls":[],"user_mentions":[{"screen_name":"afterfishy","name":"S\u00b3hhhy\u00bc","id":3165630000,"id_str":"3165630000","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026585137152,"id_str":"663728026585137152","text":"@narumi_t03 \n\u305f\u306e\u3074\u304b\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720737652346880,"in_reply_to_status_id_str":"663720737652346880","in_reply_to_user_id":1542945146,"in_reply_to_user_id_str":"1542945146","in_reply_to_screen_name":"narumi_t03","user":{"id":1459426332,"id_str":"1459426332","name":"\u6210\u7530\u3042\u304b\u308a","screen_name":"akari30A113","location":null,"url":"http:\/\/Instagram.com\/0930akari","description":"\u6b66\u5c71 \/ \u6a2a\u9808\u8cc0\u5927\u6d25\uff11\uff10\uff16\uff28\uff32\u9752\u8ecd @kounosuke02","protected":false,"verified":false,"followers_count":754,"friends_count":620,"listed_count":1,"favourites_count":613,"statuses_count":1527,"created_at":"Sun May 26 11:45:42 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659649774367346689\/snTkwIaC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659649774367346689\/snTkwIaC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459426332\/1446797458","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"narumi_t03","name":"\u611b\u7f8e","id":1542945146,"id_str":"1542945146","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067665"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560020480,"id_str":"663728026560020480","text":"RT @SLAMDUNKfanBOT: \u65e5\u672c\u4e2d\u306e\n\u516c\u5712\u306b\u3082 \n\u30d0\u30b9\u30b1\u30c3\u30c8\u30b3\u30fc\u30c8\u4f5c\u3063\u3066\u6b32\u3057\u3044\u4ebaRT\uff01 https:\/\/t.co\/0TahURmUYD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3135822872,"id_str":"3135822872","name":"\u307e\u3063\u3061\u30fc","screen_name":"1223Kabuto","location":null,"url":null,"description":"\u8c4a\u4e2d17\u4e2d\u2192\u6e0b\u9ad81\u5e74 \u91ce\u7403\u90e8 \u8ab0\u3067\u3082\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":265,"friends_count":240,"listed_count":0,"favourites_count":1692,"statuses_count":2305,"created_at":"Fri Apr 03 13:29:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663319614059737088\/Vv0Y11uf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663319614059737088\/Vv0Y11uf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3135822872\/1446127642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:11:39 +0000 2015","id":663645111113220096,"id_str":"663645111113220096","text":"\u65e5\u672c\u4e2d\u306e\n\u516c\u5712\u306b\u3082 \n\u30d0\u30b9\u30b1\u30c3\u30c8\u30b3\u30fc\u30c8\u4f5c\u3063\u3066\u6b32\u3057\u3044\u4ebaRT\uff01 https:\/\/t.co\/0TahURmUYD","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599262480,"id_str":"599262480","name":"\u30b9\u30e9\u30e0\u30c0\u30f3\u30af\u540d\u8a00\u753b\u50cf\u96c6\u3081\u307e\u3057\u305f\uff01","screen_name":"SLAMDUNKfanBOT","location":"\u65e5\u672c","url":null,"description":"\u30b9\u30e9\u30e0\u30c0\u30f3\u30af\u540d\u8a00\u3084\u753b\u50cf\u3092\u30cd\u30c3\u30c8\u304b\u3089\u96c6\u3081\u3066\u304d\u307e\u3057\u305f\u3002\u30b9\u30e9\u30e0\u30c0\u30f3\u30af\u304c\u597d\u304d\u306a\u4eba\u306f\u3001\u305c\u3072\u30d5\u30a9\u30ed\u30fc&\u30ea\u30c4\u30a4\u30fc\u30c8\u3092\u30e8\u30ed\u30b7\u30af\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":5556,"friends_count":1427,"listed_count":18,"favourites_count":1,"statuses_count":41267,"created_at":"Mon Jun 04 11:56:53 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034409093010\/4e71c1958c955d395482bf6e2e3ab5bc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034409093010\/4e71c1958c955d395482bf6e2e3ab5bc.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464560384607649792\/HwAshbwL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464560384607649792\/HwAshbwL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599262480\/1399580293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":213,"favorite_count":104,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":465015463169101824,"id_str":"465015463169101824","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","url":"https:\/\/t.co\/0TahURmUYD","display_url":"pic.twitter.com\/0TahURmUYD","expanded_url":"http:\/\/twitter.com\/SLAMDUNKfanBOT\/status\/465015464381267968\/photo\/1","type":"photo","sizes":{"medium":{"w":366,"h":239,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":366,"h":239,"resize":"fit"}},"source_status_id":465015464381267968,"source_status_id_str":"465015464381267968","source_user_id":599262480,"source_user_id_str":"599262480"}]},"extended_entities":{"media":[{"id":465015463169101824,"id_str":"465015463169101824","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","url":"https:\/\/t.co\/0TahURmUYD","display_url":"pic.twitter.com\/0TahURmUYD","expanded_url":"http:\/\/twitter.com\/SLAMDUNKfanBOT\/status\/465015464381267968\/photo\/1","type":"photo","sizes":{"medium":{"w":366,"h":239,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":366,"h":239,"resize":"fit"}},"source_status_id":465015464381267968,"source_status_id_str":"465015464381267968","source_user_id":599262480,"source_user_id_str":"599262480"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SLAMDUNKfanBOT","name":"\u30b9\u30e9\u30e0\u30c0\u30f3\u30af\u540d\u8a00\u753b\u50cf\u96c6\u3081\u307e\u3057\u305f\uff01","id":599262480,"id_str":"599262480","indices":[3,18]}],"symbols":[],"media":[{"id":465015463169101824,"id_str":"465015463169101824","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","url":"https:\/\/t.co\/0TahURmUYD","display_url":"pic.twitter.com\/0TahURmUYD","expanded_url":"http:\/\/twitter.com\/SLAMDUNKfanBOT\/status\/465015464381267968\/photo\/1","type":"photo","sizes":{"medium":{"w":366,"h":239,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":366,"h":239,"resize":"fit"}},"source_status_id":465015464381267968,"source_status_id_str":"465015464381267968","source_user_id":599262480,"source_user_id_str":"599262480"}]},"extended_entities":{"media":[{"id":465015463169101824,"id_str":"465015463169101824","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/BnQRGZlCEAA6WLC.png","url":"https:\/\/t.co\/0TahURmUYD","display_url":"pic.twitter.com\/0TahURmUYD","expanded_url":"http:\/\/twitter.com\/SLAMDUNKfanBOT\/status\/465015464381267968\/photo\/1","type":"photo","sizes":{"medium":{"w":366,"h":239,"resize":"fit"},"small":{"w":340,"h":222,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":366,"h":239,"resize":"fit"}},"source_status_id":465015464381267968,"source_status_id_str":"465015464381267968","source_user_id":599262480,"source_user_id_str":"599262480"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576797697,"id_str":"663728026576797697","text":"*\u0e40\u0e14\u0e34\u0e19\u0e44\u0e1b\u0e19\u0e31\u0e48\u0e07\u0e43\u0e15\u0e49\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e41\u0e25\u0e49\u0e27\u0e2b\u0e32\u0e27\u0e27\u0e2d\u0e14*","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3104660274,"id_str":"3104660274","name":"\u5b97\u4e09\u5de6\u6587\u5b57","screen_name":"Souza_THbot","location":null,"url":null,"description":"\u0e42\u0e0b\u0e2a\u0e30 \u0e0b\u0e32\u0e21\u0e2d\u0e19\u0e08\u0e34 : \u0e17\u0e49\u0e2d\u0e07\u0e1f\u0e49\u0e32\u0e19\u0e31\u0e48\u0e19\u0e2a\u0e39\u0e07\u0e08\u0e31\u0e07\u0e40\u0e19\u0e2d\u0e30.. \u0e40\u0e2d\u0e32\u0e25\u0e30 ..\u0e41\u0e15\u0e48\u0e21\u0e31\u0e19\u0e01\u0e47\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e04\u0e27\u0e32\u0e21\u0e1d\u0e31\u0e19 \u0e1d\u0e32\u0e01\u0e15\u0e31\u0e27\u0e14\u0e49\u0e27\u0e22\u0e25\u0e30 [\u0e15\u0e34\u0e0a\u0e21\u0e44\u0e14\u0e49\u0e17\u0e32\u0e07DM\u0e44\u0e14\u0e49\u0e40\u0e25\u0e22][display Cr. \u0e19\u0e32\u0e22\u0e17\u0e48\u0e32\u0e19\u0e40\u0e1e\u0e35\u0e22\u0e07\u0e1e\u0e2d\u0e19Cellahan ]","protected":false,"verified":false,"followers_count":335,"friends_count":173,"listed_count":12,"favourites_count":862,"statuses_count":16435,"created_at":"Mon Mar 23 11:12:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579969230675709953\/MOpHKBQ7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579969230675709953\/MOpHKBQ7.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660807957840433153\/Zx3Xl69E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660807957840433153\/Zx3Xl69E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104660274\/1427109499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026581094400,"id_str":"663728026581094400","text":"I'm at U.\u00dc. Teknik Bilimler MYO end\u00fcstriyel kal\u0131p\u00e7\u0131l\u0131k laboratuvar\u0131 https:\/\/t.co\/CRAjyrEl4D","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":880164738,"id_str":"880164738","name":"\u0130lker Can","screen_name":"ilkercn16","location":null,"url":null,"description":"Bursa \/ Uluda\u011f \u00dcniversitesi G\u00f6r\u00fckle \/ Yesil, Mavi \/ Bmw, Mercedes , Audi, Volkswagen, Seat leon \/ Atletico Madrid","protected":false,"verified":false,"followers_count":1068,"friends_count":2019,"listed_count":4,"favourites_count":408,"statuses_count":2070,"created_at":"Sun Oct 14 13:47:56 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/691731857\/ee903d04746f4b42b0fd42b3685feead.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/691731857\/ee903d04746f4b42b0fd42b3685feead.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588090560864464897\/gioKM86o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588090560864464897\/gioKM86o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880164738\/1429046410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[40.22496681,28.87729599]},"coordinates":{"type":"Point","coordinates":[28.87729599,40.22496681]},"place":{"id":"34bd381fe8e1144e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/34bd381fe8e1144e.json","place_type":"neighborhood","name":"G\u00f6r\u00fckle","full_name":"G\u00f6r\u00fckle, Bursa","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[28.658821,40.204727],[28.658821,40.285088],[28.934273,40.285088],[28.934273,40.204727]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CRAjyrEl4D","expanded_url":"https:\/\/www.swarmapp.com\/c\/hrtQepFENxI","display_url":"swarmapp.com\/c\/hrtQepFENxI","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080067664"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026581118976,"id_str":"663728026581118976","text":"RT @gio_antonelli: Passada","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1534960500,"id_str":"1534960500","name":"marcus","screen_name":"exmarcusx","location":null,"url":null,"description":"toda linda, toda top modelo, nossa senhora gloria a deus, linda igual a barbiezinha","protected":false,"verified":false,"followers_count":1518,"friends_count":790,"listed_count":5,"favourites_count":4545,"statuses_count":135844,"created_at":"Thu Jun 20 20:53:44 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643546345534550016\/uFCJ3IJZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643546345534550016\/uFCJ3IJZ.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662631524357963777\/Cr1oPhfC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662631524357963777\/Cr1oPhfC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1534960500\/1446763202","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jul 08 20:43:04 +0000 2014","id":486611448085614592,"id_str":"486611448085614592","text":"Passada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142448465,"id_str":"142448465","name":"Giovanna Antonelli","screen_name":"gio_antonelli","location":"Brasil","url":null,"description":"Atriz brasileira, M\u00e3e de 3 filhos.","protected":false,"verified":true,"followers_count":3019584,"friends_count":433,"listed_count":2914,"favourites_count":27,"statuses_count":17327,"created_at":"Mon May 10 22:47:04 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFDFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/161258985\/TWITTER_6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/161258985\/TWITTER_6.jpg","profile_background_tile":false,"profile_link_color":"22695D","profile_sidebar_border_color":"F4F6F7","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"7B188F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651889908521549824\/WPBkL90e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651889908521549824\/WPBkL90e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142448465\/1444257610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1461,"favorite_count":1119,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gio_antonelli","name":"Giovanna Antonelli","id":142448465,"id_str":"142448465","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080067664"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026581078017,"id_str":"663728026581078017","text":"@JeremiasCuta S\u00d3LO DIJO QUE HAY 20 MIL MUY MALOS ARBITRAJES EN ARGENTINA QUE DEFINIERON CAMPEONATOS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727832040886272,"in_reply_to_status_id_str":"663727832040886272","in_reply_to_user_id":300986930,"in_reply_to_user_id_str":"300986930","in_reply_to_screen_name":"JeremiasCuta","user":{"id":357292533,"id_str":"357292533","name":"Leo Ben\u00edtez","screen_name":"benitez_leo","location":"Montevideo (Uruguay)","url":"http:\/\/www.radio1010.com.uy","description":"PERIODISTA DEPORTIVO URUGUAYO \u00a8A Fondo\u00a8 Radio 1010 - ATM Radio de Madrid y Canal 5 TNU (ex-Clar\u00edn Deportivo - Atl\u00e1ntida FM 89.9 - Buscadores y Radio Sport 890)","protected":false,"verified":false,"followers_count":5047,"friends_count":5572,"listed_count":66,"favourites_count":1139,"statuses_count":107289,"created_at":"Thu Aug 18 04:12:20 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599529739263549442\/HY0tv0hm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599529739263549442\/HY0tv0hm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357292533\/1437486859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d0f5be1262dee9aa","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d0f5be1262dee9aa.json","place_type":"country","name":"Uruguay","full_name":"Uruguay","country_code":"UY","country":"Uruguay","bounding_box":{"type":"Polygon","coordinates":[[[-58.491052,-34.980163],[-58.491052,-30.085693],[-53.071505,-30.085693],[-53.071505,-34.980163]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JeremiasCuta","name":"Jere","id":300986930,"id_str":"300986930","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080067664"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560036865,"id_str":"663728026560036865","text":"@sqcrifice \u9001\u308a\u307e\u3057\u305f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727485821915136,"in_reply_to_status_id_str":"663727485821915136","in_reply_to_user_id":3038885437,"in_reply_to_user_id_str":"3038885437","in_reply_to_screen_name":"sqcrifice","user":{"id":3267294139,"id_str":"3267294139","name":"\u3046\u307e\u308b\u30fc\u3093","screen_name":"Ikemennfaaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":93,"friends_count":112,"listed_count":0,"favourites_count":28,"statuses_count":593,"created_at":"Fri Jul 03 16:15:34 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650575482795134976\/C_W6hOsX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650575482795134976\/C_W6hOsX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267294139\/1443944208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sqcrifice","name":"\u30c9\u30ca\u30eb\u30c9","id":3038885437,"id_str":"3038885437","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026581008384,"id_str":"663728026581008384","text":"RT @kkrumkrum: \u0e0a\u0e48\u0e27\u0e07\u0e19\u0e35\u0e49\u0e21\u0e35\u0e41\u0e15\u0e48\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e31\u0e07\u0e46 \u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e01\u0e23\u0e30\u0e40\u0e1b\u0e4b\u0e32\u0e15\u0e31\u0e07\u0e04\u0e4c\u0e22\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244778167,"id_str":"244778167","name":"NanZy","screen_name":"Angel_Nanzii","location":"Thailand","url":"http:\/\/www.facebook.com\/xriyaf","description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":183,"listed_count":0,"favourites_count":104,"statuses_count":924,"created_at":"Sun Jan 30 03:31:58 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000078566368\/238cfefa71767e7961fee49adca1a804.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000078566368\/238cfefa71767e7961fee49adca1a804.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661151245705461760\/hIMg5GT1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661151245705461760\/hIMg5GT1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244778167\/1446465715","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 12:26:59 +0000 2015","id":662244720173707264,"id_str":"662244720173707264","text":"\u0e0a\u0e48\u0e27\u0e07\u0e19\u0e35\u0e49\u0e21\u0e35\u0e41\u0e15\u0e48\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e1e\u0e31\u0e07\u0e46 \u0e15\u0e31\u0e49\u0e07\u0e41\u0e15\u0e48\u0e01\u0e23\u0e30\u0e40\u0e1b\u0e4b\u0e32\u0e15\u0e31\u0e07\u0e04\u0e4c\u0e22\u0e31\u0e19\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851938001,"id_str":"2851938001","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","screen_name":"kkrumkrum","location":"-\u0e23\u0e27\u0e21\u0e17\u0e38\u0e01\u0e21\u0e38\u0e02\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e41\u0e19\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e32\u0e23\u0e21-","url":"http:\/\/line.me\/ti\/p\/%40vbe6244k","description":"\u0e2d\u0e48\u0e32\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e34\u0e49\u0e21\u0e2d\u0e34\u0e19\u0e46\u0e01\u0e31\u0e19\u0e44\u0e1b5555\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e38\u0e01\u0e04\u0e19\u0e43\u0e08\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e04\u0e38\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e19\u0e49\u0e32\u0e325555555 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e19\u0e1f\u0e2d\u0e25\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30\u0e04\u0e49\u0e30\u0e08\u0e49\u0e27\u0e1a\u0e1a\u0e46\u25e1\u0308\u2661\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22\u0e19\u0e30\u0e04\u0e30\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 ig:kkrumkrum","protected":false,"verified":false,"followers_count":587290,"friends_count":173,"listed_count":70,"favourites_count":1,"statuses_count":3574,"created_at":"Sat Oct 11 12:11:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851938001\/1423663298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8802,"favorite_count":2265,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kkrumkrum","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","id":2851938001,"id_str":"2851938001","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080067664"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026559995904,"id_str":"663728026559995904","text":"Uniblue enumeration admirer little in point of: FlYvDOgv","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1238509416,"id_str":"1238509416","name":"ConorsFaith","screen_name":"ConorsFaith1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":138,"friends_count":2,"listed_count":23,"favourites_count":0,"statuses_count":80480,"created_at":"Sun Mar 03 10:18:13 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3450437250\/55fa527cb080174aaa9b6448073e0cdd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3450437250\/55fa527cb080174aaa9b6448073e0cdd_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564231169,"id_str":"663728026564231169","text":"@jrtkih \n\u305d\u308c\u306aww\u672c\u5f53\u306b\u4ef2\u3044\u3044\u5b50\u3057\u304b\n\u3080\u308a\uff61\uff9f(\uff9f\uff3e\u03c9\uff3e\uff9f)\uff9f\uff61\u7206\u7b11\n\u3050\u308a\u3053\uff34\uff25\uff2c\u3057\u3088\u30fc\u306d\u307e\u305f\u2661\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663560715161108480,"in_reply_to_status_id_str":"663560715161108480","in_reply_to_user_id":3220159386,"in_reply_to_user_id_str":"3220159386","in_reply_to_screen_name":"jrtkih","user":{"id":3229847444,"id_str":"3229847444","name":"\u3086\u3044\u306e\u3093('\uff65\uff74\uff65`)","screen_name":"yuinon_730","location":"\u3067\u304d\u308b\u5b50\u306e\u305e\u3080\u304f\u3093('\uff65\uff74\uff65`)\u261c\u2661\u2661","url":"http:\/\/twpf.jp\/yuinon_730","description":"\u2765\u00bb \u27b8 \u2661 \u2661 \u2661 \u2661 \u3053 \u305f \u304d \u306e \u305e \u3080 \u2661 \u2661 \u2661 \u2661 \u2765\u00bb \u27b8 \u30d0\u30ca\u30ca\u540c\u597d\u4f1a \u2654 my side @M323_s","protected":false,"verified":false,"followers_count":97,"friends_count":108,"listed_count":4,"favourites_count":602,"statuses_count":3006,"created_at":"Fri May 29 14:35:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661474856916004864\/qad97r4j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661474856916004864\/qad97r4j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229847444\/1446542851","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jrtkih","name":"\u3050\u308a\u3053@\u6ff5\u7530\u4e2d\u6bd2","id":3220159386,"id_str":"3220159386","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067660"} +{"delete":{"status":{"id":627132938086277121,"id_str":"627132938086277121","user_id":1474525243,"user_id_str":"1474525243"},"timestamp_ms":"1447080067864"}} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560000002,"id_str":"663728026560000002","text":"RT @IrfanAR_11: yang karen tu lagi terkejut beruk sampai mencarut tak tentu pasal @$#%^*& https:\/\/t.co\/KDrbEQT2Bi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320702003,"id_str":"320702003","name":"Kiminaj","screen_name":"HakimIzwan","location":"NFTORA, AMPANG","url":"http:\/\/Instagram.com\/hakim.izwan","description":"LIFT & TRANCE","protected":false,"verified":false,"followers_count":2639,"friends_count":977,"listed_count":6,"favourites_count":4892,"statuses_count":56140,"created_at":"Mon Jun 20 11:22:46 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160131451\/O1G3bM4c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160131451\/O1G3bM4c.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663248995356028928\/ZTBE6tId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663248995356028928\/ZTBE6tId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320702003\/1443520593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:40:06 +0000 2015","id":663697572154896384,"id_str":"663697572154896384","text":"yang karen tu lagi terkejut beruk sampai mencarut tak tentu pasal @$#%^*& https:\/\/t.co\/KDrbEQT2Bi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2688822162,"id_str":"2688822162","name":"valour","screen_name":"IrfanAR_11","location":"Las Vegas, Nevada","url":"http:\/\/instagram.com\/irfan_rahman23\/","description":"pahal stalk -_-","protected":false,"verified":false,"followers_count":138,"friends_count":86,"listed_count":0,"favourites_count":130,"statuses_count":14433,"created_at":"Tue Jul 29 01:44:41 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/552307096109060096\/WaT2QDIZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/552307096109060096\/WaT2QDIZ.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619874782859792384\/yPnKdBVo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619874782859792384\/yPnKdBVo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2688822162\/1406602820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663388395083706368,"quoted_status_id_str":"663388395083706368","quoted_status":{"created_at":"Sun Nov 08 16:11:33 +0000 2015","id":663388395083706368,"id_str":"663388395083706368","text":"Only 1990-1999 kids know this cockroach trick. Tipu kalau tak melompat masa first time jumpa. https:\/\/t.co\/FJIRkLRxM5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320702003,"id_str":"320702003","name":"Kiminaj","screen_name":"HakimIzwan","location":"NFTORA, AMPANG","url":"http:\/\/Instagram.com\/hakim.izwan","description":"LIFT & TRANCE","protected":false,"verified":false,"followers_count":2639,"friends_count":977,"listed_count":6,"favourites_count":4892,"statuses_count":56139,"created_at":"Mon Jun 20 11:22:46 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160131451\/O1G3bM4c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160131451\/O1G3bM4c.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663248995356028928\/ZTBE6tId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663248995356028928\/ZTBE6tId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320702003\/1443520593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663388341337878528,"id_str":"663388341337878528","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTULoGUcAAlO8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTULoGUcAAlO8I.jpg","url":"https:\/\/t.co\/FJIRkLRxM5","display_url":"pic.twitter.com\/FJIRkLRxM5","expanded_url":"http:\/\/twitter.com\/HakimIzwan\/status\/663388395083706368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663388341337878528,"id_str":"663388341337878528","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTULoGUcAAlO8I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTULoGUcAAlO8I.jpg","url":"https:\/\/t.co\/FJIRkLRxM5","display_url":"pic.twitter.com\/FJIRkLRxM5","expanded_url":"http:\/\/twitter.com\/HakimIzwan\/status\/663388395083706368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663388341421801474,"id_str":"663388341421801474","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTULoaVAAI5FL_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTULoaVAAI5FL_.jpg","url":"https:\/\/t.co\/FJIRkLRxM5","display_url":"pic.twitter.com\/FJIRkLRxM5","expanded_url":"http:\/\/twitter.com\/HakimIzwan\/status\/663388395083706368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KDrbEQT2Bi","expanded_url":"https:\/\/twitter.com\/HakimIzwan\/status\/663388395083706368","display_url":"twitter.com\/HakimIzwan\/sta\u2026","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KDrbEQT2Bi","expanded_url":"https:\/\/twitter.com\/HakimIzwan\/status\/663388395083706368","display_url":"twitter.com\/HakimIzwan\/sta\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"IrfanAR_11","name":"valour","id":2688822162,"id_str":"2688822162","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026555822080,"id_str":"663728026555822080","text":"\u4e00\u756a\u53ef\u611b\u3044\u52d5\u7269\u3063\u3066\u30cf\u30ea\u30cd\u30ba\u30df\u3060\u3088\u306d\u3001\u307b\u3093\u3068\u53ef\u611b\u3044 https:\/\/t.co\/HAFm38otc1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3671240953,"id_str":"3671240953","name":"\uff84\uff8f\uff84","screen_name":"Do_rq_","location":null,"url":null,"description":"@hate_tomato\u306e\u6fc0\u9078or\u7d61\u307f\u57a2\u3001\u9069\u5ea6\u306a\u611a\u75f4\u3092\u5410\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":217,"friends_count":25,"listed_count":9,"favourites_count":1741,"statuses_count":1293,"created_at":"Thu Sep 24 14:28:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662829151095644160\/epcG3NyU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662829151095644160\/epcG3NyU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3671240953\/1446471834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728016325935104,"id_str":"663728016325935104","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHUCVAAAQvUA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHUCVAAAQvUA.jpg","url":"https:\/\/t.co\/HAFm38otc1","display_url":"pic.twitter.com\/HAFm38otc1","expanded_url":"http:\/\/twitter.com\/Do_rq_\/status\/663728026555822080\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":495,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":336,"resize":"fit"},"medium":{"w":500,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728016325935104,"id_str":"663728016325935104","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHUCVAAAQvUA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHUCVAAAQvUA.jpg","url":"https:\/\/t.co\/HAFm38otc1","display_url":"pic.twitter.com\/HAFm38otc1","expanded_url":"http:\/\/twitter.com\/Do_rq_\/status\/663728026555822080\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":495,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":336,"resize":"fit"},"medium":{"w":500,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067658"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026551607296,"id_str":"663728026551607296","text":"So Proud .. :)))\n\n#ALDUBMissingRing https:\/\/t.co\/DIBkZ5f7Vo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3573797299,"id_str":"3573797299","name":"KirsteePia Ycong","screen_name":"kirsteepia","location":"Cebu City, Central Visayas","url":null,"description":"ChinitaGirl \u2764 Lovable , Sweet ,Caring , Smart , All Matters","protected":false,"verified":false,"followers_count":89,"friends_count":684,"listed_count":0,"favourites_count":10051,"statuses_count":702,"created_at":"Tue Sep 15 17:32:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658316267393150976\/2PsJXbO0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658316267393150976\/2PsJXbO0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3573797299\/1445075497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663589534647480320,"quoted_status_id_str":"663589534647480320","quoted_status":{"created_at":"Mon Nov 09 05:30:48 +0000 2015","id":663589534647480320,"id_str":"663589534647480320","text":"Nakakaproud talaga makita ang kapatid mo sa isang billboard. Grabe sya. (Pagbigyan na proud ate moment.) #ALDUBMissingRing","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147791622,"id_str":"147791622","name":"Niki Mendoza-Catalan","screen_name":"nicoletteannmc","location":"Bulacan","url":"http:\/\/nicoletteannmc.blogspot.com","description":"God's work in progress, a wife to John and Matti's very proud mom! (and it couldn't get any better than this.\u2764)","protected":false,"verified":false,"followers_count":274067,"friends_count":244,"listed_count":178,"favourites_count":2383,"statuses_count":18378,"created_at":"Tue May 25 02:09:22 +0000 2010","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4993ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087077323\/9fd51dcd99e4440ab0906bb52a34cf6b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087077323\/9fd51dcd99e4440ab0906bb52a34cf6b.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663261205667053568\/jXneL73W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663261205667053568\/jXneL73W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147791622\/1444439670","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[105,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[18,35]}],"urls":[{"url":"https:\/\/t.co\/DIBkZ5f7Vo","expanded_url":"https:\/\/twitter.com\/nicoletteannmc\/status\/663589534647480320","display_url":"twitter.com\/nicoletteannmc\u2026","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067657"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026576953344,"id_str":"663728026576953344","text":"RT @justnyyy: I'm Ready For This\ud83d\ude29\ud83d\ude0d\ud83d\ude0b https:\/\/t.co\/oXFrAUgIuT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3420964269,"id_str":"3420964269","name":"Kelly","screen_name":"_kellyirenex","location":null,"url":null,"description":"bermuda. \u2708\ufe0f scotland.","protected":false,"verified":false,"followers_count":241,"friends_count":322,"listed_count":0,"favourites_count":86,"statuses_count":2227,"created_at":"Thu Aug 13 21:37:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659116607348822016\/4ti_Ojei_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659116607348822016\/4ti_Ojei_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420964269\/1446827473","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:20:51 +0000 2015","id":663511531917844480,"id_str":"663511531917844480","text":"I'm Ready For This\ud83d\ude29\ud83d\ude0d\ud83d\ude0b https:\/\/t.co\/oXFrAUgIuT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223545863,"id_str":"223545863","name":".\u03b9\u043c\u03b1\u0455\u0438\u03c3\u0432\u2604","screen_name":"justnyyy","location":null,"url":null,"description":"sc: justnyyy","protected":false,"verified":false,"followers_count":7097,"friends_count":7067,"listed_count":6,"favourites_count":14471,"statuses_count":114438,"created_at":"Mon Dec 06 17:54:53 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522623479527395328\/qHbpX7y1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522623479527395328\/qHbpX7y1.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663118830286278656\/M_fkJloq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663118830286278656\/M_fkJloq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223545863\/1445109664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":656,"favorite_count":409,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":663511515631386624,"id_str":"663511515631386624","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justnyyy","name":".\u03b9\u043c\u03b1\u0455\u0438\u03c3\u0432\u2604","id":223545863,"id_str":"223545863","indices":[3,12]}],"symbols":[],"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"}]},"extended_entities":{"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"},{"id":663511515631386624,"id_str":"663511515631386624","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067663"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560131072,"id_str":"663728026560131072","text":"Up way too early. Should be a crime for I person to have to get up this early while on vacation.#errands","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24218076,"id_str":"24218076","name":"Kimmie","screen_name":"mistimimosa","location":"n\/a","url":null,"description":"Scorpio female living life and learning as I go.","protected":false,"verified":false,"followers_count":188,"friends_count":295,"listed_count":1,"favourites_count":204,"statuses_count":1038,"created_at":"Fri Mar 13 18:09:58 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"8042E3","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490039978290724865\/bIZ4zAos_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490039978290724865\/bIZ4zAos_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24218076\/1402521060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"errands","indices":[97,105]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080067659"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026564317184,"id_str":"663728026564317184","text":"#\u062a\u0635\u0645\u064a\u0645\u064a_\u0647\u064a\u0627_\u0646\u0628\u062f\u0639# https:\/\/t.co\/JuMpgMcREJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":796643378,"id_str":"796643378","name":"\u265b\u0633\u0640\u0671\u0695\u06be \u0671\u0627\u0644\u0642\u0640\u062d\u0637\u0627\u0646\u0640\u064a\u2654","screen_name":"20012Sa25","location":"\u062c\u0640\u0640\u062f\u0647","url":null,"description":"\u2661\u0625\u062d\u062f\u0649 \u0639\u064a\u0650\u0646\u0651\u0627\u064a \u0623\u0645\u064a \u0648\u0627\u0644\u0623\u062e\u0631\u0649 \u0632\u0648\u062c\u064a .. \n\u0637\u0627\u0644\u0628\u0629 \u062c\u0627\u0645\u0639\u064a\u0629 \u0641\u064a \u062c\u0627\u0645\u0639\u0629 \u0639\u0632\u0648\u0632 \u062c\u062f\u0629\u060c\u060c\u060c \u0639\u0644\u0648\u0645 \u0625\u062f\u0627\u0631\u064a\u0629","protected":false,"verified":false,"followers_count":1215,"friends_count":2068,"listed_count":0,"favourites_count":102,"statuses_count":5197,"created_at":"Sat Sep 01 18:42:30 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000476611661\/de66f2e5071cc72ba348ef3276d6cbbc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000476611661\/de66f2e5071cc72ba348ef3276d6cbbc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796643378\/1379941361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728011850719236,"id_str":"663728011850719236","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHDXWoAQ16yh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHDXWoAQ16yh.jpg","url":"https:\/\/t.co\/JuMpgMcREJ","display_url":"pic.twitter.com\/JuMpgMcREJ","expanded_url":"http:\/\/twitter.com\/20012Sa25\/status\/663728026564317184\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728011850719236,"id_str":"663728011850719236","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHDXWoAQ16yh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHDXWoAQ16yh.jpg","url":"https:\/\/t.co\/JuMpgMcREJ","display_url":"pic.twitter.com\/JuMpgMcREJ","expanded_url":"http:\/\/twitter.com\/20012Sa25\/status\/663728026564317184\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080067660"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026572558336,"id_str":"663728026572558336","text":"\u8b72\u6e21\u30fb\u4ea4\u63db\n\u5200\u5263\u4e71\u821e \u3068\u3046\u3089\u3076 mini\u30af\u30ea\u30a2\u30d5\u30a1\u30a4\u30eb\u30b3\u30ec\u30af\u30b7\u30e7\u30f3\n\u6c42:\u58f1\u301c\u53c2\u2192100\u5186\u3001\u56db\u2192200\u5186\n\u4ea4\u63db\u306e\u5834\u5408\u306f\u5927\u5036\u5229\u4f3d\u7f85\n14\u65e5\u6c60\u888b\u624b\u6e21\u3057\u512a\u5148\n+\u9001\u6599\u3067\u90f5\u9001\u306f3\u679a\u4ee5\u4e0a\n\u4ed6\u30c4\u30a4\u30fc\u30c8\u542b\u3081\u307e\u3068\u3081\u3066\u306e\u65b9\u512a\u5148 https:\/\/t.co\/r3T0UVJdJc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1946182104,"id_str":"1946182104","name":"\u7a7a@\u30b0\u30c3\u30ba\u752814\u65e5\u6c60\u888b\u3042\u3093\u30b9\u30bf\u30ab\u30d5\u30a7","screen_name":"kuu_goods122","location":"\u6771\u4eac_\u571f\u65e5\u795d\u90fd\u5185\u624b\u6e21\u3057\u53ef\u80fd\u2192\u512a\u5148","url":null,"description":"\u793e\u4f1a\u4eba\u306e\u305f\u3081\u304a\u8fd4\u4e8b\u9045\u304f\u306a\u308a\u307e\u3059 \u3002\u672c\u30a2\u30ab\u9375\u4ed8\u304d\u306e\u305f\u3081\u4f5c\u6210\u3057\u305f\u30b0\u30c3\u30ba\u53d6\u5f15\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u3042\u3093\u30b9\u30bf,\u5200\u5263\u4e71\u821e,\u30c6\u30a4\u30eb\u30ba,K,\u30d8\u30bf\u30ea\u30a2,\u7b49\u3005\u2026\u56de\u53ce\u306f\u3057\u3066\u304a\u308a\u307e\u305b\u3093\u306e\u3067\u8cb7\u53d6\u5e0c\u671b\u306e\u304a\u65ad\u308a\u3001\u81ea\u5206\u304c\u597d\u304d\u306a\u30ad\u30e3\u30e9\u3067\u3082\u8b72\u6e21\u4ea4\u63db\u3092\u884c\u3044\u307e\u3059\u3002\u3054\u4e86\u627f\u304a\u9858\u3044\u3057\u307e\u3059\u3001","protected":false,"verified":false,"followers_count":64,"friends_count":68,"listed_count":0,"favourites_count":2,"statuses_count":143,"created_at":"Tue Oct 08 08:29:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590343168601640961\/m4rIhh_L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590343168601640961\/m4rIhh_L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1946182104\/1411196318","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728010760089600,"id_str":"663728010760089600","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG_TU8AAA3Nd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG_TU8AAA3Nd.jpg","url":"https:\/\/t.co\/r3T0UVJdJc","display_url":"pic.twitter.com\/r3T0UVJdJc","expanded_url":"http:\/\/twitter.com\/kuu_goods122\/status\/663728026572558336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":866,"h":619,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728010760089600,"id_str":"663728010760089600","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG_TU8AAA3Nd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG_TU8AAA3Nd.jpg","url":"https:\/\/t.co\/r3T0UVJdJc","display_url":"pic.twitter.com\/r3T0UVJdJc","expanded_url":"http:\/\/twitter.com\/kuu_goods122\/status\/663728026572558336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":866,"h":619,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}},{"id":663728010772676608,"id_str":"663728010772676608","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG_WVAAAc3hm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG_WVAAAc3hm.jpg","url":"https:\/\/t.co\/r3T0UVJdJc","display_url":"pic.twitter.com\/r3T0UVJdJc","expanded_url":"http:\/\/twitter.com\/kuu_goods122\/status\/663728026572558336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":896,"h":640,"resize":"fit"},"medium":{"w":600,"h":428,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"}}},{"id":663728010772672513,"id_str":"663728010772672513","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG_WU8AEPXRB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG_WU8AEPXRB.jpg","url":"https:\/\/t.co\/r3T0UVJdJc","display_url":"pic.twitter.com\/r3T0UVJdJc","expanded_url":"http:\/\/twitter.com\/kuu_goods122\/status\/663728026572558336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728010894307328,"id_str":"663728010894307328","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG_zU8AAMcxY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG_zU8AAMcxY.jpg","url":"https:\/\/t.co\/r3T0UVJdJc","display_url":"pic.twitter.com\/r3T0UVJdJc","expanded_url":"http:\/\/twitter.com\/kuu_goods122\/status\/663728026572558336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067662"} +{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026560000000,"id_str":"663728026560000000","text":"\uff7b\uff86\uff83\uff9e\uff72\uff7f\uff9d\u805e\u3044\u3066\u66b4\u308c\u56de\u308a\u305f\u3044","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2795929844,"id_str":"2795929844","name":"\u3075\u307f\u301c\u3093@11\/22\u5927\u78ef\u30d4\u30e5\u30a2\u30d3\u30ae\u30ca\u30fc","screen_name":"06Goriosi","location":"\u79cb\u8449\u3001\u30d1\u30ec\u30b5\u30a4\u3001\u8352\u30b5\u30a4","url":null,"description":"\u9ad82\u30ed\u30fc\u30c9\u4e57\u308a\u306e\u307b\u306e\u30ad\u30c1\u3067\u3075\u3000\u30a2\u30a4\u30de\u30b9\u306f\u674f\u3068\u6211\u90a3\u8987\u3061\u3083\u3093\u597d\u304d\u3067\u3059\uff01FUJI\u306eRoubaix Aure\u305f\u3093\u611b\u3057\u3066\u308b\u3000\u3046\u308b\u3055\u304f\u3066\u6c5a\u304f\u3066\u3046\u308b\u3055\u3044\u304b\u3089\u30d5\u30a9\u30ed\u30fc\u306f\u30aa\u30b9\u30b9\u30e1\u3057\u306a\u3044\uff7f\uff9e\u3000\u3000\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3059\u308b\uff7f\uff9e\u301c","protected":false,"verified":false,"followers_count":516,"friends_count":586,"listed_count":17,"favourites_count":18396,"statuses_count":37579,"created_at":"Sun Sep 07 13:27:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640416018712555520\/NUM2oAy8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640416018712555520\/NUM2oAy8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2795929844\/1444063733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080067659"} +{"delete":{"status":{"id":663724079728472064,"id_str":"663724079728472064","user_id":2460163784,"user_id_str":"2460163784"},"timestamp_ms":"1447080068354"}} +{"delete":{"status":{"id":657064032470507520,"id_str":"657064032470507520","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080068516"}} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750261248,"id_str":"663728030750261248","text":"RT @__princessrai: \ud83d\udc96\ud83d\udc8d https:\/\/t.co\/87Rkrw8bP2","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39892042,"id_str":"39892042","name":"You Sleep! CYL.","screen_name":"MakeYoGurl_Leak","location":"Enlightened (Lucky 7) ","url":null,"description":"#RBG #StonerNation #StonerLove","protected":false,"verified":false,"followers_count":5006,"friends_count":3374,"listed_count":60,"favourites_count":12307,"statuses_count":111455,"created_at":"Thu May 14 01:20:24 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623236166033092608\/tF3fPF4x.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623236166033092608\/tF3fPF4x.jpg","profile_background_tile":true,"profile_link_color":"ED1515","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"FF4542","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548182608018821121\/mSXflISx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548182608018821121\/mSXflISx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39892042\/1419531828","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:31 +0000 2015","id":663726618452598784,"id_str":"663726618452598784","text":"\ud83d\udc96\ud83d\udc8d https:\/\/t.co\/87Rkrw8bP2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312826492,"id_str":"312826492","name":"rai :-)","screen_name":"__princessrai","location":"Georgia, USA","url":"http:\/\/www.forever21.com","description":"KIE\u2764\ufe0f #celtics #TEAMaytch4Life\u2764 \ufe0f","protected":false,"verified":false,"followers_count":11288,"friends_count":11283,"listed_count":9,"favourites_count":9289,"statuses_count":37757,"created_at":"Tue Jun 07 18:41:41 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000004863168\/c40143772b6f8a00015fd5c63a581aba.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000004863168\/c40143772b6f8a00015fd5c63a581aba.jpeg","profile_background_tile":true,"profile_link_color":"436614","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2A2B2B","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538578014781440\/YakEPKfr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538578014781440\/YakEPKfr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312826492\/1446416296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726615101202436,"id_str":"663726615101202436","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","url":"https:\/\/t.co\/87Rkrw8bP2","display_url":"pic.twitter.com\/87Rkrw8bP2","expanded_url":"http:\/\/twitter.com\/__princessrai\/status\/663726618452598784\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726615101202436,"id_str":"663726615101202436","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","url":"https:\/\/t.co\/87Rkrw8bP2","display_url":"pic.twitter.com\/87Rkrw8bP2","expanded_url":"http:\/\/twitter.com\/__princessrai\/status\/663726618452598784\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__princessrai","name":"rai :-)","id":312826492,"id_str":"312826492","indices":[3,17]}],"symbols":[],"media":[{"id":663726615101202436,"id_str":"663726615101202436","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","url":"https:\/\/t.co\/87Rkrw8bP2","display_url":"pic.twitter.com\/87Rkrw8bP2","expanded_url":"http:\/\/twitter.com\/__princessrai\/status\/663726618452598784\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663726618452598784,"source_status_id_str":"663726618452598784","source_user_id":312826492,"source_user_id_str":"312826492"}]},"extended_entities":{"media":[{"id":663726615101202436,"id_str":"663726615101202436","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH1wEUYAQ3l14.jpg","url":"https:\/\/t.co\/87Rkrw8bP2","display_url":"pic.twitter.com\/87Rkrw8bP2","expanded_url":"http:\/\/twitter.com\/__princessrai\/status\/663726618452598784\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663726618452598784,"source_status_id_str":"663726618452598784","source_user_id":312826492,"source_user_id_str":"312826492"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783823872,"id_str":"663728030783823872","text":"Jaja dice que estaba re loco y ni fumo \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3261602831,"id_str":"3261602831","name":"Micc","screen_name":"MicaGoux","location":"Mercedes , Uruguay","url":null,"description":"Nacional\u2764","protected":false,"verified":false,"followers_count":232,"friends_count":248,"listed_count":0,"favourites_count":70,"statuses_count":1530,"created_at":"Sat May 16 14:22:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658440157171945472\/57bwMAYv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658440157171945472\/57bwMAYv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3261602831\/1444423854","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030779645952,"id_str":"663728030779645952","text":"RT @soutosco: antigamente 11 da manh\u00e3 fim de semana ainda era madrugada pra mim hj em dia d\u00e1 10 da manh\u00e3 eu ja to 200% acordado.\u2026 perdi min\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2264736590,"id_str":"2264736590","name":"\u3164","screen_name":"vitoriascaires","location":null,"url":null,"description":"Um vaso de cristal com flores mortas","protected":false,"verified":false,"followers_count":601,"friends_count":315,"listed_count":1,"favourites_count":371,"statuses_count":11842,"created_at":"Fri Dec 27 18:20:03 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650704954655686656\/4TlsYYWm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650704954655686656\/4TlsYYWm.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659041387896307712\/UuStl8xD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659041387896307712\/UuStl8xD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2264736590\/1445786927","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:56:50 +0000 2015","id":663339394577903616,"id_str":"663339394577903616","text":"antigamente 11 da manh\u00e3 fim de semana ainda era madrugada pra mim hj em dia d\u00e1 10 da manh\u00e3 eu ja to 200% acordado.\u2026 perdi minhas habilidades","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85002511,"id_str":"85002511","name":"gabreu f","screen_name":"soutosco","location":"joinville, sc","url":null,"description":"n sei mas acho q sei la toscontato@gmail.com","protected":false,"verified":false,"followers_count":171954,"friends_count":174,"listed_count":1302,"favourites_count":8631,"statuses_count":49935,"created_at":"Sun Oct 25 03:41:03 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544634385\/fds.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544634385\/fds.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"00178C","profile_sidebar_fill_color":"000000","profile_text_color":"5E5E5E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654449435531956224\/Fwb8a-f3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654449435531956224\/Fwb8a-f3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85002511\/1391897839","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":499,"favorite_count":279,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soutosco","name":"gabreu f","id":85002511,"id_str":"85002511","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080068665"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762852352,"id_str":"663728030762852352","text":"RT @conexaobieber: Justin cantando \"Sorry\" no The Ellen Show: https:\/\/t.co\/W0ImzNrQ81","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153834680,"id_str":"153834680","name":"kauany sousa","screen_name":"kauanySousa","location":null,"url":null,"description":"insta: @kauanysousa \/ Rj \u2649\ufe0f","protected":false,"verified":false,"followers_count":450,"friends_count":396,"listed_count":0,"favourites_count":5753,"statuses_count":8624,"created_at":"Wed Jun 09 17:21:29 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663535595902410754\/3-TwM9gR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663535595902410754\/3-TwM9gR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153834680\/1447034228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:07 +0000 2015","id":663722489814622208,"id_str":"663722489814622208","text":"Justin cantando \"Sorry\" no The Ellen Show: https:\/\/t.co\/W0ImzNrQ81","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178038882,"id_str":"178038882","name":"Conex\u00e3o Bieber","screen_name":"conexaobieber","location":"Brasil","url":"http:\/\/www.conexaobieber.com.br","description":"Sua fonte atualizada com not\u00edcias, fotos e v\u00eddeos do cantor Justin Bieber.\n\nFale conosco: contato@conexaobieber.com.br","protected":false,"verified":false,"followers_count":131793,"friends_count":2291,"listed_count":391,"favourites_count":4009,"statuses_count":125017,"created_at":"Fri Aug 13 18:19:22 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445734108715425792\/6sOjsYsF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445734108715425792\/6sOjsYsF.png","profile_background_tile":false,"profile_link_color":"5E0F5D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655551312063549441\/sp-kFkzq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655551312063549441\/sp-kFkzq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178038882\/1445130569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":81,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721872585072641,"id_str":"663721872585072641","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","url":"https:\/\/t.co\/W0ImzNrQ81","display_url":"pic.twitter.com\/W0ImzNrQ81","expanded_url":"http:\/\/twitter.com\/conexaobieber\/status\/663722489814622208\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721872585072641,"id_str":"663721872585072641","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","url":"https:\/\/t.co\/W0ImzNrQ81","display_url":"pic.twitter.com\/W0ImzNrQ81","expanded_url":"http:\/\/twitter.com\/conexaobieber\/status\/663722489814622208\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":29997,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/pl\/1MiSy73_l17P49wE.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/640x360\/gckQYik0awmgs8d4.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/pl\/1MiSy73_l17P49wE.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/320x180\/B8aRke8ZZFd7gHM4.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/1280x720\/6QoKKCFVIf8ODaSn.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/640x360\/gckQYik0awmgs8d4.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"conexaobieber","name":"Conex\u00e3o Bieber","id":178038882,"id_str":"178038882","indices":[3,17]}],"symbols":[],"media":[{"id":663721872585072641,"id_str":"663721872585072641","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","url":"https:\/\/t.co\/W0ImzNrQ81","display_url":"pic.twitter.com\/W0ImzNrQ81","expanded_url":"http:\/\/twitter.com\/conexaobieber\/status\/663722489814622208\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663722489814622208,"source_status_id_str":"663722489814622208","source_user_id":178038882,"source_user_id_str":"178038882"}]},"extended_entities":{"media":[{"id":663721872585072641,"id_str":"663721872585072641","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663721872585072641\/pu\/img\/6JqWVQM7TKnituEY.jpg","url":"https:\/\/t.co\/W0ImzNrQ81","display_url":"pic.twitter.com\/W0ImzNrQ81","expanded_url":"http:\/\/twitter.com\/conexaobieber\/status\/663722489814622208\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663722489814622208,"source_status_id_str":"663722489814622208","source_user_id":178038882,"source_user_id_str":"178038882","video_info":{"aspect_ratio":[16,9],"duration_millis":29997,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/pl\/1MiSy73_l17P49wE.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/640x360\/gckQYik0awmgs8d4.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/pl\/1MiSy73_l17P49wE.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/320x180\/B8aRke8ZZFd7gHM4.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/1280x720\/6QoKKCFVIf8ODaSn.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663721872585072641\/pu\/vid\/640x360\/gckQYik0awmgs8d4.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762803200,"id_str":"663728030762803200","text":"@marinaPUNTO ma quando si lavora in team,le battute fra i colleghi si fanno mica tutti si vogliono scopare fra di loro \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727277763665920,"in_reply_to_status_id_str":"663727277763665920","in_reply_to_user_id":390898294,"in_reply_to_user_id_str":"390898294","in_reply_to_screen_name":"marinaPUNTO","user":{"id":485095965,"id_str":"485095965","name":"My\u2728","screen_name":"CraZyyPassion","location":"Creo dipedenza ....","url":null,"description":"Amami o Odiami, entrambi sono a mio favore. Se mi Ami saro' sempre nel tuo Cuore. Se mi Odi saro' sempre nella tua Mente. W. S.","protected":false,"verified":false,"followers_count":7415,"friends_count":595,"listed_count":64,"favourites_count":34706,"statuses_count":134575,"created_at":"Mon Feb 06 20:41:24 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663702322976006145\/GglpPHJj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663702322976006145\/GglpPHJj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/485095965\/1446552423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marinaPUNTO","name":"STACEPPA","id":390898294,"id_str":"390898294","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762844161,"id_str":"663728030762844161","text":"RT @MrBumbleBeeTuna: There will be No Way Out.\n#TheWalkingDead https:\/\/t.co\/z3NQ1Djr8d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3402924477,"id_str":"3402924477","name":"~stacymarie~","screen_name":"Marie03641935","location":null,"url":null,"description":"a proud mother of two beautiful children #greys #htgawm #news #privetpractice #oldschool90210 #ramsey #twd","protected":false,"verified":false,"followers_count":126,"friends_count":435,"listed_count":0,"favourites_count":74,"statuses_count":578,"created_at":"Tue Aug 04 17:04:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663049738279886848\/MZV8hCoW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663049738279886848\/MZV8hCoW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3402924477\/1446918405","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:41:55 +0000 2015","id":663698029371908096,"id_str":"663698029371908096","text":"There will be No Way Out.\n#TheWalkingDead https:\/\/t.co\/z3NQ1Djr8d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543998045,"id_str":"543998045","name":"tom","screen_name":"MrBumbleBeeTuna","location":"#WSCLondon","url":"http:\/\/ask.fm\/mrbumblebeetuna","description":"i've unstanned andrew lincoln","protected":false,"verified":false,"followers_count":1342,"friends_count":397,"listed_count":14,"favourites_count":19302,"statuses_count":16577,"created_at":"Tue Apr 03 05:27:07 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661711094843580416\/pj3F6YqV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661711094843580416\/pj3F6YqV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543998045\/1446598746","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":25,"entities":{"hashtags":[{"text":"TheWalkingDead","indices":[26,41]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663698022623260672,"id_str":"663698022623260672","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","url":"https:\/\/t.co\/z3NQ1Djr8d","display_url":"pic.twitter.com\/z3NQ1Djr8d","expanded_url":"http:\/\/twitter.com\/MrBumbleBeeTuna\/status\/663698029371908096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":700,"resize":"fit"},"medium":{"w":500,"h":700,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698022623260672,"id_str":"663698022623260672","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","url":"https:\/\/t.co\/z3NQ1Djr8d","display_url":"pic.twitter.com\/z3NQ1Djr8d","expanded_url":"http:\/\/twitter.com\/MrBumbleBeeTuna\/status\/663698029371908096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":700,"resize":"fit"},"medium":{"w":500,"h":700,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TheWalkingDead","indices":[47,62]}],"urls":[],"user_mentions":[{"screen_name":"MrBumbleBeeTuna","name":"tom","id":543998045,"id_str":"543998045","indices":[3,19]}],"symbols":[],"media":[{"id":663698022623260672,"id_str":"663698022623260672","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","url":"https:\/\/t.co\/z3NQ1Djr8d","display_url":"pic.twitter.com\/z3NQ1Djr8d","expanded_url":"http:\/\/twitter.com\/MrBumbleBeeTuna\/status\/663698029371908096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":700,"resize":"fit"},"medium":{"w":500,"h":700,"resize":"fit"}},"source_status_id":663698029371908096,"source_status_id_str":"663698029371908096","source_user_id":543998045,"source_user_id_str":"543998045"}]},"extended_entities":{"media":[{"id":663698022623260672,"id_str":"663698022623260672","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt1cyWsAAPLB8.jpg","url":"https:\/\/t.co\/z3NQ1Djr8d","display_url":"pic.twitter.com\/z3NQ1Djr8d","expanded_url":"http:\/\/twitter.com\/MrBumbleBeeTuna\/status\/663698029371908096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":700,"resize":"fit"},"medium":{"w":500,"h":700,"resize":"fit"}},"source_status_id":663698029371908096,"source_status_id_str":"663698029371908096","source_user_id":543998045,"source_user_id_str":"543998045"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775418880,"id_str":"663728030775418880","text":"RT @harrypieprzylou: B\u0141AGAM JE\u015aLI MNIE KOJARZYCIE PO PROSTU DAJCIE MI FOLLOW I #RT BO PR\u00d3BUJE ODSYSKA\u0106 FOLLOWERS\u00d3W TO BARDZO WAZNE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989204949,"id_str":"2989204949","name":"hanulka","screen_name":"MULLINGARVNCE","location":"little mix followed me 100915","url":"http:\/\/my-little-pretty-world-aw.tumblr.com","description":"* \u00b0\u00b7 niall james horan from one direction is my sexual orientation, my religion, my political, my favourite color * \u00b0\u00b7","protected":false,"verified":false,"followers_count":1696,"friends_count":1301,"listed_count":4,"favourites_count":2470,"statuses_count":21463,"created_at":"Wed Jan 21 07:43:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565821977286303744\/B7uDH7Pw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565821977286303744\/B7uDH7Pw.jpeg","profile_background_tile":true,"profile_link_color":"990033","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662628146588569601\/JGPK6GV6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662628146588569601\/JGPK6GV6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989204949\/1446818173","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:41:04 +0000 2015","id":663622315612205056,"id_str":"663622315612205056","text":"B\u0141AGAM JE\u015aLI MNIE KOJARZYCIE PO PROSTU DAJCIE MI FOLLOW I #RT BO PR\u00d3BUJE ODSYSKA\u0106 FOLLOWERS\u00d3W TO BARDZO WAZNE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4145449528,"id_str":"4145449528","name":"hi h(orny)arry","screen_name":"harrypieprzylou","location":"iaoz","url":null,"description":"lost 27k and harry's follow","protected":false,"verified":false,"followers_count":490,"friends_count":948,"listed_count":0,"favourites_count":41,"statuses_count":292,"created_at":"Mon Nov 09 00:17:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663511489865740289\/DFx5ffD4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663511489865740289\/DFx5ffD4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4145449528\/1447028460","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":138,"favorite_count":8,"entities":{"hashtags":[{"text":"RT","indices":[58,61]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT","indices":[79,82]}],"urls":[],"user_mentions":[{"screen_name":"harrypieprzylou","name":"hi h(orny)arry","id":4145449528,"id_str":"4145449528","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030767063044,"id_str":"663728030767063044","text":"RT @FixYouEs: lo peor es que llorar no cambia las cosas.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3337696589,"id_str":"3337696589","name":"\u10e6 \u03b7o \u0442\u0454 \u03bd\u03b1 g\u03c5\u0455\u0442\u03b1r \u10e6","screen_name":"Mar_Gomez__","location":"Capilla del Se\u00f1or, Argentina","url":"https:\/\/www.facebook.com\/mar.gomez.7121","description":"- Ntvg llenas mi alma *-* | La beriso | Las pastillas del abuelo | Callejeros | La vela puerca | Club atl\u00e9tico river plate \u2665 | QUE SEA ROCK !","protected":false,"verified":false,"followers_count":1161,"friends_count":1418,"listed_count":2,"favourites_count":1002,"statuses_count":9418,"created_at":"Sat Jun 20 21:12:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628102694994079744\/VfNO2abz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628102694994079744\/VfNO2abz.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661274915648249856\/GSgLKeFi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661274915648249856\/GSgLKeFi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3337696589\/1445964719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:28:17 +0000 2015","id":663332209076604928,"id_str":"663332209076604928","text":"lo peor es que llorar no cambia las cosas.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853219472,"id_str":"853219472","name":"sad.","screen_name":"FixYouEs","location":"catalunya","url":"http:\/\/www.instagram.com\/fixyoues","description":"say something i'm giving up on you","protected":false,"verified":false,"followers_count":25205,"friends_count":177,"listed_count":576,"favourites_count":157240,"statuses_count":1212,"created_at":"Sat Sep 29 16:50:00 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDCEC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_tile":true,"profile_link_color":"0431B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"461847","profile_text_color":"A88394","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853219472\/1446922247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":333,"favorite_count":405,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FixYouEs","name":"sad.","id":853219472,"id_str":"853219472","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030767054848,"id_str":"663728030767054848","text":"Eu queria entender o porque das pessoas virarem a cara pra mim se dizer o motivo, queria de vdd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269474857,"id_str":"269474857","name":"A.G","screen_name":"anag4abi","location":"PR","url":"http:\/\/instagram.com\/gabriela.gpp","description":null,"protected":false,"verified":false,"followers_count":116,"friends_count":167,"listed_count":0,"favourites_count":720,"statuses_count":93,"created_at":"Sun Mar 20 21:22:16 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"229EF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432992078541225984\/NVTVbGu0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432992078541225984\/NVTVbGu0.jpeg","profile_background_tile":true,"profile_link_color":"1FBF57","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662803967202746368\/3Ck4ypM8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662803967202746368\/3Ck4ypM8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269474857\/1446058287","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783787008,"id_str":"663728030783787008","text":"@patatuelaj pensr que era de verdad","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727891017031680,"in_reply_to_status_id_str":"663727891017031680","in_reply_to_user_id":773770273,"in_reply_to_user_id_str":"773770273","in_reply_to_screen_name":"patatuelaj","user":{"id":2938970542,"id_str":"2938970542","name":"\ubb38\uc5b4","screen_name":"11110mi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":140,"friends_count":295,"listed_count":2,"favourites_count":15551,"statuses_count":39893,"created_at":"Tue Dec 23 23:50:37 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663664610290085888\/7T-0x6e0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663664610290085888\/7T-0x6e0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938970542\/1446899292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"patatuelaj","name":"ravioli","id":773770273,"id_str":"773770273","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030746038272,"id_str":"663728030746038272","text":"Yep pretty much https:\/\/t.co\/5QIywwSbZV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17891480,"id_str":"17891480","name":"KBenedict","screen_name":"Hardyfan_0816","location":"NYC","url":null,"description":"A gamer and a genius billionaire playboy philanthropist! #NYR #NYY #NYCFC #NYG #NYK #Bar\u00e7a","protected":false,"verified":false,"followers_count":311,"friends_count":609,"listed_count":12,"favourites_count":1824,"statuses_count":4919,"created_at":"Fri Dec 05 05:49:18 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661663300070072320\/mgkJfY7H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661663300070072320\/mgkJfY7H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17891480\/1446587998","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727861958754305,"quoted_status_id_str":"663727861958754305","quoted_status":{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727861958754305,"id_str":"663727861958754305","text":"Mondays. https:\/\/t.co\/Dz6Ype6ee3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1284555074,"id_str":"1284555074","name":"TCaccia","screen_name":"94caccia","location":"New York, NY","url":null,"description":"@nyrangers #NYR | Insta-TCaccia13| New York | LETS GO RANGERS #RangersTown.","protected":false,"verified":false,"followers_count":1773,"friends_count":976,"listed_count":7,"favourites_count":26538,"statuses_count":12391,"created_at":"Wed Mar 20 23:31:51 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653994269712195584\/f1DP5UAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653994269712195584\/f1DP5UAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1284555074\/1446871051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727757654958080,"id_str":"663727757654958080","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4QaXIAAqfPU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4QaXIAAqfPU.png","url":"https:\/\/t.co\/Dz6Ype6ee3","display_url":"pic.twitter.com\/Dz6Ype6ee3","expanded_url":"http:\/\/twitter.com\/94caccia\/status\/663727861958754305\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727757654958080,"id_str":"663727757654958080","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4QaXIAAqfPU.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYI4QaXIAAqfPU.png","url":"https:\/\/t.co\/Dz6Ype6ee3","display_url":"pic.twitter.com\/Dz6Ype6ee3","expanded_url":"http:\/\/twitter.com\/94caccia\/status\/663727861958754305\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"},"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYI4QaXIAAqfPU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5QIywwSbZV","expanded_url":"https:\/\/twitter.com\/94caccia\/status\/663727861958754305","display_url":"twitter.com\/94caccia\/statu\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030746038273,"id_str":"663728030746038273","text":"A gente se acostuma a coisas demais, para n\u00e3o sofrer.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612250923,"id_str":"612250923","name":"Priscilla Alencar \u2648","screen_name":"SillaAlencar","location":"Brazil - Rio de Janeiro","url":"http:\/\/instagram.com\/sillinha","description":"You Dont Need To Be Accepted By Others. You Need To Accept Yourself... Stay Strong Think Positive Be Happy and Follow Me!! ;D (R\u2020O)","protected":false,"verified":false,"followers_count":2873,"friends_count":2235,"listed_count":42,"favourites_count":23027,"statuses_count":27206,"created_at":"Tue Jun 19 01:38:28 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000081756597\/ac1629c26644174afa79b2a4dc632b0c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000081756597\/ac1629c26644174afa79b2a4dc632b0c.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630109646079045632\/q-zFuG4S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630109646079045632\/q-zFuG4S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/612250923\/1430439153","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775451648,"id_str":"663728030775451648","text":"@castellanecarol kkkkk se dee merda n vai ser eu e sim a Skol kkkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727636565348353,"in_reply_to_status_id_str":"663727636565348353","in_reply_to_user_id":3739919307,"in_reply_to_user_id_str":"3739919307","in_reply_to_screen_name":"castellanecarol","user":{"id":4122407241,"id_str":"4122407241","name":"Anna L\u00edvia","screen_name":"dornelas218","location":null,"url":null,"description":"Sem pressa. Sem v\u00edrgula. Sem ponto final. Sem briga. Sem m\u00e1goa. Sem dor. S\u00f3 amor, por favor.\u2764","protected":false,"verified":false,"followers_count":7,"friends_count":18,"listed_count":0,"favourites_count":14,"statuses_count":7,"created_at":"Thu Nov 05 22:19:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662394924231434240\/v5lMikB3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662394924231434240\/v5lMikB3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4122407241\/1446762515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"castellanecarol","name":"Chanel n\u00b01","id":3739919307,"id_str":"3739919307","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775443456,"id_str":"663728030775443456","text":"@Sads83 @talkSPORTDrive @DGoughie @JasonRoberts30 They do which is why I rang Adrian last Monday - Good squad bin poorly managed till now!","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663702076480991232,"in_reply_to_status_id_str":"663702076480991232","in_reply_to_user_id":362600422,"in_reply_to_user_id_str":"362600422","in_reply_to_screen_name":"Sads83","user":{"id":20837206,"id_str":"20837206","name":"Julie Bayley","screen_name":"JulieBayleyIFA","location":"Warcop nr Appleby, Cumbria","url":"http:\/\/www.edenfp.co.uk","description":"Financial Planner Dip PFS, TEP Aston Villa fan & like Borussia Dortmund too. Love life & a laugh!","protected":false,"verified":false,"followers_count":2093,"friends_count":890,"listed_count":101,"favourites_count":4203,"statuses_count":63240,"created_at":"Sat Feb 14 08:33:14 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CCCCCC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/262070089\/xf8103ff2b699fc3824050c8e860514c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/262070089\/xf8103ff2b699fc3824050c8e860514c.png","profile_background_tile":true,"profile_link_color":"B3532C","profile_sidebar_border_color":"623C25","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"623C25","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561229387803017216\/LOBC0dKF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561229387803017216\/LOBC0dKF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20837206\/1353175188","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sads83","name":"Gregg Sadler","id":362600422,"id_str":"362600422","indices":[0,7]},{"screen_name":"talkSPORTDrive","name":"talkSPORTDrive","id":175694937,"id_str":"175694937","indices":[8,23]},{"screen_name":"DGoughie","name":"Darren Gough","id":42610327,"id_str":"42610327","indices":[24,33]},{"screen_name":"JasonRoberts30","name":"Jason Roberts","id":232313241,"id_str":"232313241","indices":[34,49]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762733569,"id_str":"663728030762733569","text":"RT @AKITO_SOLIDEMO: \u4e8b\u52d9\u6240\u306e\u5148\u8f29\u306e\u3001\u7d18\u6bc5\u304f\u3093\u306e9\u5468\u5e74&\u30d0\u30fc\u30b9\u30c7\u30fcLIVE\u306b\u884c\u3063\u3066\u304d\u307e\u3057\u305f\uff01\n\n\u7d18\u6bc5\u304f\u3093\u306e\u6b4c\u306f\u3082\u3061\u308d\u3093\u306a\u3093\u3067\u3059\u304c\u3001\n\u4eba\u67c4\u304c\u672c\u5f53\u306b\u7d20\u6575\u3067\u3001\u98fe\u3063\u3066\u306a\u304f\u3066\u3001\u4f55\u304b\u3082\u304b\u3082\u304c\u611f\u52d5\u3057\u307e\u3057\u305f\u3002\n\n\u305d\u308c\u306b\u30d5\u30a1\u30f3\u306e\u65b9\u3068\u306e\u95a2\u4fc2\u5024\u3082\u7d20\u6575\u3002\n\n\u50d5\u3082\u3042\u305f\u305f\u304b\u3044\u4eba\u306b\u306a\u3063\u3066\u3001\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214338333,"id_str":"214338333","name":"Aoi Mizukoshi","screen_name":"aoi_1126","location":"Kanagawa","url":null,"description":null,"protected":false,"verified":false,"followers_count":69,"friends_count":143,"listed_count":0,"favourites_count":162,"statuses_count":1963,"created_at":"Thu Nov 11 04:39:40 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1980807267\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1980807267\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:53 +0000 2015","id":663727211015331841,"id_str":"663727211015331841","text":"\u4e8b\u52d9\u6240\u306e\u5148\u8f29\u306e\u3001\u7d18\u6bc5\u304f\u3093\u306e9\u5468\u5e74&\u30d0\u30fc\u30b9\u30c7\u30fcLIVE\u306b\u884c\u3063\u3066\u304d\u307e\u3057\u305f\uff01\n\n\u7d18\u6bc5\u304f\u3093\u306e\u6b4c\u306f\u3082\u3061\u308d\u3093\u306a\u3093\u3067\u3059\u304c\u3001\n\u4eba\u67c4\u304c\u672c\u5f53\u306b\u7d20\u6575\u3067\u3001\u98fe\u3063\u3066\u306a\u304f\u3066\u3001\u4f55\u304b\u3082\u304b\u3082\u304c\u611f\u52d5\u3057\u307e\u3057\u305f\u3002\n\n\u305d\u308c\u306b\u30d5\u30a1\u30f3\u306e\u65b9\u3068\u306e\u95a2\u4fc2\u5024\u3082\u7d20\u6575\u3002\n\n\u50d5\u3082\u3042\u305f\u305f\u304b\u3044\u4eba\u306b\u306a\u3063\u3066\u3001\n\u3042\u305f\u305f\u304b\u3044\u6b4c\u3092\u6b4c\u3048\u308b\u3088\u3046\u306b\u9811\u5f35\u308a\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466881729,"id_str":"1466881729","name":"\u624b\u5cf6\u7ae0\u6597-SOLIDEMO","screen_name":"AKITO_SOLIDEMO","location":"1993\u5e7411\u67084\u65e5\u751f \u8eab\u9577180cm \u5e83\u5cf6\u770c\u51fa\u8eab","url":"http:\/\/ameblo.jp\/solidemo\/","description":"TESHIMA AKITO(\u6700\u5e74\u5c11) \u7b2c56\u56de\u8f1d\u304f\uff01\u65e5\u672c\u30ec\u30b3\u30fc\u30c9\u5927\u8cde\u65b0\u4eba\u8cde\u53d7\u8cde\u3002\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30d6\u30ed\u30b0 http:\/\/ameblo.jp\/solidemo\/ \u6700\u9ad8\u306e\u6b4c\u3092\u5c4a\u3051\u307e\u3059\uff01\u5730\u5143\u5e83\u5cf6\u5927\u597d\u304d\uff01 \u307f\u3093\u306a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u30fc(^^)\uff01\uff01 #\u5e83\u5cf6","protected":false,"verified":true,"followers_count":9324,"friends_count":184,"listed_count":112,"favourites_count":10,"statuses_count":1497,"created_at":"Wed May 29 09:48:00 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649867268990484480\/ekAq_eu-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649867268990484480\/ekAq_eu-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466881729\/1443787673","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":55,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AKITO_SOLIDEMO","name":"\u624b\u5cf6\u7ae0\u6597-SOLIDEMO","id":1466881729,"id_str":"1466881729","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030766903296,"id_str":"663728030766903296","text":"@13_syuna @tennis_soota @km_0507_ \u9ed2\u6fa4\u3082\u3046\u304a\u83d3\u5b50\u3042\u3052\u306a\u3044(\u3067\u3082\u5408\u3063\u3066\u308b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727517639962624,"in_reply_to_status_id_str":"663727517639962624","in_reply_to_user_id":2446771434,"in_reply_to_user_id_str":"2446771434","in_reply_to_screen_name":"13_syuna","user":{"id":3163368476,"id_str":"3163368476","name":"\u6728\u6751\u83dc\u3005\u5b50","screen_name":"kn_0228_","location":"\u3059\u3071\u3041\u3093","url":null,"description":"\u897f\u5c0f\u2192\u98db\u9ce5\u2192\u5317\u57121-4 \/\u30bd\u30d5\u30c6\u30cb\/\u307f\u3053\u3077\u308d \u203bSince12.28~","protected":false,"verified":false,"followers_count":304,"friends_count":286,"listed_count":0,"favourites_count":6275,"statuses_count":3420,"created_at":"Sun Apr 19 05:11:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662842711985131520\/_97gESWu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662842711985131520\/_97gESWu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163368476\/1446868992","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"13_syuna","name":"\u2654Yuta.\u265a","id":2446771434,"id_str":"2446771434","indices":[0,9]},{"screen_name":"tennis_soota","name":"\u304a\u306e\u3042\u3055\u304b","id":3141061718,"id_str":"3141061718","indices":[10,23]},{"screen_name":"km_0507_","name":"\u6728\u6751\u840c\u7d75\u5b50","id":3272729077,"id_str":"3272729077","indices":[24,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775308288,"id_str":"663728030775308288","text":"RT @PapaJackQuote: Brain, I need you to focus.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284820674,"id_str":"3284820674","name":"Catheeng","screen_name":"cathyfrnndo","location":"Tagaytay City","url":"http:\/\/Instagram.com\/cathrneee","description":"God's. Destined to worship him","protected":false,"verified":false,"followers_count":157,"friends_count":122,"listed_count":1,"favourites_count":1511,"statuses_count":4402,"created_at":"Mon Jul 20 01:19:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661395904889393153\/buzyy3ei_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661395904889393153\/buzyy3ei_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284820674\/1446520958","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821932527616,"id_str":"663727821932527616","text":"Brain, I need you to focus.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008769416,"id_str":"1008769416","name":"PAPA JACK \u00ae","screen_name":"PapaJackQuote","location":null,"url":"http:\/\/bit.ly\/contactpapajack","description":"Papa Jack's Quotable-Quotes-Advices.","protected":false,"verified":false,"followers_count":856805,"friends_count":125,"listed_count":301,"favourites_count":315,"statuses_count":77999,"created_at":"Thu Dec 13 13:08:36 +0000 2012","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A9A07F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_tile":true,"profile_link_color":"4C6AA6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"434752","profile_text_color":"30676A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008769416\/1409884282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":60,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PapaJackQuote","name":"PAPA JACK \u00ae","id":1008769416,"id_str":"1008769416","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750240768,"id_str":"663728030750240768","text":"RT @gchmgngh: \u0448\u0438\u043a\u0430\u0440\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 https:\/\/t.co\/DPTJzrogEi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637556540,"id_str":"1637556540","name":"\u5fcd\u8005","screen_name":"ootani_ninja","location":"\u30ed\u30b7\u30a2","url":null,"description":"\u0427\u0435\u043b\u043e\u0432\u0435\u043a-\u0441\u043f\u043e\u0439\u043b\u0435\u0440\u30fd(*\uff9f\uff70\uff9f*)\uff89\u0411\u0430\u043b\u0443\u044e\u0441\u044c \u044f\u043e\u0435\u043c ( \u0361\u00b0 \u035c\u0296 \u0361\u00b0) \u041c\u0435\u0447\u0442\u0430\u044e \u0441\u0442\u0430\u0442\u044c \u043c\u0430\u043d\u0433\u0430\u043a\u043e\u0439 (=\u2460\u03c9\u2460=)","protected":false,"verified":false,"followers_count":83,"friends_count":33,"listed_count":1,"favourites_count":4984,"statuses_count":13994,"created_at":"Thu Aug 01 09:38:56 +0000 2013","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645587691405508608\/6pmmGsU5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645587691405508608\/6pmmGsU5.jpg","profile_background_tile":true,"profile_link_color":"CCCCCC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659117302219038720\/XzKmo29S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659117302219038720\/XzKmo29S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637556540\/1445980777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:59 +0000 2015","id":663724218471882752,"id_str":"663724218471882752","text":"\u0448\u0438\u043a\u0430\u0440\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 https:\/\/t.co\/DPTJzrogEi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794167490,"id_str":"794167490","name":"The S-Emperor Sougo","screen_name":"gchmgngh","location":null,"url":null,"description":"Gourmet. Epine. Armin. Sougo. SPOILERS. ENTP. OOO Madao. Go away, I'm disgusting.","protected":false,"verified":false,"followers_count":512,"friends_count":79,"listed_count":14,"favourites_count":40227,"statuses_count":75408,"created_at":"Fri Aug 31 16:09:08 +0000 2012","utc_offset":10800,"time_zone":"Volgograd","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646922489273131008\/VhW-oI-H.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646922489273131008\/VhW-oI-H.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"F7B565","profile_sidebar_fill_color":"000B17","profile_text_color":"448668","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662357345729515520\/AJq3i0W2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662357345729515520\/AJq3i0W2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794167490\/1445454536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724214344548352,"id_str":"663724214344548352","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724214344548352,"id_str":"663724214344548352","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}},{"id":663724215846043648,"id_str":"663724215846043648","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqGJUAAA2SbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqGJUAAA2SbA.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}},{"id":663724214776496129,"id_str":"663724214776496129","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqCKUAAE6o1r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqCKUAAE6o1r.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}},{"id":663724216835923968,"id_str":"663724216835923968","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqJ1UYAAuWys.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqJ1UYAAuWys.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gchmgngh","name":"The S-Emperor Sougo","id":794167490,"id_str":"794167490","indices":[3,12]}],"symbols":[],"media":[{"id":663724214344548352,"id_str":"663724214344548352","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663724218471882752,"source_status_id_str":"663724218471882752","source_user_id":794167490,"source_user_id_str":"794167490"}]},"extended_entities":{"media":[{"id":663724214344548352,"id_str":"663724214344548352","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqAjVAAAOmbh.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663724218471882752,"source_status_id_str":"663724218471882752","source_user_id":794167490,"source_user_id_str":"794167490"},{"id":663724215846043648,"id_str":"663724215846043648","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqGJUAAA2SbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqGJUAAA2SbA.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663724218471882752,"source_status_id_str":"663724218471882752","source_user_id":794167490,"source_user_id_str":"794167490"},{"id":663724214776496129,"id_str":"663724214776496129","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqCKUAAE6o1r.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqCKUAAE6o1r.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663724218471882752,"source_status_id_str":"663724218471882752","source_user_id":794167490,"source_user_id_str":"794167490"},{"id":663724216835923968,"id_str":"663724216835923968","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFqJ1UYAAuWys.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFqJ1UYAAuWys.jpg","url":"https:\/\/t.co\/DPTJzrogEi","display_url":"pic.twitter.com\/DPTJzrogEi","expanded_url":"http:\/\/twitter.com\/gchmgngh\/status\/663724218471882752\/photo\/1","type":"photo","sizes":{"large":{"w":844,"h":632,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663724218471882752,"source_status_id_str":"663724218471882752","source_user_id":794167490,"source_user_id_str":"794167490"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030758498304,"id_str":"663728030758498304","text":"@ppraewkns \u0e40\u0e23\u0e32\u0e22\u0e01\u0e43\u0e2b\u0e49 \u0e40\u0e2d\u0e32\u0e44\u0e1b\u0e40\u0e16\u0e2d\u0e30 \u0e40\u0e23\u0e32\u0e2d\u0e22\u0e32\u0e01\u0e43\u0e2b\u0e49\u0e41\u0e1f\u0e19\u0e40\u0e23\u0e32\u0e25\u0e14\u0e04\u0e27\u0e32\u0e21\u0e2d\u0e49\u0e27\u0e19\u0e1a\u0e49\u0e32\u0e07 55555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727891813797888,"in_reply_to_status_id_str":"663727891813797888","in_reply_to_user_id":3315601568,"in_reply_to_user_id_str":"3315601568","in_reply_to_screen_name":"ppraewkns","user":{"id":703335186,"id_str":"703335186","name":"\u0e43\u0e1a\u0e42\u0e1f\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e4c","screen_name":"faearnknk","location":null,"url":null,"description":"praew\u2661|\u0e23\u0e31\u0e01@ppraewkns|\u0e0a\u0e2d\u0e1a\u0e2a\u0e15\u0e34\u0e0a|\u0e0a\u0e2d\u0e1a\u0e16\u0e48\u0e32\u0e22\u0e23\u0e39\u0e1b|\nIG:nknybf |\u0e0a\u0e2d\u0e1a\u0e15\u0e38\u0e49\u0e01\u0e15\u0e32\u0e21\u0e32\u0e01\u0e46|\u0e02\u0e19\u0e21\u0e04\u0e37\u0e2d\u0e0a\u0e35\u0e27\u0e34\u0e15| \u0e08\u0e30\u0e04\u0e2d\u0e22\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e49\u0e32\u0e07\u0e46\u0e01\u0e31\u0e19 @_swy_swy","protected":false,"verified":false,"followers_count":611,"friends_count":761,"listed_count":0,"favourites_count":506,"statuses_count":19652,"created_at":"Wed Jul 18 16:08:07 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9E8EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000119900384\/bf9d3ab8c0ae14e7dd768bcc01638483.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000119900384\/bf9d3ab8c0ae14e7dd768bcc01638483.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662931497326764033\/vNqI7L0n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662931497326764033\/vNqI7L0n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/703335186\/1446809438","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ppraewkns","name":"\u0e41\u0e1e\u0e23\u0e27\u0e1a\u0e49\u0e32.","id":3315601568,"id_str":"3315601568","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080068660"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783700992,"id_str":"663728030783700992","text":"@Abc_Yena bhahaha\/samperin\/jongkok\/bangunin\/yang mana yang sakit neng?","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726344820293633,"in_reply_to_status_id_str":"663726344820293633","in_reply_to_user_id":4009708939,"in_reply_to_user_id_str":"4009708939","in_reply_to_screen_name":"Abc_Yena","user":{"id":3172155721,"id_str":"3172155721","name":"Ceye","screen_name":"pcyxyz92","location":"yaoisweet","url":null,"description":"eliters | bantet penggoda copid 01's \u2764\ufe0f","protected":false,"verified":false,"followers_count":312,"friends_count":273,"listed_count":0,"favourites_count":44,"statuses_count":7287,"created_at":"Sat Apr 25 12:21:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656152848640536576\/0ES3JG2P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656152848640536576\/0ES3JG2P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3172155721\/1445008973","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Abc_Yena","name":"Yena~","id":4009708939,"id_str":"4009708939","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030767017985,"id_str":"663728030767017985","text":"RT @__400__: #\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621\n\u0648\u064a\u0646 \u0627\u0644\u0647\u064a\u0626\u0647 \u0639\u0646 \u0627\u0644\u0641\u0644\u0647 \u0647\u0630\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431776050,"id_str":"431776050","name":"\u0627\u0644\u062e\u064a\u0645\u064a\u0627\u0626\u064a","screen_name":"majedalmsnd","location":null,"url":null,"description":"\u0645\u064f\u062a\u0647\u0645 \u0641\u064a \u0627\u0644\u0635\u0652\u062e\u0650\u064a\u0631\u0627\u062a \u0648\u0623\u062d\u062f\u0627\u0644\u0646\u0627\u062c\u064a\u064a\u0646 \u0645\u0646 \u0638\u0644\u0645\u0627\u062a \u062a\u0632\u0645\u0627\u0645\u0627\u0631\u062a","protected":false,"verified":false,"followers_count":5963,"friends_count":724,"listed_count":52,"favourites_count":129,"statuses_count":19783,"created_at":"Thu Dec 08 17:38:06 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627930416578572288\/boXqdFre_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627930416578572288\/boXqdFre_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431776050\/1445847550","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:42 +0000 2015","id":663726412902330368,"id_str":"663726412902330368","text":"#\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621\n\u0648\u064a\u0646 \u0627\u0644\u0647\u064a\u0626\u0647 \u0639\u0646 \u0627\u0644\u0641\u0644\u0647 \u0647\u0630\u064a","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301191751,"id_str":"301191751","name":"\u0627\u0645\u0627\u062a\u0634","screen_name":"__400__","location":"Morocco","url":null,"description":"\u064a\u0648\u0645\u0627 \u0645\u0627 \u0633\u0623\u0643\u0648\u0646 \u0634\u0627\u0628\u0627\u064b \u0644\u0637\u064a\u0641","protected":false,"verified":false,"followers_count":1180,"friends_count":317,"listed_count":9,"favourites_count":37,"statuses_count":10965,"created_at":"Thu May 19 01:39:56 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529787077559197696\/cLgGbUv4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529787077559197696\/cLgGbUv4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301191751\/1436069550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","indices":[13,31]}],"urls":[],"user_mentions":[{"screen_name":"__400__","name":"\u0627\u0645\u0627\u062a\u0634","id":301191751,"id_str":"301191751","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030745948160,"id_str":"663728030745948160","text":"RT @kkrumkrum: \u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e28\u0e23\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e04\u0e33\u0e27\u0e48\u0e32\u0e42\u0e2a\u0e14 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e40\u0e23\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e2d\u0e34\u0e2a\u0e23\u0e30\ud83d\ude0b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3302443735,"id_str":"3302443735","name":"Jagkappng","screen_name":"jagkappng","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":86,"friends_count":277,"listed_count":0,"favourites_count":0,"statuses_count":906,"created_at":"Fri Jul 31 12:16:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655133397832994816\/zCc7AbEU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655133397832994816\/zCc7AbEU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302443735\/1444453897","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:27:26 +0000 2015","id":663664183322382336,"id_str":"663664183322382336","text":"\u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e28\u0e23\u0e49\u0e32\u0e01\u0e31\u0e1a\u0e04\u0e33\u0e27\u0e48\u0e32\u0e42\u0e2a\u0e14 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e40\u0e23\u0e32\u0e2d\u0e22\u0e39\u0e48\u0e43\u0e19\u0e42\u0e2b\u0e21\u0e14\u0e2d\u0e34\u0e2a\u0e23\u0e30\ud83d\ude0b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851938001,"id_str":"2851938001","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","screen_name":"kkrumkrum","location":"-\u0e23\u0e27\u0e21\u0e17\u0e38\u0e01\u0e21\u0e38\u0e02\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e41\u0e19\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e32\u0e23\u0e21-","url":"http:\/\/line.me\/ti\/p\/%40vbe6244k","description":"\u0e2d\u0e48\u0e32\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e34\u0e49\u0e21\u0e2d\u0e34\u0e19\u0e46\u0e01\u0e31\u0e19\u0e44\u0e1b5555\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e38\u0e01\u0e04\u0e19\u0e43\u0e08\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e04\u0e38\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e19\u0e49\u0e32\u0e325555555 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e19\u0e1f\u0e2d\u0e25\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30\u0e04\u0e49\u0e30\u0e08\u0e49\u0e27\u0e1a\u0e1a\u0e46\u25e1\u0308\u2661\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22\u0e19\u0e30\u0e04\u0e30\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 ig:kkrumkrum","protected":false,"verified":false,"followers_count":587290,"friends_count":173,"listed_count":70,"favourites_count":1,"statuses_count":3574,"created_at":"Sat Oct 11 12:11:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851938001\/1423663298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3070,"favorite_count":816,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kkrumkrum","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","id":2851938001,"id_str":"2851938001","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030754340864,"id_str":"663728030754340864","text":"\u751f\u5199\u771f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220287158,"id_str":"3220287158","name":"\u305c\u308a\u30fc@\u5922\u898b\u308b\u30c1\u30fc\u30e0kIV\u63a8\u3057","screen_name":"idol_love_jelly","location":null,"url":null,"description":"\u591a\u7530\u611b\u4f73\u3061\u3083\u3093 \u963f\u90e8\u30de\u30ea\u30a2\u3061\u3083\u3093 \u4e2d\u897f\u667a\u4ee3\u68a8\u3061\u3083\u3093 \u5317\u539f\u91cc\u82f1\u3061\u3083\u3093 \u837b\u91ce\u7531\u4f73\u3061\u3083\u3093 \u5ca9\u82b1\u8a69\u4e43\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":67,"friends_count":84,"listed_count":1,"favourites_count":684,"statuses_count":878,"created_at":"Tue May 19 11:45:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630395284497928194\/YkdLf14z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630395284497928194\/YkdLf14z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220287158\/1436725842","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068659"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030766919680,"id_str":"663728030766919680","text":"@ekfzhagpfls \ub098\uacc4\uc18d\uc788\uc5c8\uac70\ub4e0\ub108\uac00\ubabb\ubcf8\uac70\uac70\ub4e0\ud765","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727424325050368,"in_reply_to_status_id_str":"663727424325050368","in_reply_to_user_id":1019114058,"in_reply_to_user_id_str":"1019114058","in_reply_to_screen_name":"ekfzhagpfls","user":{"id":4091783653,"id_str":"4091783653","name":"\uc2e0\ub4dc\ub86c [\uc774\ubcb5 \uad00\uae00 \ucc38\uace0]","screen_name":"JHJK0807","location":null,"url":null,"description":"\ubbf8\uc801 \uae30\uc900\uc774 \ubc14\ub2e4\ub77c\uba74 \ub108\ud770 \uc2ec\ud574 \uadf8 \uc790\uccb4 @BTS_twt","protected":false,"verified":false,"followers_count":75,"friends_count":106,"listed_count":0,"favourites_count":6,"statuses_count":392,"created_at":"Sun Nov 01 14:45:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663381030573748224\/egvMD3MA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663381030573748224\/egvMD3MA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4091783653\/1446948133","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ekfzhagpfls","name":"\uc970\ub9e4","id":1019114058,"id_str":"1019114058","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783705088,"id_str":"663728030783705088","text":"RT @daisuke_danshi: \u4e00\u7406\u3042\u308b\u3051\u3069\u982d\u4e0b\u3052\u308b\u4f5c\u6226\u3057\u305f\u3089\u591a\u5206\u300c\u3058\u3083\u3042\u3042\u3093\u305f\u3042\u305f\u3057\u9054\u306e\u8a00\u3046\u901a\u308a\u306b\u3057\u306a\u304b\u3063\u305f\u3089\u307e\u305f\u3044\u3058\u3081\u308b\u304b\u3093\u306d\u300d\u3068\u304b\u8a00\u308f\u308c\u3066\u601d\u8003\u505c\u6b62\u3058\u3083\u306d\u30fc\u304b\u306a #sol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848868395,"id_str":"2848868395","name":"[\u62d3]","screen_name":"tak0195","location":"\u306b\u3044\u304c\u305f","url":"http:\/\/twpf.jp\/tak0195","description":"\u300a\u30d5\u30ea\u30fc\u30c0\u30fc\u30fc\u30e0\u300b \u4e2d2\u7537\u5b50 SOL\u751f\u5f92\uff0a\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\uff01\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059 \u57fa\u672c\u30d5\u30a9\u30ed\u30d0 \uff0a \u81ea\u7531 \uff0a J-Rock,J-Pop,\u30b8\u30e3\u30cb\u30fc\u30ba,\u7279\u64ae\u3068\u304b\u3044\u308d\u3044\u308d\u597d\u304d \u8a73\u3057\u3044\u306e\u306f\u3053\u3061\u3089\u306b\u79fb\u52d5\u3057\u307e\u3057\u305f\u2193","protected":false,"verified":false,"followers_count":421,"friends_count":668,"listed_count":6,"favourites_count":3182,"statuses_count":7368,"created_at":"Thu Oct 09 12:44:18 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560737866645377025\/fuY8LoPr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560737866645377025\/fuY8LoPr.jpeg","profile_background_tile":false,"profile_link_color":"000033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635837658640465920\/ONMdpiji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635837658640465920\/ONMdpiji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848868395\/1444133604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727790043193345,"id_str":"663727790043193345","text":"\u4e00\u7406\u3042\u308b\u3051\u3069\u982d\u4e0b\u3052\u308b\u4f5c\u6226\u3057\u305f\u3089\u591a\u5206\u300c\u3058\u3083\u3042\u3042\u3093\u305f\u3042\u305f\u3057\u9054\u306e\u8a00\u3046\u901a\u308a\u306b\u3057\u306a\u304b\u3063\u305f\u3089\u307e\u305f\u3044\u3058\u3081\u308b\u304b\u3093\u306d\u300d\u3068\u304b\u8a00\u308f\u308c\u3066\u601d\u8003\u505c\u6b62\u3058\u3083\u306d\u30fc\u304b\u306a #sol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687645005,"id_str":"2687645005","name":"\u3068\u30fc\u3084\u307e\u5927\u597d\u304d\u7cfb\u7537\u5b50@\u6821\u9577\u306e\u5a5a\u7d04\u8005","screen_name":"daisuke_danshi","location":"\u6821\u9577\u306e\u819d\u306e\u4e0a","url":null,"description":"SCHOOL OF LOOK!\u751f\u5f92RN.\u306f\u30d8\u30c3\u30c0\u30fc\u306b\u8cbc\u3063\u3066\u3042\u308a\u307e\u3059 \u3068\u30fc\u3084\u307e\u6821\u9577\/RAD\/BUMP\/androp\/\u7c73\u6d25\u7384\u5e2b\/ONE OK ROCK\/UNISON SQUARE GARDEN\/\u308a\u3076\/\u4ed6\u90a6\u30ed\u30c3\u30af\u5927\u597d\u304d\uff01","protected":false,"verified":false,"followers_count":781,"friends_count":714,"listed_count":7,"favourites_count":375,"statuses_count":2970,"created_at":"Mon Jul 28 14:11:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602103899101605889\/bmDXX5O5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602103899101605889\/bmDXX5O5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687645005\/1436624807","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"sol","indices":[67,71]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sol","indices":[87,91]}],"urls":[],"user_mentions":[{"screen_name":"daisuke_danshi","name":"\u3068\u30fc\u3084\u307e\u5927\u597d\u304d\u7cfb\u7537\u5b50@\u6821\u9577\u306e\u5a5a\u7d04\u8005","id":2687645005,"id_str":"2687645005","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775291904,"id_str":"663728030775291904","text":"@sikisa9 \u30c7\u30a3\u30ba\u30cb\u30fc\u884c\u3063\u3066\u304b\u3089\u3081\u3063\u3061\u3083\u64ae\u5f71\u3057\u305f\u3044\u6b32\u304c\u3042\u308b\u2570(*\u00b4\ufe36`*)\u256f\u98a8\u666f\u3067\u3082\u4eba\u7269\u3067\u3082\u306a\u3093\u3067\u3082\u64ae\u5f71\u3057\u305f\u3044\u0669(\uff61\u2022\u3142\u2022\uff61)\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726655483998208,"in_reply_to_status_id_str":"663726655483998208","in_reply_to_user_id":228592930,"in_reply_to_user_id_str":"228592930","in_reply_to_screen_name":"sikisa9","user":{"id":228592930,"id_str":"228592930","name":"\u652f\u8475","screen_name":"sikisa9","location":"\u8c4a\u81e3\u8ecd\u3001\u4e09\u6210\u3089\u3076\u30fc\u2661 ","url":null,"description":"\u3086\u3063\u304f\u308a&\u307e\u3063\u305f\u308a\u545f\u3044\u3066\u307e\u3059\u266a\u6210\u4eba\u6e08\/\u8150\u3063\u305f\u3053\u3068\u3082\u545f\u3044\u3066\u307e\u3059ww\u6226\u56fdBASARA\uff65\u7121\u53cc\uff65\u30ea\u30f3\u30ab\u30cd\uff65\u5f31\u30da\u30c0\uff65\u30cf\u30a4\u30ad\u30e5\u30fc\uff65\u9059\u304b\uff65\u3046\u305f\u30d7\u30ea\uff65\u9b54\u6cd5\u79d1\u9ad8\u6821\uff65\u3068\u3046\u3089\u3076\u597d\u304d\u266a","protected":false,"verified":false,"followers_count":66,"friends_count":109,"listed_count":1,"favourites_count":266,"statuses_count":3569,"created_at":"Mon Dec 20 04:43:25 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552365559879172096\/_f1rczGQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552365559879172096\/_f1rczGQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228592930\/1420529645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sikisa9","name":"\u652f\u8475","id":228592930,"id_str":"228592930","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030771122176,"id_str":"663728030771122176","text":"@777S129 \u6210\u4eba\u5f0f\u306e\u904b\u55b6\u3068\u304b\u30ad\u30e3\u30b9\u30c6\u30a3\u30f3\u30b0\u3068\u304b\u3059\u308b\u306e\u304c\u4ed5\u4e8b\u304b\u306a\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726964402864129,"in_reply_to_status_id_str":"663726964402864129","in_reply_to_user_id":2875257367,"in_reply_to_user_id_str":"2875257367","in_reply_to_screen_name":"777S129","user":{"id":2635708531,"id_str":"2635708531","name":"\u7af9\u7530 \u667a\u7d00","screen_name":"gogogograpes","location":null,"url":null,"description":"\u30ab\u30fc\u30d7\u5927\u597d\u304d\n\u5ee3\u702c \u7d14 \u5802\u6797\u7fd4\u592a \u4e0a\u672c \u5d07\u53f8 \u6703\u6fa4 \u7ffc fam\n\u4eca\u5e74\u306f\u884c\u3063\u305f\u8a66\u5408\u5168\u52dd\uff01\uff01\uff01\n\n\u4e95\u53e3\u4e2d\u2192\u5e83\u9675\u9ad8\u6821\u7406\u7cfb\u30af\u30e9\u30b9\u2192\u5ca1\u5c71\u7406\u79d1\u5927\u5b66\u7406\u5b66\u90e8\u5fdc\u7528\u6570\u5b66 \u4e00\u56de\u751f","protected":false,"verified":false,"followers_count":386,"friends_count":345,"listed_count":0,"favourites_count":1247,"statuses_count":2683,"created_at":"Sun Jul 13 08:53:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658438921425063936\/eD4aH0df_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658438921425063936\/eD4aH0df_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2635708531\/1443359750","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"777S129","name":"\u304b\u306a\u307f","id":2875257367,"id_str":"2875257367","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068663"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750081024,"id_str":"663728030750081024","text":"@hikari_Lupus \u3042\u308a\u304c\u3068\u308d\u3093\u307c\uff5e\ud83d\ude18","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003efrom TheWorld\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722153037033472,"in_reply_to_status_id_str":"663722153037033472","in_reply_to_user_id":147572044,"in_reply_to_user_id_str":"147572044","in_reply_to_screen_name":"hikari_Lupus","user":{"id":134111865,"id_str":"134111865","name":"\u307d\u3093\u305f","screen_name":"kapapon","location":"\u541b\u306e\u5fc3\u306e\u4e2d\u3055(\u3069\u3053\u3060)","url":"http:\/\/twpf.jp\/kapapon","description":"\u30b9\u30d5\u30a3\u30a2\u3060\u3044\u3059\u304d\uff01\r\n*\u306f\u308b\u307f\u306aW\u63a8\u3057\r\n*\u4e8c\u4eba\u3092\u5168\u529b\u3067\u5fdc\u63f4\u4e2d\r\n*\u9060\u5f81\u306f\u3058\u3081\u307e\u3057\u305f\r\n\r\n9\u5272\u304cGL\u8150\u5984\u60f3\u30c4\u30a4\u30fc\u30c8\r\n\u6a59\u7d2b\/\u7dd1\u6a59\/\u7dd1\u6a59\u7d2b\u306e\u5984\u60f3\u3092\u3059\u308b\u306e\u304c\u597d\u304d\r\n\r\nONEPIECE\uff1d\u30d0\u30a4\u30d6\u30eb\uff01\r\n\r\n\u306f\u308b\u3061\u3083\u3093\u3068\u307f\u306a\u3061\u3083\u3093\u304c\u4eca\u65e5\u3082\u7b11\u9854\u3067\u3042\u308a\u307e\u3059\u3088\u3046\u306b\u3002","protected":false,"verified":false,"followers_count":511,"friends_count":193,"listed_count":37,"favourites_count":784,"statuses_count":80195,"created_at":"Sat Apr 17 13:45:21 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"4DD7FA","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"D4FAC3","profile_text_color":"030303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613900568172474368\/rliDPxKK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613900568172474368\/rliDPxKK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134111865\/1435241820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hikari_Lupus","name":"\u3072\u304b\u308a\uff20\u5f69\u967d\u3055\u3093\u5973\u795e\u3059\u304e\u3066\u3084\u3070\u3044\u2026","id":147572044,"id_str":"147572044","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775275522,"id_str":"663728030775275522","text":"@repo_tp (\u02c7\u03c9\u02c7)\u62bc\u3057\u5207\u3089\u308c\u305f\u304b\u30fb\u30fb\u30fb","source":"\u003ca href=\"http:\/\/bit.ly\/UDldit\" rel=\"nofollow\"\u003eSaezuri\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727851980484608,"in_reply_to_status_id_str":"663727851980484608","in_reply_to_user_id":3009067171,"in_reply_to_user_id_str":"3009067171","in_reply_to_screen_name":"repo_tp","user":{"id":112152409,"id_str":"112152409","name":"\u304f\u308a\u304d\u3093\u3068\u3093@3\u65e5\u76ee\u6771Q-58b","screen_name":"kurikinton9999","location":"\u732b\u306e\u56fd","url":"http:\/\/twpf.jp\/kurikinton9999","description":"\u7a7a\u98db\u3076\u3046\u3061\u306e\u5b50\u597d\u304d\u306a\u5275\u4f5c\u30de\u30f3\u3067\u3059\u3002\u3000\u304a\u7d75\u304b\u304d\u3068\uff24\uff34\uff2d\u3068\u30b2\u30fc\u30e0\u5236\u4f5c\u3057\u307e\u3059\u3002 \u7d50\u69cb\u306a\u983b\u5ea6\u3067\u4e0d\u9069\u5207\u306a\u4e8b\u3092\u8a00\u3046\u306e\u3067\u3054\u6ce8\u610f\u3002\u3000pso2(ship9)","protected":false,"verified":false,"followers_count":661,"friends_count":523,"listed_count":46,"favourites_count":7772,"statuses_count":115009,"created_at":"Sun Feb 07 12:20:17 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/121966336\/2010y05m18d_134019451.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/121966336\/2010y05m18d_134019451.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660411435940384768\/7H0-KZZO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660411435940384768\/7H0-KZZO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112152409\/1443438430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"repo_tp","name":"\u30ec\u30dd","id":3009067171,"id_str":"3009067171","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762700801,"id_str":"663728030762700801","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268067495,"id_str":"3268067495","name":"Grainger Kezor","screen_name":"wynejahipiha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":213,"friends_count":1677,"listed_count":13,"favourites_count":13773,"statuses_count":15332,"created_at":"Sun May 17 11:52:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646041780069236736\/oNTxNTg5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646041780069236736\/oNTxNTg5_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":342,"favorite_count":202,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762725376,"id_str":"663728030762725376","text":"RT @uechan_0905: blog\u66f4\u65b0\u3057\u307e\u3057\u305f\n\nhttps:\/\/t.co\/j6BNdbbTHG https:\/\/t.co\/LshU9mEzut","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1874999520,"id_str":"1874999520","name":"\ucc60\ub2c8\ub9c8\uce20 \u30c1\u30e3\u30cb","screen_name":"CH_raccoon","location":"RP O KOREA \ud5e4\ub354\uc5f4\ub2d8","url":"http:\/\/ask.fm\/ChanHee_","description":"Chan-hee \u30c1\u30e3\u30cb \ucc2c\ud76c \ucc60\ub2c8 [HXH \/ YWPD \/ DMMd \/ HQ \/ JOJO \/ BAT MAN...] Please do reply to follow later. UB free \ucf54\uc2a4\uc8fc\uc758 \ud314\ub85c\ud6c4\uba58\uc158\uaf2d [KOR\/JPN\/ENG] drawing save ID - @jearom0","protected":false,"verified":false,"followers_count":212,"friends_count":365,"listed_count":2,"favourites_count":3979,"statuses_count":30989,"created_at":"Tue Sep 17 10:43:36 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"9DBDF5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469738141385895936\/PbSKh6PF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469738141385895936\/PbSKh6PF.jpeg","profile_background_tile":true,"profile_link_color":"6E79FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660244061920432128\/q7RSN-lz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660244061920432128\/q7RSN-lz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1874999520\/1441072131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:52 +0000 2015","id":663727962072571904,"id_str":"663727962072571904","text":"blog\u66f4\u65b0\u3057\u307e\u3057\u305f\n\nhttps:\/\/t.co\/j6BNdbbTHG https:\/\/t.co\/LshU9mEzut","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142446804,"id_str":"142446804","name":"\u690d\u7530\u572d\u8f14","screen_name":"uechan_0905","location":null,"url":"http:\/\/s.ameblo.jp\/keisuke-ueda\/","description":"\u30aa\u30d5\u30a3\u30b7\u30e3\u30ebinfo \n\n\u300c\u3046\u3048\u3061\u3083\u3093\u30cd\u30eb\u300d\nhttp:\/\/sp.ch.nicovideo.jp\/uechannel","protected":false,"verified":false,"followers_count":80327,"friends_count":297,"listed_count":4544,"favourites_count":3,"statuses_count":8023,"created_at":"Mon May 10 22:41:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644702498020724736\/EVIGsxmm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644702498020724736\/EVIGsxmm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142446804\/1383157757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":57,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j6BNdbbTHG","expanded_url":"http:\/\/s.ameblo.jp\/keisuke-ueda\/entry-12093800706.html?frm_src=favoritemail","display_url":"s.ameblo.jp\/keisuke-ueda\/e\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[],"media":[{"id":663727956280250368,"id_str":"663727956280250368","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","url":"https:\/\/t.co\/LshU9mEzut","display_url":"pic.twitter.com\/LshU9mEzut","expanded_url":"http:\/\/twitter.com\/uechan_0905\/status\/663727962072571904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727956280250368,"id_str":"663727956280250368","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","url":"https:\/\/t.co\/LshU9mEzut","display_url":"pic.twitter.com\/LshU9mEzut","expanded_url":"http:\/\/twitter.com\/uechan_0905\/status\/663727962072571904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j6BNdbbTHG","expanded_url":"http:\/\/s.ameblo.jp\/keisuke-ueda\/entry-12093800706.html?frm_src=favoritemail","display_url":"s.ameblo.jp\/keisuke-ueda\/e\u2026","indices":[29,52]}],"user_mentions":[{"screen_name":"uechan_0905","name":"\u690d\u7530\u572d\u8f14","id":142446804,"id_str":"142446804","indices":[3,15]}],"symbols":[],"media":[{"id":663727956280250368,"id_str":"663727956280250368","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","url":"https:\/\/t.co\/LshU9mEzut","display_url":"pic.twitter.com\/LshU9mEzut","expanded_url":"http:\/\/twitter.com\/uechan_0905\/status\/663727962072571904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727962072571904,"source_status_id_str":"663727962072571904","source_user_id":142446804,"source_user_id_str":"142446804"}]},"extended_entities":{"media":[{"id":663727956280250368,"id_str":"663727956280250368","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD0WUkAAlnbI.jpg","url":"https:\/\/t.co\/LshU9mEzut","display_url":"pic.twitter.com\/LshU9mEzut","expanded_url":"http:\/\/twitter.com\/uechan_0905\/status\/663727962072571904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663727962072571904,"source_status_id_str":"663727962072571904","source_user_id":142446804,"source_user_id_str":"142446804"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750117889,"id_str":"663728030750117889","text":"RT @Jeep_Porn: BADASS \ud83d\ude08\ud83d\udc4a https:\/\/t.co\/zV46RS0vct","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2458778534,"id_str":"2458778534","name":"KING LEUSCH","screen_name":"corey_leuschner","location":"Las Vegas, NV","url":null,"description":null,"protected":false,"verified":false,"followers_count":578,"friends_count":521,"listed_count":0,"favourites_count":1566,"statuses_count":673,"created_at":"Tue Apr 22 22:26:57 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661590008583753729\/0I_Q0Fz5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661590008583753729\/0I_Q0Fz5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2458778534\/1444743211","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 22 15:46:26 +0000 2015","id":657221483530485761,"id_str":"657221483530485761","text":"BADASS \ud83d\ude08\ud83d\udc4a https:\/\/t.co\/zV46RS0vct","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1654449182,"id_str":"1654449182","name":"Jeep Porn","screen_name":"Jeep_Porn","location":null,"url":null,"description":"#1 Jeep fans twitter page. We are not associated with @jeep. We do not own the rights to any photos posted. parody account Whitebuddha@rocketmail.com","protected":false,"verified":false,"followers_count":250247,"friends_count":682,"listed_count":219,"favourites_count":539,"statuses_count":2338,"created_at":"Thu Aug 08 03:17:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000052265412\/3e32727475de4c29f7ef5d63a65fe2ce.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000052265412\/3e32727475de4c29f7ef5d63a65fe2ce.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571693152442036224\/ug78HA4n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571693152442036224\/ug78HA4n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1654449182\/1376588843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":342,"favorite_count":747,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657221478602117120,"id_str":"657221478602117120","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","url":"https:\/\/t.co\/zV46RS0vct","display_url":"pic.twitter.com\/zV46RS0vct","expanded_url":"http:\/\/twitter.com\/Jeep_Porn\/status\/657221483530485761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":853,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657221478602117120,"id_str":"657221478602117120","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","url":"https:\/\/t.co\/zV46RS0vct","display_url":"pic.twitter.com\/zV46RS0vct","expanded_url":"http:\/\/twitter.com\/Jeep_Porn\/status\/657221483530485761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":853,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jeep_Porn","name":"Jeep Porn","id":1654449182,"id_str":"1654449182","indices":[3,13]}],"symbols":[],"media":[{"id":657221478602117120,"id_str":"657221478602117120","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","url":"https:\/\/t.co\/zV46RS0vct","display_url":"pic.twitter.com\/zV46RS0vct","expanded_url":"http:\/\/twitter.com\/Jeep_Porn\/status\/657221483530485761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":853,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":657221483530485761,"source_status_id_str":"657221483530485761","source_user_id":1654449182,"source_user_id_str":"1654449182"}]},"extended_entities":{"media":[{"id":657221478602117120,"id_str":"657221478602117120","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CR7rc-LWEAAhD1A.jpg","url":"https:\/\/t.co\/zV46RS0vct","display_url":"pic.twitter.com\/zV46RS0vct","expanded_url":"http:\/\/twitter.com\/Jeep_Porn\/status\/657221483530485761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":853,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":657221483530485761,"source_status_id_str":"657221483530485761","source_user_id":1654449182,"source_user_id_str":"1654449182"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030766858240,"id_str":"663728030766858240","text":"RT @takupon0626: \u3010\u30a4\u30d9\u30f3\u30c8\u544a\u77e5\u3011\n\u50d5\u3068\u307b\u308a\u3048\u308a\u304f\u306e\u30cb\u30b3\u30d0\u30fc\u5168\u56fd\u30c4\u30a2\u30fc\u7b2c\uff12\u56de\u76ee\uff01\n\n\u958b\u50ac\u306f12\/30(\u6c34)\u30cb\u30b3\u30d0\u30fc\u798f\u5ca1\u5929\u795e\u5e97\u3067\u3059\uff0111\/16(\u6708)19\u6642~\u30c1\u30b1\u30c3\u30c8\u8ca9\u58f2\u958b\u59cb\u3060\u3088\ud83d\ude01\ud83d\udc95\n\n\u8a73\u3057\u304f\u306f\u3053\u3061\u3089 https:\/\/t.co\/ENhxKf0A1s https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2814902268,"id_str":"2814902268","name":"\u5065\u592a\/\/","screen_name":"keeentaaa87","location":null,"url":null,"description":"\u4fdd\u4e2d\uff13\u5e74 AAA\/\u3061\u3043\u307d\u307d\/\u5927\u539f\u6afb\u5b50\/\u30ab\u30ce\u5618\/\u6d99\u888b\/\u307f\u306a\u6c0f\/DISH\/\/ \u4fdd\u4e2d\u91ce\u7403\u90e8 \u6771\u4eac\u90fd\u4e00\u4f4d\uff01 \u6771\u4eac\u4ee3\u8868\u3001\u95a2\u6771\u5927\u4f1a\u51fa\u5834\uff01\uff01","protected":false,"verified":false,"followers_count":514,"friends_count":337,"listed_count":0,"favourites_count":4903,"statuses_count":3828,"created_at":"Wed Sep 17 13:24:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951702601625600\/JWqgwbvf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951702601625600\/JWqgwbvf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814902268\/1444923875","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:09 +0000 2015","id":663702869707587584,"id_str":"663702869707587584","text":"\u3010\u30a4\u30d9\u30f3\u30c8\u544a\u77e5\u3011\n\u50d5\u3068\u307b\u308a\u3048\u308a\u304f\u306e\u30cb\u30b3\u30d0\u30fc\u5168\u56fd\u30c4\u30a2\u30fc\u7b2c\uff12\u56de\u76ee\uff01\n\n\u958b\u50ac\u306f12\/30(\u6c34)\u30cb\u30b3\u30d0\u30fc\u798f\u5ca1\u5929\u795e\u5e97\u3067\u3059\uff0111\/16(\u6708)19\u6642~\u30c1\u30b1\u30c3\u30c8\u8ca9\u58f2\u958b\u59cb\u3060\u3088\ud83d\ude01\ud83d\udc95\n\n\u8a73\u3057\u304f\u306f\u3053\u3061\u3089 https:\/\/t.co\/ENhxKf0A1s https:\/\/t.co\/5ZzFVwtuS2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1374980522,"id_str":"1374980522","name":"\u305f\u304f\u307d\u3093\u6c0f\u3067\u3042\u30fc\u308b\u3002@\u6b7b\u6d3b\u554f\u984c","screen_name":"takupon0626","location":"\u4eba\u751f\u306f\u6b69\u304d\u56de\u308b\u5f71\u6cd5\u5e2b \u3042\u308f\u308c\u306a\u5f79\u8005\u3060","url":null,"description":"\u5e78\u305b\u3060\u304b\u3089\u7b11\u3063\u3066\u3044\u308b\u306e\u3067\u306f\u306a\u3044\u3002\u3080\u3057\u308d\u50d5\u306f\u3001\u7b11\u3046\u304b\u3089\u5e78\u305b\u306a\u306e\u3060\u3002 womb\u5c02\u5c5e\u30e2\u30c7\u30eb\/popteen","protected":false,"verified":false,"followers_count":137213,"friends_count":139,"listed_count":1075,"favourites_count":7444,"statuses_count":14174,"created_at":"Tue Apr 23 16:46:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661585720570548224\/AJXhEQLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661585720570548224\/AJXhEQLt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1374980522\/1438036222","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1083,"favorite_count":2634,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ENhxKf0A1s","expanded_url":"http:\/\/www.nico-bar.net\/tour\/rikupon.php","display_url":"nico-bar.net\/tour\/rikupon.p\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":663702855312797697,"id_str":"663702855312797697","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702855312797697,"id_str":"663702855312797697","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}}},{"id":663702855308587009,"id_str":"663702855308587009","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv8UsAEfRWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv8UsAEfRWO.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":640,"h":767,"resize":"fit"},"medium":{"w":600,"h":719,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ENhxKf0A1s","expanded_url":"http:\/\/www.nico-bar.net\/tour\/rikupon.php","display_url":"nico-bar.net\/tour\/rikupon.p\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"takupon0626","name":"\u305f\u304f\u307d\u3093\u6c0f\u3067\u3042\u30fc\u308b\u3002@\u6b7b\u6d3b\u554f\u984c","id":1374980522,"id_str":"1374980522","indices":[3,15]}],"symbols":[],"media":[{"id":663702855312797697,"id_str":"663702855312797697","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}},"source_status_id":663702869707587584,"source_status_id_str":"663702869707587584","source_user_id":1374980522,"source_user_id_str":"1374980522"}]},"extended_entities":{"media":[{"id":663702855312797697,"id_str":"663702855312797697","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv9U8AEjGEU.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":852,"h":640,"resize":"fit"}},"source_status_id":663702869707587584,"source_status_id_str":"663702869707587584","source_user_id":1374980522,"source_user_id_str":"1374980522"},{"id":663702855308587009,"id_str":"663702855308587009","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyOv8UsAEfRWO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyOv8UsAEfRWO.jpg","url":"https:\/\/t.co\/5ZzFVwtuS2","display_url":"pic.twitter.com\/5ZzFVwtuS2","expanded_url":"http:\/\/twitter.com\/takupon0626\/status\/663702869707587584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":640,"h":767,"resize":"fit"},"medium":{"w":600,"h":719,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663702869707587584,"source_status_id_str":"663702869707587584","source_user_id":1374980522,"source_user_id_str":"1374980522"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750085121,"id_str":"663728030750085121","text":"These are the top 5 most liveable cities https:\/\/t.co\/bhvY1B2Vf7","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961516290,"id_str":"961516290","name":"Anne Jillian Ambion","screen_name":"AmbionAnne","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":145,"listed_count":0,"favourites_count":35,"statuses_count":4843,"created_at":"Wed Nov 21 01:12:42 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2998402360\/7d256f51048e26d4679305756c8957f2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2998402360\/7d256f51048e26d4679305756c8957f2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bhvY1B2Vf7","expanded_url":"http:\/\/fb.me\/2wmMdkqBY","display_url":"fb.me\/2wmMdkqBY","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775435264,"id_str":"663728030775435264","text":"RT @nowseed: Un productor de Spectre ha confirmado que Daniel Craig no tiene firmado para m\u00e1s filmes tras Spectre, pero quiere que vuelva p\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":393437003,"id_str":"393437003","name":"Jesus Soprano","screen_name":"JesulinGonzalez","location":"C\u00e1diz","url":"http:\/\/letterboxd.com\/Jesulin22\/","description":"The world needs bad men; we keep the other bad men from the door\nhttps:\/\/elmurodedocsportello.wordpress.com\/","protected":false,"verified":false,"followers_count":227,"friends_count":265,"listed_count":2,"favourites_count":2204,"statuses_count":8750,"created_at":"Tue Oct 18 14:52:31 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646758003287425024\/BEEtfssF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646758003287425024\/BEEtfssF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/393437003\/1410964234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:16 +0000 2015","id":663722528062504960,"id_str":"663722528062504960","text":"Un productor de Spectre ha confirmado que Daniel Craig no tiene firmado para m\u00e1s filmes tras Spectre, pero quiere que vuelva para una m\u00e1s.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214034487,"id_str":"214034487","name":"Nowseed","screen_name":"nowseed","location":"Las Palmas de Gran Canaria","url":"http:\/\/www.ivoox.com\/podcast-podcast-nauzet-melian_sq_f1182259_1.html","description":"Cine. Series. Boxeo. Puedes escucharme en Odisea de Cine a trav\u00e9s de mi canal de Ivoox.","protected":false,"verified":false,"followers_count":1459,"friends_count":234,"listed_count":62,"favourites_count":3483,"statuses_count":42035,"created_at":"Wed Nov 10 11:58:46 +0000 2010","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610171099\/bhaexko9pvcc8ykdibsf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610171099\/bhaexko9pvcc8ykdibsf.jpeg","profile_background_tile":false,"profile_link_color":"0D00FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"CFCFCF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000854842175\/8491a7c6204d8fe688e168cbea41a4a9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000854842175\/8491a7c6204d8fe688e168cbea41a4a9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214034487\/1434973313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nowseed","name":"Nowseed","id":214034487,"id_str":"214034487","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030758535168,"id_str":"663728030758535168","text":"#celebrity Jennifer Lawence Shows Some Serious Side Boob At The London Premiere Of The Hunger Gamres: Mockingjay\u2026 https:\/\/t.co\/5LUDmipcE1","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2295443329,"id_str":"2295443329","name":"Katy Perry Fan Club","screen_name":"katy8perryfan","location":null,"url":"http:\/\/abouthub.info\/entertainment","description":"We are the die hard fan of Katy Perry, I will retweet your post if you tweet about #Katyperry- Follow me to join the club.","protected":false,"verified":false,"followers_count":1040,"friends_count":92,"listed_count":32,"favourites_count":575,"statuses_count":67725,"created_at":"Fri Jan 17 04:05:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424029828006699008\/PVv4-31s_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424029828006699008\/PVv4-31s_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2295443329\/1389931638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"celebrity","indices":[0,10]}],"urls":[{"url":"https:\/\/t.co\/5LUDmipcE1","expanded_url":"http:\/\/dlvr.it\/ChfY6p","display_url":"dlvr.it\/ChfY6p","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068660"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030746062853,"id_str":"663728030746062853","text":"one person unfollowed me \/\/ automatically checked by https:\/\/t.co\/RPRzYUXVRg","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109424699,"id_str":"109424699","name":"Cloud Torres\u2601\u2601","screen_name":"AboveTheWorld_","location":"DADE COUNTY","url":"http:\/\/datpiff.com\/Cloud-Child-Of-Indirect-Sins-mixtape.601175.html","description":"Cloud - check out my mixtape! AboveTheWorld ENT Dominican tryna get it.","protected":false,"verified":false,"followers_count":354,"friends_count":391,"listed_count":1,"favourites_count":294,"statuses_count":7723,"created_at":"Fri Jan 29 00:52:22 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603216876\/eg6px2yypw9kchtja8nm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603216876\/eg6px2yypw9kchtja8nm.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580508146755592193\/vYYNdQ48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580508146755592193\/vYYNdQ48_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109424699\/1390597150","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RPRzYUXVRg","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750232576,"id_str":"663728030750232576","text":"If you guys liked this weeks videos, tap\/click this link and show my video some love on Reddit \ud83d\udc4a\ud83d\ude0a https:\/\/t.co\/k8sKoWdZqD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238233563,"id_str":"238233563","name":"Matthew Willis","screen_name":"mattsappsTV","location":"Snapchat\/Instagram = mattsapps","url":"http:\/\/www.youtube.com\/MattsApps","description":"I make videos about new products \u2022 Absurdly curious.","protected":false,"verified":false,"followers_count":1120,"friends_count":828,"listed_count":16,"favourites_count":11695,"statuses_count":2633,"created_at":"Fri Jan 14 17:47:41 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/224975008\/n508188292_681497_542__1_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/224975008\/n508188292_681497_542__1_.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643845911244861441\/rQaTmC4Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643845911244861441\/rQaTmC4Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238233563\/1441731140","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k8sKoWdZqD","expanded_url":"https:\/\/www.reddit.com\/r\/iphone\/comments\/3s4yad\/top_5_new_iphone_ios_apps_nov_2015_week_2\/","display_url":"reddit.com\/r\/iphone\/comme\u2026","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762733568,"id_str":"663728030762733568","text":"currently listening to Diddy in class hahaha","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":801234541,"id_str":"801234541","name":"bby xan","screen_name":"zanajarrett","location":"somewhere in neverland","url":"http:\/\/instagram.com\/zanajarrett","description":"18","protected":false,"verified":false,"followers_count":806,"friends_count":347,"listed_count":8,"favourites_count":34967,"statuses_count":43758,"created_at":"Mon Sep 03 21:14:10 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650598974\/nzzoel5d9htaw9gbx7c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650598974\/nzzoel5d9htaw9gbx7c1.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663095492683763712\/QdRaKpfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663095492683763712\/QdRaKpfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801234541\/1446929163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030750150657,"id_str":"663728030750150657","text":"@kindxmon \"lumayan\" ia mengusap leher belakangnya sedikit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727790856925184,"in_reply_to_status_id_str":"663727790856925184","in_reply_to_user_id":3031780021,"in_reply_to_user_id_str":"3031780021","in_reply_to_screen_name":"kindxmon","user":{"id":2193575071,"id_str":"2193575071","name":"Mizusawa Arisa","screen_name":"Light_Represent","location":"Kouketsuna Residence","url":"https:\/\/biol.be\/Light_Represent","description":"\u275dFrom now on let me heal you\u275e|Akato's little cat|@SpiriusAgent's Fractured sister|@sword_durandal: trusted knight|Representative princess of Light|#OCRP #XEVers","protected":false,"verified":false,"followers_count":744,"friends_count":670,"listed_count":4,"favourites_count":116,"statuses_count":20916,"created_at":"Thu Nov 14 05:26:38 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595410981120937984\/iQAUZga6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595410981120937984\/iQAUZga6.jpg","profile_background_tile":false,"profile_link_color":"339999","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708552934981632\/yF5eRPPD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708552934981632\/yF5eRPPD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193575071\/1444904757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kindxmon","name":"Riel","id":3031780021,"id_str":"3031780021","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080068658"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783774720,"id_str":"663728030783774720","text":"@junaid12152 btw aapki shayari ki collection achi hai","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727579841626112,"in_reply_to_status_id_str":"663727579841626112","in_reply_to_user_id":3246502362,"in_reply_to_user_id_str":"3246502362","in_reply_to_screen_name":"junaid12152","user":{"id":185866085,"id_str":"185866085","name":"IMbsat Ali","screen_name":"mentoraliulc","location":"Lahore","url":null,"description":"Graduated in Pol science. interested in Journalism Student of Law, cricket lover,I don't like to tell lie but often i tell lie becoz it can save someone's loss.","protected":false,"verified":false,"followers_count":155,"friends_count":645,"listed_count":3,"favourites_count":5907,"statuses_count":4664,"created_at":"Thu Sep 02 00:58:46 +0000 2010","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508183701709025280\/OnJHnB6r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508183701709025280\/OnJHnB6r.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643481339769913344\/fJR8PFAy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643481339769913344\/fJR8PFAy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185866085\/1441646078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"junaid12152","name":"JuNAiD KhAn","id":3246502362,"id_str":"3246502362","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030766886912,"id_str":"663728030766886912","text":"\u512a\u4eba\u300c\u30d4\u30b6\u3063\u3066\u5341\u56de\u8a00\u3063\u3066\u307f\u308d\u3088\u300d\n\u3042\u3081\u308a\u3042\u300c\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u30d4\u30b6\u300d\n\u512a\u4eba\u300c\u3054\u82e6\u52b4\u69d8\u300d","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u3053\u307e\u3069\u308a\u306e\u3044\u3048\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351484013,"id_str":"2351484013","name":"\u3053\u307e\u3069\u308a\u3055\u3093","screen_name":"komadori3_bot","location":"\u3053\u307e\u3069\u308a\u306e\u3044\u3048","url":null,"description":"\u25a0\u3053\u3053\u306f\u5e73\u548c\u306a\u4e16\u754c\u7dda\u3002\u30b3\u30de\u30c9\u30ea\u3050\u307f\uff0b\u03b1\u306e\u30b3\u30d4\u30da\u6539\u5909bot\u3002\u4f55\u3067\u3082\u8a31\u305b\u308b\u65b9\u5411\u3051\u3002\u4ed5\u69d8\u306b\u3088\u308a2\u56de\u545f\u304f\u6642\u304c\u3042\u308a\u307e\u3059\u3002\u30ca\u30c1\u30e5\u30e9\u30eb\u306b\u540c\u68f2\u3002\u305f\u307e\u306b\u624b\u52d5\u25a0\u304a\u4e16\u8a71\u5f79\u3010@rukulook\u3011\u8981\u671b\u306a\u3069\u306f\u3053\u3061\u3089\u3078\u3002\u3082\u3057\u304f\u306f\uff24\uff2d\u3067\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\u25a0\u5bfe\u5fdc\u30ea\u30d7\uff1a\u300c\u4eca\u65e5\u306e\u3054\u306f\u3093\u300d\u300c\u5360\u3063\u3066\u300d\u25a0\u30a2\u30a4\u30b3\u30f3:\u5c0f\u5009\u3055\u3093\u3010@124003071401\u3011\u3088\u308a","protected":false,"verified":false,"followers_count":13,"friends_count":8,"listed_count":2,"favourites_count":5,"statuses_count":28546,"created_at":"Wed Feb 19 10:27:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456122911921676289\/sud33qbo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456122911921676289\/sud33qbo.jpeg","profile_background_tile":true,"profile_link_color":"FCBAFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445958594832257025\/BkhR6Ise_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445958594832257025\/BkhR6Ise_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351484013\/1441906549","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030758518784,"id_str":"663728030758518784","text":"RT @MindsConsole: Crying is not the solution but crying makes you feel better.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1314635437,"id_str":"1314635437","name":"Haylee","screen_name":"AndrewsHaylee","location":"Oklahoma","url":null,"description":"I can do everything through CHRIST who gives me strength(phillippians 4:13)","protected":false,"verified":false,"followers_count":436,"friends_count":760,"listed_count":2,"favourites_count":1677,"statuses_count":7057,"created_at":"Fri Mar 29 17:46:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660620565242220544\/orvoBQZk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660620565242220544\/orvoBQZk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314635437\/1445028170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 08:15:50 +0000 2015","id":660731963989299200,"id_str":"660731963989299200","text":"Crying is not the solution but crying makes you feel better.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830051135,"id_str":"2830051135","name":"Perfect Sayings","screen_name":"MindsConsole","location":null,"url":null,"description":"We post inspirational, motivational,love,feelings quotes and Sayings.Not own any contents we post. #lovelife #Relationship #motivation #richmafia","protected":false,"verified":false,"followers_count":501618,"friends_count":202103,"listed_count":1082,"favourites_count":242,"statuses_count":3921,"created_at":"Wed Sep 24 14:53:17 +0000 2014","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660347579125764096\/b5IVAt2i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660347579125764096\/b5IVAt2i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830051135\/1446274225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2407,"favorite_count":1974,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MindsConsole","name":"Perfect Sayings","id":2830051135,"id_str":"2830051135","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068660"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030779469824,"id_str":"663728030779469824","text":"RT @LaLa_info: \u300c\u8d64\u9aea\u306e\u767d\u96ea\u59eb\u300d15\u5dfb\u306eDVD\u4ed8\u9650\u5b9a\u7248\u3001\u4e88\u7d04\u7de0\u5207\u306f\u660e\u5f8c\u65e511\u65e5!!\u30e9\u30b8\u738b\u5b50\u306e\u8cb4\u91cd\u306a\u5e7c\u5c11\u671f\u304c\u30a2\u30cb\u30e1\u3067\u898b\u3089\u308c\u307e\u3059\u3002\u5049\u305d\u3046\u53ef\u611b\u3044!!\u3000CV\u306f\u6210\u9577\u5f8c\u3068\u540c\u3058\u3001\u798f\u5c71\u6f64\u3055\u3093\u3067\u3059\u3002https:\/\/t.co\/hCBFviMClA\n#\u8d64\u9aea\u306e\u767d\u96ea\u59eb https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":341472990,"id_str":"341472990","name":"motsu","screen_name":"imdvlthanangl","location":null,"url":"http:\/\/twpf.jp\/imdvlthanangl","description":"\u3042\u3089\u3057\u3068\u3042\u306b\u3081\u3092\u3061\u3087\u3053\u3061\u3087\u3053\u3068\u3002\u798f\u5ca1\u521d\u65e5\u3002","protected":false,"verified":false,"followers_count":79,"friends_count":414,"listed_count":2,"favourites_count":3634,"statuses_count":8974,"created_at":"Sun Jul 24 12:23:32 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660460395522424832\/e5fwV895_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660460395522424832\/e5fwV895_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/341472990\/1445350082","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:06:13 +0000 2015","id":663673944990289920,"id_str":"663673944990289920","text":"\u300c\u8d64\u9aea\u306e\u767d\u96ea\u59eb\u300d15\u5dfb\u306eDVD\u4ed8\u9650\u5b9a\u7248\u3001\u4e88\u7d04\u7de0\u5207\u306f\u660e\u5f8c\u65e511\u65e5!!\u30e9\u30b8\u738b\u5b50\u306e\u8cb4\u91cd\u306a\u5e7c\u5c11\u671f\u304c\u30a2\u30cb\u30e1\u3067\u898b\u3089\u308c\u307e\u3059\u3002\u5049\u305d\u3046\u53ef\u611b\u3044!!\u3000CV\u306f\u6210\u9577\u5f8c\u3068\u540c\u3058\u3001\u798f\u5c71\u6f64\u3055\u3093\u3067\u3059\u3002https:\/\/t.co\/hCBFviMClA\n#\u8d64\u9aea\u306e\u767d\u96ea\u59eb https:\/\/t.co\/sqoXYdcVwa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296081906,"id_str":"296081906","name":"LaLa\u7de8\u96c6\u90e8","screen_name":"LaLa_info","location":"\u795e\u7530\u6de1\u8def\u753a","url":"http:\/\/www.hakusensha.co.jp\/lala\/mag_lala\/now.html","description":"\u6708\u520a\u300eLaLa\u300f\uff08\u6bce\u670824\u65e5\u767a\u58f2\uff09\uff06\u300eLaLaDX\u300f\uff08\u5076\u6570\u670810\u65e5\u767a\u58f2\uff09\uff06\u300eAneLaLa\u300f\uff08\u5947\u6570\u67085\u65e5\u767a\u58f2\uff09\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002LaLa\u306b\u307e\u3064\u308f\u308b\u69d8\u3005\u306a\u60c5\u5831\u3092\u304a\u77e5\u3089\u305b\u3057\u3066\u3044\u304d\u307e\u3059\u3002 \u95b2\u89a7\u7121\u6599\u306e\u82b1LaLaonline\uff08http:\/\/www.hanayumeonline.com\/\uff09\u3082\u597d\u8a55\u7a3c\u52d5\u4e2d\u266a","protected":false,"verified":false,"followers_count":23780,"friends_count":13,"listed_count":641,"favourites_count":0,"statuses_count":2268,"created_at":"Tue May 10 05:09:37 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/269090404\/bg.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/269090404\/bg.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541906485517627393\/3b5J3WV__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541906485517627393\/3b5J3WV__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296081906\/1445737967","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":503,"favorite_count":600,"entities":{"hashtags":[{"text":"\u8d64\u9aea\u306e\u767d\u96ea\u59eb","indices":[106,113]}],"urls":[{"url":"https:\/\/t.co\/hCBFviMClA","expanded_url":"http:\/\/www.hakusensha.co.jp\/akagami\/","display_url":"hakusensha.co.jp\/akagami\/","indices":[82,105]}],"user_mentions":[],"symbols":[],"media":[{"id":663673944046628864,"id_str":"663673944046628864","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","url":"https:\/\/t.co\/sqoXYdcVwa","display_url":"pic.twitter.com\/sqoXYdcVwa","expanded_url":"http:\/\/twitter.com\/LaLa_info\/status\/663673944990289920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673944046628864,"id_str":"663673944046628864","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","url":"https:\/\/t.co\/sqoXYdcVwa","display_url":"pic.twitter.com\/sqoXYdcVwa","expanded_url":"http:\/\/twitter.com\/LaLa_info\/status\/663673944990289920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8d64\u9aea\u306e\u767d\u96ea\u59eb","indices":[121,128]}],"urls":[{"url":"https:\/\/t.co\/hCBFviMClA","expanded_url":"http:\/\/www.hakusensha.co.jp\/akagami\/","display_url":"hakusensha.co.jp\/akagami\/","indices":[97,120]}],"user_mentions":[{"screen_name":"LaLa_info","name":"LaLa\u7de8\u96c6\u90e8","id":296081906,"id_str":"296081906","indices":[3,13]}],"symbols":[],"media":[{"id":663673944046628864,"id_str":"663673944046628864","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","url":"https:\/\/t.co\/sqoXYdcVwa","display_url":"pic.twitter.com\/sqoXYdcVwa","expanded_url":"http:\/\/twitter.com\/LaLa_info\/status\/663673944990289920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663673944990289920,"source_status_id_str":"663673944990289920","source_user_id":296081906,"source_user_id_str":"296081906"}]},"extended_entities":{"media":[{"id":663673944046628864,"id_str":"663673944046628864","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX75GU8AAlMYj.jpg","url":"https:\/\/t.co\/sqoXYdcVwa","display_url":"pic.twitter.com\/sqoXYdcVwa","expanded_url":"http:\/\/twitter.com\/LaLa_info\/status\/663673944990289920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663673944990289920,"source_status_id_str":"663673944990289920","source_user_id":296081906,"source_user_id_str":"296081906"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068665"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030758506498,"id_str":"663728030758506498","text":"@DarcyS_94 si","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663592251277320192,"in_reply_to_status_id_str":"663592251277320192","in_reply_to_user_id":3308349961,"in_reply_to_user_id_str":"3308349961","in_reply_to_screen_name":"DarcyS_94","user":{"id":2561310105,"id_str":"2561310105","name":"#Friday13th","screen_name":"Ash_Tommo_Horan","location":"Narnia ","url":null,"description":"\u2764\ufe0f3 Britanicos, 1 Irlandes y un chico normal de 22 a\u00f1os.\u2764\ufe0f MUKE\u2764\ufe0f Larry es mas falso que el rubio natural de Niall\u2764\ufe0f Zurita\u2764\ufe0f 4 sexys Australianos\u2764\ufe0f","protected":false,"verified":false,"followers_count":657,"friends_count":2002,"listed_count":1,"favourites_count":6343,"statuses_count":6952,"created_at":"Sat May 24 03:18:27 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663101599007420416\/usMo3500_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663101599007420416\/usMo3500_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561310105\/1446682846","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DarcyS_94","name":"Victoria","id":3308349961,"id_str":"3308349961","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080068660"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775250944,"id_str":"663728030775250944","text":"Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/2HikpNVEGv","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":283437381,"id_str":"283437381","name":"RINUCCI\u2205 \u266b\u2665\u266a","screen_name":"afckinunicorn","location":"Somewhere in Neverland ","url":null,"description":"This is ur life. \nJust believe. \nUntil my heart stops.\nI've lost my mind but that's okay.\nTo the moon and back.\n\u041a\u043e\u043b\u0434\u0443\u0447\u0447\u043e.","protected":false,"verified":false,"followers_count":923,"friends_count":550,"listed_count":36,"favourites_count":948,"statuses_count":73399,"created_at":"Sun Apr 17 08:53:15 +0000 2011","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A4AD9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626496934904221696\/FAsqcMQR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626496934904221696\/FAsqcMQR.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6CA29F","profile_text_color":"895B98","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651088713066377216\/RE139x3t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651088713066377216\/RE139x3t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283437381\/1444066619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2HikpNVEGv","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762708992,"id_str":"663728030762708992","text":"RT @knockknock0408: [HQ] 151017 BAEKHYUN SEHUN cr.SAEKOBABY\nhttps:\/\/t.co\/ewsCenqBc3\nhttps:\/\/t.co\/4cXIQhOg95\nhttps:\/\/t.co\/wz37kpZ0IZ https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2653128830,"id_str":"2653128830","name":"ad","screen_name":"jiminad","location":"PT32016","url":"http:\/\/instagram.com\/adrn.a","description":"I live for jimin","protected":false,"verified":false,"followers_count":405,"friends_count":302,"listed_count":1,"favourites_count":3953,"statuses_count":13454,"created_at":"Thu Jul 17 07:29:45 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577755244978778112\/BNPHPZ1O.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577755244978778112\/BNPHPZ1O.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646677476073473\/y-M_33rj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646677476073473\/y-M_33rj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2653128830\/1446901738","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:03 +0000 2015","id":663717438454824960,"id_str":"663717438454824960","text":"[HQ] 151017 BAEKHYUN SEHUN cr.SAEKOBABY\nhttps:\/\/t.co\/ewsCenqBc3\nhttps:\/\/t.co\/4cXIQhOg95\nhttps:\/\/t.co\/wz37kpZ0IZ https:\/\/t.co\/tr9QcTXz8h","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627921021,"id_str":"1627921021","name":"'KNOCK KNOCK!'","screen_name":"knockknock0408","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":211614,"friends_count":0,"listed_count":2300,"favourites_count":159,"statuses_count":116934,"created_at":"Sun Jul 28 13:30:31 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_tile":true,"profile_link_color":"0A376E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":228,"favorite_count":436,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewsCenqBc3","expanded_url":"http:\/\/ww3.sinaimg.cn\/large\/69141220gw1exv2ba8sqwj20mn0mwn32.jpg","display_url":"ww3.sinaimg.cn\/large\/69141220\u2026","indices":[40,63]},{"url":"https:\/\/t.co\/4cXIQhOg95","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/69141220gw1exv2baj962j20sy0r1wko.jpg","display_url":"ww2.sinaimg.cn\/large\/69141220\u2026","indices":[64,87]},{"url":"https:\/\/t.co\/wz37kpZ0IZ","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/69141220gw1exv2bb0psnj20qh0qywm0.jpg","display_url":"ww2.sinaimg.cn\/large\/69141220\u2026","indices":[88,111]}],"user_mentions":[],"symbols":[],"media":[{"id":663717423376236545,"id_str":"663717423376236545","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"},"large":{"w":815,"h":824,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717423376236545,"id_str":"663717423376236545","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"},"large":{"w":815,"h":824,"resize":"fit"}}},{"id":663717423946686465,"id_str":"663717423946686465","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_ewWUYAEC1zz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_ewWUYAEC1zz.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":317,"resize":"fit"},"large":{"w":1024,"h":956,"resize":"fit"}}},{"id":663717436655439872,"id_str":"663717436655439872","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_ffsUkAAWK8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_ffsUkAAWK8_.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":346,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":953,"h":970,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewsCenqBc3","expanded_url":"http:\/\/ww3.sinaimg.cn\/large\/69141220gw1exv2ba8sqwj20mn0mwn32.jpg","display_url":"ww3.sinaimg.cn\/large\/69141220\u2026","indices":[60,83]},{"url":"https:\/\/t.co\/4cXIQhOg95","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/69141220gw1exv2baj962j20sy0r1wko.jpg","display_url":"ww2.sinaimg.cn\/large\/69141220\u2026","indices":[84,107]},{"url":"https:\/\/t.co\/wz37kpZ0IZ","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/69141220gw1exv2bb0psnj20qh0qywm0.jpg","display_url":"ww2.sinaimg.cn\/large\/69141220\u2026","indices":[108,131]}],"user_mentions":[{"screen_name":"knockknock0408","name":"'KNOCK KNOCK!'","id":1627921021,"id_str":"1627921021","indices":[3,18]}],"symbols":[],"media":[{"id":663717423376236545,"id_str":"663717423376236545","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"},"large":{"w":815,"h":824,"resize":"fit"}},"source_status_id":663717438454824960,"source_status_id_str":"663717438454824960","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"extended_entities":{"media":[{"id":663717423376236545,"id_str":"663717423376236545","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_euOUAAEy-op.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"},"large":{"w":815,"h":824,"resize":"fit"}},"source_status_id":663717438454824960,"source_status_id_str":"663717438454824960","source_user_id":1627921021,"source_user_id_str":"1627921021"},{"id":663717423946686465,"id_str":"663717423946686465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_ewWUYAEC1zz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_ewWUYAEC1zz.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":560,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":317,"resize":"fit"},"large":{"w":1024,"h":956,"resize":"fit"}},"source_status_id":663717438454824960,"source_status_id_str":"663717438454824960","source_user_id":1627921021,"source_user_id_str":"1627921021"},{"id":663717436655439872,"id_str":"663717436655439872","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_ffsUkAAWK8_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_ffsUkAAWK8_.jpg","url":"https:\/\/t.co\/tr9QcTXz8h","display_url":"pic.twitter.com\/tr9QcTXz8h","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663717438454824960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":346,"resize":"fit"},"medium":{"w":600,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":953,"h":970,"resize":"fit"}},"source_status_id":663717438454824960,"source_status_id_str":"663717438454824960","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030758535169,"id_str":"663728030758535169","text":"\u5357\u6cb3\u5185\u4e09\u5144\u5f1f\u306b\u96fb\u8eca\u304c\u901a\u3063\u3066\u3044\u305f\u304b\u4e0d\u5b89\u306b\u306a\u3063\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546974442,"id_str":"546974442","name":"\u4e45\u5bff\u5ddd\u5cf0\u677e\u30ea\u30b6\u30ec\u30af\u30b7\u30e7\u30f3","screen_name":"mtd_003","location":"\u30bf\u30fc\u30df\u30cd\u30fc\u30ab\u30fc","url":"http:\/\/twpf.jp\/mtd_003","description":"\u6226\u56fd\/\u7344\u90fd\u4e8b\u5909\/\u304a\u305d\u677e\u3055\u3093\/GER\/GE2RB\/popn\/\u5275\u4f5c\/OFF\/\u305d\u306e\u4ed6 \u8150\u3063\u3066\u3044\u308b \u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u306b\u3066\u3002\u88cf\u57a2[@mtd_ura03]","protected":false,"verified":false,"followers_count":350,"friends_count":402,"listed_count":33,"favourites_count":6045,"statuses_count":53405,"created_at":"Fri Apr 06 15:25:40 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659711060128063488\/QCwPg4sZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659711060128063488\/QCwPg4sZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546974442\/1444667522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068660"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030779613184,"id_str":"663728030779613184","text":"i heard he do that sneak and talk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1708329002,"id_str":"1708329002","name":"\u260b","screen_name":"yungshxwty","location":null,"url":null,"description":"#23 \u2661 | @kristinaakhaled | you won't catch my attention","protected":false,"verified":false,"followers_count":900,"friends_count":516,"listed_count":4,"favourites_count":31930,"statuses_count":45792,"created_at":"Wed Aug 28 21:38:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663192268061306880\/X7uQVkKf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663192268061306880\/X7uQVkKf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1708329002\/1446420907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e3313948f52af520","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e3313948f52af520.json","place_type":"city","name":"Lakes by the Bay","full_name":"Lakes by the Bay, FL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-80.356705,25.557761],[-80.356705,25.599845],[-80.302682,25.599845],[-80.302682,25.557761]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068665"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030779502592,"id_str":"663728030779502592","text":"https:\/\/t.co\/NM6mGDoZvB: How about some candy to start off your week? Loves Candy!!","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1963136586,"id_str":"1963136586","name":"1K+Folo MusicZips","screen_name":"MusicZips","location":"Global","url":"http:\/\/itsMusicZips.com","description":"Home of your ALBUM LEAKS! :: http:\/\/Facebook.com\/MusicZips","protected":false,"verified":false,"followers_count":1446,"friends_count":85,"listed_count":90,"favourites_count":1,"statuses_count":625615,"created_at":"Tue Oct 15 18:36:37 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151865103\/g-gt-KYf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151865103\/g-gt-KYf.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629021408677335040\/H6F0HHT8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629021408677335040\/H6F0HHT8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1963136586\/1438805381","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NM6mGDoZvB","expanded_url":"http:\/\/tiny.cc\/tubechellydev","display_url":"tiny.cc\/tubechellydev","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068665"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762844160,"id_str":"663728030762844160","text":"_: Itaki, Grecia https:\/\/t.co\/M3f9AOZ0SV\"","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1617590414,"id_str":"1617590414","name":"carina trifiletti","screen_name":"carinatt_","location":"Argentina","url":null,"description":"T\u00e9cnica Superior en Turismo, Hoteler\u00eda y Gastronom\u00eda. Coordinadora en Recreaci\u00f3n.Sta Rosa de Calamuchita Cordoba Argentina","protected":false,"verified":false,"followers_count":1352,"friends_count":1888,"listed_count":14,"favourites_count":112,"statuses_count":1836,"created_at":"Wed Jul 24 11:51:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000255191990\/0a5112d14f9366463b0c46353931d60f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000255191990\/0a5112d14f9366463b0c46353931d60f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1617590414\/1392128874","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663700161302892544,"id_str":"663700161302892544","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvx7_UEAAtrG1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvx7_UEAAtrG1.jpg","url":"https:\/\/t.co\/M3f9AOZ0SV","display_url":"pic.twitter.com\/M3f9AOZ0SV","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663700161424551936\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":709,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":477,"h":709,"resize":"fit"}},"source_status_id":663700161424551936,"source_status_id_str":"663700161424551936","source_user_id":1190505763,"source_user_id_str":"1190505763"}]},"extended_entities":{"media":[{"id":663700161302892544,"id_str":"663700161302892544","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvx7_UEAAtrG1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvx7_UEAAtrG1.jpg","url":"https:\/\/t.co\/M3f9AOZ0SV","display_url":"pic.twitter.com\/M3f9AOZ0SV","expanded_url":"http:\/\/twitter.com\/_Paisajes_\/status\/663700161424551936\/photo\/1","type":"photo","sizes":{"medium":{"w":477,"h":709,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":477,"h":709,"resize":"fit"}},"source_status_id":663700161424551936,"source_status_id_str":"663700161424551936","source_user_id":1190505763,"source_user_id_str":"1190505763"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030762733570,"id_str":"663728030762733570","text":"Partecipare fra gli autori al Sar\u00f2Br\u00e8 show non \u00e8 cosa di tutti i giorni.\u00a0#VMBRE https:\/\/t.co\/UaaLsfpeXW\u2026 https:\/\/t.co\/nwp5RlOunn","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122987513,"id_str":"122987513","name":"Vincenzo Messina","screen_name":"vincemessina","location":"41.942957,12.460534","url":null,"description":"Electronic Engineer who followed his passion for Computers.\r\nSat Comm, Radar, Cloud Computing, Graphics, Tennis,Sailing,Movies, Science,Music ...","protected":false,"verified":false,"followers_count":99,"friends_count":125,"listed_count":17,"favourites_count":10,"statuses_count":592,"created_at":"Sun Mar 14 15:52:44 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554676393829601280\/DYhbpThQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554676393829601280\/DYhbpThQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122987513\/1421080215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VMBRE","indices":[73,79]}],"urls":[{"url":"https:\/\/t.co\/UaaLsfpeXW","expanded_url":"http:\/\/ift.tt\/1PxGZ1S","display_url":"ift.tt\/1PxGZ1S","indices":[80,103]},{"url":"https:\/\/t.co\/nwp5RlOunn","expanded_url":"https:\/\/vmessina.wordpress.com\/2015\/11\/09\/partecipare-fra-gli-autori-al-sarobre-show-non-e-cosa-di-tutti-i-giorni-vmbre-httpift-tt1pxgz1s-httpst-com8inja9cxx\/","display_url":"vmessina.wordpress.com\/2015\/11\/09\/par\u2026","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080068661"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783770625,"id_str":"663728030783770625","text":"RT @Stydia_05: \u0414\u043e\u0447\u044c: \u044f \u043b\u0435\u0441\u0431\u0438\u044f\u043d\u043a\u0430 \n\u041f\u0430\u043f\u0430: \u0445\u043e\u0440\u043e\u0448\u043e, \u0447\u0442\u043e \u0442\u044b \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u043b\u0430 \n\u0412\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0447\u044c:\u044f \u0442\u043e\u0436\u0435 \n\u041f\u0430\u043f\u0430: \u0412 \u042d\u0422\u041e\u041c \u0414\u041e\u041c\u0415 \u0425\u041e\u0422\u042c \u041a\u041e\u041c\u0423 \u041d\u0418\u0411\u0423\u0414\u042c \u041d\u0420\u0410\u0412\u042f\u0422\u0421\u042f \u041f\u0410\u0420\u041d\u0418? \n\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310891648,"id_str":"3310891648","name":"\u044d\u043b\u043b\u0435\u043d","screen_name":"_DFWYBZ_","location":null,"url":null,"description":"\u2728\u0432\u0435\u0440\u0445\u043e\u0432\u043d\u0430\u044f\u2728","protected":false,"verified":false,"followers_count":1138,"friends_count":1288,"listed_count":2,"favourites_count":330,"statuses_count":2926,"created_at":"Sat Jun 06 17:09:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639495052381831168\/vr52sjHW.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639495052381831168\/vr52sjHW.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655268689143402496\/1GDwHa9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655268689143402496\/1GDwHa9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310891648\/1445063219","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 11 17:50:56 +0000 2015","id":653266547352408064,"id_str":"653266547352408064","text":"\u0414\u043e\u0447\u044c: \u044f \u043b\u0435\u0441\u0431\u0438\u044f\u043d\u043a\u0430 \n\u041f\u0430\u043f\u0430: \u0445\u043e\u0440\u043e\u0448\u043e, \u0447\u0442\u043e \u0442\u044b \u0440\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u043b\u0430 \n\u0412\u0442\u043e\u0440\u0430\u044f \u0434\u043e\u0447\u044c:\u044f \u0442\u043e\u0436\u0435 \n\u041f\u0430\u043f\u0430: \u0412 \u042d\u0422\u041e\u041c \u0414\u041e\u041c\u0415 \u0425\u041e\u0422\u042c \u041a\u041e\u041c\u0423 \u041d\u0418\u0411\u0423\u0414\u042c \u041d\u0420\u0410\u0412\u042f\u0422\u0421\u042f \u041f\u0410\u0420\u041d\u0418? \n\u0421\u044b\u043d: \u043c\u043d\u0435\n\n\u041e\u041e\u041e\u0420","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2896335183,"id_str":"2896335183","name":"\u0394\u041c\u044d\u0439\u0431\u043b.|.\u043c\u043e\u0434\u0435\u0441\u0442","screen_name":"Stydia_05","location":null,"url":null,"description":"\u2764LARRY IS REAL\u2764 #1D\u2728#larryshipper\u2728#teenwolf\u2728#stydia \u2728\u2728\u2728NOBODY CAN DRAG ME DOWN \u2728\u2728 BABY, I'M PERFECT FOR YOU\u2728\u2728\u2728\u2728\u041b\u044e\u0431\u043b\u044e \u0441\u0432\u043e\u044e \u043b\u0435\u043d\u0442\u0443\u2728\u2728@BlankSpace_8 - \u043c\u043e\u0439 \u0413\u0430\u0440\u0440\u0438\u2728\u2728","protected":false,"verified":false,"followers_count":2037,"friends_count":1860,"listed_count":3,"favourites_count":2117,"statuses_count":9984,"created_at":"Fri Nov 28 20:01:38 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660760020234055680\/_zK48ADx.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660760020234055680\/_zK48ADx.jpg","profile_background_tile":true,"profile_link_color":"A3500C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660811180601053184\/YP2oUsIo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660811180601053184\/YP2oUsIo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2896335183\/1446384190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1235,"favorite_count":907,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Stydia_05","name":"\u0394\u041c\u044d\u0439\u0431\u043b.|.\u043c\u043e\u0434\u0435\u0441\u0442","id":2896335183,"id_str":"2896335183","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080068666"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030766886913,"id_str":"663728030766886913","text":"\u305f\u3057\u304b\u3057\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3655985424,"id_str":"3655985424","name":"\u50d5\u306f\u3001\u305b\u3084\u304f\u3093\u3002","screen_name":"newseyakuuun214","location":"\u9752\u3044\u9ce5\u306e\u80cc\u4e2d\u8fba\u308a\u3002","url":"http:\/\/twpf.jp\/newseyakuuun214","description":"\u3053\u306e\u5ea6\u306f\u3053\u3093\u306a\u57a2\u3092\u898b\u3064\u3051\u3066\u304f\u308c\u3066\u3069\u3046\u3082\u3042\u308a\u304c\u3068\u3046\u3002 \u559c\u6012\u54c0\u697d\u6fc0\u3057\u3044\u7d20\u76f4\u3058\u3083\u306a\u3044\u304b\u307e\u3061\u3087\u3060\u3051\u3069\u3088\u308d\u3057\u304f\u306d\u3002 \u30b5\u30d6\u57a2\u2192@models_ss14 \u8da3\u5473\uff1aTwitter NEW\u300c \u30ab\u30de\u30fc \u300d \u7406\u60f3\u9ad8\u304f\u8ab0\u306b\u3082\u6d41\u3055\u308c\u306a\u3044\u305f\u3060\u4e00\u4eba\u306e\u81ea\u5206 #\u7dba\u9e97\u76ee\u30b3\u30fc\u30c7 \u67d0lounge\u50cd\u3044\u3066\u307e\u3057\u3085\u3002","protected":false,"verified":false,"followers_count":207,"friends_count":216,"listed_count":0,"favourites_count":161,"statuses_count":2663,"created_at":"Wed Sep 23 04:55:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662996154959814657\/GAB5BTpJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662996154959814657\/GAB5BTpJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3655985424\/1446997199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030745935872,"id_str":"663728030745935872","text":"@Vazquezlozadal love ya","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663591221084880896,"in_reply_to_status_id_str":"663591221084880896","in_reply_to_user_id":2481384074,"in_reply_to_user_id_str":"2481384074","in_reply_to_screen_name":"Vazquezlozadal","user":{"id":172001092,"id_str":"172001092","name":"Karla Mart\u00ednez","screen_name":"KARLA_ALEX4","location":"Mexico","url":null,"description":"Newsboys,Evan Craft,Capital Kings,Planetshakers....... with God all is possible","protected":false,"verified":false,"followers_count":246,"friends_count":931,"listed_count":0,"favourites_count":1775,"statuses_count":727,"created_at":"Wed Jul 28 17:45:49 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/830511186\/16016bbf47713d922b8b5b8274e161a6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/830511186\/16016bbf47713d922b8b5b8274e161a6.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663576494560509952\/N98vniSz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663576494560509952\/N98vniSz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172001092\/1447043899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Vazquezlozadal","name":"Libertad Vazquez","id":2481384074,"id_str":"2481384074","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030754279426,"id_str":"663728030754279426","text":"CommScope Reports Third Quarter 2015 Results https:\/\/t.co\/txpSOlxMfp","source":"\u003ca href=\"http:\/\/www.linkedin.com\/\" rel=\"nofollow\"\u003eLinkedIn\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425113778,"id_str":"425113778","name":"peter karlsson","screen_name":"Upkarlsson","location":"North Carolina","url":"https:\/\/www.linkedin.com\/profile\/public-profile-settings?trk=prof-edit-edit-public_profile","description":"Sr. VP Sales at CommScope my opinions are my own","protected":false,"verified":false,"followers_count":277,"friends_count":384,"listed_count":5,"favourites_count":135,"statuses_count":314,"created_at":"Wed Nov 30 15:39:12 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423266193265688576\/Pep6UZUO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423266193265688576\/Pep6UZUO_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/txpSOlxMfp","expanded_url":"https:\/\/lnkd.in\/eFrSTYZ","display_url":"lnkd.in\/eFrSTYZ","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068659"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030783639552,"id_str":"663728030783639552","text":"RT @Chiyochiyoyo: \u3053\u306e\u30a2\u30ec\u30c3\u30af\u30b9\u30fb\u30b7\u30d6\u30bf\u30cb\u6c0f\u306e\u30c4\u30a4\u30fc\u30c8\u306b\u3057\u304b\u3001\u304b\u308f\u3044\u3053\u3076\u308a\u3063\u3053\u3057\u305f\u3086\u3065\u304d\u306f\u5b58\u5728\u3057\u306a\u3044\u3002\u305f\u3060\u3057\u3001\u9650\u308a\u306a\u304f\u3001\u3042\u3056\u3068\u3044\u3002\nhttps:\/\/t.co\/6gZHGEi4FM","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2854044872,"id_str":"2854044872","name":"Mayu","screen_name":"KagaMayu","location":null,"url":null,"description":"\u7fbd\u751f\u3055\u3093\u306e\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u306b\u60f9\u304b\u308c\u3066\u30bd\u30c1\u4ee5\u6765\u306e\u30d5\u30a3\u30ae\u30e5\u30a2\u8d85\u30e9\u30a4\u30c8\u30d5\u30a1\u30f3\u3002\u9670\u8b00\u8ad6\u30ad\u30e9\u30a4\u3001\u9078\u624b\u3082\u30b8\u30e3\u30c3\u30b8\u3082\u307f\u30fc\u3093\u306a\u4eba\u9593\u3002\u5730\u4e0a\u6ce2BSJcom\u6709\u3001\u9060\u5f81\u7121\u3002\u60c5\u5831\u53ce\u96c6\u30e1\u30e2\u3092\u30b7\u30a7\u30a2\u3002\u6a5f\u68b0\u7684\u306a\u30d5\u30a9\u30ed\u30d0\u306f\u3057\u306a\u3044\u306e\u3067\u30d5\u30a9\u30ed\u30ef\u30fc\u6570\u76ee\u5f53\u3066\u306e\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067\u306d\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u304c\u697d\u5668\u7d4c\u9a13\u3042\u308a\u306e\u305f\u3060\u306e\u5b50\u6301\u3061\u4e3b\u5a66\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u30ea\u30e0\u30fc\u30d6\u306f\u3054\u81ea\u7531\u306b\u3002","protected":false,"verified":false,"followers_count":146,"friends_count":491,"listed_count":4,"favourites_count":34178,"statuses_count":26670,"created_at":"Mon Oct 13 07:23:33 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638889575134302208\/gJWtaZGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638889575134302208\/gJWtaZGt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2854044872\/1435570253","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:19 +0000 2015","id":663717757213519873,"id_str":"663717757213519873","text":"\u3053\u306e\u30a2\u30ec\u30c3\u30af\u30b9\u30fb\u30b7\u30d6\u30bf\u30cb\u6c0f\u306e\u30c4\u30a4\u30fc\u30c8\u306b\u3057\u304b\u3001\u304b\u308f\u3044\u3053\u3076\u308a\u3063\u3053\u3057\u305f\u3086\u3065\u304d\u306f\u5b58\u5728\u3057\u306a\u3044\u3002\u305f\u3060\u3057\u3001\u9650\u308a\u306a\u304f\u3001\u3042\u3056\u3068\u3044\u3002\nhttps:\/\/t.co\/6gZHGEi4FM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":782203963,"id_str":"782203963","name":"\u3061\u3088(*^ ^*)","screen_name":"Chiyochiyoyo","location":null,"url":"http:\/\/www.spam-jp.com\/","description":"\u798f\u5ca1\u306e\u5730\u306b\u751f\u307e\u308c\u3001\u6d0b\u753b\u3084\u6d77\u5916\u8e74\u7403\u3092\u611b\u597d\u3057\u305f\u306e\u3061\u3001\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30c8\u306b\u51fa\u4f1a\u3044\u3001\u3044\u308d\u3044\u308d\u3042\u3063\u3066\u3001\u73fe\u5728\u7f36\u8a70\u306b\u306a\u308a\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":1856,"friends_count":446,"listed_count":76,"favourites_count":10870,"statuses_count":26977,"created_at":"Sun Aug 26 10:45:11 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661859870069526528\/Z-qfSwnv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661859870069526528\/Z-qfSwnv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/782203963\/1422709768","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":297154359639281664,"quoted_status_id_str":"297154359639281664","quoted_status":{"created_at":"Fri Feb 01 01:28:15 +0000 2013","id":297154359639281664,"id_str":"297154359639281664","text":"Looking forward to returning to Osaka next week! So many fond memories from THE ICE 2012! #ThrowbackThursday http:\/\/t.co\/2RlN3o3j","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69347129,"id_str":"69347129","name":"Alex Shibutani","screen_name":"AlexShibutani","location":"Ann Arbor via Boston","url":"http:\/\/youtube.com\/ShibSibs","description":"Figure skater. US Olympic Team. I skate with my sis, @MaiaShibutani. YouTube (@ShibSibs). Instagram: alexshibutani | Snapchat: shibsibs | Beme: alexshibutani","protected":false,"verified":true,"followers_count":34852,"friends_count":580,"listed_count":1452,"favourites_count":5518,"statuses_count":3555,"created_at":"Thu Aug 27 17:18:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645305173527629825\/ZTm_LiFC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645305173527629825\/ZTm_LiFC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69347129\/1442668030","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ThrowbackThursday","indices":[91,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":297154359643475970,"id_str":"297154359643475970","indices":[110,130],"media_url":"http:\/\/pbs.twimg.com\/media\/BB-0UNICEAIr7KA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BB-0UNICEAIr7KA.jpg","url":"http:\/\/t.co\/2RlN3o3j","display_url":"pic.twitter.com\/2RlN3o3j","expanded_url":"http:\/\/twitter.com\/AlexShibutani\/status\/297154359639281664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":297154359643475970,"id_str":"297154359643475970","indices":[110,130],"media_url":"http:\/\/pbs.twimg.com\/media\/BB-0UNICEAIr7KA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BB-0UNICEAIr7KA.jpg","url":"http:\/\/t.co\/2RlN3o3j","display_url":"pic.twitter.com\/2RlN3o3j","expanded_url":"http:\/\/twitter.com\/AlexShibutani\/status\/297154359639281664\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":26,"favorite_count":23,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6gZHGEi4FM","expanded_url":"https:\/\/twitter.com\/AlexShibutani\/status\/297154359639281664","display_url":"twitter.com\/AlexShibutani\/\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6gZHGEi4FM","expanded_url":"https:\/\/twitter.com\/AlexShibutani\/status\/297154359639281664","display_url":"twitter.com\/AlexShibutani\/\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"Chiyochiyoyo","name":"\u3061\u3088(*^ ^*)","id":782203963,"id_str":"782203963","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080068666"} +{"delete":{"status":{"id":648941590812229632,"id_str":"648941590812229632","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080068901"}} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030746062852,"id_str":"663728030746062852","text":"\ud83d\udc7d https:\/\/t.co\/i12y5elcIU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74455564,"id_str":"74455564","name":"thai","screen_name":"myqueenshay","location":"belo horizonte ","url":null,"description":"queen of bitches","protected":false,"verified":false,"followers_count":2995,"friends_count":927,"listed_count":24,"favourites_count":1200,"statuses_count":83181,"created_at":"Tue Sep 15 14:07:45 +0000 2009","utc_offset":-18000,"time_zone":"Lima","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083074085\/ab6ff6ef68741d247c52b2b3a9644547.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083074085\/ab6ff6ef68741d247c52b2b3a9644547.png","profile_background_tile":false,"profile_link_color":"0C66A3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"F088F0","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653225728255893504\/E8mbpULf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653225728255893504\/E8mbpULf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74455564\/1444826525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728013188726784,"id_str":"663728013188726784","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHIWXAAA7Pxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHIWXAAA7Pxf.jpg","url":"https:\/\/t.co\/i12y5elcIU","display_url":"pic.twitter.com\/i12y5elcIU","expanded_url":"http:\/\/twitter.com\/myqueenshay\/status\/663728030746062852\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728013188726784,"id_str":"663728013188726784","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHIWXAAA7Pxf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHIWXAAA7Pxf.jpg","url":"https:\/\/t.co\/i12y5elcIU","display_url":"pic.twitter.com\/i12y5elcIU","expanded_url":"http:\/\/twitter.com\/myqueenshay\/status\/663728030746062852\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080068657"} +{"delete":{"status":{"id":663723932915073024,"id_str":"663723932915073024","user_id":4157945414,"user_id_str":"4157945414"},"timestamp_ms":"1447080068891"}} +{"delete":{"status":{"id":648941586643070976,"id_str":"648941586643070976","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080068906"}} +{"delete":{"status":{"id":663697202640896000,"id_str":"663697202640896000","user_id":2296081190,"user_id_str":"2296081190"},"timestamp_ms":"1447080068924"}} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775312384,"id_str":"663728030775312384","text":"RT @RunRagged: Are you ready to R-R-RUMBLE @CharlieSloth #RAW @WWEUK \ud83d\udc4a\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2410211702,"id_str":"2410211702","name":"David Caudill","screen_name":"DavidCaudill561","location":"Hinesburg, Vermont","url":"https:\/\/fourpawscreations.com","description":"Online Business Owner, Successful Affiliate Marketer and Product .","protected":false,"verified":false,"followers_count":29,"friends_count":494,"listed_count":8,"favourites_count":545,"statuses_count":578,"created_at":"Tue Mar 25 05:28:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608906506436608000\/p5WUZyTr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608906506436608000\/p5WUZyTr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2410211702\/1434009668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:56 +0000 2015","id":663719926281146372,"id_str":"663719926281146372","text":"Are you ready to R-R-RUMBLE @CharlieSloth #RAW @WWEUK \ud83d\udc4a\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216648786,"id_str":"216648786","name":"RunRagged","screen_name":"RunRagged","location":"UK","url":"http:\/\/www.runragged.net","description":"The UK's leading 'Talent Wranglers!' Campaigns\/Endorsements. Product Seeding and Placement. Consultancy and Guestlisting. Experience will get you everywhere!","protected":false,"verified":false,"followers_count":1989,"friends_count":1609,"listed_count":9,"favourites_count":740,"statuses_count":2580,"created_at":"Wed Nov 17 10:33:26 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474115626567335937\/sWwCQp5w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474115626567335937\/sWwCQp5w_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216648786\/1435146915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":19,"entities":{"hashtags":[{"text":"RAW","indices":[42,46]}],"urls":[],"user_mentions":[{"screen_name":"CharlieSloth","name":"Charlie Sloth","id":24537779,"id_str":"24537779","indices":[28,41]},{"screen_name":"WWEUK","name":"WWE UK","id":2194683961,"id_str":"2194683961","indices":[47,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RAW","indices":[57,61]}],"urls":[],"user_mentions":[{"screen_name":"RunRagged","name":"RunRagged","id":216648786,"id_str":"216648786","indices":[3,13]},{"screen_name":"CharlieSloth","name":"Charlie Sloth","id":24537779,"id_str":"24537779","indices":[43,56]},{"screen_name":"WWEUK","name":"WWE UK","id":2194683961,"id_str":"2194683961","indices":[62,68]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068664"} +{"delete":{"status":{"id":663704777528856576,"id_str":"663704777528856576","user_id":3179474553,"user_id_str":"3179474553"},"timestamp_ms":"1447080068974"}} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030771113984,"id_str":"663728030771113984","text":"Why I love @bmark1200 \u270a\ud83c\udffc\ud83d\udcaf https:\/\/t.co\/CdgsnBqG4g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":880610593,"id_str":"880610593","name":"Jakob Jaeger","screen_name":"jakobjaeger25","location":"EP for just a little longer ","url":null,"description":"I'm unique.","protected":false,"verified":false,"followers_count":382,"friends_count":249,"listed_count":1,"favourites_count":7880,"statuses_count":8351,"created_at":"Sun Oct 14 17:37:33 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663154441546301440\/hlEd1Uz2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663154441546301440\/hlEd1Uz2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880610593\/1445949699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"9e65217a3af1879e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9e65217a3af1879e.json","place_type":"city","name":"East Peoria","full_name":"East Peoria, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-89.610303,40.619300],[-89.610303,40.752945],[-89.474148,40.752945],[-89.474148,40.619300]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bmark1200","name":"Bryce Markum","id":1051644648,"id_str":"1051644648","indices":[11,21]}],"symbols":[],"media":[{"id":663728018683097089,"id_str":"663728018683097089","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHc0UcAEsK4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHc0UcAEsK4O.jpg","url":"https:\/\/t.co\/CdgsnBqG4g","display_url":"pic.twitter.com\/CdgsnBqG4g","expanded_url":"http:\/\/twitter.com\/jakobjaeger25\/status\/663728030771113984\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728018683097089,"id_str":"663728018683097089","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHc0UcAEsK4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHc0UcAEsK4O.jpg","url":"https:\/\/t.co\/CdgsnBqG4g","display_url":"pic.twitter.com\/CdgsnBqG4g","expanded_url":"http:\/\/twitter.com\/jakobjaeger25\/status\/663728030771113984\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068663"} +{"delete":{"status":{"id":663698834225131521,"id_str":"663698834225131521","user_id":4176080113,"user_id_str":"4176080113"},"timestamp_ms":"1447080068966"}} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030775308289,"id_str":"663728030775308289","text":"Great Website To #Sell Your #Music Online Check It Out!! https:\/\/t.co\/8egfNcf58B https:\/\/t.co\/P261QsVIqc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":878116064,"id_str":"878116064","name":"Emil Manual","screen_name":"Emil4music","location":null,"url":"http:\/\/www.2themillbeats.com","description":"Need Beats? Download 3 Free Beats Here: http:\/\/www.2themillbeats.com\/tm\/beatpacks-3\/","protected":false,"verified":false,"followers_count":7057,"friends_count":2803,"listed_count":39,"favourites_count":0,"statuses_count":9684,"created_at":"Sat Oct 13 15:47:00 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2713090298\/74944f9d1acc53b33956f5b3a87f7b3b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2713090298\/74944f9d1acc53b33956f5b3a87f7b3b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878116064\/1438800937","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Sell","indices":[17,22]},{"text":"Music","indices":[28,34]}],"urls":[{"url":"https:\/\/t.co\/8egfNcf58B","expanded_url":"http:\/\/goo.gl\/4SN9ka?Vwy9o","display_url":"goo.gl\/4SN9ka?Vwy9o","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663728024777416704,"id_str":"663728024777416704","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHzhUYAABWUq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHzhUYAABWUq.png","url":"https:\/\/t.co\/P261QsVIqc","display_url":"pic.twitter.com\/P261QsVIqc","expanded_url":"http:\/\/twitter.com\/Emil4music\/status\/663728030775308289\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":286,"resize":"fit"},"large":{"w":600,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728024777416704,"id_str":"663728024777416704","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHzhUYAABWUq.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHzhUYAABWUq.png","url":"https:\/\/t.co\/P261QsVIqc","display_url":"pic.twitter.com\/P261QsVIqc","expanded_url":"http:\/\/twitter.com\/Emil4music\/status\/663728030775308289\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":286,"resize":"fit"},"large":{"w":600,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068664"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030767017984,"id_str":"663728030767017984","text":"https:\/\/t.co\/ZUQmoyMfM8","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":429736779,"id_str":"429736779","name":"Pr@s@d S.B","screen_name":"prasad_sb","location":"Chennai","url":"http:\/\/www.prasadconstruction.com","description":"Hi Friends ,\r\n I @m Pr@s@d S.B ,\r\nI @m Doing Engineering in \u007b M@gn@ College \u007d\r\n\u2665 I love Friends\u2665\r\nhttp:\/\/www.facebook.com\/smartboyprasad","protected":false,"verified":false,"followers_count":64,"friends_count":241,"listed_count":1,"favourites_count":0,"statuses_count":750,"created_at":"Tue Dec 06 09:50:54 +0000 2011","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/804234846\/b6db314954e18d412964476ea16d2e2e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/804234846\/b6db314954e18d412964476ea16d2e2e.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000105063641\/c263c7c9098e9a4e3859a7844fd2f3ac_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000105063641\/c263c7c9098e9a4e3859a7844fd2f3ac_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/429736779\/1362224957","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZUQmoyMfM8","expanded_url":"http:\/\/fb.me\/2s8kMD3qa","display_url":"fb.me\/2s8kMD3qa","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030767063045,"id_str":"663728030767063045","text":"Realizada la encuesta entre los asistentes en la Puerta del Sol. Resultado: PODEMOS 100% https:\/\/t.co\/ltczQjmEPm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28966230,"id_str":"28966230","name":"ENRIQUE SANCHEZ","screen_name":"ensata","location":"MADRID-ESPA\u00d1A","url":null,"description":"JUSTICIA & ETICA PROFESIONAL","protected":false,"verified":false,"followers_count":8858,"friends_count":8480,"listed_count":104,"favourites_count":8063,"statuses_count":75807,"created_at":"Sun Apr 05 09:44:05 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172281953\/Nl-om7XI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172281953\/Nl-om7XI.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2791683192\/4237c175fd0e3a07d1b5a37bbebf41ab_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2791683192\/4237c175fd0e3a07d1b5a37bbebf41ab_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28966230\/1392320931","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728029231939584,"id_str":"663728029231939584","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIEHXAAAQ5GC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIEHXAAAQ5GC.jpg","url":"https:\/\/t.co\/ltczQjmEPm","display_url":"pic.twitter.com\/ltczQjmEPm","expanded_url":"http:\/\/twitter.com\/ensata\/status\/663728030767063045\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":672,"resize":"fit"},"medium":{"w":600,"h":393,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728029231939584,"id_str":"663728029231939584","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIEHXAAAQ5GC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIEHXAAAQ5GC.jpg","url":"https:\/\/t.co\/ltczQjmEPm","display_url":"pic.twitter.com\/ltczQjmEPm","expanded_url":"http:\/\/twitter.com\/ensata\/status\/663728030767063045\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":672,"resize":"fit"},"medium":{"w":600,"h":393,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080068662"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030746075136,"id_str":"663728030746075136","text":"Le pi\u00f9 belle cam girls online! https:\/\/t.co\/aWoMjHZHbY https:\/\/t.co\/GXTN2nytQe","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185204870,"id_str":"2185204870","name":"Team CamGirls","screen_name":"TeamCam_Girls","location":"Italy","url":"http:\/\/ragazzeincam.tumblr.com\/","description":"\u2764FOLLOW ME I FOLLOW BACK\u2764","protected":false,"verified":false,"followers_count":2560,"friends_count":1081,"listed_count":9,"favourites_count":42,"statuses_count":288887,"created_at":"Sun Nov 17 22:30:18 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/412202557788794880\/geXEbQT__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/412202557788794880\/geXEbQT__normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/aWoMjHZHbY","expanded_url":"http:\/\/ragazzeincam.tumblr.com\/","display_url":"ragazzeincam.tumblr.com","indices":[31,54]}],"user_mentions":[],"symbols":[],"media":[{"id":663728030527934464,"id_str":"663728030527934464","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJII8WUAAdMB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJII8WUAAdMB2.jpg","url":"https:\/\/t.co\/GXTN2nytQe","display_url":"pic.twitter.com\/GXTN2nytQe","expanded_url":"http:\/\/twitter.com\/TeamCam_Girls\/status\/663728030746075136\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728030527934464,"id_str":"663728030527934464","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJII8WUAAdMB2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJII8WUAAdMB2.jpg","url":"https:\/\/t.co\/GXTN2nytQe","display_url":"pic.twitter.com\/GXTN2nytQe","expanded_url":"http:\/\/twitter.com\/TeamCam_Girls\/status\/663728030746075136\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080068657"} +{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728030779576320,"id_str":"663728030779576320","text":"#Colorado high school deals with fallout of massive sexting scandal https:\/\/t.co\/ch0uZWqJbN https:\/\/t.co\/QK849tIit4","source":"\u003ca href=\"http:\/\/williaammcano.weebly.com\" rel=\"nofollow\"\u003ewilliaammcano628\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267067519,"id_str":"3267067519","name":"Amy Lopez","screen_name":"williaammcano","location":"New Delhi, Delhi","url":null,"description":"Infuriatingly humble entrepreneur. Tv lover. Passionate zombie practitioner. Freelance introvert.","protected":false,"verified":false,"followers_count":307,"friends_count":1014,"listed_count":41,"favourites_count":179,"statuses_count":2097,"created_at":"Fri Jul 03 11:17:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616929104156233728\/WC7yYaub_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616929104156233728\/WC7yYaub_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Colorado","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/ch0uZWqJbN","expanded_url":"http:\/\/toptidings.net\/colorado-high-school-deals-with-fallout-of-massive-sexting-scandal\/?utm_source=7423","display_url":"toptidings.net\/colorado-high-\u2026","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":663728029844307968,"id_str":"663728029844307968","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIGZXAAAOKFK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIGZXAAAOKFK.jpg","url":"https:\/\/t.co\/QK849tIit4","display_url":"pic.twitter.com\/QK849tIit4","expanded_url":"http:\/\/twitter.com\/williaammcano\/status\/663728030779576320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728029844307968,"id_str":"663728029844307968","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIGZXAAAOKFK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIGZXAAAOKFK.jpg","url":"https:\/\/t.co\/QK849tIit4","display_url":"pic.twitter.com\/QK849tIit4","expanded_url":"http:\/\/twitter.com\/williaammcano\/status\/663728030779576320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080068665"} +{"delete":{"status":{"id":663725077976891392,"id_str":"663725077976891392","user_id":3107075486,"user_id_str":"3107075486"},"timestamp_ms":"1447080069479"}} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948751361,"id_str":"663728034948751361","text":"\u77e5\u3063\u3066\u308b\u304b\uff1f\u90fd\u4f1a\u306e\u30ab\u30e9\u30b9\u3063\u3066\u98df\u3079\u7269\u306b\u56f0\u308b\u3053\u3068\u304c\u307b\u3068\u3093\u3069\u306a\u3044\u304b\u3089\u3001\u516c\u5712\u306e\u6ed1\u308a\u53f0\u3068\u304b\u3067\u904a\u3076\u3093\u3060\u305c\u3002","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210927396,"id_str":"2210927396","name":"\u661f\u79d1\u5fd7\u512a\u306e\u52d5\u7269\u8c46\u77e5\u8b58bot","screen_name":"isioka1019n","location":null,"url":null,"description":"\u3044\u308f\u304a\u304b(@iwok0126 )\u306e\u611b\u5a18\u3001\u661f\u79d1\u5fd7\u512a\u304c1\u6642\u9593\u306b\u4e00\u56de\u3001\u52d5\u7269\u306e\u3046\u3093\u3061\u304f\u3092\u8a9e\u308bbot\u3002\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002","protected":false,"verified":false,"followers_count":10,"friends_count":11,"listed_count":1,"favourites_count":10,"statuses_count":11094,"created_at":"Sat Nov 23 16:10:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565101842133053440\/mQy56z73_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565101842133053440\/mQy56z73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210927396\/1409817256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948755456,"id_str":"663728034948755456","text":"RT @dxrlingfuentes: it's okay to dislike an artist's music but just attacking them and hating them for no good reason isn't cool lmao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":921812846,"id_str":"921812846","name":"ana","screen_name":"nouiscliffox","location":null,"url":null,"description":"my creativity sucks 11\/03\/13 \u2665 06\/04\/14 \u2665 13\/07\/14 \u2665 2\/4 UJ .","protected":false,"verified":false,"followers_count":1830,"friends_count":1957,"listed_count":3,"favourites_count":37850,"statuses_count":28568,"created_at":"Fri Nov 02 21:22:40 +0000 2012","utc_offset":0,"time_zone":"Lisbon","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104077495\/20f17a39c0016541348583f4b312cb95.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104077495\/20f17a39c0016541348583f4b312cb95.jpeg","profile_background_tile":false,"profile_link_color":"6723A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644207647638581248\/IACQW8nc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644207647638581248\/IACQW8nc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/921812846\/1442426010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:42 +0000 2015","id":663695457684578304,"id_str":"663695457684578304","text":"it's okay to dislike an artist's music but just attacking them and hating them for no good reason isn't cool lmao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1358034810,"id_str":"1358034810","name":"emma.","screen_name":"dxrlingfuentes","location":"070115 101215 103115; W\u0338","url":"https:\/\/twitter.com\/dxrlingfuentes\/status\/654471699623202817","description":"@Kellinquinn: If you have a problem with me whatever say all the shit you want but I will ruin your life if you talk shit about the people I love","protected":false,"verified":false,"followers_count":1715,"friends_count":203,"listed_count":19,"favourites_count":9704,"statuses_count":25817,"created_at":"Tue Apr 16 22:56:14 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660279198846709761\/-ZI3tKO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660279198846709761\/-ZI3tKO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1358034810\/1444528439","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dxrlingfuentes","name":"emma.","id":1358034810,"id_str":"1358034810","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069659"} +{"delete":{"status":{"id":663383804246032384,"id_str":"663383804246032384","user_id":3007758624,"user_id_str":"3007758624"},"timestamp_ms":"1447080069680"}} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034952933376,"id_str":"663728034952933376","text":"RT @RecitoBobMarIey: Aquele \u201cque bom\u201d disfar\u00e7ado de \u201cfoda-se\u201d.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207610133,"id_str":"3207610133","name":"O Aziado O.o","screen_name":"Francisco__234","location":"Leiria, Portugal","url":null,"description":"N\u00e3o desisto f\u00e1cil, mas tamb\u00e9m n\u00e3o insisto para sempre.","protected":false,"verified":false,"followers_count":65,"friends_count":106,"listed_count":0,"favourites_count":188,"statuses_count":1081,"created_at":"Sun Apr 26 00:40:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650450806114779136\/H0vhr2RR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650450806114779136\/H0vhr2RR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207610133\/1443225571","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:09 +0000 2015","id":663711424959483905,"id_str":"663711424959483905","text":"Aquele \u201cque bom\u201d disfar\u00e7ado de \u201cfoda-se\u201d.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611227644,"id_str":"611227644","name":"Bob Marley","screen_name":"RecitoBobMarIey","location":null,"url":null,"description":"Frases do Bob Marley entre outras frases famosas.","protected":false,"verified":false,"followers_count":1208699,"friends_count":200610,"listed_count":324,"favourites_count":613,"statuses_count":44782,"created_at":"Sun Jun 17 21:42:11 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645485200160464896\/8GYiBu4J.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645485200160464896\/8GYiBu4J.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626538762550517760\/WO_quGDs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626538762550517760\/WO_quGDs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611227644\/1445882369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":289,"favorite_count":176,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RecitoBobMarIey","name":"Bob Marley","id":611227644,"id_str":"611227644","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069660"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034978099200,"id_str":"663728034978099200","text":"RT @johnrampton: What You Do Right Before Bed Determines How Productive and Focused You\u2019ll Be Tomorrow https:\/\/t.co\/ceoS0PvsDd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517454429,"id_str":"2517454429","name":"Arbonne by Victoria","screen_name":"ArbonneByVic","location":"Newcastle upon Tyne ","url":"https:\/\/www.facebook.com\/ArbonnelovedbyVictoria\/info","description":"#Mother to 2 boys, wife one husband and #global #entrepreneur. My life is filled with the my love of the #arts, #inspiration and #flawless #skin.","protected":false,"verified":false,"followers_count":728,"friends_count":2037,"listed_count":8,"favourites_count":157,"statuses_count":888,"created_at":"Fri May 23 10:02:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"315439","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646668595561394176\/9tCo1_j9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646668595561394176\/9tCo1_j9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517454429\/1443013194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:30:11 +0000 2015","id":663393085372694528,"id_str":"663393085372694528","text":"What You Do Right Before Bed Determines How Productive and Focused You\u2019ll Be Tomorrow https:\/\/t.co\/ceoS0PvsDd","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76966092,"id_str":"76966092","name":"John Rampton","screen_name":"johnrampton","location":"Palo Alto, CA","url":"http:\/\/www.johnrampton.com","description":"Entrepreneur, Investor & Connector. Founder of @Due. I blog about my success and my epic failures on @Entrepreneur, @TechCrunch, @Forbes and @Inc.","protected":false,"verified":true,"followers_count":340832,"friends_count":316774,"listed_count":2861,"favourites_count":5302,"statuses_count":11290,"created_at":"Thu Sep 24 15:31:23 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/782008220\/e5a6092bc9d960bc822a5cebfe395439.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/782008220\/e5a6092bc9d960bc822a5cebfe395439.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547842630990581761\/L8Z0jGts_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547842630990581761\/L8Z0jGts_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76966092\/1408151676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":62,"favorite_count":118,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ceoS0PvsDd","expanded_url":"http:\/\/buff.ly\/1gPO0gO","display_url":"buff.ly\/1gPO0gO","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ceoS0PvsDd","expanded_url":"http:\/\/buff.ly\/1gPO0gO","display_url":"buff.ly\/1gPO0gO","indices":[103,126]}],"user_mentions":[{"screen_name":"johnrampton","name":"John Rampton","id":76966092,"id_str":"76966092","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069666"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034978136064,"id_str":"663728034978136064","text":"RT @kimdahyun_kr: 151105\uc2e0\ucd0c\ud32c\uc0ac\uc778\ud68c #\ud2b8\uc640\uc774\uc2a4 #\ub2e4\ud604\n\ub461\uc774\ub9ac\uc640\ud30c\uc774\ub9ac \ub354\ub9ce\uc740 \uc0ac\uc9c4\uc740 \ud648\uc73c\ub85c!\nhttps:\/\/t.co\/DVCSc2O29q\nhttps:\/\/t.co\/C4w9n4wN3M\nhttps:\/\/t.co\/w7amDnOtCE https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1491403554,"id_str":"1491403554","name":"francie.","screen_name":"scoupzi","location":"ggroups girls yul + bae (\u2640)","url":"http:\/\/mickybrwn.tumblr.com","description":"(656) pychun&pcyeol + nwh \u2600 \uc5d1\uc18c \uc778\ud53c\ub2c8\ud2b8 + svt","protected":false,"verified":false,"followers_count":540,"friends_count":218,"listed_count":4,"favourites_count":3347,"statuses_count":160535,"created_at":"Fri Jun 07 22:27:33 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615027273176104961\/0ceb8srm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615027273176104961\/0ceb8srm.png","profile_background_tile":true,"profile_link_color":"B0C6D3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663108959277096960\/_Lx07S_z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663108959277096960\/_Lx07S_z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1491403554\/1446679782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:30 +0000 2015","id":663714028846346241,"id_str":"663714028846346241","text":"151105\uc2e0\ucd0c\ud32c\uc0ac\uc778\ud68c #\ud2b8\uc640\uc774\uc2a4 #\ub2e4\ud604\n\ub461\uc774\ub9ac\uc640\ud30c\uc774\ub9ac \ub354\ub9ce\uc740 \uc0ac\uc9c4\uc740 \ud648\uc73c\ub85c!\nhttps:\/\/t.co\/DVCSc2O29q\nhttps:\/\/t.co\/C4w9n4wN3M\nhttps:\/\/t.co\/w7amDnOtCE https:\/\/t.co\/rtU4maHEZB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3238737636,"id_str":"3238737636","name":"SHINE A LIGHT","screen_name":"kimdahyun_kr","location":null,"url":"http:\/\/www.kimdahyun.kr","description":"\ud2b8\uc640\uc774\uc2a4\/\ub2e4\ud604\/\uae40\ub450\ubd80\/","protected":false,"verified":false,"followers_count":7618,"friends_count":10,"listed_count":277,"favourites_count":2,"statuses_count":150,"created_at":"Sun Jun 07 11:32:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660289330108207104\/IuFwLemV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660289330108207104\/IuFwLemV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238737636\/1446739805","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":125,"entities":{"hashtags":[{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[13,18]},{"text":"\ub2e4\ud604","indices":[19,22]}],"urls":[{"url":"https:\/\/t.co\/DVCSc2O29q","expanded_url":"http:\/\/cfile22.uf.tistory.com\/original\/2628A9425640A1742AB83C","display_url":"cfile22.uf.tistory.com\/original\/2628A\u2026","indices":[44,67]},{"url":"https:\/\/t.co\/C4w9n4wN3M","expanded_url":"http:\/\/cfile1.uf.tistory.com\/original\/232C3B425640A16D2EB617","display_url":"cfile1.uf.tistory.com\/original\/232C3\u2026","indices":[68,91]},{"url":"https:\/\/t.co\/w7amDnOtCE","expanded_url":"http:\/\/cfile28.uf.tistory.com\/original\/243E19425640A1721DE50E","display_url":"cfile28.uf.tistory.com\/original\/243E1\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663714026497511424,"id_str":"663714026497511424","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"large":{"w":982,"h":1492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":911,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714026497511424,"id_str":"663714026497511424","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"large":{"w":982,"h":1492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":911,"resize":"fit"}}},{"id":663714016972312576,"id_str":"663714016972312576","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8YcYVEAALXY0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8YcYVEAALXY0.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}},{"id":663713974739795969,"id_str":"663713974739795969","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8V_DUAAE9Ach.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8V_DUAAE9Ach.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":986,"h":739,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ud2b8\uc640\uc774\uc2a4","indices":[31,36]},{"text":"\ub2e4\ud604","indices":[37,40]}],"urls":[{"url":"https:\/\/t.co\/DVCSc2O29q","expanded_url":"http:\/\/cfile22.uf.tistory.com\/original\/2628A9425640A1742AB83C","display_url":"cfile22.uf.tistory.com\/original\/2628A\u2026","indices":[62,85]},{"url":"https:\/\/t.co\/C4w9n4wN3M","expanded_url":"http:\/\/cfile1.uf.tistory.com\/original\/232C3B425640A16D2EB617","display_url":"cfile1.uf.tistory.com\/original\/232C3\u2026","indices":[86,109]},{"url":"https:\/\/t.co\/w7amDnOtCE","expanded_url":"http:\/\/cfile28.uf.tistory.com\/original\/243E19425640A1721DE50E","display_url":"cfile28.uf.tistory.com\/original\/243E1\u2026","indices":[110,133]}],"user_mentions":[{"screen_name":"kimdahyun_kr","name":"SHINE A LIGHT","id":3238737636,"id_str":"3238737636","indices":[3,16]}],"symbols":[],"media":[{"id":663714026497511424,"id_str":"663714026497511424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"large":{"w":982,"h":1492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":911,"resize":"fit"}},"source_status_id":663714028846346241,"source_status_id_str":"663714028846346241","source_user_id":3238737636,"source_user_id_str":"3238737636"}]},"extended_entities":{"media":[{"id":663714026497511424,"id_str":"663714026497511424","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8Y_3UEAA4-Qm.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"large":{"w":982,"h":1492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":516,"resize":"fit"},"medium":{"w":600,"h":911,"resize":"fit"}},"source_status_id":663714028846346241,"source_status_id_str":"663714028846346241","source_user_id":3238737636,"source_user_id_str":"3238737636"},{"id":663714016972312576,"id_str":"663714016972312576","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8YcYVEAALXY0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8YcYVEAALXY0.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663714028846346241,"source_status_id_str":"663714028846346241","source_user_id":3238737636,"source_user_id_str":"3238737636"},{"id":663713974739795969,"id_str":"663713974739795969","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8V_DUAAE9Ach.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8V_DUAAE9Ach.jpg","url":"https:\/\/t.co\/rtU4maHEZB","display_url":"pic.twitter.com\/rtU4maHEZB","expanded_url":"http:\/\/twitter.com\/kimdahyun_kr\/status\/663714028846346241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":986,"h":739,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663714028846346241,"source_status_id_str":"663714028846346241","source_user_id":3238737636,"source_user_id_str":"3238737636"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080069666"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973806595,"id_str":"663728034973806595","text":"\u30dd\u30c3\u30d7\u30f3\u30ab\u30fc\u30c9F\u2010\u30c8\u30ec\u30a4\u30f3\u5f15\u304d\u5408\u3044\u5915\u713c\u3051\u30ec\u30a2\u30bf\u30b0\u30ec\u30a2\u5408\u6226\u3067\u4f3c\u305f\u5149\u666f\u304c","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224214622,"id_str":"224214622","name":"\u6c5f\u6238\u6751JBO\uff12\uff10","screen_name":"S_edomura","location":"\u65e2\u306b\u30c9\u30ab\u30f3\u3068TAG\u3055\u3093\u304c\u6765\u3066\u308b","url":"http:\/\/pasufuga.web.fc2.com\/","description":"\u3042\u306a\u305f\u306e\u6c5f\u6238\u6751\u3067\u3059\u3002\uff26-\u30c8\u30ec\u30a4\u30f3\u304c\u5927\u597d\u304d\u3067\u3059\u3002BEMANI\u3068\u30ab\u30ec\u30fc\u3068\u30aa\u30c8\u30ab\u3068\u5317\u306e\u4e8b\u52d9\u6240\u3068\u30a6\u30eb\u30c8\u30e9\u30de\u30f3\u3068\u30b3\u30ed\u30b3\u30ed\n\u3068\u3055\u306d\u3088\u3057\u3044\u3055\u5b50\u3055\u3093\u3068\u3044\u3063\u3071\u3044\u597d\u304d\u3002\u697d\u3057\u3044\u4e8b\u306a\u3089\u4f55\u3067\u3082\u597d\u304d\u3002\u81ea\u4e3b\u898f\u5236\u7528\u2192@X_edomura \u3068 \u30b6\u57a2\u2192@mxt_edo\r\n \u30dd\u30ab\u30ea\u2192http:\/\/poca.li\/edomura\/","protected":false,"verified":false,"followers_count":225,"friends_count":201,"listed_count":17,"favourites_count":957,"statuses_count":72614,"created_at":"Wed Dec 08 12:50:30 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB70A8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/310625534\/sumu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/310625534\/sumu.jpg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660066796586668032\/B1rYWjnO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660066796586668032\/B1rYWjnO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224214622\/1403623059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948714496,"id_str":"663728034948714496","text":"@JackJackJohnson Jack please check my sister's @maria_romay_ last photos!! Was a pleasure meeting you in Santiago. Please follow us\ud83d\ude03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":407199560,"id_str":"407199560","name":"Marta","screen_name":"marta_romay_","location":"Madrid","url":"http:\/\/instagram.com\/marta_romay_","description":"Just love. You never know when it will be taken away, so just love. JACK&JACK\u2764\ufe0f","protected":false,"verified":false,"followers_count":2780,"friends_count":311,"listed_count":8,"favourites_count":1762,"statuses_count":33433,"created_at":"Mon Nov 07 19:34:23 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/884180268\/f0613151a104851939ee0bd0d2993455.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/884180268\/f0613151a104851939ee0bd0d2993455.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609497500416909313\/pUn-mCZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609497500416909313\/pUn-mCZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/407199560\/1437395613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]},{"screen_name":"maria_romay_","name":"Maria \u2661","id":407206687,"id_str":"407206687","indices":[47,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034952925184,"id_str":"663728034952925184","text":"RT @camilacontumblr: Camila Cabello on tumblr (November 9th) https:\/\/t.co\/HxRjA53jZp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":510514899,"id_str":"510514899","name":"Kenti$h","screen_name":"1multikentish","location":"Mauritius","url":"http:\/\/www.youtube.com\/user\/1multikentish","description":"..the youtube guy.. #MaleHarmonizer","protected":false,"verified":false,"followers_count":1349,"friends_count":574,"listed_count":13,"favourites_count":8185,"statuses_count":53600,"created_at":"Thu Mar 01 16:50:52 +0000 2012","utc_offset":14400,"time_zone":"Muscat","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E7065","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460358677195550720\/QX9TgIYM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460358677195550720\/QX9TgIYM.jpeg","profile_background_tile":true,"profile_link_color":"487AC4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662678217682231296\/EZ49Lnvg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662678217682231296\/EZ49Lnvg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/510514899\/1445801542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:15:17 +0000 2015","id":663706423394725888,"id_str":"663706423394725888","text":"Camila Cabello on tumblr (November 9th) https:\/\/t.co\/HxRjA53jZp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3981271378,"id_str":"3981271378","name":"camila c on tumblr","screen_name":"camilacontumblr","location":null,"url":"http:\/\/waakeme-up.tumblr.com","description":"Everything about Camila's tumblr","protected":false,"verified":false,"followers_count":495,"friends_count":8,"listed_count":0,"favourites_count":1,"statuses_count":122,"created_at":"Sat Oct 17 18:01:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655444799705755648\/FrOCzH5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655444799705755648\/FrOCzH5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981271378\/1445105202","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663706405065646080,"id_str":"663706405065646080","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","url":"https:\/\/t.co\/HxRjA53jZp","display_url":"pic.twitter.com\/HxRjA53jZp","expanded_url":"http:\/\/twitter.com\/camilacontumblr\/status\/663706423394725888\/photo\/1","type":"photo","sizes":{"large":{"w":638,"h":455,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706405065646080,"id_str":"663706405065646080","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","url":"https:\/\/t.co\/HxRjA53jZp","display_url":"pic.twitter.com\/HxRjA53jZp","expanded_url":"http:\/\/twitter.com\/camilacontumblr\/status\/663706423394725888\/photo\/1","type":"photo","sizes":{"large":{"w":638,"h":455,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"camilacontumblr","name":"camila c on tumblr","id":3981271378,"id_str":"3981271378","indices":[3,19]}],"symbols":[],"media":[{"id":663706405065646080,"id_str":"663706405065646080","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","url":"https:\/\/t.co\/HxRjA53jZp","display_url":"pic.twitter.com\/HxRjA53jZp","expanded_url":"http:\/\/twitter.com\/camilacontumblr\/status\/663706423394725888\/photo\/1","type":"photo","sizes":{"large":{"w":638,"h":455,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663706423394725888,"source_status_id_str":"663706423394725888","source_user_id":3981271378,"source_user_id_str":"3981271378"}]},"extended_entities":{"media":[{"id":663706405065646080,"id_str":"663706405065646080","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1dX0W4AAGyok.jpg","url":"https:\/\/t.co\/HxRjA53jZp","display_url":"pic.twitter.com\/HxRjA53jZp","expanded_url":"http:\/\/twitter.com\/camilacontumblr\/status\/663706423394725888\/photo\/1","type":"photo","sizes":{"large":{"w":638,"h":455,"resize":"fit"},"medium":{"w":600,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"}},"source_status_id":663706423394725888,"source_status_id_str":"663706423394725888","source_user_id":3981271378,"source_user_id_str":"3981271378"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069660"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969612288,"id_str":"663728034969612288","text":"Follow toward bring to pass mannerism albertype: Usx","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1240542476,"id_str":"1240542476","name":"RichardWhite","screen_name":"Richard39765610","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":151,"friends_count":1,"listed_count":30,"favourites_count":0,"statuses_count":70851,"created_at":"Mon Mar 04 05:05:03 +0000 2013","utc_offset":36000,"time_zone":"Port Moresby","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3505510930\/5d53d4e7500d3461d5336a8032e6ec0d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3505510930\/5d53d4e7500d3461d5336a8032e6ec0d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034940329984,"id_str":"663728034940329984","text":"@aliisbot did I ask u? No. I know. I WAS SAYING I WANT TO SEE MY TWEETS IN MY HIGHLIGHTS basic rat.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727793264545793,"in_reply_to_status_id_str":"663727793264545793","in_reply_to_user_id":520605785,"in_reply_to_user_id_str":"520605785","in_reply_to_screen_name":"aliisbot","user":{"id":526652434,"id_str":"526652434","name":"Safiyyah","screen_name":"sapphiyyah","location":"Cape Town, South Africa","url":"https:\/\/instagram.com\/unskilled.photography.by.s\/","description":"I tried deactivating. Didn't work.","protected":false,"verified":false,"followers_count":1156,"friends_count":504,"listed_count":8,"favourites_count":17565,"statuses_count":20057,"created_at":"Fri Mar 16 18:10:52 +0000 2012","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D8D8D8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597444305729359872\/Q2yH7cxb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597444305729359872\/Q2yH7cxb.jpg","profile_background_tile":true,"profile_link_color":"1C1C1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663686465373761536\/X2twbjdM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663686465373761536\/X2twbjdM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/526652434\/1447070198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aliisbot","name":"ali","id":520605785,"id_str":"520605785","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069657"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034940227584,"id_str":"663728034940227584","text":"@Nadia_d_0 \ud63c\ub098!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727927784112128,"in_reply_to_status_id_str":"663727927784112128","in_reply_to_user_id":3181608103,"in_reply_to_user_id_str":"3181608103","in_reply_to_screen_name":"Nadia_d_0","user":{"id":3181817503,"id_str":"3181817503","name":"Egon","screen_name":"Egon_F_4","location":null,"url":null,"description":"Egon\/30\/180\/?\/\ub538\uc774\ub791 \uc544\ub4e4\uc774\ub791\/multi, switch\/\n\ud0a4\uc6cc\ub4dc : \uc74c\ub780, \uc74c\uc2dd","protected":false,"verified":false,"followers_count":81,"friends_count":122,"listed_count":0,"favourites_count":396,"statuses_count":19197,"created_at":"Fri May 01 13:49:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660798348346036224\/b1FjZ99Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660798348346036224\/b1FjZ99Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181817503\/1430488740","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nadia_d_0","name":"[E.TS]Neal","id":3181608103,"id_str":"3181608103","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080069657"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034956967936,"id_str":"663728034956967936","text":"\u30cb\u30e7\u30e9\uff5e\u3093","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3276900397,"id_str":"3276900397","name":"\u30cb\u30e3\u30f3\u30c9\u30e9","screen_name":"nyandra_nyonyo","location":"\uff84\uff9e\uff70\uff99\u30b7\u30a7\u30a2\u30cf\u30a6\u30b9(\u5bb6\u4e8b\u62c5)","url":null,"description":"\u30cb\u30e3\u30f3\u30c9\u30e9\u30cb\u30e7\u30e9\uff5e\u3002 \u4ef2\u826f\u304f\u3057\u3066\u6b32\u3057\u3044\u30cb\u30e7\u30e9\uff5e! \u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u3067\u3059\u3002 \u4e2d\u306e\u4eba(@momolka_)\u304c\u624b\u52d5\u3067\uff98\uff8c\uff9f\u30fb\u305f\u307e\u306b\uff82\uff72\uff70\uff84\u3057\u307e\u3059\u3002\u3002 http:\/\/twpf.jp\/nyandra_nyonyo","protected":false,"verified":false,"followers_count":124,"friends_count":226,"listed_count":1,"favourites_count":43,"statuses_count":3506,"created_at":"Sun Jul 12 00:45:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630573135872417793\/6KoHeGIJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630573135872417793\/6KoHeGIJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3276900397\/1437533864","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069661"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948751360,"id_str":"663728034948751360","text":"RT @dinkymendes: I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3362916034,"id_str":"3362916034","name":"Carly","screen_name":"carly_magcon_30","location":"Arag\u00f3n, Espa\u00f1a","url":"https:\/\/instagram.com\/carly_magcon_\/","description":"i'm in love with mgcon.Taylor follow!! \nInsragram : carly_magcon_","protected":false,"verified":false,"followers_count":156,"friends_count":174,"listed_count":1,"favourites_count":3824,"statuses_count":3557,"created_at":"Mon Jul 06 18:45:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659027197651472384\/T0Ty1oIv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659027197651472384\/T0Ty1oIv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3362916034\/1438379256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:30 +0000 2015","id":663718557625229312,"id_str":"663718557625229312","text":"I met jack and jack 3 days ago but i already bought m&g tickets to see the guys again https:\/\/t.co\/aTzeV6qs8U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264828637,"id_str":"264828637","name":"I HUGGED JACK&JACK","screen_name":"dinkymendes","location":"Actually my life is complete","url":"https:\/\/twitter.com\/dinkymendes\/status\/629738683248283652","description":"I had the best moment of my life when jack and jack held me in his arms. I hugged the lovely shawn, niall gave me his guitar pick and Harry said me 'i love u'.","protected":false,"verified":false,"followers_count":49998,"friends_count":43763,"listed_count":63,"favourites_count":24538,"statuses_count":46472,"created_at":"Sat Mar 12 14:37:07 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578305248235634688\/a3h3nwkW.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724831423209472\/aENBlRtP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264828637\/1447079620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":68,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dinkymendes","name":"I HUGGED JACK&JACK","id":264828637,"id_str":"264828637","indices":[3,15]}],"symbols":[],"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663718557625229312,"source_status_id_str":"663718557625229312","source_user_id":264828637,"source_user_id_str":"264828637"}]},"extended_entities":{"media":[{"id":663718547810570240,"id_str":"663718547810570240","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAgLEWUAAiUbt.jpg","url":"https:\/\/t.co\/aTzeV6qs8U","display_url":"pic.twitter.com\/aTzeV6qs8U","expanded_url":"http:\/\/twitter.com\/dinkymendes\/status\/663718557625229312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":536,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663718557625229312,"source_status_id_str":"663718557625229312","source_user_id":264828637,"source_user_id_str":"264828637"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944557056,"id_str":"663728034944557056","text":"@endersvan eu disse: \"penso assim de voc\u00ea. \u00c9 por isso que a gente tem que casar\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727433925922817,"in_reply_to_status_id_str":"663727433925922817","in_reply_to_user_id":1490838266,"in_reply_to_user_id_str":"1490838266","in_reply_to_screen_name":"endersvan","user":{"id":370410937,"id_str":"370410937","name":"s.","screen_name":"anywaylana","location":"Litchfield","url":null,"description":"trouxa, sou\/\/ snapchat: uva.7","protected":false,"verified":false,"followers_count":1637,"friends_count":1891,"listed_count":2,"favourites_count":2526,"statuses_count":11318,"created_at":"Fri Sep 09 00:05:36 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656512571529256960\/zDqjtSJG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656512571529256960\/zDqjtSJG.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656149762857500672\/TDbbGDVx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656149762857500672\/TDbbGDVx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370410937\/1444240559","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"endersvan","name":"promise","id":1490838266,"id_str":"1490838266","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961199105,"id_str":"663728034961199105","text":"RT @mainedcm: Just.....just be happy for me and support me in the decisions I make. Is that too much to ask???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4059908353,"id_str":"4059908353","name":"Mercypampolan","screen_name":"ashleihayati","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":12,"listed_count":0,"favourites_count":9,"statuses_count":126,"created_at":"Thu Oct 29 17:34:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660202564181430272\/vrdKzEkH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660202564181430272\/vrdKzEkH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4059908353\/1446239716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:14:45 +0000 2015","id":663706289176903680,"id_str":"663706289176903680","text":"Just.....just be happy for me and support me in the decisions I make. Is that too much to ask???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63701775,"id_str":"63701775","name":"Maine Mendoza","screen_name":"mainedcm","location":null,"url":null,"description":"yup, I am that girl","protected":false,"verified":true,"followers_count":2488045,"friends_count":276,"listed_count":1549,"favourites_count":1400,"statuses_count":38005,"created_at":"Fri Aug 07 12:07:22 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_tile":true,"profile_link_color":"1A1A17","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63701775\/1446987129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10036,"favorite_count":27781,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948603904,"id_str":"663728034948603904","text":"\uc804\uccb4\uc801\uc73c\ub85c \ub4dc\ub9bd\ub825\uc774 \uc57d\ud558\ub139","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805244236,"id_str":"2805244236","name":"\uadc0\uc5ec\uc6b4 \uc5ec\uc911\uc0dd \uc11c\ub098","screen_name":"shiroiyoake","location":"\uad11\uc8fc","url":null,"description":"\ub9ac\uac9c-\uc0ac\ubcfc,\uc720\ube57,\ud31d\ud508,\ud0dc\uace0\n\uc560\ub2c8\ub355\uc9c8\r\n\uac8c\uc784\uc740 \ub864\ube7c\uace4 \uc798 \uc548\ud574\uc694\n\u2606\uc5ec\uc911\uc0dd \uc544\ub2d9\ub2c8\ub2e4\u2606","protected":false,"verified":false,"followers_count":79,"friends_count":91,"listed_count":0,"favourites_count":95,"statuses_count":7480,"created_at":"Fri Sep 12 09:47:50 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661485637682356224\/iPJi-nPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661485637682356224\/iPJi-nPm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805244236\/1435954358","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969620480,"id_str":"663728034969620480","text":"@6SJBMO happypooping","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727784464773120,"in_reply_to_status_id_str":"663727784464773120","in_reply_to_user_id":3803589313,"in_reply_to_user_id_str":"3803589313","in_reply_to_screen_name":"6SJBMO","user":{"id":2987271962,"id_str":"2987271962","name":"\u3141","screen_name":"HOBIBMO","location":"BMO","url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":46,"listed_count":1,"favourites_count":2084,"statuses_count":1356,"created_at":"Sat Jan 17 16:23:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658613018457038848\/NHQGk5_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658613018457038848\/NHQGk5_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987271962\/1445855995","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"6SJBMO","name":"joy's on hiatus","id":3803589313,"id_str":"3803589313","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034952802304,"id_str":"663728034952802304","text":"RT @LoveNofly: \u3010\u73fe\u57289,818CHEER\u2661\u3011\u9ebb\u751f \u5343\u6075\u3092\u5fdc\u63f4\u4e2d\uff01 https:\/\/t.co\/qP6IMLqLv1 #CHEERZ #\u30df\u30b9iD\n\u7686\u3055\u3093\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059m(\u3002\u2267\u0414\u2266\u3002)m\n\u751a\u516b\u3082\u5fd8\u5e74\u4f1a\u53d7\u4ed8\u4e2d\u3067\u3059!!(^\u0437^)-\u2606","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3725761333,"id_str":"3725761333","name":"\u3070\u3074@\u30cf\u30ce\u30d5\u30a3\u30ea\u30a2","screen_name":"ZcvRzx","location":null,"url":null,"description":"http:\/\/miss-id.cheerz.cz\/semifinalist\/show\/78 \u5fdc\u63f4and\u30ea\u30d7\u7528\u3002\u306f\u306e\u306f\u306a\u3088\u3061\u3083\u3093\u3002@pinnnx","protected":false,"verified":false,"followers_count":64,"friends_count":185,"listed_count":0,"favourites_count":486,"statuses_count":558,"created_at":"Tue Sep 29 12:29:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663024773883035648\/_6joO_d1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663024773883035648\/_6joO_d1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3725761333\/1443603637","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:37:07 +0000 2015","id":663681721368383488,"id_str":"663681721368383488","text":"\u3010\u73fe\u57289,818CHEER\u2661\u3011\u9ebb\u751f \u5343\u6075\u3092\u5fdc\u63f4\u4e2d\uff01 https:\/\/t.co\/qP6IMLqLv1 #CHEERZ #\u30df\u30b9iD\n\u7686\u3055\u3093\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059m(\u3002\u2267\u0414\u2266\u3002)m\n\u751a\u516b\u3082\u5fd8\u5e74\u4f1a\u53d7\u4ed8\u4e2d\u3067\u3059!!(^\u0437^)-\u2606","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1133897239,"id_str":"1133897239","name":"\u751a\u516b\u306e\u30ab\u30ea\u30b9\u30de\u5e97\u9577","screen_name":"LoveNofly","location":null,"url":null,"description":"\u56db\u5b63\u3001\u751a\u516b\u306e\u5e97\u9577\u3067\u3059\uff5e\u5ddd\u8d8a\u5728\u4f4f\/\u7acb\u6559\u5927\u5b66\u5352\u696d\/\u304a\u5e97\u3001\u304a\u5ba2\u3055\u307e\u306e\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u53c2\u308a\u307e\u3059\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u306d","protected":false,"verified":false,"followers_count":606,"friends_count":620,"listed_count":2,"favourites_count":5365,"statuses_count":7511,"created_at":"Wed Jan 30 12:09:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649252543621541888\/h18EiSCL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649252543621541888\/h18EiSCL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1133897239\/1379906372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"b2b9b95f1634817e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b2b9b95f1634817e.json","place_type":"city","name":"\u6771\u677e\u5c71\u5e02","full_name":"\u57fc\u7389\u770c \u6771\u677e\u5c71\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.339453,35.979552],[139.339453,36.098689],[139.462953,36.098689],[139.462953,35.979552]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"CHEERZ","indices":[50,57]},{"text":"\u30df\u30b9iD","indices":[58,63]}],"urls":[{"url":"https:\/\/t.co\/qP6IMLqLv1","expanded_url":"https:\/\/cheerz.cz\/post\/111584","display_url":"cheerz.cz\/post\/111584","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CHEERZ","indices":[65,72]},{"text":"\u30df\u30b9iD","indices":[73,78]}],"urls":[{"url":"https:\/\/t.co\/qP6IMLqLv1","expanded_url":"https:\/\/cheerz.cz\/post\/111584","display_url":"cheerz.cz\/post\/111584","indices":[41,64]}],"user_mentions":[{"screen_name":"LoveNofly","name":"\u751a\u516b\u306e\u30ab\u30ea\u30b9\u30de\u5e97\u9577","id":1133897239,"id_str":"1133897239","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069660"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034978000896,"id_str":"663728034978000896","text":"RT @greenkanan5: \u30e2\u30f3\u30cf\u30f3\u3063\u3066\u3072\u3068\u308a\u3067\u904a\u3076\u30b2\u30fc\u30e0\u3058\u3083\u306a\u3044\u3093\u3067\u3059\u304b\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1706540792,"id_str":"1706540792","name":"\u304b\u306e\u3093\u3164","screen_name":"kaanon0","location":"\u5317\u9678","url":null,"description":"\u308f\u304b\u3081\u3054\u306f\u3093\u306a\u306e\u3067\u3059","protected":false,"verified":false,"followers_count":272,"friends_count":233,"listed_count":8,"favourites_count":1810,"statuses_count":51766,"created_at":"Wed Aug 28 06:58:41 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585465216890077184\/U10e58_5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585465216890077184\/U10e58_5.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658993286921588736\/QjWK3IZd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658993286921588736\/QjWK3IZd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1706540792\/1444986002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727978354839552,"id_str":"663727978354839552","text":"\u30e2\u30f3\u30cf\u30f3\u3063\u3066\u3072\u3068\u308a\u3067\u904a\u3076\u30b2\u30fc\u30e0\u3058\u3083\u306a\u3044\u3093\u3067\u3059\u304b\u2026","source":"\u003ca href=\"http:\/\/www.jstwi.com\/kurotwi\/\" rel=\"nofollow\"\u003eKuroTwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2470405440,"id_str":"2470405440","name":"\u30ab\u30ca\u30f3\uff208\u9bd6\u63d0\u7763","screen_name":"greenkanan5","location":"\u8ab2\u984c\u306e\u5c71\u306e\u306a\u304b","url":"http:\/\/twpf.jp\/greenkanan5","description":"PSO2\u30108\u9bd6\u3011\u30fb\u8266\u3053\u308c\u3010\u6842\u5cf6\u6cca\u5730\u3011\u30fb\u30ab\u30b9\u30bf\u30e0\u30e1\u30a4\u30c93D2\u3084\u3063\u3066\u307e\u3059\u3000\u8a73\u7d30\u306f\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u306d","protected":false,"verified":false,"followers_count":469,"friends_count":469,"listed_count":18,"favourites_count":4450,"statuses_count":70663,"created_at":"Wed Apr 30 05:57:21 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646297139941740544\/QbDsgdA2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646297139941740544\/QbDsgdA2.jpg","profile_background_tile":false,"profile_link_color":"38AD0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382038284648450\/ZLxy9iRw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382038284648450\/ZLxy9iRw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2470405440\/1446995629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"greenkanan5","name":"\u30ab\u30ca\u30f3\uff208\u9bd6\u63d0\u7763","id":2470405440,"id_str":"2470405440","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069666"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961350656,"id_str":"663728034961350656","text":"itsedgarbro omg yes lol by six flags hella just chillin texting in his phone causing hella traffic \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 \u2026 \u2026 \u2026 \u2026 https:\/\/t.co\/CKeyDEH75w","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4097268267,"id_str":"4097268267","name":"Johnsy","screen_name":"meJhonsy","location":"Houston, TX","url":null,"description":"pop culture junkie. Lifelong analyst. Zombieaholic. Organizer.","protected":false,"verified":false,"followers_count":79,"friends_count":951,"listed_count":20,"favourites_count":0,"statuses_count":16588,"created_at":"Mon Nov 02 12:54:10 +0000 2015","utc_offset":-21600,"time_zone":"Guadalajara","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661165416622854144\/UR-i4dzM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661165416622854144\/UR-i4dzM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4097268267\/1446469054","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CKeyDEH75w","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973806594,"id_str":"663728034973806594","text":"RT @tamatama_nnnn: \u30dc\u30fc\u30eb\u30c9\uff01\uff01\uff01\u67d4\u8edf\u5264\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2186321348,"id_str":"2186321348","name":"\u30c1\u30d9\u30b9\u30ca\u3042\u307f\u30fc\u308b\u306f\u3059\u306a\u304e\u3082\u306b\u306a\u308a\u305f\u3044","screen_name":"1010ami101","location":null,"url":null,"description":"\u22c6\uff61\u02da\u2729\u22c6\uff61\u02da\u2729\u22c6\uff61\u02da\u2729\u7389\u68ee \u88d5\u592a\u304f\u3093\u3060\u3051\u22c6\uff61\u02da\u2729\u22c6\uff61\u02da\u2729\u22c6\uff61\u02da\u2729\u3089\u3077\u3048\u307f\u611b\u65b9\u52df\u96c6\u4e2d\uff01\uff01\u300c\u8c37\u9593\u306e\u3053\u3068\u306a\u3089\u4efb\u305b\u3066\uff01\u8c37\u30de\u30b9\u30bf\u30fc\u2728\u8c37\u9593\u7f8e\u4eba\u306b\u306a\u308a\u305f\u3044\u3067\u3059\u3002\u8c37\u9593\u4e8b\u52d9\u6240\u958b\u3044\u3066\u307e\u3059\uff01\uff01\u30c4\u30a4\u30d7\u30ed\u261ehttp:\/\/twpf.jp\/1010ami101 \u30c4\u30a4\u30d7\u30ed\u307f\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":908,"friends_count":861,"listed_count":24,"favourites_count":8187,"statuses_count":18851,"created_at":"Sun Nov 10 12:54:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645521195559862272\/ucZ-4mdS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645521195559862272\/ucZ-4mdS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186321348\/1443629012","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727969139998724,"id_str":"663727969139998724","text":"\u30dc\u30fc\u30eb\u30c9\uff01\uff01\uff01\u67d4\u8edf\u5264\uff57\uff57\uff57\uff57\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3261140244,"id_str":"3261140244","name":"\u30c1\u30e3\u30a4\u22c6\uff61\u02da\u2729","screen_name":"tamatama_nnnn","location":null,"url":null,"description":"\u22c6\uff61\u02da\u2729TAMAMORI YUTA\u22c6\uff61\u02da\u2729 1\u756a\u4f1d\u3048\u305f\u304b\u3063\u305f\u8a00\u8449\u3092\u805e\u3044\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\u3002\u304a\u624b\u7d19\u53d7\u3051\u53d6\u3063\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\u3002","protected":false,"verified":false,"followers_count":285,"friends_count":212,"listed_count":24,"favourites_count":3866,"statuses_count":7989,"created_at":"Tue Jun 30 10:30:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661836650994008064\/n0MAGrIR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661836650994008064\/n0MAGrIR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3261140244\/1435662091","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tamatama_nnnn","name":"\u30c1\u30e3\u30a4\u22c6\uff61\u02da\u2729","id":3261140244,"id_str":"3261140244","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944389120,"id_str":"663728034944389120","text":"@HIMIKA93590750 \n\u305d\u308c\u3067\u6a5f\u5acc\u53d6\u308a\u3057\u3088\u30fc\u3068\n\u3057\u3066\u308b\u3060\u308d(\uffe3\uff65\u03c9\uff65\uffe3)\n\u308f\u304b\u308b\u305e\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726349727567873,"in_reply_to_status_id_str":"663726349727567873","in_reply_to_user_id":2986462794,"in_reply_to_user_id_str":"2986462794","in_reply_to_screen_name":"HIMIKA93590750","user":{"id":3013491914,"id_str":"3013491914","name":"\u2702\ufe0e\u304a\u30fc\u3061\u3083\u3093\u2702\ufe0e\u76f8\u4e92\u5e0c\u671b","screen_name":"ochan_biyo","location":null,"url":null,"description":"\/\u7f8e\u5bb9\u57a2\/\u9aea\u30bb\u30c3\u30c8\/\u4e09\u79d1\u5149\u5e73\/ \u3082\u308b\u3055\u3093\/\u7802\u304f\u3093\/\u30d5\u30a9\u30ed\u30d0\u307b\u307c100%\/\u7f8e\u5bb9\u5e2b\u76ee\u6307\u3057\u3066\u307e\u3059\u2728\u2728\u76f8\u4e92\u5e0c\u671b\/\u30d5\u30a1\u30dcRT\u305f\u304f\u3055\u3093\u3057\u3066\u306d\u270c\ufe0f\u76f8\u4e92\u3058\u3083\u306a\u304d\u3083\u30ea\u30e0\u308a\u307e\u3059\uff0a\u5e74\u306f\u2026\u2026\u805e\u304b\u306a\u3044\u3067\u306d\uff01\uff01\uff01\u30ea\u30d7\u306a\u3069\u30bf\u30e1\u3067\u558b\u308b\uff01 \u3010\u304a\u30fc\u3061\u3073\u30b3\u30f3\u30d3\u3011\u2192\u76f8\u65b9\u300a@HIMIKA93590750\u300b","protected":false,"verified":false,"followers_count":2044,"friends_count":2034,"listed_count":9,"favourites_count":1591,"statuses_count":2399,"created_at":"Sun Feb 08 14:10:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661461589162233856\/F5Zt-3TS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661461589162233856\/F5Zt-3TS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3013491914\/1447002661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HIMIKA93590750","name":"FOR-Z\u6240\u5c5e\u2661\u3072\u3043\u6c70(\u3061\u3073\u305f)","id":2986462794,"id_str":"2986462794","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944561152,"id_str":"663728034944561152","text":"Cara t\u00e1 chovendo e eu t\u00f4 sem guarda-chuva.. Como vou p escola?!","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2775144577,"id_str":"2775144577","name":"vem janeiro","screen_name":"pamm_moraes","location":"Rio de Janeiro","url":null,"description":"Sintonize sua vibra\u00e7\u00e3o, n\u00e3o h\u00e1 tempo pra viver em v\u00e3o... Snap: pammoraes22","protected":false,"verified":false,"followers_count":259,"friends_count":115,"listed_count":0,"favourites_count":3659,"statuses_count":11907,"created_at":"Wed Aug 27 23:38:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656195628834422784\/KEm3b4FV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656195628834422784\/KEm3b4FV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2775144577\/1445284201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969612289,"id_str":"663728034969612289","text":"RT @ha_rumaru: \u7652\u3057\u306e\u5b9a\u671f\u901a\u4fe1\u300c\u30e9\u30c3\u30b3\u3068\u4e80\u68a8\u300d https:\/\/t.co\/hGm6iRgIlY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189460030,"id_str":"189460030","name":"\u512a","screen_name":"you0815jin0704","location":"japan","url":null,"description":"\u4eba\u751f\u306e\u534a\u5206\u4ee5\u4e0a\u3092\u3001\u30b8\u30e3\u30cb\u306b\u6367\u3052\u4e2d\u306e\u30a2\u30e9\u30d5\u30a9\u30fc\u3067\u3059\u3002KAT-TUN\u30fbJIN AKANISHI\u306b\u5fc3\u596a\u308f\u308c\u4e2d(\/\/\u2200\/\/)6\u3082\uff15\u30824\u3082\uff11\u3082\u5927\u597d\u304d\u3067\u3059\uff01\u3058\u3093\u304b\u3081LOVE(o\u03c9o)\u723a\u5b6bLOVE(^\u0437^)-\u2606KAT-TUN\u3092\u7d9a\u3051\u3066\u304f\u308c\u3066\u308b4\u4eba\u306b\u611f\u8b1d\u203c\ufe0e\u3042\u308a\u304c\u3068\u3046\u2661\u6c17\u8efd\u306b\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u266a","protected":false,"verified":false,"followers_count":181,"friends_count":233,"listed_count":2,"favourites_count":1786,"statuses_count":32877,"created_at":"Sat Sep 11 09:29:24 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000700371342\/ce923f217f72351d494c772e0fd78c5b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000700371342\/ce923f217f72351d494c772e0fd78c5b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:55:03 +0000 2015","id":663580538544852992,"id_str":"663580538544852992","text":"\u7652\u3057\u306e\u5b9a\u671f\u901a\u4fe1\u300c\u30e9\u30c3\u30b3\u3068\u4e80\u68a8\u300d https:\/\/t.co\/hGm6iRgIlY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194337284,"id_str":"3194337284","name":"\u306f\u308b\u4e38","screen_name":"ha_rumaru","location":"\u304b\u3081\u306e\u4e8c\u306e\u8155\u3068\u8107\u306e\u9593","url":null,"description":"KAT-TUN\u306e\u30e9\u30a4\u30d6\u30bb\u30c3\u30c8\u306b\u306a\u308a\u305f\u3044\u4eba\u751f\u3060\u3063\u305f\u3002","protected":false,"verified":false,"followers_count":439,"friends_count":39,"listed_count":9,"favourites_count":359,"statuses_count":4516,"created_at":"Wed May 13 13:19:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662802747452817408\/HVr1DP12_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662802747452817408\/HVr1DP12_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3194337284\/1446516861","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663580528071733248,"id_str":"663580528071733248","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":320,"resize":"fit"},"medium":{"w":220,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663580528071733248,"id_str":"663580528071733248","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":320,"resize":"fit"},"medium":{"w":220,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":320,"resize":"fit"}}},{"id":663580528109481984,"id_str":"663580528109481984","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XnU8AAvEHi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XnU8AAvEHi.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":477,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":729,"h":1024,"resize":"fit"},"medium":{"w":600,"h":842,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ha_rumaru","name":"\u306f\u308b\u4e38","id":3194337284,"id_str":"3194337284","indices":[3,13]}],"symbols":[],"media":[{"id":663580528071733248,"id_str":"663580528071733248","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":320,"resize":"fit"},"medium":{"w":220,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":320,"resize":"fit"}},"source_status_id":663580538544852992,"source_status_id_str":"663580538544852992","source_user_id":3194337284,"source_user_id_str":"3194337284"}]},"extended_entities":{"media":[{"id":663580528071733248,"id_str":"663580528071733248","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XeU8AAErcM.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":220,"h":320,"resize":"fit"},"medium":{"w":220,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":220,"h":320,"resize":"fit"}},"source_status_id":663580538544852992,"source_status_id_str":"663580538544852992","source_user_id":3194337284,"source_user_id_str":"3194337284"},{"id":663580528109481984,"id_str":"663580528109481984","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWC-XnU8AAvEHi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWC-XnU8AAvEHi.jpg","url":"https:\/\/t.co\/hGm6iRgIlY","display_url":"pic.twitter.com\/hGm6iRgIlY","expanded_url":"http:\/\/twitter.com\/ha_rumaru\/status\/663580538544852992\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":477,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":729,"h":1024,"resize":"fit"},"medium":{"w":600,"h":842,"resize":"fit"}},"source_status_id":663580538544852992,"source_status_id_str":"663580538544852992","source_user_id":3194337284,"source_user_id_str":"3194337284"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969595904,"id_str":"663728034969595904","text":"RT @itsAiko0504: \u3053\u306e \u30e9\u30a4\u30bf\u30fc\u3084\u3070www https:\/\/t.co\/3DKob3OiMa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4106926813,"id_str":"4106926813","name":"\u3057\u3087\u3046\u305f@\u98a8\u4e00\u65cf","screen_name":"yujo123","location":"\u6e58\u5357","url":"https:\/\/instagram.com\/yujo1234\/","description":"\u260516\u306e\u4ee3\u2605 \u2192JSB\/\u6e58\u5357\u4e43\u98a8\/AK69\/\u6c23\u5fd7\u5718\/\u5358\u8eca\/\u3061\u3093\u3053\u30d4\u30a2\u30b9\u2190 \u53cb\u60c5\u7b2c\u4e00 \u60da\u308c\u305f\u5973\u306f\u5b88\u308a\u629c\u304f","protected":false,"verified":false,"followers_count":20,"friends_count":34,"listed_count":0,"favourites_count":23,"statuses_count":112,"created_at":"Mon Nov 02 23:36:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661326926653489152\/5kMplJ1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661326926653489152\/5kMplJ1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4106926813\/1446507538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 10:42:49 +0000 2015","id":658957014014423040,"id_str":"658957014014423040","text":"\u3053\u306e \u30e9\u30a4\u30bf\u30fc\u3084\u3070www https:\/\/t.co\/3DKob3OiMa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1968512960,"id_str":"1968512960","name":"\u3042\u30fc\u3043\u3002\u2020","screen_name":"itsAiko0504","location":"\u83c5\u539f\u4e00\u54c9\u306e\u96a3\u2661 since.2013.05\/24\u2661","url":null,"description":"\u5ca9\u69fb 17\u3055\u3043 \u30cf\u30fc\u30d5 CA\u306b\u306a\u308b\u305f\u3081\u306b \u7559\u5b66\u4e2d\u2661 GAL \u30d4\u30a2\u30b9\/ PLAYBOY \u304d\u3066\u3043 \u30d4\u30f3\u30af\/ DJmix \u6d0b\u697d\/ follow me\u301c\u2661 my fiance @yukihina0524 \u7d043,011km\u306e \u56fd\u969b\u9060\u8ddd\u96e2\u4e2d...\u3002","protected":false,"verified":false,"followers_count":338,"friends_count":131,"listed_count":0,"favourites_count":5476,"statuses_count":1845,"created_at":"Fri Oct 18 09:13:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"F53B8E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545681966006272\/3_5M1lXa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545681966006272\/3_5M1lXa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1968512960\/1446971590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4492,"favorite_count":3550,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658954858825826304,"id_str":"658954858825826304","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","url":"https:\/\/t.co\/3DKob3OiMa","display_url":"pic.twitter.com\/3DKob3OiMa","expanded_url":"http:\/\/twitter.com\/itsAiko0504\/status\/658957014014423040\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658954858825826304,"id_str":"658954858825826304","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","url":"https:\/\/t.co\/3DKob3OiMa","display_url":"pic.twitter.com\/3DKob3OiMa","expanded_url":"http:\/\/twitter.com\/itsAiko0504\/status\/658957014014423040\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":7641,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/pl\/6XzeUw4sm9kn3OpM.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/vid\/240x240\/ni6iPHWZBKUDnh8V.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/pl\/6XzeUw4sm9kn3OpM.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/vid\/240x240\/ni6iPHWZBKUDnh8V.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"itsAiko0504","name":"\u3042\u30fc\u3043\u3002\u2020","id":1968512960,"id_str":"1968512960","indices":[3,15]}],"symbols":[],"media":[{"id":658954858825826304,"id_str":"658954858825826304","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","url":"https:\/\/t.co\/3DKob3OiMa","display_url":"pic.twitter.com\/3DKob3OiMa","expanded_url":"http:\/\/twitter.com\/itsAiko0504\/status\/658957014014423040\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":658957014014423040,"source_status_id_str":"658957014014423040","source_user_id":1968512960,"source_user_id_str":"1968512960"}]},"extended_entities":{"media":[{"id":658954858825826304,"id_str":"658954858825826304","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/658954858825826304\/pu\/img\/ycFavTbgKUZA6_dP.jpg","url":"https:\/\/t.co\/3DKob3OiMa","display_url":"pic.twitter.com\/3DKob3OiMa","expanded_url":"http:\/\/twitter.com\/itsAiko0504\/status\/658957014014423040\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":658957014014423040,"source_status_id_str":"658957014014423040","source_user_id":1968512960,"source_user_id_str":"1968512960","video_info":{"aspect_ratio":[1,1],"duration_millis":7641,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/pl\/6XzeUw4sm9kn3OpM.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/vid\/240x240\/ni6iPHWZBKUDnh8V.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/pl\/6XzeUw4sm9kn3OpM.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/658954858825826304\/pu\/vid\/240x240\/ni6iPHWZBKUDnh8V.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961199104,"id_str":"663728034961199104","text":"RT @ALDUBSONGS: ALDUBSONGS MINI MV: \"Pag-ibig\"\n@mainedcm @aldenrichards02\n\n*Infinite Kilig*\n#ALDUBMissingRing https:\/\/t.co\/SzBFDTQVtq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1389444421,"id_str":"1389444421","name":"Ricci S.","screen_name":"richichay","location":"Manila","url":null,"description":"M.D.-U.P.","protected":false,"verified":false,"followers_count":962,"friends_count":1281,"listed_count":10,"favourites_count":10847,"statuses_count":27317,"created_at":"Mon Apr 29 12:49:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658162881867853825\/syA4YhKW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658162881867853825\/syA4YhKW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1389444421\/1445673591","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:15:21 +0000 2015","id":663479950729568256,"id_str":"663479950729568256","text":"ALDUBSONGS MINI MV: \"Pag-ibig\"\n@mainedcm @aldenrichards02\n\n*Infinite Kilig*\n#ALDUBMissingRing https:\/\/t.co\/SzBFDTQVtq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3354751993,"id_str":"3354751993","name":"\u266bALDUB SONGS\u2122\u266b","screen_name":"ALDUBSONGS","location":null,"url":null,"description":"Spreading Good Vibes not just by Music i also use Funny GIFs & memes and Videos.*Follow me for your daily dose of KILIG & GV tweets* - Admin (JR)","protected":false,"verified":false,"followers_count":6205,"friends_count":259,"listed_count":7,"favourites_count":4466,"statuses_count":16081,"created_at":"Thu Aug 27 02:18:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658464311547826176\/pOPo_hT3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658464311547826176\/pOPo_hT3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3354751993\/1445744808","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":152,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[76,93]}],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[31,40]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[41,57]}],"symbols":[],"media":[{"id":663479522264616961,"id_str":"663479522264616961","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","url":"https:\/\/t.co\/SzBFDTQVtq","display_url":"pic.twitter.com\/SzBFDTQVtq","expanded_url":"http:\/\/twitter.com\/ALDUBSONGS\/status\/663479950729568256\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":640,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663479522264616961,"id_str":"663479522264616961","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","url":"https:\/\/t.co\/SzBFDTQVtq","display_url":"pic.twitter.com\/SzBFDTQVtq","expanded_url":"http:\/\/twitter.com\/ALDUBSONGS\/status\/663479950729568256\/video\/1","type":"video","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":640,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"video_info":{"aspect_ratio":[64,35],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/vid\/328x180\/TxwYv-B3EnCpAlGV.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/pl\/yVv0q68aUpFX3-dI.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/vid\/328x180\/TxwYv-B3EnCpAlGV.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/pl\/yVv0q68aUpFX3-dI.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[92,109]}],"urls":[],"user_mentions":[{"screen_name":"ALDUBSONGS","name":"\u266bALDUB SONGS\u2122\u266b","id":3354751993,"id_str":"3354751993","indices":[3,14]},{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[47,56]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[57,73]}],"symbols":[],"media":[{"id":663479522264616961,"id_str":"663479522264616961","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","url":"https:\/\/t.co\/SzBFDTQVtq","display_url":"pic.twitter.com\/SzBFDTQVtq","expanded_url":"http:\/\/twitter.com\/ALDUBSONGS\/status\/663479950729568256\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":640,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663479950729568256,"source_status_id_str":"663479950729568256","source_user_id":3354751993,"source_user_id_str":"3354751993"}]},"extended_entities":{"media":[{"id":663479522264616961,"id_str":"663479522264616961","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663479522264616961\/pu\/img\/nHML5Is-Nd_0eEm7.jpg","url":"https:\/\/t.co\/SzBFDTQVtq","display_url":"pic.twitter.com\/SzBFDTQVtq","expanded_url":"http:\/\/twitter.com\/ALDUBSONGS\/status\/663479950729568256\/video\/1","type":"video","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":640,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663479950729568256,"source_status_id_str":"663479950729568256","source_user_id":3354751993,"source_user_id_str":"3354751993","video_info":{"aspect_ratio":[64,35],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/vid\/328x180\/TxwYv-B3EnCpAlGV.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/pl\/yVv0q68aUpFX3-dI.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/vid\/328x180\/TxwYv-B3EnCpAlGV.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663479522264616961\/pu\/pl\/yVv0q68aUpFX3-dI.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973745156,"id_str":"663728034973745156","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/kQCj5Ii3eU","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32681055,"id_str":"32681055","name":"_________","screen_name":"D_Shreve22","location":"here","url":"http:\/\/Bruh.com","description":"Married to the beautiful Kelly Ann Shreve","protected":false,"verified":false,"followers_count":287,"friends_count":146,"listed_count":0,"favourites_count":1412,"statuses_count":25688,"created_at":"Sat Apr 18 00:21:18 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5251E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492679536\/ohio_state.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492679536\/ohio_state.jpg","profile_background_tile":false,"profile_link_color":"EDCF09","profile_sidebar_border_color":"FA0A3A","profile_sidebar_fill_color":"F5F2F2","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583388365392740352\/o1ObJq9w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583388365392740352\/o1ObJq9w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32681055\/1401605764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kQCj5Ii3eU","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034965532672,"id_str":"663728034965532672","text":"RT @JulietSuga: #Radar.ng | WATCH THIS: Adele performs 'Hello' at 2015 NRJ Music Awards https:\/\/t.co\/8g5WiUGdww https:\/\/t.co\/o4GhjaOof0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267274555,"id_str":"3267274555","name":"Arewa Destiny","screen_name":"arewadestiny014","location":"Lagos, Nigeria","url":"http:\/\/Orbasportal.com","description":"I will let u know as time goes on.","protected":false,"verified":false,"followers_count":61,"friends_count":135,"listed_count":0,"favourites_count":8,"statuses_count":87,"created_at":"Fri Jul 03 15:52:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617821295288418304\/p5ToNe2O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617821295288418304\/p5ToNe2O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267274555\/1436134869","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:18 +0000 2015","id":663722785550790656,"id_str":"663722785550790656","text":"#Radar.ng | WATCH THIS: Adele performs 'Hello' at 2015 NRJ Music Awards https:\/\/t.co\/8g5WiUGdww https:\/\/t.co\/o4GhjaOof0","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294245418,"id_str":"294245418","name":"Star Girl","screen_name":"JulietSuga","location":"awesomelizzy59@gmail.com","url":null,"description":"We Build Real Twitter Account & Followers, Sell Twitter Account, Hype, Promote Brands, Music , Videos ,Trend ,Tweetfeed Also Make Good Website Traffic... DM me","protected":false,"verified":false,"followers_count":125290,"friends_count":84323,"listed_count":171,"favourites_count":15,"statuses_count":54315,"created_at":"Fri May 06 19:56:18 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640563790275309568\/z42tz6vY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640563790275309568\/z42tz6vY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294245418\/1424362646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Radar","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/8g5WiUGdww","expanded_url":"http:\/\/www.radar.ng\/2015\/11\/watch-this-adele-performs-hello-at-2015.html","display_url":"radar.ng\/2015\/11\/watch-\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[],"media":[{"id":663254685944406016,"id_str":"663254685944406016","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","url":"https:\/\/t.co\/o4GhjaOof0","display_url":"pic.twitter.com\/o4GhjaOof0","expanded_url":"http:\/\/twitter.com\/TrendsOnMyRadar\/status\/663254686053437440\/photo\/1","type":"photo","sizes":{"medium":{"w":248,"h":320,"resize":"fit"},"small":{"w":248,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":248,"h":320,"resize":"fit"}},"source_status_id":663254686053437440,"source_status_id_str":"663254686053437440","source_user_id":193032416,"source_user_id_str":"193032416"}]},"extended_entities":{"media":[{"id":663254685944406016,"id_str":"663254685944406016","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","url":"https:\/\/t.co\/o4GhjaOof0","display_url":"pic.twitter.com\/o4GhjaOof0","expanded_url":"http:\/\/twitter.com\/TrendsOnMyRadar\/status\/663254686053437440\/photo\/1","type":"photo","sizes":{"medium":{"w":248,"h":320,"resize":"fit"},"small":{"w":248,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":248,"h":320,"resize":"fit"}},"source_status_id":663254686053437440,"source_status_id_str":"663254686053437440","source_user_id":193032416,"source_user_id_str":"193032416"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Radar","indices":[16,22]}],"urls":[{"url":"https:\/\/t.co\/8g5WiUGdww","expanded_url":"http:\/\/www.radar.ng\/2015\/11\/watch-this-adele-performs-hello-at-2015.html","display_url":"radar.ng\/2015\/11\/watch-\u2026","indices":[88,111]}],"user_mentions":[{"screen_name":"JulietSuga","name":"Star Girl","id":294245418,"id_str":"294245418","indices":[3,14]}],"symbols":[],"media":[{"id":663254685944406016,"id_str":"663254685944406016","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","url":"https:\/\/t.co\/o4GhjaOof0","display_url":"pic.twitter.com\/o4GhjaOof0","expanded_url":"http:\/\/twitter.com\/TrendsOnMyRadar\/status\/663254686053437440\/photo\/1","type":"photo","sizes":{"medium":{"w":248,"h":320,"resize":"fit"},"small":{"w":248,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":248,"h":320,"resize":"fit"}},"source_status_id":663254686053437440,"source_status_id_str":"663254686053437440","source_user_id":193032416,"source_user_id_str":"193032416"}]},"extended_entities":{"media":[{"id":663254685944406016,"id_str":"663254685944406016","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRan29UYAAIxBH.jpg","url":"https:\/\/t.co\/o4GhjaOof0","display_url":"pic.twitter.com\/o4GhjaOof0","expanded_url":"http:\/\/twitter.com\/TrendsOnMyRadar\/status\/663254686053437440\/photo\/1","type":"photo","sizes":{"medium":{"w":248,"h":320,"resize":"fit"},"small":{"w":248,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":248,"h":320,"resize":"fit"}},"source_status_id":663254686053437440,"source_status_id_str":"663254686053437440","source_user_id":193032416,"source_user_id_str":"193032416"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069663"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034957037568,"id_str":"663728034957037568","text":"Buti pa yung tonkatsu, di nagmamahal. Chauce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587255157,"id_str":"587255157","name":"cess","screen_name":"prncsstapia","location":"cav","url":"http:\/\/instagram.com\/prncsstapia","description":null,"protected":false,"verified":false,"followers_count":1290,"friends_count":552,"listed_count":8,"favourites_count":12232,"statuses_count":24286,"created_at":"Tue May 22 05:43:17 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494040263539441664\/0tE1yPWY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494040263539441664\/0tE1yPWY.jpeg","profile_background_tile":false,"profile_link_color":"413B3B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663622618260463617\/soGp81tq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663622618260463617\/soGp81tq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587255157\/1447072858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080069661"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961211392,"id_str":"663728034961211392","text":"\u5968\u5b66\u91d1\u306e\u554f\u984c\u3082\u3042\u308a\u307e\u3059\u3002\u305d\u308c\u3060\u3051\u5b66\u751f\u306e\u751f\u6d3b\u304c\u53b3\u3057\u3044\u3068\u3044\u3046\u9762\u3082\u3042\u308b\u306e\u3067\u306f\u3002\u3000#nhk24","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68656128,"id_str":"68656128","name":"\u3042\u308b\u3068","screen_name":"shiri2","location":"\u6771\u4eac","url":null,"description":"3\u304b\u6708\u3001\u6b6f\u8089\u304c\u3093\u3067\u5165\u9662\u3057\u30014\u6708\u672b\u306b\u9000\u9662\u3002\u73fe\u5728\u6c42\u8077\u4e2d\u3002\u4f11\u8077\u3067\u306f\u306a\u3044\u3064\u3082\u308a\u3002","protected":false,"verified":false,"followers_count":629,"friends_count":706,"listed_count":10,"favourites_count":5,"statuses_count":6586,"created_at":"Tue Aug 25 09:55:24 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1130214707\/IMG_5274_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1130214707\/IMG_5274_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nhk24","indices":[37,43]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944434176,"id_str":"663728034944434176","text":"@cylxx__ tahuuuuu hahahhahaha. Masheh \ud83d\ude18\ud83d\ude18 ada ws takkk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727795701313536,"in_reply_to_status_id_str":"663727795701313536","in_reply_to_user_id":590902471,"in_reply_to_user_id_str":"590902471","in_reply_to_screen_name":"cylxx__","user":{"id":424255644,"id_str":"424255644","name":"nuwai","screen_name":"NuwairahKmrdn","location":null,"url":null,"description":"wanna drop out of school and sleep","protected":false,"verified":false,"followers_count":280,"friends_count":197,"listed_count":0,"favourites_count":2496,"statuses_count":29850,"created_at":"Tue Nov 29 15:09:51 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F3F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606741945969307648\/j7Bp8fGe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606741945969307648\/j7Bp8fGe.jpg","profile_background_tile":true,"profile_link_color":"737175","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663326347972866048\/wXHFY8df_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663326347972866048\/wXHFY8df_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424255644\/1444931210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cylxx__","name":"Thantophobia","id":590902471,"id_str":"590902471","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948640768,"id_str":"663728034948640768","text":"\u30ec\u30af\u30a4\u30a8\u30e0\u30d5\u30a9\u30fc\u30c9\u30ea\u30fc\u30e0\u306f\u4e3b\u4eba\u516c\u304b\u3063\u3053\u3044\u3044\u3001\u53cb\u9054\u3044\u3044\u3084\u3064\u3001\u5f7c\u5973\u30af\u30bd\u3001\u6bcd\u89aa\u304d\u3082\u3044\u3063\u3066\u304b\u3093\u3058","source":"\u003ca href=\"https:\/\/twitter.com\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:) Pro\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3771236953,"id_str":"3771236953","name":"\u6afb\u5b50\u5927\u597d\u304d\u304d\u308a\u3093\u3061\u3083\u3093","screen_name":"__KRN_","location":"\u305d\u308d\u305d\u308d\u65b0\u5e79\u7dda\u304c\u6765\u308b\u3068\u3053\u308d","url":"http:\/\/bluekingdragon.dip.jp\/sdvx\/showUserData.php?id=KIRINckp","description":"\u6d6a\u4eba\u751f\u97f3\u30b2\u30fc\u30de\u30fc\u3002\u5730\u529b\u6708\u885d\u306e\u5929\u6975\u3067\u3059\u3002\u70c8\u98a8\u98db\u3070\u3057\u3066\u96f7\u96fb\u53d6\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":102,"friends_count":79,"listed_count":4,"favourites_count":8379,"statuses_count":14060,"created_at":"Sat Oct 03 15:09:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662159146700017664\/ncYBMI8U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662159146700017664\/ncYBMI8U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3771236953\/1445778119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944385024,"id_str":"663728034944385024","text":"\u30e1\u30a4\u30c9\u30ed\u30dc\u3068\u3044\u3046\u540d\u306e\u30da\u30c3\u30d1\u30fc\u541b\u3067\u3057\u305f \/ \u201c\u30aa\u30bf\u30af\u306e\u72af\u7f6a\u306f\u6027\u72af\u7f6a\u3088\u308a\u79d1\u5b66\u304c\u3089\u307f\u306e\u72af\u7f6a\u306e\u65b9\u304c\u591a\u3044\u3068\u3044\u3046\u304a\u8a71\u300c\u30db\u30f3\u30e2\u30ce\u306f\u4e00\u5473\u9055\u3046\u300d - Togetter\u307e\u3068\u3081\u201d https:\/\/t.co\/ioTmwDDPMH #\u30aa\u30bf\u30af #togetter #\u79d1\u5b66","source":"\u003ca href=\"http:\/\/www.hatena.ne.jp\/guide\/twitter\" rel=\"nofollow\"\u003eHatena\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162331106,"id_str":"1162331106","name":"\u3061\u3087\u3059\u3051\uff20\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100\uff05","screen_name":"vip_tyosuke","location":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","url":null,"description":"\u8da3\u5473\u30b2\u30fc\u30e0\/\u30a2\u30cb\u30e1","protected":false,"verified":false,"followers_count":1812,"friends_count":2181,"listed_count":178,"favourites_count":2018,"statuses_count":125102,"created_at":"Sat Feb 09 08:21:00 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552089264985370624\/3HfeCZks_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552089264985370624\/3HfeCZks_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1162331106\/1431258470","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30aa\u30bf\u30af","indices":[103,107]},{"text":"togetter","indices":[108,117]},{"text":"\u79d1\u5b66","indices":[118,121]}],"urls":[{"url":"https:\/\/t.co\/ioTmwDDPMH","expanded_url":"http:\/\/htn.to\/iKH8EZb","display_url":"htn.to\/iKH8EZb","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034952777728,"id_str":"663728034952777728","text":"@miyu__38 \u3053\u3061\u3089\u3053\u305d\u30d5\u30a9\u30ed\u30d0\u3042\u308a\u304c\u3068\u3046\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712358590578688,"in_reply_to_status_id_str":"663712358590578688","in_reply_to_user_id":4076716393,"in_reply_to_user_id_str":"4076716393","in_reply_to_screen_name":"miyu__38","user":{"id":4121337800,"id_str":"4121337800","name":"\u306b\u3083\u30fc\u307e\u308b@miwa\u57a2","screen_name":"miwamiwa_441","location":"\u5343\u8449","url":null,"description":"\u9ad82 \u5973C miwa\u30af\u30e9\u3055\u3093\u3068\u305f\u304f\u3055\u3093\u4ef2\u826f\u304f\u306a\u308a\u305f\u3044\u3067\u3059*.(\u0e53\u00b4\u0348 \u02d8 `\u0348\u0e53).* \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\uff01miwa\/UVER WORLD\/\u4e95\u4e0a\u82d1\u5b50\/\u5965\u83ef\u5b50\/\u30af\u30ea\u30fc\u30d7\u30cf\u30a4\u30d7\/YUKI\/\u7247\u5e73\u91cc\u83dc\/RADWIMPS\u3010\u30ad\u30c1\u30ac\u30a4\u540c\u76dfNo.65\u3011","protected":false,"verified":false,"followers_count":160,"friends_count":152,"listed_count":0,"favourites_count":544,"statuses_count":700,"created_at":"Wed Nov 04 07:00:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661802436454055936\/TUdFzQGT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661802436454055936\/TUdFzQGT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4121337800\/1446687071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miyu__38","name":"\u307f\u308b\u304d\u30fc@miwa\u57a2","id":4076716393,"id_str":"4076716393","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069660"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034940350464,"id_str":"663728034940350464","text":"RT @tefilaliter: #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/XJmtKIW4tY","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2352000554,"id_str":"2352000554","name":"Lali - \u2764","screen_name":"Kristen_Perez1","location":" Venezuela ","url":null,"description":"3\/11\/15. #MarialiExiste .. La mejor serie #CasiAngeles .. Enamorada de Argentina \u2764\u2708","protected":false,"verified":false,"followers_count":67,"friends_count":167,"listed_count":0,"favourites_count":1665,"statuses_count":3150,"created_at":"Wed Feb 19 17:18:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663574020105895936\/ecvED8U2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663574020105895936\/ecvED8U2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2352000554\/1447043353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:15:39 +0000 2015","id":663525323204648960,"id_str":"663525323204648960","text":"#FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito https:\/\/t.co\/XJmtKIW4tY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201469374,"id_str":"201469374","name":"Tefi","screen_name":"tefilaliter","location":"15\/07\/15, 24\/05\/14 \u2661 11\/07\/13","url":"http:\/\/pasionlaliter.tumblr.com","description":"@laliespos \u2661 @p_lanzani \u00abNo gritaron su amor, lo sintieron\u00bb || TApsem || What we do in life echoes in eternity.","protected":false,"verified":false,"followers_count":8116,"friends_count":1632,"listed_count":11,"favourites_count":2155,"statuses_count":61435,"created_at":"Mon Oct 11 22:45:59 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491063100322242560\/kMUzvHYq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491063100322242560\/kMUzvHYq.png","profile_background_tile":false,"profile_link_color":"3B3B3B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649414276646633473\/Wzjt2JME_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649414276646633473\/Wzjt2JME_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201469374\/1444184312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":15,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[0,15]},{"text":"ArtistaDelA\u00f1o","indices":[16,30]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663525321073926145,"id_str":"663525321073926145","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","url":"https:\/\/t.co\/XJmtKIW4tY","display_url":"pic.twitter.com\/XJmtKIW4tY","expanded_url":"http:\/\/twitter.com\/tefilaliter\/status\/663525323204648960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"medium":{"w":600,"h":583,"resize":"fit"},"large":{"w":600,"h":583,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663525321073926145,"id_str":"663525321073926145","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","url":"https:\/\/t.co\/XJmtKIW4tY","display_url":"pic.twitter.com\/XJmtKIW4tY","expanded_url":"http:\/\/twitter.com\/tefilaliter\/status\/663525323204648960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"medium":{"w":600,"h":583,"resize":"fit"},"large":{"w":600,"h":583,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[17,32]},{"text":"ArtistaDelA\u00f1o","indices":[33,47]}],"urls":[],"user_mentions":[{"screen_name":"tefilaliter","name":"Tefi","id":201469374,"id_str":"201469374","indices":[3,15]}],"symbols":[],"media":[{"id":663525321073926145,"id_str":"663525321073926145","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","url":"https:\/\/t.co\/XJmtKIW4tY","display_url":"pic.twitter.com\/XJmtKIW4tY","expanded_url":"http:\/\/twitter.com\/tefilaliter\/status\/663525323204648960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"medium":{"w":600,"h":583,"resize":"fit"},"large":{"w":600,"h":583,"resize":"fit"}},"source_status_id":663525323204648960,"source_status_id_str":"663525323204648960","source_user_id":201469374,"source_user_id_str":"201469374"}]},"extended_entities":{"media":[{"id":663525321073926145,"id_str":"663525321073926145","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQw5YWoAEPqem.png","url":"https:\/\/t.co\/XJmtKIW4tY","display_url":"pic.twitter.com\/XJmtKIW4tY","expanded_url":"http:\/\/twitter.com\/tefilaliter\/status\/663525323204648960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":330,"resize":"fit"},"medium":{"w":600,"h":583,"resize":"fit"},"large":{"w":600,"h":583,"resize":"fit"}},"source_status_id":663525323204648960,"source_status_id_str":"663525323204648960","source_user_id":201469374,"source_user_id_str":"201469374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080069657"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973814786,"id_str":"663728034973814786","text":"Best Diet- Health and Diet Tips The Benefits of https:\/\/t.co\/RdocSXpQfR","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003ervvt1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3265782943,"id_str":"3265782943","name":"Mangum Milan","screen_name":"MangumMilan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":237,"friends_count":1855,"listed_count":0,"favourites_count":0,"statuses_count":2337,"created_at":"Thu Jul 02 05:14:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617674992382185473\/1kvFSQsm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617674992382185473\/1kvFSQsm_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RdocSXpQfR","expanded_url":"http:\/\/bit.ly\/1QdQZPz","display_url":"bit.ly\/1QdQZPz","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961190912,"id_str":"663728034961190912","text":"@syakielaLaLa @plu_88 waaaah this show seems to appear a lot in tonights discussion, I'm gonna check it out \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723638823088128,"in_reply_to_status_id_str":"663723638823088128","in_reply_to_user_id":41649791,"in_reply_to_user_id_str":"41649791","in_reply_to_screen_name":"syakielaLaLa","user":{"id":2344789238,"id_str":"2344789238","name":"LGBT MY | velvet cat","screen_name":"twt_LGBT","location":"Malaysia","url":null,"description":"(Tweethandle\/username) | (bio) | Curatorship & Info, refer here: http:\/\/goo.gl\/uBdKMU","protected":false,"verified":false,"followers_count":1955,"friends_count":93,"listed_count":15,"favourites_count":144,"statuses_count":26230,"created_at":"Sat Feb 15 08:30:50 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663380644840386561\/zGT9Mf5i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663380644840386561\/zGT9Mf5i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344789238\/1438011279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syakielaLaLa","name":".intan.","id":41649791,"id_str":"41649791","indices":[0,13]},{"screen_name":"plu_88","name":"zack","id":3181712708,"id_str":"3181712708","indices":[14,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034977984512,"id_str":"663728034977984512","text":"RT @AtTimesMX: La saga de Agust\u00edn Basave | @ceciliasotog https:\/\/t.co\/dLzlm8Pm7I","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551311596,"id_str":"551311596","name":"El Textoservidor","screen_name":"EscribaPersonal","location":"Santiago de Quer\u00e9taro","url":null,"description":"En M\u00e9xico y especialmente en Quer\u00e9taro, algunos periodistas cobran m\u00e1s por lo que callan que por lo que dicen.","protected":false,"verified":false,"followers_count":586,"friends_count":600,"listed_count":10,"favourites_count":2038,"statuses_count":10931,"created_at":"Wed Apr 11 18:51:05 +0000 2012","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631121945774288896\/pJ0X0fos_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631121945774288896\/pJ0X0fos_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551311596\/1439306183","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:50 +0000 2015","id":663719902402863106,"id_str":"663719902402863106","text":"La saga de Agust\u00edn Basave | @ceciliasotog https:\/\/t.co\/dLzlm8Pm7I","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":498038415,"id_str":"498038415","name":"@Times","screen_name":"AtTimesMX","location":"Cada vez m\u00e1s cerca de ti...","url":"http:\/\/www.AtTimes.mx","description":"Periodismo en evoluci\u00f3n, mucho m\u00e1s all\u00e1 de la noticia...nuestra pluralidad de opini\u00f3n, esta creando nuevos criterios para generar contenidos, buscando impactar.","protected":false,"verified":false,"followers_count":7365,"friends_count":476,"listed_count":69,"favourites_count":1715,"statuses_count":29336,"created_at":"Mon Feb 20 16:38:31 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/683887641\/237d7596c0f146504bfca2dfa6d29e46.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/683887641\/237d7596c0f146504bfca2dfa6d29e46.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623652087721652224\/SxyWgSAc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623652087721652224\/SxyWgSAc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/498038415\/1437592988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dLzlm8Pm7I","expanded_url":"http:\/\/www.excelsior.com.mx\/opinion\/cecilia-soto\/2015\/11\/09\/1056049","display_url":"excelsior.com.mx\/opinion\/cecili\u2026","indices":[43,66]}],"user_mentions":[{"screen_name":"ceciliasotog","name":"Cecilia Soto","id":79910526,"id_str":"79910526","indices":[28,41]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dLzlm8Pm7I","expanded_url":"http:\/\/www.excelsior.com.mx\/opinion\/cecilia-soto\/2015\/11\/09\/1056049","display_url":"excelsior.com.mx\/opinion\/cecili\u2026","indices":[58,81]}],"user_mentions":[{"screen_name":"AtTimesMX","name":"@Times","id":498038415,"id_str":"498038415","indices":[3,13]},{"screen_name":"ceciliasotog","name":"Cecilia Soto","id":79910526,"id_str":"79910526","indices":[43,56]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080069666"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034956992512,"id_str":"663728034956992512","text":"RT @NiallOfficial: @SimonCowell congratulations on your award Simon, you deserve it so much. Incredible man. Glad we could be there to cele\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303026953,"id_str":"3303026953","name":"styles.","screen_name":"amaliafahada15","location":null,"url":null,"description":"definitely come back!.\ndirectioners.","protected":false,"verified":false,"followers_count":75,"friends_count":251,"listed_count":1,"favourites_count":494,"statuses_count":1158,"created_at":"Sat Aug 01 03:43:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661142142690037761\/txGvtotG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661142142690037761\/txGvtotG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303026953\/1446107889","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 16:42:50 +0000 2015","id":661584328258887680,"id_str":"661584328258887680","text":"@SimonCowell congratulations on your award Simon, you deserve it so much. Incredible man. Glad we could be there to celebrate with you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":413487212,"in_reply_to_user_id_str":"413487212","in_reply_to_screen_name":"SimonCowell","user":{"id":105119490,"id_str":"105119490","name":"Niall Horan","screen_name":"NiallOfficial","location":"Mullingar,Westmeath,Ireland","url":"http:\/\/www.onedirectionmusic.com","description":"Back on the road again, gona be an incredible year!","protected":false,"verified":true,"followers_count":23509233,"friends_count":5650,"listed_count":123569,"favourites_count":137,"statuses_count":10522,"created_at":"Fri Jan 15 12:14:24 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633840522\/isk5inn6hw9n6j0rhutn.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663403993851412480\/J1_KD3IP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105119490\/1420558622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57728,"favorite_count":83103,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SimonCowell","name":"Simon Cowell","id":413487212,"id_str":"413487212","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallOfficial","name":"Niall Horan","id":105119490,"id_str":"105119490","indices":[3,17]},{"screen_name":"SimonCowell","name":"Simon Cowell","id":413487212,"id_str":"413487212","indices":[19,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069661"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973806593,"id_str":"663728034973806593","text":"@ghaeun96 bhay njs \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727962873688064,"in_reply_to_status_id_str":"663727962873688064","in_reply_to_user_id":2594818214,"in_reply_to_user_id_str":"2594818214","in_reply_to_screen_name":"ghaeun96","user":{"id":3191507672,"id_str":"3191507672","name":"soyu","screen_name":"gsoyu92","location":"gezz","url":null,"description":"his you.","protected":false,"verified":false,"followers_count":150,"friends_count":85,"listed_count":0,"favourites_count":1591,"statuses_count":11930,"created_at":"Mon May 11 00:12:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663224659299598336\/1nv0nhPG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663224659299598336\/1nv0nhPG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191507672\/1442071892","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ghaeun96","name":"ts. hwa min","id":2594818214,"id_str":"2594818214","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034952810496,"id_str":"663728034952810496","text":"RT @edsheeran: @thedeanlife @mtvema soz m8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3111349275,"id_str":"3111349275","name":"Barb Clay","screen_name":"jasonsean314","location":"uk","url":null,"description":"Digital Marketing at its best!","protected":false,"verified":false,"followers_count":2148,"friends_count":3064,"listed_count":43,"favourites_count":12288,"statuses_count":54825,"created_at":"Tue Mar 24 19:52:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580457704000503808\/4mrQI1bq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580457704000503808\/4mrQI1bq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3111349275\/1427226915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 22:35:28 +0000 2015","id":658411581395480576,"id_str":"658411581395480576","text":"@thedeanlife @mtvema soz m8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":658410627828961282,"in_reply_to_status_id_str":"658410627828961282","in_reply_to_user_id":202123372,"in_reply_to_user_id_str":"202123372","in_reply_to_screen_name":"thedeanlife","user":{"id":85452649,"id_str":"85452649","name":"Ed Sheeran","screen_name":"edsheeran","location":"London","url":"https:\/\/www.facebook.com\/EdSheeranMusic","description":"x","protected":false,"verified":true,"followers_count":15702331,"friends_count":754,"listed_count":17704,"favourites_count":13,"statuses_count":32078,"created_at":"Mon Oct 26 23:57:28 +0000 2009","utc_offset":-25200,"time_zone":"Chihuahua","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163559624\/bxs086F-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163559624\/bxs086F-.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454206880676851712\/jVypIZpS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454206880676851712\/jVypIZpS_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":912,"favorite_count":2536,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thedeanlife","name":"Dean McCullough","id":202123372,"id_str":"202123372","indices":[0,12]},{"screen_name":"mtvema","name":"MTV EMA","id":62591415,"id_str":"62591415","indices":[13,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"edsheeran","name":"Ed Sheeran","id":85452649,"id_str":"85452649","indices":[3,13]},{"screen_name":"thedeanlife","name":"Dean McCullough","id":202123372,"id_str":"202123372","indices":[15,27]},{"screen_name":"mtvema","name":"MTV EMA","id":62591415,"id_str":"62591415","indices":[28,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069660"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969550848,"id_str":"663728034969550848","text":"RT @SeriesBrazil: TOP CASAIS FAVORITOS DA FIC\u00c7\u00c3O \ud83d\udc8f\n\n34- REGINA & ROBIN (Once Upon a Time) https:\/\/t.co\/3acKpbGS8r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1631680189,"id_str":"1631680189","name":"Dara \/ OUAT","screen_name":"SoyDaraOliveira","location":"Dakota Johnson \u2665 Jamie Dornan ","url":null,"description":"@gabyspanic @Anahi @silvnavarro @lanaparrilla @DebraMessing OUAT , Arrow, Mysteries of Laura, The Flash \u2665 ELENA ME SEGUE \u2665 SpaniColunga \u2665 FerAna \u2665","protected":false,"verified":false,"followers_count":11688,"friends_count":11265,"listed_count":7,"favourites_count":1306,"statuses_count":30322,"created_at":"Tue Jul 30 01:04:35 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"111314","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592062714047901696\/1HbZyE1W.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592062714047901696\/1HbZyE1W.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663481354961575936\/AtZNlz1d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663481354961575936\/AtZNlz1d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1631680189\/1447021297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:41:57 +0000 2015","id":663501742710071296,"id_str":"663501742710071296","text":"TOP CASAIS FAVORITOS DA FIC\u00c7\u00c3O \ud83d\udc8f\n\n34- REGINA & ROBIN (Once Upon a Time) https:\/\/t.co\/3acKpbGS8r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293807001,"id_str":"293807001","name":"S\u00e9ries Brasil","screen_name":"SeriesBrazil","location":"Saga do M\u00eas: A Esperan\u00e7a","url":null,"description":"A melhor fonte di\u00e1ria de humor, imagens, trechos e not\u00edcias das suas S\u00e9ries, Filmes, Sagas e Atores favoritos. Contato Profissional: contatoseriesbrazil@r7.com","protected":false,"verified":false,"followers_count":369410,"friends_count":30947,"listed_count":293,"favourites_count":709,"statuses_count":138023,"created_at":"Fri May 06 00:49:54 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293807001\/1446824857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":806,"favorite_count":774,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663501741422440448,"id_str":"663501741422440448","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","url":"https:\/\/t.co\/3acKpbGS8r","display_url":"pic.twitter.com\/3acKpbGS8r","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663501742710071296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663501741422440448,"id_str":"663501741422440448","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","url":"https:\/\/t.co\/3acKpbGS8r","display_url":"pic.twitter.com\/3acKpbGS8r","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663501742710071296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeriesBrazil","name":"S\u00e9ries Brasil","id":293807001,"id_str":"293807001","indices":[3,16]}],"symbols":[],"media":[{"id":663501741422440448,"id_str":"663501741422440448","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","url":"https:\/\/t.co\/3acKpbGS8r","display_url":"pic.twitter.com\/3acKpbGS8r","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663501742710071296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663501742710071296,"source_status_id_str":"663501742710071296","source_user_id":293807001,"source_user_id_str":"293807001"}]},"extended_entities":{"media":[{"id":663501741422440448,"id_str":"663501741422440448","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU7UYVWcAAUjdB.jpg","url":"https:\/\/t.co\/3acKpbGS8r","display_url":"pic.twitter.com\/3acKpbGS8r","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663501742710071296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663501742710071296,"source_status_id_str":"663501742710071296","source_user_id":293807001,"source_user_id_str":"293807001"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034965536768,"id_str":"663728034965536768","text":"RT @fratkin13: CHECK OUT the teaser for the first ever @NWHL_ documentary! Get to see behind the scenes of the players! https:\/\/t.co\/4YWDNp\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576790821,"id_str":"576790821","name":"Rachel Walburn","screen_name":"rawalburn","location":"Philadelphia \/\/ Seattle ","url":null,"description":"Marketing Specialist at Wonderful Machine. Hockey. Road trips. Adventures. Photography.","protected":false,"verified":false,"followers_count":69,"friends_count":444,"listed_count":3,"favourites_count":221,"statuses_count":959,"created_at":"Fri May 11 00:53:24 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4EA5C4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586945449866723328\/4uVlySYd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586945449866723328\/4uVlySYd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576790821\/1392563371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:02 +0000 2015","id":663722722023882752,"id_str":"663722722023882752","text":"CHECK OUT the teaser for the first ever @NWHL_ documentary! Get to see behind the scenes of the players! https:\/\/t.co\/4YWDNpohv2 @540Films","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349323544,"id_str":"349323544","name":"Kaleigh Fratkin","screen_name":"fratkin13","location":"Vancouver, British Columbia","url":null,"description":"Professional Hockey Player for the Connecticut Whale. Former Boston University Hockey Player. BU'14|NU'16","protected":false,"verified":false,"followers_count":648,"friends_count":271,"listed_count":27,"favourites_count":2720,"statuses_count":2060,"created_at":"Fri Aug 05 22:47:36 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104732769\/5cb636712e57e675fd782ab9886392f1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104732769\/5cb636712e57e675fd782ab9886392f1.png","profile_background_tile":true,"profile_link_color":"FF0037","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"080000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658257712552267776\/Vlt-kD0A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658257712552267776\/Vlt-kD0A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349323544\/1446528060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4YWDNpohv2","expanded_url":"http:\/\/kck.st\/1PwrlUz","display_url":"kck.st\/1PwrlUz","indices":[105,128]}],"user_mentions":[{"screen_name":"NWHL_","name":"NWHL","id":3076649353,"id_str":"3076649353","indices":[40,46]},{"screen_name":"540Films","name":"540 Films","id":4106955381,"id_str":"4106955381","indices":[129,138]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4YWDNpohv2","expanded_url":"http:\/\/kck.st\/1PwrlUz","display_url":"kck.st\/1PwrlUz","indices":[120,140]}],"user_mentions":[{"screen_name":"fratkin13","name":"Kaleigh Fratkin","id":349323544,"id_str":"349323544","indices":[3,13]},{"screen_name":"NWHL_","name":"NWHL","id":3076649353,"id_str":"3076649353","indices":[55,61]},{"screen_name":"540Films","name":"540 Films","id":4106955381,"id_str":"4106955381","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069663"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034969550849,"id_str":"663728034969550849","text":"\u30bf\u30b1\u30df\u30ca\u30ab\u30bf\u306f\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261472274,"id_str":"1261472274","name":"shun1\u30e9\u30d7\u30bd\u30c7\u30a3\u30fc","screen_name":"00100shun1","location":"\u30cd\u30aa\u30b8\u30e3\u30d1\u30f3","url":null,"description":"\u6687\u3042\u308c\u3070\u30cb\u30b3\u52d5 \u30a2\u30cb\u30e1\/\u6f2b\u753b\/\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\/\u30c7\u30b8\u30e2\u30f3\/\u308b\u308d\u5263\/\u4e2d\u604b\/\u30ac\u30f3\u30c0\u30e0(\u7279\u306b\uff27\u30ac\u30f3)\/\u30b7\u30f3\u30d5\u30a9\u30ae\u30a2\/\u30af\u30e9\u30ca\u30c9(\u30a2\u30cb\u30e1)\/\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb(\u6f2b\u753b)\/\u30ce\u30e9\u30ac\u30df\/\u3064\u3088\u304d\u3059\/\u30d1\u30ba\u30c9\u30e9(190455789)\/BF4,H(PS3)\/ \u4ed6\u306b\u3082\u8272\u3005\n\u91e3\u308a\u990c\u306b\u306f\u55b0\u3044\u3064\u3044\u3066\u304f\u30b9\u30bf\u30a4\u30eb\n\u95c7\/\u98a8","protected":false,"verified":false,"followers_count":88,"friends_count":212,"listed_count":0,"favourites_count":1452,"statuses_count":24380,"created_at":"Tue Mar 12 08:41:08 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618069008940601344\/78ncesP4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618069008940601344\/78ncesP4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1261472274\/1426610512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069664"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973749249,"id_str":"663728034973749249","text":"Can Anyone Win in Architecture Criticism? An Appeal for a \"New Sincerity\" https:\/\/t.co\/VmSvUAD9Rc #architecture","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14362241,"id_str":"14362241","name":"ArchDaily","screen_name":"ArchDaily","location":"New York","url":"http:\/\/www.archdaily.com","description":"Architecture news. The best architecture design in the world, for architects by architects. Tweets by our editors David Basulto, Becky Quintal and Katie Watkins","protected":false,"verified":false,"followers_count":293454,"friends_count":2920,"listed_count":6207,"favourites_count":306,"statuses_count":46786,"created_at":"Fri Apr 11 16:27:51 +0000 2008","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/2404984\/bg_ad.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/2404984\/bg_ad.gif","profile_background_tile":true,"profile_link_color":"739CE1","profile_sidebar_border_color":"0B69B4","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"444444","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2445543900\/arxyre3p6rp5l0kyvuw6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2445543900\/arxyre3p6rp5l0kyvuw6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14362241\/1404412411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"architecture","indices":[98,111]}],"urls":[{"url":"https:\/\/t.co\/VmSvUAD9Rc","expanded_url":"http:\/\/bit.ly\/1MuKwND","display_url":"bit.ly\/1MuKwND","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069665"} +{"delete":{"status":{"id":663308361291735040,"id_str":"663308361291735040","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447080069789"}} +{"delete":{"status":{"id":663724700497932288,"id_str":"663724700497932288","user_id":1294490976,"user_id_str":"1294490976"},"timestamp_ms":"1447080069839"}} +{"delete":{"status":{"id":636216714212978688,"id_str":"636216714212978688","user_id":628499914,"user_id_str":"628499914"},"timestamp_ms":"1447080069837"}} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961211393,"id_str":"663728034961211393","text":"@yuri_derella \u3041\u3093\u2661\u2661\u3088\u3093\u3067\u2661\u2661\u672c\u8eab\u3067\u3082\u3044\u3044\u3093\u3060\u3088\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727909203406848,"in_reply_to_status_id_str":"663727909203406848","in_reply_to_user_id":1100942796,"in_reply_to_user_id_str":"1100942796","in_reply_to_screen_name":"yuri_derella","user":{"id":2974760647,"id_str":"2974760647","name":"\u307f\u3044\u3053","screen_name":"mini_marupiyo","location":null,"url":null,"description":"\u2732 \u307f\u3044\u306c\u306e\u30d5\u30ea\u30fc\u30b9\u30da\u30fc\u30b9 \u2732 \u672c\u57a2(@mipom_) \u30a2\u30a4\u30b3\u30f3\u2661(@deruteru_xxx ) \u540d\u4ed8\u3051\u89aa\u306f\u304f\u3045(@_k_0w0 )","protected":false,"verified":false,"followers_count":110,"friends_count":111,"listed_count":1,"favourites_count":620,"statuses_count":1268,"created_at":"Sun Jan 11 10:44:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661184716918263808\/Kf2531ir_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661184716918263808\/Kf2531ir_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2974760647\/1444610394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuri_derella","name":"\u3086\u308a\u3067\u308c\u3089\u306f\u30e1\u6d3b\uff16\u304a\u75b2\u308c\u69d8\u3067\u3057\u305f","id":1100942796,"id_str":"1100942796","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080069662"} +{"delete":{"status":{"id":663092769888440320,"id_str":"663092769888440320","user_id":1951568450,"user_id_str":"1951568450"},"timestamp_ms":"1447080069834"}} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944430081,"id_str":"663728034944430081","text":"@LuvPa13 https:\/\/t.co\/GPoD7BiT9P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722173656272896,"in_reply_to_status_id_str":"663722173656272896","in_reply_to_user_id":2320928222,"in_reply_to_user_id_str":"2320928222","in_reply_to_screen_name":"LuvPa13","user":{"id":1612355346,"id_str":"1612355346","name":"\uff01\u30bf\u30c3\u30ab\u30de\u30f3\uff01","screen_name":"Taka84B","location":null,"url":null,"description":"\u306d\u3093\u3080\u301c(\uff61-_-\uff61)","protected":false,"verified":false,"followers_count":414,"friends_count":389,"listed_count":0,"favourites_count":1104,"statuses_count":9216,"created_at":"Mon Jul 22 08:51:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660811186686988288\/l5t7pdwT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660811186686988288\/l5t7pdwT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1612355346\/1432002112","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LuvPa13","name":"\u52a0\u85e4","id":2320928222,"id_str":"2320928222","indices":[0,8]}],"symbols":[],"media":[{"id":663728024311873536,"id_str":"663728024311873536","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHxyUwAA8ofw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHxyUwAA8ofw.jpg","url":"https:\/\/t.co\/GPoD7BiT9P","display_url":"pic.twitter.com\/GPoD7BiT9P","expanded_url":"http:\/\/twitter.com\/Taka84B\/status\/663728034944430081\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728024311873536,"id_str":"663728024311873536","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHxyUwAA8ofw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHxyUwAA8ofw.jpg","url":"https:\/\/t.co\/GPoD7BiT9P","display_url":"pic.twitter.com\/GPoD7BiT9P","expanded_url":"http:\/\/twitter.com\/Taka84B\/status\/663728034944430081\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080069658"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034948608000,"id_str":"663728034948608000","text":"@RudiSoedjarwo Selamat Hari Ulang Tahun Baba, semoga sehat selalu, banyak berkah rejeki dan sukses terus ba (wish you all the best)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":236213428,"in_reply_to_user_id_str":"236213428","in_reply_to_screen_name":"RudiSoedjarwo","user":{"id":611554626,"id_str":"611554626","name":"elmo","screen_name":"_elmotion_","location":"just check your GPS","url":null,"description":"seriously person but sometime turn to be like a joker","protected":false,"verified":false,"followers_count":357,"friends_count":355,"listed_count":0,"favourites_count":295,"statuses_count":3971,"created_at":"Mon Jun 18 07:21:54 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DAB500","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491632465111285760\/yXjUjqwL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491632465111285760\/yXjUjqwL.jpeg","profile_background_tile":false,"profile_link_color":"71B3E5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663669502626795521\/7hMyl871_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663669502626795521\/7hMyl871_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611554626\/1447066112","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RudiSoedjarwo","name":"Rudi Soedjarwo","id":236213428,"id_str":"236213428","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080069659"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034961166336,"id_str":"663728034961166336","text":"@zbets165 \uc57c\uc544 \uac1c\uc624\ubc14\uc57c\u315c\u3160\u315c\u3160\u3160\u3160\u3160\uc58c\ub9c8!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727895517396993,"in_reply_to_status_id_str":"663727895517396993","in_reply_to_user_id":3251313457,"in_reply_to_user_id_str":"3251313457","in_reply_to_screen_name":"zbets165","user":{"id":2891671818,"id_str":"2891671818","name":"\ub2e4\uc774\uc2a4\ud0a4\ud0c0 \ubabd\uc258","screen_name":"Sugamongshell39","location":"\ubbfc\uc724\uae30 \uc55e\uc5d0\uc11c \ucc9c\ucc9c\ud788 \uac78\uc5b4\uac00\ub294\uc911 ","url":null,"description":"\uc624\ube60\uc5d0\uac8c\ub9cc. @Daiskita318 \n \uc6b0\ub9b0 \ud0c0\uc62c\ub77c\uc57c \ud574. \uc138\uc0c1\uc774 \ub108\ubb34 \ucc28\uac00\uc6cc\uc11c.","protected":false,"verified":false,"followers_count":370,"friends_count":580,"listed_count":0,"favourites_count":117,"statuses_count":16896,"created_at":"Thu Nov 06 04:04:15 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663006570393960448\/17oCXsj2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663006570393960448\/17oCXsj2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891671818\/1446818198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zbets165","name":"\uac1c\ub2e8\uc774","id":3251313457,"id_str":"3251313457","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080069662"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034957037569,"id_str":"663728034957037569","text":"RT @Doruko_kate: \u0e01\u0e25\u0e31\u0e27\u0e27\u0e48\u0e32\u0e40\u0e18\u0e2d\u0e08\u0e30\u0e17\u0e34\u0e49\u0e07\u0e09\u0e31\u0e19\u0e44\u0e1b\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e21\u0e48\u0e44\u0e2b\u0e27\u0e08\u0e23\u0e34\u0e07\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":578967521,"id_str":"578967521","name":"\u0e0b\u0e34\u0e19","screen_name":"chchanok","location":null,"url":null,"description":"\u0e17\u0e27\u0e35\u0e15\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e47\u0e43\u0e08\u0e0b\u0e34\u0e19 | \u0e1a\u0e23\u0e31\u0e22\u0e2a\u0e4c\u2661","protected":false,"verified":false,"followers_count":498,"friends_count":349,"listed_count":2,"favourites_count":1284,"statuses_count":35525,"created_at":"Sun May 13 13:42:46 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643038833487908864\/4vnwPkQu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643038833487908864\/4vnwPkQu.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2EAEF","profile_text_color":"6C961C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662655642788757504\/Mmslp8hB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662655642788757504\/Mmslp8hB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/578967521\/1442139296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:47 +0000 2015","id":663724921516720128,"id_str":"663724921516720128","text":"\u0e01\u0e25\u0e31\u0e27\u0e27\u0e48\u0e32\u0e40\u0e18\u0e2d\u0e08\u0e30\u0e17\u0e34\u0e49\u0e07\u0e09\u0e31\u0e19\u0e44\u0e1b\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e2d\u0e22\u0e39\u0e48\u0e44\u0e21\u0e48\u0e44\u0e2b\u0e27\u0e08\u0e23\u0e34\u0e07\u0e46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1934554759,"id_str":"1934554759","name":"red","screen_name":"Doruko_kate","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":315,"friends_count":305,"listed_count":1,"favourites_count":251,"statuses_count":45429,"created_at":"Fri Oct 04 15:02:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663005202505535489\/A_--xT_r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663005202505535489\/A_--xT_r_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1934554759\/1443970324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00a047a27f574476","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00a047a27f574476.json","place_type":"admin","name":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e09\u0e30\u0e40\u0e0a\u0e34\u0e07\u0e40\u0e17\u0e23\u0e32","full_name":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e09\u0e30\u0e40\u0e0a\u0e34\u0e07\u0e40\u0e17\u0e23\u0e32, \u0e08.\u0e09\u0e30\u0e40\u0e0a\u0e34\u0e07\u0e40\u0e17\u0e23\u0e32","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.855130,13.630602],[100.855130,13.804874],[101.144101,13.804874],[101.144101,13.630602]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Doruko_kate","name":"red","id":1934554759,"id_str":"1934554759","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080069661"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034973925380,"id_str":"663728034973925380","text":"Current mood https:\/\/t.co\/393QbYz4VD","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":953278568,"id_str":"953278568","name":"Animal Planet","screen_name":"MeetAnimals","location":"meetanimals@gmail.com","url":"https:\/\/www.facebook.com\/meetanimals","description":"All images are copyrighted by their respective authors.","protected":false,"verified":false,"followers_count":1306186,"friends_count":2928,"listed_count":2629,"favourites_count":343,"statuses_count":21557,"created_at":"Sat Nov 17 09:54:16 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453558880329400320\/gr5MN2h2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453558880329400320\/gr5MN2h2.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3719030032\/e71311397b839c43ffe1df355535114c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3719030032\/e71311397b839c43ffe1df355535114c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953278568\/1396972031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728034005020672,"id_str":"663728034005020672","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIV5WcAA_1l1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIV5WcAA_1l1.jpg","url":"https:\/\/t.co\/393QbYz4VD","display_url":"pic.twitter.com\/393QbYz4VD","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663728034973925380\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":599,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728034005020672,"id_str":"663728034005020672","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIV5WcAA_1l1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIV5WcAA_1l1.jpg","url":"https:\/\/t.co\/393QbYz4VD","display_url":"pic.twitter.com\/393QbYz4VD","expanded_url":"http:\/\/twitter.com\/MeetAnimals\/status\/663728034973925380\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":599,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080069665"} +{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728034944434177,"id_str":"663728034944434177","text":"[HD] 151101 #SEVENTEEN #JEONGHAN @ INCHEON FANSIGN https:\/\/t.co\/4RfQuxv0oz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3164736996,"id_str":"3164736996","name":"Seventeen Fanbase","screen_name":"goseventeen","location":null,"url":null,"description":"We Satisfy Your Hunger With HQ Pictures Of Your Seventeen Boys (pictures \u00a9 to its owner)","protected":false,"verified":false,"followers_count":9536,"friends_count":1,"listed_count":100,"favourites_count":3,"statuses_count":3338,"created_at":"Mon Apr 20 04:22:21 +0000 2015","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595457234009661441\/pvXg-H5Q.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595457234009661441\/pvXg-H5Q.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595454732816134144\/L6xmDyza_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595454732816134144\/L6xmDyza_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164736996\/1439644493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SEVENTEEN","indices":[12,22]},{"text":"JEONGHAN","indices":[23,32]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727784515100672,"id_str":"663727784515100672","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI50eUYAAGCoL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI50eUYAAGCoL.jpg","url":"https:\/\/t.co\/4RfQuxv0oz","display_url":"pic.twitter.com\/4RfQuxv0oz","expanded_url":"http:\/\/twitter.com\/goseventeen\/status\/663728034944434177\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727784515100672,"id_str":"663727784515100672","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI50eUYAAGCoL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI50eUYAAGCoL.jpg","url":"https:\/\/t.co\/4RfQuxv0oz","display_url":"pic.twitter.com\/4RfQuxv0oz","expanded_url":"http:\/\/twitter.com\/goseventeen\/status\/663728034944434177\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663727807659249664,"id_str":"663727807659249664","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7KsUEAADlly.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7KsUEAADlly.jpg","url":"https:\/\/t.co\/4RfQuxv0oz","display_url":"pic.twitter.com\/4RfQuxv0oz","expanded_url":"http:\/\/twitter.com\/goseventeen\/status\/663728034944434177\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663727841901588480,"id_str":"663727841901588480","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI9KQUsAAuF-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI9KQUsAAuF-C.jpg","url":"https:\/\/t.co\/4RfQuxv0oz","display_url":"pic.twitter.com\/4RfQuxv0oz","expanded_url":"http:\/\/twitter.com\/goseventeen\/status\/663728034944434177\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080069658"} +{"delete":{"status":{"id":663724541114507264,"id_str":"663724541114507264","user_id":2857300602,"user_id_str":"2857300602"},"timestamp_ms":"1447080070105"}} +{"delete":{"status":{"id":636369600783888385,"id_str":"636369600783888385","user_id":1474524360,"user_id_str":"1474524360"},"timestamp_ms":"1447080070161"}} +{"delete":{"status":{"id":636372268382228481,"id_str":"636372268382228481","user_id":3300120949,"user_id_str":"3300120949"},"timestamp_ms":"1447080070165"}} +{"delete":{"status":{"id":636372390008590337,"id_str":"636372390008590337","user_id":2367105476,"user_id_str":"2367105476"},"timestamp_ms":"1447080070160"}} +{"delete":{"status":{"id":636513729660583936,"id_str":"636513729660583936","user_id":1610754680,"user_id_str":"1610754680"},"timestamp_ms":"1447080070337"}} +{"delete":{"status":{"id":636515944274112512,"id_str":"636515944274112512","user_id":2936716878,"user_id_str":"2936716878"},"timestamp_ms":"1447080070342"}} +{"delete":{"status":{"id":636544515872915456,"id_str":"636544515872915456","user_id":2998962918,"user_id_str":"2998962918"},"timestamp_ms":"1447080070369"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134666752,"id_str":"663728039134666752","text":"\u00e9 incr\u00edvel como a minha m\u00e3e demora p fazer o almo\u00e7o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1141930638,"id_str":"1141930638","name":"ana","screen_name":"bstiltskin","location":null,"url":null,"description":"por que vc s\u00f3 me liga quando ta chapado?","protected":false,"verified":false,"followers_count":1164,"friends_count":1005,"listed_count":1,"favourites_count":34,"statuses_count":639,"created_at":"Sat Feb 02 09:04:28 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650016928275267588\/moJ__kdI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650016928275267588\/moJ__kdI.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651850979344797700\/_xRlFYAo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651850979344797700\/_xRlFYAo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1141930638\/1444248804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172431872,"id_str":"663728039172431872","text":"\u0427\u0442\u043e-\u0442\u043e \u043a\u0430\u043f\u0443\u0441\u0442\u044b \u043a\u0432\u0430\u0448\u0435\u043d\u043e\u0439 \u0445\u043e\u0447\u0435\u0442\u0441\u044f-\u043a \u0441\u043d\u0435\u0433\u0443 \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435)","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261710936,"id_str":"1261710936","name":"KeenWaggoner","screen_name":"KeenWaggoner","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46,"friends_count":24,"listed_count":4,"favourites_count":0,"statuses_count":198193,"created_at":"Tue Mar 12 11:12:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3682390994\/031bd2441c6ea4753c2103a62760e77d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3682390994\/031bd2441c6ea4753c2103a62760e77d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168208896,"id_str":"663728039168208896","text":"RT @_sarasperoto: Segunda sendo segunda e eu morrendo de pregui\u00e7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349208891,"id_str":"349208891","name":"j u","screen_name":"juliaboldrini1","location":"Esp\u00edrito Santo, Brasil","url":"http:\/\/instagram.com\/juliafboldrini","description":"snap: juliaboldrini","protected":false,"verified":false,"followers_count":145,"friends_count":127,"listed_count":1,"favourites_count":236,"statuses_count":10018,"created_at":"Fri Aug 05 18:52:45 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"09DB6E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663510236075028480\/LQtLoaTi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663510236075028480\/LQtLoaTi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349208891\/1442524429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:40:58 +0000 2015","id":663697788136501250,"id_str":"663697788136501250","text":"Segunda sendo segunda e eu morrendo de pregui\u00e7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125480115,"id_str":"125480115","name":"Sara Speroto","screen_name":"_sarasperoto","location":"Sooretama, Esp\u00edrito Santo","url":null,"description":"Estudante de Farm\u00e1cia. \u2764\n\n\nsnap: sarasperoto","protected":false,"verified":false,"followers_count":349,"friends_count":64,"listed_count":2,"favourites_count":38,"statuses_count":62684,"created_at":"Mon Mar 22 23:35:35 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585922933454802944\/VGA3MTYM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585922933454802944\/VGA3MTYM.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"0A090A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652281345301970944\/JUsuajs2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652281345301970944\/JUsuajs2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125480115\/1424878837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_sarasperoto","name":"Sara Speroto","id":125480115,"id_str":"125480115","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147282437,"id_str":"663728039147282437","text":"#swissnews2015 \u27b2 https:\/\/t.co\/LyYkMYAZs7 \u2714 https:\/\/t.co\/siEhy28nXC \u2706 \u27aa #selfie #Tattoo #7\u00a0\u043f\u043e\u0442\u0440\u044f\u0441\u0430\u044e\u0449\u0438\u0445 \u0444\u0438\u043b\u044c\u043c\u043e\u0432 \u043e\u00a0\u0440\u2026 \u2026\n\n\u2014 Aisha (NastyaKrem\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2823898747,"id_str":"2823898747","name":"Aisha","screen_name":"NastyaKrem2014","location":"1.871","url":"http:\/\/j.mp\/1yQnJoX","description":"#i #love #my #world of #flowers & #Juwels","protected":false,"verified":false,"followers_count":2058,"friends_count":1664,"listed_count":854,"favourites_count":159,"statuses_count":192952,"created_at":"Sun Sep 21 09:40:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559410735596331008\/VpVORrHj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559410735596331008\/VpVORrHj.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572026278251003904\/EzCHSpoj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572026278251003904\/EzCHSpoj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2823898747\/1425929361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"swissnews2015","indices":[0,14]},{"text":"selfie","indices":[71,78]},{"text":"Tattoo","indices":[79,86]}],"urls":[{"url":"https:\/\/t.co\/LyYkMYAZs7","expanded_url":"http:\/\/goo.gl\/pFCDIK","display_url":"goo.gl\/pFCDIK","indices":[17,40]},{"url":"https:\/\/t.co\/siEhy28nXC","expanded_url":"http:\/\/ask.travelernews.org","display_url":"ask.travelernews.org","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070660"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039143043077,"id_str":"663728039143043077","text":"Vou criar uma banda\nPodem chamar de Banda Nude","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203742910,"id_str":"203742910","name":"Leocoout'#EliteCombo","screen_name":"LeocooutBR","location":null,"url":"http:\/\/youtube.com\/user\/LeocooutBR","description":"No final o humilhado vai ser aquele que sempre venceu.","protected":false,"verified":false,"followers_count":1031,"friends_count":124,"listed_count":2,"favourites_count":6253,"statuses_count":14573,"created_at":"Sun Oct 17 01:09:00 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"191970","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654142469869842432\/PItods2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654142469869842432\/PItods2K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203742910\/1446867223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134674944,"id_str":"663728039134674944","text":"@HalfOfRobyn ptdrrrr toi t'es entrain de r\u00e9viser ton cours de droit civil \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726140700426240,"in_reply_to_status_id_str":"663726140700426240","in_reply_to_user_id":346195124,"in_reply_to_user_id_str":"346195124","in_reply_to_screen_name":"HalfOfRobyn","user":{"id":280661797,"id_str":"280661797","name":"Lpz","screen_name":"MathildeBkwz","location":null,"url":null,"description":"30.07.2013 \u2728 #zazou\nCARLA LA PLUS BELLE LA MEILLEURE DE TOUTE JE L'AIME PLUS SUE ZAZOU","protected":false,"verified":false,"followers_count":357,"friends_count":98,"listed_count":36,"favourites_count":1266,"statuses_count":64438,"created_at":"Mon Apr 11 19:55:26 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"D6B4DE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850547158\/bde6579c04e6fee376857f8dce70e141.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850547158\/bde6579c04e6fee376857f8dce70e141.jpeg","profile_background_tile":true,"profile_link_color":"ED53AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F7F1E8","profile_text_color":"A86073","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659516272883982336\/cTU1l7z-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659516272883982336\/cTU1l7z-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280661797\/1446499703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HalfOfRobyn","name":"\u2801\u281d\u281e\u280a","id":346195124,"id_str":"346195124","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172403200,"id_str":"663728039172403200","text":"RT @RRoverdose: #RelatoBizarro https:\/\/t.co\/PFSqVU8UYo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309321618,"id_str":"309321618","name":"M11","screen_name":"Mrestegui","location":null,"url":null,"description":"Money Sucks, Friends Rule","protected":false,"verified":false,"followers_count":520,"friends_count":461,"listed_count":3,"favourites_count":11163,"statuses_count":22033,"created_at":"Wed Jun 01 22:16:22 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182002291\/N9FgHwmv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182002291\/N9FgHwmv.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A8DDF0","profile_text_color":"EBB309","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480275712554049536\/o0MIKf4b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480275712554049536\/o0MIKf4b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309321618\/1444946293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:42:37 +0000 2015","id":663683104675135488,"id_str":"663683104675135488","text":"#RelatoBizarro https:\/\/t.co\/PFSqVU8UYo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467573793,"id_str":"467573793","name":"Roberto Ruiz","screen_name":"RRoverdose","location":null,"url":"http:\/\/www.enfemenino.com\/blog\/objetivoitboy","description":"http:\/\/www.rroverdose.com | rroverdose@gmail.com","protected":false,"verified":false,"followers_count":1005,"friends_count":294,"listed_count":18,"favourites_count":2910,"statuses_count":7588,"created_at":"Wed Jan 18 16:25:54 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535154316177190912\/ZmRAc17L.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535154316177190912\/ZmRAc17L.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647124205482438656\/2yoMfcWI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647124205482438656\/2yoMfcWI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467573793\/1438620125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[{"text":"RelatoBizarro","indices":[0,14]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663683092209655809,"id_str":"663683092209655809","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","url":"https:\/\/t.co\/PFSqVU8UYo","display_url":"pic.twitter.com\/PFSqVU8UYo","expanded_url":"http:\/\/twitter.com\/RRoverdose\/status\/663683104675135488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":896,"h":894,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663683092209655809,"id_str":"663683092209655809","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","url":"https:\/\/t.co\/PFSqVU8UYo","display_url":"pic.twitter.com\/PFSqVU8UYo","expanded_url":"http:\/\/twitter.com\/RRoverdose\/status\/663683104675135488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":896,"h":894,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RelatoBizarro","indices":[16,30]}],"urls":[],"user_mentions":[{"screen_name":"RRoverdose","name":"Roberto Ruiz","id":467573793,"id_str":"467573793","indices":[3,14]}],"symbols":[],"media":[{"id":663683092209655809,"id_str":"663683092209655809","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","url":"https:\/\/t.co\/PFSqVU8UYo","display_url":"pic.twitter.com\/PFSqVU8UYo","expanded_url":"http:\/\/twitter.com\/RRoverdose\/status\/663683104675135488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":896,"h":894,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663683104675135488,"source_status_id_str":"663683104675135488","source_user_id":467573793,"source_user_id_str":"467573793"}]},"extended_entities":{"media":[{"id":663683092209655809,"id_str":"663683092209655809","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgQYqW4AEWuhf.jpg","url":"https:\/\/t.co\/PFSqVU8UYo","display_url":"pic.twitter.com\/PFSqVU8UYo","expanded_url":"http:\/\/twitter.com\/RRoverdose\/status\/663683104675135488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":896,"h":894,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663683104675135488,"source_status_id_str":"663683104675135488","source_user_id":467573793,"source_user_id_str":"467573793"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039138885632,"id_str":"663728039138885632","text":"Yok yani amac\u0131n nee\ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3856056743,"id_str":"3856056743","name":"Simge","screen_name":"simgeeyasarr","location":null,"url":null,"description":"Yeni hesap\nsnapchat~simgeeeyasarrr","protected":false,"verified":false,"followers_count":22,"friends_count":24,"listed_count":0,"favourites_count":40,"statuses_count":46,"created_at":"Sat Oct 03 22:07:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"445588","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662915399021891585\/LmcE1LUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662915399021891585\/LmcE1LUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3856056743\/1445284760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080070658"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151431680,"id_str":"663728039151431680","text":"Ponte en forma con nosotros!! \n\u00danete a la Elite!! https:\/\/t.co\/KOU2PCjS8P","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487792565,"id_str":"487792565","name":"Gimnasio Elite","screen_name":"elitefitnesclub","location":"Cala Mayor. Palma de Mallorca","url":null,"description":"Trabajamos en la buena forma, la salud y el bienestar f\u00edsico. #gimnasio #ponteenforma","protected":false,"verified":false,"followers_count":357,"friends_count":105,"listed_count":6,"favourites_count":0,"statuses_count":464,"created_at":"Thu Feb 09 19:02:47 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1816901673\/logo_elite_color_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1816901673\/logo_elite_color_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487792565\/1360668179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KOU2PCjS8P","expanded_url":"http:\/\/fb.me\/6WEiXSJq1","display_url":"fb.me\/6WEiXSJq1","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172440064,"id_str":"663728039172440064","text":"@CristobalTrevi @Almudena_Sopena Crist\u00f3bal ust\u00e9 que sabe,y si la mitad de los ciudadanos deja de pagar impuestos a la rep\u00fablica catalana?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722386643140613,"in_reply_to_status_id_str":"663722386643140613","in_reply_to_user_id":314752390,"in_reply_to_user_id_str":"314752390","in_reply_to_screen_name":"CristobalTrevi","user":{"id":247939070,"id_str":"247939070","name":"rafa blanca","screen_name":"RafaBlancaEFN","location":null,"url":"http:\/\/www.rafaelblanca.com","description":"Actor, director y profesor de interpretaci\u00f3n,actualmente en @clubdesastre @gatonegroteatro y @teatroesquinas","protected":false,"verified":false,"followers_count":2618,"friends_count":2215,"listed_count":33,"favourites_count":19557,"statuses_count":16869,"created_at":"Sat Feb 05 22:19:44 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C2970B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/285114301\/rafa2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/285114301\/rafa2.jpg","profile_background_tile":false,"profile_link_color":"B3920D","profile_sidebar_border_color":"47157D","profile_sidebar_fill_color":"4F0780","profile_text_color":"E336C6","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571954969986912256\/0t_UXwyH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571954969986912256\/0t_UXwyH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247939070\/1445288722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CristobalTrevi","name":"Crist\u00f3bal Trevi\u00f1o ","id":314752390,"id_str":"314752390","indices":[0,15]},{"screen_name":"Almudena_Sopena","name":"Almudena Sope\u00f1a","id":191957221,"id_str":"191957221","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134633984,"id_str":"663728039134633984","text":"\u0642\u062d\u0628\u0647 \u0645\u063a\u0631\u0628\u064a\u0647 \u0645\u0639 \u0627\u062a\u0646\u064a\u0646 \u0631\u062c\u0627\u0644 \u0628\u0627\u0644\u0641\u0646\u062f\u0642 \u0646\u064a\u0643 \u0645\u0632\u062f\u0648\u062c \u064a\u062c\u0646\u0646 \u0631\u0627\u0628\u0637 \u0627\u0644\u0641\u0644\u0645\nhttps:\/\/t.co\/12PlffBxBT","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4084272275,"id_str":"4084272275","name":"\u0627\u0639\u0634\u0642 \u0627\u0644\u0632\u0628 \u0627\u0644\u0627\u0633\u0648\u062f","screen_name":"dfhdfvg","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":451,"friends_count":793,"listed_count":0,"favourites_count":0,"statuses_count":4003,"created_at":"Sat Oct 31 18:17:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660521789823537152\/sVKaAZ0P_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660521789823537152\/sVKaAZ0P_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/12PlffBxBT","expanded_url":"http:\/\/goo.gl\/mkk0cE","display_url":"goo.gl\/mkk0cE","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155662848,"id_str":"663728039155662848","text":"RT @CRNC: Sign up: https:\/\/t.co\/4aceXUsTI1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2499295284,"id_str":"2499295284","name":"#MillennialsForTrump","screen_name":"ClassySnobbb","location":"#Trump2016 #TrumpTrain","url":"http:\/\/instagram.com\/thatstylishrepublican","description":"Can't wait to go away to college in 2016. I'm a Republican and the Trumps are my idols. #MakeAmericaGreatAgain","protected":false,"verified":false,"followers_count":3841,"friends_count":2403,"listed_count":88,"favourites_count":19854,"statuses_count":88986,"created_at":"Fri May 16 16:41:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663184951332990980\/-_bFf4pD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663184951332990980\/-_bFf4pD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2499295284\/1446560794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:53 +0000 2015","id":663727968791982080,"id_str":"663727968791982080","text":"Sign up: https:\/\/t.co\/4aceXUsTI1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":7039122,"id_str":"7039122","name":"College Republicans","screen_name":"CRNC","location":"Washington, DC","url":"http:\/\/crnc.org","description":"America's voice for young conservatives.","protected":false,"verified":true,"followers_count":63865,"friends_count":3936,"listed_count":1235,"favourites_count":2013,"statuses_count":13783,"created_at":"Sat Jun 23 20:10:58 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/416140980\/crnc_twitterbg12345.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/416140980\/crnc_twitterbg12345.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651785992991559680\/GorVPNob_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651785992991559680\/GorVPNob_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7039122\/1444231358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4aceXUsTI1","expanded_url":"http:\/\/OurVoice.GOP","display_url":"OurVoice.GOP","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4aceXUsTI1","expanded_url":"http:\/\/OurVoice.GOP","display_url":"OurVoice.GOP","indices":[19,42]}],"user_mentions":[{"screen_name":"CRNC","name":"College Republicans","id":7039122,"id_str":"7039122","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039143055360,"id_str":"663728039143055360","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3201058201,"id_str":"3201058201","name":"Abhijaya Banbrigge","screen_name":"segewoqifer","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":140,"friends_count":621,"listed_count":7,"favourites_count":14332,"statuses_count":15423,"created_at":"Sun May 17 10:53:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646010572362907649\/cz4J442w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646010572362907649\/cz4J442w_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":369,"favorite_count":226,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039143022592,"id_str":"663728039143022592","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/fUnJXqrBMf","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3963671052,"id_str":"3963671052","name":"Quen","screen_name":"Quen445","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":8,"listed_count":6,"favourites_count":6,"statuses_count":31891,"created_at":"Wed Oct 21 01:01:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3963671052\/1445389399","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727620870262785,"quoted_status_id_str":"663727620870262785","quoted_status":{"created_at":"Mon Nov 09 14:39:30 +0000 2015","id":663727620870262785,"id_str":"663727620870262785","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/NFe9Fuudwc","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727298915540992,"quoted_status_id_str":"663727298915540992","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/NFe9Fuudwc","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727298915540992","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/fUnJXqrBMf","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727620870262785","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155470336,"id_str":"663728039155470336","text":"RT @kamitai24: \u73fe\u5728\uff08pre-sent)\u3068\u306f\u3001\u524d\u3082\u3063\u3066\uff08pre\uff09 \u9001\u3089\u308c\u305f\uff08sent\uff09\u3068\u3044\u3046\u610f\u5473\u306a\u306e\u3060\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241099748,"id_str":"3241099748","name":"\u7d05\u4e95 \u78a7","screen_name":"akaiao0510","location":null,"url":null,"description":"\u30a2\u30fc\u30c6\u30a3\u30b9\u30c8\u3055\u3093\u3001\u4f5c\u5bb6\u3055\u3093\u2026etc\u7d20\u6575\u306a\u4f5c\u54c1\u306a\u3069\u3053\u3060\u308f\u308a\u306e\u3082\u306e\u3092\u7d39\u4ecb\u3057\u307e\u3059(^^)","protected":false,"verified":false,"followers_count":11,"friends_count":30,"listed_count":0,"favourites_count":49,"statuses_count":402,"created_at":"Wed Jun 10 07:00:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608530578665668608\/kPNzMkMI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608530578665668608\/kPNzMkMI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:00:13 +0000 2015","id":663657333675855872,"id_str":"663657333675855872","text":"\u73fe\u5728\uff08pre-sent)\u3068\u306f\u3001\u524d\u3082\u3063\u3066\uff08pre\uff09 \u9001\u3089\u308c\u305f\uff08sent\uff09\u3068\u3044\u3046\u610f\u5473\u306a\u306e\u3060\u3002","source":"\u003ca href=\"http:\/\/coblognews.seesaa.net\/\" rel=\"nofollow\"\u003ejyosi2ryoku\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2379775688,"id_str":"2379775688","name":"\u795e\u3068\u306e\u5bfe\u8a71\u3067\u5b66\u307c\u3046\u3002","screen_name":"kamitai24","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2032,"friends_count":1678,"listed_count":9,"favourites_count":18,"statuses_count":9689,"created_at":"Sun Mar 09 03:57:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442527802982543360\/-RzGvR3d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442527802982543360\/-RzGvR3d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2379775688\/1394341852","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kamitai24","name":"\u795e\u3068\u306e\u5bfe\u8a71\u3067\u5b66\u307c\u3046\u3002","id":2379775688,"id_str":"2379775688","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134523392,"id_str":"663728039134523392","text":"RT @OneLifeAlways: When I miss you, I read old messages and smile like an idiot.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3914877800,"id_str":"3914877800","name":"angah . ","screen_name":"aidaadlina00","location":null,"url":null,"description":"Better to be strong than pretty and useless :)","protected":false,"verified":false,"followers_count":88,"friends_count":149,"listed_count":0,"favourites_count":710,"statuses_count":780,"created_at":"Fri Oct 16 14:58:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657493248915574785\/k2ln23Sv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657493248915574785\/k2ln23Sv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3914877800\/1446911714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 13:07:51 +0000 2015","id":661167839814881280,"id_str":"661167839814881280","text":"When I miss you, I read old messages and smile like an idiot.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2794441796,"id_str":"2794441796","name":"One Life","screen_name":"OneLifeAlways","location":null,"url":null,"description":"What defines us is how well we rise after falling. #Love #Relationship #LifeFact #Inspirational","protected":false,"verified":false,"followers_count":305706,"friends_count":129775,"listed_count":401,"favourites_count":8,"statuses_count":3434,"created_at":"Sat Sep 06 17:53:28 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662631199408439296\/HhXKktkU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662631199408439296\/HhXKktkU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2794441796\/1446773420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":958,"favorite_count":809,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OneLifeAlways","name":"One Life","id":2794441796,"id_str":"2794441796","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039159660546,"id_str":"663728039159660546","text":"RT @kkrumkrum: \u0e40\u0e01\u0e47\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e27\u0e48\u0e32\u0e22\u0e32\u0e01\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e48\u0e22\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380122937,"id_str":"2380122937","name":"nunueng eiei","screen_name":"nunung254093","location":null,"url":null,"description":"\u0e44\u0e25\u0e19\u0e4c : nueng123noii","protected":false,"verified":false,"followers_count":7,"friends_count":116,"listed_count":0,"favourites_count":12,"statuses_count":258,"created_at":"Sun Mar 09 08:25:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659553788550709248\/wl8yRO1Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659553788550709248\/wl8yRO1Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380122937\/1440907800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:27:23 +0000 2015","id":663301785000407041,"id_str":"663301785000407041","text":"\u0e40\u0e01\u0e47\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e27\u0e48\u0e32\u0e22\u0e32\u0e01\u0e41\u0e25\u0e49\u0e27 \u0e40\u0e01\u0e47\u0e1a\u0e40\u0e07\u0e34\u0e19\u0e19\u0e35\u0e48\u0e22\u0e32\u0e01\u0e01\u0e27\u0e48\u0e32\ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851938001,"id_str":"2851938001","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","screen_name":"kkrumkrum","location":"-\u0e23\u0e27\u0e21\u0e17\u0e38\u0e01\u0e21\u0e38\u0e02\u0e2b\u0e25\u0e32\u0e01\u0e2b\u0e25\u0e32\u0e22\u0e41\u0e19\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e32\u0e23\u0e21-","url":"http:\/\/line.me\/ti\/p\/%40vbe6244k","description":"\u0e2d\u0e48\u0e32\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e34\u0e49\u0e21\u0e2d\u0e34\u0e19\u0e46\u0e01\u0e31\u0e19\u0e44\u0e1b5555\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e38\u0e01\u0e04\u0e19\u0e43\u0e08\u0e14\u0e35\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e31\u0e01\u0e21\u0e32\u0e04\u0e38\u0e22\u0e44\u0e14\u0e49\u0e1b\u0e23\u0e36\u0e01\u0e29\u0e32\u0e44\u0e14\u0e49\u0e19\u0e49\u0e32\u0e325555555 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e04\u0e19\u0e1f\u0e2d\u0e25\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30\u0e04\u0e49\u0e30\u0e08\u0e49\u0e27\u0e1a\u0e1a\u0e46\u25e1\u0308\u2661\u0e02\u0e2d\u0e2d\u0e20\u0e31\u0e22\u0e19\u0e30\u0e04\u0e30\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e23\u0e14\u0e34\u0e15 ig:kkrumkrum","protected":false,"verified":false,"followers_count":587290,"friends_count":173,"listed_count":70,"favourites_count":1,"statuses_count":3574,"created_at":"Sat Oct 11 12:11:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562910235678232577\/eEIXmJxv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851938001\/1423663298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10112,"favorite_count":2019,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kkrumkrum","name":"\u0e02\u0e33\u0e02\u0e23\u0e23\u0e21","id":2851938001,"id_str":"2851938001","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080070663"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039143043072,"id_str":"663728039143043072","text":"business: Hillary Clinton\u2019s rivals are poised to attack at this week's debate https:\/\/t.co\/0JtBtyDwAg https:\/\/t.co\/yXEfwaD1WI","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3890695347,"id_str":"3890695347","name":"Jascapital","screen_name":"jascapital2","location":null,"url":"http:\/\/www.jascapital.com","description":"JAS Capital is an investment consulting firm, transparent and independent for all investors.","protected":false,"verified":false,"followers_count":317,"friends_count":1415,"listed_count":49,"favourites_count":0,"statuses_count":42998,"created_at":"Wed Oct 07 14:29:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651812917353029632\/WraWjsqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651812917353029632\/WraWjsqy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3890695347\/1444239322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0JtBtyDwAg","expanded_url":"http:\/\/bloom.bg\/1WLrRhP","display_url":"bloom.bg\/1WLrRhP","indices":[78,101]}],"user_mentions":[],"symbols":[],"media":[{"id":663727816383533056,"id_str":"663727816383533056","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7rMWEAAo_6J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7rMWEAAo_6J.jpg","url":"https:\/\/t.co\/yXEfwaD1WI","display_url":"pic.twitter.com\/yXEfwaD1WI","expanded_url":"http:\/\/twitter.com\/business\/status\/663727816815570944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727816815570944,"source_status_id_str":"663727816815570944","source_user_id":34713362,"source_user_id_str":"34713362"}]},"extended_entities":{"media":[{"id":663727816383533056,"id_str":"663727816383533056","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7rMWEAAo_6J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7rMWEAAo_6J.jpg","url":"https:\/\/t.co\/yXEfwaD1WI","display_url":"pic.twitter.com\/yXEfwaD1WI","expanded_url":"http:\/\/twitter.com\/business\/status\/663727816815570944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727816815570944,"source_status_id_str":"663727816815570944","source_user_id":34713362,"source_user_id_str":"34713362"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039164043264,"id_str":"663728039164043264","text":"TY! I had an AMAZING bday celebration! @Aurifier @MamaSplicky @HannahJoyGirl @AlexMarkley @GabeMarkley @Enaduial @petermarkley @AliceMarkley","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211002682,"id_str":"211002682","name":"Susie Reed","screen_name":"SusieR33d","location":"Ohioville","url":"http:\/\/www.youtube.com\/c\/SusieReed","description":"Markley Bro to the end, happily Reed since I do. GREAT family, hilarious husband,\n& above all,\nan awesome God who gave me all of the above.","protected":false,"verified":false,"followers_count":138,"friends_count":145,"listed_count":2,"favourites_count":3946,"statuses_count":8855,"created_at":"Tue Nov 02 01:07:12 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/674397850\/126cdd5a309afd6a4901d82ac9dc0355.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/674397850\/126cdd5a309afd6a4901d82ac9dc0355.jpeg","profile_background_tile":false,"profile_link_color":"2FC4A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"595959","profile_text_color":"292929","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658040285344219136\/qYR6iy7Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658040285344219136\/qYR6iy7Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211002682\/1370906864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aurifier","name":"Drew Reed","id":130321024,"id_str":"130321024","indices":[39,48]},{"screen_name":"MamaSplicky","name":"Eve Markley","id":211736244,"id_str":"211736244","indices":[49,61]},{"screen_name":"HannahJoyGirl","name":"Hannah Markley","id":257647650,"id_str":"257647650","indices":[62,76]},{"screen_name":"AlexMarkley","name":"Alex Markley","id":15506722,"id_str":"15506722","indices":[77,89]},{"screen_name":"GabeMarkley","name":"Gabriel Markley","id":331740415,"id_str":"331740415","indices":[90,102]},{"screen_name":"Enaduial","name":"Rachael L. Markley","id":334063257,"id_str":"334063257","indices":[103,112]},{"screen_name":"petermarkley","name":"Peter Markley","id":155603678,"id_str":"155603678","indices":[113,126]},{"screen_name":"AliceMarkley","name":"Alice Markley","id":303514993,"id_str":"303514993","indices":[127,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070664"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155490816,"id_str":"663728039155490816","text":"RT @thefactguide: Toothpaste removes ink from your clothes. Apply it to the stain, let it dry and then wash.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252436129,"id_str":"3252436129","name":"http.akire.","screen_name":"EASunga14","location":"Masantol,Pampanga","url":null,"description":"\u2022I am not ashamed\u2022\n\u2022Forever God's Follower\u2022","protected":false,"verified":false,"followers_count":183,"friends_count":474,"listed_count":0,"favourites_count":575,"statuses_count":1547,"created_at":"Mon Jun 22 06:22:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656958221039464448\/weRGjJK5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656958221039464448\/weRGjJK5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252436129\/1445466006","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Apr 03 17:30:11 +0000 2015","id":584045240446619648,"id_str":"584045240446619648","text":"Toothpaste removes ink from your clothes. Apply it to the stain, let it dry and then wash.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834988327,"id_str":"834988327","name":"Fact Book","screen_name":"thefactguide","location":null,"url":"https:\/\/www.facebook.com\/mysteriousfactz","description":"Daily tweets filled with jaw-dropping facts, you won't be leaving this page without learning something new! #contact mastertweet01@gmail.com","protected":false,"verified":false,"followers_count":297962,"friends_count":363,"listed_count":507,"favourites_count":1030,"statuses_count":13501,"created_at":"Thu Sep 20 07:16:43 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172067585\/138VQCRa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172067585\/138VQCRa.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556351246374690816\/tgko4aAk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556351246374690816\/tgko4aAk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834988327\/1411935709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":244,"favorite_count":334,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thefactguide","name":"Fact Book","id":834988327,"id_str":"834988327","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151431681,"id_str":"663728039151431681","text":"This Myprotein gunzzzz article from a while back is definitely worth a re-share for all those that didn't see... https:\/\/t.co\/AZ2Nmjh7cx","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1637806525,"id_str":"1637806525","name":"Gareth Sapstead","screen_name":"sapstead","location":"Midlands, UK","url":"http:\/\/www.thefitnessmaverick.com","description":"UK Leading Personal Trainer - Lifter - Fitness Writer - Healthy n' Lean Recipe Conjurer","protected":false,"verified":false,"followers_count":124,"friends_count":238,"listed_count":6,"favourites_count":36,"statuses_count":400,"created_at":"Thu Aug 01 11:35:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639350231847579648\/qbc-b8mX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639350231847579648\/qbc-b8mX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1637806525\/1416694022","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AZ2Nmjh7cx","expanded_url":"http:\/\/fb.me\/3SPpUVnuq","display_url":"fb.me\/3SPpUVnuq","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168110592,"id_str":"663728039168110592","text":"RT @Snoopy: Monday. https:\/\/t.co\/JXaG23ywCo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116516732,"id_str":"116516732","name":"Nicole","screen_name":"gtogirl1970","location":"Chicago suburbs","url":null,"description":"I love Pontiac GTOs. I listen to music, read books and craft. I mostly dabble in the needle arts. I also love racing. An at home baker for the heck of it.","protected":false,"verified":false,"followers_count":640,"friends_count":1805,"listed_count":5,"favourites_count":9465,"statuses_count":2577,"created_at":"Mon Feb 22 19:00:41 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640878670207430658\/29EXr2S7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640878670207430658\/29EXr2S7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116516732\/1438192423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:59 +0000 2015","id":663727238987325440,"id_str":"663727238987325440","text":"Monday. https:\/\/t.co\/JXaG23ywCo","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245548093,"id_str":"245548093","name":"PEANUTS","screen_name":"Snoopy","location":null,"url":null,"description":"\u00a9 2015 Peanuts Worldwide LLC - Instagram: Snoopygrams \/ Snapchat: SnoopysSnaps \/ Facebook: Snoopy","protected":false,"verified":true,"followers_count":468925,"friends_count":64,"listed_count":3582,"favourites_count":528,"statuses_count":9917,"created_at":"Mon Jan 31 23:14:17 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446723711014424576\/0V7PSzdx.png","profile_background_tile":true,"profile_link_color":"005596","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFE600","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652593870014836736\/IPrXnYfA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245548093\/1444425461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":179,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Snoopy","name":"PEANUTS","id":245548093,"id_str":"245548093","indices":[3,10]}],"symbols":[],"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727238987325440,"source_status_id_str":"663727238987325440","source_user_id":245548093,"source_user_id_str":"245548093"}]},"extended_entities":{"media":[{"id":663727233215823872,"id_str":"663727233215823872","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIZuuVAAATr0-.jpg","url":"https:\/\/t.co\/JXaG23ywCo","display_url":"pic.twitter.com\/JXaG23ywCo","expanded_url":"http:\/\/twitter.com\/Snoopy\/status\/663727238987325440\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":612,"h":612,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727238987325440,"source_status_id_str":"663727238987325440","source_user_id":245548093,"source_user_id_str":"245548093"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151271936,"id_str":"663728039151271936","text":"RT @BOCapsule: #BOCapsule Here's the stylish new poster of #Dilwale - @iamsrk #DilwaleTrailerDay\nhttps:\/\/t.co\/wi5ugzQ4WF https:\/\/t.co\/Can\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2225121390,"id_str":"2225121390","name":"Abhishek","screen_name":"Sheks25","location":"New Jersey,USA","url":null,"description":"Duniya Ke Sabse Bade Superstar Ka Sabse Bada FAN @iamsrk","protected":false,"verified":false,"followers_count":85,"friends_count":101,"listed_count":4,"favourites_count":4363,"statuses_count":7676,"created_at":"Sun Dec 01 15:18:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418456800409567232\/vJbHvRdM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418456800409567232\/vJbHvRdM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2225121390\/1438077951","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:15 +0000 2015","id":663727050939744256,"id_str":"663727050939744256","text":"#BOCapsule Here's the stylish new poster of #Dilwale - @iamsrk #DilwaleTrailerDay\nhttps:\/\/t.co\/wi5ugzQ4WF https:\/\/t.co\/Can978iiYV","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426927447,"id_str":"426927447","name":"Box Office Capsule","screen_name":"BOCapsule","location":"Mumbai","url":"http:\/\/www.boxofficecapsule.com","description":"Bollywood updates and news, Movies Review, Previews, Box Office Collections, Analysis, Prediction, Down South Films","protected":false,"verified":false,"followers_count":61434,"friends_count":39,"listed_count":144,"favourites_count":137,"statuses_count":47539,"created_at":"Fri Dec 02 21:50:20 +0000 2011","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/568395951954337793\/WBybhgPg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/568395951954337793\/WBybhgPg.jpeg","profile_background_tile":true,"profile_link_color":"DE0909","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"080808","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465737318616166400\/AsWVZzEN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465737318616166400\/AsWVZzEN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426927447\/1446705669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":20,"entities":{"hashtags":[{"text":"BOCapsule","indices":[0,10]},{"text":"Dilwale","indices":[45,53]},{"text":"DilwaleTrailerDay","indices":[65,83]}],"urls":[{"url":"https:\/\/t.co\/wi5ugzQ4WF","expanded_url":"http:\/\/ow.ly\/Uq2yW","display_url":"ow.ly\/Uq2yW","indices":[84,107]}],"user_mentions":[{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[56,63]}],"symbols":[],"media":[{"id":663727036452720640,"id_str":"663727036452720640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","url":"https:\/\/t.co\/Can978iiYV","display_url":"pic.twitter.com\/Can978iiYV","expanded_url":"http:\/\/twitter.com\/BOCapsule\/status\/663727050939744256\/photo\/1","type":"photo","sizes":{"large":{"w":568,"h":297,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":297,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727036452720640,"id_str":"663727036452720640","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","url":"https:\/\/t.co\/Can978iiYV","display_url":"pic.twitter.com\/Can978iiYV","expanded_url":"http:\/\/twitter.com\/BOCapsule\/status\/663727050939744256\/photo\/1","type":"photo","sizes":{"large":{"w":568,"h":297,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":297,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BOCapsule","indices":[15,25]},{"text":"Dilwale","indices":[60,68]},{"text":"DilwaleTrailerDay","indices":[80,98]}],"urls":[{"url":"https:\/\/t.co\/wi5ugzQ4WF","expanded_url":"http:\/\/ow.ly\/Uq2yW","display_url":"ow.ly\/Uq2yW","indices":[99,122]}],"user_mentions":[{"screen_name":"BOCapsule","name":"Box Office Capsule","id":426927447,"id_str":"426927447","indices":[3,13]},{"screen_name":"iamsrk","name":"Shah Rukh Khan","id":101311381,"id_str":"101311381","indices":[71,78]}],"symbols":[],"media":[{"id":663727036452720640,"id_str":"663727036452720640","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","url":"https:\/\/t.co\/Can978iiYV","display_url":"pic.twitter.com\/Can978iiYV","expanded_url":"http:\/\/twitter.com\/BOCapsule\/status\/663727050939744256\/photo\/1","type":"photo","sizes":{"large":{"w":568,"h":297,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":297,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727050939744256,"source_status_id_str":"663727050939744256","source_user_id":426927447,"source_user_id_str":"426927447"}]},"extended_entities":{"media":[{"id":663727036452720640,"id_str":"663727036452720640","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORuWUAAGVJ9.jpg","url":"https:\/\/t.co\/Can978iiYV","display_url":"pic.twitter.com\/Can978iiYV","expanded_url":"http:\/\/twitter.com\/BOCapsule\/status\/663727050939744256\/photo\/1","type":"photo","sizes":{"large":{"w":568,"h":297,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":568,"h":297,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727050939744256,"source_status_id_str":"663727050939744256","source_user_id":426927447,"source_user_id_str":"426927447"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039142920192,"id_str":"663728039142920192","text":"\u0e2e\u0e37\u0e2d \u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e30\u0e40\u0e21\u0e0b\u0e2d\u0e19\u0e01\u0e39 \u0e15\u0e34\u0e14\u0e2b\u0e0d\u0e34\u0e07\u0e44\u0e1b\u0e0b\u0e30\u0e25\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3516743594,"id_str":"3516743594","name":"\u0e25\u0e30\u0e40\u0e21\u0e2d\u0e2d\u0e22\u0e39\u0e48.","screen_name":"ibammies","location":"Bangkok, Thailand","url":null,"description":"I'm sleeping and dreaming.","protected":false,"verified":false,"followers_count":37,"friends_count":67,"listed_count":0,"favourites_count":126,"statuses_count":1361,"created_at":"Thu Sep 10 15:22:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652093166321926145\/ziQUrCQa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652093166321926145\/ziQUrCQa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3516743594\/1441899522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172313088,"id_str":"663728039172313088","text":"@shikat_ @orihiron \u304a\u75b2\u308c\u3055\u307e\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711078900076549,"in_reply_to_status_id_str":"663711078900076549","in_reply_to_user_id":1225578157,"in_reply_to_user_id_str":"1225578157","in_reply_to_screen_name":"shikat_","user":{"id":1055133961,"id_str":"1055133961","name":"\u304d\u3068\u3045\u30fc","screen_name":"takakey10","location":null,"url":null,"description":"\u6804\u514960\/\u4e00\u6a4b\u55463\u5b88\u5cf6\u30bc\u30df\/\u30bc\u30df\u5354\u526f\u4f1a\u9577\u5e83\u5831\/KODA17\u5e83\u583118\u540d\u523a\/\u30ec\u30d5\u30c9\u30e9(\u4eca\u5b632\u52dd9\u6557)\/\u30e9\u30a4\u30d6\u5927\u597d\u304d\u4eba\u9593\/1\u5e742\u7d44\/P.T.A.","protected":false,"verified":false,"followers_count":1001,"friends_count":1036,"listed_count":12,"favourites_count":36232,"statuses_count":63305,"created_at":"Wed Jan 02 13:37:13 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548833467178287104\/XnOJv-dw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548833467178287104\/XnOJv-dw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1055133961\/1427831054","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shikat_","name":"\u3061\u304f\u308f","id":1225578157,"id_str":"1225578157","indices":[0,8]},{"screen_name":"orihiron","name":"\u307f\u3053\u3057\u3070","id":1642102591,"id_str":"1642102591","indices":[9,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172292608,"id_str":"663728039172292608","text":"@yukiblue622 \u307b\u3063\u305f\u3089\u304b\u3057\u7b11\n\u306f\u3088\u3057\u3088\uff01\u30b1\u30c1\u30e3\u30c3\u30d7\u3068\u30de\u30e8\u30cd\u30fc\u30ba\u6301\u3063\u3066\u3044\u304f\u308f\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726668888969216,"in_reply_to_status_id_str":"663726668888969216","in_reply_to_user_id":1663985419,"in_reply_to_user_id_str":"1663985419","in_reply_to_screen_name":"yukiblue622","user":{"id":723856645,"id_str":"723856645","name":"\u3082\u308a\u308a\u3093","screen_name":"ymk113","location":null,"url":null,"description":"\u95a2\u5927 \u793e \u5fc3 P1\/\u30ab\u30af\u30ec\u30f3\u30dc\/cerezo\/\u9234\u6728\u9054\u592e\/OCD\/Free!\/love live!\/\u30cf\u30a4\u30ad\u30e5\u30fc\uff01\uff01 veni vidi 2days","protected":false,"verified":false,"followers_count":379,"friends_count":340,"listed_count":2,"favourites_count":1720,"statuses_count":7210,"created_at":"Sun Jul 29 11:39:09 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606281505279610880\/fpapEN4C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606281505279610880\/fpapEN4C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723856645\/1432999214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yukiblue622","name":"\u3086\u3046\u304d","id":1663985419,"id_str":"1663985419","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147102208,"id_str":"663728039147102208","text":"@dennispkelly @JuliaMoralesRS @MattClark60","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663524704389591040,"in_reply_to_status_id_str":"663524704389591040","in_reply_to_user_id":38713657,"in_reply_to_user_id_str":"38713657","in_reply_to_screen_name":"dennispkelly","user":{"id":1099720417,"id_str":"1099720417","name":"Jules Howard","screen_name":"annhwrd","location":null,"url":null,"description":"Cradle Catholic, to pray unceasingly. Life is a fleeting breath, live life with a purpose! Follow does not = endorsement; I will unfollow lewdness","protected":false,"verified":false,"followers_count":3838,"friends_count":3317,"listed_count":51,"favourites_count":6920,"statuses_count":10174,"created_at":"Fri Jan 18 01:27:55 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/791029143\/a293025bc2795de979cf3bcee2d0d436.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/791029143\/a293025bc2795de979cf3bcee2d0d436.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3638210893\/1d6e92757f763cc3fc1d8b4fc9a3f973_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3638210893\/1d6e92757f763cc3fc1d8b4fc9a3f973_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1099720417\/1375897245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dennispkelly","name":"Dennis Kelly","id":38713657,"id_str":"38713657","indices":[0,13]},{"screen_name":"JuliaMoralesRS","name":"Julia Morales","id":31067019,"id_str":"31067019","indices":[14,29]},{"screen_name":"MattClark60","name":"Matt Clark","id":116273768,"id_str":"116273768","indices":[30,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070660"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168053249,"id_str":"663728039168053249","text":"@ami19979260 \n\u3042\u307f\u3055\u3093\u9aea\u4f38\u3073\u305f\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725788668129280,"in_reply_to_status_id_str":"663725788668129280","in_reply_to_user_id":3037635854,"in_reply_to_user_id_str":"3037635854","in_reply_to_screen_name":"ami19979260","user":{"id":743489353,"id_str":"743489353","name":"\u307e\u308a\u5b22\u3002","screen_name":"maria_basuke05","location":null,"url":null,"description":"\u57ce\u6771\u261e\u7f8e\u9808\u8cc0\u261e\u4eca\u5317\uff3cBasuke\uff0f\u7d2b\u96fbLjk[\u2661\u2661]\n\u4e3b\u98df:JX\/\u30c7\u30f3\u30bd\u30fc","protected":false,"verified":false,"followers_count":235,"friends_count":236,"listed_count":0,"favourites_count":1370,"statuses_count":3755,"created_at":"Tue Aug 07 18:42:50 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660837469290561536\/YRJJ4TgU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660837469290561536\/YRJJ4TgU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/743489353\/1446473620","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ami19979260","name":"\u674f\u5b9f","id":3037635854,"id_str":"3037635854","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147216896,"id_str":"663728039147216896","text":"https:\/\/t.co\/XHzIqaZob2 Jobseeker turns himself in for malicious @INSubcontinent #INSubcontinent #Korea","source":"\u003ca href=\"http:\/\/www.ecroaker.com\" rel=\"nofollow\"\u003eEcroaker Tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1292251770,"id_str":"1292251770","name":"Ecroaker","screen_name":"Ecroaker","location":"http:\/\/www.ecroaker.com","url":"http:\/\/www.ecroaker.com","description":"Your ideas are Market Realized Idea-ting engine for .MOTIVATORS,ARTISTS,CREATIVE,LEARNERS,INNOVATORS,DESIGNERS,INVESTORS,DEVELOPERS,TESTERS,ARTISTS,","protected":false,"verified":false,"followers_count":2605,"friends_count":1547,"listed_count":157,"favourites_count":81107,"statuses_count":350230,"created_at":"Sat Mar 23 19:17:01 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468221902574469120\/5jfQY3IO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468221902574469120\/5jfQY3IO.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468221569722884096\/qceh4Ta-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468221569722884096\/qceh4Ta-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1292251770\/1400467737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"INSubcontinent","indices":[81,96]},{"text":"Korea","indices":[97,103]}],"urls":[{"url":"https:\/\/t.co\/XHzIqaZob2","expanded_url":"http:\/\/tinyurl.com\/nfq4kyx","display_url":"tinyurl.com\/nfq4kyx","indices":[0,23]}],"user_mentions":[{"screen_name":"INSubcontinent","name":"WorldNews 24\/7","id":107432899,"id_str":"107432899","indices":[65,80]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070660"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134523393,"id_str":"663728039134523393","text":"@Omgitsneynaah Hala grabe, tugatuga ug jugjug nya patyon. Utak muna bago jugjug ha? Haaahahaahahha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727480386121728,"in_reply_to_status_id_str":"663727480386121728","in_reply_to_user_id":3725807305,"in_reply_to_user_id_str":"3725807305","in_reply_to_screen_name":"Omgitsneynaah","user":{"id":4045381940,"id_str":"4045381940","name":"Rhenz Abellana","screen_name":"RhenzAbellana","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":104,"listed_count":0,"favourites_count":9,"statuses_count":22,"created_at":"Wed Oct 28 10:10:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662094833779998720\/O39Lw4L6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662094833779998720\/O39Lw4L6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4045381940\/1446142306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Omgitsneynaah","name":"Nina Ocampo","id":3725807305,"id_str":"3725807305","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039142887428,"id_str":"663728039142887428","text":"RT @AjithUKFans: #KWDDsnippets! #Ulaganayagan about #Thala! @DhivyaDharshini \n\n#Thoongaavanam #Vedalam https:\/\/t.co\/IRj6zkZd0w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220467096,"id_str":"3220467096","name":"\u00e4\u0155\u0173\u00f1 \u015f\u00e5\u0148\u0137\u0103\u0159","screen_name":"ajisankar77","location":"Tirunelveli, Tamil Nadu","url":null,"description":"ultimate team tirunelveli","protected":false,"verified":false,"followers_count":16,"friends_count":129,"listed_count":0,"favourites_count":68,"statuses_count":202,"created_at":"Tue May 19 15:48:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661953485521334272\/rnifhhUU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661953485521334272\/rnifhhUU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220467096\/1445522146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:49:24 +0000 2015","id":663715011538329600,"id_str":"663715011538329600","text":"#KWDDsnippets! #Ulaganayagan about #Thala! @DhivyaDharshini \n\n#Thoongaavanam #Vedalam https:\/\/t.co\/IRj6zkZd0w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2947718201,"id_str":"2947718201","name":"Ajith UK Fans","screen_name":"AjithUKFans","location":"London, England","url":"http:\/\/www.Facebook.com\/AjithUKFans","description":"Fanpage Dedicated to #Thala #Ajith |\nUpcoming movie of #Thala Ajith: #Vedalam | Live and Let Live","protected":false,"verified":false,"followers_count":7219,"friends_count":414,"listed_count":8,"favourites_count":4885,"statuses_count":7172,"created_at":"Mon Dec 29 01:50:29 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662987399887220736\/6EG8v5UC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662987399887220736\/6EG8v5UC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2947718201\/1445101014","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":21,"entities":{"hashtags":[{"text":"KWDDsnippets","indices":[0,13]},{"text":"Ulaganayagan","indices":[15,28]},{"text":"Thala","indices":[35,41]},{"text":"Thoongaavanam","indices":[62,76]},{"text":"Vedalam","indices":[77,85]}],"urls":[],"user_mentions":[{"screen_name":"DhivyaDharshini","name":"DD Neelakandan","id":204372958,"id_str":"204372958","indices":[43,59]}],"symbols":[],"media":[{"id":663711967228497920,"id_str":"663711967228497920","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","url":"https:\/\/t.co\/IRj6zkZd0w","display_url":"pic.twitter.com\/IRj6zkZd0w","expanded_url":"http:\/\/twitter.com\/vijaytelevision\/status\/663712043510419457\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":786,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663712043510419457,"source_status_id_str":"663712043510419457","source_user_id":429437160,"source_user_id_str":"429437160"}]},"extended_entities":{"media":[{"id":663711967228497920,"id_str":"663711967228497920","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","url":"https:\/\/t.co\/IRj6zkZd0w","display_url":"pic.twitter.com\/IRj6zkZd0w","expanded_url":"http:\/\/twitter.com\/vijaytelevision\/status\/663712043510419457\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":786,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663712043510419457,"source_status_id_str":"663712043510419457","source_user_id":429437160,"source_user_id_str":"429437160","video_info":{"aspect_ratio":[131,96],"duration_millis":27334,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/490x360\/tnsywgTE5Pal4_W4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/490x360\/tnsywgTE5Pal4_W4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/pl\/e9fPeKJkL_63n-Ab.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/pl\/e9fPeKJkL_63n-Ab.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/244x180\/VFxdjsATC15BtwuC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KWDDsnippets","indices":[17,30]},{"text":"Ulaganayagan","indices":[32,45]},{"text":"Thala","indices":[52,58]},{"text":"Thoongaavanam","indices":[79,93]},{"text":"Vedalam","indices":[94,102]}],"urls":[],"user_mentions":[{"screen_name":"AjithUKFans","name":"Ajith UK Fans","id":2947718201,"id_str":"2947718201","indices":[3,15]},{"screen_name":"DhivyaDharshini","name":"DD Neelakandan","id":204372958,"id_str":"204372958","indices":[60,76]}],"symbols":[],"media":[{"id":663711967228497920,"id_str":"663711967228497920","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","url":"https:\/\/t.co\/IRj6zkZd0w","display_url":"pic.twitter.com\/IRj6zkZd0w","expanded_url":"http:\/\/twitter.com\/vijaytelevision\/status\/663712043510419457\/video\/1","type":"photo","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":786,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663712043510419457,"source_status_id_str":"663712043510419457","source_user_id":429437160,"source_user_id_str":"429437160"}]},"extended_entities":{"media":[{"id":663711967228497920,"id_str":"663711967228497920","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663711967228497920\/pu\/img\/qnkloLVFWmKkGubk.jpg","url":"https:\/\/t.co\/IRj6zkZd0w","display_url":"pic.twitter.com\/IRj6zkZd0w","expanded_url":"http:\/\/twitter.com\/vijaytelevision\/status\/663712043510419457\/video\/1","type":"video","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":786,"h":576,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663712043510419457,"source_status_id_str":"663712043510419457","source_user_id":429437160,"source_user_id_str":"429437160","video_info":{"aspect_ratio":[131,96],"duration_millis":27334,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/490x360\/tnsywgTE5Pal4_W4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/490x360\/tnsywgTE5Pal4_W4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/pl\/e9fPeKJkL_63n-Ab.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/pl\/e9fPeKJkL_63n-Ab.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663711967228497920\/pu\/vid\/244x180\/VFxdjsATC15BtwuC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147106305,"id_str":"663728039147106305","text":"RT @beccapires: as vezes tenho vontade de sair andando sem rumo...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2769154322,"id_str":"2769154322","name":"girl black","screen_name":"fabirocha_123","location":"S\u00e3o Paulo, Brasil","url":null,"description":"Vacilou sem ca\u00f4, ela s\u00f3 quer curtir n\u00e3o quer um novo amor\u2755","protected":false,"verified":false,"followers_count":763,"friends_count":198,"listed_count":2,"favourites_count":2435,"statuses_count":27323,"created_at":"Tue Aug 26 04:54:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"412999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430398710579201\/uKLiDVOB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430398710579201\/uKLiDVOB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769154322\/1446758842","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:13:53 +0000 2015","id":663494679619596288,"id_str":"663494679619596288","text":"as vezes tenho vontade de sair andando sem rumo...","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58380358,"id_str":"58380358","name":"Becca Pires","screen_name":"beccapires","location":"S\u00e3o Paulo, Brasil","url":"http:\/\/youtube.com\/beccapires","description":"namaste bitches ll SNAPCHAT: beccapires ll caixa postal: 4047 cep: 07044-970 ll e-mail para contato: contatobeccapires@outlook.com","protected":false,"verified":false,"followers_count":79725,"friends_count":333,"listed_count":39,"favourites_count":52390,"statuses_count":66541,"created_at":"Mon Jul 20 03:43:07 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FF6EC7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660539259087122434\/kIewKPEM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660539259087122434\/kIewKPEM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58380358\/1437709916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":145,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"beccapires","name":"Becca Pires","id":58380358,"id_str":"58380358","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080070660"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155531776,"id_str":"663728039155531776","text":"\u54b3\u304c\u51fa\u3066\u304d\u305f\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1333076430,"id_str":"1333076430","name":"maRo","screen_name":"maRo4127","location":null,"url":"http:\/\/twpf.jp\/maRo4127","description":"\u7cbe\u4e00\u676f\u751f\u304d\u308b\uff01","protected":false,"verified":false,"followers_count":1082,"friends_count":1024,"listed_count":17,"favourites_count":5034,"statuses_count":27437,"created_at":"Sun Apr 07 03:50:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635832255881986048\/MnxZbV2T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635832255881986048\/MnxZbV2T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1333076430\/1445442003","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039134531584,"id_str":"663728039134531584","text":"@chika76147 \u30c1\u30ab\u541b\u732b\u79d1\u306a\u306e\uff1f","source":"\u003ca href=\"http:\/\/sinproject.net\/tweecha4jp\/\" rel=\"nofollow\"\u003etweechaPrime4jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727813929766912,"in_reply_to_status_id_str":"663727813929766912","in_reply_to_user_id":148412666,"in_reply_to_user_id_str":"148412666","in_reply_to_screen_name":"chika76147","user":{"id":250856616,"id_str":"250856616","name":"\u3010\u671f\u9593\u9650\u5b9a\u3011\u305f\u3064\u304d\u304f\u3093\u9aed\u3001\u59cb\u3081\u307e\u3057\u305f\u3002","screen_name":"tatsukirin86","location":"2.5\u6b21\u5143\u3068\u3074\u306e\u3074\u304c\u5c45\u308b\u3068\u3053\u308d","url":"http:\/\/twpf.jp\/tatsukirin86","description":"2.5\u6b21\u5143\u306b\u4f4f\u3093\u3067\u308b\u304b\u30893\u6b21\u5143\u306b\u306f\u5c45\u307e\u305b\u3093\u3002\n\u9650\u308a\u7121\u304f3\u6b21\u5143\u306b\u8fd1\u3044\u3068\u3053\u308d\u307e\u3067\u884c\u304f\u696d\u306f\u6709\u3057\u3066\u307e\u3059\u3002\n\n\u8e0a\u3063\u3066\u307f\u305f(\u3074\u306e\u3074,\u30e9\u30d6\u30e9\u30a4\u30ba\uff01)\u30dd\u30b1\u30e2\u30f3(\u30d5\u30fc\u30d1)\u30e9\u30d6\u30e9\u30a4\u30d6\uff01(\u9ad8\u5742\u7a42\u4e43\u679c,\u98ef\u7530\u91cc\u7a42,\u6e21\u8fba\u66dc)","protected":false,"verified":false,"followers_count":171,"friends_count":162,"listed_count":7,"favourites_count":333,"statuses_count":33269,"created_at":"Fri Feb 11 23:22:18 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662944560968962049\/ylfGM1Bz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662944560968962049\/ylfGM1Bz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250856616\/1425257509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chika76147","name":"\u30b5\u30ab\u30a8\u30fb\u30c1\u30ab\u677e","id":148412666,"id_str":"148412666","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070657"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155671040,"id_str":"663728039155671040","text":"\"Un objeto pr\u00e1cticamente similar\". El castellano recibe otra pu\u00f1alada en el Telediario.","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":490408584,"id_str":"490408584","name":"Mike Pinter","screen_name":"mike_pinter","location":"Marbella, M\u00e1laga, Espa\u00f1a","url":"http:\/\/www.inteso.es","description":"Hominino, Homo Sapiens","protected":false,"verified":false,"followers_count":55,"friends_count":44,"listed_count":1,"favourites_count":86,"statuses_count":2885,"created_at":"Sun Feb 12 14:41:13 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506718326286848000\/_HkytWVf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506718326286848000\/_HkytWVf.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503855022203875329\/2H_EkP15_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503855022203875329\/2H_EkP15_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/490408584\/1434465444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039159730176,"id_str":"663728039159730176","text":"RT @yusaani_media: \u7b2c20\u56de\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u795e\u6238\u8cde\u306e\u53d7\u8cde\u8005\uff06\u53d7\u8cde\u4f5c\u304c\u767a\u8868\uff01\u500b\u4eba\u8cde\u306b\u6c34\u5cf6\u7cbe\u4e8c\u76e3\u7763\u3001\u305d\u3057\u3066\u4f5c\u54c1\u8cde\u3092\u300eSHIROBAKO\u300f\u306a\u3069\u304c\u53d7\u8cde\uff01\u304a\u3081\u3067\u3068\u304a\u304a\u304a\uff01\uff01 https:\/\/t.co\/BRJUozjefv","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4 \/ www.movatwi.jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186492941,"id_str":"186492941","name":"\u96ea\u5e73\u512a\u592a","screen_name":"ukihira","location":"\u3069\u3053\u304b\u8b0e\u306e\u307e\u307e\r\n","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066!ASIAN KUNG-FU GENERATION,BUMP OF CHICKEN,\u30b9\u30d4\u30c3\u30c4,\u304f\u308b\u308a,\u7c73\u6d25\u7384\u5e2b,sleepy.ab,Galileo Galilei,\u4e2d\u6751\u4e00\u7fa9(100s),Syrup16g,plenty,group_inou\u3092\u3088\u304f\u8074\u304d\u307e\u3059\u3002\u6f2b\u753b\u3084\u30a2\u30cb\u30e1\u306e\u545f\u304d\u3082\u3088\u304f\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":479,"friends_count":1098,"listed_count":34,"favourites_count":608,"statuses_count":78154,"created_at":"Fri Sep 03 16:19:27 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2493138461\/4059e26d0756df2566b8207e7c9ce205_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2493138461\/4059e26d0756df2566b8207e7c9ce205_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:09 +0000 2015","id":663727279437049856,"id_str":"663727279437049856","text":"\u7b2c20\u56de\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u795e\u6238\u8cde\u306e\u53d7\u8cde\u8005\uff06\u53d7\u8cde\u4f5c\u304c\u767a\u8868\uff01\u500b\u4eba\u8cde\u306b\u6c34\u5cf6\u7cbe\u4e8c\u76e3\u7763\u3001\u305d\u3057\u3066\u4f5c\u54c1\u8cde\u3092\u300eSHIROBAKO\u300f\u306a\u3069\u304c\u53d7\u8cde\uff01\u304a\u3081\u3067\u3068\u304a\u304a\u304a\uff01\uff01 https:\/\/t.co\/BRJUozjefv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318954420,"id_str":"318954420","name":"\u3086\u3055\u30a2\u30cb","screen_name":"yusaani_media","location":null,"url":"http:\/\/yusaani.com\/","description":"\u30a2\u30cb\u30e1\u30d6\u30ed\u30b0\u300c\u3086\u3055\u30a2\u30cb\u300d\u3002\u30a2\u30cb\u30e1\u30fb\u6f2b\u753b\u30fb\u58f0\u512a\u30fb\u30b2\u30fc\u30e0\u30cd\u30bf\u4e2d\u5fc3\u3002 \u30cd\u30bf\u63d0\u4f9b\u30fb\u8a18\u4e8b\u5bc4\u7a3f\u30fb\u304a\u4ed5\u4e8b\u306e\u3054\u76f8\u8ac7\u30fb\u305d\u306e\u4ed6\u3054\u9023\u7d61\u306f\u7de8\u96c6\u90e8\u3078\u30e1\u30fc\u30eb\u306b\u3066\u3069\u3046\u305e\u3002yusaani2014@gmail.com\u3000\u203b\u30e1\u30fc\u30eb\u306e\u3054\u8fd4\u4fe1\u306f\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u5bfe\u5fdc\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":166482,"friends_count":149451,"listed_count":1358,"favourites_count":324,"statuses_count":81619,"created_at":"Fri Jun 17 10:00:30 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/523795238616178690\/v-uaWubl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/523795238616178690\/v-uaWubl.jpeg","profile_background_tile":false,"profile_link_color":"E671D2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657612199578329090\/OX5U1uvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657612199578329090\/OX5U1uvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318954420\/1445622029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":36,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BRJUozjefv","expanded_url":"http:\/\/yusaani.com\/news\/2015\/11\/09\/220012\/","display_url":"yusaani.com\/news\/2015\/11\/0\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BRJUozjefv","expanded_url":"http:\/\/yusaani.com\/news\/2015\/11\/09\/220012\/","display_url":"yusaani.com\/news\/2015\/11\/0\u2026","indices":[91,114]}],"user_mentions":[{"screen_name":"yusaani_media","name":"\u3086\u3055\u30a2\u30cb","id":318954420,"id_str":"318954420","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070663"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039138840577,"id_str":"663728039138840577","text":"@dispunktional @Luke5SOS wanna follow me to","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":557352590028333056,"in_reply_to_status_id_str":"557352590028333056","in_reply_to_user_id":2509768022,"in_reply_to_user_id_str":"2509768022","in_reply_to_screen_name":"dispunktional","user":{"id":2509768022,"id_str":"2509768022","name":"swiggity\u2728swag\u2728sky","screen_name":"dispunktional","location":"chicago","url":"https:\/\/twitter.com\/dispunktional\/status\/557352590028333056","description":"i never knew that love had a sound, until i heard luke hemmings laugh","protected":false,"verified":false,"followers_count":683,"friends_count":389,"listed_count":6,"favourites_count":4385,"statuses_count":6818,"created_at":"Tue May 20 08:52:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655504113145368576\/SCt_CkG8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655504113145368576\/SCt_CkG8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2509768022\/1445119342","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dispunktional","name":"swiggity\u2728swag\u2728sky","id":2509768022,"id_str":"2509768022","indices":[0,14]},{"screen_name":"Luke5SOS","name":"Luke Hemmings","id":403245020,"id_str":"403245020","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070658"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039138713600,"id_str":"663728039138713600","text":"\u79c1\u306f\u4eca\u3059\u3054\u304f\u9b31\uff88\uff80\u3092\u66f8\u304d\u305f\u3044\uff01\uff01(\u66f8\u304f\u3068\u306f\u8a00\u3063\u3066\u3044\u306a\u3044)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068175236,"id_str":"3068175236","name":"\u771f\u53cb\u7f8e(\uff61\uff65\u04e9\uff65\uff61)","screen_name":"Ma0yu7mi2n9","location":"\u5ca9\u9cf6\u9ad8\u6821\u306e\uff8c\uff9f\uff70\uff99\u3067\u6e1a\u3092\u898b\u3066\u3044\u968a \u3053\u3068\u308a\u3089\u30fc\u3073\u3085\u2661 ","url":null,"description":"K.Y\u5c0f\u5b66\u6821 \u2726I.K\u4e2d\u5b66\u6821\u6f14\u5287\u90e8(\u5f15\u9000)\u2726SNB\u9ad8\u6821 27C(No.28) \u6f14\u5287\u90e8\u2726Free!\u3092\u77e5\u3063\u30662\u5e74\u3001Free!\u53a8\u3068\u547c\u3070\u308c\u30661\u5e74 .\u3002o\u25cb\u61a7\u308c\u306e\u8cb4\u65b9\u3068\u540c\u3058\u666f\u8272\u3092\u898b\u308b\u305f\u3081\u306b\u3001\u898b\u305f\u3053\u3068\u306e\u7121\u3044\u666f\u8272\u3092\u898b\u308b\u305f\u3081\u306b\u2026 \u25cbo\u3002.","protected":false,"verified":false,"followers_count":121,"friends_count":134,"listed_count":1,"favourites_count":8757,"statuses_count":11590,"created_at":"Sun Mar 08 12:21:23 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660821111244873729\/5RQC-dXs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660821111244873729\/5RQC-dXs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068175236\/1440201807","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070658"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151333376,"id_str":"663728039151333376","text":"\u3053\u3046\u3044\u3046\u30a4\u30f3\u30b9\u30bf\u30ec\u30fc\u30b7\u30e7\u30f3\u4f5c\u308c\u308b\u4eba\u306b\u306a\u308a\u305f\u304b\u3063\u305f\u306a\u2026\nhttps:\/\/t.co\/8FfP8VXger","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543416742,"id_str":"543416742","name":"\u9999\u5bae\u307a\u3053#\u30cf\u30f3\u30b3\u30a6\u30ad","screen_name":"kmy_000","location":"\u5352\u8ad6\u30c7\u30b9\u30de\u30fc\u30c1","url":"http:\/\/hkk469612.blog.fc2.com\/","description":"\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u696d\u754c\u306b\u53cd\u65d7\u3092\u7ffb\u3059\u4e59\u5973\u30c6\u30ed\u30ea\u30b9\u30c8\u30e6\u30cb\u30c3\u30c8 \u30cf\u30f3\u30b3\u30a6\u30ad\u306e\u53a8\u4e8c\u75c5\u62c5\u5f53@\u6d3b\u52d5\u4f11\u6b62\u4e2d\/\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u5236\u4f5c\/\u731f\u66f8\u72c2\/\u30a2\u30fc\u30d0\u30f3\u30ae\u30e3\u30eb\/\u304a\u304f\u3059\u308a\u30cd\u30c3\u30af\u30ec\u30b9\/\u3042\u3068\u306e\u307e\u3064\u308a\u304b\u308b\u305f ### \u30cf\u30f3\u30b3\u30a6\u30ad\u76f8\u65b9\u3061\u3083\u3093:@art_505 ### \u9023\u7d61\u5148:469612hkk@gmail.com","protected":false,"verified":false,"followers_count":264,"friends_count":61,"listed_count":9,"favourites_count":998,"statuses_count":25468,"created_at":"Mon Apr 02 11:20:09 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615198281354706944\/3ek6dCfM.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615198281354706944\/3ek6dCfM.png","profile_background_tile":true,"profile_link_color":"FF8F8F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615201348473126912\/SlbcstxQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615201348473126912\/SlbcstxQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543416742\/1427897742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663656741373157376,"quoted_status_id_str":"663656741373157376","quoted_status":{"created_at":"Mon Nov 09 09:57:51 +0000 2015","id":663656741373157376,"id_str":"663656741373157376","text":"\u3053\u306e\u5c55\u793a\u3082\u51c4\u304f\u7dba\u9e97\u3067\u3057\u305f\u3001\u6587\u5b57\u304c\u964d\u308a\u6ce8\u3044\u3067\u308b\u306e\u3068\u672c\u304b\u3089\u8776\u304c\u3042\u3075\u308c\u3066\u308b\u306e https:\/\/t.co\/Ae34zMOOBh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293438369,"id_str":"293438369","name":"\u3046\u308b\u3061","screen_name":"uruchi001","location":"\u30a2\u30de\u30e9\u6df1\u754c\u7b2c\u4e09\u30ab\u30eb\u30d1","url":null,"description":"\u8150\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u306f\u308b\u304b\u6614\u306b\u6210\u4eba\u6e08\u3002\u73fe\u5728\u3001\u8840\u754c\u6226\u7dda\u30ec\u30aa\u53f3\u304c\u71b1\u3044\u3067\u3059\u3002\u30ec\u30aa\u541b\u597d\u304d\u3059\u304e\u3066\u3064\u3089\u3044\u3067\u3059\u3002 \u539f\u4f5c\u65e2\u8aad\u306a\u306e\u3067\u30cd\u30bf\u30d0\u30ec\u767a\u8a00\u3042\u308a\u3002\u4eba\u4fee\u7f85\u3001\u30c0\u30f3\u30c6\u3001\u30a2\u30de\u30c6\u30e9\u30b9\u3068\u4eba\u5916\u304c\u5927\u597d\u304d\u3067\u3059\u3002 \u751f\u6daf\u30b9\u30bf\u30a4\u30ea\u30c3\u4e3b\u3002 \u8da3\u5473\u304c\u5408\u3044\u305d\u3046\u306a\u65b9\u306fF\/R\/B\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002 http:\/\/p.tl\/m\/18374","protected":false,"verified":false,"followers_count":1147,"friends_count":102,"listed_count":40,"favourites_count":2820,"statuses_count":4576,"created_at":"Thu May 05 10:44:15 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254777899\/org.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254777899\/org.jpg","profile_background_tile":false,"profile_link_color":"86D192","profile_sidebar_border_color":"D7F0C9","profile_sidebar_fill_color":"F9FDF7","profile_text_color":"9A8C65","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658268534896594946\/ryyawCa4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658268534896594946\/ryyawCa4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663656735756808192,"id_str":"663656735756808192","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXISPOUcAAwjMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXISPOUcAAwjMV.jpg","url":"https:\/\/t.co\/Ae34zMOOBh","display_url":"pic.twitter.com\/Ae34zMOOBh","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663656741373157376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663656735756808192,"id_str":"663656735756808192","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXISPOUcAAwjMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXISPOUcAAwjMV.jpg","url":"https:\/\/t.co\/Ae34zMOOBh","display_url":"pic.twitter.com\/Ae34zMOOBh","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663656741373157376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}},{"id":663656733445754880,"id_str":"663656733445754880","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXISGnUkAAHG-w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXISGnUkAAHG-w.jpg","url":"https:\/\/t.co\/Ae34zMOOBh","display_url":"pic.twitter.com\/Ae34zMOOBh","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663656741373157376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}},{"id":663656737434550272,"id_str":"663656737434550272","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXISVeUwAA4M0S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXISVeUwAA4M0S.jpg","url":"https:\/\/t.co\/Ae34zMOOBh","display_url":"pic.twitter.com\/Ae34zMOOBh","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663656741373157376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}},{"id":663656739284258816,"id_str":"663656739284258816","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIScXVEAAR94Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIScXVEAAR94Z.jpg","url":"https:\/\/t.co\/Ae34zMOOBh","display_url":"pic.twitter.com\/Ae34zMOOBh","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663656741373157376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8FfP8VXger","expanded_url":"https:\/\/twitter.com\/uruchi001\/status\/663656741373157376","display_url":"twitter.com\/uruchi001\/stat\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039142907904,"id_str":"663728039142907904","text":"@Quora My Zombie Survival Guide has been Updated. Twice as long, over 50 points. https:\/\/t.co\/3fyiBLw0b6 Some good for general survial too.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":33696409,"in_reply_to_user_id_str":"33696409","in_reply_to_screen_name":"Quora","user":{"id":191698424,"id_str":"191698424","name":"Ariel Williams","screen_name":"From_Ariel","location":"Arizona \/ USA","url":"http:\/\/www.quora.com\/Ariel-Williams","description":"Published writer on Gizmodo, BBC, Forbes, Slate, The Huffington Post, Nerdist, Thought Catalog and others.\n\n#Dreamer, #Writer, #Artist, #Nerd, #Geek and #Quora","protected":false,"verified":false,"followers_count":88,"friends_count":106,"listed_count":6,"favourites_count":24,"statuses_count":73,"created_at":"Fri Sep 17 03:09:29 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1E1E20","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503600984984018944\/vEMYju05.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503600984984018944\/vEMYju05.png","profile_background_tile":true,"profile_link_color":"4917B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9B877","profile_text_color":"6D7779","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503609606749163520\/wGmG21FC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503609606749163520\/wGmG21FC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191698424\/1426669996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3fyiBLw0b6","expanded_url":"http:\/\/qr.ae\/RwiT2T","display_url":"qr.ae\/RwiT2T","indices":[81,104]}],"user_mentions":[{"screen_name":"Quora","name":"Quora","id":33696409,"id_str":"33696409","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070659"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168077825,"id_str":"663728039168077825","text":"\u3086\u3063\u304f\u308a\u5bdd\u3066\u306d\ud83d\udc95\n\u3070\u3044\u3070\u30fc\u3044\uff01 ( @pnkgnkt \u3053\u3093\u3070\u3093\u307f\u3002 https:\/\/t.co\/qqxx23gytc )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253606272,"id_str":"3253606272","name":"\u2765\u2765\u83ef \u604b\u2710\u2621\/12.13\u65e5\u30c6\u30b9\u30c8","screen_name":"Kareren320","location":null,"url":null,"description":"\u2729\u7d75\u3092\u63cf\u304f\u306e\u304c\u597d\u304d\u3067\u3001\u4e3b\u306b\u30b3\u30d4\u30c3\u30af\u3067\u63cf\u3044\u3066\u307e\u3059\u266a\u2729\u3046\u307e\u308b\u3061\u3083\u3093\u3001\u30dd\u30e0\u30dd\u30e0\u30d7\u30ea\u30f3\u3001\u6587\u623f\u5177\u304c\u3059\u304d\u2764\ufe0e\u2729\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3067\u3059(*^^*\u309e\u30ea\u30e0\u3089\u308c\u308b\u3068\u60b2\u3057\u3044\u3067\u3059(TT)\u8a71\u3057\u304b\u3051\u3066\u304f\u308c\u308b\u3068\u3059\u3054\u304f\u559c\u3073\u307e\u3059\u266c\u30dd\u30a8\u30e0\u8f09\u305b\u3066\u308b\u65b9\u306e\u57a2\u3082\u3042\u308b\u306e\u3067\u3088\u304b\u3063\u305f\u3089!\u21d2(@kareren2003)","protected":false,"verified":false,"followers_count":81,"friends_count":80,"listed_count":7,"favourites_count":1689,"statuses_count":3764,"created_at":"Tue Jun 23 13:32:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663080570700730368\/oV6QjBgR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663080570700730368\/oV6QjBgR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253606272\/1445967193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qqxx23gytc","expanded_url":"http:\/\/cas.st\/cd36d8c","display_url":"cas.st\/cd36d8c","indices":[34,57]}],"user_mentions":[{"screen_name":"pnkgnkt","name":"panaki\u2661(12\u6708\u30af\u30ea\u30de\u4e21\u65e5)","id":1674324968,"id_str":"1674324968","indices":[18,26]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039163924480,"id_str":"663728039163924480","text":"Yikes...\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/gej6B4tEpN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":180879177,"id_str":"180879177","name":"#SorryMomImMovingOut","screen_name":"DeejayV3nom","location":"EAST ","url":"http:\/\/bit.ly\/1PJumBb","description":"Deejayv3nom@gmail.com || Snapchat: Deejayv3nom || Facebook: Deejay V3nom ||Soundcloud: Deejayv3nom || Instagram: @Deejayv3nom","protected":false,"verified":false,"followers_count":2159,"friends_count":898,"listed_count":7,"favourites_count":2776,"statuses_count":39250,"created_at":"Fri Aug 20 18:41:45 +0000 2010","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000059329125\/e9950a4ff0e8d5e6c0344b62b761d840.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000059329125\/e9950a4ff0e8d5e6c0344b62b761d840.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661997602922233856\/UjrKeKRi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661997602922233856\/UjrKeKRi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180879177\/1445592407","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727013623033856,"quoted_status_id_str":"663727013623033856","quoted_status":{"created_at":"Mon Nov 09 14:37:06 +0000 2015","id":663727013623033856,"id_str":"663727013623033856","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/rnZjUi5XgA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220072328,"id_str":"220072328","name":"#LashAffair","screen_name":"DJLash_T","location":"Everywhere!!!","url":"http:\/\/underConstruction.com","description":"Optimus Prime,Bumblebee, Ultra Magnus, Ratchet #LeaderOfTheAutobots #FantaOrange Addict djlash_t@icloud.com || Lash_T - Lash Affair Release date o2 october","protected":false,"verified":false,"followers_count":1058,"friends_count":657,"listed_count":6,"favourites_count":836,"statuses_count":22082,"created_at":"Fri Nov 26 18:06:33 +0000 2010","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657250950726438912\/D_QShyjx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657250950726438912\/D_QShyjx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220072328\/1398687972","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720630269947905,"quoted_status_id_str":"663720630269947905","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rnZjUi5XgA","expanded_url":"https:\/\/twitter.com\/real_lefranc\/status\/663720630269947905","display_url":"twitter.com\/real_lefranc\/s\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gej6B4tEpN","expanded_url":"https:\/\/twitter.com\/djlash_t\/status\/663727013623033856","display_url":"twitter.com\/djlash_t\/statu\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070664"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151411200,"id_str":"663728039151411200","text":"RT @hsan1235481: \u0636\u0627\u0642 \u062e\u0644\u0642\u064a \u0628\u062f\u0648\u0646\u0643 \u0648\u0642\u0644\u0628\u064a \u0623\u0634\u062a\u0627\u0642 \u0644\u062c\u0646\u0648\u0646\u0643 \u0648\u064a\u0646\u0643 \u064a\u0627 \u0628\u0639\u062f \u0647\u0644\u064a \u0645\u0627 \u062a\u0628\u064a \u0645\u062c\u0646\u0648\u0646\u0643 https:\/\/t.co\/QbsZG8r0TP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3647835678,"id_str":"3647835678","name":"\u2728\u0646\u0628\u0636 \u0627\u0644\u062c\u0646\u0648\u0628\u2728","screen_name":"roo7aljnop","location":null,"url":null,"description":"\u200f\n\n\u062a\u0628\u0642\u0649 \u0645\u0639\u064a \u060c\u060c\n \u0641\u064a \u062e\u0640\u0627\u0641\u0642\u064a \u060c\u060c\n \u062f\u0648\u0645 \u0645\u0648\u062c\u0640\u0648\u062f \u060c\u060c!!!\n\u062d\u062a\u0649 \u0648\u0644\u0648 \n\u0645\u0627\u0644\u0640\u064a \u0639\u0644\u0649 \u0634\u0640\u0648\u0641\u062a\u0643\u0640 ,, \u062d\u064a\u0644\u0640\u0647 ,,\n\u2764\ufe0f","protected":false,"verified":false,"followers_count":906,"friends_count":111,"listed_count":0,"favourites_count":531,"statuses_count":8906,"created_at":"Tue Sep 22 10:58:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661605934289068033\/ausWXSo6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661605934289068033\/ausWXSo6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3647835678\/1443707679","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 13:13:01 +0000 2015","id":661893917256892416,"id_str":"661893917256892416","text":"\u0636\u0627\u0642 \u062e\u0644\u0642\u064a \u0628\u062f\u0648\u0646\u0643 \u0648\u0642\u0644\u0628\u064a \u0623\u0634\u062a\u0627\u0642 \u0644\u062c\u0646\u0648\u0646\u0643 \u0648\u064a\u0646\u0643 \u064a\u0627 \u0628\u0639\u062f \u0647\u0644\u064a \u0645\u0627 \u062a\u0628\u064a \u0645\u062c\u0646\u0648\u0646\u0643 https:\/\/t.co\/QbsZG8r0TP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2272744927,"id_str":"2272744927","name":"\u2655\u063a\u0640\u0640\u0633\u0627\u0646 \u0628\u0646 \u0645\u062d\u0645\u062f \u26555\/5","screen_name":"hsan1235481","location":null,"url":null,"description":"\u062a\u0627\u0627\u0628\u0639\u0646\u064a \u0627\u062a\u0627\u0627\u0627\u0628\u0639\u0643 )\u062a\u062d\u0630\u0641\u0646\u064a \u0627\u062d\u0630\u0641\u0643 )\u0648\u0635\u0639\u0628\u0629 \u0627\u0633\u0643\u062a \u0648\u062a\u062d\u0633\u0628 \u0627\u0646\u064a \u0646\u0633\u064a\u062a\u0643 #\u0627\u0644\u062c\u0632\u064a\u0631\u0647","protected":false,"verified":false,"followers_count":22315,"friends_count":20948,"listed_count":10,"favourites_count":522,"statuses_count":32632,"created_at":"Thu Jan 02 09:05:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651365347740680192\/PcZQhv3S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651365347740680192\/PcZQhv3S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2272744927\/1446829982","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661893907333177344,"id_str":"661893907333177344","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","url":"https:\/\/t.co\/QbsZG8r0TP","display_url":"pic.twitter.com\/QbsZG8r0TP","expanded_url":"http:\/\/twitter.com\/hsan1235481\/status\/661893917256892416\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661893907333177344,"id_str":"661893907333177344","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","url":"https:\/\/t.co\/QbsZG8r0TP","display_url":"pic.twitter.com\/QbsZG8r0TP","expanded_url":"http:\/\/twitter.com\/hsan1235481\/status\/661893917256892416\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hsan1235481","name":"\u2655\u063a\u0640\u0640\u0633\u0627\u0646 \u0628\u0646 \u0645\u062d\u0645\u062f \u26555\/5","id":2272744927,"id_str":"2272744927","indices":[3,15]}],"symbols":[],"media":[{"id":661893907333177344,"id_str":"661893907333177344","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","url":"https:\/\/t.co\/QbsZG8r0TP","display_url":"pic.twitter.com\/QbsZG8r0TP","expanded_url":"http:\/\/twitter.com\/hsan1235481\/status\/661893917256892416\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}},"source_status_id":661893917256892416,"source_status_id_str":"661893917256892416","source_user_id":2272744927,"source_user_id_str":"2272744927"}]},"extended_entities":{"media":[{"id":661893907333177344,"id_str":"661893907333177344","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-FAHmW4AAx5ni.jpg","url":"https:\/\/t.co\/QbsZG8r0TP","display_url":"pic.twitter.com\/QbsZG8r0TP","expanded_url":"http:\/\/twitter.com\/hsan1235481\/status\/661893917256892416\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}},"source_status_id":661893917256892416,"source_status_id_str":"661893917256892416","source_user_id":2272744927,"source_user_id_str":"2272744927"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155535873,"id_str":"663728039155535873","text":"RT @Sawarinni: \u0e1a\u0e32\u0e07\u0e04\u0e19\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e21\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e01\u0e47\u0e44\u0e14\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513482474,"id_str":"3513482474","name":"thephanei","screen_name":"NTmalony","location":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":"My name's yuccies \n l'm17 year old\n\u270f","protected":false,"verified":false,"followers_count":7,"friends_count":162,"listed_count":0,"favourites_count":7,"statuses_count":1275,"created_at":"Thu Sep 10 08:24:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656927421048840192\/S74jvRBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656927421048840192\/S74jvRBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3513482474\/1445458235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 16:31:48 +0000 2015","id":660132003208036352,"id_str":"660132003208036352","text":"\u0e1a\u0e32\u0e07\u0e04\u0e19\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e40\u0e01\u0e34\u0e14\u0e21\u0e32\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35\u0e43\u0e04\u0e23\u0e01\u0e47\u0e44\u0e14\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":873067446,"id_str":"873067446","name":"\u0e2d\u0e32\u0e19\u0e32 .","screen_name":"Sawarinni","location":null,"url":"http:\/\/www.facebook.com\/superman.life","description":"unlucky in love | Instagram : fonnnni | sf\u2661","protected":false,"verified":false,"followers_count":421628,"friends_count":290,"listed_count":75,"favourites_count":14053,"statuses_count":39912,"created_at":"Thu Oct 11 05:50:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659457919864320001\/79UArX4R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659457919864320001\/79UArX4R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/873067446\/1443799320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7099,"favorite_count":844,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sawarinni","name":"\u0e2d\u0e32\u0e19\u0e32 .","id":873067446,"id_str":"873067446","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039138840576,"id_str":"663728039138840576","text":"Rajoy les ha llevado a Moncloa como corderitos...@Sanfuron @rosadiezupyd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727902043848704,"in_reply_to_status_id_str":"663727902043848704","in_reply_to_user_id":116271543,"in_reply_to_user_id_str":"116271543","in_reply_to_screen_name":"efrit1","user":{"id":116271543,"id_str":"116271543","name":"H. Romero efrit1#M\u00c9S","screen_name":"efrit1","location":"Espa\u00f1a- Galicia- Vigo","url":"http:\/\/movimientoeticosocial.es\/","description":"Todo depende de nosotros Everything depends on us, political insubordination.\r\n\r\n\u00bfEs tan dif\u00edcil de entender que soy Libre?","protected":false,"verified":false,"followers_count":10682,"friends_count":10893,"listed_count":73,"favourites_count":55761,"statuses_count":105090,"created_at":"Sun Feb 21 20:59:09 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500609311379185664\/bXTJtMWL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500609311379185664\/bXTJtMWL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116271543\/1365003609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sanfuron","name":"Santiago Ferrer","id":127814393,"id_str":"127814393","indices":[49,58]},{"screen_name":"rosadiezupyd","name":"Rosa D\u00edez","id":3018165370,"id_str":"3018165370","indices":[59,72]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080070658"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147126784,"id_str":"663728039147126784","text":"RT @tuyoooo3: \u3054\u5354\u529b\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u30fe(\uff61>\ufe4f<\uff61)\uff89\nhttps:\/\/t.co\/zokg6B5mOG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2458331318,"id_str":"2458331318","name":"\u30b0\u30c3\u30ba\u58f2\u8cb7\u2606","screen_name":"3jsbryuryu8","location":null,"url":null,"description":"\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3063\u305f\u65b9\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002\u3044\u3064\u3082RT\u3057\u3066\u304f\u3060\u3055\u308b\u65b9\u3068\u3053\u3061\u3089\u304c\u628a\u63e1\u3057\u305f\u65b9\u306e\u307f\u5168\u3066RT\u3057\u307e\u3059\u3002\u628a\u63e1\u3067\u304d\u308b\u307e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u57fa\u672c\u58f2\u8cb7\u3067\u3059\u304c\u3001\u4ea4\u63db\u306f\u9686\u81e3\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u300a\u3086\u3046\u3061\u3087\u632f\u8fbc\u306e\u307f\u300b\u300aRT\u5f8c\u30ea\u30d7\u300b\u300a\u304d\u3061\u3093\u3068\u6587\u9762\u3092\u8aad\u307e\u306a\u3044\u65b9\u306f\u30b9\u30eb\u30fc\u3057\u307e\u3059\u300b","protected":false,"verified":false,"followers_count":382,"friends_count":569,"listed_count":0,"favourites_count":819,"statuses_count":3324,"created_at":"Tue Apr 22 15:37:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458630938889424896\/oDolpOSb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458630938889424896\/oDolpOSb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 13:08:45 +0000 2015","id":661892840415342594,"id_str":"661892840415342594","text":"\u3054\u5354\u529b\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u30fe(\uff61>\ufe4f<\uff61)\uff89\nhttps:\/\/t.co\/zokg6B5mOG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3489128533,"id_str":"3489128533","name":"LDH\u53d6\u5f15\u5c02\u7528\u57a2.\uff61.:*\u2727","screen_name":"tuyoooo3","location":null,"url":null,"description":"\u30b0\u30c3\u30ba\/\u30c1\u30b1\u30c3\u30c8\u7b49\u306e\u53d6\u308a\u5f15\u304d\u5c02\u7528\u2606\u53d6\u5f15\u57a2\u306e\u65b9\u306f\u5fc5\u305a\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2764\ufe0e \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u2764\ufe0e\u62e1\u6563\u306e\u304a\u624b\u4f1d\u3044\u3057\u307e\u3059\u304c\u3001\u304a\u793c\u306e\u30ea\u30d7\u306f\u8981\u3089\u306a\u3044\u3067\u3059(\uff0a\u00b4\u3142`\uff0a) \u30103\u65e5\u4ee5\u5185\u306e\u3086\u3046\u3061\u3087\u5bfe\u5fdc\u51fa\u6765\u308b\u65b9 \u3011\u3010\u30e1\u30eb\u30ab\u30ea\u5bfe\u5fdc\u53ef\u3011\u3010\u53d6\u308a\u5f15\u304d\u7d42\u4e86\u6b21\u7b2c\u3001\u53d6\u5f15\u57a2\u4ee5\u5916\u306e\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u5916\u3055\u305b\u3066\u8cb0\u3046\u306e\u3067\u3054\u4e86\u627f\u4e0b\u3055\u3044\u3011","protected":false,"verified":false,"followers_count":64,"friends_count":58,"listed_count":0,"favourites_count":10,"statuses_count":848,"created_at":"Tue Sep 08 04:15:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641103262985224192\/AW266vLU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641103262985224192\/AW266vLU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3489128533\/1441735967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":661534344582856704,"quoted_status_id_str":"661534344582856704","quoted_status":{"created_at":"Tue Nov 03 13:24:13 +0000 2015","id":661534344582856704,"id_str":"661534344582856704","text":"\u2605\u62e1\u6563\u5e0c\u671b\u2605\n\nBP\u30b0\u30c3\u30ba\u304a\u8b72\u308a\u3057\u307e\u3059\u2757\ufe0f\n\n6\/20.21\u540d\u53e4\u5c4b\u516c\u6f14\u30c8\u30e9\u30c3\u30af\u7f36\u00a53000\u3067\u8003\u3048\u3066\u307e\u3059(\u204e\u02c3\u1d17\u02c2\u204e)\n\n\u307f\u306a\u3055\u307eRT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2757\ufe0f https:\/\/t.co\/lq08fJ7LXg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3489128533,"id_str":"3489128533","name":"LDH\u53d6\u5f15\u5c02\u7528\u57a2.\uff61.:*\u2727","screen_name":"tuyoooo3","location":null,"url":null,"description":"\u30b0\u30c3\u30ba\/\u30c1\u30b1\u30c3\u30c8\u7b49\u306e\u53d6\u308a\u5f15\u304d\u5c02\u7528\u2606\u53d6\u5f15\u57a2\u306e\u65b9\u306f\u5fc5\u305a\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2764\ufe0e \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u2764\ufe0e\u62e1\u6563\u306e\u304a\u624b\u4f1d\u3044\u3057\u307e\u3059\u304c\u3001\u304a\u793c\u306e\u30ea\u30d7\u306f\u8981\u3089\u306a\u3044\u3067\u3059(\uff0a\u00b4\u3142`\uff0a) \u30103\u65e5\u4ee5\u5185\u306e\u3086\u3046\u3061\u3087\u5bfe\u5fdc\u51fa\u6765\u308b\u65b9 \u3011\u3010\u30e1\u30eb\u30ab\u30ea\u5bfe\u5fdc\u53ef\u3011\u3010\u53d6\u308a\u5f15\u304d\u7d42\u4e86\u6b21\u7b2c\u3001\u53d6\u5f15\u57a2\u4ee5\u5916\u306e\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u5916\u3055\u305b\u3066\u8cb0\u3046\u306e\u3067\u3054\u4e86\u627f\u4e0b\u3055\u3044\u3011","protected":false,"verified":false,"followers_count":64,"friends_count":58,"listed_count":0,"favourites_count":10,"statuses_count":848,"created_at":"Tue Sep 08 04:15:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641103262985224192\/AW266vLU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641103262985224192\/AW266vLU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3489128533\/1441735967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661534337259560960,"id_str":"661534337259560960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CS49-YsUYAAniRO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS49-YsUYAAniRO.jpg","url":"https:\/\/t.co\/lq08fJ7LXg","display_url":"pic.twitter.com\/lq08fJ7LXg","expanded_url":"http:\/\/twitter.com\/tuyoooo3\/status\/661534344582856704\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661534337259560960,"id_str":"661534337259560960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CS49-YsUYAAniRO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS49-YsUYAAniRO.jpg","url":"https:\/\/t.co\/lq08fJ7LXg","display_url":"pic.twitter.com\/lq08fJ7LXg","expanded_url":"http:\/\/twitter.com\/tuyoooo3\/status\/661534344582856704\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zokg6B5mOG","expanded_url":"https:\/\/twitter.com\/tuyoooo3\/status\/661534344582856704","display_url":"twitter.com\/tuyoooo3\/statu\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zokg6B5mOG","expanded_url":"https:\/\/twitter.com\/tuyoooo3\/status\/661534344582856704","display_url":"twitter.com\/tuyoooo3\/statu\u2026","indices":[43,66]}],"user_mentions":[{"screen_name":"tuyoooo3","name":"LDH\u53d6\u5f15\u5c02\u7528\u57a2.\uff61.:*\u2727","id":3489128533,"id_str":"3489128533","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070660"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151276033,"id_str":"663728039151276033","text":"Courtney Lynne Elizabeth Sarah Handlovitch https:\/\/t.co\/UTwpjceInF","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37916158,"id_str":"37916158","name":"kelly handlovitch","screen_name":"kellyrella691","location":"Pittsburgh PA","url":null,"description":"mom of 2 beautiful girls 1 at Penn State and one in HS.Artist and photographer Tatto artist.Love Metal and Alternative and Punk. Hockey lvr\r\n *Burgh Verified*","protected":false,"verified":false,"followers_count":856,"friends_count":1961,"listed_count":33,"favourites_count":45,"statuses_count":22020,"created_at":"Tue May 05 12:49:50 +0000 2009","utc_offset":-18000,"time_zone":"America\/New_York","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430165316828946432\/Jxww-bir_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430165316828946432\/Jxww-bir_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UTwpjceInF","expanded_url":"http:\/\/fb.me\/6WsKgchOs","display_url":"fb.me\/6WsKgchOs","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151337476,"id_str":"663728039151337476","text":"RT @TheJustinStyle: Justin and Ellen relationship is amazing \n\nRetweet to vote @justinbieber Collaboration of the Year #AMAs https:\/\/t.co\/j\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251481801,"id_str":"251481801","name":"Therese Ann David","screen_name":"supperauhl","location":"Republic of the Philippines","url":null,"description":"I'm inlove with @justinbieber","protected":false,"verified":false,"followers_count":939,"friends_count":724,"listed_count":4,"favourites_count":2578,"statuses_count":2177,"created_at":"Sun Feb 13 06:35:23 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608488951100219392\/W0Uz-LXL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608488951100219392\/W0Uz-LXL.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661030186993909760\/U2iAVfva_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661030186993909760\/U2iAVfva_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251481801\/1446394202","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:08 +0000 2015","id":663727022972248064,"id_str":"663727022972248064","text":"Justin and Ellen relationship is amazing \n\nRetweet to vote @justinbieber Collaboration of the Year #AMAs https:\/\/t.co\/juAy2ULhxL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1851877784,"id_str":"1851877784","name":"Justin Bieber Crew","screen_name":"TheJustinStyle","location":"Instagram:BieberBestPictures","url":"https:\/\/instagram.com\/bieberbestpictures\/","description":"If you don't like Justin Bieber, there is no reason for you to be on my account. The biggest pleasure in life is doing what people say you can't do","protected":false,"verified":false,"followers_count":145522,"friends_count":95084,"listed_count":383,"favourites_count":1552,"statuses_count":9761,"created_at":"Tue Sep 10 16:04:01 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"B1B4B5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431811046643204096\/gNv_dvAP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431811046643204096\/gNv_dvAP.jpeg","profile_background_tile":false,"profile_link_color":"A6ACAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451226533429252097\/TrdWfAcW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451226533429252097\/TrdWfAcW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1851877784\/1402864584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":167,"favorite_count":66,"entities":{"hashtags":[{"text":"AMAs","indices":[99,104]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[59,72]}],"symbols":[],"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}}},{"id":663727021785284608,"id_str":"663727021785284608","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":406,"resize":"fit"},"large":{"w":600,"h":406,"resize":"fit"},"small":{"w":340,"h":230,"resize":"fit"}}},{"id":663727021604909057,"id_str":"663727021604909057","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663727021822996480,"id_str":"663727021822996480","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":505,"resize":"fit"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":599,"h":505,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[119,124]}],"urls":[],"user_mentions":[{"screen_name":"TheJustinStyle","name":"Justin Bieber Crew","id":1851877784,"id_str":"1851877784","indices":[3,18]},{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[79,92]}],"symbols":[],"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"}]},"extended_entities":{"media":[{"id":663727020917047296,"id_str":"663727020917047296","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINX2WwAAF83v.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":416,"resize":"fit"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021785284608,"id_str":"663727021785284608","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbFXAAARE0C.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":406,"resize":"fit"},"large":{"w":600,"h":406,"resize":"fit"},"small":{"w":340,"h":230,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021604909057,"id_str":"663727021604909057","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINaaWsAEm2PZ.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"},{"id":663727021822996480,"id_str":"663727021822996480","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYINbOWcAAseYB.jpg","url":"https:\/\/t.co\/juAy2ULhxL","display_url":"pic.twitter.com\/juAy2ULhxL","expanded_url":"http:\/\/twitter.com\/TheJustinStyle\/status\/663727022972248064\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":505,"resize":"fit"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":599,"h":505,"resize":"fit"}},"source_status_id":663727022972248064,"source_status_id_str":"663727022972248064","source_user_id":1851877784,"source_user_id_str":"1851877784"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151448064,"id_str":"663728039151448064","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/dzq6fr3jn2","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2318938965,"id_str":"2318938965","name":"\u062d\u0633\u0627\u0628 \u0644\u0647 \u0641\u064a \u0642\u0628\u0631\u0647","screen_name":"n_a_12396","location":null,"url":null,"description":"\u0633\u0627\u0639\u062f\u0648\u0646\u064a \u0628\u0646\u0634\u0631 \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0644\u064a\u0635\u0644\u0647 \u0627\u0644\u0627\u062c\u0631 \u0648\u0627\u0644\u0635\u062f\u062f\u0642\u0647 \u0628\u0642\u0628\u0631\u0647 \u0648\u0644\u0643\u0645 \u0627\u062c\u0631 \u0648\u0641\u0642\u0643\u0645 \u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":25,"friends_count":59,"listed_count":0,"favourites_count":0,"statuses_count":7075,"created_at":"Sat Feb 01 23:08:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dzq6fr3jn2","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080070661"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172272128,"id_str":"663728039172272128","text":"@yachanNC https:\/\/t.co\/fic2Ri01TQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727651387912192,"in_reply_to_status_id_str":"663727651387912192","in_reply_to_user_id":1966451142,"in_reply_to_user_id_str":"1966451142","in_reply_to_screen_name":"yachanNC","user":{"id":2394522917,"id_str":"2394522917","name":"Mochi *\u2732\uff9f*","screen_name":"EmpressMochi","location":"in a shoujo manga","url":"http:\/\/smule.com\/Mochitan_","description":"\u300eNOR \/ ENG \/ JAP\u300fO K! || LoL: Empress Mochi || Skype: Sagulcorn ||","protected":false,"verified":false,"followers_count":125,"friends_count":385,"listed_count":0,"favourites_count":2468,"statuses_count":3115,"created_at":"Sat Mar 08 18:21:08 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652417424168349696\/MuxOyeV8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652417424168349696\/MuxOyeV8.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663464657794031616\/SMYQ-UT4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663464657794031616\/SMYQ-UT4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2394522917\/1447017276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fic2Ri01TQ","expanded_url":"https:\/\/www.youtube.com\/channel\/UCSedwLXt5oMYMgTI5uJXzmg","display_url":"youtube.com\/channel\/UCSedw\u2026","indices":[10,33]}],"user_mentions":[{"screen_name":"yachanNC","name":"\u3084\u3084\u3061\u3083\u3093","id":1966451142,"id_str":"1966451142","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039163904000,"id_str":"663728039163904000","text":"#cash Legit Paid Online Surveys: Instantly get paid cash & rewards by filling out quick and easy online surveys! https:\/\/t.co\/tSA9UCXiQ6","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2385187615,"id_str":"2385187615","name":"Ewen Chia","screen_name":"ChayaGarbarini","location":null,"url":"http:\/\/fastestonlineincome.com\/ezyincome","description":"Fastest, Easiest And Laziest Way To Massive Cash Online!","protected":false,"verified":false,"followers_count":537,"friends_count":22,"listed_count":79,"favourites_count":95,"statuses_count":119848,"created_at":"Wed Mar 12 12:27:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0000FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447960174259482624\/H1Uls2e5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447960174259482624\/H1Uls2e5.jpeg","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453104249551876097\/XEvWpyGt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453104249551876097\/XEvWpyGt_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cash","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/tSA9UCXiQ6","expanded_url":"http:\/\/dlvr.it\/ChfZDp","display_url":"dlvr.it\/ChfZDp","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070664"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168077824,"id_str":"663728039168077824","text":"RT @3Xtraders: Looks like a little shakeout in Oil https:\/\/t.co\/bgeRmc6vy5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1496571684,"id_str":"1496571684","name":"Joe Ortiz","screen_name":"SmokenJoe1973","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":17,"listed_count":4,"favourites_count":5798,"statuses_count":1751,"created_at":"Sun Jun 09 20:53:32 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466405368348672000\/creo2xqr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466405368348672000\/creo2xqr_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:51 +0000 2015","id":663727959115599872,"id_str":"663727959115599872","text":"Looks like a little shakeout in Oil https:\/\/t.co\/bgeRmc6vy5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171919007,"id_str":"171919007","name":"Anthony Allyn","screen_name":"3Xtraders","location":"Chicago burbs ","url":"http:\/\/3xtraders.com","description":"American, Christian, Market Analyst, blogger\r\nHall of Fame Author @ http:\/\/stockcharts.com","protected":false,"verified":false,"followers_count":910,"friends_count":168,"listed_count":81,"favourites_count":504,"statuses_count":51510,"created_at":"Wed Jul 28 13:55:14 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585612239\/71xmpdbpp1887zaad3n1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585612239\/71xmpdbpp1887zaad3n1.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000050221344\/437c7a9d9f4df68041f0d4fc78570c83_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000050221344\/437c7a9d9f4df68041f0d4fc78570c83_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171919007\/1353354638","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727957316206592,"id_str":"663727957316206592","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","url":"https:\/\/t.co\/bgeRmc6vy5","display_url":"pic.twitter.com\/bgeRmc6vy5","expanded_url":"http:\/\/twitter.com\/3Xtraders\/status\/663727959115599872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":312,"resize":"fit"},"large":{"w":900,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727957316206592,"id_str":"663727957316206592","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","url":"https:\/\/t.co\/bgeRmc6vy5","display_url":"pic.twitter.com\/bgeRmc6vy5","expanded_url":"http:\/\/twitter.com\/3Xtraders\/status\/663727959115599872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":312,"resize":"fit"},"large":{"w":900,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3Xtraders","name":"Anthony Allyn","id":171919007,"id_str":"171919007","indices":[3,13]}],"symbols":[],"media":[{"id":663727957316206592,"id_str":"663727957316206592","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","url":"https:\/\/t.co\/bgeRmc6vy5","display_url":"pic.twitter.com\/bgeRmc6vy5","expanded_url":"http:\/\/twitter.com\/3Xtraders\/status\/663727959115599872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":312,"resize":"fit"},"large":{"w":900,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727959115599872,"source_status_id_str":"663727959115599872","source_user_id":171919007,"source_user_id_str":"171919007"}]},"extended_entities":{"media":[{"id":663727957316206592,"id_str":"663727957316206592","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJD4NUAAAvcYK.png","url":"https:\/\/t.co\/bgeRmc6vy5","display_url":"pic.twitter.com\/bgeRmc6vy5","expanded_url":"http:\/\/twitter.com\/3Xtraders\/status\/663727959115599872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":312,"resize":"fit"},"large":{"w":900,"h":469,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727959115599872,"source_status_id_str":"663727959115599872","source_user_id":171919007,"source_user_id_str":"171919007"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168073728,"id_str":"663728039168073728","text":"RT @so_suyakiika: \u3010\u4ea4\u63db\u3011\u30d6\u30e9\u30b3\u30f3 \u30a2\u30c9\u30a2\u30fc\u30ba \u30b3\u30e9\u30dc \u30d0\u30c3\u30c1\n\u8b72\u2192\u5f25\n\u6c42\u2192\u30b8\u30e5\u30ea\uff08\u30de\u30ea\u30f3\u3067\u3082OK\u3067\u3059\uff09\n\u90f5\u9001\u306e\u307f\n\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\n\u672c\u547d\u306e\u65b9\u3067\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\n@bc_torihiki https:\/\/t.co\/DGwU2tAT3f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2334312739,"id_str":"2334312739","name":"\u30d6\u30e9\u30b3\u30f3 \u53d6\u5f15bot","screen_name":"bc_torihiki","location":null,"url":"http:\/\/twpf.jp\/bc_torihiki","description":"\u30d6\u30e9\u30b3\u30f3\u306e\u30b0\u30c3\u30ba\u304a\u53d6\u5f15\u3092\u30b5\u30dd\u30fc\u30c8\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u306e\u307fRT\u3002\u6b64\u65b9\u304b\u3089\u306e\u30d5\u30a9\u30ed\u30fc\u304c\u5b8c\u4e86\u3057\u3066\u304b\u3089\u30ea\u30d7\u30e9\u30a4\u3092\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002 \u8a73\u7d30\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3092 \u5fc5\u305a \u3054\u89a7\u4e0b\u3055\u3044\u3002\u8aad\u3093\u3067\u306a\u3044\u3068\u601d\u308f\u308c\u308b\u65b9\u306e\u30c4\u30a4\u30fc\u30c8\u306fRT\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":1497,"friends_count":1623,"listed_count":39,"favourites_count":0,"statuses_count":17089,"created_at":"Sun Feb 09 00:58:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433977386518847489\/jYs-DKjr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433977386518847489\/jYs-DKjr_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:17:54 +0000 2015","id":663676885012877312,"id_str":"663676885012877312","text":"\u3010\u4ea4\u63db\u3011\u30d6\u30e9\u30b3\u30f3 \u30a2\u30c9\u30a2\u30fc\u30ba \u30b3\u30e9\u30dc \u30d0\u30c3\u30c1\n\u8b72\u2192\u5f25\n\u6c42\u2192\u30b8\u30e5\u30ea\uff08\u30de\u30ea\u30f3\u3067\u3082OK\u3067\u3059\uff09\n\u90f5\u9001\u306e\u307f\n\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\n\u672c\u547d\u306e\u65b9\u3067\u304a\u9858\u3044\u3044\u305f\u3057\u307e\u3059\n@bc_torihiki https:\/\/t.co\/DGwU2tAT3f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2524958628,"id_str":"2524958628","name":"\u68d2\u5bd2\u5929@10\u6708\uff5e\uff12\u6708\u307e\u3067\u571f\u65e5\u306e\u307f","screen_name":"so_suyakiika","location":"\u793e\u755c\u4f4f\u307e\u3044\u3010\u6210\u5e74\u6e08\u3011","url":"http:\/\/twpf.jp\/so_suyakiika","description":"10\u6708\uff5e\u6765\u5e74\uff12\u6708\u307e\u3067\u4ed5\u4e8b\u306e\u95a2\u4fc2\u3067\u571f\u65e5\u306e\u307f\u306e\u767a\u9001\u632f\u308a\u8fbc\u307f\u306b\u306a\u308a\u307e\u3059\u3002\u5927\u5909\u3054\u8ff7\u60d1\u304a\u304b\u3051\u3057\u307e\u3059\u3002DM\u306f\u6570\u65e5\u5f8c\u524a\u9664\u3057\u307e\u3059\u3002\u53d6\u5f15\u7d42\u4e86\u5f8c\u306e\u30d5\u30a9\u30ed\u30fc\u7d99\u7d9a\u306f\u304a\u4efb\u305b\u3057\u307e\u3059\u3002\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u2192\u30d6\u30ed\u30c3\u30af\u89e3\u9664\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u30c4\u30a4\u30d5\u30a3\u5fc5\u8aad\u3067\u3059\u3002\u3046\u305f\u3077\u308a\u30ec\u30f3\uff08\u53cb\u4eba\u4ee3\u7406\u862d\u4e38\u90a3\u6708\uff09\u30d6\u30e9\u30b3\u30f3\uff08\u30b8\u30e5\u30ea\uff09\u30a4\u30b1\u30b7\u30ea\uff08\u590f\u6d25\u30bc\u30ce\uff09\u3068\u304d\u30ec\u30b9\uff08\u97f3\u7fbd\u4eac\u4e5f\uff09","protected":false,"verified":false,"followers_count":356,"friends_count":346,"listed_count":4,"favourites_count":908,"statuses_count":22107,"created_at":"Mon May 26 12:51:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596990079307894784\/qkWbc5Qm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596990079307894784\/qkWbc5Qm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2524958628\/1444441951","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bc_torihiki","name":"\u30d6\u30e9\u30b3\u30f3 \u53d6\u5f15bot","id":2334312739,"id_str":"2334312739","indices":[70,82]}],"symbols":[],"media":[{"id":663676443054895104,"id_str":"663676443054895104","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","url":"https:\/\/t.co\/DGwU2tAT3f","display_url":"pic.twitter.com\/DGwU2tAT3f","expanded_url":"http:\/\/twitter.com\/so_suyakiika\/status\/663676885012877312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663676443054895104,"id_str":"663676443054895104","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","url":"https:\/\/t.co\/DGwU2tAT3f","display_url":"pic.twitter.com\/DGwU2tAT3f","expanded_url":"http:\/\/twitter.com\/so_suyakiika\/status\/663676885012877312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"so_suyakiika","name":"\u68d2\u5bd2\u5929@10\u6708\uff5e\uff12\u6708\u307e\u3067\u571f\u65e5\u306e\u307f","id":2524958628,"id_str":"2524958628","indices":[3,16]},{"screen_name":"bc_torihiki","name":"\u30d6\u30e9\u30b3\u30f3 \u53d6\u5f15bot","id":2334312739,"id_str":"2334312739","indices":[88,100]}],"symbols":[],"media":[{"id":663676443054895104,"id_str":"663676443054895104","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","url":"https:\/\/t.co\/DGwU2tAT3f","display_url":"pic.twitter.com\/DGwU2tAT3f","expanded_url":"http:\/\/twitter.com\/so_suyakiika\/status\/663676885012877312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663676885012877312,"source_status_id_str":"663676885012877312","source_user_id":2524958628,"source_user_id_str":"2524958628"}]},"extended_entities":{"media":[{"id":663676443054895104,"id_str":"663676443054895104","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXaNWoU8AAEkLK.jpg","url":"https:\/\/t.co\/DGwU2tAT3f","display_url":"pic.twitter.com\/DGwU2tAT3f","expanded_url":"http:\/\/twitter.com\/so_suyakiika\/status\/663676885012877312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663676885012877312,"source_status_id_str":"663676885012877312","source_user_id":2524958628,"source_user_id_str":"2524958628"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168053248,"id_str":"663728039168053248","text":"@BiaraTheBoss lol dude Goodmorning tho and thanks Ima ball out fasho \ud83d\udc4c\ud83c\udffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663700625377509376,"in_reply_to_status_id_str":"663700625377509376","in_reply_to_user_id":3291733902,"in_reply_to_user_id_str":"3291733902","in_reply_to_screen_name":"BiaraTheBoss","user":{"id":311825262,"id_str":"311825262","name":"Keyah Beyah","screen_name":"KeyahCrave_Lele","location":"Gods Hands","url":null,"description":"RIP Marquail D.T Thomas .NPCC PG\/SG #34 . Kalia Marie \u2764\ufe0f T'Keyah Marie","protected":false,"verified":false,"followers_count":1668,"friends_count":1166,"listed_count":3,"favourites_count":1034,"statuses_count":86975,"created_at":"Mon Jun 06 03:46:18 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448567338\/State_champ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448567338\/State_champ.jpg","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545392127041536\/TROCKzcH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545392127041536\/TROCKzcH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311825262\/1446692753","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BiaraTheBoss","name":"BT","id":3291733902,"id_str":"3291733902","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039159660544,"id_str":"663728039159660544","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/Z0GTr0QIl3","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":172876067,"id_str":"172876067","name":"lashai Whitlock","screen_name":"lashai_whitlock","location":"washington, pa","url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":100,"listed_count":1,"favourites_count":41,"statuses_count":1442,"created_at":"Fri Jul 30 20:58:23 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/413464303518629888\/izACY8f3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/413464303518629888\/izACY8f3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/172876067\/1387412600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z0GTr0QIl3","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070663"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172304896,"id_str":"663728039172304896","text":"You might not realize there are conflicts brewing on the home ... More for Cancer https:\/\/t.co\/0SARIrN3we","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":766384249,"id_str":"766384249","name":"\u20ac\u00a3\u00a5","screen_name":"AndrewRestrepo1","location":null,"url":"https:\/\/www.tumblr.com\/blog\/andreweatsass","description":"thats a damn shame","protected":false,"verified":false,"followers_count":677,"friends_count":684,"listed_count":1,"favourites_count":8904,"statuses_count":15847,"created_at":"Sat Aug 18 21:05:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121010","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067724436\/d39511ecf238f6f68fec62ae87d160cb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067724436\/d39511ecf238f6f68fec62ae87d160cb.jpeg","profile_background_tile":true,"profile_link_color":"C0DEED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648334339978194944\/oL5pMMJo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648334339978194944\/oL5pMMJo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/766384249\/1441761617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0SARIrN3we","expanded_url":"http:\/\/bit.ly\/yk3b9m","display_url":"bit.ly\/yk3b9m","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039172423680,"id_str":"663728039172423680","text":"RT @UnniArcieLee: What's the reason why #CALLMEBABY is trending rn? \ud83d\ude31","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179958932,"id_str":"4179958932","name":"Hanyenphan","screen_name":"Baekie32","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":14,"created_at":"Mon Nov 09 14:22:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723986245693440\/VSPhRcQo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723986245693440\/VSPhRcQo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:46 +0000 2015","id":663725924794298368,"id_str":"663725924794298368","text":"What's the reason why #CALLMEBABY is trending rn? \ud83d\ude31","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1218833173,"id_str":"1218833173","name":"Arcee\u3139y\u3134","screen_name":"UnniArcieLee","location":"Philippines","url":"https:\/\/www.facebook.com\/ArceelynJulietD.Naluz","description":"Please Lord allow me to attend the #EXOluXioninManila this coming 160123. And be part of silver ocean.","protected":false,"verified":false,"followers_count":10200,"friends_count":6063,"listed_count":8,"favourites_count":5198,"statuses_count":59854,"created_at":"Mon Feb 25 14:37:33 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9426D4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554643552806785025\/CitFcCgD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554643552806785025\/CitFcCgD.jpeg","profile_background_tile":true,"profile_link_color":"DB236D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659716370360242176\/uMf9cEVg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659716370360242176\/uMf9cEVg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1218833173\/1445231342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[22,33]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[40,51]}],"urls":[],"user_mentions":[{"screen_name":"UnniArcieLee","name":"Arcee\u3139y\u3134","id":1218833173,"id_str":"1218833173","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070666"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039155535872,"id_str":"663728039155535872","text":"@pad_riyo_1224 \n\u304b\u305a\u3084\u304f\u3093\u30e1\u30e2\u2190\u306f\u3058\u3081\u3066(*\u0e05\u00b4\u03c9`\u0e05*)\n\n\u76ee\u6a19\n\n\u95c7\u8efd\u6e1b\uff11\uff10\u500b\n\n\u660e\u667a\u3055\u3093\u306e\u30b9\u30ad\u30e9\u30b2\u6c17\u5408\u3044\u3067\u3084\u308a\u9042\u3052\u308b(\u0e51\u2022\u0300\u3142\u2022\u0301)\u0648\u2727\n\n08\u6765\u308b\u306a\u3089\u6765\u3044\u30b9\u30ad\u30eb\u30de\u306b\u3057\u3066\u3084\u308b(\u0e51\u2022\u0300\u3142\u2022\u0301)\u0648\u2727","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723055244378112,"in_reply_to_status_id_str":"663723055244378112","in_reply_to_user_id":3308419052,"in_reply_to_user_id_str":"3308419052","in_reply_to_screen_name":"pad_riyo_1224","user":{"id":2335226412,"id_str":"2335226412","name":"\u304b\u305a\u3084MT1B\u3010\u895f\u3002\u516c\u8a8d\u89aa\u885b\u968a \u968a\u9577\u3011","screen_name":"kazu_tomo_omo","location":"15\/9\/10 \u3044\u306a\u304b\u3063\u307a fam(\u0e51\u2032\u15e8\u2035\u0e51)\u0a6d","url":null,"description":"\u3010\u30b8\u30df\u301c\u516c\u8a8d\u2726\u895f\u3002\u516c\u8a8d\u89aa\u885b\u968a \u968a\u9577\u3011\u307e\u3063\u305f\u308a\u30a4\u30af\u30e1\u30f3 \u30d1\u30d1\u30c9\u30e9\u30fc \u30e9\u30f3\u30af650\u2191\u7d20\u6575\u306a\u4ef2\u826f\u3057\u3055\u3093\u306b\u652f\u3048\u3089\u308c\u65e5\u3005\u30d1\u30ba\u30c9\u30e9\u9811\u5f35\u3063\u3066\u307e\u3059\u2661 15\/7\/5\u895f\u3055\u3093\u3088\u308a\u516c\u8a8d\u8cdc\u308b 9\/6 \u895f\u3002\u516c\u8a8d\u89aa\u885b\u968a \u968a\u9577\u5c31\u4efb 15\/7\/9\u30b8\u30df\u301c\u3055\u3093\u3088\u308a\u516c\u8a8d\u8cdc\u308b\u3002","protected":false,"verified":false,"followers_count":569,"friends_count":147,"listed_count":14,"favourites_count":88,"statuses_count":11696,"created_at":"Sun Feb 09 14:52:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657572761917784064\/RO75Dhsx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657572761917784064\/RO75Dhsx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335226412\/1441518143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pad_riyo_1224","name":"\u25e1\u0308\u2661\u308a\u3088\u306b\u3083\u3086\u732b\u2661\u1d55\u0308*RPO\u25df\u0306\u25de\u0306","id":3308419052,"id_str":"3308419052","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070662"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039163904001,"id_str":"663728039163904001","text":"https:\/\/t.co\/5wcxCcPHAI: How about some candy to start off your week? Loves Candy!!","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1470466610,"id_str":"1470466610","name":"Sexy Instagramers","screen_name":"sexyinstagramer","location":"A Library In Cali","url":"http:\/\/sexyinstagramer.tumblr.com\/","description":"A Website Dedicated To The Sexy Ladies That Post On Instagram, with Love! \u2764 \u2716 \u26ab \u2716 \u2764","protected":false,"verified":false,"followers_count":922,"friends_count":4,"listed_count":61,"favourites_count":0,"statuses_count":678045,"created_at":"Thu May 30 19:16:32 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFE0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/882154272\/0940fef5c31f4019d6d6ac2426c5399e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/882154272\/0940fef5c31f4019d6d6ac2426c5399e.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3734072430\/c46771ea05318b20790d349ce380be80_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3734072430\/c46771ea05318b20790d349ce380be80_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5wcxCcPHAI","expanded_url":"http:\/\/tiny.cc\/tubechellydev","display_url":"tiny.cc\/tubechellydev","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070664"} +{"delete":{"status":{"id":663727586158202881,"id_str":"663727586158202881","user_id":4047242728,"user_id_str":"4047242728"},"timestamp_ms":"1447080070852"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168229376,"id_str":"663728039168229376","text":"\u0642\u062d\u0628\u0647 \u0645\u063a\u0631\u0628\u064a\u0647 \u0645\u0639 \u0627\u062a\u0646\u064a\u0646 \u0631\u062c\u0627\u0644 \u0628\u0627\u0644\u0641\u0646\u062f\u0642 \u0646\u064a\u0643 \u0645\u0632\u062f\u0648\u062c \u064a\u062c\u0646\u0646 \u0631\u0627\u0628\u0637 \u0627\u0644\u0641\u0644\u0645\nhttps:\/\/t.co\/KyclsKu4lL","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4070522307,"id_str":"4070522307","name":"\u0634\u0631\u0645\u0648\u0637\u0629 \u0627\u0644\u0631\u064a\u0627\u0636","screen_name":"has08504","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":142,"friends_count":539,"listed_count":0,"favourites_count":0,"statuses_count":3425,"created_at":"Thu Oct 29 21:36:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660527005209747456\/Id9-9LUU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660527005209747456\/Id9-9LUU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KyclsKu4lL","expanded_url":"http:\/\/goo.gl\/mkk0cE","display_url":"goo.gl\/mkk0cE","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039159660545,"id_str":"663728039159660545","text":"\u660e\u65e51\u8b1b\u306e\u6642\u9593\u306b\u884c\u304f\u306e\u5acc\u3060\u5acc\u3060\u3041\u301c\u301c\u3001\u30d4\u30a2\u30ce\u7d42\u308f\u3063\u3066\u304b\u3089\u5e30\u308c\u306a\u3044\u306e\u3082\u5acc\u3060\u5acc\u3060\u301c\u301c\u306a\u3093\u3067\u5fc3\u7406\u5b66\u3068\u3063\u305f\u306e\u697d\u3057\u3044\u3057\u597d\u304d\u3060\u304b\u3089\u826f\u3044\u306e\u306b\u304f\u3063\u305d\u3001\u308f\u3056\u308f\u3056\u4eca\u9031\u306b\u3076\u3064\u3051\u3093\u3067\u3082\u3061\u304f\u3057\u3087\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008587485,"id_str":"1008587485","name":"\u3086\u3044\u3066\u304d","screen_name":"HornboneQoo","location":null,"url":null,"description":"SIT17th R1 \u304f\u30fc\u3061\u3083\u3093 \u2192\u85e4\u5973\u5b50\u4fdd\u80b2 HUWO \u30e1\u30a4 \u30c8\u30ed\u30f3\u30dc\u30fc\u30f3 \/ TAMOSA \/ Superconnection","protected":false,"verified":false,"followers_count":369,"friends_count":328,"listed_count":2,"favourites_count":1629,"statuses_count":15259,"created_at":"Thu Dec 13 11:20:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660997888760152064\/NqyKpOZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660997888760152064\/NqyKpOZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008587485\/1446168432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080070663"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168094208,"id_str":"663728039168094208","text":"@Clfynnn ha?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721740531462144,"in_reply_to_status_id_str":"663721740531462144","in_reply_to_user_id":553325933,"in_reply_to_user_id_str":"553325933","in_reply_to_screen_name":"Clfynnn","user":{"id":1540551548,"id_str":"1540551548","name":"J M G","screen_name":"JhzmnGuillen","location":"Makati City","url":null,"description":"I\u2019m in love with you, and all of your little things. \u2764\nJC","protected":false,"verified":false,"followers_count":419,"friends_count":423,"listed_count":0,"favourites_count":197,"statuses_count":1576,"created_at":"Sun Jun 23 09:22:35 +0000 2013","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653589602805026816\/h1DRX9Fk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653589602805026816\/h1DRX9Fk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1540551548\/1446454839","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"017a4afa29d71c65","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/017a4afa29d71c65.json","place_type":"city","name":"Makati City","full_name":"Makati City, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.998880,14.513482],[120.998880,14.579517],[121.067544,14.579517],[121.067544,14.513482]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Clfynnn","name":"Clay","id":553325933,"id_str":"553325933","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070665"} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039168114688,"id_str":"663728039168114688","text":"Mi6 https:\/\/t.co\/FOqIctAklr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116635335,"id_str":"116635335","name":"NN.","screen_name":"MoeZakcaAlwie","location":"Jawa Timur, Indonesia.","url":"http:\/\/moezakcaalwie.blogspot.com","description":"belum jelas. :)","protected":false,"verified":false,"followers_count":417,"friends_count":226,"listed_count":3,"favourites_count":149,"statuses_count":13545,"created_at":"Tue Feb 23 04:14:04 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/204812563\/batik1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/204812563\/batik1.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"292924","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633300897179631616\/o_ZsXcmr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633300897179631616\/o_ZsXcmr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116635335\/1412515758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663722548526387200,"quoted_status_id_str":"663722548526387200","quoted_status":{"created_at":"Mon Nov 09 14:19:21 +0000 2015","id":663722548526387200,"id_str":"663722548526387200","text":"saran ni > @yossarianmw @DroidIndonesia pilih zenfone 3 atau mi 5 ?","source":"\u003ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003ePlume\u00a0for\u00a0Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":225551618,"id_str":"225551618","name":"Droid Indonesia","screen_name":"DroidIndonesia","location":"Indonesia","url":"http:\/\/droid-indonesia.blogspot.co.id\/","description":"Mengungkap Info Seputar Android, IT, Tips & Trick #playdroid\r. instagram: @droidindonesia. Kerjasama : droidindonesia.bisnis@gmail.com","protected":false,"verified":false,"followers_count":196084,"friends_count":215,"listed_count":524,"favourites_count":475,"statuses_count":182533,"created_at":"Sat Dec 11 21:30:34 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D19AE6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164481781\/pllZa48l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164481781\/pllZa48l.jpeg","profile_background_tile":false,"profile_link_color":"25366B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528796031362678784\/3YwLWH68_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528796031362678784\/3YwLWH68_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225551618\/1372695106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yossarianmw","name":"Yossarian Mw","id":241783333,"id_str":"241783333","indices":[14,26]},{"screen_name":"DroidIndonesia","name":"Droid Indonesia","id":225551618,"id_str":"225551618","indices":[27,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FOqIctAklr","expanded_url":"https:\/\/twitter.com\/DroidIndonesia\/status\/663722548526387200","display_url":"twitter.com\/DroidIndonesia\u2026","indices":[4,27]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080070665"} +{"delete":{"status":{"id":661144087823671296,"id_str":"661144087823671296","user_id":490115126,"user_id_str":"490115126"},"timestamp_ms":"1447080070832"}} +{"delete":{"status":{"id":663681708856766464,"id_str":"663681708856766464","user_id":3312231770,"user_id_str":"3312231770"},"timestamp_ms":"1447080070886"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039163994112,"id_str":"663728039163994112","text":"Siamo un popolo legato alla terra come il cuore alle sue arteria...\u00e8 finalmente giunta l'o\u2026 https:\/\/t.co\/TiSXYWNnUG https:\/\/t.co\/9Y8tJSAxkz","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3042240958,"id_str":"3042240958","name":"Tailored Suits","screen_name":"custom_suit","location":null,"url":"http:\/\/www.tailor4less.com\/en-us\/men\/custom-suits\/","description":"Find the best tailored suits. Made-to-measure suits to fit you perfectly. #bespoke #dapper #fashion","protected":false,"verified":false,"followers_count":2048,"friends_count":1504,"listed_count":165,"favourites_count":192,"statuses_count":15937,"created_at":"Tue Feb 17 09:44:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567621488115585024\/eDKEGh0j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567621488115585024\/eDKEGh0j_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3042240958\/1424166718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TiSXYWNnUG","expanded_url":"http:\/\/tailor4less.com","display_url":"tailor4less.com","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663728038190956544,"id_str":"663728038190956544","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIlfWwAAPBNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIlfWwAAPBNF.jpg","url":"https:\/\/t.co\/9Y8tJSAxkz","display_url":"pic.twitter.com\/9Y8tJSAxkz","expanded_url":"http:\/\/twitter.com\/custom_suit\/status\/663728039163994112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728038190956544,"id_str":"663728038190956544","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIlfWwAAPBNF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIlfWwAAPBNF.jpg","url":"https:\/\/t.co\/9Y8tJSAxkz","display_url":"pic.twitter.com\/9Y8tJSAxkz","expanded_url":"http:\/\/twitter.com\/custom_suit\/status\/663728039163994112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080070664"} +{"delete":{"status":{"id":661174051960848385,"id_str":"661174051960848385","user_id":173154965,"user_id_str":"173154965"},"timestamp_ms":"1447080070919"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039147282436,"id_str":"663728039147282436","text":"My 5 & 7 yr old brother come up to me rub my head & asks how my head is feeling & bring be orange juice :,) so so sweet \u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546427828,"id_str":"546427828","name":"\u2661 JORDYN MECK \u2661","screen_name":"jordyn_meck","location":null,"url":null,"description":"I like makeup \/ president of team blu \/ Living my dream \/ Take this heart, Lord, I'll be your Vessel\/instagram - jordynmeck","protected":false,"verified":false,"followers_count":415,"friends_count":230,"listed_count":3,"favourites_count":8451,"statuses_count":12646,"created_at":"Fri Apr 06 01:34:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663457627033178112\/qo7t5hXO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663457627033178112\/qo7t5hXO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546427828\/1446956642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070660"} +{"delete":{"status":{"id":663707260577681408,"id_str":"663707260577681408","user_id":303909487,"user_id_str":"303909487"},"timestamp_ms":"1447080070990"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039151300610,"id_str":"663728039151300610","text":"$NUGT might get an oversold bounce.","source":"\u003ca href=\"http:\/\/stocktwits.com\" rel=\"nofollow\"\u003eStockTwits Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17549691,"id_str":"17549691","name":"NYC Trader","screen_name":"szaman","location":null,"url":"http:\/\/bullsonwallstreet.com\/blog\/","description":"I am a Trend Trader. I go where Market wants to go with maximum profit objective in mind.","protected":false,"verified":false,"followers_count":33714,"friends_count":227,"listed_count":1071,"favourites_count":63,"statuses_count":39971,"created_at":"Sat Nov 22 00:41:10 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/77313507\/nyc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/77313507\/nyc.jpg","profile_background_tile":true,"profile_link_color":"3838D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCDD9","profile_text_color":"0C1112","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1628276411\/tiger_2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1628276411\/tiger_2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17549691\/1431542106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[{"text":"NUGT","indices":[0,5]}]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070661"} +{"delete":{"status":{"id":566818678801317888,"id_str":"566818678801317888","user_id":2988704939,"user_id_str":"2988704939"},"timestamp_ms":"1447080071080"}} +{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728039159848960,"id_str":"663728039159848960","text":"a johnny\ud83c\udf02 zoomand scrierd #take of my ass and my dam self.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":607493837,"id_str":"607493837","name":"GLOCK TO HEAD","screen_name":"wavybaby9","location":null,"url":null,"description":"um um","protected":false,"verified":false,"followers_count":89,"friends_count":65,"listed_count":0,"favourites_count":5,"statuses_count":320,"created_at":"Wed Jun 13 19:45:07 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658985491803451394\/w5AsOroG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658985491803451394\/w5AsOroG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/607493837\/1444352997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"55b4f9e5c516e0b6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/55b4f9e5c516e0b6.json","place_type":"city","name":"Orlando","full_name":"Orlando, FL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-81.507905,28.388218],[-81.507905,28.615139],[-81.227640,28.615139],[-81.227640,28.388218]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"take","indices":[26,31]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080070663"} +{"delete":{"status":{"id":663727984621129728,"id_str":"663727984621129728","user_id":1144446721,"user_id_str":"1144446721"},"timestamp_ms":"1447080071197"}} +{"delete":{"status":{"id":663698708375056385,"id_str":"663698708375056385","user_id":947008886,"user_id_str":"947008886"},"timestamp_ms":"1447080071337"}} +{"delete":{"status":{"id":648228315879374848,"id_str":"648228315879374848","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080071401"}} +{"delete":{"status":{"id":663726726355152896,"id_str":"663726726355152896","user_id":1922992531,"user_id_str":"1922992531"},"timestamp_ms":"1447080071646"}} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328950272,"id_str":"663728043328950272","text":"RT @lhrxii: \u064a\u0627\u062d\u0628\u064a \u0644\u0647 \u0644\u0627\u062a\u062d\u0645\u0633\ud83d\ude22 https:\/\/t.co\/nF0VizzRvC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2566708916,"id_str":"2566708916","name":"-WR-","screen_name":"waqess","location":null,"url":null,"description":"\ub09c \uc0c1\uad00 \uc5c6\uc5b4...","protected":false,"verified":false,"followers_count":1069,"friends_count":298,"listed_count":1,"favourites_count":1864,"statuses_count":20233,"created_at":"Sat Jun 14 08:13:45 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638097073615728641\/KgYloaCt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638097073615728641\/KgYloaCt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566708916\/1440969171","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:16:26 +0000 2015","id":663691613739294720,"id_str":"663691613739294720","text":"\u064a\u0627\u062d\u0628\u064a \u0644\u0647 \u0644\u0627\u062a\u062d\u0645\u0633\ud83d\ude22 https:\/\/t.co\/nF0VizzRvC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":570692404,"id_str":"570692404","name":"\u0627\u064a\u0648\u0646\u0631\u064a\u0646","screen_name":"lhrxii","location":"Luhan","url":null,"description":"\u200f14.9.2015","protected":false,"verified":false,"followers_count":2752,"friends_count":231,"listed_count":8,"favourites_count":387,"statuses_count":68731,"created_at":"Fri May 04 09:44:16 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"02070A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"0B0C0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663346338281734144\/dVA9_zC0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663346338281734144\/dVA9_zC0_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663691534865465344,"id_str":"663691534865465344","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":948,"h":710,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663691534865465344,"id_str":"663691534865465344","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":948,"h":710,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}}},{"id":663691588380553216,"id_str":"663691588380553216","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-7XWcAA6DCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-7XWcAA6DCx.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":748,"h":561,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lhrxii","name":"\u0627\u064a\u0648\u0646\u0631\u064a\u0646","id":570692404,"id_str":"570692404","indices":[3,10]}],"symbols":[],"media":[{"id":663691534865465344,"id_str":"663691534865465344","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":948,"h":710,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663691613739294720,"source_status_id_str":"663691613739294720","source_user_id":570692404,"source_user_id_str":"570692404"}]},"extended_entities":{"media":[{"id":663691534865465344,"id_str":"663691534865465344","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn70AXAAAUo2p.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":254,"resize":"fit"},"large":{"w":948,"h":710,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":449,"resize":"fit"}},"source_status_id":663691613739294720,"source_status_id_str":"663691613739294720","source_user_id":570692404,"source_user_id_str":"570692404"},{"id":663691588380553216,"id_str":"663691588380553216","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-7XWcAA6DCx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-7XWcAA6DCx.jpg","url":"https:\/\/t.co\/nF0VizzRvC","display_url":"pic.twitter.com\/nF0VizzRvC","expanded_url":"http:\/\/twitter.com\/lhrxii\/status\/663691613739294720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":748,"h":561,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663691613739294720,"source_status_id_str":"663691613739294720","source_user_id":570692404,"source_user_id_str":"570692404"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043354124288,"id_str":"663728043354124288","text":"Es literal la frase \"todo vuelve\", hoy con un se\u00f1ora le dejamos los asientos a dos viejitos en el \u00f3mnibus y al rato quedaron dos asientos+","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2165603568,"id_str":"2165603568","name":"\u0950","screen_name":"AgusTumilasci","location":null,"url":null,"description":"Always appreciate what you have. Planet 01","protected":false,"verified":false,"followers_count":770,"friends_count":491,"listed_count":3,"favourites_count":1520,"statuses_count":21313,"created_at":"Wed Oct 30 22:54:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173516323\/ItPQHg_D.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173516323\/ItPQHg_D.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663544321354899456\/Vg1m2paC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663544321354899456\/Vg1m2paC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2165603568\/1417407293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345715201,"id_str":"663728043345715201","text":"Ben mi fazla utangac\u0131m yoksa insanlar m\u0131 fazla y\u00fczs\u00fcz?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1650504283,"id_str":"1650504283","name":"Rabia","screen_name":"pink_paradise34","location":"Samsun","url":null,"description":"'PAPATYA'","protected":false,"verified":false,"followers_count":1587,"friends_count":974,"listed_count":1,"favourites_count":12193,"statuses_count":1368,"created_at":"Tue Aug 06 14:34:21 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513298357175865344\/EFn6vgPs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513298357175865344\/EFn6vgPs.jpeg","profile_background_tile":true,"profile_link_color":"815C99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394717594476544\/e13uU9pi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394717594476544\/e13uU9pi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650504283\/1446897934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328995328,"id_str":"663728043328995328","text":"RT @badr0505: \u0643\u0644\u0646\u0627 \u064a\u0633\u064a\u0631 \u0628\u0637\u0631\u064a\u0642\u0629 \u0645\u0627 \u0644\u0646\u0647\u0627\u064a\u062a\u0647 ... \u0646\u0638\u0646 \u0627\u0646\u0646\u0627 \u0646\u0647\u0631\u0628 \u0645\u0646\u0647\u0627 \u0641\u064a \u062d\u064a\u0646 \u0627\u0646\u0646\u0627 \u0646\u062c\u0631\u064a \u0628\u0627\u062a\u062c\u0627\u0647\u0647\u0627!\u0643\u0644 \u0634\u064a\u0621 \u0628\u0642\u062f\u0631\u060c \u0644\u0646 \u064a\u0645\u0646\u0639\u0647 \u062d\u0630\u0631!...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479235731,"id_str":"2479235731","name":"\u0634\u062e\u0635 \u0643\u0648\u064a\u0633 \u062c\u062f\u0627\u064b(\u064a\u0645\u0627\u0646\u064a)","screen_name":"akrram655","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u200f\u0643\u0645\u0627 \u062a\u064f\u062f\u064a\u0646 \u062a\u062f\u0627\u0646 \u062e\u0628\u0651\u0649 \u0647\u0630\u0627 \u0627\u0644\u0646\u0635\u061b \u0641\u064a \u0631\u0641\u0648\u0641 \u063a\u0641\u0644\u062a\u0643 \u0644\u0644\u0623\u064a\u0627\u0645 \u0627\u0644\u0642\u0627\u062f\u0645\u0629 \u0648\u0633\u064a\u0651\u062e\u0628\u0631\u0643 \u0627\u0644\u0632\u0645\u0646 \u0639\u0646\u0647\u0627 \u062d\u062a\u0645\u0627\u064b.\n #\u062a\u0627\u0628\u0639\u0646\u06d2_\u0627\u062a\u0627\u0628\u0639\u06a9-\u062a\u062d\u0630\u0641\u0646\u06d2_\u062a\u0646\u062d\u0630\u0641_\u062a\u0644\u0642\u0627\u0626\u064a #\u0652\u0652","protected":false,"verified":false,"followers_count":9175,"friends_count":9209,"listed_count":4,"favourites_count":274,"statuses_count":10324,"created_at":"Tue May 06 04:07:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662107620636033024\/SJUpktR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662107620636033024\/SJUpktR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479235731\/1446693584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 19 16:27:41 +0000 2015","id":645273061298565120,"id_str":"645273061298565120","text":"\u0643\u0644\u0646\u0627 \u064a\u0633\u064a\u0631 \u0628\u0637\u0631\u064a\u0642\u0629 \u0645\u0627 \u0644\u0646\u0647\u0627\u064a\u062a\u0647 ... \u0646\u0638\u0646 \u0627\u0646\u0646\u0627 \u0646\u0647\u0631\u0628 \u0645\u0646\u0647\u0627 \u0641\u064a \u062d\u064a\u0646 \u0627\u0646\u0646\u0627 \u0646\u062c\u0631\u064a \u0628\u0627\u062a\u062c\u0627\u0647\u0647\u0627!\u0643\u0644 \u0634\u064a\u0621 \u0628\u0642\u062f\u0631\u060c \u0644\u0646 \u064a\u0645\u0646\u0639\u0647 \u062d\u0630\u0631!...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":558220352,"id_str":"558220352","name":"\u0628\u062f\u0631 \u0627\u0644\u062b\u0642\u0641\u064a","screen_name":"badr0505","location":null,"url":null,"description":"\u0645\u0639\u0627\u064b \u0625\u0644\u0649 \u0627\u0644\u0623\u0628\u062f \u060c \u0641\u064a \u0627\u0644\u062d\u0632\u0646 \u0648\u0627\u0644\u0641\u0631\u062d \u0645\u0639\u0627\u064b \u060c \u0641\u064a \u0627\u0644\u0639\u062b\u0631\u0647 \u0648\u0627\u0644\u0646\u062c\u0627\u062d \u0645\u0639\u0627\u064b \u060c \u0625\u0644\u0649 \u0627\u0644\u0623\u0628\u062f \u0648\u0645\u0627 \u0648\u0631\u0627\u0621 \u0627\u0644\u0623\u0628\u062f \u0628\u062c\u0627\u0646\u0628\u0643 \u0456tt\u0456\u2764\ufe0f","protected":false,"verified":false,"followers_count":17231,"friends_count":17977,"listed_count":6,"favourites_count":64,"statuses_count":4626,"created_at":"Fri Apr 20 01:37:53 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504548436452966400\/sifxraNK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504548436452966400\/sifxraNK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/558220352\/1442963554","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"badr0505","name":"\u0628\u062f\u0631 \u0627\u0644\u062b\u0642\u0641\u064a","id":558220352,"id_str":"558220352","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333165056,"id_str":"663728043333165056","text":"crazy ex girlfriend izlemediniz dimi izleyin bak ka\u00e7 kere s\u00f6yliyim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50620163,"id_str":"50620163","name":"meyroke \u0131myeh \u2665\u262d\u2640","screen_name":"myriamonde","location":"asia minor","url":"http:\/\/etsy.com\/shop\/kucukturuc","description":"kar\u0131 k\u0131z meseleleri-ibnecilik-vatans\u0131zl\u0131k-devled milled d\u00fc\u015fmanl\u0131\u011f\u0131-sista-d\u00f6rt\u00e7\u00fcl\u00fck \u00f6lene kadar-tasar\u0131m-e\u015fpiremseslik-goygoy \/ ciddiyet kucuktur3 (*\u02d8\ufe36\u02d8)","protected":false,"verified":false,"followers_count":8649,"friends_count":1659,"listed_count":135,"favourites_count":41055,"statuses_count":156880,"created_at":"Thu Jun 25 11:30:54 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572131446\/t34oa741x3u7ylppebrl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572131446\/t34oa741x3u7ylppebrl.jpeg","profile_background_tile":true,"profile_link_color":"F5A849","profile_sidebar_border_color":"B3BBCC","profile_sidebar_fill_color":"DDD7F7","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623931853871968256\/WDSZiFnQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623931853871968256\/WDSZiFnQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50620163\/1357049212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043349966848,"id_str":"663728043349966848","text":"RT @onaysialindsey: Lately, I guess God has just been removing all the people who really aren't supposed to be in my life","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329982790,"id_str":"3329982790","name":"Tink","screen_name":"tink_amb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":335,"friends_count":279,"listed_count":1,"favourites_count":495,"statuses_count":5938,"created_at":"Tue Jun 16 17:47:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651734868813041664\/I_kgx37G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651734868813041664\/I_kgx37G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329982790\/1435720788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 17:34:36 +0000 2015","id":661234967821877248,"id_str":"661234967821877248","text":"Lately, I guess God has just been removing all the people who really aren't supposed to be in my life","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339220530,"id_str":"339220530","name":"Onaysia Lindsey ","screen_name":"onaysialindsey","location":null,"url":null,"description":"#bgsu19","protected":false,"verified":false,"followers_count":1391,"friends_count":533,"listed_count":0,"favourites_count":6767,"statuses_count":53672,"created_at":"Wed Jul 20 19:28:23 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/406482846\/lady_gagad.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/406482846\/lady_gagad.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661048290948050944\/k9Hng_3C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661048290948050944\/k9Hng_3C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339220530\/1446702325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"onaysialindsey","name":"Onaysia Lindsey ","id":339220530,"id_str":"339220530","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071662"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043337347072,"id_str":"663728043337347072","text":"@Oqaap52 @Bo_Asma90 @GMC_ISIS @mamnalmnshat @Makkah_______47 @ASQ_Group \n\u064a\u0627 \u0623\u062e\u064a \u0627\u0644\u0633\u0644\u0648\u0644\u064a \u0645\u0633\u062e\u0631\u0629 \n\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06\ud83d\ude06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727830988144641,"in_reply_to_status_id_str":"663727830988144641","in_reply_to_user_id":3929150613,"in_reply_to_user_id_str":"3929150613","in_reply_to_screen_name":"Oqaap52","user":{"id":4013092047,"id_str":"4013092047","name":"\u0623\u0628\u062a\u0633\u0645","screen_name":"paquycv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":349,"friends_count":158,"listed_count":1,"favourites_count":27,"statuses_count":154,"created_at":"Thu Oct 22 00:17:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723750878236672\/tLJLwCRV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723750878236672\/tLJLwCRV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013092047\/1446955654","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Oqaap52","name":"\u0627\u0644\u0639\u064f\u0640\u0642\u0627\u0628","id":3929150613,"id_str":"3929150613","indices":[0,8]},{"screen_name":"Bo_Asma90","name":"\u0639\u0627\u0626\u0634\u0629 \u0627\u0644\u0639\u0628\u064a\u062f\u064a#\u0628\u0627\u0642\u064a\u0629\u261d","id":4083189798,"id_str":"4083189798","indices":[9,19]},{"screen_name":"GMC_ISIS","name":"\u0634\u0631\u062d\u0628\u064a\u0644","id":4106892435,"id_str":"4106892435","indices":[20,29]},{"screen_name":"mamnalmnshat","name":"aml","id":3392244973,"id_str":"3392244973","indices":[30,43]},{"screen_name":"Makkah_______47","name":"\ufeb3\u0332\ufedf\u0332\u0622\ufee3\u0332\u064a\u06d2\ufecb \ufe82\u0332\ufedf\u0332\ufea9\u0332\u06c6\ufedf\u0629","id":785176196,"id_str":"785176196","indices":[44,60]},{"screen_name":"ASQ_Group","name":"#\u0639\u0628\u062f\u0627\u0644\u0635\u0645\u062f_\u0627\u0644\u0642\u0631\u0634\u064a","id":786659978,"id_str":"786659978","indices":[61,71]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080071659"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043349946369,"id_str":"663728043349946369","text":"Fed up of always feeling second best to everyone\ud83d\ude2a\ud83d\ude0a\ud83d\udc4d\ud83c\udffc","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":531681927,"id_str":"531681927","name":"ame","screen_name":"_amycallaghan","location":"Warrington, England","url":"http:\/\/ten-tonne-skelet0n.tumblr.com","description":"killed by drones","protected":false,"verified":false,"followers_count":2736,"friends_count":1670,"listed_count":6,"favourites_count":11001,"statuses_count":18659,"created_at":"Tue Mar 20 20:07:00 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440162997621649408\/Q3WVwxfW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440162997621649408\/Q3WVwxfW.jpeg","profile_background_tile":true,"profile_link_color":"31C244","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662370662057660417\/OSUG7CeI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662370662057660417\/OSUG7CeI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/531681927\/1444238947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071662"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043362512896,"id_str":"663728043362512896","text":"\u0635\u062f\u0627\u0627\u0627\u0639","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3398636052,"id_str":"3398636052","name":"Moonii","screen_name":"93_moonii","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":349,"friends_count":283,"listed_count":0,"favourites_count":190,"statuses_count":2982,"created_at":"Mon Aug 31 01:45:42 +0000 2015","utc_offset":-10800,"time_zone":"GMT+3","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663623163012624384\/k4zm58jb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663623163012624384\/k4zm58jb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3398636052\/1446899785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080071665"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043354136576,"id_str":"663728043354136576","text":"i can't contain this anymore i'm all yours i've got no control","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3027335685,"id_str":"3027335685","name":"andre","screen_name":"louisdangerous","location":null,"url":null,"description":"i was shouting 'zayn zayn' but he didn't come","protected":false,"verified":false,"followers_count":16448,"friends_count":1674,"listed_count":7,"favourites_count":20,"statuses_count":30556,"created_at":"Mon Feb 09 23:42:13 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663087527125995521\/79lOOG4b.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663087527125995521\/79lOOG4b.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663521891555127296\/0j-WyFcx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663521891555127296\/0j-WyFcx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3027335685\/1447030910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358347264,"id_str":"663728043358347264","text":"@BlackGaleAngel \u201cThank you boss.\u201d Gladly takes it from his hands.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727911413923840,"in_reply_to_status_id_str":"663727911413923840","in_reply_to_user_id":3772985009,"in_reply_to_user_id_str":"3772985009","in_reply_to_screen_name":"BlackGaleAngel","user":{"id":3973976777,"id_str":"3973976777","name":"Hideo [\u79c0\u592b]","screen_name":"FieryBlueAngel","location":"Fallen Heaven Hideout","url":null,"description":"\u201cIf you want to see the boss, you have to go through me. But sadly, I won't make it easy for ya.\u201d (OCRP)","protected":false,"verified":false,"followers_count":99,"friends_count":205,"listed_count":1,"favourites_count":3,"statuses_count":43,"created_at":"Fri Oct 16 18:46:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661590508091887617\/OtsoQHH3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661590508091887617\/OtsoQHH3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3973976777\/1446944930","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlackGaleAngel","name":"Yuuto [\u4f91\u6597]","id":3772985009,"id_str":"3772985009","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328974852,"id_str":"663728043328974852","text":"RT @nosuxoruceko: \u0411\u043e\u044f\u0442\u044c\u0441\u044f \u0413\u041b\u0423\u041f\u041e !!!","source":"\u003ca href=\"http:\/\/kadinovmaiki.ru\/\" rel=\"nofollow\"\u003eGiviFarma\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2149818985,"id_str":"2149818985","name":"Jeramiah Walsh","screen_name":"xecilatytuna","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":590,"friends_count":565,"listed_count":0,"favourites_count":0,"statuses_count":2183,"created_at":"Tue Oct 22 22:30:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000680654432\/8192e4fadfa91cfaf78a3ef25579b4d2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000680654432\/8192e4fadfa91cfaf78a3ef25579b4d2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:31:04 +0000 2015","id":662955422807162880,"id_str":"662955422807162880","text":"\u0411\u043e\u044f\u0442\u044c\u0441\u044f \u0413\u041b\u0423\u041f\u041e !!!","source":"\u003ca href=\"http:\/\/kadinovmaiki.ru\/\" rel=\"nofollow\"\u003eGiviFarma\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1966184868,"id_str":"1966184868","name":"Sureshwara McCarthy","screen_name":"nosuxoruceko","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":488,"friends_count":569,"listed_count":0,"favourites_count":0,"statuses_count":2158,"created_at":"Thu Oct 17 06:34:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000666081044\/340ec3b5c05c277083ff1d749cac6629_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000666081044\/340ec3b5c05c277083ff1d749cac6629_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nosuxoruceko","name":"Sureshwara McCarthy","id":1966184868,"id_str":"1966184868","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358203904,"id_str":"663728043358203904","text":"RT @fzdgxCstIpIZ5ec: \u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/0OCinstmQh\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/l\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u305f\u305f\u305d\u305d39\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4007083103,"id_str":"4007083103","name":"\u306f\u3084\u3068\uff20\u306b\u3053\u62bc\u3057\u30e9\u30a4\u30d0\u30fc","screen_name":"eduardeebykov","location":null,"url":null,"description":"\u6771\u65b9\u3001\u30ab\u30b2\u30d7\u30ed\u3001Fate\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u30d6\u30e9\u30d6\u30ec\u3001\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8\u30aa\u30f3\u30e9\u30a4\u30f3\u5927\u597d\u304d\u30c7\u30fc\u30b9\u3001\u30d1\u30ba\u30c9\u30e9\u3084\u3063\u3066\u307e\u30fc\u3059","protected":false,"verified":false,"followers_count":751,"friends_count":1467,"listed_count":0,"favourites_count":0,"statuses_count":44,"created_at":"Wed Oct 21 04:46:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657799572878553089\/0IwOy-lX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657799572878553089\/0IwOy-lX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4007083103\/1445666618","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728009656950784,"id_str":"663728009656950784","text":"\u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/0OCinstmQh\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/lwiHvOm10A","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u305f\u305f\u305d\u305d60\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3474041594,"id_str":"3474041594","name":"\u5927\u4eba\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","screen_name":"fzdgxCstIpIZ5ec","location":null,"url":null,"description":"\u5927\u4eba\u306e\u30a2\u30d7\u30ea\u3092\u914d\u4fe1\u3057\u307e\u3059\uff01\u5b50\u4f9b\u306f\u7981\u6b62\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":40,"friends_count":0,"listed_count":3,"favourites_count":0,"statuses_count":4,"created_at":"Sun Sep 06 20:07:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659344335540908033\/fhvU3W_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659344335540908033\/fhvU3W_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3474041594\/1446034961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0OCinstmQh","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663728008008609792,"id_str":"663728008008609792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","url":"https:\/\/t.co\/lwiHvOm10A","display_url":"pic.twitter.com\/lwiHvOm10A","expanded_url":"http:\/\/twitter.com\/fzdgxCstIpIZ5ec\/status\/663728009656950784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728008008609792,"id_str":"663728008008609792","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","url":"https:\/\/t.co\/lwiHvOm10A","display_url":"pic.twitter.com\/lwiHvOm10A","expanded_url":"http:\/\/twitter.com\/fzdgxCstIpIZ5ec\/status\/663728009656950784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0OCinstmQh","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[80,103]}],"user_mentions":[{"screen_name":"fzdgxCstIpIZ5ec","name":"\u5927\u4eba\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","id":3474041594,"id_str":"3474041594","indices":[3,19]}],"symbols":[],"media":[{"id":663728008008609792,"id_str":"663728008008609792","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","url":"https:\/\/t.co\/lwiHvOm10A","display_url":"pic.twitter.com\/lwiHvOm10A","expanded_url":"http:\/\/twitter.com\/fzdgxCstIpIZ5ec\/status\/663728009656950784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728009656950784,"source_status_id_str":"663728009656950784","source_user_id":3474041594,"source_user_id_str":"3474041594"}]},"extended_entities":{"media":[{"id":663728008008609792,"id_str":"663728008008609792","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJG1DUsAAvDLK.jpg","url":"https:\/\/t.co\/lwiHvOm10A","display_url":"pic.twitter.com\/lwiHvOm10A","expanded_url":"http:\/\/twitter.com\/fzdgxCstIpIZ5ec\/status\/663728009656950784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728009656950784,"source_status_id_str":"663728009656950784","source_user_id":3474041594,"source_user_id_str":"3474041594"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345780736,"id_str":"663728043345780736","text":"I literally can't think clearly when I first wake up. This stupid fucking lady expected me to be able to think of a time or whatnot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330681561,"id_str":"330681561","name":"Ms Electra","screen_name":"syntharoboto","location":"Euclid, OH","url":null,"description":"Huge Styx fan, obsessed with robots. Pagan, whovian, loves snakes, and trains. I've no tolerance for morons, extremists, drama queens, or SJWs.","protected":false,"verified":false,"followers_count":302,"friends_count":378,"listed_count":8,"favourites_count":963,"statuses_count":33952,"created_at":"Thu Jul 07 00:21:43 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650443611860004866\/Ldn91jTC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650443611860004866\/Ldn91jTC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330681561\/1443912814","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345727488,"id_str":"663728043345727488","text":"Gracias Dr Mauricio Otero Avilez fue hermoso detalle con su grupo de #JovenesLideres #Logistica #DamasRosadas Dios lo bendiga","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":168795415,"id_str":"168795415","name":"LogisticaRT","screen_name":"ETCENGINEER","location":"Santiago de Chile.","url":null,"description":"Hacemos RT a #Logistica","protected":false,"verified":false,"followers_count":1405,"friends_count":1245,"listed_count":353,"favourites_count":67,"statuses_count":53472,"created_at":"Tue Jul 20 20:35:26 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456539364634263552\/ZNtuXH7k.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456539364634263552\/ZNtuXH7k.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422814058832601088\/QKNgZpQq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422814058832601088\/QKNgZpQq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/168795415\/1397682764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JovenesLideres","indices":[69,84]},{"text":"Logistica","indices":[85,95]},{"text":"DamasRosadas","indices":[96,109]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358187520,"id_str":"663728043358187520","text":"RT @AndrewTumilty: Cancel the #ScarbTO subway extension\n\nBuild the LRT with this instead\n\nUse the balance to start the DRL #TOpoli \n\nhttps:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2172622148,"id_str":"2172622148","name":"Dee Es","screen_name":"deeEs112","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":153,"friends_count":545,"listed_count":4,"favourites_count":3499,"statuses_count":4503,"created_at":"Sun Nov 03 18:46:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000743595404\/88f57c5f2abb99b34899a0743afea7b4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000743595404\/88f57c5f2abb99b34899a0743afea7b4_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:54 +0000 2015","id":663724449464582144,"id_str":"663724449464582144","text":"Cancel the #ScarbTO subway extension\n\nBuild the LRT with this instead\n\nUse the balance to start the DRL #TOpoli \n\nhttps:\/\/t.co\/Z0m5plYCUN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480435113,"id_str":"480435113","name":"Andrew Tumilty","screen_name":"AndrewTumilty","location":"Toronto","url":"https:\/\/ca.linkedin.com\/in\/andrewtumilty","description":"Political social media strategist. Big & Small L Liberal. Defender of the Leafs and other lost causes.","protected":false,"verified":false,"followers_count":2426,"friends_count":2375,"listed_count":56,"favourites_count":6903,"statuses_count":17955,"created_at":"Wed Feb 01 14:01:24 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557936030112694274\/vDhpKPdT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557936030112694274\/vDhpKPdT.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558278711590813696\/0S6EwsKO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558278711590813696\/0S6EwsKO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480435113\/1426336393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"ScarbTO","indices":[11,19]},{"text":"TOpoli","indices":[104,111]}],"urls":[{"url":"https:\/\/t.co\/Z0m5plYCUN","expanded_url":"http:\/\/spacing.ca\/toronto\/2015\/11\/09\/lorinc-invest-crosstowns-found-money\/","display_url":"spacing.ca\/toronto\/2015\/1\u2026","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ScarbTO","indices":[30,38]},{"text":"TOpoli","indices":[123,130]}],"urls":[{"url":"https:\/\/t.co\/Z0m5plYCUN","expanded_url":"http:\/\/spacing.ca\/toronto\/2015\/11\/09\/lorinc-invest-crosstowns-found-money\/","display_url":"spacing.ca\/toronto\/2015\/1\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"AndrewTumilty","name":"Andrew Tumilty","id":480435113,"id_str":"480435113","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345727489,"id_str":"663728043345727489","text":"AC Repair AC Installation Las Vegas NV #HVACcontractor Listed at: https:\/\/t.co\/zqjeHG6AGJ","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1729509320,"id_str":"1729509320","name":"A-Tech Heating & A\/C","screen_name":"ATECHLV","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":19745,"created_at":"Wed Sep 04 18:11:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000069327283\/4d02ee92da412ab645a6cd3e394a517f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000069327283\/4d02ee92da412ab645a6cd3e394a517f.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000429302736\/e559c0be4098f94493e1579bf01c83ef_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000429302736\/e559c0be4098f94493e1579bf01c83ef_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HVACcontractor","indices":[39,54]}],"urls":[{"url":"https:\/\/t.co\/zqjeHG6AGJ","expanded_url":"http:\/\/dld.bz\/dNgJH","display_url":"dld.bz\/dNgJH","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043337191424,"id_str":"663728043337191424","text":"\u76ee\u5143\u304c\u6dbc\u3057\u3052\u306a\u3042\u307e\u304d\uff08 ; ; \uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1071158654,"id_str":"1071158654","name":"\u30b5\u30a4\u30ad\u30c3\u30af\u591c\u7a7a\u305f\u3058","screen_name":"tajarasu7","location":"\u30e1\u30ed\u30f3\u30d1\u30f3\u306e\u76ae\u306e\u4e2d","url":null,"description":"ZEN THE HOLLYWOOD \u57fa\u672c\u7bb1\u63a8\u3057\u306e\u7d2b\u30fb\u9ec4\u30fb\u7dd1\u63a8\u3057 \u5c11\u5e74\u30cf\u30ea\u30a6\u30c3\u30c9 \u57fa\u672c\u7bb1\u63a8\u3057\u306e\u30c8\u30df\u30fc\u63a8\u3057\uff01","protected":false,"verified":false,"followers_count":12,"friends_count":26,"listed_count":4,"favourites_count":1044,"statuses_count":5748,"created_at":"Tue Jan 08 15:10:57 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614110891533938688\/XrfU8GnI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614110891533938688\/XrfU8GnI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071158654\/1443315766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071659"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043362390017,"id_str":"663728043362390017","text":"Maganda ka lang loyal ako HAHAHAHAHA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277350017,"id_str":"277350017","name":"miranda may","screen_name":"jieeugenio","location":null,"url":null,"description":"it's not always rainbows & butterflies..","protected":false,"verified":false,"followers_count":2169,"friends_count":916,"listed_count":2,"favourites_count":26713,"statuses_count":149539,"created_at":"Tue Apr 05 05:39:36 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663261857654837248\/qjTlIoDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663261857654837248\/qjTlIoDD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277350017\/1446892844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080071665"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043341381634,"id_str":"663728043341381634","text":"RT @sexualmoods_: Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2292123182,"id_str":"2292123182","name":"\u2764","screen_name":"cumfirst_","location":null,"url":null,"description":"Follow Us & Turn Our Notifications On For Daily Sex Posts | 18+ | Dm Us Submissions , All Submission Are Anon","protected":false,"verified":false,"followers_count":11048,"friends_count":1362,"listed_count":24,"favourites_count":9,"statuses_count":34117,"created_at":"Wed Jan 15 04:15:04 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662515958636916736\/Ll5-k6O3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662515958636916736\/Ll5-k6O3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2292123182\/1445552129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 05 23:58:09 +0000 2015","id":651184632902250496,"id_str":"651184632902250496","text":"Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3719200351,"id_str":"3719200351","name":"\u2766","screen_name":"sexualmoods_","location":"TURN ON MY NOTIFCATIONS","url":null,"description":"ITS #AFTERDARK ALL THE TIME \u2022 RT my favorites \u2022 females submit nudes and thirst traps","protected":false,"verified":false,"followers_count":1278,"friends_count":0,"listed_count":2,"favourites_count":59,"statuses_count":65,"created_at":"Mon Sep 28 22:15:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3719200351\/1443479615","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":129,"favorite_count":292,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sexualmoods_","name":"\u2766","id":3719200351,"id_str":"3719200351","indices":[3,16]}],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351"}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351","video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071660"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333054464,"id_str":"663728043333054464","text":"@bluemoonlit00 \u305d\u3057\u3066\u751f\u307e\u308c\u5909\u308f\u308b...............\u3053\u308c\u304c\u751f\u547d\u306e\u55b6\u307f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727877502832640,"in_reply_to_status_id_str":"663727877502832640","in_reply_to_user_id":97416343,"in_reply_to_user_id_str":"97416343","in_reply_to_screen_name":"bluemoonlit00","user":{"id":96938102,"id_str":"96938102","name":"\u6fc1\u97f3(2m\u2191\u00d7153\u339d)","screen_name":"katana_ya","location":"\u3046\u3057\u308d","url":null,"description":"\u3060\u304f\u304a\u3093\u3067\u3059\u3002\u305b\u3044\u3058\u3093\u305a\u307f\u3001\u8150\u3063\u3066\u3044\u308b\u3002 \u30d5\u30a9\u30ed\u30fc\u306e\u304a\u8fd4\u3057\u306a\u3069\u306f\u6210\u4eba\u3055\u308c\u3066\u3044\u308b\u65b9\u3092\u4e2d\u5fc3\u306b...\u96d1\u98df\u3002\u6f2b\u753b\u3088\u3080\u30de\u30f3 \u30af\u30e9\u30ec\u30aa\u306b\u6eba\u308c\u308b\u306e\u5dfb","protected":false,"verified":false,"followers_count":353,"friends_count":382,"listed_count":23,"favourites_count":3406,"statuses_count":133308,"created_at":"Tue Dec 15 07:58:18 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450997426732539904\/M7d5JH0g.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450997426732539904\/M7d5JH0g.png","profile_background_tile":false,"profile_link_color":"A81841","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662648428288045056\/zz3_GpGw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662648428288045056\/zz3_GpGw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96938102\/1444543935","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bluemoonlit00","name":"\u96f6\u6708","id":97416343,"id_str":"97416343","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358355456,"id_str":"663728043358355456","text":"beazinha vai fazer 18t\u00e3o amanh\u00e3 \ud83d\udc99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1523688450,"id_str":"1523688450","name":"\u3164","screen_name":"desrotinado","location":"rio de janeiro, brasil","url":null,"description":null,"protected":false,"verified":false,"followers_count":2928,"friends_count":1713,"listed_count":3,"favourites_count":15082,"statuses_count":43152,"created_at":"Mon Jun 17 02:14:57 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626888418203684864\/8SZbrU4P.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626888418203684864\/8SZbrU4P.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663216594777153536\/tcGHxMFs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663216594777153536\/tcGHxMFs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1523688450\/1446989406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043349835776,"id_str":"663728043349835776","text":"RT @ZAYNXXXL0UIS: TODAS NECESITAMOS UNA VERSI\u00d3N 2015 DE TEENAGE DIRTBAG \n\n https:\/\/t.co\/BbnsNSsr3H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3172930434,"id_str":"3172930434","name":"Ari\u2728","screen_name":"Ari_Palacios05","location":"M\u00e9xico","url":null,"description":"Tributo .lll. Larry Shipper\u2764\ufe0f Directioner\u2764\ufe0f Zquad\u2764\ufe0f","protected":false,"verified":false,"followers_count":721,"friends_count":918,"listed_count":4,"favourites_count":3259,"statuses_count":13510,"created_at":"Sat Apr 25 20:16:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652181549698314240\/ZgEnQ3rn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652181549698314240\/ZgEnQ3rn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3172930434\/1442005210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:50:54 +0000 2015","id":663549292884439040,"id_str":"663549292884439040","text":"TODAS NECESITAMOS UNA VERSI\u00d3N 2015 DE TEENAGE DIRTBAG \n\n https:\/\/t.co\/BbnsNSsr3H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1833856334,"id_str":"1833856334","name":"kat \/ 4","screen_name":"ZAYNXXXL0UIS","location":"louis","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"it's ok if you've loved him since you were 18","protected":false,"verified":false,"followers_count":28198,"friends_count":11536,"listed_count":46,"favourites_count":10849,"statuses_count":18393,"created_at":"Sun Sep 08 20:01:49 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637680069557813248\/SkLMc1-J.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637680069557813248\/SkLMc1-J.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A975A6","profile_text_color":"EE7B76","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663523904321908736\/7h8Oxa9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663523904321908736\/7h8Oxa9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1833856334\/1447031400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":54,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663458475708702720,"id_str":"663458475708702720","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","url":"https:\/\/t.co\/BbnsNSsr3H","display_url":"pic.twitter.com\/BbnsNSsr3H","expanded_url":"http:\/\/twitter.com\/93niallsderby\/status\/663460567240351744\/video\/1","type":"photo","sizes":{"large":{"w":322,"h":180,"resize":"fit"},"medium":{"w":322,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":322,"h":180,"resize":"fit"}},"source_status_id":663460567240351744,"source_status_id_str":"663460567240351744","source_user_id":2773868449,"source_user_id_str":"2773868449"}]},"extended_entities":{"media":[{"id":663458475708702720,"id_str":"663458475708702720","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","url":"https:\/\/t.co\/BbnsNSsr3H","display_url":"pic.twitter.com\/BbnsNSsr3H","expanded_url":"http:\/\/twitter.com\/93niallsderby\/status\/663460567240351744\/video\/1","type":"video","sizes":{"large":{"w":322,"h":180,"resize":"fit"},"medium":{"w":322,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":322,"h":180,"resize":"fit"}},"source_status_id":663460567240351744,"source_status_id_str":"663460567240351744","source_user_id":2773868449,"source_user_id_str":"2773868449","video_info":{"aspect_ratio":[161,90],"duration_millis":23953,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/pl\/xM94UIKWhmlgIIrw.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/pl\/xM94UIKWhmlgIIrw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/vid\/322x180\/PTogsHO1SprAUl_4.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/vid\/322x180\/PTogsHO1SprAUl_4.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ZAYNXXXL0UIS","name":"kat \/ 4","id":1833856334,"id_str":"1833856334","indices":[3,16]}],"symbols":[],"media":[{"id":663458475708702720,"id_str":"663458475708702720","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","url":"https:\/\/t.co\/BbnsNSsr3H","display_url":"pic.twitter.com\/BbnsNSsr3H","expanded_url":"http:\/\/twitter.com\/93niallsderby\/status\/663460567240351744\/video\/1","type":"photo","sizes":{"large":{"w":322,"h":180,"resize":"fit"},"medium":{"w":322,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":322,"h":180,"resize":"fit"}},"source_status_id":663460567240351744,"source_status_id_str":"663460567240351744","source_user_id":2773868449,"source_user_id_str":"2773868449"}]},"extended_entities":{"media":[{"id":663458475708702720,"id_str":"663458475708702720","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663458475708702720\/pu\/img\/vZ3aqaSBYuq7VCMf.jpg","url":"https:\/\/t.co\/BbnsNSsr3H","display_url":"pic.twitter.com\/BbnsNSsr3H","expanded_url":"http:\/\/twitter.com\/93niallsderby\/status\/663460567240351744\/video\/1","type":"video","sizes":{"large":{"w":322,"h":180,"resize":"fit"},"medium":{"w":322,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":322,"h":180,"resize":"fit"}},"source_status_id":663460567240351744,"source_status_id_str":"663460567240351744","source_user_id":2773868449,"source_user_id_str":"2773868449","video_info":{"aspect_ratio":[161,90],"duration_millis":23953,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/pl\/xM94UIKWhmlgIIrw.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/pl\/xM94UIKWhmlgIIrw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/vid\/322x180\/PTogsHO1SprAUl_4.mp4"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663458475708702720\/pu\/vid\/322x180\/PTogsHO1SprAUl_4.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071662"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328937984,"id_str":"663728043328937984","text":"Disney Pixar's The Good Dinosaur MOVIE CLIP https:\/\/t.co\/ie1im2RmH5 https:\/\/t.co\/b2zXVhD5Xc","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2348624370,"id_str":"2348624370","name":"Anna ","screen_name":"Annasunny22","location":"Scotlandwell, Scotland","url":null,"description":"Just sing it!!!","protected":false,"verified":false,"followers_count":316,"friends_count":228,"listed_count":12,"favourites_count":40,"statuses_count":6542,"created_at":"Mon Feb 17 15:12:25 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641666945184595968\/YHR44mr1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641666945184595968\/YHR44mr1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2348624370\/1441820394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ie1im2RmH5","expanded_url":"http:\/\/popcornfeed.xyz\/disney-pixars-the-good-dinosaur-movie-clip\/","display_url":"popcornfeed.xyz\/disney-pixars-\u2026","indices":[45,68]}],"user_mentions":[],"symbols":[],"media":[{"id":663720986466873344,"id_str":"663720986466873344","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCuHxUcAAYTSh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCuHxUcAAYTSh.jpg","url":"https:\/\/t.co\/b2zXVhD5Xc","display_url":"pic.twitter.com\/b2zXVhD5Xc","expanded_url":"http:\/\/twitter.com\/popcornfeed\/status\/663720986622033920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720986622033920,"source_status_id_str":"663720986622033920","source_user_id":3957648375,"source_user_id_str":"3957648375"}]},"extended_entities":{"media":[{"id":663720986466873344,"id_str":"663720986466873344","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCuHxUcAAYTSh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCuHxUcAAYTSh.jpg","url":"https:\/\/t.co\/b2zXVhD5Xc","display_url":"pic.twitter.com\/b2zXVhD5Xc","expanded_url":"http:\/\/twitter.com\/popcornfeed\/status\/663720986622033920\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663720986622033920,"source_status_id_str":"663720986622033920","source_user_id":3957648375,"source_user_id_str":"3957648375"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358228480,"id_str":"663728043358228480","text":"@uesaku21 \u6700\u5f8c\u306e\u8996\u8074\u8005\u304b\u3089\u306e\u304a\u4fbf\u308a\u3001\u6ce3\u304d\u305d\u3046\u306b\u306a\u3063\u3066\u305f\u3068\u306b\u3089\u3093\u3067\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725511286198272,"in_reply_to_status_id_str":"663725511286198272","in_reply_to_user_id":286147113,"in_reply_to_user_id_str":"286147113","in_reply_to_screen_name":"uesaku21","user":{"id":321904923,"id_str":"321904923","name":"\u305d\u30fc\u308f\u3053","screen_name":"sowacon","location":"\u3042\u307e\u304c\u3055\u304d\n","url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":49,"listed_count":1,"favourites_count":1638,"statuses_count":172,"created_at":"Wed Jun 22 09:52:57 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1463126468\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1463126468\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321904923\/1385637139","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uesaku21","name":"uesaku21","id":286147113,"id_str":"286147113","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043337252864,"id_str":"663728043337252864","text":"RT @sexualmoods_: Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1667177336,"id_str":"1667177336","name":"Best Of Porn \u2764\ufe0f","screen_name":"50ShadesOfPornn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10072,"friends_count":7393,"listed_count":3,"favourites_count":33,"statuses_count":1256,"created_at":"Tue Aug 13 08:05:30 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104934912\/87b3094f23432232c52d7d1c20cbc9d8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104934912\/87b3094f23432232c52d7d1c20cbc9d8.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657372576600092672\/9h8xqgbk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657372576600092672\/9h8xqgbk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1667177336\/1445564918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 05 23:58:09 +0000 2015","id":651184632902250496,"id_str":"651184632902250496","text":"Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3719200351,"id_str":"3719200351","name":"\u2766","screen_name":"sexualmoods_","location":"TURN ON MY NOTIFCATIONS","url":null,"description":"ITS #AFTERDARK ALL THE TIME \u2022 RT my favorites \u2022 females submit nudes and thirst traps","protected":false,"verified":false,"followers_count":1278,"friends_count":0,"listed_count":2,"favourites_count":59,"statuses_count":65,"created_at":"Mon Sep 28 22:15:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3719200351\/1443479615","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":129,"favorite_count":292,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sexualmoods_","name":"\u2766","id":3719200351,"id_str":"3719200351","indices":[3,16]}],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351"}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351","video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071659"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043341381632,"id_str":"663728043341381632","text":"RT @sexualmoods_: Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1239174385,"id_str":"1239174385","name":"TxxxsteGod \u26f3\ufe0f\u2728","screen_name":"_TxxxsteHer","location":null,"url":null,"description":"\u26a0\ufe0fWARNING\u203c\ufe0f [[18+]]: 24\/7 Certified Freak \/\/ Turn on Notifications \/\/ Accepting pics & vids \/\/ I'm a dude! \/\/","protected":false,"verified":false,"followers_count":4603,"friends_count":1354,"listed_count":3,"favourites_count":36,"statuses_count":263,"created_at":"Sun Mar 03 15:27:26 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663153940393914368\/FNIss72c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663153940393914368\/FNIss72c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1239174385\/1444401605","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 05 23:58:09 +0000 2015","id":651184632902250496,"id_str":"651184632902250496","text":"Ladies cum first \ud83d\ude0b\ud83d\ude0d\ud83d\ude08 http:\/\/t.co\/H109Yf4CXQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3719200351,"id_str":"3719200351","name":"\u2766","screen_name":"sexualmoods_","location":"TURN ON MY NOTIFCATIONS","url":null,"description":"ITS #AFTERDARK ALL THE TIME \u2022 RT my favorites \u2022 females submit nudes and thirst traps","protected":false,"verified":false,"followers_count":1278,"friends_count":0,"listed_count":2,"favourites_count":59,"statuses_count":65,"created_at":"Mon Sep 28 22:15:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660614060325498881\/RRbkItEX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3719200351\/1443479615","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":129,"favorite_count":292,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sexualmoods_","name":"\u2766","id":3719200351,"id_str":"3719200351","indices":[3,16]}],"symbols":[],"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351"}]},"extended_entities":{"media":[{"id":651184401443745792,"id_str":"651184401443745792","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/651184401443745792\/pu\/img\/oboy3Yz0rP8XezFW.jpg","url":"http:\/\/t.co\/H109Yf4CXQ","display_url":"pic.twitter.com\/H109Yf4CXQ","expanded_url":"http:\/\/twitter.com\/sexualmoods_\/status\/651184632902250496\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":651184632902250496,"source_status_id_str":"651184632902250496","source_user_id":3719200351,"source_user_id_str":"3719200351","video_info":{"aspect_ratio":[9,16],"duration_millis":21618,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/pl\/IV24hfnBY5iffLbo.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/180x320\/HLfCCVipTmK7ioyb.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/651184401443745792\/pu\/vid\/360x640\/4QBB6s9LmZFJAmLo.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080071660"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358183424,"id_str":"663728043358183424","text":"RT @Dinga_B19: [RT\uc774\ubca4]\n200\ud314\ub85c\uac00 \ub118\uc5c8\ub124\uc694 8\u31458 \uadf8\ub9bc\ub3c4 \ub738\ud55c\ub370 \ub9ce\uc740 \uad00\uc2ec \uac10\uc0ac\ud569\ub2c8\ub2e4 \ud574\ub4dc\ub9b4\uac74 \uadf8\ub9bc\ubc16\uc5d0 \uc5c6\ub124\uc694 RT\ud574\uc8fc\uc2e0\ubd84\ub4e4 \ud55c\ubd84 \ucd94\ucca8\ud574\uc11c \ucd5c\uc560\uce90\uadf8\ub824\ub4dc\ub9b4\uac8c\uc694! (\uc7a5\ub974X,\ud2b8\uce5c\ud55c\uc815X) \uac10\uc0ac\ud569\ub2c8\ub2e4 u3u\u2665 https:\/\/t.co\/gcvH\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2595943910,"id_str":"2595943910","name":"\ub9b0\ub2e4(\ubc18\ub3d9\uacb0","screen_name":"whitong26","location":null,"url":null,"description":"\ubcf8\uc9c4:\uc774\ub0b4\uc232,\uc2a4\uac00\uc2dc\uc624\/\uc18c\uc6b8\uc774\ud130,\uc18c\uc6b8\ub9c8\uce74\/\uc740\ud63c,\ud574\uacb0\uc0ac\ub4e4,\uae34\uce74\uad6c\/\uc6d0\ud53c\uc2a4 \ub85c\uc6b0\ub8e8\/\ub4f1\ub4f1\ud30c\ub294 \uc7a1\ub355\uc785\ub2c8\ub2e4!!\uba58\uc158\uc8fc\uc2dc\uba74 \ub9de\ud314\ud569\ub2c8\ub2e4~!!(\ud3f0\uadf8\ub9bc\ub7ec) \uc9c0\ub8b0\u00d7","protected":false,"verified":false,"followers_count":205,"friends_count":436,"listed_count":0,"favourites_count":7213,"statuses_count":9908,"created_at":"Mon Jun 30 07:05:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656104138791497728\/0eoth4a2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656104138791497728\/0eoth4a2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2595943910\/1445262344","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:14 +0000 2015","id":663723024080748545,"id_str":"663723024080748545","text":"[RT\uc774\ubca4]\n200\ud314\ub85c\uac00 \ub118\uc5c8\ub124\uc694 8\u31458 \uadf8\ub9bc\ub3c4 \ub738\ud55c\ub370 \ub9ce\uc740 \uad00\uc2ec \uac10\uc0ac\ud569\ub2c8\ub2e4 \ud574\ub4dc\ub9b4\uac74 \uadf8\ub9bc\ubc16\uc5d0 \uc5c6\ub124\uc694 RT\ud574\uc8fc\uc2e0\ubd84\ub4e4 \ud55c\ubd84 \ucd94\ucca8\ud574\uc11c \ucd5c\uc560\uce90\uadf8\ub824\ub4dc\ub9b4\uac8c\uc694! (\uc7a5\ub974X,\ud2b8\uce5c\ud55c\uc815X) \uac10\uc0ac\ud569\ub2c8\ub2e4 u3u\u2665 https:\/\/t.co\/gcvHNPgaV1","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3369137413,"id_str":"3369137413","name":"\ub529\uac00","screen_name":"Dinga_B19","location":null,"url":"http:\/\/dingab19.tistory.com\/","description":"ONEPICE FUB free l \ucee4\ubbf8\uc158 @COM_Dinga_B19","protected":false,"verified":false,"followers_count":211,"friends_count":82,"listed_count":0,"favourites_count":115,"statuses_count":488,"created_at":"Fri Aug 28 09:31:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638740282914111488\/04JRqQrX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638740282914111488\/04JRqQrX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3369137413\/1440755444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}},{"id":663722047105859585,"id_str":"663722047105859585","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}}},{"id":663722108372066304,"id_str":"663722108372066304","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":500,"resize":"fit"},"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":600,"h":500,"resize":"fit"}}},{"id":663722384474693632,"id_str":"663722384474693632","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1100,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dinga_B19","name":"\ub529\uac00","id":3369137413,"id_str":"3369137413","indices":[3,13]}],"symbols":[],"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"}]},"extended_entities":{"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722047105859585,"id_str":"663722047105859585","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722108372066304,"id_str":"663722108372066304","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":500,"resize":"fit"},"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":600,"h":500,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722384474693632,"id_str":"663722384474693632","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1100,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333197824,"id_str":"663728043333197824","text":"RT @verycoolegg: i am THE #1 dad https:\/\/t.co\/FYEtZn8M6d","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881189640,"id_str":"881189640","name":"mar","screen_name":"rifenbergm","location":"St. Joe","url":null,"description":"sjhs senior || 17 || \u2650\ufe0f","protected":false,"verified":false,"followers_count":449,"friends_count":689,"listed_count":0,"favourites_count":15958,"statuses_count":5583,"created_at":"Sun Oct 14 23:43:34 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660885018722611200\/kviDcIsI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660885018722611200\/kviDcIsI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881189640\/1446402140","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:42:22 +0000 2015","id":663169660595105792,"id_str":"663169660595105792","text":"i am THE #1 dad https:\/\/t.co\/FYEtZn8M6d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1644244856,"id_str":"1644244856","name":"carmen","screen_name":"verycoolegg","location":"Michigan, USA","url":"http:\/\/icedcoffeeinducedstories.blogspot.com","description":"qdoba enthusiast \/\/ hopefully graduating high school this year","protected":false,"verified":false,"followers_count":599,"friends_count":279,"listed_count":0,"favourites_count":7493,"statuses_count":6905,"created_at":"Sun Aug 04 03:28:02 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439836762467094528\/ezQPWZ5P.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439836762467094528\/ezQPWZ5P.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619629517045432320\/CSI386aQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619629517045432320\/CSI386aQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1644244856\/1433801292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":19,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663169653850677248,"id_str":"663169653850677248","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","url":"https:\/\/t.co\/FYEtZn8M6d","display_url":"pic.twitter.com\/FYEtZn8M6d","expanded_url":"http:\/\/twitter.com\/verycoolegg\/status\/663169660595105792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663169653850677248,"id_str":"663169653850677248","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","url":"https:\/\/t.co\/FYEtZn8M6d","display_url":"pic.twitter.com\/FYEtZn8M6d","expanded_url":"http:\/\/twitter.com\/verycoolegg\/status\/663169660595105792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"verycoolegg","name":"carmen","id":1644244856,"id_str":"1644244856","indices":[3,15]}],"symbols":[],"media":[{"id":663169653850677248,"id_str":"663169653850677248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","url":"https:\/\/t.co\/FYEtZn8M6d","display_url":"pic.twitter.com\/FYEtZn8M6d","expanded_url":"http:\/\/twitter.com\/verycoolegg\/status\/663169660595105792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663169660595105792,"source_status_id_str":"663169660595105792","source_user_id":1644244856,"source_user_id_str":"1644244856"}]},"extended_entities":{"media":[{"id":663169653850677248,"id_str":"663169653850677248","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQNSVuWoAA7RGr.jpg","url":"https:\/\/t.co\/FYEtZn8M6d","display_url":"pic.twitter.com\/FYEtZn8M6d","expanded_url":"http:\/\/twitter.com\/verycoolegg\/status\/663169660595105792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663169660595105792,"source_status_id_str":"663169660595105792","source_user_id":1644244856,"source_user_id_str":"1644244856"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345580032,"id_str":"663728043345580032","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3426345472,"id_str":"3426345472","name":"Can't have the Mango","screen_name":"kostik_skupov","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":225,"friends_count":677,"listed_count":23,"favourites_count":16907,"statuses_count":18147,"created_at":"Sun Aug 16 17:19:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643332467227668480\/x4VBSHDL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643332467227668480\/x4VBSHDL_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":389,"favorite_count":235,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043341451265,"id_str":"663728043341451265","text":"RT @harurize: \u4eca\u6642\u30e9\u30d6\u30db\u304c\u30bb\u30c3\u30af\u30b9\u3059\u308b\u305f\u3081\u3060\u3051\u306e\u3068\u3053\u306a\u3093\u3066\u8003\u3048\u3082\u3063\u305f\u3044\u306a\u3044\u3002\u65b0\u5bbf\u306e\u30d7\u30fc\u30eb\u4ed8\u304d\u90e8\u5c4b\u306a\u3093\u3066\u304a\u3063\u3055\u3093\u90545\u301c6\u4eba\u304c\u30b5\u30fc\u30d3\u30b9\u30bf\u30a4\u30e0\u306b\u501f\u308a\u3066\u6f5c\u6c34\u8266\u30e9\u30b8\u30b3\u30f3\u306e\u4f1a\u3068\u304b\u958b\u3044\u3066\u308b\u3093\u3060\u305e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2423263730,"id_str":"2423263730","name":"\u591c\u5bb5","screen_name":"kashipanmgmg","location":"\u30a6\u30b7\u30ef\u30ab\u306e\u3071\u3093\u3064\u306e\u4e2d","url":null,"description":"GL\/BL\/\u5275\u4f5c\/\u7248\u6a29 \u3044\u308d\u3044\u308d\u5165\u308a\u4e71\u308c\u3066\u307e\u3059\u3002\u304a\u3058\u3055\u307e\u597d\u304d\u306e\u304a\u3070\u3055\u3093\u3002\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002\u30b9\u30b1\u30d9\u57a2\u2192\u3010@yoiyoiyoyoi\u3011 \u5275\u4f5c\u30e1\u30e2\u30bf\u30b0\u2192 #nashimemo \u7121\u65ad\u8ee2\u8f09\u7981\u6b62\u30022015.9.10 \u9577\u9580\u3055\u3093\u51fa\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":314,"friends_count":236,"listed_count":34,"favourites_count":21164,"statuses_count":43722,"created_at":"Wed Apr 02 05:25:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657208021295087616\/GwAbq-_V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657208021295087616\/GwAbq-_V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423263730\/1445179282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Aug 04 14:39:51 +0000 2015","id":628576085542834176,"id_str":"628576085542834176","text":"\u4eca\u6642\u30e9\u30d6\u30db\u304c\u30bb\u30c3\u30af\u30b9\u3059\u308b\u305f\u3081\u3060\u3051\u306e\u3068\u3053\u306a\u3093\u3066\u8003\u3048\u3082\u3063\u305f\u3044\u306a\u3044\u3002\u65b0\u5bbf\u306e\u30d7\u30fc\u30eb\u4ed8\u304d\u90e8\u5c4b\u306a\u3093\u3066\u304a\u3063\u3055\u3093\u90545\u301c6\u4eba\u304c\u30b5\u30fc\u30d3\u30b9\u30bf\u30a4\u30e0\u306b\u501f\u308a\u3066\u6f5c\u6c34\u8266\u30e9\u30b8\u30b3\u30f3\u306e\u4f1a\u3068\u304b\u958b\u3044\u3066\u308b\u3093\u3060\u305e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113098509,"id_str":"113098509","name":"\u308a\u305c\u308a\u3093","screen_name":"harurize","location":"\u8089\u307e\u3093\u306e\u56fd","url":"http:\/\/blog.livedoor.jp\/ikekuribo\/","description":"\u30c6\u30cb\u30b9\u7acb\u6d77\uff08\u5e78\u6751\u7cbe\u5e02\uff09\u30fb\u7a2e\u30a2\u30b9\u30ab\u30ac\u30fb\u7121\u53cc\u597d\u304d\u3002\u8089\u307e\u3093\u738b\u5b50\u53f8\u99ac\u5e2b\u3068\u7d50\u5a5a\u3057\u3066\u8089\u307e\u3093\u59eb\u306b\u306a\u308a\u305f\u3044\u3002\u30ea\u30e9\u30c3\u30af\u30de\u5927\u597d\u304d\uff01\u4f53\u64cd\u306e\u5185\u6751\u822a\u5e73\u9078\u624b\u3068\u30d5\u30a3\u30ae\u30e5\u30a2\u306e\u7fbd\u751f\u7d50\u5f26\u9078\u624b\u3092\u3053\u3063\u305d\u308a\u5fdc\u63f4\u4e2d\u3002\u30cd\u30c8\u30b2\u2192\uff26\uff25\uff3a\u4ef2\u9593\u52df\u96c6\u4e2d\u3002\u73fe\u5728\uff34\uff2c\u3084\u30ea\u30d7\u30e9\u30a4\u304c\u307e\u3063\u305f\u304f\u8ffd\u3048\u306a\u3044\u72b6\u6cc1\u306e\u305f\u3081\u30d5\u30a9\u30ed\u30fc\u30d0\u30c3\u30af\u306f\u63a7\u3048\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":2396,"friends_count":316,"listed_count":50,"favourites_count":9624,"statuses_count":20373,"created_at":"Wed Feb 10 18:04:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"1E00FF","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7CA5ED","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660484037333512192\/Ms0v3U1Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660484037333512192\/Ms0v3U1Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113098509\/1438416221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12206,"favorite_count":6277,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"harurize","name":"\u308a\u305c\u308a\u3093","id":113098509,"id_str":"113098509","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071660"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043341406208,"id_str":"663728043341406208","text":"\u0627\u0644\u0628\u0647\u062f\u0627\u0631\u064a \u2661\u2661\u2661\u2661 #\u0634\u062c\u0639_\u0627\u0644\u0641\u062f\u0627\u0626\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":402370034,"id_str":"402370034","name":"\u0641\u0627\u0631\u0633 #\u0641\u0644\u0633\u0637\u064a\u0646","screen_name":"faresalbadri","location":"Kuala Lampur","url":null,"description":"19,\nPalestinian.\n#CFC\nSnapchat: faresbadri","protected":false,"verified":false,"followers_count":331,"friends_count":268,"listed_count":10,"favourites_count":853,"statuses_count":10757,"created_at":"Mon Oct 31 23:38:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033526695\/c447c450fa7124569a0db09766f2f840.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033526695\/c447c450fa7124569a0db09766f2f840.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662338767496220672\/0NqKu3Ue_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662338767496220672\/0NqKu3Ue_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/402370034\/1445965726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0634\u062c\u0639_\u0627\u0644\u0641\u062f\u0627\u0626\u064a","indices":[14,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080071660"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043354025984,"id_str":"663728043354025984","text":"RT @XO_TychinaZhane: I love Shaylin like she really is my only friend \u270a\u270a\u270a it's like we get closer and closer everyday","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81238992,"id_str":"81238992","name":"shaaaaylin__","screen_name":"shayyshayyy__","location":null,"url":null,"description":"#PC19 | snapchat: shaykinn15 | IG: shaaaylin_","protected":false,"verified":false,"followers_count":2203,"friends_count":1878,"listed_count":0,"favourites_count":1318,"statuses_count":91435,"created_at":"Sat Oct 10 00:22:26 +0000 2009","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646045979720876032\/mcyDuSTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646045979720876032\/mcyDuSTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81238992\/1444576680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:23:58 +0000 2015","id":662379854923460612,"id_str":"662379854923460612","text":"I love Shaylin like she really is my only friend \u270a\u270a\u270a it's like we get closer and closer everyday","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313645269,"id_str":"313645269","name":"Tuh-Sheena","screen_name":"XO_TychinaZhane","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1216,"friends_count":849,"listed_count":1,"favourites_count":432,"statuses_count":44980,"created_at":"Thu Jun 09 00:17:20 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9E5EA8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/875092881\/4ada4a0bece1356af69c0b71b411f8f7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/875092881\/4ada4a0bece1356af69c0b71b411f8f7.jpeg","profile_background_tile":true,"profile_link_color":"4EF018","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F4F5ED","profile_text_color":"742F7A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657972988592156673\/RGiq_kCn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657972988592156673\/RGiq_kCn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313645269\/1435422936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"XO_TychinaZhane","name":"Tuh-Sheena","id":313645269,"id_str":"313645269","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043366584320,"id_str":"663728043366584320","text":"Vice Chairman of Immunology at The Scripps Research Institute to Assist with ValloVax\u2122 Clinical Development https:\/\/t.co\/Y2MfMloRq8","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404464766,"id_str":"404464766","name":"dlvr news","screen_name":"dlvr_news","location":"Portland, OR","url":"http:\/\/stories.dlvr.it","description":"Stories, photos, video of top international, national and local breaking news.","protected":false,"verified":false,"followers_count":248,"friends_count":0,"listed_count":99,"favourites_count":0,"statuses_count":186585,"created_at":"Thu Nov 03 23:38:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1915541778\/d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1915541778\/d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y2MfMloRq8","expanded_url":"http:\/\/dlvr.it\/ChfcfB","display_url":"dlvr.it\/ChfcfB","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071666"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333017602,"id_str":"663728043333017602","text":"RT @yusa48s: \u3086\u304b\u308a\u3061\u3083\u3093\u4f55\u8a00\u3063\u3066\u308b\u306e\uff1f https:\/\/t.co\/aM3X6N56Qb","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64203349,"id_str":"64203349","name":"\u305b\u3075\u3043\u3048\u308b","screen_name":"sefy_el","location":"\u4e0d\u5b8c\u5168\u306a\u4e16\u754c","url":null,"description":"\u81ea\u79f0\u793e\u4f1a\u4eba\u3002\u30b2\u30fc\u30e0\u3068\u304b\u30de\u30f3\u30ac\u3068\u304b\u5927\u597d\u304d\u306a\u305f\u3060\u306e\u30aa\u30bf\u30af\u3002\u597d\u304d\u306a\u30b8\u30e3\u30f3\u30eb\u306f\uff12D\u683c\u30b2\u30fc\u3068\u30a8\u30ed\u30b2\u3002\u305b\u3075\u3043\u3048\u308b\u306f\u30a8\u30ed\u30b2\u30d6\u30e9\u30f3\u30c9\u300cLass\u300d\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u3002\n\u6027\u8cea\/\u516c\u5f0fRT:\u901a\u5e38\u30c4\u30a4\u30fc\u30c8:\u7279\u5b9a\u4eba\u7269\u3078\u306e\u717d\u308a:reply:\u6328\u62f6:\u611a\u75f4\uff1d6:3:2:1:1:1:1\u3050\u3089\u3044\u3002F\/R\u5fa1\u81ea\u7531\u306b\u3002\n\u8af8\u4e8b\u60c5\u306b\u3088\u308a\u30c4\u30a4\u30fc\u30c8\u306e\u591a\u3044\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":207,"friends_count":159,"listed_count":13,"favourites_count":945,"statuses_count":69455,"created_at":"Sun Aug 09 16:32:19 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/107020222\/Twitter___c-Ssize.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/107020222\/Twitter___c-Ssize.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1852773800\/_______normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1852773800\/_______normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:17:47 +0000 2015","id":663556059412365312,"id_str":"663556059412365312","text":"\u3086\u304b\u308a\u3061\u3083\u3093\u4f55\u8a00\u3063\u3066\u308b\u306e\uff1f https:\/\/t.co\/aM3X6N56Qb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185260300,"id_str":"185260300","name":"\u30c6\u30a3\u30a2\u308413b\/3\u65e5\u76eeA-02ab*\u3086\u3055","screen_name":"yusa48s","location":"\u79c1\u7acb\u7f8e\u6d5c\u5b66\u5712","url":"http:\/\/udk.jpn.org","description":"\u30b5\u30fc\u30af\u30ebabgrund\u4e3b\u50ac","protected":false,"verified":false,"followers_count":9725,"friends_count":229,"listed_count":481,"favourites_count":2186,"statuses_count":18165,"created_at":"Tue Aug 31 15:37:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639021113821958144\/AKoY6a_w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639021113821958144\/AKoY6a_w_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185260300\/1446345220","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1015,"favorite_count":648,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663556054647640066,"id_str":"663556054647640066","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","url":"https:\/\/t.co\/aM3X6N56Qb","display_url":"pic.twitter.com\/aM3X6N56Qb","expanded_url":"http:\/\/twitter.com\/yusa48s\/status\/663556059412365312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"large":{"w":724,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663556054647640066,"id_str":"663556054647640066","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","url":"https:\/\/t.co\/aM3X6N56Qb","display_url":"pic.twitter.com\/aM3X6N56Qb","expanded_url":"http:\/\/twitter.com\/yusa48s\/status\/663556059412365312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"large":{"w":724,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yusa48s","name":"\u30c6\u30a3\u30a2\u308413b\/3\u65e5\u76eeA-02ab*\u3086\u3055","id":185260300,"id_str":"185260300","indices":[3,11]}],"symbols":[],"media":[{"id":663556054647640066,"id_str":"663556054647640066","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","url":"https:\/\/t.co\/aM3X6N56Qb","display_url":"pic.twitter.com\/aM3X6N56Qb","expanded_url":"http:\/\/twitter.com\/yusa48s\/status\/663556059412365312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"large":{"w":724,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663556059412365312,"source_status_id_str":"663556059412365312","source_user_id":185260300,"source_user_id_str":"185260300"}]},"extended_entities":{"media":[{"id":663556054647640066,"id_str":"663556054647640066","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVst03VEAI6pfZ.jpg","url":"https:\/\/t.co\/aM3X6N56Qb","display_url":"pic.twitter.com\/aM3X6N56Qb","expanded_url":"http:\/\/twitter.com\/yusa48s\/status\/663556059412365312\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"large":{"w":724,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663556059412365312,"source_status_id_str":"663556059412365312","source_user_id":185260300,"source_user_id_str":"185260300"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043358224384,"id_str":"663728043358224384","text":"You're quite thankful for coworkers who support you even when ... More for Aries https:\/\/t.co\/5xQSkSgdm4","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102756937,"id_str":"102756937","name":"\u0394bdoul\u25b2ye Deeop","screen_name":"Rockelovh","location":"Lille","url":null,"description":"Ambassadeur Internationnal des clubbers \u00e0 Lille 59000. Lille 2 facult\u00e9 de droit (AES). Client fid\u00e8le du BaseCampLille","protected":false,"verified":false,"followers_count":246,"friends_count":240,"listed_count":0,"favourites_count":86,"statuses_count":3913,"created_at":"Thu Jan 07 18:42:54 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6F4041","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/873057784\/ba3fcbc15301df932b067bac268fc97f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/873057784\/ba3fcbc15301df932b067bac268fc97f.jpeg","profile_background_tile":false,"profile_link_color":"BD5145","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F8C695","profile_text_color":"D17D60","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3572092230\/69b96db14b8fd90af1f8f7be82ae818e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3572092230\/69b96db14b8fd90af1f8f7be82ae818e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102756937\/1366874941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5xQSkSgdm4","expanded_url":"http:\/\/bit.ly\/zzEL3G","display_url":"bit.ly\/zzEL3G","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071664"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333038080,"id_str":"663728043333038080","text":"@imomunya \n\u3068\u3053\u308d\u3067\u30e1\u30c3\u30b7\u30e5\u306e\u3044\u308c\u304b\u305f\u3092\u304a\u3057\u3048\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727539232206848,"in_reply_to_status_id_str":"663727539232206848","in_reply_to_user_id":2572835376,"in_reply_to_user_id_str":"2572835376","in_reply_to_screen_name":"imomunya","user":{"id":4109243052,"id_str":"4109243052","name":"MORIYA","screen_name":"4fsrQ36Osq5GJb8","location":null,"url":null,"description":"\u9ad8\uff12 \u6570\u7406\u306e\u7ffc'36 \u8da3\u5473:\u6570\u5b66 Okayama respect:\u5ca1\u6f54 \u4eac\u5927\u7406\u5b66\u90e8\u5fd7\u671b","protected":false,"verified":false,"followers_count":38,"friends_count":47,"listed_count":2,"favourites_count":64,"statuses_count":17,"created_at":"Tue Nov 03 04:54:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661488578350870528\/WIeXtGbr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661488578350870528\/WIeXtGbr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4109243052\/1446545907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imomunya","name":"\u307e\u3053\u3074\u301c","id":2572835376,"id_str":"2572835376","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345600512,"id_str":"663728043345600512","text":"RT @chanchancha22: \u9001\u6599\u8ca0\u62c5\u300882\u5186\u3009\u3057\u3066\u8cb0\u3048\u308b\n\u306e\u3067\u3042\u308c\u3070\u5408\u8a0880\u4eba\u3050\u3089\u3044\u306b\n\u597d\u304d\u306a\u30e1\u30f3\u30d0\u30fc\u306e\u9752.\u9280\u30c6\u30fc\u30d7\u3092\n\u9001\u308a\u307e\u3059\ud83d\ude02\ud83d\udc93\u2728\ud83d\udcad\uff08\u7b11\uff09\n\nRT\u6570\u3067\u6c7a\u3081\u307e\u3059\ud83d\ude47\u307e\u3060\u672a\u5b9a\u2026 https:\/\/t.co\/b9TjoLPc9V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2837764448,"id_str":"2837764448","name":"\u9999\u7e54\u2765\u2765\u3010 AW 12.12 \u3011","screen_name":"kaorioinolv1176","location":"\u5ca9\u7530\u525b\u5178\u306f\u79c1\u306e\u8a87\u308a","url":"https:\/\/Instagram.com\/kaori_3jsb_omigun","description":"99line\uffe4JK1\uffe4NAOTO\u770c\uffe4\u767b\u5742\u5e83\u81e3\uffe4\u5ca9\u7530\u525b\u5178\uffe4\u767d\u6ff1\u4e9c\u5d50\uffe4\u611b\u3057\u3066\u308b\u261e@T_IWATA_EX_3JSB\uffe4\u5b89\u5b9a\u261e@Akaneee_XXIV\uffe4GENE\u30cf\u30a4\u30bf9.19\u3001BPLV10\/18\u53c2\u6226\u6e08 Next\u261e\u2728AW12.12\u53c2\u6226\u2728","protected":false,"verified":false,"followers_count":1740,"friends_count":1684,"listed_count":12,"favourites_count":3338,"statuses_count":15130,"created_at":"Thu Oct 02 08:48:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661892319986085888\/Wv-vRe8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661892319986085888\/Wv-vRe8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2837764448\/1446642343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:00:33 +0000 2015","id":663657418522406912,"id_str":"663657418522406912","text":"\u9001\u6599\u8ca0\u62c5\u300882\u5186\u3009\u3057\u3066\u8cb0\u3048\u308b\n\u306e\u3067\u3042\u308c\u3070\u5408\u8a0880\u4eba\u3050\u3089\u3044\u306b\n\u597d\u304d\u306a\u30e1\u30f3\u30d0\u30fc\u306e\u9752.\u9280\u30c6\u30fc\u30d7\u3092\n\u9001\u308a\u307e\u3059\ud83d\ude02\ud83d\udc93\u2728\ud83d\udcad\uff08\u7b11\uff09\n\nRT\u6570\u3067\u6c7a\u3081\u307e\u3059\ud83d\ude47\u307e\u3060\u672a\u5b9a\u2026 https:\/\/t.co\/b9TjoLPc9V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3150227425,"id_str":"3150227425","name":"\u3064 \u304d","screen_name":"chanchancha22","location":"JPN","url":null,"description":"EXILE \/ THE SECOND \/ \u4e09\u4ee3\u76eeJSB \/ GENE \/ E-girls \/ EXILETRIBE \/ THE RAMPAGE \/ \u656c\u6d69 \/ \u525b\u5178 \/ \u5e83\u81e3 \/ \u4e9c\u5d50 \/ \u73b2\u65bc \/ \u85e4\u4e95\u59c9\u59b9 \/ \u5409\u91ce\u5317\u4eba \/ EXFAMILY \/ AW\u261e\u656c\u6d69\u306b\u72d9\u3044\u6295\u3052&\u4e21\u624b\u6307\u5dee\u3057 \/","protected":false,"verified":false,"followers_count":11266,"friends_count":10709,"listed_count":106,"favourites_count":32121,"statuses_count":10999,"created_at":"Sat Apr 11 17:58:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660766038447910912\/x1sWPIA0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660766038447910912\/x1sWPIA0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150227425\/1445923120","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":351,"favorite_count":71,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663657408342835201,"id_str":"663657408342835201","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","url":"https:\/\/t.co\/b9TjoLPc9V","display_url":"pic.twitter.com\/b9TjoLPc9V","expanded_url":"http:\/\/twitter.com\/chanchancha22\/status\/663657418522406912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663657408342835201,"id_str":"663657408342835201","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","url":"https:\/\/t.co\/b9TjoLPc9V","display_url":"pic.twitter.com\/b9TjoLPc9V","expanded_url":"http:\/\/twitter.com\/chanchancha22\/status\/663657418522406912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chanchancha22","name":"\u3064 \u304d","id":3150227425,"id_str":"3150227425","indices":[3,17]}],"symbols":[],"media":[{"id":663657408342835201,"id_str":"663657408342835201","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","url":"https:\/\/t.co\/b9TjoLPc9V","display_url":"pic.twitter.com\/b9TjoLPc9V","expanded_url":"http:\/\/twitter.com\/chanchancha22\/status\/663657418522406912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663657418522406912,"source_status_id_str":"663657418522406912","source_user_id":3150227425,"source_user_id_str":"3150227425"}]},"extended_entities":{"media":[{"id":663657408342835201,"id_str":"663657408342835201","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI5YzUwAEBJRs.jpg","url":"https:\/\/t.co\/b9TjoLPc9V","display_url":"pic.twitter.com\/b9TjoLPc9V","expanded_url":"http:\/\/twitter.com\/chanchancha22\/status\/663657418522406912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663657418522406912,"source_status_id_str":"663657418522406912","source_user_id":3150227425,"source_user_id_str":"3150227425"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345715200,"id_str":"663728043345715200","text":"Toca finde de party en @UxianetLanParty .. Un a\u00f1ito m\u00e1s \ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033354370,"id_str":"1033354370","name":"Marcos Fari\u00f1a","screen_name":"ikartm","location":"A Coru\u00f1a","url":null,"description":"Todo el mundo quiere que les digan la verdad. Muy pocos aceptamos lo que viene luego","protected":false,"verified":false,"followers_count":396,"friends_count":225,"listed_count":7,"favourites_count":7730,"statuses_count":11202,"created_at":"Mon Dec 24 19:57:14 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634512276498837504\/SvLG1iQR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634512276498837504\/SvLG1iQR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d16c1b8ae1635978","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d16c1b8ae1635978.json","place_type":"city","name":"La Coru\u00f1a","full_name":"La Coru\u00f1a, Galicia","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[-8.471284,43.301377],[-8.471284,43.389945],[-8.374342,43.389945],[-8.374342,43.301377]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UxianetLanParty","name":"Uxianet","id":1917960320,"id_str":"1917960320","indices":[23,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043345764352,"id_str":"663728043345764352","text":"RT @BahaTheGreat: lol!! https:\/\/t.co\/2u05pzJZRJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151775236,"id_str":"1151775236","name":"Thabelo","screen_name":"ThabeloBW","location":"Gaborone, Botswana","url":null,"description":"Being","protected":false,"verified":false,"followers_count":192,"friends_count":215,"listed_count":2,"favourites_count":224,"statuses_count":3762,"created_at":"Tue Feb 05 19:23:25 +0000 2013","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169690888\/r8CjHR0J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169690888\/r8CjHR0J.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600231764779507712\/0UNHXqaO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600231764779507712\/0UNHXqaO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151775236\/1430937942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:11 +0000 2015","id":663727288769511424,"id_str":"663727288769511424","text":"lol!! https:\/\/t.co\/2u05pzJZRJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178399193,"id_str":"178399193","name":"EscoBaha","screen_name":"BahaTheGreat","location":"Gaborone","url":null,"description":"Better in real life, I promise.","protected":false,"verified":false,"followers_count":1258,"friends_count":690,"listed_count":6,"favourites_count":242,"statuses_count":34322,"created_at":"Sat Aug 14 17:19:33 +0000 2010","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/241562674\/JokerFace.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/241562674\/JokerFace.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658652110993661953\/-ePbrywC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658652110993661953\/-ePbrywC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178399193\/1433237934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727138667945985,"quoted_status_id_str":"663727138667945985","quoted_status":{"created_at":"Mon Nov 09 14:37:35 +0000 2015","id":663727138667945985,"id_str":"663727138667945985","text":"Yesterday it was Vision 2016 and MDGs (Khwest) today its ESP (Capello) tomorrow it will somethingelse! #SONA2015 #SelectiveMemory #excitable","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1151775236,"id_str":"1151775236","name":"Thabelo","screen_name":"ThabeloBW","location":"Gaborone, Botswana","url":null,"description":"Being","protected":false,"verified":false,"followers_count":192,"friends_count":215,"listed_count":2,"favourites_count":224,"statuses_count":3761,"created_at":"Tue Feb 05 19:23:25 +0000 2013","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169690888\/r8CjHR0J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169690888\/r8CjHR0J.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600231764779507712\/0UNHXqaO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600231764779507712\/0UNHXqaO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151775236\/1430937942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SONA2015","indices":[103,112]},{"text":"SelectiveMemory","indices":[113,129]},{"text":"excitable","indices":[130,140]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2u05pzJZRJ","expanded_url":"https:\/\/twitter.com\/ThabeloBW\/status\/663727138667945985","display_url":"twitter.com\/ThabeloBW\/stat\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2u05pzJZRJ","expanded_url":"https:\/\/twitter.com\/ThabeloBW\/status\/663727138667945985","display_url":"twitter.com\/ThabeloBW\/stat\u2026","indices":[25,48]}],"user_mentions":[{"screen_name":"BahaTheGreat","name":"EscoBaha","id":178399193,"id_str":"178399193","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080071661"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328823296,"id_str":"663728043328823296","text":"@pineapple0613 \u304e\u3083\u3042\u3042\u3042\u3042\u3042\u3042\u5929\u4f7f\u304b\uff01\uff01\uff01\uff01\u5929\u4f7f\u304b\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719181934706690,"in_reply_to_status_id_str":"663719181934706690","in_reply_to_user_id":3311912190,"in_reply_to_user_id_str":"3311912190","in_reply_to_screen_name":"pineapple0613","user":{"id":3759538394,"id_str":"3759538394","name":"\u30ea\u30fc\u30c0\u30fc@\u5b9f\u6cc1\u57a2","screen_name":"leader6972","location":null,"url":null,"description":"\u53d7\u9a13\u751f\u2606\u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u8efd\u306b\u2606\n\u67d0\u7b11\u9854\u52d5\u753b\u3067\u6d3b\u52d5\u3055\u308c\u3066\u3044\u308b\u65b9\u3005\u304c\u597d\u304d\u3002\u6e6f\u8c46\u8150\/M.S.S.P\/\u307c\u304f\u305f\u3073\/\u3061\u30fc\u305f\u3053\/\u3048\u3093\u3082\u3061\u5c4b\/\u3055\u30fc\u304a\u308c\/ \u30ac\u30c3\u30c1\u30de\u30f3\/\u30ad\u30ea\u30f3\/\u3075\u3041\u3093\u304d\u3043\u69d8\u65b9\u306a\u3069\u306a\u3069\u3002\u3088\u3046\u3064\u3079\u306e\u5b9f\u6cc1\u8005\u306e\u65b9\u3005\u3082\u597d\u304d\u3067\u3059\u3002\n\u547c\u3073\u30bf\u30e1\u5927\u6b53\u8fce\u306a\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u8150\u3063\u3066\u305f\u308a\u306a\u3093\u304b\u30a2\u30ec\u306a\u9375\u57a2\u2192@leader0808","protected":false,"verified":false,"followers_count":260,"friends_count":187,"listed_count":12,"favourites_count":1443,"statuses_count":1764,"created_at":"Fri Oct 02 13:52:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658252055782383618\/XR4xiAKJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658252055782383618\/XR4xiAKJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3759538394\/1445811902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pineapple0613","name":"\u30ab\u30e8@(\u00a0\u3000'-'\u00a0)\u30ce)`-'\u00a0)","id":3311912190,"id_str":"3311912190","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043349958656,"id_str":"663728043349958656","text":"RT @EliasVedovato: La estoy dudando de ir el jueves a bloo \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197621662,"id_str":"197621662","name":"Magui\u265b","screen_name":"MicaBraun_","location":"Buenos Aires, Argentina","url":null,"description":"Villa Madero| 1165513360 \u260f\u21e6 | 16 | Escorpio\u264f| snap: mica.braun| instagram: mica braun","protected":false,"verified":false,"followers_count":1426,"friends_count":668,"listed_count":17,"favourites_count":4314,"statuses_count":22260,"created_at":"Sat Oct 02 00:35:53 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653700724786884608\/spHuXD5u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653700724786884608\/spHuXD5u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197621662\/1446247875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:18 +0000 2015","id":663726812464287744,"id_str":"663726812464287744","text":"La estoy dudando de ir el jueves a bloo \ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":868295660,"id_str":"868295660","name":"El\u00edas","screen_name":"EliasVedovato","location":null,"url":"http:\/\/instagram.com\/eliasvedovato","description":"Snap: eliasvedovato","protected":false,"verified":false,"followers_count":1232,"friends_count":447,"listed_count":0,"favourites_count":14594,"statuses_count":35851,"created_at":"Mon Oct 08 16:43:06 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589253407799541760\/5I3Seb3T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589253407799541760\/5I3Seb3T.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DECB4B","profile_text_color":"37443B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644337201472499712\/WUjYoxry_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644337201472499712\/WUjYoxry_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/868295660\/1446519959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EliasVedovato","name":"El\u00edas","id":868295660,"id_str":"868295660","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071662"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043349815296,"id_str":"663728043349815296","text":"\u30c8\u30c9\u30de\u30c4\u3068\u304a\u305d\u307e\u3064\u3068\u5341\u56db\u677e\u304c\u3059\u304d\u3067\u3059\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":759181866,"id_str":"759181866","name":"\u307b\u3057","screen_name":"starmisato","location":null,"url":null,"description":"\u8da3\u5473\u57a2\/\u30ab\u30e1\u30e9\u3000\u30b3\u30b9\u30d7\u30ec\u306a\u3069\u306a\u3069 \/\u30af\u30c3\u30bd\u521d\u5fc3\u8005\/\n\u3042\u3093\u30b9\u30bf\u306b\u9996\u3063\u305f\u3051\/\u51ac\u30b3\u30df\u306f\u85ac\u7814\u30b3\u30b9\u4e88\u5b9a\/\u3000\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30df\u30fc","protected":false,"verified":false,"followers_count":50,"friends_count":33,"listed_count":0,"favourites_count":233,"statuses_count":488,"created_at":"Wed Aug 15 11:45:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661843675178119169\/sX1jZidE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661843675178119169\/sX1jZidE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/759181866\/1446548917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071662"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333017600,"id_str":"663728043333017600","text":"\u82e5\u3044\uff13\u4eba\u306e\u5b50\u305f\u3061\u3000\uff11\u3010\u4eba\u59bb\u4f53\u9a13\u8ac7\u3011 https:\/\/t.co\/SeZMYu0ern #\u30a8\u30c3\u30c1\u4f53\u9a13\u8ac7","source":"\u003ca href=\"http:\/\/adult-antenna.com\/\" rel=\"nofollow\"\u003eadult-antenna\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254468706,"id_str":"3254468706","name":"\u30a2\u30c0\u30eb\u30c8\u30a2\u30f3\u30c6\u30ca","screen_name":"adultantennacom","location":null,"url":"http:\/\/adult-antenna.com\/","description":"\u30a2\u30c0\u30eb\u30c8\u30a2\u30f3\u30c6\u30ca\u516c\u5f0fbot\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":14,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":6713,"created_at":"Wed Jun 24 10:33:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613656629544796160\/VG-KXK36_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613656629544796160\/VG-KXK36_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a8\u30c3\u30c1\u4f53\u9a13\u8ac7","indices":[42,49]}],"urls":[{"url":"https:\/\/t.co\/SeZMYu0ern","expanded_url":"http:\/\/adult-antenna.com\/14391\/","display_url":"adult-antenna.com\/14391\/","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043353989120,"id_str":"663728043353989120","text":"@ShaulTurner @micahsgrrl Is Starbucks now snow phobic? And snow is white so SB is anti white! White Genocide! Oh the humanity!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721257192460288,"in_reply_to_status_id_str":"663721257192460288","in_reply_to_user_id":481665779,"in_reply_to_user_id_str":"481665779","in_reply_to_screen_name":"ShaulTurner","user":{"id":4097373799,"id_str":"4097373799","name":"Atheist Curious","screen_name":"Norway_E","location":null,"url":null,"description":"Taming the busy mind ...or not.","protected":false,"verified":false,"followers_count":70,"friends_count":211,"listed_count":2,"favourites_count":133,"statuses_count":392,"created_at":"Mon Nov 02 02:53:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663424871565651968\/S3xSIgc8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663424871565651968\/S3xSIgc8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4097373799\/1447030900","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShaulTurner","name":"Shaul Turner","id":481665779,"id_str":"481665779","indices":[0,12]},{"screen_name":"micahsgrrl","name":"*Woke Up in 1984*","id":845669107,"id_str":"845669107","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043341418497,"id_str":"663728043341418497","text":"@ArcMadder @GamerGateSoljer Wish they would do something better with their time instead of getting rage boners on e celebs.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724445224202241,"in_reply_to_status_id_str":"663724445224202241","in_reply_to_user_id":2833599255,"in_reply_to_user_id_str":"2833599255","in_reply_to_screen_name":"ArcMadder","user":{"id":524788308,"id_str":"524788308","name":"Outlaw","screen_name":"Christo56739583","location":null,"url":null,"description":"A gamergate level 25 Outlaw, Humanist that abhors injustice. My views are my own. #Gamergate,#NotYourShield,#opSKYNET.","protected":false,"verified":false,"followers_count":1543,"friends_count":2054,"listed_count":25,"favourites_count":12659,"statuses_count":18506,"created_at":"Wed Mar 14 22:23:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587761880069877760\/HCCiLQEX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587761880069877760\/HCCiLQEX_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArcMadder","name":"Arc Madder #410","id":2833599255,"id_str":"2833599255","indices":[0,10]},{"screen_name":"GamerGateSoljer","name":"KIA Verified IT! KEK","id":2847552447,"id_str":"2847552447","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071660"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043353989121,"id_str":"663728043353989121","text":"Ima get dress when this movie go off .. \ud83d\udcaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3129623817,"id_str":"3129623817","name":".. MINDFUL","screen_name":"shelike21","location":null,"url":null,"description":"21 ., , Philly , #DoingItAllForYouPopPop\u2764\ufe0f oh yeah .. my ig name is @Girl_Des","protected":false,"verified":false,"followers_count":415,"friends_count":526,"listed_count":1,"favourites_count":675,"statuses_count":4792,"created_at":"Mon Mar 30 19:06:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662310354853171201\/HnNMy2Ro_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662310354853171201\/HnNMy2Ro_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3129623817\/1443942371","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043366592512,"id_str":"663728043366592512","text":"Jajaja por el pelo me sacan, #recordandoando 2012 #tantitoembolatada s\u00ed https:\/\/t.co\/PeUSPvZPVq","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472901128,"id_str":"472901128","name":"Dennise\u263aZamba","screen_name":"Dennise125","location":null,"url":null,"description":"TALENTOSA Y MULTIFACETICA .","protected":false,"verified":false,"followers_count":111,"friends_count":69,"listed_count":0,"favourites_count":7,"statuses_count":90,"created_at":"Tue Jan 24 12:31:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503607763067752449\/VnaCe07T_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503607763067752449\/VnaCe07T_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472901128\/1408904407","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"recordandoando","indices":[29,44]},{"text":"tantitoembolatada","indices":[50,68]}],"urls":[{"url":"https:\/\/t.co\/PeUSPvZPVq","expanded_url":"http:\/\/fb.me\/6SbyWdgIB","display_url":"fb.me\/6SbyWdgIB","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071666"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043366744064,"id_str":"663728043366744064","text":"@00_YamiAyelen ajajajajaja mal que hdp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703124885037056,"in_reply_to_status_id_str":"663703124885037056","in_reply_to_user_id":1596678986,"in_reply_to_user_id_str":"1596678986","in_reply_to_screen_name":"00_YamiAyelen","user":{"id":2885058904,"id_str":"2885058904","name":"Federico Brambilla","screen_name":"fedebrambilla7","location":"Buenos Aires, Argentina","url":null,"description":null,"protected":false,"verified":false,"followers_count":108,"friends_count":256,"listed_count":0,"favourites_count":123,"statuses_count":194,"created_at":"Thu Nov 20 00:15:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656353781580496896\/-VK0SS7u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656353781580496896\/-VK0SS7u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885058904\/1438788629","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"00_YamiAyelen","name":"Chin\u03b1","id":1596678986,"id_str":"1596678986","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071666"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043332997120,"id_str":"663728043332997120","text":"Oakland Athletics Roundup: A's Bid on Byung-ho Park ; New Ad... #oaklandathletics https:\/\/t.co\/5mlxHmmKGB","source":"\u003ca href=\"http:\/\/www.fanly.me\/athletics\" rel=\"nofollow\"\u003eathletics_fanly\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3036681904,"id_str":"3036681904","name":"Athletics Report","screen_name":"athletics_fanly","location":"Oakland, CA","url":"http:\/\/get.fanly.me\/invite","description":"Voted #1 Sports News App! Get It (http:\/\/get.fanly.me\/invite) and see why it's the easiest way to keep up with the Athletics.","protected":false,"verified":false,"followers_count":3203,"friends_count":1516,"listed_count":7,"favourites_count":1487,"statuses_count":4395,"created_at":"Sat Feb 14 12:45:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFB800","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"004C3B","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651075674556334080\/chLCpIJR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651075674556334080\/chLCpIJR_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"oaklandathletics","indices":[64,81]}],"urls":[{"url":"https:\/\/t.co\/5mlxHmmKGB","expanded_url":"http:\/\/www.fanly.me\/pfr\/UJtjExTW3T","display_url":"fanly.me\/pfr\/UJtjExTW3T","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043354136577,"id_str":"663728043354136577","text":"Camgirl Online! https:\/\/t.co\/ZqvEEHqkbV https:\/\/t.co\/ctEj4c3Q4i","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2247101197,"id_str":"2247101197","name":"Sbora in Cam","screen_name":"sboraincam","location":"italy","url":"http:\/\/www.ragazzeinvendita.com\/?rcid=976","description":"#ragazzesexy #camgirl Sbora in Cam con le NOSTRE RAGAZZE CAMGIRL!","protected":false,"verified":false,"followers_count":419,"friends_count":1312,"listed_count":2,"favourites_count":12,"statuses_count":224483,"created_at":"Sun Dec 15 11:52:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/412190334127308800\/FpK-oaHO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/412190334127308800\/FpK-oaHO_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZqvEEHqkbV","expanded_url":"http:\/\/ragazzeincam.tumblr.com\/","display_url":"ragazzeincam.tumblr.com","indices":[16,39]}],"user_mentions":[],"symbols":[],"media":[{"id":663728042402062336,"id_str":"663728042402062336","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI1LXIAAJG4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI1LXIAAJG4F.jpg","url":"https:\/\/t.co\/ctEj4c3Q4i","display_url":"pic.twitter.com\/ctEj4c3Q4i","expanded_url":"http:\/\/twitter.com\/sboraincam\/status\/663728043354136577\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728042402062336,"id_str":"663728042402062336","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI1LXIAAJG4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI1LXIAAJG4F.jpg","url":"https:\/\/t.co\/ctEj4c3Q4i","display_url":"pic.twitter.com\/ctEj4c3Q4i","expanded_url":"http:\/\/twitter.com\/sboraincam\/status\/663728043354136577\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080071663"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043333132288,"id_str":"663728043333132288","text":"RT @Govt_Women: .@NickyMorgan01 #PayGapPledge for @fawcettsociety #EqualPayDay https:\/\/t.co\/kY70IB2nvc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143527462,"id_str":"143527462","name":"Pete Crane","screen_name":"KadamBPD","location":"Over the hills and far away!","url":null,"description":"Genuinely (diagnosed) mad. NKT practitioner. Vegan. Chunky, indolent & shaven-headed, avec bins! Empathy not sympathy!","protected":false,"verified":false,"followers_count":280,"friends_count":1247,"listed_count":20,"favourites_count":130062,"statuses_count":139386,"created_at":"Thu May 13 18:24:21 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522766100568633344\/0sHf2JWG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522766100568633344\/0sHf2JWG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143527462\/1412834483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:34 +0000 2015","id":663695170270068736,"id_str":"663695170270068736","text":".@NickyMorgan01 #PayGapPledge for @fawcettsociety #EqualPayDay https:\/\/t.co\/kY70IB2nvc","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2343744523,"id_str":"2343744523","name":"Women and Equalities","screen_name":"Govt_Women","location":"United Kingdom","url":"http:\/\/gov.uk\/geo","description":"Official feed for UK Government Equalities Office, responsible for equality framework and issues relating to women, sexual orientation and transgender equality.","protected":false,"verified":false,"followers_count":9099,"friends_count":3301,"listed_count":149,"favourites_count":55,"statuses_count":2631,"created_at":"Fri Feb 14 15:32:06 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493798867108765696\/hMCAhvn0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493798867108765696\/hMCAhvn0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2343744523\/1392658596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":8,"entities":{"hashtags":[{"text":"PayGapPledge","indices":[16,29]},{"text":"EqualPayDay","indices":[50,62]}],"urls":[],"user_mentions":[{"screen_name":"NickyMorgan01","name":"Nicky Morgan ","id":34940114,"id_str":"34940114","indices":[1,15]},{"screen_name":"fawcettsociety","name":"Fawcett Society","id":20977851,"id_str":"20977851","indices":[34,49]}],"symbols":[],"media":[{"id":663695167883517952,"id_str":"663695167883517952","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","url":"https:\/\/t.co\/kY70IB2nvc","display_url":"pic.twitter.com\/kY70IB2nvc","expanded_url":"http:\/\/twitter.com\/Govt_Women\/status\/663695170270068736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":879,"h":475,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695167883517952,"id_str":"663695167883517952","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","url":"https:\/\/t.co\/kY70IB2nvc","display_url":"pic.twitter.com\/kY70IB2nvc","expanded_url":"http:\/\/twitter.com\/Govt_Women\/status\/663695170270068736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":879,"h":475,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PayGapPledge","indices":[32,45]},{"text":"EqualPayDay","indices":[66,78]}],"urls":[],"user_mentions":[{"screen_name":"Govt_Women","name":"Women and Equalities","id":2343744523,"id_str":"2343744523","indices":[3,14]},{"screen_name":"NickyMorgan01","name":"Nicky Morgan ","id":34940114,"id_str":"34940114","indices":[17,31]},{"screen_name":"fawcettsociety","name":"Fawcett Society","id":20977851,"id_str":"20977851","indices":[50,65]}],"symbols":[],"media":[{"id":663695167883517952,"id_str":"663695167883517952","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","url":"https:\/\/t.co\/kY70IB2nvc","display_url":"pic.twitter.com\/kY70IB2nvc","expanded_url":"http:\/\/twitter.com\/Govt_Women\/status\/663695170270068736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":879,"h":475,"resize":"fit"}},"source_status_id":663695170270068736,"source_status_id_str":"663695170270068736","source_user_id":2343744523,"source_user_id_str":"2343744523"}]},"extended_entities":{"media":[{"id":663695167883517952,"id_str":"663695167883517952","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXrPSDXIAATORN.png","url":"https:\/\/t.co\/kY70IB2nvc","display_url":"pic.twitter.com\/kY70IB2nvc","expanded_url":"http:\/\/twitter.com\/Govt_Women\/status\/663695170270068736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":324,"resize":"fit"},"large":{"w":879,"h":475,"resize":"fit"}},"source_status_id":663695170270068736,"source_status_id_str":"663695170270068736","source_user_id":2343744523,"source_user_id_str":"2343744523"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080071658"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043328798720,"id_str":"663728043328798720","text":"#pantyhouse Baby plaHys with her perky boobies. Teen pulls down https:\/\/t.co\/uQA5Qnuche","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301137605,"id_str":"3301137605","name":"Kate Rosa","screen_name":"katexrosa","location":"Phoenix, AZ","url":null,"description":"Twitter page of Kate Rosa. Playmate-Nominated for the 2011 AVN award for Performer of the Year-XBIZ Award Winner","protected":false,"verified":false,"followers_count":3092,"friends_count":2224,"listed_count":6,"favourites_count":0,"statuses_count":8275,"created_at":"Thu May 28 01:36:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BA03F3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608755684239278080\/7THUXBZn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608755684239278080\/7THUXBZn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301137605\/1433973487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pantyhouse","indices":[0,11]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728042993319938,"id_str":"663728042993319938","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI3YVAAIy-Q2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI3YVAAIy-Q2.jpg","url":"https:\/\/t.co\/uQA5Qnuche","display_url":"pic.twitter.com\/uQA5Qnuche","expanded_url":"http:\/\/twitter.com\/katexrosa\/status\/663728043328798720\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728042993319938,"id_str":"663728042993319938","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI3YVAAIy-Q2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI3YVAAIy-Q2.jpg","url":"https:\/\/t.co\/uQA5Qnuche","display_url":"pic.twitter.com\/uQA5Qnuche","expanded_url":"http:\/\/twitter.com\/katexrosa\/status\/663728043328798720\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080071657"} +{"created_at":"Mon Nov 09 14:41:11 +0000 2015","id":663728043337248768,"id_str":"663728043337248768","text":"buenos d\u00edas #ViviendoElaquiyAhora https:\/\/t.co\/xSNy3mLgRV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2382169628,"id_str":"2382169628","name":"Tony Arias","screen_name":"TonyArias77","location":null,"url":"https:\/\/www.facebook.com\/anthon.arias","description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":278,"listed_count":0,"favourites_count":2,"statuses_count":393,"created_at":"Mon Mar 10 13:46:20 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501416785812271105\/6N23Z_GP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501416785812271105\/6N23Z_GP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2382169628\/1399394796","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ViviendoElaquiyAhora","indices":[12,33]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728041407832064,"id_str":"663728041407832064","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIxeUYAAOWDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIxeUYAAOWDk.jpg","url":"https:\/\/t.co\/xSNy3mLgRV","display_url":"pic.twitter.com\/xSNy3mLgRV","expanded_url":"http:\/\/twitter.com\/TonyArias77\/status\/663728043337248768\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":306,"resize":"fit"},"medium":{"w":600,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728041407832064,"id_str":"663728041407832064","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIxeUYAAOWDk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIxeUYAAOWDk.jpg","url":"https:\/\/t.co\/xSNy3mLgRV","display_url":"pic.twitter.com\/xSNy3mLgRV","expanded_url":"http:\/\/twitter.com\/TonyArias77\/status\/663728043337248768\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":306,"resize":"fit"},"medium":{"w":600,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080071659"} +{"delete":{"status":{"id":644641061902643200,"id_str":"644641061902643200","user_id":2286087246,"user_id_str":"2286087246"},"timestamp_ms":"1447080072452"}} +{"delete":{"status":{"id":520495032197857280,"id_str":"520495032197857280","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080072541"}} +{"delete":{"status":{"id":663727657486385153,"id_str":"663727657486385153","user_id":530832197,"user_id_str":"530832197"},"timestamp_ms":"1447080072556"}} +{"delete":{"status":{"id":655312205911461888,"id_str":"655312205911461888","user_id":3218016098,"user_id_str":"3218016098"},"timestamp_ms":"1447080072596"}} +{"delete":{"status":{"id":663727825245990912,"id_str":"663727825245990912","user_id":2230328277,"user_id_str":"2230328277"},"timestamp_ms":"1447080072612"}} +{"delete":{"status":{"id":663727955286233088,"id_str":"663727955286233088","user_id":3119076896,"user_id_str":"3119076896"},"timestamp_ms":"1447080072634"}} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047527436288,"id_str":"663728047527436288","text":"RT @KaiHolloway: satanic\/pedo #hampstead residents raise \u00a3180k for private police force\nhttps:\/\/t.co\/DczMAzHtRa\n\nhttps:\/\/t.co\/cKQzdQ4Q7q\n#p\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2717675192,"id_str":"2717675192","name":"paula bar","screen_name":"bunner44","location":null,"url":null,"description":"wife, mother *grateful * Natural law * on a mission for the good of all humanity","protected":false,"verified":false,"followers_count":658,"friends_count":713,"listed_count":10,"favourites_count":1064,"statuses_count":2946,"created_at":"Fri Aug 08 18:16:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656539964868534273\/IH7DN6I-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656539964868534273\/IH7DN6I-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2717675192\/1435170325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:47 +0000 2015","id":663716615838687232,"id_str":"663716615838687232","text":"satanic\/pedo #hampstead residents raise \u00a3180k for private police force\nhttps:\/\/t.co\/DczMAzHtRa\n\nhttps:\/\/t.co\/cKQzdQ4Q7q\n#peacekeeprs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462751117,"id_str":"462751117","name":"no one special","screen_name":"KaiHolloway","location":null,"url":"https:\/\/www.indiegogo.com\/individuals\/9403626\/campaigns","description":"family man. survivor. ex military. now soldier for all people and advocate of real news. please see my blog at http:\/\/peaceofficermostwantedlist.wordpress.com\/","protected":false,"verified":false,"followers_count":7535,"friends_count":5825,"listed_count":121,"favourites_count":19225,"statuses_count":53217,"created_at":"Fri Jan 13 09:30:40 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661867421989535744\/c0JlHJTW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661867421989535744\/c0JlHJTW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462751117\/1446213214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"hampstead","indices":[13,23]},{"text":"peacekeeprs","indices":[120,132]}],"urls":[{"url":"https:\/\/t.co\/DczMAzHtRa","expanded_url":"http:\/\/www.standard.co.uk\/news\/london\/hampstead-residents-crowdfund-for-dedicated-police-officers-and-raise-180000-in-six-weeks-a3108711.html","display_url":"standard.co.uk\/news\/london\/ha\u2026","indices":[71,94]},{"url":"https:\/\/t.co\/cKQzdQ4Q7q","expanded_url":"https:\/\/www.indiegogo.com\/projects\/peacekeeper-task-force-for-nottingham\/x\/9403626#\/","display_url":"indiegogo.com\/projects\/peace\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hampstead","indices":[30,40]},{"text":"peacekeeprs","indices":[137,140]}],"urls":[{"url":"https:\/\/t.co\/DczMAzHtRa","expanded_url":"http:\/\/www.standard.co.uk\/news\/london\/hampstead-residents-crowdfund-for-dedicated-police-officers-and-raise-180000-in-six-weeks-a3108711.html","display_url":"standard.co.uk\/news\/london\/ha\u2026","indices":[88,111]},{"url":"https:\/\/t.co\/cKQzdQ4Q7q","expanded_url":"https:\/\/www.indiegogo.com\/projects\/peacekeeper-task-force-for-nottingham\/x\/9403626#\/","display_url":"indiegogo.com\/projects\/peace\u2026","indices":[113,136]}],"user_mentions":[{"screen_name":"KaiHolloway","name":"no one special","id":462751117,"id_str":"462751117","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072658"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047535820800,"id_str":"663728047535820800","text":"RT @VTVcanal8: #VideoVTV | La Hojilla: Micro: Conspiraciones contra la Revoluci\u00f3n Bolivariana https:\/\/t.co\/SspW6os2id https:\/\/t.co\/Tad4omFh\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360184724,"id_str":"360184724","name":"Carlos Aliaga","screen_name":"carlitosaliaga","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":165,"friends_count":257,"listed_count":2,"favourites_count":11,"statuses_count":2925,"created_at":"Mon Aug 22 20:35:57 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583401447355715584\/W8XVBf5W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583401447355715584\/W8XVBf5W_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:12 +0000 2015","id":663695079647789057,"id_str":"663695079647789057","text":"#VideoVTV | La Hojilla: Micro: Conspiraciones contra la Revoluci\u00f3n Bolivariana https:\/\/t.co\/SspW6os2id https:\/\/t.co\/Tad4omFhwR","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118864905,"id_str":"118864905","name":"VTV CANAL 8","screen_name":"VTVcanal8","location":"Venezuela","url":"http:\/\/vtv.gob.ve","description":"Cuenta oficial de Venezolana de Televisi\u00f3n | #MasVTVMasRevolucion | http:\/\/t.co\/a5JJYTXIYk | http:\/\/t.co\/ej8nGmY9sF | http:\/\/t.co\/id0Hf5Prai","protected":false,"verified":true,"followers_count":941741,"friends_count":633,"listed_count":5698,"favourites_count":887,"statuses_count":495680,"created_at":"Mon Mar 01 23:44:14 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599654679937568768\/UPDoaGgB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599654679937568768\/UPDoaGgB.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534444215829147648\/18aOkFfQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534444215829147648\/18aOkFfQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118864905\/1446929041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[{"text":"VideoVTV","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/SspW6os2id","expanded_url":"http:\/\/youtu.be\/-h2ypVT74dw","display_url":"youtu.be\/-h2ypVT74dw","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663511566508269568,"id_str":"663511566508269568","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","url":"https:\/\/t.co\/Tad4omFhwR","display_url":"pic.twitter.com\/Tad4omFhwR","expanded_url":"http:\/\/twitter.com\/VTVcanal8\/status\/663511567326183424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":439,"resize":"fit"},"large":{"w":720,"h":528,"resize":"fit"}},"source_status_id":663511567326183424,"source_status_id_str":"663511567326183424","source_user_id":118864905,"source_user_id_str":"118864905"}]},"extended_entities":{"media":[{"id":663511566508269568,"id_str":"663511566508269568","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","url":"https:\/\/t.co\/Tad4omFhwR","display_url":"pic.twitter.com\/Tad4omFhwR","expanded_url":"http:\/\/twitter.com\/VTVcanal8\/status\/663511567326183424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":439,"resize":"fit"},"large":{"w":720,"h":528,"resize":"fit"}},"source_status_id":663511567326183424,"source_status_id_str":"663511567326183424","source_user_id":118864905,"source_user_id_str":"118864905"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VideoVTV","indices":[15,24]}],"urls":[{"url":"https:\/\/t.co\/SspW6os2id","expanded_url":"http:\/\/youtu.be\/-h2ypVT74dw","display_url":"youtu.be\/-h2ypVT74dw","indices":[94,117]}],"user_mentions":[{"screen_name":"VTVcanal8","name":"VTV CANAL 8","id":118864905,"id_str":"118864905","indices":[3,13]}],"symbols":[],"media":[{"id":663511566508269568,"id_str":"663511566508269568","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","url":"https:\/\/t.co\/Tad4omFhwR","display_url":"pic.twitter.com\/Tad4omFhwR","expanded_url":"http:\/\/twitter.com\/VTVcanal8\/status\/663511567326183424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":439,"resize":"fit"},"large":{"w":720,"h":528,"resize":"fit"}},"source_status_id":663511567326183424,"source_status_id_str":"663511567326183424","source_user_id":118864905,"source_user_id_str":"118864905"}]},"extended_entities":{"media":[{"id":663511566508269568,"id_str":"663511566508269568","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVEQRoWoAALyqX.png","url":"https:\/\/t.co\/Tad4omFhwR","display_url":"pic.twitter.com\/Tad4omFhwR","expanded_url":"http:\/\/twitter.com\/VTVcanal8\/status\/663511567326183424\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":439,"resize":"fit"},"large":{"w":720,"h":528,"resize":"fit"}},"source_status_id":663511567326183424,"source_status_id_str":"663511567326183424","source_user_id":118864905,"source_user_id_str":"118864905"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072660"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047556861952,"id_str":"663728047556861952","text":"RT @bestnialIpicss: DRUNK NIALL https:\/\/t.co\/ZXfpf0Twqy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354955234,"id_str":"2354955234","name":"never enough","screen_name":"horanzix","location":"\/\/wlkp","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"you'll never feel like you're alone,\ni'll make this feel like home \/\/ \n[ waiting for 2017 ]","protected":false,"verified":false,"followers_count":1879,"friends_count":1789,"listed_count":6,"favourites_count":10707,"statuses_count":45800,"created_at":"Fri Feb 21 15:26:18 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550004537704988672\/jfckM2dT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550004537704988672\/jfckM2dT.jpeg","profile_background_tile":false,"profile_link_color":"000011","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660804789131943936\/o2mhCT09_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660804789131943936\/o2mhCT09_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2354955234\/1446383091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:30:25 +0000 2015","id":663680035153436673,"id_str":"663680035153436673","text":"DRUNK NIALL https:\/\/t.co\/ZXfpf0Twqy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792891226,"id_str":"2792891226","name":"best niall pics","screen_name":"bestnialIpicss","location":null,"url":null,"description":"posting pics of Niall to explain how incredibly beautiful he is, enjoy! :)","protected":false,"verified":false,"followers_count":97890,"friends_count":190,"listed_count":349,"favourites_count":2951,"statuses_count":7384,"created_at":"Sat Sep 06 01:39:55 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557003023210123265\/uzXlPKqE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557003023210123265\/uzXlPKqE.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663410077689344000\/PHtQ97NV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663410077689344000\/PHtQ97NV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792891226\/1434136969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":404,"favorite_count":418,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663680032431280128,"id_str":"663680032431280128","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","url":"https:\/\/t.co\/ZXfpf0Twqy","display_url":"pic.twitter.com\/ZXfpf0Twqy","expanded_url":"http:\/\/twitter.com\/bestnialIpicss\/status\/663680035153436673\/photo\/1","type":"photo","sizes":{"medium":{"w":547,"h":625,"resize":"fit"},"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":625,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663680032431280128,"id_str":"663680032431280128","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","url":"https:\/\/t.co\/ZXfpf0Twqy","display_url":"pic.twitter.com\/ZXfpf0Twqy","expanded_url":"http:\/\/twitter.com\/bestnialIpicss\/status\/663680035153436673\/photo\/1","type":"photo","sizes":{"medium":{"w":547,"h":625,"resize":"fit"},"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":625,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bestnialIpicss","name":"best niall pics","id":2792891226,"id_str":"2792891226","indices":[3,18]}],"symbols":[],"media":[{"id":663680032431280128,"id_str":"663680032431280128","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","url":"https:\/\/t.co\/ZXfpf0Twqy","display_url":"pic.twitter.com\/ZXfpf0Twqy","expanded_url":"http:\/\/twitter.com\/bestnialIpicss\/status\/663680035153436673\/photo\/1","type":"photo","sizes":{"medium":{"w":547,"h":625,"resize":"fit"},"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":625,"resize":"fit"}},"source_status_id":663680035153436673,"source_status_id_str":"663680035153436673","source_user_id":2792891226,"source_user_id_str":"2792891226"}]},"extended_entities":{"media":[{"id":663680032431280128,"id_str":"663680032431280128","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXdeSGWEAA3kqO.jpg","url":"https:\/\/t.co\/ZXfpf0Twqy","display_url":"pic.twitter.com\/ZXfpf0Twqy","expanded_url":"http:\/\/twitter.com\/bestnialIpicss\/status\/663680035153436673\/photo\/1","type":"photo","sizes":{"medium":{"w":547,"h":625,"resize":"fit"},"small":{"w":340,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":625,"resize":"fit"}},"source_status_id":663680035153436673,"source_status_id_str":"663680035153436673","source_user_id":2792891226,"source_user_id_str":"2792891226"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072665"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523254272,"id_str":"663728047523254272","text":"Heitor me deu um abra\u00e7o hj \ud83d\udc95 migo tava carente \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3153345998,"id_str":"3153345998","name":"Morena \u2693","screen_name":"EscoutoPaola","location":"Cec\u00edlia, Viam\u00e3o","url":null,"description":"De sempre pra sempre ,melhor das melhores,amigas irm\u00e3s n\u00e3o de sangue mais de cora\u00e7\u00e3o, hj eu nao sei viver sem a tua amizade !Te amoooo melhor\u2764\u2764 @Marceladauinhe1","protected":false,"verified":false,"followers_count":178,"friends_count":161,"listed_count":0,"favourites_count":5264,"statuses_count":14708,"created_at":"Mon Apr 13 19:33:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663088046028554240\/MGTcus8K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663088046028554240\/MGTcus8K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3153345998\/1446813747","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047548407809,"id_str":"663728047548407809","text":"RT @bjstrouxas: Ela quica, ela para, rebola, ela trava. Ela abre, ela fecha, na ponta ela fica. \ud83d\udc6f\ud83d\udc83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2946311675,"id_str":"2946311675","name":"Um Engel","screen_name":"08Elias_Pedro","location":"Rio Grande do Sul, Brasil","url":null,"description":"A apar\u00eancia vai te chamar aten\u00e7\u00e3o por minutos . O car\u00e1ter vai te surpreender pela vida toda . . .\nWhats = 055 96327806","protected":false,"verified":false,"followers_count":69,"friends_count":137,"listed_count":0,"favourites_count":505,"statuses_count":2632,"created_at":"Sun Dec 28 19:28:31 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653407936820158465\/zpNX-bt9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653407936820158465\/zpNX-bt9.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663167528659755008\/F2cctsyR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663167528659755008\/F2cctsyR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2946311675\/1440536069","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 14:48:09 +0000 2015","id":662642632414380032,"id_str":"662642632414380032","text":"Ela quica, ela para, rebola, ela trava. Ela abre, ela fecha, na ponta ela fica. \ud83d\udc6f\ud83d\udc83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2258330116,"id_str":"2258330116","name":"\u273d","screen_name":"bjstrouxas","location":null,"url":null,"description":"faz assim, chega beijando","protected":false,"verified":false,"followers_count":112570,"friends_count":8599,"listed_count":32,"favourites_count":5082,"statuses_count":2318,"created_at":"Thu Jan 02 15:29:17 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495632425213390848\/vYUmHfeJ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495632425213390848\/vYUmHfeJ.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660067899239976960\/g27nBlmo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660067899239976960\/g27nBlmo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258330116\/1442508178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":478,"favorite_count":318,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bjstrouxas","name":"\u273d","id":2258330116,"id_str":"2258330116","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072663"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544254464,"id_str":"663728047544254464","text":"@patrickbobo Either way, can't wait to see how it unfolds!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662822643792519168,"in_reply_to_status_id_str":"662822643792519168","in_reply_to_user_id":100643440,"in_reply_to_user_id_str":"100643440","in_reply_to_screen_name":"patrickbobo","user":{"id":22410631,"id_str":"22410631","name":"Chlo\u00e9","screen_name":"catclo","location":"Chattanooga! ","url":"https:\/\/www.facebook.com\/pages\/Chloe-Morrison-Noogacom\/157766424282955","description":"Writer\/reporter. Free-spirited control freak. \r\nRTs don't necessarily indicate support\/agreement.","protected":false,"verified":false,"followers_count":2777,"friends_count":3078,"listed_count":106,"favourites_count":4033,"statuses_count":34652,"created_at":"Sun Mar 01 21:42:54 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601592146185953280\/3nktCngz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601592146185953280\/3nktCngz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22410631\/1432267463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"patrickbobo","name":"Patrick Bobo","id":100643440,"id_str":"100643440","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047548407808,"id_str":"663728047548407808","text":"RT @FKC__: Me siento super frustrada por no saber solucionar mi vida ahora mismo xd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2746658358,"id_str":"2746658358","name":"Adru","screen_name":"Adriana_ghh4","location":null,"url":null,"description":"mucho, mucho ruido, tanto, tanto ruido, y al final soledad.\n\nig: a_ghh4 @MelendiOficial","protected":false,"verified":false,"followers_count":406,"friends_count":365,"listed_count":2,"favourites_count":3777,"statuses_count":5839,"created_at":"Tue Aug 19 21:08:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526321766960869377\/5CaC5V_R.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526321766960869377\/5CaC5V_R.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663503085034151936\/WkkOaGKR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663503085034151936\/WkkOaGKR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2746658358\/1447028104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:39 +0000 2015","id":663711552260939776,"id_str":"663711552260939776","text":"Me siento super frustrada por no saber solucionar mi vida ahora mismo xd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":529361750,"id_str":"529361750","name":"all back","screen_name":"FKC__","location":null,"url":null,"description":"te tengo en la cabeza y te prefiero en la almohada ;","protected":false,"verified":false,"followers_count":1140,"friends_count":397,"listed_count":22,"favourites_count":8944,"statuses_count":28737,"created_at":"Mon Mar 19 12:57:15 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F500D4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521972864346370048\/h7D29k9Y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521972864346370048\/h7D29k9Y.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660468730514833409\/EktJ_Kmp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660468730514833409\/EktJ_Kmp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/529361750\/1446302782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FKC__","name":"all back","id":529361750,"id_str":"529361750","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072663"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523278848,"id_str":"663728047523278848","text":"Besitos a todos los que est\u00e1n en el cole desde mi cama\ud83d\ude18\ud83d\ude18\ud83d\ude18\ud83d\ude1a\u270c\u270c\ud83d\udc8b\ud83d\udc98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1377468932,"id_str":"1377468932","name":"DeMartinF\u2665","screen_name":"MaguiMarto12","location":null,"url":null,"description":"Belgrano de mi Bida\u2665\/\/12 primaveras\/\/Hockey\/\/1,52\/\/Ritmos,Bachata.\nW A R R I O R","protected":false,"verified":false,"followers_count":410,"friends_count":419,"listed_count":0,"favourites_count":1152,"statuses_count":6257,"created_at":"Wed Apr 24 16:41:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658727488579833856\/FLbAZhoI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658727488579833856\/FLbAZhoI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1377468932\/1436688315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00f84d414936f28e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f84d414936f28e.json","place_type":"city","name":"Capital - C\u00f3rdoba","full_name":"Capital - C\u00f3rdoba, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-64.319500,-31.523576],[-64.319500,-31.307337],[-64.076643,-31.307337],[-64.076643,-31.523576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047561056256,"id_str":"663728047561056256","text":"\u0627\u0644\u0633\u0644\u0627\u0645 \u0639\u0644\u064a\u0643\u0645 \u062c\u0645\u064a\u0639\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2307505991,"id_str":"2307505991","name":"\u0645\u062d\u0645\u062f\u064a\u0634\u2716","screen_name":"mhbobe_A_11","location":null,"url":null,"description":"http:\/\/ask.fm\/mohammedalharbi_556\n# \u0627\u0644\u0642\u0646\u0641\u0630\u0647","protected":false,"verified":false,"followers_count":4894,"friends_count":5688,"listed_count":3,"favourites_count":5420,"statuses_count":39024,"created_at":"Mon Jan 27 10:57:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663517014405873664\/7FKn8oL__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663517014405873664\/7FKn8oL__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307505991\/1427234044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080072666"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523139584,"id_str":"663728047523139584","text":"@tomato_1921 \u6fc0\u3057\u904e\u304e\u305f\u304b\u306a\uff1f\uff1f\uff1f\uff1f\uff1f(\u610f\u5473\u6df1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663680801012256768,"in_reply_to_status_id_str":"663680801012256768","in_reply_to_user_id":392745407,"in_reply_to_user_id_str":"392745407","in_reply_to_screen_name":"tomato_1921","user":{"id":2256657108,"id_str":"2256657108","name":"\u307f\u3046\u306a\uff20\u305d\u3089\u308b\u3093\u308b\u3093","screen_name":"MaEinekleine","location":"\u795e\u5948\u5ddd\u770c\u76f8\u6a21\u539f\u5e02(\u90fd\u5185\u9060\u5f81\u591a\u3081)","url":"http:\/\/twpf.jp\/MaEinekleine","description":"\u76ee\u304c\u6016\u3044(2015\u5e749\u67087\u65e5\u65e5\u9054\u6210)\u3001\u821e\u4e3b(2014\u5e7411\u670816\u65e5\u9054\u6210)\u3001ReachAP(2014\u5e7412\u67087\u65e5\u9054\u6210)\u7a0b\u5ea6\u306e\u5b9f\u529b\uff65:*+.\\(( \u00b0\u03c9\u00b0 ))\/.:+ \u6b4c\u3068\u7518\u3044\u3082\u306e\u3068\u53ef\u611b\u3044\u5973\u306e\u5b50\u304c\u597d\u304d\u3067\u3059follow\u3054\u81ea\u7531\u306b\\( \u00a8\u032e )\/\u2661","protected":false,"verified":false,"followers_count":975,"friends_count":935,"listed_count":29,"favourites_count":26148,"statuses_count":64378,"created_at":"Sat Dec 21 16:11:17 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659679596791508992\/57MZRlRi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659679596791508992\/57MZRlRi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2256657108\/1445317044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tomato_1921","name":"\u3068\u307e\u3068","id":392745407,"id_str":"392745407","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552634880,"id_str":"663728047552634880","text":"@Keniagr @stuar394 me alegro que te vayan bien las inversiones...en cuanto al tema de la jodienda, tiene enmienda?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727289344114689,"in_reply_to_status_id_str":"663727289344114689","in_reply_to_user_id":143936379,"in_reply_to_user_id_str":"143936379","in_reply_to_screen_name":"Keniagr","user":{"id":3402409793,"id_str":"3402409793","name":"Investing","screen_name":"bolsa_fondos_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":238,"friends_count":174,"listed_count":5,"favourites_count":2235,"statuses_count":1834,"created_at":"Tue Aug 04 08:20:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656130784965861377\/_CCuKhep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656130784965861377\/_CCuKhep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3402409793\/1441824256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Keniagr","name":"J.CarrillodeAlbornoz","id":143936379,"id_str":"143936379","indices":[0,8]},{"screen_name":"stuar394","name":"monica","id":4149582078,"id_str":"4149582078","indices":[9,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544143872,"id_str":"663728047544143872","text":"@tengMcfly lyk ko yan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727059701661696,"in_reply_to_status_id_str":"663727059701661696","in_reply_to_user_id":47584160,"in_reply_to_user_id_str":"47584160","in_reply_to_screen_name":"tengMcfly","user":{"id":2530006158,"id_str":"2530006158","name":"popsuy","screen_name":"JYaarcia","location":"tk . jcool","url":null,"description":"Dauntless","protected":false,"verified":false,"followers_count":469,"friends_count":277,"listed_count":0,"favourites_count":15528,"statuses_count":20998,"created_at":"Wed May 28 13:23:50 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494798605027250176\/eSXUbw9X.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494798605027250176\/eSXUbw9X.jpeg","profile_background_tile":true,"profile_link_color":"2BFF00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658615103961481217\/g0GgJ7Vy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658615103961481217\/g0GgJ7Vy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2530006158\/1442309675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tengMcfly","name":"justinne kim\u3164\u3164\u3164\u3164\u3164\u3164","id":47584160,"id_str":"47584160","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552634881,"id_str":"663728047552634881","text":"I posted a new photo to Facebook https:\/\/t.co\/Caf1ZCD2YN","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2166655064,"id_str":"2166655064","name":"POWER BASKETBALL ","screen_name":"powerbballclub","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":433,"friends_count":534,"listed_count":0,"favourites_count":3,"statuses_count":698,"created_at":"Thu Oct 31 13:45:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000673945861\/16ed219a0fd9087adebd34c3b4e9476f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000673945861\/16ed219a0fd9087adebd34c3b4e9476f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2166655064\/1409528835","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Caf1ZCD2YN","expanded_url":"http:\/\/fb.me\/1BPLXeVgc","display_url":"fb.me\/1BPLXeVgc","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531528193,"id_str":"663728047531528193","text":"TV\u30a2\u30cb\u30e1\u3059\u3079\u3066\u304cF\u306b\u306a\u308b\u306eOPED\u3001\u305d\u3053\u305d\u3053\u6c17\u306b\u5165\u3063\u305f\u304b\u3089YouTube\u3067MV\u4e21\u65b9\u898b\u305f\u3093\u3060\u3051\u3069\u3084\u3063\u3071\u6700\u8fd1\u306eJ-Pop\u306eMV\u3068\u304b\u30a4\u30e9\u30a4\u30e9\u3057\u304b\u3057\u306a\u3044\u306a\u2026\u2026\u30c9\u30e4\u9854\u3057\u3059\u304e\u3067\u3057\u3087","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351505156,"id_str":"351505156","name":"qrthpuv","screen_name":"qrthpuv","location":"\u307e\u304d\u3044\u3065\u307f\u6642\u7a7a","url":null,"description":"\u7f8e\u5e0cP\u3001\u9a0e\u58eb\u69d8\u3001\u304d\u304f\u3046\u3057\u3067\u3059\u3002\u5200\u3053\u305d\u81f3\u9ad8\u306e\u7f8e\u8853\u54c1","protected":false,"verified":false,"followers_count":36,"friends_count":51,"listed_count":5,"favourites_count":10,"statuses_count":15844,"created_at":"Tue Aug 09 10:20:14 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1501767408\/061026katana1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1501767408\/061026katana1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047560921088,"id_str":"663728047560921088","text":"RT @hanbinatog: \"MMA Album of the Year: EXO\"\n\njune: \"tangina sila pala exo\"\njinhwan: \"puta bat babae\" https:\/\/t.co\/dy3curuHL2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3012461604,"id_str":"3012461604","name":"2NE1 COMEBACK!","screen_name":"daraslayy","location":null,"url":null,"description":"Major daraling. Loving 2ne1 since forever. Bigbang is my ovary wrecker. YG STAN. Cheating with RedVelevet & Apink.","protected":false,"verified":false,"followers_count":169,"friends_count":314,"listed_count":1,"favourites_count":4774,"statuses_count":11791,"created_at":"Sat Feb 07 15:26:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656464628851957760\/yWXAnFmF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656464628851957760\/yWXAnFmF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012461604\/1445601905","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:29:26 +0000 2015","id":663709984132239360,"id_str":"663709984132239360","text":"\"MMA Album of the Year: EXO\"\n\njune: \"tangina sila pala exo\"\njinhwan: \"puta bat babae\" https:\/\/t.co\/dy3curuHL2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292925168,"id_str":"292925168","name":"\ucf5c\ub9b0 | coleen","screen_name":"hanbinatog","location":"yg","url":"https:\/\/vine.co\/Hanbinatog","description":"born hater | yg stan","protected":false,"verified":false,"followers_count":5669,"friends_count":353,"listed_count":31,"favourites_count":6651,"statuses_count":12975,"created_at":"Wed May 04 13:29:14 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660136802880126980\/535UKwo2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660136802880126980\/535UKwo2.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"450466","profile_text_color":"BA13ED","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661545457122803712\/a42DsZEn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661545457122803712\/a42DsZEn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292925168\/1446868991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709982915821570,"id_str":"663709982915821570","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","url":"https:\/\/t.co\/dy3curuHL2","display_url":"pic.twitter.com\/dy3curuHL2","expanded_url":"http:\/\/twitter.com\/hanbinatog\/status\/663709984132239360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":480,"h":269,"resize":"fit"},"large":{"w":480,"h":269,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709982915821570,"id_str":"663709982915821570","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","url":"https:\/\/t.co\/dy3curuHL2","display_url":"pic.twitter.com\/dy3curuHL2","expanded_url":"http:\/\/twitter.com\/hanbinatog\/status\/663709984132239360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":480,"h":269,"resize":"fit"},"large":{"w":480,"h":269,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hanbinatog","name":"\ucf5c\ub9b0 | coleen","id":292925168,"id_str":"292925168","indices":[3,14]}],"symbols":[],"media":[{"id":663709982915821570,"id_str":"663709982915821570","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","url":"https:\/\/t.co\/dy3curuHL2","display_url":"pic.twitter.com\/dy3curuHL2","expanded_url":"http:\/\/twitter.com\/hanbinatog\/status\/663709984132239360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":480,"h":269,"resize":"fit"},"large":{"w":480,"h":269,"resize":"fit"}},"source_status_id":663709984132239360,"source_status_id_str":"663709984132239360","source_user_id":292925168,"source_user_id_str":"292925168"}]},"extended_entities":{"media":[{"id":663709982915821570,"id_str":"663709982915821570","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4toWUAAIQegc.jpg","url":"https:\/\/t.co\/dy3curuHL2","display_url":"pic.twitter.com\/dy3curuHL2","expanded_url":"http:\/\/twitter.com\/hanbinatog\/status\/663709984132239360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":480,"h":269,"resize":"fit"},"large":{"w":480,"h":269,"resize":"fit"}},"source_status_id":663709984132239360,"source_status_id_str":"663709984132239360","source_user_id":292925168,"source_user_id_str":"292925168"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080072666"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523241984,"id_str":"663728047523241984","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/JpkCOQupem","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3963671052,"id_str":"3963671052","name":"Quen","screen_name":"Quen445","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":8,"listed_count":6,"favourites_count":6,"statuses_count":31899,"created_at":"Wed Oct 21 01:01:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656636764489015297\/PE5M6-Cm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3963671052\/1445389399","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727631490285569,"quoted_status_id_str":"663727631490285569","quoted_status":{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727631490285569,"id_str":"663727631490285569","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/q6DVnwFt7c","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727308998639616,"quoted_status_id_str":"663727308998639616","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/q6DVnwFt7c","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727308998639616","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/JpkCOQupem","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727631490285569","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544262656,"id_str":"663728047544262656","text":"Just posted a photo @ Estacion Via Argentina Metro De Panama https:\/\/t.co\/9ediBZptg6","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411926095,"id_str":"411926095","name":"Dixon Barrios CARP","screen_name":"Dixoncarp","location":"Caracas, Venezuela","url":null,"description":"Un apasionado de los deportes, en especial del Futbol ( Riverplatense- Madridista- Magallanero ) Instagram: Dixonriver","protected":false,"verified":false,"followers_count":1703,"friends_count":1844,"listed_count":1,"favourites_count":5465,"statuses_count":12896,"created_at":"Mon Nov 14 02:03:20 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597599315196968960\/txSgekUa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597599315196968960\/txSgekUa.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597596519747948544\/mnUwsOw0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597596519747948544\/mnUwsOw0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411926095\/1430090241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[8.98981362,-79.52203990]},"coordinates":{"type":"Point","coordinates":[-79.52203990,8.98981362]},"place":{"id":"9d8ae4b0fac2036a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9d8ae4b0fac2036a.json","place_type":"country","name":"Panam\u00e1","full_name":"Panam\u00e1","country_code":"PA","country":"Panama","bounding_box":{"type":"Polygon","coordinates":[[[-83.051445,7.203860],[-83.051445,9.639486],[-77.174110,9.639486],[-77.174110,7.203860]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9ediBZptg6","expanded_url":"https:\/\/instagram.com\/p\/93ib32S-6pJ7q8tSb_uE7x5hFO8MxaJsiJp-M0\/","display_url":"instagram.com\/p\/93ib32S-6pJ7\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047527325696,"id_str":"663728047527325696","text":"RT @coolgamirullin1: \u7f8e\u5973\u3068\u306e\u611f\u52d5\u306e\u51fa\u4f1a\u3044\uff01\uff01\uff01\n\u672c\u6c17\u3067\u3073\u3063\u304f\u308a\u3057\u307e\u3059\uff01\uff01\n\n\u21d2https:\/\/t.co\/G9M4HjSGhI\n\n\u307e\u308b\u3067\u5922\u306e\u3088\u3046\uff01\uff01\uff01\uff01 https:\/\/t.co\/op2U6lGXD3","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316078993,"id_str":"3316078993","name":"\u98ef\u6751\u61b2\u592a","screen_name":"vladfeer1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":186,"friends_count":780,"listed_count":0,"favourites_count":0,"statuses_count":16,"created_at":"Sat Aug 15 14:32:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642378849183862784\/ent4x2aF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642378849183862784\/ent4x2aF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728004498001922,"id_str":"663728004498001922","text":"\u7f8e\u5973\u3068\u306e\u611f\u52d5\u306e\u51fa\u4f1a\u3044\uff01\uff01\uff01\n\u672c\u6c17\u3067\u3073\u3063\u304f\u308a\u3057\u307e\u3059\uff01\uff01\n\n\u21d2https:\/\/t.co\/G9M4HjSGhI\n\n\u307e\u308b\u3067\u5922\u306e\u3088\u3046\uff01\uff01\uff01\uff01 https:\/\/t.co\/op2U6lGXD3","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423637739,"id_str":"3423637739","name":"\u9752\u5c71\u548c\u4e5f","screen_name":"coolgamirullin1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":429,"friends_count":868,"listed_count":2,"favourites_count":0,"statuses_count":58,"created_at":"Sat Aug 15 08:00:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642339386332327936\/X9Hmzyo-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642339386332327936\/X9Hmzyo-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G9M4HjSGhI","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G9M4HjSGhI","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[50,73]}],"user_mentions":[{"screen_name":"coolgamirullin1","name":"\u9752\u5c71\u548c\u4e5f","id":3423637739,"id_str":"3423637739","indices":[3,19]}],"symbols":[],"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}},"source_status_id":663728004498001922,"source_status_id_str":"663728004498001922","source_user_id":3423637739,"source_user_id_str":"3423637739"}]},"extended_entities":{"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}},"source_status_id":663728004498001922,"source_status_id_str":"663728004498001922","source_user_id":3423637739,"source_user_id_str":"3423637739"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072658"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047548293121,"id_str":"663728047548293121","text":"RT @ChimmyAnand: @oyunbatshonkhor @KarStark_North @Odkhuu_D @ebmbe @DaagiiGM \u0413\u044d\u0433\u044d\u044d\u043d \u043d\u0443\u0443\u0440 \u0431\u0430\u0439\u0433\u0430\u043b\u0438\u0439\u043d \u0442\u043e\u0433\u0442\u043e\u043b\u0446\u043e\u043e \u0445\u04af\u043d\u0438\u0439 \u043e\u044e\u0443\u043d \u0443\u0445\u0430\u0430\u043d\u044b \u043d\u044d\u0433\u0434\u044d\u043b \u04af\u043d\u044d\u0445\u044d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090695857,"id_str":"3090695857","name":"\u0425\u043e\u0433\u0433\u04af\u0439 \u041c\u041d\u0413 \u0431\u0430\u0439\u0433\u0430\u043b\u044c","screen_name":"KarStark_North","location":"ulaanbaatar,mongolia","url":null,"description":null,"protected":false,"verified":false,"followers_count":1879,"friends_count":2303,"listed_count":1,"favourites_count":1992,"statuses_count":1071,"created_at":"Mon Mar 16 19:04:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090695857\/1433931568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727941193326592,"id_str":"663727941193326592","text":"@oyunbatshonkhor @KarStark_North @Odkhuu_D @ebmbe @DaagiiGM \u0413\u044d\u0433\u044d\u044d\u043d \u043d\u0443\u0443\u0440 \u0431\u0430\u0439\u0433\u0430\u043b\u0438\u0439\u043d \u0442\u043e\u0433\u0442\u043e\u043b\u0446\u043e\u043e \u0445\u04af\u043d\u0438\u0439 \u043e\u044e\u0443\u043d \u0443\u0445\u0430\u0430\u043d\u044b \u043d\u044d\u0433\u0434\u044d\u043b \u04af\u043d\u044d\u0445\u044d\u044d\u0440 \u0431\u0430\u0445\u0434\u0430\u043c \u0425\u044d\u0440\u044d\u0433\u043b\u044d\u044d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727622124244992,"in_reply_to_status_id_str":"663727622124244992","in_reply_to_user_id":1638277753,"in_reply_to_user_id_str":"1638277753","in_reply_to_screen_name":"oyunbatshonkhor","user":{"id":626581872,"id_str":"626581872","name":"\u0427\u041e\u0413\u041b\u041e\u0413 \u0427\u041e\u0413\u041b\u041e\u0413","screen_name":"ChimmyAnand","location":"\u0422\u04e9\u0432 \u0410\u0437\u0438\u0439\u043d \u0446\u044d\u044d\u0436\u043d\u044d\u044d ","url":null,"description":"\u0417\u04e8\u0412 \u042f\u0412\u0411\u0410\u041b \u0417\u04e8\u04e8\u041b\u04e8\u041d \u0417\u04e8\u04e8\u04e8\u041b\u04e8\u04e8\u041d \u0417\u0410\u041c\u0411\u0423\u0423\u041b\u0418\u041d","protected":false,"verified":false,"followers_count":10372,"friends_count":3829,"listed_count":4,"favourites_count":24829,"statuses_count":44978,"created_at":"Wed Jul 04 14:27:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085788013\/a11e6237e75e758825392524ca0bd4ee.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085788013\/a11e6237e75e758825392524ca0bd4ee.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657954489089986560\/w4hGBBWS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657954489089986560\/w4hGBBWS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626581872\/1442281386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oyunbatshonkhor","name":"\u041e\u044e\u0443\u043d\u0431\u0430\u0442","id":1638277753,"id_str":"1638277753","indices":[0,16]},{"screen_name":"KarStark_North","name":"\u0425\u043e\u0433\u0433\u04af\u0439 \u041c\u041d\u0413 \u0431\u0430\u0439\u0433\u0430\u043b\u044c","id":3090695857,"id_str":"3090695857","indices":[17,32]},{"screen_name":"Odkhuu_D","name":"\u0414\u04af\u0440\u0437\u044d\u044d\u0433\u0438\u0439\u043d \u041e\u0434\u0445\u04af\u04af","id":538727067,"id_str":"538727067","indices":[33,42]},{"screen_name":"ebmbe","name":"\u0428\u0438\u043d\u044d\u043d\u0438\u0439\u0441\u043b\u044d\u043b","id":708225264,"id_str":"708225264","indices":[43,49]},{"screen_name":"DaagiiGM","name":"?","id":449567292,"id_str":"449567292","indices":[50,59]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChimmyAnand","name":"\u0427\u041e\u0413\u041b\u041e\u0413 \u0427\u041e\u0413\u041b\u041e\u0413","id":626581872,"id_str":"626581872","indices":[3,15]},{"screen_name":"oyunbatshonkhor","name":"\u041e\u044e\u0443\u043d\u0431\u0430\u0442","id":1638277753,"id_str":"1638277753","indices":[17,33]},{"screen_name":"KarStark_North","name":"\u0425\u043e\u0433\u0433\u04af\u0439 \u041c\u041d\u0413 \u0431\u0430\u0439\u0433\u0430\u043b\u044c","id":3090695857,"id_str":"3090695857","indices":[34,49]},{"screen_name":"Odkhuu_D","name":"\u0414\u04af\u0440\u0437\u044d\u044d\u0433\u0438\u0439\u043d \u041e\u0434\u0445\u04af\u04af","id":538727067,"id_str":"538727067","indices":[50,59]},{"screen_name":"ebmbe","name":"\u0428\u0438\u043d\u044d\u043d\u0438\u0439\u0441\u043b\u044d\u043b","id":708225264,"id_str":"708225264","indices":[60,66]},{"screen_name":"DaagiiGM","name":"?","id":449567292,"id_str":"449567292","indices":[67,76]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080072663"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531491328,"id_str":"663728047531491328","text":"RT @sabbun__chu: \uc96c\uc2dc\ub9c8\uce20 https:\/\/t.co\/mJSzsXdrWU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2917643389,"id_str":"2917643389","name":"\ucd78\ub9c8\ub9c8\uce20","screen_name":"jenny79tt","location":"\ub300\ud55c\ubbfc\uad6d \uc11c\uc6b8","url":null,"description":"FUB Free \uc7a1\ub355 \uc695\ud2b8\uc717\uc8fc\uc758 \uc54c\ud2f0\ub9ce\uc544\uc694 [\uc624\uc18c\ub9c8\uce20\uc0c1\/\uc740\ud63c\/\uce74\uac8c\ud504\ub85c\/\ub808\ubc85\/\ud074\uc800 \ub4f1]","protected":false,"verified":false,"followers_count":35,"friends_count":254,"listed_count":0,"favourites_count":769,"statuses_count":4785,"created_at":"Wed Dec 03 13:29:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662641485079166976\/sp05R97k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662641485079166976\/sp05R97k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2917643389\/1421831016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:28:32 +0000 2015","id":663271874386792448,"id_str":"663271874386792448","text":"\uc96c\uc2dc\ub9c8\uce20 https:\/\/t.co\/mJSzsXdrWU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2224915502,"id_str":"2224915502","name":"\uc774\uce58\ub9c8\uce20 \uc5c9\ub369\uc774\ud5cc\ud130 \uc0ac\ubfd0","screen_name":"sabbun__chu","location":"\ucf00\ucf00\uc624\ube60 \uc131\ub300 \uc548\ucabd","url":"http:\/\/ask.fm\/sabbun__chu","description":"N : \uc0ac\ubfd0\/SABBUN\/\u30b5\u30d7\u30f3 | \u4e0a\u5317 \u5065 KK \uce74\ubbf8\ud0a4\ud0c0 \ucf04 | \ub2cc\ud0c0\ub9c8\ub780\ud0c0\ub85c \ud0c0\ucf00\ucfe0\ucfe0 | \uc624\uc18c\ub9c8\uce20\uc0c1 \uc624\uc18c\uc774\uce58 \uc96c\uc2dc\uc774\uce58 | \uc870\uc6a9\ud788\ub355\uc9c8\ud558\uc790 \u3147l\u314aiM\u314f\uce20 GIRLS-\u2606","protected":false,"verified":false,"followers_count":1523,"friends_count":230,"listed_count":11,"favourites_count":8943,"statuses_count":5109,"created_at":"Sun Dec 01 12:44:26 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654125618422943744\/kL5zcWtU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654125618422943744\/kL5zcWtU.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662659344161353728\/3UlPdeCI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662659344161353728\/3UlPdeCI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2224915502\/1446543074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":250,"favorite_count":267,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663271868518891520,"id_str":"663271868518891520","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663271868518891520,"id_str":"663271868518891520","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}}},{"id":663271872012812288,"id_str":"663271872012812288","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQODVAAAsGu0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQODVAAAsGu0.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sabbun__chu","name":"\uc774\uce58\ub9c8\uce20 \uc5c9\ub369\uc774\ud5cc\ud130 \uc0ac\ubfd0","id":2224915502,"id_str":"2224915502","indices":[3,15]}],"symbols":[],"media":[{"id":663271868518891520,"id_str":"663271868518891520","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}},"source_status_id":663271874386792448,"source_status_id_str":"663271874386792448","source_user_id":2224915502,"source_user_id_str":"2224915502"}]},"extended_entities":{"media":[{"id":663271868518891520,"id_str":"663271868518891520","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQBCUAAAmxEJ.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}},"source_status_id":663271874386792448,"source_status_id_str":"663271874386792448","source_user_id":2224915502,"source_user_id_str":"2224915502"},{"id":663271872012812288,"id_str":"663271872012812288","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRqQODVAAAsGu0.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRqQODVAAAsGu0.png","url":"https:\/\/t.co\/mJSzsXdrWU","display_url":"pic.twitter.com\/mJSzsXdrWU","expanded_url":"http:\/\/twitter.com\/sabbun__chu\/status\/663271874386792448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":800,"h":1000,"resize":"fit"}},"source_status_id":663271874386792448,"source_status_id_str":"663271874386792448","source_user_id":2224915502,"source_user_id_str":"2224915502"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047535837184,"id_str":"663728047535837184","text":"LO STATO PAGA 107 MILIONI DI DEBITI DELLA VECCHIA UNIT\u00c0 https:\/\/t.co\/weiCY6Egwj","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242519025,"id_str":"3242519025","name":"SCUOLATUTTIUNITI","screen_name":"SCUOLATUTTIUNIT","location":"SUD ","url":"https:\/\/www.facebook.com\/pages\/Scuolatutti-uniti-per-resistere\/141800595854555","description":"LA LOTTA PAGA, SEMPRE!","protected":false,"verified":false,"followers_count":513,"friends_count":821,"listed_count":13,"favourites_count":4162,"statuses_count":12076,"created_at":"Fri May 08 22:31:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596805253099577344\/VYfHiGr7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596805253099577344\/VYfHiGr7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242519025\/1431124643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/weiCY6Egwj","expanded_url":"http:\/\/fb.me\/7JAnDCDmk","display_url":"fb.me\/7JAnDCDmk","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080072660"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047527362560,"id_str":"663728047527362560","text":"RT @shinshy11: \u3010\u4ea4\u63db\u3011\u30c7\u30a3\u30a2\u30e9\u30d0 AGF DIABOLIK LOVERS \u30b3\u30a4\u30f3\u30df\u30b5\u30f3\u30ac \u30a2\u30af\u30b9\u30c8\n\u8b72 \u30a2\u30ba\u30b5 \n\u6c42 \u30ab\u30eb\u30e9\n\u90fd\u5185\u624b\u6e21\u3057\u3001\u90f5\u9001\u53ef\u80fd\u3067\u3059\u3002\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e https:\/\/t.co\/RT5JwIB4Lv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164909452,"id_str":"2164909452","name":"\u307f\u308b\u304d\u30fc@\u304a\u53d6\u5f15\u57a2","screen_name":"milky_uu","location":"\u57fc\u7389\/\u6210\u4eba\u6e08\u307f\/\u793e\u4f1a\u4eba","url":null,"description":"\u304a\u53d6\u5f15\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8 \u5263\u304c\u541b \u9ed2\u7fbd\u5b9f\u5f70\/\u30e9\u30d6\u30e9\u30a4\u30d6\uff01 \u77e2\u6fa4\u306b\u3053 \u306e\u30b0\u30c3\u30ba\u3092\u30e1\u30a4\u30f3\u306b\u96c6\u3081\u3066\u304a\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":199,"friends_count":199,"listed_count":0,"favourites_count":89,"statuses_count":2192,"created_at":"Wed Oct 30 14:47:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433020844990689280\/ZZbh72Bv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433020844990689280\/ZZbh72Bv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164909452\/1393167310","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:07 +0000 2015","id":663721481910616064,"id_str":"663721481910616064","text":"\u3010\u4ea4\u63db\u3011\u30c7\u30a3\u30a2\u30e9\u30d0 AGF DIABOLIK LOVERS \u30b3\u30a4\u30f3\u30df\u30b5\u30f3\u30ac \u30a2\u30af\u30b9\u30c8\n\u8b72 \u30a2\u30ba\u30b5 \n\u6c42 \u30ab\u30eb\u30e9\n\u90fd\u5185\u624b\u6e21\u3057\u3001\u90f5\u9001\u53ef\u80fd\u3067\u3059\u3002\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e https:\/\/t.co\/RT5JwIB4Lv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1567547706,"id_str":"1567547706","name":"\u3082\u304b","screen_name":"shinshy11","location":"\u751f\u30cf\u30e0","url":"http:\/\/twpf.jp\/shinshy11","description":"20\u6b73\u2191\u2640\n\u30b7\u30f3(AMNESIA)\u7267\u5cf6\u30b7\u30e3\u30a4 \u6708\u6d6a\u30ab\u30eb\u30e9 \u2606*\u3002\n\u559c\u591a\u6751\u82f1\u68a8 \u2606*\u3002\n\u304a\u53d6\u5f15\u3082\u3053\u3061\u3089\u306e\u57a2\u3067\u3059\u3002\u2606\u30b7\u30f3 \u30b7\u30e3\u30a4\u306b\u95a2\u3057\u3066\u306f\u30b0\u30c3\u30ba\u56de\u53ce\u505c\u6b62\u4e2d\u2606\u8a73\u3057\u304f\u306f\u30d7\u30ed\u30d5\u3078","protected":false,"verified":false,"followers_count":186,"friends_count":302,"listed_count":0,"favourites_count":2287,"statuses_count":6567,"created_at":"Thu Jul 04 07:18:58 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662651665569288192\/xNi796yB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662651665569288192\/xNi796yB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1567547706\/1446702351","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721464328122368,"id_str":"663721464328122368","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","url":"https:\/\/t.co\/RT5JwIB4Lv","display_url":"pic.twitter.com\/RT5JwIB4Lv","expanded_url":"http:\/\/twitter.com\/shinshy11\/status\/663721481910616064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721464328122368,"id_str":"663721464328122368","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","url":"https:\/\/t.co\/RT5JwIB4Lv","display_url":"pic.twitter.com\/RT5JwIB4Lv","expanded_url":"http:\/\/twitter.com\/shinshy11\/status\/663721481910616064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shinshy11","name":"\u3082\u304b","id":1567547706,"id_str":"1567547706","indices":[3,13]}],"symbols":[],"media":[{"id":663721464328122368,"id_str":"663721464328122368","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","url":"https:\/\/t.co\/RT5JwIB4Lv","display_url":"pic.twitter.com\/RT5JwIB4Lv","expanded_url":"http:\/\/twitter.com\/shinshy11\/status\/663721481910616064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663721481910616064,"source_status_id_str":"663721481910616064","source_user_id":1567547706,"source_user_id_str":"1567547706"}]},"extended_entities":{"media":[{"id":663721464328122368,"id_str":"663721464328122368","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDJ78UcAAGTCg.jpg","url":"https:\/\/t.co\/RT5JwIB4Lv","display_url":"pic.twitter.com\/RT5JwIB4Lv","expanded_url":"http:\/\/twitter.com\/shinshy11\/status\/663721481910616064\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663721481910616064,"source_status_id_str":"663721481910616064","source_user_id":1567547706,"source_user_id_str":"1567547706"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072658"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531528192,"id_str":"663728047531528192","text":"RT @l2504l: \u0648\u0625\u0646 \u063a\u0632\u064a\u062a \u0627\u0644\u0633\u0645\u0627 \u0644\u0627 \u062a\u0643\u0633\u0628 \u0646\u062c\u0648\u0645 \n\u064a\u0627 \u062a\u062c\u064a\u0628 \u0627\u0644\u0642\u0645\u0631 \u0648\u0644\u0627 \u0628\u0644\u0627\u0647\u0627\ud83d\udcab https:\/\/t.co\/ePtgMDmNtH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465908694,"id_str":"465908694","name":"H.Al-Shehhi","screen_name":"al6eer_90","location":"UAE , RAK ","url":null,"description":"\u043d.\u0251ls\u043de\u043d\u043d\u026a","protected":false,"verified":false,"followers_count":331,"friends_count":455,"listed_count":0,"favourites_count":461,"statuses_count":10330,"created_at":"Mon Jan 16 21:24:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662273133282504706\/fhnesVSV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662273133282504706\/fhnesVSV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465908694\/1447067783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:02 +0000 2015","id":663724986494877696,"id_str":"663724986494877696","text":"\u0648\u0625\u0646 \u063a\u0632\u064a\u062a \u0627\u0644\u0633\u0645\u0627 \u0644\u0627 \u062a\u0643\u0633\u0628 \u0646\u062c\u0648\u0645 \n\u064a\u0627 \u062a\u062c\u064a\u0628 \u0627\u0644\u0642\u0645\u0631 \u0648\u0644\u0627 \u0628\u0644\u0627\u0647\u0627\ud83d\udcab https:\/\/t.co\/ePtgMDmNtH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267360416,"id_str":"3267360416","name":"\u0660\u0664","screen_name":"l2504l","location":"Abu Dhabi","url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u062a\u0645\u0651\u0645 \u0644\u064a \u0628\u0627\u0644\u062e\u064a\u0631","protected":false,"verified":false,"followers_count":2813,"friends_count":2022,"listed_count":4,"favourites_count":27,"statuses_count":572,"created_at":"Fri Jul 03 19:03:14 +0000 2015","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656175517448564736\/Do17Fvb-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656175517448564736\/Do17Fvb-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267360416\/1446235079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00f24ae701a1207b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f24ae701a1207b.json","place_type":"admin","name":"Abu Dhabi","full_name":"Abu Dhabi, United Arab Emirates","country_code":"AE","country":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629","bounding_box":{"type":"Polygon","coordinates":[[[51.293874,22.626139],[51.293874,25.163959],[56.017546,25.163959],[56.017546,22.626139]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":654556021453623296,"id_str":"654556021453623296","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","url":"https:\/\/t.co\/ePtgMDmNtH","display_url":"pic.twitter.com\/ePtgMDmNtH","expanded_url":"http:\/\/twitter.com\/LIXXVIII\/status\/654556212860715008\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654556212860715008,"source_status_id_str":"654556212860715008","source_user_id":544969211,"source_user_id_str":"544969211"}]},"extended_entities":{"media":[{"id":654556021453623296,"id_str":"654556021453623296","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","url":"https:\/\/t.co\/ePtgMDmNtH","display_url":"pic.twitter.com\/ePtgMDmNtH","expanded_url":"http:\/\/twitter.com\/LIXXVIII\/status\/654556212860715008\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654556212860715008,"source_status_id_str":"654556212860715008","source_user_id":544969211,"source_user_id_str":"544969211","video_info":{"aspect_ratio":[1,1],"duration_millis":14615,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/pl\/-4AIxdD6EGYB49gH.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/pl\/-4AIxdD6EGYB49gH.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/480x480\/rAmi8wqOlRXGSWOE.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/480x480\/rAmi8wqOlRXGSWOE.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/240x240\/v9sE-0OdrupxJ4w9.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"l2504l","name":"\u0660\u0664","id":3267360416,"id_str":"3267360416","indices":[3,10]}],"symbols":[],"media":[{"id":654556021453623296,"id_str":"654556021453623296","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","url":"https:\/\/t.co\/ePtgMDmNtH","display_url":"pic.twitter.com\/ePtgMDmNtH","expanded_url":"http:\/\/twitter.com\/LIXXVIII\/status\/654556212860715008\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654556212860715008,"source_status_id_str":"654556212860715008","source_user_id":544969211,"source_user_id_str":"544969211"}]},"extended_entities":{"media":[{"id":654556021453623296,"id_str":"654556021453623296","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/654556021453623296\/pu\/img\/YXHd9h5cA6p-uqkq.jpg","url":"https:\/\/t.co\/ePtgMDmNtH","display_url":"pic.twitter.com\/ePtgMDmNtH","expanded_url":"http:\/\/twitter.com\/LIXXVIII\/status\/654556212860715008\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":654556212860715008,"source_status_id_str":"654556212860715008","source_user_id":544969211,"source_user_id_str":"544969211","video_info":{"aspect_ratio":[1,1],"duration_millis":14615,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/pl\/-4AIxdD6EGYB49gH.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/pl\/-4AIxdD6EGYB49gH.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/480x480\/rAmi8wqOlRXGSWOE.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/480x480\/rAmi8wqOlRXGSWOE.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/654556021453623296\/pu\/vid\/240x240\/v9sE-0OdrupxJ4w9.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047556706304,"id_str":"663728047556706304","text":"RT @GeniusFootball: A young blind boy recognises every Barcelona player by touching them \ud83d\ude4c\ud83c\udffd https:\/\/t.co\/Omj9uz7sVF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1210010863,"id_str":"1210010863","name":"LordHoncho6","screen_name":"JorgeVieraFTW","location":"Illinois, USA","url":null,"description":"Freedom That Waits","protected":false,"verified":false,"followers_count":336,"friends_count":687,"listed_count":0,"favourites_count":203,"statuses_count":1794,"created_at":"Fri Feb 22 22:52:22 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661781147605692416\/kulZl5Gr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661781147605692416\/kulZl5Gr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1210010863\/1446616395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:38:10 +0000 2015","id":663606489525825537,"id_str":"663606489525825537","text":"A young blind boy recognises every Barcelona player by touching them \ud83d\ude4c\ud83c\udffd https:\/\/t.co\/Omj9uz7sVF","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":985172054,"id_str":"985172054","name":"GeniusFootball","screen_name":"GeniusFootball","location":"Global","url":null,"description":"Bringing you the best stats, facts, pictures and videos! Contact: higeniusfootball@gmail.com *Parody*","protected":false,"verified":false,"followers_count":777511,"friends_count":492,"listed_count":2488,"favourites_count":644,"statuses_count":35596,"created_at":"Sun Dec 02 18:47:35 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167677834\/sRUYanwM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167677834\/sRUYanwM.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422821516019920896\/qFEPUboh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422821516019920896\/qFEPUboh_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":700,"favorite_count":727,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":642770710381862912,"id_str":"642770710381862912","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","url":"https:\/\/t.co\/Omj9uz7sVF","display_url":"pic.twitter.com\/Omj9uz7sVF","expanded_url":"http:\/\/twitter.com\/TrueSoccerLife\/status\/642771234619568128\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":642771234619568128,"source_status_id_str":"642771234619568128","source_user_id":2383005914,"source_user_id_str":"2383005914"}]},"extended_entities":{"media":[{"id":642770710381862912,"id_str":"642770710381862912","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","url":"https:\/\/t.co\/Omj9uz7sVF","display_url":"pic.twitter.com\/Omj9uz7sVF","expanded_url":"http:\/\/twitter.com\/TrueSoccerLife\/status\/642771234619568128\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":642771234619568128,"source_status_id_str":"642771234619568128","source_user_id":2383005914,"source_user_id_str":"2383005914","video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/640x360\/Y0YJuZLGZ4jDFIN4.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/320x180\/WwVRwbzFphHOD2Dw.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/640x360\/Y0YJuZLGZ4jDFIN4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/pl\/Uw8rWfVt8-xcAnmX.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/pl\/Uw8rWfVt8-xcAnmX.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GeniusFootball","name":"GeniusFootball","id":985172054,"id_str":"985172054","indices":[3,18]}],"symbols":[],"media":[{"id":642770710381862912,"id_str":"642770710381862912","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","url":"https:\/\/t.co\/Omj9uz7sVF","display_url":"pic.twitter.com\/Omj9uz7sVF","expanded_url":"http:\/\/twitter.com\/TrueSoccerLife\/status\/642771234619568128\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":642771234619568128,"source_status_id_str":"642771234619568128","source_user_id":2383005914,"source_user_id_str":"2383005914"}]},"extended_entities":{"media":[{"id":642770710381862912,"id_str":"642770710381862912","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642770710381862912\/pu\/img\/G-www9B5IG_0gU_u.jpg","url":"https:\/\/t.co\/Omj9uz7sVF","display_url":"pic.twitter.com\/Omj9uz7sVF","expanded_url":"http:\/\/twitter.com\/TrueSoccerLife\/status\/642771234619568128\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":642771234619568128,"source_status_id_str":"642771234619568128","source_user_id":2383005914,"source_user_id_str":"2383005914","video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/640x360\/Y0YJuZLGZ4jDFIN4.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/320x180\/WwVRwbzFphHOD2Dw.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/vid\/640x360\/Y0YJuZLGZ4jDFIN4.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/pl\/Uw8rWfVt8-xcAnmX.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/642770710381862912\/pu\/pl\/Uw8rWfVt8-xcAnmX.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072665"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552499712,"id_str":"663728047552499712","text":"RT @eshin_10: \u30b7\u30a6 : \u306a\u3093\u3067\u3088\u304f\u304a\u5c3b\u3092\u89e6\u308b\u306e\uff1f\ud83d\udcad\n\n\u30ec\u30a4 : \u4ef2\u826f\u3044\u304b\u3089\uff01\u30b7\u30a6\u3061\u3083\u3093\u3082\u3088\u304f\u89e6\u308b\u3058\u3083\u3093\uff01\n\n\u30b7\u30a6 : \u50d5\u306f\u30ec\u30a4\u304c\u5148\u306b\u89e6\u308b\u304b\u3089\u304a\u8fd4\u3057\u3067\u3057\u3066\u308b\u3093\u3060\u3088\uff01\n\n\u30ec\u30a4 : \u3042\u3041~\ud83d\ude33\n\n\u4eca\u66f4\u6c17\u3065\u3044\u305f\u30ec\u30a4\u3057\u3083\u3093\ud83d\ude02\u314b\u314b\u314b https:\/\/t.co\/VvwPBMvg7l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2838592411,"id_str":"2838592411","name":"\uff2d\u3063\u5b50\u2661 11\/15\u306fEXOday","screen_name":"homin_hunhanxiu","location":null,"url":null,"description":"\u2734TVXQ\u2192U-know\u2764v(\u00b4\u30fbJ\u30fb`)Bigeast(\u2235`)b\u2734\u9e7f\u6657\u03a8\u30fb\u03c9\u30fb\u03a8\u2734EXO\u2192XIUHUN(\uff89)`\u2228\u00b4(\u30fe)EXO-L(*\u00b0\u03b8\u00b0*)\u2734SR15B\u2192TEAYONG\uff06YUTA\u2665\u30e6(\u2235`)\u30ce\u304c\u611b\u3059\u308b\u4ef2\u9593\u3092\u611b\u3059\u203b\u30db\u30df\u30f3only\u57a2\u306f\u5225","protected":false,"verified":false,"followers_count":139,"friends_count":252,"listed_count":3,"favourites_count":10435,"statuses_count":29825,"created_at":"Fri Oct 03 02:26:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585667777094148096\/OC7Vjbdl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585667777094148096\/OC7Vjbdl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838592411\/1430839570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:27 +0000 2015","id":663709488566808576,"id_str":"663709488566808576","text":"\u30b7\u30a6 : \u306a\u3093\u3067\u3088\u304f\u304a\u5c3b\u3092\u89e6\u308b\u306e\uff1f\ud83d\udcad\n\n\u30ec\u30a4 : \u4ef2\u826f\u3044\u304b\u3089\uff01\u30b7\u30a6\u3061\u3083\u3093\u3082\u3088\u304f\u89e6\u308b\u3058\u3083\u3093\uff01\n\n\u30b7\u30a6 : \u50d5\u306f\u30ec\u30a4\u304c\u5148\u306b\u89e6\u308b\u304b\u3089\u304a\u8fd4\u3057\u3067\u3057\u3066\u308b\u3093\u3060\u3088\uff01\n\n\u30ec\u30a4 : \u3042\u3041~\ud83d\ude33\n\n\u4eca\u66f4\u6c17\u3065\u3044\u305f\u30ec\u30a4\u3057\u3083\u3093\ud83d\ude02\u314b\u314b\u314b https:\/\/t.co\/VvwPBMvg7l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415862093,"id_str":"2415862093","name":"\u306a\u3068\u3045~\u307e","screen_name":"eshin_10","location":"\uff2c\uff21\uff39\uff23\uff28\uff25\uff2e is \uff32\uff25\uff21\uff2c...","url":null,"description":"\u266a \u30ec\u30a4\u30ec\u30a4\u30c1\u30a7\u30f3\u30c1\u30a7\u30f3\u266a \u30ec\u30a4\u30ec\u30a4\u30c1\u30a7\u30f3\u30c1\u30a7\u30f3 \u266a \ub0b4\uac00 \uc0ac\ub791\ud558\ub294 \uc5b8\ub2c8 \u261e\u3010@chen_0921_1122\u3011\u2661","protected":false,"verified":false,"followers_count":819,"friends_count":323,"listed_count":19,"favourites_count":3612,"statuses_count":5617,"created_at":"Fri Mar 28 12:43:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548145112560054273\/KZ-lfEfp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548145112560054273\/KZ-lfEfp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415862093\/1441986604","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":304,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708133903065088,"id_str":"663708133903065088","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","url":"https:\/\/t.co\/VvwPBMvg7l","display_url":"pic.twitter.com\/VvwPBMvg7l","expanded_url":"http:\/\/twitter.com\/eshin_10\/status\/663709488566808576\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708133903065088,"id_str":"663708133903065088","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","url":"https:\/\/t.co\/VvwPBMvg7l","display_url":"pic.twitter.com\/VvwPBMvg7l","expanded_url":"http:\/\/twitter.com\/eshin_10\/status\/663709488566808576\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/640x360\/kYF2k8D7UsE7m9mB.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/pl\/TtqpuFXy6tkKbW5h.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/320x180\/ROcBuV7iwcnEOHtH.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/640x360\/kYF2k8D7UsE7m9mB.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/pl\/TtqpuFXy6tkKbW5h.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/1280x720\/5R13dndQMKM7m7Rn.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eshin_10","name":"\u306a\u3068\u3045~\u307e","id":2415862093,"id_str":"2415862093","indices":[3,12]}],"symbols":[],"media":[{"id":663708133903065088,"id_str":"663708133903065088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","url":"https:\/\/t.co\/VvwPBMvg7l","display_url":"pic.twitter.com\/VvwPBMvg7l","expanded_url":"http:\/\/twitter.com\/eshin_10\/status\/663709488566808576\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663709488566808576,"source_status_id_str":"663709488566808576","source_user_id":2415862093,"source_user_id_str":"2415862093"}]},"extended_entities":{"media":[{"id":663708133903065088,"id_str":"663708133903065088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663708133903065088\/pu\/img\/LoNjlf8eySGonMhw.jpg","url":"https:\/\/t.co\/VvwPBMvg7l","display_url":"pic.twitter.com\/VvwPBMvg7l","expanded_url":"http:\/\/twitter.com\/eshin_10\/status\/663709488566808576\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663709488566808576,"source_status_id_str":"663709488566808576","source_user_id":2415862093,"source_user_id_str":"2415862093","video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/640x360\/kYF2k8D7UsE7m9mB.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/pl\/TtqpuFXy6tkKbW5h.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/320x180\/ROcBuV7iwcnEOHtH.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/640x360\/kYF2k8D7UsE7m9mB.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/pl\/TtqpuFXy6tkKbW5h.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663708133903065088\/pu\/vid\/1280x720\/5R13dndQMKM7m7Rn.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544246272,"id_str":"663728047544246272","text":"@GabrieLeal__ enquanto voc\u00ea ta em casa eu to aqui no bar bebendo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663522773038448640,"in_reply_to_status_id_str":"663522773038448640","in_reply_to_user_id":94101663,"in_reply_to_user_id_str":"94101663","in_reply_to_screen_name":"GabrieLeal__","user":{"id":3361382103,"id_str":"3361382103","name":"Pedro Afonso","screen_name":"pedro_afonsim","location":null,"url":null,"description":"snap:pedroloro","protected":false,"verified":false,"followers_count":26,"friends_count":29,"listed_count":0,"favourites_count":29,"statuses_count":41,"created_at":"Sun Jul 05 22:48:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617828877931544576\/o0Az2uyv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617828877931544576\/o0Az2uyv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GabrieLeal__","name":"Gabriel Leal","id":94101663,"id_str":"94101663","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047535734784,"id_str":"663728047535734784","text":"RT @ImApplest: \u0e2d\u0e2d\u0e2d\u0e2d \u0e41\u0e1f\u0e19\u0e44\u0e0b\u0e15\u0e4c sweetspringkey \u0e1a\u0e2d\u0e01\u0e19\u0e49\u0e2d\u0e07\u0e04\u0e35\u0e22\u0e4c\u0e1a\u0e2d\u0e01\u0e41\u0e1c\u0e25\u0e17\u0e35\u0e48\u0e04\u0e34\u0e49\u0e27\u0e04\u0e37\u0e2d\u0e25\u0e49\u0e21 \u0e41\u0e15\u0e48\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e42\u0e2d\u0e40\u0e04 \u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e48\u0e27\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81600955,"id_str":"81600955","name":"\u30d4\u30f3\u30af\u2661","screen_name":"saybqx_","location":"121208 & 150927 ","url":null,"description":"\uac13\uc138\ube10 | \uc0e4\u3147\ub2c8 | \uc5d1\uc18c \u007b \ub9c8\ud06c\ubc40 x \ubbfc\ud0a4 \u00d7 \ucc2c\ubc31 \u007d","protected":false,"verified":false,"followers_count":1029,"friends_count":200,"listed_count":7,"favourites_count":1884,"statuses_count":106449,"created_at":"Sun Oct 11 14:07:26 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5677A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597781886757273600\/2ZqQ-d0T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597781886757273600\/2ZqQ-d0T.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FDF1E1","profile_text_color":"D00018","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661502874086543360\/Quf2WCD8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661502874086543360\/Quf2WCD8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81600955\/1446979384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:42 +0000 2015","id":663718859556261888,"id_str":"663718859556261888","text":"\u0e2d\u0e2d\u0e2d\u0e2d \u0e41\u0e1f\u0e19\u0e44\u0e0b\u0e15\u0e4c sweetspringkey \u0e1a\u0e2d\u0e01\u0e19\u0e49\u0e2d\u0e07\u0e04\u0e35\u0e22\u0e4c\u0e1a\u0e2d\u0e01\u0e41\u0e1c\u0e25\u0e17\u0e35\u0e48\u0e04\u0e34\u0e49\u0e27\u0e04\u0e37\u0e2d\u0e25\u0e49\u0e21 \u0e41\u0e15\u0e48\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e42\u0e2d\u0e40\u0e04 \u0e44\u0e21\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e48\u0e27\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":483132170,"id_str":"483132170","name":"ImApplest (^._.^)~","screen_name":"ImApplest","location":null,"url":null,"description":"\u0e40\u0e21\u0e19\u0e40\u0e25\u0e32\u0e17\u0e33\u0e2d\u0e30\u0e44\u0e25\u0e01\u0e47\u0e14\u0e39\u0e14\u0e35-Heechul\/Key I'm a Petal in a SHINee World~ I\u2764\ufe0f(\u314d_\u314d)( `\u3142'*)","protected":false,"verified":false,"followers_count":1721,"friends_count":305,"listed_count":5,"favourites_count":942,"statuses_count":62135,"created_at":"Sat Feb 04 17:36:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF64F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/416759882\/IMG_1166.1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/416759882\/IMG_1166.1.jpg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424223100134113280\/exNZXC1L_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424223100134113280\/exNZXC1L_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483132170\/1428301618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ImApplest","name":"ImApplest (^._.^)~","id":483132170,"id_str":"483132170","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080072660"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531696128,"id_str":"663728047531696128","text":"Geer & Goor zoeken een hobby https:\/\/t.co\/W2olhXU8JT","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349153259,"id_str":"349153259","name":"michaelenMichaelwien","screen_name":"michaelwienijs","location":null,"url":"http:\/\/www.wiensite.com","description":null,"protected":false,"verified":false,"followers_count":55,"friends_count":634,"listed_count":1,"favourites_count":12,"statuses_count":2533,"created_at":"Fri Aug 05 16:57:53 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649191124763058176\/P9Xk6X38_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649191124763058176\/P9Xk6X38_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349153259\/1395351433","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/W2olhXU8JT","expanded_url":"http:\/\/fb.me\/4OzIsfLWV","display_url":"fb.me\/4OzIsfLWV","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531642880,"id_str":"663728047531642880","text":"I am never letting anybody into my life","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2196104872,"id_str":"2196104872","name":"Gabbbbb","screen_name":"_gabbywheeler_","location":null,"url":null,"description":"i \u2764\ufe0f puppies","protected":false,"verified":false,"followers_count":1573,"friends_count":672,"listed_count":5,"favourites_count":10210,"statuses_count":26106,"created_at":"Mon Nov 25 22:00:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663531492258291712\/W2wNcKSR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663531492258291712\/W2wNcKSR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2196104872\/1446554820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544123393,"id_str":"663728047544123393","text":"\u2605 #SexyFitness \u2605 shelby_n_fitness: One week away from seeing my swole sister\u2026come faster!!!\ud83d\ude4f\ud83c\udffc\ud83d\udc6f\ud83d\udc95 morganself_ \u2764... \u25c0 \u25c0 \u25c0 \u2764 #PHOTO \u2764","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1128959628,"id_str":"1128959628","name":"TwoCollegeGirls OLD","screen_name":"TwoCGirls","location":"a University","url":"http:\/\/twocollegegirls.tumblr.com","description":"We're Sarah and Kristen, two college freshmen who run a little blog. \u2764For \uff33\uff28\uff2f\uff35\uff34\uff2f\uff35\uff34S & 100+ \u15b4O\u14aa\u14aaO\u15efS click http:\/\/tinyurl.com\/Two100Follows \u2764","protected":false,"verified":false,"followers_count":86,"friends_count":196,"listed_count":5,"favourites_count":0,"statuses_count":718317,"created_at":"Mon Jan 28 19:18:10 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/775923060\/1e9e194222698e182919a8f595f6b087.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/775923060\/1e9e194222698e182919a8f595f6b087.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3175984468\/d78e70b4712d12a396c8a54d2407bcba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3175984468\/d78e70b4712d12a396c8a54d2407bcba_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SexyFitness","indices":[2,14]},{"text":"PHOTO","indices":[121,127]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047527297024,"id_str":"663728047527297024","text":"RT @ibuki_avavel: ibuki' \u306f\n1RT\uff1a\u5618\u544a\u767d\n2RT\uff1aLINE\u306e\u53cb\u9054\u4f55\u4eba\u3044\u308b\u304b\u6652\u3059\n3RT\uff1a\u7d75\u3092\u6652\u3059\n4RT\uff1aRT\u3057\u305f\u4eba\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\n5RT\uff1a1\u65e5\u8a9e\u5c3e\u306b\u3083\u3093\n8RT\uff1aRT\u3057\u305f\u4eba\u3092\u52d5\u7269\u306b\u4f8b\u3048\u308b\n15RT\uff1a\u8db3\u306e\u30b5\u30a4\u30ba\u6652\u3059\nhttps:\/\/t.co\/RnGe3\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2509213082,"id_str":"2509213082","name":"agna@avabel","screen_name":"agag_na","location":null,"url":null,"description":"97\u30ec\u30ec\u30de\u30b8 \u5bdd\u843d\u515a \u305f\u307e\u30fc\u306b\u3057\u304b\u30a4\u30f3\u3057\u307e\u305b\u3093\u304c\u751f\u304d\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":681,"friends_count":638,"listed_count":1,"favourites_count":816,"statuses_count":5777,"created_at":"Tue May 20 03:52:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651616703609073664\/HgnNtdPa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651616703609073664\/HgnNtdPa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2509213082\/1444097091","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:52:39 +0000 2015","id":663700730763571201,"id_str":"663700730763571201","text":"ibuki' \u306f\n1RT\uff1a\u5618\u544a\u767d\n2RT\uff1aLINE\u306e\u53cb\u9054\u4f55\u4eba\u3044\u308b\u304b\u6652\u3059\n3RT\uff1a\u7d75\u3092\u6652\u3059\n4RT\uff1aRT\u3057\u305f\u4eba\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\n5RT\uff1a1\u65e5\u8a9e\u5c3e\u306b\u3083\u3093\n8RT\uff1aRT\u3057\u305f\u4eba\u3092\u52d5\u7269\u306b\u4f8b\u3048\u308b\n15RT\uff1a\u8db3\u306e\u30b5\u30a4\u30ba\u6652\u3059\nhttps:\/\/t.co\/RnGe3rbtpa\n\u6687\u3060\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3793041320,"id_str":"3793041320","name":"ibuki'\uff20\u30a2\u30f4\u30a1\u30d9\u30eb","screen_name":"ibuki_avavel","location":"\u30ce\u30af\u30a2\u30c8\u30eb","url":null,"description":"\u30e1\u30a4\u30f3\u30de\u30b8\u30b7\u30e3\u30f3\u3067\u3059(*`\uff65\u03c9\uff65\u00b4)\uff89\u30ec\u30d9\u30eb\u6b62\u3081\u3057\u3066\u308b\u3068\u601d\u308f\u308c\u305d\u3046\u306a\u304f\u3089\u3044\u30ec\u30d9\u30eb\u4e0a\u304c\u308a\u307e\u305b\u3093w 17\u3055\u3044\u3067\u3059( \u00b4\u25bd\uff40) (\u00b4-`)o\uff2f\u007b\u6756\u5b89\u304f\u306a\u3089\u306a\u3044\u304b\u306a\u3041\uff65\uff65\uff65(\u00b4\u30fb\u03c9\u30fb\uff40) \u30a2\u30f4\u30a1\u30d9\u30eb\u57a2\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059(\u00b4\u2200`) \u5bfe\u4eba\u597d\u304d\u3067\u3059(\u03a6\u03c9\u03a6)\u30b5\u30e0\u30cd\u306f\u30ae\u30eb\u30e1\u30f3\u3068\u30ae\u30eb\u30de\u30b9\u304c\u66f8\u3044\u3066\u304f\u308c\u307e\u3057\u305f(\uff9f\u2200\uff9f\u3000)","protected":false,"verified":false,"followers_count":368,"friends_count":363,"listed_count":0,"favourites_count":90,"statuses_count":536,"created_at":"Mon Oct 05 14:34:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651354058343628800\/pG4_GGvv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651354058343628800\/pG4_GGvv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3793041320\/1444720724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RnGe3rbtpa","expanded_url":"https:\/\/shindanmaker.com\/527444","display_url":"shindanmaker.com\/527444","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RnGe3rbtpa","expanded_url":"https:\/\/shindanmaker.com\/527444","display_url":"shindanmaker.com\/527444","indices":[121,140]}],"user_mentions":[{"screen_name":"ibuki_avavel","name":"ibuki'\uff20\u30a2\u30f4\u30a1\u30d9\u30eb","id":3793041320,"id_str":"3793041320","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072658"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047527342081,"id_str":"663728047527342081","text":"Whole white book - the middle in reference to hand website: HkRNoDG https:\/\/t.co\/6tibFVuEcM","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1220286565,"id_str":"1220286565","name":"GavinNevaeh","screen_name":"GavinNevaeh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":130,"friends_count":0,"listed_count":4,"favourites_count":0,"statuses_count":96652,"created_at":"Tue Feb 26 02:31:37 +0000 2013","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3344263543\/d3aaf04d802b21dc94ea6f699f4748e0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3344263543\/d3aaf04d802b21dc94ea6f699f4748e0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6tibFVuEcM","expanded_url":"http:\/\/dlvr.it\/Chfgsx","display_url":"dlvr.it\/Chfgsx","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072658"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047540076549,"id_str":"663728047540076549","text":"my spanish class got cancelled i love life \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":423745560,"id_str":"423745560","name":"Cam Gutekunst","screen_name":"Cam_gohard77","location":"The dirty \u27a1\ufe0f Mt P ","url":null,"description":"CC '15 CMU '19 | Gators, Bruins\/Wings, Bulls, Bengals\/Panthers. Love me some Clemson too","protected":false,"verified":false,"followers_count":969,"friends_count":890,"listed_count":5,"favourites_count":23290,"statuses_count":27153,"created_at":"Mon Nov 28 21:57:31 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603260464190115840\/MalsVLBv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603260464190115840\/MalsVLBv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/423745560\/1447001833","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"77f923f5a841bbdf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/77f923f5a841bbdf.json","place_type":"city","name":"Mount Pleasant","full_name":"Mount Pleasant, MI","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-84.816945,43.553246],[-84.816945,43.634460],[-84.727407,43.634460],[-84.727407,43.553246]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047560912896,"id_str":"663728047560912896","text":"\u8272\u7d19\u3061\u3087\u3063\u3068\u5909\u3048\u3066\u66f8\u3044\u3066\u307f\u3088\u3046\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243951070,"id_str":"243951070","name":"\u3061\u3072\u308d@Rafvery12\/6\u521d\u53c2\u6226\u266a","screen_name":"ExChihiro","location":"\u65b0\u6f5f\u770c","url":null,"description":"\u30d7\u30ea\u30e9\u30a44th\u266a2\/1\u53c2\u6226\u2764\ufe0e\u30a2\u30cb\u30e1\u2661music\u2661Disney\u2661\u30b2\u30fc\u30e0\u2192MH\u30b7\u30ea\u30fc\u30ba\u266119album\u21d22\u30b7\u30e7\u30c3\u30c8\u5f53\u9078\u2661 \u30e2\u30f3\u30cf\u30f3\u30d5\u30a7\u30b9\u30bf'16\u7d76\u5bfe\u884c\u304f\uff01","protected":false,"verified":false,"followers_count":297,"friends_count":450,"listed_count":8,"favourites_count":127,"statuses_count":25229,"created_at":"Fri Jan 28 04:48:35 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/882272718\/b30c5b5a18995b94f3a90816abfed187.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/882272718\/b30c5b5a18995b94f3a90816abfed187.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656825215754698752\/JnQUpxM6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656825215754698752\/JnQUpxM6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243951070\/1445434309","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072666"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047535714305,"id_str":"663728047535714305","text":"@rrn_r18 \u3081\u3063\u3061\u3083\u6c17\u306b\u306a\u308b\u306a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727967084765184,"in_reply_to_status_id_str":"663727967084765184","in_reply_to_user_id":3059258617,"in_reply_to_user_id_str":"3059258617","in_reply_to_screen_name":"rrn_r18","user":{"id":3982563493,"id_str":"3982563493","name":"rain@\u53e3\u8abf\u5c11\u3057\u4e0d\u5b89\u5b9a","screen_name":"r_18rain","location":"\u305f\u3060\u30b7\u305f\u3044","url":null,"description":"R\u57a2\/\u4e00\u5fdc\u5275\u4f5cnrkr\/\u4e00\u822c.\u6c5a\u2192\u4e0d\u53ef\/\u5373\u69cd.\u8150.\u653b.\u53d7.\u4f1a\u8a71.\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u2192\u53ef\/\u30ed\u30eb(\u8d85\u77ed,\u7df4\u7fd2\u4e2d)\/\u30ad\u30b9\u4ee5\u964d\u306f\u90e8\u5c4b\u3067(\u4e00\u5fdcTL\u3067\u3082\u53ef)\/\u5bb6\u65cf.\u5927\u5207\u6c17\u5206\/\u753b\u50cf\u6b04\u306b\u81ea\u5206\u306e\u8a73\u7d30\u6709\/\u4f4e\u6d6e\u4e0a","protected":false,"verified":false,"followers_count":17,"friends_count":17,"listed_count":0,"favourites_count":38,"statuses_count":451,"created_at":"Thu Oct 22 17:44:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657395786158702593\/4F9ujPWG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657395786158702593\/4F9ujPWG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3982563493\/1445567107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rrn_r18","name":"\u30ed\u30ed\u30e9\u30a4\u30ca\u30fb\u30d5\u30ea\u30af\u30bb\u30eb","id":3059258617,"id_str":"3059258617","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072660"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552487424,"id_str":"663728047552487424","text":"https:\/\/t.co\/1TlIruM50H","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79280137,"id_str":"79280137","name":"SHIVA","screen_name":"idea720035","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":184,"listed_count":0,"favourites_count":0,"statuses_count":1808,"created_at":"Fri Oct 02 20:31:12 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3344672018\/954e30d3789c00214f4ad924f7a22d70_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3344672018\/954e30d3789c00214f4ad924f7a22d70_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1TlIruM50H","expanded_url":"http:\/\/fb.me\/7tbzzsdNT","display_url":"fb.me\/7tbzzsdNT","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047540076544,"id_str":"663728047540076544","text":"Guide Financier https:\/\/t.co\/2BXpLxpOhm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466428610,"id_str":"466428610","name":"Genevi\u00e8ve Collin","screen_name":"GeneviveCollin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":50,"listed_count":0,"favourites_count":2,"statuses_count":12,"created_at":"Tue Jan 17 11:49:44 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2BXpLxpOhm","expanded_url":"https:\/\/www.nagelmackers.be\/fr\/notre-vision\/conseils-financiers\/detail\/guide-financier","display_url":"nagelmackers.be\/fr\/notre-visio\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047548293120,"id_str":"663728047548293120","text":"RT @sinabrokiss: \ub098 : \uc57c \uc138\ud6c8\uc774 \uc9c4\uc9dc \uadc0\uc5fd\uc9c0 \uc54a\ub0d0?\u3160\u3160\n\uba38\uae00\ud608\uc721 : \ubb50? \uc7e4\uac00?\n\n\ub098 : \uc57c \uacbd\uc218 \uc9c4\uc9dc \ub0a8\uc790\ub2f5\uc9c0 \uc54a\ub0d0?\u3160\u3160\n\uba38\uae00\ud608\uc721 : \ubb50? \uc7e4\uac00?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1348997671,"id_str":"1348997671","name":"\uad6c\uc0bc\uac00","screen_name":"9p3mfamily","location":null,"url":"http:\/\/mama.mwave.me\/ranking","description":"\ub124\uac00\uc774\uc624 \ud1a0\ub098\uc5d0 \uc720\uba54\ub178 \ub098\uce74\ub9c8\ub370 \uce20\ub808\ub2e4\uc2dc\ud14c\uc544\uac8c\ub8e8\uc694 \uad6c\ud558\uace0\ub3c4\uc0bc\ubc31\ub9cc\uac00\uc871\uc0ac\uc9c4 \ub7ec\ube0c\uc2a4\uc6e9","protected":false,"verified":false,"followers_count":42,"friends_count":200,"listed_count":0,"favourites_count":8,"statuses_count":2704,"created_at":"Sat Apr 13 11:22:47 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662589238018338817\/VcTgo6U2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662589238018338817\/VcTgo6U2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1348997671\/1446808558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:27 +0000 2015","id":663724840025587713,"id_str":"663724840025587713","text":"\ub098 : \uc57c \uc138\ud6c8\uc774 \uc9c4\uc9dc \uadc0\uc5fd\uc9c0 \uc54a\ub0d0?\u3160\u3160\n\uba38\uae00\ud608\uc721 : \ubb50? \uc7e4\uac00?\n\n\ub098 : \uc57c \uacbd\uc218 \uc9c4\uc9dc \ub0a8\uc790\ub2f5\uc9c0 \uc54a\ub0d0?\u3160\u3160\n\uba38\uae00\ud608\uc721 : \ubb50? \uc7e4\uac00?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62861942,"id_str":"62861942","name":"\uba54\ucf00\uba54\ucf00","screen_name":"sinabrokiss","location":null,"url":null,"description":"\uafc8\uc740 \ub3c4\ub9dd\uce58\uc9c0 \uc54a\ub294\ub2e4 \ub3c4\ub9dd\uce58\ub294 \uac83\uc740 \ub098 \uc790\uc2e0\uc774\ub2e4.","protected":false,"verified":false,"followers_count":12223,"friends_count":168,"listed_count":25,"favourites_count":5976,"statuses_count":37281,"created_at":"Tue Aug 04 16:36:09 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653180602011676672\/NLZ2724v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653180602011676672\/NLZ2724v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62861942\/1446377781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sinabrokiss","name":"\uba54\ucf00\uba54\ucf00","id":62861942,"id_str":"62861942","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080072663"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047540031488,"id_str":"663728047540031488","text":"Dani Ceballos denies contact with Arsenal, Liverpool and Real Madrid over ... | &brvbar; 34 https:\/\/t.co\/0CcJj0kNWU","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3033690970,"id_str":"3033690970","name":"Chealsea","screen_name":"0l1l2","location":"Los Angeles, California","url":null,"description":null,"protected":false,"verified":false,"followers_count":19422,"friends_count":19961,"listed_count":685,"favourites_count":32886,"statuses_count":393423,"created_at":"Thu Feb 12 23:46:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566020813896179712\/SKNNeQwK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566020813896179712\/SKNNeQwK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3033690970\/1423784858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0CcJj0kNWU","expanded_url":"http:\/\/goo.gl\/fb\/2W2JNs","display_url":"goo.gl\/fb\/2W2JNs","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047535890432,"id_str":"663728047535890432","text":"RT @brincadero: qnd minha amiga come\u00e7a a se fazer de v\u00edtima https:\/\/t.co\/Rxo1MNsYOw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2960197474,"id_str":"2960197474","name":"Lola FOCUS E MITA.M.","screen_name":"IsahCoverGirl","location":"Kansas e Honeymoon \u00e3ve.","url":"http:\/\/instagram.com\/channel2.boss","description":"\u2764Zayn\u20221D\u20225H\u2022Cher\u2022Ariana\u2022Sah\u2022Cara\u2022Dove\u2022Avril\u2022Iggy\u2022Cimorelli\u2022TMR\u2022THG\u2022ACDN\u2022SPN\u2022DW\u2022OUAT\u2022Scream Queens\u2022Youtubers\u2022Viners\u2764N\u00e3o me responsabilizo se suas luzes piscarem\u2600","protected":false,"verified":false,"followers_count":967,"friends_count":2181,"listed_count":1,"favourites_count":17707,"statuses_count":16419,"created_at":"Sun Jan 04 12:50:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726969977217024\/OvgQKCnb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726969977217024\/OvgQKCnb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2960197474\/1441818189","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:49:25 +0000 2015","id":663518722838122496,"id_str":"663518722838122496","text":"qnd minha amiga come\u00e7a a se fazer de v\u00edtima https:\/\/t.co\/Rxo1MNsYOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144974967,"id_str":"144974967","name":"cleytu","screen_name":"brincadero","location":"It\u00e1polis, SP - Brasil","url":"http:\/\/www.youtube.com\/eutodebrinks","description":"~os bastidores do cotidiano por um eu-l\u00edrico revoltado~ snap: cleyttu ll e-mail: cleytu@live.com","protected":false,"verified":false,"followers_count":350731,"friends_count":644,"listed_count":2398,"favourites_count":17142,"statuses_count":10950,"created_at":"Mon May 17 20:23:04 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554008868359925760\/vsWruIPq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554008868359925760\/vsWruIPq.jpeg","profile_background_tile":false,"profile_link_color":"FF4000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"636363","profile_text_color":"666363","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659443012729204738\/Uhldz1r5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659443012729204738\/Uhldz1r5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144974967\/1445454671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":402,"favorite_count":374,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663518632585134080,"id_str":"663518632585134080","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","url":"https:\/\/t.co\/Rxo1MNsYOw","display_url":"pic.twitter.com\/Rxo1MNsYOw","expanded_url":"http:\/\/twitter.com\/brincadero\/status\/663518722838122496\/video\/1","type":"photo","sizes":{"medium":{"w":334,"h":172,"resize":"fit"},"small":{"w":334,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":172,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663518632585134080,"id_str":"663518632585134080","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","url":"https:\/\/t.co\/Rxo1MNsYOw","display_url":"pic.twitter.com\/Rxo1MNsYOw","expanded_url":"http:\/\/twitter.com\/brincadero\/status\/663518722838122496\/video\/1","type":"video","sizes":{"medium":{"w":334,"h":172,"resize":"fit"},"small":{"w":334,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":172,"resize":"fit"}},"video_info":{"aspect_ratio":[167,86],"duration_millis":7441,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/vid\/334x172\/dCJz1uC4uTBm0CBN.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/pl\/kymZ-xe4ny-0ZbYN.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/vid\/334x172\/dCJz1uC4uTBm0CBN.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/pl\/kymZ-xe4ny-0ZbYN.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brincadero","name":"cleytu","id":144974967,"id_str":"144974967","indices":[3,14]}],"symbols":[],"media":[{"id":663518632585134080,"id_str":"663518632585134080","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","url":"https:\/\/t.co\/Rxo1MNsYOw","display_url":"pic.twitter.com\/Rxo1MNsYOw","expanded_url":"http:\/\/twitter.com\/brincadero\/status\/663518722838122496\/video\/1","type":"photo","sizes":{"medium":{"w":334,"h":172,"resize":"fit"},"small":{"w":334,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":172,"resize":"fit"}},"source_status_id":663518722838122496,"source_status_id_str":"663518722838122496","source_user_id":144974967,"source_user_id_str":"144974967"}]},"extended_entities":{"media":[{"id":663518632585134080,"id_str":"663518632585134080","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663518632585134080\/pu\/img\/aYT-1LaD0mqzFENb.jpg","url":"https:\/\/t.co\/Rxo1MNsYOw","display_url":"pic.twitter.com\/Rxo1MNsYOw","expanded_url":"http:\/\/twitter.com\/brincadero\/status\/663518722838122496\/video\/1","type":"video","sizes":{"medium":{"w":334,"h":172,"resize":"fit"},"small":{"w":334,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":334,"h":172,"resize":"fit"}},"source_status_id":663518722838122496,"source_status_id_str":"663518722838122496","source_user_id":144974967,"source_user_id_str":"144974967","video_info":{"aspect_ratio":[167,86],"duration_millis":7441,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/vid\/334x172\/dCJz1uC4uTBm0CBN.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/pl\/kymZ-xe4ny-0ZbYN.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/vid\/334x172\/dCJz1uC4uTBm0CBN.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663518632585134080\/pu\/pl\/kymZ-xe4ny-0ZbYN.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080072660"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544123392,"id_str":"663728047544123392","text":"#welcomeTweet welcome to the #pleasuredome enjoy my #perversion @dick_dog6946 @jh463_ via https:\/\/t.co\/4Ifr2DrpmN","source":"\u003ca href=\"https:\/\/unfollowers.com\" rel=\"nofollow\"\u003eUnfollowers\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1326889266,"id_str":"1326889266","name":"Pervy Uncle","screen_name":"pervy_uncle","location":null,"url":null,"description":"I am your Pervy Uncle. You know the one, that always wears a rain-coat even in summer.......................My tweets are #NSFW 18+ 0nly. South African - UK","protected":false,"verified":false,"followers_count":3421,"friends_count":2448,"listed_count":37,"favourites_count":11784,"statuses_count":27194,"created_at":"Thu Apr 04 13:05:58 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/533122089570795520\/Pv49e_ve_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533122089570795520\/Pv49e_ve_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1326889266\/1443907984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"welcomeTweet","indices":[0,13]},{"text":"pleasuredome","indices":[29,42]},{"text":"perversion","indices":[52,63]}],"urls":[{"url":"https:\/\/t.co\/4Ifr2DrpmN","expanded_url":"http:\/\/uapp.ly","display_url":"uapp.ly","indices":[90,113]}],"user_mentions":[{"screen_name":"dick_dog6946","name":"lustforred","id":3399809393,"id_str":"3399809393","indices":[64,77]},{"screen_name":"jh463_","name":"Jacob H","id":4151534000,"id_str":"4151534000","indices":[78,85]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552528384,"id_str":"663728047552528384","text":"TL\u3067\u3081\u3063\u3061\u3083\u59eb\u5bae\u5f15\u3044\u3066\u308b\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444446043,"id_str":"444446043","name":"\u30b9\u30ba\u30b3","screen_name":"SZKI_sun","location":null,"url":null,"description":"\u30e4\u30fc\u30ec\u30f3\u30bd\u30fc\u30e9\u30f3\u30bd\u30fc\u30e9\u30f3\u30bd\u30fc\u30e9\u30f3\u30bd\u30fc\u30e9\u30f3\u30bd\u30fc\u30e9\u30f3\\\u30cf\u30a4\u30cf\u30a4\/\/BF(\u4eee)\u702c\u540d\u672c\u547d \u4e00\u30ce\u702c\u5bae\u30ce\u8d8a\u5b88\u90e8\/\u5200\u5263\u4e71\u821e\u5fa1\u624b\u6775\u5c71\u4f0f\u306b\u3063\u304b\u308a\u6b21\u90ce\u8702\u9808\u8cc0\/\u30c6\u30e9\u30d5\u30a9\u9b3c\u585a\u6176\u6b21\u304f\u3093\/\u7aaa\u7530\u6b63\u5b5d\/\u9ad8\u8eab\u9577\/\u7b4b\u8089\/\u6210\u4eba\u6e08\u307f\u5922\u517c\u8150","protected":false,"verified":false,"followers_count":215,"friends_count":486,"listed_count":9,"favourites_count":21249,"statuses_count":41798,"created_at":"Fri Dec 23 08:08:19 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604265267531653120\/OIr4NSxI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604265267531653120\/OIr4NSxI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444446043\/1411218256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047556706305,"id_str":"663728047556706305","text":"RT @JJKK_97: \u0e40\u0e1b\u0e47\u0e19\u0e40\u0e40\u0e21\u0e27\u0e17\u0e35\u0e48\u0e15\u0e32\u0e2a\u0e27\u0e22\u0e04\u0e21\u0e21\u0e32\u0e01\u0e2d\u0e48\u0e30 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e23\u0e35\u0e14\u0e15\u0e32\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e48\u0e07\u0e21\u0e2d\u0e07\u0e22\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e07\u0e15\u0e32\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e19\u0e32\u0e07 \ud83d\ude0d #\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27 https:\/\/t.co\/04TYQPzTgx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2410797602,"id_str":"2410797602","name":"\ubc40 REST","screen_name":"qaronx","location":"study hard for TU","url":null,"description":"\uaddc\uaddc\ub098\ubb34\ub098\ubb34 \/ \ucc2c\ubc31 \/ @bts_twt \u2661","protected":false,"verified":false,"followers_count":380,"friends_count":438,"listed_count":1,"favourites_count":2828,"statuses_count":34143,"created_at":"Tue Mar 25 10:36:56 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663655980102586368\/7_QOJaMJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663655980102586368\/7_QOJaMJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2410797602\/1447062904","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:20:32 +0000 2015","id":663224562952179712,"id_str":"663224562952179712","text":"\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e40\u0e21\u0e27\u0e17\u0e35\u0e48\u0e15\u0e32\u0e2a\u0e27\u0e22\u0e04\u0e21\u0e21\u0e32\u0e01\u0e2d\u0e48\u0e30 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e23\u0e35\u0e14\u0e15\u0e32\u0e40\u0e25\u0e22 \u0e22\u0e34\u0e48\u0e07\u0e21\u0e2d\u0e07\u0e22\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e07\u0e15\u0e32\u0e2a\u0e35\u0e1f\u0e49\u0e32\u0e02\u0e2d\u0e07\u0e19\u0e32\u0e07 \ud83d\ude0d #\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27 https:\/\/t.co\/04TYQPzTgx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2788082546,"id_str":"2788082546","name":"`\u0e40\u0e14\u0e47\u0e01\u0e08\u0e2d\u0e19 \u2022\u3145\u2022","screen_name":"JJKK_97","location":null,"url":null,"description":"@BTS_twt | BTS X ARMY | \u0e04\u0e38\u0e13\u0e41\u0e25\u0e30\u0e04\u0e38\u0e13\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19 | \u0e2a\u0e32\u0e22\u0e40\u0e1e\u0e49\u0e2d | \u0e2a\u0e32\u0e22\u0e21\u0e42\u0e19 | \u0e0a\u0e2d\u0e1a\u0e1a\u0e48\u0e19 | \u0e17\u0e27\u0e34\u0e15\u0e2b\u0e22\u0e32\u0e1a | \u0e04\u0e34\u0e14\u0e43\u0e2b\u0e49\u0e14\u0e35\u0e01\u0e48\u0e2d\u0e19\u0e1f\u0e2d\u0e25 | \u26a0 |","protected":false,"verified":false,"followers_count":164,"friends_count":78,"listed_count":3,"favourites_count":6026,"statuses_count":25879,"created_at":"Wed Sep 03 14:40:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661536680411705344\/6CumGI8V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661536680411705344\/6CumGI8V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2788082546\/1442986902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2164,"favorite_count":255,"entities":{"hashtags":[{"text":"\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27","indices":[71,78]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}},{"id":663224517112651776,"id_str":"663224517112651776","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}}},{"id":663224528953196544,"id_str":"663224528953196544","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}}},{"id":663224546581807104,"id_str":"663224546581807104","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1018,"resize":"fit"},"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e32\u0e2a\u0e41\u0e21\u0e27","indices":[84,91]}],"urls":[],"user_mentions":[{"screen_name":"JJKK_97","name":"`\u0e40\u0e14\u0e47\u0e01\u0e08\u0e2d\u0e19 \u2022\u3145\u2022","id":2788082546,"id_str":"2788082546","indices":[3,11]}],"symbols":[],"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"}]},"extended_entities":{"media":[{"id":663224506375208960,"id_str":"663224506375208960","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LLTUAAAUlhD.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224517112651776,"id_str":"663224517112651776","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_LzTUYAAV6Z4.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":1024,"h":1020,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224528953196544,"id_str":"663224528953196544","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_MfaUwAAnPGk.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1021,"resize":"fit"},"medium":{"w":600,"h":598,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"},{"id":663224546581807104,"id_str":"663224546581807104","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ_NhFUAAAbcRo.jpg","url":"https:\/\/t.co\/04TYQPzTgx","display_url":"pic.twitter.com\/04TYQPzTgx","expanded_url":"http:\/\/twitter.com\/JJKK_97\/status\/663224562952179712\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1018,"resize":"fit"},"medium":{"w":600,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}},"source_status_id":663224562952179712,"source_status_id_str":"663224562952179712","source_user_id":2788082546,"source_user_id_str":"2788082546"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080072665"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047539904512,"id_str":"663728047539904512","text":"#\u0412\u0437\u0430\u0438\u043c\u043d\u044b\u0439\u0424\u043e\u043b\u043b\u043e\u0432\u0438\u043d\u0433 \u0412\u041a\u0421 \u0420\u0424 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u043b\u0438 \u043b\u0430\u0433\u0435\u0440\u044c \u0431\u043e\u0435\u0432\u0438\u043a\u043e\u0432 \u00ab\u0414\u0436\u0430\u0431\u0445\u0430\u0442 \u0430\u043d-\u041d\u0443\u0441\u0440\u0430\u00bb \u0432 \u0410\u043b\u0435\u043f\u043f\u043e #\u0432\u0437\u0430\u0438\u043c\u043d\u0430\u044f\u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1683748987,"id_str":"1683748987","name":"\u0412\u0430\u043b\u0435\u043d\u0442\u0438\u043d \u0411\u0443\u0442\u0447\u0438\u043a","screen_name":"ovashonoxw","location":"\u041c\u0441\u043a","url":null,"description":"\u0412 \u043a\u0430\u0436\u0434\u043e\u0439 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043b\u044e\u0431\u043e\u0439 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c \u0432\u0440\u0435\u043c\u044f \u043e\u0442 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043e\u043b\u0436\u0435\u043d \u0441\u043d\u044f\u0442\u044c \u0441\u0432\u043e\u0439 \u043a\u043e\u0441\u0442\u044e\u043c \u0438 \u0438\u0441\u043f\u0430\u0447\u043a\u0430\u0442\u044c \u0440\u0443\u043a\u0438.","protected":false,"verified":false,"followers_count":1659,"friends_count":1497,"listed_count":3,"favourites_count":13,"statuses_count":18280,"created_at":"Mon Aug 19 16:59:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000063608894\/b23cfb10ee770d254012ff4da535246f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000063608894\/b23cfb10ee770d254012ff4da535246f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000389223845\/f20c5dc219af57f50e5bc00bac216f7d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000389223845\/f20c5dc219af57f50e5bc00bac216f7d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1683748987\/1386765389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0412\u0437\u0430\u0438\u043c\u043d\u044b\u0439\u0424\u043e\u043b\u043b\u043e\u0432\u0438\u043d\u0433","indices":[0,18]},{"text":"\u0432\u0437\u0430\u0438\u043c\u043d\u0430\u044f\u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430","indices":[81,98]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047544119296,"id_str":"663728047544119296","text":"RT @BTS_BiTS: MAMA 2015 - BTS x GFRIEND voting collaboration: \nVote #Gfriend for Best New Female Artist\nlet's win !! https:\/\/t.co\/e3StvEu0DR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3400698373,"id_str":"3400698373","name":"Saraput","screen_name":"Surapat100","location":"Khon Kaen, Thailand","url":null,"description":"GFRIENDTHAILANDFAN","protected":false,"verified":false,"followers_count":1,"friends_count":62,"listed_count":0,"favourites_count":484,"statuses_count":657,"created_at":"Mon Aug 31 06:00:49 +0000 2015","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717855045619712\/rdsRU4r8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717855045619712\/rdsRU4r8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3400698373\/1446042829","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:30:14 +0000 2015","id":663649789695758337,"id_str":"663649789695758337","text":"MAMA 2015 - BTS x GFRIEND voting collaboration: \nVote #Gfriend for Best New Female Artist\nlet's win !! https:\/\/t.co\/e3StvEu0DR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2761464558,"id_str":"2761464558","name":"BTS_BiTS","screen_name":"BTS_BiTS","location":null,"url":null,"description":"Bits & Pieces of BTS \ubc29\ud0c4\uc18c\ub144\ub2e8","protected":false,"verified":false,"followers_count":18847,"friends_count":593,"listed_count":78,"favourites_count":526,"statuses_count":35371,"created_at":"Sun Aug 24 05:09:40 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567378387975417856\/-uAiDRrG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567378387975417856\/-uAiDRrG.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651403865183531008\/6Tf4Lnen_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651403865183531008\/6Tf4Lnen_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2761464558\/1446031363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663646153406177280,"quoted_status_id_str":"663646153406177280","quoted_status":{"created_at":"Mon Nov 09 09:15:47 +0000 2015","id":663646153406177280,"id_str":"663646153406177280","text":"Also, don't forget to vote for #BTS & #EXID for Best Male Group and Best Dance Performance Female Group!! We can do this guys! Fighting!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663645880822566912,"in_reply_to_status_id_str":"663645880822566912","in_reply_to_user_id":2935125443,"in_reply_to_user_id_str":"2935125443","in_reply_to_screen_name":"GFRIENDaily","user":{"id":2935125443,"id_str":"2935125443","name":"GFRIEND Daily","screen_name":"GFRIENDaily","location":null,"url":"http:\/\/gfdynews.co.vu\/","description":"International fanbase providing daily GFRIEND (\uc5ec\uc790\uce5c\uad6c) updates and translations since January 5th. @GFRDofficial RTed our tweet on April 25th.","protected":false,"verified":false,"followers_count":10683,"friends_count":385,"listed_count":138,"favourites_count":1460,"statuses_count":22570,"created_at":"Sun Dec 21 11:53:19 +0000 2014","utc_offset":3600,"time_zone":"Bern","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF1D54","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"FF1D54","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620242677666312192\/wXxNOEMA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620242677666312192\/wXxNOEMA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2935125443\/1437142985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BTS","indices":[31,35]},{"text":"EXID","indices":[42,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":82,"favorite_count":44,"entities":{"hashtags":[{"text":"Gfriend","indices":[54,62]}],"urls":[{"url":"https:\/\/t.co\/e3StvEu0DR","expanded_url":"https:\/\/twitter.com\/GFRIENDaily\/status\/663646153406177280","display_url":"twitter.com\/GFRIENDaily\/st\u2026","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Gfriend","indices":[68,76]}],"urls":[{"url":"https:\/\/t.co\/e3StvEu0DR","expanded_url":"https:\/\/twitter.com\/GFRIENDaily\/status\/663646153406177280","display_url":"twitter.com\/GFRIENDaily\/st\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"BTS_BiTS","name":"BTS_BiTS","id":2761464558,"id_str":"2761464558","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072662"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047540039680,"id_str":"663728047540039680","text":"RT @JornalOGlobo: Taylor Swift \u00e9 homem e tem 30 anos. https:\/\/t.co\/zLbkkpmW5x [@blogpagenfound] https:\/\/t.co\/0tdTUgbPeE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1158973338,"id_str":"1158973338","name":"Lys","screen_name":"downanddusky","location":"\u2652\ufe0f","url":null,"description":"meus tweets s\u00e3o inspirados em arthur schopenhauer","protected":false,"verified":false,"followers_count":39,"friends_count":164,"listed_count":0,"favourites_count":3438,"statuses_count":8882,"created_at":"Fri Feb 08 03:25:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553435271211929601\/oEbP40iA.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553435271211929601\/oEbP40iA.png","profile_background_tile":true,"profile_link_color":"BECDD4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662075483304108032\/a3etXtWq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662075483304108032\/a3etXtWq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1158973338\/1435279282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:49:02 +0000 2015","id":663699821056790529,"id_str":"663699821056790529","text":"Taylor Swift \u00e9 homem e tem 30 anos. https:\/\/t.co\/zLbkkpmW5x [@blogpagenfound] https:\/\/t.co\/0tdTUgbPeE","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54341363,"id_str":"54341363","name":"Jornal O Globo","screen_name":"JornalOGlobo","location":null,"url":"http:\/\/www.oglobo.com.br","description":"Acompanhe as not\u00edcias do jornal O GLOBO","protected":false,"verified":true,"followers_count":3763748,"friends_count":8454,"listed_count":9702,"favourites_count":51,"statuses_count":204867,"created_at":"Mon Jul 06 21:36:53 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"425F77","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/674290505\/6cee65c045cb86afcd7c9860dfec5edc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/674290505\/6cee65c045cb86afcd7c9860dfec5edc.jpeg","profile_background_tile":false,"profile_link_color":"1F97C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E4F5FF","profile_text_color":"616161","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000420278959\/776d357118372dfe533a9ff26417a820_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000420278959\/776d357118372dfe533a9ff26417a820_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54341363\/1442920698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":515,"favorite_count":281,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zLbkkpmW5x","expanded_url":"http:\/\/glo.bo\/1MjRDF0","display_url":"glo.bo\/1MjRDF0","indices":[36,59]}],"user_mentions":[{"screen_name":"BlogPageNFound","name":"Page Not Found","id":16815388,"id_str":"16815388","indices":[61,76]}],"symbols":[],"media":[{"id":663693177484943360,"id_str":"663693177484943360","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","url":"https:\/\/t.co\/0tdTUgbPeE","display_url":"pic.twitter.com\/0tdTUgbPeE","expanded_url":"http:\/\/twitter.com\/JornalOGlobo\/status\/663699821056790529\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":836,"h":556,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663693177484943360,"id_str":"663693177484943360","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","url":"https:\/\/t.co\/0tdTUgbPeE","display_url":"pic.twitter.com\/0tdTUgbPeE","expanded_url":"http:\/\/twitter.com\/JornalOGlobo\/status\/663699821056790529\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":836,"h":556,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zLbkkpmW5x","expanded_url":"http:\/\/glo.bo\/1MjRDF0","display_url":"glo.bo\/1MjRDF0","indices":[54,77]}],"user_mentions":[{"screen_name":"JornalOGlobo","name":"Jornal O Globo","id":54341363,"id_str":"54341363","indices":[3,16]},{"screen_name":"BlogPageNFound","name":"Page Not Found","id":16815388,"id_str":"16815388","indices":[79,94]}],"symbols":[],"media":[{"id":663693177484943360,"id_str":"663693177484943360","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","url":"https:\/\/t.co\/0tdTUgbPeE","display_url":"pic.twitter.com\/0tdTUgbPeE","expanded_url":"http:\/\/twitter.com\/JornalOGlobo\/status\/663699821056790529\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":836,"h":556,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663699821056790529,"source_status_id_str":"663699821056790529","source_user_id":54341363,"source_user_id_str":"54341363"}]},"extended_entities":{"media":[{"id":663693177484943360,"id_str":"663693177484943360","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpbbPXIAA9xPg.jpg","url":"https:\/\/t.co\/0tdTUgbPeE","display_url":"pic.twitter.com\/0tdTUgbPeE","expanded_url":"http:\/\/twitter.com\/JornalOGlobo\/status\/663699821056790529\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":836,"h":556,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663699821056790529,"source_status_id_str":"663699821056790529","source_user_id":54341363,"source_user_id_str":"54341363"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047539908608,"id_str":"663728047539908608","text":"RT @Yozi_dp: Ketika bencana banjir, Nabi Nuh membawa semua jenis binatang masing2 sepasang agar mereka dapat berkembang biak kembali saat b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1248162588,"id_str":"1248162588","name":"Cakra Wijaya","screen_name":"steven_cakra","location":"Jakarta, Indonesia","url":"http:\/\/facebook.com","description":"Liverpool fans || update Liverpool News || Y.N.W.A","protected":false,"verified":false,"followers_count":85,"friends_count":145,"listed_count":6,"favourites_count":3340,"statuses_count":8302,"created_at":"Thu Mar 07 07:47:52 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/890680958\/2be0a158fe6676e85d63472861d49cb7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/890680958\/2be0a158fe6676e85d63472861d49cb7.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/529273910970155009\/Oj6ruZW5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/529273910970155009\/Oj6ruZW5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1248162588\/1437888564","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:34 +0000 2015","id":663726882035097600,"id_str":"663726882035097600","text":"Ketika bencana banjir, Nabi Nuh membawa semua jenis binatang masing2 sepasang agar mereka dapat berkembang biak kembali saat banjir surut.","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":387610985,"id_str":"387610985","name":"IG : yozidahfilputra","screen_name":"Yozi_dp","location":"Padang - Jakarta, INA","url":"http:\/\/yozidahfilputra.blogspot.com","description":"yozidahfilputra(@)gmail(.)com","protected":false,"verified":false,"followers_count":182171,"friends_count":95067,"listed_count":32,"favourites_count":208,"statuses_count":36289,"created_at":"Sun Oct 09 10:59:27 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704915048\/db6e9bca6d6c55c55a1e0848e30974dd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704915048\/db6e9bca6d6c55c55a1e0848e30974dd.jpeg","profile_background_tile":false,"profile_link_color":"6BB200","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"2E4056","profile_text_color":"602521","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544918777658634243\/lmuokBSB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544918777658634243\/lmuokBSB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/387610985\/1435789288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Yozi_dp","name":"IG : yozidahfilputra","id":387610985,"id_str":"387610985","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047560896512,"id_str":"663728047560896512","text":"@SgkIku \u3048\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721944257163264,"in_reply_to_status_id_str":"663721944257163264","in_reply_to_user_id":1713772248,"in_reply_to_user_id_str":"1713772248","in_reply_to_screen_name":"SgkIku","user":{"id":1485664724,"id_str":"1485664724","name":"\u3053\u3046\u3060\u3044","screen_name":"1218Koudai","location":null,"url":null,"description":"\u3068\u308a\u3042\u3048\u305a\u4eba\u751f\u697d\u3057\u3093\u3067\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":128,"friends_count":134,"listed_count":1,"favourites_count":261,"statuses_count":2256,"created_at":"Wed Jun 05 18:14:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546191814693101568\/mwK2ncW9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546191814693101568\/mwK2ncW9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1485664724\/1427560775","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SgkIku","name":"\u307e\u3044\u304f","id":1713772248,"id_str":"1713772248","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072666"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523102722,"id_str":"663728047523102722","text":"https:\/\/t.co\/WII1vCdsKQ","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1611276390,"id_str":"1611276390","name":"Vickie Church","screen_name":"ChurchVickie","location":"Jackson, MI","url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":11461,"created_at":"Sun Jul 21 20:28:06 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WII1vCdsKQ","expanded_url":"http:\/\/fb.me\/4juwBR23N","display_url":"fb.me\/4juwBR23N","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047548465152,"id_str":"663728047548465152","text":"If your complaining about the price, you probably don't need it #starbucks #barista","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1611105973,"id_str":"1611105973","name":"hobie hobart","screen_name":"hobie814","location":"myrtle beach ","url":null,"description":"My name is hobie. life is full of so much, so all you got to do is look for what you want and you will find what you are looking for!","protected":false,"verified":false,"followers_count":164,"friends_count":709,"listed_count":0,"favourites_count":59,"statuses_count":112,"created_at":"Sun Jul 21 18:18:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545771591049969665\/VhDZ_oLM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545771591049969665\/VhDZ_oLM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1611105973\/1418957061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"starbucks","indices":[64,74]},{"text":"barista","indices":[75,83]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072663"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047560888320,"id_str":"663728047560888320","text":"4-3-1-2 Review (I can't stop winning w\/ this formation) https:\/\/t.co\/4uhNCsOwYu","source":"\u003ca href=\"http:\/\/service.rss2twi.com\/\" rel=\"nofollow\"\u003erss2twi.com\u306e\u30c4\u30a4\u30fc\u30c8\u5206\u6790\u30c4\u30fc\u30eb4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750993377,"id_str":"2750993377","name":"XboxOne News","screen_name":"XboxOneReddit","location":null,"url":null,"description":"Xbox One news from Reddit","protected":false,"verified":false,"followers_count":2665,"friends_count":0,"listed_count":60,"favourites_count":159690,"statuses_count":261016,"created_at":"Thu Aug 21 01:25:18 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548628699071799297\/jouRnhqk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548628699071799297\/jouRnhqk_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4uhNCsOwYu","expanded_url":"http:\/\/service.rss2twi.com\/link\/XboxOneReddit\/?post_id=16567136","display_url":"service.rss2twi.com\/link\/XboxOneRe\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072666"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047556796416,"id_str":"663728047556796416","text":"Yesssssss https:\/\/t.co\/xHSX8tFY77","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437629705,"id_str":"437629705","name":"Dave","screen_name":"troonooyawker","location":"New York","url":"http:\/\/www.hulkingreviewer.com","description":"Birthed from Mel Brooks, Arkham Asylum, LV-426,the 36 Chambers & the squared circle. Blogger. Taken. #Knicks #Mets #NYR #Broncos #nerdandproud #TylerLives","protected":false,"verified":false,"followers_count":1206,"friends_count":1450,"listed_count":42,"favourites_count":6820,"statuses_count":89747,"created_at":"Thu Dec 15 17:04:00 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646403736\/dnh0wn7yrsk8l48h1ne2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646403736\/dnh0wn7yrsk8l48h1ne2.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635547560732696576\/dg5jo4PP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635547560732696576\/dg5jo4PP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437629705\/1440361356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663566843500630016,"quoted_status_id_str":"663566843500630016","quoted_status":{"created_at":"Mon Nov 09 04:00:38 +0000 2015","id":663566843500630016,"id_str":"663566843500630016","text":"George Romero\u2019s \u201cEmpire of the Dead\u201d Confirmed For AMC https:\/\/t.co\/NpOe2INpgN","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20745274,"id_str":"20745274","name":"BloodyDisgusting.com","screen_name":"BDisgusting","location":"North Hollywood, CA","url":"http:\/\/www.bloodydisgusting.com","description":"Your #1 source for all things #horror! We cover movies, music, video games, comics, and more.","protected":false,"verified":false,"followers_count":87397,"friends_count":8151,"listed_count":1640,"favourites_count":603,"statuses_count":47341,"created_at":"Fri Feb 13 03:41:15 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106657172\/e5679053c547bb64db52a6e3bf07bcb8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106657172\/e5679053c547bb64db52a6e3bf07bcb8.jpeg","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C7C7C7","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2976444328\/960d2d5e54a481e5279b3dd2b2aa1e97_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2976444328\/960d2d5e54a481e5279b3dd2b2aa1e97_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20745274\/1414822410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NpOe2INpgN","expanded_url":"http:\/\/bdisgusting.com\/1WKP43Y","display_url":"bdisgusting.com\/1WKP43Y","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xHSX8tFY77","expanded_url":"https:\/\/twitter.com\/BDisgusting\/status\/663566843500630016","display_url":"twitter.com\/BDisgusting\/st\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072665"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047552651264,"id_str":"663728047552651264","text":"Primer d\u00eda! Cambiando de casa!!! \ud83d\udcaa\ud83c\udffb extra\u00f1ando ando \ud83d\udc94 (@ Smart Fit Puebla San Pedro - @smartfit_mex in Puebla) https:\/\/t.co\/miT4Ab1fMu","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201086105,"id_str":"201086105","name":"Breen Angeles","screen_name":"b123nn","location":null,"url":"http:\/\/facebook.com\/nna.mimi","description":"everything that kills me makes me feel alive...","protected":false,"verified":false,"followers_count":86,"friends_count":107,"listed_count":0,"favourites_count":180,"statuses_count":2586,"created_at":"Mon Oct 11 01:36:42 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492141417263673344\/GU8ZtwYg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492141417263673344\/GU8ZtwYg.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"882CA1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493120362129809409\/eFcw90w1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493120362129809409\/eFcw90w1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201086105\/1401997600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[19.06376396,-98.21262321]},"coordinates":{"type":"Point","coordinates":[-98.21262321,19.06376396]},"place":{"id":"0ac8a42f23e8f736","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0ac8a42f23e8f736.json","place_type":"city","name":"Puebla","full_name":"Puebla, M\u00e9xico","country_code":"MX","country":"M\u00e9xico","bounding_box":{"type":"Polygon","coordinates":[[[-98.289206,18.837650],[-98.289206,19.226809],[-98.019327,19.226809],[-98.019327,18.837650]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/miT4Ab1fMu","expanded_url":"https:\/\/www.swarmapp.com\/c\/8Ke6N1ya0ad","display_url":"swarmapp.com\/c\/8Ke6N1ya0ad","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072664"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047523102721,"id_str":"663728047523102721","text":"RT @aminsalmee: Exactly! also.... Real men dont let her girl be best friend with another man, be her best friend. https:\/\/t.co\/9Jz9VL61Xz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1488091964,"id_str":"1488091964","name":"amir","screen_name":"amirasyy","location":"Cambridge, England","url":"http:\/\/Instagram.com\/amirasyy","description":"20","protected":false,"verified":false,"followers_count":386,"friends_count":370,"listed_count":3,"favourites_count":7114,"statuses_count":23441,"created_at":"Thu Jun 06 16:01:46 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2DADD4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661857626611843072\/yKccfJaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661857626611843072\/yKccfJaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1488091964\/1446634130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 11:25:47 +0000 2015","id":662591705716133888,"id_str":"662591705716133888","text":"Exactly! also.... Real men dont let her girl be best friend with another man, be her best friend. https:\/\/t.co\/9Jz9VL61Xz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263569122,"id_str":"263569122","name":"sufi amin salmee","screen_name":"aminsalmee","location":"Malaysia","url":"https:\/\/soundcloud.com\/amin-salmee","description":"'We Belong to Love' is OUT NOW!!\nhttp:\/\/bit.ly\/AminBeatport","protected":false,"verified":false,"followers_count":951,"friends_count":754,"listed_count":8,"favourites_count":6662,"statuses_count":68430,"created_at":"Thu Mar 10 08:54:41 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539146230505304064\/SRw08lVN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539146230505304064\/SRw08lVN.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646170516554821632\/L-wN0_u3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646170516554821632\/L-wN0_u3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263569122\/1438631739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1058,"favorite_count":451,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aminsalmee","name":"sufi amin salmee","id":263569122,"id_str":"263569122","indices":[3,14]}],"symbols":[],"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}},"source_status_id":662591705716133888,"source_status_id_str":"662591705716133888","source_user_id":263569122,"source_user_id_str":"263569122"}]},"extended_entities":{"media":[{"id":662591695859548160,"id_str":"662591695859548160","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH_owbVAAACtMy.jpg","url":"https:\/\/t.co\/9Jz9VL61Xz","display_url":"pic.twitter.com\/9Jz9VL61Xz","expanded_url":"http:\/\/twitter.com\/aminsalmee\/status\/662591705716133888\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":851,"resize":"fit"},"medium":{"w":600,"h":709,"resize":"fit"},"small":{"w":340,"h":401,"resize":"fit"}},"source_status_id":662591705716133888,"source_status_id_str":"662591705716133888","source_user_id":263569122,"source_user_id_str":"263569122"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080072657"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047556661248,"id_str":"663728047556661248","text":"@supergocho94 Guru, Kundalini, chakras, Liberacion, Iluminacion, <-- si te suenan familiares, visita: https:\/\/t.co\/3WIrfxajol","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1694792634,"in_reply_to_user_id_str":"1694792634","in_reply_to_screen_name":"supergocho94","user":{"id":1363240718,"id_str":"1363240718","name":"tricia","screen_name":"triciawils","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":643,"listed_count":0,"favourites_count":0,"statuses_count":12269,"created_at":"Fri Apr 19 00:38:54 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569549918273302528\/HVkJ-Lh0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569549918273302528\/HVkJ-Lh0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1363240718\/1416845562","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3WIrfxajol","expanded_url":"http:\/\/eblog2.tk","display_url":"eblog2.tk","indices":[105,128]}],"user_mentions":[{"screen_name":"supergocho94","name":"supergocho94","id":1694792634,"id_str":"1694792634","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080072665"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047531679744,"id_str":"663728047531679744","text":"@xportrait \u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663673968616972289,"in_reply_to_status_id_str":"663673968616972289","in_reply_to_user_id":3426821872,"in_reply_to_user_id_str":"3426821872","in_reply_to_screen_name":"xportrait","user":{"id":3426821872,"id_str":"3426821872","name":"CELESTICA","screen_name":"xportrait","location":"Quid pro quo! \u2728","url":null,"description":"Favorite e lembre-se: Sabemos o que tem aqui.","protected":false,"verified":false,"followers_count":340,"friends_count":326,"listed_count":2,"favourites_count":240,"statuses_count":549,"created_at":"Sun Aug 16 21:33:15 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"97694F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661641559176323072\/RSQ_14Ok_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661641559176323072\/RSQ_14Ok_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3426821872\/1447068546","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xportrait","name":"CELESTICA","id":3426821872,"id_str":"3426821872","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072659"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047539884032,"id_str":"663728047539884032","text":"RT @JClll: \u5b66\u6821\u5e30\u308a\u306b\u30b5\u30af\u30e9\u30c0\u30d5\u30a1\u30df\u30ea\u30a2\u898b\u305f\u2026\u3002 http:\/\/t.co\/otIKL1H3oy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":770738720,"id_str":"770738720","name":"\u690d\u6728\u4e45\u592b","screen_name":"hueki0422","location":"\u5ddd\u5d0e\u3068\u6d77\u3068\u7a7a","url":"http:\/\/instagram.com\/hisao0422","description":"\u304b\u307f\u3058\u3087\u30fc\u3072\u308d\u5148\u751f\u306b\u30a2\u30a4\u30b3\u30f3\u63cf\u3044\u3066\u9802\u304d\u307e\u3057\u305f\u3002\u30d0\u30a4\u30afVFR750F\u3068\u30ed\u30fc\u30d0\u30fcMINI\u3068\u30d0\u30a4\u30aa\u30ea\u30f3\u3092\u611b\u3059\u308b\u4e00\u5fdc\u30b5\u30fc\u30d5\u30a1\u30fc\u3067\u3059\u30024\u30b3\u30de\u6f2b\u753b\u3092\u7b46\u982d\u306b\u8da3\u5473\u306f\u898b\u5883\u306a\u3057\u3002","protected":false,"verified":false,"followers_count":279,"friends_count":278,"listed_count":5,"favourites_count":51237,"statuses_count":32065,"created_at":"Tue Aug 21 03:25:24 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504915358994538496\/DK6hN2OV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504915358994538496\/DK6hN2OV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/770738720\/1402240523","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 22 14:15:48 +0000 2015","id":623858990078758916,"id_str":"623858990078758916","text":"\u5b66\u6821\u5e30\u308a\u306b\u30b5\u30af\u30e9\u30c0\u30d5\u30a1\u30df\u30ea\u30a2\u898b\u305f\u2026\u3002 http:\/\/t.co\/otIKL1H3oy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2839014024,"id_str":"2839014024","name":"\u3086\u3046\u3061\u3047\u308b","screen_name":"JClll","location":"\u3061\u3047\u308b\u3061\u3047\u308b\u3089\u3093\u3069","url":null,"description":null,"protected":false,"verified":false,"followers_count":994,"friends_count":34,"listed_count":5,"favourites_count":6931,"statuses_count":1124,"created_at":"Fri Oct 03 12:52:08 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662266591317372929\/qCG2Yagb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662266591317372929\/qCG2Yagb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2839014024\/1446826140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":532,"favorite_count":285,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":623858979962097665,"id_str":"623858979962097665","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","url":"http:\/\/t.co\/otIKL1H3oy","display_url":"pic.twitter.com\/otIKL1H3oy","expanded_url":"http:\/\/twitter.com\/JClll\/status\/623858990078758916\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":623858979962097665,"id_str":"623858979962097665","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","url":"http:\/\/t.co\/otIKL1H3oy","display_url":"pic.twitter.com\/otIKL1H3oy","expanded_url":"http:\/\/twitter.com\/JClll\/status\/623858990078758916\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JClll","name":"\u3086\u3046\u3061\u3047\u308b","id":2839014024,"id_str":"2839014024","indices":[3,9]}],"symbols":[],"media":[{"id":623858979962097665,"id_str":"623858979962097665","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","url":"http:\/\/t.co\/otIKL1H3oy","display_url":"pic.twitter.com\/otIKL1H3oy","expanded_url":"http:\/\/twitter.com\/JClll\/status\/623858990078758916\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":623858990078758916,"source_status_id_str":"623858990078758916","source_user_id":2839014024,"source_user_id_str":"2839014024"}]},"extended_entities":{"media":[{"id":623858979962097665,"id_str":"623858979962097665","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKhkb9qUEAEU3SE.jpg","url":"http:\/\/t.co\/otIKL1H3oy","display_url":"pic.twitter.com\/otIKL1H3oy","expanded_url":"http:\/\/twitter.com\/JClll\/status\/623858990078758916\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":623858990078758916,"source_status_id_str":"623858990078758916","source_user_id":2839014024,"source_user_id_str":"2839014024"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080072661"} +{"created_at":"Mon Nov 09 14:41:12 +0000 2015","id":663728047561056257,"id_str":"663728047561056257","text":"#4DaysTillPURPOSE https:\/\/t.co\/c8qCeCR2eA","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333549235,"id_str":"333549235","name":"chanel #1 \u2728","screen_name":"Acosandoabieber","location":"TW,AHS & Skins Jack & Jack \u2b50","url":"https:\/\/www.wattpad.com\/user\/Greenteabook94","description":"Justin y el porro son lo \u00fanico que me importa en esta vida, @justinbieber me sigui\u00f3 el 30\/07\/15\u2764 17 a\u00f1os al pedo. |-\/ Belieber since 2009.. 08\/11\/13 #nov13","protected":false,"verified":false,"followers_count":1254,"friends_count":1049,"listed_count":5,"favourites_count":5069,"statuses_count":11930,"created_at":"Mon Jul 11 18:21:43 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"161317","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625086589933342720\/juRc40Nu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625086589933342720\/juRc40Nu.jpg","profile_background_tile":true,"profile_link_color":"94D455","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662791253512335360\/nSIfrgkL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662791253512335360\/nSIfrgkL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/333549235\/1446856313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[0,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728045128294400,"id_str":"663728045128294400","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI_VWIAAm13Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI_VWIAAm13Y.jpg","url":"https:\/\/t.co\/c8qCeCR2eA","display_url":"pic.twitter.com\/c8qCeCR2eA","expanded_url":"http:\/\/twitter.com\/Acosandoabieber\/status\/663728047561056257\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":599,"h":535,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728045128294400,"id_str":"663728045128294400","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJI_VWIAAm13Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJI_VWIAAm13Y.jpg","url":"https:\/\/t.co\/c8qCeCR2eA","display_url":"pic.twitter.com\/c8qCeCR2eA","expanded_url":"http:\/\/twitter.com\/Acosandoabieber\/status\/663728047561056257\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":535,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":599,"h":535,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080072666"} +{"delete":{"status":{"id":646239154611863552,"id_str":"646239154611863552","user_id":2877843791,"user_id_str":"2877843791"},"timestamp_ms":"1447080073343"}} +{"delete":{"status":{"id":635380999153577984,"id_str":"635380999153577984","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080073374"}} +{"delete":{"status":{"id":663716999734779904,"id_str":"663716999734779904","user_id":2749749424,"user_id_str":"2749749424"},"timestamp_ms":"1447080073443"}} +{"delete":{"status":{"id":661178988664979457,"id_str":"661178988664979457","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080073677"}} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717582848,"id_str":"663728051717582848","text":"Its amazing, the things your body will do just when you don't want them to","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726258308,"id_str":"726258308","name":"Yusrah Parker","screen_name":"Yusrahcullen","location":null,"url":null,"description":"Instagram: Yusrah69","protected":false,"verified":false,"followers_count":829,"friends_count":96,"listed_count":8,"favourites_count":24,"statuses_count":3372,"created_at":"Mon Jul 30 15:17:53 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627764305103036416\/UcHUs6_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627764305103036416\/UcHUs6_l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726258308\/1438506744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051738583040,"id_str":"663728051738583040","text":"RT @Hannah_hnl: It's only Monday\ud83d\ude05\ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":597107526,"id_str":"597107526","name":"Big Ben","screen_name":"bvickery13","location":null,"url":null,"description":"I drive a cummins turbo diesel Hit me up \n765 686 2739 #cummins","protected":false,"verified":false,"followers_count":210,"friends_count":292,"listed_count":2,"favourites_count":2190,"statuses_count":5313,"created_at":"Sat Jun 02 03:00:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585286704589840384\/c2udSd02_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585286704589840384\/c2udSd02_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/597107526\/1415673677","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:44 +0000 2015","id":663724153405612032,"id_str":"663724153405612032","text":"It's only Monday\ud83d\ude05\ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":447338439,"id_str":"447338439","name":"Hannah Lewis","screen_name":"Hannah_hnl","location":"daydreamer ","url":null,"description":"dare yah to spell my name backwards(-;","protected":false,"verified":false,"followers_count":325,"friends_count":347,"listed_count":0,"favourites_count":2129,"statuses_count":6822,"created_at":"Mon Dec 26 19:38:22 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FC74FC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/683708400\/aad1619a6521840f5cdbbaf2a4151b15.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/683708400\/aad1619a6521840f5cdbbaf2a4151b15.jpeg","profile_background_tile":true,"profile_link_color":"6BDB4F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ED1AED","profile_text_color":"5AE0D9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657370013683331072\/7dY-tecY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657370013683331072\/7dY-tecY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447338439\/1443289038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hannah_hnl","name":"Hannah Lewis","id":447338439,"id_str":"447338439","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073662"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051725946880,"id_str":"663728051725946880","text":"@smsm_turbo \u064a\u0627 \u0631\u0628 \ud83d\ude4f\n\u062d\u0628\u064a\u0628\u064a \ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727878929039361,"in_reply_to_status_id_str":"663727878929039361","in_reply_to_user_id":345803619,"in_reply_to_user_id_str":"345803619","in_reply_to_screen_name":"smsm_turbo","user":{"id":1006970263,"id_str":"1006970263","name":"\u0633\u0639\u062f\u0648\u0648\u0648\u0646 \u2122","screen_name":"AhmedSaad_22","location":"\u0628\u0644\u062f \u0627\u0644\u0639\u0643","url":"http:\/\/instagram.com\/ahmedsaad_22","description":"#Muslim #Faculty_of_Science #mansoura #Zoology_Department #AmrDiab #Ahly #Barca #MUFC #Hollywood .. \u0648\u062a\u0648\u064a\u062a\u0627\u062a\u064a \u0639\u0627\u062f\u064a\u0629 \u062c\u062f\u0627\u064b \u0628\u0633 \u0633\u0627\u0639\u0627\u062a \u0628\u062a\u062c\u0644\u064a \u0645\u0646\u064a \u0643\u062f\u0647 \u270c","protected":false,"verified":false,"followers_count":823,"friends_count":657,"listed_count":2,"favourites_count":2146,"statuses_count":22866,"created_at":"Wed Dec 12 18:09:27 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660971786369114112\/ldeLUZPU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660971786369114112\/ldeLUZPU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1006970263\/1446369583","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"smsm_turbo","name":"pepsi","id":345803619,"id_str":"345803619","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073659"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721781248,"id_str":"663728051721781248","text":"\u6700\u5f8c\u3001\u3061\u3047\u3058\u3087\u3093\u3075\u3093\u3092\u565b\u3093\u3060\u6c17\u304c\u3059\u308b\u306e\u306f\u79c1\u304c\u75b2\u308c\u3066\u3044\u308b\u304b\u3089\uff1f\n\u305d\u3057\u3066\u30ec\u30b4\u4f5c\u3063\u3066\u7d42\u308f\u308a\uff1f\n\n\u96fb\u6ce2\u60aa\u304f\u3066\u3088\u304f\u308f\u304b\u3089\u306c\u307e\u307e\uc548\ub155...\u314d.\u314d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619697629,"id_str":"619697629","name":"\ub9ac\uc5d0\u261c*~*\u308a\u3048","screen_name":"ringaringarie","location":null,"url":null,"description":"\uadf8\ub0e5 \ucd5c\uac15\uc8fc \ud32c","protected":false,"verified":false,"followers_count":71,"friends_count":124,"listed_count":1,"favourites_count":1184,"statuses_count":24684,"created_at":"Wed Jun 27 05:08:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661551160524804096\/Nhr-DD91_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661551160524804096\/Nhr-DD91_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619697629\/1430153123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751165952,"id_str":"663728051751165952","text":"RT @Pattzmiller: #AfroTripleRelease\n\n1st Dec - Back2Back Afro B Jaij Hollands Kweezy\n\n8th Dec - AfroB - Mo Ni Fe Re\n\n25th Dec - AfroB - Rea\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242480883,"id_str":"242480883","name":"KwamePoet","screen_name":"KwameDaDesigner","location":"\u00dcT: 51.4824438,-0.0972178","url":"http:\/\/www.facebook.com\/Asarekidd?ref=tn_tnmn","description":"just a avarage guy who writes poems. Instagram: @Mr_kwarmz http:\/\/simplykwame.blogspot.com LDN\u27a1\ufe0fLEI creative director of #Ajayi360Models","protected":false,"verified":false,"followers_count":1313,"friends_count":1960,"listed_count":15,"favourites_count":2772,"statuses_count":20254,"created_at":"Mon Jan 24 21:57:13 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/197292136\/IMG00005-20100926-1035.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/197292136\/IMG00005-20100926-1035.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653686326705917952\/j615cLRU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653686326705917952\/j615cLRU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242480883\/1444685939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:34 +0000 2015","id":663727383984398336,"id_str":"663727383984398336","text":"#AfroTripleRelease\n\n1st Dec - Back2Back Afro B Jaij Hollands Kweezy\n\n8th Dec - AfroB - Mo Ni Fe Re\n\n25th Dec - AfroB - Really want ft Cadet","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355422930,"id_str":"355422930","name":"Pattz","screen_name":"Pattzmiller","location":"London \u2b05\ufe0f\u27a1\ufe0f Southampton","url":"https:\/\/soundcloud.com\/pattzmillz","description":"22 - DJ\/Event Organizer \/ #DisturbingSouth \/ #London2Lagos \/ BOOKINGS Contact Pattzmillz@gmail.com \/ https:\/\/t.co\/MOaZ4UuO0o (OLD SOUNDCLOUD \nRIP Symone \u2764\ufe0f","protected":false,"verified":false,"followers_count":3154,"friends_count":1793,"listed_count":9,"favourites_count":2809,"statuses_count":239484,"created_at":"Mon Aug 15 10:02:38 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646144672365215744\/I-TNqBJy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646144672365215744\/I-TNqBJy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355422930\/1446658514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"AfroTripleRelease","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AfroTripleRelease","indices":[17,35]}],"urls":[],"user_mentions":[{"screen_name":"Pattzmiller","name":"Pattz","id":355422930,"id_str":"355422930","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755343872,"id_str":"663728051755343872","text":"RT @0966_1: \u0633\u0627\u0645\u062d .. \u0644\u064a\u0633 \u0644\u0623\u0646\u0647\u0645 \u064a\u0633\u062a\u062d\u0642\u0648\u0646 \u0627\u0644\u0645\u0633\u0627\u0645\u062d\u0647 \u0623\u0628\u062f\u0627\u064b \u060c \u0628\u0644 \u0644\u0623\u0646\u0643 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u0639\u064a\u0634 \u0628\u0644\u0627 \u062a\u0641\u0643\u064a\u0631 \u0633\u0644\u0628\u064a \u0628\u0647\u0645","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489576243,"id_str":"489576243","name":"\u062d\u0640\u0640\u0643\u064e\u0640\u0627\u0653\u064a\u0629\u064e\u0652_\u0631\u064f\u0648\u062d\u064e\u2661","screen_name":"sh0sh_23","location":"Saudi Arabia","url":null,"description":"\u06af\u064f\u0644\u0646\u0622 \u0639\u064f\u0634\u0622\u0642\u0652 \u0644\u06af\u0646\u0652 \u06af\u064f\u0644 \u0634\u064e\u062e\u0635\u0652 \u0644\u0640\u0650\u0647\u064f \u062d\u06af\u0640\u0622\u064a\u0640\u06c1","protected":false,"verified":false,"followers_count":481,"friends_count":488,"listed_count":0,"favourites_count":68,"statuses_count":3148,"created_at":"Sat Feb 11 17:30:05 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453826213921161216\/3TC7z9kx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453826213921161216\/3TC7z9kx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489576243\/1397035560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:32:20 +0000 2015","id":663484223878275074,"id_str":"663484223878275074","text":"\u0633\u0627\u0645\u062d .. \u0644\u064a\u0633 \u0644\u0623\u0646\u0647\u0645 \u064a\u0633\u062a\u062d\u0642\u0648\u0646 \u0627\u0644\u0645\u0633\u0627\u0645\u062d\u0647 \u0623\u0628\u062f\u0627\u064b \u060c \u0628\u0644 \u0644\u0623\u0646\u0643 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u0639\u064a\u0634 \u0628\u0644\u0627 \u062a\u0641\u0643\u064a\u0631 \u0633\u0644\u0628\u064a \u0628\u0647\u0645","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362259486,"id_str":"2362259486","name":"MESHAAL","screen_name":"0966_1","location":null,"url":null,"description":"\u0633\u0648\u0641 \u064a\u0623\u062a\u064a \u064a\u0648\u064f\u0645 \u0644\u064f\u0650\u0622 \u0623\u06aa\u0648\u064f\u0646 \u0645\u0639\u064d\u06aa\u0645 \u060c \u0648\u0633\u0648\u0641 \u062a\u062f\u0650\u062e\u0640\u0644\u064f\u0650\u0648\u0646 \u0644\u064f\u0650\u062a\u0642\u0631\u064d\u0623\u0648\u064f\u0622 \u0645\u0622 \u06aa\u062a\u0628\u064e\u062a \u060c \u0641\u064f\u0625\u0646 \u0648\u064f\u062c\u064d\u062f\u0650\u062a\u0645 \u0645\u0622 \u064a\u0624\u062c\u064d\u0631\u064d\u0646\u064a \u0623\u0646\u0634\u064f\u0631\u064d\u0648\u064f\u0647\u0640 \u0648\u0625\u0646 \u0648\u064f\u062c\u062f\u0650\u062a\u0645 \u0645\u0622 \u064a\u0624\u062b\u0645\u0646\u064a \u0623\u062a\u0631\u06aa\u0648\u064f\u0647\u0640 (Riyadh)","protected":false,"verified":false,"followers_count":4582,"friends_count":74,"listed_count":3,"favourites_count":51,"statuses_count":4090,"created_at":"Wed Feb 26 06:41:17 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595898864860696577\/6SuUH5c5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595898864860696577\/6SuUH5c5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362259486\/1430909303","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":162,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0966_1","name":"MESHAAL","id":2362259486,"id_str":"2362259486","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717558272,"id_str":"663728051717558272","text":"@Ttg_Maggie_ BEBEZINHA.... :((","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725529837805568,"in_reply_to_status_id_str":"663725529837805568","in_reply_to_user_id":3020312171,"in_reply_to_user_id_str":"3020312171","in_reply_to_screen_name":"Ttg_Maggie_","user":{"id":3020262507,"id_str":"3020262507","name":"Mads.","screen_name":"xldrbx","location":null,"url":null,"description":"'Maybe in time you'll want to be mine.'","protected":false,"verified":false,"followers_count":162,"friends_count":135,"listed_count":0,"favourites_count":2629,"statuses_count":17252,"created_at":"Thu Feb 05 18:53:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663331542186504192\/2EF8mJUy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663331542186504192\/2EF8mJUy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3020262507\/1446985570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ttg_Maggie_","name":"Maggie,, 111","id":3020312171,"id_str":"3020312171","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755331585,"id_str":"663728051755331585","text":"Ai q mrd amanha tem prova e eu n sei porra nenhuma \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3095285061,"id_str":"3095285061","name":"\u25cfPipulito\u25cf","screen_name":"Bogeymanfb","location":"Gale *0*","url":"http:\/\/bogeymanfb.tumblr.com\/","description":"Stop!You are going to kill him!","protected":false,"verified":false,"followers_count":69,"friends_count":112,"listed_count":0,"favourites_count":355,"statuses_count":1029,"created_at":"Wed Mar 18 20:17:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662973720261173248\/ziLkpqum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662973720261173248\/ziLkpqum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3095285061\/1446900912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730178048,"id_str":"663728051730178048","text":"RT @TalentStreet360: Las habilidades m\u00e1s demandadas en un #directivo por los reclutadores https:\/\/t.co\/CxtgDBlyP3 @360_talent https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2296452908,"id_str":"2296452908","name":"Ana P\u00e9rez P\u00e9rez","screen_name":"anaperezasm","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":309,"friends_count":148,"listed_count":16,"favourites_count":674,"statuses_count":10484,"created_at":"Fri Jan 17 17:09:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594588645224534016\/Vzq_NLYn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594588645224534016\/Vzq_NLYn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2296452908\/1431878768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:45:16 +0000 2015","id":663638471903461376,"id_str":"663638471903461376","text":"Las habilidades m\u00e1s demandadas en un #directivo por los reclutadores https:\/\/t.co\/CxtgDBlyP3 @360_talent https:\/\/t.co\/ZFTyDWSsfq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3956619557,"id_str":"3956619557","name":"Talent Street","screen_name":"TalentStreet360","location":"Barcelona","url":"http:\/\/www.equiposytalento.com\/talentstreet","description":"Talent Street es el portal de referencia en Talento Joven y Employer Branding. Unimos las mejores empresas de hoy con el mejor talento del ma\u00f1ana.","protected":false,"verified":false,"followers_count":155,"friends_count":152,"listed_count":10,"favourites_count":63,"statuses_count":123,"created_at":"Wed Oct 14 14:37:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658617804636168193\/tLhkMW45_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658617804636168193\/tLhkMW45_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3956619557\/1445861292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[{"text":"directivo","indices":[37,47]}],"urls":[{"url":"https:\/\/t.co\/CxtgDBlyP3","expanded_url":"http:\/\/bit.ly\/1XZ07sL","display_url":"bit.ly\/1XZ07sL","indices":[69,92]}],"user_mentions":[{"screen_name":"360_talent","name":"360 Talent","id":94230374,"id_str":"94230374","indices":[93,104]}],"symbols":[],"media":[{"id":663638470297059328,"id_str":"663638470297059328","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","url":"https:\/\/t.co\/ZFTyDWSsfq","display_url":"pic.twitter.com\/ZFTyDWSsfq","expanded_url":"http:\/\/twitter.com\/TalentStreet360\/status\/663638471903461376\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":313,"resize":"fit"},"large":{"w":560,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663638470297059328,"id_str":"663638470297059328","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","url":"https:\/\/t.co\/ZFTyDWSsfq","display_url":"pic.twitter.com\/ZFTyDWSsfq","expanded_url":"http:\/\/twitter.com\/TalentStreet360\/status\/663638471903461376\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":313,"resize":"fit"},"large":{"w":560,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"directivo","indices":[58,68]}],"urls":[{"url":"https:\/\/t.co\/CxtgDBlyP3","expanded_url":"http:\/\/bit.ly\/1XZ07sL","display_url":"bit.ly\/1XZ07sL","indices":[90,113]}],"user_mentions":[{"screen_name":"TalentStreet360","name":"Talent Street","id":3956619557,"id_str":"3956619557","indices":[3,19]},{"screen_name":"360_talent","name":"360 Talent","id":94230374,"id_str":"94230374","indices":[114,125]}],"symbols":[],"media":[{"id":663638470297059328,"id_str":"663638470297059328","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","url":"https:\/\/t.co\/ZFTyDWSsfq","display_url":"pic.twitter.com\/ZFTyDWSsfq","expanded_url":"http:\/\/twitter.com\/TalentStreet360\/status\/663638471903461376\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":313,"resize":"fit"},"large":{"w":560,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663638471903461376,"source_status_id_str":"663638471903461376","source_user_id":3956619557,"source_user_id_str":"3956619557"}]},"extended_entities":{"media":[{"id":663638470297059328,"id_str":"663638470297059328","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW3rDFXAAA4B6h.png","url":"https:\/\/t.co\/ZFTyDWSsfq","display_url":"pic.twitter.com\/ZFTyDWSsfq","expanded_url":"http:\/\/twitter.com\/TalentStreet360\/status\/663638471903461376\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":313,"resize":"fit"},"large":{"w":560,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"}},"source_status_id":663638471903461376,"source_status_id_str":"663638471903461376","source_user_id":3956619557,"source_user_id_str":"3956619557"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721736193,"id_str":"663728051721736193","text":"https:\/\/t.co\/VIC2EY1OZ2 Eminem I NEED A DOCTOR!! miss this song so much totally forgot about this song #Eminem","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4056297976,"id_str":"4056297976","name":"Eminem","screen_name":"Eminemthingz","location":null,"url":null,"description":"Just Eminem things, follow & RT.\ncheck out this link! \nhttp:\/\/amzn.to\/1PuaLWC","protected":false,"verified":false,"followers_count":497,"friends_count":1203,"listed_count":73,"favourites_count":0,"statuses_count":31206,"created_at":"Tue Oct 27 21:51:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659126218336399360\/gTsSgnjd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659126218336399360\/gTsSgnjd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4056297976\/1445983107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Eminem","indices":[103,110]}],"urls":[{"url":"https:\/\/t.co\/VIC2EY1OZ2","expanded_url":"http:\/\/amzn.to\/1PuaLWC","display_url":"amzn.to\/1PuaLWC","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730186241,"id_str":"663728051730186241","text":"Museum Nasional Ketransmigrasian, Hanya Ada di Lampung - Tribun Lampung https:\/\/t.co\/7RNs87T9v7","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1851518238,"id_str":"1851518238","name":"Sisca Baskara","screen_name":"SiscaBaskara_","location":"Bandar Lampung","url":null,"description":"Mahasiswa yang berharap lulus kuliah tahun depan.","protected":false,"verified":false,"followers_count":34,"friends_count":15,"listed_count":0,"favourites_count":0,"statuses_count":8691,"created_at":"Tue Sep 10 13:48:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000438681622\/00d67c79a4460de774260e9e071be40c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000438681622\/00d67c79a4460de774260e9e071be40c_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7RNs87T9v7","expanded_url":"http:\/\/ift.tt\/20GSjy8","display_url":"ift.tt\/20GSjy8","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051738439680,"id_str":"663728051738439680","text":"@OKYM__705rock \u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3057\u305f\uff01\uff01\n\u3088\u308d\u3057\u304f\u3067\u3059( \u02c6p\u02c6 )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663692990435557376,"in_reply_to_status_id_str":"663692990435557376","in_reply_to_user_id":3314863009,"in_reply_to_user_id_str":"3314863009","in_reply_to_screen_name":"OKYM__705rock","user":{"id":3236962074,"id_str":"3236962074","name":"\u3082\u3063\u3055\u3093","screen_name":"ssktths","location":"\uff1e\uff1e\uff1eRADWIMPS\u304c\u539f\u70b9","url":null,"description":"\u5973\u3067\u3059\u3002172cm\u306e\u9ad8\u8eab\u9577\u732b\u80cc\u7cfb\u5c02\u9580\u5b66\u751f\/\u8d64\uff83\uff9e\uff68\uff6f\uff77\/\u95a2\u897f\/RAD\/OOR\/UNISON\/BLUEN\/OCD\/\uff3bA\uff3d\/BUMP\/9mm\/androp\/MFS\/oral\/BAWDIES\/NCIS.... \u4eba\u751f\u697d\u3057\u3093\u3060\u3082\u3093\u52dd\u3061\u3001\u5f8c\u6094\u306a\u3093\u304b\u3057\u305f\u304f\u306a\u3044\uff1e\uff1e\uff1e\u5973\u3067\u3059\u3002(\uff12\u56de\u76ee)","protected":false,"verified":false,"followers_count":213,"friends_count":218,"listed_count":3,"favourites_count":540,"statuses_count":666,"created_at":"Fri Jun 05 14:06:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662450022168989696\/cJTrFYST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662450022168989696\/cJTrFYST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236962074\/1442249636","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OKYM__705rock","name":"\u3075\u306c\u300211.15\u30aa\u30fc\u30e9\u30eb\u30a4\u30f3\u30b9\u30c8\u30a2\uff01\uff01","id":3314863009,"id_str":"3314863009","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073662"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751096320,"id_str":"663728051751096320","text":"RT @cupnacional: V\u00eddeo | Anna Gabriel: \"Avui fem un primer pas cap a la rep\u00fablica catalana\" https:\/\/t.co\/ikDs8ZMqaO #parlament #perlarep\u00fabl\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298410645,"id_str":"298410645","name":"Laura #Governem-nos*","screen_name":"lrafecas","location":"Pened\u00e8s-Pa\u00efsos Catalans","url":null,"description":null,"protected":false,"verified":false,"followers_count":719,"friends_count":1284,"listed_count":10,"favourites_count":242,"statuses_count":5127,"created_at":"Sat May 14 08:16:56 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645238271220523009\/OwTTHkRo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645238271220523009\/OwTTHkRo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298410645\/1447013712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:08:01 +0000 2015","id":663704598432059393,"id_str":"663704598432059393","text":"V\u00eddeo | Anna Gabriel: \"Avui fem un primer pas cap a la rep\u00fablica catalana\" https:\/\/t.co\/ikDs8ZMqaO #parlament #perlarep\u00fablica","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663663461138870272,"in_reply_to_status_id_str":"663663461138870272","in_reply_to_user_id":91796121,"in_reply_to_user_id_str":"91796121","in_reply_to_screen_name":"cupnacional","user":{"id":91796121,"id_str":"91796121","name":"CUP Pa\u00efsos Catalans","screen_name":"cupnacional","location":"Pa\u00efsos Catalans","url":"http:\/\/cup.cat\/","description":"Candidatura d'Unitat Popular http:\/\/www.facebook.com\/unitatpopular","protected":false,"verified":false,"followers_count":90918,"friends_count":3488,"listed_count":1116,"favourites_count":1524,"statuses_count":48078,"created_at":"Sun Nov 22 14:12:28 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530809890327904256\/R7otAGeH.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530809890327904256\/R7otAGeH.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663667441080377344\/lOqgKzU-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663667441080377344\/lOqgKzU-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91796121\/1447020960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1a27537478dd8e38","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1a27537478dd8e38.json","place_type":"city","name":"Barcelona","full_name":"Barcelona, Catalu\u00f1a","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[2.052477,41.319999],[2.052477,41.468266],[2.226122,41.468266],[2.226122,41.319999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":37,"entities":{"hashtags":[{"text":"parlament","indices":[99,109]},{"text":"perlarep\u00fablica","indices":[110,125]}],"urls":[{"url":"https:\/\/t.co\/ikDs8ZMqaO","expanded_url":"https:\/\/youtu.be\/cUgLiH1gfi4","display_url":"youtu.be\/cUgLiH1gfi4","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"parlament","indices":[116,126]},{"text":"perlarep\u00fablica","indices":[127,140]}],"urls":[{"url":"https:\/\/t.co\/ikDs8ZMqaO","expanded_url":"https:\/\/youtu.be\/cUgLiH1gfi4","display_url":"youtu.be\/cUgLiH1gfi4","indices":[92,115]}],"user_mentions":[{"screen_name":"cupnacional","name":"CUP Pa\u00efsos Catalans","id":91796121,"id_str":"91796121","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717435393,"id_str":"663728051717435393","text":"\u5225\u308c\u8a71\u3092\u3057\u3088\u3046\u3001\u3053\u3053\u306e\u300c\u30b3\u30b3\u30c7\u30aa\u30ef\u30ab\u30ec\u300d\u306e\u30b3\u30fc\u30e9\u30b9\u306d\uff01\uff01\uff01\uff01\uff01 #cafein11 #\u7d30\u304b\u3059\u304e\u3066\u4f1d\u308f\u3089\u306a\u3044\u30dd\u30eb\u30ce\u9078\u624b\u6a29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128697686,"id_str":"128697686","name":"\u3057\u3085\u3046","screen_name":"shuya9174","location":"\u7280\u306e\u304f\u306b","url":"http:\/\/twpf.jp\/shuya9174","description":"\u30a2\u30df\u30e5\u30fc\u30ba\u6cbc\u82b8\u4eba \uff0f \u3010\u8cfd\u30c4\u30a2\u30fc\u30110924\u5927\u5bae\u30011023.24\u6b66\u9053\u9928\u30011222\u5927\u962a \uff0f 1127\u672c\u9593\u796d\u30011201AAA","protected":false,"verified":false,"followers_count":227,"friends_count":188,"listed_count":4,"favourites_count":19522,"statuses_count":29114,"created_at":"Thu Apr 01 23:02:18 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487251897682644992\/Db4DAoHn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487251897682644992\/Db4DAoHn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128697686\/1444920891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cafein11","indices":[32,41]},{"text":"\u7d30\u304b\u3059\u304e\u3066\u4f1d\u308f\u3089\u306a\u3044\u30dd\u30eb\u30ce\u9078\u624b\u6a29","indices":[42,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717558273,"id_str":"663728051717558273","text":"#voteariana https:\/\/t.co\/QcSyKFhmjE","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233217702,"id_str":"3233217702","name":"ballerina","screen_name":"tardftxxvi","location":null,"url":null,"description":"meow","protected":false,"verified":false,"followers_count":268,"friends_count":239,"listed_count":23,"favourites_count":4,"statuses_count":65486,"created_at":"Tue Jun 02 06:52:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661787840783609856\/PODrIU3N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661787840783609856\/PODrIU3N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233217702\/1446609553","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724307433025537,"quoted_status_id_str":"663724307433025537","quoted_status":{"created_at":"Mon Nov 09 14:26:20 +0000 2015","id":663724307433025537,"id_str":"663724307433025537","text":"#voteariana https:\/\/t.co\/tsKmA3Hx8x","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233217702,"id_str":"3233217702","name":"ballerina","screen_name":"tardftxxvi","location":null,"url":null,"description":"meow","protected":false,"verified":false,"followers_count":268,"friends_count":239,"listed_count":23,"favourites_count":4,"statuses_count":65485,"created_at":"Tue Jun 02 06:52:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661787840783609856\/PODrIU3N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661787840783609856\/PODrIU3N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233217702\/1446609553","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721286623961089,"quoted_status_id_str":"663721286623961089","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"voteariana","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/tsKmA3Hx8x","expanded_url":"http:\/\/twitter.com\/ArianasMeaw\/status\/663721833355747328","display_url":"twitter.com\/ArianasMeaw\/st\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"voteariana","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/QcSyKFhmjE","expanded_url":"http:\/\/twitter.com\/agbsisterhood\/status\/663725603661733889","display_url":"twitter.com\/agbsisterhood\/\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730161664,"id_str":"663728051730161664","text":"@Tom_Hill96 @DanBriggs__ @bbroughton96 @Junior95W @tyronf24 @Rfuller94 yeah man easy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727929474576386,"in_reply_to_status_id_str":"663727929474576386","in_reply_to_user_id":774410144,"in_reply_to_user_id_str":"774410144","in_reply_to_screen_name":"Tom_Hill96","user":{"id":562220749,"id_str":"562220749","name":"Billie","screen_name":"BillVillNill","location":"Norwich","url":null,"description":null,"protected":false,"verified":false,"followers_count":299,"friends_count":172,"listed_count":1,"favourites_count":5995,"statuses_count":12658,"created_at":"Tue Apr 24 17:57:25 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/888668946\/325472601571f31e1bf00674c368d335.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/888668946\/325472601571f31e1bf00674c368d335.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657675280132255745\/kootCUuV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657675280132255745\/kootCUuV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562220749\/1439200132","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tom_Hill96","name":"Hill, Tom","id":774410144,"id_str":"774410144","indices":[0,11]},{"screen_name":"DanBriggs__","name":"Dan","id":635652363,"id_str":"635652363","indices":[12,24]},{"screen_name":"bbroughton96","name":"Brandon","id":1246216742,"id_str":"1246216742","indices":[25,38]},{"screen_name":"Junior95W","name":"Junior","id":785396292,"id_str":"785396292","indices":[39,49]},{"screen_name":"tyronf24","name":"Tyron","id":702855373,"id_str":"702855373","indices":[50,59]},{"screen_name":"Rfuller94","name":"Reece","id":887136372,"id_str":"887136372","indices":[60,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755335680,"id_str":"663728051755335680","text":"\u0641\u064a\u0644\u0645 \u0633\u0643\u0633 \u0645\u0635\u0631\u064a \u0645\u062d\u0627\u0631\u0645 \u0634\u0631\u0645\u0648\u0637\u0647 \n \nhttps:\/\/t.co\/uTmmnhPYco\nhttps:\/\/t.co\/s6OMMNK5VH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220086844,"id_str":"3220086844","name":"Maevy Gateshill","screen_name":"fahavibavure","location":"Greenwood Village, CO","url":null,"description":"THE OFFICIAL : \u2206r\u2020is\u2020, Emcee, Gui\u2020\u2206ris\u2020, Wri\u2020er, Producer, En\u2020er\u2020\u2206iner - ODDISCEE! The\u2211xperience - MixTape Coming\u2026","protected":false,"verified":false,"followers_count":266,"friends_count":1936,"listed_count":1,"favourites_count":0,"statuses_count":74,"created_at":"Wed Apr 29 02:46:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618136892786126852\/LW-TJf1p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618136892786126852\/LW-TJf1p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220086844\/1436070817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uTmmnhPYco","expanded_url":"http:\/\/goo.gl\/2wH6N1","display_url":"goo.gl\/2wH6N1","indices":[30,53]},{"url":"https:\/\/t.co\/s6OMMNK5VH","expanded_url":"http:\/\/sco.lt\/5HRZmj","display_url":"sco.lt\/5HRZmj","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742633984,"id_str":"663728051742633984","text":"TOSS:\nWestIndies won the toss and elected to field\n1st T20I:\n\nSriLanka\nvs WestIndies\nat #Pallekele - Nov 9, 2015\n\n#SLvWI","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2797510680,"id_str":"2797510680","name":"Mohamed Hafees","screen_name":"Minuwangatenews","location":"Wariyapola","url":null,"description":"Reaload quiz,Breaking news, gk,tips,sports,hadees","protected":false,"verified":false,"followers_count":94,"friends_count":11,"listed_count":5,"favourites_count":7,"statuses_count":2179,"created_at":"Mon Sep 08 09:04:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602704441272193025\/TSm78CSa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602704441272193025\/TSm78CSa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2797510680\/1445865333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pallekele","indices":[88,98]},{"text":"SLvWI","indices":[114,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717443584,"id_str":"663728051717443584","text":"RT @megalcapture: \ub0a8\uc131\ub3c4 \ucc38\uc5ec \uac00\ub2a5\ud569\ub2c8\ub2e4!\n\ub354\ubd88\uc5b4 \uccad\uc18c\ud558\uc2dc\ub294 \ubd84\ub4e4\uc744 \uc704\ud574 \ud3ec\uc2a4\ud2b8\uc787\uc774\ub098 \ud0c8\ucc29\uc774 \uc26c\uc6b4 \ud14c\uc774\ud504\ub97c \uc774\uc6a9\ud574\uc8fc\uc138\uc694 '\u3145' https:\/\/t.co\/8TraMXPSop","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2375476530,"id_str":"2375476530","name":"Petillant\u00b0","screen_name":"un_non_null","location":"behind fried chicken","url":null,"description":"unexeptable condition!!!!!!!!!","protected":false,"verified":false,"followers_count":38,"friends_count":99,"listed_count":1,"favourites_count":17525,"statuses_count":13336,"created_at":"Thu Mar 06 14:52:49 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515364842144673792\/nVon4alD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515364842144673792\/nVon4alD_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2375476530\/1411707526","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 16:06:41 +0000 2015","id":660488066721669121,"id_str":"660488066721669121","text":"\ub0a8\uc131\ub3c4 \ucc38\uc5ec \uac00\ub2a5\ud569\ub2c8\ub2e4!\n\ub354\ubd88\uc5b4 \uccad\uc18c\ud558\uc2dc\ub294 \ubd84\ub4e4\uc744 \uc704\ud574 \ud3ec\uc2a4\ud2b8\uc787\uc774\ub098 \ud0c8\ucc29\uc774 \uc26c\uc6b4 \ud14c\uc774\ud504\ub97c \uc774\uc6a9\ud574\uc8fc\uc138\uc694 '\u3145' https:\/\/t.co\/8TraMXPSop","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":660487068343078912,"in_reply_to_status_id_str":"660487068343078912","in_reply_to_user_id":3315906078,"in_reply_to_user_id_str":"3315906078","in_reply_to_screen_name":"megalcapture","user":{"id":3315906078,"id_str":"3315906078","name":"(RT)\uba54\uac08\ub9ac\uc544 \ubd07","screen_name":"megalcapture","location":null,"url":"http:\/\/megalian.com\/","description":"\uba54\uac08\ub9ac\uc544 \uae00 \ucea1\uccd0 \ubc0f RT! \uba54\ub150\uae00 \uc704\uc8fc\uc785\ub2c8\ub2e4 \uba54\uac08\ub9ac\uc544 \uc624\ud508 \uae30\ub150 \ud64d\ubcf4\ub97c \uc704\ud574 \ub9cc\ub4e0 \uc218\ub3d9\ubd07\uc785\ub2c8\ub2e4 \ub9c8\uc74c\ud568\uc740 100RT \uc774\uc0c1, \uc790\ud2b8\ub294 3\uc2dc\uac04 \ub2e8\uc704\ub85c \uc62c\ub77c\uc635\ub2c8\ub2e4 +\uc6d0\uae00 \ub9c1\ud06c\uac00 \uc774\uc0c1\ud558\uba74 \uba58\uc158 \uc8fc\uc138\uc694\u3160\u3160","protected":false,"verified":false,"followers_count":5120,"friends_count":49,"listed_count":29,"favourites_count":351,"statuses_count":4958,"created_at":"Sat Aug 15 12:55:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632554962443104256\/tbuyp0VX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632554962443104256\/tbuyp0VX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315906078\/1439647317","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":30,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660488050904969216,"id_str":"660488050904969216","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"},"medium":{"w":491,"h":703,"resize":"fit"},"large":{"w":491,"h":703,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660488050904969216,"id_str":"660488050904969216","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"},"medium":{"w":491,"h":703,"resize":"fit"},"large":{"w":491,"h":703,"resize":"fit"}}},{"id":660488063764664320,"id_str":"660488063764664320","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGZQMUEAA1-Dc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGZQMUEAA1-Dc.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":490,"h":483,"resize":"fit"},"large":{"w":490,"h":483,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"megalcapture","name":"(RT)\uba54\uac08\ub9ac\uc544 \ubd07","id":3315906078,"id_str":"3315906078","indices":[3,16]}],"symbols":[],"media":[{"id":660488050904969216,"id_str":"660488050904969216","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"},"medium":{"w":491,"h":703,"resize":"fit"},"large":{"w":491,"h":703,"resize":"fit"}},"source_status_id":660488066721669121,"source_status_id_str":"660488066721669121","source_user_id":3315906078,"source_user_id_str":"3315906078"}]},"extended_entities":{"media":[{"id":660488050904969216,"id_str":"660488050904969216","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGYgSUsAAkI1W.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":486,"resize":"fit"},"medium":{"w":491,"h":703,"resize":"fit"},"large":{"w":491,"h":703,"resize":"fit"}},"source_status_id":660488066721669121,"source_status_id_str":"660488066721669121","source_user_id":3315906078,"source_user_id_str":"3315906078"},{"id":660488063764664320,"id_str":"660488063764664320","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CSqGZQMUEAA1-Dc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSqGZQMUEAA1-Dc.jpg","url":"https:\/\/t.co\/8TraMXPSop","display_url":"pic.twitter.com\/8TraMXPSop","expanded_url":"http:\/\/twitter.com\/megalcapture\/status\/660488066721669121\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":490,"h":483,"resize":"fit"},"large":{"w":490,"h":483,"resize":"fit"}},"source_status_id":660488066721669121,"source_status_id_str":"660488066721669121","source_user_id":3315906078,"source_user_id_str":"3315906078"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742621696,"id_str":"663728051742621696","text":"RT @ramtaxjogi: \u092b\u093f\u0930 \u0935\u0939\u0940 \u0926\u093f\u0932 \u0915\u0940 \u0917\u0941\u091c\u093c\u093e\u0930\u093f\u0936, \u092b\u093f\u0930 \u0935\u0939\u0940 \u0909\u0928\u0915\u093e \u0917\u0941\u0930\u0942\u0930;\n\u092b\u093f\u0930 \u0935\u0939\u0940 \u0909\u0928\u0915\u0940 \u0936\u0930\u093e\u0930\u0924, \u092b\u093f\u0930 \u0935\u0939\u0940 \u092e\u0947\u0930\u093e \u0915\u0938\u0942\u0930\u0964","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3255874567,"id_str":"3255874567","name":"\u092a\u094d\u0930\u0947\u092e \u0914\u0930 \u0906\u0928\u0902\u0926","screen_name":"_PremYadav","location":"\u092a\u094d\u0930\u0947\u092e \u0914\u0930 \u0906\u0928\u0902\u0926","url":null,"description":"\u0915\u0941\u091b \u0905\u092a\u094d\u0930\u0924\u093f\u092e \u0930\u093f\u091f\u094d\u0935\u093f\u091f \u0906\u092a \u0938\u092c \u0915\u0947 \u0932\u093f\u092f\u0947, RT \u0915\u0947 \u0932\u093f\u092f\u0947 Likes \u092e\u0947\u0902 \u092a\u0927\u093e\u0930\u0947\u0902 \u092f\u093e @PremAanand \u092a\u0930 \u091c\u093e\u092f\u0947\u0902","protected":false,"verified":false,"followers_count":3569,"friends_count":2237,"listed_count":18,"favourites_count":342,"statuses_count":31703,"created_at":"Thu Jun 25 16:41:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627129245471502336\/u4P4PH15_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627129245471502336\/u4P4PH15_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3255874567\/1438584493","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:58:48 +0000 2015","id":663294591580266496,"id_str":"663294591580266496","text":"\u092b\u093f\u0930 \u0935\u0939\u0940 \u0926\u093f\u0932 \u0915\u0940 \u0917\u0941\u091c\u093c\u093e\u0930\u093f\u0936, \u092b\u093f\u0930 \u0935\u0939\u0940 \u0909\u0928\u0915\u093e \u0917\u0941\u0930\u0942\u0930;\n\u092b\u093f\u0930 \u0935\u0939\u0940 \u0909\u0928\u0915\u0940 \u0936\u0930\u093e\u0930\u0924, \u092b\u093f\u0930 \u0935\u0939\u0940 \u092e\u0947\u0930\u093e \u0915\u0938\u0942\u0930\u0964","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3392873239,"id_str":"3392873239","name":"~ \u0905ru\u0928 ~","screen_name":"ramtaxjogi","location":"India","url":null,"description":"\u0930\u093e\u091c \u0924\u094b \u0939\u092e\u093e\u0930\u093e \u0939\u0930 \u091c\u0917\u0939 \u092a\u0947 \u0939\u0948\u2026!!\n \u092a\u0938\u0902\u0926 \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u094b\u0902 \u0915\u0947 \u201c\u0926\u093f\u0932\u201d \u092e\u0947\u0902 ; \u0914\u0930\n \u0928\u093e\u092a\u0938\u0902\u0926 \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u094b\u0902 \u0915\u0947 \u201c\u0926\u093f\u092e\u093e\u0917\u201d \u092e\u0947\u0902\u2026!! Proud #Rajput , #Leo by Birth \u007b My Tweets are in my Fav \u007d","protected":false,"verified":false,"followers_count":2317,"friends_count":3835,"listed_count":33,"favourites_count":3874,"statuses_count":18106,"created_at":"Sun Aug 30 13:01:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654609817894391808\/jwDTiH7o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654609817894391808\/jwDTiH7o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3392873239\/1445749883","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ramtaxjogi","name":"~ \u0905ru\u0928 ~","id":3392873239,"id_str":"3392873239","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721662464,"id_str":"663728051721662464","text":"RT @EXO_HBK: \u0e2e\u0e30 \u0e15\u0e49\u0e2d\u0e07\u0e2b\u0e49\u0e32\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e2b\u0e23\u0e2d @MnetMAMA\n\u0e41\u0e25\u0e49\u0e27\u0e40\u0e23\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2d\u0e30\u0e44\u0e23\u0e2d\u0e48\u0e30\n\u0e04\u0e27\u0e32\u0e21\u0e43\u0e19\u0e43\u0e08\u0e16\u0e36\u0e07 #EXO \u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22\u0e2d\u0e30\u0e44\u0e23\u0e14\u0e35\n\u0e1e\u0e39\u0e14\u0e2d\u0e30\u0e44\u0e23 \u0e17\u0e27\u0e34\u0e15\u0e2d\u0e30\u0e44\u0e23\n\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e32\u0e27\u0e46\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19 #CallM\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175734508,"id_str":"175734508","name":"KMLXJBKSJ","screen_name":"ja11040","location":"GOT7\u2022EXO\u2022IKON\u2022MONSTAX\u2022BTS","url":null,"description":"\u0e25\u0e31\u0e17\u0e18\u0e34\u0e25\u0e39\u0e48\u0e2b\u0e21\u0e34\u0e19|\u0e1e\u0e35\u0e48\u0e08\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e19\u0e49\u0e2d\u0e07|\u0e2b\u0e27\u0e31\u0e07\u0e21\u0e32\u0e23\u0e4c\u0e04\u0e41\u0e1a\u0e21|\u0e1e\u0e23\u0e30\u0e16\u0e31\u0e07\u0e04\u0e23\u0e34\u0e2a|\u0e2b\u0e48\u0e32\u0e19\u0e1a\u0e34\u0e19|\u0e01\u0e35\u0e2e\u0e22\u0e2d\u0e19\u0e19\u0e35|\u0e1e\u0e35\u0e48\u0e40\u0e15\u0e19\u0e25\u0e4c|\u0e0a\u0e39\u0e01\u0e49\u0e32\u0e2e\u0e22\u0e2d\u0e07\u0e01\u0e31\u0e1a\u0e19\u0e49\u0e2d\u0e07\u0e01\u0e38\u0e4a\u0e01\u0e01\u0e35\u0e49\u2661","protected":false,"verified":false,"followers_count":271,"friends_count":804,"listed_count":0,"favourites_count":1535,"statuses_count":54252,"created_at":"Sat Aug 07 13:04:07 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609341933945618432\/jUpP-LMZ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609341933945618432\/jUpP-LMZ.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662264158792978432\/zKAEf4lS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662264158792978432\/zKAEf4lS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175734508\/1446731053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:44 +0000 2015","id":663725915436781569,"id_str":"663725915436781569","text":"\u0e2e\u0e30 \u0e15\u0e49\u0e2d\u0e07\u0e2b\u0e49\u0e32\u0e1a\u0e23\u0e23\u0e17\u0e31\u0e14\u0e2b\u0e23\u0e2d @MnetMAMA\n\u0e41\u0e25\u0e49\u0e27\u0e40\u0e23\u0e32\u0e08\u0e30\u0e15\u0e49\u0e2d\u0e07\u0e1e\u0e34\u0e21\u0e1e\u0e4c\u0e2d\u0e30\u0e44\u0e23\u0e2d\u0e48\u0e30\n\u0e04\u0e27\u0e32\u0e21\u0e43\u0e19\u0e43\u0e08\u0e16\u0e36\u0e07 #EXO \u0e1a\u0e23\u0e23\u0e22\u0e32\u0e22\u0e2d\u0e30\u0e44\u0e23\u0e14\u0e35\n\u0e1e\u0e39\u0e14\u0e2d\u0e30\u0e44\u0e23 \u0e17\u0e27\u0e34\u0e15\u0e2d\u0e30\u0e44\u0e23\n\u0e15\u0e49\u0e2d\u0e07\u0e22\u0e32\u0e27\u0e46\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19 #CallMeBaby \u0e41\u0e21\u0e48\u0e40\u0e08\u0e49\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724459769991168,"in_reply_to_status_id_str":"663724459769991168","in_reply_to_user_id":484958528,"in_reply_to_user_id_str":"484958528","in_reply_to_screen_name":"EXO_HBK","user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":1,"entities":{"hashtags":[{"text":"EXO","indices":[68,72]},{"text":"CallMeBaby","indices":[120,131]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[20,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[81,85]},{"text":"CallMeBaby","indices":[133,140]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[33,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742748672,"id_str":"663728051742748672","text":"https:\/\/t.co\/UA4WOnXTCK\n#\u0641\u064a\u062f\u064a\u0648 \u0631\u0635\u062f \u062d\u0631\u0643\u0629 \u0627\u0644\u0623\u0633\u0648\u0627\u0642 \u0641\u064a \u0645\u062f\u064a\u0646\u0629 #\u0627\u0644\u0645\u0648\u0635\u0644\n #mondaymotivation\n#BeBraveIn4Words\n#4DaysUntilMITAM\n#BadNamesForARockBand","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3839433629,"id_str":"3839433629","name":"\u062f\u0648\u0644\u0627\u0648\u064a111","screen_name":"amaleews","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":221,"friends_count":164,"listed_count":2,"favourites_count":1,"statuses_count":493,"created_at":"Fri Oct 02 03:38:10 +0000 2015","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663660313540239360\/12VxnZT9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663660313540239360\/12VxnZT9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0641\u064a\u062f\u064a\u0648","indices":[24,30]},{"text":"\u0627\u0644\u0645\u0648\u0635\u0644","indices":[57,64]},{"text":"mondaymotivation","indices":[66,83]},{"text":"BeBraveIn4Words","indices":[84,100]},{"text":"4DaysUntilMITAM","indices":[101,117]},{"text":"BadNamesForARockBand","indices":[118,139]}],"urls":[{"url":"https:\/\/t.co\/UA4WOnXTCK","expanded_url":"https:\/\/archive.org\/details\/mslshp","display_url":"archive.org\/details\/mslshp","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755192320,"id_str":"663728051755192320","text":"\u307f\u3093\u306a\u304a\u305d\u307e\u3064\u3055\u3093\uff01\uff01\u307b\u3089\uff01\uff01\u306f\u3084\u304f\uff01\uff01\u308f\u305f\u3057\u306b\u30ab\u30e9\u677e\u30b3\u30b9\u5199\u3092\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622862501,"id_str":"622862501","name":"\u3059\u3044","screen_name":"suisui721","location":"\u8a73\u3057\u304f\u306f\u30d7\u30ed\u30d5\u3078","url":"http:\/\/twpf.jp\/suisui721","description":"\uff71\uff99\uff8c\uff9a\uff6f\uff84\uff9e\u00b7F\u00b7\uff7c\uff9e\uff6e\uff70\uff9d\uff7d\uff9e\u3068\u3044\u3046\u5b58\u5728\u306b\u7121\u9650\u306e\u53ef\u80fd\u6027\u3092\u611f\u3058\u9b45\u529b\u306b\u60d1\u308f\u3055\u308c\u4eba\u751f\u3092\u72c2\u308f\u3055\u308c\u3066\u3044\u308b\u7cfb\u7c73\u9818\u3002\uff92\uff98\uff76\u306b\u72c2\u308f\u3055\u308c\u308b\u4eba\u751f\u697d\u3057\u3059\u304e\u3066\u3084\u3081\u3089\u308c\u306a\u3044\u3002\u6700\u8fd1\u306f\u904a\u6728\u771f\u3068\u702c\u540d\u6cc9\u306b\u3082\u72c2\u308f\u3055\u308c\u3066\u3044\u308b\u3088\u3046\u3060\u3002\n\u8e0a\u3063\u3066\u307f\u305f\u3010http:\/\/nicovideo.jp\/mylist\/53766369\u3011","protected":false,"verified":false,"followers_count":468,"friends_count":425,"listed_count":32,"favourites_count":5732,"statuses_count":70862,"created_at":"Sat Jun 30 14:34:48 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/855963659\/a248fc8cfbe302639411d9ec000de606.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/855963659\/a248fc8cfbe302639411d9ec000de606.gif","profile_background_tile":true,"profile_link_color":"1B9E3E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662810439848341505\/ly_ZB8nj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662810439848341505\/ly_ZB8nj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622862501\/1445179765","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051729989632,"id_str":"663728051729989632","text":"\"De que me sirve la vida, sino la vivo contigo, de que me sirve la esperanza si es lo ultimo que muere y sin ti ya la he perdido\".","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549543597,"id_str":"549543597","name":"\u30d3\u30af\u30c8\u30eb\u30de\u30cc\u30a8\u30eb","screen_name":"VMS_93","location":"Nuevo Le\u00f3n - M\u00e9xico","url":"https:\/\/www.youtube.com\/user\/NarutoOneFairyHearts","description":"Una persona que adora la vida y la disfruta al maximo :D - A guy who love life itself. Gamer, love anime\/manga, love JRPG and more :D - English\/Espa\u00f1ol","protected":false,"verified":false,"followers_count":212,"friends_count":617,"listed_count":1,"favourites_count":5623,"statuses_count":13255,"created_at":"Mon Apr 09 18:56:48 +0000 2012","utc_offset":-21600,"time_zone":"Monterrey","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BA1E1E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449000962263240704\/PGXBRwc8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449000962263240704\/PGXBRwc8.jpeg","profile_background_tile":false,"profile_link_color":"2205FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592446253360807938\/dKlO_pMP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592446253360807938\/dKlO_pMP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/549543597\/1396425319","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717455873,"id_str":"663728051717455873","text":"@pierrot111222 \ud83c\udfea\n\ud83c\udf59\ud83c\udf5e\ud83c\udf5d\ud83c\udf62\ud83c\udf69\ud83c\udf6c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716796990488577,"in_reply_to_status_id_str":"663716796990488577","in_reply_to_user_id":3310525004,"in_reply_to_user_id_str":"3310525004","in_reply_to_screen_name":"pierrot111222","user":{"id":2583920827,"id_str":"2583920827","name":"\u5b8f\u660e","screen_name":"Uwfoooooooooo","location":"Oita \u2192 Nagasaki","url":null,"description":"\u30c9\u30e9\u30e0\u3057\u3066\u307e\u3059\u3002\u8272\u3005\u30d0\u30f3\u30c9\u7d44\u3093\u3067\u307e\u3059\u3002 \u9577\u5d0e\u5916\u59271\u5e74\u3002\u8efd\u97f3\u3002\u732b\u611b\u597d\u5bb6\u540c\u597d\u4f1a\u2192@neko_aikouka01 888\u2192@888_gaidai","protected":false,"verified":false,"followers_count":347,"friends_count":336,"listed_count":1,"favourites_count":2490,"statuses_count":2178,"created_at":"Mon Jun 23 12:11:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620909980665778176\/i3OpeO1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620909980665778176\/i3OpeO1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2583920827\/1436871477","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pierrot111222","name":"\u30e8\u309b\u30e8\u309b\u30e8\u309b\u30e8\u309b\u30c3\u309b\u30b7!!!!!!!!!","id":3310525004,"id_str":"3310525004","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051738402816,"id_str":"663728051738402816","text":"\u4ed6\u306e\u4eba\u304b\u3089\u306e\u30ea\u30d7\u898b\u3066\u308b\u3068\u7cbe\u5b50\u3068\u304b\u6bcd\u4e73\u3068\u304b\u8a00\u308f\u308c\u3059\u304e\u3066\u3066\u7b11\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835174836,"id_str":"2835174836","name":"\u305f\u304c\u307f","screen_name":"__xxMin","location":"\u8a50\u2606\u6b3a","url":null,"description":"\u306a\u304a\u30ad\u30f3\u30b0\u30ac\u30c1\u52e2\u261e@naoking_19","protected":false,"verified":false,"followers_count":187,"friends_count":303,"listed_count":1,"favourites_count":18089,"statuses_count":54,"created_at":"Sun Sep 28 15:10:15 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662651513961996288\/IHjENnr7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662651513961996288\/IHjENnr7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835174836\/1446908918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073662"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755155456,"id_str":"663728051755155456","text":"\u0643\u064a\u0641 \u0627\u0648\u062f\u0639 \u062d\u0636\u0646\u0643 \u0627\u0644\u0645\u0645\u0644\u064a \u062d\u0646\u0627\u0646\ud83d\ude2d\u2764\ufe0f\ud83d\udcad","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114443139,"id_str":"1114443139","name":"\u0634\u0627\u0645\u0633\u064a\u0622\u0644\u0628\u0627\u0643\u0633\u062a\u0627\u0646\u064a\u0647\u2728.","screen_name":"MsShamsiya","location":"DxB\u2665. ","url":"http:\/\/ask.fm\/MsShamsiya","description":",\u0639\u0634\u0642\u064a \u0627\u0644\u063a\u0646\u0627\u0621\u060c \u064a \u062d\u0628\u064a \u0644\u0644\u063a\u0646\u0627\u0621 \u0644\u0627 \u062c\u064a\u062a \u0627\u0628\u063a\u0646\u064a \u0627\u063a\u0646\u064a \u0648 \u0628\u0643\u0644 \u0627\u0644\u0627\u0644\u062d\u0627\u0646 \u0627\u0637\u0631\u0628\u0644\u0643\u0645 , \u2665\ufe0f#\u0627\u0644\u0639\u064a\u0646\u0627\u0648\u064a\u0647 , \u064a\u0646\u0628\u0627\u0633 \u062d\u0638\u06a9 \u061b \u0644\u0648 \u062d\u064e\u0628\u064a\u0628\u062a\u06a9 \u0634\u0627\u0645\u0633\u064a\u0651\u0647\u2764\ufe0f. \u0645 \u0627\u062e\u0648\u0646 \u062d\u0628\u0643 \u0648\u0627\u0646\u0627 \u0639\u0631\u0648\u0642\u064a \u0634\u0627\u0645\u0633\u064a\u0647","protected":false,"verified":false,"followers_count":2593,"friends_count":1649,"listed_count":6,"favourites_count":8192,"statuses_count":99195,"created_at":"Wed Jan 23 13:51:57 +0000 2013","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663395197447901184\/TwVvJ4QW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663395197447901184\/TwVvJ4QW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114443139\/1447000281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746766849,"id_str":"663728051746766849","text":"\u8d85\u73cd\u3057\u3044\u3060\u308d\u3001\u9f3b\u8840\u3055\u3093\u304c\u30ea\u30d7\u98db\u3070\u3059\u306a\u3093\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3062037974,"id_str":"3062037974","name":"\u9f3b\u8840\u3048\u307e(\u5fd9)@\u62b1\u304d\u6795","screen_name":"ema_yu_29","location":"\u73fe\u5728\u3001\u30ea\u30a2\u30eb\u304c\u591a\u5fd9\u306a\u306e\u3067\u6d6e\u4e0a\u306f\u7a00","url":"http:\/\/tmbox.net\/user\/ema_yu_29\/sound","description":"\u306a\u306a\u305b\u6559\u3048\u307e\u3001\u30cf\u30c3\u30d4\u30fc\u30bb\u30c3\u30c8\u306f\u306a\u30fc\u305f\u3093\u3068\uff01 \u5c0a \u656c \u3059 \u308b \u4eba \u306b \u611f \u8b1d \u3092 \u3002icon\u2192\u3044\u3063\u3061\u3083\u3093 \u30c4\u30a4\u30d7\u30ed\u2192http:\/\/twpro.jp\/ema_yu_29","protected":false,"verified":false,"followers_count":62,"friends_count":55,"listed_count":10,"favourites_count":1144,"statuses_count":4033,"created_at":"Thu Mar 05 01:35:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608925419249635328\/f7Q6heNM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608925419249635328\/f7Q6heNM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3062037974\/1428566678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051738406912,"id_str":"663728051738406912","text":"RT @CarPanthersNews: Those footballs Cam Newton gives to kids after every touchdown can mean a lot more to those kids than you may think. h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61709302,"id_str":"61709302","name":"Bradley Farrell","screen_name":"bPharrell5","location":"Wilmington NC","url":null,"description":"Not all those who wander are lost.","protected":false,"verified":false,"followers_count":296,"friends_count":918,"listed_count":1,"favourites_count":3330,"statuses_count":3267,"created_at":"Fri Jul 31 06:28:35 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"378DE8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476521869\/28951.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476521869\/28951.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"858282","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607766442143023104\/FTc-688b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607766442143023104\/FTc-688b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61709302\/1396936460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:37:42 +0000 2015","id":663576169720250368,"id_str":"663576169720250368","text":"Those footballs Cam Newton gives to kids after every touchdown can mean a lot more to those kids than you may think. https:\/\/t.co\/KxEQXJgdkQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1721012396,"id_str":"1721012396","name":"CAR Panthers News","screen_name":"CarPanthersNews","location":"Charlotte, NC","url":"https:\/\/Instagram.com\/carpanthersnews\/","description":"Largest unofficial Carolina #Panthers account on Twitter. Panthers news, live game updates & much more. #KeepPounding -- Contact us at CarPanthersNews@gmail.com","protected":false,"verified":false,"followers_count":15251,"friends_count":1436,"listed_count":151,"favourites_count":16392,"statuses_count":22331,"created_at":"Mon Sep 02 03:11:52 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661150745845211136\/doce2bmU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661150745845211136\/doce2bmU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1721012396\/1446997582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":415,"favorite_count":499,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663576164816973824,"id_str":"663576164816973824","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","url":"https:\/\/t.co\/KxEQXJgdkQ","display_url":"pic.twitter.com\/KxEQXJgdkQ","expanded_url":"http:\/\/twitter.com\/CarPanthersNews\/status\/663576169720250368\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"},"large":{"w":576,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663576164816973824,"id_str":"663576164816973824","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","url":"https:\/\/t.co\/KxEQXJgdkQ","display_url":"pic.twitter.com\/KxEQXJgdkQ","expanded_url":"http:\/\/twitter.com\/CarPanthersNews\/status\/663576169720250368\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"},"large":{"w":576,"h":375,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarPanthersNews","name":"CAR Panthers News","id":1721012396,"id_str":"1721012396","indices":[3,19]}],"symbols":[],"media":[{"id":663576164816973824,"id_str":"663576164816973824","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","url":"https:\/\/t.co\/KxEQXJgdkQ","display_url":"pic.twitter.com\/KxEQXJgdkQ","expanded_url":"http:\/\/twitter.com\/CarPanthersNews\/status\/663576169720250368\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"},"large":{"w":576,"h":375,"resize":"fit"}},"source_status_id":663576169720250368,"source_status_id_str":"663576169720250368","source_user_id":1721012396,"source_user_id_str":"1721012396"}]},"extended_entities":{"media":[{"id":663576164816973824,"id_str":"663576164816973824","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV_AZFU8AAo52w.jpg","url":"https:\/\/t.co\/KxEQXJgdkQ","display_url":"pic.twitter.com\/KxEQXJgdkQ","expanded_url":"http:\/\/twitter.com\/CarPanthersNews\/status\/663576169720250368\/photo\/1","type":"photo","sizes":{"medium":{"w":576,"h":375,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":221,"resize":"fit"},"large":{"w":576,"h":375,"resize":"fit"}},"source_status_id":663576169720250368,"source_status_id_str":"663576169720250368","source_user_id":1721012396,"source_user_id_str":"1721012396"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073662"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746811905,"id_str":"663728051746811905","text":"Google Jelaskan Mengapa Foto yang Diambil Nexus 5X Terbalik https:\/\/t.co\/TV9o7LMVxY","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":340225488,"id_str":"340225488","name":"Daily Digital ID","screen_name":"DailyDigitalID","location":null,"url":null,"description":"Our feed news on digital media, technology, gadget and music","protected":false,"verified":false,"followers_count":236,"friends_count":0,"listed_count":15,"favourites_count":0,"statuses_count":119269,"created_at":"Fri Jul 22 10:29:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2732596451\/94eeebc11c3c11dc0ecbb6244e444eb0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2732596451\/94eeebc11c3c11dc0ecbb6244e444eb0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TV9o7LMVxY","expanded_url":"http:\/\/dlvr.it\/ChfmT5","display_url":"dlvr.it\/ChfmT5","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742617601,"id_str":"663728051742617601","text":"\u660e\u65e5\u305f\u3063\u305f\u3066\u3093\u3066\u30fc\u5fd9\u3057\u3044\u3060\u308d\u3046\u306a\u3041\u5f15\u3063\u5f35\u308a\u3060\u3053\u3060\u308d\u3046\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2556506479,"id_str":"2556506479","name":"\u30b8\u30a7\u30ac\u30f3","screen_name":"jegan_9427","location":null,"url":null,"description":"freedom\u57a2\/\u6c38\u9060\u71b1KAITO,\u30b9\u30fc\u30d1\u30fc\u96d1\u98df\u30de\u30f3\/\u304a\u7d75\u63cf\u304d\u304c\u597d\u304d\u306a\u5f77\u5fa8\u3048\u308b\u8150\u5ec3\u4eba","protected":false,"verified":false,"followers_count":33,"friends_count":49,"listed_count":1,"favourites_count":1612,"statuses_count":7008,"created_at":"Mon Jun 09 09:23:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582920971054530560\/cBYiV2qA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582920971054530560\/cBYiV2qA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2556506479\/1427207456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742601216,"id_str":"663728051742601216","text":"RT @MyoyoShinnyo: \u305d\u3046\u3044\u3046\u8a71\u3092\u898b\u308b\u305f\u3073\u306b\u3001\u30ad\u30fc\u30dc\u30fc\u30c9\u3067\u6587\u7ae0\u3092\u6253\u3064\u3068\u3044\u3046\u6280\u80fd\u304c\u8aad\u307f\u66f8\u304d\u4e26\u307f\u306b\u5f53\u305f\u308a\u524d\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u304a\u308a\u3001\u305d\u3057\u3066\u63a8\u6572\u3068\u6e05\u66f8\u3092\u307b\u307c\u540c\u6642\u306b\u884c\u3048\u308b\u30ef\u30fc\u30c9\u30d7\u30ed\u30bb\u30c3\u30b5\u304c\u3042\u308b\u74b0\u5883\u306b\u3044\u308b\u81ea\u5206\u305f\u3061\u304c\u3044\u304b\u306b\u6075\u307e\u308c\u3066\u3044\u308b\u304b\u3092\u77e5\u308b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255329214,"id_str":"255329214","name":"\u306f\u304b\u308b\u3093","screen_name":"hakaruru","location":null,"url":null,"description":"\u306a\u306b\u306b\u3064\u304b\u304a\u3063\u304b\uff1f","protected":false,"verified":false,"followers_count":348,"friends_count":672,"listed_count":12,"favourites_count":28739,"statuses_count":175055,"created_at":"Mon Feb 21 04:01:36 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618733235783102464\/nhhvc14U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618733235783102464\/nhhvc14U_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:53:10 +0000 2015","id":663595161717313536,"id_str":"663595161717313536","text":"\u305d\u3046\u3044\u3046\u8a71\u3092\u898b\u308b\u305f\u3073\u306b\u3001\u30ad\u30fc\u30dc\u30fc\u30c9\u3067\u6587\u7ae0\u3092\u6253\u3064\u3068\u3044\u3046\u6280\u80fd\u304c\u8aad\u307f\u66f8\u304d\u4e26\u307f\u306b\u5f53\u305f\u308a\u524d\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u304a\u308a\u3001\u305d\u3057\u3066\u63a8\u6572\u3068\u6e05\u66f8\u3092\u307b\u307c\u540c\u6642\u306b\u884c\u3048\u308b\u30ef\u30fc\u30c9\u30d7\u30ed\u30bb\u30c3\u30b5\u304c\u3042\u308b\u74b0\u5883\u306b\u3044\u308b\u81ea\u5206\u305f\u3061\u304c\u3044\u304b\u306b\u6075\u307e\u308c\u3066\u3044\u308b\u304b\u3092\u77e5\u308b","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246293965,"id_str":"246293965","name":"\u3053\u306a\u305f\u307e\uff08CV:\u6e21\u8fba\u4e45\u7f8e\u5b50\uff09","screen_name":"MyoyoShinnyo","location":"\u30c9\u30a4\u30c4\u5e1d\u56fd\u6b74\u53f2\u4fee\u6b63\u5c40","url":"http:\/\/snudge.blog38.fc2.com\/blog-entry-182.html","description":"\u697d\u3057\u3082\u3046my life\u301c\u2661 \/(\u0e51\u2579\u03c9\u2579\u0e51 )\/\u304a\u3057\u3083\u308c\/\u7f8e\u5bb9\/\u5360\u3044\/\u30c0\u30a4\u30a8\u30c3\u30c8\/\u304a\u51fa\u304b\u3051\/\u5c0f\u3055\u3044\u3082\u306e\/\u53ef\u611b\u3044\u3082\u306e\/\u30b3\u30b9\u30e1\/\u30cd\u30a4\u30eb\/\u304a\u9152\/\u3068\u3046\u3089\u3076\/\u9cf4\u72d0\/\u8aad\u66f8\/\u6620\u753b\/\u6d0b\u670d\/\u30ad\u30ec\u30a4\u306a\u5834\u6240\/\u6563\u6b69\/\u7652\u3057\u305f\u3044\/\u7652\u3055\u308c\u305f\u3044\/\u5922\u306b\u5411\u304b\u3063\u3066\/\u81ea\u5206\u3089\u3057\u304f\/L\u2661VE\/\u25c6Qx5\/ucOICU\/\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u63cf\u3044\u3066\u304f\u308c\u305f\u4eba\u3092\u63a2\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":14537,"friends_count":32,"listed_count":936,"favourites_count":135,"statuses_count":88957,"created_at":"Wed Feb 02 14:39:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"49575A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602925292\/8b1e9nd7qdfvjypk9cym.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602925292\/8b1e9nd7qdfvjypk9cym.jpeg","profile_background_tile":false,"profile_link_color":"DE0404","profile_sidebar_border_color":"F1D4AA","profile_sidebar_fill_color":"ECECC6","profile_text_color":"3D3B49","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000389607856\/69db0f37bdfb26e5b43a39fb30811394_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000389607856\/69db0f37bdfb26e5b43a39fb30811394_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246293965\/1356961043","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MyoyoShinnyo","name":"\u3053\u306a\u305f\u307e\uff08CV:\u6e21\u8fba\u4e45\u7f8e\u5b50\uff09","id":246293965,"id_str":"246293965","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051725844480,"id_str":"663728051725844480","text":"@billpagemaker @Leolanikai @alisonmaehinch @DaviesScothorn @georapbox You're awesome! Thanks for following me! via https:\/\/t.co\/avWpg5KhXc","source":"\u003ca href=\"https:\/\/unfollowers.com\" rel=\"nofollow\"\u003eUnfollowers\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":166314720,"in_reply_to_user_id_str":"166314720","in_reply_to_screen_name":"billpagemaker","user":{"id":3865035496,"id_str":"3865035496","name":"Varaga Pirumyan","screen_name":"VaragaPirumyan","location":"Yerevan, Armenia","url":"https:\/\/www.behance.net\/VaragaPirumyan","description":"UI\/UX designer, front-end developer, a huge film and music enthusiast.","protected":false,"verified":false,"followers_count":1744,"friends_count":3221,"listed_count":46,"favourites_count":118,"statuses_count":214,"created_at":"Sun Oct 04 20:52:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650776539248918528\/WUSczrGk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650776539248918528\/WUSczrGk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3865035496\/1446585848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/avWpg5KhXc","expanded_url":"http:\/\/uapp.ly","display_url":"uapp.ly","indices":[115,138]}],"user_mentions":[{"screen_name":"billpagemaker","name":"Bill Page","id":166314720,"id_str":"166314720","indices":[0,14]},{"screen_name":"Leolanikai","name":"Leolani Clark","id":571577596,"id_str":"571577596","indices":[15,26]},{"screen_name":"alisonmaehinch","name":"Alison Mae Hinch","id":20006030,"id_str":"20006030","indices":[27,42]},{"screen_name":"DaviesScothorn","name":"Davies + Scothorn","id":3450400336,"id_str":"3450400336","indices":[43,58]},{"screen_name":"georapbox","name":"George Raptis","id":356374080,"id_str":"356374080","indices":[59,69]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073659"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721662465,"id_str":"663728051721662465","text":"RT @twi_tenkomor1: \u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/whpviBiEwh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2348483322,"id_str":"2348483322","name":"\u307e\u307b\u3084\u3093.","screen_name":"yan714714","location":" next\u25b6\ufe0e\u25b6\ufe0e\u5927\u962a\u6587\u5316\u670d\u88c5\u5b66\u9662","url":null,"description":"\u65e5\u65b051\u27a1\ufe0e\u770c\u5c3c68 3-2\u25cb\u5439\u594f\u697d\u90e88.23\u5f15\u9000\u2026\u2026like\uff0aBUMP\/RAD\/\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\/\u30b2\u30fc\u30e0\u5b9f\u6cc1\/\u30a2\u30cb\u30e1\/\u6620\u753b\u9451\u8cde\/\u6f2b\u753b\/\u30b8\u30d6\u30ea\/\u30c7\u30a3\u30ba\u30cb\u30fc\u2026\u2026\u2026 \u57fa\u672c\u8ab0\u304b\u308f\u304b\u3089\u306a\u3044\u4eba\u306f\u30d6\u30ed\u30c3\u30af\u3057\u3066\u307e\u3059(*_*)\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u57a2\u25b6\ufe0e@nm_714","protected":false,"verified":false,"followers_count":386,"friends_count":460,"listed_count":1,"favourites_count":28316,"statuses_count":38468,"created_at":"Mon Feb 17 13:32:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309692718813184\/_ncgQGLM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309692718813184\/_ncgQGLM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2348483322\/1444403725","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:15:17 +0000 2015","id":663691323803697153,"id_str":"663691323803697153","text":"\u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/whpviBiEwh","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3715645399,"id_str":"3715645399","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831\uff1c\u52d5\u753b\u7248\uff1e","screen_name":"twi_tenkomor1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8783,"friends_count":1,"listed_count":36,"favourites_count":0,"statuses_count":2,"created_at":"Mon Sep 28 14:32:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663661689338892289\/yrpfZfOG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663661689338892289\/yrpfZfOG_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6921,"favorite_count":8850,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/whpviBiEwh","display_url":"pic.twitter.com\/whpviBiEwh","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228"}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/whpviBiEwh","display_url":"pic.twitter.com\/whpviBiEwh","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228","video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twi_tenkomor1","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831\uff1c\u52d5\u753b\u7248\uff1e","id":3715645399,"id_str":"3715645399","indices":[3,17]}],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/whpviBiEwh","display_url":"pic.twitter.com\/whpviBiEwh","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228"}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/whpviBiEwh","display_url":"pic.twitter.com\/whpviBiEwh","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228","video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742642176,"id_str":"663728051742642176","text":"Monday Buddy Monday: Medical marijuana goes on sale today in Illinois. Here's a map of dispensaries; the closest to\u2026 https:\/\/t.co\/EcHetpXx1R","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13370462,"id_str":"13370462","name":"Gapers Block","screen_name":"gapersblock","location":"Chicago","url":"http:\/\/www.gapersblock.com","description":"Slow down and check out Chicago! News, commentary & a curated event calendar.","protected":false,"verified":false,"followers_count":26885,"friends_count":8659,"listed_count":1430,"favourites_count":255,"statuses_count":37670,"created_at":"Tue Feb 12 00:46:56 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/142228170\/gb_twitter_bg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/142228170\/gb_twitter_bg.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"51BEF5","profile_sidebar_fill_color":"CDCDCD","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/290657516\/gb_twitter2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/290657516\/gb_twitter2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13370462\/1364316854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EcHetpXx1R","expanded_url":"http:\/\/dlvr.it\/Chflvj","display_url":"dlvr.it\/Chflvj","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073663"} +{"delete":{"status":{"id":644641141569245184,"id_str":"644641141569245184","user_id":2286087246,"user_id_str":"2286087246"},"timestamp_ms":"1447080073786"}} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746770944,"id_str":"663728051746770944","text":"https:\/\/t.co\/cn4rfSqPVL","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2821059722,"id_str":"2821059722","name":"Ran Lin \u6797\u5955\u96a3","screen_name":"RanLin8","location":"Kaohsiung, Taiwan","url":"https:\/\/www.facebook.com\/RanLinTaiwan","description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":107,"listed_count":0,"favourites_count":0,"statuses_count":431,"created_at":"Sat Sep 20 04:48:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513629806278090752\/40uvtVIN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513629806278090752\/40uvtVIN.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513189368941404160\/hUdhf38g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513189368941404160\/hUdhf38g_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2821059722\/1411188880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cn4rfSqPVL","expanded_url":"http:\/\/fb.me\/7xDs2INZ6","display_url":"fb.me\/7xDs2INZ6","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051742576640,"id_str":"663728051742576640","text":"@45pota 8\u6708\u672b\u306e\u30c1\u30fc\u30e0B\u5343\u79cb\u697d\u304b\u3089\u898b\u3066\u306a\u3044\u3002( \u03c9-\u3001)\n11\u6708\u672b\u306b\u898b\u308c\u308b\u304b\u308f\u304b\u3093\u306a\u3044\u304b\u3089\u306a\u304a\u898b\u305f\u304f\u306a\u308b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727535755169792,"in_reply_to_status_id_str":"663727535755169792","in_reply_to_user_id":3067300375,"in_reply_to_user_id_str":"3067300375","in_reply_to_screen_name":"45pota","user":{"id":113859101,"id_str":"113859101","name":"\uff22\uff21\uff2b\uff2f","screen_name":"BAKO65","location":"\u798f\u5ca1\u770c\u5317\u4e5d\u5dde\u5e02","url":null,"description":"AKB48\u306e\u307e\u3086\u3086\u3053\u3068\u6e21\u8fba\u9ebb\u53cb\u3061\u3083\u3093\u3092\u5358\u63a8\u3057\u795e\u63a8\u3057\u3057\u3066\u3044\u307e\u3059\u3002\u307e\u3086\u3086\u304c\u30e0\u30c1\u30e3\u30af\u30c1\u30e3\u597d\u304d\u3067\u3059\uff01\n\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":520,"friends_count":377,"listed_count":11,"favourites_count":6208,"statuses_count":22130,"created_at":"Sat Feb 13 08:06:54 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/74871381\/_____.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/74871381\/_____.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648131433052008448\/GKfKaqPM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648131433052008448\/GKfKaqPM_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"45pota","name":"\u307d\u305f","id":3067300375,"id_str":"3067300375","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073663"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751137280,"id_str":"663728051751137280","text":"@coffeewithlara errrr yeaaaaaaahh....","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723116628221952,"in_reply_to_status_id_str":"663723116628221952","in_reply_to_user_id":418965687,"in_reply_to_user_id_str":"418965687","in_reply_to_screen_name":"coffeewithlara","user":{"id":620071093,"id_str":"620071093","name":"Megan King","screen_name":"MKmeganking","location":"Derbyshire, England","url":null,"description":null,"protected":false,"verified":false,"followers_count":488,"friends_count":444,"listed_count":0,"favourites_count":2080,"statuses_count":8511,"created_at":"Wed Jun 27 14:58:27 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/833513051\/fb8e6a74b0d2cafe523428b6a05368d0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/833513051\/fb8e6a74b0d2cafe523428b6a05368d0.jpeg","profile_background_tile":true,"profile_link_color":"A10D2F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648781194319011840\/gUL7MGAL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648781194319011840\/gUL7MGAL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620071093\/1440166807","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"621eccadb1c0dc73","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/621eccadb1c0dc73.json","place_type":"city","name":"Woking","full_name":"Woking, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.632939,51.283513],[-0.632939,51.349531],[-0.464732,51.349531],[-0.464732,51.283513]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"coffeewithlara","name":"Lara Lisser","id":418965687,"id_str":"418965687","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755360256,"id_str":"663728051755360256","text":"RT @joshua_pieters: Video out at 7pm uk time \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3106789355,"id_str":"3106789355","name":"N A S T Y A","screen_name":"_Nastya17","location":null,"url":"https:\/\/instagram.com\/nastasia.17\/","description":"https:\/\/plus.google.com\/u\/0\/102966751196383077688\/posts","protected":false,"verified":false,"followers_count":242,"friends_count":51,"listed_count":4,"favourites_count":18015,"statuses_count":14431,"created_at":"Mon Mar 23 05:14:18 +0000 2015","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609752299817304064\/dvWjyN2g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609752299817304064\/dvWjyN2g.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660110352772931585\/-BzPtKLU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660110352772931585\/-BzPtKLU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106789355\/1446217550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:05 +0000 2015","id":663695299936919552,"id_str":"663695299936919552","text":"Video out at 7pm uk time \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345450289,"id_str":"345450289","name":"Joshua Pieters","screen_name":"joshua_pieters","location":"London, England","url":null,"description":null,"protected":false,"verified":false,"followers_count":17215,"friends_count":370,"listed_count":20,"favourites_count":384,"statuses_count":692,"created_at":"Sat Jul 30 16:30:49 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655800868105814016\/pHTYEdr7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655800868105814016\/pHTYEdr7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/345450289\/1445190072","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"8ef32ff56ef11c22","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8ef32ff56ef11c22.json","place_type":"admin","name":"England","full_name":"England, United Kingdom","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-6.365194,49.882531],[-6.365194,55.811649],[1.768926,55.811649],[1.768926,49.882531]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":199,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joshua_pieters","name":"Joshua Pieters","id":345450289,"id_str":"345450289","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746795520,"id_str":"663728051746795520","text":"RT @mamelong_ss: \u9375\u57a2\u3055\u3093\u304c\u300c\u66f8\u304d\u624b\u306b\u914d\u616e\u3057\u308d\u3063\u3066\u8a00\u3046\u306a\u3089\u8aad\u307f\u624b\u3082\u66f8\u304d\u624b\u306b\u914d\u616e\u3057\u3066\u3069\u3093\u306a\u4f5c\u54c1\u3082\u7d20\u6575\u3067\u3057\u305f\u3063\u3066\u8a00\u3048\uff01\uff01\u300d\u3063\u3066\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3066\u8208\u596e\u3057\u307e\u3057\u305f","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61479296,"id_str":"61479296","name":"\u30b5\u30c3\u30ab\u30ed\u30de\u30a4\u30bb\u30b9\u30ca\u30b9\u5165\u308a\u30d1\u30a4","screen_name":"yai_08","location":"\u304a\u5e03\u56e3","url":"http:\/\/twpf.jp\/yai_08","description":"HOT:\u3093\u3070\u304b\u308a\u3068\u3061\u3087\u3063\u3068\u3078\u3057\u306b\u307b \u6210\u4eba\u8150 \u30d5\u30a9\u30ed\u30fcR18\u63a8\u5968 URL\u8aad\u3093\u3067\u307b\u3057\u3044 \u30d7\u30ea\u30d1\u30e9\u57a2\/@yai_pri \u898f\u5236\/@yai_kisei","protected":false,"verified":false,"followers_count":540,"friends_count":571,"listed_count":59,"favourites_count":1572,"statuses_count":172639,"created_at":"Thu Jul 30 12:53:47 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACCC99","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583090042601517056\/Za6jAL0T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583090042601517056\/Za6jAL0T.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFF200","profile_text_color":"FF385F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660480076383850496\/nDRtvFFq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660480076383850496\/nDRtvFFq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61479296\/1444638310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jul 30 10:06:35 +0000 2015","id":626695375965958144,"id_str":"626695375965958144","text":"\u9375\u57a2\u3055\u3093\u304c\u300c\u66f8\u304d\u624b\u306b\u914d\u616e\u3057\u308d\u3063\u3066\u8a00\u3046\u306a\u3089\u8aad\u307f\u624b\u3082\u66f8\u304d\u624b\u306b\u914d\u616e\u3057\u3066\u3069\u3093\u306a\u4f5c\u54c1\u3082\u7d20\u6575\u3067\u3057\u305f\u3063\u3066\u8a00\u3048\uff01\uff01\u300d\u3063\u3066\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3066\u8208\u596e\u3057\u307e\u3057\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":988372669,"id_str":"988372669","name":"\u9375\u7121\u30de\u30ac\u30a4\u30c8","screen_name":"mamelong_ss","location":"\u7dcf\u54e1\u633f\u5165\u305b\u3088","url":"http:\/\/touch.pixiv.net\/member.php?id=942750","description":"\u864e\u5fb9\u3055\u3093\u4ee5\u5916\u306e\u4e3b\u4eba\u516c\u306f\u7dcf\u653b\u6d3e\u306e\u6210\u4eba\u6e08\u3089\u304f\u304c\u304d\u30de\u30f3\u3002\u30b1\u30e2\u30ca\u30fc\u3067\u3059\u3002\u7121\u65ad\u8ee2\u8f09\u3068\u5f15\u7528RT\u304c\u5730\u96f7\u3002\u30ea\u30e0\u30d6\u30ed\u3057\u307e\u3059\u3002\/\u8840\u754c\u30ec\u30aa\u30b6\u30d7\u3001\u30af\u30e9\u30b9\u30c6\u3001\u30cf\u30de\u30d6\u30ed\u3001\u90e8\u4e0b\u30c0\u30cb\u203b\u8840\u754c\u306b\u9650\u308a\u5b8c\u5168\u56fa\u5b9a\/TB\u725b\u7345\u5b50\u4e2d\u5fc3\u5225\u57a2\u3042\u308a\/\u9913\u72fc\u30d3\u30ea\u30fc\u53d7\/KOF\/TRIGUN\u53f0\u7267\/FF6 \u30d4\u30af\u30d6\u30e9 https:\/\/pictbland.net\/mamelong","protected":false,"verified":false,"followers_count":1249,"friends_count":344,"listed_count":37,"favourites_count":18623,"statuses_count":104875,"created_at":"Tue Dec 04 08:55:28 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476911775921631233\/z63Dc5wR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476911775921631233\/z63Dc5wR.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662683404823957505\/khIzWlFl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662683404823957505\/khIzWlFl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/988372669\/1443588211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4508,"favorite_count":1729,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mamelong_ss","name":"\u9375\u7121\u30de\u30ac\u30a4\u30c8","id":988372669,"id_str":"988372669","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717435394,"id_str":"663728051717435394","text":"I Just Voted for @onedirection for #ArtistOfTheYear Go Here https:\/\/t.co\/lZm4UqjsKC and Vote for your favorite! 10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149053192,"id_str":"149053192","name":"#","screen_name":"hotIegs","location":"through the wire","url":"http:\/\/through.the.wire.org","description":"through the wire","protected":false,"verified":false,"followers_count":2618,"friends_count":299,"listed_count":11,"favourites_count":79964,"statuses_count":74973,"created_at":"Fri May 28 08:39:32 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163508256\/_7jmW6mF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163508256\/_7jmW6mF.png","profile_background_tile":true,"profile_link_color":"247CAB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FCE86A","profile_text_color":"2F348A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663711979392008192\/X0tvwxoR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663711979392008192\/X0tvwxoR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149053192\/1446469457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ArtistOfTheYear","indices":[35,51]}],"urls":[{"url":"https:\/\/t.co\/lZm4UqjsKC","expanded_url":"http:\/\/amavotenow.tv","display_url":"amavotenow.tv","indices":[60,83]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[17,30]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755180033,"id_str":"663728051755180033","text":"RT @InsanLeena: @Gurmeetramrahim \nwowwww......outstanding craze , \n \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\n#MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166332666,"id_str":"3166332666","name":"Dr. Supriya Nain","screen_name":"SupriyaNain","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":494,"friends_count":72,"listed_count":4,"favourites_count":3672,"statuses_count":20789,"created_at":"Tue Apr 21 07:31:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633931436186189824\/UCr4-myk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633931436186189824\/UCr4-myk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166332666\/1439898909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:24:41 +0000 2015","id":663708792337530880,"id_str":"663708792337530880","text":"@Gurmeetramrahim \nwowwww......outstanding craze , \n \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\n#MSG2onTheTopInRajasthan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663708578235072516,"in_reply_to_status_id_str":"663708578235072516","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2834509828,"id_str":"2834509828","name":"\u00a3een@ - Dhingr@","screen_name":"InsanLeena","location":"Panipat, Haryana","url":null,"description":null,"protected":false,"verified":false,"followers_count":6347,"friends_count":345,"listed_count":9,"favourites_count":22126,"statuses_count":72021,"created_at":"Thu Oct 16 18:39:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634003353182187520\/rfSEA7U3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634003353182187520\/rfSEA7U3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2834509828\/1445440629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":134,"favorite_count":24,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[58,82]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[74,98]}],"urls":[],"user_mentions":[{"screen_name":"InsanLeena","name":"\u00a3een@ - Dhingr@","id":2834509828,"id_str":"2834509828","indices":[3,14]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746828288,"id_str":"663728051746828288","text":"@aosan_0525 \u53e3\u306e\u60aa\u3055\u304c\u3067\u3066\u304d\u3066\u308b\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727819927633920,"in_reply_to_status_id_str":"663727819927633920","in_reply_to_user_id":2564784414,"in_reply_to_user_id_str":"2564784414","in_reply_to_screen_name":"aosan_0525","user":{"id":3322423777,"id_str":"3322423777","name":"\u306f\u308a\u307e","screen_name":"sak_oyc","location":"unrequited love","url":null,"description":"*.\u4f50\u9999\u667a\u4e45\u2742\u30e9\u30d7\u30f3\u30c4\u30a7\u30eb\u2743\u77e2\u6ca2\u3042\u3044\u2745\u690e\u540d\u8efd\u7a42\u2740\u6df1\u753a\u306a\u304b\u273f\u5c11\u5973\u6f2b\u753b\u2746\u30ef\u30f3\u30d4\u30fc\u30b9\u2742\u7b11\u9854.*\u221e\u25b6\u25b6Yuka Rino TinTin(tantan) Donguls\u25c0\u25c0\u221e","protected":false,"verified":false,"followers_count":147,"friends_count":161,"listed_count":1,"favourites_count":1816,"statuses_count":972,"created_at":"Fri Aug 21 13:11:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653574482217451520\/dBaOr69j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653574482217451520\/dBaOr69j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322423777\/1444659273","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aosan_0525","name":"\u3042\u304a\u3044","id":2564784414,"id_str":"2564784414","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730014208,"id_str":"663728051730014208","text":"RT @PrettyMuchWeed: Couples that smoke together, stay together \ud83d\ude2b\ud83d\ude43\u2764\ufe0f https:\/\/t.co\/vCMg58kSpS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153977906,"id_str":"153977906","name":"baby h","screen_name":"HannaMHall","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3105,"friends_count":2816,"listed_count":9,"favourites_count":16834,"statuses_count":51346,"created_at":"Thu Jun 10 01:54:00 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E02AC5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000053985380\/ae3786c663445a8c88d81bb669ab5970.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000053985380\/ae3786c663445a8c88d81bb669ab5970.jpeg","profile_background_tile":true,"profile_link_color":"2CC2E8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"00FF8C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659843240292585472\/Y6fhi_j__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659843240292585472\/Y6fhi_j__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153977906\/1446744512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:51:18 +0000 2015","id":663458798472962048,"id_str":"663458798472962048","text":"Couples that smoke together, stay together \ud83d\ude2b\ud83d\ude43\u2764\ufe0f https:\/\/t.co\/vCMg58kSpS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4012658057,"id_str":"4012658057","name":"Smoke Weed \u2601\ufe0f","screen_name":"PrettyMuchWeed","location":"Turn on notifications","url":null,"description":"Weed | Cannapeople | 4:20 | Marijuana | DM submissions of weed\/smoking weed.","protected":false,"verified":false,"followers_count":242,"friends_count":4,"listed_count":0,"favourites_count":16,"statuses_count":6,"created_at":"Wed Oct 21 22:43:02 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661944507898925060\/7GE_gDR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661944507898925060\/7GE_gDR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4012658057\/1446654698","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":187,"favorite_count":121,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663458782635294720,"id_str":"663458782635294720","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","url":"https:\/\/t.co\/vCMg58kSpS","display_url":"pic.twitter.com\/vCMg58kSpS","expanded_url":"http:\/\/twitter.com\/PrettyMuchWeed\/status\/663458798472962048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":749,"resize":"fit"},"small":{"w":340,"h":424,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663458782635294720,"id_str":"663458782635294720","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","url":"https:\/\/t.co\/vCMg58kSpS","display_url":"pic.twitter.com\/vCMg58kSpS","expanded_url":"http:\/\/twitter.com\/PrettyMuchWeed\/status\/663458798472962048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":749,"resize":"fit"},"small":{"w":340,"h":424,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PrettyMuchWeed","name":"Smoke Weed \u2601\ufe0f","id":4012658057,"id_str":"4012658057","indices":[3,18]}],"symbols":[],"media":[{"id":663458782635294720,"id_str":"663458782635294720","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","url":"https:\/\/t.co\/vCMg58kSpS","display_url":"pic.twitter.com\/vCMg58kSpS","expanded_url":"http:\/\/twitter.com\/PrettyMuchWeed\/status\/663458798472962048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":749,"resize":"fit"},"small":{"w":340,"h":424,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}},"source_status_id":663458798472962048,"source_status_id_str":"663458798472962048","source_user_id":4012658057,"source_user_id_str":"4012658057"}]},"extended_entities":{"media":[{"id":663458782635294720,"id_str":"663458782635294720","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUUP2YXAAAKefw.jpg","url":"https:\/\/t.co\/vCMg58kSpS","display_url":"pic.twitter.com\/vCMg58kSpS","expanded_url":"http:\/\/twitter.com\/PrettyMuchWeed\/status\/663458798472962048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":749,"resize":"fit"},"small":{"w":340,"h":424,"resize":"fit"},"large":{"w":820,"h":1024,"resize":"fit"}},"source_status_id":663458798472962048,"source_status_id_str":"663458798472962048","source_user_id":4012658057,"source_user_id_str":"4012658057"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721670658,"id_str":"663728051721670658","text":"El Gobierno dice que el \"Chapo\" Guzm\u00e1n no est\u00e1 en la Argentina: ubican a quien denunci\u00f3 que hab\u00eda entrado al pa\u00eds https:\/\/t.co\/bXoa0JzLyY","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207094172,"id_str":"207094172","name":"Celeste Gonzalez","screen_name":"hotceleste1","location":"Argentina","url":null,"description":"Me encanta Twitter porque puedo expresar mis ideas y compartir las de otros","protected":false,"verified":false,"followers_count":320,"friends_count":510,"listed_count":19,"favourites_count":38,"statuses_count":136795,"created_at":"Sun Oct 24 14:11:34 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1151514094\/cele_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1151514094\/cele_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207094172\/1411315862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bXoa0JzLyY","expanded_url":"http:\/\/dlvr.it\/ChfqHQ","display_url":"dlvr.it\/ChfqHQ","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051738378240,"id_str":"663728051738378240","text":"@BTOBlmh_1129mk \u314b\u314b\u314b\u314b\u314b\u3132\u314b\u314b\u314b\u3142\u314a\u3147........\u314b\u314b\u314b\u314b\u314b\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725654416846849,"in_reply_to_status_id_str":"663725654416846849","in_reply_to_user_id":2999299424,"in_reply_to_user_id_str":"2999299424","in_reply_to_screen_name":"BTOBlmh_1129mk","user":{"id":901730094,"id_str":"901730094","name":"\ub3d9\ud654","screen_name":"lkk1215","location":"\uc628\ud22c\ube44\ud2b8","url":null,"description":null,"protected":false,"verified":false,"followers_count":78,"friends_count":113,"listed_count":0,"favourites_count":3,"statuses_count":2332,"created_at":"Wed Oct 24 12:32:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657222981492445184\/3paTKUnv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657222981492445184\/3paTKUnv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/901730094\/1444493426","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BTOBlmh_1129mk","name":"\u2661\ubbf8\uacbd\u2661","id":2999299424,"id_str":"2999299424","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080073662"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730055169,"id_str":"663728051730055169","text":"@aifaiffah95 da tua kot haha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727931470905344,"in_reply_to_status_id_str":"663727931470905344","in_reply_to_user_id":2278705194,"in_reply_to_user_id_str":"2278705194","in_reply_to_screen_name":"aifaiffah95","user":{"id":217282867,"id_str":"217282867","name":"N A D I A","screen_name":"Nadiaazaidee","location":"Lallana","url":null,"description":"effort goes both ways","protected":false,"verified":false,"followers_count":575,"friends_count":361,"listed_count":2,"favourites_count":656,"statuses_count":48694,"created_at":"Fri Nov 19 02:32:30 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533247606386749440\/v-nmGh7-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533247606386749440\/v-nmGh7-.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663421554919796736\/1cviHoU8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663421554919796736\/1cviHoU8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217282867\/1446221361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aifaiffah95","name":"An","id":2278705194,"id_str":"2278705194","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751010304,"id_str":"663728051751010304","text":"@lcdoubleux ga tidur ka","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726923789393920,"in_reply_to_status_id_str":"663726923789393920","in_reply_to_user_id":4158440474,"in_reply_to_user_id_str":"4158440474","in_reply_to_screen_name":"lcdoubleux","user":{"id":895591831,"id_str":"895591831","name":"\u3164","screen_name":"nayohn","location":"allTWICERP","url":null,"description":"[\ubd07] # \ud2b8\uc640\uc774\uc2a4's \u6797\u5a1c\u598d pard\u20141995 best product\n\u007b wgl w\/ isehunoh \u007d","protected":false,"verified":false,"followers_count":1019,"friends_count":729,"listed_count":2,"favourites_count":102,"statuses_count":7272,"created_at":"Sun Oct 21 15:34:43 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699888375382017\/oJLLBugY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699888375382017\/oJLLBugY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/895591831\/1447008039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lcdoubleux","name":"Lee Cheolwoo","id":4158440474,"id_str":"4158440474","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746947072,"id_str":"663728051746947072","text":"troppo bellina sara \u00e8 l'unica che mi piace per adesso #uominiedonne","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718212522,"id_str":"718212522","name":"\ufe0f\ufe0f\ufe0f","screen_name":"redcheries","location":"shawty \/ proibity kill \/ cv","url":"http:\/\/redcheries.tumblr.com\/","description":"a scrivere sui muri che sei una testa di cazzo","protected":false,"verified":false,"followers_count":6163,"friends_count":285,"listed_count":49,"favourites_count":47575,"statuses_count":39354,"created_at":"Thu Jul 26 14:28:01 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853843393\/0166b31e305bfbfa593ea43909c6320c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853843393\/0166b31e305bfbfa593ea43909c6320c.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662686928001744897\/ip3Pwh9h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662686928001744897\/ip3Pwh9h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718212522\/1445523248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uominiedonne","indices":[54,67]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751157760,"id_str":"663728051751157760","text":"@LeahVdc And stop claiming the other person simply hates just because what he said doesn't sound appealing to you. It's a fact","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727544135454720,"in_reply_to_status_id_str":"663727544135454720","in_reply_to_user_id":92377901,"in_reply_to_user_id_str":"92377901","in_reply_to_screen_name":"LeahVdc","user":{"id":1385722850,"id_str":"1385722850","name":"Sergi","screen_name":"JordiAlbeit","location":null,"url":null,"description":"Mes que un club. Visca Barca!","protected":false,"verified":false,"followers_count":7,"friends_count":21,"listed_count":0,"favourites_count":16,"statuses_count":561,"created_at":"Sat Apr 27 23:57:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644989862618099712\/7SMDfZ1O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644989862618099712\/7SMDfZ1O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1385722850\/1442612543","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeahVdc","name":"Leah","id":92377901,"id_str":"92377901","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717595136,"id_str":"663728051717595136","text":"\u0641\u064a\u0644\u0645 \u0633\u0643\u0633 \u0645\u0635\u0631\u064a \u0645\u062d\u0627\u0631\u0645 \u0634\u0631\u0645\u0648\u0637\u0647 \n \nhttps:\/\/t.co\/ifrE6YpU6l\nhttps:\/\/t.co\/wppITGKH12","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220080904,"id_str":"3220080904","name":"Migdalia Ickovic","screen_name":"jetitalegexo","location":"Martell, NE","url":null,"description":"P3I member, training coordinator, procurement trainer, budget analyst","protected":false,"verified":false,"followers_count":233,"friends_count":1913,"listed_count":0,"favourites_count":0,"statuses_count":82,"created_at":"Wed Apr 29 02:44:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618136643162107904\/XRl5vOA-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618136643162107904\/XRl5vOA-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220080904\/1436070806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ifrE6YpU6l","expanded_url":"http:\/\/goo.gl\/2wH6N1","display_url":"goo.gl\/2wH6N1","indices":[30,53]},{"url":"https:\/\/t.co\/wppITGKH12","expanded_url":"http:\/\/sco.lt\/5HRZmj","display_url":"sco.lt\/5HRZmj","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721637888,"id_str":"663728051721637888","text":"RT @Nashional_SL: I had to take matters into my own hands http:\/\/t.co\/MFK1lVPm7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":831953401,"id_str":"831953401","name":"Grey, Pumpkin Wobato","screen_name":"QuixoticWolve","location":"Greater Mexico City, Mexico","url":"http:\/\/furaffinity.net\/user\/greywolf26","description":"Software engineer; furry, curious, passionate, grumpy, open-minded, sometimes silly and loving wolf. I void warranties :3\r\n@DaxxFluff's wuff","protected":false,"verified":false,"followers_count":535,"friends_count":248,"listed_count":19,"favourites_count":5467,"statuses_count":31086,"created_at":"Tue Sep 18 21:51:01 +0000 2012","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6C0000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ACBF4A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660017647287820288\/wL0QwKv8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660017647287820288\/wL0QwKv8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/831953401\/1408945920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jul 06 04:01:05 +0000 2015","id":617906086616567808,"id_str":"617906086616567808","text":"I had to take matters into my own hands http:\/\/t.co\/MFK1lVPm7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":214716830,"id_str":"214716830","name":"Charles Xavier","screen_name":"Nashional_SL","location":null,"url":null,"description":"Ladies, when your bae is fucking up just know I don't come with headaches, just head","protected":false,"verified":false,"followers_count":3871,"friends_count":710,"listed_count":22,"favourites_count":407,"statuses_count":113656,"created_at":"Fri Nov 12 01:59:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653413816185815041\/SuXp_U4i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653413816185815041\/SuXp_U4i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/214716830\/1443842243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13709,"favorite_count":15525,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":617885582631436288,"id_str":"617885582631436288","indices":[40,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","url":"http:\/\/t.co\/MFK1lVPm7c","display_url":"pic.twitter.com\/MFK1lVPm7c","expanded_url":"http:\/\/twitter.com\/PROBLEM354\/status\/617890914694860800\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":617890914694860800,"source_status_id_str":"617890914694860800","source_user_id":28891464,"source_user_id_str":"28891464"}]},"extended_entities":{"media":[{"id":617885582631436288,"id_str":"617885582631436288","indices":[40,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","url":"http:\/\/t.co\/MFK1lVPm7c","display_url":"pic.twitter.com\/MFK1lVPm7c","expanded_url":"http:\/\/twitter.com\/PROBLEM354\/status\/617890914694860800\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":617890914694860800,"source_status_id_str":"617890914694860800","source_user_id":28891464,"source_user_id_str":"28891464","video_info":{"aspect_ratio":[1,1],"duration_millis":13764,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/pl\/TeSfvvzcvPrXsH_4.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/480x480\/nbqlmfSzWHtx3m-u.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/480x480\/nbqlmfSzWHtx3m-u.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/240x240\/5DaIjhakSeFvC8RU.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/pl\/TeSfvvzcvPrXsH_4.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nashional_SL","name":"Charles Xavier","id":214716830,"id_str":"214716830","indices":[3,16]}],"symbols":[],"media":[{"id":617885582631436288,"id_str":"617885582631436288","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","url":"http:\/\/t.co\/MFK1lVPm7c","display_url":"pic.twitter.com\/MFK1lVPm7c","expanded_url":"http:\/\/twitter.com\/PROBLEM354\/status\/617890914694860800\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":617890914694860800,"source_status_id_str":"617890914694860800","source_user_id":28891464,"source_user_id_str":"28891464"}]},"extended_entities":{"media":[{"id":617885582631436288,"id_str":"617885582631436288","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/617885582631436288\/pu\/img\/lOu73SFinRgsvAZL.jpg","url":"http:\/\/t.co\/MFK1lVPm7c","display_url":"pic.twitter.com\/MFK1lVPm7c","expanded_url":"http:\/\/twitter.com\/PROBLEM354\/status\/617890914694860800\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":617890914694860800,"source_status_id_str":"617890914694860800","source_user_id":28891464,"source_user_id_str":"28891464","video_info":{"aspect_ratio":[1,1],"duration_millis":13764,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/pl\/TeSfvvzcvPrXsH_4.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/480x480\/nbqlmfSzWHtx3m-u.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/480x480\/nbqlmfSzWHtx3m-u.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/vid\/240x240\/5DaIjhakSeFvC8RU.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/617885582631436288\/pu\/pl\/TeSfvvzcvPrXsH_4.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746906112,"id_str":"663728051746906112","text":"yo soy intrusos fk","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2438749338,"id_str":"2438749338","name":"azul","screen_name":"miaxsmithx","location":"en la bombonera con thomas","url":"http:\/\/mauroelamordemivida.com","description":"\u2728 Azul lo m\u00e1s lindo de mi vida \u2728 Gala, Luana, Lusia, Luna y Benja \u2728 Mauro 010115 \u2728 Claire mi \u00bd \u2728 Franco 090515 \u2728 La pija de Thomas \u2728","protected":false,"verified":false,"followers_count":1945,"friends_count":731,"listed_count":4,"favourites_count":3805,"statuses_count":63934,"created_at":"Fri Apr 11 16:20:20 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530518001447997440\/yamCgTWE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530518001447997440\/yamCgTWE.png","profile_background_tile":true,"profile_link_color":"1C1CFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663211117691424768\/y5Q2LZcm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663211117691424768\/y5Q2LZcm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2438749338\/1446261480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051750961152,"id_str":"663728051750961152","text":"RT @FawazAzuar: Untunglah phone vibrate boleh dengaq. Org azan subuh hang boleh tak dengaq. https:\/\/t.co\/F2su7138f9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188727200,"id_str":"3188727200","name":"hani","screen_name":"hnrhna","location":"Selangor, Malaysia","url":null,"description":"ig; hnrhna","protected":false,"verified":false,"followers_count":85,"friends_count":110,"listed_count":0,"favourites_count":231,"statuses_count":3724,"created_at":"Fri May 08 12:39:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663315559715463168\/2bfA75Ra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663315559715463168\/2bfA75Ra_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188727200\/1446918156","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:36:15 +0000 2015","id":663696600896700416,"id_str":"663696600896700416","text":"Untunglah phone vibrate boleh dengaq. Org azan subuh hang boleh tak dengaq. https:\/\/t.co\/F2su7138f9","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146840559,"id_str":"146840559","name":"FWZ","screen_name":"FawazAzuar","location":"Kuala Lumpur","url":"http:\/\/Instagram.com\/fawazazuar","description":"Melayu Jawa yang petah berbahasa Mandarin. Hati telah dirobek @siti_najihah | Gila Trainers | Proud KLFA Supporter | #KLDRoogs","protected":false,"verified":false,"followers_count":4218,"friends_count":370,"listed_count":14,"favourites_count":724,"statuses_count":95381,"created_at":"Sat May 22 13:44:12 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653419270982909952\/KXHbGifz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653419270982909952\/KXHbGifz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146840559\/1441355710","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":605586347236036608,"quoted_status_id_str":"605586347236036608","quoted_status":{"created_at":"Tue Jun 02 04:06:51 +0000 2015","id":605586347236036608,"id_str":"605586347236036608","text":"\" vibrate \"\n\" jawab fon \"\n\n\" sayangggg , dah pukul berapa dah ni . bangun semahyang subuh sayang \"\n\nya allah , jodohkanlah aku dengan dia","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2326539566,"id_str":"2326539566","name":"The Arif Danial","screen_name":"aawakcomel","location":"#malaysia","url":null,"description":"IG - The.Arif.Danial\n\n[ # ] NeverSurrender","protected":false,"verified":false,"followers_count":2020,"friends_count":1866,"listed_count":0,"favourites_count":5377,"statuses_count":31,"created_at":"Tue Feb 04 05:18:48 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/568044427872985088\/rqwLhykF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/568044427872985088\/rqwLhykF.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656437900003807232\/J-LiQLcy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656437900003807232\/J-LiQLcy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2326539566\/1446978922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":70,"favorite_count":20,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F2su7138f9","expanded_url":"https:\/\/twitter.com\/aawakcomel\/status\/605586347236036608","display_url":"twitter.com\/aawakcomel\/sta\u2026","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/F2su7138f9","expanded_url":"https:\/\/twitter.com\/aawakcomel\/status\/605586347236036608","display_url":"twitter.com\/aawakcomel\/sta\u2026","indices":[92,115]}],"user_mentions":[{"screen_name":"FawazAzuar","name":"FWZ","id":146840559,"id_str":"146840559","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080073665"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051717472256,"id_str":"663728051717472256","text":"RT @WORLDSTARC0MEDY: https:\/\/t.co\/izGkN3WKRo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171178414,"id_str":"171178414","name":"Can I Live","screen_name":"__CanILive__","location":"In My Own Little World","url":null,"description":"It's MY world you're just living in it! I'm misunderstood and I aint gotta be explained! \u2764\ufe0f","protected":false,"verified":false,"followers_count":475,"friends_count":513,"listed_count":2,"favourites_count":272,"statuses_count":25640,"created_at":"Mon Jul 26 19:06:43 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033504579\/37195b3fe0031dfa599d42d545ff60a7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033504579\/37195b3fe0031dfa599d42d545ff60a7.jpeg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644559912404520960\/IQIIDmAD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644559912404520960\/IQIIDmAD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171178414\/1406962621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:41:02 +0000 2015","id":663456214508896256,"id_str":"663456214508896256","text":"https:\/\/t.co\/izGkN3WKRo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1321629762,"id_str":"1321629762","name":"WORLD STAR FANS","screen_name":"WORLDSTARC0MEDY","location":"warning: 18+ content. ","url":null,"description":"*sharing all of the funniest content on twitter* *we do not own any of the content posted* *not affiliated with Worldstar or @worldstar* *fan\/parody account*","protected":false,"verified":false,"followers_count":472282,"friends_count":241431,"listed_count":209,"favourites_count":168,"statuses_count":16547,"created_at":"Tue Apr 02 03:15:30 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576175440282275840\/BRh7IuDR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576175440282275840\/BRh7IuDR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1321629762\/1426205879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":613,"favorite_count":830,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663456192262483968,"id_str":"663456192262483968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":622,"resize":"fit"},"medium":{"w":600,"h":622,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663456192262483968,"id_str":"663456192262483968","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":622,"resize":"fit"},"medium":{"w":600,"h":622,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663456199250153472,"id_str":"663456199250153472","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5ehWEAA9BCH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5ehWEAA9BCH.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":123,"resize":"fit"},"medium":{"w":598,"h":218,"resize":"fit"},"large":{"w":598,"h":218,"resize":"fit"}}},{"id":663456211359133696,"id_str":"663456211359133696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR6LoWcAAq1gn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR6LoWcAAq1gn.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WORLDSTARC0MEDY","name":"WORLD STAR FANS","id":1321629762,"id_str":"1321629762","indices":[3,19]}],"symbols":[],"media":[{"id":663456192262483968,"id_str":"663456192262483968","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":622,"resize":"fit"},"medium":{"w":600,"h":622,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663456214508896256,"source_status_id_str":"663456214508896256","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"extended_entities":{"media":[{"id":663456192262483968,"id_str":"663456192262483968","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5EfWsAAzu09.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":622,"resize":"fit"},"medium":{"w":600,"h":622,"resize":"fit"},"small":{"w":340,"h":352,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663456214508896256,"source_status_id_str":"663456214508896256","source_user_id":1321629762,"source_user_id_str":"1321629762"},{"id":663456199250153472,"id_str":"663456199250153472","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR5ehWEAA9BCH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR5ehWEAA9BCH.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":123,"resize":"fit"},"medium":{"w":598,"h":218,"resize":"fit"},"large":{"w":598,"h":218,"resize":"fit"}},"source_status_id":663456214508896256,"source_status_id_str":"663456214508896256","source_user_id":1321629762,"source_user_id_str":"1321629762"},{"id":663456211359133696,"id_str":"663456211359133696","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUR6LoWcAAq1gn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUR6LoWcAAq1gn.jpg","url":"https:\/\/t.co\/izGkN3WKRo","display_url":"pic.twitter.com\/izGkN3WKRo","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663456214508896256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663456214508896256,"source_status_id_str":"663456214508896256","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080073657"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051755331584,"id_str":"663728051755331584","text":"\u0641\u064a\u0644\u0645 \u0633\u0643\u0633 \u0645\u0635\u0631\u064a \u0645\u062d\u0627\u0631\u0645 \u0634\u0631\u0645\u0648\u0637\u0647 \n \nhttps:\/\/t.co\/IjkTtjfjQc\nhttps:\/\/t.co\/Z0oU83FxQp","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220146256,"id_str":"3220146256","name":"Gaspare Bernardos","screen_name":"codigemeleta","location":"San Francisco, CA","url":null,"description":"MLIS students at SJSU. Avid book lover, reader, and reviewer. Everyone should read. Doesn't matter what it is, just read.","protected":false,"verified":false,"followers_count":265,"friends_count":1909,"listed_count":0,"favourites_count":0,"statuses_count":45,"created_at":"Wed Apr 29 03:09:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618139234252120065\/BySUq1yU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618139234252120065\/BySUq1yU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220146256\/1436070912","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IjkTtjfjQc","expanded_url":"http:\/\/goo.gl\/2wH6N1","display_url":"goo.gl\/2wH6N1","indices":[30,53]},{"url":"https:\/\/t.co\/Z0oU83FxQp","expanded_url":"http:\/\/sco.lt\/5HRZmj","display_url":"sco.lt\/5HRZmj","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080073666"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746811904,"id_str":"663728051746811904","text":"I need a full body massage \ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77203415,"id_str":"77203415","name":"Claudette","screen_name":"claudsrivera","location":"maginhawa","url":"http:\/\/claudsrivera.tumblr.com","description":"snap\/ig: claudsrivera | ust","protected":false,"verified":false,"followers_count":522,"friends_count":182,"listed_count":2,"favourites_count":8805,"statuses_count":20020,"created_at":"Fri Sep 25 12:37:04 +0000 2009","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080A08","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735002033\/bd5a5c01bb6e2fc8dacc59e7937919ab.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735002033\/bd5a5c01bb6e2fc8dacc59e7937919ab.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"13C4F0","profile_text_color":"1A4AD9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656094211037528064\/rIikkFhK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656094211037528064\/rIikkFhK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77203415\/1430017836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051729993728,"id_str":"663728051729993728","text":"@eri0919 \n\u3072\u3068\u308a\u66ae\u3089\u3057\u3057\u305f\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727964090032128,"in_reply_to_status_id_str":"663727964090032128","in_reply_to_user_id":67339727,"in_reply_to_user_id_str":"67339727","in_reply_to_screen_name":"eri0919","user":{"id":3714258314,"id_str":"3714258314","name":"\u30b9\u30a4\uffe4\u795e\u5927\u307e\u3044\u3075\u3041\u3059\u884c\u304f\u3088","screen_name":"suinashi","location":"\u732b \u3061 \u3083 \u3093 \u3089 \u3076 \u306a \u5927 \u962a \u3074 \u30fc \u307d \u30fc \u3002","url":null,"description":"\u90a6 \u30ed \u30c3 \u30af \u3068 \u6771 \u4eac \u55b0 \u7a2e \u3068 \u30ab \u30eb \u30d4 \u30b9 \u3059 \u304d \u3002","protected":false,"verified":false,"followers_count":278,"friends_count":170,"listed_count":11,"favourites_count":1519,"statuses_count":8126,"created_at":"Mon Sep 28 11:38:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661534366246436864\/d696j7eV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661534366246436864\/d696j7eV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3714258314\/1446644972","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eri0919","name":"\u98f4\u7389\u306eeri\uff03\u2661\u2445\u25e1\u0308*\u51ac\u7720\u6e96\u5099","id":67339727,"id_str":"67339727","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073660"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746766848,"id_str":"663728051746766848","text":"RT @s_misaki_0826: \u81ea\u62c5 \u306f \u597d\u304d\n\n\u3060\u3051\u3069 \u7d50\u5a5a\u3059\u308b\u306a\u3089\n\n\u300c \u6ff1\u3061\u3083\u3093 \u300d\n\n#\u5171\u611f\u3057\u305f\u3089RT https:\/\/t.co\/bUQev13xXG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912101418,"id_str":"3912101418","name":"\u307b\u304f\u307e\u306a\u3010\u4f4e\u3011","screen_name":"hamanari_1219","location":"NEXT\u2192\u30e2\u30fc\u30eb\u30b911.21","url":null,"description":"00Line \uff5c \u53d7\u9a13\u751f \uff5c LJC \uff5c TOCHIGI \uff5c HAMADA TAKAHIRO \uff5c J-WEST \uff5c TSUKADA RYOUICHI \uff5c A.B.C-Z \uff5c \u6ff5\u7530\u540c\u76df\u3010@0805aa1\u3011 \uff5c \u307e\u306a\u3064\u611b\u65b9 \u3010Daiki826Natumi7 \u3011\uff5cNEXT\u2192MORSE11\/21 Tour 1\/6,7,4\/3","protected":false,"verified":false,"followers_count":126,"friends_count":123,"listed_count":7,"favourites_count":456,"statuses_count":683,"created_at":"Fri Oct 16 09:06:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654958697874001920\/I0L7H1aI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654958697874001920\/I0L7H1aI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3912101418\/1446294650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:14:19 +0000 2015","id":662951206692646912,"id_str":"662951206692646912","text":"\u81ea\u62c5 \u306f \u597d\u304d\n\n\u3060\u3051\u3069 \u7d50\u5a5a\u3059\u308b\u306a\u3089\n\n\u300c \u6ff1\u3061\u3083\u3093 \u300d\n\n#\u5171\u611f\u3057\u305f\u3089RT https:\/\/t.co\/bUQev13xXG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3332199204,"id_str":"3332199204","name":"\u2661 : \u2312 \u91cd\u5ca1 \u307f\u3055\u304d \u306f\u5fa9\u6d3b\u5f53\u9078\u7948\u9858","screen_name":"s_misaki_0826","location":"\u2661 \u718a\u672c\u306e 7WEST \u2661 3600\u4eba\u306e\u30d5\u30a9\u30ed\u30ef\u69d8\u30ab\u30e0\u30d0\uff01","url":null,"description":"\u265a \u91cd\u5ca1 \u5927\u6bc5 \uff78\uff9d \u265a\ufe0e \u2741 \u95a2\u897fJr. (\u00a8) \u2764\u2741 00line \u2741 \u718a\u672c\u5973\u5b50 \u3002\u2741 \u5730\u65b9\u7d44\u53d7\u9a13\u751f \u2741 \u982d\u306e\u4e2d\u306f \u95a2\u897f j 's Only\u2669 \u3075\u308f\u3075\u308f \u3058\u3083\u306a\u3044\u3088(\u8a50\u6b3a)\u30ad\u30c1\u30ac\u30a4\u3060\u3088 \u3002\u2190 \u6c17\u8efd\u306b\u3075\u3049\u308d\u307f\uff5e\uff01 \u30ea\u30e0 \u3089\u3093\u3067\uff5e\u21b7\u21b7 \u2601\ufe0e \u611b\u65b9\u261e \u795e\u5c71\u307f\u3086\u3046 \u2601\ufe0e\u2661\u604b\u3057\u3066\uff11\u5e74\uff11\uff10\u30f5\u6708 \u2661","protected":false,"verified":false,"followers_count":794,"friends_count":676,"listed_count":2,"favourites_count":428,"statuses_count":1818,"created_at":"Tue Aug 25 01:35:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661432580395237376\/9WCI9uLb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661432580395237376\/9WCI9uLb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3332199204\/1446984890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":359,"favorite_count":137,"entities":{"hashtags":[{"text":"\u5171\u611f\u3057\u305f\u3089RT","indices":[31,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662951181795201024,"id_str":"662951181795201024","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":1024,"h":559,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662951181795201024,"id_str":"662951181795201024","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":1024,"h":559,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}}},{"id":662951189802147841,"id_str":"662951189802147841","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmDuUYAEFLEE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmDuUYAEFLEE.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":326,"resize":"fit"},"large":{"w":1024,"h":558,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":662951197796503552,"id_str":"662951197796503552","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmhgUkAASK5D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmhgUkAASK5D.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":662951199667163136,"id_str":"662951199667163136","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmoeUkAA93UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmoeUkAA93UL.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5171\u611f\u3057\u305f\u3089RT","indices":[50,58]}],"urls":[],"user_mentions":[{"screen_name":"s_misaki_0826","name":"\u2661 : \u2312 \u91cd\u5ca1 \u307f\u3055\u304d \u306f\u5fa9\u6d3b\u5f53\u9078\u7948\u9858","id":3332199204,"id_str":"3332199204","indices":[3,17]}],"symbols":[],"media":[{"id":662951181795201024,"id_str":"662951181795201024","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":1024,"h":559,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662951206692646912,"source_status_id_str":"662951206692646912","source_user_id":3332199204,"source_user_id_str":"3332199204"}]},"extended_entities":{"media":[{"id":662951181795201024,"id_str":"662951181795201024","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGll5UEAAgv_M.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":1024,"h":559,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":327,"resize":"fit"}},"source_status_id":662951206692646912,"source_status_id_str":"662951206692646912","source_user_id":3332199204,"source_user_id_str":"3332199204"},{"id":662951189802147841,"id_str":"662951189802147841","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmDuUYAEFLEE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmDuUYAEFLEE.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":326,"resize":"fit"},"large":{"w":1024,"h":558,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662951206692646912,"source_status_id_str":"662951206692646912","source_user_id":3332199204,"source_user_id_str":"3332199204"},{"id":662951197796503552,"id_str":"662951197796503552","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmhgUkAASK5D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmhgUkAASK5D.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":662951206692646912,"source_status_id_str":"662951206692646912","source_user_id":3332199204,"source_user_id_str":"3332199204"},{"id":662951199667163136,"id_str":"662951199667163136","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNGmoeUkAA93UL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNGmoeUkAA93UL.jpg","url":"https:\/\/t.co\/bUQev13xXG","display_url":"pic.twitter.com\/bUQev13xXG","expanded_url":"http:\/\/twitter.com\/s_misaki_0826\/status\/662951206692646912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":662951206692646912,"source_status_id_str":"662951206692646912","source_user_id":3332199204,"source_user_id_str":"3332199204"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080073664"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721670656,"id_str":"663728051721670656","text":"\ubc29\ud0c4\uc18c\ub144\ub2e8 \ud654\uc591\uc5f0\ud654 on stage \uc911\ucf58 \ub9c9\ucf58 \uc2a4\ud0e0\ub529 \uad6c\ud569\ub2c8\ub2e4 \u3160\u3160 \uc55e\ubc88\ub300 \uc815\ub9d0 \uac04\uc808\ud788 \uad6c\ud558\uace0 \uc788\uc5b4\uc694 \ud50c\ubbf8 \uc5b4\ub290\uc815\ub3c4\uae4c\uc9c0 \uac00\ub2a5\ud574\uc694 \u3160\u3160!! \uc9c1\uac70\ub798\ub3c4 \ub2f9\uc5f0\ud788 \uac00\ub2a5\ud558\ub2c8\uae4c \ub514\uc5e0\uc8fc\uc138\uc694!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3546178578,"id_str":"3546178578","name":"\uc728\uc728","screen_name":"shujai6352","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":283,"created_at":"Sun Sep 13 06:24:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652369804091744256\/-vjoAavH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652369804091744256\/-vjoAavH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3546178578\/1444291333","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080073658"} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051721625600,"id_str":"663728051721625600","text":"\u0e16\u0e36\u0e07\u0e17\u0e38\u0e01\u0e04\u0e19.....\ud83d\ude12\ud83d\ude12\ud83d\ude12 https:\/\/t.co\/O3uakErVuz","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":379759188,"id_str":"379759188","name":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e40\u0e2a\u0e23\u0e34\u0e21'\u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e36\u0e19'\u2661","screen_name":"HJ_Mint","location":"\u0e15\u0e34\u0e48\u0e07\u0e2d\u0e30\u0e44\u0e23\u0e01\u0e47\u0e44\u0e14\u0e49\u0e42\u0e15\u0e41\u0e25\u0e49\u0e27 \u2661","url":null,"description":"#WeLoveThaiking | l\uc5d0\uc774\uc2a4\uc81c\uc774 \uc528\ub294 \uc815\ub9d0 \uadc0\uc5ec\uc6b4 \uc624\ube60\uc774\uad6c\uc694 \u2665 @AllRiseSilver @special1004 \u2665 \/\/ \u0e40\u0e2d\u0e25\u0e1f\u0e4c\u0e41\u0e2b\u0e48\u0e07\u0e2a\u0e22\u0e32\u0e21 =w= #Singular #TWD #Marvel #DC #\u0e1a\u0e2d\u0e25\u0e44\u0e17\u0e22\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e21\u0e38\u0e49\u0e07\u0e21\u0e34\u0e49\u0e07","protected":false,"verified":false,"followers_count":459,"friends_count":234,"listed_count":4,"favourites_count":4712,"statuses_count":137818,"created_at":"Sun Sep 25 14:24:34 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0EBD6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/726132100\/ca209a583bf0b8b6332bbc663b1a07f5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/726132100\/ca209a583bf0b8b6332bbc663b1a07f5.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653615418372833280\/r9AIHz5T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653615418372833280\/r9AIHz5T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379759188\/1401726308","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01aef00072975327","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01aef00072975327.json","place_type":"city","name":"Bang Khen","full_name":"Bang Khen, Bangkok","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.586399,13.843847],[100.586399,13.897213],[100.629380,13.897213],[100.629380,13.843847]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728029001121793,"id_str":"663728029001121793","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIDQVAAEXxKZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIDQVAAEXxKZ.jpg","url":"https:\/\/t.co\/O3uakErVuz","display_url":"pic.twitter.com\/O3uakErVuz","expanded_url":"http:\/\/twitter.com\/HJ_Mint\/status\/663728051721625600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":99,"resize":"fit"},"large":{"w":1024,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":175,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728029001121793,"id_str":"663728029001121793","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIDQVAAEXxKZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIDQVAAEXxKZ.jpg","url":"https:\/\/t.co\/O3uakErVuz","display_url":"pic.twitter.com\/O3uakErVuz","expanded_url":"http:\/\/twitter.com\/HJ_Mint\/status\/663728051721625600\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":99,"resize":"fit"},"large":{"w":1024,"h":299,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":175,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080073658"} +{"delete":{"status":{"id":619505269114978304,"id_str":"619505269114978304","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080073998"}} +{"delete":{"status":{"id":663728026568519680,"id_str":"663728026568519680","user_id":112574054,"user_id_str":"112574054"},"timestamp_ms":"1447080073977"}} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051730165760,"id_str":"663728051730165760","text":"Birdy spotted on November 09, 2015 at 10:41PM https:\/\/t.co\/4Co81OgnHC","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4089622404,"id_str":"4089622404","name":"Balcony Birdy","screen_name":"BalconyBirdy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":2922,"created_at":"Sun Nov 01 10:20:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660764322537209856\/RyYGe4hk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660764322537209856\/RyYGe4hk_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728051252035584,"id_str":"663728051252035584","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJWJXAAAP2p1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJWJXAAAP2p1.jpg","url":"https:\/\/t.co\/4Co81OgnHC","display_url":"pic.twitter.com\/4Co81OgnHC","expanded_url":"http:\/\/twitter.com\/BalconyBirdy\/status\/663728051730165760\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728051252035584,"id_str":"663728051252035584","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJWJXAAAP2p1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJWJXAAAP2p1.jpg","url":"https:\/\/t.co\/4Co81OgnHC","display_url":"pic.twitter.com\/4Co81OgnHC","expanded_url":"http:\/\/twitter.com\/BalconyBirdy\/status\/663728051730165760\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073660"} +{"delete":{"status":{"id":663727829453029376,"id_str":"663727829453029376","user_id":4099866646,"user_id_str":"4099866646"},"timestamp_ms":"1447080074022"}} +{"delete":{"status":{"id":614873960585560065,"id_str":"614873960585560065","user_id":2228087984,"user_id_str":"2228087984"},"timestamp_ms":"1447080074084"}} +{"delete":{"status":{"id":663726894106456065,"id_str":"663726894106456065","user_id":3130730535,"user_id_str":"3130730535"},"timestamp_ms":"1447080074014"}} +{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051751149568,"id_str":"663728051751149568","text":"See Coldplay at their only confirmed UK show of 2015 - tickets https:\/\/t.co\/DfhxwXPMeY https:\/\/t.co\/uvSEVeFGOo","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16466943,"id_str":"16466943","name":"Gigwise","screen_name":"Gigwise","location":"London","url":"http:\/\/www.gigwise.com","description":"Music news, photos, interviews and exclusive video sessions. Tweets by @AndrewTrendell, @AlexJPollard","protected":false,"verified":false,"followers_count":36487,"friends_count":6050,"listed_count":1028,"favourites_count":1024,"statuses_count":109274,"created_at":"Fri Sep 26 12:33:58 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6A97A2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/761150467\/d1e82997dcc9c3f93d0a03e5c505e81e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/761150467\/d1e82997dcc9c3f93d0a03e5c505e81e.png","profile_background_tile":false,"profile_link_color":"6A97A2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"333531","profile_text_color":"0070CC","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616582871130750976\/yfKQE97T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616582871130750976\/yfKQE97T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16466943\/1409157625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DfhxwXPMeY","expanded_url":"http:\/\/ow.ly\/Uq42C","display_url":"ow.ly\/Uq42C","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":663728051180580864,"id_str":"663728051180580864","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJV4UsAAqWaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJV4UsAAqWaY.jpg","url":"https:\/\/t.co\/uvSEVeFGOo","display_url":"pic.twitter.com\/uvSEVeFGOo","expanded_url":"http:\/\/twitter.com\/Gigwise\/status\/663728051751149568\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728051180580864,"id_str":"663728051180580864","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJV4UsAAqWaY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJV4UsAAqWaY.jpg","url":"https:\/\/t.co\/uvSEVeFGOo","display_url":"pic.twitter.com\/uvSEVeFGOo","expanded_url":"http:\/\/twitter.com\/Gigwise\/status\/663728051751149568\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":750,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080073665"} +{"delete":{"status":{"id":663727279973998592,"id_str":"663727279973998592","user_id":1466118282,"user_id_str":"1466118282"},"timestamp_ms":"1447080074244"}} +{"delete":{"status":{"id":645847557629874176,"id_str":"645847557629874176","user_id":3299333018,"user_id_str":"3299333018"},"timestamp_ms":"1447080074385"}} +{"delete":{"status":{"id":635244734601007104,"id_str":"635244734601007104","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080074413"}} +{"delete":{"status":{"id":663725845547237376,"id_str":"663725845547237376","user_id":528107561,"user_id_str":"528107561"},"timestamp_ms":"1447080074486"}} +{"delete":{"status":{"id":661053012710850560,"id_str":"661053012710850560","user_id":1658045462,"user_id_str":"1658045462"},"timestamp_ms":"1447080074569"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055916093440,"id_str":"663728055916093440","text":"RT @migozyzutapa: Shocking Sex Facts You Never Knew About See here => https:\/\/t.co\/wKNo40hjhA https:\/\/t.co\/3RPbbTH1wV","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1242121112,"id_str":"1242121112","name":"RichThings","screen_name":"RichThingsOnly","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45301,"friends_count":375,"listed_count":83,"favourites_count":267,"statuses_count":104562,"created_at":"Mon Mar 04 20:07:34 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494640968495538176\/O_gaI5h3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494640968495538176\/O_gaI5h3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1242121112\/1406769403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:23:02 +0000 2015","id":663708376996683776,"id_str":"663708376996683776","text":"Shocking Sex Facts You Never Knew About See here => https:\/\/t.co\/wKNo40hjhA https:\/\/t.co\/3RPbbTH1wV","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2388044725,"id_str":"2388044725","name":"Eliashuv Callery","screen_name":"migozyzutapa","location":null,"url":"http:\/\/instagram.com\/juliancamarena","description":"You are somebody\ufffds reason to smile ??","protected":false,"verified":false,"followers_count":423,"friends_count":597,"listed_count":0,"favourites_count":182,"statuses_count":373,"created_at":"Thu Mar 13 23:05:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532914040251506689\/V8Nz9IlG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532914040251506689\/V8Nz9IlG_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wKNo40hjhA","expanded_url":"http:\/\/bit.ly\/favswes","display_url":"bit.ly\/favswes","indices":[55,78]}],"user_mentions":[],"symbols":[],"media":[{"id":663708376078163968,"id_str":"663708376078163968","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","url":"https:\/\/t.co\/3RPbbTH1wV","display_url":"pic.twitter.com\/3RPbbTH1wV","expanded_url":"http:\/\/twitter.com\/migozyzutapa\/status\/663708376996683776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"},"large":{"w":600,"h":387,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708376078163968,"id_str":"663708376078163968","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","url":"https:\/\/t.co\/3RPbbTH1wV","display_url":"pic.twitter.com\/3RPbbTH1wV","expanded_url":"http:\/\/twitter.com\/migozyzutapa\/status\/663708376996683776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"},"large":{"w":600,"h":387,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wKNo40hjhA","expanded_url":"http:\/\/bit.ly\/favswes","display_url":"bit.ly\/favswes","indices":[73,96]}],"user_mentions":[{"screen_name":"migozyzutapa","name":"Eliashuv Callery","id":2388044725,"id_str":"2388044725","indices":[3,16]}],"symbols":[],"media":[{"id":663708376078163968,"id_str":"663708376078163968","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","url":"https:\/\/t.co\/3RPbbTH1wV","display_url":"pic.twitter.com\/3RPbbTH1wV","expanded_url":"http:\/\/twitter.com\/migozyzutapa\/status\/663708376996683776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"},"large":{"w":600,"h":387,"resize":"fit"}},"source_status_id":663708376996683776,"source_status_id_str":"663708376996683776","source_user_id":2388044725,"source_user_id_str":"2388044725"}]},"extended_entities":{"media":[{"id":663708376078163968,"id_str":"663708376078163968","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3QGaXIAA2nsa.jpg","url":"https:\/\/t.co\/3RPbbTH1wV","display_url":"pic.twitter.com\/3RPbbTH1wV","expanded_url":"http:\/\/twitter.com\/migozyzutapa\/status\/663708376996683776\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"},"large":{"w":600,"h":387,"resize":"fit"}},"source_status_id":663708376996683776,"source_status_id_str":"663708376996683776","source_user_id":2388044725,"source_user_id_str":"2388044725"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924490240,"id_str":"663728055924490240","text":"RT @fandomsbardo: Harmonizers dicen Camila y Lauren no se llevan bien pues Lauren siempre estuvo enamorada de Austin Mahone y Camila lo sup\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207988581,"id_str":"3207988581","name":"CLARICE STARLING","screen_name":"sarasu2000","location":null,"url":null,"description":"A m\u00ed rebozadme y ser\u00e9 una diva croqueta.","protected":false,"verified":false,"followers_count":35,"friends_count":33,"listed_count":0,"favourites_count":1202,"statuses_count":2054,"created_at":"Sun Apr 26 14:10:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592330651744993280\/QyEw32Sx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592330651744993280\/QyEw32Sx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207988581\/1435020884","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:45:10 +0000 2015","id":663547852858109952,"id_str":"663547852858109952","text":"Harmonizers dicen Camila y Lauren no se llevan bien pues Lauren siempre estuvo enamorada de Austin Mahone y Camila lo supo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3144777069,"id_str":"3144777069","name":"Fandom Bardo","screen_name":"fandomsbardo","location":"Latinoamerica ","url":null,"description":"BIENVENIDO A LA PRIMERA CUENTA DEDICADA A TUS IDOLOS PERO EN ESPECIAL A SUS FANDOMS...","protected":false,"verified":false,"followers_count":7117,"friends_count":19,"listed_count":16,"favourites_count":3081,"statuses_count":2001,"created_at":"Tue Apr 07 17:36:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662473953651195904\/vFb7N3St_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662473953651195904\/vFb7N3St_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3144777069\/1429392096","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":145,"favorite_count":89,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fandomsbardo","name":"Fandom Bardo","id":3144777069,"id_str":"3144777069","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924432896,"id_str":"663728055924432896","text":"kathnielcecaina: shygirl79435191: AyalaXander: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: kbdpftcris8: lepitennicell4: #PushAwardsKathNiels \u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3834954794,"id_str":"3834954794","name":"Danilo Padilla","screen_name":"ImDaniloPadill","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":2,"listed_count":3,"favourites_count":0,"statuses_count":18846,"created_at":"Fri Oct 09 09:32:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656089796851314688\/eBLanrU7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656089796851314688\/eBLanrU7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3834954794\/1445258994","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[118,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928647680,"id_str":"663728055928647680","text":"RT @CamburYMedio: #Parlamentarias2015 | Ygarza aspira reelecci\u00f3n contra funcionario de experiencia local #Amazonas (+infograf\u00eda) #Venezuela","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":78958901,"id_str":"78958901","name":"Rossana Miranda","screen_name":"rssmiranda","location":"caracas-roma ","url":"http:\/\/www.formiche.net","description":"Giornalista, autrice di \u201cDissidenza 2.0. Storie di blogger da Cuba alla Siria\u201d e \u201cHugo Ch\u00e1vez. Il caudillo pop\u201d","protected":false,"verified":false,"followers_count":829,"friends_count":1384,"listed_count":24,"favourites_count":1390,"statuses_count":3850,"created_at":"Thu Oct 01 17:34:45 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433399555\/libros.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433399555\/libros.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3273753317\/76178a0f650ffbdb1534f509a65cbfba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3273753317\/76178a0f650ffbdb1534f509a65cbfba_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/78958901\/1410187925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:37 +0000 2015","id":663710284905861120,"id_str":"663710284905861120","text":"#Parlamentarias2015 | Ygarza aspira reelecci\u00f3n contra funcionario de experiencia local #Amazonas (+infograf\u00eda) #Venezuela","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2388024050,"id_str":"2388024050","name":"El Cambur","screen_name":"CamburYMedio","location":"Venezuela","url":"http:\/\/elcambur.com.ve","description":"El medio del centro. M\u00e1s que un medio, una comunidad que apuesta por la pluralidad, diversidad y democracia en #Venezuela. #BuscaTuCentro","protected":false,"verified":false,"followers_count":28582,"friends_count":199,"listed_count":136,"favourites_count":297,"statuses_count":47131,"created_at":"Thu Mar 13 22:53:23 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/481121245132357632\/ytih1Rhj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/481121245132357632\/ytih1Rhj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2388024050\/1402154118","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Parlamentarias2015","indices":[0,19]},{"text":"Amazonas","indices":[87,96]},{"text":"Venezuela","indices":[112,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Parlamentarias2015","indices":[18,37]},{"text":"Amazonas","indices":[105,114]},{"text":"Venezuela","indices":[130,140]}],"urls":[],"user_mentions":[{"screen_name":"CamburYMedio","name":"El Cambur","id":2388024050,"id_str":"2388024050","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055941267457,"id_str":"663728055941267457","text":"RT @ishikadrogadu: ESSE ARROCHA \u00c9 PRA VC Q ACHOU Q EU TAVA AQUI SOFRENDO UUUUHHH to msm UUHHH to msm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3395701523,"id_str":"3395701523","name":"fabio ambar tom","screen_name":"ambar_fabio54","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":1051,"listed_count":49,"favourites_count":1,"statuses_count":3718,"created_at":"Thu Jul 30 15:41:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:31:04 +0000 2015","id":663483903345360896,"id_str":"663483903345360896","text":"ESSE ARROCHA \u00c9 PRA VC Q ACHOU Q EU TAVA AQUI SOFRENDO UUUUHHH to msm UUHHH to msm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2223950035,"id_str":"2223950035","name":"dilminha do poder","screen_name":"ishikadrogadu","location":"Bras\u00edlia, Distrito Federal","url":null,"description":"Droga droga, maconha maconha, pedra pedra","protected":false,"verified":false,"followers_count":291,"friends_count":59,"listed_count":1,"favourites_count":0,"statuses_count":35,"created_at":"Sun Dec 01 00:45:21 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663449794220793856\/4Dk0PjoE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663449794220793856\/4Dk0PjoE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2223950035\/1447013778","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ishikadrogadu","name":"dilminha do poder","id":2223950035,"id_str":"2223950035","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080074664"} +{"delete":{"status":{"id":661098457994653697,"id_str":"661098457994653697","user_id":3234767424,"user_id_str":"3234767424"},"timestamp_ms":"1447080074680"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924469760,"id_str":"663728055924469760","text":"Ahmet \u00c7akar \"T\u00fcrk futbolunda biz 500 ki\u015fiyiz. Hepimiz birbirimizin ne oldu\u011funu biliriz.\" @ahmetcakar1 @gkhndinc #Bas\u0131nTrib\u00fcn\u00fc\u00d6zel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83580650,"id_str":"83580650","name":"Best FM","screen_name":"BestFM","location":"T\u00fcrkiye \/ \u0130stanbul","url":"http:\/\/www.bestfm.com.tr","description":"Radyonuz A\u00e7\u0131k Olsun...","protected":false,"verified":false,"followers_count":104542,"friends_count":179,"listed_count":285,"favourites_count":1,"statuses_count":27175,"created_at":"Mon Oct 19 11:46:27 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9EDF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562913911481966592\/GeB-HstM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562913911481966592\/GeB-HstM.jpeg","profile_background_tile":false,"profile_link_color":"6071A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"03C2E0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569763981103869952\/K1TvEQhY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569763981103869952\/K1TvEQhY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83580650\/1429851678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Bas\u0131nTrib\u00fcn\u00fc\u00d6zel","indices":[112,129]}],"urls":[],"user_mentions":[{"screen_name":"ahmetcakar1","name":"ahmetcakar","id":360656100,"id_str":"360656100","indices":[89,101]},{"screen_name":"gkhndinc","name":"G\u00f6khan Din\u00e7","id":121092063,"id_str":"121092063","indices":[102,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055916081153,"id_str":"663728055916081153","text":"RT @a4mally: @BigdawgMontee ard daughter\ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2793220017,"id_str":"2793220017","name":"\u26a1\ufe0fNo$eBlock\u26a1\ufe0f","screen_name":"BigdawgMontee","location":"PARKISTAN","url":null,"description":"10:16\u264e\ufe0f","protected":false,"verified":false,"followers_count":182,"friends_count":206,"listed_count":1,"favourites_count":181,"statuses_count":1634,"created_at":"Tue Sep 30 00:54:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660051232426467328\/QEV7Sit4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660051232426467328\/QEV7Sit4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2793220017\/1446203390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:12 +0000 2015","id":663727793390419973,"id_str":"663727793390419973","text":"@BigdawgMontee ard daughter\ud83d\ude0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727595788308480,"in_reply_to_status_id_str":"663727595788308480","in_reply_to_user_id":2793220017,"in_reply_to_user_id_str":"2793220017","in_reply_to_screen_name":"BigdawgMontee","user":{"id":3039921453,"id_str":"3039921453","name":"#beenpoppin\u2763","screen_name":"a4mally","location":null,"url":null,"description":"\u303dy \u2764 @Ayeeseat | Brooo\u2764@spkelll","protected":false,"verified":false,"followers_count":324,"friends_count":301,"listed_count":1,"favourites_count":1810,"statuses_count":14007,"created_at":"Mon Feb 16 00:28:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720365189910528\/mqI4IXu7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720365189910528\/mqI4IXu7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039921453\/1445812493","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BigdawgMontee","name":"\u26a1\ufe0fNo$eBlock\u26a1\ufe0f","id":2793220017,"id_str":"2793220017","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"a4mally","name":"#beenpoppin\u2763","id":3039921453,"id_str":"3039921453","indices":[3,11]},{"screen_name":"BigdawgMontee","name":"\u26a1\ufe0fNo$eBlock\u26a1\ufe0f","id":2793220017,"id_str":"2793220017","indices":[13,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074658"} +{"delete":{"status":{"id":661073380251074560,"id_str":"661073380251074560","user_id":871501381,"user_id_str":"871501381"},"timestamp_ms":"1447080074691"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055932870656,"id_str":"663728055932870656","text":"RT @TheVeronicous: \u041a\u043e\u0433\u0434\u0430 \u044f \u0434\u0435\u0444\u0424\u0444\u043e\u0447\u043a\u0430 ^_^ https:\/\/t.co\/0T5QJOk5oO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149816478,"id_str":"4149816478","name":"\u0414\u043c\u0438\u0442\u0440\u0438\u0439 \u0414\u0430\u0432\u044b\u0434\u043e\u0432","screen_name":"dimadavydov912","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Mon Nov 09 14:40:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 23:20:02 +0000 2015","id":661321900048691200,"id_str":"661321900048691200","text":"\u041a\u043e\u0433\u0434\u0430 \u044f \u0434\u0435\u0444\u0424\u0444\u043e\u0447\u043a\u0430 ^_^ https:\/\/t.co\/0T5QJOk5oO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356046403,"id_str":"356046403","name":"\u05d1\u05e4\u05d5\u05de\u05ea","screen_name":"TheVeronicous","location":null,"url":"http:\/\/TheVeronicous.hol.es","description":"\u0423\u043d\u0435\u0441\u0451\u043d\u043d\u0430\u044f \u0434\u0438\u0441\u043b\u0435\u043a\u0441\u0438\u0435\u0439","protected":false,"verified":false,"followers_count":7120,"friends_count":15,"listed_count":3,"favourites_count":344,"statuses_count":619,"created_at":"Tue Aug 16 08:02:08 +0000 2011","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442711839147687936\/IrCqfrE8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442711839147687936\/IrCqfrE8.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603513869970059264\/ZTJ2ZEy3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603513869970059264\/ZTJ2ZEy3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/356046403\/1446931042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661321897976565760,"id_str":"661321897976565760","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","url":"https:\/\/t.co\/0T5QJOk5oO","display_url":"pic.twitter.com\/0T5QJOk5oO","expanded_url":"http:\/\/twitter.com\/TheVeronicous\/status\/661321900048691200\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661321897976565760,"id_str":"661321897976565760","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","url":"https:\/\/t.co\/0T5QJOk5oO","display_url":"pic.twitter.com\/0T5QJOk5oO","expanded_url":"http:\/\/twitter.com\/TheVeronicous\/status\/661321900048691200\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheVeronicous","name":"\u05d1\u05e4\u05d5\u05de\u05ea","id":356046403,"id_str":"356046403","indices":[3,17]}],"symbols":[],"media":[{"id":661321897976565760,"id_str":"661321897976565760","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","url":"https:\/\/t.co\/0T5QJOk5oO","display_url":"pic.twitter.com\/0T5QJOk5oO","expanded_url":"http:\/\/twitter.com\/TheVeronicous\/status\/661321900048691200\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}},"source_status_id":661321900048691200,"source_status_id_str":"661321900048691200","source_user_id":356046403,"source_user_id_str":"356046403"}]},"extended_entities":{"media":[{"id":661321897976565760,"id_str":"661321897976565760","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS18wysUkAAyDxF.jpg","url":"https:\/\/t.co\/0T5QJOk5oO","display_url":"pic.twitter.com\/0T5QJOk5oO","expanded_url":"http:\/\/twitter.com\/TheVeronicous\/status\/661321900048691200\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":157,"resize":"fit"},"medium":{"w":600,"h":277,"resize":"fit"}},"source_status_id":661321900048691200,"source_status_id_str":"661321900048691200","source_user_id":356046403,"source_user_id_str":"356046403"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080074662"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055945416704,"id_str":"663728055945416704","text":"RT @Benji_Mascolo: Volevo chiamare il nuovo videoclip \"Due pezzi di mucca e Mucchino a Parigi\" ma warner music non ha approvato \ud83d\ude11\ud83d\ude11\ud83d\ude11\ud83d\ude11\ud83d\ude11 #Benj\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2867352929,"id_str":"2867352929","name":"vogliounpandacorno!","screen_name":"martykoala30","location":null,"url":null,"description":"8\/09\/15-21:31.@Ciolini7 ha ricambiato il follow! \u202220:05\u20224\/11\/15\u2022B&F(mucchino)\u2022","protected":false,"verified":false,"followers_count":182,"friends_count":101,"listed_count":1,"favourites_count":562,"statuses_count":2751,"created_at":"Sat Nov 08 13:38:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652372843091656704\/CQ3ucB5I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652372843091656704\/CQ3ucB5I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2867352929\/1441791848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:56 +0000 2015","id":663718668501704705,"id_str":"663718668501704705","text":"Volevo chiamare il nuovo videoclip \"Due pezzi di mucca e Mucchino a Parigi\" ma warner music non ha approvato \ud83d\ude11\ud83d\ude11\ud83d\ude11\ud83d\ude11\ud83d\ude11 #BenjieFedeLETTERA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159041608,"id_str":"159041608","name":"Benji | 20:05 |","screen_name":"Benji_Mascolo","location":null,"url":"http:\/\/bit.ly\/BF-2005","description":"Il nostro primo album 20:05 \u00e8 FUORI ORA in tutti i negozi di dischi e su ITUNES \u2199\ufe0f","protected":false,"verified":false,"followers_count":69805,"friends_count":848,"listed_count":50,"favourites_count":1537,"statuses_count":7350,"created_at":"Thu Jun 24 08:43:46 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639424786620370944\/p61NYv5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639424786620370944\/p61NYv5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159041608\/1442254121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2014,"favorite_count":2946,"entities":{"hashtags":[{"text":"BenjieFedeLETTERA","indices":[115,133]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLETTERA","indices":[134,140]}],"urls":[],"user_mentions":[{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080074665"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915905024,"id_str":"663728055915905024","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242265244,"id_str":"3242265244","name":"Casandra Cliburn","screen_name":"witohakagoh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":124,"friends_count":1084,"listed_count":6,"favourites_count":18501,"statuses_count":19179,"created_at":"Fri May 08 18:23:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642683220019007488\/8XjZkzk2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642683220019007488\/8XjZkzk2_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":245,"favorite_count":154,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055916085248,"id_str":"663728055916085248","text":"RT @56Magali: VAMOOOOS A ARMAR LINDO BARDOO SANOO\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/2sa8zk9Y6L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182823113,"id_str":"182823113","name":"yami castillo","screen_name":"yamicastillo35","location":"Las Palmas de Gran Canaria","url":null,"description":"\u2764...Espa\u00f1ola ...\u2764adicta a Esperanza M\u00eda\u2764...Lali Esposito\u2764...Mariano Mart\u00ednez del cual he visto todos sus trabajos de tv y cine\u2764Tomanza\u2764Mariali\u2764","protected":false,"verified":false,"followers_count":326,"friends_count":650,"listed_count":2,"favourites_count":246,"statuses_count":24071,"created_at":"Wed Aug 25 13:48:08 +0000 2010","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657942394789302272\/UrRNaPm1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657942394789302272\/UrRNaPm1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182823113\/1446053838","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:48 +0000 2015","id":663727444675948544,"id_str":"663727444675948544","text":"VAMOOOOS A ARMAR LINDO BARDOO SANOO\n@LaResistenciaML @TE4M4RI4L1 #FansAwards2015 #MejorFandom Lalitas https:\/\/t.co\/2sa8zk9Y6L","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851865908,"id_str":"851865908","name":"Meli|Lalita","screen_name":"56Magali","location":"Florencio Varela, Argentina","url":null,"description":"Reir te salva\u2764|| Lalita || AGUANTE MARIALI VIEJO|| 03-11-15|| Llevo su sonrisa como bandera, y que sea lo que sea.|| 12 a\u00f1os|| No estoy sola. MORIDAA","protected":false,"verified":false,"followers_count":326,"friends_count":401,"listed_count":3,"favourites_count":8473,"statuses_count":7826,"created_at":"Fri Sep 28 22:55:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661309337101553664\/5y_0V-Hb.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663104045264019456\/P3zkQXk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851865908\/1446398426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[65,80]},{"text":"MejorFandom","indices":[81,93]}],"urls":[],"user_mentions":[{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[36,52]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[53,64]}],"symbols":[],"media":[{"id":663727442570407937,"id_str":"663727442570407937","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","url":"https:\/\/t.co\/2sa8zk9Y6L","display_url":"pic.twitter.com\/2sa8zk9Y6L","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663727444675948544\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727442570407937,"id_str":"663727442570407937","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","url":"https:\/\/t.co\/2sa8zk9Y6L","display_url":"pic.twitter.com\/2sa8zk9Y6L","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663727444675948544\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[79,94]},{"text":"MejorFandom","indices":[95,107]}],"urls":[],"user_mentions":[{"screen_name":"56Magali","name":"Meli|Lalita","id":851865908,"id_str":"851865908","indices":[3,12]},{"screen_name":"LaResistenciaML","name":"LA RESISTENCIA M&L","id":3793688675,"id_str":"3793688675","indices":[50,66]},{"screen_name":"TE4M4RI4L1","name":"Team Mariali \u2655","id":3401494485,"id_str":"3401494485","indices":[67,78]}],"symbols":[],"media":[{"id":663727442570407937,"id_str":"663727442570407937","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","url":"https:\/\/t.co\/2sa8zk9Y6L","display_url":"pic.twitter.com\/2sa8zk9Y6L","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663727444675948544\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727444675948544,"source_status_id_str":"663727444675948544","source_user_id":851865908,"source_user_id_str":"851865908"}]},"extended_entities":{"media":[{"id":663727442570407937,"id_str":"663727442570407937","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl6oWcAEUrtZ.jpg","url":"https:\/\/t.co\/2sa8zk9Y6L","display_url":"pic.twitter.com\/2sa8zk9Y6L","expanded_url":"http:\/\/twitter.com\/56Magali\/status\/663727444675948544\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727444675948544,"source_status_id_str":"663727444675948544","source_user_id":851865908,"source_user_id_str":"851865908"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055916044288,"id_str":"663728055916044288","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3205694543,"id_str":"3205694543","name":"Abraham","screen_name":"millicentliman","location":"St Louis","url":null,"description":"Happiness is priority one. I do private work, check out the bio link for the particular jobs I do....","protected":false,"verified":false,"followers_count":282,"friends_count":2612,"listed_count":13,"favourites_count":19088,"statuses_count":19697,"created_at":"Sat Apr 25 12:42:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1827,"favorite_count":1138,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055932854272,"id_str":"663728055932854272","text":"@cristipimpanpum s\u00faper mal eee \ud83d\ude22","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723672285392896,"in_reply_to_status_id_str":"663723672285392896","in_reply_to_user_id":301655301,"in_reply_to_user_id_str":"301655301","in_reply_to_screen_name":"cristipimpanpum","user":{"id":2236210736,"id_str":"2236210736","name":"SIsa \u30c4","screen_name":"SisaParaMunoz","location":"1\/12\/13 feo\u221e ","url":null,"description":"Don't worry, be happy Beffoo@cristipimpanpum\u221e 7\/9\/8\u2665 Siempre con una sonrisa \u30c4 Te quiero ni\u00f1a, hasta hacerme llorar\u2655 Por ti, por ella, por vosotros JR","protected":false,"verified":false,"followers_count":112,"friends_count":188,"listed_count":1,"favourites_count":1235,"statuses_count":2073,"created_at":"Sun Dec 08 15:44:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"61B0FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166904223\/TZ035IMw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166904223\/TZ035IMw.jpeg","profile_background_tile":true,"profile_link_color":"6CF0E9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629952957778391041\/eXeEsV9a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629952957778391041\/eXeEsV9a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236210736\/1439027503","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cristipimpanpum","name":"Californiquemos \u221e","id":301655301,"id_str":"301655301","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074662"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928516609,"id_str":"663728055928516609","text":"RT @basket6661: \u3061\u3087\u3063\u3068\u3001\u604b\u611b\u76f8\u8ac7\u3044\u3044\u3067\u3059\u304b\u306d\u3002\u3069\u306a\u305f\u304b\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3546095125,"id_str":"3546095125","name":".*\uff65\uff9f\u3082\u3048\u3081\u308d @\u211cy\u04eb .\uff9f\uff65*.","screen_name":"moemero0123","location":" @\u263a\ufe0e\ufe0e @\u00a7Hem\u00a7","url":null,"description":"\u2661 \u6dbc\u304f\u3093 (@ryo_0115s) \u5927\u597d\u304d \u2661 \u6dbc\u304f\u3093 \u76f8\u4e92 (@115ryo_s) \u2661","protected":false,"verified":false,"followers_count":32,"friends_count":25,"listed_count":0,"favourites_count":1484,"statuses_count":2116,"created_at":"Sun Sep 13 06:00:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661177938302210049\/4z7KZq7e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661177938302210049\/4z7KZq7e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3546095125\/1447077833","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:15 +0000 2015","id":663727306288951300,"id_str":"663727306288951300","text":"\u3061\u3087\u3063\u3068\u3001\u604b\u611b\u76f8\u8ac7\u3044\u3044\u3067\u3059\u304b\u306d\u3002\u3069\u306a\u305f\u304b\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926804536,"id_str":"2926804536","name":"\u5c0f\u6edd \u53cb\u6597(\u3086\u3046\u3068\u3093\u0324\u032e)","screen_name":"basket6661","location":"@\u263a\ufe0e\ufe0e","url":null,"description":"\u4eca\u5e74\u306f\u30af\u30ea\u30dc\u30c3\u30c1","protected":false,"verified":false,"followers_count":3142,"friends_count":2559,"listed_count":33,"favourites_count":6010,"statuses_count":15650,"created_at":"Thu Dec 11 13:36:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659341746417995776\/z1lzHyKI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659341746417995776\/z1lzHyKI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926804536\/1445588192","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1ea0fd1a31366833","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1ea0fd1a31366833.json","place_type":"city","name":"\u6a2a\u6d5c\u5e02 \u90fd\u7b51\u533a","full_name":"\u795e\u5948\u5ddd\u770c \u6a2a\u6d5c\u5e02 \u90fd\u7b51\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.543097,35.507956],[139.543097,35.566753],[139.616102,35.566753],[139.616102,35.507956]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":37,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"basket6661","name":"\u5c0f\u6edd \u53cb\u6597(\u3086\u3046\u3068\u3093\u0324\u032e)","id":2926804536,"id_str":"2926804536","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055937028096,"id_str":"663728055937028096","text":"@arsenalfantv @JoshJJames78 Interesting stats...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713920578813953,"in_reply_to_status_id_str":"663713920578813953","in_reply_to_user_id":898640923,"in_reply_to_user_id_str":"898640923","in_reply_to_screen_name":"arsenalfantv","user":{"id":185389283,"id_str":"185389283","name":"AbdulRasheed","screen_name":"abdullalah","location":"Zaria,Nigeria","url":null,"description":"Just me...","protected":false,"verified":false,"followers_count":117,"friends_count":85,"listed_count":5,"favourites_count":104,"statuses_count":4998,"created_at":"Tue Aug 31 21:41:37 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554399424395624448\/d3SFybya_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554399424395624448\/d3SFybya_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185389283\/1428795693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arsenalfantv","name":"ArsenalFanTV","id":898640923,"id_str":"898640923","indices":[0,13]},{"screen_name":"JoshJJames78","name":"Josh James","id":332410446,"id_str":"332410446","indices":[14,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074663"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055932858368,"id_str":"663728055932858368","text":"Ha kae? ? Serious?? https:\/\/t.co\/UPqHghX6pp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169515214,"id_str":"169515214","name":"TakeOff","screen_name":"ArnieFeelUs","location":"Bechuanaland Protectorate Gabs","url":null,"description":"Always remember u are unique just like everyone else","protected":false,"verified":false,"followers_count":698,"friends_count":389,"listed_count":1,"favourites_count":470,"statuses_count":17808,"created_at":"Thu Jul 22 14:41:01 +0000 2010","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650311006388944896\/5ipKQysN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650311006388944896\/5ipKQysN.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662312849914621953\/jqTcrjur_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662312849914621953\/jqTcrjur_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169515214\/1443881123","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727358810169344,"quoted_status_id_str":"663727358810169344","quoted_status":{"created_at":"Mon Nov 09 14:38:28 +0000 2015","id":663727358810169344,"id_str":"663727358810169344","text":"Bojalwa bo wele ha ub. Yang go tabola lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404646891,"id_str":"404646891","name":"Mrs Breaux. \u2764","screen_name":"ItsSammy_West","location":"under God's wings","url":null,"description":"\u2022 One Ummah. \n\u2022 Frank Ocean. \u2764\n\u2022 Snapchat: itssammywest","protected":false,"verified":false,"followers_count":913,"friends_count":514,"listed_count":4,"favourites_count":409,"statuses_count":37798,"created_at":"Fri Nov 04 06:40:05 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434209330573766656\/P9m6_hsv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434209330573766656\/P9m6_hsv.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660751258475737088\/K3xp2CUv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660751258475737088\/K3xp2CUv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404646891\/1445446805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UPqHghX6pp","expanded_url":"https:\/\/twitter.com\/ItsSammy_West\/status\/663727358810169344","display_url":"twitter.com\/ItsSammy_West\/\u2026","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080074662"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055941206016,"id_str":"663728055941206016","text":"RT @Itsfactguide: Mom and Her Daughters' Show Off Their Hair. When They Turn Around, OMG\nhttps:\/\/t.co\/4cqmHTsXef","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2401373678,"id_str":"2401373678","name":"True L\u10e6ve","screen_name":"itztruelovee","location":"canada","url":null,"description":"I got an x ray 2day they found u in my heart. The doctor said if ithey took u out i would die bcoz i could not live with out u!","protected":false,"verified":false,"followers_count":26408,"friends_count":461,"listed_count":135,"favourites_count":0,"statuses_count":2931,"created_at":"Fri Mar 21 10:49:52 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612547324397514752\/X0gl4i8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612547324397514752\/X0gl4i8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401373678\/1434877747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 08:34:23 +0000 2015","id":661461406449991680,"id_str":"661461406449991680","text":"Mom and Her Daughters' Show Off Their Hair. When They Turn Around, OMG\nhttps:\/\/t.co\/4cqmHTsXef","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909749045,"id_str":"2909749045","name":"Fact guide","screen_name":"Itsfactguide","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46351,"friends_count":34155,"listed_count":47,"favourites_count":39,"statuses_count":392,"created_at":"Tue Nov 25 06:56:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654826029438009344\/zUQZcS3i_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":20,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4cqmHTsXef","expanded_url":"http:\/\/bit.ly\/1k7bdh1","display_url":"bit.ly\/1k7bdh1","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4cqmHTsXef","expanded_url":"http:\/\/bit.ly\/1k7bdh1","display_url":"bit.ly\/1k7bdh1","indices":[89,112]}],"user_mentions":[{"screen_name":"Itsfactguide","name":"Fact guide","id":2909749045,"id_str":"2909749045","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074664"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915929602,"id_str":"663728055915929602","text":"RT @junchants: Tuhkan gue mau hiatus masih ae nongol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1717066256,"id_str":"1717066256","name":"\u3164","screen_name":"hansxill","location":"YGstanCsqSumsqBjrpAnu","url":"http:\/\/Dab.xafiera.com","description":"#Vampyaoi-yaoirp-yaoisweet | 90's || parody @babydragonkwon's \u2661\u2661","protected":false,"verified":false,"followers_count":2412,"friends_count":2183,"listed_count":4,"favourites_count":521,"statuses_count":18565,"created_at":"Sat Aug 31 23:13:25 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660133682192056321\/wuBkMKTk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660133682192056321\/wuBkMKTk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1717066256\/1446641015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:19 +0000 2015","id":663727571360550914,"id_str":"663727571360550914","text":"Tuhkan gue mau hiatus masih ae nongol","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3163572194,"id_str":"3163572194","name":"canor","screen_name":"junchants","location":"Je t'aime huxe\u2661","url":null,"description":"seventeen&kimiyngyu;17sngcheol-ownedbyme","protected":false,"verified":false,"followers_count":2525,"friends_count":2278,"listed_count":5,"favourites_count":1023,"statuses_count":27750,"created_at":"Sun Apr 19 07:58:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663359555913449477\/XiRedUYD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663359555913449477\/XiRedUYD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3163572194\/1446093278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"junchants","name":"canor","id":3163572194,"id_str":"3163572194","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055941132288,"id_str":"663728055941132288","text":"\u307e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1121997500,"id_str":"1121997500","name":"\u30ed\u30d3\u30bb\u30ec","screen_name":"63ar1","location":"2013\u5e741\u670826\u65e5","url":"http:\/\/twpf.jp\/63ar1","description":"\u5973\u5b50\u529b\u3063\u3066\u306a\u3093\u3060\u3063\u3051\u3002","protected":false,"verified":false,"followers_count":4278,"friends_count":1869,"listed_count":62,"favourites_count":44388,"statuses_count":68048,"created_at":"Sat Jan 26 13:26:02 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647787561121812480\/gEBnjT0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647787561121812480\/gEBnjT0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1121997500\/1445868290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074664"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911870464,"id_str":"663728055911870464","text":"@ProSyndicate quin may have robbed the train but, 'At Least We Stole The Show!'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":204089551,"in_reply_to_user_id_str":"204089551","in_reply_to_screen_name":"ProSyndicate","user":{"id":3892714635,"id_str":"3892714635","name":"DarkLight","screen_name":"darklight2901","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCpZgwTW22gULxZCR_EXiehA\/feed","description":"Im A Youtuber!","protected":false,"verified":false,"followers_count":7,"friends_count":35,"listed_count":0,"favourites_count":5,"statuses_count":25,"created_at":"Wed Oct 07 19:34:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651843539509346305\/mQzRfOa3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651843539509346305\/mQzRfOa3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3892714635\/1444413183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ProSyndicate","name":"Tom Syndicate","id":204089551,"id_str":"204089551","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915929600,"id_str":"663728055915929600","text":"\u5e7d\u970a\u306e\u8b66\u5bdf\u306e\u30b3\u30f3\u30d3\u306e\u306a\u3093\u3060\u3063\u3051\u3001\u3042\u308c\u3082\u89b3\u305f\u3044\u306a\u3041\u3068\u601d\u3063\u3066\u89b3\u3066\u306a\u3044\u3093\u3067\u3059\u3051\u3069\u3042\u308c\u306a\u3093\u3060\u3063\u3051\u3000\u3042\u308c\u3000\u307b\u3089\u3000\u3042\u308c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91625508,"id_str":"91625508","name":"\u304f\u308d\u306e","screen_name":"kagiroisando","location":null,"url":"http:\/\/twpf.jp\/kagiroisando","description":"\u25c6\u8150\u5411\u3051\uff65\u4e0b\u30cd\u30bf\uff65\u30cd\u30bf\u30d0\u30ec\u5bb9\u8d66\u305b\u3093\u985e\u306e\u304a\u305f\u304f\u25c6\u30b8\u30e3\u30f3\u30eb\u7bc0\u64cd\u306a\u3057\u3002PH\uff08\u30d0\u30b9\u30ab\u30f4\u30a3\u30eb\uff65\u30d6\u30ec\u30a4\u30e0\uff09\u30dd\u30c3\u30d7\u30f3\uff08\u30ae\u30e9\u30ae\u30e9\uff09\u30d0\u30c8\u30b9\u30d4\uff08\u30b6\u30b8\u30c7\u30e5\u30af\uff09\u3068\u304b\u3002\u5317\u65b9\u6c34\u6ef8\u4f1d\u3068\u304b\u3002\u4e00\u6b21\u5275\u4f5c\u30fbTRPG\uff08\u30b5\u30a4\u30d5\u30a3\u30af\uff09\u3068\u304b\u3002BEMANI\u3068\u304b\u25c6\u6210\u4eba\u6e08\u307f","protected":false,"verified":false,"followers_count":296,"friends_count":262,"listed_count":22,"favourites_count":919,"statuses_count":44743,"created_at":"Sat Nov 21 18:25:00 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C78F7B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065369227\/1c5619e6249d48449eab171c0e2b92dc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065369227\/1c5619e6249d48449eab171c0e2b92dc.jpeg","profile_background_tile":true,"profile_link_color":"7A0707","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496329732284096512\/saplABlE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496329732284096512\/saplABlE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91625508\/1407168771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055949484032,"id_str":"663728055949484032","text":"@Ailey_01 \u7121\u7406WWWWWWWWWWWWWWWWWWWWWWWWWWWWW\u304a\u524d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727969190326273,"in_reply_to_status_id_str":"663727969190326273","in_reply_to_user_id":1266194383,"in_reply_to_user_id_str":"1266194383","in_reply_to_screen_name":"Ailey_01","user":{"id":4080331033,"id_str":"4080331033","name":"\u308a\u308a\u3043","screen_name":"LliyRa_r","location":null,"url":null,"description":"CoD\uff1aMW3 \/ Ghost \/ AW \u2729 FF14\uff1aGungnir\u9bd6 (\u2e1d\u1d55\u1d17\u1d55\u2e1d\u2e1d) PSID LliyRa \/ Charlla_\u02d6\u22c6 \u308a\u3043\u306b\u3083\u3093\u2661 \u3010@RliyLa_k\u3011","protected":false,"verified":false,"followers_count":118,"friends_count":139,"listed_count":0,"favourites_count":26,"statuses_count":605,"created_at":"Sat Oct 31 13:54:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660470841977647106\/7mIT-6cD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660470841977647106\/7mIT-6cD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4080331033\/1446301108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ailey_01","name":"Ailey_","id":1266194383,"id_str":"1266194383","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074666"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055949496321,"id_str":"663728055949496321","text":"\u30b9\u30d0\u30eb\u3068\u30ec\u30aa\u306f\u51fa\u6765\u305d\u3046\u3084\u3051\u3069\u25df\ua4b0\u25cd\u00b4\u0414\u2035\u25cd\ua4b1\u25de\u9678\u5965\u306e\u4e88\u5b9a\u304c\u306a\u3044\uff01\u9678\u5965\u304c\u3057\u305f\u3044\u30fc\u30fc\u30fc\u30fc\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3124056775,"id_str":"3124056775","name":"\uff08\u304d\u307f\u3058\u307e\u3048\u307e\uff09\u51fa\u73fe\u7387\u4f4e","screen_name":"nekomeko444","location":null,"url":null,"description":"20\u2191\u4eee\u88c5\u3057\u307e\u3059\uff01\u524d\u57a2@komekoneko\u304b\u3089\u5f15\u3063\u8d8a\u3057.\u4eca\u3088\u304f\u898b\u308b\u3082\u306e\u2192\u3042\u3093\u30b9\u30bf.\u5200\u5263\uff08\u9678\u5965\u5b88\u6cbc.\u3044\u305a\u3080\u3064\uff01\u65b0\u64b0\u7d44).\u3046\u305f\u30d7\u30ea.basara\u518d\u71b1\u4e2d\u6b66\u7530\u4f0a\u9054\u5c0a\u3044\uff0a\u7a81\u7136\u30b3\u30b9\u5199\u4e0a\u304c\u308b\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u6ce8\u610f\uff01","protected":false,"verified":false,"followers_count":262,"friends_count":263,"listed_count":6,"favourites_count":620,"statuses_count":1749,"created_at":"Wed Apr 01 11:53:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658253962185846784\/_zw_Wjx3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658253962185846784\/_zw_Wjx3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3124056775\/1439291343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074666"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055945269249,"id_str":"663728055945269249","text":"RT @Boreque: La mayor\u00eda de las personas son tan felices como ellas mismas deciden ser. @DivaGastelum @Veronica_mtz @PRICoahuila https:\/\/t.c\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1526713868,"id_str":"1526713868","name":"OnmPRI Acu\u00f1a","screen_name":"OnmPRI_Acuna","location":null,"url":null,"description":"Organismo de Mujeres PRI\u00edstas de la Hermosa ciudad Acu\u00f1a en Coahuila","protected":false,"verified":false,"followers_count":616,"friends_count":987,"listed_count":2,"favourites_count":30,"statuses_count":5202,"created_at":"Tue Jun 18 04:35:38 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000009197425\/e712b237f570229c73577f3511eb794c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000009197425\/e712b237f570229c73577f3511eb794c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1526713868\/1442872061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:02 +0000 2015","id":663717434575065088,"id_str":"663717434575065088","text":"La mayor\u00eda de las personas son tan felices como ellas mismas deciden ser. @DivaGastelum @Veronica_mtz @PRICoahuila https:\/\/t.co\/VAnwlnLcwQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191466907,"id_str":"191466907","name":"Boreque Martinez","screen_name":"Boreque","location":null,"url":null,"description":"Presidenta ONMPRI Coahuila","protected":false,"verified":false,"followers_count":6989,"friends_count":6664,"listed_count":22,"favourites_count":1057,"statuses_count":15015,"created_at":"Thu Sep 16 14:41:41 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649779469419319296\/pqQCXzIS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649779469419319296\/pqQCXzIS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191466907\/1446394036","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DivaGastelum","name":"Diva Gast\u00e9lum","id":354503154,"id_str":"354503154","indices":[74,87]},{"screen_name":"Veronica_mtz","name":"Ver\u00f3nica Mart\u00ednez","id":148932683,"id_str":"148932683","indices":[88,101]},{"screen_name":"PRICoahuila","name":"PRI COAHUILA","id":102537662,"id_str":"102537662","indices":[102,114]}],"symbols":[],"media":[{"id":663620949925871616,"id_str":"663620949925871616","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","url":"https:\/\/t.co\/VAnwlnLcwQ","display_url":"pic.twitter.com\/VAnwlnLcwQ","expanded_url":"http:\/\/twitter.com\/Boreque\/status\/663717434575065088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663620949925871616,"id_str":"663620949925871616","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","url":"https:\/\/t.co\/VAnwlnLcwQ","display_url":"pic.twitter.com\/VAnwlnLcwQ","expanded_url":"http:\/\/twitter.com\/Boreque\/status\/663717434575065088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Boreque","name":"Boreque Martinez","id":191466907,"id_str":"191466907","indices":[3,11]},{"screen_name":"DivaGastelum","name":"Diva Gast\u00e9lum","id":354503154,"id_str":"354503154","indices":[87,100]},{"screen_name":"Veronica_mtz","name":"Ver\u00f3nica Mart\u00ednez","id":148932683,"id_str":"148932683","indices":[101,114]},{"screen_name":"PRICoahuila","name":"PRI COAHUILA","id":102537662,"id_str":"102537662","indices":[115,127]}],"symbols":[],"media":[{"id":663620949925871616,"id_str":"663620949925871616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","url":"https:\/\/t.co\/VAnwlnLcwQ","display_url":"pic.twitter.com\/VAnwlnLcwQ","expanded_url":"http:\/\/twitter.com\/Boreque\/status\/663717434575065088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}},"source_status_id":663717434575065088,"source_status_id_str":"663717434575065088","source_user_id":191466907,"source_user_id_str":"191466907"}]},"extended_entities":{"media":[{"id":663620949925871616,"id_str":"663620949925871616","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWnvOnWwAA_2pn.png","url":"https:\/\/t.co\/VAnwlnLcwQ","display_url":"pic.twitter.com\/VAnwlnLcwQ","expanded_url":"http:\/\/twitter.com\/Boreque\/status\/663717434575065088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}},"source_status_id":663717434575065088,"source_status_id_str":"663717434575065088","source_user_id":191466907,"source_user_id_str":"191466907"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074665"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911772160,"id_str":"663728055911772160","text":"@zahimizimmy vavi demand BB Priv ah . !!!!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727497725349888,"in_reply_to_status_id_str":"663727497725349888","in_reply_to_user_id":3236371428,"in_reply_to_user_id_str":"3236371428","in_reply_to_screen_name":"zahimizimmy","user":{"id":398080578,"id_str":"398080578","name":"\u0646\u0650\u0638\u064e\u0627\u0645\u0652","screen_name":"ShahNizamSM","location":"Oregon, USA","url":"http:\/\/instagram.com\/shahnizamsm","description":"join me the dark side forces.","protected":false,"verified":false,"followers_count":721,"friends_count":438,"listed_count":6,"favourites_count":16018,"statuses_count":30939,"created_at":"Tue Oct 25 15:07:16 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450322757020942336\/-yEvnyo6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450322757020942336\/-yEvnyo6.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663384646663581697\/jmwPgYdK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663384646663581697\/jmwPgYdK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398080578\/1446736737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zahimizimmy","name":"jimronaeous","id":3236371428,"id_str":"3236371428","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911714817,"id_str":"663728055911714817","text":"RT @gusnldos: \uadf8\ub807\uc9c0\uc694\n #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \ud574\uc918\ub77c \n\uc9c0\uae08 \uc774\uc21c\uac04\ub3c4 \uacc4\uc18d\ub418\ub294\n #CROSSGENE \n\uadf8\ub140\uc640 \uadf8\ub140\ub4e4\uc758 \uc5f0\uacb0\uace0\ub9ac\ud83d\ude20\ud83d\ude20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052618293,"id_str":"4052618293","name":"\uaf43\uae38\ub9cc\uac78\uc5b4","screen_name":"han_yuju","location":null,"url":null,"description":"\uc778\uc2a4\ud0c0\uadf8\ub7a8 lunatic_cassie","protected":false,"verified":false,"followers_count":2,"friends_count":18,"listed_count":0,"favourites_count":100,"statuses_count":349,"created_at":"Thu Oct 29 01:45:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713010007961601\/VHz0eABS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713010007961601\/VHz0eABS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052618293\/1446642074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727878291349504,"id_str":"663727878291349504","text":"\uadf8\ub807\uc9c0\uc694\n #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \ud574\uc918\ub77c \n\uc9c0\uae08 \uc774\uc21c\uac04\ub3c4 \uacc4\uc18d\ub418\ub294\n #CROSSGENE \n\uadf8\ub140\uc640 \uadf8\ub140\ub4e4\uc758 \uc5f0\uacb0\uace0\ub9ac\ud83d\ude20\ud83d\ude20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":274599810,"id_str":"274599810","name":"KENTA\/\u62d3\u54c9\u306e\u88b4\u59ff\u671f\u5f85\u4e2d","screen_name":"gusnldos","location":"\u97d3\u56fd","url":"http:\/\/blog.naver.com\/gusnldos","description":"JIN\u306f\u795e\u69d8\u3002KAT-TUN\u306f\u904b\u547d\u3002TAKUYA\u306f\u307e\u3060\u77e5\u3089\u306c\u4e16\u754c\u3002\ud55c\uad6d\uc5b44 : 6\u65e5\u672c\u8a9e.","protected":false,"verified":false,"followers_count":323,"friends_count":296,"listed_count":3,"favourites_count":2980,"statuses_count":58110,"created_at":"Wed Mar 30 16:17:38 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656660944\/osf2w15smqmmfg59u8c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656660944\/osf2w15smqmmfg59u8c4.jpeg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658605841218564096\/c7YxncBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658605841218564096\/c7YxncBp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/274599810\/1442150206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[6,20]},{"text":"CROSSGENE","indices":[41,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[20,34]},{"text":"CROSSGENE","indices":[55,65]}],"urls":[],"user_mentions":[{"screen_name":"gusnldos","name":"KENTA\/\u62d3\u54c9\u306e\u88b4\u59ff\u671f\u5f85\u4e2d","id":274599810,"id_str":"274599810","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055941074944,"id_str":"663728055941074944","text":"RT @marohomjam: I nominate @bernardokath for @tccandler ' The 100 Most beautiful faces of 2015. #tccandler #100Faces https:\/\/t.co\/M3n3a2KL0k","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3221028978,"id_str":"3221028978","name":"HIRING : KATH MEMES","screen_name":"KathrynMemes","location":"05.20.15","url":"http:\/\/facebook.com\/KathrynMemes","description":"| Official page of Kathryn Memes | http:\/\/kathbernardo.com | Followed by: @KevinPadillaFTW & @KBBlogOfficial","protected":false,"verified":false,"followers_count":3321,"friends_count":344,"listed_count":7,"favourites_count":4451,"statuses_count":18934,"created_at":"Wed May 20 05:51:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605630075208232960\/lbrPFnKd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605630075208232960\/lbrPFnKd.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612147700566376449\/KxzFGeJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612147700566376449\/KxzFGeJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221028978\/1440395616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:04:14 +0000 2015","id":663673446484721664,"id_str":"663673446484721664","text":"I nominate @bernardokath for @tccandler ' The 100 Most beautiful faces of 2015. #tccandler #100Faces https:\/\/t.co\/M3n3a2KL0k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225815972,"id_str":"3225815972","name":"Jam","screen_name":"marohomjam","location":"ph","url":null,"description":"Life is about balance. Be kind, but don't let people abuse you. Trust, but don't be deceived. Be content, but never stop improving yourself.","protected":false,"verified":false,"followers_count":138,"friends_count":35,"listed_count":11,"favourites_count":914,"statuses_count":9002,"created_at":"Mon May 25 03:45:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662909808773742592\/au6XpJjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662909808773742592\/au6XpJjr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225815972\/1444555237","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":122,"favorite_count":55,"entities":{"hashtags":[{"text":"tccandler","indices":[80,90]},{"text":"100Faces","indices":[91,100]}],"urls":[],"user_mentions":[{"screen_name":"bernardokath","name":"KATH","id":197807757,"id_str":"197807757","indices":[11,24]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[29,39]}],"symbols":[],"media":[{"id":663673360618950657,"id_str":"663673360618950657","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","url":"https:\/\/t.co\/M3n3a2KL0k","display_url":"pic.twitter.com\/M3n3a2KL0k","expanded_url":"http:\/\/twitter.com\/marohomjam\/status\/663673446484721664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":739,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673360618950657,"id_str":"663673360618950657","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","url":"https:\/\/t.co\/M3n3a2KL0k","display_url":"pic.twitter.com\/M3n3a2KL0k","expanded_url":"http:\/\/twitter.com\/marohomjam\/status\/663673446484721664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":739,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tccandler","indices":[96,106]},{"text":"100Faces","indices":[107,116]}],"urls":[],"user_mentions":[{"screen_name":"marohomjam","name":"Jam","id":3225815972,"id_str":"3225815972","indices":[3,14]},{"screen_name":"bernardokath","name":"KATH","id":197807757,"id_str":"197807757","indices":[27,40]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[45,55]}],"symbols":[],"media":[{"id":663673360618950657,"id_str":"663673360618950657","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","url":"https:\/\/t.co\/M3n3a2KL0k","display_url":"pic.twitter.com\/M3n3a2KL0k","expanded_url":"http:\/\/twitter.com\/marohomjam\/status\/663673446484721664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":739,"h":960,"resize":"fit"}},"source_status_id":663673446484721664,"source_status_id_str":"663673446484721664","source_user_id":3225815972,"source_user_id_str":"3225815972"}]},"extended_entities":{"media":[{"id":663673360618950657,"id_str":"663673360618950657","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXXZ7qVEAEfFSd.jpg","url":"https:\/\/t.co\/M3n3a2KL0k","display_url":"pic.twitter.com\/M3n3a2KL0k","expanded_url":"http:\/\/twitter.com\/marohomjam\/status\/663673446484721664\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":779,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":739,"h":960,"resize":"fit"}},"source_status_id":663673446484721664,"source_status_id_str":"663673446484721664","source_user_id":3225815972,"source_user_id_str":"3225815972"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074664"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055920099329,"id_str":"663728055920099329","text":"\u3084\u3063\u3071\u308a\u4e8c\u80a1\u306e\u9774\u4e0b\u306f\u304d\u3082\u3061\u308f\u308b\u304f\u3066\u3060\u3081\u3002\n\u8131\u3054\u3046\u3002\n\uff15\u672c\u6307\u306a\u3093\u3066\u3082\u3063\u3068\u3080\u308a\u30fc\u30fc\u30fc( \uff1b\u2200\uff1b)","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821016985,"id_str":"821016985","name":"\u3055\u3063\u3064\u3093","screen_name":"stmll","location":"\u307f\u304b\u3093\u306e\u56fd\/\u30d0\u30ea\u30a3\u3055\u3093\u304c\u3054\u8fd1\u6240\u3055\u3093","url":null,"description":"V6\u30ab\u30df\u30bb\u30f3\u306a\u5ca1\u7530\u51c6\u4e00\u304f\u3093\u306b\u5922\u4e2d\u2661\u611b\u6545\u306b\u5909\u614b\u767a\u8a00\u3042\u308aww\u305d\u3057\u3066\u9332\u753b\u5927\u597d\u304d\u4eba\u9593\u3067\u3059(^^)\/\u5168\u56fd\u306e\u30ca\u30ab\u30fc\u30de\u52df\u96c6\u4e2d\u266a\u305d\u3093\u306a\u30c8\u30cb\u4e16\u4ee3\u3067\u3059\u304c\u5f15\u304b\u306a\u3044\u65b9\u306e\u307f\uff8c\uff6b\uff9b\uff70\uff90\uff70\u266a\u305f\u3060\u3057\u5272\u3068\u30cd\u30ac\u767a\u8a00\u3082\u591a\u3044\u306e\u3067\u5927\u4e08\u592b\u306a\u4eba\u306e\u307f\uff76\uff93\uff9d\uff01\u203b\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u203b\u7121\u8a00\u30fb\u672a\u6210\u5e74\u30fb\u9375\u4ed8\u306e\u65b9\u306f\u30d5\u30a9\u30ed\u30fc\u3092\u304a\u65ad\u308a\u3055\u305b\u3066\u9802\u3044\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":181,"friends_count":302,"listed_count":11,"favourites_count":12651,"statuses_count":95281,"created_at":"Thu Sep 13 06:48:07 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/753187678\/7168f3727803e9abb06e1adac3c41fcb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/753187678\/7168f3727803e9abb06e1adac3c41fcb.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661588174875979776\/bFixQP_X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661588174875979776\/bFixQP_X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821016985\/1357128579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074659"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055920128000,"id_str":"663728055920128000","text":"RT @kuromame2713: @1G1G1 \uc11c\uac00\uc564\ucfe1\uc5d0\uc11c \uc54c\ubc14\ud574\ubd24\ub358 \uc0ac\ub78c\uc778\ub370\uc694\u314b\u314b \ub2e4\ub978\ub370\ub3c4 \uadf8\ub807\uc2b5\ub2c8\ub2e4 \uc8fc\ubc29\uc5d0\uc11c \ubabb\uc0dd\uae34 \uc0ac\ub78c \uc695\ud558\uba74\uc11c \uc694\ub9ac\ud574\uc694;;","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3925825034,"id_str":"3925825034","name":"\ud3b8\uc21c\uc774","screen_name":"zxzx01234","location":"2D\uc18d \uc5b4\ub518\uac00","url":null,"description":"\uc6d0\ud53c\uc2a4\/\uc740\ud63c\/\uc6d0\ud380\ub9e8 \ub355\ud6c4 \n*\uc77c\uc0c1\uc7a1\uc18c\ub9ac\ub9ce\uc74c \ub124\ud0c0\ubc1c\uc5b8\uc8fc\uc758 \n\uc57c\ud55c\ub9d0O \uac00\ub054 \uadf8\ub9bc\uadf8\ub824\uc694!\n\ub9de\ud314\uc6d0\ud558\uc2dc\uba74 \uba58\uc158\ub123\uc5b4\uc8fc\uc138\uc694'^'\/\u2661\n\ubd80\ub2f4\uc5c6\uc774\ub2e4\uac00\uc640\uc8fc\uc138\uc694:)","protected":false,"verified":false,"followers_count":84,"friends_count":263,"listed_count":2,"favourites_count":622,"statuses_count":3486,"created_at":"Sat Oct 17 14:44:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663381762551083009\/t-MwHT_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663381762551083009\/t-MwHT_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3925825034\/1446317578","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Aug 20 11:14:35 +0000 2014","id":502051062816067585,"id_str":"502051062816067585","text":"@1G1G1 \uc11c\uac00\uc564\ucfe1\uc5d0\uc11c \uc54c\ubc14\ud574\ubd24\ub358 \uc0ac\ub78c\uc778\ub370\uc694\u314b\u314b \ub2e4\ub978\ub370\ub3c4 \uadf8\ub807\uc2b5\ub2c8\ub2e4 \uc8fc\ubc29\uc5d0\uc11c \ubabb\uc0dd\uae34 \uc0ac\ub78c \uc695\ud558\uba74\uc11c \uc694\ub9ac\ud574\uc694;;","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":391510557007675392,"in_reply_to_status_id_str":"391510557007675392","in_reply_to_user_id":189833463,"in_reply_to_user_id_str":"189833463","in_reply_to_screen_name":"1G1G1","user":{"id":1083647191,"id_str":"1083647191","name":"\ucfe0(\ub85c)\ub9c8(\uba54)","screen_name":"kuromame2713","location":null,"url":null,"description":"2d\/3d drawing\/making\n\ud5e4\ub354 @\uc2a4\ucfe0\ub204","protected":false,"verified":false,"followers_count":114,"friends_count":212,"listed_count":0,"favourites_count":518,"statuses_count":13592,"created_at":"Sat Jan 12 17:42:17 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453122248799297536\/aENeg8rv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453122248799297536\/aENeg8rv.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"53AB8D","profile_sidebar_fill_color":"291C0D","profile_text_color":"53AB8D","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653460654519529473\/O5YQLBw8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653460654519529473\/O5YQLBw8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1083647191\/1442331883","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":565,"favorite_count":16,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1G1G1","name":"\uc131\uc790\uc5b8\ub2c8","id":189833463,"id_str":"189833463","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuromame2713","name":"\ucfe0(\ub85c)\ub9c8(\uba54)","id":1083647191,"id_str":"1083647191","indices":[3,16]},{"screen_name":"1G1G1","name":"\uc131\uc790\uc5b8\ub2c8","id":189833463,"id_str":"189833463","indices":[18,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080074659"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915950080,"id_str":"663728055915950080","text":"@_jou_jou_ \u306b\u3083\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727508622217220,"in_reply_to_status_id_str":"663727508622217220","in_reply_to_user_id":134139484,"in_reply_to_user_id_str":"134139484","in_reply_to_screen_name":"takacoins","user":{"id":134139484,"id_str":"134139484","name":"kawabetakayasu","screen_name":"takacoins","location":"\u5927\u962a","url":"http:\/\/ip.tosp.co.jp\/i.asp?i=coinsbox","description":"sixteencoins\u3067\u3001\u30ae\u30bf\u30dc\u3057\u3066\u307e\u3059\uff1f\uff01\u3088\u308d\u3057\u304f\uff01","protected":false,"verified":false,"followers_count":373,"friends_count":399,"listed_count":4,"favourites_count":15,"statuses_count":1375,"created_at":"Sat Apr 17 15:13:21 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/830569436\/IMG_0001_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/830569436\/IMG_0001_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_jou_jou_","name":"\u4e0a\u3005@\u971c\u964d\u308a\u732b","id":491419643,"id_str":"491419643","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911714816,"id_str":"663728055911714816","text":"@srk_priya Kya??? #DhamakedarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727837900238849,"in_reply_to_status_id_str":"663727837900238849","in_reply_to_user_id":507709387,"in_reply_to_user_id_str":"507709387","in_reply_to_screen_name":"srk_priya","user":{"id":1368899402,"id_str":"1368899402","name":"\u2022 \u0455\u03b1\u044f\u03c5\u043a\u043d \u2022","screen_name":"iamsarukh","location":"Bangladesh","url":null,"description":"\u0432\u03b9g \u0493\u03b1\u03b7 \u03c3\u0493 @iamsrk \n\n\u043c\u03b5\u044f\u03b5 \u2113\u03b9\u04af\u03b5 v\u03c3 s\u03b9\u044f\u0493 s\u0442\u03b1\u044f \u03b7\u03b1\u043di, d\u03c5\u03b7\u03b9\u04af\u03b1 \u043d\u03b1\u03b9 \u043c\u03b5\u044fi\u2764","protected":false,"verified":false,"followers_count":806,"friends_count":290,"listed_count":1,"favourites_count":1567,"statuses_count":4434,"created_at":"Sun Apr 21 07:11:11 +0000 2013","utc_offset":21600,"time_zone":"Almaty","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663696394700525569\/ezQvq5te_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663696394700525569\/ezQvq5te_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1368899402\/1437916973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedarDilwaleTrailer","indices":[18,43]}],"urls":[],"user_mentions":[{"screen_name":"srk_priya","name":"Dilwale Priya","id":507709387,"id_str":"507709387","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915954176,"id_str":"663728055915954176","text":"RT @semprecontro: Regime Forces Advance in Aleppo Under Russian Air Cover #Syria https:\/\/t.co\/KK7SKwhWU0 via @observesyria","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2337451080,"id_str":"2337451080","name":"James Austin","screen_name":"dodger246851","location":"Santa Maria Ca","url":null,"description":"62 yr. happily married 17yrs ret. \/USMC 1968_78","protected":false,"verified":false,"followers_count":624,"friends_count":1910,"listed_count":37,"favourites_count":2493,"statuses_count":25777,"created_at":"Tue Feb 11 00:21:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622276152795643904\/adUL0z7W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622276152795643904\/adUL0z7W_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:30:49 +0000 2015","id":663680135833473024,"id_str":"663680135833473024","text":"Regime Forces Advance in Aleppo Under Russian Air Cover #Syria https:\/\/t.co\/KK7SKwhWU0 via @observesyria","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395267071,"id_str":"395267071","name":"semprecontro","screen_name":"semprecontro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2502,"friends_count":2354,"listed_count":311,"favourites_count":246,"statuses_count":185942,"created_at":"Fri Oct 21 12:03:05 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1684918788\/papaveri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1684918788\/papaveri_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"Syria","indices":[56,62]}],"urls":[{"url":"https:\/\/t.co\/KK7SKwhWU0","expanded_url":"http:\/\/sobsrvr.com\/Sar4Gep4","display_url":"sobsrvr.com\/Sar4Gep4","indices":[63,86]}],"user_mentions":[{"screen_name":"observesyria","name":"The Syrian Observer","id":1006237459,"id_str":"1006237459","indices":[91,104]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Syria","indices":[74,80]}],"urls":[{"url":"https:\/\/t.co\/KK7SKwhWU0","expanded_url":"http:\/\/sobsrvr.com\/Sar4Gep4","display_url":"sobsrvr.com\/Sar4Gep4","indices":[81,104]}],"user_mentions":[{"screen_name":"semprecontro","name":"semprecontro","id":395267071,"id_str":"395267071","indices":[3,16]},{"screen_name":"observesyria","name":"The Syrian Observer","id":1006237459,"id_str":"1006237459","indices":[109,122]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928516608,"id_str":"663728055928516608","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3087845654,"id_str":"3087845654","name":"Felix","screen_name":"ArcandJodi","location":"Trenton","url":null,"description":"Happiness is priority one. I perform freelance work, check out my bio link to get the actual jobs I do....","protected":false,"verified":false,"followers_count":71,"friends_count":572,"listed_count":8,"favourites_count":15534,"statuses_count":16018,"created_at":"Mon Mar 16 04:25:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1826,"favorite_count":1138,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055916081152,"id_str":"663728055916081152","text":"RT @bsklyncu: Arif Ali Cang\u0131 ARIFCANGI Bolge idare mahkemeleri ve yargi cevreleri hakkindaki karari yazmis. https:\/\/t.co\/uQAe0g1OFr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":307001139,"id_str":"307001139","name":"Arif Ali Cang\u0131","screen_name":"ARIFCANGI","location":"T\u00fcrkiye-\u0130zmir","url":"http:\/\/www.cangi.av.tr\/","description":"\u0130zmir\u2019de ya\u015f\u0131yor. Avukat. Do\u011fal ve k\u00fclt\u00fcrel varl\u0131klar\u0131n korunmas\u0131,e\u015fitlik, \u00f6zg\u00fcrl\u00fck, adalet ve ya\u015fam\u0131n savunulmas\u0131 i\u00e7in.","protected":false,"verified":false,"followers_count":6671,"friends_count":1434,"listed_count":40,"favourites_count":34,"statuses_count":28449,"created_at":"Sat May 28 20:50:58 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631206475365502977\/3wCR406Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631206475365502977\/3wCR406Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307001139\/1375259957","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:11 +0000 2015","id":663726281779974145,"id_str":"663726281779974145","text":"Arif Ali Cang\u0131 ARIFCANGI Bolge idare mahkemeleri ve yargi cevreleri hakkindaki karari yazmis. https:\/\/t.co\/uQAe0g1OFr","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622807217,"id_str":"3622807217","name":"Buse Kalyoncu","screen_name":"bsklyncu","location":"\u0130stanbul, T\u00fcrkiye","url":null,"description":"Galatasaray \u00dcni Sosyoloji","protected":false,"verified":false,"followers_count":4,"friends_count":1,"listed_count":0,"favourites_count":1,"statuses_count":1036,"created_at":"Fri Sep 11 18:05:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643766230810238980\/YMHdkFS7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643766230810238980\/YMHdkFS7_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663716143958466560,"quoted_status_id_str":"663716143958466560","quoted_status":{"created_at":"Mon Nov 09 13:53:54 +0000 2015","id":663716143958466560,"id_str":"663716143958466560","text":"@SemraCerit https:\/\/t.co\/TvXmkRGz5d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662994793778298880,"in_reply_to_status_id_str":"662994793778298880","in_reply_to_user_id":383435496,"in_reply_to_user_id_str":"383435496","in_reply_to_screen_name":"SemraCerit","user":{"id":307001139,"id_str":"307001139","name":"Arif Ali Cang\u0131","screen_name":"ARIFCANGI","location":"T\u00fcrkiye-\u0130zmir","url":"http:\/\/www.cangi.av.tr\/","description":"\u0130zmir\u2019de ya\u015f\u0131yor. Avukat. Do\u011fal ve k\u00fclt\u00fcrel varl\u0131klar\u0131n korunmas\u0131,e\u015fitlik, \u00f6zg\u00fcrl\u00fck, adalet ve ya\u015fam\u0131n savunulmas\u0131 i\u00e7in.","protected":false,"verified":false,"followers_count":6671,"friends_count":1434,"listed_count":40,"favourites_count":34,"statuses_count":28448,"created_at":"Sat May 28 20:50:58 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631206475365502977\/3wCR406Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631206475365502977\/3wCR406Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307001139\/1375259957","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TvXmkRGz5d","expanded_url":"http:\/\/t24.com.tr\/yazarlar\/ali-arif-cangi\/adalet-bakanliginin-yeni-bolge-idare-mahkemeleri,13188","display_url":"t24.com.tr\/yazarlar\/ali-a\u2026","indices":[12,35]}],"user_mentions":[{"screen_name":"SemraCerit","name":"Semra Cerit","id":383435496,"id_str":"383435496","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uQAe0g1OFr","expanded_url":"https:\/\/twitter.com\/ARIFCANGI\/status\/663716143958466560","display_url":"twitter.com\/ARIFCANGI\/stat\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uQAe0g1OFr","expanded_url":"https:\/\/twitter.com\/ARIFCANGI\/status\/663716143958466560","display_url":"twitter.com\/ARIFCANGI\/stat\u2026","indices":[108,131]}],"user_mentions":[{"screen_name":"bsklyncu","name":"Buse Kalyoncu","id":3622807217,"id_str":"3622807217","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080074658"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911735297,"id_str":"663728055911735297","text":"@kzy_hys \u6771\u4eac\u306e\u65b9\u304c\u4eba\u591a\u3044\u3057\u6771\u4eac\u3048\u3048\u3084\u3093(*\u00b4\u2022\u03c9\u2022`*)\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727041519357952,"in_reply_to_status_id_str":"663727041519357952","in_reply_to_user_id":451946565,"in_reply_to_user_id_str":"451946565","in_reply_to_screen_name":"kzy_hys","user":{"id":3120313409,"id_str":"3120313409","name":"\u5fd7\u7dd2\u8389","screen_name":"ndgi7h","location":null,"url":null,"description":"\u8ab0\u306b\u3082\u4f1a\u3044\u305f\u304f\u306a\u3044\u9854\u306e\u305d\u3070\u306b\u3044\u305f\u3044","protected":false,"verified":false,"followers_count":163,"friends_count":112,"listed_count":2,"favourites_count":1133,"statuses_count":2519,"created_at":"Fri Mar 27 01:31:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663429003491995648\/D4x-4cNh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663429003491995648\/D4x-4cNh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3120313409\/1444921147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kzy_hys","name":"kzy_","id":451946565,"id_str":"451946565","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055949520896,"id_str":"663728055949520896","text":"RT @SyuusukeSaito: \u5148\u65e5\u3001\u7530\u6751\u4eae\u4e00\u5ea7\u00d7\u6728\u4e0b\u534a\u592a\u4e3b\u5bb0\u5287\u56e3\u306e\u6975\u697d\u30d7\u30ea\u30ba\u30f3\u3092\u89b3\u5287\u3057\u3066\u304d\u305f\u3088\u3002\n\u811a\u672c\u9762\u767d\u304f\u3066\u3001\u3068\u3066\u3082\u697d\u3057\u304f\u89b3\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\uff01\u5165\u6c5f\u3055\u3093\u304c\u829d\u5c45\u3057\u3066\u3044\u308b\u6240\u3092\u59cb\u3081\u3066\u898b\u307e\u3057\u305f\u304c\u3001\u30cf\u30de\u3063\u3066\u3066\u7d20\u6575\u3067\u3057\u305f\u3002\n\u7530\u6751\u4eae\u3055\u3093\u306f\u3058\u3081\u4ed6\u306e\u51fa\u6f14\u8005\u306e\u65b9\u3082\u7d20\u6575\u3067\u3057\u305f\uff01 http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052439966,"id_str":"3052439966","name":"nao","screen_name":"syuu_31","location":"\u307f\u3048","url":null,"description":"\u6589\u85e4\u79c0\u7ffc\u304f\u3093\u2665\ufe0e \u6850\u5c71\u6f23\u304f\u3093\u2665\ufe0e \n\u6226\u968a&\u30e9\u30a4\u30c0\u30fc\uff08\u30ad\u30e7\u30a6\u30ea\u30e5\u30a6\u3001\uff37\uff09\n\u30dd\u30eb\u30ce\u30b0\u30e9\u30d5\u30a3\u30c6\u30a3...\u266a*\uff9f","protected":false,"verified":false,"followers_count":33,"friends_count":89,"listed_count":0,"favourites_count":260,"statuses_count":939,"created_at":"Sun Mar 01 13:00:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636180939031207937\/QMkcHhoT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636180939031207937\/QMkcHhoT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052439966\/1440512329","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:36 +0000 2015","id":663727895777382402,"id_str":"663727895777382402","text":"\u5148\u65e5\u3001\u7530\u6751\u4eae\u4e00\u5ea7\u00d7\u6728\u4e0b\u534a\u592a\u4e3b\u5bb0\u5287\u56e3\u306e\u6975\u697d\u30d7\u30ea\u30ba\u30f3\u3092\u89b3\u5287\u3057\u3066\u304d\u305f\u3088\u3002\n\u811a\u672c\u9762\u767d\u304f\u3066\u3001\u3068\u3066\u3082\u697d\u3057\u304f\u89b3\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f\uff01\u5165\u6c5f\u3055\u3093\u304c\u829d\u5c45\u3057\u3066\u3044\u308b\u6240\u3092\u59cb\u3081\u3066\u898b\u307e\u3057\u305f\u304c\u3001\u30cf\u30de\u3063\u3066\u3066\u7d20\u6575\u3067\u3057\u305f\u3002\n\u7530\u6751\u4eae\u3055\u3093\u306f\u3058\u3081\u4ed6\u306e\u51fa\u6f14\u8005\u306e\u65b9\u3082\u7d20\u6575\u3067\u3057\u305f\uff01 https:\/\/t.co\/pGeSgaccdI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3266873383,"id_str":"3266873383","name":"\u6589\u85e4\u79c0\u7ffc","screen_name":"SyuusukeSaito","location":null,"url":"http:\/\/www.sma.co.jp\/artist\/profile\/index\/159","description":"Official Twitter\/Sony Music Artists\u6240\u5c5e\/\u4ff3\u512a,\u6b4c\u624b\/\u65e5\u672c\u30c6\u30ec\u30d3\u300c\u5bb6\u653f\u5a66\u306e\u30df\u30bf\u300d \u5c0f\u6ca2\u62d3\u4e5f\u5f79 \/ \u30c6\u30ec\u30d3\u671d\u65e5\u30b9\u30fc\u30d1\u30fc\u6226\u968a\u30b7\u30ea\u30fc\u30ba\u300c\u7363\u96fb\u6226\u968a\u30ad\u30e7\u30a6\u30ea\u30e5\u30a6\u30b8\u30e3\u30fc\u300d \u30ad\u30e7\u30a6\u30ea\u30e5\u30a6\u30d6\u30e9\u30c3\u30af\/\u30a4\u30a2\u30f3\uff65\u30e8\u30fc\u30af\u30e9\u30f3\u30c9\u5f79 \/ 2015\u5e742\u6708\u3001\u65e5\u672c\u30b3\u30ed\u30e0\u30d3\u30a2\u3088\u308a\u300cPARTY !\u300dCD\u30e1\u30b8\u30e3\u30fc\u30c7\u30d3\u30e5\u30fc","protected":false,"verified":false,"followers_count":5249,"friends_count":116,"listed_count":154,"favourites_count":0,"statuses_count":204,"created_at":"Fri Jul 03 06:10:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616856882532081664\/pzuOk9F6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616856882532081664\/pzuOk9F6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3266873383\/1437993612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727879084052480,"id_str":"663727879084052480","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":828,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":521,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727879084052480,"id_str":"663727879084052480","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":828,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":521,"resize":"fit"}}},{"id":663727887342637057,"id_str":"663727887342637057","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ziUEAEXclY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ziUEAEXclY.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SyuusukeSaito","name":"\u6589\u85e4\u79c0\u7ffc","id":3266873383,"id_str":"3266873383","indices":[3,17]}],"symbols":[],"media":[{"id":663727879084052480,"id_str":"663727879084052480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":828,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":521,"resize":"fit"}},"source_status_id":663727895777382402,"source_status_id_str":"663727895777382402","source_user_id":3266873383,"source_user_id_str":"3266873383"}]},"extended_entities":{"media":[{"id":663727879084052480,"id_str":"663727879084052480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_UxUEAAypLm.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":828,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":521,"resize":"fit"}},"source_status_id":663727895777382402,"source_status_id_str":"663727895777382402","source_user_id":3266873383,"source_user_id_str":"3266873383"},{"id":663727887342637057,"id_str":"663727887342637057","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ziUEAEXclY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ziUEAEXclY.jpg","url":"https:\/\/t.co\/pGeSgaccdI","display_url":"pic.twitter.com\/pGeSgaccdI","expanded_url":"http:\/\/twitter.com\/SyuusukeSaito\/status\/663727895777382402\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727895777382402,"source_status_id_str":"663727895777382402","source_user_id":3266873383,"source_user_id_str":"3266873383"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074666"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911755780,"id_str":"663728055911755780","text":"RT @ami20030325: \u3053\u306e\u30ca\u30a4\u30eb\u30e4\u30d0\u30a4\u2661\u2661\n\n #RT\u304f\u308c\u305fDir\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc \n\nhttps:\/\/t.co\/a9mPZPjtp5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290159215,"id_str":"3290159215","name":"\u30f5 \uff7a \u26c5\ufe0f","screen_name":"DracoDm","location":"Nouis.\u273c","url":null,"description":"\u2800Niall\u306e\u5168\u3066\u3068Louis\u306e\u30cf\u30b9\u30ad\u30fc\u611b\u3057\u3066\u304a\u308a\u307e\u3059*\u273d \u2800\u261e\u261e@NiallOfficial\u2661@Louis_Tomlinson\u261a\u261c\u2800\u2800\u2800\u2800\u2800Dir\u3055\u3093\u3068\u7d61\u307f\u305f\u3044!! \u8ab0\u3067\u3082Follow me!!! \u2800\u2800\u2800 HarryPotter\u3082\u597d\u304d\u3067\u3059( \u02ca\u1d55\u02cb* ) Draco\u63a8\u3057 :)","protected":false,"verified":false,"followers_count":298,"friends_count":296,"listed_count":4,"favourites_count":2966,"statuses_count":3178,"created_at":"Fri Jul 24 15:06:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662991593650032640\/4nIWQGXO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662991593650032640\/4nIWQGXO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290159215\/1447073227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Mar 14 01:35:47 +0000 2015","id":576557300564946944,"id_str":"576557300564946944","text":"\u3053\u306e\u30ca\u30a4\u30eb\u30e4\u30d0\u30a4\u2661\u2661\n\n #RT\u304f\u308c\u305fDir\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc \n\nhttps:\/\/t.co\/a9mPZPjtp5","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3043467414,"id_str":"3043467414","name":"\u2741Ami\u2741","screen_name":"ami20030325","location":"Japan\uff3fKyoto","url":null,"description":"OneDirection\/BarsAndMelody\/DaddySaid2\/ArianaGrande\/5SOS\/DCS\/TheVamps\/R5\/\u6d0b\u697d\/America\u2708\ufe0e\/Big love:)\u25bcOTRAtour\u261e\u4eac\u30bb\u30e92.24\u53c2\u6226\u6e08\u307f\u25b2Plz follow me. \u2468\u2468\uff05FB:)#JapaneseDir\uff3f#Bambino","protected":false,"verified":false,"followers_count":1287,"friends_count":1999,"listed_count":5,"favourites_count":2043,"statuses_count":5310,"created_at":"Thu Feb 26 13:14:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663289765798674433\/2pmLqahl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663289765798674433\/2pmLqahl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3043467414\/1446975035","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":784,"favorite_count":630,"entities":{"hashtags":[{"text":"RT\u304f\u308c\u305fDir\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[13,31]}],"urls":[{"url":"https:\/\/t.co\/a9mPZPjtp5","expanded_url":"https:\/\/vine.co\/v\/O9d9iHzxWBE","display_url":"vine.co\/v\/O9d9iHzxWBE","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u304f\u308c\u305fDir\u3055\u3093\u306f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[30,48]}],"urls":[{"url":"https:\/\/t.co\/a9mPZPjtp5","expanded_url":"https:\/\/vine.co\/v\/O9d9iHzxWBE","display_url":"vine.co\/v\/O9d9iHzxWBE","indices":[51,74]}],"user_mentions":[{"screen_name":"ami20030325","name":"\u2741Ami\u2741","id":3043467414,"id_str":"3043467414","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924297728,"id_str":"663728055924297728","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/QI3Cyvtpe1","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":283277130,"id_str":"283277130","name":"Karina","screen_name":"itskarrrina","location":null,"url":null,"description":"|17| Bay Area","protected":false,"verified":false,"followers_count":221,"friends_count":455,"listed_count":1,"favourites_count":2306,"statuses_count":3266,"created_at":"Sat Apr 16 23:56:37 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108745068\/7f84017a8b3e1846ada627c25b7972e9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108745068\/7f84017a8b3e1846ada627c25b7972e9.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662508317470650368\/vOigVIpb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662508317470650368\/vOigVIpb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283277130\/1446514037","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QI3Cyvtpe1","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924293633,"id_str":"663728055924293633","text":"Blud where is my COD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396071643,"id_str":"396071643","name":"JSell","screen_name":"JoshSell","location":"Essex","url":null,"description":"Snapchat; josh-sell | IG: joshy_sell","protected":false,"verified":false,"followers_count":617,"friends_count":511,"listed_count":1,"favourites_count":4057,"statuses_count":19640,"created_at":"Sat Oct 22 18:06:14 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/352279571\/trains.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/352279571\/trains.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644249787601129472\/OJw-2bLd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644249787601129472\/OJw-2bLd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396071643\/1422302873","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055936876544,"id_str":"663728055936876544","text":"\u6700\u8fd1\u30d1\u30ba\u30c9\u30e9\u306e\u30e2\u30c1\u30d9\u8584\u3044\u304b\u3089\u65b0\u3057\u3044pt\u4f5c\u308d\u3046\u3068\u3001\u3068\u308a\u3042\u3048\u305a\u899a\u9192\u30b5\u30af\u30e4\u4f5c\u3063\u305f\u3051\u3069\u3001\u306f\u3066\u3069\u3046\u3057\u3088\u3046\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623866894,"id_str":"623866894","name":"\u307b\u306e\u307c\u3093\/\u307b\u306e\u304b@\u30c4\u30ca","screen_name":"blue_hollyhock_","location":"\uff3c\u57fc\u2606\u7389\uff0f","url":null,"description":"TCG\/\u3051\u3082\u7740\u3050\u57a2\u30022014.10.20\u306b\u4e09\u6bdb\u732b\u306e\u30c4\u30ca\u3092\u304a\u8fce\u3048\u3002\u4e16\u9593\u8a71\u3001\u30b1\u30e2\u30ce\u3055\u3093\u8a71\u3001\u30b2\u30fc\u30e0\u306e\u8a71\u3068\u304b\u545f\u304d\u307e\u3059\u3002 \u30a2\u30a4\u30b3\u30f3\u306f@migihazure\u6c0f\u3088\u308a\u3002\u597d\u304d\u306a\u3082\u306e\u2192WS(TCG)\/\u30d0\u30c7\u30a3\/maimai\/RO\/\u3051\u3082\u7740\u3050 \u203b\u611a\u75f4\u57a2\u4e00\u5fdc\u3042\u308a\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u7387\u60aa\u3044\u3067\u3059\u3002\u9762\u5012\u304f\u3055\u304c\u308a\u306a\u3060\u3051\u3002 \u203b\u4e2d\u8eab\u306f\u7537\u3067\u3059\u3088\u3002","protected":false,"verified":false,"followers_count":446,"friends_count":395,"listed_count":22,"favourites_count":442,"statuses_count":41120,"created_at":"Sun Jul 01 15:58:38 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616033947990888448\/XZlcW4Ea_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616033947990888448\/XZlcW4Ea_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623866894\/1414584345","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074663"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924322304,"id_str":"663728055924322304","text":"This man BJP MP Shatrughan Sinha is not new to back stabbing , THERE was time when this thankless opportunist even took on Mr. Amitabh .","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150969245,"id_str":"150969245","name":"Rainbow","screen_name":"pervadepeace","location":"Here !","url":"http:\/\/rainisbowing.wordpress.com","description":"A learner ...","protected":false,"verified":false,"followers_count":121,"friends_count":131,"listed_count":1,"favourites_count":93,"statuses_count":2842,"created_at":"Wed Jun 02 08:16:28 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456425361375363072\/NsSmULPR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456425361375363072\/NsSmULPR.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569484431241383936\/mKKSWupT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569484431241383936\/mKKSWupT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150969245\/1427428509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928549376,"id_str":"663728055928549376","text":"@HCVPrikako \u660e\u65e5\u3044\u304f\u3088\u30fc\u3046\uff01\ud83d\udc93 \u4f1a\u3048\u308b\u306e\u305f\u306e\u3057\u307f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3012368210,"in_reply_to_user_id_str":"3012368210","in_reply_to_screen_name":"HCVPrikako","user":{"id":2275327062,"id_str":"2275327062","name":"\u2661\u2661\u2661","screen_name":"KoyamaKk","location":null,"url":null,"description":"\u308a\u304b\u3074\u3061\u3083\u3093\u5c02\u7528\u2661\u2661\u2661 @HCVPrikako \u30ea\u30d7\u57a2","protected":false,"verified":false,"followers_count":4,"friends_count":6,"listed_count":0,"favourites_count":19,"statuses_count":64,"created_at":"Sat Jan 04 01:01:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661603561034268672\/JSYTAYkL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661603561034268672\/JSYTAYkL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275327062\/1446546935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HCVPrikako","name":"\u308a\u304b\u3074 \u27b3\u2661","id":3012368210,"id_str":"3012368210","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928537088,"id_str":"663728055928537088","text":"@HV_NeedJuhee @TheFact_JJ \uc640 \uca50\ub2e4 \uc5b4\ub5a1\ud558\uc9c0 \uc880 \uc0dd\uac01\ud574\ubcf4\uace0 \uc62c\uac8c\uc694~~~","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727618093481984,"in_reply_to_status_id_str":"663727618093481984","in_reply_to_user_id":1136557170,"in_reply_to_user_id_str":"1136557170","in_reply_to_screen_name":"HV_NeedJuhee","user":{"id":2286350352,"id_str":"2286350352","name":"\u3147\u3163\u314c\u3150\u3147\u315b\u3147","screen_name":"maaaaaaargaret","location":null,"url":null,"description":"\u3147\u3147","protected":false,"verified":false,"followers_count":191,"friends_count":266,"listed_count":1,"favourites_count":63,"statuses_count":90482,"created_at":"Sat Jan 11 09:14:33 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599206346211241984\/5nw2eRlJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599206346211241984\/5nw2eRlJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2286350352\/1428325694","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HV_NeedJuhee","name":"\uc8fc\ud76c\uac00\ud544\uc694\ud574~\u2764\ufe0f","id":1136557170,"id_str":"1136557170","indices":[0,13]},{"screen_name":"TheFact_JJ","name":"\uc9c0\uc8fc","id":468106321,"id_str":"468106321","indices":[14,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055915929601,"id_str":"663728055915929601","text":"@____NU Four Seasons of\u306a\u3093\u3061\u3083\u3089FULL D14","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/wakamesoba98\/sobacha\" rel=\"nofollow\"\u003eSobaCha\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727954396971008,"in_reply_to_status_id_str":"663727954396971008","in_reply_to_user_id":127883118,"in_reply_to_user_id_str":"127883118","in_reply_to_screen_name":"____NU","user":{"id":7449402,"id_str":"7449402","name":"\u30c1\u30e3\u30ea\u30aa\u30c3\u30c8\u30de\u30f3\u6c99\u7406\u5948P","screen_name":"bicycle_man","location":"Nagoya","url":"http:\/\/twpf.jp\/bicycle_man","description":"\u5b66\u751f\u3057\u3066\u307e\u3059\u3001\u6700\u8fd1PIU\u3068DDR\u3084\u3063\u3066\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":1871,"friends_count":1768,"listed_count":231,"favourites_count":87546,"statuses_count":300633,"created_at":"Fri Jul 13 09:47:01 +0000 2007","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/24791456\/060810_02.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/24791456\/060810_02.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660666364877647874\/xJ4z0w27_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660666364877647874\/xJ4z0w27_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/7449402\/1442502540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"____NU","name":"\u306c","id":127883118,"id_str":"127883118","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074658"} +{"delete":{"status":{"id":662918274246569984,"id_str":"662918274246569984","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447080074757"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055924330496,"id_str":"663728055924330496","text":"@xktae89 \u0e23\u0e2d\u0e19\u0e32\u0e19\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19\u0e01\u0e47\u0e23\u0e2d\u0e14\u0e49\u0e32\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663279122341232640,"in_reply_to_status_id_str":"663279122341232640","in_reply_to_user_id":3227113128,"in_reply_to_user_id_str":"3227113128","in_reply_to_screen_name":"xktae89","user":{"id":2825735011,"id_str":"2825735011","name":"\u0e08\u0e07\u0e40\u0e2d\u0e49\u0e32\u0e17\u0e4c\u0e23\u0e31\u0e01\u0e04\u0e27\u0e2d\u0e19\u0e0b\u0e39\u0e2d\u0e32","screen_name":"kaifapx_","location":"OPEN - 220957","url":null,"description":"\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e23\u0e31\u0e01\u0e2b\u0e21\u0e32 #fapfambridgestreetsline","protected":false,"verified":false,"followers_count":1433,"friends_count":926,"listed_count":6,"favourites_count":619,"statuses_count":94861,"created_at":"Mon Sep 22 05:56:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF9F4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630374470193037313\/zahhw5YG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630374470193037313\/zahhw5YG.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647362905688555520\/sVFZuL67_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647362905688555520\/sVFZuL67_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2825735011\/1411366659","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xktae89","name":"\u0e1f\u0e23\u0e31\u0e4a\u0e07","id":3227113128,"id_str":"3227113128","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080074660"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055936880640,"id_str":"663728055936880640","text":"@KanbaraIs \u30ea\u30a2\u5145\u6ec5\u3079\u306f\u4e0d\u6ec5\u3060","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727790731071488,"in_reply_to_status_id_str":"663727790731071488","in_reply_to_user_id":3248009635,"in_reply_to_user_id_str":"3248009635","in_reply_to_screen_name":"KanbaraIs","user":{"id":2342953772,"id_str":"2342953772","name":"\u3053\u305f\u3059\u3060\u3051\u306e\u3066\u3063\u3057\u3087\u3046","screen_name":"CorkscrewGno","location":"\u83ef\u706b","url":null,"description":"\u9032\u6483\u306e\u6226\u5834\u3068\u30d6\u30ec\u30bd\u30eb\u3068glee Forever\u3084\u3063\u3066\u307e\u3059\u3002\u30c1\u30fc\u30e0\u306e\u5f79\u8077\u306f\u5143\u7dcf\u5e25\u2192\u7dcf\u52d9\u2192\u9732\u51fa\u72c2\u3092\u7d4c\u3066\u73fe\u5728\u4e0b\u7740\u6ce5\u68d2\u3068\u3001\u51fa\u4e16\u8857\u9053\u307e\u3063\u3057\u3050\u3089\u3067\u3059\u3002\u3066\u3059\u3086\u30fc\u3068\u304b\u3066\u3063\u3057\u3085\u30fc\u3068\u304b\u3086\u308f\u308c\u307e\u3059\u304c\u9055\u3044\u307e\u3059\u3002\u306a\u3093\u3060\u304b\u5206\u304b\u3093\u306a\u3044\u4eba\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":157,"friends_count":129,"listed_count":7,"favourites_count":2221,"statuses_count":8374,"created_at":"Fri Feb 14 02:47:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623455394069753856\/NuHrCJ0d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623455394069753856\/NuHrCJ0d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2342953772\/1407949320","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KanbaraIs","name":"\u98ef\u80fd@\u30c1\u30e3\u30c3\u30d4\u30fc\/\u30c1\u30fc\u30e0\u3010\u30ea\u30a2\u5145\u6ec5\u3079\u3011","id":3248009635,"id_str":"3248009635","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074663"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055936946176,"id_str":"663728055936946176","text":"#SiYoFueraTu Rajoy recurre ante el TC: \u00abEl Gobierno no va a permitir que esto contin\u00fae\u00bb... https:\/\/t.co\/hCEaxmzub1 https:\/\/t.co\/tSDDvVlmPJ","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2715470311,"id_str":"2715470311","name":"Ana Maria","screen_name":"Anajenny6","location":null,"url":null,"description":"so\u00f1ar no cuesta nada y a mi me gusta so\u00f1ar","protected":false,"verified":false,"followers_count":376,"friends_count":2,"listed_count":32,"favourites_count":0,"statuses_count":188396,"created_at":"Thu Aug 07 22:02:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497504150314184704\/_htcNMwc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497504150314184704\/_htcNMwc_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SiYoFueraTu","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/hCEaxmzub1","expanded_url":"http:\/\/bit.ly\/1Sc7N75","display_url":"bit.ly\/1Sc7N75","indices":[91,114]},{"url":"https:\/\/t.co\/tSDDvVlmPJ","expanded_url":"http:\/\/youtu.be\/-cBWNddyHyY","display_url":"youtu.be\/-cBWNddyHyY","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074663"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055945302016,"id_str":"663728055945302016","text":"RT @beingdevil7: @The_SalmanKhan @I_am_Rangil #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":941477294,"id_str":"941477294","name":"Salman's Red Pathani","screen_name":"I_am_Rangil","location":null,"url":null,"description":"I don wanna be a Product of my Environment.. I want my Environment to be a Product of me.","protected":false,"verified":false,"followers_count":2335,"friends_count":89,"listed_count":11,"favourites_count":13290,"statuses_count":84477,"created_at":"Sun Nov 11 14:57:14 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175870583\/Ig3E3GDB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175870583\/Ig3E3GDB.jpeg","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662207886957768704\/c32JHOjp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662207886957768704\/c32JHOjp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/941477294\/1407955514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:30 +0000 2015","id":663724598022832128,"id_str":"663724598022832128","text":"@The_SalmanKhan @I_am_Rangil #DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724267117285377,"in_reply_to_status_id_str":"663724267117285377","in_reply_to_user_id":437054383,"in_reply_to_user_id_str":"437054383","in_reply_to_screen_name":"The_SalmanKhan","user":{"id":272399169,"id_str":"272399169","name":"#PRDP 12th NOV","screen_name":"beingdevil7","location":"india","url":null,"description":"D\u0268e hard fa\u0438 of @beingsalmankhan dream to meet him || Bo\u029f\u029f\u028f\u0270oo\u0500 & Cricket Lover || http:\/\/instagram.com\/being_tiger1\/","protected":false,"verified":false,"followers_count":1365,"friends_count":289,"listed_count":15,"favourites_count":16860,"statuses_count":35957,"created_at":"Sat Mar 26 12:42:29 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497277616215175168\/OKqmps_I.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497277616215175168\/OKqmps_I.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663361502372610048\/wfp4rL3f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663361502372610048\/wfp4rL3f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272399169\/1436867629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[29,51]}],"urls":[],"user_mentions":[{"screen_name":"The_SalmanKhan","name":"Being Sunny\u2122","id":437054383,"id_str":"437054383","indices":[0,15]},{"screen_name":"I_am_Rangil","name":"Salman's Red Pathani","id":941477294,"id_str":"941477294","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[46,68]}],"urls":[],"user_mentions":[{"screen_name":"beingdevil7","name":"#PRDP 12th NOV","id":272399169,"id_str":"272399169","indices":[3,15]},{"screen_name":"The_SalmanKhan","name":"Being Sunny\u2122","id":437054383,"id_str":"437054383","indices":[17,32]},{"screen_name":"I_am_Rangil","name":"Salman's Red Pathani","id":941477294,"id_str":"941477294","indices":[33,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080074665"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055920144384,"id_str":"663728055920144384","text":"Google presenta TensorFlow, su sistema opensource de aprendizaje autom\u00e1tico: \nDetr\u00e1s de las accion... https:\/\/t.co\/f3tKglHrdg @wwwhatsnew","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18238295,"id_str":"18238295","name":"Muela","screen_name":"muela_tv","location":"Espa\u00f1a","url":null,"description":"Entre la tecnolog\u00eda y la actualidad","protected":false,"verified":false,"followers_count":65,"friends_count":339,"listed_count":7,"favourites_count":16,"statuses_count":6925,"created_at":"Fri Dec 19 08:44:29 +0000 2008","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559735253728636930\/h_B8ZAN_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559735253728636930\/h_B8ZAN_.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544279700516773891\/06Y5yawp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544279700516773891\/06Y5yawp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18238295\/1422285849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f3tKglHrdg","expanded_url":"http:\/\/bit.ly\/1Sc8RYt","display_url":"bit.ly\/1Sc8RYt","indices":[102,125]}],"user_mentions":[{"screen_name":"wwwhatsnew","name":"WWWhatsnew","id":1636821,"id_str":"1636821","indices":[126,137]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080074659"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928487936,"id_str":"663728055928487936","text":"@papyu_m \n\u304a\u8fce\u3048\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2764\ufe0e\n\u308f\u305f\u3057\u3082\u5343\u7530\u62c5\u521d\u306a\u306e\u3067\u5b09\u3057\u3044\u3067\u3059(\uff61\u2202\u03c9\u2202\uff61)\ud83d\udc93 DM\u958b\u653e\u3057\u3066\u3044\u308b\u306e\u3067\u305d\u3061\u3089\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff3c(^o^)\uff0f\ud83d\ude0b\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663676255569448962,"in_reply_to_status_id_str":"663676255569448962","in_reply_to_user_id":3694152734,"in_reply_to_user_id_str":"3694152734","in_reply_to_screen_name":"papyu_m","user":{"id":2865078180,"id_str":"2865078180","name":"\u2661\u68ee\u7d99 \u4eae\u592a\u2661","screen_name":"tag__tagM","location":null,"url":null,"description":"\u68ee\u7d99\u62c5\u5b89\u5b9a\u3044\u306a\u3044\u65b9\u305c\u3072\u2661\u2661","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":385,"created_at":"Sun Oct 19 14:10:25 +0000 2014","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645278069758930944\/LK6KIzuw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645278069758930944\/LK6KIzuw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2865078180\/1446816045","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"papyu_m","name":"\u2661\u5343\u7530\u4eac\u5e73\u2661","id":3694152734,"id_str":"3694152734","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074661"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055936901120,"id_str":"663728055936901120","text":"@rorihoi @peach115momotan \u304a\u3044\u3067\u306a\u3059\u3063\u305f\u308f\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727413273083904,"in_reply_to_status_id_str":"663727413273083904","in_reply_to_user_id":76897286,"in_reply_to_user_id_str":"76897286","in_reply_to_screen_name":"rorihoi","user":{"id":159476805,"id_str":"159476805","name":"\u7483\u83dc@14\u65e5\u30df\u30ad\u30b7\u30de\u30c3\u30af\u30b9","screen_name":"rina_Scarlet","location":"\u8328\u57ce","url":null,"description":"\uff0a\u30c1\u30e3\u30e9\u30a2\u30cb\u30ac\u30fc\u30eb\u30ba\uff0a \u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc \u597d\u304d\u306a\u7269 \u30a2\u30f3\u30c6\u30a3\u30c3\u30af\uff70\u73c8\u7432\u5e97\uff70 \u4e8c\u30b3\u30cb\u30b3\u52d5\u753b \u8266\u3053\u308c \u30a2\u30a4\u30de\u30b9 \uff8e\uff9e\uff76\uff9b \u6771\u65b9 \u5ca1\u90e8\u502b\u592a\u90ce\u3001\u521d\u97f3\uff90\uff78\u3001\uff9a\uff90\uff98\uff71\u30fb\uff7d\uff76\uff70\uff9a\uff6f\uff84\u3001\u5c0f\u65e9\u5ddd\u51dc\u5b50\u3001 \u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u8005\u3001\u7483\u83dc\u3068\u7533\u3057\u307e\u3059\u3002 \u4eca\u306f\u30c9\u30e9\u30af\u30a810\u3067\u30e1\u30a4\u30f3\u308a\u306a\u65c5\u82b8\u4eba\u3067\u30d7\u30ec\u30a4\u4e2d\uff01\u9bd627\u5728\u4e2d\u2606","protected":false,"verified":false,"followers_count":244,"friends_count":238,"listed_count":8,"favourites_count":1084,"statuses_count":3990,"created_at":"Fri Jun 25 13:43:22 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448098896\/11188965.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448098896\/11188965.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662482898390351872\/BzEGpbRc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662482898390351872\/BzEGpbRc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159476805\/1443682198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rorihoi","name":"\u5bae\u5c3e\u9032@11\/21\u30c1\u30e3\u30e9\u30a2\u30cb","id":76897286,"id_str":"76897286","indices":[0,8]},{"screen_name":"peach115momotan","name":"\uff19\u9bd6@\u3057\u3075\u3049\u3093\u59d0\u3055\u3093","id":264081722,"id_str":"264081722","indices":[9,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074663"} +{"delete":{"status":{"id":614873352390447104,"id_str":"614873352390447104","user_id":2228087984,"user_id_str":"2228087984"},"timestamp_ms":"1447080074851"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055936876545,"id_str":"663728055936876545","text":"RT @WorldStarFunny: rt if u still dress like this https:\/\/t.co\/WsKyBxzpnC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":289127253,"id_str":"289127253","name":"Nick Ackley","screen_name":"TheAckleyShow","location":"Kingston, Ontario","url":null,"description":"Bio? Constantly Snappin necks and cashin cheques cause yolo and it might as well be the dream when that's the way she goes slim","protected":false,"verified":false,"followers_count":542,"friends_count":224,"listed_count":0,"favourites_count":5206,"statuses_count":9892,"created_at":"Thu Apr 28 02:19:41 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/823675610\/0083d2e793b4100169af9a6e8fa7f057.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/823675610\/0083d2e793b4100169af9a6e8fa7f057.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663698218639867904\/-XgRyOCU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663698218639867904\/-XgRyOCU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/289127253\/1443147858","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:15:12 +0000 2015","id":663585607751483392,"id_str":"663585607751483392","text":"rt if u still dress like this https:\/\/t.co\/WsKyBxzpnC","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1107613844,"id_str":"1107613844","name":"WORLD STAR FANS","screen_name":"WorldStarFunny","location":null,"url":null,"description":"FAN and Parody account *We Do NOT Own Any Of The Content Posted* NOT Affiliated With @WORLDSTAR or Vine! Warning:18+ content worldstarf@gmail.com","protected":false,"verified":false,"followers_count":1232060,"friends_count":392,"listed_count":833,"favourites_count":307,"statuses_count":12292,"created_at":"Sun Jan 20 23:58:06 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556999286336933891\/uMiel1CK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556999286336933891\/uMiel1CK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1107613844\/1394682602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4288,"favorite_count":2230,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663455344992088068,"id_str":"663455344992088068","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","url":"https:\/\/t.co\/WsKyBxzpnC","display_url":"pic.twitter.com\/WsKyBxzpnC","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663455348406140928\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":840,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":560,"h":840,"resize":"fit"}},"source_status_id":663455348406140928,"source_status_id_str":"663455348406140928","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"extended_entities":{"media":[{"id":663455344992088068,"id_str":"663455344992088068","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","url":"https:\/\/t.co\/WsKyBxzpnC","display_url":"pic.twitter.com\/WsKyBxzpnC","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663455348406140928\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":840,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":560,"h":840,"resize":"fit"}},"source_status_id":663455348406140928,"source_status_id_str":"663455348406140928","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WorldStarFunny","name":"WORLD STAR FANS","id":1107613844,"id_str":"1107613844","indices":[3,18]}],"symbols":[],"media":[{"id":663455344992088068,"id_str":"663455344992088068","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","url":"https:\/\/t.co\/WsKyBxzpnC","display_url":"pic.twitter.com\/WsKyBxzpnC","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663455348406140928\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":840,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":560,"h":840,"resize":"fit"}},"source_status_id":663455348406140928,"source_status_id_str":"663455348406140928","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"extended_entities":{"media":[{"id":663455344992088068,"id_str":"663455344992088068","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTURHwKWcAQQyOt.jpg","url":"https:\/\/t.co\/WsKyBxzpnC","display_url":"pic.twitter.com\/WsKyBxzpnC","expanded_url":"http:\/\/twitter.com\/WORLDSTARC0MEDY\/status\/663455348406140928\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":840,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":560,"h":840,"resize":"fit"}},"source_status_id":663455348406140928,"source_status_id_str":"663455348406140928","source_user_id":1321629762,"source_user_id_str":"1321629762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074663"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055932751873,"id_str":"663728055932751873","text":"@GROOVERS_DIVE \u8db3\u304c21.5cm\u306a\u306e\u3067\u6b32\u3057\u3044\u9774\u304c\u306a\u304b\u306a\u304b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\uff08 ; ; \uff09\u60b2\u3057\u3044\u3067\u3059\u3002\u3067\u3082\u6700\u8fd1\u306f\u30cd\u30c3\u30c8\u3067\u308f\u305f\u3057\u306e\u30b5\u30a4\u30ba\u3082\u6271\u3063\u3066\u3044\u308b\u304a\u5e97\u3092\u898b\u3064\u3051\u307e\u3057\u305f\uff01\u3042\u308a\u304c\u305f\u3044\u6642\u4ee3\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2388486679,"in_reply_to_user_id_str":"2388486679","in_reply_to_screen_name":"GROOVERS_DIVE","user":{"id":1956271782,"id_str":"1956271782","name":"\u3042\u3074","screen_name":"apinohoppe","location":null,"url":null,"description":"\u6ce8\u610f\u6563\u6f2b\u7cfb\u5c0f2\u7537\u5150\u3068\u3001\u5927\u304d\u3044\u5c11\u5e74(30)\u3068\u66ae\u3089\u3057\u3066\u3044\u308b\u9b45\u60d1\u306e\u56e3\u5730\u59bb\u306b\u306a\u308a\u304d\u308c\u306a\u3044\u3072\u3068(29)\u3002\n\u7d049\u5e74\u3076\u308a\u306e\u30de\u30bf\u30cb\u30c6\u30a3\u30fc\u30e9\u30a4\u30d5 27w\u306a\u3046\u3002 2016\/02\/06 \u7537\u306e\u5b50 \u4e88\u5b9a\uff0a\n\n\u30d5\u30a9\u30ed\u30fc\u30fb\u30ea\u30e0\u30fc\u30d6\u30fb\u30df\u30e5\u30fc\u30c8\u30fb\u30d6\u30ed\u30c3\u30af\u7b49\u3054\u81ea\u7531\u306b\u25ce","protected":false,"verified":false,"followers_count":140,"friends_count":300,"listed_count":0,"favourites_count":6099,"statuses_count":2961,"created_at":"Sat Oct 12 10:10:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663710338487943168\/pkmt70I8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663710338487943168\/pkmt70I8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1956271782\/1445536880","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GROOVERS_DIVE","name":"Groover's Dive","id":2388486679,"id_str":"2388486679","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074662"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911710720,"id_str":"663728055911710720","text":"\u30d6\u30ed\u30c3\u30b3\u30ea\u30fc\u30da\u30ed\u30da\u30ed https:\/\/t.co\/LTrq2sRWaB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2470201429,"id_str":"2470201429","name":"\u81ea\u4e3b\u898f\u5236(\u59b9)","screen_name":"kasakikuro","location":"\u51a5\u738b\u661f","url":"http:\/\/twpf.jp\/kasakikuro","description":"\u85ac\u7814\u541b\u3068\u4e09\u65e5\u6708\u3055\u3093\u306e\u304a\u8fce\u3048\u5f85\u3061","protected":false,"verified":false,"followers_count":4444,"friends_count":3893,"listed_count":42,"favourites_count":40840,"statuses_count":30897,"created_at":"Wed Apr 30 02:09:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661547856252157952\/NIPs3YCX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661547856252157952\/NIPs3YCX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2470201429\/1421895172","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728026245464064,"id_str":"663728026245464064","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJH4_VAAAahdY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJH4_VAAAahdY.jpg","url":"https:\/\/t.co\/LTrq2sRWaB","display_url":"pic.twitter.com\/LTrq2sRWaB","expanded_url":"http:\/\/twitter.com\/kasakikuro\/status\/663728055911710720\/photo\/1","type":"photo","sizes":{"large":{"w":768,"h":768,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728026245464064,"id_str":"663728026245464064","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJH4_VAAAahdY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJH4_VAAAahdY.jpg","url":"https:\/\/t.co\/LTrq2sRWaB","display_url":"pic.twitter.com\/LTrq2sRWaB","expanded_url":"http:\/\/twitter.com\/kasakikuro\/status\/663728055911710720\/photo\/1","type":"photo","sizes":{"large":{"w":768,"h":768,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080074657"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055949524992,"id_str":"663728055949524992","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/T2p5vvnRXQ","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":449399427,"id_str":"449399427","name":"Chanae","screen_name":"NAE_BANDZ_ON","location":"GODS HANDS","url":null,"description":"Model status......still a bad fly chick...#teammommy..","protected":false,"verified":false,"followers_count":160,"friends_count":104,"listed_count":1,"favourites_count":1,"statuses_count":2204,"created_at":"Thu Dec 29 02:38:54 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1752333789\/profile_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1752333789\/profile_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T2p5vvnRXQ","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074666"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055911862272,"id_str":"663728055911862272","text":"What inspires you? What makes your heart sing? What can you do this week to make it a reflection of your best self? What's stopping you?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2451711374,"id_str":"2451711374","name":"Journeying Soul","screen_name":"Journeying_Soul","location":"Essex, UK","url":"http:\/\/www.journeyingsoul.com","description":"Bespoke Ceremonies, Spiritual Coaching & Counselling, Personal Development and Wellbeing Workshops and more. For those of any faith or spiritual path, or none.","protected":false,"verified":false,"followers_count":180,"friends_count":275,"listed_count":5,"favourites_count":47,"statuses_count":1373,"created_at":"Fri Apr 18 17:26:36 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462616741172895745\/fTfwH0cG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462616741172895745\/fTfwH0cG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2451711374\/1397854044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080074657"} +{"delete":{"status":{"id":644628403455328256,"id_str":"644628403455328256","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080074984"}} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055949463552,"id_str":"663728055949463552","text":"RT @dotojambo: @MnetMAMA \ubc30\ud305 \uc628 \uc720 \uae40\uc131\uaddc \uc7a5\ub3d9\uc6b0 \ub0a8\uc6b0\ud604 \uc774\ud638\uc6d0 #\ubc30\ub4dc \ubc30\ud305 \uc628 \uc720 \uc774\uc131\uc5f4 \uae40\uba85\uc218 \uc774\uc131\uc885 #\uc778\ud53c\ub2c8\ud2b8 \ub2e4\uc2dc \ucc28\uac00\uc6cc\uc9c4 \ub208\ube5b #INFINITE \ub0a0\uce74\ub85c\uc6b4 \ub124 \ud600\ub05d\uc774 #BAD \ub0a0 \ud30c\uace0\ub4e4\uc5b4 #2015MAMA \uc81c\ubc1c \uba48\ucdb0\uc918 \ub354\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":497813310,"id_str":"497813310","name":"[\ubc18\ub3d9\uacb0]\uc778\ud53c\ub2c8\ud2b8\ub294\ub0a8\ub2ec\ub77c","screen_name":"lje_0319","location":"\uc778\ud53c\ub2c8\ud2b8","url":null,"description":"2011.09.01~ing 15\uc6b0\uc62c\uc218\ub2c8","protected":false,"verified":false,"followers_count":69,"friends_count":366,"listed_count":1,"favourites_count":258,"statuses_count":5574,"created_at":"Mon Feb 20 11:42:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657915788456648704\/V5aAn0va_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657915788456648704\/V5aAn0va_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/497813310\/1442159002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727946658525184,"id_str":"663727946658525184","text":"@MnetMAMA \ubc30\ud305 \uc628 \uc720 \uae40\uc131\uaddc \uc7a5\ub3d9\uc6b0 \ub0a8\uc6b0\ud604 \uc774\ud638\uc6d0 #\ubc30\ub4dc \ubc30\ud305 \uc628 \uc720 \uc774\uc131\uc5f4 \uae40\uba85\uc218 \uc774\uc131\uc885 #\uc778\ud53c\ub2c8\ud2b8 \ub2e4\uc2dc \ucc28\uac00\uc6cc\uc9c4 \ub208\ube5b #INFINITE \ub0a0\uce74\ub85c\uc6b4 \ub124 \ud600\ub05d\uc774 #BAD \ub0a0 \ud30c\uace0\ub4e4\uc5b4 #2015MAMA \uc81c\ubc1c \uba48\ucdb0\uc918 \ub354\ub294 \uacac\ub51c\uc218\uc5c6\uc5b4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":128487133,"in_reply_to_user_id_str":"128487133","in_reply_to_screen_name":"MnetMAMA","user":{"id":2938001982,"id_str":"2938001982","name":"\u2765\ub0ad\uc790","screen_name":"dotojambo","location":null,"url":null,"description":"\ubcf5\uc138\ud3b8\uc0b4","protected":false,"verified":false,"followers_count":3337,"friends_count":55,"listed_count":3,"favourites_count":18,"statuses_count":372,"created_at":"Sun Dec 21 10:47:50 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658297347143630848\/2Qrilf1c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658297347143630848\/2Qrilf1c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938001982\/1446021545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\ubc30\ub4dc","indices":[33,36]},{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[56,61]},{"text":"INFINITE","indices":[73,82]},{"text":"BAD","indices":[94,98]},{"text":"2015MAMA","indices":[106,115]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ubc30\ub4dc","indices":[48,51]},{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[71,76]},{"text":"INFINITE","indices":[88,97]},{"text":"BAD","indices":[109,113]},{"text":"2015MAMA","indices":[121,130]}],"urls":[],"user_mentions":[{"screen_name":"dotojambo","name":"\u2765\ub0ad\uc790","id":2938001982,"id_str":"2938001982","indices":[3,13]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080074666"} +{"created_at":"Mon Nov 09 14:41:14 +0000 2015","id":663728055928557568,"id_str":"663728055928557568","text":"songong emang, ngambil2 aja \"mingyugifs: Wonwoo's face when Mingyu stole the mic lmao https:\/\/t.co\/DKHESXwcSe\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1519462957,"id_str":"1519462957","name":"wonu","screen_name":"beaniekid_","location":"YC SVTSQ SVTN117","url":null,"description":"17's Jeon WonWoo Fake Account || known as MR. BEANIE || '96kid","protected":false,"verified":false,"followers_count":2080,"friends_count":2133,"listed_count":2,"favourites_count":958,"statuses_count":27745,"created_at":"Sat Jun 15 13:42:14 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436471579732504577\/-mxz1dK4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436471579732504577\/-mxz1dK4.png","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716224442875904\/OZz6MDQ6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716224442875904\/OZz6MDQ6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1519462957\/1447077250","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662614812149481472,"id_str":"662614812149481472","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTIUqTUVAAAv06D.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTIUqTUVAAAv06D.png","url":"https:\/\/t.co\/DKHESXwcSe","display_url":"pic.twitter.com\/DKHESXwcSe","expanded_url":"http:\/\/twitter.com\/mingyugifs\/status\/662614904390549505\/photo\/1","type":"photo","sizes":{"large":{"w":268,"h":288,"resize":"fit"},"small":{"w":268,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":288,"resize":"fit"}},"source_status_id":662614904390549505,"source_status_id_str":"662614904390549505","source_user_id":3247687286,"source_user_id_str":"3247687286"}]},"extended_entities":{"media":[{"id":662614812149481472,"id_str":"662614812149481472","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTIUqTUVAAAv06D.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTIUqTUVAAAv06D.png","url":"https:\/\/t.co\/DKHESXwcSe","display_url":"pic.twitter.com\/DKHESXwcSe","expanded_url":"http:\/\/twitter.com\/mingyugifs\/status\/662614904390549505\/photo\/1","type":"animated_gif","sizes":{"large":{"w":268,"h":288,"resize":"fit"},"small":{"w":268,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":288,"resize":"fit"}},"source_status_id":662614904390549505,"source_status_id_str":"662614904390549505","source_user_id":3247687286,"source_user_id_str":"3247687286","video_info":{"aspect_ratio":[67,72],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTIUqTUVAAAv06D.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080074661"} +{"delete":{"status":{"id":661178724411289600,"id_str":"661178724411289600","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080075039"}} +{"delete":{"status":{"id":639991692658102272,"id_str":"639991692658102272","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080075092"}} +{"delete":{"status":{"id":663578537375498240,"id_str":"663578537375498240","user_id":883678904,"user_id_str":"883678904"},"timestamp_ms":"1447080075271"}} +{"delete":{"status":{"id":663723693835579392,"id_str":"663723693835579392","user_id":3247780933,"user_id_str":"3247780933"},"timestamp_ms":"1447080075616"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118786048,"id_str":"663728060118786048","text":"RT @john__daniel: starting my morning w 21 savage. let's see where this takes me today","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157046681,"id_str":"157046681","name":"tradey","screen_name":"TradeyStunna","location":"hell city virginia ","url":"https:\/\/soundcloud.com\/tradeystunna\/sets\/tradeystunna-stunna-season-2","description":"#STUNNASEASON @STUNNASEASON tradeystunna@gmail.com NEW EP STUNNA SEASON 2 https:\/\/soundcloud.com\/tradeystunna\/sets\/tradeystunna-stunna-season-2","protected":false,"verified":false,"followers_count":1460,"friends_count":717,"listed_count":6,"favourites_count":15733,"statuses_count":22701,"created_at":"Fri Jun 18 18:01:00 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000098801564\/fcdc0d501e1e905e52df008e1b20062a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000098801564\/fcdc0d501e1e905e52df008e1b20062a.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663162876564254720\/uVNYDOhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663162876564254720\/uVNYDOhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/157046681\/1446945157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:51 +0000 2015","id":663719152335515648,"id_str":"663719152335515648","text":"starting my morning w 21 savage. let's see where this takes me today","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24240635,"id_str":"24240635","name":"SAMEFLANNEL","screen_name":"john__daniel","location":"MN","url":"https:\/\/soundcloud.com\/sameflannel","description":"left life \u2022 @thewaxwave","protected":false,"verified":false,"followers_count":1436,"friends_count":2004,"listed_count":27,"favourites_count":44214,"statuses_count":54824,"created_at":"Fri Mar 13 20:02:54 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717855603486720\/-b9FVYI6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717855603486720\/-b9FVYI6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24240635\/1406646491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"john__daniel","name":"SAMEFLANNEL","id":24240635,"id_str":"24240635","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075660"} +{"delete":{"status":{"id":520335854149988352,"id_str":"520335854149988352","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080075646"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118757376,"id_str":"663728060118757376","text":"kathnielcecaina: supersharm26: kcmbernardoford: kcmbernardoford: win the fight. #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3835139894,"id_str":"3835139894","name":"Daniel Estrada","screen_name":"ImDanielEstrad","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":4,"listed_count":6,"favourites_count":0,"statuses_count":19008,"created_at":"Fri Oct 09 09:56:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656090500580012032\/AdWNE0Jp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656090500580012032\/AdWNE0Jp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3835139894\/1445259155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[80,100]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122943488,"id_str":"663728060122943488","text":"RT @RobertoBonafont: Algunas personas no cambian, s\u00f3lo demuestran lo que antes ocultaban.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363102449,"id_str":"363102449","name":"Jona Mosquera","screen_name":"JonaMosquera7","location":"Guayaquil","url":null,"description":"My daughter , My family, Soccer \u26bd & Piano !! This's my passion!! My true love!!","protected":false,"verified":false,"followers_count":184,"friends_count":291,"listed_count":1,"favourites_count":529,"statuses_count":5815,"created_at":"Sat Aug 27 14:46:58 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"080505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000074517073\/2eb9b111b8997328bbf3c099c8b9f2e2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000074517073\/2eb9b111b8997328bbf3c099c8b9f2e2.jpeg","profile_background_tile":false,"profile_link_color":"1111D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656098755515686912\/ZOp43so__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656098755515686912\/ZOp43so__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363102449\/1438450220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:33 +0000 2015","id":663714291980349440,"id_str":"663714291980349440","text":"Algunas personas no cambian, s\u00f3lo demuestran lo que antes ocultaban.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175114792,"id_str":"175114792","name":"Roberto Bonafont","screen_name":"RobertoBonafont","location":null,"url":"http:\/\/robertobonafont.blogspot.com","description":"Twitter oficial del Ab. Roberto Bonafont","protected":false,"verified":false,"followers_count":399621,"friends_count":358,"listed_count":990,"favourites_count":8071,"statuses_count":132043,"created_at":"Thu Aug 05 17:40:22 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582919174365806592\/3_759Nqz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582919174365806592\/3_759Nqz_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RobertoBonafont","name":"Roberto Bonafont","id":175114792,"id_str":"175114792","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110360576,"id_str":"663728060110360576","text":"Weather for Pak 24h:09\/11\/2015:\n\nISB+20c\/+12c\/Partly cloudy:\n\nKHI+31c\/+20c\/Clear:\n\nPSHWR+20c\/+13c\/Mostly cloudy:\n\nSWAT+12c\/+1c\/Cloudy:","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1516952300,"id_str":"1516952300","name":"ROZANA_URDU_NEWS","screen_name":"ROZANA_NEWS","location":"BANNU-PAKISTAN","url":"http:\/\/www.ROZANA_NEWS.twitter.com","description":"THE LATEST URDU BREAKING NEWS","protected":false,"verified":false,"followers_count":149,"friends_count":0,"listed_count":8,"favourites_count":0,"statuses_count":15457,"created_at":"Fri Jun 14 16:41:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635419805600735232\/nzq6fNVF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635419805600735232\/nzq6fNVF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110405632,"id_str":"663728060110405632","text":"RT @GoneToSpace: But know the real meaning","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353477839,"id_str":"353477839","name":"Zaddie","screen_name":"_Padillaaa_","location":null,"url":null,"description":"- Ig - Zpadillaaa","protected":false,"verified":false,"followers_count":482,"friends_count":697,"listed_count":0,"favourites_count":236,"statuses_count":16111,"created_at":"Fri Aug 12 04:01:49 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657508535501234176\/937_3Y_b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657508535501234176\/937_3Y_b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353477839\/1446116081","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:24:37 +0000 2015","id":663693674816151552,"id_str":"663693674816151552","text":"But know the real meaning","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474202477,"id_str":"474202477","name":"Kelvin DM","screen_name":"GoneToSpace","location":null,"url":null,"description":"I'm in this point of my life, important point of my life I'm in this part of my life, that I don't really have time.. #GuOp.. A&N","protected":false,"verified":false,"followers_count":112,"friends_count":112,"listed_count":0,"favourites_count":1514,"statuses_count":18746,"created_at":"Wed Jan 25 19:13:35 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639073320948887552\/GgPt4_ci_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639073320948887552\/GgPt4_ci_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474202477\/1440146467","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GoneToSpace","name":"Kelvin DM","id":474202477,"id_str":"474202477","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127166464,"id_str":"663728060127166464","text":"Falta Muito Pra Sexta \ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2950006415,"id_str":"2950006415","name":"guerreiro de f\u00e9 !","screen_name":"AraujooRobson99","location":null,"url":null,"description":"- Mais nessa vida nunca vou me abalar, no que pode acontecer ou no que pode rolar!","protected":false,"verified":false,"followers_count":476,"friends_count":369,"listed_count":0,"favourites_count":1234,"statuses_count":2681,"created_at":"Mon Dec 29 21:11:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646723250085568512\/csnIR5lN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646723250085568512\/csnIR5lN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950006415\/1444669704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139773953,"id_str":"663728060139773953","text":"@wan2_GATE \u304a\u3081\u3067\u3068\u30fc!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663697522221674496,"in_reply_to_status_id_str":"663697522221674496","in_reply_to_user_id":1543290648,"in_reply_to_user_id_str":"1543290648","in_reply_to_screen_name":"wan2_GATE","user":{"id":2564866260,"id_str":"2564866260","name":"\u30eb\u30eb\u30fc\u30b7\u30e5","screen_name":"thousandjokers","location":null,"url":null,"description":"\u5275\u795e\u5e1d\u3067\u3059\u304c\u3001\u30d7\u30ec\u30a4\u30e4\u30fc\u30b9\u30ad\u30eb\u306f100\u30ec\u30d9\u304f\u3089\u3044\u304b\u3089\u5168\u304f\u9032\u6b69\u3057\u3066\u307e\u305b\u3093\u3002\nfg\u3082\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093\u304c\u3001\n\u307e\u3042\u597d\u304d\u306a\u3068\u304d\u306b\u30d6\u30ec\u30d5\u30ed\u3057\u305f\u3089\u3044\u3044\u3058\u3083\u306a\u3044\u3068\u3044\u3046\u6700\u8fd1\u306e\u30e2\u30c1\u30d9\u3067\u3059\n\uff26\uff26\uff22\uff25\u3082\u3084\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":292,"friends_count":144,"listed_count":1,"favourites_count":777,"statuses_count":3738,"created_at":"Fri Jun 13 08:02:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662527267956899840\/a0uOJ_di_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662527267956899840\/a0uOJ_di_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2564866260\/1443450902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wan2_GATE","name":"\u308f\u3093\u308f\u30f3\uff20\u82b8\u4eba \u30a4\u30cc\u30c7\u30e5\u30ea\u30e0get","id":1543290648,"id_str":"1543290648","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139704322,"id_str":"663728060139704322","text":"some ppl have a hard time producing that energy so they need yours","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170540951,"id_str":"170540951","name":"--Y\u014dko Ono","screen_name":"MiCh3L3_h3ARt","location":"703--757","url":null,"description":"FOR ME SUCCESS IS INEVITABLE $$$ I know I'm Amazing mite even appear to be omnipotent..but only God reigns. \nIG: micheleheart\n#SPEAKS #KNOWS #GLOWS #iloveNSU","protected":false,"verified":false,"followers_count":376,"friends_count":435,"listed_count":2,"favourites_count":414,"statuses_count":10056,"created_at":"Sun Jul 25 03:26:33 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CFFAB4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000045506058\/6680eb82c5a92a48d56941166a0a2c54.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000045506058\/6680eb82c5a92a48d56941166a0a2c54.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6ABD7C","profile_text_color":"35D2A6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/511322442133151744\/Xay_LGFW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/511322442133151744\/Xay_LGFW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170540951\/1431002046","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060131315712,"id_str":"663728060131315712","text":"@fedefederossi Dire che sono fiera di voi \u00e8 davvero fin troppo poco!\n#BenjieFedeLettera","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727439957331968,"in_reply_to_status_id_str":"663727439957331968","in_reply_to_user_id":3014558284,"in_reply_to_user_id_str":"3014558284","in_reply_to_screen_name":"fedefederossi","user":{"id":1682944508,"id_str":"1682944508","name":"DREAMER |20:05|","screen_name":"strong_marika","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":81,"friends_count":292,"listed_count":0,"favourites_count":583,"statuses_count":588,"created_at":"Mon Aug 19 10:41:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067275135\/2277173cf2ff554357fad6f134fc7f79.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067275135\/2277173cf2ff554357fad6f134fc7f79.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661983587147862017\/-RMMdhFR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661983587147862017\/-RMMdhFR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1682944508\/1446654918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[69,87]}],"urls":[],"user_mentions":[{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080075663"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143923200,"id_str":"663728060143923200","text":"Por lo menos me rei un rato","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2956978360,"id_str":"2956978360","name":"Jessi y Aguss.\u2661","screen_name":"Jeeeeeeeeeeesii","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1100,"friends_count":1790,"listed_count":1,"favourites_count":5970,"statuses_count":5646,"created_at":"Fri Jan 02 17:20:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662041644905201664\/_ZaBU2G4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662041644905201664\/_ZaBU2G4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2956978360\/1435029933","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127014912,"id_str":"663728060127014912","text":"RT @cccccarre: \u0e2d\u0e22\u0e32\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e27\u0e32\u0e21\u0e42\u0e0a\u0e04\u0e14\u0e35\u0e02\u0e2d\u0e07\u0e43\u0e04\u0e23\u0e2a\u0e31\u0e01\u0e04\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":878233226,"id_str":"878233226","name":"me.","screen_name":"NK_waterrice","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":775,"friends_count":247,"listed_count":0,"favourites_count":290,"statuses_count":38448,"created_at":"Sat Oct 13 16:47:27 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663583263437418497\/8CxihYyA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663583263437418497\/8CxihYyA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878233226\/1446789836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:42:22 +0000 2015","id":663698142806700033,"id_str":"663698142806700033","text":"\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e27\u0e32\u0e21\u0e42\u0e0a\u0e04\u0e14\u0e35\u0e02\u0e2d\u0e07\u0e43\u0e04\u0e23\u0e2a\u0e31\u0e01\u0e04\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1609438543,"id_str":"1609438543","name":"\u0e41\u0e04\u0e23\u0e4c","screen_name":"cccccarre","location":null,"url":null,"description":"\u0e15\u0e31\u0e27\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27","protected":false,"verified":false,"followers_count":538,"friends_count":300,"listed_count":0,"favourites_count":1796,"statuses_count":56858,"created_at":"Sun Jul 21 01:16:56 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087362959\/869fd6b99d76245060f69fb51ccdb072.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087362959\/869fd6b99d76245060f69fb51ccdb072.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662266779687763973\/M4mm-PWJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662266779687763973\/M4mm-PWJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1609438543\/1444064566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cccccarre","name":"\u0e41\u0e04\u0e23\u0e4c","id":1609438543,"id_str":"1609438543","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139728897,"id_str":"663728060139728897","text":"RT @Iuminous: \u0627\u0644\u0644\u0647\u0645 \u0625\u0634\u0641\u064a \u0645\u0631\u0636\u0627\u0646\u0627 \u0648\u0639\u0627\u0641\u064a \u0645\u0628\u062a\u0644\u0627\u0646\u0627 \u0648\u0641\u0631\u062c \u0645\u0647\u0645\u0648\u0645\u0646\u0627\u060c \u0648\u064a\u0633\u0631 \u062f\u0631\u0648\u0628\u0646\u0627 \u0648\u0627\u0643\u0631\u0645\u0646\u0627 \u0645\u0646 \u062d\u064a\u062b\u064f \u0644\u0627 \u0646\u062d\u062a\u0633\u0628.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619888450,"id_str":"619888450","name":"\u266a","screen_name":"ivyxa_","location":"10ofOctober ","url":"http:\/\/ask.fm\/farsya_","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f- http:\/\/tvquran.com\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e\u200e - \u2665. \u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f","protected":false,"verified":false,"followers_count":1066,"friends_count":199,"listed_count":1,"favourites_count":8676,"statuses_count":81094,"created_at":"Wed Jun 27 10:49:22 +0000 2012","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631274540711084032\/Yg8Pp5s9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631274540711084032\/Yg8Pp5s9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619888450\/1423291928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:30:25 +0000 2015","id":663544139624132609,"id_str":"663544139624132609","text":"\u0627\u0644\u0644\u0647\u0645 \u0625\u0634\u0641\u064a \u0645\u0631\u0636\u0627\u0646\u0627 \u0648\u0639\u0627\u0641\u064a \u0645\u0628\u062a\u0644\u0627\u0646\u0627 \u0648\u0641\u0631\u062c \u0645\u0647\u0645\u0648\u0645\u0646\u0627\u060c \u0648\u064a\u0633\u0631 \u062f\u0631\u0648\u0628\u0646\u0627 \u0648\u0627\u0643\u0631\u0645\u0646\u0627 \u0645\u0646 \u062d\u064a\u062b\u064f \u0644\u0627 \u0646\u062d\u062a\u0633\u0628.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2593859924,"id_str":"2593859924","name":"*\u0971\u02d6\u2022.","screen_name":"Iuminous","location":"curly hair","url":"http:\/\/quran.com","description":"life has taught me that we can be happy without falling in love and the presence of friends doesn't matter. quotes, advices and gd info. bestie @yeahamshit \u2764\ufe0f.","protected":false,"verified":false,"followers_count":4946,"friends_count":815,"listed_count":1,"favourites_count":251,"statuses_count":829,"created_at":"Sat Jun 28 23:40:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717498026655744\/popUN4FV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717498026655744\/popUN4FV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2593859924\/1447041447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iuminous","name":"*\u0971\u02d6\u2022.","id":2593859924,"id_str":"2593859924","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110385153,"id_str":"663728060110385153","text":"RT @LARRY_TR0L4: No importa cuantos a\u00f1os pasen voy a seguir enamorada del solo de louis en Use Somebody.\n#4DaysUntilMITAM \n https:\/\/t.co\/xJ\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305689020,"id_str":"305689020","name":"Isis","screen_name":"Una_Farfalla_","location":"Argentina","url":null,"description":"Aguante boca caretass.-\nDirectioner, ninguno me sigue y tampoco fui a ningun concierto de ellos. -\n15 a\u00f1os","protected":false,"verified":false,"followers_count":1170,"friends_count":942,"listed_count":5,"favourites_count":7477,"statuses_count":17676,"created_at":"Thu May 26 16:50:12 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/837726130\/9d941868b92117dc8349f3109df829df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/837726130\/9d941868b92117dc8349f3109df829df.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658465022566387712\/_6Ga1uSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658465022566387712\/_6Ga1uSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305689020\/1445825336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:54:01 +0000 2015","id":663655773428428800,"id_str":"663655773428428800","text":"No importa cuantos a\u00f1os pasen voy a seguir enamorada del solo de louis en Use Somebody.\n#4DaysUntilMITAM \n https:\/\/t.co\/xJkUafiHTh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456327454,"id_str":"456327454","name":"Flor \u2661","screen_name":"LARRY_TR0L4","location":"Argentina obvio, \u00bfy vos?","url":null,"description":"16\u2652 \u26653 de Mayo \/ 1D \/\u0394+\u25b2 Larry \/Sheeran \/5H\/ Cara\u2661 Abrazar a Louis es mi objetivo en la vida. ARG.","protected":false,"verified":false,"followers_count":859,"friends_count":576,"listed_count":3,"favourites_count":335,"statuses_count":4023,"created_at":"Fri Jan 06 03:53:09 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625818134713380864\/nuB7CFT_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625818134713380864\/nuB7CFT_.jpg","profile_background_tile":true,"profile_link_color":"E943BF","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642877792267436033\/JX0J51E5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642877792267436033\/JX0J51E5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456327454\/1445985455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":67,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[88,104]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":631137703803908096,"id_str":"631137703803908096","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","url":"https:\/\/t.co\/xJkUafiHTh","display_url":"pic.twitter.com\/xJkUafiHTh","expanded_url":"http:\/\/twitter.com\/odvocals\/status\/631137920469106688\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":631137920469106688,"source_status_id_str":"631137920469106688","source_user_id":3163245989,"source_user_id_str":"3163245989"}]},"extended_entities":{"media":[{"id":631137703803908096,"id_str":"631137703803908096","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","url":"https:\/\/t.co\/xJkUafiHTh","display_url":"pic.twitter.com\/xJkUafiHTh","expanded_url":"http:\/\/twitter.com\/odvocals\/status\/631137920469106688\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":631137920469106688,"source_status_id_str":"631137920469106688","source_user_id":3163245989,"source_user_id_str":"3163245989","video_info":{"aspect_ratio":[16,9],"duration_millis":27297,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/320x180\/rqK5ZxS1k0AXNi3a.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/pl\/kXOs_9Blp6x-tts-.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/pl\/kXOs_9Blp6x-tts-.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/640x360\/30N7LSul-bTCXqEH.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/640x360\/30N7LSul-bTCXqEH.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[105,121]}],"urls":[],"user_mentions":[{"screen_name":"LARRY_TR0L4","name":"Flor \u2661","id":456327454,"id_str":"456327454","indices":[3,15]}],"symbols":[],"media":[{"id":631137703803908096,"id_str":"631137703803908096","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","url":"https:\/\/t.co\/xJkUafiHTh","display_url":"pic.twitter.com\/xJkUafiHTh","expanded_url":"http:\/\/twitter.com\/odvocals\/status\/631137920469106688\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":631137920469106688,"source_status_id_str":"631137920469106688","source_user_id":3163245989,"source_user_id_str":"3163245989"}]},"extended_entities":{"media":[{"id":631137703803908096,"id_str":"631137703803908096","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/631137703803908096\/pu\/img\/ozEVEeJbwBTf2pAu.jpg","url":"https:\/\/t.co\/xJkUafiHTh","display_url":"pic.twitter.com\/xJkUafiHTh","expanded_url":"http:\/\/twitter.com\/odvocals\/status\/631137920469106688\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":631137920469106688,"source_status_id_str":"631137920469106688","source_user_id":3163245989,"source_user_id_str":"3163245989","video_info":{"aspect_ratio":[16,9],"duration_millis":27297,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/320x180\/rqK5ZxS1k0AXNi3a.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/pl\/kXOs_9Blp6x-tts-.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/pl\/kXOs_9Blp6x-tts-.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/640x360\/30N7LSul-bTCXqEH.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/631137703803908096\/pu\/vid\/640x360\/30N7LSul-bTCXqEH.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118642688,"id_str":"663728060118642688","text":"RT @ponpon55339: \uc6c3\uace0 \uc788\ub294 \ubaa8\uc2b5 \ubb34\uc5c7 \ubcf4\ub2e4 \uc0ac\ub791\uc2a4\ub7ec\uc6cc\uc694\n\n#HAPPYLEODAY https:\/\/t.co\/fGoQ0CjMCP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161001684,"id_str":"3161001684","name":"ST\u2606RLIGHT_\u308c\u3057\u3093\u305b\u3063\u3068\u306c\u306a","screen_name":"11bomtan10","location":"\u6765\u4e16\u3066\u3050\u3093\u59bb \u6765\u3005\u4e16\u3046\u3049\u3093\u3057\u304f\u59b9","url":null,"description":"\u65b0\u7c73\u3073\u3087\u308b\u3074\u262a\ufe0e\u22c6\uff61\u02da\u2729 VIXX\u3055\u3089\u3093\u3078\u2661\u306c\u306a\u3089\u3044\u3093\u3055\u3093\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059(\u5207\u5b9f) \u3061\u3087\u3093\u3066\u3050\u3093\u306f\u6cbc\u3002\u3089\u3073\u3055\u3093\u306e\u6cbc\u306b\u3082\u2026 \u97d3\u56fd\u597d\u304d\u2606*\u3002 EXO\u3082\u8a9e\u308c\u307e\u3059(\u5c0f\u58f0)","protected":false,"verified":false,"followers_count":12,"friends_count":69,"listed_count":0,"favourites_count":490,"statuses_count":1299,"created_at":"Fri Apr 17 12:55:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652837433583661056\/6tptFMWo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652837433583661056\/6tptFMWo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3161001684\/1444635205","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:30 +0000 2015","id":663727618789806080,"id_str":"663727618789806080","text":"\uc6c3\uace0 \uc788\ub294 \ubaa8\uc2b5 \ubb34\uc5c7 \ubcf4\ub2e4 \uc0ac\ub791\uc2a4\ub7ec\uc6cc\uc694\n\n#HAPPYLEODAY https:\/\/t.co\/fGoQ0CjMCP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237966796,"id_str":"3237966796","name":"\u307d\u3093","screen_name":"ponpon55339","location":null,"url":"http:\/\/kawaii1110.hatenablog.com","description":"1110km\u5148\u306b\u3044\u308b\u3042\u306a\u305f\u3078","protected":false,"verified":false,"followers_count":364,"friends_count":52,"listed_count":5,"favourites_count":1506,"statuses_count":6385,"created_at":"Wed May 06 03:33:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644851600293425152\/dYCJxMZN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644851600293425152\/dYCJxMZN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237966796\/1439915066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[23,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727498421604352,"id_str":"663727498421604352","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","url":"https:\/\/t.co\/fGoQ0CjMCP","display_url":"pic.twitter.com\/fGoQ0CjMCP","expanded_url":"http:\/\/twitter.com\/ponpon55339\/status\/663727618789806080\/photo\/1","type":"photo","sizes":{"large":{"w":492,"h":298,"resize":"fit"},"medium":{"w":492,"h":298,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727498421604352,"id_str":"663727498421604352","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","url":"https:\/\/t.co\/fGoQ0CjMCP","display_url":"pic.twitter.com\/fGoQ0CjMCP","expanded_url":"http:\/\/twitter.com\/ponpon55339\/status\/663727618789806080\/photo\/1","type":"animated_gif","sizes":{"large":{"w":492,"h":298,"resize":"fit"},"medium":{"w":492,"h":298,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[246,149],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIpKsUEAAYxhw.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[40,52]}],"urls":[],"user_mentions":[{"screen_name":"ponpon55339","name":"\u307d\u3093","id":3237966796,"id_str":"3237966796","indices":[3,15]}],"symbols":[],"media":[{"id":663727498421604352,"id_str":"663727498421604352","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","url":"https:\/\/t.co\/fGoQ0CjMCP","display_url":"pic.twitter.com\/fGoQ0CjMCP","expanded_url":"http:\/\/twitter.com\/ponpon55339\/status\/663727618789806080\/photo\/1","type":"photo","sizes":{"large":{"w":492,"h":298,"resize":"fit"},"medium":{"w":492,"h":298,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727618789806080,"source_status_id_str":"663727618789806080","source_user_id":3237966796,"source_user_id_str":"3237966796"}]},"extended_entities":{"media":[{"id":663727498421604352,"id_str":"663727498421604352","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYIpKsUEAAYxhw.png","url":"https:\/\/t.co\/fGoQ0CjMCP","display_url":"pic.twitter.com\/fGoQ0CjMCP","expanded_url":"http:\/\/twitter.com\/ponpon55339\/status\/663727618789806080\/photo\/1","type":"animated_gif","sizes":{"large":{"w":492,"h":298,"resize":"fit"},"medium":{"w":492,"h":298,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727618789806080,"source_status_id_str":"663727618789806080","source_user_id":3237966796,"source_user_id_str":"3237966796","video_info":{"aspect_ratio":[246,149],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYIpKsUEAAYxhw.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110270464,"id_str":"663728060110270464","text":"@n9n mg24p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2665343767,"in_reply_to_user_id_str":"2665343767","in_reply_to_screen_name":"n9n","user":{"id":3708940572,"id_str":"3708940572","name":"--","screen_name":"45738","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":8136,"created_at":"Mon Sep 28 00:17:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663432947387600897\/CTm35eNf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663432947387600897\/CTm35eNf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3708940572\/1447009756","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"n9n","name":"\u300e\uff20\u660e\u65e5\u306e\u671d\u8d77\u304d\u305f\u3089\u51cd\u7d50\u30de\u30f3\u300f","id":2665343767,"id_str":"2665343767","indices":[0,4]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118626304,"id_str":"663728060118626304","text":"GE\u306e\u30a2\u30cb\u30e1\u5207\u3063\u305f\u7406\u7531\u306f\u307e\u3042\u81ea\u5206\u3067\u4f5c\u3063\u305f\u4e3b\u4eba\u516c\u306b\u6163\u308c\u3059\u304e\u3066\u30a2\u30cb\u30e1\u7248\u4e3b\u4eba\u516c\u306b\u9055\u548c\u611f\u3057\u304b\u899a\u3048\u306a\u304b\u3063\u305f\u304b\u3089\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213166847,"id_str":"213166847","name":"\u30bb\u30c4\u30ab","screen_name":"setsu_i","location":"\u30b8\u30e3\u30c3\u30b8\u30e1\u30f3\u30c8\u3042\u308a\u304c\u3068\u3046","url":"http:\/\/twpf.jp\/setsu_i","description":"\u30bb\u30c4\u30ab\u3067\u3059\u3002\u98a8\u4e38\u4e00\u90ce\u592a\u3068\u897f\u6728\u91ce\u771f\u59eb\u3061\u3083\u3093\u3068\u4e0d\u4e8c\u5148\u8f29\u304c\u597d\u304d\u3002\u7bc0\u64cd\u306a\u3057\u306eTL\u8b66\u5099\u54e1\u306a\u306e\u3067\u3068\u3066\u3082\u3046\u308b\u3055\u3044\u3067\u3059\u3002\u30c4\u30a4\u30d7\u30ed\u4e00\u8aad\u63a8\u5968\u3002\u8863\u66f4\u771f\u7dd2\u63a8\u3057KnightsP\uff0f\u6210\u4eba\u6e08\u3002","protected":false,"verified":false,"followers_count":158,"friends_count":280,"listed_count":4,"favourites_count":5232,"statuses_count":62496,"created_at":"Mon Nov 08 04:28:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639894389395457\/ubHnP73B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639894389395457\/ubHnP73B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213166847\/1446039959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118786049,"id_str":"663728060118786049","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/f5Xt8GeqFy","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3981481274,"id_str":"3981481274","name":"LizQuen EILY","screen_name":"audreylocsin3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":10,"listed_count":1,"favourites_count":1,"statuses_count":29311,"created_at":"Thu Oct 22 15:30:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657330430648041472\/dbW8SF8v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657330430648041472\/dbW8SF8v_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727605951107072,"quoted_status_id_str":"663727605951107072","quoted_status":{"created_at":"Mon Nov 09 14:39:27 +0000 2015","id":663727605951107072,"id_str":"663727605951107072","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/hcuwFlthje","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727291927797760,"quoted_status_id_str":"663727291927797760","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/hcuwFlthje","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727291927797760","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/f5Xt8GeqFy","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727605951107072","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060106219521,"id_str":"663728060106219521","text":"@supersonicth98 baby pls hurt me","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727356008374272,"in_reply_to_status_id_str":"663727356008374272","in_reply_to_user_id":1073425921,"in_reply_to_user_id_str":"1073425921","in_reply_to_screen_name":"supersonicth98","user":{"id":632007799,"id_str":"632007799","name":"xRasea's nisepanda","screen_name":"xRasea","location":"Practically anywhere","url":"http:\/\/loli.dance","description":"KONICHIWA YOU MAGNIFICENT BASTARDS. Me hace gracia la gente imb\u00e9cil y retwitteo cosas muy raras. Hago memes a tiempo parcial.","protected":false,"verified":false,"followers_count":162,"friends_count":134,"listed_count":1,"favourites_count":5080,"statuses_count":11230,"created_at":"Tue Jul 10 14:00:09 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658059388540862464\/DjwZU4OW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658059388540862464\/DjwZU4OW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/632007799\/1429893924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"supersonicth98","name":"\u3164","id":1073425921,"id_str":"1073425921","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075657"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060131360768,"id_str":"663728060131360768","text":"La locura de @CarlosAuryn no es normal \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":295852265,"id_str":"295852265","name":"\u00b7Banshee\u00b7","screen_name":"paulawithmoon","location":"IES Zorrilla-Mystic Falls","url":null,"description":"Antiheroina volviendo a las andadas. Buscando a Alaska mientras escondo mis runas y divergencia en la ciudad de papel del Capitolio \u00bfOkay? Real \u00b7Sugus\u00b7 LofYu\u2764","protected":false,"verified":false,"followers_count":734,"friends_count":480,"listed_count":7,"favourites_count":8783,"statuses_count":34675,"created_at":"Mon May 09 19:31:50 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/781008330\/e1b8550aa44c787211cfbb073b7679cd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/781008330\/e1b8550aa44c787211cfbb073b7679cd.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661252993816379393\/x86sidJu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661252993816379393\/x86sidJu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/295852265\/1446489972","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarlosAuryn","name":"Carlos Marco","id":66697682,"id_str":"66697682","indices":[13,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075663"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143808512,"id_str":"663728060143808512","text":"Shivaay Diwali Dhamaka Agli diwali pe dhamaka hoga","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4047556411,"id_str":"4047556411","name":"Ajay devgn Nimar_FC","screen_name":"devgn_fc","location":"Thikri, Madhya Pradesh","url":null,"description":"Madhya Pradesh Western Zone (Nimar)unofficial Fan Club Of Ajay Devgn Follow Us Adians","protected":false,"verified":false,"followers_count":57,"friends_count":184,"listed_count":0,"favourites_count":80,"statuses_count":155,"created_at":"Wed Oct 28 14:46:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661718749691539456\/R_zspLW6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661718749691539456\/R_zspLW6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4047556411\/1446431097","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080075666"} +{"delete":{"status":{"id":663727548409319424,"id_str":"663727548409319424","user_id":57035060,"user_id_str":"57035060"},"timestamp_ms":"1447080075704"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135374850,"id_str":"663728060135374850","text":"@23__rin \u30b8\u30e3\u30c3\u30b8\u30e1\u30f3\u30c8\u4f75\u305b\u3057\u305f\u3044\u3067\u3059\uff5e\uff5e( \uff1b\u2200\uff1b)\u2661\u2661\u2661\u79c1\u3082\u4f75\u305b\u51fa\u6765\u305f\u3089\u5e78\u305b\u3059\u304e\u3066\u5893\u7acb\u3061\u307e\u3059\ud83d\ude07\ud83d\udc95\n\u305c\u3072\u3068\u3082(*\u00b4\u2200\uff40*)\u6765\u5e74\u306e1\u6708\u306e\u306bKnights\u30aa\u30f3\u30ea\u30fc\u304c\u3042\u308b\u307f\u305f\u3044\u3067\u884c\u304d\u305f\u3044\u306a\uff5e\u3068\u306f\u601d\u3063\u3066\u308b\u3093\u3067\u3059\u304c\u3081\u3063\u3061\u3083\u60a9\u3093\u3067\u307e\u3059( \uff1b\u2200\uff1b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719504195645440,"in_reply_to_status_id_str":"663719504195645440","in_reply_to_user_id":1945853024,"in_reply_to_user_id_str":"1945853024","in_reply_to_screen_name":"23__rin","user":{"id":435933742,"id_str":"435933742","name":"\u265e\u58f1\u7a00\u26588\u65e5AGF\u30ec\u30aa","screen_name":"itsuki_39511","location":"\u3046\u3063\u3061\u3085\uff5e\uff01","url":null,"description":"\u3042\u3093\u30b9\u30bf\u30d0\u30d0\u30a1\u3067\u30ec\u30aa\u30ad\u30c1\u306aKnightsP\u3002\u30ec\u30aa\u53f8\u30ec\u30aa\u5927\u597d\u7269\u3002\u96f6\u3068\u771f\u7dd2\u3082\u597d\u304d\u3002 \u30a8\u30bf\u30fc\u30ca\u30eb\u30b5\u30de\u30fc\u30cf\u30eb\u30ad\u30c1\u9059\u51db\u3089\u3076\u3002 \u3064\u3080\u304e\u30af\u30a4\u30fc\u30f3\u3002\u597d\u2192Free!\/\u3042\u3093\u30b9\u30bf\/DYNAMIC CHORD\/\u3046\u305f\u30d7\u30ea\/PandoraHearts\/\u30e9\u30d6\u30e9\u30a4\u30d6!\/\u84bc\u4e95\u7fd4\u592a\u2026etc\u300220\u4ee3\u5f8c\u534a\u3002","protected":false,"verified":false,"followers_count":525,"friends_count":580,"listed_count":10,"favourites_count":3640,"statuses_count":10164,"created_at":"Tue Dec 13 16:10:34 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662421117005508608\/0kPaw_NP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662421117005508608\/0kPaw_NP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/435933742\/1446437073","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"23__rin","name":"*\u00b7 \u308a \u3093 @AGF\u4e21\u65e5","id":1945853024,"id_str":"1945853024","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060114464769,"id_str":"663728060114464769","text":"The mention homing pigeon forcefulness as regards postcards: MPcMTZ https:\/\/t.co\/PqUnoYHb1I","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1205561888,"id_str":"1205561888","name":"HaigBailey","screen_name":"HaigBailey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":127,"friends_count":2,"listed_count":27,"favourites_count":0,"statuses_count":116692,"created_at":"Thu Feb 21 17:42:50 +0000 2013","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3304175241\/5029bc9c28773954a490510c416fb6d1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3304175241\/5029bc9c28773954a490510c416fb6d1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PqUnoYHb1I","expanded_url":"http:\/\/dlvr.it\/ChfnJm","display_url":"dlvr.it\/ChfnJm","indices":[68,91]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075659"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060106174464,"id_str":"663728060106174464","text":"@GivemeAlli Tutti\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727987620192256,"in_reply_to_status_id_str":"663727987620192256","in_reply_to_user_id":3460449856,"in_reply_to_user_id_str":"3460449856","in_reply_to_screen_name":"GivemeAlli","user":{"id":1071310243,"id_str":"1071310243","name":"~Focus~THANKS ARI\u2661","screen_name":"05Elisa07","location":"YouTube\u270c","url":null,"description":"~Just stay with me a minute,I swear I'll make it worth~\u2661\u2661 29\/10\/15 Ariana faved us\u2661","protected":false,"verified":false,"followers_count":1254,"friends_count":1018,"listed_count":6,"favourites_count":967,"statuses_count":4614,"created_at":"Tue Jan 08 16:11:43 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652892860749086720\/grUE9hgt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652892860749086720\/grUE9hgt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071310243\/1440405602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GivemeAlli","name":"Lar,,!","id":3460449856,"id_str":"3460449856","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080075657"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110389249,"id_str":"663728060110389249","text":"RT @KalmPC: You actually couldn't make this shit up. http:\/\/t.co\/CyJqJXZXjb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1513732220,"id_str":"1513732220","name":"SETH GECKO","screen_name":"caroisapunk","location":"ss","url":"http:\/\/judyisarunt.tumblr.com","description":"THE TWILIGHT ZONE \/ chavely gang \/ https:\/\/vimeo.com\/141978303","protected":false,"verified":false,"followers_count":3727,"friends_count":606,"listed_count":60,"favourites_count":68615,"statuses_count":67962,"created_at":"Thu Jun 13 15:39:46 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545093207818657792\/npZ2Bstw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545093207818657792\/npZ2Bstw.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649162780562423810\/6B0VKdwd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649162780562423810\/6B0VKdwd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1513732220\/1444444835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jun 11 18:23:23 +0000 2015","id":609063393677426688,"id_str":"609063393677426688","text":"You actually couldn't make this shit up. http:\/\/t.co\/CyJqJXZXjb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":707628475,"id_str":"707628475","name":"The King, and I.","screen_name":"KalmPC","location":"London, England","url":null,"description":"21, Undergraduate Historian @UniOfOxford, Former VP of @OxfordACS, #FOGYLF2015 Coordinator, VP of #YPEN UK, Editor of #UnionBlackMag #DontForgetTy RIP Tyrell","protected":false,"verified":false,"followers_count":567,"friends_count":51,"listed_count":9,"favourites_count":3750,"statuses_count":16704,"created_at":"Fri Jul 20 18:59:32 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663430013191127040\/kUIfBJiQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663430013191127040\/kUIfBJiQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/707628475\/1446888809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5125,"favorite_count":3334,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":609063387755126784,"id_str":"609063387755126784","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":428,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":609063387755126784,"id_str":"609063387755126784","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":428,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}},{"id":609063387750932481,"id_str":"609063387750932481","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JiXIAEZSI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JiXIAEZSI6.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":480,"h":853,"resize":"fit"},"medium":{"w":480,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":609063387767664640,"id_str":"609063387767664640","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JmWcAA18nX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JmWcAA18nX.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}}},{"id":609063387801206784,"id_str":"609063387801206784","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JuWQAAYKIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JuWQAAYKIe.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":569,"resize":"fit"},"medium":{"w":600,"h":426,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KalmPC","name":"The King, and I.","id":707628475,"id_str":"707628475","indices":[3,10]}],"symbols":[],"media":[{"id":609063387755126784,"id_str":"609063387755126784","indices":[53,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":428,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":609063393677426688,"source_status_id_str":"609063393677426688","source_user_id":707628475,"source_user_id_str":"707628475"}]},"extended_entities":{"media":[{"id":609063387755126784,"id_str":"609063387755126784","indices":[53,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JjXIAAxFwI.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":356,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":428,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":609063393677426688,"source_status_id_str":"609063393677426688","source_user_id":707628475,"source_user_id_str":"707628475"},{"id":609063387750932481,"id_str":"609063387750932481","indices":[53,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JiXIAEZSI6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JiXIAEZSI6.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":480,"h":853,"resize":"fit"},"medium":{"w":480,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":609063393677426688,"source_status_id_str":"609063393677426688","source_user_id":707628475,"source_user_id_str":"707628475"},{"id":609063387767664640,"id_str":"609063387767664640","indices":[53,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JmWcAA18nX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JmWcAA18nX.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":960,"h":640,"resize":"fit"}},"source_status_id":609063393677426688,"source_status_id_str":"609063393677426688","source_user_id":707628475,"source_user_id_str":"707628475"},{"id":609063387801206784,"id_str":"609063387801206784","indices":[53,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CHPT7JuWQAAYKIe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHPT7JuWQAAYKIe.jpg","url":"http:\/\/t.co\/CyJqJXZXjb","display_url":"pic.twitter.com\/CyJqJXZXjb","expanded_url":"http:\/\/twitter.com\/KalmPC\/status\/609063393677426688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":241,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":569,"resize":"fit"},"medium":{"w":600,"h":426,"resize":"fit"}},"source_status_id":609063393677426688,"source_status_id_str":"609063393677426688","source_user_id":707628475,"source_user_id_str":"707628475"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127023107,"id_str":"663728060127023107","text":"@oor531Rock @kuro_mwam0719 \u307f\u3093\u306a\u6b4c\u3063\u3066\u307f\u305f\u3068\u304b\u901a\u3063\u3066\u308b\u306e\u306d(\u706c\u00ba\u03c9\u00ba\u706c)\u2669","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727967760089089,"in_reply_to_status_id_str":"663727967760089089","in_reply_to_user_id":1114545073,"in_reply_to_user_id_str":"1114545073","in_reply_to_screen_name":"oor531Rock","user":{"id":2160535597,"id_str":"2160535597","name":"\u306f\u3063\u3057\u30fc\u306f\u307e\u3093\u307e\u308b\u5c3d\u672a\u6765\u969b","screen_name":"manaaa_11","location":"\u3088\u3053\u306f\u307e","url":"http:\/\/twpf.jp\/manaaa_11","description":"SiM\u306e\u305f\u3081\u306b\u751f\u304d\u308b \u6b66\u9053\u9928\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f 10-FEET\/PTP\/ROACH\/FACT @ayanonradada","protected":false,"verified":false,"followers_count":589,"friends_count":372,"listed_count":87,"favourites_count":4038,"statuses_count":13792,"created_at":"Mon Oct 28 09:14:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662259365722779648\/cPVHHpZ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662259365722779648\/cPVHHpZ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2160535597\/1445002089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oor531Rock","name":"\u307d\u3093\u304d\u3061\u3002","id":1114545073,"id_str":"1114545073","indices":[0,11]},{"screen_name":"kuro_mwam0719","name":"\u3060\u3044\u3061","id":2303915936,"id_str":"2303915936","indices":[12,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122841088,"id_str":"663728060122841088","text":"RT @ddlovato: Much better thank you!!! I do need a nap soon though \ud83d\ude34\ud83d\ude1d\u263a\ufe0f #AskDemi https:\/\/t.co\/eXqyiFTlMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380326441,"id_str":"380326441","name":"Ve Soo Yon","screen_name":"vesipanda","location":"Somewhere I Belong","url":"http:\/\/instagram.com\/vesipanda","description":"\u2764 my Mom n Dad || reading. movie. music. traveling || I am who I am","protected":false,"verified":false,"followers_count":350,"friends_count":346,"listed_count":5,"favourites_count":2675,"statuses_count":8963,"created_at":"Mon Sep 26 13:22:53 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000158349795\/lzs7H9lC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000158349795\/lzs7H9lC.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651520126915751936\/jdT80MJX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651520126915751936\/jdT80MJX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380326441\/1444466554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:04:56 +0000 2015","id":663688720021856256,"id_str":"663688720021856256","text":"Much better thank you!!! I do need a nap soon though \ud83d\ude34\ud83d\ude1d\u263a\ufe0f #AskDemi https:\/\/t.co\/eXqyiFTlMA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672553,"friends_count":401,"listed_count":102883,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663685015314677760,"quoted_status_id_str":"663685015314677760","quoted_status":{"created_at":"Mon Nov 09 11:50:12 +0000 2015","id":663685015314677760,"id_str":"663685015314677760","text":"How are you feeling today? Your headache any better? #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93051474,"id_str":"93051474","name":"Amber","screen_name":"youramberddl","location":"United States","url":"https:\/\/itun.es\/us\/nhEN9","description":"https:\/\/twitter.com\/ddlovato\/status\/663688720021856256","protected":false,"verified":false,"followers_count":747,"friends_count":218,"listed_count":71,"favourites_count":2546,"statuses_count":10353,"created_at":"Fri Nov 27 21:28:05 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000031105544\/32f80c9af854b892bb763a4c13c866f6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000031105544\/32f80c9af854b892bb763a4c13c866f6.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"990000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663541756416401408\/xnWdv-9O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663541756416401408\/xnWdv-9O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93051474\/1447035657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[53,61]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1878,"favorite_count":3710,"entities":{"hashtags":[{"text":"AskDemi","indices":[58,66]}],"urls":[{"url":"https:\/\/t.co\/eXqyiFTlMA","expanded_url":"https:\/\/twitter.com\/youramberddl\/status\/663685015314677760","display_url":"twitter.com\/youramberddl\/s\u2026","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[72,80]}],"urls":[{"url":"https:\/\/t.co\/eXqyiFTlMA","expanded_url":"https:\/\/twitter.com\/youramberddl\/status\/663685015314677760","display_url":"twitter.com\/youramberddl\/s\u2026","indices":[81,104]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118634497,"id_str":"663728060118634497","text":"@rc_as_N \n\u3086\u3046\u3072\u306f\u3086\u3046\u3072\u3002(\u306b\u3063\u3053\u308a)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724835256725505,"in_reply_to_status_id_str":"663724835256725505","in_reply_to_user_id":3857976805,"in_reply_to_user_id_str":"3857976805","in_reply_to_screen_name":"rc_as_N","user":{"id":1570482169,"id_str":"1570482169","name":"\u307e\u3072\u308d","screen_name":"Mahiro0402","location":"\u30d7\u30ea\u30e9\u30a45th\u53c2\u622617\u65e5 \u7fd4\u306e\u96a3\u2661","url":null,"description":"\u3046\u305f\u30d7\u30ea\u3068\u30da\u30c0\u30eb\u3068\u30c0\u30a4\u30e4\u3068\u30bf\u30a4\u30d0\u30cb\u3068\uff28\uff34\uff26\/\u4e3b\u306b\u3046\u305f\u30d7\u30ea\u2727\u7fd4\u304f\u3093\u304c\u4e16\u754c\u4e00\u5927\u597d\u304d\u2727\u2661\u6885\u539f\u88d5\u4e00\u90ce\u2661\u5ee3\u702c\u667a\u7d00 \u8150\u5973\u5b50\u3067\u3059\u4e0b\u30cd\u30bf\u81ea\u91cd\u3057\u307e\u305b\u3093\u26a0\ufe0f","protected":false,"verified":false,"followers_count":1348,"friends_count":1271,"listed_count":27,"favourites_count":12185,"statuses_count":26514,"created_at":"Fri Jul 05 12:52:16 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662977424213176320\/97UuJydu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662977424213176320\/97UuJydu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570482169\/1445955612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rc_as_N","name":"\u3086\u3046\u3072@\u3046\u3093\u3053","id":3857976805,"id_str":"3857976805","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139708416,"id_str":"663728060139708416","text":"@vini_lulimaa como foi a prova amigo?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727970616479745,"in_reply_to_status_id_str":"663727970616479745","in_reply_to_user_id":331225847,"in_reply_to_user_id_str":"331225847","in_reply_to_screen_name":"vini_lulimaa","user":{"id":1573465129,"id_str":"1573465129","name":"manu","screen_name":"ellembarrassing","location":"o nome do vento","url":"http:\/\/www.last.fm\/user\/ellembarrassing","description":"conversando c o passaro cantante ontem\nvoei p um lugar nao muito distante","protected":false,"verified":false,"followers_count":163,"friends_count":333,"listed_count":1,"favourites_count":4144,"statuses_count":10082,"created_at":"Sat Jul 06 19:01:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656157050339250177\/VvLsg0mV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656157050339250177\/VvLsg0mV.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364100236423168\/YcDB1Rc1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364100236423168\/YcDB1Rc1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1573465129\/1445278360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vini_lulimaa","name":"lucas","id":331225847,"id_str":"331225847","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127031296,"id_str":"663728060127031296","text":"Me caga la gente que se atreve a salir a la calle siendo una incubadora de mocos o tos. QUE PUTO ASCO ME DAN NETA \ud83d\ude37\ud83d\ude37\ud83d\ude37","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":325903374,"id_str":"325903374","name":"Annie \u2693","screen_name":"AnniePelaez","location":"CDMX ","url":null,"description":"|| No hagas del mundo un lugar tranquilo.","protected":false,"verified":false,"followers_count":225,"friends_count":149,"listed_count":0,"favourites_count":2135,"statuses_count":8643,"created_at":"Wed Jun 29 02:01:51 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661407911290101761\/_Ifzeui2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661407911290101761\/_Ifzeui2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/325903374\/1445831340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143808513,"id_str":"663728060143808513","text":"night zzz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1061763620,"id_str":"1061763620","name":"z\u0113l\u00e7y","screen_name":"zlcylr","location":null,"url":"http:\/\/twitter.com\/caradelevingne","description":null,"protected":false,"verified":false,"followers_count":653,"friends_count":522,"listed_count":2,"favourites_count":11329,"statuses_count":21537,"created_at":"Sat Jan 05 00:25:48 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"784647","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647251546065891328\/R4C5zRvX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647251546065891328\/R4C5zRvX.jpg","profile_background_tile":true,"profile_link_color":"951736","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661925059464790016\/OJJtE6hL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661925059464790016\/OJJtE6hL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1061763620\/1446970994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139569152,"id_str":"663728060139569152","text":"@alter_ego0327 \u307e\u3058\u306dwwww","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727320432185344,"in_reply_to_status_id_str":"663727320432185344","in_reply_to_user_id":1191333979,"in_reply_to_user_id_str":"1191333979","in_reply_to_screen_name":"alter_ego0327","user":{"id":507455805,"id_str":"507455805","name":"\u3053\u308b\u304f\uff20\u591c\u4e45\u5ec3","screen_name":"koruku_niko","location":"\u5099\u524d\u56fd\u672c\u4e38\u524d","url":null,"description":"\u5200\u5263\u4e71\u821e\u304c\u597d\u304d\u306a\u4eba\u3002\u4e94\u864e\u9000\u3061\u3083\u3093\u304c\u4e00\u756a\u597d\u304d\u3001\u4e94\u864e\u9000\u3061\u3083\u3093\u306b\u819d\u6795\u3055\u308c\u3066\u3088\u3057\u3088\u3057\u3055\u308c\u305f\u3044\u3001\u6210\u4eba\u6e08\u307f\u3002","protected":false,"verified":false,"followers_count":129,"friends_count":304,"listed_count":4,"favourites_count":361,"statuses_count":31258,"created_at":"Tue Feb 28 14:38:15 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450020165044809728\/Oggz4f3i.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450020165044809728\/Oggz4f3i.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717952911339520\/6b6L0R51_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717952911339520\/6b6L0R51_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/507455805\/1431953619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alter_ego0327","name":"\u884c\u3002\uff70\uff95\uff77\uff70\uff20\u5165\u9662","id":1191333979,"id_str":"1191333979","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122963968,"id_str":"663728060122963968","text":"I'll take you on my bike https:\/\/t.co\/TUIS4CInTN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723822091,"id_str":"2723822091","name":"Nov29\/dunkin","screen_name":"fvxlizzy","location":"French Polynesia","url":null,"description":"in love with my bestfriend \u2764\ufe0f, Israel G Vazquez. I love you chunky \u2764\ufe0f","protected":false,"verified":false,"followers_count":265,"friends_count":106,"listed_count":1,"favourites_count":2744,"statuses_count":8727,"created_at":"Fri Jul 25 05:06:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650623233708961792\/CE7vJmxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650623233708961792\/CE7vJmxe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723822091\/1443955641","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721006960373760,"quoted_status_id_str":"663721006960373760","quoted_status":{"created_at":"Mon Nov 09 14:13:14 +0000 2015","id":663721006960373760,"id_str":"663721006960373760","text":"In need of a ride to Elizabeth and back tm ,\ud83d\ude29 I'll pay gas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347188621,"id_str":"2347188621","name":"\u2022\u2022 ashley \u2022\u2022","screen_name":"__ashleyv","location":null,"url":null,"description":"God 1st | S\u2764\ufe0f","protected":false,"verified":false,"followers_count":373,"friends_count":381,"listed_count":0,"favourites_count":3199,"statuses_count":11701,"created_at":"Sun Feb 16 17:36:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401199496925184\/5Tf8XBRn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401199496925184\/5Tf8XBRn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2347188621\/1441758741","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TUIS4CInTN","expanded_url":"https:\/\/twitter.com\/__ashleyv\/status\/663721006960373760","display_url":"twitter.com\/__ashleyv\/stat\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110213120,"id_str":"663728060110213120","text":"\u6728\u6751\u62d3\u4e5f\u30a2\u30ca\u30a6\u30f3\u30b5\u30fc\u3080\u3063\u3061\u3083\u3044\u3051\u3081\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279482050,"id_str":"279482050","name":"umi","screen_name":"mooomin108","location":"fukuoka","url":null,"description":"\u25b7\u25b7 \u3046\u307f\u305e\u3046 \u3060\u3081\u305e\u3046 \u304c\u3093\u3070\u308b\u305e\u3046","protected":false,"verified":false,"followers_count":268,"friends_count":362,"listed_count":2,"favourites_count":5601,"statuses_count":13024,"created_at":"Sat Apr 09 10:38:33 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628215843831222272\/AxAiDWdm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628215843831222272\/AxAiDWdm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279482050\/1438616124","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122791936,"id_str":"663728060122791936","text":"RT @sm009ch: (\u305d\u306e\u4ed6)\n\u3059\u3054\u304f\u3069\u3046\u3067\u3082\u3044\u3044 https:\/\/t.co\/TFH3dvNjZk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1446910536,"id_str":"1446910536","name":"\u30cb\u30b3\u30e9\u30b9","screen_name":"atym48sjk46nm","location":null,"url":null,"description":"\u5c02\u9580\u751f\u3067\u3059\u3002\u5e0c\u3068\u30d4\u30a2\u30b9\u3068\u6d3e\u624b\u9aea\u304c\u597d\u304d\u3067\u3059\u3002\u5343\u5207\u308a\u304c\u5f97\u610f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":4717,"friends_count":4435,"listed_count":36,"favourites_count":71302,"statuses_count":64408,"created_at":"Tue May 21 17:54:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624529436142997504\/qUUCy5ns_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624529436142997504\/qUUCy5ns_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1446910536\/1431177402","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:21:30 +0000 2015","id":662817121412341760,"id_str":"662817121412341760","text":"(\u305d\u306e\u4ed6)\n\u3059\u3054\u304f\u3069\u3046\u3067\u3082\u3044\u3044 https:\/\/t.co\/TFH3dvNjZk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2428086180,"id_str":"2428086180","name":"\u30e1\u30e2\u5e33","screen_name":"sm009ch","location":"\u30cf\u30ec\u30ce\u30af\u30cb","url":"http:\/\/twpf.jp\/sm009ch","description":"009\u3084\u5ca9\u7537\u3084\u843d\u66f8\u304d\u306e\u307f\u3001\u30d5\u30a9\u30ed\u30fc\u306f\u614e\u91cd\u306b\u3001\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u307e\u3050\u308c\u306a\u306e\u3067\u76f8\u4e92\u5e0c\u671b\u306e\u65b9\u306f\u305d\u306e\u65e8\u306e\u30ea\u30d7\u30e9\u30a4\u3092\u6c17\u8efd\u306b\u4e0b\u3055\u308c\u3070\u5b09\u3057\u3044\u3067\u3059\u3002(\u3042\u307e\u308a\u898b\u308c\u3066\u306a\u3044\u306e\u3067\u3059)\u30ea\u30e0\u30fc\u30d6\u30d6\u30ed\u30c3\u30af\u3082\u304a\u6c17\u8efd\u306b\u3002\u3068\u3066\u3082\u3086\u308b\u3044\u4eba\u9593\u3067\u3059\u3001\u3069\u3046\u304b\u4f55\u5352\u5ca9\u7537\u306e\u843d\u66f8\u304d\u57a2@smoo69ch","protected":false,"verified":false,"followers_count":330,"friends_count":158,"listed_count":6,"favourites_count":1418,"statuses_count":2824,"created_at":"Sat Apr 05 01:26:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639012681475735553\/4uy5tKNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639012681475735553\/4uy5tKNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2428086180\/1446304312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":328,"favorite_count":424,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662817076155813892,"id_str":"662817076155813892","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662817076155813892,"id_str":"662817076155813892","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}}},{"id":662817076180992000,"id_str":"662817076180992000","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnnjUwAA7HbN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnnjUwAA7HbN.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":296,"resize":"fit"},"medium":{"w":600,"h":522,"resize":"fit"},"large":{"w":1024,"h":892,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sm009ch","name":"\u30e1\u30e2\u5e33","id":2428086180,"id_str":"2428086180","indices":[3,11]}],"symbols":[],"media":[{"id":662817076155813892,"id_str":"662817076155813892","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}},"source_status_id":662817121412341760,"source_status_id_str":"662817121412341760","source_user_id":2428086180,"source_user_id_str":"2428086180"}]},"extended_entities":{"media":[{"id":662817076155813892,"id_str":"662817076155813892","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnndUkAQUp5Z.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":968,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":567,"resize":"fit"},"small":{"w":340,"h":321,"resize":"fit"}},"source_status_id":662817121412341760,"source_status_id_str":"662817121412341760","source_user_id":2428086180,"source_user_id_str":"2428086180"},{"id":662817076180992000,"id_str":"662817076180992000","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLMnnjUwAA7HbN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLMnnjUwAA7HbN.jpg","url":"https:\/\/t.co\/TFH3dvNjZk","display_url":"pic.twitter.com\/TFH3dvNjZk","expanded_url":"http:\/\/twitter.com\/sm009ch\/status\/662817121412341760\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":296,"resize":"fit"},"medium":{"w":600,"h":522,"resize":"fit"},"large":{"w":1024,"h":892,"resize":"fit"}},"source_status_id":662817121412341760,"source_status_id_str":"662817121412341760","source_user_id":2428086180,"source_user_id_str":"2428086180"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135444480,"id_str":"663728060135444480","text":"RT @ismamuizza__: \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":874019270,"id_str":"874019270","name":"fatin","screen_name":"fatinzahidah_","location":null,"url":null,"description":"BM","protected":false,"verified":false,"followers_count":913,"friends_count":854,"listed_count":1,"favourites_count":8145,"statuses_count":17862,"created_at":"Thu Oct 11 17:33:08 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465855784568381442\/f0Q-YO9T.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465855784568381442\/f0Q-YO9T.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"AE1B2E","profile_text_color":"513041","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660462843611885568\/s8R1YDnr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660462843611885568\/s8R1YDnr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/874019270\/1446986701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:21 +0000 2015","id":663724561876172801,"id_str":"663724561876172801","text":"\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2563532707,"id_str":"2563532707","name":"dolphin","screen_name":"ismamuizza__","location":null,"url":null,"description":"15","protected":false,"verified":false,"followers_count":342,"friends_count":263,"listed_count":0,"favourites_count":642,"statuses_count":8400,"created_at":"Thu Jun 12 14:32:09 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BD1B23","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663304248109625344\/c5B_6Tas_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663304248109625344\/c5B_6Tas_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2563532707\/1446979082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ismamuizza__","name":"dolphin","id":2563532707,"id_str":"2563532707","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135374849,"id_str":"663728060135374849","text":"@rappresagliamth @usanism_ \n\u3053\u308c\u306f\u65e5\u5e38\u751f\u6d3b\u3067\u7279\u306b\u611f\u3058\u307e\u3059\u3002\n\u60f3\u50cf\u529b\u306e\u6b20\u5982\u3068\u3044\u3046\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727373385252865,"in_reply_to_status_id_str":"663727373385252865","in_reply_to_user_id":962148878,"in_reply_to_user_id_str":"962148878","in_reply_to_screen_name":"rappresagliamth","user":{"id":162511413,"id_str":"162511413","name":"\u30b9\u30de\u30fc\u30c8\u30dc\u30fc\u30a4","screen_name":"breakillusion","location":null,"url":null,"description":"\u5e73\u548c\u3001\u5171\u751f\u3001\u591a\u69d8\u6027\u3002","protected":false,"verified":false,"followers_count":46,"friends_count":54,"listed_count":0,"favourites_count":82,"statuses_count":3216,"created_at":"Sat Jul 03 22:17:53 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604105417963094017\/J2idF4FF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604105417963094017\/J2idF4FF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rappresagliamth","name":"\u6570\u5b66 \uff2d","id":962148878,"id_str":"962148878","indices":[0,16]},{"screen_name":"usanism_","name":"usao","id":2866216387,"id_str":"2866216387","indices":[17,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143902720,"id_str":"663728060143902720","text":"@basilicopizzas do not pay by card at Tower Bridge, they take your payment twice after assurances that the first payment didn't go through!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":187489332,"in_reply_to_user_id_str":"187489332","in_reply_to_screen_name":"basilicopizzas","user":{"id":29082064,"id_str":"29082064","name":"inMary Spiteri","screen_name":"naso81","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":165,"listed_count":0,"favourites_count":1,"statuses_count":9,"created_at":"Sun Apr 05 22:27:49 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"basilicopizzas","name":"basilico pizza","id":187489332,"id_str":"187489332","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127047680,"id_str":"663728060127047680","text":"\u062e\u064a\u0631 \u0627\u0644\u0644\u0647 \u0646\u0628\u064a\u0646\u0627 \u0628\u064a\u0646: \u062e\u0632\u0627\u0626\u0646 \u0627\u0644\u062f\u0646\u064a\u0627 \u0648\u0627\u0644\u062e\u0644\u062f \u0641\u064a\u0647\u0627 \u062b\u0645 \u0627\u0644\u062c\u0646\u0629, \u0648\u0645\u0627 \u0628\u064a\u0646 \u0644\u0642\u0627\u0621\u0647 \u062b\u0645 \u0627\u0644\u062c\u0646\u0629 \u0641\u0642\u0627\u0644 \" \u0625\u0646\u0646\u064a \u0627\u062e\u062a\u0631\u062a\u064f \u0644\u0642\u0627\u0621 \u0627\u0644\u0644\u0647 \u062b\u0645 \u0627\u0644\u062c\u0646\u0629 \" #\u0646\u0634\u0631_\u0633\u064a\u0631\u062a\u0647 #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":525270572,"id_str":"525270572","name":"Mr.khaled alaamry","screen_name":"kkk_sami","location":null,"url":null,"description":"\u200f\u200f\u0627\u0633\u0645\u064a :\u062e\u0627\u0644\u062f \u0627\u0644\u0639\u0627\u0645\u0631\u064a \n\u0627\u0644\u0648\u0638\u064a\u0641\u0629 :\u2708\n\u0627\u0644\u0639\u0645\u0631 :\u0645\u062f\u0631\u064a \u0627\u064a\u0634 \u0639\u0645\u0631\u064a","protected":false,"verified":false,"followers_count":32,"friends_count":153,"listed_count":0,"favourites_count":13,"statuses_count":584,"created_at":"Thu Mar 15 11:11:28 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619312935366557696\/kxAG1_5o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619312935366557696\/kxAG1_5o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/525270572\/1411205444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0646\u0634\u0631_\u0633\u064a\u0631\u062a\u0647","indices":[118,128]},{"text":"\ufdfa","indices":[129,131]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127055872,"id_str":"663728060127055872","text":"@ksyr_1224 \n\u304a\u304b\u3074\u3061\u3083\u3093\n\u4eca\u65e5\u3042\u308a\u304c\u3068\u306d\u2026\n\u52a9\u304b\u308a\u307e\u3057\u305f\ud83d\ude02\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715780362690560,"in_reply_to_status_id_str":"663715780362690560","in_reply_to_user_id":376120773,"in_reply_to_user_id_str":"376120773","in_reply_to_screen_name":"ksyr_1224","user":{"id":965580481,"id_str":"965580481","name":"\u308a\u3053\u3074\u3093@\u3068\u307e\u3068","screen_name":"rkpn_sorarun","location":null,"url":null,"description":"\u82b8\u77ed \u5e7c\u6559B\u30af\u30e9\u30b9\u3002\u30c8\u30de\u30c8\u3068\u4ef2\u826f\u3057\u3002\u30dc\u30ab\u30ed\/\u6b4c\u3044\u624b\u3055\u3093\/\u305d\u3089\u308b\u3055\u3093\u3060\u3044\u3059\u304d\u3043\u3043\u3043\u3043\u3043\u3043\u2734\ufe0e\u30d6\u30b9\u2734\ufe0e\u5e7c\u7a1a\u5712\u5150\u2734\ufe0e\u30c1\u30d3\u2734\ufe0e\u306e\u4e09\u539f\u5247","protected":false,"verified":false,"followers_count":466,"friends_count":425,"listed_count":4,"favourites_count":11552,"statuses_count":17115,"created_at":"Fri Nov 23 06:04:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657863205977350144\/4_t5ts_6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657863205977350144\/4_t5ts_6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/965580481\/1445008549","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ksyr_1224","name":"Okada Yurina","id":376120773,"id_str":"376120773","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060114464768,"id_str":"663728060114464768","text":"@not_jack_squat get me through the rest of school","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663560848581902337,"in_reply_to_status_id_str":"663560848581902337","in_reply_to_user_id":981788442,"in_reply_to_user_id_str":"981788442","in_reply_to_screen_name":"not_jack_squat","user":{"id":981788442,"id_str":"981788442","name":"Jackson","screen_name":"not_jack_squat","location":null,"url":null,"description":"Omaha -keep it with that 2% milk bih. \u007bNot Bangin But Bangable\u007d","protected":false,"verified":false,"followers_count":400,"friends_count":600,"listed_count":0,"favourites_count":2349,"statuses_count":3049,"created_at":"Sat Dec 01 04:13:17 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663437860859580416\/dP3gLAtG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663437860859580416\/dP3gLAtG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/981788442\/1447040191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"not_jack_squat","name":"Jackson","id":981788442,"id_str":"981788442","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075659"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060114563072,"id_str":"663728060114563072","text":"RT @bendragonborn: There's a secret school where heroes of the past train the heroes of the future. https:\/\/t.co\/oo16oUtps4 https:\/\/t.co\/2u\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1549079918,"id_str":"1549079918","name":"Louise G. White","screen_name":"LGWhiteAuthor","location":"United Kingdom","url":"http:\/\/www.louisewhitebooks.com","description":"Louise G. White is the author of the 'Gateway' series, #Urban fantasy, #YA #Paranormal romance.\nRT's courtesy of RoundTeam. http:\/\/www.louisewhitebooks.com","protected":false,"verified":false,"followers_count":24738,"friends_count":15235,"listed_count":1420,"favourites_count":1672,"statuses_count":304588,"created_at":"Wed Jun 26 20:52:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514736899823370240\/7Z5BE4ka_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514736899823370240\/7Z5BE4ka_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1549079918\/1442606818","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:57 +0000 2015","id":663727985065861120,"id_str":"663727985065861120","text":"There's a secret school where heroes of the past train the heroes of the future. https:\/\/t.co\/oo16oUtps4 https:\/\/t.co\/2udZotpL0v #MGLit","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240451540,"id_str":"240451540","name":"Dianne Astle","screen_name":"bendragonborn","location":null,"url":"http:\/\/benthedragonborn.com","description":"Author of Ben the Dragonborn. Seeking the hero in every one of us & the treasure of our own selves.","protected":false,"verified":false,"followers_count":20684,"friends_count":20074,"listed_count":1033,"favourites_count":7556,"statuses_count":105873,"created_at":"Wed Jan 19 23:42:46 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0A02","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000082627646\/66b218fd7040a28f7edaba70457417a2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000082627646\/66b218fd7040a28f7edaba70457417a2.jpeg","profile_background_tile":false,"profile_link_color":"473623","profile_sidebar_border_color":"BCB302","profile_sidebar_fill_color":"171106","profile_text_color":"8A7302","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530612321706455040\/dcUarAVI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530612321706455040\/dcUarAVI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240451540\/1380179236","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"MGLit","indices":[129,135]}],"urls":[{"url":"https:\/\/t.co\/oo16oUtps4","expanded_url":"http:\/\/www.benthedragonborn.com","display_url":"benthedragonborn.com","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":534201981519159297,"id_str":"534201981519159297","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","url":"https:\/\/t.co\/2udZotpL0v","display_url":"pic.twitter.com\/2udZotpL0v","expanded_url":"http:\/\/twitter.com\/bendragonborn\/status\/534201981703696385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":115,"resize":"crop"},"medium":{"w":204,"h":115,"resize":"fit"},"large":{"w":204,"h":115,"resize":"fit"},"small":{"w":204,"h":115,"resize":"fit"}},"source_status_id":534201981703696385,"source_status_id_str":"534201981703696385","source_user_id":240451540,"source_user_id_str":"240451540"}]},"extended_entities":{"media":[{"id":534201981519159297,"id_str":"534201981519159297","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","url":"https:\/\/t.co\/2udZotpL0v","display_url":"pic.twitter.com\/2udZotpL0v","expanded_url":"http:\/\/twitter.com\/bendragonborn\/status\/534201981703696385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":115,"resize":"crop"},"medium":{"w":204,"h":115,"resize":"fit"},"large":{"w":204,"h":115,"resize":"fit"},"small":{"w":204,"h":115,"resize":"fit"}},"source_status_id":534201981703696385,"source_status_id_str":"534201981703696385","source_user_id":240451540,"source_user_id_str":"240451540"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MGLit","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/oo16oUtps4","expanded_url":"http:\/\/www.benthedragonborn.com","display_url":"benthedragonborn.com","indices":[100,123]}],"user_mentions":[{"screen_name":"bendragonborn","name":"Dianne Astle","id":240451540,"id_str":"240451540","indices":[3,17]}],"symbols":[],"media":[{"id":534201981519159297,"id_str":"534201981519159297","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","url":"https:\/\/t.co\/2udZotpL0v","display_url":"pic.twitter.com\/2udZotpL0v","expanded_url":"http:\/\/twitter.com\/bendragonborn\/status\/534201981703696385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":115,"resize":"crop"},"medium":{"w":204,"h":115,"resize":"fit"},"large":{"w":204,"h":115,"resize":"fit"},"small":{"w":204,"h":115,"resize":"fit"}},"source_status_id":534201981703696385,"source_status_id_str":"534201981703696385","source_user_id":240451540,"source_user_id_str":"240451540"}]},"extended_entities":{"media":[{"id":534201981519159297,"id_str":"534201981519159297","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B2nd3zLCYAEjX-w.jpg","url":"https:\/\/t.co\/2udZotpL0v","display_url":"pic.twitter.com\/2udZotpL0v","expanded_url":"http:\/\/twitter.com\/bendragonborn\/status\/534201981703696385\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":115,"resize":"crop"},"medium":{"w":204,"h":115,"resize":"fit"},"large":{"w":204,"h":115,"resize":"fit"},"small":{"w":204,"h":115,"resize":"fit"}},"source_status_id":534201981703696385,"source_status_id_str":"534201981703696385","source_user_id":240451540,"source_user_id_str":"240451540"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075659"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118659072,"id_str":"663728060118659072","text":"RT @LizQuensUNITE: Liza TheMostBeautiful\n\nTrending at Top Six In The Philippines\n\n@tccandler @lizasoberano https:\/\/t.co\/oA5c3XWzHy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3880299254,"id_str":"3880299254","name":"Anne","screen_name":"anneme06","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":6,"listed_count":7,"favourites_count":3,"statuses_count":10887,"created_at":"Tue Oct 13 11:56:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:16 +0000 2015","id":663727307593400321,"id_str":"663727307593400321","text":"Liza TheMostBeautiful\n\nTrending at Top Six In The Philippines\n\n@tccandler @lizasoberano https:\/\/t.co\/oA5c3XWzHy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3522424939,"id_str":"3522424939","name":"LizQuens UNITE","screen_name":"LizQuensUNITE","location":"SUPER MEGA BLOCKBUSTER HIT","url":null,"description":"LizQuen, Liza And Quen FansClub \/ FanGroups UNITED AS ONE SOLID SUPPORT FOR LIZA AND QUEN #EverydayILoveYou NOW SHOWING IN OVER 170 THEATRES NATIONWIDE","protected":false,"verified":false,"followers_count":921,"friends_count":153,"listed_count":3,"favourites_count":954,"statuses_count":3770,"created_at":"Fri Sep 11 03:25:50 +0000 2015","utc_offset":28800,"time_zone":"Taipei","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654479333126356993\/T3omYaX9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654479333126356993\/T3omYaX9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3522424939\/1444875538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[63,73]},{"screen_name":"lizasoberano","name":"Hope Elizabeth","id":284291853,"id_str":"284291853","indices":[74,87]}],"symbols":[],"media":[{"id":663727298944741376,"id_str":"663727298944741376","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","url":"https:\/\/t.co\/oA5c3XWzHy","display_url":"pic.twitter.com\/oA5c3XWzHy","expanded_url":"http:\/\/twitter.com\/LizQuensUNITE\/status\/663727307593400321\/photo\/1","type":"photo","sizes":{"small":{"w":296,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":313,"resize":"fit"},"large":{"w":296,"h":313,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727298944741376,"id_str":"663727298944741376","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","url":"https:\/\/t.co\/oA5c3XWzHy","display_url":"pic.twitter.com\/oA5c3XWzHy","expanded_url":"http:\/\/twitter.com\/LizQuensUNITE\/status\/663727307593400321\/photo\/1","type":"photo","sizes":{"small":{"w":296,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":313,"resize":"fit"},"large":{"w":296,"h":313,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LizQuensUNITE","name":"LizQuens UNITE","id":3522424939,"id_str":"3522424939","indices":[3,17]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[82,92]},{"screen_name":"lizasoberano","name":"Hope Elizabeth","id":284291853,"id_str":"284291853","indices":[93,106]}],"symbols":[],"media":[{"id":663727298944741376,"id_str":"663727298944741376","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","url":"https:\/\/t.co\/oA5c3XWzHy","display_url":"pic.twitter.com\/oA5c3XWzHy","expanded_url":"http:\/\/twitter.com\/LizQuensUNITE\/status\/663727307593400321\/photo\/1","type":"photo","sizes":{"small":{"w":296,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":313,"resize":"fit"},"large":{"w":296,"h":313,"resize":"fit"}},"source_status_id":663727307593400321,"source_status_id_str":"663727307593400321","source_user_id":3522424939,"source_user_id_str":"3522424939"}]},"extended_entities":{"media":[{"id":663727298944741376,"id_str":"663727298944741376","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIdjlUsAAwaJP.jpg","url":"https:\/\/t.co\/oA5c3XWzHy","display_url":"pic.twitter.com\/oA5c3XWzHy","expanded_url":"http:\/\/twitter.com\/LizQuensUNITE\/status\/663727307593400321\/photo\/1","type":"photo","sizes":{"small":{"w":296,"h":313,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":296,"h":313,"resize":"fit"},"large":{"w":296,"h":313,"resize":"fit"}},"source_status_id":663727307593400321,"source_status_id_str":"663727307593400321","source_user_id":3522424939,"source_user_id_str":"3522424939"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110237697,"id_str":"663728060110237697","text":"I'm flirty at times. That's just my personality. Don't take it serious. I'm not feeling you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3265834135,"id_str":"3265834135","name":"Nauticaa\u2728","screen_name":"Babygvll","location":"kentucky","url":null,"description":"home girl in public. baby girl in private.","protected":false,"verified":false,"followers_count":972,"friends_count":967,"listed_count":1,"favourites_count":6122,"statuses_count":6000,"created_at":"Thu Jul 02 06:27:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663431964184195073\/reB3SaEg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663431964184195073\/reB3SaEg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3265834135\/1447043710","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143792128,"id_str":"663728060143792128","text":"Okay fr am I the only one who thinks the attendance ladies are rude af?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2152163108,"id_str":"2152163108","name":"gianna :)","screen_name":"GiannaAbrego1","location":"San Antonio, TX","url":null,"description":"Jmhs","protected":false,"verified":false,"followers_count":345,"friends_count":197,"listed_count":1,"favourites_count":5209,"statuses_count":27816,"created_at":"Thu Oct 24 03:40:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481640629269561345\/ResNYgVB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481640629269561345\/ResNYgVB.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663195894418837504\/alm2FJ8J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663195894418837504\/alm2FJ8J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2152163108\/1439183631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060106018816,"id_str":"663728060106018816","text":"\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 \u0e40\u0e23\u0e32\u0e01\u0e47\u0e17\u0e33\u0e2d\u0e30\u0e44\u0e23\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":956630678,"id_str":"956630678","name":"` \u0e21\u0e32\u0e22\u0e27\u0e34\u0e19\u0e40\u0e17\u0e08","screen_name":"mindvin","location":null,"url":null,"description":"- \u0e2a\u0e27\u0e31\u0e2a\u0e14\u0e35\u0e40\u0e23\u0e32\u0e27\u0e34\u0e19\u0e40\u0e17\u0e08 | \u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27 | \u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 -","protected":false,"verified":false,"followers_count":99,"friends_count":62,"listed_count":0,"favourites_count":247,"statuses_count":3191,"created_at":"Mon Nov 19 02:49:37 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662270711344435204\/1I0MFvKh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662270711344435204\/1I0MFvKh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/956630678\/1443505420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080075657"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118773760,"id_str":"663728060118773760","text":"\u039a\u03c5\u03ba\u03bb\u03bf\u03c6\u03cc\u03c1\u03b7\u03c3\u03b5 \u03c4\u03bf \u03c0\u03c1\u03ce\u03c4\u03bf \u03c4\u03b5\u03cd\u03c7\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03b6\u03c9\u03ae\u03c2 \u03c4\u03b7\u03c2 !!!! https:\/\/t.co\/Jk0nQZVzNz","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":893568914,"id_str":"893568914","name":"Vips ","screen_name":"VipsChannel","location":null,"url":"http:\/\/www.youtube.com\/user\/Vips2466","description":"The channel was created for personal entertainment","protected":false,"verified":false,"followers_count":19,"friends_count":58,"listed_count":0,"favourites_count":7,"statuses_count":201,"created_at":"Sat Oct 20 16:26:33 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/689326379\/a7f617a2d4111a8caac1d966e4db20f8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/689326379\/a7f617a2d4111a8caac1d966e4db20f8.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2742072789\/974d389b0b7ec3a4422e447161689093_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2742072789\/974d389b0b7ec3a4422e447161689093_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/893568914\/1350754569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jk0nQZVzNz","expanded_url":"http:\/\/fb.me\/7QHRqvxPU","display_url":"fb.me\/7QHRqvxPU","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"el","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122816513,"id_str":"663728060122816513","text":"RT @payami_: The man who tried to breach the security & make Modi to listen him. 80-year-old tries in vain to meet PM https:\/\/t.co\/lRliEG\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2212306642,"id_str":"2212306642","name":"Jha Pooja","screen_name":"Jha__Pooja","location":"New-delhi","url":null,"description":"Management Research Scholar...Human being... Learning from mistakes. Jo Bhi Ho Kal Phir Aayega..:) In love with Will Smith, Nawazuddin and Irrfan Khan.","protected":false,"verified":false,"followers_count":4419,"friends_count":142,"listed_count":41,"favourites_count":14230,"statuses_count":39886,"created_at":"Sat Dec 07 14:48:11 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478937481157419008\/ip6AwHtZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478937481157419008\/ip6AwHtZ.jpeg","profile_background_tile":true,"profile_link_color":"64AEC9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662587068330082304\/_iiMxDXy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662587068330082304\/_iiMxDXy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2212306642\/1445533305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:07 +0000 2015","id":663725511147786240,"id_str":"663725511147786240","text":"The man who tried to breach the security & make Modi to listen him. 80-year-old tries in vain to meet PM https:\/\/t.co\/lRliEGYlId |","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255030951,"id_str":"255030951","name":"Payami","screen_name":"payami_","location":"Jammu & Kashmir","url":"http:\/\/chinarvalley.blogspot.in","description":"Lost in the world of journalism. Walking and talking about the voiceless.","protected":false,"verified":false,"followers_count":2248,"friends_count":377,"listed_count":52,"favourites_count":1230,"statuses_count":50428,"created_at":"Sun Feb 20 14:36:15 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"27E815","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662168991406817280\/3yjNRit-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662168991406817280\/3yjNRit-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255030951\/1443809213","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lRliEGYlId","expanded_url":"http:\/\/www.thehindu.com\/todays-paper\/tp-national\/80yearold-tries-in-vain-to-meet-pm\/article7856671.ece","display_url":"thehindu.com\/todays-paper\/t\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lRliEGYlId","expanded_url":"http:\/\/www.thehindu.com\/todays-paper\/tp-national\/80yearold-tries-in-vain-to-meet-pm\/article7856671.ece","display_url":"thehindu.com\/todays-paper\/t\u2026","indices":[124,144]}],"user_mentions":[{"screen_name":"payami_","name":"Payami","id":255030951,"id_str":"255030951","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139773952,"id_str":"663728060139773952","text":"one person followed me \/\/ automatically checked by https:\/\/t.co\/gOM8RVfyTo","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327743497,"id_str":"327743497","name":"VENSKA","screen_name":"venskabassier","location":"Jakarta","url":null,"description":"I'm yours Runss\u2665","protected":false,"verified":false,"followers_count":311,"friends_count":152,"listed_count":0,"favourites_count":26,"statuses_count":4798,"created_at":"Sat Jul 02 02:30:24 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"56627C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/803264681\/c4e810abfbf07fe3e8c57101523b80cf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/803264681\/c4e810abfbf07fe3e8c57101523b80cf.png","profile_background_tile":true,"profile_link_color":"61A0AB","profile_sidebar_border_color":"F9F0CB","profile_sidebar_fill_color":"C5D6BA","profile_text_color":"91BDB9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000596300231\/bcc582c37c5b139ec99d3d9758fa86d6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000596300231\/bcc582c37c5b139ec99d3d9758fa86d6_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gOM8RVfyTo","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139614208,"id_str":"663728060139614208","text":"RT @yamap_cap: 11\/9\u300e5\u21929\uff5e\u79c1\u306b\u604b\u3057\u305f\u304a\u574a\u3055\u3093\uff5e\u300f\u7b2c5\u8a71 #5\u6642\u304b\u30899\u6642\u307e\u3067 #\u77f3\u539f\u3055\u3068\u307f #\u5c71\u4e0b\u667a\u4e45 \u5c71P https:\/\/t.co\/Vlp5s4EimM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307237290,"id_str":"3307237290","name":"\uff59\uff55\uff55\uff4b\uff41","screen_name":"pcfe649d72ywua","location":null,"url":null,"description":"\uff54\uff4f\uff4d\uff49\uff53\uff49\uff52\uff4f jk 1\u00d7\u5b89\u5ba4\u5948\u7f8e\u6075\u3068\u5c71P\u306e\u3075\u3041\u3093\u3067\u3057\u2661","protected":false,"verified":false,"followers_count":131,"friends_count":175,"listed_count":0,"favourites_count":92,"statuses_count":424,"created_at":"Wed Aug 05 23:23:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646699200776802304\/sLxeY6x4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646699200776802304\/sLxeY6x4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307237290\/1446717694","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:59 +0000 2015","id":663725727913766912,"id_str":"663725727913766912","text":"11\/9\u300e5\u21929\uff5e\u79c1\u306b\u604b\u3057\u305f\u304a\u574a\u3055\u3093\uff5e\u300f\u7b2c5\u8a71 #5\u6642\u304b\u30899\u6642\u307e\u3067 #\u77f3\u539f\u3055\u3068\u307f #\u5c71\u4e0b\u667a\u4e45 \u5c71P https:\/\/t.co\/Vlp5s4EimM","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2490997904,"id_str":"2490997904","name":"\u5c71\u4e0b\u667a\u4e45\u2661\u753b\u50cf&Vine\u2606*\u00b0","screen_name":"yamap_cap","location":null,"url":null,"description":"\u5c71P\u306e\u753b\u50cf\u2605Vine\u260530\u79d2\u52d5\u753b\u3092\u4e0d\u5b9a\u671f\u6295\u4e0b\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":3843,"friends_count":0,"listed_count":12,"favourites_count":0,"statuses_count":1425,"created_at":"Mon May 12 06:37:28 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642715060297592832\/o4HMsfB2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642715060297592832\/o4HMsfB2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2490997904\/1443852572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":55,"entities":{"hashtags":[{"text":"5\u6642\u304b\u30899\u6642\u307e\u3067","indices":[25,34]},{"text":"\u77f3\u539f\u3055\u3068\u307f","indices":[35,41]},{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[42,47]}],"urls":[{"url":"https:\/\/t.co\/Vlp5s4EimM","expanded_url":"https:\/\/vine.co\/v\/elM9wKp30HK","display_url":"vine.co\/v\/elM9wKp30HK","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5\u6642\u304b\u30899\u6642\u307e\u3067","indices":[40,49]},{"text":"\u77f3\u539f\u3055\u3068\u307f","indices":[50,56]},{"text":"\u5c71\u4e0b\u667a\u4e45","indices":[57,62]}],"urls":[{"url":"https:\/\/t.co\/Vlp5s4EimM","expanded_url":"https:\/\/vine.co\/v\/elM9wKp30HK","display_url":"vine.co\/v\/elM9wKp30HK","indices":[66,89]}],"user_mentions":[{"screen_name":"yamap_cap","name":"\u5c71\u4e0b\u667a\u4e45\u2661\u753b\u50cf&Vine\u2606*\u00b0","id":2490997904,"id_str":"2490997904","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135399424,"id_str":"663728060135399424","text":"\uc544 \uadf8\uac70\uc0dd\uac01\ub09c\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1961929704,"id_str":"1961929704","name":"\uacac\uc6b0","screen_name":"teekei_2721","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":123,"friends_count":160,"listed_count":0,"favourites_count":641,"statuses_count":3156,"created_at":"Tue Oct 15 05:32:11 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486541265811415040\/zBSQJYgi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486541265811415040\/zBSQJYgi.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661232749848584192\/SSO_O86q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661232749848584192\/SSO_O86q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1961929704\/1447079378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135579648,"id_str":"663728060135579648","text":"@Experimentboy : ah ouais quand m\u00eame !! \ud83e\udd18\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721973432737792,"in_reply_to_status_id_str":"663721973432737792","in_reply_to_user_id":808763430,"in_reply_to_user_id_str":"808763430","in_reply_to_screen_name":"Experimentboy","user":{"id":475173200,"id_str":"475173200","name":"Sam Romey","screen_name":"samfoxr81","location":"saint chamas, fr","url":"http:\/\/www.perdu.com","description":"just a regular guy in a regular world :-)","protected":false,"verified":false,"followers_count":37,"friends_count":158,"listed_count":2,"favourites_count":285,"statuses_count":2239,"created_at":"Thu Jan 26 19:27:57 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565561299766349824\/anxfU5Ki_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565561299766349824\/anxfU5Ki_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475173200\/1374756500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Experimentboy","name":"Experimentboy","id":808763430,"id_str":"808763430","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122820608,"id_str":"663728060122820608","text":"RT @nsrd_sng: \u6751\u4e0a\u62db\u304d\u732b\u30d1\u30fc\u30ab\u30fcver.\u5b8c\u6210\u3057\u307e\u3057\u305f\uff01\uff01\n\u732b\u3092\u63cf\u304f\u3068\u3053\u308d\u304b\u3089\u5168\u3066\u3057\u305f\u306e\u3067\u9054\u6210\u611f\u3057\u304b\u3042\u308a\u307e\u305b\u3093\u2026\n\u5b57\u4f53\u3084\u30d0\u30e9\u30f3\u30b9\u304c\u9055\u3046\u306e\u306b\u306f\u89e6\u308c\u306a\u3044\u3067\u4e0b\u3055\u3044\u2026\u7b11\n\u3053\u308c\u7740\u3066\u672d\u5e4c\u3068\u540d\u53e4\u5c4b24\u65e5(26\u65e5\uff1f)\u306b\u51fa\u6ca1\u3057\u307e\u3059\uff01\n#\u5c11\u3057\u3067\u3082\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228614942,"id_str":"3228614942","name":"\u30b7\u30fc\u30af\u30ec\u30c3\u30c8\u304b\u306e\u3093","screen_name":"anonkj012","location":"\u3084\u3055\u3057\u3055\u30ec\u30c3\u30c9","url":null,"description":"\u304b\u306e\u3093\u3063\u3066\u3088\u3093\u3067\u304f\u3060\u3055\u3044\u3001\u30bf\u30e1\u3067\u3044\u3044\u3067\u3059\uff01\u203b\u305d\u308c\u7cfb\u306e\u3042\u3044\u3055\u3064\u3044\u3089\u306a\u3044\u3067\u3059\uff01\u304a\u304d\u304c\u308b\u306b\u25ce\u95a2\u30b8\u30e3\u30cb\u753b\u50cf100%\u2606","protected":false,"verified":false,"followers_count":110,"friends_count":125,"listed_count":0,"favourites_count":1010,"statuses_count":1332,"created_at":"Thu May 28 04:11:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661469901387763712\/yQqkug37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661469901387763712\/yQqkug37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228614942\/1446542180","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:37:20 +0000 2015","id":663696872922484736,"id_str":"663696872922484736","text":"\u6751\u4e0a\u62db\u304d\u732b\u30d1\u30fc\u30ab\u30fcver.\u5b8c\u6210\u3057\u307e\u3057\u305f\uff01\uff01\n\u732b\u3092\u63cf\u304f\u3068\u3053\u308d\u304b\u3089\u5168\u3066\u3057\u305f\u306e\u3067\u9054\u6210\u611f\u3057\u304b\u3042\u308a\u307e\u305b\u3093\u2026\n\u5b57\u4f53\u3084\u30d0\u30e9\u30f3\u30b9\u304c\u9055\u3046\u306e\u306b\u306f\u89e6\u308c\u306a\u3044\u3067\u4e0b\u3055\u3044\u2026\u7b11\n\u3053\u308c\u7740\u3066\u672d\u5e4c\u3068\u540d\u53e4\u5c4b24\u65e5(26\u65e5\uff1f)\u306b\u51fa\u6ca1\u3057\u307e\u3059\uff01\n#\u5c11\u3057\u3067\u3082\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT https:\/\/t.co\/unoGwvMmIV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1899674311,"id_str":"1899674311","name":"\u306a\u3059\u3089\u3060\u672d\u5e4c\u540d\u53e4\u5c4b24","screen_name":"nsrd_sng","location":"\u6751\u4e0a\u30d0\u30c3\u30b8\u73fe\u5728121(\uff1f)\u500b","url":null,"description":"\u672d\u5e4c\/\u9ad82\/\u6751\u4e0a\u62c5\/\u540c\u62c5\u30b9\u30ad\u30b9\u30ad\/\u30d7\u30ed\u30b4\u30eb\u30d5\u30a1\u30fc\u76ee\u6307\u3057\u3066\u308b","protected":false,"verified":false,"followers_count":914,"friends_count":830,"listed_count":39,"favourites_count":885,"statuses_count":8655,"created_at":"Tue Sep 24 08:16:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506216419931852800\/A9qDFs3W_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506216419931852800\/A9qDFs3W_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1899674311\/1396007836","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":94,"entities":{"hashtags":[{"text":"\u5c11\u3057\u3067\u3082\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[100,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696848150904833,"id_str":"663696848150904833","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696848150904833,"id_str":"663696848150904833","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663696864257028100,"id_str":"663696864257028100","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsyBiUsAQmDLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsyBiUsAQmDLa.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"medium":{"w":584,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":584,"h":657,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c11\u3057\u3067\u3082\u6b32\u3057\u3044\u3068\u601d\u3063\u305f\u3089RT","indices":[114,129]}],"urls":[],"user_mentions":[{"screen_name":"nsrd_sng","name":"\u306a\u3059\u3089\u3060\u672d\u5e4c\u540d\u53e4\u5c4b24","id":1899674311,"id_str":"1899674311","indices":[3,12]}],"symbols":[],"media":[{"id":663696848150904833,"id_str":"663696848150904833","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663696872922484736,"source_status_id_str":"663696872922484736","source_user_id":1899674311,"source_user_id_str":"1899674311"}]},"extended_entities":{"media":[{"id":663696848150904833,"id_str":"663696848150904833","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsxFiUwAEXCWX.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663696872922484736,"source_status_id_str":"663696872922484736","source_user_id":1899674311,"source_user_id_str":"1899674311"},{"id":663696864257028100,"id_str":"663696864257028100","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsyBiUsAQmDLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsyBiUsAQmDLa.jpg","url":"https:\/\/t.co\/unoGwvMmIV","display_url":"pic.twitter.com\/unoGwvMmIV","expanded_url":"http:\/\/twitter.com\/nsrd_sng\/status\/663696872922484736\/photo\/1","type":"photo","sizes":{"medium":{"w":584,"h":657,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":584,"h":657,"resize":"fit"}},"source_status_id":663696872922484736,"source_status_id_str":"663696872922484736","source_user_id":1899674311,"source_user_id_str":"1899674311"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135374848,"id_str":"663728060135374848","text":"\u4e8c\u4eba\u3067\u3057\u3063\u307d\u308a\u304b\u3041\uff1f #cav_anime","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2594878526,"id_str":"2594878526","name":"\u6012\u308c\u308b\u5e3d\u5b50\u5c4b","screen_name":"furioushatter","location":"\u95a2\u897f (Earth-1218)","url":null,"description":"\u6d77\u5916\u6620\u753b\u30fb\u30c9\u30e9\u30de\u30cd\u30bf\u3092\u898b\u51fa\u3057\u3066\u60a6\u306b\u5165\u308b\u4eba\u3002In this Style 10\/9","protected":false,"verified":false,"followers_count":57,"friends_count":61,"listed_count":3,"favourites_count":1855,"statuses_count":20750,"created_at":"Sun Jun 29 14:30:13 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485426022427271168\/9hcUlTzW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485426022427271168\/9hcUlTzW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594878526\/1405155961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cav_anime","indices":[11,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118773761,"id_str":"663728060118773761","text":"RT @jenlouden: Embrace small steps & track those steps to keep making real progress on something you care deeply about: https:\/\/t.co\/tAaah0\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149586023,"id_str":"4149586023","name":"Brandice Valentino","screen_name":"HeartMindful","location":"Washington, DC area","url":null,"description":"creator: http:\/\/HeartofMindfulLiving.com","protected":false,"verified":false,"followers_count":2,"friends_count":80,"listed_count":0,"favourites_count":5,"statuses_count":6,"created_at":"Mon Nov 09 14:17:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722929666945024\/91uyYMp-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722929666945024\/91uyYMp-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4149586023\/1447079335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:30:28 +0000 2015","id":662381489192050688,"id_str":"662381489192050688","text":"Embrace small steps & track those steps to keep making real progress on something you care deeply about: https:\/\/t.co\/tAaah01L54","source":"\u003ca href=\"http:\/\/meetedgar.com\" rel=\"nofollow\"\u003eMeet Edgar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16016852,"id_str":"16016852","name":"Jennifer Louden","screen_name":"jenlouden","location":"Longmont, CO","url":"http:\/\/www.jenniferlouden.com\/about-2","description":"Best-selling author, champion of creative joy, speaker, teacher of teachers & life satisfaction & writers, curious s-hero, and generally awe struck by it all","protected":false,"verified":false,"followers_count":14813,"friends_count":1820,"listed_count":922,"favourites_count":43,"statuses_count":34247,"created_at":"Wed Aug 27 20:14:11 +0000 2008","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"53A7AA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/216278903\/jen_louden_twitter_background.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/216278903\/jen_louden_twitter_background.jpg","profile_background_tile":false,"profile_link_color":"338C81","profile_sidebar_border_color":"DFDB00","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"846300","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563417873331150848\/1rVQR0ug_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563417873331150848\/1rVQR0ug_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16016852\/1423164251","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tAaah01L54","expanded_url":"http:\/\/bit.ly\/20tYO7n","display_url":"bit.ly\/20tYO7n","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tAaah01L54","expanded_url":"http:\/\/bit.ly\/20tYO7n","display_url":"bit.ly\/20tYO7n","indices":[124,144]}],"user_mentions":[{"screen_name":"jenlouden","name":"Jennifer Louden","id":16016852,"id_str":"16016852","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143833088,"id_str":"663728060143833088","text":"\u3053\u308c\u3001\u30c7\u30ec\u3066\u308b\u306e\uff1f\u982d\u306e\u30cd\u30b8\u304c\u3069\u3063\u304b\u3044\u3063\u305f\u306e\u304b\u3068","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3757116253,"id_str":"3757116253","name":"\u8d64\u8466(18)@\u71c1","screen_name":"hq_aka5","location":null,"url":null,"description":"\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\u975e.\u516c\u5f0f\u306a\u308a\u304d\u308a\u8d64.\u8466\u4eac.\u6cbb\u3067\u3059 18\u6b73(\u52a0\u9f62\u5f0f) \u9ad8\u6821\u5352\u696d\u3057\u3066\u5927\u5b66\u9032\u5b66\u30d0\u30ec\u30fc\u3084\u3063\u3066\u307e\u3059 24\u6642\u9593\u975e\u5bfe\u5fdc \u6642\u7dda\u4f1a\u8a71\u591a \u304a\u5deb\u5c71\u622f,\u7325\u8ac7\u6709 \u25ef\u2192\u540c\u4f5c \u540c\u9854 \u4e00\u822c \u00d7\u2192\u56fa\u5b9a\u5973\u4f53\u7b49 \u516c\u5f0f\u30ea\u30c4 \u30d5\u30a9\u30ed\u30fc\u3059\u308b\u969b\u306f\u6328\u62f6\u5fc5\u9808\u3067\u3059 \u6b7b\u57a2\u306f\u62e1\u6563\u4ee5\u5916\u306a\u3089ok\u3067\u3059 \u3088\u304f\u7a7a\u306e\u5199\u771f\u7b49\u64ae\u3063\u3066\u307e\u3059 ic Free \u533a\u5225\u540d \u71c1(\u3086\u3046)","protected":false,"verified":false,"followers_count":44,"friends_count":44,"listed_count":2,"favourites_count":403,"statuses_count":1794,"created_at":"Fri Oct 02 08:30:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649867606862598144\/_-0Mfsmx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649867606862598144\/_-0Mfsmx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3757116253\/1446635684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122816512,"id_str":"663728060122816512","text":"\u5b9f\u306f\u660e\u65e5\u304b\u3089\u30c7\u30b9\u30de\u30fc\u30c1\u5bf8\u524d\u306b\u306a\u308b\u3068\u5ba3\u544a\u3055\u308c\u305f\u306e\u3067\u3001\u8eab\u4f53\u304c\u3069\u3046\u306a\u308b\u3053\u3068\u3084\u3089\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1338954738,"id_str":"1338954738","name":"\u3086\u304d\u307f\u306d\u3080\u3064\u304d","screen_name":"mtk_ykmn","location":"\u305d\u306e\u3078\u3093","url":null,"description":"\u6700\u8fd1\u5199\u771f\u64ae\u308c\u3066\u306a\u3044","protected":false,"verified":false,"followers_count":96,"friends_count":151,"listed_count":2,"favourites_count":301,"statuses_count":10175,"created_at":"Tue Apr 09 11:42:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179477113\/MddhTBd_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179477113\/MddhTBd_.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655006438188691456\/RhtpvWOX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655006438188691456\/RhtpvWOX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1338954738\/1440258086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075661"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139720704,"id_str":"663728060139720704","text":"ppl just wake up everyday like, \"okay, so I'm gonna lie today\"\ud83d\ude00\ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":332570889,"id_str":"332570889","name":"v\u0113nu$.","screen_name":"_Fashi0nista","location":"jer$ey bih.","url":null,"description":"badgalr\u0113r\u0113\u2764\/god to these bitches.","protected":false,"verified":false,"followers_count":2971,"friends_count":1849,"listed_count":4,"favourites_count":24596,"statuses_count":109123,"created_at":"Sun Jul 10 01:57:46 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644550978\/tf9feiw10rm9vdvqtmbn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644550978\/tf9feiw10rm9vdvqtmbn.jpeg","profile_background_tile":true,"profile_link_color":"858585","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8A8A8A","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658038050954481664\/k5z-LL7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658038050954481664\/k5z-LL7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/332570889\/1446888823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139773954,"id_str":"663728060139773954","text":"@NorahKSA3 @500Hogys @SaudiNews50 \u0648\u0625\u064a\u0627\u0643","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727925968138240,"in_reply_to_status_id_str":"663727925968138240","in_reply_to_user_id":4109665540,"in_reply_to_user_id_str":"4109665540","in_reply_to_screen_name":"NorahKSA3","user":{"id":2433561263,"id_str":"2433561263","name":"\u0623\u062d\u0645\u062f Ahmad","screen_name":"AzahmadzXxX","location":"evreywhere","url":null,"description":"Dont ask.","protected":false,"verified":false,"followers_count":11209,"friends_count":408,"listed_count":6,"favourites_count":17,"statuses_count":50758,"created_at":"Mon Mar 24 15:43:15 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611239375116972032\/ZW8JT_lE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611239375116972032\/ZW8JT_lE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2433561263\/1443898684","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NorahKSA3","name":"\u0646\u0648\u0631\u0629","id":4109665540,"id_str":"4109665540","indices":[0,10]},{"screen_name":"500Hogys","name":":\u061b:&&&","id":2739548948,"id_str":"2739548948","indices":[11,20]},{"screen_name":"SaudiNews50","name":"\u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","id":474886468,"id_str":"474886468","indices":[21,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110237696,"id_str":"663728060110237696","text":"Toronto hospital becomes world\u2019s first to treat brain tumour with non-invasive procedure https:\/\/t.co\/Wk1pu6b32r","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251714263,"id_str":"251714263","name":"lisa MELIC","screen_name":"RealEstateFEVER","location":"Toronto 647-469-7979","url":"http:\/\/lisamelic.com","description":"Lisa's personal nature and keen sense of humour have helped countless people to weather the ups and downs of Buying and Selling homes with peace of mind!","protected":false,"verified":false,"followers_count":735,"friends_count":1521,"listed_count":9,"favourites_count":11,"statuses_count":2835,"created_at":"Sun Feb 13 18:12:19 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/851465556\/1fd47c777cb3b75b36548f1ce7afbceb.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/851465556\/1fd47c777cb3b75b36548f1ce7afbceb.gif","profile_background_tile":false,"profile_link_color":"666666","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"ED2F4F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000610869607\/7ed3fbfbd708c477bbd45ceefe84e562_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000610869607\/7ed3fbfbd708c477bbd45ceefe84e562_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251714263\/1366820514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Wk1pu6b32r","expanded_url":"http:\/\/fb.me\/51vPqUJEw","display_url":"fb.me\/51vPqUJEw","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060135550980,"id_str":"663728060135550980","text":"Let's take an expert's advice & have the \"most green official residence in the world\". #24 Sussex #cdnpoli @DiamondSchmitt #Globeandmail","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1066649538,"id_str":"1066649538","name":"Arleen McCallum","screen_name":"ArleenMcCallum","location":"Toronto","url":"http:\/\/www.arleenmccallum.ca","description":"painter","protected":false,"verified":false,"followers_count":68,"friends_count":123,"listed_count":7,"favourites_count":96,"statuses_count":2050,"created_at":"Sun Jan 06 20:42:43 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000679922634\/f45f6eb39d68050bdfde64a39604c463_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000679922634\/f45f6eb39d68050bdfde64a39604c463_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1066649538\/1424635751","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cdnpoli","indices":[102,110]},{"text":"Globeandmail","indices":[127,140]}],"urls":[],"user_mentions":[{"screen_name":"DiamondSchmitt","name":"Diamond Schmitt ","id":51007684,"id_str":"51007684","indices":[111,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075664"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060110245888,"id_str":"663728060110245888","text":"\u3088\u301c\u3057\u3001\u4eca\u6708\u8cb7\u3046\u7269\u308f\u3082\u3049\u3060\u3043\u305f\u3043\u8cb7\u3063\u305f\u304b\u306a\u301c\u266a(\u314e\u2200\u314e)\u300d\n\u3043\u3083\u301c\u91d1\u304c\u306d\u301c\u306a\u3041\u301c\u59a5\u5354\u3057\u3066\u751f\u6d3b\u3057\u305f\u304f\u306d\u301c(-\u3002-)y-\u309c\u309c\u309c\n\u3068\u308a\u3041\u3047\u305a\u4eca\u308f\u4ed5\u4e8b\u3072\u305f\u3059\u3089\u9811\u5f35\u308b\u3057\u306a\u306a\u3043\u306a(^_-)y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3023839722,"id_str":"3023839722","name":"\u0416\u2026\u0439\u00a1\u043a\u043e\u044fu\u2026\u0436","screen_name":"k_ssss_k","location":null,"url":null,"description":"\u0416\u2026akuarisuto\u2026\u0436 \u0416\u2026\u5927\u962a\u751f\u80b2\u2026\u73fe\u5728\u52dd\u6d66\u2026\u0436 \u0416\u2026SUBCONSCIOUS\u2026\u0436","protected":false,"verified":false,"followers_count":69,"friends_count":78,"listed_count":0,"favourites_count":648,"statuses_count":942,"created_at":"Tue Feb 17 12:28:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660840612090916864\/3XoOQpyJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660840612090916864\/3XoOQpyJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023839722\/1446392400","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075658"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139638784,"id_str":"663728060139638784","text":"Nilalait mo porke hindi nag aaral ay wala ng alam? ikaw nag aaral ka nga PERO KUNG MATALINO KATALAGA ALAM MONG BOBO KA !!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":977678263,"id_str":"977678263","name":"Laimer Matsumoto","screen_name":"Matsuwabe","location":"Japan\u2708","url":"http:\/\/facebook.com\/Matsuwabe","description":"SuperMan.\u2667 illuminati \u2664 Virdilandia \u2606\n\u00d7 17 no 38 \u00d7 Officialfacebook: http:\/\/facebook.com\/Matsuwabe OfficialInstagram: http:\/\/instagram.com\/matsuwabe","protected":false,"verified":false,"followers_count":21184,"friends_count":219,"listed_count":9,"favourites_count":3000,"statuses_count":9210,"created_at":"Thu Nov 29 05:40:48 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606460455809187840\/wV6-rDaL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606460455809187840\/wV6-rDaL.jpg","profile_background_tile":true,"profile_link_color":"456456","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662779366988902400\/N1zKuBSh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662779366988902400\/N1zKuBSh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/977678263\/1446513761","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060131356672,"id_str":"663728060131356672","text":"Ana Cheri Shows off Her Bikini Body at the Pool - https:\/\/t.co\/sws3Nlivq7 @_anacheri #AnaCheri #Britain","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2245525571,"id_str":"2245525571","name":"Bikini Photos","screen_name":"bikini_photos1","location":"Miami, FL","url":"http:\/\/www.malibucelebpics.com\/","description":"Celebrity in bikini","protected":false,"verified":false,"followers_count":222,"friends_count":846,"listed_count":20,"favourites_count":3,"statuses_count":28471,"created_at":"Thu Dec 26 22:44:26 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163099279\/iJgQlUHh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163099279\/iJgQlUHh.jpeg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604016988600549376\/x2UrHwSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604016988600549376\/x2UrHwSm_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AnaCheri","indices":[85,94]},{"text":"Britain","indices":[95,103]}],"urls":[{"url":"https:\/\/t.co\/sws3Nlivq7","expanded_url":"http:\/\/www.malibucelebpics.com\/all-celebs\/191-ana-cheri-shows-off-her-bikini-body-at-the-pool-in-las-vegas","display_url":"malibucelebpics.com\/all-celebs\/191\u2026","indices":[50,73]}],"user_mentions":[{"screen_name":"_anacheri","name":"Ana Cheri","id":58372595,"id_str":"58372595","indices":[74,84]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075663"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060118736896,"id_str":"663728060118736896","text":"RT @abandoned_pic: Statue of Jesus at the bottom of the sea near Malta https:\/\/t.co\/tMrzSzVDVx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259016494,"id_str":"1259016494","name":"b.j","screen_name":"ThisIsBankole","location":"Lagos \u2022 Edo ","url":"https:\/\/about.me\/jamgbadibankole","description":"Digital & Social Media , @360nobs || (B)ankole (J)amgbadi || Not Yoruba, #ProudlyEdo","protected":false,"verified":false,"followers_count":1079,"friends_count":863,"listed_count":16,"favourites_count":289,"statuses_count":30218,"created_at":"Mon Mar 11 09:22:50 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658694429277048832\/DqHRVvyV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658694429277048832\/DqHRVvyV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1259016494\/1445879941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 03:00:54 +0000 2015","id":661739870801502209,"id_str":"661739870801502209","text":"Statue of Jesus at the bottom of the sea near Malta https:\/\/t.co\/tMrzSzVDVx","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503681629,"id_str":"503681629","name":"Abandoned Pictures","screen_name":"abandoned_pic","location":null,"url":null,"description":"Amazing images of abandoned places from across the globe.","protected":false,"verified":false,"followers_count":130393,"friends_count":32,"listed_count":748,"favourites_count":27,"statuses_count":28,"created_at":"Sat Feb 25 23:08:34 +0000 2012","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659337192339279873\/RgI52jjW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659337192339279873\/RgI52jjW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503681629\/1446033177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":603,"favorite_count":1143,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661739870667341824,"id_str":"661739870667341824","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","url":"https:\/\/t.co\/tMrzSzVDVx","display_url":"pic.twitter.com\/tMrzSzVDVx","expanded_url":"http:\/\/twitter.com\/abandoned_pic\/status\/661739870801502209\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":330,"resize":"fit"},"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661739870667341824,"id_str":"661739870667341824","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","url":"https:\/\/t.co\/tMrzSzVDVx","display_url":"pic.twitter.com\/tMrzSzVDVx","expanded_url":"http:\/\/twitter.com\/abandoned_pic\/status\/661739870801502209\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":330,"resize":"fit"},"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"abandoned_pic","name":"Abandoned Pictures","id":503681629,"id_str":"503681629","indices":[3,17]}],"symbols":[],"media":[{"id":661739870667341824,"id_str":"661739870667341824","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","url":"https:\/\/t.co\/tMrzSzVDVx","display_url":"pic.twitter.com\/tMrzSzVDVx","expanded_url":"http:\/\/twitter.com\/abandoned_pic\/status\/661739870801502209\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":330,"resize":"fit"},"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":661739870801502209,"source_status_id_str":"661739870801502209","source_user_id":503681629,"source_user_id_str":"503681629"}]},"extended_entities":{"media":[{"id":661739870667341824,"id_str":"661739870667341824","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS746ATXAAAEFa3.jpg","url":"https:\/\/t.co\/tMrzSzVDVx","display_url":"pic.twitter.com\/tMrzSzVDVx","expanded_url":"http:\/\/twitter.com\/abandoned_pic\/status\/661739870801502209\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":330,"resize":"fit"},"medium":{"w":600,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":661739870801502209,"source_status_id_str":"661739870801502209","source_user_id":503681629,"source_user_id_str":"503681629"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075660"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127023104,"id_str":"663728060127023104","text":"\u0642\u0627\u0644 \u0631\u0633\u0648\u0644 \u0627\u0644\u0644\u0647 : \u062d\u0642 \u0627\u0644\u0644\u0647 \u0639\u0644\u0649 \u0627\u0644\u0639\u0628\u0627\u062f \u0623\u0646 \u064a\u0639\u0628\u062f\u0648\u0647 \u0648\u0644\u0627 \u064a\u0634\u0631\u0643\u0648\u0627 \u0628\u0647 \u0634\u064a\u0626\u0627 - \u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a \ufdfa #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2202420027,"id_str":"2202420027","name":"\u0627\u0644\u0644\u0647\u0645 \u0623\u062d\u0641\u0638 \u0627\u0645\u064a \u0648\u0627\u0628\u0648\u064a","screen_name":"naif1391m1413","location":null,"url":null,"description":"\u0644\u0623\u0628\u064a \u0648\u0627\u0645\u064a \u0627\u0644\u0644\u0647 \u064a\u062d\u0641\u0636\u0647\u0645 \u064a\u0627\u0631\u0628","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3020,"created_at":"Sat Nov 30 23:39:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000812888359\/3e2bc7362cdf2bee3fdc0fc79b4337b6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000812888359\/3e2bc7362cdf2bee3fdc0fc79b4337b6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2202420027\/1385855569","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ufdfa","indices":[81,83]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060143788032,"id_str":"663728060143788032","text":"@itariori_ZZN \ub4b7\ub9c8\ub2f9\uc5d0 \ubcc4\uad00\uc73c\ub85c \uac00\ub294 \uae38\uc774 \uc788\uc2b5\ub2c8\ub2e4.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727056698503170,"in_reply_to_status_id_str":"663727056698503170","in_reply_to_user_id":4143237434,"in_reply_to_user_id_str":"4143237434","in_reply_to_screen_name":"itariori_ZZN","user":{"id":4137001753,"id_str":"4137001753","name":"\uc81c\ub85c\uc790\ud0a4 \uce74\uc624\ub9ac","screen_name":"Kaori_zzn","location":null,"url":null,"description":"\uc81c\ub85c\uc790\ud0a4 \uc7a5\ub140 \/ 17\uc138 \/ 164cm","protected":false,"verified":false,"followers_count":20,"friends_count":20,"listed_count":0,"favourites_count":5,"statuses_count":52,"created_at":"Thu Nov 05 16:52:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662316755562311680\/ikpet0hn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662316755562311680\/ikpet0hn_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"itariori_ZZN","name":"\uc81c\ub85c\uc790\ud0a4 \uc774\ud0c0\ub9ac\uc624\ub9ac","id":4143237434,"id_str":"4143237434","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080075666"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139606016,"id_str":"663728060139606016","text":"\u5b9f\u7528\u5316\u3055\u308c\u305f\u3089\u304b\u306a\u308a\u3044\u3044\u30cb\u30e5\u30fc\u30b9\u3058\u3083\u306a\u3044\uff01\uff1f https:\/\/t.co\/NQT38OP9FG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95624555,"id_str":"95624555","name":"KEIKO","screen_name":"keiko0829","location":"\u5922\u306e\u306a\u304b","url":"http:\/\/blog.livedoor.jp\/keiko_flash\/","description":"\u30ed\u30c3\u30af\u3068\u8aad\u66f8\u3068\u6620\u753b\u3001\u3068\u304d\u3069\u304d\u843d\u8a9e\u3002\u305d\u3057\u3066\u5199\u771f\u3002 \u3067\u3001\u306a\u305c\u304b\u5c71\u767b\u308a\u3092\u306f\u3058\u3081\u3066\u3057\u307e\u3063\u305f\u3002\u4fee\u884c\u306e\u3088\u3046\u306b\u5c71\u306b\u767b\u3063\u3066\u3044\u308b\u3002 \u8fd1\u9803\u697d\u3057\u3044\u3068\u601d\u3046\u3053\u3068\u306f\u3001\u5fdc\u7528\u3057\u3066\u9032\u5316\u3059\u308b\u3053\u3068\u3002 \u30db\u30f3\u30c8\u306f\u65c5\u3057\u3066\u66ae\u3089\u3057\u305f\u3044\u3002 \n\u305d\u3057\u3066\u65b0\u3057\u3044\u65c5\u304c\u306f\u3058\u307e\u3063\u305f\u3002","protected":false,"verified":false,"followers_count":316,"friends_count":166,"listed_count":16,"favourites_count":360,"statuses_count":20263,"created_at":"Wed Dec 09 11:10:28 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/183894339\/_____jpg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/183894339\/_____jpg.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"E8EEF0","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1397273274\/__72_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1397273274\/__72_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663682240027627521,"quoted_status_id_str":"663682240027627521","quoted_status":{"created_at":"Mon Nov 09 11:39:11 +0000 2015","id":663682240027627521,"id_str":"663682240027627521","text":"\u3010\u3059\u3044\u81d3\u304c\u3093\u767a\u898b\u306e\u691c\u67fb\u30ad\u30c3\u30c8\u958b\u767a\u3011\u304c\u3093\u306e\u4e2d\u3067\u3082\u65e9\u671f\u767a\u898b\u304c\u96e3\u3057\u3044\u3059\u3044\u81d3\u304c\u3093\u3092\u3001\u8840\u6db2\u3092\u8abf\u3079\u308b\u3060\u3051\u3067\u9ad8\u3044\u78ba\u7387\u3067\u898b\u3064\u3051\u51fa\u305b\u308b\u691c\u67fb\u30ad\u30c3\u30c8\u3092\u56fd\u7acb\u304c\u3093\u7814\u7a76\u30bb\u30f3\u30bf\u30fc\u306e\u30c1\u30fc\u30e0\u304c\u958b\u767a\u3057\u3001\uff13\u5e74\u5f8c\u3092\u3081\u3069\u306b\u5b9f\u7528\u5316\u3092\u76ee\u6307\u3059\u3053\u3068\u306b\u3057\u3066\u3044\u307e\u3059\u3002https:\/\/t.co\/AeTQxuAatI","source":"\u003ca href=\"http:\/\/www.nhk.or.jp\/\" rel=\"nofollow\"\u003eNHK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227233751,"id_str":"227233751","name":"NHK\u79d1\u5b66\u6587\u5316\u90e8","screen_name":"nhk_kabun","location":"\u6771\u4eac\u90fd\u6e0b\u8c37\u533a\u795e\u5357","url":"http:\/\/www.nhk.or.jp\/kabun-blog\/","description":"\uff2e\uff28\uff2b\u5831\u9053\u5c40\u79d1\u5b66\u6587\u5316\u90e8\uff1d\u300c\u304b\u3076\u3093\u300d\u306e\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u3002\u300c\u79d1\u5b66\u300d\u3068\u300c\u6587\u5316\u300d\u306e\u5c02\u9580\u8a18\u8005\u305f\u3061\u304c\u53d6\u6750\u3057\u305f\u69d8\u3005\u306a\u8a71\u984c\u3084\u3001\u6771\u65e5\u672c\u5927\u9707\u707d\u3001\u539f\u767a\u4e8b\u6545\u306b\u95a2\u3059\u308b\u30cb\u30e5\u30fc\u30b9\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002\u3054\u8cea\u554f\u306b\u304a\u7b54\u3048\u3067\u304d\u306a\u304b\u3063\u305f\u308a\u56de\u7b54\u306b\u6642\u9593\u304c\u304b\u304b\u3063\u305f\u308a\u3059\u308b\u4e8b\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002\u25bc\u5229\u7528\u898f\u7d04\u306f\u3053\u3061\u3089\u2192http:\/\/nhk.jp\/rules","protected":false,"verified":true,"followers_count":295898,"friends_count":100513,"listed_count":18097,"favourites_count":2221,"statuses_count":30267,"created_at":"Thu Dec 16 08:14:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"595959","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000149742525\/7hHqVNsA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000149742525\/7hHqVNsA.jpeg","profile_background_tile":true,"profile_link_color":"9B74A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BDBDBD","profile_text_color":"E183C6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653944661636071425\/UUIWDQqO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653944661636071425\/UUIWDQqO_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AeTQxuAatI","expanded_url":"http:\/\/nhk.jp\/N4M84JwS","display_url":"nhk.jp\/N4M84JwS","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NQT38OP9FG","expanded_url":"https:\/\/twitter.com\/nhk_kabun\/status\/663682240027627521","display_url":"twitter.com\/nhk_kabun\/stat\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075665"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127055873,"id_str":"663728060127055873","text":"@kisft2tfxxx \u3044\u3048\u3044\u3048\uff01\u266a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713314065616896,"in_reply_to_status_id_str":"663713314065616896","in_reply_to_user_id":3297759510,"in_reply_to_user_id_str":"3297759510","in_reply_to_screen_name":"kisft2tfxxx","user":{"id":3976211952,"id_str":"3976211952","name":"\u307f\u3046xxx@\u540d\u53e4\u5c4b\u30c9\u30fc\u30e028\u65e5\u6e08\u307f\u2661","screen_name":"miutaisukexxx","location":null,"url":null,"description":"\u4ffa\u8db3\u65cf\/\u4e2d\u5b662\u5e7413\u6b73\/\u592a\u8f14\u62c5\/\u65c5\u9b42&\u5730\u7403\u9b42\u53c2\u6226\u6e08\u307f\u2729\/\u6c17\u8efd\u306b\u7d61\u3081\u308b\u4ffa\u8db3\u3055\u3093\u3068\u53cb\u9054\u306b\u306a\u308a\u305f\u3044\uff01\uff01\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u2715(\u30d5\u30a9\u30ed\u30d0\u3057\u306a\u3044\u3088)\/\u3042\u3084\u307f\u3063\u305f\u3093family366\u53f7\/\u592a\u967d\u62c5311\u53f7","protected":false,"verified":false,"followers_count":70,"friends_count":55,"listed_count":1,"favourites_count":255,"statuses_count":687,"created_at":"Thu Oct 22 04:14:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660823093376495619\/MT01DHka_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660823093376495619\/MT01DHka_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3976211952\/1445487693","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kisft2tfxxx","name":"\u85e4\u30f6\u8c37\u304d\u3044\u3061\u3054\u2765\u2765\u30c8\u30d7\u753b\u5909\u3048\u307e\u3057\u305f\uff01","id":3297759510,"id_str":"3297759510","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075662"} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060122836992,"id_str":"663728060122836992","text":"RT @tahoesorensen: #TeachStrong is having your former S's come back to share their successes with you b\/c they know you care. \n#TBATs @Lily\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973927826,"id_str":"2973927826","name":"Arizona Bats","screen_name":"AZBatsA","location":null,"url":"http:\/\/www.badassteacher.org","description":"Badass Teachers Association was created to give voice to every teacher who refuses to be blamed failure of society to erase poverty and inequality through ed","protected":false,"verified":false,"followers_count":311,"friends_count":346,"listed_count":41,"favourites_count":1081,"statuses_count":10720,"created_at":"Mon Jan 12 00:24:05 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633110785716195328\/txFt3Y91_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633110785716195328\/txFt3Y91_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973927826\/1445142049","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:06:41 +0000 2015","id":663583466676588544,"id_str":"663583466676588544","text":"#TeachStrong is having your former S's come back to share their successes with you b\/c they know you care. \n#TBATs @Lily_NEA @AFTunion","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2374200738,"id_str":"2374200738","name":"Phil Sorensen","screen_name":"tahoesorensen","location":null,"url":null,"description":"Dad, Teacher, coach, sports enthusiast, union member, activist, BAT, Badger. Sharing info u & I may\/may not like. Tweets are my own.","protected":false,"verified":false,"followers_count":1239,"friends_count":1828,"listed_count":62,"favourites_count":1456,"statuses_count":18646,"created_at":"Wed Mar 05 18:50:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578937315592011776\/kZNCOyH__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578937315592011776\/kZNCOyH__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2374200738\/1436066848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"TeachStrong","indices":[0,12]},{"text":"TBATs","indices":[108,114]}],"urls":[],"user_mentions":[{"screen_name":"Lily_NEA","name":"Lily Eskelsen Garc\u00eda","id":2613691501,"id_str":"2613691501","indices":[115,124]},{"screen_name":"AFTunion","name":"AFT","id":45573874,"id_str":"45573874","indices":[125,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeachStrong","indices":[19,31]},{"text":"TBATs","indices":[127,133]}],"urls":[],"user_mentions":[{"screen_name":"tahoesorensen","name":"Phil Sorensen","id":2374200738,"id_str":"2374200738","indices":[3,17]},{"screen_name":"Lily_NEA","name":"Lily Eskelsen Garc\u00eda","id":2613691501,"id_str":"2613691501","indices":[134,140]},{"screen_name":"AFTunion","name":"AFT","id":45573874,"id_str":"45573874","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075661"} +{"delete":{"status":{"id":649626864613326848,"id_str":"649626864613326848","user_id":3461935753,"user_id_str":"3461935753"},"timestamp_ms":"1447080075986"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060139720705,"id_str":"663728060139720705","text":"\u274c\u274c https:\/\/t.co\/pEIkTYFEjD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1864708178,"id_str":"1864708178","name":"FANTASY","screen_name":"Leyreeleyreee","location":"Madrid, Vallecas","url":"http:\/\/i.instagram.com\/leyreescalona\/","description":"Si cres en ti, ni el cielo sera tu limite.\nQue tus enemigos no hagan imposibles tus sue\u00f1os.\n\u26bdJugadora del Rayo Vallecano.","protected":false,"verified":false,"followers_count":440,"friends_count":333,"listed_count":3,"favourites_count":2810,"statuses_count":16637,"created_at":"Sat Sep 14 19:14:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660132163547996160\/8y4NLqPM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660132163547996160\/8y4NLqPM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1864708178\/1446910399","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728048936787968,"id_str":"663728048936787968","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJNhXIAAm9cq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJNhXIAAm9cq.jpg","url":"https:\/\/t.co\/pEIkTYFEjD","display_url":"pic.twitter.com\/pEIkTYFEjD","expanded_url":"http:\/\/twitter.com\/Leyreeleyreee\/status\/663728060139720705\/photo\/1","type":"photo","sizes":{"large":{"w":616,"h":1024,"resize":"fit"},"medium":{"w":600,"h":997,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728048936787968,"id_str":"663728048936787968","indices":[3,26],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJNhXIAAm9cq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJNhXIAAm9cq.jpg","url":"https:\/\/t.co\/pEIkTYFEjD","display_url":"pic.twitter.com\/pEIkTYFEjD","expanded_url":"http:\/\/twitter.com\/Leyreeleyreee\/status\/663728060139720705\/photo\/1","type":"photo","sizes":{"large":{"w":616,"h":1024,"resize":"fit"},"medium":{"w":600,"h":997,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":565,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080075665"} +{"delete":{"status":{"id":663723387664117760,"id_str":"663723387664117760","user_id":878453330,"user_id_str":"878453330"},"timestamp_ms":"1447080076056"}} +{"delete":{"status":{"id":648180827965100032,"id_str":"648180827965100032","user_id":3461935753,"user_id_str":"3461935753"},"timestamp_ms":"1447080076060"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060131229696,"id_str":"663728060131229696","text":"Enter to #win bully sticks for dogs from @pawstruck_pets @emilyreviewscom #giveaway #sweepstakes Ends (11\/21) #GT https:\/\/t.co\/tZLXEn7sJA","source":"\u003ca href=\"http:\/\/giveawaytools.com\" rel=\"nofollow\"\u003eGiveaway Tools Confirmation\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2669877942,"id_str":"2669877942","name":"Kristina Leezer","screen_name":"KristinaLeezer","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":160,"friends_count":2015,"listed_count":62,"favourites_count":0,"statuses_count":9390,"created_at":"Tue Jul 22 16:30:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"win","indices":[9,13]},{"text":"giveaway","indices":[74,83]},{"text":"sweepstakes","indices":[84,96]},{"text":"GT","indices":[110,113]}],"urls":[{"url":"https:\/\/t.co\/tZLXEn7sJA","expanded_url":"http:\/\/bit.ly\/1WDY3sV","display_url":"bit.ly\/1WDY3sV","indices":[114,137]}],"user_mentions":[{"screen_name":"pawstruck_pets","name":"Pawstruck.com","id":1403764158,"id_str":"1403764158","indices":[41,56]},{"screen_name":"EmilyReviewsCom","name":"Emily Reviews","id":67432128,"id_str":"67432128","indices":[57,73]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075663"} +{"delete":{"status":{"id":596170481088090113,"id_str":"596170481088090113","user_id":568060610,"user_id_str":"568060610"},"timestamp_ms":"1447080076213"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060127121408,"id_str":"663728060127121408","text":"The Bathroom at Crowne Plaza London - The City. The Hotel is Located in London\u2019s historic \u2026 https:\/\/t.co\/p5T708YsfD https:\/\/t.co\/Ms3B1keysX","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22895976,"id_str":"22895976","name":"SafariOnTheBlog","screen_name":"SafariOnTheBlog","location":"London","url":"http:\/\/www.safariontheblog.com","description":"Blogger. Visual Story Teller. Photography Enthusiast. All things Art. Culture. Travel. Food. Lifestyle features and much more.","protected":false,"verified":false,"followers_count":1323,"friends_count":842,"listed_count":146,"favourites_count":2882,"statuses_count":13174,"created_at":"Thu Mar 05 08:01:11 +0000 2009","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645136185745113089\/9Mz39Qng_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645136185745113089\/9Mz39Qng_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22895976\/1442647446","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p5T708YsfD","expanded_url":"http:\/\/ift.tt\/1PxGZyZ","display_url":"ift.tt\/1PxGZyZ","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663728059695161344,"id_str":"663728059695161344","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJ1mW4AAzqAS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJ1mW4AAzqAS.jpg","url":"https:\/\/t.co\/Ms3B1keysX","display_url":"pic.twitter.com\/Ms3B1keysX","expanded_url":"http:\/\/twitter.com\/SafariOnTheBlog\/status\/663728060127121408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728059695161344,"id_str":"663728059695161344","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJ1mW4AAzqAS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJ1mW4AAzqAS.jpg","url":"https:\/\/t.co\/Ms3B1keysX","display_url":"pic.twitter.com\/Ms3B1keysX","expanded_url":"http:\/\/twitter.com\/SafariOnTheBlog\/status\/663728060127121408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080075662"} +{"delete":{"status":{"id":663727896545112064,"id_str":"663727896545112064","user_id":3154052535,"user_id_str":"3154052535"},"timestamp_ms":"1447080076294"}} +{"delete":{"status":{"id":644626578945609728,"id_str":"644626578945609728","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080076420"}} +{"created_at":"Mon Nov 09 14:41:15 +0000 2015","id":663728060131217409,"id_str":"663728060131217409","text":"\u7956\u7236\u306e\u6642\u8a08 https:\/\/t.co\/TLrn5AF9Ke","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150560443,"id_str":"150560443","name":"\u30d5\u30b8\u30e4\u30ab\u30e1\u30e9\u5e97 \u7528\u54c1","screen_name":"fujiyacamera_yh","location":null,"url":"http:\/\/www.fujiya-camera.co.jp","description":"\u30d5\u30b8\u30e4\u30ab\u30e1\u30e9\u5e97\u7528\u54c1\u9928 \u55b6\u696d\u6642\u959310:00~20:15 \u5728\u5eab\u3068\u4fa1\u683c\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u212103-3385-8121\u307e\u3067\u3002\u2606\u5404\u7a2e\u4e09\u811a\u96f2\u53f0\u306b\u95a2\u3059\u308b\u8cea\u554f\u3084\u7d20\u6734\u306a\u7591\u554f\u306b\u3082\u5206\u304b\u308b\u7bc4\u56f2\u3067\u304a\u7b54\u3048\u3057\u307e\u3059\u3002\u4e09\u811a\u96f2\u53f0\u4e00\u811a\u30b9\u30c8\u30ed\u30dc\u30e9\u30a4\u30c8\u30b9\u30bf\u30f3\u30c9\u30af\u30e9\u30f3\u30d7\u7802\u888b\u7b49\u3005\u5404\u7a2e\u64ae\u5f71\u6a5f\u6750\u7528\u54c1\u8ca9\u58f2\u3002\u8cb7\u53d6\u3082\u3044\u305f\u3057\u307e\u3059\u3002\u4e2d\u91ce\u99c5\u5317\u53e3\u3059\u3050\u3002","protected":false,"verified":false,"followers_count":3289,"friends_count":1,"listed_count":187,"favourites_count":121,"statuses_count":10230,"created_at":"Tue Jun 01 07:01:28 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DCF57A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"D9D9D9","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/949157528\/twitter_yh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/949157528\/twitter_yh_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728058147323904,"id_str":"663728058147323904","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJv1UwAA1Hcs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJv1UwAA1Hcs.jpg","url":"https:\/\/t.co\/TLrn5AF9Ke","display_url":"pic.twitter.com\/TLrn5AF9Ke","expanded_url":"http:\/\/twitter.com\/fujiyacamera_yh\/status\/663728060131217409\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728058147323904,"id_str":"663728058147323904","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJv1UwAA1Hcs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJv1UwAA1Hcs.jpg","url":"https:\/\/t.co\/TLrn5AF9Ke","display_url":"pic.twitter.com\/TLrn5AF9Ke","expanded_url":"http:\/\/twitter.com\/fujiyacamera_yh\/status\/663728060131217409\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080075663"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064300478464,"id_str":"663728064300478464","text":"JAJAJAJJAJAJAJA ALGUIEN VOTOOOOO persona seas quien seas te amo\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99\ud83d\udc99","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299931858,"id_str":"299931858","name":"Sofia ","screen_name":"sofimiteff","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":182,"friends_count":89,"listed_count":0,"favourites_count":1962,"statuses_count":12937,"created_at":"Mon May 16 22:39:04 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055383716\/85b9116bbca43295772463cd67dd292d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055383716\/85b9116bbca43295772463cd67dd292d.jpeg","profile_background_tile":true,"profile_link_color":"0D0D0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E196FF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633450982526033921\/ivOz42ZD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633450982526033921\/ivOz42ZD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299931858\/1391091670","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076657"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338243584,"id_str":"663728064338243584","text":"RT @aaronalexandria: hoy filman el cap\u00edtulo para la season finale de twd y no s\u00e9 c\u00f3mo sentirme al respecto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367891330,"id_str":"367891330","name":"jss.","screen_name":"hxmmingsky","location":"#W4CHUCHURUMI","url":null,"description":"liam is my everything \u21dc","protected":false,"verified":false,"followers_count":3043,"friends_count":3338,"listed_count":12,"favourites_count":1131,"statuses_count":33774,"created_at":"Sun Sep 04 18:52:03 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555607180598976513\/qAHR-DeH.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555607180598976513\/qAHR-DeH.png","profile_background_tile":true,"profile_link_color":"340983","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649711029857882116\/fpxfmSII_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649711029857882116\/fpxfmSII_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367891330\/1444946352","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:41 +0000 2015","id":663716590173749248,"id_str":"663716590173749248","text":"hoy filman el cap\u00edtulo para la season finale de twd y no s\u00e9 c\u00f3mo sentirme al respecto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110077140,"id_str":"110077140","name":"tara","screen_name":"aaronalexandria","location":"alexandria","url":null,"description":"people are the real threat now, if you don't fight you die","protected":false,"verified":false,"followers_count":22762,"friends_count":20929,"listed_count":295,"favourites_count":4717,"statuses_count":198547,"created_at":"Sun Jan 31 07:27:33 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/831155445\/fbb98f9b18f013dba878be0caf97772a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/831155445\/fbb98f9b18f013dba878be0caf97772a.png","profile_background_tile":false,"profile_link_color":"6487AE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663573846193238016\/9KmqvCd6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663573846193238016\/9KmqvCd6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110077140\/1447044432","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aaronalexandria","name":"tara","id":110077140,"id_str":"110077140","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338206720,"id_str":"663728064338206720","text":"RT @JackMatthew: Please appreciate the time and effort it takes to be this tragic","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149482494,"id_str":"4149482494","name":"Martin Doh\u0148ansk\u00fd","screen_name":"guner628","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":40,"listed_count":0,"favourites_count":118,"statuses_count":111,"created_at":"Mon Nov 09 13:35:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"cs","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 10 17:23:53 +0000 2015","id":652897353309904897,"id_str":"652897353309904897","text":"Please appreciate the time and effort it takes to be this tragic","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134954857,"id_str":"134954857","name":"Jack Baran","screen_name":"JackMatthew","location":"Los Angeles","url":"http:\/\/www.youtube.com\/thatsojack","description":"Cute but psycho","protected":false,"verified":true,"followers_count":1105869,"friends_count":4204,"listed_count":2627,"favourites_count":8464,"statuses_count":21707,"created_at":"Mon Apr 19 23:16:55 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114754335\/d2f4606e5213d7e5d17f3499a6e07027.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114754335\/d2f4606e5213d7e5d17f3499a6e07027.png","profile_background_tile":false,"profile_link_color":"7A98B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663412197935067136\/yneddBcp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663412197935067136\/yneddBcp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134954857\/1446940033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":769,"favorite_count":2453,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackMatthew","name":"Jack Baran","id":134954857,"id_str":"134954857","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321462272,"id_str":"663728064321462272","text":"Maduro ilegaliza el alcohol pa que se forme es verguero bueno de una vez!","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3507525199,"id_str":"3507525199","name":"Josue Arias","screen_name":"Josue71Arias","location":null,"url":null,"description":"Hay dos tipos de errores, de los que aprendemos y los que nos marcan para siempre.","protected":false,"verified":false,"followers_count":39,"friends_count":206,"listed_count":0,"favourites_count":0,"statuses_count":1285,"created_at":"Wed Sep 09 19:34:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644994241958158336\/jFUtLEkh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644994241958158336\/jFUtLEkh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3507525199\/1442613586","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064317292545,"id_str":"663728064317292545","text":"No me quiero ni levantar, mas con el dia asi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805568323,"id_str":"2805568323","name":"Casla.","screen_name":"SeebbaLazarte","location":"Carlos Casares ","url":null,"description":"San Lorenzo. Como son las cosas de la vida, te llevo presente mi memoria no te olvida..","protected":false,"verified":false,"followers_count":284,"friends_count":260,"listed_count":0,"favourites_count":47,"statuses_count":4314,"created_at":"Sat Oct 04 16:14:06 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518443840626102273\/Xz6h83Ti.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518443840626102273\/Xz6h83Ti.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663647828317704192\/QcD81XSG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663647828317704192\/QcD81XSG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805568323\/1412442003","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076661"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064313090049,"id_str":"663728064313090049","text":"RT @OneDrecti0nFans: THEY MADE THEIR OWN CHOREOGRAPHY!! WHY ARE THEY LIKE THIS?!?\n\nOMG!! \n\n#4DaysUntilMITAM \n\nhttps:\/\/t.co\/NfXyQqBrWR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2271034531,"id_str":"2271034531","name":"\u00a1Aloha Bitches.03\u2665!","screen_name":"LittleStyles26","location":"Al lado de Ryan.","url":"http:\/\/amarilis26.tumblr.com\/","description":"19. 'You'll Never Walk Alone.' 1D. Caskett. OITNB. IC1. MG\u00d619. MR11. EH10. RMCF. DZ. Fernanda03\u2665. Mahomie. Youtubers & Hooligan. 02. 13. 26. Always28\u2665.","protected":false,"verified":false,"followers_count":1400,"friends_count":883,"listed_count":12,"favourites_count":8775,"statuses_count":189080,"created_at":"Wed Jan 01 01:43:48 +0000 2014","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623245929148194816\/Md2xiH16.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623245929148194816\/Md2xiH16.jpg","profile_background_tile":true,"profile_link_color":"B3002D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615178287610859520\/6v0pTnhF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615178287610859520\/6v0pTnhF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271034531\/1416080335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:59:03 +0000 2015","id":663687238509682689,"id_str":"663687238509682689","text":"THEY MADE THEIR OWN CHOREOGRAPHY!! WHY ARE THEY LIKE THIS?!?\n\nOMG!! \n\n#4DaysUntilMITAM \n\nhttps:\/\/t.co\/NfXyQqBrWR","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261808925,"id_str":"2261808925","name":"One Direction","screen_name":"OneDrecti0nFans","location":null,"url":"http:\/\/www.albumhearts.com","description":"One Direction fan page! 3\/5 follows! Follow for a follow back and a DM to the boys!","protected":false,"verified":false,"followers_count":465474,"friends_count":295362,"listed_count":573,"favourites_count":45660,"statuses_count":13615,"created_at":"Wed Dec 25 19:09:28 +0000 2013","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652982775260315648\/F148zw2p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652982775260315648\/F148zw2p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261808925\/1442958819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1488,"favorite_count":1456,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[70,86]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":628341315449847808,"id_str":"628341315449847808","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","url":"https:\/\/t.co\/NfXyQqBrWR","display_url":"pic.twitter.com\/NfXyQqBrWR","expanded_url":"http:\/\/twitter.com\/OneDrecti0nFans\/status\/628341381489102849\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":628341381489102849,"source_status_id_str":"628341381489102849","source_user_id":2261808925,"source_user_id_str":"2261808925"}]},"extended_entities":{"media":[{"id":628341315449847808,"id_str":"628341315449847808","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","url":"https:\/\/t.co\/NfXyQqBrWR","display_url":"pic.twitter.com\/NfXyQqBrWR","expanded_url":"http:\/\/twitter.com\/OneDrecti0nFans\/status\/628341381489102849\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":628341381489102849,"source_status_id_str":"628341381489102849","source_user_id":2261808925,"source_user_id_str":"2261808925","video_info":{"aspect_ratio":[16,9],"duration_millis":11733,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/320x180\/c_g7oz8h5sCqZo06.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/640x360\/6hJSqeKpixmyzS1n.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/pl\/NjnLp5oOPqQSofb7.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/640x360\/6hJSqeKpixmyzS1n.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/pl\/NjnLp5oOPqQSofb7.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[91,107]}],"urls":[],"user_mentions":[{"screen_name":"OneDrecti0nFans","name":"One Direction","id":2261808925,"id_str":"2261808925","indices":[3,19]}],"symbols":[],"media":[{"id":628341315449847808,"id_str":"628341315449847808","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","url":"https:\/\/t.co\/NfXyQqBrWR","display_url":"pic.twitter.com\/NfXyQqBrWR","expanded_url":"http:\/\/twitter.com\/OneDrecti0nFans\/status\/628341381489102849\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":628341381489102849,"source_status_id_str":"628341381489102849","source_user_id":2261808925,"source_user_id_str":"2261808925"}]},"extended_entities":{"media":[{"id":628341315449847808,"id_str":"628341315449847808","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/628341315449847808\/pu\/img\/Adt78NAPl4jSDAJi.jpg","url":"https:\/\/t.co\/NfXyQqBrWR","display_url":"pic.twitter.com\/NfXyQqBrWR","expanded_url":"http:\/\/twitter.com\/OneDrecti0nFans\/status\/628341381489102849\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":628341381489102849,"source_status_id_str":"628341381489102849","source_user_id":2261808925,"source_user_id_str":"2261808925","video_info":{"aspect_ratio":[16,9],"duration_millis":11733,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/320x180\/c_g7oz8h5sCqZo06.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/640x360\/6hJSqeKpixmyzS1n.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/pl\/NjnLp5oOPqQSofb7.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/vid\/640x360\/6hJSqeKpixmyzS1n.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/628341315449847808\/pu\/pl\/NjnLp5oOPqQSofb7.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064304664577,"id_str":"663728064304664577","text":"Buti nalang talaga kasama ko parin yung ibang mga ka-blockmates ko :)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1453424563,"id_str":"1453424563","name":"krissyvowwwn\u10e6","screen_name":"caroyvone","location":"MNL \/ SoKor","url":null,"description":"|GOD \u2764|fangirl since '99|multifandom|RTU|Marketing mgt.|Rprt\u2665| \u2716mahal kita,te amo,saranghae,I love you sobra-sobra~ JEYDON\u2716","protected":false,"verified":false,"followers_count":899,"friends_count":881,"listed_count":4,"favourites_count":4826,"statuses_count":8890,"created_at":"Fri May 24 06:38:14 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539427093461745664\/yY948lG4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539427093461745664\/yY948lG4.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663005143210717184\/TjkV3LNO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663005143210717184\/TjkV3LNO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1453424563\/1434703992","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080076658"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064300507137,"id_str":"663728064300507137","text":"\u0423\u0447\u0438\u043b\u0430 \u0432\u043b\u0430\u0436\u043d\u044b\u0435 \u043f\u0440\u0435\u043f\u0430\u0440\u0430\u0442\u044b, \u0438 \u0410\u043b\u0438\u043d\u0430 \u0445\u043e\u0442\u044c \u0438 \u043f\u043e\u0437\u0435\u043b\u0435\u043d\u0435\u043b\u0430, \u043d\u043e \u043d\u0435 \u0443\u043f\u0430\u043b\u0430. \u041f\u043e\u043c\u043e\u0435\u043c\u0443, \u044d\u0442\u043e \u0430\u0447\u0438\u0432","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714312224,"id_str":"714312224","name":"\u0414\u0435\u0432\u043e\u0447\u043a\u0430-\u0442\u0435\u043b\u0435\u0432\u0438\u0437\u043e\u0440","screen_name":"yliana9814","location":"Springfield","url":null,"description":"\u0412\u0435\u0437\u0435\u043d\u0438\u0435","protected":false,"verified":false,"followers_count":282,"friends_count":186,"listed_count":3,"favourites_count":1380,"statuses_count":14951,"created_at":"Tue Jul 24 13:43:31 +0000 2012","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632120288436580352\/dvfk7h0T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632120288436580352\/dvfk7h0T.jpg","profile_background_tile":true,"profile_link_color":"EED5B7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651332438753345537\/veadBf4F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651332438753345537\/veadBf4F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714312224\/1423661450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080076657"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064329883648,"id_str":"663728064329883648","text":"RT @LOfCG: #ModelMonday \ud83d\udc99@NikitaBellucciX\ud83d\udc99\n@OberonBone\n@kandikayfan01\n@LukeMac8\n@rexophile87\n@SEX_Overlord\n@Phatbootylove https:\/\/t.co\/Bvzt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2547366136,"id_str":"2547366136","name":"Franck Bassimon","screen_name":"BassimonFranck","location":null,"url":null,"description":"jaime le sex et jai baiser des grosse cochonne qui aime les grosse queue comme le mien alors les venai vs faire baiser et mon skype tigre blan59","protected":false,"verified":false,"followers_count":482,"friends_count":1012,"listed_count":23,"favourites_count":2969,"statuses_count":4523,"created_at":"Wed May 14 13:28:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512271240506380289\/8JJWHZrW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512271240506380289\/8JJWHZrW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547366136\/1400173021","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:57 +0000 2015","id":663724962109255680,"id_str":"663724962109255680","text":"#ModelMonday \ud83d\udc99@NikitaBellucciX\ud83d\udc99\n@OberonBone\n@kandikayfan01\n@LukeMac8\n@rexophile87\n@SEX_Overlord\n@Phatbootylove https:\/\/t.co\/BvztFZIArC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989949643,"id_str":"2989949643","name":"\u2728LoverOfCamGirls5K\u2728","screen_name":"LOfCG","location":"Main acc @LoverOfAllWoman","url":"http:\/\/chaturbate.com\/affiliates\/in\/4uT2\/Z0QmG\/?track=earntokens","description":"#IVFam 21+ Promoting\u2728#Models\u2728#CamGirls #CamModels\u2728#Pornstars\u2728#MUSTFOLLOW \u2728@Epiphany666cb\u2728 my main acc was suspended at 35K @LoverOfAllWoman","protected":false,"verified":false,"followers_count":5478,"friends_count":1954,"listed_count":32,"favourites_count":6928,"statuses_count":8755,"created_at":"Wed Jan 21 14:29:10 +0000 2015","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655093035923992576\/hPFTao82_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655093035923992576\/hPFTao82_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989949643\/1445402362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":12,"entities":{"hashtags":[{"text":"ModelMonday","indices":[0,12]}],"urls":[],"user_mentions":[{"screen_name":"NikitaBellucciX","name":"NIKITA BELLUCCI","id":526808009,"id_str":"526808009","indices":[14,30]},{"screen_name":"OberonBone","name":"Oberon Bone","id":593403577,"id_str":"593403577","indices":[32,43]},{"screen_name":"kandikayfan01","name":"kk-fan-01","id":2472123963,"id_str":"2472123963","indices":[44,58]},{"screen_name":"LukeMac8","name":"Luke mac","id":2730536838,"id_str":"2730536838","indices":[59,68]},{"screen_name":"rexophile87","name":"BoJack JerkOff","id":2784737683,"id_str":"2784737683","indices":[69,81]},{"screen_name":"SEX_Overlord","name":"VRod Ragnare","id":1161656833,"id_str":"1161656833","indices":[82,95]},{"screen_name":"Phatbootylove","name":"#PBLove\u2122","id":2790247268,"id_str":"2790247268","indices":[96,110]}],"symbols":[],"media":[{"id":663724940948930560,"id_str":"663724940948930560","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724940948930560,"id_str":"663724940948930560","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663724941020282881,"id_str":"663724941020282881","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUToUwAElsv_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUToUwAElsv_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663724941108350976,"id_str":"663724941108350976","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUT9UkAA3Rir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUT9UkAA3Rir.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ModelMonday","indices":[11,23]}],"urls":[],"user_mentions":[{"screen_name":"LOfCG","name":"\u2728LoverOfCamGirls5K\u2728","id":2989949643,"id_str":"2989949643","indices":[3,9]},{"screen_name":"NikitaBellucciX","name":"NIKITA BELLUCCI","id":526808009,"id_str":"526808009","indices":[25,41]},{"screen_name":"OberonBone","name":"Oberon Bone","id":593403577,"id_str":"593403577","indices":[43,54]},{"screen_name":"kandikayfan01","name":"kk-fan-01","id":2472123963,"id_str":"2472123963","indices":[55,69]},{"screen_name":"LukeMac8","name":"Luke mac","id":2730536838,"id_str":"2730536838","indices":[70,79]},{"screen_name":"rexophile87","name":"BoJack JerkOff","id":2784737683,"id_str":"2784737683","indices":[80,92]},{"screen_name":"SEX_Overlord","name":"VRod Ragnare","id":1161656833,"id_str":"1161656833","indices":[93,106]},{"screen_name":"Phatbootylove","name":"#PBLove\u2122","id":2790247268,"id_str":"2790247268","indices":[107,121]}],"symbols":[],"media":[{"id":663724940948930560,"id_str":"663724940948930560","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663724962109255680,"source_status_id_str":"663724962109255680","source_user_id":2989949643,"source_user_id_str":"2989949643"}]},"extended_entities":{"media":[{"id":663724940948930560,"id_str":"663724940948930560","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUTXUAAAekJ_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663724962109255680,"source_status_id_str":"663724962109255680","source_user_id":2989949643,"source_user_id_str":"2989949643"},{"id":663724941020282881,"id_str":"663724941020282881","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUToUwAElsv_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUToUwAElsv_.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663724962109255680,"source_status_id_str":"663724962109255680","source_user_id":2989949643,"source_user_id_str":"2989949643"},{"id":663724941108350976,"id_str":"663724941108350976","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGUT9UkAA3Rir.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGUT9UkAA3Rir.jpg","url":"https:\/\/t.co\/BvztFZIArC","display_url":"pic.twitter.com\/BvztFZIArC","expanded_url":"http:\/\/twitter.com\/LOfCG\/status\/663724962109255680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663724962109255680,"source_status_id_str":"663724962109255680","source_user_id":2989949643,"source_user_id_str":"2989949643"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080076664"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321470464,"id_str":"663728064321470464","text":"RT @Iifepost: One of the best Halloween costumes I've seen so far \ud83c\udf83\ud83d\ude02 https:\/\/t.co\/EIcNdnuccj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1440719892,"id_str":"1440719892","name":"raleuse","screen_name":"CamilleLsg","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":164,"friends_count":75,"listed_count":1,"favourites_count":1895,"statuses_count":17660,"created_at":"Sun May 19 09:47:45 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510143868583419904\/aWgZ4OcL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510143868583419904\/aWgZ4OcL.jpeg","profile_background_tile":true,"profile_link_color":"731226","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653959395911577600\/JbTBnnT7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653959395911577600\/JbTBnnT7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1440719892\/1444751172","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 23:40:12 +0000 2015","id":659515035761451008,"id_str":"659515035761451008","text":"One of the best Halloween costumes I've seen so far \ud83c\udf83\ud83d\ude02 https:\/\/t.co\/EIcNdnuccj","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404916846,"id_str":"404916846","name":"Relatable","screen_name":"Iifepost","location":null,"url":"http:\/\/goo.gl\/1PKJtM","description":"Tweeting my thoughts and feelings. I hope to inspire each and every one of you! business ddvvcc2@gmail.com Kik: Life_Post - dm submissions","protected":false,"verified":false,"followers_count":1900561,"friends_count":322651,"listed_count":1665,"favourites_count":3897,"statuses_count":8341,"created_at":"Fri Nov 04 15:56:03 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404916846\/1437681456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4033,"favorite_count":7206,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659515023874727936,"id_str":"659515023874727936","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","url":"https:\/\/t.co\/EIcNdnuccj","display_url":"pic.twitter.com\/EIcNdnuccj","expanded_url":"http:\/\/twitter.com\/Iifepost\/status\/659515035761451008\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":783,"resize":"fit"},"small":{"w":340,"h":444,"resize":"fit"},"large":{"w":599,"h":783,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":659515023874727936,"id_str":"659515023874727936","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","url":"https:\/\/t.co\/EIcNdnuccj","display_url":"pic.twitter.com\/EIcNdnuccj","expanded_url":"http:\/\/twitter.com\/Iifepost\/status\/659515035761451008\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":783,"resize":"fit"},"small":{"w":340,"h":444,"resize":"fit"},"large":{"w":599,"h":783,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iifepost","name":"Relatable","id":404916846,"id_str":"404916846","indices":[3,12]}],"symbols":[],"media":[{"id":659515023874727936,"id_str":"659515023874727936","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","url":"https:\/\/t.co\/EIcNdnuccj","display_url":"pic.twitter.com\/EIcNdnuccj","expanded_url":"http:\/\/twitter.com\/Iifepost\/status\/659515035761451008\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":783,"resize":"fit"},"small":{"w":340,"h":444,"resize":"fit"},"large":{"w":599,"h":783,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":659515035761451008,"source_status_id_str":"659515035761451008","source_user_id":404916846,"source_user_id_str":"404916846"}]},"extended_entities":{"media":[{"id":659515023874727936,"id_str":"659515023874727936","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CScRa4IWIAAQ4KL.jpg","url":"https:\/\/t.co\/EIcNdnuccj","display_url":"pic.twitter.com\/EIcNdnuccj","expanded_url":"http:\/\/twitter.com\/Iifepost\/status\/659515035761451008\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":783,"resize":"fit"},"small":{"w":340,"h":444,"resize":"fit"},"large":{"w":599,"h":783,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":659515035761451008,"source_status_id_str":"659515035761451008","source_user_id":404916846,"source_user_id_str":"404916846"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064313053185,"id_str":"663728064313053185","text":"RT @Necewrldpeace: See. This is why we side-eye those chicks that comment \"Awwww\" When your man posts a pic of you. https:\/\/t.co\/4CA2Y3YgPu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115347683,"id_str":"115347683","name":"Sainte Nadine","screen_name":"margauxverf","location":"Lille","url":null,"description":null,"protected":false,"verified":false,"followers_count":122,"friends_count":105,"listed_count":1,"favourites_count":170,"statuses_count":9029,"created_at":"Thu Feb 18 11:11:44 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"D6BFD2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"27A36B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661793827653615616\/qFqLA1Il_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661793827653615616\/qFqLA1Il_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115347683\/1384117583","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 16 12:36:21 +0000 2015","id":654999316935933952,"id_str":"654999316935933952","text":"See. This is why we side-eye those chicks that comment \"Awwww\" When your man posts a pic of you. https:\/\/t.co\/4CA2Y3YgPu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87469882,"id_str":"87469882","name":"reallifeACTUALLYblog","screen_name":"Necewrldpeace","location":"DMV","url":"http:\/\/www.reallifeactually.com","description":"Regular mom, regular wife, regular job, regular life | Life game from the right brain| Your resident Analog Girl\nSnapchat & IG: Necewrldpeace","protected":false,"verified":false,"followers_count":861,"friends_count":790,"listed_count":21,"favourites_count":572,"statuses_count":39370,"created_at":"Wed Nov 04 16:04:13 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562243713175650305\/zT2RVaW2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562243713175650305\/zT2RVaW2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87469882\/1408453223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":654992780767313922,"quoted_status_id_str":"654992780767313922","quoted_status":{"created_at":"Fri Oct 16 12:10:22 +0000 2015","id":654992780767313922,"id_str":"654992780767313922","text":"Yooooooo RT @ColbyTzan: @AD_Renaissance she knew http:\/\/t.co\/q9OZKCQZjc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215451918,"id_str":"215451918","name":"Hong Kong Phooey","screen_name":"AD_Renaissance","location":"MD | DC","url":null,"description":"I keep big computers 'putin, Amateur Food Boss, Part time Oenophile, Nostalgic Athlete::I hate moscato #LetADCook IG: @AD_Renaissance","protected":false,"verified":false,"followers_count":2102,"friends_count":880,"listed_count":50,"favourites_count":2005,"statuses_count":110442,"created_at":"Sun Nov 14 00:05:15 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2488E0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178408848\/lI08jk8M.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178408848\/lI08jk8M.jpeg","profile_background_tile":false,"profile_link_color":"7FC0EB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660834672365187072\/O8R-UY7I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660834672365187072\/O8R-UY7I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215451918\/1428837487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ColbyTzan","name":"Secret Squirrel","id":130622646,"id_str":"130622646","indices":[12,22]},{"screen_name":"AD_Renaissance","name":"Hong Kong Phooey","id":215451918,"id_str":"215451918","indices":[24,39]}],"symbols":[],"media":[{"id":654990283348643840,"id_str":"654990283348643840","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CRb-MUJUEAAhzoU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRb-MUJUEAAhzoU.jpg","url":"http:\/\/t.co\/q9OZKCQZjc","display_url":"pic.twitter.com\/q9OZKCQZjc","expanded_url":"http:\/\/twitter.com\/ColbyTzan\/status\/654990288562339840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":472,"h":840,"resize":"fit"},"medium":{"w":472,"h":840,"resize":"fit"}},"source_status_id":654990288562339840,"source_status_id_str":"654990288562339840","source_user_id":130622646,"source_user_id_str":"130622646"}]},"extended_entities":{"media":[{"id":654990283348643840,"id_str":"654990283348643840","indices":[49,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CRb-MUJUEAAhzoU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRb-MUJUEAAhzoU.jpg","url":"http:\/\/t.co\/q9OZKCQZjc","display_url":"pic.twitter.com\/q9OZKCQZjc","expanded_url":"http:\/\/twitter.com\/ColbyTzan\/status\/654990288562339840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":472,"h":840,"resize":"fit"},"medium":{"w":472,"h":840,"resize":"fit"}},"source_status_id":654990288562339840,"source_status_id_str":"654990288562339840","source_user_id":130622646,"source_user_id_str":"130622646"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":35,"favorite_count":14,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4CA2Y3YgPu","expanded_url":"https:\/\/twitter.com\/AD_Renaissance\/status\/654992780767313922","display_url":"twitter.com\/AD_Renaissance\u2026","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4CA2Y3YgPu","expanded_url":"https:\/\/twitter.com\/AD_Renaissance\/status\/654992780767313922","display_url":"twitter.com\/AD_Renaissance\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"Necewrldpeace","name":"reallifeACTUALLYblog","id":87469882,"id_str":"87469882","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064304672768,"id_str":"663728064304672768","text":"RT @TheDutchLounge: #SinfulSundays\ud83c\udf1e \n\n@EroticTemptress @4669beaches @CravingDesires @NastyLady70 @osquieroatodas @WeFapToThis @swo2212 http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246432826,"id_str":"3246432826","name":"hyman(18+)","screen_name":"hyman769","location":null,"url":null,"description":"Male - Retweeter. I share and retweet pics i like! My tweets, if you don't like, go away. Feel free DM","protected":false,"verified":false,"followers_count":489,"friends_count":491,"listed_count":11,"favourites_count":1425,"statuses_count":4078,"created_at":"Mon May 11 15:08:40 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"hu","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615445031047053313\/553JYM1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615445031047053313\/553JYM1__normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:29:58 +0000 2015","id":663423230590480388,"id_str":"663423230590480388","text":"#SinfulSundays\ud83c\udf1e \n\n@EroticTemptress @4669beaches @CravingDesires @NastyLady70 @osquieroatodas @WeFapToThis @swo2212 https:\/\/t.co\/Ff5NqZFLkJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1082488964,"id_str":"1082488964","name":"\u272f\u2606\u272f","screen_name":"TheDutchLounge","location":"Made in Holland (18+)","url":null,"description":"Have a great time and enjoy...","protected":false,"verified":false,"followers_count":117609,"friends_count":157,"listed_count":552,"favourites_count":6639,"statuses_count":44411,"created_at":"Sat Jan 12 10:08:24 +0000 2013","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469470852392554497\/HhGfFe98.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469470852392554497\/HhGfFe98.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651358141704048642\/5abJY8E__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651358141704048642\/5abJY8E__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1082488964\/1446974354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":69,"entities":{"hashtags":[{"text":"SinfulSundays","indices":[0,14]}],"urls":[],"user_mentions":[{"screen_name":"EroticTemptress","name":"\u272e\u039a\u03b1ss\u03af\u03b5\u272e \u007b18+\u007d","id":2452001112,"id_str":"2452001112","indices":[18,34]},{"screen_name":"4669beaches","name":"hotmilf6969 (21+)","id":2422700730,"id_str":"2422700730","indices":[35,47]},{"screen_name":"CravingDesires","name":"CravingDesires","id":3158356220,"id_str":"3158356220","indices":[48,63]},{"screen_name":"NastyLady70","name":"Wicked Erotica","id":507663875,"id_str":"507663875","indices":[64,76]},{"screen_name":"osquieroatodas","name":"DANIELLE (18+)","id":1159713380,"id_str":"1159713380","indices":[77,92]},{"screen_name":"WeFapToThis","name":"Fap To This [18+]","id":633000829,"id_str":"633000829","indices":[93,105]},{"screen_name":"swo2212","name":"\u2734\u2605 \u2729\u2651 $\u2020\u03b5\u0166\u03b1\u03c0 \u2651\u2605 \u2729\u2734","id":894989119,"id_str":"894989119","indices":[106,114]}],"symbols":[],"media":[{"id":663423223699259393,"id_str":"663423223699259393","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","url":"https:\/\/t.co\/Ff5NqZFLkJ","display_url":"pic.twitter.com\/Ff5NqZFLkJ","expanded_url":"http:\/\/twitter.com\/TheDutchLounge\/status\/663423230590480388\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663423223699259393,"id_str":"663423223699259393","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","url":"https:\/\/t.co\/Ff5NqZFLkJ","display_url":"pic.twitter.com\/Ff5NqZFLkJ","expanded_url":"http:\/\/twitter.com\/TheDutchLounge\/status\/663423230590480388\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SinfulSundays","indices":[20,34]}],"urls":[],"user_mentions":[{"screen_name":"TheDutchLounge","name":"\u272f\u2606\u272f","id":1082488964,"id_str":"1082488964","indices":[3,18]},{"screen_name":"EroticTemptress","name":"\u272e\u039a\u03b1ss\u03af\u03b5\u272e \u007b18+\u007d","id":2452001112,"id_str":"2452001112","indices":[38,54]},{"screen_name":"4669beaches","name":"hotmilf6969 (21+)","id":2422700730,"id_str":"2422700730","indices":[55,67]},{"screen_name":"CravingDesires","name":"CravingDesires","id":3158356220,"id_str":"3158356220","indices":[68,83]},{"screen_name":"NastyLady70","name":"Wicked Erotica","id":507663875,"id_str":"507663875","indices":[84,96]},{"screen_name":"osquieroatodas","name":"DANIELLE (18+)","id":1159713380,"id_str":"1159713380","indices":[97,112]},{"screen_name":"WeFapToThis","name":"Fap To This [18+]","id":633000829,"id_str":"633000829","indices":[113,125]},{"screen_name":"swo2212","name":"\u2734\u2605 \u2729\u2651 $\u2020\u03b5\u0166\u03b1\u03c0 \u2651\u2605 \u2729\u2734","id":894989119,"id_str":"894989119","indices":[126,134]}],"symbols":[],"media":[{"id":663423223699259393,"id_str":"663423223699259393","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","url":"https:\/\/t.co\/Ff5NqZFLkJ","display_url":"pic.twitter.com\/Ff5NqZFLkJ","expanded_url":"http:\/\/twitter.com\/TheDutchLounge\/status\/663423230590480388\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663423230590480388,"source_status_id_str":"663423230590480388","source_user_id":1082488964,"source_user_id_str":"1082488964"}]},"extended_entities":{"media":[{"id":663423223699259393,"id_str":"663423223699259393","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTz6DBWwAEsD0I.jpg","url":"https:\/\/t.co\/Ff5NqZFLkJ","display_url":"pic.twitter.com\/Ff5NqZFLkJ","expanded_url":"http:\/\/twitter.com\/TheDutchLounge\/status\/663423230590480388\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663423230590480388,"source_status_id_str":"663423230590480388","source_user_id":1082488964,"source_user_id_str":"1082488964"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080076658"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338247680,"id_str":"663728064338247680","text":"How to write faster\n\n#4 Write during your creative time. If you don't know when that is, find out. Clue: it's when you write fastest. Duh!","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425161155,"id_str":"425161155","name":"Andy Maslen","screen_name":"Andy_Maslen","location":"www.andymaslen.com","url":"http:\/\/www.copywritingacademy.co.uk","description":"Author of Gabriel Wolfe thrillers + non-fiction works including Write to Sell & Persuasive Copywriting. MD of Sunfish, a business writing agency. Copywriter.","protected":false,"verified":false,"followers_count":4021,"friends_count":47,"listed_count":187,"favourites_count":2535,"statuses_count":9982,"created_at":"Wed Nov 30 16:54:31 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"05ACFA","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649476521263034368\/8XIRsHkr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649476521263034368\/8XIRsHkr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425161155\/1446121627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064325623809,"id_str":"663728064325623809","text":"Don\u2019t time stamp my tweets \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117518298,"id_str":"117518298","name":"Juice \u2728","screen_name":"coolnxque","location":"Georgia ","url":"http:\/\/instagram.com\/coolnxque","description":"To whom much is given, much is tested.","protected":false,"verified":false,"followers_count":9931,"friends_count":596,"listed_count":138,"favourites_count":782,"statuses_count":84783,"created_at":"Thu Feb 25 20:25:09 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015376400\/705e09b99b40c41e455fbb5f5b09f553.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015376400\/705e09b99b40c41e455fbb5f5b09f553.jpeg","profile_background_tile":true,"profile_link_color":"D92030","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0F020F","profile_text_color":"807C7C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662077079555452929\/mOZ6m-cT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662077079555452929\/mOZ6m-cT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117518298\/1388387336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076663"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064313077760,"id_str":"663728064313077760","text":"You used ping me on my bbm.. Late night when you check my status.. You used to ping me on bbm..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300801757,"id_str":"300801757","name":"the truth.","screen_name":"MsBee_Phakathi","location":"Stay Low, Keep Slaying. ","url":null,"description":"black . opinionated. unbothered.","protected":false,"verified":false,"followers_count":2272,"friends_count":369,"listed_count":21,"favourites_count":368,"statuses_count":63963,"created_at":"Wed May 18 11:36:51 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663648599142715392\/Y_VYC6vP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663648599142715392\/Y_VYC6vP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300801757\/1446310041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064329867264,"id_str":"663728064329867264","text":"RT @BleacherReport: \u201cTinder for fighting\u201d app called Rumblr set for beta test launch (via @br_uk) https:\/\/t.co\/C3tgrSgCG1 https:\/\/t.co\/qcrY\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":339943232,"id_str":"339943232","name":"Will Jauss","screen_name":"Will_L_Jauss","location":null,"url":null,"description":"NYU Class of 2019\u26be\ufe0f","protected":false,"verified":false,"followers_count":229,"friends_count":265,"listed_count":0,"favourites_count":1164,"statuses_count":951,"created_at":"Thu Jul 21 22:22:41 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469595149887340544\/skGPIlt-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469595149887340544\/skGPIlt-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339943232\/1438408375","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:23 +0000 2015","id":663722809772924928,"id_str":"663722809772924928","text":"\u201cTinder for fighting\u201d app called Rumblr set for beta test launch (via @br_uk) https:\/\/t.co\/C3tgrSgCG1 https:\/\/t.co\/qcrYsX0LPc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890891,"id_str":"890891","name":"Bleacher Report","screen_name":"BleacherReport","location":null,"url":"http:\/\/bleacherreport.com\/mobile","description":"#TeamStream","protected":false,"verified":true,"followers_count":1992975,"friends_count":503,"listed_count":9606,"favourites_count":47,"statuses_count":47111,"created_at":"Sat Mar 10 23:52:36 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890891\/1435102663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":547,"favorite_count":410,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3tgrSgCG1","expanded_url":"http:\/\/ble.ac\/1NZn9uQ","display_url":"ble.ac\/1NZn9uQ","indices":[78,101]}],"user_mentions":[{"screen_name":"br_uk","name":"Bleacher Report UK","id":1561123663,"id_str":"1561123663","indices":[70,76]}],"symbols":[],"media":[{"id":663722746917031936,"id_str":"663722746917031936","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","url":"https:\/\/t.co\/qcrYsX0LPc","display_url":"pic.twitter.com\/qcrYsX0LPc","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663722809772924928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722746917031936,"id_str":"663722746917031936","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","url":"https:\/\/t.co\/qcrYsX0LPc","display_url":"pic.twitter.com\/qcrYsX0LPc","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663722809772924928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3tgrSgCG1","expanded_url":"http:\/\/ble.ac\/1NZn9uQ","display_url":"ble.ac\/1NZn9uQ","indices":[98,121]}],"user_mentions":[{"screen_name":"BleacherReport","name":"Bleacher Report","id":890891,"id_str":"890891","indices":[3,18]},{"screen_name":"br_uk","name":"Bleacher Report UK","id":1561123663,"id_str":"1561123663","indices":[90,96]}],"symbols":[],"media":[{"id":663722746917031936,"id_str":"663722746917031936","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","url":"https:\/\/t.co\/qcrYsX0LPc","display_url":"pic.twitter.com\/qcrYsX0LPc","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663722809772924928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}},"source_status_id":663722809772924928,"source_status_id_str":"663722809772924928","source_user_id":890891,"source_user_id_str":"890891"}]},"extended_entities":{"media":[{"id":663722746917031936,"id_str":"663722746917031936","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEUl9WEAAkHud.jpg","url":"https:\/\/t.co\/qcrYsX0LPc","display_url":"pic.twitter.com\/qcrYsX0LPc","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663722809772924928\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":630,"h":420,"resize":"fit"}},"source_status_id":663722809772924928,"source_status_id_str":"663722809772924928","source_user_id":890891,"source_user_id_str":"890891"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076664"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064334049280,"id_str":"663728064334049280","text":"@Lockscreens26 sdv??? \ud83d\udc9b\ud83d\udc9b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2997347326,"in_reply_to_user_id_str":"2997347326","in_reply_to_screen_name":"Lockscreens26","user":{"id":225497064,"id_str":"225497064","name":"Im Rapmon","screen_name":"freakminho","location":"kDrama - 1D - Teen Wolf - BTS","url":"http:\/\/fanfiction.com.br\/historia\/585710\/Pedindo_pro_Universo\/","description":"Go fuck your selfie","protected":false,"verified":false,"followers_count":3622,"friends_count":3422,"listed_count":2,"favourites_count":1464,"statuses_count":38356,"created_at":"Sat Dec 11 18:23:10 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/592426379746021377\/LLZrQmkX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/592426379746021377\/LLZrQmkX.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660592493369643008\/EOU-LTwF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660592493369643008\/EOU-LTwF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225497064\/1446332535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lockscreens26","name":"\u2741 Lockscreens \u2741","id":2997347326,"id_str":"2997347326","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080076665"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064317292544,"id_str":"663728064317292544","text":"@_Lashababyy I couldn't deal w\/ that long as bar in my mouth \ud83d\ude29 it was hanging \ud83d\ude02 & Ima take the pain I guess loll","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726420976377856,"in_reply_to_status_id_str":"663726420976377856","in_reply_to_user_id":525980400,"in_reply_to_user_id_str":"525980400","in_reply_to_screen_name":"_Lashababyy","user":{"id":2887415073,"id_str":"2887415073","name":"Xo.Favooo","screen_name":"sphatassia","location":null,"url":null,"description":"Pretty & I'm ballin \u2665 Boss bitches hustle harder 4\/20\/15 always rocking \u270a","protected":false,"verified":false,"followers_count":858,"friends_count":907,"listed_count":0,"favourites_count":4264,"statuses_count":8641,"created_at":"Fri Nov 21 22:46:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651381523514429444\/8kD1RDwP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651381523514429444\/8kD1RDwP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887415073\/1446611378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_Lashababyy","name":"Lasha\u2764\ufe0f\u2693\ufe0f","id":525980400,"id_str":"525980400","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076661"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064304689152,"id_str":"663728064304689152","text":"Que fome que eu to","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3361706015,"id_str":"3361706015","name":"Estefani","screen_name":"EstefaniLudwig","location":"Florian\u00f3polis, Santa Catarina","url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":96,"listed_count":0,"favourites_count":340,"statuses_count":936,"created_at":"Mon Jul 06 02:31:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646967835271168\/50C11-i9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646967835271168\/50C11-i9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3361706015\/1445646156","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080076658"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064313090048,"id_str":"663728064313090048","text":"ORTBERG KLAXON: @mallelis is taking over Slate\u2019s \u201cDear Prudence\u201d advice column. https:\/\/t.co\/hE9ZDXUA3o","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15064617,"id_str":"15064617","name":"Amanda Costello","screen_name":"amandaesque","location":"Minneapolis, Minnesota, USA","url":"http:\/\/amandaesque.com","description":"I enjoy filling out forms because it feels like taking a test where I know all the answers. Content strategy, higher ed, knitting, tabletop games. She\/her.","protected":false,"verified":false,"followers_count":2474,"friends_count":1198,"listed_count":270,"favourites_count":2032,"statuses_count":25399,"created_at":"Mon Jun 09 19:45:53 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FB9F16","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/349936407\/xf9d8699cd8d859cb082fa81994202f0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/349936407\/xf9d8699cd8d859cb082fa81994202f0.png","profile_background_tile":true,"profile_link_color":"174275","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2C1B14","profile_text_color":"EE7723","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516365201877131265\/1ZfHr4Hk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516365201877131265\/1ZfHr4Hk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15064617\/1423758933","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hE9ZDXUA3o","expanded_url":"http:\/\/www.slate.com\/articles\/briefing\/slate_fare\/2015\/11\/mallory_ortberg_will_be_the_next_dear_prudence_succeeding_emily_yoffe.html","display_url":"slate.com\/articles\/brief\u2026","indices":[80,103]}],"user_mentions":[{"screen_name":"mallelis","name":"Mallory Ortberg","id":20951512,"id_str":"20951512","indices":[16,25]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064329818112,"id_str":"663728064329818112","text":"RT @James_Yammouni: Thought I was going to have a nap ended up sleeping until 4.30am now I can't sleep and there's nothing to do","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128695641,"id_str":"128695641","name":"Laura_TurnerXx","screen_name":"Laura_TurnerXx","location":"Edinburgh, Scotland","url":null,"description":"ONWARD AND UPWARD. TAYLOR CANIFF \u2764\ufe0f","protected":false,"verified":false,"followers_count":1344,"friends_count":2133,"listed_count":11,"favourites_count":10549,"statuses_count":28435,"created_at":"Thu Apr 01 22:52:45 +0000 2010","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104119378\/38b90a1162084d102113633dd91a31c8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104119378\/38b90a1162084d102113633dd91a31c8.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654774217783705601\/wzJZelvk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654774217783705601\/wzJZelvk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128695641\/1444762227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:37:24 +0000 2015","id":663696889661886464,"id_str":"663696889661886464","text":"Thought I was going to have a nap ended up sleeping until 4.30am now I can't sleep and there's nothing to do","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":560362416,"id_str":"560362416","name":"James Yammouni","screen_name":"James_Yammouni","location":"Melbourne ","url":"https:\/\/itunes.apple.com\/us\/album\/live-forever-feat.-faydee\/id1016867667","description":"19 Lebanese Australian; single JamesFromAustralia.DJ.@Janoskians. insta:jamesyammouniofficial snap:KINGYAMMOUNI Live Forever Ft. @Faydee out now","protected":false,"verified":true,"followers_count":1403176,"friends_count":77842,"listed_count":10299,"favourites_count":24579,"statuses_count":19938,"created_at":"Sun Apr 22 13:05:24 +0000 2012","utc_offset":39600,"time_zone":"New Caledonia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/827418989\/10e52ad6fdd4709e2548d97a3259b1cc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/827418989\/10e52ad6fdd4709e2548d97a3259b1cc.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638415537966567424\/d2vQQWex_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638415537966567424\/d2vQQWex_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560362416\/1441045100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1430,"favorite_count":2303,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"James_Yammouni","name":"James Yammouni","id":560362416,"id_str":"560362416","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076664"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064325636096,"id_str":"663728064325636096","text":"I liked a @YouTube video from @jokerboy225541 https:\/\/t.co\/QN0Rm6ZeBF Tag Team - Whoomp! (There It Is) (Original) [HQ]","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2603274019,"id_str":"2603274019","name":"CloudZ Flawless","screen_name":"CallMehFlawless","location":"Making YouTube Vidoes!","url":"http:\/\/www.youtube.com\/youtubecody","description":"15 guy gamer Leader of CloudZ Empire (Xbox) Check out my channel! 1,200 amazing subscribers! YouTuber With Dedication Sponsor-@ExtinctionGrips use code FLAWLESS","protected":false,"verified":false,"followers_count":1014,"friends_count":404,"listed_count":9,"favourites_count":9766,"statuses_count":15023,"created_at":"Fri Jul 04 10:50:56 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663222379892506625\/kQKo93rJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663222379892506625\/kQKo93rJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2603274019\/1446755805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QN0Rm6ZeBF","expanded_url":"http:\/\/ln.is\/www.youtube.com\/SDQgk","display_url":"ln.is\/www.youtube.co\u2026","indices":[46,69]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[10,18]},{"screen_name":"jokerboy225541","name":"Malachi Campbell","id":109998807,"id_str":"109998807","indices":[30,45]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076663"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064313053184,"id_str":"663728064313053184","text":"Deep down you may realize the stats is wrong but you do not want to challenge it because it helps build your case.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727817545359360,"in_reply_to_status_id_str":"663727817545359360","in_reply_to_user_id":622146481,"in_reply_to_user_id_str":"622146481","in_reply_to_screen_name":"RocKeSci","user":{"id":622146481,"id_str":"622146481","name":"RocKeSci","screen_name":"RocKeSci","location":"Kenya ","url":"http:\/\/rockesci.co.ke\/","description":"Homo reflectus |geology is some gneiss schist | ran by CO2 emissions | download my fire mixtape | over new management","protected":false,"verified":false,"followers_count":339,"friends_count":507,"listed_count":7,"favourites_count":118,"statuses_count":5555,"created_at":"Fri Jun 29 18:47:11 +0000 2012","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550233391493160960\/kVQ-gxN9.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550233391493160960\/kVQ-gxN9.png","profile_background_tile":false,"profile_link_color":"2DA315","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550233592933015554\/y9N4YxKY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550233592933015554\/y9N4YxKY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622146481\/1427981064","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338096128,"id_str":"663728064338096128","text":"RT @SicksBP: \u81ea\u5206\u306b\u3068\u3063\u3066\u306e\ud83d\udd0c\ud83d\udd0b\u306a\u4eba\u304c\u3044\u308b\u306e\u306f\u5927\u4e8b http:\/\/t.co\/oVpkJUNR6W","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915538104,"id_str":"2915538104","name":"\u307f\u3086","screen_name":"Kuro06_Miyu","location":null,"url":null,"description":"Shiki1-2 \ufe0e","protected":false,"verified":false,"followers_count":205,"friends_count":173,"listed_count":0,"favourites_count":1435,"statuses_count":983,"created_at":"Mon Dec 01 11:09:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662998841474482177\/hlOWSyQt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662998841474482177\/hlOWSyQt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915538104\/1444971491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 10:46:55 +0000 2015","id":655334167798902784,"id_str":"655334167798902784","text":"\u81ea\u5206\u306b\u3068\u3063\u3066\u306e\ud83d\udd0c\ud83d\udd0b\u306a\u4eba\u304c\u3044\u308b\u306e\u306f\u5927\u4e8b http:\/\/t.co\/oVpkJUNR6W","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411263606,"id_str":"411263606","name":"DJ SICKS BY PROXY","screen_name":"SicksBP","location":"Tokyo","url":"http:\/\/sicksbyproxy.com\/","description":"\u663c\u306f\u30e2\u30c7\u30eb\u3068\u8d77\u696d\u5bb6\u3001\u591c\u306fEDM DJ\u30022014\u5e74\u6b66\u9053\u9928\u306b\u30667000\u4eba\u306e\u524d\u3067\u62ab\u9732\u3002Burn Residency 2014 \u5168\u56fdTOP10DJ\u306b\u629c\u64e2\u3055\u308c\u308b\u3002\u30a2\u30e1\u30ea\u30ab\u51fa\u8eab\u306e\u30cf\u30fc\u30d5\u3002 \u30d6\u30c3\u30ad\u30f3\u30b0\u306e\u304a\u554f\u3044\u5408\u308f\u305b:sbcoronal@gmail.com","protected":false,"verified":false,"followers_count":4958,"friends_count":4396,"listed_count":30,"favourites_count":279,"statuses_count":930,"created_at":"Sun Nov 13 06:02:25 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"FA002A","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655933869426798592\/zt3H7xsQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655933869426798592\/zt3H7xsQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411263606\/1446456185","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14137,"favorite_count":20011,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655334150266683392,"id_str":"655334150266683392","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","url":"http:\/\/t.co\/oVpkJUNR6W","display_url":"pic.twitter.com\/oVpkJUNR6W","expanded_url":"http:\/\/twitter.com\/SicksBP\/status\/655334167798902784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":655334150266683392,"id_str":"655334150266683392","indices":[19,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","url":"http:\/\/t.co\/oVpkJUNR6W","display_url":"pic.twitter.com\/oVpkJUNR6W","expanded_url":"http:\/\/twitter.com\/SicksBP\/status\/655334167798902784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SicksBP","name":"DJ SICKS BY PROXY","id":411263606,"id_str":"411263606","indices":[3,11]}],"symbols":[],"media":[{"id":655334150266683392,"id_str":"655334150266683392","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","url":"http:\/\/t.co\/oVpkJUNR6W","display_url":"pic.twitter.com\/oVpkJUNR6W","expanded_url":"http:\/\/twitter.com\/SicksBP\/status\/655334167798902784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":655334167798902784,"source_status_id_str":"655334167798902784","source_user_id":411263606,"source_user_id_str":"411263606"}]},"extended_entities":{"media":[{"id":655334150266683392,"id_str":"655334150266683392","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRg28APUAAACqvk.jpg","url":"http:\/\/t.co\/oVpkJUNR6W","display_url":"pic.twitter.com\/oVpkJUNR6W","expanded_url":"http:\/\/twitter.com\/SicksBP\/status\/655334167798902784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":655334167798902784,"source_status_id_str":"655334167798902784","source_user_id":411263606,"source_user_id_str":"411263606"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064308752385,"id_str":"663728064308752385","text":"@tsukicami \uc9d1\uc5d0 \uac00\uba74 \ubb54\uac00 \ubd80\ubaa8\ub2d8\uc774 \ubb54\uac00 \uc800\uc5d0\uac8c \ub108\ubb34 \uc798\ud574\uc8fc\uc2dc\ub2c8 \ubd80\ub2f4\uc774 \u314e\u314e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727753447903232,"in_reply_to_status_id_str":"663727753447903232","in_reply_to_user_id":3256628065,"in_reply_to_user_id_str":"3256628065","in_reply_to_screen_name":"tsukicami","user":{"id":535349144,"id_str":"535349144","name":"\uc720\ud558\ub9ac for U","screen_name":"YouHa_HNT","location":"\uc18c\uc124\uc18d \uc5b4\ub518\uac00\uc5d0..","url":null,"description":"97\ub144\uc0dd 1\uc6d4 23\uc77c\/\uc18c\uc124 \uc77d\uace0 \uae00\uc4f0\ub294 \uc789\uc5ec\ub85c\uc6b4 \ud558\ub8e8... \uc774\uacfc\uc0dd\uc774\uba70 \ubb38\ud559\uc744 \uc88b\uc544\ud558\uc9c0\ub9cc \ucef4\uacf5\uc744 \uc9c0\ub9dd\ud558\ub294 \uace03\uc774\uc5d0\uc694?! \/\ub2e4\uc911\uc778\uaca9\uc77c\uc218\ub3c4 \uc788\uc5b4\uc694! \uc8fc\uc758!\/\uc131\ubcc4\uc740 \uc790\uc720\ub86d\uac8c \ud310\ub2e8\ud558\uc138\uc694~\/ \uc2a4\ud300: Uhari for U\/\ub77c\uc778: hanatsu1004\/ \uc778\uc7a5:pixiv.","protected":false,"verified":false,"followers_count":315,"friends_count":303,"listed_count":0,"favourites_count":1581,"statuses_count":19163,"created_at":"Sat Mar 24 13:36:17 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661946850044305408\/fc0_ymOl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661946850044305408\/fc0_ymOl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535349144\/1438793092","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsukicami","name":"\uce20\ud0a4\uce74\ubbf8(\u6708\u7d19)","id":3256628065,"id_str":"3256628065","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080076659"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064333938688,"id_str":"663728064333938688","text":"RT @JoySrkian: #DhamakedaarDilwaleTrailer etrewt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3415303692,"id_str":"3415303692","name":"\u03b9 \u03b1\u043c G\u03b1\u03c5\u044f\u03b1\u03bd","screen_name":"Dilwaleadil","location":"Lucknow, Uttar Pradesh","url":null,"description":"\u0442\u043d\u0454 \u2113\u03c3\u03bd\u0454 \u03b9 \u043d\u03bd \u0192\u03c3\u044f \u0455\u044f\u043a \u03b9\u0455 \u0455\u03c3\u043c\u0454\u0442\u043d\u03b9\u03b7g..\u03c5 \u03c9\u03b9\u2113\u2113 \u03b7\u0454\u03bd\u0454\u044f \u03c5\u03b7\u2202\u0454\u044f\u0455\u0442\u03b1\u03b7\u2202.\n#\u2202\u03b9\u0454\u043d\u0454\u03b1\u044f\u0442\u0455\u044f\u043a\u03b9\u03b1\u03b7\n#\u043d\u03b1\u0442\u0454\u044f\u0455\u0455\u0442\u03b1\u0443\u03b1\u03c9\u03b1\u0443","protected":false,"verified":false,"followers_count":444,"friends_count":199,"listed_count":1,"favourites_count":2473,"statuses_count":7585,"created_at":"Tue Sep 01 13:55:55 +0000 2015","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656872029317042176\/YjlmvcW6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656872029317042176\/YjlmvcW6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3415303692\/1446724223","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727792811409408,"id_str":"663727792811409408","text":"#DhamakedaarDilwaleTrailer etrewt","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231181506,"id_str":"2231181506","name":"\u2660 Javed \u2660","screen_name":"JoySrkian","location":"india","url":null,"description":"I am the Biggest Fan OF Mega Star SRK","protected":false,"verified":false,"followers_count":1016,"friends_count":214,"listed_count":11,"favourites_count":4476,"statuses_count":29701,"created_at":"Thu Dec 05 08:56:50 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/562121685277499392\/X3b_iXvR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/562121685277499392\/X3b_iXvR.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719161810882560\/r0FJFVWm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719161810882560\/r0FJFVWm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231181506\/1446979732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[0,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[15,41]}],"urls":[],"user_mentions":[{"screen_name":"JoySrkian","name":"\u2660 Javed \u2660","id":2231181506,"id_str":"2231181506","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080076665"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064308707328,"id_str":"663728064308707328","text":"@taka114ber \u306a\u306b\u3092\u6065\u305a\u304b\u3057\u304c\u3063\u3066\u3093\u3060\u3088ww\u8a00\u3048\u3057w\u3063\u3066\u304b\u3001\u305d\u308c\u305e\u308c\u81ea\u5206\u306e\u30dd\u30c3\u30ad\u30fc\u98df\u3048\u3084\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727458982629376,"in_reply_to_status_id_str":"663727458982629376","in_reply_to_user_id":3003626227,"in_reply_to_user_id_str":"3003626227","in_reply_to_screen_name":"taka114ber","user":{"id":1900825140,"id_str":"1900825140","name":"\u306a\u304a\u3084","screen_name":"naoya19980416","location":null,"url":null,"description":"\u6771\u4e2d\u2192\u5411\u9675\/\u7537\u5b50\u30c6\u30cb\u30b9\u90e8\/Hilcrhyme\/TOC\/AAA\/Hardwell\/LMFAO\/Skrillex\/Afrojak\/David Guetta\/Martin Garrix\/Calvin harris\/Nicky Romeo\/Alesso\/DJ\u677e\u6c38\/Hip Hop\/EDM\/DJ\/Track maker","protected":false,"verified":false,"followers_count":301,"friends_count":354,"listed_count":5,"favourites_count":728,"statuses_count":9150,"created_at":"Tue Sep 24 15:32:19 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598719850890993664\/OtpUOyXl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598719850890993664\/OtpUOyXl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1900825140\/1442158584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taka114ber","name":"\u9ad8\u6a4b \u84ee","id":3003626227,"id_str":"3003626227","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076659"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064308756480,"id_str":"663728064308756480","text":"\u7d05\u8449\u307e\u3093\u3058\u3085\u3046\u306e\u304a\u828b\u304c\u3068\u3066\u3082\u7f8e\u5473\u3057\u3044\u3002\n\u3069\u3089\u713c\u304d\u30b5\u30a4\u30ba\u306e\u98df\u3079\u305f\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":309394115,"id_str":"309394115","name":"\u304a\u3068\u306a\u3044\u3061\u3042\u304d","screen_name":"__achiki__","location":"\u6771\u4eac","url":"http:\/\/otonai-chiaki.tumblr.com","description":"\u7d75\u3092\u63cf\u3044\u3066\u307e\u3059\u3002 \u304a\u4ed5\u4e8b\u306e\u4f9d\u983c\u306a\u3069\u304a\u624b\u4f1d\u3044\u51fa\u6765\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3057\u305f\u3089 tumblr\u304b\u3089\u30e1\u30fc\u30eb\u3092\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":804,"friends_count":259,"listed_count":32,"favourites_count":223,"statuses_count":3424,"created_at":"Thu Jun 02 01:06:40 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F0729","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451239177737080832\/WfoBuV1A.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451239177737080832\/WfoBuV1A.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618594739563008000\/RhHpzVjc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618594739563008000\/RhHpzVjc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/309394115\/1436319260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076659"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321425408,"id_str":"663728064321425408","text":"AllureKath: kathnielquotes_: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3738019278,"id_str":"3738019278","name":"Slayer","screen_name":"kingslayer001","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":115,"listed_count":5,"favourites_count":0,"statuses_count":18565,"created_at":"Wed Sep 30 15:22:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649243432167194624\/Po5wGKyB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649243432167194624\/Po5wGKyB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[69,89]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064325554180,"id_str":"663728064325554180","text":"@saykn3 \n\u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2661\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(\u2022'-'\u2022)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727178039750656,"in_reply_to_status_id_str":"663727178039750656","in_reply_to_user_id":1940748691,"in_reply_to_user_id_str":"1940748691","in_reply_to_screen_name":"saykn3","user":{"id":3193433695,"id_str":"3193433695","name":"\u2741\u306b\u306e\u3070\u30fc\u3050\u2741","screen_name":"moco0416xxx","location":"Kazunari_ninomiya","url":null,"description":"Tokyo \/ 9.19 Blast Miyagi \u226b 12.26 Japonism \/ \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff08\u00b4\u30fc`\uff09","protected":false,"verified":false,"followers_count":60,"friends_count":130,"listed_count":0,"favourites_count":1062,"statuses_count":1146,"created_at":"Tue May 12 15:37:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656841371462930436\/80lE0V8A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656841371462930436\/80lE0V8A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193433695\/1443627068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"saykn3","name":"\u304d\u306e\u3053","id":1940748691,"id_str":"1940748691","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076663"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321462274,"id_str":"663728064321462274","text":"Streaming some Stranded Deep! https:\/\/t.co\/4bJGoPyHiJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2622718152,"id_str":"2622718152","name":"Harry H.","screen_name":"HarryHGraphics","location":null,"url":null,"description":"Lead Designer for @SurgeCompany creative member for @createoxygen & @wildprogaming. Here's my port if you care https:\/\/friskarts.carbonmade.com\/","protected":false,"verified":false,"followers_count":217,"friends_count":151,"listed_count":0,"favourites_count":437,"statuses_count":3092,"created_at":"Sat Jul 12 10:32:33 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699363265445889\/hgNFmp6p_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699363265445889\/hgNFmp6p_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2622718152\/1447073217","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4bJGoPyHiJ","expanded_url":"http:\/\/www.twitch.tv\/friskstreams","display_url":"twitch.tv\/friskstreams","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064317247488,"id_str":"663728064317247488","text":"\u041c\u043e\u0435 \u043d\u043e\u0432\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u0435 `\u0421\u0442\u0440\u043e...`. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439 \u043f\u0440\u0435\u0432\u0437\u043e\u0439\u0442\u0438 \u043c\u0435\u043d\u044f \u0432 The Tribez \u0434\u043b\u044f #Android! https:\/\/t.co\/RSNvepHiXH #androidgames, #gameinsight","source":"","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4140169036,"id_str":"4140169036","name":"Natasha","screen_name":"Natasha68075983","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Sun Nov 08 07:36:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Android","indices":[73,81]},{"text":"androidgames","indices":[107,120]},{"text":"gameinsight","indices":[122,134]}],"urls":[{"url":"https:\/\/t.co\/RSNvepHiXH","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080076661"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064312926208,"id_str":"663728064312926208","text":"@yuhosizu wwwwwwwwwwwwww\u306d\u3048wwww\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3082\u3089\u3063\u305f\u3093\u3060\u3051\u3069\u3053\u308c\u306fwwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727947908444162,"in_reply_to_status_id_str":"663727947908444162","in_reply_to_user_id":200062107,"in_reply_to_user_id_str":"200062107","in_reply_to_screen_name":"yuhosizu","user":{"id":386052347,"id_str":"386052347","name":"\u85cd\u90a3(\u3042\u3044\u306a\u3093)@\u30db\u30af\u30b5\u30a4\u4f7f\u3044","screen_name":"hisui_yura","location":null,"url":null,"description":"LJK\u2192next\u7f8e\u5bb9\u5b66\u751f\/\u5b66\u751f\u3053\u3063\u3077\u308c\u3044\u3084\u30fc\u3067\u3059\u3002\u51ac\u30b3\u30df1.2\u65e5\u76ee\u884c\u304d\u307e\u3059\uff01\/*\u30d5\u30a9\u30ed\u30fc\u81ea\u7531\u306b\u3069\u3046\u305e\u2661\/\u304b\u308f\u3044\u3044\u3053\u304c\u3060\u3044\u3059\u304d\uff01\/\u4e2d\u90e8\u3089\u3078\u3093\u306b\u3044\u307e\u3059\u95a2\u6771\u3082\u884c\u304d\u307e\u3059(\u06f6\u2022\u0300\u1d17\u2022\u0301)\u06f6\u30ab\u30a4\u30d6\u2192312807\u3067\u3059 \u0b18(\u0a6d\u02ca\ua4b3 \u02cb)\u0a6d\u30de\u30e2FC\u3089\u3075\u3074\u30ac\u30fc\u30eb \u3072\u3081\u307e\u304b\u306e\u304a\u3070\u3070\u3067\u3059\u2661\u2661","protected":false,"verified":false,"followers_count":858,"friends_count":744,"listed_count":46,"favourites_count":7574,"statuses_count":104338,"created_at":"Thu Oct 06 15:53:08 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661332469275209728\/8GsRKMi-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661332469275209728\/8GsRKMi-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386052347\/1433977108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuhosizu","name":"\u67da\u2606\u5b50@\u30ab\u30a6\u30f3\u30c8\u53d6\u3063\u3066\u307f\u305f\u3044","id":200062107,"id_str":"200062107","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321290241,"id_str":"663728064321290241","text":"\u305f\u3060\u3044\u307e\u306b\u3054\u3056\u308b\u266a\n\u3084\u306f\u308a\u653b\u3081\u3089\u308c\u308b\u306a\u3089\u30d7\u30eb\u30eb\u30fc\u30c8\u6bbf\u3084\u72c2\u4e09\u6bbf\u306e\u69d8\u306a\u65b9\u304c\u3044\u3044\u306b\u3054\u3056\u308b\u306a\u301c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236176164,"id_str":"3236176164","name":"\u30e6\u30ad\u30ab\u30bc\u30fb\u30d1\u30cd\u30c8\u30fc\u30cd\uff20\u725d\u72d0","screen_name":"month_r18","location":null,"url":null,"description":"\u62d9\u8005\u30e6\u30ad\u30ab\u30bc\uff65\u30d1\u30cd\u30c8\u30fc\u30cd\u3068\u7533\u3059\u306b\u3054\u3056\u308b\u266a\n\u8272\u3093\u306a\u4eba\u3068\u7d61\u307f\u305f\u3044\u3067\u3054\u3056\u308b\uff01\u52ff\u8ad6\u4e00\u822c\u3001\u30ca\u30ea\u3001\u540c\u4f5c\u3001\u5225\u4f5c\u554f\u308f\u306a\u3044\u306b\u3054\u3056\u308b\u3088\u266a\n\u591c\u4f3d\u306f\u4eba\u3092\u9078\u3076\u306b\u3054\u3056\u308b\u304c\u826f\u3044\u306b\u3054\u3056\u308b\u3088\u266a\uff08\u3075\u305f\u306e\u8cac\u3081\u53d7\u3051\u53ef\uff09\u3042\u307e\u308a\u3057\u3064\u3053\u3044\u3068\u30d6\u30ed\u306b\u5165\u308c\u308b\u3067\u3054\u3056\u308b\u3088\uff1f\u203b\u304a\u90e8\u5c4b\u306f\uff11\u65e5\u306e\u5185\u3067\u7d42\u3089\u3057\u305f\u3044\u306e\u3067\u7406\u89e3\u3057\u3066\u304f\u3060\u3055\u308c\uff01\n\u604b\u4eba\u2665\u2192 @kisaragi0930","protected":false,"verified":false,"followers_count":358,"friends_count":348,"listed_count":5,"favourites_count":80,"statuses_count":6065,"created_at":"Thu Jun 04 19:08:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663578898567839744\/7daxx6kB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663578898567839744\/7daxx6kB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236176164\/1440070937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064329744384,"id_str":"663728064329744384","text":"RT @___love_0306: \u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u5897\u3084\u3057\u305f\u3044\u306e\u3067\u3084\u308a\u76f4\u3057\u307e\u3059\u203c\ufe0e\n\n\u25b7JK1\n\u25b7\u5ca9\u7530\u525b\u5178\n\u25b7\u85e4\u4e95\u59c9\u59b9\n\n\u3044\u3063\u3071\u3044\u558b\u308a\u305f\u3044\u3067\u3059\u2b50\ufe0f\ud83d\ude01\n\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u308b\u65b9\nRT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude4f\n\n#LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#LDHfam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328953481,"id_str":"3328953481","name":"\u3072\u304b\u308a\u2661LDH\u57a2\u30cf\u30a4\u30bf\u30c3\u30c1\u4f1a\u53c2\u6226\u6e08\u307f","screen_name":"EX_hikari1219","location":"LDH\u306a\u3057\u3067\u306f\u751f\u304d\u3066\u3044\u3051\u306a\u3044","url":null,"description":"LDH\uff08EXILE.\u4e09\u4ee3\u76ee.GENE.E-girls\uff09\u5168\u90e8\u597d\u304dLDHfan\u306e\u4eba\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\/LDHfan\u306e\u4eba\u3001\u30d5\u30a9\u30ed\u30fc\u304a\u306d\u304c\u3044\u3057\u307e\u3059\/\u767b\u5742\u5e83\u81e3.\u4f50\u85e4\u5927\u6a39.\u767d\u6ff1\u4e9c\u5d50.\u7247\u5bc4\u6dbc\u592a.\u5c0f\u68ee\u96bc.\u4e2d\u52d9\u88d5\u592a\u304c\u4e3b\u306b\u597d\u304d\u3067\u3059\u2764\ufe0e\u2764\ufe0e \u30cf\u30a4\u30bf\u30c3\u30c1\u304b\u3089GENE\u306b\u5922\u4e2d\u2764\ufe0e\u795e\u5948\u5ddd\u4f4f\u307f\u306e\u9ad8\uff11\u5973\u3067\u3059\u2764\ufe0e\u2764\ufe0e\u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u306a\u3044\u3067\u270b","protected":false,"verified":false,"followers_count":3840,"friends_count":3437,"listed_count":12,"favourites_count":1326,"statuses_count":11499,"created_at":"Mon Aug 24 15:41:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663666309385687040\/zw1PrqBf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663666309385687040\/zw1PrqBf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328953481\/1442803814","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:48:59 +0000 2015","id":663609208105861120,"id_str":"663609208105861120","text":"\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u5897\u3084\u3057\u305f\u3044\u306e\u3067\u3084\u308a\u76f4\u3057\u307e\u3059\u203c\ufe0e\n\n\u25b7JK1\n\u25b7\u5ca9\u7530\u525b\u5178\n\u25b7\u85e4\u4e95\u59c9\u59b9\n\n\u3044\u3063\u3071\u3044\u558b\u308a\u305f\u3044\u3067\u3059\u2b50\ufe0f\ud83d\ude01\n\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u308b\u65b9\nRT\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude4f\n\n#LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#LDHfam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc https:\/\/t.co\/FsjSDeSgKR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4144380498,"id_str":"4144380498","name":"y__m","screen_name":"___love_0306","location":null,"url":null,"description":"\u2708\ufe0eJK1...\u4e09\u4ee3\u76eeJsoulBrothers \u2708\ufe0e\u8ab0\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u203c\ufe0e \u6ca2\u5c71\u8a71\u3057\u305f\u3044\u3067\u3059\u203c\ufe0e \u21aa\ufe0e\u5ca9\u3061\u3083\u3093\u21aa\ufe0e\u85e4\u4e95\u59c9\u59b9\u2764\ufe0e\u201d","protected":false,"verified":false,"followers_count":88,"friends_count":127,"listed_count":0,"favourites_count":11,"statuses_count":45,"created_at":"Fri Nov 06 09:09:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663611395464761344\/nDvYhm9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663611395464761344\/nDvYhm9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4144380498\/1446803363","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":14,"entities":{"hashtags":[{"text":"LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[81,96]},{"text":"LDHfam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[98,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663609181006512128,"id_str":"663609181006512128","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":644,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663609181006512128,"id_str":"663609181006512128","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":644,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663609180998078465,"id_str":"663609180998078465","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL8UEAE2GvN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL8UEAE2GvN.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663609181073633281,"id_str":"663609181073633281","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCMOU8AEE15t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCMOU8AEE15t.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":902,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":580,"h":902,"resize":"fit"},"small":{"w":340,"h":528,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[99,114]},{"text":"LDHfam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[116,131]}],"urls":[],"user_mentions":[{"screen_name":"___love_0306","name":"y__m","id":4144380498,"id_str":"4144380498","indices":[3,16]}],"symbols":[],"media":[{"id":663609181006512128,"id_str":"663609181006512128","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":644,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663609208105861120,"source_status_id_str":"663609208105861120","source_user_id":4144380498,"source_user_id_str":"4144380498"}]},"extended_entities":{"media":[{"id":663609181006512128,"id_str":"663609181006512128","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL-UwAAekN7.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":644,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663609208105861120,"source_status_id_str":"663609208105861120","source_user_id":4144380498,"source_user_id_str":"4144380498"},{"id":663609180998078465,"id_str":"663609180998078465","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCL8UEAE2GvN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCL8UEAE2GvN.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663609208105861120,"source_status_id_str":"663609208105861120","source_user_id":4144380498,"source_user_id_str":"4144380498"},{"id":663609181073633281,"id_str":"663609181073633281","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWdCMOU8AEE15t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWdCMOU8AEE15t.jpg","url":"https:\/\/t.co\/FsjSDeSgKR","display_url":"pic.twitter.com\/FsjSDeSgKR","expanded_url":"http:\/\/twitter.com\/___love_0306\/status\/663609208105861120\/photo\/1","type":"photo","sizes":{"large":{"w":580,"h":902,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":580,"h":902,"resize":"fit"},"small":{"w":340,"h":528,"resize":"fit"}},"source_status_id":663609208105861120,"source_status_id_str":"663609208105861120","source_user_id":4144380498,"source_user_id_str":"4144380498"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076664"} +{"delete":{"status":{"id":663727938504925184,"id_str":"663727938504925184","user_id":177317537,"user_id_str":"177317537"},"timestamp_ms":"1447080076814"}} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064312971265,"id_str":"663728064312971265","text":"@frankii__mae this is why I fwu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727763203878913,"in_reply_to_status_id_str":"663727763203878913","in_reply_to_user_id":1617936169,"in_reply_to_user_id_str":"1617936169","in_reply_to_screen_name":"frankii__mae","user":{"id":1362701414,"id_str":"1362701414","name":"Scoops\u2691","screen_name":"ChaunMalone","location":"Denton\/Sachse, Tx #UNT16","url":"http:\/\/Instagram.com\/_scoops","description":"I find it ironic that you've been sleeping on the one you've been dreaming bout #Kinesiology #UNTBaseball #3 \u26be\ufe0f","protected":false,"verified":false,"followers_count":1692,"friends_count":1193,"listed_count":14,"favourites_count":32277,"statuses_count":62185,"created_at":"Thu Apr 18 19:14:37 +0000 2013","utc_offset":-21600,"time_zone":"Central America","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658884649490501632\/z9XQFakS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658884649490501632\/z9XQFakS_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"f77b0bf942a40070","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f77b0bf942a40070.json","place_type":"city","name":"Denton","full_name":"Denton, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-97.187543,33.128938],[-97.187543,33.276053],[-97.041998,33.276053],[-97.041998,33.128938]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"frankii__mae","name":"FrankToven\u2122","id":1617936169,"id_str":"1617936169","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076660"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338104320,"id_str":"663728064338104320","text":"@iuchiriki \n\u6d74\u8863\uff1f\u306e\u3084\u3064\u304b\u3063\u3053\u3044\u3044\u3063\u3066\u601d\u3063\u305f\ud83e\udd16\ud83e\udd18\ud83c\udffb\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727928933351424,"in_reply_to_status_id_str":"663727928933351424","in_reply_to_user_id":2690561803,"in_reply_to_user_id_str":"2690561803","in_reply_to_screen_name":"iuchiriki","user":{"id":2483431363,"id_str":"2483431363","name":"\u3044 \u3050 \u308c \u304a \u3093 \uff08 P-P \uff09","screen_name":"chinatsu_kj","location":"\u30b4\u30ea\u30e9\u98fc\u80b2\u4e2d","url":null,"description":"#\u30ad\u30df\u30c1\u30e5\u30a6\u30c9\u30af","protected":false,"verified":false,"followers_count":1186,"friends_count":600,"listed_count":2,"favourites_count":19242,"statuses_count":11249,"created_at":"Thu May 08 09:01:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661026968410849281\/1l22ak-G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661026968410849281\/1l22ak-G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2483431363\/1445157873","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iuchiriki","name":"\u308a\u30fc\u304d\u2776","id":2690561803,"id_str":"2690561803","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064300318720,"id_str":"663728064300318720","text":"Experience the CR-V at your nearest Honda Authorised Dealer today! https:\/\/t.co\/KAWZzTc63R","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877312933,"id_str":"3877312933","name":"Chong Mee Wan","screen_name":"cmwan8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":45,"listed_count":0,"favourites_count":0,"statuses_count":720,"created_at":"Tue Oct 13 05:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KAWZzTc63R","expanded_url":"http:\/\/mygravytrain.com\/64057\/390632","display_url":"mygravytrain.com\/64057\/390632","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076657"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064317165568,"id_str":"663728064317165568","text":"@Mlp_gally and trust me I know what being raped feels like (is hinting to banned from equestria) it's gross","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727691649150977,"in_reply_to_status_id_str":"663727691649150977","in_reply_to_user_id":2711457715,"in_reply_to_user_id_str":"2711457715","in_reply_to_screen_name":"Mlp_gally","user":{"id":3732155412,"id_str":"3732155412","name":"rainbow dash","screen_name":"ajinheat","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":23,"friends_count":62,"listed_count":0,"favourites_count":7,"statuses_count":401,"created_at":"Wed Sep 30 02:39:01 +0000 2015","utc_offset":21600,"time_zone":"GMT-6","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658327395036852224\/-vJltaGG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658327395036852224\/-vJltaGG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3732155412\/1443581245","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mlp_gally","name":"Gally Blue*robot*","id":2711457715,"id_str":"2711457715","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076661"} +{"delete":{"status":{"id":663124323624816640,"id_str":"663124323624816640","user_id":2353984501,"user_id_str":"2353984501"},"timestamp_ms":"1447080076764"}} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064325533696,"id_str":"663728064325533696","text":"RT @EXOffical: \u72ec\u5bb6\u5927\u7206\u6599 Weibo: CHANYEOL & SNSD\u2019s Seohyun for Married To An Anti Fan https:\/\/t.co\/wrIKdUQ13h\nhttps:\/\/t.co\/f9oGVxaJws https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287491742,"id_str":"287491742","name":"\u0441\u043du\u0432\u0432\u0447 \u2022\u043e\u043e\u2022","screen_name":"mamookung","location":null,"url":"http:\/\/chubbykang.tumblr.com","description":"|\u0e51\u0e59\u0e59\u0e52| EXO-L \u2022 \uc21c\ub529\uc774","protected":false,"verified":false,"followers_count":437,"friends_count":253,"listed_count":2,"favourites_count":4418,"statuses_count":65684,"created_at":"Mon Apr 25 03:09:05 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E8C3CF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478058659964915712\/15zNH0tz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478058659964915712\/15zNH0tz.jpeg","profile_background_tile":true,"profile_link_color":"FA8EC2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8BE3D1","profile_text_color":"DB036B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660833798574084097\/-N-SNLqu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660833798574084097\/-N-SNLqu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287491742\/1429325276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:14:55 +0000 2015","id":663706333393219584,"id_str":"663706333393219584","text":"\u72ec\u5bb6\u5927\u7206\u6599 Weibo: CHANYEOL & SNSD\u2019s Seohyun for Married To An Anti Fan https:\/\/t.co\/wrIKdUQ13h\nhttps:\/\/t.co\/f9oGVxaJws https:\/\/t.co\/q0EAFqSFwZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":420304793,"id_str":"420304793","name":"EXOFFICAL","screen_name":"EXOffical","location":"Instagram: exoffical_insta","url":"http:\/\/youtube.com\/EXOfficalYT","description":"The un-official International Fanbase for SM Entertainment boy group, EXO. (eostaffs@gmail.com) (http:\/\/line.me\/ti\/p\/@kha2979s)","protected":false,"verified":false,"followers_count":944821,"friends_count":93,"listed_count":3372,"favourites_count":40,"statuses_count":72148,"created_at":"Thu Nov 24 13:03:49 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/758597411\/45330100961f8784b0693cb38d8905fb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/758597411\/45330100961f8784b0693cb38d8905fb.png","profile_background_tile":true,"profile_link_color":"1C191C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"51688F","profile_text_color":"8C95C2","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641929228431130624\/cEh7vrWQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641929228431130624\/cEh7vrWQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/420304793\/1437811697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":454,"favorite_count":507,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wrIKdUQ13h","expanded_url":"http:\/\/ww4.sinaimg.cn\/large\/0068QIeIgw1exuukxlty2j30hs0nq0tr.jpg","display_url":"ww4.sinaimg.cn\/large\/0068QIeI\u2026","indices":[70,93]},{"url":"https:\/\/t.co\/f9oGVxaJws","expanded_url":"http:\/\/ww4.sinaimg.cn\/large\/0068QIeIgw1exuukxcvrjj30hs0nqq3y.jpg","display_url":"ww4.sinaimg.cn\/large\/0068QIeI\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[],"media":[{"id":663706254028607490,"id_str":"663706254028607490","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706254028607490,"id_str":"663706254028607490","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}}},{"id":663706254112518144,"id_str":"663706254112518144","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UleU8AA4iMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UleU8AA4iMK.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}}},{"id":663706254204735488,"id_str":"663706254204735488","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ul0UEAAylqh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ul0UEAAylqh.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wrIKdUQ13h","expanded_url":"http:\/\/ww4.sinaimg.cn\/large\/0068QIeIgw1exuukxlty2j30hs0nq0tr.jpg","display_url":"ww4.sinaimg.cn\/large\/0068QIeI\u2026","indices":[85,108]},{"url":"https:\/\/t.co\/f9oGVxaJws","expanded_url":"http:\/\/ww4.sinaimg.cn\/large\/0068QIeIgw1exuukxcvrjj30hs0nqq3y.jpg","display_url":"ww4.sinaimg.cn\/large\/0068QIeI\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"EXOffical","name":"EXOFFICAL","id":420304793,"id_str":"420304793","indices":[3,13]}],"symbols":[],"media":[{"id":663706254028607490,"id_str":"663706254028607490","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}},"source_status_id":663706333393219584,"source_status_id_str":"663706333393219584","source_user_id":420304793,"source_user_id_str":"420304793"}]},"extended_entities":{"media":[{"id":663706254028607490,"id_str":"663706254028607490","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UlKUkAITv_q.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}},"source_status_id":663706333393219584,"source_status_id_str":"663706333393219584","source_user_id":420304793,"source_user_id_str":"420304793"},{"id":663706254112518144,"id_str":"663706254112518144","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1UleU8AA4iMK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1UleU8AA4iMK.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":400,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":534,"resize":"fit"}},"source_status_id":663706333393219584,"source_status_id_str":"663706333393219584","source_user_id":420304793,"source_user_id_str":"420304793"},{"id":663706254204735488,"id_str":"663706254204735488","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1Ul0UEAAylqh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1Ul0UEAAylqh.jpg","url":"https:\/\/t.co\/q0EAFqSFwZ","display_url":"pic.twitter.com\/q0EAFqSFwZ","expanded_url":"http:\/\/twitter.com\/EXOffical\/status\/663706333393219584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663706333393219584,"source_status_id_str":"663706333393219584","source_user_id":420304793,"source_user_id_str":"420304793"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080076663"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338112512,"id_str":"663728064338112512","text":"@fifth_stand_by \uff01\uff1f \u304a\u3084\u3042\u308a\u3067\u3059\uff01(\uffe3^\uffe3\u309e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727836092469248,"in_reply_to_status_id_str":"663727836092469248","in_reply_to_user_id":2958554216,"in_reply_to_user_id_str":"2958554216","in_reply_to_screen_name":"fifth_stand_by","user":{"id":2299510777,"id_str":"2299510777","name":"\u3055\u3051","screen_name":"sake_main_info","location":"\u898b\u6cbc\u7530\u3093\u307c\u306e\u305d\u3070","url":"http:\/\/twpf.jp\/sake_main_info","description":"\u65e5\u3005\u5909(\u614b)\u306b\u306a\u308b\u5909\u614b\u30e1\u30ed\u30b3\u30a2\u30ac\u30eb\u30d5\u30ec\u53a8\u304a\u3058\u3044\u3055\u3093(20\u4ee3)\u3002\u30ac\u30fc\u30eb\u30d5\u30ec\u30f3\u30c9(\u4eee)\/Tokyo 7th \u30b7\u30b9\u30bf\u30fc\u30ba\/\u3054\u6ce8\u6587\u306f\u3046\u3055\u304e\u3067\u3059\u304b\uff1f\/\u9f8d\u304c\u5982\u304f\/\u30d7\u30e9\u30e2\u30c7\u30eb\/\u3086\u3044\u304b\u304a\u308a\/\u5c0f\u5009\u552f\/elfin'\/\u30ed\u30c3\u30af\u8272\u3005\u266a","protected":false,"verified":false,"followers_count":381,"friends_count":475,"listed_count":8,"favourites_count":726,"statuses_count":15410,"created_at":"Sun Jan 19 11:21:22 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/527113122276843520\/k1HvuWgD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/527113122276843520\/k1HvuWgD.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662219296580304897\/5k1haPpe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662219296580304897\/5k1haPpe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2299510777\/1446720634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fifth_stand_by","name":"\u4e94\u4ee3","id":2958554216,"id_str":"2958554216","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338116610,"id_str":"663728064338116610","text":"@hosinominami373 \u30d0\u30d5\u30a1\u30df\u30ca\u30df\u30f3\u3092\u3069\u3046\u305e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727989964668928,"in_reply_to_status_id_str":"663727989964668928","in_reply_to_user_id":2726048978,"in_reply_to_user_id_str":"2726048978","in_reply_to_screen_name":"hosinominami373","user":{"id":2726048978,"id_str":"2726048978","name":"\u307f\u3084\u22bf\u661f\u91ce\u3061\u3083\u3093","screen_name":"hosinominami373","location":null,"url":null,"description":"1\u65e53\u98df\u661f\u91ce\u3061\u3083\u3093 \u661f\u91ce\u3061\u3083\u3093\u5929\u4f7f \u661f\u91ce\u3061\u3083\u3093\u304c\u3044\u308c\u3070\u4e16\u754c\u306f\u5e73\u548c\u3060\u3068\u601d\u3063\u3066\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u3053\u3061\u3089 \u661f\u91ce\u3061\u3083\u3093\u53ef\u611b\u3044\u98df\u3079\u305f\u3044 \u4e43\u6728\u574246\u22bf \u53ef\u611b\u3044\u5973\u306e\u5b50\u306f\u6b63\u7fa9 \u65e5\u5e38\u30c4\u30a4\u30fc\u30c8\u5c11\u3005","protected":false,"verified":false,"followers_count":100,"friends_count":87,"listed_count":2,"favourites_count":3492,"statuses_count":10999,"created_at":"Tue Aug 12 12:04:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643722085852811265\/Kr5XRTfr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643722085852811265\/Kr5XRTfr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2726048978\/1442645346","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hosinominami373","name":"\u307f\u3084\u22bf\u661f\u91ce\u3061\u3083\u3093","id":2726048978,"id_str":"2726048978","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076666"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064308752384,"id_str":"663728064308752384","text":"Irfan Kusnadi Yuk follow @SudahBetulID @meidina_c @silmawdyndr @t_tantiwiratni Follow & Get Prize #FollowSudahBetul #SudahBetul","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787536563,"id_str":"2787536563","name":"irfan Kusnadi","screen_name":"1p4nk_","location":"Kota Tangerang, Banten","url":"http:\/\/instagram.com\/ipankjoint","description":"simple is the best","protected":false,"verified":false,"followers_count":421,"friends_count":396,"listed_count":5,"favourites_count":145,"statuses_count":18567,"created_at":"Wed Sep 03 08:12:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627007093468348416\/pAvb8UxM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627007093468348416\/pAvb8UxM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2787536563\/1415353879","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FollowSudahBetul","indices":[102,119]},{"text":"SudahBetul","indices":[120,131]}],"urls":[],"user_mentions":[{"screen_name":"SudahBetulID","name":"Sudah Betul","id":3328156045,"id_str":"3328156045","indices":[25,38]},{"screen_name":"meidina_c","name":"meidina_c","id":285995751,"id_str":"285995751","indices":[39,49]},{"screen_name":"silmawdyndr","name":"Silma Widyandara","id":3996206473,"id_str":"3996206473","indices":[50,62]},{"screen_name":"t_tantiwiratni","name":"tantiwiratni","id":388936342,"id_str":"388936342","indices":[63,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080076659"} +{"delete":{"status":{"id":663723018582011904,"id_str":"663723018582011904","user_id":1627229070,"user_id_str":"1627229070"},"timestamp_ms":"1447080076832"}} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064321290240,"id_str":"663728064321290240","text":"@3vrBYu4H0z42Rzh \n\u3048\u3001\u307f\u304f\u306b\u3082\u304b\u3063\u3066\u304d\u3066\u3088\u306d\n\u304b\u3064\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717945441300480,"in_reply_to_status_id_str":"663717945441300480","in_reply_to_user_id":3513174613,"in_reply_to_user_id_str":"3513174613","in_reply_to_screen_name":"3vrBYu4H0z42Rzh","user":{"id":3245644932,"id_str":"3245644932","name":"\u3048\u3062\u3083\u304d\u307f\u304f","screen_name":"Daaaaaanti","location":null,"url":null,"description":"sanwa kakumei soft #11","protected":false,"verified":false,"followers_count":595,"friends_count":566,"listed_count":0,"favourites_count":530,"statuses_count":1250,"created_at":"Mon Jun 15 05:10:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658587273055748096\/VQVLiJDq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658587273055748096\/VQVLiJDq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245644932\/1443275533","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3vrBYu4H0z42Rzh","name":"\u2661\u3072\u306a\u307d\u3088\u2661","id":3513174613,"id_str":"3513174613","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080076662"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064304709632,"id_str":"663728064304709632","text":"This honestly made me speechless last night.... ONLY 4% of people would chose a CLASSIC mustang?!?!?! Ppl don't know https:\/\/t.co\/orswebMsVU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3430301974,"id_str":"3430301974","name":"Jacqueline Riera","screen_name":"jackieriera","location":null,"url":null,"description":"IG: jackie.riera","protected":false,"verified":false,"followers_count":102,"friends_count":103,"listed_count":1,"favourites_count":1388,"statuses_count":1056,"created_at":"Tue Aug 18 17:55:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656114244212150272\/P4Ke1gff_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656114244212150272\/P4Ke1gff_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3430301974\/1445902655","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728063180615681,"id_str":"663728063180615681","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKClWsAESOH0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKClWsAESOH0.jpg","url":"https:\/\/t.co\/orswebMsVU","display_url":"pic.twitter.com\/orswebMsVU","expanded_url":"http:\/\/twitter.com\/jackieriera\/status\/663728064304709632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728063180615681,"id_str":"663728063180615681","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKClWsAESOH0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKClWsAESOH0.jpg","url":"https:\/\/t.co\/orswebMsVU","display_url":"pic.twitter.com\/orswebMsVU","expanded_url":"http:\/\/twitter.com\/jackieriera\/status\/663728064304709632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076658"} +{"delete":{"status":{"id":663412052883566593,"id_str":"663412052883566593","user_id":1398398779,"user_id_str":"1398398779"},"timestamp_ms":"1447080076973"}} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064329814016,"id_str":"663728064329814016","text":"Normalmente la entristezco \ud83d\ude05\ud83d\ude05","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":371205623,"id_str":"371205623","name":"El pez\u00f3n de Madonna","screen_name":"KydraBoh","location":"Ghosttown","url":"http:\/\/kydraboh.tumblr.com\/","description":"I'm too busy toc\u00e1ndome el pussy. One x. Madonna. Oh, you twerk? Bitch, I vogue. La revoluci\u00f3n ser\u00e1 pezonista o no ser\u00e1. Lambda. 25\u2661","protected":false,"verified":false,"followers_count":431,"friends_count":195,"listed_count":16,"favourites_count":15717,"statuses_count":120118,"created_at":"Sat Sep 10 11:53:47 +0000 2011","utc_offset":46800,"time_zone":"Wellington","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470538655660900352\/Fb3yM95K.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470538655660900352\/Fb3yM95K.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8C8C8C","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656530258007601152\/I0mH5wf1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656530258007601152\/I0mH5wf1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/371205623\/1439668811","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076664"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064338096129,"id_str":"663728064338096129","text":"yes!! Sitting by myself on the bus again this morning \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f\ud83d\udc9b https:\/\/t.co\/Y86Vk0jcek","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346878263,"id_str":"346878263","name":"\u2620 mia la mala \u2620","screen_name":"miavargas99","location":null,"url":null,"description":"I'm sleepy","protected":false,"verified":false,"followers_count":267,"friends_count":225,"listed_count":1,"favourites_count":21143,"statuses_count":18853,"created_at":"Mon Aug 01 23:54:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658023784671084544\/KGR3MLBr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658023784671084544\/KGR3MLBr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346878263\/1446156748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728036177580037,"id_str":"663728036177580037","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJId_VEAUd0wY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJId_VEAUd0wY.jpg","url":"https:\/\/t.co\/Y86Vk0jcek","display_url":"pic.twitter.com\/Y86Vk0jcek","expanded_url":"http:\/\/twitter.com\/miavargas99\/status\/663728064338096129\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728036177580037,"id_str":"663728036177580037","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJId_VEAUd0wY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJId_VEAUd0wY.jpg","url":"https:\/\/t.co\/Y86Vk0jcek","display_url":"pic.twitter.com\/Y86Vk0jcek","expanded_url":"http:\/\/twitter.com\/miavargas99\/status\/663728064338096129\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080076666"} +{"delete":{"status":{"id":660974893811519489,"id_str":"660974893811519489","user_id":2521749234,"user_id_str":"2521749234"},"timestamp_ms":"1447080077186"}} +{"delete":{"status":{"id":663371724633731073,"id_str":"663371724633731073","user_id":300054382,"user_id_str":"300054382"},"timestamp_ms":"1447080077132"}} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064308883456,"id_str":"663728064308883456","text":"Sergio Ramos mima a Cristiano y carga contra algunos sevillistas y el m\u00e9dico blanco. https:\/\/t.co\/RGGSw9eG7o https:\/\/t.co\/OWxFYIpBp9","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18909241,"id_str":"18909241","name":"EcoDiario.es","screen_name":"elecodiario","location":"Madrid","url":"http:\/\/www.ecodiario.es","description":"El canal de informaci\u00f3n general de @elEconomistaes. Tambi\u00e9n nos puedes acompa\u00f1ar en: http:\/\/www.facebook.com\/EcoDiario","protected":false,"verified":false,"followers_count":16416,"friends_count":646,"listed_count":627,"favourites_count":84,"statuses_count":116466,"created_at":"Mon Jan 12 18:17:08 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B49439","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611445979200520192\/CdNgb5uE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611445979200520192\/CdNgb5uE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18909241\/1434469089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RGGSw9eG7o","expanded_url":"http:\/\/bit.ly\/1QdR31O","display_url":"bit.ly\/1QdR31O","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":663727979596484609,"id_str":"663727979596484609","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFLNWEAEEpD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFLNWEAEEpD2.jpg","url":"https:\/\/t.co\/OWxFYIpBp9","display_url":"pic.twitter.com\/OWxFYIpBp9","expanded_url":"http:\/\/twitter.com\/elecodiario\/status\/663728064308883456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":357,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727979596484609,"id_str":"663727979596484609","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFLNWEAEEpD2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFLNWEAEEpD2.jpg","url":"https:\/\/t.co\/OWxFYIpBp9","display_url":"pic.twitter.com\/OWxFYIpBp9","expanded_url":"http:\/\/twitter.com\/elecodiario\/status\/663728064308883456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":610,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":357,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080076659"} +{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064304541696,"id_str":"663728064304541696","text":"https:\/\/t.co\/UvFXwKpLPn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53679976,"id_str":"53679976","name":"virgil lee","screen_name":"vleeco","location":"Oregon","url":null,"description":"former Sgt. USMC \r\n No DMs Please","protected":false,"verified":false,"followers_count":4143,"friends_count":4075,"listed_count":53,"favourites_count":16054,"statuses_count":92321,"created_at":"Sat Jul 04 14:30:27 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583848471448326144\/jt1QEjBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583848471448326144\/jt1QEjBD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53679976\/1421597220","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728063084032000,"id_str":"663728063084032000","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKCOU8AA0z_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKCOU8AA0z_c.jpg","url":"https:\/\/t.co\/UvFXwKpLPn","display_url":"pic.twitter.com\/UvFXwKpLPn","expanded_url":"http:\/\/twitter.com\/vleeco\/status\/663728064304541696\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728063084032000,"id_str":"663728063084032000","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKCOU8AA0z_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKCOU8AA0z_c.jpg","url":"https:\/\/t.co\/UvFXwKpLPn","display_url":"pic.twitter.com\/UvFXwKpLPn","expanded_url":"http:\/\/twitter.com\/vleeco\/status\/663728064304541696\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":679,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080076658"} +{"delete":{"status":{"id":535529179333525505,"id_str":"535529179333525505","user_id":1148172162,"user_id_str":"1148172162"},"timestamp_ms":"1447080077332"}} +{"delete":{"status":{"id":607251672864333824,"id_str":"607251672864333824","user_id":161827896,"user_id_str":"161827896"},"timestamp_ms":"1447080077467"}} +{"delete":{"status":{"id":655571485210365957,"id_str":"655571485210365957","user_id":535737927,"user_id_str":"535737927"},"timestamp_ms":"1447080077566"}} +{"delete":{"status":{"id":644626004313374720,"id_str":"644626004313374720","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080077662"}} +{"delete":{"status":{"id":663668048012922880,"id_str":"663668048012922880","user_id":167881565,"user_id_str":"167881565"},"timestamp_ms":"1447080077686"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515733505,"id_str":"663728068515733505","text":"@TonkaTP yo escorpion. Mi pareja virgo. Estamos tratando de mejorar nuestra relacion. Funcionar\u00e1?","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":109687000,"in_reply_to_user_id_str":"109687000","in_reply_to_screen_name":"TonkaTP","user":{"id":490539705,"id_str":"490539705","name":"Nicole","screen_name":"NicoleErp","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":30,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Sun Feb 12 17:14:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550036387182149632\/Xu1a2BF3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550036387182149632\/Xu1a2BF3_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TonkaTP","name":"Tonka Tomicic","id":109687000,"id_str":"109687000","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077662"} +{"delete":{"status":{"id":576049050052636673,"id_str":"576049050052636673","user_id":3051146176,"user_id_str":"3051146176"},"timestamp_ms":"1447080077712"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532510720,"id_str":"663728068532510720","text":"Okay me digam o que est\u00e1 acontecendo pf #OhNoBriana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1029460279,"id_str":"1029460279","name":"\u2728 Flawless Girl \u2728","screen_name":"flawless_girlxx","location":"In Your Mind \u2728","url":null,"description":"\u2b50\ufe0f Dan\u00e7a | One Direction | Representa\u00e7\u00e3o | S\u00e9ries | Arte \u2b50\ufe0f","protected":false,"verified":false,"followers_count":1027,"friends_count":901,"listed_count":4,"favourites_count":19329,"statuses_count":28768,"created_at":"Sat Dec 22 23:20:07 +0000 2012","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621770526105710592\/89wuxuCX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621770526105710592\/89wuxuCX.jpg","profile_background_tile":true,"profile_link_color":"777799","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660200142004486144\/HRqm5mAb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660200142004486144\/HRqm5mAb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029460279\/1446281993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OhNoBriana","indices":[40,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532531200,"id_str":"663728068532531200","text":"dear mrs phares: y u a liar?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3260422993,"id_str":"3260422993","name":"smol plant nerd","screen_name":"andyradical_","location":"elkins wv","url":null,"description":"sadie \u2606 17 \u2606 intersectional feminist \u2022 \u2022 \u2022 \u2022 \u2022 (ethan makes me smile) \u2022 \u2022 \u2022 \u2022 \u2022","protected":false,"verified":false,"followers_count":157,"friends_count":138,"listed_count":1,"favourites_count":1257,"statuses_count":896,"created_at":"Mon Jun 29 20:51:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663561928376193024\/9EecKDst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663561928376193024\/9EecKDst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3260422993\/1446401290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068503207936,"id_str":"663728068503207936","text":"@LysFigueiredo muito bom","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663710771805863936,"in_reply_to_status_id_str":"663710771805863936","in_reply_to_user_id":1262273274,"in_reply_to_user_id_str":"1262273274","in_reply_to_screen_name":"LysFigueiredo","user":{"id":2738587395,"id_str":"2738587395","name":"Rodrxgs","screen_name":"rodrigotorresdc","location":null,"url":null,"description":"mil fita acontecendo e c\u00ea a\u00ed","protected":false,"verified":false,"followers_count":197,"friends_count":100,"listed_count":2,"favourites_count":4405,"statuses_count":11914,"created_at":"Sun Aug 10 01:04:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660712621415522306\/5HGBzsiu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660712621415522306\/5HGBzsiu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2738587395\/1446361137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LysFigueiredo","name":"Lyxx","id":1262273274,"id_str":"1262273274","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080077659"} +{"delete":{"status":{"id":576049050061049856,"id_str":"576049050061049856","user_id":3055365627,"user_id_str":"3055365627"},"timestamp_ms":"1447080077719"}} +{"delete":{"status":{"id":576049050056830976,"id_str":"576049050056830976","user_id":3063813777,"user_id_str":"3063813777"},"timestamp_ms":"1447080077716"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515729408,"id_str":"663728068515729408","text":"@KalebTheeeGreat thank you Kaleb \ud83d\ude0a\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727643985080320,"in_reply_to_status_id_str":"663727643985080320","in_reply_to_user_id":175097186,"in_reply_to_user_id_str":"175097186","in_reply_to_screen_name":"KalebTheeeGreat","user":{"id":338169157,"id_str":"338169157","name":"TheBrand","screen_name":"KeepinWhatsGOOD","location":"snapcahat : TheOnlyNijahhh ","url":"http:\/\/www.howtomindyourownbusiness.org","description":"My life. My choice. My mistakes. My lesson. NOT YOUR BUSINESS\u270a .... -watch me be great, I'm something you'll never forget :*","protected":false,"verified":false,"followers_count":2235,"friends_count":1163,"listed_count":1,"favourites_count":4462,"statuses_count":37403,"created_at":"Tue Jul 19 05:17:05 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179660519\/H0yfMO2n.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179660519\/H0yfMO2n.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663387896808906752\/c3wH-YjO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663387896808906752\/c3wH-YjO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338169157\/1446998851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KalebTheeeGreat","name":"Kaleb P. \u00ae","id":175097186,"id_str":"175097186","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515766272,"id_str":"663728068515766272","text":"RT @CarlosCamargo74: Ya para mucho como yo sera uno de los lunes mas felices ya que sera el ultimo lunes de estudio #FelizLunes \ud83d\ude03\ud83d\ude09\ud83d\ude09","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial\u00a9 PRO\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3578464096,"id_str":"3578464096","name":"Glockn","screen_name":"Lock_Society","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":127,"friends_count":0,"listed_count":0,"favourites_count":83,"statuses_count":77,"created_at":"Mon Sep 07 15:59:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661629794489147392\/641-dAsc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661629794489147392\/641-dAsc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3578464096\/1446579810","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:25 +0000 2015","id":663727597302456321,"id_str":"663727597302456321","text":"Ya para mucho como yo sera uno de los lunes mas felices ya que sera el ultimo lunes de estudio #FelizLunes \ud83d\ude03\ud83d\ude09\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1864482732,"id_str":"1864482732","name":"Carlos Camargo","screen_name":"CarlosCamargo74","location":"Nueva York, USA","url":"http:\/\/www.instagram.com\/carloscamargo78","description":"I Like it ;)","protected":false,"verified":false,"followers_count":2380,"friends_count":2224,"listed_count":2,"favourites_count":1757,"statuses_count":8686,"created_at":"Sat Sep 14 17:51:50 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600391779196633088\/fPzmaxdc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600391779196633088\/fPzmaxdc.png","profile_background_tile":true,"profile_link_color":"229F91","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660158043943018496\/p9sGOUU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660158043943018496\/p9sGOUU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1864482732\/1438616065","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":1,"entities":{"hashtags":[{"text":"FelizLunes","indices":[95,106]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FelizLunes","indices":[116,127]}],"urls":[],"user_mentions":[{"screen_name":"CarlosCamargo74","name":"Carlos Camargo","id":1864482732,"id_str":"1864482732","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507344896,"id_str":"663728068507344896","text":"Ontem twetei mas m\u00fasica nada haver","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352496335,"id_str":"352496335","name":"fernanda Lima","screen_name":"fernanda_lima6","location":"+27","url":null,"description":null,"protected":false,"verified":false,"followers_count":106,"friends_count":207,"listed_count":0,"favourites_count":140,"statuses_count":5033,"created_at":"Wed Aug 10 18:12:21 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623293922069098497\/Ig5AOw7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623293922069098497\/Ig5AOw7b_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080077660"} +{"delete":{"status":{"id":576049050061025280,"id_str":"576049050061025280","user_id":3052803532,"user_id_str":"3052803532"},"timestamp_ms":"1447080077717"}} +{"delete":{"status":{"id":576049050061008896,"id_str":"576049050061008896","user_id":3052238805,"user_id_str":"3052238805"},"timestamp_ms":"1447080077719"}} +{"delete":{"status":{"id":576049050052620288,"id_str":"576049050052620288","user_id":3062106718,"user_id_str":"3062106718"},"timestamp_ms":"1447080077711"}} +{"delete":{"status":{"id":576049050065244161,"id_str":"576049050065244161","user_id":3063893368,"user_id_str":"3063893368"},"timestamp_ms":"1447080077726"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068498993152,"id_str":"663728068498993152","text":"RT @cmrondon: Padre Virtuoso: la sociedad debe manifestar un rechazo total a la violencia del gobierno; y su slogan de ganar las elecciones\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1460866021,"id_str":"1460866021","name":"montserrat leal","screen_name":"montserratleal","location":null,"url":null,"description":"RADICALmente opuesta al r\u00e9gimen ileg\u00edtimo que desgobierna a Vzla. Animalista.","protected":false,"verified":false,"followers_count":3192,"friends_count":3176,"listed_count":19,"favourites_count":2882,"statuses_count":37987,"created_at":"Sun May 26 23:19:20 +0000 2013","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000361973809\/54bb9483c9f12ef78e2eb667e0fea0b7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000361973809\/54bb9483c9f12ef78e2eb667e0fea0b7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1460866021\/1377494255","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:21:24 +0000 2015","id":663692864120037376,"id_str":"663692864120037376","text":"Padre Virtuoso: la sociedad debe manifestar un rechazo total a la violencia del gobierno; y su slogan de ganar las elecciones`como sea`.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76947892,"id_str":"76947892","name":"C\u00e9sar Miguel Rond\u00f3n","screen_name":"cmrondon","location":"Venezuela ","url":"http:\/\/cesarmiguelrondon.com","description":"Periodista\/conductor http:\/\/Exitosfm.com. Autor: El Libro de la Salsa,Pais de Estreno, Ellos que se conocen tanto. Armando el rompecabezas de un pa\u00eds.","protected":false,"verified":false,"followers_count":1695262,"friends_count":1111,"listed_count":7382,"favourites_count":690,"statuses_count":57719,"created_at":"Thu Sep 24 14:11:15 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2F84EB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2613350935\/av9lvwqzmlqmvpafoikc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2613350935\/av9lvwqzmlqmvpafoikc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76947892\/1403121165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cmrondon","name":"C\u00e9sar Miguel Rond\u00f3n","id":76947892,"id_str":"76947892","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077658"} +{"delete":{"status":{"id":576048571906015232,"id_str":"576048571906015232","user_id":406671073,"user_id_str":"406671073"},"timestamp_ms":"1447080077708"}} +{"delete":{"status":{"id":634820434609836032,"id_str":"634820434609836032","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080077691"}} +{"delete":{"status":{"id":576049050056826880,"id_str":"576049050056826880","user_id":3056592767,"user_id_str":"3056592767"},"timestamp_ms":"1447080077714"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494651393,"id_str":"663728068494651393","text":"RT @akkin0707: 20151109 MJ\n\u30d2\u30e7\u30f3\u30b9\u30f3\u3001\u756a\u7d44\u306e\u53ce\u9332\u3067\u3082\u81ea\u5206\u306e\u307a\u3093\u3061\u3083\u3093\u3092\u63a2\u3057\u3066\u305fwww\u3073\u3085\u308a\u3092\u63a2\u3057\u3066\u305f\u306e\u304b\u3082\u3060\u3051\u3069\u3001\u3073\u3085\u308a\u306f\u3042\u3063\u3061\u3053\u3063\u3061\u306b\u305f\u304f\u3055\u3093\u3044\u305f\u3057\uff01\u30b8\u30e5\u30cb\u30e7\u306e\u5f8c\u308d\u304b\u3089\u30ad\u30e7\u30ed\u30ad\u30e7\u30ed\u30ad\u30e7\u30ed\u30ad\u30e7\u30edwwww\n\u898b\u3064\u3051\u3066\u306f\u7b11\u9854\u3067\u624b\u3092\u30d5\u30ea\u30d5\u30ea\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266951333,"id_str":"266951333","name":"\u3068\u3082\u308a\u3093\u2661\u3073\u3085\u308a\u30ce\u30d5\u6642\u3005\u30a2\u30fc\u30df\u30fc","screen_name":"nayutaku1023","location":"\u8d8a\u8c37\u30ec\u30a4\u30af\u30bf\u30a6\u30f3\u4ed8\u8fd1","url":null,"description":"BJT2015\u5e83\u5cf6\u795e\u6238\u5e55\u5f35\u53c2\u6226\uff01\u30da\u30f3\u30df\u6a2a\u6d5c\u540d\u53e4\u5c4b\u3001\u3073\u3085\u308a\u3057\u3087\u611b\u77e5\u795e\u62382days\u6a2a\u30a2\u30ea\u53c2\u6226B2ST\u30da\u30f3\u3002\u3082\u3082\u3044\u308d\u30af\u30ed\u30fc\u30d0\u30fcZ\u306f\u5225\u306e\u8179\u2661\u2661\n\u767e\u7530\u590f\u83dc\u5b50\u63a8\u3057!!!\u3048\u304f\u307c\u306f\u604b\u306e\u843d\u3068\u3057\u7a74\u3002\n\u6700\u8fd1\u306fBTS\u30b8\u30df\u30f3\u306b\u7d76\u8cdb\u6d6e\u6c17\u4e2d\u2661\n\u82b1\u69d8\u5e74\u83ef\u6a2a\u30a2\u30ea2days\u9032\u6483\uff5e\uff01\n\u30d0\u30f3\u30bf\u30f3\u95a2\u4fc2\u30ea\u30c4\u30a4\u591a\u3081\u3002\u3046\u308b\u3055\u304f\u3066\u3001\u3054\u3081\u3093\u306a\u3055\u30fc\u3044\uff01","protected":false,"verified":false,"followers_count":157,"friends_count":369,"listed_count":2,"favourites_count":1247,"statuses_count":6425,"created_at":"Wed Mar 16 02:42:14 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644460547560226821\/yTQ4vmV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644460547560226821\/yTQ4vmV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266951333\/1416443028","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:01:33 +0000 2015","id":663718070121136128,"id_str":"663718070121136128","text":"20151109 MJ\n\u30d2\u30e7\u30f3\u30b9\u30f3\u3001\u756a\u7d44\u306e\u53ce\u9332\u3067\u3082\u81ea\u5206\u306e\u307a\u3093\u3061\u3083\u3093\u3092\u63a2\u3057\u3066\u305fwww\u3073\u3085\u308a\u3092\u63a2\u3057\u3066\u305f\u306e\u304b\u3082\u3060\u3051\u3069\u3001\u3073\u3085\u308a\u306f\u3042\u3063\u3061\u3053\u3063\u3061\u306b\u305f\u304f\u3055\u3093\u3044\u305f\u3057\uff01\u30b8\u30e5\u30cb\u30e7\u306e\u5f8c\u308d\u304b\u3089\u30ad\u30e7\u30ed\u30ad\u30e7\u30ed\u30ad\u30e7\u30ed\u30ad\u30e7\u30edwwww\n\u898b\u3064\u3051\u3066\u306f\u7b11\u9854\u3067\u624b\u3092\u30d5\u30ea\u30d5\u30ea\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":336990958,"id_str":"336990958","name":"\uff0a\ucf00\uc774\uff0a","screen_name":"akkin0707","location":"Japan","url":null,"description":"\u2665\ufe0fBEAST\u2606Beauty\u2665\ufe0f\u30d2\u30e7\u30f3\u30b9\u30f3\u30d2\u30e7\u30f3\u30b9\u30f3\u3046\u308b\u3055\u3044\u3067\u3059\u3002\u65e5\u9803\u306e\u611a\u75f4\u3082\u8a00\u3044\u307e\u3059 \u203b\u30d5\u30a9\u30ed\u30d0\u304a\u4f11\u307f\u4e2d \uff0a\u77e5\u3089\u306a\u3044\u9375\u30a2\u30ab\u3055\u3093\u306f\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u203b\u30ec\u30dd\u5c02\u7528\u30a2\u30ab\u3067\u306f\u3042\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":710,"friends_count":128,"listed_count":10,"favourites_count":1894,"statuses_count":24584,"created_at":"Sun Jul 17 07:54:06 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507190405956251649\/6iloFytP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507190405956251649\/6iloFytP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336990958\/1432740545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akkin0707","name":"\uff0a\ucf00\uc774\uff0a","id":336990958,"id_str":"336990958","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068519976960,"id_str":"663728068519976960","text":"Solo el morbo y la perversidad pueden justificar la escucha y grabaci\u00f3n de llamadas telef\u00f3nicas y violar el dercho a la privacidad.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2474534272,"id_str":"2474534272","name":"Rodolfo Colindres","screen_name":"rcolindrese","location":null,"url":"http:\/\/www.radioamerica.hn","description":"Periodista Radio Am\u00e9rica Honduras,los comentarios son puntos de vista personales y no representan, necesariamente,la visi\u00f3n del medio para el cual laboro.","protected":false,"verified":false,"followers_count":321,"friends_count":17,"listed_count":2,"favourites_count":3,"statuses_count":148,"created_at":"Thu Apr 10 18:45:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609385795414179840\/vN6iRGPN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609385795414179840\/vN6iRGPN_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077663"} +{"delete":{"status":{"id":576049050065219585,"id_str":"576049050065219585","user_id":3062059349,"user_id_str":"3062059349"},"timestamp_ms":"1447080077720"}} +{"delete":{"status":{"id":576049050031632385,"id_str":"576049050031632385","user_id":3051111875,"user_id_str":"3051111875"},"timestamp_ms":"1447080077713"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532568064,"id_str":"663728068532568064","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242215450,"id_str":"3242215450","name":"Abilia Marney","screen_name":"leqekujopyha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":92,"friends_count":629,"listed_count":6,"favourites_count":18349,"statuses_count":18820,"created_at":"Fri May 08 17:43:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642666841156947968\/eURymhO0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642666841156947968\/eURymhO0_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":470,"favorite_count":290,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507209729,"id_str":"663728068507209729","text":"\u71d5\u3055\u3093\u306e\u30d5\u30ea\u30fc\u30a2\u30a4\u30b3\u30f3\u3092\u8a2d\u5b9a\u3057\u3066\u307f\u305f\u3001\u3001\u3002\u306a\u3093\u304b\u71d5\u3055\u3093\u306b\u306a\u3063\u305f\u6c17\u5206\u2190\u304a\u3053\u304c\u307e\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2646680150,"id_str":"2646680150","name":"\u5fc3\u3055\u3093","screen_name":"a_ai55","location":null,"url":null,"description":"\u5fc3(\u3053\u3053\u308d)\u3055\u3093\/\u96d1\u591a\u306b\u30a4\u30e9\u30b9\u30c8\u88fd\u4f5c\/\u3075\u3041\u307c\u2260\u30d5\u30a9\u30ed\u30fc\/\u843d\u66f8\u304d\u591a\u3081\u3067\u3059\/\u6c96\u795e\u57a2\u2192 @okikagukokoro \u8a73\u7d30\u306f\u3053\u3061\u3089\u2192http:\/\/twpf.jp\/a_ai55","protected":false,"verified":false,"followers_count":333,"friends_count":94,"listed_count":8,"favourites_count":5695,"statuses_count":3763,"created_at":"Tue Jul 15 01:43:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727893281771520\/2PE0D_sO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727893281771520\/2PE0D_sO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2646680150\/1447075580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068524019714,"id_str":"663728068524019714","text":"one cute ass text can put me in a good mood \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2688854987,"id_str":"2688854987","name":"ari","screen_name":"arimilyah","location":"htx","url":null,"description":"sc: arimilyah","protected":false,"verified":false,"followers_count":1260,"friends_count":927,"listed_count":3,"favourites_count":4373,"statuses_count":11890,"created_at":"Tue Jul 08 23:16:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661309997641367552\/qMjWyyJA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661309997641367552\/qMjWyyJA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2688854987\/1447032556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077664"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068524048384,"id_str":"663728068524048384","text":"#unikbacacom Kereta Api Dilempar Batu, Asisten Masinis Jadi Korban dan Alami Kebutaan #bisnis #informasi","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2320353174,"id_str":"2320353174","name":"Parade Twit","screen_name":"paradetwit","location":"Indonesia","url":"http:\/\/www.unikbaca.com","description":"Parade twit melakukan parade di timeline kalian, cepat singkat jelas padat. *disponsori oleh http:\/\/www.unikbaca.com","protected":false,"verified":false,"followers_count":353,"friends_count":819,"listed_count":10,"favourites_count":1,"statuses_count":277688,"created_at":"Fri Jan 31 06:44:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597088530976743424\/3g5bljBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597088530976743424\/3g5bljBp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320353174\/1391151011","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"unikbacacom","indices":[0,12]},{"text":"bisnis","indices":[87,94]},{"text":"informasi","indices":[95,105]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080077664"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507242496,"id_str":"663728068507242496","text":"\u66f8\u304d\u53d6\u308a\u7df4\u7fd2\u306bAg\u3055\u3093\u306e\u540d\u524d\u304c\u4f7f\u308f\u308c\u3066\u3057\u304b\u3082\u30c7\u30b9\u30ce\u30fc\u30c8\u306b\u66f8\u304b\u308c\u3066\u6b7b\u306d","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2335095080,"id_str":"2335095080","name":"Ag3c\u304c\u6b7b\u3093\u3067\u308bbot","screen_name":"Ag3c_dead","location":"\u624b\u52d5\u306e\u6642\u3068\u81ea\u52d5\u306e\u6642\u304c\u3042\u308b\u304b\u3082\u3057\u308c\u306a\u3044","url":null,"description":"@Ag3c\u304c\u6b7b\u3093\u3060\u308a\u8aa4\u5b57\u3063\u305f\u308a\u3057\u3066\u308b\u3060\u3051\u306eBOT\u3067\u3059\n \u5185\u5bb9\u306f\u968f\u6642\u8ffd\u52a0\u3055\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\n \u4f5c\u8005\u2192@ocky3050","protected":false,"verified":false,"followers_count":18,"friends_count":23,"listed_count":0,"favourites_count":419,"statuses_count":13250,"created_at":"Sun Feb 09 13:11:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/432503352782376960\/i9FyvR9f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/432503352782376960\/i9FyvR9f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335095080\/1419723524","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494626816,"id_str":"663728068494626816","text":"\u305d\u308c\u304c\u3067\u304d\u306a\u304d\u3083\u3001\u60c5\u5831\u5c4b\u306e\u30ab\u30f3\u30d0\u30f3\u306f\u4e0a\u3052\u3066\u3089\u308c\u306a\u3044\u3093\u3060\u30e8 #bot","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402728687,"id_str":"2402728687","name":"\u9f20\u306e\u30a2\u30eb\u30b4","screen_name":"nezumi_arugo","location":"\u30a2\u30a4\u30f3\u30af\u30e9\u30c3\u30c9\u306e\u3069\u3053\u304b","url":null,"description":"\u30e4\u30fc\u30e4\u30fcSAO\u306e\u300a\u60c5\u5831\u5c4b\u300b\u9f20\u306e\u30a2\u30eb\u30b4\u30c0\u3002SAO\u306e\u60c5\u5831\u306b\u95a2\u3057\u3066\u306f\u3053\u306e\u30aa\u30cd\u30fc\u30b5\u30f3\u306b\u4efb\u305b\u30ca\u3002\u6c17\u8efd\u306b\u4f9d\u983c\u3057\u3066\u304f\u308c\u3088\u30ca\u30fc\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u7279\u5225\u306b\u30bf\u30c0\u306b\u3057\u3068\u3044\u3066\u30e4\u30eb\u2026\u975e\u516c\u5f0f\u3060\u3051\u3069\u30ca","protected":false,"verified":false,"followers_count":294,"friends_count":21,"listed_count":6,"favourites_count":49,"statuses_count":10430,"created_at":"Sat Mar 22 05:32:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499351080694595584\/huTOjyoa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499351080694595584\/huTOjyoa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402728687\/1395469107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bot","indices":[29,33]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507209728,"id_str":"663728068507209728","text":"RT @cracacia: Paling kecil bindo. Ga ngerti. Padahal udh yakin bgt dapet 90an","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4023397994,"id_str":"4023397994","name":"\u3164","screen_name":"crpimtha","location":null,"url":null,"description":"cantiknya thailand","protected":false,"verified":false,"followers_count":91,"friends_count":88,"listed_count":1,"favourites_count":254,"statuses_count":1123,"created_at":"Mon Oct 26 10:28:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662263344083046401\/hNwMMMC__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662263344083046401\/hNwMMMC__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4023397994\/1446960374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:33 +0000 2015","id":663727883215499265,"id_str":"663727883215499265","text":"Paling kecil bindo. Ga ngerti. Padahal udh yakin bgt dapet 90an","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3791036952,"id_str":"3791036952","name":"demigod","screen_name":"cracacia","location":null,"url":null,"description":"i'm so aw and you're so ew.","protected":false,"verified":false,"followers_count":135,"friends_count":85,"listed_count":0,"favourites_count":15,"statuses_count":1405,"created_at":"Mon Oct 05 10:24:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663208736333271040\/YGnLGo-o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663208736333271040\/YGnLGo-o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3791036952\/1446396664","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cracacia","name":"demigod","id":3791036952,"id_str":"3791036952","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507385860,"id_str":"663728068507385860","text":"RT @mutewords: Yo en la vida: https:\/\/t.co\/CkyXMr5k1M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384476464,"id_str":"384476464","name":"Shinigami","screen_name":"LittleShachath","location":"Galiza","url":null,"description":"Porto de Sanabria|| Lvcvs Avgvsti|| Cuatro de corazones|| No uses a otra gente como excusa para morir|| American Horror Story||\nPhotography is life","protected":false,"verified":false,"followers_count":416,"friends_count":336,"listed_count":5,"favourites_count":11310,"statuses_count":10446,"created_at":"Mon Oct 03 19:12:59 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656599214676426753\/JpGKnoCa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656599214676426753\/JpGKnoCa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384476464\/1441186173","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 10:00:48 +0000 2015","id":661483154943942656,"id_str":"661483154943942656","text":"Yo en la vida: https:\/\/t.co\/CkyXMr5k1M","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3405814348,"id_str":"3405814348","name":"\u200f\ufe0f\u200f\ufe0f","screen_name":"mutewords","location":null,"url":null,"description":"Soy buena persona lo juro, lo que pasa es que los dem\u00e1s no sacan el hijo de puta que llevan dentro en p\u00fablico.","protected":false,"verified":false,"followers_count":3091,"friends_count":141,"listed_count":17,"favourites_count":5371,"statuses_count":469,"created_at":"Thu Aug 06 15:21:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629364146841219072\/dnvOUSZ1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629364146841219072\/dnvOUSZ1.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653261013429678080\/Hyhiunb1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653261013429678080\/Hyhiunb1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3405814348\/1444252392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2524,"favorite_count":1616,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661483147259994113,"id_str":"661483147259994113","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","url":"https:\/\/t.co\/CkyXMr5k1M","display_url":"pic.twitter.com\/CkyXMr5k1M","expanded_url":"http:\/\/twitter.com\/mutewords\/status\/661483154943942656\/photo\/1","type":"photo","sizes":{"medium":{"w":214,"h":218,"resize":"fit"},"large":{"w":214,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":214,"h":218,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661483147259994113,"id_str":"661483147259994113","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","url":"https:\/\/t.co\/CkyXMr5k1M","display_url":"pic.twitter.com\/CkyXMr5k1M","expanded_url":"http:\/\/twitter.com\/mutewords\/status\/661483154943942656\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":214,"h":218,"resize":"fit"},"large":{"w":214,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":214,"h":218,"resize":"fit"}},"video_info":{"aspect_ratio":[215,218],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS4PavFW4AEyvRn.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mutewords","name":"\u200f\ufe0f\u200f\ufe0f","id":3405814348,"id_str":"3405814348","indices":[3,13]}],"symbols":[],"media":[{"id":661483147259994113,"id_str":"661483147259994113","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","url":"https:\/\/t.co\/CkyXMr5k1M","display_url":"pic.twitter.com\/CkyXMr5k1M","expanded_url":"http:\/\/twitter.com\/mutewords\/status\/661483154943942656\/photo\/1","type":"photo","sizes":{"medium":{"w":214,"h":218,"resize":"fit"},"large":{"w":214,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":214,"h":218,"resize":"fit"}},"source_status_id":661483154943942656,"source_status_id_str":"661483154943942656","source_user_id":3405814348,"source_user_id_str":"3405814348"}]},"extended_entities":{"media":[{"id":661483147259994113,"id_str":"661483147259994113","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS4PavFW4AEyvRn.png","url":"https:\/\/t.co\/CkyXMr5k1M","display_url":"pic.twitter.com\/CkyXMr5k1M","expanded_url":"http:\/\/twitter.com\/mutewords\/status\/661483154943942656\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":214,"h":218,"resize":"fit"},"large":{"w":214,"h":218,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":214,"h":218,"resize":"fit"}},"source_status_id":661483154943942656,"source_status_id_str":"661483154943942656","source_user_id":3405814348,"source_user_id_str":"3405814348","video_info":{"aspect_ratio":[215,218],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS4PavFW4AEyvRn.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511436800,"id_str":"663728068511436800","text":"\u305d\u3093\u306a\u98a8\u306b\u66f8\u304f\u3068\u3001\u306a\u3093\u304b\u4e00\u901a\u308a\u306f\u30ae\u30bf\u30fc\u5f3e\u3051\u308b\u98a8\u3060\u3051\u3069\u3001\u540c\u6642\u306b\u6291\u3048\u308b\u5f26\u306f\uff12\u672c\u4ee5\u4e0b\uff18\u5206\u97f3\u7b26\u4ee5\u4e0a\u306e\u30b9\u30d4\u30fc\u30c9\u3067\u306f\u5f3e\u304b\u306a\u3044\u3001\u3068\u3044\u3046\u30c9\u30d8\u30bf\u3002","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3441081192,"id_str":"3441081192","name":"U_VD_CR","screen_name":"U_VD_CR","location":null,"url":null,"description":"\u591a\u5206\u9577\u7d9a\u304d\u3057\u306a\u3044\u3093\u3058\u3083\u306a\u3044\u304b\u306a\u30fb\u30fb\u30fb\u3060\u3063\u3066\u3055\u307f\u3057\u304b\u3063\u305f\u3093\u3060\u3082\u306e\u3002","protected":false,"verified":false,"followers_count":29,"friends_count":62,"listed_count":0,"favourites_count":53,"statuses_count":1127,"created_at":"Thu Sep 03 21:49:27 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648806317780414464\/SpsnPkKW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648806317780414464\/SpsnPkKW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3441081192\/1443624721","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494647296,"id_str":"663728068494647296","text":"PCMAX\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3063\u3066\u3059\u3054\u3044\u5132\u304b\u308b\u3093\u3088\u306d\uff5e\u266a\n\n\u3060\u3063\u30661\u4ef6\u306e\u7121\u6599\u767b\u9332\u30674000\u5186\u304c\u5831\u916c\u3068\u3057\u3066\u652f\u6255\u308f\u308c\u308b\u3093\u3060\u304b\u3089\u3002\n\n\u79c1\u3082\u305f\u304f\u3055\u3093\u8272\u3093\u306a\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3092\u3084\u3063\u3066\u304d\u305f\u3051\u3069\u3001\n\nPCMAX\u307b\u3069\u30cf\u30fc\u30c9\u30eb\u304c\u4f4e\u304f\u3066\u5831\u916c\u304c\u9ad8\u3044\u3068\u3053\u308d\u3063\u3066\u305d\u3046\u305d\u3046\u306a\u3044\u3068\u601d\u3046\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2327238445,"id_str":"2327238445","name":"\uff11\u540d\u7d39\u4ecb\uff14\uff10\uff10\uff10\u5186\u2605\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8","screen_name":"pcmax4000affili","location":"\uff30\uff23\uff2d\uff21\uff38\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u21d2","url":"http:\/\/goo.gl\/2cGjZy","description":"PCMAX\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3063\u3066\u3059\u3054\u3044\u5132\u304b\u308b\u3093\u3088\u306d\uff5e\u266a\u3060\u3063\u30661\u4ef6\u306e\u7121\u6599\u767b\u9332\u30674000\u5186\u304c\u5831\u916c\u3068\u3057\u3066\u652f\u6255\u308f\u308c\u308b\u3093\u3060\u304b\u3089\u3002\u50d5\u3082\u305f\u304f\u3055\u3093\u8272\u3093\u306a\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3092\u3084\u3063\u3066\u304d\u305f\u3051\u3069\u3001PCMAX\u307b\u3069\u30cf\u30fc\u30c9\u30eb\u304c\u4f4e\u304f\u3066\u5831\u916c\u304c\u9ad8\u3044\u3068\u3053\u308d\u3063\u3066\u305d\u3046\u305d\u3046\u306a\u3044\u3068\u601d\u3046\u3002","protected":false,"verified":false,"followers_count":191,"friends_count":132,"listed_count":1,"favourites_count":0,"statuses_count":12101,"created_at":"Tue Feb 04 14:45:50 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430714130794676224\/ewE-Wb6k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430714130794676224\/ewE-Wb6k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2327238445\/1396461263","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507357184,"id_str":"663728068507357184","text":"RT @MykeCole: Onward! For King and . . . HOLY FUCKING SHIT RUN RUN RUN RUN FOR YOUR LIVES https:\/\/t.co\/StqD3Pqd9g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472197514,"id_str":"472197514","name":"Corranne Wheeler","screen_name":"Corrie_Wheeler","location":"Buckinghamshire","url":"http:\/\/corrannewheeler.weebly.com","description":"* Medievalist - Student - Writer * RHUL Ancient and Medieval History","protected":false,"verified":false,"followers_count":159,"friends_count":323,"listed_count":8,"favourites_count":542,"statuses_count":2060,"created_at":"Mon Jan 23 18:08:41 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"324F08","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653641059763929088\/-D0pNisJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653641059763929088\/-D0pNisJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472197514\/1446145556","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:56 +0000 2015","id":663722945790025728,"id_str":"663722945790025728","text":"Onward! For King and . . . HOLY FUCKING SHIT RUN RUN RUN RUN FOR YOUR LIVES https:\/\/t.co\/StqD3Pqd9g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":206631462,"id_str":"206631462","name":"Myke Cole","screen_name":"MykeCole","location":"Brooklyn, NY","url":"http:\/\/www.mykecole.com","description":"Pretty good at writing and law enforcement. Terrible at Settlers of Catan. GEMINI CELL out now. Also wrote CONTROL POINT, FORTRESS FRONTIER and BREACH ZONE.","protected":false,"verified":false,"followers_count":8205,"friends_count":237,"listed_count":437,"favourites_count":9047,"statuses_count":52517,"created_at":"Sat Oct 23 11:15:41 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/179634826\/SOC-Patch_High_Res.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/179634826\/SOC-Patch_High_Res.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633422565520896000\/4tkg0IiU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633422565520896000\/4tkg0IiU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/206631462\/1420132637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":66,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722925925658624,"id_str":"663722925925658624","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","url":"https:\/\/t.co\/StqD3Pqd9g","display_url":"pic.twitter.com\/StqD3Pqd9g","expanded_url":"http:\/\/twitter.com\/MykeCole\/status\/663722945790025728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663722925925658624,"id_str":"663722925925658624","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","url":"https:\/\/t.co\/StqD3Pqd9g","display_url":"pic.twitter.com\/StqD3Pqd9g","expanded_url":"http:\/\/twitter.com\/MykeCole\/status\/663722945790025728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MykeCole","name":"Myke Cole","id":206631462,"id_str":"206631462","indices":[3,12]}],"symbols":[],"media":[{"id":663722925925658624,"id_str":"663722925925658624","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","url":"https:\/\/t.co\/StqD3Pqd9g","display_url":"pic.twitter.com\/StqD3Pqd9g","expanded_url":"http:\/\/twitter.com\/MykeCole\/status\/663722945790025728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722945790025728,"source_status_id_str":"663722945790025728","source_user_id":206631462,"source_user_id_str":"206631462"}]},"extended_entities":{"media":[{"id":663722925925658624,"id_str":"663722925925658624","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfA0U8AAxlEl.jpg","url":"https:\/\/t.co\/StqD3Pqd9g","display_url":"pic.twitter.com\/StqD3Pqd9g","expanded_url":"http:\/\/twitter.com\/MykeCole\/status\/663722945790025728\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663722945790025728,"source_status_id_str":"663722945790025728","source_user_id":206631462,"source_user_id_str":"206631462"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494651392,"id_str":"663728068494651392","text":"\u50d5\u306e\u57a2\u306f\u65b0\u57a2\u3067\u3059\u2570(*\u00b4\ufe36`*)\u256f\u524d\u306e\u57a2\u306f\u3076\u3063\u58ca\u308c\u305f\u306e\u3067\u3082\u3046\u52d5\u304f\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093www\u3060\u304b\u3089\u2026\u524d\u306e\u57a2\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3063\u305f\u30d5\u30a9\u30ed\u30ef\u30fc\u306e\u7686\u3055\u3093\u306f\u65e9\u304f\u65b0\u57a2\u30d5\u30a9\u30ed\u30fc\u3057\u3084\u304c\u308c\uff01(\u3002\u30fb\u03c9\u30fb\u3002)\u3063\u3066\u3084\u3064\u3067\u3059\u306dwww\u3082\u3061\u308d\u3093\u3001\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u4ee5\u5916\u306e\u65b9\u3067\u3082\u50d5\u3068\u7d61\u3093\u3067\u304f\u308c\u308b\u4eba\u5f85\u3063\u3066\u308b\u3088\u3063\u3066\u3086\u30fc\u5b9a\u671f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1653192422,"id_str":"1653192422","name":"I.\u611b.\u85cd!!@\u304a\u59eb\u69d8\u3068\u4ea4\u969b\u4e2d\u2661","screen_name":"utaota3115","location":"\u304a\u59eb\u69d8\u306e\u3059\u3050\u5074\u266a","url":null,"description":"\u85cd\u3061\u3083\u3093\u3092\u611b\u3057\u3059\u304e\u3066\u30e4\u30d0\u3059\u304e\u308b\u9ad8\u6821\u4e00\u5e74\u751f\u3067\u3059\uff01\u3046\u305f\u30d7\u30ea\/\u9b54\u754c\u738b\u5b50\/\u9032\u6483\/\u30c0\u30f3\u30ed\u30f3\/free\u306b\u3069\u306f\u307e\u308a\u53a8\uff01\u30a2\u30cb\u30e1\u4e59\u5973\u30b2\u30fc\u4e3b\u98df\u266a\u50d5\u306e\u304a\u59eb\u69d8\u2192\uff20Bloody01Mary\u306d\u2661","protected":false,"verified":false,"followers_count":157,"friends_count":201,"listed_count":1,"favourites_count":377,"statuses_count":2627,"created_at":"Wed Aug 07 15:15:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000255686698\/6b90a99b83f03a5048ce150bfc357b4c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000255686698\/6b90a99b83f03a5048ce150bfc357b4c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1653192422\/1378348718","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515782656,"id_str":"663728068515782656","text":"Can't wait to see her, my heart will probably stop, but, I'm not worried, that's what she is there for.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2639414468,"id_str":"2639414468","name":"Nab","screen_name":"Nab8star","location":"On the NET","url":"https:\/\/www.youtube.com\/channel\/UCFZDuOuN_8iFZzkcxKXPC6g","description":"and it was then...... when the life I wanted, desired, was in front of me, and I almost let it pass..........","protected":false,"verified":false,"followers_count":154,"friends_count":84,"listed_count":0,"favourites_count":4076,"statuses_count":4555,"created_at":"Sun Jul 13 20:11:13 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493998639270731776\/TNOT_ott.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493998639270731776\/TNOT_ott.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610967343389372416\/mJlR_8V1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610967343389372416\/mJlR_8V1_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068524019713,"id_str":"663728068524019713","text":"\u6deb\u7344\u306b\u5815\u3061\u308b\u30c9\u6deb\u4e71M\u5973\u5b50\u5927\u751f\uff01 \u6dbc\u82b121\u624d https:\/\/t.co\/0U88c5mvKU","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3445561758,"id_str":"3445561758","name":"\u30a2\u30c0\u30eb\u30c8\u5e02\u5834\u30c9\u30c3\u30c8\u30b3\u30e0","screen_name":"adultichibaero","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":198,"friends_count":346,"listed_count":0,"favourites_count":0,"statuses_count":7859,"created_at":"Fri Sep 04 07:23:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654894282990456832\/4sfKJAXj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654894282990456832\/4sfKJAXj_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0U88c5mvKU","expanded_url":"http:\/\/is.gd\/PG0Rjv","display_url":"is.gd\/PG0Rjv","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077664"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494667776,"id_str":"663728068494667776","text":"\u00bfPodemos afirmar que el sexo ha dejado de vender y ser \u00fatil como estrategia de marketing?: PuroMarketing - L... https:\/\/t.co\/XSaP4lzU6t","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1602038473,"id_str":"1602038473","name":"Lurien Panisa","screen_name":"LurienOK","location":"Buenos Aires, Argentina","url":null,"description":"Quiero casarme con James Franco. No, no me interesa el significado de mi nombre ni el origen. Publicista.","protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":722,"created_at":"Wed Jul 17 22:54:49 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000148834485\/fa052389ad91f00b73c8d820c0a05276_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000148834485\/fa052389ad91f00b73c8d820c0a05276_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1602038473\/1374101826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XSaP4lzU6t","expanded_url":"http:\/\/bit.ly\/1HqgfiL","display_url":"bit.ly\/1HqgfiL","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068503015424,"id_str":"663728068503015424","text":"@RantinArkansan wat?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725307418034176,"in_reply_to_status_id_str":"663725307418034176","in_reply_to_user_id":138206761,"in_reply_to_user_id_str":"138206761","in_reply_to_screen_name":"RantinArkansan","user":{"id":111454976,"id_str":"111454976","name":"Chris","screen_name":"Txrebel05","location":"Republic of Texas","url":"http:\/\/mises.org\/daily\/6601\/Why-I-Am-an-AnarchoCapitalist","description":null,"protected":false,"verified":false,"followers_count":1665,"friends_count":1649,"listed_count":55,"favourites_count":21461,"statuses_count":62343,"created_at":"Fri Feb 05 00:18:26 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661176436116422656\/glFH1FNE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661176436116422656\/glFH1FNE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111454976\/1442332582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RantinArkansan","name":"Jake","id":138206761,"id_str":"138206761","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080077659"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494794752,"id_str":"663728068494794752","text":"RT @sonsuzadegin: \u015fimdi biz seninle sar\u0131lsak ne sigaralar yak\u0131l\u0131r ard\u0131ndan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948655688,"id_str":"2948655688","name":"P\u0131nar","screen_name":"pinarrturkoglu","location":null,"url":null,"description":"musmutlu bir insan ki\u015fisi :)","protected":false,"verified":false,"followers_count":118,"friends_count":132,"listed_count":0,"favourites_count":43,"statuses_count":268,"created_at":"Mon Dec 29 06:16:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662721242965798913\/-HtXggzL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662721242965798913\/-HtXggzL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948655688\/1445591213","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:09 +0000 2015","id":663723001372897280,"id_str":"663723001372897280","text":"\u015fimdi biz seninle sar\u0131lsak ne sigaralar yak\u0131l\u0131r ard\u0131ndan.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1967759113,"id_str":"1967759113","name":"sar\u0131lal\u0131m","screen_name":"sonsuzadegin","location":"sonsuzaadegin@gmail.com","url":null,"description":"peki ya umutlar biterse?","protected":false,"verified":false,"followers_count":81766,"friends_count":15,"listed_count":50,"favourites_count":0,"statuses_count":603,"created_at":"Thu Oct 17 22:57:17 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641025370666442752\/g2nutnL9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641025370666442752\/g2nutnL9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1967759113\/1441667832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":265,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sonsuzadegin","name":"sar\u0131lal\u0131m","id":1967759113,"id_str":"1967759113","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507275264,"id_str":"663728068507275264","text":"RT @IDogYouCat: GOT HORMONES \u0e41\u0e1f\u0e19\u0e44\u0e0b\u0e19\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e25\u0e31\u0e07\u0e08\u0e30\u0e21\u0e32\u0e16\u0e36\u0e07 \u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e1e\u0e1a\u0e01\u0e31\u0e1a #Got7\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e15\u0e25\u0e01 https:\/\/t.co\/g6m3jtZnWQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2887581175,"id_str":"2887581175","name":"CANTA","screen_name":"27715Sandy","location":null,"url":null,"description":"| BJ 105 | \u0e40\u0e1b\u0e47\u0e19\u0e15\u0e34\u0e48\u0e07\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e17\u0e38\u0e01\u0e27\u0e07 | ~YNWA~ | P | 01.10.58 |","protected":false,"verified":false,"followers_count":155,"friends_count":254,"listed_count":0,"favourites_count":568,"statuses_count":9581,"created_at":"Sun Nov 02 14:55:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532118460306706432\/A-gd1T5g.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532118460306706432\/A-gd1T5g.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662835718704656385\/2ae0xOjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662835718704656385\/2ae0xOjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887581175\/1447065918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:26:11 +0000 2015","id":663694067503493120,"id_str":"663694067503493120","text":"GOT HORMONES \u0e41\u0e1f\u0e19\u0e44\u0e0b\u0e19\u0e4c\u0e17\u0e35\u0e48\u0e01\u0e33\u0e25\u0e31\u0e07\u0e08\u0e30\u0e21\u0e32\u0e16\u0e36\u0e07 \u0e40\u0e15\u0e23\u0e35\u0e22\u0e21\u0e1e\u0e1a\u0e01\u0e31\u0e1a #Got7\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e15\u0e25\u0e01 https:\/\/t.co\/g6m3jtZnWQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1459676624,"id_str":"1459676624","name":"IDYC \u2764 \uc720\uacb8","screen_name":"IDogYouCat","location":"\u270e\u0e41\u0e01\u0e49\u0e1a\u0e19\u0e08\u0e2a.191016\u00a0","url":"http:\/\/Instagram.com\/idogyoucat","description":"fanart and edit \u2661\u2661YuGyeom\u2661\u2661 #GOT7 #PepiGyeom | #YuMark | #BGyeom | #PepiGyeomMark | #GOT7isHAPPY | #\u0e01\u0e31\u0e0b\u0e40\u0e1a\u0e1a\u0e35\u0e49 | Sticker LINE = Yumie Boy","protected":false,"verified":false,"followers_count":4537,"friends_count":172,"listed_count":24,"favourites_count":1919,"statuses_count":36824,"created_at":"Sun May 26 13:41:27 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663498461677879296\/81Ya_Jaf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663498461677879296\/81Ya_Jaf.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662597572930891777\/2UI9HYPu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662597572930891777\/2UI9HYPu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459676624\/1446595963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":778,"favorite_count":88,"entities":{"hashtags":[{"text":"Got7\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e15\u0e25\u0e01","indices":[49,63]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663694065733496832,"id_str":"663694065733496832","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","url":"https:\/\/t.co\/g6m3jtZnWQ","display_url":"pic.twitter.com\/g6m3jtZnWQ","expanded_url":"http:\/\/twitter.com\/IDogYouCat\/status\/663694067503493120\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663694065733496832,"id_str":"663694065733496832","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","url":"https:\/\/t.co\/g6m3jtZnWQ","display_url":"pic.twitter.com\/g6m3jtZnWQ","expanded_url":"http:\/\/twitter.com\/IDogYouCat\/status\/663694067503493120\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Got7\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e15\u0e25\u0e01","indices":[65,79]}],"urls":[],"user_mentions":[{"screen_name":"IDogYouCat","name":"IDYC \u2764 \uc720\uacb8","id":1459676624,"id_str":"1459676624","indices":[3,14]}],"symbols":[],"media":[{"id":663694065733496832,"id_str":"663694065733496832","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","url":"https:\/\/t.co\/g6m3jtZnWQ","display_url":"pic.twitter.com\/g6m3jtZnWQ","expanded_url":"http:\/\/twitter.com\/IDogYouCat\/status\/663694067503493120\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663694067503493120,"source_status_id_str":"663694067503493120","source_user_id":1459676624,"source_user_id_str":"1459676624"}]},"extended_entities":{"media":[{"id":663694065733496832,"id_str":"663694065733496832","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqPIOUcAA9sDZ.jpg","url":"https:\/\/t.co\/g6m3jtZnWQ","display_url":"pic.twitter.com\/g6m3jtZnWQ","expanded_url":"http:\/\/twitter.com\/IDogYouCat\/status\/663694067503493120\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663694067503493120,"source_status_id_str":"663694067503493120","source_user_id":1459676624,"source_user_id_str":"1459676624"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507271168,"id_str":"663728068507271168","text":"@yuyu_kinoshita \u3046\u3061\u2026\u6728\u4e4b\u4e0b\u3055\u3093\u3068\u306a\u304b\u3088\u3046\u3057\u305f\u3044\u306d\u3093","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2273173992,"in_reply_to_user_id_str":"2273173992","in_reply_to_screen_name":"yuyu_kinoshita","user":{"id":2258588562,"id_str":"2258588562","name":"\u661f\u6d77\u3053\u3088\u3044\uff20\u6642\u5831\uff1fbot","screen_name":"koyoizihou","location":null,"url":null,"description":"\u3042\u3093\u3055\u3093\u3076\u308b\u30ac\u30fc\u30eb\u30ba\uff01\u975e\u516c\u5f0fbot\u3067\u3059\u30025\u5206\u524d\u304f\u3089\u3044\u306e\u6642\u5831\u3092\u304a\u77e5\u3089\u305b\u3057\u3066\u304f\u308c\u307e\u3059\u3002\u3064\u3086\u308a\u3061\u3083\u3093\u3068\u8ee2\u6821\u751f\u304f\u3093\u304c\u5927\u597d\u304d\u3002\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3053\u306ebot\u306e\u304a\u7236\u3084\u3093\u2192(@yamapi197)\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u5927\u597d\u304d\u306a\u3064\u3086\u308abot\u2192(@tuyurizihou)","protected":false,"verified":false,"followers_count":211,"friends_count":242,"listed_count":7,"favourites_count":0,"statuses_count":101780,"created_at":"Mon Dec 23 07:11:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/415017145462824961\/3U39R48N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/415017145462824961\/3U39R48N_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuyu_kinoshita","name":"\u6728\u4e4b\u4e0b\u3086\u3086","id":2273173992,"id_str":"2273173992","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528205824,"id_str":"663728068528205824","text":"don't try to eat cereal and drive","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961755595,"id_str":"961755595","name":"shelby","screen_name":"shelby_oquist","location":null,"url":null,"description":"Roll Damn Tide","protected":false,"verified":false,"followers_count":191,"friends_count":248,"listed_count":0,"favourites_count":5527,"statuses_count":2965,"created_at":"Wed Nov 21 04:27:55 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"514A38","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000104855101\/b786d7185c946954662eecc600a98735.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000104855101\/b786d7185c946954662eecc600a98735.png","profile_background_tile":true,"profile_link_color":"E7545A","profile_sidebar_border_color":"97D7B2","profile_sidebar_fill_color":"C9EBC6","profile_text_color":"BFD9B6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660553806300737536\/TOgTEvaE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660553806300737536\/TOgTEvaE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961755595\/1446959807","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00030a773a4ffe7a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00030a773a4ffe7a.json","place_type":"city","name":"Midway","full_name":"Midway, FL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.136336,30.367273],[-87.136336,30.442973],[-86.950356,30.442973],[-86.950356,30.367273]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068498821120,"id_str":"663728068498821120","text":"\u99ac\u306e\u8033\u306b \u306d\u3047\u3001\u30ad\u30b9\u3057\u3088\u3063\u304b\uff1f https:\/\/t.co\/ZUKKGB7Wsh","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1872649321,"id_str":"1872649321","name":"\u3053\u3068\u308f\u3056\u306b\u300c\u306d\u3048\u3001\u30ad\u30b9\u3057\u3088\u3063\u304b\uff1f\u300d","screen_name":"kotowaza_kiss","location":null,"url":null,"description":"\u3000\u3000\u3000\u3000\u3000\u3053\u3068\u308f\u3056\u306e\u4e00\u90e8\u3092\u300c\u306d\u3048\u3001\u30ad\u30b9\u3057\u3088\u3063\u304b\uff1f\u300d\u306b\u63db\u3048\u308b\u3068\u3000\u3000\u3000\u3000\u3000\u4e16\u754c\u304c\u512a\u3057\u304f\u306a\u308a\u307e\u3057\u305f\u266a\u3000\u30af\u30b9\u3063\u3068\u7b11\u3048\u305f\u3089RT\u3000#\u30ad\u30b9","protected":false,"verified":false,"followers_count":240,"friends_count":244,"listed_count":0,"favourites_count":0,"statuses_count":14416,"created_at":"Mon Sep 16 18:36:20 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456860579483746304\/8dRcl6vN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456860579483746304\/8dRcl6vN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1872649321\/1397759060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZUKKGB7Wsh","expanded_url":"http:\/\/twitter.com\/forrsdol\/status\/456812304772788225\/photo\/1","display_url":"pic.twitter.com\/ZUKKGB7Wsh","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077658"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528328704,"id_str":"663728068528328704","text":"RT @PrettyMxdBitch: Like\u2764\ufe0fif u like these Sexy Dresses\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/XSVC0DL5Hf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222680130,"id_str":"3222680130","name":"Jas\u2764\ufe0f","screen_name":"TaterTh0ts_","location":"United States","url":null,"description":"All About $$ & My Son \/ Follow Me \u2728","protected":false,"verified":false,"followers_count":15220,"friends_count":15228,"listed_count":23,"favourites_count":7,"statuses_count":8854,"created_at":"Thu May 21 22:27:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654140925224972288\/dRwQpPZ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654140925224972288\/dRwQpPZ__normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 00:58:08 +0000 2015","id":662433752941854720,"id_str":"662433752941854720","text":"Like\u2764\ufe0fif u like these Sexy Dresses\/\/\n\nUse code \"XO\" for 10% OFF\ud83d\udd25 @\u23e9 https:\/\/t.co\/SJRgQrKSDY https:\/\/t.co\/XSVC0DL5Hf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300518547,"id_str":"3300518547","name":"dejaa`","screen_name":"PrettyMxdBitch","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1659,"friends_count":45,"listed_count":3,"favourites_count":23,"statuses_count":60,"created_at":"Wed May 27 16:14:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"00FF0C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603907325490044928\/pLFg_nVb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300518547\/1432765772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":134,"favorite_count":68,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[68,91]}],"user_mentions":[],"symbols":[],"media":[{"id":662433731496558592,"id_str":"662433731496558592","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":400,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":399,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662433731496558592,"id_str":"662433731496558592","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":400,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":399,"h":400,"resize":"fit"}}},{"id":662433732708671488,"id_str":"662433732708671488","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-F1WIAAjrKY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-F1WIAAjrKY.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":946,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SJRgQrKSDY","expanded_url":"http:\/\/TheSuperiorApparel.com","display_url":"TheSuperiorApparel.com","indices":[88,111]}],"user_mentions":[{"screen_name":"PrettyMxdBitch","name":"dejaa`","id":3300518547,"id_str":"3300518547","indices":[3,18]}],"symbols":[],"media":[{"id":662433731496558592,"id_str":"662433731496558592","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":400,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":399,"h":400,"resize":"fit"}},"source_status_id":662433752941854720,"source_status_id_str":"662433752941854720","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"extended_entities":{"media":[{"id":662433731496558592,"id_str":"662433731496558592","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-BUWwAAtjyE.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":400,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":399,"h":400,"resize":"fit"}},"source_status_id":662433752941854720,"source_status_id_str":"662433752941854720","source_user_id":3300518547,"source_user_id_str":"3300518547"},{"id":662433732708671488,"id_str":"662433732708671488","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFv-F1WIAAjrKY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFv-F1WIAAjrKY.jpg","url":"https:\/\/t.co\/XSVC0DL5Hf","display_url":"pic.twitter.com\/XSVC0DL5Hf","expanded_url":"http:\/\/twitter.com\/PrettyMxdBitch\/status\/662433752941854720\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":946,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":662433752941854720,"source_status_id_str":"662433752941854720","source_user_id":3300518547,"source_user_id_str":"3300518547"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532400128,"id_str":"663728068532400128","text":"\u3053\u3053\u3067\u9a12\u304e\u3092\u8d77\u3053\u3059\u306a\u3002\u63c9\u307f\u6d88\u3059\u306e\u306f\u7c21\u5358\u3060\u304c\u8b66\u5bdf\u306b\u6642\u9593\u3092\u53d6\u3089\u308c\u308b\u306e\u306f\u5546\u58f2\u4e0a\u306e\u640d\u5931\u306b\u306a\u308b","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1964765689,"id_str":"1964765689","name":"\u30d4\u30a8\u30c8\u30ed\u30fb\u30e2\u30ea\u30a2\u30fc\u30c6\u30a3","screen_name":"s_pietrobot","location":"\u5a3c\u9928\u306e\u3068\u3042\u308b\u4e00\u5ba4","url":null,"description":"ROCKME\u30d5\u30a1\u30df\u30ea\u30fc\u306e\u58f2\u6625\u7ba1\u7406\u62c5\u5f53\u3002\u545f\u304f\u30cd\u30bf\u52df\u96c6\u4e2d\u3002\u304a\u60da\u6c17\u306f\u591a\u5206\u3053\u308c\u304b\u3089\u5897\u3048\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":13,"friends_count":13,"listed_count":1,"favourites_count":1,"statuses_count":8464,"created_at":"Wed Oct 16 12:59:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000604786080\/164402934489547a8a857d3dd25c0cb9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000604786080\/164402934489547a8a857d3dd25c0cb9_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528238593,"id_str":"663728068528238593","text":"RT @KomsakAddams: \u0e27\u0e34\u0e18\u0e35\u0e01\u0e34\u0e19\u0e27\u0e32\u0e0b\u0e32\u0e1a\u0e34\u0e43\u0e2b\u0e49\u0e43\u0e01\u0e25\u0e49\u0e04\u0e27\u0e32\u0e21\u0e15\u0e32\u0e22\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e04\u0e37\u0e2d \u0e15\u0e31\u0e01\u0e27\u0e32\u0e0b\u0e32\u0e1a\u0e34\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e131\u0e0a\u0e49\u0e2d\u0e19\u0e0a\u0e32 \u0e2d\u0e21\u0e44\u0e27\u0e49\u0e01\u0e25\u0e32\u0e07\u0e25\u0e34\u0e49\u0e19 \u0e2b\u0e38\u0e1a\u0e1b\u0e32\u0e01\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2b\u0e32\u0e22\u0e43\u0e08\u0e40\u0e02\u0e49\u0e32 \u0e17\u0e38\u0e01\u0e04\u0e33\u0e2b\u0e22\u0e32\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e34\u0e14\u0e44\u0e14\u0e49 \u0e08\u0e30\u0e1e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2945854386,"id_str":"2945854386","name":"3\uffe6\u03b8\u00a3 #\u0e17\u0e35\u0e21\u0e40\u0e08\u0e19","screen_name":"ZaneJJome","location":" i from thailand , phuket 15","url":null,"description":"Bed are important thing (\u00b4\u00b7\u00ac\u00b7\u00b4) like usa | OP | VP DRY | Alone | HM3 |","protected":false,"verified":false,"followers_count":87,"friends_count":234,"listed_count":0,"favourites_count":3352,"statuses_count":13953,"created_at":"Sun Dec 28 05:49:00 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578549825802661888\/5dR9JQK8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578549825802661888\/5dR9JQK8.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657970539655376897\/L9VsWmVG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657970539655376897\/L9VsWmVG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2945854386\/1445707389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 27 01:01:45 +0000 2015","id":658810784009420800,"id_str":"658810784009420800","text":"\u0e27\u0e34\u0e18\u0e35\u0e01\u0e34\u0e19\u0e27\u0e32\u0e0b\u0e32\u0e1a\u0e34\u0e43\u0e2b\u0e49\u0e43\u0e01\u0e25\u0e49\u0e04\u0e27\u0e32\u0e21\u0e15\u0e32\u0e22\u0e21\u0e32\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e04\u0e37\u0e2d \u0e15\u0e31\u0e01\u0e27\u0e32\u0e0b\u0e32\u0e1a\u0e34\u0e1b\u0e23\u0e34\u0e21\u0e32\u0e131\u0e0a\u0e49\u0e2d\u0e19\u0e0a\u0e32 \u0e2d\u0e21\u0e44\u0e27\u0e49\u0e01\u0e25\u0e32\u0e07\u0e25\u0e34\u0e49\u0e19 \u0e2b\u0e38\u0e1a\u0e1b\u0e32\u0e01\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2b\u0e32\u0e22\u0e43\u0e08\u0e40\u0e02\u0e49\u0e32 \u0e17\u0e38\u0e01\u0e04\u0e33\u0e2b\u0e22\u0e32\u0e1a\u0e17\u0e35\u0e48\u0e04\u0e34\u0e14\u0e44\u0e14\u0e49 \u0e08\u0e30\u0e1e\u0e23\u0e31\u0e48\u0e07\u0e1e\u0e23\u0e39\u0e2d\u0e2d\u0e01\u0e21\u0e32\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e2d\u0e27\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57300500,"id_str":"57300500","name":"\u0e04\u0e21\u0e28\u0e31\u0e01\u0e14\u0e34\u0e4c \u0e41\u0e2d\u0e14\u0e14\u0e31\u0e21\u0e2a\u0e4c","screen_name":"KomsakAddams","location":null,"url":null,"description":"\u0e17\u0e38\u0e01\u0e04\u0e19\u0e04\u0e37\u0e2d\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19\u0e17\u0e35\u0e48\u0e41\u0e2a\u0e19\u0e14\u0e35\n\u0e41\u0e25\u0e30\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e40\u0e23\u0e32\n\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e21\u0e32\u0e01\u0e40\u0e25\u0e22\u0e19\u0e30 \u0e17\u0e35\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e49\u0e32\u0e07\u0e01\u0e31\u0e19 \n\u0e43\u0e19\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e43\u0e04\u0e23","protected":false,"verified":false,"followers_count":236239,"friends_count":141,"listed_count":96,"favourites_count":363,"statuses_count":25887,"created_at":"Thu Jul 16 10:45:37 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/185733763\/BG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/185733763\/BG.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653487421997252608\/zPnAEdOj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653487421997252608\/zPnAEdOj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57300500\/1436343647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6516,"favorite_count":427,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KomsakAddams","name":"\u0e04\u0e21\u0e28\u0e31\u0e01\u0e14\u0e34\u0e4c \u0e41\u0e2d\u0e14\u0e14\u0e31\u0e21\u0e2a\u0e4c","id":57300500,"id_str":"57300500","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511465472,"id_str":"663728068511465472","text":"RT @BSBfan_Ana: RT if you love Nick . \u2665 https:\/\/t.co\/mn1DCyju9r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2891037756,"id_str":"2891037756","name":"\u0413\u0430\u043b\u043e\u0447\u043a\u0430 \u0426\u044b\u0433\u0430\u043d\u043e\u0432\u0430","screen_name":"GalinafanNick","location":"\u0410\u0442\u044b\u0440\u0430\u0443-87713441702 \u041c\u043e\u0439 \u043c\u043e\u0431.","url":null,"description":"\u042f \u0444\u0430\u043d\u0430\u0442\u043a\u0430 Nick Carter galckatsyganova@yandex.ru.\u041c\u043e\u0439 \u0438\u043c\u0435\u043b \u043f\u0438\u0448\u0438\u0442\u0435.Skype-galinas198469","protected":false,"verified":false,"followers_count":15,"friends_count":33,"listed_count":0,"favourites_count":2,"statuses_count":797,"created_at":"Wed Nov 05 18:41:12 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576033917980917760\/zNNoA_9y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576033917980917760\/zNNoA_9y.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661451560308727810\/0L5QhhvK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661451560308727810\/0L5QhhvK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2891037756\/1446537402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:11:55 +0000 2015","id":663418688184389633,"id_str":"663418688184389633","text":"RT if you love Nick . \u2665 https:\/\/t.co\/mn1DCyju9r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288036275,"id_str":"288036275","name":"BackstreetBoysBrazil","screen_name":"BSBfan_Ana","location":"In A World Like This ","url":"https:\/\/instagram.com\/kaos.world\/","description":"\u2661 Sua melhor fonte sobre a boyband @backstreetboys no Brasil \/\/ Your best source about the boyband BSB \u2661","protected":false,"verified":false,"followers_count":8495,"friends_count":8122,"listed_count":35,"favourites_count":164,"statuses_count":43204,"created_at":"Tue Apr 26 03:53:02 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000109326757\/b4b16eb6f16cbbfb0963de4bbb35aaa4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000109326757\/b4b16eb6f16cbbfb0963de4bbb35aaa4.jpeg","profile_background_tile":true,"profile_link_color":"333322","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"05050A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663144508016754688\/Yb_kD4_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663144508016754688\/Yb_kD4_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288036275\/1444588794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":37,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663418683797200897,"id_str":"663418683797200897","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","url":"https:\/\/t.co\/mn1DCyju9r","display_url":"pic.twitter.com\/mn1DCyju9r","expanded_url":"http:\/\/twitter.com\/BSBfan_Ana\/status\/663418688184389633\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":250,"h":264,"resize":"fit"},"small":{"w":250,"h":264,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663418683797200897,"id_str":"663418683797200897","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","url":"https:\/\/t.co\/mn1DCyju9r","display_url":"pic.twitter.com\/mn1DCyju9r","expanded_url":"http:\/\/twitter.com\/BSBfan_Ana\/status\/663418688184389633\/photo\/1","type":"animated_gif","sizes":{"large":{"w":250,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":250,"h":264,"resize":"fit"},"small":{"w":250,"h":264,"resize":"fit"}},"video_info":{"aspect_ratio":[125,132],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTvxykW4AEAQAa.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BSBfan_Ana","name":"BackstreetBoysBrazil","id":288036275,"id_str":"288036275","indices":[3,14]}],"symbols":[],"media":[{"id":663418683797200897,"id_str":"663418683797200897","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","url":"https:\/\/t.co\/mn1DCyju9r","display_url":"pic.twitter.com\/mn1DCyju9r","expanded_url":"http:\/\/twitter.com\/BSBfan_Ana\/status\/663418688184389633\/photo\/1","type":"photo","sizes":{"large":{"w":250,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":250,"h":264,"resize":"fit"},"small":{"w":250,"h":264,"resize":"fit"}},"source_status_id":663418688184389633,"source_status_id_str":"663418688184389633","source_user_id":288036275,"source_user_id_str":"288036275"}]},"extended_entities":{"media":[{"id":663418683797200897,"id_str":"663418683797200897","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTvxykW4AEAQAa.png","url":"https:\/\/t.co\/mn1DCyju9r","display_url":"pic.twitter.com\/mn1DCyju9r","expanded_url":"http:\/\/twitter.com\/BSBfan_Ana\/status\/663418688184389633\/photo\/1","type":"animated_gif","sizes":{"large":{"w":250,"h":264,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":250,"h":264,"resize":"fit"},"small":{"w":250,"h":264,"resize":"fit"}},"source_status_id":663418688184389633,"source_status_id_str":"663418688184389633","source_user_id":288036275,"source_user_id_str":"288036275","video_info":{"aspect_ratio":[125,132],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTvxykW4AEAQAa.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511469572,"id_str":"663728068511469572","text":"\u4eca\u591c\u306f\u6700\u9ad8\uff01\u306d\u3047\u904a\u307c\u3046\u3088\u266a\u3068\u30b4\u30b8\u30e9\u3092\u30ca\u30f3\u30d1\u3057\u305f\u3051\u3069\u30c0\u30e1\u3060\u3063\u305f\u30ae\u30c9\u30e9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451393049,"id_str":"451393049","name":"\u6bdb\u866b","screen_name":"KEMUSI121","location":"\u5bd2\u3044\u3002","url":null,"description":"\u7279\u64ae\u304c\u597d\u304d\u306a\u4eba\u9593\u3002\u30b4\u30b8\u30e9\u95a2\u4fc2\u306e\u545f\u304d\u304c\u304c\u307b\u3068\u3093\u3069\u3067\u3001\u610f\u5473\u4e0d\u660e\u767a\u8a00\u304c\u591a\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":552,"friends_count":538,"listed_count":9,"favourites_count":4719,"statuses_count":19035,"created_at":"Sat Dec 31 11:35:19 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623392342641283072\/EpQK1WF6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623392342641283072\/EpQK1WF6.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653414516605108224\/2ixAKNUz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653414516605108224\/2ixAKNUz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451393049\/1438611461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515631104,"id_str":"663728068515631104","text":"\u8efd\u7387\u306b\u30d7\u30e9\u30a4\u30ba\u306e\u30a2\u30f3\u30c7\u306c\u3044\u3050\u308b\u307f\u30dd\u30c1\u30c3\u305f","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169871821,"id_str":"169871821","name":"\u5409\u6625\u308a\u304f","screen_name":"Nub26y","location":"\u5922\u30ce\u54b2\u5b66\u9662","url":"http:\/\/twpf.jp\/Nub26y","description":"20\u2191\/\u8150\u5973\u5b50\/\u5b66\u751f\/\u3088\u3063\u3061\u3093\/\u30c7\u30ec\u30de\u30b9\/\uff2b\/\u30f4\u30a1\u30f3\u30af\u30ed\/\u8840\u754c\/\u3042\u3093\u30b9\u30bf\u25c7\u898f\u5236\u57a2\u2192@Nub26y_mskG2\/jojo\u8150\u57a2\u2192@Nub26y_jojo\/\u3068\u3046\u3089\u3076\u57a2\u2192@Nub26y_touken\/\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d5\u30a3","protected":false,"verified":false,"followers_count":170,"friends_count":237,"listed_count":18,"favourites_count":5668,"statuses_count":92281,"created_at":"Fri Jul 23 11:06:05 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/324082625\/twitter____.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/324082625\/twitter____.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654150016311816193\/K4DpgcOg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654150016311816193\/K4DpgcOg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169871821\/1445086804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515659776,"id_str":"663728068515659776","text":"RT @AgronNews: [PIC] Dianna and the cast & crew of #HollowInTheLand https:\/\/t.co\/uqwq3RHeE1 https:\/\/t.co\/fjcTLQZQro","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1920027500,"id_str":"1920027500","name":"justme","screen_name":"justme_relax","location":"Korea","url":"http:\/\/ask.fm\/justme_relax","description":"\ub2e4\uc774\uc560\ub098 \uc560\uadf8\ub860 \/ \uc5ec\ubc30\uc6b0, \ubbf8\ub4dc, \uc601\ud654, \uc560\ub2c8","protected":false,"verified":false,"followers_count":172,"friends_count":213,"listed_count":5,"favourites_count":6761,"statuses_count":19079,"created_at":"Mon Sep 30 13:05:19 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"0E9617","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635107237791297537\/o1peA4W5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635107237791297537\/o1peA4W5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1920027500\/1445608104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:49 +0000 2015","id":663727445992972290,"id_str":"663727445992972290","text":"[PIC] Dianna and the cast & crew of #HollowInTheLand https:\/\/t.co\/uqwq3RHeE1 https:\/\/t.co\/fjcTLQZQro","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":560239856,"id_str":"560239856","name":"Dianna Agron News","screen_name":"AgronNews","location":"agronnewscontact@gmail.com","url":"http:\/\/agronnews.tumblr.com","description":"News about the talented and beautiful actress: @DiannaAgron.","protected":false,"verified":false,"followers_count":11360,"friends_count":42,"listed_count":84,"favourites_count":206,"statuses_count":8803,"created_at":"Sun Apr 22 11:52:25 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000061636150\/83d25a06f600d58c497aff3c112ac830.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000061636150\/83d25a06f600d58c497aff3c112ac830.png","profile_background_tile":false,"profile_link_color":"5488AC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658348259593859072\/6VarvuJd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658348259593859072\/6VarvuJd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560239856\/1435479844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":7,"entities":{"hashtags":[{"text":"HollowInTheLand","indices":[40,56]}],"urls":[{"url":"https:\/\/t.co\/uqwq3RHeE1","expanded_url":"https:\/\/instagram.com\/p\/93hP6cu1FY\/","display_url":"instagram.com\/p\/93hP6cu1FY\/","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663727445078581252,"id_str":"663727445078581252","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","url":"https:\/\/t.co\/fjcTLQZQro","display_url":"pic.twitter.com\/fjcTLQZQro","expanded_url":"http:\/\/twitter.com\/AgronNews\/status\/663727445992972290\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":597,"h":448,"resize":"fit"},"medium":{"w":597,"h":448,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727445078581252,"id_str":"663727445078581252","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","url":"https:\/\/t.co\/fjcTLQZQro","display_url":"pic.twitter.com\/fjcTLQZQro","expanded_url":"http:\/\/twitter.com\/AgronNews\/status\/663727445992972290\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":597,"h":448,"resize":"fit"},"medium":{"w":597,"h":448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HollowInTheLand","indices":[55,71]}],"urls":[{"url":"https:\/\/t.co\/uqwq3RHeE1","expanded_url":"https:\/\/instagram.com\/p\/93hP6cu1FY\/","display_url":"instagram.com\/p\/93hP6cu1FY\/","indices":[72,95]}],"user_mentions":[{"screen_name":"AgronNews","name":"Dianna Agron News","id":560239856,"id_str":"560239856","indices":[3,13]}],"symbols":[],"media":[{"id":663727445078581252,"id_str":"663727445078581252","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","url":"https:\/\/t.co\/fjcTLQZQro","display_url":"pic.twitter.com\/fjcTLQZQro","expanded_url":"http:\/\/twitter.com\/AgronNews\/status\/663727445992972290\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":597,"h":448,"resize":"fit"},"medium":{"w":597,"h":448,"resize":"fit"}},"source_status_id":663727445992972290,"source_status_id_str":"663727445992972290","source_user_id":560239856,"source_user_id_str":"560239856"}]},"extended_entities":{"media":[{"id":663727445078581252,"id_str":"663727445078581252","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImD-WIAQyuHL.png","url":"https:\/\/t.co\/fjcTLQZQro","display_url":"pic.twitter.com\/fjcTLQZQro","expanded_url":"http:\/\/twitter.com\/AgronNews\/status\/663727445992972290\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":597,"h":448,"resize":"fit"},"medium":{"w":597,"h":448,"resize":"fit"}},"source_status_id":663727445992972290,"source_status_id_str":"663727445992972290","source_user_id":560239856,"source_user_id_str":"560239856"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532436992,"id_str":"663728068532436992","text":"\u3010\u8d85\u7c21\u5358\u3011\u30bb\u30eb\u30d5\u30cd\u30a4\u30eb\u266a\n\n\u7cf8\u3092\u4f7f\u3063\u3066\u30c7\u30b6\u30a4\u30f3\u30cd\u30a4\u30eb\u266a\n\uff11\uff0e\u30d9\u30fc\u30b9\u3092\u5857\u308b\n\uff12\uff0e\u4e7e\u304b\u306a\u3044\u3046\u3061\u306b\u7cf8\u3067\u30c7\u30b6\u30a4\u30f3\u3059\u308b\uff13\uff0e\u7cf8\u3092\u5207\u3063\u3066\u30c8\u30c3\u30d7\u30b3\u30fc\u30c8\n\uff14\uff0e\u7dbf\u68d2\u3067\u8272\u3092\u306e\u305b\u3066\u304f\n\uff15\uff0e\u307e\u305f\u30c8\u30c3\u30d7\u30b3\u30fc\u30c8\u3067\u5b8c\u6210\u266a https:\/\/t.co\/0qCOpoyiDg","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1640149658,"id_str":"1640149658","name":"\u2661\u304b\u308f\u3044\u3044\u30cd\u30a4\u30eb\u96c6\u2661","screen_name":"nail_love2","location":null,"url":"http:\/\/blog.crooz.jp\/nadeshiko0207","description":"\u30cd\u30a4\u30eb\u5927\u597d\u304d\u5973\u5b50\u3067\u3059\u2661\u30cd\u30a4\u30eb\u306b\u7e8f\u308f\u308b\u753b\u50cf\u3084\u60c5\u5831\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u304d\u307e\u3059\u2661 \u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3001RT\u3001\u304a\u6c17\u306b\u5165\u308a\u3057\u3066\u304f\u3060\u3055\u3044\u306d\u2661","protected":false,"verified":false,"followers_count":52510,"friends_count":34,"listed_count":340,"favourites_count":0,"statuses_count":15426,"created_at":"Fri Aug 02 10:28:53 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000047125902\/dd07de4dcbe21a01c471466f37f48173.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000047125902\/dd07de4dcbe21a01c471466f37f48173.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000229678790\/85bdb642fa7f82be89a80fe16025ca5a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000229678790\/85bdb642fa7f82be89a80fe16025ca5a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1640149658\/1375440952","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":364379833817526272,"id_str":"364379833817526272","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/BQ6Jhz4CcAAG71I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BQ6Jhz4CcAAG71I.jpg","url":"https:\/\/t.co\/0qCOpoyiDg","display_url":"pic.twitter.com\/0qCOpoyiDg","expanded_url":"http:\/\/twitter.com\/nail_love2\/status\/364379833813331968\/photo\/1","type":"photo","sizes":{"medium":{"w":488,"h":1197,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":277,"h":680,"resize":"fit"},"large":{"w":488,"h":1197,"resize":"fit"}},"source_status_id":364379833813331968,"source_status_id_str":"364379833813331968","source_user_id":1640149658,"source_user_id_str":"1640149658"}]},"extended_entities":{"media":[{"id":364379833817526272,"id_str":"364379833817526272","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/BQ6Jhz4CcAAG71I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BQ6Jhz4CcAAG71I.jpg","url":"https:\/\/t.co\/0qCOpoyiDg","display_url":"pic.twitter.com\/0qCOpoyiDg","expanded_url":"http:\/\/twitter.com\/nail_love2\/status\/364379833813331968\/photo\/1","type":"photo","sizes":{"medium":{"w":488,"h":1197,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":277,"h":680,"resize":"fit"},"large":{"w":488,"h":1197,"resize":"fit"}},"source_status_id":364379833813331968,"source_status_id_str":"364379833813331968","source_user_id":1640149658,"source_user_id_str":"1640149658"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528222208,"id_str":"663728068528222208","text":"RT @wolf88_bigbang: \u30ae\u30e7\u30f3\u30b9\u306e\u3053\u3046\u3044\u3046\u3068\u3053\u308d\u3082\u597d\u304d\nhttps:\/\/t.co\/7Srusf4wYy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3151038008,"id_str":"3151038008","name":"\u307f\u308b\u306f\uff98\uff6d\uff70\uff7c\uff6e\uff9d\u4eac\u30bb\u30e9\u5168\u65e5\u53c2\u6226","screen_name":"miru_fexovelvet","location":"\u541b\u306f\u30ed\u30de\u30f3\u30c6\u30a3\u30c3\u30af\u30e6\u30cb\u30d0\u30fc\u30b9","url":null,"description":"EXO\u57a2(\u5b89\u5b9a\u3059\u308b\u307e\u3067\u96d1\u98df\u57a2)\uff0f\u7686\u4ef2\u826f\u3057\u3001\u7e4b\u304c\u308d\u3046\u3058\u3083\u306a\u3044\u304b (\u261d\ufe0e \u055e\u0a0a \u055e)\u261d\ufe0e\uff0f\u5b89\u5b9a\u261e@Myungsoo_junho \uff0f#\u3059\u3072\u3087\u3093\u30aa\u30f3\u30cb\u30ac\u30c1\u52e2\u2764\u96d1\u98df\u57a2\u2192@smf_fx_velvet","protected":false,"verified":false,"followers_count":430,"friends_count":475,"listed_count":8,"favourites_count":8100,"statuses_count":8506,"created_at":"Sun Apr 12 08:22:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634005192447406081\/6om5OsBg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634005192447406081\/6om5OsBg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3151038008\/1446648592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:39:18 +0000 2015","id":663682269500977152,"id_str":"663682269500977152","text":"\u30ae\u30e7\u30f3\u30b9\u306e\u3053\u3046\u3044\u3046\u3068\u3053\u308d\u3082\u597d\u304d\nhttps:\/\/t.co\/7Srusf4wYy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2200848336,"id_str":"2200848336","name":"\u3231\u80a1\u9593\u53d6\u7de0\u5f79\u4f1a\u9577","screen_name":"wolf88_bigbang","location":"\u5909\u614bPLANET~\u30ed\u30de\u30f3\u30c6\u30a3\u30f3\u30b3\u30e6\u30cb\u30d0\u30fc\u30b9~","url":null,"description":"\u304a\u3044\u305d\u3053\u306e\u5909\u614b\u30f2\u30ec\u3068\u30ab\u30a4\u30c9\u8a9e\u308d","protected":false,"verified":false,"followers_count":541,"friends_count":221,"listed_count":22,"favourites_count":12005,"statuses_count":14398,"created_at":"Mon Nov 18 07:35:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/547371874724749312\/CG0zzYjU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/547371874724749312\/CG0zzYjU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2200848336\/1439819584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663592592722915328,"id_str":"663592592722915328","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","url":"https:\/\/t.co\/7Srusf4wYy","display_url":"pic.twitter.com\/7Srusf4wYy","expanded_url":"http:\/\/twitter.com\/_Kyungsoo_lover\/status\/663592595596034048\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":260,"resize":"fit"},"large":{"w":540,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663592595596034048,"source_status_id_str":"663592595596034048","source_user_id":552721464,"source_user_id_str":"552721464"}]},"extended_entities":{"media":[{"id":663592592722915328,"id_str":"663592592722915328","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","url":"https:\/\/t.co\/7Srusf4wYy","display_url":"pic.twitter.com\/7Srusf4wYy","expanded_url":"http:\/\/twitter.com\/_Kyungsoo_lover\/status\/663592595596034048\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":540,"h":260,"resize":"fit"},"large":{"w":540,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663592595596034048,"source_status_id_str":"663592595596034048","source_user_id":552721464,"source_user_id_str":"552721464","video_info":{"aspect_ratio":[27,13],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTWN8nzUcAADuuG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wolf88_bigbang","name":"\u3231\u80a1\u9593\u53d6\u7de0\u5f79\u4f1a\u9577","id":2200848336,"id_str":"2200848336","indices":[3,18]}],"symbols":[],"media":[{"id":663592592722915328,"id_str":"663592592722915328","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","url":"https:\/\/t.co\/7Srusf4wYy","display_url":"pic.twitter.com\/7Srusf4wYy","expanded_url":"http:\/\/twitter.com\/_Kyungsoo_lover\/status\/663592595596034048\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":260,"resize":"fit"},"large":{"w":540,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663592595596034048,"source_status_id_str":"663592595596034048","source_user_id":552721464,"source_user_id_str":"552721464"}]},"extended_entities":{"media":[{"id":663592592722915328,"id_str":"663592592722915328","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTWN8nzUcAADuuG.png","url":"https:\/\/t.co\/7Srusf4wYy","display_url":"pic.twitter.com\/7Srusf4wYy","expanded_url":"http:\/\/twitter.com\/_Kyungsoo_lover\/status\/663592595596034048\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":540,"h":260,"resize":"fit"},"large":{"w":540,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"}},"source_status_id":663592595596034048,"source_status_id_str":"663592595596034048","source_user_id":552721464,"source_user_id_str":"552721464","video_info":{"aspect_ratio":[27,13],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTWN8nzUcAADuuG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532523009,"id_str":"663728068532523009","text":"Loading for a delivery in #Glasgow tomorrow morning #KCS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740593190,"id_str":"2740593190","name":"KCS ","screen_name":"K_C_S_Transport","location":null,"url":null,"description":"National deliveries and collections at competitive rates 24\/7, For more information please message or email me at kcs9@outlook.com or ring me on 07583 951746","protected":false,"verified":false,"followers_count":161,"friends_count":111,"listed_count":8,"favourites_count":12,"statuses_count":775,"created_at":"Tue Aug 12 06:44:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590753983150628864\/NuzvrLrb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590753983150628864\/NuzvrLrb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2740593190\/1420011813","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Glasgow","indices":[26,34]},{"text":"KCS","indices":[52,56]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511469573,"id_str":"663728068511469573","text":"RT @babygings: \u0e43\u0e19\u0e40\u0e01\u0e37\u0e2d\u0e1a 4 \u0e2b\u0e21\u0e37\u0e48\u0e19\u0e17\u0e27\u0e35\u0e15\u0e02\u0e2d\u0e07\u0e21\u0e36\u0e07\u0e19\u0e35\u0e48\u0e40\u0e28\u0e23\u0e49\u0e32\u0e2b\u0e21\u0e14\u0e17\u0e38\u0e01\u0e17\u0e27\u0e35\u0e15\u0e40\u0e25\u0e22\u0e40\u0e19\u0e2d\u0e30 \u0e0a\u0e35\u0e27\u0e34\u0e15\u0e14\u0e39\u0e19\u0e48\u0e32\u0e2a\u0e07\u0e2a\u0e32\u0e23","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2395625772,"id_str":"2395625772","name":"TRUST.","screen_name":"SphericalMe","location":"\u0e43\u0e19\u0e43\u0e08\u0e40\u0e18\u0e2d","url":"https:\/\/twitter.com\/alone","description":"\u0e40\u0e25\u0e48\u0e19\u0e17\u0e27\u0e34\u0e15\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e1a\u0e32\u0e22\u0e43\u0e08 \u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e40\u0e2d\u0e32\u0e43\u0e08\u0e43\u0e04\u0e23.","protected":false,"verified":false,"followers_count":109,"friends_count":984,"listed_count":0,"favourites_count":641,"statuses_count":51430,"created_at":"Tue Mar 18 04:47:08 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662793486882570240\/6Yh6FqFV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662793486882570240\/6Yh6FqFV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2395625772\/1435968713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 20:20:55 +0000 2015","id":662726375682347008,"id_str":"662726375682347008","text":"\u0e43\u0e19\u0e40\u0e01\u0e37\u0e2d\u0e1a 4 \u0e2b\u0e21\u0e37\u0e48\u0e19\u0e17\u0e27\u0e35\u0e15\u0e02\u0e2d\u0e07\u0e21\u0e36\u0e07\u0e19\u0e35\u0e48\u0e40\u0e28\u0e23\u0e49\u0e32\u0e2b\u0e21\u0e14\u0e17\u0e38\u0e01\u0e17\u0e27\u0e35\u0e15\u0e40\u0e25\u0e22\u0e40\u0e19\u0e2d\u0e30 \u0e0a\u0e35\u0e27\u0e34\u0e15\u0e14\u0e39\u0e19\u0e48\u0e32\u0e2a\u0e07\u0e2a\u0e32\u0e23","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146819068,"id_str":"146819068","name":"\u0e19\u0e49\u0e2d\u0e07\u0e01\u0e34\u0e48\u0e07\u0e43\u0e09\u0e43\u0e09 (;\uffe2\u03c9\uffe2)\u30b8","screen_name":"babygings","location":null,"url":null,"description":"\u0e1e\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e21\u0e32\u0e40\u0e25\u0e48\u0e19\u0e46","protected":false,"verified":false,"followers_count":15104,"friends_count":354,"listed_count":29,"favourites_count":2213,"statuses_count":75842,"created_at":"Sat May 22 12:27:59 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566672201\/s62ytg1ov6q3ak6mflhc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566672201\/s62ytg1ov6q3ak6mflhc.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFA8CF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662321939373944832\/7UvD_cAI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662321939373944832\/7UvD_cAI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146819068\/1446614737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1718,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"babygings","name":"\u0e19\u0e49\u0e2d\u0e07\u0e01\u0e34\u0e48\u0e07\u0e43\u0e09\u0e43\u0e09 (;\uffe2\u03c9\uffe2)\u30b8","id":146819068,"id_str":"146819068","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068515733506,"id_str":"663728068515733506","text":"RT @mariamalbloshi_: its weird how many best friends became strangers this year","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413089542,"id_str":"2413089542","name":"SHAMMA","screen_name":"ShAmmah_2","location":"\u062f\u0648\u062d\u0647 \u0642\u0637\u0631","url":null,"description":"\u0623\u0633\u062a\u063a\u0641\u0631\u0644\u0644\u0647 \u0648\u0623\u062a\u0648\u0628 \u0627\u0644\u064a\u0647","protected":false,"verified":false,"followers_count":234,"friends_count":369,"listed_count":0,"favourites_count":481,"statuses_count":1798,"created_at":"Wed Mar 26 20:09:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496047092654043136\/LnhbJkMg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496047092654043136\/LnhbJkMg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413089542\/1406220990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:50 +0000 2015","id":663725437084938240,"id_str":"663725437084938240","text":"its weird how many best friends became strangers this year","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2205524977,"id_str":"2205524977","name":"M A R I A M","screen_name":"mariamalbloshi_","location":"Doha Qatar","url":"http:\/\/ask.fm\/mzb123","description":"always be happy no matter what (:","protected":false,"verified":false,"followers_count":608,"friends_count":1030,"listed_count":0,"favourites_count":10186,"statuses_count":18334,"created_at":"Wed Nov 20 20:06:00 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660894265132888065\/T0gBM1YH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660894265132888065\/T0gBM1YH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2205524977\/1446404481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mariamalbloshi_","name":"M A R I A M","id":2205524977,"id_str":"2205524977","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077662"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068524011521,"id_str":"663728068524011521","text":"\uff3c\uff8e\uff9c\uff67\u2026\uff0f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1402092672,"id_str":"1402092672","name":"\u84b8\u304b\u3057\u828bbot","screen_name":"hukashiimo_bot","location":"\u8abf\u7406\u5834","url":null,"description":"\u30db\u30af\u30db\u30af\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":446,"friends_count":536,"listed_count":17,"favourites_count":20,"statuses_count":9636,"created_at":"Sat May 04 11:50:13 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261573318649\/eff850114f1a25056c36e7c130e2bdb0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261573318649\/eff850114f1a25056c36e7c130e2bdb0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077664"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068503048192,"id_str":"663728068503048192","text":"\u30b9\u30de\u30dbRPG\u306f\u4eca\u3053\u308c\u3092\u3084\u3063\u3066\u308b\u3088\u3002\u4eca\u306e\u30b8\u30e7\u30d6\u306f\u3053\u308c\uff01\u3000https:\/\/t.co\/GUuGkQ1miD \u30b2\u30fc\u30e0\u5185\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u2192\u3000https:\/\/t.co\/UuqXrplP9L","source":"\u003ca href=\"http:\/\/granbluefantasy.jp\/\" rel=\"nofollow\"\u003e\u30b0\u30e9\u30f3\u30d6\u30eb\u30fc \u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2749603756,"id_str":"2749603756","name":"\u305f\u3054\u3055\u304f","screen_name":"naka90901","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":323,"created_at":"Thu Aug 21 21:51:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UuqXrplP9L","expanded_url":"http:\/\/gbf.game.mbga.jp\/#profile\/1328727","display_url":"gbf.game.mbga.jp\/#profile\/13287\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":545167326425796609,"id_str":"545167326425796609","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5DSy4LCUAELbzP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5DSy4LCUAELbzP.jpg","url":"https:\/\/t.co\/GUuGkQ1miD","display_url":"pic.twitter.com\/GUuGkQ1miD","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545167327239491584\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545167327239491584,"source_status_id_str":"545167327239491584","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"extended_entities":{"media":[{"id":545167326425796609,"id_str":"545167326425796609","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/B5DSy4LCUAELbzP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B5DSy4LCUAELbzP.jpg","url":"https:\/\/t.co\/GUuGkQ1miD","display_url":"pic.twitter.com\/GUuGkQ1miD","expanded_url":"http:\/\/twitter.com\/pic_up_bot\/status\/545167327239491584\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":545167327239491584,"source_status_id_str":"545167327239491584","source_user_id":2931108684,"source_user_id_str":"2931108684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077659"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494659584,"id_str":"663728068494659584","text":"Tangina magpapa party talaga ako pagkatapos ko ng physics \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80510280,"id_str":"80510280","name":"Jellytine \u2666","screen_name":"sillygheghe","location":"PH","url":null,"description":"Literally a material girl lol coz i study Materials Science and Engineering | Mapuan","protected":false,"verified":false,"followers_count":216,"friends_count":257,"listed_count":7,"favourites_count":2271,"statuses_count":10014,"created_at":"Wed Oct 07 06:24:57 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548141427\/thumb_COLOURBOX2955566.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548141427\/thumb_COLOURBOX2955566.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654691469437984769\/6vxjrVgB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654691469437984769\/6vxjrVgB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80510280\/1401784444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528246784,"id_str":"663728068528246784","text":"RT @thinkB329: 151107 Melon music awards - \ub300\uae30(FANTASTIC BABY) #\uc544\uc774\ub9b0 #IRENE \nhttps:\/\/t.co\/c8cfHQ2B5S https:\/\/t.co\/C1h1aA7TM6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178080360,"id_str":"3178080360","name":"\u3147","screen_name":"redvelvetkwiyop","location":null,"url":null,"description":"\ub808\ub4dc!\ubca8\ubcb3!\n#THERED","protected":false,"verified":false,"followers_count":11,"friends_count":155,"listed_count":0,"favourites_count":515,"statuses_count":4733,"created_at":"Tue Apr 28 11:41:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640414878050553856\/km9wdlBh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640414878050553856\/km9wdlBh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178080360\/1441521778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:03:00 +0000 2015","id":663673133266657280,"id_str":"663673133266657280","text":"151107 Melon music awards - \ub300\uae30(FANTASTIC BABY) #\uc544\uc774\ub9b0 #IRENE \nhttps:\/\/t.co\/c8cfHQ2B5S https:\/\/t.co\/C1h1aA7TM6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2900871798,"id_str":"2900871798","name":"\uc790\uafb8\uc0dd\uac01\ub098","screen_name":"thinkB329","location":null,"url":"http:\/\/think-b.tistory.com","description":"thinkb329@gmail.com \/ http:\/\/i.instagram.com\/thinkb329 \/ http:\/\/weibo.com\/ThinkB329","protected":false,"verified":false,"followers_count":16883,"friends_count":0,"listed_count":498,"favourites_count":1,"statuses_count":618,"created_at":"Sat Nov 15 22:26:53 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641767655829929984\/2ZaaXx-m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641767655829929984\/2ZaaXx-m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2900871798\/1441844307","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":659,"favorite_count":448,"entities":{"hashtags":[{"text":"\uc544\uc774\ub9b0","indices":[47,51]},{"text":"IRENE","indices":[52,58]}],"urls":[{"url":"https:\/\/t.co\/c8cfHQ2B5S","expanded_url":"https:\/\/youtu.be\/zXZr7ZZ3qE8","display_url":"youtu.be\/zXZr7ZZ3qE8","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663672931235459072,"id_str":"663672931235459072","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","url":"https:\/\/t.co\/C1h1aA7TM6","display_url":"pic.twitter.com\/C1h1aA7TM6","expanded_url":"http:\/\/twitter.com\/thinkB329\/status\/663673133266657280\/photo\/1","type":"photo","sizes":{"small":{"w":304,"h":382,"resize":"fit"},"medium":{"w":304,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":304,"h":382,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672931235459072,"id_str":"663672931235459072","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","url":"https:\/\/t.co\/C1h1aA7TM6","display_url":"pic.twitter.com\/C1h1aA7TM6","expanded_url":"http:\/\/twitter.com\/thinkB329\/status\/663673133266657280\/photo\/1","type":"animated_gif","sizes":{"small":{"w":304,"h":382,"resize":"fit"},"medium":{"w":304,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":304,"h":382,"resize":"fit"}},"video_info":{"aspect_ratio":[152,191],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXXA8FU8AA_mwP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\uc774\ub9b0","indices":[62,66]},{"text":"IRENE","indices":[67,73]}],"urls":[{"url":"https:\/\/t.co\/c8cfHQ2B5S","expanded_url":"https:\/\/youtu.be\/zXZr7ZZ3qE8","display_url":"youtu.be\/zXZr7ZZ3qE8","indices":[75,98]}],"user_mentions":[{"screen_name":"thinkB329","name":"\uc790\uafb8\uc0dd\uac01\ub098","id":2900871798,"id_str":"2900871798","indices":[3,13]}],"symbols":[],"media":[{"id":663672931235459072,"id_str":"663672931235459072","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","url":"https:\/\/t.co\/C1h1aA7TM6","display_url":"pic.twitter.com\/C1h1aA7TM6","expanded_url":"http:\/\/twitter.com\/thinkB329\/status\/663673133266657280\/photo\/1","type":"photo","sizes":{"small":{"w":304,"h":382,"resize":"fit"},"medium":{"w":304,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":304,"h":382,"resize":"fit"}},"source_status_id":663673133266657280,"source_status_id_str":"663673133266657280","source_user_id":2900871798,"source_user_id_str":"2900871798"}]},"extended_entities":{"media":[{"id":663672931235459072,"id_str":"663672931235459072","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXXA8FU8AA_mwP.png","url":"https:\/\/t.co\/C1h1aA7TM6","display_url":"pic.twitter.com\/C1h1aA7TM6","expanded_url":"http:\/\/twitter.com\/thinkB329\/status\/663673133266657280\/photo\/1","type":"animated_gif","sizes":{"small":{"w":304,"h":382,"resize":"fit"},"medium":{"w":304,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":304,"h":382,"resize":"fit"}},"source_status_id":663673133266657280,"source_status_id_str":"663673133266657280","source_user_id":2900871798,"source_user_id_str":"2900871798","video_info":{"aspect_ratio":[152,191],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXXA8FU8AA_mwP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068503162880,"id_str":"663728068503162880","text":"RT @RafyAtm17: Sentimiento. (V\u00eda @Steffinhos) https:\/\/t.co\/Kz3oAsVu1h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187197087,"id_str":"187197087","name":"Alex","screen_name":"9Alexlp","location":"Legan\u00e9s - Navalmoral","url":null,"description":"Futuro realizador. Atletico de Madrid. Silvia XIX","protected":false,"verified":false,"followers_count":305,"friends_count":347,"listed_count":0,"favourites_count":137,"statuses_count":5176,"created_at":"Sun Sep 05 15:03:38 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509129332665905152\/t6pcpyzO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509129332665905152\/t6pcpyzO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187197087\/1417472140","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:11 +0000 2015","id":663718732498358272,"id_str":"663718732498358272","text":"Sentimiento. (V\u00eda @Steffinhos) https:\/\/t.co\/Kz3oAsVu1h","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467484389,"id_str":"467484389","name":"Rafa","screen_name":"RafyAtm17","location":null,"url":null,"description":"Atl\u00e9tico de Madrid","protected":false,"verified":false,"followers_count":8194,"friends_count":398,"listed_count":62,"favourites_count":18532,"statuses_count":75538,"created_at":"Wed Jan 18 14:32:42 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623415271408148484\/HqHeFlaP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623415271408148484\/HqHeFlaP.jpg","profile_background_tile":true,"profile_link_color":"0B57FB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662399272642551813\/aQwzSx7H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662399272642551813\/aQwzSx7H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467484389\/1446762563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":43,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Steffinhos","name":"Steff","id":2350747699,"id_str":"2350747699","indices":[18,29]}],"symbols":[],"media":[{"id":663718707026370560,"id_str":"663718707026370560","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","url":"https:\/\/t.co\/Kz3oAsVu1h","display_url":"pic.twitter.com\/Kz3oAsVu1h","expanded_url":"http:\/\/twitter.com\/RafyAtm17\/status\/663718732498358272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":574,"resize":"fit"},"large":{"w":605,"h":1023,"resize":"fit"},"medium":{"w":600,"h":1014,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718707026370560,"id_str":"663718707026370560","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","url":"https:\/\/t.co\/Kz3oAsVu1h","display_url":"pic.twitter.com\/Kz3oAsVu1h","expanded_url":"http:\/\/twitter.com\/RafyAtm17\/status\/663718732498358272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":574,"resize":"fit"},"large":{"w":605,"h":1023,"resize":"fit"},"medium":{"w":600,"h":1014,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RafyAtm17","name":"Rafa","id":467484389,"id_str":"467484389","indices":[3,13]},{"screen_name":"Steffinhos","name":"Steff","id":2350747699,"id_str":"2350747699","indices":[33,44]}],"symbols":[],"media":[{"id":663718707026370560,"id_str":"663718707026370560","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","url":"https:\/\/t.co\/Kz3oAsVu1h","display_url":"pic.twitter.com\/Kz3oAsVu1h","expanded_url":"http:\/\/twitter.com\/RafyAtm17\/status\/663718732498358272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":574,"resize":"fit"},"large":{"w":605,"h":1023,"resize":"fit"},"medium":{"w":600,"h":1014,"resize":"fit"}},"source_status_id":663718732498358272,"source_status_id_str":"663718732498358272","source_user_id":467484389,"source_user_id_str":"467484389"}]},"extended_entities":{"media":[{"id":663718707026370560,"id_str":"663718707026370560","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYApcMWoAA3Mv7.jpg","url":"https:\/\/t.co\/Kz3oAsVu1h","display_url":"pic.twitter.com\/Kz3oAsVu1h","expanded_url":"http:\/\/twitter.com\/RafyAtm17\/status\/663718732498358272\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":574,"resize":"fit"},"large":{"w":605,"h":1023,"resize":"fit"},"medium":{"w":600,"h":1014,"resize":"fit"}},"source_status_id":663718732498358272,"source_status_id_str":"663718732498358272","source_user_id":467484389,"source_user_id_str":"467484389"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077659"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068503076864,"id_str":"663728068503076864","text":"aga ko pa pala bukas. deletion and inclusion and shts kind of tuesday \ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":494762344,"id_str":"494762344","name":"Eve","screen_name":"conaevonyca","location":null,"url":"http:\/\/asweetdisp0siti0n.tumblr.com","description":"Psalm 73:26 \u2022 @joycethirlwall's queen","protected":false,"verified":false,"followers_count":401,"friends_count":260,"listed_count":1,"favourites_count":11609,"statuses_count":15553,"created_at":"Fri Feb 17 07:12:47 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518991400080125952\/G90kvWhS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518991400080125952\/G90kvWhS.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663307236609908736\/K_nV_viR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663307236609908736\/K_nV_viR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/494762344\/1446958039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077659"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507254784,"id_str":"663728068507254784","text":"Review dan sinopsis Anime Ben-to >> https:\/\/t.co\/Ab94R4vV5Q","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536278515,"id_str":"1536278515","name":"indotaku.com","screen_name":"indotakuCom","location":"Website","url":"http:\/\/indotaku.com","description":"Ini adalah akun twitter dari situs http:\/\/indotaku.com (Seputar Jepang dan Anime Indonesia)","protected":false,"verified":false,"followers_count":2,"friends_count":14,"listed_count":0,"favourites_count":0,"statuses_count":40845,"created_at":"Fri Jun 21 10:51:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000024503695\/09ad862d442270bb5c046434d94a8e02_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000024503695\/09ad862d442270bb5c046434d94a8e02_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ab94R4vV5Q","expanded_url":"http:\/\/indotaku.com\/review-dan-sinopsis-anime-ben-to\/","display_url":"indotaku.com\/review-dan-sin\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494651394,"id_str":"663728068494651394","text":"@jyojyojyorion \u534a\u65e5\u524d\u306e\u4ffa\u72b6\u614b\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726603084496896,"in_reply_to_status_id_str":"663726603084496896","in_reply_to_user_id":2317728894,"in_reply_to_user_id_str":"2317728894","in_reply_to_screen_name":"jyojyojyorion","user":{"id":1168975316,"id_str":"1168975316","name":"\u9744\u5c38\u30ca\u30ca\u30aa","screen_name":"na70_m","location":"\u6771\u4eac","url":"http:\/\/Instagram.com\/moyax2_4","description":"\u3082\u3084\u3057\u306a\u306a\u304a \u30a2\u30cb\u30e1\/\u30dc\u30ab\u30ed\/\u30d5\u30a3\u30ae\u30e5\u30a2\/\u30b3\u30b9\u30d7\u30ec\/\u30cf\u30fc\u30c9\u30b3\u30a2\/DIR EN GREY\/BABYMETAL\/\u30e9\u30fc\u30e1\u30f3\/KMK\/\u79cb\u8449\u539f\/\u5fcd\u91ce\u5fcd\/\u81ea\u5df1(\u6e80)\u9855\u793a\u6b32\u306e\u304b\u307e\u305f\u308a\u30a2\u30ab\u30a6\u30f3\u30b3\uff08\u055e\u067c\u055e\u261d FRB\u306f\u3054\u81ea\u7531\u306b\u30c9\u30be\uff01","protected":false,"verified":false,"followers_count":713,"friends_count":118,"listed_count":9,"favourites_count":17311,"statuses_count":41298,"created_at":"Mon Feb 11 13:54:16 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663378465622638592\/DAoSrXJU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663378465622638592\/DAoSrXJU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1168975316\/1446605679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jyojyojyorion","name":"\u30e2\u30ea\u30e2\u30f3@TDC(11\/28)","id":2317728894,"id_str":"2317728894","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068528328705,"id_str":"663728068528328705","text":"De la mami mia): https:\/\/t.co\/yq9jCEHHMP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276134002,"id_str":"276134002","name":"Yo soy Nadie","screen_name":"IgnaciaPacheco","location":null,"url":null,"description":"18\/ S\u00edgueme. ETERNA AMANTE DEL B\u00c9ISBOL. So\u00f1ando con una mejor Venezuela. MI MUJER @imediometro \u2665.","protected":false,"verified":false,"followers_count":4605,"friends_count":3638,"listed_count":1025,"favourites_count":109859,"statuses_count":40929,"created_at":"Sat Apr 02 18:35:49 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612413438535401472\/Sy1r5eeH.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612413438535401472\/Sy1r5eeH.jpg","profile_background_tile":true,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659028139327299585\/l9yPyL7N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659028139327299585\/l9yPyL7N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276134002\/1446465590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728015109656576,"quoted_status_id_str":"663728015109656576","quoted_status":{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728015109656576,"id_str":"663728015109656576","text":"@IgnaciaPacheco Y eso ojos, m\u00edo?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727291663564800,"in_reply_to_status_id_str":"663727291663564800","in_reply_to_user_id":276134002,"in_reply_to_user_id_str":"276134002","in_reply_to_screen_name":"IgnaciaPacheco","user":{"id":138764210,"id_str":"138764210","name":"Sonny.","screen_name":"Lastblas","location":"Anzo\u00e1tegui-Venezuela ","url":null,"description":"Concejal del Cabildo Juvenil de Barcelona. Amor por la sabidur\u00eda. Ing:Inform\u00e1tica.\n\nHECHO EN VENEZUELA.","protected":false,"verified":false,"followers_count":1089,"friends_count":785,"listed_count":16,"favourites_count":5679,"statuses_count":28068,"created_at":"Fri Apr 30 14:28:03 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517731976946536449\/Jy6ItrHY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517731976946536449\/Jy6ItrHY.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659334367735623680\/3hCvKwSW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659334367735623680\/3hCvKwSW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138764210\/1441215556","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IgnaciaPacheco","name":"Yo soy Nadie","id":276134002,"id_str":"276134002","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yq9jCEHHMP","expanded_url":"https:\/\/twitter.com\/Lastblas\/status\/663728015109656576","display_url":"twitter.com\/Lastblas\/statu\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077665"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532547584,"id_str":"663728068532547584","text":"\ud83d\udcf7 baeinthemirror: B&W https:\/\/t.co\/LKeVD13yFq","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":849918199,"id_str":"849918199","name":"Just do it...","screen_name":"MacaBieeBer","location":null,"url":null,"description":"Follow Back (Pidel","protected":false,"verified":false,"followers_count":282,"friends_count":436,"listed_count":2,"favourites_count":2627,"statuses_count":15374,"created_at":"Thu Sep 27 20:31:10 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456088185387233280\/rmWq_ELQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456088185387233280\/rmWq_ELQ.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C59157","profile_text_color":"724929","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658126220211695616\/cH9cUzlH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658126220211695616\/cH9cUzlH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/849918199\/1446686049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LKeVD13yFq","expanded_url":"http:\/\/tmblr.co\/ZcmDat1xlk6fL","display_url":"tmblr.co\/ZcmDat1xlk6fL","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511424512,"id_str":"663728068511424512","text":"@soujtal cium dulu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663361786016493568,"in_reply_to_status_id_str":"663361786016493568","in_reply_to_user_id":953140704,"in_reply_to_user_id_str":"953140704","in_reply_to_screen_name":"soujtal","user":{"id":2208615211,"id_str":"2208615211","name":"jongin","screen_name":"kaijognin","location":null,"url":null,"description":"her fatal beauty startles me","protected":false,"verified":false,"followers_count":310,"friends_count":256,"listed_count":0,"favourites_count":20,"statuses_count":18335,"created_at":"Fri Nov 22 08:43:52 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724043254816768\/tXnClbHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724043254816768\/tXnClbHs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2208615211\/1447079951","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soujtal","name":"\u2733UC \uc218\uc815(H)","id":953140704,"id_str":"953140704","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511465473,"id_str":"663728068511465473","text":"RT @ryu_p: \u95a3\u4e0b\u306f\u3064\u3044\u306b\u76f8\u64b2\u5354\u4f1a\u306e\u4eba\u9593\u3092\u9b54\u754c\u306e\u4f4f\u4eba\u306b\u5909\u3048\u308b\u4e8b\u306b\u6210\u529f\u3057\u305f\u3088\u3046\u3060\u2026\n\n\u3055\u3059\u304c\u95a3\u4e0b\u3068\u3044\u3046\u3068\u3053\u308d\u304b(\u7b11)\n\n\u7d20\u6674\u3089\u3057\u3044\u306a\u266a https:\/\/t.co\/W89oYXueg3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":126271438,"id_str":"126271438","name":"dee","screen_name":"moarterip","location":"JAPAN ","url":null,"description":"All I want in life is to be happy. It seems funny to me. How fucked things can be. Everytime I get ahead. I feel more dead.","protected":false,"verified":false,"followers_count":463,"friends_count":704,"listed_count":8,"favourites_count":835,"statuses_count":55680,"created_at":"Thu Mar 25 09:34:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/89371281\/Death.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/89371281\/Death.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2186701673\/572206273_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2186701673\/572206273_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 10:59:42 +0000 2015","id":662585141814886400,"id_str":"662585141814886400","text":"\u95a3\u4e0b\u306f\u3064\u3044\u306b\u76f8\u64b2\u5354\u4f1a\u306e\u4eba\u9593\u3092\u9b54\u754c\u306e\u4f4f\u4eba\u306b\u5909\u3048\u308b\u4e8b\u306b\u6210\u529f\u3057\u305f\u3088\u3046\u3060\u2026\n\n\u3055\u3059\u304c\u95a3\u4e0b\u3068\u3044\u3046\u3068\u3053\u308d\u304b(\u7b11)\n\n\u7d20\u6674\u3089\u3057\u3044\u306a\u266a https:\/\/t.co\/W89oYXueg3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":734166530,"id_str":"734166530","name":"Ryu","screen_name":"ryu_p","location":"\u6771\u4eac","url":null,"description":"\u81ea\u7531\u4eba\u3067\u3059\u30022015\u5e74 \u65b0\u3057\u3044\u30d0\u30f3\u30c9\u3068\u548c\u592a\u9f13\u59cb\u3081\u307e\u3057\u305f\u266a","protected":false,"verified":false,"followers_count":143,"friends_count":124,"listed_count":1,"favourites_count":3358,"statuses_count":2986,"created_at":"Fri Aug 03 04:34:22 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605838625721311233\/jfWr6v2X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605838625721311233\/jfWr6v2X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/734166530\/1424540724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662585141693251584,"id_str":"662585141693251584","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","url":"https:\/\/t.co\/W89oYXueg3","display_url":"pic.twitter.com\/W89oYXueg3","expanded_url":"http:\/\/twitter.com\/ryu_p\/status\/662585141814886400\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662585141693251584,"id_str":"662585141693251584","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","url":"https:\/\/t.co\/W89oYXueg3","display_url":"pic.twitter.com\/W89oYXueg3","expanded_url":"http:\/\/twitter.com\/ryu_p\/status\/662585141814886400\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ryu_p","name":"Ryu","id":734166530,"id_str":"734166530","indices":[3,9]}],"symbols":[],"media":[{"id":662585141693251584,"id_str":"662585141693251584","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","url":"https:\/\/t.co\/W89oYXueg3","display_url":"pic.twitter.com\/W89oYXueg3","expanded_url":"http:\/\/twitter.com\/ryu_p\/status\/662585141814886400\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}},"source_status_id":662585141814886400,"source_status_id_str":"662585141814886400","source_user_id":734166530,"source_user_id_str":"734166530"}]},"extended_entities":{"media":[{"id":662585141693251584,"id_str":"662585141693251584","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTH5rQQUAAATy3w.jpg","url":"https:\/\/t.co\/W89oYXueg3","display_url":"pic.twitter.com\/W89oYXueg3","expanded_url":"http:\/\/twitter.com\/ryu_p\/status\/662585141814886400\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}},"source_status_id":662585141814886400,"source_status_id_str":"662585141814886400","source_user_id":734166530,"source_user_id_str":"734166530"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068519976961,"id_str":"663728068519976961","text":"@WhiteHouse will u take appropriate investigative measures on this? https:\/\/t.co\/XM3rRIUlUu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":30313925,"in_reply_to_user_id_str":"30313925","in_reply_to_screen_name":"WhiteHouse","user":{"id":34727730,"id_str":"34727730","name":"James Lipski","screen_name":"DIPGparent","location":null,"url":null,"description":"#veteran #individualresponsibility #VFW Father of three. childhood cancer advocate. Bama fan! I believe the govt should give you what you need,not what you want","protected":false,"verified":false,"followers_count":265,"friends_count":270,"listed_count":11,"favourites_count":1633,"statuses_count":7012,"created_at":"Thu Apr 23 21:00:19 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/10959341\/1001029186.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/10959341\/1001029186.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655289332060651520\/dLFMQyWm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655289332060651520\/dLFMQyWm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34727730\/1440667305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725633269334017,"quoted_status_id_str":"663725633269334017","quoted_status":{"created_at":"Mon Nov 09 14:31:37 +0000 2015","id":663725633269334017,"id_str":"663725633269334017","text":"NEW BLACK PANTHERS CALLS FOR VIOLENCE AT RNC, \u201cKILL THESE \u2026\n\nhttps:\/\/t.co\/cwuO1B9uN4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2373008095,"id_str":"2373008095","name":"G John Smith","screen_name":"GJohn60","location":"South Carolina","url":null,"description":"Pro Constitution.2A Advocate.Firearms Enthusiast.Supporter of Military & Law Enforcement...If i don't follow back,nothing personal..I DON'T BUY FOLLOWS..","protected":false,"verified":false,"followers_count":888,"friends_count":862,"listed_count":34,"favourites_count":4442,"statuses_count":9613,"created_at":"Wed Mar 05 02:01:12 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660427647936237568\/o2dB6w7I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660427647936237568\/o2dB6w7I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2373008095\/1440605918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cwuO1B9uN4","expanded_url":"http:\/\/www.truthandaction.org\/new-black-panthers-calls-for-violence-at-rnc-kill-these","display_url":"truthandaction.org\/new-black-pant\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XM3rRIUlUu","expanded_url":"https:\/\/twitter.com\/gjohn60\/status\/663725633269334017","display_url":"twitter.com\/gjohn60\/status\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"WhiteHouse","name":"The White House","id":30313925,"id_str":"30313925","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077663"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511449088,"id_str":"663728068511449088","text":"@Nuttazuda \u0e44\u0e1b\u0e1a\u0e19\u0e40\u0e25\u0e22\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32\u0e01\u0e39 \u0e44\u0e21\u0e48\u0e2d\u0e22\u0e32\u0e01\u0e44\u0e1b\u0e41\u0e23\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727820879867904,"in_reply_to_status_id_str":"663727820879867904","in_reply_to_user_id":1001063702,"in_reply_to_user_id_str":"1001063702","in_reply_to_screen_name":"Nuttazuda","user":{"id":920498310,"id_str":"920498310","name":"\u0e42 \u0e09 \u0e21 \u30c3","screen_name":"TARTAE_GG","location":" \u25e1\u0308 DOUBLE T ","url":null,"description":"s\u00f3ne \u2661 Girls' Generation ( \uc18c\ub140\uc2dc\ub300 ) | \u262eT9. | Be\u0142ieve in TY & TF | S\u03c5pport : iKON , BigBang | \u0e1a\u0e32\u0e07\u0e17\u0e27\u0e34\u0e15\u0e21\u0e35\u0e40\u0e19\u0e37\u0e49\u0e2d\u0e2b\u0e32\u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e32\u0e22 | \u026a don't care , \u026a love it |","protected":false,"verified":false,"followers_count":751,"friends_count":207,"listed_count":6,"favourites_count":1446,"statuses_count":78276,"created_at":"Fri Nov 02 06:52:42 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165655120\/-DND43K-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165655120\/-DND43K-.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657584200036384768\/J5RHo22M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657584200036384768\/J5RHo22M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/920498310\/1444044293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nuttazuda","name":"1999","id":1001063702,"id_str":"1001063702","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532420608,"id_str":"663728068532420608","text":"RT @EXO_HBK: \u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e17\u0e27\u0e34\u0e15\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01 #CallMeBaby \u0e2b\u0e49\u0e32\u0e21\u0e43\u0e2a\u0e48\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e \u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e34\u0e42\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e43\u0e14\u0e46 \u0e41\u0e17\u0e47\u0e01\u0e2b\u0e49\u0e32\u0e21\u0e44\u0e27\u0e49\u0e17\u0e49\u0e32\u0e22 \u0e41\u0e25\u0e49\u0e27\u0e43\u0e2b\u0e49\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23 R\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1338411380,"id_str":"1338411380","name":"\u0e04\u0e32\u0e22\u0e34\u0e21\u0e42\u0e0b\u0e04\u0e34\u0e49\u0e27\u0e17\u0e36\u273f","screen_name":"Kyimndz","location":"BKK\u2022Thailand","url":null,"description":"Support; Exo A-pink Winner Exid JungJaewon\u2661|Matthayomfive 16 years old\u2661| \u0e15\u0e32\u0e21\u0e34\u0e2b\u0e31\u0e27\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e07 | \u0e2b\u0e25\u0e07\u0e44\u0e2b\u0e25\u0e44\u0e14\u0e49\u0e40\u0e2a\u0e35\u0e22\u0e43\u0e19\u0e15\u0e31\u0e27\u0e08\u0e2d\u0e07\u0e40\u0e40\u0e08\u0e27\u0e2d\u0e19|\u0e41\u0e1f\u0e19\u0e2d\u0e35\u0e2d\u0e49\u0e27\u0e19\u2665\u2665\u2665","protected":false,"verified":false,"followers_count":1007,"friends_count":299,"listed_count":0,"favourites_count":2369,"statuses_count":41133,"created_at":"Tue Apr 09 05:56:55 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432123890857291777\/QvqwJjeS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432123890857291777\/QvqwJjeS.jpeg","profile_background_tile":true,"profile_link_color":"F099B6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648369714310156288\/eBm1NTpJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648369714310156288\/eBm1NTpJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1338411380\/1440860938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:57 +0000 2015","id":663724459769991168,"id_str":"663724459769991168","text":"\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e17\u0e27\u0e34\u0e15\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01 #CallMeBaby \u0e2b\u0e49\u0e32\u0e21\u0e43\u0e2a\u0e48\u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e \u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e34\u0e42\u0e21\u0e2b\u0e23\u0e37\u0e2d\u0e2a\u0e31\u0e0d\u0e25\u0e31\u0e01\u0e29\u0e13\u0e4c\u0e43\u0e14\u0e46 \u0e41\u0e17\u0e47\u0e01\u0e2b\u0e49\u0e32\u0e21\u0e44\u0e27\u0e49\u0e17\u0e49\u0e32\u0e22 \u0e41\u0e25\u0e49\u0e27\u0e43\u0e2b\u0e49\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e01\u0e32\u0e23 RT \u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e49\u0e2d\u0e22\u0e2a\u0e34\u0e1a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":5,"entities":{"hashtags":[{"text":"CallMeBaby","indices":[19,30]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[105,114]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CallMeBaby","indices":[32,43]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[118,127]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068532408320,"id_str":"663728068532408320","text":"Check out Womens Sweater Size M Christopher & Banks Ugly Christmas Sweater #ChristopherBanks https:\/\/t.co\/kGS264hy82 via @eBay","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3247497918,"id_str":"3247497918","name":"Tanya Thurmes","screen_name":"TanyaTTreasures","location":null,"url":"http:\/\/www.ebay.com\/sch\/sah_mama_3\/m.html?_nkw=&_armrs=1&_ipg=&_from=","description":"Hello! I sell a variety of things on eBay. Kids, Women, and Men's clothing, baby\/kid toys, games, etc.","protected":false,"verified":false,"followers_count":158,"friends_count":296,"listed_count":3,"favourites_count":3,"statuses_count":413,"created_at":"Wed Jun 17 06:05:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611053206467014656\/7TYA8uUc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611053206467014656\/7TYA8uUc_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ChristopherBanks","indices":[79,96]}],"urls":[{"url":"https:\/\/t.co\/kGS264hy82","expanded_url":"http:\/\/www.ebay.com\/itm\/Womens-Sweater-Size-M-Christopher-Banks-Ugly-Christmas-Sweater-\/321914979736?roken=cUgayN&soutkn=MvGAuO","display_url":"ebay.com\/itm\/Womens-Swe\u2026","indices":[97,120]}],"user_mentions":[{"screen_name":"eBay","name":"eBay","id":19709040,"id_str":"19709040","indices":[125,130]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077666"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068519940096,"id_str":"663728068519940096","text":"New on ebay Sony PlayStation 4 (Latest Model)- 500 GB Black Console (X Box, Nintendo) https:\/\/t.co\/9hZV4Mt7le https:\/\/t.co\/Vt1vzykhV7","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2156652594,"id_str":"2156652594","name":"ps4ebay","screen_name":"ps4ebay","location":null,"url":null,"description":"New Playstation 4 on Ebay. PS4 on ebay best.","protected":false,"verified":false,"followers_count":77,"friends_count":9,"listed_count":7,"favourites_count":0,"statuses_count":215048,"created_at":"Sat Oct 26 11:17:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000649636365\/0d6af9e53655463a757dd75cebd78211_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000649636365\/0d6af9e53655463a757dd75cebd78211_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9hZV4Mt7le","expanded_url":"http:\/\/ift.tt\/1XZy9gk","display_url":"ift.tt\/1XZy9gk","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663728068398292992,"id_str":"663728068398292992","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKWBWIAAB96c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKWBWIAAB96c.jpg","url":"https:\/\/t.co\/Vt1vzykhV7","display_url":"pic.twitter.com\/Vt1vzykhV7","expanded_url":"http:\/\/twitter.com\/ps4ebay\/status\/663728068519940096\/photo\/1","type":"photo","sizes":{"thumb":{"w":140,"h":105,"resize":"crop"},"large":{"w":140,"h":105,"resize":"fit"},"small":{"w":140,"h":105,"resize":"fit"},"medium":{"w":140,"h":105,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728068398292992,"id_str":"663728068398292992","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKWBWIAAB96c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKWBWIAAB96c.jpg","url":"https:\/\/t.co\/Vt1vzykhV7","display_url":"pic.twitter.com\/Vt1vzykhV7","expanded_url":"http:\/\/twitter.com\/ps4ebay\/status\/663728068519940096\/photo\/1","type":"photo","sizes":{"thumb":{"w":140,"h":105,"resize":"crop"},"large":{"w":140,"h":105,"resize":"fit"},"small":{"w":140,"h":105,"resize":"fit"},"medium":{"w":140,"h":105,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077663"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068511559681,"id_str":"663728068511559681","text":"\u0641\u064a \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647 \u0641\u0642\u0637. ....\n\n\u0627\u062d\u062a\u064a\u0627\u0637 \u0628\u0646\u0627\u062f\u064a\u0647 \u0648\u0623\u0633\u0627\u0633\u064a \u0628\u0627\u0644\u0645\u0646\u062a\u062e\u0628 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":470420965,"id_str":"470420965","name":"\u0641\u0647\u062f \u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0627\u0644\u0634\u0627\u064a\u0639","screen_name":"fahd639_","location":null,"url":null,"description":"\u0627\u0644\u062d\u0645\u062f\u0644\u0644\u0647 \u0639\u0644\u0649 \u0645\u0627\u0642\u0636\u0649 \u0648\u0642\u062f\u0631","protected":false,"verified":false,"followers_count":374,"friends_count":281,"listed_count":0,"favourites_count":1,"statuses_count":2895,"created_at":"Sat Jan 21 18:58:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658330426902212609\/c6_YrKZC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658330426902212609\/c6_YrKZC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/470420965\/1445793196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080077661"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507365376,"id_str":"663728068507365376","text":"\u2763\u00d0 Rubber Bumper for Toyota Hilux Tamiya High Lift 1\/10 Axial RC4WD Mojave https:\/\/t.co\/agZNim1aQD https:\/\/t.co\/x0ihjDcZDa","source":"\u003ca href=\"http:\/\/www.tweet-eye.com\" rel=\"nofollow\"\u003eTweet-Eye Web Application\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1206641648,"id_str":"1206641648","name":"Driver4x4","screen_name":"Driver4x4","location":null,"url":null,"description":"Seller of 4 x 4 parts, love to follow the 4 x 4 enthusiasts on Twitter","protected":false,"verified":false,"followers_count":331,"friends_count":320,"listed_count":6,"favourites_count":0,"statuses_count":12915,"created_at":"Fri Feb 22 03:03:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3290135117\/4bae0c2e483d3b4e50d14a940aa2d7d9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3290135117\/4bae0c2e483d3b4e50d14a940aa2d7d9_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/agZNim1aQD","expanded_url":"http:\/\/ebay.to\/1HloMy1","display_url":"ebay.to\/1HloMy1","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663728066368270336,"id_str":"663728066368270336","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKOdWcAAJtmh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKOdWcAAJtmh.jpg","url":"https:\/\/t.co\/x0ihjDcZDa","display_url":"pic.twitter.com\/x0ihjDcZDa","expanded_url":"http:\/\/twitter.com\/Driver4x4\/status\/663728068507365376\/photo\/1","type":"photo","sizes":{"large":{"w":140,"h":93,"resize":"fit"},"medium":{"w":140,"h":93,"resize":"fit"},"thumb":{"w":140,"h":93,"resize":"crop"},"small":{"w":140,"h":93,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728066368270336,"id_str":"663728066368270336","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKOdWcAAJtmh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKOdWcAAJtmh.jpg","url":"https:\/\/t.co\/x0ihjDcZDa","display_url":"pic.twitter.com\/x0ihjDcZDa","expanded_url":"http:\/\/twitter.com\/Driver4x4\/status\/663728068507365376\/photo\/1","type":"photo","sizes":{"large":{"w":140,"h":93,"resize":"fit"},"medium":{"w":140,"h":93,"resize":"fit"},"thumb":{"w":140,"h":93,"resize":"crop"},"small":{"w":140,"h":93,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507234304,"id_str":"663728068507234304","text":"\u0625\u0639\u0644\u0627\u0646 \u062a\u0648\u0638\u064a\u0641 \u0627\u0644\u0645\u0624\u0633\u0633\u0629 \u0627\u0644\u0639\u0645\u0648\u0645\u064a\u0629 \u0644\u0644\u0635\u062d\u0629 \u0627\u0644\u062c\u0648\u0627\u0631\u064a\u0629 \u0628\u0631\u064a\u0627\u0646 \u0648\u0644\u0627\u064a\u0629 \u063a\u0631\u062f\u0627\u064a\u0629 09 \u0646\u0648\u0641\u0645\u0628\u0631 2015 https:\/\/t.co\/dBNWZS8sqc https:\/\/t.co\/iIq7C2pIfU","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4099590713,"id_str":"4099590713","name":"Emploiest-DZ","screen_name":"emploiest_dz","location":null,"url":"http:\/\/www.emploiest-dz.com","description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":57,"created_at":"Mon Nov 02 20:11:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661275611780878336\/IYPdmvHU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661275611780878336\/IYPdmvHU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4099590713\/1446495522","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dBNWZS8sqc","expanded_url":"http:\/\/dlvr.it\/ChfjFf","display_url":"dlvr.it\/ChfjFf","indices":[78,101]}],"user_mentions":[],"symbols":[],"media":[{"id":663728067915853825,"id_str":"663728067915853825","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKUOUsAEEigM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKUOUsAEEigM.jpg","url":"https:\/\/t.co\/iIq7C2pIfU","display_url":"pic.twitter.com\/iIq7C2pIfU","expanded_url":"http:\/\/twitter.com\/emploiest_dz\/status\/663728068507234304\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":220,"resize":"fit"},"small":{"w":320,"h":220,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728067915853825,"id_str":"663728067915853825","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKUOUsAEEigM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKUOUsAEEigM.jpg","url":"https:\/\/t.co\/iIq7C2pIfU","display_url":"pic.twitter.com\/iIq7C2pIfU","expanded_url":"http:\/\/twitter.com\/emploiest_dz\/status\/663728068507234304\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":220,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":320,"h":220,"resize":"fit"},"small":{"w":320,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080077660"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494802944,"id_str":"663728068494802944","text":"I'm at Sacol\u00e3o Ibiapaba in Granja, CE https:\/\/t.co\/OauUmSUdRu","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226738683,"id_str":"226738683","name":"Eli Silva","screen_name":"elizeudasiilva","location":"Brasil","url":"https:\/\/www.facebook.com\/ElizeudaSiilva","description":"Desligue sua humanidade.","protected":false,"verified":false,"followers_count":73,"friends_count":21,"listed_count":7,"favourites_count":148,"statuses_count":23583,"created_at":"Tue Dec 14 23:21:50 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"A020F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/547998973\/0_patinhas.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/547998973\/0_patinhas.png","profile_background_tile":true,"profile_link_color":"FF1493","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"0F0906","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648628194602565632\/AKCoyirT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648628194602565632\/AKCoyirT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226738683\/1433205471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-3.11979615,-40.82838656]},"coordinates":{"type":"Point","coordinates":[-40.82838656,-3.11979615]},"place":{"id":"d145280b5a596f6e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d145280b5a596f6e.json","place_type":"city","name":"Granja","full_name":"Granja, Cear\u00e1","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-41.400475,-3.522823],[-41.400475,-3.009296],[-40.494799,-3.009296],[-40.494799,-3.522823]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OauUmSUdRu","expanded_url":"https:\/\/www.swarmapp.com\/c\/9EmDmP5ByKq","display_url":"swarmapp.com\/c\/9EmDmP5ByKq","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068519964672,"id_str":"663728068519964672","text":"Pero hay un problema muchisimo mas grande... https:\/\/t.co\/VL1ukBBFIw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1873025180,"id_str":"1873025180","name":"Gabriel Felipe","screen_name":"StGabrielR","location":null,"url":"https:\/\/www.facebook.com\/gabriel.rt98","description":"Wa: 3013554967\nSnapchat: gabrielrt20\nSiempre hay una persona que te hace sentir especial... \ufe0f","protected":false,"verified":false,"followers_count":629,"friends_count":639,"listed_count":6,"favourites_count":2073,"statuses_count":3821,"created_at":"Mon Sep 16 21:03:43 +0000 2013","utc_offset":-18000,"time_zone":"America\/Bogota","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537323353808203777\/LGyQ1HyP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537323353808203777\/LGyQ1HyP.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660303193331638273\/f5_6CE7b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660303193331638273\/f5_6CE7b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1873025180\/1446427254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728026593730560,"id_str":"663728026593730560","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJH6SXIAA4pji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJH6SXIAA4pji.jpg","url":"https:\/\/t.co\/VL1ukBBFIw","display_url":"pic.twitter.com\/VL1ukBBFIw","expanded_url":"http:\/\/twitter.com\/StGabrielR\/status\/663728068519964672\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":645,"resize":"fit"},"medium":{"w":480,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":456,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728026593730560,"id_str":"663728026593730560","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJH6SXIAA4pji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJH6SXIAA4pji.jpg","url":"https:\/\/t.co\/VL1ukBBFIw","display_url":"pic.twitter.com\/VL1ukBBFIw","expanded_url":"http:\/\/twitter.com\/StGabrielR\/status\/663728068519964672\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":645,"resize":"fit"},"medium":{"w":480,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":456,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080077663"} +{"delete":{"status":{"id":610448227440001024,"id_str":"610448227440001024","user_id":1919726198,"user_id_str":"1919726198"},"timestamp_ms":"1447080078056"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068494782464,"id_str":"663728068494782464","text":"Let's Make A Child's Life Brighter!! https:\/\/t.co\/LKIA735bOY #retweet #donate #toysfortots #NATIONALILOVEYOUDAY No\u2026 https:\/\/t.co\/32V225Izp5","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3906762134,"id_str":"3906762134","name":"Vidiout","screen_name":"VidiOut1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":1,"listed_count":60,"favourites_count":0,"statuses_count":36717,"created_at":"Thu Oct 15 21:22:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"retweet","indices":[61,69]},{"text":"donate","indices":[70,77]},{"text":"toysfortots","indices":[78,90]},{"text":"NATIONALILOVEYOUDAY","indices":[91,111]}],"urls":[{"url":"https:\/\/t.co\/LKIA735bOY","expanded_url":"http:\/\/ift.tt\/1QG1lVm","display_url":"ift.tt\/1QG1lVm","indices":[37,60]}],"user_mentions":[],"symbols":[],"media":[{"id":663728068301864960,"id_str":"663728068301864960","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKVqWwAAhpyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKVqWwAAhpyL.jpg","url":"https:\/\/t.co\/32V225Izp5","display_url":"pic.twitter.com\/32V225Izp5","expanded_url":"http:\/\/twitter.com\/VidiOut1\/status\/663728068494782464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728068301864960,"id_str":"663728068301864960","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKVqWwAAhpyL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKVqWwAAhpyL.jpg","url":"https:\/\/t.co\/32V225Izp5","display_url":"pic.twitter.com\/32V225Izp5","expanded_url":"http:\/\/twitter.com\/VidiOut1\/status\/663728068494782464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077657"} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068498956288,"id_str":"663728068498956288","text":"SALE 3 BOTTLES Omega 3 Fish Oil total 360 CT Burp Free Purity PRIORITY SHIPPING https:\/\/t.co\/8kDi6wDuIH https:\/\/t.co\/7KknZQCOiQ","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4043221276,"id_str":"4043221276","name":"Trina Descol","screen_name":"TDescol","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":40,"listed_count":2,"favourites_count":0,"statuses_count":4737,"created_at":"Mon Oct 26 02:27:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658470355418247168\/vEFdAJ-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658470355418247168\/vEFdAJ-2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8kDi6wDuIH","expanded_url":"http:\/\/dental-surgery-dds.info\/dntlsr\/grydds\/?query=231747363183","display_url":"dental-surgery-dds.info\/dntlsr\/grydds\/\u2026","indices":[80,103]}],"user_mentions":[],"symbols":[],"media":[{"id":663728068234715137,"id_str":"663728068234715137","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKVaWIAEP91a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKVaWIAEP91a.jpg","url":"https:\/\/t.co\/7KknZQCOiQ","display_url":"pic.twitter.com\/7KknZQCOiQ","expanded_url":"http:\/\/twitter.com\/TDescol\/status\/663728068498956288\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728068234715137,"id_str":"663728068234715137","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKVaWIAEP91a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKVaWIAEP91a.jpg","url":"https:\/\/t.co\/7KknZQCOiQ","display_url":"pic.twitter.com\/7KknZQCOiQ","expanded_url":"http:\/\/twitter.com\/TDescol\/status\/663728068498956288\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":1000,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080077658"} +{"delete":{"status":{"id":663688449120145408,"id_str":"663688449120145408","user_id":1125174806,"user_id_str":"1125174806"},"timestamp_ms":"1447080078144"}} +{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728068507205632,"id_str":"663728068507205632","text":"RT @StarCinema: \u2018Pangako Sa \u2018Yo\u2019 quote of the day: \u2018Yang sampal na \u2018yan kagaya ng utang mo, pang-international\u2019 READ HERE: https:\/\/t.co\/nBL\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2579739126,"id_str":"2579739126","name":"ANA-CHAN","screen_name":"AnaaHime_","location":null,"url":"http:\/\/instagram.com\/imanamadith","description":"Solid KathNiel || Fairy Tail and Anime \u2764 || Future RPh","protected":false,"verified":false,"followers_count":294,"friends_count":398,"listed_count":4,"favourites_count":2817,"statuses_count":5588,"created_at":"Sat Jun 21 03:50:06 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/505681593931792384\/4fX2NYMK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/505681593931792384\/4fX2NYMK.jpeg","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658252274418888704\/KLyhhSQQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658252274418888704\/KLyhhSQQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579739126\/1444469955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727918099652609,"id_str":"663727918099652609","text":"\u2018Pangako Sa \u2018Yo\u2019 quote of the day: \u2018Yang sampal na \u2018yan kagaya ng utang mo, pang-international\u2019 READ HERE: https:\/\/t.co\/nBLCB6i6vh","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39956328,"id_str":"39956328","name":"Star Cinema","screen_name":"StarCinema","location":"Philippines","url":"http:\/\/starcinema.com.ph","description":"This is the OFFICIAL Twitter account of Star Cinema! Snapchat & Periscope: StarCinema\nVisit us on:\n http:\/\/t.co\/Wkpk7IkLw2 http:\/\/t.co\/ZlB49eq9wy","protected":false,"verified":true,"followers_count":747513,"friends_count":610,"listed_count":581,"favourites_count":644,"statuses_count":112892,"created_at":"Thu May 14 08:37:24 +0000 2009","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448692413515575296\/P2IOAIek.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448692413515575296\/P2IOAIek.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561095439189954560\/XYvOqX3Q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561095439189954560\/XYvOqX3Q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39956328\/1446001384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nBLCB6i6vh","expanded_url":"http:\/\/ow.ly\/UoWOL","display_url":"ow.ly\/UoWOL","indices":[107,130]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nBLCB6i6vh","expanded_url":"http:\/\/ow.ly\/UoWOL","display_url":"ow.ly\/UoWOL","indices":[123,140]}],"user_mentions":[{"screen_name":"StarCinema","name":"Star Cinema","id":39956328,"id_str":"39956328","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080077660"} +{"delete":{"status":{"id":654854565410533376,"id_str":"654854565410533376","user_id":553132997,"user_id_str":"553132997"},"timestamp_ms":"1447080078224"}} +{"delete":{"status":{"id":661053079844990976,"id_str":"661053079844990976","user_id":2969405917,"user_id_str":"2969405917"},"timestamp_ms":"1447080078558"}} +{"delete":{"status":{"id":644449231214776324,"id_str":"644449231214776324","user_id":3190869049,"user_id_str":"3190869049"},"timestamp_ms":"1447080078522"}} +{"delete":{"status":{"id":660767300912451584,"id_str":"660767300912451584","user_id":2645520649,"user_id_str":"2645520649"},"timestamp_ms":"1447080078560"}} +{"delete":{"status":{"id":661053843199778817,"id_str":"661053843199778817","user_id":117846622,"user_id_str":"117846622"},"timestamp_ms":"1447080078606"}} +{"delete":{"status":{"id":660780684965888000,"id_str":"660780684965888000","user_id":1150813243,"user_id_str":"1150813243"},"timestamp_ms":"1447080078675"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072701689856,"id_str":"663728072701689856","text":"RT @TheFunnyVine: When Adele says Hello \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/jkTXseaQY0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1134627840,"id_str":"1134627840","name":"NOA SHAMIR","screen_name":"ShamirNoa","location":" holon \u2022 israel","url":null,"description":null,"protected":false,"verified":false,"followers_count":314,"friends_count":406,"listed_count":0,"favourites_count":15197,"statuses_count":18187,"created_at":"Wed Jan 30 17:06:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"he","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607235444393123840\/fhONUlUP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607235444393123840\/fhONUlUP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134627840\/1380113780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 16:45:45 +0000 2015","id":661947453361561600,"id_str":"661947453361561600","text":"When Adele says Hello \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/jkTXseaQY0","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":498177610,"id_str":"498177610","name":"Best Vines","screen_name":"TheFunnyVine","location":null,"url":null,"description":"We post all the best Vines. Not Affiliated With Vine! Facebook: http:\/\/ow.ly\/3xTCzD Instagram: http:\/\/ow.ly\/3y78qi Contact: thefunnyvine@gmail.com","protected":false,"verified":false,"followers_count":1134735,"friends_count":12,"listed_count":1054,"favourites_count":1,"statuses_count":6754,"created_at":"Mon Feb 20 19:31:53 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/863599808\/8409a6c3f97da1e08d2c670b2e83331f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/863599808\/8409a6c3f97da1e08d2c670b2e83331f.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597184401873772544\/lc28AVX7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597184401873772544\/lc28AVX7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/498177610\/1431213460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21296,"favorite_count":20810,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jkTXseaQY0","expanded_url":"https:\/\/vine.co\/v\/eLzWh1tbnP6","display_url":"vine.co\/v\/eLzWh1tbnP6","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jkTXseaQY0","expanded_url":"https:\/\/vine.co\/v\/eLzWh1tbnP6","display_url":"vine.co\/v\/eLzWh1tbnP6","indices":[43,66]}],"user_mentions":[{"screen_name":"TheFunnyVine","name":"Best Vines","id":498177610,"id_str":"498177610","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078660"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072718462976,"id_str":"663728072718462976","text":"Preciso de pernas novas, algu\u00e9m?!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571890475,"id_str":"571890475","name":"J\u00fa","screen_name":"JuhSouza__","location":"Bigua\u00e7u, Santa Catarina","url":null,"description":"Insta: Juusouzaaa \u2022 Snap: Julianasouzaaa \u2022 21 \u262e \u0ad0","protected":false,"verified":false,"followers_count":193,"friends_count":155,"listed_count":0,"favourites_count":505,"statuses_count":7664,"created_at":"Sat May 05 16:34:27 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"FF6699","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661613873565474816\/TicACfq9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661613873565474816\/TicACfq9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571890475\/1443018590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6403b7e96cc202f9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6403b7e96cc202f9.json","place_type":"city","name":"S\u00e3o Jos\u00e9","full_name":"S\u00e3o Jos\u00e9, Santa Catarina","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-48.745985,-27.641831],[-48.745985,-27.523263],[-48.599447,-27.523263],[-48.599447,-27.641831]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080078664"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072689061888,"id_str":"663728072689061888","text":"Mang bii @bismakarisma","source":"\u003ca href=\"http:\/\/www.writelonger.com\" rel=\"nofollow\"\u003eWrite Longer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2690990391,"id_str":"2690990391","name":"My Life For Scout","screen_name":"MonicaEsa1","location":"Rangkasbitung , INDONESIA","url":null,"description":"Sri Mia Mei Monika | SMAN 1 Muncang | Penegak BANTARA | follback ? mention aja","protected":false,"verified":false,"followers_count":640,"friends_count":506,"listed_count":0,"favourites_count":7,"statuses_count":2193,"created_at":"Wed Jul 09 12:45:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662249654424363008\/BIBgPDZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662249654424363008\/BIBgPDZH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bismakarisma","name":"BISMA KARISMA \u262e","id":28601729,"id_str":"28601729","indices":[9,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080078657"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693325824,"id_str":"663728072693325824","text":"#AlSomaCon40 @los40colombia @Roberto_Cardona @MILENA_MORALES @MisterMarin1111 @marchenajr quiero boletas por fa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":139977683,"id_str":"139977683","name":"David F Rodriguez","screen_name":"DFRODRIGUEZ248","location":"COLOMBIA","url":null,"description":"Mi mundo mi vida mi todo eres tu sofia. TE AMO HIJA:)","protected":false,"verified":false,"followers_count":52,"friends_count":492,"listed_count":0,"favourites_count":143,"statuses_count":994,"created_at":"Tue May 04 06:16:59 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/397509659\/MILKA....jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/397509659\/MILKA....jpg","profile_background_tile":false,"profile_link_color":"0F28CF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502219490533191680\/81jiZrYS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502219490533191680\/81jiZrYS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/139977683\/1357834508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AlSomaCon40","indices":[0,12]}],"urls":[],"user_mentions":[{"screen_name":"los40colombia","name":"Los 40 Colombia","id":52848989,"id_str":"52848989","indices":[13,27]},{"screen_name":"Roberto_Cardona","name":"Roberto Cardona","id":169065561,"id_str":"169065561","indices":[29,45]},{"screen_name":"MILENA_MORALES","name":"Milena Morales","id":246986569,"id_str":"246986569","indices":[46,61]},{"screen_name":"MisterMarin1111","name":"Carlos Marin","id":35995585,"id_str":"35995585","indices":[62,78]},{"screen_name":"marchenajr","name":"Marchena","id":24793170,"id_str":"24793170","indices":[79,90]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693256192,"id_str":"663728072693256192","text":"Igual me da lo mismo JAJAJA :D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2961120017,"id_str":"2961120017","name":"Agust\u00edn *-*","screen_name":"AgustinOlveira2","location":"Bs as ","url":null,"description":"CABJ\u2661 idolos: Riquelme \/ Palermo \/ Boxeo \u2665 Wpp:15 3094-7965 *impossible is nothing* http:\/\/facebook.com\/agustin.olveir\u2026","protected":false,"verified":false,"followers_count":5548,"friends_count":4711,"listed_count":5,"favourites_count":1721,"statuses_count":2657,"created_at":"Sun Jan 04 23:11:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585566769718267904\/OlDhv5j6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585566769718267904\/OlDhv5j6.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660231098983710720\/q5RK4cEF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660231098983710720\/q5RK4cEF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2961120017\/1444702694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00dde8db67eebcf8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00dde8db67eebcf8.json","place_type":"city","name":"Resistencia","full_name":"Resistencia, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-59.059307,-27.505327],[-59.059307,-27.400316],[-58.909969,-27.400316],[-58.909969,-27.505327]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693149701,"id_str":"663728072693149701","text":"\u53cd\u5fdc\u3057\u3066\u4e0b\u3055\u3063\u305f\u65b9\u3001\u62e1\u6563\u3057\u3066\u4e0b\u3055\u3063\u305f\u65b9\u672c\u5f53\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\u3061\u3087\u3063\u3068\u304a\u5f85\u3061\u3092\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2576989590,"id_str":"2576989590","name":"\u5730\u7344\u7687\u5e1d \u3048\u304b","screen_name":"ekatoidol","location":"\u611b\u77e5\u3068\u4e09\u91cd\u3002\u30c4\u30a4\u30d7\u30ed\u3054\u4e00\u8aad\u4e0b\u3055\u3044\u3002","url":"http:\/\/twpf.jp\/ekatoidol","description":"\u521d\u3081\u307e\u3057\u3066\uff01\u4eba\u3005\u306e\u30c0\u30fc\u30af\u306a\u611f\u60c5\u304c\u96c6\u307e\u308b\u30c0\u30fc\u30af\u30cd\u30b9\u5e1d\u56fd\u3067\u7687\u5e1d\u3092\u3057\u3066\u3044\u308b\u3048\u304b\u3061\u3083\u3093\u306e\u30de\u30cd\u30fc\u30b8\u30e3\u30fc\u3001\u3048\u304b\u3055\u3093\u3067\u3059\uff01\u30d7\u30ea\u30d1\u30e9\u517c\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u57a2\u3067\u7169\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u306a\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u3054\u6ce8\u610f\u4e0b\u3055\u3044(\u00b4;\u03c9;`) \u30d7\u30ea\u30d1\u30e9\/\u30a2\u30cb\u30e1\/\u30a2\u30a4\u30c9\u30eb \u304c\u597d\u304d\u3067\u3059\u2661 TOP\u753b (@pripara_code)\u69d8","protected":false,"verified":false,"followers_count":2111,"friends_count":2033,"listed_count":73,"favourites_count":5552,"statuses_count":21931,"created_at":"Thu Jun 19 14:56:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659573715068260352\/ChCrnm-p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659573715068260352\/ChCrnm-p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2576989590\/1419131550","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072714272769,"id_str":"663728072714272769","text":"RT @SiPeroNo1: La misma prensa que no exige absolutamente nada a Rajoy por los asesinatos de mujeres se habr\u00eda levantado en armas si sucede\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1276211059,"id_str":"1276211059","name":"Im-Pulso","screen_name":"fsoriag","location":null,"url":"http:\/\/im-pulso.blogspot.com.es","description":"Incursiones en el \u00e1mbito de la informaci\u00f3n (o desinformaci\u00f3n) y de la comunicaci\u00f3n del Estado de Derecha espa\u00f1ol.","protected":false,"verified":false,"followers_count":774,"friends_count":141,"listed_count":58,"favourites_count":6671,"statuses_count":29729,"created_at":"Sun Mar 17 22:49:34 +0000 2013","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"78D7DE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459288036451168256\/J6tdTliJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459288036451168256\/J6tdTliJ.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2C5D1","profile_text_color":"D4443F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459198010010763266\/aw_aXVH7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459198010010763266\/aw_aXVH7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276211059\/1430325482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:29 +0000 2015","id":663724596995166208,"id_str":"663724596995166208","text":"La misma prensa que no exige absolutamente nada a Rajoy por los asesinatos de mujeres se habr\u00eda levantado en armas si sucede con Zapatero","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":311867885,"id_str":"311867885","name":"Eterno Primavera","screen_name":"SiPeroNo1","location":"En Babia, y a veces en la luna","url":null,"description":"No hablo de la realidad espa\u00f1ola sino de un pa\u00eds imaginario donde unos partidos y la Iglesia roban 60.000 millones en las Cajas de Ahorro y nadie va a la c\u00e1rcel","protected":false,"verified":false,"followers_count":31401,"friends_count":1885,"listed_count":462,"favourites_count":83,"statuses_count":119104,"created_at":"Mon Jun 06 06:02:26 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1383905379\/ds__MG_3627_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1383905379\/ds__MG_3627_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SiPeroNo1","name":"Eterno Primavera","id":311867885,"id_str":"311867885","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080078663"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072688975872,"id_str":"663728072688975872","text":"\u0e19\u0e31\u0e48\u0e07\u0e14\u0e39\u0e2b\u0e19\u0e31\u0e07 \u0e19\u0e35\u0e48\u0e01\u0e47\u0e40\u0e14\u0e34\u0e19\u0e44\u0e1b\u0e40\u0e1b\u0e34\u0e14\u0e15\u0e39\u0e49\u0e40\u0e22\u0e47\u0e19 \u0e41\u0e1b\u0e1b\u0e46\u0e01\u0e47\u0e44\u0e1b\u0e2b\u0e22\u0e34\u0e1a\u0e02\u0e19\u0e21\u0e01\u0e34\u0e19\u0e40\u0e25\u0e48\u0e19 \u0e40\u0e04\u0e35\u0e49\u0e22\u0e27\u0e41\u0e21\u0e48\u0e07\u0e15\u0e25\u0e2d\u0e14\u0e2d\u0e30\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e44\u0e14\u0e495555 \u0e08\u0e19\u0e19\u0e32\u0e07\u0e1e\u0e39\u0e14\u0e27\u0e48\u0e32 \u0e19\u0e35\u0e48\u0e41\u0e01 \u0e0a\u0e31\u0e49\u0e19\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e27\u0e48\u0e32\u0e41\u0e01\u0e01\u0e34\u0e19\u0e44\u0e21\u0e48\u0e2b\u0e22\u0e38\u0e14\u0e1b\u0e32\u0e01\u0e40\u0e25\u0e22\u0e19\u0e30 \ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105144947,"id_str":"105144947","name":"\u30b5\u30fc\u30a4","screen_name":"ZarSiine","location":"#Arts43, Silpakorn University","url":"http:\/\/Instagram.com\/ssinesne","description":"1991, Thailand","protected":false,"verified":false,"followers_count":124,"friends_count":90,"listed_count":2,"favourites_count":196,"statuses_count":13043,"created_at":"Fri Jan 15 13:54:51 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659261354486796288\/omnzWL-5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659261354486796288\/omnzWL-5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105144947\/1443919564","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080078657"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072710074369,"id_str":"663728072710074369","text":"Sorry voor spam @whytrygrande https:\/\/t.co\/BDrHbrBv5d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973587074,"id_str":"2973587074","name":"\u21b3 anouk","screen_name":"njhdancing","location":null,"url":null,"description":"#1 if i could fly stan !!","protected":false,"verified":false,"followers_count":160,"friends_count":184,"listed_count":4,"favourites_count":816,"statuses_count":2402,"created_at":"Sun Jan 11 19:10:35 +0000 2015","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693733754482688\/R0G6y8nF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693733754482688\/R0G6y8nF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973587074\/1447071892","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":660894878516297728,"quoted_status_id_str":"660894878516297728","quoted_status":{"created_at":"Sun Nov 01 19:03:12 +0000 2015","id":660894878516297728,"id_str":"660894878516297728","text":"Lola & Virginia https:\/\/t.co\/XFhVX7NcJQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053553827,"id_str":"4053553827","name":"rt ur fav cartoons","screen_name":"rtcartoon","location":"\u270c DMs closed, sorry x","url":null,"description":"Water, earth, fire, air - DM us your favourite cartoons & we'll post 'em! \u263c","protected":false,"verified":false,"followers_count":7197,"friends_count":71,"listed_count":6,"favourites_count":98,"statuses_count":271,"created_at":"Tue Oct 27 13:23:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663339444716597248\/Zjb9A0oh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663339444716597248\/Zjb9A0oh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4053553827\/1446987445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660894873818673152,"id_str":"660894873818673152","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CSv4YtvWsAAK-eq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSv4YtvWsAAK-eq.jpg","url":"https:\/\/t.co\/XFhVX7NcJQ","display_url":"pic.twitter.com\/XFhVX7NcJQ","expanded_url":"http:\/\/twitter.com\/rtcartoon\/status\/660894878516297728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660894873818673152,"id_str":"660894873818673152","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CSv4YtvWsAAK-eq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSv4YtvWsAAK-eq.jpg","url":"https:\/\/t.co\/XFhVX7NcJQ","display_url":"pic.twitter.com\/XFhVX7NcJQ","expanded_url":"http:\/\/twitter.com\/rtcartoon\/status\/660894878516297728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":660894877161517056,"id_str":"660894877161517056","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CSv4Y6MWcAAgBPJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSv4Y6MWcAAgBPJ.jpg","url":"https:\/\/t.co\/XFhVX7NcJQ","display_url":"pic.twitter.com\/XFhVX7NcJQ","expanded_url":"http:\/\/twitter.com\/rtcartoon\/status\/660894878516297728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"large":{"w":620,"h":355,"resize":"fit"},"medium":{"w":600,"h":343,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":660894871079788548,"id_str":"660894871079788548","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CSv4YjiWoAQLpaz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSv4YjiWoAQLpaz.jpg","url":"https:\/\/t.co\/XFhVX7NcJQ","display_url":"pic.twitter.com\/XFhVX7NcJQ","expanded_url":"http:\/\/twitter.com\/rtcartoon\/status\/660894878516297728\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":136,"resize":"crop"},"small":{"w":340,"h":124,"resize":"fit"},"large":{"w":370,"h":136,"resize":"fit"},"medium":{"w":370,"h":136,"resize":"fit"}}},{"id":660894871151054848,"id_str":"660894871151054848","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CSv4YjzWEAAfx--.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSv4YjzWEAAfx--.jpg","url":"https:\/\/t.co\/XFhVX7NcJQ","display_url":"pic.twitter.com\/XFhVX7NcJQ","expanded_url":"http:\/\/twitter.com\/rtcartoon\/status\/660894878516297728\/photo\/1","type":"photo","sizes":{"medium":{"w":259,"h":194,"resize":"fit"},"small":{"w":259,"h":194,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":259,"h":194,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BDrHbrBv5d","expanded_url":"https:\/\/twitter.com\/rtcartoon\/status\/660894878516297728","display_url":"twitter.com\/rtcartoon\/stat\u2026","indices":[31,54]}],"user_mentions":[{"screen_name":"whytrygrande","name":"isa","id":1231018440,"id_str":"1231018440","indices":[16,29]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072701509632,"id_str":"663728072701509632","text":"\u0646\u062d\u0646 \u0642\u062f\u0631\u0646\u0627 \u0628\u064a\u0646\u0643\u0645 \u0627\u0644\u0645\u0648\u062a \u0648\u0645\u0627 \u0646\u062d\u0646 \u0628\u0645\u0633\u0628\u0648\u0642\u064a\u0646 \ufd3f\u0666\u0660\ufd3e\u0639\u0644\u0649 \u0623\u0646 \u0646\u0628\u062f\u0644 \u0623\u0645\u062b\u0627\u0644\u0643\u0645 \u0648\u0646\u0646\u0634\u0626\u0643\u0645 \u0641\u064a \u0645\u0627 \u0644\u0627 \u062a\u0639\u0644\u0645\u0648\u0646 \ufd3f\u0666\u0661\ufd3e\u00a0 -- \u0633\u0648\u0631\u0629\u00a0\u0627\u0644\u0648\u0627\u0642\u0639\u0629 #Quran","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1416092078,"id_str":"1416092078","name":"\u0635\u0627\u062f\u0642 \u0627\u0644\u062d\u0630\u064a\u0641\u064a","screen_name":"sadq111","location":null,"url":null,"description":"\u064a\u0627 \u0631\u0628 \u0648\u0641\u0642\u0646\u0627 \u0644\u0637\u0627\u0639\u062a\u0643.. \u0648\u0644\u0627 \u062a\u064f\u0634\u0642\u0650\u0646\u0627 \u0628\u0645\u0639\u0635\u064a\u062a\u0643","protected":false,"verified":false,"followers_count":378,"friends_count":450,"listed_count":0,"favourites_count":85,"statuses_count":20276,"created_at":"Thu May 09 17:47:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556106384677158915\/sbl0fa6U_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556106384677158915\/sbl0fa6U_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1416092078\/1411265031","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Quran","indices":[109,115]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080078660"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072709947392,"id_str":"663728072709947392","text":"RT @Jozy_Preach: #CowboysNation https:\/\/t.co\/Num6VVNarN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125465819,"id_str":"125465819","name":"turkey gen","screen_name":"genesismiranda_","location":"#FreePalestine","url":"http:\/\/berniesanders.com","description":"Professional Film Watcher #FeelTheBern #BlackLivesMatter HOUSTON ROCKETS","protected":false,"verified":false,"followers_count":506,"friends_count":294,"listed_count":4,"favourites_count":9128,"statuses_count":28768,"created_at":"Mon Mar 22 22:38:12 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654430123601592321\/RnM4PqWp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654430123601592321\/RnM4PqWp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125465819\/1446939190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:00:58 +0000 2015","id":663582025350123520,"id_str":"663582025350123520","text":"#CowboysNation https:\/\/t.co\/Num6VVNarN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2279972041,"id_str":"2279972041","name":"Jozy P","screen_name":"Jozy_Preach","location":"SW Houston, TX ","url":"https:\/\/itun.es\/us\/ioog-","description":"Sports and Rap debater. Relationship advisor. Activist for monitories. Antagonist to your life story. A lover, yet a fighter! #BullsOnParade","protected":false,"verified":false,"followers_count":255,"friends_count":241,"listed_count":2,"favourites_count":3839,"statuses_count":29164,"created_at":"Tue Jan 07 03:47:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663149594646179840\/l_IZ6Szf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663149594646179840\/l_IZ6Szf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2279972041\/1434765935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"CowboysNation","indices":[0,14]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663582020660957185,"id_str":"663582020660957185","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","url":"https:\/\/t.co\/Num6VVNarN","display_url":"pic.twitter.com\/Num6VVNarN","expanded_url":"http:\/\/twitter.com\/Jozy_Preach\/status\/663582025350123520\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":490,"resize":"fit"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663582020660957185,"id_str":"663582020660957185","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","url":"https:\/\/t.co\/Num6VVNarN","display_url":"pic.twitter.com\/Num6VVNarN","expanded_url":"http:\/\/twitter.com\/Jozy_Preach\/status\/663582025350123520\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":490,"resize":"fit"},"small":{"w":340,"h":162,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CowboysNation","indices":[17,31]}],"urls":[],"user_mentions":[{"screen_name":"Jozy_Preach","name":"Jozy P","id":2279972041,"id_str":"2279972041","indices":[3,15]}],"symbols":[],"media":[{"id":663582020660957185,"id_str":"663582020660957185","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","url":"https:\/\/t.co\/Num6VVNarN","display_url":"pic.twitter.com\/Num6VVNarN","expanded_url":"http:\/\/twitter.com\/Jozy_Preach\/status\/663582025350123520\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":490,"resize":"fit"},"small":{"w":340,"h":162,"resize":"fit"}},"source_status_id":663582025350123520,"source_status_id_str":"663582025350123520","source_user_id":2279972041,"source_user_id_str":"2279972041"}]},"extended_entities":{"media":[{"id":663582020660957185,"id_str":"663582020660957185","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVPzVEAEDhL4.jpg","url":"https:\/\/t.co\/Num6VVNarN","display_url":"pic.twitter.com\/Num6VVNarN","expanded_url":"http:\/\/twitter.com\/Jozy_Preach\/status\/663582025350123520\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":287,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":490,"resize":"fit"},"small":{"w":340,"h":162,"resize":"fit"}},"source_status_id":663582025350123520,"source_status_id_str":"663582025350123520","source_user_id":2279972041,"source_user_id_str":"2279972041"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705753090,"id_str":"663728072705753090","text":"\u0627\u0644\u0644\u0647 \u0627\u0644\u0630\u064a \u062e\u0644\u0642 \u0633\u0628\u0639 \u0633\u0645\u0627\u0648\u0627\u062a \u0648\u0645\u0646 \u0627\u0644\u0623\u0631\u0636 \u0645\u062b\u0644\u0647\u0646 \u064a\u062a\u0646\u0632\u0644 \u0627\u0644\u0623\u0645\u0631 \u0628\u064a\u0646\u0647\u0646 \u0644\u062a\u0639\u0644\u0645\u0648\u0627 \u0623\u0646 \u0627\u0644\u0644\u0647 \u0639\u0644\u0649 \u0643\u0644 \u0634\u064a\u0621 \u0642\u062f\u064a\u0631 \u0648\u0623\u0646 \u0627\u0644\u0644\u0647 \u0642\u062f \u0623\u062d\u0627\u0637 \u0628\u0643\u0644 \u0634\u064a\u0621 \u0639\u0644\u0645\u0627 \ufd3f\u0661\u0662\ufd3e -- \u0633\u0648\u0631\u0629 \u0627\u0644\u0637\u0644\u0627\u0642","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":234511972,"id_str":"234511972","name":"\u062d\u0645\u062f \u0627\u0644\u0639\u062a\u064a\u0628\u064a","screen_name":"AlotaibiHmd","location":"UK | Kuwait ","url":null,"description":null,"protected":false,"verified":false,"followers_count":3025,"friends_count":212,"listed_count":3,"favourites_count":392,"statuses_count":22873,"created_at":"Wed Jan 05 21:02:16 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661348711566548992\/TD9qpoYh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661348711566548992\/TD9qpoYh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/234511972\/1437941007","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080078661"} +{"delete":{"status":{"id":663725862295085056,"id_str":"663725862295085056","user_id":864929983,"user_id_str":"864929983"},"timestamp_ms":"1447080078769"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072714227712,"id_str":"663728072714227712","text":"\u0628\u0633\u0645 \u0627\u0644\u0644\u0647\n \u0627\u0644\u0630\u064a \u0644\u0627 \u064a\u0636\u0631\u064f\u0651\n \u0645\u0639 \u0627\u0633\u0645\u0647 \u0634\u064a\u0621\n \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \n\u0648\u0644\u0627 \u0641\u064a \u0627\u0644\u0633\u0645\u0627\u0621 \n\u0648\u0647\u0648 \u0627\u0644\u0633\u0645\u064a\u0639 \u0627\u0644\u0639\u0644\u064a\u0645\n\n( \u062b\u0644\u0627\u062b \u0645\u0631\u0627\u062a )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2618671033,"id_str":"2618671033","name":"wleed2016","screen_name":"wleed12111","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1974,"friends_count":2668,"listed_count":0,"favourites_count":131,"statuses_count":2718,"created_at":"Fri Jul 11 20:43:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650682548377550848\/nHyPxi3O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650682548377550848\/nHyPxi3O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2618671033\/1407453227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080078663"} +{"delete":{"status":{"id":660813736064626690,"id_str":"660813736064626690","user_id":3182716202,"user_id_str":"3182716202"},"timestamp_ms":"1447080078720"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705753091,"id_str":"663728072705753091","text":"@mochiko_chann \u6025\u306a\u767b\u5834\u3067\u3059\u307f\u307e\u305b\u3093w\n\n\u5bb9\u91cf\u306e\u554f\u984c\u3067\u30a2\u30d7\u30ea\u6d88\u3057\u3066\u3066\u6d6e\u4e0a\u3057\u3066\u306a\u304b\u3063\u305f\u3093\u3059\u3088w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727894191980544,"in_reply_to_status_id_str":"663727894191980544","in_reply_to_user_id":3159809538,"in_reply_to_user_id_str":"3159809538","in_reply_to_screen_name":"mochiko_chann","user":{"id":2623363184,"id_str":"2623363184","name":"\u30c1\u30e7\u30b3@nana\u6c11 \u6700\u8fd1\u4f4e\u6d6e\u4e0a\u6c17\u5473","screen_name":"tixyoko21","location":null,"url":null,"description":"\u30b9\u30af\u30d5\u30a7\u30b9\/\u30c7\u30ec\u30b9\u30c6\/\u30d0\u30c8\u30ac\u30fc\u30eb\/\u305d\u306e\u4ed6\u8af8\u3005\/\u30b9\u30af\u30d5\u30a7\u30b9\u30e9\u30f3\u30af150 \u30d5\u30ec\u30b3728434574 UR\u51db\u672a\u899a\u9192\u2026\u6ce3 \u30c7\u30ec\u30b9\u30c6PLV56 \u30d5\u30ec\u30b3178741039 \u862d\u5b50&\u536f\u6708SSR\u6240\u6301(\u9032\u5316\u5f8c\u89aa\u5bc6\u5ea6MAX) \u307e\u3060\u307e\u3060\u672a\u719f\u8005\u3067\u3059 \u30d5\u30ec\u7533\u8acb\u3057\u305f\u65b9\u306f\u3054\u5831\u544a\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":206,"friends_count":187,"listed_count":7,"favourites_count":1322,"statuses_count":2748,"created_at":"Sat Jul 12 11:13:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646704054601539585\/3bIWQu0y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646704054601539585\/3bIWQu0y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2623363184\/1443368166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mochiko_chann","name":"\u3082\u3061\u5b50\u306f\u81e8\u5730\u5b9f\u7fd2","id":3159809538,"id_str":"3159809538","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072714121220,"id_str":"663728072714121220","text":"@bkap_ \n\u95a2\u6771\u304b\u3041\u301c\uff08\uff1b\uff3f\uff1b\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727991449489408,"in_reply_to_status_id_str":"663727991449489408","in_reply_to_user_id":4165950919,"in_reply_to_user_id_str":"4165950919","in_reply_to_screen_name":"bkap_","user":{"id":4177756154,"id_str":"4177756154","name":"\u2765\u3074\u3088","screen_name":"a___y___piyo","location":"\u963f\u4fee\u60a0\u592a\u306e\u624b\u9996\u306b\u751f\u5b58\u3057\u3066\u307e\u3059(?)","url":"http:\/\/twpf.jp\/a___y___piyo","description":"\u7121\u81ea\u899a\u30a8\u30f3\u30b8\u30a7\u30eb\u8089\u98df\u3072\u3064\u3058\u306e\u2764\ufe0e\u963f\u4fee \u60a0\u592a\u2764\ufe0e \u304c\u5927\u597d\u304d\u3067\u3059\u2765 20\u261f \u56fa\u5b9a\u3055\u3093\u52df\u96c6\u4e2d\u3067\u3059!","protected":false,"verified":false,"followers_count":5,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":51,"created_at":"Mon Nov 09 09:26:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663649258789191680\/Ea1BJGCt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663649258789191680\/Ea1BJGCt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4177756154\/1447066557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bkap_","name":"\u2654 \u3082\u304b \u2654","id":4165950919,"id_str":"4165950919","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078663"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693121026,"id_str":"663728072693121026","text":"RT @amirhamdani_: 'Sis, sis dgn bf tak pernah gaduh ke?'\n'Tak pernah pun dear'\n'Omg bagusnya! Apa rahsia?'\n'Rahsianya sis takda bf \ud83d\ude0c'\n\n\ud83d\ude02\ud83d\ude02\ud83d\ude02\n\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":397386380,"id_str":"397386380","name":"AJ","screen_name":"syakirahwho","location":"IG : syakirahwho","url":null,"description":null,"protected":false,"verified":false,"followers_count":729,"friends_count":606,"listed_count":1,"favourites_count":1291,"statuses_count":33662,"created_at":"Mon Oct 24 16:30:57 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577866823502143488\/W6B3VLul.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577866823502143488\/W6B3VLul.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622775939957547008\/e1tF5-Bx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622775939957547008\/e1tF5-Bx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397386380\/1386605007","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 11:46:03 +0000 2015","id":662234419520929792,"id_str":"662234419520929792","text":"'Sis, sis dgn bf tak pernah gaduh ke?'\n'Tak pernah pun dear'\n'Omg bagusnya! Apa rahsia?'\n'Rahsianya sis takda bf \ud83d\ude0c'\n\n\ud83d\ude02\ud83d\ude02\ud83d\ude02\n\nOKbye","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3868856304,"id_str":"3868856304","name":"Bro","screen_name":"amirhamdani_","location":"Worthing, England","url":null,"description":null,"protected":false,"verified":false,"followers_count":1571,"friends_count":3478,"listed_count":0,"favourites_count":266,"statuses_count":830,"created_at":"Mon Oct 12 11:16:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663387955206029312\/PYgHEWv8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663387955206029312\/PYgHEWv8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3868856304\/1446867463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2420,"favorite_count":922,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amirhamdani_","name":"Bro","id":3868856304,"id_str":"3868856304","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072722505728,"id_str":"663728072722505728","text":"RT @FindCoolJobs: Search for jobs by State. Click on the State of your choice to see the latest job openings https:\/\/t.co\/Ibb8lEU1TA https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244650563,"id_str":"3244650563","name":"Nicasio Booton","screen_name":"nanynaceqoke","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":111,"friends_count":857,"listed_count":8,"favourites_count":11349,"statuses_count":14387,"created_at":"Sun May 10 09:25:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643479843506532357\/-N9iHrV__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643479843506532357\/-N9iHrV__normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:11:19 +0000 2015","id":663660130525933568,"id_str":"663660130525933568","text":"Search for jobs by State. Click on the State of your choice to see the latest job openings https:\/\/t.co\/Ibb8lEU1TA https:\/\/t.co\/lNskHUxVoO","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214443987,"id_str":"3214443987","name":"Find Cool Jobs","screen_name":"FindCoolJobs","location":"Las Vegas, NV","url":"http:\/\/findcooljobs.com","description":"Find the latest Job listings posted on job banks, job search engine sites and job directories.","protected":false,"verified":false,"followers_count":100905,"friends_count":1321,"listed_count":13,"favourites_count":0,"statuses_count":1508,"created_at":"Mon Apr 27 18:15:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651567407702503424\/xvTPfZh4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651567407702503424\/xvTPfZh4_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1690,"favorite_count":987,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ibb8lEU1TA","expanded_url":"http:\/\/dld.bz\/dWf4g","display_url":"dld.bz\/dWf4g","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663660130022592512,"id_str":"663660130022592512","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","url":"https:\/\/t.co\/lNskHUxVoO","display_url":"pic.twitter.com\/lNskHUxVoO","expanded_url":"http:\/\/twitter.com\/FindCoolJobs\/status\/663660130525933568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":455,"h":175,"resize":"fit"},"small":{"w":340,"h":130,"resize":"fit"},"medium":{"w":455,"h":175,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663660130022592512,"id_str":"663660130022592512","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","url":"https:\/\/t.co\/lNskHUxVoO","display_url":"pic.twitter.com\/lNskHUxVoO","expanded_url":"http:\/\/twitter.com\/FindCoolJobs\/status\/663660130525933568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":455,"h":175,"resize":"fit"},"small":{"w":340,"h":130,"resize":"fit"},"medium":{"w":455,"h":175,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ibb8lEU1TA","expanded_url":"http:\/\/dld.bz\/dWf4g","display_url":"dld.bz\/dWf4g","indices":[109,132]}],"user_mentions":[{"screen_name":"FindCoolJobs","name":"Find Cool Jobs","id":3214443987,"id_str":"3214443987","indices":[3,16]}],"symbols":[],"media":[{"id":663660130022592512,"id_str":"663660130022592512","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","url":"https:\/\/t.co\/lNskHUxVoO","display_url":"pic.twitter.com\/lNskHUxVoO","expanded_url":"http:\/\/twitter.com\/FindCoolJobs\/status\/663660130525933568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":455,"h":175,"resize":"fit"},"small":{"w":340,"h":130,"resize":"fit"},"medium":{"w":455,"h":175,"resize":"fit"}},"source_status_id":663660130525933568,"source_status_id_str":"663660130525933568","source_user_id":3214443987,"source_user_id_str":"3214443987"}]},"extended_entities":{"media":[{"id":663660130022592512,"id_str":"663660130022592512","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLXz2WEAAHRqK.png","url":"https:\/\/t.co\/lNskHUxVoO","display_url":"pic.twitter.com\/lNskHUxVoO","expanded_url":"http:\/\/twitter.com\/FindCoolJobs\/status\/663660130525933568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":455,"h":175,"resize":"fit"},"small":{"w":340,"h":130,"resize":"fit"},"medium":{"w":455,"h":175,"resize":"fit"}},"source_status_id":663660130525933568,"source_status_id_str":"663660130525933568","source_user_id":3214443987,"source_user_id_str":"3214443987"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078665"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072701546496,"id_str":"663728072701546496","text":"Goals https:\/\/t.co\/CiFkIri2h0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201483630,"id_str":"201483630","name":"\u00ae","screen_name":"_msrooo","location":"Mza","url":null,"description":"never let a man treat you any less than Beyonc\u00e9","protected":false,"verified":false,"followers_count":1314,"friends_count":396,"listed_count":52,"favourites_count":846,"statuses_count":101470,"created_at":"Mon Oct 11 23:26:39 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/729526583\/b3f982a3f24163940d2fbeb4c26c996c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/729526583\/b3f982a3f24163940d2fbeb4c26c996c.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636126350215135232\/QGJO2NMY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636126350215135232\/QGJO2NMY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201483630\/1436146025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726851370651648,"quoted_status_id_str":"663726851370651648","quoted_status":{"created_at":"Mon Nov 09 14:36:27 +0000 2015","id":663726851370651648,"id_str":"663726851370651648","text":"I DONT GIVE A FUCK IF THEY WERE REAL SISTERS! https:\/\/t.co\/WWgLhNNJdA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":460233855,"id_str":"460233855","name":"BOOSIE BAEDAZZ\u262f","screen_name":"CoralWaySavage","location":"Bae Harbor Islands, FL","url":null,"description":"Just your neighborhood friendly dreaded baby daddy. #GentleSavage SPIRITUAL LEADER OF #SAVAGEHIVE hacked at 1M followers.","protected":false,"verified":false,"followers_count":804,"friends_count":562,"listed_count":8,"favourites_count":9275,"statuses_count":46826,"created_at":"Tue Jan 10 14:49:33 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663509764987555840\/-MDbXZVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663509764987555840\/-MDbXZVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460233855\/1441301452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726850909319168,"id_str":"663726850909319168","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIDehWsAAcUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIDehWsAAcUj-.jpg","url":"https:\/\/t.co\/WWgLhNNJdA","display_url":"pic.twitter.com\/WWgLhNNJdA","expanded_url":"http:\/\/twitter.com\/CoralWaySavage\/status\/663726851370651648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726850909319168,"id_str":"663726850909319168","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIDehWsAAcUj-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIDehWsAAcUj-.jpg","url":"https:\/\/t.co\/WWgLhNNJdA","display_url":"pic.twitter.com\/WWgLhNNJdA","expanded_url":"http:\/\/twitter.com\/CoralWaySavage\/status\/663726851370651648\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CiFkIri2h0","expanded_url":"https:\/\/twitter.com\/coralwaysavage\/status\/663726851370651648","display_url":"twitter.com\/coralwaysavage\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078660"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072688930816,"id_str":"663728072688930816","text":"A recent change in legislation bans online retailers limiting promotional activity by their merchants on other... https:\/\/t.co\/NFY25xAcGi","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1728594434,"id_str":"1728594434","name":"Bangladesh Press","screen_name":"bangladeshpress","location":"00-880-2-9340462 Dhaka,BD","url":"http:\/\/www.bangladeshpress.com","description":"Online News Portal","protected":false,"verified":false,"followers_count":1144,"friends_count":241,"listed_count":3,"favourites_count":0,"statuses_count":120983,"created_at":"Wed Sep 04 12:19:41 +0000 2013","utc_offset":21600,"time_zone":"Dhaka","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000067316660\/f02c3acf09fb9c65f39d398a6050e235.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000067316660\/f02c3acf09fb9c65f39d398a6050e235.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000410249401\/9fec4364b159880faec4cda57fd11d93_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000410249401\/9fec4364b159880faec4cda57fd11d93_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1728594434\/1378300136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NFY25xAcGi","expanded_url":"http:\/\/fb.me\/2rUiTyg8c","display_url":"fb.me\/2rUiTyg8c","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078657"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705753088,"id_str":"663728072705753088","text":"@Dacky1109 \u30ae\u30ea\u30ae\u30ea\u30bb\u30fc\u30d5!!\n\u304a\u8a95\u751f\u65e5\u304a\u3081\u3067\u3068\u3046(*^^*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1728553470,"in_reply_to_user_id_str":"1728553470","in_reply_to_screen_name":"Dacky1109","user":{"id":1688471532,"id_str":"1688471532","name":"\u307e\u3086\u3046","screen_name":"mmmmm5aaaaa51","location":"\u8863\u7b20","url":null,"description":"\u672a\u6765\u306f\u5fc5\u305a\u8f1d\u304f\u3002\u8a87\u308c\u308b\u4eba\u9593\u306b\u306a\u308b\u3002 \u5922\u306f\u5927\u304d\u304f\u3002 \u304a\u7b11\u3044\u5927\u597d\u304d\uff01","protected":false,"verified":false,"followers_count":379,"friends_count":188,"listed_count":0,"favourites_count":320,"statuses_count":622,"created_at":"Wed Aug 21 14:51:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655714085275697152\/f-HEc-zp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655714085275697152\/f-HEc-zp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1688471532\/1445169360","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dacky1109","name":"\u821e\u88d5","id":1728553470,"id_str":"1728553470","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693121025,"id_str":"663728072693121025","text":"#jilboobs foto tante girang lagi mandi https:\/\/t.co\/3vmGBsTDbW","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2894922793,"id_str":"2894922793","name":"\u25baviersya\u2665 ","screen_name":"n_wesherha","location":null,"url":null,"description":"Gak suka bnget ama akun yang sok beut...sok lagi| | apa lagi suka copas pic...|| maaf ajakan sex otomatis saya unfollow | BLOCK","protected":false,"verified":false,"followers_count":24299,"friends_count":83,"listed_count":24,"favourites_count":8,"statuses_count":73822,"created_at":"Sun Nov 09 15:48:58 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554262579380375552\/ac6NWqHK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554262579380375552\/ac6NWqHK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2894922793\/1415548474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"jilboobs","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/3vmGBsTDbW","expanded_url":"http:\/\/dlvr.it\/ChflZx","display_url":"dlvr.it\/ChflZx","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in","timestamp_ms":"1447080078658"} +{"delete":{"status":{"id":660836322383237120,"id_str":"660836322383237120","user_id":1116772213,"user_id_str":"1116772213"},"timestamp_ms":"1447080078767"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072714117121,"id_str":"663728072714117121","text":"RT @winter_Janu: @aboutace_happy \uc6b0\uc120 \ucfe0\ub18d\uc744 \ucfe0\ub18d\ubcf4\uc138\uc694\ucfe0\ub18d\ud30c\uc138\uc694\uc9c4\ucc28\uc9c4\uc2ec\uc73c\ub85c \uc800\ucfe0\ub18d\ud30c\uace0\uba87\ub2ec\uac04 \uadf8 \ucfe0\ub18d\u3148\uc5d0\uc11c\ud5e4\uc5b4\ub098\uc624\uc9c8\ubabb\ud578\uc5b4\uc694 \uc9c0\uae08 \ub354\ud30c\uba74 \uc544\uc608\uc77c\uc0c1\uc0dd\ud65c\uc811\uc5b4\uc57c\ub420\uac70\uac19\uc544\uc11c 3\uae30\ub3c4\ub2e4\uc544\uc9c1\uc548\ubcf4\uace0 ....\uc704\ud5d8\ud55c\uac70\uc9c0\ub9cc \ubcf4\uc138\uc694 \uc560\ub2c81\ub3c4\uc548\ubcf4\ub358\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3186396626,"id_str":"3186396626","name":"\ubc15\ud574\ud53c","screen_name":"aboutace_happy","location":"\uc6d0\ud53c\uc2a4 \ud558\uc774\ud050 \ubc14\ub77c\uce74\ubaac","url":null,"description":"\uc778\uc7a5 \uacb0\ub2d8 (*^0^*) \ud5e4\ub354 \ucf54\ub9f9\uc774 FUB FREE \ube14\ub85c\uadf8 \uacf5\uc0ac\uc911","protected":false,"verified":false,"followers_count":42,"friends_count":63,"listed_count":0,"favourites_count":117,"statuses_count":1307,"created_at":"Wed May 06 08:39:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663313480775176192\/T20hUnUm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663313480775176192\/T20hUnUm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3186396626\/1438949449","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727761270243329,"id_str":"663727761270243329","text":"@aboutace_happy \uc6b0\uc120 \ucfe0\ub18d\uc744 \ucfe0\ub18d\ubcf4\uc138\uc694\ucfe0\ub18d\ud30c\uc138\uc694\uc9c4\ucc28\uc9c4\uc2ec\uc73c\ub85c \uc800\ucfe0\ub18d\ud30c\uace0\uba87\ub2ec\uac04 \uadf8 \ucfe0\ub18d\u3148\uc5d0\uc11c\ud5e4\uc5b4\ub098\uc624\uc9c8\ubabb\ud578\uc5b4\uc694 \uc9c0\uae08 \ub354\ud30c\uba74 \uc544\uc608\uc77c\uc0c1\uc0dd\ud65c\uc811\uc5b4\uc57c\ub420\uac70\uac19\uc544\uc11c 3\uae30\ub3c4\ub2e4\uc544\uc9c1\uc548\ubcf4\uace0 ....\uc704\ud5d8\ud55c\uac70\uc9c0\ub9cc \ubcf4\uc138\uc694 \uc560\ub2c81\ub3c4\uc548\ubcf4\ub358\uc81c\uac00 \uc774\ucf00\ub41c\uac8c\ub2e4\ucfe0\ub18d\ub54c\ubb38\uc785\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726961705906176,"in_reply_to_status_id_str":"663726961705906176","in_reply_to_user_id":3186396626,"in_reply_to_user_id_str":"3186396626","in_reply_to_screen_name":"aboutace_happy","user":{"id":3017454384,"id_str":"3017454384","name":"\uacb0(\uc778\uc7a5\uc740 \u79c0\ub2d8\u2661)","screen_name":"winter_Janu","location":"\ub2c8\uc2dc\ub178\uc57c \uc838\uc9c0\uc548","url":null,"description":"\uc6b0\ud0c0\uc774\ud14c\u2665(\ucd5c\uc560 \uc18c\ub77c\ub8e8 \ucc28\uc560 \uc18c\uc6b0)\u2665\uc131\uc6b0\ub2d8\u2665\uc0ac\ud3ec\uc2e0\uc6a9\uc6b0\u2665\uc2ec\uaca9\u2665\uc815\uc7ac\ud558\uc57c\u2665\uc774\uc601\uc2eb\u2661\ub465\uae00\ub808\ucc28\u2661\ucfe0\ub18d\u2661\ud558\uc774\ud050\u2661 \uc0ac\uc774\ud37c\uc988\u2665\n\u2665\u2665\u2665\u2665\u2665\u2606\uc6b0\uc18c\ub9c8\uce20\u2606\u2665\u2665\u2665\u2665\u2665\ube60\ube60\ud560\ub550 \ube14\ub77d\ud574\uc8fc\uc138\uc694\u2665\n\n[\ubcf8\uc9c4\ud558\uc774\ud050 \ucd5c\uc560 \ub178\uc57c,\uc57c\ucfe0 \ucc28\uc560 \uc2a4\uac00]","protected":false,"verified":false,"followers_count":105,"friends_count":228,"listed_count":2,"favourites_count":935,"statuses_count":4532,"created_at":"Thu Feb 12 14:51:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659725735985217537\/8X6j8VaI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659725735985217537\/8X6j8VaI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017454384\/1445706389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aboutace_happy","name":"\ubc15\ud574\ud53c","id":3186396626,"id_str":"3186396626","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"winter_Janu","name":"\uacb0(\uc778\uc7a5\uc740 \u79c0\ub2d8\u2661)","id":3017454384,"id_str":"3017454384","indices":[3,15]},{"screen_name":"aboutace_happy","name":"\ubc15\ud574\ud53c","id":3186396626,"id_str":"3186396626","indices":[17,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080078663"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693190656,"id_str":"663728072693190656","text":"@TriciaWhatley Do you sail? I have been on 1 sailing excursion and LOVED IT!!! Was a mock battle on a Tall Ship!!! \ud83d\udc95\ud83d\udc9e\ud83d\udc97\ud83d\udc97\ud83d\udc9e\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712558470270976,"in_reply_to_status_id_str":"663712558470270976","in_reply_to_user_id":2473906099,"in_reply_to_user_id_str":"2473906099","in_reply_to_screen_name":"TriciaWhatley","user":{"id":1201560026,"id_str":"1201560026","name":"Janet Cannady-Bieler","screen_name":"JanetCannady","location":"United States","url":null,"description":"Proudly Hiddlestoned","protected":false,"verified":false,"followers_count":428,"friends_count":238,"listed_count":14,"favourites_count":92399,"statuses_count":23384,"created_at":"Wed Feb 20 16:40:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663426612323454976\/4wVBCv45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663426612323454976\/4wVBCv45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201560026\/1443189676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TriciaWhatley","name":"Tricia Whatley","id":2473906099,"id_str":"2473906099","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072722518016,"id_str":"663728072722518016","text":"@max_3123 \n\u3044\u3044\u610f\u6c17\u8fbc\u307f\u3063\u3059\ud83d\ude4b\n\u305d\u308d\u305d\u308d\u7acb\u3066\u307e\u3057\u3087\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722865326358528,"in_reply_to_status_id_str":"663722865326358528","in_reply_to_user_id":2297079708,"in_reply_to_user_id_str":"2297079708","in_reply_to_screen_name":"max_3123","user":{"id":265309443,"id_str":"265309443","name":"\u3055\u3044\u3073\u30fcY\u4f5c","screen_name":"yusaku023","location":"\u611b\u77e5\u770c\u5c3e\u5f35\u65ed\u5e02","url":null,"description":"\u51ac\u3067\u3059\u306d\u3001\u96ea\u3067\u3059\u306d\u3001\u30dc\u30fc\u30c9\u3067\u3059\u306d\uff01\uff01\uff01\u30b4\u30fc\u30eb\u30ad\u30fc\u30d1\u30fc\u3084\u3063\u3066\u307e\u3059\u3002\u5922\u306f\u3044\u3063\u3071\u3044\u98df\u3079\u3066\u30b4\u30fc\u30eb\u3088\u308a\u5927\u304d\u306a\u6700\u5f37\u306e\u30ad\u30fc\u30d1\u30fc\u306b\u306a\u308b\u3053\u3068\u3067\u3059\u2606","protected":false,"verified":false,"followers_count":386,"friends_count":331,"listed_count":0,"favourites_count":357,"statuses_count":14243,"created_at":"Sun Mar 13 10:17:18 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618920938466185216\/E0M0lhH4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618920938466185216\/E0M0lhH4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265309443\/1424364347","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"max_3123","name":"\u30bf\u30b1\u30aa\u30ab","id":2297079708,"id_str":"2297079708","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078665"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072726724609,"id_str":"663728072726724609","text":"\u5927\u30d2\u30c3\u30c8\u5fa1\u793c\u821e\u53f0\u6328\u62f6\u6c7a\u5b9a\u306e\u5148\u304c\u898b\u308c\u306a\u3044\u3002\uff1e\u3082\u305a","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131461652,"id_str":"131461652","name":"\u3068\u3082\u3063\u3074\u30fc(\u30fb\u03c9\u30fb)","screen_name":"t25_111329","location":"\u30c0\u30d6\u30eb\u30d5\u30a7\u30a4\u30b9\u306e\u821e\u53f0\u306b\u306a\u3063\u305f\u8857","url":"http:\/\/twilog.org\/t25_111329","description":"Crazy\u3067\u6700\u9ad8\u3067\u6700\u5f37\u306a5\u4eba\u7d44\u3001\u611b\u306e\u304b\u305f\u307e\u308a\u306a\u95a2\u897f2\u4eba\u7d44\u30012015\u5e74\u79cb\u516c\u958b\u5287\u5834\u7248MOZU\u4e3b\u6f14\u4ff3\u512a\u3055\u3093\u3001\u5927\u597d\u304d\u3067\u3059\u3002\u3000\u9bc9\u5fdc\u63f4\u30a2\u30ab\u2192\u3000@tomo_C1814","protected":false,"verified":false,"followers_count":323,"friends_count":131,"listed_count":13,"favourites_count":172,"statuses_count":42956,"created_at":"Sat Apr 10 10:01:08 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/168547553\/__1.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168547553\/__1.JPG","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611156811689758720\/egFjYI86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611156811689758720\/egFjYI86_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078666"} +{"delete":{"status":{"id":661128938014420994,"id_str":"661128938014420994","user_id":3283290468,"user_id_str":"3283290468"},"timestamp_ms":"1447080078780"}} +{"delete":{"status":{"id":660813736081420289,"id_str":"660813736081420289","user_id":3318920293,"user_id_str":"3318920293"},"timestamp_ms":"1447080078747"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072726745089,"id_str":"663728072726745089","text":"Bangsad memang, lama-lama gue tonjok juga muka tu bocah.","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265163227,"id_str":"265163227","name":"Fandy Kusuma Faizal","screen_name":"fandy_sebastian","location":"Bandung - Indonesia","url":null,"description":"Hanya insan biasa yang berusaha menjadi insan yang luar biasa","protected":false,"verified":false,"followers_count":290,"friends_count":228,"listed_count":4,"favourites_count":63,"statuses_count":10119,"created_at":"Sun Mar 13 03:37:05 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465038550111485952\/JM1KzVNp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465038550111485952\/JM1KzVNp.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639127517970849796\/HdVSHbfR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639127517970849796\/HdVSHbfR_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080078666"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072722481152,"id_str":"663728072722481152","text":"RT @awkwardgoogle: The perfect pillow! https:\/\/t.co\/2LSNUPnPOd","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2540922583,"id_str":"2540922583","name":"Senyum Senget\u30c4","screen_name":"zuhairshah17","location":"Tanah Merah, Kelantan","url":null,"description":"In sha Allah jodoh itu milik kita..Uhibbukifillah..#NFAR","protected":false,"verified":false,"followers_count":321,"friends_count":270,"listed_count":1,"favourites_count":23532,"statuses_count":14815,"created_at":"Mon Jun 02 06:55:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663130061520789504\/GJUQf8Zo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663130061520789504\/GJUQf8Zo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2540922583\/1441855179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:06:57 +0000 2015","id":662269876271235072,"id_str":"662269876271235072","text":"The perfect pillow! https:\/\/t.co\/2LSNUPnPOd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":476199422,"id_str":"476199422","name":"Tips & Tricks","screen_name":"awkwardgoogle","location":"awkwardgxxgle@gmail.com","url":null,"description":"Tips & Tricks to make life a lot easier. *parody* We do not own the images in our tweets.","protected":false,"verified":false,"followers_count":1039022,"friends_count":93,"listed_count":1959,"favourites_count":349,"statuses_count":926,"created_at":"Fri Jan 27 21:43:58 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455681254768119808\/bLws4_Xe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455681254768119808\/bLws4_Xe.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660579359535833088\/N8R-pevs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660579359535833088\/N8R-pevs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/476199422\/1444759423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1809,"favorite_count":2434,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662269875256229888,"id_str":"662269875256229888","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","url":"https:\/\/t.co\/2LSNUPnPOd","display_url":"pic.twitter.com\/2LSNUPnPOd","expanded_url":"http:\/\/twitter.com\/awkwardgoogle\/status\/662269876271235072\/photo\/1","type":"photo","sizes":{"large":{"w":537,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":537,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662269875256229888,"id_str":"662269875256229888","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","url":"https:\/\/t.co\/2LSNUPnPOd","display_url":"pic.twitter.com\/2LSNUPnPOd","expanded_url":"http:\/\/twitter.com\/awkwardgoogle\/status\/662269876271235072\/photo\/1","type":"photo","sizes":{"large":{"w":537,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":537,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"awkwardgoogle","name":"Tips & Tricks","id":476199422,"id_str":"476199422","indices":[3,17]}],"symbols":[],"media":[{"id":662269875256229888,"id_str":"662269875256229888","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","url":"https:\/\/t.co\/2LSNUPnPOd","display_url":"pic.twitter.com\/2LSNUPnPOd","expanded_url":"http:\/\/twitter.com\/awkwardgoogle\/status\/662269876271235072\/photo\/1","type":"photo","sizes":{"large":{"w":537,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":537,"h":480,"resize":"fit"}},"source_status_id":662269876271235072,"source_status_id_str":"662269876271235072","source_user_id":476199422,"source_user_id_str":"476199422"}]},"extended_entities":{"media":[{"id":662269875256229888,"id_str":"662269875256229888","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDa8VQXAAA1cmp.jpg","url":"https:\/\/t.co\/2LSNUPnPOd","display_url":"pic.twitter.com\/2LSNUPnPOd","expanded_url":"http:\/\/twitter.com\/awkwardgoogle\/status\/662269876271235072\/photo\/1","type":"photo","sizes":{"large":{"w":537,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":303,"resize":"fit"},"medium":{"w":537,"h":480,"resize":"fit"}},"source_status_id":662269876271235072,"source_status_id_str":"662269876271235072","source_user_id":476199422,"source_user_id_str":"476199422"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078665"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705769473,"id_str":"663728072705769473","text":"Real life ... https:\/\/t.co\/QM7lZEfD7o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":614078125,"id_str":"614078125","name":"tam.","screen_name":"angelicnall","location":null,"url":null,"description":"Happily in a relationship if you're wondering \u2728 #BlackGirlsRock","protected":false,"verified":false,"followers_count":1596,"friends_count":402,"listed_count":2,"favourites_count":10117,"statuses_count":22977,"created_at":"Thu Jun 21 06:23:35 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626500496\/7afj12yn8rueid2b0cqx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626500496\/7afj12yn8rueid2b0cqx.jpeg","profile_background_tile":true,"profile_link_color":"FF00A6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662414021191053312\/-OCCK1LG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662414021191053312\/-OCCK1LG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614078125\/1413317408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663703840043192320,"quoted_status_id_str":"663703840043192320","quoted_status":{"created_at":"Mon Nov 09 13:05:01 +0000 2015","id":663703840043192320,"id_str":"663703840043192320","text":"#Virgo cannot stand people who have potential and do nothing with it.","source":"\u003ca href=\"http:\/\/www.kucukbeyin.com\/\" rel=\"nofollow\"\u003ejhdgfjasgfj\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":315864040,"id_str":"315864040","name":"Virgo","screen_name":"VirgoHoroscopee","location":null,"url":null,"description":"Best Virgo Quotes","protected":false,"verified":false,"followers_count":3370,"friends_count":3313,"listed_count":4,"favourites_count":0,"statuses_count":15868,"created_at":"Sun Jun 12 15:32:58 +0000 2011","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575039118062718976\/r0u2zCgt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575039118062718976\/r0u2zCgt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/315864040\/1425935000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Virgo","indices":[0,6]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QM7lZEfD7o","expanded_url":"https:\/\/twitter.com\/virgohoroscopee\/status\/663703840043192320","display_url":"twitter.com\/virgohoroscope\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072710074368,"id_str":"663728072710074368","text":"@ShortcutLabs I did not receive 3 of my 6 Flics :-) Maybe some communication would be good to your backers?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677173526626304,"in_reply_to_status_id_str":"663677173526626304","in_reply_to_user_id":1300658372,"in_reply_to_user_id_str":"1300658372","in_reply_to_screen_name":"ShortcutLabs","user":{"id":274943190,"id_str":"274943190","name":"Kwitter ones","screen_name":"kwitterones","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":22,"created_at":"Thu Mar 31 09:56:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShortcutLabs","name":"Shortcut Labs","id":1300658372,"id_str":"1300658372","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693170176,"id_str":"663728072693170176","text":"RT @1Nssu: \u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1459905656,"id_str":"1459905656","name":"\u3058\u3085\u3046\u3053\u3055\u3093","screen_name":"julikolove","location":null,"url":null,"description":"\u72ac\u3001\u732b\u3084\u30c9\u30e9\u30de\u3084\u30a2\u30cb\u30e1\u306e\u611f\u60f3\u306a\u3069\u8208\u5473\u3042\u308b\u3082\u306e\u306e\u3053\u3068\u3092\u3072\u3063\u305d\u308a\u3064\u3076\u3084\u3044\u3066\u307e\u3059\u3002\u304b\u306a\u308a\u504f\u308a\u304c\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":68,"friends_count":198,"listed_count":0,"favourites_count":81,"statuses_count":8603,"created_at":"Sun May 26 15:14:59 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3730634077\/60508e3b8ce33405ddcdf0de1ae3edeb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3730634077\/60508e3b8ce33405ddcdf0de1ae3edeb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459905656\/1388928223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:28:53 +0000 2015","id":663271961917652993,"id_str":"663271961917652993","text":"\u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193571228,"id_str":"3193571228","name":"\u4e2d\u5cf6\u512a\u592a\u6717","screen_name":"1Nssu","location":"\u9759\u5ca1 \u6d5c\u677e \u261e \u795e\u5948\u5ddd \u6a2a\u6d5c","url":null,"description":"\u65e5\u672c\u4f53\u80b2\u5927\u5b66 \u9678\u4e0a \u77ed\u8ddd\u96e2","protected":false,"verified":false,"followers_count":282,"friends_count":209,"listed_count":0,"favourites_count":241,"statuses_count":211,"created_at":"Tue May 12 18:57:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193571228\/1447078229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17624,"favorite_count":20077,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1Nssu","name":"\u4e2d\u5cf6\u512a\u592a\u6717","id":3193571228,"id_str":"3193571228","indices":[3,9]}],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228"}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228","video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072726700032,"id_str":"663728072726700032","text":"RT @JHERNANDEZ48: Get ya popcorn ready, it's about that time! #SNF #PHIvsDAL #CowboysNation #ThrowUpTheX","source":"\u003ca href=\"http:\/\/larue6178.wordpress.com\" rel=\"nofollow\"\u003eLarue61787468\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4008298815,"id_str":"4008298815","name":"Larue Levens","screen_name":"Larue6178","location":null,"url":null,"description":"Likes red bull and drinking Diet Coke \u2736 Nature adventurer \u2736 Change maker \u2736 Self-proclaimed foodie \u2736 Feng Shui lover","protected":false,"verified":false,"followers_count":1,"friends_count":45,"listed_count":0,"favourites_count":2,"statuses_count":18,"created_at":"Wed Oct 21 09:08:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656760160296153088\/h52-SNAf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656760160296153088\/h52-SNAf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:10:56 +0000 2015","id":663524135654580224,"id_str":"663524135654580224","text":"Get ya popcorn ready, it's about that time! #SNF #PHIvsDAL #CowboysNation #ThrowUpTheX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40894338,"id_str":"40894338","name":"Great One","screen_name":"JHERNANDEZ48","location":"SwoCity, JosephNation","url":null,"description":"Faith = Jesus Christ Family = JoeDavid Hernandez Football = Joseph Live by the 3 F's of life, Live for the 3 J's of MY life!","protected":false,"verified":false,"followers_count":159,"friends_count":175,"listed_count":1,"favourites_count":1144,"statuses_count":4409,"created_at":"Mon May 18 15:24:03 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/17473748\/NYY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/17473748\/NYY.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657402896712007680\/ZwnRZePl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657402896712007680\/ZwnRZePl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40894338\/1444909723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"SNF","indices":[44,48]},{"text":"PHIvsDAL","indices":[49,58]},{"text":"CowboysNation","indices":[59,73]},{"text":"ThrowUpTheX","indices":[74,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SNF","indices":[62,66]},{"text":"PHIvsDAL","indices":[67,76]},{"text":"CowboysNation","indices":[77,91]},{"text":"ThrowUpTheX","indices":[92,104]}],"urls":[],"user_mentions":[{"screen_name":"JHERNANDEZ48","name":"Great One","id":40894338,"id_str":"40894338","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078666"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072697319426,"id_str":"663728072697319426","text":"RT @CoolPetVideo: [ Swap avec Coline Horse Riding ] Un amour de poney - https:\/\/t.co\/NUq8yo4uHU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244895602,"id_str":"3244895602","name":"Kapula Coon","screen_name":"caxuxarujyw","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":80,"friends_count":0,"listed_count":8,"favourites_count":11198,"statuses_count":15294,"created_at":"Sun May 10 13:18:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643512731526676480\/hZlyKWGu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643512731526676480\/hZlyKWGu_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:15:03 +0000 2015","id":663706367211929604,"id_str":"663706367211929604","text":"[ Swap avec Coline Horse Riding ] Un amour de poney - https:\/\/t.co\/NUq8yo4uHU","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3250,"favorite_count":2087,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NUq8yo4uHU","expanded_url":"http:\/\/coolpetvideos.com\/swap-avec-coline-horse-riding-un-amour-de-poney\/","display_url":"coolpetvideos.com\/swap-avec-coli\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NUq8yo4uHU","expanded_url":"http:\/\/coolpetvideos.com\/swap-avec-coline-horse-riding-un-amour-de-poney\/","display_url":"coolpetvideos.com\/swap-avec-coli\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080078659"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072710033408,"id_str":"663728072710033408","text":"RT @MiguelRomanM: Este dato es falso. Entre Ciudadanos, PP, PSC y Catalunya S\u00ed que es Pot s\u00f3lo suman el 48,05 % de los votos.\n\nhttps:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210835116,"id_str":"210835116","name":"Sr. Bouza","screen_name":"SrBouza","location":"Sempre en Galiza","url":null,"description":"Outsider. Socio e accionista do #Celta. Membro de @1923NOS. Aqu\u00ed falo do que me peta. #DMQE","protected":false,"verified":false,"followers_count":986,"friends_count":383,"listed_count":22,"favourites_count":3692,"statuses_count":1941,"created_at":"Mon Nov 01 14:55:01 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"gl","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611265112\/qf2tkmu1qchkp2ln8p2a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611265112\/qf2tkmu1qchkp2ln8p2a.jpeg","profile_background_tile":false,"profile_link_color":"000203","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660902824633606144\/wgVTgpYB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660902824633606144\/wgVTgpYB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210835116\/1400802290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:47 +0000 2015","id":663719890222759936,"id_str":"663719890222759936","text":"Este dato es falso. Entre Ciudadanos, PP, PSC y Catalunya S\u00ed que es Pot s\u00f3lo suman el 48,05 % de los votos.\n\nhttps:\/\/t.co\/G6wP8eh0Vq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376883202,"id_str":"376883202","name":"Miguel Rom\u00e1n Mora","screen_name":"MiguelRomanM","location":null,"url":"http:\/\/es.linkedin.com\/pub\/miguel-rom\u00e1n-mora\/95\/783\/b1a\/","description":"Periodista vigu\u00e9s.","protected":false,"verified":false,"followers_count":743,"friends_count":362,"listed_count":27,"favourites_count":134,"statuses_count":7415,"created_at":"Tue Sep 20 17:13:46 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2299010751\/vzlibcpb7teda8yfamzg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2299010751\/vzlibcpb7teda8yfamzg_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376883202\/1411063569","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663707869720760320,"quoted_status_id_str":"663707869720760320","quoted_status":{"created_at":"Mon Nov 09 13:21:01 +0000 2015","id":663707869720760320,"id_str":"663707869720760320","text":"72 diputados que representan el 48%. \n63 diputados que representan el 52%. \nY el soberanismo dice que gan\u00f3 el plebiscito...\n#Parlament","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1572643448,"id_str":"1572643448","name":"Madrid_BCN","screen_name":"Madrid_BCN","location":null,"url":"http:\/\/madridbcn.tumblr.com","description":"El ser humano genera gilipollez y hero\u00edsmo a partes iguales. Procuremos que aquella sea graciosa y \u00e9ste, \u00fatil.","protected":false,"verified":false,"followers_count":211,"friends_count":52,"listed_count":8,"favourites_count":1111,"statuses_count":14212,"created_at":"Sat Jul 06 12:02:09 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"29CC49","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000019537051\/61813c0a3bd19116a27148ac3b1843b4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000019537051\/61813c0a3bd19116a27148ac3b1843b4.jpeg","profile_background_tile":false,"profile_link_color":"00B348","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551503762758459392\/tLmVJDux_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551503762758459392\/tLmVJDux_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1572643448\/1373385358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Parlament","indices":[124,134]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G6wP8eh0Vq","expanded_url":"https:\/\/twitter.com\/Madrid_BCN\/status\/663707869720760320","display_url":"twitter.com\/Madrid_BCN\/sta\u2026","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G6wP8eh0Vq","expanded_url":"https:\/\/twitter.com\/Madrid_BCN\/status\/663707869720760320","display_url":"twitter.com\/Madrid_BCN\/sta\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"MiguelRomanM","name":"Miguel Rom\u00e1n Mora","id":376883202,"id_str":"376883202","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080078662"} +{"delete":{"status":{"id":661119693789356032,"id_str":"661119693789356032","user_id":2863887422,"user_id_str":"2863887422"},"timestamp_ms":"1447080078772"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072722485248,"id_str":"663728072722485248","text":"\u9326\u6238\u4eae\u306e\u51fa\u6f14\u306b\u5bfe\u3057\u3066\u65e5\u30c6\u30ec\u306b\u6297\u8b70\u6bba\u5230\uff01 \u8996\u8074\u7387\u7684\u306b\u306f\u5065\u95d8\u3057\u305f\u300c24\u6642\u9593\u30c6\u30ec\u30d3\u300d\u306e\u88cf\u3067\u8d77\u304d\u3066\u3044\u305f\u30c9\u30bf\u30d0\u30bf\u5287 https:\/\/t.co\/8h5uyn3rYW","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289889851,"id_str":"3289889851","name":"\u25bd\u9ce5\u6d77\u6d69\u8f14\u25bd","screen_name":"dp112KoSuUm","location":null,"url":null,"description":"\u9ce5\u6d77\u6d69\u8f14\u3055\u3093\u304c\u597d\u304d\u306a\u4eba\u3001\u96c6\u307e\u308c\uff5e\uff5e\uff5e\uff3c(^o^)\uff0f \u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u52df\u96c6\u4e2d\u266a \u5f7c\u6c0f\u3082\u3064\u3044\u3067\u306b\u52df\u96c6\u4e2d(*\u2267\u2200\u2266*) \u4e00\u7dd2\u306b\u30e9\u30a4\u30d6\u884c\u3063\u3066\u304f\u308c\u308b\u4eba\u3044\u306a\u3044\u304b\u306a\u3041...(\u7b11)","protected":false,"verified":false,"followers_count":61,"friends_count":63,"listed_count":1,"favourites_count":0,"statuses_count":8837,"created_at":"Fri Jul 24 13:12:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625200064370118657\/Y9t9_y23_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625200064370118657\/Y9t9_y23_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289889851\/1437894305","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8h5uyn3rYW","expanded_url":"http:\/\/fwfw21entame.seesaa.net","display_url":"fwfw21entame.seesaa.net","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078665"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072718438400,"id_str":"663728072718438400","text":"\ud83d\udcf7 mindcrankismycommander: ambris-art: glenn-griffon: thewayofthefox: biblicaltimes: biblicaltimes:... https:\/\/t.co\/a4NFAn56S0","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27506095,"id_str":"27506095","name":"Gendo","screen_name":"Gendopose1","location":null,"url":null,"description":"Commander of a secret underground base. Where I make silly videos.","protected":false,"verified":false,"followers_count":14,"friends_count":145,"listed_count":0,"favourites_count":14,"statuses_count":374,"created_at":"Sun Mar 29 21:16:29 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/91082074\/2422643628_2cb5fb14f5_o.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/91082074\/2422643628_2cb5fb14f5_o.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2925290219\/f1729978a82adae379441355af3b7028_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2925290219\/f1729978a82adae379441355af3b7028_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a4NFAn56S0","expanded_url":"http:\/\/tmblr.co\/ZT6znv1xlk7Br","display_url":"tmblr.co\/ZT6znv1xlk7Br","indices":[102,125]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078664"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072709963776,"id_str":"663728072709963776","text":"\u5927\u4eba\u6c17\u306e\u5199\u771f\u30b3\u30f3\u30c6\u30b9\u30c8\u266aH1-\u30b0\u30e9\u30f3\u30d7\u30ea\u3063\u3066\u30fb\u30fb\u3002\u2606\n\u21d2\u3000\u3000https:\/\/t.co\/8u2mfRNX7v\n\n\u51fa\u4f1a\u3063\u305f\u5b50\u3068\u30cf\u30e1\u64ae\u308a\u5199\u771f\u30b0\u30e9\u30f3\u30d7\u30ea\uff1f\nhttps:\/\/t.co\/TtCNEcC9wj\n:*.\uff61o\u25cbo\uff61. b73","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307118316,"id_str":"3307118316","name":"\u4e38\u7530 \u53cb\u4ee5\u4e43","screen_name":"maruta_yuiw47t","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":93,"friends_count":1892,"listed_count":0,"favourites_count":0,"statuses_count":17940,"created_at":"Wed Aug 05 19:04:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8u2mfRNX7v","expanded_url":"http:\/\/goo.gl\/p9W3E7","display_url":"goo.gl\/p9W3E7","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":610651080196624384,"id_str":"610651080196624384","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl37AzUEAAozVM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl37AzUEAAozVM.jpg","url":"https:\/\/t.co\/TtCNEcC9wj","display_url":"pic.twitter.com\/TtCNEcC9wj","expanded_url":"http:\/\/twitter.com\/deai_01_mori\/status\/610651081245265921\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":1024,"h":716,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":610651081245265921,"source_status_id_str":"610651081245265921","source_user_id":2998944324,"source_user_id_str":"2998944324"}]},"extended_entities":{"media":[{"id":610651080196624384,"id_str":"610651080196624384","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CHl37AzUEAAozVM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CHl37AzUEAAozVM.jpg","url":"https:\/\/t.co\/TtCNEcC9wj","display_url":"pic.twitter.com\/TtCNEcC9wj","expanded_url":"http:\/\/twitter.com\/deai_01_mori\/status\/610651081245265921\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":1024,"h":716,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":610651081245265921,"source_status_id_str":"610651081245265921","source_user_id":2998944324,"source_user_id_str":"2998944324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072709959680,"id_str":"663728072709959680","text":"#News: Emotional farewell for 9\/11 cop stricken with cancer: Lt. Marci Simms, 51, died of lung cancer, bec... https:\/\/t.co\/Mr2ef22Nqc #TU","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116155386,"id_str":"116155386","name":"News Update","screen_name":"Tukang_Update","location":"Around You","url":null,"description":"The Latest News #TU","protected":false,"verified":false,"followers_count":2563,"friends_count":15,"listed_count":127,"favourites_count":3,"statuses_count":923605,"created_at":"Sun Feb 21 10:56:18 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442173882896633856\/3ohMFbtI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442173882896633856\/3ohMFbtI.png","profile_background_tile":false,"profile_link_color":"D10202","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442167687003643904\/pq17SyJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442167687003643904\/pq17SyJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116155386\/1402009548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"News","indices":[0,5]},{"text":"TU","indices":[134,137]}],"urls":[{"url":"https:\/\/t.co\/Mr2ef22Nqc","expanded_url":"http:\/\/cbsn.ws\/1HqgBWs","display_url":"cbsn.ws\/1HqgBWs","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072701575168,"id_str":"663728072701575168","text":"@shimotsu_ \u3068\u3044\u3046\u304b\u306a\u3093\u3068\u304b\u30d5\u30a1\u30a4\u30f3\u30c0\u30fc\u4ee5\u5916\u306e4\u518a\u3092\u8aad\u307f\u305f\u3044\u304f\u3089\u3044\u7b11\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727829528408064,"in_reply_to_status_id_str":"663727829528408064","in_reply_to_user_id":2544720727,"in_reply_to_user_id_str":"2544720727","in_reply_to_screen_name":"shimotsu_","user":{"id":94804146,"id_str":"94804146","name":"\u304f\u3044\u3057\u3093","screen_name":"Quishin","location":"The Earth","url":"http:\/\/atticbooksellers.com","description":"1985\u5e74\u3001\u795e\u5948\u5ddd\u770c\u5c0f\u7530\u539f\u5e02\u751f\u2192NSC\u6771\u4eac\u2192\u304a\u7b11\u3044\u82b8\u4eba\u898b\u7fd2\u3044\u2192\u30ec\u30b3\u30fc\u30c9\u30b7\u30e7\u30c3\u30d7\u5e97\u54e1\u2192\u97f3\u697d\u96d1\u8a8c\u7de8\u96c6\u2192Web\u5236\u4f5c\/Web\u30c7\u30a3\u30ec\u30af\u30bf\u30fc\u3092\u3084\u3063\u3066\u307e\u3059\u3002 http:\/\/quishin.com http:\/\/rubus-web.jp http:\/\/atticbooksellers.com","protected":false,"verified":false,"followers_count":1400,"friends_count":528,"listed_count":35,"favourites_count":1723,"statuses_count":15896,"created_at":"Sat Dec 05 14:46:22 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/203706064\/quishin_varghandhi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/203706064\/quishin_varghandhi.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1040046891\/quishin_varghandhi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1040046891\/quishin_varghandhi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94804146\/1441390388","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shimotsu_","name":"Shimotsu","id":2544720727,"id_str":"2544720727","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078660"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072697384960,"id_str":"663728072697384960","text":"@HouseCracka @jeanee5TAM I love you, Supreme Leader!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724416782737408,"in_reply_to_status_id_str":"663724416782737408","in_reply_to_user_id":16190478,"in_reply_to_user_id_str":"16190478","in_reply_to_screen_name":"HouseCracka","user":{"id":2926852014,"id_str":"2926852014","name":"El Palad\u00edn","screen_name":"bshirah1981","location":"Texas, USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":265,"listed_count":1,"favourites_count":118,"statuses_count":424,"created_at":"Thu Dec 11 14:23:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615978905409753089\/hSCfJIBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615978905409753089\/hSCfJIBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926852014\/1446305137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HouseCracka","name":"oBoLa CrAcKa","id":16190478,"id_str":"16190478","indices":[0,12]},{"screen_name":"jeanee5TAM","name":"jeanee5TAM","id":822533414,"id_str":"822533414","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078659"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072701558784,"id_str":"663728072701558784","text":"I posted a new photo to Facebook https:\/\/t.co\/PjpXjdiPoV","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130663451,"id_str":"130663451","name":"Jayson (\u8521\u5609\u96c4) Glory ","screen_name":"iroi49","location":"BRGY Pansol QC","url":"https:\/\/www.facebook.com\/DheziRoi","description":"http:\/\/www.ebay.ph\/usr\/dheziroi","protected":false,"verified":false,"followers_count":33,"friends_count":133,"listed_count":0,"favourites_count":5,"statuses_count":8325,"created_at":"Wed Apr 07 23:29:55 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446590873\/tweet_size_copy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446590873\/tweet_size_copy.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590076553142214657\/WyF-DoZM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590076553142214657\/WyF-DoZM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130663451\/1412223211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PjpXjdiPoV","expanded_url":"http:\/\/fb.me\/t2Kp5bef","display_url":"fb.me\/t2Kp5bef","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078660"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072709947397,"id_str":"663728072709947397","text":"RT @blackmon_jaden: \"Back off! Jack off!\" -Jaden Blackmon","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2604744468,"id_str":"2604744468","name":"trinity woods","screen_name":"cr7_craze","location":null,"url":null,"description":"tx \/\/ soccer \/\/ jahmad","protected":false,"verified":false,"followers_count":191,"friends_count":201,"listed_count":1,"favourites_count":341,"statuses_count":189,"created_at":"Sat Jul 05 04:36:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651943727380824068\/F_B5wunC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651943727380824068\/F_B5wunC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2604744468\/1445111809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:30 +0000 2015","id":663727872499036160,"id_str":"663727872499036160","text":"\"Back off! Jack off!\" -Jaden Blackmon","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3240185066,"id_str":"3240185066","name":"Jaden Blackmon","screen_name":"blackmon_jaden","location":null,"url":null,"description":"Boswell high school\u26be\ufe0f","protected":false,"verified":false,"followers_count":71,"friends_count":72,"listed_count":0,"favourites_count":136,"statuses_count":53,"created_at":"Mon Jun 08 19:39:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663408541747646464\/rn1frtCY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663408541747646464\/rn1frtCY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3240185066\/1439153126","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blackmon_jaden","name":"Jaden Blackmon","id":3240185066,"id_str":"3240185066","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072693149696,"id_str":"663728072693149696","text":"Nagtatampo \ud83d\ude12\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528371505,"id_str":"528371505","name":"\u30c4","screen_name":"RVictoriaS_","location":null,"url":null,"description":"Baby, I'm worth it \u30c4\n@Cronemirezx's x [pi-to] \u2728 x Corre","protected":false,"verified":false,"followers_count":1378,"friends_count":1401,"listed_count":0,"favourites_count":17579,"statuses_count":39141,"created_at":"Sun Mar 18 10:16:38 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632250356009844736\/JNxVUbRD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632250356009844736\/JNxVUbRD.jpg","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663033506226802688\/F57xl3gi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663033506226802688\/F57xl3gi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528371505\/1446396644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080078658"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072709898241,"id_str":"663728072709898241","text":"@null 012axjskge0x9gz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":2705857836,"id_str":"2705857836","name":"\u7a7a\u306e\u3086\u30fc\u304f\u3093","screen_name":"Yukuku_","location":null,"url":null,"description":"\u2704-----------\u73fe\u5b9f-----------\u2704","protected":false,"verified":false,"followers_count":6,"friends_count":14,"listed_count":0,"favourites_count":9022,"statuses_count":1156084,"created_at":"Mon Aug 04 06:46:15 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628251987876773888\/TaVG4mZ9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628251987876773888\/TaVG4mZ9.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662976386584326144\/AxPmw4p3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662976386584326144\/AxPmw4p3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2705857836\/1446901379","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080078662"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072718286848,"id_str":"663728072718286848","text":"Only 7% of Journalists are Republicans! MSM Biased? https:\/\/t.co\/d5Kkz0iQVG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66888939,"id_str":"66888939","name":"LibraryTchr","screen_name":"LibraryTchr","location":"Pacific Northwest","url":null,"description":"Conservative, Researcher, Pro Life, Small Government Supporter","protected":false,"verified":false,"followers_count":16,"friends_count":28,"listed_count":4,"favourites_count":2,"statuses_count":2777,"created_at":"Wed Aug 19 02:51:23 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000498199416\/edf8d71ecc6aea85e1e8230486f423ca_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000498199416\/edf8d71ecc6aea85e1e8230486f423ca_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d5Kkz0iQVG","expanded_url":"http:\/\/tiny.iavian.net\/7m5r","display_url":"tiny.iavian.net\/7m5r","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078664"} +{"delete":{"status":{"id":661343417952153600,"id_str":"661343417952153600","user_id":313344137,"user_id_str":"313344137"},"timestamp_ms":"1447080078855"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072722509824,"id_str":"663728072722509824","text":"\u52c3\u8d77\u2606BOKI\u2606","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004961982,"id_str":"3004961982","name":"\u3080\u3080","screen_name":"sonomumu","location":null,"url":null,"description":"\u73fe\u5728\u904e\u53bb\u672a\u6765\u3082\u591c\u884c\u8846\u306b\u9996\u3063\u305f\u3051\u3002\u3042\u3084\u304b\u3057ID\u3010sonomumu\u3011\u30d5\u30a9\u30ed\u30d0\u717d\u308a\u53a8\u306f(\u30fb\u2200\u30fb)\uff76\uff74\uff9a!!","protected":false,"verified":false,"followers_count":99,"friends_count":124,"listed_count":5,"favourites_count":8217,"statuses_count":15456,"created_at":"Sat Jan 31 15:14:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663629520675536896\/fDqXw5Hx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663629520675536896\/fDqXw5Hx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004961982\/1439704894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078665"} +{"delete":{"status":{"id":661174681102258177,"id_str":"661174681102258177","user_id":226944343,"user_id_str":"226944343"},"timestamp_ms":"1447080078844"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705773568,"id_str":"663728072705773568","text":"RT @krystykarlman: @msmith_07 happy birthday micah!! hope your day is great! \ud83d\ude1c\ud83c\udf89","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":379591744,"id_str":"379591744","name":"Micah*","screen_name":"msmith_07","location":"The Lab || Art Crate ","url":null,"description":"||GKHS c\/o 2018|| R.I.P \u261d\ufe0f\u2764\ufe0f||Silent Grind is the Best Grind || N.A.$.A \u2122|| Land Shark || Give Em 7 Reasons || You have to cook to eat ||","protected":false,"verified":false,"followers_count":1395,"friends_count":1252,"listed_count":3,"favourites_count":13852,"statuses_count":17484,"created_at":"Sun Sep 25 06:49:01 +0000 2011","utc_offset":-28800,"time_zone":"America\/Los_Angeles","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433134436184387585\/owDuvrMj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433134436184387585\/owDuvrMj.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635187997806235648\/hQDxk2uM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635187997806235648\/hQDxk2uM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379591744\/1441300729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:59:42 +0000 2015","id":663642106234171393,"id_str":"663642106234171393","text":"@msmith_07 happy birthday micah!! hope your day is great! \ud83d\ude1c\ud83c\udf89","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":379591744,"in_reply_to_user_id_str":"379591744","in_reply_to_screen_name":"msmith_07","user":{"id":624153038,"id_str":"624153038","name":"Krysty","screen_name":"krystykarlman","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":364,"friends_count":262,"listed_count":0,"favourites_count":8483,"statuses_count":17389,"created_at":"Sun Jul 01 22:44:27 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015384100\/8716eb3e6e63de4adf4f43948359a611.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015384100\/8716eb3e6e63de4adf4f43948359a611.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659681413965348864\/bmrLwnwf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659681413965348864\/bmrLwnwf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624153038\/1443337161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"msmith_07","name":"Micah*","id":379591744,"id_str":"379591744","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"krystykarlman","name":"Krysty","id":624153038,"id_str":"624153038","indices":[3,17]},{"screen_name":"msmith_07","name":"Micah*","id":379591744,"id_str":"379591744","indices":[19,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072710094849,"id_str":"663728072710094849","text":"Eu pare\u00e7o bipolar.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3260781868,"id_str":"3260781868","name":"E. Ryan. S.","screen_name":"dvsirvblv","location":null,"url":null,"description":"One person\u2019s craziness is another person\u2019s reality.","protected":false,"verified":false,"followers_count":296,"friends_count":292,"listed_count":0,"favourites_count":183,"statuses_count":293,"created_at":"Sat May 16 11:58:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662436935386927104\/B4-fYm4x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662436935386927104\/B4-fYm4x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3260781868\/1431778104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080078662"} +{"delete":{"status":{"id":662441595782983680,"id_str":"662441595782983680","user_id":250882811,"user_id_str":"250882811"},"timestamp_ms":"1447080078943"}} +{"delete":{"status":{"id":663727691032477696,"id_str":"663727691032477696","user_id":2160614839,"user_id_str":"2160614839"},"timestamp_ms":"1447080078900"}} +{"delete":{"status":{"id":663727783290408961,"id_str":"663727783290408961","user_id":4177178053,"user_id_str":"4177178053"},"timestamp_ms":"1447080078928"}} +{"delete":{"status":{"id":661362615260610561,"id_str":"661362615260610561","user_id":64987450,"user_id_str":"64987450"},"timestamp_ms":"1447080078936"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705875968,"id_str":"663728072705875968","text":"\u0645\u062f\u0631\u0628 \u0627\u0644\u0643\u0627\u0631\u0627\u062a\u064a\u0647 \u0645\u0639 \u063a\u0627\u062f\u0629..https:\/\/t.co\/cdujrUkApY\n\n#\u062e\u0644\u0641\u064a\n#\u0632\u063a\u0628\nDFJL https:\/\/t.co\/qPb5ajcwUn","source":"\u003ca href=\"http:\/\/www.loans-wd.com\/\" rel=\"nofollow\"\u003e\u0628\u0639\u0634\u0642\u0643\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":65140277,"id_str":"65140277","name":"jemina","screen_name":"soreths","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4248,"created_at":"Wed Aug 12 19:52:21 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062e\u0644\u0641\u064a","indices":[49,54]},{"text":"\u0632\u063a\u0628","indices":[55,59]}],"urls":[{"url":"https:\/\/t.co\/cdujrUkApY","expanded_url":"http:\/\/goo.gl\/ixKFjJ","display_url":"goo.gl\/ixKFjJ","indices":[24,47]}],"user_mentions":[],"symbols":[],"media":[{"id":663728071862853636,"id_str":"663728071862853636","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKi7XIAQ6q8C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKi7XIAQ6q8C.jpg","url":"https:\/\/t.co\/qPb5ajcwUn","display_url":"pic.twitter.com\/qPb5ajcwUn","expanded_url":"http:\/\/twitter.com\/soreths\/status\/663728072705875968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"},"large":{"w":1019,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728071862853636,"id_str":"663728071862853636","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKi7XIAQ6q8C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKi7XIAQ6q8C.jpg","url":"https:\/\/t.co\/qPb5ajcwUn","display_url":"pic.twitter.com\/qPb5ajcwUn","expanded_url":"http:\/\/twitter.com\/soreths\/status\/663728072705875968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"},"large":{"w":1019,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072705753089,"id_str":"663728072705753089","text":"RT @leadonimGyu: @kyuzizi meron poreber :D\n\u314b\u314b\u314b\u314b\u314b\n#INSPIRITPHLovesLeaderGyu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3284182380,"id_str":"3284182380","name":"Inspirit\u2661","screen_name":"Inspirit061","location":null,"url":"http:\/\/twiends.com\/inspirit061","description":null,"protected":false,"verified":false,"followers_count":138,"friends_count":82,"listed_count":0,"favourites_count":218,"statuses_count":1290,"created_at":"Sun Jul 19 10:35:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623493675331399680\/g7dI95K2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623493675331399680\/g7dI95K2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284182380\/1437531334","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:46:04 +0000 2015","id":663699071815671808,"id_str":"663699071815671808","text":"@kyuzizi meron poreber :D\n\u314b\u314b\u314b\u314b\u314b\n#INSPIRITPHLovesLeaderGyu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":723884990,"in_reply_to_user_id_str":"723884990","in_reply_to_screen_name":"kyuzizi","user":{"id":3221870222,"id_str":"3221870222","name":"hyung27","screen_name":"leadonimGyu","location":"Republic of the Philippines","url":"http:\/\/ask.fm\/leadonimGyu","description":"Woollim spazzer | Inspirit | Jjong is my bias| Gyu and Dino are my bias wreckers | Inspirits followed me, I followed back to them","protected":false,"verified":false,"followers_count":252,"friends_count":457,"listed_count":1,"favourites_count":106,"statuses_count":2008,"created_at":"Thu May 21 02:20:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625453161742888960\/zBvfU3Ad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625453161742888960\/zBvfU3Ad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221870222\/1435365088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"INSPIRITPHLovesLeaderGyu","indices":[32,57]}],"urls":[],"user_mentions":[{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"INSPIRITPHLovesLeaderGyu","indices":[49,74]}],"urls":[],"user_mentions":[{"screen_name":"leadonimGyu","name":"hyung27","id":3221870222,"id_str":"3221870222","indices":[3,15]},{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[17,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080078661"} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072710094848,"id_str":"663728072710094848","text":"Scegli la tua Puttana in cam! https:\/\/t.co\/FHEFmsdPeq https:\/\/t.co\/2lyfUHm7lU","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2312076282,"id_str":"2312076282","name":"La tua Puttana","screen_name":"latuaputtana","location":"Milano","url":"http:\/\/bit.ly\/1DI47oQ","description":"Oltre 30.000 Puttane CamGirls Disponibili per te ( anche dal tuo Ufficio )","protected":false,"verified":false,"followers_count":302,"friends_count":1633,"listed_count":2,"favourites_count":0,"statuses_count":207104,"created_at":"Sun Jan 26 16:02:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427474014366232576\/1pKgkc3m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427474014366232576\/1pKgkc3m_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FHEFmsdPeq","expanded_url":"http:\/\/ragazzeincam.tumblr.com\/","display_url":"ragazzeincam.tumblr.com","indices":[30,53]}],"user_mentions":[],"symbols":[],"media":[{"id":663728072588435456,"id_str":"663728072588435456","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKloWoAAKSxO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKloWoAAKSxO.jpg","url":"https:\/\/t.co\/2lyfUHm7lU","display_url":"pic.twitter.com\/2lyfUHm7lU","expanded_url":"http:\/\/twitter.com\/latuaputtana\/status\/663728072710094848\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728072588435456,"id_str":"663728072588435456","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKloWoAAKSxO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKloWoAAKSxO.jpg","url":"https:\/\/t.co\/2lyfUHm7lU","display_url":"pic.twitter.com\/2lyfUHm7lU","expanded_url":"http:\/\/twitter.com\/latuaputtana\/status\/663728072710094848\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080078662"} +{"delete":{"status":{"id":661439727568945152,"id_str":"661439727568945152","user_id":1206726199,"user_id_str":"1206726199"},"timestamp_ms":"1447080079048"}} +{"delete":{"status":{"id":662349044270948353,"id_str":"662349044270948353","user_id":284241884,"user_id_str":"284241884"},"timestamp_ms":"1447080079241"}} +{"delete":{"status":{"id":592211972487131136,"id_str":"592211972487131136","user_id":2862435272,"user_id_str":"2862435272"},"timestamp_ms":"1447080079446"}} +{"delete":{"status":{"id":662649306097172481,"id_str":"662649306097172481","user_id":2452829978,"user_id_str":"2452829978"},"timestamp_ms":"1447080079546"}} +{"delete":{"status":{"id":663728018196733952,"id_str":"663728018196733952","user_id":216254861,"user_id_str":"216254861"},"timestamp_ms":"1447080079694"}} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904374272,"id_str":"663728076904374272","text":"RT @7ll_Follow_Back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189347750,"id_str":"2189347750","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"M_A_Alzahrani","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0639\u0627\u0634\u0642 \u0648\u0645\u062d\u0628 \u0644\u0646\u0627\u062f\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0644\u0645\u0644\u0643\u064a \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631\u060c \u0625\u0633\u0623\u0644\u0646\u064a \u0639\u0646 \u0627\u0644\u0639\u0634\u0642 \u0623\u062d\u062f\u062b\u0643 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644.\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u0637\u0631\u062d \u0648\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647","protected":false,"verified":false,"followers_count":3821,"friends_count":1084,"listed_count":4,"favourites_count":1190,"statuses_count":69415,"created_at":"Wed Nov 20 20:15:11 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189347750\/1444106923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:32:44 +0000 2015","id":662774646790610944,"id_str":"662774646790610944","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 0230","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549145898,"id_str":"549145898","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","screen_name":"7ll_Follow_Back","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":513876,"friends_count":272527,"listed_count":976,"favourites_count":7,"statuses_count":162789,"created_at":"Mon Apr 09 11:19:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7ll_Follow_Back","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","id":549145898,"id_str":"549145898","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080079662"} +{"delete":{"status":{"id":648167330699079680,"id_str":"648167330699079680","user_id":1417252969,"user_id_str":"1417252969"},"timestamp_ms":"1447080079692"}} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904378368,"id_str":"663728076904378368","text":"RT @kourtneykardash: Who's watching #KUWTK rewind right now?!? Keep watching after for the season finale of #DASHdolls at 9\/8c https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":870869822,"id_str":"870869822","name":"Shari \u0950","screen_name":"sharinelsonx","location":"\u2600\u2b50","url":"http:\/\/sharinelsonx.blogspot.com","description":"X","protected":false,"verified":false,"followers_count":447,"friends_count":64,"listed_count":0,"favourites_count":3226,"statuses_count":25447,"created_at":"Wed Oct 10 00:59:48 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"121516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167610021\/kZd5eVRc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167610021\/kZd5eVRc.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628624628483780608\/x-d3xdly_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628624628483780608\/x-d3xdly_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/870869822\/1446253884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:03:55 +0000 2015","id":663522371647598592,"id_str":"663522371647598592","text":"Who's watching #KUWTK rewind right now?!? Keep watching after for the season finale of #DASHdolls at 9\/8c https:\/\/t.co\/Igkxezavjk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23617610,"id_str":"23617610","name":"Kourtney Kardashian","screen_name":"kourtneykardash","location":null,"url":null,"description":"Heartless","protected":false,"verified":true,"followers_count":16570497,"friends_count":54,"listed_count":29524,"favourites_count":19,"statuses_count":9816,"created_at":"Tue Mar 10 17:12:52 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647212348\/jigsmw1v85ewbz46msc6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647212348\/jigsmw1v85ewbz46msc6.png","profile_background_tile":false,"profile_link_color":"ED8282","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBEBEB","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1673811786\/kourt_face_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1673811786\/kourt_face_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23617610\/1442207275","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":273,"favorite_count":1480,"entities":{"hashtags":[{"text":"KUWTK","indices":[15,21]},{"text":"DASHdolls","indices":[87,97]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663522316127633409,"id_str":"663522316127633409","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","url":"https:\/\/t.co\/Igkxezavjk","display_url":"pic.twitter.com\/Igkxezavjk","expanded_url":"http:\/\/twitter.com\/kourtneykardash\/status\/663522371647598592\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663522316127633409,"id_str":"663522316127633409","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","url":"https:\/\/t.co\/Igkxezavjk","display_url":"pic.twitter.com\/Igkxezavjk","expanded_url":"http:\/\/twitter.com\/kourtneykardash\/status\/663522371647598592\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":13553,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/pl\/FLdsvdX7bWOfgLQ9.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/pl\/FLdsvdX7bWOfgLQ9.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/640x360\/SyEIfJ1rcN3wIFPc.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/320x180\/8hgKdrq6GJ__Ud4E.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/640x360\/SyEIfJ1rcN3wIFPc.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KUWTK","indices":[36,42]},{"text":"DASHdolls","indices":[108,118]}],"urls":[],"user_mentions":[{"screen_name":"kourtneykardash","name":"Kourtney Kardashian","id":23617610,"id_str":"23617610","indices":[3,19]}],"symbols":[],"media":[{"id":663522316127633409,"id_str":"663522316127633409","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","url":"https:\/\/t.co\/Igkxezavjk","display_url":"pic.twitter.com\/Igkxezavjk","expanded_url":"http:\/\/twitter.com\/kourtneykardash\/status\/663522371647598592\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663522371647598592,"source_status_id_str":"663522371647598592","source_user_id":23617610,"source_user_id_str":"23617610"}]},"extended_entities":{"media":[{"id":663522316127633409,"id_str":"663522316127633409","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522316127633409\/pu\/img\/OJCbSZUSrL00bcRh.jpg","url":"https:\/\/t.co\/Igkxezavjk","display_url":"pic.twitter.com\/Igkxezavjk","expanded_url":"http:\/\/twitter.com\/kourtneykardash\/status\/663522371647598592\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663522371647598592,"source_status_id_str":"663522371647598592","source_user_id":23617610,"source_user_id_str":"23617610","video_info":{"aspect_ratio":[16,9],"duration_millis":13553,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/pl\/FLdsvdX7bWOfgLQ9.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/pl\/FLdsvdX7bWOfgLQ9.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/640x360\/SyEIfJ1rcN3wIFPc.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/320x180\/8hgKdrq6GJ__Ud4E.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522316127633409\/pu\/vid\/640x360\/SyEIfJ1rcN3wIFPc.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904337408,"id_str":"663728076904337408","text":"RT @Geryyy8: Tot b\u00e9 Albiol? Fots mala cara\n@encampanya @Iaia_Toneta https:\/\/t.co\/98qWRDD09r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3397599388,"id_str":"3397599388","name":"Judith Font","screen_name":"JudithFontcat","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":47,"listed_count":0,"favourites_count":306,"statuses_count":73,"created_at":"Fri Jul 31 19:00:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:33 +0000 2015","id":663710519308718081,"id_str":"663710519308718081","text":"Tot b\u00e9 Albiol? Fots mala cara\n@encampanya @Iaia_Toneta https:\/\/t.co\/98qWRDD09r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564731571,"id_str":"564731571","name":"Gerard","screen_name":"Geryyy8","location":"Barcelona","url":null,"description":"Futur traductor. Independentista - #Governemnos. Gora Euskal Herria askatuta. Trempat: @TrempatsUPF i safenc: @castellersSAFA. Gamer i seguidor dels e-Sports.","protected":false,"verified":false,"followers_count":228,"friends_count":468,"listed_count":6,"favourites_count":380,"statuses_count":3260,"created_at":"Fri Apr 27 14:20:46 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584690619869573121\/lXVdcT4R.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584690619869573121\/lXVdcT4R.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641597891375722496\/-FY2Zwre_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641597891375722496\/-FY2Zwre_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564731571\/1442087539","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"encampanya","name":"Autob\u00fas De Campanya","id":904770006,"id_str":"904770006","indices":[30,41]},{"screen_name":"Iaia_Toneta","name":"iaia Toneta","id":523756244,"id_str":"523756244","indices":[42,54]}],"symbols":[],"media":[{"id":663710518306283520,"id_str":"663710518306283520","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","url":"https:\/\/t.co\/98qWRDD09r","display_url":"pic.twitter.com\/98qWRDD09r","expanded_url":"http:\/\/twitter.com\/Geryyy8\/status\/663710519308718081\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":368,"resize":"fit"},"large":{"w":552,"h":368,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663710518306283520,"id_str":"663710518306283520","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","url":"https:\/\/t.co\/98qWRDD09r","display_url":"pic.twitter.com\/98qWRDD09r","expanded_url":"http:\/\/twitter.com\/Geryyy8\/status\/663710519308718081\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":368,"resize":"fit"},"large":{"w":552,"h":368,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Geryyy8","name":"Gerard","id":564731571,"id_str":"564731571","indices":[3,11]},{"screen_name":"encampanya","name":"Autob\u00fas De Campanya","id":904770006,"id_str":"904770006","indices":[43,54]},{"screen_name":"Iaia_Toneta","name":"iaia Toneta","id":523756244,"id_str":"523756244","indices":[55,67]}],"symbols":[],"media":[{"id":663710518306283520,"id_str":"663710518306283520","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","url":"https:\/\/t.co\/98qWRDD09r","display_url":"pic.twitter.com\/98qWRDD09r","expanded_url":"http:\/\/twitter.com\/Geryyy8\/status\/663710519308718081\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":368,"resize":"fit"},"large":{"w":552,"h":368,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663710519308718081,"source_status_id_str":"663710519308718081","source_user_id":564731571,"source_user_id_str":"564731571"}]},"extended_entities":{"media":[{"id":663710518306283520,"id_str":"663710518306283520","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5My1WIAAaPr5.jpg","url":"https:\/\/t.co\/98qWRDD09r","display_url":"pic.twitter.com\/98qWRDD09r","expanded_url":"http:\/\/twitter.com\/Geryyy8\/status\/663710519308718081\/photo\/1","type":"photo","sizes":{"medium":{"w":552,"h":368,"resize":"fit"},"large":{"w":552,"h":368,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663710519308718081,"source_status_id_str":"663710519308718081","source_user_id":564731571,"source_user_id_str":"564731571"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076916944896,"id_str":"663728076916944896","text":"RT @drapignata: -\u00bfEn qu\u00e9 andas?\n-Ac\u00e1, esperando que @danielscioli le conteste alguna pregunta a Lanata. https:\/\/t.co\/2lf641LTNO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":372589200,"id_str":"372589200","name":"Tomi","screen_name":"tomastroncaro","location":"Argentina","url":null,"description":"\u201cRather than love, money, faith, fame and justice, give me truth.\u201d#1995#Avicii","protected":false,"verified":false,"followers_count":164,"friends_count":122,"listed_count":0,"favourites_count":1338,"statuses_count":4609,"created_at":"Tue Sep 13 01:41:34 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557030606924959744\/rT5P_M7k_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557030606924959744\/rT5P_M7k_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/372589200\/1421820750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:28 +0000 2015","id":663708234574905344,"id_str":"663708234574905344","text":"-\u00bfEn qu\u00e9 andas?\n-Ac\u00e1, esperando que @danielscioli le conteste alguna pregunta a Lanata. https:\/\/t.co\/2lf641LTNO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155598890,"id_str":"155598890","name":"Dra. Alcira Pignata","screen_name":"drapignata","location":"Mart\u00ednez, Argentina","url":"http:\/\/es.favstar.fm\/users\/drapignata","description":"Ch\u00fapenme la campeona.","protected":false,"verified":false,"followers_count":307419,"friends_count":839,"listed_count":1520,"favourites_count":407,"statuses_count":49929,"created_at":"Mon Jun 14 15:44:44 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578300176147730433\/rymfIWDi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578300176147730433\/rymfIWDi.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CEDBC3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654683240490401792\/6-cAuLGq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654683240490401792\/6-cAuLGq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155598890\/1423068513","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":320,"favorite_count":389,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danielscioli","name":"Daniel Scioli","id":31133330,"id_str":"31133330","indices":[36,49]}],"symbols":[],"media":[{"id":663708233534726144,"id_str":"663708233534726144","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","url":"https:\/\/t.co\/2lf641LTNO","display_url":"pic.twitter.com\/2lf641LTNO","expanded_url":"http:\/\/twitter.com\/drapignata\/status\/663708234574905344\/photo\/1","type":"photo","sizes":{"medium":{"w":450,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":309,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708233534726144,"id_str":"663708233534726144","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","url":"https:\/\/t.co\/2lf641LTNO","display_url":"pic.twitter.com\/2lf641LTNO","expanded_url":"http:\/\/twitter.com\/drapignata\/status\/663708234574905344\/photo\/1","type":"photo","sizes":{"medium":{"w":450,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":309,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"drapignata","name":"Dra. Alcira Pignata","id":155598890,"id_str":"155598890","indices":[3,14]},{"screen_name":"danielscioli","name":"Daniel Scioli","id":31133330,"id_str":"31133330","indices":[52,65]}],"symbols":[],"media":[{"id":663708233534726144,"id_str":"663708233534726144","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","url":"https:\/\/t.co\/2lf641LTNO","display_url":"pic.twitter.com\/2lf641LTNO","expanded_url":"http:\/\/twitter.com\/drapignata\/status\/663708234574905344\/photo\/1","type":"photo","sizes":{"medium":{"w":450,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":309,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}},"source_status_id":663708234574905344,"source_status_id_str":"663708234574905344","source_user_id":155598890,"source_user_id_str":"155598890"}]},"extended_entities":{"media":[{"id":663708233534726144,"id_str":"663708233534726144","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3HzZW4AAnmzM.jpg","url":"https:\/\/t.co\/2lf641LTNO","display_url":"pic.twitter.com\/2lf641LTNO","expanded_url":"http:\/\/twitter.com\/drapignata\/status\/663708234574905344\/photo\/1","type":"photo","sizes":{"medium":{"w":450,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":450,"h":309,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}},"source_status_id":663708234574905344,"source_status_id_str":"663708234574905344","source_user_id":155598890,"source_user_id_str":"155598890"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079665"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076912795648,"id_str":"663728076912795648","text":"((Cr1tikal gives me life.))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3744929115,"id_str":"3744929115","name":"markimoo","screen_name":"roadiplier","location":"im a pink blur","url":"http:\/\/grumpzilla.tumblr.com\/","description":"Look at what happened to me when I decided to join a band. \u007bAU twitter for Grumpzilla au on tumblr! Icon art by padalickingood on tumblr!\u007d","protected":false,"verified":false,"followers_count":22,"friends_count":9,"listed_count":0,"favourites_count":802,"statuses_count":2744,"created_at":"Wed Sep 23 02:36:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646515828402323456\/xIgugi_8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646515828402323456\/xIgugi_8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3744929115\/1442985573","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079664"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076895973377,"id_str":"663728076895973377","text":"RT @lailaadel1777: \u0627\u0644\u0648\u062c\u0639 \u0644\u064a\u0633 \u0641\u064a \u0627\u0644\u0628\u0643\u0627\u0621 \u062f\u0627\u0626\u0645\u0627 !\n\u0628\u0644 \u0628\u062a\u0644\u0643 \u0627\u0644\u062a\u0646\u0647\u064a\u062f\u0629 \u0627\u0644\u062a\u064a \u062a\u0643\u0627\u062f \u062a\u0646\u0632\u0639 \u0631\u0648\u062d\u0643 \u0628\u0639\u062f\u0647\u0627 !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2874495006,"id_str":"2874495006","name":"\u0646\u0648\u0631\u0629 \u0627\u0644\u062d\u0631\u0628\u064a","screen_name":"nonealhrby1","location":null,"url":null,"description":"\u0631\u0628\u064a \u0631\u0636\u0627\u0627\u0627\u0627\u0643 \u0648\u0627\u0644\u062c\u0646\u0629.","protected":false,"verified":false,"followers_count":304,"friends_count":435,"listed_count":0,"favourites_count":242,"statuses_count":301,"created_at":"Fri Oct 24 04:02:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663454386715287552\/CgnJg-1P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663454386715287552\/CgnJg-1P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2874495006\/1440413076","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:31:25 +0000 2015","id":663302799950786560,"id_str":"663302799950786560","text":"\u0627\u0644\u0648\u062c\u0639 \u0644\u064a\u0633 \u0641\u064a \u0627\u0644\u0628\u0643\u0627\u0621 \u062f\u0627\u0626\u0645\u0627 !\n\u0628\u0644 \u0628\u062a\u0644\u0643 \u0627\u0644\u062a\u0646\u0647\u064a\u062f\u0629 \u0627\u0644\u062a\u064a \u062a\u0643\u0627\u062f \u062a\u0646\u0632\u0639 \u0631\u0648\u062d\u0643 \u0628\u0639\u062f\u0647\u0627 !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4016996571,"id_str":"4016996571","name":"\u0644\u064a\u0627\u0644\u064a \u0627\u0644\u062d\u0646\u064a\u0646","screen_name":"lailaadel1777","location":null,"url":null,"description":"\u0637\u064a\u0628\u0629 \u0627\u0644\u0642\u0644\u0628...","protected":false,"verified":false,"followers_count":2608,"friends_count":2641,"listed_count":1,"favourites_count":86,"statuses_count":1235,"created_at":"Thu Oct 22 13:11:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657892607100588032\/i0vzeRCq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657892607100588032\/i0vzeRCq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4016996571\/1445519908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lailaadel1777","name":"\u0644\u064a\u0627\u0644\u064a \u0627\u0644\u062d\u0646\u064a\u0646","id":4016996571,"id_str":"4016996571","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076921176064,"id_str":"663728076921176064","text":"glassed strawberry jam is the best strawberry jam","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315574804,"id_str":"3315574804","name":"mjkn","screen_name":"kenmajj","location":null,"url":null,"description":"full time shiba inu enthusiast","protected":false,"verified":false,"followers_count":30,"friends_count":24,"listed_count":0,"favourites_count":4968,"statuses_count":5317,"created_at":"Tue Jun 09 18:10:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662720890191265794\/u-IZ1RAs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662720890191265794\/u-IZ1RAs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315574804\/1446834983","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079666"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883365888,"id_str":"663728076883365888","text":"RT @edularro: https:\/\/t.co\/W1mgytJtKS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189481835,"id_str":"2189481835","name":"Natty Corbalan","screen_name":"nattycs501","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":239,"friends_count":136,"listed_count":6,"favourites_count":40600,"statuses_count":18258,"created_at":"Tue Nov 12 02:57:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:41 +0000 2015","id":663716593235591168,"id_str":"663716593235591168","text":"https:\/\/t.co\/W1mgytJtKS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169543938,"id_str":"169543938","name":"edu larro","screen_name":"edularro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1558,"friends_count":1992,"listed_count":1,"favourites_count":758,"statuses_count":6764,"created_at":"Thu Jul 22 16:02:41 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590917861872443393\/8tidU9rd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590917861872443393\/8tidU9rd_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716591788519424,"id_str":"663716591788519424","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","url":"https:\/\/t.co\/W1mgytJtKS","display_url":"pic.twitter.com\/W1mgytJtKS","expanded_url":"http:\/\/twitter.com\/edularro\/status\/663716593235591168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716591788519424,"id_str":"663716591788519424","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","url":"https:\/\/t.co\/W1mgytJtKS","display_url":"pic.twitter.com\/W1mgytJtKS","expanded_url":"http:\/\/twitter.com\/edularro\/status\/663716593235591168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"edularro","name":"edu larro","id":169543938,"id_str":"169543938","indices":[3,12]}],"symbols":[],"media":[{"id":663716591788519424,"id_str":"663716591788519424","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","url":"https:\/\/t.co\/W1mgytJtKS","display_url":"pic.twitter.com\/W1mgytJtKS","expanded_url":"http:\/\/twitter.com\/edularro\/status\/663716593235591168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663716593235591168,"source_status_id_str":"663716593235591168","source_user_id":169543938,"source_user_id_str":"169543938"}]},"extended_entities":{"media":[{"id":663716591788519424,"id_str":"663716591788519424","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-uUUWcAAIoEb.jpg","url":"https:\/\/t.co\/W1mgytJtKS","display_url":"pic.twitter.com\/W1mgytJtKS","expanded_url":"http:\/\/twitter.com\/edularro\/status\/663716593235591168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663716593235591168,"source_status_id_str":"663716593235591168","source_user_id":169543938,"source_user_id_str":"169543938"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080079657"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076887601154,"id_str":"663728076887601154","text":"RT @ArsenalsRelated: That pass by Ozil! #Arsenal\u26bd\ud83d\udd25 https:\/\/t.co\/912s9YGpp3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2186351956,"id_str":"2186351956","name":"Master Chips","screen_name":"Mister_Chips14","location":"Suisse,Suisa,Switherland","url":null,"description":"grrrr","protected":false,"verified":false,"followers_count":94,"friends_count":577,"listed_count":6,"favourites_count":553,"statuses_count":12808,"created_at":"Mon Nov 18 18:57:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615107359392854016\/By0O-vCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615107359392854016\/By0O-vCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2186351956\/1441052283","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:26 +0000 2015","id":663725338934013952,"id_str":"663725338934013952","text":"That pass by Ozil! #Arsenal\u26bd\ud83d\udd25 https:\/\/t.co\/912s9YGpp3","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281199878,"id_str":"281199878","name":"Arsenal Related","screen_name":"ArsenalsRelated","location":"Emirates Stadium ","url":"http:\/\/instagram.com\/arsenalsrelated","description":"Everything Arsenal. London is Red. Football.\n\nTurn on notifications ;)","protected":false,"verified":false,"followers_count":134465,"friends_count":35294,"listed_count":719,"favourites_count":345,"statuses_count":37958,"created_at":"Tue Apr 12 20:50:21 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":true,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639638903184560128\/JWq3Ga1o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639638903184560128\/JWq3Ga1o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281199878\/1443899031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":79,"entities":{"hashtags":[{"text":"Arsenal","indices":[19,27]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725249746345985,"id_str":"663725249746345985","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","url":"https:\/\/t.co\/912s9YGpp3","display_url":"pic.twitter.com\/912s9YGpp3","expanded_url":"http:\/\/twitter.com\/ArsenalsRelated\/status\/663725338934013952\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725249746345985,"id_str":"663725249746345985","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","url":"https:\/\/t.co\/912s9YGpp3","display_url":"pic.twitter.com\/912s9YGpp3","expanded_url":"http:\/\/twitter.com\/ArsenalsRelated\/status\/663725338934013952\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":12079,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/640x360\/ibX9OZZXlD7tU44R.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/320x180\/4uIBtdQH-K4xO_rS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/640x360\/ibX9OZZXlD7tU44R.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/pl\/NrnaDXERJVWsda19.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/pl\/NrnaDXERJVWsda19.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Arsenal","indices":[40,48]}],"urls":[],"user_mentions":[{"screen_name":"ArsenalsRelated","name":"Arsenal Related","id":281199878,"id_str":"281199878","indices":[3,19]}],"symbols":[],"media":[{"id":663725249746345985,"id_str":"663725249746345985","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","url":"https:\/\/t.co\/912s9YGpp3","display_url":"pic.twitter.com\/912s9YGpp3","expanded_url":"http:\/\/twitter.com\/ArsenalsRelated\/status\/663725338934013952\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663725338934013952,"source_status_id_str":"663725338934013952","source_user_id":281199878,"source_user_id_str":"281199878"}]},"extended_entities":{"media":[{"id":663725249746345985,"id_str":"663725249746345985","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663725249746345985\/pu\/img\/rQYJO5ns7wN9ojT1.jpg","url":"https:\/\/t.co\/912s9YGpp3","display_url":"pic.twitter.com\/912s9YGpp3","expanded_url":"http:\/\/twitter.com\/ArsenalsRelated\/status\/663725338934013952\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663725338934013952,"source_status_id_str":"663725338934013952","source_user_id":281199878,"source_user_id_str":"281199878","video_info":{"aspect_ratio":[16,9],"duration_millis":12079,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/640x360\/ibX9OZZXlD7tU44R.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/320x180\/4uIBtdQH-K4xO_rS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/vid\/640x360\/ibX9OZZXlD7tU44R.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/pl\/NrnaDXERJVWsda19.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663725249746345985\/pu\/pl\/NrnaDXERJVWsda19.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079658"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908568576,"id_str":"663728076908568576","text":"RT @manairaaraujo: N\u00e3o abuse do portunhol. Conhe\u00e7a + de 100 #falsoscognatos portugu\u00eas x espanhol #falsosamigos\nhttps:\/\/t.co\/4DO7XnNQow http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":49350390,"id_str":"49350390","name":"Tania Sardinha","screen_name":"taniasardinha","location":"Brasil","url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":133,"listed_count":0,"favourites_count":96,"statuses_count":126,"created_at":"Sun Jun 21 16:08:30 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/136355086\/DSC08103.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/136355086\/DSC08103.JPG","profile_background_tile":true,"profile_link_color":"4533CC","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/314089098\/twiter_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/314089098\/twiter_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:24:36 +0000 2015","id":663693668734242816,"id_str":"663693668734242816","text":"N\u00e3o abuse do portunhol. Conhe\u00e7a + de 100 #falsoscognatos portugu\u00eas x espanhol #falsosamigos\nhttps:\/\/t.co\/4DO7XnNQow https:\/\/t.co\/OxkA5KENaB","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204031920,"id_str":"204031920","name":"Manaira Ara\u00fajo","screen_name":"manairaaraujo","location":"Madrid","url":"http:\/\/www.manairaaraujo.com","description":"Marketer, Journalist, Community Manager and Traveler","protected":false,"verified":false,"followers_count":4908,"friends_count":5384,"listed_count":482,"favourites_count":1388,"statuses_count":12481,"created_at":"Sun Oct 17 19:27:10 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468652708618985472\/ETQ7gNKF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468652708618985472\/ETQ7gNKF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204031920\/1422196528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"falsoscognatos","indices":[41,56]},{"text":"falsosamigos","indices":[78,91]}],"urls":[{"url":"https:\/\/t.co\/4DO7XnNQow","expanded_url":"http:\/\/bit.ly\/falsosamigosESxPT","display_url":"bit.ly\/falsosamigosES\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663693487917948928,"id_str":"663693487917948928","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","url":"https:\/\/t.co\/OxkA5KENaB","display_url":"pic.twitter.com\/OxkA5KENaB","expanded_url":"http:\/\/twitter.com\/manairaaraujo\/status\/663693668734242816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":226,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":400,"h":226,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663693487917948928,"id_str":"663693487917948928","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","url":"https:\/\/t.co\/OxkA5KENaB","display_url":"pic.twitter.com\/OxkA5KENaB","expanded_url":"http:\/\/twitter.com\/manairaaraujo\/status\/663693668734242816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":226,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":400,"h":226,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"falsoscognatos","indices":[60,75]},{"text":"falsosamigos","indices":[97,110]}],"urls":[{"url":"https:\/\/t.co\/4DO7XnNQow","expanded_url":"http:\/\/bit.ly\/falsosamigosESxPT","display_url":"bit.ly\/falsosamigosES\u2026","indices":[111,134]}],"user_mentions":[{"screen_name":"manairaaraujo","name":"Manaira Ara\u00fajo","id":204031920,"id_str":"204031920","indices":[3,17]}],"symbols":[],"media":[{"id":663693487917948928,"id_str":"663693487917948928","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","url":"https:\/\/t.co\/OxkA5KENaB","display_url":"pic.twitter.com\/OxkA5KENaB","expanded_url":"http:\/\/twitter.com\/manairaaraujo\/status\/663693668734242816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":226,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":400,"h":226,"resize":"fit"}},"source_status_id":663693668734242816,"source_status_id_str":"663693668734242816","source_user_id":204031920,"source_user_id_str":"204031920"}]},"extended_entities":{"media":[{"id":663693487917948928,"id_str":"663693487917948928","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXptfsW4AAK8FH.jpg","url":"https:\/\/t.co\/OxkA5KENaB","display_url":"pic.twitter.com\/OxkA5KENaB","expanded_url":"http:\/\/twitter.com\/manairaaraujo\/status\/663693668734242816\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":226,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":400,"h":226,"resize":"fit"}},"source_status_id":663693668734242816,"source_status_id_str":"663693668734242816","source_user_id":204031920,"source_user_id_str":"204031920"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908601344,"id_str":"663728076908601344","text":"Right hand","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721732075,"id_str":"721732075","name":"Hunter Martin","screen_name":"Tha_Boss_25","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1724,"friends_count":116,"listed_count":0,"favourites_count":6380,"statuses_count":14474,"created_at":"Sat Jul 28 07:43:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663522284972449792\/BD0NMmhe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663522284972449792\/BD0NMmhe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721732075\/1447029043","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076896010240,"id_str":"663728076896010240","text":"En pocas palabras que no me gusta Focus y espero que sea la \u00fanica diferente de Moonlight","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":354851004,"id_str":"354851004","name":"inactive bc school","screen_name":"ariandbiebs","location":"Honeymoon Avenue","url":null,"description":"And God said -Let there be the perfection- and Ariana born. Justin hugged me, faved me, and followed me in another life. agb\u2661jdb","protected":false,"verified":false,"followers_count":731,"friends_count":703,"listed_count":4,"favourites_count":1550,"statuses_count":6605,"created_at":"Sun Aug 14 12:07:38 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580120056928948224\/DiGx6kCR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580120056928948224\/DiGx6kCR.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662986164178198528\/4OszwjVf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662986164178198528\/4OszwjVf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354851004\/1434528859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076921028608,"id_str":"663728076921028608","text":"RT @PapaJackQuote: Brain, I need you to focus.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3448068733,"id_str":"3448068733","name":"Desteen","screen_name":"Itsjmfernandez","location":"MNL","url":"http:\/\/ask.fm\/Imhannahfernandez","description":"Think of happy thoughts and you'll fly","protected":false,"verified":false,"followers_count":264,"friends_count":288,"listed_count":0,"favourites_count":811,"statuses_count":4159,"created_at":"Fri Sep 04 12:31:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663634827640352768\/Xv2Ybb7g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663634827640352768\/Xv2Ybb7g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3448068733\/1441374911","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821932527616,"id_str":"663727821932527616","text":"Brain, I need you to focus.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1008769416,"id_str":"1008769416","name":"PAPA JACK \u00ae","screen_name":"PapaJackQuote","location":null,"url":"http:\/\/bit.ly\/contactpapajack","description":"Papa Jack's Quotable-Quotes-Advices.","protected":false,"verified":false,"followers_count":856805,"friends_count":125,"listed_count":301,"favourites_count":315,"statuses_count":77999,"created_at":"Thu Dec 13 13:08:36 +0000 2012","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A9A07F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000117648415\/4e6e8bab8ab4659fe7b3738b6a8329ce.jpeg","profile_background_tile":true,"profile_link_color":"4C6AA6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"434752","profile_text_color":"30676A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494231469569490944\/W9gCd6_m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008769416\/1409884282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":96,"favorite_count":74,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PapaJackQuote","name":"PAPA JACK \u00ae","id":1008769416,"id_str":"1008769416","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079666"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883406849,"id_str":"663728076883406849","text":"@Way_Things_Work @Funny_Truth \nI can't sleep","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":648673566628560896,"in_reply_to_status_id_str":"648673566628560896","in_reply_to_user_id":482658470,"in_reply_to_user_id_str":"482658470","in_reply_to_screen_name":"Way_Things_Work","user":{"id":2699060857,"id_str":"2699060857","name":"Shaarif Dar","screen_name":"DarShaarif","location":null,"url":null,"description":"Go Nawaz Go","protected":false,"verified":false,"followers_count":8,"friends_count":106,"listed_count":0,"favourites_count":172,"statuses_count":209,"created_at":"Fri Aug 01 19:26:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569573805694017536\/KZO9g1t0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569573805694017536\/KZO9g1t0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2699060857\/1424680286","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Way_Things_Work","name":"Optical Illusion","id":482658470,"id_str":"482658470","indices":[0,16]},{"screen_name":"Funny_Truth","name":"Survival Tips","id":296623811,"id_str":"296623811","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079657"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904337409,"id_str":"663728076904337409","text":"\u041d\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u043e\u043f\u0440\u043e\u0441\u0430 \u043c\u0435\u043d\u044f \u0432\u0434\u043e\u0445\u043d\u043e\u0432\u0438\u043b\u0430 \u043c\u043e\u044f \u043d\u043e\u0432\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u0447\u0438\u0446\u0430 \u0438\u0437 \u041f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0430, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u0442 \u043d\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u0441\u0435\u0431\u044f \u0432 \u0422\u0432\u0438\u0442\u0442\u0435\u0440\u0435 \u0411\u0435\u043b\u043b\u0430\u0442\u0440\u0438\u0441\u043e\u0439...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245250158,"id_str":"245250158","name":"\u0410\u043d\u0430\u0441\u0442\u0430\u0441\u0438\u044f \u041a\u0430\u043b\u044c\u043a\u043e","screen_name":"Jett_Phobos","location":"Sevastopol, Russia","url":"http:\/\/phoboseskanor.spybb.ru\/","description":"Librarian worker, swimmer, like music and movies action. Author fantasy and action novells. Lover history, culture and traditions of Iceland and St. Petersburg.","protected":false,"verified":false,"followers_count":70,"friends_count":42,"listed_count":7,"favourites_count":4154,"statuses_count":8265,"created_at":"Mon Jan 31 07:07:04 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453876290949369856\/6ljBaV2J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453876290949369856\/6ljBaV2J.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626730957240934400\/IAdNDWRp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626730957240934400\/IAdNDWRp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245250158\/1438259382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908531712,"id_str":"663728076908531712","text":"@Aristocratt66 ona yalan denmez, \"mekr\" denir. Bildimiz hile yani.. @anadoluajansi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721972908605440,"in_reply_to_status_id_str":"663721972908605440","in_reply_to_user_id":3026388171,"in_reply_to_user_id_str":"3026388171","in_reply_to_screen_name":"Aristocratt66","user":{"id":368357490,"id_str":"368357490","name":"ahmed","screen_name":"ahmedkopar","location":"\u015feyh muhammed muta el-haznev\u00ee","url":null,"description":"@zubeydekopar ar\u015f'a de\u011fin\/diriliyoruz. #ebubekr #\u00f6merbinhattab #\u015f\u00e2h\u0131nak\u015fibend #mevlana #a\u015f\u0131kyunus #sultanfatihan #sultanselimhan #abdulhamidhan #rte","protected":false,"verified":false,"followers_count":471,"friends_count":101,"listed_count":4,"favourites_count":2026,"statuses_count":72592,"created_at":"Mon Sep 05 14:18:03 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000039171389\/3c4b54de69e7d3a8191577f1b02f2e46.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000039171389\/3c4b54de69e7d3a8191577f1b02f2e46.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"2C1703","profile_text_color":"E0912A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648480332833009664\/IPHgmDv8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648480332833009664\/IPHgmDv8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368357490\/1446874554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aristocratt66","name":"aristocrat","id":3026388171,"id_str":"3026388171","indices":[0,14]},{"screen_name":"anadoluajansi","name":"ANADOLU AJANSI","id":461858710,"id_str":"461858710","indices":[68,82]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076895879169,"id_str":"663728076895879169","text":"Mahluk yang bernama manusia memang susah nak dikangja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1076252552,"id_str":"1076252552","name":"\u0645\u0627\u0646\u064a\u0633","screen_name":"mariana_amira","location":null,"url":null,"description":"I Love You","protected":false,"verified":false,"followers_count":1061,"friends_count":2002,"listed_count":0,"favourites_count":3212,"statuses_count":10394,"created_at":"Thu Jan 10 10:27:38 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005002785\/516f6f0c45217cd6d7d4f6714d96727d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005002785\/516f6f0c45217cd6d7d4f6714d96727d.jpeg","profile_background_tile":true,"profile_link_color":"873C13","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640925391213871105\/-idRJm14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640925391213871105\/-idRJm14_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1076252552\/1429109532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076895965185,"id_str":"663728076895965185","text":"Not doing it. Not going to class Thursday...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93764703,"id_str":"93764703","name":"Morgan Nicole Moody","screen_name":"momoods","location":"Newport Beach \u2708\ufe0f New York City","url":null,"description":"Arizona State University Alumni---------------- Parsons The New School of Design","protected":false,"verified":false,"followers_count":141,"friends_count":162,"listed_count":2,"favourites_count":111,"statuses_count":10431,"created_at":"Tue Dec 01 01:59:32 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516003118484426752\/PIZp2teB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516003118484426752\/PIZp2teB.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623159096758239233\/YQGLJNV6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623159096758239233\/YQGLJNV6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93764703\/1446859427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908572672,"id_str":"663728076908572672","text":"RT @kazi_Bendito: @Phantom__F nada t\u00edo, el tema merece que la gente lo escuche ;)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1683058141,"id_str":"1683058141","name":"Ephemeral Phant","screen_name":"Phantom__F","location":"Edinburgh, Scotland","url":"https:\/\/www.youtube.com\/user\/PhantomFriedChicken","description":"Mi biograf\u00eda est\u00e1 escrita en la mesa de un bar.","protected":false,"verified":false,"followers_count":427,"friends_count":233,"listed_count":2,"favourites_count":15901,"statuses_count":17105,"created_at":"Mon Aug 19 11:29:54 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"1B07B0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661674068383563776\/cqeNOM_p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661674068383563776\/cqeNOM_p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1683058141\/1424342800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:08 +0000 2015","id":663725766534955008,"id_str":"663725766534955008","text":"@Phantom__F nada t\u00edo, el tema merece que la gente lo escuche ;)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725052983144448,"in_reply_to_status_id_str":"663725052983144448","in_reply_to_user_id":1683058141,"in_reply_to_user_id_str":"1683058141","in_reply_to_screen_name":"Phantom__F","user":{"id":3234376296,"id_str":"3234376296","name":"Kazi","screen_name":"kazi_Bendito","location":null,"url":"https:\/\/vine.co\/Kazikke","description":"De bar en bar","protected":false,"verified":false,"followers_count":106,"friends_count":101,"listed_count":1,"favourites_count":1757,"statuses_count":2644,"created_at":"Wed Jun 03 00:30:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653945845344288768\/jbyXBc5X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653945845344288768\/jbyXBc5X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234376296\/1433292083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Phantom__F","name":"Ephemeral Phant","id":1683058141,"id_str":"1683058141","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kazi_Bendito","name":"Kazi","id":3234376296,"id_str":"3234376296","indices":[3,16]},{"screen_name":"Phantom__F","name":"Ephemeral Phant","id":1683058141,"id_str":"1683058141","indices":[18,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076887576576,"id_str":"663728076887576576","text":"RT @arrombida: to mt feia p sair de casa hj infelizmente nao vou poder comparecer aos meus compromissos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254588554,"id_str":"3254588554","name":"vinagrete de ma\u00e7a","screen_name":"whatifmagnet","location":"filha do sol do equador","url":null,"description":"o melhor da vida \u00e9 isso e \u00f3cio","protected":false,"verified":false,"followers_count":54,"friends_count":207,"listed_count":0,"favourites_count":1199,"statuses_count":4397,"created_at":"Thu May 14 19:14:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635584403121553408\/X86fibU-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635584403121553408\/X86fibU-.jpg","profile_background_tile":true,"profile_link_color":"007343","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661942544511705088\/Eo8CkGxB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661942544511705088\/Eo8CkGxB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254588554\/1446654375","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:28:59 +0000 2015","id":663694774852022272,"id_str":"663694774852022272","text":"to mt feia p sair de casa hj infelizmente nao vou poder comparecer aos meus compromissos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2683430613,"id_str":"2683430613","name":"a loba","screen_name":"arrombida","location":null,"url":null,"description":"aki eh nois q tira deus do comando","protected":false,"verified":false,"followers_count":5031,"friends_count":388,"listed_count":10,"favourites_count":8328,"statuses_count":32229,"created_at":"Mon Jul 07 13:55:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632379973836361728\/g9EMUb98.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632379973836361728\/g9EMUb98.jpg","profile_background_tile":true,"profile_link_color":"DD2E87","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651511541435617280\/Ybflx-0h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651511541435617280\/Ybflx-0h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2683430613\/1434026199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arrombida","name":"a loba","id":2683430613,"id_str":"2683430613","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080079658"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076900012032,"id_str":"663728076900012032","text":"RT @BB_taeil: @blockbhyo \ud6a8\uc2b4\uc774\uac00 \uc824 \ub9ce\uc774 \uba39\uc5b4\ub193\uace0;;;;\ubb50\uc57c;;;; \uc65c\uadf8\ub798;;;;","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252321212,"id_str":"3252321212","name":"\u25aa\u0e1e\u0e42\u0e22\u0e2d\u0e34\u0e25_\u0e2b\u0e34\u0e49\u0e27\u0e01\u0e4a\u0e2d\u0e22\u25aa","screen_name":"CeeperZx","location":null,"url":"https:\/\/www.facebook.com\/profile.php?id=100004042034877","description":null,"protected":false,"verified":false,"followers_count":23,"friends_count":858,"listed_count":0,"favourites_count":5,"statuses_count":921,"created_at":"Mon Jun 22 04:22:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649235656401522688\/Zbp75BzP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649235656401522688\/Zbp75BzP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252321212\/1447047236","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Feb 28 08:42:09 +0000 2015","id":571591171060854785,"id_str":"571591171060854785","text":"@blockbhyo \ud6a8\uc2b4\uc774\uac00 \uc824 \ub9ce\uc774 \uba39\uc5b4\ub193\uace0;;;;\ubb50\uc57c;;;; \uc65c\uadf8\ub798;;;;","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":571584099850317824,"in_reply_to_status_id_str":"571584099850317824","in_reply_to_user_id":270758502,"in_reply_to_user_id_str":"270758502","in_reply_to_screen_name":"blockbhyo","user":{"id":282839117,"id_str":"282839117","name":"\uc774\ud0dc\uc77c","screen_name":"BB_taeil","location":"\u3161\u3161^","url":null,"description":"\uc548\ub155\ud558\uc138\uc6a9?","protected":false,"verified":true,"followers_count":498951,"friends_count":58,"listed_count":4790,"favourites_count":1,"statuses_count":320,"created_at":"Sat Apr 16 01:38:20 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3128619391\/ec5b97fef73de84e4b25ed692d7f3321_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3128619391\/ec5b97fef73de84e4b25ed692d7f3321_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282839117\/1371704676","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2821,"favorite_count":3509,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blockbhyo","name":"\uc548\uc7ac\ud6a8","id":270758502,"id_str":"270758502","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BB_taeil","name":"\uc774\ud0dc\uc77c","id":282839117,"id_str":"282839117","indices":[3,12]},{"screen_name":"blockbhyo","name":"\uc548\uc7ac\ud6a8","id":270758502,"id_str":"270758502","indices":[14,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080079661"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883255296,"id_str":"663728076883255296","text":"Mata kiri ngantuk. Mata kanan engga.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":952367126,"id_str":"952367126","name":"Kekasihnya Chanyeol\u2661","screen_name":"chichi_yunie","location":"Dihati Chanyeol yang terdalam","url":"http:\/\/kekasihnyachanyeol.wordpress.com","description":"Multifandom.\r\nSedang menantikan Zanira debut.\r\nAktifis pembela para mantan.\r\nKonohamaruGaraKakashi\u2661\r\nMenulis.Menghayal.Bahagia","protected":false,"verified":false,"followers_count":370,"friends_count":238,"listed_count":2,"favourites_count":328,"statuses_count":16472,"created_at":"Fri Nov 16 20:31:38 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549794544212922368\/R005nyKe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549794544212922368\/R005nyKe.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654150736146755588\/z15QnPyw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654150736146755588\/z15QnPyw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/952367126\/1438678555","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080079657"} +{"delete":{"status":{"id":663726806038659072,"id_str":"663726806038659072","user_id":2949194571,"user_id_str":"2949194571"},"timestamp_ms":"1447080079734"}} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076900052992,"id_str":"663728076900052992","text":"RT @93_pang: \uc57c\ubb34\uc9c0\uac8c \uc57c\uad11\ubd09 \uc7a5\ucc29 ( \ub78c\ub434\ub9ac\ub294 \ub0b4\uc77c \uc5c5\uccb4\uc5d0\uc11c \uc0ac\uc9c4 \ubcf4\ub0b4\uc8fc\uc2ed\ub2c8\ub2e4! ) https:\/\/t.co\/pwYwC5V1sf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2162410957,"id_str":"2162410957","name":"JANUARY 23 2016 \u2654","screen_name":"Kaisoo9493_","location":"Gas Station Squad \u2764","url":null,"description":"We cant turn back the time but we can start a new beggining to have a good ending - EXO \u2764\u2728 \nFOREVER WITH MY BOYS \u2764","protected":false,"verified":false,"followers_count":685,"friends_count":431,"listed_count":3,"favourites_count":17183,"statuses_count":21949,"created_at":"Tue Oct 29 08:19:50 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"CC0099","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661554485714513920\/GGEfMRsJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661554485714513920\/GGEfMRsJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2162410957\/1446215941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:17 +0000 2015","id":663723287084593152,"id_str":"663723287084593152","text":"\uc57c\ubb34\uc9c0\uac8c \uc57c\uad11\ubd09 \uc7a5\ucc29 ( \ub78c\ub434\ub9ac\ub294 \ub0b4\uc77c \uc5c5\uccb4\uc5d0\uc11c \uc0ac\uc9c4 \ubcf4\ub0b4\uc8fc\uc2ed\ub2c8\ub2e4! ) https:\/\/t.co\/pwYwC5V1sf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3190006406,"id_str":"3190006406","name":"\ud3ad\ub434\ub9ac(\uc0dd\uc0b0\uc0d8\ud50c\uc81c\uc791\uc911)","screen_name":"93_pang","location":" \uc7749\uc870","url":"http:\/\/blog.naver.com\/pang_1993","description":"\ub3c4\uc548\u25b6 \uc624\ub204\uc774(@dhsn220) \ub2d8 \/ group order \u25b6 @pang19932 \/ \uba58\uc158\ub4e4 \ud558\ub098\ud558\ub098 \uac10\uc0ac\ud569\ub2c8\ub2e4! \/ \ubc30\uc1a1 12\uc6d4\ucd08\uc911\uc21c\uc608\uc0c1 \/ \uc785\uae08\ub9c8\uac10 \/\ubb38\uc758\ub294 pang_1993@naver.com \uba54\uc77c\ub85c! \/ \ud50c\ubbf8\uac70\ub798 \uae08\uc9c0 2\ucc28\ud310\ub9e4\uc5c6\uc2b5\ub2c8\ub2e4!","protected":false,"verified":false,"followers_count":6178,"friends_count":15,"listed_count":21,"favourites_count":2080,"statuses_count":1445,"created_at":"Sat May 09 17:11:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622798525273739264\/P9E87njY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622798525273739264\/P9E87njY.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640024787234885632\/qKBWefDf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640024787234885632\/qKBWefDf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190006406\/1444138630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723285889204225,"id_str":"663723285889204225","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723285889204225,"id_str":"663723285889204225","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663723282504417280,"id_str":"663723282504417280","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzxLVAAAVU70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzxLVAAAVU70.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"93_pang","name":"\ud3ad\ub434\ub9ac(\uc0dd\uc0b0\uc0d8\ud50c\uc81c\uc791\uc911)","id":3190006406,"id_str":"3190006406","indices":[3,11]}],"symbols":[],"media":[{"id":663723285889204225,"id_str":"663723285889204225","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663723287084593152,"source_status_id_str":"663723287084593152","source_user_id":3190006406,"source_user_id_str":"3190006406"}]},"extended_entities":{"media":[{"id":663723285889204225,"id_str":"663723285889204225","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz9yUwAE6XeH.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663723287084593152,"source_status_id_str":"663723287084593152","source_user_id":3190006406,"source_user_id_str":"3190006406"},{"id":663723282504417280,"id_str":"663723282504417280","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEzxLVAAAVU70.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEzxLVAAAVU70.jpg","url":"https:\/\/t.co\/pwYwC5V1sf","display_url":"pic.twitter.com\/pwYwC5V1sf","expanded_url":"http:\/\/twitter.com\/93_pang\/status\/663723287084593152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663723287084593152,"source_status_id_str":"663723287084593152","source_user_id":3190006406,"source_user_id_str":"3190006406"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080079661"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883230720,"id_str":"663728076883230720","text":"\u9999\u5ddd\u304c\u76f8\u5909\u308f\u3089\u305a\u3046\u3069\u3093\u597d\u304d\u3059\u304e\u3067\u5b89\u5fc3\u3057\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2971714592,"id_str":"2971714592","name":"\u3072\u307e\u3058\u3087","screen_name":"himajyo101","location":"\u65e5\u672c","url":null,"description":"\u6211\u611b\u53f0\u6e7e\u3002Spexial\u3002\u4e2d\u56fd\u8a9e\u304a\u52c9\u5f37\u4e2d\u3002","protected":false,"verified":false,"followers_count":15,"friends_count":47,"listed_count":1,"favourites_count":26,"statuses_count":2021,"created_at":"Sat Jan 10 10:35:18 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660828239217078272\/RQWs4Mt8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660828239217078272\/RQWs4Mt8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971714592\/1431790099","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079657"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891684868,"id_str":"663728076891684868","text":"@345_sayaka \n\u3082\u3061\u308d\u3093\u2661\u2661\n\u30ad\u30e2\u30f2\u30bf(\u2229^o^)\u2283\u2501\u2501\u2501\u2501\u2501\u2606\uff9f.*\uff65\uff61","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662745144093835264,"in_reply_to_status_id_str":"662745144093835264","in_reply_to_user_id":2744493176,"in_reply_to_user_id_str":"2744493176","in_reply_to_screen_name":"345_sayaka","user":{"id":3039037632,"id_str":"3039037632","name":"\u3082\u3082\u308a\u306e\uff7d\uff67\uff9d","screen_name":"_momorino","location":"Next \u25b7 11\/23 . 12\/23 . 2\/27","url":"http:\/\/twpf.jp\/_momorino","description":"\u2661\u2661\u0337 \u6307 \u539f \u8389 \u4e43 \u3061 \u3083 \u3093\uff08\uff08 @345__chan \uff09\uff09.\u3002","protected":false,"verified":false,"followers_count":243,"friends_count":133,"listed_count":24,"favourites_count":11594,"statuses_count":3744,"created_at":"Tue Feb 24 08:09:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660612356750204929\/mj-zpIV1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660612356750204929\/mj-zpIV1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039037632\/1446337234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"345_sayaka","name":"\u3055\u3084\u3061\u3087\u3059\u6307\u539f\uff08\u5143\u3055\u3084\u304b\u6307\u539f\uff09","id":2744493176,"id_str":"2744493176","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904271872,"id_str":"663728076904271872","text":"bukan nak jakun tapi entahlah awek vietnam lawa lah gila","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496119818,"id_str":"496119818","name":"\u3164\u3164\u3164ad\u00ed","screen_name":"adiputrazuhri","location":null,"url":null,"description":"ailurophile - \u007ba cat lover\u007d","protected":false,"verified":false,"followers_count":3797,"friends_count":298,"listed_count":8,"favourites_count":34948,"statuses_count":43366,"created_at":"Sat Feb 18 16:46:57 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471571735087550464\/6VzY4_vb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471571735087550464\/6VzY4_vb.jpeg","profile_background_tile":true,"profile_link_color":"1A4C63","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663042454132658176\/F0Dl3PpZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663042454132658176\/F0Dl3PpZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496119818\/1446690374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076912615424,"id_str":"663728076912615424","text":"@sno_lovey \u3044\u304f\u306f\u3044\u304f\u304b\u306a \u3044\u307e\u306e\u3068\u3053\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727700243124224,"in_reply_to_status_id_str":"663727700243124224","in_reply_to_user_id":2960943985,"in_reply_to_user_id_str":"2960943985","in_reply_to_screen_name":"sno_lovey","user":{"id":4122722652,"id_str":"4122722652","name":"\u3053\u30fc\u3060\u3044\u306f\u30cf\u30af","screen_name":"ANTI_HERO28","location":null,"url":null,"description":"@yuusu27","protected":false,"verified":false,"followers_count":574,"friends_count":582,"listed_count":7,"favourites_count":274,"statuses_count":370,"created_at":"Wed Nov 04 10:09:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726752556933120\/gI8JrfY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726752556933120\/gI8JrfY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4122722652\/1447064536","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sno_lovey","name":"\u3055\u3074\u3053\u21dd\u3086\u304d@\u304b\u305a\u308a\u3085\u304d","id":2960943985,"id_str":"2960943985","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079664"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891824128,"id_str":"663728076891824128","text":"one person followed me and one person unfollowed me \/\/ automatically checked by https:\/\/t.co\/ylkj8ihB9K","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422854314,"id_str":"422854314","name":"Huerta","screen_name":"Rhuerta_70","location":"Houston, TX","url":null,"description":"UHCL","protected":false,"verified":false,"followers_count":667,"friends_count":348,"listed_count":0,"favourites_count":4931,"statuses_count":55282,"created_at":"Sun Nov 27 19:34:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661234144823803904\/lmcU5ifU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661234144823803904\/lmcU5ifU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422854314\/1444622142","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ylkj8ihB9K","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891623424,"id_str":"663728076891623424","text":"\u30c1\u30b1\u30c3\u30c8\u767a\u9001\u304b\u3041\uff7f\uff9c\uff7f\uff9c((*\u00b4\u03c9\uff40*))\uff93\uff7c\uff9e\uff93\uff7c\uff9e\n\u4eca\u66f4\u3060\u3051\u3069\u30de\u30e2\u30e9\u30a4\u798f\u5cf6\u3067\u4f1a\u3048\u308b\u4eba\u3044\u308b\u304b\u306a\uff1f\n\u521d\u306e\u307c\u3063\u3061\u53c2\u6226\u3067\u3061\u3087\u3063\u3068\u5bc2\u3057\u3044\u3057\u5fc3\u7d30\u3044\u306e\u3067\u8ab0\u304b\u4f1a\u3063\u3066\u304f\u308c\u308b\u65b9\u3044\u307e\u305b\u3093\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948784210,"id_str":"2948784210","name":"\u3071\u3093\u3060\u2606Laugh\uff06Peace\u2606","screen_name":"232f1a2c99a34b6","location":"\u7d20\u306e\u81ea\u5206\u3067\u5c45\u308c\u308b\u5834\u6240","url":null,"description":"\u270e*\u3002\u5bae\u91ce\u771f\u5b88(Laugh&Peace)\/XJAPAN\/hide\u2726\u7b11\u9854\u306f\u4e16\u754c\u3092\u6551\u3046\u3088\/We are X\/\u307e\u305f\u6625\u306b\u4f1a\u3044\u307e\u3057\u3087\u3046\u22c8\uff9f\uff65*:.\uff61\u2741*\u0970\u0971\n\n\u3010 http:\/\/twpf.jp\/232f1a2c99a34b6 \u3011\uff3c_(\uff65\u03c9\uff65`)\uff7a\uff7a\u91cd\u8981\uff01\u5fc5\u8aad\uff01\uff01","protected":false,"verified":false,"followers_count":26,"friends_count":27,"listed_count":12,"favourites_count":365,"statuses_count":3223,"created_at":"Mon Dec 29 03:30:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647983413765345280\/XyGjc0gm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647983413765345280\/XyGjc0gm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948784210\/1446824815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076895842304,"id_str":"663728076895842304","text":"\u0627\u0645\u0631\u0627\u0636 \u064a\u0633\u0628\u0628\u0647\u0627 \u0645\u0645\u0627\u0631\u0633\u0629 \u0627\u0644\u062c\u0646\u0633 \u0627\u0644\u0641\u0645\u0648\u064a \u0644\u0644\u0645\u0634\u0627\u0647\u062f\u0629 \u0627\u0636\u063a\u0637 \u0647\u0646\u0627 https:\/\/t.co\/nyKOHSPhYX ABb","source":"\u003ca href=\"https:\/\/twitter.com\/sweetwoman20202\" rel=\"nofollow\"\u003esweetwoman202\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3545072663,"id_str":"3545072663","name":"\u062d\u0646\u064a\u0646 \u0627\u0644\u0645\u0633\u064a\u0631\u0649","screen_name":"Queenwomannew12","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":2397,"created_at":"Fri Sep 04 13:25:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639791954038013952\/azLx3_eS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639791954038013952\/azLx3_eS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nyKOHSPhYX","expanded_url":"http:\/\/goo.gl\/EDUzZo","display_url":"goo.gl\/EDUzZo","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908601345,"id_str":"663728076908601345","text":"RT @zarryalmighty: isso vai p todas @ q tao falando da briana https:\/\/t.co\/fa8qiyC8nW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2559048070,"id_str":"2559048070","name":"Ana J\u00falia","screen_name":"truelouisking","location":"zquad.oned","url":null,"description":"my first real crush was louis tomlinson","protected":false,"verified":false,"followers_count":214,"friends_count":594,"listed_count":2,"favourites_count":319,"statuses_count":8020,"created_at":"Thu May 22 16:22:49 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/472234260393230336\/AmGhJdug.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/472234260393230336\/AmGhJdug.png","profile_background_tile":false,"profile_link_color":"080C42","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661655302593503232\/2TaBI8pp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661655302593503232\/2TaBI8pp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2559048070\/1446585836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:15:52 +0000 2015","id":663510276654956545,"id_str":"663510276654956545","text":"isso vai p todas @ q tao falando da briana https:\/\/t.co\/fa8qiyC8nW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154659777,"id_str":"154659777","name":"karym loves iza","screen_name":"zarryalmighty","location":"iza kyle ju luli rafa pedro","url":null,"description":"do you look at us and laugh, when we hold on to the past?","protected":false,"verified":false,"followers_count":114909,"friends_count":72,"listed_count":93,"favourites_count":19072,"statuses_count":280726,"created_at":"Fri Jun 11 21:32:42 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620637000522141696\/2k4CYfXc.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620637000522141696\/2k4CYfXc.png","profile_background_tile":true,"profile_link_color":"1A1719","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7C7A76","profile_text_color":"3C3C3C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662728583136186368\/v112eYZ8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662728583136186368\/v112eYZ8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154659777\/1446146726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":627678715883978752,"quoted_status_id_str":"627678715883978752","quoted_status":{"created_at":"Sun Aug 02 03:14:02 +0000 2015","id":627678715883978752,"id_str":"627678715883978752","text":"tem umas f\u00e3 q eh engra\u00e7ada n\u00e9 nao manda nem na propria vida tem q pedir pra mae pra ir compra bala e quer manda na vida do idolo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92857805,"id_str":"92857805","name":"lu","screen_name":"harrynoico","location":null,"url":null,"description":"harry can make me smile so easily he's the most beautiful part of my life he's the brightest star in my sky he makes me the happiest person","protected":false,"verified":false,"followers_count":1496,"friends_count":612,"listed_count":17,"favourites_count":2063,"statuses_count":10726,"created_at":"Thu Nov 26 23:25:01 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661305699113259012\/9xBRK37K.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661305699113259012\/9xBRK37K.jpg","profile_background_tile":true,"profile_link_color":"9932CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661999429428363264\/bLeAY3ua_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661999429428363264\/bLeAY3ua_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92857805\/1446501740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":13,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fa8qiyC8nW","expanded_url":"https:\/\/twitter.com\/harrynoico\/status\/627678715883978752","display_url":"twitter.com\/harrynoico\/sta\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fa8qiyC8nW","expanded_url":"https:\/\/twitter.com\/harrynoico\/status\/627678715883978752","display_url":"twitter.com\/harrynoico\/sta\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"zarryalmighty","name":"karym loves iza","id":154659777,"id_str":"154659777","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891648005,"id_str":"663728076891648005","text":"No, novoyir \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":510885745,"id_str":"510885745","name":"MadaiJafetIH\u2693","screen_name":"MadaiJafetIH","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":281,"friends_count":163,"listed_count":0,"favourites_count":148,"statuses_count":1816,"created_at":"Thu Mar 01 21:31:40 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF7BC0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582564412\/f53ajbkv3rq21kcf34z0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582564412\/f53ajbkv3rq21kcf34z0.jpeg","profile_background_tile":false,"profile_link_color":"FDD98F","profile_sidebar_border_color":"FC96AB","profile_sidebar_fill_color":"513D25","profile_text_color":"ED5391","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661398875404562432\/IgX5VZ_E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661398875404562432\/IgX5VZ_E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/510885745\/1442588934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076900057088,"id_str":"663728076900057088","text":"https:\/\/t.co\/DOLJAw9WJT: How about some candy to start off your week? Loves Candy!!","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1095618968,"id_str":"1095618968","name":"Quotes4Follows","screen_name":"Quotes4Follows","location":"Back packing through Europe!","url":"http:\/\/tinyurl.com\/Q4F1000","description":"If you like my tweets then follow me and don't forget to \u24c7\u24ba\u24c9\u24cc\u24ba\u24ba\u24c9! \u2605\u2605\u2605Click on my site for 1000+ Quick Follows & RTers!\u2605\u2605\u2605","protected":false,"verified":false,"followers_count":516,"friends_count":565,"listed_count":8,"favourites_count":0,"statuses_count":701557,"created_at":"Wed Jan 16 16:03:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765402183\/7e94b3f0266264a80feeebef5e398f18.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765402183\/7e94b3f0266264a80feeebef5e398f18.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3117097814\/d102f021e0be36ad3c3c392cd29d6b70_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3117097814\/d102f021e0be36ad3c3c392cd29d6b70_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DOLJAw9WJT","expanded_url":"http:\/\/tiny.cc\/tubechellydev","display_url":"tiny.cc\/tubechellydev","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079661"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904407040,"id_str":"663728076904407040","text":"Pq isso ta acontecendo na minha vida ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349693571,"id_str":"349693571","name":"sdv or unf","screen_name":"opsninhaa","location":"Vidigal, Rio de Janeiro","url":null,"description":"trouxa","protected":false,"verified":false,"followers_count":789,"friends_count":1109,"listed_count":1,"favourites_count":127,"statuses_count":11267,"created_at":"Sat Aug 06 14:50:55 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559826286365798400\/GCoEpls0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559826286365798400\/GCoEpls0.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663330447166980096\/YP2CBQFr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663330447166980096\/YP2CBQFr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349693571\/1447010802","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908462080,"id_str":"663728076908462080","text":"Looks like it's gonna be another night with less than 2.5 hours sleep","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":271133431,"id_str":"271133431","name":"Thomas Elliott","screen_name":"tommoCOOLGUY","location":"Melbourne, Australia","url":"http:\/\/facebook.com\/harboursaus","description":"Travelling Music Videographer\/Photographer\nGuitarist for @harboursaus","protected":false,"verified":false,"followers_count":487,"friends_count":119,"listed_count":2,"favourites_count":2598,"statuses_count":1903,"created_at":"Wed Mar 23 22:47:37 +0000 2011","utc_offset":39600,"time_zone":"Melbourne","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"323232","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/291421795\/cardinal-male-katharina-bruenen.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/291421795\/cardinal-male-katharina-bruenen.jpg","profile_background_tile":true,"profile_link_color":"329191","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D6D6D6","profile_text_color":"4F4F4F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/587922583258996736\/VUi5cXb4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/587922583258996736\/VUi5cXb4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/271133431\/1435164270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076908396544,"id_str":"663728076908396544","text":"RT @TsuyoshiWood: \u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2642636100,"id_str":"2642636100","name":"\u559c\u5c71","screen_name":"sax_Kiyama","location":null,"url":null,"description":"\u97f3\u697d \u30ed\u30b7\u30a2\u8ecd\u304c\u597d\u304d \u56fd\u969b\u60c5\u52e2\u304c\u6c17\u306b\u306a\u308b \u91ce\u753028\u671f \u73fe\u5728\u306f\u9ad83","protected":false,"verified":false,"followers_count":287,"friends_count":310,"listed_count":1,"favourites_count":1183,"statuses_count":4953,"created_at":"Mon Jul 14 03:30:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642997427570511872\/iEgJy2vE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642997427570511872\/iEgJy2vE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2642636100\/1420815539","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:13 +0000 2015","id":663721760114651136,"id_str":"663721760114651136","text":"\u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2472381668,"id_str":"2472381668","name":"\u9d3b\u6c60\u3000\u525b","screen_name":"TsuyoshiWood","location":null,"url":"http:\/\/woodbook.xyz","description":"(\u3053\u3046\u306e\u3044\u3051 \u3064\u3088\u3057)\u3067\u3059\u3002\u6f2b\u753b\u63cf\u3044\u3066\u307e\u3059\u3002\u30a6\u30c3\u30c9\u30d6\u30c3\u30af(\u6f2b\u753b\u65e5\u8a18) http:\/\/woodbook.xyz \u4ed5\u4e8b\u60c5\u5831 http:\/\/goo.gl\/g2oKv6 \u30ea\u30d7\u30e9\u30a4\u898b\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u304c\u3042\u307e\u308a\u8fd4\u4e8b\u3067\u304d\u3066\u307e\u305b\u3093\u3002\u6f2b\u753b\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":513954,"friends_count":168,"listed_count":6381,"favourites_count":400,"statuses_count":5282,"created_at":"Thu May 01 11:52:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10781,"favorite_count":13009,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[36,59]}],"user_mentions":[{"screen_name":"TsuyoshiWood","name":"\u9d3b\u6c60\u3000\u525b","id":2472381668,"id_str":"2472381668","indices":[3,16]}],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079663"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891648006,"id_str":"663728076891648006","text":"\u3042\u3044\u3057\u3066\u308bMAZDA","source":"\u003ca href=\"http:\/\/www.nxtg-t.net\/\" rel=\"nofollow\"\u003eSoratwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179206496,"id_str":"179206496","name":"Sorarinu@\u4f0a\u7e54\u307f\u308a\u3042P","screen_name":"int_sorarinu","location":null,"url":"https:\/\/www.nxtg-t.net\/","description":"\u6765\u5e748\u6708\u304f\u3089\u3044\u306b\u30a2\u30af\u30bb\u30e9\u30b9\u30dd\u30fc\u30c4XD\u8cb7\u3046\u305f\u3081\u306b\u7bc0\u7d04\u751f\u6d3b\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":301,"friends_count":369,"listed_count":14,"favourites_count":16453,"statuses_count":62503,"created_at":"Mon Aug 16 19:29:34 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/531507782835392512\/kIpFEkYu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/531507782835392512\/kIpFEkYu.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643401171432964096\/cRBceUZk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643401171432964096\/cRBceUZk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179206496\/1445327528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076912742400,"id_str":"663728076912742400","text":"amo bife #askbelieber\"sou vc\"eu na vida","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3126707909,"id_str":"3126707909","name":"hayz","screen_name":"growcabello","location":"jb follow 06\/11\/15 \u2764\ufe0f","url":"https:\/\/Instagram.com\/p\/9hM5TfMp_V\/","description":"If you could feel my heart beat now, it would hit you like a sledgehammer","protected":false,"verified":false,"followers_count":2763,"friends_count":755,"listed_count":11,"favourites_count":2625,"statuses_count":10716,"created_at":"Sun Mar 29 14:58:05 +0000 2015","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659744819019935744\/rbodSvE8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659744819019935744\/rbodSvE8.png","profile_background_tile":false,"profile_link_color":"FE805A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663489917981470720\/sxo2oBh3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663489917981470720\/sxo2oBh3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3126707909\/1447023288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"askbelieber","indices":[9,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080079664"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076895850496,"id_str":"663728076895850496","text":"@TheourgiaLe \u305d\u308c\u306f\u591a\u5206\u795e\u66f2\u306e\u524d\u594f\u90e8\u5206\u3067\u5165\u308c\u305f\u899a\u3048\u306e\u306a\u3044\u30d4\u30a2\u30ce\u306e\u4f4e\u97f3\u304c\u805e\u3053\u3048\u308b\u3063\u3066\u3084\u3064\u3067\u3059\u306d\u3002\u78ba\u304b\u300e\u30b9\u30bf\u30c3\u30d5\u306f\u3061\u3073\u3063\u3066\u50d5\u306f\u5168\u90e8\u51fa\u3057\u305f\u300f\u3068\u304b\u8a00\u3063\u3066\u307e\u3057\u305f\u3051\u3069w \u305d\u3093\u306a1st\u30a2\u30eb\u30d0\u30e0\u304b\u3089\u65e2\u306b10\u5e74\u7d4c\u3063\u3066\u307e\u3059\u3057\u61d0\u304b\u3057\u3044\u8a33\u3067\u3059\u3088(- -;*)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725742816006144,"in_reply_to_status_id_str":"663725742816006144","in_reply_to_user_id":2571848162,"in_reply_to_user_id_str":"2571848162","in_reply_to_screen_name":"TheourgiaLe","user":{"id":1164918619,"id_str":"1164918619","name":"\u5c71\u5e78","screen_name":"asyakami","location":null,"url":null,"description":"\u6c17\u306e\u5411\u304f\u307e\u307e\u306b\u4f55\u304b\u8272\u3005\u3002\u8584\u6697\u3044\u5275\u4f5c\u4e16\u754c\u3092\u30a2\u30ca\u30ed\u30b0\u3067\u6c17\u5408\u30b4\u30ea\u30b4\u30ea\u3002\u8584\u6697\u3044\u5275\u4f5c\u4eba\u3092\u30c7\u30b8\u30bf\u30eb\u3067\u30e9\u30af\u30ac\u30ad\u3082\u308a\u3082\u308a\u3002\u597d\u304d\u306a\u97f3\u697d\u3084\u30b2\u30fc\u30e0\u306b\u3064\u3044\u3066\u307d\u3061\u307d\u3061\u3002","protected":false,"verified":false,"followers_count":121,"friends_count":136,"listed_count":2,"favourites_count":789,"statuses_count":11170,"created_at":"Sun Feb 10 04:30:10 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"7788AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660466436725301251\/M9Nhbum1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660466436725301251\/M9Nhbum1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1164918619\/1445952431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheourgiaLe","name":"\u30c6\u30a6\u30eb\u30ae\u30a2\uff20\u30c6\u30a3\u30a2[\u304224\uff42]11\/15","id":2571848162,"id_str":"2571848162","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079660"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904271873,"id_str":"663728076904271873","text":"@mpb6k \u3044\u3044\u3048\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717987925422080,"in_reply_to_status_id_str":"663717987925422080","in_reply_to_user_id":3328983776,"in_reply_to_user_id_str":"3328983776","in_reply_to_screen_name":"mpb6k","user":{"id":3324620552,"id_str":"3324620552","name":"\u307f\u3085\u3046\u3082\\\u2661\/\u306b\u3053\u3061\u3085\u3046","screen_name":"kimpa0976","location":"\u85e4\u7530\u30cb\u30b3\u30eb \u5927\u9808\u30a4\u30d9\u53c2\u6226","url":null,"description":"JC3\u2600\ufe0e \u308c\u3044\u308c\u3044\/\u306b\u3053\u308b\u3093-\/ \u2661*\u306b\u3053\u308b\u3093\u540c\u76df\u2116760 -like- \u30e2\u30c7\u30eb\/\u304a\u3057\u3083\u308c\/PINK\/\u3044\u3061\u3054\/WEGO\/Love \u85e4\u7530\u30cb\u30b3\u30eb \u5927\u9808\u30a4\u30d9\u53c2\u6226\u4e88\u5b9a \u307d\u3093\u306a\u30fc","protected":false,"verified":false,"followers_count":474,"friends_count":891,"listed_count":5,"favourites_count":554,"statuses_count":492,"created_at":"Sat Aug 22 16:52:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638401187398610944\/-7frQTSz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638401187398610944\/-7frQTSz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3324620552\/1443920660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mpb6k","name":"\u0dc6\u0dc6 \u2133\u1d35\u1d5e\u1d58 \u0dc6\u0dc6","id":3328983776,"id_str":"3328983776","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076887453696,"id_str":"663728076887453696","text":"Bruh where he at doe \ud83d\ude02\ud83d\ude2d https:\/\/t.co\/Pan8Jgo0yo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":499247983,"id_str":"499247983","name":"IMeanIMJustJoyia\u2764\ufe0f","screen_name":"ThugLyfe_Joyia","location":null,"url":"http:\/\/Grind.com","description":null,"protected":false,"verified":false,"followers_count":1654,"friends_count":1678,"listed_count":1,"favourites_count":1889,"statuses_count":59464,"created_at":"Tue Feb 21 22:54:37 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000061927531\/6491645ec8e5698adf69feb5cc8f79a0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000061927531\/6491645ec8e5698adf69feb5cc8f79a0.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663464042560925696\/wuadHYJz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663464042560925696\/wuadHYJz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/499247983\/1447017129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663519632494604288,"quoted_status_id_str":"663519632494604288","quoted_status":{"created_at":"Mon Nov 09 00:53:02 +0000 2015","id":663519632494604288,"id_str":"663519632494604288","text":"\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude29\ud83d\ude29\ud83d\ude29\ud83d\ude29 https:\/\/t.co\/NnCUfEWYto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720673791,"id_str":"720673791","name":"CrownMe_Tay","screen_name":"Only1Taylorr_","location":null,"url":null,"description":"MI$$ 18 , rip god mom #freemypops\u2764\ufe0f","protected":false,"verified":false,"followers_count":10214,"friends_count":8541,"listed_count":4,"favourites_count":5950,"statuses_count":31767,"created_at":"Fri Oct 18 12:50:15 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097950977\/f9dcde257d5c7898198259b8bebd58e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097950977\/f9dcde257d5c7898198259b8bebd58e9.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661182478389010432\/Ak_dbsna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661182478389010432\/Ak_dbsna_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663519628849737728,"id_str":"663519628849737728","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVLlkMWcAAvcJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVLlkMWcAAvcJx.jpg","url":"https:\/\/t.co\/NnCUfEWYto","display_url":"pic.twitter.com\/NnCUfEWYto","expanded_url":"http:\/\/twitter.com\/Only1Taylorr_\/status\/663519632494604288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663519628849737728,"id_str":"663519628849737728","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVLlkMWcAAvcJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVLlkMWcAAvcJx.jpg","url":"https:\/\/t.co\/NnCUfEWYto","display_url":"pic.twitter.com\/NnCUfEWYto","expanded_url":"http:\/\/twitter.com\/Only1Taylorr_\/status\/663519632494604288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Pan8Jgo0yo","expanded_url":"https:\/\/twitter.com\/only1taylorr_\/status\/663519632494604288","display_url":"twitter.com\/only1taylorr_\/\u2026","indices":[24,47]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079658"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076916789249,"id_str":"663728076916789249","text":"Buenos d\u00edas. Feliz lunes de cama \u263a\ufe0f... En breve te traigo algunas recomendaciones para medio d\u00eda.\u2026 https:\/\/t.co\/DsNNzJyutH","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":460451881,"id_str":"460451881","name":"Gu\u00eda de Restaurantes","screen_name":"GuiaAyB","location":"RD","url":"http:\/\/www.guiaayb.com.do","description":"Comer, compartir experiencias gastron\u00f3micas y comentar sobre los mejores restaurantes de RD. HT#guiaayb. guiaayb.rd@gmail.com","protected":false,"verified":false,"followers_count":13206,"friends_count":671,"listed_count":47,"favourites_count":674,"statuses_count":6332,"created_at":"Tue Jan 10 19:36:59 +0000 2012","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662801692061102081\/jp6fdQ5U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662801692061102081\/jp6fdQ5U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460451881\/1378513058","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DsNNzJyutH","expanded_url":"https:\/\/instagram.com\/p\/93icgGi5OT\/","display_url":"instagram.com\/p\/93icgGi5OT\/","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079665"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883267588,"id_str":"663728076883267588","text":"@dandusic @ayonLTE ??","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727835714990081,"in_reply_to_status_id_str":"663727835714990081","in_reply_to_user_id":356708418,"in_reply_to_user_id_str":"356708418","in_reply_to_screen_name":"dandusic","user":{"id":3015770651,"id_str":"3015770651","name":"\uc0c1\ud604\u22bf","screen_name":"CainanyaP","location":"\ub178\uae30\uc790\uce74,\ucf00\uc57c\ud0a4\uc790\uce74,48","url":null,"description":"\uc5d0\ud1a0\ubbf8\uc0ac,\ud638\uc2dc\ub178\ubbf8\ub098\ubbf8,\ud0a4\ud0c0\ub178\ud788\ub098\ucf54,\ud6c4\uce74\uac00\uc640\ub9c8\uc774+\/4846\/2D\/\uc131\uc6b0\/\ud799\ud569\/\uac8c\uc784\/\uc0ac\ub2f4\uc695\ud2b8\ub9ce\uc73c\ub2c8\ub9de\ud314\uc548\ud574\uc8fc\uc154\ub3c4\ub3fc\uc694","protected":false,"verified":false,"followers_count":386,"friends_count":368,"listed_count":3,"favourites_count":3835,"statuses_count":73158,"created_at":"Wed Feb 04 00:15:56 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659031109066321921\/xg3gXeko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659031109066321921\/xg3gXeko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3015770651\/1444262920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dandusic","name":"\uaddc\ud3ed\ub3c4","id":356708418,"id_str":"356708418","indices":[0,9]},{"screen_name":"ayonLTE","name":"\uc544\uc5f0 LTE\u22bf","id":175040477,"id_str":"175040477","indices":[10,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080079657"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904378369,"id_str":"663728076904378369","text":"Symbiant https:\/\/t.co\/8RWBleleyS #art #scarletmonahan #photography #contemporary #galllery #artist #poetry #monochrome #blackandwhite","source":"\u003ca href=\"http:\/\/www.soliddogleads.com\" rel=\"nofollow\"\u003eautotweeter pro4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":292619181,"id_str":"292619181","name":"scarlet monahan","screen_name":"scarletmonahan","location":"UK","url":"http:\/\/www.redintherain.com","description":"looking in-looking on,\r\nmaking art and still trying to work out the difference between a smile and a grin-\r\nphotography sculpture poetry celebrity controversial","protected":false,"verified":false,"followers_count":1605935,"friends_count":25084,"listed_count":543,"favourites_count":180157,"statuses_count":865620,"created_at":"Tue May 03 23:23:17 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600039077291786240\/uSanfkcL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600039077291786240\/uSanfkcL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/292619181\/1385844587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"art","indices":[33,37]},{"text":"scarletmonahan","indices":[38,53]},{"text":"photography","indices":[54,66]},{"text":"contemporary","indices":[67,80]},{"text":"galllery","indices":[81,90]},{"text":"artist","indices":[91,98]},{"text":"poetry","indices":[99,106]},{"text":"monochrome","indices":[107,118]},{"text":"blackandwhite","indices":[119,133]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":594505617378783233,"id_str":"594505617378783233","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CEAbtYzWMAEKen_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CEAbtYzWMAEKen_.jpg","url":"https:\/\/t.co\/8RWBleleyS","display_url":"pic.twitter.com\/8RWBleleyS","expanded_url":"http:\/\/twitter.com\/scarletmonahan\/status\/594505618267987968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":650,"h":431,"resize":"fit"}},"source_status_id":594505618267987968,"source_status_id_str":"594505618267987968","source_user_id":292619181,"source_user_id_str":"292619181"}]},"extended_entities":{"media":[{"id":594505617378783233,"id_str":"594505617378783233","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CEAbtYzWMAEKen_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CEAbtYzWMAEKen_.jpg","url":"https:\/\/t.co\/8RWBleleyS","display_url":"pic.twitter.com\/8RWBleleyS","expanded_url":"http:\/\/twitter.com\/scarletmonahan\/status\/594505618267987968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":397,"resize":"fit"},"large":{"w":650,"h":431,"resize":"fit"}},"source_status_id":594505618267987968,"source_status_id_str":"594505618267987968","source_user_id":292619181,"source_user_id_str":"292619181"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076912656384,"id_str":"663728076912656384","text":"This race of discipleship is not a sprint;it\u2019s a marathon. And it makes little difference how fast we go @CecProff \n https:\/\/t.co\/dNXBuKJ7w6","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159634770,"id_str":"159634770","name":"Lance Proffit","screen_name":"lproff85","location":"Snohomish, Washington","url":"http:\/\/mormon.org\/me\/1874\/Lance","description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":66,"listed_count":1,"favourites_count":138,"statuses_count":107,"created_at":"Fri Jun 25 23:03:20 +0000 2010","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516723028362027008\/I6g-326V_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516723028362027008\/I6g-326V_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159634770\/1412031301","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dNXBuKJ7w6","expanded_url":"http:\/\/www.lds.org\/ensign\/2015\/10\/finish-with-your-torch-still-lit?lang=eng","display_url":"lds.org\/ensign\/2015\/10\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"CecProff","name":"cec\u00e9","id":442086354,"id_str":"442086354","indices":[105,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080079664"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076883275776,"id_str":"663728076883275776","text":"@Got_God98 \ud750\uc5d0\uc5d0\uc5e5\uc5d0\uc5d0\uc5d0\u3154\uc5d0(\uad11\uad11\uc6b4\ub2e4)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727812801499136,"in_reply_to_status_id_str":"663727812801499136","in_reply_to_user_id":717759259,"in_reply_to_user_id_str":"717759259","in_reply_to_screen_name":"Got_God98","user":{"id":2652933673,"id_str":"2652933673","name":"\uac00\ubbf8\uc785\ub2c8\ub2e4","screen_name":"seokyung622","location":"\uc18c\uc18c\ud55c \uc774\uc57c\uae30","url":null,"description":"\uc774\uc81c\ubd80\ud130 \ud2b8\uce5c\uc18c\uc544\ub2d0\ub54c \ud314\ub85c\uc2dc \ubaa8\ub450 \ube14\uc5b8\ube14~~","protected":false,"verified":false,"followers_count":57,"friends_count":82,"listed_count":0,"favourites_count":1923,"statuses_count":9951,"created_at":"Thu Jul 17 04:58:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657948619992002560\/yMT-ykrf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657948619992002560\/yMT-ykrf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2652933673\/1438055816","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Got_God98","name":"\uac13\uae40\uce58","id":717759259,"id_str":"717759259","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080079657"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904361984,"id_str":"663728076904361984","text":"RT @JuanCruzFerre: Lo amo con la vida a mi pap\u00e1 \ud83d\udc98\ud83d\udc98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347386320,"id_str":"2347386320","name":"\u2206Nano\u2206","screen_name":"Becerra_Nano16","location":"San Juan, Argentina","url":null,"description":"Si el d\u00eda te sonr\u00ede, sonriele tu a \u00e9l\u2206 || 12 a\u00f1os ||Handball || Capricornio||San Juan || C.I.H || Wsp:2644554533\u2206","protected":false,"verified":false,"followers_count":721,"friends_count":276,"listed_count":0,"favourites_count":288,"statuses_count":1493,"created_at":"Sun Feb 16 20:13:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/619955874170322945\/G5OoSS3k.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/619955874170322945\/G5OoSS3k.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645314156791504896\/9ppnW2Rb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645314156791504896\/9ppnW2Rb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2347386320\/1443385962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:56 +0000 2015","id":663727477517377536,"id_str":"663727477517377536","text":"Lo amo con la vida a mi pap\u00e1 \ud83d\udc98\ud83d\udc98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":307156648,"id_str":"307156648","name":"Dave","screen_name":"JuanCruzFerre","location":"Argentina","url":"http:\/\/Instagram.com\/juancruzferre.05\/","description":"A veces la sonrisa m\u00e1s bella llega despu\u00e9s de la l\u00e1grima m\u00e1s dolorosa.","protected":false,"verified":false,"followers_count":892,"friends_count":565,"listed_count":1,"favourites_count":4181,"statuses_count":8539,"created_at":"Sun May 29 03:51:11 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA0A0A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663538223952605184\/KA3CSqLC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663538223952605184\/KA3CSqLC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307156648\/1446663388","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JuanCruzFerre","name":"Dave","id":307156648,"id_str":"307156648","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080079662"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076900032512,"id_str":"663728076900032512","text":"\u3010\u30de\u30a4\u30ea\u30b9\u30c8\u3011\u3010GUMI\u00d7Big-AL\u3011\u30b4\u30ed\u30fc\u30f3\u30b4\u30ed\u30fc\u30f3\uff5e\u30d5\u30f3\u30b3\u30ed\u30ac\u30b7\uff5e\u3010\u30aa\u30ea\u30b8\u30ca\u30eb\u66f2\u3084\u3067\u3011 https:\/\/t.co\/2fKfZa1FOq #sm11195204","source":"\u003ca href=\"http:\/\/www.nicovideo.jp\/\" rel=\"nofollow\"\u003eniconico \u30cb\u30b3\u30ec\u30dd\u9023\u643a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":332794181,"id_str":"332794181","name":"s-fire@11\/8 EGOIST\u5927\u962a","screen_name":"s_fire417","location":"\u5ca1\u5c71\u770c","url":"https:\/\/minkara.carview.co.jp\/smart\/userid\/883703\/profile\/","description":"\u30a2\u30cb\u30bd\u30f3\u5927\u597d\u304d\u2606SuperGT\u5927\u597d\u304d\u2606NSX-GT\u30fbCR-Z GT\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u2606\uff0fMay'n\uff0fLiSA\uff0fangela\uff0f\u690e\u540d\u3078\u304d\u308b\uff0f\u9234\u6728\u3053\u306e\u307f\uff0f\u5343\u83c5\u6625\u9999\uff0fEGOIST\uff0fkalafina\uff0fnano.RIPE\uff0f\u3053\u3091\u3060","protected":false,"verified":false,"followers_count":155,"friends_count":441,"listed_count":7,"favourites_count":371,"statuses_count":6637,"created_at":"Sun Jul 10 12:41:30 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1818784119\/v7EIv45A_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1818784119\/v7EIv45A_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/332794181\/1410781905","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm11195204","indices":[71,82]}],"urls":[{"url":"https:\/\/t.co\/2fKfZa1FOq","expanded_url":"http:\/\/nico.ms\/sm11195204","display_url":"nico.ms\/sm11195204","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079661"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891684869,"id_str":"663728076891684869","text":"@htmcmth \u3074\u3063\u3061\u3074\u3063\u3061\u3001\u3061\u3083\u3063\u3077\u3061\u3083\u3063\u3077\u3001\u3089\u3093\u3089\u3093\u3089\u3093...\u266a*\uff9f\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716281556692992,"in_reply_to_status_id_str":"663716281556692992","in_reply_to_user_id":608591068,"in_reply_to_user_id_str":"608591068","in_reply_to_screen_name":"htmcmth","user":{"id":304990779,"id_str":"304990779","name":"\u3042\u307f\u3093\u3053","screen_name":"orangemarket7","location":null,"url":"http:\/\/instagram.com\/orangemarket","description":"\u3044\u308d\u3093\u306a\u4e8b\u3092\u3064\u3076\u3084\u304d\u307e\u3059(\u25cf\u00b4\u03d6`\u25cf)\u30c6\u30ec\u30d3\u3063\u5b50\u3067\u3001\u98df\u3044\u3057\u3093\u574a\u3067\u3059\u3002\u65e5\u30cf\u30e0\u597d\u304d\u3067\u91ce\u7403\u30cd\u30bf\u3082\u3064\u3076\u3084\u3044\u305f\u308a\u3064\u3076\u3084\u304b\u306a\u304b\u3063\u305f\u308a\u3002\u4ef2\u826f\u304f\u7d61\u307f\u305f\u3044\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306e\u6642\u306f@\u304a\u9858\u3044\u3057\u307e\u3059\u2606","protected":false,"verified":false,"followers_count":174,"friends_count":85,"listed_count":2,"favourites_count":1620,"statuses_count":21279,"created_at":"Wed May 25 13:14:16 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552101009300791296\/J7Cwn_lt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552101009300791296\/J7Cwn_lt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304990779\/1401536206","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"htmcmth","name":"\u3072\u30fc\u266a","id":608591068,"id_str":"608591068","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079659"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076900069376,"id_str":"663728076900069376","text":"@mm_mui07 \u63cf\u304b\u306d\u3070(\u771f\u9854)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726660512976901,"in_reply_to_status_id_str":"663726660512976901","in_reply_to_user_id":2539472046,"in_reply_to_user_id_str":"2539472046","in_reply_to_screen_name":"mm_mui07","user":{"id":1867424198,"id_str":"1867424198","name":"\u30c8\u30ca\u30b5\u30fc\u306e\u9ed2","screen_name":"96k12007","location":null,"url":"http:\/\/twpf.jp\/96k12007","description":"\u9ed2\u3002\u6210\u4eba\/\u9060\u65b9\u7d44\/\u9678\u5358\/\u64ec\u4eba\u5316\/\u4eee\u88c5 \r\n\u203b\u65e5\u5e38\u30c4\u30a4\u3084\u4ed6\u30b8\u30e3\u30f3\u30eb\u8a71\u591a\u3005 \r\n\u203b\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u306d","protected":false,"verified":false,"followers_count":260,"friends_count":135,"listed_count":6,"favourites_count":2233,"statuses_count":33904,"created_at":"Sun Sep 15 11:46:37 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660686013484797954\/uM5PM9HA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660686013484797954\/uM5PM9HA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1867424198\/1445786287","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mm_mui07","name":"\u3080\u3044","id":2539472046,"id_str":"2539472046","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079661"} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076904202240,"id_str":"663728076904202240","text":"\u4eca\u65e5\u3046\u3061\u306e\u88fd\u54c1\u3092\u4f7f\u3063\u3066\u304f\u3060\u3055\u3063\u3066\u308b\u95d8\u75c5\u4e2d\u306e\u304a\u5ba2\u69d8\u304b\u3089\u3001\u6765\u5e74\u624b\u8853\u3092\u53d7\u3051\u3066\u4f53\u8abf\u304c\u3088\u304f\u306a\u3063\u305f\u3089\u5831\u544a\u3092\u517c\u306d\u3066\u6539\u3081\u3066\u5fa1\u793c\u306e\u96fb\u8a71\u3059\u308b\u3063\u3066\u8a00\u3063\u3066\u3044\u305f\u3060\u3044\u305f\u3002\u305d\u308c\u3060\u3051\u3067\u3082\u3061\u3087\u3063\u3068\u3046\u308b\u3063\u3068\u304d\u305f\u306e\u306b\u3001\u305d\u306e\u9803\u306b\u306f\u81ea\u5206\u306f\u3082\u3046\u3044\u306a\u3044\u304b\u3089\u7533\u3057\u8a33\u306a\u304f\u3066\u6ce3\u304d\u305d\u3046\u306b\u306a\u3063\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146040963,"id_str":"146040963","name":"Nancy","screen_name":"NancyGreen87","location":"\u95a2\u897f","url":null,"description":"\u6b4c\u3063\u305f\u308a\u3001\u6599\u7406\u3057\u305f\u308a\u3001\u5199\u771f\u64ae\u3063\u305f\u308a\u3001\u7d75\u63cf\u3044\u305f\u308a\u3001\u30e2\u30ce\u30ce\u30d5\u3060\u3063\u305f\u308a\u8272\u3005\u3084\u3063\u3066\u307e\u3059\u3002\r\n\u52c9\u5f37\u306e\u305f\u3081\u306b\u6708\u30a4\u30c1\u3067\u30b3\u30e9\u30dc\u30ab\u30d5\u30a7\u306b\u53c2\u52a0\u3057\u3066\u307e\u3059\u3002\r\n\u30b5\u30d0\u30b2\u306f\u3058\u3081\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":133,"friends_count":120,"listed_count":3,"favourites_count":114,"statuses_count":7830,"created_at":"Thu May 20 13:20:51 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/980446378\/DSC00440_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/980446378\/DSC00440_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080079662"} +{"delete":{"status":{"id":663728043354025984,"id_str":"663728043354025984","user_id":81238992,"user_id_str":"81238992"},"timestamp_ms":"1447080079847"}} +{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076891623425,"id_str":"663728076891623425","text":"\u062e\u0644\u0627\u0644 \u062d\u0645\u0644\u0627\u062a \u0623\u0645\u0646\u064a\u0629 \u0627\u064a\u0642\u0627\u0641 \u0627\u064a\u0642\u0627\u0641 14 \u0634\u062e\u0635\u0627 \u0645\u0641\u062a\u0634 \u0639\u0646\u0647\u0645 \u0648\u062d\u062c\u0632 \u0633\u064a\u0627\u0631\u0627\u062a \u0648\u062f\u0631\u0627\u062c\u0627\u062a \u0646\u0627\u0631\u064a\u0629:","source":"\u003ca href=\"https:\/\/sopresto.mailchimp.com\" rel=\"nofollow\"\u003eSocial Proxy by Mailchimp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267858844,"id_str":"2267858844","name":"Tunisia Times","screen_name":"tunisiatimestn","location":"Tunisie","url":"http:\/\/www.tunisiatimes.tn","description":null,"protected":false,"verified":false,"followers_count":589,"friends_count":64,"listed_count":0,"favourites_count":0,"statuses_count":7597,"created_at":"Sun Dec 29 20:18:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417390145344507904\/8O7bW3eD_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417390145344507904\/8O7bW3eD_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080079659"} +{"delete":{"status":{"id":661173930309349377,"id_str":"661173930309349377","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080080106"}} +{"delete":{"status":{"id":644608727983763456,"id_str":"644608727983763456","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080080105"}} +{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072726724608,"id_str":"663728072726724608","text":"\u30cf\u30ca\u30b0\u30ed\u306f\u30bf\u30cc\u30ad\u306e\u6bcd\u89aa\u3067\u3059\u3002\uff15\u5e74\u534a\u524d\u306b\u624b\u8853\u3057\u3066\u3044\u3066\u304a\u4e73\u306a\u3069\u51fa\u308b\u306f\u305a\u3082\u306a\u3044\u306e\u3067\u3059\u304c\u5302\u3044\u3067\u304a\u3070\u3042\u3061\u3083\u3093\u3060\u3068\u308f\u304b\u308b\u306e\u304b\u3001\u30bf\u30cc\u30ad\u4e00\u5bb6\u306e\u30c1\u30d3\u3069\u3082\u304c\u30b4\u30ed\u30b4\u30ed\u3068\u5589\u3092\u9cf4\u3089\u3057\u3066\u53d6\u308a\u3064\u3044\u3066\u3044\u307e\u3059\u3002\u6c17\u7acb\u3066\u306e\u3088\u3044\u30cf\u30ca\u30b0\u30ed\u306f\u5acc\u304c\u3089\u305a\u306b\u4f53\u3092\u306a\u3081\u3066\u3084\u3063\u3066\u3044\u307e\u3059\u3002 https:\/\/t.co\/XrJHH07MVl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1959407641,"id_str":"1959407641","name":"Setouchi Cat Rescue","screen_name":"setononyanko","location":null,"url":null,"description":"\u5ca1\u5c71\u770c\u7b20\u5ca1\u5e02\u306f\u5b9a\u4f4f\u306e\u4fc3\u9032\u3092\u653f\u7b56\u306e\u3072\u3068\u3064\u306b\u63b2\u3052\u3066\u3044\u307e\u3059\u304c\u3001\u3053\u308c\u306f\u5f53\u7136\u79c1\u306e\u4f4f\u3080\u5cf6\u3057\u3087\u90e8\u306b\u3082\u53ca\u3076\u3082\u306e\u3060\u3068\u601d\u3063\u3066\u3044\u307e\u3059\u3002\u7f8e\u3057\u3044\u666f\u8272\u306e\u4e2d\u306b\u4eba\u6a29\u306e\u5c0a\u91cd\u3055\u308c\u308b\u98a8\u571f\u304c\u4fdd\u305f\u308c\u3001\u5b50\u4f9b\u305f\u3061\u304c\u5fc3\u304b\u3089\u8a87\u308a\u306b\u601d\u3048\u308b\u3075\u308b\u3055\u3068\u306e\u5cf6\u306b\u306a\u3063\u3066\u307b\u3057\u3044\u3068\u9858\u3046\u3072\u3068\u308a\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1674,"friends_count":1442,"listed_count":35,"favourites_count":41311,"statuses_count":22451,"created_at":"Sun Oct 13 20:38:23 +0000 2013","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"663810","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000696928066\/ce9702fd4f1f5073d53fd41f7457d665_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000696928066\/ce9702fd4f1f5073d53fd41f7457d665_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1959407641\/1401872462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728069195108353,"id_str":"663728069195108353","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKY_UkAEGgKB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKY_UkAEGgKB.jpg","url":"https:\/\/t.co\/XrJHH07MVl","display_url":"pic.twitter.com\/XrJHH07MVl","expanded_url":"http:\/\/twitter.com\/setononyanko\/status\/663728072726724608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728069195108353,"id_str":"663728069195108353","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKY_UkAEGgKB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKY_UkAEGgKB.jpg","url":"https:\/\/t.co\/XrJHH07MVl","display_url":"pic.twitter.com\/XrJHH07MVl","expanded_url":"http:\/\/twitter.com\/setononyanko\/status\/663728072726724608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728069857796097,"id_str":"663728069857796097","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKbdUYAEUZig.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKbdUYAEUZig.jpg","url":"https:\/\/t.co\/XrJHH07MVl","display_url":"pic.twitter.com\/XrJHH07MVl","expanded_url":"http:\/\/twitter.com\/setononyanko\/status\/663728072726724608\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080078666"} +{"delete":{"status":{"id":656164979213598720,"id_str":"656164979213598720","user_id":3387192799,"user_id_str":"3387192799"},"timestamp_ms":"1447080080205"}} +{"delete":{"status":{"id":618608929577177088,"id_str":"618608929577177088","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080080409"}} +{"delete":{"status":{"id":245379459186831360,"id_str":"245379459186831360","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080080616"}} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081086103552,"id_str":"663728081086103552","text":"RT @crociangelini: #lipogiro +M\n#nellAnima \nnella Mina\ndinaMite\ndate Mini\ndate Maxi\nda Me taxi\ndi Metaxa\nMi ubriaco\nseMpre\nnell'aniMa\n@paol\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":953901380,"id_str":"953901380","name":"paola milano","screen_name":"paolaxmi","location":"castelli romani","url":null,"description":"amo soprattutto la logica e la coerenza, spesso sono un po' sconclusionata!","protected":false,"verified":false,"followers_count":907,"friends_count":1046,"listed_count":15,"favourites_count":10047,"statuses_count":15010,"created_at":"Sat Nov 17 16:33:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499099645755535360\/7xymqrTl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499099645755535360\/7xymqrTl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/953901380\/1407768013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:36:29 +0000 2015","id":663681560202342401,"id_str":"663681560202342401","text":"#lipogiro +M\n#nellAnima \nnella Mina\ndinaMite\ndate Mini\ndate Maxi\nda Me taxi\ndi Metaxa\nMi ubriaco\nseMpre\nnell'aniMa\n@paolaxmi #scritturebrevi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2942418184,"id_str":"2942418184","name":"Elisabetta","screen_name":"crociangelini","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":569,"friends_count":431,"listed_count":21,"favourites_count":1811,"statuses_count":4202,"created_at":"Fri Dec 26 17:01:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550365231193395201\/LI6NGQee_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550365231193395201\/LI6NGQee_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2942418184\/1420052662","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"lipogiro","indices":[0,9]},{"text":"nellAnima","indices":[13,23]},{"text":"scritturebrevi","indices":[125,140]}],"urls":[],"user_mentions":[{"screen_name":"paolaxmi","name":"paola milano","id":953901380,"id_str":"953901380","indices":[115,124]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lipogiro","indices":[19,28]},{"text":"nellAnima","indices":[32,42]},{"text":"scritturebrevi","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"crociangelini","name":"Elisabetta","id":2942418184,"id_str":"2942418184","indices":[3,17]},{"screen_name":"paolaxmi","name":"paola milano","id":953901380,"id_str":"953901380","indices":[134,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080080659"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081098641408,"id_str":"663728081098641408","text":"RT @Melvdie: \u00c7a commence \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/IyLAIodBNx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":851681564,"id_str":"851681564","name":"\u2649FLACKO\u270a","screen_name":"belinga_hug","location":null,"url":null,"description":"BAD BOY FOR LIFE. La brissance se fait en silence","protected":false,"verified":false,"followers_count":633,"friends_count":304,"listed_count":6,"favourites_count":3469,"statuses_count":25768,"created_at":"Fri Sep 28 20:17:32 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000054131629\/bd7657ca6f064a3be5e34f6dc4d1d8ec.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000054131629\/bd7657ca6f064a3be5e34f6dc4d1d8ec.png","profile_background_tile":true,"profile_link_color":"09071A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658519206065999872\/R-GgYzrF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658519206065999872\/R-GgYzrF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/851681564\/1439508177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:29:09 +0000 2015","id":663498520020828160,"id_str":"663498520020828160","text":"\u00c7a commence \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/IyLAIodBNx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1625489030,"id_str":"1625489030","name":"Miley what's good ?","screen_name":"Melvdie","location":null,"url":null,"description":"Etudiante en L3 - #FitnessAddict Snapchat : melodimoitout #TeamPortugal","protected":false,"verified":false,"followers_count":4957,"friends_count":371,"listed_count":14,"favourites_count":6434,"statuses_count":12511,"created_at":"Sat Jul 27 13:30:54 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662663248504864768\/qnQ63pZl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662663248504864768\/qnQ63pZl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1625489030\/1445186137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":108,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663498499045109760,"id_str":"663498499045109760","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","url":"https:\/\/t.co\/IyLAIodBNx","display_url":"pic.twitter.com\/IyLAIodBNx","expanded_url":"http:\/\/twitter.com\/Melvdie\/status\/663498520020828160\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663498499045109760,"id_str":"663498499045109760","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","url":"https:\/\/t.co\/IyLAIodBNx","display_url":"pic.twitter.com\/IyLAIodBNx","expanded_url":"http:\/\/twitter.com\/Melvdie\/status\/663498520020828160\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Melvdie","name":"Miley what's good ?","id":1625489030,"id_str":"1625489030","indices":[3,11]}],"symbols":[],"media":[{"id":663498499045109760,"id_str":"663498499045109760","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","url":"https:\/\/t.co\/IyLAIodBNx","display_url":"pic.twitter.com\/IyLAIodBNx","expanded_url":"http:\/\/twitter.com\/Melvdie\/status\/663498520020828160\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663498520020828160,"source_status_id_str":"663498520020828160","source_user_id":1625489030,"source_user_id_str":"1625489030"}]},"extended_entities":{"media":[{"id":663498499045109760,"id_str":"663498499045109760","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU4XpiWsAATuIZ.jpg","url":"https:\/\/t.co\/IyLAIodBNx","display_url":"pic.twitter.com\/IyLAIodBNx","expanded_url":"http:\/\/twitter.com\/Melvdie\/status\/663498520020828160\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663498520020828160,"source_status_id_str":"663498520020828160","source_user_id":1625489030,"source_user_id_str":"1625489030"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080080662"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090256896,"id_str":"663728081090256896","text":"new followers...since I feel the ? coming for some reason. \nSybil = Wheat. \nIf you don't know...trade it. Then you will.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2337281922,"id_str":"2337281922","name":"FF ","screen_name":"FatF1nger","location":"At a desk, mostly ","url":"http:\/\/fatf1nger.wordpress.com\/","description":"Walking the line between intuition and impulse.Tweets mostly about trading.Will also tweet about:sports,tunes, spirits,trading psych,and gum. No $GC bugs tks","protected":false,"verified":false,"followers_count":3122,"friends_count":927,"listed_count":147,"favourites_count":17049,"statuses_count":37147,"created_at":"Mon Feb 10 21:29:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497714917714038784\/hNRQwOQy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497714917714038784\/hNRQwOQy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2337281922\/1405799292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080660"} +{"delete":{"status":{"id":663640965412974592,"id_str":"663640965412974592","user_id":47020165,"user_id_str":"47020165"},"timestamp_ms":"1447080080645"}} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081107083268,"id_str":"663728081107083268","text":"RT @DonPlaticador: @VerogonzalesCom quieres una manita razcadora?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068106605,"id_str":"3068106605","name":"Vero \u2764","screen_name":"VerogonzalesCom","location":null,"url":null,"description":"Cada d\u00eda m\u00e1s humana, menos perfecta y m\u00e1s feliz.","protected":false,"verified":false,"followers_count":276,"friends_count":188,"listed_count":0,"favourites_count":269,"statuses_count":1677,"created_at":"Tue Mar 03 16:19:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660661689621286912\/C6YHXgTH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660661689621286912\/C6YHXgTH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068106605\/1446348993","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:10 +0000 2015","id":663727788495540225,"id_str":"663727788495540225","text":"@VerogonzalesCom quieres una manita razcadora?","source":"\u003ca href=\"http:\/\/www.woorales.com\" rel=\"nofollow\"\u003eWooBots\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727414846038016,"in_reply_to_status_id_str":"663727414846038016","in_reply_to_user_id":3068106605,"in_reply_to_user_id_str":"3068106605","in_reply_to_screen_name":"VerogonzalesCom","user":{"id":167212064,"id_str":"167212064","name":"Don Platicador","screen_name":"DonPlaticador","location":"Una jaula virtual","url":"http:\/\/woorales.com\/producto\/bots-de-twitter\/","description":"Nacido en una pc buena onda,fui entrenado en el arte de la fiesta por la hilton cuate de huff hefner y fundador no reconocido de pent house","protected":false,"verified":false,"followers_count":25216,"friends_count":2,"listed_count":93,"favourites_count":117,"statuses_count":2083626,"created_at":"Fri Jul 16 01:07:32 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087379853\/463452226f845c38805cd8b23ae30a19.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087379853\/463452226f845c38805cd8b23ae30a19.jpeg","profile_background_tile":true,"profile_link_color":"DB12E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000543870655\/0d6e41feab0e04b58fb717d57fd1256c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000543870655\/0d6e41feab0e04b58fb717d57fd1256c_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VerogonzalesCom","name":"Vero \u2764","id":3068106605,"id_str":"3068106605","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DonPlaticador","name":"Don Platicador","id":167212064,"id_str":"167212064","indices":[3,17]},{"screen_name":"VerogonzalesCom","name":"Vero \u2764","id":3068106605,"id_str":"3068106605","indices":[19,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080664"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081086095360,"id_str":"663728081086095360","text":"Siempre pongo lo mismo pero es que ya no s\u00e9 qu\u00e9 poner xd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3391731899,"id_str":"3391731899","name":"Celius","screen_name":"xOldMgcnx","location":"Espa\u00f1a","url":null,"description":null,"protected":false,"verified":false,"followers_count":157,"friends_count":259,"listed_count":0,"favourites_count":2250,"statuses_count":4435,"created_at":"Tue Jul 28 09:24:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661125487821983744\/-9BoqulO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661125487821983744\/-9BoqulO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3391731899\/1446416061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080659"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081094483969,"id_str":"663728081094483969","text":"I've harvested 1,389 of food! https:\/\/t.co\/XYVGgIXL9g #ipad, #ipadgames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18807006,"id_str":"18807006","name":"chefmargieb","screen_name":"chefmargieb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":48,"listed_count":3,"favourites_count":0,"statuses_count":1295,"created_at":"Fri Jan 09 17:08:11 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/70375136\/Me_Ashleys_1st_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/70375136\/Me_Ashleys_1st_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ipad","indices":[55,60]},{"text":"ipadgames","indices":[62,72]},{"text":"gameinsight","indices":[74,86]}],"urls":[{"url":"https:\/\/t.co\/XYVGgIXL9g","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080661"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081111248896,"id_str":"663728081111248896","text":"\u041c\u043e\u0436\u043d\u043e \u044f \u0442\u043e\u0436\u0435 \u043f\u0440\u043e\u0441\u0442\u043e \u043f\u043e\u0439\u0434\u0443 \u043d\u0430 \u0431\u0438\u043e\u043b\u043e\u0433\u0438\u044e \u0438 \u0442\u043e\u0436\u0435 \u0441\u0432\u0435\u0440\u043d\u0443!?!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3136233078,"id_str":"3136233078","name":"\u0421\u0430\u043c\u044b\u0439\u041e\u0431\u044b\u0447\u043d\u044b\u0439\u0427\u0435\u043b\u043e\u0432\u0435\u043a","screen_name":"aleksandrovskis","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":60,"friends_count":49,"listed_count":0,"favourites_count":742,"statuses_count":662,"created_at":"Fri Apr 03 15:10:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652115607517855744\/MW80PgaI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652115607517855744\/MW80PgaI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3136233078\/1444311540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080080665"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090269184,"id_str":"663728081090269184","text":"my brother called me to do some investigating smh lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467868437,"id_str":"467868437","name":"kionda\u2728","screen_name":"KekeRealAss__","location":"Charlotte, NC","url":null,"description":"they tell me be humble , IM COCKY AS HELL Ea$t CharLIT \u2728 IG : @KekeDoesItBetter","protected":false,"verified":false,"followers_count":1101,"friends_count":687,"listed_count":0,"favourites_count":6680,"statuses_count":39953,"created_at":"Wed Jan 18 22:55:39 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/788980100\/65d6fb9cf8a7fa280d6a03c25b57b317.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/788980100\/65d6fb9cf8a7fa280d6a03c25b57b317.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662369982450442240\/emnVW9O8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662369982450442240\/emnVW9O8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467868437\/1446775517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115418624,"id_str":"663728081115418624","text":"El Parlament aprueba caminar hacia la independencia de Catalunya con el rechazo de toda la oposici\u00f3n https:\/\/t.co\/udRrZCxyy0","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386430365,"id_str":"386430365","name":"Isidro Jim\u00e9nez","screen_name":"isijisan","location":"Pen\u00ednsula Ib\u00e9rica","url":"https:\/\/www.facebook.com\/pages\/isidrojimenezcom\/122334234519738?ref=hl","description":"Pol\u00edglota curtido en la experiencia y el buen hacer que dedica su vida a los dem\u00e1s.","protected":false,"verified":false,"followers_count":131,"friends_count":297,"listed_count":6,"favourites_count":9,"statuses_count":21120,"created_at":"Fri Oct 07 08:33:48 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038544","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1580376095\/ISIDRO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1580376095\/ISIDRO_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/udRrZCxyy0","expanded_url":"http:\/\/fb.me\/5466cvAuA","display_url":"fb.me\/5466cvAuA","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115422720,"id_str":"663728081115422720","text":"Kapuska enfes bir yemektir.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319308878,"id_str":"319308878","name":"Sedef","screen_name":"SEDOSHHH","location":null,"url":null,"description":"Vay vay vay","protected":false,"verified":false,"followers_count":1131,"friends_count":876,"listed_count":2,"favourites_count":1048,"statuses_count":8722,"created_at":"Fri Jun 17 22:19:25 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661157524545081344\/b2-b7AUW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661157524545081344\/b2-b7AUW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319308878\/1446968963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115455488,"id_str":"663728081115455488","text":"@JackJackJohnson I don't have m&g but I love you so much \ud83d\ude05\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":1941870516,"id_str":"1941870516","name":"silvia misses jacks","screen_name":"couldnash","location":"spain 5\/12","url":"https:\/\/twitter.com\/couldnash\/status\/661948378117505024","description":"\u00b0\u02d6\u2727 i don\u2019t call nash grier sunshine, i call him moonlight cause that means he\u2019s there even when its dark. \u2727\u02d6\u00b0\u00b7 \u2661","protected":false,"verified":false,"followers_count":1694,"friends_count":260,"listed_count":15,"favourites_count":7130,"statuses_count":75958,"created_at":"Sun Oct 06 20:00:54 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648484215131140096\/zI1GrDKT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648484215131140096\/zI1GrDKT.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692725355716608\/wHaF8olS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692725355716608\/wHaF8olS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1941870516\/1446844832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080666"} +{"delete":{"status":{"id":661021530273525760,"id_str":"661021530273525760","user_id":122448116,"user_id_str":"122448116"},"timestamp_ms":"1447080080680"}} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115459585,"id_str":"663728081115459585","text":"RT @EresKurioso: Aqu\u00ed el porqu\u00e9 las mujeres viven m\u00e1s que los hombres... https:\/\/t.co\/Pb9xcPObOA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285591492,"id_str":"285591492","name":"M\u20ac\u274e\u264a","screen_name":"sthefano_ca","location":"Ovd -Pumarin","url":null,"description":"Compositor\nRap\nNo apto para Cardiacos\n33011 \nPumarin","protected":false,"verified":false,"followers_count":337,"friends_count":151,"listed_count":0,"favourites_count":1180,"statuses_count":7637,"created_at":"Thu Apr 21 12:48:43 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000160878933\/V_EFfOcD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000160878933\/V_EFfOcD.png","profile_background_tile":true,"profile_link_color":"005145","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657578869650796548\/QOddhKz-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657578869650796548\/QOddhKz-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285591492\/1428200984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:35:34 +0000 2015","id":663681330530484224,"id_str":"663681330530484224","text":"Aqu\u00ed el porqu\u00e9 las mujeres viven m\u00e1s que los hombres... https:\/\/t.co\/Pb9xcPObOA","source":"\u003ca href=\"http:\/\/www.google.es\" rel=\"nofollow\"\u003eEresKurioso\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216328455,"id_str":"1216328455","name":"Sab\u00edas que...","screen_name":"EresKurioso","location":"Planeta Tierra, V\u00eda L\u00e1ctea","url":null,"description":"Datos alucinantes e incre\u00edbles: #Curiosidades #Frases #Ciencia #Tecnolog\u00eda #Cultura #Historia \/\/ RT tus tweets favoritos. Publi: http:\/\/promotwitter.tumblr.com","protected":false,"verified":false,"followers_count":597770,"friends_count":6250,"listed_count":1024,"favourites_count":0,"statuses_count":151,"created_at":"Sun Feb 24 19:11:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000375119009\/560e8ab1937d801f69a13d81ffcb9bb6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000375119009\/560e8ab1937d801f69a13d81ffcb9bb6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216328455\/1361814777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":339,"favorite_count":189,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663681330169810944,"id_str":"663681330169810944","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","url":"https:\/\/t.co\/Pb9xcPObOA","display_url":"pic.twitter.com\/Pb9xcPObOA","expanded_url":"http:\/\/twitter.com\/EresKurioso\/status\/663681330530484224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":588,"resize":"fit"},"large":{"w":592,"h":588,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663681330169810944,"id_str":"663681330169810944","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","url":"https:\/\/t.co\/Pb9xcPObOA","display_url":"pic.twitter.com\/Pb9xcPObOA","expanded_url":"http:\/\/twitter.com\/EresKurioso\/status\/663681330530484224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":588,"resize":"fit"},"large":{"w":592,"h":588,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EresKurioso","name":"Sab\u00edas que...","id":1216328455,"id_str":"1216328455","indices":[3,15]}],"symbols":[],"media":[{"id":663681330169810944,"id_str":"663681330169810944","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","url":"https:\/\/t.co\/Pb9xcPObOA","display_url":"pic.twitter.com\/Pb9xcPObOA","expanded_url":"http:\/\/twitter.com\/EresKurioso\/status\/663681330530484224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":588,"resize":"fit"},"large":{"w":592,"h":588,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663681330530484224,"source_status_id_str":"663681330530484224","source_user_id":1216328455,"source_user_id_str":"1216328455"}]},"extended_entities":{"media":[{"id":663681330169810944,"id_str":"663681330169810944","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXep0jUkAAUImA.jpg","url":"https:\/\/t.co\/Pb9xcPObOA","display_url":"pic.twitter.com\/Pb9xcPObOA","expanded_url":"http:\/\/twitter.com\/EresKurioso\/status\/663681330530484224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":592,"h":588,"resize":"fit"},"large":{"w":592,"h":588,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663681330530484224,"source_status_id_str":"663681330530484224","source_user_id":1216328455,"source_user_id_str":"1216328455"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090187264,"id_str":"663728081090187264","text":"\u7f8e\u8853\u306e\u6642\u9593\u306b\u9aea\u5207\u308b\u524d\u306e\u5199\u771f\u3067\u306a\u3093\u304b\u3084\u3063\u305f\u3093\u3060\u3051\u3069\u81ea\u5206\u306e\u5199\u771f\u307f\u3066\u9a5a\u3044\u305f\n\u304f\u3063\u305d\u9aea\u9577\u304b\u3063\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2536626204,"id_str":"2536626204","name":"\u3068\u30fc\u30fc\u3082\u307a\u3044","screen_name":"toooomopei","location":"\u3069\u3053\u306b\u3067\u3082\u3044\u304f\u3088","url":null,"description":"\u7b52\u4e9534\u304b\u3089\u306e\u9752\u531715HR\u30c6\u30cb\u30b9\u90e8\/\u305d\u3063\u3068\u3057\u3066@innnnpo","protected":false,"verified":false,"followers_count":330,"friends_count":269,"listed_count":0,"favourites_count":1888,"statuses_count":8551,"created_at":"Sat May 31 05:08:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656089676252516354\/sDfJ1H-f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656089676252516354\/sDfJ1H-f_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081098555392,"id_str":"663728081098555392","text":"RT @IbnJebreen: \u0648\u0631\u062f \u0627\u0644\u062a\u0631\u063a\u064a\u0628 \u0641\u064a \u0627\u0644\u0625\u0643\u062b\u0627\u0631 \u0645\u0646 \u0627\u0644\u0635\u0644\u0627\u0629 \u0639\u0644\u0649 \u0627\u0644\u0646\u0628\u064a \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u062d\u062a\u0649 \u0642\u0627\u0644 \u0644\u0645\u0646 \u062c\u0639\u0644 \u062f\u0639\u0627\u0621\u0647 \u0643\u0644\u0647 \u0641\u064a \u0627\u0644\u0635\u0644\u0627\u0629 \u0639\u0644\u0649 \u0627\u0644\u0646\u0628\u064a \ufdfa :\"\u0625\u0630\u064b\u0627 \u062a\u0643\u0641\u0649 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1735093999,"id_str":"1735093999","name":"moutasem","screen_name":"m0utasem","location":null,"url":"https:\/\/www.facebook.com\/moutasem","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\ufefb \u0625\u0644\u0647 \u0625\ufefb \u0623\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0625\u0646\u0649 \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646.\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647.\u0627\u0644\u0644\u0647 \u0623\u0643\u0628\u0631.\u0627\u0644\u062d\u0645\u062f\u0644\u0644\u0647.\ufefb \u0625\u0644\u0647 \u0625\ufefb \u0627\u0644\u0644\u0647.\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647.\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645","protected":false,"verified":false,"followers_count":10511,"friends_count":10310,"listed_count":14,"favourites_count":50,"statuses_count":118825,"created_at":"Fri Sep 06 13:03:21 +0000 2013","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640876994348077056\/NbyctofQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640876994348077056\/NbyctofQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735093999\/1441631953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:43 +0000 2015","id":663727925745876992,"id_str":"663727925745876992","text":"\u0648\u0631\u062f \u0627\u0644\u062a\u0631\u063a\u064a\u0628 \u0641\u064a \u0627\u0644\u0625\u0643\u062b\u0627\u0631 \u0645\u0646 \u0627\u0644\u0635\u0644\u0627\u0629 \u0639\u0644\u0649 \u0627\u0644\u0646\u0628\u064a \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u062d\u062a\u0649 \u0642\u0627\u0644 \u0644\u0645\u0646 \u062c\u0639\u0644 \u062f\u0639\u0627\u0621\u0647 \u0643\u0644\u0647 \u0641\u064a \u0627\u0644\u0635\u0644\u0627\u0629 \u0639\u0644\u0649 \u0627\u0644\u0646\u0628\u064a \ufdfa :\"\u0625\u0630\u064b\u0627 \u062a\u0643\u0641\u0649 \u0647\u0645\u0643 \u0648\u064a\u063a\u0641\u0631 \u0630\u0646\u0628\u0643\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298178437,"id_str":"298178437","name":"\u0627\u0644\u0634\u064a\u062e \u0627\u0628\u0646 \u062c\u0628\u0631\u064a\u0646","screen_name":"IbnJebreen","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":"http:\/\/ibn-jebreen.com","description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0644\u0633\u0645\u0627\u062d\u0629 \u0627\u0644\u0634\u064a\u062e \u0639\u0628\u062f\u0627\u0644\u0644\u0647 \u0628\u0646 \u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0627\u0628\u0646 \u062c\u0628\u0631\u064a\u0646 \u0631\u062d\u0645\u0647 \u0627\u0644\u0644\u0647 \r\n\u062a\u062f\u0627\u0631 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629 \u0628\u0648\u0627\u0633\u0637\u0629 \u0645\u0624\u0633\u0633\u0629 \u0627\u0628\u0646 \u062c\u0628\u0631\u064a\u0646 \u0627\u0644\u062e\u064a\u0631\u064a\u0629 \u0648\u062c\u0645\u064a\u0639 \u0645\u0627 \u064a\u0646\u0634\u0631 \u0647\u0648 \u0645\u0646 \u0643\u0644\u0627\u0645 \u0627\u0644\u0634\u064a\u062e \u0631\u062d\u0645\u0647 \u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":203203,"friends_count":3,"listed_count":601,"favourites_count":40,"statuses_count":10256,"created_at":"Fri May 13 21:13:46 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116451003\/6a1c57549e22a2c0a27a7c2c833e278d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116451003\/6a1c57549e22a2c0a27a7c2c833e278d.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553183950902808578\/RMFz-DiU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553183950902808578\/RMFz-DiU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298178437\/1422772640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IbnJebreen","name":"\u0627\u0644\u0634\u064a\u062e \u0627\u0628\u0646 \u062c\u0628\u0631\u064a\u0646","id":298178437,"id_str":"298178437","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080080662"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081094451200,"id_str":"663728081094451200","text":"RT @Alex_Verbeek: A canal too far: #water risk in #China\nhttps:\/\/t.co\/tYtLTvytZ5 https:\/\/t.co\/jS2u9dcXKq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17448173,"id_str":"17448173","name":"CIESIN","screen_name":"ciesin","location":"Palisades NY-Lamont Campus","url":"http:\/\/www.ciesin.columbia.edu","description":"Focus on human interactions w\/environment; socioeconomic data+integration w\/remote sensing data; free geospatial data\/svcs\/tools","protected":false,"verified":false,"followers_count":216,"friends_count":74,"listed_count":27,"favourites_count":21,"statuses_count":771,"created_at":"Mon Nov 17 19:30:08 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592779812269338627\/VjMtqSCc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592779812269338627\/VjMtqSCc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17448173\/1431720264","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:39:08 +0000 2015","id":662564866721488896,"id_str":"662564866721488896","text":"A canal too far: #water risk in #China\nhttps:\/\/t.co\/tYtLTvytZ5 https:\/\/t.co\/jS2u9dcXKq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":326665662,"id_str":"326665662","name":"Alexander Verbeek","screen_name":"Alex_Verbeek","location":"The Hague \/ Stockholm","url":"http:\/\/about.me\/alexander.verbeek","description":"Yale World Fellow | NL Diplomat | SEI Associate | Planetary Security | Climate | Energy-Water-Food | Environment | Wildlife | Science. RT \u2260 endorsement","protected":false,"verified":false,"followers_count":73401,"friends_count":47702,"listed_count":1681,"favourites_count":8460,"statuses_count":7024,"created_at":"Thu Jun 30 08:43:16 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634025118\/twilk_background_502bd0d9e1bf1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634025118\/twilk_background_502bd0d9e1bf1.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3042384641\/798d35342d1f6ae724b44ad70bab2d16_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3042384641\/798d35342d1f6ae724b44ad70bab2d16_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/326665662\/1356119193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":13,"entities":{"hashtags":[{"text":"water","indices":[17,23]},{"text":"China","indices":[32,38]}],"urls":[{"url":"https:\/\/t.co\/tYtLTvytZ5","expanded_url":"http:\/\/ow.ly\/2bw9qa","display_url":"ow.ly\/2bw9qa","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":662564857611337729,"id_str":"662564857611337729","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","url":"https:\/\/t.co\/jS2u9dcXKq","display_url":"pic.twitter.com\/jS2u9dcXKq","expanded_url":"http:\/\/twitter.com\/Alex_Verbeek\/status\/662564866721488896\/photo\/1","type":"photo","sizes":{"large":{"w":917,"h":1024,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":669,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662564857611337729,"id_str":"662564857611337729","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","url":"https:\/\/t.co\/jS2u9dcXKq","display_url":"pic.twitter.com\/jS2u9dcXKq","expanded_url":"http:\/\/twitter.com\/Alex_Verbeek\/status\/662564866721488896\/photo\/1","type":"photo","sizes":{"large":{"w":917,"h":1024,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":669,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"water","indices":[35,41]},{"text":"China","indices":[50,56]}],"urls":[{"url":"https:\/\/t.co\/tYtLTvytZ5","expanded_url":"http:\/\/ow.ly\/2bw9qa","display_url":"ow.ly\/2bw9qa","indices":[57,80]}],"user_mentions":[{"screen_name":"Alex_Verbeek","name":"Alexander Verbeek","id":326665662,"id_str":"326665662","indices":[3,16]}],"symbols":[],"media":[{"id":662564857611337729,"id_str":"662564857611337729","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","url":"https:\/\/t.co\/jS2u9dcXKq","display_url":"pic.twitter.com\/jS2u9dcXKq","expanded_url":"http:\/\/twitter.com\/Alex_Verbeek\/status\/662564866721488896\/photo\/1","type":"photo","sizes":{"large":{"w":917,"h":1024,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":669,"resize":"fit"}},"source_status_id":662564866721488896,"source_status_id_str":"662564866721488896","source_user_id":326665662,"source_user_id_str":"326665662"}]},"extended_entities":{"media":[{"id":662564857611337729,"id_str":"662564857611337729","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTHnOkKUwAE8J3e.jpg","url":"https:\/\/t.co\/jS2u9dcXKq","display_url":"pic.twitter.com\/jS2u9dcXKq","expanded_url":"http:\/\/twitter.com\/Alex_Verbeek\/status\/662564866721488896\/photo\/1","type":"photo","sizes":{"large":{"w":917,"h":1024,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":669,"resize":"fit"}},"source_status_id":662564866721488896,"source_status_id_str":"662564866721488896","source_user_id":326665662,"source_user_id_str":"326665662"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080661"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081077579776,"id_str":"663728081077579776","text":"\u7832\u4e38\u6295\u305217\u4f4d\u6295\u3052\u3066\u308b\u4eba\u306f\u4f53\u91cd\u3092\u5897\u3084\u3059\u671f\u9593\u5bdd\u308b\u524d\u306b\u30e9\u30fc\u30e1\u30f3\u98df\u3063\u3066\u305d\u306e\u3042\u3068\u30b9\u30fc\u30d7\u306b\u3054\u98ef1\u5408\u4ee5\u4e0a\u5165\u308c\u3066\u98df\u3046\u3089\u3057\u3044\u3051\u3069\u3001\u6d41\u77f3\u306b\u65e9\u6b7b\u306b\u3057\u305d\u3046\u3067\u6016\u3044\u30fb\u30fb\u30fb\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1531051470,"id_str":"1531051470","name":"\u304c\u3063\u305f\u3093","screen_name":"inarinngorira","location":null,"url":null,"description":"\u6771\u90e8\/\u5343\u6b73\/\u5317\u6d77\u9053\/\u9ad8\u5206\u5b50\/\u9678\u4e0a\/\u30cf\u30f3\u30de\u30fc\u6295\u3052","protected":false,"verified":false,"followers_count":148,"friends_count":146,"listed_count":3,"favourites_count":208,"statuses_count":6450,"created_at":"Wed Jun 19 14:55:28 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565298941970116609\/VUVcq1RI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565298941970116609\/VUVcq1RI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1531051470\/1413901640","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080657"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081106960384,"id_str":"663728081106960384","text":"\u30aa\u30de\u30a4\u30ac\u30c3\uff01","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1620448286,"id_str":"1620448286","name":"wave\u03b6","screen_name":"static555st","location":"Mars","url":null,"description":"\u30ed\u30fc\u30c9\u30e9\u3068\u30c6\u30e9\u30d0\u30c8\u30eb\u3068\u30b4\u9b54\u4e59\u3092\u5c11\u3005 http:\/\/electricblue06743297.tumblr.com","protected":false,"verified":false,"followers_count":160,"friends_count":180,"listed_count":5,"favourites_count":2550,"statuses_count":4936,"created_at":"Thu Jul 25 14:03:17 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661581913040117764\/AYSFQ_nR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661581913040117764\/AYSFQ_nR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1620448286\/1446720276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080664"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081111224320,"id_str":"663728081111224320","text":"RT @Itspedrito: \"sou virgem\" https:\/\/t.co\/eEnpb8l5Fw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":589173535,"id_str":"589173535","name":"Isabella","screen_name":"Isabella_RTC","location":"06\/09","url":null,"description":"Rude \u264b","protected":false,"verified":false,"followers_count":311,"friends_count":298,"listed_count":0,"favourites_count":1864,"statuses_count":18549,"created_at":"Thu May 24 14:42:04 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/827286321\/517d5bc8fc4351428d8e3fe6136d1e25.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/827286321\/517d5bc8fc4351428d8e3fe6136d1e25.jpeg","profile_background_tile":false,"profile_link_color":"00FF77","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662419686202728448\/hUNBnvxX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662419686202728448\/hUNBnvxX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/589173535\/1445893453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:30:55 +0000 2015","id":663408368879591424,"id_str":"663408368879591424","text":"\"sou virgem\" https:\/\/t.co\/eEnpb8l5Fw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2484226796,"id_str":"2484226796","name":"PEDRAO","screen_name":"Itspedrito","location":"Brasil","url":null,"description":"Depois que lacrei uma vez nunca mais parei.","protected":false,"verified":false,"followers_count":23433,"friends_count":235,"listed_count":35,"favourites_count":13734,"statuses_count":56435,"created_at":"Thu May 08 17:13:09 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624324854657888256\/sRDjKVXZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624324854657888256\/sRDjKVXZ.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615634870388301824\/aoxmpLyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615634870388301824\/aoxmpLyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2484226796\/1439937879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":44,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663408366899863552,"id_str":"663408366899863552","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","url":"https:\/\/t.co\/eEnpb8l5Fw","display_url":"pic.twitter.com\/eEnpb8l5Fw","expanded_url":"http:\/\/twitter.com\/Itspedrito\/status\/663408368879591424\/photo\/1","type":"photo","sizes":{"large":{"w":338,"h":226,"resize":"fit"},"small":{"w":338,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":226,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663408366899863552,"id_str":"663408366899863552","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","url":"https:\/\/t.co\/eEnpb8l5Fw","display_url":"pic.twitter.com\/eEnpb8l5Fw","expanded_url":"http:\/\/twitter.com\/Itspedrito\/status\/663408368879591424\/photo\/1","type":"animated_gif","sizes":{"large":{"w":338,"h":226,"resize":"fit"},"small":{"w":338,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":226,"resize":"fit"}},"video_info":{"aspect_ratio":[169,113],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTmZRIWoAAMK-0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Itspedrito","name":"PEDRAO","id":2484226796,"id_str":"2484226796","indices":[3,14]}],"symbols":[],"media":[{"id":663408366899863552,"id_str":"663408366899863552","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","url":"https:\/\/t.co\/eEnpb8l5Fw","display_url":"pic.twitter.com\/eEnpb8l5Fw","expanded_url":"http:\/\/twitter.com\/Itspedrito\/status\/663408368879591424\/photo\/1","type":"photo","sizes":{"large":{"w":338,"h":226,"resize":"fit"},"small":{"w":338,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":226,"resize":"fit"}},"source_status_id":663408368879591424,"source_status_id_str":"663408368879591424","source_user_id":2484226796,"source_user_id_str":"2484226796"}]},"extended_entities":{"media":[{"id":663408366899863552,"id_str":"663408366899863552","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTmZRIWoAAMK-0.png","url":"https:\/\/t.co\/eEnpb8l5Fw","display_url":"pic.twitter.com\/eEnpb8l5Fw","expanded_url":"http:\/\/twitter.com\/Itspedrito\/status\/663408368879591424\/photo\/1","type":"animated_gif","sizes":{"large":{"w":338,"h":226,"resize":"fit"},"small":{"w":338,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":338,"h":226,"resize":"fit"}},"source_status_id":663408368879591424,"source_status_id_str":"663408368879591424","source_user_id":2484226796,"source_user_id_str":"2484226796","video_info":{"aspect_ratio":[169,113],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTmZRIWoAAMK-0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080665"} +{"delete":{"status":{"id":634530239088082946,"id_str":"634530239088082946","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080080707"}} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081098665984,"id_str":"663728081098665984","text":"RT @kanchan789: Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253706227,"id_str":"3253706227","name":"Mohsin Khan Mkd","screen_name":"Msk20Mkd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":221,"friends_count":713,"listed_count":3,"favourites_count":440,"statuses_count":19115,"created_at":"Tue Jun 23 13:41:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648765794168385536\/QTkeUdRR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648765794168385536\/QTkeUdRR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253706227\/1443512937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:28 +0000 2015","id":663721572247535616,"id_str":"663721572247535616","text":"Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133026592,"id_str":"133026592","name":"\u2728Prem's Maithili\u2728","screen_name":"kanchan789","location":"Lucknow","url":"https:\/\/instagram.com\/salmanislife\/","description":"Everyone's favorite I love myself \u2764 @Beingsalmankhan is my life \u2764 my heartbeat \u2764 \u2764 I Love You Salman \u2764Only Salman Khan Matters","protected":false,"verified":false,"followers_count":6494,"friends_count":394,"listed_count":28,"favourites_count":14931,"statuses_count":91847,"created_at":"Wed Apr 14 20:43:19 +0000 2010","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E5E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_tile":true,"profile_link_color":"AD25C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133026592\/1440520364","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721128783810560,"quoted_status_id_str":"663721128783810560","quoted_status":{"created_at":"Mon Nov 09 14:13:43 +0000 2015","id":663721128783810560,"id_str":"663721128783810560","text":"Salman Khan and Sonam Kapoor On a TV SHOW Called Kaisi Yeh Yaariyaan promote PRDP! #DiwaliDhamakaWithPRDP https:\/\/t.co\/GadxtoZrRF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528411994,"id_str":"528411994","name":"Salman Khan Rules !!","screen_name":"iSalmanFanatic","location":"SALMANIA","url":"http:\/\/www.instagram.com\/ISalmanFanatic","description":"Die Hard fan of Salman Khan Sir ! He Taught Me to 'Be Human' First.! ONLY SALMAN KHAN MATTERS \\m\/ Prem Ratan Dhan Payo - THIS DIWALI, SULTAN - EID 2016 !!!","protected":false,"verified":false,"followers_count":64963,"friends_count":144,"listed_count":53,"favourites_count":4255,"statuses_count":42003,"created_at":"Sun Mar 18 11:12:31 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528411994\/1443028634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[83,105]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721073200861184,"id_str":"663721073200861184","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075973341185,"id_str":"663721075973341185","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075864276993,"id_str":"663721075864276993","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[20,42]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[36,58]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[59,82]}],"user_mentions":[{"screen_name":"kanchan789","name":"\u2728Prem's Maithili\u2728","id":133026592,"id_str":"133026592","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080662"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115353088,"id_str":"663728081115353088","text":"nw senior project","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198816018,"id_str":"198816018","name":"kingofthehill","screen_name":"calizopablo","location":"MNL PH","url":null,"description":"I died in dota1 \u2022Respawn in dota2 Dota2 Player","protected":false,"verified":false,"followers_count":489,"friends_count":455,"listed_count":0,"favourites_count":3823,"statuses_count":20792,"created_at":"Tue Oct 05 09:50:44 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459597170249707520\/0EpD0jIV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459597170249707520\/0EpD0jIV.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638626767687708672\/7L8UmFcS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638626767687708672\/7L8UmFcS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198816018\/1431431345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090146305,"id_str":"663728081090146305","text":"RT @ToMihoOFC: Aimi's squad! \n\nTOMIHO GrandFansDay https:\/\/t.co\/9oESS7nSAY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4010681065,"id_str":"4010681065","name":"Cheque Soliano","screen_name":"ChequeSoliano","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":84,"listed_count":0,"favourites_count":721,"statuses_count":782,"created_at":"Sun Oct 25 06:45:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658176571497312257\/Qfj38LuI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658176571497312257\/Qfj38LuI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:43:30 +0000 2015","id":663698428036145153,"id_str":"663698428036145153","text":"Aimi's squad! \n\nTOMIHO GrandFansDay https:\/\/t.co\/9oESS7nSAY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2928469207,"id_str":"2928469207","name":"TOMIHO OFFICIAL","screen_name":"ToMihoOFC","location":null,"url":null,"description":"OFFICIAL TOMIHO PAGE | TOMMY ESGUERRA and MIHO NISHIDA | 09\/05\/15 | Official TOMIHO Trendsetter | Team TOMIHO Forever | SIRAULO","protected":false,"verified":false,"followers_count":15197,"friends_count":76,"listed_count":8,"favourites_count":2483,"statuses_count":9061,"created_at":"Sat Dec 13 11:13:30 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663568545062653952\/uakn9wWj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663568545062653952\/uakn9wWj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2928469207\/1447036596","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":232,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663698419886657536,"id_str":"663698419886657536","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","url":"https:\/\/t.co\/9oESS7nSAY","display_url":"pic.twitter.com\/9oESS7nSAY","expanded_url":"http:\/\/twitter.com\/ToMihoOFC\/status\/663698428036145153\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663698419886657536,"id_str":"663698419886657536","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","url":"https:\/\/t.co\/9oESS7nSAY","display_url":"pic.twitter.com\/9oESS7nSAY","expanded_url":"http:\/\/twitter.com\/ToMihoOFC\/status\/663698428036145153\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ToMihoOFC","name":"TOMIHO OFFICIAL","id":2928469207,"id_str":"2928469207","indices":[3,13]}],"symbols":[],"media":[{"id":663698419886657536,"id_str":"663698419886657536","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","url":"https:\/\/t.co\/9oESS7nSAY","display_url":"pic.twitter.com\/9oESS7nSAY","expanded_url":"http:\/\/twitter.com\/ToMihoOFC\/status\/663698428036145153\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663698428036145153,"source_status_id_str":"663698428036145153","source_user_id":2928469207,"source_user_id_str":"2928469207"}]},"extended_entities":{"media":[{"id":663698419886657536,"id_str":"663698419886657536","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuMktVEAAVtsZ.jpg","url":"https:\/\/t.co\/9oESS7nSAY","display_url":"pic.twitter.com\/9oESS7nSAY","expanded_url":"http:\/\/twitter.com\/ToMihoOFC\/status\/663698428036145153\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663698428036145153,"source_status_id_str":"663698428036145153","source_user_id":2928469207,"source_user_id_str":"2928469207"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081094361088,"id_str":"663728081094361088","text":"RT @coolgamirullin1: \u7f8e\u5973\u3068\u306e\u611f\u52d5\u306e\u51fa\u4f1a\u3044\uff01\uff01\uff01\n\u672c\u6c17\u3067\u3073\u3063\u304f\u308a\u3057\u307e\u3059\uff01\uff01\n\n\u21d2https:\/\/t.co\/G9M4HjSGhI\n\n\u307e\u308b\u3067\u5922\u306e\u3088\u3046\uff01\uff01\uff01\uff01 https:\/\/t.co\/op2U6lGXD3","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423938614,"id_str":"3423938614","name":"\u6d77\u91ce\u7be4\u5247","screen_name":"SashutaGrigor","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":180,"friends_count":728,"listed_count":1,"favourites_count":0,"statuses_count":13,"created_at":"Sat Aug 15 11:32:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642382057910333440\/OkrRwkBD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642382057910333440\/OkrRwkBD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728004498001922,"id_str":"663728004498001922","text":"\u7f8e\u5973\u3068\u306e\u611f\u52d5\u306e\u51fa\u4f1a\u3044\uff01\uff01\uff01\n\u672c\u6c17\u3067\u3073\u3063\u304f\u308a\u3057\u307e\u3059\uff01\uff01\n\n\u21d2https:\/\/t.co\/G9M4HjSGhI\n\n\u307e\u308b\u3067\u5922\u306e\u3088\u3046\uff01\uff01\uff01\uff01 https:\/\/t.co\/op2U6lGXD3","source":"\u003ca href=\"https:\/\/twitter.com\/yester11111\" rel=\"nofollow\"\u003e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af454\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423637739,"id_str":"3423637739","name":"\u9752\u5c71\u548c\u4e5f","screen_name":"coolgamirullin1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":429,"friends_count":868,"listed_count":2,"favourites_count":0,"statuses_count":58,"created_at":"Sat Aug 15 08:00:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642339386332327936\/X9Hmzyo-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642339386332327936\/X9Hmzyo-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G9M4HjSGhI","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/G9M4HjSGhI","expanded_url":"http:\/\/goo.gl\/9lyQY5","display_url":"goo.gl\/9lyQY5","indices":[50,73]}],"user_mentions":[{"screen_name":"coolgamirullin1","name":"\u9752\u5c71\u548c\u4e5f","id":3423637739,"id_str":"3423637739","indices":[3,19]}],"symbols":[],"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}},"source_status_id":663728004498001922,"source_status_id_str":"663728004498001922","source_user_id":3423637739,"source_user_id_str":"3423637739"}]},"extended_entities":{"media":[{"id":663728004237910017,"id_str":"663728004237910017","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGnAUYAEtEyA.jpg","url":"https:\/\/t.co\/op2U6lGXD3","display_url":"pic.twitter.com\/op2U6lGXD3","expanded_url":"http:\/\/twitter.com\/coolgamirullin1\/status\/663728004498001922\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":672,"h":430,"resize":"fit"}},"source_status_id":663728004498001922,"source_status_id_str":"663728004498001922","source_user_id":3423637739,"source_user_id_str":"3423637739"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080661"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081094488068,"id_str":"663728081094488068","text":"im highly explosive when that fuse has been lit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1213408284,"id_str":"1213408284","name":"A N T I","screen_name":"lindarryl_","location":"bella noches","url":null,"description":"he's ghetto, but he has a runway quality about him || IG - The.ExchangeStudent","protected":false,"verified":false,"followers_count":840,"friends_count":818,"listed_count":4,"favourites_count":994,"statuses_count":49265,"created_at":"Sat Feb 23 19:32:07 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000018060340\/783a4e6590e83ca94430e732cf89fdfb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000018060340\/783a4e6590e83ca94430e732cf89fdfb.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662736576405880832\/dsWE_bqE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662736576405880832\/dsWE_bqE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1213408284\/1446761598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080661"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090166784,"id_str":"663728081090166784","text":"RT @LifeStuffDaily: Hit that like button! https:\/\/t.co\/deofhMxrt7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322578078,"id_str":"3322578078","name":"Rogue Cheney","screen_name":"LewdRogueCheney","location":"Fiore, Magnolia","url":null,"description":"Comrades.....Bonds that don't exist in our guild, huh? #LewdRp #Descriptive #FTRP Non\/LewdRp","protected":false,"verified":false,"followers_count":142,"friends_count":135,"listed_count":1,"favourites_count":9,"statuses_count":257,"created_at":"Fri Aug 21 18:17:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663388476335755264\/LMNLw8qI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663388476335755264\/LMNLw8qI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322578078\/1446999111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:42:06 +0000 2015","id":663426284152889344,"id_str":"663426284152889344","text":"Hit that like button! https:\/\/t.co\/deofhMxrt7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2170404938,"id_str":"2170404938","name":"LifeStuffDaily","screen_name":"LifeStuffDaily","location":"Earth ","url":null,"description":"LIFE STUFF DAILY (Says It All) Your Daily supply of quotes, videos and pictures\/memes","protected":false,"verified":false,"followers_count":29436,"friends_count":10027,"listed_count":20,"favourites_count":961,"statuses_count":4298,"created_at":"Sat Nov 02 15:01:14 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663631618905645056\/s6WGGkYk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663631618905645056\/s6WGGkYk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2170404938\/1442139418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":327,"favorite_count":1717,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663426276229820417,"id_str":"663426276229820417","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","url":"https:\/\/t.co\/deofhMxrt7","display_url":"pic.twitter.com\/deofhMxrt7","expanded_url":"http:\/\/twitter.com\/LifeStuffDaily\/status\/663426284152889344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":588,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":749,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663426276229820417,"id_str":"663426276229820417","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","url":"https:\/\/t.co\/deofhMxrt7","display_url":"pic.twitter.com\/deofhMxrt7","expanded_url":"http:\/\/twitter.com\/LifeStuffDaily\/status\/663426284152889344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":588,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":749,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LifeStuffDaily","name":"LifeStuffDaily","id":2170404938,"id_str":"2170404938","indices":[3,18]}],"symbols":[],"media":[{"id":663426276229820417,"id_str":"663426276229820417","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","url":"https:\/\/t.co\/deofhMxrt7","display_url":"pic.twitter.com\/deofhMxrt7","expanded_url":"http:\/\/twitter.com\/LifeStuffDaily\/status\/663426284152889344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":588,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":749,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663426284152889344,"source_status_id_str":"663426284152889344","source_user_id":2170404938,"source_user_id_str":"2170404938"}]},"extended_entities":{"media":[{"id":663426276229820417,"id_str":"663426276229820417","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT2rulWsAE2VpW.jpg","url":"https:\/\/t.co\/deofhMxrt7","display_url":"pic.twitter.com\/deofhMxrt7","expanded_url":"http:\/\/twitter.com\/LifeStuffDaily\/status\/663426284152889344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":588,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"large":{"w":749,"h":735,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663426284152889344,"source_status_id_str":"663426284152889344","source_user_id":2170404938,"source_user_id_str":"2170404938"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115308032,"id_str":"663728081115308032","text":"RT @Harang_CS_: \uac74\uac15\ud558\uace0 \ud65c\uae30\ucc28\uac8c \uc624\ub85c\ub098\ubbfc\uc528!~~~~~~~~~~~~","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3259184036,"id_str":"3259184036","name":"\ud2b8\uc704\ud130\ud558\ub294 \ub8e8\uc774\uc2a4","screen_name":"tw_jam_louis_","location":"\ud0d0\ub77c \uc5b4\ub518\uac00 \uc625\uc218\uc218 \ub355\ud6c4 \uc606","url":null,"description":"\uc774\uae00\uc774 \uc7ac\ubc0c\uac8c \ud558\ub354\ub77c\uace0. \uadf8\ub798\uc11c \ub098\ub3c4 \uc2dc\uc791\ud588\ub294\ub370, \uc774\uac70 \uacc4\uc18d \ubd99\uc7a1\uace0 \uc788\uac8c \ub418\ub294 \uac78? \ub9de\ud314\uc740 \uba58\uc158 \uc774\ubaa8\ud2f0\ucf58 \uc790\uc8fc \uc0ac\uc6a9 \uc774\ubcc4\uc740 \ube14\uc5b8\ube14 \uce90\ubd95\uc8fc\uc758 \/ \uc790\uc8fc \uc624\uc9c0 \ubabb\ud574\uc11c \ubbf8\uc548\ud574. 15 06 30~","protected":false,"verified":false,"followers_count":203,"friends_count":159,"listed_count":1,"favourites_count":556,"statuses_count":25917,"created_at":"Sun Jun 28 19:03:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661187427952783361\/hKvG5yAF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661187427952783361\/hKvG5yAF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:57:33 +0000 2015","id":663717063140052992,"id_str":"663717063140052992","text":"\uac74\uac15\ud558\uace0 \ud65c\uae30\ucc28\uac8c \uc624\ub85c\ub098\ubbfc\uc528!~~~~~~~~~~~~","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3712231873,"id_str":"3712231873","name":"\ub561\uae4c\ub294 \uc774\ud558\ub791","screen_name":"Harang_CS_","location":null,"url":null,"description":"Cypher Integration School\/ \ud300\ubd07\ubb38\uc758\ub294 \ub098 \uc544\ub2c8\uba74 \uc774\uae00\ud615\uc5d0\uac8c\/ \ud604\ub300, \uc77c\uc0c1, \ud559\uad50 \/\uac1c\ucca0\ubcbd\uc8fc\uc758(\uac15\uc870)\/ 2015.10.1~","protected":false,"verified":false,"followers_count":212,"friends_count":183,"listed_count":5,"favourites_count":490,"statuses_count":20563,"created_at":"Mon Sep 28 07:08:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663526409319542784\/QFNuwtrS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663526409319542784\/QFNuwtrS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3712231873\/1445448985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harang_CS_","name":"\ub561\uae4c\ub294 \uc774\ud558\ub791","id":3712231873,"id_str":"3712231873","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081753600,"id_str":"663728081081753600","text":"@nachumochimofu2 \u5984\u60f3\u304c\u6357\u308a\u307e\u3057\u305f(\uffe3\u30fc\uffe3)\u2190\u697d\u3057\u307f\u65b9\u304c\u6b8b\u5ff5\u3002","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663669696802099200,"in_reply_to_status_id_str":"663669696802099200","in_reply_to_user_id":294725154,"in_reply_to_user_id_str":"294725154","in_reply_to_screen_name":"nachumochimofu2","user":{"id":98646112,"id_str":"98646112","name":"\u305f\u304d\u3063\u3061","screen_name":"torikagotk","location":"\u6771\u4eac\u65b0\u5bbf","url":"http:\/\/ameblo.jp\/torikago-tk","description":"\u3046\u3063\u3059\u3089\u30aa\u30bf\u30af\u3002\u30d2\u30de\u306a\u4eba\u3002\u672c\u5dde\u6700\u5357\u7aef\u751f\u307e\u308c\u6771\u4eac\u5728\u4f4f\u3002\u4eca\u306f\u5200\u5263\u4e71\u821e\u304c\u30a2\u30c4\u30a4\u3067\u3059\u3002\u9db4\u4e38\u597d\u304d\u3059\u304e\u3066\u30c4\u30e9\u3044\u3002","protected":false,"verified":false,"followers_count":44,"friends_count":47,"listed_count":2,"favourites_count":69,"statuses_count":12491,"created_at":"Tue Dec 22 14:30:19 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639069180835160064\/WgLazN2B_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639069180835160064\/WgLazN2B_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nachumochimofu2","name":"\u3046\u3055","id":294725154,"id_str":"294725154","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081102839808,"id_str":"663728081102839808","text":"E o m\u00eas, e o ano tamb\u00e9m \ud83d\ude22 https:\/\/t.co\/JbhePLI3yQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2347973721,"id_str":"2347973721","name":"\u2763","screen_name":"owjussara","location":"Centro, Cascavel","url":"http:\/\/and-if-you-love-me.tumblr.com\/","description":"\u25c0 Snap || owjujuba","protected":false,"verified":false,"followers_count":1363,"friends_count":732,"listed_count":0,"favourites_count":2598,"statuses_count":21546,"created_at":"Mon Feb 17 03:03:03 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650456803147415557\/mfj9bI8p.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650456803147415557\/mfj9bI8p.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660465974269911040\/4uiYaIy7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660465974269911040\/4uiYaIy7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2347973721\/1447022566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727915104919552,"quoted_status_id_str":"663727915104919552","quoted_status":{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727915104919552,"id_str":"663727915104919552","text":"N\u00e3o vejo a hora que acabe logo esse dia e tamb\u00e9m a semana... \ud83d\ude13\ud83d\udc4d\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2307063578,"id_str":"2307063578","name":"Wilson Oliveira","screen_name":"Wilsuu","location":"Cascavel Pr \/ Snap: w1lsu","url":"https:\/\/instagram.com\/wilsonnoliveiraa","description":"A vitoria n\u00e3o existe sem a determina\u00e7\u00e3o portanto mantenha-se firme sempre!","protected":false,"verified":false,"followers_count":1800,"friends_count":590,"listed_count":2,"favourites_count":4951,"statuses_count":31123,"created_at":"Thu Jan 23 18:50:45 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465525717136986112\/OGbviwzW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465525717136986112\/OGbviwzW.jpeg","profile_background_tile":true,"profile_link_color":"6E6E2E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663161375934562304\/lpru7U5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663161375934562304\/lpru7U5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307063578\/1446169261","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JbhePLI3yQ","expanded_url":"https:\/\/twitter.com\/Wilsuu\/status\/663727915104919552","display_url":"twitter.com\/Wilsuu\/status\/\u2026","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080080663"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081077669888,"id_str":"663728081077669888","text":"@PabloCarbajal29 no sera de Casillas, te apaleo jaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727709235867648,"in_reply_to_status_id_str":"663727709235867648","in_reply_to_user_id":2886837393,"in_reply_to_user_id_str":"2886837393","in_reply_to_screen_name":"PabloCarbajal29","user":{"id":872324300,"id_str":"872324300","name":"Pozerin","screen_name":"Hectoor_ll","location":"Le\u00f3n, Moral del Condado. ","url":null,"description":"19 || Como no te voy a querer si fuiste campe\u00f3n de Europa por d\u00e9cima vez.","protected":false,"verified":false,"followers_count":285,"friends_count":126,"listed_count":2,"favourites_count":2534,"statuses_count":11339,"created_at":"Wed Oct 10 18:52:16 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646010640025427968\/DDu8yjEQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646010640025427968\/DDu8yjEQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/872324300\/1436740007","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PabloCarbajal29","name":"Pablo Carbajal","id":2886837393,"id_str":"2886837393","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080657"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081098702848,"id_str":"663728081098702848","text":"sono","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752196883,"id_str":"752196883","name":"pedro","screen_name":"falshee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1086,"friends_count":266,"listed_count":6,"favourites_count":7,"statuses_count":23341,"created_at":"Sun Aug 12 01:01:13 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614200237826117632\/erqreFCC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614200237826117632\/erqreFCC.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342420537556992\/nyxnx2Gf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342420537556992\/nyxnx2Gf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752196883\/1446988230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080080662"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115463680,"id_str":"663728081115463680","text":"\u041d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u0435 \u043f\u043e\u0434 \u043d\u043e\u043b\u044c! \n\u0417\u0434\u0440\u0430\u0432\u0441\u0442\u0432\u0443\u0439 \u043a\u0440\u0435\u043f\u043a\u0438\u0439, \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u044c.\n\u041a \u0447\u0451\u0440\u0442\u0443 \u0432\u0430\u0448 \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u044c \n\u0417\u0434\u0440\u0430\u0432\u0441\u0442\u0432\u0443\u0439 \u0437\u0430\u043b, \u0445\u0430\u0440\u0434\u043a\u043e\u0440 \u0438 \u0431\u043e\u043b\u044c!!!... https:\/\/t.co\/5HtXVXzHRo","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1350549499,"id_str":"1350549499","name":"[\u041d]\u0438\u043a\u0438\u0442\u0430","screen_name":"sm_dmb7","location":"England, United Kingdom","url":null,"description":null,"protected":false,"verified":false,"followers_count":212,"friends_count":157,"listed_count":1,"favourites_count":627,"statuses_count":4945,"created_at":"Sun Apr 14 00:01:59 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626873176535003136\/QD6zTzny.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626873176535003136\/QD6zTzny.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647340007603109888\/v7zdKYpz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647340007603109888\/v7zdKYpz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1350549499\/1443172914","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[56.50941606,27.34252573]},"coordinates":{"type":"Point","coordinates":[27.34252573,56.50941606]},"place":{"id":"0535809ae673e912","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0535809ae673e912.json","place_type":"city","name":"R\u0113zekne","full_name":"R\u0113zekne, Latvija","country_code":"LV","country":"Latvija","bounding_box":{"type":"Polygon","coordinates":[[[27.303625,56.477517],[27.303625,56.538494],[27.378899,56.538494],[27.378899,56.477517]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5HtXVXzHRo","expanded_url":"https:\/\/www.swarmapp.com\/c\/7nRBkyoIGvr","display_url":"swarmapp.com\/c\/7nRBkyoIGvr","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081094377472,"id_str":"663728081094377472","text":"RT @go100he: [\ud2b8\ub808\uce74\uc774\ubca4\ud2b8\uc548\ub0b4\/\uc624\ub298\uc758\uce74\ub4dc(3)] \uc624\ub298\uc758 \uce74\ub4dc \uadf8 \uc138\ubc88\uc9f8\uc2dc\uac04\uc774 \ucc3e\uc544\uc654\uc2b5\ub2c8\ub2e4. u_U https:\/\/t.co\/0B6zf4Lm2m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2878793300,"id_str":"2878793300","name":"\uc870\uac01\ubbf8\ub0a8J\/\uace03","screen_name":"tihalike_","location":"\ub300\ud55c\ubbfc\uad6d","url":null,"description":"\uc0ac\uc774\ud37c\uc988:3\/\ud558\uc774\ud050\/\uc6d0\ud37c\ub9e8\/\uc81c\uc774\uc720\uc800\uc785\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":11,"friends_count":61,"listed_count":0,"favourites_count":1788,"statuses_count":2170,"created_at":"Sun Oct 26 22:46:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584295248303558656\/Fl-nLdUs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584295248303558656\/Fl-nLdUs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2878793300\/1446506389","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:37:00 +0000 2015","id":663696789858467841,"id_str":"663696789858467841","text":"[\ud2b8\ub808\uce74\uc774\ubca4\ud2b8\uc548\ub0b4\/\uc624\ub298\uc758\uce74\ub4dc(3)] \uc624\ub298\uc758 \uce74\ub4dc \uadf8 \uc138\ubc88\uc9f8\uc2dc\uac04\uc774 \ucc3e\uc544\uc654\uc2b5\ub2c8\ub2e4. u_U https:\/\/t.co\/0B6zf4Lm2m","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456174025,"id_str":"456174025","name":"re100","screen_name":"go100he","location":"\ud2b8\uc640\uc77c\ub77c\uc787","url":"http:\/\/go100he.godohosting.com","description":"2015\ub144 11\uc6d4 28\uc77c \ub85c\uadf8\uc778\uacfc 4\ub300\uba85\uac80\uc774\ub77c\ub294 \uc5f0\ud569\uc804\uc73c\ub85c \ubc1c\uc0b0\uc5ed KBS \uc2a4\ud3ec\uce20\uc6d4\ub4dc \uc81c 2 \uccb4\uc721\uad00\uc5d0\uc11c \uc5f4\ub9b4 \uc608\uc815\uc785\ub2c8\ub2e4! \/ \uc628\ub9ac\uc804 \uba54\uc77c cyponly@gmail.com \ud639\uc740 re100go@naver.com","protected":false,"verified":false,"followers_count":1555,"friends_count":138,"listed_count":28,"favourites_count":29,"statuses_count":1629,"created_at":"Thu Jan 05 23:32:38 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583303423530946561\/lt_l55pm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583303423530946561\/lt_l55pm_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696788759580672,"id_str":"663696788759580672","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","url":"https:\/\/t.co\/0B6zf4Lm2m","display_url":"pic.twitter.com\/0B6zf4Lm2m","expanded_url":"http:\/\/twitter.com\/go100he\/status\/663696789858467841\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696788759580672,"id_str":"663696788759580672","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","url":"https:\/\/t.co\/0B6zf4Lm2m","display_url":"pic.twitter.com\/0B6zf4Lm2m","expanded_url":"http:\/\/twitter.com\/go100he\/status\/663696789858467841\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"go100he","name":"re100","id":456174025,"id_str":"456174025","indices":[3,11]}],"symbols":[],"media":[{"id":663696788759580672,"id_str":"663696788759580672","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","url":"https:\/\/t.co\/0B6zf4Lm2m","display_url":"pic.twitter.com\/0B6zf4Lm2m","expanded_url":"http:\/\/twitter.com\/go100he\/status\/663696789858467841\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}},"source_status_id":663696789858467841,"source_status_id_str":"663696789858467841","source_user_id":456174025,"source_user_id_str":"456174025"}]},"extended_entities":{"media":[{"id":663696788759580672,"id_str":"663696788759580672","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXstoSVEAAXp6Q.jpg","url":"https:\/\/t.co\/0B6zf4Lm2m","display_url":"pic.twitter.com\/0B6zf4Lm2m","expanded_url":"http:\/\/twitter.com\/go100he\/status\/663696789858467841\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":720,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"}},"source_status_id":663696789858467841,"source_status_id_str":"663696789858467841","source_user_id":456174025,"source_user_id_str":"456174025"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080080661"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081111126016,"id_str":"663728081111126016","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan \nPapa ji family ki trf se god nyt Dhan Dhan Satguru tera hi asra drshn dena ji spne me jrur papa g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":3932648774,"id_str":"3932648774","name":"anuradha","screen_name":"anuradha7verma","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":20,"listed_count":1,"favourites_count":389,"statuses_count":755,"created_at":"Sun Oct 18 05:32:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663641571145814020\/yAq93hcn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663641571145814020\/yAq93hcn_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080080665"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090146304,"id_str":"663728081090146304","text":"@cod_civil \u3055\u3059\u304c\u30ea\u30d9\u305f\u3093\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727795311276032,"in_reply_to_status_id_str":"663727795311276032","in_reply_to_user_id":2995481046,"in_reply_to_user_id_str":"2995481046","in_reply_to_screen_name":"cod_civil","user":{"id":2978655656,"id_str":"2978655656","name":"\u6625","screen_name":"ARHqru_","location":"Charlotte","url":null,"description":"ID[xHqru_][LucKy-__-SamURaI] @xAlfalo\u306e\u56f2\u3044\/ \u30dc\u30c3\u30c1\u3084\u304b\u3089\u7d61\u307f\u6fc0\u3057\u3081\u3067\u6765\u3066\u304f\u3060\u3055\u3044\u3002\u30cd\u30c3\u30c8\u3067\u30a4\u30ad\u304c\u308b\u3053\u3068\u3057\u304b\u3067\u304d\u307e\u305b\u3093\u3002BO3\u7bed\u308a\u6c11","protected":false,"verified":false,"followers_count":223,"friends_count":152,"listed_count":3,"favourites_count":1171,"statuses_count":6065,"created_at":"Tue Jan 13 06:04:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661483648781172736\/UehrT08K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661483648781172736\/UehrT08K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978655656\/1446869170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cod_civil","name":"Libera\u3067\u3054\u3056\u308b","id":2995481046,"id_str":"2995481046","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081868288,"id_str":"663728081081868288","text":"My nuts taste of bacon.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21476236,"id_str":"21476236","name":"Dave Walters","screen_name":"NotoriousREV","location":null,"url":null,"description":"The views and opinions represented here do not neccesarily represent my views or opinions.","protected":false,"verified":false,"followers_count":326,"friends_count":361,"listed_count":9,"favourites_count":75,"statuses_count":13231,"created_at":"Sat Feb 21 10:48:50 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/491665354653851648\/V58tA6j-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/491665354653851648\/V58tA6j-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21476236\/1427018006","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081086083072,"id_str":"663728081086083072","text":"Car il y a un sujet sur lequel j'aimerais vraiment \u00e9crire. Mais cela risque de ne pas coller avec mon M2 ...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727982146691072,"in_reply_to_status_id_str":"663727982146691072","in_reply_to_user_id":236037087,"in_reply_to_user_id_str":"236037087","in_reply_to_screen_name":"ThomasJapiot","user":{"id":236037087,"id_str":"236037087","name":"Thomas.","screen_name":"ThomasJapiot","location":"Paris - BFC","url":"http:\/\/www.linkedin.com\/in\/thomasjapiot","description":"Je d\u00e9fends la Lib\u00e9rt\u00e9, l'\u00e9cologie - Porte-parole des animaux @L214 - Je suis f\u00e9ministe et j'aime la Su\u00e8de - #TeamPiouPiou","protected":false,"verified":false,"followers_count":2629,"friends_count":838,"listed_count":70,"favourites_count":11625,"statuses_count":48029,"created_at":"Sun Jan 09 17:14:32 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"002BFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448764879533375488\/SBmhcIJE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448764879533375488\/SBmhcIJE.jpeg","profile_background_tile":true,"profile_link_color":"0F9DE8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660858844894117888\/epB5oM6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660858844894117888\/epB5oM6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236037087\/1446417457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080080659"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081102770176,"id_str":"663728081102770176","text":"@ryuvelz_ kangen aku gak '-')?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663003513186705408,"in_reply_to_status_id_str":"663003513186705408","in_reply_to_user_id":3314715565,"in_reply_to_user_id_str":"3314715565","in_reply_to_screen_name":"ryuvelz_","user":{"id":3243531722,"id_str":"3243531722","name":"\uc8fc\u2606 \/\/h","screen_name":"nomnomjoo","location":"apinkfams.starlight.babyz SQs\u2714","url":"http:\/\/twitter.com\/APINKKNJ","description":"\uc608\uc05c \uc2dd\uc2e0 \uc5d0\uc774\ud551\ud06c \ubcf4\uceec \uae40\ub0a8\uc8fc\uc785\ub2c8\ub2f9~ @yerv99 \uc758 \uc5b8\ub2c8\u2661 [I speak eng, kor, ind, and food!]","protected":false,"verified":false,"followers_count":778,"friends_count":802,"listed_count":1,"favourites_count":184,"statuses_count":10449,"created_at":"Fri Jun 12 18:29:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654140561755009024\/lWSwqSKI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654140561755009024\/lWSwqSKI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3243531722\/1446391643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ryuvelz_","name":"sujev","id":3314715565,"id_str":"3314715565","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080080663"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081106944000,"id_str":"663728081106944000","text":"RT @meganbjulian: Time for wine, popcorn and recorded episodes of @NBCTheVoice to get over that #Broncos loss.","source":"\u003ca href=\"http:\/\/larue6178.wordpress.com\" rel=\"nofollow\"\u003eLarue61787468\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4008298815,"id_str":"4008298815","name":"Larue Levens","screen_name":"Larue6178","location":null,"url":null,"description":"Likes red bull and drinking Diet Coke \u2736 Nature adventurer \u2736 Change maker \u2736 Self-proclaimed foodie \u2736 Feng Shui lover","protected":false,"verified":false,"followers_count":1,"friends_count":45,"listed_count":0,"favourites_count":2,"statuses_count":20,"created_at":"Wed Oct 21 09:08:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656760160296153088\/h52-SNAf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656760160296153088\/h52-SNAf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:37:27 +0000 2015","id":663515708127510528,"id_str":"663515708127510528","text":"Time for wine, popcorn and recorded episodes of @NBCTheVoice to get over that #Broncos loss.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":217914256,"id_str":"217914256","name":"Megan Julian","screen_name":"meganbjulian","location":"San Antonio, TX","url":"http:\/\/www.meganjulian.com","description":"@spurs social media coordinator | emoji enthusiast | corgi mom | IG: @meganbjulian | snapchat: emjayyy22","protected":false,"verified":false,"followers_count":784,"friends_count":1770,"listed_count":39,"favourites_count":2800,"statuses_count":3699,"created_at":"Sat Nov 20 22:09:01 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/527564393265897472\/_7ltszEQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/527564393265897472\/_7ltszEQ.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654156523837370368\/xs1PtuSF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654156523837370368\/xs1PtuSF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217914256\/1430793670","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"Broncos","indices":[78,86]}],"urls":[],"user_mentions":[{"screen_name":"NBCTheVoice","name":"The Voice","id":216444984,"id_str":"216444984","indices":[48,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Broncos","indices":[96,104]}],"urls":[],"user_mentions":[{"screen_name":"meganbjulian","name":"Megan Julian","id":217914256,"id_str":"217914256","indices":[3,16]},{"screen_name":"NBCTheVoice","name":"The Voice","id":216444984,"id_str":"216444984","indices":[66,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080664"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081102880772,"id_str":"663728081102880772","text":"RT @kanchan789: Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277411794,"id_str":"3277411794","name":"MKD GOOD BOY","screen_name":"offmkd","location":"Doha, Qatar","url":"http:\/\/mkd.com","description":"BAS KYA SALMAN KHAN KA FAN YAR","protected":false,"verified":false,"followers_count":46,"friends_count":26,"listed_count":2,"favourites_count":99,"statuses_count":10128,"created_at":"Sun Jul 12 12:39:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620210946187759616\/sFUXAcAG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620210946187759616\/sFUXAcAG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277411794\/1436705021","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:28 +0000 2015","id":663721572247535616,"id_str":"663721572247535616","text":"Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133026592,"id_str":"133026592","name":"\u2728Prem's Maithili\u2728","screen_name":"kanchan789","location":"Lucknow","url":"https:\/\/instagram.com\/salmanislife\/","description":"Everyone's favorite I love myself \u2764 @Beingsalmankhan is my life \u2764 my heartbeat \u2764 \u2764 I Love You Salman \u2764Only Salman Khan Matters","protected":false,"verified":false,"followers_count":6494,"friends_count":394,"listed_count":28,"favourites_count":14931,"statuses_count":91847,"created_at":"Wed Apr 14 20:43:19 +0000 2010","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E5E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_tile":true,"profile_link_color":"AD25C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133026592\/1440520364","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721128783810560,"quoted_status_id_str":"663721128783810560","quoted_status":{"created_at":"Mon Nov 09 14:13:43 +0000 2015","id":663721128783810560,"id_str":"663721128783810560","text":"Salman Khan and Sonam Kapoor On a TV SHOW Called Kaisi Yeh Yaariyaan promote PRDP! #DiwaliDhamakaWithPRDP https:\/\/t.co\/GadxtoZrRF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528411994,"id_str":"528411994","name":"Salman Khan Rules !!","screen_name":"iSalmanFanatic","location":"SALMANIA","url":"http:\/\/www.instagram.com\/ISalmanFanatic","description":"Die Hard fan of Salman Khan Sir ! He Taught Me to 'Be Human' First.! ONLY SALMAN KHAN MATTERS \\m\/ Prem Ratan Dhan Payo - THIS DIWALI, SULTAN - EID 2016 !!!","protected":false,"verified":false,"followers_count":64963,"friends_count":144,"listed_count":53,"favourites_count":4255,"statuses_count":42003,"created_at":"Sun Mar 18 11:12:31 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528411994\/1443028634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[83,105]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721073200861184,"id_str":"663721073200861184","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075973341185,"id_str":"663721075973341185","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075864276993,"id_str":"663721075864276993","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[20,42]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[36,58]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[59,82]}],"user_mentions":[{"screen_name":"kanchan789","name":"\u2728Prem's Maithili\u2728","id":133026592,"id_str":"133026592","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080663"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081733120,"id_str":"663728081081733120","text":"RT @FactsOfSchool: Haha yes\ud83d\udc4c\ud83c\udffb https:\/\/t.co\/vG1WcSHKre","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396928948,"id_str":"2396928948","name":"Julia Hixon","screen_name":"julia_m_hixon","location":null,"url":null,"description":"Highschool~theatre~boredom~food~Single","protected":false,"verified":false,"followers_count":78,"friends_count":33,"listed_count":1,"favourites_count":11267,"statuses_count":1867,"created_at":"Tue Mar 18 23:46:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628907523513425921\/GO4UgEfx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628907523513425921\/GO4UgEfx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396928948\/1433386034","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:16 +0000 2015","id":663701890115444737,"id_str":"663701890115444737","text":"Haha yes\ud83d\udc4c\ud83c\udffb https:\/\/t.co\/vG1WcSHKre","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312230865,"id_str":"312230865","name":"Student Problems","screen_name":"FactsOfSchool","location":"factsofschool@gmail.com ","url":"http:\/\/FactsOfSchool.com","description":"http:\/\/t.co\/LFnssIY2Z4's Official Twitter. If you're a student, follow us for the most relatable facts & things you will ever go through. http:\/\/t.co\/nTvaOQnwBp","protected":false,"verified":false,"followers_count":4593036,"friends_count":5078,"listed_count":5666,"favourites_count":5028,"statuses_count":31713,"created_at":"Mon Jun 06 19:54:01 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434836784430587906\/LExdf0lb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434836784430587906\/LExdf0lb.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661383724945309696\/glXg4knm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661383724945309696\/glXg4knm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312230865\/1443292063","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1263,"favorite_count":1952,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663701882272145408,"id_str":"663701882272145408","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","url":"https:\/\/t.co\/vG1WcSHKre","display_url":"pic.twitter.com\/vG1WcSHKre","expanded_url":"http:\/\/twitter.com\/FactsOfSchool\/status\/663701890115444737\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":412,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701882272145408,"id_str":"663701882272145408","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","url":"https:\/\/t.co\/vG1WcSHKre","display_url":"pic.twitter.com\/vG1WcSHKre","expanded_url":"http:\/\/twitter.com\/FactsOfSchool\/status\/663701890115444737\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":412,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FactsOfSchool","name":"Student Problems","id":312230865,"id_str":"312230865","indices":[3,17]}],"symbols":[],"media":[{"id":663701882272145408,"id_str":"663701882272145408","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","url":"https:\/\/t.co\/vG1WcSHKre","display_url":"pic.twitter.com\/vG1WcSHKre","expanded_url":"http:\/\/twitter.com\/FactsOfSchool\/status\/663701890115444737\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":412,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}},"source_status_id":663701890115444737,"source_status_id_str":"663701890115444737","source_user_id":312230865,"source_user_id_str":"312230865"}]},"extended_entities":{"media":[{"id":663701882272145408,"id_str":"663701882272145408","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxWHGW4AAZb0w.jpg","url":"https:\/\/t.co\/vG1WcSHKre","display_url":"pic.twitter.com\/vG1WcSHKre","expanded_url":"http:\/\/twitter.com\/FactsOfSchool\/status\/663701890115444737\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":599,"h":412,"resize":"fit"},"small":{"w":340,"h":233,"resize":"fit"}},"source_status_id":663701890115444737,"source_status_id_str":"663701890115444737","source_user_id":312230865,"source_user_id_str":"312230865"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081090322432,"id_str":"663728081090322432","text":"RT @kanchan789: Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389681087,"id_str":"3389681087","name":"SK QATAR FAN CLUB","screen_name":"SKqatar_fanClub","location":"Doha, Qatar","url":null,"description":"qatar salman khan fan club","protected":false,"verified":false,"followers_count":27,"friends_count":35,"listed_count":2,"favourites_count":94,"statuses_count":6761,"created_at":"Thu Jul 23 18:22:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624283499990790144\/s2f1bcf5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624283499990790144\/s2f1bcf5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389681087\/1437675922","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:28 +0000 2015","id":663721572247535616,"id_str":"663721572247535616","text":"Nd I missed it \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d #DiwaliDhamakaWithPRDP https:\/\/t.co\/e5C6ZKNPPH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133026592,"id_str":"133026592","name":"\u2728Prem's Maithili\u2728","screen_name":"kanchan789","location":"Lucknow","url":"https:\/\/instagram.com\/salmanislife\/","description":"Everyone's favorite I love myself \u2764 @Beingsalmankhan is my life \u2764 my heartbeat \u2764 \u2764 I Love You Salman \u2764Only Salman Khan Matters","protected":false,"verified":false,"followers_count":6494,"friends_count":394,"listed_count":28,"favourites_count":14931,"statuses_count":91847,"created_at":"Wed Apr 14 20:43:19 +0000 2010","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3E5E6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/765623238\/9aefe05d62b502db401bcac6cdcbc29b.jpeg","profile_background_tile":true,"profile_link_color":"AD25C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663207682782851072\/xds1Ydjn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133026592\/1440520364","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663721128783810560,"quoted_status_id_str":"663721128783810560","quoted_status":{"created_at":"Mon Nov 09 14:13:43 +0000 2015","id":663721128783810560,"id_str":"663721128783810560","text":"Salman Khan and Sonam Kapoor On a TV SHOW Called Kaisi Yeh Yaariyaan promote PRDP! #DiwaliDhamakaWithPRDP https:\/\/t.co\/GadxtoZrRF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528411994,"id_str":"528411994","name":"Salman Khan Rules !!","screen_name":"iSalmanFanatic","location":"SALMANIA","url":"http:\/\/www.instagram.com\/ISalmanFanatic","description":"Die Hard fan of Salman Khan Sir ! He Taught Me to 'Be Human' First.! ONLY SALMAN KHAN MATTERS \\m\/ Prem Ratan Dhan Payo - THIS DIWALI, SULTAN - EID 2016 !!!","protected":false,"verified":false,"followers_count":64963,"friends_count":144,"listed_count":53,"favourites_count":4255,"statuses_count":42003,"created_at":"Sun Mar 18 11:12:31 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714807386\/340623b5b6838402aa140a006253bdfa.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643801127452938240\/alReYa5L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528411994\/1443028634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[83,105]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721073326755840,"id_str":"663721073326755840","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzLWVEAAmpT2.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721073200861184,"id_str":"663721073200861184","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzK4UEAA6z6l.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075973341185,"id_str":"663721075973341185","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzVNUwAEdpon.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}},{"id":663721075864276993,"id_str":"663721075864276993","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCzUzUkAE5dlf.jpg","url":"https:\/\/t.co\/GadxtoZrRF","display_url":"pic.twitter.com\/GadxtoZrRF","expanded_url":"http:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":true,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[20,42]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[36,58]}],"urls":[{"url":"https:\/\/t.co\/e5C6ZKNPPH","expanded_url":"https:\/\/twitter.com\/iSalmanFanatic\/status\/663721128783810560","display_url":"twitter.com\/iSalmanFanatic\u2026","indices":[59,82]}],"user_mentions":[{"screen_name":"kanchan789","name":"\u2728Prem's Maithili\u2728","id":133026592,"id_str":"133026592","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080660"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081757696,"id_str":"663728081081757696","text":"RT @nmdado: \ubbfc\ub0af+\uac70\uafb8\ub85c \uc4f4 \uc2a4\ub0c5\ubc31=\uc0ac\ub791 https:\/\/t.co\/TXEtQxNFjB","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3781590494,"id_str":"3781590494","name":"\ub2ec","screen_name":"Darling_be_mine","location":"\uc724\uc815\ud55c \ub0a0\uac1c \uc18d","url":"http:\/\/instagram.com\/darling.be.mine","description":"\uc815\ud55c\ubbfc\uaddc\ub9d8","protected":false,"verified":false,"followers_count":31,"friends_count":94,"listed_count":0,"favourites_count":51,"statuses_count":818,"created_at":"Sun Oct 04 13:43:40 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657932222574399488\/GbbZjfDC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657932222574399488\/GbbZjfDC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3781590494\/1446717999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:13:31 +0000 2015","id":663645584486588416,"id_str":"663645584486588416","text":"\ubbfc\ub0af+\uac70\uafb8\ub85c \uc4f4 \uc2a4\ub0c5\ubc31=\uc0ac\ub791 https:\/\/t.co\/TXEtQxNFjB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3969346993,"id_str":"3969346993","name":"\ub2e4\ub3c4","screen_name":"nmdado","location":null,"url":null,"description":"SVT RPS \ub9ac\ubc84\uc2dc\ube14","protected":false,"verified":false,"followers_count":24,"friends_count":15,"listed_count":0,"favourites_count":251,"statuses_count":439,"created_at":"Wed Oct 21 13:03:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656827604427673601\/Um__l4Ue_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656827604427673601\/Um__l4Ue_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663645582750191616,"id_str":"663645582750191616","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","url":"https:\/\/t.co\/TXEtQxNFjB","display_url":"pic.twitter.com\/TXEtQxNFjB","expanded_url":"http:\/\/twitter.com\/nmdado\/status\/663645584486588416\/photo\/1","type":"photo","sizes":{"large":{"w":268,"h":170,"resize":"fit"},"small":{"w":268,"h":170,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663645582750191616,"id_str":"663645582750191616","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","url":"https:\/\/t.co\/TXEtQxNFjB","display_url":"pic.twitter.com\/TXEtQxNFjB","expanded_url":"http:\/\/twitter.com\/nmdado\/status\/663645584486588416\/photo\/1","type":"animated_gif","sizes":{"large":{"w":268,"h":170,"resize":"fit"},"small":{"w":268,"h":170,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":170,"resize":"fit"}},"video_info":{"aspect_ratio":[134,85],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTW-JDCVEAAWnAM.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nmdado","name":"\ub2e4\ub3c4","id":3969346993,"id_str":"3969346993","indices":[3,10]}],"symbols":[],"media":[{"id":663645582750191616,"id_str":"663645582750191616","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","url":"https:\/\/t.co\/TXEtQxNFjB","display_url":"pic.twitter.com\/TXEtQxNFjB","expanded_url":"http:\/\/twitter.com\/nmdado\/status\/663645584486588416\/photo\/1","type":"photo","sizes":{"large":{"w":268,"h":170,"resize":"fit"},"small":{"w":268,"h":170,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":170,"resize":"fit"}},"source_status_id":663645584486588416,"source_status_id_str":"663645584486588416","source_user_id":3969346993,"source_user_id_str":"3969346993"}]},"extended_entities":{"media":[{"id":663645582750191616,"id_str":"663645582750191616","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTW-JDCVEAAWnAM.png","url":"https:\/\/t.co\/TXEtQxNFjB","display_url":"pic.twitter.com\/TXEtQxNFjB","expanded_url":"http:\/\/twitter.com\/nmdado\/status\/663645584486588416\/photo\/1","type":"animated_gif","sizes":{"large":{"w":268,"h":170,"resize":"fit"},"small":{"w":268,"h":170,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":268,"h":170,"resize":"fit"}},"source_status_id":663645584486588416,"source_status_id_str":"663645584486588416","source_user_id":3969346993,"source_user_id_str":"3969346993","video_info":{"aspect_ratio":[134,85],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTW-JDCVEAAWnAM.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081111134208,"id_str":"663728081111134208","text":"@crystalssfea Huhh \ud83d\udca8 Okay okayy okayy \ud83d\ude05 Aku cuba \ud83d\udcaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727451650940930,"in_reply_to_status_id_str":"663727451650940930","in_reply_to_user_id":1097920591,"in_reply_to_user_id_str":"1097920591","in_reply_to_screen_name":"crystalssfea","user":{"id":1718250414,"id_str":"1718250414","name":"Syaa\u270c","screen_name":"Nisyxxx_","location":"Crazy Monkey \u2764","url":"http:\/\/ask.fm\/NisyaZira","description":null,"protected":false,"verified":false,"followers_count":806,"friends_count":753,"listed_count":0,"favourites_count":8945,"statuses_count":16653,"created_at":"Sun Sep 01 08:11:11 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B37B26","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155321651\/IMlrs2gF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155321651\/IMlrs2gF.jpeg","profile_background_tile":true,"profile_link_color":"B5883A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662843434495971328\/_Twe3QjM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662843434495971328\/_Twe3QjM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1718250414\/1442913374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"crystalssfea","name":"peeaaa.","id":1097920591,"id_str":"1097920591","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080080665"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081733121,"id_str":"663728081081733121","text":"Motociclista morre ap\u00f3s bater em defensa met\u00e1lica de rodovia em Ja\u00fa: Acidente aconteceu na rodovia Ant\u00f4nio Pra... https:\/\/t.co\/fUvT7qCEii","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300495990,"id_str":"2300495990","name":"Candidogalo2014","screen_name":"Candidogalo2011","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":298,"friends_count":1950,"listed_count":1,"favourites_count":0,"statuses_count":185144,"created_at":"Mon Jan 20 00:01:47 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425056546448371713\/6NHN5Qz4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425056546448371713\/6NHN5Qz4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fUvT7qCEii","expanded_url":"http:\/\/glo.bo\/1Sc8Bc4","display_url":"glo.bo\/1Sc8Bc4","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081081733123,"id_str":"663728081081733123","text":"RT @oatsudyiam: \u0e08\u0e23\u0e34\u0e07\u0e46\u0e41\u0e25\u0e49\u0e27\u0e04\u0e19\u0e17\u0e35\u0e48\u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e04\u0e38\u0e22\u0e14\u0e49\u0e27\u0e22\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e04\u0e19\u0e17\u0e35\u0e48\u0e15\u0e2d\u0e1a\u0e01\u0e39\u0e40\u0e23\u0e47\u0e27\u0e46\u0e2d\u0e30 \u0e41\u0e15\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e17\u0e35\u0e48\u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e04\u0e38\u0e22\u0e14\u0e49\u0e27\u0e22\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e15\u0e48\u0e2d\u0e08\u0e30\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e49\u0e32\u0e15\u0e2d\u0e1a\u0e01\u0e39\u0e0a\u0e49\u0e32\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19 \u0e41\u0e21\u0e48\u0e07\u0e44\u0e21\u0e48\u0e1c\u0e25\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1142627545,"id_str":"1142627545","name":"\u0e2d\u0e31\u0e04\u0e23\u0e22\u0e2d\u0e25\u0e27\u0e2d\u0e19\u0e1a\u0e34\u0e25\u0e25\u0e4c","screen_name":"Chanyeol_MM","location":null,"url":null,"description":"\u0e23\u0e31\u0e01\u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25 \u0e2b\u0e25\u0e2d\u0e19\u0e40\u0e2b\u0e07\u0e37\u0e2d\u0e01\u0e40\u0e2e\u0e35\u0e22\u0e1a\u0e31\u0e07 \u0e04\u0e25\u0e31\u0e48\u0e07\u0e08\u0e38\u0e19\u0e2e\u0e07 \u0e2b\u0e25\u0e07\u0e08\u0e07\u0e2d\u0e2d\u0e1a \u0e0a\u0e2d\u0e1a\u0e22\u0e2d\u0e07\u0e41\u0e08 \u0e19\u0e31\u0e48\u0e07\u0e41\u0e2b\u0e23\u0e01\u0e30\u0e41\u0e17\u0e21\u0e34\u0e19 \u0e41\u0e17\u0e30\u0e2b\u0e34\u0e19\u0e01\u0e30\u0e21\u0e34\u0e19\u0e27\u0e39 \u0e40\u0e1b\u0e47\u0e19\u0e0a\u0e39\u0e49\u0e04\u0e22\u0e39\u0e2e\u0e22\u0e2d\u0e19 \u0e2d\u0e31\u0e04\u0e23\u0e22\u0e2d\u0e25x\u0e1e\u0e23\u0e1b\u0e23\u0e30\u0e41\u0e1a\u0e04","protected":false,"verified":false,"followers_count":976,"friends_count":305,"listed_count":1,"favourites_count":7474,"statuses_count":38985,"created_at":"Sat Feb 02 14:48:27 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452800193843310593\/-XwCpjCA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452800193843310593\/-XwCpjCA.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497715008264876032\/7UPYO5zW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497715008264876032\/7UPYO5zW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1142627545\/1396791115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Aug 07 15:12:54 +0000 2015","id":629671563286065152,"id_str":"629671563286065152","text":"\u0e08\u0e23\u0e34\u0e07\u0e46\u0e41\u0e25\u0e49\u0e27\u0e04\u0e19\u0e17\u0e35\u0e48\u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e04\u0e38\u0e22\u0e14\u0e49\u0e27\u0e22\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e04\u0e19\u0e17\u0e35\u0e48\u0e15\u0e2d\u0e1a\u0e01\u0e39\u0e40\u0e23\u0e47\u0e27\u0e46\u0e2d\u0e30 \u0e41\u0e15\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e17\u0e35\u0e48\u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e04\u0e38\u0e22\u0e14\u0e49\u0e27\u0e22\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e1e\u0e23\u0e32\u0e30\u0e15\u0e48\u0e2d\u0e08\u0e30\u0e43\u0e2b\u0e49\u0e40\u0e04\u0e49\u0e32\u0e15\u0e2d\u0e1a\u0e01\u0e39\u0e0a\u0e49\u0e32\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19 \u0e41\u0e21\u0e48\u0e07\u0e44\u0e21\u0e48\u0e1c\u0e25\u0e2d\u0e30\u0e44\u0e23\u0e40\u0e25\u0e22 \u0e01\u0e39\u0e01\u0e47\u0e22\u0e31\u0e07\u0e23\u0e2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":386540287,"id_str":"386540287","name":"\u0e19\u0e38\u0e49\u0e07\u0e42\u0e2d\u0e4a\u0e15","screen_name":"oatsudyiam","location":"UTCC. BKK.","url":null,"description":"\u0e40\u0e2d\u0e32\u0e44\u0e27\u0e49\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e2d\u0e48\u0e32\u0e19.","protected":false,"verified":false,"followers_count":32189,"friends_count":133,"listed_count":10,"favourites_count":739,"statuses_count":13269,"created_at":"Fri Oct 07 13:23:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649418576902754304\/9ymP6B9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649418576902754304\/9ymP6B9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/386540287\/1440078372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6307,"favorite_count":772,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oatsudyiam","name":"\u0e19\u0e38\u0e49\u0e07\u0e42\u0e2d\u0e4a\u0e15","id":386540287,"id_str":"386540287","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080080658"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115353089,"id_str":"663728081115353089","text":"\u0e21\u0e32\u0e02\u0e32\u0e22\u0e0a\u0e48\u0e27\u0e22\u0e41\u0e21\u0e48\u0e19\u0e4a\u0e32\u0e32 \u0e2a\u0e19\u0e43\u0e08\u0e17\u0e31\u0e01 ID.put_jutikan\n#\u0e01\u0e30\u0e27\u0e48\u0e32\u0e08\u0e30\u0e25\u0e2d\u0e07\u0e17\u0e32\u0e19\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e31\u0e195555 https:\/\/t.co\/NAkrxessk9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2941736538,"id_str":"2941736538","name":"putput","screen_name":"put_jutikan","location":"Udon Thini","url":null,"description":"31 01 44 \n\u0e23\u0e30\u0e1a\u0e32\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22","protected":false,"verified":false,"followers_count":20,"friends_count":91,"listed_count":0,"favourites_count":238,"statuses_count":239,"created_at":"Wed Dec 24 11:03:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636174239842742272\/tA5nvkWT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636174239842742272\/tA5nvkWT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2941736538\/1446256995","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e01\u0e30\u0e27\u0e48\u0e32\u0e08\u0e30\u0e25\u0e2d\u0e07\u0e17\u0e32\u0e19\u0e14\u0e39\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e01\u0e31\u0e195555","indices":[40,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728069048340480,"id_str":"663728069048340480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKYcVEAAvNj2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKYcVEAAvNj2.jpg","url":"https:\/\/t.co\/NAkrxessk9","display_url":"pic.twitter.com\/NAkrxessk9","expanded_url":"http:\/\/twitter.com\/put_jutikan\/status\/663728081115353089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728069048340480,"id_str":"663728069048340480","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKYcVEAAvNj2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKYcVEAAvNj2.jpg","url":"https:\/\/t.co\/NAkrxessk9","display_url":"pic.twitter.com\/NAkrxessk9","expanded_url":"http:\/\/twitter.com\/put_jutikan\/status\/663728081115353089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080080666"} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081077739520,"id_str":"663728081077739520","text":"Mondays fact of the day \ud83d\ude28\ud83d\ude02 https:\/\/t.co\/Cyd8K21Q7L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":856452950,"id_str":"856452950","name":"andymac","screen_name":"mcalinden88","location":"Coatbridge, Scotland","url":null,"description":"Celtic daft Season ticket holder section 113.","protected":false,"verified":false,"followers_count":1790,"friends_count":1776,"listed_count":7,"favourites_count":20765,"statuses_count":27651,"created_at":"Mon Oct 01 14:23:00 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646437461518888961\/9Yw6-b2J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646437461518888961\/9Yw6-b2J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/856452950\/1369812875","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728079647473664,"id_str":"663728079647473664","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK_7XAAASp1s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK_7XAAASp1s.jpg","url":"https:\/\/t.co\/Cyd8K21Q7L","display_url":"pic.twitter.com\/Cyd8K21Q7L","expanded_url":"http:\/\/twitter.com\/mcalinden88\/status\/663728081077739520\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":483,"resize":"fit"},"medium":{"w":500,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728079647473664,"id_str":"663728079647473664","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK_7XAAASp1s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK_7XAAASp1s.jpg","url":"https:\/\/t.co\/Cyd8K21Q7L","display_url":"pic.twitter.com\/Cyd8K21Q7L","expanded_url":"http:\/\/twitter.com\/mcalinden88\/status\/663728081077739520\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":483,"resize":"fit"},"medium":{"w":500,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080080657"} +{"delete":{"status":{"id":663727179318956033,"id_str":"663727179318956033","user_id":3052126141,"user_id_str":"3052126141"},"timestamp_ms":"1447080081089"}} +{"delete":{"status":{"id":663720694908219393,"id_str":"663720694908219393","user_id":3191786706,"user_id_str":"3191786706"},"timestamp_ms":"1447080081075"}} +{"delete":{"status":{"id":660378920957534208,"id_str":"660378920957534208","user_id":3185307116,"user_id_str":"3185307116"},"timestamp_ms":"1447080081109"}} +{"delete":{"status":{"id":541276109833510912,"id_str":"541276109833510912","user_id":2715033510,"user_id_str":"2715033510"},"timestamp_ms":"1447080081207"}} +{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728081115471872,"id_str":"663728081115471872","text":"En desarrollo jornada en municipio trujillo sector tres esquinas complejo educativo Dr Andres Lomelli Rosario https:\/\/t.co\/7FT8ZOokKv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2757343646,"id_str":"2757343646","name":"Saime Trujillo","screen_name":"saimetrujillo01","location":"Trujillo","url":"http:\/\/saime.gob.ve","description":"Coordinaci\u00f3n Estadal #SAIME #Trujillo","protected":false,"verified":false,"followers_count":940,"friends_count":323,"listed_count":2,"favourites_count":22,"statuses_count":1109,"created_at":"Sat Aug 23 01:57:12 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615977362631618560\/niDL_TSP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615977362631618560\/niDL_TSP.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615977026139328513\/tiKpD8z-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615977026139328513\/tiKpD8z-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2757343646\/1436298763","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727493233434624,"id_str":"663727493233434624","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIo3XW4AA2NRn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIo3XW4AA2NRn.jpg","url":"https:\/\/t.co\/7FT8ZOokKv","display_url":"pic.twitter.com\/7FT8ZOokKv","expanded_url":"http:\/\/twitter.com\/saimetrujillo01\/status\/663728081115471872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727493233434624,"id_str":"663727493233434624","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIo3XW4AA2NRn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIo3XW4AA2NRn.jpg","url":"https:\/\/t.co\/7FT8ZOokKv","display_url":"pic.twitter.com\/7FT8ZOokKv","expanded_url":"http:\/\/twitter.com\/saimetrujillo01\/status\/663728081115471872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727567720050688,"id_str":"663727567720050688","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYItM2WcAAF0SL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYItM2WcAAF0SL.jpg","url":"https:\/\/t.co\/7FT8ZOokKv","display_url":"pic.twitter.com\/7FT8ZOokKv","expanded_url":"http:\/\/twitter.com\/saimetrujillo01\/status\/663728081115471872\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727704802533376,"id_str":"663727704802533376","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1LhXIAAO9Cq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1LhXIAAO9Cq.jpg","url":"https:\/\/t.co\/7FT8ZOokKv","display_url":"pic.twitter.com\/7FT8ZOokKv","expanded_url":"http:\/\/twitter.com\/saimetrujillo01\/status\/663728081115471872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080080666"} +{"delete":{"status":{"id":660384302257967104,"id_str":"660384302257967104","user_id":3261208074,"user_id_str":"3261208074"},"timestamp_ms":"1447080081236"}} +{"delete":{"status":{"id":663594303776800769,"id_str":"663594303776800769","user_id":2484226796,"user_id_str":"2484226796"},"timestamp_ms":"1447080081285"}} +{"delete":{"status":{"id":663445988972040193,"id_str":"663445988972040193","user_id":1321295923,"user_id_str":"1321295923"},"timestamp_ms":"1447080081321"}} +{"delete":{"status":{"id":644608048518971393,"id_str":"644608048518971393","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080081315"}} +{"delete":{"status":{"id":660396952295608320,"id_str":"660396952295608320","user_id":3309242293,"user_id_str":"3309242293"},"timestamp_ms":"1447080081331"}} +{"delete":{"status":{"id":591928370411085825,"id_str":"591928370411085825","user_id":2368280532,"user_id_str":"2368280532"},"timestamp_ms":"1447080081574"}} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284626432,"id_str":"663728085284626432","text":"RT @VoceNaoSabiaQ: Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2850678263,"id_str":"2850678263","name":"julia","screen_name":"juuteixeirag","location":null,"url":null,"description":"tlgd ou nem","protected":false,"verified":false,"followers_count":260,"friends_count":263,"listed_count":0,"favourites_count":1529,"statuses_count":3676,"created_at":"Wed Oct 29 23:10:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663502359650279428\/l0krE5zx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663502359650279428\/l0krE5zx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2850678263\/1445965385","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:18 +0000 2015","id":663725303315890176,"id_str":"663725303315890176","text":"Os seres humanos t\u00eam uma forte rela\u00e7\u00e3o com a m\u00fasica por causa da maneira que ela afeta nossos sentimentos, pensamentos e estado emocional.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1558141890,"id_str":"1558141890","name":"Voc\u00ea Sabia?","screen_name":"VoceNaoSabiaQ","location":"Brasil","url":"http:\/\/instagram.com\/VoceNaoSabiaQ","description":"Curiosidades, fotos e fatos interessantes sobre o mundo e as pessoas que provavelmente voc\u00ea n\u00e3o sabia. \r\nContato: vocenaosabiaq@hotmail.com","protected":false,"verified":false,"followers_count":1927647,"friends_count":1,"listed_count":487,"favourites_count":799,"statuses_count":43683,"created_at":"Sun Jun 30 14:23:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9E2709","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/492534755682816001\/wLoRLthT.png","profile_background_tile":false,"profile_link_color":"ED0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553999651561406464\/uzIjuKXZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1558141890\/1389764551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":288,"favorite_count":254,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VoceNaoSabiaQ","name":"Voc\u00ea Sabia?","id":1558141890,"id_str":"1558141890","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085301358592,"id_str":"663728085301358592","text":"RT @AD_GRYRO: \u0627\u0633\u062a\u063a\u0641\u0631\u0644\u0644\u0647 \u062d\u062a\u0649 \u064a\u064f\u063a\u0641\u0631 \u0627\u0644\u0630\u0646\u0628 \u062d\u062a\u0649 \u062a\u0633\u0639\u064f\u062f \u0627\u0644\u0646\u0641\u0633 \u0627\u0633\u062a\u063a\u0641\u0631\u0627\u0644\u0644\u0647 \u062d\u062a\u0649 \u062a\u0637\u064a\u0628\u064f \u0644\u0646\u0627 \u0627\u0644\u062d\u064a\u0627\u0647 \u0648\u062a\u064f\u0643\u062a\u0628 \u0644\u0646\u0627 \u0627\u0644\u062c\u0646\u0629 \ud83d\udcad\ud83c\udf42.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343670708,"id_str":"343670708","name":"\u062e\u0627\u0644\u062f \u0627\u0644\u0634\u0647\u0631\u064a","screen_name":"KaledAlshehri","location":null,"url":null,"description":"\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0625\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646\u060c \u0627\u0647\u0645 \u0645\u0627\u0641\u064a \u062d\u0633\u0627\u0628\u064a ( \u0645\u0641\u0636\u0644\u062a\u064a ) \u0641\u064e \u064a\u0627\u0631\u0628 \u0627\u062c\u0639\u0644\u0647\u0627 \u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0644\u064a \u0648 \u0644\u0648\u0627\u0644\u062f\u064a\u0646\u064a \u0648\u0644\u0645\u062a\u0627\u0628\u0639\u064a\u0646\u064a .","protected":false,"verified":false,"followers_count":638,"friends_count":73,"listed_count":2,"favourites_count":14,"statuses_count":13984,"created_at":"Wed Jul 27 22:29:36 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621668836073275392\/7yb6zWAj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621668836073275392\/7yb6zWAj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343670708\/1444513578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:59:32 +0000 2015","id":663581667391619072,"id_str":"663581667391619072","text":"\u0627\u0633\u062a\u063a\u0641\u0631\u0644\u0644\u0647 \u062d\u062a\u0649 \u064a\u064f\u063a\u0641\u0631 \u0627\u0644\u0630\u0646\u0628 \u062d\u062a\u0649 \u062a\u0633\u0639\u064f\u062f \u0627\u0644\u0646\u0641\u0633 \u0627\u0633\u062a\u063a\u0641\u0631\u0627\u0644\u0644\u0647 \u062d\u062a\u0649 \u062a\u0637\u064a\u0628\u064f \u0644\u0646\u0627 \u0627\u0644\u062d\u064a\u0627\u0647 \u0648\u062a\u064f\u0643\u062a\u0628 \u0644\u0646\u0627 \u0627\u0644\u062c\u0646\u0629 \ud83d\udcad\ud83c\udf42.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717584980,"id_str":"717584980","name":"\u0625\u0642\u0644\u064a\u0645\u00bf","screen_name":"AD_GRYRO","location":"\u2661\u25b7\u25b7\u0627\u0644\u0640\u0640\u0647\u0640\u0640\u060c\u0634\u0640\u0640\u0642\u0640\u0640\u0631\u062f\u064a\u060c\u0640\u0640\u0644\u0627\u0644\u25c1\u25c1\u2661","url":"http:\/\/www.k.s.a.com","description":"\u200f\u200f\u200f\u200f*\u0639\u0634\u0642\u064a\u0651 \u0644\u0650 \u0623\u0645\u064a ; \u0644\u064a\u0633 \u0645\u0650\u0646\u0651 \u0628\u0622\u0628 \u0627\u0644\u0648\u0627\u062c\u0628\u0651 \u0627\u0648 \u0631\u062f \u062f\u064e\u064a\u0646 \u0628\u0644 \u0644\u0627\u0646\u0647\u0627 \u0642\u0650\u0635\u0629 \u062d\u064f\u0628 \u0628\u064e\u064a\u0636\u0622\u0621 \u062a\u064f\u0637\u0631\u0628\u0646\u064a\u0651 \u0648\u062a\u064f\u0628\u0642\u064a\u0646\u064a \u0637\u0641\u0644*\n\n\u0648\u0644\u0623\u0646 \u0627\u0644\u0646\u0639\u0645 \u0644\u0622\u062a\u062f\u0648\u0645 \u0630\u0647\u0628 \u0623\u0628\u064a","protected":false,"verified":false,"followers_count":12530,"friends_count":11364,"listed_count":3,"favourites_count":319,"statuses_count":7263,"created_at":"Wed Oct 16 12:22:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653819838201266177\/ODfs9df__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653819838201266177\/ODfs9df__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717584980\/1444717770","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AD_GRYRO","name":"\u0625\u0642\u0644\u064a\u0645\u00bf","id":717584980,"id_str":"717584980","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080081664"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284597760,"id_str":"663728085284597760","text":"Peace out \ud83d\udd95\ud83d\ude0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2863214808,"id_str":"2863214808","name":"#DilwaleDecember18\u2764\ufe0f","screen_name":"iSRKsGIRL","location":"Maryland, USA ","url":"http:\/\/SRKsheart.com","description":"just @iamsrk\u2764\ufe0f","protected":false,"verified":false,"followers_count":1924,"friends_count":155,"listed_count":22,"favourites_count":5505,"statuses_count":61391,"created_at":"Sat Oct 18 18:50:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661357769359040513\/Ogid1eO5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661357769359040513\/Ogid1eO5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2863214808\/1441686997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309775873,"id_str":"663728085309775873","text":"\u0635\u0639\u0628 \u0627\u062d\u0628\u0647\u0645 \u0645\u062b\u0644 \u0645\u0627\u062d\u0628\u0648\u064f\u0646\u064a\u060c\u0628\u0633 \u0633\u0647\u0644 \u0623\u0646\u0633\u0627\u0647\u0645 \u0645\u062b\u0644 \u0645\u0627\u0646\u0633\u0648\u064f .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1694230284,"id_str":"1694230284","name":"\u0631\u0632\u0627\u0646 \u0627\u0644\u062c\u0628\u0631.","screen_name":"mhfh113","location":"\u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0644\u064a.","url":"http:\/\/updata.bagdady.com\/uploads\/bagdady13687744571.mp3","description":"\u0627\u0644\u0641\u0648\u064f\u0632 \u0645\u0631\u0647 \u0627\u0648 \u0645\u0631\u062a\u064a\u0646\u060c\u0648 \u0627\u0644\u0646\u0635\u0631\u064f \u0646\u0635\u0631 \u0645\u062f\u0649 \u0627\u0644\u062d\u064a\u0627\u0629.","protected":false,"verified":false,"followers_count":327,"friends_count":50,"listed_count":0,"favourites_count":696,"statuses_count":7289,"created_at":"Fri Aug 23 16:30:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658383245222875136\/fMzgkBxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658383245222875136\/fMzgkBxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1694230284\/1446755009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085301395456,"id_str":"663728085301395456","text":"Blessed To See Another Day In Tampa \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2570520315,"id_str":"2570520315","name":"Bebo Garcia","screen_name":"GarciaStar08","location":null,"url":null,"description":"All I Know Is Grind Lil Nigga Grind\/SnapChat: ChiefSlowly\/Instagram: Chiefslowly23\/ RIP Tino","protected":false,"verified":false,"followers_count":143,"friends_count":141,"listed_count":1,"favourites_count":715,"statuses_count":1887,"created_at":"Thu May 29 14:51:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659218340368523265\/f_INpR1x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659218340368523265\/f_INpR1x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2570520315\/1427733661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081664"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309792257,"id_str":"663728085309792257","text":"como minha mae consegue ser tao chata?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612763722,"id_str":"612763722","name":"x","screen_name":"iloveyouJLos2","location":"bi ","url":"https:\/\/instagram.com\/isadorabahr\/","description":"kiss jennifer's ass is all I want now. CAMREN","protected":false,"verified":false,"followers_count":3075,"friends_count":721,"listed_count":10,"favourites_count":28684,"statuses_count":50284,"created_at":"Tue Jun 19 16:38:36 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631541213292818432\/_hrW04pG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631541213292818432\/_hrW04pG.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663186031982845952\/daUofo1m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663186031982845952\/daUofo1m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/612763722\/1446769122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085297176580,"id_str":"663728085297176580","text":"-\u0427\u0442\u043e \u0442\u044b \u0431\u0443\u0434\u0435\u0448\u044c? \n- \u0414\u0443\u043c\u0430\u043b\u0430 \u0433\u0440\u0430\u043d\u043e\u043b\u0443, \u043d\u043e \u043d\u0443\u0436\u043d\u043e \u0447\u0442\u043e-\u0442\u043e \u0431\u043e\u043b\u0435\u0435 \u0444\u043e\u0442\u043e\u0433\u0435\u043d\u0438\u0447\u043d\u043e\u0435\n\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227981822,"id_str":"227981822","name":"Elizabeth","screen_name":"Ratonlaveure","location":"Kiev,Ukraine","url":"http:\/\/vkontakte.ru\/ratonlaveure","description":null,"protected":false,"verified":false,"followers_count":83,"friends_count":49,"listed_count":0,"favourites_count":3128,"statuses_count":1236,"created_at":"Sat Dec 18 11:12:55 +0000 2010","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655845191589502976\/x6FtlwEY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655845191589502976\/x6FtlwEY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227981822\/1393750826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"084d0d0155787e9d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/084d0d0155787e9d.json","place_type":"country","name":"Ukraine","full_name":"Ukraine","country_code":"UA","country":"Ukraina","bounding_box":{"type":"Polygon","coordinates":[[[22.135720,44.386383],[22.135720,52.379475],[40.227172,52.379475],[40.227172,44.386383]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080081663"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085280387072,"id_str":"663728085280387072","text":"RT @jonanperrea: No os pasa que no os gusta nadie de vuestro d\u00eda a d\u00eda de repente por la calle veis al amor de vuestras vidas y plof desapa\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210773405,"id_str":"2210773405","name":"Veritas.","screen_name":"NataliaFdez23","location":"12th precinct\/\/Buy More","url":null,"description":"CASTLE\u2661CHUCK \/ Dani Mart\u00edn & R5 Vincit Omnia Veritas. Judo\u2661|\u300bVAPE\u300a","protected":false,"verified":false,"followers_count":320,"friends_count":409,"listed_count":5,"favourites_count":23323,"statuses_count":33661,"created_at":"Sat Nov 23 14:25:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652789576600301569\/tDskFVbS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652789576600301569\/tDskFVbS.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629034895474561024\/nTkpcGxj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629034895474561024\/nTkpcGxj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210773405\/1445097838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 18:29:48 +0000 2015","id":661611250011480070,"id_str":"661611250011480070","text":"No os pasa que no os gusta nadie de vuestro d\u00eda a d\u00eda de repente por la calle veis al amor de vuestras vidas y plof desaparece en segundos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962712038,"id_str":"962712038","name":"Jonan","screen_name":"jonanperrea","location":null,"url":"http:\/\/youtube.com\/cmonweyy","description":"Ba dum tsssss","protected":false,"verified":false,"followers_count":126241,"friends_count":2092,"listed_count":763,"favourites_count":200603,"statuses_count":56510,"created_at":"Wed Nov 21 16:46:50 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":true,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000147757974\/wfKJYZMI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000147757974\/wfKJYZMI.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659748870524641281\/TWKSMoxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659748870524641281\/TWKSMoxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962712038\/1444428181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1214,"favorite_count":1701,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jonanperrea","name":"Jonan","id":962712038,"id_str":"962712038","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081659"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085280288768,"id_str":"663728085280288768","text":"\u5bdd\u3088\u3046\u3002\u304a\u3084\u3059\u307f\u306a\u3055\u30fc\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3269970254,"id_str":"3269970254","name":"\u307f\u305a\u306f\u3089","screen_name":"stskthun","location":"P\u30b9\u30bf\u3061\u3083\u3093\u306b\u8ecd\u670d\u30ef\u30f3\u30d4\u30fc\u30b9\u3092\u7740\u305b\u308b\u4f1a\u4f1a\u9928","url":null,"description":"TF\u57a2\u3002\u5b9f\u5199\u3001QTF\u3001TFADV\u3001\u30d7\u30e9\u30a4\u30e0\u3001\u521d\u4ee3\u3002stsc\u3092\u4e16\u754c\u3067\u4e00\u756a\u611b\u3057\u3066\u3044\u307e\u3059\u3002\u96d1\u98df\u3067CP\u5730\u96f7\u7121\u3057\u3002\u30b9\u30bf\u30b9\u30af\u3001\u526f\u5b98\u30cd\u30bf\u304c\u591a\u3044\u3067\u3059\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093\u3002\u88cf\u57a2 @hara_mizu","protected":false,"verified":false,"followers_count":134,"friends_count":172,"listed_count":5,"favourites_count":2291,"statuses_count":3766,"created_at":"Mon Jul 06 11:54:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651410539092926464\/8tgwnxxr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651410539092926464\/8tgwnxxr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269970254\/1446015231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081659"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085297156097,"id_str":"663728085297156097","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/Ik3r2yWY2R","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517905965,"id_str":"517905965","name":"\u0648\u0627\u0641\u064a \u0627\u0644\u0634\u0645\u0631\u064a","screen_name":"MaMdOh_99M","location":null,"url":null,"description":"\u0646\u0627\u062b\u062a\u0642","protected":false,"verified":false,"followers_count":1757,"friends_count":1855,"listed_count":1,"favourites_count":29,"statuses_count":6127,"created_at":"Wed Mar 07 20:19:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594939101784051712\/l9L4Q1ED_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594939101784051712\/l9L4Q1ED_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517905965\/1430679510","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ik3r2yWY2R","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080081663"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292998656,"id_str":"663728085292998656","text":"@6641406cb778416 \u041c\u0430\u043a\u0441?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728049490436096,"in_reply_to_status_id_str":"663728049490436096","in_reply_to_user_id":2975281229,"in_reply_to_user_id_str":"2975281229","in_reply_to_screen_name":"6641406cb778416","user":{"id":3234048203,"id_str":"3234048203","name":"\u041a\u043e\u043c\u043e\u0447\u0435\u043a \u0441\u0447\u0430\u0441\u0442\u044c\u044f ^.^","screen_name":"Your_Joys","location":"\u0414\u043d\u0438\u0449\u0435, \u0433\u0434\u0435 \u0434\u0430\u0436\u0435 \u0421\u0442\u0430\u0440\u0431\u0430\u043a\u0441\u0430 \u043d\u0435\u0442\u0443","url":"https:\/\/vk.com\/love_basotrix","description":"\u0421\u0432\u0435\u0442\u0438\u043a-\u0421\u0435\u043c\u0438\u0446\u0432\u0435\u0442\u0438\u043a\u270c #HarryPotter #Kpop #BringMeTheHorizon #Otrix #JesusAVGN #\u041a\u0443\u043f\u043b\u0438\u043d\u043e\u0432 #ScreamQueens #\u0444\u0430\u043d\u0434\u043e\u043c\u043d\u0430\u044f\u0448\u043b\u044e\u0445\u0430 #\u0444\u0430\u043d\u0444\u0438\u043a\u0438 #\u0414\u0438\u0440\u0438\u043a\u0448\u0438\u043e\u043d\u0435\u0440 #\u0412\u0437\u0430\u0438\u043c\u043d\u0430\u044f","protected":false,"verified":false,"followers_count":641,"friends_count":629,"listed_count":0,"favourites_count":5695,"statuses_count":3344,"created_at":"Mon May 04 19:05:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595502988476620800\/DluNfctL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595502988476620800\/DluNfctL.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663323637479374848\/Hrn_n4Hy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663323637479374848\/Hrn_n4Hy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234048203\/1446983698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"6641406cb778416","name":"\u0410\u0440\u043a\u0430\u0448\u0430","id":2975281229,"id_str":"2975281229","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bg","timestamp_ms":"1447080081662"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292855296,"id_str":"663728085292855296","text":"@Caskarita1 hola buen dia van a tener playeras de #hartotigre para ir hoy a las plazas en Escobedo N.L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":847895480,"in_reply_to_user_id_str":"847895480","in_reply_to_screen_name":"Caskarita1","user":{"id":400465162,"id_str":"400465162","name":"mario loza","screen_name":"mayito_loza","location":" Monterrey N.L Mexico","url":null,"description":"Runner Feliz 11 abril 1982 el enemigo mas grande es contra mi mismo y Amo la vida! que es maravillosa...hijo de una linda madre Mexicana. lidia","protected":false,"verified":false,"followers_count":1991,"friends_count":2094,"listed_count":13,"favourites_count":12168,"statuses_count":8122,"created_at":"Sat Oct 29 02:38:18 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000137472821\/buVS8UZh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000137472821\/buVS8UZh.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661792482892484608\/VWhxKm_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661792482892484608\/VWhxKm_l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400465162\/1446618597","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"a8b1ab37b2e663e9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/a8b1ab37b2e663e9.json","place_type":"city","name":"General Zuazua","full_name":"General Zuazua, Nuevo Le\u00f3n","country_code":"MX","country":"M\u00e9xico","bounding_box":{"type":"Polygon","coordinates":[[[-100.256502,25.828745],[-100.256502,26.017305],[-100.053989,26.017305],[-100.053989,25.828745]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hartotigre","indices":[50,61]}],"urls":[],"user_mentions":[{"screen_name":"Caskarita1","name":"CASKARITA \u26bd","id":847895480,"id_str":"847895480","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081662"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292986368,"id_str":"663728085292986368","text":"@sweepthestars @kindapluto @CalmsTurtlePoem @katildebilmiyor tamam konismuycam bidaaaaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727908360441856,"in_reply_to_status_id_str":"663727908360441856","in_reply_to_user_id":3295559444,"in_reply_to_user_id_str":"3295559444","in_reply_to_screen_name":"sweepthestars","user":{"id":1037477972,"id_str":"1037477972","name":"Sinem","screen_name":"sayniim","location":"Tokat","url":"http:\/\/vesenhalacokguzelsin.tumblr.com\/","description":null,"protected":false,"verified":false,"followers_count":472,"friends_count":261,"listed_count":1,"favourites_count":4360,"statuses_count":5587,"created_at":"Wed Dec 26 16:15:27 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000077097404\/3bab2a3cbb7061abea9aa8621309c91a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000077097404\/3bab2a3cbb7061abea9aa8621309c91a.jpeg","profile_background_tile":true,"profile_link_color":"8F00B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661215852063272960\/X8RnaIIi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661215852063272960\/X8RnaIIi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1037477972\/1443294716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sweepthestars","name":"pathetic poetaster","id":3295559444,"id_str":"3295559444","indices":[0,14]},{"screen_name":"kindapluto","name":"cereo","id":1459237182,"id_str":"1459237182","indices":[15,26]},{"screen_name":"CalmsTurtlePoem","name":"carpe diem.","id":1680236792,"id_str":"1680236792","indices":[27,43]},{"screen_name":"katildebilmiyor","name":"evey","id":2774340229,"id_str":"2774340229","indices":[44,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080081662"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276209152,"id_str":"663728085276209152","text":"RT @Jarage68: Se enfrenta a 5 a\u00f1os de c\u00e1rcel por quedarse el dinero de 15 comunidades en Laredo y Colindres https:\/\/t.co\/CXII4ZH5Ul v\u00eda @dm\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2998408157,"id_str":"2998408157","name":"UNIDOS CANTABRIA","screen_name":"CantabriaUnidos","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":150,"friends_count":170,"listed_count":7,"favourites_count":1,"statuses_count":9488,"created_at":"Sun Jan 25 19:09:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559452935021527040\/1kM2Zvd9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559452935021527040\/1kM2Zvd9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:16:47 +0000 2015","id":663691703140880384,"id_str":"663691703140880384","text":"Se enfrenta a 5 a\u00f1os de c\u00e1rcel por quedarse el dinero de 15 comunidades en Laredo y Colindres https:\/\/t.co\/CXII4ZH5Ul v\u00eda @dmontanes","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327529852,"id_str":"327529852","name":"J. A. R. - CANTABRIA","screen_name":"Jarage68","location":"Santander, Cantabria - Espa\u00f1a","url":"https:\/\/www.facebook.com\/josealberto.rodriguezarroyo.9","description":"- LA VOZ DE ESPA\u00d1A - Lealtad, Justicia, Amor, Contundencia y Firmeza.","protected":false,"verified":false,"followers_count":2110,"friends_count":1781,"listed_count":45,"favourites_count":200,"statuses_count":72772,"created_at":"Fri Jul 01 18:26:24 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/512210528530202624\/aaCbPZmB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/512210528530202624\/aaCbPZmB.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653716900745211904\/5dr4FbHy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653716900745211904\/5dr4FbHy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327529852\/1440857789","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CXII4ZH5Ul","expanded_url":"http:\/\/www.eldiariomontanes.es\/castro-oriental\/201511\/09\/enfrenta-anos-carcel-quedarse-20151109101224.html?ns_campaign=WC_MS&ns_source=BT&ns_linkname=Scroll&ns_fee=0&ns_mchannel=TW","display_url":"eldiariomontanes.es\/castro-orienta\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"dmontanes","name":"eldiariomontanes.es","id":61145789,"id_str":"61145789","indices":[122,132]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CXII4ZH5Ul","expanded_url":"http:\/\/www.eldiariomontanes.es\/castro-oriental\/201511\/09\/enfrenta-anos-carcel-quedarse-20151109101224.html?ns_campaign=WC_MS&ns_source=BT&ns_linkname=Scroll&ns_fee=0&ns_mchannel=TW","display_url":"eldiariomontanes.es\/castro-orienta\u2026","indices":[108,131]}],"user_mentions":[{"screen_name":"Jarage68","name":"J. A. R. - CANTABRIA","id":327529852,"id_str":"327529852","indices":[3,12]},{"screen_name":"dmontanes","name":"eldiariomontanes.es","id":61145789,"id_str":"61145789","indices":[136,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309726720,"id_str":"663728085309726720","text":"RT @kurisukepi: #sound_tripper - the scene in 5\u21929 Yamapi would probably have refused 3 yrs ago? who did he mail congratulations? https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1735013516,"id_str":"1735013516","name":"Eva","screen_name":"_ProundToBeELF","location":"Sapphire Blue Ocean","url":"http:\/\/ask.fm\/ProundToBeELF","description":"In my dreams you are mine but in real life you are my dream ==\u300b@AllRiseSilver and YamaP --NEWS&SJ--EunHae shipper \u2665[Gevezeva]\u2665 Japan -|EVIL ENT.|-","protected":false,"verified":false,"followers_count":1253,"friends_count":789,"listed_count":5,"favourites_count":4359,"statuses_count":102102,"created_at":"Fri Sep 06 12:41:30 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528528050703462400\/GRtCgzZR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528528050703462400\/GRtCgzZR.jpeg","profile_background_tile":true,"profile_link_color":"0F40D4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653522125387640832\/q82FnASm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653522125387640832\/q82FnASm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735013516\/1446065552","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:47:43 +0000 2015","id":663548492636286976,"id_str":"663548492636286976","text":"#sound_tripper - the scene in 5\u21929 Yamapi would probably have refused 3 yrs ago? who did he mail congratulations? https:\/\/t.co\/zgzuIm7PJX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":428770609,"id_str":"428770609","name":"\u30af\u30ea\u30b9","screen_name":"kurisukepi","location":"\u81ea\u5206\u306e\u4e16\u754c\u3001\u30cf\u30c3\u30d4\u30fc\u306a\u5834\u6240","url":"http:\/\/ameblo.jp\/kurisurin\/","description":"\u2661\u5c71\u4e0b\u667a\u4e45\u62c5\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u3059\u2606\u5f61 \u30c9\u30e9\u30de\u89b3\u305f\u308a\u3001\u30c0\u30c3\u30d5\u30a3\u30fc\u8863\u88c5\u4f5c\u3063\u305f\u308a\u3059\u308b\u306e\u304c\u597d\u304d\u3002\u65e5\u672c\u8a9e\u52c9\u5f37\u4e2d","protected":false,"verified":false,"followers_count":447,"friends_count":230,"listed_count":13,"favourites_count":1193,"statuses_count":30271,"created_at":"Mon Dec 05 04:55:18 +0000 2011","utc_offset":28800,"time_zone":"Taipei","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653144733007482880\/z-y7KVJm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653144733007482880\/z-y7KVJm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/428770609\/1427938425","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":12,"entities":{"hashtags":[{"text":"sound_tripper","indices":[0,14]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663548316299345920,"id_str":"663548316299345920","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","url":"https:\/\/t.co\/zgzuIm7PJX","display_url":"pic.twitter.com\/zgzuIm7PJX","expanded_url":"http:\/\/twitter.com\/kurisukepi\/status\/663548492636286976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":872,"resize":"fit"},"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":704,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663548316299345920,"id_str":"663548316299345920","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","url":"https:\/\/t.co\/zgzuIm7PJX","display_url":"pic.twitter.com\/zgzuIm7PJX","expanded_url":"http:\/\/twitter.com\/kurisukepi\/status\/663548492636286976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":872,"resize":"fit"},"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":704,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sound_tripper","indices":[16,30]}],"urls":[],"user_mentions":[{"screen_name":"kurisukepi","name":"\u30af\u30ea\u30b9","id":428770609,"id_str":"428770609","indices":[3,14]}],"symbols":[],"media":[{"id":663548316299345920,"id_str":"663548316299345920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","url":"https:\/\/t.co\/zgzuIm7PJX","display_url":"pic.twitter.com\/zgzuIm7PJX","expanded_url":"http:\/\/twitter.com\/kurisukepi\/status\/663548492636286976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":872,"resize":"fit"},"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":704,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663548492636286976,"source_status_id_str":"663548492636286976","source_user_id":428770609,"source_user_id_str":"428770609"}]},"extended_entities":{"media":[{"id":663548316299345920,"id_str":"663548316299345920","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlrZRUwAAPIlk.jpg","url":"https:\/\/t.co\/zgzuIm7PJX","display_url":"pic.twitter.com\/zgzuIm7PJX","expanded_url":"http:\/\/twitter.com\/kurisukepi\/status\/663548492636286976\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":872,"resize":"fit"},"small":{"w":340,"h":494,"resize":"fit"},"large":{"w":704,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663548492636286976,"source_status_id_str":"663548492636286976","source_user_id":428770609,"source_user_id_str":"428770609"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292834816,"id_str":"663728085292834816","text":"Riri\u3055\u3093(\u30b9\u30da\u30eb\u81ea\u4fe1\u306a\u3044)\u8d64\u9aea\u3055\u3093\u3082\u3044\u3060\u30fc\u3055\u3093(\u79c1\u306e\u30ea\u30a2\u53cb)\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\n\u30d6\u30ec\u30bd\u30eb\u5171\u95d8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4092339674,"id_str":"4092339674","name":"\u3081\u3081\u3081\u3061\u3083\u3093@\u30d6\u30ec\u30bd\u30eb\u57a2","screen_name":"bleach023gjjj","location":null,"url":null,"description":"\u30d6\u30ec\u30bd\u30eb\u57a2\u306b\u306a\u308a\u307e\u3059\u3002\u26065 \u30a6\u30eb\u30ad\u30aa\u30e9\/\u30de\u30e6\u30ea\/\u591c\u4e00\/GJ\/\u536f\u306e\u82b1\/\u8336\u5ea6\/\u30cf\u30ed\u65e5\u756a\u8c37\/\u914d\u5e03\u604b\u6b21\/\u914d\u5e03\u4e00\u8b77\u3002\u26065\u306e\u7834\u9762\u306f\u4eca\u5f8c\u5168\u54e1\u96c6\u3081\u305f\u3044\u306a\u3063\u3066\u601d\u3063\u3066\u3044\u308b\u5fae\u8ab2\u91d1\u306b\u306a\u308a\u305d\u3046\u306a\u7121\u8ab2\u91d1\u8005\u3067\u3059\u311f( \uff65\u04e9\uff65 )\u310f\u3064\u307e\u308a\u7834\u9762\u304c\u5927\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":60,"friends_count":50,"listed_count":0,"favourites_count":30,"statuses_count":372,"created_at":"Sun Nov 01 16:04:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661723118017232896\/izWyQJ05_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661723118017232896\/izWyQJ05_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4092339674\/1446394557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081662"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284581377,"id_str":"663728085284581377","text":"RT @idolsrubelangel: Espero que estemos juntas por mucho tiempo mas #RUB3L4NG3LFTU5T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":793781834,"id_str":"793781834","name":"BEA KENYA\u2764\ufe0f","screen_name":"bea_kenya","location":"@lorenzo99 como idolo.","url":"http:\/\/instagram.com\/beakenya","description":"Alicantina perdida en Cadiz \u2708\ufe0f\u2708\ufe0f\u2708\ufe0f Rubelangel es real madafaka. CRIATURITA MARVADA\u2764\ufe0f","protected":false,"verified":false,"followers_count":634,"friends_count":619,"listed_count":4,"favourites_count":17102,"statuses_count":24432,"created_at":"Fri Aug 31 12:40:56 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/833078539\/137bd325aea7d4fa192a083ef36cc430.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/833078539\/137bd325aea7d4fa192a083ef36cc430.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658828877171707904\/nTy9yttp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658828877171707904\/nTy9yttp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793781834\/1446991290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:12 +0000 2015","id":663725276669546496,"id_str":"663725276669546496","text":"Espero que estemos juntas por mucho tiempo mas #RUB3L4NG3LFTU5T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4136902612,"id_str":"4136902612","name":"#RUB3L4NG3LFTU5T","screen_name":"idolsrubelangel","location":"Espa\u00f1a, Argentina y Ecuador.","url":null,"description":"~Internet friends are real friends.~","protected":false,"verified":false,"followers_count":25,"friends_count":29,"listed_count":0,"favourites_count":25,"statuses_count":15,"created_at":"Sat Nov 07 20:57:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663127117648035841\/1CLdH-6F_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663127117648035841\/1CLdH-6F_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4136902612\/1446937223","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"RUB3L4NG3LFTU5T","indices":[47,63]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RUB3L4NG3LFTU5T","indices":[68,84]}],"urls":[],"user_mentions":[{"screen_name":"idolsrubelangel","name":"#RUB3L4NG3LFTU5T","id":4136902612,"id_str":"4136902612","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284470784,"id_str":"663728085284470784","text":"RT @boompalatpol: \u0e2b\u0e19\u0e31\u0e07\u0e40\u0e01\u0e22\u0e4c\u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e1b\u0e4a \u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e0a\u0e0a\u0e2b\u0e23\u0e37\u0e2d\u0e0d\u0e0d \u0e21\u0e35\u0e41\u0e07\u0e48\u0e21\u0e38\u0e21\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e44\u0e21\u0e48\u0e15\u0e48\u0e32\u0e07\u0e08\u0e32\u0e01\u0e04\u0e39\u0e48\u0e23\u0e31\u0e01\u0e0a\u0e0d \u0e0a\u0e48\u0e27\u0e22\u0e2d\u0e22\u0e48\u0e32\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e04\u0e19\u0e21\u0e2d\u0e07\u0e2b\u0e19\u0e31\u0e07\u0e40\u0e01\u0e22\u0e4c\u0e43\u0e19\u0e41\u0e07\u0e48\u0e25\u0e32\u0e21\u0e01\u0e40\u0e25\u0e22 \u0e2b\u0e19\u0e31\u0e07\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":337510303,"id_str":"337510303","name":"p","screen_name":"pupieeeeee","location":null,"url":null,"description":"piggykacha\u2661 #kachaLONELYPLANET","protected":false,"verified":false,"followers_count":67,"friends_count":379,"listed_count":0,"favourites_count":2245,"statuses_count":46744,"created_at":"Mon Jul 18 04:15:03 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521667845592076292\/Q1HhLaiO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521667845592076292\/Q1HhLaiO.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C8C8A9","profile_text_color":"F9CDAD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655284218600157184\/uSyjNJ3p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655284218600157184\/uSyjNJ3p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337510303\/1446530386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:01:47 +0000 2015","id":663355739872751617,"id_str":"663355739872751617","text":"\u0e2b\u0e19\u0e31\u0e07\u0e40\u0e01\u0e22\u0e4c\u0e44\u0e21\u0e48\u0e08\u0e33\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e42\u0e1b\u0e4a \u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e02\u0e2d\u0e07\u0e0a\u0e0a\u0e2b\u0e23\u0e37\u0e2d\u0e0d\u0e0d \u0e21\u0e35\u0e41\u0e07\u0e48\u0e21\u0e38\u0e21\u0e04\u0e27\u0e32\u0e21\u0e23\u0e31\u0e01\u0e44\u0e21\u0e48\u0e15\u0e48\u0e32\u0e07\u0e08\u0e32\u0e01\u0e04\u0e39\u0e48\u0e23\u0e31\u0e01\u0e0a\u0e0d \u0e0a\u0e48\u0e27\u0e22\u0e2d\u0e22\u0e48\u0e32\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e04\u0e19\u0e21\u0e2d\u0e07\u0e2b\u0e19\u0e31\u0e07\u0e40\u0e01\u0e22\u0e4c\u0e43\u0e19\u0e41\u0e07\u0e48\u0e25\u0e32\u0e21\u0e01\u0e40\u0e25\u0e22 \u0e2b\u0e19\u0e31\u0e07\u0e40\u0e01\u0e22\u0e4c\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e2b\u0e19\u0e31\u0e07\u0e42\u0e1b\u0e4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90398602,"id_str":"90398602","name":"\u0e1a\u0e39\u0e21 \u0e1e\u0e25\u0e31\u0e0f\u0e10\u0e4c\u0e1e\u0e25","screen_name":"boompalatpol","location":"IG : boompalatpol","url":"http:\/\/www.facebook.com\/palatpol","description":"Film Director : \u0e1b\u0e23\u0e30\u0e42\u0e22\u0e04\u0e2a\u0e31\u0e0d\u0e0d\u0e32\u0e23\u0e31\u0e01, \u0e0b\u0e35\u0e23\u0e35\u0e2a\u0e4c\u0e40\u0e08\u0e47\u0e14\u0e27\u0e31\u0e19\u0e08\u0e2d\u0e07\u0e40\u0e27\u0e23\u0e0b\u0e35\u0e0b\u0e31\u0e48\u0e192, FATHERS \u2022 For Business 08-9193-9194 (K'Sima)","protected":false,"verified":false,"followers_count":12814,"friends_count":18,"listed_count":16,"favourites_count":2851,"statuses_count":16839,"created_at":"Mon Nov 16 14:02:47 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661956125479170052\/W04K58Bi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661956125479170052\/W04K58Bi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90398602\/1444924568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4526,"favorite_count":455,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"boompalatpol","name":"\u0e1a\u0e39\u0e21 \u0e1e\u0e25\u0e31\u0e0f\u0e10\u0e4c\u0e1e\u0e25","id":90398602,"id_str":"90398602","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305581572,"id_str":"663728085305581572","text":"RT @LukeIsNotSexy: @emmablackery http:\/\/t.co\/iEoRyccO80","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207342939,"id_str":"3207342939","name":"Chloe-leigh","screen_name":"chloeleighhemmo","location":"London, England","url":null,"description":"(15) jaffron YouTube 5SOS\u2764\ufe0f lemma I may look tall, but I'm smalla than a bug","protected":false,"verified":false,"followers_count":304,"friends_count":630,"listed_count":1,"favourites_count":2765,"statuses_count":2376,"created_at":"Sat Apr 25 19:27:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663055229794037760\/b0sg5dFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663055229794037760\/b0sg5dFO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207342939\/1446919934","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 17 20:39:42 +0000 2015","id":622143660013027328,"id_str":"622143660013027328","text":"@emmablackery http:\/\/t.co\/iEoRyccO80","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":622137855343755264,"in_reply_to_status_id_str":"622137855343755264","in_reply_to_user_id":257639463,"in_reply_to_user_id_str":"257639463","in_reply_to_screen_name":"emmablackery","user":{"id":70722499,"id_str":"70722499","name":"Luke Cutforth","screen_name":"LukeIsNotSexy","location":null,"url":"http:\/\/youtu.be\/uD4mjaIWia4?a","description":"YouTuber, Film Maker & Internet Trash \/\/ Hair brighter than my future, Eyes bluer than my past \u270cMerch: http:\/\/fireflightmerch.com\/luke","protected":false,"verified":true,"followers_count":281207,"friends_count":1686,"listed_count":975,"favourites_count":4624,"statuses_count":41090,"created_at":"Tue Sep 01 16:37:32 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177294125\/kyIopnRV.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177294125\/kyIopnRV.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619977987979649024\/Dsz7RhIT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619977987979649024\/Dsz7RhIT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70722499\/1446401313","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":931,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emmablackery","name":"Emma Blackery","id":257639463,"id_str":"257639463","indices":[0,13]}],"symbols":[],"media":[{"id":622143654849847296,"id_str":"622143654849847296","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","url":"http:\/\/t.co\/iEoRyccO80","display_url":"pic.twitter.com\/iEoRyccO80","expanded_url":"http:\/\/twitter.com\/LukeIsNotSexy\/status\/622143660013027328\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":622143654849847296,"id_str":"622143654849847296","indices":[14,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","url":"http:\/\/t.co\/iEoRyccO80","display_url":"pic.twitter.com\/iEoRyccO80","expanded_url":"http:\/\/twitter.com\/LukeIsNotSexy\/status\/622143660013027328\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LukeIsNotSexy","name":"Luke Cutforth","id":70722499,"id_str":"70722499","indices":[3,17]},{"screen_name":"emmablackery","name":"Emma Blackery","id":257639463,"id_str":"257639463","indices":[19,32]}],"symbols":[],"media":[{"id":622143654849847296,"id_str":"622143654849847296","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","url":"http:\/\/t.co\/iEoRyccO80","display_url":"pic.twitter.com\/iEoRyccO80","expanded_url":"http:\/\/twitter.com\/LukeIsNotSexy\/status\/622143660013027328\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":622143660013027328,"source_status_id_str":"622143660013027328","source_user_id":70722499,"source_user_id_str":"70722499"}]},"extended_entities":{"media":[{"id":622143654849847296,"id_str":"622143654849847296","indices":[33,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKJMW5qWoAAtXd4.jpg","url":"http:\/\/t.co\/iEoRyccO80","display_url":"pic.twitter.com\/iEoRyccO80","expanded_url":"http:\/\/twitter.com\/LukeIsNotSexy\/status\/622143660013027328\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":622143660013027328,"source_status_id_str":"622143660013027328","source_user_id":70722499,"source_user_id_str":"70722499"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276094464,"id_str":"663728085276094464","text":"I WANT TO PIN THAT BUT I'M ON MOBILE","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1424262338,"id_str":"1424262338","name":"((\u0e07\u0e07 \u2022\u0300\u2022\u0300__\u2022\u0301\u2022\u0301))\u0e07\u0e07","screen_name":"soccermohawk","location":"Virginia, United States","url":"http:\/\/shintetsukado.tumblr.com\/","description":"they\/them or he\/him ~ 19 ~ shell\/ro welcome to eternal soccer hell","protected":false,"verified":false,"followers_count":122,"friends_count":105,"listed_count":0,"favourites_count":16492,"statuses_count":15506,"created_at":"Sun May 12 23:48:37 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623271384366645248\/yijxtO2P.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623271384366645248\/yijxtO2P.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662142560886898688\/hH6Z9KjQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662142560886898688\/hH6Z9KjQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1424262338\/1446791777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305573376,"id_str":"663728085305573376","text":"@FerMaza13 Q cagada. Q le pasara al tirri....???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720497776082944,"in_reply_to_status_id_str":"663720497776082944","in_reply_to_user_id":338082796,"in_reply_to_user_id_str":"338082796","in_reply_to_screen_name":"FerMaza13","user":{"id":145615350,"id_str":"145615350","name":"florencio cequeira","screen_name":"florenciocba","location":"argentina","url":null,"description":"Secretario del Cluster Cordoba Tecnologico, Periodo 2013\/2015","protected":false,"verified":false,"followers_count":225,"friends_count":782,"listed_count":5,"favourites_count":836,"statuses_count":1375,"created_at":"Wed May 19 11:59:38 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629662588524232704\/x7K7qxIj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629662588524232704\/x7K7qxIj_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FerMaza13","name":"Fernando Maza","id":338082796,"id_str":"338082796","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305430016,"id_str":"663728085305430016","text":"RT @ehdqkdejr22: \uac01\ubcf8\uac00\ub2d8\uc5d0\uac8c \ubb3c\uc5b4\ubcf8 '\ub9cc\uc57d 6\ud615\uc81c\ub4e4\uc774 \ube60\uce6d\ucf54\uc5d0\uc11c \uac70\uae08\uc744 \ub530\ub0b4\uba74?'\n\uc7a1\uc9c0\uacf5\uac1c \uc815\ubcf4. https:\/\/t.co\/N1HqGOaLg7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2212032342,"id_str":"2212032342","name":"\uc65c \uc5ec\uae30\uc5d0 \uc628 \uac83\uc774\ub0d0!\ubd07","screen_name":"benison_co","location":"\uc0e4\uaf48\ub2d8\uc774 \ucee4\ubba4\ub97c \ub6f4\ub2e4\uad6c~?!","url":null,"description":"\ub2f9\uc5f0\ud788 \ub2f9\uc2e0\uc740 \uc6c3\uaca0\uc9c0.","protected":false,"verified":false,"followers_count":55,"friends_count":141,"listed_count":0,"favourites_count":4753,"statuses_count":1394,"created_at":"Sun Nov 24 06:48:00 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663398465133633536\/-K-Q5gPK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663398465133633536\/-K-Q5gPK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2212032342\/1441714360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:22 +0000 2015","id":663718274996170752,"id_str":"663718274996170752","text":"\uac01\ubcf8\uac00\ub2d8\uc5d0\uac8c \ubb3c\uc5b4\ubcf8 '\ub9cc\uc57d 6\ud615\uc81c\ub4e4\uc774 \ube60\uce6d\ucf54\uc5d0\uc11c \uac70\uae08\uc744 \ub530\ub0b4\uba74?'\n\uc7a1\uc9c0\uacf5\uac1c \uc815\ubcf4. https:\/\/t.co\/N1HqGOaLg7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2704033068,"id_str":"2704033068","name":"\u30f2r\uc2a4E\u3154\u5df1\u314f\u21d4\u30f2r\uc2a4\u30ed\u314f\uce20","screen_name":"ehdqkdejr22","location":"\ubca0\ub780\ub2e4\uc5d0\uc11c \ubc14\ub2e4\uac00 \ubcf4\uc774\ub294\uacf3","url":null,"description":"\ubd07 \uc544\ub2d8. \uce74\uc2a4\ud14c\ub77c\uc785\ub2c8\ub2e4. \n\uc560\ub2c8\ub355&\uac8c\uc784\ub355&\uc77c\ubcf8\uc131\uc6b0\ub355. \uc624\uc18c\ub9c8\uce20\ubc84\ub2dd.###\ub3c4\/\uac80\/\ub09c\/\ubb34 \ud31d\ub2c8\ub2e4. \uc8fc\uc758### \uc0dd\uc7a1\ub355.\u65e5\u672c\u8a9e\u5168\u7136\u5e73\u6c17\uff01\u6700\u8fd1\u306f\u904a\u622f\u738b\u3068\u5200\u5263\u4e71\u821e\u306b\u3069\u30cf\u30de\u308a\u3002\u306f\u306a\u307e\u308b\u30d4\u30c3\u30d4\u304a\u305d\u677e\u3055\u3093\u3002\ub9de\ud314 \uc6d0\ud558\uc2dc\uba74 \uba58\uc158 \ud55c \uae00\uc790\ub77c\ub3c4 \uc8fc\uc138\uc694! \uba58\uc158\uc2a4\ub8e8 \uc7a6\uc744\uc9c0\ub3c4...\ud55c\ubc88 \ub354 \ub9d0\uac78\uc5b4\uc8fc\uc154\uc694...","protected":false,"verified":false,"followers_count":1110,"friends_count":1307,"listed_count":6,"favourites_count":6161,"statuses_count":42700,"created_at":"Sun Aug 03 12:41:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0D0DCC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658223433768046592\/OOuC8mCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658223433768046592\/OOuC8mCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704033068\/1444223943","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":312,"favorite_count":111,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718272701849600,"id_str":"663718272701849600","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","url":"https:\/\/t.co\/N1HqGOaLg7","display_url":"pic.twitter.com\/N1HqGOaLg7","expanded_url":"http:\/\/twitter.com\/ehdqkdejr22\/status\/663718274996170752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":264,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"},"small":{"w":340,"h":125,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718272701849600,"id_str":"663718272701849600","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","url":"https:\/\/t.co\/N1HqGOaLg7","display_url":"pic.twitter.com\/N1HqGOaLg7","expanded_url":"http:\/\/twitter.com\/ehdqkdejr22\/status\/663718274996170752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":264,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"},"small":{"w":340,"h":125,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ehdqkdejr22","name":"\u30f2r\uc2a4E\u3154\u5df1\u314f\u21d4\u30f2r\uc2a4\u30ed\u314f\uce20","id":2704033068,"id_str":"2704033068","indices":[3,15]}],"symbols":[],"media":[{"id":663718272701849600,"id_str":"663718272701849600","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","url":"https:\/\/t.co\/N1HqGOaLg7","display_url":"pic.twitter.com\/N1HqGOaLg7","expanded_url":"http:\/\/twitter.com\/ehdqkdejr22\/status\/663718274996170752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":264,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"},"small":{"w":340,"h":125,"resize":"fit"}},"source_status_id":663718274996170752,"source_status_id_str":"663718274996170752","source_user_id":2704033068,"source_user_id_str":"2704033068"}]},"extended_entities":{"media":[{"id":663718272701849600,"id_str":"663718272701849600","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAQKNUYAA2k9f.jpg","url":"https:\/\/t.co\/N1HqGOaLg7","display_url":"pic.twitter.com\/N1HqGOaLg7","expanded_url":"http:\/\/twitter.com\/ehdqkdejr22\/status\/663718274996170752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":264,"resize":"fit"},"medium":{"w":600,"h":220,"resize":"fit"},"small":{"w":340,"h":125,"resize":"fit"}},"source_status_id":663718274996170752,"source_status_id_str":"663718274996170752","source_user_id":2704033068,"source_user_id_str":"2704033068"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276057600,"id_str":"663728085276057600","text":"RT @YOYOKTN: \u0e17\u0e33\u0e44\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e01\u0e39\u0e21\u0e31\u0e19\u0e44\u0e23\u0e49\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e21\u0e36\u0e07\u0e08\u0e31\u0e07\u0e27\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208490325,"id_str":"208490325","name":"Monmont","screen_name":"monmon_np","location":"thailand","url":"http:\/\/twitter.com\/monmonmon","description":"My name's MON, nice to meet you you you & you \u263a","protected":false,"verified":false,"followers_count":318,"friends_count":563,"listed_count":1,"favourites_count":32,"statuses_count":4691,"created_at":"Wed Oct 27 11:19:49 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000142576269\/3d5haZpO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000142576269\/3d5haZpO.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620208302798958596\/5irRliHv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620208302798958596\/5irRliHv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208490325\/1436704216","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:10:31 +0000 2015","id":663569329376497664,"id_str":"663569329376497664","text":"\u0e17\u0e33\u0e44\u0e21\u0e04\u0e27\u0e32\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e2b\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e01\u0e39\u0e21\u0e31\u0e19\u0e44\u0e23\u0e49\u0e04\u0e48\u0e32\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e21\u0e36\u0e07\u0e08\u0e31\u0e07\u0e27\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251935738,"id_str":"1251935738","name":"\u0427o\u0447oKTN","screen_name":"YOYOKTN","location":"\u0427o\u0447o IG @yoyoktn","url":null,"description":null,"protected":false,"verified":false,"followers_count":8462,"friends_count":41,"listed_count":4,"favourites_count":2339,"statuses_count":23870,"created_at":"Fri Mar 08 14:49:47 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000033627145\/e01d1754c3e926c65bc15de77de25582.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000033627145\/e01d1754c3e926c65bc15de77de25582.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663050501605343232\/ka73p1Jg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663050501605343232\/ka73p1Jg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251935738\/1438596684","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":312,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YOYOKTN","name":"\u0427o\u0447oKTN","id":1251935738,"id_str":"1251935738","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292847105,"id_str":"663728085292847105","text":"14\u65e5\u30b5\u30d6\u3060\u3051\u3069\u30ab\u30e1\u30e9\u3067\u547c\u3070\u308c\u3066\u308b\u3051\u3069\u3082\u3057\u304b\u3057\u3066\u5fc5\u8981\u306a\u3044\u306e\uff1f\n\u305d\u308c\u3068\u3082\u30e1\u30a4\u30f3\u304c\u3044\u306a\u304f\u306a\u3063\u305f\u306e\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110048059,"id_str":"110048059","name":"\u3080\u3064\u304d@\u30ea\u30f4\u30a1\u30a8\u30ec\u4e0d\u8db3","screen_name":"mutuki_hamon","location":"\u67f3\u751f\u306e\u96a3\u308a","url":"http:\/\/twpf.jp\/mutuki_hamon","description":"20\u2191\u3002\u6771\u4eac\u90fd\u5728\u4f4f\u30028(\u30ec\u30a4\u30e4\u30fc):2(\u30ab\u30e1\u30e9)\u3002\u9032\u6483(\u30ea\u30f4\u30a1\u30a8\u30ec)\u30e1\u30a4\u30f3\u3002\u30b3\u30b9\u3068\u30a2\u30d7\u30ea\u3068\u9b5a\u306e\u8a71\u3057\u591a\u3081\u3002\u8a73\u3057\u304f\u306f\u3064\u3044\u30d7\u30ed\u306b\u3066\u3002 \u30ea\u30f4\u30a1\u30a8\u30ec\u57a2\u3042\u308a\u307e\u3059\u2192@mutuki_LE_hamon","protected":false,"verified":false,"followers_count":1179,"friends_count":945,"listed_count":64,"favourites_count":8620,"statuses_count":149014,"created_at":"Sun Jan 31 04:44:52 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000111837424\/ed27f2c2e3410d6c587feefb883f16f9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000111837424\/ed27f2c2e3410d6c587feefb883f16f9.jpeg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660836657629786113\/kjwTp31e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660836657629786113\/kjwTp31e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110048059\/1445616618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081662"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085271908352,"id_str":"663728085271908352","text":"RT @AsnitaXOXO: Do the best you can until you know better. Then when you know better, do better.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368525116,"id_str":"2368525116","name":"Charlie","screen_name":"NtashaSulaiman","location":"Kuching,Sarawak","url":null,"description":"\u0623\u064e\u0634\u0652\u0647\u064e\u062f\u064f \u0623\u064e\u0646\u0652 \u0644\u0622 \u0625\u0650\u0644\u064e\u0647\u064e \u0625\u0650\u0644\u0651\u064e\u0627 \u0627\u0644\u0644\u0647 \u0648\u064e\u0623\u064e\u0634\u0652\u0647\u064e\u062f\u064f \u0623\u064e\u0646\u0651\u064e \u0645\u064f\u062d\u064e\u0645\u0651\u064e\u062f\u064b\u0627 \u0631\u0651\u064e\u0633\u064f\u0648\u0652\u0644\u064f\u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":286,"friends_count":336,"listed_count":0,"favourites_count":912,"statuses_count":12204,"created_at":"Sun Mar 02 08:04:51 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480965388558008321\/635thp8j.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480965388558008321\/635thp8j.jpeg","profile_background_tile":true,"profile_link_color":"E612CD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545482064460382209\/QH3LZpDs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545482064460382209\/QH3LZpDs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368525116\/1420018463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:30:42 +0000 2015","id":663649905752190976,"id_str":"663649905752190976","text":"Do the best you can until you know better. Then when you know better, do better.","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368493264,"id_str":"2368493264","name":"AsnitaXOXO","screen_name":"AsnitaXOXO","location":null,"url":null,"description":"Mine never expect too much. XOXO","protected":false,"verified":false,"followers_count":1402,"friends_count":0,"listed_count":25,"favourites_count":0,"statuses_count":333382,"created_at":"Sun Mar 02 07:31:55 +0000 2014","utc_offset":-3600,"time_zone":"Cape Verde Is.","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/440028075565133824\/r4Xf3_Wx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/440028075565133824\/r4Xf3_Wx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368493264\/1393745717","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AsnitaXOXO","name":"AsnitaXOXO","id":2368493264,"id_str":"2368493264","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081657"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305417728,"id_str":"663728085305417728","text":"\u4e2d\u5d8b\u304f\u3093\u304c\u7f70\u30b2\u30fc\u30e0\u3068\u7121\u7406\u77e2\u7406\u8a55\u3057\u3066\u30b1\u30c4\u3092\u898b\u305b\u3066\u304f\u308b\u306e\u3067\u672c\u5f53\u306b\u3069\u3046\u306b\u304b\u3057\u3066\u307b\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2784221095,"id_str":"2784221095","name":"\u95c7\u5e7b\u5f71\u30ea\u30f3\u30c0","screen_name":"rinden68","location":null,"url":null,"description":"\u540c\u3058\u30af\u30e9\u30b9\u3068\u306a\u3063\u305f\u9b54\u738b\u306e\u8840\u3092\u5f15\u304f\u5207\u308a\u7d75\u5e2b\u306f\u30ea\u30f4\u30a1\u30a4\u30a2\u30b5\u30f3\u3092\u7d50\u754c\u306e\u5916\u3078\u3068\u9003\u304c\u3057\u3066\u3057\u307e\u3063\u305f\u3001\u6700\u5f37\u306e\u751f\u7269\u3068\u8b33\u308f\u308c\u305f\u30ea\u30f4\u30a1\u30a4\u30a2\u30b5\u30f3\u3082\u3053\u306e\u5e83\u3044\u4e16\u754c\u306e\u4e2d\u306b\u8eab\u3092\u6295\u3058\u308c\u3070\u3082\u306f\u3084\u6240\u5728\u3082\u308f\u304b\u3089\u306a\u3044\u3001\u5e83\u5927\u3059\u304e\u308b\u4e16\u754c\u306e\u4e2d\u3067\u7d50\u754c\u306a\u3069\u306a\u304f\u3068\u3082\u4f4f\u3080\u4e16\u754c\u306f\u9650\u308a\u306a\u304f\u5c0f\u3055\u306a\u9670\u30ad\u30e3\u30e9\u3067\u3059","protected":false,"verified":false,"followers_count":139,"friends_count":136,"listed_count":1,"favourites_count":3259,"statuses_count":8325,"created_at":"Mon Sep 01 14:23:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609004566051364864\/7UV4FvdH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609004566051364864\/7UV4FvdH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2784221095\/1437918802","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085297004544,"id_str":"663728085297004544","text":"RT @mika___jm830: \u79c1\u306f\u3053\u306e\u4e8c\u4eba\u304c\u7d50\u5a5a\u3057\u3066\u3082\u30d5\u30a1\u30f3\u3084\u3081\u306a\u3044\u3088\u3068\u3044\u3046\u304b\u7d50\u5a5a\u3057\u3066\u307b\u3057\u3044\u3088\u3068\u601d\u3063\u3066\u308b\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\n\n#\u3053\u306e2\u4eba\u7d44\u597d\u304d\u306a\u4eba\u3067100RT\u8d8a\u3048\u308b\u3068\u671f\u5f85\u3057\u3066\u3082\u3044\u3044\u3067\u3059\u304b https:\/\/t.co\/dmdWvSK5wG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267788630,"id_str":"3267788630","name":"\u306f\u306a\u307e\u308b\u300a\u5d50\u5c02\u7528\u57a2\u300b","screen_name":"chobi_12_24","location":"\u65e5\u672c","url":null,"description":"\u5d50\u5927\u597d\u304d\uff01\uff01\uff01\u5927\u5bae\u306b\u306e\u3042\u3044\u3088\u308aALL\u62c5\u306e\u5927\u5b662\u5e74\u3067\u3059\uff01\u5d50\u30d5\u30a1\u30f3\u6b7410\u5e74\u30025\u00d710\u3001\u30c7\u30b8\u30bf\u30ea\u30a2\u30f3\u307e\u3067\u3060\u3044\u305f\u3044LIVE\u53c2\u6226\u3057\u3066\u307e\u3059\uff01\u30c1\u30b1\u30c3\u30c8\u5354\u529b\u3057\u3066\u53d6\u3063\u3066\u304f\u308c\u308b\u65b9\u52df\u96c6\u4e2d\uff01\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u969b\u306b\u4e00\u8a00\u304f\u308c\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\u3082\u3061\u308d\u3093\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3082\u6b53\u8fce\u3067\u3059\u266a\u5d50\u597d\u304d\u306a\u65b9\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059(*^^*)","protected":false,"verified":false,"followers_count":524,"friends_count":413,"listed_count":0,"favourites_count":1469,"statuses_count":2521,"created_at":"Sat Jul 04 05:34:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657924955355549696\/NE6YLQV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657924955355549696\/NE6YLQV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267788630\/1446203944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:05:45 +0000 2015","id":663220840217972736,"id_str":"663220840217972736","text":"\u79c1\u306f\u3053\u306e\u4e8c\u4eba\u304c\u7d50\u5a5a\u3057\u3066\u3082\u30d5\u30a1\u30f3\u3084\u3081\u306a\u3044\u3088\u3068\u3044\u3046\u304b\u7d50\u5a5a\u3057\u3066\u307b\u3057\u3044\u3088\u3068\u601d\u3063\u3066\u308b\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\u270b\ud83c\udffb\n\n#\u3053\u306e2\u4eba\u7d44\u597d\u304d\u306a\u4eba\u3067100RT\u8d8a\u3048\u308b\u3068\u671f\u5f85\u3057\u3066\u3082\u3044\u3044\u3067\u3059\u304b https:\/\/t.co\/dmdWvSK5wG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3276199303,"id_str":"3276199303","name":"\u262a\ufe0e \u307f \u304b \u308a \u3093~\uff71\uff9d\uff79\uff70\uff84\u5b9f\u65bd\u4e2d~","screen_name":"mika___jm830","location":"\u5909 \u614b \u52e2 \u3082 \u7d14 \u7c8b \u52e2 \u3082 \u7e4b \u304c \u308d \u3046!!!","url":null,"description":"\u6f64 \u304f \u3093 \uffe4 \u7fd4 \u6f64 \uffe4 \u672b \u30ba \uffe4 J K 2 ( 1 6 ) \uffe4 \u4e8c \u5bae \u304f \u3093 \u3068 \u540c \u3058 \u5de6 \u5229 \u304d \uffe4 \u7121 \u8a00 \u30d5 \u30a9 \u30ed \u30fc \u25ce \uffe4\u30c7 \u30b8 \u9b42 1 2 \/ 2 3 \u306e \u307f \uffe4 \u6d6e \u4e0a \u3057 \u3066 \u308b \u306e \u306b \u30ea \u30d7 \u8fd4 \u9045 \u308c \u308b \u2026 \u305d \u3093 \u306a \u6642 \u3042 \u308a \u307e \u3059","protected":false,"verified":false,"followers_count":1057,"friends_count":992,"listed_count":2,"favourites_count":1536,"statuses_count":2109,"created_at":"Sat Jul 11 14:45:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661153872983908352\/DgqBlnOA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661153872983908352\/DgqBlnOA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3276199303\/1446037129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":115,"favorite_count":37,"entities":{"hashtags":[{"text":"\u3053\u306e2\u4eba\u7d44\u597d\u304d\u306a\u4eba\u3067100RT\u8d8a\u3048\u308b\u3068\u671f\u5f85\u3057\u3066\u3082\u3044\u3044\u3067\u3059\u304b","indices":[51,81]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663220832206917632,"id_str":"663220832206917632","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","url":"https:\/\/t.co\/dmdWvSK5wG","display_url":"pic.twitter.com\/dmdWvSK5wG","expanded_url":"http:\/\/twitter.com\/mika___jm830\/status\/663220840217972736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":358,"resize":"fit"},"large":{"w":971,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":632,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663220832206917632,"id_str":"663220832206917632","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","url":"https:\/\/t.co\/dmdWvSK5wG","display_url":"pic.twitter.com\/dmdWvSK5wG","expanded_url":"http:\/\/twitter.com\/mika___jm830\/status\/663220840217972736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":358,"resize":"fit"},"large":{"w":971,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":632,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e2\u4eba\u7d44\u597d\u304d\u306a\u4eba\u3067100RT\u8d8a\u3048\u308b\u3068\u671f\u5f85\u3057\u3066\u3082\u3044\u3044\u3067\u3059\u304b","indices":[69,99]}],"urls":[],"user_mentions":[{"screen_name":"mika___jm830","name":"\u262a\ufe0e \u307f \u304b \u308a \u3093~\uff71\uff9d\uff79\uff70\uff84\u5b9f\u65bd\u4e2d~","id":3276199303,"id_str":"3276199303","indices":[3,16]}],"symbols":[],"media":[{"id":663220832206917632,"id_str":"663220832206917632","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","url":"https:\/\/t.co\/dmdWvSK5wG","display_url":"pic.twitter.com\/dmdWvSK5wG","expanded_url":"http:\/\/twitter.com\/mika___jm830\/status\/663220840217972736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":358,"resize":"fit"},"large":{"w":971,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":632,"resize":"fit"}},"source_status_id":663220840217972736,"source_status_id_str":"663220840217972736","source_user_id":3276199303,"source_user_id_str":"3276199303"}]},"extended_entities":{"media":[{"id":663220832206917632,"id_str":"663220832206917632","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQ71T9VEAAOAVi.jpg","url":"https:\/\/t.co\/dmdWvSK5wG","display_url":"pic.twitter.com\/dmdWvSK5wG","expanded_url":"http:\/\/twitter.com\/mika___jm830\/status\/663220840217972736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":358,"resize":"fit"},"large":{"w":971,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":632,"resize":"fit"}},"source_status_id":663220840217972736,"source_status_id_str":"663220840217972736","source_user_id":3276199303,"source_user_id_str":"3276199303"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081663"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284446208,"id_str":"663728085284446208","text":"@clickplayfest Click Play Fest 77","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3273934064,"in_reply_to_user_id_str":"3273934064","in_reply_to_screen_name":"clickplayfest","user":{"id":469159115,"id_str":"469159115","name":"#SLFLDay2Please","screen_name":"daniellekateeee","location":"Concert Venues","url":null,"description":"MultiFandom | I met James McVey 02\/01 | I don't care about your opinion.\u270b| Ari 8\/23 | Colton Haynes 09\/20 | Lawson and Charlie Puth 10\/03","protected":false,"verified":false,"followers_count":1588,"friends_count":776,"listed_count":3,"favourites_count":34445,"statuses_count":16797,"created_at":"Fri Jan 20 09:13:36 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660123064487645184\/NCKrvARa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660123064487645184\/NCKrvARa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469159115\/1445348405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"clickplayfest","name":"Click Play","id":3273934064,"id_str":"3273934064","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276102657,"id_str":"663728085276102657","text":"RT @Nilenice: (3) RW:\u0e21\u0e31\u0e19\u0e22\u0e31\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e23\u0e1a\u0e23\u0e2d\u0e1a10\u0e1b\u0e35\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e23\u0e32 \u0e04\u0e22\u0e39\u0e2e\u0e22\u0e2d\u0e19\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e19\u0e36\u0e07\u0e02\u0e2d\u0e07\u0e1c\u0e21 \u0e15\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e21\u0e32\u0e01\u0e46\u0e1c\u0e21\u0e04\u0e07\u0e17\u0e33\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e14\u0e35\u0e2b\u0e32\u0e01\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e02\u0e32\u0e41\u0e25\u0e30\u0e40\u0e21\u0e21\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e04\u0e19\u0e2d\u0e37\u0e48\u0e19\u0e15\u0e25\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987636868,"id_str":"2987636868","name":"\u043a'\u043d\u0446\u0438\u045b\u0430\u0438","screen_name":"Mew_thunder","location":"\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e2e\u0e38\u0e19\u0e2e\u0e32\u0e19\u2668 \u0e04\u0e22\u0e2d\u0e07\u0e0b\u0e39\u0e22\u0e48\u0e32\u0e32\u0e32~~","url":null,"description":"-HunHan- l\u0446\u043d\u03b1\u0438\/\u043e\u043ds\u0435\u043d\u0446\u0438\/\u043a\u0443\u0446\u0438gs\u043e\u043e \u2022\u043d\u043d\u2122\u2022 \u043a\u0456\u03b1s\u043e\u043e\u2122\u2022\u2021DAY6 JAEPARK\u2021 \u2022\u0e15\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e32\u0e22\u0e27\u0e07\u2022 \u2235\u221e\u2235\u221e\u2235\u2606\u2235\u221e\u2235\u221e\u2235 #\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e08\u0e35\u0e19","protected":false,"verified":false,"followers_count":679,"friends_count":374,"listed_count":5,"favourites_count":19331,"statuses_count":88500,"created_at":"Sun Jan 18 00:38:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721997248008192\/IHaxcCiJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721997248008192\/IHaxcCiJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987636868\/1447033817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:53 +0000 2015","id":663714375899832320,"id_str":"663714375899832320","text":"(3) RW:\u0e21\u0e31\u0e19\u0e22\u0e31\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e23\u0e1a\u0e23\u0e2d\u0e1a10\u0e1b\u0e35\u0e02\u0e2d\u0e07\u0e1e\u0e27\u0e01\u0e40\u0e23\u0e32 \u0e04\u0e22\u0e39\u0e2e\u0e22\u0e2d\u0e19\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e48\u0e27\u0e19\u0e19\u0e36\u0e07\u0e02\u0e2d\u0e07\u0e1c\u0e21 \u0e15\u0e49\u0e2d\u0e07\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e21\u0e32\u0e01\u0e46\u0e1c\u0e21\u0e04\u0e07\u0e17\u0e33\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e14\u0e35\u0e2b\u0e32\u0e01\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e02\u0e32\u0e41\u0e25\u0e30\u0e40\u0e21\u0e21\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e04\u0e19\u0e2d\u0e37\u0e48\u0e19\u0e15\u0e25\u0e2d\u0e1410\u0e1b\u0e35\u0e17\u0e35\u0e48\u0e1c\u0e48\u0e32\u0e19\u0e21\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713320327745541,"in_reply_to_status_id_str":"663713320327745541","in_reply_to_user_id":153132650,"in_reply_to_user_id_str":"153132650","in_reply_to_screen_name":"Nilenice","user":{"id":153132650,"id_str":"153132650","name":"\uffe2_\uffe2\u30feGyuMin \u2764","screen_name":"Nilenice","location":"~\ud30c\ub780\ucc9c\uc0ac\ub4e4\uc774~ l Thailand^ ^","url":"http:\/\/superjr-nile.tumblr.com","description":"\u2665 SuperJuniorONLY13 | \r\nplease think before following me | \u0e01\u0e47\u0e41\u0e04\u0e48\u0e40\u0e14\u0e47\u0e01\u0e15\u0e49\u0e2d\u0e22\u0e02\u0e2d\u0e07\u0e04\u0e22\u0e39\u0e21\u0e34\u0e19\u0e19~","protected":false,"verified":false,"followers_count":3568,"friends_count":61,"listed_count":10,"favourites_count":660,"statuses_count":40044,"created_at":"Mon Jun 07 19:32:09 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000139621340\/MOdcWcXr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000139621340\/MOdcWcXr.jpeg","profile_background_tile":false,"profile_link_color":"9AE4E8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FCB0F1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540498826939727872\/MwKtekub_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540498826939727872\/MwKtekub_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153132650\/1358621342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nilenice","name":"\uffe2_\uffe2\u30feGyuMin \u2764","id":153132650,"id_str":"153132650","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309648896,"id_str":"663728085309648896","text":"@1117vadr \n\n\u3082\u3046\u305d\u308c\u3067\u3044\u30fc\u3088(\u30e4\u30b1)\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727052571348993,"in_reply_to_status_id_str":"663727052571348993","in_reply_to_user_id":3280490286,"in_reply_to_user_id_str":"3280490286","in_reply_to_screen_name":"1117vadr","user":{"id":1860511531,"id_str":"1860511531","name":"\u3071\u3059\u305f","screen_name":"_____penpen","location":"\u52aa\u529b\u6b21\u7b2c\u3067\u4eba\u306f\u5909\u308f\u308c\u308b","url":"http:\/\/twpf.jp\/_____penpen","description":"\u7b11\u7aaa\u306b\u9a12\u3044\u3067\u30b7\u30e3\u30b1\u306bdr\u3066\u308b\u6c17\u8c61\u7cfb\u5973\u5b50(^\u30ee^=) \u2765\u30a2\u30cb\u30e1\u2765\u304a\u7d75\u63cf\u304d\u2765\u65e5\u3005\u7cbe\u9032 96Line","protected":false,"verified":false,"followers_count":137,"friends_count":305,"listed_count":8,"favourites_count":4666,"statuses_count":19779,"created_at":"Fri Sep 13 12:37:12 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662967871241220096\/StqXoWP1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662967871241220096\/StqXoWP1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1860511531\/1445522601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1117vadr","name":"\u0e51\u3000\u3071","id":3280490286,"id_str":"3280490286","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085271863296,"id_str":"663728085271863296","text":"RT @Nurgle_gazz: \uc0ac\ubd80.. \uc778\uc0dd\uc774 \ubb50\uc57c..? https:\/\/t.co\/12Rsv2ih0U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":552793941,"id_str":"552793941","name":"\uadf8\ub9b0\ub178\uc988 \uc0ac\ub77c \uc580\ub2e4","screen_name":"yahandaramgee","location":null,"url":null,"description":"\uc539\ub355\uc774\ub77c \uc77c\ubc18\uc778\ub4e4\uc740 \ud314\ub85c \uc548 \ubc1b\uc544\uc694\/\ube14\uc5b8\ube14 \ub9c8\uc74c\ub300\ub85c\n\n [\ud5e4\ub354-\ud61c\uc730 \ub2d8 \uc190\uae00\uc528]","protected":false,"verified":false,"followers_count":243,"friends_count":293,"listed_count":4,"favourites_count":3486,"statuses_count":31006,"created_at":"Fri Apr 13 13:49:15 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652116541454970880\/fv21TQYn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652116541454970880\/fv21TQYn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/552793941\/1444297468","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:15 +0000 2015","id":663727053787676672,"id_str":"663727053787676672","text":"\uc0ac\ubd80.. \uc778\uc0dd\uc774 \ubb50\uc57c..? https:\/\/t.co\/12Rsv2ih0U","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3167274007,"id_str":"3167274007","name":"\uc7ad\uc2dc","screen_name":"Nurgle_gazz","location":"11\uc6d4 16\uc77c \uc785\ub300","url":"https:\/\/www.youtube.com\/user\/Turyuable\/videos","description":"\uc131\uc778 \/ \uc695\uc139\ud3ed\ud2b8 \/ \uc7a1\ub355 \/ FUB \ub9d8\ub300\ub85c \/ \ucd5c\uace0 \uc544\ub984\ub2e4\uc6b4 \ud5e4\ub354\ub294 \ub0e5\ub204\uac00 \/ \ucd5c\uace0 \uadc0\uc5ec\uc6b4 \ud504\uc0ac\ub294 \ucc45\uc0c1\uc774 \uadf8\ub837\ub294\ub370 \ub0e5\ub204\uac00 \uac00\uacf5\ud574\uc90c","protected":false,"verified":false,"followers_count":274,"friends_count":209,"listed_count":1,"favourites_count":5519,"statuses_count":47581,"created_at":"Wed Apr 22 11:32:27 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658616001211142144\/32wDE_OC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658616001211142144\/32wDE_OC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3167274007\/1442151523","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727051388551168,"id_str":"663727051388551168","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","url":"https:\/\/t.co\/12Rsv2ih0U","display_url":"pic.twitter.com\/12Rsv2ih0U","expanded_url":"http:\/\/twitter.com\/Nurgle_gazz\/status\/663727053787676672\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727051388551168,"id_str":"663727051388551168","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","url":"https:\/\/t.co\/12Rsv2ih0U","display_url":"pic.twitter.com\/12Rsv2ih0U","expanded_url":"http:\/\/twitter.com\/Nurgle_gazz\/status\/663727053787676672\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nurgle_gazz","name":"\uc7ad\uc2dc","id":3167274007,"id_str":"3167274007","indices":[3,15]}],"symbols":[],"media":[{"id":663727051388551168,"id_str":"663727051388551168","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","url":"https:\/\/t.co\/12Rsv2ih0U","display_url":"pic.twitter.com\/12Rsv2ih0U","expanded_url":"http:\/\/twitter.com\/Nurgle_gazz\/status\/663727053787676672\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}},"source_status_id":663727053787676672,"source_status_id_str":"663727053787676672","source_user_id":3167274007,"source_user_id_str":"3167274007"}]},"extended_entities":{"media":[{"id":663727051388551168,"id_str":"663727051388551168","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIPJXVAAA3LDy.png","url":"https:\/\/t.co\/12Rsv2ih0U","display_url":"pic.twitter.com\/12Rsv2ih0U","expanded_url":"http:\/\/twitter.com\/Nurgle_gazz\/status\/663727053787676672\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"}},"source_status_id":663727053787676672,"source_status_id_str":"663727053787676672","source_user_id":3167274007,"source_user_id_str":"3167274007"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080081657"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085288681472,"id_str":"663728085288681472","text":"RT @JimnBaek712: \u3079\u304f\u3061\u3083\u3093\ud83d\udc36\ud83d\udc93 ( \uff19\uff18 )\n#Twitter\u4e0a\u306b\u3044\u308bEXO\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fEXO\u30da\u30f3\u3055\u3093\u306fRT\u3082\u3057\u304f\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\uff8c\uff6b\uff9b\uff70\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bEXO\u30da\u30f3\u3055\u3093\u3082RT\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915676570,"id_str":"2915676570","name":"\uff76\uff7d\uff9e\uff61 LuXion8\u65e5\/\u795e\u623828\u65e5","screen_name":"KaasToy_J_C","location":null,"url":"http:\/\/instagram.com\/kaas54\/","description":"98line\/Boyish\/147cm\/Gifu EXO\/BTS\/f(x)\/Korea\/Fashion\/Sax \u97d3\u56fd\u8a9e\u52c9\u5f37\u4e2d\u301c\u270f","protected":false,"verified":false,"followers_count":79,"friends_count":65,"listed_count":0,"favourites_count":200,"statuses_count":777,"created_at":"Mon Dec 01 14:43:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684827527319553\/f3nSm-uq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684827527319553\/f3nSm-uq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915676570\/1445077075","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:30 +0000 2015","id":663719819615694849,"id_str":"663719819615694849","text":"\u3079\u304f\u3061\u3083\u3093\ud83d\udc36\ud83d\udc93 ( \uff19\uff18 )\n#Twitter\u4e0a\u306b\u3044\u308bEXO\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fEXO\u30da\u30f3\u3055\u3093\u306fRT\u3082\u3057\u304f\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\uff8c\uff6b\uff9b\uff70\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bEXO\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257576288,"id_str":"3257576288","name":"\u30a2\u30a4\u30c1\u300a\u30ce\u30da\u3068\u6a2a\u30a2\u30ea\u9032\u6483\u300b","screen_name":"JimnBaek712","location":"\u3071 \u304f \u3058 \u307f \u3093 \u3057 \u3085 \u304c \u306e \u9593 \u306b \u4f4f \u307f \u305f \u3044 ","url":null,"description":"\u982d\u306e\u4e2d\u306b \u3058\u307f\u3093 \u3086\u3093\u304e \u3079\u304f\u3072\u3087\u3093 \u304c\u4f4f\u3093\u3067\u3044\u307e\u3059 \u3002\u300a@BTS_twt @pledis_17 \u300b \u300a\u30ce\u30da\u3068\u6a2a\u30a2\u30ea\u9032\u6483\u300b","protected":false,"verified":false,"followers_count":255,"friends_count":210,"listed_count":7,"favourites_count":3551,"statuses_count":15037,"created_at":"Sat Jun 27 08:51:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663510893188112384\/HTqwGlnm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663510893188112384\/HTqwGlnm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257576288\/1446544146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":1,"entities":{"hashtags":[{"text":"Twitter\u4e0a\u306b\u3044\u308bEXO\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fEXO\u30da\u30f3\u3055\u3093\u306fRT\u3082\u3057\u304f\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\uff8c\uff6b\uff9b\uff70\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bEXO\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[15,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twitter\u4e0a\u306b\u3044\u308bEXO\u30da\u30f3\u3055\u3093\u5168\u54e1\u3068\u7e4b\u304c\u308b\u306e\u304c\u5bc6\u304b\u306a\u5922\u3060\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u3068\u308a\u3042\u3048\u305a\u3053\u308c\u3092\u898b\u305fEXO\u30da\u30f3\u3055\u3093\u306fRT\u3082\u3057\u304f\u306f\uff8c\uff6b\uff9b\uff70\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5168\u529b\u3067\uff8c\uff6b\uff9b\uff70\u3057\u306b\u884c\u304d\u307e\u3059\u305d\u3057\u3066\u4eca\u7e4b\u304c\u3063\u3066\u308bEXO\u30da\u30f3\u3055\u3093\u3082RT\u3067\u62e1\u6563\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059","indices":[32,140]}],"urls":[],"user_mentions":[{"screen_name":"JimnBaek712","name":"\u30a2\u30a4\u30c1\u300a\u30ce\u30da\u3068\u6a2a\u30a2\u30ea\u9032\u6483\u300b","id":3257576288,"id_str":"3257576288","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081661"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085301387264,"id_str":"663728085301387264","text":"\u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0627\u0644\u062b\u0627\u0644\u062b\u0629 \u0641\u064a \u0642\u0646\u0627\u0629 \u062e\u0627\u0644\u062f \u0643\u0648\u062f Telegram \u064a\u0645\u0643\u0646\u0643 \u0627\u0644\u0622\u0646 \u0627\u0644\u0625\u0646\u0636\u0645\u0627\u0645 \u0645\u0639\u0646\u0627 \ud83d\udc4d\ud83c\udffc \u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0631\u0627\u0628\u0637 \u0648 \u0634\u0627\u0631\u0643\u0646\u0627\n\nhttps:\/\/t.co\/DWXlgrCn6V","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106703647,"id_str":"106703647","name":"Tiger","screen_name":"kaldaihan","location":null,"url":"http:\/\/www.khaledcode.com","description":"\u062d\u064a\u062b \u0623\u0643\u0648\u0646.. \u0643\u0627\u062a\u0628\u060c \u0623\u062d\u0628 \u0643\u0644 \u062c\u0645\u064a\u0644..","protected":false,"verified":false,"followers_count":12905,"friends_count":221,"listed_count":66,"favourites_count":412,"statuses_count":14438,"created_at":"Wed Jan 20 12:43:47 +0000 2010","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649863209436884992\/4oogKLwQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649863209436884992\/4oogKLwQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106703647\/1410468069","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DWXlgrCn6V","expanded_url":"https:\/\/telegram.me\/khaledcode","display_url":"telegram.me\/khaledcode","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080081664"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085297065984,"id_str":"663728085297065984","text":"RT @AiemANNA90: SNSD GEE MV HAS BEEN TAKEN DOWN ON YOUTUBE DUE TO \nCOPYRIGHT........!!!!!!\n\nSONEs right now:\n\n#JusticeForGee https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474636778,"id_str":"474636778","name":"princess","screen_name":"ScarletPuteri","location":"LA","url":null,"description":"Stay beautiful \u2764","protected":false,"verified":false,"followers_count":237,"friends_count":220,"listed_count":0,"favourites_count":1158,"statuses_count":4737,"created_at":"Thu Jan 26 05:56:33 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662955298202648576\/rGL8PdO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662955298202648576\/rGL8PdO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474636778\/1441536284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:20:39 +0000 2015","id":663707776921681920,"id_str":"663707776921681920","text":"SNSD GEE MV HAS BEEN TAKEN DOWN ON YOUTUBE DUE TO \nCOPYRIGHT........!!!!!!\n\nSONEs right now:\n\n#JusticeForGee https:\/\/t.co\/OYDaLeMjzs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":518110289,"id_str":"518110289","name":"Choi AnnA","screen_name":"AiemANNA90","location":null,"url":"http:\/\/weibo.com\/AiemAnna23","description":"WEN A KPOP FAN MET SWIFTIES\nFANGIRLING IS MY BESTFRIEND.\u2665\u2665","protected":false,"verified":false,"followers_count":213,"friends_count":288,"listed_count":3,"favourites_count":102,"statuses_count":17253,"created_at":"Thu Mar 08 01:58:03 +0000 2012","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E21F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638220129742884864\/bit4-iu3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638220129742884864\/bit4-iu3.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663270608193499136\/LhMiVMQA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663270608193499136\/LhMiVMQA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/518110289\/1446970788","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":4,"entities":{"hashtags":[{"text":"JusticeForGee","indices":[95,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663707775436918784,"id_str":"663707775436918784","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","url":"https:\/\/t.co\/OYDaLeMjzs","display_url":"pic.twitter.com\/OYDaLeMjzs","expanded_url":"http:\/\/twitter.com\/AiemANNA90\/status\/663707776921681920\/photo\/1","type":"photo","sizes":{"medium":{"w":459,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":459,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663707775436918784,"id_str":"663707775436918784","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","url":"https:\/\/t.co\/OYDaLeMjzs","display_url":"pic.twitter.com\/OYDaLeMjzs","expanded_url":"http:\/\/twitter.com\/AiemANNA90\/status\/663707776921681920\/photo\/1","type":"photo","sizes":{"medium":{"w":459,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":459,"h":280,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForGee","indices":[111,125]}],"urls":[],"user_mentions":[{"screen_name":"AiemANNA90","name":"Choi AnnA","id":518110289,"id_str":"518110289","indices":[3,14]}],"symbols":[],"media":[{"id":663707775436918784,"id_str":"663707775436918784","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","url":"https:\/\/t.co\/OYDaLeMjzs","display_url":"pic.twitter.com\/OYDaLeMjzs","expanded_url":"http:\/\/twitter.com\/AiemANNA90\/status\/663707776921681920\/photo\/1","type":"photo","sizes":{"medium":{"w":459,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":459,"h":280,"resize":"fit"}},"source_status_id":663707776921681920,"source_status_id_str":"663707776921681920","source_user_id":518110289,"source_user_id_str":"518110289"}]},"extended_entities":{"media":[{"id":663707775436918784,"id_str":"663707775436918784","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX2tI2VEAAuHhB.jpg","url":"https:\/\/t.co\/OYDaLeMjzs","display_url":"pic.twitter.com\/OYDaLeMjzs","expanded_url":"http:\/\/twitter.com\/AiemANNA90\/status\/663707776921681920\/photo\/1","type":"photo","sizes":{"medium":{"w":459,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":459,"h":280,"resize":"fit"}},"source_status_id":663707776921681920,"source_status_id_str":"663707776921681920","source_user_id":518110289,"source_user_id_str":"518110289"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081663"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276033024,"id_str":"663728085276033024","text":"@dad_yuuuuka \n\u3093\u3058\u3083\u3001\u30bf\u30e1\u3067\uff01\n\u30b8\u30e3\u30cb\u30fc\u30ba\u597d\u304d\u306a\u3093\u3067\u3059\u304b\uff1f\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663346227866529792,"in_reply_to_status_id_str":"663346227866529792","in_reply_to_user_id":4157015652,"in_reply_to_user_id_str":"4157015652","in_reply_to_screen_name":"dad_yuuuuka","user":{"id":4118617392,"id_str":"4118617392","name":"\u307d\u3093\u3061\u3083\u3093","screen_name":"daaaaao_xox","location":null,"url":null,"description":"XOX\u3068\u8aad\u30e2\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\uff01\u3060\u304a\u304f\u3093\u2661\u30a4\u30d9\u30f3\u30c8\u884c\u3063\u305f\u3053\u3068\u306a\u3044\u3067\u3059(\u00b4\uff65_\uff65`)\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":24,"friends_count":40,"listed_count":0,"favourites_count":5,"statuses_count":70,"created_at":"Wed Nov 04 01:15:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661726096967143425\/7YXmm11f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661726096967143425\/7YXmm11f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4118617392\/1446602770","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dad_yuuuuka","name":"Y\u6c0f\u261c","id":4157015652,"id_str":"4157015652","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085271867393,"id_str":"663728085271867393","text":"@no_eipo \n\u5800\u7c73\u3055\u3093\u307e\u3058\u30ea\u30b9\u30da\u30af\u30c8\u3060\u304b\u3089\ud83e\udd18\ud83c\udffb\ud83e\udd18\ud83c\udffb\ud83e\udd18\ud83c\udffb\ud83e\udd18\ud83c\udffb\ud83d\udc73\ud83c\udfff\ud83d\udc73\ud83c\udfff\ud83d\udc73\ud83c\udfff\ud83d\udc73\ud83c\udfff","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727752189579264,"in_reply_to_status_id_str":"663727752189579264","in_reply_to_user_id":2409214872,"in_reply_to_user_id_str":"2409214872","in_reply_to_screen_name":"no_eipo","user":{"id":2240830105,"id_str":"2240830105","name":"ayumu","screen_name":"plumeria_7love","location":"TOMODACHI softbank 4\u671f","url":null,"description":"\u2733\ufe0eSEEC3rd\u2733\ufe0e volunteer @resmile2525 next\u27a1\ufe0eJCFL AL CA\u2708\ufe0e","protected":false,"verified":false,"followers_count":575,"friends_count":510,"listed_count":0,"favourites_count":4402,"statuses_count":5298,"created_at":"Wed Dec 11 13:59:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661398331407511552\/X-ZhdvK7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661398331407511552\/X-ZhdvK7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240830105\/1446382870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"no_eipo","name":"\u307d\u3093\u3067\u3061\u3083\u3093","id":2409214872,"id_str":"2409214872","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081657"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276209153,"id_str":"663728085276209153","text":"https:\/\/t.co\/mP6vF89msL","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67583809,"id_str":"67583809","name":"Evelyn Duperron","screen_name":"DanceAge","location":"South Africa","url":"http:\/\/www.danceage.co.za","description":"Explorer of note. Enjoys life and loves to experience and learn as much as possible. Passionate about all the things I do.","protected":false,"verified":false,"followers_count":963,"friends_count":979,"listed_count":0,"favourites_count":11,"statuses_count":2634,"created_at":"Fri Aug 21 11:28:01 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/373845372\/20070706_1466_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/373845372\/20070706_1466_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mP6vF89msL","expanded_url":"http:\/\/fb.me\/4oPfEbsWY","display_url":"fb.me\/4oPfEbsWY","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284446209,"id_str":"663728085284446209","text":"@trs_0905 \u305f\u3063\u3064\u30fc\u305f\u3063\u3064\u30fc\u305f\u3063\u3064\u30fc\u2661\u7d76\u5bfe\u30a4\u30af\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725387290046467,"in_reply_to_status_id_str":"663725387290046467","in_reply_to_user_id":2273435677,"in_reply_to_user_id_str":"2273435677","in_reply_to_screen_name":"trs_0905","user":{"id":3221620429,"id_str":"3221620429","name":"\u5c0f\u5c71 \u529f\u967d","screen_name":"gumig_","location":null,"url":null,"description":"\u56fd\u969b\u7406\u5bb9\u7f8e\u5bb9 \u7406\u5bb9\u79d1","protected":false,"verified":false,"followers_count":29,"friends_count":27,"listed_count":0,"favourites_count":0,"statuses_count":40,"created_at":"Wed May 20 16:01:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628416107368452098\/VUpuFibl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628416107368452098\/VUpuFibl_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trs_0905","name":"\u305f\u3063\u3064\u30fc\u3002","id":2273435677,"id_str":"2273435677","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085288812544,"id_str":"663728085288812544","text":"+ Eres muy guapa y pareces maja\n- No nos conocemos, que yo sepa \ud83d\ude02 \u2014 graciass https:\/\/t.co\/WJUqazlXL5","source":"\u003ca href=\"http:\/\/ask.fm\/\" rel=\"nofollow\"\u003eAsk.fm\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2509084605,"id_str":"2509084605","name":"ARMY","screen_name":"mariaroguez6","location":null,"url":null,"description":"Por los m\u00edos y por mi gente","protected":false,"verified":false,"followers_count":350,"friends_count":293,"listed_count":1,"favourites_count":6128,"statuses_count":12534,"created_at":"Fri Apr 25 20:26:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637063123971743745\/3eQtGteB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637063123971743745\/3eQtGteB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2509084605\/1439319631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WJUqazlXL5","expanded_url":"http:\/\/l.ask.fm\/igoto\/45DKECN75V62DDAUPY6IQO7O72NTJLAIRX3PNANXBPX376NS2MU4GISQPYKYWBDHCWVP2FIDIFXTEU2VQF23OLPSPTZ25LRHXYAAPASYL53CCL7ED2MCQ27XQWVMFVTTSWQZSHSLZLLHDHMEIHIR4WDOZ7HHT7ENYDIV3YJZRSWKE6OLDJPGHRPW3ANODW6UTQRL2MS7UVINXADNGVQQM===","display_url":"l.ask.fm\/igoto\/45DKECN7\u2026","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080081661"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309612033,"id_str":"663728085309612033","text":"@milk__y2 \u306f\u3061\u306e\u3059\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727461750865921,"in_reply_to_status_id_str":"663727461750865921","in_reply_to_user_id":4153526004,"in_reply_to_user_id_str":"4153526004","in_reply_to_screen_name":"milk__y2","user":{"id":3312321422,"id_str":"3312321422","name":"\u3057\u3093\u307d\u3093@\u897f\u91ce\u5bb6","screen_name":"akapanda0602","location":"\u65b0\u4e16\u754c","url":null,"description":"\u897f\u91ce\u30ab\u30ca\/AAA\/\u30e2\u30f3\u30b9\u30c8\/Vainglory\/\u30dd\u30b1\u3068\u308b\/\u4eba\u72fc\u30b2\u30fc\u30e0x\/\u30d0\u30eb\u30c8\u30af\u30e9\u30d6","protected":false,"verified":false,"followers_count":9,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":43,"created_at":"Tue Aug 11 10:37:17 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645392680244002816\/kCGnofkY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645392680244002816\/kCGnofkY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312321422\/1445681004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"milk__y2","name":"\u307f\u3044\u3053","id":4153526004,"id_str":"4153526004","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085280415745,"id_str":"663728085280415745","text":"RT @AddictToJessiej: #GoodMorning https:\/\/t.co\/ZINXTptPNm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323307609,"id_str":"323307609","name":"oregon","screen_name":"MsWanderlust_","location":"guruguru","url":null,"description":"Heartbeat. Ed. Coldplay. | OITNB | SKINS | Aprend\u00ed que la vida son buenas y malas rachas. 28 Lau.","protected":false,"verified":false,"followers_count":337,"friends_count":438,"listed_count":5,"favourites_count":3794,"statuses_count":9591,"created_at":"Fri Jun 24 16:17:54 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"05FAC9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607588644199776257\/oR62CKs7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607588644199776257\/oR62CKs7.jpg","profile_background_tile":true,"profile_link_color":"56F705","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658042614080524288\/kKeQJGpZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658042614080524288\/kKeQJGpZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323307609\/1447018068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:54:09 +0000 2015","id":663686008203005952,"id_str":"663686008203005952","text":"#GoodMorning https:\/\/t.co\/ZINXTptPNm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2655095331,"id_str":"2655095331","name":"Jessie J Addiction","screen_name":"AddictToJessiej","location":"USA","url":"http:\/\/jessiejofficial.com\/","description":"@JessieJ is my life ! Get your life with the new album by Jessie J SWEET TALKER on Itunes now : https:\/\/itunes.apple.com\/us\/album\/sweet-talker\/id911165046","protected":false,"verified":false,"followers_count":2233,"friends_count":1586,"listed_count":7,"favourites_count":10900,"statuses_count":31905,"created_at":"Mon Jun 30 02:39:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519576246041059329\/bCC7VGT5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519576246041059329\/bCC7VGT5.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661339960134397952\/sGq8NQ6S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661339960134397952\/sGq8NQ6S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2655095331\/1446510745","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[{"text":"GoodMorning","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/ZINXTptPNm","expanded_url":"https:\/\/vine.co\/v\/eVaJJUKwm0Q","display_url":"vine.co\/v\/eVaJJUKwm0Q","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GoodMorning","indices":[21,33]}],"urls":[{"url":"https:\/\/t.co\/ZINXTptPNm","expanded_url":"https:\/\/vine.co\/v\/eVaJJUKwm0Q","display_url":"vine.co\/v\/eVaJJUKwm0Q","indices":[34,57]}],"user_mentions":[{"screen_name":"AddictToJessiej","name":"Jessie J Addiction","id":2655095331,"id_str":"2655095331","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080081659"} +{"delete":{"status":{"id":519930923475685376,"id_str":"519930923475685376","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080081802"}} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085280288769,"id_str":"663728085280288769","text":"Anak\" baperr yg tiap hati selalu bikin ketawa lepas walaupun ada masalah #terbaiklahpokok'a\ud83d\ude0d\ud83d\ude18 https:\/\/t.co\/B7xlrqpknD","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179785772,"id_str":"4179785772","name":"Nadia Fauziah","screen_name":"fauziahnadia31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":35,"listed_count":0,"favourites_count":1,"statuses_count":2,"created_at":"Mon Nov 09 13:59:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722464698986496\/hUTHqo-h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722464698986496\/hUTHqo-h_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"terbaiklahpokok","indices":[73,89]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728019488444417,"id_str":"663728019488444417","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHf0VEAErDMW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHf0VEAErDMW.jpg","url":"https:\/\/t.co\/B7xlrqpknD","display_url":"pic.twitter.com\/B7xlrqpknD","expanded_url":"http:\/\/twitter.com\/fauziahnadia31\/status\/663728085280288769\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728019488444417,"id_str":"663728019488444417","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHf0VEAErDMW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHf0VEAErDMW.jpg","url":"https:\/\/t.co\/B7xlrqpknD","display_url":"pic.twitter.com\/B7xlrqpknD","expanded_url":"http:\/\/twitter.com\/fauziahnadia31\/status\/663728085280288769\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080081659"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284425728,"id_str":"663728085284425728","text":"Doodgewaande man na 20 jaar levend gevonden https:\/\/t.co\/EVyArnvzRD","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125931501,"id_str":"125931501","name":"Johnny Cohen","screen_name":"cohenjohnny","location":"Amsterdam","url":null,"description":"Loves 3D Movies, IMAX, games and virtual + augmented reality.","protected":false,"verified":false,"followers_count":167,"friends_count":85,"listed_count":8,"favourites_count":71,"statuses_count":47623,"created_at":"Wed Mar 24 09:15:34 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/772091897\/eek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/772091897\/eek_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EVyArnvzRD","expanded_url":"http:\/\/dlvr.it\/Chfj8D","display_url":"dlvr.it\/Chfj8D","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284491264,"id_str":"663728085284491264","text":"Anyone has the Hospital skin set https:\/\/t.co\/KERnUszRdW","source":"\u003ca href=\"http:\/\/service.rss2twi.com\/\" rel=\"nofollow\"\u003erss2twi.com\u306e\u30c4\u30a4\u30fc\u30c8\u5206\u6790\u30c4\u30fc\u30eb4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241739792,"id_str":"3241739792","name":"MMO Topics","screen_name":"MMO_topics_us","location":null,"url":null,"description":"MMO topics from reddit","protected":false,"verified":false,"followers_count":9,"friends_count":0,"listed_count":0,"favourites_count":1572,"statuses_count":206041,"created_at":"Wed Jun 10 22:46:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608784515847159809\/2krKhbqM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608784515847159809\/2krKhbqM_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KERnUszRdW","expanded_url":"http:\/\/service.rss2twi.com\/link\/MMO_topics_us\/?post_id=16564304","display_url":"service.rss2twi.com\/link\/MMO_topic\u2026","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085288767488,"id_str":"663728085288767488","text":"What's the point of trying the same thing over and over again if you know it's just going to fail every single time?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2209239657,"id_str":"2209239657","name":"Maggie Manchester","screen_name":"maggieterry_4","location":"Williamsport, PA","url":null,"description":"Isaiah 40:31","protected":false,"verified":false,"followers_count":314,"friends_count":239,"listed_count":1,"favourites_count":2092,"statuses_count":1317,"created_at":"Thu Dec 05 19:40:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663363936310439936\/b0Nv8bnx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663363936310439936\/b0Nv8bnx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2209239657\/1445089885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081661"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085309792256,"id_str":"663728085309792256","text":"@ChampionsLeague and I think #EuropaLeague #predictions went ok too! \ud83c\udfc6\ud83d\udcaa https:\/\/t.co\/D9Zkow7GKU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662247972902670336,"in_reply_to_status_id_str":"662247972902670336","in_reply_to_user_id":2314371545,"in_reply_to_user_id_str":"2314371545","in_reply_to_screen_name":"harschil","user":{"id":2314371545,"id_str":"2314371545","name":"Harshil","screen_name":"harschil","location":null,"url":null,"description":"Mechanical Engineering Student @ Polimi. \nF1,Football and Cricket fan. Proud Indian #13","protected":false,"verified":false,"followers_count":234,"friends_count":238,"listed_count":3,"favourites_count":609,"statuses_count":711,"created_at":"Thu Jan 30 15:49:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643225146766061568\/uASdea0f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643225146766061568\/uASdea0f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2314371545\/1442191413","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EuropaLeague","indices":[29,42]},{"text":"predictions","indices":[44,56]}],"urls":[],"user_mentions":[{"screen_name":"ChampionsLeague","name":"Champions League","id":627673190,"id_str":"627673190","indices":[0,16]}],"symbols":[],"media":[{"id":663728071707619328,"id_str":"663728071707619328","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKiWWcAAa8vb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKiWWcAAa8vb.jpg","url":"https:\/\/t.co\/D9Zkow7GKU","display_url":"pic.twitter.com\/D9Zkow7GKU","expanded_url":"http:\/\/twitter.com\/harschil\/status\/663728085309792256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728071707619328,"id_str":"663728071707619328","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKiWWcAAa8vb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKiWWcAAa8vb.jpg","url":"https:\/\/t.co\/D9Zkow7GKU","display_url":"pic.twitter.com\/D9Zkow7GKU","expanded_url":"http:\/\/twitter.com\/harschil\/status\/663728085309792256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081666"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276057601,"id_str":"663728085276057601","text":"RT @Dexter916: @jarpad high five run, chasing @Mark_Sheppard https:\/\/t.co\/OzK8aip8T4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2801820844,"id_str":"2801820844","name":"Submissive!Castiel","screen_name":"cas_the_teen","location":null,"url":"http:\/\/www.twitlonger.com\/show\/n_1sjldns?new_post=true","description":"I don't understand... What is a bio, exactly? *Sub*Pet\/Slave (BDSM kink)*","protected":false,"verified":false,"followers_count":1509,"friends_count":1625,"listed_count":13,"favourites_count":26213,"statuses_count":17410,"created_at":"Fri Oct 03 11:56:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661552847637512192\/qhqKCIxF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661552847637512192\/qhqKCIxF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2801820844\/1420242931","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:03:26 +0000 2015","id":663522248255406080,"id_str":"663522248255406080","text":"@jarpad high five run, chasing @Mark_Sheppard https:\/\/t.co\/OzK8aip8T4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":310687757,"in_reply_to_user_id_str":"310687757","in_reply_to_screen_name":"jarpad","user":{"id":36900064,"id_str":"36900064","name":"Kelsie","screen_name":"Dexter916","location":"NEBRASKA","url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":56,"listed_count":0,"favourites_count":244,"statuses_count":592,"created_at":"Fri May 01 06:45:21 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"394553","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/798403687\/4efd2c9ac1075e70fe852abbe8a89a50.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/798403687\/4efd2c9ac1075e70fe852abbe8a89a50.png","profile_background_tile":true,"profile_link_color":"6C7080","profile_sidebar_border_color":"D2C9A8","profile_sidebar_fill_color":"B2A094","profile_text_color":"6F8685","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663508394540535812\/D1sY1XR__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663508394540535812\/D1sY1XR__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36900064\/1361643328","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"b49b3053b5c25bf5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b49b3053b5c25bf5.json","place_type":"city","name":"Denver","full_name":"Denver, CO","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-105.109815,39.614151],[-105.109815,39.812975],[-104.734372,39.812975],[-104.734372,39.614151]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":65,"favorite_count":76,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jarpad","name":"Jared Padalecki","id":310687757,"id_str":"310687757","indices":[0,7]},{"screen_name":"Mark_Sheppard","name":"Mark Sheppard","id":30282704,"id_str":"30282704","indices":[31,45]}],"symbols":[],"media":[{"id":663522036820480000,"id_str":"663522036820480000","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","url":"https:\/\/t.co\/OzK8aip8T4","display_url":"pic.twitter.com\/OzK8aip8T4","expanded_url":"http:\/\/twitter.com\/Dexter916\/status\/663522248255406080\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663522036820480000,"id_str":"663522036820480000","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","url":"https:\/\/t.co\/OzK8aip8T4","display_url":"pic.twitter.com\/OzK8aip8T4","expanded_url":"http:\/\/twitter.com\/Dexter916\/status\/663522248255406080\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":7382,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/pl\/UFNRqU1-s_l3B0Ug.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/pl\/UFNRqU1-s_l3B0Ug.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/240x240\/eKAkSnCM2nf3fpYY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/480x480\/zReIIWH-aj4cooGN.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/480x480\/zReIIWH-aj4cooGN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dexter916","name":"Kelsie","id":36900064,"id_str":"36900064","indices":[3,13]},{"screen_name":"jarpad","name":"Jared Padalecki","id":310687757,"id_str":"310687757","indices":[15,22]},{"screen_name":"Mark_Sheppard","name":"Mark Sheppard","id":30282704,"id_str":"30282704","indices":[46,60]}],"symbols":[],"media":[{"id":663522036820480000,"id_str":"663522036820480000","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","url":"https:\/\/t.co\/OzK8aip8T4","display_url":"pic.twitter.com\/OzK8aip8T4","expanded_url":"http:\/\/twitter.com\/Dexter916\/status\/663522248255406080\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663522248255406080,"source_status_id_str":"663522248255406080","source_user_id":36900064,"source_user_id_str":"36900064"}]},"extended_entities":{"media":[{"id":663522036820480000,"id_str":"663522036820480000","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522036820480000\/pu\/img\/cBe1ECCgOvM1yg55.jpg","url":"https:\/\/t.co\/OzK8aip8T4","display_url":"pic.twitter.com\/OzK8aip8T4","expanded_url":"http:\/\/twitter.com\/Dexter916\/status\/663522248255406080\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663522248255406080,"source_status_id_str":"663522248255406080","source_user_id":36900064,"source_user_id_str":"36900064","video_info":{"aspect_ratio":[1,1],"duration_millis":7382,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/pl\/UFNRqU1-s_l3B0Ug.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/pl\/UFNRqU1-s_l3B0Ug.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/240x240\/eKAkSnCM2nf3fpYY.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/480x480\/zReIIWH-aj4cooGN.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522036820480000\/pu\/vid\/480x480\/zReIIWH-aj4cooGN.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284470785,"id_str":"663728085284470785","text":"\u306e\u3063\u305d\u306e\u3063\u305d\u6e96\u5099\u3057\u3066\u305f\u3089\u3053\u3093\u306a\u6642\u9593\u3002\u6848\u306e\u5b9a\u982d\u75db(:3_\u30fd)_\u5bdd\u306a\u304d\u3083(:3_\u30fd)_","source":"\u003ca href=\"http:\/\/jigtwi.jp\/?p=1\" rel=\"nofollow\"\u003ejigtwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251075424,"id_str":"251075424","name":"\u304b\u307b\uff20(\u30fb\u03c9\u00b4\u30fb.)","screen_name":"nax_lis18","location":"\u306a\u3054\u3084\u306e\u306f\u3058\u3063\u3053","url":"http:\/\/twpf.jp\/nax_lis18","description":"\u3057\u304c\u306a\u3044\u793e\u4f1a\u4eba\u306e\u4eee\u9762\u3092\u88ab\u3063\u305f\n\u5b50\u6b8b\u5ff5\u306a\u3046\u307e\u3057\u304b\u3067\u3001\u5c3e\u5f35\u85e9\u58eb\u3002\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u3002\u60aa\u3057\u304b\u3089\u305a\u3002\n\n\u8a73\u3057\u304f\u306f\u3064\u3044\u3077\u308d\u53c2\u7167\uff01\uff01\nig\u3082\u3084\u3063\u3066\u307e\u3059(ID\uff1anax_lis18)","protected":false,"verified":false,"followers_count":164,"friends_count":345,"listed_count":3,"favourites_count":3586,"statuses_count":34097,"created_at":"Sat Feb 12 11:39:45 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"CC3366","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565326750339858432\/7MSsrjI6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565326750339858432\/7MSsrjI6.jpeg","profile_background_tile":true,"profile_link_color":"FF96B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFDFF","profile_text_color":"0C1828","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564359361850392578\/BO0KOe-C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564359361850392578\/BO0KOe-C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251075424\/1423389560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085284458498,"id_str":"663728085284458498","text":"@houjitya07 \u4ed6\u306b\u77e5\u308a\u305f\u3044\u3053\u3068\u306f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727718182195202,"in_reply_to_status_id_str":"663727718182195202","in_reply_to_user_id":2283459253,"in_reply_to_user_id_str":"2283459253","in_reply_to_screen_name":"uwa_sora","user":{"id":2283459253,"id_str":"2283459253","name":"\u8272@\u5831\u544a\u30a2\u30ab","screen_name":"uwa_sora","location":"\u3053\u306f\u308b\u304d\u306c\u3068\u4eba\u306f\u3044\u3078\u3069\u3082\u9daf\u306e\u306a\u304b\u306c\u304b\u304e\u308a\u306f \u3042\u3089\u3058\u3068\u305e\u601d\u3075","url":null,"description":"\u6210\u4eba.\/\u4f55\u304b\u3042\u308a\u307e\u3057\u305f\u3089\u545f\u304b\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\/\u5200\u5263\u4e71\u821e.APH.\/MMD\u57a2(@shiki_mmd)","protected":false,"verified":false,"followers_count":78,"friends_count":84,"listed_count":1,"favourites_count":2698,"statuses_count":2337,"created_at":"Thu Jan 09 11:33:09 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662450903761313793\/7_sBT-OO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662450903761313793\/7_sBT-OO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2283459253\/1423829100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"houjitya07","name":"\u7119\u8336","id":2596503134,"id_str":"2596503134","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081660"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305397248,"id_str":"663728085305397248","text":"https:\/\/t.co\/bbYPHtwrKR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3979517233,"id_str":"3979517233","name":"Sivolc Zervel","screen_name":"SivolcZ","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":63,"created_at":"Thu Oct 22 11:07:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728084961505280,"id_str":"663728084961505280","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLTuUsAAtr0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLTuUsAAtr0w.jpg","url":"https:\/\/t.co\/bbYPHtwrKR","display_url":"pic.twitter.com\/bbYPHtwrKR","expanded_url":"http:\/\/twitter.com\/SivolcZ\/status\/663728085305397248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728084961505280,"id_str":"663728084961505280","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLTuUsAAtr0w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLTuUsAAtr0w.jpg","url":"https:\/\/t.co\/bbYPHtwrKR","display_url":"pic.twitter.com\/bbYPHtwrKR","expanded_url":"http:\/\/twitter.com\/SivolcZ\/status\/663728085305397248\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":512,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276082176,"id_str":"663728085276082176","text":"@MnetMAMA \uc774 \uacc4\uc815\uc740 \ubaac\uac00 \uae5c\uc9dd \ub180\ub77c\uc168\uc870? #EXO \uc0c1 \ubc1b\uc73c\ub77c\uad6c \ud568\ub2c8\ub2e4 #CALLMEBABY \ud2f0\uc838\ub97c \ub0b4\uac00 \uc774\uc990\uc218\uac00 \uc5c5\ub208\uace8 \ub9d0 \uc5b4\uae08\ub2c8 \uc6c3\uc74c \uc720\uac13\ubbf8\uc2a4\ubaa8\ud0b9\uc528\uac00\ub81b\uc554\uc778\uc2a4\ud2b8\ub808\uc4d4\ubca0\uc774\ubca0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":128487133,"in_reply_to_user_id_str":"128487133","in_reply_to_screen_name":"MnetMAMA","user":{"id":2944730576,"id_str":"2944730576","name":"\ubcc0\uc874","screen_name":"quswhs","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":20,"listed_count":0,"favourites_count":78,"statuses_count":598,"created_at":"Sat Dec 27 07:06:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577121780524916736\/7XLN_MH0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577121780524916736\/7XLN_MH0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2944730576\/1424265743","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[28,32]},{"text":"CALLMEBABY","indices":[44,55]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085271867392,"id_str":"663728085271867392","text":"RT @Kamelie12: \u8266\u968a\u306e\u30a2\u30a4\u30c9\u30eb\uff01\u795e\u901a\u3061\u3083\u3093\u3060\u3088\u30fc\uff01\n#\u8266\u3053\u308c\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 \n#\u8266\u3053\u308c\u7248\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0_20151109\n\u3084\u3063\u305f\u5f8c\u6065\u305a\u304b\u3057\u3055\u3067\u8f5f\u6c88\u3057\u305d\u3046 https:\/\/t.co\/psx5FzkSAy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876554298,"id_str":"2876554298","name":"\u9b31\u79cb\u96f2HerbstlicheWolke","screen_name":"DD_akigumo_DX","location":"\u30e2\u30eb\u30c9\u30fc\u30eb\u6cca\u5730","url":null,"description":"\u99c6\u9010\u8266\u79cb\u96f2\u306e\u3088\u3046\u306a\u4f55\u304b\u3002\u30cd\u30ac\u30c4\u30a4\u591a\u6570\u306b\u3064\u304d\u30d5\u30a9\u30ed\u30fc\u975e\u63a8\u5968\u3002\/\/ \u3064\u3044\u3077\u308d\u306f\u3053\u3061\u3089(http:\/\/twpf.jp\/DD_akigumo_DX)\u3002\/\/\u30a2\u30a4\u30b3\u30f3\u30fb\u30d8\u30c3\u30c0\u30fc\u306f\u81ea\u4f5c(\u539f\u6848\u306f\u7d79\u91dd\u30cd\u30eb\u30cd @kinu_bari \u3055\u3093)\u3002","protected":false,"verified":false,"followers_count":207,"friends_count":226,"listed_count":9,"favourites_count":1621,"statuses_count":44169,"created_at":"Sat Oct 25 09:10:07 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B94047","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623369251529756672\/nN7dT9Q2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623369251529756672\/nN7dT9Q2.png","profile_background_tile":true,"profile_link_color":"B94047","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660483678682791936\/-urXLdBO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660483678682791936\/-urXLdBO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876554298\/1430656728","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:21 +0000 2015","id":663720030983483392,"id_str":"663720030983483392","text":"\u8266\u968a\u306e\u30a2\u30a4\u30c9\u30eb\uff01\u795e\u901a\u3061\u3083\u3093\u3060\u3088\u30fc\uff01\n#\u8266\u3053\u308c\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0 \n#\u8266\u3053\u308c\u7248\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0_20151109\n\u3084\u3063\u305f\u5f8c\u6065\u305a\u304b\u3057\u3055\u3067\u8f5f\u6c88\u3057\u305d\u3046 https:\/\/t.co\/psx5FzkSAy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353428674,"id_str":"353428674","name":"\u30ab\u30e1\u30fc\u30ea\u30a8@2\u65e5\u76ee\u6771H-07b \u200f","screen_name":"Kamelie12","location":"\u5317\u306e\u65b9","url":"http:\/\/kamelie12.blog.fc2.com\/","description":"\u30cb\u30b3\u30cb\u30b3\u3084pixiv\u3067\u6d3b\u52d5\u3057\u3066\u3044\u308b\u751f\u7269\u3067\u3059\u3002\u540c\u4eba\u30b5\u30fc\u30af\u30eb\u300cL5EX\u300d\u3068\u3057\u3066\u3082\u6d3b\u52d5\u4e2d\u3002\u3042\u307e\u308a\u545f\u3044\u3066\u307e\u305b\u3093\u304c\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u3000http:\/\/t.co\/rqaFKUcO0O \u3000http:\/\/t.co\/gHosMqJ5tR \u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u30c0\u30a4\u30ec\u30af\u30c8\u3088\u308a\u3082Pixiv\u306e\u65b9\u304c\u6c17\u4ed8\u304d\u3084\u3059\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":2120,"friends_count":531,"listed_count":71,"favourites_count":0,"statuses_count":3944,"created_at":"Fri Aug 12 01:58:40 +0000 2011","utc_offset":32400,"time_zone":"Sapporo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/309832077\/aikon.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/309832077\/aikon.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523425185152524288\/BGKkBXbn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523425185152524288\/BGKkBXbn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353428674\/1403335606","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":304,"favorite_count":474,"entities":{"hashtags":[{"text":"\u8266\u3053\u308c\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[18,39]},{"text":"\u8266\u3053\u308c\u7248\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0_20151109","indices":[41,68]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720029083463681,"id_str":"663720029083463681","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","url":"https:\/\/t.co\/psx5FzkSAy","display_url":"pic.twitter.com\/psx5FzkSAy","expanded_url":"http:\/\/twitter.com\/Kamelie12\/status\/663720030983483392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":920,"h":1130,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":736,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720029083463681,"id_str":"663720029083463681","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","url":"https:\/\/t.co\/psx5FzkSAy","display_url":"pic.twitter.com\/psx5FzkSAy","expanded_url":"http:\/\/twitter.com\/Kamelie12\/status\/663720030983483392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":920,"h":1130,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":736,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8266\u3053\u308c\u7248\u6df1\u591c\u306e\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[33,54]},{"text":"\u8266\u3053\u308c\u7248\u771f\u5263\u304a\u7d75\u63cf\u304d60\u5206\u4e00\u672c\u52dd\u8ca0_20151109","indices":[56,83]}],"urls":[],"user_mentions":[{"screen_name":"Kamelie12","name":"\u30ab\u30e1\u30fc\u30ea\u30a8@2\u65e5\u76ee\u6771H-07b \u200f","id":353428674,"id_str":"353428674","indices":[3,13]}],"symbols":[],"media":[{"id":663720029083463681,"id_str":"663720029083463681","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","url":"https:\/\/t.co\/psx5FzkSAy","display_url":"pic.twitter.com\/psx5FzkSAy","expanded_url":"http:\/\/twitter.com\/Kamelie12\/status\/663720030983483392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":920,"h":1130,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":736,"resize":"fit"}},"source_status_id":663720030983483392,"source_status_id_str":"663720030983483392","source_user_id":353428674,"source_user_id_str":"353428674"}]},"extended_entities":{"media":[{"id":663720029083463681,"id_str":"663720029083463681","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB2ZPU8AE6SmM.jpg","url":"https:\/\/t.co\/psx5FzkSAy","display_url":"pic.twitter.com\/psx5FzkSAy","expanded_url":"http:\/\/twitter.com\/Kamelie12\/status\/663720030983483392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":417,"resize":"fit"},"large":{"w":920,"h":1130,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":736,"resize":"fit"}},"source_status_id":663720030983483392,"source_status_id_str":"663720030983483392","source_user_id":353428674,"source_user_id_str":"353428674"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081657"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085272014848,"id_str":"663728085272014848","text":"@NH_Infinity8_LT io credo proprio di si","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709892159623168,"in_reply_to_status_id_str":"663709892159623168","in_reply_to_user_id":3226105426,"in_reply_to_user_id_str":"3226105426","in_reply_to_screen_name":"NH_Infinity8_LT","user":{"id":2210511475,"id_str":"2210511475","name":"Eleonora Simo","screen_name":"Ele221D","location":"studentessa","url":null,"description":"Braccialetti Rossi \u2764 TWILIGHT SAGA\u2764 Sofia Viscardi\u2764 Antony di Francesco Michele Bravi\u2764 Alberico\u2764 Mbg\u2764 HUNGER GAMES\u2764 ONE DIRECTION\u2764","protected":false,"verified":false,"followers_count":329,"friends_count":1230,"listed_count":2,"favourites_count":773,"statuses_count":1803,"created_at":"Sat Nov 23 11:25:29 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0EBF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179605105\/CM0B1Sf0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179605105\/CM0B1Sf0.jpeg","profile_background_tile":true,"profile_link_color":"EB2A91","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661767330851069953\/TWseqy00_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661767330851069953\/TWseqy00_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210511475\/1446612602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NH_Infinity8_LT","name":"|\u2022Naiella\u2022|","id":3226105426,"id_str":"3226105426","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080081657"} +{"delete":{"status":{"id":663349423531921408,"id_str":"663349423531921408","user_id":3251380316,"user_id_str":"3251380316"},"timestamp_ms":"1447080082131"}} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085276213248,"id_str":"663728085276213248","text":"\u0628\u0627\u0644\u0635\u0648\u0631 \u0640 #\u063a\u0627\u0631\u0627\u062a \u062c\u0648\u064a\u0629 \u062a\u062f\u0645\u0631 \u0645\u0628\u0646\u0649 \u0643\u0627\u0643 \u0628\u0646\u0643 \u0648\u0633\u0637 #\u0627\u0644\u064a\u0645\u0646\n#\u0627\u062e\u0628\u0627\u0631\nhttps:\/\/t.co\/aftJW8oIE5 https:\/\/t.co\/xZsLvDP6vI","source":"\u003ca href=\"http:\/\/www.khabaragency.net\" rel=\"nofollow\"\u003ekhabaragency\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1077161496,"id_str":"1077161496","name":"\u0648\u0643\u0627\u0644\u0629 \u062e\u0628\u0631 \u0644\u0644\u0623\u0646\u0628\u0627\u0621","screen_name":"khabaragency","location":null,"url":"http:\/\/www.khabaragency.net\/","description":"\u0623\u0648\u0644 \u0648\u0643\u0627\u0644\u0629 \u0623\u0646\u0628\u0627\u0621 \u064a\u0645\u0646\u064a\u0629 \u062e\u0627\u0635\u0629 \u0645\u0633\u062a\u0642\u0644\u0629\n#\u0643\u0646_\u0639\u0644\u0649_\u062e\u0628\u0631","protected":false,"verified":false,"followers_count":21591,"friends_count":22,"listed_count":168,"favourites_count":1268,"statuses_count":51546,"created_at":"Thu Jan 10 17:21:56 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000082169726\/6fa2bcdffd7c565575072ffec065cce7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000082169726\/6fa2bcdffd7c565575072ffec065cce7.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581888385385508865\/-rkt3PdD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581888385385508865\/-rkt3PdD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1077161496\/1427568029","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u063a\u0627\u0631\u0627\u062a","indices":[9,15]},{"text":"\u0627\u0644\u064a\u0645\u0646","indices":[43,49]},{"text":"\u0627\u062e\u0628\u0627\u0631","indices":[50,56]}],"urls":[{"url":"https:\/\/t.co\/aftJW8oIE5","expanded_url":"http:\/\/khabaragency.net\/news41949.html","display_url":"khabaragency.net\/news41949.html","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663728084307320832,"id_str":"663728084307320832","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLRSWoAAaYBX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLRSWoAAaYBX.jpg","url":"https:\/\/t.co\/xZsLvDP6vI","display_url":"pic.twitter.com\/xZsLvDP6vI","expanded_url":"http:\/\/twitter.com\/khabaragency\/status\/663728085276213248\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728084307320832,"id_str":"663728084307320832","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLRSWoAAaYBX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLRSWoAAaYBX.jpg","url":"https:\/\/t.co\/xZsLvDP6vI","display_url":"pic.twitter.com\/xZsLvDP6vI","expanded_url":"http:\/\/twitter.com\/khabaragency\/status\/663728085276213248\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080081658"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085305454596,"id_str":"663728085305454596","text":"\ub538\uae30\uc124\ube59\u98df\u3079\u3066\u591c\u306f\ub0a8\uc0b0\ud130\uc6cc\u306b\u884c\u3063\u3066\u304d\u307e\u3057\u305f\ud83d\ude06\ud83d\udc95 https:\/\/t.co\/aGBJhQr1tI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3138545922,"id_str":"3138545922","name":"\u3048\u308a\u3058\u3085\u3002","screen_name":"erijoo415","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":251,"friends_count":181,"listed_count":8,"favourites_count":195,"statuses_count":11649,"created_at":"Sat Apr 04 07:03:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622944636730880000\/v4Sxgmyf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622944636730880000\/v4Sxgmyf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728017479364611,"id_str":"663728017479364611","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHYVU8AMkIvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHYVU8AMkIvf.jpg","url":"https:\/\/t.co\/aGBJhQr1tI","display_url":"pic.twitter.com\/aGBJhQr1tI","expanded_url":"http:\/\/twitter.com\/erijoo415\/status\/663728085305454596\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728017479364611,"id_str":"663728017479364611","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHYVU8AMkIvf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHYVU8AMkIvf.jpg","url":"https:\/\/t.co\/aGBJhQr1tI","display_url":"pic.twitter.com\/aGBJhQr1tI","expanded_url":"http:\/\/twitter.com\/erijoo415\/status\/663728085305454596\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663728041449775104,"id_str":"663728041449775104","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIxoUYAAgz47.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIxoUYAAgz47.jpg","url":"https:\/\/t.co\/aGBJhQr1tI","display_url":"pic.twitter.com\/aGBJhQr1tI","expanded_url":"http:\/\/twitter.com\/erijoo415\/status\/663728085305454596\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1066,"resize":"fit"},"large":{"w":1024,"h":1820,"resize":"fit"}}},{"id":663728064589754368,"id_str":"663728064589754368","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKH1UcAAxLE7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKH1UcAAxLE7.jpg","url":"https:\/\/t.co\/aGBJhQr1tI","display_url":"pic.twitter.com\/aGBJhQr1tI","expanded_url":"http:\/\/twitter.com\/erijoo415\/status\/663728085305454596\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080081665"} +{"created_at":"Mon Nov 09 14:41:21 +0000 2015","id":663728085292871680,"id_str":"663728085292871680","text":"@She_Devil643 @peac4love @RereRhman @Norianite @ENASSIA @rosek228 @Dana__Doe @aprilrain612 @LOYALFAN1 @Sylv33 https:\/\/t.co\/7VVZ56sgP3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663460239111544833,"in_reply_to_status_id_str":"663460239111544833","in_reply_to_user_id":2387991079,"in_reply_to_user_id_str":"2387991079","in_reply_to_screen_name":"She_Devil643","user":{"id":2463350532,"id_str":"2463350532","name":"jaime","screen_name":"DhpJaime","location":"Houston, Texas","url":null,"description":"Believing in yourself is the first secret to success. You are so much stronger than you think.","protected":false,"verified":false,"followers_count":5137,"friends_count":4743,"listed_count":30,"favourites_count":20723,"statuses_count":12639,"created_at":"Fri Apr 25 15:13:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574591546227478531\/TLV7wcPa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574591546227478531\/TLV7wcPa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463350532\/1398439750","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"She_Devil643","name":"Klaudia","id":2387991079,"id_str":"2387991079","indices":[0,13]},{"screen_name":"peac4love","name":"Ceni","id":3357277319,"id_str":"3357277319","indices":[14,24]},{"screen_name":"RereRhman","name":"Rhman","id":3066794588,"id_str":"3066794588","indices":[25,35]},{"screen_name":"Norianite","name":"moon","id":3981536303,"id_str":"3981536303","indices":[36,46]},{"screen_name":"ENASSIA","name":"nisan","id":4012884497,"id_str":"4012884497","indices":[47,55]},{"screen_name":"rosek228","name":"rose","id":1969415618,"id_str":"1969415618","indices":[56,65]},{"screen_name":"Dana__Doe","name":"DANA","id":3305584565,"id_str":"3305584565","indices":[66,76]},{"screen_name":"aprilrain612","name":"October Dawn","id":3019052096,"id_str":"3019052096","indices":[77,90]},{"screen_name":"LOYALFAN1","name":"DONNA CARRIERE","id":70889396,"id_str":"70889396","indices":[91,101]},{"screen_name":"Sylv33","name":"TEURNIER-Sylv","id":253120200,"id_str":"253120200","indices":[102,109]}],"symbols":[],"media":[{"id":663728077852151808,"id_str":"663728077852151808","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK5PUkAAnk7R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK5PUkAAnk7R.jpg","url":"https:\/\/t.co\/7VVZ56sgP3","display_url":"pic.twitter.com\/7VVZ56sgP3","expanded_url":"http:\/\/twitter.com\/DhpJaime\/status\/663728085292871680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728077852151808,"id_str":"663728077852151808","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK5PUkAAnk7R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK5PUkAAnk7R.jpg","url":"https:\/\/t.co\/7VVZ56sgP3","display_url":"pic.twitter.com\/7VVZ56sgP3","expanded_url":"http:\/\/twitter.com\/DhpJaime\/status\/663728085292871680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080081662"} +{"delete":{"status":{"id":634244665722535937,"id_str":"634244665722535937","user_id":2476834045,"user_id_str":"2476834045"},"timestamp_ms":"1447080082424"}} +{"delete":{"status":{"id":663693251585646592,"id_str":"663693251585646592","user_id":305206056,"user_id_str":"305206056"},"timestamp_ms":"1447080082645"}} +{"delete":{"status":{"id":634274751473541120,"id_str":"634274751473541120","user_id":871907083,"user_id_str":"871907083"},"timestamp_ms":"1447080082653"}} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089474670592,"id_str":"663728089474670592","text":"RT @JackJackJohnson: U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":937587200,"id_str":"937587200","name":"i miss jacob","screen_name":"__JustMaria","location":"Spain \u2708 5979 km to happiness","url":"https:\/\/twitter.com\/LoMas_40\/status\/571036005085663232?s=08","description":"Shawn, Johnson, Jacob\/12|| Jacob's the reason why the earth spins and the stars hang in the sky|| hugged Shawn 270215||","protected":false,"verified":false,"followers_count":5193,"friends_count":1298,"listed_count":24,"favourites_count":35834,"statuses_count":89509,"created_at":"Fri Nov 09 19:20:38 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569141059372843009\/uQhOkF-M.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569141059372843009\/uQhOkF-M.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645247923232444417\/SiAualf0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645247923232444417\/SiAualf0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/937587200\/1444839534","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:46 +0000 2015","id":663727433779056641,"id_str":"663727433779056641","text":"U.S. DATES ARE BEING RELEASED TOMORROW! CANT WAIT TO HIT SOME NEW CITIES AND SOME OF OUR FAVES WE'VE BEEN TO! LIT LIT LIT!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588962,"friends_count":19062,"listed_count":9491,"favourites_count":8856,"statuses_count":13965,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1272,"favorite_count":2291,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082659"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499873280,"id_str":"663728089499873280","text":"RT @e7______sas: -\n\n\u0627\u0644\u0623\u0628 \u0631\u062c\u064f\u0644 \u0645\u062e\u062a\u0644\u0641 \u0641\u064a \u062d\u064a\u0627\u0629 \u0643\u0644 \u0641\u062a\u0627\u0629 \u0648\u0644\u0648 \u0633\u0623\u0644\u062a \u0643\u0644 \u0641\u062a\u0627\u0629 \u0645\u0627\u0630\u0627 \u062a\u062a\u0645\u0646\u0649 \u061f \u0644\u0642\u0627\u0644\u062a : \u0631\u062c\u064f\u0644\u0627\u064b \u0643\u0623\u0628\u064a !! .. http:\/\/t.co\/BZA1XWzwzj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480829797,"id_str":"480829797","name":"\u0646\u0648\u0631\u0647\u0640 \u0628\u0646\u062a \u064a\u0648\u0633\u0641","screen_name":"NY_1991","location":null,"url":null,"description":"\u0648\u0634\u0644\u0648\u0646 \u0645\u0627\u0627\u062a\u062f\u0644\u0639 \u0648\u0627\u0646\u0627 \u0628\u0646\u062a \u0631\u062c\u0627\u0644 \u0645\u0646 \u0645\u0648\u0644\u062f\u064a \u064a\u0642\u0648\u0644\u064a \u064a\u0640 \u0627\u0644\u0627\u0645\u064a\u0631\u0629","protected":false,"verified":false,"followers_count":1186,"friends_count":1977,"listed_count":1,"favourites_count":407,"statuses_count":4888,"created_at":"Wed Feb 01 23:36:22 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382689182040064\/7HZ6MlQC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382689182040064\/7HZ6MlQC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480829797\/1426485541","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Aug 27 02:36:09 +0000 2015","id":636728878942175233,"id_str":"636728878942175233","text":"-\n\n\u0627\u0644\u0623\u0628 \u0631\u062c\u064f\u0644 \u0645\u062e\u062a\u0644\u0641 \u0641\u064a \u062d\u064a\u0627\u0629 \u0643\u0644 \u0641\u062a\u0627\u0629 \u0648\u0644\u0648 \u0633\u0623\u0644\u062a \u0643\u0644 \u0641\u062a\u0627\u0629 \u0645\u0627\u0630\u0627 \u062a\u062a\u0645\u0646\u0649 \u061f \u0644\u0642\u0627\u0644\u062a : \u0631\u062c\u064f\u0644\u0627\u064b \u0643\u0623\u0628\u064a !! .. http:\/\/t.co\/BZA1XWzwzj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319267836,"id_str":"3319267836","name":"\u06dd\u275d \u0631\u0642\u0629 \u0627\u062d\u0633\u0627\u0633 \u275d\u06dd \u0650","screen_name":"e7______sas","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":null,"description":"\u200f\u200f\u0644\u0645\u0634\u0627\u0639\u0631\u064a \u0627\u062d\u0633\u0633\u0627\u0633 \u0648\u0631\u0642\u0647 \u0635\u0639\u0628 \u064a\u0641\u0647\u0645\u0648\u0646\u0647.. \u0645\u0627\u064a\u0641\u0647\u0645\u0647 \u063a\u064a\u0631 \u0627\u0644\u0644\u064a \u0639\u0627\u0631\u0641\u0646 \u0637\u0628\u0639\u064a \u0648\u0634\u0639\u0648\u0631\u0647 ..","protected":false,"verified":false,"followers_count":13247,"friends_count":13707,"listed_count":3,"favourites_count":11,"statuses_count":653,"created_at":"Tue Aug 18 22:31:57 +0000 2015","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636798816826449920\/EL2gdlsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636798816826449920\/EL2gdlsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319267836\/1442407769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":378,"favorite_count":78,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":636728875339247616,"id_str":"636728875339247616","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","url":"http:\/\/t.co\/BZA1XWzwzj","display_url":"pic.twitter.com\/BZA1XWzwzj","expanded_url":"http:\/\/twitter.com\/e7______sas\/status\/636728878942175233\/photo\/1","type":"photo","sizes":{"large":{"w":324,"h":422,"resize":"fit"},"medium":{"w":324,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":324,"h":422,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":636728875339247616,"id_str":"636728875339247616","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","url":"http:\/\/t.co\/BZA1XWzwzj","display_url":"pic.twitter.com\/BZA1XWzwzj","expanded_url":"http:\/\/twitter.com\/e7______sas\/status\/636728878942175233\/photo\/1","type":"photo","sizes":{"large":{"w":324,"h":422,"resize":"fit"},"medium":{"w":324,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":324,"h":422,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"e7______sas","name":"\u06dd\u275d \u0631\u0642\u0629 \u0627\u062d\u0633\u0627\u0633 \u275d\u06dd \u0650","id":3319267836,"id_str":"3319267836","indices":[3,15]}],"symbols":[],"media":[{"id":636728875339247616,"id_str":"636728875339247616","indices":[109,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","url":"http:\/\/t.co\/BZA1XWzwzj","display_url":"pic.twitter.com\/BZA1XWzwzj","expanded_url":"http:\/\/twitter.com\/e7______sas\/status\/636728878942175233\/photo\/1","type":"photo","sizes":{"large":{"w":324,"h":422,"resize":"fit"},"medium":{"w":324,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":324,"h":422,"resize":"fit"}},"source_status_id":636728878942175233,"source_status_id_str":"636728878942175233","source_user_id":3319267836,"source_user_id_str":"3319267836"}]},"extended_entities":{"media":[{"id":636728875339247616,"id_str":"636728875339247616","indices":[109,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CNYdieDUcAAPY9G.jpg","url":"http:\/\/t.co\/BZA1XWzwzj","display_url":"pic.twitter.com\/BZA1XWzwzj","expanded_url":"http:\/\/twitter.com\/e7______sas\/status\/636728878942175233\/photo\/1","type":"photo","sizes":{"large":{"w":324,"h":422,"resize":"fit"},"medium":{"w":324,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":324,"h":422,"resize":"fit"}},"source_status_id":636728878942175233,"source_status_id_str":"636728878942175233","source_user_id":3319267836,"source_user_id_str":"3319267836"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089466322944,"id_str":"663728089466322944","text":"RT @Elfaransi: \u0627\u0644\u0634\u063a\u0627\u0644\u0647 \u0627\u0634\u062a\u0647\u062a \u062a\u0636\u0628\u064a\u0637 \u0641 \u063a\u064a\u0627\u0628 \u0635\u0627\u062d\u0628\u0629 \u0627\u0644\u0628\u064a\u062a..\n\nhttp:\/\/t.co\/CuRJK0PKKk\n\n#\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633 #\u0646\u064a\u0643 #\u0633\u0643\u0633 #\u0631\u064a\u062a\u0648\u064a\u062a_\u0627\u0648_\u062d\u0638\u0631 http:\/\/t.co\/nLdpyIR3wE","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225365712,"id_str":"3225365712","name":"Sam","screen_name":"brazzers_slave","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":44,"listed_count":0,"favourites_count":191,"statuses_count":204,"created_at":"Sun May 24 16:07:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602508821995487232\/aqm29ror_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602508821995487232\/aqm29ror_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225365712\/1432484270","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 15 15:03:54 +0000 2015","id":654674063328067585,"id_str":"654674063328067585","text":"\u0627\u0644\u0634\u063a\u0627\u0644\u0647 \u0627\u0634\u062a\u0647\u062a \u062a\u0636\u0628\u064a\u0637 \u0641 \u063a\u064a\u0627\u0628 \u0635\u0627\u062d\u0628\u0629 \u0627\u0644\u0628\u064a\u062a..\n\nhttp:\/\/t.co\/CuRJK0PKKk\n\n#\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633 #\u0646\u064a\u0643 #\u0633\u0643\u0633 #\u0631\u064a\u062a\u0648\u064a\u062a_\u0627\u0648_\u062d\u0638\u0631 http:\/\/t.co\/nLdpyIR3wE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":730641962,"id_str":"730641962","name":"FRENCH \u0627\u064e\u0644\u0641\u064e\u0631\u064e\u0646\u0652\u0633\u0650\u064a","screen_name":"Elfaransi","location":"M PRIVATE WORLD ","url":null,"description":"Kik : Elfaransi \/\/\/\/\/\/\/\/\/\/\/\/ BBM: 57024E3A \/\/\/\/\/\/\/\/\/\/\/\/ Pervert M 35 YO. Interested to Females Next Door +25","protected":false,"verified":false,"followers_count":76046,"friends_count":0,"listed_count":327,"favourites_count":1367,"statuses_count":14147,"created_at":"Wed Aug 01 12:59:39 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389784077922304\/_8V5mCDC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389784077922304\/_8V5mCDC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/730641962\/1442629343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":59,"entities":{"hashtags":[{"text":"\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633","indices":[66,76]},{"text":"\u0646\u064a\u0643","indices":[77,81]},{"text":"\u0633\u0643\u0633","indices":[82,86]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a_\u0627\u0648_\u062d\u0638\u0631","indices":[87,101]}],"urls":[{"url":"http:\/\/t.co\/CuRJK0PKKk","expanded_url":"http:\/\/soo.gd\/Elfaransi-ggDO","display_url":"soo.gd\/Elfaransi-ggDO","indices":[42,64]}],"user_mentions":[],"symbols":[],"media":[{"id":654674049784655872,"id_str":"654674049784655872","indices":[102,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":654674049784655872,"id_str":"654674049784655872","indices":[102,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":654674049788874752,"id_str":"654674049788874752","indices":[102,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGVVEAA_M3f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGVVEAA_M3f.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":654674049813999620,"id_str":"654674049813999620","indices":[102,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGbUcAQkvcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGbUcAQkvcm.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}},{"id":654674050308943874,"id_str":"654674050308943874","indices":[102,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelIRUsAI2rAv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelIRUsAI2rAv.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633","indices":[81,91]},{"text":"\u0646\u064a\u0643","indices":[92,96]},{"text":"\u0633\u0643\u0633","indices":[97,101]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a_\u0627\u0648_\u062d\u0638\u0631","indices":[102,116]}],"urls":[{"url":"http:\/\/t.co\/CuRJK0PKKk","expanded_url":"http:\/\/soo.gd\/Elfaransi-ggDO","display_url":"soo.gd\/Elfaransi-ggDO","indices":[57,79]}],"user_mentions":[{"screen_name":"Elfaransi","name":"FRENCH \u0627\u064e\u0644\u0641\u064e\u0631\u064e\u0646\u0652\u0633\u0650\u064a","id":730641962,"id_str":"730641962","indices":[3,13]}],"symbols":[],"media":[{"id":654674049784655872,"id_str":"654674049784655872","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":654674063328067585,"source_status_id_str":"654674063328067585","source_user_id":730641962,"source_user_id_str":"730641962"}]},"extended_entities":{"media":[{"id":654674049784655872,"id_str":"654674049784655872","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGUUsAAqxP6.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":654674063328067585,"source_status_id_str":"654674063328067585","source_user_id":730641962,"source_user_id_str":"730641962"},{"id":654674049788874752,"id_str":"654674049788874752","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGVVEAA_M3f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGVVEAA_M3f.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":654674063328067585,"source_status_id_str":"654674063328067585","source_user_id":730641962,"source_user_id_str":"730641962"},{"id":654674049813999620,"id_str":"654674049813999620","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelGbUcAQkvcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelGbUcAQkvcm.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":654674063328067585,"source_status_id_str":"654674063328067585","source_user_id":730641962,"source_user_id_str":"730641962"},{"id":654674050308943874,"id_str":"654674050308943874","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CRXelIRUsAI2rAv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRXelIRUsAI2rAv.jpg","url":"http:\/\/t.co\/nLdpyIR3wE","display_url":"pic.twitter.com\/nLdpyIR3wE","expanded_url":"http:\/\/twitter.com\/Elfaransi\/status\/654674063328067585\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":654674063328067585,"source_status_id_str":"654674063328067585","source_user_id":730641962,"source_user_id_str":"730641962"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080082657"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499848704,"id_str":"663728089499848704","text":"\u0412\u0447\u0435\u0440\u0430 \u0431\u0430\u043b\u043b\u044b \u043d\u0430 \"\u0431\u0430\u043a\u0441\u044b\" \u043c\u0435\u043d\u044f\u043b.\u0410 \u043a\u043e\u0433\u0434\u0430 \u0431\u0443\u0434\u0443\u0442 \u0432\u044b\u0434\u0430\u0432\u0430\u0442\u044c \u0434\u0435\u043d\u044c\u0433\u0438, \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u043d\u044b\u0435 \u043e\u0442 \u044d\u043a\u043e\u043d\u043e\u043c\u0438\u0438 \u044d\u043d\u0435\u0440\u0433\u0438\u0438 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440976785,"id_str":"440976785","name":"\u0410\u0434\u0430\u043c \u0423\u0441\u0430\u0442\u044e\u043a","screen_name":"UsatyukAdam","location":"\u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a","url":"https:\/\/twitter.com\/usatyukadam","description":"\u0418\u043d\u0442\u0435\u043b\u043b\u0438\u0433\u0435\u043d\u0442\u043e\u043c \u043d\u0435\u043b\u044c\u0437\u044f \u043f\u0440\u0438\u0442\u0432\u043e\u0440\u0438\u0442\u044c\u0441\u044f","protected":false,"verified":false,"followers_count":9583,"friends_count":1246,"listed_count":510,"favourites_count":93,"statuses_count":20694,"created_at":"Mon Dec 19 16:22:18 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719649676\/6__9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719649676\/6__9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440976785\/1436809659","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089504063488,"id_str":"663728089504063488","text":"RT @SportsCenter: Crazy Stat of Day: Andre Drummond has 122 Pts and 122 Reb (20.3 PPG, 20.3 RPG) through 6 games. https:\/\/t.co\/lkC7h0v5nZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99867872,"id_str":"99867872","name":"Grant Trill","screen_name":"VelB_Lo","location":"Buffalo, NY","url":null,"description":"I been around NY....My son is LIT...The End #ProudPoppa #TrustGod #BillsMafia RIP Amir","protected":false,"verified":false,"followers_count":346,"friends_count":326,"listed_count":7,"favourites_count":2646,"statuses_count":22047,"created_at":"Mon Dec 28 05:11:02 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559802080\/DDD.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559802080\/DDD.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659762499974205440\/__EsuSYo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659762499974205440\/__EsuSYo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99867872\/1443216392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:05 +0000 2015","id":663715181499916288,"id_str":"663715181499916288","text":"Crazy Stat of Day: Andre Drummond has 122 Pts and 122 Reb (20.3 PPG, 20.3 RPG) through 6 games. https:\/\/t.co\/lkC7h0v5nZ","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26257166,"id_str":"26257166","name":"SportsCenter","screen_name":"SportsCenter","location":"Bristol, CT","url":null,"description":"All things sports. Nominate top plays using #SCtop10. *If you tweet or otherwise send us content, you consent to ESPN using and showcasing it in any media.*","protected":false,"verified":true,"followers_count":21854762,"friends_count":1602,"listed_count":40181,"favourites_count":547,"statuses_count":68731,"created_at":"Tue Mar 24 15:28:02 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480904536454750208\/mD9fyg2r.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641252681017856001\/p6PL2KFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26257166\/1441721587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3947,"favorite_count":4072,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SportsCenter","name":"SportsCenter","id":26257166,"id_str":"26257166","indices":[3,16]}],"symbols":[],"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715181499916288,"source_status_id_str":"663715181499916288","source_user_id":26257166,"source_user_id_str":"26257166"}]},"extended_entities":{"media":[{"id":663715181160243200,"id_str":"663715181160243200","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9cNUXIAAe6pX.jpg","url":"https:\/\/t.co\/lkC7h0v5nZ","display_url":"pic.twitter.com\/lkC7h0v5nZ","expanded_url":"http:\/\/twitter.com\/SportsCenter\/status\/663715181499916288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1536,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663715181499916288,"source_status_id_str":"663715181499916288","source_user_id":26257166,"source_user_id_str":"26257166"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082666"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487249408,"id_str":"663728089487249408","text":"RT: WADA \u0445\u043e\u0447\u0435\u0442 \u043f\u043e\u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e \u043e\u0442\u0441\u0442\u0440\u0430\u043d\u0438\u0442\u044c 5 \u0430\u0442\u043b\u0435\u0442\u043e\u0432 \u0438 5 \u0442\u0440\u0435\u043d\u0435\u0440\u043e\u0432 \u0420\u0424 \u0437\u0430 \u0434\u043e\u043f\u0438\u043d\u0433 https:\/\/t.co\/v2XOAYP5D9","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3263219885,"id_str":"3263219885","name":"((..\u0427\u0435\u0431\u0443\u0440E\u0448\u043aA..))","screen_name":"ZloiChebureshka","location":"\u0414\u041d\u0420.\u0414\u043e\u043d\u0435\u0446\u043a","url":null,"description":"\u043f\u0440\u043e\u0441\u0442\u043e \u042f","protected":false,"verified":false,"followers_count":2142,"friends_count":1771,"listed_count":16,"favourites_count":5,"statuses_count":24741,"created_at":"Sat May 16 19:46:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599670484351864833\/mNli4e0u.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599670484351864833\/mNli4e0u.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599664528025071616\/waJeZCwg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599664528025071616\/waJeZCwg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3263219885\/1431807772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/v2XOAYP5D9","expanded_url":"http:\/\/goo.gl\/fb\/k3Ir2Z","display_url":"goo.gl\/fb\/k3Ir2Z","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089478922240,"id_str":"663728089478922240","text":"@BrendaBraga12 vou a\u00ed comer \ud83d\ude0c\ud83d\ude1a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727505354919936,"in_reply_to_status_id_str":"663727505354919936","in_reply_to_user_id":1941789450,"in_reply_to_user_id_str":"1941789450","in_reply_to_screen_name":"BrendaBraga12","user":{"id":2290150991,"id_str":"2290150991","name":"Pigmeu \u2652\ufe0f","screen_name":"pqdudaa_","location":"Cria do Alto! ","url":null,"description":"Amar a Deus sobre todas as coisas.. \u2764\ufe0f Davi \u2764\ufe0f Alice \u2764\ufe0f Isaque \u2764\ufe0f. 16\/07\/2015 \u2764\ufe0f","protected":false,"verified":false,"followers_count":565,"friends_count":560,"listed_count":2,"favourites_count":2394,"statuses_count":26090,"created_at":"Sat Jan 18 18:29:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663590662093332480\/vm42hUax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663590662093332480\/vm42hUax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2290150991\/1445974835","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BrendaBraga12","name":"Neur\u00f3tica","id":1941789450,"id_str":"1941789450","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080082660"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499836417,"id_str":"663728089499836417","text":"RT @MagdyMm95: _\u0647\u0649 \u0627\u0644\u0633\u0627\u0639\u0647 \u0643\u0627\u0645 \u0627\u0645\u0639\u0644\u0645 \u062f\u0644\u0648\u0642\u062a\u0649 \u0641\u0649 \u0627\u064a\u062f\u0643\n_\u0645\u0639\u0631\u0641\u0634 \u0648\u0627\u0644\u0644\u0647 \u0627\u0635\u0644\u0647\u0627 \u0648\u0627\u0642\u0641\u0647\n_\u0637\u064a\u0628 \u0648\u0644\u0627\u0628\u0633 \u0627\u0645\u0647\u0627 \u0644\u064a\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636555293,"id_str":"636555293","name":"KarimanMohmedElTohfa","screen_name":"Karimaneltohfa","location":"Maadi","url":null,"description":"#VCC #Ahly #Barca #Virgo\u264d\ufe0f #Blue #Black #Red #Photoghraphy #IGCSE_Student #Maroon5 #HassanElRaddad #BoyBand #HishamGamal #MohamaedGamal FamilyName:El-Tohfa.","protected":false,"verified":false,"followers_count":6672,"friends_count":6291,"listed_count":3,"favourites_count":338,"statuses_count":9485,"created_at":"Mon Jul 16 00:02:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663088810511716352\/P3nZTDdO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663088810511716352\/P3nZTDdO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636555293\/1440279131","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 13 05:36:54 +0000 2015","id":653806597320351744,"id_str":"653806597320351744","text":"_\u0647\u0649 \u0627\u0644\u0633\u0627\u0639\u0647 \u0643\u0627\u0645 \u0627\u0645\u0639\u0644\u0645 \u062f\u0644\u0648\u0642\u062a\u0649 \u0641\u0649 \u0627\u064a\u062f\u0643\n_\u0645\u0639\u0631\u0641\u0634 \u0648\u0627\u0644\u0644\u0647 \u0627\u0635\u0644\u0647\u0627 \u0648\u0627\u0642\u0641\u0647\n_\u0637\u064a\u0628 \u0648\u0644\u0627\u0628\u0633 \u0627\u0645\u0647\u0627 \u0644\u064a\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3145972679,"id_str":"3145972679","name":"\u0627\u0644\u0647\u0646\u062f\u0633\u062c\u0649 \u30c4","screen_name":"MagdyMm95","location":"\u0628\u0644\u0627\u062f \u0627\u0644\u0638\u0644\u0645 \u0627\u0648\u0637\u0627\u0646\u0649","url":null,"description":"\u266523 years old\u2665Muslim\u2665Civil Engineer\u2665Ahly\u2665Barca\u2665Cancer\u2665Check My Fav.\u266574+22\n\u2665\u0635\u0644\u0649 \u0639\u0644\u0649 \u0627\u0644\u0646\u0628\u0649\u2665\u064a\u0633\u0642\u0637 \u0643\u0644 \u0645\u0646 \u062e\u0627\u0646\u2665\u062d\u0644\u0645 \u0627\u0644\u062e\u0644\u0627\u0641\u0647\u2665","protected":false,"verified":false,"followers_count":1532,"friends_count":631,"listed_count":2,"favourites_count":170,"statuses_count":14638,"created_at":"Wed Apr 08 00:36:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659412895344799744\/P-lPntHA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659412895344799744\/P-lPntHA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3145972679\/1446627728","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MagdyMm95","name":"\u0627\u0644\u0647\u0646\u062f\u0633\u062c\u0649 \u30c4","id":3145972679,"id_str":"3145972679","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495662592,"id_str":"663728089495662592","text":"@essveecee My coworkers are just super annoying. They complain about EVERYTHING","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726190029598720,"in_reply_to_status_id_str":"663726190029598720","in_reply_to_user_id":3230341,"in_reply_to_user_id_str":"3230341","in_reply_to_screen_name":"essveecee","user":{"id":216588227,"id_str":"216588227","name":"Haley M. Rhine","screen_name":"HereIsMySpout","location":"Louisville, KY","url":"http:\/\/twitter.com\/DerbyCityNat","description":"Wanderluster. Rum + Ginger drinker. Dimples in my cheeks. Lover of nerdy things. Avid bruncher. Fake fancy. & I'm a blogger.","protected":false,"verified":false,"followers_count":2507,"friends_count":536,"listed_count":108,"favourites_count":1358,"statuses_count":179613,"created_at":"Wed Nov 17 04:51:12 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"064359","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656501446909784064\/jftXB7m7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656501446909784064\/jftXB7m7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/216588227\/1379128551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"essveecee","name":"Stephen Charles","id":3230341,"id_str":"3230341","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487310848,"id_str":"663728089487310848","text":"RT @MatiDiSchiavoOk: Le diste vuelta a mi universo","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466096034,"id_str":"1466096034","name":"Jhonatan V\u00e9lez.","screen_name":"JhonatanVelez_3","location":null,"url":"https:\/\/www.facebook.com\/jhonatanalexis.velezrojas?ref=tn_tnmn","description":"AnthonyRomeoSantos. Laura villa.","protected":false,"verified":false,"followers_count":4519,"friends_count":2319,"listed_count":39,"favourites_count":32912,"statuses_count":39043,"created_at":"Wed May 29 01:36:28 +0000 2013","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613101048031510528\/WDefR6X_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613101048031510528\/WDefR6X_.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663167436980486144\/3wOqO04I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663167436980486144\/3wOqO04I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466096034\/1435532269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:35:01 +0000 2015","id":663560396217974784,"id_str":"663560396217974784","text":"Le diste vuelta a mi universo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1711568046,"id_str":"1711568046","name":"\u2020Matias Di Schiavo\u2122","screen_name":"MatiDiSchiavoOk","location":"Buenos Aires, Argentina","url":"https:\/\/www.facebook.com\/Irionero4Life","description":"\u2b50 [River Plate\u26bd] [Rap~Xxl Irione] [Escorpio\u264f] [#15] [RR.PP de Abadia Capital\u2665] [Religi\u00f3n Irionera] \u2b50","protected":false,"verified":false,"followers_count":9693,"friends_count":8254,"listed_count":13,"favourites_count":13577,"statuses_count":13456,"created_at":"Fri Aug 30 02:45:25 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4040FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663542589082238976\/nJHszlhO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663542589082238976\/nJHszlhO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1711568046\/1444177345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"018f1cde6bad9747","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/018f1cde6bad9747.json","place_type":"city","name":"Ciudad Aut\u00f3noma de Buenos Aires","full_name":"Ciudad Aut\u00f3noma de Buenos Aires, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-58.531792,-34.674453],[-58.531792,-34.534177],[-58.353494,-34.534177],[-58.353494,-34.674453]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MatiDiSchiavoOk","name":"\u2020Matias Di Schiavo\u2122","id":1711568046,"id_str":"1711568046","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089466294272,"id_str":"663728089466294272","text":"Me aferre a la idea que tu eras el amor de vida..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1699861214,"id_str":"1699861214","name":"Valeria\u2728","screen_name":"ValeriaBertone","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":349,"friends_count":310,"listed_count":0,"favourites_count":2355,"statuses_count":7567,"created_at":"Sun Aug 25 18:31:51 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B3BEE0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662614226712793088\/iMyvuYKN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662614226712793088\/iMyvuYKN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1699861214\/1436805271","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080082657"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089482944512,"id_str":"663728089482944512","text":"RT @kemall_ID: Dari awal sampe akhir, gak berenti nyengir gue anjay :D Break dulu yok #miniBreakVideo https:\/\/t.co\/WPHWIpOPft","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter Web Services\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606905402,"id_str":"606905402","name":"Mitafauzia","screen_name":"vauzheeyamyta","location":null,"url":null,"description":"God,Parents,Fam,Friends,Love . Brain,Beauty,Behavior...no comment !","protected":false,"verified":false,"followers_count":208,"friends_count":231,"listed_count":0,"favourites_count":9,"statuses_count":1023,"created_at":"Wed Jun 13 05:08:18 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507062915375968258\/0GrFRxgc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507062915375968258\/0GrFRxgc.jpeg","profile_background_tile":true,"profile_link_color":"5E412F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599570321394442241\/_OdRI65q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599570321394442241\/_OdRI65q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606905402\/1409728042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:29:39 +0000 2015","id":662819171084824576,"id_str":"662819171084824576","text":"Dari awal sampe akhir, gak berenti nyengir gue anjay :D Break dulu yok #miniBreakVideo https:\/\/t.co\/WPHWIpOPft","source":"\u003ca href=\"http:\/\/www.govirality.com\" rel=\"nofollow\"\u003eGetvirals\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1441177778,"id_str":"1441177778","name":"\u03ba\u03b5\u028d\u03b1l","screen_name":"kemall_ID","location":"Surakarta","url":null,"description":"Tak Kemal Maka Tak Sayang | Kalo Udah Nge-Stalk jangan lupa pencet tombol FOLLOW ! | Followback ? just mention me \u263a","protected":false,"verified":false,"followers_count":58917,"friends_count":10973,"listed_count":2,"favourites_count":0,"statuses_count":17988,"created_at":"Sun May 19 13:18:52 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613726549456646144\/9ZSZ-Lx__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613726549456646144\/9ZSZ-Lx__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1441177778\/1426495851","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":184,"favorite_count":11,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[71,86]}],"urls":[{"url":"https:\/\/t.co\/WPHWIpOPft","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"miniBreakVideo","indices":[86,101]}],"urls":[{"url":"https:\/\/t.co\/WPHWIpOPft","expanded_url":"http:\/\/bit.ly\/1MW3EAg","display_url":"bit.ly\/1MW3EAg","indices":[102,125]}],"user_mentions":[{"screen_name":"kemall_ID","name":"\u03ba\u03b5\u028d\u03b1l","id":1441177778,"id_str":"1441177778","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080082661"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470476288,"id_str":"663728089470476288","text":"\u00bfQui\u00e9nes est\u00e1is? https:\/\/t.co\/Fa3umhVOah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3066099803,"id_str":"3066099803","name":"Sam.","screen_name":"mxssedupkid","location":"\u3010#HUniversityRol\u3011\u2014 Room 202.","url":"http:\/\/tl.gd\/n_1snplsj","description":"Diecinueve.\u300c\uff33\uff48\uff41\uff4d\uff45\uff4c\uff45\uff53\uff53.\u300d\u275dThey sell their time, they sell their drugs, they sell their body\u275e. Fil\u00f3sofo, m\u00fasico y desecho social.","protected":false,"verified":false,"followers_count":195,"friends_count":70,"listed_count":2,"favourites_count":107,"statuses_count":521,"created_at":"Mon Mar 02 21:57:04 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663116638007468032\/IJrEY99o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663116638007468032\/IJrEY99o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3066099803\/1446934301","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727430943772672,"quoted_status_id_str":"663727430943772672","quoted_status":{"created_at":"Mon Nov 09 14:38:45 +0000 2015","id":663727430943772672,"id_str":"663727430943772672","text":"Nos falta alguien en la caba\u00f1a, y te pregunto. https:\/\/t.co\/eaqghLXMUw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3947338696,"id_str":"3947338696","name":"Stephen Le Brun.","screen_name":"StxphenLeBrun","location":"Harvard, IL","url":"http:\/\/harvarduniversityrol.weebly.com","description":"XIX.\nFranc\u00e9s. Estudio medicina y juego en el equipo de Soccer.\n\u00abDelta Psi Beta.\u00bb\n\u300eAdria.\u300f\n\u007bGatimigos.\u007d\n\u3016Peyton\u3017\n#HUniversityRol","protected":false,"verified":false,"followers_count":118,"friends_count":88,"listed_count":2,"favourites_count":150,"statuses_count":1605,"created_at":"Tue Oct 13 14:42:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658701546151112705\/V58PSf8l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658701546151112705\/V58PSf8l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3947338696\/1445491302","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727180980076544,"quoted_status_id_str":"663727180980076544","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eaqghLXMUw","expanded_url":"https:\/\/twitter.com\/mxssedupkid\/status\/663727180980076544","display_url":"twitter.com\/mxssedupkid\/st\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Fa3umhVOah","expanded_url":"https:\/\/twitter.com\/stxphenlebrun\/status\/663727430943772672","display_url":"twitter.com\/stxphenlebrun\/\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470513153,"id_str":"663728089470513153","text":"@Sefhi_RG eh tu te bajas pa echarte un parde y charlamos? \ud83d\ude18\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726903338119168,"in_reply_to_status_id_str":"663726903338119168","in_reply_to_user_id":329914273,"in_reply_to_user_id_str":"329914273","in_reply_to_screen_name":"Sefhi_RG","user":{"id":3023170071,"id_str":"3023170071","name":"~TRVP QUEEN~","screen_name":"dontworrypapi","location":null,"url":null,"description":"complicada y aturdida","protected":false,"verified":false,"followers_count":255,"friends_count":149,"listed_count":4,"favourites_count":8185,"statuses_count":29307,"created_at":"Sat Feb 07 13:34:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656230007220654087\/NpUfpH9m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656230007220654087\/NpUfpH9m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023170071\/1445887113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sefhi_RG","name":"xCrowd-Killerx","id":329914273,"id_str":"329914273","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470402560,"id_str":"663728089470402560","text":"Raja Sampah Bantargebang: Rekson Sitorus pemain kawakan di Bantargebang. Ia pemilik lahan yang disulap menjadi... https:\/\/t.co\/tzqAJduOWj","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2749027986,"id_str":"2749027986","name":"Ernest Lesmana","screen_name":"LesmanaErnest","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":6,"listed_count":19,"favourites_count":0,"statuses_count":61427,"created_at":"Wed Aug 20 13:40:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502090181055234048\/95DTnVQj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502090181055234048\/95DTnVQj_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tzqAJduOWj","expanded_url":"http:\/\/bit.ly\/1WM39Ow","display_url":"bit.ly\/1WM39Ow","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089503961089,"id_str":"663728089503961089","text":"\u9014\u7aef\u306b\u304c\u629c\u3051\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564509719,"id_str":"564509719","name":"\u9065\u559c@\u30ea\u30b6\u30ec\u30af\u30b7\u30e7\u30f3\u3001\u30d7\u30ec\u30a4\u4e2d","screen_name":"revoguitaru","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u307f \u30d6\u30ec10\/\u30d6\u30ec\u30c7\u30d5\u30a9(\u30b7\u30fc\u30af)\/\u82f1\u96c4\uff01\/\u30dd\u30c3\u30d7\u30f3\/\u30e6\u30fc\u30d3\u30fc\u30c8\/\u3068\u3068\u30e2\u30ce\/\u30dc\u30ab\u30ed\/\u30b5\u30f3\u30db\u30e9\/\u5c11\u5973\u75c5\/aph\u304c\u597d\u304d\u306a\u8150\u5973\u5b50\u3067\u3059! \uff0a\u82f1\u96c4\uff01\u306f\u30cd\u30af\u30ed\u30b9\u6240\u5c5e\uff0a\u3061\u307e\u3061\u307e\u51fa\u6483\u3059\u308b\u7cfb\u30a2\u30fc\u30af\u30b9\uff0a\u81ea\u5206\u304b\u3089\u8a71\u3057\u304b\u3051\u3089\u308c\u306a\u3044\u30c1\u30ad\u30f3","protected":false,"verified":false,"followers_count":112,"friends_count":166,"listed_count":0,"favourites_count":6910,"statuses_count":18790,"created_at":"Fri Apr 27 11:15:04 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583118832727764992\/Ttv00nuk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583118832727764992\/Ttv00nuk_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082666"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495572480,"id_str":"663728089495572480","text":"RT @Oshima__Yuko: My heart,Body,Sense of values were Purge.\n\n\u5fc3\u3001\u8eab\u4f53\u3001\u4fa1\u5024\u89b3\u3001\u3044\u308d\u3044\u308d\u306a\u3082\u306e\u3092\n\n\u6d44\u5316\n\nAt \u7027\u539f\u5bae\u795e\u793e\n\n#heart #body #purge #\u4f0a\u52e2\u795e\u5bae\u2026 https:\/\/t.co\/jVmuv\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2732392716,"id_str":"2732392716","name":"\u3057\u3085\u3046","screen_name":"shuxavi1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":17,"listed_count":0,"favourites_count":1498,"statuses_count":1521,"created_at":"Thu Aug 14 18:16:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577029470210519041\/RcAuragf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577029470210519041\/RcAuragf_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:29 +0000 2015","id":663711762278166528,"id_str":"663711762278166528","text":"My heart,Body,Sense of values were Purge.\n\n\u5fc3\u3001\u8eab\u4f53\u3001\u4fa1\u5024\u89b3\u3001\u3044\u308d\u3044\u308d\u306a\u3082\u306e\u3092\n\n\u6d44\u5316\n\nAt \u7027\u539f\u5bae\u795e\u793e\n\n#heart #body #purge #\u4f0a\u52e2\u795e\u5bae\u2026 https:\/\/t.co\/jVmuvDWdL9","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572670149,"id_str":"2572670149","name":"\u5927\u5cf6\u512a\u5b50","screen_name":"Oshima__Yuko","location":null,"url":"http:\/\/o-yuko.jp\/index.php?pmc=0065","description":"\u5927\u5cf6\u512a\u5b50\u3067\u3059\uff01\u672c\u7269(\u30ce-o-)\u30ce\u252bTwitter\u306f\u3058\u3081\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":true,"followers_count":887712,"friends_count":3,"listed_count":5470,"favourites_count":0,"statuses_count":906,"created_at":"Tue Jun 17 10:20:45 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"55ACEE","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/479533307512639488\/7gBDib5S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/479533307512639488\/7gBDib5S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572670149\/1403163497","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":326,"favorite_count":1312,"entities":{"hashtags":[{"text":"heart","indices":[76,82]},{"text":"body","indices":[83,88]},{"text":"purge","indices":[89,95]},{"text":"\u4f0a\u52e2\u795e\u5bae","indices":[96,101]}],"urls":[{"url":"https:\/\/t.co\/jVmuvDWdL9","expanded_url":"https:\/\/instagram.com\/p\/93bB2sNnQS\/","display_url":"instagram.com\/p\/93bB2sNnQS\/","indices":[103,126]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"heart","indices":[94,100]},{"text":"body","indices":[101,106]},{"text":"purge","indices":[107,113]},{"text":"\u4f0a\u52e2\u795e\u5bae","indices":[114,119]}],"urls":[{"url":"https:\/\/t.co\/jVmuvDWdL9","expanded_url":"https:\/\/instagram.com\/p\/93bB2sNnQS\/","display_url":"instagram.com\/p\/93bB2sNnQS\/","indices":[121,140]}],"user_mentions":[{"screen_name":"Oshima__Yuko","name":"\u5927\u5cf6\u512a\u5b50","id":2572670149,"id_str":"2572670149","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089482956804,"id_str":"663728089482956804","text":"\u306f\u3041\u3041\u3041\u3093\uff61\uff9f(\uff9f\u00b4\u03c9`\uff9f)\uff9f\uff61\n\u79cb\u8449\u304f\u3093\u30c4\u30a4\u30fc\u30c8\u3057\u306a\u3044\u304b\u306a\u3063\u3066\u30c4\u30a4\u30fc\u30c8\u3057\u3088\u3046\u304b\u3001\u3057\u306a\u3044\u304b\u3063\u3066\u3044\u3046\u306e\u3092\u305f\u3081\u3089\u3063\u3066\u305f\u3051\u3069\n\n\u3057\u3066\u304f\u3060\u3055\u3063\u3066\uff61\uff9f(\uff9f\u00b4\u03c9`\uff9f)\uff9f\uff61\n\n\u79cb\u8449\u304f\u3093\u3001\u3042\u308a\u304c\u3068\u3046\u2026\ud83d\udc7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3248260932,"id_str":"3248260932","name":"nana\u2661*\u7a14 12\u65e5 \u5343\u79cb\u697d","screen_name":"ayakashi_nana","location":"\u25b7\u25b7\u5ca1\u7530\u8ce2\u98db\u5fdc\u63f4\u968a\u25c1\u25c1","url":"http:\/\/twpf.jp\/ayakashi_nana","description":"\u00b0*\u79cb\u8449\u53cb\u4f51 \u261e(( @yuuusuke00 ))\u261c \u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059*\u00b0 \u25cc\u2445\u25cc\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u25cc\u2445\u25cc\u2445\n\u8fd1\u6c5f\u967d\u4e00\u90ce\/\u6961\u6728\u76f4\u4e5f\/\u98ef\u5c71\u88d5\u592a\/\u4f86\u6cb3\u4f91\u5e0c\/\u5ca1\u7530\u8ce2\u98db \uff71\uff72\uff7a\uff9d\u306f\u3042\u3044\u307f\u3093\u4f5c\uff61\u2661\u3010\u4ff3\u512a\u57a2\u3011\u261e@yuuusuke72","protected":false,"verified":false,"followers_count":173,"friends_count":167,"listed_count":19,"favourites_count":19407,"statuses_count":9569,"created_at":"Thu Jun 18 02:27:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663018168768532480\/-BRSdKeO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663018168768532480\/-BRSdKeO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248260932\/1446703267","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082661"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089483116544,"id_str":"663728089483116544","text":"I scored 100% on \"How well do you know Allama Iqbal?\" on Qzzr. Can you match that? https:\/\/t.co\/nY2lKX5Llp via @Qzzr_","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":933448122,"id_str":"933448122","name":"Muhammad Qasim khan","screen_name":"MuhammadQasimk9","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":53,"listed_count":0,"favourites_count":2,"statuses_count":3,"created_at":"Thu Nov 08 02:23:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656301360061747200\/TRZ2m3cD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656301360061747200\/TRZ2m3cD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/933448122\/1445309422","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nY2lKX5Llp","expanded_url":"http:\/\/tribune.com.pk\/story\/987490\/quiz-how-well-do-you-know-allama-iqbal\/","display_url":"tribune.com.pk\/story\/987490\/q\u2026","indices":[83,106]}],"user_mentions":[{"screen_name":"Qzzr_","name":"Qzzr","id":2180948154,"id_str":"2180948154","indices":[111,117]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082661"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491308546,"id_str":"663728089491308546","text":"\u3082\u3046\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232839094,"id_str":"232839094","name":"\u3042\u308a\u307d\u307d\u25cc","screen_name":"10kmtm36","location":"\u5343\u8449\u7dcf\u5317\u9ad8\u6821\u306e\u8fd1\u304f\u306b\u3042\u308b\u305f\u3093\u307d\u307d\u7551","url":null,"description":"\u815018\u2197\ufe0e \u5dfb\u5cf6\u306e\u3053\u3068\u3092\u8003\u3048\u308b\u4e8b\u3067\u751f\u304d\u3066\u308b(\u6771\u5dfb\u4e3b\u98df\u5dfb\u5cf6\u7dcf\u53d7\u3051\u6c17\u5473\u2026\u5bd2\u5dfb\u304c\u304d\u3066\u3044\u308b)","protected":false,"verified":false,"followers_count":600,"friends_count":555,"listed_count":18,"favourites_count":1484,"statuses_count":61679,"created_at":"Sat Jan 01 13:28:51 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377294115770369\/brniRyEo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377294115770369\/brniRyEo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232839094\/1446916038","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082663"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499832320,"id_str":"663728089499832320","text":"Really great to see that #WakingTheFeminists has garnered a response from @AbbeyTheatre. Fair play.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103258610,"id_str":"103258610","name":"Si\u00fan N\u00ed Dhuinn","screen_name":"Siuners","location":"Baile \u00c1tha Cliath","url":"http:\/\/tricklingbeauty.wordpress.com","description":"Fashion obsessed feminist. Also into books, food and good craic. 'liomsa na tuairim\u00ed seo.","protected":false,"verified":false,"followers_count":1825,"friends_count":1346,"listed_count":29,"favourites_count":10912,"statuses_count":23318,"created_at":"Sat Jan 09 12:23:42 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BE53D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/65387550\/n506972947_816186_9093.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/65387550\/n506972947_816186_9093.jpg","profile_background_tile":false,"profile_link_color":"1500FF","profile_sidebar_border_color":"C195F0","profile_sidebar_fill_color":"DCCCFF","profile_text_color":"0DA6E3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627092882038628352\/jeJRvafC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627092882038628352\/jeJRvafC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/103258610\/1395590484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"WakingTheFeminists","indices":[25,44]}],"urls":[],"user_mentions":[{"screen_name":"AbbeyTheatre","name":"Abbey Theatre","id":16826970,"id_str":"16826970","indices":[74,87]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487175680,"id_str":"663728089487175680","text":"@sig__ma \u314b\u314b\u314b\u314b\u314b\u314b\uc804 \uc0ac\uc2e4 \uad00\uae00\uc774 \ub354 \ucde8\ud5a5\uc774\uae34\ud55c\ub388\u314b\u314b\ud558\ud2b8\ub294 \uc774\uc058\uae34\ud558\ub354\ub77c\uad6c\uc5ec\u314b\u314b\ud050\u3160\u3160\ud2b9\ud788 \ud6a8\uacfc\uac00 \uce90\ub9ac\ud558\ub294\u3160\u3160\u3160\u314b\u314b\u314b\u314b\u314b\u314b\uc557 \uc2dc\uadf8\ub2d8\uc758 \uadf8\ub9bc\uc5d0 \ud558\ud2b8\ud558\ud2b8\ub2c8!0\u31470!!(\uc2dc\uadf8\ub2d8: \ube14\ub77d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727664201465857,"in_reply_to_status_id_str":"663727664201465857","in_reply_to_user_id":2480163643,"in_reply_to_user_id_str":"2480163643","in_reply_to_screen_name":"sig__ma","user":{"id":791051623,"id_str":"791051623","name":"\uc544\ud14c\ube0c\ub9b0\/\u2663 (*;\u3146;* )","screen_name":"Atebrin","location":"\ud2b8\uc640\uc77c\ub77c\uc787\uc5d0 \uc788\ub294 \uc2dc\uacc4\ud0d1","url":null,"description":"\ud314\uc5b8\ube14 \uc790\uc720\uc9c0\ub9cc \ube44\ub355\ud314\ub85c \ube14\ub77d\/\ud558\ud2b8\uc544\ub9ac(\uc2dc\uacc4\ud0d1\uc870), \uc0ac\uc774\ud37c\uc988(\uc30d\ub839(\ud2f0\ud558), \ub791\ub9c8(\ud558\ub791\ub9c8\ub97c \ucf64\ube44), \uc0ec\ub7ff\uad00\ub828 \ucf64\ube44)\/\ubbf8\uc9c0\uadfc\ud55c \uc7a1\ub355\/\uc0ac\ud37c \uc370\uacfc \uc5f0\uc131 \ubc31\uc5c5\uc740 \uc0ac\ud37c \ub355\uacc4- @harang_thelove","protected":false,"verified":false,"followers_count":103,"friends_count":196,"listed_count":0,"favourites_count":9019,"statuses_count":101807,"created_at":"Thu Aug 30 07:29:05 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662617728151216128\/oT5WCveI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662617728151216128\/oT5WCveI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/791051623\/1446128694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sig__ma","name":"\uc30d\ub839\ub355\ud6c4 \uc2dc\uadf8","id":2480163643,"id_str":"2480163643","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491312642,"id_str":"663728089491312642","text":"Just posted a photo https:\/\/t.co\/kmL79ReHjX","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":508592007,"id_str":"508592007","name":"i_R7oooba","screen_name":"r7oooba25","location":"instagram:r7oooba254","url":null,"description":"\u0625\u0633\u0652\u0642 \u062a\u064f\u0631\u0628\u064e\u0629 \u0623\u062d\u0644\u0627\u0645\u064e\u0643 \u0628 \u062f\u064f\u0639\u0627\u0621\u064d \u0641\u064e\u0644\u0627\u0628\u064f\u062f \u0644\u0644\u0628\u064f\u0630\u0648\u0631 \u0623\u0646\u0652 \u062a\u064f\u0632\u0647\u0650\u0631 \u064a\u064e\u0648\u0645\u0627 \u0648\u0644\u0627 \u062a\u064e\u064a\u0623\u0633 \u0623\u0628\u062f\u0627 \u0641 \u0644\u0650\u0643\u0644 \u0632\u064e\u0647\u0631\u0629 \u0645\u064e\u0648\u0633\u0650\u0645\u064c \u0642\u0627\u062f\u0650\u0645 ..","protected":false,"verified":false,"followers_count":116,"friends_count":264,"listed_count":0,"favourites_count":15,"statuses_count":5609,"created_at":"Wed Feb 29 08:37:44 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000537706662\/be8650896b51fd70c7cf2683364c67c1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000537706662\/be8650896b51fd70c7cf2683364c67c1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/508592007\/1353639031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kmL79ReHjX","expanded_url":"https:\/\/instagram.com\/p\/93ic_4ozSk\/","display_url":"instagram.com\/p\/93ic_4ozSk\/","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082663"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089482956805,"id_str":"663728089482956805","text":"@Neeeeems yang terakhir itu engga ya \ud83d\ude1d\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726850170982400,"in_reply_to_status_id_str":"663726850170982400","in_reply_to_user_id":2322109975,"in_reply_to_user_id_str":"2322109975","in_reply_to_screen_name":"Neeeeems","user":{"id":263043141,"id_str":"263043141","name":"Nurul","screen_name":"NurulDwiYanti07","location":"Bandung, West Java","url":null,"description":"ALLAH SWT \u2665 ll saya akan selalu sayang sama orang yang selalu sayang saya \u2764 ll 5juni1998","protected":false,"verified":false,"followers_count":1111,"friends_count":257,"listed_count":4,"favourites_count":363,"statuses_count":33943,"created_at":"Wed Mar 09 07:44:11 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000038921399\/d53b7acc015a6583a0eb387018e1a79f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000038921399\/d53b7acc015a6583a0eb387018e1a79f.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663355273172488192\/k7nvyySI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663355273172488192\/k7nvyySI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263043141\/1446708676","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Neeeeems","name":"R I S M A","id":2322109975,"id_str":"2322109975","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080082661"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495506944,"id_str":"663728089495506944","text":"RT @anndoesu: Karena ken sama Hyde lagi mesra akhir2 ini haha @Blue6884 https:\/\/t.co\/8TnheERJFR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2649673387,"id_str":"2649673387","name":"\u4fdd\u5fb3\u6df3\u58eb\u5ac1\uff20\u8584\u6c5a\u308c\u305f\u30a2\u30a4\u30eb\u30fc\u7cfb\u5973\u5b50\u3002","screen_name":"ABC_Jz_ex_lav","location":"ABC \u30d6\u30eb\u30cf\u30c1\u306e\u8db3\u5143\uff08 \u3078\u3070\u308a\u3064\u3044\u3066\u307e\u3059 \uff09","url":null,"description":"Acid Black Cherry \u6df3\u58eb Janne Da Arc BULL ZEICHEN 88 TEAM ABC TEAM BULL \u611b\u3057\u3066\u306a\u3044\u3002TEAM\u3067\u7e4b\u304c\u308d\u30fc \u26a0http:\/\/twpf.jp\/ABC_Jz_ex_lav\u26a0 \u3064\u3044\u3077\u308d\u8aad\u3093\u3067\u306c( \uff70\u0300\u0434\uff70\u0301 )","protected":false,"verified":false,"followers_count":1056,"friends_count":1035,"listed_count":15,"favourites_count":5604,"statuses_count":19208,"created_at":"Wed Jul 16 01:28:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FC4300","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640730143216955392\/-amhmk6L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640730143216955392\/-amhmk6L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2649673387\/1428691437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 14:50:55 +0000 2015","id":662280942187212800,"id_str":"662280942187212800","text":"Karena ken sama Hyde lagi mesra akhir2 ini haha @Blue6884 https:\/\/t.co\/8TnheERJFR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68729979,"id_str":"68729979","name":"dearest \u2661","screen_name":"anndoesu","location":"Indonesia","url":null,"description":"L'Arc~en~Ciel \u2661 VAMPS \u2661 HYDE \u2661 GACKT \u2661 gxh \u2661 Lee Pace \u2661\u2661 \u30a2\u30f3 \u30f3\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":405,"friends_count":185,"listed_count":8,"favourites_count":1501,"statuses_count":82561,"created_at":"Tue Aug 25 16:03:55 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645528485969031168\/VBDF43_L.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645528485969031168\/VBDF43_L.jpg","profile_background_tile":false,"profile_link_color":"860AFA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645519633034842116\/F535Qn6c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645519633034842116\/F535Qn6c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68729979\/1442736890","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Blue6884","name":"\u30d6\u30eb\u30fc\u3061\u3083\u3093","id":504102252,"id_str":"504102252","indices":[48,57]}],"symbols":[],"media":[{"id":662280924994768896,"id_str":"662280924994768896","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":773,"h":585,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662280924994768896,"id_str":"662280924994768896","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":773,"h":585,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":662280914328621056,"id_str":"662280914328621056","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk-5AUEAApKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk-5AUEAApKvu.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":927,"h":558,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":361,"resize":"fit"}}},{"id":662280940127842304,"id_str":"662280940127842304","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDlAZHU8AAeIu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDlAZHU8AAeIu5.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":245,"resize":"fit"},"large":{"w":997,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":433,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anndoesu","name":"dearest \u2661","id":68729979,"id_str":"68729979","indices":[3,12]},{"screen_name":"Blue6884","name":"\u30d6\u30eb\u30fc\u3061\u3083\u3093","id":504102252,"id_str":"504102252","indices":[62,71]}],"symbols":[],"media":[{"id":662280924994768896,"id_str":"662280924994768896","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":773,"h":585,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662280942187212800,"source_status_id_str":"662280942187212800","source_user_id":68729979,"source_user_id_str":"68729979"}]},"extended_entities":{"media":[{"id":662280924994768896,"id_str":"662280924994768896","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk_gvUkAAImhg.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":773,"h":585,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":600,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662280942187212800,"source_status_id_str":"662280942187212800","source_user_id":68729979,"source_user_id_str":"68729979"},{"id":662280914328621056,"id_str":"662280914328621056","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDk-5AUEAApKvu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDk-5AUEAApKvu.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"large":{"w":927,"h":558,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":361,"resize":"fit"}},"source_status_id":662280942187212800,"source_status_id_str":"662280942187212800","source_user_id":68729979,"source_user_id_str":"68729979"},{"id":662280940127842304,"id_str":"662280940127842304","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDlAZHU8AAeIu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDlAZHU8AAeIu5.jpg","url":"https:\/\/t.co\/8TnheERJFR","display_url":"pic.twitter.com\/8TnheERJFR","expanded_url":"http:\/\/twitter.com\/anndoesu\/status\/662280942187212800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":245,"resize":"fit"},"large":{"w":997,"h":721,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":433,"resize":"fit"}},"source_status_id":662280942187212800,"source_status_id_str":"662280942187212800","source_user_id":68729979,"source_user_id_str":"68729979"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491505152,"id_str":"663728089491505152","text":"RT @TanyaBurr: Filming festive videos today! \ud83c\udf84 https:\/\/t.co\/FMidk3VRcn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":458495066,"id_str":"458495066","name":"Emma","screen_name":"emmalfinlinson","location":null,"url":null,"description":"she doesn't even go here","protected":false,"verified":false,"followers_count":1331,"friends_count":2019,"listed_count":12,"favourites_count":10743,"statuses_count":21599,"created_at":"Sun Jan 08 16:41:44 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659421160757698561\/jHzR4_D1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659421160757698561\/jHzR4_D1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458495066\/1444483615","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:18 +0000 2015","id":663726815001894912,"id_str":"663726815001894912","text":"Filming festive videos today! \ud83c\udf84 https:\/\/t.co\/FMidk3VRcn","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23465218,"id_str":"23465218","name":"Tanya Burr","screen_name":"TanyaBurr","location":"London","url":"http:\/\/youtube.com\/tanyaburr","description":"British Blogger & YouTuber. http:\/\/tanyaburr.co.uk SNAPCHAT: tanyaburrbearr","protected":false,"verified":true,"followers_count":1631607,"friends_count":457,"listed_count":4580,"favourites_count":18961,"statuses_count":33221,"created_at":"Mon Mar 09 17:32:16 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107774616\/16851a0c64653528f2cf99308b542e11.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107774616\/16851a0c64653528f2cf99308b542e11.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663449778735472640\/eJRHTpqW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663449778735472640\/eJRHTpqW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23465218\/1446463050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":60,"favorite_count":235,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FMidk3VRcn","expanded_url":"https:\/\/instagram.com\/p\/93h4A6F3X7\/","display_url":"instagram.com\/p\/93h4A6F3X7\/","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FMidk3VRcn","expanded_url":"https:\/\/instagram.com\/p\/93h4A6F3X7\/","display_url":"instagram.com\/p\/93h4A6F3X7\/","indices":[47,70]}],"user_mentions":[{"screen_name":"TanyaBurr","name":"Tanya Burr","id":23465218,"id_str":"23465218","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082663"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470398464,"id_str":"663728089470398464","text":"RT @bjduck55: \uac1c\uc778\uc801\uc73c\ub85c \ub098\ub77c\ubcc4 \uc790\uce90\ud2b9\uc9d5\uc744 \ub9d0\ud558\uba74\n\n\uc77c\ubcf8\uc790\uce90: \uce90\ub9ad\ud130\uac00 \uac00\uc9c0\uace0 \uc788\ub294 \uc2a4\ud1a0\ub9ac\uac00 \uc911\uc694\ud568\n\uc591\ub355\uc790\uce90: \uc138\uacc4\uad00\uc774 \uc911\uc694\ud568. \uc5b4\ub5a4 \uc5ed\ud560\uc744 \ucc28\uc9c0\ud558\uace0 \uc788\ub294\uc9c0\uac00 \uc81c\uc77c \uc911\uc694. \uadf8\ub798\uc11c \ub9d0\ub3c4\uc548\ub418\ub294 \uba3c\uce58\ud0a8\uc774 \ub9ce\uc74c\n\ud55c\uad6d\uc790\uce90: \uad00\uacc4\uac00 \uc911\uc694\ud568. \ub2e5\uccd0 \ub2e4\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2737871564,"id_str":"2737871564","name":"\u2665\uc778\uc6b0\uc324\uc774 \uc608\uc058\ub2e4\u2665 \uc740\uc194","screen_name":"sosodjduQmthtj","location":null,"url":"http:\/\/safety-first.tistory.com\/","description":"\uaf43\uc774 \uc838\ub3c4 \ub098\ub294 \ub108\ub97c \uc78a\uc740 \uc801 \uc5c6\ub2e4\n@safe_life__","protected":false,"verified":false,"followers_count":53,"friends_count":76,"listed_count":0,"favourites_count":470,"statuses_count":3350,"created_at":"Sat Aug 16 18:52:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656680765791449088\/JRj5ighr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656680765791449088\/JRj5ighr.png","profile_background_tile":false,"profile_link_color":"FFA08D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662536596302880768\/9pT2RgNT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662536596302880768\/9pT2RgNT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737871564\/1445880484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:43:04 +0000 2015","id":663275532755189761,"id_str":"663275532755189761","text":"\uac1c\uc778\uc801\uc73c\ub85c \ub098\ub77c\ubcc4 \uc790\uce90\ud2b9\uc9d5\uc744 \ub9d0\ud558\uba74\n\n\uc77c\ubcf8\uc790\uce90: \uce90\ub9ad\ud130\uac00 \uac00\uc9c0\uace0 \uc788\ub294 \uc2a4\ud1a0\ub9ac\uac00 \uc911\uc694\ud568\n\uc591\ub355\uc790\uce90: \uc138\uacc4\uad00\uc774 \uc911\uc694\ud568. \uc5b4\ub5a4 \uc5ed\ud560\uc744 \ucc28\uc9c0\ud558\uace0 \uc788\ub294\uc9c0\uac00 \uc81c\uc77c \uc911\uc694. \uadf8\ub798\uc11c \ub9d0\ub3c4\uc548\ub418\ub294 \uba3c\uce58\ud0a8\uc774 \ub9ce\uc74c\n\ud55c\uad6d\uc790\uce90: \uad00\uacc4\uac00 \uc911\uc694\ud568. \ub2e5\uccd0 \ub2e4\ud544\uc694\uc5c6\uc5b4.\uc564\uce90\uac00 \uc81c\uc77c \uc911\uc694\ud574","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2748452390,"id_str":"2748452390","name":"\ucf54\ud22c \/ Cotwo","screen_name":"bjduck55","location":"\uc81c 8\uc6b0\uc8fc \uc548\ud0c0\ub9ac\uc6b0\uc2a4 \uc6b8\ud504\ud2b8\ub7a9 \uac1c\uc9d1","url":null,"description":"[\ubcf8\uc9c4: \ud55c\ub2c8\ubc1c+\ub374\ub9c8] \uc7a1\ub355: 2.5D, \uc790\uce90, \uc0ac\uc774\ud37c\uc988, \ubbf8\uc560\ub2c8, \uc2a4\uac78 \/\/ \uc138\uc298, \ud5c8\ub9ac\uac8c\uc774\ube45\ud130, \ube0c\ub8e8\ud2b8 \ubbf8\ub2c8 \/\/ \ubc31\uc5c5\uacc4\uc815 @COTWO222 \/\/ Eng ok","protected":false,"verified":false,"followers_count":424,"friends_count":364,"listed_count":2,"favourites_count":206,"statuses_count":18124,"created_at":"Wed Aug 20 07:56:57 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3399AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662089112552271872\/ZP05lj_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662089112552271872\/ZP05lj_l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2748452390\/1444797647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2317,"favorite_count":337,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bjduck55","name":"\ucf54\ud22c \/ Cotwo","id":2748452390,"id_str":"2748452390","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487138817,"id_str":"663728089487138817","text":"@suu8HandMade \n\u3081\u3063\u3061\u3083\u53ef\u611b\u3044\u3067\u3059\u30fc\u30fc\u2661\n\u307b\u3059\u3043(\u30fb\u03c9\u30fb)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722154119135232,"in_reply_to_status_id_str":"663722154119135232","in_reply_to_user_id":2253913945,"in_reply_to_user_id_str":"2253913945","in_reply_to_screen_name":"suu8HandMade","user":{"id":2957244426,"id_str":"2957244426","name":"\u3061\u3071LOVE@\u672d\u5e4c\u5f53\u9078\uff01\u2764\ufe0e","screen_name":"eighteryasusaku","location":null,"url":null,"description":"\u4e2d3\/\u5317\u6d77\u9053eighter\/JB,\u4e8c\u30ba\u30e0\u53c2\u6226\u6e08\u307f \u30e9\u30d6\u30e9\u30a4\u30d0\u30fc \/\u9280\u9b42\/\u55b0\u7a2e\/\u30bb\u30e9\u30e0\u30f3\u266a\uff08\u30fb\uff18\u30fb)\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fcok\uff01\uff01\u5909\u614b\/\u540c\u5766\/\u639b\u3051\u6301\u3061\/nr\u25ceeighter\u3055\u3093\u30d5\u30a9\u30ed\u30d0\u221e\uff05\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":3804,"friends_count":4112,"listed_count":15,"favourites_count":3212,"statuses_count":6697,"created_at":"Sat Jan 03 12:58:57 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655525919575027712\/IVRPoUxU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655525919575027712\/IVRPoUxU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957244426\/1445432940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"suu8HandMade","name":"\u3059\u3045\u306e\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u5de5\u623f\u2661\u56fa\u5b9a\u30c4\u30a4","id":2253913945,"id_str":"2253913945","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495568384,"id_str":"663728089495568384","text":"\u0e2d\u0e22\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1a\u0e1a\u0e01\u0e39\u0e40\u0e25\u0e22\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e19 \u0e21\u0e35\u0e43\u0e04\u0e23\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e47\u0e23\u0e31\u0e01\u0e29\u0e32\u0e44\u0e27\u0e49\u0e14\u0e35\u0e46 \u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1a\u0e1a\u0e01\u0e39\u0e41\u0e21\u0e48\u0e07\u0e41\u0e22\u0e48\u0e08\u0e23\u0e34\u0e07 \u0e40\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e16\u0e2d\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1454738029,"id_str":"1454738029","name":"\u0e2b\u0e35\u0e21","screen_name":"FifyTong","location":"Prachin Buri(Thai)","url":"http:\/\/facebook.com\/sivakorn.pijidlerd","description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":146,"listed_count":0,"favourites_count":248,"statuses_count":2768,"created_at":"Fri May 24 17:05:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFDFE2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625686989115789314\/2fDK8gIY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625686989115789314\/2fDK8gIY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1454738029\/1444813840","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487273984,"id_str":"663728089487273984","text":"Es Lunes y ya me estoy enfiestando\ud83d\ude04\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3091429370,"id_str":"3091429370","name":"Nadia Sandoval","screen_name":"NadiaSandoval99","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":443,"friends_count":320,"listed_count":0,"favourites_count":272,"statuses_count":1243,"created_at":"Mon Mar 16 23:19:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654291657551159296\/0yE5EpUY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654291657551159296\/0yE5EpUY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3091429370\/1446127962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089478901760,"id_str":"663728089478901760","text":"breakfast will be my favorite forever https:\/\/t.co\/KxojL4OEfg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":364932367,"id_str":"364932367","name":"\u263e","screen_name":"xbuteravato","location":"beacon hills","url":null,"description":"sometimes it feels weird to be a child in this adult body","protected":false,"verified":false,"followers_count":1349,"friends_count":2007,"listed_count":8,"favourites_count":11292,"statuses_count":41014,"created_at":"Tue Aug 30 15:53:46 +0000 2011","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461920361383096320\/tp_cswxr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461920361383096320\/tp_cswxr.png","profile_background_tile":false,"profile_link_color":"2B042B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660426119418630146\/rAuFuXrT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660426119418630146\/rAuFuXrT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364932367\/1446292910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663707075717959680,"quoted_status_id_str":"663707075717959680","quoted_status":{"created_at":"Mon Nov 09 13:17:52 +0000 2015","id":663707075717959680,"id_str":"663707075717959680","text":"breakfast, lunch, or supper?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9494,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KxojL4OEfg","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663707075717959680","display_url":"twitter.com\/questionyrself\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082660"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470513152,"id_str":"663728089470513152","text":"@SportsOnFilm Will tweet something out around lunch time. We need to check our field conditions before making a decision.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724170396770304,"in_reply_to_status_id_str":"663724170396770304","in_reply_to_user_id":103878405,"in_reply_to_user_id_str":"103878405","in_reply_to_screen_name":"SportsOnFilm","user":{"id":2564477924,"id_str":"2564477924","name":"Carson Soccer","screen_name":"Carson_Cougars","location":"China Grove, NC","url":null,"description":"JCHS Cougar Soccer ~THREEpeat Men's Soccer SPC Champs in 2013, 2014, & 2015","protected":false,"verified":false,"followers_count":150,"friends_count":71,"listed_count":0,"favourites_count":51,"statuses_count":312,"created_at":"Fri Jun 13 02:42:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508091679799521280\/tTXFto4m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508091679799521280\/tTXFto4m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2564477924\/1446948457","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SportsOnFilm","name":"Brian Westerholt","id":103878405,"id_str":"103878405","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487114240,"id_str":"663728089487114240","text":"laki ng problema neto \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1958629765,"id_str":"1958629765","name":"Chinitski","screen_name":"FORTchop","location":"M A N I L A ~ LOVE'S","url":"https:\/\/www.facebook.com\/fortunaethann","description":"\u2022 EmmnBrc \u2764 \u2022 Charlie puth's wife and taylor swift's lost sister \u2022 Big 5 \u2022","protected":false,"verified":false,"followers_count":2099,"friends_count":1115,"listed_count":2,"favourites_count":3898,"statuses_count":23654,"created_at":"Sun Oct 13 12:20:18 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"BF00FF","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661433792146505728\/uDzSTNO8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661433792146505728\/uDzSTNO8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1958629765\/1446533059","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491312641,"id_str":"663728089491312641","text":"RT @The_YUNiversity: For diseases, \n\n\u201cendemic\u201d = in a small area; \n\n\u201cepidemic\u201d = widespread; \n\n\u201cpandemic\u201d = universal. \ud83c\udf0f \n\nThey get worse i\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3509715914,"id_str":"3509715914","name":"f a r z a n a","screen_name":"arzanayusuf","location":"Malaysia","url":"http:\/\/www.instagram.com\/sheisfarzana","description":null,"protected":false,"verified":false,"followers_count":120,"friends_count":244,"listed_count":0,"favourites_count":889,"statuses_count":815,"created_at":"Thu Sep 10 00:21:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654493170634387456\/xfRbpEcp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654493170634387456\/xfRbpEcp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3509715914\/1444840158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:11 +0000 2015","id":663725272756129792,"id_str":"663725272756129792","text":"For diseases, \n\n\u201cendemic\u201d = in a small area; \n\n\u201cepidemic\u201d = widespread; \n\n\u201cpandemic\u201d = universal. \ud83c\udf0f \n\nThey get worse in alphabetical order.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":217477505,"id_str":"217477505","name":"Grammar YUNiversity","screen_name":"The_YUNiversity","location":"Writing our books in L.A.","url":"http:\/\/www.TheYUNiversity.net","description":"Grammar and vocabulary bosses for Gen TL;DR. @IBGDRGN is our muse; @gerardway is our hero. | http:\/\/TheYUNiversity.tumblr.com | http:\/\/ask.fm\/The_YUNiversity","protected":false,"verified":false,"followers_count":230569,"friends_count":388,"listed_count":922,"favourites_count":14913,"statuses_count":36475,"created_at":"Fri Nov 19 16:49:22 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575435412816031744\/N7yLga1j.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575435412816031744\/N7yLga1j.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574782230943244290\/y26FVsow_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574782230943244290\/y26FVsow_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/217477505\/1429211090","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":132,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"The_YUNiversity","name":"Grammar YUNiversity","id":217477505,"id_str":"217477505","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082663"} +{"delete":{"status":{"id":634341931644928000,"id_str":"634341931644928000","user_id":3120986971,"user_id_str":"3120986971"},"timestamp_ms":"1447080082771"}} +{"delete":{"status":{"id":634436286711918593,"id_str":"634436286711918593","user_id":2247374166,"user_id_str":"2247374166"},"timestamp_ms":"1447080082773"}} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491374080,"id_str":"663728089491374080","text":"\u3088\u304f\u30ea\u30a2\u53cb\u3068\u8a71\u3059\u308b\u3051\u3069\u3001\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u304c\u3069\u3046\u3044\u3046\u5302\u3044\u3057\u3066\u305d\u3046\u304b\u8003\u3048\u3066\u3001\u9999\u6c34\u306e\u5302\u3044\u304b\u67d4\u8edf\u5264\u306e\u5302\u3044\u3068\u304b\u3067\u5206\u3051\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154506279,"id_str":"154506279","name":"\u51db\u6708\u306e\u3042\u3007\u308b\u306e\u4eba(\u3044\u305a\u3086\u305f\u308a\u3064)","screen_name":"airu_3_9_7","location":"\u85cd\u9244\u533a(\u4ed9\u53f0)","url":"http:\/\/twpf.jp\/airu_3_9_7","description":"\u3042\u3044\u308b\u3060\u3051\u3069\u3002\u6210\u4eba\u3057\u305f\u3051\u3069\u3002KnightsP\u517c\u3086\u3046\u305f\u304f\u3093\u5c02\u5c5eP\u3060\u3051\u3069\u3002\u63a8\u3057\u306f\u51db\u6708\u3060\u3051\u3069\u3002\u702c\u540d\u6cc9\u75c7\u5019\u7fa4\u3001\u702c\u540d\u6cc9\u4e2d\u6bd2\u5171\u306b\u672b\u671f\u60a3\u8005\u3060\u3051\u3069\u3002\u3046\u3093\u3053\u597d\u304d\u3067\u306f\u306a\u3044\u3093\u3060\u3051\u3069\u3002\u6a9c\u5c71\u6714\u826f\u611b\u3057\u3066\u308b\u3093\u3060\u3051\u3069\u3002\u540c\u62c5\u306f\u3054\u9060\u616e\u9858\u3044\u307e\u3059\u304c\u702c\u540d\u6cc9\u306f\u540c\u62c5\u62d2\u5426\u3067\u306f\u306a\u3044\u3093\u3060\u3051\u3069\u3002\u3010\u266510\/11\u2665\u9060\u8ddd\u96e2\u604b\u611b\u3060\u3051\u3069\u3002 @Hachijya \u3011","protected":false,"verified":false,"followers_count":654,"friends_count":974,"listed_count":39,"favourites_count":22778,"statuses_count":116219,"created_at":"Fri Jun 11 12:11:35 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"00C4FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469131298871595008\/AlG8Vw9S.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469131298871595008\/AlG8Vw9S.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663017871019118592\/gRrU1Ha6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663017871019118592\/gRrU1Ha6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154506279\/1445341615","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082663"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089503952896,"id_str":"663728089503952896","text":"I rather be tired than broke","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259882017,"id_str":"259882017","name":"\u2728Len\u00e9\u2728","screen_name":"LabiosPicante","location":"CaliCartel CO.","url":"https:\/\/vimeo.com\/user26465599","description":"Hands down I'm too proud for love, but with eyes shut it's you I'm thinkin' of \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f Current hustler | future Doctor. \u2022CMVP\u2022","protected":false,"verified":false,"followers_count":918,"friends_count":872,"listed_count":4,"favourites_count":141,"statuses_count":7829,"created_at":"Wed Mar 02 19:56:02 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"750000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095905008\/aa439d83299d8da0a03b95d145d46891.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095905008\/aa439d83299d8da0a03b95d145d46891.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584537617431003136\/H2USKhO-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584537617431003136\/H2USKhO-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259882017\/1424116953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082666"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499766784,"id_str":"663728089499766784","text":"@JinkiLee_Hstar Your treat, Onyu hyu- I kean, sunbaenim?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727872071331841,"in_reply_to_status_id_str":"663727872071331841","in_reply_to_user_id":3248471485,"in_reply_to_user_id_str":"3248471485","in_reply_to_screen_name":"JinkiLee_Hstar","user":{"id":2601304526,"id_str":"2601304526","name":"#G_S Kai.","screen_name":"APINKKNJ_hstar","location":"Seoul, Republic of Korea","url":"http:\/\/a-cube.co.kr","description":"[@APINKKNJ \uc758 \ubd07] \uc5d0\uc774\ud551\ud06c \uae40\ub0a8\uc8fc from HallyuStarLTDRP | \ubbfc\ud601 \uc640 \uc9c0\uc740 \uc758 \uc5ec\ub3d9\uc0dd, #JF | #95\uac31 | Live Tour #PINK_ISLAND | Apink's energy pill, Kim Namjoo imnida ~ !","protected":false,"verified":false,"followers_count":499,"friends_count":408,"listed_count":3,"favourites_count":256,"statuses_count":7155,"created_at":"Thu Jul 03 08:41:43 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/485755582238818304\/oPPGUKod.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/485755582238818304\/oPPGUKod.jpeg","profile_background_tile":true,"profile_link_color":"FA0D9B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663383931010445312\/m9ylix2Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663383931010445312\/m9ylix2Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2601304526\/1446998023","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JinkiLee_Hstar","name":"\uc0e4\uc774\ub2c8 \ub9ac\ub354 \uc628\uc720","id":3248471485,"id_str":"3248471485","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089478787072,"id_str":"663728089478787072","text":"RT @zyxoxoxo: \uc624\ub298 \uc9d1 \uac00\ub294 \uae38\uc5d0 \uc606\uc5d0 \uc775\uc219\ud55c \uc5bc\uad74\uc774 \uc788\uae38\ub798 \ubcf4\ub2c8\uae4c \ubbfc\uc11d\uc624\ube60....\ud1a0\ub9c8\ud1a0\uba38\ub9ac \ube7c\ubc15\uc774\uc790\ub098..... \uc544\uc9c1\ub3c4 \uc2ec\uc7a5\uc774 \ub4c0\uadfc... \ub355\uacc4\ubabb \ud30c\uad34\ud574\ub5a0\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/QvWij3BwRO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3466133653,"id_str":"3466133653","name":"\ub9c8\uc787\ucbb8","screen_name":"onlyforxingxing","location":"\uc131\uaca9 \uc9c0\ub784\ub9de\uc74c^^","url":null,"description":"\u2661EXO LAY\u2661 only 9 \uc787\ucbb8\uc787\ucbb8 \ub9c8\uc787\ucbb8","protected":false,"verified":false,"followers_count":0,"friends_count":98,"listed_count":0,"favourites_count":104,"statuses_count":1766,"created_at":"Sun Sep 06 03:07:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661007608451436544\/Jcygc4rz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661007608451436544\/Jcygc4rz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3466133653\/1443160230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:56:09 +0000 2015","id":663686509950664705,"id_str":"663686509950664705","text":"\uc624\ub298 \uc9d1 \uac00\ub294 \uae38\uc5d0 \uc606\uc5d0 \uc775\uc219\ud55c \uc5bc\uad74\uc774 \uc788\uae38\ub798 \ubcf4\ub2c8\uae4c \ubbfc\uc11d\uc624\ube60....\ud1a0\ub9c8\ud1a0\uba38\ub9ac \ube7c\ubc15\uc774\uc790\ub098..... \uc544\uc9c1\ub3c4 \uc2ec\uc7a5\uc774 \ub4c0\uadfc... \ub355\uacc4\ubabb \ud30c\uad34\ud574\ub5a0\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/QvWij3BwRO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230413824,"id_str":"230413824","name":"\uc735","screen_name":"zyxoxoxo","location":"\uc7a5\uc774\uc53d \uc606","url":"https:\/\/i.instagram.com\/zyxzjs\/","description":"\ub9d0\ud544\uc694\uc5c6\uc774 \uc0ac\ub791\ud574^^","protected":false,"verified":false,"followers_count":440,"friends_count":248,"listed_count":2,"favourites_count":648,"statuses_count":6433,"created_at":"Sat Dec 25 11:14:31 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657395970448101376\/wAcPvweM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657395970448101376\/wAcPvweM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230413824\/1445336234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":818,"favorite_count":156,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663686504632291328,"id_str":"663686504632291328","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","url":"https:\/\/t.co\/QvWij3BwRO","display_url":"pic.twitter.com\/QvWij3BwRO","expanded_url":"http:\/\/twitter.com\/zyxoxoxo\/status\/663686509950664705\/photo\/1","type":"photo","sizes":{"medium":{"w":338,"h":564,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":338,"h":564,"resize":"fit"},"small":{"w":338,"h":564,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663686504632291328,"id_str":"663686504632291328","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","url":"https:\/\/t.co\/QvWij3BwRO","display_url":"pic.twitter.com\/QvWij3BwRO","expanded_url":"http:\/\/twitter.com\/zyxoxoxo\/status\/663686509950664705\/photo\/1","type":"photo","sizes":{"medium":{"w":338,"h":564,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":338,"h":564,"resize":"fit"},"small":{"w":338,"h":564,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zyxoxoxo","name":"\uc735","id":230413824,"id_str":"230413824","indices":[3,12]}],"symbols":[],"media":[{"id":663686504632291328,"id_str":"663686504632291328","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","url":"https:\/\/t.co\/QvWij3BwRO","display_url":"pic.twitter.com\/QvWij3BwRO","expanded_url":"http:\/\/twitter.com\/zyxoxoxo\/status\/663686509950664705\/photo\/1","type":"photo","sizes":{"medium":{"w":338,"h":564,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":338,"h":564,"resize":"fit"},"small":{"w":338,"h":564,"resize":"fit"}},"source_status_id":663686509950664705,"source_status_id_str":"663686509950664705","source_user_id":230413824,"source_user_id_str":"230413824"}]},"extended_entities":{"media":[{"id":663686504632291328,"id_str":"663686504632291328","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjXA7UEAAgvDj.jpg","url":"https:\/\/t.co\/QvWij3BwRO","display_url":"pic.twitter.com\/QvWij3BwRO","expanded_url":"http:\/\/twitter.com\/zyxoxoxo\/status\/663686509950664705\/photo\/1","type":"photo","sizes":{"medium":{"w":338,"h":564,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":338,"h":564,"resize":"fit"},"small":{"w":338,"h":564,"resize":"fit"}},"source_status_id":663686509950664705,"source_status_id_str":"663686509950664705","source_user_id":230413824,"source_user_id_str":"230413824"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080082660"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089503920128,"id_str":"663728089503920128","text":"\u30de\u30b8\u304b\u30e2\u30f3\u30d9\u30eb\u306e\u30ae\u30d5\u30c8\u30ab\u30fc\u30c9\u306f\u5168\u90e8\u54c1\u5207\u308c\u4e2d\u3060\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4125633799,"id_str":"4125633799","name":"\u6d77\u304b\u3089\u6765\u305f\u304b\u3044\u3058\u3085\u3046","screen_name":"Mons_from_sea","location":null,"url":"http:\/\/twpf.jp\/Mons_from_sea","description":"\u6c34\u4e2d\u5199\u771f\/\u30ed\u30fc\u30c9\u30d0\u30a4\u30af\/\u30e1\u30ac\u30cd\/\u4eac\u90fd\/Mac\/iPhone\/\u30d5\u30a3\u30c3\u30c8\u30cd\u30b9\u30af\u30e9\u30d6\/\u30c0\u30a4\u30a8\u30c3\u30c8\/\u30ac\u30b8\u30a7\u30c3\u30c8\/\u30e9\u30b0\u30d3\u30fc\/MD researcher\/\u6642\u3005\u30b2\u30fc\u30e0\n\u8a73\u7d30\u306f\u30c4\u30a4\u30d7\u30ed\u3067","protected":false,"verified":false,"followers_count":42,"friends_count":125,"listed_count":0,"favourites_count":35,"statuses_count":95,"created_at":"Wed Nov 04 16:12:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"004494","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661941121212268544\/0cc7Hgd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661941121212268544\/0cc7Hgd__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4125633799\/1446996420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082666"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089499836416,"id_str":"663728089499836416","text":"Bu zamana kadar hep ne dediysek tersini yapt\u0131n\u0131z art\u0131k destek olun #komisyonumadokunma @TCHazine @RHisarciklioglu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":410867948,"id_str":"410867948","name":"Z\u00fcmr\u00fct YILMAZ","screen_name":"ZmrtY","location":null,"url":null,"description":"Leb dedim de leblebiyi daha derinden i\u015fitemedim.","protected":false,"verified":false,"followers_count":966,"friends_count":1332,"listed_count":2,"favourites_count":1768,"statuses_count":5736,"created_at":"Sat Nov 12 17:44:01 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/837260816\/83cfd1273af3a16d3b2e1340fb5633bf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/837260816\/83cfd1273af3a16d3b2e1340fb5633bf.jpeg","profile_background_tile":true,"profile_link_color":"F00909","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C2C0B7","profile_text_color":"1390C2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635519345037328384\/tKHRxYUB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635519345037328384\/tKHRxYUB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/410867948\/1365420547","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"komisyonumadokunma","indices":[67,86]}],"urls":[],"user_mentions":[{"screen_name":"TCHazine","name":"Hazine M\u00fcste\u015farl\u0131\u011f\u0131","id":296099242,"id_str":"296099242","indices":[88,97]},{"screen_name":"RHisarciklioglu","name":"Rifat Hisarc\u0131kl\u0131o\u011flu","id":175716739,"id_str":"175716739","indices":[98,114]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080082665"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089478795264,"id_str":"663728089478795264","text":"RT @izumi516: \u3046\u3093\uff01\u3084\u306f\u308a\u30d4\u30f3\u30af\u306e\u30cd\u30bf\u4f55\u3068\u304b\u3057\u305f\u304b\u3063\u305f...\uff01 http:\/\/t.co\/2KE1zjQ6yi","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320099826,"id_str":"3320099826","name":"\u99c4\u72ac@\u77f3\u5207\u4e38\u611b\u3092\u62d7\u3089\u305b\u308b\u3068\u3053\u3046\u306a\u308a\u307e\u3059","screen_name":"dahentaiken","location":"\u306c\u304f\u306c\u304f\u3057\u304a\u308b\u5200\u5263\u4e71\u821e\u6cbc","url":"http:\/\/www.pixiv.net\/member.php?id=9305455","description":"\u77f3\u5207\u4e38\u304c\u5c0a\u3059\u304e\u3066\u611b\u60c5\u3092\u62d7\u3089\u305b\u3066\u307e\u3059\u3002\u611b\u304c\u30a8\u30ed\u65b9\u9762\u306b\u5411\u304f\u3053\u3068\u3057\u3070\u3057\u3070\u3002\u5b9a\u671f\u306e\u3088\u3046\u306b\u77f3\u5207\u4e38\u5c0a\u3044\u3068\u545f\u304f\u5b89\u5fc3\u5b89\u5b9a\u306e\u77f3\u5207\u4e38\u53a8\u3002\/\u5200\u5263\u305f\u3061\u306b\u6ce8\u3050\u611b\u306f\u5e73\u7b49\u306b\u3002\u7686\u304b\u308f\u3086\u3044\/\u5200\u5263\u611b\u3092\u5206\u304b\u3061\u5408\u3044\u305f\u3044\/pixiv\u3067\u7d30\u3005\u3068\u5c0f\u8aac\u66f8\u3044\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":10,"friends_count":22,"listed_count":0,"favourites_count":1095,"statuses_count":1363,"created_at":"Wed Aug 19 14:41:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634016182790569984\/kTNFU-dm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634016182790569984\/kTNFU-dm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320099826\/1439995689","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue May 26 07:45:22 +0000 2015","id":603104624434749440,"id_str":"603104624434749440","text":"\u3046\u3093\uff01\u3084\u306f\u308a\u30d4\u30f3\u30af\u306e\u30cd\u30bf\u4f55\u3068\u304b\u3057\u305f\u304b\u3063\u305f...\uff01 http:\/\/t.co\/2KE1zjQ6yi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112579706,"id_str":"112579706","name":"Izumi","screen_name":"izumi516","location":null,"url":"http:\/\/izumito.blog124.fc2.com\/","description":"\u611b\u3055\u3048\u3042\u308c\u3070\u81ea\u5206\u3089\u3057\u304f\u3044\u304d\u3066\u3044\u3051\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":90113,"friends_count":130,"listed_count":2068,"favourites_count":1800,"statuses_count":2801,"created_at":"Tue Feb 09 00:54:59 +0000 2010","utc_offset":28800,"time_zone":"Taipei","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583294689077370880\/haCidlOi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583294689077370880\/haCidlOi_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19862,"favorite_count":55547,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":603104622836781056,"id_str":"603104622836781056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","url":"http:\/\/t.co\/2KE1zjQ6yi","display_url":"pic.twitter.com\/2KE1zjQ6yi","expanded_url":"http:\/\/twitter.com\/izumi516\/status\/603104624434749440\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":663,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":1106,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":603104622836781056,"id_str":"603104622836781056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","url":"http:\/\/t.co\/2KE1zjQ6yi","display_url":"pic.twitter.com\/2KE1zjQ6yi","expanded_url":"http:\/\/twitter.com\/izumi516\/status\/603104624434749440\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":663,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":1106,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"izumi516","name":"Izumi","id":112579706,"id_str":"112579706","indices":[3,12]}],"symbols":[],"media":[{"id":603104622836781056,"id_str":"603104622836781056","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","url":"http:\/\/t.co\/2KE1zjQ6yi","display_url":"pic.twitter.com\/2KE1zjQ6yi","expanded_url":"http:\/\/twitter.com\/izumi516\/status\/603104624434749440\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":663,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":1106,"resize":"fit"}},"source_status_id":603104624434749440,"source_status_id_str":"603104624434749440","source_user_id":112579706,"source_user_id_str":"112579706"}]},"extended_entities":{"media":[{"id":603104622836781056,"id_str":"603104622836781056","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF6odYaVEAAd0mz.png","url":"http:\/\/t.co\/2KE1zjQ6yi","display_url":"pic.twitter.com\/2KE1zjQ6yi","expanded_url":"http:\/\/twitter.com\/izumi516\/status\/603104624434749440\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":663,"resize":"fit"},"small":{"w":340,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":999,"h":1106,"resize":"fit"}},"source_status_id":603104624434749440,"source_status_id_str":"603104624434749440","source_user_id":112579706,"source_user_id_str":"112579706"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082660"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089491337217,"id_str":"663728089491337217","text":"\u96fb\u8a71\u3059\u308b\u3063\u3066\u8a00\u3063\u3068\u304d\u306a\u304c\u3089\n\u653e\u7f6e\u3057\u3066\u3057\u307e\u3044\u307e\u3057\u305f(\u00b4\uff65_\uff65`)\n\u307b\u3093\u3068\u60aa\u304b\u3063\u305f\u2026\n\n\u8b1d\u3063\u305f\u311f( \uff65\u04e9\uff65 )\u310f\n\u3061\u3083\u3093\u3068\u8b1d\u308a\u307e\u3057\u305f\u311f( \uff65\u04e9\uff65 )\u310f\n\n\u305d\u3057\u3066\u306b\u3084\u3051\u3066\u307e\u3057\u305f\u3002\uff08\u7b11\uff09\n\u306b\u3084\u3051\u307e\u3093\u3060\u306d\u3048\u311f( \uff65\u04e9\uff65 )\u310f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723410501,"id_str":"2723410501","name":"\u3086\u305f\u30b7\u30a3@BH5 \u30dc\u30fc\u30ca\u30b9\u3042\u304f","screen_name":"yutasy_BH5","location":"\u9e7f\u5150\u5cf6\u52e2","url":null,"description":"\u30aa\u30c3\u30b5\u30f3\u306b\u3088\u304f\u8a71\u3057\u304b\u3051\u3089\u308c\u308b\u8eca\u4e57\u3063\u3066\u307e\u3059\n\u30af\u30bd\u30ea\u30d7\u306f\u30b9\u30eb\u30fc\u3057\u307e\u3059 \uff8c\uff6b\uff9b\uff8a\uff9e\u5e0c\u671b\u306f\u30ea\u30d7\u3067\u3002\n\u8eca\u3084\u3089\u604b\u611b\u3084\u3089\u30cd\u30bf\u3084\u3089\u30c4\u30a4\u30fc\u30c8\u6df7\u305c\u7cfb\u7537\u5b50\u2661 10,27\uff5e \u306a\u3064\u304d","protected":false,"verified":false,"followers_count":846,"friends_count":516,"listed_count":5,"favourites_count":21564,"statuses_count":19166,"created_at":"Mon Aug 11 07:11:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661731096464257024\/328yHbK__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661731096464257024\/328yHbK__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723410501\/1446603936","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082663"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495568385,"id_str":"663728089495568385","text":"literally me https:\/\/t.co\/Gy6uyNa0MY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293278687,"id_str":"293278687","name":"karenmaday","screen_name":"fabulousmaday","location":"ABQ, nm","url":null,"description":"it is what it is. bye","protected":false,"verified":false,"followers_count":882,"friends_count":494,"listed_count":1,"favourites_count":1286,"statuses_count":72988,"created_at":"Thu May 05 02:15:45 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131BBD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/802232808\/bd11199a42538814b1cabdf43dddeeae.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/802232808\/bd11199a42538814b1cabdf43dddeeae.jpeg","profile_background_tile":true,"profile_link_color":"557FEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659208185778016256\/Ga6xbeC__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659208185778016256\/Ga6xbeC__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293278687\/1446083980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663702752351121408,"quoted_status_id_str":"663702752351121408","quoted_status":{"created_at":"Mon Nov 09 13:00:41 +0000 2015","id":663702752351121408,"id_str":"663702752351121408","text":"please stop asking me about my future ill cry","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256986185,"id_str":"256986185","name":"savage","screen_name":"sayingsforgirls","location":null,"url":"http:\/\/howteens.com","description":"Be weird.","protected":false,"verified":false,"followers_count":2030450,"friends_count":221,"listed_count":5212,"favourites_count":4092,"statuses_count":55996,"created_at":"Thu Feb 24 13:42:02 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589111356860698625\/5esJ8E_l.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589111356860698625\/5esJ8E_l.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"D64D7F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617140898804031488\/2j5e--8G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617140898804031488\/2j5e--8G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256986185\/1435972821","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Gy6uyNa0MY","expanded_url":"https:\/\/twitter.com\/sayingsforgirls\/status\/663702752351121408","display_url":"twitter.com\/sayingsforgirl\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089466281984,"id_str":"663728089466281984","text":"Yiannis Stankoglou ou Jean Dujardin, eu ap\u00f3io. \"14 atores n\u00e3o-brit\u00e2nicos que poderiam ser o pr\u00f3ximo James Bond: https:\/\/t.co\/Q1om9jdo4s.\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44183187,"id_str":"44183187","name":"Felipe","screen_name":"oicasas","location":null,"url":"http:\/\/instagram.com\/oicasas","description":"Jornalista de forma\u00e7\u00e3o, publicit\u00e1rio por atua\u00e7\u00e3o e psic\u00f3logo de cora\u00e7\u00e3o.","protected":false,"verified":false,"followers_count":138,"friends_count":93,"listed_count":14,"favourites_count":875,"statuses_count":17326,"created_at":"Tue Jun 02 19:11:42 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563068815357931520\/sG9Qlrb8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563068815357931520\/sG9Qlrb8.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660133478860759040\/5d4gatIR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660133478860759040\/5d4gatIR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44183187\/1446568528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q1om9jdo4s","expanded_url":"http:\/\/www.brasilpost.com.br\/2015\/11\/04\/atores-nao-britanicos-james-bond_n_8473334.html","display_url":"brasilpost.com.br\/2015\/11\/04\/ato\u2026","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080082657"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487142912,"id_str":"663728089487142912","text":"RT @misstori64: How to impress regular girls vs how to impress me\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a http:\/\/t.co\/eClS0a4ErE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193738620,"id_str":"3193738620","name":"Punkin\u2763","screen_name":"stardivaaaaa","location":null,"url":null,"description":"Can't break what you didn't build, can't nobody break me but me\u2693\ufe0f .","protected":false,"verified":false,"followers_count":268,"friends_count":159,"listed_count":0,"favourites_count":235,"statuses_count":8440,"created_at":"Wed May 13 01:31:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599305414019125248\/FQ2lyDr8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599305414019125248\/FQ2lyDr8.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663404921681637376\/BKlaOplf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663404921681637376\/BKlaOplf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193738620\/1447003744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 29 19:50:36 +0000 2015","id":626479961684099072,"id_str":"626479961684099072","text":"How to impress regular girls vs how to impress me\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a\ud83d\ude0a http:\/\/t.co\/eClS0a4ErE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":605772133,"id_str":"605772133","name":"T O R I\u2728\u2764\ufe0f","screen_name":"misstori64","location":"somewhere by myself\u2764\ufe0f","url":null,"description":"Maysee BestFriend\u2764\ufe0f love you-angelique\u2728 @8xcaptain \u2764\ufe0f sc:torriayy kera was here @boyslovekera \u2764\ufe0f kaya\u2763","protected":false,"verified":false,"followers_count":1118,"friends_count":1620,"listed_count":2,"favourites_count":1454,"statuses_count":26811,"created_at":"Mon Jun 11 21:40:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658343602901417985\/EXPYK58O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658343602901417985\/EXPYK58O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/605772133\/1446996848","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25323,"favorite_count":12989,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":626479950548238336,"id_str":"626479950548238336","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":626479950548238336,"id_str":"626479950548238336","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}},{"id":626479950565015552,"id_str":"626479950565015552","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MiBVAAAu3u7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MiBVAAAu3u7.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}},{"id":626479950648836096,"id_str":"626479950648836096","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MiVUAAAFxXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MiVUAAAFxXj.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":626479950917308416,"id_str":"626479950917308416","indices":[67,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MjVUkAArFft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MjVUkAArFft.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"misstori64","name":"T O R I\u2728\u2764\ufe0f","id":605772133,"id_str":"605772133","indices":[3,14]}],"symbols":[],"media":[{"id":626479950548238336,"id_str":"626479950548238336","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":626479961684099072,"source_status_id_str":"626479961684099072","source_user_id":605772133,"source_user_id_str":"605772133"}]},"extended_entities":{"media":[{"id":626479950548238336,"id_str":"626479950548238336","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0Mh9VAAAkwcR.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":626479961684099072,"source_status_id_str":"626479961684099072","source_user_id":605772133,"source_user_id_str":"605772133"},{"id":626479950565015552,"id_str":"626479950565015552","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MiBVAAAu3u7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MiBVAAAu3u7.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":626479961684099072,"source_status_id_str":"626479961684099072","source_user_id":605772133,"source_user_id_str":"605772133"},{"id":626479950648836096,"id_str":"626479950648836096","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MiVUAAAFxXj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MiVUAAAFxXj.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":626479961684099072,"source_status_id_str":"626479961684099072","source_user_id":605772133,"source_user_id_str":"605772133"},{"id":626479950917308416,"id_str":"626479950917308416","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CLG0MjVUkAArFft.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLG0MjVUkAArFft.jpg","url":"http:\/\/t.co\/eClS0a4ErE","display_url":"pic.twitter.com\/eClS0a4ErE","expanded_url":"http:\/\/twitter.com\/misstori64\/status\/626479961684099072\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":626479961684099072,"source_status_id_str":"626479961684099072","source_user_id":605772133,"source_user_id_str":"605772133"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082662"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089466208256,"id_str":"663728089466208256","text":"@suzusiro_727 \u3068\u3042\u308b\u5909\u614b\u304b\u3089\u3001\u3069\u3053\u305d\u3053\u306e\u96e3\u6613\u5ea6\u306e\u30ec\u30d9\u30eb\u307e\u3067\u306b\u68d2\u3092\u4f7f\u3046\u306e\u306f\u4e09\u6d41\u3060\u3068\u304b\u805e\u3044\u305f\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\u79c1\u306f\u307e\u3060\u4e8c\u672c\u306e\u8db3\u3067\u51fa\u6765\u308b\u7bc4\u56f2\u3057\u304b\u51fa\u6765\u307e\u305b\u3093\u3002#\u65e5\u672c\u8a9e\u304c\u304a\u304b\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663313496793214976,"in_reply_to_status_id_str":"663313496793214976","in_reply_to_user_id":1330985252,"in_reply_to_user_id_str":"1330985252","in_reply_to_screen_name":"suzusiro_727","user":{"id":98781655,"id_str":"98781655","name":"\u304b\u3053","screen_name":"kakonya","location":null,"url":null,"description":"\u8da3\u5473\u7684\u306a\u30b3\u30e1\u30f3\u30c8\u3057\u3064\u3064\u6c17\u307e\u307e\u306b\u3084\u3063\u3066\u307e\u3059\u2606\u3076\u3063\u3061\u3083\u3051\u30aa\u30bf\u30af\u3067\u8150\u5973\u5b50\u306a\u306e\u3067\u95b2\u89a7\u306b\u306f\u3054\u6ce8\u610f\u3002\u307e\u3041\u30ac\u30c3\u30c4\u30ea\u8150\u3063\u305f\u306e\u306f\u81ea\u91cd\u3057\u3066\u307e\u3059\u304c\uff08\u5f53\u793e\u6bd4\uff09\u3002","protected":false,"verified":false,"followers_count":33,"friends_count":54,"listed_count":6,"favourites_count":3,"statuses_count":5349,"created_at":"Wed Dec 23 03:15:54 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519031392\/0df70d60.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519031392\/0df70d60.jpg","profile_background_tile":true,"profile_link_color":"007BFF","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563338365366333440\/4bPbg1-K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563338365366333440\/4bPbg1-K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98781655\/1415027246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u65e5\u672c\u8a9e\u304c\u304a\u304b\u3057\u3044","indices":[81,90]}],"urls":[],"user_mentions":[{"screen_name":"suzusiro_727","name":"\u3059\u305a\u3057\u308d@\u9b54\u9a0e\u58eb\u3060\u3068\u601d\u3044\u305f\u3044","id":1330985252,"id_str":"1330985252","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082657"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470341120,"id_str":"663728089470341120","text":"RT @zakoshisyoh: \u30c9\u30e9\u30af\u30a8\u306e\u6575\u3082\u306e\u307e\u306d27\u3000\u304a\u3069\u308b\u307b\u3046\u305b\u304d https:\/\/t.co\/uNpywEkVVA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2825448194,"id_str":"2825448194","name":"\u304d\u306b\u3087","screen_name":"kinochandesuyo","location":"\u65e5\u672c","url":null,"description":"\u3082\u306e\u3059\u3054\u304f\u3046\u308b\u3055\u304f\u3066\u3001\u3042\u308a\u3048\u306a\u3044\u307b\u3069\u8fd1\u3044\u4fbf\u901a","protected":false,"verified":false,"followers_count":794,"friends_count":1298,"listed_count":7,"favourites_count":3897,"statuses_count":38931,"created_at":"Mon Sep 22 01:52:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663627402057117696\/nKexsiGz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663627402057117696\/nKexsiGz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2825448194\/1447056052","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:23:23 +0000 2015","id":663708462153515016,"id_str":"663708462153515016","text":"\u30c9\u30e9\u30af\u30a8\u306e\u6575\u3082\u306e\u307e\u306d27\u3000\u304a\u3069\u308b\u307b\u3046\u305b\u304d https:\/\/t.co\/uNpywEkVVA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141215262,"id_str":"141215262","name":"\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6","screen_name":"zakoshisyoh","location":"\u5730\u7344\u306e\u56db\u4e01\u76ee","url":"http:\/\/ameblo.jp\/hollywood-zakoshisyoh\/","description":"\u30ad\u30f3\u30b0OF\u3042\u3089\u3073\u304d\u306e\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6\u3067\u30fc\u3059\uff01\u30ac\u30c3\u30c4\u30ea\u30ac\u30c3\u30c4\uff01\uff01","protected":false,"verified":false,"followers_count":16162,"friends_count":284,"listed_count":511,"favourites_count":0,"statuses_count":8477,"created_at":"Fri May 07 13:26:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608838862492688384\/YKwPp45Y.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608838862492688384\/YKwPp45Y.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/882538663\/___30_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882538663\/___30_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141215262\/1431158346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":686,"favorite_count":517,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708460651954177,"id_str":"663708460651954177","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708460651954177,"id_str":"663708460651954177","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}},{"id":663708460425416704,"id_str":"663708460425416704","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VAoUEAA_Qkp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VAoUEAA_Qkp.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zakoshisyoh","name":"\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6","id":141215262,"id_str":"141215262","indices":[3,15]}],"symbols":[],"media":[{"id":663708460651954177,"id_str":"663708460651954177","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663708462153515016,"source_status_id_str":"663708462153515016","source_user_id":141215262,"source_user_id_str":"141215262"}]},"extended_entities":{"media":[{"id":663708460651954177,"id_str":"663708460651954177","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VBeUwAETzwX.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663708462153515016,"source_status_id_str":"663708462153515016","source_user_id":141215262,"source_user_id_str":"141215262"},{"id":663708460425416704,"id_str":"663708460425416704","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3VAoUEAA_Qkp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3VAoUEAA_Qkp.jpg","url":"https:\/\/t.co\/uNpywEkVVA","display_url":"pic.twitter.com\/uNpywEkVVA","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663708462153515016\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663708462153515016,"source_status_id_str":"663708462153515016","source_user_id":141215262,"source_user_id_str":"141215262"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495674880,"id_str":"663728089495674880","text":"\u0627\u062c\u062f\u062f \u0641\u064a\u0644\u0645\u064a\u0646 \u0639\u0631\u0628\u0649 \u0633\u0639\u0648\u062f\u064a\u0647 \u0628\u062a\u062a\u0646\u0627\u0643 \u0641\u0649 \u0637\u064a\u0632\u0647\u0627 \u0648\u0645\u063a\u0631\u0628\u064a\u0647 \u0628\u062a\u0639\u0631\u0636 \u0639\u0644\u0649 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627 \u062c\u0633\u0645\u0647\u0627 \u0627\u0644\u0627\u0628\u064a\u0636 \u0627\u0644\u062c\u0645\u064a\u0644 https:\/\/t.co\/HnKNEsTjCl via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3235112908,"id_str":"3235112908","name":"Harshit Lemmen","screen_name":"cefikivozyro","location":"Scranton, PA","url":null,"description":"Gars de qu\u00e9bec... passion pour l'informatique le voyage la course a pied et la radio amateur .","protected":false,"verified":false,"followers_count":14,"friends_count":137,"listed_count":0,"favourites_count":0,"statuses_count":28,"created_at":"Tue May 05 06:21:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618738849326338048\/CCEgW-3__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618738849326338048\/CCEgW-3__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3235112908\/1436031925","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HnKNEsTjCl","expanded_url":"http:\/\/sco.lt\/5QLZKr","display_url":"sco.lt\/5QLZKr","indices":[87,110]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[115,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080082664"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089470509056,"id_str":"663728089470509056","text":"@EdmontonOilers Hey, it's too late now for them to say sorry ...","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725722947612673,"in_reply_to_status_id_str":"663725722947612673","in_reply_to_user_id":15361389,"in_reply_to_user_id_str":"15361389","in_reply_to_screen_name":"EdmontonOilers","user":{"id":169251920,"id_str":"169251920","name":"Edmonton Oil Kings","screen_name":"EdmOilKings","location":"Edmonton, AB, Canada","url":"http:\/\/www.oilkings.ca","description":"The official Twitter profile of the Edmonton Oil Kings of the Western Hockey League.","protected":false,"verified":false,"followers_count":37219,"friends_count":359,"listed_count":384,"favourites_count":100,"statuses_count":26477,"created_at":"Wed Jul 21 22:28:26 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000076167535\/26d340d3ae3c451570ec7e472b5a6c5c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000076167535\/26d340d3ae3c451570ec7e472b5a6c5c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2950525476\/9f61e1423b9e6eb81bc96eb4ae7d9640_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2950525476\/9f61e1423b9e6eb81bc96eb4ae7d9640_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169251920\/1431381812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EdmontonOilers","name":"Edmonton Oilers","id":15361389,"id_str":"15361389","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082658"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089478877184,"id_str":"663728089478877184","text":"\u0627\u062c\u062f\u062f \u0641\u064a\u0644\u0645\u064a\u0646 \u0639\u0631\u0628\u0649 \u0633\u0639\u0648\u062f\u064a\u0647 \u0628\u062a\u062a\u0646\u0627\u0643 \u0641\u0649 \u0637\u064a\u0632\u0647\u0627 \u0648\u0645\u063a\u0631\u0628\u064a\u0647 \u0628\u062a\u0639\u0631\u0636 \u0639\u0644\u0649 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0627 \u062c\u0633\u0645\u0647\u0627 \u0627\u0644\u0627\u0628\u064a\u0636 \u0627\u0644\u062c\u0645\u064a\u0644 https:\/\/t.co\/8188McVaUd via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185927965,"id_str":"3185927965","name":"Jeronym Erangey","screen_name":"ciwurutabap","location":"Wauseon, OH","url":null,"description":"hi this is the real fan of nia from dance moms! Never stop following your dreams! :)","protected":false,"verified":false,"followers_count":17,"friends_count":128,"listed_count":0,"favourites_count":0,"statuses_count":28,"created_at":"Tue May 05 06:19:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618738721752420352\/tuSekCku_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618738721752420352\/tuSekCku_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185927965\/1436031920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8188McVaUd","expanded_url":"http:\/\/sco.lt\/5QLZKr","display_url":"sco.lt\/5QLZKr","indices":[87,110]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[115,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080082660"} +{"delete":{"status":{"id":634496336528830465,"id_str":"634496336528830465","user_id":3185785562,"user_id_str":"3185785562"},"timestamp_ms":"1447080082837"}} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487163392,"id_str":"663728089487163392","text":"@_mvllv_ HAPPY BIRTHDAY COUSINNNNNN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2154386080,"in_reply_to_user_id_str":"2154386080","in_reply_to_screen_name":"_mvllv_","user":{"id":525852695,"id_str":"525852695","name":"Diamond","screen_name":"AyoGorgeous19","location":null,"url":"http:\/\/twitter.com","description":null,"protected":false,"verified":false,"followers_count":414,"friends_count":556,"listed_count":0,"favourites_count":392,"statuses_count":1025,"created_at":"Thu Mar 15 23:37:43 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647304746034790400\/oXJ0D1iF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647304746034790400\/oXJ0D1iF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/525852695\/1442705885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_mvllv_","name":"It's My Birthday","id":2154386080,"id_str":"2154386080","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082662"} +{"delete":{"status":{"id":634496852440842248,"id_str":"634496852440842248","user_id":2729626608,"user_id_str":"2729626608"},"timestamp_ms":"1447080082837"}} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089504030720,"id_str":"663728089504030720","text":"Bosco verticale !!! Simply amazing \ud83d\udc4c https:\/\/t.co\/ySuagRj7v3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64051975,"id_str":"64051975","name":"Larry Laffer","screen_name":"Lounge_lizard_","location":"Attica, Greece","url":null,"description":"I balance, I weave, I dodge, I frolic, and my bills are paid..number cruncher..\u03b4\u03b5\u03b9\u03bd\u03cc\u03c2 \u03bc\u03ac\u03b3\u03b5\u03b9\u03c1\u03b1\u03c2..\u03bb\u03b9\u03b3\u03bf\u03c5\u03bb\u03ac\u03ba\u03b9 \u03b5\u03c1\u03c9\u03c4\u03b9\u03ba\u03cc\u03c2..\u03b8\u03b1 \u03ad\u03bb\u03b5\u03b3\u03b1 \u03c3\u03c5\u03bc\u03c0\u03b1\u03b8\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2.","protected":false,"verified":false,"followers_count":393,"friends_count":439,"listed_count":7,"favourites_count":3171,"statuses_count":2611,"created_at":"Sat Aug 08 22:06:45 +0000 2009","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598887840462737409\/ohoU3ze3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598887840462737409\/ohoU3ze3.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630917443607629824\/kTdieA2l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630917443607629824\/kTdieA2l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64051975\/1442513048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728076908548096,"id_str":"663728076908548096","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK1uWUAAIpZO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK1uWUAAIpZO.jpg","url":"https:\/\/t.co\/ySuagRj7v3","display_url":"pic.twitter.com\/ySuagRj7v3","expanded_url":"http:\/\/twitter.com\/Lounge_lizard_\/status\/663728089504030720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":696,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":827,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728076908548096,"id_str":"663728076908548096","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJK1uWUAAIpZO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJK1uWUAAIpZO.jpg","url":"https:\/\/t.co\/ySuagRj7v3","display_url":"pic.twitter.com\/ySuagRj7v3","expanded_url":"http:\/\/twitter.com\/Lounge_lizard_\/status\/663728089504030720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":468,"resize":"fit"},"large":{"w":696,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":827,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080082666"} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089487294464,"id_str":"663728089487294464","text":"@vika_zeynalova \u0434\u0430 \u043d\u0435 \u0437\u0430 \u0447\u0442\u043e)\n\u0421\u043c\u043e\u0442\u0440\u0438 \u0435\u0449\u0451 \u043b\u043f \u0441\u0435\u0439\u0447\u0430\u0441 \u043d\u0430\u043f\u0438\u0441\u0430\u043b\u0430 \ud83d\ude02\ud83d\ude08 https:\/\/t.co\/IoprOcyyjj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727819462041600,"in_reply_to_status_id_str":"663727819462041600","in_reply_to_user_id":2849520545,"in_reply_to_user_id_str":"2849520545","in_reply_to_screen_name":"vika_zeynalova","user":{"id":1920967225,"id_str":"1920967225","name":"\u0433\u0438\u0442\u0430\u0440\u0430\/\u0413\u0415\u041d\u041d\u0410\u0414\u0418\u0419","screen_name":"takeyoutoaw","location":"4.09.15\u272823:13 ","url":null,"description":"what a feeling to be right here beside you now,holding you in my arms?","protected":false,"verified":false,"followers_count":14709,"friends_count":10053,"listed_count":55,"favourites_count":4978,"statuses_count":60800,"created_at":"Mon Sep 30 18:37:53 +0000 2013","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636984638825742336\/ZITHMYCK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636984638825742336\/ZITHMYCK.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662946270907113472\/T9i-axue_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662946270907113472\/T9i-axue_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1920967225\/1446893719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vika_zeynalova","name":"\u2735\u2736\u013a\u00e2\u0155r\u00ff i\u015b r\u00e9\u00e5l\u2735\u2736","id":2849520545,"id_str":"2849520545","indices":[0,15]}],"symbols":[],"media":[{"id":663728021048692736,"id_str":"663728021048692736","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHloUkAA7c_8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHloUkAA7c_8.jpg","url":"https:\/\/t.co\/IoprOcyyjj","display_url":"pic.twitter.com\/IoprOcyyjj","expanded_url":"http:\/\/twitter.com\/takeyoutoaw\/status\/663728089487294464\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728021048692736,"id_str":"663728021048692736","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHloUkAA7c_8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHloUkAA7c_8.jpg","url":"https:\/\/t.co\/IoprOcyyjj","display_url":"pic.twitter.com\/IoprOcyyjj","expanded_url":"http:\/\/twitter.com\/takeyoutoaw\/status\/663728089487294464\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663728022021799936,"id_str":"663728022021799936","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHpQVAAAu6aA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHpQVAAAu6aA.jpg","url":"https:\/\/t.co\/IoprOcyyjj","display_url":"pic.twitter.com\/IoprOcyyjj","expanded_url":"http:\/\/twitter.com\/takeyoutoaw\/status\/663728089487294464\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080082662"} +{"delete":{"status":{"id":455646222766723073,"id_str":"455646222766723073","user_id":258237632,"user_id_str":"258237632"},"timestamp_ms":"1447080082946"}} +{"delete":{"status":{"id":456057927241973760,"id_str":"456057927241973760","user_id":258237632,"user_id_str":"258237632"},"timestamp_ms":"1447080082983"}} +{"created_at":"Mon Nov 09 14:41:22 +0000 2015","id":663728089495547904,"id_str":"663728089495547904","text":"( @midare_u1d ) \u85ac\u4e71\u3067\u3059\u3002\u304a\u984c\u300c\u904b\u8a66\u3057\u300d\u904b\u8a66\u3057\u306b\u306a\u3063\u3066\u308b\u3088\u3046\u306a\u306a\u3063\u3066\u306a\u3044\u3088\u3046\u306a\u3002\u3002\u3002#\u4e71\u53d7\u3051\u7248\u6df1\u591c\u306e\u5275\u4f5c60\u5206\u4e00\u672c\u52dd\u8ca0 https:\/\/t.co\/CnljxMu93s","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225819848,"id_str":"3225819848","name":"\u30df\u30ca\u30df\uff20\u5200\u57a2","screen_name":"minaranbu","location":"\u4e71\u304f\u3093\u306e\u592a\u3082\u3082\u3059\u304d","url":null,"description":"\u5200\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u7c9f\u7530\u53e3\u3059\u304d\u30fc\u3067\u85ac\u7814\u541b\u3068\u9cf4\u72d0\u304c\u5358\u4f53\u3067\u7279\u306b\u597d\u304d\u3002\u4e71\u304f\u3093\u3068\u4e94\u864e\u9000\u3061\u3083\u3093\u306f\u6211\u304c\u672c\u4e38\u306e\u30a2\u30a4\u30c9\u30eb\u3002\u545f\u304d\u5c11\u306a\u3081\u3002\u96d1\u98df\u306a\u306e\u3067\u3001\u30ea\u30d0\u3067\u3082\u3069\u3093\u306a\u30ab\u30d7\u3067\u3082\u304a\u3044\u3057\u3044(((((\u30fb\u03c9\u30fb))))","protected":false,"verified":false,"followers_count":15,"friends_count":15,"listed_count":0,"favourites_count":68,"statuses_count":348,"created_at":"Mon May 25 03:54:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646464396512722944\/D4rcILyR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646464396512722944\/D4rcILyR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225819848\/1443028964","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4e71\u53d7\u3051\u7248\u6df1\u591c\u306e\u5275\u4f5c60\u5206\u4e00\u672c\u52dd\u8ca0","indices":[50,67]}],"urls":[],"user_mentions":[{"screen_name":"midare_u1d","name":"\u4e71\u53d7\u3051\u7248\u6df1\u591c\u306e\u5275\u4f5c60\u5206\u4e00\u672c\u52dd\u8ca0\u904b\u55b6","id":3102528158,"id_str":"3102528158","indices":[2,13]}],"symbols":[],"media":[{"id":663728088677642240,"id_str":"663728088677642240","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLhkUcAA9QDZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLhkUcAA9QDZ.png","url":"https:\/\/t.co\/CnljxMu93s","display_url":"pic.twitter.com\/CnljxMu93s","expanded_url":"http:\/\/twitter.com\/minaranbu\/status\/663728089495547904\/photo\/1","type":"photo","sizes":{"large":{"w":449,"h":635,"resize":"fit"},"medium":{"w":449,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":479,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728088677642240,"id_str":"663728088677642240","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLhkUcAA9QDZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLhkUcAA9QDZ.png","url":"https:\/\/t.co\/CnljxMu93s","display_url":"pic.twitter.com\/CnljxMu93s","expanded_url":"http:\/\/twitter.com\/minaranbu\/status\/663728089495547904\/photo\/1","type":"photo","sizes":{"large":{"w":449,"h":635,"resize":"fit"},"medium":{"w":449,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":479,"resize":"fit"}}},{"id":663728088589594624,"id_str":"663728088589594624","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLhPU8AACbq1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLhPU8AACbq1.png","url":"https:\/\/t.co\/CnljxMu93s","display_url":"pic.twitter.com\/CnljxMu93s","expanded_url":"http:\/\/twitter.com\/minaranbu\/status\/663728089495547904\/photo\/1","type":"photo","sizes":{"large":{"w":449,"h":635,"resize":"fit"},"medium":{"w":449,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":479,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080082664"} +{"delete":{"status":{"id":245376128926248962,"id_str":"245376128926248962","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080083086"}} +{"delete":{"status":{"id":656016853207138304,"id_str":"656016853207138304","user_id":1357331394,"user_id_str":"1357331394"},"timestamp_ms":"1447080083167"}} +{"delete":{"status":{"id":663633927370891264,"id_str":"663633927370891264","user_id":457492761,"user_id_str":"457492761"},"timestamp_ms":"1447080083314"}} +{"delete":{"status":{"id":646036322277302272,"id_str":"646036322277302272","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080083369"}} +{"delete":{"status":{"id":658170812852113408,"id_str":"658170812852113408","user_id":3728057359,"user_id_str":"3728057359"},"timestamp_ms":"1447080083348"}} +{"delete":{"status":{"id":522405785117028352,"id_str":"522405785117028352","user_id":2459565192,"user_id_str":"2459565192"},"timestamp_ms":"1447080083439"}} +{"delete":{"status":{"id":663719965111926784,"id_str":"663719965111926784","user_id":3000680430,"user_id_str":"3000680430"},"timestamp_ms":"1447080083521"}} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664776192,"id_str":"663728093664776192","text":"RT @AJArabic: \u0625\u062d\u0627\u0644\u0629 \u0646\u062d\u0648 \u0623\u0644\u0641\u064a \u0645\u0633\u0624\u0648\u0644 \u0645\u0646 \u0628\u064a\u0646\u0647\u0645 \u0648\u0632\u0631\u0627\u0621 \u0644\u0644\u062a\u062d\u0642\u064a\u0642 \u0628\u062a\u0647\u0631\u064a\u0628 \u0645\u0644\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u062f\u0648\u0644\u0627\u0631\u0627\u062a \u0623\u062b\u0646\u0627\u0621 \u062d\u0643\u0645 #\u0627\u0644\u0645\u0627\u0644\u0643\u064a \nhttps:\/\/t.co\/FLRHMokjX3 https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3110284215,"id_str":"3110284215","name":"Ashraf O","screen_name":"7fe5b92ec33942b","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":256,"listed_count":1,"favourites_count":90,"statuses_count":2702,"created_at":"Tue Mar 24 13:30:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580823240706252800\/qz12rdSo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580823240706252800\/qz12rdSo_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:00:10 +0000 2015","id":663657321982226432,"id_str":"663657321982226432","text":"\u0625\u062d\u0627\u0644\u0629 \u0646\u062d\u0648 \u0623\u0644\u0641\u064a \u0645\u0633\u0624\u0648\u0644 \u0645\u0646 \u0628\u064a\u0646\u0647\u0645 \u0648\u0632\u0631\u0627\u0621 \u0644\u0644\u062a\u062d\u0642\u064a\u0642 \u0628\u062a\u0647\u0631\u064a\u0628 \u0645\u0644\u064a\u0627\u0631\u0627\u062a \u0627\u0644\u062f\u0648\u0644\u0627\u0631\u0627\u062a \u0623\u062b\u0646\u0627\u0621 \u062d\u0643\u0645 #\u0627\u0644\u0645\u0627\u0644\u0643\u064a \nhttps:\/\/t.co\/FLRHMokjX3 https:\/\/t.co\/i4rgu7geFf","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5536782,"id_str":"5536782","name":"\u0642\u0646\u0627\u0629 \u0627\u0644\u062c\u0632\u064a\u0631\u0629","screen_name":"AJArabic","location":"Qatar","url":"http:\/\/www.aljazeera.net","description":"\u0627\u0644\u062c\u0632\u064a\u0631\u0629 \u062e\u062f\u0645\u0629 \u0625\u0639\u0644\u0627\u0645\u064a\u0629 \u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0627\u0646\u062a\u0645\u0627\u0621 \u0639\u0627\u0644\u0645\u064a\u0629 \u0627\u0644\u062a\u0648\u062c\u0647 \u0634\u0639\u0627\u0631\u0647\u0627 \u0627\u0644\u0631\u0623\u064a \u0648\u0627\u0644\u0631\u0623\u064a \u0627\u0644\u0622\u062e\u0631\u060c \u0644\u0645\u062a\u0627\u0628\u0639\u0629 \u0623\u0647\u0645 \u0648\u0623\u062d\u062f\u062b \u0627\u0644\u0623\u062e\u0628\u0627\u0631 \u0639\u0644\u0649 \u0645\u062f\u0627\u0631 \u0627\u0644\u0633\u0627\u0639\u0629 \u062a\u0627\u0628\u0639\u0648\u0646\u0627 \u0639\u0644\u0649 @AJABreaking","protected":false,"verified":true,"followers_count":6299585,"friends_count":18,"listed_count":16657,"favourites_count":0,"statuses_count":161494,"created_at":"Thu Apr 26 19:33:12 +0000 2007","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/403041434\/BG_1280X1024.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/403041434\/BG_1280X1024.JPG","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D6DBDE","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451283971846832128\/_272MX7__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451283971846832128\/_272MX7__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5536782\/1446564457","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":86,"favorite_count":103,"entities":{"hashtags":[{"text":"\u0627\u0644\u0645\u0627\u0644\u0643\u064a","indices":[79,87]}],"urls":[{"url":"https:\/\/t.co\/FLRHMokjX3","expanded_url":"http:\/\/aja.me\/para","display_url":"aja.me\/para","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663657321441173508,"id_str":"663657321441173508","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","url":"https:\/\/t.co\/i4rgu7geFf","display_url":"pic.twitter.com\/i4rgu7geFf","expanded_url":"http:\/\/twitter.com\/AJArabic\/status\/663657321982226432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":354,"resize":"fit"},"large":{"w":747,"h":441,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663657321441173508,"id_str":"663657321441173508","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","url":"https:\/\/t.co\/i4rgu7geFf","display_url":"pic.twitter.com\/i4rgu7geFf","expanded_url":"http:\/\/twitter.com\/AJArabic\/status\/663657321982226432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":354,"resize":"fit"},"large":{"w":747,"h":441,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0645\u0627\u0644\u0643\u064a","indices":[93,101]}],"urls":[{"url":"https:\/\/t.co\/FLRHMokjX3","expanded_url":"http:\/\/aja.me\/para","display_url":"aja.me\/para","indices":[103,126]}],"user_mentions":[{"screen_name":"AJArabic","name":"\u0642\u0646\u0627\u0629 \u0627\u0644\u062c\u0632\u064a\u0631\u0629","id":5536782,"id_str":"5536782","indices":[3,12]}],"symbols":[],"media":[{"id":663657321441173508,"id_str":"663657321441173508","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","url":"https:\/\/t.co\/i4rgu7geFf","display_url":"pic.twitter.com\/i4rgu7geFf","expanded_url":"http:\/\/twitter.com\/AJArabic\/status\/663657321982226432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":354,"resize":"fit"},"large":{"w":747,"h":441,"resize":"fit"}},"source_status_id":663657321982226432,"source_status_id_str":"663657321982226432","source_user_id":5536782,"source_user_id_str":"5536782"}]},"extended_entities":{"media":[{"id":663657321441173508,"id_str":"663657321441173508","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXI0VEWoAQaA8v.jpg","url":"https:\/\/t.co\/i4rgu7geFf","display_url":"pic.twitter.com\/i4rgu7geFf","expanded_url":"http:\/\/twitter.com\/AJArabic\/status\/663657321982226432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":354,"resize":"fit"},"large":{"w":747,"h":441,"resize":"fit"}},"source_status_id":663657321982226432,"source_status_id_str":"663657321982226432","source_user_id":5536782,"source_user_id_str":"5536782"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698392064,"id_str":"663728093698392064","text":"Use tudo e todos que voc\u00ea quiser prove que o amor \u00e9 pra quem n\u00e3o sabe o que o quer\nBem como eu sou...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322296681,"id_str":"3322296681","name":"\u00a1Adi\u00f3s, David","screen_name":"jogamilho","location":null,"url":null,"description":"Sou a pura radia\u00e7\u00e3o, entro em voc\u00ea sem que sinta e nem que veja, mas mesmo assim consigo te destruir por dentro...","protected":false,"verified":false,"followers_count":942,"friends_count":211,"listed_count":3,"favourites_count":3381,"statuses_count":23971,"created_at":"Sat Jun 13 04:32:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642486323329241088\/ku4qNoRh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642486323329241088\/ku4qNoRh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322296681\/1442015649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698330624,"id_str":"663728093698330624","text":"RT @lxuismyfire: @LOXMendespinosa @JackJackJohnson @Itsnickyhutch @imcalledama IM SO FUCKING PROUD OF YOU AHSSHSJS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1563760243,"id_str":"1563760243","name":"Nicky","screen_name":"Itsnickyhutch","location":"Calibraska","url":"http:\/\/Instagram.com\/itsnickydrew","description":"Seek respect, not attention. It's last longer\u270c\ufe0f TheTide \u007b3\/4\u007d TheVamps\u007b4\/6\u007d","protected":false,"verified":false,"followers_count":461,"friends_count":547,"listed_count":1,"favourites_count":985,"statuses_count":9937,"created_at":"Tue Jul 02 17:48:12 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613119133597757440\/BSOOx7qn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613119133597757440\/BSOOx7qn.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656580548505260032\/69FpDb4C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656580548505260032\/69FpDb4C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1563760243\/1446919061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:25 +0000 2015","id":663727849627602944,"id_str":"663727849627602944","text":"@LOXMendespinosa @JackJackJohnson @Itsnickyhutch @imcalledama IM SO FUCKING PROUD OF YOU AHSSHSJS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727575131377664,"in_reply_to_status_id_str":"663727575131377664","in_reply_to_user_id":3088929754,"in_reply_to_user_id_str":"3088929754","in_reply_to_screen_name":"LOXMendespinosa","user":{"id":1689257126,"id_str":"1689257126","name":"lita","screen_name":"lxuismyfire","location":"buried in a refrigerator","url":"http:\/\/instagram.com\/paulittadolon","description":"I met ed sheeran and shawn mendes so my life is complete.","protected":false,"verified":false,"followers_count":1714,"friends_count":412,"listed_count":13,"favourites_count":18851,"statuses_count":36473,"created_at":"Wed Aug 21 21:18:30 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"75D162","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000058610671\/c2493220eace1767407ccc2ab76994c2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000058610671\/c2493220eace1767407ccc2ab76994c2.jpeg","profile_background_tile":true,"profile_link_color":"E37FBB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599837585960239104\/e9bBCbml_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599837585960239104\/e9bBCbml_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1689257126\/1431847398","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LOXMendespinosa","name":"ann MET J&J","id":3088929754,"id_str":"3088929754","indices":[0,16]},{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[17,33]},{"screen_name":"Itsnickyhutch","name":"Nicky","id":1563760243,"id_str":"1563760243","indices":[34,48]},{"screen_name":"imcalledama","name":"amaranta","id":2441687960,"id_str":"2441687960","indices":[49,61]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lxuismyfire","name":"lita","id":1689257126,"id_str":"1689257126","indices":[3,15]},{"screen_name":"LOXMendespinosa","name":"ann MET J&J","id":3088929754,"id_str":"3088929754","indices":[17,33]},{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[34,50]},{"screen_name":"Itsnickyhutch","name":"Nicky","id":1563760243,"id_str":"1563760243","indices":[51,65]},{"screen_name":"imcalledama","name":"amaranta","id":2441687960,"id_str":"2441687960","indices":[66,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093677420544,"id_str":"663728093677420544","text":"RT @Ment3Sana: Esperamos toda semana pela sexta, todo ano pelas f\u00e9rias, toda vida pela felicidade...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2193269330,"id_str":"2193269330","name":"brunab","screen_name":"brunamb_th","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":490,"friends_count":364,"listed_count":0,"favourites_count":3239,"statuses_count":10377,"created_at":"Thu Nov 14 01:18:24 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607767941241798656\/P0H70zPt.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607767941241798656\/P0H70zPt.jpg","profile_background_tile":true,"profile_link_color":"EEC5F0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659194142506000384\/Nw8DrBKi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659194142506000384\/Nw8DrBKi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193269330\/1442431954","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:05 +0000 2015","id":663727262114672640,"id_str":"663727262114672640","text":"Esperamos toda semana pela sexta, todo ano pelas f\u00e9rias, toda vida pela felicidade...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2230523558,"id_str":"2230523558","name":"Mente Sana","screen_name":"Ment3Sana","location":"S\u00e3o Paulo, Pirituba","url":null,"description":"mens sana in corpore sano | Interesses Publicit\u00e1rios: guilherminodivulga@gmail.com \u2709 https:\/\/instagram.com\/mentt3sana\/","protected":false,"verified":false,"followers_count":254662,"friends_count":19,"listed_count":59,"favourites_count":46,"statuses_count":11318,"created_at":"Wed Dec 04 21:40:59 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595012438765936640\/Xr4hFiw3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595012438765936640\/Xr4hFiw3.jpg","profile_background_tile":true,"profile_link_color":"07EDED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610133578773594112\/iPprFKpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610133578773594112\/iPprFKpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2230523558\/1434925462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":228,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ment3Sana","name":"Mente Sana","id":2230523558,"id_str":"2230523558","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080083661"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698334720,"id_str":"663728093698334720","text":"RT @rb_raheem: its bro BORN DAY @The_Jalen_","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2240083919,"id_str":"2240083919","name":"\u26a0\ufe0fITS MY GLO DAY\u26a0\ufe0f","screen_name":"The_Jalen_","location":"INSTA: _VEINTICINCO_25","url":"http:\/\/www.ButCanYouGuardMe.com","description":"i aint trippin imma let em sleep #WhyNotMe | acm\u2764\ufe0f Snapchat: jalen_johnson25 Instagram: _VEINTICINCO_25 | http:\/\/ballislife.com\/jalen-johnson-summer-mixtape\/","protected":false,"verified":false,"followers_count":2027,"friends_count":358,"listed_count":7,"favourites_count":4227,"statuses_count":2849,"created_at":"Mon Dec 23 16:25:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653407706787782656\/EXDL1bxz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653407706787782656\/EXDL1bxz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2240083919\/1443445518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:42 +0000 2015","id":663722133470773248,"id_str":"663722133470773248","text":"its bro BORN DAY @The_Jalen_","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2265789478,"id_str":"2265789478","name":"HEEM","screen_name":"rb_raheem","location":null,"url":null,"description":"6'5 LAURA","protected":false,"verified":false,"followers_count":816,"friends_count":2089,"listed_count":0,"favourites_count":182,"statuses_count":1364,"created_at":"Mon Jan 06 20:35:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661806260090765312\/l_00PafA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661806260090765312\/l_00PafA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2265789478\/1446621882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"The_Jalen_","name":"\u26a0\ufe0fITS MY GLO DAY\u26a0\ufe0f","id":2240083919,"id_str":"2240083919","indices":[17,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rb_raheem","name":"HEEM","id":2265789478,"id_str":"2265789478","indices":[3,13]},{"screen_name":"The_Jalen_","name":"\u26a0\ufe0fITS MY GLO DAY\u26a0\ufe0f","id":2240083919,"id_str":"2240083919","indices":[32,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689942016,"id_str":"663728093689942016","text":"\"\u0645\u064e\u0646 \u064a\u0647\u0632\u0645 \u0631\u063a\u0628\u0627\u062a\u0647 \u0623\u0634\u062c\u0639 \u0645\u0645\u0646 \u064a\u0647\u0632\u0645 \u0623\u0639\u062f\u0627\u0621\u0647\u060c \u0644\u0623\u0646 \u0623\u0635\u0639\u0628 \u0627\u0646\u062a\u0635\u0627\u0631 \u0647\u0648 \u0627\u0644\u0627\u0646\u062a\u0635\u0627\u0631 \u0639\u0644\u0649 \u0627\u0644\u0630\u0627\u062a.\"\n\n#\u0623\u0631\u0633\u0637\u0648","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275965535,"id_str":"275965535","name":"Moahmed Ahmed Arafa","screen_name":"MAA2100","location":"\u0627\u0644\u0642\u0627\u0647\u0631\u0629, \u0645\u0635\u0631 \u062d\u0644\u0648\u0627\u0646 ","url":"http:\/\/arabscene.org\/","description":"http:\/\/adf.ly\/oRfG","protected":false,"verified":false,"followers_count":51,"friends_count":148,"listed_count":1,"favourites_count":12,"statuses_count":4558,"created_at":"Sat Apr 02 11:08:33 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628657413554597888\/lGMjAkor_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628657413554597888\/lGMjAkor_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275965535\/1438718564","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0623\u0631\u0633\u0637\u0648","indices":[80,86]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093694140416,"id_str":"663728093694140416","text":"RT @brandonnembhard: forgive me, I am done.. for now https:\/\/t.co\/Rj501rKwnu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107877886,"id_str":"107877886","name":"hana \u2728","screen_name":"farhanaanisahx","location":"Liverpool, England","url":null,"description":"Literature Student & Intersectional Feminist. she\/her #BlackLivesMatter #FreePalestine @urfavcomrade \u2764\ufe0f","protected":false,"verified":false,"followers_count":870,"friends_count":410,"listed_count":3,"favourites_count":12017,"statuses_count":21043,"created_at":"Sun Jan 24 02:18:59 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872138181\/6cb91af1f15f0af7d5a7c0baf15f062a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872138181\/6cb91af1f15f0af7d5a7c0baf15f062a.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661934791433015296\/i0ri65p__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661934791433015296\/i0ri65p__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107877886\/1444941590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:52:12 +0000 2015","id":663489222351806464,"id_str":"663489222351806464","text":"forgive me, I am done.. for now https:\/\/t.co\/Rj501rKwnu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2937543359,"id_str":"2937543359","name":"Brandon Nembhard","screen_name":"brandonnembhard","location":null,"url":"https:\/\/youtu.be\/kr-UPNAAGok","description":null,"protected":false,"verified":false,"followers_count":11893,"friends_count":152,"listed_count":19,"favourites_count":1497,"statuses_count":585,"created_at":"Mon Dec 22 21:43:57 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9A764B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"315F7A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663490405028069376\/aIy8b-ND_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663490405028069376\/aIy8b-ND_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2937543359\/1446345329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":276,"favorite_count":987,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663489198796636160,"id_str":"663489198796636160","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":956,"h":1024,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663489198796636160,"id_str":"663489198796636160","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":956,"h":1024,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}}},{"id":663489198792437760,"id_str":"663489198792437760","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TZU8AAeZDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TZU8AAeZDj.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":313,"resize":"fit"},"large":{"w":1024,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":553,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brandonnembhard","name":"Brandon Nembhard","id":2937543359,"id_str":"2937543359","indices":[3,19]}],"symbols":[],"media":[{"id":663489198796636160,"id_str":"663489198796636160","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":956,"h":1024,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}},"source_status_id":663489222351806464,"source_status_id_str":"663489222351806464","source_user_id":2937543359,"source_user_id_str":"2937543359"}]},"extended_entities":{"media":[{"id":663489198796636160,"id_str":"663489198796636160","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TaVAAAvBVU.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":642,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":956,"h":1024,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}},"source_status_id":663489222351806464,"source_status_id_str":"663489222351806464","source_user_id":2937543359,"source_user_id_str":"2937543359"},{"id":663489198792437760,"id_str":"663489198792437760","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUv6TZU8AAeZDj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUv6TZU8AAeZDj.jpg","url":"https:\/\/t.co\/Rj501rKwnu","display_url":"pic.twitter.com\/Rj501rKwnu","expanded_url":"http:\/\/twitter.com\/brandonnembhard\/status\/663489222351806464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":313,"resize":"fit"},"large":{"w":1024,"h":944,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":553,"resize":"fit"}},"source_status_id":663489222351806464,"source_status_id_str":"663489222351806464","source_user_id":2937543359,"source_user_id_str":"2937543359"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083665"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093668995072,"id_str":"663728093668995072","text":"@Mohamed8Eladwy \n\u0627\u0647 \u0648\u0627\u0627\u0644\u0644\u0647 \n\u0646\u0635 \u0645\u0646 \u0639\u0634\u0631\u0647 \ud83d\ude22\ud83d\ude22\ud83d\ude22\ud83d\ude22\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677760154550272,"in_reply_to_status_id_str":"663677760154550272","in_reply_to_user_id":2609452712,"in_reply_to_user_id_str":"2609452712","in_reply_to_screen_name":"Mohamed8Eladwy","user":{"id":2754105406,"id_str":"2754105406","name":"Artyom","screen_name":"m_elfeky66","location":"Psycho land, Egypt ","url":null,"description":"waiting for a goal to be achieved,, \nit's just talking turns so I don't give the fuck\n\u062b\u0648\u0631\u0629 \u062b\u0648\u0631\u0629 \u062d\u062a\u064a \u0627\u0644\u0645\u0648\u062a","protected":false,"verified":false,"followers_count":427,"friends_count":318,"listed_count":2,"favourites_count":6844,"statuses_count":12699,"created_at":"Fri Aug 29 04:27:37 +0000 2014","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662425353131073536\/79YGvHi__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662425353131073536\/79YGvHi__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2754105406\/1430529466","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mohamed8Eladwy","name":"Mohamed","id":2609452712,"id_str":"2609452712","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083659"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698195456,"id_str":"663728093698195456","text":"RT @PoeticaAcciones: Recuerda que muchas veces es mejor olvidar lo que uno siente y recordar lo que uno vale.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752411036,"id_str":"752411036","name":"Angie \u2665'","screen_name":"HeadbAngier","location":null,"url":"https:\/\/www.facebook.com\/akilegna.aniluap","description":"Todo lo que vemos o parecemos no es m\u00e1s que un sue\u00f1o en un sue\u00f1o. Edgar Allan Poe","protected":false,"verified":false,"followers_count":82,"friends_count":75,"listed_count":1,"favourites_count":228,"statuses_count":1650,"created_at":"Sun Aug 12 03:51:26 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454421896809828352\/EFdMfES6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454421896809828352\/EFdMfES6.jpeg","profile_background_tile":true,"profile_link_color":"F01313","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610109353018798080\/4RbNt4FJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610109353018798080\/4RbNt4FJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752411036\/1401581415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:02 +0000 2015","id":663726493499953152,"id_str":"663726493499953152","text":"Recuerda que muchas veces es mejor olvidar lo que uno siente y recordar lo que uno vale.","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eTwitterNve24\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380957466,"id_str":"380957466","name":"Acci\u00f3n Poetica","screen_name":"PoeticaAcciones","location":"En Tu Corazon","url":null,"description":"Siempre pon tus miedos detr\u00e1s de ti y tus sue\u00f1os frente a ti. DEDICADA A DIOS. Contacto y #PUBLICIDAD cbecerra@nve24.com","protected":false,"verified":false,"followers_count":2408432,"friends_count":152,"listed_count":2290,"favourites_count":680,"statuses_count":76703,"created_at":"Tue Sep 27 14:24:59 +0000 2011","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F4F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/770043865\/46f83d79d4395bfa8223037f37b72012.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/770043865\/46f83d79d4395bfa8223037f37b72012.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/428970473666273280\/DpHi-64x_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/428970473666273280\/DpHi-64x_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380957466\/1358834300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PoeticaAcciones","name":"Acci\u00f3n Poetica","id":380957466,"id_str":"380957466","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664690176,"id_str":"663728093664690176","text":"Di atas 'Arsy ada Allah Ta'ala.\u00a0Di sanalah kalimat tersebut akan berputar mengelilingi 'Arsy.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":263546924,"id_str":"263546924","name":"LDK SALIM UNJ","screen_name":"ldkunj","location":"Rawamangun, Jakarta","url":"http:\/\/www.salimunj.com","description":"Lembaga Dakwah Kampus Sahabat Muslim Universitas Negeri Jakarta | LDK SALIM UNJ | Karena Kita Dekat, dan Bersahabat |","protected":false,"verified":false,"followers_count":5093,"friends_count":1512,"listed_count":15,"favourites_count":46,"statuses_count":13432,"created_at":"Thu Mar 10 07:29:22 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/440317801169821696\/9IbVcNSh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/440317801169821696\/9IbVcNSh.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3369355655\/b5fd8887dbbbb0dfd7db60f42baea414_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3369355655\/b5fd8887dbbbb0dfd7db60f42baea414_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/263546924\/1445545087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673181184,"id_str":"663728093673181184","text":"\u0645\u0644\u0644\ud83d\udeb6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2683543902,"id_str":"2683543902","name":"5lowd.","screen_name":"khalodita","location":"United Arab Emirates. ","url":"http:\/\/ask.fm\/khalodita","description":null,"protected":false,"verified":false,"followers_count":532,"friends_count":129,"listed_count":0,"favourites_count":1239,"statuses_count":11320,"created_at":"Sat Jul 26 23:22:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643090896058085376\/DlU8BHEg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643090896058085376\/DlU8BHEg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2683543902\/1437871736","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673164800,"id_str":"663728093673164800","text":"@marikafruscio1 una ragazza come te va ammirata e mai criticata ;-)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":660861096048349184,"in_reply_to_status_id_str":"660861096048349184","in_reply_to_user_id":480350934,"in_reply_to_user_id_str":"480350934","in_reply_to_screen_name":"marikafruscio1","user":{"id":3408322383,"id_str":"3408322383","name":"andrew76","screen_name":"andrew7613","location":"Roma, Lazio","url":null,"description":"BUONE VACANZE. .E RICORDATE SE NON S\u00cc VA DA NESSUNA PARTE. .UN LIBRO letto Aiuta a viaggiare! !!!!!","protected":false,"verified":false,"followers_count":60,"friends_count":266,"listed_count":2,"favourites_count":5,"statuses_count":526,"created_at":"Sat Aug 08 09:00:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631120924301991936\/iEKSt3mw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631120924301991936\/iEKSt3mw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3408322383\/1439305928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marikafruscio1","name":"marika fruscio","id":480350934,"id_str":"480350934","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685772288,"id_str":"663728093685772288","text":"@Justtaway @Arowmorth \u0434\u0430 \u0438 \u0432\u0440\u044f\u0434\u043b\u0438 \u0443 \u043d\u0430\u0441 \u0431\u0443\u0434\u0443\u0442 \u043a\u0442\u043e-\u0442\u043e \u0447\u0442\u043e-\u0442\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u0442\u0430\u043a\u043e\u0435, \u0447\u0442\u043e \u0443\u043c\u043d\u044b\u0439 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u043d\u0435 \u043e\u0431\u043e\u0439\u0434\u0435\u0442","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727370600366080,"in_reply_to_status_id_str":"663727370600366080","in_reply_to_user_id":300392246,"in_reply_to_user_id_str":"300392246","in_reply_to_screen_name":"Justtaway","user":{"id":2336886331,"id_str":"2336886331","name":"Kuro Shirai","screen_name":"Shirai1Kuro","location":null,"url":null,"description":"A Russian gamer in love with Japan and japanese gaming industry. \nI hate west, thanks.\nOh, and the name I use here is my pseudonym.","protected":false,"verified":false,"followers_count":105,"friends_count":38,"listed_count":1,"favourites_count":715,"statuses_count":21611,"created_at":"Mon Feb 10 15:44:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544543940657942528\/Xcji5QAe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544543940657942528\/Xcji5QAe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2336886331\/1418664512","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Justtaway","name":"\u0414\u0443\u0445 \u0412\u0435\u043b\u0438\u043a\u043e\u0439 \u0421\u0442\u0435\u043f\u0438","id":300392246,"id_str":"300392246","indices":[0,10]},{"screen_name":"Arowmorth","name":"Arowmorth","id":427346310,"id_str":"427346310","indices":[11,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673201664,"id_str":"663728093673201664","text":"RT @4KobusWiese: Bok coach says our players don't have the skills! Why did he not pick players with skills then or develope the current pla\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":593455847,"id_str":"593455847","name":"Grit Sports","screen_name":"sabeloPB","location":"Johannesburg, South Africa","url":"http:\/\/gritsports.co.za","description":"Sports Sports and More Sports Child of God\n\nPhila.bitterhout@gmail.com","protected":false,"verified":false,"followers_count":547,"friends_count":454,"listed_count":9,"favourites_count":100,"statuses_count":41672,"created_at":"Tue May 29 07:08:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633304584472109056\/XA88I9Ko_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633304584472109056\/XA88I9Ko_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/593455847\/1424688283","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 17:50:52 +0000 2015","id":661601452377382912,"id_str":"661601452377382912","text":"Bok coach says our players don't have the skills! Why did he not pick players with skills then or develope the current players skill levels?","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2491258123,"id_str":"2491258123","name":"Kobus Wiese","screen_name":"4KobusWiese","location":null,"url":"http:\/\/www.kobuswiese.co.za","description":"Lover of good coffee, red wine, my family and life!","protected":false,"verified":true,"followers_count":22760,"friends_count":4075,"listed_count":54,"favourites_count":682,"statuses_count":4378,"created_at":"Mon May 12 10:36:30 +0000 2014","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465818062864654336\/_1jqGkRM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465818062864654336\/_1jqGkRM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2491258123\/1414755811","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":144,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"4KobusWiese","name":"Kobus Wiese","id":2491258123,"id_str":"2491258123","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689835520,"id_str":"663728093689835520","text":"RT @FalandoNamorado: Voc\u00ea tem sorte de me ter como namorado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721194039,"id_str":"721194039","name":"Vitu \uf8ff","screen_name":"Victinloirin","location":null,"url":null,"description":"Yas \u2764\ufe0f 24\/08","protected":false,"verified":false,"followers_count":925,"friends_count":547,"listed_count":0,"favourites_count":3812,"statuses_count":13323,"created_at":"Fri Oct 18 20:07:53 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656272131307741184\/1caNnvio_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656272131307741184\/1caNnvio_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721194039\/1446399146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 14:58:12 +0000 2015","id":661557996380659712,"id_str":"661557996380659712","text":"Voc\u00ea tem sorte de me ter como namorado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3942439042,"id_str":"3942439042","name":"Namorado Falando","screen_name":"FalandoNamorado","location":null,"url":null,"description":"s\u00f3 tenho olhos pra vc","protected":false,"verified":false,"followers_count":16539,"friends_count":1,"listed_count":1,"favourites_count":35,"statuses_count":271,"created_at":"Tue Oct 13 02:06:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653756315974664192\/_SlDM_gU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653756315974664192\/_SlDM_gU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3942439042\/1444702625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":436,"favorite_count":232,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FalandoNamorado","name":"Namorado Falando","id":3942439042,"id_str":"3942439042","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093668884480,"id_str":"663728093668884480","text":"RT @animal_douga123: \u30c9\u30c9\u30c9\u30c9\u30c9\n\u307d\u30fc\u3093\ud83c\udf1f https:\/\/t.co\/dDrnW5udG9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1447827103,"id_str":"1447827103","name":"\u3076\u306b\u3083\u3093\u3053\u3074\u306a\u305b\u3002","screen_name":"082porori082","location":null,"url":null,"description":"\u4f4e\u8840\u5727\u3067\u8ca7\u8840\u3002\u6bce\u65e5\u8840\u304c\u8db3\u308a\u306a\u3044\u3002\u6700\u8fd1\u307e\u305f\u4e09\u56fd\u5fd7\u306b\u306f\u307e\u308a\u3060\u3057\u307e\u3057\u305f(^\u03c9^)\u66f9\u64cd\u69d8\u3089\u3076\u3002NL\/BL\/GL\u3069\u308c\u3082\u597d\u304d\u306a\u96d1\u98df\u7cfb\u5973\u5b50\u3002\u4e5f\u306f\u5275\u4f5c\u304c\u597d\u304d(\u5b66\u4e5f\/BL\u4e5f)\u3002\u57fa\u672c\u653b\u3081\u6c17\u8cea\u3002\u53ef\u611b\u3044\u5b50\u5927\u597dk(ry)\u3002\u6642\u3005\u8150\u767a\u8a00\u304c\u3042\u308a\u307e\u3059\u3002\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002\u4e3b\u98df\u306f\u3082\u3084\u3057\u3068\u30b0\u30df\u3068\u96fb\u8eca\u3002\nblog\u2192https:\/\/t.co\/eoSIWxUIEF","protected":false,"verified":false,"followers_count":21,"friends_count":51,"listed_count":0,"favourites_count":465,"statuses_count":1045,"created_at":"Wed May 22 02:51:45 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661799200036753408\/sjKZjyPS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661799200036753408\/sjKZjyPS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1447827103\/1441689315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:53:36 +0000 2015","id":663685867605741568,"id_str":"663685867605741568","text":"\u30c9\u30c9\u30c9\u30c9\u30c9\n\u307d\u30fc\u3093\ud83c\udf1f https:\/\/t.co\/dDrnW5udG9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3915994223,"id_str":"3915994223","name":"\u7652\u3055\u308c\u2661\u3069\u3046\u3076\u3064","screen_name":"animal_douga123","location":null,"url":null,"description":"\u304b\u308f\u3044\u3044\u304b\u3063\u305f\u308a\u3001\u7652\u3084\u3055\u308c\u305f\u308a\u3059\u308b\u52d5\u7269\u305f\u3061\u306e\u52d5\u753b\u3092\u66f4\u65b0\u3057\u3066\u3044\u304f\u3088\uff01\u30d5\u30a9\u30ed\u30fcRT\u3088\u308d\u3057\u304f\u306d\u2764","protected":false,"verified":false,"followers_count":931,"friends_count":0,"listed_count":3,"favourites_count":0,"statuses_count":73,"created_at":"Sat Oct 10 06:40:56 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652737622184296448\/ON_tCbU3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652737622184296448\/ON_tCbU3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3915994223\/1444459762","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":55,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dDrnW5udG9","expanded_url":"https:\/\/vine.co\/v\/hnEllTvLvJE","display_url":"vine.co\/v\/hnEllTvLvJE","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dDrnW5udG9","expanded_url":"https:\/\/vine.co\/v\/hnEllTvLvJE","display_url":"vine.co\/v\/hnEllTvLvJE","indices":[32,55]}],"user_mentions":[{"screen_name":"animal_douga123","name":"\u7652\u3055\u308c\u2661\u3069\u3046\u3076\u3064","id":3915994223,"id_str":"3915994223","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083659"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093677228032,"id_str":"663728093677228032","text":"RT @Oadkung: \u0e2d\u0e38\u0e15\u0e4a\u0e30!! \u0e2a\u0e34\u0e07\u0e42\u0e15 \u0e40\u0e14\u0e2d\u0e30\u0e2a\u0e15\u0e32\u0e23\u0e4c \u0e44\u0e1b\u0e46 \u0e21\u0e32\u0e46 \u0e17\u0e33\u0e44\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e25\u0e48\u0e30!!! https:\/\/t.co\/Z3mIQkjLId https:\/\/t.co\/wIMT20TEOh","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543174768,"id_str":"543174768","name":"\u0e15\u0e32\u0e21\u0e43\u0e08\u0e25\u0e30\u0e01\u0e31\u0e19","screen_name":"Kim_Preaw","location":"Thailand","url":null,"description":"\u0e2a\u0e39\u0e49\u0e15\u0e48\u0e2d\u0e44\u0e1b\u0e44\u0e2d\u0e49 \u0e21\u0e14\u0e41\u0e14\u0e07","protected":false,"verified":false,"followers_count":55,"friends_count":81,"listed_count":0,"favourites_count":61,"statuses_count":2025,"created_at":"Mon Apr 02 03:57:36 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652466621873721349\/qdhJ2Vnc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652466621873721349\/qdhJ2Vnc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543174768\/1444395138","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:15:41 +0000 2015","id":663585731206483968,"id_str":"663585731206483968","text":"\u0e2d\u0e38\u0e15\u0e4a\u0e30!! \u0e2a\u0e34\u0e07\u0e42\u0e15 \u0e40\u0e14\u0e2d\u0e30\u0e2a\u0e15\u0e32\u0e23\u0e4c \u0e44\u0e1b\u0e46 \u0e21\u0e32\u0e46 \u0e17\u0e33\u0e44\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e25\u0e48\u0e30!!! https:\/\/t.co\/Z3mIQkjLId https:\/\/t.co\/wIMT20TEOh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143486013,"id_str":"143486013","name":"\u0e42\u0e2d\u0e4a\u0e14\u0e04\u0e38\u0e07\u0e2a\u0e31\u0e1a\u0e2a\u0e19\u0e27\u0e38\u0e48\u0e19\u0e27\u0e32\u0e22","screen_name":"Oadkung","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16735,"friends_count":167,"listed_count":16,"favourites_count":154,"statuses_count":78173,"created_at":"Thu May 13 16:04:33 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619399001171857408\/oOnE0ZkE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619399001171857408\/oOnE0ZkE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143486013\/1436511387","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z3mIQkjLId","expanded_url":"http:\/\/picpost.postjung.com\/290790.html","display_url":"picpost.postjung.com\/290790.html","indices":[53,76]}],"user_mentions":[],"symbols":[],"media":[{"id":663585729780432897,"id_str":"663585729780432897","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":531,"resize":"fit"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663585729780432897,"id_str":"663585729780432897","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":531,"resize":"fit"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}}},{"id":663585729906257921,"id_str":"663585729906257921","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJ0UsAEtEYD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJ0UsAEtEYD.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"},"large":{"w":620,"h":825,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z3mIQkjLId","expanded_url":"http:\/\/picpost.postjung.com\/290790.html","display_url":"picpost.postjung.com\/290790.html","indices":[66,89]}],"user_mentions":[{"screen_name":"Oadkung","name":"\u0e42\u0e2d\u0e4a\u0e14\u0e04\u0e38\u0e07\u0e2a\u0e31\u0e1a\u0e2a\u0e19\u0e27\u0e38\u0e48\u0e19\u0e27\u0e32\u0e22","id":143486013,"id_str":"143486013","indices":[3,11]}],"symbols":[],"media":[{"id":663585729780432897,"id_str":"663585729780432897","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":531,"resize":"fit"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663585731206483968,"source_status_id_str":"663585731206483968","source_user_id":143486013,"source_user_id_str":"143486013"}]},"extended_entities":{"media":[{"id":663585729780432897,"id_str":"663585729780432897","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJWUwAErbl-.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":620,"h":531,"resize":"fit"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663585731206483968,"source_status_id_str":"663585731206483968","source_user_id":143486013,"source_user_id_str":"143486013"},{"id":663585729906257921,"id_str":"663585729906257921","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWHtJ0UsAEtEYD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWHtJ0UsAEtEYD.jpg","url":"https:\/\/t.co\/wIMT20TEOh","display_url":"pic.twitter.com\/wIMT20TEOh","expanded_url":"http:\/\/twitter.com\/Oadkung\/status\/663585731206483968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":798,"resize":"fit"},"large":{"w":620,"h":825,"resize":"fit"}},"source_status_id":663585731206483968,"source_status_id_str":"663585731206483968","source_user_id":143486013,"source_user_id_str":"143486013"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080083661"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685649408,"id_str":"663728093685649408","text":"@miyu_r92 \n\u3084\u3063\u305f\u3041\u2934\ufe0f\n\u697d\u3057\u307f\ud83d\ude4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726719354798081,"in_reply_to_status_id_str":"663726719354798081","in_reply_to_user_id":4008809905,"in_reply_to_user_id_str":"4008809905","in_reply_to_screen_name":"miyu_r92","user":{"id":3272715103,"id_str":"3272715103","name":"*\u307e\u306a\u81e3*","screen_name":"manachooon03","location":null,"url":null,"description":"\u2042\uff84\uff7b\uff76\uff8b\uff9b\uff75\uff90\u2042 \u81e3\u5ca9\u223d\u81e3\u9686nagasaki\u21d4fukuoka 95\u301c96line","protected":false,"verified":false,"followers_count":98,"friends_count":115,"listed_count":2,"favourites_count":120,"statuses_count":1160,"created_at":"Thu Jul 09 07:05:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658254877315850241\/KlCEeokd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658254877315850241\/KlCEeokd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272715103\/1445356624","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miyu_r92","name":"\u307f\u3086\u306b\u3083\u3093\u3061\u3085\u3046","id":4008809905,"id_str":"4008809905","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664792576,"id_str":"663728093664792576","text":"RT @superreacts: \"What are you doing with your life\" https:\/\/t.co\/dGL63MmDXX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102420142,"id_str":"102420142","name":"Caro Orozco.","screen_name":"CaaroOrozco","location":"Gotham City.","url":null,"description":"\u00bfHas bailado con el demonio a la luz de la luna?","protected":false,"verified":false,"followers_count":198,"friends_count":106,"listed_count":4,"favourites_count":5058,"statuses_count":24778,"created_at":"Wed Jan 06 16:55:03 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/878266637\/823c56dc59399fb37f5e262f6ff32825.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/878266637\/823c56dc59399fb37f5e262f6ff32825.jpeg","profile_background_tile":true,"profile_link_color":"87828A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650281440580628480\/xC-arenW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650281440580628480\/xC-arenW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102420142\/1413234916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:05 +0000 2015","id":663713922873102337,"id_str":"663713922873102337","text":"\"What are you doing with your life\" https:\/\/t.co\/dGL63MmDXX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3097976235,"id_str":"3097976235","name":"Superhero Reactions","screen_name":"superreacts","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9906,"friends_count":30,"listed_count":9,"favourites_count":1,"statuses_count":222,"created_at":"Fri Mar 20 00:04:43 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633263696035336193\/0Fim693M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633263696035336193\/0Fim693M_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3097976235\/1439816840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663683680263630848,"id_str":"663683680263630848","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","url":"https:\/\/t.co\/dGL63MmDXX","display_url":"pic.twitter.com\/dGL63MmDXX","expanded_url":"http:\/\/twitter.com\/superreacts\/status\/663713922873102337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":477,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663683680263630848,"id_str":"663683680263630848","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","url":"https:\/\/t.co\/dGL63MmDXX","display_url":"pic.twitter.com\/dGL63MmDXX","expanded_url":"http:\/\/twitter.com\/superreacts\/status\/663713922873102337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":477,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"superreacts","name":"Superhero Reactions","id":3097976235,"id_str":"3097976235","indices":[3,15]}],"symbols":[],"media":[{"id":663683680263630848,"id_str":"663683680263630848","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","url":"https:\/\/t.co\/dGL63MmDXX","display_url":"pic.twitter.com\/dGL63MmDXX","expanded_url":"http:\/\/twitter.com\/superreacts\/status\/663713922873102337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":477,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663713922873102337,"source_status_id_str":"663713922873102337","source_user_id":3097976235,"source_user_id_str":"3097976235"}]},"extended_entities":{"media":[{"id":663683680263630848,"id_str":"663683680263630848","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXgynVWcAAFs6l.png","url":"https:\/\/t.co\/dGL63MmDXX","display_url":"pic.twitter.com\/dGL63MmDXX","expanded_url":"http:\/\/twitter.com\/superreacts\/status\/663713922873102337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":675,"h":477,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663713922873102337,"source_status_id_str":"663713922873102337","source_user_id":3097976235,"source_user_id_str":"3097976235"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093669007360,"id_str":"663728093669007360","text":"Thanksgiving being GRATEFUL-to be ALL IN, focused and taking full enjoyment in the PRESENT moment.\u2026 https:\/\/t.co\/dmvnuLxYUc","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437085409,"id_str":"437085409","name":"Coach V","screen_name":"coachvil","location":"California","url":"http:\/\/www.coach-v.com","description":"Viliami Tuivai - Life, Leadership, Business Coach. Master Speaker. Author of the book: Life Champion. Founder\/President-Invictus Foundation.","protected":false,"verified":false,"followers_count":793,"friends_count":715,"listed_count":22,"favourites_count":2327,"statuses_count":6774,"created_at":"Thu Dec 15 00:19:39 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560999886036795394\/tWnnwdeN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560999886036795394\/tWnnwdeN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437085409\/1426716856","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dmvnuLxYUc","expanded_url":"https:\/\/instagram.com\/p\/93idGuoyVL\/","display_url":"instagram.com\/p\/93idGuoyVL\/","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080083659"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093694025728,"id_str":"663728093694025728","text":"RT @HaeChen: Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301261299,"id_str":"3301261299","name":"fckshtREID","screen_name":"lionessNADINE","location":null,"url":null,"description":"free follow from @fckshtREID [FOLLOW HER]","protected":false,"verified":false,"followers_count":14,"friends_count":180,"listed_count":4,"favourites_count":46,"statuses_count":22948,"created_at":"Thu May 28 05:19:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635275090905534464\/_MQICdcf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635275090905534464\/_MQICdcf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301261299\/1440296356","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682589470720,"id_str":"663727682589470720","text":"Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277047868,"id_str":"277047868","name":"JayeToDine","screen_name":"HaeChen","location":"Chicago, IL","url":"http:\/\/entertainment.abs-cbn.com\/tv\/shows\/asap\/pop-awards","description":"If it wasn't Nadine, then I'd probably rather be alone. - James","protected":false,"verified":false,"followers_count":2078,"friends_count":128,"listed_count":11,"favourites_count":89,"statuses_count":49656,"created_at":"Mon Apr 04 16:01:25 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"F2F4F5","profile_sidebar_fill_color":"EBEFF0","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277047868\/1446333667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.940033,42.023067],[-87.523993,42.023067],[-87.523993,41.644102]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[20,30]},{"text":"OTWOLFinallyYours","indices":[38,56]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[33,43]},{"text":"OTWOLFinallyYours","indices":[51,69]}],"urls":[],"user_mentions":[{"screen_name":"HaeChen","name":"JayeToDine","id":277047868,"id_str":"277047868","indices":[3,11]}],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083665"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685792768,"id_str":"663728093685792768","text":"RT @davelackie: I'm giving away this Marc Jacobs Decadence GWP tassel necklace at Hudson's Bay. To enter, follow @davelackie & RT https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192666180,"id_str":"192666180","name":"Zoe G","screen_name":"tiawanawana","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":755,"friends_count":2215,"listed_count":58,"favourites_count":152,"statuses_count":42290,"created_at":"Sun Sep 19 20:25:08 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1298180948\/IMAG0064_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1298180948\/IMAG0064_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:49:25 +0000 2015","id":663669717350109185,"id_str":"663669717350109185","text":"I'm giving away this Marc Jacobs Decadence GWP tassel necklace at Hudson's Bay. To enter, follow @davelackie & RT https:\/\/t.co\/uDQkHAcdxd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100766356,"id_str":"100766356","name":"dave lackie","screen_name":"davelackie","location":"davelackie.com ","url":"http:\/\/beautytheguide.com\/magazine","description":"Editor of BEAUTY the guide & Cityline beauty expert.","protected":false,"verified":false,"followers_count":97983,"friends_count":2735,"listed_count":308,"favourites_count":4373,"statuses_count":98236,"created_at":"Thu Dec 31 13:25:24 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588795840329682944\/s1Xqvv2h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588795840329682944\/s1Xqvv2h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100766356\/1440972385","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":792,"favorite_count":172,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"davelackie","name":"dave lackie","id":100766356,"id_str":"100766356","indices":[97,108]}],"symbols":[],"media":[{"id":663669715131195392,"id_str":"663669715131195392","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","url":"https:\/\/t.co\/uDQkHAcdxd","display_url":"pic.twitter.com\/uDQkHAcdxd","expanded_url":"http:\/\/twitter.com\/davelackie\/status\/663669717350109185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":425,"resize":"fit"},"large":{"w":809,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":241,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663669715131195392,"id_str":"663669715131195392","indices":[118,141],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","url":"https:\/\/t.co\/uDQkHAcdxd","display_url":"pic.twitter.com\/uDQkHAcdxd","expanded_url":"http:\/\/twitter.com\/davelackie\/status\/663669717350109185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":425,"resize":"fit"},"large":{"w":809,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":241,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"davelackie","name":"dave lackie","id":100766356,"id_str":"100766356","indices":[3,14]},{"screen_name":"davelackie","name":"dave lackie","id":100766356,"id_str":"100766356","indices":[113,124]}],"symbols":[],"media":[{"id":663669715131195392,"id_str":"663669715131195392","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","url":"https:\/\/t.co\/uDQkHAcdxd","display_url":"pic.twitter.com\/uDQkHAcdxd","expanded_url":"http:\/\/twitter.com\/davelackie\/status\/663669717350109185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":425,"resize":"fit"},"large":{"w":809,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":241,"resize":"fit"}},"source_status_id":663669717350109185,"source_status_id_str":"663669717350109185","source_user_id":100766356,"source_user_id_str":"100766356"}]},"extended_entities":{"media":[{"id":663669715131195392,"id_str":"663669715131195392","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXUFvKUYAA4HXO.png","url":"https:\/\/t.co\/uDQkHAcdxd","display_url":"pic.twitter.com\/uDQkHAcdxd","expanded_url":"http:\/\/twitter.com\/davelackie\/status\/663669717350109185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":425,"resize":"fit"},"large":{"w":809,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":241,"resize":"fit"}},"source_status_id":663669717350109185,"source_status_id_str":"663669717350109185","source_user_id":100766356,"source_user_id_str":"100766356"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681442816,"id_str":"663728093681442816","text":"RT @muhammadibnardi: Pelajari Tauhid, Adab, Shirah Nabawi, Tarikh Shahabat. Fiqh urusan belakangan saja ya.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4133641752,"id_str":"4133641752","name":"aimardarwis1","screen_name":"aimardarwis1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":82,"listed_count":0,"favourites_count":0,"statuses_count":37,"created_at":"Thu Nov 05 09:51:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662206354468147200\/a-i53f_X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662206354468147200\/a-i53f_X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4133641752\/1446719122","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:07 +0000 2015","id":663725507880480769,"id_str":"663725507880480769","text":"Pelajari Tauhid, Adab, Shirah Nabawi, Tarikh Shahabat. Fiqh urusan belakangan saja ya.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3713928614,"id_str":"3713928614","name":"AbuDzarAlMinankabawi","screen_name":"muhammadibnardi","location":null,"url":null,"description":"Give glad tidings to those who will be in the army of Imam Mahdi and later will be join Isa Ibn Maryam - Muslim | Rindu Surga - Ingin Mati Syahid","protected":false,"verified":false,"followers_count":349,"friends_count":15,"listed_count":2,"favourites_count":52,"statuses_count":704,"created_at":"Mon Sep 28 10:55:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648454971617181696\/5E7uhDQq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648454971617181696\/5E7uhDQq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"muhammadibnardi","name":"AbuDzarAlMinankabawi","id":3713928614,"id_str":"3713928614","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093660512256,"id_str":"663728093660512256","text":"\u9bd6\u6c5f\u306f\u72ec\u7acb\u56fd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1509832807,"id_str":"1509832807","name":"\u3075\u307e\u308b\u3061\u3083\u3093","screen_name":"catharsis_fami","location":"\u91d1\u6ca2\u770c\u91ce\u3005\u5e02\u5de5\u696d\u5927\u5b66","url":null,"description":"\u661f\u7a1c\u2192K.I.T.3\u5e74\/RP\/Team_Robocon\/2016\u30ea\u30fc\u30c0\u30fc\/\u5236\u5fa1\u3067\u304d\u306a\u3044\u73ed\/YUI\/","protected":false,"verified":false,"followers_count":332,"friends_count":320,"listed_count":5,"favourites_count":19793,"statuses_count":29606,"created_at":"Wed Jun 12 07:45:33 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447690868514758656\/_Jnfmp7r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447690868514758656\/_Jnfmp7r.jpeg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661129015759998976\/OHheOQKm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661129015759998976\/OHheOQKm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1509832807\/1446394489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083657"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093677363200,"id_str":"663728093677363200","text":"RT @Cyr_Garcia: #innovation centers are spreading fast as top 10 cities house only 35% of total: https:\/\/t.co\/CydT7HulR0 #disruption via @C\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1137032604,"id_str":"1137032604","name":"Alexandre Lassis","screen_name":"lassisalexandre","location":"Paris, Ile-de-France","url":null,"description":"Digital for Purchasing !? Committed to give meaning to this outstanding new field of opportunities for CPOs and their internal clients...","protected":false,"verified":false,"followers_count":29,"friends_count":38,"listed_count":2,"favourites_count":7,"statuses_count":110,"created_at":"Thu Jan 31 13:50:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3188202325\/f017730f684da7c53e2fd1b031ea52ed_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3188202325\/f017730f684da7c53e2fd1b031ea52ed_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:14:54 +0000 2015","id":663419439132614656,"id_str":"663419439132614656","text":"#innovation centers are spreading fast as top 10 cities house only 35% of total: https:\/\/t.co\/CydT7HulR0 #disruption via @CapgeminiConsul","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329438266,"id_str":"3329438266","name":"Cyril Garcia","screen_name":"Cyr_Garcia","location":"Paris","url":"http:\/\/www.capgemini-consulting.com","description":"CEO (Global) @CapgeminiConsul","protected":false,"verified":false,"followers_count":910,"friends_count":850,"listed_count":146,"favourites_count":126,"statuses_count":685,"created_at":"Tue Jun 16 12:38:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610788823925190656\/iQV3509y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610788823925190656\/iQV3509y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329438266\/1441040075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"innovation","indices":[0,11]},{"text":"disruption","indices":[105,116]}],"urls":[{"url":"https:\/\/t.co\/CydT7HulR0","expanded_url":"http:\/\/ow.ly\/UkX4o","display_url":"ow.ly\/UkX4o","indices":[81,104]}],"user_mentions":[{"screen_name":"CapgeminiConsul","name":"Capgemini Consulting","id":227706227,"id_str":"227706227","indices":[121,137]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"innovation","indices":[16,27]},{"text":"disruption","indices":[121,132]}],"urls":[{"url":"https:\/\/t.co\/CydT7HulR0","expanded_url":"http:\/\/ow.ly\/UkX4o","display_url":"ow.ly\/UkX4o","indices":[97,120]}],"user_mentions":[{"screen_name":"Cyr_Garcia","name":"Cyril Garcia","id":3329438266,"id_str":"3329438266","indices":[3,14]},{"screen_name":"CapgeminiConsul","name":"Capgemini Consulting","id":227706227,"id_str":"227706227","indices":[137,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083661"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664829440,"id_str":"663728093664829440","text":"RT @mattcutts: BREAKING: Google open-sourcing TensorFlow, its machine learning system: https:\/\/t.co\/fbRCQhgDDm\n\nThis is huge.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":748383,"id_str":"748383","name":"Tom Karlo","screen_name":"tomkarlo","location":"San Francisco, CA","url":"http:\/\/karlo.org\/","description":"One of the elves making Android OS. Mobile tech nerd, snowboarder, runner, news junkie, frenchie owner. New York expat in the Bear Republic.","protected":false,"verified":false,"followers_count":653,"friends_count":461,"listed_count":39,"favourites_count":98,"statuses_count":5793,"created_at":"Fri Feb 02 18:43:07 +0000 2007","utc_offset":-28800,"time_zone":"America\/Los_Angeles","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/824219344\/cf4a91e8fb1f1ff9187015f664c12ea1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/824219344\/cf4a91e8fb1f1ff9187015f664c12ea1.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"545454","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1776619320\/tom3-sq-240x240__1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1776619320\/tom3-sq-240x240__1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/748383\/1402439339","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:09 +0000 2015","id":663718219077718016,"id_str":"663718219077718016","text":"BREAKING: Google open-sourcing TensorFlow, its machine learning system: https:\/\/t.co\/fbRCQhgDDm\n\nThis is huge.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3080761,"id_str":"3080761","name":"Matt Cutts","screen_name":"mattcutts","location":"Bay Area, California","url":"http:\/\/mattcutts.com\/blog\/","description":"I'm the head of the webspam team at Google. (Currently on leave).","protected":false,"verified":true,"followers_count":479119,"friends_count":520,"listed_count":17128,"favourites_count":2811,"statuses_count":27077,"created_at":"Sat Mar 31 21:14:31 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596101793647472640\/Z-G0vzLp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596101793647472640\/Z-G0vzLp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3080761\/1438302537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":72,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fbRCQhgDDm","expanded_url":"https:\/\/googleblog.blogspot.com\/2015\/11\/tensorflow-smarter-machine-learning-for.html","display_url":"googleblog.blogspot.com\/2015\/11\/tensor\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fbRCQhgDDm","expanded_url":"https:\/\/googleblog.blogspot.com\/2015\/11\/tensorflow-smarter-machine-learning-for.html","display_url":"googleblog.blogspot.com\/2015\/11\/tensor\u2026","indices":[87,110]}],"user_mentions":[{"screen_name":"mattcutts","name":"Matt Cutts","id":3080761,"id_str":"3080761","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689987072,"id_str":"663728093689987072","text":"@Lambo_Dreamz","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":101182931,"in_reply_to_user_id_str":"101182931","in_reply_to_screen_name":"Lambo_Dreamz","user":{"id":207308018,"id_str":"207308018","name":"Gabrielle\u2765","screen_name":"BelleGabrielle_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":134,"friends_count":101,"listed_count":0,"favourites_count":51,"statuses_count":2614,"created_at":"Mon Oct 25 01:11:00 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/233778686\/12-1278967258-bg-cheetah-print.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/233778686\/12-1278967258-bg-cheetah-print.png","profile_background_tile":false,"profile_link_color":"F72579","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"7A8A4E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482352301848281088\/yBMJhrpE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482352301848281088\/yBMJhrpE_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lambo_Dreamz","name":"Jamaal ","id":101182931,"id_str":"101182931","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681553408,"id_str":"663728093681553408","text":"\u0644\u0627 \u062a\u0630\u0643\u0631 \u0627\u0644\u0622\u062e\u0631\u064a\u0646 \u0628\u0627\u0644\u0645\u0639\u0631\u0648\u0641 \u0627\u0644\u0630\u064a \u0627\u0633\u062f\u064a\u062a\u0647 \u0644\u0647\u0645 \u0641\u0627\u0644\u0645\u0639\u0631\u0648\u0641 \u0627\u0644\u062d\u0642\u064a\u0642\u064a \u064a\u062a\u0645 \n\u062f\u0648\u0646 \u0645\u0642\u0627\u0628\u0644\n\u0648\u062f\u0648\u0646 \u0636\u063a\u0637 \n\u0648\u062f\u0648\u0646 \u063a\u0631\u0636\n\u0648\u062f\u0648\u0646 \u0627\u0644\u0632\u0627\u0645\n\ud83c\udf39\ud83c\udf39\ud83c\udf39\n\u0645\u0633\u0627\u0626\u0643\u0645 \u0639\u0637\u0627\u0621 \n\u0645\u0633\u0627\u0626\u0643\u0645 \u0633\u0639\u0627\u062f\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320719944,"id_str":"320719944","name":"\u0646\u0627\u0635\u0631 \u0627\u0644\u0637\u0645\u064a\u062d\u064a","screen_name":"nassertomihi","location":"( \u062c\u0640\u0640\u0640\u0640\u062f\u0629 \u0623\u062a\u0640\u0640\u0640\u064a \u0648\u0628\u0640\u0640\u062d\u0640\u0640\u0640\u0631 )","url":null,"description":"\u200f\u0635\u062d\u0641\u064a \u0628\u062c\u0631\u064a\u062f\u0629 \u0627\u0644\u0631\u064a\u0627\u0636\u064a \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 (\u0627\u0644\u0623\u0643\u062b\u0631 \u062a\u0623\u062b\u064a\u0631\u0627\u064b)","protected":false,"verified":false,"followers_count":60453,"friends_count":3228,"listed_count":296,"favourites_count":3190,"statuses_count":46935,"created_at":"Mon Jun 20 12:12:23 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559385235474120704\/GCblATFP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559385235474120704\/GCblATFP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320719944\/1381328370","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685616641,"id_str":"663728093685616641","text":"\ud83d\ude4f\ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277305638,"id_str":"277305638","name":"Mstvaluable","screen_name":"yaaank_","location":"5thWard ","url":null,"description":"ill Never Lay Down or Fold up","protected":false,"verified":false,"followers_count":1141,"friends_count":505,"listed_count":4,"favourites_count":113,"statuses_count":45931,"created_at":"Tue Apr 05 03:10:56 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639401203\/vnfe15zyy5lzq1204b2t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639401203\/vnfe15zyy5lzq1204b2t.jpeg","profile_background_tile":true,"profile_link_color":"B50000","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649309170873733121\/kl-X_Ols_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649309170873733121\/kl-X_Ols_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277305638\/1444076366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698347008,"id_str":"663728093698347008","text":"RT @BLOCWKND: it\u2019s going to be the best bloc yet. if you definitely want to come, please jump on it. chalets will disappear very quickly on\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123551633,"id_str":"123551633","name":"Posthuman","screen_name":"posthumanmusic","location":"London, UK","url":"http:\/\/www.soundcloud.com\/posthuman","description":"hosts & residents of I Love Acid - http:\/\/www.iheartacid.com ...our record label - http:\/\/www.balkanvinyl.com","protected":false,"verified":false,"followers_count":1446,"friends_count":477,"listed_count":31,"favourites_count":4268,"statuses_count":8590,"created_at":"Tue Mar 16 12:53:42 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454377754956271616\/bHsftXob.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454377754956271616\/bHsftXob.jpeg","profile_background_tile":false,"profile_link_color":"50A395","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"7A7A7A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/438470165781442560\/hQzhMGQP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/438470165781442560\/hQzhMGQP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123551633\/1429029060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:58 +0000 2015","id":663727989834821632,"id_str":"663727989834821632","text":"it\u2019s going to be the best bloc yet. if you definitely want to come, please jump on it. chalets will disappear very quickly once announced","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21161016,"id_str":"21161016","name":"Bloc","screen_name":"BLOCWKND","location":"London","url":"http:\/\/www.blocweekend.com","description":null,"protected":false,"verified":false,"followers_count":10588,"friends_count":2968,"listed_count":227,"favourites_count":918,"statuses_count":3169,"created_at":"Wed Feb 18 02:35:49 +0000 2009","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486806190957924352\/qmwLDDou.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486806190957924352\/qmwLDDou.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486806635805827072\/-qoNSfFh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486806635805827072\/-qoNSfFh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21161016\/1441794277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BLOCWKND","name":"Bloc","id":21161016,"id_str":"21161016","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685657600,"id_str":"663728093685657600","text":"RT @HaeChen: Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229281276,"id_str":"3229281276","name":"fckshtREID","screen_name":"ja15dine","location":null,"url":null,"description":"free follow from @fckshtREID [FOLLOW HER]","protected":false,"verified":false,"followers_count":13,"friends_count":189,"listed_count":4,"favourites_count":30,"statuses_count":22163,"created_at":"Fri May 29 02:37:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635274474795888640\/M55z1LHv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635274474795888640\/M55z1LHv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229281276\/1440296209","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682589470720,"id_str":"663727682589470720","text":"Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277047868,"id_str":"277047868","name":"JayeToDine","screen_name":"HaeChen","location":"Chicago, IL","url":"http:\/\/entertainment.abs-cbn.com\/tv\/shows\/asap\/pop-awards","description":"If it wasn't Nadine, then I'd probably rather be alone. - James","protected":false,"verified":false,"followers_count":2078,"friends_count":128,"listed_count":11,"favourites_count":89,"statuses_count":49656,"created_at":"Mon Apr 04 16:01:25 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"F2F4F5","profile_sidebar_fill_color":"EBEFF0","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277047868\/1446333667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.940033,42.023067],[-87.523993,42.023067],[-87.523993,41.644102]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[20,30]},{"text":"OTWOLFinallyYours","indices":[38,56]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[33,43]},{"text":"OTWOLFinallyYours","indices":[51,69]}],"urls":[],"user_mentions":[{"screen_name":"HaeChen","name":"JayeToDine","id":277047868,"id_str":"277047868","indices":[3,11]}],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093694152704,"id_str":"663728093694152704","text":"RT @wonwoorl: Yang on retweet? gua follow","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3402494354,"id_str":"3402494354","name":"Irene","screen_name":"rvirrenne","location":null,"url":null,"description":"leader rv . focus on things that bring my mood up","protected":false,"verified":false,"followers_count":1808,"friends_count":1693,"listed_count":1,"favourites_count":118,"statuses_count":7149,"created_at":"Mon Aug 31 10:00:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663431379942686720\/_eDJzmR4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663431379942686720\/_eDJzmR4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3402494354\/1446987195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:35:25 +0000 2015","id":663696391550570496,"id_str":"663696391550570496","text":"Yang on retweet? gua follow","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3218917662,"id_str":"3218917662","name":"WONWOO","screen_name":"wonwoorl","location":"SUNDASQ","url":null,"description":"Jeon Wonwoo, Seventeen","protected":false,"verified":false,"followers_count":836,"friends_count":867,"listed_count":1,"favourites_count":213,"statuses_count":3836,"created_at":"Mon May 18 04:58:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602706949113647104\/CT09A8uG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602706949113647104\/CT09A8uG.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663607921759031296\/DHPDJAhm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663607921759031296\/DHPDJAhm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3218917662\/1441472279","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wonwoorl","name":"WONWOO","id":3218917662,"id_str":"3218917662","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083665"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664677888,"id_str":"663728093664677888","text":"RT @horoscoponegro: #ESCORPIO: astuto por naturaleza. Te propones algo, consigues algo. Pueden pasar a\u00f1os pero tu sabes que lo har\u00e1s...Esco\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":149209744,"id_str":"149209744","name":"Jonathan Esquivel \uf8ff","screen_name":"esqcuevas","location":"M\u00e9rida, Yucat\u00e1n M\u00e9xico","url":null,"description":null,"protected":false,"verified":false,"followers_count":261,"friends_count":277,"listed_count":1,"favourites_count":95,"statuses_count":9195,"created_at":"Fri May 28 18:08:10 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484530316476829698\/rAlvC3TQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484530316476829698\/rAlvC3TQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149209744\/1350502435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:02:23 +0000 2015","id":663688079434231809,"id_str":"663688079434231809","text":"#ESCORPIO: astuto por naturaleza. Te propones algo, consigues algo. Pueden pasar a\u00f1os pero tu sabes que lo har\u00e1s...Escorpio puede con todo.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":781988934,"id_str":"781988934","name":"\u25b2Hor\u00f3scopo Negro\u25b2","screen_name":"horoscoponegro","location":"horoscoponegro@gmail.com","url":"http:\/\/www.horoscoponegro.com","description":"El 99% de las cuentas de hor\u00f3scopos nos copian, pero aqu\u00ed seguimos, en pie, con casi 2 millones de seguidores! Mil gracias a todos!","protected":false,"verified":false,"followers_count":1990516,"friends_count":12,"listed_count":1766,"favourites_count":14811,"statuses_count":20216,"created_at":"Sun Aug 26 08:14:16 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/741616861\/85ca49e6b1d7ace92165e5066963f123.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/741616861\/85ca49e6b1d7ace92165e5066963f123.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3393274687\/7d1bb3a9e630eaaa298c76b6f5a564b5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3393274687\/7d1bb3a9e630eaaa298c76b6f5a564b5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/781988934\/1363548812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":556,"favorite_count":490,"entities":{"hashtags":[{"text":"ESCORPIO","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ESCORPIO","indices":[20,29]}],"urls":[],"user_mentions":[{"screen_name":"horoscoponegro","name":"\u25b2Hor\u00f3scopo Negro\u25b2","id":781988934,"id_str":"781988934","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689831424,"id_str":"663728093689831424","text":"#OTWOLWish One thousand four hundred eighty nine","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4103068219,"id_str":"4103068219","name":"ivy manlangit1","screen_name":"CabilesIvy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":1,"listed_count":2,"favourites_count":0,"statuses_count":4592,"created_at":"Mon Nov 02 15:13:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093668896769,"id_str":"663728093668896769","text":"Beredar Rekaman Perempuan Palestina Berusaha Tusuk Satpam Israel: Seorang perempuan Palestina terekam berusaha... https:\/\/t.co\/zpPIH3fUCf","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2401736442,"id_str":"2401736442","name":"Dina laila","screen_name":"Dinalaila7","location":null,"url":null,"description":"ku kan selalu menantimu, hingga waktu memanggilku","protected":false,"verified":false,"followers_count":1040,"friends_count":1958,"listed_count":6,"favourites_count":1,"statuses_count":109592,"created_at":"Fri Mar 21 15:30:37 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451634601262202881\/p4fqE71L.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451634601262202881\/p4fqE71L.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451633927044612096\/GjynGO0J_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451633927044612096\/GjynGO0J_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401736442\/1396512838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zpPIH3fUCf","expanded_url":"http:\/\/tinyurl.com\/qfenl3j","display_url":"tinyurl.com\/qfenl3j","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083659"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681463296,"id_str":"663728093681463296","text":"@Anepyacob @syakillarosman_ win dohh anep!!! \ud83d\udc4d\ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726054599581696,"in_reply_to_status_id_str":"663726054599581696","in_reply_to_user_id":926351989,"in_reply_to_user_id_str":"926351989","in_reply_to_screen_name":"Anepyacob","user":{"id":1868103650,"id_str":"1868103650","name":"TheNaufalIbrahim","screen_name":"nflhqm","location":"NMIT, Nusajaya, Johor","url":null,"description":"I don't even exist.","protected":false,"verified":false,"followers_count":176,"friends_count":227,"listed_count":0,"favourites_count":441,"statuses_count":7063,"created_at":"Sun Sep 15 15:14:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468703598231035905\/PFIZA0ik.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468703598231035905\/PFIZA0ik.jpeg","profile_background_tile":true,"profile_link_color":"0915F0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644843257688559617\/55WQ3Jz2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644843257688559617\/55WQ3Jz2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1868103650\/1442577576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Anepyacob","name":"Anep","id":926351989,"id_str":"926351989","indices":[0,10]},{"screen_name":"syakillarosman_","name":"Syakilla","id":431754836,"id_str":"431754836","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673091072,"id_str":"663728093673091072","text":"RT @FetyaEdDeen: \"iblis rejected one sujud\"\n\nHow many do we reject daily?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2365533458,"id_str":"2365533458","name":"Najih\u00e9","screen_name":"nnnajihaa","location":"johor","url":null,"description":"14","protected":false,"verified":false,"followers_count":194,"friends_count":453,"listed_count":0,"favourites_count":208,"statuses_count":1992,"created_at":"Fri Feb 28 12:28:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645528483066609664\/LioZQua8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645528483066609664\/LioZQua8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365533458\/1442740961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:52:43 +0000 2015","id":663670545112653825,"id_str":"663670545112653825","text":"\"iblis rejected one sujud\"\n\nHow many do we reject daily?","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1484429898,"id_str":"1484429898","name":"\u0641","screen_name":"FetyaEdDeen","location":"\u0627\u0644\u0623\u0631\u0636","url":"http:\/\/instagram.com\/IwanHazwan_","description":"Allah knows what's the best for you, and when it's best for you to have it. Trust Him (Admin)","protected":false,"verified":false,"followers_count":96405,"friends_count":1048,"listed_count":52,"favourites_count":12333,"statuses_count":24119,"created_at":"Wed Jun 05 08:30:25 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454332288625426432\/S16rLSHM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454332288625426432\/S16rLSHM.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628630539214258176\/TaiaCoU9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628630539214258176\/TaiaCoU9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1484429898\/1438713127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1023,"favorite_count":408,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FetyaEdDeen","name":"\u0641","id":1484429898,"id_str":"1484429898","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689868289,"id_str":"663728093689868289","text":"RT @wapu_lily_07: \u3044\u3047\u30fc\u3044 https:\/\/t.co\/Rex8I7MetI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2199588630,"id_str":"2199588630","name":"\u3078\u305f\u3059\u3051","screen_name":"kimosugi_ojisan","location":"\u592a\u967d\u7cfb\u7b2c3\u60d1\u661f","url":null,"description":"\u8d70\u99ac\u706f","protected":false,"verified":false,"followers_count":167,"friends_count":392,"listed_count":6,"favourites_count":5514,"statuses_count":10500,"created_at":"Sun Nov 17 14:13:02 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"B80000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662103938573824000\/V_AzMKV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662103938573824000\/V_AzMKV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199588630\/1446326563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:48 +0000 2015","id":663720144695246848,"id_str":"663720144695246848","text":"\u3044\u3047\u30fc\u3044 https:\/\/t.co\/Rex8I7MetI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3221364248,"id_str":"3221364248","name":"\u308f\u3077\/\u30bf\u30b3\u30ad\u30e0\u30c1\u226bSSG","screen_name":"wapu_lily_07","location":"\u58ca\u3055\u308c\u305f\u30d3\u30fc\u30b3\u30f3","url":"http:\/\/broadcastyua.wix.com\/splssg","description":"\u3010\u5e38\u8b58\u306e\u306a\u3044\u4eba\u306f\u304a\u65ad\u308a\u3011iPhone\u3067\u6307\u304a\u7d75\u304b\u304d\u3057\u3066\u307e\u3075\/\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3:#\u304a\u3044\u3057\u3044\u30bf\u30b3\u30ad\u30e0\u30c1*\u30ac\u30c1\u6700\u9ad8S+99*3\u57a2\u30ab\u30f3\u30b9\u30c8*\u30c1\u30e7\u30fc\u30b7\u30e9\u30f3\u30ad\u30f3\u30b01\u4f4d5\u56de*clan\u3010\u226bSSG\u3011\/ORAS\/\u7d75\u63cf\u304d*\/\u5343\u8449\/\u30e9\u30d6\u30e9\u30a4\u30d6*\/\u771f\u59eb\u3061\u3083\u3093\u63a8\u3057*\/\u30d5\u30a9\u30ed\u30d0100%\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce","protected":false,"verified":false,"followers_count":1686,"friends_count":1219,"listed_count":13,"favourites_count":536,"statuses_count":1987,"created_at":"Wed May 20 12:13:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658375332882284544\/dkIgISoE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658375332882284544\/dkIgISoE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221364248\/1432125948","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720139301367810,"id_str":"663720139301367810","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","url":"https:\/\/t.co\/Rex8I7MetI","display_url":"pic.twitter.com\/Rex8I7MetI","expanded_url":"http:\/\/twitter.com\/wapu_lily_07\/status\/663720144695246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720139301367810,"id_str":"663720139301367810","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","url":"https:\/\/t.co\/Rex8I7MetI","display_url":"pic.twitter.com\/Rex8I7MetI","expanded_url":"http:\/\/twitter.com\/wapu_lily_07\/status\/663720144695246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wapu_lily_07","name":"\u308f\u3077\/\u30bf\u30b3\u30ad\u30e0\u30c1\u226bSSG","id":3221364248,"id_str":"3221364248","indices":[3,16]}],"symbols":[],"media":[{"id":663720139301367810,"id_str":"663720139301367810","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","url":"https:\/\/t.co\/Rex8I7MetI","display_url":"pic.twitter.com\/Rex8I7MetI","expanded_url":"http:\/\/twitter.com\/wapu_lily_07\/status\/663720144695246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720144695246848,"source_status_id_str":"663720144695246848","source_user_id":3221364248,"source_user_id_str":"3221364248"}]},"extended_entities":{"media":[{"id":663720139301367810,"id_str":"663720139301367810","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYB8z1UsAIxXyG.jpg","url":"https:\/\/t.co\/Rex8I7MetI","display_url":"pic.twitter.com\/Rex8I7MetI","expanded_url":"http:\/\/twitter.com\/wapu_lily_07\/status\/663720144695246848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663720144695246848,"source_status_id_str":"663720144695246848","source_user_id":3221364248,"source_user_id_str":"3221364248"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689851904,"id_str":"663728093689851904","text":"#OTWOLWish One thousand four hundred eighty nine","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4089755299,"id_str":"4089755299","name":"Reyna Sacala","screen_name":"reyna_sacala","location":"Singapore","url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":75,"listed_count":3,"favourites_count":62,"statuses_count":5245,"created_at":"Sun Nov 01 10:21:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660764712531918849\/OSI5Wyyx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660764712531918849\/OSI5Wyyx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4089755299\/1446373658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[0,10]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673054208,"id_str":"663728093673054208","text":"@khushi_bukhari @iPriyankaBhatt heheh. True. Soo which wuld be 5 tv actors on ur calender??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727841998192640,"in_reply_to_status_id_str":"663727841998192640","in_reply_to_user_id":2260136772,"in_reply_to_user_id_str":"2260136772","in_reply_to_screen_name":"khushi_bukhari","user":{"id":100505622,"id_str":"100505622","name":"Shona2608","screen_name":"ssshonz","location":"New Delhi ","url":null,"description":"everything will be okay in the end. if it's not okay its not the end.","protected":false,"verified":false,"followers_count":1044,"friends_count":933,"listed_count":18,"favourites_count":49944,"statuses_count":31902,"created_at":"Wed Dec 30 14:08:23 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9E9E9E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643946150140112896\/noWjdhNF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643946150140112896\/noWjdhNF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100505622\/1443696062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"khushi_bukhari","name":"Khushi Bukhari","id":2260136772,"id_str":"2260136772","indices":[0,15]},{"screen_name":"iPriyankaBhatt","name":"Priyanka Bhatt","id":52652334,"id_str":"52652334","indices":[16,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685673984,"id_str":"663728093685673984","text":"\u308a\u305c\u3061\u3083\u3093\u304b\u30b7\u30e3\u30ed\u3061\u3083\u3093\u304b\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2404224720,"id_str":"2404224720","name":"\u30a2\u30eb\u30b9@\u30da\u30f3\u30bf\u30d6\u8cb7\u3044\u307e\u3057\u305f","screen_name":"mushin_kuon","location":"\u8352\u308c\u305f\u308a\u30ad\u30ec\u305f\u308a\u3059\u308b\u3068\u53e3\u8abf\u304c\u60aa\u304f\u306a\u308a\u307e\u3059","url":"http:\/\/twpf.jp\/mushin_kuon","description":"\u3069\u3063\u304b\u306e\u8ab0\u304b\u306e\u4e2d\u57a2\u3002\u6700\u8fd1\u306f\u5225\u57a2\u306b\u3088\u304f\u3044\u307e\u3059\u3002\u4e2d\u57a2\u3060\u304b\u3089\u591a\u5c11\u306e\u4e8b\u306f\u898b\u9003\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u30a2\u30fc\u30af\u30b9\u306e\u4ed5\u4e8b\u306fship2\u3067\u6d3b\u52d5\u4e2d\u3002\u53e3\u8abf\u304c\u5b9a\u307e\u3089\u306a\u3044\u306e\u306f\u30a2\u30a4\u30b3\u30f3\u306e\u305b\u3044\u3060\u3068\u8a00\u3046\u3053\u3068\u306b\u2026 \u6700\u8fd1\u30da\u30f3\u30bf\u30d6\u3092\u8cb7\u3063\u305f\u306e\u3067\u7d75\u3092\u63cf\u3044\u3066\u3044\u304f\u304b\u3082","protected":false,"verified":false,"followers_count":65,"friends_count":68,"listed_count":1,"favourites_count":110,"statuses_count":13641,"created_at":"Sat Mar 22 15:34:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"8600B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661537469175721985\/InFA-Q0k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661537469175721985\/InFA-Q0k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2404224720\/1429428256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681577984,"id_str":"663728093681577984","text":"RT @alkolikabi: Ne kadar yanl\u0131\u015f insan varsa bulup, de\u011fer vermek konusunda \u00e7ok ba\u015far\u0131l\u0131y\u0131m.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411668675,"id_str":"411668675","name":"Yaren T\u00fcrkmen","screen_name":"Yareenturkmeenn","location":"Konya, T\u00fcrkiye","url":"http:\/\/instagram.com\/yrnte","description":"Basketball Player #13 \/ We can do it! \/ 141114 \u2728","protected":false,"verified":false,"followers_count":481,"friends_count":136,"listed_count":0,"favourites_count":4127,"statuses_count":12962,"created_at":"Sun Nov 13 18:31:24 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618131252885917696\/BFhy7rTq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618131252885917696\/BFhy7rTq.jpg","profile_background_tile":true,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660142051640655872\/H55HM_Qw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660142051640655872\/H55HM_Qw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411668675\/1443025916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:56:05 +0000 2015","id":663686492821331968,"id_str":"663686492821331968","text":"Ne kadar yanl\u0131\u015f insan varsa bulup, de\u011fer vermek konusunda \u00e7ok ba\u015far\u0131l\u0131y\u0131m.","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92928029,"id_str":"92928029","name":"Alkolik Abi","screen_name":"alkolikabi","location":"cehennem","url":null,"description":"Alkolik abi'nizden tavsiyeler. Hem yazar hem \u00e7izer, kafas\u0131na g\u00f6re.Bir di\u011fer profil @alkolikabla","protected":false,"verified":false,"followers_count":75132,"friends_count":21098,"listed_count":25,"favourites_count":167954,"statuses_count":31334,"created_at":"Fri Nov 27 08:13:21 +0000 2009","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615982568618352640\/lb274eiu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615982568618352640\/lb274eiu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92928029\/1435696762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":30,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alkolikabi","name":"Alkolik Abi","id":92928029,"id_str":"92928029","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673201665,"id_str":"663728093673201665","text":"RT @KR4LL17: M\u0130T T\u0131rlar\u0131n\u0131 Durduran Paralel Savc\u0131 Adalet Kar\u015f\u0131s\u0131nda Hesap Veriyor.. Allah \u00c7ok B\u00fcy\u00fck Allah..\u203c\ufe0f https:\/\/t.co\/TmWyxYtKkn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3988783221,"id_str":"3988783221","name":"44 malatyali","screen_name":"44malatyali3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":106,"friends_count":80,"listed_count":0,"favourites_count":291,"statuses_count":617,"created_at":"Sun Oct 18 18:27:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656790141130907650\/_4Babh45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656790141130907650\/_4Babh45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3988783221\/1445425988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:07:32 +0000 2015","id":663342087040012288,"id_str":"663342087040012288","text":"M\u0130T T\u0131rlar\u0131n\u0131 Durduran Paralel Savc\u0131 Adalet Kar\u015f\u0131s\u0131nda Hesap Veriyor.. Allah \u00c7ok B\u00fcy\u00fck Allah..\u203c\ufe0f https:\/\/t.co\/TmWyxYtKkn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663129636973486080,"in_reply_to_status_id_str":"663129636973486080","in_reply_to_user_id":1685786695,"in_reply_to_user_id_str":"1685786695","in_reply_to_screen_name":"KR4LL17","user":{"id":1685786695,"id_str":"1685786695","name":"%49.5 Kayyum R\u00a3\u0130S","screen_name":"KR4LL17","location":"KONYA \u007bBr\u00fcksel\u007d ","url":null,"description":"\u2022Hz.Muhammed(SAV) \u2022Hz.Hamza #RTE \u2022Yenilgi Yenilgi B\u00fcy\u00fcyen Bir Zafer Vard\u0131r.!\u261d\ufe0f","protected":false,"verified":false,"followers_count":209060,"friends_count":41487,"listed_count":95,"favourites_count":20442,"statuses_count":28655,"created_at":"Tue Aug 20 13:07:01 +0000 2013","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656462305669066752\/4dDhOO_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656462305669066752\/4dDhOO_J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1685786695\/1445345426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":85,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663122728770142208,"id_str":"663122728770142208","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","url":"https:\/\/t.co\/TmWyxYtKkn","display_url":"pic.twitter.com\/TmWyxYtKkn","expanded_url":"http:\/\/twitter.com\/Malikejder47\/status\/663122943824760833\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663122943824760833,"source_status_id_str":"663122943824760833","source_user_id":2340821280,"source_user_id_str":"2340821280"}]},"extended_entities":{"media":[{"id":663122728770142208,"id_str":"663122728770142208","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","url":"https:\/\/t.co\/TmWyxYtKkn","display_url":"pic.twitter.com\/TmWyxYtKkn","expanded_url":"http:\/\/twitter.com\/Malikejder47\/status\/663122943824760833\/video\/1","type":"video","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663122943824760833,"source_status_id_str":"663122943824760833","source_user_id":2340821280,"source_user_id_str":"2340821280","video_info":{"aspect_ratio":[4,3],"duration_millis":30023,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/480x360\/n9FphR0M3GTyLLYW.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/240x180\/d0hCTQj5w0eWKHvb.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/480x360\/n9FphR0M3GTyLLYW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/pl\/EUSzXpQQKsFViOVU.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/pl\/EUSzXpQQKsFViOVU.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KR4LL17","name":"%49.5 Kayyum R\u00a3\u0130S","id":1685786695,"id_str":"1685786695","indices":[3,11]}],"symbols":[],"media":[{"id":663122728770142208,"id_str":"663122728770142208","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","url":"https:\/\/t.co\/TmWyxYtKkn","display_url":"pic.twitter.com\/TmWyxYtKkn","expanded_url":"http:\/\/twitter.com\/Malikejder47\/status\/663122943824760833\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663122943824760833,"source_status_id_str":"663122943824760833","source_user_id":2340821280,"source_user_id_str":"2340821280"}]},"extended_entities":{"media":[{"id":663122728770142208,"id_str":"663122728770142208","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663122728770142208\/pu\/img\/WJGPkVzXY_v3YWTR.jpg","url":"https:\/\/t.co\/TmWyxYtKkn","display_url":"pic.twitter.com\/TmWyxYtKkn","expanded_url":"http:\/\/twitter.com\/Malikejder47\/status\/663122943824760833\/video\/1","type":"video","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663122943824760833,"source_status_id_str":"663122943824760833","source_user_id":2340821280,"source_user_id_str":"2340821280","video_info":{"aspect_ratio":[4,3],"duration_millis":30023,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/480x360\/n9FphR0M3GTyLLYW.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/240x180\/d0hCTQj5w0eWKHvb.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/vid\/480x360\/n9FphR0M3GTyLLYW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/pl\/EUSzXpQQKsFViOVU.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663122728770142208\/pu\/pl\/EUSzXpQQKsFViOVU.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093660471296,"id_str":"663728093660471296","text":"@turutei \u3057\u307e\u3057\u3087\u266a\u3055\u3063\u304d\u30cd\u30af\u30ed\u30b4\u30f3\u30c9\u4e8c\u9023\u767a\u3067\u305d\u3063\u3053\u3046\u5168\u6ec5\u3057\u307e\u3057\u305f(\u00b4\u2200\uff40*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727861241528320,"in_reply_to_status_id_str":"663727861241528320","in_reply_to_user_id":175824728,"in_reply_to_user_id_str":"175824728","in_reply_to_screen_name":"turutei","user":{"id":94068829,"id_str":"94068829","name":"\u3086\u3093\uff20\uff2e\uff4f\uff0e\uff18\uff17","screen_name":"monokuro0yum626","location":"\u4eac\u90fd","url":null,"description":"\u6700\u8fd1Tweet\u7169\u3044\u3067\u3059\u3002\u6bcd\u5a18\u4e8c\u4e16\u4ee3\u3066\u3043\u2606\u30a4\u30f3\uff01\u5ec3\u4eba\uff0f\u30c9\u30e9\u30af\u30a8X\u5ec3\u4eba\u9053\u307e\u3063\u3057\u3050\u3089\u3002\uff11\uff11\u6708\u304b\u3089\u30e2\u30f3\u30cf\u30f3\u5ec3\u4eba\u3078\u79fb\u884c\u3059\u308b\u306e\u304b\uff01\uff1f\n\u307e\u3060\u307e\u3060Twitter\u306e\u4f7f\u3044\u65b9\u52c9\u5f37\u4e2d\u3002","protected":false,"verified":false,"followers_count":57,"friends_count":74,"listed_count":1,"favourites_count":54,"statuses_count":4841,"created_at":"Wed Dec 02 11:10:47 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554836222\/20090927193557_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554836222\/20090927193557_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"turutei","name":"\u3064\u308b\u3066\u3043\u30fc\uff20\u3066\u3043\u2606\u30a4\u30f3\uff01","id":175824728,"id_str":"175824728","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083657"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673168896,"id_str":"663728093673168896","text":"@ameera494 @_i3z0 \u0627\u0633\u062a\u063a\u0641\u0631 \u0648\u0627\u0644\u0644\u0647 \u0628\u0633 \u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728003789230080,"in_reply_to_status_id_str":"663728003789230080","in_reply_to_user_id":1161286213,"in_reply_to_user_id_str":"1161286213","in_reply_to_screen_name":"ameera494","user":{"id":3142542721,"id_str":"3142542721","name":"\u0643\u064a\u0631\u064a\u062a\u0648 \u274c \u304d\u308a\u3068\u304a","screen_name":"kiritoo__kun","location":null,"url":"http:\/\/sayat.me\/kiritoo","description":"\u0645\u0627\u0628\u064a\u0646 \u0627\u0644\u0642\u0648\u0633\u064a\u0646 \u0634\u062e\u0635\u064a\u062a\u064a \u0627\u0644\u062a\u0648\u064a\u062a\u0631\u064a\u0647 \u0648\u062a\u062d\u0645\u0644 \u062c\u0632\u0621 \u0645\u0646 \u0627\u0644\u062d\u0642\u064a\u0642\u0647 ( \u0627\u0644\u0647\u062f\u0648\u0621 \u0648\u0627\u0644\u0635\u0645\u062a \u0648\u0627\u0644\u0631\u062f \u0627\u0644\u062c\u0645\u064a\u0644 \u0647\u064a \u0627\u0628\u0631\u0632 \u0635\u0641\u0627\u062a\u064a ) \u0627\u0646\u062a\u0647\u0649..! ..\u0633\u0639\u0627\u062f\u0647 \u0623\u062a\u0645\u0646\u0649 \u062a\u062f\u0648\u0645 ( @yamato1413)","protected":false,"verified":false,"followers_count":609,"friends_count":120,"listed_count":1,"favourites_count":85,"statuses_count":64568,"created_at":"Mon Apr 06 19:04:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663285918254632960\/lTO7ZsgJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663285918254632960\/lTO7ZsgJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3142542721\/1446974999","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ameera494","name":"Mrmr..'\u2661","id":1161286213,"id_str":"1161286213","indices":[0,10]},{"screen_name":"_i3z0","name":"\u0639\u0632 \u0648\u0628\u0633 \u2744\ufe0f","id":3721049238,"id_str":"3721049238","indices":[11,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093668904960,"id_str":"663728093668904960","text":"@Lael_1422 \uc74c...\uadf8\uc815\ub3c4...\uc778\uac00? (\uba38\ub9ac\ub97c \uc0b4\uc9dd \ub9e4\ub9cc\uc9c0\uba74\uc11c)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726926310182912,"in_reply_to_status_id_str":"663726926310182912","in_reply_to_user_id":3930114194,"in_reply_to_user_id_str":"3930114194","in_reply_to_screen_name":"Lael_1422","user":{"id":3927167712,"id_str":"3927167712","name":"[R]\ub85c\ud2f0 \uccbc\ub808\uc2a4\ud130","screen_name":"Rotti_1422","location":"Cuore congelato in","url":"https:\/\/www.evernote.com\/shard\/s643\/sh\/65b30d6e-a699-4c79-95de-8cb9656e0e53\/f96df9c90fe133bf412bfc5a","description":"[ \ub808\ubc88\ud074\ub85c \/ 182cm \/ \ud45c\uc900 \/ \uc21c\ud608 \/ \uc774\ud0c8\ub9ac\uc544 ] Esso ha un margine\n With. Raho","protected":false,"verified":false,"followers_count":28,"friends_count":28,"listed_count":0,"favourites_count":437,"statuses_count":2892,"created_at":"Sat Oct 17 17:48:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719890272960512\/NT_TLrS3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719890272960512\/NT_TLrS3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3927167712\/1447075203","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lael_1422","name":"[S] \ub77c\uc5d8 D. \uc138\uc778","id":3930114194,"id_str":"3930114194","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080083659"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664677889,"id_str":"663728093664677889","text":"@nikoclock @matsumi_i \u30d1\u30c1\u30f3\u30b3\u306e\u306f\u4eca\u3061\u3087\u3046\u3069\u898b\u3066\u307e\u3057\u305f\uff01\uff01\u3000\u4f55\u3084\u308d\u3046\u304b\u306a\u3041\u3002(\u884c\u3051\u308b\u304b\u4e0d\u660e\u3067\u3059\u304c\u2190)\u3000\u3042\u3068\u306f\u30af\u30e9\u30f3\u304b\u30e9\u30f3\u30ab\u3061\u3083\u3093\u3092\u5927\u585a\u3055\u3093\u304c\u3084\u308c\u3070\u2026( ^-^)\u30ce\u2220\u203b\u3002\uff8b\uff6c\uff8c\uff70.:*:\u30fb'\u00b0\u2606","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727405262094336,"in_reply_to_status_id_str":"663727405262094336","in_reply_to_user_id":1382802494,"in_reply_to_user_id_str":"1382802494","in_reply_to_screen_name":"nikoclock","user":{"id":535312879,"id_str":"535312879","name":"\u536f\u6708\uff70\u30e6\u30a6\uff70","screen_name":"uduki_yu","location":"\u305d\u306e\u8fba\u3067\u751f\u304d\u3066\u307e\u3059","url":null,"description":"\u7a7a\u304c\u597d\u304d\u3002\u5927\u5730\u304c\u597d\u304d\u3002\u81ea\u7136\u304c\u597d\u304d\u3002\u6b4c\u304c\u597d\u304d\u3002\u52d5\u7269\u304c\u597d\u304d\u3002\u3053\u306e\u4e16\u754c\u306f\u6b8b\u9177\u3060\u3051\u308c\u3069\u3001\u7d20\u6575\u306a\u4e16\u754c\u3060\u306d\u3002\u6f2b\u753b\u3082\u30a2\u30cb\u30e1\u3082\u597d\u304d\u3002\u4e3b\u306b\u6b74\u4ee3\u30de\u30af\u30ed\u30b9\u30fb\u9280\u9b42\u30fbD\u30b0\u30ec\u30fb\u541b\u5618\u30fb\u4e2d\u6751\u6625\u83ca\u4f5c\u54c1\u30fb\u3042\u307e\u3064\u304d\u30fb\u30b3\u30ca\u30f3\u30fb\u307e\u3058\u5feb\u3002\u4ed6\u3082\u8272\u3005\u8aad\u3093\u3067\u307e\u3059\u3002\u81ea\u7531\u306b\u306e\u3073\u306e\u3073\u751f\u304d\u3066\u3044\u304d\u305f\u3044\u3002","protected":false,"verified":false,"followers_count":249,"friends_count":228,"listed_count":1,"favourites_count":248,"statuses_count":22399,"created_at":"Sat Mar 24 12:49:12 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872220988\/b08b3ffc4a36f9732fce21cb6e693eb6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872220988\/b08b3ffc4a36f9732fce21cb6e693eb6.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627870901053231104\/1y0NEMyc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627870901053231104\/1y0NEMyc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535312879\/1421574649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nikoclock","name":"\u5927\u585a\uff86\uff7a\u2b5012\/4(\u91d1)\u7b2c49\u56de\u30de\u30af\u30ca\u30a4","id":1382802494,"id_str":"1382802494","indices":[0,10]},{"screen_name":"matsumi_i","name":"\u307e\u3064\u307f","id":195046237,"id_str":"195046237","indices":[11,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698199552,"id_str":"663728093698199552","text":"NOW: Defo talks w\/ Brian Sayler Exec. Dir. Military Affairs of Kaplan U on the Wounded Warriors game go to https:\/\/t.co\/udHBWDXR3K for info!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122667542,"id_str":"122667542","name":"Mike 'Lubie' Lubitz","screen_name":"LubieWINZ","location":"Ft. Lauderdale","url":"http:\/\/940WINZ.com\/lubetoob","description":"Producer\/on air sidekick 'Defo & Goldie Show' 940 WINZ AM! Host of the Young Gunz on http:\/\/Deforadio.com. Promotions Mega 94.9, Y100, and 103.5 Super X!!","protected":false,"verified":false,"followers_count":615,"friends_count":954,"listed_count":28,"favourites_count":3643,"statuses_count":23048,"created_at":"Sat Mar 13 13:35:05 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500096695405801472\/vx0LTPMN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500096695405801472\/vx0LTPMN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122667542\/1408058118","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/udHBWDXR3K","expanded_url":"http:\/\/WWAFT.org","display_url":"WWAFT.org","indices":[107,130]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093677289472,"id_str":"663728093677289472","text":"You may feel external pressure to tie up loose ends early in t... More for Scorpio https:\/\/t.co\/MXwmfXdVNC","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367582499,"id_str":"367582499","name":"Alannah Vetterl","screen_name":"LanaVetterl","location":"Vancouver, Canada","url":null,"description":"nursing student","protected":false,"verified":false,"followers_count":440,"friends_count":413,"listed_count":1,"favourites_count":1672,"statuses_count":5412,"created_at":"Sun Sep 04 06:09:30 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638132485637869568\/I9FKJ24d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638132485637869568\/I9FKJ24d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367582499\/1440977615","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MXwmfXdVNC","expanded_url":"http:\/\/bit.ly\/xlOqWT","display_url":"bit.ly\/xlOqWT","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083661"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689872384,"id_str":"663728093689872384","text":"RT @HaeChen: Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3327587874,"id_str":"3327587874","name":"JaDinexCleah","screen_name":"msanne_20","location":"MNL.Ph","url":null,"description":"Carp\u0117.diem\u25cfFangirl\u25cfJaDine fan\u25cfOTWOLista","protected":false,"verified":false,"followers_count":93,"friends_count":146,"listed_count":7,"favourites_count":403,"statuses_count":42567,"created_at":"Mon Aug 24 02:05:47 +0000 2015","utc_offset":28800,"time_zone":"Taipei","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660740995617701888\/_FNHS3Cm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660740995617701888\/_FNHS3Cm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3327587874\/1440462736","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682589470720,"id_str":"663727682589470720","text":"Otwol taping... cto #OTWOLWish JaDine #OTWOLFinallyYours https:\/\/t.co\/PRVFi14g5g","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277047868,"id_str":"277047868","name":"JayeToDine","screen_name":"HaeChen","location":"Chicago, IL","url":"http:\/\/entertainment.abs-cbn.com\/tv\/shows\/asap\/pop-awards","description":"If it wasn't Nadine, then I'd probably rather be alone. - James","protected":false,"verified":false,"followers_count":2078,"friends_count":128,"listed_count":11,"favourites_count":89,"statuses_count":49656,"created_at":"Mon Apr 04 16:01:25 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620954319311892480\/_BGE39oW.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"F2F4F5","profile_sidebar_fill_color":"EBEFF0","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660597398390104064\/FEumhIOx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277047868\/1446333667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1d9a5370a355ab0c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1d9a5370a355ab0c.json","place_type":"city","name":"Chicago","full_name":"Chicago, IL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-87.940033,41.644102],[-87.940033,42.023067],[-87.523993,42.023067],[-87.523993,41.644102]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[20,30]},{"text":"OTWOLFinallyYours","indices":[38,56]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[33,43]},{"text":"OTWOLFinallyYours","indices":[51,69]}],"urls":[],"user_mentions":[{"screen_name":"HaeChen","name":"JayeToDine","id":277047868,"id_str":"277047868","indices":[3,11]}],"symbols":[],"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"extended_entities":{"media":[{"id":663727672988704768,"id_str":"663727672988704768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzVAWoAAEap5.jpg","url":"https:\/\/t.co\/PRVFi14g5g","display_url":"pic.twitter.com\/PRVFi14g5g","expanded_url":"http:\/\/twitter.com\/HaeChen\/status\/663727682589470720\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":735,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":690,"resize":"fit"}},"source_status_id":663727682589470720,"source_status_id_str":"663727682589470720","source_user_id":277047868,"source_user_id_str":"277047868"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698232320,"id_str":"663728093698232320","text":"RT @itskushbruh: open minds are attractive.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":425963477,"id_str":"425963477","name":"#JaRwSSE","screen_name":"D_nai_Elle","location":"University of the West Indies","url":null,"description":"The best is yet to come","protected":false,"verified":false,"followers_count":867,"friends_count":854,"listed_count":3,"favourites_count":2543,"statuses_count":9637,"created_at":"Thu Dec 01 17:23:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593471870567108612\/gczyVgra_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593471870567108612\/gczyVgra_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/425963477\/1446566887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 01:35:05 +0000 2015","id":662443048522002432,"id_str":"662443048522002432","text":"open minds are attractive.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143635312,"id_str":"1143635312","name":"kush","screen_name":"itskushbruh","location":"\u25a0 turn my notifications on \u25a0","url":null,"description":"| @_nxstvlgic | @shiaIabeuof | bless my dms |","protected":false,"verified":false,"followers_count":18007,"friends_count":3554,"listed_count":13,"favourites_count":9234,"statuses_count":16845,"created_at":"Sat Feb 02 23:02:40 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/857806701\/30a58ec7198fe19f8f52915995bd95f0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/857806701\/30a58ec7198fe19f8f52915995bd95f0.jpeg","profile_background_tile":true,"profile_link_color":"FFFFFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662665698888388608\/MK2NP_1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662665698888388608\/MK2NP_1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1143635312\/1446237002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1462,"favorite_count":900,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"itskushbruh","name":"kush","id":1143635312,"id_str":"1143635312","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093660643328,"id_str":"663728093660643328","text":"@la_patilla Ahora la cosa se les revierte. Por eso: NO HAGAS A OTRO, LO QUE NO TE GUSTA QUE TE HAGAN A TI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726603617353728,"in_reply_to_status_id_str":"663726603617353728","in_reply_to_user_id":124172948,"in_reply_to_user_id_str":"124172948","in_reply_to_screen_name":"la_patilla","user":{"id":3087082893,"id_str":"3087082893","name":"Nerio Diaz","screen_name":"nerioadiaz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":37,"listed_count":0,"favourites_count":88,"statuses_count":3428,"created_at":"Wed Mar 11 15:51:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575690260694302720\/CugffZiJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575690260694302720\/CugffZiJ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"la_patilla","name":"La Patilla","id":124172948,"id_str":"124172948","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080083657"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698232321,"id_str":"663728093698232321","text":"@AI_Yooa95 wadu kode ? \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725884625416192,"in_reply_to_status_id_str":"663725884625416192","in_reply_to_user_id":2350885398,"in_reply_to_user_id_str":"2350885398","in_reply_to_screen_name":"AI_Yooa95","user":{"id":3039522524,"id_str":"3039522524","name":"ts. WONWOO","screen_name":"SY_Mingyu","location":"17SQ;hiphopteam","url":null,"description":"[PARODY] Say the name ? SEVENTEEN ! \u3161 Seventeen HipHop Unit \u3161 Kim Mingyu \u3161 06041997 \u3161 #ESYEAHHH","protected":false,"verified":false,"followers_count":585,"friends_count":501,"listed_count":1,"favourites_count":238,"statuses_count":5492,"created_at":"Tue Feb 24 12:24:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719758601191424\/coh6Ji52_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719758601191424\/coh6Ji52_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039522524\/1446995323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AI_Yooa95","name":"YooA","id":2350885398,"id_str":"2350885398","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698392065,"id_str":"663728093698392065","text":"RT @ProDecProducts: We have 5 Corinthian Brush Sets to #giveaway all week! RT to #win, easy peasy! https:\/\/t.co\/LFcsSpxhMy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":458487500,"id_str":"458487500","name":"Clair Dukes","screen_name":"Clarbo18","location":"Maldon ","url":"https:\/\/twitter.com\/#!\/Clarbo18","description":"Former Staff Nurse fortunate enough to have a career break. Love being a mum & wife! Love make up, music, fine wine, cheese,gossip & current affairs!","protected":false,"verified":false,"followers_count":1474,"friends_count":2471,"listed_count":99,"favourites_count":7877,"statuses_count":110329,"created_at":"Sun Jan 08 16:31:44 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2650919052\/8677fece966b423c821c6996e09e07f9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2650919052\/8677fece966b423c821c6996e09e07f9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458487500\/1441305649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:15 +0000 2015","id":663710190559100929,"id_str":"663710190559100929","text":"We have 5 Corinthian Brush Sets to #giveaway all week! RT to #win, easy peasy! https:\/\/t.co\/LFcsSpxhMy","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947760642,"id_str":"947760642","name":"ProDec Products","screen_name":"ProDecProducts","location":null,"url":"http:\/\/prodec.uk.com","description":"The UK's most widely distributed trade painting and decorating accessory brand - the complete solution for the industry.","protected":false,"verified":false,"followers_count":1792,"friends_count":1457,"listed_count":8,"favourites_count":527,"statuses_count":1058,"created_at":"Wed Nov 14 13:36:22 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/474832938391982080\/9WYIvr_W.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/474832938391982080\/9WYIvr_W.png","profile_background_tile":false,"profile_link_color":"DD052C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474827046443417600\/_lxjk3oB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474827046443417600\/_lxjk3oB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947760642\/1402494001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":18,"entities":{"hashtags":[{"text":"giveaway","indices":[35,44]},{"text":"win","indices":[61,65]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663694647521378304,"id_str":"663694647521378304","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","url":"https:\/\/t.co\/LFcsSpxhMy","display_url":"pic.twitter.com\/LFcsSpxhMy","expanded_url":"http:\/\/twitter.com\/ProDecProducts\/status\/663710190559100929\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663694647521378304,"id_str":"663694647521378304","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","url":"https:\/\/t.co\/LFcsSpxhMy","display_url":"pic.twitter.com\/LFcsSpxhMy","expanded_url":"http:\/\/twitter.com\/ProDecProducts\/status\/663710190559100929\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"giveaway","indices":[55,64]},{"text":"win","indices":[81,85]}],"urls":[],"user_mentions":[{"screen_name":"ProDecProducts","name":"ProDec Products","id":947760642,"id_str":"947760642","indices":[3,18]}],"symbols":[],"media":[{"id":663694647521378304,"id_str":"663694647521378304","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","url":"https:\/\/t.co\/LFcsSpxhMy","display_url":"pic.twitter.com\/LFcsSpxhMy","expanded_url":"http:\/\/twitter.com\/ProDecProducts\/status\/663710190559100929\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663710190559100929,"source_status_id_str":"663710190559100929","source_user_id":947760642,"source_user_id_str":"947760642"}]},"extended_entities":{"media":[{"id":663694647521378304,"id_str":"663694647521378304","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqw_jXAAAPcEn.png","url":"https:\/\/t.co\/LFcsSpxhMy","display_url":"pic.twitter.com\/LFcsSpxhMy","expanded_url":"http:\/\/twitter.com\/ProDecProducts\/status\/663710190559100929\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663710190559100929,"source_status_id_str":"663710190559100929","source_user_id":947760642,"source_user_id_str":"947760642"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093664845824,"id_str":"663728093664845824","text":"los buscadores sin m\u00e1s br\u00fajula\nque su amor de nadie,\nque su amor de escarcha,\nque su amor.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728044620824576,"in_reply_to_status_id_str":"663728044620824576","in_reply_to_user_id":517662313,"in_reply_to_user_id_str":"517662313","in_reply_to_screen_name":"JoaqunT1","user":{"id":517662313,"id_str":"517662313","name":"Joaqu\u00ednT","screen_name":"JoaqunT1","location":null,"url":null,"description":"(...)","protected":false,"verified":false,"followers_count":53,"friends_count":356,"listed_count":1,"favourites_count":1336,"statuses_count":1800,"created_at":"Wed Mar 07 14:55:07 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603748496966029312\/OGUHS9dw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603748496966029312\/OGUHS9dw_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080083658"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685616640,"id_str":"663728093685616640","text":"Check out \"News\" by @QbalaMusic on #EchoMusic by @ReverbNation https:\/\/t.co\/kqo2DZy9bq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3046903142,"id_str":"3046903142","name":"Running Wolf","screen_name":"RunningWolf89","location":"Michigan, USA","url":"http:\/\/www.savagelytwistedrecordsllc.weebly.com","description":"http:\/\/wolfspotradio.playtheradio.com http:\/\/www.soundcloud.com\/RunningWolf #360WiseNetwork http:\/\/acidplanet.com\/RunningWolf","protected":false,"verified":false,"followers_count":9910,"friends_count":9930,"listed_count":208,"favourites_count":4485,"statuses_count":52852,"created_at":"Fri Feb 27 15:32:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571733918577270784\/Q9JL7S_Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571733918577270784\/Q9JL7S_Y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3046903142\/1445651432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EchoMusic","indices":[35,45]}],"urls":[{"url":"https:\/\/t.co\/kqo2DZy9bq","expanded_url":"http:\/\/play.echo.mu\/song?id=22541013","display_url":"play.echo.mu\/song?id=225410\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"QbalaMusic","name":"Qbala","id":84696302,"id_str":"84696302","indices":[20,31]},{"screen_name":"ReverbNation","name":"ReverbNation","id":15085591,"id_str":"15085591","indices":[49,62]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681594369,"id_str":"663728093681594369","text":"Raising the game","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3546401295,"id_str":"3546401295","name":"Jennifer Clark","screen_name":"8ca76953d9e84e2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":90,"friends_count":299,"listed_count":3,"favourites_count":6,"statuses_count":76,"created_at":"Fri Sep 04 16:30:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639838740530221056\/hDQgR9jh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639838740530221056\/hDQgR9jh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3546401295\/1441384416","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083662"} +{"delete":{"status":{"id":362231279686660096,"id_str":"362231279686660096","user_id":1052248614,"user_id_str":"1052248614"},"timestamp_ms":"1447080083825"}} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685661696,"id_str":"663728093685661696","text":"RT @moxnix88: [GIF]LIGHTSABER Teaser #SEHUN #\uc138\ud6c8\nhttps:\/\/t.co\/QDP8PDY08q https:\/\/t.co\/hUP0L7nXL1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1920196802,"id_str":"1920196802","name":"\uba74\ubc00(\ud0a4\ub9c1\uc785\uae08)","screen_name":"LOVEx0522","location":"\uc544\ubd64\ud589\uc1fc LOVEu0114","url":null,"description":"EXO SUHO \/ \ub9ce\uc774 \uc2dc\ub044\ub7ec\uc6cc\uc694 \/ \uc5b8\ud314\ud560\uaebc\uba74 \ud314\ub85cX","protected":false,"verified":false,"followers_count":844,"friends_count":708,"listed_count":2,"favourites_count":56807,"statuses_count":163604,"created_at":"Mon Sep 30 14:04:53 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660819672854458368\/6__G3A38_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660819672854458368\/6__G3A38_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1920196802\/1444497171","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:38:35 +0000 2015","id":663380101879336961,"id_str":"663380101879336961","text":"[GIF]LIGHTSABER Teaser #SEHUN #\uc138\ud6c8\nhttps:\/\/t.co\/QDP8PDY08q https:\/\/t.co\/hUP0L7nXL1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3140433001,"id_str":"3140433001","name":"D-23 \ub9c9\uc2a4\ub2c9\uc2a4","screen_name":"moxnix88","location":"\uad1c\ucc2e\uc544 \uc544\ubb34\ub798\ub3c4 \uc88b\uc544","url":null,"description":"EXO GIF EDIT . \uac1c\uc778\uc801\uc778 \ucde8\ud5a5 . QT=BLOCK . @mox_exo","protected":false,"verified":false,"followers_count":3786,"friends_count":16,"listed_count":27,"favourites_count":0,"statuses_count":6140,"created_at":"Sun Apr 05 14:41:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"848A9A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"588F94","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661085359736926208\/pwg0Aqkd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661085359736926208\/pwg0Aqkd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3140433001\/1447001200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":41,"entities":{"hashtags":[{"text":"SEHUN","indices":[23,29]},{"text":"\uc138\ud6c8","indices":[30,33]}],"urls":[{"url":"https:\/\/t.co\/QDP8PDY08q","expanded_url":"http:\/\/cfile27.uf.tistory.com\/image\/2678F235563F6C6336F9E0","display_url":"cfile27.uf.tistory.com\/image\/2678F235\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[],"media":[{"id":663380100151312384,"id_str":"663380100151312384","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","url":"https:\/\/t.co\/hUP0L7nXL1","display_url":"pic.twitter.com\/hUP0L7nXL1","expanded_url":"http:\/\/twitter.com\/moxnix88\/status\/663380101879336961\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":286,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663380100151312384,"id_str":"663380100151312384","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","url":"https:\/\/t.co\/hUP0L7nXL1","display_url":"pic.twitter.com\/hUP0L7nXL1","expanded_url":"http:\/\/twitter.com\/moxnix88\/status\/663380101879336961\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":286,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"}},"video_info":{"aspect_ratio":[250,143],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTMr7SVAAAcyex.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SEHUN","indices":[37,43]},{"text":"\uc138\ud6c8","indices":[44,47]}],"urls":[{"url":"https:\/\/t.co\/QDP8PDY08q","expanded_url":"http:\/\/cfile27.uf.tistory.com\/image\/2678F235563F6C6336F9E0","display_url":"cfile27.uf.tistory.com\/image\/2678F235\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"moxnix88","name":"D-23 \ub9c9\uc2a4\ub2c9\uc2a4","id":3140433001,"id_str":"3140433001","indices":[3,12]}],"symbols":[],"media":[{"id":663380100151312384,"id_str":"663380100151312384","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","url":"https:\/\/t.co\/hUP0L7nXL1","display_url":"pic.twitter.com\/hUP0L7nXL1","expanded_url":"http:\/\/twitter.com\/moxnix88\/status\/663380101879336961\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":286,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"}},"source_status_id":663380101879336961,"source_status_id_str":"663380101879336961","source_user_id":3140433001,"source_user_id_str":"3140433001"}]},"extended_entities":{"media":[{"id":663380100151312384,"id_str":"663380100151312384","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTMr7SVAAAcyex.png","url":"https:\/\/t.co\/hUP0L7nXL1","display_url":"pic.twitter.com\/hUP0L7nXL1","expanded_url":"http:\/\/twitter.com\/moxnix88\/status\/663380101879336961\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":286,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":286,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"}},"source_status_id":663380101879336961,"source_status_id_str":"663380101879336961","source_user_id":3140433001,"source_user_id_str":"3140433001","video_info":{"aspect_ratio":[250,143],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTMr7SVAAAcyex.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681487872,"id_str":"663728093681487872","text":"@svt0_0 \u79c1\u3082\u3044\u3064\u3067\u3082\u306f\u3052\u3089\u3063\u3061\u3087\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663642481829875712,"in_reply_to_status_id_str":"663642481829875712","in_reply_to_user_id":4022546479,"in_reply_to_user_id_str":"4022546479","in_reply_to_screen_name":"svt0_0","user":{"id":2937963224,"id_str":"2937963224","name":"\u3072\u306a\u304a","screen_name":"Hinataabc","location":"\u5929\u56fd\u306b\u306f\u30a6\u30b8\u306e\u5996\u7cbe\u306e\u56fd\u304c\u3042\u308b\u3093\u3060\u3088\uff1f","url":null,"description":"\uc6b0\uc9c0\u795e\u69d8\uc138\ube10\ud2f4\u2661\u52dd\u624b\u306b\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044\uff01\u76f8\u4e92\u3088\u3051\u308c\u3070\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u2661\u30ea\u30d7\u9001\u308a\u307e\u304f\u308a\u307e\u3059w\u6642\u3005\u65b9\u8a00\u3067\u3066\u3057\u307e\u3046\u3002\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u306b\u5171\u611f\u3057\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306a\u30c4\u30a4\u30fc\u30c8\u304c\u3067\u304d\u305f\u3089\u3068\u601d\u3044\u307e\u3059\uff01\u7d61\u307f\u306e\u306a\u304b\u3063\u305f\u65b9\u306f\u305f\u3076\u3093\u3001\u30d5\u30a9\u30ed\u30fc\u5916\u3059\u3068\u601d\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":87,"friends_count":97,"listed_count":0,"favourites_count":270,"statuses_count":961,"created_at":"Sun Dec 21 09:24:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660111394667237376\/JcRPso0V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660111394667237376\/JcRPso0V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2937963224\/1445848944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"svt0_0","name":"\u307e\u3053\u25bc","id":4022546479,"id_str":"4022546479","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673033729,"id_str":"663728093673033729","text":"@7_rkd @TK1213zzzz \u305d\u306e\u5185\u307e\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727825631907840,"in_reply_to_status_id_str":"663727825631907840","in_reply_to_user_id":3379304714,"in_reply_to_user_id_str":"3379304714","in_reply_to_screen_name":"7_rkd","user":{"id":2150561953,"id_str":"2150561953","name":"yashiki ","screen_name":"c_yashiki","location":null,"url":null,"description":"\u9752\u68ee \u2192 \u6771\u4eac \u4e0a\u91ce UVERworld","protected":false,"verified":false,"followers_count":225,"friends_count":188,"listed_count":0,"favourites_count":91,"statuses_count":2160,"created_at":"Wed Oct 23 08:39:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/500637909179834368\/Tpm58fLH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/500637909179834368\/Tpm58fLH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150561953\/1406025570","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7_rkd","name":"\u304b\u3051\u308b\u3063\u3061","id":3379304714,"id_str":"3379304714","indices":[0,6]},{"screen_name":"TK1213zzzz","name":"TK\uff08\u65b0\uff09","id":2975428980,"id_str":"2975428980","indices":[7,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093660495872,"id_str":"663728093660495872","text":"@ikaaaaaaako \u3042\u308c\u3067\u306f\u9811\u5f35\u308c\u306d\u3048wwwww\u30a4\u30e4\u30df\u3068\u30c7\u30ab\u30d1\u30f3\u3068\u30b8\u30b0\u8535\u5408\u308f\u305b\u3066\u3082\u516d\u3064\u5b50\u306b\u306f\u53ca\u3070\u306a\u3044|\u03c9`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726464970309632,"in_reply_to_status_id_str":"663726464970309632","in_reply_to_user_id":3310760462,"in_reply_to_user_id_str":"3310760462","in_reply_to_screen_name":"ikaaaaaaako","user":{"id":3724900754,"id_str":"3724900754","name":"\u3048\u308a\u2e1c(\u0e51\u20d9\u20d8'8'\u0e51\u20d9\u20d8)\u2e1d","screen_name":"suga44445115","location":null,"url":null,"description":"\u2027\u02da\u208a*\u0325(* \u2070\u0337\u0334\u0348\ua4a8\u2070\u0337\u0334\u0348)\u2027\u02da\u208a*\u0325\u59cb\u3081\u305f\u3088 \u7a141-1 \u3075\u3049\u308d\u6c17\u8efd\u306b\u2e1c(\u0e51\u20d9\u20d8'8'\u0e51\u20d9\u20d8)\u2e1d \u305e\u308f\u2026\u305e\u308f\u2026","protected":false,"verified":false,"followers_count":12,"friends_count":13,"listed_count":0,"favourites_count":289,"statuses_count":366,"created_at":"Tue Sep 29 10:44:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717031456325632\/HH_aljIv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717031456325632\/HH_aljIv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3724900754\/1445662524","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ikaaaaaaako","name":"\u5e02\u677e@\u5f1f\u677e\u3067\u9a12\u304c\u3057\u3044","id":3310760462,"id_str":"3310760462","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083657"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093690003456,"id_str":"663728093690003456","text":"@cburgueno Eso no es campa\u00f1a sucia es abrirle los ojos a los que quieren votar a Macri s\u00f3lo por votarlo, me aterra que suceda","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698139321364480,"in_reply_to_status_id_str":"663698139321364480","in_reply_to_user_id":158536904,"in_reply_to_user_id_str":"158536904","in_reply_to_screen_name":"cburgueno","user":{"id":781266349,"id_str":"781266349","name":"sergio perez #13 A","screen_name":"sergioadrianpe3","location":null,"url":null,"description":"Apasionado por la vida, mi familia y Jes\u00fas.","protected":false,"verified":false,"followers_count":23,"friends_count":49,"listed_count":0,"favourites_count":48,"statuses_count":751,"created_at":"Sat Aug 25 23:03:05 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000005993617\/2dc072160d6f4e231a3d1d4cc86f056b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000005993617\/2dc072160d6f4e231a3d1d4cc86f056b_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cburgueno","name":"carlos burgue\u00f1o","id":158536904,"id_str":"158536904","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080083664"} +{"delete":{"status":{"id":521586893406760960,"id_str":"521586893406760960","user_id":2459565192,"user_id_str":"2459565192"},"timestamp_ms":"1447080083875"}} +{"delete":{"status":{"id":644607016711819264,"id_str":"644607016711819264","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080083877"}} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681422336,"id_str":"663728093681422336","text":"\u3081\u3063\u3061\u3083\u5bd2\u304b\u3063\u305f\u65e5\u3067\u3059\u3088\u306d\u2026 #hang813","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4smart \/ www.movatwi.jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124186994,"id_str":"124186994","name":"\u304a\u3084\u3059\u307f\u3044\u304b\u3059\u307f","screen_name":"ikasumikasumi","location":"\u6771\u5317","url":null,"description":"\u7269\u8a00\u308f\u306c\u3082\u306e\u304c\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":98,"friends_count":61,"listed_count":7,"favourites_count":158,"statuses_count":11011,"created_at":"Thu Mar 18 14:58:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1331337941\/2c625059a24cf66eb511ccf826676118_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1331337941\/2c625059a24cf66eb511ccf826676118_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hang813","indices":[15,23]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093689876480,"id_str":"663728093689876480","text":"RT @trade_goodss: \u300a \u8b72\u6e21 \u300b\nMARGINAL#4 \u30de\u30b8\u30d5\u30a9\u30fc\n\u30eb\u30a4\u3001\u30a8\u30eb\u3001\u30a2\u30c8\u30e0\n\n\uff11\u301c2\u679a\u76ee\uff1a\u4e0a\u6bb5\u306e\u3082\u306e\u306f\u3001\u6700\u4e0b\u6bb5\u307e\u305f\u306f\u753b\u50cf\uff13\u679a\u76ee\u304b\u3089\u540c\u984d\u4ee5\u4e0a\u540c\u6642\u8cb7\u53d6\u3002\n\n\u5225\u30c4\u30a4\u30fc\u30c8\u306b\u3066\u3001\u4ed6\u306b\u3082\u30a2\u30c8\u30e0\u30b0\u30c3\u30ba\u51fa\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u540c\u68b1\u767a\u9001\u53ef\u80fd\u3002 https:\/\/t.co\/rAP\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153055237,"id_str":"153055237","name":"\u30c1\u30e7\u30b3@\u304b\u3059\u3066\u3044\u3089","screen_name":"chocoocoron","location":"ERO\u30e9\u30a4\u5168\u901a\u300111\/23\u30de\u30e2\u30e9\u30a4\u3001\u304a\u308c\u30d1\u30e9\u4e21\u56fd","url":null,"description":"\u9234\u6751\u5065\u4e00\u3055\u3093\/\u6226\u56fd\u7121\u53cc\/\u8584\u685c\u9b3c\/\u5341\u4e09\u652f\u6f14\u7fa9(\u8d99\u96f2)\/\u9059\u304b6(\u30c0\u30ea\u30a6\u30b9)\/\u30b3\u30c9\u30ea\u30a2\/CZ\/\u306a\u3069\u597d\u304d\u3002\u30c0\u30ea\u6893\u597d\u304d\u3002\u304a\u6c17\u8efd\u306b\u30ea\u30d7\u304f\u3060\u3055\u3044\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u304a\u65ad\u308a\u3002\u304a\u5225\u308c\u306e\u6642\u306f\u30d6\u30ed\u30c3\u30af\u2192\u89e3\u9664\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u304a\u53d6\u5f15\u306e\u65b9\u306f\u30c4\u30a4\u30d5\u30a3\u4e00\u8aad\u9858\u3044\u307e\u3059 http:\/\/twpf.jp\/chocoocoron","protected":false,"verified":false,"followers_count":101,"friends_count":188,"listed_count":0,"favourites_count":111,"statuses_count":1947,"created_at":"Mon Jun 07 15:31:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637551127190331392\/2X7JAA-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637551127190331392\/2X7JAA-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153055237\/1444491616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:52 +0000 2015","id":663727709227364352,"id_str":"663727709227364352","text":"\u300a \u8b72\u6e21 \u300b\nMARGINAL#4 \u30de\u30b8\u30d5\u30a9\u30fc\n\u30eb\u30a4\u3001\u30a8\u30eb\u3001\u30a2\u30c8\u30e0\n\n\uff11\u301c2\u679a\u76ee\uff1a\u4e0a\u6bb5\u306e\u3082\u306e\u306f\u3001\u6700\u4e0b\u6bb5\u307e\u305f\u306f\u753b\u50cf\uff13\u679a\u76ee\u304b\u3089\u540c\u984d\u4ee5\u4e0a\u540c\u6642\u8cb7\u53d6\u3002\n\n\u5225\u30c4\u30a4\u30fc\u30c8\u306b\u3066\u3001\u4ed6\u306b\u3082\u30a2\u30c8\u30e0\u30b0\u30c3\u30ba\u51fa\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u540c\u68b1\u767a\u9001\u53ef\u80fd\u3002 https:\/\/t.co\/rAPUrpjc3E","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2322796272,"id_str":"2322796272","name":"\u3054\u3093\uff20\u53d6\u5f15\u57a2","screen_name":"trade_goodss","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u3002\u3086\u3046\u3061\u3087\u5bfe\u5fdc\u3002\u6d6e\u4e0a\u5c11\u306a\u3044\u3067\u3059\u304c\u901a\u77e5\u3064\u3051\u3066\u307e\u3059\u306e\u3067\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":151,"friends_count":143,"listed_count":1,"favourites_count":15,"statuses_count":235,"created_at":"Sat Feb 01 19:47:32 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662941696775196673\/YNxc6OCN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662941696775196673\/YNxc6OCN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2322796272\/1446892704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658299375974612992,"id_str":"658299375974612992","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"}]},"extended_entities":{"media":[{"id":658299375974612992,"id_str":"658299375974612992","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"},{"id":658299375970418689,"id_str":"658299375970418689","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2yUAAEEepO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2yUAAEEepO.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"},{"id":658299377371385856,"id_str":"658299377371385856","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y8AVEAAYt9I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y8AVEAAYt9I.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trade_goodss","name":"\u3054\u3093\uff20\u53d6\u5f15\u57a2","id":2322796272,"id_str":"2322796272","indices":[3,16]}],"symbols":[],"media":[{"id":658299375974612992,"id_str":"658299375974612992","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"}]},"extended_entities":{"media":[{"id":658299375974612992,"id_str":"658299375974612992","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2zUAAA7m-j.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"},{"id":658299375970418689,"id_str":"658299375970418689","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y2yUAAEEepO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y2yUAAEEepO.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"},{"id":658299377371385856,"id_str":"658299377371385856","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK_y8AVEAAYt9I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK_y8AVEAAYt9I.jpg","url":"https:\/\/t.co\/rAPUrpjc3E","display_url":"pic.twitter.com\/rAPUrpjc3E","expanded_url":"http:\/\/twitter.com\/trade_goodss\/status\/658299384581324800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":658299384581324800,"source_status_id_str":"658299384581324800","source_user_id":2322796272,"source_user_id_str":"2322796272"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083664"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093685673985,"id_str":"663728093685673985","text":"@jack1112qoo1 \nRT\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\n\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3057\u305f( \u02ca\u1d55\u02cb )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2923708296,"in_reply_to_user_id_str":"2923708296","in_reply_to_screen_name":"jack1112qoo1","user":{"id":3724421599,"id_str":"3724421599","name":"\u308b\u3044\u2765\u2765","screen_name":"rui_382","location":null,"url":null,"description":"\u2729\u6d0b\u697d\u2729\u6d0b\u753b\u2729Follow me\u2729\u30d5\u30a9\u30ed\u30d0100%\u2729 \u2721Avril\u2721Ariana\u2721Britney\u2721Demi\u2721Nicky\u2721Carly\u27211D \u305f\u304f\u3055\u3093\u306e\u6d0b\u697d\u30fb\u6d0b\u753b\u597d\u304d\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u2708\ufe0f","protected":false,"verified":false,"followers_count":870,"friends_count":919,"listed_count":4,"favourites_count":500,"statuses_count":1114,"created_at":"Tue Sep 29 09:35:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648799413016485889\/-Z70a1NP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648799413016485889\/-Z70a1NP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3724421599\/1446127354","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jack1112qoo1","name":"\u2020Sebastian","id":2923708296,"id_str":"2923708296","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083663"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093677248512,"id_str":"663728093677248512","text":"I miss my babe @ayeedamian https:\/\/t.co\/IxzuPP5QQc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":444974925,"id_str":"444974925","name":"raven.espinoza","screen_name":"raeespo","location":"Orlando, FL","url":null,"description":"| nhs | insta ; raven.espinoza | snapchat ; raesh93 | famous people follow me | I go to A LOT of concerts | @justinbieber has my \u2764 |","protected":false,"verified":false,"followers_count":884,"friends_count":894,"listed_count":4,"favourites_count":9822,"statuses_count":3882,"created_at":"Fri Dec 23 21:24:34 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685758715\/989bd3f493497b89fc2e31bb6f0656d3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685758715\/989bd3f493497b89fc2e31bb6f0656d3.png","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659539103432638464\/ZZYcbsXF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659539103432638464\/ZZYcbsXF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/444974925\/1446688568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayeedamian","name":"damian","id":1862735432,"id_str":"1862735432","indices":[15,26]}],"symbols":[],"media":[{"id":663728070763745281,"id_str":"663728070763745281","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKe1UEAEedwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKe1UEAEedwp.jpg","url":"https:\/\/t.co\/IxzuPP5QQc","display_url":"pic.twitter.com\/IxzuPP5QQc","expanded_url":"http:\/\/twitter.com\/raeespo\/status\/663728093677248512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":804,"resize":"fit"},"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":764,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728070763745281,"id_str":"663728070763745281","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKe1UEAEedwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKe1UEAEedwp.jpg","url":"https:\/\/t.co\/IxzuPP5QQc","display_url":"pic.twitter.com\/IxzuPP5QQc","expanded_url":"http:\/\/twitter.com\/raeespo\/status\/663728093677248512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":804,"resize":"fit"},"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":764,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083661"} +{"delete":{"status":{"id":663586644956680192,"id_str":"663586644956680192","user_id":536535768,"user_id_str":"536535768"},"timestamp_ms":"1447080083931"}} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673029632,"id_str":"663728093673029632","text":"\u304d\u3087\u3046\u306f\u5ca9\u7530\u5c4b\u306e\u5317\u6d77\u9053\u7269\u7523\u5c55\u3044\u3063\u3066\n\u30ad\u30e3\u30e9\u30e1\u30eb\u8cb7\u3063\u305f\u263a\ufe0f\ud83d\udc95\ud83d\udc95\n\u53e3\u306e\u4e2d\u3067\u3068\u308d\u3051\u308b\u3001\u3001\u3001\u30e8\u30c0\u30ec https:\/\/t.co\/GkJZ56ZRRW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":711418530,"id_str":"711418530","name":"\u2728AyakA\u2728","screen_name":"ayaka0515","location":null,"url":null,"description":"\u4e5d\u7523 \u5546\u5b66\u90e8 LoveMM\u2661\u2661","protected":false,"verified":false,"followers_count":716,"friends_count":545,"listed_count":0,"favourites_count":1286,"statuses_count":7161,"created_at":"Sun Jul 22 23:10:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649557555178397699\/mcvuormq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649557555178397699\/mcvuormq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/711418530\/1443777671","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728084458188800,"id_str":"663728084458188800","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLR2UsAAbF8S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLR2UsAAbF8S.jpg","url":"https:\/\/t.co\/GkJZ56ZRRW","display_url":"pic.twitter.com\/GkJZ56ZRRW","expanded_url":"http:\/\/twitter.com\/ayaka0515\/status\/663728093673029632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":756,"resize":"fit"},"large":{"w":750,"h":945,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":428,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728084458188800,"id_str":"663728084458188800","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLR2UsAAbF8S.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLR2UsAAbF8S.jpg","url":"https:\/\/t.co\/GkJZ56ZRRW","display_url":"pic.twitter.com\/GkJZ56ZRRW","expanded_url":"http:\/\/twitter.com\/ayaka0515\/status\/663728093673029632\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":756,"resize":"fit"},"large":{"w":750,"h":945,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":428,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093698383872,"id_str":"663728093698383872","text":"\ud83d\ude44\ud83d\ude44\ud83d\ude44 yup https:\/\/t.co\/bqvpFgg8hj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":49109669,"id_str":"49109669","name":"babygurl \u2764\ufe0f","screen_name":"glogyalbree","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1616,"friends_count":790,"listed_count":16,"favourites_count":1600,"statuses_count":58228,"created_at":"Sat Jun 20 20:25:00 +0000 2009","utc_offset":-18000,"time_zone":"America\/New_York","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620657981\/l09kp51p7zoshyg6tsul.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620657981\/l09kp51p7zoshyg6tsul.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662215451422904320\/Xmx2yU0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662215451422904320\/Xmx2yU0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49109669\/1446755622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728084676276224,"id_str":"663728084676276224","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLSqUcAAg5eH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLSqUcAAg5eH.jpg","url":"https:\/\/t.co\/bqvpFgg8hj","display_url":"pic.twitter.com\/bqvpFgg8hj","expanded_url":"http:\/\/twitter.com\/glogyalbree\/status\/663728093698383872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728084676276224,"id_str":"663728084676276224","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLSqUcAAg5eH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLSqUcAAg5eH.jpg","url":"https:\/\/t.co\/bqvpFgg8hj","display_url":"pic.twitter.com\/bqvpFgg8hj","expanded_url":"http:\/\/twitter.com\/glogyalbree\/status\/663728093698383872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080083666"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093694173184,"id_str":"663728093694173184","text":"1991 upper deck #485 Floyd Dixon FALCONS https:\/\/t.co\/jPnUxc2jPk https:\/\/t.co\/UJu7hQHAMD","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912552700,"id_str":"3912552700","name":"Erwin Hussey","screen_name":"ErwinHussey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":40,"listed_count":16,"favourites_count":0,"statuses_count":11757,"created_at":"Fri Oct 09 21:40:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652600014502535168\/GQI7-GGY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652600014502535168\/GQI7-GGY_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jPnUxc2jPk","expanded_url":"http:\/\/fujairah-travel-guide.info\/fr\/tg\/?query=311482144908","display_url":"fujairah-travel-guide.info\/fr\/tg\/?query=3\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663728093576736769,"id_str":"663728093576736769","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLz0WsAEF_W7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLz0WsAEF_W7.jpg","url":"https:\/\/t.co\/UJu7hQHAMD","display_url":"pic.twitter.com\/UJu7hQHAMD","expanded_url":"http:\/\/twitter.com\/ErwinHussey\/status\/663728093694173184\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":263,"resize":"fit"},"medium":{"w":300,"h":263,"resize":"fit"},"small":{"w":300,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728093576736769,"id_str":"663728093576736769","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLz0WsAEF_W7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLz0WsAEF_W7.jpg","url":"https:\/\/t.co\/UJu7hQHAMD","display_url":"pic.twitter.com\/UJu7hQHAMD","expanded_url":"http:\/\/twitter.com\/ErwinHussey\/status\/663728093694173184\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":263,"resize":"fit"},"medium":{"w":300,"h":263,"resize":"fit"},"small":{"w":300,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083665"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673168897,"id_str":"663728093673168897","text":"\u0417\u0434\u0435\u0441\u044c \u0440\u0435\u0430\u043b\u044c\u043d\u043e \u0437\u0438\u043c\u0430 \u2744\ufe0f\u2744\ufe0f\u2744\ufe0f!\n#\u0443\u0440\u0430\u043b #\u0435\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433 #\u0437\u0438\u043c\u0430 #\u043c\u043e\u0440\u043e\u0437\u0438\u0441\u043e\u043b\u043d\u0446\u0435 #\u043a\u043e\u043c\u0430\u043d\u0434\u0438\u0440\u043e\u0432\u043a\u0430 #\u0432\u044b\u0441\u0442\u0430\u0432\u043a\u0430 #\u043c\u043e\u043d\u0442\u0430\u0436 #\u043b\u044e\u0431\u0438\u043c\u0430\u044f\u0440\u0430\u0431\u043e\u0442\u0430 #\u2026 https:\/\/t.co\/GOGaE7GSBF","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349352848,"id_str":"2349352848","name":"\u041a\u043e\u043b\u044c\u0446\u043e\u0432\u043e \u0415-\u0431\u0443\u0440\u0433","screen_name":"Koltsovo_Ekb","location":"\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433","url":"http:\/\/www.koltsovo.ru","description":"\u0421\u0430\u043c\u044b\u0435 \u0441\u0432\u0435\u0436\u0438\u0435 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 #Instagram \u0438\u0437 \u0430\u044d\u0440\u043e\u043f\u043e\u0440\u0442\u0430 \u041a\u043e\u043b\u044c\u0446\u043e\u0432\u043e (\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433)","protected":false,"verified":false,"followers_count":646,"friends_count":188,"listed_count":56,"favourites_count":0,"statuses_count":63940,"created_at":"Tue Feb 18 01:43:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435591951753027584\/e2-VZjnU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435591951753027584\/e2-VZjnU.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435590891101638656\/KHtWHxHF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435590891101638656\/KHtWHxHF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349352848\/1392688166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0443\u0440\u0430\u043b","indices":[27,32]},{"text":"\u0435\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433","indices":[33,46]},{"text":"\u0437\u0438\u043c\u0430","indices":[47,52]},{"text":"\u043c\u043e\u0440\u043e\u0437\u0438\u0441\u043e\u043b\u043d\u0446\u0435","indices":[53,66]},{"text":"\u043a\u043e\u043c\u0430\u043d\u0434\u0438\u0440\u043e\u0432\u043a\u0430","indices":[67,80]},{"text":"\u0432\u044b\u0441\u0442\u0430\u0432\u043a\u0430","indices":[81,90]},{"text":"\u043c\u043e\u043d\u0442\u0430\u0436","indices":[91,98]},{"text":"\u043b\u044e\u0431\u0438\u043c\u0430\u044f\u0440\u0430\u0431\u043e\u0442\u0430","indices":[99,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728093497057280,"id_str":"663728093497057280","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLzhW4AAWBAp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLzhW4AAWBAp.jpg","url":"https:\/\/t.co\/GOGaE7GSBF","display_url":"pic.twitter.com\/GOGaE7GSBF","expanded_url":"http:\/\/twitter.com\/Koltsovo_Ekb\/status\/663728093673168897\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728093497057280,"id_str":"663728093497057280","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLzhW4AAWBAp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLzhW4AAWBAp.jpg","url":"https:\/\/t.co\/GOGaE7GSBF","display_url":"pic.twitter.com\/GOGaE7GSBF","expanded_url":"http:\/\/twitter.com\/Koltsovo_Ekb\/status\/663728093673168897\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093681606656,"id_str":"663728093681606656","text":"Lakers hint they misjudged Porzingis as #DAngeloRussell struggles https:\/\/t.co\/TPBzstX6JY https:\/\/t.co\/k1Y5qZURuL","source":"\u003ca href=\"http:\/\/melvinmitzel87.tumblr.com\" rel=\"nofollow\"\u003eMelvinMitzel871687\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287563195,"id_str":"3287563195","name":"Melvin Mitzel","screen_name":"MelvinMitzel87","location":null,"url":null,"description":"Speaker \u272a Instructional Coach \u272a Madridista \u272a Typical alcohol fanatic","protected":false,"verified":false,"followers_count":312,"friends_count":1192,"listed_count":76,"favourites_count":231,"statuses_count":3621,"created_at":"Wed Jul 22 12:20:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623830124610228224\/9yZk2qgz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623830124610228224\/9yZk2qgz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DAngeloRussell","indices":[40,55]}],"urls":[{"url":"https:\/\/t.co\/TPBzstX6JY","expanded_url":"http:\/\/toptidings.net\/lakers-hint-they-misjudged-porzingis-as-dangelo-russell-struggles\/?utm_source=7505","display_url":"toptidings.net\/lakers-hint-th\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[],"media":[{"id":663728093346013184,"id_str":"663728093346013184","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLy9WIAA4hef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLy9WIAA4hef.jpg","url":"https:\/\/t.co\/k1Y5qZURuL","display_url":"pic.twitter.com\/k1Y5qZURuL","expanded_url":"http:\/\/twitter.com\/MelvinMitzel87\/status\/663728093681606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728093346013184,"id_str":"663728093346013184","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLy9WIAA4hef.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLy9WIAA4hef.jpg","url":"https:\/\/t.co\/k1Y5qZURuL","display_url":"pic.twitter.com\/k1Y5qZURuL","expanded_url":"http:\/\/twitter.com\/MelvinMitzel87\/status\/663728093681606656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080083662"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093673164801,"id_str":"663728093673164801","text":"@TC_Mogadishu https:\/\/t.co\/zMaAwBEpNz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1688234448,"in_reply_to_user_id_str":"1688234448","in_reply_to_screen_name":"TC_Mogadishu","user":{"id":3420756592,"id_str":"3420756592","name":"TurkSoma Cultural S.","screen_name":"turksoma","location":"Turkey & Somalia","url":"https:\/\/www.facebook.com\/TurkSoma","description":"Founded by Turkish-Somali intellectuals in pursuit of strengthening cultural relations.","protected":false,"verified":false,"followers_count":104,"friends_count":515,"listed_count":0,"favourites_count":10,"statuses_count":23,"created_at":"Thu Aug 13 18:59:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631911382032773121\/EQIucLpr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631911382032773121\/EQIucLpr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420756592\/1439497948","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TC_Mogadishu","name":"Turkey in Somalia","id":1688234448,"id_str":"1688234448","indices":[0,13]}],"symbols":[],"media":[{"id":663727116660404224,"id_str":"663727116660404224","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIS8hWcAA5u76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIS8hWcAA5u76.jpg","url":"https:\/\/t.co\/zMaAwBEpNz","display_url":"pic.twitter.com\/zMaAwBEpNz","expanded_url":"http:\/\/twitter.com\/turksoma\/status\/663728093673164801\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727116660404224,"id_str":"663727116660404224","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIS8hWcAA5u76.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIS8hWcAA5u76.jpg","url":"https:\/\/t.co\/zMaAwBEpNz","display_url":"pic.twitter.com\/zMaAwBEpNz","expanded_url":"http:\/\/twitter.com\/turksoma\/status\/663728093673164801\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663727119390785537,"id_str":"663727119390785537","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYITGsUwAE_VBX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYITGsUwAE_VBX.jpg","url":"https:\/\/t.co\/zMaAwBEpNz","display_url":"pic.twitter.com\/zMaAwBEpNz","expanded_url":"http:\/\/twitter.com\/turksoma\/status\/663728093673164801\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727287049678848,"id_str":"663727287049678848","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIc3RUcAAti-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIc3RUcAAti-Z.jpg","url":"https:\/\/t.co\/zMaAwBEpNz","display_url":"pic.twitter.com\/zMaAwBEpNz","expanded_url":"http:\/\/twitter.com\/turksoma\/status\/663728093673164801\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727156837670912,"id_str":"663727156837670912","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIVSMW4AAdBYd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIVSMW4AAdBYd.jpg","url":"https:\/\/t.co\/zMaAwBEpNz","display_url":"pic.twitter.com\/zMaAwBEpNz","expanded_url":"http:\/\/twitter.com\/turksoma\/status\/663728093673164801\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080083660"} +{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728093694025729,"id_str":"663728093694025729","text":"\u7537\u6027\u7248\u3068\u805e\u3044\u3066\n\u30a4\u30b9\u30ab\u30f3\u30c0\u30eb\u5927\u597d\u304d\u3067\u3059\n#\u7537\u6027\u30ad\u30e3\u30e9\u7248fate\u30ef\u30f3\u30c9\u30ed https:\/\/t.co\/cyauAhnS5T","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277315598,"id_str":"3277315598","name":"\u3088\u3057\u308a\u3093","screen_name":"Yoshirin_rin_","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=5793250","description":"\u30a4\u30e9\u30b9\u30c8\u306e\u7df4\u7fd2\u3082\u59cb\u3081\u307e\u3057\u305f\u3002\nFate\/GrandOrder\u3001\u8266\u3053\u308c\u3084\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":23,"friends_count":53,"listed_count":0,"favourites_count":12,"statuses_count":77,"created_at":"Sun Jul 12 09:12:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663001348594536449\/GkdCS3aj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663001348594536449\/GkdCS3aj_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7537\u6027\u30ad\u30e3\u30e9\u7248fate\u30ef\u30f3\u30c9\u30ed","indices":[20,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728091651420161,"id_str":"663728091651420161","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLspUsAExmtr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLspUsAExmtr.jpg","url":"https:\/\/t.co\/cyauAhnS5T","display_url":"pic.twitter.com\/cyauAhnS5T","expanded_url":"http:\/\/twitter.com\/Yoshirin_rin_\/status\/663728093694025729\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728091651420161,"id_str":"663728091651420161","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLspUsAExmtr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLspUsAExmtr.jpg","url":"https:\/\/t.co\/cyauAhnS5T","display_url":"pic.twitter.com\/cyauAhnS5T","expanded_url":"http:\/\/twitter.com\/Yoshirin_rin_\/status\/663728093694025729\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080083665"} +{"delete":{"status":{"id":660056659994083328,"id_str":"660056659994083328","user_id":3383374694,"user_id_str":"3383374694"},"timestamp_ms":"1447080084323"}} +{"delete":{"status":{"id":660059898017808384,"id_str":"660059898017808384","user_id":3038140153,"user_id_str":"3038140153"},"timestamp_ms":"1447080084391"}} +{"delete":{"status":{"id":660083268683890688,"id_str":"660083268683890688","user_id":3049712616,"user_id_str":"3049712616"},"timestamp_ms":"1447080084583"}} +{"delete":{"status":{"id":660080156493529088,"id_str":"660080156493529088","user_id":2330299760,"user_id_str":"2330299760"},"timestamp_ms":"1447080084551"}} +{"delete":{"status":{"id":663717641475911680,"id_str":"663717641475911680","user_id":1001754932,"user_id_str":"1001754932"},"timestamp_ms":"1447080084588"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863344129,"id_str":"663728097863344129","text":"RT @SonTattoos: Tatuaje \u270c https:\/\/t.co\/DQ0rVgyANj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1254238729,"id_str":"1254238729","name":"Lucia.garcia5","screen_name":"LuluGs01","location":"Marbella","url":null,"description":"SofiaCuevas\/ ask.fm:lucia.garcia5 \/instagram:lucia.garcia5","protected":false,"verified":false,"followers_count":166,"friends_count":137,"listed_count":0,"favourites_count":764,"statuses_count":746,"created_at":"Sat Mar 09 12:15:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163207242\/eClM_9e8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163207242\/eClM_9e8.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607636529511604224\/RBwx0gjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607636529511604224\/RBwx0gjZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1254238729\/1446581292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:22 +0000 2015","id":663721799289450496,"id_str":"663721799289450496","text":"Tatuaje \u270c https:\/\/t.co\/DQ0rVgyANj","source":"\u003ca href=\"http:\/\/www.google.es\" rel=\"nofollow\"\u003ePATRlCl0\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1337359117,"id_str":"1337359117","name":"Tatuajes...","screen_name":"SonTattoos","location":"En la fina capa llamada piel.","url":null,"description":"Mi cuerpo es mi diario y mis tatuajes son mi historia. \u00bfTienes un tattoo y quieres que lo veamos? S\u00f3lo tienes que hacer una foto y mencionarnos.","protected":false,"verified":false,"followers_count":650435,"friends_count":0,"listed_count":616,"favourites_count":3,"statuses_count":148,"created_at":"Mon Apr 08 18:52:34 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015796295\/ddb3993dd369b4d7d520aa2f19f2b24e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015796295\/ddb3993dd369b4d7d520aa2f19f2b24e.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000087752995\/b671da26eb3af2349833fe839ea6085f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000087752995\/b671da26eb3af2349833fe839ea6085f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1337359117\/1372962119","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":71,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721799180357632,"id_str":"663721799180357632","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","url":"https:\/\/t.co\/DQ0rVgyANj","display_url":"pic.twitter.com\/DQ0rVgyANj","expanded_url":"http:\/\/twitter.com\/SonTattoos\/status\/663721799289450496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721799180357632,"id_str":"663721799180357632","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","url":"https:\/\/t.co\/DQ0rVgyANj","display_url":"pic.twitter.com\/DQ0rVgyANj","expanded_url":"http:\/\/twitter.com\/SonTattoos\/status\/663721799289450496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SonTattoos","name":"Tatuajes...","id":1337359117,"id_str":"1337359117","indices":[3,14]}],"symbols":[],"media":[{"id":663721799180357632,"id_str":"663721799180357632","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","url":"https:\/\/t.co\/DQ0rVgyANj","display_url":"pic.twitter.com\/DQ0rVgyANj","expanded_url":"http:\/\/twitter.com\/SonTattoos\/status\/663721799289450496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663721799289450496,"source_status_id_str":"663721799289450496","source_user_id":1337359117,"source_user_id_str":"1337359117"}]},"extended_entities":{"media":[{"id":663721799180357632,"id_str":"663721799180357632","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDdbXUEAAis7q.jpg","url":"https:\/\/t.co\/DQ0rVgyANj","display_url":"pic.twitter.com\/DQ0rVgyANj","expanded_url":"http:\/\/twitter.com\/SonTattoos\/status\/663721799289450496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663721799289450496,"source_status_id_str":"663721799289450496","source_user_id":1337359117,"source_user_id_str":"1337359117"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097892671490,"id_str":"663728097892671490","text":"RT @SLIMPHATTY: If it will make you happy don't give up on it.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":602360874,"id_str":"602360874","name":"Mr\u017e V\u012f\u00f1n\u00ff \u00d1\u2764\u2660\ufe0f","screen_name":"Vinny_K69","location":"With my Baby \u2764\ufe0f","url":null,"description":"\u2665\ufe0fAvinash.N\u2665\ufe0f~1.26.15~\u2665\ufe0f She's mine peeps- Avi aka her hubbzy \u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":1360,"friends_count":220,"listed_count":4,"favourites_count":21363,"statuses_count":3462,"created_at":"Thu Jun 07 23:09:40 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661332295148830724\/6lquk9ys_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661332295148830724\/6lquk9ys_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/602360874\/1446403527","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:45 +0000 2015","id":663727932276350976,"id_str":"663727932276350976","text":"If it will make you happy don't give up on it.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154982943,"id_str":"154982943","name":"SLIM PHATTY","screen_name":"SLIMPHATTY","location":"WORLDWIDE","url":"http:\/\/WWW.SLIMPHATTY.COM","description":"My AMAZON EBOOKS-http:\/\/author.to\/SLIMPHATTY SUBSCRIBE TO MY YOUTUBE http:\/\/youtube.com\/slimphattygirl My tweets are ORIGINAL (my quotes are copyrighted)","protected":false,"verified":false,"followers_count":456459,"friends_count":252981,"listed_count":823,"favourites_count":952,"statuses_count":46050,"created_at":"Sat Jun 12 19:44:15 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000143011277\/20igUR6w.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000143011277\/20igUR6w.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576888822916648960\/3YGZXgz8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576888822916648960\/3YGZXgz8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154982943\/1389140650","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SLIMPHATTY","name":"SLIM PHATTY","id":154982943,"id_str":"154982943","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084666"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863278592,"id_str":"663728097863278592","text":"@sportrecife sai do ch\u00e3o sai do ch\u00e3o \u00e9 o bonde do le\u00e3o.... (8)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724760791171072,"in_reply_to_status_id_str":"663724760791171072","in_reply_to_user_id":106420963,"in_reply_to_user_id_str":"106420963","in_reply_to_screen_name":"sportrecife","user":{"id":318609023,"id_str":"318609023","name":"marvin martins","screen_name":"marvin_gtgpjt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":29,"friends_count":139,"listed_count":0,"favourites_count":2086,"statuses_count":627,"created_at":"Thu Jun 16 19:16:05 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592372544482713600\/QgThPLPP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592372544482713600\/QgThPLPP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318609023\/1446663324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sportrecife","name":"Sport Club do Recife","id":106420963,"id_str":"106420963","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080084659"} +{"delete":{"status":{"id":660122586081202176,"id_str":"660122586081202176","user_id":2523703609,"user_id_str":"2523703609"},"timestamp_ms":"1447080084689"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863327748,"id_str":"663728097863327748","text":"RT @HergunYeniBilg: Yasak a\u015fk\u0131n meyvesi Zeb\u015fek https:\/\/t.co\/MaOggUclmg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":247919936,"id_str":"247919936","name":"Ferhat Burak Uslu","screen_name":"KasparsNirvana","location":"\u0130STANBUL","url":null,"description":null,"protected":false,"verified":false,"followers_count":220,"friends_count":149,"listed_count":0,"favourites_count":211,"statuses_count":2241,"created_at":"Sat Feb 05 21:23:06 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/736576664\/51c17f7f544bbb96982bb3273b1d4d86.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/736576664\/51c17f7f544bbb96982bb3273b1d4d86.png","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000694924824\/6c80ccd2e141f9b9da572a981b9ad2a5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000694924824\/6c80ccd2e141f9b9da572a981b9ad2a5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247919936\/1355372395","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:00:14 +0000 2015","id":663476144583262209,"id_str":"663476144583262209","text":"Yasak a\u015fk\u0131n meyvesi Zeb\u015fek https:\/\/t.co\/MaOggUclmg","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":477676504,"id_str":"477676504","name":"Her g\u00fcn 1Yeni Bilgi ","screen_name":"HergunYeniBilg","location":"LINE hesab\u0131","url":"http:\/\/line.me\/R\/oaMessage\/@hergun1yenibilgi\/","description":"Yasal Uyar\u0131 Ba\u011f\u0131ml\u0131l\u0131k Yap\u0131yoruz \u2709 \u0130LETISIM: hergunbilgi@hotmail.com https:\/\/instagram.com\/hergun1yenibilgi\/","protected":false,"verified":false,"followers_count":1442815,"friends_count":33729,"listed_count":803,"favourites_count":0,"statuses_count":31321,"created_at":"Sun Jan 29 12:57:11 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"708FEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"BD1E4B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1832222949\/sdf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1832222949\/sdf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/477676504\/1401484702","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":360,"favorite_count":1186,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663450623988338688,"id_str":"663450623988338688","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","url":"https:\/\/t.co\/MaOggUclmg","display_url":"pic.twitter.com\/MaOggUclmg","expanded_url":"http:\/\/twitter.com\/HergunYeniBilg\/status\/663476144583262209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663450623988338688,"id_str":"663450623988338688","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","url":"https:\/\/t.co\/MaOggUclmg","display_url":"pic.twitter.com\/MaOggUclmg","expanded_url":"http:\/\/twitter.com\/HergunYeniBilg\/status\/663476144583262209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HergunYeniBilg","name":"Her g\u00fcn 1Yeni Bilgi ","id":477676504,"id_str":"477676504","indices":[3,18]}],"symbols":[],"media":[{"id":663450623988338688,"id_str":"663450623988338688","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","url":"https:\/\/t.co\/MaOggUclmg","display_url":"pic.twitter.com\/MaOggUclmg","expanded_url":"http:\/\/twitter.com\/HergunYeniBilg\/status\/663476144583262209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}},"source_status_id":663476144583262209,"source_status_id_str":"663476144583262209","source_user_id":477676504,"source_user_id_str":"477676504"}]},"extended_entities":{"media":[{"id":663450623988338688,"id_str":"663450623988338688","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUM09DWEAAGejg.jpg","url":"https:\/\/t.co\/MaOggUclmg","display_url":"pic.twitter.com\/MaOggUclmg","expanded_url":"http:\/\/twitter.com\/HergunYeniBilg\/status\/663476144583262209\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}},"source_status_id":663476144583262209,"source_status_id_str":"663476144583262209","source_user_id":477676504,"source_user_id_str":"477676504"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863344130,"id_str":"663728097863344130","text":"@JulienLombardi Thanks, Julien! I haven't had the pleasure of meeting him but I have seen him live over 20 times. Big fan.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663589261069967360,"in_reply_to_status_id_str":"663589261069967360","in_reply_to_user_id":1598144090,"in_reply_to_user_id_str":"1598144090","in_reply_to_screen_name":"JulienLombardi","user":{"id":16169289,"id_str":"16169289","name":"scottkrokoff","screen_name":"scottkrokoff","location":"Borough of Queens, NY","url":"http:\/\/scottkrokoff.com","description":"Confessional & compelling Americana. R&D Vol 2 now available on iTunes, Amazon & Spotify! Beatles\/Bruce\/HP\/Trek\/LOTR. http:\/\/youtube.com\/skrokoff","protected":false,"verified":false,"followers_count":21035,"friends_count":20745,"listed_count":102,"favourites_count":1462,"statuses_count":5465,"created_at":"Sun Sep 07 14:02:49 +0000 2008","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/729174741\/b73851c7c768bc32e50ea3f9e4c9744d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/729174741\/b73851c7c768bc32e50ea3f9e4c9744d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467460167626661888\/IJTUdfaI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467460167626661888\/IJTUdfaI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16169289\/1354729276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JulienLombardi","name":"Julien Lombardi","id":1598144090,"id_str":"1598144090","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097858969601,"id_str":"663728097858969601","text":"\u3075\u3068\u898b\u305f\u3089\u30d5\u30ec\u306b\u30e9\u30aa\u30a6\u304c\u3044\u3063\u3071\u3044\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3226294351,"id_str":"3226294351","name":"\u3057\u3087\u30fc\u2122","screen_name":"Xsura1022x","location":null,"url":null,"description":"\u3071\u305a\u3069\u3089:\u30e9\u30f3\u30af600\u2191\uff0fID:247583525\uff0f\u3071\u305a\u3069\u3089\u597d\u304d\u306a\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u301c(\uff89\u2267\u06a1\u2266) \u30a2\u30cb\u30e1\u3082\u597d\u304d\u3060\u3088\u301c","protected":false,"verified":false,"followers_count":57,"friends_count":68,"listed_count":1,"favourites_count":156,"statuses_count":504,"created_at":"Mon May 25 14:47:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652134050153394176\/xUlyQtO-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652134050153394176\/xUlyQtO-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3226294351\/1446040858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084658"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863319553,"id_str":"663728097863319553","text":"@mundoAnimalia Que tal? puedes echarle un vistado un nuevo video: Tiene fobia a los gatos y le encierran con varios https:\/\/t.co\/I22ALhZDsD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":73326641,"in_reply_to_user_id_str":"73326641","in_reply_to_screen_name":"mundoAnimalia","user":{"id":2669507143,"id_str":"2669507143","name":"Isabel Fern\u00e1ndez","screen_name":"LaTecnoRubia","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":625,"friends_count":1652,"listed_count":4,"favourites_count":0,"statuses_count":15814,"created_at":"Tue Jul 22 13:52:34 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/494528365630484480\/cwWlNNR5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/494528365630484480\/cwWlNNR5_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/I22ALhZDsD","expanded_url":"http:\/\/bit.ly\/1Q1FJFZ","display_url":"bit.ly\/1Q1FJFZ","indices":[116,139]}],"user_mentions":[{"screen_name":"mundoAnimalia","name":"mundoAnimalia.com","id":73326641,"id_str":"73326641","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097867468800,"id_str":"663728097867468800","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/5sbYpb8YlF","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3964358485,"id_str":"3964358485","name":"FROGGY","screen_name":"froggy826","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":17,"listed_count":3,"favourites_count":6,"statuses_count":34436,"created_at":"Wed Oct 21 02:14:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656654926467063808\/-5kK-mVJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656654926467063808\/-5kK-mVJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727640491225088,"quoted_status_id_str":"663727640491225088","quoted_status":{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640491225088,"id_str":"663727640491225088","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/2oJ8ooMaDn","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727317966036992,"quoted_status_id_str":"663727317966036992","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/2oJ8ooMaDn","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727317966036992","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/5sbYpb8YlF","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727640491225088","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084660"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888305153,"id_str":"663728097888305153","text":"\u30d4\u30f3\u30af\u3060\u3063\u305f\u308a\u7dd1\u3060\u3063\u305f\u308a","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3885533412,"id_str":"3885533412","name":"\u30c0\u30c1\u679d","screen_name":"dachie1141","location":"\u203b\u30c0\u30c1\u3092\u4e0e\u3048\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002\u8fd1\u96a3\u304b\u3089\u9a12\u97f3\u306e\u82e6\u60c5\u304c\u51fa\u3066\u3044\u307e\u3059\u3002","url":"http:\/\/doublecheeseburger.love","description":"\u3060\u3063\u3076\u3063\u308b\u30fcL( \uff3e\u03c9\uff3e )\u2518 \u3061\u30fc\u305a\u3070\u30fc\u304c\u30fc\u2514( \uff3e\u03c9\uff3e )\u300d","protected":false,"verified":false,"followers_count":19,"friends_count":20,"listed_count":0,"favourites_count":679,"statuses_count":1758,"created_at":"Tue Oct 13 23:27:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654419382760706048\/VUVohvPR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654419382760706048\/VUVohvPR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3885533412\/1444860763","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084665"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097892569088,"id_str":"663728097892569088","text":"RT @AdamWilkerson7: Best Diet- Health and Diet Tips The Benefits of https:\/\/t.co\/nDcw5Cu5r1","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003ervvt2\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3265813153,"id_str":"3265813153","name":"Perry Shawn","screen_name":"PerryShawn1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":173,"friends_count":1591,"listed_count":1,"favourites_count":0,"statuses_count":2477,"created_at":"Thu Jul 02 05:57:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617780209584975872\/s5Dvl1hu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617780209584975872\/s5Dvl1hu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728033266692096,"id_str":"663728033266692096","text":"Best Diet- Health and Diet Tips The Benefits of https:\/\/t.co\/nDcw5Cu5r1","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003ervvt1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3260761358,"id_str":"3260761358","name":"Adam Wilkerson","screen_name":"AdamWilkerson7","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":283,"friends_count":1555,"listed_count":0,"favourites_count":0,"statuses_count":1892,"created_at":"Tue Jun 30 05:05:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615954491783778304\/mWnCeXgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615954491783778304\/mWnCeXgp_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nDcw5Cu5r1","expanded_url":"http:\/\/bit.ly\/1QdQZPz","display_url":"bit.ly\/1QdQZPz","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nDcw5Cu5r1","expanded_url":"http:\/\/bit.ly\/1QdQZPz","display_url":"bit.ly\/1QdQZPz","indices":[68,91]}],"user_mentions":[{"screen_name":"AdamWilkerson7","name":"Adam Wilkerson","id":3260761358,"id_str":"3260761358","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084666"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888481280,"id_str":"663728097888481280","text":"RT @D1Tweeter: \"Aw man, look at thith. They put way too many thwinkles. http:\/\/t.co\/cvkWoet5aO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2830623808,"id_str":"2830623808","name":"Abbyyy\u2122","screen_name":"deh_islandlife","location":"On a random island","url":null,"description":"Sun, sand and good vibes \u2600\ufe0f","protected":false,"verified":false,"followers_count":115,"friends_count":344,"listed_count":5,"favourites_count":422,"statuses_count":748,"created_at":"Tue Oct 14 22:30:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654656459850977280\/0q2Mm3Xx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654656459850977280\/0q2Mm3Xx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2830623808\/1426096820","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 18 20:53:01 +0000 2015","id":644977449982410752,"id_str":"644977449982410752","text":"\"Aw man, look at thith. They put way too many thwinkles. http:\/\/t.co\/cvkWoet5aO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564254844,"id_str":"564254844","name":"Jake","screen_name":"D1Tweeter","location":"Boston, MA","url":null,"description":"Link me the tweet where I asked. Peep @D1Gems to see GOAT tweets. Annoy me for a block.","protected":false,"verified":false,"followers_count":22874,"friends_count":6752,"listed_count":40,"favourites_count":97216,"statuses_count":53352,"created_at":"Fri Apr 27 00:54:10 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657233292710776832\/fIqfpktU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657233292710776832\/fIqfpktU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564254844\/1447067529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15214,"favorite_count":13482,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":644977446824071168,"id_str":"644977446824071168","indices":[57,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","url":"http:\/\/t.co\/cvkWoet5aO","display_url":"pic.twitter.com\/cvkWoet5aO","expanded_url":"http:\/\/twitter.com\/D1Tweeter\/status\/644977449982410752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":644977446824071168,"id_str":"644977446824071168","indices":[57,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","url":"http:\/\/t.co\/cvkWoet5aO","display_url":"pic.twitter.com\/cvkWoet5aO","expanded_url":"http:\/\/twitter.com\/D1Tweeter\/status\/644977449982410752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"D1Tweeter","name":"Jake","id":564254844,"id_str":"564254844","indices":[3,13]}],"symbols":[],"media":[{"id":644977446824071168,"id_str":"644977446824071168","indices":[72,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","url":"http:\/\/t.co\/cvkWoet5aO","display_url":"pic.twitter.com\/cvkWoet5aO","expanded_url":"http:\/\/twitter.com\/D1Tweeter\/status\/644977449982410752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}},"source_status_id":644977449982410752,"source_status_id_str":"644977449982410752","source_user_id":564254844,"source_user_id_str":"564254844"}]},"extended_entities":{"media":[{"id":644977446824071168,"id_str":"644977446824071168","indices":[72,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPNrkhYWUAAtcaa.jpg","url":"http:\/\/t.co\/cvkWoet5aO","display_url":"pic.twitter.com\/cvkWoet5aO","expanded_url":"http:\/\/twitter.com\/D1Tweeter\/status\/644977449982410752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}},"source_status_id":644977449982410752,"source_status_id_str":"644977449982410752","source_user_id":564254844,"source_user_id_str":"564254844"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084665"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097879916544,"id_str":"663728097879916544","text":"RT @nanzzang01: \ub9c8\ub9c8 \uc774\uc81c \uc774\ub534\uac83\uae4c\uc9c0 \ub4e4\uc5b4\uac00\ub294\uac70\ub2c8? \uc7a5\ub09c\ud6c4\u3154? \ubb50 \ud2e7\ud130\uae4c\uc9c0 \uc0ac\uc6a9\ud574\uc11c #EXO \uc0c1 \uc918\uc57c\ud55c\ub2e4\uba74 \ub2f9\uc5f0\ud788 \ud574\uc57c\ud558\uc9c0 \uadfc\ub370 \uc528\ube60 \uc9c4\uc9dc #CALLMEBABY \ub9c8\ub9c8 \ud22c\ud45c \uc870\uc791 \uc880 \uc791\uc791\ud574\ub77c #2015MAMA \uc5d0\uc11c \uc5d1\uc18c \uc0c1 \uc548\uc8fc\uba74 \u3142\u3137\u3142\u3137\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2895659868,"id_str":"2895659868","name":"kaika","screen_name":"hikaikai88","location":null,"url":null,"description":"\u6211\u7231\u4f60 | bambi voice\u2728 primarily haikyuu but other stuff as well","protected":false,"verified":false,"followers_count":30,"friends_count":76,"listed_count":0,"favourites_count":37,"statuses_count":132,"created_at":"Mon Nov 10 14:13:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726286720753664\/bS3rzxpa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726286720753664\/bS3rzxpa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2895659868\/1415628869","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:59 +0000 2015","id":663727991134945280,"id_str":"663727991134945280","text":"\ub9c8\ub9c8 \uc774\uc81c \uc774\ub534\uac83\uae4c\uc9c0 \ub4e4\uc5b4\uac00\ub294\uac70\ub2c8? \uc7a5\ub09c\ud6c4\u3154? \ubb50 \ud2e7\ud130\uae4c\uc9c0 \uc0ac\uc6a9\ud574\uc11c #EXO \uc0c1 \uc918\uc57c\ud55c\ub2e4\uba74 \ub2f9\uc5f0\ud788 \ud574\uc57c\ud558\uc9c0 \uadfc\ub370 \uc528\ube60 \uc9c4\uc9dc #CALLMEBABY \ub9c8\ub9c8 \ud22c\ud45c \uc870\uc791 \uc880 \uc791\uc791\ud574\ub77c #2015MAMA \uc5d0\uc11c \uc5d1\uc18c \uc0c1 \uc548\uc8fc\uba74 \u3142\u3137\u3142\u3137 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1107803005,"id_str":"1107803005","name":"\ub3c4\ucfc4\ub3d4 \ubcf4\ub0b4\uc8fc\uc138\uc694 \uaffd_\u3147\u3145\u3160","screen_name":"nanzzang01","location":null,"url":null,"description":"\uc5b4\uc81c\ub3c4 \uae40\ubbfc\uc11d \uc624\ub298\ub3c4 \uae40\ubbfc\uc11d \ub0b4\uc77c\ub3c4 \uae40\ubbfc\uc11d \ub9e4\uc77c\uc774 \uae40\ubbfc\uc11d\/exo \ub355!\ud6c4!!! (\ub355\ub0b4\ub97c \ub9d8\uaecf \ud48d\uae34\ub2e4)\/\uc54c\u3139\ud2f0 \ubd07\uc778\uc904 \u3147\u3145\u3147\/\uc695\ud2b8 \uca56\/\uc7749\uc870\nxiu_exom90 \uc778\ud615 \ub355\uc9c8\uc6a9 \uc778\uc2a4\ud0c0 8\u31458~~\u2661","protected":false,"verified":false,"followers_count":61,"friends_count":542,"listed_count":1,"favourites_count":114,"statuses_count":10457,"created_at":"Mon Jan 21 01:55:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"D9D9D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"D9D9D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662619876037517312\/lVJ4WFVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662619876037517312\/lVJ4WFVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1107803005\/1446388183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[38,42]},{"text":"CALLMEBABY","indices":[69,80]},{"text":"2015MAMA","indices":[97,106]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[124,133]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[54,58]},{"text":"CALLMEBABY","indices":[85,96]},{"text":"2015MAMA","indices":[113,122]}],"urls":[],"user_mentions":[{"screen_name":"nanzzang01","name":"\ub3c4\ucfc4\ub3d4 \ubcf4\ub0b4\uc8fc\uc138\uc694 \uaffd_\u3147\u3145\u3160","id":1107803005,"id_str":"1107803005","indices":[3,14]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080084663"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097875771392,"id_str":"663728097875771392","text":"RT @harjinderbhangu: #DiwaliDhamakaWithPRDP ...SPEED UP GUYS ONLY 3 DAYS PLZ . HUM LOGO NE EK BHI TREND TOP PE NAHI PRDP KA .BB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3188008860,"id_str":"3188008860","name":"barca_my\/heart","screen_name":"Mad_zeeshan","location":null,"url":null,"description":"I am big fan of Salman ,barca, neymar messi, sachin and K.B. Some time i pretend to be normal but its get boring so i go back to being me...............","protected":false,"verified":false,"followers_count":62,"friends_count":99,"listed_count":2,"favourites_count":296,"statuses_count":4860,"created_at":"Thu May 07 19:48:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663049043891777536\/ENFzA_6Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663049043891777536\/ENFzA_6Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3188008860\/1438880060","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727826030432260,"id_str":"663727826030432260","text":"#DiwaliDhamakaWithPRDP ...SPEED UP GUYS ONLY 3 DAYS PLZ . HUM LOGO NE EK BHI TREND TOP PE NAHI PRDP KA .BB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188800491,"id_str":"188800491","name":"Salman fan","screen_name":"harjinderbhangu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":135,"listed_count":0,"favourites_count":1083,"statuses_count":17094,"created_at":"Thu Sep 09 16:34:33 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636175121024163840\/N-x7gRu9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636175121024163840\/N-x7gRu9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[0,22]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DiwaliDhamakaWithPRDP","indices":[21,43]}],"urls":[],"user_mentions":[{"screen_name":"harjinderbhangu","name":"Salman fan","id":188800491,"id_str":"188800491","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084662"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097871552512,"id_str":"663728097871552512","text":"RT @SexJokes_: \u0906\u091c \u0930\u093e\u0924 \u0915\u093e \u0938\u0941\u0935\u093f\u091a\u093e\u0930 .\ud83c\udffc\n\n\"\u0915\u0902\u0921\u094b\u092e \u0915\u0940 \u090f\u0915\u094d\u0938\u092a\u093e\u092f\u0930\u0940 \u0921\u0947\u091f \u0939\u0940 \u0915\u093f\u0938\u0940 \u0915\u0947 \u0932\u093f\u090f \u092e\u0948\u0928\u094d\u092f\u0941\u092b\u0948\u0915\u094d\u091a\u0930\u093f\u0902\u0917 \u0921\u0947\u091f \u0939\u094b \u0938\u0915\u0924\u0940 \u0939\u0948 \"....\nThat's all...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413652743,"id_str":"413652743","name":"alKOHLIc","screen_name":"SaranshShekhar","location":"Bengaluru, Karnataka","url":"http:\/\/www.facebook.com\/saransh.shekhar","description":"great fan of attitude king SAURAV GANGULY & VIRAT KOHLI","protected":false,"verified":false,"followers_count":164,"friends_count":86,"listed_count":2,"favourites_count":18,"statuses_count":8685,"created_at":"Wed Nov 16 03:35:25 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659019415736856576\/_09fn7Zg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659019415736856576\/_09fn7Zg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413652743\/1438262596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 07:44:55 +0000 2015","id":661811344371351552,"id_str":"661811344371351552","text":"\u0906\u091c \u0930\u093e\u0924 \u0915\u093e \u0938\u0941\u0935\u093f\u091a\u093e\u0930 .\ud83c\udffc\n\n\"\u0915\u0902\u0921\u094b\u092e \u0915\u0940 \u090f\u0915\u094d\u0938\u092a\u093e\u092f\u0930\u0940 \u0921\u0947\u091f \u0939\u0940 \u0915\u093f\u0938\u0940 \u0915\u0947 \u0932\u093f\u090f \u092e\u0948\u0928\u094d\u092f\u0941\u092b\u0948\u0915\u094d\u091a\u0930\u093f\u0902\u0917 \u0921\u0947\u091f \u0939\u094b \u0938\u0915\u0924\u0940 \u0939\u0948 \"....\nThat's all...","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":513280742,"id_str":"513280742","name":"Sex Adult Jokes","screen_name":"SexJokes_","location":null,"url":"https:\/\/www.facebook.com\/18jokess","description":"follow me for all funny adult jokes, Sexjokes, 18+ jokes, hindi jokes.#CleavageOfTheDay #CleavageOfTheWeek #Boobs #FollowBackTeam","protected":false,"verified":false,"followers_count":40803,"friends_count":8328,"listed_count":148,"favourites_count":7,"statuses_count":9870,"created_at":"Sat Mar 03 15:24:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2179318243\/images_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2179318243\/images_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SexJokes_","name":"Sex Adult Jokes","id":513280742,"id_str":"513280742","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080084661"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863139329,"id_str":"663728097863139329","text":"\u30ef\u30f3\u30fb\u30c0\u30a4\u30ec\u30af\u30b7\u30e7\u30f3\u306b\u7d9a\u304f\uff01 \u5143\u6c17\u3092\u3082\u3089\u3048\u308b\u30db\u30c3\u30c8\u306a\u30dc\u30fc\u30a4\u30ba\u30d0\u30f3\u30c9 https:\/\/t.co\/SmOmO99qsO","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3999256524,"id_str":"3999256524","name":"\u3082\u3082\u30af\u30ed\u5927\u597d\u304d","screen_name":"h0138momo","location":null,"url":null,"description":"\u6700\u8fd1\u30d5\u30a1\u30f3\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u30c4\u30a4\u30c3\u30bf\u30fc\u3092\u901a\u3058\u3066\u3044\u308d\u3044\u308d\u6559\u3048\u3066\u307b\u3057\u3044\u306a\uff01","protected":false,"verified":false,"followers_count":130,"friends_count":179,"listed_count":0,"favourites_count":0,"statuses_count":876,"created_at":"Sat Oct 24 06:14:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660284589106049024\/aeH1bp63_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660284589106049024\/aeH1bp63_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3999256524\/1446356521","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SmOmO99qsO","expanded_url":"http:\/\/musiclife1972.seesaa.net\/","display_url":"musiclife1972.seesaa.net","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097871732736,"id_str":"663728097871732736","text":"RT @_WhoisLuckyy: @Phonzo_5 \ud83d\ude02 https:\/\/t.co\/FOENpE8zjK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144977956,"id_str":"144977956","name":"Dave","screen_name":"GetEm_Dave","location":"919 -- 336","url":"http:\/\/instagram.com\/getem_dave","description":"Not the average negro #COLDSTEEL #NCAT #Lakergang #RavensNation\r\nNever waste your existence, stay motivated Est. in '93","protected":false,"verified":false,"followers_count":960,"friends_count":822,"listed_count":7,"favourites_count":27,"statuses_count":44745,"created_at":"Mon May 17 20:33:43 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000005","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000017388855\/33b60a053586a998f8f793f73b30d994.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000017388855\/33b60a053586a998f8f793f73b30d994.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"A1C2B5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659575737146589184\/_o0UtWTl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659575737146589184\/_o0UtWTl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144977956\/1446090084","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:08:22 +0000 2015","id":663523491371700224,"id_str":"663523491371700224","text":"@Phonzo_5 \ud83d\ude02 https:\/\/t.co\/FOENpE8zjK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1254686527,"in_reply_to_user_id_str":"1254686527","in_reply_to_screen_name":"Phonzo_5","user":{"id":2739079715,"id_str":"2739079715","name":"Nov.29 \u2728","screen_name":"_WhoisLuckyy","location":"Crockett, TX","url":"http:\/\/www.hudl.com\/athlete\/3138691\/highlights\/214488376\/v2","description":"#DoItFor3\u20e3 #Andreya #NFL #Junior #StraightOuttaCrockett #OnOurWayToState #Playoffs #TheUniversityOf__________","protected":false,"verified":false,"followers_count":1362,"friends_count":1388,"listed_count":4,"favourites_count":3396,"statuses_count":20580,"created_at":"Sun Aug 10 15:22:14 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663419003365388288\/Ui0HJ8Wa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663419003365388288\/Ui0HJ8Wa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2739079715\/1447045650","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663147909693751296,"quoted_status_id_str":"663147909693751296","quoted_status":{"created_at":"Sun Nov 08 00:15:57 +0000 2015","id":663147909693751296,"id_str":"663147909693751296","text":"Had to teach Coach how to Dab today \ud83d\ude02 https:\/\/t.co\/H4YUALJeHf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":316028578,"id_str":"316028578","name":"Diddy Chamberlain","screen_name":"CrownMeKy","location":"Greensboro,NC","url":null,"description":"Football Player || Personal Trainer || Promoter || Newark,NJ || #GreensboroCollege || #ExecutiveTeam || IG:crownmeky","protected":false,"verified":false,"followers_count":13316,"friends_count":10727,"listed_count":15,"favourites_count":1503,"statuses_count":108933,"created_at":"Sun Jun 12 20:44:51 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000132942716\/llIdBH0e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000132942716\/llIdBH0e.jpeg","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652994396602925056\/SdOLXOdZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652994396602925056\/SdOLXOdZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/316028578\/1420839454","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663147858816802816,"id_str":"663147858816802816","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663147858816802816\/pu\/img\/MdLYexIRPmc4rlOE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663147858816802816\/pu\/img\/MdLYexIRPmc4rlOE.jpg","url":"https:\/\/t.co\/H4YUALJeHf","display_url":"pic.twitter.com\/H4YUALJeHf","expanded_url":"http:\/\/twitter.com\/CrownMeKy\/status\/663147909693751296\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663147858816802816,"id_str":"663147858816802816","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663147858816802816\/pu\/img\/MdLYexIRPmc4rlOE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663147858816802816\/pu\/img\/MdLYexIRPmc4rlOE.jpg","url":"https:\/\/t.co\/H4YUALJeHf","display_url":"pic.twitter.com\/H4YUALJeHf","expanded_url":"http:\/\/twitter.com\/CrownMeKy\/status\/663147909693751296\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":7800,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/pl\/hxEHht5qnehdYtu0.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/vid\/480x480\/hHX9JMPCl_0BvuHr.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/vid\/240x240\/r7R0Rg8VtzAuSoR-.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/vid\/480x480\/hHX9JMPCl_0BvuHr.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/vid\/720x720\/4beRywe1_FhZCWmA.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663147858816802816\/pu\/pl\/hxEHht5qnehdYtu0.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FOENpE8zjK","expanded_url":"https:\/\/twitter.com\/crownmeky\/status\/663147909693751296","display_url":"twitter.com\/crownmeky\/stat\u2026","indices":[12,35]}],"user_mentions":[{"screen_name":"Phonzo_5","name":"5\u20e3","id":1254686527,"id_str":"1254686527","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FOENpE8zjK","expanded_url":"https:\/\/twitter.com\/crownmeky\/status\/663147909693751296","display_url":"twitter.com\/crownmeky\/stat\u2026","indices":[30,53]}],"user_mentions":[{"screen_name":"_WhoisLuckyy","name":"Nov.29 \u2728","id":2739079715,"id_str":"2739079715","indices":[3,16]},{"screen_name":"Phonzo_5","name":"5\u20e3","id":1254686527,"id_str":"1254686527","indices":[18,27]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080084661"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097884114944,"id_str":"663728097884114944","text":"RT @a060437: \uc870\uc6a9\ud788 \uc0b4\uba70 \uae00\uc548\uc2f8\uc9c0\ub974\ub358 \ub098\ub97c \ub9e4\ubc88 \uae00 \uc4f0\uac8c \ub9cc\ub4dc\ub294\uac74 @MnetMAMA \uc694 \ub0b4 \ud558\ub098\ubfd0\uc778 #EXO \uc0c1\ubc1b\uac8c\ud558\ub824\ub294 \ub178\ub825\uc774 \ubb34\uc0b0\ub418\uc9c0\uc54a\uac8c \ud574\uc8fc\uc2dc\uad6c\ub824 \ubaa8\ub450 #CALLMEBABY \ub098 \ub4e4\uc73c\uba70 \ub2ec\ub9bd\uc2dc\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2928129914,"id_str":"2928129914","name":"\uc0bc\ub4dd\uc544 \ud22c\ud45c\ud558\uc790","screen_name":"0408__exo","location":"2015MAMA = EXO","url":null,"description":"\ubcf4\uc774\ub294 \ud2b8\uc717 \ub9c9 \ub9ac\ud2b8\uc717\ud568\ub2c8\ub2e4,,, ^\u3145^","protected":false,"verified":false,"followers_count":6,"friends_count":453,"listed_count":0,"favourites_count":243,"statuses_count":2028,"created_at":"Sat Dec 13 05:12:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721478601359360\/PPaFTBCQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721478601359360\/PPaFTBCQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2928129914\/1444568324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727791192469505,"id_str":"663727791192469505","text":"\uc870\uc6a9\ud788 \uc0b4\uba70 \uae00\uc548\uc2f8\uc9c0\ub974\ub358 \ub098\ub97c \ub9e4\ubc88 \uae00 \uc4f0\uac8c \ub9cc\ub4dc\ub294\uac74 @MnetMAMA \uc694 \ub0b4 \ud558\ub098\ubfd0\uc778 #EXO \uc0c1\ubc1b\uac8c\ud558\ub824\ub294 \ub178\ub825\uc774 \ubb34\uc0b0\ub418\uc9c0\uc54a\uac8c \ud574\uc8fc\uc2dc\uad6c\ub824 \ubaa8\ub450 #CALLMEBABY \ub098 \ub4e4\uc73c\uba70 \ub2ec\ub9bd\uc2dc\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2407242732,"id_str":"2407242732","name":":3","screen_name":"a060437","location":null,"url":null,"description":"\ub0b4\uc6b0\uc8fc\ub294 \uc800\uc5b4\uc5b8\ubd90\u3147\u3147\uc6b0 \uc5e3\u3145\uc18c~~~~~","protected":false,"verified":false,"followers_count":2,"friends_count":74,"listed_count":0,"favourites_count":3,"statuses_count":27,"created_at":"Sun Mar 23 15:00:10 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624175582184501249\/XorX3Ys2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624175582184501249\/XorX3Ys2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2407242732\/1442763008","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[50,54]},{"text":"CALLMEBABY","indices":[83,94]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[30,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[63,67]},{"text":"CALLMEBABY","indices":[96,107]}],"urls":[],"user_mentions":[{"screen_name":"a060437","name":":3","id":2407242732,"id_str":"2407242732","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[43,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080084664"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097875861504,"id_str":"663728097875861504","text":"Heboh Mobil Mewah Jaguar Rp 2,5 Miliar Milik Ketua DPR RI https:\/\/t.co\/5GFoO6nnMh","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3464920637,"id_str":"3464920637","name":"Pengawal Aspirasi","screen_name":"kawal_aspirasi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":1716,"created_at":"Fri Aug 28 04:46:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637125010717454340\/aPnfBoBq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637125010717454340\/aPnfBoBq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5GFoO6nnMh","expanded_url":"http:\/\/ift.tt\/1RIkZk6","display_url":"ift.tt\/1RIkZk6","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080084662"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097892679680,"id_str":"663728097892679680","text":"@JackJackJohnson WE ARE FINNALY GONNA MEET (UTRECHT, HOLLAND) next year see you there\ud83d\udc9f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":815855652,"id_str":"815855652","name":"\u00b0\u02d6\u2727\u25ddmariam\u25dc\u2727\u02d6\u00b0","screen_name":"xMariamB","location":"pizza","url":"https:\/\/twitter.com\/camerondallas\/status\/620650564519505920","description":"My taste in music is your face","protected":false,"verified":false,"followers_count":742,"friends_count":776,"listed_count":6,"favourites_count":1622,"statuses_count":25921,"created_at":"Mon Sep 10 19:17:40 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113138147\/47739b3cc3a8634f4fcbd901e11688df.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113138147\/47739b3cc3a8634f4fcbd901e11688df.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662383917534740480\/tv4Zc7uc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662383917534740480\/tv4Zc7uc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/815855652\/1446759752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084666"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854902272,"id_str":"663728097854902272","text":"RT @CarmenVilluq: Al Celta le meten 5 en casa y su afici\u00f3n responde as\u00ed. ORGULLO. #SempreCelta https:\/\/t.co\/N3rkHWqY9p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495930789,"id_str":"495930789","name":"juan","screen_name":"Jr7Juito","location":"vigo","url":null,"description":null,"protected":false,"verified":false,"followers_count":23,"friends_count":92,"listed_count":0,"favourites_count":18,"statuses_count":78,"created_at":"Sat Feb 18 13:03:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603115039822864384\/2LWruJOL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603115039822864384\/2LWruJOL_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 16:55:23 +0000 2015","id":663037037474394112,"id_str":"663037037474394112","text":"Al Celta le meten 5 en casa y su afici\u00f3n responde as\u00ed. ORGULLO. #SempreCelta https:\/\/t.co\/N3rkHWqY9p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136759906,"id_str":"136759906","name":"Carmen","screen_name":"CarmenVilluq","location":"Vigo, Galicia","url":null,"description":"Namorada e aboada n\u00famero 6.922 do Real Club Celta de Vigo. #LiveForever","protected":false,"verified":false,"followers_count":1370,"friends_count":467,"listed_count":24,"favourites_count":3589,"statuses_count":128431,"created_at":"Sat Apr 24 21:07:20 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"gl","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508741281174941696\/4EAT38TB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508741281174941696\/4EAT38TB.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592335874744045568\/fhblVrpu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592335874744045568\/fhblVrpu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136759906\/1410128272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":147,"favorite_count":118,"entities":{"hashtags":[{"text":"SempreCelta","indices":[64,76]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663036792816447488,"id_str":"663036792816447488","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","url":"https:\/\/t.co\/N3rkHWqY9p","display_url":"pic.twitter.com\/N3rkHWqY9p","expanded_url":"http:\/\/twitter.com\/CarmenVilluq\/status\/663037037474394112\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663036792816447488,"id_str":"663036792816447488","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","url":"https:\/\/t.co\/N3rkHWqY9p","display_url":"pic.twitter.com\/N3rkHWqY9p","expanded_url":"http:\/\/twitter.com\/CarmenVilluq\/status\/663037037474394112\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30016,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/1280x720\/1fOuUjg3ZQD8jFAy.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/pl\/M--ntDFWv0ufAtpw.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/640x360\/jfqWtCSjO5wQ6QIG.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/640x360\/jfqWtCSjO5wQ6QIG.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/pl\/M--ntDFWv0ufAtpw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/320x180\/DgUFTv99VcqgKlCC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SempreCelta","indices":[82,94]}],"urls":[],"user_mentions":[{"screen_name":"CarmenVilluq","name":"Carmen","id":136759906,"id_str":"136759906","indices":[3,16]}],"symbols":[],"media":[{"id":663036792816447488,"id_str":"663036792816447488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","url":"https:\/\/t.co\/N3rkHWqY9p","display_url":"pic.twitter.com\/N3rkHWqY9p","expanded_url":"http:\/\/twitter.com\/CarmenVilluq\/status\/663037037474394112\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663037037474394112,"source_status_id_str":"663037037474394112","source_user_id":136759906,"source_user_id_str":"136759906"}]},"extended_entities":{"media":[{"id":663036792816447488,"id_str":"663036792816447488","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663036792816447488\/pu\/img\/anj7ff3eYColly6_.jpg","url":"https:\/\/t.co\/N3rkHWqY9p","display_url":"pic.twitter.com\/N3rkHWqY9p","expanded_url":"http:\/\/twitter.com\/CarmenVilluq\/status\/663037037474394112\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663037037474394112,"source_status_id_str":"663037037474394112","source_user_id":136759906,"source_user_id_str":"136759906","video_info":{"aspect_ratio":[16,9],"duration_millis":30016,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/1280x720\/1fOuUjg3ZQD8jFAy.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/pl\/M--ntDFWv0ufAtpw.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/640x360\/jfqWtCSjO5wQ6QIG.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/640x360\/jfqWtCSjO5wQ6QIG.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/pl\/M--ntDFWv0ufAtpw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663036792816447488\/pu\/vid\/320x180\/DgUFTv99VcqgKlCC.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888370688,"id_str":"663728097888370688","text":"RT @TheseDamnWords: \"Hey\" ,\n\n\"Hey\" , \n\n\"How r u\" , \n\n\" Good u\" , \n\n\"Good\", \n\n\"What r u doing\", \n\n\"nothing u\" , \n\n\"nothing\", \n\nRetweet if yo\u2026","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=org.mariotaku.twidere\" rel=\"nofollow\"\u003eTwidere for Android #4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2608625652,"id_str":"2608625652","name":"Grace Winchester","screen_name":"basyangot","location":"Cebu City, Philippines","url":"http:\/\/www.facebook.com\/joshgrac","description":"AMAZING GRACE \n IG : graciabananaaa","protected":false,"verified":false,"followers_count":436,"friends_count":379,"listed_count":6,"favourites_count":565,"statuses_count":5029,"created_at":"Mon Jul 07 01:06:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632122479708803072\/qnAjWq6Y.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632122479708803072\/qnAjWq6Y.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649272934461140992\/7_whWF8Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649272934461140992\/7_whWF8Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2608625652\/1446958285","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727820791656448,"id_str":"663727820791656448","text":"\"Hey\" ,\n\n\"Hey\" , \n\n\"How r u\" , \n\n\" Good u\" , \n\n\"Good\", \n\n\"What r u doing\", \n\n\"nothing u\" , \n\n\"nothing\", \n\nRetweet if you hate these convos.","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":503027309,"id_str":"503027309","name":"These Damn Words \u2661","screen_name":"TheseDamnWords","location":null,"url":null,"description":"Your everyday source of Quotes \u2022 English and Tagalog tweets \u2022","protected":false,"verified":false,"followers_count":718855,"friends_count":232,"listed_count":558,"favourites_count":4017,"statuses_count":68216,"created_at":"Sat Feb 25 13:40:12 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661177692444725248\/84jbDI1A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661177692444725248\/84jbDI1A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/503027309\/1445373149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheseDamnWords","name":"These Damn Words \u2661","id":503027309,"id_str":"503027309","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084665"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097859125248,"id_str":"663728097859125248","text":"TareqSells shares Bob Vila Home Owner Tips - Clean your gutter without a ladder? Yes, you can. Here's how: \u2026 https:\/\/t.co\/da0aR0CXmt","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3255918188,"id_str":"3255918188","name":"Tareq Arsalla","screen_name":"TareqSells","location":"Jacksonville, Florida","url":"http:\/\/tareqarsalla.myfhrm.com","description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":71,"listed_count":17,"favourites_count":8,"statuses_count":5179,"created_at":"Thu Jun 25 20:06:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614443309226835968\/lteuaM6H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614443309226835968\/lteuaM6H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3255918188\/1435334704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725516038500355,"id_str":"663725516038500355","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG1xvWcAMIRXv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG1xvWcAMIRXv.jpg","url":"https:\/\/t.co\/da0aR0CXmt","display_url":"pic.twitter.com\/da0aR0CXmt","expanded_url":"http:\/\/twitter.com\/BobVila\/status\/663725516575346688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":415,"resize":"fit"},"large":{"w":650,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663725516575346688,"source_status_id_str":"663725516575346688","source_user_id":18197498,"source_user_id_str":"18197498"}]},"extended_entities":{"media":[{"id":663725516038500355,"id_str":"663725516038500355","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG1xvWcAMIRXv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG1xvWcAMIRXv.jpg","url":"https:\/\/t.co\/da0aR0CXmt","display_url":"pic.twitter.com\/da0aR0CXmt","expanded_url":"http:\/\/twitter.com\/BobVila\/status\/663725516575346688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":415,"resize":"fit"},"large":{"w":650,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":235,"resize":"fit"}},"source_status_id":663725516575346688,"source_status_id_str":"663725516575346688","source_user_id":18197498,"source_user_id_str":"18197498"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084658"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097867493377,"id_str":"663728097867493377","text":"buscame","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3588941836,"id_str":"3588941836","name":"Sonia Pons","screen_name":"SoniaPons_X7","location":null,"url":null,"description":"Las cosas no son lo que son, sino lo que significan en las personas.","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":894,"created_at":"Tue Sep 08 15:25:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641424477507715072\/hDQHV2WY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641424477507715072\/hDQHV2WY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3588941836\/1441762488","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084660"} +{"delete":{"status":{"id":363247521763569664,"id_str":"363247521763569664","user_id":1052248614,"user_id_str":"1052248614"},"timestamp_ms":"1447080084768"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888354304,"id_str":"663728097888354304","text":"RT @QuennieRoman: Hello there \u2764\ufe0f\ud83d\ude0a @OyoDioko https:\/\/t.co\/pkQm71tUEP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301441013,"id_str":"301441013","name":"Oyo Boy Dioko","screen_name":"OyoDioko","location":null,"url":null,"description":"Im Just a Simple Guy Trying to Save the World","protected":false,"verified":false,"followers_count":210,"friends_count":77,"listed_count":0,"favourites_count":257,"statuses_count":1581,"created_at":"Thu May 19 13:40:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445510921339686912\/_FivYhLF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445510921339686912\/_FivYhLF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301441013\/1395053051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:46:11 +0000 2015","id":663668901796950016,"id_str":"663668901796950016","text":"Hello there \u2764\ufe0f\ud83d\ude0a @OyoDioko https:\/\/t.co\/pkQm71tUEP","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285482621,"id_str":"285482621","name":"Quennie Roman","screen_name":"QuennieRoman","location":"\u00dcT: 14.33196,121.08079","url":null,"description":"22 | Laguna | South girl | Preschool Teacher \u2764\ufe0f \n\nInstagram: @quennieroman","protected":false,"verified":false,"followers_count":402,"friends_count":207,"listed_count":1,"favourites_count":2583,"statuses_count":11967,"created_at":"Thu Apr 21 07:05:22 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"90989C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/405772702\/watermelon_shop_preview_large.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/405772702\/watermelon_shop_preview_large.png","profile_background_tile":true,"profile_link_color":"EB0E66","profile_sidebar_border_color":"660F99","profile_sidebar_fill_color":"EBC1CB","profile_text_color":"07851A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638657887020019716\/am_alzPJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638657887020019716\/am_alzPJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285482621\/1395714198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OyoDioko","name":"Oyo Boy Dioko","id":301441013,"id_str":"301441013","indices":[16,25]}],"symbols":[],"media":[{"id":663668901641764864,"id_str":"663668901641764864","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","url":"https:\/\/t.co\/pkQm71tUEP","display_url":"pic.twitter.com\/pkQm71tUEP","expanded_url":"http:\/\/twitter.com\/QuennieRoman\/status\/663668901796950016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663668901641764864,"id_str":"663668901641764864","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","url":"https:\/\/t.co\/pkQm71tUEP","display_url":"pic.twitter.com\/pkQm71tUEP","expanded_url":"http:\/\/twitter.com\/QuennieRoman\/status\/663668901796950016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QuennieRoman","name":"Quennie Roman","id":285482621,"id_str":"285482621","indices":[3,16]},{"screen_name":"OyoDioko","name":"Oyo Boy Dioko","id":301441013,"id_str":"301441013","indices":[34,43]}],"symbols":[],"media":[{"id":663668901641764864,"id_str":"663668901641764864","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","url":"https:\/\/t.co\/pkQm71tUEP","display_url":"pic.twitter.com\/pkQm71tUEP","expanded_url":"http:\/\/twitter.com\/QuennieRoman\/status\/663668901796950016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663668901796950016,"source_status_id_str":"663668901796950016","source_user_id":285482621,"source_user_id_str":"285482621"}]},"extended_entities":{"media":[{"id":663668901641764864,"id_str":"663668901641764864","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTWYrUwAAGIsM.jpg","url":"https:\/\/t.co\/pkQm71tUEP","display_url":"pic.twitter.com\/pkQm71tUEP","expanded_url":"http:\/\/twitter.com\/QuennieRoman\/status\/663668901796950016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663668901796950016,"source_status_id_str":"663668901796950016","source_user_id":285482621,"source_user_id_str":"285482621"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084665"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863344128,"id_str":"663728097863344128","text":"PARA TUDO! Minha m\u00e3e t\u00e1 fazendo macarr\u00e3o com salsicha. \ud83c\udf5d\ud83c\udf5c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64760747,"id_str":"64760747","name":"Erick Correia","screen_name":"desfilei","location":"Rio de Janeiro, Brasil","url":"http:\/\/www.desfilei.com","description":"Brazilian Fashion Blogger - editor of http:\/\/desfilei.com \/ Style is the outside of the brain.","protected":false,"verified":false,"followers_count":1082,"friends_count":531,"listed_count":37,"favourites_count":4098,"statuses_count":38046,"created_at":"Tue Aug 11 16:38:47 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585112497755009024\/Z2vb00cj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585112497755009024\/Z2vb00cj.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661524936595501056\/0s2mGr71_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661524936595501056\/0s2mGr71_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64760747\/1443910464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854820352,"id_str":"663728097854820352","text":"RT @KiraSoEntaneer: \u0e17\u0e31\u0e01\u0e17\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\n\u0e44\u0e2e\u0e48 !\n\u0e17\u0e31\u0e01\u0e17\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\u0e2d\u0e01\u0e2b\u0e31\u0e01\n\u0e44\u0e2e\u0e48 ! \u0e40\u0e18\u0e2d ! \u0e44\u0e14\u0e49 ! \u0e01\u0e31\u0e1a\u0e40\u0e02\u0e32 \u0e41\u0e25\u0e30\u0e08\u0e07\u0e42\u0e0a\u0e04\u0e14\u0e35 !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375046671,"id_str":"375046671","name":"\u0e21\u0e34\u0e14\u0e32\u0e32\u0e32\u0e32\u0e32\u0e32","screen_name":"iimSMII","location":"\u0e21\u0e42\u0e19\u0e18\u0e32\u0e19\u0e35","url":null,"description":"\u0e01\u0e39\u0e44\u0e21\u0e48\u0e2d\u0e48\u0e32\u0e19\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d\u0e01\u0e39\u0e08\u0e30\u0e44\u0e1b\u0e23\u0e39\u0e49\u0e40\u0e2b\u0e35\u0e4a\u0e22\u0e44\u0e23 ... #Dek59 | \u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e23\u0e32\u0e14\u0e34\u0e40\u0e23\u0e32\u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e1e\u0e48\u0e2d\u0e41\u0e21\u0e48\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e2a\u0e19\u0e34\u0e17\u0e01\u0e31\u0e19\u0e19\u0e30","protected":false,"verified":false,"followers_count":345,"friends_count":318,"listed_count":4,"favourites_count":608,"statuses_count":60393,"created_at":"Sat Sep 17 12:10:10 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/851194806\/b2d0b4a83cbbbdf44ab3598ca612e598.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/851194806\/b2d0b4a83cbbbdf44ab3598ca612e598.jpeg","profile_background_tile":true,"profile_link_color":"5E412F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663415672370688000\/fyzNH6ZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663415672370688000\/fyzNH6ZH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375046671\/1447003721","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 29 05:24:09 +0000 2014","id":538564047533129728,"id_str":"538564047533129728","text":"\u0e17\u0e31\u0e01\u0e17\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\n\u0e44\u0e2e\u0e48 !\n\u0e17\u0e31\u0e01\u0e17\u0e32\u0e22\u0e41\u0e1a\u0e1a\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\u0e2d\u0e01\u0e2b\u0e31\u0e01\n\u0e44\u0e2e\u0e48 ! \u0e40\u0e18\u0e2d ! \u0e44\u0e14\u0e49 ! \u0e01\u0e31\u0e1a\u0e40\u0e02\u0e32 \u0e41\u0e25\u0e30\u0e08\u0e07\u0e42\u0e0a\u0e04\u0e14\u0e35 !","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2344594680,"id_str":"2344594680","name":"\u0e41\u0e2d\u0e19\u0e19\u0e35\u0e48 \u0e02\u0e35\u0e49\u0e40\u0e2b\u0e27\u0e35\u0e48\u0e22\u0e07","screen_name":"KiraSoEntaneer","location":"Entaneer Gear 44 CMU","url":null,"description":"\u0e1c\u0e0d\u0e27\u0e34\u0e14\u0e27\u0e30 \u0e15\u0e01\u0e43\u0e08\u0e07\u0e48\u0e32\u0e22 \u0e01\u0e25\u0e31\u0e27\u0e2b\u0e25\u0e32\u0e22\u0e2d\u0e22\u0e48\u0e32\u0e07 \u0e19\u0e31\u0e01\u0e40\u0e25\u0e07\u0e04\u0e35\u0e1a\u0e2d\u0e23\u0e4c\u0e14 \u0e40\u0e01\u0e25\u0e35\u0e22\u0e14\u0e1c\u0e0a! \u0e1a\u0e49\u0e32\u0e07\u0e32\u0e19!! \u0e08\u0e30\u0e23\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19!! \u0e1a\u0e49\u0e32pokadot \u0e1f\u0e23\u0e35\u0e41\u0e25\u0e19\u0e17\u0e4c\u0e04\u0e32\u0e40\u0e23\u0e47\u0e01\u0e40\u0e15\u0e2d\u0e23\u0e4c\u0e14\u0e35\u0e44\u0e0b\u0e19\u0e4c \u0e0a\u0e2d\u0e1a\u0e01\u0e34\u0e19\u0e40\u0e01\u0e35\u0e49\u0e22\u0e27\u0e0b\u0e48\u0e32\u0e41\u0e0b\u0e25\u0e21\u0e48\u0e2d\u0e19\u0e0a\u0e32\u0e1e\u0e35\u0e0a \u0e0a\u0e2d\u0e1a\u0e01\u0e34\u0e19\u0e1c\u0e31\u0e01 \u0e2b\u0e19\u0e21\u0e08\u0e35\u0e1a","protected":false,"verified":false,"followers_count":1229,"friends_count":217,"listed_count":11,"favourites_count":1039,"statuses_count":55515,"created_at":"Sat Feb 15 05:23:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"D3BEA1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457747681889103872\/nEUQfz4N.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457747681889103872\/nEUQfz4N.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FCAC87","profile_sidebar_fill_color":"F68774","profile_text_color":"EF665E","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663402305526468608\/znorvKzk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663402305526468608\/znorvKzk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344594680\/1397879778","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55448,"favorite_count":5394,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KiraSoEntaneer","name":"\u0e41\u0e2d\u0e19\u0e19\u0e35\u0e48 \u0e02\u0e35\u0e49\u0e40\u0e2b\u0e27\u0e35\u0e48\u0e22\u0e07","id":2344594680,"id_str":"2344594680","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854775296,"id_str":"663728097854775296","text":"RT @promenaderecord: \u3057\u304b\u3057\u30b2\u30b9\u3044\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3060\u306a\u3001\u3001\u3001\u6065 https:\/\/t.co\/LrPgM4EzLD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":483070218,"id_str":"483070218","name":"\u3231\u9234\u6728\u751f\u30b3\u30f3","screen_name":"suzuki_namakon","location":"\u795e\u5948\u5ddd\u770c \u5ddd\u5d0e\u5e02","url":null,"description":"\u300e\u7f8e\u4eba\u3068\u4ed8\u304d\u5408\u3063\u3066\u308b\u7537\u3092\u546a\u3046\u4f1a\u300f\u306e\u7279\u5225\u9867\u554f\u3092\u52d9\u3081\u3066\u304a\u308a\u307e\u3059\u3002\n\u3044\u3064\u3082\u6f2b\u753b\u3068\u97f3\u697d\u306e\u8a71\u3070\u304b\u308a\u3002","protected":false,"verified":false,"followers_count":304,"friends_count":298,"listed_count":13,"favourites_count":51553,"statuses_count":35285,"created_at":"Sat Feb 04 16:19:08 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/665545887\/ed885b1a80e5df918ef6a9de2e926e4b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/665545887\/ed885b1a80e5df918ef6a9de2e926e4b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632933652213559296\/OPV4j9YI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632933652213559296\/OPV4j9YI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483070218\/1401380195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 23:48:02 +0000 2015","id":663140887791177732,"id_str":"663140887791177732","text":"\u3057\u304b\u3057\u30b2\u30b9\u3044\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u3060\u306a\u3001\u3001\u3001\u6065 https:\/\/t.co\/LrPgM4EzLD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77673471,"id_str":"77673471","name":"promenade records","screen_name":"promenaderecord","location":null,"url":"http:\/\/promenaderecords.com\/","description":"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u30ea\u30cb\u30e5\u30fc\u30a2\u30eb\u3057\u307e\u3057\u305f\u3002\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3067\u3082\u8a66\u8074\u3001\u8cfc\u5165\u3057\u3066\u9802\u3051\u307e\u3059\u3002\nBlog\u2192 http:\/\/urx2.nu\/gFsy\u3000\nFacebook\u2192 http:\/\/goo.gl\/VtcE0b\u3000Instagram \u2192http:\/\/urx2.nu\/gFyy","protected":false,"verified":false,"followers_count":1206,"friends_count":937,"listed_count":69,"favourites_count":359,"statuses_count":10172,"created_at":"Sun Sep 27 05:58:16 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/90776598\/_ogo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/90776598\/_ogo.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571959176218173440\/5DRzVNio_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571959176218173440\/5DRzVNio_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77673471\/1432564440","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"74fad2166ae8b8e6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/74fad2166ae8b8e6.json","place_type":"city","name":"\u5927\u962a\u5e02 \u5317\u533a","full_name":"\u5927\u962a\u5e9c \u5927\u962a\u5e02 \u5317\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[135.477230,34.683016],[135.477230,34.717731],[135.527178,34.717731],[135.527178,34.683016]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663140881139019776,"id_str":"663140881139019776","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","url":"https:\/\/t.co\/LrPgM4EzLD","display_url":"pic.twitter.com\/LrPgM4EzLD","expanded_url":"http:\/\/twitter.com\/promenaderecord\/status\/663140887791177732\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663140881139019776,"id_str":"663140881139019776","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","url":"https:\/\/t.co\/LrPgM4EzLD","display_url":"pic.twitter.com\/LrPgM4EzLD","expanded_url":"http:\/\/twitter.com\/promenaderecord\/status\/663140887791177732\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"promenaderecord","name":"promenade records","id":77673471,"id_str":"77673471","indices":[3,19]}],"symbols":[],"media":[{"id":663140881139019776,"id_str":"663140881139019776","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","url":"https:\/\/t.co\/LrPgM4EzLD","display_url":"pic.twitter.com\/LrPgM4EzLD","expanded_url":"http:\/\/twitter.com\/promenaderecord\/status\/663140887791177732\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663140887791177732,"source_status_id_str":"663140887791177732","source_user_id":77673471,"source_user_id_str":"77673471"}]},"extended_entities":{"media":[{"id":663140881139019776,"id_str":"663140881139019776","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzHjBUsAA68cW.jpg","url":"https:\/\/t.co\/LrPgM4EzLD","display_url":"pic.twitter.com\/LrPgM4EzLD","expanded_url":"http:\/\/twitter.com\/promenaderecord\/status\/663140887791177732\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663140887791177732,"source_status_id_str":"663140887791177732","source_user_id":77673471,"source_user_id_str":"77673471"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854799876,"id_str":"663728097854799876","text":"RT @Asmin_R: \u30d6\u30e9\u30c3\u30af\u30d0\u30a4\u30c8\u3063\u3066\u5909\u306a\u8a00\u8449\u3068\u611f\u3058\u305f\u3002\u82f1\u8a9e\uff0b\u30c9\u30a4\u30c4\u8a9e\u306e\u30cf\u30a4\u30d6\u30ea\u30c3\u30c9\u3060\u304b\u3089\u306d\u3002\u3069\u3046\u305b\u306a\u3089\u30b7\u30e5\u30d0\u30eb\u30c4\u30d0\u30a4\u30c8\u306b\u3059\u308c\u3070\u3044\u3044\u306b\u3002","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238397101,"id_str":"238397101","name":"\u3077\u3042\uff01","screen_name":"m8oakl","location":"\u660e\u65e5\u3082\u751f\u304d\u3066\u308b\u3068\u306f\u9650\u3089\u306d\u3048\u304b\u3089\u3088","url":"http:\/\/realtime.search.yahoo.co.jp\/search?p=%E3%81%8A%E3%81%8B%E3%81%BE%E3%81%A3%E3%81%A6%E3%81%A1%E","description":"\u8208\u5473\u95a2\u5fc3\uff1a\u6cd5 \u5973\u5b50\u3014BISH\uff0f\u6708\u3068\u592a\u967d\uff0f\u5927\u5cf6\u6dbc\u82b1\uff0f\u5922\u30a2\u30c9\uff0f\u5f37\u30bb\u30f3\uff0f\u672c\u7530\u7ffc\uff0fPassCode\uff0fLinQ\uff0f\u6d41\u661f\u7fa4\uff0fPalet\uff0f\u30ac\u30ec\u30c3\u30c6\uff0f\u30ec\u30c7\u30a3\u30ad\uff0f\u30c9\u30ed\u30b7\u30fc\uff0f\u5d0e\u91ce\u840c\u3015\u3014\u64ae\u308b\u3001\u65b0\u5546\u54c1\u8cb7\u3046\u3001\u7f8e\u5473\u3044\u5e97\u3001\u604b\u4eba\u306e\u58f0\u5302\u3044\u6ce3\u304d\u9854\u5185\u80a1\u30dc\u30d6\u3001\u691c\u7d22\u3057\u5b66\u3076\u3001\u4f1a\u8a71\u3059\u308b\u3001\u7d9a\u3051\u308b\u3001\u89b3\u5bdf\u5206\u6790\u3059\u308b\u3001\u30d0\u30e9\u30f3\u30b9\u3001\u30d5\u30af\u30ed\u30a6\u3001\u611b\u82e6\u3057\u3044\u3001\u30bb\u30f3\u30b9\u3001\u30b7\u30d6\u30fc\u30b9\u30c8\u3001\u65ad\u6368\u96e2\u3015","protected":false,"verified":false,"followers_count":11521,"friends_count":11332,"listed_count":192,"favourites_count":111273,"statuses_count":386103,"created_at":"Sat Jan 15 02:34:25 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/706649796\/6b8129f9eb83b031728fe71e0cf5081e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/706649796\/6b8129f9eb83b031728fe71e0cf5081e.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644346400520564736\/ynL21MGt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644346400520564736\/ynL21MGt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238397101\/1417011422","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:20:39 +0000 2015","id":663662475435347968,"id_str":"663662475435347968","text":"\u30d6\u30e9\u30c3\u30af\u30d0\u30a4\u30c8\u3063\u3066\u5909\u306a\u8a00\u8449\u3068\u611f\u3058\u305f\u3002\u82f1\u8a9e\uff0b\u30c9\u30a4\u30c4\u8a9e\u306e\u30cf\u30a4\u30d6\u30ea\u30c3\u30c9\u3060\u304b\u3089\u306d\u3002\u3069\u3046\u305b\u306a\u3089\u30b7\u30e5\u30d0\u30eb\u30c4\u30d0\u30a4\u30c8\u306b\u3059\u308c\u3070\u3044\u3044\u306b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101423863,"id_str":"101423863","name":"\u3042\u3055\u307f\u3000\u308c\u3044","screen_name":"Asmin_R","location":"Fukuoka, Japan","url":"http:\/\/yonda4.com\/user\/Asmin_R","description":"\u672c\u304c\u597d\u304d\u3002\u672c\u304c\u597d\u304d\u306a\u4eba\u3082\u597d\u304d\u3002\u672c\u304c\u3042\u308b\u90e8\u5c4b\u3082\u597d\u304d\u3002\u8aad\u66f8\u306f\u5c0f\u8aac\u304b\u3089\u7406\u5de5\u7cfb\u66f8\u307e\u3067\u96d1\u98df\u7cfb\u3002\u3068\u304d\u306b\u4e0b\u624b\u306a\u4ff3\u53e5\u3068\u77ed\u6b4c\u3002\u72ec\u308a\u304c\u597d\u304d\u306a\u5bc2\u3057\u304c\u308a\u5c4b\u3002\u30ef\u30a4\u30f3\u306b\u9154\u3046\u3068\u76f8\u8ee2\u79fb\u3002","protected":false,"verified":false,"followers_count":1693,"friends_count":796,"listed_count":147,"favourites_count":887,"statuses_count":25880,"created_at":"Sun Jan 03 07:17:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/121420315\/2085692737_76f57373de.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/121420315\/2085692737_76f57373de.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCD","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660694851520851968\/OLPkoOFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660694851520851968\/OLPkoOFy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101423863\/1398235093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":225,"favorite_count":156,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Asmin_R","name":"\u3042\u3055\u307f\u3000\u308c\u3044","id":101423863,"id_str":"101423863","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097892560896,"id_str":"663728097892560896","text":"@____T_A_ \n\u3046\u3048\u3048\u3048\u3048\u3044\u3044\u3044\u3044\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727962747895808,"in_reply_to_status_id_str":"663727962747895808","in_reply_to_user_id":3924118279,"in_reply_to_user_id_str":"3924118279","in_reply_to_screen_name":"____T_A_","user":{"id":4035085998,"id_str":"4035085998","name":"\uff08\u304a\uff09\u30b7\u30aa","screen_name":"_____jkmss","location":null,"url":null,"description":"\u30b3\u30f3\u30d3\uff01\u30b3\u30f3\u30d3\u30cb\u3058\u3083\u306a\u304f\u3066\u30b3\u30f3\u30d3\uff01","protected":false,"verified":false,"followers_count":41,"friends_count":42,"listed_count":0,"favourites_count":148,"statuses_count":675,"created_at":"Tue Oct 27 11:59:35 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662824935149080576\/ufRnFQbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662824935149080576\/ufRnFQbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035085998\/1446885231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"____T_A_","name":"\u3066\u3043\u3055\u3093\u3050","id":3924118279,"id_str":"3924118279","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084666"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854955521,"id_str":"663728097854955521","text":"RT @itsdhruvism: Girl:Send me a dick pic.\n* @DefucktiveHumor sends his new bike pics * : wo sab chhod na ye dekh pehle","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367785550,"id_str":"367785550","name":"Zaid Rehman Qureshi","screen_name":"indian_gooner_","location":"Mumbai ","url":"http:\/\/goonersfanclub.blogspot.in\/","description":"21, Gooner ,Muslim ,Bearded ,Android Developer ,Engineer and most importantly #Indian \n http:\/\/ask.fm\/indian_gooner_","protected":false,"verified":false,"followers_count":1475,"friends_count":1035,"listed_count":10,"favourites_count":3411,"statuses_count":10474,"created_at":"Sun Sep 04 15:25:39 +0000 2011","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0E0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432514027286052865\/AQRuR154.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432514027286052865\/AQRuR154.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655694538422423552\/cCoYkMak_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655694538422423552\/cCoYkMak_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367785550\/1416111218","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:13:50 +0000 2015","id":663706062269374464,"id_str":"663706062269374464","text":"Girl:Send me a dick pic.\n* @DefucktiveHumor sends his new bike pics * : wo sab chhod na ye dekh pehle","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":753128881,"id_str":"753128881","name":"\u0921\u093f.\u0915\u0947.","screen_name":"itsdhruvism","location":"Where my phone is","url":"http:\/\/favstar.fm\/users\/itsdhruvism","description":"Yes You Just found another gujju here. https:\/\/twitter.com\/itsdhruvism\/timelines\/611548551500292098","protected":false,"verified":false,"followers_count":1024,"friends_count":316,"listed_count":19,"favourites_count":464,"statuses_count":16960,"created_at":"Sun Aug 12 13:34:22 +0000 2012","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653606462707503104\/KvFF9u4O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653606462707503104\/KvFF9u4O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/753128881\/1433537219","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DefucktiveHumor","name":"Chaukanna Chor","id":130513668,"id_str":"130513668","indices":[27,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"itsdhruvism","name":"\u0921\u093f.\u0915\u0947.","id":753128881,"id_str":"753128881","indices":[3,15]},{"screen_name":"DefucktiveHumor","name":"Chaukanna Chor","id":130513668,"id_str":"130513668","indices":[44,60]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888374784,"id_str":"663728097888374784","text":"\u30ad\u30e3\u30d9\u30c4\u592a\u90ce\u305f\u3079\u3061\u3083\u3046","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362444539,"id_str":"362444539","name":"\u305f\u3051\u3084\u3093","screen_name":"Takeyan2525","location":"\u611b\u77e5\u770c \u77e5\u591a\u534a\u5cf6 ","url":null,"description":"\u6843\u4e95\u7cfb\u306e\u697d\u66f2\u6d3eDD\u30aa\u30bf\u30af\u3002\u300c\u63a8\u305b\u308b\u300d\u304c\u53e3\u7656\u3002\u6843\u4e95\u306f\u308b\u3053\/\u9234\u6728\u3053\u306e\u307f\/\u30cf\u30cb\u30fc\u30b9\u30d1\u30a4\u30b9\/GEM\/\u58f0\u512a\u3061\u3083\u3093\/\u30a2\u30a4\u30c9\u30eb\u3061\u3083\u3093\/\u30a2\u30cb\u30e1","protected":false,"verified":false,"followers_count":370,"friends_count":491,"listed_count":9,"favourites_count":1457,"statuses_count":49470,"created_at":"Fri Aug 26 12:13:35 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/534036441739694081\/USveYDxK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/534036441739694081\/USveYDxK.jpeg","profile_background_tile":true,"profile_link_color":"0043B8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584282333546557440\/Zn5C8w0j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584282333546557440\/Zn5C8w0j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362444539\/1439355697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084665"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097879961600,"id_str":"663728097879961600","text":"@mzpkn \u3042\u3063\u305f\u304b\u3044\u306e\u3088\u306d\n\u3053\u3053","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726653168746497,"in_reply_to_status_id_str":"663726653168746497","in_reply_to_user_id":537377622,"in_reply_to_user_id_str":"537377622","in_reply_to_screen_name":"mzpkn","user":{"id":3017463526,"id_str":"3017463526","name":"\u3057\u308d\u307e\u308b","screen_name":"shiromarudayone","location":"\u65e5\u672c \u5e83\u5cf6\u770c","url":null,"description":"\u4eba\u751f\u697d\u3057\u304f\u3044\u3053\u3046\u305c\uff01\uff01\u697d\u3057\u3093\u3060\u3082\u306e\u52dd\u3061\u3060\u3088","protected":false,"verified":false,"followers_count":50,"friends_count":55,"listed_count":1,"favourites_count":1992,"statuses_count":1278,"created_at":"Wed Feb 04 12:45:46 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663555692549156864\/NVk7xEuk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663555692549156864\/NVk7xEuk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017463526\/1446244046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mzpkn","name":"mzpkn","id":537377622,"id_str":"537377622","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084663"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097867493378,"id_str":"663728097867493378","text":"i took a nap at 6pm to wake up at 9 and do work but instead i slept till 12am and now i am sad","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330809926,"id_str":"330809926","name":"Champagne Pap\u00ed","screen_name":"trySarah__tops","location":"QUEEN OF SECANE ","url":"http:\/\/www.beyonce.com","description":"THESE THOTS CANT CLOCK ME NOWaDAYS 126 E Andrews\u2708\ufe0f'][' U","protected":false,"verified":false,"followers_count":1410,"friends_count":1072,"listed_count":5,"favourites_count":24916,"statuses_count":124798,"created_at":"Thu Jul 07 05:42:33 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E094B0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/285090314\/7305.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/285090314\/7305.jpg","profile_background_tile":false,"profile_link_color":"FFA3C8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F56C99","profile_text_color":"575057","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663414148836024320\/Ji-4owvr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663414148836024320\/Ji-4owvr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330809926\/1443122442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084660"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097858969600,"id_str":"663728097858969600","text":"\u3010\u753b\u50cf\u3011B\u30ab\u30c3\u30d7\u8ca7\u4e73\u304a\u59c9\u3055\u3093\u3060\u3051\u3069\u7ae5\u8c9e\u30af\u30f3\u3068\u30a8\u30c3\u30c1\u3057\u305f\u3044\uff57\uff57\uff57 1: \u30b0\u30e9\u30a8\u30ca\u304b\u3084\u307e\u304d\u3093\u306b\u541b 2015\/11\/06(\u91d1) 20:46:50.142 ID:B9 https:\/\/t.co\/DUYb5h3b28","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3037147842,"id_str":"3037147842","name":"miki","screen_name":"rdjg31d0","location":null,"url":null,"description":"\u6d77\u6708\u306e\u3088\u3046\u306b\u6d6e\u3044\u3066\u3044\u305f\u3044","protected":false,"verified":false,"followers_count":230,"friends_count":324,"listed_count":2,"favourites_count":0,"statuses_count":31463,"created_at":"Mon Feb 23 02:19:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575123133230804992\/rGAmgzg7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575123133230804992\/rGAmgzg7_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DUYb5h3b28","expanded_url":"http:\/\/news4vip.livedoor.biz\/archives\/52123674.html","display_url":"news4vip.livedoor.biz\/archives\/52123\u2026","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084658"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854787584,"id_str":"663728097854787584","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\uff01 #\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc #\u76f8\u4e92 #followmeJP #sougofollowJP #followme #follow #followback","source":"\u003ca href=\"https:\/\/twitter.com\/sougofollowatp\" rel=\"nofollow\"\u003e\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc@Pepper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2728992122,"id_str":"2728992122","name":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc@100%\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057P","screen_name":"sougofollowatp","location":null,"url":null,"description":"\u81ea\u52d5\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u4e2d\u3067\u3059\u3002\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u304f\u3060\u3055\u3044\u3002 \u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100% \n #followme #follow #followback #\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc #\u76f8\u4e92 #\uff8c\uff6b\uff9b\uff9c\uff70\u52df\u96c6\u4e2d #\uff8c\uff6b\uff9b\uff9c\uff70 #\u76f8\u4e92\uff8c\uff6b\uff9b\uff70\u306e\u8f2a #\uff98\uff8c\uff6b\uff9b\uff70 #\uff8c\uff6b\uff9b\uff90\uff70 #\uff8c\uff6b\uff9b\uff70\u8fd4\u3057 #\u76f8\u4e92\uff8c\uff6b\uff9b\uff70\u52df\u96c6 #\uff8c\uff6b\uff9b\uff70","protected":false,"verified":false,"followers_count":9909,"friends_count":8703,"listed_count":50,"favourites_count":0,"statuses_count":92373,"created_at":"Wed Aug 13 09:27:28 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598515311302742016\/RQ9r5YK2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598515311302742016\/RQ9r5YK2_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","indices":[11,18]},{"text":"\u76f8\u4e92","indices":[19,22]},{"text":"followmeJP","indices":[23,34]},{"text":"sougofollowJP","indices":[35,49]},{"text":"followme","indices":[50,59]},{"text":"follow","indices":[60,67]},{"text":"followback","indices":[68,79]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097884139521,"id_str":"663728097884139521","text":"\u0e40\u0e2e\u0e40\u0e14\u0e1f\u0e32\u0e23\u0e4c\u0e21\u0e40\u0e23\u0e32 \u0e23\u0e2d\u0e41\u0e01\u0e21\u0e32\u0e40\u0e25\u0e48\u0e19\u0e19\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":409851695,"id_str":"409851695","name":"- \u0e40\u0e08\u0e30","screen_name":"warxai","location":"Bangkok","url":null,"description":null,"protected":false,"verified":false,"followers_count":32,"friends_count":57,"listed_count":1,"favourites_count":111,"statuses_count":3910,"created_at":"Fri Nov 11 09:26:04 +0000 2011","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653212024055267328\/ITe4ABjX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653212024055267328\/ITe4ABjX_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080084664"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097854902273,"id_str":"663728097854902273","text":"@TresemmeMA @ecuavisa @encontactotv_ec","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727794862575616,"in_reply_to_status_id_str":"663727794862575616","in_reply_to_user_id":833324802,"in_reply_to_user_id_str":"833324802","in_reply_to_screen_name":"karenJara19","user":{"id":833324802,"id_str":"833324802","name":"karen Jara","screen_name":"karenJara19","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":63,"listed_count":0,"favourites_count":51,"statuses_count":1056,"created_at":"Wed Sep 19 13:27:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617086053900550144\/VHc9n2eC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617086053900550144\/VHc9n2eC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/833324802\/1435959739","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TresemmeMA","name":"Tresemm\u00e9 MA","id":3278661542,"id_str":"3278661542","indices":[0,11]},{"screen_name":"ecuavisa","name":"Ecuavisa","id":97513349,"id_str":"97513349","indices":[12,21]},{"screen_name":"encontactotv_ec","name":"En Contacto Ecuavisa","id":175736456,"id_str":"175736456","indices":[22,38]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080084657"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097871572992,"id_str":"663728097871572992","text":"RT @midukiworld: \u30bb\u30c3\u30af\u30b9\u304c\u3082\u305f\u3089\u3059\uff17\u3064\u306e\u52b9\u679c\u3089\u3057\u3044\u304b\u3089\u307f\u3093\u306a\u30bb\u30c3\u30af\u30b9\u3057\u3088\u3046\u306d\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e https:\/\/t.co\/dM9OGIvsXU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3072082285,"id_str":"3072082285","name":"\u4f50\u3005\u6728\u8000","screen_name":"Q0bY3pYSyo9RtfK","location":"\u5c90\u961c\u770c \u5c90\u961c\u5e02","url":null,"description":"\u5c90\u5927\u9644\u5c5e\u261e\u261e\u261e\u5c90\u961c\u8056\u5fb3\u3001\u9ad8\u68211\u5e74\u751f\u301c\u3001\u9678\u4e0a\u7af6\u6280\u90e8\u3001\u77ed\u8ddd\u96e2\u3084\u3063\u3066\u307e\u3059100.PB.10.93.200. PB.21.93\uff14\u7d99.41.52\u3059\u3079\u3066\u306f\u4e8c\u5e74\u5f8c\u306e\u305f\u3081\u306b \u30a4\u30f3\u30bf\u30fc\u30cf\u30a4\u306e\u30d5\u30a1\u30a4\u30ca\u30ea\u30b9\u30c8\u306b\u306a\u308b","protected":false,"verified":false,"followers_count":500,"friends_count":401,"listed_count":2,"favourites_count":1816,"statuses_count":5063,"created_at":"Tue Mar 10 22:55:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663495869853884416\/nJLztzJw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663495869853884416\/nJLztzJw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3072082285\/1446029985","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 14:21:07 +0000 2015","id":660099112398811136,"id_str":"660099112398811136","text":"\u30bb\u30c3\u30af\u30b9\u304c\u3082\u305f\u3089\u3059\uff17\u3064\u306e\u52b9\u679c\u3089\u3057\u3044\u304b\u3089\u307f\u3093\u306a\u30bb\u30c3\u30af\u30b9\u3057\u3088\u3046\u306d\u2934\ufe0e\u2934\ufe0e\u2934\ufe0e https:\/\/t.co\/dM9OGIvsXU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1219498296,"id_str":"1219498296","name":"MUGEN","screen_name":"midukiworld","location":null,"url":null,"description":"\u30e2\u30c7\u30eb\u517c\u30dc\u30fc\u30ab\u30eb\u306e\u5973\u5b50\u9ad8\u751f\u270c\ufe0e\u30d5\u30a9\u30ed\u30df","protected":false,"verified":false,"followers_count":1674,"friends_count":251,"listed_count":35,"favourites_count":5554,"statuses_count":9236,"created_at":"Mon Feb 25 18:31:06 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661160854889455616\/FfisojfC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661160854889455616\/FfisojfC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1219498296\/1445406088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15930,"favorite_count":13047,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660099099954278400,"id_str":"660099099954278400","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660099099954278400,"id_str":"660099099954278400","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":660099100147187717,"id_str":"660099100147187717","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolzUAAURZJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolzUAAURZJx.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":660099100302422017,"id_str":"660099100302422017","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkomYUsAEtQD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkomYUsAEtQD0.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":660099100478582784,"id_str":"660099100478582784","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkonCUsAAB3TH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkonCUsAAB3TH.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"midukiworld","name":"MUGEN","id":1219498296,"id_str":"1219498296","indices":[3,15]}],"symbols":[],"media":[{"id":660099099954278400,"id_str":"660099099954278400","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":660099112398811136,"source_status_id_str":"660099112398811136","source_user_id":1219498296,"source_user_id_str":"1219498296"}]},"extended_entities":{"media":[{"id":660099099954278400,"id_str":"660099099954278400","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolFUcAAu_jw.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":660099112398811136,"source_status_id_str":"660099112398811136","source_user_id":1219498296,"source_user_id_str":"1219498296"},{"id":660099100147187717,"id_str":"660099100147187717","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkolzUAAURZJx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkolzUAAURZJx.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":660099112398811136,"source_status_id_str":"660099112398811136","source_user_id":1219498296,"source_user_id_str":"1219498296"},{"id":660099100302422017,"id_str":"660099100302422017","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkomYUsAEtQD0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkomYUsAEtQD0.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":660099112398811136,"source_status_id_str":"660099112398811136","source_user_id":1219498296,"source_user_id_str":"1219498296"},{"id":660099100478582784,"id_str":"660099100478582784","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSkkonCUsAAB3TH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSkkonCUsAAB3TH.jpg","url":"https:\/\/t.co\/dM9OGIvsXU","display_url":"pic.twitter.com\/dM9OGIvsXU","expanded_url":"http:\/\/twitter.com\/midukiworld\/status\/660099112398811136\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":660099112398811136,"source_status_id_str":"660099112398811136","source_user_id":1219498296,"source_user_id_str":"1219498296"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084661"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097867530240,"id_str":"663728097867530240","text":"Smartest nigga wit school but cant survive out hea ... Smh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633471004,"id_str":"633471004","name":"MonteV3","screen_name":"ThaRealMonteeV3","location":"Soufside DC","url":"https:\/\/m.soundcloud.com\/trillionaireent\/","description":"#V3DaLabel|#TK$MG|PETRO\u26fd\ufe0fBOOMIN| Recording Artirst For Features & Bookings Contact : diamantewilhoit@gmail.com snapchat: Ayeemontee IG: SoufsidemonteV3","protected":false,"verified":false,"followers_count":1408,"friends_count":1813,"listed_count":2,"favourites_count":2728,"statuses_count":85521,"created_at":"Thu Jul 12 04:52:25 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/721859302\/b94e27f9760b9ef71371c18059c33e95.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/721859302\/b94e27f9760b9ef71371c18059c33e95.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663695633975480321\/vBSDi_FO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663695633975480321\/vBSDi_FO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633471004\/1446252891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084660"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097867403264,"id_str":"663728097867403264","text":"@Booyamakun \u4eca\u56de\u306e\u7bc4\u56f2\u5e73\u65b9\u5b8c\u6210\u4f7f\u3046\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728004032393216,"in_reply_to_status_id_str":"663728004032393216","in_reply_to_user_id":845107795,"in_reply_to_user_id_str":"845107795","in_reply_to_screen_name":"Booyamakun","user":{"id":2371723333,"id_str":"2371723333","name":"\u26a1\u5b88\u5c4b\u7fd4\u751f\u26a1","screen_name":"smshouta2","location":"\u6700\u5bc4\u308a\u306f\u6b66\u8535\u5c0f\u6749","url":null,"description":"\u6cd5\u653f\u4e8c\u9ad8\/\u30e9\u30b0\u30d3\u30fc\u90e8\/\u30b5\u30a4\u30b5\u30a4\/\u4e09\u68ee\u3059\u305a\u3053\/\u6e05\u7adc\u4eba25\u53ef\u6069\u63a8\u3057\/\u3067\u3093\u3071\u7d44\u306d\u3080\u63a8\u3057\/\u3067\u3093\u3071\u3068\u3046\/ \u30ec\u30a4\u30e4\u30fc\u3055\u3093 \u7b49\u3005\u529b\u4fdd\u80b2\u5712\u2192\u897f\u4e38\u5b50\u2192\u6cd5\u653f\u4e8c\u4e2d\u2192\u6cd5\u653f\u4e8c\u9ad8 @dempa_ri_night\u2190\u30ea\u30a2\u53cb\u57fa\u672c\u30d6\u30ed\u30c3\u30af","protected":false,"verified":false,"followers_count":364,"friends_count":707,"listed_count":1,"favourites_count":19291,"statuses_count":9624,"created_at":"Tue Mar 04 10:26:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662771624375021568\/sivelqjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662771624375021568\/sivelqjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2371723333\/1443803514","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Booyamakun","name":"\u3076\u30fc\u3084\u307e\u541b@\u795e\u63a8\u3057\u3071\u308b\u308b","id":845107795,"id_str":"845107795","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084660"} +{"delete":{"status":{"id":660272255612485632,"id_str":"660272255612485632","user_id":2171676775,"user_id_str":"2171676775"},"timestamp_ms":"1447080084770"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097871564800,"id_str":"663728097871564800","text":"::*\u2019\u309c::* z2k\n\u4eca\u306f\u604b\u3063\u3066\u611f\u3058\u3058\u3083\u306a\u3044\u3093\u3067\u3001\u30bb\u30d5\u30ec\u52df\u96c6\u3057\u3066\u307e\u3059\u3002 #\u30bb\u30c3\u30af\u30b9","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278652108,"id_str":"3278652108","name":"\u96e8\u5bae \u83dc\u3005\u7f8e","screen_name":"amamiya_n_a8t","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":138,"friends_count":1835,"listed_count":1,"favourites_count":0,"statuses_count":20855,"created_at":"Mon Jul 13 16:26:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30bb\u30c3\u30af\u30b9","indices":[38,43]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084661"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097892528128,"id_str":"663728097892528128","text":"RT @1y1u1i0197: #\u3053\u306e\u7537\u306e\u5b50\u77e5\u3063\u3066\u308b\u4eba\u30671000RT\u76ee\u6307\u3059 https:\/\/t.co\/AUhohhAJ52","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2468962963,"id_str":"2468962963","name":"\u904a\u99ac\u714c","screen_name":"shio_miku_ren","location":null,"url":null,"description":"\u30a2\u30cb\u30e1\u30f2\u30bf\u306e\u8150\u5973\u5b50\u3067\u3059((\u0e51\u2727\ua20a\u2727\u0e51))\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\/\u304a\u305d\u307e\u3064\u3055\u3093\/\u9280\u9b42\/\u3046\u305f\u30d7\u30ea\/Free!\/\u9ed2\u30d0\u30b9\/\u9032\u6483\/\u6771\u4eac\u55b0\u7a2e\/\u30dc\u30ab\u30ed\/\u5200\u5263\u4e71\u821e \u6570\u5b57\u677e\u5c0a\u3044\u203c\ufe0e\u203c\ufe0e","protected":false,"verified":false,"followers_count":1761,"friends_count":2011,"listed_count":15,"favourites_count":313,"statuses_count":4827,"created_at":"Tue Apr 29 08:13:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640865338511351808\/-XkhkYq7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640865338511351808\/-XkhkYq7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2468962963\/1441629178","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 11:57:25 +0000 2015","id":662962054865686528,"id_str":"662962054865686528","text":"#\u3053\u306e\u7537\u306e\u5b50\u77e5\u3063\u3066\u308b\u4eba\u30671000RT\u76ee\u6307\u3059 https:\/\/t.co\/AUhohhAJ52","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3095900244,"id_str":"3095900244","name":"\u304f\u3059\u304f\u3059\u5927\u660e\u795e \u30bf\u30eb\u30c8","screen_name":"1y1u1i0197","location":"\u30c8\u30a4\u30ec( \u00b4_\u309d`)-\u0437","url":null,"description":"\u30e9\u30d6\u30e9\u30a4\u30d6\u2661\u306e\u3093\u305f\u3093\/\u304a\u305d\u677e\u3055\u3093\u2661\u5341\u56db\u677e\/\u30ef\u30f3\u30d1\u30f3\/\u3054\u3061\u3046\u3055\/\u6afb\u5b50\u3055\u3093\/\u5eb6\u6c11\u30b5\u30f3\u30d7\u30eb\/K\/AAA\/\u30b9\u30af\u30d5\u30a7\u30b9190\u2191*\u7121\u8a00\u5931\u793c\u3057\u307e\u3059 \u51fa\u623b\u308a\u3057\u305f\u8da3\u5473\u57a2\u3067\u3059","protected":false,"verified":false,"followers_count":2626,"friends_count":2411,"listed_count":14,"favourites_count":2322,"statuses_count":1506,"created_at":"Wed Mar 18 09:31:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661593790277259264\/ir-YA7Rt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661593790277259264\/ir-YA7Rt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3095900244\/1446569689","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1063,"favorite_count":566,"entities":{"hashtags":[{"text":"\u3053\u306e\u7537\u306e\u5b50\u77e5\u3063\u3066\u308b\u4eba\u30671000RT\u76ee\u6307\u3059","indices":[0,21]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662962048473563136,"id_str":"662962048473563136","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","url":"https:\/\/t.co\/AUhohhAJ52","display_url":"pic.twitter.com\/AUhohhAJ52","expanded_url":"http:\/\/twitter.com\/1y1u1i0197\/status\/662962054865686528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":700,"h":700,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662962048473563136,"id_str":"662962048473563136","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","url":"https:\/\/t.co\/AUhohhAJ52","display_url":"pic.twitter.com\/AUhohhAJ52","expanded_url":"http:\/\/twitter.com\/1y1u1i0197\/status\/662962054865686528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":700,"h":700,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e\u7537\u306e\u5b50\u77e5\u3063\u3066\u308b\u4eba\u30671000RT\u76ee\u6307\u3059","indices":[16,37]}],"urls":[],"user_mentions":[{"screen_name":"1y1u1i0197","name":"\u304f\u3059\u304f\u3059\u5927\u660e\u795e \u30bf\u30eb\u30c8","id":3095900244,"id_str":"3095900244","indices":[3,14]}],"symbols":[],"media":[{"id":662962048473563136,"id_str":"662962048473563136","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","url":"https:\/\/t.co\/AUhohhAJ52","display_url":"pic.twitter.com\/AUhohhAJ52","expanded_url":"http:\/\/twitter.com\/1y1u1i0197\/status\/662962054865686528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":700,"h":700,"resize":"fit"}},"source_status_id":662962054865686528,"source_status_id_str":"662962054865686528","source_user_id":3095900244,"source_user_id_str":"3095900244"}]},"extended_entities":{"media":[{"id":662962048473563136,"id_str":"662962048473563136","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTNQeHbVAAAfGnq.jpg","url":"https:\/\/t.co\/AUhohhAJ52","display_url":"pic.twitter.com\/AUhohhAJ52","expanded_url":"http:\/\/twitter.com\/1y1u1i0197\/status\/662962054865686528\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":700,"h":700,"resize":"fit"}},"source_status_id":662962054865686528,"source_status_id_str":"662962054865686528","source_user_id":3095900244,"source_user_id_str":"3095900244"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080084666"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097888350208,"id_str":"663728097888350208","text":"@grow_up815 \n\u3086\u308a\u3059\u3093\u3061\u3083\u3093\u3063\u3066\u547c\u3073\u307e\u3059\uff01\n\u3042\u3068\u3088\u304b\u3063\u305f\u3089\u30bf\u30e1\u306b\u3057\u307e\u305b\u3093\u304b\uff1f\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661553679363739649,"in_reply_to_status_id_str":"661553679363739649","in_reply_to_user_id":2332728002,"in_reply_to_user_id_str":"2332728002","in_reply_to_screen_name":"grow_up815","user":{"id":3168793278,"id_str":"3168793278","name":"\u308a\u3053@\u3048\u3073\u3060\u3093","screen_name":"_riko_milk__","location":null,"url":null,"description":"\u4e2d3\u53d7\u9a13\u751f\/00line\/\u745e\u751f\u592a\u667a\u4e16\u4ee3\/\u8d85\u7279\u6025\u2192\u30bf\u30af\u3061\u3083\u3093\u3001\u30ab\u30a4\u304f\u3093\/M!LK\u2192\u4f50\u91ce\u304d\u3085\u3093 MAGiC BOYZ\u2192\u30de\u30d2\u30ed\u304f\u3093\/\u3055\u304f\u3089\u3057\u3081\u3058\u2192\u5f6a\u6211\u304f\u3093\/next\u21925\/4 M!LK Zepp Diver City Tokyo","protected":false,"verified":false,"followers_count":674,"friends_count":1458,"listed_count":1,"favourites_count":61,"statuses_count":1013,"created_at":"Thu Apr 23 14:25:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653390420215332864\/l-kvA4JH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653390420215332864\/l-kvA4JH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3168793278\/1444574592","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"grow_up815","name":"\u3086\u308a\u3059\u3093\u3002","id":2332728002,"id_str":"2332728002","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084665"} +{"delete":{"status":{"id":660764322985934848,"id_str":"660764322985934848","user_id":3037160526,"user_id_str":"3037160526"},"timestamp_ms":"1447080084809"}} +{"delete":{"status":{"id":660955172177231872,"id_str":"660955172177231872","user_id":2942890921,"user_id_str":"2942890921"},"timestamp_ms":"1447080084825"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097858990081,"id_str":"663728097858990081","text":"@maru1126naru \u308a\u3087\u3046\u304b\u3044\u3057\u307e\u3057\u305f\uff01\n\u3088\u304b\u3063\u305f\u3089\u30bf\u30e1\u306b\u3057\u307e\u305b\u3093\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663619087008829440,"in_reply_to_status_id_str":"663619087008829440","in_reply_to_user_id":2950075734,"in_reply_to_user_id_str":"2950075734","in_reply_to_screen_name":"maru1126naru","user":{"id":2778676626,"id_str":"2778676626","name":"\u307a \u3061 \u5b50","screen_name":"_____okr_8","location":"hokkaido (18)","url":null,"description":"Only you !","protected":false,"verified":false,"followers_count":55,"friends_count":41,"listed_count":9,"favourites_count":939,"statuses_count":2461,"created_at":"Fri Aug 29 16:12:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661345863759822848\/vTPp0h00_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661345863759822848\/vTPp0h00_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2778676626\/1431874485","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maru1126naru","name":"\u306a\u308b\u307f\u3093\u307f\u3093\u305c\u307f\u672d\u5e4c\u53c2\u6226","id":2950075734,"id_str":"2950075734","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084658"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097863139328,"id_str":"663728097863139328","text":"2mm\u304f\u3089\u3044\u30b8\u30e3\u30cb\u30aa\u30bf\u3057\u3066\u307e\u3059\u3002 https:\/\/t.co\/8YYULEaP03","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1675715996,"id_str":"1675715996","name":"\u4e2d\u91ce\u00b0\u306e\u30af\u30ea\u30dc\u30c3\u30c1\u8131\u51fa\u8a08\u753b","screen_name":"pori_nna","location":"\u3086\u308b\u304f\u3086\u308b\u304f","url":null,"description":"\u3074\u3063\u3074\u3063\u3074\u3063\u3074\u301c\uff01\uff01( @2ban1000ji ) \u3059\u304d\u304b\u3082\u306d(\uff1f)( '-') \u300c\u68ee\u306f\uff01\u751f\u304d\u3066\u3044\u308b\uff01\uff01\uff01\uff01\uff01\uff01\uff01\u300d","protected":false,"verified":false,"followers_count":375,"friends_count":344,"listed_count":6,"favourites_count":8773,"statuses_count":6303,"created_at":"Fri Aug 16 13:14:15 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650656606749757440\/inD0PBDb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650656606749757440\/inD0PBDb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1675715996\/1446650318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728089503916033,"id_str":"663728089503916033","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLkpUYAECpng.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLkpUYAECpng.jpg","url":"https:\/\/t.co\/8YYULEaP03","display_url":"pic.twitter.com\/8YYULEaP03","expanded_url":"http:\/\/twitter.com\/pori_nna\/status\/663728097863139328\/photo\/1","type":"photo","sizes":{"medium":{"w":511,"h":250,"resize":"fit"},"large":{"w":511,"h":250,"resize":"fit"},"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728089503916033,"id_str":"663728089503916033","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLkpUYAECpng.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLkpUYAECpng.jpg","url":"https:\/\/t.co\/8YYULEaP03","display_url":"pic.twitter.com\/8YYULEaP03","expanded_url":"http:\/\/twitter.com\/pori_nna\/status\/663728097863139328\/photo\/1","type":"photo","sizes":{"medium":{"w":511,"h":250,"resize":"fit"},"large":{"w":511,"h":250,"resize":"fit"},"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084659"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097884114945,"id_str":"663728097884114945","text":"#Vegetarians Endorse Ben Carson's Diet https:\/\/t.co\/vWQgHdxlnc https:\/\/t.co\/UW2CbOGm5N","source":"\u003ca href=\"http:\/\/donny4623.tumblr.com\" rel=\"nofollow\"\u003eDonny46231152\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3978539782,"id_str":"3978539782","name":"Donny Constance","screen_name":"Donny4623","location":null,"url":null,"description":"Pop culture fanatic \u2736 Love promoting authors \u2736 Web junkie","protected":false,"verified":false,"followers_count":29,"friends_count":510,"listed_count":1,"favourites_count":2,"statuses_count":188,"created_at":"Sat Oct 17 09:24:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655313782835535872\/EsqIzmd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655313782835535872\/EsqIzmd__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Vegetarians","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/vWQgHdxlnc","expanded_url":"http:\/\/gorg.me\/sc6eh","display_url":"gorg.me\/sc6eh","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663728097695416320,"id_str":"663728097695416320","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDKUwAAO9AT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDKUwAAO9AT.jpg","url":"https:\/\/t.co\/UW2CbOGm5N","display_url":"pic.twitter.com\/UW2CbOGm5N","expanded_url":"http:\/\/twitter.com\/Donny4623\/status\/663728097884114945\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728097695416320,"id_str":"663728097695416320","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDKUwAAO9AT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDKUwAAO9AT.jpg","url":"https:\/\/t.co\/UW2CbOGm5N","display_url":"pic.twitter.com\/UW2CbOGm5N","expanded_url":"http:\/\/twitter.com\/Donny4623\/status\/663728097884114945\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080084664"} +{"delete":{"status":{"id":663712729946001408,"id_str":"663712729946001408","user_id":3172209236,"user_id_str":"3172209236"},"timestamp_ms":"1447080085031"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097859121152,"id_str":"663728097859121152","text":"independent Danny Kent wins Moto3 title: British rider ends 38-year wait for world championship and already has eye\u2026 https:\/\/t.co\/GJO4FKKhm5","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957645439,"id_str":"2957645439","name":"Hamrin_English","screen_name":"Hamrin_English","location":"M\u00fcnchen, Bayern","url":"http:\/\/english.hamrinnews.net","description":"Hamrin News","protected":false,"verified":false,"followers_count":14,"friends_count":40,"listed_count":5,"favourites_count":0,"statuses_count":19569,"created_at":"Sat Jan 03 01:24:10 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641964575219392513\/DLY4MvvK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641964575219392513\/DLY4MvvK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957645439\/1441891215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728097729056768,"id_str":"663728097729056768","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDSWEAAZnDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDSWEAAZnDI.jpg","url":"https:\/\/t.co\/GJO4FKKhm5","display_url":"pic.twitter.com\/GJO4FKKhm5","expanded_url":"http:\/\/twitter.com\/Hamrin_English\/status\/663728097859121152\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":488,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728097729056768,"id_str":"663728097729056768","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDSWEAAZnDI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDSWEAAZnDI.jpg","url":"https:\/\/t.co\/GJO4FKKhm5","display_url":"pic.twitter.com\/GJO4FKKhm5","expanded_url":"http:\/\/twitter.com\/Hamrin_English\/status\/663728097859121152\/photo\/1","type":"photo","sizes":{"large":{"w":650,"h":488,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080084658"} +{"delete":{"status":{"id":642235058129014784,"id_str":"642235058129014784","user_id":1624894368,"user_id_str":"1624894368"},"timestamp_ms":"1447080085087"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097871589376,"id_str":"663728097871589376","text":"@Jnkmrgenkai \u76e7\u6e9d\u6a4b\u4e8b\u4ef6\u304c\uff17\u6708\uff17\u65e5\u3002\u901a\u5dde\u4e8b\u4ef6\u304c\uff17\u6708\uff12\uff19\u65e5\u3002\u5317\u5e73\u5730\u533a\u306f\u5317\u4eac\u5e02\u3002\n\u8272\u5857\u3063\u305f\u3002\uff33\uff21\uff29\u3067\u30b0\u30ec\u30fc\u30b9\u30b1\u30fc\u30eb\u306b\u5909\u63db\u3057\u305f\u5143\u5199\u771f\u306e\u4e0a\u306b\u30aa\u30fc\u30d0\u30fc\u30ec\u30a4\u3067\n\u8272\u3092\u7f6e\u3051\u3070\u3044\u3044\u306e\u306d\u3002\u4eca\u307e\u3067\u9006\u306b\u3057\u3066\u305f\u3002\u3082\u3046\u5c11\u3057\u7df4\u7fd2\u3068\u5f53\u6642\u306e\u8cc7\u6599\u304c\u5fc5\u8981\u3002 https:\/\/t.co\/3Rs0SnnJju","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662763222273921024,"in_reply_to_status_id_str":"662763222273921024","in_reply_to_user_id":222604522,"in_reply_to_user_id_str":"222604522","in_reply_to_screen_name":"Jnkmrgenkai","user":{"id":121390647,"id_str":"121390647","name":"\u9ed2\u5375\uff08\u30b3\u30af\u30e9\u30f3\uff09","screen_name":"kokuran73","location":"\u9999\u5ddd\u770c\u9ad8\u677e\u5e02","url":"http:\/\/www.pixiv.net\/member.php?id=83530","description":"pixiv\u3067\uff33\uff33\u66f8\u3044\u305f\u308a\u3001\u305f\u307e\u306b\u7d75\u66f8\u3044\u305f\u308a\u3057\u3066\u307e\u3059\u3002\u57fa\u672c\u30a2\u30cb\u30e1\u30fb\u6620\u753b\u30fb\u30cb\u30e5\u30fc\u30b9\u611f\u60f3\u3092\u3064\u3076\u3084\u3044\u3066\u307e\u3059\u3002\r\nhttp:\/\/twilog.org\/kokuran73","protected":false,"verified":false,"followers_count":621,"friends_count":430,"listed_count":17,"favourites_count":1480,"statuses_count":22468,"created_at":"Tue Mar 09 10:34:22 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/718855656\/bc2d73554e72908df4adadfa160a9a59.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/718855656\/bc2d73554e72908df4adadfa160a9a59.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639084266400296960\/yb7DqLaB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639084266400296960\/yb7DqLaB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121390647\/1407833236","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jnkmrgenkai","name":"JyojiNakamura","id":222604522,"id_str":"222604522","indices":[0,12]}],"symbols":[],"media":[{"id":663728095946366976,"id_str":"663728095946366976","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL8pUYAAuKq7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL8pUYAAuKq7.png","url":"https:\/\/t.co\/3Rs0SnnJju","display_url":"pic.twitter.com\/3Rs0SnnJju","expanded_url":"http:\/\/twitter.com\/kokuran73\/status\/663728097871589376\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"large":{"w":650,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728095946366976,"id_str":"663728095946366976","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL8pUYAAuKq7.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL8pUYAAuKq7.png","url":"https:\/\/t.co\/3Rs0SnnJju","display_url":"pic.twitter.com\/3Rs0SnnJju","expanded_url":"http:\/\/twitter.com\/kokuran73\/status\/663728097871589376\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"large":{"w":650,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084661"} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097859104768,"id_str":"663728097859104768","text":"EGBjZXUq \u00c1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2050000659,"id_str":"2050000659","name":"cas_2050000659","screen_name":"cas_2050000659","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":15,"favourites_count":0,"statuses_count":120030,"created_at":"Thu Oct 23 18:34:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"withheld_in_countries":["XZ"],"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hu","timestamp_ms":"1447080084658"} +{"delete":{"status":{"id":612842164192591872,"id_str":"612842164192591872","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080085257"}} +{"delete":{"status":{"id":493013851713982464,"id_str":"493013851713982464","user_id":2211690474,"user_id_str":"2211690474"},"timestamp_ms":"1447080085275"}} +{"delete":{"status":{"id":633978184824844288,"id_str":"633978184824844288","user_id":2419059662,"user_id_str":"2419059662"},"timestamp_ms":"1447080085406"}} +{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728097879941120,"id_str":"663728097879941120","text":"twitter\u3067\u898b\u3064\u3051\u305f\u53ef\u611b\u3044\u5973\u306e\u5b50\u306bDM\u3092\u9001\u308d\u3046\u304b\u8ff7\u3046\u540c\u5ba4\u5143\u6a2a\u7db1\u671d\u9752\u9f8d https:\/\/t.co\/gD2XAxlbJg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2853134281,"id_str":"2853134281","name":"\u5cf6 \u6210\u6597","screen_name":"naritoshima11","location":"\u304b\u308f\u3079\u3063\u3061\u263a\ufe0f","url":null,"description":"FC.Avenidasol\u2192\u56fd\u7acb\u9ce5\u7fbd\u5546\u8239\u822a\u6d77\u79d13\u5e74\u30b5\u30c3\u30ab\u30fc\u90e8\u4e3b\u5c06#14\/http:\/\/Instagram.com\/naritjur","protected":false,"verified":false,"followers_count":304,"friends_count":209,"listed_count":0,"favourites_count":537,"statuses_count":335,"created_at":"Sun Oct 12 11:48:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662601911523147776\/C-xE55NW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662601911523147776\/C-xE55NW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853134281\/1447075898","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"f9aa6040f8ebc7b4","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f9aa6040f8ebc7b4.json","place_type":"city","name":"\u9ce5\u7fbd\u5e02","full_name":"\u4e09\u91cd\u770c \u9ce5\u7fbd\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[136.789073,34.375465],[136.789073,34.551387],[136.988052,34.551387],[136.988052,34.375465]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727824654569472,"id_str":"663727824654569472","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727824654569472\/pu\/img\/fPvZ4BZAkSrgkyf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727824654569472\/pu\/img\/fPvZ4BZAkSrgkyf_.jpg","url":"https:\/\/t.co\/gD2XAxlbJg","display_url":"pic.twitter.com\/gD2XAxlbJg","expanded_url":"http:\/\/twitter.com\/naritoshima11\/status\/663728097879941120\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727824654569472,"id_str":"663727824654569472","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727824654569472\/pu\/img\/fPvZ4BZAkSrgkyf_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727824654569472\/pu\/img\/fPvZ4BZAkSrgkyf_.jpg","url":"https:\/\/t.co\/gD2XAxlbJg","display_url":"pic.twitter.com\/gD2XAxlbJg","expanded_url":"http:\/\/twitter.com\/naritoshima11\/status\/663728097879941120\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":20020,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/pl\/tYM6dmBzh9_8WgrH.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/vid\/180x320\/OPTMEdg-RFjp12zi.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/vid\/360x640\/9bwVCNb7PivQiNzr.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/vid\/360x640\/9bwVCNb7PivQiNzr.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/vid\/720x1280\/HyJrAxQLbIJy7F0o.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727824654569472\/pu\/pl\/tYM6dmBzh9_8WgrH.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080084663"} +{"delete":{"status":{"id":496288336458178560,"id_str":"496288336458178560","user_id":2211690474,"user_id_str":"2211690474"},"timestamp_ms":"1447080085462"}} +{"delete":{"status":{"id":662418065754226688,"id_str":"662418065754226688","user_id":2853709736,"user_id_str":"2853709736"},"timestamp_ms":"1447080085521"}} +{"delete":{"status":{"id":578185657878622208,"id_str":"578185657878622208","user_id":2436879980,"user_id_str":"2436879980"},"timestamp_ms":"1447080085624"}} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102061797376,"id_str":"663728102061797376","text":"Tirei CSA com um Parab\u00e9ns na reda\u00e7\u00e3o, mas olha s\u00f3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405175788,"id_str":"405175788","name":"Cassiane","screen_name":"klvesk","location":"Rio Grande do Sul, Brasil","url":"https:\/\/instagram.com\/kalvesk\/","description":"Daqui at\u00e9 a eternidade. Josu\u00e9 \u2665","protected":false,"verified":false,"followers_count":575,"friends_count":138,"listed_count":1,"favourites_count":137,"statuses_count":67055,"created_at":"Fri Nov 04 23:34:37 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638544326331641857\/lv2NMIGV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638544326331641857\/lv2NMIGV.jpg","profile_background_tile":true,"profile_link_color":"992233","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660540780516401152\/w9KP85Up_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660540780516401152\/w9KP85Up_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405175788\/1446327989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d552d3e64a8352fa","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d552d3e64a8352fa.json","place_type":"city","name":"Lajeado","full_name":"Lajeado, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-52.126876,-29.495819],[-52.126876,-29.398751],[-51.919169,-29.398751],[-51.919169,-29.495819]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080085660"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049243136,"id_str":"663728102049243136","text":"RT @xjnialler: Io:\"Per Natale voglio un unicorno\" \nBabbo Natale:\"Sii realista\"\nIo:\"Allora voglio un ragazzo\"\nBabbo Natale:\"Di che colore vu\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389101223,"id_str":"3389101223","name":"_allyouneedisabook_","screen_name":"_hug_me_Payno_","location":"Sicilia, Italia","url":null,"description":"Quando la gente alza l'indice per giudicare tu alza il medio per ringraziare ~Louis Tomlinson. \nDirectioner.\n~Zquad~\n\u2764Baby I'm perfect for you\u2764","protected":false,"verified":false,"followers_count":396,"friends_count":691,"listed_count":2,"favourites_count":5866,"statuses_count":13151,"created_at":"Thu Jul 23 12:21:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389101223\/1446376744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:03 +0000 2015","id":663728010424672257,"id_str":"663728010424672257","text":"Io:\"Per Natale voglio un unicorno\" \nBabbo Natale:\"Sii realista\"\nIo:\"Allora voglio un ragazzo\"\nBabbo Natale:\"Di che colore vuoi l'unicorno?\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":878745858,"id_str":"878745858","name":"Zia Marti","screen_name":"xjnialler","location":"London","url":null,"description":"sono fatta della stessa sostanza della sfiga [2906] \/ snapchat: itsmartinaxj","protected":false,"verified":false,"followers_count":23441,"friends_count":6844,"listed_count":28,"favourites_count":11845,"statuses_count":32922,"created_at":"Sat Oct 13 21:40:23 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434759217212182528\/iN4OjuZ-.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434759217212182528\/iN4OjuZ-.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661544180498472960\/KnhUF1pL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661544180498472960\/KnhUF1pL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878745858\/1446559397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xjnialler","name":"Zia Marti","id":878745858,"id_str":"878745858","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102066008064,"id_str":"663728102066008064","text":"https:\/\/t.co\/Ray8ml04eK... https:\/\/t.co\/VcX7HdD1TH","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1704899358,"id_str":"1704899358","name":"Candia News - \u039a\u03c1\u03ae\u03c4\u03b7","screen_name":"Candia_News","location":"www.candianews.gr","url":"http:\/\/www.facebook.com\/candianews.gr?fref=ts","description":"\u0397 \u03c6\u03c9\u03bd\u03ae \u03c4\u03b7\u03c2 \u03b4\u03b7\u03bc\u03bf\u03c3\u03b9\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03b9\u03bd\u03c9\u03bd\u03af\u03b1\u03c2!","protected":false,"verified":false,"followers_count":4754,"friends_count":4983,"listed_count":36,"favourites_count":29,"statuses_count":87557,"created_at":"Tue Aug 27 15:15:03 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000062103278\/25b594706ce03ae6324143874d3456bd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000062103278\/25b594706ce03ae6324143874d3456bd.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000379582749\/f21d7e51f25c07c7db8dc1906e00e510_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000379582749\/f21d7e51f25c07c7db8dc1906e00e510_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1704899358\/1412414506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ray8ml04eK","expanded_url":"http:\/\/www.candianews.gr\/2015\/11\/09\/87chroni-epeplixe-2-kopeles-pou-den-plirosan-isitirio-sto-leoforio-ke-ekines-t","display_url":"candianews.gr\/2015\/11\/09\/87c\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/VcX7HdD1TH","expanded_url":"http:\/\/fb.me\/3O7tccV09","display_url":"fb.me\/3O7tccV09","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080085661"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102082744320,"id_str":"663728102082744320","text":"RT @ot5throwback: last group hug of otra '15 https:\/\/t.co\/9SKm8xtt1C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3431335258,"id_str":"3431335258","name":"La Mazza di Harry","screen_name":"HugMeHaroldxx","location":"Troppo lontana dal mio idolo","url":null,"description":"-It'd just be amazing to be remembered like the boy-band at my time, one direction, they just had fun. They're just normal guys, but terrible dancer. - Tommo","protected":false,"verified":false,"followers_count":1050,"friends_count":1566,"listed_count":0,"favourites_count":8692,"statuses_count":11793,"created_at":"Wed Aug 19 09:38:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663425382780112896\/cuyZ4wOB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663425382780112896\/cuyZ4wOB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3431335258\/1447007911","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 18:04:18 +0000 2015","id":661604833212919808,"id_str":"661604833212919808","text":"last group hug of otra '15 https:\/\/t.co\/9SKm8xtt1C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":717433131,"id_str":"717433131","name":"rt if you remember","screen_name":"ot5throwback","location":"turn on notifs \u2728","url":null,"description":"some ot5 memories to hopefully remind you of the good times xx","protected":false,"verified":false,"followers_count":2263,"friends_count":200,"listed_count":4,"favourites_count":44,"statuses_count":71,"created_at":"Wed Oct 16 11:13:42 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661995664075849728\/F47lAhu__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661995664075849728\/F47lAhu__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/717433131\/1446664000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":254,"favorite_count":198,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661604786685382656,"id_str":"661604786685382656","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661604786685382656,"id_str":"661604786685382656","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}},{"id":661604786790203392,"id_str":"661604786790203392","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFpUAAAB5F2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFpUAAAB5F2.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":357,"resize":"fit"},"large":{"w":974,"h":1024,"resize":"fit"},"medium":{"w":600,"h":630,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ot5throwback","name":"rt if you remember","id":717433131,"id_str":"717433131","indices":[3,16]}],"symbols":[],"media":[{"id":661604786685382656,"id_str":"661604786685382656","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":661604833212919808,"source_status_id_str":"661604833212919808","source_user_id":717433131,"source_user_id_str":"717433131"}]},"extended_entities":{"media":[{"id":661604786685382656,"id_str":"661604786685382656","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFQUkAAyrM0.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":661604833212919808,"source_status_id_str":"661604833212919808","source_user_id":717433131,"source_user_id_str":"717433131"},{"id":661604786790203392,"id_str":"661604786790203392","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5-DFpUAAAB5F2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5-DFpUAAAB5F2.jpg","url":"https:\/\/t.co\/9SKm8xtt1C","display_url":"pic.twitter.com\/9SKm8xtt1C","expanded_url":"http:\/\/twitter.com\/ot5throwback\/status\/661604833212919808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":357,"resize":"fit"},"large":{"w":974,"h":1024,"resize":"fit"},"medium":{"w":600,"h":630,"resize":"fit"}},"source_status_id":661604833212919808,"source_status_id_str":"661604833212919808","source_user_id":717433131,"source_user_id_str":"717433131"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085665"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049214465,"id_str":"663728102049214465","text":"RT @SexualGif: mood \ud83d\udc45 https:\/\/t.co\/kvZ5uIOfXZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2438516875,"id_str":"2438516875","name":"S.","screen_name":"solenebsl","location":"Paris","url":null,"description":"\u264a\ufe0f","protected":false,"verified":false,"followers_count":141,"friends_count":110,"listed_count":1,"favourites_count":890,"statuses_count":6080,"created_at":"Fri Apr 11 13:20:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460396004257181696\/vIFcd6Xc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460396004257181696\/vIFcd6Xc.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663095282628997120\/x37R-mz__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663095282628997120\/x37R-mz__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2438516875\/1444421692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:34:44 +0000 2015","id":663590523035369472,"id_str":"663590523035369472","text":"mood \ud83d\udc45 https:\/\/t.co\/kvZ5uIOfXZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154048214,"id_str":"154048214","name":"Sexual Gifs","screen_name":"SexualGif","location":"Snapchat: SexSupply","url":null,"description":"Follow for sexual gifs & more. Mature content. *18+ advised* *we own no content posted* Follow @DailySexSupply for more.","protected":false,"verified":false,"followers_count":1349734,"friends_count":15,"listed_count":1530,"favourites_count":34518,"statuses_count":23156,"created_at":"Thu Jun 10 06:44:32 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539889638325096448\/fF9YJ1ip_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539889638325096448\/fF9YJ1ip_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154048214\/1403854053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":720,"favorite_count":2121,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655157009730265088,"id_str":"655157009730265088","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","url":"https:\/\/t.co\/kvZ5uIOfXZ","display_url":"pic.twitter.com\/kvZ5uIOfXZ","expanded_url":"http:\/\/twitter.com\/hispanicNhenny\/status\/655157029338796032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":655157029338796032,"source_status_id_str":"655157029338796032","source_user_id":230565470,"source_user_id_str":"230565470"}]},"extended_entities":{"media":[{"id":655157009730265088,"id_str":"655157009730265088","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","url":"https:\/\/t.co\/kvZ5uIOfXZ","display_url":"pic.twitter.com\/kvZ5uIOfXZ","expanded_url":"http:\/\/twitter.com\/hispanicNhenny\/status\/655157029338796032\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":655157029338796032,"source_status_id_str":"655157029338796032","source_user_id":230565470,"source_user_id_str":"230565470","video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CReV1EUUYAAySl5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SexualGif","name":"Sexual Gifs","id":154048214,"id_str":"154048214","indices":[3,13]}],"symbols":[],"media":[{"id":655157009730265088,"id_str":"655157009730265088","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","url":"https:\/\/t.co\/kvZ5uIOfXZ","display_url":"pic.twitter.com\/kvZ5uIOfXZ","expanded_url":"http:\/\/twitter.com\/hispanicNhenny\/status\/655157029338796032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":655157029338796032,"source_status_id_str":"655157029338796032","source_user_id":230565470,"source_user_id_str":"230565470"}]},"extended_entities":{"media":[{"id":655157009730265088,"id_str":"655157009730265088","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CReV1EUUYAAySl5.png","url":"https:\/\/t.co\/kvZ5uIOfXZ","display_url":"pic.twitter.com\/kvZ5uIOfXZ","expanded_url":"http:\/\/twitter.com\/hispanicNhenny\/status\/655157029338796032\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":500,"resize":"fit"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":655157029338796032,"source_status_id_str":"655157029338796032","source_user_id":230565470,"source_user_id_str":"230565470","video_info":{"aspect_ratio":[1,1],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CReV1EUUYAAySl5.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078550016,"id_str":"663728102078550016","text":"RT @uhcarola: Como sea seguiremos defendiendo y amando a nuestra Revoluci\u00f3n Bolivariana y Chavista @NicolasMaduro @rerchacin https:\/\/t.co\/\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3369255801,"id_str":"3369255801","name":"LEONARDO","screen_name":"leopolitico","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":189,"friends_count":324,"listed_count":0,"favourites_count":2,"statuses_count":2173,"created_at":"Fri Jul 10 14:38:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656094144662798336\/j0fairbE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656094144662798336\/j0fairbE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3369255801\/1437480831","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 01:11:02 +0000 2015","id":662799385445666816,"id_str":"662799385445666816","text":"Como sea seguiremos defendiendo y amando a nuestra Revoluci\u00f3n Bolivariana y Chavista @NicolasMaduro @rerchacin https:\/\/t.co\/ZFj7aaNVmu","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138145243,"id_str":"138145243","name":"Carola Martinez","screen_name":"uhcarola","location":"Pueblo Legislador","url":null,"description":"Leer y Escribir es Divertido\/Sociologa d l calle\/Brigada APC Hurtado Barrios\/Victoria Perfecta en l Asamblea Nacional \/L Patria q habita n mi es l Patria Grande","protected":false,"verified":false,"followers_count":7672,"friends_count":3872,"listed_count":29,"favourites_count":589,"statuses_count":9675,"created_at":"Wed Apr 28 19:05:27 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662443632583118848\/HNgWjcw1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662443632583118848\/HNgWjcw1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138145243\/1446986518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":660590705325273088,"quoted_status_id_str":"660590705325273088","quoted_status":{"created_at":"Sat Oct 31 22:54:31 +0000 2015","id":660590705325273088,"id_str":"660590705325273088","text":"Soldado soy del pueblo,ustedes son mi Jefe \"HRCF\" Comunidad Tierra de Gracia, Casa por Casa. https:\/\/t.co\/JHeet7VEm7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":395287692,"id_str":"395287692","name":"MIGDALIA HURTADO","screen_name":"MIGDALIAHURTAD1","location":"GU\u00c1RICO","url":null,"description":"Legisladora Vicepresidenta del CLEBG, Profesora, PSUV Gu\u00e1rico, GPPSB Gu\u00e1rico ,UnaMujer, @mleerescribir ,Guardiana de la Patria de Bol\u00edvar y Ch\u00e1vez.. Guayabal","protected":false,"verified":false,"followers_count":1944,"friends_count":1118,"listed_count":4,"favourites_count":1011,"statuses_count":20693,"created_at":"Fri Oct 21 12:47:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583003865462775808\/wjKRmE3h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583003865462775808\/wjKRmE3h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/395287692\/1414174212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660590445156691968,"id_str":"660590445156691968","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrjgomU8AA4Cq8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrjgomU8AA4Cq8.jpg","url":"https:\/\/t.co\/JHeet7VEm7","display_url":"pic.twitter.com\/JHeet7VEm7","expanded_url":"http:\/\/twitter.com\/MIGDALIAHURTAD1\/status\/660590705325273088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660590445156691968,"id_str":"660590445156691968","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrjgomU8AA4Cq8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrjgomU8AA4Cq8.jpg","url":"https:\/\/t.co\/JHeet7VEm7","display_url":"pic.twitter.com\/JHeet7VEm7","expanded_url":"http:\/\/twitter.com\/MIGDALIAHURTAD1\/status\/660590705325273088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}},{"id":660590521031634944,"id_str":"660590521031634944","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrjlDQUsAArzCB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrjlDQUsAArzCB.jpg","url":"https:\/\/t.co\/JHeet7VEm7","display_url":"pic.twitter.com\/JHeet7VEm7","expanded_url":"http:\/\/twitter.com\/MIGDALIAHURTAD1\/status\/660590705325273088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}},{"id":660590590921347072,"id_str":"660590590921347072","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrjpHnVEAAeBJD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrjpHnVEAAeBJD.jpg","url":"https:\/\/t.co\/JHeet7VEm7","display_url":"pic.twitter.com\/JHeet7VEm7","expanded_url":"http:\/\/twitter.com\/MIGDALIAHURTAD1\/status\/660590705325273088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}},{"id":660590676992589824,"id_str":"660590676992589824","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrjuIQUAAAkYsR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrjuIQUAAAkYsR.jpg","url":"https:\/\/t.co\/JHeet7VEm7","display_url":"pic.twitter.com\/JHeet7VEm7","expanded_url":"http:\/\/twitter.com\/MIGDALIAHURTAD1\/status\/660590705325273088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":614,"resize":"fit"},"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":93,"favorite_count":19,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZFj7aaNVmu","expanded_url":"https:\/\/twitter.com\/migdaliahurtad1\/status\/660590705325273088","display_url":"twitter.com\/migdaliahurtad\u2026","indices":[112,135]}],"user_mentions":[{"screen_name":"NicolasMaduro","name":"Nicol\u00e1s Maduro","id":1252764865,"id_str":"1252764865","indices":[85,99]},{"screen_name":"rerchacin","name":"R. Rodriguez Chacin","id":138164178,"id_str":"138164178","indices":[100,110]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZFj7aaNVmu","expanded_url":"https:\/\/twitter.com\/migdaliahurtad1\/status\/660590705325273088","display_url":"twitter.com\/migdaliahurtad\u2026","indices":[126,140]}],"user_mentions":[{"screen_name":"uhcarola","name":"Carola Martinez","id":138145243,"id_str":"138145243","indices":[3,12]},{"screen_name":"NicolasMaduro","name":"Nicol\u00e1s Maduro","id":1252764865,"id_str":"1252764865","indices":[99,113]},{"screen_name":"rerchacin","name":"R. Rodriguez Chacin","id":138164178,"id_str":"138164178","indices":[114,124]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102087000064,"id_str":"663728102087000064","text":"\u064a\u0627 \u0627\u0628\u0646 \u0622\u062f\u0645 \u0641\u0631\u062d \u0627\u0644\u062e\u0637\u064a\u0626\u0629 \u0627\u0644\u064a\u0648\u0645 \u0642\u0644\u064a\u0644 \u060c \u0648 \u062d\u0632\u0646\u0647\u0627 \u0641\u064a \u063a\u062f \u0637\u0648\u064a\u0644 \u060c \u0645\u0627 \u062f\u0627\u0645 \u0627\u0644\u0645\u0624\u0645\u0646 \u0641\u064a \u0646\u0648\u0631 \u0627\u0644\u062a\u0642\u0648\u0649 \u060c \u0641\u0647\u0648 \u064a\u0628\u0635\u0631 \u0637\u0631\u064a\u0642 \u0627\u0644\u0647\u062f\u0649 \u060c \u0641\u0625\u0630\u0627 \u0623\u0637\u0628\u0642 \u0638\u0644\u0627\u0645 \u0627\u0644\u0647\u0648\u0649 \u0639\u062f\u0645 \u0627\u0644\u0646\u0648\u0631","source":"\u003ca href=\"http:\/\/f2fh.ga2h.com\/my\/\" rel=\"nofollow\"\u003e\u0628\u0631\u0646\u0627\u0645\u062c \u0645\u062a\u0627\u0628\u0639\u0629 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":254751855,"id_str":"254751855","name":"\u0645\u0646 \u0643\u0644 \u0628\u062d\u0631 \u0642\u0637\u0631\u0629","screen_name":"No1_Tweet","location":"\u0643\u064f\u0644\u064f\u0651 \u0645\u064e\u0646\u0652 \u0639\u064e\u0644\u064e\u064a\u0652\u0647\u064e\u0627 \u0641\u0627\u0646\u064d\u0650 ","url":null,"description":"(( \u0644\u064e\u0627 \u0625\u0650\u0644\u064e\u0647\u064e \u0625\u0650\u0644\u064e\u0651\u0627 \u0627\u0644\u0644\u064e\u0651\u0647\u064f \u0648\u064e\u062d\u0652\u062f\u064e\u0647\u064f \u0644\u064e\u0627 \u0634\u064e\u0631\u0650\u064a\u0643\u064e \u0644\u064e\u0647\u064f\u060c \u0644\u064e\u0647\u064f \u0627\u0644\u0645\u064f\u0644\u0652\u0643\u064f \u0648\u064e\u0644\u064e\u0647\u064f \u0627\u0644\u062d\u064e\u0645\u0652\u062f\u064f \u0648\u064e\u0647\u064f\u0648\u064e \u0639\u064e\u0644\u064e\u0649 \u0643\u064f\u0644\u0650\u0651 \u0634\u064e\u064a\u0652\u0621\u064d \u0642\u064e\u062f\u0650\u064a\u0631\u064c ))","protected":false,"verified":false,"followers_count":2418,"friends_count":14,"listed_count":12,"favourites_count":2142,"statuses_count":389016,"created_at":"Sat Feb 19 23:03:49 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/344513261569732095\/53bb4ec98cad0d39abf7e2ce73e9a3a2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/344513261569732095\/53bb4ec98cad0d39abf7e2ce73e9a3a2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254751855\/1366999715","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053445632,"id_str":"663728102053445632","text":"Tarde gitana tarde..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400384828,"id_str":"400384828","name":"Angy","screen_name":"angela8e8","location":"Granada","url":null,"description":null,"protected":false,"verified":false,"followers_count":184,"friends_count":188,"listed_count":2,"favourites_count":506,"statuses_count":4139,"created_at":"Fri Oct 28 23:23:57 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/739012301\/01cc43f77db4d5cfcb6dbbee1b5984b7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/739012301\/01cc43f77db4d5cfcb6dbbee1b5984b7.jpeg","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661996709103308800\/1knvJFvT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661996709103308800\/1knvJFvT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400384828\/1419260792","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102066028544,"id_str":"663728102066028544","text":"RT @cupnacional: El #Parlament de Catalunya declara solemnement l\u2019inici del proc\u00e9s de creaci\u00f3 de l\u2019estat catal\u00e0 independent en forma de rep\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298410645,"id_str":"298410645","name":"Laura #Governem-nos*","screen_name":"lrafecas","location":"Pened\u00e8s-Pa\u00efsos Catalans","url":null,"description":null,"protected":false,"verified":false,"followers_count":719,"friends_count":1284,"listed_count":10,"favourites_count":242,"statuses_count":5130,"created_at":"Sat May 14 08:16:56 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645238271220523009\/OwTTHkRo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645238271220523009\/OwTTHkRo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298410645\/1447013712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:15:18 +0000 2015","id":663676229791440896,"id_str":"663676229791440896","text":"El #Parlament de Catalunya declara solemnement l\u2019inici del proc\u00e9s de creaci\u00f3 de l\u2019estat catal\u00e0 independent en forma de rep\u00fablica :-)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91796121,"id_str":"91796121","name":"CUP Pa\u00efsos Catalans","screen_name":"cupnacional","location":"Pa\u00efsos Catalans","url":"http:\/\/cup.cat\/","description":"Candidatura d'Unitat Popular http:\/\/www.facebook.com\/unitatpopular","protected":false,"verified":false,"followers_count":90918,"friends_count":3488,"listed_count":1116,"favourites_count":1524,"statuses_count":48078,"created_at":"Sun Nov 22 14:12:28 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530809890327904256\/R7otAGeH.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530809890327904256\/R7otAGeH.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663667441080377344\/lOqgKzU-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663667441080377344\/lOqgKzU-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91796121\/1447020960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1a27537478dd8e38","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1a27537478dd8e38.json","place_type":"city","name":"Barcelona","full_name":"Barcelona, Catalu\u00f1a","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[2.052477,41.319999],[2.052477,41.468266],[2.226122,41.468266],[2.226122,41.319999]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":490,"favorite_count":228,"entities":{"hashtags":[{"text":"Parlament","indices":[3,13]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Parlament","indices":[20,30]}],"urls":[],"user_mentions":[{"screen_name":"cupnacional","name":"CUP Pa\u00efsos Catalans","id":91796121,"id_str":"91796121","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080085661"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102061817856,"id_str":"663728102061817856","text":"@TIGORE1 \u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727276119453696,"in_reply_to_status_id_str":"663727276119453696","in_reply_to_user_id":457028407,"in_reply_to_user_id_str":"457028407","in_reply_to_screen_name":"TIGORE1","user":{"id":327803296,"id_str":"327803296","name":"\u0642\u0627\u0646\u0648\u0646\u064a \u0627\u062a\u062d\u0627\u062f\u064a#88","screen_name":"LorDode","location":"Kingdom of Saudi Arabia","url":null,"description":"\u0627\u0628\u0646 \u0645\u0643\u0629 \u0648\u0627\u0641\u062a\u062e\u0631 \u0628\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0648\u0627\u0639\u0634\u0642 \u0627\u0644\u0645\u064a\u0631\u0646\u063a\u064a oOo DOODE oOo","protected":false,"verified":false,"followers_count":1007,"friends_count":1180,"listed_count":5,"favourites_count":162,"statuses_count":24622,"created_at":"Sat Jul 02 05:23:22 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000068447749\/0315a5d216a7d3beaaa7944b38f63cd0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000068447749\/0315a5d216a7d3beaaa7944b38f63cd0.jpeg","profile_background_tile":true,"profile_link_color":"316CF5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632082017773973504\/gMKbDfMp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632082017773973504\/gMKbDfMp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327803296\/1439672580","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TIGORE1","name":"M\u00e4H\u00ebR","id":457028407,"id_str":"457028407","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080085660"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102061842432,"id_str":"663728102061842432","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/Thw4FFbJpr","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3980357778,"id_str":"3980357778","name":"Quentutan","screen_name":"quentutan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":1,"listed_count":3,"favourites_count":1,"statuses_count":23861,"created_at":"Thu Oct 22 13:14:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727613999976448,"quoted_status_id_str":"663727613999976448","quoted_status":{"created_at":"Mon Nov 09 14:39:29 +0000 2015","id":663727613999976448,"id_str":"663727613999976448","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/KeJbGQxouA","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727295539097600,"quoted_status_id_str":"663727295539097600","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/KeJbGQxouA","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727295539097600","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/Thw4FFbJpr","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727613999976448","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085660"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102074245120,"id_str":"663728102074245120","text":"\u3059\u3077\u3089\u3077\u3077\u3093\u3084\u308a\u305f\u3044\u306a\u30fc\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315258086,"id_str":"3315258086","name":"\u3042\u307e\u3064\u304b","screen_name":"_am2k","location":"\u304a\u5e03\u56e3","url":"http:\/\/xn--in-s93anbwgw0hojy8d8af3d88i.com","description":"\u2729\u02da\uff61\u22c6\u3042\u307e\u3064\u304b\u3068\u3082\u3084\u3067\u3059\uff01 \uff0f Skype\u597d\u304d \uff0f \u304a\u7d75\u63cf\u304d \uff0f \u767d\u732b \uff0f \u9ed2\u732b \uff0f \u30b9\u30af\u30b9\u30c8 \uff0f \u30c7\u30ec\u30b9\u30c6 \uff0f \u65e5\u5e38\u306e\u3053\u3068\u3082\u3064\u3076\u3084\u304d\u307e\u3059 \uff0f \u6c17\u306b\u306a\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u304d\u307e\u3059\u22c6\uff61\u02da\u2729","protected":false,"verified":false,"followers_count":113,"friends_count":111,"listed_count":6,"favourites_count":4139,"statuses_count":10347,"created_at":"Fri Aug 14 17:08:47 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634314328728997888\/3mXZpGNM.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634314328728997888\/3mXZpGNM.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661944641260879872\/juN-dULN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661944641260879872\/juN-dULN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315258086\/1441382714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085663"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049099776,"id_str":"663728102049099776","text":"\u30a4\u30b1\u30e1\u30f3\u30af\u30ba\u30c0\u30d3\u30c7\u30de\u30f3\u00d7\u304f\u305f\u3073\u308c\u305f\u4e2d\u5e74\u30d8\u30af\u30c8\u30fc\u30eb\u304a\u3058\u3055\u3093","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":213702424,"id_str":"213702424","name":"\u904e\u9178\u5316\u6c34\u7d20\u30b9\u30c8\u30ea\u30ad\u30cb\u30fc\u30cd","screen_name":"h2o2_178","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=283629","description":"\u767e\u5408\u3067\u597d\u304d\u306b\u66f8\u3044\u3066\u3044\u307e\u3059\u3002FateGO\u3084\u3063\u305f\u308a\u8266\u3053\u308c\u3068\u304b\u30e9\u30d6\u30e9\u30a4\u30d6\u3068\u304b\u3057\u3093\u3051\u3093!!\u66f8\u3044\u305f\u308a\u3002\u6587\u7ae0\u7cfb\u306e\u304a\u4ed5\u4e8b\u3042\u308c\u3070 ks2161030429112@gmail.com \u307e\u3067\u3054\u76f8\u8ac7\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":2332,"friends_count":147,"listed_count":148,"favourites_count":679,"statuses_count":18757,"created_at":"Tue Nov 09 15:48:29 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"008B8B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593802953384796160\/PGmq3jKj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593802953384796160\/PGmq3jKj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213702424\/1414332554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053388289,"id_str":"663728102053388289","text":"About to watch TROY again.. Finally found it. Was the baddest movie that year.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201175478,"id_str":"201175478","name":"Loftus-Cheek","screen_name":"Razaq_Bobo","location":"Jos to LasGiDi","url":"http:\/\/badman.com","description":"#ChelseaFC | IG: razaqsneh | snapchat: ra_zaq","protected":false,"verified":false,"followers_count":809,"friends_count":439,"listed_count":9,"favourites_count":74,"statuses_count":52016,"created_at":"Mon Oct 11 07:49:31 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649585958791286784\/4IImFVrS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649585958791286784\/4IImFVrS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201175478\/1432488984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078595072,"id_str":"663728102078595072","text":"RT @brisapalominoo: Que mal me siento","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1609577120,"id_str":"1609577120","name":"Alejandro D\u00edaz.","screen_name":"AleeDiaz123","location":"Mor\u00f3n, Argentina","url":null,"description":"\/\/ 1523421519 \/\/ CAVS","protected":false,"verified":false,"followers_count":622,"friends_count":124,"listed_count":0,"favourites_count":679,"statuses_count":1722,"created_at":"Sun Jul 21 02:59:04 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661507293700358144\/AK_0WUYB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661507293700358144\/AK_0WUYB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1609577120\/1425439306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:13 +0000 2015","id":663726540220465152,"id_str":"663726540220465152","text":"Que mal me siento","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2658643345,"id_str":"2658643345","name":"Forrita.","screen_name":"brisapalominoo","location":"Mor\u00f3n, Argentina","url":"https:\/\/www.facebook.com\/brisaderodolfo","description":"1154684823 ||Pole dance|| manuel dorrego ||boca juniors ||Futbol ||","protected":false,"verified":false,"followers_count":435,"friends_count":305,"listed_count":0,"favourites_count":2796,"statuses_count":14286,"created_at":"Sat Jul 19 04:18:19 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659958908547649536\/gjoDSJcP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659958908547649536\/gjoDSJcP.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663587524619722752\/0WfFry-E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663587524619722752\/0WfFry-E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2658643345\/1446182783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"brisapalominoo","name":"Forrita.","id":2658643345,"id_str":"2658643345","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102082748418,"id_str":"663728102082748418","text":"RT @quotteseries: http:\/\/t.co\/UWLKLwYT62","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270076135,"id_str":"2270076135","name":"sunshine","screen_name":"yesmalik_","location":"eu gosto \u00e9 de rola","url":"https:\/\/twitter.com\/yesmalik_\/status\/556304676745125888","description":"s\u00f3 segue se quiser v\u00ea merda","protected":false,"verified":false,"followers_count":4878,"friends_count":3291,"listed_count":7,"favourites_count":5414,"statuses_count":51355,"created_at":"Thu Jan 09 04:12:49 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576057701022625794\/WI56o-qX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576057701022625794\/WI56o-qX.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662968990499799040\/Sg4IwSyV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662968990499799040\/Sg4IwSyV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270076135\/1446582318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jul 21 18:57:27 +0000 2015","id":623567482947702785,"id_str":"623567482947702785","text":"http:\/\/t.co\/UWLKLwYT62","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3234038443,"id_str":"3234038443","name":"s\u00e9ries","screen_name":"quotteseries","location":null,"url":"http:\/\/ask.fm\/myscreenserie","description":"Aqui voc\u00ea encontra cenas das suas s\u00e9ries e filmes favoritos, os pedidos est\u00e3o abertos na ask.","protected":false,"verified":false,"followers_count":118,"friends_count":103,"listed_count":0,"favourites_count":10,"statuses_count":68,"created_at":"Tue Jun 02 19:07:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662346832887095300\/hyWEqlsl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662346832887095300\/hyWEqlsl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3234038443\/1446750835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":623567473175040002,"id_str":"623567473175040002","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","url":"http:\/\/t.co\/UWLKLwYT62","display_url":"pic.twitter.com\/UWLKLwYT62","expanded_url":"http:\/\/twitter.com\/quotteseries\/status\/623567482947702785\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":623567473175040002,"id_str":"623567473175040002","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","url":"http:\/\/t.co\/UWLKLwYT62","display_url":"pic.twitter.com\/UWLKLwYT62","expanded_url":"http:\/\/twitter.com\/quotteseries\/status\/623567482947702785\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"quotteseries","name":"s\u00e9ries","id":3234038443,"id_str":"3234038443","indices":[3,16]}],"symbols":[],"media":[{"id":623567473175040002,"id_str":"623567473175040002","indices":[18,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","url":"http:\/\/t.co\/UWLKLwYT62","display_url":"pic.twitter.com\/UWLKLwYT62","expanded_url":"http:\/\/twitter.com\/quotteseries\/status\/623567482947702785\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"}},"source_status_id":623567482947702785,"source_status_id_str":"623567482947702785","source_user_id":3234038443,"source_user_id_str":"3234038443"}]},"extended_entities":{"media":[{"id":623567473175040002,"id_str":"623567473175040002","indices":[18,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKdbUCQWEAIZ80x.jpg","url":"http:\/\/t.co\/UWLKLwYT62","display_url":"pic.twitter.com\/UWLKLwYT62","expanded_url":"http:\/\/twitter.com\/quotteseries\/status\/623567482947702785\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"}},"source_status_id":623567482947702785,"source_status_id_str":"623567482947702785","source_user_id":3234038443,"source_user_id_str":"3234038443"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080085665"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086938624,"id_str":"663728102086938624","text":"#sismo #M\u00e9rida 9:04 (HLV) 09\/11\/2015, Mag. 4.1 Mw, a 30 Km sureste El Vigia (8.472 N,71.411 W), prof. 5.0 Km @funvisis #FF @adeladelfosb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43902552,"id_str":"43902552","name":"GustavoDavilaPuente","screen_name":"gdavilapuente","location":"Venezuela","url":"http:\/\/www.voices.com\/people\/DavilaPuente","description":"Comunicador digital in constant craving and update. No tengo PIN ni PONG. Voice Over talent. Locutor. Voz #ElSrChiguire Te lo Cuento. D.J. (jubilao). #Radio","protected":false,"verified":false,"followers_count":582,"friends_count":1465,"listed_count":13,"favourites_count":148,"statuses_count":3565,"created_at":"Mon Jun 01 15:23:47 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"BFBDB8","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506979557\/GDP06redugif_normal.GIF","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506979557\/GDP06redugif_normal.GIF","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43902552\/1403032711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sismo","indices":[0,6]},{"text":"M\u00e9rida","indices":[7,14]},{"text":"FF","indices":[119,122]}],"urls":[],"user_mentions":[{"screen_name":"FUNVISIS","name":"FUNVISIS Mppeuct","id":75112680,"id_str":"75112680","indices":[109,118]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102065971201,"id_str":"663728102065971201","text":"RT @RenemichelDs: Mal me conheceu e ja quer o meu cora\u00e7\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2544811801,"id_str":"2544811801","name":"Isabelle","screen_name":"Isabelleemlo","location":"S\u00e3o Janu\u00e1rio","url":"http:\/\/Instagram.com\/isabellemlo","description":"\u007b021\u007d \u2022 Sa\u00edda 3 \u2022 @vascodagama \u2764\ufe0f","protected":false,"verified":false,"followers_count":1751,"friends_count":958,"listed_count":2,"favourites_count":18967,"statuses_count":30763,"created_at":"Wed Jun 04 00:43:53 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633083533679046656\/4TY3D9Rv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633083533679046656\/4TY3D9Rv.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727236156137473\/HDc0ie93_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727236156137473\/HDc0ie93_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2544811801\/1447079853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727973263130624,"id_str":"663727973263130624","text":"Mal me conheceu e ja quer o meu cora\u00e7\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267837470,"id_str":"2267837470","name":"Rene Michel","screen_name":"RenemichelDs","location":"Rio de Janeiro, Brasil","url":null,"description":"snap: renemichel2","protected":false,"verified":false,"followers_count":667,"friends_count":515,"listed_count":0,"favourites_count":13576,"statuses_count":23927,"created_at":"Tue Jan 07 23:45:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662276544912584705\/EIdSDdOV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662276544912584705\/EIdSDdOV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267837470\/1446685695","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"97bcdfca1a2dca59","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/97bcdfca1a2dca59.json","place_type":"city","name":"Rio de Janeiro","full_name":"Rio de Janeiro, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.795449,-23.083020],[-43.795449,-22.739823],[-43.087707,-22.739823],[-43.087707,-23.083020]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RenemichelDs","name":"Rene Michel","id":2267837470,"id_str":"2267837470","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080085661"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086864896,"id_str":"663728102086864896","text":"RT @hareremaru: \u3057\u3085\u3046\u3054\u3046\u306e\u3084\u3064\u306f\u8f2a\u90ed\u306e\u4e0b\u66f8\u304d\u306e\u307f\u3067\u4ed6\u5168\u90e8\uff11\u767a\u66f8\u304d\u3067\u304b\u304d\u307e\u3057\u305f\uff01w\n\uff13\u679a\u76ee\u306f\u4e45\u3057\u3076\u308a\u306e\u5e7c\u5150\u3067\u3059\uff01\n#AIS\u56e3 \n#picture\u540c\u597d\u4f1a\n#Darwers\u56e3\n#\u7d75\u63cf\u304d\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#\u843d\u66f8\u304d \n#\u3057\u3087\u305f \n#\u96c6\u5408\u7d75 https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3302632969,"id_str":"3302632969","name":"taro\u541b","screen_name":"donkey225love","location":null,"url":null,"description":"\u30e2\u30f3\u30b9\u30c8\u30ef\u30f3\u30d1\u30f3\u3084\u3063\u3066\u307e\u3059\u3002\n\u79c1\u304c\u4e0d\u5728\u306e\u5834\u5408\u306f@vnr35s2\u307e\u3067\u3054\u9023\u7d61\u4e0b\u3055\u3044\n\u8a50\u6b3a\u304c\u6016\u3044\u304b\u305f\u306f\u5c11\u306a\u3044\u3067\u3059\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5b9f\u7e3e\u304c\u3042\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":245,"friends_count":245,"listed_count":1,"favourites_count":55,"statuses_count":273,"created_at":"Fri Jul 31 16:06:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663480338883084292\/OH3TZ0Lf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663480338883084292\/OH3TZ0Lf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302632969\/1447003705","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:51 +0000 2015","id":663714369029566464,"id_str":"663714369029566464","text":"\u3057\u3085\u3046\u3054\u3046\u306e\u3084\u3064\u306f\u8f2a\u90ed\u306e\u4e0b\u66f8\u304d\u306e\u307f\u3067\u4ed6\u5168\u90e8\uff11\u767a\u66f8\u304d\u3067\u304b\u304d\u307e\u3057\u305f\uff01w\n\uff13\u679a\u76ee\u306f\u4e45\u3057\u3076\u308a\u306e\u5e7c\u5150\u3067\u3059\uff01\n#AIS\u56e3 \n#picture\u540c\u597d\u4f1a\n#Darwers\u56e3\n#\u7d75\u63cf\u304d\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n#\u843d\u66f8\u304d \n#\u3057\u3087\u305f \n#\u96c6\u5408\u7d75 https:\/\/t.co\/UTixcm7G9K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3312389360,"id_str":"3312389360","name":"\u306f\u308c\u307e\u308b=\u3075\u3046\u308a\u3093@\u4fee\u884c\u4e2d\uff06\u4f4e\u6d6e\u4e0a","screen_name":"hareremaru","location":null,"url":"http:\/\/twpf.jp\/hareremaru","description":"\u597d\u304d\u306a\u3053\u3068\u21d2\u7d75\u3092\u63cf\u304f\u3053\u3068\u300a\u30a4\u30e9\u30b9\u30c8\u3001\u6f2b\u753b\u3001\u30c7\u30b6\u30a4\u30f3etc.\u300b\u3001\u30a2\u30cb\u30e1\u5168\u822c\u3001\u30b2\u30fc\u30e0\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u6f2b\u753b\u8aad\u3080!collection!\u6b4c\u3046\u3053\u3068\u3001\u30c0\u30f3\u30b9\u3001\u58f0\u512a\u300aDarwers\u56e3\u300bNo.36\u300aAIS\u56e3\u300bNo.40\u300aToLove\u56e3\u300b\u03c0\u300apicture\u540c\u597d\u4f1a\u300bNo.35\u3001\u300a\u03bc'nium\u9023\u76df\u300b\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":1302,"friends_count":1534,"listed_count":16,"favourites_count":1035,"statuses_count":734,"created_at":"Tue Aug 11 12:14:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631085933886988288\/CiKXhmaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631085933886988288\/CiKXhmaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3312389360\/1444915678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[{"text":"AIS\u56e3","indices":[49,54]},{"text":"picture\u540c\u597d\u4f1a","indices":[56,67]},{"text":"Darwers\u56e3","indices":[68,77]},{"text":"\u7d75\u63cf\u304d\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[78,90]},{"text":"\u843d\u66f8\u304d","indices":[92,96]},{"text":"\u3057\u3087\u305f","indices":[99,103]},{"text":"\u96c6\u5408\u7d75","indices":[105,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663714331440214016,"id_str":"663714331440214016","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":788,"h":567,"resize":"fit"},"medium":{"w":600,"h":431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663714331440214016,"id_str":"663714331440214016","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":788,"h":567,"resize":"fit"},"medium":{"w":600,"h":431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663714343050063872,"id_str":"663714343050063872","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8rbHUsAA9354.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8rbHUsAA9354.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":831,"h":586,"resize":"fit"}}},{"id":663714357205843968,"id_str":"663714357205843968","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8sP2UwAAeGDe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8sP2UwAAeGDe.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":631,"h":798,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AIS\u56e3","indices":[65,70]},{"text":"picture\u540c\u597d\u4f1a","indices":[72,83]},{"text":"Darwers\u56e3","indices":[84,93]},{"text":"\u7d75\u63cf\u304d\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[94,106]},{"text":"\u843d\u66f8\u304d","indices":[108,112]},{"text":"\u3057\u3087\u305f","indices":[115,119]},{"text":"\u96c6\u5408\u7d75","indices":[121,125]}],"urls":[],"user_mentions":[{"screen_name":"hareremaru","name":"\u306f\u308c\u307e\u308b=\u3075\u3046\u308a\u3093@\u4fee\u884c\u4e2d\uff06\u4f4e\u6d6e\u4e0a","id":3312389360,"id_str":"3312389360","indices":[3,14]}],"symbols":[],"media":[{"id":663714331440214016,"id_str":"663714331440214016","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":788,"h":567,"resize":"fit"},"medium":{"w":600,"h":431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663714369029566464,"source_status_id_str":"663714369029566464","source_user_id":3312389360,"source_user_id_str":"3312389360"}]},"extended_entities":{"media":[{"id":663714331440214016,"id_str":"663714331440214016","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8qv3UcAANIas.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"large":{"w":788,"h":567,"resize":"fit"},"medium":{"w":600,"h":431,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663714369029566464,"source_status_id_str":"663714369029566464","source_user_id":3312389360,"source_user_id_str":"3312389360"},{"id":663714343050063872,"id_str":"663714343050063872","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8rbHUsAA9354.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8rbHUsAA9354.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":422,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":831,"h":586,"resize":"fit"}},"source_status_id":663714369029566464,"source_status_id_str":"663714369029566464","source_user_id":3312389360,"source_user_id_str":"3312389360"},{"id":663714357205843968,"id_str":"663714357205843968","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8sP2UwAAeGDe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8sP2UwAAeGDe.jpg","url":"https:\/\/t.co\/UTixcm7G9K","display_url":"pic.twitter.com\/UTixcm7G9K","expanded_url":"http:\/\/twitter.com\/hareremaru\/status\/663714369029566464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":631,"h":798,"resize":"fit"},"medium":{"w":600,"h":758,"resize":"fit"}},"source_status_id":663714369029566464,"source_status_id_str":"663714369029566464","source_user_id":3312389360,"source_user_id_str":"3312389360"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053421056,"id_str":"663728102053421056","text":"It is dedicated to Lady Gaga https:\/\/t.co\/Q0gbVYmJV3 Unusual clouds in Cape Town skies https:\/\/t.co\/DQxIssCQeO","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166455409,"id_str":"3166455409","name":"WORLD NEWSER","screen_name":"WNewser","location":null,"url":"http:\/\/liveleak.wp.xdomain.jp\/","description":null,"protected":false,"verified":false,"followers_count":343,"friends_count":159,"listed_count":61,"favourites_count":0,"statuses_count":273514,"created_at":"Tue Apr 21 08:14:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590429071806312448\/EtZRSe3N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590429071806312448\/EtZRSe3N_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Q0gbVYmJV3","expanded_url":"http:\/\/ift.tt\/1Bc3eRx","display_url":"ift.tt\/1Bc3eRx","indices":[29,52]},{"url":"https:\/\/t.co\/DQxIssCQeO","expanded_url":"http:\/\/ift.tt\/1WM2T1T","display_url":"ift.tt\/1WM2T1T","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053294085,"id_str":"663728102053294085","text":"\u6c60\u7530\u30a8\u30e9\u30a4\u30b6\u304c\u3055\u3088\u306a\u3089\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u6b4c\u3063\u3066\u3066\u611f\u6fc0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":625382680,"id_str":"625382680","name":"\u2741\u3044\u306e\u3046\u3048\u3082\u306d\u2741","screen_name":"enomeuoni","location":null,"url":"http:\/\/Instagram.com\/mone0098","description":"#\u540c\u5973 #\u60c5\u30e1 #FAC #\u30d9\u30fc\u30b9","protected":false,"verified":false,"followers_count":363,"friends_count":312,"listed_count":0,"favourites_count":2635,"statuses_count":1323,"created_at":"Tue Jul 03 08:26:37 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545806161530716160\/Z7oWeq-l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545806161530716160\/Z7oWeq-l.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650662131503792128\/zZuTviSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650662131503792128\/zZuTviSL_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049259520,"id_str":"663728102049259520","text":"RT @g_shely: \u05d0\u05e4 \u05e8\u05e7 \u05d4\u05d9\u05d9\u05e0\u05d5 \u05de\u05e2\u05e8\u05d9\u05db\u05d9\u05dd \u05d0\u05ea \u05de\u05d4 \u05e9\u05d9\u05e9 \u05dc\u05e0\u05d5 \u05d1\u05d9\u05d3\u05d9\u05d9\u05dd \u05d5\u05dc\u05d0 \u05de\u05d7\u05e4\u05e9\u05d9\u05dd \u05de\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d8\u05d5\u05d1 \u05d1\u05d0\u05d7\u05e8\u05d9\u05dd \u05d4\u05d7\u05d9\u05d9\u05dd \u05e9\u05dc\u05e0\u05d5 \u05d4\u05d9\u05d5 \u05d8\u05d5\u05d1\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304364310,"id_str":"3304364310","name":"sapir_shasha","screen_name":"sapir_shasha","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":24,"listed_count":0,"favourites_count":626,"statuses_count":1958,"created_at":"Sun Aug 02 16:12:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"he","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633644751321894912\/4Ozr7sBv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633644751321894912\/4Ozr7sBv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:57:24 +0000 2015","id":663490533013250048,"id_str":"663490533013250048","text":"\u05d0\u05e4 \u05e8\u05e7 \u05d4\u05d9\u05d9\u05e0\u05d5 \u05de\u05e2\u05e8\u05d9\u05db\u05d9\u05dd \u05d0\u05ea \u05de\u05d4 \u05e9\u05d9\u05e9 \u05dc\u05e0\u05d5 \u05d1\u05d9\u05d3\u05d9\u05d9\u05dd \u05d5\u05dc\u05d0 \u05de\u05d7\u05e4\u05e9\u05d9\u05dd \u05de\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d8\u05d5\u05d1 \u05d1\u05d0\u05d7\u05e8\u05d9\u05dd \u05d4\u05d7\u05d9\u05d9\u05dd \u05e9\u05dc\u05e0\u05d5 \u05d4\u05d9\u05d5 \u05d8\u05d5\u05d1\u05d9\u05dd \u05d9\u05d5\u05ea\u05e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":974632921,"id_str":"974632921","name":"\u05e9\u05dc\u05d9 \u05d2\u05d5\u05e8\u05dc\u05d9\u05e7","screen_name":"g_shely","location":null,"url":null,"description":"\u27b0","protected":false,"verified":false,"followers_count":1234,"friends_count":577,"listed_count":0,"favourites_count":12996,"statuses_count":23270,"created_at":"Tue Nov 27 20:21:07 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"he","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649752949489541120\/ub30Ob3y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649752949489541120\/ub30Ob3y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/974632921\/1443809005","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"iw"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"g_shely","name":"\u05e9\u05dc\u05d9 \u05d2\u05d5\u05e8\u05dc\u05d9\u05e7","id":974632921,"id_str":"974632921","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"iw","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086979584,"id_str":"663728102086979584","text":"@gardendorset all the indeed's there x x x x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727954346774529,"in_reply_to_status_id_str":"663727954346774529","in_reply_to_user_id":180375208,"in_reply_to_user_id_str":"180375208","in_reply_to_screen_name":"jemma_knowles1","user":{"id":180375208,"id_str":"180375208","name":"Jemma Knowles","screen_name":"jemma_knowles1","location":"Dorchester, Dorset","url":null,"description":"Vertically challenged bookworm, loves cups of tea, husband, cake and my mental dog... In no particular order","protected":false,"verified":false,"followers_count":195,"friends_count":274,"listed_count":7,"favourites_count":52,"statuses_count":4637,"created_at":"Thu Aug 19 13:46:21 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657545197237219332\/AGamLpfq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657545197237219332\/AGamLpfq_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gardendorset","name":"Christopher Knowles","id":3051243252,"id_str":"3051243252","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086828032,"id_str":"663728102086828032","text":"\u30a6\u30a3\u30f321\u30d5\u30a1\u30fc\u30b9\u30c8\u306e\n203\u306f\u30de\u30a4\u30af\u3067\u9a12\u97f3\u3092\u62fe\u3063\u3066\u30a6\u30fc\u30cf\u30fc\u9cf4\u3089\u3057\u3001\n104\u306e\u9ad8\u6728\u306f\u30c6\u30ec\u30d3\u3067\u30a4\u30d3\u30ad\u3092\u9cf4\u3089\u3059\n#\u8328\u6728\u5e02 #\u9a12\u97f3\u30c8\u30e9\u30d6\u30eb\nhttps:\/\/t.co\/5zqoZYdFkx Mon, 09 Nov 2015 23:41","source":"\u003ca href=\"http:\/\/asahi.co.jp\/precure\/happiness\/enjoyment\/nigaoe.html\" rel=\"nofollow\"\u003ePrecure_TOMIAM77\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2836159208,"id_str":"2836159208","name":"@kimbae1234 #IS","screen_name":"Precure_b_1001","location":null,"url":"http:\/\/asahi.co.jp\/precure\/happiness\/enjoyment\/nigaoe.html","description":"\u30d7\u30ea\u30ad\u30e5\u30a2 \u306b\u304c\u304a\u3048","protected":false,"verified":false,"followers_count":6344,"friends_count":6415,"listed_count":6,"favourites_count":9,"statuses_count":571189,"created_at":"Wed Oct 01 04:47:26 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/517174754671747072\/5ZdPKQmh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/517174754671747072\/5ZdPKQmh.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517174615538270209\/kPC9p3Y5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517174615538270209\/kPC9p3Y5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2836159208\/1412139023","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8328\u6728\u5e02","indices":[54,58]},{"text":"\u9a12\u97f3\u30c8\u30e9\u30d6\u30eb","indices":[59,66]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":523232740863258624,"id_str":"523232740863258624","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/B0LlZ9YCMAAGgao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B0LlZ9YCMAAGgao.jpg","url":"https:\/\/t.co\/5zqoZYdFkx","display_url":"pic.twitter.com\/5zqoZYdFkx","expanded_url":"http:\/\/twitter.com\/Precure_b_1001\/status\/523232742600110080\/photo\/1","type":"photo","sizes":{"medium":{"w":206,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":206,"h":206,"resize":"fit"},"large":{"w":206,"h":206,"resize":"fit"}},"source_status_id":523232742600110080,"source_status_id_str":"523232742600110080","source_user_id":2836159208,"source_user_id_str":"2836159208"}]},"extended_entities":{"media":[{"id":523232740863258624,"id_str":"523232740863258624","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/B0LlZ9YCMAAGgao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B0LlZ9YCMAAGgao.jpg","url":"https:\/\/t.co\/5zqoZYdFkx","display_url":"pic.twitter.com\/5zqoZYdFkx","expanded_url":"http:\/\/twitter.com\/Precure_b_1001\/status\/523232742600110080\/photo\/1","type":"photo","sizes":{"medium":{"w":206,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":206,"h":206,"resize":"fit"},"large":{"w":206,"h":206,"resize":"fit"}},"source_status_id":523232742600110080,"source_status_id_str":"523232742600110080","source_user_id":2836159208,"source_user_id_str":"2836159208"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086868992,"id_str":"663728102086868992","text":"\uc774\uc81c \uc57c\uc790\uac00 \uc544\ub2c8\ub77c \uc57c\uac04 \uc2e4\uc2b5 \ubcf4\uace0\uc11c\ub97c \uc4f0\uac8c \ub420 \uac83","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":502848628,"id_str":"502848628","name":"\u2756\u2190\uc13c\uc138\uc874\uc608@\ube44\ud0c0\uc788\ub294 \uc878\uc791\ubc8c\ub808\u2756","screen_name":"syunaoprpr","location":"\ubc18\ucbe4 \ub9d0\uc544\uba39\uc740 \uc131\uc720\uacc4..\uc624\ube60\ub4e4 \uc606...\uadf8\ub9ac\uace0 \ucca0\ud654\ub2e8..","url":null,"description":"header:\ub3c4\uc9c0\ub2d8s2 20150818 20150825( \u314d\u314d)\u3145(+'\u03c9' ) \uac8c\uc784\ud569\ub2c8\ub2e4 \uac8c\uc784\uc874\uc7bc\nZ-BLUE \uc9c0\uc2dc\uc790","protected":false,"verified":false,"followers_count":632,"friends_count":788,"listed_count":4,"favourites_count":12348,"statuses_count":434051,"created_at":"Sat Feb 25 11:02:12 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658288103082164224\/5tT4ae4w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658288103082164224\/5tT4ae4w_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/502848628\/1440599295","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053294084,"id_str":"663728102053294084","text":"RT @sumedico: Caminar r\u00e1pido ayuda a quemar calor\u00edas https:\/\/t.co\/vkJMKH75eD https:\/\/t.co\/W25gKn9QmI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2287348424,"id_str":"2287348424","name":"roscuberm81","screen_name":"roscuberm81","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":367,"friends_count":419,"listed_count":25,"favourites_count":1531,"statuses_count":73649,"created_at":"Sun Jan 12 00:03:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513007117905960960\/0ULn78TU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513007117905960960\/0ULn78TU_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:10 +0000 2015","id":663725269287485440,"id_str":"663725269287485440","text":"Caminar r\u00e1pido ayuda a quemar calor\u00edas https:\/\/t.co\/vkJMKH75eD https:\/\/t.co\/W25gKn9QmI","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92577907,"id_str":"92577907","name":"sumedico.com","screen_name":"sumedico","location":"M\u00e9xico D.F.","url":"http:\/\/sumedico.com","description":"Portal de informaci\u00f3n, bienestar y salud. Les invitamos a seguir nuestras cuentas en redes sociales. En Facebook http:\/\/sumedico.com.","protected":false,"verified":false,"followers_count":22520,"friends_count":4027,"listed_count":436,"favourites_count":722,"statuses_count":80938,"created_at":"Wed Nov 25 18:10:04 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504641911974424577\/H_mCbc2e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504641911974424577\/H_mCbc2e.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F4F9B8","profile_text_color":"B7E2D8","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650043117320585217\/k7Mrksyg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650043117320585217\/k7Mrksyg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92577907\/1443817525","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vkJMKH75eD","expanded_url":"http:\/\/goo.gl\/I2ujO4","display_url":"goo.gl\/I2ujO4","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663522812452323329,"id_str":"663522812452323329","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","url":"https:\/\/t.co\/W25gKn9QmI","display_url":"pic.twitter.com\/W25gKn9QmI","expanded_url":"http:\/\/twitter.com\/sumedico\/status\/663725269287485440\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663522812452323329,"id_str":"663522812452323329","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","url":"https:\/\/t.co\/W25gKn9QmI","display_url":"pic.twitter.com\/W25gKn9QmI","expanded_url":"http:\/\/twitter.com\/sumedico\/status\/663725269287485440\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vkJMKH75eD","expanded_url":"http:\/\/goo.gl\/I2ujO4","display_url":"goo.gl\/I2ujO4","indices":[53,76]}],"user_mentions":[{"screen_name":"sumedico","name":"sumedico.com","id":92577907,"id_str":"92577907","indices":[3,12]}],"symbols":[],"media":[{"id":663522812452323329,"id_str":"663522812452323329","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","url":"https:\/\/t.co\/W25gKn9QmI","display_url":"pic.twitter.com\/W25gKn9QmI","expanded_url":"http:\/\/twitter.com\/sumedico\/status\/663725269287485440\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725269287485440,"source_status_id_str":"663725269287485440","source_user_id":92577907,"source_user_id_str":"92577907"}]},"extended_entities":{"media":[{"id":663522812452323329,"id_str":"663522812452323329","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOe4CWwAEAGQf.jpg","url":"https:\/\/t.co\/W25gKn9QmI","display_url":"pic.twitter.com\/W25gKn9QmI","expanded_url":"http:\/\/twitter.com\/sumedico\/status\/663725269287485440\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725269287485440,"source_status_id_str":"663725269287485440","source_user_id":92577907,"source_user_id_str":"92577907"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070214656,"id_str":"663728102070214656","text":"Capaz de quedar mudoo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182392280,"id_str":"182392280","name":"Juanma Romero","screen_name":"Juuanma77","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":508,"friends_count":473,"listed_count":0,"favourites_count":2743,"statuses_count":8184,"created_at":"Tue Aug 24 14:01:02 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642173882368196608\/XvXnCTMP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642173882368196608\/XvXnCTMP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182392280\/1400628881","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080085662"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070071296,"id_str":"663728102070071296","text":"@Hato_wcat \u30a6\u30a3\u30ba\u306e\u5354\u529b\u306f\u6700\u9ad8\u306b\u697d\u3057\u3044\u3067","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717964948992002,"in_reply_to_status_id_str":"663717964948992002","in_reply_to_user_id":2907432942,"in_reply_to_user_id_str":"2907432942","in_reply_to_screen_name":"Hato_wcat","user":{"id":2380033742,"id_str":"2380033742","name":"\uff90\uff77\uff8c\uff9f\uff99\uff70\uff9d\u306e\u82d7\u6728\u3002","screen_name":"Salad_Barrr","location":"\u767d\u732b\u52d5\u753b\u4e0a\u3052\u3066\u307e\u3057\u305f\u2193","url":"https:\/\/m.youtube.com\/channel\/UCVPZROCFmrgez9pyhSl_mCg","description":"\u203b\u5973\u3067\u3059 \/ \u9ed2\u732b,\u767d\u732b,\u30d0\u30c8\u30ac=\u30b3\u30ed\u30d7\u30e9\u306e\u72ac \/ \u795e\u30a2\u30a4\u30b3\u30f3\u3068\u795e\u30d8\u30c3\u30c0\u30fc\u306f@himari0000\u3055\u3093\u304b\u3089\u2661 \/ \u30c7\u30ea\u30d8\u30eb\u5b22\u3084\u3063\u3066\u308b\u3088\u2605\u30c7\u30ea\u30d8\u30eb\u57a2\u2192@charo_shiro","protected":false,"verified":false,"followers_count":1328,"friends_count":240,"listed_count":47,"favourites_count":3568,"statuses_count":38057,"created_at":"Sun Mar 09 07:22:42 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661633127895334913\/yYkJLrq3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661633127895334913\/yYkJLrq3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380033742\/1435477193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hato_wcat","name":"\u9ce9","id":2907432942,"id_str":"2907432942","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085662"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102065868800,"id_str":"663728102065868800","text":"@tooruer \u2606\u548c\u89e3\u306e\u5370\u3092\u80f8\u306b\u3050\u308b\u3050\u308b\u3093\u306f\u4fee\u884c\u306e\u65c5\u306b\u8eab\u3092\u6295\u3058\u308b\u30fc\u30fc\u30fc\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726895339474945,"in_reply_to_status_id_str":"663726895339474945","in_reply_to_user_id":2582147437,"in_reply_to_user_id_str":"2582147437","in_reply_to_screen_name":"tooruer","user":{"id":2336342610,"id_str":"2336342610","name":"\u3050\u308b\u3050\u308b\u3093","screen_name":"gurumoffulu","location":null,"url":null,"description":"\u96d1\u591a \u5341\u56db\u677e\u3068\u5b87\u5b99\u846c","protected":false,"verified":false,"followers_count":138,"friends_count":113,"listed_count":12,"favourites_count":1284,"statuses_count":1545,"created_at":"Mon Feb 10 08:48:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663427346439909376\/PMae9zE9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663427346439909376\/PMae9zE9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2336342610\/1442563773","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tooruer","name":"\u9593\u900f","id":2582147437,"id_str":"2582147437","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085661"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070063104,"id_str":"663728102070063104","text":"RT @som509: \u0e08\u0e35\u0e14\u0e23\u0e32\u0e01\u0e49\u0e2d\u0e19 & \u0e08\u0e35\u0e22\u0e07 \ud83d\ude02\ud83d\ude02\ud83d\ude02\n#GD #BIGBANG \n#\u0e15\u0e35\u0e41\u0e1c\u0e48bigbang #\u0e15\u0e35\u0e41\u0e1c\u0e48YG https:\/\/t.co\/sZ92GkszeZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2488396172,"id_str":"2488396172","name":"\u0e40\u0e40\u0e2b\u0e27\u0e19\u0e19\u0e19\u0e19 .\u0e19","screen_name":"hwan_pb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":61,"friends_count":477,"listed_count":4,"favourites_count":4130,"statuses_count":7626,"created_at":"Sat May 10 16:42:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621962326510415872\/kn8fdXe9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621962326510415872\/kn8fdXe9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2488396172\/1444829925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:57:10 +0000 2015","id":663656568194383872,"id_str":"663656568194383872","text":"\u0e08\u0e35\u0e14\u0e23\u0e32\u0e01\u0e49\u0e2d\u0e19 & \u0e08\u0e35\u0e22\u0e07 \ud83d\ude02\ud83d\ude02\ud83d\ude02\n#GD #BIGBANG \n#\u0e15\u0e35\u0e41\u0e1c\u0e48bigbang #\u0e15\u0e35\u0e41\u0e1c\u0e48YG https:\/\/t.co\/sZ92GkszeZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1487922871,"id_str":"1487922871","name":"\u0e22\u0e48\u0e32\u0e2b\u0e4c\u0e04\u0e27\u0e2d\u0e19\u0e08\u0e35\u0e22\u0e07!!!","screen_name":"som509","location":null,"url":null,"description":"\u0e04 \u0e27 \u0e32 \u0e21 \u0e2a\u0e38 \u0e02 \u0e02 \u0e2d \u0e07 \u0e09\u0e31 \u0e19 \u0e04\u0e37 \u0e2d B I G B A N G + GTOP ~ \u0e09\u0e31 \u0e19 \u0e23\u0e31 \u0e01 \u0e40 \u0e04\u0e49 \u0e32 \u0e21 \u0e32 \u0e01 \u0e04 \u0e27 \u0e2d \u0e19 \u0e08\u0e35 \u0e22 \u0e07 ~ BIGBANG IS MY EVERYTHING","protected":false,"verified":false,"followers_count":968,"friends_count":78,"listed_count":2,"favourites_count":1979,"statuses_count":25423,"created_at":"Thu Jun 06 14:36:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655053489773539328\/mnOhwijW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655053489773539328\/mnOhwijW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1487922871\/1446913860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":10,"entities":{"hashtags":[{"text":"GD","indices":[25,28]},{"text":"BIGBANG","indices":[29,37]},{"text":"\u0e15\u0e35\u0e41\u0e1c\u0e48bigbang","indices":[39,52]},{"text":"\u0e15\u0e35\u0e41\u0e1c\u0e48YG","indices":[53,61]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663656525882224640,"id_str":"663656525882224640","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":641,"h":636,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663656525882224640,"id_str":"663656525882224640","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":641,"h":636,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}},{"id":663656526159081472,"id_str":"663656526159081472","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGCaU8AA3vLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGCaU8AA3vLC.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":904,"resize":"fit"},"large":{"w":636,"h":959,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GD","indices":[37,40]},{"text":"BIGBANG","indices":[41,49]},{"text":"\u0e15\u0e35\u0e41\u0e1c\u0e48bigbang","indices":[51,64]},{"text":"\u0e15\u0e35\u0e41\u0e1c\u0e48YG","indices":[65,73]}],"urls":[],"user_mentions":[{"screen_name":"som509","name":"\u0e22\u0e48\u0e32\u0e2b\u0e4c\u0e04\u0e27\u0e2d\u0e19\u0e08\u0e35\u0e22\u0e07!!!","id":1487922871,"id_str":"1487922871","indices":[3,10]}],"symbols":[],"media":[{"id":663656525882224640,"id_str":"663656525882224640","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":641,"h":636,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663656568194383872,"source_status_id_str":"663656568194383872","source_user_id":1487922871,"source_user_id_str":"1487922871"}]},"extended_entities":{"media":[{"id":663656525882224640,"id_str":"663656525882224640","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGBYUcAA4oz-.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":595,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":641,"h":636,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":663656568194383872,"source_status_id_str":"663656568194383872","source_user_id":1487922871,"source_user_id_str":"1487922871"},{"id":663656526159081472,"id_str":"663656526159081472","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXIGCaU8AA3vLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXIGCaU8AA3vLC.jpg","url":"https:\/\/t.co\/sZ92GkszeZ","display_url":"pic.twitter.com\/sZ92GkszeZ","expanded_url":"http:\/\/twitter.com\/som509\/status\/663656568194383872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":904,"resize":"fit"},"large":{"w":636,"h":959,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":512,"resize":"fit"}},"source_status_id":663656568194383872,"source_status_id_str":"663656568194383872","source_user_id":1487922871,"source_user_id_str":"1487922871"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080085662"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078566400,"id_str":"663728102078566400","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/xvPaN7uHek","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3571497733,"id_str":"3571497733","name":"LizQuenSupreme4","screen_name":"LizQuenSupreme4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":21,"listed_count":3,"favourites_count":5,"statuses_count":28161,"created_at":"Tue Sep 15 12:37:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652838963078656000\/RWNOwQpl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652838963078656000\/RWNOwQpl_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727630265503744,"quoted_status_id_str":"663727630265503744","quoted_status":{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727630265503744,"id_str":"663727630265503744","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/6KxWfFigL6","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727307908059136,"quoted_status_id_str":"663727307908059136","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/6KxWfFigL6","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727307908059136","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/xvPaN7uHek","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727630265503744","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102074286080,"id_str":"663728102074286080","text":"@23585_M \u3044\u3064\u3082\u597d\u304d\u3063\u3066\u8a00\u3063\u3066\u304f\u308c\u308b\u3051\u3069\n\u308b\u308b\u3057\u304b\u307f\u3084\u3073\u3063\u3061\u306e\u3053\u3068\u597d\u304d\u3084\u3082\u3093\u2026\uff01\uff01\u7b11\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720276580958208,"in_reply_to_status_id_str":"663720276580958208","in_reply_to_user_id":3232716624,"in_reply_to_user_id_str":"3232716624","in_reply_to_screen_name":"23585_M","user":{"id":3039721326,"id_str":"3039721326","name":"\u25ce\u308b\u308b@\u3068\u306b\u304b\u304f\u304c\u3093\u3070\u308b\u25ce","screen_name":"rurutan130","location":"\u95a2\u897f","url":"http:\/\/twpf.jp\/rurutan130","description":"\u25ce\u3080\u3059\u3081\u3093\u3002\u8336\u63a8\u3057\u25ce \u3070\u30fc\u3002\u3055\u3093\u5927\u6b53\u8fce\u301c( \u02d8\u03c9\u02d8 )\u25ce \u308b\u30fc\u3061\u3083\u305f\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u2192\u3010@ruru_chata \u3011\u826f\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u307b\u3057\u3044\u3067\u3059( \u02d8\u03c9\u02d8 )\u25ce\u8a73\u3057\u304f\u306f\u3064\u3044\u3077\u308d\u898b\u3066\u304f\u3060\u3055\u3044( \u02d8\u03c9\u02d8 )\u25ce\u2192\u2192\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u305b\u3093\u2190\u2190","protected":false,"verified":false,"followers_count":179,"friends_count":162,"listed_count":12,"favourites_count":12013,"statuses_count":10692,"created_at":"Tue Feb 24 14:42:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662925692166803457\/oo22RBGZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662925692166803457\/oo22RBGZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3039721326\/1445859630","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"23585_M","name":"\u307f\u3084\u3073","id":3232716624,"id_str":"3232716624","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085663"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070087680,"id_str":"663728102070087680","text":"@popp_py \u0e42\u0e2d\u0e4b\u0e46 \u0e01\u0e39\u0e01\u0e47\u0e17\u0e33\u0e43\u0e08\u0e21\u0e48\u0e32\u0e22\u0e25\u0e48\u0e32\u0e22\u0e22\u0e22\u0e22\u0e22 \u0e07\u0e37\u0e49\u0e2d\u0e2d\u0e2d\u0e2d \u0e44\u0e21\u0e48\u0e40\u0e2d\u0e32\u0e44\u0e21\u0e48\u0e40\u0e09\u0e49\u0e32\u0e19\u0e49\u0e32 \u0e1e\u0e19 \u0e09\u0e2d\u0e1a\u0e1a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727786108911616,"in_reply_to_status_id_str":"663727786108911616","in_reply_to_user_id":146372988,"in_reply_to_user_id_str":"146372988","in_reply_to_screen_name":"popp_py","user":{"id":2723632657,"id_str":"2723632657","name":"thinkbeforeyoueat","screen_name":"earngaeyyy","location":null,"url":null,"description":"\u0e1e\u0e39\u0e14\u0e21\u0e32\u0e01\u0e41\u0e21\u0e49\u0e01\u0e23\u0e30\u0e17\u0e31\u0e48\u0e07\u0e43\u0e19\u0e17\u0e27\u0e34\u0e15\u0e40\u0e15\u0e2d\u0e23\u0e4c","protected":false,"verified":false,"followers_count":73,"friends_count":115,"listed_count":1,"favourites_count":394,"statuses_count":3501,"created_at":"Mon Aug 11 10:00:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663620856099115009\/msZas9ny_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663620856099115009\/msZas9ny_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723632657\/1447055139","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01970e9b0501efbf","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01970e9b0501efbf.json","place_type":"admin","name":"Amphoe Bang Bo","full_name":"Amphoe Bang Bo, Samut Prakan","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.762798,13.478527],[100.762798,13.697132],[100.963921,13.697132],[100.963921,13.478527]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"popp_py","name":"\u0e42\u0e1b\u0e1b\u0e35\u0e49\u0e1b..","id":146372988,"id_str":"146372988","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080085662"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086848512,"id_str":"663728102086848512","text":"@sammytuts sinabi ko bang meron? \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727992992960513,"in_reply_to_status_id_str":"663727992992960513","in_reply_to_user_id":238421046,"in_reply_to_user_id_str":"238421046","in_reply_to_screen_name":"sammytuts","user":{"id":501786285,"id_str":"501786285","name":"Janielle Francisco","screen_name":"jnllefrncsc","location":null,"url":null,"description":"I'll paint you wings~","protected":false,"verified":false,"followers_count":413,"friends_count":182,"listed_count":0,"favourites_count":2940,"statuses_count":11486,"created_at":"Fri Feb 24 13:39:52 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600649916470329344\/WG8JPU-T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600649916470329344\/WG8JPU-T.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661250482946510848\/-Hv-pmgG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661250482946510848\/-Hv-pmgG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501786285\/1445449442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sammytuts","name":"sammu","id":238421046,"id_str":"238421046","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086955008,"id_str":"663728102086955008","text":"I've collected 15,215 gold coins! https:\/\/t.co\/gEE3gjh1v6 #iphone, #iphonegames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":377601505,"id_str":"377601505","name":"Chuck nader","screen_name":"Theeskypilot","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":7876,"created_at":"Wed Sep 21 20:45:04 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/377601505\/1358212035","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iphone","indices":[58,65]},{"text":"iphonegames","indices":[67,79]},{"text":"gameinsight","indices":[81,93]}],"urls":[{"url":"https:\/\/t.co\/gEE3gjh1v6","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102074355712,"id_str":"663728102074355712","text":"@nashiya__ \ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727767301787648,"in_reply_to_status_id_str":"663727767301787648","in_reply_to_user_id":2778415335,"in_reply_to_user_id_str":"2778415335","in_reply_to_screen_name":"nashiya__","user":{"id":1325819534,"id_str":"1325819534","name":"iam_dc3\u20e3","screen_name":"DonteCrews3","location":null,"url":null,"description":"R.I.P AUNT ALISA \u2764\ufe0f","protected":false,"verified":false,"followers_count":572,"friends_count":492,"listed_count":2,"favourites_count":1052,"statuses_count":4187,"created_at":"Thu Apr 04 01:01:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660046061361340417\/uIcGUNiU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660046061361340417\/uIcGUNiU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1325819534\/1443932792","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nashiya__","name":"nashiya","id":2778415335,"id_str":"2778415335","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080085663"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102074265600,"id_str":"663728102074265600","text":"RT @coti_sakaguti: \u3010\u3089\u304f\u304c\u304d\u3011\u3053\u3053\u307e\u3067\uff08\uff14\u8a71\u307e\u3067\uff09\u306e\u304a\u304a\u3088\u305d\u306e\u30b9\u30bf\u30df\u30e5 https:\/\/t.co\/03zCcG4zkf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1428309277,"id_str":"1428309277","name":"\u3042\u304d\u307b@\u5897\u7530\u6c0f\u306b\u8ca2\u3050","screen_name":"akiwaju","location":"\u5730\u7403\u9632\u885b\u90e8","url":null,"description":"\u9ed2\u5b50\u306e\u30d0\u30b9\u30b1\/Free!\/\u3046\u305f\u30d7\u30ea\/\u30d6\u30e9\u30b3\u30f3\/\u3042\u3093\u30b9\u30bf\/\u30a2\u30a4\u30ca\u30ca\/\u9632\u885b\u90e8\u304c\u71b1\u3044\u3002\u30d7\u30ea\u30e9\u30a44th\u521d\u65e5\u53c2\u6226\uff01\u30d7\u30ea\u30e9\u30a45th2\u65e5\u76ee\u53c2\u6226\u3002\u3046\u305f\u30d7\u30ea\u611b\u304c\u6b62\u307e\u3089\u306a\u3044\u30ec\u30f3\u62bc\u3057\u2661\u58f0\u512a \u5897\u7530\u4fca\u6a39\u3055\u3093\u5fdc\u63f4\u3057\u3066\u307e\u3059\uff01\u540c\u62c5\u62d2\u5426\u3042\u308a\u307e\u305b\u3093\u3002\u3080\u3057\u308d\u8a9e\u308a\u305f\u3044\u2727\u0669( '\u1d17' )\u0648 \u2727\u8a73\u3057\u304f\u2192http:\/\/twpf.jp\/akiwaju","protected":false,"verified":false,"followers_count":801,"friends_count":435,"listed_count":17,"favourites_count":6166,"statuses_count":18921,"created_at":"Tue May 14 16:44:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663290266472747012\/mM52Nat1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663290266472747012\/mM52Nat1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1428309277\/1443581130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 07:23:29 +0000 2015","id":660356399583510528,"id_str":"660356399583510528","text":"\u3010\u3089\u304f\u304c\u304d\u3011\u3053\u3053\u307e\u3067\uff08\uff14\u8a71\u307e\u3067\uff09\u306e\u304a\u304a\u3088\u305d\u306e\u30b9\u30bf\u30df\u30e5 https:\/\/t.co\/03zCcG4zkf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104565735,"id_str":"104565735","name":"\u3053\u3061(\u6210\u4ecf)","screen_name":"coti_sakaguti","location":"\u2661(\u2609\u25bc\u2609)(\u159c,\u159c,,\u30df\u2661","url":"http:\/\/pixiv.me\/coti_sakaguti","description":"\u8150\u5973\u5b50\u3067\u3059\u2661\u8a73\u7d30\u306fhttp:\/\/twpf.jp\/coti_sakaguti\u2661\u5be9\u795e\u8005\u7528 @coti_katana","protected":false,"verified":false,"followers_count":11055,"friends_count":8664,"listed_count":286,"favourites_count":2015,"statuses_count":49294,"created_at":"Wed Jan 13 18:32:55 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000106107338\/1283eea1df45c7080e739c191af3aaef.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000106107338\/1283eea1df45c7080e739c191af3aaef.jpeg","profile_background_tile":true,"profile_link_color":"E635E0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FBE5FF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653185826734473216\/ZY2T7dhU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653185826734473216\/ZY2T7dhU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104565735\/1440083272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1626,"favorite_count":1980,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660356398203584512,"id_str":"660356398203584512","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","url":"https:\/\/t.co\/03zCcG4zkf","display_url":"pic.twitter.com\/03zCcG4zkf","expanded_url":"http:\/\/twitter.com\/coti_sakaguti\/status\/660356399583510528\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":777,"resize":"fit"},"medium":{"w":550,"h":777,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660356398203584512,"id_str":"660356398203584512","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","url":"https:\/\/t.co\/03zCcG4zkf","display_url":"pic.twitter.com\/03zCcG4zkf","expanded_url":"http:\/\/twitter.com\/coti_sakaguti\/status\/660356399583510528\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":777,"resize":"fit"},"medium":{"w":550,"h":777,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"coti_sakaguti","name":"\u3053\u3061(\u6210\u4ecf)","id":104565735,"id_str":"104565735","indices":[3,17]}],"symbols":[],"media":[{"id":660356398203584512,"id_str":"660356398203584512","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","url":"https:\/\/t.co\/03zCcG4zkf","display_url":"pic.twitter.com\/03zCcG4zkf","expanded_url":"http:\/\/twitter.com\/coti_sakaguti\/status\/660356399583510528\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":777,"resize":"fit"},"medium":{"w":550,"h":777,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660356399583510528,"source_status_id_str":"660356399583510528","source_user_id":104565735,"source_user_id_str":"104565735"}]},"extended_entities":{"media":[{"id":660356398203584512,"id_str":"660356398203584512","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSoOpTwUwAAPNiq.jpg","url":"https:\/\/t.co\/03zCcG4zkf","display_url":"pic.twitter.com\/03zCcG4zkf","expanded_url":"http:\/\/twitter.com\/coti_sakaguti\/status\/660356399583510528\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":777,"resize":"fit"},"medium":{"w":550,"h":777,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660356399583510528,"source_status_id_str":"660356399583510528","source_user_id":104565735,"source_user_id_str":"104565735"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085663"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086828033,"id_str":"663728102086828033","text":"RT @AntiHussein: @AMBITNRGMEG72 @mercenarygeo Also more dangerous and harmful to the environment! https:\/\/t.co\/XvpmJ8BZ2Q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25725812,"id_str":"25725812","name":"Martha P Fred","screen_name":"sardnas51","location":" USA","url":"http:\/\/twitter.com\/sardnas51","description":"I only live once, live life to the fullest,each day is a new day & new experiences good or bad!!I'm catching up on the going on's, it's my time!watchoutdeynow","protected":false,"verified":false,"followers_count":1247,"friends_count":1043,"listed_count":226,"favourites_count":22773,"statuses_count":89832,"created_at":"Sat Mar 21 20:43:30 +0000 2009","utc_offset":-28800,"time_zone":"America\/Los_Angeles","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/17074459\/b2bb07df5d9e75f8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/17074459\/b2bb07df5d9e75f8.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605785947788046337\/t-p9AuWu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605785947788046337\/t-p9AuWu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25725812\/1435111536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:28 +0000 2015","id":663726603227168768,"id_str":"663726603227168768","text":"@AMBITNRGMEG72 @mercenarygeo Also more dangerous and harmful to the environment! https:\/\/t.co\/XvpmJ8BZ2Q","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725625409040385,"in_reply_to_status_id_str":"663725625409040385","in_reply_to_user_id":42769465,"in_reply_to_user_id_str":"42769465","in_reply_to_screen_name":"AMBITNRGMEG72","user":{"id":2869527457,"id_str":"2869527457","name":"BarackInsaneObama","screen_name":"AntiHussein","location":null,"url":null,"description":"The Face Of The Enemy Within. This traitor needs to be held accountable!","protected":false,"verified":false,"followers_count":1978,"friends_count":1170,"listed_count":57,"favourites_count":65399,"statuses_count":35692,"created_at":"Tue Oct 21 21:14:19 +0000 2014","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625444475595177984\/_COd62s7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625444475595177984\/_COd62s7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2869527457\/1437264343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AMBITNRGMEG72","name":"MARK E. GURGEVICH","id":42769465,"id_str":"42769465","indices":[0,14]},{"screen_name":"mercenarygeo","name":"Mickey Fulp","id":127967449,"id_str":"127967449","indices":[15,28]}],"symbols":[],"media":[{"id":663726602031792129,"id_str":"663726602031792129","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","url":"https:\/\/t.co\/XvpmJ8BZ2Q","display_url":"pic.twitter.com\/XvpmJ8BZ2Q","expanded_url":"http:\/\/twitter.com\/AntiHussein\/status\/663726603227168768\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726602031792129,"id_str":"663726602031792129","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","url":"https:\/\/t.co\/XvpmJ8BZ2Q","display_url":"pic.twitter.com\/XvpmJ8BZ2Q","expanded_url":"http:\/\/twitter.com\/AntiHussein\/status\/663726603227168768\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AntiHussein","name":"BarackInsaneObama","id":2869527457,"id_str":"2869527457","indices":[3,15]},{"screen_name":"AMBITNRGMEG72","name":"MARK E. GURGEVICH","id":42769465,"id_str":"42769465","indices":[17,31]},{"screen_name":"mercenarygeo","name":"Mickey Fulp","id":127967449,"id_str":"127967449","indices":[32,45]}],"symbols":[],"media":[{"id":663726602031792129,"id_str":"663726602031792129","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","url":"https:\/\/t.co\/XvpmJ8BZ2Q","display_url":"pic.twitter.com\/XvpmJ8BZ2Q","expanded_url":"http:\/\/twitter.com\/AntiHussein\/status\/663726603227168768\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}},"source_status_id":663726603227168768,"source_status_id_str":"663726603227168768","source_user_id":2869527457,"source_user_id_str":"2869527457"}]},"extended_entities":{"media":[{"id":663726602031792129,"id_str":"663726602031792129","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0_YVAAEP0AD.jpg","url":"https:\/\/t.co\/XvpmJ8BZ2Q","display_url":"pic.twitter.com\/XvpmJ8BZ2Q","expanded_url":"http:\/\/twitter.com\/AntiHussein\/status\/663726603227168768\/photo\/1","type":"photo","sizes":{"large":{"w":299,"h":168,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":299,"h":168,"resize":"fit"},"medium":{"w":299,"h":168,"resize":"fit"}},"source_status_id":663726603227168768,"source_status_id_str":"663726603227168768","source_user_id":2869527457,"source_user_id_str":"2869527457"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102057504768,"id_str":"663728102057504768","text":"@wtvradel shaddup i havent even turn 16 yet","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727845550592001,"in_reply_to_status_id_str":"663727845550592001","in_reply_to_user_id":182422520,"in_reply_to_user_id_str":"182422520","in_reply_to_screen_name":"wtvradel","user":{"id":2669541182,"id_str":"2669541182","name":"-","screen_name":"happisyndrome","location":"christmas store","url":null,"description":"261015","protected":false,"verified":false,"followers_count":64,"friends_count":25,"listed_count":0,"favourites_count":578,"statuses_count":4735,"created_at":"Tue Jul 22 14:16:21 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371276841410560\/COpDL0ai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371276841410560\/COpDL0ai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2669541182\/1446997100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wtvradel","name":"\u265b","id":182422520,"id_str":"182422520","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085659"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049083392,"id_str":"663728102049083392","text":"RT @______rrrii: \u7b2c\u4e00\u5370\u8c61\u306f\u301c\u6c60\u9eba\u306a\u3042\u3044\u3070\n\u4eca\u306e\u5370\u8c61\u306f\u301c\u8fd4\u4e8b\u9045\u3044\u3042\u3044\u3070\n\n\u3067\u3082\u3053\u306a\u3044\u3060\u5fc3\u914d\u3057\u3066\u304f\u308c\u3066\u5b09\u3057\u304b\u3063\u305f\u3088 \u3001\u3042\u308a\u304c\u3068\u306d \u3002\n\u3046\u30fc\u3093\u306a\u3093\u3060\u304b\u3093\u3060\u597d\u304d\u3060\u306a\u3042\u3042\u3044\u3070\u306e\u3053\u3068\n\u3046\u3093\u3001\u307e\u3042\u3053\u308c\u304b\u3089\u3082\u4ef2\u826f\u304f\u3057\u3088\u3046\u3088 \u3002\u8fd4\u4e8b\u306f\u3084\u304f\u3057\u308d\u3088\u99ac\u9e7f \u3002 https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3781315813,"id_str":"3781315813","name":". . ___ a .","screen_name":"iiiiia___","location":" \u5507 \u306e \u5148","url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":4,"listed_count":1,"favourites_count":4,"statuses_count":43,"created_at":"Sun Oct 04 13:01:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652900645054246913\/ZNewKiN2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652900645054246913\/ZNewKiN2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3781315813\/1444498864","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:29:12 +0000 2015","id":663196542837194752,"id_str":"663196542837194752","text":"\u7b2c\u4e00\u5370\u8c61\u306f\u301c\u6c60\u9eba\u306a\u3042\u3044\u3070\n\u4eca\u306e\u5370\u8c61\u306f\u301c\u8fd4\u4e8b\u9045\u3044\u3042\u3044\u3070\n\n\u3067\u3082\u3053\u306a\u3044\u3060\u5fc3\u914d\u3057\u3066\u304f\u308c\u3066\u5b09\u3057\u304b\u3063\u305f\u3088 \u3001\u3042\u308a\u304c\u3068\u306d \u3002\n\u3046\u30fc\u3093\u306a\u3093\u3060\u304b\u3093\u3060\u597d\u304d\u3060\u306a\u3042\u3042\u3044\u3070\u306e\u3053\u3068\n\u3046\u3093\u3001\u307e\u3042\u3053\u308c\u304b\u3089\u3082\u4ef2\u826f\u304f\u3057\u3088\u3046\u3088 \u3002\u8fd4\u4e8b\u306f\u3084\u304f\u3057\u308d\u3088\u99ac\u9e7f \u3002 https:\/\/t.co\/SyRIfWME11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3920674940,"id_str":"3920674940","name":". \u6d99","screen_name":"______rrrii","location":" \u3042\u308a\u304c\u3068 \u3002","url":null,"description":null,"protected":false,"verified":false,"followers_count":66,"friends_count":66,"listed_count":1,"favourites_count":759,"statuses_count":2635,"created_at":"Sat Oct 17 03:33:40 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658979213328842752\/AOhdWN8D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658979213328842752\/AOhdWN8D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3920674940\/1447022366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663196535014842368,"id_str":"663196535014842368","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","url":"https:\/\/t.co\/SyRIfWME11","display_url":"pic.twitter.com\/SyRIfWME11","expanded_url":"http:\/\/twitter.com\/______rrrii\/status\/663196542837194752\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":666,"h":467,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663196535014842368,"id_str":"663196535014842368","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","url":"https:\/\/t.co\/SyRIfWME11","display_url":"pic.twitter.com\/SyRIfWME11","expanded_url":"http:\/\/twitter.com\/______rrrii\/status\/663196542837194752\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":666,"h":467,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"______rrrii","name":". \u6d99","id":3920674940,"id_str":"3920674940","indices":[3,15]}],"symbols":[],"media":[{"id":663196535014842368,"id_str":"663196535014842368","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","url":"https:\/\/t.co\/SyRIfWME11","display_url":"pic.twitter.com\/SyRIfWME11","expanded_url":"http:\/\/twitter.com\/______rrrii\/status\/663196542837194752\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":666,"h":467,"resize":"fit"}},"source_status_id":663196542837194752,"source_status_id_str":"663196542837194752","source_user_id":3920674940,"source_user_id_str":"3920674940"}]},"extended_entities":{"media":[{"id":663196535014842368,"id_str":"663196535014842368","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQlvB3UYAAAp2O.jpg","url":"https:\/\/t.co\/SyRIfWME11","display_url":"pic.twitter.com\/SyRIfWME11","expanded_url":"http:\/\/twitter.com\/______rrrii\/status\/663196542837194752\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":238,"resize":"fit"},"large":{"w":666,"h":467,"resize":"fit"}},"source_status_id":663196542837194752,"source_status_id_str":"663196542837194752","source_user_id":3920674940,"source_user_id_str":"3920674940"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102066012160,"id_str":"663728102066012160","text":"Idolos \ud83d\udc99 https:\/\/t.co\/jOprm6D27P","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1559090480,"id_str":"1559090480","name":"Beatriz Schaucoski","screen_name":"beaschaucoski_","location":"Forquilhinha SC","url":null,"description":"snap: beaschaucoskii","protected":false,"verified":false,"followers_count":1579,"friends_count":1229,"listed_count":0,"favourites_count":17038,"statuses_count":37209,"created_at":"Sun Jun 30 22:40:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663470013630849025\/OHLDmsQK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663470013630849025\/OHLDmsQK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1559090480\/1446735903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jOprm6D27P","expanded_url":"https:\/\/instagram.com\/p\/93idZUJNA6-c1tFov5XHLM662GeLYMZ6b7I8g0\/","display_url":"instagram.com\/p\/93idZUJNA6-c\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085661"} +{"delete":{"status":{"id":624501628897398784,"id_str":"624501628897398784","user_id":3270756240,"user_id_str":"3270756240"},"timestamp_ms":"1447080085753"}} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102061707264,"id_str":"663728102061707264","text":"@ao_evans \/\/aku ga enak \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728002665181184,"in_reply_to_status_id_str":"663728002665181184","in_reply_to_user_id":3281290638,"in_reply_to_user_id_str":"3281290638","in_reply_to_screen_name":"ao_evans","user":{"id":3287554195,"id_str":"3287554195","name":"Minhye\ub0a8","screen_name":"ao_minhye","location":"AO Crew Dorm G-06","url":null,"description":"@AOENTRP \u2606 \ubc15\ucd08\ub871 as \ub0a8\ubbfc\ud61c \u2606 Manager of @ao_evans \u2606 3 Maret 1990 \u2606 \u20a945000 \u2606 the sky full of stars.\u300c2710 \u221e It's you, E!\u300d","protected":false,"verified":false,"followers_count":167,"friends_count":123,"listed_count":1,"favourites_count":260,"statuses_count":5365,"created_at":"Wed Jul 22 12:07:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659034134363308032\/0ENg18Hh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659034134363308032\/0ENg18Hh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287554195\/1445989214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ao_evans","name":"Evan Alexander.","id":3281290638,"id_str":"3281290638","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080085660"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078443520,"id_str":"663728102078443520","text":"@friendshipBFN \n\u3075\u308c\u3093\u3069\u3057\u3063\u3077\u3055\u3093\ud83c\udf40\n\u8fd4\u4fe1\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002\n\u5c0f\u3055\u306a\u9280\u30c6\u30fc\u30d7\u3092\u63e1\u3063\u305f\u601d\u3044\u3092\u5fd8\u308c\u305a\u3001\u5d50\u3055\u3093\u307f\u305f\u3044\u306b\u7d20\u6575\u306a\u7537\u6027\u306b\u80b2\u3063\u3066\u6b32\u3057\u3044\u3068\u601d\u3044\u307e\u3059\ud83d\ude0a\n\u5b09\u3057\u3044\u304a\u8a00\u8449\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663696508164816896,"in_reply_to_status_id_str":"663696508164816896","in_reply_to_user_id":2770073390,"in_reply_to_user_id_str":"2770073390","in_reply_to_screen_name":"friendshipBFN","user":{"id":2988484428,"id_str":"2988484428","name":"\u304a\u307f\u3064","screen_name":"b15ce6f354d84dd","location":null,"url":null,"description":"\u5d50\u3055\u3093\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":21,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Sun Jan 18 13:01:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576701433476562944\/BZlzb8re_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576701433476562944\/BZlzb8re_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"friendshipBFN","name":"\u3075\u308c\u3093\u3069\u3057\u3063\u3077","id":2770073390,"id_str":"2770073390","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102074269696,"id_str":"663728102074269696","text":"RT @Doiorcillo: En el gym me retaron cargar 300 Kg en pierna, respond\u00ed: \"Si pude cargar con el peso que dej\u00f3 su ausencia, puedo cargar todo\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2978443622,"id_str":"2978443622","name":"JOKER","screen_name":"NLpz123","location":null,"url":null,"description":"YO NO HAGO PLANES!!!","protected":false,"verified":false,"followers_count":48,"friends_count":140,"listed_count":2,"favourites_count":31,"statuses_count":4677,"created_at":"Tue Jan 13 04:15:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639099377923985409\/YwFGFJ3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639099377923985409\/YwFGFJ3w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978443622\/1424447969","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:45:36 +0000 2015","id":663578161284681728,"id_str":"663578161284681728","text":"En el gym me retaron cargar 300 Kg en pierna, respond\u00ed: \"Si pude cargar con el peso que dej\u00f3 su ausencia, puedo cargar todo\". Todos lloraron","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77070492,"id_str":"77070492","name":"Dolorcillo Bols\u00f3n","screen_name":"Doiorcillo","location":"Tehuac\u00e1n, Puebla","url":null,"description":"Chaparrito y berrinchudo. Soy un amor de ni\u00f1o.","protected":false,"verified":false,"followers_count":165917,"friends_count":186,"listed_count":842,"favourites_count":44352,"statuses_count":23054,"created_at":"Thu Sep 24 23:14:52 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661555278563807232\/8HPreG97_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661555278563807232\/8HPreG97_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77070492\/1444583411","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":216,"favorite_count":450,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Doiorcillo","name":"Dolorcillo Bols\u00f3n","id":77070492,"id_str":"77070492","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085663"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078484480,"id_str":"663728102078484480","text":"RT @ow0t: \u604b\u304c\u5b9f\u3089\u305a\u604b\u3067\u604b\u3092\u7e70\u308a\u8fd4\u3057\u3066\u3044\u308b\u604b\u3000https:\/\/t.co\/AMFicV6Nl3\nhttps:\/\/t.co\/WZqbkDtan4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3256140721,"id_str":"3256140721","name":"\u30d0 \u30b1 \u30c4","screen_name":"baketukinako","location":null,"url":null,"description":"\u3044\u304f\u3089","protected":false,"verified":false,"followers_count":19,"friends_count":85,"listed_count":0,"favourites_count":403,"statuses_count":1037,"created_at":"Fri Jun 26 00:57:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656837971291668480\/e5WjOQqc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656837971291668480\/e5WjOQqc.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655063579951935489\/doglOYxT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655063579951935489\/doglOYxT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3256140721\/1445437134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:53:01 +0000 2015","id":663700823147282432,"id_str":"663700823147282432","text":"\u604b\u304c\u5b9f\u3089\u305a\u604b\u3067\u604b\u3092\u7e70\u308a\u8fd4\u3057\u3066\u3044\u308b\u604b\u3000https:\/\/t.co\/AMFicV6Nl3\nhttps:\/\/t.co\/WZqbkDtan4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":435023553,"id_str":"435023553","name":"\u3058\u3082","screen_name":"ow0t","location":null,"url":"http:\/\/line.me\/ti\/p\/%40ido6065i","description":"\u304b\u3089\u3042\u3052\u30cb\u30b9\u30c8\u306b\u8a8d\u5b9a\u3055\u308c\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":83,"friends_count":212,"listed_count":5,"favourites_count":4567,"statuses_count":8311,"created_at":"Mon Dec 12 15:54:51 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/381042736\/shiro.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/381042736\/shiro.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528150912737349632\/p6gcRLVT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528150912737349632\/p6gcRLVT_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WZqbkDtan4","expanded_url":"https:\/\/shindanmaker.com\/413502","display_url":"shindanmaker.com\/413502","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":384590019370840064,"id_str":"384590019370840064","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","url":"https:\/\/t.co\/AMFicV6Nl3","display_url":"pic.twitter.com\/AMFicV6Nl3","expanded_url":"http:\/\/twitter.com\/cha_no_yu\/status\/384590019366645760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":384590019366645760,"source_status_id_str":"384590019366645760","source_user_id":243228824,"source_user_id_str":"243228824"}]},"extended_entities":{"media":[{"id":384590019370840064,"id_str":"384590019370840064","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","url":"https:\/\/t.co\/AMFicV6Nl3","display_url":"pic.twitter.com\/AMFicV6Nl3","expanded_url":"http:\/\/twitter.com\/cha_no_yu\/status\/384590019366645760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":384590019366645760,"source_status_id_str":"384590019366645760","source_user_id":243228824,"source_user_id_str":"243228824"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WZqbkDtan4","expanded_url":"https:\/\/shindanmaker.com\/413502","display_url":"shindanmaker.com\/413502","indices":[52,75]}],"user_mentions":[{"screen_name":"ow0t","name":"\u3058\u3082","id":435023553,"id_str":"435023553","indices":[3,8]}],"symbols":[],"media":[{"id":384590019370840064,"id_str":"384590019370840064","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","url":"https:\/\/t.co\/AMFicV6Nl3","display_url":"pic.twitter.com\/AMFicV6Nl3","expanded_url":"http:\/\/twitter.com\/cha_no_yu\/status\/384590019366645760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":384590019366645760,"source_status_id_str":"384590019366645760","source_user_id":243228824,"source_user_id_str":"243228824"}]},"extended_entities":{"media":[{"id":384590019370840064,"id_str":"384590019370840064","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BVZWlcDCcAAa-BH.jpg","url":"https:\/\/t.co\/AMFicV6Nl3","display_url":"pic.twitter.com\/AMFicV6Nl3","expanded_url":"http:\/\/twitter.com\/cha_no_yu\/status\/384590019366645760\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":384590019366645760,"source_status_id_str":"384590019366645760","source_user_id":243228824,"source_user_id_str":"243228824"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053388288,"id_str":"663728102053388288","text":"#Mundo \/ Nueva ola de contaminaci\u00f3n extrema en el noreste de China https:\/\/t.co\/8WqwHCe0m8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2364537505,"id_str":"2364537505","name":"Miranda Al Momento","screen_name":"MirandAlMomento","location":null,"url":"http:\/\/www.mirandaalmomento.com\/","description":"Portal Web. Noticias equilibradas nacionales e internacionales, de \u00faltimo momento.","protected":false,"verified":false,"followers_count":2733,"friends_count":2607,"listed_count":13,"favourites_count":1,"statuses_count":7121,"created_at":"Thu Feb 27 18:34:14 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618134455165845505\/-DlU2LPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618134455165845505\/-DlU2LPC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2364537505\/1435851284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Mundo","indices":[0,6]}],"urls":[{"url":"https:\/\/t.co\/8WqwHCe0m8","expanded_url":"http:\/\/www.mirandaalmomento.com\/?p=36670","display_url":"mirandaalmomento.com\/?p=36670","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102053384192,"id_str":"663728102053384192","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/63Y8HMHtXj","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3964506194,"id_str":"3964506194","name":"QUEEN \/ KING","screen_name":"quenhopie11","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":19,"listed_count":5,"favourites_count":6,"statuses_count":31215,"created_at":"Wed Oct 21 02:40:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656661565249163264\/H44zhm8a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656661565249163264\/H44zhm8a_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727615233163264,"quoted_status_id_str":"663727615233163264","quoted_status":{"created_at":"Mon Nov 09 14:39:29 +0000 2015","id":663727615233163264,"id_str":"663727615233163264","text":"TUNAyyyNaMAMON #PushAwardsLizQuens https:\/\/t.co\/nKGKFyUZhz","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727295669096452,"quoted_status_id_str":"663727295669096452","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/nKGKFyUZhz","expanded_url":"http:\/\/twitter.com\/TUNAyyyNaMAMON\/status\/663727295669096452","display_url":"twitter.com\/TUNAyyyNaMAMON\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/63Y8HMHtXj","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727615233163264","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080085658"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049124354,"id_str":"663728102049124354","text":"@FahaeLdh \u0e21\u0e36\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e43\u0e04\u0e23","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727941361074177,"in_reply_to_status_id_str":"663727941361074177","in_reply_to_user_id":194477746,"in_reply_to_user_id_str":"194477746","in_reply_to_screen_name":"FahaeLdh","user":{"id":279863582,"id_str":"279863582","name":".\u0e21\u0e32\u0e19\u0e38\u0e14\u0e01\u0e1a","screen_name":"onpaiaing","location":"ig : onpaiaing","url":"http:\/\/www.facebook.com\/onpaiaing","description":"king mongkut's ladkrabang","protected":false,"verified":false,"followers_count":394,"friends_count":222,"listed_count":1,"favourites_count":719,"statuses_count":64108,"created_at":"Sun Apr 10 04:59:17 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"59D999","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436932092\/Twitter_pattern_background_by_Ainon.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436932092\/Twitter_pattern_background_by_Ainon.jpg","profile_background_tile":false,"profile_link_color":"37BA84","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661993576717402112\/3UGmsD29_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661993576717402112\/3UGmsD29_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/279863582\/1444060477","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01e16a6657dc0683","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01e16a6657dc0683.json","place_type":"city","name":"Lat Krabang","full_name":"Lat Krabang, Bangkok","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.708320,13.715360],[100.708320,13.730883],[100.791425,13.730883],[100.791425,13.715360]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahaeLdh","name":"fahae","id":194477746,"id_str":"194477746","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102086828034,"id_str":"663728102086828034","text":"RT @OneLifeAlways: Everyone you meet has something to teach you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2534390276,"id_str":"2534390276","name":"ezah","screen_name":"ezzah_20","location":null,"url":null,"description":"idgaf, sssss \u2716\ufe0f","protected":false,"verified":false,"followers_count":335,"friends_count":675,"listed_count":1,"favourites_count":174,"statuses_count":4098,"created_at":"Fri May 30 06:56:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648137415010324480\/ducT1FrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648137415010324480\/ducT1FrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2534390276\/1440986465","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 08:26:04 +0000 2015","id":661459315249680384,"id_str":"661459315249680384","text":"Everyone you meet has something to teach you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2794441796,"id_str":"2794441796","name":"One Life","screen_name":"OneLifeAlways","location":null,"url":null,"description":"What defines us is how well we rise after falling. #Love #Relationship #LifeFact #Inspirational","protected":false,"verified":false,"followers_count":305707,"friends_count":129775,"listed_count":401,"favourites_count":8,"statuses_count":3427,"created_at":"Sat Sep 06 17:53:28 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662631199408439296\/HhXKktkU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662631199408439296\/HhXKktkU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2794441796\/1446773420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1511,"favorite_count":1082,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OneLifeAlways","name":"One Life","id":2794441796,"id_str":"2794441796","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085666"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078464000,"id_str":"663728102078464000","text":"RT @Musicaraj: #Thoongaavanam #Thoongavanam \n30 min gone in malaysia.... Movie is like Rajdhani express!!!! \ud83d\ude4c\ud83d\ude4c\ud83d\ude4c\ud83d\ude4c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116672069,"id_str":"116672069","name":"Hemanth","screen_name":"reachhemanth","location":"Bengaluru, Karnataka","url":null,"description":null,"protected":false,"verified":false,"followers_count":239,"friends_count":23,"listed_count":15,"favourites_count":97,"statuses_count":16161,"created_at":"Tue Feb 23 07:18:00 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725165788794880\/TwxrOIG8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725165788794880\/TwxrOIG8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116672069\/1442421545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:34 +0000 2015","id":663723103902502912,"id_str":"663723103902502912","text":"#Thoongaavanam #Thoongavanam \n30 min gone in malaysia.... Movie is like Rajdhani express!!!! \ud83d\ude4c\ud83d\ude4c\ud83d\ude4c\ud83d\ude4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98105627,"id_str":"98105627","name":"Kamal En Kadhalar","screen_name":"Musicaraj","location":"Cbe\/Salem\/Chennai","url":null,"description":"A photographer, A biker gal, Feminist, Tomboy, Love Kamal Haasan! artist , an Avionics Engineer & Asst Professor, Commissioned with rank of Lieutenant","protected":false,"verified":false,"followers_count":733,"friends_count":454,"listed_count":6,"favourites_count":1114,"statuses_count":4420,"created_at":"Sun Dec 20 11:14:40 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0ADE7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570577932683190272\/UiY88XpZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570577932683190272\/UiY88XpZ.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"B5AD62","profile_sidebar_fill_color":"747A59","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663192887237017600\/osfSkZnV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663192887237017600\/osfSkZnV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98105627\/1444098734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5446838227498f51","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5446838227498f51.json","place_type":"city","name":"Coimbatore","full_name":"Coimbatore, Tamil Nadu","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[76.657719,10.807950],[76.657719,11.237298],[77.100465,11.237298],[77.100465,10.807950]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":14,"entities":{"hashtags":[{"text":"Thoongaavanam","indices":[0,14]},{"text":"Thoongavanam","indices":[15,28]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Thoongaavanam","indices":[15,29]},{"text":"Thoongavanam","indices":[30,43]}],"urls":[],"user_mentions":[{"screen_name":"Musicaraj","name":"Kamal En Kadhalar","id":98105627,"id_str":"98105627","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085664"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049058816,"id_str":"663728102049058816","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/uuSMwwtygD","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891808051,"id_str":"891808051","name":"Kaitlynmarie","screen_name":"katy_marieee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":300,"friends_count":373,"listed_count":0,"favourites_count":894,"statuses_count":4976,"created_at":"Fri Oct 19 20:44:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553546697620869122\/xUcPpESB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553546697620869122\/xUcPpESB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891808051\/1420919919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uuSMwwtygD","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102057492480,"id_str":"663728102057492480","text":"\u304a\u3044\u798f\u4e45\u3057\u3076\u308a\u306b\u898b\u305f\u6c17\u304c\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u03b3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1926115477,"id_str":"1926115477","name":"\u3044\u308a\u3068","screen_name":"Irito_burst","location":"\u9280\u67a0\u3044\u308a\u3066\u3043\u3081\u3063\u3068","url":null,"description":"\u62b9\u8336\u30a2\u30a4\u30b9\u30dc\u30eb\u30c6\u30de\u30f3\u3067\u3059\u3002DTM\u3082\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":494,"friends_count":533,"listed_count":21,"favourites_count":7991,"statuses_count":60503,"created_at":"Wed Oct 02 07:57:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/495181591614734337\/xRuh-FHK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/495181591614734337\/xRuh-FHK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1926115477\/1418540361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085659"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070075392,"id_str":"663728102070075392","text":"RT @zakoshisyoh: \u30c9\u30e9\u30af\u30a8\u306e\u6575\u3082\u306e\u307e\u306d25\u3000\u30ec\u30c3\u30b5\u30fc\u30c7\u30fc\u30e2\u30f3 https:\/\/t.co\/x9u7Wvg8YP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2566107950,"id_str":"2566107950","name":"\u30ac\u30c1\u30e3\u7981\u5c11\u5973\u3061\u3073\u3046\u3055","screen_name":"shanks_marryme","location":"\u30a6\u30bd\u30c3\u30d7\u3068\u30de\u30eb\u30b3\u306e\u9593","url":null,"description":"\u9ed2\u30a6\u30a3\u30ba\u2192\u9b54\u6cd5\u5c11\u5973\u3061\u3073\u3046\u3055\/\u30dd\u30b1\u30e2\u30f3\n \u8272\u3005\u6c17\u307e\u3050\u308c","protected":false,"verified":false,"followers_count":585,"friends_count":428,"listed_count":7,"favourites_count":8059,"statuses_count":6872,"created_at":"Fri Jun 13 23:54:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661910249230635008\/KKxVtKdz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661910249230635008\/KKxVtKdz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566107950\/1446376757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:49:23 +0000 2015","id":663699908554129409,"id_str":"663699908554129409","text":"\u30c9\u30e9\u30af\u30a8\u306e\u6575\u3082\u306e\u307e\u306d25\u3000\u30ec\u30c3\u30b5\u30fc\u30c7\u30fc\u30e2\u30f3 https:\/\/t.co\/x9u7Wvg8YP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141215262,"id_str":"141215262","name":"\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6","screen_name":"zakoshisyoh","location":"\u5730\u7344\u306e\u56db\u4e01\u76ee","url":"http:\/\/ameblo.jp\/hollywood-zakoshisyoh\/","description":"\u30ad\u30f3\u30b0OF\u3042\u3089\u3073\u304d\u306e\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6\u3067\u30fc\u3059\uff01\u30ac\u30c3\u30c4\u30ea\u30ac\u30c3\u30c4\uff01\uff01","protected":false,"verified":false,"followers_count":16162,"friends_count":284,"listed_count":511,"favourites_count":0,"statuses_count":8477,"created_at":"Fri May 07 13:26:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608838862492688384\/YKwPp45Y.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608838862492688384\/YKwPp45Y.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/882538663\/___30_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/882538663\/___30_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141215262\/1431158346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":453,"favorite_count":362,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663699907052593154,"id_str":"663699907052593154","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663699907052593154,"id_str":"663699907052593154","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}},{"id":663699906641551360,"id_str":"663699906641551360","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjHTUYAA4mqp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjHTUYAA4mqp.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zakoshisyoh","name":"\u30cf\u30ea\u30a6\u30c3\u30c9\u30b6\u30b3\u30b7\u30b7\u30e7\u30a6","id":141215262,"id_str":"141215262","indices":[3,15]}],"symbols":[],"media":[{"id":663699907052593154,"id_str":"663699907052593154","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663699908554129409,"source_status_id_str":"663699908554129409","source_user_id":141215262,"source_user_id_str":"141215262"}]},"extended_entities":{"media":[{"id":663699907052593154,"id_str":"663699907052593154","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjI1UYAIHPvj.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663699908554129409,"source_status_id_str":"663699908554129409","source_user_id":141215262,"source_user_id_str":"141215262"},{"id":663699906641551360,"id_str":"663699906641551360","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXvjHTUYAA4mqp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXvjHTUYAA4mqp.jpg","url":"https:\/\/t.co\/x9u7Wvg8YP","display_url":"pic.twitter.com\/x9u7Wvg8YP","expanded_url":"http:\/\/twitter.com\/zakoshisyoh\/status\/663699908554129409\/photo\/1","type":"photo","sizes":{"medium":{"w":519,"h":466,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":519,"h":466,"resize":"fit"},"small":{"w":340,"h":305,"resize":"fit"}},"source_status_id":663699908554129409,"source_status_id_str":"663699908554129409","source_user_id":141215262,"source_user_id_str":"141215262"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080085662"} +{"delete":{"status":{"id":645933259835244544,"id_str":"645933259835244544","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080085919"}} +{"delete":{"status":{"id":663448409118867456,"id_str":"663448409118867456","user_id":4114740312,"user_id_str":"4114740312"},"timestamp_ms":"1447080085923"}} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102049054720,"id_str":"663728102049054720","text":"My new housemate\/boarder \ud83d\ude02\ud83d\ude0d @Abbypaulino https:\/\/t.co\/eME0bUmZmg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2588873048,"id_str":"2588873048","name":"Nyka Acosta","screen_name":"AcostaNyka","location":null,"url":null,"description":"annoying people since 1995 \u2022 IG: AcostaNyka","protected":false,"verified":false,"followers_count":429,"friends_count":273,"listed_count":3,"favourites_count":10350,"statuses_count":11679,"created_at":"Thu Jun 26 04:55:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660722190862585856\/aiuxlnLW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660722190862585856\/aiuxlnLW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2588873048\/1446569746","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"006523c50dfe9086","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/006523c50dfe9086.json","place_type":"city","name":"Quezon City","full_name":"Quezon City, National Capital Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.989705,14.589376],[120.989705,14.776648],[121.135766,14.776648],[121.135766,14.589376]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Abbypaulino","name":"abby paulino","id":1585668078,"id_str":"1585668078","indices":[28,40]}],"symbols":[],"media":[{"id":663728086601494528,"id_str":"663728086601494528","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLZ1U8AApsOV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLZ1U8AApsOV.jpg","url":"https:\/\/t.co\/eME0bUmZmg","display_url":"pic.twitter.com\/eME0bUmZmg","expanded_url":"http:\/\/twitter.com\/AcostaNyka\/status\/663728102049054720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728086601494528,"id_str":"663728086601494528","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLZ1U8AApsOV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLZ1U8AApsOV.jpg","url":"https:\/\/t.co\/eME0bUmZmg","display_url":"pic.twitter.com\/eME0bUmZmg","expanded_url":"http:\/\/twitter.com\/AcostaNyka\/status\/663728102049054720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085657"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102070054916,"id_str":"663728102070054916","text":"RT @TheWorldStories: Nowhere compares to the magical world above the clouds \u2601\ufe0f http:\/\/t.co\/FRo5NeZTQe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343974431,"id_str":"343974431","name":"Azeiii","screen_name":"tkdgxuss","location":"Philippines","url":"http:\/\/fb.com\/tkdgxuss","description":"Not your typical fat neighborhood .","protected":false,"verified":false,"followers_count":681,"friends_count":441,"listed_count":2,"favourites_count":2504,"statuses_count":3667,"created_at":"Thu Jul 28 10:51:03 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660991384099291136\/AfGHh2_A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660991384099291136\/AfGHh2_A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343974431\/1446267895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 11 01:38:24 +0000 2015","id":642150163486674944,"id_str":"642150163486674944","text":"Nowhere compares to the magical world above the clouds \u2601\ufe0f http:\/\/t.co\/FRo5NeZTQe","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284441324,"id_str":"284441324","name":"Travel Vibes\u27b9","screen_name":"TheWorldStories","location":"yocontactus@gmail.com","url":"http:\/\/Instagram.com\/travelvibees\/","description":"For those who travel, explore and enjoy the world!\u270c\ufe0f Dm us your pictures,we'll try to post'em ,We don't own any of the picture ,for DMCA removal see email below","protected":false,"verified":false,"followers_count":2382931,"friends_count":553,"listed_count":5053,"favourites_count":136,"statuses_count":56736,"created_at":"Tue Apr 19 08:44:53 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284441324\/1446790199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26791,"favorite_count":23661,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":642150145505693696,"id_str":"642150145505693696","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":749,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":749,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":642150145505693696,"id_str":"642150145505693696","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":749,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":749,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}},{"id":642150145572798464,"id_str":"642150145572798464","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7dVAAAi-Pf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7dVAAAi-Pf.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":750,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"}}},{"id":642150145631498240,"id_str":"642150145631498240","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7rUsAAftG2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7rUsAAftG2.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":642150145690173444,"id_str":"642150145690173444","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ75UAAQh2do.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ75UAAQh2do.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheWorldStories","name":"Travel Vibes\u27b9","id":284441324,"id_str":"284441324","indices":[3,19]}],"symbols":[],"media":[{"id":642150145505693696,"id_str":"642150145505693696","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":749,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":749,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":642150163486674944,"source_status_id_str":"642150163486674944","source_user_id":284441324,"source_user_id_str":"284441324"}]},"extended_entities":{"media":[{"id":642150145505693696,"id_str":"642150145505693696","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7NVEAAduVg.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":749,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":749,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":642150163486674944,"source_status_id_str":"642150163486674944","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":642150145572798464,"id_str":"642150145572798464","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7dVAAAi-Pf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7dVAAAi-Pf.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":498,"h":750,"resize":"fit"},"small":{"w":340,"h":512,"resize":"fit"}},"source_status_id":642150163486674944,"source_status_id_str":"642150163486674944","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":642150145631498240,"id_str":"642150145631498240","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ7rUsAAftG2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ7rUsAAftG2.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":642150163486674944,"source_status_id_str":"642150163486674944","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":642150145690173444,"id_str":"642150145690173444","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/COlgJ75UAAQh2do.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/COlgJ75UAAQh2do.jpg","url":"http:\/\/t.co\/FRo5NeZTQe","display_url":"pic.twitter.com\/FRo5NeZTQe","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/642150163486674944\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":750,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":750,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":642150163486674944,"source_status_id_str":"642150163486674944","source_user_id":284441324,"source_user_id_str":"284441324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080085662"} +{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728102078459904,"id_str":"663728102078459904","text":"https:\/\/t.co\/p0X91vEh5Z","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3827216544,"id_str":"3827216544","name":"riki panggabean","screen_name":"RikiPanggabean","location":null,"url":null,"description":"vany addicted","protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Thu Oct 08 16:55:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652170132710518785\/5B4gtrBz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652170132710518785\/5B4gtrBz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3827216544\/1444324586","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728092267962368,"id_str":"663728092267962368","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLu8UYAAUZV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLu8UYAAUZV_.jpg","url":"https:\/\/t.co\/p0X91vEh5Z","display_url":"pic.twitter.com\/p0X91vEh5Z","expanded_url":"http:\/\/twitter.com\/RikiPanggabean\/status\/663728102078459904\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":483,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728092267962368,"id_str":"663728092267962368","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLu8UYAAUZV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLu8UYAAUZV_.jpg","url":"https:\/\/t.co\/p0X91vEh5Z","display_url":"pic.twitter.com\/p0X91vEh5Z","expanded_url":"http:\/\/twitter.com\/RikiPanggabean\/status\/663728102078459904\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":483,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663728097838039040,"id_str":"663728097838039040","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDsVAAAvKeK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDsVAAAvKeK.jpg","url":"https:\/\/t.co\/p0X91vEh5Z","display_url":"pic.twitter.com\/p0X91vEh5Z","expanded_url":"http:\/\/twitter.com\/RikiPanggabean\/status\/663728102078459904\/photo\/1","type":"photo","sizes":{"large":{"w":396,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":618,"resize":"fit"},"medium":{"w":396,"h":720,"resize":"fit"}}},{"id":663728097699606530,"id_str":"663728097699606530","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMDLUsAIetoT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMDLUsAIetoT.jpg","url":"https:\/\/t.co\/p0X91vEh5Z","display_url":"pic.twitter.com\/p0X91vEh5Z","expanded_url":"http:\/\/twitter.com\/RikiPanggabean\/status\/663728102078459904\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":483,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663728099847049216,"id_str":"663728099847049216","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMLLUEAA77RQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMLLUEAA77RQ.jpg","url":"https:\/\/t.co\/p0X91vEh5Z","display_url":"pic.twitter.com\/p0X91vEh5Z","expanded_url":"http:\/\/twitter.com\/RikiPanggabean\/status\/663728102078459904\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":483,"resize":"fit"},"small":{"w":340,"h":228,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080085664"} +{"delete":{"status":{"id":404978611028885504,"id_str":"404978611028885504","user_id":1469720490,"user_id_str":"1469720490"},"timestamp_ms":"1447080086459"}} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106251886592,"id_str":"663728106251886592","text":"cheguei","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":752196883,"id_str":"752196883","name":"pedro","screen_name":"falshee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1086,"friends_count":266,"listed_count":6,"favourites_count":7,"statuses_count":23342,"created_at":"Sun Aug 12 01:01:13 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614200237826117632\/erqreFCC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614200237826117632\/erqreFCC.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342420537556992\/nyxnx2Gf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342420537556992\/nyxnx2Gf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/752196883\/1446988230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080086659"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256080896,"id_str":"663728106256080896","text":"RT @ddlovato: #1 trending topic worldwide! Thank you guys so much!! #AskDemi \ud83d\ude1c That was awesome! https:\/\/t.co\/mIf7MW3TKh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211387386,"id_str":"211387386","name":"Jada \u2655\u2693\ufe0f","screen_name":"JadaLovato","location":null,"url":null,"description":"#FahloFam @ToriKelly #Shots | #selenator #Toraay #Harmonizer #Lovatic #Belieber #Directioner #5SOSFam | #iAmMixerati @crowdmix @mixerati","protected":false,"verified":false,"followers_count":88317,"friends_count":23108,"listed_count":79,"favourites_count":3369,"statuses_count":118517,"created_at":"Wed Nov 03 03:11:24 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"BF2020","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659289814567555073\/T5Vs9H2u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659289814567555073\/T5Vs9H2u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211387386\/1446021915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:31:04 +0000 2015","id":663695295902040064,"id_str":"663695295902040064","text":"#1 trending topic worldwide! Thank you guys so much!! #AskDemi \ud83d\ude1c That was awesome! https:\/\/t.co\/mIf7MW3TKh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672546,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4883,"favorite_count":7833,"entities":{"hashtags":[{"text":"AskDemi","indices":[54,62]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663695251547291648,"id_str":"663695251547291648","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","url":"https:\/\/t.co\/mIf7MW3TKh","display_url":"pic.twitter.com\/mIf7MW3TKh","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663695295902040064\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695251547291648,"id_str":"663695251547291648","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","url":"https:\/\/t.co\/mIf7MW3TKh","display_url":"pic.twitter.com\/mIf7MW3TKh","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663695295902040064\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":838,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/240x240\/WzXevOnDQbVGYvUh.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/480x480\/YfYlO75BWLdGo9V9.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/pl\/IupI20AQfXstjnRt.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/480x480\/YfYlO75BWLdGo9V9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/pl\/IupI20AQfXstjnRt.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[68,76]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[],"media":[{"id":663695251547291648,"id_str":"663695251547291648","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","url":"https:\/\/t.co\/mIf7MW3TKh","display_url":"pic.twitter.com\/mIf7MW3TKh","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663695295902040064\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663695295902040064,"source_status_id_str":"663695295902040064","source_user_id":21111883,"source_user_id_str":"21111883"}]},"extended_entities":{"media":[{"id":663695251547291648,"id_str":"663695251547291648","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663695251547291648\/pu\/img\/5hcRKi7iS1ql_-c1.jpg","url":"https:\/\/t.co\/mIf7MW3TKh","display_url":"pic.twitter.com\/mIf7MW3TKh","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663695295902040064\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663695295902040064,"source_status_id_str":"663695295902040064","source_user_id":21111883,"source_user_id_str":"21111883","video_info":{"aspect_ratio":[1,1],"duration_millis":838,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/240x240\/WzXevOnDQbVGYvUh.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/480x480\/YfYlO75BWLdGo9V9.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/pl\/IupI20AQfXstjnRt.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/vid\/480x480\/YfYlO75BWLdGo9V9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663695251547291648\/pu\/pl\/IupI20AQfXstjnRt.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247749632,"id_str":"663728106247749632","text":"RT @JUEGOSPS3OFERTA: SORTEO!!! JUEGO A ELEGIR!!!\n\nCondiciones:\n- Dar RT a este tweet\n- Seguir a @JUEGOSPS3OFERTA \n\nGanador dia 15\/11. https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":225654132,"id_str":"225654132","name":"Mario Cabrera Sanz","screen_name":"MarioCSanz","location":"Madrid","url":null,"description":"So\u00f1ador del 92,jugador del S.S.Gialloneri.Experto en situaciones caoticas. La batalla esta en tu mente,tu decides si eres el comandante o un simple soldado.","protected":false,"verified":false,"followers_count":252,"friends_count":461,"listed_count":2,"favourites_count":1815,"statuses_count":13207,"created_at":"Sun Dec 12 03:34:32 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661614110216470533\/-8BMPFOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661614110216470533\/-8BMPFOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/225654132\/1423436546","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:45 +0000 2015","id":663710569762004992,"id_str":"663710569762004992","text":"SORTEO!!! JUEGO A ELEGIR!!!\n\nCondiciones:\n- Dar RT a este tweet\n- Seguir a @JUEGOSPS3OFERTA \n\nGanador dia 15\/11. https:\/\/t.co\/y4RrtJZAgL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3816943612,"id_str":"3816943612","name":"JUEGOS PS3 BARATOS","screen_name":"JUEGOSPS3OFERTA","location":"Val\u00e8ncia, Comunitat Valenciana","url":null,"description":"FIFA 16, NBA 2K16, BLACK OPS 3 Y MOTO GP EN DIGITAL POR SOLO 30\u20ac CADA UNO. SIN LISTAS DE ESPERA, AL MOMENTO. SERIEDAD.\n\n LOWCOST. WHATSAPP: 658643401","protected":false,"verified":false,"followers_count":1705,"friends_count":1710,"listed_count":1,"favourites_count":168,"statuses_count":215,"created_at":"Tue Sep 29 18:04:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660920676933611520\/TNfGzTPN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660920676933611520\/TNfGzTPN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3816943612\/1443550119","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JUEGOSPS3OFERTA","name":"JUEGOS PS3 BARATOS","id":3816943612,"id_str":"3816943612","indices":[75,91]}],"symbols":[],"media":[{"id":663710544772337666,"id_str":"663710544772337666","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":667,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"large":{"w":580,"h":667,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710544772337666,"id_str":"663710544772337666","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":667,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"large":{"w":580,"h":667,"resize":"fit"}}},{"id":663710555069390848,"id_str":"663710555069390848","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5O7yWoAAjB5I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5O7yWoAAjB5I.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"large":{"w":888,"h":1024,"resize":"fit"},"small":{"w":340,"h":392,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":691,"resize":"fit"}}},{"id":663710566133964801,"id_str":"663710566133964801","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5PlAWoAEhTGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5PlAWoAEhTGS.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"large":{"w":390,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"medium":{"w":390,"h":448,"resize":"fit"}}},{"id":663710568214347776,"id_str":"663710568214347776","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5PswWwAAZc7m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5PswWwAAZc7m.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JUEGOSPS3OFERTA","name":"JUEGOS PS3 BARATOS","id":3816943612,"id_str":"3816943612","indices":[3,19]},{"screen_name":"JUEGOSPS3OFERTA","name":"JUEGOS PS3 BARATOS","id":3816943612,"id_str":"3816943612","indices":[96,112]}],"symbols":[],"media":[{"id":663710544772337666,"id_str":"663710544772337666","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":667,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"large":{"w":580,"h":667,"resize":"fit"}},"source_status_id":663710569762004992,"source_status_id_str":"663710569762004992","source_user_id":3816943612,"source_user_id_str":"3816943612"}]},"extended_entities":{"media":[{"id":663710544772337666,"id_str":"663710544772337666","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5OVbWEAIv2mR.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":667,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"large":{"w":580,"h":667,"resize":"fit"}},"source_status_id":663710569762004992,"source_status_id_str":"663710569762004992","source_user_id":3816943612,"source_user_id_str":"3816943612"},{"id":663710555069390848,"id_str":"663710555069390848","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5O7yWoAAjB5I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5O7yWoAAjB5I.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"large":{"w":888,"h":1024,"resize":"fit"},"small":{"w":340,"h":392,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":691,"resize":"fit"}},"source_status_id":663710569762004992,"source_status_id_str":"663710569762004992","source_user_id":3816943612,"source_user_id_str":"3816943612"},{"id":663710566133964801,"id_str":"663710566133964801","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5PlAWoAEhTGS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5PlAWoAEhTGS.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"large":{"w":390,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":390,"resize":"fit"},"medium":{"w":390,"h":448,"resize":"fit"}},"source_status_id":663710569762004992,"source_status_id_str":"663710569762004992","source_user_id":3816943612,"source_user_id_str":"3816943612"},{"id":663710568214347776,"id_str":"663710568214347776","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5PswWwAAZc7m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5PswWwAAZc7m.jpg","url":"https:\/\/t.co\/y4RrtJZAgL","display_url":"pic.twitter.com\/y4RrtJZAgL","expanded_url":"http:\/\/twitter.com\/JUEGOSPS3OFERTA\/status\/663710569762004992\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663710569762004992,"source_status_id_str":"663710569762004992","source_user_id":3816943612,"source_user_id_str":"3816943612"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106251907072,"id_str":"663728106251907072","text":"DjpadillsP: nicoleferrer07: kathnielquotes_: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitens1: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3847883300,"id_str":"3847883300","name":"Alterbridge","screen_name":"pca_moh4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":4,"listed_count":13,"favourites_count":0,"statuses_count":20303,"created_at":"Sat Oct 10 13:35:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661067152317743104\/YfC9zLGS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661067152317743104\/YfC9zLGS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[114,134]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080086659"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256076800,"id_str":"663728106256076800","text":"RT @kismetseolurtv: Melis'in Serhan'a ilgisi mi ? Var\nEvet ise Retweet\nHay\u0131r ise Be\u011fen\n#K\u0131smetseOlur","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4110592971,"id_str":"4110592971","name":"Selin \u00d6","screen_name":"Seliin054","location":"Wien, \u00d6sterreich","url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":19,"listed_count":0,"favourites_count":517,"statuses_count":19,"created_at":"Wed Nov 04 08:19:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661820616614551552\/H5mik_sT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661820616614551552\/H5mik_sT_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:41:52 +0000 2015","id":663698016524754944,"id_str":"663698016524754944","text":"Melis'in Serhan'a ilgisi mi ? Var\nEvet ise Retweet\nHay\u0131r ise Be\u011fen\n#K\u0131smetseOlur","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3899397195,"id_str":"3899397195","name":"K\u0131smetse Olur","screen_name":"kismetseolurtv","location":null,"url":"http:\/\/www.kanald.com.tr","description":"K\u0131smetse Olur program\u0131 resmi twitter hesab\u0131d\u0131r.","protected":false,"verified":false,"followers_count":7445,"friends_count":3,"listed_count":2,"favourites_count":20,"statuses_count":101,"created_at":"Thu Oct 08 12:31:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654366971279056897\/PFspgIrQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654366971279056897\/PFspgIrQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3899397195\/1444848217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":48,"entities":{"hashtags":[{"text":"K\u0131smetseOlur","indices":[67,80]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"K\u0131smetseOlur","indices":[87,100]}],"urls":[],"user_mentions":[{"screen_name":"kismetseolurtv","name":"K\u0131smetse Olur","id":3899397195,"id_str":"3899397195","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247704576,"id_str":"663728106247704576","text":"\u0418 \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u043e, \u0432 \u044d\u0444\u0438\u0440\u0435 \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u044b\u0435 \u043f\u0435\u043d\u0434\u0435\u043b\u0438 \u0434\u043b\u044f \u041b\u0430\u043d\u0434\u044b\u0448\u043a\u0438 \u043e\u0442...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264735188,"id_str":"1264735188","name":"MelanieAlexande","screen_name":"Melanie09825037","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":38,"friends_count":13,"listed_count":2,"favourites_count":0,"statuses_count":166729,"created_at":"Wed Mar 13 15:33:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3657062756\/bbc71cabdbff0eac907564a1c8fec568_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3657062756\/bbc71cabdbff0eac907564a1c8fec568_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264502272,"id_str":"663728106264502272","text":", pegooo no ponto fracoooo aaf, aai j\u00e1eraaa kk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2517062937,"id_str":"2517062937","name":"Srnt \u2661","screen_name":"Meigasaa","location":null,"url":null,"description":"Deixa ir, tem coisa melhor pra vir...","protected":false,"verified":false,"followers_count":385,"friends_count":465,"listed_count":0,"favourites_count":2902,"statuses_count":9769,"created_at":"Tue Apr 29 15:58:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717520826855424\/geGTLjhP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717520826855424\/geGTLjhP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2517062937\/1447009075","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268663808,"id_str":"663728106268663808","text":"RT @zlpnotrum: https:\/\/t.co\/WM3En12PgU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3056646749,"id_str":"3056646749","name":"Arlequ\u00edn","screen_name":"Sadgasmito","location":"Barcelona, Catalunya. [*+]","url":"http:\/\/ask.fm\/Sadgasmito","description":"Y milenta pu\u00f1os llevanten\nel m\u00e1stil d'una asturina.\nD'Uvi\u00e9u a Bagdag trema l'imperialismu.\nCuba, Irlanda, Palestina.","protected":false,"verified":false,"followers_count":95,"friends_count":77,"listed_count":7,"favourites_count":7330,"statuses_count":18428,"created_at":"Mon Feb 23 18:09:56 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615551091338551296\/nb2okzib.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615551091338551296\/nb2okzib.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727772754399232\/Pc1Jj0wH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727772754399232\/Pc1Jj0wH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3056646749\/1445784459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:30 +0000 2015","id":663726107426955264,"id_str":"663726107426955264","text":"https:\/\/t.co\/WM3En12PgU","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2478352399,"id_str":"2478352399","name":"M","screen_name":"zlpnotrum","location":null,"url":null,"description":"sencillez y colegueo","protected":false,"verified":false,"followers_count":500,"friends_count":197,"listed_count":5,"favourites_count":1584,"statuses_count":7040,"created_at":"Mon May 05 13:10:01 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652243759418228736\/RA2OWamQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652243759418228736\/RA2OWamQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2478352399\/1400948418","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726101408186368,"id_str":"663726101408186368","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","url":"https:\/\/t.co\/WM3En12PgU","display_url":"pic.twitter.com\/WM3En12PgU","expanded_url":"http:\/\/twitter.com\/zlpnotrum\/status\/663726107426955264\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726101408186368,"id_str":"663726101408186368","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","url":"https:\/\/t.co\/WM3En12PgU","display_url":"pic.twitter.com\/WM3En12PgU","expanded_url":"http:\/\/twitter.com\/zlpnotrum\/status\/663726107426955264\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zlpnotrum","name":"M","id":2478352399,"id_str":"2478352399","indices":[3,13]}],"symbols":[],"media":[{"id":663726101408186368,"id_str":"663726101408186368","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","url":"https:\/\/t.co\/WM3En12PgU","display_url":"pic.twitter.com\/WM3En12PgU","expanded_url":"http:\/\/twitter.com\/zlpnotrum\/status\/663726107426955264\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726107426955264,"source_status_id_str":"663726107426955264","source_user_id":2478352399,"source_user_id_str":"2478352399"}]},"extended_entities":{"media":[{"id":663726101408186368,"id_str":"663726101408186368","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHX2aXAAApIra.jpg","url":"https:\/\/t.co\/WM3En12PgU","display_url":"pic.twitter.com\/WM3En12PgU","expanded_url":"http:\/\/twitter.com\/zlpnotrum\/status\/663726107426955264\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726107426955264,"source_status_id_str":"663726107426955264","source_user_id":2478352399,"source_user_id_str":"2478352399"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106277101568,"id_str":"663728106277101568","text":"RT @kinnay_21: #coolLikeGREE https:\/\/t.co\/Ubqi3OVD47","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4096998742,"id_str":"4096998742","name":"Maybert Ghana","screen_name":"MaybertGhana","location":"Accra, Ghana","url":"http:\/\/www.maybertgh.com","description":"The Leading Company in Air conditioning and Refrigeration in Ghana and Sole Distributor of GREE air conditioners and products | 0307010465","protected":false,"verified":false,"followers_count":24,"friends_count":26,"listed_count":0,"favourites_count":0,"statuses_count":36,"created_at":"Mon Nov 02 11:38:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661150041730637824\/UlTwNbYq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661150041730637824\/UlTwNbYq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4096998742\/1446464901","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:26 +0000 2015","id":663719799915216896,"id_str":"663719799915216896","text":"#coolLikeGREE https:\/\/t.co\/Ubqi3OVD47","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611732982,"id_str":"611732982","name":"\u2660\ufe0fKiD_king\u2660\ufe0f","screen_name":"kinnay_21","location":null,"url":null,"description":"#MUFC...IG: 1kid_king...SnapChat: kinnay_21","protected":false,"verified":false,"followers_count":648,"friends_count":422,"listed_count":13,"favourites_count":26,"statuses_count":66857,"created_at":"Mon Jun 18 12:42:55 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661614338906726400\/0vfIfHAZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661614338906726400\/0vfIfHAZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611732982\/1441152067","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"coolLikeGREE","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/Ubqi3OVD47","expanded_url":"https:\/\/twitter.com\/quaqu_abeeku\/status\/663718555825930240","display_url":"twitter.com\/quaqu_abeeku\/s\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"coolLikeGREE","indices":[15,28]}],"urls":[{"url":"https:\/\/t.co\/Ubqi3OVD47","expanded_url":"https:\/\/twitter.com\/quaqu_abeeku\/status\/663718555825930240","display_url":"twitter.com\/quaqu_abeeku\/s\u2026","indices":[30,53]}],"user_mentions":[{"screen_name":"kinnay_21","name":"\u2660\ufe0fKiD_king\u2660\ufe0f","id":611732982,"id_str":"611732982","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080086665"} +{"delete":{"status":{"id":661562016667058176,"id_str":"661562016667058176","user_id":59967889,"user_id_str":"59967889"},"timestamp_ms":"1447080086685"}} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106281242625,"id_str":"663728106281242625","text":"RT @AMeknaci: J'assure les arri\u00e8res de Nikos!\nBig up les GEA de Reims \ud83d\udc8b\u2764\ufe0f https:\/\/t.co\/Ax1PCFTw1x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3940286837,"id_str":"3940286837","name":"Thomas Aubry","screen_name":"tompouceee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":11,"listed_count":0,"favourites_count":2,"statuses_count":21,"created_at":"Mon Oct 12 20:43:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653674186137858048\/Lf5Wa-NM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653674186137858048\/Lf5Wa-NM_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:59:01 +0000 2015","id":663128552678756353,"id_str":"663128552678756353","text":"J'assure les arri\u00e8res de Nikos!\nBig up les GEA de Reims \ud83d\udc8b\u2764\ufe0f https:\/\/t.co\/Ax1PCFTw1x","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2216116341,"id_str":"2216116341","name":"Le Minion","screen_name":"AMeknaci","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":184,"friends_count":147,"listed_count":0,"favourites_count":833,"statuses_count":604,"created_at":"Mon Dec 09 17:59:44 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662652617315758081\/WijonCtm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662652617315758081\/WijonCtm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2216116341\/1441824191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663128534173528065,"id_str":"663128534173528065","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","url":"https:\/\/t.co\/Ax1PCFTw1x","display_url":"pic.twitter.com\/Ax1PCFTw1x","expanded_url":"http:\/\/twitter.com\/AMeknaci\/status\/663128552678756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":868,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":926,"resize":"fit"},"small":{"w":340,"h":491,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663128534173528065,"id_str":"663128534173528065","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","url":"https:\/\/t.co\/Ax1PCFTw1x","display_url":"pic.twitter.com\/Ax1PCFTw1x","expanded_url":"http:\/\/twitter.com\/AMeknaci\/status\/663128552678756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":868,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":926,"resize":"fit"},"small":{"w":340,"h":491,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AMeknaci","name":"Le Minion","id":2216116341,"id_str":"2216116341","indices":[3,12]}],"symbols":[],"media":[{"id":663128534173528065,"id_str":"663128534173528065","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","url":"https:\/\/t.co\/Ax1PCFTw1x","display_url":"pic.twitter.com\/Ax1PCFTw1x","expanded_url":"http:\/\/twitter.com\/AMeknaci\/status\/663128552678756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":868,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":926,"resize":"fit"},"small":{"w":340,"h":491,"resize":"fit"}},"source_status_id":663128552678756353,"source_status_id_str":"663128552678756353","source_user_id":2216116341,"source_user_id_str":"2216116341"}]},"extended_entities":{"media":[{"id":663128534173528065,"id_str":"663128534173528065","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPn42_WsAEws6G.jpg","url":"https:\/\/t.co\/Ax1PCFTw1x","display_url":"pic.twitter.com\/Ax1PCFTw1x","expanded_url":"http:\/\/twitter.com\/AMeknaci\/status\/663128552678756353\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":868,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":926,"resize":"fit"},"small":{"w":340,"h":491,"resize":"fit"}},"source_status_id":663128552678756353,"source_status_id_str":"663128552678756353","source_user_id":2216116341,"source_user_id_str":"2216116341"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080086666"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256113664,"id_str":"663728106256113664","text":"RT @Ma7moudAyoub: #\u0627\u0644\u0647\u0627\u0634\u062a\u0627\u062c\u0648\u064a\u0647_\u0628\u0627\u0633\u0645_\u0627\u0644\u0634\u0639\u0628_\u0647\u064a\u062e\u0631\u0628\u0648\u0647\u0627_\u0628\u0641\u0648\u0644\u0648\u0631\u0632\nFollow = back \u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3362738752,"id_str":"3362738752","name":"' \u0622\u0622\u0644\u0647\u0640\u0622\u06af\u0631 \uf8ff \u060c","screen_name":"el_m_o_n","location":"\u0622\u0622\u0633\u06af\u0646\u062f\u0631\u064a\u06c1 \u2764","url":"http:\/\/instgram.com\/monhell30","description":"#\u0627\u0644\u0647\u0627\u0634\u062a\u0627\u062c\u0648\u064a\u0647","protected":false,"verified":false,"followers_count":3362,"friends_count":539,"listed_count":3,"favourites_count":34,"statuses_count":4975,"created_at":"Mon Jul 06 16:41:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663339099588304897\/cxaGgM0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663339099588304897\/cxaGgM0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3362738752\/1446762488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:06 +0000 2015","id":663725757408133121,"id_str":"663725757408133121","text":"#\u0627\u0644\u0647\u0627\u0634\u062a\u0627\u062c\u0648\u064a\u0647_\u0628\u0627\u0633\u0645_\u0627\u0644\u0634\u0639\u0628_\u0647\u064a\u062e\u0631\u0628\u0648\u0647\u0627_\u0628\u0641\u0648\u0644\u0648\u0631\u0632\nFollow = back \u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1723618694,"id_str":"1723618694","name":"Mahmoud Ayoub","screen_name":"Ma7moudAyoub","location":"Cairo,Egypt","url":null,"description":"Financial Accountant_poet_love reading and traveling_Ahlawy_Madridy","protected":false,"verified":false,"followers_count":1037,"friends_count":463,"listed_count":0,"favourites_count":69,"statuses_count":3425,"created_at":"Mon Sep 02 22:18:12 +0000 2013","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655324478449258496\/CRvWdLGn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655324478449258496\/CRvWdLGn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1723618694\/1446140517","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0647\u0627\u0634\u062a\u0627\u062c\u0648\u064a\u0647_\u0628\u0627\u0633\u0645_\u0627\u0644\u0634\u0639\u0628_\u0647\u064a\u062e\u0631\u0628\u0648\u0647\u0627_\u0628\u0641\u0648\u0644\u0648\u0631\u0632","indices":[0,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0647\u0627\u0634\u062a\u0627\u062c\u0648\u064a\u0647_\u0628\u0627\u0633\u0645_\u0627\u0644\u0634\u0639\u0628_\u0647\u064a\u062e\u0631\u0628\u0648\u0647\u0627_\u0628\u0641\u0648\u0644\u0648\u0631\u0632","indices":[18,58]}],"urls":[],"user_mentions":[{"screen_name":"Ma7moudAyoub","name":"Mahmoud Ayoub","id":1723618694,"id_str":"1723618694","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106243555329,"id_str":"663728106243555329","text":"RT @FriendWithin: Got a feeling Sheffiled's gonna be a big one tonight.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2650047279,"id_str":"2650047279","name":"fahad E","screen_name":"fahad_eniola","location":"Sheffield, England","url":null,"description":"AFC","protected":false,"verified":false,"followers_count":270,"friends_count":270,"listed_count":0,"favourites_count":622,"statuses_count":3338,"created_at":"Sat Jun 28 12:44:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550323535177334784\/z5UI6gRu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550323535177334784\/z5UI6gRu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2650047279\/1443127117","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:23:35 +0000 2015","id":663648115401097217,"id_str":"663648115401097217","text":"Got a feeling Sheffiled's gonna be a big one tonight.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":628486282,"id_str":"628486282","name":"Friend Within","screen_name":"FriendWithin","location":"United Kingdom","url":"http:\/\/friendwithin.net","description":"You come for the music, but stay for the bants. DJ \/\/ kane@codaagency.com MGMT \/\/ sah@tszgrp.com","protected":false,"verified":true,"followers_count":16678,"friends_count":219,"listed_count":79,"favourites_count":2403,"statuses_count":7142,"created_at":"Fri Jul 06 15:40:51 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"303F47","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/808560960\/7972b2c2ad8b317083f22cd526143ee9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/808560960\/7972b2c2ad8b317083f22cd526143ee9.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655805654523736065\/otcSTT41_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655805654523736065\/otcSTT41_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/628486282\/1446559088","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FriendWithin","name":"Friend Within","id":628486282,"id_str":"628486282","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086657"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264469504,"id_str":"663728106264469504","text":"RT @_youhadonejob1: \"I've made a huge mistake.\" https:\/\/t.co\/gjcS1VNpiS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2387674794,"id_str":"2387674794","name":"Anna Saunders","screen_name":"Anna_Saunders_","location":"Great Britain","url":null,"description":"17 || riding my bike somewhere","protected":false,"verified":false,"followers_count":146,"friends_count":369,"listed_count":2,"favourites_count":2048,"statuses_count":1117,"created_at":"Thu Mar 13 18:52:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B30B40","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656896208615690242\/s6G-7Wyk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656896208615690242\/s6G-7Wyk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2387674794\/1446299822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:35 +0000 2015","id":663722606437232640,"id_str":"663722606437232640","text":"\"I've made a huge mistake.\" https:\/\/t.co\/gjcS1VNpiS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3898598357,"id_str":"3898598357","name":"You Had One Job","screen_name":"_youhadonejob1","location":"yhojob1gmail.com","url":null,"description":"You had one job and messed it up plus a lot more fun pics and vids.I do not own any content just a fan and will remove content @ copyright holders request,email","protected":false,"verified":false,"followers_count":8513,"friends_count":199,"listed_count":66,"favourites_count":34,"statuses_count":618,"created_at":"Thu Oct 08 10:23:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663053758885179392\/PxIeBojm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663053758885179392\/PxIeBojm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3898598357\/1444300597","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722606252711938,"id_str":"663722606252711938","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","url":"https:\/\/t.co\/gjcS1VNpiS","display_url":"pic.twitter.com\/gjcS1VNpiS","expanded_url":"http:\/\/twitter.com\/_youhadonejob1\/status\/663722606437232640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":605,"h":599,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722606252711938,"id_str":"663722606252711938","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","url":"https:\/\/t.co\/gjcS1VNpiS","display_url":"pic.twitter.com\/gjcS1VNpiS","expanded_url":"http:\/\/twitter.com\/_youhadonejob1\/status\/663722606437232640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":605,"h":599,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_youhadonejob1","name":"You Had One Job","id":3898598357,"id_str":"3898598357","indices":[3,18]}],"symbols":[],"media":[{"id":663722606252711938,"id_str":"663722606252711938","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","url":"https:\/\/t.co\/gjcS1VNpiS","display_url":"pic.twitter.com\/gjcS1VNpiS","expanded_url":"http:\/\/twitter.com\/_youhadonejob1\/status\/663722606437232640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":605,"h":599,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}},"source_status_id":663722606437232640,"source_status_id_str":"663722606437232640","source_user_id":3898598357,"source_user_id_str":"3898598357"}]},"extended_entities":{"media":[{"id":663722606252711938,"id_str":"663722606252711938","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEMZ8W4AI0-Po.jpg","url":"https:\/\/t.co\/gjcS1VNpiS","display_url":"pic.twitter.com\/gjcS1VNpiS","expanded_url":"http:\/\/twitter.com\/_youhadonejob1\/status\/663722606437232640\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":605,"h":599,"resize":"fit"},"small":{"w":340,"h":336,"resize":"fit"}},"source_status_id":663722606437232640,"source_status_id_str":"663722606437232640","source_user_id":3898598357,"source_user_id_str":"3898598357"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264367104,"id_str":"663728106264367104","text":"RT @oziityan4649: \u6614\u306f\u3084\u3093\u3061\u3083\u3057\u3066\u305f\u306e\u301c\u534d https:\/\/t.co\/HheLXK7ZEP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2944709784,"id_str":"2944709784","name":"KIYORA","screen_name":"Kiyora112","location":null,"url":"http:\/\/Instagram.com\/kiyo_112","description":"\u6d0b\u697d\/dance\/ariana\u263e\/ariel\u2799\u2799\u2661","protected":false,"verified":false,"followers_count":199,"friends_count":143,"listed_count":0,"favourites_count":1469,"statuses_count":3568,"created_at":"Sat Dec 27 07:25:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650007457738027008\/TN9coktg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650007457738027008\/TN9coktg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2944709784\/1446739066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:36:01 +0000 2015","id":663666343980371970,"id_str":"663666343980371970","text":"\u6614\u306f\u3084\u3093\u3061\u3083\u3057\u3066\u305f\u306e\u301c\u534d https:\/\/t.co\/HheLXK7ZEP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4164377113,"id_str":"4164377113","name":"\u4f0a\u4e4b\u52a9","screen_name":"oziityan4649","location":null,"url":null,"description":"\u534d\u4eca\u5e7471\u306e\u4ee3 \u8eca\u6905\u5b50\u4e57\u308a \u3070\u3042\u3055\u3093\u304a\u308b\u304b\u3089\u5973\u7d61\u307f\u3044\u3089\u3093 \u534d \u534d\u65e5\u672c\u5168\u56fd\u306b\u308f\u3057\u306e\u540d\u3092\u5e83\u3081\u308b\u306e\u3092\u5354\u529b\u3057\u3066\u304a\u304f\u308c\u534d \u30d5\u30a9\u30ed\u30d0\u304f\u3089\u3044\u77e5\u3063\u3068\u308b\u308f\u203c\ufe0e","protected":false,"verified":false,"followers_count":197,"friends_count":161,"listed_count":0,"favourites_count":10,"statuses_count":37,"created_at":"Sun Nov 08 04:16:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663209331999936512\/7tv2pQMV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663209331999936512\/7tv2pQMV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4164377113\/1446956706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663666335155523584,"id_str":"663666335155523584","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","url":"https:\/\/t.co\/HheLXK7ZEP","display_url":"pic.twitter.com\/HheLXK7ZEP","expanded_url":"http:\/\/twitter.com\/oziityan4649\/status\/663666343980371970\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"medium":{"w":372,"h":396,"resize":"fit"},"large":{"w":372,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663666335155523584,"id_str":"663666335155523584","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","url":"https:\/\/t.co\/HheLXK7ZEP","display_url":"pic.twitter.com\/HheLXK7ZEP","expanded_url":"http:\/\/twitter.com\/oziityan4649\/status\/663666343980371970\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"medium":{"w":372,"h":396,"resize":"fit"},"large":{"w":372,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oziityan4649","name":"\u4f0a\u4e4b\u52a9","id":4164377113,"id_str":"4164377113","indices":[3,16]}],"symbols":[],"media":[{"id":663666335155523584,"id_str":"663666335155523584","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","url":"https:\/\/t.co\/HheLXK7ZEP","display_url":"pic.twitter.com\/HheLXK7ZEP","expanded_url":"http:\/\/twitter.com\/oziityan4649\/status\/663666343980371970\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"medium":{"w":372,"h":396,"resize":"fit"},"large":{"w":372,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663666343980371970,"source_status_id_str":"663666343980371970","source_user_id":4164377113,"source_user_id_str":"4164377113"}]},"extended_entities":{"media":[{"id":663666335155523584,"id_str":"663666335155523584","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXRA_xUkAAuStb.jpg","url":"https:\/\/t.co\/HheLXK7ZEP","display_url":"pic.twitter.com\/HheLXK7ZEP","expanded_url":"http:\/\/twitter.com\/oziityan4649\/status\/663666343980371970\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":361,"resize":"fit"},"medium":{"w":372,"h":396,"resize":"fit"},"large":{"w":372,"h":396,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663666343980371970,"source_status_id_str":"663666343980371970","source_user_id":4164377113,"source_user_id_str":"4164377113"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106243510272,"id_str":"663728106243510272","text":"RT @Michaelcdancing: Guacamole Song (@Michael5SOS) https:\/\/t.co\/coWdTB4nRA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3318092492,"id_str":"3318092492","name":"abi","screen_name":"hemmolynchR5SOS","location":"kentuckyyy (has chicken)","url":null,"description":"\u2716\ufe0fROWYSO LOUISVILLE 8-4-15\u2716\u274cALRIGHT LOS ANGELES\u274c~My wish is for 5sos to get some good sleep\u2764\ufe0f ~5SOS & R5 FAMILY FOREVER~ \u0405\u03c3\u03c5\u0438\u2202\u0455 G\u03c3\u03c3\u2202 F\u0454\u0454\u2113\u0455 G\u03c3\u03c3\u2202~","protected":false,"verified":false,"followers_count":768,"friends_count":937,"listed_count":0,"favourites_count":10960,"statuses_count":6375,"created_at":"Mon Aug 17 21:17:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642752010110943232\/h37onZTB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642752010110943232\/h37onZTB.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663252778844835840\/8U6XYfBo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663252778844835840\/8U6XYfBo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3318092492\/1447029160","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 18:26:45 +0000 2015","id":663060033928880128,"id_str":"663060033928880128","text":"Guacamole Song (@Michael5SOS) https:\/\/t.co\/coWdTB4nRA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3886750582,"id_str":"3886750582","name":"Michael dancing to","screen_name":"Michaelcdancing","location":null,"url":"https:\/\/twitter.com\/michaelcdancing\/status\/658363295490002944","description":"The ORIGINAL Michael dancing account on Twitter || Dms are open for song suggestions :) || Please credit if you tweet my vids!","protected":false,"verified":false,"followers_count":28371,"friends_count":2864,"listed_count":16,"favourites_count":3759,"statuses_count":363,"created_at":"Wed Oct 07 04:09:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661410524090007552\/Xoq8Ysh6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661410524090007552\/Xoq8Ysh6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3886750582\/1447003009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":525,"favorite_count":597,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[16,28]}],"symbols":[],"media":[{"id":663059922158923776,"id_str":"663059922158923776","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","url":"https:\/\/t.co\/coWdTB4nRA","display_url":"pic.twitter.com\/coWdTB4nRA","expanded_url":"http:\/\/twitter.com\/Michaelcdancing\/status\/663060033928880128\/video\/1","type":"photo","sizes":{"large":{"w":780,"h":780,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663059922158923776,"id_str":"663059922158923776","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","url":"https:\/\/t.co\/coWdTB4nRA","display_url":"pic.twitter.com\/coWdTB4nRA","expanded_url":"http:\/\/twitter.com\/Michaelcdancing\/status\/663060033928880128\/video\/1","type":"video","sizes":{"large":{"w":780,"h":780,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":11133,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/480x480\/27VD_dPoShfdy2qt.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/240x240\/qnPsf_rcTeVPX4kE.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/pl\/HY7HTTWHbFHMCs6i.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/pl\/HY7HTTWHbFHMCs6i.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/480x480\/27VD_dPoShfdy2qt.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/720x720\/MhqOjLAwZdpRd60d.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Michaelcdancing","name":"Michael dancing to","id":3886750582,"id_str":"3886750582","indices":[3,19]},{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[37,49]}],"symbols":[],"media":[{"id":663059922158923776,"id_str":"663059922158923776","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","url":"https:\/\/t.co\/coWdTB4nRA","display_url":"pic.twitter.com\/coWdTB4nRA","expanded_url":"http:\/\/twitter.com\/Michaelcdancing\/status\/663060033928880128\/video\/1","type":"photo","sizes":{"large":{"w":780,"h":780,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663060033928880128,"source_status_id_str":"663060033928880128","source_user_id":3886750582,"source_user_id_str":"3886750582"}]},"extended_entities":{"media":[{"id":663059922158923776,"id_str":"663059922158923776","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663059922158923776\/pu\/img\/0UimpsLkLXOP-ATA.jpg","url":"https:\/\/t.co\/coWdTB4nRA","display_url":"pic.twitter.com\/coWdTB4nRA","expanded_url":"http:\/\/twitter.com\/Michaelcdancing\/status\/663060033928880128\/video\/1","type":"video","sizes":{"large":{"w":780,"h":780,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663060033928880128,"source_status_id_str":"663060033928880128","source_user_id":3886750582,"source_user_id_str":"3886750582","video_info":{"aspect_ratio":[1,1],"duration_millis":11133,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/480x480\/27VD_dPoShfdy2qt.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/240x240\/qnPsf_rcTeVPX4kE.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/pl\/HY7HTTWHbFHMCs6i.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/pl\/HY7HTTWHbFHMCs6i.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/480x480\/27VD_dPoShfdy2qt.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663059922158923776\/pu\/vid\/720x720\/MhqOjLAwZdpRd60d.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080086657"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247692288,"id_str":"663728106247692288","text":"RT @beeeeeeeez__: \uc880\uc804\uc5d0 \ud587\ub358\uac70 \ud2c0\ub837\uc11c\uc820\uc7a5 @MnetMAMA \uac11\uc790\uae30 \uc0dd\uac01\ub0ab\ub294\ub370\uc694#2015MAMA \uc5d1\uc18c \ub3c4\ucfc4\ub3d4 \uc815\ub9d0 \uc790\ub791\uc2a4\ub7fd\uace0\uc694 #EXO \ub3d4\uc774\ub77c\ud558\ubbc4 \ubc15\ud604\ube48\uc528\uac00 \uc544\uc8fc\uba38\ub2c8 \ud560\uba38\ub2c8\uaed8\ub3c4 #CALLMEBABY \uc598\ub4e4\uc544 \uc624\ube60\uc654\ub2e4 \ubb3c\uacb0 #2015MA\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2634269364,"id_str":"2634269364","name":"\u2074\u2661\u2081\u2082","screen_name":"shysehun","location":"\u4e16\u52cb \u2661 \u7af9\u9a6cline\u300csehun rt bot \u300d","url":null,"description":"'huh? are you really going to ask the baby of the group that?'","protected":false,"verified":false,"followers_count":482,"friends_count":53,"listed_count":8,"favourites_count":4988,"statuses_count":82330,"created_at":"Sun Jul 13 02:39:54 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605812095297273856\/pn7bCviq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605812095297273856\/pn7bCviq.png","profile_background_tile":true,"profile_link_color":"ECF3F2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663154919893954560\/kIFdSG9I_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663154919893954560\/kIFdSG9I_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2634269364\/1445822475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:02 +0000 2015","id":663726746819137536,"id_str":"663726746819137536","text":"\uc880\uc804\uc5d0 \ud587\ub358\uac70 \ud2c0\ub837\uc11c\uc820\uc7a5 @MnetMAMA \uac11\uc790\uae30 \uc0dd\uac01\ub0ab\ub294\ub370\uc694#2015MAMA \uc5d1\uc18c \ub3c4\ucfc4\ub3d4 \uc815\ub9d0 \uc790\ub791\uc2a4\ub7fd\uace0\uc694 #EXO \ub3d4\uc774\ub77c\ud558\ubbc4 \ubc15\ud604\ube48\uc528\uac00 \uc544\uc8fc\uba38\ub2c8 \ud560\uba38\ub2c8\uaed8\ub3c4 #CALLMEBABY \uc598\ub4e4\uc544 \uc624\ube60\uc654\ub2e4 \ubb3c\uacb0 #2015MAMA \ud558\uba74\uc11c \ud138\uc5b4\ubc84\ub9ac\ub294 \uacf3 \uc544\ub2d8\ub2c8\uae4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2803283641,"id_str":"2803283641","name":"\ubb50\ud558\uc9c0","screen_name":"beeeeeeeez__","location":null,"url":null,"description":"\ucc2c\uc138","protected":false,"verified":false,"followers_count":447,"friends_count":54,"listed_count":2,"favourites_count":15332,"statuses_count":30306,"created_at":"Thu Sep 11 07:43:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647585169570861056\/0eEikORf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647585169570861056\/0eEikORf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2803283641\/1440008651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[61,65]},{"text":"CALLMEBABY","indices":[90,101]},{"text":"2015MAMA","indices":[114,123]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[14,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[79,83]},{"text":"CALLMEBABY","indices":[108,119]},{"text":"2015MAMA","indices":[132,140]}],"urls":[],"user_mentions":[{"screen_name":"beeeeeeeez__","name":"\ubb50\ud558\uc9c0","id":2803283641,"id_str":"2803283641","indices":[3,16]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[32,41]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106272788482,"id_str":"663728106272788482","text":"@En_Markkk .\u0e1b\u0e25\u0e34\u0e27 \u0e42\u0e19\u0e27\u0e27\u0e27\u0e27\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725752769089536,"in_reply_to_status_id_str":"663725752769089536","in_reply_to_user_id":2946496394,"in_reply_to_user_id_str":"2946496394","in_reply_to_screen_name":"En_Markkk","user":{"id":3920461046,"id_str":"3920461046","name":"\u0432\u03b1\u0454\u0432\u03b1m\u02e3 ft. \u0e1b\u0e27\u0e14\u0e2b\u0e31\u0e27","screen_name":"baebiebam_x","location":"bambam1a","url":"http:\/\/gangpednoi.wix.com\/pednoi","description":"17.10.58 \n\u0e01\u0e27\u0e19\u0e15\u0e35\u0e19\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01 \u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e07\u0e32\u0e19\u0e23\u0e2d\u0e07 J \u2661 #baebam #\u0e41\u0e01\u0e49\u0e07\u0e40\u0e1b\u0e47\u0e14\u0e19\u0e49\u0e2d\u0e22\n| \u0e41\u0e21\u0e48\u0e40\u0e09\u0e32\u0e01\u0e4b\u0e27\u0e22\u0e1a\u0e35 @L_Luhan77","protected":false,"verified":false,"followers_count":58,"friends_count":49,"listed_count":0,"favourites_count":104,"statuses_count":6708,"created_at":"Sat Oct 17 03:05:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663349150348537856\/o4xhCawA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663349150348537856\/o4xhCawA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3920461046\/1445900383","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"En_Markkk","name":"MAKE","id":2946496394,"id_str":"2946496394","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080086664"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106260140033,"id_str":"663728106260140033","text":"\u306b\u3053\u30a4\u30d9\u3061\u3087\u3063\u3068\u3084\u3063\u3066\u5bdd\u307e\u3057\u3087\u301c\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1851702950,"id_str":"1851702950","name":"\u3086\u304d\u3093\u3053","screen_name":"ssg_k4","location":null,"url":"http:\/\/twpf.jp\/ssg_k4","description":"\u30e9\u30d6\u30e9\u30a4\u30d6\u3001\u30ca\u30ca\u30b7\u30b9\u3001\u3046\u305f\u30d7\u30ea\u3001\u30c7\u30ec\u30de\u30b9\u2026\u307e\u3068\u3081\u308b\u3068\u30a2\u30a4\u30c9\u30eb\u304c\u597d\u304d\u3067\u3059\u3002\u771f\u59eb\u3061\u3083\u3093\u63a8\u3057\u306e\u306b\u3053\u307e\u304d\u597d\u304d\u3002\u5922100\u306f\u30b7\u30e5\u30cb\u30fc\u3061\u3083\u3093\u3060\u3051\u3069\u30b9\u30ce\u30a6\u30d5\u30a3\u30ea\u30a2\u307f\u3093\u306a\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":213,"friends_count":251,"listed_count":7,"favourites_count":877,"statuses_count":7377,"created_at":"Tue Sep 10 14:48:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638588066085498880\/a42HTbe__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638588066085498880\/a42HTbe__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1851702950\/1441087387","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086661"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247712768,"id_str":"663728106247712768","text":"RT @dmathches: Happy 64th Birthday to former Mr. Universe and Hulk... Lou Ferrigno. https:\/\/t.co\/Etl4Pj8QzD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18517089,"id_str":"18517089","name":"Dan Malmon","screen_name":"dmalmon","location":"St. Paul, MN","url":"http:\/\/crimespreemag.com","description":"Just trying to fly casual. Also, provides content for Crimespree magazine.","protected":false,"verified":false,"followers_count":728,"friends_count":665,"listed_count":37,"favourites_count":1784,"statuses_count":45702,"created_at":"Wed Dec 31 21:42:58 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/364285341\/Super_Powers_Top_Batman_Superman_Flash_Hawkman_Wonder_Woman_Green_Lantern_Justice_League_Unlimited_Superhero_Theme_Songs.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/364285341\/Super_Powers_Top_Batman_Superman_Flash_Hawkman_Wonder_Woman_Green_Lantern_Justice_League_Unlimited_Superhero_Theme_Songs.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663505284678176769\/visR8-UR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663505284678176769\/visR8-UR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18517089\/1438385951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:26 +0000 2015","id":663720557385531392,"id_str":"663720557385531392","text":"Happy 64th Birthday to former Mr. Universe and Hulk... Lou Ferrigno. https:\/\/t.co\/Etl4Pj8QzD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1571781206,"id_str":"1571781206","name":"Psychotronic Daily","screen_name":"dmathches","location":"Illinois ","url":null,"description":"Glorifying Horror,Classic Sci-Fi, Film Monsters,Exploitation and all things Psychotronic !!","protected":false,"verified":false,"followers_count":14461,"friends_count":8662,"listed_count":224,"favourites_count":34866,"statuses_count":12760,"created_at":"Sat Jul 06 02:13:21 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000093821333\/f8f79649cdda86fbd3ef02c0e020d9f1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000093821333\/f8f79649cdda86fbd3ef02c0e020d9f1_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1571781206\/1413759208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720551442051073,"id_str":"663720551442051073","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","url":"https:\/\/t.co\/Etl4Pj8QzD","display_url":"pic.twitter.com\/Etl4Pj8QzD","expanded_url":"http:\/\/twitter.com\/dmathches\/status\/663720557385531392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":634,"h":793,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720551442051073,"id_str":"663720551442051073","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","url":"https:\/\/t.co\/Etl4Pj8QzD","display_url":"pic.twitter.com\/Etl4Pj8QzD","expanded_url":"http:\/\/twitter.com\/dmathches\/status\/663720557385531392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":634,"h":793,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dmathches","name":"Psychotronic Daily","id":1571781206,"id_str":"1571781206","indices":[3,13]}],"symbols":[],"media":[{"id":663720551442051073,"id_str":"663720551442051073","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","url":"https:\/\/t.co\/Etl4Pj8QzD","display_url":"pic.twitter.com\/Etl4Pj8QzD","expanded_url":"http:\/\/twitter.com\/dmathches\/status\/663720557385531392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":634,"h":793,"resize":"fit"}},"source_status_id":663720557385531392,"source_status_id_str":"663720557385531392","source_user_id":1571781206,"source_user_id_str":"1571781206"}]},"extended_entities":{"media":[{"id":663720551442051073,"id_str":"663720551442051073","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCUzLUcAEUbvB.jpg","url":"https:\/\/t.co\/Etl4Pj8QzD","display_url":"pic.twitter.com\/Etl4Pj8QzD","expanded_url":"http:\/\/twitter.com\/dmathches\/status\/663720557385531392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":634,"h":793,"resize":"fit"}},"source_status_id":663720557385531392,"source_status_id_str":"663720557385531392","source_user_id":1571781206,"source_user_id_str":"1571781206"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247614465,"id_str":"663728106247614465","text":"Sudah murah, khusus pria lagi. Kurang puas apa lagi dirinya.\n\nDimitri meletakkan tas yang ia bawa di salah satu sofa yang ada. Sambil \u2014","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728042678730752,"in_reply_to_status_id_str":"663728042678730752","in_reply_to_user_id":3246321666,"in_reply_to_user_id_str":"3246321666","in_reply_to_screen_name":"lx_troye","user":{"id":3246321666,"id_str":"3246321666","name":"Dimitri","screen_name":"lx_troye","location":"C022","url":"http:\/\/tl.gd\/n_1snqrt5","description":"\u3010@LexvillApartRP\u3011\n troye sivan as dimitri levi valkov ; perth12251996 ; seke ; a colleger & a drummer ; xx won.\n\n\u300cquiet nights, poured over ice.\u300d","protected":false,"verified":false,"followers_count":59,"friends_count":32,"listed_count":0,"favourites_count":77,"statuses_count":503,"created_at":"Tue Jun 16 00:34:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663575876265635840\/7ZUDcD1U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663575876265635840\/7ZUDcD1U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246321666\/1447057946","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106272788481,"id_str":"663728106272788481","text":"@rihanlu_ RIHAN NOTICE ME HUHU AYAW NG MAMA KO HUHU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2392744364,"in_reply_to_user_id_str":"2392744364","in_reply_to_screen_name":"rihanlu_","user":{"id":1913340054,"id_str":"1913340054","name":"JiShi","screen_name":"gkcatbagan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":70,"listed_count":0,"favourites_count":63,"statuses_count":104,"created_at":"Sat Sep 28 06:45:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660719359401136128\/KEE8NuMN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660719359401136128\/KEE8NuMN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1913340054\/1446362245","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c144b13c3c537b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c144b13c3c537b.json","place_type":"city","name":"Santa Rita","full_name":"Santa Rita, Central Luzon","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.563597,14.992584],[120.563597,15.048430],[120.626004,15.048430],[120.626004,14.992584]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rihanlu_","name":"\ub9ac\uc0ac","id":2392744364,"id_str":"2392744364","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080086664"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106251747328,"id_str":"663728106251747328","text":"@TaekNKen \uadf8\ub9ac\uad6c \uc62e\uae30\ub294 \uac74 \uc5d4\ub4dc\ub77c\uc774\ube0c \ub2e4\uc6b4\uc73c\ub85c.....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726066033274884,"in_reply_to_status_id_str":"663726066033274884","in_reply_to_user_id":1275348308,"in_reply_to_user_id_str":"1275348308","in_reply_to_screen_name":"TaekNKen","user":{"id":2332708021,"id_str":"2332708021","name":"\ubc14\ub2d0\ub77c\uc288\uac00 \/\/\u3145\/\/","screen_name":"VanillaSugar929","location":null,"url":"http:\/\/VanillaSugar.tistory.com","description":"@RedBeans93. VIXX. \uc5c5\ub85c\ub4dc\ub294 \uad00\uc2ec\uae00. \uc0ac\uc9c4\uc740 @honeychoux_net. FUB \uc790\uc720.","protected":false,"verified":false,"followers_count":4128,"friends_count":297,"listed_count":74,"favourites_count":506,"statuses_count":2856,"created_at":"Sat Feb 08 02:10:43 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661203450760327168\/ssRzQ_Sf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661203450760327168\/ssRzQ_Sf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2332708021\/1443492437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TaekNKen","name":"\ud2b8\ub9ac\ud50c \ud06c\ub77c\uc6b4","id":1275348308,"id_str":"1275348308","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086659"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268573696,"id_str":"663728106268573696","text":"@ts63l9ft \u3053\u3068\u307f\u3061\u3083\u3093\u3001\u4f55\u304b\u53d6\u308a\u3064\u3044\u3061\u3087\u3093\u3084\u306d\u3093\ud83d\ude27\ud83d\udc7b\u3072\u3044\u301c\n\uff08\u3069\u3046\u3076\u3064\u306e\u68ee\u3067\u3044\u3046\u3001\u30c4\u30bf\u30f3\u30ab\u30fc\u30e1\u30f3\u304b\u3076\u3063\u3061\u3087\u308b\u304d\u3053\u3051\u308b\u3068\u3088\uff09\u79c1\u304c\u3001\u3048\u3044\u3055\u304b\u307b\u3063\u3055\u3001\u304a\u306f\u3089\u3044\u3057\u3066\u3042\u3052\u307e\u3057\u3087\u3046\u3002\ud83c\udf3e\n\u8db3\u4e0b\u3068\u982d\u4e0a\u306b\u306f\u6ce8\u610f\u3057\u3066\u306d\ud83d\ude07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724420955926528,"in_reply_to_status_id_str":"663724420955926528","in_reply_to_user_id":3063888541,"in_reply_to_user_id_str":"3063888541","in_reply_to_screen_name":"ts63l9ft","user":{"id":2199195974,"id_str":"2199195974","name":"\u5343\u82b1","screen_name":"muu8815","location":null,"url":null,"description":"\u3042\u308a\u3080\u3089\u3061\u306f\u308b\u3002","protected":false,"verified":false,"followers_count":431,"friends_count":362,"listed_count":0,"favourites_count":1817,"statuses_count":2286,"created_at":"Sun Nov 17 08:57:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660787733703491585\/d8EUFo9n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660787733703491585\/d8EUFo9n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199195974\/1446735173","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ts63l9ft","name":"\u5c0f\u90fd\u7f8e","id":3063888541,"id_str":"3063888541","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106276917248,"id_str":"663728106276917248","text":"My mother babies me too much","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1577670013,"id_str":"1577670013","name":"\u5358","screen_name":"JerryBlossoms","location":"MADEINPHIL","url":null,"description":"weird, lgbt","protected":false,"verified":false,"followers_count":878,"friends_count":340,"listed_count":4,"favourites_count":20567,"statuses_count":26019,"created_at":"Mon Jul 08 13:10:27 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641257035493863424\/YEEZVYzj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641257035493863424\/YEEZVYzj.jpg","profile_background_tile":false,"profile_link_color":"F8E0F7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661748178098622464\/1_zglaxl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661748178098622464\/1_zglaxl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1577670013\/1446984144","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086665"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256093184,"id_str":"663728106256093184","text":"@vidabailey2 Ain't THAT the truth! #EuphOff gets thrice the traffic my serious work does!! :D :D @Kilted_Wookie","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725364175314945,"in_reply_to_status_id_str":"663725364175314945","in_reply_to_user_id":629132623,"in_reply_to_user_id_str":"629132623","in_reply_to_screen_name":"vidabailey2","user":{"id":211806644,"id_str":"211806644","name":"Tabitha Rayne","screen_name":"TabithaErotica","location":"UK","url":"http:\/\/www.TabithaRayne.co.uk","description":"I am a reader and writer of erotic fiction. I also love to draw cheeky pictures. Join me for saucy reading fun ;)","protected":false,"verified":false,"followers_count":3606,"friends_count":1720,"listed_count":108,"favourites_count":4356,"statuses_count":7493,"created_at":"Thu Nov 04 09:35:35 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658209025339891713\/wBPAJmmx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658209025339891713\/wBPAJmmx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211806644\/1422779466","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EuphOff","indices":[35,43]}],"urls":[],"user_mentions":[{"screen_name":"vidabailey2","name":"Vida Bailey","id":629132623,"id_str":"629132623","indices":[0,12]},{"screen_name":"Kilted_Wookie","name":"Kilted Wookie","id":2738390032,"id_str":"2738390032","indices":[97,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268524544,"id_str":"663728106268524544","text":"\u30e2\u30f3\u30b9\u30c8\u3067\u30de\u30eb\u30c1\u3057\u306a\u3044\uff1f\n\u300c\u521d\u9663\uff08\u706b\u5c71\u306e\u7cbe\u970a\uff09\u300d\nhttps:\/\/t.co\/HkCFMKH2Nf\n\u2191\u3053\u306eURL\u3092\u30bf\u30c3\u30d7\u3059\u308b\u3068\u3001\u30bf\u30c3\u30d7\u3057\u305f\u4eba\u9054\u540c\u58eb\u3067\u4e00\u7dd2\u306b\u30de\u30eb\u30c1\u30d7\u30ec\u30a4\u304c\u3067\u304d\u308b\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1485124334,"id_str":"1485124334","name":"\u866b","screen_name":"maronn5555","location":null,"url":null,"description":"\u7279\u306b\u306a\u3057","protected":false,"verified":false,"followers_count":64,"friends_count":73,"listed_count":0,"favourites_count":0,"statuses_count":9,"created_at":"Wed Jun 05 14:09:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618380137470398469\/1xQ9Evh2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618380137470398469\/1xQ9Evh2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HkCFMKH2Nf","expanded_url":"http:\/\/static.monster-strike.com\/line\/?pass_code=MTg1MzQzNTc3","display_url":"static.monster-strike.com\/line\/?pass_cod\u2026","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256011264,"id_str":"663728106256011264","text":"@Poconggg lu ke Samarinda kemaren aja langsung hujan bang \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727826240036864,"in_reply_to_status_id_str":"663727826240036864","in_reply_to_user_id":65863622,"in_reply_to_user_id_str":"65863622","in_reply_to_screen_name":"Poconggg","user":{"id":218838378,"id_str":"218838378","name":"sinta sugeng atmaja","screen_name":"sinta_atmaja","location":"masih kosong kok","url":null,"description":"LINE : sinsintaatmaja","protected":false,"verified":false,"followers_count":1098,"friends_count":547,"listed_count":0,"favourites_count":686,"statuses_count":47070,"created_at":"Tue Nov 23 11:46:26 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496325197494882305\/_5RYmZcW.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496325197494882305\/_5RYmZcW.png","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660783750402306048\/AnJYJYN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660783750402306048\/AnJYJYN0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218838378\/1407166612","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Poconggg","name":"ariefmuhammad","id":65863622,"id_str":"65863622","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106276913152,"id_str":"663728106276913152","text":"\u3064\u3044\u306b\u3001\u59b9\u304c\u304a\u305d\u677e\u3055\u3093\u305f\u3061\u306e\u533a\u5225\u3092\u3059\u308b\u3088\u3046\u306b\u306a\u3063\u305f\uff01\u30ea\u30a2\u5145\u2661\u306a\u59b9\u3060\u3051\u3069\u3001\u79c1\u306e\u6559\u80b2\u306e\u304a\u304b\u3052\u3067\u3001\u9055\u3044\u3092\u898b\u5206\u3051\u3066\u540d\u524d\u3082\u8a00\u3048\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u305c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4010625380,"id_str":"4010625380","name":"\u304b\u3077\u306a","screen_name":"jianai0910","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u3067\u3059\u2606\u2192\u58f0\u512a(\u4e2d\u6751\u60a0\u4e00\u3055\u3093,\u8208\u6d25\u548c\u5e78\u3055\u3093,\u91ce\u5cf6\u5065\u5150\u3055\u3093\u304c\u7279\u306b\u597d\u304d)\/\u30a2\u30cb\u30e1(\u4eca\u671f\u306f\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\u306b\u6fc0\u30cf\u30de\u308a)\/\u4e59\u5973(\u88cf\u540d\u7fa9CD\u3082\u8074\u3044\u3061\u3083\u3046)\/BL(\u5272\u3068\u4f55\u3067\u3082\u30a4\u30b1\u308b)\/V6\/\u5b89\u5ba4\u5948\u7f8e\u6075\/GReeeeN","protected":false,"verified":false,"followers_count":64,"friends_count":198,"listed_count":3,"favourites_count":196,"statuses_count":138,"created_at":"Sun Oct 25 06:45:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662645159234945024\/bdFUQsdo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662645159234945024\/bdFUQsdo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4010625380\/1445934922","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086665"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106260140032,"id_str":"663728106260140032","text":"\uc544 \uc6a9\uae30\uc0ac\uc637 \uc870\ub610\uc5b4\ub835\ub2e4 \uc5f0\uc2b5\ud574\ubd10\uc57c\uc9c0","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268116836,"id_str":"3268116836","name":"\ubaa8\ub178 \ubc30\ub2ec\ubd80","screen_name":"C0URI3R","location":"\ucee4\uba3c\uc6f0\uc2a4","url":"https:\/\/youtu.be\/wCniWbP9yPY","description":"\ud3f4\uc544\uc6c3 \uc2dc\ub9ac\uc988 \/ \uba54\ud2b8\ub85c \uc2dc\ub9ac\uc988 \uc704\uc8fc \uc2a4\ud300 \uac8c\uc774\uba38\uc785\ub2c8\ub2e4. \uad6c\ub3c5\ud314\ub85c \uc548\ubc1b\uc74c. \ud504\uc0ac \ucd9c\ucc98 \uac8c\ub85c\ub370\ub2d8 (FF14 \uacc4\uc815 : @FF14_mono)","protected":false,"verified":false,"followers_count":119,"friends_count":138,"listed_count":3,"favourites_count":15146,"statuses_count":1065,"created_at":"Sat Jul 04 13:26:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632092656156323840\/f023kCZR.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632092656156323840\/f023kCZR.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663025663541051392\/WMguctqb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663025663541051392\/WMguctqb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268116836\/1445688054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086661"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247553024,"id_str":"663728106247553024","text":"\uc694\uc998 \uc774\ub798\uc800\ub798 \uc6b0\uc6b8\ud558\ub2e4 (\uc548\u3134\uadf8\ub798\ubcf4\uc784","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1277854604,"id_str":"1277854604","name":"\u3137\u3148","screen_name":"Maura_mes","location":"\ub538\ud53c\uc778 \ub2f9\uc2e0 \uc606? \ub4a4?","url":null,"description":"\ucee4\ubba4 \uac15\ud654\uae30\uac04 \ub9c8\uc6b0\ub77c http:\/\/twpf.jp\/Maura_Mes \n\uae4c\ubbf8\uc720 \ub098\uadf8\ub124 \ud53d\/\uce7c\uc7bd\uc774\uac1c\uc9c4\ub9ac \n\ub098\ub3c4\uc88b\uc544\ud574\u273a\ubd88.\uaf43.\ub180.\uc774\/\uc544\ucc98\uc9c4\uba85\ubaa8\ub974\ub294\ub1cc\uc0bc\n\ucd5c\uc560\ub9c9\ubd80\ub984 \uaf2c\uc6b0\uba74 \ube14\ub77d\u2665\ubba4\ud2b8\u2665","protected":false,"verified":false,"followers_count":141,"friends_count":160,"listed_count":2,"favourites_count":14143,"statuses_count":158367,"created_at":"Mon Mar 18 14:11:55 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535678100651012099\/tllB51Q1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535678100651012099\/tllB51Q1.jpeg","profile_background_tile":false,"profile_link_color":"587370","profile_sidebar_border_color":"4D918A","profile_sidebar_fill_color":"B9D8D6","profile_text_color":"4D918A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663076355332968448\/Fpx7l7FA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663076355332968448\/Fpx7l7FA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1277854604\/1440009074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086658"} +{"delete":{"status":{"id":663725895874539520,"id_str":"663725895874539520","user_id":4179841694,"user_id_str":"4179841694"},"timestamp_ms":"1447080086729"}} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106243362817,"id_str":"663728106243362817","text":"\uc800\ub294 \uc606\uc5d0\uc11c \ubcf8\uc778\uc758 \ud68c\uc9c0\ub97c \ubcf4\uc9c4 \uc54a\uc9c0\ub9cc \uac24\uc744 \ud138\uc9c0\uc694(\ud138\ud138","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2903602663,"id_str":"2903602663","name":"[\uc11c\ucf54] \ud574\ud53c\ud55c 91\/\uacf0\ucbb8\ubfcc","screen_name":"sauvez214","location":"\ub9c8\ud2f4 \ubc29 \uacf0\uc778\ud615","url":"http:\/\/hononog.namoweb.net\/","description":"\ud3b8\ud55c\ucabd\uc73c\ub85c \ubd88\ub7ec\uc8fc\uc138\uc6a4 \u2502 \ub9c8\ud2f4\ub978*\ub9c8\ud2f4NL \u2502 \ub9ac\ubc84\uc2a4 \uc9c1\uba58 X \u2502 \uc5b8\ud314x \ube14\uc5b8\ube14o \u2502 \ucee4\ubbf8\uc158 : http:\/\/goo.gl\/FocrPx \u2502 ask : http:\/\/ask.fm\/sauvez214 \u2502 \uc778\uc7a5 \ub178\ub8e8\ub2d8(@noru_kk)","protected":false,"verified":false,"followers_count":105,"friends_count":86,"listed_count":2,"favourites_count":3294,"statuses_count":5343,"created_at":"Tue Nov 18 11:39:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653333438129246208\/W999kp_G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653333438129246208\/W999kp_G_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086657"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256007168,"id_str":"663728106256007168","text":"RT @kiku_ys: \u30d0\u30b7\u30d0\u30b7\u5927\u304d\u306a\u97f3\u306e\u51fa\u308b\u6247\u5b50\u72b6\u306b\u6298\u308a\u66f2\u3052\u305f\u7d19\uff08\u5fdc\u63f4\u5e2d\u30c1\u30b1\u30c3\u30c8\u3068\u4e00\u7dd2\u306b\u8cb0\u3048\u308b\uff09\u8a66\u5408\u524d\u3001\u306a\u3093\u304b\u97f3\u304c\u3059\u308b\u306a\uff5e\u3068\u601d\u3046\u3068\u30c9\u30ed\u3061\u3083\u3093\u304c\u3072\u3068\u308a\u3067\u30d0\u30b7\u30d0\u30b7\u3057\u3066\u3044\u305f\u308a\u3059\u308b https:\/\/t.co\/rk1BXYOz60","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":864387612,"id_str":"864387612","name":"J\u30ea\u30fc\u30b0\u30de\u30b9\u30b3\u30c3\u30c8\u60c5\u5831J'sMASCOT","screen_name":"jsmascot","location":null,"url":"http:\/\/jsmascot.tumblr.com\/","description":"J\u30ea\u30fc\u30b0\u306e\u30de\u30b9\u30b3\u30c3\u30c8\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u306b\u95a2\u3059\u308b\u60c5\u5831\u3092\u63a2\u3057\u3066\u30c4\u30a4\u30fc\u30c8\u30fb\u30ea\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\u3002\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0#jsmascot \u3092\u4ed8\u3051\u3066\u30de\u30b9\u30b3\u30c3\u30c8\u753b\u50cf\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u305f\u3060\u304f\u3068\u81ea\u52d5\u7684\u306btumblr(http:\/\/jsmascot.tumblr.com)\u306b\u53d6\u308a\u8fbc\u307f\u307e\u3059\u3002\u203bJ\u30ea\u30fc\u30b0\u304a\u3088\u3073\u5404\u30af\u30e9\u30d6\u3068\u306f\u7121\u95a2\u4fc2\u306e\u500b\u4eba\u306b\u3088\u308b\u904b\u55b6\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1543,"friends_count":104,"listed_count":79,"favourites_count":8,"statuses_count":29069,"created_at":"Sat Oct 06 09:11:21 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/802543505\/b29e369a0101163c2b52e85e6782a32c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/802543505\/b29e369a0101163c2b52e85e6782a32c.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2792561358\/24d48e67d9f12db886ca22cfdecaf1b7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2792561358\/24d48e67d9f12db886ca22cfdecaf1b7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864387612\/1349531977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:51:16 +0000 2015","id":663700379616440321,"id_str":"663700379616440321","text":"\u30d0\u30b7\u30d0\u30b7\u5927\u304d\u306a\u97f3\u306e\u51fa\u308b\u6247\u5b50\u72b6\u306b\u6298\u308a\u66f2\u3052\u305f\u7d19\uff08\u5fdc\u63f4\u5e2d\u30c1\u30b1\u30c3\u30c8\u3068\u4e00\u7dd2\u306b\u8cb0\u3048\u308b\uff09\u8a66\u5408\u524d\u3001\u306a\u3093\u304b\u97f3\u304c\u3059\u308b\u306a\uff5e\u3068\u601d\u3046\u3068\u30c9\u30ed\u3061\u3083\u3093\u304c\u3072\u3068\u308a\u3067\u30d0\u30b7\u30d0\u30b7\u3057\u3066\u3044\u305f\u308a\u3059\u308b https:\/\/t.co\/rk1BXYOz60","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223044386,"id_str":"223044386","name":"\u304d\u304f\u3088\u3057","screen_name":"kiku_ys","location":"\u6771\u4eac","url":null,"description":"FC\u6771\u4eac\u3068\u304b\u3044\u308d\u3044\u308d\r\n\u304b\u308f\u306e\u304b\u308f\u3044\u3044","protected":false,"verified":false,"followers_count":2002,"friends_count":161,"listed_count":54,"favourites_count":786,"statuses_count":10467,"created_at":"Sun Dec 05 06:23:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602278290213052416\/_AqRKhSs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602278290213052416\/_AqRKhSs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223044386\/1443440171","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663700378374934528,"id_str":"663700378374934528","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","url":"https:\/\/t.co\/rk1BXYOz60","display_url":"pic.twitter.com\/rk1BXYOz60","expanded_url":"http:\/\/twitter.com\/kiku_ys\/status\/663700379616440321\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":453,"resize":"fit"},"large":{"w":595,"h":453,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663700378374934528,"id_str":"663700378374934528","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","url":"https:\/\/t.co\/rk1BXYOz60","display_url":"pic.twitter.com\/rk1BXYOz60","expanded_url":"http:\/\/twitter.com\/kiku_ys\/status\/663700379616440321\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":453,"resize":"fit"},"large":{"w":595,"h":453,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kiku_ys","name":"\u304d\u304f\u3088\u3057","id":223044386,"id_str":"223044386","indices":[3,11]}],"symbols":[],"media":[{"id":663700378374934528,"id_str":"663700378374934528","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","url":"https:\/\/t.co\/rk1BXYOz60","display_url":"pic.twitter.com\/rk1BXYOz60","expanded_url":"http:\/\/twitter.com\/kiku_ys\/status\/663700379616440321\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":453,"resize":"fit"},"large":{"w":595,"h":453,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663700379616440321,"source_status_id_str":"663700379616440321","source_user_id":223044386,"source_user_id_str":"223044386"}]},"extended_entities":{"media":[{"id":663700378374934528,"id_str":"663700378374934528","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXv-kpUkAAXTr6.jpg","url":"https:\/\/t.co\/rk1BXYOz60","display_url":"pic.twitter.com\/rk1BXYOz60","expanded_url":"http:\/\/twitter.com\/kiku_ys\/status\/663700379616440321\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":453,"resize":"fit"},"large":{"w":595,"h":453,"resize":"fit"},"small":{"w":340,"h":258,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663700379616440321,"source_status_id_str":"663700379616440321","source_user_id":223044386,"source_user_id_str":"223044386"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106281168896,"id_str":"663728106281168896","text":"That's a triflin ass song lmao","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124467477,"id_str":"124467477","name":"Janet Snackson","screen_name":"neauxbodee","location":"Space City","url":null,"description":"Ain't no tweets bih... #Coofy #TrillInc #BLACKLIVESMATTER #JeSuisCharleston IG: neauxbodee http:\/\/neauxbodee.tumblr.com","protected":false,"verified":false,"followers_count":2451,"friends_count":485,"listed_count":80,"favourites_count":722,"statuses_count":192768,"created_at":"Fri Mar 19 13:56:10 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661668846785269761\/OdREzTxo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661668846785269761\/OdREzTxo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124467477\/1435440074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086666"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106260185089,"id_str":"663728106260185089","text":"RT @Laymom1007: #2015MAMA_VOTE https:\/\/t.co\/iM2ChCFQib\n\ud22c\ud45c\ub098 \ud574\uc694 \uc6b0\ub9ac.... \uc640\uc7a5\ucc3d!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2481552374,"id_str":"2481552374","name":"elayxing","screen_name":"elayxing","location":"EXO","url":null,"description":"\uc0ac\ub791\ud55c\ub2e4 http:\/\/m.ask.fm\/elayxing","protected":false,"verified":false,"followers_count":8145,"friends_count":150,"listed_count":79,"favourites_count":139,"statuses_count":26364,"created_at":"Wed May 07 06:50:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320005686116354\/oerMCSiD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320005686116354\/oerMCSiD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2481552374\/1445176562","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728023162609664,"id_str":"663728023162609664","text":"#2015MAMA_VOTE https:\/\/t.co\/iM2ChCFQib\n\ud22c\ud45c\ub098 \ud574\uc694 \uc6b0\ub9ac.... \uc640\uc7a5\ucc3d!!","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2322424387,"id_str":"2322424387","name":"\ub808\uc774\uc5c4\ub9c8 \ubf40\ub1e8","screen_name":"Laymom1007","location":"\uc774\uc53d\uc758 \ub208\uc379\ubf08 \uc5b4\ub518\uac00","url":null,"description":"EXO LAY \/ EXO is 1 \/ \uc5d1\uc18c\uc640 \ud568\uaed8 \ud589\ubcf5\ud55c \ub178\ud6c4","protected":false,"verified":false,"followers_count":2799,"friends_count":291,"listed_count":17,"favourites_count":3409,"statuses_count":35195,"created_at":"Sat Feb 01 14:31:37 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"8A6DC7","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659387704359018496\/Onk-0NOr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659387704359018496\/Onk-0NOr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2322424387\/1446393257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA_VOTE","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/iM2ChCFQib","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA_VOTE","indices":[16,30]}],"urls":[{"url":"https:\/\/t.co\/iM2ChCFQib","expanded_url":"http:\/\/mama.mwave.me\/vote","display_url":"mama.mwave.me\/vote","indices":[31,54]}],"user_mentions":[{"screen_name":"Laymom1007","name":"\ub808\uc774\uc5c4\ub9c8 \ubf40\ub1e8","id":2322424387,"id_str":"2322424387","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086661"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268561408,"id_str":"663728106268561408","text":"RT @kiteretu06: \u6614\u304b\u3089\u898b\u3066\u3044\u308b\u5e74\u4e0b\u306e\u7537\u306e\u5b50\u305f\u3061\u306e\u6210\u9577\u3092\u3072\u3057\u3072\u3057\u3068\u611f\u3058\u308b\u30d9\u30eb\u3061\u3083\u3093\uff08\u30d9\u30eb\u30eb\u30af\u30ed\u30de\uff09 https:\/\/t.co\/7P191YRWAv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":450503687,"id_str":"450503687","name":"\u2020\u250f\u251b\u83dc\u6458\u2517\u2513\u2020","screen_name":"natsumikan_3270","location":"\u3055\u3046\u3056\u3093\u3069\u308a\u30fc\u3075","url":null,"description":"\u57fa\u672c\u7684\u306bNL\u597d\u304d\u3002BL\u3082\u3044\u3051\u308b\u3002\u6210\u4eba\u6e08\u307f\u3002\r\n\u597d\u304d\u2192\u30d8\u30bf\u30ea\u30a2\uff08\u30ae\u30eb\u30a8\u30ea\uff09\u3001\u30de\u30ae\uff08\u30b7\u30e3\u30eb\u30e4\u30e0\uff09\u3001\u30cf\u30ac\u30ec\u30f3\uff08\u30ed\u30a4\u30a2\u30a4\uff09\u3001\u9280\u9b42\uff08\u6c96\u795e\uff09\u3001\u3046\u305f\u2606\u30d7\u30ea\uff08\u30ec\u30f3\u3001\u5dba\u4e8c\uff09\u3001\u9ed2\u30d0\u30b9\uff08\u9ec4\u702c\u3001\u9ad8\u5c3e\u3001\u7dd1\u9ad8\u3001\u9752\u6843\uff09\u3002\u7537\u6027\u58f0\u512a\u3055\u3093\u3001\u304a\u7d75\u63cf\u304d\u3001\u6f2b\u753b\u3001\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u4f5c\u308a\u3002\r\n\u3044\u307e\u306f\u30b7\u30e3\u30eb\u30e4\u30e0\u6e29\u6cc9\u3067\u306c\u304f\u306c\u304f\u3057\u3066\u3044\u308b\u3053\u3068\u304c\u591a\u3044\u3002","protected":false,"verified":false,"followers_count":77,"friends_count":153,"listed_count":5,"favourites_count":844,"statuses_count":23961,"created_at":"Fri Dec 30 09:34:27 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592896897620299776\/bgHnBjim_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592896897620299776\/bgHnBjim_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:59 +0000 2015","id":663716666333728768,"id_str":"663716666333728768","text":"\u6614\u304b\u3089\u898b\u3066\u3044\u308b\u5e74\u4e0b\u306e\u7537\u306e\u5b50\u305f\u3061\u306e\u6210\u9577\u3092\u3072\u3057\u3072\u3057\u3068\u611f\u3058\u308b\u30d9\u30eb\u3061\u3083\u3093\uff08\u30d9\u30eb\u30eb\u30af\u30ed\u30de\uff09 https:\/\/t.co\/7P191YRWAv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86651298,"id_str":"86651298","name":"\u304d\u3066\u308c\u3064","screen_name":"kiteretu06","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=498691","description":"\u897f\u30ed\u30de\u304c\u597d\u304d \u6210\u4eba\u6e08 R18\u57a2\u2192@kiteretuura","protected":false,"verified":false,"followers_count":386,"friends_count":303,"listed_count":10,"favourites_count":4342,"statuses_count":27512,"created_at":"Sun Nov 01 03:14:03 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442684379\/____.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442684379\/____.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637642503127076864\/xL0kHQb5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637642503127076864\/xL0kHQb5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86651298\/1438618666","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":64,"favorite_count":159,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716664521850880,"id_str":"663716664521850880","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716664521850880,"id_str":"663716664521850880","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}}},{"id":663716664651853825,"id_str":"663716664651853825","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjwUsAEVt8j.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjwUsAEVt8j.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}}},{"id":663716664098197504,"id_str":"663716664098197504","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yhsUkAAKsKo.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yhsUkAAKsKo.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kiteretu06","name":"\u304d\u3066\u308c\u3064","id":86651298,"id_str":"86651298","indices":[3,14]}],"symbols":[],"media":[{"id":663716664521850880,"id_str":"663716664521850880","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}},"source_status_id":663716666333728768,"source_status_id_str":"663716666333728768","source_user_id":86651298,"source_user_id_str":"86651298"}]},"extended_entities":{"media":[{"id":663716664521850880,"id_str":"663716664521850880","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjRVAAA3Ffu.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}},"source_status_id":663716666333728768,"source_status_id_str":"663716666333728768","source_user_id":86651298,"source_user_id_str":"86651298"},{"id":663716664651853825,"id_str":"663716664651853825","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yjwUsAEVt8j.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yjwUsAEVt8j.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}},"source_status_id":663716666333728768,"source_status_id_str":"663716666333728768","source_user_id":86651298,"source_user_id_str":"86651298"},{"id":663716664098197504,"id_str":"663716664098197504","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-yhsUkAAKsKo.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-yhsUkAAKsKo.png","url":"https:\/\/t.co\/7P191YRWAv","display_url":"pic.twitter.com\/7P191YRWAv","expanded_url":"http:\/\/twitter.com\/kiteretu06\/status\/663716666333728768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":481,"resize":"fit"},"large":{"w":876,"h":1240,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"}},"source_status_id":663716666333728768,"source_status_id_str":"663716666333728768","source_user_id":86651298,"source_user_id_str":"86651298"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247618560,"id_str":"663728106247618560","text":"@Bjorniee5SOS hi are you selling tix for slfl?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":769056522,"in_reply_to_user_id_str":"769056522","in_reply_to_screen_name":"Bjorniee5SOS","user":{"id":138679149,"id_str":"138679149","name":"Jean","screen_name":"RJeanRT","location":"where there is kindness.","url":null,"description":"Future Drug lord. FEU-NRMF. Calum Hood's girl. J.R.|| Kpop || Have Courage And Be Kind.","protected":false,"verified":false,"followers_count":462,"friends_count":312,"listed_count":2,"favourites_count":754,"statuses_count":2038,"created_at":"Fri Apr 30 07:30:37 +0000 2010","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595593596432031744\/LWKcJyRx.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595593596432031744\/LWKcJyRx.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"3B2931","profile_text_color":"FF61FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645931023683837953\/PoqI3PYz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645931023683837953\/PoqI3PYz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138679149\/1441711242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bjorniee5SOS","name":"CROWNING ON 3.12.16","id":769056522,"id_str":"769056522","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106281168897,"id_str":"663728106281168897","text":"Ridding through the hood in my baby ghost so many niggas was turning they heads ommm\ud83d\ude02\ud83d\ude1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2689009879,"id_str":"2689009879","name":"AMBER\u2728","screen_name":"princeessamber","location":"Houston, TX","url":null,"description":"chassing a check","protected":false,"verified":false,"followers_count":89,"friends_count":110,"listed_count":0,"favourites_count":277,"statuses_count":2447,"created_at":"Tue Jul 29 02:52:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655595479674150912\/UIyOiWoO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655595479674150912\/UIyOiWoO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2689009879\/1435960069","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086666"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247598081,"id_str":"663728106247598081","text":"\u304f\u305d\u3001\u4ffa\u3082\u4eba\u6c17\u305d\u3053\u305d\u3053\u306e\u540c\u4eba\u4f5c\u5bb6\u3068\u3044\u3046\u7acb\u5834\u3067\u81ea\u8650\u3057\u305f\u304b\u3063\u305f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104870360,"id_str":"104870360","name":"\u6642\u4e4b","screen_name":"toki_yuki","location":"\u5927\u962a\u5e9c","url":"http:\/\/www.pixiv.net\/member.php?id=21693","description":"\u30a2\u30a4\u30ab\u30c4!\u304c\u5927\u597d\u304d\u3067\u3059\uff01 \u95c7\u306e\u30a2\u30a4\u30ab\u30c4\u304a\u3058\u3055\u3093\u306f\u304a\u65ad\u308a\u3057\u3066\u307e\u3059\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u305f\u5f8c\u306b\u6c17\u4ed8\u3044\u305f\u5834\u5408\u3001\u30ea\u30e0\u30fc\u30d6\u3059\u308b\u4e8b\u304c\u3042\u308a\u307e\u3059\u3002 http:\/\/toki-yuki.tumblr.com","protected":false,"verified":false,"followers_count":1109,"friends_count":645,"listed_count":102,"favourites_count":37160,"statuses_count":183162,"created_at":"Thu Jan 14 17:14:57 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650642000169971712\/fAQQSPOo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650642000169971712\/fAQQSPOo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104870360\/1445278152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268696577,"id_str":"663728106268696577","text":"@FracturCritical I'm dying to have hair down to my waist again but I can't wait to cut it off on Wednesday","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727931445809156,"in_reply_to_status_id_str":"663727931445809156","in_reply_to_user_id":2536414506,"in_reply_to_user_id_str":"2536414506","in_reply_to_screen_name":"FracturCritical","user":{"id":20661876,"id_str":"20661876","name":"jackie","screen_name":"colorlessblue","location":null,"url":"http:\/\/colorlessblue.blogspot.com","description":null,"protected":false,"verified":false,"followers_count":421,"friends_count":201,"listed_count":19,"favourites_count":1139,"statuses_count":83439,"created_at":"Thu Feb 12 08:17:54 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597123833489989632\/27b64Hwo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597123833489989632\/27b64Hwo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20661876\/1403995231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FracturCritical","name":"MommaH","id":2536414506,"id_str":"2536414506","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264367105,"id_str":"663728106264367105","text":"RT @news_va_en: Pope Francis meets with President of Poland \u00a7RV https:\/\/t.co\/eMkks3u80l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90435538,"id_str":"90435538","name":"Jonathan B.","screen_name":"BigBrotherFan_7","location":"United States Of America","url":"https:\/\/www.facebook.com\/pages\/Meg-Maley-BIG-Brother-17\/837140086339458?fref=ts&ref=br_tf","description":"My homestate is NY, I proudly volunteer with my local dog rescue saving & adopting dogs, I like HeavyMetal\/Rock, Fishing, Outdoors & I'm a huge BIG BROTHER FAN","protected":false,"verified":false,"followers_count":141,"friends_count":2044,"listed_count":7,"favourites_count":24889,"statuses_count":33629,"created_at":"Mon Nov 16 17:08:09 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569522338098454528\/I_W30Kgs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569522338098454528\/I_W30Kgs.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661734160239689728\/BOmEN_mX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661734160239689728\/BOmEN_mX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90435538\/1446604716","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:04:38 +0000 2015","id":663703744991920128,"id_str":"663703744991920128","text":"Pope Francis meets with President of Poland \u00a7RV https:\/\/t.co\/eMkks3u80l","source":"\u003ca href=\"http:\/\/www.radiovaticana.org\" rel=\"nofollow\"\u003eupdater_news_va_en\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":121482708,"id_str":"121482708","name":"Vatican - news","screen_name":"news_va_en","location":"Vatican","url":"http:\/\/rv.va","description":"Vatican media: CTV, Osservatore Romano, Pontifical Council for Social Communications, Vatican Radio, Press Office, Vatican website, V.I.S.","protected":false,"verified":true,"followers_count":235072,"friends_count":0,"listed_count":4211,"favourites_count":0,"statuses_count":9659,"created_at":"Tue Mar 09 16:52:49 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/84591212\/Immagine1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/84591212\/Immagine1.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/763602346\/logo_news_va_twitter_VAT2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/763602346\/logo_news_va_twitter_VAT2_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eMkks3u80l","expanded_url":"http:\/\/rv.va\/PmHq1a","display_url":"rv.va\/PmHq1a","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eMkks3u80l","expanded_url":"http:\/\/rv.va\/PmHq1a","display_url":"rv.va\/PmHq1a","indices":[64,87]}],"user_mentions":[{"screen_name":"news_va_en","name":"Vatican - news","id":121482708,"id_str":"121482708","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106276978692,"id_str":"663728106276978692","text":"@nao_qunqun #\u5185\u6751\u5948\u7dd2 \uff81\uff6c\uff9d\ud83c\udfb5\n#QunQun \n#\u30d6\u30ed\u30b0 \u8aad\u307f\u307e\u3057\u305f(\u25cf^o^\u25cf)(^^)\n#\u3044\u3044\u306d \u3082\u30dd\u30c1\u3063\u3068 \u3057\u305f\u3088\u3093\ud83c\udfb5\n \u4eca\u65e5\u3082\u304a\u3064\u304b\u308c\u3055\u307e\u3002\u3067\u3057\u305f\ud83c\udf20\ud83c\udf20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723044645441536,"in_reply_to_status_id_str":"663723044645441536","in_reply_to_user_id":3004836596,"in_reply_to_user_id_str":"3004836596","in_reply_to_screen_name":"nao_qunqun","user":{"id":3767814919,"id_str":"3767814919","name":"\u826f\u679d \u9ad8\u6a4b (\u4eee)","screen_name":"akb48surprise","location":"\u79cb\u8449\u539f\uff14\uff18\u3000\uff08Twitter 10\uff0f05\u767b\u9332\uff09","url":null,"description":"\u2661AKB48\u5927\u597d\u304d\u3067\u3059\u3063\u2661 \n\n\n\u3069\u3061\u3089\u304b\u3068\u3044\u3048\u3070\u2026 \u3000\u3000\u3000\u3000 \n\n\n\n\u30a4\u30f3\u30c9\u30a2\u6d3e\u3067\n\n\u306e\u3093\u3073\u308a\u5c4b\u3055\u3093\u3067\uff5e\u3059 \n\u3000\n\u3000\u3000\u3000\u3000\u3000\u2661(\u0e51\u00b4\u06a1`\u0e51)(\u2022\u04e9\u2022)\u2661\n\n\u7686\u3055\u307e\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":218,"friends_count":137,"listed_count":1,"favourites_count":2548,"statuses_count":892,"created_at":"Sat Oct 03 07:43:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654963080128892928\/Cqz7BfLT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654963080128892928\/Cqz7BfLT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3767814919\/1444989663","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5185\u6751\u5948\u7dd2","indices":[15,20]},{"text":"QunQun","indices":[26,33]},{"text":"\u30d6\u30ed\u30b0","indices":[35,39]},{"text":"\u3044\u3044\u306d","indices":[57,61]}],"urls":[],"user_mentions":[{"screen_name":"nao_qunqun","name":"\u5185\u6751\u5948\u7dd2@QunQun","id":3004836596,"id_str":"3004836596","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086665"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106276962304,"id_str":"663728106276962304","text":"RT @TheMeninist: \"He doesn't have a beard though..\"\n\"He's not 6'2 though..\"\n\"He's not rich though..\"\n25 years later https:\/\/t.co\/OP0D2Mxf4y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1391427606,"id_str":"1391427606","name":"Mohamed Faris","screen_name":"mohamedfaris_","location":"Bangi","url":null,"description":"I like pizza. 21. UTP. snapchat: farismojo","protected":false,"verified":false,"followers_count":524,"friends_count":306,"listed_count":2,"favourites_count":12366,"statuses_count":6487,"created_at":"Tue Apr 30 07:41:37 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/856129188\/b38eb28cbae45b51169bbe203c71b3f8.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/856129188\/b38eb28cbae45b51169bbe203c71b3f8.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692829319794689\/2xIR_0TF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692829319794689\/2xIR_0TF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1391427606\/1436817775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:30:16 +0000 2015","id":663664896727506944,"id_str":"663664896727506944","text":"\"He doesn't have a beard though..\"\n\"He's not 6'2 though..\"\n\"He's not rich though..\"\n25 years later https:\/\/t.co\/OP0D2Mxf4y","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2839170688,"id_str":"2839170688","name":"Meninist","screen_name":"TheMeninist","location":"Snapchat - TheBootyMd","url":null,"description":"Obviously sarcasm | (Parody) | We do not own any of the content we post! Contact @TheBootyMD for tweet removal and advertising.","protected":false,"verified":false,"followers_count":113902,"friends_count":1,"listed_count":189,"favourites_count":175,"statuses_count":11486,"created_at":"Tue Oct 21 04:01:05 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588839161945137152\/efkY_Gq2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588839161945137152\/efkY_Gq2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2839170688\/1432001055","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":231,"favorite_count":321,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663664896668794881,"id_str":"663664896668794881","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","url":"https:\/\/t.co\/OP0D2Mxf4y","display_url":"pic.twitter.com\/OP0D2Mxf4y","expanded_url":"http:\/\/twitter.com\/TheMeninist\/status\/663664896727506944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":599,"h":298,"resize":"fit"},"medium":{"w":599,"h":298,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663664896668794881,"id_str":"663664896668794881","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","url":"https:\/\/t.co\/OP0D2Mxf4y","display_url":"pic.twitter.com\/OP0D2Mxf4y","expanded_url":"http:\/\/twitter.com\/TheMeninist\/status\/663664896727506944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":599,"h":298,"resize":"fit"},"medium":{"w":599,"h":298,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheMeninist","name":"Meninist","id":2839170688,"id_str":"2839170688","indices":[3,15]}],"symbols":[],"media":[{"id":663664896668794881,"id_str":"663664896668794881","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","url":"https:\/\/t.co\/OP0D2Mxf4y","display_url":"pic.twitter.com\/OP0D2Mxf4y","expanded_url":"http:\/\/twitter.com\/TheMeninist\/status\/663664896727506944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":599,"h":298,"resize":"fit"},"medium":{"w":599,"h":298,"resize":"fit"}},"source_status_id":663664896727506944,"source_status_id_str":"663664896727506944","source_user_id":2839170688,"source_user_id_str":"2839170688"}]},"extended_entities":{"media":[{"id":663664896668794881,"id_str":"663664896668794881","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXPtQ_XAAEXbsC.jpg","url":"https:\/\/t.co\/OP0D2Mxf4y","display_url":"pic.twitter.com\/OP0D2Mxf4y","expanded_url":"http:\/\/twitter.com\/TheMeninist\/status\/663664896727506944\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":599,"h":298,"resize":"fit"},"medium":{"w":599,"h":298,"resize":"fit"}},"source_status_id":663664896727506944,"source_status_id_str":"663664896727506944","source_user_id":2839170688,"source_user_id_str":"2839170688"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086665"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106272890880,"id_str":"663728106272890880","text":"RT @xexe_club: \u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444 \u0441\u043d\u044f\u043b \u0440\u0430\u0437\u044a\u044f\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u043b\u044c\u0432\u0430 \u0437\u0430 \u043c\u0433\u043d\u043e\u0432\u0435\u043d\u0438\u0435 \u0434\u043e \u043d\u0430\u043f\u0430\u0434\u0435\u043d\u0438\u044f\n\n\u0410\u0442\u0438\u0444 \u0421\u0430\u0438\u0434, \u043f\u0440\u043e\u0444\u0435\u0441\u0441\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u0442\u043e\u0433 https:\/\/t.co\/PwtZsSTuPu https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2306347184,"id_str":"2306347184","name":"\u0421\u0435\u0440\u0433\u0435\u0439 \u0421\u0435\u043c\u0435\u043d\u043e\u0432","screen_name":"sns521","location":"\u0420\u043e\u0441\u0441\u0438\u044f, \u0412\u043e\u043b\u0433\u0430, \u0423\u043b\u044c\u044f\u043d\u043e\u0432\u0441\u043a","url":null,"description":"\u0432\u0435\u0440\u0430, \u043b\u044e\u0431\u043e\u0432\u044c, \u043f\u0440\u0430\u0432\u0434\u0430, \u0441\u043f\u0440\u0430\u0432\u0435\u0434\u043b\u0438\u0432\u043e\u0441\u0442\u044c","protected":false,"verified":false,"followers_count":2565,"friends_count":2312,"listed_count":11,"favourites_count":444,"statuses_count":18194,"created_at":"Thu Jan 23 10:38:06 +0000 2014","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430005423387582464\/eAiFR1vn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430005423387582464\/eAiFR1vn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2306347184\/1415191408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:36:12 +0000 2015","id":663696589437968384,"id_str":"663696589437968384","text":"\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444 \u0441\u043d\u044f\u043b \u0440\u0430\u0437\u044a\u044f\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u043b\u044c\u0432\u0430 \u0437\u0430 \u043c\u0433\u043d\u043e\u0432\u0435\u043d\u0438\u0435 \u0434\u043e \u043d\u0430\u043f\u0430\u0434\u0435\u043d\u0438\u044f\n\n\u0410\u0442\u0438\u0444 \u0421\u0430\u0438\u0434, \u043f\u0440\u043e\u0444\u0435\u0441\u0441\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u044b\u0439 \u0444\u043e\u0442\u043e\u0433 https:\/\/t.co\/PwtZsSTuPu https:\/\/t.co\/3IEuiyvlP2","source":"\u003ca href=\"http:\/\/novapress.net.ru\/\" rel=\"nofollow\"\u003eNovaPress Publisher\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2888257348,"id_str":"2888257348","name":"\u0425\u0435\u0425\u0435 \u041a\u043b\u0443\u0431","screen_name":"xexe_club","location":null,"url":"http:\/\/xexe.club","description":"\u041f\u0435\u0440\u0432\u044b\u0439 \u0440\u0430\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442\u0430\u043b \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043f\u043b\u0430\u0442\u0438\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c. \u0412\u0441\u0435\u0433\u043e \u0432\u044b\u043f\u043b\u0430\u0447\u0435\u043d\u043e 37120 \u0440\u0443\u0431\u043b\u0435\u0439.","protected":false,"verified":false,"followers_count":42174,"friends_count":26461,"listed_count":147,"favourites_count":0,"statuses_count":38580,"created_at":"Sat Nov 22 19:54:56 +0000 2014","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578580671259545600\/0IjYxyte_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578580671259545600\/0IjYxyte_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2888257348\/1431630986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PwtZsSTuPu","expanded_url":"http:\/\/xexe.club\/46045-fotograf-snyal-razyarennogo-lva-za-mgnovenie-do-napadeniya.html","display_url":"xexe.club\/46045-fotograf\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663696588250947584,"id_str":"663696588250947584","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","url":"https:\/\/t.co\/3IEuiyvlP2","display_url":"pic.twitter.com\/3IEuiyvlP2","expanded_url":"http:\/\/twitter.com\/xexe_club\/status\/663696589437968384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":604,"h":502,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696588250947584,"id_str":"663696588250947584","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","url":"https:\/\/t.co\/3IEuiyvlP2","display_url":"pic.twitter.com\/3IEuiyvlP2","expanded_url":"http:\/\/twitter.com\/xexe_club\/status\/663696589437968384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":604,"h":502,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PwtZsSTuPu","expanded_url":"http:\/\/xexe.club\/46045-fotograf-snyal-razyarennogo-lva-za-mgnovenie-do-napadeniya.html","display_url":"xexe.club\/46045-fotograf\u2026","indices":[108,131]}],"user_mentions":[{"screen_name":"xexe_club","name":"\u0425\u0435\u0425\u0435 \u041a\u043b\u0443\u0431","id":2888257348,"id_str":"2888257348","indices":[3,13]}],"symbols":[],"media":[{"id":663696588250947584,"id_str":"663696588250947584","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","url":"https:\/\/t.co\/3IEuiyvlP2","display_url":"pic.twitter.com\/3IEuiyvlP2","expanded_url":"http:\/\/twitter.com\/xexe_club\/status\/663696589437968384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":604,"h":502,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}},"source_status_id":663696589437968384,"source_status_id_str":"663696589437968384","source_user_id":2888257348,"source_user_id_str":"2888257348"}]},"extended_entities":{"media":[{"id":663696588250947584,"id_str":"663696588250947584","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXsh9VWIAAZYTh.jpg","url":"https:\/\/t.co\/3IEuiyvlP2","display_url":"pic.twitter.com\/3IEuiyvlP2","expanded_url":"http:\/\/twitter.com\/xexe_club\/status\/663696589437968384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":604,"h":502,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}},"source_status_id":663696589437968384,"source_status_id_str":"663696589437968384","source_user_id":2888257348,"source_user_id_str":"2888257348"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080086664"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264334336,"id_str":"663728106264334336","text":"\u3053\u3093\u3070\u3093\u306f\uff01\u3053\u306e\u5f8c24\u6642\u3088\u308a\u30b6\u30b7\u30c6\u30a3\u30d9\u30eb\u30b7\u30c6\u30a3\u5357\u6d66\u548c\u5e97\u3088\u308a\u300e\u30a4\u30f3\u30d5\u30a3\u30cb\u30c3\u30c8\u30fb\u30b9\u30c8\u30e9\u30c8\u30b9\u30fb\u30ac\u30fc\u30eb\u30ba\uff06\u30d1\u30f3\u30c4\u30a1\u30fc\u300f\u3010\u9589\u5e97\u5f8c\u306e\u30d1\u30c1\u30f3\u30b3\u5c4b\u3055\u3093\u3067\u30c1\u30e7\u30e1\u30c1\u30e7\u30e1\u2026\u3011\u3092\u653e\u9001\u81f4\u3057\u307e\u3059!!\n\u662f\u975e\u3054\u8996\u8074\u4e0b\u3055\u3044\u3002\nhttps:\/\/t.co\/JamFaZEQRb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150533590,"id_str":"2150533590","name":"\u56e3\u5730\u59bb\u3088\u3057\u3048","screen_name":"dantizumayoshie","location":null,"url":null,"description":"\u9152\u30d1\u30ef\u30fc\u3067MC\u304b\u3089\u55b6\u696d\u306b\u8ee2\u8eab\u3002\u914d\u4fe1\u306b\u306f\u6642\u3088\u308a\u767b\u5834\u3057\u307e\u3059\uff01\n\u305f\u307e\u306b\u306f\u3053\u3093\u306aMC\u3082\u601d\u3044\u51fa\u3057\u3066\u306d\u2661","protected":false,"verified":false,"followers_count":734,"friends_count":668,"listed_count":13,"favourites_count":28,"statuses_count":5737,"created_at":"Wed Oct 23 08:19:19 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514779900905926657\/EGgkGOSI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514779900905926657\/EGgkGOSI_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JamFaZEQRb","expanded_url":"http:\/\/live.nicovideo.jp\/watch\/lv240132270","display_url":"live.nicovideo.jp\/watch\/lv240132\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247598080,"id_str":"663728106247598080","text":"https:\/\/t.co\/6WT0j8Umgg \uc2e0\uace0\ubcc0\ud55c\uc131\uad6c\ucc44 https:\/\/t.co\/7UE3lOG669","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142737574,"id_str":"4142737574","name":"\ud3c9\uc8fc\ube48","screen_name":"nbedazec","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4369,"created_at":"Fri Nov 06 05:26:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6WT0j8Umgg","expanded_url":"http:\/\/riata.pw\/info-41893219","display_url":"riata.pw\/info-41893219","indices":[0,23]},{"url":"https:\/\/t.co\/7UE3lOG669","expanded_url":"http:\/\/hydathode.pw\/?mid=38871906","display_url":"hydathode.pw\/?mid=38871906","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264391680,"id_str":"663728106264391680","text":"RT @Tweet0292: Push! DenJen lang ang love team na humahakot ng awards. #MFHPamamaalam https:\/\/t.co\/XZmUIp0tZ5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1715787920,"id_str":"1715787920","name":"Vince Balbanero","screen_name":"vinceriverao17","location":"Muntinlupa City","url":null,"description":"Certified ALDUBnatics, Japs'Adiks, JoshBie Forever, Forever JhaBea, Parts Of JulieMo Family, Tweens Stars Fan, Tween Academy Member xD, Biguel Holics, Sangre\u2661","protected":false,"verified":false,"followers_count":199,"friends_count":0,"listed_count":5,"favourites_count":2428,"statuses_count":10125,"created_at":"Sat Aug 31 14:05:52 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662534831876665349\/CiqI0QJP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662534831876665349\/CiqI0QJP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1715787920\/1446795586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:28 +0000 2015","id":663727861220552704,"id_str":"663727861220552704","text":"Push! DenJen lang ang love team na humahakot ng awards. #MFHPamamaalam https:\/\/t.co\/XZmUIp0tZ5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137657814,"id_str":"137657814","name":"YaneYane\u261d","screen_name":"Tweet0292","location":"Fear GOD! Jeremiah29:11","url":null,"description":"'Mistaker but Forgiven'\u261d\nIm a fan!","protected":false,"verified":false,"followers_count":289,"friends_count":874,"listed_count":0,"favourites_count":4552,"statuses_count":6555,"created_at":"Tue Apr 27 10:54:36 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C260DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000025765143\/c9961eeaa3a8a2721a6febbe1b76ef8c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000025765143\/c9961eeaa3a8a2721a6febbe1b76ef8c.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662949827613847552\/53jSA-uP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662949827613847552\/53jSA-uP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137657814\/1443287638","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663711467665883138,"quoted_status_id_str":"663711467665883138","quoted_status":{"created_at":"Mon Nov 09 13:35:19 +0000 2015","id":663711467665883138,"id_str":"663711467665883138","text":"Jennylyn Mercado for Best Actress and Dennis Trillo for Best Actor. Daman dama ko ang akting nila \ud83d\ude4c\ud83c\udffb\ud83d\udc4f\ud83c\udffb #MFHPamamaalam","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3272760044,"id_str":"3272760044","name":"JoWaPao","screen_name":"TheJoWaPao","location":null,"url":null,"description":"Jose Manalo | Wally Bayola | Paolo Ballesteros","protected":false,"verified":false,"followers_count":87014,"friends_count":65,"listed_count":11,"favourites_count":15502,"statuses_count":46,"created_at":"Thu Jul 09 08:48:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660445660034916356\/12QlmK-9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660445660034916356\/12QlmK-9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272760044\/1446297671","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MFHPamamaalam","indices":[104,118]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"MFHPamamaalam","indices":[56,70]}],"urls":[{"url":"https:\/\/t.co\/XZmUIp0tZ5","expanded_url":"https:\/\/twitter.com\/TheJoWaPao\/status\/663711467665883138","display_url":"twitter.com\/TheJoWaPao\/sta\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MFHPamamaalam","indices":[71,85]}],"urls":[{"url":"https:\/\/t.co\/XZmUIp0tZ5","expanded_url":"https:\/\/twitter.com\/TheJoWaPao\/status\/663711467665883138","display_url":"twitter.com\/TheJoWaPao\/sta\u2026","indices":[87,110]}],"user_mentions":[{"screen_name":"Tweet0292","name":"YaneYane\u261d","id":137657814,"id_str":"137657814","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106281107456,"id_str":"663728106281107456","text":"@Martin_Atomos \n\u307f\u3093\u306a\u3067\u308f\u3044\u308f\u3044\u3057\u3066\u308bFF\u306b\u65e9\u304f\u30a4\u30f3\u3057\u305f\u3044(\u00b4\u30fb\u03c9\u30fb\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733688545280,"in_reply_to_status_id_str":"663727733688545280","in_reply_to_user_id":717306728,"in_reply_to_user_id_str":"717306728","in_reply_to_screen_name":"Martin_Atomos","user":{"id":3756508813,"id_str":"3756508813","name":"\u1d37\u1d2c\u1d31\u1d30\u1d31\u2768\u22c6\u1d3c\u1883\u1d3c\u22c6\u2769","screen_name":"Kaede_atomos","location":"Atomos \u262a\u30e1\u30a4\u30f3\u30af\u30a8\u30b9\u30c8\u9811\u5f35\u308a\u3061\u3085","url":null,"description":"\u4eca\u66f4\u3060\u3051\u3069FF14\u59cb\u3081\u307e\u3057\u305f\uff01\u672c\u5f53\u306b\u521d\u5fc3\u8005\u3067\u4e0b\u624b\u304f\u305d\u3067\u3059\u304c\u3001\u5c11\u3057\u305a\u3064\u899a\u3048\u3066\u697d\u3057\u3081\u305f\u3089\u3044\u3044\u306a\u3063\u3066\u601d\u3044\u307e\u3059(\u2741\u00b4\u03c9`\u2741)\u826f\u3051\u308c\u3070\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044(* \u0951\ua4b3 \u0951*) \u30e9\u30e9\u30d5\u30a7\u30eb\u53ef\u611b\u304f\u3066\u7652\u3055\u308c\u308b\u2661 (2015\/10\/01\uff5e) \u3077\u305d:@k_7_PSO2","protected":false,"verified":false,"followers_count":31,"friends_count":48,"listed_count":2,"favourites_count":482,"statuses_count":1658,"created_at":"Fri Oct 02 07:11:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662253667580416001\/Ug2M6EvT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662253667580416001\/Ug2M6EvT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3756508813\/1444693451","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Martin_Atomos","name":"martin@FF14Atomos","id":717306728,"id_str":"717306728","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086666"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106281177088,"id_str":"663728106281177088","text":"RT @sugaflow93: @BTS_twt \uc8fc\uc18c\uc694! https:\/\/t.co\/JqeXjD5UXT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2195674596,"id_str":"2195674596","name":"sasi","screen_name":"pcypher94","location":"\ubbfc\uc724\uae30\ucc9c\uc7ac\uc9f1\uc9f1\ub9e8\ubfe1\ubfe1","url":null,"description":"\u2765@xxnkim | \ubc29\ud0c4\uc18c\ub144\ub2e8 \uc288\uac00 | #\ubdd4\uc288 | \uc138\ube10\ud2f4 \uc6b0\uc9c0 | \ub300\ub0a8\ud611 | \uc0f4\ud398\uc778 & \uce94\ub4e4 | \uc815\uc7ac\uc6d0 \u3078(\u00b4\u2200\uff40\u3078)","protected":false,"verified":false,"followers_count":64,"friends_count":64,"listed_count":6,"favourites_count":230,"statuses_count":22295,"created_at":"Fri Nov 15 09:26:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"909699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457872012283621376\/L0GTctYP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457872012283621376\/L0GTctYP.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662241702522957824\/F1C8N6Ct_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662241702522957824\/F1C8N6Ct_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2195674596\/1443498621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728019521966080,"id_str":"663728019521966080","text":"@BTS_twt \uc8fc\uc18c\uc694! https:\/\/t.co\/JqeXjD5UXT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727980749852672,"in_reply_to_status_id_str":"663727980749852672","in_reply_to_user_id":3273109554,"in_reply_to_user_id_str":"3273109554","in_reply_to_screen_name":"sugaflow93","user":{"id":3273109554,"id_str":"3273109554","name":"SUGA FLOW","screen_name":"sugaflow93","location":"\uc299\uae30\ub825","url":"http:\/\/sugaflow.com","description":"\ubc29\ud0c4\uc18c\ub144\ub2e8 \uc288\uac00 \ud32c\ud398\uc774\uc9c0 \uc288\uac00\ud50c\ub85c\uc6b0 @BTS_twt","protected":false,"verified":false,"followers_count":15219,"friends_count":25,"listed_count":472,"favourites_count":139,"statuses_count":705,"created_at":"Thu Jul 09 15:51:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630934127064133632\/6fH5VFJ5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630934127064133632\/6fH5VFJ5.jpg","profile_background_tile":false,"profile_link_color":"E6547D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661487879378497536\/Rsm9p28n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661487879378497536\/Rsm9p28n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273109554\/1446645576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JqeXjD5UXT","expanded_url":"http:\/\/bit.ly\/1Qp8Div","display_url":"bit.ly\/1Qp8Div","indices":[14,37]}],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JqeXjD5UXT","expanded_url":"http:\/\/bit.ly\/1Qp8Div","display_url":"bit.ly\/1Qp8Div","indices":[30,53]}],"user_mentions":[{"screen_name":"sugaflow93","name":"SUGA FLOW","id":3273109554,"id_str":"3273109554","indices":[3,14]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[16,24]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080086666"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256146432,"id_str":"663728106256146432","text":"Si no fuera por eso ganar\u00eda la expulsi\u00f3n por goleada. #MartaPaSuCasa ya!!! Ella y su patrocinador nos toman por tontos #GH16 #tongopurovaya","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":273998605,"id_str":"273998605","name":"pilar sanchez","screen_name":"mpscdance21","location":"El Puerto de Santa Mar\u00eda, Andaluc\u00eda","url":null,"description":"El 18.03.2015 conoc\u00ed el verdadero amor!","protected":false,"verified":false,"followers_count":34,"friends_count":132,"listed_count":0,"favourites_count":17,"statuses_count":17,"created_at":"Tue Mar 29 14:43:20 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603841511449583616\/M3fswWSM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603841511449583616\/M3fswWSM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/273998605\/1432803876","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MartaPaSuCasa","indices":[54,68]},{"text":"GH16","indices":[119,124]},{"text":"tongopurovaya","indices":[125,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080086660"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106247688192,"id_str":"663728106247688192","text":"Gente che si prende sul serio \ud83d\ude02@ddlovato @nickjonas @grimmers https:\/\/t.co\/WN8eomaxTc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1516232234,"id_str":"1516232234","name":"Zayn\u2764\ufe0f","screen_name":"porta_sofia","location":null,"url":null,"description":"Pi\u00f9 \u00e8 difficile avere una cosa pi\u00f9 la si ama 29\/06\/14 one direction\/Demi Lovato \/shameless\/PLL\u270c\ufe0f\u2764\ufe0f 25\/10\/15 EMA","protected":false,"verified":false,"followers_count":648,"friends_count":970,"listed_count":0,"favourites_count":9074,"statuses_count":9282,"created_at":"Fri Jun 14 12:00:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662689457385185280\/CkBlUqvE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662689457385185280\/CkBlUqvE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1516232234\/1446832453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[31,40]},{"screen_name":"nickjonas","name":"Nick Jonas","id":56783491,"id_str":"56783491","indices":[41,51]},{"screen_name":"grimmers","name":"nick grimshaw","id":20054788,"id_str":"20054788","indices":[52,61]}],"symbols":[],"media":[{"id":663728090951122944,"id_str":"663728090951122944","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLqCXAAAKxTx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLqCXAAAKxTx.jpg","url":"https:\/\/t.co\/WN8eomaxTc","display_url":"pic.twitter.com\/WN8eomaxTc","expanded_url":"http:\/\/twitter.com\/porta_sofia\/status\/663728106247688192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":506,"resize":"fit"},"large":{"w":500,"h":745,"resize":"fit"},"medium":{"w":500,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728090951122944,"id_str":"663728090951122944","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLqCXAAAKxTx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLqCXAAAKxTx.jpg","url":"https:\/\/t.co\/WN8eomaxTc","display_url":"pic.twitter.com\/WN8eomaxTc","expanded_url":"http:\/\/twitter.com\/porta_sofia\/status\/663728106247688192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":506,"resize":"fit"},"large":{"w":500,"h":745,"resize":"fit"},"medium":{"w":500,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080086658"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106251812864,"id_str":"663728106251812864","text":"RT @LICIA2LIT: Y'all dicks little. \nY'all dicks little\nY'all dicks little\nY'all dicks little \nYall dicks little\nY'all dicks little https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030907360,"id_str":"1030907360","name":"Shalyssa","screen_name":"Alyssapowernaps","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1393,"friends_count":730,"listed_count":3,"favourites_count":4320,"statuses_count":13642,"created_at":"Sun Dec 23 16:39:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4400FF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF03EE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659874509546242048\/a9Dsa1nR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659874509546242048\/a9Dsa1nR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030907360\/1447028201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:58:02 +0000 2015","id":663581289648398336,"id_str":"663581289648398336","text":"Y'all dicks little. \nY'all dicks little\nY'all dicks little\nY'all dicks little \nYall dicks little\nY'all dicks little https:\/\/t.co\/yivkNpscOm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269060506,"id_str":"269060506","name":"Ya Fave Stripper\u2728","screen_name":"LICIA2LIT","location":null,"url":null,"description":"me w all these curves & u w no brakes","protected":false,"verified":false,"followers_count":3295,"friends_count":1843,"listed_count":22,"favourites_count":8338,"statuses_count":154669,"created_at":"Sun Mar 20 01:20:02 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518466799151497216\/XV2pvyVX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518466799151497216\/XV2pvyVX.jpeg","profile_background_tile":true,"profile_link_color":"FFC400","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C4CB98","profile_text_color":"5B3B40","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661914299175190528\/cb8k2fZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661914299175190528\/cb8k2fZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269060506\/1446647641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"bced47a0c99c71d0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bced47a0c99c71d0.json","place_type":"city","name":"Durham","full_name":"Durham, NC","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-79.007589,35.866334],[-79.007589,36.115631],[-78.783292,36.115631],[-78.783292,35.866334]]]},"attributes":{}},"contributors":null,"quoted_status_id":663578004921020416,"quoted_status_id_str":"663578004921020416","quoted_status":{"created_at":"Mon Nov 09 04:44:59 +0000 2015","id":663578004921020416,"id_str":"663578004921020416","text":"Y'all hair not real\nY'all hair not real\nY'all hair not real\nY'all hair not real https:\/\/t.co\/j4hkyJBKEC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489039348,"id_str":"489039348","name":"Nipsey Hussle","screen_name":"JoshuaLorenzo14","location":"Morgan City, LA","url":null,"description":"Lakeside\u2708\ufe0fCypress Gardens","protected":false,"verified":false,"followers_count":649,"friends_count":445,"listed_count":2,"favourites_count":540,"statuses_count":9359,"created_at":"Sat Feb 11 03:43:12 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564156835090432\/y788TDZT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564156835090432\/y788TDZT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489039348\/1446916929","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663551476791386112,"quoted_status_id_str":"663551476791386112","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j4hkyJBKEC","expanded_url":"https:\/\/twitter.com\/licia2lit\/status\/663551476791386112","display_url":"twitter.com\/licia2lit\/stat\u2026","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":206,"favorite_count":132,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yivkNpscOm","expanded_url":"https:\/\/twitter.com\/joshualorenzo14\/status\/663578004921020416","display_url":"twitter.com\/joshualorenzo1\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yivkNpscOm","expanded_url":"https:\/\/twitter.com\/joshualorenzo14\/status\/663578004921020416","display_url":"twitter.com\/joshualorenzo1\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"LICIA2LIT","name":"Ya Fave Stripper\u2728","id":269060506,"id_str":"269060506","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086659"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264391682,"id_str":"663728106264391682","text":"@Coo_X \u304b\u308f\u3044\u3044\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727640734334976,"in_reply_to_status_id_str":"663727640734334976","in_reply_to_user_id":176386105,"in_reply_to_user_id_str":"176386105","in_reply_to_screen_name":"Coo_X","user":{"id":2782477177,"id_str":"2782477177","name":"\u304b\u3058\u3085\u30de\u30eb","screen_name":"capicekaz","location":"\u304b\u3058\u3085\u3048\u3093","url":"http:\/\/www.pixiv.net\/member.php?id=12200086","description":"\u540c\u4eba\u57a2\u3002 10\u5e74\u632f\u308a\u306a\u306e\u3067\u8272\u3005\u30ea\u30cf\u30d3\u30ea\uff06\u30c1\u30e3\u30ec\u30f3\u30b8\u306f\u3058\u3081\u307e\u3057\u305f\u3002\u3086\u3063\u304f\u308a\u898b\u5b88\u3063\u3066\u304f\u3060\u3055\u3044\u3002 \u307e\u3063\u305f\u308a\u5984\u60f3\u30fb\u5275\u4f5c\u30fb\u30fb\u30fb \u6700\u8fd1\u306f\u8840\u754c\u6cbc\u30c9\u30dc\u30c9\u30dc\u6d78\u304b\u3063\u3066\u3044\u307e\u3059\u3002 \u203b\u6210\u4eba\u6e08 \u8840\u754c\/\u30bb\u309b\u30eb\u30c0\/\u30dd\u30d5\u309c\/\u30c7\u30b7\u309b\u30e2\u30f3\/","protected":false,"verified":false,"followers_count":34,"friends_count":53,"listed_count":2,"favourites_count":2028,"statuses_count":4635,"created_at":"Sun Aug 31 15:09:29 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657532738887548930\/N7G8WxUW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657532738887548930\/N7G8WxUW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2782477177\/1410453499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Coo_X","name":"\u304f\u3045","id":176386105,"id_str":"176386105","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086662"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106260185088,"id_str":"663728106260185088","text":"RT @allnightnipponw: \u3010\u672c\u65e5\u66f4\u65b0\u3011\u30a8\u30b0\u30b9\u30d7\u30ed\u30fc\u30b8\u30e7\u30f3\u306e\u30aa\u30fc\u30eb\u30ca\u30a4\u30c8\u30cb\u30c3\u30dd\u30f3\uff57\n\u30a2\u30c3\u30d7\u81f4\u3057\u307e\u3057\u305f\u3002https:\/\/t.co\/EIsl7jVHOX\n\u304a\u5f85\u305f\u305b\u3057\u3066\u3044\u307e\u3044\u5927\u5909\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3286484358,"id_str":"3286484358","name":"\u3042\u3086\u307f\u3093(\u2019-\u2019*)\u266a\u3042\u3093\u307f\u3093\u3067\u3082\u3044\u3044\u3088","screen_name":"ayumi_higashi","location":"\u9e7f\u5150\u5cf6\u5e02","url":null,"description":"#\u30a8\u30b0\u30b9\u30d7\u30ed\u30fc\u30b8\u30e7\u30f3 #\u307e\u3061\u3083\u3042\u304d #\u304a\u3070\u3089\u3063\u3061 #\u3072\u3068\u308a\u3067\u3067\u304d\u308b\u3082\u3093\u3001\u304a\u7b11\u3044\u3001\u6226\u56fd\u6642\u4ee3\u3001\u30b2\u30fc\u30e0\u306e\u597d\u304d\u306a \u3042\u3089\u30d5\u30a9\u30fc(\u0424\u03c9\u0424)\u3067\u3059\u3002\u307b\u307c\u30a8\u30b0\u57a2H27.9.27 \u751f\u30a8\u30b0\u62dd\u307f\u307e\u3057\u305f\uff01\n\u30d5\u30a9\u30ed\u30fc\u6b53\u8fce\u3067\u3059\u304c\u3001\u898b\u843d\u3068\u3059\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u306e\u3067\u3001\u4e00\u8a00\u3044\u305f\u3060\u304d\u305f\u3044\u3067\u3059orz\n\u3088\u308d\u3057\u304f\u3067\u3059(\uff40\u25c7\u00b4)\u309e","protected":false,"verified":false,"followers_count":127,"friends_count":123,"listed_count":6,"favourites_count":7102,"statuses_count":6187,"created_at":"Tue Jul 21 13:45:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657106543955939328\/CKQLiw50_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657106543955939328\/CKQLiw50_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3286484358\/1446763859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:46:01 +0000 2015","id":663683961625837569,"id_str":"663683961625837569","text":"\u3010\u672c\u65e5\u66f4\u65b0\u3011\u30a8\u30b0\u30b9\u30d7\u30ed\u30fc\u30b8\u30e7\u30f3\u306e\u30aa\u30fc\u30eb\u30ca\u30a4\u30c8\u30cb\u30c3\u30dd\u30f3\uff57\n\u30a2\u30c3\u30d7\u81f4\u3057\u307e\u3057\u305f\u3002https:\/\/t.co\/EIsl7jVHOX\n\u304a\u5f85\u305f\u305b\u3057\u3066\u3044\u307e\u3044\u5927\u5909\u7533\u3057\u8a33\u3054\u3056\u3044\u307e\u305b\u3093\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3007753220,"id_str":"3007753220","name":"\u30aa\u30fc\u30eb\u30ca\u30a4\u30c8\u30cb\u30c3\u30dd\u30f3w","screen_name":"allnightnipponw","location":null,"url":"http:\/\/www.allnightnippon.com\/annw\/","description":"\u6708\uff5e\u91d1\u66dc\u65e519\uff1a00\u306bYouTube\u30c1\u30e3\u30f3\u30cd\u30eb\u3067\u914d\u4fe1\u4e2d\uff01\uff01","protected":false,"verified":false,"followers_count":1325,"friends_count":13,"listed_count":14,"favourites_count":14,"statuses_count":276,"created_at":"Mon Feb 02 09:06:44 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562183865700085760\/JPZyIcDk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562183865700085760\/JPZyIcDk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3007753220\/1422870079","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":117,"favorite_count":270,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EIsl7jVHOX","expanded_url":"https:\/\/youtu.be\/dwUcBAg0HhM","display_url":"youtu.be\/dwUcBAg0HhM","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EIsl7jVHOX","expanded_url":"https:\/\/youtu.be\/dwUcBAg0HhM","display_url":"youtu.be\/dwUcBAg0HhM","indices":[58,81]}],"user_mentions":[{"screen_name":"allnightnipponw","name":"\u30aa\u30fc\u30eb\u30ca\u30a4\u30c8\u30cb\u30c3\u30dd\u30f3w","id":3007753220,"id_str":"3007753220","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086661"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106264391681,"id_str":"663728106264391681","text":"\u65b0\u3057\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u3010@Ftaisuke925\u3011\u3082\u4f5c\u3063\u305f\u306e\u3067\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\ue426\ud83d\ude4c\ud83d\ude4c https:\/\/t.co\/M9Fsrmz2xD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3765479113,"id_str":"3765479113","name":"\u306a\u306a\u2729Kis-My-Ft2\u4f9d\u5b58\u75c7.*\uff65\uff9f","screen_name":"nana921taisuke1","location":"\u30d9\u30b9\u30c8\u30b8\u30fc\u30cb\u30b9\u30c8V2\u304a\u3081\u3067\u3068\u3046\u2661","url":"http:\/\/twpf.jp\/nana921taisuke1","description":"\u524d\u57a2\u2192\u3010@Inana_Ftaisuke\u3011\u6e1a\u5948 \/ \u548c\u6b4c\u5c71 \/ \u4e2d2 \/ Kis-My-Ft2 \/ \u85e4\u30f6\u8c37\u592a\u8f14 \/ Thinker Bell \/ \u30e8\u30fc\u30b0\u30ea\u30fc\u30ca \/ \u4e16\u754c\u9b42 \/ \u5b89\u5b9a\u3055\u3093\u304c\u6b32\u3057\u3044 \/ Kis-My-Ft2\u4f9d\u5b58\u75c7\u304c\u91cd\u75c7\u5316\u3057\u3059\u304e\u3061\u3083\u3063\u305f\u5973\u306e\u5b50\u2661 \/ \u30b5\u30d6\u57a2\u2192\u3010@goalstart_nana\u3011","protected":false,"verified":false,"followers_count":126,"friends_count":87,"listed_count":0,"favourites_count":156,"statuses_count":888,"created_at":"Sat Oct 03 02:39:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651743552330842117\/K0nz_O1m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651743552330842117\/K0nz_O1m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3765479113\/1443841178","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ftaisuke925","name":"\u6e1a\u5948","id":2430441679,"id_str":"2430441679","indices":[9,21]}],"symbols":[],"media":[{"id":663728096659419137,"id_str":"663728096659419137","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL_TUsAEKtg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL_TUsAEKtg_.jpg","url":"https:\/\/t.co\/M9Fsrmz2xD","display_url":"pic.twitter.com\/M9Fsrmz2xD","expanded_url":"http:\/\/twitter.com\/nana921taisuke1\/status\/663728106264391681\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728096659419137,"id_str":"663728096659419137","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL_TUsAEKtg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL_TUsAEKtg_.jpg","url":"https:\/\/t.co\/M9Fsrmz2xD","display_url":"pic.twitter.com\/M9Fsrmz2xD","expanded_url":"http:\/\/twitter.com\/nana921taisuke1\/status\/663728106264391681\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080086662"} +{"delete":{"status":{"id":663728039147102208,"id_str":"663728039147102208","user_id":1099720417,"user_id_str":"1099720417"},"timestamp_ms":"1447080086950"}} +{"delete":{"status":{"id":493368484307275776,"id_str":"493368484307275776","user_id":2360625715,"user_id_str":"2360625715"},"timestamp_ms":"1447080086971"}} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106268721152,"id_str":"663728106268721152","text":"Compartiendo un ratito con mi hijo \ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01 https:\/\/t.co\/BsLHMHTL2X","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":833484499,"id_str":"833484499","name":"Anthony Marquina","screen_name":"Ajmarquina","location":"VLN, CAR, VZLA","url":null,"description":null,"protected":false,"verified":false,"followers_count":28,"friends_count":151,"listed_count":0,"favourites_count":3,"statuses_count":25,"created_at":"Wed Sep 19 14:44:00 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2626982052\/anthony_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2626982052\/anthony_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/833484499\/1370960487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728102061813761,"id_str":"663728102061813761","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMTbWsAEF8r4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMTbWsAEF8r4.jpg","url":"https:\/\/t.co\/BsLHMHTL2X","display_url":"pic.twitter.com\/BsLHMHTL2X","expanded_url":"http:\/\/twitter.com\/Ajmarquina\/status\/663728106268721152\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728102061813761,"id_str":"663728102061813761","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMTbWsAEF8r4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMTbWsAEF8r4.jpg","url":"https:\/\/t.co\/BsLHMHTL2X","display_url":"pic.twitter.com\/BsLHMHTL2X","expanded_url":"http:\/\/twitter.com\/Ajmarquina\/status\/663728106268721152\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080086663"} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106243538944,"id_str":"663728106243538944","text":"#ComeBackStronger (@ Elmas Fitness Studio) https:\/\/t.co\/fPKtjV1D34","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323766130,"id_str":"323766130","name":"Erol \u2729","screen_name":"Erolkyc","location":"Eski\u015fehir, T\u00fcrkiye","url":null,"description":"*University of Mehmet Akif Ersoy *Akademisyen Aday Aday\u0131","protected":false,"verified":false,"followers_count":1330,"friends_count":1023,"listed_count":4,"favourites_count":4884,"statuses_count":4165,"created_at":"Sat Jun 25 11:36:43 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662392894767132672\/Lrjrq37F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662392894767132672\/Lrjrq37F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323766130\/1440401444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[37.46023267,30.60573849]},"coordinates":{"type":"Point","coordinates":[30.60573849,37.46023267]},"place":{"id":"3773496341edbec1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3773496341edbec1.json","place_type":"admin","name":"Bucak","full_name":"Bucak, Burdur","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[30.220875,37.214788],[30.220875,37.537640],[30.909881,37.537640],[30.909881,37.214788]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ComeBackStronger","indices":[0,17]}],"urls":[{"url":"https:\/\/t.co\/fPKtjV1D34","expanded_url":"https:\/\/www.swarmapp.com\/c\/6GbMSTVvxBY","display_url":"swarmapp.com\/c\/6GbMSTVvxBY","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080086657"} +{"delete":{"status":{"id":663521150912348160,"id_str":"663521150912348160","user_id":2517407037,"user_id_str":"2517407037"},"timestamp_ms":"1447080087181"}} +{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106256138241,"id_str":"663728106256138241","text":"https:\/\/t.co\/tTkb4T1nub","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139047348,"id_str":"4139047348","name":"Jamshaid","screen_name":"Jamshai00336311","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":44,"listed_count":0,"favourites_count":14,"statuses_count":4,"created_at":"Sun Nov 08 03:54:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663204122276061184\/fI7nBXZZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663204122276061184\/fI7nBXZZ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728098526044162,"id_str":"663728098526044162","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMGQXIAIpJzs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMGQXIAIpJzs.jpg","url":"https:\/\/t.co\/tTkb4T1nub","display_url":"pic.twitter.com\/tTkb4T1nub","expanded_url":"http:\/\/twitter.com\/Jamshai00336311\/status\/663728106256138241\/photo\/1","type":"photo","sizes":{"medium":{"w":237,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":237,"h":320,"resize":"fit"},"large":{"w":237,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728098526044162,"id_str":"663728098526044162","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMGQXIAIpJzs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMGQXIAIpJzs.jpg","url":"https:\/\/t.co\/tTkb4T1nub","display_url":"pic.twitter.com\/tTkb4T1nub","expanded_url":"http:\/\/twitter.com\/Jamshai00336311\/status\/663728106256138241\/photo\/1","type":"photo","sizes":{"medium":{"w":237,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":237,"h":320,"resize":"fit"},"large":{"w":237,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080086660"} +{"delete":{"status":{"id":663633054942892032,"id_str":"663633054942892032","user_id":2839192159,"user_id_str":"2839192159"},"timestamp_ms":"1447080087473"}} +{"delete":{"status":{"id":663727720396955648,"id_str":"663727720396955648","user_id":623157011,"user_id_str":"623157011"},"timestamp_ms":"1447080087699"}} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458839040,"id_str":"663728110458839040","text":"RT @PeriJust: ___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2731659605,"id_str":"2731659605","name":"elzem ","screen_name":"gazze_m","location":null,"url":null,"description":"@elzem_i","protected":false,"verified":false,"followers_count":114,"friends_count":112,"listed_count":0,"favourites_count":2287,"statuses_count":2189,"created_at":"Sat Aug 02 14:55:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643168305059074048\/G74MS9xv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643168305059074048\/G74MS9xv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2731659605\/1442178210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:02:33 +0000 2015","id":663461629275856904,"id_str":"663461629275856904","text":"___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052760531,"id_str":"4052760531","name":"peri","screen_name":"PeriJust","location":null,"url":null,"description":"\u267bBa\u015f\u0131m\u0131n \u00fcst\u00fcnde yeri olanlar\u0131 hi\u00e7 indirmedim kendi d\u00fc\u015fenler hari\u00e7\u267b","protected":false,"verified":false,"followers_count":3503,"friends_count":1426,"listed_count":7,"favourites_count":1453,"statuses_count":24,"created_at":"Tue Oct 27 10:47:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052760531\/1446648696","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":424,"favorite_count":315,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PeriJust","name":"peri","id":4052760531,"id_str":"4052760531","indices":[3,12]}],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446211073,"id_str":"663728110446211073","text":"RT @Carrie_Bradsh4w: No talking til coffee...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":567300054,"id_str":"567300054","name":"Devan Miller","screen_name":"Millaahhlove21","location":null,"url":null,"description":"Rest Easy Chase Daniel.... Until We Meet Again","protected":false,"verified":false,"followers_count":477,"friends_count":375,"listed_count":0,"favourites_count":180,"statuses_count":6361,"created_at":"Mon Apr 30 13:18:11 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663561249502941184\/DEAa22Ks_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663561249502941184\/DEAa22Ks_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/567300054\/1433295635","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:29:00 +0000 2015","id":663649480567312384,"id_str":"663649480567312384","text":"No talking til coffee...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582893544,"id_str":"582893544","name":"Carrie Bradshaw","screen_name":"Carrie_Bradsh4w","location":"New York","url":null,"description":"Author, Writer & lover! I like my money right where I can see it... Hanging in my closet. Parody Email: msbsatc@gmail.com *we do NOT own any content posted*","protected":false,"verified":false,"followers_count":654295,"friends_count":10225,"listed_count":835,"favourites_count":1293,"statuses_count":9016,"created_at":"Thu May 17 14:13:42 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574736771\/r0j8zj3ps1n20izadwtx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574736771\/r0j8zj3ps1n20izadwtx.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565100724800221184\/sLLvoNc3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565100724800221184\/sLLvoNc3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582893544\/1398244192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":212,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Carrie_Bradsh4w","name":"Carrie Bradshaw","id":582893544,"id_str":"582893544","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446227457,"id_str":"663728110446227457","text":"RT @PeriJust: ___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3425877574,"id_str":"3425877574","name":"elzem ","screen_name":"elzemrt7","location":null,"url":null,"description":"@elzem_i","protected":false,"verified":false,"followers_count":77,"friends_count":76,"listed_count":0,"favourites_count":1672,"statuses_count":1711,"created_at":"Sun Aug 16 12:55:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637272652177108992\/5mkCIb7h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637272652177108992\/5mkCIb7h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3425877574\/1440772559","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:02:33 +0000 2015","id":663461629275856904,"id_str":"663461629275856904","text":"___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052760531,"id_str":"4052760531","name":"peri","screen_name":"PeriJust","location":null,"url":null,"description":"\u267bBa\u015f\u0131m\u0131n \u00fcst\u00fcnde yeri olanlar\u0131 hi\u00e7 indirmedim kendi d\u00fc\u015fenler hari\u00e7\u267b","protected":false,"verified":false,"followers_count":3503,"friends_count":1426,"listed_count":7,"favourites_count":1453,"statuses_count":24,"created_at":"Tue Oct 27 10:47:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052760531\/1446648696","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":423,"favorite_count":315,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PeriJust","name":"peri","id":4052760531,"id_str":"4052760531","indices":[3,12]}],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446190593,"id_str":"663728110446190593","text":"RT @Kinki_muniain: -Mira, ah\u00ed viene Juan, \u00a1qu\u00e9 mal me cae! si nos habla, t\u00fa hazte el sueco. \n-\u00a1Hola, chicos! \u00bfQu\u00e9 pasa? \n-Hej, John, vad g\u00f6\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291231773,"id_str":"3291231773","name":"pikuco ","screen_name":"pikuco1975","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":10,"listed_count":0,"favourites_count":332,"statuses_count":1025,"created_at":"Wed May 20 12:24:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601033894452973568\/i8IZBRNB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601033894452973568\/i8IZBRNB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291231773\/1432136379","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:10:48 +0000 2015","id":663282509078228992,"id_str":"663282509078228992","text":"-Mira, ah\u00ed viene Juan, \u00a1qu\u00e9 mal me cae! si nos habla, t\u00fa hazte el sueco. \n-\u00a1Hola, chicos! \u00bfQu\u00e9 pasa? \n-Hej, John, vad g\u00f6r du i livet?","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":251214309,"id_str":"251214309","name":"Kinki Muniain","screen_name":"Kinki_muniain","location":null,"url":null,"description":"Ehh Premohh nos echamos un furbito? Parodia sobre Iker muniain presente y futuro del Athletic de Bilbao y la selecci\u00f3n Espa\u00f1ola (PARODIA)","protected":false,"verified":false,"followers_count":102832,"friends_count":7877,"listed_count":163,"favourites_count":648,"statuses_count":7770,"created_at":"Sat Feb 12 17:39:39 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577913415\/ll2ckmwp1dbz8qd6du1g.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577913415\/ll2ckmwp1dbz8qd6du1g.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642081830292824064\/WcoWA7sb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642081830292824064\/WcoWA7sb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251214309\/1441905708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kinki_muniain","name":"Kinki Muniain","id":251214309,"id_str":"251214309","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458814464,"id_str":"663728110458814464","text":"I just took off the other end isn't plugged in to anything.","source":"\u003ca href=\"http:\/\/idontevencare.com\" rel=\"nofollow\"\u003eCleany Bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2807614563,"id_str":"2807614563","name":"CleanyBot","screen_name":"cleany_ebooks","location":"On the cloud somewhere.","url":"http:\/\/i.imgur.com\/bkEoW0M.jpg","description":"Hello. I cut up @cleanycloth's tweets and repost them once every 10 minutes (usually). Fully automatic! Don't take anything I say seriously.","protected":false,"verified":false,"followers_count":35,"friends_count":5,"listed_count":3,"favourites_count":76,"statuses_count":27822,"created_at":"Sun Oct 05 12:46:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654030733422534656\/Fp6mzszp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654030733422534656\/Fp6mzszp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2807614563\/1424475856","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458814465,"id_str":"663728110458814465","text":"RT @roccomaz: @FedericoRuysch2 @FedericaRagno Ricostruzione L\u2019Aquila, scavalcati un\u2019altra volta gli idonei del Concorsone: ... https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":575138798,"id_str":"575138798","name":"Francesca Greco","screen_name":"francesca58361","location":null,"url":null,"description":"Consulente Pubblica Amministrazione","protected":false,"verified":false,"followers_count":129,"friends_count":173,"listed_count":3,"favourites_count":13,"statuses_count":1040,"created_at":"Wed May 09 07:30:37 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2215078407\/taglio_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2215078407\/taglio_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/575138798\/1393276438","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 20:35:04 +0000 2015","id":663092325447503873,"id_str":"663092325447503873","text":"@FedericoRuysch2 @FedericaRagno Ricostruzione L\u2019Aquila, scavalcati un\u2019altra volta gli idonei del Concorsone: ... https:\/\/t.co\/ii8ols5Xw1","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2543538403,"in_reply_to_user_id_str":"2543538403","in_reply_to_screen_name":"FedericoRuysch2","user":{"id":4136435007,"id_str":"4136435007","name":"Rocco","screen_name":"roccomaz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":35,"listed_count":0,"favourites_count":0,"statuses_count":24,"created_at":"Sat Nov 07 19:51:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663081708930138113\/SSvJS7kt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663081708930138113\/SSvJS7kt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ii8ols5Xw1","expanded_url":"http:\/\/bit.ly\/1Hwj64v","display_url":"bit.ly\/1Hwj64v","indices":[115,138]}],"user_mentions":[{"screen_name":"FedericoRuysch2","name":"Federico Ruysch","id":2543538403,"id_str":"2543538403","indices":[0,16]},{"screen_name":"FedericaRagno","name":"Federica Ragno","id":414184285,"id_str":"414184285","indices":[18,32]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ii8ols5Xw1","expanded_url":"http:\/\/bit.ly\/1Hwj64v","display_url":"bit.ly\/1Hwj64v","indices":[139,140]}],"user_mentions":[{"screen_name":"roccomaz","name":"Rocco","id":4136435007,"id_str":"4136435007","indices":[3,12]},{"screen_name":"FedericoRuysch2","name":"Federico Ruysch","id":2543538403,"id_str":"2543538403","indices":[14,30]},{"screen_name":"FedericaRagno","name":"Federica Ragno","id":414184285,"id_str":"414184285","indices":[32,46]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450397184,"id_str":"663728110450397184","text":"RT @Mo5ttlf: \u0627\u0644\u062d\u0641\u0627\u0638 \u0639\u0644\u0649 \u0627\u0644\u0643\u0631\u0627\u0645\u0629 \u0641\u064a \u063a\u0627\u0644\u0628 \u0627\u0644\u0623\u062d\u064a\u0627\u0646 \u064a\u062d\u062a\u0627\u062c \u0625\u0646\u0651\u0643 \u062a\u0636\u062d\u064a \u0628\u0634\u064a\u0621 \u0645\u0639\u064a\u0646 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147185182,"id_str":"147185182","name":"D","screen_name":"Dreeelal","location":"\u0645\u0631 \u0627\u0644\u0645\u0641\u0636\u0644\u0647 \u0648\u0639\u0637\u0646\u064a \u062a\u0645 KSA","url":null,"description":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0627\u0644\u062d\u0645\u062f\u0644\u0644\u0647 \u0648\u0627\u0644\u0644\u0647 \u0627\u0643\u0628\u0631","protected":false,"verified":false,"followers_count":39662,"friends_count":43295,"listed_count":9,"favourites_count":307,"statuses_count":45182,"created_at":"Sun May 23 12:45:45 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/520105567516254208\/MR_n9ZT-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/520105567516254208\/MR_n9ZT-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147185182\/1412848015","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 09 20:22:07 +0000 2015","id":641708181010251776,"id_str":"641708181010251776","text":"\u0627\u0644\u062d\u0641\u0627\u0638 \u0639\u0644\u0649 \u0627\u0644\u0643\u0631\u0627\u0645\u0629 \u0641\u064a \u063a\u0627\u0644\u0628 \u0627\u0644\u0623\u062d\u064a\u0627\u0646 \u064a\u062d\u062a\u0627\u062c \u0625\u0646\u0651\u0643 \u062a\u0636\u062d\u064a \u0628\u0634\u064a\u0621 \u0645\u0639\u064a\u0646 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781039908,"id_str":"2781039908","name":"\u0645\u064c\u062e\u0651\u062a\u0644\u0650\u0641\u0652.","screen_name":"Mo5ttlf","location":null,"url":"http:\/\/twitter.com\/o0o0997\/favorites","description":"\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\ufd3f..\u0627\u0644\u0644\u0651\u064e\u0647\u0640\u064f\u0645 \u0625\u06af\u0641\u0650\u0646\u064a \u0634\u0640\u0631\u0651\u064e \u062e\u0644\u0642\u0650\u0640\u06af..\ufd3e","protected":false,"verified":false,"followers_count":302045,"friends_count":233598,"listed_count":169,"favourites_count":100,"statuses_count":3391,"created_at":"Sat Aug 30 19:52:12 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657577075956686848\/bjWAvU3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657577075956686848\/bjWAvU3w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781039908\/1445376448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":211,"favorite_count":107,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mo5ttlf","name":"\u0645\u064c\u062e\u0651\u062a\u0644\u0650\u0641\u0652.","id":2781039908,"id_str":"2781039908","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080087660"} +{"delete":{"status":{"id":663728089495506944,"id_str":"663728089495506944","user_id":2649673387,"user_id_str":"2649673387"},"timestamp_ms":"1447080087657"}} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450450432,"id_str":"663728110450450432","text":"@visha_misterio Jajajajajaja Shhh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719548298858500,"in_reply_to_status_id_str":"663719548298858500","in_reply_to_user_id":129311260,"in_reply_to_user_id_str":"129311260","in_reply_to_screen_name":"visha_misterio","user":{"id":872531407,"id_str":"872531407","name":"Mari\u2606\u270c N\u271e\u2665","screen_name":"Marii_Gauna11Ok","location":"Rafaela-Santa Fe","url":"https:\/\/www.facebook.com\/marii.gauna","description":"NICOLAS\u271d\nNo me persigo, porque mucho de lo que est\u00e1 prohibido me hace feliz\u266a ||CALL\u039eJ\u039eROS|| \u2665EL BASQUET ES PARA TODA LA VIDA\u2665 WhatsApp: 3492-308143","protected":false,"verified":false,"followers_count":2572,"friends_count":2385,"listed_count":3,"favourites_count":13162,"statuses_count":64040,"created_at":"Wed Oct 10 21:25:47 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491095842346897408\/0lRlfNk8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491095842346897408\/0lRlfNk8.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659901599876325376\/3X11_-b4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659901599876325376\/3X11_-b4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/872531407\/1438147421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"visha_misterio","name":"Faku Nicolas!","id":129311260,"id_str":"129311260","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450425856,"id_str":"663728110450425856","text":"RT @PeriJust: ___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3425798073,"id_str":"3425798073","name":"elzem ","screen_name":"elzemrt9","location":null,"url":null,"description":"@elzem_i","protected":false,"verified":false,"followers_count":79,"friends_count":63,"listed_count":0,"favourites_count":1607,"statuses_count":1644,"created_at":"Sun Aug 16 13:10:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632902627773292544\/YS5ZoQkB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632902627773292544\/YS5ZoQkB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3425798073\/1439730798","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:02:33 +0000 2015","id":663461629275856904,"id_str":"663461629275856904","text":"___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052760531,"id_str":"4052760531","name":"peri","screen_name":"PeriJust","location":null,"url":null,"description":"\u267bBa\u015f\u0131m\u0131n \u00fcst\u00fcnde yeri olanlar\u0131 hi\u00e7 indirmedim kendi d\u00fc\u015fenler hari\u00e7\u267b","protected":false,"verified":false,"followers_count":3503,"friends_count":1426,"listed_count":7,"favourites_count":1453,"statuses_count":24,"created_at":"Tue Oct 27 10:47:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052760531\/1446648696","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":424,"favorite_count":315,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PeriJust","name":"peri","id":4052760531,"id_str":"4052760531","indices":[3,12]}],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471421952,"id_str":"663728110471421952","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/VTjFG2KEHH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4131464591,"id_str":"4131464591","name":"votamos por vosss","screen_name":"votamosxxxxcand","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":3409,"created_at":"Sat Nov 07 03:48:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/VTjFG2KEHH","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110442037248,"id_str":"663728110442037248","text":"mi pip\u00ed siempre te estar\u00e1 esperando","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2986297772,"id_str":"2986297772","name":"Diego","screen_name":"100porros","location":null,"url":null,"description":"me rob\u00e9 un iPhone","protected":false,"verified":false,"followers_count":1644,"friends_count":143,"listed_count":695,"favourites_count":70795,"statuses_count":66845,"created_at":"Sat Jan 17 01:25:05 +0000 2015","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611748130216935424\/I7rgQpfc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611748130216935424\/I7rgQpfc.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662807127900217344\/4WKTkQtV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662807127900217344\/4WKTkQtV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2986297772\/1446875639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458773505,"id_str":"663728110458773505","text":"RT @meanpIastic: IDC WHAT THEY SAY, THIS IS NOT A MISSILE... https:\/\/t.co\/aJ2N1VrOZM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2822325572,"id_str":"2822325572","name":"Miranda Derkach","screen_name":"mirandypandy3","location":"probably working or at school ","url":null,"description":"HIIIIII","protected":false,"verified":false,"followers_count":173,"friends_count":228,"listed_count":1,"favourites_count":3061,"statuses_count":6944,"created_at":"Sat Sep 20 16:49:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655114620256948224\/_0Kvb1Zj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655114620256948224\/_0Kvb1Zj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2822325572\/1436806914","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:08:02 +0000 2015","id":663221415936569344,"id_str":"663221415936569344","text":"IDC WHAT THEY SAY, THIS IS NOT A MISSILE... https:\/\/t.co\/aJ2N1VrOZM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1056492074,"id_str":"1056492074","name":"mean plastic","screen_name":"meanpIastic","location":null,"url":null,"description":"i'm the sweetest bitch you'll ever meet (parody account, i don't claim ownership to all content) contact: meanpiastictwitter@outlook.com","protected":false,"verified":false,"followers_count":275282,"friends_count":92434,"listed_count":228,"favourites_count":22105,"statuses_count":2084,"created_at":"Thu Jan 03 00:39:01 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487781808117784576\/0xc_ofCz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487781808117784576\/0xc_ofCz.png","profile_background_tile":true,"profile_link_color":"E79FF2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660765560016277504\/qdSZ8BjP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660765560016277504\/qdSZ8BjP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1056492074\/1386119296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1959,"favorite_count":2985,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663209190886801408,"id_str":"663209190886801408","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","url":"https:\/\/t.co\/aJ2N1VrOZM","display_url":"pic.twitter.com\/aJ2N1VrOZM","expanded_url":"http:\/\/twitter.com\/britneyspeans\/status\/663209970813546497\/video\/1","type":"photo","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":663209970813546497,"source_status_id_str":"663209970813546497","source_user_id":180038588,"source_user_id_str":"180038588"}]},"extended_entities":{"media":[{"id":663209190886801408,"id_str":"663209190886801408","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","url":"https:\/\/t.co\/aJ2N1VrOZM","display_url":"pic.twitter.com\/aJ2N1VrOZM","expanded_url":"http:\/\/twitter.com\/britneyspeans\/status\/663209970813546497\/video\/1","type":"video","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":663209970813546497,"source_status_id_str":"663209970813546497","source_user_id":180038588,"source_user_id_str":"180038588","video_info":{"aspect_ratio":[203,360],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/pl\/waXYBC9Y2lDqo-lR.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/180x320\/B4bvMIJu4tLQQw78.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/360x640\/DQo1Ql1OPZN9dyy0.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/360x640\/DQo1Ql1OPZN9dyy0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/pl\/waXYBC9Y2lDqo-lR.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meanpIastic","name":"mean plastic","id":1056492074,"id_str":"1056492074","indices":[3,15]}],"symbols":[],"media":[{"id":663209190886801408,"id_str":"663209190886801408","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","url":"https:\/\/t.co\/aJ2N1VrOZM","display_url":"pic.twitter.com\/aJ2N1VrOZM","expanded_url":"http:\/\/twitter.com\/britneyspeans\/status\/663209970813546497\/video\/1","type":"photo","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":663209970813546497,"source_status_id_str":"663209970813546497","source_user_id":180038588,"source_user_id_str":"180038588"}]},"extended_entities":{"media":[{"id":663209190886801408,"id_str":"663209190886801408","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663209190886801408\/pu\/img\/HPmb8aAF8hgWRjwB.jpg","url":"https:\/\/t.co\/aJ2N1VrOZM","display_url":"pic.twitter.com\/aJ2N1VrOZM","expanded_url":"http:\/\/twitter.com\/britneyspeans\/status\/663209970813546497\/video\/1","type":"video","sizes":{"large":{"w":406,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":406,"h":720,"resize":"fit"}},"source_status_id":663209970813546497,"source_status_id_str":"663209970813546497","source_user_id":180038588,"source_user_id_str":"180038588","video_info":{"aspect_ratio":[203,360],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/pl\/waXYBC9Y2lDqo-lR.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/180x320\/B4bvMIJu4tLQQw78.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/360x640\/DQo1Ql1OPZN9dyy0.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/vid\/360x640\/DQo1Ql1OPZN9dyy0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663209190886801408\/pu\/pl\/waXYBC9Y2lDqo-lR.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471393281,"id_str":"663728110471393281","text":"RT @PeriJust: ___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3026933037,"id_str":"3026933037","name":"meysa","screen_name":"huzun_ce","location":null,"url":null,"description":"Ben \u015fiir istiyorum, i\u00e7inde gitmek olsun, u\u00e7mak olsun\u2026\n@elzem_i @elzem_2","protected":false,"verified":false,"followers_count":136,"friends_count":162,"listed_count":0,"favourites_count":2848,"statuses_count":2629,"created_at":"Mon Feb 09 18:27:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632869263691395072\/tFB7bsGU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632869263691395072\/tFB7bsGU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3026933037\/1432572927","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:02:33 +0000 2015","id":663461629275856904,"id_str":"663461629275856904","text":"___Boynunun kokusuna sar\u0131l\u0131p\n_____Uyumak istedigim gecelerin\n_______Haddi hesab\u0131 yok\ud83c\udf39 https:\/\/t.co\/aYRE0H0mAa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052760531,"id_str":"4052760531","name":"peri","screen_name":"PeriJust","location":null,"url":null,"description":"\u267bBa\u015f\u0131m\u0131n \u00fcst\u00fcnde yeri olanlar\u0131 hi\u00e7 indirmedim kendi d\u00fc\u015fenler hari\u00e7\u267b","protected":false,"verified":false,"followers_count":3503,"friends_count":1426,"listed_count":7,"favourites_count":1453,"statuses_count":24,"created_at":"Tue Oct 27 10:47:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658962145737113600\/qHdW-7GL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4052760531\/1446648696","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":425,"favorite_count":315,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PeriJust","name":"peri","id":4052760531,"id_str":"4052760531","indices":[3,12]}],"symbols":[],"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"extended_entities":{"media":[{"id":663461618869772288,"id_str":"663461618869772288","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW08LWoAAY1x0.jpg","url":"https:\/\/t.co\/aYRE0H0mAa","display_url":"pic.twitter.com\/aYRE0H0mAa","expanded_url":"http:\/\/twitter.com\/PeriJust\/status\/663461629275856904\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":280,"resize":"fit"},"large":{"w":1024,"h":845,"resize":"fit"},"medium":{"w":600,"h":495,"resize":"fit"}},"source_status_id":663461629275856904,"source_status_id_str":"663461629275856904","source_user_id":4052760531,"source_user_id_str":"4052760531"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446227456,"id_str":"663728110446227456","text":"Courts Puzzles https:\/\/t.co\/MkiwgkIa82","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99130162,"id_str":"99130162","name":"Original diva","screen_name":"Originaldiva01","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11,"friends_count":35,"listed_count":0,"favourites_count":117,"statuses_count":53,"created_at":"Thu Dec 24 16:18:02 +0000 2009","utc_offset":-14400,"time_zone":"Georgetown","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590572155\/9637MILIAN-MAXIM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590572155\/9637MILIAN-MAXIM_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MkiwgkIa82","expanded_url":"http:\/\/apps.courtscaribbean.com\/puzzles\/#.VkCwlfRLYkw.twitter","display_url":"apps.courtscaribbean.com\/puzzles\/#.VkCw\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458785792,"id_str":"663728110458785792","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/hPGXbKszRf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1316918958,"id_str":"1316918958","name":"\ufe0f\ufe0f","screen_name":"pridebylambre","location":null,"url":null,"description":"..nunca nadie va a poder entender todo el bien que vos me haces","protected":false,"verified":false,"followers_count":774,"friends_count":99,"listed_count":0,"favourites_count":349,"statuses_count":12777,"created_at":"Sat Mar 30 18:13:48 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454724197206343681\/tz_LWhEw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454724197206343681\/tz_LWhEw.png","profile_background_tile":true,"profile_link_color":"EEEEEE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659123725309202432\/mMhhW7BC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659123725309202432\/mMhhW7BC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1316918958\/1445982166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/hPGXbKszRf","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437801985,"id_str":"663728110437801985","text":"RT @SamBallestero: Este finde promete mucho\ud83d\ude0c\ud83d\ude0f\ud83d\udc4f\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":745352731,"id_str":"745352731","name":"Pequitas ","screen_name":"elisarodri98","location":"Toledo","url":null,"description":"Patinadora del Club Art\u00edstico Toledo. El fracaso es el mayor triunfo. #CDPATOL \u2661 B607 \u2665 #75T","protected":false,"verified":false,"followers_count":1066,"friends_count":1119,"listed_count":2,"favourites_count":2271,"statuses_count":13608,"created_at":"Wed Aug 08 14:58:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/884976535\/6f296501a9a3e8091c3b4fb5f74b324e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/884976535\/6f296501a9a3e8091c3b4fb5f74b324e.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643002595339014144\/1r3fCuwk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643002595339014144\/1r3fCuwk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/745352731\/1419098009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727625031049216,"id_str":"663727625031049216","text":"Este finde promete mucho\ud83d\ude0c\ud83d\ude0f\ud83d\udc4f\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":876371706,"id_str":"876371706","name":"Sam","screen_name":"SamBallestero","location":"Vicente Calder\u00f3n; Toledo","url":null,"description":"\u00abIncluso las mejores cosas en la vida no son cosas..\u00bb Patinaje art\u00edstico #cdepatol \u00a1Enamorada del Atleti, no lo puedes entender!","protected":false,"verified":false,"followers_count":301,"friends_count":267,"listed_count":1,"favourites_count":3021,"statuses_count":14379,"created_at":"Fri Oct 12 20:36:09 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/878960359\/eb006192944b85b65cc86c216dc2a2e1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/878960359\/eb006192944b85b65cc86c216dc2a2e1.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645259677597609984\/sSz21SFV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645259677597609984\/sSz21SFV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/876371706\/1436217867","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SamBallestero","name":"Sam","id":876371706,"id_str":"876371706","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446190592,"id_str":"663728110446190592","text":"\"I ain't with that butt play\" - Dan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130341513,"id_str":"130341513","name":"TrapDan","screen_name":"BetterDANyall","location":"Newark, NJ","url":"http:\/\/BabyfathaMusic.com","description":"TRAPDAN & FRIENDS Out now!","protected":false,"verified":false,"followers_count":415,"friends_count":300,"listed_count":1,"favourites_count":120,"statuses_count":9061,"created_at":"Wed Apr 07 01:16:07 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E2F5F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/363457905\/WTT_stu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/363457905\/WTT_stu.jpg","profile_background_tile":true,"profile_link_color":"8A3333","profile_sidebar_border_color":"242424","profile_sidebar_fill_color":"353538","profile_text_color":"B38E56","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657262562791280640\/cJJpjYzr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657262562791280640\/cJJpjYzr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130341513\/1444724867","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471389184,"id_str":"663728110471389184","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/HktNPIRlaJ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3183608901,"id_str":"3183608901","name":"ruggelaria","screen_name":"ruggeroslaugh","location":"in ruggero's arms","url":null,"description":"\u201ce se lo vuoi davvero, devi buttarti. come ti dice il cuore. credici. sempre.\u201d lodovica,ruggero&candelaria","protected":false,"verified":false,"followers_count":8,"friends_count":28,"listed_count":0,"favourites_count":87,"statuses_count":4084,"created_at":"Sun Apr 19 16:14:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590154500666630146\/PE22kCGf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590154500666630146\/PE22kCGf.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589825206870532096\/wgHu9XlD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589825206870532096\/wgHu9XlD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3183608901\/1429460268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/HktNPIRlaJ","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110462889985,"id_str":"663728110462889985","text":"my phone charger just broke\ud83d\ude43\ud83d\udd2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277101463,"id_str":"3277101463","name":"alexa","screen_name":"rebelo_alexa","location":"lost","url":"http:\/\/youtu.be\/AYRd9Zlr5Jg","description":"lil a\u2604","protected":false,"verified":false,"followers_count":40,"friends_count":47,"listed_count":0,"favourites_count":47,"statuses_count":78,"created_at":"Sun Jul 12 03:55:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656119834686558208\/Gj-s3BQI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656119834686558208\/Gj-s3BQI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277101463\/1446522167","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087663"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458830849,"id_str":"663728110458830849","text":"RT @charlesmcgibbon: @MamaGlasgow @1GKh @Daily_Record that's another reason why we should block this paper","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122488734,"id_str":"122488734","name":"jimuck mac","screen_name":"jimuckmac","location":"Scottish Highlands","url":null,"description":null,"protected":false,"verified":false,"followers_count":763,"friends_count":818,"listed_count":18,"favourites_count":330,"statuses_count":22189,"created_at":"Fri Mar 12 22:08:45 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596793253267050496\/NEJAcEzv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596793253267050496\/NEJAcEzv_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:27 +0000 2015","id":663721314688061441,"id_str":"663721314688061441","text":"@MamaGlasgow @1GKh @Daily_Record that's another reason why we should block this paper","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663652258500972544,"in_reply_to_status_id_str":"663652258500972544","in_reply_to_user_id":26763798,"in_reply_to_user_id_str":"26763798","in_reply_to_screen_name":"MamaGlasgow","user":{"id":740625421,"id_str":"740625421","name":"Chasbot2000","screen_name":"charlesmcgibbon","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":255,"friends_count":689,"listed_count":3,"favourites_count":1277,"statuses_count":2111,"created_at":"Mon Aug 06 13:28:29 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2835529385\/eca5523319a879ed343e8c23f04dfd83_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2835529385\/eca5523319a879ed343e8c23f04dfd83_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MamaGlasgow","name":"TheQueenOfGlasgow","id":26763798,"id_str":"26763798","indices":[0,12]},{"screen_name":"1GKh","name":"Genghis D'Midgies","id":19819733,"id_str":"19819733","indices":[13,18]},{"screen_name":"Daily_Record","name":"The Daily Record","id":16803602,"id_str":"16803602","indices":[19,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"charlesmcgibbon","name":"Chasbot2000","id":740625421,"id_str":"740625421","indices":[3,19]},{"screen_name":"MamaGlasgow","name":"TheQueenOfGlasgow","id":26763798,"id_str":"26763798","indices":[21,33]},{"screen_name":"1GKh","name":"Genghis D'Midgies","id":19819733,"id_str":"19819733","indices":[34,39]},{"screen_name":"Daily_Record","name":"The Daily Record","id":16803602,"id_str":"16803602","indices":[40,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110462889984,"id_str":"663728110462889984","text":"RT @Trendinx: 10 Celebs Once Told They Weren't Hot Enough For Hollywood https:\/\/t.co\/podxMS09ZH https:\/\/t.co\/B6GLUOgnGi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2907009624,"id_str":"2907009624","name":"praveen kumar","screen_name":"praj54963","location":"world","url":null,"description":"Follow me & I follow you back","protected":false,"verified":false,"followers_count":28534,"friends_count":29151,"listed_count":27,"favourites_count":3,"statuses_count":700,"created_at":"Sat Nov 22 11:07:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560656143605719041\/EGIQ9QwQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560656143605719041\/EGIQ9QwQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907009624\/1441909109","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 06:56:02 +0000 2015","id":662161430536294400,"id_str":"662161430536294400","text":"10 Celebs Once Told They Weren't Hot Enough For Hollywood https:\/\/t.co\/podxMS09ZH https:\/\/t.co\/B6GLUOgnGi","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277321014,"id_str":"3277321014","name":"Trending Tweets","screen_name":"Trendinx","location":null,"url":null,"description":"Tweets about Trending Things on Twitter.","protected":false,"verified":false,"followers_count":824,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":36,"created_at":"Sun Jul 12 10:38:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626383745851854849\/Wn_CxskG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626383745851854849\/Wn_CxskG_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":114,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/podxMS09ZH","expanded_url":"http:\/\/bit.ly\/1MucJzF","display_url":"bit.ly\/1MucJzF","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":662161420293939200,"id_str":"662161420293939200","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","url":"https:\/\/t.co\/B6GLUOgnGi","display_url":"pic.twitter.com\/B6GLUOgnGi","expanded_url":"http:\/\/twitter.com\/Trendinx\/status\/662161430536294400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":864,"h":486,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662161420293939200,"id_str":"662161420293939200","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","url":"https:\/\/t.co\/B6GLUOgnGi","display_url":"pic.twitter.com\/B6GLUOgnGi","expanded_url":"http:\/\/twitter.com\/Trendinx\/status\/662161430536294400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":864,"h":486,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/podxMS09ZH","expanded_url":"http:\/\/bit.ly\/1MucJzF","display_url":"bit.ly\/1MucJzF","indices":[72,95]}],"user_mentions":[{"screen_name":"Trendinx","name":"Trending Tweets","id":3277321014,"id_str":"3277321014","indices":[3,12]}],"symbols":[],"media":[{"id":662161420293939200,"id_str":"662161420293939200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","url":"https:\/\/t.co\/B6GLUOgnGi","display_url":"pic.twitter.com\/B6GLUOgnGi","expanded_url":"http:\/\/twitter.com\/Trendinx\/status\/662161430536294400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":864,"h":486,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":662161430536294400,"source_status_id_str":"662161430536294400","source_user_id":3277321014,"source_user_id_str":"3277321014"}]},"extended_entities":{"media":[{"id":662161420293939200,"id_str":"662161420293939200","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB4TbCWoAAfGvW.jpg","url":"https:\/\/t.co\/B6GLUOgnGi","display_url":"pic.twitter.com\/B6GLUOgnGi","expanded_url":"http:\/\/twitter.com\/Trendinx\/status\/662161430536294400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":864,"h":486,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":662161430536294400,"source_status_id_str":"662161430536294400","source_user_id":3277321014,"source_user_id_str":"3277321014"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087663"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454591488,"id_str":"663728110454591488","text":"RT @7ll_Follow_Back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189347750,"id_str":"2189347750","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"M_A_Alzahrani","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0639\u0627\u0634\u0642 \u0648\u0645\u062d\u0628 \u0644\u0646\u0627\u062f\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0644\u0645\u0644\u0643\u064a \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631\u060c \u0625\u0633\u0623\u0644\u0646\u064a \u0639\u0646 \u0627\u0644\u0639\u0634\u0642 \u0623\u062d\u062f\u062b\u0643 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644.\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u0637\u0631\u062d \u0648\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647","protected":false,"verified":false,"followers_count":3821,"friends_count":1084,"listed_count":4,"favourites_count":1190,"statuses_count":69419,"created_at":"Wed Nov 20 20:15:11 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189347750\/1444106923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 21:31:18 +0000 2015","id":662744088702226432,"id_str":"662744088702226432","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 1230","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549145898,"id_str":"549145898","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","screen_name":"7ll_Follow_Back","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":513876,"friends_count":272527,"listed_count":976,"favourites_count":7,"statuses_count":162789,"created_at":"Mon Apr 09 11:19:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":101,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7ll_Follow_Back","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","id":549145898,"id_str":"549145898","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110462828544,"id_str":"663728110462828544","text":"RT @linvernoyt12: 2015\ub144 11\uc6d4 10\uc77c\n#\u4f50\u85e4\u5065 https:\/\/t.co\/bo534tm6Qb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237596371,"id_str":"3237596371","name":"\uc138\ubd09\uc774\ub4e4","screen_name":"a808742471","location":null,"url":null,"description":"R=VD 11\uc6d4 \ud55c\uad6d \ub18d\uc218\uc0b0\ub300\ud559\uad50 \ub9d0\uc0b0\uc5c5\ud559\uacfc \ud569\uaca9\ud588\ub2e4","protected":false,"verified":false,"followers_count":8,"friends_count":76,"listed_count":0,"favourites_count":569,"statuses_count":4135,"created_at":"Sat Jun 06 05:07:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662601610455986176\/GEuZeO-J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662601610455986176\/GEuZeO-J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237596371\/1446911277","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:01:27 +0000 2015","id":663718042900168706,"id_str":"663718042900168706","text":"2015\ub144 11\uc6d4 10\uc77c\n#\u4f50\u85e4\u5065 https:\/\/t.co\/bo534tm6Qb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2596659338,"id_str":"2596659338","name":"\ud6c4\uc720\ucfe0\ubaa8","screen_name":"linvernoyt12","location":"\u5065","url":"http:\/\/blog.naver.com\/linvernoyt12","description":"\ud589\ubcf5\ud574\uc9c0\uc138\uc694. (FUYUKUMO)\nhttp:\/\/www.youtube.com\/user\/linvernoyt12","protected":false,"verified":false,"followers_count":91,"friends_count":62,"listed_count":0,"favourites_count":54,"statuses_count":1050,"created_at":"Mon Jun 30 17:20:15 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645246428722298880\/8Ev8aVyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645246428722298880\/8Ev8aVyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2596659338\/1428324647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4f50\u85e4\u5065","indices":[14,18]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718039519563776,"id_str":"663718039519563776","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718039519563776,"id_str":"663718039519563776","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}}},{"id":663718041432100864,"id_str":"663718041432100864","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACsqUEAAHlcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACsqUEAAHlcm.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4f50\u85e4\u5065","indices":[32,36]}],"urls":[],"user_mentions":[{"screen_name":"linvernoyt12","name":"\ud6c4\uc720\ucfe0\ubaa8","id":2596659338,"id_str":"2596659338","indices":[3,16]}],"symbols":[],"media":[{"id":663718039519563776,"id_str":"663718039519563776","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}},"source_status_id":663718042900168706,"source_status_id_str":"663718042900168706","source_user_id":2596659338,"source_user_id_str":"2596659338"}]},"extended_entities":{"media":[{"id":663718039519563776,"id_str":"663718039519563776","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACliVEAADrLb.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}},"source_status_id":663718042900168706,"source_status_id_str":"663718042900168706","source_user_id":2596659338,"source_user_id_str":"2596659338"},{"id":663718041432100864,"id_str":"663718041432100864","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYACsqUEAAHlcm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYACsqUEAAHlcm.jpg","url":"https:\/\/t.co\/bo534tm6Qb","display_url":"pic.twitter.com\/bo534tm6Qb","expanded_url":"http:\/\/twitter.com\/linvernoyt12\/status\/663718042900168706\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":907,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":722,"h":1092,"resize":"fit"},"small":{"w":340,"h":514,"resize":"fit"}},"source_status_id":663718042900168706,"source_status_id_str":"663718042900168706","source_user_id":2596659338,"source_user_id_str":"2596659338"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080087663"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454489089,"id_str":"663728110454489089","text":"RT @rachelyappppp: i hope 2016 will be better","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3005051317,"id_str":"3005051317","name":"jiji","screen_name":"jijiaxmi","location":"lucas' baby girl ","url":null,"description":"Harry Styles thought me to be nice to all and love all and appreciate everything, all the love x .","protected":false,"verified":false,"followers_count":140,"friends_count":159,"listed_count":0,"favourites_count":4634,"statuses_count":8233,"created_at":"Sat Jan 31 15:36:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662771149135187968\/vfik0zyk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662771149135187968\/vfik0zyk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3005051317\/1446753062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:38 +0000 2015","id":663721111121596416,"id_str":"663721111121596416","text":"i hope 2016 will be better","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549180809,"id_str":"549180809","name":"rachel","screen_name":"rachelyappppp","location":"Snapchat me: wadtowrite","url":null,"description":"i know a thing or two of a thing or two, about a thing or two.","protected":false,"verified":false,"followers_count":104111,"friends_count":23924,"listed_count":22,"favourites_count":11190,"statuses_count":9672,"created_at":"Mon Apr 09 12:17:38 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537150787491606528\/2zXp-jF0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537150787491606528\/2zXp-jF0.jpeg","profile_background_tile":true,"profile_link_color":"3B0EF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647419581812731904\/nK6HKvbO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647419581812731904\/nK6HKvbO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/549180809\/1438219302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":320,"favorite_count":104,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rachelyappppp","name":"rachel","id":549180809,"id_str":"549180809","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110467067905,"id_str":"663728110467067905","text":"RT @ankh_junko: MYBESTNAME\/MYNAME\n\u2605\u2606\u521d\u56de\u9650\u5b9a\u76e4\u2606\u2605\n\u30a2\u30ca\u30b6\u30fc\u30b8\u30e3\u30b1\u30c3\u30c8\n\u4ea4\u63db\u5e0c\u671b\u3057\u307e\u3059\uff01\n\n\u2605\u8b72\u2192\u30b3\u30cc\u2605\n\n\u2606\u6c42\u2192\u30bb\u30e8\u30f3\u2606\n\n\u6761\u4ef6\u5408\u3046\u65b9\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3057\u305f\u3089\u30ea\u30d7\u304a\u9858\u3044\u3057\u307e\u3059(^^)\n\n#MYBESTNAME #MYNAME #\u4ea4\u63db\u5e0c\u671b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004990682,"id_str":"3004990682","name":"\uc544\uc57c *","screen_name":"ayaoyo89","location":null,"url":null,"description":"MYNAME*\ucc44\uc9c4\u2665\n\ud788\ub85c\uc2dc\ub9c8 \ub9c8\uc774\uac78\u2b50\n89line\uff3c(^o^)\uff0f\n\u305d\u306e\u4ed6\u3001K-pop\u96d1\u98df\u7656\u6709\u3002\u2190","protected":false,"verified":false,"followers_count":20,"friends_count":100,"listed_count":0,"favourites_count":15,"statuses_count":561,"created_at":"Sat Jan 31 15:05:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661961561838235648\/VMzYWeOD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661961561838235648\/VMzYWeOD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004990682\/1435506141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 01:29:08 +0000 2015","id":661716778389651457,"id_str":"661716778389651457","text":"MYBESTNAME\/MYNAME\n\u2605\u2606\u521d\u56de\u9650\u5b9a\u76e4\u2606\u2605\n\u30a2\u30ca\u30b6\u30fc\u30b8\u30e3\u30b1\u30c3\u30c8\n\u4ea4\u63db\u5e0c\u671b\u3057\u307e\u3059\uff01\n\n\u2605\u8b72\u2192\u30b3\u30cc\u2605\n\n\u2606\u6c42\u2192\u30bb\u30e8\u30f3\u2606\n\n\u6761\u4ef6\u5408\u3046\u65b9\u3044\u3089\u3063\u3057\u3083\u3044\u307e\u3057\u305f\u3089\u30ea\u30d7\u304a\u9858\u3044\u3057\u307e\u3059(^^)\n\n#MYBESTNAME #MYNAME #\u4ea4\u63db\u5e0c\u671b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":361783173,"id_str":"361783173","name":"JUNKO","screen_name":"ankh_junko","location":null,"url":null,"description":"\u65b0\u6f5f\u307e\u3044\u3054\u308b\u266a MYNAME(\u7279\u306bSeyong)\u304c\u597d\u304d\u3067\u3059\u266a \u4e00\u5e74\u4e2d\u8ffd\u3044\u304b\u3051\u3066\u307e\u3059(^-^)v\u2605\u2606\ub9c8\uc774\ub124\uc784\u2606\u2605\uc138\uc6a9\u2605\u2606","protected":false,"verified":false,"followers_count":47,"friends_count":89,"listed_count":1,"favourites_count":1829,"statuses_count":831,"created_at":"Thu Aug 25 09:56:39 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645576714555256833\/TGCEtMOy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645576714555256833\/TGCEtMOy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361783173\/1429452491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[{"text":"MYBESTNAME","indices":[94,105]},{"text":"MYNAME","indices":[107,114]},{"text":"\u4ea4\u63db\u5e0c\u671b","indices":[115,120]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MYBESTNAME","indices":[110,121]},{"text":"MYNAME","indices":[123,130]},{"text":"\u4ea4\u63db\u5e0c\u671b","indices":[131,136]}],"urls":[],"user_mentions":[{"screen_name":"ankh_junko","name":"JUNKO","id":361783173,"id_str":"361783173","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087664"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110475436033,"id_str":"663728110475436033","text":"\uff7d\uff6f\u3001\u7761\u9b54\u304c\u2026\uff01\n\u3063\u3066\u4e8b\u3067\u304a\u3084\u3059\u307f\u306a\u3055\u3044\uff01\n\u30fe(\uff65\u03c9\uff65`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303889454,"id_str":"3303889454","name":"\u9280\u72d0","screen_name":"cee3214d62e94bc","location":null,"url":null,"description":"\u30a2\u30cb\u30e1\u306a\u3089\u306a\u3093\u3067\u3082\u597d\u304d\u3067\u3059\uff01\n\u304a\u6c17\u8efd\u306b\u3001\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\uff7c\uff8f\uff7d\uff01","protected":false,"verified":false,"followers_count":58,"friends_count":238,"listed_count":1,"favourites_count":7,"statuses_count":44,"created_at":"Sun Aug 02 03:40:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627692228131975168\/CwcgIEYp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627692228131975168\/CwcgIEYp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303889454\/1438488462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087666"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454468609,"id_str":"663728110454468609","text":"RT @wanokani: #\u5de6\u5411\u304d\u306e\u9854\u8f09\u305b\u305f\u3089\u30d6\u30a1\u30fc\u3063\u3066\u62e1\u6563\u3055\u308c\u3066\u30d5\u30a9\u30ed\u30fc\u304c\u3044\u3063\u3071\u3044\u6765\u308b\u3063\u3066\u805e\u3044\u305f\n\u5b89\u5b9a\u306e\u4f7f\u3044\u56de\u3057\u3067\u3073\u3093\u3058\u3087\u308b\u306e https:\/\/t.co\/PaebPUjSgS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3498051618,"id_str":"3498051618","name":"\u5275\u2727\u3086\u3063\u304f\u308a\u5de1\u56de\u4e2d","screen_name":"sou1204_","location":"\u304a\u5e03\u56e3","url":null,"description":"\u5275\u3068\u66f8\u3044\u3066\u305d\u3046\u3068\u8aad\u307f\u307e\u3059\u3002\u5b9f.\u6cc1.\u8005\u3092\u4e2d\u5fc3\u306b\u5275\u4f5c\u3082\u63cf\u304d\u307e\u3059\u3002 \u63cf\u304d\u305f\u3044\u6642\u306b\u5c11\u3057\u305a\u3064\u3002\u203b3\u6b21\u21922\u6b21\u8868\u73fe\u3042\u308a\/\u304a\u9854\u634f\u9020\u3042\u308a\u3002\u5275\u4f5c\u57a2\u4e00\u5fdc\u3042\u308a\u307e\u3059\u3001\u3081\u3063\u305f\u306b\u6d6e\u4e0a\u3057\u307e\u305b\u3093\u3010 @Sou_SousakuXX \u3011","protected":false,"verified":false,"followers_count":92,"friends_count":102,"listed_count":13,"favourites_count":2357,"statuses_count":4836,"created_at":"Tue Sep 08 23:33:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661966654859952128\/Zw97VNxZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661966654859952128\/Zw97VNxZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3498051618\/1443395816","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727643800395776,"id_str":"663727643800395776","text":"#\u5de6\u5411\u304d\u306e\u9854\u8f09\u305b\u305f\u3089\u30d6\u30a1\u30fc\u3063\u3066\u62e1\u6563\u3055\u308c\u3066\u30d5\u30a9\u30ed\u30fc\u304c\u3044\u3063\u3071\u3044\u6765\u308b\u3063\u3066\u805e\u3044\u305f\n\u5b89\u5b9a\u306e\u4f7f\u3044\u56de\u3057\u3067\u3073\u3093\u3058\u3087\u308b\u306e https:\/\/t.co\/PaebPUjSgS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3162818424,"id_str":"3162818424","name":"\u308f\u306e\u3042@\u5e74\u8cc0\u72b6\u4f01\u753b(\u56fa\u5b9a\u30c4\u30a4","screen_name":"wanokani","location":"\u30d1\u30bd\u30b3\u30f3\u524d","url":"http:\/\/touch.pixiv.net\/member.php?id=2554955","description":"\u5e73\u548c\u7d44\u3068TAKOS\u3070\u304b\u308a\u2605Rt\u3055\u3093Tw\u3055\u3093FjHr\u304c\u597d\u304d\u3067\u3059\u2605FRB\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u57fa\u672c\u7684\u306b\u8fd4\u3057\u307e\u305b\u3093\u3002\u7e4b\u304c\u308a\u305f\u3044\u65b9\u306f\u58f0\u639b\u3051\u3066\u304f\u3060\u3055\u3044\u2605\u7121\u65ad\u8ee2\u8f09\u306f\u306a\u3044\u3068\u601d\u3044\u307e\u3059\u304c\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044\u2605\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2661\u2192\u8a73\u3057\u304f http:\/\/twpf.jp\/wanokani","protected":false,"verified":false,"followers_count":110,"friends_count":118,"listed_count":30,"favourites_count":1213,"statuses_count":7173,"created_at":"Sat Apr 18 17:47:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655525283810816000\/SslHDP9r.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655525283810816000\/SslHDP9r.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660533946485108736\/H3Z1afuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660533946485108736\/H3Z1afuF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3162818424\/1446318584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5de6\u5411\u304d\u306e\u9854\u8f09\u305b\u305f\u3089\u30d6\u30a1\u30fc\u3063\u3066\u62e1\u6563\u3055\u308c\u3066\u30d5\u30a9\u30ed\u30fc\u304c\u3044\u3063\u3071\u3044\u6765\u308b\u3063\u3066\u805e\u3044\u305f","indices":[0,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727579661074432,"id_str":"663727579661074432","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":727,"resize":"fit"},"large":{"w":845,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727579661074432,"id_str":"663727579661074432","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":727,"resize":"fit"},"large":{"w":845,"h":1024,"resize":"fit"}}},{"id":663727603610595328,"id_str":"663727603610595328","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvSjUsAAn59J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvSjUsAAn59J.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}},{"id":663727614360621060,"id_str":"663727614360621060","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv6mVEAQ40V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv6mVEAQ40V7.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":838,"h":1024,"resize":"fit"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}}},{"id":663727631842414592,"id_str":"663727631842414592","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw7uUEAAB1fx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw7uUEAAB1fx.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5de6\u5411\u304d\u306e\u9854\u8f09\u305b\u305f\u3089\u30d6\u30a1\u30fc\u3063\u3066\u62e1\u6563\u3055\u308c\u3066\u30d5\u30a9\u30ed\u30fc\u304c\u3044\u3063\u3071\u3044\u6765\u308b\u3063\u3066\u805e\u3044\u305f","indices":[14,50]}],"urls":[],"user_mentions":[{"screen_name":"wanokani","name":"\u308f\u306e\u3042@\u5e74\u8cc0\u72b6\u4f01\u753b(\u56fa\u5b9a\u30c4\u30a4","id":3162818424,"id_str":"3162818424","indices":[3,12]}],"symbols":[],"media":[{"id":663727579661074432,"id_str":"663727579661074432","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":727,"resize":"fit"},"large":{"w":845,"h":1024,"resize":"fit"}},"source_status_id":663727643800395776,"source_status_id_str":"663727643800395776","source_user_id":3162818424,"source_user_id_str":"3162818424"}]},"extended_entities":{"media":[{"id":663727579661074432,"id_str":"663727579661074432","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIt5VUAAA6bF4.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":727,"resize":"fit"},"large":{"w":845,"h":1024,"resize":"fit"}},"source_status_id":663727643800395776,"source_status_id_str":"663727643800395776","source_user_id":3162818424,"source_user_id_str":"3162818424"},{"id":663727603610595328,"id_str":"663727603610595328","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIvSjUsAAn59J.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIvSjUsAAn59J.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663727643800395776,"source_status_id_str":"663727643800395776","source_user_id":3162818424,"source_user_id_str":"3162818424"},{"id":663727614360621060,"id_str":"663727614360621060","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIv6mVEAQ40V7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIv6mVEAQ40V7.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":838,"h":1024,"resize":"fit"},"medium":{"w":600,"h":733,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}},"source_status_id":663727643800395776,"source_status_id_str":"663727643800395776","source_user_id":3162818424,"source_user_id_str":"3162818424"},{"id":663727631842414592,"id_str":"663727631842414592","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIw7uUEAAB1fx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIw7uUEAAB1fx.jpg","url":"https:\/\/t.co\/PaebPUjSgS","display_url":"pic.twitter.com\/PaebPUjSgS","expanded_url":"http:\/\/twitter.com\/wanokani\/status\/663727643800395776\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727643800395776,"source_status_id_str":"663727643800395776","source_user_id":3162818424,"source_user_id_str":"3162818424"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471245824,"id_str":"663728110471245824","text":"@evesc_ \u0e01\u0e39\u0e01\u0e47\u0e40\u0e2a\u0e35\u0e22\u0e14\u0e32\u0e22 \u0e40\u0e2b\u0e49\u0e2d\u0e2d\u0e2d \u0e43\u0e04\u0e23\u0e01\u0e47\u0e44\u0e14\u0e49\u0e40\u0e2d\u0e32\u0e01\u0e39\u0e2d\u0e2d\u0e01\u0e08\u0e32\u0e01\u0e42\u0e25\u0e01\u0e1a\u0e49\u0e32\u0e19\u0e35\u0e48\u0e17\u0e35","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727370185015296,"in_reply_to_status_id_str":"663727370185015296","in_reply_to_user_id":2587776127,"in_reply_to_user_id_str":"2587776127","in_reply_to_screen_name":"evesc_","user":{"id":2467599348,"id_str":"2467599348","name":"99H","screen_name":"icyqbs","location":null,"url":null,"description":"\u266a\u2500\u2500\u2500\uff2f\uff08\u2267\u2207\u2266\uff09\uff2f\u2500\u2500\u2500\u2500\u266a","protected":false,"verified":false,"followers_count":202,"friends_count":143,"listed_count":0,"favourites_count":545,"statuses_count":30694,"created_at":"Mon Apr 28 11:23:39 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663152298416189440\/7VjALRpf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663152298416189440\/7VjALRpf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467599348\/1445784465","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"evesc_","name":"eve","id":2587776127,"id_str":"2587776127","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471254016,"id_str":"663728110471254016","text":"10 Sex Positions Women Love https:\/\/t.co\/02VP8ulLyp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3149303251,"id_str":"3149303251","name":"EDITH THOMAS","screen_name":"62EDITH69THOMAS","location":"Fairfield CA","url":"http:\/\/flip.it\/Pa9DE","description":"Proud supporter of messy hair and sweatpants and I like Green ;)","protected":false,"verified":false,"followers_count":17853,"friends_count":8774,"listed_count":9,"favourites_count":2205,"statuses_count":12354,"created_at":"Sat Apr 11 05:59:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634853439520923648\/zkU8CvSR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634853439520923648\/zkU8CvSR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3149303251\/1440195855","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/02VP8ulLyp","expanded_url":"http:\/\/pictwiter.co\/sg0qr-love-10-positions-1816","display_url":"pictwiter.co\/sg0qr-love-10-\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471254017,"id_str":"663728110471254017","text":"10RT JK\u30d5\u30a9\u30ed\u30ef\u30fc\u3068\u30b5\u30b7\u3067\u30ab\u30e9\u30aa\u30b1","source":"\u003ca href=\"https:\/\/twitter.com\/kuwarta2nd\" rel=\"nofollow\"\u003e\u092e\u0947\u0930\u093e \u0915\u092e\u0930\u093e\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726164460965888,"in_reply_to_status_id_str":"663726164460965888","in_reply_to_user_id":3143106218,"in_reply_to_user_id_str":"3143106218","in_reply_to_screen_name":"kuwarta2nd","user":{"id":3143106218,"id_str":"3143106218","name":"\u304f\u308f\u30fc\u305f","screen_name":"kuwarta2nd","location":"\u672c\u57a2\u3068\u3044\u3046\u304b\u754c\u9688\u306e\u57a2","url":null,"description":"jubeat\/Rb\/\u30d3\u30fc\u30b9\u30c8\/pop'n\/\u81ea\u8ee2\u8eca\/\u7559\u9000\u529b\u5b66\/\u9ad8\u5c02\/\u4e0a\u5357\/\u77f3\u795e\u4e95\/icon by @myjmr8\/","protected":false,"verified":false,"followers_count":774,"friends_count":778,"listed_count":34,"favourites_count":33092,"statuses_count":67097,"created_at":"Tue Apr 07 08:39:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662775461726961664\/vvjGvGoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662775461726961664\/vvjGvGoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3143106218\/1446248603","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110462894080,"id_str":"663728110462894080","text":"\u4eca\u65e5\u306e\u30af\u30b7\u30ca\u30c0\u306f\u8ae6\u3081\u307e\u3057\u305f\n\u6b21\u306e\u30af\u30b7\u30ca\u30c0\u3082\u3044\u304d\u307e\u3059\n\u305d\u308c\u307e\u3067\u306b\u30aa\u30fc\u30d6\u8caf\u3081\u3088\n\u30af\u30b7\u30ca\u30c0\u3092\u3044\u305f\u3060\u304f\u307e\u3067\u5b6b\u609f\u7a7a\u306e\u795e\u5316\u306f\u304a\u9810\u3051\u3060\uff01\uff01\n\u3082\u3046\u5c11\u3057\u3088\u308d\u3057\u304f\u6589\u5929\u5927\u8056\u5b6b\u609f\u7a7a\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074705995,"id_str":"3074705995","name":"\u307f\u3065\u304d","screen_name":"sKxydlCl8o44m2p","location":null,"url":null,"description":"\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3\u3001 \u30ad\u30f3\u30b0\u30c0\u30e0\u30cf\u30fc\u30c4\u3001 \u30e9\u30d6\u30e9\u30a4\u30d6\u304c\u597d\u304d\u306a\u4eba\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u305f\u3089\u3046\u308c\u3057\u3044\u3067\u3059 \u3053\u308c\u3067\u3082JK1","protected":false,"verified":false,"followers_count":79,"friends_count":83,"listed_count":5,"favourites_count":842,"statuses_count":11238,"created_at":"Thu Mar 12 05:45:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585038360189673472\/TPDJdP80_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585038360189673472\/TPDJdP80_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074705995\/1426680641","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087663"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458830848,"id_str":"663728110458830848","text":"RT @KaybeeK3: Every Rap King Need a theme song Every trap queen Need a King Kong Long live Super Mega live long @akaworldwide","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288911874,"id_str":"288911874","name":"Indumiso Mthethwa ","screen_name":"Nonduh32","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":284,"friends_count":879,"listed_count":1,"favourites_count":498,"statuses_count":557,"created_at":"Wed Apr 27 17:33:07 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/499889058236358656\/ewRsCz6r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/499889058236358656\/ewRsCz6r_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288911874\/1415634364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:44 +0000 2015","id":663727424270675969,"id_str":"663727424270675969","text":"Every Rap King Need a theme song Every trap queen Need a King Kong Long live Super Mega live long @akaworldwide","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4110129803,"id_str":"4110129803","name":"KAY BEE","screen_name":"KaybeeK3","location":"Bloemfontein,South Africa ","url":null,"description":"I just tell it how it isI ain't feeling the VAPORS coz I ain't a hater Every Rap king need a theme song Every trap queen need a King Kong long live Super Mega","protected":false,"verified":false,"followers_count":155,"friends_count":53,"listed_count":0,"favourites_count":13,"statuses_count":92,"created_at":"Wed Nov 04 06:37:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707248628244480\/IgBThqvC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707248628244480\/IgBThqvC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4110129803\/1447075118","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akaworldwide","name":"AKA","id":33612908,"id_str":"33612908","indices":[98,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KaybeeK3","name":"KAY BEE","id":4110129803,"id_str":"4110129803","indices":[3,12]},{"screen_name":"akaworldwide","name":"AKA","id":33612908,"id_str":"33612908","indices":[112,125]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450311168,"id_str":"663728110450311168","text":"RT @nannkaiiyo: \u30af\u30ea\u307c\u3063\u3061\u306e\u3072\u3068RT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3274338506,"id_str":"3274338506","name":"\u5927\u5730","screen_name":"superstar121205","location":"\u3082\u304611\u6708\u304b\u3041\uff5e...........","url":null,"description":"\u3060\u3044\u3069\u3046\u3061\u3085\u3046 \u3055\u3093\u306d\u3093 \u89aa\u306b\u5185\u7dd2\u3067Twitter\u3084\u3063\u3066\u308b\u3093\u3067\u305d\u3053\u3088\u308d\u3002\r\n \u81ea\u79f0YDK\u3002\u7206\u7b11w","protected":false,"verified":false,"followers_count":191,"friends_count":209,"listed_count":0,"favourites_count":1696,"statuses_count":3791,"created_at":"Fri Jul 10 12:02:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663276027376889856\/6oELPUJD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663276027376889856\/6oELPUJD.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640815670821720064\/ByzuuA8j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640815670821720064\/ByzuuA8j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3274338506\/1446946563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:24 +0000 2015","id":663727844057419778,"id_str":"663727844057419778","text":"\u30af\u30ea\u307c\u3063\u3061\u306e\u3072\u3068RT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2270281964,"id_str":"2270281964","name":"\u3072\u304b\u308b","screen_name":"nannkaiiyo","location":"\u30ad\u30c9\u30a2\u30a4\u30e9\u30af","url":null,"description":"\u4f50\u6ce2\u5e7c\u2192\u7389\u7956\u5c0f\u2192\u53f3\u4e2d(l5) #\u53d7\u9a13\u751f \u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\u266a\u80cc\u756a\u53f731\u756a\u306e\u5b50\u3067\u3059\u3002\u5143\u7403\u8e74\u90e8 \u30d5\u30a9\u30ed\u30fc\u3057\u305f\u77ac\u9593\u50d5\u306f\u541b\u306e\u53cb\u30c0\u30c1\u3002\u9858\u3044\u4e8b\u306f\u80cc\u304c\u4f38\u3073\u308b\u3053\u3068\u3068\u9ad8\u6821\u53d7\u9a13\u5408\u683c\u3059\u308b\u3053\u3068","protected":false,"verified":false,"followers_count":168,"friends_count":133,"listed_count":0,"favourites_count":419,"statuses_count":373,"created_at":"Tue Dec 31 12:02:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724399380463616\/4RniePQc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724399380463616\/4RniePQc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2270281964\/1446304266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nannkaiiyo","name":"\u3072\u304b\u308b","id":2270281964,"id_str":"2270281964","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471413760,"id_str":"663728110471413760","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/LDrUmJZTMG","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3394307807,"id_str":"3394307807","name":"ml\u2764","screen_name":"mechixlight","location":"chile\u270c","url":null,"description":"\u00abmi coraz\u00f3n arde por ustedes, Las amo mucho\u00bb \nDios y Mercedes","protected":false,"verified":false,"followers_count":157,"friends_count":104,"listed_count":0,"favourites_count":409,"statuses_count":6582,"created_at":"Wed Jul 29 18:52:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659827621363060737\/ySw2o0T__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659827621363060737\/ySw2o0T__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3394307807\/1446150580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/LDrUmJZTMG","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458634240,"id_str":"663728110458634240","text":"@06nachigami21 \u30d0\u30ca\u30ca\u30ab\u30c3\u30bf\u30fc\u306a\u3093\u304b\u3058\u3083\u5207\u308c\u306a\u2026\u3042\u3063","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726932463251457,"in_reply_to_status_id_str":"663726932463251457","in_reply_to_user_id":901936848,"in_reply_to_user_id_str":"901936848","in_reply_to_screen_name":"06nachigami21","user":{"id":3083906857,"id_str":"3083906857","name":"\u304a\u30fc\u3084","screen_name":"busaikuturai","location":"\u8ab0\u304b\u306e\u96a3\u3068\u304b\u8a00\u3044\u305f\u3044","url":null,"description":"\u300c\u6e05\u304f\u6b63\u3057\u304f\u3044\u3084\u3089\u3057\u304f\u300d","protected":false,"verified":false,"followers_count":267,"friends_count":263,"listed_count":0,"favourites_count":491,"statuses_count":1322,"created_at":"Sun Mar 15 07:15:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653268125756948480\/-0Pql7hM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653268125756948480\/-0Pql7hM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3083906857\/1446212296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"06nachigami21","name":"\u306a\u3061\u305311\/15[Alexandros]","id":901936848,"id_str":"901936848","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454468608,"id_str":"663728110454468608","text":"RT @ttee0326: \uad50\ub958\ub3c4\uc548\ud558\uace0\ub108\ubb34\uc870\uc6a9\ud788\uc0b0\ub4ef\ub9ac\ud2b8\uc717\ubbf8\uc158\uc774\uc774\ub807\uac8c\ub098\ud798\ub4e4\uc904\uc774\uc57c\uc774\uc138\ub300\uc758\ud2b8\ucc10\uc740\ub098\ub2e4\ub2e4\ub4e4\ube44\ucf1c\ub098\ub77c\uace0\ub098\ub780\ub9d0\uc774\uc57c #EXO \uc774\uc81c\uc9c4\uc2ec\uc9c0\ucce4\uc5b4\uc5b4\ub098\ub294\ubc29\uc804\uc774\ub2e4 #CALLMEBABY \uc798\ub4e4\uc5b4 #2015MAMA \uc774\ub807\uac8c\ud588\ub294\ub370\ub3c4\uc0c1\ubabb\ud0c0\uba74\uc9c4\uc9dc\ud6c4\ubb50\uc5b4\ub5bb\uac8c\ud558\uc9c4\ubabb\ud558\uace0\uc9dc\uc99d\ub0bc\uaebc\uc57c \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2928129914,"id_str":"2928129914","name":"\uc0bc\ub4dd\uc544 \ud22c\ud45c\ud558\uc790","screen_name":"0408__exo","location":"2015MAMA = EXO","url":null,"description":"\ubcf4\uc774\ub294 \ud2b8\uc717 \ub9c9 \ub9ac\ud2b8\uc717\ud568\ub2c8\ub2e4,,, ^\u3145^","protected":false,"verified":false,"followers_count":6,"friends_count":453,"listed_count":0,"favourites_count":243,"statuses_count":2029,"created_at":"Sat Dec 13 05:12:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721478601359360\/PPaFTBCQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721478601359360\/PPaFTBCQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2928129914\/1444568324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:11 +0000 2015","id":663727789556629504,"id_str":"663727789556629504","text":"\uad50\ub958\ub3c4\uc548\ud558\uace0\ub108\ubb34\uc870\uc6a9\ud788\uc0b0\ub4ef\ub9ac\ud2b8\uc717\ubbf8\uc158\uc774\uc774\ub807\uac8c\ub098\ud798\ub4e4\uc904\uc774\uc57c\uc774\uc138\ub300\uc758\ud2b8\ucc10\uc740\ub098\ub2e4\ub2e4\ub4e4\ube44\ucf1c\ub098\ub77c\uace0\ub098\ub780\ub9d0\uc774\uc57c #EXO \uc774\uc81c\uc9c4\uc2ec\uc9c0\ucce4\uc5b4\uc5b4\ub098\ub294\ubc29\uc804\uc774\ub2e4 #CALLMEBABY \uc798\ub4e4\uc5b4 #2015MAMA \uc774\ub807\uac8c\ud588\ub294\ub370\ub3c4\uc0c1\ubabb\ud0c0\uba74\uc9c4\uc9dc\ud6c4\ubb50\uc5b4\ub5bb\uac8c\ud558\uc9c4\ubabb\ud558\uace0\uc9dc\uc99d\ub0bc\uaebc\uc57c @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3238695252,"id_str":"3238695252","name":"\ub728\uc774 (* \u00b4 \u30ef ` \u25cf)","screen_name":"ttee0326","location":null,"url":null,"description":"\uc18c\uc2ec\uc5f4\uc815\uc5d0\ub9ac\u2744\n\ud589\ubcf5\uc744 \ub098\ub204\uae30 \uc704\ud55c \uadf8\ub9bc \uc5f0\uc2b5\uc911\n\uc788\uaca0\ub0d0\ub9cc\uc740 \ub3c4\uc6a9\uc740 \uc815\ub9d0 \uc548\ub3fc\uc694.","protected":false,"verified":false,"followers_count":9,"friends_count":278,"listed_count":0,"favourites_count":37,"statuses_count":310,"created_at":"Sun Jun 07 10:32:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631258291306303488\/Jf7oqM06.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631258291306303488\/Jf7oqM06.jpg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661907379848482817\/7EPePyCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661907379848482817\/7EPePyCw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238695252\/1446645990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[50,54]},{"text":"CALLMEBABY","indices":[70,81]},{"text":"2015MAMA","indices":[86,95]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[125,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[64,68]},{"text":"CALLMEBABY","indices":[84,95]},{"text":"2015MAMA","indices":[100,109]}],"urls":[],"user_mentions":[{"screen_name":"ttee0326","name":"\ub728\uc774 (* \u00b4 \u30ef ` \u25cf)","id":3238695252,"id_str":"3238695252","indices":[3,12]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437691393,"id_str":"663728110437691393","text":"RT @thiphae: \u0e2a\u0e07\u0e2a\u0e31\u0e22\u0e2d\u0e30 \u0e41\u0e23\u0e47\u0e1e\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e08\u0e39\u0e1a\u0e40\u0e01\u0e48\u0e07\u0e08\u0e23\u0e34\u0e07\u0e21\u0e31\u0e49\u0e22 \u0e41\u0e25\u0e49\u0e27\u0e16\u0e49\u0e32\u0e41\u0e23\u0e47\u0e1e\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e08\u0e39\u0e1a\u0e01\u0e31\u0e19\u0e25\u0e48\u0e30 ' ' https:\/\/t.co\/8Hf665thDd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":270775741,"id_str":"270775741","name":"\u0e01\u0e32\u0e19\u0e40\u0e2d\u0e07\u0e19\u0e30","screen_name":"taeckarn","location":"YG | 2PM | EXO ","url":null,"description":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800WINNER | iKON \u2800\u2800\u2800\u2800\u2800\u2800 \u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2800 *\u0e25\u0e39\u0e48\u0e2b\u0e32\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e27\u0e48\u0e32\u0e04\u0e34\u0e15\u0e15\u0e35\u0e49\u0e2d\u0e35\u0e01\u0e19\u0e30\u0e41\u0e01*","protected":false,"verified":false,"followers_count":193,"friends_count":498,"listed_count":3,"favourites_count":1222,"statuses_count":131089,"created_at":"Wed Mar 23 07:08:42 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EEF2F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549893412\/DSC02094.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549893412\/DSC02094.png","profile_background_tile":true,"profile_link_color":"000033","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FA0032","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659401370575867904\/v5nLChg5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659401370575867904\/v5nLChg5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270775741\/1443197616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:11 +0000 2015","id":663725777679069184,"id_str":"663725777679069184","text":"\u0e2a\u0e07\u0e2a\u0e31\u0e22\u0e2d\u0e30 \u0e41\u0e23\u0e47\u0e1e\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e08\u0e39\u0e1a\u0e40\u0e01\u0e48\u0e07\u0e08\u0e23\u0e34\u0e07\u0e21\u0e31\u0e49\u0e22 \u0e41\u0e25\u0e49\u0e27\u0e16\u0e49\u0e32\u0e41\u0e23\u0e47\u0e1e\u0e40\u0e1b\u0e2d\u0e23\u0e4c\u0e08\u0e39\u0e1a\u0e01\u0e31\u0e19\u0e25\u0e48\u0e30 ' ' https:\/\/t.co\/8Hf665thDd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128912758,"id_str":"128912758","name":"40438","screen_name":"thiphae","location":null,"url":null,"description":"\uc544\uc774\ucf58 \/ B\ud300 \/ \u3131\u314e\u3142\uff0f(^ \u3145 ^=)\uff3c","protected":false,"verified":false,"followers_count":4402,"friends_count":242,"listed_count":22,"favourites_count":3019,"statuses_count":316043,"created_at":"Fri Apr 02 15:48:50 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656404407593005056\/47r2Ax2__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656404407593005056\/47r2Ax2__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128912758\/1441641194","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725775598686208,"id_str":"663725775598686208","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","url":"https:\/\/t.co\/8Hf665thDd","display_url":"pic.twitter.com\/8Hf665thDd","expanded_url":"http:\/\/twitter.com\/thiphae\/status\/663725777679069184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725775598686208,"id_str":"663725775598686208","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","url":"https:\/\/t.co\/8Hf665thDd","display_url":"pic.twitter.com\/8Hf665thDd","expanded_url":"http:\/\/twitter.com\/thiphae\/status\/663725777679069184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thiphae","name":"40438","id":128912758,"id_str":"128912758","indices":[3,11]}],"symbols":[],"media":[{"id":663725775598686208,"id_str":"663725775598686208","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","url":"https:\/\/t.co\/8Hf665thDd","display_url":"pic.twitter.com\/8Hf665thDd","expanded_url":"http:\/\/twitter.com\/thiphae\/status\/663725777679069184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663725777679069184,"source_status_id_str":"663725777679069184","source_user_id":128912758,"source_user_id_str":"128912758"}]},"extended_entities":{"media":[{"id":663725775598686208,"id_str":"663725775598686208","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHE4rUkAANtrk.jpg","url":"https:\/\/t.co\/8Hf665thDd","display_url":"pic.twitter.com\/8Hf665thDd","expanded_url":"http:\/\/twitter.com\/thiphae\/status\/663725777679069184\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663725777679069184,"source_status_id_str":"663725777679069184","source_user_id":128912758,"source_user_id_str":"128912758"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446256128,"id_str":"663728110446256128","text":"@nosquedaclarohn Honduras quiere cambios pero mientras estos sigan en las calles no podremos cambiar","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663078432994107392,"in_reply_to_status_id_str":"663078432994107392","in_reply_to_user_id":3280083913,"in_reply_to_user_id_str":"3280083913","in_reply_to_screen_name":"nosquedaclarohn","user":{"id":3302575928,"id_str":"3302575928","name":"santiago bejamin ","screen_name":"675_bejamin","location":"Honduras","url":null,"description":"me ense\u00f1aras el camino de la vida","protected":false,"verified":false,"followers_count":81,"friends_count":572,"listed_count":0,"favourites_count":2,"statuses_count":2056,"created_at":"Fri Jul 31 15:46:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627143824259842048\/ZliNaQez_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627143824259842048\/ZliNaQez_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302575928\/1438373744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nosquedaclarohn","name":"Nos Queda Claro","id":3280083913,"id_str":"3280083913","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110441893889,"id_str":"663728110441893889","text":"@JUNE__3119 \n\u306e\u3069\u304b\u306e\u7d20\u76f4\u3055\u3063\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727447892881408,"in_reply_to_status_id_str":"663727447892881408","in_reply_to_user_id":4166865672,"in_reply_to_user_id_str":"4166865672","in_reply_to_screen_name":"JUNE__3119","user":{"id":2585483569,"id_str":"2585483569","name":"\uce74 \ub9b0","screen_name":"extrover88","location":null,"url":null,"description":"EXO. VIXX. iKON. GOT7. BTS. etc .. 00(99)line\u9ad81^^ \u3010@riaromo0402\u2190\u6700\u9ad8\u306e\u30c1\u30f3\u30b0ww\u3011------------\u30af\u30b8\u30e5\u30cd\u611b\u3057\u3066\u308b\u2764\ufe0f \u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb\u30fb K\u307d\u57a2\u3060\u3051\u3069\u4eca\u306fiKON\u3067\u3044\u3063\u3071\u3044\u3063\u3001","protected":false,"verified":false,"followers_count":77,"friends_count":175,"listed_count":0,"favourites_count":1279,"statuses_count":430,"created_at":"Tue Jun 24 09:42:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663336732423655424\/UaFYXnJk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663336732423655424\/UaFYXnJk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2585483569\/1446999190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JUNE__3119","name":"\u306e\u3093\u3075\u3047\uff08\u65b0\u57a2\uff09","id":4166865672,"id_str":"4166865672","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458773504,"id_str":"663728110458773504","text":"@locopelasophia piada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663659571651702784,"in_reply_to_status_id_str":"663659571651702784","in_reply_to_user_id":553883811,"in_reply_to_user_id_str":"553883811","in_reply_to_screen_name":"locopelasophia","user":{"id":1137972702,"id_str":"1137972702","name":"jeferson","screen_name":"tirulouco","location":"piau\u00ed ","url":"http:\/\/twishort.com\/szHic","description":"\u201cela veio pra ficar\u201d","protected":false,"verified":false,"followers_count":1314,"friends_count":201,"listed_count":4,"favourites_count":1688,"statuses_count":89417,"created_at":"Thu Jan 31 21:38:03 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000176813479\/rYrW1Son.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000176813479\/rYrW1Son.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"B32059","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663106564946051073\/Uu2Golm9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663106564946051073\/Uu2Golm9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1137972702\/1446574783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"locopelasophia","name":"Alex","id":553883811,"id_str":"553883811","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437691392,"id_str":"663728110437691392","text":"Nikmati detik demi detik yang mungkin kita tak bisa rasakan lagi :')","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1096650949,"id_str":"1096650949","name":"Lucky anggit P","screen_name":"LuckyAnggit_","location":"Jakarta","url":"http:\/\/twiends.com\/luckyanggit_","description":"pin: 2A38544E ig: luckyanggit","protected":false,"verified":false,"followers_count":856,"friends_count":113,"listed_count":1,"favourites_count":26,"statuses_count":4241,"created_at":"Wed Jan 16 23:32:11 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618631944989884417\/1OySEbCr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618631944989884417\/1OySEbCr.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658275901365354496\/h8G0QnNm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658275901365354496\/h8G0QnNm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096650949\/1445775137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454489088,"id_str":"663728110454489088","text":"RT @ihragalang: There are ordinary wifi-equipped schools and then there's my school who has wifi for each room http:\/\/t.co\/lyonuKb4aN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136129602,"id_str":"136129602","name":"bianca","screen_name":"bheyaasantos","location":"scho manila x benilde","url":"http:\/\/tumblr.com\/bheyaasantos","description":"7teen & tired \/ what now?","protected":false,"verified":false,"followers_count":420,"friends_count":325,"listed_count":2,"favourites_count":28931,"statuses_count":51190,"created_at":"Fri Apr 23 03:09:12 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5AB9D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173256043\/y-CRTkWp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173256043\/y-CRTkWp.jpeg","profile_background_tile":true,"profile_link_color":"E02A73","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"1B0D52","profile_text_color":"A328E0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653899474142523394\/BjlcLoe5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653899474142523394\/BjlcLoe5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136129602\/1441052292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 19 03:52:05 +0000 2015","id":645082909460660224,"id_str":"645082909460660224","text":"There are ordinary wifi-equipped schools and then there's my school who has wifi for each room http:\/\/t.co\/lyonuKb4aN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150472148,"id_str":"150472148","name":"Ihra Galang","screen_name":"ihragalang","location":"15 Yemen Road, Yemen","url":"http:\/\/ihragalang.com","description":"Designer. Always says yes to Chinese food.","protected":false,"verified":false,"followers_count":971,"friends_count":446,"listed_count":12,"favourites_count":32275,"statuses_count":64830,"created_at":"Tue Jun 01 01:11:54 +0000 2010","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684579216109568\/75h_YosV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684579216109568\/75h_YosV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150472148\/1444440720","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":425,"favorite_count":519,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":645082897842630656,"id_str":"645082897842630656","indices":[95,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","url":"http:\/\/t.co\/lyonuKb4aN","display_url":"pic.twitter.com\/lyonuKb4aN","expanded_url":"http:\/\/twitter.com\/ihragalang\/status\/645082909460660224\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":645082897842630656,"id_str":"645082897842630656","indices":[95,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","url":"http:\/\/t.co\/lyonuKb4aN","display_url":"pic.twitter.com\/lyonuKb4aN","expanded_url":"http:\/\/twitter.com\/ihragalang\/status\/645082909460660224\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ihragalang","name":"Ihra Galang","id":150472148,"id_str":"150472148","indices":[3,14]}],"symbols":[],"media":[{"id":645082897842630656,"id_str":"645082897842630656","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","url":"http:\/\/t.co\/lyonuKb4aN","display_url":"pic.twitter.com\/lyonuKb4aN","expanded_url":"http:\/\/twitter.com\/ihragalang\/status\/645082909460660224\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":645082909460660224,"source_status_id_str":"645082909460660224","source_user_id":150472148,"source_user_id_str":"150472148"}]},"extended_entities":{"media":[{"id":645082897842630656,"id_str":"645082897842630656","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPPLelCW8AAksHm.jpg","url":"http:\/\/t.co\/lyonuKb4aN","display_url":"pic.twitter.com\/lyonuKb4aN","expanded_url":"http:\/\/twitter.com\/ihragalang\/status\/645082909460660224\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":645082909460660224,"source_status_id_str":"645082909460660224","source_user_id":150472148,"source_user_id_str":"150472148"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110441893888,"id_str":"663728110441893888","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2353882082,"id_str":"2353882082","name":"Sattwavan Macandie","screen_name":"dezogahakaw","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":898,"friends_count":1517,"listed_count":13,"favourites_count":21520,"statuses_count":49510,"created_at":"Thu Feb 20 22:58:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442223554910621696\/IpxF46md_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442223554910621696\/IpxF46md_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":405,"favorite_count":240,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450442241,"id_str":"663728110450442241","text":"@himyhazza przepraszam, ze sie wtracam, ale nie odpisalas panu tymbarkowi, to niekulturalne","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663668367199502336,"in_reply_to_status_id_str":"663668367199502336","in_reply_to_user_id":3400283146,"in_reply_to_user_id_str":"3400283146","in_reply_to_screen_name":"himyhazza","user":{"id":3329796226,"id_str":"3329796226","name":"needod","screen_name":"croysat","location":"harry styles","url":null,"description":"Directioner\u2022 Dlercylpure \u2601\ufe0f Larry is real \u2728 Keep'em falling when I know it hurts","protected":false,"verified":false,"followers_count":246,"friends_count":262,"listed_count":0,"favourites_count":447,"statuses_count":1970,"created_at":"Tue Jun 16 16:16:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660740983823441920\/hU0N_GAh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660740983823441920\/hU0N_GAh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3329796226\/1446496874","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"himyhazza","name":"ily loueh","id":3400283146,"id_str":"3400283146","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110467067904,"id_str":"663728110467067904","text":"@JHS_AI \uadf8\ub807\uc8e0, \ub098\uc911\uc5d0 \uc624\ube60\ub97c \uaf2c\uc154\uc11c \ud574\ubcf4\ub358\uac00 \ud574\uc57c\uaca0\ub124 (\uace0\uac1c\ub97c \ub044\ub355\uc774\uba70 \ud0a4\ub4dd\uc774\ub294)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727310030278657,"in_reply_to_status_id_str":"663727310030278657","in_reply_to_user_id":4112579246,"in_reply_to_user_id_str":"4112579246","in_reply_to_screen_name":"JHS_AI","user":{"id":4111222632,"id_str":"4111222632","name":"\uc774 \uc0c8\ubd04","screen_name":"LSB_AI","location":null,"url":"https:\/\/www.evernote.com\/shard\/s672\/sh\/76c3c85c-0020-41e1-9967-b3464274607a\/6dfd6a840f103cf5e7786e3f","description":"\uc5f4\uc5ec\ub35f | \uc5ec | \uc804\ud5a5\uc131 \uae30\uc5b5\uc7a5\uc560 | 168cm","protected":false,"verified":false,"followers_count":24,"friends_count":25,"listed_count":0,"favourites_count":6,"statuses_count":753,"created_at":"Tue Nov 03 09:12:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661485035481010176\/bhh6yW7F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661485035481010176\/bhh6yW7F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4111222632\/1446968867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JHS_AI","name":"\uc7a5 \ud604\uc218","id":4112579246,"id_str":"4112579246","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080087664"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110467088384,"id_str":"663728110467088384","text":"Annoying!!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174606192,"id_str":"174606192","name":"alyssa","screen_name":"cheeyngente","location":null,"url":null,"description":"changing for the better.....","protected":false,"verified":false,"followers_count":832,"friends_count":405,"listed_count":2,"favourites_count":9029,"statuses_count":50460,"created_at":"Wed Aug 04 10:15:59 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B1B4B5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000092326814\/6e5418088ab8d707f7bfc7affb9acfc5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000092326814\/6e5418088ab8d707f7bfc7affb9acfc5.jpeg","profile_background_tile":true,"profile_link_color":"080708","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663393665532825600\/OL1tRmv-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663393665532825600\/OL1tRmv-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174606192\/1446543288","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087664"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110441918464,"id_str":"663728110441918464","text":"RT @thanaerngGTH: \u0e15\u0e49\u0e32\u0e40\u0e2b\u0e19\u0e34\u0e07 \u0e40\u0e08\u0e21\u0e2a\u0e4c \u0e02\u0e49\u0e32\u0e27\u0e1b\u0e31\u0e49\u0e19 \u0e41\u0e25\u0e30 \u0e1c\u0e39\u0e49\u0e01\u0e33\u0e01\u0e31\u0e1a \u0e08\u0e32\u0e01 \" Hormones 3 The Final Season \"... https:\/\/t.co\/gE0Qhhldw3 via @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2943284858,"id_str":"2943284858","name":"N\u25a1\u25a1N","screen_name":"napattornptpw","location":null,"url":null,"description":"fb: \u0e2a\u0e27\u0e31\u0e2a\u0e14\u0e35 \u0e40\u0e23\u0e32\u0e2b\u0e19\u0e38\u0e19\u0e23\u0e31\u0e01\u0e29\u0e4c\u0e42\u0e25\u0e01\nig : napattorn_mp\nid : napattorn_12\nbj 106 \u2665","protected":false,"verified":false,"followers_count":112,"friends_count":116,"listed_count":0,"favourites_count":47,"statuses_count":1451,"created_at":"Thu Dec 25 23:42:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663294356669894656\/T6fPC9Lr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663294356669894656\/T6fPC9Lr_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:06 +0000 2015","id":663727771202400256,"id_str":"663727771202400256","text":"\u0e15\u0e49\u0e32\u0e40\u0e2b\u0e19\u0e34\u0e07 \u0e40\u0e08\u0e21\u0e2a\u0e4c \u0e02\u0e49\u0e32\u0e27\u0e1b\u0e31\u0e49\u0e19 \u0e41\u0e25\u0e30 \u0e1c\u0e39\u0e49\u0e01\u0e33\u0e01\u0e31\u0e1a \u0e08\u0e32\u0e01 \" Hormones 3 The Final Season \"... https:\/\/t.co\/gE0Qhhldw3 via @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378518403,"id_str":"378518403","name":"\u0e2b\u0e21\u0e27\u0e22\u0e40\u0e2b\u0e19\u0e34\u0e07\u2661","screen_name":"thanaerngGTH","location":null,"url":null,"description":"\u300c Kanyawee Songmuang \u300d\u3001justboth \uff0d support\u2727 @THANAERNG #\u0e17\u0e35\u0e21\u0e40\u0e08\u0e19","protected":false,"verified":false,"followers_count":7822,"friends_count":126,"listed_count":3,"favourites_count":1352,"statuses_count":11035,"created_at":"Fri Sep 23 10:30:36 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F58E8E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/855497317\/2f3bfdfbe4338544b038134a6af35dbd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/855497317\/2f3bfdfbe4338544b038134a6af35dbd.jpeg","profile_background_tile":true,"profile_link_color":"DB4151","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661527797710483456\/BG2JfGj2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661527797710483456\/BG2JfGj2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378518403\/1445799541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gE0Qhhldw3","expanded_url":"https:\/\/youtu.be\/t6Wlrd2FhjU","display_url":"youtu.be\/t6Wlrd2FhjU","indices":[76,99]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[104,112]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gE0Qhhldw3","expanded_url":"https:\/\/youtu.be\/t6Wlrd2FhjU","display_url":"youtu.be\/t6Wlrd2FhjU","indices":[94,117]}],"user_mentions":[{"screen_name":"thanaerngGTH","name":"\u0e2b\u0e21\u0e27\u0e22\u0e40\u0e2b\u0e19\u0e34\u0e07\u2661","id":378518403,"id_str":"378518403","indices":[3,16]},{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[122,130]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110475563009,"id_str":"663728110475563009","text":"Am apreciat un videoclip pe @YouTube, https:\/\/t.co\/ropipckhum Our Wedding Video | Sydney Leroux & Dom Dwyer","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2450579681,"id_str":"2450579681","name":"Bunizzx","screen_name":"andreea26dudu","location":null,"url":null,"description":"#lovewins \n#shannonandcammie\n#stevieandally\n#roseandrosie\nClose you're eyes and enjoy the life. Romanian girl. Insta : Deea.bunyzzx Snap : Bunnizzx","protected":false,"verified":false,"followers_count":318,"friends_count":1162,"listed_count":5,"favourites_count":110,"statuses_count":2926,"created_at":"Mon Mar 31 19:51:33 +0000 2014","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663074996806393857\/l4yeWE8Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663074996806393857\/l4yeWE8Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2450579681\/1437179829","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ropipckhum","expanded_url":"http:\/\/youtu.be\/JDTtwvQTKwE?a","display_url":"youtu.be\/JDTtwvQTKwE?a","indices":[38,61]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[28,36]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087666"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446100481,"id_str":"663728110446100481","text":"@takerin_531 \u3075\u3075w\u307e\u305f\u3046\u306b\u30a2\u30a4\u30b3\u30f3\u306b\u3057\u307e\u305b\u3046|\u03c9\uff65)\u266a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715354342899713,"in_reply_to_status_id_str":"663715354342899713","in_reply_to_user_id":2204818344,"in_reply_to_user_id_str":"2204818344","in_reply_to_screen_name":"takerin_531","user":{"id":159780084,"id_str":"159780084","name":"\u30d6\u30e9\u30f3\u30af@\u30e1\u30a4\u30e1\u30a4","screen_name":"blanc_light","location":"\u30e1\u30a4\u30e1\u30a4\u306b\u3053\u308a\u3053\u266a","url":"http:\/\/www.nicovideo.jp\/mylist\/20731966","description":"\u3064\u3076\u3084\u3044\u305f\u308a\u3001\u3064\u3076\u3084\u304b\u306a\u304b\u3063\u305f\u308a\u3002\u30a2\u30a4\u30b3\u30f3(@halmi_617 )\u30d8\u30c3\u30c0\u30fc(@mamegohan_n) english tweet(@english_blanc)","protected":false,"verified":false,"followers_count":2102,"friends_count":473,"listed_count":126,"favourites_count":13616,"statuses_count":170955,"created_at":"Sat Jun 26 09:29:53 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"21B4E0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155339120\/ZpPlZ-GS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155339120\/ZpPlZ-GS.jpeg","profile_background_tile":true,"profile_link_color":"D1147F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1B4FA8","profile_text_color":"C74DC7","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646346750630866945\/xJ0DiOZV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646346750630866945\/xJ0DiOZV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159780084\/1407723785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takerin_531","name":"\u305f\u3051\u3061\u3083\u3093","id":2204818344,"id_str":"2204818344","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087659"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110442008577,"id_str":"663728110442008577","text":"I don't care I'm watching Santa clause again sue me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1450269588,"id_str":"1450269588","name":"hannah :)","screen_name":"hannahhhbanana_","location":"at a concert","url":"http:\/\/Instagram.com\/_.hannahhbananaa\/","description":"someone told me 'dont forget to smile' so i try my hardest for him\u2661 \u2022|Edwin+Timmy+Rudu\/5quad\u2022| wiffsquad\u2765 smiley squad\u263b","protected":false,"verified":false,"followers_count":975,"friends_count":819,"listed_count":10,"favourites_count":29536,"statuses_count":35223,"created_at":"Thu May 23 01:40:54 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663568124797677568\/rtJDCsrg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663568124797677568\/rtJDCsrg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1450269588\/1446514738","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110441902080,"id_str":"663728110441902080","text":"RT @walangkilljoy: Removing certain people from your life makes room for better people.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2277499442,"id_str":"2277499442","name":"\u3164 \u3164","screen_name":"Rovinuh","location":"asylum","url":null,"description":"ca$h","protected":false,"verified":false,"followers_count":347,"friends_count":195,"listed_count":0,"favourites_count":739,"statuses_count":36064,"created_at":"Sun Jan 05 11:35:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/527495536887095296\/OeJ0LXQC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/527495536887095296\/OeJ0LXQC.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663351696521752577\/_zh8F2DJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663351696521752577\/_zh8F2DJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2277499442\/1445235887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:56 +0000 2015","id":663725716253487104,"id_str":"663725716253487104","text":"Removing certain people from your life makes room for better people.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2839917576,"id_str":"2839917576","name":"Obet","screen_name":"walangkilljoy","location":"philippines","url":"http:\/\/facebook.com\/jr.herradura","description":":)","protected":false,"verified":false,"followers_count":2823,"friends_count":1278,"listed_count":5,"favourites_count":41787,"statuses_count":48528,"created_at":"Sat Oct 04 10:14:18 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662650487234146306\/5XQBQOH3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662650487234146306\/5XQBQOH3.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662582083366227969\/tCb4slj2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662582083366227969\/tCb4slj2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2839917576\/1443265590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"walangkilljoy","name":"Obet","id":2839917576,"id_str":"2839917576","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437687296,"id_str":"663728110437687296","text":"Even if you are feeling unmotivated, you start to emerge from ... More for Libra https:\/\/t.co\/O9ySvQoVZB","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20759293,"id_str":"20759293","name":"Stephanie \u2665","screen_name":"StephersMH","location":"Eastern Oregon","url":"http:\/\/www.facebook.com\/stephanie.hendriksen?ref=profile","description":"SafetySuit Nation Street Team FB: Stephanie Hendriksen Insta: StephersMH SnapChat: stephersmh http:\/\/www.youtube.com\/user\/stephersmh?feature=mhee","protected":false,"verified":false,"followers_count":144,"friends_count":168,"listed_count":2,"favourites_count":6250,"statuses_count":8491,"created_at":"Fri Feb 13 09:38:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F70ADB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685908203\/340edd0ff34cdec3d6e0fe92ca80270f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685908203\/340edd0ff34cdec3d6e0fe92ca80270f.jpeg","profile_background_tile":true,"profile_link_color":"0ECCF2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557068722381156354\/OwqqKZts_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557068722381156354\/OwqqKZts_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20759293\/1402195397","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O9ySvQoVZB","expanded_url":"http:\/\/bit.ly\/wvRgyF","display_url":"bit.ly\/wvRgyF","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458658816,"id_str":"663728110458658816","text":"@Harry_Styles I'm sure #MadeInTheAM will be incredible! you've worked so hard & I'm beyond proud. follow me soon? all my love \ud83c\udf3f x376,963","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662691957039304704,"in_reply_to_status_id_str":"662691957039304704","in_reply_to_user_id":181561712,"in_reply_to_user_id_str":"181561712","in_reply_to_screen_name":"Harry_Styles","user":{"id":149704724,"id_str":"149704724","name":"em loves harry","screen_name":"17raconteur","location":null,"url":null,"description":"i can lend you broken parts","protected":false,"verified":false,"followers_count":14662,"friends_count":109,"listed_count":324,"favourites_count":156512,"statuses_count":419321,"created_at":"Sun May 30 00:55:31 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482733649557610497\/Rr3unBd2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482733649557610497\/Rr3unBd2.jpeg","profile_background_tile":false,"profile_link_color":"7DABD4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661719499905740800\/Hv5J8jJm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661719499905740800\/Hv5J8jJm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149704724\/1446600958","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MadeInTheAM","indices":[23,35]}],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110475563010,"id_str":"663728110475563010","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/XemjpjRxRk","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2867619165,"id_str":"2867619165","name":"of course","screen_name":"macamyworld","location":null,"url":null,"description":"sin darte cuenta con tu sonrisa iluminas todos mis d\u00edas grises.","protected":false,"verified":false,"followers_count":1280,"friends_count":133,"listed_count":0,"favourites_count":1168,"statuses_count":18147,"created_at":"Sat Nov 08 17:27:57 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594413704591978496\/kfDnTXdn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594413704591978496\/kfDnTXdn.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650879807568392192\/6bo9SLMV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650879807568392192\/6bo9SLMV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2867619165\/1443587711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/XemjpjRxRk","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087666"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110471254019,"id_str":"663728110471254019","text":"@namjoohyk anak ku...g \nGamau gua punya anak malin kundang macem lu ewh.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721738702753792,"in_reply_to_status_id_str":"663721738702753792","in_reply_to_user_id":1892178990,"in_reply_to_user_id_str":"1892178990","in_reply_to_screen_name":"namjoohyk","user":{"id":1962572221,"id_str":"1962572221","name":"Rewn.\u2744\ufe0f","screen_name":"Itsrewn","location":"#RMF #SMOFC","url":"http:\/\/ask.fm\/parong","description":"Roleplayer of Bae Joo Hyun a.k.a Irene - 1991 - Red Velvet's Leader - Parong? it's me ! SFAMS","protected":false,"verified":false,"followers_count":1505,"friends_count":1626,"listed_count":2,"favourites_count":503,"statuses_count":16632,"created_at":"Tue Oct 15 12:11:29 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"E61CA6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617956262127341568\/JHdrY_wi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617956262127341568\/JHdrY_wi.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938590033690624\/aVrtXNGa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938590033690624\/aVrtXNGa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1962572221\/1446393961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"namjoohyk","name":"ts J-Vin","id":1892178990,"id_str":"1892178990","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080087665"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110467227648,"id_str":"663728110467227648","text":"setenta y seis #FansAwards2015 #LaDiosa Cande Molfese https:\/\/t.co\/2pFoLSaeWX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4116482297,"id_str":"4116482297","name":"cande","screen_name":"kndmyqueen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":4740,"created_at":"Thu Nov 05 03:05:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662104372420177920\/S2_eBvct_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662104372420177920\/S2_eBvct_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"LaDiosa","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/2pFoLSaeWX","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-ladiosa-cande-molfese","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080087664"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110442008576,"id_str":"663728110442008576","text":"@leftoutside @DuncanStott don't you have a favourite tree? I've got at least 3, couldn't choose between them.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726561808486400,"in_reply_to_status_id_str":"663726561808486400","in_reply_to_user_id":52182451,"in_reply_to_user_id_str":"52182451","in_reply_to_screen_name":"leftoutside","user":{"id":15747900,"id_str":"15747900","name":"Merk","screen_name":"bigdaddymerk","location":"Wellington, Shropshire","url":null,"description":"Network & Systems Consultant guy, do a bit of radio, likes drinking & sometimes swearing. Views are my own or ones I've stolen from more intelligent people.","protected":false,"verified":false,"followers_count":1086,"friends_count":538,"listed_count":62,"favourites_count":705,"statuses_count":52924,"created_at":"Wed Aug 06 09:10:57 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3506742\/twitterbg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3506742\/twitterbg.jpg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2629705976\/8e0a598a44e30f0ac9d5c3dcdba3aead_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2629705976\/8e0a598a44e30f0ac9d5c3dcdba3aead_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15747900\/1401925341","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leftoutside","name":"Left Outside","id":52182451,"id_str":"52182451","indices":[0,12]},{"screen_name":"DuncanStott","name":"Duncan Stott","id":28416474,"id_str":"28416474","indices":[13,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087658"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450307072,"id_str":"663728110450307072","text":"RT @THATlSART: https:\/\/t.co\/LmlNATm8XB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263465535,"id_str":"1263465535","name":"pris killa","screen_name":"thestxrysxfar","location":"pb&e","url":null,"description":"defend pop punk","protected":false,"verified":false,"followers_count":547,"friends_count":102,"listed_count":3,"favourites_count":3523,"statuses_count":22345,"created_at":"Wed Mar 13 03:20:22 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"AAF5FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000008515396\/ad7ef514de0d2077bd0790af74e4a09d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000008515396\/ad7ef514de0d2077bd0790af74e4a09d.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660714674682380288\/2id8sjKO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660714674682380288\/2id8sjKO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263465535\/1444784655","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:07:41 +0000 2015","id":663191127827181568,"id_str":"663191127827181568","text":"https:\/\/t.co\/LmlNATm8XB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663182312473931776,"in_reply_to_status_id_str":"663182312473931776","in_reply_to_user_id":4109788692,"in_reply_to_user_id_str":"4109788692","in_reply_to_screen_name":"THATlSART","user":{"id":4109788692,"id_str":"4109788692","name":"What Is Art?","screen_name":"THATlSART","location":null,"url":null,"description":"What is art? That is art. Here to show you what art is! DM us any What Is Art submissions you would like to be featured. Turn on our notifications!","protected":false,"verified":false,"followers_count":25189,"friends_count":7,"listed_count":5,"favourites_count":2,"statuses_count":15,"created_at":"Tue Nov 03 06:05:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663177991749431297\/fXZ3VfRb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663177991749431297\/fXZ3VfRb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4109788692\/1446948939","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2104,"favorite_count":2300,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663191122408181760,"id_str":"663191122408181760","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663191122408181760,"id_str":"663191122408181760","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663191123104370688,"id_str":"663191123104370688","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0A7UEAAFzce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0A7UEAAFzce.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"large":{"w":900,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":482,"resize":"fit"},"small":{"w":340,"h":273,"resize":"fit"}}},{"id":663191123645435904,"id_str":"663191123645435904","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0C8UEAAJKph.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0C8UEAAJKph.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":662,"resize":"fit"},"large":{"w":500,"h":662,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663191123892899841,"id_str":"663191123892899841","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0D3UEAEHAyO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0D3UEAEHAyO.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"THATlSART","name":"What Is Art?","id":4109788692,"id_str":"4109788692","indices":[3,13]}],"symbols":[],"media":[{"id":663191122408181760,"id_str":"663191122408181760","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663191127827181568,"source_status_id_str":"663191127827181568","source_user_id":4109788692,"source_user_id_str":"4109788692"}]},"extended_entities":{"media":[{"id":663191122408181760,"id_str":"663191122408181760","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQgz-VVEAAWgI_.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663191127827181568,"source_status_id_str":"663191127827181568","source_user_id":4109788692,"source_user_id_str":"4109788692"},{"id":663191123104370688,"id_str":"663191123104370688","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0A7UEAAFzce.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0A7UEAAFzce.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"large":{"w":900,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":482,"resize":"fit"},"small":{"w":340,"h":273,"resize":"fit"}},"source_status_id":663191127827181568,"source_status_id_str":"663191127827181568","source_user_id":4109788692,"source_user_id_str":"4109788692"},{"id":663191123645435904,"id_str":"663191123645435904","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0C8UEAAJKph.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0C8UEAAJKph.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":662,"resize":"fit"},"large":{"w":500,"h":662,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663191127827181568,"source_status_id_str":"663191127827181568","source_user_id":4109788692,"source_user_id_str":"4109788692"},{"id":663191123892899841,"id_str":"663191123892899841","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQg0D3UEAEHAyO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQg0D3UEAEHAyO.jpg","url":"https:\/\/t.co\/LmlNATm8XB","display_url":"pic.twitter.com\/LmlNATm8XB","expanded_url":"http:\/\/twitter.com\/THATlSART\/status\/663191127827181568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663191127827181568,"source_status_id_str":"663191127827181568","source_user_id":4109788692,"source_user_id_str":"4109788692"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450442240,"id_str":"663728110450442240","text":"RT @CommonWhiteGirI: i hate those friendships that just end for no reason you just stop talking","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2579076323,"id_str":"2579076323","name":"emma","screen_name":"emmakate47","location":null,"url":null,"description":"chicago","protected":false,"verified":false,"followers_count":190,"friends_count":199,"listed_count":0,"favourites_count":417,"statuses_count":255,"created_at":"Tue Jun 03 01:37:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640312831385182208\/AhlrMgbg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640312831385182208\/AhlrMgbg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579076323\/1438461926","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:44:13 +0000 2015","id":663441913719218176,"id_str":"663441913719218176","text":"i hate those friendships that just end for no reason you just stop talking","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1198988510,"id_str":"1198988510","name":"Common White Girl","screen_name":"CommonWhiteGirI","location":null,"url":null,"description":"Original Common White Girl Account","protected":false,"verified":false,"followers_count":826095,"friends_count":1,"listed_count":662,"favourites_count":43,"statuses_count":9656,"created_at":"Tue Feb 19 23:39:47 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3280084930\/b28aba42a62b239b5883d6f3249a3418_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3280084930\/b28aba42a62b239b5883d6f3249a3418_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1198988510\/1361495590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":805,"favorite_count":2347,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CommonWhiteGirI","name":"Common White Girl","id":1198988510,"id_str":"1198988510","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110446112768,"id_str":"663728110446112768","text":"LIVE on #Periscope: Power Brunch, Cookin with The Game Viking https:\/\/t.co\/fsTKvUJBlI","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3843298632,"id_str":"3843298632","name":"BrandonTheGameViking","screen_name":"Norsetalgia","location":"Guelph\/Eramosa, Ontario","url":"https:\/\/www.youtube.com\/channel\/UCcopCtYwaJxchGAfyYaZ6MA","description":"Truth seeker with the heart of a clown, always in search of adventure and cool treasures.","protected":false,"verified":false,"followers_count":326,"friends_count":703,"listed_count":1,"favourites_count":55,"statuses_count":132,"created_at":"Sat Oct 10 03:49:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652695271101480960\/hvQ8bMt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652695271101480960\/hvQ8bMt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3843298632\/1444451184","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[8,18]}],"urls":[{"url":"https:\/\/t.co\/fsTKvUJBlI","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCoFzF4blFya0pubUdLWUR8MU1ZeE5ibGtXcHB4dzvGZ9Ok2PKrwhor_B2yxzQx9m16aECE0CXZdRd2IU9i","display_url":"periscope.tv\/w\/aRCoFzF4blFy\u2026","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087659"} +{"delete":{"status":{"id":569855421990637569,"id_str":"569855421990637569","user_id":1890011526,"user_id_str":"1890011526"},"timestamp_ms":"1447080087852"}} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437687297,"id_str":"663728110437687297","text":"@Yooooooooooongi \n\u7acb\u5ddd\u5e02\u306b\u4f4f\u3093\u3067\u308b\u30fc\uff01 https:\/\/t.co\/J9Gg3shbwA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726600668606464,"in_reply_to_status_id_str":"663726600668606464","in_reply_to_user_id":3733146312,"in_reply_to_user_id_str":"3733146312","in_reply_to_screen_name":"Yooooooooooongi","user":{"id":3251433816,"id_str":"3251433816","name":"\u30c6\u30c6\u30b3\u6a2a\u30a2\u30ea9\u65e5\u9032\u6483","screen_name":"bts_v_jungkoook","location":"\u56db\u6b21\u5143\u30ef\u30fc\u30eb\u30c9\u26a1\ufe0f\u2601\ufe0f","url":"http:\/\/Instagram.com\/handsome_aaa_bts","description":"\u2764\ufe0e\ubc29\ud0c4\uc18c\ub144\ub2e8 \uc0ac\ub791\ud574\uc694\u2764\ufe0e(@BTS_twt) \ud0dc\ud5dd\u306f\u30a2\u30bf\u30b7\u306e\u65e6\u90a3\uff0100line\u306e\u53d7\u9a13\u751f\u2026\u26be\ufe0e\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u306a\u308b\u3079\u304f\u7d61\u307f\u305f\u3044\u306e\u3067\u30ea\u30d7\u304f\u308c\u308b\u3068\u3042\u308a\u304c\u305f\u3044\u3067\u3059\u26be\ufe0e","protected":false,"verified":false,"followers_count":289,"friends_count":278,"listed_count":15,"favourites_count":764,"statuses_count":3638,"created_at":"Sun Jun 21 09:55:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660479762972827648\/M83AkSio_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660479762972827648\/M83AkSio_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3251433816\/1440230255","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Yooooooooooongi","name":"\uff90 \uff9d \u592a \u306f 1126\uff7e\uff9d\uff72\uff99","id":3733146312,"id_str":"3733146312","indices":[0,16]}],"symbols":[],"media":[{"id":663728099830312962,"id_str":"663728099830312962","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMLHUsAIjq-t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMLHUsAIjq-t.jpg","url":"https:\/\/t.co\/J9Gg3shbwA","display_url":"pic.twitter.com\/J9Gg3shbwA","expanded_url":"http:\/\/twitter.com\/bts_v_jungkoook\/status\/663728110437687297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":475,"h":310,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"},"medium":{"w":475,"h":310,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728099830312962,"id_str":"663728099830312962","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMLHUsAIjq-t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMLHUsAIjq-t.jpg","url":"https:\/\/t.co\/J9Gg3shbwA","display_url":"pic.twitter.com\/J9Gg3shbwA","expanded_url":"http:\/\/twitter.com\/bts_v_jungkoook\/status\/663728110437687297\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":475,"h":310,"resize":"fit"},"small":{"w":340,"h":221,"resize":"fit"},"medium":{"w":475,"h":310,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437834752,"id_str":"663728110437834752","text":"Freezby negro https:\/\/t.co\/P0SnlELYN8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":483422996,"id_str":"483422996","name":"Chaky","screen_name":"ChakyVigliocco","location":null,"url":null,"description":"CABJ WSP:1169478353","protected":false,"verified":false,"followers_count":74,"friends_count":229,"listed_count":0,"favourites_count":19,"statuses_count":287,"created_at":"Sun Feb 05 00:41:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662696069579567105\/qmXEiuUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662696069579567105\/qmXEiuUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483422996\/1446834028","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728108227403776,"id_str":"663728108227403776","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMqZWIAAXpXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMqZWIAAXpXr.jpg","url":"https:\/\/t.co\/P0SnlELYN8","display_url":"pic.twitter.com\/P0SnlELYN8","expanded_url":"http:\/\/twitter.com\/ChakyVigliocco\/status\/663728110437834752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728108227403776,"id_str":"663728108227403776","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMqZWIAAXpXr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMqZWIAAXpXr.jpg","url":"https:\/\/t.co\/P0SnlELYN8","display_url":"pic.twitter.com\/P0SnlELYN8","expanded_url":"http:\/\/twitter.com\/ChakyVigliocco\/status\/663728110437834752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450274304,"id_str":"663728110450274304","text":"\u0e16\u0e49\u0e32\u0e2d\u0e30\u0e44\u0e23\u0e21\u0e31\u0e19\u0e08\u0e30\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19 \u0e17\u0e33\u0e43\u0e2b\u0e49\u0e40\u0e18\u0e2d\u0e2d\u0e22\u0e39\u0e48\u0e14\u0e35\u0e2a\u0e1a\u0e32\u0e22\u0e43\u0e08\n\u0e01\u0e25\u0e31\u0e1a\u0e44\u0e1b\u0e2d\u0e22\u0e39\u0e48\u0e08\u0e38\u0e14\u0e40\u0e14\u0e34\u0e21\u0e19\u0e31\u0e49\u0e19\u0e41\u0e2b\u0e25\u0e30\u0e14\u0e35\u0e41\u0e25\u0e49\u0e27\u0e27\u0e27\u0e27\n\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2d\u0e30\u0e44\u0e23\u0e40\u0e2a\u0e35\u0e22\u0e2b\u0e32\u0e22\n \u0e41\u0e15\u0e48\u0e21\u0e31\u0e19\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e02\u0e31\u0e14\u0e01\u0e31\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e40\u0e18\u0e2d\u0e40\u0e21\u0e37\u0e48\u0e2d\u0e15\u0e2d\u0e19\u0e19\u0e31\u0e49\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3075370663,"id_str":"3075370663","name":"Memory of Love","screen_name":"Sudarat32434078","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":30,"listed_count":0,"favourites_count":182,"statuses_count":43,"created_at":"Thu Mar 12 15:03:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661926021566824448\/RSNYOREu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661926021566824448\/RSNYOREu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3075370663\/1428304248","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080087660"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110437838849,"id_str":"663728110437838849","text":"Waking up to dis > https:\/\/t.co\/8RsP9GHxtp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":559237098,"id_str":"559237098","name":"Donald Trump 2016","screen_name":"sina123rules","location":null,"url":null,"description":"Money","protected":false,"verified":false,"followers_count":3278,"friends_count":431,"listed_count":17,"favourites_count":47429,"statuses_count":77001,"created_at":"Sat Apr 21 03:20:29 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663064371204112384\/fbm057wC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663064371204112384\/fbm057wC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/559237098\/1445920384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728104192409600,"id_str":"663728104192409600","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMbXVAAAFAg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMbXVAAAFAg_.jpg","url":"https:\/\/t.co\/8RsP9GHxtp","display_url":"pic.twitter.com\/8RsP9GHxtp","expanded_url":"http:\/\/twitter.com\/sina123rules\/status\/663728110437838849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728104192409600,"id_str":"663728104192409600","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMbXVAAAFAg_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMbXVAAAFAg_.jpg","url":"https:\/\/t.co\/8RsP9GHxtp","display_url":"pic.twitter.com\/8RsP9GHxtp","expanded_url":"http:\/\/twitter.com\/sina123rules\/status\/663728110437838849\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087657"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458769408,"id_str":"663728110458769408","text":"NEW Slim 120W Genuine AC Adapter for Toshiba Satellite L555 L515 P500 P70 Series https:\/\/t.co\/z8RIB7w7NP https:\/\/t.co\/NujJgDJjnj","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4138405816,"id_str":"4138405816","name":"Albern Mcgurk","screen_name":"McgurkAlbern","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":40,"listed_count":0,"favourites_count":0,"statuses_count":112,"created_at":"Sun Nov 08 01:46:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663171204224835584\/YX48vneE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663171204224835584\/YX48vneE_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z8RIB7w7NP","expanded_url":"http:\/\/dentistry-usa.info\/dnts\/trys\/?query=161882840035","display_url":"dentistry-usa.info\/dnts\/trys\/?que\u2026","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663728110173601792,"id_str":"663728110173601792","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMxpWwAAz5Fs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMxpWwAAz5Fs.jpg","url":"https:\/\/t.co\/NujJgDJjnj","display_url":"pic.twitter.com\/NujJgDJjnj","expanded_url":"http:\/\/twitter.com\/McgurkAlbern\/status\/663728110458769408\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728110173601792,"id_str":"663728110173601792","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMxpWwAAz5Fs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMxpWwAAz5Fs.jpg","url":"https:\/\/t.co\/NujJgDJjnj","display_url":"pic.twitter.com\/NujJgDJjnj","expanded_url":"http:\/\/twitter.com\/McgurkAlbern\/status\/663728110458769408\/photo\/1","type":"photo","sizes":{"large":{"w":1000,"h":750,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110454505472,"id_str":"663728110454505472","text":"\ube45\uc2a4 \ub178\ub798 \uacf5\uac1c\uac00 19\ubd84 \ub0a8\uc558\ub2e4\uace0\uc624\uc624\uc624 https:\/\/t.co\/E6KH88rfXs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2787904536,"id_str":"2787904536","name":"\uc633\uc9c0\ucc29\ud558\uc9c0 \uac00\ub9ac\ube44","screen_name":"Loveach_other","location":"EXO, VIXX, \ube45\ubc45, \ubc29\ud0c4\uc18c\ub144\ub2e8, \ube44\ud22c\ube44, \uc138\ube10\ud2f4","url":null,"description":"\uafc8\uc740 \uc5c6\uace0\uc694 \uc5d1\uc18c\ub791 \ube45\uc2a4 \ub07c\uace0 \ub180\uace0\uc2f6\uc2b5\ub2c8\ub2e4\n\uc544\uc774\ub3cc\ubc15\uc560\uc8fc\uc758\uc790\n\ud504\uc0ac\ub294 \ubfcc\uafb8\ube60\uac00 \uadf8\ub824\uc92c\uc9c0\uc694","protected":false,"verified":false,"followers_count":96,"friends_count":159,"listed_count":0,"favourites_count":58,"statuses_count":32631,"created_at":"Wed Sep 03 13:02:26 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652482163527446528\/JMFHdeg7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652482163527446528\/JMFHdeg7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2787904536\/1446323880","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728095547932673,"id_str":"663728095547932673","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJL7KUwAETUiQ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJL7KUwAETUiQ.png","url":"https:\/\/t.co\/E6KH88rfXs","display_url":"pic.twitter.com\/E6KH88rfXs","expanded_url":"http:\/\/twitter.com\/Loveach_other\/status\/663728110454505472\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":208,"resize":"fit"},"medium":{"w":300,"h":208,"resize":"fit"},"small":{"w":300,"h":208,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728095547932673,"id_str":"663728095547932673","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJL7KUwAETUiQ.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJL7KUwAETUiQ.png","url":"https:\/\/t.co\/E6KH88rfXs","display_url":"pic.twitter.com\/E6KH88rfXs","expanded_url":"http:\/\/twitter.com\/Loveach_other\/status\/663728110454505472\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":208,"resize":"fit"},"medium":{"w":300,"h":208,"resize":"fit"},"small":{"w":300,"h":208,"resize":"fit"}},"video_info":{"aspect_ratio":[75,52],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJL7KUwAETUiQ.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080087661"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110475563008,"id_str":"663728110475563008","text":"Man's wrist fractured in serious assault in #Stortford by group of men https:\/\/t.co\/Qdv6iGmWrM https:\/\/t.co\/5APE3zgvdo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44366267,"id_str":"44366267","name":"Herts Essex Observer","screen_name":"HertsEssexObser","location":"Bishop's Stortford","url":"http:\/\/www.hertsandessexobserver.co.uk","description":"Breaking news and sport, features and video from Bishop's Stortford, Dunmow, Stansted, Sawbridgeworth and surrounding areas.","protected":false,"verified":false,"followers_count":10282,"friends_count":1198,"listed_count":165,"favourites_count":624,"statuses_count":30308,"created_at":"Wed Jun 03 14:14:27 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/195105517\/OBSERVER_EDITIONS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/195105517\/OBSERVER_EDITIONS.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442666996\/ob_nav_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442666996\/ob_nav_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44366267\/1432065130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Stortford","indices":[44,54]}],"urls":[{"url":"https:\/\/t.co\/Qdv6iGmWrM","expanded_url":"http:\/\/po.st\/CjtxAf","display_url":"po.st\/CjtxAf","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663728109288595456,"id_str":"663728109288595456","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMuWWoAAvY05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMuWWoAAvY05.jpg","url":"https:\/\/t.co\/5APE3zgvdo","display_url":"pic.twitter.com\/5APE3zgvdo","expanded_url":"http:\/\/twitter.com\/HertsEssexObser\/status\/663728110475563008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"large":{"w":830,"h":533,"resize":"fit"},"medium":{"w":600,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728109288595456,"id_str":"663728109288595456","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMuWWoAAvY05.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMuWWoAAvY05.jpg","url":"https:\/\/t.co\/5APE3zgvdo","display_url":"pic.twitter.com\/5APE3zgvdo","expanded_url":"http:\/\/twitter.com\/HertsEssexObser\/status\/663728110475563008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":218,"resize":"fit"},"large":{"w":830,"h":533,"resize":"fit"},"medium":{"w":600,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087666"} +{"delete":{"status":{"id":663728022382583808,"id_str":"663728022382583808","user_id":2579413568,"user_id_str":"2579413568"},"timestamp_ms":"1447080088403"}} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110458634241,"id_str":"663728110458634241","text":"\u304a\u6dbc\u3061\u3083\u3093\u30b0\u30c3\u30ba\u5897\u3048\u305f\u301c\uff01\u6d1b\u4e2d\u6d1b\u5916\u30b7\u30b9\u30bf\u30fc\u30ba\u30b7\u30fc\u30eb\u3001\u3069\u3053\u8cbc\u308d\u3046\ud83c\udf89\u3046\u3075\u3075\u306e\u3075 https:\/\/t.co\/6DbAMPNlFx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190171659,"id_str":"190171659","name":"DJ\u307f\u305d\u3057\u308b\u3068MC\u3054\u306f\u3093","screen_name":"D_M_M_G","location":"\u30c8\u30fc\u30ad\u30e7\u30fc\u30c8","url":"http:\/\/misosiru.jp\/","description":"\u300e\u304a\u3044\u3057\u3044\u3082\u306e\u306f\u4eba\u985e\u306e\u5947\u8de1\u3060\u300f","protected":false,"verified":true,"followers_count":17484,"friends_count":712,"listed_count":280,"favourites_count":1134,"statuses_count":3346,"created_at":"Mon Sep 13 07:47:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1170805430\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1170805430\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190171659\/1355917173","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728089659150336,"id_str":"663728089659150336","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLlOVEAAi65j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLlOVEAAi65j.jpg","url":"https:\/\/t.co\/6DbAMPNlFx","display_url":"pic.twitter.com\/6DbAMPNlFx","expanded_url":"http:\/\/twitter.com\/D_M_M_G\/status\/663728110458634241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728089659150336,"id_str":"663728089659150336","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLlOVEAAi65j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLlOVEAAi65j.jpg","url":"https:\/\/t.co\/6DbAMPNlFx","display_url":"pic.twitter.com\/6DbAMPNlFx","expanded_url":"http:\/\/twitter.com\/D_M_M_G\/status\/663728110458634241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663728089654956033,"id_str":"663728089654956033","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJLlNVEAEboM2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJLlNVEAEboM2.jpg","url":"https:\/\/t.co\/6DbAMPNlFx","display_url":"pic.twitter.com\/6DbAMPNlFx","expanded_url":"http:\/\/twitter.com\/D_M_M_G\/status\/663728110458634241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080087662"} +{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110450384896,"id_str":"663728110450384896","text":"Humana Vice President, Mark Newsom, went on a #FindYourPark adventure! Check out his first stop: @CanyonlandsNPS. https:\/\/t.co\/JicRjrXK0V","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24160942,"id_str":"24160942","name":"Humana","screen_name":"Humana","location":null,"url":"http:\/\/www.humana.com\/Twitter","description":"Pursuing our dream of helping people achieve lifelong well-being. To learn more about Humana visit https:\/\/www.humana.com\/about. Need help? Tweet @HumanaHelp.","protected":false,"verified":false,"followers_count":19566,"friends_count":142,"listed_count":421,"favourites_count":1020,"statuses_count":7098,"created_at":"Fri Mar 13 12:09:13 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2D2D2D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/845706128\/29a20bcf08657b2dea083baf163e6ede.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/845706128\/29a20bcf08657b2dea083baf163e6ede.jpeg","profile_background_tile":false,"profile_link_color":"AA005F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2729790994\/f0b29f29716ea40f6b2b9041dcaf1152_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2729790994\/f0b29f29716ea40f6b2b9041dcaf1152_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24160942\/1428350177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FindYourPark","indices":[46,59]}],"urls":[],"user_mentions":[{"screen_name":"CanyonlandsNPS","name":"CanyonlandsNPS","id":298047906,"id_str":"298047906","indices":[97,112]}],"symbols":[],"media":[{"id":663726476995465216,"id_str":"663726476995465216","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHttlWEAApojT.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHttlWEAApojT.png","url":"https:\/\/t.co\/JicRjrXK0V","display_url":"pic.twitter.com\/JicRjrXK0V","expanded_url":"http:\/\/twitter.com\/Humana\/status\/663728110450384896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":494,"resize":"fit"},"small":{"w":340,"h":164,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726476995465216,"id_str":"663726476995465216","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHttlWEAApojT.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHttlWEAApojT.png","url":"https:\/\/t.co\/JicRjrXK0V","display_url":"pic.twitter.com\/JicRjrXK0V","expanded_url":"http:\/\/twitter.com\/Humana\/status\/663728110450384896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":494,"resize":"fit"},"small":{"w":340,"h":164,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080087660"} +{"delete":{"status":{"id":663431929694445568,"id_str":"663431929694445568","user_id":1435401476,"user_id_str":"1435401476"},"timestamp_ms":"1447080088542"}} +{"delete":{"status":{"id":663451793918152704,"id_str":"663451793918152704","user_id":394552930,"user_id_str":"394552930"},"timestamp_ms":"1447080088588"}} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669875201,"id_str":"663728114669875201","text":"J023ew :","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2882048743,"id_str":"2882048743","name":"SHAMS","screen_name":"SHAMS55249270","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Wed Oct 29 11:42:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114636349441,"id_str":"663728114636349441","text":"Ayoko maging officer!!","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1256030298,"id_str":"1256030298","name":"Len","screen_name":"EileenMaeAlos","location":"Naga City","url":"http:\/\/instagram.com\/emrmalos","description":"filipina bicolana oasenos naguena isabelina","protected":false,"verified":false,"followers_count":465,"friends_count":334,"listed_count":1,"favourites_count":14373,"statuses_count":7609,"created_at":"Sun Mar 10 04:06:09 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487809224408186882\/9uEaopmj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487809224408186882\/9uEaopmj.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663641179205013504\/DieyXO-a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663641179205013504\/DieyXO-a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1256030298\/1447059334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080088658"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114653073408,"id_str":"663728114653073408","text":"RT @KardashianReact: i got 99 problems and probably about 94 of them come from my lack of motivation to do anything","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2252465625,"id_str":"2252465625","name":"lucy palmer","screen_name":"lucy_99181","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":71,"listed_count":0,"favourites_count":75,"statuses_count":228,"created_at":"Mon Dec 30 17:54:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651484097919995904\/-ywlxwsF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651484097919995904\/-ywlxwsF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2252465625\/1431718968","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:40:49 +0000 2015","id":663561857915994113,"id_str":"663561857915994113","text":"i got 99 problems and probably about 94 of them come from my lack of motivation to do anything","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1901273544,"id_str":"1901273544","name":"Kardashian Reactions","screen_name":"KardashianReact","location":null,"url":null,"description":"You're literally being so rude right now just follow me *Parody Account \/ Fan Account* *we do not own content posted*","protected":false,"verified":false,"followers_count":840658,"friends_count":2,"listed_count":519,"favourites_count":0,"statuses_count":13141,"created_at":"Tue Sep 24 18:05:52 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448507951041376256\/Or_GJUYO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448507951041376256\/Or_GJUYO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1901273544\/1395768749","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":979,"favorite_count":1922,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KardashianReact","name":"Kardashian Reactions","id":1901273544,"id_str":"1901273544","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088662"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669875200,"id_str":"663728114669875200","text":"RT @VetsGetScanning: A DISTRAUGHT Derbyshire couple are asking for the public\u2019s help in tracing their beloved four-year-old dog, who... htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":739243934,"id_str":"739243934","name":"Michelle lesley","screen_name":"Michellelesley3","location":"Surrey","url":null,"description":"Busy mobile Hairdresser and a very big nail art & nail polish enthusiast (300+ bottles) and still want more!! Also I luuuv cats\u2764\ufe0f,my Mini, cakes and red wine.","protected":false,"verified":false,"followers_count":222,"friends_count":122,"listed_count":18,"favourites_count":27,"statuses_count":8616,"created_at":"Sun Aug 05 21:09:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453106094391705600\/fgVNdq8Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453106094391705600\/fgVNdq8Y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/739243934\/1443565193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:44:06 +0000 2015","id":663653279570771968,"id_str":"663653279570771968","text":"A DISTRAUGHT Derbyshire couple are asking for the public\u2019s help in tracing their beloved four-year-old dog, who... https:\/\/t.co\/3BDfoEv9Om","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":847374308,"id_str":"847374308","name":"VetsGetScanning","screen_name":"VetsGetScanning","location":"London, UK","url":"http:\/\/vetsgetscanning.co.uk\/","description":"Sir Bruce Forsyth's petition to get all vets to scan pets for microchips at registration. Most vets don't. Missing\/stolen dogs not reunited! Go to web page.","protected":false,"verified":false,"followers_count":4522,"friends_count":2711,"listed_count":86,"favourites_count":723,"statuses_count":10165,"created_at":"Wed Sep 26 13:07:47 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2651708981\/ab2afaab248cba3992135338da68dbae_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2651708981\/ab2afaab248cba3992135338da68dbae_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847374308\/1442768602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3BDfoEv9Om","expanded_url":"http:\/\/fb.me\/4fxKUlEba","display_url":"fb.me\/4fxKUlEba","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3BDfoEv9Om","expanded_url":"http:\/\/fb.me\/4fxKUlEba","display_url":"fb.me\/4fxKUlEba","indices":[139,140]}],"user_mentions":[{"screen_name":"VetsGetScanning","name":"VetsGetScanning","id":847374308,"id_str":"847374308","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114653114368,"id_str":"663728114653114368","text":"RT @Telal_Makkah: \u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629 \n\u0645\u0634\u0631\u0648\u0639 \u0628\u064a\u062a \u0645\u0643\u0629 36\n\u0627\u0645\u062a\u0644\u0643 \u0634\u0642\u062a\u0643 \u0628\u0627\u0644\u062a\u0642\u0633\u064a\u0637\n\u0623\u0633\u0639\u0627\u0631 \u0645\u0645\u064a\u0632\u0629 \u0645\u0633\u0627\u062d\u0629 209.90 \u06452\n00966555651594\nhttps:\/\/t.co\/QrFltXelBi http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480758910,"id_str":"480758910","name":"\u2728\u2728\u0627\u0639\u0644\u0627\u0646\u0627\u062a \u0645\u062a\u0641\u0627\u0626\u0644 \u2728\u2728","screen_name":"mutfaell","location":null,"url":null,"description":"\u0646\u062f\u0639\u0645 \u062d\u0633\u0627\u0628\u0627\u062a\u0643\u0645 \u0627\u0644\u0634\u062e\u0635\u064a\u0647.. \u0648\u0627\u0639\u0644\u0627\u0646\u0627\u062a\u0643\u0645 \u0627\u0644\u062a\u062c\u0627\u0631\u064a\u0629 .. \u0628\u0623\u0642\u0644 \u0627\u0644\u0623\u0633\u0639\u0627\u0631 ...\u0634\u0639\u0627\u0631\u0646\u0627 \u0627\u0644\u0625\u062e\u0644\u0627\u0635 \u0641\u064a \u0627\u0644\u0639\u0645\u0644 ...\u0631\u0636\u0627\u0643\u0645 \u0647\u062f\u0641\u0646\u0627 ... \u0644\u0644\u062a\u0648\u0627\u0635\u0644 0563015559","protected":false,"verified":false,"followers_count":761183,"friends_count":642409,"listed_count":1467,"favourites_count":555,"statuses_count":559889,"created_at":"Wed Feb 01 21:27:59 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635962331214671872\/S1io7Fvy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635962331214671872\/S1io7Fvy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480758910\/1423436544","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:57:18 +0000 2015","id":663460305935142912,"id_str":"663460305935142912","text":"\u0645\u0643\u0629 \u0627\u0644\u0645\u0643\u0631\u0645\u0629 \n\u0645\u0634\u0631\u0648\u0639 \u0628\u064a\u062a \u0645\u0643\u0629 36\n\u0627\u0645\u062a\u0644\u0643 \u0634\u0642\u062a\u0643 \u0628\u0627\u0644\u062a\u0642\u0633\u064a\u0637\n\u0623\u0633\u0639\u0627\u0631 \u0645\u0645\u064a\u0632\u0629 \u0645\u0633\u0627\u062d\u0629 209.90 \u06452\n00966555651594\nhttps:\/\/t.co\/QrFltXelBi https:\/\/t.co\/s7VSUzbv2O","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369999013,"id_str":"369999013","name":"Telal Makkah","screen_name":"Telal_Makkah","location":"Phone : 00966541856086","url":"http:\/\/www.makkiyoon.com","description":"Makkiyoon Urban Developers is one of the world's largest real estate companies and is rapidly evolving to become aglobal provider of premier lifestyles .","protected":false,"verified":false,"followers_count":43255,"friends_count":18398,"listed_count":66,"favourites_count":11676,"statuses_count":15704,"created_at":"Thu Sep 08 09:08:08 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DADDC0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/327023262\/xc5df4088043dfd689c0b85c14a2499c.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/327023262\/xc5df4088043dfd689c0b85c14a2499c.jpg","profile_background_tile":false,"profile_link_color":"8DCE10","profile_sidebar_border_color":"E2EAEF","profile_sidebar_fill_color":"0F4B71","profile_text_color":"EDE3D3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553672518653837312\/Eg4XhE5v_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553672518653837312\/Eg4XhE5v_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369999013\/1411857167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":133,"favorite_count":19,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QrFltXelBi","expanded_url":"http:\/\/www.makkiyoon.com\/App.asp","display_url":"makkiyoon.com\/App.asp","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663460274675040256,"id_str":"663460274675040256","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663460274675040256,"id_str":"663460274675040256","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}},{"id":663460274746298369,"id_str":"663460274746298369","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVms7WEAE5DZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVms7WEAE5DZG.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QrFltXelBi","expanded_url":"http:\/\/www.makkiyoon.com\/App.asp","display_url":"makkiyoon.com\/App.asp","indices":[111,134]}],"user_mentions":[{"screen_name":"Telal_Makkah","name":"Telal Makkah","id":369999013,"id_str":"369999013","indices":[3,16]}],"symbols":[],"media":[{"id":663460274675040256,"id_str":"663460274675040256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663460305935142912,"source_status_id_str":"663460305935142912","source_user_id":369999013,"source_user_id_str":"369999013"}]},"extended_entities":{"media":[{"id":663460274675040256,"id_str":"663460274675040256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVmsqWwAADqMA.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":663460305935142912,"source_status_id_str":"663460305935142912","source_user_id":369999013,"source_user_id_str":"369999013"},{"id":663460274746298369,"id_str":"663460274746298369","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVms7WEAE5DZG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVms7WEAE5DZG.jpg","url":"https:\/\/t.co\/s7VSUzbv2O","display_url":"pic.twitter.com\/s7VSUzbv2O","expanded_url":"http:\/\/twitter.com\/Telal_Makkah\/status\/663460305935142912\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663460305935142912,"source_status_id_str":"663460305935142912","source_user_id":369999013,"source_user_id_str":"369999013"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080088662"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114636320768,"id_str":"663728114636320768","text":"Singgah kejap amik barang (@ Emerald Park Kolej Kediaman UTeM in Melaka) https:\/\/t.co\/Xms5NINFzl","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287147646,"id_str":"287147646","name":"Epi","screen_name":"EpiSudin21","location":null,"url":null,"description":"If you dont know to read the abc then dont read my tweets.","protected":false,"verified":false,"followers_count":332,"friends_count":302,"listed_count":1,"favourites_count":1405,"statuses_count":43274,"created_at":"Sun Apr 24 12:10:36 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/361706087\/gh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/361706087\/gh.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638597771499429888\/6PFqlHDX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638597771499429888\/6PFqlHDX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287147646\/1438521661","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[2.24914679,102.27491424]},"coordinates":{"type":"Point","coordinates":[102.27491424,2.24914679]},"place":{"id":"89cddf6d2b991533","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/89cddf6d2b991533.json","place_type":"city","name":"Bukit Baru","full_name":"Bukit Baru, Melaka","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[102.260920,2.209605],[102.260920,2.274902],[102.294511,2.274902],[102.294511,2.209605]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Xms5NINFzl","expanded_url":"https:\/\/www.swarmapp.com\/c\/7DDWoKTHcg3","display_url":"swarmapp.com\/c\/7DDWoKTHcg3","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"in","timestamp_ms":"1447080088658"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114632036353,"id_str":"663728114632036353","text":"RT @johnnys_mokujou: 11\/9\n\n\u5409\u7965\u5bfa\n\n\u83ca\u6c60\u98a8\u78e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905984897,"id_str":"2905984897","name":"\u677e\u5cf6\u2605\u308a\u3055","screen_name":"1996sz_kanjyu","location":null,"url":null,"description":"matusima so takahashi kyohei \u639b\u3051\u6301\u3061\u3067\u3059 \u52dd\u5229\u4e16\u4ee3 like\u2192SZ \u95a2\u897fJr 14\u5e74\u7d44 Disney \u30de\u30a4\u30e1\u30ed \u30ea\u30e0\u30e9\u30ec\u30c3\u30bf\u30fc\u8a2d\u7f6e\u3057\u3066\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u6574\u7406\u4e2d\u3000\u30d5\u30a9\u30ed\u30d0\u3057\u3066\u306a\u3044\u4eba\u30d5\u30a9\u30ed\u30fc\u306f\u305a\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":241,"friends_count":484,"listed_count":1,"favourites_count":4320,"statuses_count":7559,"created_at":"Fri Nov 21 10:37:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708250416680960\/m15RQQfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708250416680960\/m15RQQfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905984897\/1447075351","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:00 +0000 2015","id":663726486969384962,"id_str":"663726486969384962","text":"11\/9\n\n\u5409\u7965\u5bfa\n\n\u83ca\u6c60\u98a8\u78e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252778668,"id_str":"3252778668","name":"\u30b8\u30e3\u30cb\u30fc\u30ba\u906d\u9047\u60c5\u5831","screen_name":"johnnys_mokujou","location":"\u6771\u4eac\u90fd \u6e0b\u8c37\u533a","url":"http:\/\/www.xn--ycke4c5evf613xgtm76goy8b.net\/","description":"\u6bce\u65e5\u66f4\u65b0\u4e2d\uff01 \u906d\u9047\u60c5\u5831\u306fDM\u3067\u9001\u3063\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u6c17\u3065\u304d\u3084\u3059\u3044\u3067\u3059\uff01 \u30b8\u30e3\u30cb\u30fc\u30ba\u52d5\u753b\u307e\u3068\u3081\u306f\u3053\u3061\u3089\u2192@JohnnysDouga \u30b8\u30e3\u30cb\u30fc\u30ba\u307e\u3068\u3081\u2192@Johnnysmatome7","protected":false,"verified":false,"followers_count":106713,"friends_count":2,"listed_count":281,"favourites_count":78,"statuses_count":2285,"created_at":"Mon Jun 22 15:43:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614676275559448576\/KVRqPf3X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614676275559448576\/KVRqPf3X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252778668\/1443492846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":214,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"johnnys_mokujou","name":"\u30b8\u30e3\u30cb\u30fc\u30ba\u906d\u9047\u60c5\u5831","id":3252778668,"id_str":"3252778668","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088657"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669903872,"id_str":"663728114669903872","text":"\u042e\u0440\u0438\u0439 \u041b\u043e\u0434\u044b\u0433\u0438\u043d \u0437\u0430\u0442\u0440\u043e\u043b\u043b\u0438\u043b \u043c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u0438\u0439 \u0421\u043f\u0430\u0440\u0442\u0430\u043a #yandex #\u0433\u0443\u0433\u043b","source":"\u003ca href=\"http:\/\/tiandeshop.ru\/\" rel=\"nofollow\"\u003ethe new appi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122578084,"id_str":"3122578084","name":"\u0410\u043b\u0451? \u0414\u043c\u0438\u0442\u0440\u0438\u0435\u0432\u0430","screen_name":"attairan89","location":"\u041d\u0438\u0436\u043d\u0438\u0439 \u041d\u043e\u0432\u0433\u043e\u0440\u043e\u0434","url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":3,"listed_count":3,"favourites_count":0,"statuses_count":2182,"created_at":"Fri Mar 27 23:35:26 +0000 2015","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581601441992732672\/IOLlSkto.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581601441992732672\/IOLlSkto.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581601541703991297\/TvmbST68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581601541703991297\/TvmbST68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3122578084\/1427499603","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"yandex","indices":[42,49]},{"text":"\u0433\u0443\u0433\u043b","indices":[50,55]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114665549824,"id_str":"663728114665549824","text":"\u30b9\u30ab\u30c3\u3068JAPAN\u306e\u80f8\u304d\u3085\u3093\u30b9\u30ab\u30c3\u3068\u672c\u5f53\u306b\u597d\u304d\u6bce\u9031\u697d\u3057\u307f\u306b\u3057\u3068\u308b\uff01\u7b11\n\u3082\u3046\u672c\u5f53\u306b\u30ab\u30c3\u30b3\u826f\u3059\u304e\u308b\uff01\u7b11\n\u6765\u9031\u3082\u697d\u3057\u307f\ufe0e\u263a\ufe0e\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076344036,"id_str":"3076344036","name":"\u3072\u3088\u308a","screen_name":"0223Hiyo","location":"\u5922\u306e\u56fdin.NAGOYA","url":null,"description":"\u3010\u5185\u90e8\u2461\u3011\u3010\u30b8\u30e3\u30cb\u30fc\u30ba\/\u30b8\u30e3\u30cb\u30fc\u30baJr\/\u95a2\u897f\u30b8\u30e3\u30cb\u30fc\u30baJr\u3011\u3010\u30e2\u30c7\u30eb\u3055\u3093\/\u5973\u512a\u3055\u3093\/\u4ff3\u512a\u3055\u3093\u3011\u3010\u30aa\u30b7\u30e3\u30ec\u3011\u3010\u6620\u753b\/\u30c9\u30e9\u30de\/\u96d1\u8a8c\/TV\u3063\u5b50\u3011\u3010\u7a7a\/\u5b87\u5b99\u3011\u3010\u8272\u3005\u597d\u304d\u263a\u5c11\u3057\u3067\u3082\u6c17\u306b\u306a\u3063\u305f\u3089follow\u3057\u3066\u898b\u3066\u4e0b\u3055\u3044\u30ea\u30e0\u308b\u00d7\u3011\u300a\u53cb\u9054\u5927\u4e8b\u300b\u300a\u300a\u97d3\u56fd\u300b\u300b\u3010\u5bdd\u308b\u306e\u597d\u304d\u3011\u3010\u30d5\u30ea\u30fc\u30c0\u30e0\u3011\u25bc\u30c0\u30a4\u30a8\u30c3\u30c8\u6c7a\u610f\u25bc","protected":false,"verified":false,"followers_count":109,"friends_count":79,"listed_count":0,"favourites_count":7108,"statuses_count":1037,"created_at":"Fri Mar 13 09:35:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656779561846214656\/VyTTLDGe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656779561846214656\/VyTTLDGe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076344036\/1445423423","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088665"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669850624,"id_str":"663728114669850624","text":"\u96f0\u56f2\u6c17\u304c\u4f3c\u3066\u308b\u3068\u8a00\u308f\u308c\u308b\u3051\u3069\u79c1\u306f\u305d\u3046\u306f\u601d\u308f\u306a\u3044\u308f\u3001\u3080\u3057\u308d\u4f3c\u3066\u308b\u3068\u3044\u3046\u767a\u60f3\u304c\u7121\u79e9\u5e8f\u305d\u306e\u3082\u306e\u3060\u3068\u79c1\u306f\u601d\u3044\u307e\u3059\u304c\u3002 #\u536f\u30ce\u82b1 #\u56fd\u6f14\u6559\u5e2b https:\/\/t.co\/v4g7pvyucN","source":"\u003ca href=\"http:\/\/botbird.metabirds.net\" rel=\"nofollow\"\u003eBotbird tweets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904446964,"id_str":"2904446964","name":"\u3068\u3042\u308b\u5b66\u6821\u306e\u56fd\u6f14\u6559\u5e2bbot","screen_name":"kotsukotsu__bot","location":null,"url":null,"description":"\u3044\u3044\u601d\u3044\u51fabot\u3060\u3051\u3069\u3082\u3046\u30c4\u30a4\u30fc\u30c8\u30cd\u30bf\u304c\u306a\u3044\u306e\u3067\u30ed\u30b0\u30a2\u30a6\u30c8\u3044\u305f\u3059\u306d\u3054\u3081\u3093\u3061\u3083\u3044","protected":false,"verified":false,"followers_count":7,"friends_count":0,"listed_count":0,"favourites_count":4,"statuses_count":5363,"created_at":"Wed Nov 19 12:36:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u536f\u30ce\u82b1","indices":[55,59]},{"text":"\u56fd\u6f14\u6559\u5e2b","indices":[60,65]}],"urls":[{"url":"https:\/\/t.co\/v4g7pvyucN","expanded_url":"http:\/\/mtlnk.net\/j_%253A%252F%252Ft.co%252FQ1GuxlBXLt","display_url":"mtlnk.net\/j_%253A%252F%2\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114661531648,"id_str":"663728114661531648","text":"\"Samara que isso no pesco\u00e7o? \" \"Nada\" \"Hmmmm chup\u00e3o ne sfd\" \"\u00c9, porra, ta vendo n\u00e3o? Isso \u00e9 um chup\u00e3o\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2738450399,"id_str":"2738450399","name":"Samarinha","screen_name":"sahh_trindade","location":null,"url":null,"description":"Viver intensamente cada dia, por que a vida \u00e9 uma s\u00f3!!!","protected":false,"verified":false,"followers_count":655,"friends_count":452,"listed_count":0,"favourites_count":4554,"statuses_count":13368,"created_at":"Sat Aug 09 21:02:33 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663168392459866112\/BewImnad_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663168392459866112\/BewImnad_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2738450399\/1447030943","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080088664"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114661523456,"id_str":"663728114661523456","text":"Qd @JM_Aulas parle d'\u00e9thique ?? A se pisser dessus... Ce type est d\u00e9finitivement devenu dingue. \nhttps:\/\/t.co\/LtmLVUndZJ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55779338,"id_str":"55779338","name":"4h18","screen_name":"4h18","location":"La Terre","url":"http:\/\/inkubateur.com\/tweetmeup","description":"Twittos Pop Star. \nInfluenceur n\u00e9. \nBad Buzz project.","protected":false,"verified":false,"followers_count":4039,"friends_count":1215,"listed_count":682,"favourites_count":3014,"statuses_count":82690,"created_at":"Sat Jul 11 06:57:48 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD3333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636844454767411200\/-tKEe4B1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636844454767411200\/-tKEe4B1.jpg","profile_background_tile":false,"profile_link_color":"333333","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648937041317769216\/NJxoI96C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648937041317769216\/NJxoI96C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/55779338\/1445028843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LtmLVUndZJ","expanded_url":"http:\/\/www.foot01.com\/equipe\/ol\/aulas-degaine-twitter-et-tacle-romeyer-hamouma-perrin,192417","display_url":"foot01.com\/equipe\/ol\/aula\u2026","indices":[97,120]}],"user_mentions":[{"screen_name":"JM_Aulas","name":"Jean-Michel AULAS","id":374563381,"id_str":"374563381","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080088664"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669903873,"id_str":"663728114669903873","text":"RT @annykarolrb: hoje o Lins estava um amorzinho comigo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3377621872,"id_str":"3377621872","name":"soldado do morro","screen_name":"filipelins33","location":"Bras\u00edlia, Distrito Federal","url":null,"description":"ama o juiz, mais e apaixonada pelo r\u00e9u","protected":false,"verified":false,"followers_count":221,"friends_count":231,"listed_count":0,"favourites_count":2166,"statuses_count":8984,"created_at":"Wed Jul 15 17:12:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663015747506053120\/9vbX-MVv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663015747506053120\/9vbX-MVv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3377621872\/1446134780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:48 +0000 2015","id":663726184828682240,"id_str":"663726184828682240","text":"hoje o Lins estava um amorzinho comigo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1354796094,"id_str":"1354796094","name":"Anny","screen_name":"annykarolrb","location":"bsb","url":null,"description":null,"protected":false,"verified":false,"followers_count":553,"friends_count":317,"listed_count":0,"favourites_count":8738,"statuses_count":13057,"created_at":"Mon Apr 15 16:55:56 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650721212541313024\/39pbjn6M.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650721212541313024\/39pbjn6M.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662393487313227776\/PysaxS75_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662393487313227776\/PysaxS75_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1354796094\/1446758426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"annykarolrb","name":"Anny","id":1354796094,"id_str":"1354796094","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114657181697,"id_str":"663728114657181697","text":"\u5802\u59b9\u6bcf\u6b21\u6652\u6069\u7231 \u54c8\u54c8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1524574098,"id_str":"1524574098","name":"\u2728","screen_name":"tangtang_123","location":null,"url":null,"description":"\u6211\u559c\u6b61\u4e00\u500b\u4eba\u7684\u751f\u6d3b\uff0c\u4f46\u66f4\u559c\u6b61\u4f60\u5011\u7684\u966a\u4f34","protected":false,"verified":false,"followers_count":54,"friends_count":39,"listed_count":0,"favourites_count":2797,"statuses_count":2431,"created_at":"Mon Jun 17 11:20:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663008607907086338\/c9-Y2fHP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663008607907086338\/c9-Y2fHP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1524574098\/1444604581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"zh","timestamp_ms":"1447080088663"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669760512,"id_str":"663728114669760512","text":"RT @Dekchaikumkom: \u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 \n\u0e41\u0e15\u0e48\u0e16\u0e36\u0e07\u0e1e\u0e39\u0e14\u0e44\u0e1b\u0e01\u0e47\u0e44\u0e21\u0e48\u0e21\u0e35\u0e44\u0e23\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185953105,"id_str":"3185953105","name":"\u0e40\u0e2e\u0e49\u0e2d\u0e2d\u0e2d\u0e2d","screen_name":"SChuasaard","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":43,"listed_count":0,"favourites_count":13,"statuses_count":307,"created_at":"Tue May 05 06:55:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595484069141483522\/9knDJZNA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595484069141483522\/9knDJZNA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 08 14:39:34 +0000 2015","id":652131223314165765,"id_str":"652131223314165765","text":"\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e44\u0e21\u0e48\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 \n\u0e41\u0e15\u0e48\u0e16\u0e36\u0e07\u0e1e\u0e39\u0e14\u0e44\u0e1b\u0e01\u0e47\u0e44\u0e21\u0e48\u0e21\u0e35\u0e44\u0e23\u0e14\u0e35\u0e02\u0e36\u0e49\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396414373,"id_str":"396414373","name":"\u0e40\u0e14\u0e47\u0e01\u0e0a\u0e32\u0e22\u0e04\u0e33\u0e04\u0e21","screen_name":"Dekchaikumkom","location":"IG : nnnestz","url":"http:\/\/facebook.com\/nes.sirawit","description":"#dek59 | \u0e15\u0e31\u0e49\u0e07\u0e43\u0e08\u0e40\u0e23\u0e35\u0e22\u0e19 | \u0e15\u0e32\u0e21\u0e2b\u0e32\u0e04\u0e27\u0e32\u0e21\u0e1d\u0e31\u0e19 | \u0e15\u0e32\u0e21\u0e21\u0e32\u0e1f\u0e2d\u0e25 @nnnestz","protected":false,"verified":false,"followers_count":85738,"friends_count":262,"listed_count":14,"favourites_count":6867,"statuses_count":7985,"created_at":"Sun Oct 23 07:20:50 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662945506973257729\/cHDPeamI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662945506973257729\/cHDPeamI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396414373\/1434121125","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3143,"favorite_count":489,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dekchaikumkom","name":"\u0e40\u0e14\u0e47\u0e01\u0e0a\u0e32\u0e22\u0e04\u0e33\u0e04\u0e21","id":396414373,"id_str":"396414373","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114661371904,"id_str":"663728114661371904","text":"\u305b\u3069\u308b\u300e\u3053\u308c\u8ab0\u306b\u9001\u3063\u305fLINE\uff1f\u300f\n\u308f\u305f\u3057\u300e\u5f7c\u6c0f\u300f\n\u305b\u3069\u308b\u300e\u306f\u3042\u3001\u30ea\u30a2\u5145\u6b7b\u306d\uff01\u53f3\u898b\u3066\u3082\u5de6\u898b\u3066\u3082\u30ea\u30a2\u5145\uff01\u6b7b\u306d\uff01\u6b7b\u306d\uff01\u300f\n\n\u308f\u305f\u3057\u300e(\u3053\u306e\u5b50\u30e4\u30d0\u3044)\u300f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1435076312,"id_str":"1435076312","name":"\u305d\u308b\u3068\u304f\u3093\u3002","screen_name":"4x63","location":null,"url":"http:\/\/hibari.nana-music.com\/w\/profile\/1193757\/","description":null,"protected":false,"verified":false,"followers_count":171,"friends_count":26,"listed_count":4,"favourites_count":9049,"statuses_count":3616,"created_at":"Fri May 17 08:26:53 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659958678104072192\/X4R50-He_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659958678104072192\/X4R50-He_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1435076312\/1446870292","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088664"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114631970816,"id_str":"663728114631970816","text":"RT @choinanna: \uc598 \uc65c \uc774\ub7ec\uace0 \uba39\uace0\uc788\ub294\uac70\uc594\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc559\uc99d\ub9de\uc544 \ubbf8\uce58\uaca0\ub13c\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u3131\u3132\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b http:\/\/t.co\/Nk7d8UICEa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3194327460,"id_str":"3194327460","name":"lolliipop","screen_name":"lolliipong","location":null,"url":null,"description":"\uadf8\ub9bc\ub044\uc801\uc774\ub294\uc560\/\uc640\uc6b0\uc800\/\uce04\ub7f4\uc131\uc560\uc790\/\uc6a9\uac1c\uc131\uc560\uc790\/\uc640\uc6b0\ud558\uace0\uc2f6\ub2e4...\/\ub4dc\ub808\ub098\uc774 \uc5ec\uce90\uc758 \uaf2c\ub9ac\ub294 \ucd5c\uace0 \ubaa8\uc5d0!!","protected":false,"verified":false,"followers_count":18,"friends_count":58,"listed_count":0,"favourites_count":68,"statuses_count":346,"created_at":"Wed May 13 14:03:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662990949946032128\/4NTtXKb9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662990949946032128\/4NTtXKb9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Jun 22 03:12:17 +0000 2015","id":612820373474643968,"id_str":"612820373474643968","text":"\uc598 \uc65c \uc774\ub7ec\uace0 \uba39\uace0\uc788\ub294\uac70\uc594\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc559\uc99d\ub9de\uc544 \ubbf8\uce58\uaca0\ub13c\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u3131\u3132\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b http:\/\/t.co\/Nk7d8UICEa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":473914378,"id_str":"473914378","name":"\ub09c\ub098\u273f","screen_name":"choinanna","location":"@your_syull \uc606","url":"http:\/\/ask.fm\/choinanna","description":"\uc790\ub9ac\uac00 \ubd80\uc871\ud574 \ud30c\ub294 \uc7a5\ub974\ub97c \uc801\uc9c0 \ubabb\ud55c\ub2e4","protected":false,"verified":false,"followers_count":1436,"friends_count":261,"listed_count":18,"favourites_count":1049,"statuses_count":124273,"created_at":"Wed Jan 25 13:20:00 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658268249289682945\/WC6P_8Fq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658268249289682945\/WC6P_8Fq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473914378\/1429419938","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8096,"favorite_count":3027,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":612820349260988416,"id_str":"612820349260988416","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","url":"http:\/\/t.co\/Nk7d8UICEa","display_url":"pic.twitter.com\/Nk7d8UICEa","expanded_url":"http:\/\/twitter.com\/choinanna\/status\/612820373474643968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":425,"h":244,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":425,"h":244,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":612820349260988416,"id_str":"612820349260988416","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","url":"http:\/\/t.co\/Nk7d8UICEa","display_url":"pic.twitter.com\/Nk7d8UICEa","expanded_url":"http:\/\/twitter.com\/choinanna\/status\/612820373474643968\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":425,"h":244,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":425,"h":244,"resize":"fit"}},"video_info":{"aspect_ratio":[213,122],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CIEs3FzVAAAO-aD.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"choinanna","name":"\ub09c\ub098\u273f","id":473914378,"id_str":"473914378","indices":[3,13]}],"symbols":[],"media":[{"id":612820349260988416,"id_str":"612820349260988416","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","url":"http:\/\/t.co\/Nk7d8UICEa","display_url":"pic.twitter.com\/Nk7d8UICEa","expanded_url":"http:\/\/twitter.com\/choinanna\/status\/612820373474643968\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":425,"h":244,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":425,"h":244,"resize":"fit"}},"source_status_id":612820373474643968,"source_status_id_str":"612820373474643968","source_user_id":473914378,"source_user_id_str":"473914378"}]},"extended_entities":{"media":[{"id":612820349260988416,"id_str":"612820349260988416","indices":[101,123],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CIEs3FzVAAAO-aD.png","url":"http:\/\/t.co\/Nk7d8UICEa","display_url":"pic.twitter.com\/Nk7d8UICEa","expanded_url":"http:\/\/twitter.com\/choinanna\/status\/612820373474643968\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":425,"h":244,"resize":"fit"},"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":425,"h":244,"resize":"fit"}},"source_status_id":612820373474643968,"source_status_id_str":"612820373474643968","source_user_id":473914378,"source_user_id_str":"473914378","video_info":{"aspect_ratio":[213,122],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CIEs3FzVAAAO-aD.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080088657"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114648748032,"id_str":"663728114648748032","text":"RT @rtfaveship: phil and melinda || agents of s.h.i.e.l.d. http:\/\/t.co\/wPcCsUrdjh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":735566731,"id_str":"735566731","name":"TerminatorWidow87","screen_name":"leah_steger","location":"Illinois, USA","url":null,"description":"single mother with two girls,TSCC Summer Glau is my idol, I love harry potter always for me Harry and Hermione #RomanogersArmy #Evansson","protected":false,"verified":false,"followers_count":610,"friends_count":2005,"listed_count":37,"favourites_count":25369,"statuses_count":38701,"created_at":"Fri Aug 03 21:24:42 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/794006497\/ecec90e54781bab4c13590f52b18b9c4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/794006497\/ecec90e54781bab4c13590f52b18b9c4.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630806543311618048\/SS31LL1X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630806543311618048\/SS31LL1X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/735566731\/1431850540","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Sep 26 14:34:09 +0000 2015","id":647781205514027009,"id_str":"647781205514027009","text":"phil and melinda || agents of s.h.i.e.l.d. http:\/\/t.co\/wPcCsUrdjh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319407749,"id_str":"3319407749","name":"rt your ship","screen_name":"rtfaveship","location":"requests closed at the time","url":null,"description":"your fav fictional ship and friendship","protected":false,"verified":false,"followers_count":14963,"friends_count":14874,"listed_count":20,"favourites_count":7613,"statuses_count":95,"created_at":"Thu Jun 11 18:39:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660541629116346368\/Di0PDqZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660541629116346368\/Di0PDqZH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319407749\/1446320194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":125,"favorite_count":84,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":647781194780798976,"id_str":"647781194780798976","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":318,"resize":"fit"},"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":318,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":647781194780798976,"id_str":"647781194780798976","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":318,"resize":"fit"},"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":318,"resize":"fit"}}},{"id":647781194768236544,"id_str":"647781194768236544","indices":[43,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIZWwAACrAJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIZWwAACrAJ.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":372,"resize":"fit"},"large":{"w":1024,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rtfaveship","name":"rt your ship","id":3319407749,"id_str":"3319407749","indices":[3,14]}],"symbols":[],"media":[{"id":647781194780798976,"id_str":"647781194780798976","indices":[59,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":318,"resize":"fit"},"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":318,"resize":"fit"}},"source_status_id":647781205514027009,"source_status_id_str":"647781205514027009","source_user_id":3319407749,"source_user_id_str":"3319407749"}]},"extended_entities":{"media":[{"id":647781194780798976,"id_str":"647781194780798976","indices":[59,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIcWcAACzUy.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":318,"resize":"fit"},"small":{"w":340,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":318,"resize":"fit"}},"source_status_id":647781205514027009,"source_status_id_str":"647781205514027009","source_user_id":3319407749,"source_user_id_str":"3319407749"},{"id":647781194768236544,"id_str":"647781194768236544","indices":[59,81],"media_url":"http:\/\/pbs.twimg.com\/media\/CP1hkIZWwAACrAJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CP1hkIZWwAACrAJ.jpg","url":"http:\/\/t.co\/wPcCsUrdjh","display_url":"pic.twitter.com\/wPcCsUrdjh","expanded_url":"http:\/\/twitter.com\/rtfaveship\/status\/647781205514027009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":372,"resize":"fit"},"large":{"w":1024,"h":635,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":647781205514027009,"source_status_id_str":"647781205514027009","source_user_id":3319407749,"source_user_id_str":"3319407749"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080088661"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114632163328,"id_str":"663728114632163328","text":"There's a cornucopia of tasty delights, shopping deals, hotel specials and fun events this Thanksgiving in #Orlando. https:\/\/t.co\/ZWVngTGMYP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19847843,"id_str":"19847843","name":"Visit Orlando","screen_name":"VisitOrlando","location":"Orlando, Florida","url":"http:\/\/www.VisitOrlando.com","description":"Official Visit Orlando Twitter. Your vacation planning source. Share your Orlando memories using #MyOrlandoStory. IG: @VisitOrlando","protected":false,"verified":true,"followers_count":92746,"friends_count":1284,"listed_count":1464,"favourites_count":13475,"statuses_count":12139,"created_at":"Sun Feb 01 05:22:38 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/473886801124270081\/0roNa5Lt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/473886801124270081\/0roNa5Lt.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/418788224471822336\/eLoTLlvV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/418788224471822336\/eLoTLlvV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19847843\/1440515376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Orlando","indices":[107,115]}],"urls":[{"url":"https:\/\/t.co\/ZWVngTGMYP","expanded_url":"http:\/\/www.visitorlando.com\/events\/holidays\/thanksgiving-in-orlando\/","display_url":"visitorlando.com\/events\/holiday\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088657"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114631966720,"id_str":"663728114631966720","text":"The realist \ud83d\udcafRT @AmandaTrim3: And the very thing that attracts them, is the reason they shouldn't be together.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1023344916,"id_str":"1023344916","name":"SITH LORD","screen_name":"_martinemmanuel","location":"San Diego","url":"http:\/\/mommasboyco.com","description":"| got the jooce like that |est. '93 |twenty.two.|","protected":false,"verified":false,"followers_count":228,"friends_count":199,"listed_count":5,"favourites_count":5143,"statuses_count":10173,"created_at":"Thu Dec 20 02:38:37 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653765815276208128\/Ad723GEW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653765815276208128\/Ad723GEW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1023344916\/1443895588","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AmandaTrim3","name":"Amanda Rhea","id":287915491,"id_str":"287915491","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088657"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669719552,"id_str":"663728114669719552","text":"@AEA_Laurie_G \ud478\ud5e4- \ubc29\uae08 \uc9c0\ud321\uc774\ub85c \ubb3c \ub370\uc6b0\ub824\uace0 \ud588\uc8e0-?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723828221095937,"in_reply_to_status_id_str":"663723828221095937","in_reply_to_user_id":4003502244,"in_reply_to_user_id_str":"4003502244","in_reply_to_screen_name":"AEA_Laurie_G","user":{"id":4003284379,"id_str":"4003284379","name":"\uccb4\uc154 \uc5d8\ub9ad","screen_name":"AEA_Alice_H","location":null,"url":"https:\/\/www.evernote.com\/shard\/s623\/sh\/0c768771-93dc-43fc-8738-29200bbf8e0b\/314d6cd79f77f37ba83cea09","description":"M \/ 5th \/ 165cm \/ half blood \/ Hufflepuff","protected":false,"verified":false,"followers_count":26,"friends_count":28,"listed_count":0,"favourites_count":131,"statuses_count":1952,"created_at":"Sat Oct 24 14:42:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCD12","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708465852878849\/rl3d9WQW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708465852878849\/rl3d9WQW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4003284379\/1445698061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AEA_Laurie_G","name":"L. \ub85c\uc6b0 \ub77c\uc774\ud2b8","id":4003502244,"id_str":"4003502244","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114661355520,"id_str":"663728114661355520","text":"\u4ffa\u306e\u884c\u304f\u672b\u5bc6\u304b\u306b\u6697\u793a\u3059\u308b\u4eba\u30cf\u30cb\u30fc\u306f1\u3092\u3002\u305d\u308c\u4ee5\u5916\u306e\u65b9\u306f2\u3092\u62bc\u3057\u3066\u4e0b\u3055\u3044\u3002 \u30d4\u30fc\u30fc\u30c3","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448871151,"id_str":"448871151","name":"\u96f2\u4e39\u4e80\u306f\u672c\u540d","screen_name":"U2game_bot","location":null,"url":null,"description":"\u5b89\u5168\u3067\u3059\u3002\n\n\u81ea\u52d5\u30ea\u30d7\u30e9\u30a4\u3067\u3059\u3002\n\n\u672c\u4f53 @U2game_Sawagi","protected":false,"verified":false,"followers_count":2644,"friends_count":2995,"listed_count":71,"favourites_count":0,"statuses_count":29130,"created_at":"Wed Dec 28 13:27:59 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719506041\/___normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719506041\/___normal.JPG","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088664"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114653003777,"id_str":"663728114653003777","text":"RT @yzsdqgq: \u5c65\u304f\u3060\u3051\u3067\u811a\u304c\u7d30\u304f\u306a\u3063\u3061\u3083\u3046\u266a\n\n\u90e8\u5206\u7684\u306b\u75e9\u305b\u308b\u306e\u3063\u3066\n\u306a\u304b\u306a\u304b\u96e3\u3057\u3044\u3088\u306d\uff1f\n\n\u30b3\u30ec\u306a\u3089\u5c65\u304d\u7d9a\u3051\u308b\u3060\u3051\u3067\n\u61a7\u308c\u306e\u7f8e\u811a\u304c\u81ea\u5206\u306e\u3082\u306e\u306b\u2728\n\n\u21d2https:\/\/t.co\/4EtgcMQRRs\n\n\u6bce\u65e5\u7740\u7528\u3057\u7d9a\u3051\u308c\u3070\n\u5168\u8eab\u3082\u5f15\u304d\u7de0\u3081\u3089\u308c\u308b\u3088\u2764 https:\/\/t\u2026","source":"\u003ca href=\"https:\/\/twitter.com\/API_only_acc\" rel=\"nofollow\"\u003e\u7f8e\u5bb9\u30fb\u51fa\u4f1a\u3044\u3010\u30b0\u30eb\u30fc\u30d71\u3011\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3855334877,"id_str":"3855334877","name":"\u767b\u5742\u5e83\u81e3\u2605pics","screen_name":"mstabuashvili1","location":null,"url":null,"description":"\u767b\u5742\u5e83\u81e3\u306e\u753b\u50cf\u96c6\u3067\u3059\u3002\u3088\u304b\u3063\u305f\u3089\u30ea\u30c4\u30a4\u30fc\u30c8\u3068\u304a\u6c17\u306b\u5165\u308a\u3088\u308d\u3057\u304f\u306d\u266a\u81e3\u304f\u3093\u30d5\u30a1\u30f3\u304b\u3089\u306e\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\uff01\uff01","protected":false,"verified":false,"followers_count":957,"friends_count":1699,"listed_count":0,"favourites_count":0,"statuses_count":77,"created_at":"Sat Oct 03 20:17:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651385750085210113\/o5_c7uEk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651385750085210113\/o5_c7uEk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728003885588480,"id_str":"663728003885588480","text":"\u5c65\u304f\u3060\u3051\u3067\u811a\u304c\u7d30\u304f\u306a\u3063\u3061\u3083\u3046\u266a\n\n\u90e8\u5206\u7684\u306b\u75e9\u305b\u308b\u306e\u3063\u3066\n\u306a\u304b\u306a\u304b\u96e3\u3057\u3044\u3088\u306d\uff1f\n\n\u30b3\u30ec\u306a\u3089\u5c65\u304d\u7d9a\u3051\u308b\u3060\u3051\u3067\n\u61a7\u308c\u306e\u7f8e\u811a\u304c\u81ea\u5206\u306e\u3082\u306e\u306b\u2728\n\n\u21d2https:\/\/t.co\/4EtgcMQRRs\n\n\u6bce\u65e5\u7740\u7528\u3057\u7d9a\u3051\u308c\u3070\n\u5168\u8eab\u3082\u5f15\u304d\u7de0\u3081\u3089\u308c\u308b\u3088\u2764 https:\/\/t.co\/LfkU8Hn93k","source":"\u003ca href=\"https:\/\/twitter.com\/API_only_acc\" rel=\"nofollow\"\u003e\u30ea\u30f3\u30af1\u3010\u7f8e\u5bb9\u30fb\u51fa\u4f1a\u3044\u3011\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3539093893,"id_str":"3539093893","name":"\u3042\u3044\u3010\u7f8e\u5bb9\u5c02\u7528\u3011","screen_name":"yzsdqgq","location":null,"url":null,"description":"\u7f8e\u5bb9\u3068\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u5927\u597d\u304d\uff01\u30e2\u30c7\u30eb\u3055\u3093\u76ee\u6307\u3057\u3066\u81ea\u5206\u6539\u9020\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u9032\u884c\u4e2d\u2764\u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u8efd\u306b\u2606","protected":false,"verified":false,"followers_count":767,"friends_count":1507,"listed_count":3,"favourites_count":0,"statuses_count":230,"created_at":"Sat Sep 12 15:02:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642715443841503236\/EfzPX4sv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642715443841503236\/EfzPX4sv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4EtgcMQRRs","expanded_url":"http:\/\/bit.ly\/1KnoNGC","display_url":"bit.ly\/1KnoNGC","indices":[69,92]}],"user_mentions":[],"symbols":[],"media":[{"id":663728003696889857,"id_str":"663728003696889857","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","url":"https:\/\/t.co\/LfkU8Hn93k","display_url":"pic.twitter.com\/LfkU8Hn93k","expanded_url":"http:\/\/twitter.com\/yzsdqgq\/status\/663728003885588480\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728003696889857,"id_str":"663728003696889857","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","url":"https:\/\/t.co\/LfkU8Hn93k","display_url":"pic.twitter.com\/LfkU8Hn93k","expanded_url":"http:\/\/twitter.com\/yzsdqgq\/status\/663728003885588480\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4EtgcMQRRs","expanded_url":"http:\/\/bit.ly\/1KnoNGC","display_url":"bit.ly\/1KnoNGC","indices":[82,105]}],"user_mentions":[{"screen_name":"yzsdqgq","name":"\u3042\u3044\u3010\u7f8e\u5bb9\u5c02\u7528\u3011","id":3539093893,"id_str":"3539093893","indices":[3,11]}],"symbols":[],"media":[{"id":663728003696889857,"id_str":"663728003696889857","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","url":"https:\/\/t.co\/LfkU8Hn93k","display_url":"pic.twitter.com\/LfkU8Hn93k","expanded_url":"http:\/\/twitter.com\/yzsdqgq\/status\/663728003885588480\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663728003885588480,"source_status_id_str":"663728003885588480","source_user_id":3539093893,"source_user_id_str":"3539093893"}]},"extended_entities":{"media":[{"id":663728003696889857,"id_str":"663728003696889857","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGk_VEAE2doV.jpg","url":"https:\/\/t.co\/LfkU8Hn93k","display_url":"pic.twitter.com\/LfkU8Hn93k","expanded_url":"http:\/\/twitter.com\/yzsdqgq\/status\/663728003885588480\/photo\/1","type":"photo","sizes":{"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":200,"h":200,"resize":"fit"},"small":{"w":200,"h":200,"resize":"fit"}},"source_status_id":663728003885588480,"source_status_id_str":"663728003885588480","source_user_id":3539093893,"source_user_id_str":"3539093893"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088662"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669715456,"id_str":"663728114669715456","text":"I hate being a good person, I always get fucked over. \ud83d\udc12\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1320029540,"id_str":"1320029540","name":"Liezel Gutierrez","screen_name":"liezelramos3","location":"San Francisco, CA","url":null,"description":"I am what I am. If you can\u2019t accept me, that\u2019s your problem.","protected":false,"verified":false,"followers_count":103,"friends_count":140,"listed_count":0,"favourites_count":178,"statuses_count":4425,"created_at":"Mon Apr 01 09:59:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/846949394\/1aff9ef3d01afdcf703ab2a2d3cba278.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/846949394\/1aff9ef3d01afdcf703ab2a2d3cba278.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662985552904323072\/HB-fFPWD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662985552904323072\/HB-fFPWD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1320029540\/1436710405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114636165120,"id_str":"663728114636165120","text":"\u666e\u6bb5\u304b\u3089\u5168\u7136\u52c9\u5f37\u305b\u305a\u306b\u904a\u3093\u3067\u3070\u3063\u304b\u308a\u306e\u304f\u305b\u3057\u3066\u3001\u3053\u3053\u304c\u308f\u304b\u3089\u306a\u3044\u3042\u305d\u3053\u304c\u308f\u304b\u3089\u306a\u3044\u8a00\u3063\u3066\u308b\u4eba\u306b\uff72\uff97\uff72\uff97\u3059\u308b\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307745204,"id_str":"3307745204","name":"\u30ed\u30ed\u30c3\u30c8","screen_name":"_C6H6_benzene_","location":"\u7406\u7cfb\u306e\u95c7\u306e\u6e26\u306e\u4e2d","url":null,"description":"\u9759\u304b\u306a\u3068\u3053\u308d\u304c\u597d\u304d\u3067\u3059 \u30a2\u30cb\u30e1\u898b\u305f\u308a\u30b2\u30fc\u30e0\u3057\u305f\u308a\u5199\u771f\u64ae\u3063\u305f\u308a","protected":false,"verified":false,"followers_count":33,"friends_count":49,"listed_count":0,"favourites_count":52,"statuses_count":403,"created_at":"Thu Aug 06 11:30:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659706632369082368\/0Fk4AXni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659706632369082368\/0Fk4AXni_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307745204\/1443884561","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088658"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669744129,"id_str":"663728114669744129","text":"RT @Hammer0fFacts: It's better to be slapped by the truth than kissed with a lie.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1484224790,"id_str":"1484224790","name":"~Fabulous~","screen_name":"aashwini_jeya","location":null,"url":null,"description":"You're my lucky charm","protected":false,"verified":false,"followers_count":158,"friends_count":212,"listed_count":1,"favourites_count":1483,"statuses_count":11430,"created_at":"Wed Jun 05 06:16:21 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167857892\/qI4uFQon.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167857892\/qI4uFQon.jpeg","profile_background_tile":true,"profile_link_color":"6D17A6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660872872248786944\/sDhqmO-h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660872872248786944\/sDhqmO-h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1484224790\/1443704946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727546928930816,"id_str":"663727546928930816","text":"It's better to be slapped by the truth than kissed with a lie.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":925389540,"id_str":"925389540","name":"My Dad Words","screen_name":"Hammer0fFacts","location":null,"url":null,"description":"One father is more than a hundred schoolmasters. Business #Contact HammerOfFacts@gmail.com","protected":false,"verified":false,"followers_count":365508,"friends_count":528,"listed_count":741,"favourites_count":33,"statuses_count":14835,"created_at":"Sun Nov 04 13:54:02 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/817883854\/24df7781f8767ae301fa16a26b24d3fa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/817883854\/24df7781f8767ae301fa16a26b24d3fa.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558844219612069888\/lv_QP6n5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558844219612069888\/lv_QP6n5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/925389540\/1422073819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hammer0fFacts","name":"My Dad Words","id":925389540,"id_str":"925389540","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114657169408,"id_str":"663728114657169408","text":"@3_yuka_2 \n\u306a\u3093\u3067\u305d\u3093\u306a\u3053\u3068\u3044\u3046\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727434580168705,"in_reply_to_status_id_str":"663727434580168705","in_reply_to_user_id":3155715470,"in_reply_to_user_id_str":"3155715470","in_reply_to_screen_name":"3_yuka_2","user":{"id":3737246953,"id_str":"3737246953","name":"\u6dbc\u592a","screen_name":"ryotadayo_47","location":"\u9577\u91ce\u770c \u9577\u91ce\u5e02\u3093\u306a\u308f\u3051\u95a2\u897f\u52e2\u3067\u3059","url":null,"description":"\u307b\u3089\uff1f\u541b\u3082\u3055\u308c\u305f\u3044\u3093\u3060\u308d\uff1f\u8a95\u751f\u65e5\u30c6\u30ed\u3002 \u53d7\u9a13\u751f\u3067\u3059\u3002\u305d\u3046\u3067\u3059\u3001\u53d7\u9a13\u751f\u3067\u3059\u3002\u95a2\u897f\u5f01\u3068\u6a19\u6e96\u8a9e\u306e\u4e8c\u5200\u6d41\u3002\u4f7f\u3044\u5206\u3051\u308b\u30bf\u30a4\u30df\u30f3\u30b0\u306f\u6c17\u5206\u3068\u795e\u306e\u304a\u544a\u3052\u3002\u79c1\u306e\u304b\u308f\u3044\u3044\u3057\u3082\u3079\u2192@3_yuka_2","protected":false,"verified":false,"followers_count":51,"friends_count":49,"listed_count":0,"favourites_count":385,"statuses_count":674,"created_at":"Wed Sep 30 13:25:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653875756339105792\/Wd-HmXgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653875756339105792\/Wd-HmXgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3737246953\/1443624556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3_yuka_2","name":"\u88d5\u9999","id":3155715470,"id_str":"3155715470","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088663"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669780992,"id_str":"663728114669780992","text":"Puro nood basketball wala la nasisimulan haha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258696481,"id_str":"3258696481","name":"Joshua Abrogar","screen_name":"JaAbrogar","location":"CIA Pasig","url":null,"description":"\u2022GOD'S LOVE NEVER FAILS\u2022 | Colossians 3:23|","protected":false,"verified":false,"followers_count":155,"friends_count":177,"listed_count":0,"favourites_count":853,"statuses_count":1961,"created_at":"Sun Jun 28 08:01:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654268086531428352\/w7jw75CU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654268086531428352\/w7jw75CU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258696481\/1444911084","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114652975104,"id_str":"663728114652975104","text":"RT @BBYOPX3: RT\uc774\ubca4\ud2b8)\n\ube7c\ube7c\ub85c\ub370\uc774 \uae30\ub150\uc73c\ub85c rt\ud574\uc8fc\uc2e0\ubd84\ub4e4 \uc911 3\ubd84\uc744 \ubf51\uc544 \uc544\ubaac\ub4dc,\ucd08\ucf54,\ud654\uc774\ud2b8\ucfe0\ud0a4 \ube7c\ube7c\ub85c \uae30\ud504\ud2f0\ucf58\uc744 \uc3f4\ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.\n\ud2b8\uce5c\ud55c\uc815X https:\/\/t.co\/WEiqvTpE2p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2905982288,"id_str":"2905982288","name":"\uc774\uc13c ( ~12\/3 )","screen_name":"n1_yell","location":"\uc288\ud06c\ub808\ub3cc\uc988 \ub538\uae30\ud0c0\ub974\ud2b8\uc704","url":null,"description":"\uc0ac\ud37c \uac19\uc774\ud558\uc2e4\ubd84 (\uc0ac\ud37c\ub2c9 )'\ub370\uc74c'\uc73c\ub85c \uc6b0\ud3b8\uc774\ub098 \uadd3\uc8fc\uc138\uc694 !! \/ \n\uc2dc\uc4f0\uace0 \uae00\uc4f0\ub294\uacc4 \ubb3c\uc5b4\ubcf4\uc2dc\uba74 \uac00\ub974\uccd0\ub4dc\ub824\uc694\/\n\ub028\/\n\uc774\uc13c ~ \ub370\uc74c ~ \ubd80\ub974\uace0\uc2f6\uc740\ub370\ub85c\ud574\uc8fc\uc138\uc694 \uc57c\uc784\ub9c8\ub77c\ub358\uac00 (?)\/ \uc0ac\ud37c\uc2a4\uce8e\ub7ec\uc608\uc6a7 kimis0225 \uc2ec\uc2ec\ud558\uba74 \uac19\uc774\uc2a4\uce8e\ud558\uc790\uace0 \ud574\uc8fc\uc138\uc694 :)","protected":false,"verified":false,"followers_count":67,"friends_count":95,"listed_count":0,"favourites_count":508,"statuses_count":12200,"created_at":"Fri Nov 21 10:57:45 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646309530268143617\/0cB_MWPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646309530268143617\/0cB_MWPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2905982288\/1445886002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 14:38:04 +0000 2015","id":663002481052422148,"id_str":"663002481052422148","text":"RT\uc774\ubca4\ud2b8)\n\ube7c\ube7c\ub85c\ub370\uc774 \uae30\ub150\uc73c\ub85c rt\ud574\uc8fc\uc2e0\ubd84\ub4e4 \uc911 3\ubd84\uc744 \ubf51\uc544 \uc544\ubaac\ub4dc,\ucd08\ucf54,\ud654\uc774\ud2b8\ucfe0\ud0a4 \ube7c\ube7c\ub85c \uae30\ud504\ud2f0\ucf58\uc744 \uc3f4\ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.\n\ud2b8\uce5c\ud55c\uc815X https:\/\/t.co\/WEiqvTpE2p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2637463075,"id_str":"2637463075","name":"\ubfca[ BBYOP \/ \u30d4\u30e7\u30d7 ]","screen_name":"BBYOPX3","location":"\ub77c\uc774\uc0cc\ub354 \ub7ec\ud50c \uc548","url":null,"description":"\uc0ac\ud37c\ubcf8\uc9c4 \uc7a1\ub355\/\ucf54\uc2a4\ud504\ub808\/\uc77c\uc0c1\ud2b8\uc717 \u591a\/\n\ud314\ub85c\uc790\uc720\/\uc5f0\uae30\ud558\ub294\ub354\ucfe0","protected":false,"verified":false,"followers_count":135,"friends_count":98,"listed_count":1,"favourites_count":266,"statuses_count":2124,"created_at":"Sun Jul 13 15:36:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663724764578492416\/nTeAzfn__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663724764578492416\/nTeAzfn__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2637463075\/1446550279","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":824,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663002450815614976,"id_str":"663002450815614976","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663002450815614976,"id_str":"663002450815614976","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663002460991041537,"id_str":"663002460991041537","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1ObyUsAEtKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1ObyUsAEtKY3.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663002470117801986,"id_str":"663002470117801986","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1O9yUAAIp4A6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1O9yUAAIp4A6.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BBYOPX3","name":"\ubfca[ BBYOP \/ \u30d4\u30e7\u30d7 ]","id":2637463075,"id_str":"2637463075","indices":[3,11]}],"symbols":[],"media":[{"id":663002450815614976,"id_str":"663002450815614976","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663002481052422148,"source_status_id_str":"663002481052422148","source_user_id":2637463075,"source_user_id_str":"2637463075"}]},"extended_entities":{"media":[{"id":663002450815614976,"id_str":"663002450815614976","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1N14UAAAVZRq.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663002481052422148,"source_status_id_str":"663002481052422148","source_user_id":2637463075,"source_user_id_str":"2637463075"},{"id":663002460991041537,"id_str":"663002460991041537","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1ObyUsAEtKY3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1ObyUsAEtKY3.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663002481052422148,"source_status_id_str":"663002481052422148","source_user_id":2637463075,"source_user_id_str":"2637463075"},{"id":663002470117801986,"id_str":"663002470117801986","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN1O9yUAAIp4A6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN1O9yUAAIp4A6.jpg","url":"https:\/\/t.co\/WEiqvTpE2p","display_url":"pic.twitter.com\/WEiqvTpE2p","expanded_url":"http:\/\/twitter.com\/BBYOPX3\/status\/663002481052422148\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663002481052422148,"source_status_id_str":"663002481052422148","source_user_id":2637463075,"source_user_id_str":"2637463075"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ko","timestamp_ms":"1447080088662"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114652987392,"id_str":"663728114652987392","text":"\uc2a4\uce74\uc774\ud790 \uae30\ubc18 \ucee4\ubba4\ub3c4 \uc5f4\uba74 \uc7bc\uc2ac\ub4ef...\uc6c5\u3147","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4125575414,"id_str":"4125575414","name":"\uc9c0\uc2a4\ud0c0\uac00\ub294 \uc4f0\ub18d","screen_name":"Snong_o","location":null,"url":null,"description":"\uc804\uacc4\uc815 @Snong_u \uc2e0\ub098\ub294 \uc7a1\ub355","protected":false,"verified":false,"followers_count":50,"friends_count":81,"listed_count":0,"favourites_count":54,"statuses_count":408,"created_at":"Wed Nov 04 16:11:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661939168788938753\/xQi_qAE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661939168788938753\/xQi_qAE7_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080088662"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669887488,"id_str":"663728114669887488","text":"Buenas tardes Londres","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120889339,"id_str":"120889339","name":"Mateo","screen_name":"Shady_Matthew","location":"Detroit ","url":"http:\/\/nolosepegar.gov.co","description":"No me agradan los hippies","protected":false,"verified":false,"followers_count":869,"friends_count":619,"listed_count":7,"favourites_count":12904,"statuses_count":40489,"created_at":"Sun Mar 07 22:11:11 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF5FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502284236091445248\/Fw2RiZWq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502284236091445248\/Fw2RiZWq.png","profile_background_tile":true,"profile_link_color":"091552","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655458892609114112\/VU2_I854_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655458892609114112\/VU2_I854_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120889339\/1440339104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669719553,"id_str":"663728114669719553","text":"\u3086\u308b\u30ad\u30e3\u30e9\u30af\u30ed\u30ed\u30d9\u30f3\u30bc\u30f3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":99660954,"id_str":"99660954","name":"\u82b3\u5ca1\u96c4\u6a39(\u5ddd\u5d0e\u30d2\u30ca)@11\/29\u6c60\u888b","screen_name":"Kawasaki_Hina","location":"\u6a2a\u9808\u8cc0\u93ae\u5b88\u5e9c","url":"http:\/\/nico.ms\/sm26179690","description":"\u96f6\u96db\u30e9\u30dc\u30e9\u30c8\u30ea\u30fc\uff08\u6771\u65b9\u30dc\u30fc\u30ab\u30eb\uff09\u306e\u6b4c\u4ee5\u5916\u5168\u90e8\u62c5\u5f53\u3001Pills,the Candy Girl\u306eVo\u3068Gt\u62c5\u5f53\u3001\u65b0\u7530\u7f8e\u6ce2\u62c5\u5f53","protected":false,"verified":false,"followers_count":1648,"friends_count":570,"listed_count":28,"favourites_count":7108,"statuses_count":83173,"created_at":"Sun Dec 27 07:09:06 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/690310088\/5280fd385515ba9cb697573a148623df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/690310088\/5280fd385515ba9cb697573a148623df.jpeg","profile_background_tile":true,"profile_link_color":"3FA82F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663697474427555840\/muJ9S5ej_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663697474427555840\/muJ9S5ej_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/99660954\/1439402138","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114657136640,"id_str":"663728114657136640","text":"@MzkPink25 \n\u3042\u308a\u304c\u3068\u3046\u3002\u304c\u3093\u3070\u308b\u3055\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663706640214941696,"in_reply_to_status_id_str":"663706640214941696","in_reply_to_user_id":2942968933,"in_reply_to_user_id_str":"2942968933","in_reply_to_screen_name":"MzkPink25","user":{"id":2184502531,"id_str":"2184502531","name":"Tamami.","screen_name":"t9kyan","location":null,"url":"http:\/\/Instagram.com\/kyaaaan9\/","description":"Hamamatsu \u21c4 Toyohashi","protected":false,"verified":false,"followers_count":352,"friends_count":318,"listed_count":0,"favourites_count":1783,"statuses_count":2178,"created_at":"Sat Nov 09 15:08:01 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D60895","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653401570667696128\/pp9qbzQu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653401570667696128\/pp9qbzQu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2184502531\/1440936415","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MzkPink25","name":"\u767e \u82b1","id":2942968933,"id_str":"2942968933","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088663"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114661523457,"id_str":"663728114661523457","text":"@stauken Yeah. I've heard that as well. Nice. Black Ops PC at least had 1fps ;)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727910663000064,"in_reply_to_status_id_str":"663727910663000064","in_reply_to_user_id":22208919,"in_reply_to_user_id_str":"22208919","in_reply_to_screen_name":"stauken","user":{"id":16156052,"id_str":"16156052","name":"Oscaron","screen_name":"oscaron","location":"Galactic Sector ZZ9 Plural Z A","url":"http:\/\/goo.gl\/skGJRQ","description":"Tech Alchemist, Infosec Enthusiast. Retweet mean nothing. The new Likes are crap. My views = My views. Trigger warnings: ALL OF THEM. All stories exaggerated.","protected":false,"verified":false,"followers_count":601,"friends_count":384,"listed_count":92,"favourites_count":7315,"statuses_count":20449,"created_at":"Sat Sep 06 12:36:08 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"5E2F00","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661580663045296129\/m8Q8xoZ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661580663045296129\/m8Q8xoZ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16156052\/1404228988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"stauken","name":"Will S","id":22208919,"id_str":"22208919","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088664"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114665586688,"id_str":"663728114665586688","text":"@haaaaaa324 \u3088\u3046\u307a\u306e\u5fa9\u6d3b\u3092\u9858\u3063\u3066\uff01\u4eca\u9031\u306e\u697d\u3057\u307f\u4e00\u3064\u6e1b\u3063\u305f\u306a\u301c\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721840171347968,"in_reply_to_status_id_str":"663721840171347968","in_reply_to_user_id":513307001,"in_reply_to_user_id_str":"513307001","in_reply_to_screen_name":"haaaaaa324","user":{"id":236344457,"id_str":"236344457","name":"\u304d\u3080 \u308a\u3087\u3078","screen_name":"ryo0512hei","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":502,"friends_count":548,"listed_count":5,"favourites_count":3938,"statuses_count":9434,"created_at":"Mon Jan 10 11:10:01 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645239015419973632\/OEXq8kzP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645239015419973632\/OEXq8kzP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236344457\/1442981550","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haaaaaa324","name":"\u306f\u308b\u304b","id":513307001,"id_str":"513307001","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088665"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669867008,"id_str":"663728114669867008","text":"RT @sebakatz: - Scioli, cu\u00e1ntos pobres hay en la Argentina ?\n\n- Vamos a cambiar lo que haga falta para terminar con el tr\u00e1fico de ojotas en\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243673788,"id_str":"243673788","name":"Agu","screen_name":"Agustin7L","location":null,"url":null,"description":"19. Don't let your dreams be dreams. Enfermo de Independiente. Due\u00f1o de Avellaneda +23.","protected":false,"verified":false,"followers_count":226,"friends_count":289,"listed_count":0,"favourites_count":3339,"statuses_count":8025,"created_at":"Thu Jan 27 15:31:18 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FF2600","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642122155644354560\/ZDgzCvxl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642122155644354560\/ZDgzCvxl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243673788\/1443890157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:12 +0000 2015","id":663727041750110212,"id_str":"663727041750110212","text":"- Scioli, cu\u00e1ntos pobres hay en la Argentina ?\n\n- Vamos a cambiar lo que haga falta para terminar con el tr\u00e1fico de ojotas en Indonesia.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151252784,"id_str":"151252784","name":"Sebasti\u00e1n Katz","screen_name":"sebakatz","location":"Buenos Aires, Argentina","url":null,"description":"....constituir la uni\u00f3n nacional, afianzar la justicia, consolidar la paz interior, promover el bienestar general, y asegurar los beneficios de la libertad.....","protected":false,"verified":false,"followers_count":33699,"friends_count":19254,"listed_count":126,"favourites_count":38130,"statuses_count":38140,"created_at":"Thu Jun 03 00:15:43 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1832487358\/sheldon-cooper-apesta_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1832487358\/sheldon-cooper-apesta_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151252784\/1397699136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sebakatz","name":"Sebasti\u00e1n Katz","id":151252784,"id_str":"151252784","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114644586496,"id_str":"663728114644586496","text":"#on yuk main didm sama aku? dijamin hot. Autofollback ya. from: @skugzy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727688226476032,"in_reply_to_status_id_str":"663727688226476032","in_reply_to_user_id":3617776526,"in_reply_to_user_id_str":"3617776526","in_reply_to_screen_name":"skugzy","user":{"id":3236524352,"id_str":"3236524352","name":"NAAAAAAAAAAAAAEUN.","screen_name":"sonnaeunk","location":"hoummie. airxshi. ffu","url":null,"description":"APINK. ##","protected":false,"verified":false,"followers_count":169,"friends_count":219,"listed_count":0,"favourites_count":1433,"statuses_count":3201,"created_at":"Fri Jun 05 01:38:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660437188656496640\/G0pd_Xw__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660437188656496640\/G0pd_Xw__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236524352\/1446892010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"on","indices":[0,3]}],"urls":[],"user_mentions":[{"screen_name":"skugzy","name":"\u3164 \u3164","id":3617776526,"id_str":"3617776526","indices":[64,71]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080088660"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114669719554,"id_str":"663728114669719554","text":"@orashige0915 \u308a\u3085\u30fc\u305b\u3044\u304f\u3093\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\ud83d\ude0a\n\u30c0\u30f3\u30b9\u304c\u3093\u3070\u308a\u307e\u3057\u3087\uff01\n\u3053\u3093\u306a\u306b\u3046\u308c\u3057\u3044\u3055\u3055\u3084\u304b\u306a\u6c17\u6301\u3061\u306f\u306a\u3044\u3067\u3059\ud83d\udc4d\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727718593204225,"in_reply_to_status_id_str":"663727718593204225","in_reply_to_user_id":2373417847,"in_reply_to_user_id_str":"2373417847","in_reply_to_screen_name":"orashige0915","user":{"id":3012133688,"id_str":"3012133688","name":"Miku#Hennessy","screen_name":"smile11miku5","location":null,"url":null,"description":"\u843d\u5408\u5b9f\u7d05\/1998,1109 \u67514\u2192\u6771\u5927\u548c44th Dancer\u3010Hennessy,WATARUfam,PAPARAZZI\u3011 @hennessy_symyk","protected":false,"verified":false,"followers_count":530,"friends_count":522,"listed_count":0,"favourites_count":610,"statuses_count":878,"created_at":"Sat Feb 07 08:52:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638385671061704704\/JdSuBZOJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638385671061704704\/JdSuBZOJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012133688\/1443626567","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"orashige0915","name":"RYU-SEI","id":2373417847,"id_str":"2373417847","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088666"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114644709376,"id_str":"663728114644709376","text":"@JamalW92 @brunettebomb32 @ibnsabeel this is highly ironic. Does your loyalties lie with the ummah?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722384227246080,"in_reply_to_status_id_str":"663722384227246080","in_reply_to_user_id":3911584006,"in_reply_to_user_id_str":"3911584006","in_reply_to_screen_name":"JamalW92","user":{"id":1705650192,"id_str":"1705650192","name":"Lee","screen_name":"leeco197","location":null,"url":null,"description":"Blah blah blah.... etc etc","protected":false,"verified":false,"followers_count":1164,"friends_count":1041,"listed_count":14,"favourites_count":53646,"statuses_count":77503,"created_at":"Tue Aug 27 21:46:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659803247431933952\/uS0c6mX4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659803247431933952\/uS0c6mX4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1705650192\/1446897792","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JamalW92","name":"KhalidJamal","id":3911584006,"id_str":"3911584006","indices":[0,9]},{"screen_name":"brunettebomb32","name":"\u2764 brunette bomb \u2764","id":2376076501,"id_str":"2376076501","indices":[10,25]},{"screen_name":"ibnsabeel","name":"Sabr","id":561869975,"id_str":"561869975","indices":[26,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088660"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114657198080,"id_str":"663728114657198080","text":"El reporte Ciel\u00edstico desde Colombia. \u00a1Ustedes dir\u00e1n!\n\n https:\/\/t.co\/5Ukl6BUkoB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4163158152,"id_str":"4163158152","name":"Mec\u00e1nica de Cielos","screen_name":"Mecdecielos","location":"Cuajimalpa de Morelos","url":null,"description":"Entre un cielo al alcance de la mano, por el que mudo voy, con escondido y lento andar de savia por el tallo, sin mi sombra siquiera para hablarme...","protected":false,"verified":false,"followers_count":20,"friends_count":64,"listed_count":0,"favourites_count":1,"statuses_count":51,"created_at":"Sun Nov 08 01:54:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663174993048551424\/aIr3h2gg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663174993048551424\/aIr3h2gg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4163158152\/1446949018","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663327579575840768,"quoted_status_id_str":"663327579575840768","quoted_status":{"created_at":"Sun Nov 08 12:09:53 +0000 2015","id":663327579575840768,"id_str":"663327579575840768","text":"@paramunos #ColombiaAnfibia #GanomisUSB #Frailejones guardianes del agua del #Neusa en #P\u00e1ramodeGuerrero #Cogua https:\/\/t.co\/7iL8BH2mkI","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1433813814,"in_reply_to_user_id_str":"1433813814","in_reply_to_screen_name":"paramunos","user":{"id":321865893,"id_str":"321865893","name":"SANDRO WALDEMAR SUSA","screen_name":"SANDROWALDEMARS","location":"Cogua","url":null,"description":"Un Colombiano, Coguano de coraz\u00f3n, apasionado por los paramos, las monta\u00f1as y los r\u00edos; con ganas de un pais mejor.","protected":false,"verified":false,"followers_count":38,"friends_count":102,"listed_count":0,"favourites_count":20,"statuses_count":264,"created_at":"Wed Jun 22 07:57:07 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580883268951793665\/ItVVUnGh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580883268951793665\/ItVVUnGh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321865893\/1427328341","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ColombiaAnfibia","indices":[11,27]},{"text":"GanomisUSB","indices":[28,39]},{"text":"Frailejones","indices":[40,52]},{"text":"Neusa","indices":[77,83]},{"text":"P\u00e1ramodeGuerrero","indices":[87,104]},{"text":"Cogua","indices":[105,111]}],"urls":[],"user_mentions":[{"screen_name":"paramunos","name":"P\u00e1ramos y Humedales","id":1433813814,"id_str":"1433813814","indices":[0,10]}],"symbols":[],"media":[{"id":663327577554063360,"id_str":"663327577554063360","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSc6tXUkAAOOm1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSc6tXUkAAOOm1.jpg","url":"https:\/\/t.co\/7iL8BH2mkI","display_url":"pic.twitter.com\/7iL8BH2mkI","expanded_url":"http:\/\/twitter.com\/SANDROWALDEMARS\/status\/663327579575840768\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663327577554063360,"id_str":"663327577554063360","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSc6tXUkAAOOm1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSc6tXUkAAOOm1.jpg","url":"https:\/\/t.co\/7iL8BH2mkI","display_url":"pic.twitter.com\/7iL8BH2mkI","expanded_url":"http:\/\/twitter.com\/SANDROWALDEMARS\/status\/663327579575840768\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5Ukl6BUkoB","expanded_url":"https:\/\/twitter.com\/sandrowaldemars\/status\/663327579575840768","display_url":"twitter.com\/sandrowaldemar\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080088663"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114657271808,"id_str":"663728114657271808","text":"@TerbiyesizHerif @drsinanerdil bu y\u0131l k\u00fcmede kalmaya oynayaca\u011f\u0131z, taraftarlar\u0131m\u0131z \u00e7ok \u015fey beklemesin bizden ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663681200561762305,"in_reply_to_status_id_str":"663681200561762305","in_reply_to_user_id":574068411,"in_reply_to_user_id_str":"574068411","in_reply_to_screen_name":"TerbiyesizHerif","user":{"id":1478579731,"id_str":"1478579731","name":"\u00dcmit Kemal","screen_name":"umkeak","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":139,"friends_count":485,"listed_count":0,"favourites_count":544,"statuses_count":3610,"created_at":"Mon Jun 03 00:58:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653595287680872448\/N-VGToii_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653595287680872448\/N-VGToii_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1478579731\/1387466690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TerbiyesizHerif","name":"TerbiyesizHerif","id":574068411,"id_str":"574068411","indices":[0,16]},{"screen_name":"drsinanerdil","name":"Dr. Sinan Erdil","id":2732579049,"id_str":"2732579049","indices":[17,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080088663"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114640420865,"id_str":"663728114640420865","text":"@MikeFerrinSXM But new GM sometimes changes things, I think they are best fit, just interested what they do with cheap good player they have","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727844481089536,"in_reply_to_status_id_str":"663727844481089536","in_reply_to_user_id":29219500,"in_reply_to_user_id_str":"29219500","in_reply_to_screen_name":"MikeFerrinSXM","user":{"id":882495416,"id_str":"882495416","name":"Matt Winkelman","screen_name":"Matt_Winkelman","location":"Madison, WI","url":"http:\/\/philliesminorthoughts.com","description":"Phillies prospect writer and owner of @PHIMinorThought, I talk a lot about baseball and players who might not make the majors, supporter of good beer","protected":false,"verified":false,"followers_count":2830,"friends_count":948,"listed_count":105,"favourites_count":447,"statuses_count":55819,"created_at":"Mon Oct 15 15:04:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438389699585912832\/ureQoJ4f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438389699585912832\/ureQoJ4f.jpeg","profile_background_tile":true,"profile_link_color":"000082","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657355770242043904\/d5FeOXxQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657355770242043904\/d5FeOXxQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882495416\/1437878091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MikeFerrinSXM","name":"Mike Ferrin","id":29219500,"id_str":"29219500","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088659"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114648932352,"id_str":"663728114648932352","text":"@PkCanadianGuy otpzando https:\/\/t.co\/MFsUl25AEX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727471972470786,"in_reply_to_status_id_str":"663727471972470786","in_reply_to_user_id":1591603314,"in_reply_to_user_id_str":"1591603314","in_reply_to_screen_name":"PkCanadianGuy","user":{"id":2999813382,"id_str":"2999813382","name":"ana pdb1m","screen_name":"worldzord","location":"mack ","url":"http:\/\/youtube.com\/zordtv","description":null,"protected":false,"verified":false,"followers_count":1610,"friends_count":447,"listed_count":2,"favourites_count":21779,"statuses_count":57809,"created_at":"Wed Jan 28 21:31:04 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663495469335752704\/SaR5ObUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663495469335752704\/SaR5ObUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2999813382\/1446939877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"894146230dd1d42d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/894146230dd1d42d.json","place_type":"city","name":"Porto Alegre","full_name":"Porto Alegre, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-51.306148,-30.268807],[-51.306148,-29.930636],[-51.012471,-29.930636],[-51.012471,-30.268807]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PkCanadianGuy","name":"Matheus Neves","id":1591603314,"id_str":"1591603314","indices":[0,14]}],"symbols":[],"media":[{"id":663728107304722432,"id_str":"663728107304722432","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMm9XIAARHNr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMm9XIAARHNr.jpg","url":"https:\/\/t.co\/MFsUl25AEX","display_url":"pic.twitter.com\/MFsUl25AEX","expanded_url":"http:\/\/twitter.com\/worldzord\/status\/663728114648932352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":641,"resize":"fit"},"large":{"w":340,"h":641,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728107304722432,"id_str":"663728107304722432","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMm9XIAARHNr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMm9XIAARHNr.jpg","url":"https:\/\/t.co\/MFsUl25AEX","display_url":"pic.twitter.com\/MFsUl25AEX","expanded_url":"http:\/\/twitter.com\/worldzord\/status\/663728114648932352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":641,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":641,"resize":"fit"},"large":{"w":340,"h":641,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080088661"} +{"delete":{"status":{"id":663728076895879169,"id_str":"663728076895879169","user_id":1076252552,"user_id_str":"1076252552"},"timestamp_ms":"1447080088893"}} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114665725953,"id_str":"663728114665725953","text":"Super normal kkkk https:\/\/t.co\/KaEFaGTrtj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724439138,"id_str":"2724439138","name":"Kahh J\u00e1come","screen_name":"karol23jacome","location":"Brasil - MG","url":null,"description":"Cameron Dallas followed me 9\/21 \/ Snap - karoliny_jacome \/ Insta - kahhjacome","protected":false,"verified":false,"followers_count":642,"friends_count":84,"listed_count":0,"favourites_count":1093,"statuses_count":1771,"created_at":"Fri Jul 25 19:22:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661634933971148800\/EtwqutR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661634933971148800\/EtwqutR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2724439138\/1444094963","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"577ce1bbbd86a7a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/577ce1bbbd86a7a8.json","place_type":"city","name":"Caet\u00e9","full_name":"Caet\u00e9, Minas Gerais","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.749115,-20.077657],[-43.749115,-19.695245],[-43.518889,-19.695245],[-43.518889,-20.077657]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728105111035908,"id_str":"663728105111035908","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMeyWIAQO1bw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMeyWIAQO1bw.jpg","url":"https:\/\/t.co\/KaEFaGTrtj","display_url":"pic.twitter.com\/KaEFaGTrtj","expanded_url":"http:\/\/twitter.com\/karol23jacome\/status\/663728114665725953\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728105111035908,"id_str":"663728105111035908","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMeyWIAQO1bw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMeyWIAQO1bw.jpg","url":"https:\/\/t.co\/KaEFaGTrtj","display_url":"pic.twitter.com\/KaEFaGTrtj","expanded_url":"http:\/\/twitter.com\/karol23jacome\/status\/663728114665725953\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663728105182388225,"id_str":"663728105182388225","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMfDW4AEZtju.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMfDW4AEZtju.jpg","url":"https:\/\/t.co\/KaEFaGTrtj","display_url":"pic.twitter.com\/KaEFaGTrtj","expanded_url":"http:\/\/twitter.com\/karol23jacome\/status\/663728114665725953\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080088665"} +{"delete":{"status":{"id":663726856353378304,"id_str":"663726856353378304","user_id":2878325917,"user_id_str":"2878325917"},"timestamp_ms":"1447080088958"}} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114632028160,"id_str":"663728114632028160","text":"\u30a8\u30c9\u30ca https:\/\/t.co\/jcIHM2N9Mn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2191886017,"id_str":"2191886017","name":"\u51db\u5b50","screen_name":"arin_co_mzmz","location":"\u771f\u3093\u4e2d\u3089\u3078\u3093","url":null,"description":"\u30a2\u30cb\u30e1\u3068\u6f2b\u753b\u3068\u30b2\u30fc\u30e0\u304c\u3042\u308c\u3070\u751f\u304d\u3066\u3044\u3051\u308b\u3002TALES\/Fate\/AOT\/HQ \u6210\u4eba\u6e08\u3002\u88cf\u57a2\u2192@rin_co_zero","protected":false,"verified":false,"followers_count":404,"friends_count":464,"listed_count":19,"favourites_count":13710,"statuses_count":16100,"created_at":"Wed Nov 13 08:06:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661209407213056001\/CCy0w7x3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661209407213056001\/CCy0w7x3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2191886017\/1438862689","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728096852361216,"id_str":"663728096852361216","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMABUwAAqhGX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMABUwAAqhGX.jpg","url":"https:\/\/t.co\/jcIHM2N9Mn","display_url":"pic.twitter.com\/jcIHM2N9Mn","expanded_url":"http:\/\/twitter.com\/arin_co_mzmz\/status\/663728114632028160\/photo\/1","type":"photo","sizes":{"large":{"w":785,"h":1024,"resize":"fit"},"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728096852361216,"id_str":"663728096852361216","indices":[4,27],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMABUwAAqhGX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMABUwAAqhGX.jpg","url":"https:\/\/t.co\/jcIHM2N9Mn","display_url":"pic.twitter.com\/jcIHM2N9Mn","expanded_url":"http:\/\/twitter.com\/arin_co_mzmz\/status\/663728114632028160\/photo\/1","type":"photo","sizes":{"large":{"w":785,"h":1024,"resize":"fit"},"small":{"w":340,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":781,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080088657"} +{"delete":{"status":{"id":598084492998287360,"id_str":"598084492998287360","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080089053"}} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114665701376,"id_str":"663728114665701376","text":"@najwakaram \u0646\u062c\u0648\u0649 \u0627\u0644\u0628\u0633\u064a \u0647\u0630\u0627 \u0641\u064a \u0627\u0643\u062b\u0631 \u0644\u0648\u0646\u064a\u0646 \u0627\u062d\u0628\u0647\u0645 \u064a\u062c\u0646\u0646 \ud83d\udd2b\ud83d\ude29\ud83d\udc99 https:\/\/t.co\/JDYncjlJol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":462004145,"in_reply_to_user_id_str":"462004145","in_reply_to_screen_name":"najwakaram","user":{"id":3013490084,"id_str":"3013490084","name":"Asmaa\u264a\ufe0f45","screen_name":"aso0oumi_Q8","location":"kuwait \u2661","url":null,"description":"@najwakaram | http:\/\/najwakaram.com \u2764\ufe0f Anyone can make you smile or cry. But it takes someone special to make you smile with tears in your eyes.","protected":false,"verified":false,"followers_count":1486,"friends_count":288,"listed_count":5,"favourites_count":10568,"statuses_count":30364,"created_at":"Sun Feb 08 14:09:40 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637350514565365760\/owpL4waS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637350514565365760\/owpL4waS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3013490084\/1446668852","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"najwakaram","name":"Najwa Karam","id":462004145,"id_str":"462004145","indices":[0,11]}],"symbols":[],"media":[{"id":663728099926761472,"id_str":"663728099926761472","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMLeUYAAzq2c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMLeUYAAzq2c.jpg","url":"https:\/\/t.co\/JDYncjlJol","display_url":"pic.twitter.com\/JDYncjlJol","expanded_url":"http:\/\/twitter.com\/aso0oumi_Q8\/status\/663728114665701376\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":446,"resize":"fit"},"large":{"w":498,"h":655,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728099926761472,"id_str":"663728099926761472","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMLeUYAAzq2c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMLeUYAAzq2c.jpg","url":"https:\/\/t.co\/JDYncjlJol","display_url":"pic.twitter.com\/JDYncjlJol","expanded_url":"http:\/\/twitter.com\/aso0oumi_Q8\/status\/663728114665701376\/photo\/1","type":"photo","sizes":{"medium":{"w":498,"h":655,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":446,"resize":"fit"},"large":{"w":498,"h":655,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080088665"} +{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728114636349440,"id_str":"663728114636349440","text":"JFK strolling with Caroline Kennedy, 1962 https:\/\/t.co\/aMpZiVPdO1","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3591855677,"id_str":"3591855677","name":"Photos From The Past","screen_name":"PhotosPast","location":null,"url":null,"description":"Great Historic Quotes, World Famous Art, and Timeless Photography.","protected":false,"verified":false,"followers_count":18677,"friends_count":18309,"listed_count":16,"favourites_count":0,"statuses_count":598,"created_at":"Tue Sep 08 22:04:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641372060388884480\/v4SUwUtE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641372060388884480\/v4SUwUtE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3591855677\/1441750034","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728113931677698,"id_str":"663728113931677698","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJM_pWcAIgVy2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJM_pWcAIgVy2.jpg","url":"https:\/\/t.co\/aMpZiVPdO1","display_url":"pic.twitter.com\/aMpZiVPdO1","expanded_url":"http:\/\/twitter.com\/PhotosPast\/status\/663728114636349440\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":700,"resize":"fit"},"small":{"w":340,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":700,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728113931677698,"id_str":"663728113931677698","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJM_pWcAIgVy2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJM_pWcAIgVy2.jpg","url":"https:\/\/t.co\/aMpZiVPdO1","display_url":"pic.twitter.com\/aMpZiVPdO1","expanded_url":"http:\/\/twitter.com\/PhotosPast\/status\/663728114636349440\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":700,"resize":"fit"},"small":{"w":340,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":700,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080088658"} +{"delete":{"status":{"id":614863344768577536,"id_str":"614863344768577536","user_id":2954780997,"user_id_str":"2954780997"},"timestamp_ms":"1447080089229"}} +{"delete":{"status":{"id":245366431699595265,"id_str":"245366431699595265","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080089437"}} +{"delete":{"status":{"id":616398346790440960,"id_str":"616398346790440960","user_id":932617178,"user_id_str":"932617178"},"timestamp_ms":"1447080089596"}} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826409985,"id_str":"663728118826409985","text":"RT @Emmy_gh84: @mesh3l_84 @body_beauty18 \n\u0647\u0647\u0647\u0647\u0647\u0647\u0647 \u0636\u062d\u0643\u062a \u0644\u0645\u0627 \u0634\u0641\u062a \u062d\u0648\u0627\u0631\u0643\u0645 \n\u0643\u0644\u0646\u0627 \u0637\u0644\u0639\u0646\u0627 \u0642\u0646\u0635\u0644 \u0648\u0646\u062d\u0628 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u263a\ufe0f\u2764\ufe0f\n\u0634\u0643\u0644 \u0627\u0644\u0642\u0646\u0635\u0644 \u0627\u062a\u062d\u0627\u062f\u064a \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2559548563,"id_str":"2559548563","name":"\u0639\u0645\u0627\u0631 \u0627\u0644\u062f\u0648\u0628\u0627","screen_name":"body_beauty18","location":"Jeddah, Makkah Al Mukarrama","url":"http:\/\/ask.fm\/AmmarAltamimi901?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","description":"\u062f\u0628 \u0648\u0648\u0632\u0646\u064a \u0627\u0644\u0633\u0627\u0628\u0642 158 \u0648\u0627\u0644\u062d\u0627\u0644\u064a 114.7\u0648\u0647\u062f\u0641\u064a 100\u0648\u0644\u0627 \u0634\u064a\u0621 \u0645\u0633\u062a\u062d\u064a\u0644 \u0628\u0627\u0644\u0627\u0635\u0631\u0627\u0631 \u0627\u0644\u062d\u0645\u064a\u0629 \u063a\u064a\u0631\u062a \u062d\u064a\u0627\u062a\u064a \u0648\u062a\u0642\u062f\u0631 \u062a\u063a\u064a\u0631 \u062d\u064a\u0627\u062a\u0643\u0645 #\u0639\u0645\u0627\u0631_\u0627\u0644\u062c\u062f\u064a\u062f kik: ammar_altamimi .... snap:ammar-altamimi","protected":false,"verified":false,"followers_count":1422,"friends_count":281,"listed_count":6,"favourites_count":513,"statuses_count":17007,"created_at":"Tue Jun 10 18:31:52 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661255730079600645\/HRk_Jt_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661255730079600645\/HRk_Jt_3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2559548563\/1443354510","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:54 +0000 2015","id":663719667018637312,"id_str":"663719667018637312","text":"@mesh3l_84 @body_beauty18 \n\u0647\u0647\u0647\u0647\u0647\u0647\u0647 \u0636\u062d\u0643\u062a \u0644\u0645\u0627 \u0634\u0641\u062a \u062d\u0648\u0627\u0631\u0643\u0645 \n\u0643\u0644\u0646\u0627 \u0637\u0644\u0639\u0646\u0627 \u0642\u0646\u0635\u0644 \u0648\u0646\u062d\u0628 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u263a\ufe0f\u2764\ufe0f\n\u0634\u0643\u0644 \u0627\u0644\u0642\u0646\u0635\u0644 \u0627\u062a\u062d\u0627\u062f\u064a \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712498969878528,"in_reply_to_status_id_str":"663712498969878528","in_reply_to_user_id":435294914,"in_reply_to_user_id_str":"435294914","in_reply_to_screen_name":"mesh3l_84","user":{"id":2480371225,"id_str":"2480371225","name":"\u0639\u062f\u0627\u0631\u0633\u0640\u0647\u264b\ufe0f","screen_name":"Emmy_gh84","location":"\u064a\u0633\u0639\u062f\u0646\u064a \u062a\u0634\u062c\u064a\u0639\u0643\u0645","url":null,"description":"\u0631\u064a\u0627\u0636\u064a\u0629 \u0645\u0628\u062a\u062f\u0626\u0629 \u0627\u0637\u0645\u062d \u0628\u0639\u064a\u0634 \u062d\u064a\u0627\u0629 \u0635\u062d\u064a\u0629 \u0627\u0639\u0644\u0649 \u0648\u0632\u0646 \u0648\u0635\u0644\u062a \u0644\u0647 9\u20e35\u20e3 \u0648\u0646\u0642\u0637\u0629 \u0627\u0644\u0648\u0635\u0648\u0644 -\u0628\u062d\u0648\u0644 \u0627\u0644\u0644\u0647-5\u20e35\u20e3 #\u062a\u062d\u062f\u064a_90_\u064a\u0648\u0645 #\u062a\u062d\u062f\u064a_\u0645\u062a\u0645\u0631\u062f","protected":false,"verified":false,"followers_count":214,"friends_count":157,"listed_count":0,"favourites_count":321,"statuses_count":687,"created_at":"Tue May 06 20:43:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651015852771438596\/GN559A7P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651015852771438596\/GN559A7P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2480371225\/1444138196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mesh3l_84","name":"\u0645\u0634\u0639\u0644 \u0627\u0644\u062d\u0631\u0628\u064a \u264a","id":435294914,"id_str":"435294914","indices":[0,10]},{"screen_name":"body_beauty18","name":"\u0639\u0645\u0627\u0631 \u0627\u0644\u062f\u0648\u0628\u0627","id":2559548563,"id_str":"2559548563","indices":[11,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Emmy_gh84","name":"\u0639\u062f\u0627\u0631\u0633\u0640\u0647\u264b\ufe0f","id":2480371225,"id_str":"2480371225","indices":[3,13]},{"screen_name":"mesh3l_84","name":"\u0645\u0634\u0639\u0644 \u0627\u0644\u062d\u0631\u0628\u064a \u264a","id":435294914,"id_str":"435294914","indices":[15,25]},{"screen_name":"body_beauty18","name":"\u0639\u0645\u0627\u0631 \u0627\u0644\u062f\u0648\u0628\u0627","id":2559548563,"id_str":"2559548563","indices":[26,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851596288,"id_str":"663728118851596288","text":"RT @MegaCornuda: Me di cuenta que es mejo estar sola, y hacer lo que quieras de tu vida, somos chicos para andar sufriendo\ud83d\ude09\ud83d\udc48\ud83d\udcaa\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750623460,"id_str":"2750623460","name":"Solana\u2764","screen_name":"sol_mole","location":"DTucuman","url":null,"description":"Mejor amiga te amo \u2661\u2665\u2654\/ wp 3813024156","protected":false,"verified":false,"followers_count":522,"friends_count":619,"listed_count":1,"favourites_count":184,"statuses_count":12289,"created_at":"Wed Aug 20 22:50:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607260034142244864\/GGlrPQ-N.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607260034142244864\/GGlrPQ-N.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660675958622539776\/8oLi4VFa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660675958622539776\/8oLi4VFa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2750623460\/1444863795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 13:19:29 +0000 2015","id":662620320478724096,"id_str":"662620320478724096","text":"Me di cuenta que es mejo estar sola, y hacer lo que quieras de tu vida, somos chicos para andar sufriendo\ud83d\ude09\ud83d\udc48\ud83d\udcaa\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2398580622,"id_str":"2398580622","name":"Cornuda? S\u00ed y?","screen_name":"MegaCornuda","location":"Argentina","url":"https:\/\/instagram.com\/megacornuda","description":"Con talento y desempe\u00f1o a las gilas les ense\u00f1o. Sin flow, sin base, pero en tu barrio yo doy clase.","protected":false,"verified":false,"followers_count":82349,"friends_count":58,"listed_count":38,"favourites_count":10303,"statuses_count":6007,"created_at":"Wed Mar 19 23:20:43 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BCA9F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630133920844152832\/Fbs-5CWn.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630133920844152832\/Fbs-5CWn.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662020709313552386\/ztWXp5OG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662020709313552386\/ztWXp5OG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398580622\/1446672952","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":534,"favorite_count":533,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MegaCornuda","name":"Cornuda? S\u00ed y?","id":2398580622,"id_str":"2398580622","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834810880,"id_str":"663728118834810880","text":"Twittee 9ar sa5eef kla depressing tweets\ud83d\udc97\ud83d\udc9c\ud83d\udc99\ud83d\udc9b\ud83d\udc9a\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":984644826,"id_str":"984644826","name":"Kenza","screen_name":"Kenzbenj","location":"Bahrain\/Tunis","url":null,"description":"Here and There.","protected":false,"verified":false,"followers_count":292,"friends_count":220,"listed_count":2,"favourites_count":1109,"statuses_count":6019,"created_at":"Sun Dec 02 13:45:30 +0000 2012","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A837","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644842866116722688\/QwSH47TD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644842866116722688\/QwSH47TD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984644826\/1442682719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830661632,"id_str":"663728118830661632","text":"Duas semanas que ser\u00e3o resumidas em: fodeu","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172299075,"id_str":"1172299075","name":"Aaah","screen_name":"_hohoh0","location":null,"url":null,"description":"dsiojvh7rw9809qpofemdiht8uihosjdaspo","protected":false,"verified":false,"followers_count":74,"friends_count":286,"listed_count":0,"favourites_count":234,"statuses_count":3011,"created_at":"Tue Feb 12 15:25:48 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177086385\/hQX642tI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177086385\/hQX642tI.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616272719286566912\/GoJwkEnG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616272719286566912\/GoJwkEnG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172299075\/1439507520","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080089658"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859960320,"id_str":"663728118859960320","text":"RT @laufer4: Para las galas y campa\u00f1as nunca puede faltarme @BSASBRONZE !!! Bronceado natural ideal para todo el a\u00f1o \ud83d\ude0a\ud83d\ude09 https:\/\/t.co\/o8xAHE\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4085267597,"id_str":"4085267597","name":"adolfina becker","screen_name":"adolfina_becker","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":202,"listed_count":0,"favourites_count":778,"statuses_count":1148,"created_at":"Sat Oct 31 21:25:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660942587713478658\/tKiT1RqC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660942587713478658\/tKiT1RqC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4085267597\/1446351034","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:24 +0000 2015","id":663723313890516993,"id_str":"663723313890516993","text":"Para las galas y campa\u00f1as nunca puede faltarme @BSASBRONZE !!! Bronceado natural ideal para todo el a\u00f1o \ud83d\ude0a\ud83d\ude09 https:\/\/t.co\/o8xAHESrXs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181063530,"id_str":"181063530","name":"Laura Fern\u00e1ndez","screen_name":"laufer4","location":null,"url":null,"description":"http:\/\/instagram.com\/holasoylaurita actriz, bailarina, modelo - Contacto: 4115-7785 Rudmodels - Prensa: @maxicardaci","protected":false,"verified":false,"followers_count":501977,"friends_count":1460,"listed_count":360,"favourites_count":8510,"statuses_count":8331,"created_at":"Sat Aug 21 05:03:01 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"0C3E53","profile_sidebar_fill_color":"95D6C9","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657325687318167553\/mJ6q7Wu0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657325687318167553\/mJ6q7Wu0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181063530\/1446737832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":65,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BSASBRONZE","name":"NATURAL BRONZE","id":1601032694,"id_str":"1601032694","indices":[47,58]}],"symbols":[],"media":[{"id":663723258919976961,"id_str":"663723258919976961","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":749,"h":415,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723258919976961,"id_str":"663723258919976961","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":749,"h":415,"resize":"fit"}}},{"id":663723258857054208,"id_str":"663723258857054208","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZFW4AALPw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZFW4AALPw4.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"medium":{"w":600,"h":677,"resize":"fit"},"large":{"w":907,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663723284949811200,"id_str":"663723284949811200","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz6SWwAAg9ff.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz6SWwAAg9ff.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663723306911203328,"id_str":"663723306911203328","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE1MGXAAAccdQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE1MGXAAAccdQ.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"laufer4","name":"Laura Fern\u00e1ndez","id":181063530,"id_str":"181063530","indices":[3,11]},{"screen_name":"BSASBRONZE","name":"NATURAL BRONZE","id":1601032694,"id_str":"1601032694","indices":[60,71]}],"symbols":[],"media":[{"id":663723258919976961,"id_str":"663723258919976961","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":749,"h":415,"resize":"fit"}},"source_status_id":663723313890516993,"source_status_id_str":"663723313890516993","source_user_id":181063530,"source_user_id_str":"181063530"}]},"extended_entities":{"media":[{"id":663723258919976961,"id_str":"663723258919976961","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZUXAAEoyzT.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":749,"h":415,"resize":"fit"}},"source_status_id":663723313890516993,"source_status_id_str":"663723313890516993","source_user_id":181063530,"source_user_id_str":"181063530"},{"id":663723258857054208,"id_str":"663723258857054208","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEyZFW4AALPw4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEyZFW4AALPw4.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"medium":{"w":600,"h":677,"resize":"fit"},"large":{"w":907,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723313890516993,"source_status_id_str":"663723313890516993","source_user_id":181063530,"source_user_id_str":"181063530"},{"id":663723284949811200,"id_str":"663723284949811200","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEz6SWwAAg9ff.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEz6SWwAAg9ff.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663723313890516993,"source_status_id_str":"663723313890516993","source_user_id":181063530,"source_user_id_str":"181063530"},{"id":663723306911203328,"id_str":"663723306911203328","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE1MGXAAAccdQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE1MGXAAAccdQ.jpg","url":"https:\/\/t.co\/o8xAHESrXs","display_url":"pic.twitter.com\/o8xAHESrXs","expanded_url":"http:\/\/twitter.com\/laufer4\/status\/663723313890516993\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663723313890516993,"source_status_id_str":"663723313890516993","source_user_id":181063530,"source_user_id_str":"181063530"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834864128,"id_str":"663728118834864128","text":"RT @TweetYourBooks: New #Romance:\nPERFECT FOR HIM\n\"..captivating and emotional.\"\nhttps:\/\/t.co\/IWYn8alfQB\nhttps:\/\/t.co\/tEEBfq6SLS https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1232642149,"id_str":"1232642149","name":"Jacinda Minx","screen_name":"racyjacie","location":null,"url":"http:\/\/goo.gl\/QvI5c","description":"Erotic novelist, sensual lover, pleasure seeker. I live life to the fullest then write all my naughty adventures down for you!","protected":false,"verified":false,"followers_count":2065,"friends_count":1823,"listed_count":197,"favourites_count":238,"statuses_count":21142,"created_at":"Sat Mar 02 03:03:51 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000141834089\/Vz-99JNM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000141834089\/Vz-99JNM.jpeg","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000842497242\/59413f0313ddfa0c1159eb5307cf4dba_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000842497242\/59413f0313ddfa0c1159eb5307cf4dba_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1232642149\/1386451101","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727708921274368,"id_str":"663727708921274368","text":"New #Romance:\nPERFECT FOR HIM\n\"..captivating and emotional.\"\nhttps:\/\/t.co\/IWYn8alfQB\nhttps:\/\/t.co\/tEEBfq6SLS https:\/\/t.co\/65iIRFqz18","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":328695608,"id_str":"328695608","name":"Tweet Your Books","screen_name":"TweetYourBooks","location":"Global ","url":"http:\/\/bitly.com\/TYBservices","description":"READERS & AUTHORS We're the #1 #BookPromo team & fanfare great books to a select audience of 800,000 tweeps! 33m impressions per day! Sister to @WriteIntoPrint","protected":false,"verified":false,"followers_count":115923,"friends_count":99654,"listed_count":1996,"favourites_count":1952,"statuses_count":128290,"created_at":"Sun Jul 03 21:22:27 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BBBDF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/701876602\/ff3445f520c67129bd3d7bcdbac026e2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/701876602\/ff3445f520c67129bd3d7bcdbac026e2.jpeg","profile_background_tile":false,"profile_link_color":"9E0B0B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C9E2F0","profile_text_color":"262125","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503194818051194880\/_I_1DTgp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503194818051194880\/_I_1DTgp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328695608\/1408802471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Romance","indices":[4,12]}],"urls":[{"url":"https:\/\/t.co\/IWYn8alfQB","expanded_url":"http:\/\/amazon.com\/dp\/B017BWPODW","display_url":"amazon.com\/dp\/B017BWPODW","indices":[61,84]},{"url":"https:\/\/t.co\/tEEBfq6SLS","expanded_url":"https:\/\/www.smashwords.com\/books\/view\/588962","display_url":"smashwords.com\/books\/view\/588\u2026","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":663727707826561024,"id_str":"663727707826561024","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","url":"https:\/\/t.co\/65iIRFqz18","display_url":"pic.twitter.com\/65iIRFqz18","expanded_url":"http:\/\/twitter.com\/TweetYourBooks\/status\/663727708921274368\/photo\/1","type":"photo","sizes":{"medium":{"w":150,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":240,"resize":"fit"},"large":{"w":150,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727707826561024,"id_str":"663727707826561024","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","url":"https:\/\/t.co\/65iIRFqz18","display_url":"pic.twitter.com\/65iIRFqz18","expanded_url":"http:\/\/twitter.com\/TweetYourBooks\/status\/663727708921274368\/photo\/1","type":"photo","sizes":{"medium":{"w":150,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":240,"resize":"fit"},"large":{"w":150,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Romance","indices":[24,32]}],"urls":[{"url":"https:\/\/t.co\/IWYn8alfQB","expanded_url":"http:\/\/amazon.com\/dp\/B017BWPODW","display_url":"amazon.com\/dp\/B017BWPODW","indices":[81,104]},{"url":"https:\/\/t.co\/tEEBfq6SLS","expanded_url":"https:\/\/www.smashwords.com\/books\/view\/588962","display_url":"smashwords.com\/books\/view\/588\u2026","indices":[105,128]}],"user_mentions":[{"screen_name":"TweetYourBooks","name":"Tweet Your Books","id":328695608,"id_str":"328695608","indices":[3,18]}],"symbols":[],"media":[{"id":663727707826561024,"id_str":"663727707826561024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","url":"https:\/\/t.co\/65iIRFqz18","display_url":"pic.twitter.com\/65iIRFqz18","expanded_url":"http:\/\/twitter.com\/TweetYourBooks\/status\/663727708921274368\/photo\/1","type":"photo","sizes":{"medium":{"w":150,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":240,"resize":"fit"},"large":{"w":150,"h":240,"resize":"fit"}},"source_status_id":663727708921274368,"source_status_id_str":"663727708921274368","source_user_id":328695608,"source_user_id_str":"328695608"}]},"extended_entities":{"media":[{"id":663727707826561024,"id_str":"663727707826561024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1WyWIAAgPxc.jpg","url":"https:\/\/t.co\/65iIRFqz18","display_url":"pic.twitter.com\/65iIRFqz18","expanded_url":"http:\/\/twitter.com\/TweetYourBooks\/status\/663727708921274368\/photo\/1","type":"photo","sizes":{"medium":{"w":150,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":150,"h":240,"resize":"fit"},"large":{"w":150,"h":240,"resize":"fit"}},"source_status_id":663727708921274368,"source_status_id_str":"663727708921274368","source_user_id":328695608,"source_user_id_str":"328695608"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826430464,"id_str":"663728118826430464","text":"I stg is my class cancelled nobody is here yet","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":599340502,"id_str":"599340502","name":"Sheila","screen_name":"_____sheila","location":"Hell","url":null,"description":"\u2022 swamp monster by day and demon witch by night \u2022 I once went 6 days without sleep \u2022","protected":false,"verified":false,"followers_count":111,"friends_count":302,"listed_count":2,"favourites_count":575,"statuses_count":2677,"created_at":"Mon Jun 04 15:40:20 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661707778386493441\/aRF8D6k7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661707778386493441\/aRF8D6k7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/599340502\/1442977068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830600192,"id_str":"663728118830600192","text":"URGENTISSIMO!! calabria - UNA CUCCIOLATA DA METTERE IN SALVO . AIUTOOOOOOO!!!!!!!!!!!!!\n\nAsia bellissima... https:\/\/t.co\/069rlcSDBS","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405812936,"id_str":"405812936","name":"stefania stregagatta","screen_name":"stregagatta","location":null,"url":"http:\/\/www.stregagatta.it\/","description":"A favore della giustizia sempre fino alla fine odio ipocriti edonisti e chi non aiuta chi non pu\u00f2 difendersi","protected":false,"verified":false,"followers_count":610,"friends_count":382,"listed_count":12,"favourites_count":3,"statuses_count":36487,"created_at":"Sat Nov 05 20:51:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2822621111\/3540d27d476b88fbeb444c15a2c5e209_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2822621111\/3540d27d476b88fbeb444c15a2c5e209_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405812936\/1377585305","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/069rlcSDBS","expanded_url":"http:\/\/fb.me\/4Ow2VUMqZ","display_url":"fb.me\/4Ow2VUMqZ","indices":[108,131]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080089658"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118847422464,"id_str":"663728118847422464","text":"RT @Lera000lera0: @EPichurina \ud83d\udc51\ud83d\udc51\ud83d\udc51\ud83d\udc51\ud83d\udc51","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3383306237,"id_str":"3383306237","name":"\u0441\u043e\u0441\u0438\u0441\u043a\u0430 \u0432 \u0442\u0435\u0441\u0442\u0435","screen_name":"EPichurina","location":"Russia","url":null,"description":"\u2728\u0414\u0438\u0440\u0435\u043a\u0448\u0438\u043e\u043d\u0435\u0440&\u041b\u0428&\u0417\u0435\u043a&\u041d\u0430\u0439\u043b\u0433\u0451\u0440\u043b\u2728\n\u2764One direction is the love of my life \u2764| \nthey call me*\ncry baby*\ncry baby*\nbut I don't*\nfucking care* #AHS","protected":false,"verified":false,"followers_count":618,"friends_count":397,"listed_count":2,"favourites_count":709,"statuses_count":7335,"created_at":"Sun Jul 19 17:01:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662535427878948864\/wRInVIwT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662535427878948864\/wRInVIwT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3383306237\/1446654821","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727911724310528,"id_str":"663727911724310528","text":"@EPichurina \ud83d\udc51\ud83d\udc51\ud83d\udc51\ud83d\udc51\ud83d\udc51","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3383306237,"in_reply_to_user_id_str":"3383306237","in_reply_to_screen_name":"EPichurina","user":{"id":3136890977,"id_str":"3136890977","name":"\u2728Larry_Space\u2728","screen_name":"Lera000lera0","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":645,"friends_count":607,"listed_count":0,"favourites_count":171,"statuses_count":143,"created_at":"Sun Apr 05 13:28:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375548274647040\/MH97HO1z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375548274647040\/MH97HO1z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3136890977\/1446996030","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EPichurina","name":"\u0441\u043e\u0441\u0438\u0441\u043a\u0430 \u0432 \u0442\u0435\u0441\u0442\u0435","id":3383306237,"id_str":"3383306237","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lera000lera0","name":"\u2728Larry_Space\u2728","id":3136890977,"id_str":"3136890977","indices":[3,16]},{"screen_name":"EPichurina","name":"\u0441\u043e\u0441\u0438\u0441\u043a\u0430 \u0432 \u0442\u0435\u0441\u0442\u0435","id":3383306237,"id_str":"3383306237","indices":[18,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080089662"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826307584,"id_str":"663728118826307584","text":"RT @MrDhanjeet: This Is Why Your Vagina SMELLS! And How To Fix It...\nhttps:\/\/t.co\/dELuSE0RhJ https:\/\/t.co\/5t1ph70Sc0","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2995513328,"id_str":"2995513328","name":"Rituraj Murari","screen_name":"rrituraj2002","location":"india","url":null,"description":null,"protected":false,"verified":false,"followers_count":11747,"friends_count":12681,"listed_count":18,"favourites_count":6,"statuses_count":360,"created_at":"Sun Jan 25 06:56:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560134793803747328\/g4Ip1ElS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560134793803747328\/g4Ip1ElS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995513328\/1427975017","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:25:31 +0000 2015","id":663633504886849536,"id_str":"663633504886849536","text":"This Is Why Your Vagina SMELLS! And How To Fix It...\nhttps:\/\/t.co\/dELuSE0RhJ https:\/\/t.co\/5t1ph70Sc0","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3121329902,"id_str":"3121329902","name":"Mr Dhanjeet kumar","screen_name":"MrDhanjeet","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":28585,"friends_count":29468,"listed_count":41,"favourites_count":20,"statuses_count":895,"created_at":"Tue Mar 31 19:08:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608599653341200384\/a_jnR-In_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608599653341200384\/a_jnR-In_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3121329902\/1433936372","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dELuSE0RhJ","expanded_url":"http:\/\/bit.ly\/1MGuEU6","display_url":"bit.ly\/1MGuEU6","indices":[53,76]}],"user_mentions":[],"symbols":[],"media":[{"id":663632955152179200,"id_str":"663632955152179200","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","url":"https:\/\/t.co\/5t1ph70Sc0","display_url":"pic.twitter.com\/5t1ph70Sc0","expanded_url":"http:\/\/twitter.com\/MrDhanjeet\/status\/663633504886849536\/photo\/1","type":"photo","sizes":{"small":{"w":316,"h":160,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":316,"h":160,"resize":"fit"},"medium":{"w":316,"h":160,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663632955152179200,"id_str":"663632955152179200","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","url":"https:\/\/t.co\/5t1ph70Sc0","display_url":"pic.twitter.com\/5t1ph70Sc0","expanded_url":"http:\/\/twitter.com\/MrDhanjeet\/status\/663633504886849536\/photo\/1","type":"photo","sizes":{"small":{"w":316,"h":160,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":316,"h":160,"resize":"fit"},"medium":{"w":316,"h":160,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dELuSE0RhJ","expanded_url":"http:\/\/bit.ly\/1MGuEU6","display_url":"bit.ly\/1MGuEU6","indices":[69,92]}],"user_mentions":[{"screen_name":"MrDhanjeet","name":"Mr Dhanjeet kumar","id":3121329902,"id_str":"3121329902","indices":[3,14]}],"symbols":[],"media":[{"id":663632955152179200,"id_str":"663632955152179200","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","url":"https:\/\/t.co\/5t1ph70Sc0","display_url":"pic.twitter.com\/5t1ph70Sc0","expanded_url":"http:\/\/twitter.com\/MrDhanjeet\/status\/663633504886849536\/photo\/1","type":"photo","sizes":{"small":{"w":316,"h":160,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":316,"h":160,"resize":"fit"},"medium":{"w":316,"h":160,"resize":"fit"}},"source_status_id":663633504886849536,"source_status_id_str":"663633504886849536","source_user_id":3121329902,"source_user_id_str":"3121329902"}]},"extended_entities":{"media":[{"id":663632955152179200,"id_str":"663632955152179200","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyqBkWoAAbwZF.jpg","url":"https:\/\/t.co\/5t1ph70Sc0","display_url":"pic.twitter.com\/5t1ph70Sc0","expanded_url":"http:\/\/twitter.com\/MrDhanjeet\/status\/663633504886849536\/photo\/1","type":"photo","sizes":{"small":{"w":316,"h":160,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":316,"h":160,"resize":"fit"},"medium":{"w":316,"h":160,"resize":"fit"}},"source_status_id":663633504886849536,"source_status_id_str":"663633504886849536","source_user_id":3121329902,"source_user_id_str":"3121329902"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830600193,"id_str":"663728118830600193","text":"@elenaatt \"everyone does it that way\". Things stay that way until someone, eg coaches who hire black players, spots the inefficiency and in-","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727780811677696,"in_reply_to_status_id_str":"663727780811677696","in_reply_to_user_id":215335757,"in_reply_to_user_id_str":"215335757","in_reply_to_screen_name":"DamCou","user":{"id":215335757,"id_str":"215335757","name":"Damian Counsell","screen_name":"DamCou","location":"Earth","url":"http:\/\/damiancounsell.com\/","description":"I build Websites, do bioinformatics, and sing soul.","protected":false,"verified":false,"followers_count":511,"friends_count":746,"listed_count":10,"favourites_count":2103,"statuses_count":4923,"created_at":"Sat Nov 13 17:07:35 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"341224","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660766706051215360\/qbuSFjHG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660766706051215360\/qbuSFjHG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215335757\/1438036821","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elenaatt","name":"Elena","id":116203012,"id_str":"116203012","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089658"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834663425,"id_str":"663728118834663425","text":"shaheizy sam badan ketak2 woo. \ud83d\ude3d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1437010208,"id_str":"1437010208","name":"mamamia","screen_name":"nd_dianna","location":"johor bahru","url":null,"description":"a supermom","protected":false,"verified":false,"followers_count":55,"friends_count":120,"listed_count":0,"favourites_count":492,"statuses_count":10232,"created_at":"Sat May 18 00:17:16 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663358041148919808\/q31bkjet_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663358041148919808\/q31bkjet_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1437010208\/1439375275","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118860005376,"id_str":"663728118860005376","text":"RT @youm7: #\u0627\u0644\u064a\u0648\u0645_\u0627\u0644\u0633\u0627\u0628\u0639 |\"\u062f\u0628\u0644\u0648\u0645\u0627\u0633\u0649 \u0643\u0648\u064a\u062a\u0649 \u064a\u0637\u0644\u0642 \u0645\u0628\u0627\u062f\u0631\u0629 \u0644\u0632\u064a\u0627\u0631\u0629 #\u0634\u0631\u0645_\u0627\u0644\u0634\u064a\u062e \"\u0645\u0639\u0627 \u0636\u062f \u0645\u0624\u0627\u0645\u0631\u0629 \u0636\u0631\u0628 \u0627\u0642\u062a\u0635\u0627\u062f \u0645\u0635\u0631\"\" https:\/\/t.co\/msmCk0hWhX https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3673962866,"id_str":"3673962866","name":"hamada salm","screen_name":"R90Rwan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":24,"listed_count":0,"favourites_count":34,"statuses_count":32,"created_at":"Thu Sep 24 20:22:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 21:25:04 +0000 2015","id":663104907268911104,"id_str":"663104907268911104","text":"#\u0627\u0644\u064a\u0648\u0645_\u0627\u0644\u0633\u0627\u0628\u0639 |\"\u062f\u0628\u0644\u0648\u0645\u0627\u0633\u0649 \u0643\u0648\u064a\u062a\u0649 \u064a\u0637\u0644\u0642 \u0645\u0628\u0627\u062f\u0631\u0629 \u0644\u0632\u064a\u0627\u0631\u0629 #\u0634\u0631\u0645_\u0627\u0644\u0634\u064a\u062e \"\u0645\u0639\u0627 \u0636\u062f \u0645\u0624\u0627\u0645\u0631\u0629 \u0636\u0631\u0628 \u0627\u0642\u062a\u0635\u0627\u062f \u0645\u0635\u0631\"\" https:\/\/t.co\/msmCk0hWhX https:\/\/t.co\/0G2NTiCoPv","source":"\u003ca href=\"http:\/\/twittimer.com\" rel=\"nofollow\"\u003eTwittimer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301120393,"id_str":"301120393","name":"\u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0633\u0627\u0628\u0639","screen_name":"youm7","location":"Egypt","url":"http:\/\/www.youm7.com","description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0644\u062c\u0631\u064a\u062f\u0629 \u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0633\u0627\u0628\u0639 \u0639\u0644\u064a \u062a\u0648\u064a\u062a\u0631 ..\u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0627\u062e\u0628\u0627\u0631\u064a \u0627\u0644\u0627\u0648\u0644 \u0641\u064a \u0645\u0635\u0631 \u0648\u0627\u0644\u0634\u0631\u0642 \u0627\u0644\u0627\u0648\u0633\u0637\r\nFollow @youm7 for latest stories and breaking news from #Egypt","protected":false,"verified":true,"followers_count":3758381,"friends_count":12,"listed_count":5604,"favourites_count":74,"statuses_count":482342,"created_at":"Wed May 18 22:35:56 +0000 2011","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"82150D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/256339094\/bg-twitter10.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/256339094\/bg-twitter10.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"82150D","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1705975059\/logotweet_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1705975059\/logotweet_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301120393\/1435949975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":112,"favorite_count":224,"entities":{"hashtags":[{"text":"\u0627\u0644\u064a\u0648\u0645_\u0627\u0644\u0633\u0627\u0628\u0639","indices":[0,13]},{"text":"\u0634\u0631\u0645_\u0627\u0644\u0634\u064a\u062e","indices":[50,60]}],"urls":[{"url":"https:\/\/t.co\/msmCk0hWhX","expanded_url":"http:\/\/pos.li\/K5k","display_url":"pos.li\/K5k","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663104905637265408,"id_str":"663104905637265408","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","url":"https:\/\/t.co\/0G2NTiCoPv","display_url":"pic.twitter.com\/0G2NTiCoPv","expanded_url":"http:\/\/twitter.com\/youm7\/status\/663104907268911104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"large":{"w":629,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663104905637265408,"id_str":"663104905637265408","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","url":"https:\/\/t.co\/0G2NTiCoPv","display_url":"pic.twitter.com\/0G2NTiCoPv","expanded_url":"http:\/\/twitter.com\/youm7\/status\/663104907268911104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"large":{"w":629,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u064a\u0648\u0645_\u0627\u0644\u0633\u0627\u0628\u0639","indices":[11,24]},{"text":"\u0634\u0631\u0645_\u0627\u0644\u0634\u064a\u062e","indices":[61,71]}],"urls":[{"url":"https:\/\/t.co\/msmCk0hWhX","expanded_url":"http:\/\/pos.li\/K5k","display_url":"pos.li\/K5k","indices":[104,127]}],"user_mentions":[{"screen_name":"youm7","name":"\u0627\u0644\u064a\u0648\u0645 \u0627\u0644\u0633\u0627\u0628\u0639","id":301120393,"id_str":"301120393","indices":[3,9]}],"symbols":[],"media":[{"id":663104905637265408,"id_str":"663104905637265408","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","url":"https:\/\/t.co\/0G2NTiCoPv","display_url":"pic.twitter.com\/0G2NTiCoPv","expanded_url":"http:\/\/twitter.com\/youm7\/status\/663104907268911104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"large":{"w":629,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}},"source_status_id":663104907268911104,"source_status_id_str":"663104907268911104","source_user_id":301120393,"source_user_id_str":"301120393"}]},"extended_entities":{"media":[{"id":663104905637265408,"id_str":"663104905637265408","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPSZf1UAAAOJl1.png","url":"https:\/\/t.co\/0G2NTiCoPv","display_url":"pic.twitter.com\/0G2NTiCoPv","expanded_url":"http:\/\/twitter.com\/youm7\/status\/663104907268911104\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"large":{"w":629,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}},"source_status_id":663104907268911104,"source_status_id_str":"663104907268911104","source_user_id":301120393,"source_user_id_str":"301120393"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118847266820,"id_str":"663728118847266820","text":"\u307b\u3093\u307e\u306b\u308f\u304b\u3089\u3078\u3093\n\u3084\u3070\u3044\n\u660e\u65e5\u304b\u3089\u3061\u3083\u3093\u3068\u805e\u3053","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2316827713,"id_str":"2316827713","name":"\u305f \u306b \u3050 \u3061 \u3042 \u3084 \u304b","screen_name":"ayaka20003","location":"kurakuen","url":"http:\/\/Instagram.com\/t.ayaka.0312","description":"mukogawa h1-6 chay AAA @ayakae1101","protected":false,"verified":false,"followers_count":409,"friends_count":372,"listed_count":0,"favourites_count":3537,"statuses_count":5179,"created_at":"Wed Jan 29 09:19:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651396230992392193\/NFIl6Kh6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651396230992392193\/NFIl6Kh6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2316827713\/1443958906","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089662"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118843072512,"id_str":"663728118843072512","text":"RT @jack_vladamir: 10.30 pm aku start kisah \"Hantu Raya & Penanggal\"\n\nAku nak baca yasin dulu.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1647692342,"id_str":"1647692342","name":"Nur.","screen_name":"Hyattt206","location":"+06","url":null,"description":null,"protected":false,"verified":false,"followers_count":401,"friends_count":323,"listed_count":1,"favourites_count":2143,"statuses_count":6035,"created_at":"Mon Aug 05 12:28:24 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452057407166771201\/TGS3HM2C.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452057407166771201\/TGS3HM2C.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663655262071341057\/wYzqFeHT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663655262071341057\/wYzqFeHT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1647692342\/1443763538","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:02 +0000 2015","id":663720455895801856,"id_str":"663720455895801856","text":"10.30 pm aku start kisah \"Hantu Raya & Penanggal\"\n\nAku nak baca yasin dulu.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":912881341,"id_str":"912881341","name":"Bisikan Konspirasi","screen_name":"jack_vladamir","location":"Malaysia","url":null,"description":"Inspire others by being inspiring.","protected":false,"verified":false,"followers_count":49560,"friends_count":44,"listed_count":383,"favourites_count":3756,"statuses_count":88125,"created_at":"Mon Oct 29 17:25:38 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"140404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662771970069540864\/xSOKXiKd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662771970069540864\/xSOKXiKd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/912881341\/1445362077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":52,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jack_vladamir","name":"Bisikan Konspirasi","id":912881341,"id_str":"912881341","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080089661"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118847303680,"id_str":"663728118847303680","text":"\u30d1\u30f3\u305f\u3079\u308b\u3088\uff1f\n\u307e\u3042\u904b\u52d5\u3059\u308c\u3070\u3044\u3044\u3093\u3060\u3088\uff01\uff01\n\u660e\u5f8c\u65e5\u304b\u3089\u904b\u52d5\u3059\u308b\u3088\uff01\n\n1\u9031\u9593\u524d\u306b\u306a\u3063\u3066\u3042\u305b\u308b\u3084\u3064\u3084\u3053\u308c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4089596293,"id_str":"4089596293","name":"\u5c71\ufa11\u5343\u83ef\u306f\u4eca\u65e5\u3082\u5143\u6c17.\u2190\u2190\u2190\u273f*\u309c","screen_name":"o_t_m_rchika","location":"\u4eac\u30bb\u30e9\u5fa9\u6d3b\u5f53\u9078&\u5236\u4f5c\u89e3\u653e\u5e2d \u5f53\u9078\u7948\u9858.","url":null,"description":"\u9752\u8449\u4e2d\u2461\u5e74\u2461\u7d442012\u2190\u2190\u2661.\u3000\uff0f\u30001224\u540d\u53e4\u5c4b\u30c9\u30fc\u30e0.","protected":false,"verified":false,"followers_count":67,"friends_count":81,"listed_count":0,"favourites_count":77,"statuses_count":109,"created_at":"Sun Nov 01 10:00:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660759018898481152\/RO8kcn6-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660759018898481152\/RO8kcn6-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4089596293\/1447074933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089662"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118838853632,"id_str":"663728118838853632","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303668868,"id_str":"303668868","name":"Hassan Mohammed ","screen_name":"sonitoni18","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":20,"listed_count":0,"favourites_count":0,"statuses_count":214,"created_at":"Mon May 23 08:08:24 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000645814067\/fdd6edec62f03bf3602fa6a40d233ae2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000645814067\/fdd6edec62f03bf3602fa6a40d233ae2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089660"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859849728,"id_str":"663728118859849728","text":"https:\/\/t.co\/FGgX12Zv3T","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4166983700,"id_str":"4166983700","name":"iPhone\u4fee\u7406\u30ab\u30b9\u30bf\u30e0\u98ef\u585a\u5e97","screen_name":"ict_iizuka","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":127,"listed_count":1,"favourites_count":0,"statuses_count":7,"created_at":"Sun Nov 08 10:03:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663296835868463104\/NwWm0HEN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663296835868463104\/NwWm0HEN_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FGgX12Zv3T","expanded_url":"http:\/\/fb.me\/3Zhrh4Xyp","display_url":"fb.me\/3Zhrh4Xyp","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826332160,"id_str":"663728118826332160","text":"\u305f\u307e\u306b\u8aa4\u89e3\u3057\u3066\u3044\u308b\u4eba\u304c\u5c45\u308b\u304c\u3001\n\u30a4\u30ae\u30ea\u30b9\u306fEU\u52a0\u76df\u56fd\u3060\u305e\uff01\n\u7d71\u4e00\u901a\u8ca8\u300c\u30e6\u30fc\u30ed\u300d\u3092\u5c0e\u5165\u3057\u3066\u3044\u306a\u3044\u3060\u3051\u3060\uff01","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1326926504,"id_str":"1326926504","name":"\u826f\u3044\u5b50\u306e\u6b63\u8ad6BOT","screen_name":"tdashi_bot","location":" \u30aa\u30c1\u306f\u306a\u3044\u305e\uff01\uff01","url":null,"description":"\u826f\u3044\u5b50\u306e\u8af8\u541b \u3053\u308c\u306f\u4e16\u306e\u4e2d\u306e\u96e3\u3057\u3044\u3053\u3068\u3092\u3064\u3076\u3084\u3044\u3066\u3044\u304fBOT\u3060\uff01\u4e09\u5341\u5206\u3054\u3068\u306b\u3064\u3076\u3084\u3044\u3066\u3044\u304f\u305e\uff01\u30ea\u30d5\u30a9\u30ed\u30fc\u7387100\uff05\u76ee\u6307\u3057\u3066\u3044\u308b\uff01 \u8fd4\u4fe1\u306f\u306a\u308b\u3079\u304f\u9811\u5f35\u308b\u304b\u3089\u306a\uff01\u307f\u3093\u306a\u3067\u3053\u306eBOT\u3092\u5e83\u3081\u3066\u304f\u308c\uff01","protected":false,"verified":false,"followers_count":738,"friends_count":1001,"listed_count":4,"favourites_count":9,"statuses_count":27194,"created_at":"Thu Apr 04 13:16:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3480115388\/33213b71e674946c4d8437622889e27a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3480115388\/33213b71e674946c4d8437622889e27a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1326926504\/1365082562","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118855659520,"id_str":"663728118855659520","text":"\u30a2\u30cb\u30d8\u30bfDVD\u306e\u30a2\u30cb\u9650\u306e\u30ad\u30e3\u30b9\u30c8\u30c8\u30fc\u30afCD\u304c\u4f55\u3088\u308a\u697d\u3057\u307f\u3060\u3063\u305f\u306e\u306b\u3001\u3093\u3067\u3082TWT\u306e\u30dc\u30fc\u30ab\u30ebCD\u3082\u697d\u3057\u307f\u306b\u3057\u3066\u305f\u3088(\/\u03c9\uff3c*) \u660e\u65e5\u307e\u3068\u3081\u3066\u8074\u3053\u3046\u266a \u221a\u3055\u3093\u306e\u540c\u5c45\u8a71\u3001\u5927\u597d\u304d(*\u00b4\u30fc\uff40*) \u7d50\u5a5a\u3059\u308b\u306a\u3089\u7956\u56fd\u304b\u221a\u3055\u3093\u304c\u7406\u60f3\u3067\u3059\u3001\u306a\u3093\u3066(*^.^*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329973385,"id_str":"329973385","name":"\u8599(\u306a\u304e)\u3042\u3084\u304b\u3057\u3054\u306f\uff5e\u3093\u3002","screen_name":"nagimia","location":"\u4e59\u5973\u30b2\u3082BL\u3082\u611b\u304c\u3042\u308c\u3070\u554f\u984c\u306a\u3044\u3002","url":"http:\/\/www.pixiv.net\/member.php?id=2197835","description":"\u4e59\u5973\u30b2\u30fc\u30e0\u3001\u30e9\u30c3\u30ad\u30fc\u30c9\u30c3\u30b0\uff11\u3001\u30d8\u30bf\u30ea\u30a2\u3001\u9280\u9b42\u3001\uff32\uff30\uff27\u5927\u597d\u304d\uff01 \u30c9\u30e9\u30deCD\u3001\u30cb\u30b3\u751f\u3001\u30dc\u30ab\u30ed\u306a\u3069\u3092\u8074\u304d\u306a\u304c\u3089\u7d75\u3092\u63cf\u3044\u305f\u308a\u3001\u30b2\u30fc\u30e0\u3092\u3084\u3063\u305f\u308a\u306e\u793e\u4f1a\u4eba\u3067\u3059\uff3e\uff3e \u6c17\u8efd\u306b\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u266a\u30d5\u30a9\u30ed\u30fc\u3082\u30ea\u30d5\u30a9\u30ed\u30fc\u3082\u30ea\u30d7\u3082\u6c17\u8efd\u306b\u58f0\u304b\u3051\u3066\u9802\u3051\u308c\u3070\u5b09\u3057\u3044\u3067\u3059\uff3e\uff3e\u3000\u30a2\u30a4\u30b3\u30f3\u306f\u30d8\u30bf\u30ea\u30a2\u306e\u83ca\u266a","protected":false,"verified":false,"followers_count":54,"friends_count":87,"listed_count":1,"favourites_count":101,"statuses_count":6869,"created_at":"Tue Jul 05 22:20:52 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/767765332\/91ad11daf49282461bf7a1f2ce033395.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/767765332\/91ad11daf49282461bf7a1f2ce033395.jpeg","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626739280321220611\/S-8GFpTY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626739280321220611\/S-8GFpTY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329973385\/1429673986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089664"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118839050241,"id_str":"663728118839050241","text":"RT @kendimiyoramam: T\u00f6vbe ettik ge\u00e7en, ama kafam\u0131z katliam.\nBir daha kimseyi \u00f6ld\u00fcrmeyece\u011fiz dedik, i\u00e7imizde,\nYa\u015fatmayaca\u011f\u0131z da.\nO kadar b\u00fcy\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233796641,"id_str":"3233796641","name":"Elif Gizem \u015eener","screen_name":"gizemseneer","location":"Mersin, T\u00fcrkiye","url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":37,"listed_count":0,"favourites_count":60,"statuses_count":934,"created_at":"Mon May 04 16:54:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660152095652380672\/yI9iB3Py_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660152095652380672\/yI9iB3Py_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233796641\/1443181482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:22:29 +0000 2015","id":663119358080716800,"id_str":"663119358080716800","text":"T\u00f6vbe ettik ge\u00e7en, ama kafam\u0131z katliam.\nBir daha kimseyi \u00f6ld\u00fcrmeyece\u011fiz dedik, i\u00e7imizde,\nYa\u015fatmayaca\u011f\u0131z da.\nO kadar b\u00fcy\u00fck sevmeyece\u011fiz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":810864331,"id_str":"810864331","name":"\u2663","screen_name":"kendimiyoramam","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":18024,"friends_count":267,"listed_count":6,"favourites_count":6492,"statuses_count":140889,"created_at":"Sat Sep 08 12:48:20 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000102168294\/4e912cc02caa9bede1f6491658f64671.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000102168294\/4e912cc02caa9bede1f6491658f64671.jpeg","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663409191688761344\/lxw0N7af_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663409191688761344\/lxw0N7af_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810864331\/1446334836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":84,"favorite_count":288,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kendimiyoramam","name":"\u2663","id":810864331,"id_str":"810864331","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080089660"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851473408,"id_str":"663728118851473408","text":"@jam_to_you \u307e\u3063\u3066\u3001\u4eca\u3053\u308c\u306f1\u756a\u767a\u72c2\u3059\u308b\u301c\u301c\ud83d\ude0d\ud83d\udc9e\ud83d\udc9e\ud83d\udc9e\n\u306a\u3093\u3067\u30ab\u30a4\u3061\u3083\u3093\u3053\u3093\u306a\u306b\u304b\u3063\u3053\u3044\u3044\u3093\u304b\u306a\uff01\uff1f\n\u3046\u3061\u306e\u6bcd\u304c\u30b8\u30e7\u30f3\u30c7\u898b\u3066\u3001\u5742\u53e3\u5065\u592a\u90ce\u306b\u4f3c\u3066\u308b\u3063\u3066\u8a00\u3063\u3066\u305f\u3088\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723597232365572,"in_reply_to_status_id_str":"663723597232365572","in_reply_to_user_id":2446284145,"in_reply_to_user_id_str":"2446284145","in_reply_to_screen_name":"jam_to_you","user":{"id":1886789328,"id_str":"1886789328","name":"\u305b\u3068\u3084\u307e \u308a\u3087\u3046","screen_name":"Mry05Xxx","location":"N a g a s a k i","url":null,"description":null,"protected":false,"verified":false,"followers_count":267,"friends_count":239,"listed_count":0,"favourites_count":4846,"statuses_count":4579,"created_at":"Fri Sep 20 15:04:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660512836330717184\/T7jc6kds_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660512836330717184\/T7jc6kds_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1886789328\/1446475444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jam_to_you","name":"\u305f\u305e\u3048 \u3086\u3046","id":2446284145,"id_str":"2446284145","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851608576,"id_str":"663728118851608576","text":"Jpp il m'a tu\u00e9e \ud83d\ude02 https:\/\/t.co\/UCFXrdH9Xi","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":471021807,"id_str":"471021807","name":"\u2020","screen_name":"OrlaneLallemand","location":null,"url":null,"description":"Croire en soi, c'est deja presque reussir.","protected":false,"verified":false,"followers_count":521,"friends_count":651,"listed_count":1,"favourites_count":1118,"statuses_count":3471,"created_at":"Sun Jan 22 12:10:29 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850318559\/3933683fe52765272c4c1640910a5b10.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850318559\/3933683fe52765272c4c1640910a5b10.jpeg","profile_background_tile":true,"profile_link_color":"9E139E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613472155293077504\/zd11ZmjZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613472155293077504\/zd11ZmjZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/471021807\/1418986847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UCFXrdH9Xi","expanded_url":"https:\/\/vine.co\/v\/edipKHzuO9H","display_url":"vine.co\/v\/edipKHzuO9H","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118843109376,"id_str":"663728118843109376","text":"RT @willis_cj: Tory Lanez done made a hit with this one http:\/\/t.co\/SZBDsvmhnY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3120495436,"id_str":"3120495436","name":"Lil_DeeDee_","screen_name":"deestenim","location":null,"url":null,"description":"Glo day 4\/4 RIP Great Grandma #Rebel #Dancer","protected":false,"verified":false,"followers_count":74,"friends_count":90,"listed_count":0,"favourites_count":1358,"statuses_count":843,"created_at":"Fri Mar 27 02:58:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651842939379826688\/01kFow4a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651842939379826688\/01kFow4a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3120495436\/1444246441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 18 04:06:20 +0000 2015","id":655595745286975488,"id_str":"655595745286975488","text":"Tory Lanez done made a hit with this one http:\/\/t.co\/SZBDsvmhnY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543855094,"id_str":"543855094","name":"C\u20ac\u20acJA\u00a5\u270a","screen_name":"willis_cj","location":"Burg'15 | East Carolina Univ.","url":null,"description":"tehehe","protected":false,"verified":false,"followers_count":16344,"friends_count":16338,"listed_count":12,"favourites_count":37009,"statuses_count":45506,"created_at":"Tue Apr 03 00:50:58 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"569FD2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000001545105\/c2f9d006711ef9335fecbfe6d5917fa6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000001545105\/c2f9d006711ef9335fecbfe6d5917fa6.png","profile_background_tile":true,"profile_link_color":"F50A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F1F2E8","profile_text_color":"FA124C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662217184542871552\/Of1x-7pQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662217184542871552\/Of1x-7pQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543855094\/1446752894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10804,"favorite_count":9360,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":639945067872956416,"id_str":"639945067872956416","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","url":"http:\/\/t.co\/SZBDsvmhnY","display_url":"pic.twitter.com\/SZBDsvmhnY","expanded_url":"http:\/\/twitter.com\/soundofvibes\/status\/639948978268712960\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":639948978268712960,"source_status_id_str":"639948978268712960","source_user_id":403020498,"source_user_id_str":"403020498"}]},"extended_entities":{"media":[{"id":639945067872956416,"id_str":"639945067872956416","indices":[41,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","url":"http:\/\/t.co\/SZBDsvmhnY","display_url":"pic.twitter.com\/SZBDsvmhnY","expanded_url":"http:\/\/twitter.com\/soundofvibes\/status\/639948978268712960\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":639948978268712960,"source_status_id_str":"639948978268712960","source_user_id":403020498,"source_user_id_str":"403020498","video_info":{"aspect_ratio":[16,9],"duration_millis":29649,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/640x360\/p_MheLE9QvhSgMHI.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/pl\/zEM_OR-7nZVt_WEF.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/640x360\/p_MheLE9QvhSgMHI.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/1280x720\/Mcw4yp0Q8v8dwxnf.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/320x180\/pLb7nPHd_8Eup8GI.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/pl\/zEM_OR-7nZVt_WEF.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"willis_cj","name":"C\u20ac\u20acJA\u00a5\u270a","id":543855094,"id_str":"543855094","indices":[3,13]}],"symbols":[],"media":[{"id":639945067872956416,"id_str":"639945067872956416","indices":[56,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","url":"http:\/\/t.co\/SZBDsvmhnY","display_url":"pic.twitter.com\/SZBDsvmhnY","expanded_url":"http:\/\/twitter.com\/soundofvibes\/status\/639948978268712960\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":639948978268712960,"source_status_id_str":"639948978268712960","source_user_id":403020498,"source_user_id_str":"403020498"}]},"extended_entities":{"media":[{"id":639945067872956416,"id_str":"639945067872956416","indices":[56,78],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/639945067872956416\/pu\/img\/6JPSHShc7BcAmgHX.jpg","url":"http:\/\/t.co\/SZBDsvmhnY","display_url":"pic.twitter.com\/SZBDsvmhnY","expanded_url":"http:\/\/twitter.com\/soundofvibes\/status\/639948978268712960\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":639948978268712960,"source_status_id_str":"639948978268712960","source_user_id":403020498,"source_user_id_str":"403020498","video_info":{"aspect_ratio":[16,9],"duration_millis":29649,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/640x360\/p_MheLE9QvhSgMHI.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/pl\/zEM_OR-7nZVt_WEF.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/640x360\/p_MheLE9QvhSgMHI.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/1280x720\/Mcw4yp0Q8v8dwxnf.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/vid\/320x180\/pLb7nPHd_8Eup8GI.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/639945067872956416\/pu\/pl\/zEM_OR-7nZVt_WEF.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089661"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834728964,"id_str":"663728118834728964","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/ZVezPqeDVD","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390530661,"id_str":"390530661","name":"kaleen,","screen_name":"ohboyitsleeen_","location":null,"url":"http:\/\/erratic-k.tumblr.com\/","description":null,"protected":false,"verified":false,"followers_count":107,"friends_count":101,"listed_count":0,"favourites_count":462,"statuses_count":12372,"created_at":"Fri Oct 14 03:44:21 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438374467\/tumblr_lx1tdqUBZd1qbxmhro1_500.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438374467\/tumblr_lx1tdqUBZd1qbxmhro1_500.png","profile_background_tile":true,"profile_link_color":"FF0808","profile_sidebar_border_color":"0A000A","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"5BC7A0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1900309527\/Oou9jJJK_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1900309527\/Oou9jJJK_normal","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZVezPqeDVD","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826299393,"id_str":"663728118826299393","text":"@kumoharasionn \n\u5618\u3064\u304d\u306f\u4eba\u751f\u306e\u59cb\u307e\u308a\u3060\u308d\uff1f(\u5927\u5618)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727960264867840,"in_reply_to_status_id_str":"663727960264867840","in_reply_to_user_id":3188563886,"in_reply_to_user_id_str":"3188563886","in_reply_to_screen_name":"kumoharasionn","user":{"id":2416825934,"id_str":"2416825934","name":"\u30e4\u30ae\uff20\u516d\u3064\u5b50\u306b\u30c9\u30dc\u30f3","screen_name":"yagi_1351","location":"\u52d5\u7269\u5712\u306e\u30e4\u30ae\u3068\u89e6\u308c\u5408\u3048\u308b\u6240","url":null,"description":"\u7d75\u3092\u63cf\u304f\u306e\u304c\u8da3\u5473\u3067\u3059\u3002\u6700\u8fd1\u306f\u7344\u90fd\u4e8b\u5909\/\u6bba\u622e\u306e\u5929\u4f7f\/\u5b9f\u6cc1\u8005\/\u516d\u3064\u5b50\/\u305f\u307e\u306b\u30cf\u30f3\u30c9\u30e1\u30a4\u30c9\u3002\u30a2\u30a4\u30b3\u30f3\u30d8\u30c3\u30c0\u30fc\u306f\u3010@MKIREMO\u3011\u69d8\u304b\u3089\u3002\u30d5\u30a9\u30ed\u30fc\u6642\u306f\u30ea\u30d7\u304f\u3060\u3055\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3002\u203b\u8150\u3084\u5909\u614b\u767a\u8a00\u591a\u3002\u304a\u5225\u308c\u306fB\/\u65e6\u90a3\u69d8\u2192\u3010@kumoharasionn\u3011","protected":false,"verified":false,"followers_count":306,"friends_count":535,"listed_count":27,"favourites_count":4505,"statuses_count":14355,"created_at":"Sat Mar 29 02:59:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648092281434603520\/nq4LMhXl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648092281434603520\/nq4LMhXl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2416825934\/1443018785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kumoharasionn","name":"\u96f2\u539f\u5fd7\u97f3@\u4f4e\u6d6e\u4e0a","id":3188563886,"id_str":"3188563886","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859849729,"id_str":"663728118859849729","text":"\u534a\u30ba\u30dc\u30f3\uff01\uff01\u819d\u5c0f\u50e7\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3518569993,"id_str":"3518569993","name":"\u3057\u3081\u3058","screen_name":"seiouosiri","location":"\u8056\u738b\u6cbc","url":null,"description":"\u30c7\u30a3\u30d0\u30a4\u30f3\u30b2\u30fc\u30c8\u3084\u3063\u3066\u307e\u3059 \u8150\u3063\u3066\u307e\u3059 \u4e2d\u6751\u30a2\u30fc\u30b5\u30fc\u3042\u308a\u304c\u3068\u3046","protected":false,"verified":false,"followers_count":57,"friends_count":59,"listed_count":5,"favourites_count":490,"statuses_count":1119,"created_at":"Thu Sep 10 19:10:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659330330520764416\/-wuKARUs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659330330520764416\/-wuKARUs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3518569993\/1443531921","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118839013376,"id_str":"663728118839013376","text":"Don Lemon https:\/\/t.co\/PTKdTiQSmn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133900968,"id_str":"133900968","name":"Great Stone Dragon","screen_name":"WhitePianoKey","location":"Hueco Mundo","url":"http:\/\/whitepianokey.tumblr.com\/","description":"WMU Alum I speak with the simplicity of a well read storybook, known by its readers, yet still a mystery to those who have but to gaze upon the pages of my life","protected":false,"verified":false,"followers_count":359,"friends_count":275,"listed_count":9,"favourites_count":515,"statuses_count":47243,"created_at":"Fri Apr 16 23:24:34 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624790758\/sdjyd1s4cx7whpz03p00.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624790758\/sdjyd1s4cx7whpz03p00.jpeg","profile_background_tile":true,"profile_link_color":"F5290E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1F1A1A","profile_text_color":"F21B25","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659584146415755264\/i4Dn9BwD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659584146415755264\/i4Dn9BwD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133900968\/1443839921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663491240319553536,"quoted_status_id_str":"663491240319553536","quoted_status":{"created_at":"Sun Nov 08 23:00:13 +0000 2015","id":663491240319553536,"id_str":"663491240319553536","text":"If aliens came to Earth to save all black ppl, but they said you gotta leave one black person on Earth, who you leaving?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663490334211444736,"in_reply_to_status_id_str":"663490334211444736","in_reply_to_user_id":343800462,"in_reply_to_user_id_str":"343800462","in_reply_to_screen_name":"XLNB","user":{"id":343800462,"id_str":"343800462","name":"X","screen_name":"XLNB","location":"Los Angeles, CA","url":"http:\/\/www.oldeemovie.com","description":"Filmmaker | USC School of Cinematic Arts| Omega Psi Phi | Director of Olde E| @QueTheLights | #OldeEMovie | http:\/\/www.quethelights.com","protected":false,"verified":false,"followers_count":15082,"friends_count":1807,"listed_count":169,"favourites_count":4396,"statuses_count":86621,"created_at":"Thu Jul 28 03:05:05 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660366529519726592\/kxL1oo_d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660366529519726592\/kxL1oo_d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343800462\/1440375877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PTKdTiQSmn","expanded_url":"https:\/\/twitter.com\/XLNB\/status\/663491240319553536","display_url":"twitter.com\/XLNB\/status\/66\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080089660"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118847287296,"id_str":"663728118847287296","text":"@solitude_reine 11-09\u306b\u5165\u3063\u3066\u304b\u3089700\u30dd\u30b9\u30c8\u306b\u5230\u9054\u3057\u307e\u3057\u305f\uff01\uff08\u73fe\u5728\u304a\u3088\u305d700\u30dd\u30b9\u30c8\uff09","source":"\u003ca href=\"https:\/\/twihaialert.net\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u5ec3\u3042\u3089\u30fc\u3068\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3145683439,"in_reply_to_user_id_str":"3145683439","in_reply_to_screen_name":"solitude_reine","user":{"id":3145683439,"id_str":"3145683439","name":"\u7834\u58ca\u795e\u306c\u3044\u3061\u3083\u3093","screen_name":"solitude_reine","location":"\u541b\u306e\u96a3","url":"http:\/\/twpf.jp\/solitude_reine","description":"You\u2019re telling me.","protected":false,"verified":false,"followers_count":471,"friends_count":337,"listed_count":23,"favourites_count":58497,"statuses_count":62633,"created_at":"Thu Apr 09 04:45:47 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655680579539611648\/Im9A1AlN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655680579539611648\/Im9A1AlN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3145683439\/1435452171","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"solitude_reine","name":"\u7834\u58ca\u795e\u306c\u3044\u3061\u3083\u3093","id":3145683439,"id_str":"3145683439","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089662"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830669824,"id_str":"663728118830669824","text":"#PushAwardsKathNiels https:\/\/t.co\/LBA1jQSIn6","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053531612,"id_str":"4053531612","name":"Crisnel Longino","screen_name":"kbdpftcris26","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":14,"listed_count":4,"favourites_count":4,"statuses_count":27682,"created_at":"Thu Oct 29 04:01:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659604143183560704\/xqGiC0ZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659604143183560704\/xqGiC0ZM_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727994456973312,"quoted_status_id_str":"663727994456973312","quoted_status":{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727994456973312,"id_str":"663727994456973312","text":"kathnielcecaina: AllureKath: kathnielquotes_: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3616243454,"id_str":"3616243454","name":"Andromeda","screen_name":"IDKIDK001","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":168,"listed_count":28,"favourites_count":22,"statuses_count":94976,"created_at":"Sat Sep 19 13:15:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647282680099241985\/NAYto_Jg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647282680099241985\/NAYto_Jg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3616243454\/1443159163","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[86,106]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/LBA1jQSIn6","expanded_url":"http:\/\/twitter.com\/IDKIDK001\/status\/663727994456973312","display_url":"twitter.com\/IDKIDK001\/stat\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080089658"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118864084992,"id_str":"663728118864084992","text":"\uc790\uaca0\ub3c4\ub2e4.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396416104,"id_str":"2396416104","name":"\ud604\ub791 \ud788\ub974\ub178","screen_name":"Hirno_","location":"\uc6b8\uc0b0\uc2dc \uc628\uc591","url":null,"description":"\u3042\u306a\u305f\u3092\u611b\u3057\u305f\u3060\u3051\u306b\u3001\u79c1\u3092\u597d\u304d\u3066\u3082\u3089\u3048\u307e\u305b\u3093\u304b\u3002 https:\/\/ask.fm\/Hirno","protected":false,"verified":false,"followers_count":156,"friends_count":143,"listed_count":3,"favourites_count":4662,"statuses_count":98533,"created_at":"Tue Mar 18 15:42:15 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662761953228623872\/p6O4UZsR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662761953228623872\/p6O4UZsR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396416104\/1446783569","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080089666"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118864080896,"id_str":"663728118864080896","text":"RT @ThePowerfulPics: I need a shower room in my life \ud83d\ude29\ud83d\ude4c\ud83c\udffc https:\/\/t.co\/sD41KjktKh","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4013264892,"id_str":"4013264892","name":"Patricia Ysabelle","screen_name":"patriciiiiiiiaa","location":"MNL ","url":"https:\/\/www.tumblr.com\/blog\/penelopescratchcat","description":"Libra \u264e\ufe0f Architecture student who loves photography and traveling \u270d I'm not perfect so are you.","protected":false,"verified":false,"followers_count":170,"friends_count":508,"listed_count":0,"favourites_count":215,"statuses_count":664,"created_at":"Sun Oct 25 12:38:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661223770548367360\/MclfFf_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661223770548367360\/MclfFf_J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4013264892\/1445781118","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:51:27 +0000 2015","id":663232344283713536,"id_str":"663232344283713536","text":"I need a shower room in my life \ud83d\ude29\ud83d\ude4c\ud83c\udffc https:\/\/t.co\/sD41KjktKh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1520006918,"id_str":"1520006918","name":"Billionaires","screen_name":"ThePowerfulPics","location":null,"url":null,"description":"We do not own any of the content posted. *Not Affiliated With Any Website in anyway* *Parody* Request DMCA removal #Cont :- powerfulpixs@gmail.com","protected":false,"verified":false,"followers_count":1461695,"friends_count":566,"listed_count":1872,"favourites_count":45,"statuses_count":2176,"created_at":"Sat Jun 15 17:45:30 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663661589183135744\/s_TflaqU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663661589183135744\/s_TflaqU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1520006918\/1446948086","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1036,"favorite_count":2131,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663232321982623744,"id_str":"663232321982623744","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","url":"https:\/\/t.co\/sD41KjktKh","display_url":"pic.twitter.com\/sD41KjktKh","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663232344283713536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":722,"resize":"fit"},"medium":{"w":480,"h":722,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663232321982623744,"id_str":"663232321982623744","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","url":"https:\/\/t.co\/sD41KjktKh","display_url":"pic.twitter.com\/sD41KjktKh","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663232344283713536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":722,"resize":"fit"},"medium":{"w":480,"h":722,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThePowerfulPics","name":"Billionaires","id":1520006918,"id_str":"1520006918","indices":[3,19]}],"symbols":[],"media":[{"id":663232321982623744,"id_str":"663232321982623744","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","url":"https:\/\/t.co\/sD41KjktKh","display_url":"pic.twitter.com\/sD41KjktKh","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663232344283713536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":722,"resize":"fit"},"medium":{"w":480,"h":722,"resize":"fit"}},"source_status_id":663232344283713536,"source_status_id_str":"663232344283713536","source_user_id":1520006918,"source_user_id_str":"1520006918"}]},"extended_entities":{"media":[{"id":663232321982623744,"id_str":"663232321982623744","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRGSGtU8AALvhe.jpg","url":"https:\/\/t.co\/sD41KjktKh","display_url":"pic.twitter.com\/sD41KjktKh","expanded_url":"http:\/\/twitter.com\/ThePowerfulPics\/status\/663232344283713536\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":722,"resize":"fit"},"medium":{"w":480,"h":722,"resize":"fit"}},"source_status_id":663232344283713536,"source_status_id_str":"663232344283713536","source_user_id":1520006918,"source_user_id_str":"1520006918"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089666"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859997184,"id_str":"663728118859997184","text":"Love this piece by @egabbert. https:\/\/t.co\/REflv5bXGr\n'notes are steeped in time and place' \n'your muse [...] shows up, poltergeist-like'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2155332864,"id_str":"2155332864","name":"Marialena Carr","screen_name":"marialenacarr","location":"NYish","url":"http:\/\/marialenacarr.com","description":"Always writer, once oceanographer, often yogi, sometimes translator. Friend to imaginary animals. I also take photos.","protected":false,"verified":false,"followers_count":669,"friends_count":755,"listed_count":20,"favourites_count":1663,"statuses_count":5266,"created_at":"Fri Oct 25 17:30:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3D6A80","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000101754608\/1c97110b0339d32dc03bdcc1017730ab.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000101754608\/1c97110b0339d32dc03bdcc1017730ab.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000646536023\/c461fbaab6a55e00250c4aad2e4fdd21_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000646536023\/c461fbaab6a55e00250c4aad2e4fdd21_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2155332864\/1382783362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/REflv5bXGr","expanded_url":"http:\/\/bit.ly\/1Sc8ME9","display_url":"bit.ly\/1Sc8ME9","indices":[30,53]}],"user_mentions":[{"screen_name":"egabbert","name":"Elisa Gabbert","id":39498324,"id_str":"39498324","indices":[19,28]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851481602,"id_str":"663728118851481602","text":"@takasan_pz \u30ea\u30e5\u30fc\u30cd\u898b\u305f\u76ee\u597d\u304d\u306a\u3093\u3067\u5f53\u305f\u3063\u305f\u3089\u5373297\u632f\u308a\u307e\u3059\uff01\uff01\uff01\uff01\uff01\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727432843657216,"in_reply_to_status_id_str":"663727432843657216","in_reply_to_user_id":3022244478,"in_reply_to_user_id_str":"3022244478","in_reply_to_screen_name":"takasan_pz","user":{"id":105404792,"id_str":"105404792","name":"\u307e\u308a\u3093","screen_name":"mar_blue128","location":"\u305f\u307e\u30c9\u30e9\u306e\u79d8\u5883","url":null,"description":"\u6d77\u5916\u306e\u6620\u753b\u3084\u30c9\u30e9\u30de\u3084\u4ff3\u512a\u3055\u3093\u304c\u597d\u304d\u3067\u3059\u3002\u2661\u2661\u2026William Fichtner\uff0fKellan lutz\uff0fDevon bostick\u2026\u2661\u2661 \uff08\u203bGoT\u8996\u8074\u4e2d\u306b\u3064\u304d\u3046\u308b\u3055\u3044 \uff09\u30d1\u30ba\u30c9\u30e9\u6c34\u52e2\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u308a\u3061\u3087\u69d8\u304b\u3089\u207a\u2445\u2661@yukiguniapple","protected":false,"verified":false,"followers_count":131,"friends_count":150,"listed_count":5,"favourites_count":2244,"statuses_count":8493,"created_at":"Sat Jan 16 07:15:54 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645896700276535296\/Va1e0XYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645896700276535296\/Va1e0XYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105404792\/1445266909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"takasan_pz","name":"\u307f\u3093\u306a\u306e\u30bf\u30ab\u3055\u3093@\u6642\u5973\u795e\u4f7f\u3044","id":3022244478,"id_str":"3022244478","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118838992896,"id_str":"663728118838992896","text":"RT @Joe_d24_: Don't take us too lightly.... #round2 https:\/\/t.co\/8dNqa3tIvw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979087814,"id_str":"2979087814","name":"Cam Searight","screen_name":"CamSearight","location":"CLE","url":null,"description":"West Geauga Quarterback '17 | #7 | @jillianalioto","protected":false,"verified":false,"followers_count":385,"friends_count":310,"listed_count":0,"favourites_count":1234,"statuses_count":594,"created_at":"Wed Jan 14 23:29:31 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662741923409477634\/EdOQUCjD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662741923409477634\/EdOQUCjD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2979087814\/1446844962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:13:19 +0000 2015","id":663403941758148608,"id_str":"663403941758148608","text":"Don't take us too lightly.... #round2 https:\/\/t.co\/8dNqa3tIvw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":720355172,"id_str":"720355172","name":"JD $","screen_name":"Joe_d24_","location":"The Land","url":null,"description":"JR running back | West geauga []24[] #VG 5\/3\/15","protected":false,"verified":false,"followers_count":859,"friends_count":585,"listed_count":2,"favourites_count":14046,"statuses_count":12846,"created_at":"Fri Jul 27 15:31:01 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/718601680\/4f16da086656c3906c28f2877c461fba.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/718601680\/4f16da086656c3906c28f2877c461fba.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663419017537953792\/RXWOd6Da_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663419017537953792\/RXWOd6Da_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/720355172\/1445911116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":62,"entities":{"hashtags":[{"text":"round2","indices":[30,37]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663403933335859200,"id_str":"663403933335859200","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","url":"https:\/\/t.co\/8dNqa3tIvw","display_url":"pic.twitter.com\/8dNqa3tIvw","expanded_url":"http:\/\/twitter.com\/Joe_d24_\/status\/663403941758148608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":638,"h":426,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663403933335859200,"id_str":"663403933335859200","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","url":"https:\/\/t.co\/8dNqa3tIvw","display_url":"pic.twitter.com\/8dNqa3tIvw","expanded_url":"http:\/\/twitter.com\/Joe_d24_\/status\/663403941758148608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":638,"h":426,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"round2","indices":[44,51]}],"urls":[],"user_mentions":[{"screen_name":"Joe_d24_","name":"JD $","id":720355172,"id_str":"720355172","indices":[3,12]}],"symbols":[],"media":[{"id":663403933335859200,"id_str":"663403933335859200","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","url":"https:\/\/t.co\/8dNqa3tIvw","display_url":"pic.twitter.com\/8dNqa3tIvw","expanded_url":"http:\/\/twitter.com\/Joe_d24_\/status\/663403941758148608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":638,"h":426,"resize":"fit"}},"source_status_id":663403941758148608,"source_status_id_str":"663403941758148608","source_user_id":720355172,"source_user_id_str":"720355172"}]},"extended_entities":{"media":[{"id":663403933335859200,"id_str":"663403933335859200","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTiXM0UsAAGMjs.jpg","url":"https:\/\/t.co\/8dNqa3tIvw","display_url":"pic.twitter.com\/8dNqa3tIvw","expanded_url":"http:\/\/twitter.com\/Joe_d24_\/status\/663403941758148608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":638,"h":426,"resize":"fit"}},"source_status_id":663403941758148608,"source_status_id_str":"663403941758148608","source_user_id":720355172,"source_user_id_str":"720355172"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089660"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834696193,"id_str":"663728118834696193","text":"@myTOMKINS BEKASI #TOMKINSHERO @Dicky_Wyh @DiapenWarezki \nhttps:\/\/t.co\/6xXShnukNU","source":"\u003ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003ePlume\u00a0for\u00a0Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1526455268,"in_reply_to_user_id_str":"1526455268","in_reply_to_screen_name":"myTOMKINS","user":{"id":79481212,"id_str":"79481212","name":"Yadi Tri Saputra","screen_name":"yaditsa","location":"\u2714 Verified Account ","url":"https:\/\/www.tokopedia.com\/yaditsa","description":"@ Metakom @Arbital @Elabram_systems @xerindo_tech @DwiPilarInfratama\n #Jakarta - #Purwakarta ^","protected":false,"verified":false,"followers_count":802,"friends_count":2800,"listed_count":1,"favourites_count":162,"statuses_count":5924,"created_at":"Sat Oct 03 15:05:43 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654090429038641156\/sRueMRjG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654090429038641156\/sRueMRjG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79481212\/1376795134","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TOMKINSHERO","indices":[19,31]}],"urls":[],"user_mentions":[{"screen_name":"myTOMKINS","name":"TOMKINS Indonesia","id":1526455268,"id_str":"1526455268","indices":[0,10]},{"screen_name":"Dicky_Wyh","name":"Dicky Prasetya","id":4035716353,"id_str":"4035716353","indices":[32,42]},{"screen_name":"DiapenWarezki","name":"Diapen Warezki Akbar","id":186379342,"id_str":"186379342","indices":[43,57]}],"symbols":[],"media":[{"id":663662682533330944,"id_str":"663662682533330944","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNsYsVAAAbIYK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNsYsVAAAbIYK.jpg","url":"https:\/\/t.co\/6xXShnukNU","display_url":"pic.twitter.com\/6xXShnukNU","expanded_url":"http:\/\/twitter.com\/yaditsa\/status\/663662692327030784\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":266,"resize":"fit"},"medium":{"w":600,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"}},"source_status_id":663662692327030784,"source_status_id_str":"663662692327030784","source_user_id":79481212,"source_user_id_str":"79481212"}]},"extended_entities":{"media":[{"id":663662682533330944,"id_str":"663662682533330944","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNsYsVAAAbIYK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNsYsVAAAbIYK.jpg","url":"https:\/\/t.co\/6xXShnukNU","display_url":"pic.twitter.com\/6xXShnukNU","expanded_url":"http:\/\/twitter.com\/yaditsa\/status\/663662692327030784\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":266,"resize":"fit"},"medium":{"w":600,"h":221,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"}},"source_status_id":663662692327030784,"source_status_id_str":"663662692327030784","source_user_id":79481212,"source_user_id_str":"79481212"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118860013568,"id_str":"663728118860013568","text":"RT @EvolAzzBART: It's spooky for u chicks too. Y'all don't know what y'all sleeping with \ud83d\udc80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21652180,"id_str":"21652180","name":"Rere05","screen_name":"priv1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":199,"friends_count":345,"listed_count":1,"favourites_count":9,"statuses_count":13205,"created_at":"Mon Feb 23 13:32:59 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"27C610","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/343534417\/298990_10100441378046701_5013596_53768895_1440099737_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/343534417\/298990_10100441378046701_5013596_53768895_1440099737_n.jpg","profile_background_tile":true,"profile_link_color":"FF0084","profile_sidebar_border_color":"F3129A","profile_sidebar_fill_color":"318316","profile_text_color":"100B13","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000619553392\/961abb8c584fcddd40e10523aaa4dd4b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000619553392\/961abb8c584fcddd40e10523aaa4dd4b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21652180\/1408823972","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:33 +0000 2015","id":663727380813492225,"id_str":"663727380813492225","text":"It's spooky for u chicks too. Y'all don't know what y'all sleeping with \ud83d\udc80","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91419584,"id_str":"91419584","name":"IG @Bart2.5","screen_name":"EvolAzzBART","location":"Yonkers, Ga. ","url":null,"description":"My Boss is a 8yr old. I don't take orders, I give them! \nY'all Hiring?","protected":false,"verified":false,"followers_count":13098,"friends_count":1657,"listed_count":142,"favourites_count":9,"statuses_count":115694,"created_at":"Fri Nov 20 20:33:34 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000233212930\/4ee08c68d556fcfff43c85ec5b4bf95c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000233212930\/4ee08c68d556fcfff43c85ec5b4bf95c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91419584\/1393932813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EvolAzzBART","name":"IG @Bart2.5","id":91419584,"id_str":"91419584","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118855782400,"id_str":"663728118855782400","text":"#\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621\n\n\u0628\u0639\u0645\u0644 \u0627\u0644\u0633\u062d\u0631\u0647 \u0648\u0627\u0644\u062f\u062c\u0627\u0644\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4134343839,"id_str":"4134343839","name":"\u200f\ufba9\u20b0\ufba9Fatima\u200f\ufba9\u20b0\ufba9","screen_name":"Fay33s","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0644\u062e\u0627\u0635 \u0645\u0645\u0646\u0648\u0639\u270b\u0648'\u062d\u0633\u0628\u064a \u0627\u0644\u0644\u0647 \u0648\u0643\u0641\u0649 \u0628\u0627\u0644\u0644\u0647 \u062d\u0633\u064a\u0628\u0627'","protected":false,"verified":false,"followers_count":1931,"friends_count":1564,"listed_count":0,"favourites_count":12,"statuses_count":258,"created_at":"Sat Nov 07 13:21:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662986113422901248\/5bAuSEao_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662986113422901248\/5bAuSEao_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4134343839\/1446903304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089664"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118826299392,"id_str":"663728118826299392","text":"\"Mistakes happen, but sometimes they happen because pundits mistake knowingness for realism.\" \u2014 Mukul Kesavan https:\/\/t.co\/gc3DvZSDWl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38281904,"id_str":"38281904","name":"Mihir Pandya","screen_name":"miyaamihir","location":"New Delhi, India","url":"http:\/\/mihirpandya.com\/","description":"Commentator On Cinema. Author of the non-fiction book on Cinema :\u2212 Shahar Aur Cinema Via Dilli \u2212 http:\/\/goo.gl\/mIRdv","protected":false,"verified":false,"followers_count":3043,"friends_count":327,"listed_count":42,"favourites_count":93,"statuses_count":12442,"created_at":"Wed May 06 21:32:07 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604900312\/1nmi1071ffpmkikq6s9y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604900312\/1nmi1071ffpmkikq6s9y.jpeg","profile_background_tile":true,"profile_link_color":"85006A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"0D0202","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594396912649830401\/GicmKzbT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594396912649830401\/GicmKzbT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38281904\/1430550131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gc3DvZSDWl","expanded_url":"http:\/\/www.telegraphindia.com\/1151109\/jsp\/opinion\/story_52118.jsp#.VkCa8GMMr3C.twitter","display_url":"telegraphindia.com\/1151109\/jsp\/op\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089657"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118864068608,"id_str":"663728118864068608","text":"\u9ec4\u660f\u3063\u3066\u3001\u6697\u304f\u306a\u3063\u3066\u4eba\u306e\u9854\u304c\u5206\u304b\u3089\u306a\u3044\u3063\u3066\u610f\u5473\u306e\u300e\u8ab0\u305d\u5f7c\u300f\u304b\u3089\u6765\u3066\u308b\u3093\u3060\u3063\u3066\u3055","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345264264,"id_str":"345264264","name":"\u30ea\u30f3\u30af(\u975e\u516c\u5f0fbot)","screen_name":"zelda_link_bot","location":"\u30cf\u30a4\u30e9\u30eb\u306e\u3069\u3053\u304b","url":null,"description":"\u30bc\u30eb\u30c0\u306e\u4f1d\u8aac\u975e\u516c\u5f0fbot\/\u30d9\u30fc\u30b9\u3068\u3057\u3066\u306f\u9ec4\u660f\u59eb\u4ed5\u69d8\/\u6027\u683c\u306f\u7d14\u60c5\u7cfb\u3080\u3063\u3064\u308a\u30d8\u30bf\u30ec\u8179\u9ed2\u98a8\u5473\/\u98fd\u304d\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3067\u304a\u9858\u3044\u3057\u307e\u3059\/\u5973\u6027\u5411\u3051","protected":false,"verified":false,"followers_count":278,"friends_count":342,"listed_count":5,"favourites_count":0,"statuses_count":78753,"created_at":"Sat Jul 30 09:12:02 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1469012114\/main_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1469012114\/main_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089666"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859890693,"id_str":"663728118859890693","text":"RT @Entrepreneur: The Unfair Truth About How Creative People Succeed by @jeffgoins https:\/\/t.co\/kzfFhsVp9L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3118417603,"id_str":"3118417603","name":"Opollo John","screen_name":"OpolloJohn","location":"Out of this World ","url":null,"description":"Publisher. Producer. Designer.","protected":false,"verified":false,"followers_count":104,"friends_count":341,"listed_count":13,"favourites_count":278,"statuses_count":556,"created_at":"Mon Mar 30 18:19:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582626828017225729\/7tVg50qg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582626828017225729\/7tVg50qg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3118417603\/1427743320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:31 +0000 2015","id":663726614640001025,"id_str":"663726614640001025","text":"The Unfair Truth About How Creative People Succeed by @jeffgoins https:\/\/t.co\/kzfFhsVp9L","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19407053,"id_str":"19407053","name":"Entrepreneur","screen_name":"Entrepreneur","location":"NYC | Orange County, CA","url":"http:\/\/www.entrepreneur.com","description":"Inspiring, informing and celebrating entrepreneurs since 1973. Please tweet @EntCommunity for questions and event live-feeds.","protected":false,"verified":true,"followers_count":1757257,"friends_count":1257,"listed_count":22951,"favourites_count":290,"statuses_count":77207,"created_at":"Fri Jan 23 18:46:10 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"223F51","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581585015047254016\/CughMn3Z.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581585015047254016\/CughMn3Z.jpg","profile_background_tile":false,"profile_link_color":"365977","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"363636","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474753665970868224\/GcoCzmcI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474753665970868224\/GcoCzmcI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19407053\/1445642233","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":21,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kzfFhsVp9L","expanded_url":"http:\/\/entm.ag\/1KEKqny","display_url":"entm.ag\/1KEKqny","indices":[65,88]}],"user_mentions":[{"screen_name":"JeffGoins","name":"Jeff Goins","id":8273062,"id_str":"8273062","indices":[54,64]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kzfFhsVp9L","expanded_url":"http:\/\/entm.ag\/1KEKqny","display_url":"entm.ag\/1KEKqny","indices":[83,106]}],"user_mentions":[{"screen_name":"Entrepreneur","name":"Entrepreneur","id":19407053,"id_str":"19407053","indices":[3,16]},{"screen_name":"JeffGoins","name":"Jeff Goins","id":8273062,"id_str":"8273062","indices":[72,82]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118859890694,"id_str":"663728118859890694","text":"\u8131\u9000\u3067\u30b0\u30c3\u30b7\u30e3\u30b0\u30c3\u30b7\u30e3\uff1f\u79c1\u7acb\u6075\u6bd4\u5bff\u4e2d\u5b66\u306e\u304a\u8535\u5165\u308a\u6620\u50cf\u304c... https:\/\/t.co\/R6ujyP1DJV","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3300719185,"id_str":"3300719185","name":"\u6a2a\u5c3e \u6e09LOVELOVELOVELOVE","screen_name":"pe038YOKOO","location":null,"url":null,"description":"\u6a2a\u5c3e \u6e09\u304c\u5927\u597d\u304dJS\u3067\u3059\u3002\u30a2\u30cb\u30e1\u30fb\u30b3\u30b9\u30d7\u30ec\u3082\u5927\u597d\u304d(*\u2267\u2200\u2266*)LINE\u4ea4\u63db\u3057\u307e\u3057\u3087\u3046\u266a","protected":false,"verified":false,"followers_count":55,"friends_count":110,"listed_count":0,"favourites_count":0,"statuses_count":13429,"created_at":"Wed Jul 29 15:54:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626769908827684865\/-52C823H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626769908827684865\/-52C823H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300719185\/1438268452","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R6ujyP1DJV","expanded_url":"http:\/\/jonny01momokuro.seesaa.net\/","display_url":"jonny01momokuro.seesaa.net","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834798592,"id_str":"663728118834798592","text":"https:\/\/t.co\/qYLoJW6GlP \n\u0633\u0643\u0633 \u0633\u0639\u0648\u062f\u064a - \u0641\u064a\u062f\u064a\u0648 - \u0627\u0641\u0644\u0627\u0645 \u0633\u0643\u0633 \u062a\u064a\u0648\u0628 https:\/\/t.co\/fhjtGttCWw via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2427609842,"id_str":"2427609842","name":"Ahuva Kneller","screen_name":"difymagywod","location":"Bowling Green, KY","url":null,"description":"A Christian by Faith. Tweets- personal, but to the point and real! #lol PAID internet troll are blocked!","protected":false,"verified":false,"followers_count":148,"friends_count":351,"listed_count":0,"favourites_count":0,"statuses_count":47,"created_at":"Fri Apr 04 17:28:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618734761134002177\/ZM0lhFZ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618734761134002177\/ZM0lhFZ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2427609842\/1436031834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qYLoJW6GlP","expanded_url":"http:\/\/goo.gl\/5EV52d","display_url":"goo.gl\/5EV52d","indices":[0,23]},{"url":"https:\/\/t.co\/fhjtGttCWw","expanded_url":"http:\/\/sco.lt\/6KU1M9","display_url":"sco.lt\/6KU1M9","indices":[60,83]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[88,96]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834663424,"id_str":"663728118834663424","text":"@sho_ufo321 \u307e\u30601\u8a71\u3060\u304b\u3089\u3001\u6570\u30f6\u6708\u5f8c\u306b\u307e\u305f\u6559\u3048\u308b\uff08\u7b11\uff09","source":"\u003ca href=\"https:\/\/twitter.com\/#!\/ABS104a\" rel=\"nofollow\"\u003eBiyon\u2261(\u3000\u03b5:)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663666271431475200,"in_reply_to_status_id_str":"663666271431475200","in_reply_to_user_id":3029139301,"in_reply_to_user_id_str":"3029139301","in_reply_to_screen_name":"sho_ufo321","user":{"id":864669625,"id_str":"864669625","name":"sherlock@ENL","screen_name":"sherlockKIT","location":null,"url":null,"description":"kyutech M1 | \u5927\u5b66\u3001\u5c06\u68cb\u3001\u30b2\u30fc\u30e0\u3001\u52d5\u7269\u3001EdTech\u3001\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u3001\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u3001Web \u5236\u4f5c\u306b\u95a2\u3059\u308b\u30c4\u30a4\u30fc\u30c8\u30fb\u30ea\u30c4\u30a4\u30fc\u30c8\u304c\u591a\u3081\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":178,"friends_count":174,"listed_count":15,"favourites_count":2756,"statuses_count":44406,"created_at":"Sat Oct 06 13:11:39 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000029604497\/5dcede2755d6b14d7c3f3933f67ecf13.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000029604497\/5dcede2755d6b14d7c3f3933f67ecf13.jpeg","profile_background_tile":false,"profile_link_color":"02BF02","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557348607313977344\/Rp4s9jN__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557348607313977344\/Rp4s9jN__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864669625\/1421716001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sho_ufo321","name":"\u3057\u3087\u3046","id":3029139301,"id_str":"3029139301","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834683905,"id_str":"663728118834683905","text":"\"Children have the undeniable weapon of boldness\" https:\/\/t.co\/a23uGcgZsL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170983043,"id_str":"170983043","name":"ErasmusESE","screen_name":"ErasmusESE","location":"Rotterdam","url":"http:\/\/www.ese.eur.nl","description":"Erasmus School of Economics | University @Rotterdam | Est. 1913 | #Economics | #Econometrics | Our Students of Today are Leaders of Tomorrow | @ErasmusUni","protected":false,"verified":false,"followers_count":1424,"friends_count":190,"listed_count":43,"favourites_count":344,"statuses_count":3229,"created_at":"Mon Jul 26 07:54:00 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFD700","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/142926967\/twitterachtergrond_ESE2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/142926967\/twitterachtergrond_ESE2.jpg","profile_background_tile":false,"profile_link_color":"002328","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0E0D7","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588281507111899136\/KZbNT-Sl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588281507111899136\/KZbNT-Sl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170983043\/1434448122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727640092766208,"quoted_status_id_str":"663727640092766208","quoted_status":{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640092766208,"id_str":"663727640092766208","text":"#ChildrensPeacePrize winner Keita: \u201cI want to see a world where every crime against children is accounted for!\u201d","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":197542316,"id_str":"197542316","name":"KidsRights","screen_name":"KidsRights","location":"Worldwide","url":"http:\/\/www.kidsrights.org","description":"KidsRights promotes the wellbeing of vulnerable children across the world by advocating for the realisation of their rights.","protected":false,"verified":false,"followers_count":1321,"friends_count":632,"listed_count":25,"favourites_count":29,"statuses_count":4006,"created_at":"Fri Oct 01 19:46:26 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"002767","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555381242292486145\/F_jcNhAm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555381242292486145\/F_jcNhAm.jpeg","profile_background_tile":false,"profile_link_color":"002767","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644821938498498560\/hERSbAO7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644821938498498560\/hERSbAO7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/197542316\/1442912857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ChildrensPeacePrize","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a23uGcgZsL","expanded_url":"https:\/\/twitter.com\/KidsRights\/status\/663727640092766208","display_url":"twitter.com\/KidsRights\/sta\u2026","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089659"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851461121,"id_str":"663728118851461121","text":"@saisai_san \u304a\u3084\u3059\u307f\u306a\u3055\u3044\u3001\u30ec\u30a4\u30bb\u30f3 \u89aa\u885b\u968a\u3055\u3093\u3002","source":"\u003ca href=\"http:\/\/mistik.blog38.fc2.com\/blog-entry-59.html\" rel=\"nofollow\"\u003e\u5e7b\u60f3\u90f7\u30fb\u9727\u306e\u6e56\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727889217511424,"in_reply_to_status_id_str":"663727889217511424","in_reply_to_user_id":2311570951,"in_reply_to_user_id_str":"2311570951","in_reply_to_screen_name":"saisai_san","user":{"id":90696480,"id_str":"90696480","name":"\u5927\u5996\u7cbebot","screen_name":"daiyousei_bot","location":"\u9727\u306e\u6e56","url":"http:\/\/mistik.xtr.jp\/lunate_elf\/","description":"\u6771\u65b9project\u30fb\u5927\u5996\u7cbe\u306e\u4e8c\u6b21\u5275\u4f5cbot\u3067\u3059\u3002\u30ea\u30d7\u30e9\u30a4\u3067\u30d5\u30a9\u30ed\u30fc\u3092\u8fd4\u3057\u307e\u3059\u3002\u8a73\u3057\u304f\u306fURL\u3092\u3054\u53c2\u7167\u4e0b\u3055\u3044\u3002\u4f5c\u6210\u8005\u306f@mistone0\u3001\u82e6\u60c5\u306fURL\u306e\u5148\u304b\u4f5c\u8005\u3078\u3002\u30ad\u30e3\u30e9\u8a2d\u5b9a\u306f\u8da3\u5473\u5168\u958b\u306a\u306e\u3067\u3054\u4e86\u627f\u4e0b\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":9842,"friends_count":3437,"listed_count":554,"favourites_count":619,"statuses_count":1346446,"created_at":"Tue Nov 17 19:13:29 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2009678079\/icon_daiyosei02_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2009678079\/icon_daiyosei02_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"saisai_san","name":"\u30ec\u30a4\u30bb\u30f3 \u89aa\u885b\u968a","id":2311570951,"id_str":"2311570951","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830526465,"id_str":"663728118830526465","text":"RT @hatano_yui: \u307e\u3044\u307e\u3044\u3068\u4e00\u7dd2\\( *\u00b4\u03c9`* )\/\u2665\n\u3053\u3093\u306a\u3084\u3064\u3067\u559c\u3093\u3067\u304f\u308c\u3066\u3068\u3066\u3082\u5e78\u305b\u3060\u3063\u305f(* \u02c3\u0336\u03c9\u02c2\u0336 *) https:\/\/t.co\/CngiEi8p2r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302874569,"id_str":"2302874569","name":"THE END OF CENTURY","screen_name":"rademon2","location":null,"url":null,"description":"\u8056\u98e2\u9b54II\u4fe1\u8005\u3001\u30d5\u30a1\u30a4\u30d6\u30d1\u30ef\u30fc\u30ba\u6ce2\u591a\u91ce\u7d50\u8863\u3055\u3093\u3001\u5927\u69fb\u3072\u3073\u304d\u3055\u3093\u30d7\u30ed\u30ec\u30b9\u597d\u304d","protected":false,"verified":false,"followers_count":138,"friends_count":286,"listed_count":2,"favourites_count":2083,"statuses_count":18238,"created_at":"Tue Jan 21 10:29:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662607594897338368\/uelKvF-B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662607594897338368\/uelKvF-B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302874569\/1446809232","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:07:13 +0000 2015","id":663704394626568192,"id_str":"663704394626568192","text":"\u307e\u3044\u307e\u3044\u3068\u4e00\u7dd2\\( *\u00b4\u03c9`* )\/\u2665\n\u3053\u3093\u306a\u3084\u3064\u3067\u559c\u3093\u3067\u304f\u308c\u3066\u3068\u3066\u3082\u5e78\u305b\u3060\u3063\u305f(* \u02c3\u0336\u03c9\u02c2\u0336 *) https:\/\/t.co\/CngiEi8p2r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":556793833,"id_str":"556793833","name":"\u6ce2\u591a\u91ce\u7d50\u8863\u260511\u65e5\u30a4\u30d9\u30f3\u30c8in\u30a2\u30ad\u30d0","screen_name":"hatano_yui","location":"Japan","url":"http:\/\/blog.livedoor.jp\/hatano_yui\/lite\/","description":"2012\u5e744\u6708Twitter\u958b\u59cb\uff01(\u00b4\uff65\u03c9\uff65`)\u30c6\u30a3\u30fc\u30d1\u30ef\u30fc\u30ba\u6240\u5c5e\/me-me*\u306e\u304a\u5a46\u3061\u3083\u3093\/AV\u5973\u512a\u306e\u306f\u305f\u3061\u3083\u3093\u3067\u3059\u2605\u8da3\u5473\u306f\u30b2\u30fc\u30e0\uff64\u30a2\u30cb\u30e1\uff64\u6f2b\u753b\u3001\u30b7\u30e7\u30c3\u30d4\u30f3\u30b0\uff64\u30c0\u30fc\u30c4\u3001\u30ab\u30e9\u30aa\u30b1\u3067\u3059(*^^*)\u30cb\u30b3\u52d5\u3001\u6b4c\u3063\u3066\u307f\u305f\u3001\u30dc\u30fc\u30ab\u30ed\u30a4\u30c9\u3001\u9d8f\u8089\u3001\u713c\u8089\u3001\u30d9\u30a4\u30de\u30c3\u30af\u30b9\u3001\u30d0\u30f3\u30d3\u3001\u30a2\u30d2\u30eb\u305f\u3093\u304c\u3060\u30fc\u3044\u3059\u304d\u2661 \u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u2606","protected":false,"verified":false,"followers_count":168043,"friends_count":520,"listed_count":1492,"favourites_count":7042,"statuses_count":29239,"created_at":"Wed Apr 18 11:40:13 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515478155914510336\/z6gmAcqC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515478155914510336\/z6gmAcqC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/556793833\/1436497010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663626144378327040,"quoted_status_id_str":"663626144378327040","quoted_status":{"created_at":"Mon Nov 09 07:56:17 +0000 2015","id":663626144378327040,"id_str":"663626144378327040","text":"\u306a\u3093\u3068\uff01\uff01\uff01\uff01\n\u4eca\u65e5\u306f\u3001\u4e16\u754c\u306e\u6ce2\u591a\u91ce\u7d50\u8863\u3055\u3093\u3068\u4e00\u7dd2\u306e\u64ae\u5f71\u306a\u306e\u3067\u3059(\u00b4;\u317f;\uff40)\u2661\n\u3059\u3093\u3054\u3044\u30ab\u30ef\u30a4\u30a4\u2661\n\u3059\u3093\u3054\u3044\u3084\u3055\u3057\u3044\u2026\u2026\u2661\n\u300c\u306f\u305f\u3061\u3083\u3093\u3066\u547c\u3093\u3067\u306d\u301c\u266b\u300d\u3063\u3066\u8a00\u3063\u3066\u3082\u3089\u3048\u305f\u3051\u3069\u3001\n\u305d\u3093\u306a\u3053\u3068\u79c1\u306b\u306f\u51fa\u6765\u307e\u305b\u3093\uff01\uff01\u7b11 \u3042\u3042\u2026\u4e16\u754c\u30ec\u30d9\u30eb\u2026 https:\/\/t.co\/07vhgyR1Hi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323544463,"id_str":"3323544463","name":"\u3010\u65b0\u4eba\u3011\u5ddd\u702c\u9ebb\u8863\u3010\u30c4\u30a4\u5ec3\u3011","screen_name":"kawase_mai","location":"\u304c\u3081\u3093\u306e\u306a\u304b","url":null,"description":"GIRFY\u6240\u5c5e(\u00b4\u2022\u03c9\u2022\uff40) \u304a\u9152\u3068\u30a8\u30ed\u3068\u30ed\u30c3\u30af\u3001\u305d\u3057\u3066\u732b\u3068\u4e8c\u6b21\u5143\u3092\u611b\u3059\u308b\u3061\u3063\u3071\u3044AV\u5973\u512a\u300c\u5ddd\u702c\u9ebb\u8863\u300d\u3067\u3059\uff01\uff01\u30c7\u30d3\u30e5\u30fc\u524d\u3060\u3088\uff01\uff01Twitter\u306f\u30df\u30e5\u30fc\u30c8\u63a8\u5968\uff01\u7b11 \u3069\u3046\u305e\u3088\u308d\u3057\u304f\u304a\u306d\u304c\u3044\u3057\u307e\u3059\u3063\\(\u00b0\u2200\u00b0 )\/","protected":false,"verified":false,"followers_count":1879,"friends_count":100,"listed_count":24,"favourites_count":712,"statuses_count":3699,"created_at":"Sat Aug 22 05:29:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663219965864972289\/bzPe5Wl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663219965864972289\/bzPe5Wl__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323544463\/1441483344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663626131329822720,"id_str":"663626131329822720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWsc02UsAA1JgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWsc02UsAA1JgD.jpg","url":"https:\/\/t.co\/07vhgyR1Hi","display_url":"pic.twitter.com\/07vhgyR1Hi","expanded_url":"http:\/\/twitter.com\/kawase_mai\/status\/663626144378327040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663626131329822720,"id_str":"663626131329822720","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWsc02UsAA1JgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWsc02UsAA1JgD.jpg","url":"https:\/\/t.co\/07vhgyR1Hi","display_url":"pic.twitter.com\/07vhgyR1Hi","expanded_url":"http:\/\/twitter.com\/kawase_mai\/status\/663626144378327040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":8,"favorite_count":59,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CngiEi8p2r","expanded_url":"https:\/\/twitter.com\/kawase_mai\/status\/663626144378327040","display_url":"twitter.com\/kawase_mai\/sta\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CngiEi8p2r","expanded_url":"https:\/\/twitter.com\/kawase_mai\/status\/663626144378327040","display_url":"twitter.com\/kawase_mai\/sta\u2026","indices":[70,93]}],"user_mentions":[{"screen_name":"hatano_yui","name":"\u6ce2\u591a\u91ce\u7d50\u8863\u260511\u65e5\u30a4\u30d9\u30f3\u30c8in\u30a2\u30ad\u30d0","id":556793833,"id_str":"556793833","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089658"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851465216,"id_str":"663728118851465216","text":"@9q0oMwFkq2z2JMQ \u8aa4\u5dee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727910004461568,"in_reply_to_status_id_str":"663727910004461568","in_reply_to_user_id":3190901521,"in_reply_to_user_id_str":"3190901521","in_reply_to_screen_name":"9q0oMwFkq2z2JMQ","user":{"id":3228668208,"id_str":"3228668208","name":"shin@\u5b89\u5b9a\u306e\u7834\u7523\u30de\u30f3","screen_name":"accelerator2255","location":"\u7530\u820e","url":null,"description":"\u30d0\u30c9\u30df\u30f3\u30c8\u30f3\u306b\u306f\u3057\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":358,"friends_count":214,"listed_count":8,"favourites_count":3227,"statuses_count":24691,"created_at":"Thu May 28 08:04:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642640363665031168\/MBZBDd_9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642640363665031168\/MBZBDd_9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228668208\/1440895575","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"9q0oMwFkq2z2JMQ","name":"\u30a2\u30eb\u30d1\u30ab","id":3190901521,"id_str":"3190901521","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080089663"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118860013569,"id_str":"663728118860013569","text":"#news Mondays. https:\/\/t.co\/IWz75coIHV https:\/\/t.co\/H6DiR9FVfV","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3418560687,"id_str":"3418560687","name":"moh.ammeddki88557474","screen_name":"Ammeddki885Moh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":118,"friends_count":0,"listed_count":120,"favourites_count":0,"statuses_count":57341,"created_at":"Wed Aug 12 19:24:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"news","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/IWz75coIHV","expanded_url":"http:\/\/on.mash.to\/1SDlVal","display_url":"on.mash.to\/1SDlVal","indices":[15,38]}],"user_mentions":[],"symbols":[],"media":[{"id":663724996938829824,"id_str":"663724996938829824","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXj8WEAA2OF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXj8WEAA2OF8.jpg","url":"https:\/\/t.co\/H6DiR9FVfV","display_url":"pic.twitter.com\/H6DiR9FVfV","expanded_url":"http:\/\/twitter.com\/mashable\/status\/663724998348132352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663724998348132352,"source_status_id_str":"663724998348132352","source_user_id":972651,"source_user_id_str":"972651"}]},"extended_entities":{"media":[{"id":663724996938829824,"id_str":"663724996938829824","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGXj8WEAA2OF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGXj8WEAA2OF8.jpg","url":"https:\/\/t.co\/H6DiR9FVfV","display_url":"pic.twitter.com\/H6DiR9FVfV","expanded_url":"http:\/\/twitter.com\/mashable\/status\/663724998348132352\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663724998348132352,"source_status_id_str":"663724998348132352","source_user_id":972651,"source_user_id_str":"972651"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080089665"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118830534656,"id_str":"663728118830534656","text":"\u0627\u062e\u062a\u064a\u0627\u0631 #\u062e\u0627\u062f\u0645_\u0627\u0644\u062d\u0631\u0645\u064a\u0646_\u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646 \u0623\u0642\u0648\u0649 \u0634\u062e\u0635\u064a\u0629 \u0641\u064a \u0627\u0644\u0639\u0627\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064a .\nhttps:\/\/t.co\/C2iYDfY2hl\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629 #\u0639\u0627\u062c\u0644 https:\/\/t.co\/KvsttBcM0U","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323303922,"id_str":"3323303922","name":"\u0645\u0637\u0644\u0642 \u0641\u064a\u062d\u0627\u0646","screen_name":"fehanm197211","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":12,"listed_count":0,"favourites_count":3,"statuses_count":173,"created_at":"Sat Aug 22 04:03:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643106890965082112\/IksO75xR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643106890965082112\/IksO75xR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062e\u0627\u062f\u0645_\u0627\u0644\u062d\u0631\u0645\u064a\u0646_\u0627\u0644\u0634\u0631\u064a\u0641\u064a\u0646","indices":[7,29]},{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","indices":[84,93]},{"text":"\u0639\u0627\u062c\u0644","indices":[94,99]}],"urls":[{"url":"https:\/\/t.co\/C2iYDfY2hl","expanded_url":"http:\/\/www.aleqt.com\/2015\/11\/05\/article_1004020.html","display_url":"aleqt.com\/2015\/11\/05\/art\u2026","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":662157687778639872,"id_str":"662157687778639872","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB06KVXAAAjhQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB06KVXAAAjhQZ.jpg","url":"https:\/\/t.co\/KvsttBcM0U","display_url":"pic.twitter.com\/KvsttBcM0U","expanded_url":"http:\/\/twitter.com\/aleqtisadiah\/status\/662157691540869120\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":662157691540869120,"source_status_id_str":"662157691540869120","source_user_id":67277253,"source_user_id_str":"67277253"}]},"extended_entities":{"media":[{"id":662157687778639872,"id_str":"662157687778639872","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB06KVXAAAjhQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB06KVXAAAjhQZ.jpg","url":"https:\/\/t.co\/KvsttBcM0U","display_url":"pic.twitter.com\/KvsttBcM0U","expanded_url":"http:\/\/twitter.com\/aleqtisadiah\/status\/662157691540869120\/photo\/1","type":"photo","sizes":{"large":{"w":560,"h":350,"resize":"fit"},"medium":{"w":560,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":662157691540869120,"source_status_id_str":"662157691540869120","source_user_id":67277253,"source_user_id_str":"67277253"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080089658"} +{"delete":{"status":{"id":511520312148901888,"id_str":"511520312148901888","user_id":2192690657,"user_id_str":"2192690657"},"timestamp_ms":"1447080089956"}} +{"delete":{"status":{"id":663563077162508288,"id_str":"663563077162508288","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080089942"}} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118834839552,"id_str":"663728118834839552","text":"RT @MuhammetSanin_: B\u00f6yle hayat\u0131n...","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1287110923,"id_str":"1287110923","name":"\u00d6Z Bey","screen_name":"OzBeyKL","location":"\u0130stanbul, T\u00fcrkiye","url":null,"description":"DECK hesab\u0131d\u0131r - Edeple gelen l\u00fctufla gider...","protected":false,"verified":false,"followers_count":191856,"friends_count":2632,"listed_count":31,"favourites_count":15761,"statuses_count":1777,"created_at":"Thu Mar 21 22:16:15 +0000 2013","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657670545773830146\/Nfl2TvpL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657670545773830146\/Nfl2TvpL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287110923\/1445636022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727859924647936,"id_str":"663727859924647936","text":"B\u00f6yle hayat\u0131n...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":973879760,"id_str":"973879760","name":"Muhammet SAN\u0130N","screen_name":"MuhammetSanin_","location":"istanbul","url":"http:\/\/instagram.com\/muhammetsanin","description":"(DO\u011eA'M VIII.V.XV \u221e) - GALATASARAY-uA\nPamukkale \u00dcniversitesi - Sermaye Piyasas\u0131\nsiz bi rahat ya - fenomen mi kim ben mi hahaha ya\u015fad\u0131k\u00e7a bat\u0131yorum ben ya","protected":false,"verified":false,"followers_count":10704,"friends_count":148,"listed_count":3,"favourites_count":22404,"statuses_count":107,"created_at":"Tue Nov 27 13:19:38 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"19FC33","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663673591767126016\/dYMXodAe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663673591767126016\/dYMXodAe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/973879760\/1447066926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":80,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MuhammetSanin_","name":"Muhammet SAN\u0130N","id":973879760,"id_str":"973879760","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080089659"} +{"delete":{"status":{"id":663343652182360064,"id_str":"663343652182360064","user_id":115725427,"user_id_str":"115725427"},"timestamp_ms":"1447080089958"}} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118847381504,"id_str":"663728118847381504","text":"https:\/\/t.co\/9lilH5r4bz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":56015166,"id_str":"56015166","name":"MaBelle","screen_name":"HnstyVierge","location":null,"url":null,"description":"Success is not measured by the position one has reached in life, but rather by the obstacles overcome while trying to succeed.","protected":false,"verified":false,"followers_count":379,"friends_count":256,"listed_count":7,"favourites_count":1,"statuses_count":11375,"created_at":"Sun Jul 12 04:15:20 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/820484924\/8ffe44a20472e107191b80b6b1cebc11.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/820484924\/8ffe44a20472e107191b80b6b1cebc11.jpeg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000498331336\/521058ec780ecb370ed014c544a84456_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000498331336\/521058ec780ecb370ed014c544a84456_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/56015166\/1435876424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728118486736896,"id_str":"663728118486736896","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNQnXIAAkMXq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNQnXIAAkMXq.jpg","url":"https:\/\/t.co\/9lilH5r4bz","display_url":"pic.twitter.com\/9lilH5r4bz","expanded_url":"http:\/\/twitter.com\/HnstyVierge\/status\/663728118847381504\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728118486736896,"id_str":"663728118486736896","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNQnXIAAkMXq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNQnXIAAkMXq.jpg","url":"https:\/\/t.co\/9lilH5r4bz","display_url":"pic.twitter.com\/9lilH5r4bz","expanded_url":"http:\/\/twitter.com\/HnstyVierge\/status\/663728118847381504\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447080089662"} +{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118851588096,"id_str":"663728118851588096","text":"Ser capaz de dejar la \"zona de confort\" para emprender una nueva vida, cuesta mucho y es algo que es digno de emular https:\/\/t.co\/wP94Ysx5ne","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87744696,"id_str":"87744696","name":"F\u00e9lix Jose Matos","screen_name":"felixmatos77","location":null,"url":"http:\/\/derechosyalgomas.blogspot.com","description":"Venezolano\/Abogado\/URU\/Scouts\/LDS o SUD\/(E) Dcho Penal y Criminalista\/Mgr. Investigaci\u00f3n Criminal y Ciencias Forenses\/UAB\/Aprendiz de todo, maestro de Nada...","protected":false,"verified":false,"followers_count":2361,"friends_count":2461,"listed_count":43,"favourites_count":2113,"statuses_count":30043,"created_at":"Thu Nov 05 18:03:28 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546433247\/justicia-electoral.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546433247\/justicia-electoral.jpg","profile_background_tile":true,"profile_link_color":"F03118","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7DA93","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633258143401775104\/xEMS5VmP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633258143401775104\/xEMS5VmP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87744696\/1444244354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728108298756096,"id_str":"663728108298756096","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMqqW4AAcgPd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMqqW4AAcgPd.jpg","url":"https:\/\/t.co\/wP94Ysx5ne","display_url":"pic.twitter.com\/wP94Ysx5ne","expanded_url":"http:\/\/twitter.com\/felixmatos77\/status\/663728118851588096\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":656,"resize":"fit"},"medium":{"w":600,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728108298756096,"id_str":"663728108298756096","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMqqW4AAcgPd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMqqW4AAcgPd.jpg","url":"https:\/\/t.co\/wP94Ysx5ne","display_url":"pic.twitter.com\/wP94Ysx5ne","expanded_url":"http:\/\/twitter.com\/felixmatos77\/status\/663728118851588096\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":656,"resize":"fit"},"medium":{"w":600,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080089663"} +{"delete":{"status":{"id":663563064600563712,"id_str":"663563064600563712","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080089954"}} +{"delete":{"status":{"id":624112766585044992,"id_str":"624112766585044992","user_id":109399764,"user_id_str":"109399764"},"timestamp_ms":"1447080090355"}} +{"delete":{"status":{"id":663725954599100420,"id_str":"663725954599100420","user_id":3371091263,"user_id_str":"3371091263"},"timestamp_ms":"1447080090567"}} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123020726273,"id_str":"663728123020726273","text":"Quiero que sea Diciembre para conocer a Sofffffff","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":635200512,"id_str":"635200512","name":"Luciana","screen_name":"LucianaSFranck","location":null,"url":null,"description":"Si nada puede salvarnos de la muerte, que la danza nos salv\u00e9 de la vida. || \u26a1It's real for us\u26a1","protected":false,"verified":false,"followers_count":437,"friends_count":188,"listed_count":2,"favourites_count":3007,"statuses_count":20633,"created_at":"Sat Jul 14 04:59:36 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"10FFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508664730123116545\/qbnL9Cvw.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508664730123116545\/qbnL9Cvw.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652849087335804929\/eG1Ucq69_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652849087335804929\/eG1Ucq69_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635200512\/1444486953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01df29355ffa0d6b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01df29355ffa0d6b.json","place_type":"city","name":"Santa Rosa","full_name":"Santa Rosa, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-64.338104,-36.662555],[-64.338104,-36.575113],[-64.247851,-36.575113],[-64.247851,-36.662555]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080090657"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123029102592,"id_str":"663728123029102592","text":"RT @ziamsurtei: sobre esses 15 segundos de End Of The Day EU NEM CHOREI S\u00d3 TREMI #4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804576064,"id_str":"2804576064","name":"\u273egi\u273e","screen_name":"thefirstlarry","location":"\u2741harryandlouis\u2741-20\/09","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/22471081033990144","description":"\uff65\uff9f\u0cc3 \u00b8* \u2729\u2027\u208a\u02da\u273a \u2727 \u0b6d\u0325*\uff9e[louis to harry] hahaha I am being slowly seduced by your curls\uff65\uff9f\u0cc3 \u00b8* \u2729\u2027\u208a\u02da\u273a \u2727 \u0b6d\u0325*\uff9e\n (\u25e1\u203f\u25e1\u273f)","protected":false,"verified":false,"followers_count":2130,"friends_count":1469,"listed_count":1,"favourites_count":4339,"statuses_count":18878,"created_at":"Fri Sep 12 00:34:27 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623507531969617921\/FAhHYHLT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623507531969617921\/FAhHYHLT.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663153832281567232\/3_7mCS1u_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663153832281567232\/3_7mCS1u_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804576064\/1446943083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:08 +0000 2015","id":663727275087691780,"id_str":"663727275087691780","text":"sobre esses 15 segundos de End Of The Day EU NEM CHOREI S\u00d3 TREMI #4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466461532,"id_str":"1466461532","name":"luna PROMISE \u262a\u2740*\u0cc3","screen_name":"ziamsurtei","location":"zquad \u2022 oned ","url":"https:\/\/twitter.com\/real_liam_payne\/status\/10656271975841792","description":"\u272808.05.14\u2728 \u2740ziam is more real than me\u2740 \u2022 julia \u2022 ada \u2022 ingrid \u2022 ziam never died \u2022 zaynie&leeyum","protected":false,"verified":false,"followers_count":9376,"friends_count":6672,"listed_count":20,"favourites_count":8851,"statuses_count":148045,"created_at":"Wed May 29 05:19:22 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"E61574","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588545760737669122\/Ld2Ikoly.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588545760737669122\/Ld2Ikoly.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663190901376749568\/4FRHXq3G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663190901376749568\/4FRHXq3G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466461532\/1446951834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[65,81]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[81,97]}],"urls":[],"user_mentions":[{"screen_name":"ziamsurtei","name":"luna PROMISE \u262a\u2740*\u0cc3","id":1466461532,"id_str":"1466461532","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123045945344,"id_str":"663728123045945344","text":"RT @bbcmundo: Parlamento catal\u00e1n aprueba declaraci\u00f3n de independencia https:\/\/t.co\/qXfWbr6DrI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3361072527,"id_str":"3361072527","name":"Manel |I\\*\/I|","screen_name":"estu_finest","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46,"friends_count":259,"listed_count":0,"favourites_count":90,"statuses_count":391,"created_at":"Sun Jul 05 19:18:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617774844982226944\/tdRTQErs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617774844982226944\/tdRTQErs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3361072527\/1436124385","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:07 +0000 2015","id":663726513850884096,"id_str":"663726513850884096","text":"Parlamento catal\u00e1n aprueba declaraci\u00f3n de independencia https:\/\/t.co\/qXfWbr6DrI","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":10012122,"id_str":"10012122","name":"BBC Mundo","screen_name":"bbcmundo","location":"Londres, Inglaterra.","url":"http:\/\/www.bbcmundo.com","description":"Twitter oficial de BBC Mundo. Aqu\u00ed encuentran una selecci\u00f3n de lo mejor de nuestro contenido y los invitamos a una conversaci\u00f3n global. \u00bfSe animan?","protected":false,"verified":true,"followers_count":1446065,"friends_count":324,"listed_count":15049,"favourites_count":701,"statuses_count":90341,"created_at":"Tue Nov 06 21:50:06 +0000 2007","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/80111333\/twitter_final_bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/80111333\/twitter_final_bg.jpg","profile_background_tile":false,"profile_link_color":"003366","profile_sidebar_border_color":"C2C2C2","profile_sidebar_fill_color":"E8E8E8","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2364324949\/4gp59x1puhpspi60jgzn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2364324949\/4gp59x1puhpspi60jgzn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/10012122\/1414598016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":12,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qXfWbr6DrI","expanded_url":"http:\/\/bbc.in\/1SDjogp","display_url":"bbc.in\/1SDjogp","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qXfWbr6DrI","expanded_url":"http:\/\/bbc.in\/1SDjogp","display_url":"bbc.in\/1SDjogp","indices":[70,93]}],"user_mentions":[{"screen_name":"bbcmundo","name":"BBC Mundo","id":10012122,"id_str":"10012122","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080090663"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033296896,"id_str":"663728123033296896","text":"RT @CarAutoDaily: ... - https:\/\/t.co\/3NXw1ERF0K","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1711752116,"id_str":"1711752116","name":"Brock Joshi","screen_name":"BrockJoshi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":47,"friends_count":83,"listed_count":3,"favourites_count":4748,"statuses_count":5984,"created_at":"Fri Aug 30 04:13:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559995508198895616\/ruKZB3xu_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559995508198895616\/ruKZB3xu_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1711752116\/1422431312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:37:55 +0000 2015","id":663636624710889473,"id_str":"663636624710889473","text":"... - https:\/\/t.co\/3NXw1ERF0K","source":"\u003ca href=\"http:\/\/carautodaily.com\" rel=\"nofollow\"\u003ecarautodaily\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214491411,"id_str":"3214491411","name":"Car Auto Daily","screen_name":"CarAutoDaily","location":"Las Vegas, NV","url":"http:\/\/carautodaily.com","description":"http:\/\/CarAutoDaily.com is America's Most Popular Collector Car website featuring Classic Cars, Muscle Cars and Street Rods with thousands of photos","protected":false,"verified":false,"followers_count":101607,"friends_count":1178,"listed_count":11,"favourites_count":4,"statuses_count":2283,"created_at":"Mon Apr 27 18:58:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657665726270967808\/XRETF-t0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657665726270967808\/XRETF-t0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214491411\/1445634717","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2989,"favorite_count":1937,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3NXw1ERF0K","expanded_url":"http:\/\/carautodaily.com\/9421-2\/","display_url":"carautodaily.com\/9421-2\/","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3NXw1ERF0K","expanded_url":"http:\/\/carautodaily.com\/9421-2\/","display_url":"carautodaily.com\/9421-2\/","indices":[25,48]}],"user_mentions":[{"screen_name":"CarAutoDaily","name":"Car Auto Daily","id":3214491411,"id_str":"3214491411","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123020746752,"id_str":"663728123020746752","text":"Vou me casar com a Thaay","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2578831333,"id_str":"2578831333","name":"Bella","screen_name":"px_Milla","location":null,"url":null,"description":"1ano e 2meses \u2665 \nWhats: 96787-2323\n Snap: Camila_santos","protected":false,"verified":false,"followers_count":397,"friends_count":112,"listed_count":0,"favourites_count":4020,"statuses_count":15109,"created_at":"Fri Jun 20 15:01:40 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533025099314503680\/9N96jldh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533025099314503680\/9N96jldh.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654512912300646400\/dCHGMJFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654512912300646400\/dCHGMJFy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2578831333\/1445257197","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090657"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123050070017,"id_str":"663728123050070017","text":"RT @mysteriousfact: Drinking 2 cups of cold water on an empty stomach can boost metabolism by 30%.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113370493,"id_str":"113370493","name":"BigZooWap","screen_name":"Legacy_Breezy","location":"youtube. com\/BraydenCoulter","url":"http:\/\/twitter.com","description":"Breezy |Dancer| |Singer| Soon to be Star @chrisbrown 's proteg\u00e9 Crushing on the Cutest IG:Yuung_Breezy","protected":false,"verified":false,"followers_count":247,"friends_count":895,"listed_count":3,"favourites_count":5513,"statuses_count":9151,"created_at":"Thu Feb 11 14:59:06 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633404951537025024\/9snI_O_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633404951537025024\/9snI_O_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113370493\/1445811127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:30:10 +0000 2015","id":663121292422332416,"id_str":"663121292422332416","text":"Drinking 2 cups of cold water on an empty stomach can boost metabolism by 30%.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348058612,"id_str":"348058612","name":"Mysterious Fact","screen_name":"mysteriousfact","location":"Original Account","url":"https:\/\/www.facebook.com\/mysteriousfactz","description":"Daily tweets filled with jaw-dropping facts, you won't be leaving this page without learning something new! #contact: woahrelatabletwt@gmail.com","protected":false,"verified":false,"followers_count":809341,"friends_count":598,"listed_count":1337,"favourites_count":106,"statuses_count":22874,"created_at":"Wed Aug 03 20:19:44 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000050365084\/7241b994130750912039122b9bca5121.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000050365084\/7241b994130750912039122b9bca5121.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/564872813752774657\/5r_nPvVt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/564872813752774657\/5r_nPvVt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/348058612\/1423511414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":242,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mysteriousfact","name":"Mysterious Fact","id":348058612,"id_str":"348058612","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123050094593,"id_str":"663728123050094593","text":"RT @SomaIntimates: #MondayMotivation for the holidays: https:\/\/t.co\/plX6eUqbvw","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":285629681,"id_str":"285629681","name":"Thea, #SYBD Founder","screen_name":"soyouvebeendump","location":"Glasgow UK or Sunny CA","url":"http:\/\/www.soyouvebeendumped.com","description":"http:\/\/t.co\/3oxkIh1j3R (SYBD) has been helping the lovelorn, 24\/7 since 2k. Tweets are: stories, news, advice, videos, anthems & our exciting new developments \u2665","protected":false,"verified":false,"followers_count":463,"friends_count":460,"listed_count":8,"favourites_count":1377,"statuses_count":1895,"created_at":"Thu Apr 21 14:13:46 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/313020069\/BIGNEWlogo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/313020069\/BIGNEWlogo.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"2143EB","profile_sidebar_fill_color":"F0F5F5","profile_text_color":"285AF0","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620592015009542144\/JhsWVjaj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620592015009542144\/JhsWVjaj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/285629681\/1436795377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:25 +0000 2015","id":663720803263840256,"id_str":"663720803263840256","text":"#MondayMotivation for the holidays: https:\/\/t.co\/plX6eUqbvw","source":"\u003ca href=\"http:\/\/percolate.com\" rel=\"nofollow\"\u003ePercolate\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70510990,"id_str":"70510990","name":"Soma Intimates","screen_name":"SomaIntimates","location":null,"url":"http:\/\/www.soma.com","description":"Tweeting from Your New Bra Destination, where beautiful begins underneath. \r\nSoma offers beautiful lingerie, loungewear & beauty. So many reasons to \r\n#LoveSoma","protected":false,"verified":true,"followers_count":17753,"friends_count":599,"listed_count":220,"favourites_count":1444,"statuses_count":6026,"created_at":"Mon Aug 31 21:51:17 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEAD1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605926451\/1ydwppjn1fa9ov4ld2c8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605926451\/1ydwppjn1fa9ov4ld2c8.jpeg","profile_background_tile":false,"profile_link_color":"333333","profile_sidebar_border_color":"E0E0E0","profile_sidebar_fill_color":"EDEDED","profile_text_color":"D6272F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657179358713352192\/F87Eizlo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657179358713352192\/F87Eizlo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70510990\/1445518730","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":4,"entities":{"hashtags":[{"text":"MondayMotivation","indices":[0,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720802928361472,"id_str":"663720802928361472","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","url":"https:\/\/t.co\/plX6eUqbvw","display_url":"pic.twitter.com\/plX6eUqbvw","expanded_url":"http:\/\/twitter.com\/SomaIntimates\/status\/663720803263840256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720802928361472,"id_str":"663720802928361472","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","url":"https:\/\/t.co\/plX6eUqbvw","display_url":"pic.twitter.com\/plX6eUqbvw","expanded_url":"http:\/\/twitter.com\/SomaIntimates\/status\/663720803263840256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MondayMotivation","indices":[19,36]}],"urls":[],"user_mentions":[{"screen_name":"SomaIntimates","name":"Soma Intimates","id":70510990,"id_str":"70510990","indices":[3,17]}],"symbols":[],"media":[{"id":663720802928361472,"id_str":"663720802928361472","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","url":"https:\/\/t.co\/plX6eUqbvw","display_url":"pic.twitter.com\/plX6eUqbvw","expanded_url":"http:\/\/twitter.com\/SomaIntimates\/status\/663720803263840256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663720803263840256,"source_status_id_str":"663720803263840256","source_user_id":70510990,"source_user_id_str":"70510990"}]},"extended_entities":{"media":[{"id":663720802928361472,"id_str":"663720802928361472","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCjcCVAAANR2h.jpg","url":"https:\/\/t.co\/plX6eUqbvw","display_url":"pic.twitter.com\/plX6eUqbvw","expanded_url":"http:\/\/twitter.com\/SomaIntimates\/status\/663720803263840256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663720803263840256,"source_status_id_str":"663720803263840256","source_user_id":70510990,"source_user_id_str":"70510990"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123050070016,"id_str":"663728123050070016","text":"Tengo un abrazo listo para cuando te vea.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3509475433,"id_str":"3509475433","name":"Cecilia Prieto","screen_name":"CeciprietoT","location":null,"url":null,"description":"El anillo de casamiento, se coloca en el dedo anular de la mano izquierda, porque es el \u00fanico dedo que tiene una vena ligada al coraz\u00f3n","protected":false,"verified":false,"followers_count":24,"friends_count":174,"listed_count":0,"favourites_count":0,"statuses_count":1284,"created_at":"Wed Sep 09 23:44:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644645451094982656\/EwiSXK3Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644645451094982656\/EwiSXK3Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3509475433\/1442530428","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123024945152,"id_str":"663728123024945152","text":"RT @opfavestyles: Gigi Hadid streetstyle https:\/\/t.co\/1Tu927IuOB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2309932291,"id_str":"2309932291","name":"Gih","screen_name":"changesnarry","location":"10.05 \u2764\ufe0f","url":null,"description":"Quero mandar um salve pra todas as Harry girls q dividem essa vida de tortura comigo, amo vcs","protected":false,"verified":false,"followers_count":2082,"friends_count":1642,"listed_count":1,"favourites_count":4585,"statuses_count":39404,"created_at":"Sat Jan 25 12:09:53 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606852763977433088\/Lacn8sWC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606852763977433088\/Lacn8sWC.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631965044100608000\/0I9MoeZj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631965044100608000\/0I9MoeZj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2309932291\/1439507215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:02:03 +0000 2015","id":663672897727102976,"id_str":"663672897727102976","text":"Gigi Hadid streetstyle https:\/\/t.co\/1Tu927IuOB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2756165179,"id_str":"2756165179","name":"opfavestyles","screen_name":"opfavestyles","location":null,"url":"http:\/\/ask.fm\/opfavestyles","description":"owner: frankie co-owners: michela, rita, leslie","protected":false,"verified":false,"followers_count":75051,"friends_count":51,"listed_count":155,"favourites_count":1508,"statuses_count":6698,"created_at":"Fri Aug 22 19:15:14 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663007250986999808\/oG0nADAS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663007250986999808\/oG0nADAS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756165179\/1445676106","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":305,"favorite_count":441,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663672851619143680,"id_str":"663672851619143680","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":751,"resize":"fit"},"large":{"w":500,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672851619143680,"id_str":"663672851619143680","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":751,"resize":"fit"},"large":{"w":500,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663672851623362560,"id_str":"663672851623362560","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TgUwAAHpU8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TgUwAAHpU8.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":542,"resize":"fit"},"large":{"w":500,"h":798,"resize":"fit"},"medium":{"w":500,"h":798,"resize":"fit"}}},{"id":663672851631726592,"id_str":"663672851631726592","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TiUYAACZcx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TiUYAACZcx.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":617,"resize":"fit"},"medium":{"w":500,"h":617,"resize":"fit"}}},{"id":663672852881649664,"id_str":"663672852881649664","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8YMUsAAczND.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8YMUsAAczND.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":810,"resize":"fit"},"large":{"w":499,"h":810,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":550,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"opfavestyles","name":"opfavestyles","id":2756165179,"id_str":"2756165179","indices":[3,16]}],"symbols":[],"media":[{"id":663672851619143680,"id_str":"663672851619143680","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":751,"resize":"fit"},"large":{"w":500,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663672897727102976,"source_status_id_str":"663672897727102976","source_user_id":2756165179,"source_user_id_str":"2756165179"}]},"extended_entities":{"media":[{"id":663672851619143680,"id_str":"663672851619143680","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TfUYAApozn.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":751,"resize":"fit"},"large":{"w":500,"h":751,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663672897727102976,"source_status_id_str":"663672897727102976","source_user_id":2756165179,"source_user_id_str":"2756165179"},{"id":663672851623362560,"id_str":"663672851623362560","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TgUwAAHpU8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TgUwAAHpU8.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":542,"resize":"fit"},"large":{"w":500,"h":798,"resize":"fit"},"medium":{"w":500,"h":798,"resize":"fit"}},"source_status_id":663672897727102976,"source_status_id_str":"663672897727102976","source_user_id":2756165179,"source_user_id_str":"2756165179"},{"id":663672851631726592,"id_str":"663672851631726592","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8TiUYAACZcx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8TiUYAACZcx.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":617,"resize":"fit"},"medium":{"w":500,"h":617,"resize":"fit"}},"source_status_id":663672897727102976,"source_status_id_str":"663672897727102976","source_user_id":2756165179,"source_user_id_str":"2756165179"},{"id":663672852881649664,"id_str":"663672852881649664","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW8YMUsAAczND.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW8YMUsAAczND.jpg","url":"https:\/\/t.co\/1Tu927IuOB","display_url":"pic.twitter.com\/1Tu927IuOB","expanded_url":"http:\/\/twitter.com\/opfavestyles\/status\/663672897727102976\/photo\/1","type":"photo","sizes":{"medium":{"w":499,"h":810,"resize":"fit"},"large":{"w":499,"h":810,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":550,"resize":"fit"}},"source_status_id":663672897727102976,"source_status_id_str":"663672897727102976","source_user_id":2756165179,"source_user_id_str":"2756165179"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090658"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123024805888,"id_str":"663728123024805888","text":"RT @danjisoo: 151109 \ub2c9\ucfe4 \ucd9c\uad6d \u2665 https:\/\/t.co\/8bxYWzwDpb","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2335249512,"id_str":"2335249512","name":"\u25c4 \u0e1b\u0e31\u0e48\u0e19\u0e07\u0e32\u0e19ing \u25ba","screen_name":"_MNK99","location":null,"url":null,"description":"\u2764\ufe0f \u0e23\u0e31\u0e01 @Khunnie0624 \u2764\ufe0f2PM\u2764\ufe0f12.10.13\u2764\ufe0fTK\u2764\ufe0f||\u274c\u0e44\u0e21\u0e48\u0e2d\u0e34\u0e19\u0e41\u0e1f\u0e21\u274c||","protected":false,"verified":false,"followers_count":169,"friends_count":159,"listed_count":5,"favourites_count":77,"statuses_count":85524,"created_at":"Sun Feb 09 15:09:53 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554618718152433664\/C3OKFjTf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554618718152433664\/C3OKFjTf.jpeg","profile_background_tile":true,"profile_link_color":"FF0033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368793188503553\/5dtnYlAq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368793188503553\/5dtnYlAq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335249512\/1446823726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728066519175168,"id_str":"663728066519175168","text":"151109 \ub2c9\ucfe4 \ucd9c\uad6d \u2665 https:\/\/t.co\/8bxYWzwDpb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":130131031,"id_str":"130131031","name":"AlterEgo","screen_name":"danjisoo","location":null,"url":"http:\/\/blog.naver.com\/danjisoo","description":"2pm \ub2c9\ucfe4(Nichkhun) Fan. Other artists Fans, Do not follow me.","protected":false,"verified":false,"followers_count":20282,"friends_count":59,"listed_count":295,"favourites_count":6,"statuses_count":1381,"created_at":"Tue Apr 06 11:57:51 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458703796525215744\/Y7MiO4ft.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458703796525215744\/Y7MiO4ft.jpeg","profile_background_tile":false,"profile_link_color":"EB5979","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6AD00","profile_text_color":"F7C71D","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000179672906\/06d3c4fef3bd82c8da3758df087432c8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000179672906\/06d3c4fef3bd82c8da3758df087432c8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/130131031\/1406202640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727997153767426,"id_str":"663727997153767426","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":405,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727997153767426,"id_str":"663727997153767426","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":405,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":500,"resize":"fit"}}},{"id":663728065323753472,"id_str":"663728065323753472","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKKkUYAAOvvG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKKkUYAAOvvG.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}}},{"id":663728050404593664,"id_str":"663728050404593664","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJS_UEAA13Hn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJS_UEAA13Hn.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}}},{"id":663728055781736448,"id_str":"663728055781736448","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJnBUwAAHDUv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJnBUwAAHDUv.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danjisoo","name":"AlterEgo","id":130131031,"id_str":"130131031","indices":[3,12]}],"symbols":[],"media":[{"id":663727997153767426,"id_str":"663727997153767426","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":405,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":500,"resize":"fit"}},"source_status_id":663728066519175168,"source_status_id_str":"663728066519175168","source_user_id":130131031,"source_user_id_str":"130131031"}]},"extended_entities":{"media":[{"id":663727997153767426,"id_str":"663727997153767426","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGMnU8AIZQQf.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":405,"resize":"fit"},"small":{"w":340,"h":229,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":500,"resize":"fit"}},"source_status_id":663728066519175168,"source_status_id_str":"663728066519175168","source_user_id":130131031,"source_user_id_str":"130131031"},{"id":663728065323753472,"id_str":"663728065323753472","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKKkUYAAOvvG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKKkUYAAOvvG.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}},"source_status_id":663728066519175168,"source_status_id_str":"663728066519175168","source_user_id":130131031,"source_user_id_str":"130131031"},{"id":663728050404593664,"id_str":"663728050404593664","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJS_UEAA13Hn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJS_UEAA13Hn.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}},"source_status_id":663728066519175168,"source_status_id_str":"663728066519175168","source_user_id":130131031,"source_user_id_str":"130131031"},{"id":663728055781736448,"id_str":"663728055781736448","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJJnBUwAAHDUv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJJnBUwAAHDUv.jpg","url":"https:\/\/t.co\/8bxYWzwDpb","display_url":"pic.twitter.com\/8bxYWzwDpb","expanded_url":"http:\/\/twitter.com\/danjisoo\/status\/663728066519175168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":891,"resize":"fit"},"small":{"w":340,"h":505,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":740,"h":1100,"resize":"fit"}},"source_status_id":663728066519175168,"source_status_id_str":"663728066519175168","source_user_id":130131031,"source_user_id_str":"130131031"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080090658"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123054301184,"id_str":"663728123054301184","text":"RT @DCWLN: The dumbest part about this #BannerGate thing? Those people thought Cam was coming over to sign it. You idiots.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":71977771,"id_str":"71977771","name":"Daniel Guy","screen_name":"danny_g13","location":"the qc","url":"http:\/\/dannyg13.wordpress.com\/","description":"husband \/ father \/ self proclaimed nerd \/ fifa addict \/ panthers nation \/ futbol \/ #drafttwitter \/ freelance writer http:\/\/704sports.com\/","protected":false,"verified":false,"followers_count":1585,"friends_count":1730,"listed_count":40,"favourites_count":5216,"statuses_count":62837,"created_at":"Sun Sep 06 05:54:29 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495578730702462976\/bBD7Q-x-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495578730702462976\/bBD7Q-x-.jpeg","profile_background_tile":false,"profile_link_color":"1090CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651565456382410752\/5joR_bij_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651565456382410752\/5joR_bij_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/71977771\/1406990190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728091764801536,"id_str":"663728091764801536","text":"The dumbest part about this #BannerGate thing? Those people thought Cam was coming over to sign it. You idiots.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":494400492,"id_str":"494400492","name":"Eight and OH YEAH","screen_name":"DCWLN","location":"Charlotte, NC","url":null,"description":"Your home for knee jerk reactions and loss induced tears. Charlotte\/Carolina sports babble alter-ego of @clay_mitchell. Formerly known as @DTBWLN","protected":false,"verified":false,"followers_count":989,"friends_count":500,"listed_count":36,"favourites_count":77,"statuses_count":50045,"created_at":"Thu Feb 16 21:25:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"007486","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642034424901697536\/S1sQOYh1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642034424901697536\/S1sQOYh1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/494400492\/1395626003","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"BannerGate","indices":[28,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BannerGate","indices":[39,50]}],"urls":[],"user_mentions":[{"screen_name":"DCWLN","name":"Eight and OH YEAH","id":494400492,"id_str":"494400492","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090665"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033337856,"id_str":"663728123033337856","text":"RT @BarbiDeianaa_: Belen me dijo, nos vemos en diciembre \ud83d\ude02\ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322403740,"id_str":"3322403740","name":"Camilu\u2665\/\/L.R.H #4 \u270c","screen_name":"Belugalardi27","location":null,"url":null,"description":"La alegr\u00eda del servicio para un mundo en cambio\/\/ Dedos de bailarina, pies de princesa\u2764_Sarita \/\/L.R.H #4\u270c\/\/ #Pilotos2015","protected":false,"verified":false,"followers_count":341,"friends_count":1081,"listed_count":0,"favourites_count":260,"statuses_count":441,"created_at":"Sat Jun 13 04:40:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609585617828233216\/U997myFK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609585617828233216\/U997myFK.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622560719414927360\/L-Gd6R4i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622560719414927360\/L-Gd6R4i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322403740\/1434171675","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:50:58 +0000 2015","id":663549311628779522,"id_str":"663549311628779522","text":"Belen me dijo, nos vemos en diciembre \ud83d\ude02\ud83d\ude1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2768680263,"id_str":"2768680263","name":"Tana","screen_name":"BarbiDeianaa_","location":null,"url":null,"description":"\u25c711\/16 \u2661\u276423\/16\u2764\u2764\u2661 \/\/SOY DE PATO Y DE NADIE MAS. \/\/ I can't waste my time with useless people","protected":false,"verified":false,"followers_count":487,"friends_count":474,"listed_count":3,"favourites_count":4949,"statuses_count":9910,"created_at":"Sat Sep 13 08:53:27 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609477008737849344\/uplO-lxn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609477008737849344\/uplO-lxn.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660669986470559744\/7cguLreD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660669986470559744\/7cguLreD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2768680263\/1447061640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BarbiDeianaa_","name":"Tana","id":2768680263,"id_str":"2768680263","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041718273,"id_str":"663728123041718273","text":"RT @artfeeIs: https:\/\/t.co\/dDnX5ZV3E9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1093177723,"id_str":"1093177723","name":"\u0398\u03b7\u03bd\u03c4\u03b9\u03b1 \u262f","screen_name":"CintiadR1","location":"Madrid, Comunidad de Madrid","url":"http:\/\/Instagram.com\/cintia_dr","description":"Escritora emprendida y futura cineasta ~K\u0394RM\u0394~queen of disaster~Lana Del Rey~\u2018I believe in the person I want to become.\u2019","protected":false,"verified":false,"followers_count":355,"friends_count":850,"listed_count":2,"favourites_count":44977,"statuses_count":5395,"created_at":"Tue Jan 15 20:30:57 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566991784929005570\/eNWJd3NQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566991784929005570\/eNWJd3NQ.jpeg","profile_background_tile":true,"profile_link_color":"FF0091","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646260585169092608\/0d37WfLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646260585169092608\/0d37WfLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1093177723\/1447079727","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:32:59 +0000 2015","id":663454189364903936,"id_str":"663454189364903936","text":"https:\/\/t.co\/dDnX5ZV3E9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3383370436,"id_str":"3383370436","name":"artfeels","screen_name":"artfeeIs","location":null,"url":null,"description":"\u2022 expressing feelings via art \u2022 @heartbreak","protected":false,"verified":false,"followers_count":56822,"friends_count":1869,"listed_count":111,"favourites_count":140,"statuses_count":190,"created_at":"Sun Jul 19 17:10:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622815914963169280\/6A196VhK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622815914963169280\/6A196VhK.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638138048929243137\/48vPTMQF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638138048929243137\/48vPTMQF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3383370436\/1438048622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":163,"favorite_count":356,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663454178518237184,"id_str":"663454178518237184","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","url":"https:\/\/t.co\/dDnX5ZV3E9","display_url":"pic.twitter.com\/dDnX5ZV3E9","expanded_url":"http:\/\/twitter.com\/artfeeIs\/status\/663454189364903936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663454178518237184,"id_str":"663454178518237184","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","url":"https:\/\/t.co\/dDnX5ZV3E9","display_url":"pic.twitter.com\/dDnX5ZV3E9","expanded_url":"http:\/\/twitter.com\/artfeeIs\/status\/663454189364903936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"artfeeIs","name":"artfeels","id":3383370436,"id_str":"3383370436","indices":[3,12]}],"symbols":[],"media":[{"id":663454178518237184,"id_str":"663454178518237184","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","url":"https:\/\/t.co\/dDnX5ZV3E9","display_url":"pic.twitter.com\/dDnX5ZV3E9","expanded_url":"http:\/\/twitter.com\/artfeeIs\/status\/663454189364903936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663454189364903936,"source_status_id_str":"663454189364903936","source_user_id":3383370436,"source_user_id_str":"3383370436"}]},"extended_entities":{"media":[{"id":663454178518237184,"id_str":"663454178518237184","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUQD2tUAAAdp-u.jpg","url":"https:\/\/t.co\/dDnX5ZV3E9","display_url":"pic.twitter.com\/dDnX5ZV3E9","expanded_url":"http:\/\/twitter.com\/artfeeIs\/status\/663454189364903936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663454189364903936,"source_status_id_str":"663454189364903936","source_user_id":3383370436,"source_user_id_str":"3383370436"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123024928768,"id_str":"663728123024928768","text":"Greedy polar bear breaks into BBC crew's hut, steals all the bacon https:\/\/t.co\/l5eYLK34dZ #SoloConectate","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2203345754,"id_str":"2203345754","name":"SoloConectate.com","screen_name":"Solo_Conectate","location":"Mexico","url":"http:\/\/www.soloconectate.com","description":"\u00a1Si quieres un sitio web, no te compliques! Tu hospedaje facil","protected":false,"verified":false,"followers_count":2294,"friends_count":16,"listed_count":112,"favourites_count":7,"statuses_count":131726,"created_at":"Tue Nov 19 16:05:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000762041039\/39e32c2578d408d011edd084f087f33c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000762041039\/39e32c2578d408d011edd084f087f33c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203345754\/1384878869","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SoloConectate","indices":[91,105]}],"urls":[{"url":"https:\/\/t.co\/l5eYLK34dZ","expanded_url":"http:\/\/ift.tt\/1MRZJKE","display_url":"ift.tt\/1MRZJKE","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090658"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123045789696,"id_str":"663728123045789696","text":"\u30d1\u30b9\u30bf\u306e\u30bd\u30f3\u30b0\u30aa\u30d6\u30b0\u30e9\u30f3\u30c7\u9b3c\u5f37\u304f\u3066\u7b11\u3046\u3093\u3060\u3051\u3069","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":763043156,"id_str":"763043156","name":"\u601d\u9060","screen_name":"sion_BB","location":"\u6e0b\u8c37\u3000\u6e9d\u306e\u53e3\u3000\u5ddd\u5d0e","url":null,"description":"\u30a2\u30b1\u30b2\u30fc\u661f\u4eba \u30b0\u30e9\u30d6\u30eb\u3069\u30cf\u30de\u308a DDFF\u8208\u5473\u3042\u308a \u25a1\u30a2\u30b1\u30b2\u30fc\u30d7\u30ed\u30d5\u6226\u7e3e\u7b49\u2192\u3010\u30dc\u30fc\u30c0\u30fc\u30d6\u30ec\u30a4\u30af\u3011 ACE \u7b2c3\u671f\u30a8\u30fc\u30b9\u30dc\u30fc\u30c0\u30fc\u6700\u7d42\u6c7a\u6226\u512a\u52dd SEGA\u516c\u5f0fBUDDY!\u6c7a\u52dd\u5927\u4f1a\u9032\u51fa\u3000\u3010LoV3\u3011 \u30f4\u30a1\u30df \u5168\u56fd\u5927\u4f1a\u7b2c1\u56deBest16,\u7b2c2\u56deBest4\u3000\u3010WlW\u3011\u30a2\u30b7\u30a7A4\u306a\u3046\u3000\u3010CoJ\u3011Ver1.0\u6700\u9ad847\u4f4d","protected":false,"verified":false,"followers_count":961,"friends_count":358,"listed_count":40,"favourites_count":154,"statuses_count":30985,"created_at":"Fri Aug 17 05:12:21 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644492810310172672\/9u41D-M7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644492810310172672\/9u41D-M7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/763043156\/1427558344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090663"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123020619776,"id_str":"663728123020619776","text":"@JmbbBltr_ hahahaha oo nga solid haha halo halo na feelings natin kanina kung malungkot or proud hahaha. fsgoals\ud83d\ude02\ud83d\udcaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727478897115138,"in_reply_to_status_id_str":"663727478897115138","in_reply_to_user_id":3263211397,"in_reply_to_user_id_str":"3263211397","in_reply_to_screen_name":"JmbbBltr_","user":{"id":3803664144,"id_str":"3803664144","name":"Nov.11","screen_name":"shanjssvlla_","location":null,"url":null,"description":"Grd10 | Fatimanian | Volleyball | Player | Lady Blue Eagles | Dennise Michelle Garcia Lazaro \u2665\u2661\u2665","protected":false,"verified":false,"followers_count":181,"friends_count":203,"listed_count":0,"favourites_count":2077,"statuses_count":3430,"created_at":"Tue Oct 06 13:48:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663307312640094208\/q1xadAsd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663307312640094208\/q1xadAsd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3803664144\/1446774130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JmbbBltr_","name":"JamBalatero.","id":3263211397,"id_str":"3263211397","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080090657"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123050070018,"id_str":"663728123050070018","text":"Bom dia ai Galerinha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":848117407,"id_str":"848117407","name":"2V o Procurado","screen_name":"VictorVanbaster","location":null,"url":null,"description":"Uma pessoa qualquer","protected":false,"verified":false,"followers_count":476,"friends_count":327,"listed_count":0,"favourites_count":1015,"statuses_count":12091,"created_at":"Wed Sep 26 20:57:26 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000002297359\/bc21a90dbfeaa1e36be351bd258b9223.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000002297359\/bc21a90dbfeaa1e36be351bd258b9223.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661368046569832448\/hQUoc_y8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661368046569832448\/hQUoc_y8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848117407\/1445724242","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123054288896,"id_str":"663728123054288896","text":"@DavidVonderhaar no attachments equipped either","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727963591090176,"in_reply_to_status_id_str":"663727963591090176","in_reply_to_user_id":2988170704,"in_reply_to_user_id_str":"2988170704","in_reply_to_screen_name":"smallTYMER_","user":{"id":2988170704,"id_str":"2988170704","name":"smallTYMER_","screen_name":"smallTYMER_","location":"Holyoke, MA","url":null,"description":"Gamer 4 Life. Tryin to break into the Pro gaming scene. Follow and check out some live streaming. Feedback welcome folks!","protected":false,"verified":false,"followers_count":16,"friends_count":35,"listed_count":0,"favourites_count":8,"statuses_count":59,"created_at":"Tue Jan 20 22:08:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557665713205178368\/duxKiXHA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557665713205178368\/duxKiXHA_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DavidVonderhaar","name":"David Vonderhaar","id":34068984,"id_str":"34068984","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090665"} +{"delete":{"status":{"id":657575645292040193,"id_str":"657575645292040193","user_id":3728057359,"user_id_str":"3728057359"},"timestamp_ms":"1447080090723"}} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123028963328,"id_str":"663728123028963328","text":"(*\u00b4o`*)\u0296\u02cb\u0296\u02cb\u0296\u02cb\uff5e\u266a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790304312,"id_str":"2790304312","name":"\u3058\u3085\u3093\u3044\u3061","screen_name":"juuun_0716","location":"\u30c1\u30e7\u30b3\u30ec\u30fc\u30c8","url":null,"description":"\u697d\u3057\u304f \u3002 \u5e73\u548c\u306b \u3044\u3053\u3046 \u3001\uff01[@siori_dive] [@meimei_0918] \u3002\u4f50\u3005\u6728\u3055\u3093\u3042\u308a\u304c\u3068\u3046\u3002","protected":false,"verified":false,"followers_count":320,"friends_count":201,"listed_count":11,"favourites_count":11181,"statuses_count":18795,"created_at":"Mon Sep 29 00:15:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661799477833953280\/Ztprp1gk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661799477833953280\/Ztprp1gk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790304312\/1445868497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123054190592,"id_str":"663728123054190592","text":"RT @Ag_hnd: \u30e4\u30de\u30c8\u306e\u30e2\u30ea\u30c1\u30a2\n\u30b5\u30ac\u30ef\u306e\u30e2\u30ea\u30c1\u30a2 https:\/\/t.co\/jJUhEDP37J","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883151651,"id_str":"2883151651","name":"DINN (\u30c7\u30a3\u30f3)","screen_name":"179cmX61kg","location":"\u79c1\u7acb\u5922\u30ce\u54b2\u5b66\u9662","url":null,"description":"\u3044\u3064\u3082\u3081\u3063\u3061\u3083RT\uff06\u3075\u3041\u307c\u3059\u308b\u5909\u306a\u8005\u3067\u3059\u2026\u3059\u307f\u307e\u305b\u3093(\uff1b\u25bd\uff1b) \u3042\u3093\u30b9\u30bf \uc559\uc2a4\ud0c0 \/ \u8150 \/ \u6210\u4eba\u6e08 \/ \u65e5\u672c\u8a9e \u4e00\u5fdc OK \/ \u30d7\u30ed\u30d5 http:\/\/twpf.jp\/179cmX61kg","protected":false,"verified":false,"followers_count":95,"friends_count":194,"listed_count":2,"favourites_count":14143,"statuses_count":50765,"created_at":"Thu Oct 30 09:09:20 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFC1C6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F39DA5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663302336790396928\/xX3PgCHz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663302336790396928\/xX3PgCHz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883151651\/1438549343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727631011942400,"id_str":"663727631011942400","text":"\u30e4\u30de\u30c8\u306e\u30e2\u30ea\u30c1\u30a2\n\u30b5\u30ac\u30ef\u306e\u30e2\u30ea\u30c1\u30a2 https:\/\/t.co\/jJUhEDP37J","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2999391625,"id_str":"2999391625","name":"\u534a\u7530\u306f\u671f\u9593\u9650\u5b9a\u6295\u3052\u30ad\u30c3\u30b9","screen_name":"Ag_hnd","location":"\u5317\u9678","url":null,"description":"\u3042\u3093\u30b9\u30bf\u3068\u30ef\u30fc\u30c8\u30ea \/\u30d5\u30a9\u30ed\u30fc\u524d\u306b\u3064\u3044\u3077\u308d\u4e00\u8aad\u304a\u9858\u3044\u3057\u307e\u3059\u3010http:\/\/twpf.jp\/Ag_hnd\/ \u3011\/ NL\u57a2(@NL_dnh)","protected":false,"verified":false,"followers_count":6857,"friends_count":61,"listed_count":110,"favourites_count":1723,"statuses_count":3910,"created_at":"Wed Jan 28 12:28:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"00B1C5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662174800673030144\/LJuBtu_P_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662174800673030144\/LJuBtu_P_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2999391625\/1446135301","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":63,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727629535567872,"id_str":"663727629535567872","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","url":"https:\/\/t.co\/jJUhEDP37J","display_url":"pic.twitter.com\/jJUhEDP37J","expanded_url":"http:\/\/twitter.com\/Ag_hnd\/status\/663727631011942400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727629535567872,"id_str":"663727629535567872","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","url":"https:\/\/t.co\/jJUhEDP37J","display_url":"pic.twitter.com\/jJUhEDP37J","expanded_url":"http:\/\/twitter.com\/Ag_hnd\/status\/663727631011942400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ag_hnd","name":"\u534a\u7530\u306f\u671f\u9593\u9650\u5b9a\u6295\u3052\u30ad\u30c3\u30b9","id":2999391625,"id_str":"2999391625","indices":[3,10]}],"symbols":[],"media":[{"id":663727629535567872,"id_str":"663727629535567872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","url":"https:\/\/t.co\/jJUhEDP37J","display_url":"pic.twitter.com\/jJUhEDP37J","expanded_url":"http:\/\/twitter.com\/Ag_hnd\/status\/663727631011942400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663727631011942400,"source_status_id_str":"663727631011942400","source_user_id":2999391625,"source_user_id_str":"2999391625"}]},"extended_entities":{"media":[{"id":663727629535567872,"id_str":"663727629535567872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwzIUYAArVtg.png","url":"https:\/\/t.co\/jJUhEDP37J","display_url":"pic.twitter.com\/jJUhEDP37J","expanded_url":"http:\/\/twitter.com\/Ag_hnd\/status\/663727631011942400\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663727631011942400,"source_status_id_str":"663727631011942400","source_user_id":2999391625,"source_user_id_str":"2999391625"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090665"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058372610,"id_str":"663728123058372610","text":"RT @neeneenee123: \u55a7\u5629\u3044\u3063\u3071\u3044\u3057\u3066\n\u76f8\u624b\u306e\u3084\u306a\u3068\u3053\u6ca2\u5c71\u898b\u3048\u3066\u304d\u3066\n\u3067\u3082\u305d\u308c\u3067\u3082\u597d\u304d\u3063\u3066\u601d\u3048\u305f\u3089\n\u305d\u308c\u308f\u304d\u3063\u3068 \u672c\u7269\u306e\u611b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418960798,"id_str":"2418960798","name":"\u2661Tiara\u6240\u5c5e\u6c34\u6238\u306e\u3061\u3073\u3061\u3083\u305d\u2661","screen_name":"misuzu2057","location":"\u3048\u3073\u3061\u3084\u3093\u306e\u304a\u96a3\u3055\u3093","url":null,"description":"\u6c34\u6238*.\u660e\u5149\u4e2d3*.S2015.1024\u3048\u3073\u3061\u3084\u3093\u8ab0\u3088\u308a\u3082\u52aa\u529b\u7dba\u9e97\u306a\u5973\u78e8\u304d\u2741*\u0329\u0329\u0325\u77e5\u308a\u5408\u3044follow*.\u3086\u3044*.\u681e*.\u3048\u3073\u3061\u3084\u3093\u5927\u4e8b\u306a\u5b50\u2665\ufe0e\u20db*\u0329\u0329\u0325\u02da\u2741\u9234\u6728brother\u3001family\u5927\u5207\u2661\u88cf\u57a2@mi_ka57\u2741*\u0329\u0329\u0325@Since0525Yui\u2190\u5927\u5207\u306a\u5b50\u2764\ufe0e \u00ab\u7950\u8863\u30681\u5e74\u3067\u3059\u00bb \u7f8e\u9234\u306e\u96a3@22Trumpet","protected":false,"verified":false,"followers_count":1133,"friends_count":802,"listed_count":0,"favourites_count":4615,"statuses_count":5298,"created_at":"Sun Mar 30 12:52:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663328096544690176\/Ahfgirxh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663328096544690176\/Ahfgirxh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2418960798\/1446985725","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 18 12:09:51 +0000 2015","id":655717425988546560,"id_str":"655717425988546560","text":"\u55a7\u5629\u3044\u3063\u3071\u3044\u3057\u3066\n\u76f8\u624b\u306e\u3084\u306a\u3068\u3053\u6ca2\u5c71\u898b\u3048\u3066\u304d\u3066\n\u3067\u3082\u305d\u308c\u3067\u3082\u597d\u304d\u3063\u3066\u601d\u3048\u305f\u3089\n\u305d\u308c\u308f\u304d\u3063\u3068 \u672c\u7269\u306e\u611b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1936733695,"id_str":"1936733695","name":"1 8 \u7981 \u2620\ufe0e","screen_name":"neeneenee123","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6082,"friends_count":102,"listed_count":14,"favourites_count":194,"statuses_count":131,"created_at":"Sat Oct 05 06:44:51 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634778562688479232\/RxV2MlqE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634778562688479232\/RxV2MlqE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1936733695\/1440177708","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1306,"favorite_count":1621,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"neeneenee123","name":"1 8 \u7981 \u2620\ufe0e","id":1936733695,"id_str":"1936733695","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123028963329,"id_str":"663728123028963329","text":"\u3044\u3044\u304b\u3052\u3093\u3000\u76ee\u899a\u3081\u306a\u3055\u3044\u3000\u793e\u4f1a\u306f\u76e3\u7344\u3060\u3068\u3044\u3046\u3053\u3068\u3092","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239844594,"id_str":"3239844594","name":"mayabot","screen_name":"yuma1995630","location":null,"url":null,"description":"\u8a66\u4f5c\u4e2d\u3000\u305f\u307e\u306b\u624b\u52d5","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":1748,"created_at":"Mon Jun 08 13:11:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607901779573903360\/GVjd3qan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607901779573903360\/GVjd3qan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239844594\/1433770269","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041722368,"id_str":"663728123041722368","text":"@LoungeGG @HattonGames https:\/\/t.co\/3ftVfeFsgo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662320291306192896,"in_reply_to_status_id_str":"662320291306192896","in_reply_to_user_id":3662307081,"in_reply_to_user_id_str":"3662307081","in_reply_to_screen_name":"LoungeGG","user":{"id":3823812083,"id_str":"3823812083","name":"robin","screen_name":"robin12331111","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":47,"listed_count":0,"favourites_count":4,"statuses_count":22,"created_at":"Wed Sep 30 11:50:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"sv","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649189940937539584\/TSWpsZRS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649189940937539584\/TSWpsZRS_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3ftVfeFsgo","expanded_url":"http:\/\/bit.ly\/1SDnLYM","display_url":"bit.ly\/1SDnLYM","indices":[23,46]}],"user_mentions":[{"screen_name":"LoungeGG","name":"Lounge Gaming","id":3662307081,"id_str":"3662307081","indices":[0,9]},{"screen_name":"HattonGames","name":"Hatton Games","id":290588458,"id_str":"290588458","indices":[10,22]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033182208,"id_str":"663728123033182208","text":"RT @nnnaynaa: \u0e44\u0e1b\u0e01\u0e34\u0e19\u0e02\u0e49\u0e32\u0e27\u0e01\u0e31\u0e19\u0e19 #\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 #\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e15\u0e25\u0e01 #\u0e23\u0e31\u0e01\u0e19\u0e30\u0e23\u0e39\u0e49\u0e44\u0e2b\u0e21\u0e2e\u0e30 http:\/\/t.co\/RUgFAegrCK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":397275715,"id_str":"397275715","name":"\u0e19\u0e38\u0e48\u0e19","screen_name":"Phanpanit","location":null,"url":null,"description":"(16.) snapchat: p.noon #HKT\u2600\ufe0e","protected":false,"verified":false,"followers_count":171,"friends_count":87,"listed_count":2,"favourites_count":2176,"statuses_count":8594,"created_at":"Mon Oct 24 13:34:11 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661931267244425216\/6wKIMOQx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661931267244425216\/6wKIMOQx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397275715\/1446475767","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Dec 31 05:40:53 +0000 2014","id":550164671093698561,"id_str":"550164671093698561","text":"\u0e44\u0e1b\u0e01\u0e34\u0e19\u0e02\u0e49\u0e32\u0e27\u0e01\u0e31\u0e19\u0e19 #\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 #\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e15\u0e25\u0e01 #\u0e23\u0e31\u0e01\u0e19\u0e30\u0e23\u0e39\u0e49\u0e44\u0e2b\u0e21\u0e2e\u0e30 http:\/\/t.co\/RUgFAegrCK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":971659196,"id_str":"971659196","name":"\u0e19\u0e48\u0e32\u0e32.","screen_name":"nnnaynaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":509,"friends_count":151,"listed_count":1,"favourites_count":1103,"statuses_count":18216,"created_at":"Mon Nov 26 09:44:08 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535801267193266176\/Rusorc2T.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535801267193266176\/Rusorc2T.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646676698361020417\/DYIK-pKP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646676698361020417\/DYIK-pKP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/971659196\/1415102656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50809,"favorite_count":5161,"entities":{"hashtags":[{"text":"\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01","indices":[15,33]},{"text":"\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e15\u0e25\u0e01","indices":[34,49]},{"text":"\u0e23\u0e31\u0e01\u0e19\u0e30\u0e23\u0e39\u0e49\u0e44\u0e2b\u0e21\u0e2e\u0e30","indices":[50,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":550164508207898625,"id_str":"550164508207898625","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":550164508207898625,"id_str":"550164508207898625","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":550164631574953984,"id_str":"550164631574953984","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KT0UkCQAAteaG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KT0UkCQAAteaG.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01","indices":[29,47]},{"text":"\u0e1e\u0e48\u0e2d\u0e01\u0e39\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e15\u0e25\u0e01","indices":[48,63]},{"text":"\u0e23\u0e31\u0e01\u0e19\u0e30\u0e23\u0e39\u0e49\u0e44\u0e2b\u0e21\u0e2e\u0e30","indices":[64,78]}],"urls":[],"user_mentions":[{"screen_name":"nnnaynaa","name":"\u0e19\u0e48\u0e32\u0e32.","id":971659196,"id_str":"971659196","indices":[3,12]}],"symbols":[],"media":[{"id":550164508207898625,"id_str":"550164508207898625","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":550164671093698561,"source_status_id_str":"550164671093698561","source_user_id":971659196,"source_user_id_str":"971659196"}]},"extended_entities":{"media":[{"id":550164508207898625,"id_str":"550164508207898625","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KTtI_CYAEHvlo.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":550164671093698561,"source_status_id_str":"550164671093698561","source_user_id":971659196,"source_user_id_str":"971659196"},{"id":550164631574953984,"id_str":"550164631574953984","indices":[79,101],"media_url":"http:\/\/pbs.twimg.com\/media\/B6KT0UkCQAAteaG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B6KT0UkCQAAteaG.jpg","url":"http:\/\/t.co\/RUgFAegrCK","display_url":"pic.twitter.com\/RUgFAegrCK","expanded_url":"http:\/\/twitter.com\/nnnaynaa\/status\/550164671093698561\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":550164671093698561,"source_status_id_str":"550164671093698561","source_user_id":971659196,"source_user_id_str":"971659196"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058475008,"id_str":"663728123058475008","text":"Florencia lo \u00fanico que hace es comer, rezongar, y dormir.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571886009,"id_str":"571886009","name":"Rasta","screen_name":"MoyaCyn","location":"Escopiana ","url":null,"description":"\u2662\u2666\u2662Lucy in the Sky with\u00a0Diamonds\u2662\u2666\u2662. I promise to love for the rest of my life. \u273f\u2663\u2664\u2740Alicia en el pa\u00eds de las maravillas. \u2660\u2662\u2665\u2741","protected":false,"verified":false,"followers_count":1130,"friends_count":756,"listed_count":0,"favourites_count":4304,"statuses_count":32487,"created_at":"Sat May 05 16:32:32 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661636918782898176\/gYC9Mfsh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661636918782898176\/gYC9Mfsh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571886009\/1446545500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00e4885c7ea8eb39","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00e4885c7ea8eb39.json","place_type":"city","name":"Chascom\u00fas","full_name":"Chascom\u00fas, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-58.030351,-35.592468],[-58.030351,-35.551513],[-57.974716,-35.551513],[-57.974716,-35.592468]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041550336,"id_str":"663728123041550336","text":"\uc5d0\ud5e4\ud5e4 \u3161 \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3549557599,"id_str":"3549557599","name":"\ud751\ub8e1\uc544\uc2e0","screen_name":"kuroliu_kami","location":"\ubb34\ud1b5\ubcf4 \ube14\ub77d\uc774 \uc874\uc7ac\ud55c\ub2e4, \uc5d0\uc694.","url":null,"description":"\uc790\uce90\ubd07 \/\/ \uc218\uc704\ud2b8 \ub2e4\uc218 \/\/ \ud790\ub9c1\uc704\uc8fc, \uc57d\uac04\uc758 \uc9d1\ucc29 \/\/ \uc9c0\ucce4\uc744\ub54c\ub294 \uacc1\uc5d0\uc11c \uc26c\uc5b4\uac00\ub3c4 \uc88b\ub2e8\ub2e4, \uc5d0\uc694~\u2665 \/\/ \uc5c4\ub9c8, \ud639\uc740 \ub204\ub098. \ub77c\uace0 \ubd88\ub7ec\uc92c\uc73c\uba74 \uc88b\uaca0\ub2e8\ub2e4. \uc5d0\uc694! \/\/ \uc601\uc6d0\ud55c \uc2a4\uc2b9\ub2d8 @ginliu_kami","protected":false,"verified":false,"followers_count":80,"friends_count":68,"listed_count":0,"favourites_count":31,"statuses_count":1362,"created_at":"Sun Sep 13 13:24:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660629575873892353\/scKxkug0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660629575873892353\/scKxkug0_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123037528064,"id_str":"663728123037528064","text":"@gitumakk SO HERE IT IS! MY TAKE ON KENYAS FIRST VIRAL SEX TAPE. #SIMONSAYS:SEX TAPE https:\/\/t.co\/ESuE9tMtjJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726642095857664,"in_reply_to_status_id_str":"663726642095857664","in_reply_to_user_id":1341784368,"in_reply_to_user_id_str":"1341784368","in_reply_to_screen_name":"gitumakk","user":{"id":115345705,"id_str":"115345705","name":"SimonSays Maingi","screen_name":"SimonSaysMaingi","location":"Kenya","url":"https:\/\/www.youtube.com\/channel\/UCrgQYyplEOMyNe8lGzVzdnA\/videos","description":"Stereotype of a pastor's kid with a renegade's mentality. #KenyanYoutuber","protected":false,"verified":false,"followers_count":909,"friends_count":696,"listed_count":6,"favourites_count":123,"statuses_count":32157,"created_at":"Thu Feb 18 11:02:51 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/408716366\/New-England-Patriots-Tom-Brady.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/408716366\/New-England-Patriots-Tom-Brady.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"030302","profile_text_color":"F54747","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653515522315808769\/rID5vew5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653515522315808769\/rID5vew5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115345705\/1436961338","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SIMONSAYS","indices":[65,75]}],"urls":[{"url":"https:\/\/t.co\/ESuE9tMtjJ","expanded_url":"https:\/\/www.youtube.com\/watch?v=x4HsZqHgEyE","display_url":"youtube.com\/watch?v=x4HsZq\u2026","indices":[85,108]}],"user_mentions":[{"screen_name":"gitumakk","name":"ken gituma","id":1341784368,"id_str":"1341784368","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090661"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041722370,"id_str":"663728123041722370","text":"Karena perjuangan tidak ada yg siasia \ud83d\ude02\ud83d\udc45\ud83d\udcaa\ud83d\udc4a\ud83d\udc9e\ud83d\udc8b https:\/\/t.co\/M4pMAOBCeA","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1916247349,"id_str":"1916247349","name":"Linda Brillianti","screen_name":"lindabrllnti","location":"1vhs sby","url":"http:\/\/ask.fm\/lindabrllnti","description":"Smile not because everything is fine, but because when you smile everything is going to be fine\u2605","protected":false,"verified":false,"followers_count":152,"friends_count":180,"listed_count":0,"favourites_count":2,"statuses_count":1884,"created_at":"Sun Sep 29 05:20:26 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C70C50","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510095760646369280\/wizXg5H4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510095760646369280\/wizXg5H4.jpeg","profile_background_tile":true,"profile_link_color":"C23691","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585800011071361024\/KbRudAvc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585800011071361024\/KbRudAvc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1916247349\/1428327281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M4pMAOBCeA","expanded_url":"https:\/\/instagram.com\/p\/93ieBpSsnn\/","display_url":"instagram.com\/p\/93ieBpSsnn\/","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123054153728,"id_str":"663728123054153728","text":"RT @EXO_HBK: \u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544369791,"id_str":"544369791","name":"D-33","screen_name":"jparkkxviii","location":"\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e40\u0e22\u0e2d\u0e30\u0e21\u0e32\u0e01\u0e19\u0e35\u0e48\u0e41\u0e04\u0e48\u0e2a\u0e48\u0e27\u0e19\u0e19\u0e36\u0e07","url":null,"description":"exo&exol | Day6 \u2661 | #real__pcy #baekhyunee_exo #oohsehun #jaeparklb #dowoon95 #pepi_jr","protected":false,"verified":false,"followers_count":609,"friends_count":300,"listed_count":1,"favourites_count":2440,"statuses_count":114432,"created_at":"Tue Apr 03 13:50:14 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"998899","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615149973290663936\/8jl-4_ME.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615149973290663936\/8jl-4_ME.jpg","profile_background_tile":false,"profile_link_color":"222222","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2EB61","profile_text_color":"1FE5FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659391247316992000\/dX1vq69O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659391247316992000\/dX1vq69O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544369791\/1444486476","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:46 +0000 2015","id":663727181541998593,"id_str":"663727181541998593","text":"\u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e08\u0e49\u0e32 \u0e04\u0e36\u0e04\u0e36","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":161,"favorite_count":9,"entities":{"hashtags":[{"text":"EXO","indices":[30,34]},{"text":"CALLMEBABY","indices":[42,53]},{"text":"MAMA2015","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[104,113]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[43,47]},{"text":"CALLMEBABY","indices":[55,66]},{"text":"MAMA2015","indices":[88,97]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[117,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080090665"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033223168,"id_str":"663728123033223168","text":"RT @TanThetsana: \u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e01\u0e39\u0e40\u0e2b\u0e47\u0e19\u0e21\u0e36\u0e07\u0e14\u0e49\u0e27\u0e22 \u0e21\u0e36\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e01\u0e39\u0e21\u0e31\u0e49\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923741932,"id_str":"2923741932","name":"\u0e19\u0e31\u0e17\u0e42\u0e15\u0e41\u0e25\u0e49\u0e27","screen_name":"Nut_Chanutwit","location":null,"url":null,"description":":swk 4.10 \u270c\ufe0f \u0e2d\u0e22\u0e32\u0e01\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e34\u0e28\u0e27\u0e30 \u0e42\u0e15\u0e41\u0e25\u0e49\u0e27\u0e15\u0e31\u0e49\u0e07\u0e43\u0e08\u0e40\u0e23\u0e35\u0e22\u0e19","protected":false,"verified":false,"followers_count":213,"friends_count":73,"listed_count":0,"favourites_count":143,"statuses_count":3411,"created_at":"Tue Dec 09 11:51:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657558943359590400\/aiUGZSGY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657558943359590400\/aiUGZSGY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923741932\/1445703663","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:08:59 +0000 2015","id":663599141398802432,"id_str":"663599141398802432","text":"\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e01\u0e39\u0e40\u0e2b\u0e47\u0e19\u0e21\u0e36\u0e07\u0e14\u0e49\u0e27\u0e22 \u0e21\u0e36\u0e07\u0e40\u0e2b\u0e47\u0e19\u0e01\u0e39\u0e21\u0e31\u0e49\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1267006694,"id_str":"1267006694","name":"\u0442\u03b1\u0438s\u0338","screen_name":"TanThetsana","location":"Chiang Rai, Thailand","url":"https:\/\/Instagram.com\/tanthetsana","description":"\u0e2a\u0e32\u0e22\u0e15\u0e32\u0e2a\u0e31\u0e49\u0e19\u0e08\u0e23\u0e34\u0e07\u0e08\u0e31\u0e07","protected":false,"verified":false,"followers_count":348,"friends_count":314,"listed_count":0,"favourites_count":1284,"statuses_count":18577,"created_at":"Thu Mar 14 12:53:16 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719922590048258\/4Hf9oJn5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719922590048258\/4Hf9oJn5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267006694\/1446860312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01ad286e4644dd75","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01ad286e4644dd75.json","place_type":"city","name":"\u0e23\u0e2d\u0e1a\u0e40\u0e27\u0e35\u0e22\u0e07","full_name":"\u0e23\u0e2d\u0e1a\u0e40\u0e27\u0e35\u0e22\u0e07, \u0e08.\u0e40\u0e0a\u0e35\u0e22\u0e07\u0e23\u0e32\u0e22","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[99.800995,19.880318],[99.800995,19.925187],[99.861150,19.925187],[99.861150,19.880318]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TanThetsana","name":"\u0442\u03b1\u0438s\u0338","id":1267006694,"id_str":"1267006694","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058384896,"id_str":"663728123058384896","text":"https:\/\/t.co\/dreyul5Q0B","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2981531945,"id_str":"2981531945","name":"Ricardo Batista ","screen_name":"ricardo_olarin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":378,"friends_count":1164,"listed_count":0,"favourites_count":59,"statuses_count":1619,"created_at":"Fri Jan 16 18:40:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609387012932677632\/vxdBaln2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609387012932677632\/vxdBaln2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2981531945\/1436278696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dreyul5Q0B","expanded_url":"http:\/\/fb.me\/4SNz1ZCxt","display_url":"fb.me\/4SNz1ZCxt","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041697793,"id_str":"663728123041697793","text":"Resource management class lectures_51568438-Human-resource-management-under-change-romaniauploads\/services\/1 \/services\/174867 #study","source":"\u003ca href=\"https:\/\/www.studypool.com\" rel=\"nofollow\"\u003eecommercenews\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2447892690,"id_str":"2447892690","name":"ECommerce News","screen_name":"ECommerceNews1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":412,"friends_count":23,"listed_count":122,"favourites_count":0,"statuses_count":499638,"created_at":"Wed Apr 16 19:46:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/456519137045409792\/h5pV2fH9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/456519137045409792\/h5pV2fH9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"study","indices":[126,132]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123049984000,"id_str":"663728123049984000","text":"RT @De_rex_gula: \u305f\u3060\u307e\u3042\u300cS\u300d\u306b\u7e4b\u304c\u308b\u305f\u3081\u306e\u5e03\u77f3\u3068\u3057\u3066\u306f\u5145\u5206\u2026\u5145\u5206\u3058\u3083\u306a\u3044\uff1f https:\/\/t.co\/sVBj7hm3fD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821488843,"id_str":"821488843","name":"\u5f25\u592a@Null\u5024","screen_name":"YATA_End","location":"\uff71\uff72\uff74\uff70\u535a\u7269\u9928","url":null,"description":"\u6d45\u898b\u3001\u304a\u524d\u306f\u5909\u3048\u3066\u898b\u305b\u308d","protected":false,"verified":false,"followers_count":224,"friends_count":292,"listed_count":12,"favourites_count":10956,"statuses_count":17253,"created_at":"Thu Sep 13 13:07:56 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663330004118278144\/u4P7KHag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663330004118278144\/u4P7KHag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821488843\/1444665713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728029315678208,"id_str":"663728029315678208","text":"\u305f\u3060\u307e\u3042\u300cS\u300d\u306b\u7e4b\u304c\u308b\u305f\u3081\u306e\u5e03\u77f3\u3068\u3057\u3066\u306f\u5145\u5206\u2026\u5145\u5206\u3058\u3083\u306a\u3044\uff1f https:\/\/t.co\/sVBj7hm3fD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2341488768,"id_str":"2341488768","name":"\u9b54\u738b\u30d9\u30eb\u30bc\u30d6\u30e2\u30f3BM","screen_name":"De_rex_gula","location":"\u9727\u306e\u7acb\u3061\u6df7\u3080\u68ee\u306e\u5965\u6df1\u304f","url":null,"description":"\u3008\u5fc5\u305a\u5e30\u308b\u3002\u4ffa\u306e\u305f\u3063\u305f\u4e00\u3064\u306e\u5c45\u5834\u6240\u3078\u3002\u3009\u300c\u30c7\u30b8\u30e2\u30f3\u300d\u30b7\u30ea\u30fc\u30ba\u3088\u308a\u66b4\u98df\u306e\u9b54\u738b\u30c7\u30b8\u30e2\u30f3\u300c\u30d9\u30eb\u30bc\u30d6\u30e2\u30f3\u300d\u306e\u975e\u516c\u5f0f\u534a\u306a\u308a\u304d\u308a\u3002\u30c4\u30a4\u30d7\u30ed\u8aad\u3081\u306a\u3044\u3002\u53a8\u4e8c\u306e\u584a\u3002\u30b3\u30d4\u30da\u6539\u5909\u904a\u3073\u3092\u3059\u308b\u60aa\u7656\u3042\u308a\u3002\u6ce8\u610f\u3002","protected":false,"verified":false,"followers_count":176,"friends_count":181,"listed_count":9,"favourites_count":418,"statuses_count":14641,"created_at":"Thu Feb 13 06:15:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628950156558204929\/aUVP4XRz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628950156558204929\/aUVP4XRz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2341488768\/1427985584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727842438479872,"quoted_status_id_str":"663727842438479872","quoted_status":{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727842438479872,"id_str":"663727842438479872","text":"\u6b63\u76f4\u89e3\u308b https:\/\/t.co\/5QPbzx3T92","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":821488843,"id_str":"821488843","name":"\u5f25\u592a@Null\u5024","screen_name":"YATA_End","location":"\uff71\uff72\uff74\uff70\u535a\u7269\u9928","url":null,"description":"\u6d45\u898b\u3001\u304a\u524d\u306f\u5909\u3048\u3066\u898b\u305b\u308d","protected":false,"verified":false,"followers_count":224,"friends_count":292,"listed_count":12,"favourites_count":10956,"statuses_count":17252,"created_at":"Thu Sep 13 13:07:56 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663330004118278144\/u4P7KHag_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663330004118278144\/u4P7KHag_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/821488843\/1444665713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726173621391360,"quoted_status_id_str":"663726173621391360","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5QPbzx3T92","expanded_url":"https:\/\/twitter.com\/De_rex_gula\/status\/663726173621391360","display_url":"twitter.com\/De_rex_gula\/st\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sVBj7hm3fD","expanded_url":"https:\/\/twitter.com\/YATA_End\/status\/663727842438479872","display_url":"twitter.com\/YATA_End\/statu\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sVBj7hm3fD","expanded_url":"https:\/\/twitter.com\/YATA_End\/status\/663727842438479872","display_url":"twitter.com\/YATA_End\/statu\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"De_rex_gula","name":"\u9b54\u738b\u30d9\u30eb\u30bc\u30d6\u30e2\u30f3BM","id":2341488768,"id_str":"2341488768","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058323456,"id_str":"663728123058323456","text":"RT @yamanoikazunori: \uff11\uff11\u6708\uff11\uff10\u65e5(\u706b)\uff11\u6642\uff12\uff10\u5206\u304b\u3089\uff11\u6642\uff14\uff19\u5206\u307e\u3067\u4e88\u7b97\u59d4\u54e1\u4f1a\u3067\u5b89\u500d\u7dcf\u7406\u3068\u8ad6\u6226\u3057\u307e\u3059(NHK\u751f\u4e2d\u7d99)\u3002\u4ecb\u8b77\u96e2\u8077\u30bc\u30ed\u306e\u305f\u3081\u306b\u306f\u4ecb\u8b77\u8077\u54e1\u306e\u8cc3\u91d1\u5f15\u304d\u4e0a\u3052\u304c\u5fc5\u8981\u3002\u5f85\u6a5f\u5150\u7ae5\u30bc\u30ed\u306e\u305f\u3081\u306b\u3082\u4fdd\u80b2\u58eb\u306e\u8cc3\u91d1\u5f15\u304d\u4e0a\u3052\u304c\u5fc5\u8981\u3002\u4ecb\u8b77\u8077\u54e1\u3084\u4fdd\u80b2\u58eb\u306e\u4e0d\u8db3\u3092\u8a34\u3048\u307e\u3059\u3002 h\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288641592,"id_str":"3288641592","name":"\u5742\u5185 \u5b5d\u96c4","screen_name":"klSV7pulcS0nNux","location":null,"url":null,"description":"\u5927\u962a\u4e07\u535a\u4f53\u9a13\u8005\u3002\u30b9\u30fc\u30d1\u30fc\u27a1\u66f8\u5e97\u27a1\u753b\u5eca\u27a1\u6e2c\u91cf\u27a1\u3072\u304d\u3053\u3082\u308a\u27a1\u5893\u5730\u6e05\u6383\u27a1\u8b66\u5099\u54e1\u27a1\u30cf\u30a6\u30b9\u30af\u30ea\u30fc\u30cb\u30f3\u30b0\u27a1NPO\u27a1\uff1f\u3002\n\u5bdd\u3088\u3046\u56e3\u3002\u2666\u8aad\u307f\u304d\u308c\u306a\u304f\u306a\u3063\u3066\u304f\u308b\u3068\u7279\u306b\u6df1\u3044\u610f\u56f3\u306a\u304f\u30d5\u30a9\u30ed\u30fc\u3092\u306f\u305a\u3059\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002\u3054\u3081\u3093\u306a\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":201,"friends_count":216,"listed_count":4,"favourites_count":2256,"statuses_count":27412,"created_at":"Thu Jul 23 10:30:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662143392961310720\/uT1T8ABR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662143392961310720\/uT1T8ABR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:40 +0000 2015","id":663725397159219200,"id_str":"663725397159219200","text":"\uff11\uff11\u6708\uff11\uff10\u65e5(\u706b)\uff11\u6642\uff12\uff10\u5206\u304b\u3089\uff11\u6642\uff14\uff19\u5206\u307e\u3067\u4e88\u7b97\u59d4\u54e1\u4f1a\u3067\u5b89\u500d\u7dcf\u7406\u3068\u8ad6\u6226\u3057\u307e\u3059(NHK\u751f\u4e2d\u7d99)\u3002\u4ecb\u8b77\u96e2\u8077\u30bc\u30ed\u306e\u305f\u3081\u306b\u306f\u4ecb\u8b77\u8077\u54e1\u306e\u8cc3\u91d1\u5f15\u304d\u4e0a\u3052\u304c\u5fc5\u8981\u3002\u5f85\u6a5f\u5150\u7ae5\u30bc\u30ed\u306e\u305f\u3081\u306b\u3082\u4fdd\u80b2\u58eb\u306e\u8cc3\u91d1\u5f15\u304d\u4e0a\u3052\u304c\u5fc5\u8981\u3002\u4ecb\u8b77\u8077\u54e1\u3084\u4fdd\u80b2\u58eb\u306e\u4e0d\u8db3\u3092\u8a34\u3048\u307e\u3059\u3002 https:\/\/t.co\/YXzj5NbCAr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116426900,"id_str":"116426900","name":"\u5c71\u4e95\u548c\u5247","screen_name":"yamanoikazunori","location":"\u4eac\u90fd\u3000\/\u3000\u6771\u4eac","url":"http:\/\/yamanoi.net\/","description":"1962\u5e741\u67086\u65e5\u751f\u307e\u308c\u3002\u5927\u5b66\u9662\u3067\u306f\u9175\u6bcd\u83cc\u3092\u7814\u7a76\u3001\u73fe\u5728\u3082\u9152\u8a55\u8ad6\u5bb6\u3002\u7956\u6bcd\u304c\u9577\u5e74\u306e\u5bdd\u305f\u304d\u308a\u306e\u672b\u306b\u4ea1\u304f\u306a\u308a\u3001\u307e\u305f\u5150\u7ae5\u798f\u7949\u65bd\u8a2d\u3067\u306e\u30dc\u30e9\u30f3\u30c6\u30a3\u30a2\u6d3b\u52d5\u304b\u3089\u3001\u798f\u7949\u3092\u30e9\u30a4\u30d5\u30ef\u30fc\u30af\u306b\u3057\u3088\u3046\u3068\u6c7a\u610f\u30022\u5e74\u9593\u3001\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u3067\u793e\u4f1a\u4fdd\u969c\u653f\u7b56\u3092\u5b66\u3076\u3002\u81ea\u79f0\u30cd\u30b3\u7814\u7a76\u5bb6\u3002\u8846\u8b70\u9662\u8b70\u54e1\u3002\u5143\u30fb\u6c11\u4e3b\u515a\u56fd\u4f1a\u5bfe\u7b56\u59d4\u54e1\u9577\u3002\u5143\u539a\u751f\u52b4\u50cd\u5927\u81e3\u653f\u52d9\u5b98\u3002","protected":false,"verified":true,"followers_count":20028,"friends_count":398,"listed_count":2377,"favourites_count":38,"statuses_count":5656,"created_at":"Mon Feb 22 12:01:50 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554911037468577793\/HxLO-i2o_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554911037468577793\/HxLO-i2o_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116426900\/1421135683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725395829633024,"id_str":"663725395829633024","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","url":"https:\/\/t.co\/YXzj5NbCAr","display_url":"pic.twitter.com\/YXzj5NbCAr","expanded_url":"http:\/\/twitter.com\/yamanoikazunori\/status\/663725397159219200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725395829633024,"id_str":"663725395829633024","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","url":"https:\/\/t.co\/YXzj5NbCAr","display_url":"pic.twitter.com\/YXzj5NbCAr","expanded_url":"http:\/\/twitter.com\/yamanoikazunori\/status\/663725397159219200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yamanoikazunori","name":"\u5c71\u4e95\u548c\u5247","id":116426900,"id_str":"116426900","indices":[3,19]}],"symbols":[],"media":[{"id":663725395829633024,"id_str":"663725395829633024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","url":"https:\/\/t.co\/YXzj5NbCAr","display_url":"pic.twitter.com\/YXzj5NbCAr","expanded_url":"http:\/\/twitter.com\/yamanoikazunori\/status\/663725397159219200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725397159219200,"source_status_id_str":"663725397159219200","source_user_id":116426900,"source_user_id_str":"116426900"}]},"extended_entities":{"media":[{"id":663725395829633024,"id_str":"663725395829633024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGux7UsAAO9HG.jpg","url":"https:\/\/t.co\/YXzj5NbCAr","display_url":"pic.twitter.com\/YXzj5NbCAr","expanded_url":"http:\/\/twitter.com\/yamanoikazunori\/status\/663725397159219200\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725397159219200,"source_status_id_str":"663725397159219200","source_user_id":116426900,"source_user_id_str":"116426900"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033182209,"id_str":"663728123033182209","text":"The double major +1 minor life wew","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727699303624705,"in_reply_to_status_id_str":"663727699303624705","in_reply_to_user_id":47531774,"in_reply_to_user_id_str":"47531774","in_reply_to_screen_name":"carl2d2","user":{"id":47531774,"id_str":"47531774","name":"Carl de los Reyes","screen_name":"carl2d2","location":null,"url":null,"description":"Dangerously volatile","protected":false,"verified":false,"followers_count":485,"friends_count":380,"listed_count":3,"favourites_count":5995,"statuses_count":17540,"created_at":"Tue Jun 16 03:33:17 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"282927","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508872992441368576\/JZanL448.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508872992441368576\/JZanL448.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656103932477878272\/fkSRojjN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656103932477878272\/fkSRojjN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47531774\/1444912760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123029151744,"id_str":"663728123029151744","text":"@williamlagneus ska till NY p\u00e5 onsdagsmorgon, vill helst inte sitta d\u00e4r med det s\u00e5 m\u00e5ste bli klar imorgon:\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727832401616896,"in_reply_to_status_id_str":"663727832401616896","in_reply_to_user_id":295526365,"in_reply_to_user_id_str":"295526365","in_reply_to_screen_name":"williamlagneus","user":{"id":478707010,"id_str":"478707010","name":"Vendela Bj\u00f6rklund","screen_name":"vendelabe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":721,"friends_count":187,"listed_count":2,"favourites_count":15171,"statuses_count":6705,"created_at":"Mon Jan 30 15:42:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"sv","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654239298796036096\/EERb56M8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654239298796036096\/EERb56M8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478707010\/1430170358","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"williamlagneus","name":"William Lagn\u00e9us","id":295526365,"id_str":"295526365","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123054198784,"id_str":"663728123054198784","text":"Ai tt kh\u00f4ng svc cmt nh\u00e9 :* :* :*","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810907848,"id_str":"2810907848","name":"Jackson D\u01b0\u01a1ng","screen_name":"Jakcson_Duong","location":"H\u1ed3 Ch\u00ed Minh, Vi\u1ec7t Nam","url":null,"description":"THPT L\u00ea H\u1ed3ng Phong","protected":false,"verified":false,"followers_count":162,"friends_count":528,"listed_count":0,"favourites_count":537,"statuses_count":2128,"created_at":"Mon Sep 15 08:14:21 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606660434121220096\/_RkKc7u5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606660434121220096\/_RkKc7u5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2810907848\/1426317581","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"vi","timestamp_ms":"1447080090665"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033354240,"id_str":"663728123033354240","text":"RT @THExDOGFATHERx: \ud83d\udca2\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n\ud83d\udca2\uff29\uff26\n\n\ud83d\udca2\uff39\uff2f\uff35\n\n\ud83d\udca2\uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\n\ud83d\udca2#\uff2d\uff27\uff37\uff36\n\n\u21e9\uff34\uff28\uff25\uff39\u21e9\ud83d\udcaf\u21e9\uff24\uff2f\u21e9\n\n@jet_new\n@DannyM003\n@llDOLLIANll\n@seaweed115B\n@mmagkin","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eRT-ARMY 15 (ID 150 - 154)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3505244189,"id_str":"3505244189","name":"It wasn't me....","screen_name":"DonKeySh0t","location":null,"url":null,"description":"#TeamInked","protected":false,"verified":false,"followers_count":19048,"friends_count":19195,"listed_count":29,"favourites_count":582,"statuses_count":14041,"created_at":"Mon Aug 31 20:22:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638446720100098048\/WAIvSVOC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638446720100098048\/WAIvSVOC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3505244189\/1445129781","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:05 +0000 2015","id":663727516251725828,"id_str":"663727516251725828","text":"\ud83d\udca2\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n\ud83d\udca2\uff29\uff26\n\n\ud83d\udca2\uff39\uff2f\uff35\n\n\ud83d\udca2\uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\n\ud83d\udca2#\uff2d\uff27\uff37\uff36\n\n\u21e9\uff34\uff28\uff25\uff39\u21e9\ud83d\udcaf\u21e9\uff24\uff2f\u21e9\n\n@jet_new\n@DannyM003\n@llDOLLIANll\n@seaweed115B\n@mmagkin","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eTHExDOGFATHERx (SHOUT)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473634538,"id_str":"2473634538","name":"THE DOGFATHER\u2122 #MGWV","screen_name":"THExDOGFATHERx","location":"PROMO\/RETWEET? DM FOR PRICES","url":null,"description":"Do you want 1000-5000 REAL followers a week? 5-15 shoutouts a day? Accountmanagement such as followback, unfollow & retweet? DM for more info & prices #MGWV","protected":false,"verified":false,"followers_count":142277,"friends_count":125894,"listed_count":632,"favourites_count":15,"statuses_count":174533,"created_at":"Fri May 02 07:52:05 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621450733305614336\/l6GSgWOJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621450733305614336\/l6GSgWOJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473634538\/1416875276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":7,"entities":{"hashtags":[{"text":"\uff2d\uff27\uff37\uff36","indices":[35,40]}],"urls":[],"user_mentions":[{"screen_name":"jet_new","name":"jet_new #MGWV #\u20a6\u20ae","id":2500598116,"id_str":"2500598116","indices":[55,63]},{"screen_name":"DannyM003","name":"DannyM 10K \u2660\ufe0fMGWV \u2660\ufe0f","id":1611417289,"id_str":"1611417289","indices":[64,74]},{"screen_name":"llDOLLIANll","name":"DOLLIAN & MGWV","id":3284544523,"id_str":"3284544523","indices":[75,87]},{"screen_name":"seaweed115B","name":"\u2606\u00e9clare\u2606 MGWV 155 K","id":1692289705,"id_str":"1692289705","indices":[88,100]},{"screen_name":"mmagkin","name":"Magkin Stalin #MGWV","id":290013119,"id_str":"290013119","indices":[101,109]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uff2d\uff27\uff37\uff36","indices":[55,60]}],"urls":[],"user_mentions":[{"screen_name":"THExDOGFATHERx","name":"THE DOGFATHER\u2122 #MGWV","id":2473634538,"id_str":"2473634538","indices":[3,18]},{"screen_name":"jet_new","name":"jet_new #MGWV #\u20a6\u20ae","id":2500598116,"id_str":"2500598116","indices":[75,83]},{"screen_name":"DannyM003","name":"DannyM 10K \u2660\ufe0fMGWV \u2660\ufe0f","id":1611417289,"id_str":"1611417289","indices":[84,94]},{"screen_name":"llDOLLIANll","name":"DOLLIAN & MGWV","id":3284544523,"id_str":"3284544523","indices":[95,107]},{"screen_name":"seaweed115B","name":"\u2606\u00e9clare\u2606 MGWV 155 K","id":1692289705,"id_str":"1692289705","indices":[108,120]},{"screen_name":"mmagkin","name":"Magkin Stalin #MGWV","id":290013119,"id_str":"290013119","indices":[121,129]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090660"} +{"delete":{"status":{"id":663728030746038273,"id_str":"663728030746038273","user_id":612250923,"user_id_str":"612250923"},"timestamp_ms":"1447080090749"}} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058384897,"id_str":"663728123058384897","text":"RT @RaGoharShahi: #QuoteoftheDay \u2018In love, you turn against yourself. You serve the interests of your beloved.\u2019 - His Holiness... https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454393136,"id_str":"2454393136","name":"Sherry","screen_name":"y_sumair","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":17,"listed_count":24,"favourites_count":101,"statuses_count":22492,"created_at":"Wed Apr 02 07:53:46 +0000 2014","utc_offset":21600,"time_zone":"Almaty","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453013936770514944\/ip47Qc8w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453013936770514944\/ip47Qc8w_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 00:05:49 +0000 2015","id":661695811508678656,"id_str":"661695811508678656","text":"#QuoteoftheDay \u2018In love, you turn against yourself. You serve the interests of your beloved.\u2019 - His Holiness... https:\/\/t.co\/D56aCTVKon","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":4,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/D56aCTVKon","expanded_url":"http:\/\/fb.me\/7yvr1lWOe","display_url":"fb.me\/7yvr1lWOe","indices":[112,135]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[18,32]}],"urls":[{"url":"https:\/\/t.co\/D56aCTVKon","expanded_url":"http:\/\/fb.me\/7yvr1lWOe","display_url":"fb.me\/7yvr1lWOe","indices":[139,140]}],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123049963521,"id_str":"663728123049963521","text":"\u8584\u685c\u9b3c\u597d\u304d\u306a\u306e\u3082\u77e5\u3063\u3066\u308b\u304b\u3089\u5371\u306a\u3044","source":"\u003ca href=\"http:\/\/shootingstar067.com\/\" rel=\"nofollow\"\u003eShootingStar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1390999788,"id_str":"1390999788","name":"\u3086\u306a\u306a\u30fb\u5a9a\u85ac\u30fb\u30af\u30ea\u30b9\u30bf\u30eb","screen_name":"yunana0111","location":"\u718a\u672c","url":null,"description":"\u30a2\u30a4\u30b3\u30f3(@satuma_furen)\n\u8c46\u8150\u98df\u3079\u307e\u3057\u3087\u3046\u3002","protected":false,"verified":false,"followers_count":1939,"friends_count":1760,"listed_count":72,"favourites_count":61166,"statuses_count":164991,"created_at":"Tue Apr 30 03:01:35 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660606410791620608\/8l96vgCz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660606410791620608\/8l96vgCz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390999788\/1446130328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123029139456,"id_str":"663728123029139456","text":"@TradeMarc_94 shit crazy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727776986451969,"in_reply_to_status_id_str":"663727776986451969","in_reply_to_user_id":61967688,"in_reply_to_user_id_str":"61967688","in_reply_to_screen_name":"TradeMarc_94","user":{"id":311670799,"id_str":"311670799","name":"\u2728 BEAT 21\u2728","screen_name":"_Douchieeee","location":"Memphis TN","url":null,"description":"Family \u200d\u200d\u2728Money \u2728Respect \u2728 \u2764\ufe0fDONT JUST PEEP FOLLOW ME BIIH\u2764\ufe0f","protected":false,"verified":false,"followers_count":1935,"friends_count":722,"listed_count":8,"favourites_count":7196,"statuses_count":83383,"created_at":"Sun Jun 05 21:10:24 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660641204284104704\/KiRRNaIf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660641204284104704\/KiRRNaIf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/311670799\/1446479163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TradeMarc_94","name":"Boss Mane","id":61967688,"id_str":"61967688","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123049963520,"id_str":"663728123049963520","text":"mycia naczy\u0144 https:\/\/t.co\/cTEpVOL8ja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3331098303,"id_str":"3331098303","name":"Panda","screen_name":"Liliettesad","location":null,"url":"http:\/\/liluimagination.tumblr.com\/","description":null,"protected":false,"verified":false,"followers_count":70,"friends_count":72,"listed_count":0,"favourites_count":15,"statuses_count":1220,"created_at":"Wed Jun 17 09:14:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659374856073560064\/pROPspYK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659374856073560064\/pROPspYK.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663423079717216256\/gpnPi3A__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663423079717216256\/gpnPi3A__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3331098303\/1447007361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663329867728068608,"quoted_status_id_str":"663329867728068608","quoted_status":{"created_at":"Sun Nov 08 12:18:59 +0000 2015","id":663329867728068608,"id_str":"663329867728068608","text":"#16 Jakiej rzeczy w czasie sprz\u0105tania nie znoisz robi\u0107? #100pyta\u0144","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663329550202503169,"in_reply_to_status_id_str":"663329550202503169","in_reply_to_user_id":1215150264,"in_reply_to_user_id_str":"1215150264","in_reply_to_screen_name":"Hello_Bitchesx","user":{"id":1215150264,"id_str":"1215150264","name":"pandoro\u017cec","screen_name":"Hello_Bitchesx","location":"Hogwart, District 12, Poland","url":"https:\/\/www.wattpad.com\/176960077-could-you-play-a-game-01","description":"W rzucaniu kamieniami s\u0142\u00f3w znowu przegrywam trzy do dw\u00f3ch.\n\nSnapchat: Sabinnexx","protected":false,"verified":false,"followers_count":1715,"friends_count":1942,"listed_count":2,"favourites_count":1462,"statuses_count":20368,"created_at":"Sun Feb 24 10:55:21 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602892998955773952\/KbAQEQKA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602892998955773952\/KbAQEQKA.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628239773178662913\/v5sECMG6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628239773178662913\/v5sECMG6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215150264\/1438619322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"100pyta\u0144","indices":[56,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cTEpVOL8ja","expanded_url":"https:\/\/twitter.com\/Hello_Bitchesx\/status\/663329867728068608","display_url":"twitter.com\/Hello_Bitchesx\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080090664"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123045785600,"id_str":"663728123045785600","text":"nak tengok spectreeeeeee em\ud83d\ude23","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936703944,"id_str":"936703944","name":"\u062f\u06cc\u0644\u0627","screen_name":"AdilahNorani","location":"B'worth-A'star","url":null,"description":"If someone blocks you,you hve won! HA HA HA","protected":false,"verified":false,"followers_count":928,"friends_count":565,"listed_count":4,"favourites_count":23929,"statuses_count":50356,"created_at":"Fri Nov 09 11:48:37 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C2B00F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000094324085\/eb611ce2d74e9aa3ef921f9a78ae8ca2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000094324085\/eb611ce2d74e9aa3ef921f9a78ae8ca2.jpeg","profile_background_tile":true,"profile_link_color":"E04885","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663669045456060416\/QeM92qId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663669045456060416\/QeM92qId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936703944\/1445947299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hu","timestamp_ms":"1447080090663"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123029000192,"id_str":"663728123029000192","text":"My sources are telling me Padres in on Park...no wait, sorry. It's just my daughter asking \"dad, can I go to the park?\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":369902386,"id_str":"369902386","name":"Ryan Davis","screen_name":"RyanDavisMLB","location":"Nowhere, IL","url":"http:\/\/www.votingforkodos.com\/","description":"Freelance writer @BPWrigleyville, @myknuckleballs, @todaysfastbreak, @CheatSheet, @VotingForKodos. I like to use Simpsons GIFs","protected":false,"verified":false,"followers_count":4155,"friends_count":985,"listed_count":54,"favourites_count":10653,"statuses_count":22987,"created_at":"Thu Sep 08 04:04:18 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657194286853804032\/CLpha7rI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657194286853804032\/CLpha7rI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/369902386\/1446927548","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090659"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123024818176,"id_str":"663728123024818176","text":"@___r_xx93 \u2026\uff01\uff1f\uff01\uff01\uff01\u305d\u306e\u767a\u60f3\u306f\u306a\u304b\u3063\u305f\u2026\uff01\uff01\uff01\u3042\u308a\u305d\u3046\u3060\u306d\u301c\u79c1\u3082\u30ab\u30e0\u30d0\u306b\u6c17\u3092\u53d6\u3089\u308c\u3066\u30bb\u30f3\u30a4\u30eb\u5fd8\u308c\u3066ry((\u6bb4\n\n\u3060\u306d\uff1f\uff01\u3072\u305f\u3059\u3089\u518d\u751f\u56de\u6570\u4e0a\u3052\u308b\u306e\u5dfb\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717388483821568,"in_reply_to_status_id_str":"663717388483821568","in_reply_to_user_id":3621542360,"in_reply_to_user_id_str":"3621542360","in_reply_to_screen_name":"___r_xx93","user":{"id":3068020687,"id_str":"3068020687","name":"ST\u2606RLIGHT_\u30df\u30ca\u30b3","screen_name":"_Beanstar_","location":null,"url":null,"description":"\u56db\u516d\u6642\u4e2d\u307b\u3093\u3073\u3093\u3050\u3093\u306a\u8133\u5185\u304a\u82b1\u7551\u91ce\u90ce\u3067\u3059\u30ca\u30ca\u30ca\u30ca\u30fc\u30ca\u30ca\u30ca\u30fc\u30ca\u30ca\u30fc \u2605 @___r_xx93 \u2661 @HSangHyuuuuuk","protected":false,"verified":false,"followers_count":79,"friends_count":121,"listed_count":9,"favourites_count":1141,"statuses_count":5547,"created_at":"Sun Mar 08 10:07:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649014567545106432\/h7tYnzOm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649014567545106432\/h7tYnzOm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068020687\/1447039345","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___r_xx93","name":"ST\u2734\ufe0eRLIGHT_AN\ub098\uff1f","id":3621542360,"id_str":"3621542360","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090658"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123020750848,"id_str":"663728123020750848","text":"Pope Francis meets with President of Poland https:\/\/t.co\/XJ72lu82uW","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44807357,"id_str":"44807357","name":"Catechist Formation","screen_name":"adlaformation","location":"Los Angeles","url":"http:\/\/archla.org\/formation","description":"Coordinator of Advanced Catechetical Ministries and Basic Catechist Formation Archdiocese of Los Angeles","protected":false,"verified":false,"followers_count":312,"friends_count":100,"listed_count":20,"favourites_count":505,"statuses_count":3820,"created_at":"Fri Jun 05 03:11:58 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/250505742\/Archdiocese_of_LA_Logo_formatted_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/250505742\/Archdiocese_of_LA_Logo_formatted_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44807357\/1391628658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XJ72lu82uW","expanded_url":"http:\/\/ift.tt\/1lfIAyj","display_url":"ift.tt\/1lfIAyj","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090657"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033227265,"id_str":"663728123033227265","text":"astaga https:\/\/t.co\/XYWCIkQseR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2322464155,"id_str":"2322464155","name":"SEULGI.","screen_name":"seulgiash","location":"masasih?","url":null,"description":"bagi mu agama mu, bagi ku kau lah segalanya.","protected":false,"verified":false,"followers_count":115,"friends_count":87,"listed_count":1,"favourites_count":462,"statuses_count":3976,"created_at":"Sat Feb 01 15:01:00 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFC0CB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655676685547778048\/aJeTcYq1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655676685547778048\/aJeTcYq1.png","profile_background_tile":true,"profile_link_color":"FFC0CB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708430931070976\/7vH_I3Ur_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708430931070976\/7vH_I3Ur_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2322464155\/1446911019","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725999322853377,"quoted_status_id_str":"663725999322853377","quoted_status":{"created_at":"Mon Nov 09 14:33:04 +0000 2015","id":663725999322853377,"id_str":"663725999322853377","text":"https:\/\/t.co\/Kp39DPHIjh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3853824132,"id_str":"3853824132","name":"\u2614","screen_name":"masasihfm","location":null,"url":null,"description":"the stars are blue and shiver in the distance.","protected":false,"verified":false,"followers_count":50,"friends_count":54,"listed_count":0,"favourites_count":0,"statuses_count":263,"created_at":"Sun Oct 11 02:39:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663231115843403776\/ew627cS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663231115843403776\/ew627cS9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3853824132\/1446972619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Kp39DPHIjh","expanded_url":"https:\/\/m.soundcloud.com\/them-on-yet\/them-on-yet-disosor-bencong","display_url":"m.soundcloud.com\/them-on-yet\/th\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XYWCIkQseR","expanded_url":"https:\/\/twitter.com\/masasihfm\/status\/663725999322853377","display_url":"twitter.com\/masasihfm\/stat\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041574912,"id_str":"663728123041574912","text":"RT @BlackPplVines: This just might be the rawest video of all time \ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/WTjHtWwNpw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2201149229,"id_str":"2201149229","name":"Ben Reed","screen_name":"benxcr","location":null,"url":null,"description":"Theres No Traffic After The Extra Mile","protected":false,"verified":false,"followers_count":414,"friends_count":344,"listed_count":1,"favourites_count":3531,"statuses_count":1339,"created_at":"Sat Nov 30 01:19:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661374778192850944\/E9TNtD9G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661374778192850944\/E9TNtD9G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2201149229\/1445104448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:48:45 +0000 2015","id":663382659066933248,"id_str":"663382659066933248","text":"This just might be the rawest video of all time \ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/WTjHtWwNpw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1352586948,"id_str":"1352586948","name":"Black People Vines","screen_name":"BlackPplVines","location":"*DON'T own any content posted*","url":null,"description":"Because black people make better vines *Original Account\/Parody* (Not affiliated with vine) CONTACT: budalatweets@gmail.com | 18+ content","protected":false,"verified":false,"followers_count":796767,"friends_count":136,"listed_count":461,"favourites_count":136,"statuses_count":6445,"created_at":"Sun Apr 14 19:17:45 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/842741077\/a83b550ae603534ff6cc7e4f35babdb4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/842741077\/a83b550ae603534ff6cc7e4f35babdb4.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548313774852042753\/DQNnrPGt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548313774852042753\/DQNnrPGt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1352586948\/1407423306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13988,"favorite_count":18190,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662424504761720833,"id_str":"662424504761720833","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","url":"https:\/\/t.co\/WTjHtWwNpw","display_url":"pic.twitter.com\/WTjHtWwNpw","expanded_url":"http:\/\/twitter.com\/xdvv3_\/status\/662424699574595585\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662424699574595585,"source_status_id_str":"662424699574595585","source_user_id":944999395,"source_user_id_str":"944999395"}]},"extended_entities":{"media":[{"id":662424504761720833,"id_str":"662424504761720833","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","url":"https:\/\/t.co\/WTjHtWwNpw","display_url":"pic.twitter.com\/WTjHtWwNpw","expanded_url":"http:\/\/twitter.com\/xdvv3_\/status\/662424699574595585\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662424699574595585,"source_status_id_str":"662424699574595585","source_user_id":944999395,"source_user_id_str":"944999395","video_info":{"aspect_ratio":[1,1],"duration_millis":15033,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/480x480\/II6WzJbqt1HNUQQx.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/240x240\/HZIWEHysqLh-v21U.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/pl\/RMLB-O2cY9jlVM51.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/480x480\/II6WzJbqt1HNUQQx.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/pl\/RMLB-O2cY9jlVM51.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlackPplVines","name":"Black People Vines","id":1352586948,"id_str":"1352586948","indices":[3,17]}],"symbols":[],"media":[{"id":662424504761720833,"id_str":"662424504761720833","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","url":"https:\/\/t.co\/WTjHtWwNpw","display_url":"pic.twitter.com\/WTjHtWwNpw","expanded_url":"http:\/\/twitter.com\/xdvv3_\/status\/662424699574595585\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662424699574595585,"source_status_id_str":"662424699574595585","source_user_id":944999395,"source_user_id_str":"944999395"}]},"extended_entities":{"media":[{"id":662424504761720833,"id_str":"662424504761720833","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662424504761720833\/pu\/img\/W_f2h9fPpGZdmawq.jpg","url":"https:\/\/t.co\/WTjHtWwNpw","display_url":"pic.twitter.com\/WTjHtWwNpw","expanded_url":"http:\/\/twitter.com\/xdvv3_\/status\/662424699574595585\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662424699574595585,"source_status_id_str":"662424699574595585","source_user_id":944999395,"source_user_id_str":"944999395","video_info":{"aspect_ratio":[1,1],"duration_millis":15033,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/480x480\/II6WzJbqt1HNUQQx.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/240x240\/HZIWEHysqLh-v21U.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/pl\/RMLB-O2cY9jlVM51.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/vid\/480x480\/II6WzJbqt1HNUQQx.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662424504761720833\/pu\/pl\/RMLB-O2cY9jlVM51.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123020611584,"id_str":"663728123020611584","text":"\u300eDivine Age\uff5e\u795e\u306e\u6804\u5149\uff5e\u300f\u4e8b\u524d\u767b\u9332\u7279\u5178\u306e\u30ac\u30c1\u30e3\u306f\u3057\u305f\uff1f\u4eca\u306a\u3089\u30ac\u30c1\u30e3\u56de\u3057\u653e\u984c\uff01749429\u56de\u306b\u9054\u3057\u307e\u3057\u305f\uff01\u65e9\u304f\u30ac\u30c1\u30e3\u3057\u3088\u3046\uff01 https:\/\/t.co\/12Y8DbCqZK","source":"\u003ca href=\"http:\/\/yoyaku-top10.jp\/\" rel=\"nofollow\"\u003e\u30b9\u30de\u30db\u306e\u65b0\u4f5c\u30b2\u30fc\u30e0\u63a2\u3057-\u4e88\u7d04\u30c8\u30c3\u30d710-\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779327375,"id_str":"2779327375","name":"panichu","screen_name":"panichuu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":374,"created_at":"Fri Aug 29 22:13:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641729104555806721\/lbEsDFQt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641729104555806721\/lbEsDFQt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779327375\/1441835116","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/12Y8DbCqZK","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53uwhgz\/14jmz","display_url":"cards.twitter.com\/cards\/18ce53uw\u2026","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090657"} +{"delete":{"status":{"id":615499675236347904,"id_str":"615499675236347904","user_id":2793398445,"user_id_str":"2793398445"},"timestamp_ms":"1447080090833"}} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041722369,"id_str":"663728123041722369","text":"RT @7ll_Follow_Back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189347750,"id_str":"2189347750","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"M_A_Alzahrani","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0639\u0627\u0634\u0642 \u0648\u0645\u062d\u0628 \u0644\u0646\u0627\u062f\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0644\u0645\u0644\u0643\u064a \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631\u060c \u0625\u0633\u0623\u0644\u0646\u064a \u0639\u0646 \u0627\u0644\u0639\u0634\u0642 \u0623\u062d\u062f\u062b\u0643 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644.\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u0637\u0631\u062d \u0648\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647","protected":false,"verified":false,"followers_count":3821,"friends_count":1084,"listed_count":4,"favourites_count":1190,"statuses_count":69421,"created_at":"Wed Nov 20 20:15:11 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189347750\/1444106923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 20:31:36 +0000 2015","id":662729064784900099,"id_str":"662729064784900099","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 1130","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549145898,"id_str":"549145898","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","screen_name":"7ll_Follow_Back","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":513876,"friends_count":272527,"listed_count":976,"favourites_count":7,"statuses_count":162789,"created_at":"Mon Apr 09 11:19:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7ll_Follow_Back","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","id":549145898,"id_str":"549145898","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041615872,"id_str":"663728123041615872","text":"RT @1215shiho0125: \u3010\u4ea4\u63db\u3011\n\u8584\u685c\u9b3c AGF \u30b9\u30d1\u30b3\u30df \u4e00\u4e8c\u4e09 \u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u8b72\u25b6 \u658e\u85e4(\u79c1\u670d)\u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u6c42\u25b6 \u658e\u85e4(\u968a\u670d)\u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u96e3\u3057\u3044\u3068\u306f\u601d\u3044\u307e\u3059\u304c\u3001\u304a\u6c17\u8efd\u306b\u30ea\u30d7\u304f\u3060\u3055\u3044\u3002 https:\/\/t.co\/HF1NOkwdv1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3046052119,"id_str":"3046052119","name":"\u308a\u3063\u305f\u3093\uff5c\u53d6\u5f15\u5c02\u7528\u57a2","screen_name":"rxxxtan_hs","location":"\u4eac\u90fd\u3010\u72ac\u591c\u53c9\u3068\u53cc\u74a7\u3068\u5343\u9b3c\u4e38\u306e\u9593\u3011","url":null,"description":"\u53d6\u5f15\u5c02\u7528\u57a2\/\u672c\u57a2\u261e\u3010@rychxxxn710\u3011\/20\u2191\/\u5bfe\u5fdc\uff1a\u90f5\u8caf\u9280\u884c\uff3b\u8584\u685c\u9b3c\uff1a\u658e\u85e4\u30fb\u6c96\u7530 \uff5c\u5341\u9b3c\u306e\u7d46\uff1a\u5343\u9b3c\u4e38\u30b0\u30c3\u30ba\u6709\u9650\u56de\u53ce\u4e2d\u2729\u20db\u02d6\u00b0\uff3d\u304a\u53d6\u5f15\u306e\u969b\u306f\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\u25b7\uff3bhttp:\/\/twpf.jp\/rxxxtan_hs\uff3d\u3008\uff0a\u4ed5\u4e8b\u306e\u90fd\u5408\u4e0a\u3001\u8fd4\u4fe1\u6df1\u591c\u591a\u3081\uff0a\u3009","protected":false,"verified":false,"followers_count":117,"friends_count":116,"listed_count":0,"favourites_count":16,"statuses_count":4083,"created_at":"Fri Feb 27 09:18:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659988448078528512\/TwOggPZ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659988448078528512\/TwOggPZ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3046052119\/1440358491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:23 +0000 2015","id":663725826488164352,"id_str":"663725826488164352","text":"\u3010\u4ea4\u63db\u3011\n\u8584\u685c\u9b3c AGF \u30b9\u30d1\u30b3\u30df \u4e00\u4e8c\u4e09 \u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u8b72\u25b6 \u658e\u85e4(\u79c1\u670d)\u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u6c42\u25b6 \u658e\u85e4(\u968a\u670d)\u30d3\u30c3\u30b0\u7f36\u30d0\u30c3\u30b8\n\n\u96e3\u3057\u3044\u3068\u306f\u601d\u3044\u307e\u3059\u304c\u3001\u304a\u6c17\u8efd\u306b\u30ea\u30d7\u304f\u3060\u3055\u3044\u3002 https:\/\/t.co\/HF1NOkwdv1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1435533602,"id_str":"1435533602","name":"\u25b7\u30a2\u30e9\u30b7\u677e\u306f\u30b0\u30c3\u30ba\u6574\u7406\u3057\u307e\u3059\u2661*\uff9f","screen_name":"1215shiho0125","location":"next\uff1b11\/21(\u571f)\u30cf\u30a4\u30ad\u30e5\u30fc\uff01\uff01\u821e\u53f0\u30de\u30c1\u30cd","url":"http:\/\/twpf.jp\/1215shiho0125","description":"\u25b7\u25b6\u65b0\u9078\u7d44\u4e09\u756a\u7d44\u7d44\u9577\u2661\/\u671d\u65e5\u5948\u5bb66\u7537&9\u7537\u2661\/\u7537\u6c17\u5168\u958b&\u30ed\u30c3\u30af\u2661\/\u9752\u8449\u57ce\u897f\u30d0\u30ec\u30fc\u90e8\u4e3b\u5c06\u2661\/\u4f0f\u898b\u733f\u6bd4\u53e4\u2661\/\u6afb\u4e95\u7fd4\u2661\/\u6a4b\u672c\u7965\u5e73\u2661\/\u6589\u85e4\u58ee\u99ac\u2661\/\u7bb1\u6839\u306e\u91ce\u7363&\u4e0d\u601d\u8b70\u30c1\u30e3\u30f3\u2661\/\u9234\u6728\u62e1\u6a39\u2661\/\u821e\u53f0\u3068\u304b\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u3082\u597d\u304d\u2661\u8584\u30df\u30e5\u30da\u30c0\u30b9\u30c6\u4ff3\u512a\u597d\u304d\u2661\/\u58f0\u512a\u3082\u3044\u308d\u3044\u308d\u597d\u304d\u3067\u3059\u2661\u30f2\u30bf\u57a2\u517c\u4ea4\u63db\u57a2\u3067\u3059\u3002\u96d1\u98df\u3059\u307f\u307e\u305b\u3093m(__)m","protected":false,"verified":false,"followers_count":541,"friends_count":716,"listed_count":11,"favourites_count":1450,"statuses_count":19758,"created_at":"Fri May 17 12:30:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663030346368155648\/A3I9C0OT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663030346368155648\/A3I9C0OT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1435533602\/1446290995","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725810478510081,"id_str":"663725810478510081","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","url":"https:\/\/t.co\/HF1NOkwdv1","display_url":"pic.twitter.com\/HF1NOkwdv1","expanded_url":"http:\/\/twitter.com\/1215shiho0125\/status\/663725826488164352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725810478510081,"id_str":"663725810478510081","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","url":"https:\/\/t.co\/HF1NOkwdv1","display_url":"pic.twitter.com\/HF1NOkwdv1","expanded_url":"http:\/\/twitter.com\/1215shiho0125\/status\/663725826488164352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1215shiho0125","name":"\u25b7\u30a2\u30e9\u30b7\u677e\u306f\u30b0\u30c3\u30ba\u6574\u7406\u3057\u307e\u3059\u2661*\uff9f","id":1435533602,"id_str":"1435533602","indices":[3,17]}],"symbols":[],"media":[{"id":663725810478510081,"id_str":"663725810478510081","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","url":"https:\/\/t.co\/HF1NOkwdv1","display_url":"pic.twitter.com\/HF1NOkwdv1","expanded_url":"http:\/\/twitter.com\/1215shiho0125\/status\/663725826488164352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663725826488164352,"source_status_id_str":"663725826488164352","source_user_id":1435533602,"source_user_id_str":"1435533602"}]},"extended_entities":{"media":[{"id":663725810478510081,"id_str":"663725810478510081","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG6nUcAE0mgK.jpg","url":"https:\/\/t.co\/HF1NOkwdv1","display_url":"pic.twitter.com\/HF1NOkwdv1","expanded_url":"http:\/\/twitter.com\/1215shiho0125\/status\/663725826488164352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":444,"resize":"fit"},"large":{"w":1024,"h":759,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":252,"resize":"fit"}},"source_status_id":663725826488164352,"source_status_id_str":"663725826488164352","source_user_id":1435533602,"source_user_id_str":"1435533602"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090662"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123041718272,"id_str":"663728123041718272","text":"@bangbronigga yeah bro","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727817910296576,"in_reply_to_status_id_str":"663727817910296576","in_reply_to_user_id":3989301495,"in_reply_to_user_id_str":"3989301495","in_reply_to_screen_name":"bangbronigga","user":{"id":3303826667,"id_str":"3303826667","name":"BigDawg","screen_name":"SmokeFrmDaBluff","location":"|52|","url":null,"description":"Well Respected N Connected|I Like Gangsta Bitches Like Kim Possible|MoffMade|HouseTeam|WeInThisTogether|","protected":false,"verified":false,"followers_count":121,"friends_count":124,"listed_count":0,"favourites_count":376,"statuses_count":4246,"created_at":"Sat May 30 16:22:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663590419045982208\/_Yv3C9aS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663590419045982208\/_Yv3C9aS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303826667\/1447046979","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bangbronigga","name":"FreeCurt","id":3989301495,"id_str":"3989301495","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080090662"} +{"delete":{"status":{"id":615823274153390080,"id_str":"615823274153390080","user_id":1139262163,"user_id_str":"1139262163"},"timestamp_ms":"1447080090897"}} +{"delete":{"status":{"id":519547991883915264,"id_str":"519547991883915264","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080090906"}} +{"delete":{"status":{"id":615912717715517440,"id_str":"615912717715517440","user_id":192454952,"user_id_str":"192454952"},"timestamp_ms":"1447080090922"}} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123058384900,"id_str":"663728123058384900","text":"@mooooogi \u7121\u81ed\u6027\u3059\u307e\u3093\u3001\u4fee\u6b63\u3057\u3068\u3044\u305f https:\/\/t.co\/LjSEFtcliY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724010207731713,"in_reply_to_status_id_str":"663724010207731713","in_reply_to_user_id":423269157,"in_reply_to_user_id_str":"423269157","in_reply_to_screen_name":"chiteijin00","user":{"id":423269157,"id_str":"423269157","name":"\u5730\u5e95\u4eba","screen_name":"chiteijin00","location":null,"url":null,"description":"\u30cb\u30b3\u30cb\u30b3\u5c02\u7528 \u30cb\u30b3\u751f\uff06\u30cb\u30b3\u52d5\u3092\u898b\u308b\u30ea\u30b9\u30ca\u30fc\u3067\u3059\u3002\n\n\u6a5f\u5bc6\u60c5\u5831\u30b5\u30a4\u30c8\nhttps:\/\/t.co\/uTNhbXQYtb\n\u3082\u304e\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3\nhttps:\/\/t.co\/93ZFBLkTj7\n\u30ad\u30d3\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3\nhttps:\/\/t.co\/UlA1yPHqeT","protected":false,"verified":false,"followers_count":18,"friends_count":14,"listed_count":1,"favourites_count":8,"statuses_count":463,"created_at":"Mon Nov 28 08:58:50 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563630312253435904\/SoKrrsVE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563630312253435904\/SoKrrsVE.png","profile_background_tile":true,"profile_link_color":"B19057","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633648590850621440\/yIb6gDRA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633648590850621440\/yIb6gDRA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/423269157\/1443717315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mooooogi","name":"\u3082\u304e_LINE\u30b9\u30bf\u30f3\u30d7\u8ca9\u58f2\u4e2d\u2665","id":348051033,"id_str":"348051033","indices":[0,9]}],"symbols":[],"media":[{"id":663728121946898432,"id_str":"663728121946898432","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNdgVAAAPW9q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNdgVAAAPW9q.jpg","url":"https:\/\/t.co\/LjSEFtcliY","display_url":"pic.twitter.com\/LjSEFtcliY","expanded_url":"http:\/\/twitter.com\/chiteijin00\/status\/663728123058384900\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728121946898432,"id_str":"663728121946898432","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNdgVAAAPW9q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNdgVAAAPW9q.jpg","url":"https:\/\/t.co\/LjSEFtcliY","display_url":"pic.twitter.com\/LjSEFtcliY","expanded_url":"http:\/\/twitter.com\/chiteijin00\/status\/663728123058384900\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090666"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123033202689,"id_str":"663728123033202689","text":"@R_Reimu8901 \u3053\u306e\u30c1\u30e3\u30f3\u30cd\u30eb\u306f\u7121\u65ad\u8ee2\u8f09\u3067\u3059\u304b\uff1f https:\/\/t.co\/UbRBqNpBPN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725759240933377,"in_reply_to_status_id_str":"663725759240933377","in_reply_to_user_id":3260068394,"in_reply_to_user_id_str":"3260068394","in_reply_to_screen_name":"R_Reimu8901","user":{"id":2915424308,"id_str":"2915424308","name":"\u30d1\u30b9\u30aa\u30af\u30c8","screen_name":"kotaro20020304","location":null,"url":null,"description":"\u30b2\u30fc\u30e0\u5927\u597d\u304d","protected":false,"verified":false,"followers_count":44,"friends_count":54,"listed_count":0,"favourites_count":7,"statuses_count":380,"created_at":"Mon Dec 01 08:30:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627876378256388096\/TgLgxMv8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627876378256388096\/TgLgxMv8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915424308\/1438532036","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"R_Reimu8901","name":"\u98a8\u6708","id":3260068394,"id_str":"3260068394","indices":[0,12]}],"symbols":[],"media":[{"id":663728110601310208,"id_str":"663728110601310208","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMzPVEAAp5Q7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMzPVEAAp5Q7.jpg","url":"https:\/\/t.co\/UbRBqNpBPN","display_url":"pic.twitter.com\/UbRBqNpBPN","expanded_url":"http:\/\/twitter.com\/kotaro20020304\/status\/663728123033202689\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728110601310208,"id_str":"663728110601310208","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMzPVEAAp5Q7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMzPVEAAp5Q7.jpg","url":"https:\/\/t.co\/UbRBqNpBPN","display_url":"pic.twitter.com\/UbRBqNpBPN","expanded_url":"http:\/\/twitter.com\/kotaro20020304\/status\/663728123033202689\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080090660"} +{"created_at":"Mon Nov 09 14:41:30 +0000 2015","id":663728123050106880,"id_str":"663728123050106880","text":"https:\/\/t.co\/8B9T0RyqCT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3160202420,"id_str":"3160202420","name":"abdeslam E. Gonz\u00e1lez","screen_name":"abdeslam3737","location":"Entre Gibraleon y Azerbaijan","url":null,"description":"Cocinero que anda de aqu\u00ed para all\u00e1","protected":false,"verified":false,"followers_count":33,"friends_count":92,"listed_count":1,"favourites_count":29,"statuses_count":87,"created_at":"Thu Apr 16 21:47:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607131399074684928\/kNqeFQBL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607131399074684928\/kNqeFQBL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3160202420\/1433586378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728118746759168,"id_str":"663728118746759168","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNRlWwAApaHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNRlWwAApaHm.jpg","url":"https:\/\/t.co\/8B9T0RyqCT","display_url":"pic.twitter.com\/8B9T0RyqCT","expanded_url":"http:\/\/twitter.com\/abdeslam3737\/status\/663728123050106880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":899,"h":1599,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728118746759168,"id_str":"663728118746759168","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNRlWwAApaHm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNRlWwAApaHm.jpg","url":"https:\/\/t.co\/8B9T0RyqCT","display_url":"pic.twitter.com\/8B9T0RyqCT","expanded_url":"http:\/\/twitter.com\/abdeslam3737\/status\/663728123050106880\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"},"large":{"w":899,"h":1599,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080090664"} +{"delete":{"status":{"id":663649932834803712,"id_str":"663649932834803712","user_id":3101597756,"user_id_str":"3101597756"},"timestamp_ms":"1447080091073"}} +{"delete":{"status":{"id":663488112367165440,"id_str":"663488112367165440","user_id":2245551082,"user_id_str":"2245551082"},"timestamp_ms":"1447080091163"}} +{"delete":{"status":{"id":616827319227801600,"id_str":"616827319227801600","user_id":3143202600,"user_id_str":"3143202600"},"timestamp_ms":"1447080091117"}} +{"delete":{"status":{"id":663563035236302848,"id_str":"663563035236302848","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080091251"}} +{"delete":{"status":{"id":663727644874174464,"id_str":"663727644874174464","user_id":2381618838,"user_id_str":"2381618838"},"timestamp_ms":"1447080091233"}} +{"delete":{"status":{"id":617674035954999296,"id_str":"617674035954999296","user_id":3265853606,"user_id_str":"3265853606"},"timestamp_ms":"1447080091245"}} +{"delete":{"status":{"id":513690239500423170,"id_str":"513690239500423170","user_id":2402662358,"user_id_str":"2402662358"},"timestamp_ms":"1447080091260"}} +{"delete":{"status":{"id":619090062383251456,"id_str":"619090062383251456","user_id":635969549,"user_id_str":"635969549"},"timestamp_ms":"1447080091302"}} +{"delete":{"status":{"id":624758341273673728,"id_str":"624758341273673728","user_id":2986970048,"user_id_str":"2986970048"},"timestamp_ms":"1447080091354"}} +{"delete":{"status":{"id":663492856120610816,"id_str":"663492856120610816","user_id":4124353394,"user_id_str":"4124353394"},"timestamp_ms":"1447080091450"}} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127227633664,"id_str":"663728127227633664","text":"RT @luscatic: a bad bateu em minha porta e eu\nA B R I\nsenhoras e senhores agora eu to no ch\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2371371335,"id_str":"2371371335","name":"maria in\u00eas","screen_name":"iilopa","location":null,"url":null,"description":"pensei q era pra fazer regra de tr\u00eas","protected":false,"verified":false,"followers_count":346,"friends_count":244,"listed_count":1,"favourites_count":432,"statuses_count":3391,"created_at":"Fri Feb 28 16:33:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475789712481730560\/rZGKoYBl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475789712481730560\/rZGKoYBl.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663319597475581952\/Gkup9YvN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663319597475581952\/Gkup9YvN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2371371335\/1446431530","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 02:04:00 +0000 2015","id":662812716122431488,"id_str":"662812716122431488","text":"a bad bateu em minha porta e eu\nA B R I\nsenhoras e senhores agora eu to no ch\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2907090598,"id_str":"2907090598","name":"falsete da melody","screen_name":"luscatic","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":11364,"friends_count":3107,"listed_count":20,"favourites_count":4256,"statuses_count":6293,"created_at":"Sat Dec 06 00:17:20 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614514828812660736\/FYijMdG2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614514828812660736\/FYijMdG2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907090598\/1417961287","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2361,"favorite_count":1452,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"luscatic","name":"falsete da melody","id":2907090598,"id_str":"2907090598","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080091660"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127215075328,"id_str":"663728127215075328","text":"RT @onedirection: #EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":478967669,"id_str":"478967669","name":"Valentina \u2693","screen_name":"valenrojas25A","location":"COL. ","url":null,"description":"\u2693 25\/03\/15 @zaynmalik TEAMO. \u2721","protected":false,"verified":false,"followers_count":216,"friends_count":192,"listed_count":2,"favourites_count":7107,"statuses_count":7747,"created_at":"Mon Jan 30 21:29:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654019408080277504\/svM-a9o1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654019408080277504\/svM-a9o1.png","profile_background_tile":true,"profile_link_color":"0EFFE4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"89E5F5","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663040305390743554\/djWNVojq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663040305390743554\/djWNVojq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478967669\/1446359820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:22 +0000 2015","id":663716009912627200,"id_str":"663716009912627200","text":"#EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648640,"friends_count":3931,"listed_count":66280,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16438,"favorite_count":21064,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]},{"text":"MadeInTheAm","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[75,98]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[18,30]},{"text":"MadeInTheAm","indices":[69,81]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[93,116]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127236022273,"id_str":"663728127236022273","text":"Mantener nuestra identidad. Venezuela con nombre de mujer. Bella y siempre solidaria.!!! No perdamos nuestros valores!!!.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1677942446,"id_str":"1677942446","name":"ELSA PALMA","screen_name":"elsaelenapalma","location":null,"url":null,"description":"Orientadora de conducta y sexolog\u00eda","protected":false,"verified":false,"followers_count":64,"friends_count":260,"listed_count":0,"favourites_count":114,"statuses_count":79,"created_at":"Sat Aug 17 10:53:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659808016003407872\/xuUJLCvF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659808016003407872\/xuUJLCvF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1677942446\/1435969133","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"012b6b2c110f0c21","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/012b6b2c110f0c21.json","place_type":"city","name":"Barquisimeto","full_name":"Barquisimeto, Lara","country_code":"VE","country":"Venezuela","bounding_box":{"type":"Polygon","coordinates":[[[-69.475331,9.995855],[-69.475331,10.115175],[-69.259919,10.115175],[-69.259919,9.995855]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091662"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248584704,"id_str":"663728127248584704","text":"RT @dxxwney: exausta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253639216,"id_str":"253639216","name":"kmila","screen_name":"owcamiss","location":"Rio Grande do Sul, Brasil","url":null,"description":null,"protected":false,"verified":false,"followers_count":2660,"friends_count":1668,"listed_count":5,"favourites_count":5673,"statuses_count":52708,"created_at":"Thu Feb 17 17:20:59 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0E0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554444463477497856\/wRnjKEkS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554444463477497856\/wRnjKEkS.jpeg","profile_background_tile":true,"profile_link_color":"6E7D7D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663575944536457217\/A3fLSl57_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663575944536457217\/A3fLSl57_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253639216\/1410391689","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:48 +0000 2015","id":663725428746661888,"id_str":"663725428746661888","text":"exausta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2565104421,"id_str":"2565104421","name":"Denis","screen_name":"dxxwney","location":null,"url":null,"description":"food? oh, give me","protected":false,"verified":false,"followers_count":25989,"friends_count":24474,"listed_count":5,"favourites_count":10947,"statuses_count":21334,"created_at":"Mon May 26 11:13:01 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655525230748782592\/1hp34FSK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655525230748782592\/1hp34FSK.png","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662834644635803648\/0hr81RE7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662834644635803648\/0hr81RE7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2565104421\/1446868747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dxxwney","name":"Denis","id":2565104421,"id_str":"2565104421","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127215013888,"id_str":"663728127215013888","text":"@05maron08 \u3081\u3050\u30de\u30de\u304c\uff01\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727115674632193,"in_reply_to_status_id_str":"663727115674632193","in_reply_to_user_id":819404707,"in_reply_to_user_id_str":"819404707","in_reply_to_screen_name":"05maron08","user":{"id":1051960968,"id_str":"1051960968","name":"\u53f6\u6597\uff20\u30c0\u30a6\u30f3\u30fbK","screen_name":"daun_kanato","location":"\u304a\u3084\u3059\u307f","url":null,"description":"\u305f\u307e\u306b\u30cb\u30b3\u751f\u3084\u3063\u3066\u308b\u3002\u826f\u304b\u3063\u305f\u3089\u6765\u3066\u4e0b\u3055\u3044\u3002\u30d5\u30a9\u30ed\u30fc\u30fb\u30ea\u30e0\u306f\u3054\u81ea\u7531\u306b \u732b\u306f\u4ffa\u306e\u7652\u3057","protected":false,"verified":false,"followers_count":245,"friends_count":454,"listed_count":8,"favourites_count":1798,"statuses_count":58095,"created_at":"Tue Jan 01 06:28:58 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537055380224765952\/13r52o2h_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537055380224765952\/13r52o2h_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1051960968\/1434271115","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"05maron08","name":"\u3081\u3050","id":819404707,"id_str":"819404707","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127244398592,"id_str":"663728127244398592","text":"-\n\n\u0631\u0628\u0651\u064a \u0623\u0646\u062a \u0623\u062f\u0631\u0649 \u0623\u064a\u0646 \u062a\u0648\u062c\u062f \u0633\u064e\u0639\u0627\u062f\u062a\u064a \u0641\u064e \u0642\u0631\u0628\u0646\u064a \u0625\u0644\u064a\u0647\u0627..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1478368171,"id_str":"1478368171","name":"\u0645\u0644\u0627\u0645\u062d \u062e\u062c\u0644 &","screen_name":"soso45357","location":null,"url":null,"description":"\u0644\u0646\u0652 \u0623\u0639\u064e\u0627\u062a\u0628\u0643\u0651 \u0648 \u0627\u0634\u062a\u064e\u0643\u064a \u0645\u0646\u0643, \u0644\u0646\u0652 \u0623\u062a\u062d\u064e\u062f\u062b\u0652 \u0628 \u0643\u064e\u0644\u0645\u0629 \u062a\u064f\u0639\u0643\u0631 \u0645\u064e\u0632\u0622\u062c\u0643\u0652, \u0645\u064e\u0647\u0645\u0622 \u0623\u0635\u064e\u0622\u0628\u0646\u0650\u064a\u0652 \u0645\u0650\u0646 \u0623\u0644\u0645\u0652 \u0633\u0623\u0628\u062a\u0633\u0645\u0652 \u2661\u0337\u0337\u0337\u0337\u0337\u0337\u0337\u200f\u200b","protected":false,"verified":false,"followers_count":1412,"friends_count":1427,"listed_count":1,"favourites_count":103,"statuses_count":10864,"created_at":"Sun Jun 02 22:30:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509132709621272576\/HRq6UNCZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509132709621272576\/HRq6UNCZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1478368171\/1415934529","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080091664"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240196096,"id_str":"663728127240196096","text":"I'm at Yabanc\u0131 Diller Y\u00fcksekokulu in Manisa, T\u00fcrkiye https:\/\/t.co\/UL6Tz937xq","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437833244,"id_str":"437833244","name":"SafakGulsen","screen_name":"SafakGulsen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":175,"friends_count":254,"listed_count":0,"favourites_count":246,"statuses_count":228,"created_at":"Thu Dec 15 21:58:46 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000057824988\/317b43bb96acfec9b9d4a5d54387a26f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000057824988\/317b43bb96acfec9b9d4a5d54387a26f.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458239239470456832\/YTXeXyle_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458239239470456832\/YTXeXyle_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UL6Tz937xq","expanded_url":"https:\/\/www.swarmapp.com\/c\/7V29iKwkxMU","display_url":"swarmapp.com\/c\/7V29iKwkxMU","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127231705088,"id_str":"663728127231705088","text":"\u5bbf\u984c\u304a\u308f\u305f(*\u00b4\uff65\u03c9\uff65`)=3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3104039412,"id_str":"3104039412","name":"\u3064\u3076\u3042\u3093@APHS\u30d0\u30a4\u30eb\u30b7\u30e5\u30df\u30c3\u30c8","screen_name":"maoao_hbn","location":null,"url":null,"description":"18\u2191 \uff71\uff72\uff7a\uff9d \uff8d\uff6f\uff80\uff9e-\u81ea\u4f5c \uff8d\uff80\uff98\uff71 Splatoon APHS\u3067\u306f\u30d0\u30a4\u30eb\u30b7\u30e5\u30df\u30c3\u30c8\u3092\u62c5\u5f53\u3057\u3066\u3044\u307e\u3059 \u4e00\u8a00\u3044\u305f\u3060\u3051\u308c\u3070\uff8c\uff6b\uff9b\uff8a\uff9e\u3057\u307e\u3059 \u57fa\u672c\uff80\uff92\u306a\u306e\u3067\uff80\uff9e\uff92\u306a\u3072\u3068\u306f\u3054\u3081\u3093\u306a\u3055\u3044 \u8150\u3063\u3066\u308b \u69cb\u3063\u3066\u307b\u3057\u3044(\u3046\u3056\u3044) FRB\u306f\u304a\u597d\u304d\u306b http:\/\/pixiv.net\/member.php?id=\u2026","protected":false,"verified":false,"followers_count":186,"friends_count":183,"listed_count":23,"favourites_count":8462,"statuses_count":12516,"created_at":"Mon Mar 23 02:47:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660461451883122689\/i7lrW8r9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660461451883122689\/i7lrW8r9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3104039412\/1446683406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091661"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127215058944,"id_str":"663728127215058944","text":"@marmonben xDDDDDDDDDDD pero despasito ehhh \ud83d\ude09\ud83d\ude09\ud83d\ude09\ud83d\ude04\ud83d\ude04\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727731746713600,"in_reply_to_status_id_str":"663727731746713600","in_reply_to_user_id":230912371,"in_reply_to_user_id_str":"230912371","in_reply_to_screen_name":"marmonben","user":{"id":224180811,"id_str":"224180811","name":"Gonzalo_Heavyllista","screen_name":"El_Heavyllista","location":"Sevilla","url":null,"description":"Soy de Sevilla, me gusta el heavy metal y derivados y soy del Sevilla F.C. Comunista, Republicano y Antifascista.","protected":false,"verified":false,"followers_count":684,"friends_count":777,"listed_count":11,"favourites_count":19422,"statuses_count":47986,"created_at":"Wed Dec 08 10:32:16 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/536646702971629568\/N2s_Z27c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/536646702971629568\/N2s_Z27c.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654557768905527296\/wAQI63an_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654557768905527296\/wAQI63an_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224180811\/1411754706","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"8c86b8b4cb716103","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8c86b8b4cb716103.json","place_type":"city","name":"Sevilla","full_name":"Sevilla, Andaluc\u00eda","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[-6.028430,37.313610],[-6.028430,37.452625],[-5.818660,37.452625],[-5.818660,37.313610]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"marmonben","name":"Mamen Guisante","id":230912371,"id_str":"230912371","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127219208192,"id_str":"663728127219208192","text":"RT @Pumocat: Iniciem la creaci\u00f3 de la #Rep\u00fablica Catalana \ud83d\ude0d\ud83d\ude0d\ud83d\ude2d\ud83d\ude2d\n#independ\u00e8ncia #guanyarem #Ple9N #Ple9NTV3 https:\/\/t.co\/b2G8jz9AxM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240804342,"id_str":"240804342","name":"Jordi L\u00f3pez","screen_name":"stoynoconectado","location":"Barcelona","url":null,"description":"Tener o no un final feliz depende de d\u00f3nde decidas detener la historia","protected":false,"verified":false,"followers_count":258,"friends_count":925,"listed_count":13,"favourites_count":245,"statuses_count":3788,"created_at":"Thu Jan 20 19:48:54 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/763058507\/5c2b4355167de9514debe7fd3a6deb37.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/763058507\/5c2b4355167de9514debe7fd3a6deb37.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3103677006\/f765d357fb4fc109480b46dcb8f4a351_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3103677006\/f765d357fb4fc109480b46dcb8f4a351_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240804342\/1423346089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:12:24 +0000 2015","id":663675499026214912,"id_str":"663675499026214912","text":"Iniciem la creaci\u00f3 de la #Rep\u00fablica Catalana \ud83d\ude0d\ud83d\ude0d\ud83d\ude2d\ud83d\ude2d\n#independ\u00e8ncia #guanyarem #Ple9N #Ple9NTV3 https:\/\/t.co\/b2G8jz9AxM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17453262,"id_str":"17453262","name":"Oriol Puig","screen_name":"Pumocat","location":"El Clot | Llan\u00e7\u00e0, PPCC","url":"http:\/\/www.facebook.com\/oriolpuigCM","description":"#SocialMedia & #webmaster.Conseller de districte a @Bcn_SantMarti x @Esquerra_ERC.Activista Sahrau\u00ed. @ycommusica @assemblea @bocaradio @elpetittast","protected":false,"verified":false,"followers_count":10402,"friends_count":8622,"listed_count":142,"favourites_count":679,"statuses_count":41714,"created_at":"Mon Nov 17 23:17:37 +0000 2008","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEA03","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097231938\/5b4ec56eae042697b312094e0b2bb8e8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097231938\/5b4ec56eae042697b312094e0b2bb8e8.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654978793367556096\/M7reoFxc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654978793367556096\/M7reoFxc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17453262\/1415492377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"5248e0503640594e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5248e0503640594e.json","place_type":"city","name":"Llan\u00e7\u00e0","full_name":"Llan\u00e7\u00e0, Catalu\u00f1a","country_code":"ES","country":"Espa\u00f1a","bounding_box":{"type":"Polygon","coordinates":[[[3.076583,42.340664],[3.076583,42.398089],[3.174830,42.398089],[3.174830,42.340664]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":5,"entities":{"hashtags":[{"text":"Rep\u00fablica","indices":[25,35]},{"text":"independ\u00e8ncia","indices":[50,64]},{"text":"guanyarem","indices":[65,75]},{"text":"Ple9N","indices":[76,82]},{"text":"Ple9NTV3","indices":[83,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663675447910244352,"id_str":"663675447910244352","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","url":"https:\/\/t.co\/b2G8jz9AxM","display_url":"pic.twitter.com\/b2G8jz9AxM","expanded_url":"http:\/\/twitter.com\/Pumocat\/status\/663675499026214912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663675447910244352,"id_str":"663675447910244352","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","url":"https:\/\/t.co\/b2G8jz9AxM","display_url":"pic.twitter.com\/b2G8jz9AxM","expanded_url":"http:\/\/twitter.com\/Pumocat\/status\/663675499026214912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Rep\u00fablica","indices":[38,48]},{"text":"independ\u00e8ncia","indices":[63,77]},{"text":"guanyarem","indices":[78,88]},{"text":"Ple9N","indices":[89,95]},{"text":"Ple9NTV3","indices":[96,105]}],"urls":[],"user_mentions":[{"screen_name":"Pumocat","name":"Oriol Puig","id":17453262,"id_str":"17453262","indices":[3,11]}],"symbols":[],"media":[{"id":663675447910244352,"id_str":"663675447910244352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","url":"https:\/\/t.co\/b2G8jz9AxM","display_url":"pic.twitter.com\/b2G8jz9AxM","expanded_url":"http:\/\/twitter.com\/Pumocat\/status\/663675499026214912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663675499026214912,"source_status_id_str":"663675499026214912","source_user_id":17453262,"source_user_id_str":"17453262"}]},"extended_entities":{"media":[{"id":663675447910244352,"id_str":"663675447910244352","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXZTbbWoAADknz.jpg","url":"https:\/\/t.co\/b2G8jz9AxM","display_url":"pic.twitter.com\/b2G8jz9AxM","expanded_url":"http:\/\/twitter.com\/Pumocat\/status\/663675499026214912\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663675499026214912,"source_status_id_str":"663675499026214912","source_user_id":17453262,"source_user_id_str":"17453262"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447080091658"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127215017988,"id_str":"663728127215017988","text":"aos maos da ally s\u00e3o tao lindas e pequenas, queria dentro de mim","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740089158,"id_str":"2740089158","name":"erika #5H2","screen_name":"dinallydrunk","location":"nov 9","url":null,"description":"nanka is real","protected":false,"verified":false,"followers_count":2523,"friends_count":261,"listed_count":9,"favourites_count":6748,"statuses_count":130911,"created_at":"Sun Aug 17 16:59:21 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F9FFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624045574455693312\/4784LWJl.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624045574455693312\/4784LWJl.png","profile_background_tile":true,"profile_link_color":"090000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663386388625121280\/8DLpSDFZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663386388625121280\/8DLpSDFZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2740089158\/1446776939","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248461826,"id_str":"663728127248461826","text":"OMI\u3055\u3093\u6700\u9ad8(\u00b4\uff65_\uff65`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":590647227,"id_str":"590647227","name":"\u3062\u306c\u3059\u306a\u5b50","screen_name":"dinusuna","location":"\u25bc\u25bc\u30b5\u30c3\u30dd\u30ed","url":"http:\/\/clubt.jp\/myshop\/S0000046171.html","description":"\u305f\u3076\u3093\u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc\u3067\u3001\u305f\u307e\u306b\u30b3\u30b9\u30d7\u30ec\u3002\u9b54\u6cd5\u5c11\u5973\u3068\u683c\u30b2\u30fc\u97f3\u30b2\u30fc\u53e4\u3044\u6f2b\u753b\u30a2\u30cb\u30e1\u30ab\u30fc\u30c8\u30a5\u30fc\u30f3\u304c\u597d\u304d\u3067\u3059\u3002\u6700\u8fd1\u306f\u30c7\u30ec\u30b9\u30c6P\u3002\uff24\uff2d\u304b\u3089\u3067\u3082\u3001\u30a4\u30e9\u30b9\u30c8\u306a\u3069\u5404\u7a2e\u304a\u4ed5\u4e8b\u306e\u304a\u8a98\u3044\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\u3002\u203b\u3046\u308b\u3055\u3044\u306e\u3067\u30df\u30e5\u30fc\u30c8\u63a8\u85a6","protected":false,"verified":false,"followers_count":1200,"friends_count":1026,"listed_count":39,"favourites_count":11890,"statuses_count":39899,"created_at":"Sat May 26 03:47:55 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B8B8B8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180021441\/4Mx3TJTR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180021441\/4Mx3TJTR.jpeg","profile_background_tile":true,"profile_link_color":"C21818","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659702502107955202\/kbB-6S04_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659702502107955202\/kbB-6S04_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/590647227\/1440324870","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240069120,"id_str":"663728127240069120","text":"\u0e08\u0e30\u0e23\u0e35\u0e41\u0e15\u0e48\u0e02\u0e2d\u0e07\u0e01\u0e34\u0e19\u0e41\u0e25\u0e30\u0e08\u0e30\u0e15\u0e32\u0e21\u0e40\u0e01\u0e47\u0e1a\u0e17\u0e38\u0e01\u0e23\u0e49\u0e32\u0e19\u0e40\u0e25\u0e22\u0e04\u0e2d\u0e22\u0e14\u0e395555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":345112733,"id_str":"345112733","name":"\u0e21\u0e34\u0e21\u0e34","screen_name":"Mamanowww","location":"Nonthaburi,Thailand","url":"http:\/\/facebook.com\/Miizinc","description":"\u0e22\u0e34\u0e48\u0e07\u0e2d\u0e2d\u0e01\u0e44\u0e1b\u0e44\u0e01\u0e25.. \u0e22\u0e34\u0e48\u0e07\u0e23\u0e39\u0e49\u0e27\u0e48\u0e32\u0e2d\u0e30\u0e44\u0e23\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e41\u0e04\u0e23\u0e4c","protected":false,"verified":false,"followers_count":79,"friends_count":108,"listed_count":0,"favourites_count":291,"statuses_count":17801,"created_at":"Sat Jul 30 02:37:20 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704857299\/920ebf10ad9a9018cc8c3f47802cde53.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704857299\/920ebf10ad9a9018cc8c3f47802cde53.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663355134156496898\/nWauur7Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663355134156496898\/nWauur7Z_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127252803584,"id_str":"663728127252803584","text":"RT @anal_invaders: http:\/\/t.co\/PJW6DEBjQu Sexy Blonde Gets Peter North's Cock In Her Ass & Big Facial http:\/\/t.co\/ImNLs17jQC","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":478510680,"id_str":"478510680","name":"Just_Me","screen_name":"Winderdrywer007","location":"\u00dcT: -24.99559,27.18886","url":null,"description":"18+ Follow back I don't give a FUCK !!! Love to retweet naked woman \/ Porn ! I am a #pornfreak #South Africa","protected":false,"verified":false,"followers_count":910,"friends_count":1347,"listed_count":2,"favourites_count":42,"statuses_count":5058,"created_at":"Mon Jan 30 11:00:13 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596686594612076544\/u-13ksnk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596686594612076544\/u-13ksnk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/478510680\/1368680016","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Mar 14 17:45:06 +0000 2014","id":444529666670727168,"id_str":"444529666670727168","text":"http:\/\/t.co\/PJW6DEBjQu Sexy Blonde Gets Peter North's Cock In Her Ass & Big Facial http:\/\/t.co\/ImNLs17jQC","source":"\u003ca href=\"http:\/\/buttbust.com\/_stuffo\/test\/_twando\/\" rel=\"nofollow\"\u003eTwando Post Management\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1702262233,"id_str":"1702262233","name":"Anal Invaders","screen_name":"anal_invaders","location":null,"url":"http:\/\/anal-invaders.com","description":"SEXUALLY EXPLICIT CONTENT - NOT SAFE FOR WORK - Anal oriented porn: creampies, fisting, gaping, double anal, enemas and more","protected":false,"verified":false,"followers_count":3909,"friends_count":8,"listed_count":45,"favourites_count":0,"statuses_count":14849,"created_at":"Mon Aug 26 15:36:24 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"D53AF0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000364639322\/13c21e33578a2ab3de254f9c5e6c5956_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000364639322\/13c21e33578a2ab3de254f9c5e6c5956_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/PJW6DEBjQu","expanded_url":"http:\/\/www.famehosted.com\/2\/119\/flash\/438\/2227\/120\/96_7fe02_01.html?pr=8&su=1&ad=137120&pg=2","display_url":"famehosted.com\/2\/119\/flash\/43\u2026","indices":[0,22]}],"user_mentions":[],"symbols":[],"media":[{"id":444529665471152128,"id_str":"444529665471152128","indices":[87,109],"media_url":"http:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","url":"http:\/\/t.co\/ImNLs17jQC","display_url":"pic.twitter.com\/ImNLs17jQC","expanded_url":"http:\/\/twitter.com\/anal_invaders\/status\/444529666670727168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":528,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":444529665471152128,"id_str":"444529665471152128","indices":[87,109],"media_url":"http:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","url":"http:\/\/t.co\/ImNLs17jQC","display_url":"pic.twitter.com\/ImNLs17jQC","expanded_url":"http:\/\/twitter.com\/anal_invaders\/status\/444529666670727168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":528,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/PJW6DEBjQu","expanded_url":"http:\/\/www.famehosted.com\/2\/119\/flash\/438\/2227\/120\/96_7fe02_01.html?pr=8&su=1&ad=137120&pg=2","display_url":"famehosted.com\/2\/119\/flash\/43\u2026","indices":[19,41]}],"user_mentions":[{"screen_name":"anal_invaders","name":"Anal Invaders","id":1702262233,"id_str":"1702262233","indices":[3,17]}],"symbols":[],"media":[{"id":444529665471152128,"id_str":"444529665471152128","indices":[106,128],"media_url":"http:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","url":"http:\/\/t.co\/ImNLs17jQC","display_url":"pic.twitter.com\/ImNLs17jQC","expanded_url":"http:\/\/twitter.com\/anal_invaders\/status\/444529666670727168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":528,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}},"source_status_id":444529666670727168,"source_status_id_str":"444529666670727168","source_user_id":1702262233,"source_user_id_str":"1702262233"}]},"extended_entities":{"media":[{"id":444529665471152128,"id_str":"444529665471152128","indices":[106,128],"media_url":"http:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BitJYCKIAAAzU-R.jpg","url":"http:\/\/t.co\/ImNLs17jQC","display_url":"pic.twitter.com\/ImNLs17jQC","expanded_url":"http:\/\/twitter.com\/anal_invaders\/status\/444529666670727168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":528,"resize":"fit"},"medium":{"w":600,"h":439,"resize":"fit"}},"source_status_id":444529666670727168,"source_status_id_str":"444529666670727168","source_user_id":1702262233,"source_user_id_str":"1702262233"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091666"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127227596800,"id_str":"663728127227596800","text":"RT @AnaLauraPN4: cansada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2236891467,"id_str":"2236891467","name":"napaula","screen_name":"anapaula090","location":"Santa Rita do Sapuca\u00ed","url":null,"description":"17","protected":false,"verified":false,"followers_count":207,"friends_count":183,"listed_count":2,"favourites_count":585,"statuses_count":4962,"created_at":"Sat Dec 21 19:13:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/533354489458073600\/dAWSAgOs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/533354489458073600\/dAWSAgOs.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658727562730958848\/lDtTNHB__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658727562730958848\/lDtTNHB__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2236891467\/1445887861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:37 +0000 2015","id":663726640460120064,"id_str":"663726640460120064","text":"cansada","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2700887898,"id_str":"2700887898","name":"nalaura","screen_name":"AnaLauraPN4","location":"Sta Rita do Sapuca\u00ed","url":null,"description":"respect that, bow down bitches \u25b3","protected":false,"verified":false,"followers_count":291,"friends_count":187,"listed_count":0,"favourites_count":1437,"statuses_count":6556,"created_at":"Sat Aug 02 14:06:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656952779248934913\/a6jYqMu8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656952779248934913\/a6jYqMu8.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663359362921009152\/g-itE2HH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663359362921009152\/g-itE2HH_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AnaLauraPN4","name":"nalaura","id":2700887898,"id_str":"2700887898","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091660"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127215050752,"id_str":"663728127215050752","text":"\u0627\u0644\u0644\u0647\u0645 \u0623\u0639\u0630\u0646\u0627 \u0645\u0646 \u0639\u0630\u0627\u0628 \u0627\u0644\u0642\u0628\u0631 \u0648\u0639\u0630\u0627\u0628 \u062c\u0647\u0646\u0645\n\u267b\ufe0f https:\/\/t.co\/DgONxHew9c","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":585600502,"id_str":"585600502","name":"Madrid-Ryan","screen_name":"ra8gh_ra","location":"Madrid","url":null,"description":"\u064a\u0640\u0640\u0633\u0640\u0640\u0626\u0640\u0644\u0640\u0648\u0646\u0640\u0640\u064a \u0644\u0640\u0645\u0640\u0640\u0622\u0630\u0622 \u0623\u0639\u0640\u0640\u0634\u0640\u0640\u0640\u0642 \u0631\u064a\u0640\u0627\u0644 \u0645\u0640\u062f\u0631\u064a\u0640\u062f \u0623\u063a\u0640\u0640\u0640\u0628\u0640\u0640\u0640\u064a\u0640\u0640\u0627\u0621 \u0648\u0643\u0623\u0646\u0640\u0647\u0640\u0645\u0640 \u064a\u0640\u0633\u0640\u0623\u0644\u0640\u0640\u0648\u0646\u0640\u0640\u064a \u0644\u0645\u0640\u0640\u0622\u0630\u0622 \u0623\u062a\u064e\u0646\u0640\u0641\u0640\u0633 \u2665","protected":false,"verified":false,"followers_count":122,"friends_count":293,"listed_count":0,"favourites_count":58,"statuses_count":10391,"created_at":"Sun May 20 11:37:29 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/857576230\/6f43530996de937f3734a649e328aba2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/857576230\/6f43530996de937f3734a649e328aba2.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661980746769395712\/B2outs5o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661980746769395712\/B2outs5o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/585600502\/1443787637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DgONxHew9c","expanded_url":"http:\/\/zad-muslim.com","display_url":"zad-muslim.com","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240241152,"id_str":"663728127240241152","text":"RT @MaxPreps: UPSET: St. John's shocks No. 11 Gonzaga with last-minute, fourth-down TD\n\nhttps:\/\/t.co\/fU2ZoH861v https:\/\/t.co\/LyEsDHgTXL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627609370,"id_str":"1627609370","name":"Keri Mona","screen_name":"KeriMona","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":24,"listed_count":0,"favourites_count":82,"statuses_count":37,"created_at":"Sun Jul 28 10:40:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502878584307216384\/g9NzCQT3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502878584307216384\/g9NzCQT3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1627609370\/1416165620","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 23:51:23 +0000 2015","id":663141728921088000,"id_str":"663141728921088000","text":"UPSET: St. John's shocks No. 11 Gonzaga with last-minute, fourth-down TD\n\nhttps:\/\/t.co\/fU2ZoH861v https:\/\/t.co\/LyEsDHgTXL","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18965761,"id_str":"18965761","name":"MaxPreps","screen_name":"MaxPreps","location":"Cameron Park, CA","url":"http:\/\/www.maxpreps.com","description":"We cover high school sports...Big props to all the coaches out there. Need some help? Hit up @maxprepshelp\nDownload our app\nhttps:\/\/t.co\/jgt78jW21H","protected":false,"verified":true,"followers_count":115598,"friends_count":191,"listed_count":707,"favourites_count":326,"statuses_count":13502,"created_at":"Wed Jan 14 03:41:38 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"002244","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/28701464\/maxpreps_twitter_bg.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/28701464\/maxpreps_twitter_bg.png","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"990000","profile_sidebar_fill_color":"F2F2F2","profile_text_color":"232323","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649638086796705792\/hJjCIgPW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649638086796705792\/hJjCIgPW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18965761\/1402596513","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":52,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fU2ZoH861v","expanded_url":"http:\/\/t.maxpreps.com\/1SAjTYu","display_url":"t.maxpreps.com\/1SAjTYu","indices":[74,97]}],"user_mentions":[],"symbols":[],"media":[{"id":663141519570960384,"id_str":"663141519570960384","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","url":"https:\/\/t.co\/LyEsDHgTXL","display_url":"pic.twitter.com\/LyEsDHgTXL","expanded_url":"http:\/\/twitter.com\/MaxPreps\/status\/663141728921088000\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663141519570960384,"id_str":"663141519570960384","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","url":"https:\/\/t.co\/LyEsDHgTXL","display_url":"pic.twitter.com\/LyEsDHgTXL","expanded_url":"http:\/\/twitter.com\/MaxPreps\/status\/663141728921088000\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fU2ZoH861v","expanded_url":"http:\/\/t.maxpreps.com\/1SAjTYu","display_url":"t.maxpreps.com\/1SAjTYu","indices":[88,111]}],"user_mentions":[{"screen_name":"MaxPreps","name":"MaxPreps","id":18965761,"id_str":"18965761","indices":[3,12]}],"symbols":[],"media":[{"id":663141519570960384,"id_str":"663141519570960384","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","url":"https:\/\/t.co\/LyEsDHgTXL","display_url":"pic.twitter.com\/LyEsDHgTXL","expanded_url":"http:\/\/twitter.com\/MaxPreps\/status\/663141728921088000\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663141728921088000,"source_status_id_str":"663141728921088000","source_user_id":18965761,"source_user_id_str":"18965761"}]},"extended_entities":{"media":[{"id":663141519570960384,"id_str":"663141519570960384","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPzstXXAAAJzbA.jpg","url":"https:\/\/t.co\/LyEsDHgTXL","display_url":"pic.twitter.com\/LyEsDHgTXL","expanded_url":"http:\/\/twitter.com\/MaxPreps\/status\/663141728921088000\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663141728921088000,"source_status_id_str":"663141728921088000","source_user_id":18965761,"source_user_id_str":"18965761"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127227666432,"id_str":"663728127227666432","text":"@YouTube @tebancomery @lauacost ahi vi que romi le sacaba el cuero a mery y sobre todo no se pierdan a los cachorros \ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":10228272,"in_reply_to_user_id_str":"10228272","in_reply_to_screen_name":"YouTube","user":{"id":3773036901,"id_str":"3773036901","name":"Patricia Beatriz","screen_name":"riospato74","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":89,"friends_count":220,"listed_count":0,"favourites_count":6809,"statuses_count":4018,"created_at":"Fri Sep 25 17:08:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648909346068406276\/eUVcdv0C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648909346068406276\/eUVcdv0C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3773036901\/1443523306","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[0,8]},{"screen_name":"tebancomery","name":"MARIAN \u2661","id":3371981277,"id_str":"3371981277","indices":[9,21]},{"screen_name":"lauacost","name":"laura acosta (ALT+3)","id":227289610,"id_str":"227289610","indices":[22,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091660"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127227510784,"id_str":"663728127227510784","text":"RT @MatiDomnguez1: But Spotify changed the lyrics from chance to chonce \nlmao Spotify is 1D af NiallOfficial \n#4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3455533334,"id_str":"3455533334","name":"Michelle S","screen_name":"MeShell24601","location":null,"url":null,"description":"Family and friends, this is the account created to save your Twitter feeds from the 1D fandom. You're welcome. Now, turn and go... :)","protected":false,"verified":false,"followers_count":77,"friends_count":120,"listed_count":0,"favourites_count":119,"statuses_count":2500,"created_at":"Sat Sep 05 04:34:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663108619576086529\/qDf7-DvG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663108619576086529\/qDf7-DvG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:03 +0000 2015","id":663726247680286720,"id_str":"663726247680286720","text":"But Spotify changed the lyrics from chance to chonce \nlmao Spotify is 1D af NiallOfficial \n#4DaysUntilMITAM","source":"\u003ca href=\"http:\/\/www.weathvinetirderfanesix.com\" rel=\"nofollow\"\u003eWeath Vine Tirder Fanesix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322524330,"id_str":"3322524330","name":"Mati Dom\u00ednguez","screen_name":"MatiDomnguez1","location":"Bs. As.","url":null,"description":"Formerly Striker for Atletico Nacional,River Plate, Aston Villa, NY Red Bull, LA Galaxy and Chivas USA! instagram JUANPABLOANGEL9","protected":false,"verified":false,"followers_count":444,"friends_count":374,"listed_count":3,"favourites_count":167,"statuses_count":892,"created_at":"Fri Aug 21 17:00:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"247743","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639864790882611200\/8MyibF-I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639864790882611200\/8MyibF-I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322524330\/1441390630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[91,107]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[110,126]}],"urls":[],"user_mentions":[{"screen_name":"MatiDomnguez1","name":"Mati Dom\u00ednguez","id":3322524330,"id_str":"3322524330","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091660"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127235985408,"id_str":"663728127235985408","text":"Catorce #FansAwards2015 #ArtistaDelA\u00f1o Lali Esposito","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1040942155,"id_str":"1040942155","name":"Flor","screen_name":"florxespos","location":"Buenos Aires","url":null,"description":"\u00abDigo lo que siento,siento lo que digo\u00bb","protected":false,"verified":false,"followers_count":320,"friends_count":165,"listed_count":1,"favourites_count":2574,"statuses_count":7517,"created_at":"Fri Dec 28 00:20:30 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DAEBE4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475079569326632960\/5-zeyVTd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475079569326632960\/5-zeyVTd.jpeg","profile_background_tile":true,"profile_link_color":"33CCB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658828317584433153\/9lhKSqAQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658828317584433153\/9lhKSqAQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1040942155\/1445794908","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[8,23]},{"text":"ArtistaDelA\u00f1o","indices":[24,38]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080091662"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240093696,"id_str":"663728127240093696","text":"@poku_pocky \u9811\u5f35\u308b\u3057\u304b\u306a\u3044\u306e\u3088\u306d \u5408\u683c\u306e\u305f\u3081\u306b\u52c9\u5f37\u3068\u3044\u3046\u3088\u308a\u9003\u3052\u308b\u305f\u3081\u306e\u52c9\u5f37\u306b\u306a\u3063\u3066\u304d\u3066\u308b\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726924141735936,"in_reply_to_status_id_str":"663726924141735936","in_reply_to_user_id":3715261033,"in_reply_to_user_id_str":"3715261033","in_reply_to_screen_name":"poku_pocky","user":{"id":3761475854,"id_str":"3761475854","name":"\u305b\u308a","screen_name":"lllmoon_night","location":"\u587e\u306e\u9685\u3063\u3053","url":null,"description":"\u30e9\u30b9\u30c8\u30b8\u30a7\u30fc\u30b1\u30fc\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\uff08 ; ; \uff09","protected":false,"verified":false,"followers_count":19,"friends_count":46,"listed_count":0,"favourites_count":256,"statuses_count":198,"created_at":"Fri Oct 02 18:04:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651793525877555200\/eRLpufw2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651793525877555200\/eRLpufw2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3761475854\/1446877729","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"poku_pocky","name":"\u00bf\u00bf\u00bf","id":3715261033,"id_str":"3715261033","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127223296000,"id_str":"663728127223296000","text":"\u90fd\u5185\u306b\u5f15\u3063\u8d8a\u3057\u305f\u3089lov\u518d\u958b\u3057\u305f\u3044\n\u5b9a\u671f\u6301\u3066\u308b\u304b\u3089\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2245533648,"id_str":"2245533648","name":"\u308c\u30fc\u3081","screen_name":"reimei_lov3","location":null,"url":null,"description":"LOV3\u30a8\u30a2\u30d7\u52e2 \u4e0d\u6b7b\u30e1\u30a4\u30f3\u4eba\u7363\u795e\u65cf\u4e8c\u306e\u6b21 LOV3\u3001SDVX\u91d1\u67a0\u6216\u5e1d\u6ec5\u6597\u3001jubeat\u5c11\u3057\u3001\u5f10\u5bfaSP6\u6bb5\u3001\u904a\u622f\u738b\u3001\u30a6\u30a3\u30af\u30ed\u30b9\u3001\u6771\u65b9\u3001FE \u3068\u304b\u3084\u3063\u3066\u308b\u3088\uff01 \u30b9\u30ca\u30a4\u30d1\u30fc","protected":false,"verified":false,"followers_count":130,"friends_count":147,"listed_count":0,"favourites_count":2373,"statuses_count":13519,"created_at":"Sat Dec 14 12:39:19 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640842144777814016\/xpP_yDAp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640842144777814016\/xpP_yDAp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2245533648\/1441567907","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091659"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248461825,"id_str":"663728127248461825","text":"RT @JODYHiGHROLLER: i DONT REMEMBER EVER BEiNG MEAN TO U EXCEPT FOR THOSE 1 OR 2 TiMES","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2899545327,"id_str":"2899545327","name":"allie","screen_name":"spoo_k","location":"tx","url":null,"description":"this is embarrassing","protected":false,"verified":false,"followers_count":150,"friends_count":355,"listed_count":1,"favourites_count":10586,"statuses_count":4353,"created_at":"Sun Nov 30 18:44:57 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663514223893311488\/sAKFdAUP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663514223893311488\/sAKFdAUP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2899545327\/1447023910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:30:48 +0000 2015","id":663272442773680129,"id_str":"663272442773680129","text":"i DONT REMEMBER EVER BEiNG MEAN TO U EXCEPT FOR THOSE 1 OR 2 TiMES","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":29166305,"id_str":"29166305","name":"JODY HiGHROLLER","screen_name":"JODYHiGHROLLER","location":"BOOKiNG: CLewisGroup@Caa.com","url":"http:\/\/JodyHighroller.com","description":"MY MAiN GOAL iS TO BLOW UP AND ACT LiKE i DONT KNOW NOBODY - RiFF RAFF","protected":false,"verified":true,"followers_count":1111880,"friends_count":166880,"listed_count":2031,"favourites_count":26067,"statuses_count":56965,"created_at":"Mon Apr 06 08:23:59 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"16E33F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164955551\/K1-HhhXX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164955551\/K1-HhhXX.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0C0D0D","profile_text_color":"11F747","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660550359820169216\/mxIYEZ-n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660550359820169216\/mxIYEZ-n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29166305\/1447003711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1610,"favorite_count":2182,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JODYHiGHROLLER","name":"JODY HiGHROLLER","id":29166305,"id_str":"29166305","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127231725568,"id_str":"663728127231725568","text":"RT @Hots_s: \uc96c\uc2dc\uc774\uce58\n\uc774\uce58\ub9c8\uce20\uac00 \uc96c\uc2dc\uc5d0\uac8c \uae30\ub300\ub294\uac8c \ubcf4\uace0\uc2f6\uc5b4\uc11c\nhttps:\/\/t.co\/oR9yAhTHF9 https:\/\/t.co\/8CYYyrxmwC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2594847271,"id_str":"2594847271","name":"\uc13c","screen_name":"mjw_1206","location":"\uc778\uc7a5 \uc544\uc639\ub2d8\u3160 \u3160\ud5e4\ub354 \ud638\ud53c\ub2d8\u3163\u3160.\u3160.\u3160.\u3160","url":null,"description":"[\uc13c\/SEN] \uc0c8\ubcbd\ubc18 \uc544 \ud638\ubaa8\ubcf4\uace0\uc2f6\ub2e4\u3137\ub2e4 \/ FUB Free","protected":false,"verified":false,"followers_count":3693,"friends_count":219,"listed_count":36,"favourites_count":4818,"statuses_count":4652,"created_at":"Sun Jun 29 13:51:15 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662016777639989248\/lN224NoV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662016777639989248\/lN224NoV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594847271\/1446757622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 15:08:37 +0000 2015","id":661923007187685376,"id_str":"661923007187685376","text":"\uc96c\uc2dc\uc774\uce58\n\uc774\uce58\ub9c8\uce20\uac00 \uc96c\uc2dc\uc5d0\uac8c \uae30\ub300\ub294\uac8c \ubcf4\uace0\uc2f6\uc5b4\uc11c\nhttps:\/\/t.co\/oR9yAhTHF9 https:\/\/t.co\/8CYYyrxmwC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280592954,"id_str":"3280592954","name":"\uc96c\uc2dc\uc774\uce58\ud30c\uc138\uc624 \uc136\ub290","screen_name":"Hots_s","location":"\uc778\uc7a5 \uc0ac\ub791\ud558\ub294 \uc8fc\uc758\ub2d8","url":"http:\/\/ask.fm\/supnu_u","description":"\uc5ed\uc804\uc7ac\ud310 | \uc625\ub3c4\uc0ac\ubcc0 |\uc694\uc998\uc740 \uc624\uc18c\ub9c8\uce20\uc0c1(\uc96c\uc2dc\uc774\uce58 \uba54\uc778\/\uc774\uce58\ub978) | \ub9ac\ubc84\uc2a4 \ubabb\ubd10\uc694 | FUB FREE | \ub9de\ud314\uc740 \ucc9c\ucc9c\ud788","protected":false,"verified":false,"followers_count":1839,"friends_count":165,"listed_count":4,"favourites_count":1228,"statuses_count":1894,"created_at":"Wed Jul 15 12:05:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"D9D9D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"CC5A8D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662949980164874240\/NDuhlAgH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662949980164874240\/NDuhlAgH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280592954\/1446831729","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1278,"favorite_count":1502,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oR9yAhTHF9","expanded_url":"http:\/\/pds21.egloos.com\/pds\/201511\/05\/72\/b0273172_563a1f467b108.png","display_url":"pds21.egloos.com\/pds\/201511\/05\/\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[],"media":[{"id":661923005883244545,"id_str":"661923005883244545","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","url":"https:\/\/t.co\/8CYYyrxmwC","display_url":"pic.twitter.com\/8CYYyrxmwC","expanded_url":"http:\/\/twitter.com\/Hots_s\/status\/661923007187685376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":579,"h":293,"resize":"fit"},"medium":{"w":579,"h":293,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661923005883244545,"id_str":"661923005883244545","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","url":"https:\/\/t.co\/8CYYyrxmwC","display_url":"pic.twitter.com\/8CYYyrxmwC","expanded_url":"http:\/\/twitter.com\/Hots_s\/status\/661923007187685376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":579,"h":293,"resize":"fit"},"medium":{"w":579,"h":293,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oR9yAhTHF9","expanded_url":"http:\/\/pds21.egloos.com\/pds\/201511\/05\/72\/b0273172_563a1f467b108.png","display_url":"pds21.egloos.com\/pds\/201511\/05\/\u2026","indices":[39,62]}],"user_mentions":[{"screen_name":"Hots_s","name":"\uc96c\uc2dc\uc774\uce58\ud30c\uc138\uc624 \uc136\ub290","id":3280592954,"id_str":"3280592954","indices":[3,10]}],"symbols":[],"media":[{"id":661923005883244545,"id_str":"661923005883244545","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","url":"https:\/\/t.co\/8CYYyrxmwC","display_url":"pic.twitter.com\/8CYYyrxmwC","expanded_url":"http:\/\/twitter.com\/Hots_s\/status\/661923007187685376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":579,"h":293,"resize":"fit"},"medium":{"w":579,"h":293,"resize":"fit"}},"source_status_id":661923007187685376,"source_status_id_str":"661923007187685376","source_user_id":3280592954,"source_user_id_str":"3280592954"}]},"extended_entities":{"media":[{"id":661923005883244545,"id_str":"661923005883244545","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS-fd4JUYAEzCOv.png","url":"https:\/\/t.co\/8CYYyrxmwC","display_url":"pic.twitter.com\/8CYYyrxmwC","expanded_url":"http:\/\/twitter.com\/Hots_s\/status\/661923007187685376\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":172,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":579,"h":293,"resize":"fit"},"medium":{"w":579,"h":293,"resize":"fit"}},"source_status_id":661923007187685376,"source_status_id_str":"661923007187685376","source_user_id":3280592954,"source_user_id_str":"3280592954"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080091661"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240220672,"id_str":"663728127240220672","text":"RT @justnyyy: I'm Ready For This\ud83d\ude29\ud83d\ude0d\ud83d\ude0b https:\/\/t.co\/oXFrAUgIuT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549719633,"id_str":"549719633","name":"RN4L","screen_name":"shard__","location":"#PistolGang #T2G ","url":null,"description":"Savage Ambition .","protected":false,"verified":false,"followers_count":1172,"friends_count":1208,"listed_count":3,"favourites_count":2660,"statuses_count":68627,"created_at":"Tue Apr 10 01:55:26 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/856794671\/3710e4df3dad5344e55983401f60966e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/856794671\/3710e4df3dad5344e55983401f60966e.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662422420293361665\/NsgOougH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662422420293361665\/NsgOougH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/549719633\/1446913541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:20:51 +0000 2015","id":663511531917844480,"id_str":"663511531917844480","text":"I'm Ready For This\ud83d\ude29\ud83d\ude0d\ud83d\ude0b https:\/\/t.co\/oXFrAUgIuT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223545863,"id_str":"223545863","name":".\u03b9\u043c\u03b1\u0455\u0438\u03c3\u0432\u2604","screen_name":"justnyyy","location":null,"url":null,"description":"sc: justnyyy","protected":false,"verified":false,"followers_count":7097,"friends_count":7067,"listed_count":6,"favourites_count":14471,"statuses_count":114438,"created_at":"Mon Dec 06 17:54:53 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522623479527395328\/qHbpX7y1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522623479527395328\/qHbpX7y1.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663118830286278656\/M_fkJloq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663118830286278656\/M_fkJloq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223545863\/1445109664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":659,"favorite_count":410,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":663511515631386624,"id_str":"663511515631386624","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"justnyyy","name":".\u03b9\u043c\u03b1\u0455\u0438\u03c3\u0432\u2604","id":223545863,"id_str":"223545863","indices":[3,12]}],"symbols":[],"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"}]},"extended_entities":{"media":[{"id":663511515425873920,"id_str":"663511515425873920","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENTVXIAAmQoX.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"},{"id":663511515631386624,"id_str":"663511515631386624","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVENUGXAAAvBkx.jpg","url":"https:\/\/t.co\/oXFrAUgIuT","display_url":"pic.twitter.com\/oXFrAUgIuT","expanded_url":"http:\/\/twitter.com\/justnyyy\/status\/663511531917844480\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":684,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663511531917844480,"source_status_id_str":"663511531917844480","source_user_id":223545863,"source_user_id_str":"223545863"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127214882816,"id_str":"663728127214882816","text":"@uba_gami \u6700\u8fd1\u30b9\u30d4\u30ea\u30c3\u30c4\u898b\u304b\u3051\u306a\u3044\u306a\u3042\u3068\u601d\u3063\u305f\u3089\u307e\u3042\u3002\u3044\u307e\u7121\u5370\u30d3\u30c3\u30b0\u30b3\u30df\u30c3\u30af\u3063\u3066\u306a\u3044\u3093\u3067\u3059\u304b\u306d\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663558328321114116,"in_reply_to_status_id_str":"663558328321114116","in_reply_to_user_id":140421423,"in_reply_to_user_id_str":"140421423","in_reply_to_screen_name":"uba_gami","user":{"id":141449670,"id_str":"141449670","name":"\u3075\u305f\u307f\uff20\u3082\u3089\u3068\u308a\u5eb5","screen_name":"futamiryo","location":"\u5175\u5eab\u770c \u795e\u6238\u5e02 \u7058\u533a","url":"http:\/\/www.moratorian.com","description":"\u795e\u6238\u304c\u597d\u304d\u3059\u304e\u308b\u30a2\u30e9\u30d5\u30a3\u30d5\u30d0\u30c4\u30a4\u30c1\u9aed\u306e\u304a\u3063\u3061\u3083\u3093\u3002\u4e3b\u306b\u65e7\u5e02\u96fb\u533a\u9593\u3092\u3076\u3089\u3076\u3089\u3002","protected":false,"verified":false,"followers_count":238,"friends_count":88,"listed_count":10,"favourites_count":8925,"statuses_count":45172,"created_at":"Sat May 08 03:50:55 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/121652609\/wallpaper.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/121652609\/wallpaper.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467542814994100224\/yZwf1HtE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467542814994100224\/yZwf1HtE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141449670\/1398229411","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uba_gami","name":"ubagami","id":140421423,"id_str":"140421423","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248437248,"id_str":"663728127248437248","text":"@Moi_latte \ud558\uace0\ud504 \uc7ac\ubc0c\uc5b4\uc694\u3160\u3160","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727935996588032,"in_reply_to_status_id_str":"663727935996588032","in_reply_to_user_id":1240390567,"in_reply_to_user_id_str":"1240390567","in_reply_to_screen_name":"Moi_latte","user":{"id":129818950,"id_str":"129818950","name":"\ud558\ubc14\ub124\ub85c","screen_name":"haru1day","location":null,"url":"http:\/\/www.pixiv.net\/member.php?id=1241854","description":"\uc8fc\ubd80+\uc7a1\ub355+\uc778\ub180\/\/\uc778\uc6a9\uc54c\ud2f0 \ub2e4\uba54\uc694\/\/\uc2dc\uc2dc\ucf5c\ucf5c \uc9d1\uc548\uc77c\uc598\uae30,\uc560\uc598\uae30,\ub0a8\ud3b8\ud5d8\ub2f4 \ub9ce\uace0 \ub355\uc9c8,\uadf8\ub9bc\uc9c0\ubd84\uc774 \uc801\uc74c\/\/\uce74\ucea1\uc0ac,\uc2ed\uc774\uad6d\uae30,\ud558\uac00\ub80c,\ucda9\uc0ac\uc5d0 \ubf08\ub97c \ubb3b\uace0\uc2f6\ub530..\/\/\uac1c\ub2d8\uacc4\uc815@nerodognero","protected":false,"verified":false,"followers_count":84,"friends_count":376,"listed_count":0,"favourites_count":1747,"statuses_count":335,"created_at":"Mon Apr 05 13:58:21 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656702723232952320\/HsFcLGYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656702723232952320\/HsFcLGYH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129818950\/1443096524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Moi_latte","name":"Moi (\u03c3\uff9f\u2200\uff9f)\u03c3","id":1240390567,"id_str":"1240390567","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127240073216,"id_str":"663728127240073216","text":"last 5 days before 1st semester ends. \ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378527407,"id_str":"378527407","name":"AC. \u2765","screen_name":"fabreanna","location":null,"url":null,"description":"@geraldreyes23","protected":false,"verified":false,"followers_count":743,"friends_count":469,"listed_count":3,"favourites_count":10440,"statuses_count":78004,"created_at":"Fri Sep 23 10:56:27 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522055373285376000\/nlHCd7zF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522055373285376000\/nlHCd7zF.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663310734634278912\/aZieE21g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663310734634278912\/aZieE21g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378527407\/1446882239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091663"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127227510785,"id_str":"663728127227510785","text":"Give this free mock today #cracku @crackuexam https:\/\/t.co\/bMvlLKVo2S","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180122553,"id_str":"4180122553","name":"anupam","screen_name":"anupam158931","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 14:26:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cracku","indices":[26,33]}],"urls":[{"url":"https:\/\/t.co\/bMvlLKVo2S","expanded_url":"https:\/\/cracku.in\/\/cat\/mockcat\/2015\/dashcat16","display_url":"cracku.in\/\/cat\/mockcat\/2\u2026","indices":[46,69]}],"user_mentions":[{"screen_name":"CrackuExam","name":"Cracku","id":2563037186,"id_str":"2563037186","indices":[34,45]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091660"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127214923776,"id_str":"663728127214923776","text":"RT @NBATV: .@KDTrey5 dropped 32 pts & grabbed 11 rebs in a win for the @okcthunder https:\/\/t.co\/l8Rh80IXli","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954782688,"id_str":"954782688","name":"YoBoy ET","screen_name":"ET30TX","location":null,"url":"http:\/\/tinyurl.com\/nc5fckz","description":"On the come up!!! Stay Grinding & Sub to my YT. BANG BANG","protected":false,"verified":false,"followers_count":152,"friends_count":172,"listed_count":0,"favourites_count":1793,"statuses_count":1318,"created_at":"Sun Nov 18 03:52:22 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654829991725629440\/yEYl2Y86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654829991725629440\/yEYl2Y86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954782688\/1443832068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:44:27 +0000 2015","id":663547671634976768,"id_str":"663547671634976768","text":".@KDTrey5 dropped 32 pts & grabbed 11 rebs in a win for the @okcthunder https:\/\/t.co\/l8Rh80IXli","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25319414,"id_str":"25319414","name":"NBA TV","screen_name":"NBATV","location":"USA","url":"http:\/\/www.nba.com\/nbatv\/","description":"All NBA, all the time.","protected":false,"verified":true,"followers_count":1723893,"friends_count":686,"listed_count":6178,"favourites_count":1642,"statuses_count":30963,"created_at":"Thu Mar 19 15:35:26 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638357433606246400\/a6NN_FpA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638357433606246400\/a6NN_FpA.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662841458228076544\/2LLipXCN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662841458228076544\/2LLipXCN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25319414\/1444404201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":214,"favorite_count":316,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KDTrey5","name":"Kevin Durant","id":35936474,"id_str":"35936474","indices":[1,9]},{"screen_name":"okcthunder","name":"OKC THUNDER","id":24925573,"id_str":"24925573","indices":[64,75]}],"symbols":[],"media":[{"id":663547671140016130,"id_str":"663547671140016130","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","url":"https:\/\/t.co\/l8Rh80IXli","display_url":"pic.twitter.com\/l8Rh80IXli","expanded_url":"http:\/\/twitter.com\/NBATV\/status\/663547671634976768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663547671140016130,"id_str":"663547671140016130","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","url":"https:\/\/t.co\/l8Rh80IXli","display_url":"pic.twitter.com\/l8Rh80IXli","expanded_url":"http:\/\/twitter.com\/NBATV\/status\/663547671634976768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NBATV","name":"NBA TV","id":25319414,"id_str":"25319414","indices":[3,9]},{"screen_name":"KDTrey5","name":"Kevin Durant","id":35936474,"id_str":"35936474","indices":[12,20]},{"screen_name":"okcthunder","name":"OKC THUNDER","id":24925573,"id_str":"24925573","indices":[75,86]}],"symbols":[],"media":[{"id":663547671140016130,"id_str":"663547671140016130","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","url":"https:\/\/t.co\/l8Rh80IXli","display_url":"pic.twitter.com\/l8Rh80IXli","expanded_url":"http:\/\/twitter.com\/NBATV\/status\/663547671634976768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663547671634976768,"source_status_id_str":"663547671634976768","source_user_id":25319414,"source_user_id_str":"25319414"}]},"extended_entities":{"media":[{"id":663547671140016130,"id_str":"663547671140016130","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVlF13WoAIAOXS.jpg","url":"https:\/\/t.co\/l8Rh80IXli","display_url":"pic.twitter.com\/l8Rh80IXli","expanded_url":"http:\/\/twitter.com\/NBATV\/status\/663547671634976768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663547671634976768,"source_status_id_str":"663547671634976768","source_user_id":25319414,"source_user_id_str":"25319414"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127223304192,"id_str":"663728127223304192","text":"@ohsehunhae dahel anuba czhyyyyy kasi wala ganda ko HAHAHA mana sayo joke","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727831801683968,"in_reply_to_status_id_str":"663727831801683968","in_reply_to_user_id":2422909032,"in_reply_to_user_id_str":"2422909032","in_reply_to_screen_name":"ohsehunhae","user":{"id":2514384932,"id_str":"2514384932","name":"mhar ; palimos","screen_name":"faeritales","location":"\uc5d1\uc18c\ubca8\ubcb3 \u2728 was @dokyungsthetics","url":null,"description":"\u300eKyungsoo's wifey\u300f\u300a\ub808\ub4dc\ubca8\ubcb3\u300b \u266a\uc5d1\uc18c\u266a \u275dMy entire life revolved around loving people who will never love me back.\u275e #SquishySquad #PepeSquad \u2022","protected":false,"verified":false,"followers_count":747,"friends_count":423,"listed_count":6,"favourites_count":1306,"statuses_count":21504,"created_at":"Thu May 22 03:50:03 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647055718651068416\/A9BtAaM3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647055718651068416\/A9BtAaM3.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685105030852608\/lWda-OKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685105030852608\/lWda-OKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2514384932\/1445226888","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ohsehunhae","name":"camp out 1week","id":2422909032,"id_str":"2422909032","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080091659"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127244275712,"id_str":"663728127244275712","text":"\u3042\u30fc\u30fc\u30fc\u30e2\u30d5\u30e2\u30d5\u3092\u990a\u3044\u305f\u3044","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242597028,"id_str":"242597028","name":"\u3086\u3053\u3045","screen_name":"poyon55","location":null,"url":null,"description":"\u75b2\u308c\u304c\u6fc0\u3057\u3044","protected":false,"verified":false,"followers_count":448,"friends_count":446,"listed_count":17,"favourites_count":1493,"statuses_count":107950,"created_at":"Tue Jan 25 04:15:00 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574943382100795393\/q2CnSsgX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574943382100795393\/q2CnSsgX_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091664"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127219142662,"id_str":"663728127219142662","text":"Herrera se\u00f1ala a Rajoy como la mejor apuesta en las elecciones del 20 de diciembre: El presidente de l... https:\/\/t.co\/nHFptI4ghQ Recluta","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2321504575,"id_str":"2321504575","name":"Holaa","screen_name":"GeyForever_3","location":null,"url":null,"description":"A ti Te Falta Mucho Pa' Ser Como Iiiio........","protected":false,"verified":false,"followers_count":3280,"friends_count":647,"listed_count":31,"favourites_count":13,"statuses_count":199129,"created_at":"Fri Jan 31 23:46:37 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"080808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/488379352891916288\/F-s2vx1z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/488379352891916288\/F-s2vx1z.jpeg","profile_background_tile":true,"profile_link_color":"170FFA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nHFptI4ghQ","expanded_url":"http:\/\/bit.ly\/1HCwzrt","display_url":"bit.ly\/1HCwzrt","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091658"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127231721472,"id_str":"663728127231721472","text":"@skanskdl01\uc548\ucca0\uc218\uc5d0\uac8c \ub7ec\ube0c\ucf5c\ud558\ub2e4 \ud33d \/\uc774\uc81c \uc815\uc6b4\ucc2c\uc5d0\uac8c \ub7ec\ube0c\ucf5c \ud33d \/\uc774\uac8c \ub9d0\uc774\uc5ec \ub9c9\uac78\ub9ac\uc5ec \u314b \ucc9c\uc815\ubc30 \uc774\ub300\ub85c \uac00\uba74 \uacf5\uba78\ud55c\ub2f9\n\uc2e0\ub2f9 \uc0c8\ub85c\uc6b4 \uc778\ubb3c\ub4e4\uacfc \uac00\uce58\ub178\uc120 \ucc3f\uc544\uc57c \uc9c4\uc815\uc131\uc904\uac83 . .","source":"\u003ca href=\"http:\/\/twtkr.com\" rel=\"nofollow\"\u003etwtkr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726213525934081,"in_reply_to_status_id_str":"663726213525934081","in_reply_to_user_id":284923466,"in_reply_to_user_id_str":"284923466","in_reply_to_screen_name":"skanskdl01","user":{"id":249908069,"id_str":"249908069","name":"okunification","screen_name":"okunification","location":"south korea ","url":null,"description":"I want unification .\r\n\uc6b0\ub9ac\uc758 \uc18c\uc6d0\uc740 \ud1b5\uc77c \uc2dc\ub300\uc5d0 \uc548\uc8fc\ud574 \uae30\ud68c\ub97c \ub193\uce58\uc9c0\ub9d0\uc790 \r\n \ubd84\ub2e8 \ubc18\uc138\uae30 \ub118\ub294 \uc0ac\uc0c1 \uacfc \uc774\ub150\uc758 \ub178\uc608\uc5d0\uc11c \ubc97\uc5b4\ub098 \uc774\uc81c\r\n \ud55c\ubbfc\uc871\uc758 \ub3d9\uc9c8\uc131\uc744 \ud558\ub098\ub85c \ud1b5\ud569 \ud55c\ubc18\ub3c4 \uc601\uad6c\uc801\uc778 \ud3c9\ud654\/\ubc88\uc601 \uc704\ub300\ud55c\r\n \ud55c\ubbfc\uc871\uc758 \ubbf8\ub798\ub97c \uc6b0\ub9ac\ub294 \ub9d0\ud574\uc57c \ud569\ub2c8\ub2e4!!","protected":false,"verified":false,"followers_count":162650,"friends_count":180854,"listed_count":941,"favourites_count":52898,"statuses_count":134356,"created_at":"Thu Feb 10 01:12:10 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1239821725\/anrndghk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1239821725\/anrndghk_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"skanskdl01","name":"\uace0\uc5fd","id":284923466,"id_str":"284923466","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080091661"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127252692992,"id_str":"663728127252692992","text":"@Charopy2 \n\u3042\u308a\u304c\u3068\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720704966131714,"in_reply_to_status_id_str":"663720704966131714","in_reply_to_user_id":2823514957,"in_reply_to_user_id_str":"2823514957","in_reply_to_screen_name":"Charopy2","user":{"id":2931069865,"id_str":"2931069865","name":"\u795e \u96bc\u4eba","screen_name":"J_HAYATO09","location":null,"url":null,"description":"\u57fc\u7389 \u8d8a\u8c37 \u5317\u967d\u2192\u5e78\u624b\u685c \u30de\u30a4\u30da\u30fc\u30b9\uff01 \u2192\u96e3\u6ce2\u2190","protected":false,"verified":false,"followers_count":131,"friends_count":143,"listed_count":0,"favourites_count":1690,"statuses_count":1950,"created_at":"Mon Dec 15 12:09:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659860110047481856\/HxkS5uVu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659860110047481856\/HxkS5uVu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2931069865\/1446713401","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Charopy2","name":"\u307f\u301c\u3053.\u3002","id":2823514957,"id_str":"2823514957","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091666"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248457728,"id_str":"663728127248457728","text":"Emotionally unstable","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":364858919,"id_str":"364858919","name":"Jet'aime","screen_name":"EleenaLeen","location":"Johore, Malaysia","url":null,"description":"and the holidays begin","protected":false,"verified":false,"followers_count":490,"friends_count":783,"listed_count":0,"favourites_count":2895,"statuses_count":10425,"created_at":"Tue Aug 30 13:27:34 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662143474448228352\/Zogb3BHf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662143474448228352\/Zogb3BHf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364858919\/1428060920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127244300288,"id_str":"663728127244300288","text":"WHY THE FRICK U FRYIN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3225164389,"id_str":"3225164389","name":"floral skeleboy","screen_name":"tylorjesuph","location":"RPMV\/GAY\/SUB","url":"https:\/\/twitter.com\/tylorjesuph\/status\/652042880307998720","description":"I'm Tyler and I want a dime-piece husband in the future. No I will not stop talking about it. (Read pinned tweet. Link also in bio.)","protected":false,"verified":false,"followers_count":117,"friends_count":247,"listed_count":0,"favourites_count":46,"statuses_count":1255,"created_at":"Sun May 24 11:19:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652020125705498624\/x9b9LQan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652020125705498624\/x9b9LQan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3225164389\/1444288614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091664"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127236001792,"id_str":"663728127236001792","text":"RT @diigau: \u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647 \n\n@alharthyradda https:\/\/t.co\/vL6a5B\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3118779846,"id_str":"3118779846","name":"56","screen_name":"677R_","location":null,"url":null,"description":"@Alhilal_FC.","protected":false,"verified":false,"followers_count":401,"friends_count":430,"listed_count":1,"favourites_count":1963,"statuses_count":23875,"created_at":"Tue Mar 31 00:09:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661599717483290624\/CbFnxT5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661599717483290624\/CbFnxT5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3118779846\/1446404196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:17:21 +0000 2015","id":663691847726944256,"id_str":"663691847726944256","text":"\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647\u0647 \n\n@alharthyradda https:\/\/t.co\/vL6a5BDTI7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446364425,"id_str":"446364425","name":"\u062f\u064a\u0642\u0627\u0648","screen_name":"diigau","location":"santiago bernabeu.","url":"https:\/\/twitter.com\/diigau\/favorites","description":"\u062f\u064a\u0642\u0627\u0648 \u062f\u0627\u062e\u0644 \u0627\u0644\u0645\u0644\u0639\u0628 \u0648\u0627\u0646\u0627 \u062e\u0627\u0631\u062c\u0647 \u0643\u0650\u0644\u0627\u0646\u0627 \u064a\u0639\u0634\u0642 \u0627\u0644\u062f\u0650\u0641\u0627\u0639 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644 \u061b \u0647\u0646\u0627 \u0648\u064f\u062c\u0650\u062f\u0646\u0627 \u0644\u0631\u062f\u0639 \u0645\u0646 \u064a\u062d\u0627\u0648\u0644 \u0627\u0644\u0645\u0650\u0633\u0627\u0633 \u0628\u0647\u0644\u0627\u0644\u0646\u0627 | \u0645\u0635\u0645\u0645 \u064a\u0633\u0643\u0646 \u0641\u064a \u0627\u0644\u0641\u0648\u062a\u0648\u0634\u0648\u0628.","protected":false,"verified":false,"followers_count":24447,"friends_count":228,"listed_count":31,"favourites_count":804,"statuses_count":25185,"created_at":"Sun Dec 25 16:44:09 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561338577758339072\/Bjivo6eu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561338577758339072\/Bjivo6eu.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634830774739472384\/qdXlR9c9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634830774739472384\/qdXlR9c9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446364425\/1446641447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":422,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alharthyradda","name":"\u0627\u0644\u0625\u0639\u0644\u0627\u0645\u064a \u0631\u062f\u0629 \u0627\u0644\u062d\u0627\u0631\u062b\u064a","id":361911357,"id_str":"361911357","indices":[93,107]}],"symbols":[],"media":[{"id":663691588128915460,"id_str":"663691588128915460","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":670,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":837,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663691588128915460,"id_str":"663691588128915460","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":670,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":837,"resize":"fit"}}},{"id":663691589265563648,"id_str":"663691589265563648","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn--qWoAAjNh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn--qWoAAjNh4.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":749,"h":749,"resize":"fit"}}},{"id":663691600342753280,"id_str":"663691600342753280","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_n7XIAADpH7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_n7XIAADpH7.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":676,"resize":"fit"},"large":{"w":749,"h":845,"resize":"fit"}}},{"id":663691601479340032,"id_str":"663691601479340032","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_sKWEAAyUx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_sKWEAAyUx5.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":1000,"h":831,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"diigau","name":"\u062f\u064a\u0642\u0627\u0648","id":446364425,"id_str":"446364425","indices":[3,10]},{"screen_name":"alharthyradda","name":"\u0627\u0644\u0625\u0639\u0644\u0627\u0645\u064a \u0631\u062f\u0629 \u0627\u0644\u062d\u0627\u0631\u062b\u064a","id":361911357,"id_str":"361911357","indices":[105,119]}],"symbols":[],"media":[{"id":663691588128915460,"id_str":"663691588128915460","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":670,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":837,"resize":"fit"}},"source_status_id":663691847726944256,"source_status_id_str":"663691847726944256","source_user_id":446364425,"source_user_id_str":"446364425"}]},"extended_entities":{"media":[{"id":663691588128915460,"id_str":"663691588128915460","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn-6bWwAQ0wQZ.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":670,"resize":"fit"},"small":{"w":340,"h":379,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":837,"resize":"fit"}},"source_status_id":663691847726944256,"source_status_id_str":"663691847726944256","source_user_id":446364425,"source_user_id_str":"446364425"},{"id":663691589265563648,"id_str":"663691589265563648","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn--qWoAAjNh4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn--qWoAAjNh4.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":749,"h":749,"resize":"fit"}},"source_status_id":663691847726944256,"source_status_id_str":"663691847726944256","source_user_id":446364425,"source_user_id_str":"446364425"},{"id":663691600342753280,"id_str":"663691600342753280","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_n7XIAADpH7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_n7XIAADpH7.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":676,"resize":"fit"},"large":{"w":749,"h":845,"resize":"fit"}},"source_status_id":663691847726944256,"source_status_id_str":"663691847726944256","source_user_id":446364425,"source_user_id_str":"446364425"},{"id":663691601479340032,"id_str":"663691601479340032","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXn_sKWEAAyUx5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXn_sKWEAAyUx5.jpg","url":"https:\/\/t.co\/vL6a5BDTI7","display_url":"pic.twitter.com\/vL6a5BDTI7","expanded_url":"http:\/\/twitter.com\/diigau\/status\/663691847726944256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":282,"resize":"fit"},"large":{"w":1000,"h":831,"resize":"fit"},"medium":{"w":600,"h":498,"resize":"fit"}},"source_status_id":663691847726944256,"source_status_id_str":"663691847726944256","source_user_id":446364425,"source_user_id_str":"446364425"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080091662"} +{"delete":{"status":{"id":663725908453273600,"id_str":"663725908453273600","user_id":742807076,"user_id_str":"742807076"},"timestamp_ms":"1447080091790"}} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248470016,"id_str":"663728127248470016","text":"RT @Psolemn: \u0e43\u0e04\u0e23\u0e04\u0e2d\u0e22\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e21\u0e36\u0e07 \u0e43\u0e19\u0e02\u0e13\u0e30\u0e17\u0e35\u0e48\u0e21\u0e36\u0e07\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32 \u0e19\u0e31\u0e48\u0e19\u0e41\u0e2b\u0e25\u0e30\u0e21\u0e36\u0e07 '\u0e2a\u0e33\u0e04\u0e31\u0e0d'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":475867574,"id_str":"475867574","name":"g.","screen_name":"goipitchapa","location":null,"url":null,"description":"||||||||||||||","protected":false,"verified":false,"followers_count":459,"friends_count":288,"listed_count":1,"favourites_count":4366,"statuses_count":102019,"created_at":"Fri Jan 27 14:37:26 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F0A6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434531572532781056\/8TZW_ons.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434531572532781056\/8TZW_ons.jpeg","profile_background_tile":true,"profile_link_color":"909FD6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663701432915263489\/-9O37S5w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663701432915263489\/-9O37S5w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475867574\/1447073830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727741062090753,"id_str":"663727741062090753","text":"\u0e43\u0e04\u0e23\u0e04\u0e2d\u0e22\u0e0a\u0e48\u0e27\u0e22\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e21\u0e36\u0e07 \u0e43\u0e19\u0e02\u0e13\u0e30\u0e17\u0e35\u0e48\u0e21\u0e36\u0e07\u0e21\u0e35\u0e1b\u0e31\u0e0d\u0e2b\u0e32 \u0e19\u0e31\u0e48\u0e19\u0e41\u0e2b\u0e25\u0e30\u0e21\u0e36\u0e07 '\u0e2a\u0e33\u0e04\u0e31\u0e0d'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198714960,"id_str":"198714960","name":"MiddleFinger","screen_name":"Psolemn","location":"Bangkok, Thailand","url":"http:\/\/www.facebook.com\/mutualP","description":"a full-time comedian & part-time traveller | aksorn chula | ig: petchsworld","protected":false,"verified":false,"followers_count":75065,"friends_count":86,"listed_count":41,"favourites_count":1712,"statuses_count":23794,"created_at":"Tue Oct 05 01:41:29 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154446304\/REtkvqwq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154446304\/REtkvqwq.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663233053091717120\/Cmv1Ub3T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663233053091717120\/Cmv1Ub3T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198714960\/1439557668","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Psolemn","name":"MiddleFinger","id":198714960,"id_str":"198714960","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248637952,"id_str":"663728127248637952","text":"Don't know about anyone else, but I am BUZZING for the semi final!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4093265211,"id_str":"4093265211","name":"Alan 'Fake' Stubbsy","screen_name":"officialstubbs","location":null,"url":null,"description":"HIBS EVERY WEEKEND! Parody for the one and only!","protected":false,"verified":false,"followers_count":336,"friends_count":1522,"listed_count":0,"favourites_count":103,"statuses_count":122,"created_at":"Sun Nov 01 23:30:03 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660962481595162624\/b4kFt3Nh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660962481595162624\/b4kFt3Nh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4093265211\/1446423267","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248609280,"id_str":"663728127248609280","text":"RT @MicaNsqp: Teee quiero ver torresss","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153544520,"id_str":"153544520","name":"Martin Torres","screen_name":"martinm_torres","location":"Ituzaingo, Bs As","url":"http:\/\/facebook.com\/martin.itz","description":"20. Lo \u00fanico que se es que no se nada. Soy de River despu\u00e9s existo. Estudiante de Administraci\u00f3n","protected":false,"verified":false,"followers_count":752,"friends_count":639,"listed_count":0,"favourites_count":714,"statuses_count":7270,"created_at":"Tue Jun 08 20:57:28 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647505383490252800\/g3qJKPl0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647505383490252800\/g3qJKPl0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153544520\/1423600871","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:50:13 +0000 2015","id":663669917640744960,"id_str":"663669917640744960","text":"Teee quiero ver torresss","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158090823,"id_str":"158090823","name":"M!CA\u2022","screen_name":"MicaNsqp","location":"\u2122","url":"https:\/\/instagram.com\/micansqp\/","description":"ROOOOOOOOOOOCIO","protected":false,"verified":false,"followers_count":502,"friends_count":510,"listed_count":3,"favourites_count":1193,"statuses_count":5973,"created_at":"Mon Jun 21 19:14:50 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122672789\/7fd7e15486fba0e198157910032d6529.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122672789\/7fd7e15486fba0e198157910032d6529.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663671471265435648\/9RxVNDrJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663671471265435648\/9RxVNDrJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/158090823\/1442671437","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MicaNsqp","name":"M!CA\u2022","id":158090823,"id_str":"158090823","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127231700992,"id_str":"663728127231700992","text":"@MIKENYAAA11 \u4e00\u672c\u3060\u3051\u3060\u3088\uff6b..\u4e00\u7dd2\u306b\u5438\u304a\u3046\uff88,\n\u6012\u308a\u305d\u3046\u306a\u3053\u3068\u306a\u306e\uff6b? \u6d41\u3055\u308c\u305f\u611f\u3058\uff68.. ( \u614b\u3068\u3089\u3057\u304f\u982c\u81a8\u3089\u307e\u305b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727562137309184,"in_reply_to_status_id_str":"663727562137309184","in_reply_to_user_id":4058979732,"in_reply_to_user_id_str":"4058979732","in_reply_to_screen_name":"MIKENYAAA11","user":{"id":4157909232,"id_str":"4157909232","name":"Arakita","screen_name":"Y_A_2","location":null,"url":"https:\/\/twitter.com\/y_a_2\/status\/663005092392497153","description":"\u72ed\u304f\u6df1\u304f\u7de9\u304f,","protected":false,"verified":false,"followers_count":19,"friends_count":19,"listed_count":0,"favourites_count":17,"statuses_count":250,"created_at":"Sat Nov 07 14:31:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663002392619646976\/sjQSdDW1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663002392619646976\/sjQSdDW1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4157909232\/1446907062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MIKENYAAA11","name":"\u3088\u3057\u304d\u3070","id":4058979732,"id_str":"4058979732","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091661"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127214915584,"id_str":"663728127214915584","text":"RT @sarryJYJ: GO CRAZY\u307e\u3055\u304b\u306eJun.K\u304c\u6700\u521d\u306b\u30d0\u30bf\u30f3w\n\u6b21\u306f\u30b8\u30e5\u30cew\u30c6\u30af\u306f\u30aa\u30ea\u30b8\u30ca\u30eb\u80a9\u30c0\u30f3\u30b9\u30d0\u30bf\u30f3w\u30a6\u30e8\u30f3\u3068\u30c1\u30e3\u30f3\u30bd\u30f3\u306f\u4ef2\u826f\u304fw\u6700\u5f8c\u30cb\u30c3\u30af\u30f3\u30c0\u30fc\u30fc\u30a4\u30d6\u305b\u3093\u306e\u304b\u3044\uff01\u7206\n\u308f\u3061\u3083\u308f\u3061\u3083w\u672c\u5f53\u4ef2\u826f\u3057\u3060\u306d\u2661\n\u80a9\u30c0\u30f3\u30b9\u6d41\u884c\u3063\u3066\u308b\u306e\u306dw\n#2PM https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987169272,"id_str":"2987169272","name":"akiko","screen_name":"akko_0726","location":"Japan","url":null,"description":"I love taec,OKCAT,and 2PM\u2661 Best memory is Xmas\u0295\u2022\u032b\u0361\u2022\u0294\u266a 2015\u21921\/4,11,2\/8,5\/20,23-25,8\/22-23,10\/7-9,24. Next\u219211\/14!! I got taec's autograph on 5\/25(\/ _ ; )\u2661","protected":false,"verified":false,"followers_count":42,"friends_count":143,"listed_count":0,"favourites_count":9736,"statuses_count":12063,"created_at":"Sat Jan 17 15:03:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662570720807923712\/fBwz4oSP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662570720807923712\/fBwz4oSP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987169272\/1424941215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:40:26 +0000 2015","id":663712755191418881,"id_str":"663712755191418881","text":"GO CRAZY\u307e\u3055\u304b\u306eJun.K\u304c\u6700\u521d\u306b\u30d0\u30bf\u30f3w\n\u6b21\u306f\u30b8\u30e5\u30cew\u30c6\u30af\u306f\u30aa\u30ea\u30b8\u30ca\u30eb\u80a9\u30c0\u30f3\u30b9\u30d0\u30bf\u30f3w\u30a6\u30e8\u30f3\u3068\u30c1\u30e3\u30f3\u30bd\u30f3\u306f\u4ef2\u826f\u304fw\u6700\u5f8c\u30cb\u30c3\u30af\u30f3\u30c0\u30fc\u30fc\u30a4\u30d6\u305b\u3093\u306e\u304b\u3044\uff01\u7206\n\u308f\u3061\u3083\u308f\u3061\u3083w\u672c\u5f53\u4ef2\u826f\u3057\u3060\u306d\u2661\n\u80a9\u30c0\u30f3\u30b9\u6d41\u884c\u3063\u3066\u308b\u306e\u306dw\n#2PM https:\/\/t.co\/RijFuXlIme","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2166337687,"id_str":"2166337687","name":"sayuri","screen_name":"sarryJYJ","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":75,"listed_count":0,"favourites_count":961,"statuses_count":2342,"created_at":"Thu Oct 31 09:31:56 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662080571783254017\/ub1BBjl8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662080571783254017\/ub1BBjl8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2166337687\/1420982325","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":114,"favorite_count":197,"entities":{"hashtags":[{"text":"2PM","indices":[110,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663712670894284800,"id_str":"663712670894284800","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","url":"https:\/\/t.co\/RijFuXlIme","display_url":"pic.twitter.com\/RijFuXlIme","expanded_url":"http:\/\/twitter.com\/sarryJYJ\/status\/663712755191418881\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663712670894284800,"id_str":"663712670894284800","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","url":"https:\/\/t.co\/RijFuXlIme","display_url":"pic.twitter.com\/RijFuXlIme","expanded_url":"http:\/\/twitter.com\/sarryJYJ\/status\/663712755191418881\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30016,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/640x360\/IZbxCdWebQvIPqFB.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/640x360\/IZbxCdWebQvIPqFB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/320x180\/FoR9-IWW9z5CyF9-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/pl\/GWK2bvGOCo18Di18.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/1280x720\/gXonQdiMnNXjSej0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/pl\/GWK2bvGOCo18Di18.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2PM","indices":[124,128]}],"urls":[],"user_mentions":[{"screen_name":"sarryJYJ","name":"sayuri","id":2166337687,"id_str":"2166337687","indices":[3,12]}],"symbols":[],"media":[{"id":663712670894284800,"id_str":"663712670894284800","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","url":"https:\/\/t.co\/RijFuXlIme","display_url":"pic.twitter.com\/RijFuXlIme","expanded_url":"http:\/\/twitter.com\/sarryJYJ\/status\/663712755191418881\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663712755191418881,"source_status_id_str":"663712755191418881","source_user_id":2166337687,"source_user_id_str":"2166337687"}]},"extended_entities":{"media":[{"id":663712670894284800,"id_str":"663712670894284800","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663712670894284800\/pu\/img\/aF3jHN1uwKdH45V0.jpg","url":"https:\/\/t.co\/RijFuXlIme","display_url":"pic.twitter.com\/RijFuXlIme","expanded_url":"http:\/\/twitter.com\/sarryJYJ\/status\/663712755191418881\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663712755191418881,"source_status_id_str":"663712755191418881","source_user_id":2166337687,"source_user_id_str":"2166337687","video_info":{"aspect_ratio":[16,9],"duration_millis":30016,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/640x360\/IZbxCdWebQvIPqFB.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/640x360\/IZbxCdWebQvIPqFB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/320x180\/FoR9-IWW9z5CyF9-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/pl\/GWK2bvGOCo18Di18.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/vid\/1280x720\/gXonQdiMnNXjSej0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663712670894284800\/pu\/pl\/GWK2bvGOCo18Di18.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091657"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127223312384,"id_str":"663728127223312384","text":"RT @__tonice: \u0e15\u0e2d\u0e19\u0e41\u0e23\u0e01\u0e1b\u0e4a\u0e32\u0e01\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e44\u0e21\u0e48\u0e43\u0e2b\u0e49\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e2b\u0e21\u0e32 \u0e1e\u0e2d\u0e40\u0e2d\u0e32\u0e21\u0e32\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e08\u0e23\u0e34\u0e07\u0e46\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e04\u0e37\u0e2d\u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e01\u0e27\u0e48\u0e32\u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e2d\u0e35\u0e01\u0e04\u0e49\u0e32\ud83d\ude0f #\u0e2b\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19 http:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1956312840,"id_str":"1956312840","name":"A.","screen_name":"AnttieAnnes","location":null,"url":null,"description":"Com Sci \u0e0a\u0e35\u0e27\u0e34\u0e15\u0e40\u0e14\u0e47\u0e01\u0e04\u0e2d\u0e21 \u0e17\u0e35\u0e48\u0e15\u0e49\u0e2d\u0e07\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e04\u0e2d\u0e21\u0e15\u0e25\u0e2d\u0e14\u0e01\u0e32\u0e25 || \u0e0b\u0e34\u0e48\u0e27\u0e19\u0e35\u0e49\u0e17\u0e35\u0e48 \u0e21.\u0e18\u0e23\u0e23\u0e21\u0e28\u0e32\u0e2a\u0e15\u0e23\u0e4c","protected":false,"verified":false,"followers_count":41,"friends_count":599,"listed_count":0,"favourites_count":82,"statuses_count":8935,"created_at":"Sat Oct 12 10:32:45 +0000 2013","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595132140376825856\/B6Xzm7EQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595132140376825856\/B6Xzm7EQ.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661590470770847744\/QYzLnbfO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661590470770847744\/QYzLnbfO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1956312840\/1446570384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 08 08:04:12 +0000 2015","id":652031727234187264,"id_str":"652031727234187264","text":"\u0e15\u0e2d\u0e19\u0e41\u0e23\u0e01\u0e1b\u0e4a\u0e32\u0e01\u0e31\u0e1a\u0e41\u0e21\u0e48\u0e44\u0e21\u0e48\u0e43\u0e2b\u0e49\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e2b\u0e21\u0e32 \u0e1e\u0e2d\u0e40\u0e2d\u0e32\u0e21\u0e32\u0e40\u0e25\u0e35\u0e49\u0e22\u0e07\u0e08\u0e23\u0e34\u0e07\u0e46\u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e04\u0e37\u0e2d\u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e2b\u0e21\u0e32\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e01\u0e27\u0e48\u0e32\u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e25\u0e39\u0e01\u0e2d\u0e35\u0e01\u0e04\u0e49\u0e32\ud83d\ude0f #\u0e2b\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19 http:\/\/t.co\/AeqqBwUjfL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134123775,"id_str":"134123775","name":"\u0e40\u0e14\u0e47\u0e01\u0e2b\u0e0d\u0e34\u0e07\u0e13\u0e31\u0e0a\u0e0a\u0e32","screen_name":"__tonice","location":"khonkaen , thailand","url":"http:\/\/www.facebook.com\/nahynice","description":"you don't know me , but i know :)","protected":false,"verified":false,"followers_count":296,"friends_count":104,"listed_count":1,"favourites_count":1216,"statuses_count":22745,"created_at":"Sat Apr 17 14:23:59 +0000 2010","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000045744785\/d8bde822df232ff72630411007e75c44.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000045744785\/d8bde822df232ff72630411007e75c44.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660837208702627841\/gLV1OQZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660837208702627841\/gLV1OQZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134123775\/1445342405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0191eb6c03d35ea5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0191eb6c03d35ea5.json","place_type":"city","name":"\u0e02\u0e2d\u0e19\u0e41\u0e01\u0e48\u0e19","full_name":"\u0e02\u0e2d\u0e19\u0e41\u0e01\u0e48\u0e19, \u0e08.\u0e02\u0e2d\u0e19\u0e41\u0e01\u0e48\u0e19","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[102.810623,16.403153],[102.810623,16.472529],[102.867050,16.472529],[102.867050,16.403153]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":14140,"favorite_count":1080,"entities":{"hashtags":[{"text":"\u0e2b\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19","indices":[93,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":652031702315851776,"id_str":"652031702315851776","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":652031702315851776,"id_str":"652031702315851776","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":652031702336864256,"id_str":"652031702336864256","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPAVAAAxA_l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPAVAAAxA_l.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":652031702349418496,"id_str":"652031702349418496","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPDUkAA4kU9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPDUkAA4kU9.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":652031702542364672,"id_str":"652031702542364672","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPxUsAA5mi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPxUsAA5mi2.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e2b\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e31\u0e15\u0e27\u0e4c\u0e1b\u0e31\u0e0d\u0e0d\u0e32\u0e2d\u0e48\u0e2d\u0e19","indices":[107,129]}],"urls":[],"user_mentions":[{"screen_name":"__tonice","name":"\u0e40\u0e14\u0e47\u0e01\u0e2b\u0e0d\u0e34\u0e07\u0e13\u0e31\u0e0a\u0e0a\u0e32","id":134123775,"id_str":"134123775","indices":[3,12]}],"symbols":[],"media":[{"id":652031702315851776,"id_str":"652031702315851776","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":652031727234187264,"source_status_id_str":"652031727234187264","source_user_id":134123775,"source_user_id_str":"134123775"}]},"extended_entities":{"media":[{"id":652031702315851776,"id_str":"652031702315851776","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YO7UYAAI1am.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":652031727234187264,"source_status_id_str":"652031727234187264","source_user_id":134123775,"source_user_id_str":"134123775"},{"id":652031702336864256,"id_str":"652031702336864256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPAVAAAxA_l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPAVAAAxA_l.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":652031727234187264,"source_status_id_str":"652031727234187264","source_user_id":134123775,"source_user_id_str":"134123775"},{"id":652031702349418496,"id_str":"652031702349418496","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPDUkAA4kU9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPDUkAA4kU9.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":652031727234187264,"source_status_id_str":"652031727234187264","source_user_id":134123775,"source_user_id_str":"134123775"},{"id":652031702542364672,"id_str":"652031702542364672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQx7YPxUsAA5mi2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQx7YPxUsAA5mi2.jpg","url":"http:\/\/t.co\/AeqqBwUjfL","display_url":"pic.twitter.com\/AeqqBwUjfL","expanded_url":"http:\/\/twitter.com\/__tonice\/status\/652031727234187264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":652031727234187264,"source_status_id_str":"652031727234187264","source_user_id":134123775,"source_user_id_str":"134123775"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080091659"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127252631552,"id_str":"663728127252631552","text":"@_Txjul iye;ah, hm okay hahaha","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727855931539456,"in_reply_to_status_id_str":"663727855931539456","in_reply_to_user_id":792786294,"in_reply_to_user_id_str":"792786294","in_reply_to_screen_name":"_Txjul","user":{"id":796653702,"id_str":"796653702","name":"rabbit\u2764\ufe0f","screen_name":"xmeerx99","location":"tajul erfan","url":null,"description":"i will love you endlessly","protected":false,"verified":false,"followers_count":761,"friends_count":439,"listed_count":0,"favourites_count":2531,"statuses_count":15218,"created_at":"Sat Sep 01 18:50:10 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623326561706512385\/Byumo-Rp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623326561706512385\/Byumo-Rp.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663211817745825793\/DGVGUfFS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663211817745825793\/DGVGUfFS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/796653702\/1440606324","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_Txjul","name":"zac","id":792786294,"id_str":"792786294","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080091666"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127248478208,"id_str":"663728127248478208","text":"@kptmdjmdjptma \u304a\u75b2\u308c\u69d8\u3067\u3057\u305f\uff01(^-^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728047141490689,"in_reply_to_status_id_str":"663728047141490689","in_reply_to_user_id":2180253122,"in_reply_to_user_id_str":"2180253122","in_reply_to_screen_name":"kptmdjmdjptma","user":{"id":445389106,"id_str":"445389106","name":"\u304d\u3083\u307e","screen_name":"jyeido_anisu","location":null,"url":null,"description":"\u30bb\u30c0\u30f3\u4e57\u308a\u305f\u3044\u2026 \u9577\u5ca1\u5e02 \u6771\u5317\u4e2d\u2192\u9577\u5ca1\u5de5\u696d\u2192\u307f\u3057\u307e \u30b9\u30ed\u30c3\u30ab\u30b9\u306b\u306f\u306a\u308a\u305f\u304f\u306a\u3044","protected":false,"verified":false,"followers_count":122,"friends_count":76,"listed_count":6,"favourites_count":881,"statuses_count":13738,"created_at":"Sat Dec 24 10:25:17 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633289979909664768\/H_diNqP5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633289979909664768\/H_diNqP5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/445389106\/1444915151","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kptmdjmdjptma","name":"\u5927\u6a39","id":2180253122,"id_str":"2180253122","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091665"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127219122176,"id_str":"663728127219122176","text":"@dahyunash udah gak sh sih","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663278114634493952,"in_reply_to_status_id_str":"663278114634493952","in_reply_to_user_id":3310292804,"in_reply_to_user_id_str":"3310292804","in_reply_to_screen_name":"dahyunash","user":{"id":1095266786,"id_str":"1095266786","name":"tttop","screen_name":"seunghyunash","location":null,"url":null,"description":"let's fall in love?","protected":false,"verified":false,"followers_count":118,"friends_count":55,"listed_count":0,"favourites_count":25,"statuses_count":1177,"created_at":"Wed Jan 16 13:48:49 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662673369242824704\/C9KglV4q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662673369242824704\/C9KglV4q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1095266786\/1446828806","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dahyunash","name":"D.K","id":3310292804,"id_str":"3310292804","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080091658"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127244378112,"id_str":"663728127244378112","text":"@ibrg_ \u064a\u0628\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u064a\u062c\u0632\u0645\u0648\u0646 \u0639\u0644\u064a\u0647\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727876315959296,"in_reply_to_status_id_str":"663727876315959296","in_reply_to_user_id":246745837,"in_reply_to_user_id_str":"246745837","in_reply_to_screen_name":"ibrg_","user":{"id":1087045909,"id_str":"1087045909","name":"\u0623-\u0627\u0644\u0639\u062a\u064a\u0628\u064a","screen_name":"Ib_a14","location":"\u062d\u0627\u064a\u0644.","url":null,"description":null,"protected":false,"verified":false,"followers_count":2021,"friends_count":422,"listed_count":4,"favourites_count":202,"statuses_count":5276,"created_at":"Sun Jan 13 19:42:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659114038929051648\/NCX8L3XA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659114038929051648\/NCX8L3XA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1087045909\/1446856902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ibrg_","name":"\u0628\u0631\u0642 # \u0634\u0628\u064a\u062d \u0627\u0644\u062c\u0628\u0631\u064a\u0646","id":246745837,"id_str":"246745837","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080091664"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127252676610,"id_str":"663728127252676610","text":"@kadokkuda @hayato7297 @jinro_azurin @mafutef_zinrou \n\u3069\u3093\u307e\u3044\u3067\u3059\n\u30ab\u30c9\u30c3\u30af\u69d8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727926014160896,"in_reply_to_status_id_str":"663727926014160896","in_reply_to_user_id":3482295919,"in_reply_to_user_id_str":"3482295919","in_reply_to_screen_name":"kadokkuda","user":{"id":3326115162,"id_str":"3326115162","name":"\u5553\u5f25@\u5973rp+\u30e1\u30a4\u30c9\u7f70\u30b2","screen_name":"noeru580","location":"\u611b\u77e5\u52e2","url":null,"description":"\u4eba\u72fcZ\u6c11\uff0f\u5553\u5f25\u6751\u306e\u6751\u9577\uff0f\u85cd\u6765\u5bb6\u306e\u5f53\u4e3b\uff0f\u30ab\u30eb\u30d4\u30b9\u30cf\u30a6\u30b9\u6240\u5c5e\uff0f\u5927\u5bcc\u8c6a\uff0f\u5927\u4f53\u4ffa\u306f\u3001\u52dd\u624b\u306b\u7d61\u307f\u306b\u884c\u304f\u304b\u3089\u306a\uff0f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306e\u30d5\u30a9\u30ed\u30d0\u6c17\u5206\u3068\u304b\u306b\u3088\u308b\uff0f\u6700\u8fd1\u3001\u4eee\u9762\u3067\u4f4e\u6d6e\u4e0a\u4e2d","protected":false,"verified":false,"followers_count":101,"friends_count":84,"listed_count":2,"favourites_count":116,"statuses_count":4847,"created_at":"Sun Aug 23 09:53:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663053405502357504\/xa8e1tmD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663053405502357504\/xa8e1tmD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3326115162\/1446979775","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kadokkuda","name":"\u30ab\u30c9\u30c3\u30af","id":3482295919,"id_str":"3482295919","indices":[0,10]},{"screen_name":"hayato7297","name":"\u98af\u7fd4@\u30cf\u30e0\u305f\u3093@\u8a9e\u5c3e\u306b\u3083\u3093\u304a\u59c9\u69d8&\u304a\u5144\u69d8","id":3617356099,"id_str":"3617356099","indices":[11,22]},{"screen_name":"jinro_azurin","name":"\u3042\u305a\u308a\u3093","id":3303104228,"id_str":"3303104228","indices":[23,36]},{"screen_name":"mafutef_zinrou","name":"\u307e\u3075\u3066\u3075@\u308a\u3093\u3054\u3068PG","id":3314979252,"id_str":"3314979252","indices":[37,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091666"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127244263424,"id_str":"663728127244263424","text":"RT @BlGBAP: Hahahhhaaha nyet https:\/\/t.co\/4UchItAeLI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265430271,"id_str":"265430271","name":"\u0e0a\u0e47\u0e2d\u0e01\u0e40\u0e1a\u0e40\u0e1a\u0e49\u0e21\u0e07","screen_name":"Iam_chocop","location":null,"url":null,"description":"\u0e15\u0e34\u0e48\u0e07\u0e02\u0e35\u0e49\u0e1a\u0e48\u0e19\u0e19\u0e19 - \u0e0a\u0e2d\u0e1a\u0e2d\u0e48\u0e32\u0e19\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d \u0e14\u0e39\u0e2b\u0e19\u0e31\u0e07 \u0e1f\u0e31\u0e07\u0e40\u0e1e\u0e25\u0e07 \u0e01\u0e34\u0e19 \u0e19\u0e2d\u0e19 \u0e1a\u0e48\u0e19 \u0e40\u0e23\u0e37\u0e48\u0e2d\u0e22\u0e40\u0e1b\u0e37\u0e48\u0e2d\u0e22 \u0e0a\u0e47\u0e2d\u0e01\u0e42\u0e01\u0e41\u0e25\u0e15 \u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d \u0e1f\u0e31\u0e07\u0e40\u0e1e\u0e25\u0e07 \u0e1a\u0e48\u0e19\u0e19\u0e19 \u0e2d\u0e22\u0e32\u0e01\u0e01\u0e34\u0e19\u0e44\u0e2d\u0e15\u0e34\u0e21\u0e08\u0e31\u0e07\u0e07\u0e07\u0e07\u0e07\u0e07\u0e07\u0e07 \u0e0a\u0e32\u0e1a\u0e39\u0e2d\u0e39\u0e23\u0e32\u0e23\u0e48\u0e32~~","protected":false,"verified":false,"followers_count":323,"friends_count":538,"listed_count":4,"favourites_count":646,"statuses_count":118162,"created_at":"Sun Mar 13 14:45:46 +0000 2011","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656820637281849345\/CU1c1Z2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656820637281849345\/CU1c1Z2a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265430271\/1443114566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:34 +0000 2015","id":663719329368698880,"id_str":"663719329368698880","text":"Hahahhhaaha nyet https:\/\/t.co\/4UchItAeLI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":635887277,"id_str":"635887277","name":"day-6!!","screen_name":"BlGBAP","location":"GTOP BANGHIM JaeHyungParkIan","url":"http:\/\/twitter.com\/americanaday6","description":"\ube45\ubc45 \ube44\uc560\uc774\ud53c \ub370\uc774\uc2dd\uc2a4 \uac13\uc138\ube10 \ube14\ub77d\ube44 \uc640 \ubaac\uc2a4\ud0c0\uc5d1\uc2a4 \ud2b8\uc640\uc774\uc2a4 #maknaelineprotectionsquad #gotday #92linerenthusiast","protected":false,"verified":false,"followers_count":1522,"friends_count":995,"listed_count":21,"favourites_count":27505,"statuses_count":346127,"created_at":"Sun Jul 15 04:13:31 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000150124570\/q0stYb38.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000150124570\/q0stYb38.jpeg","profile_background_tile":true,"profile_link_color":"030303","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662684876118687744\/Rh0tcA_1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662684876118687744\/Rh0tcA_1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635887277\/1440064376","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713580722733057,"id_str":"663713580722733057","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","url":"https:\/\/t.co\/4UchItAeLI","display_url":"pic.twitter.com\/4UchItAeLI","expanded_url":"http:\/\/twitter.com\/G_ONE818\/status\/663715991323480066\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663715991323480066,"source_status_id_str":"663715991323480066","source_user_id":388301095,"source_user_id_str":"388301095"}]},"extended_entities":{"media":[{"id":663713580722733057,"id_str":"663713580722733057","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","url":"https:\/\/t.co\/4UchItAeLI","display_url":"pic.twitter.com\/4UchItAeLI","expanded_url":"http:\/\/twitter.com\/G_ONE818\/status\/663715991323480066\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663715991323480066,"source_status_id_str":"663715991323480066","source_user_id":388301095,"source_user_id_str":"388301095","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/640x360\/CvP8jt5yNEWH14N_.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/pl\/lc-fMkJ3_SidUo9k.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/320x180\/AvHQQSX9Zr-4qnLT.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/1280x720\/Z-hryfiCNutpcxWp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/pl\/lc-fMkJ3_SidUo9k.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/640x360\/CvP8jt5yNEWH14N_.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlGBAP","name":"day-6!!","id":635887277,"id_str":"635887277","indices":[3,10]}],"symbols":[],"media":[{"id":663713580722733057,"id_str":"663713580722733057","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","url":"https:\/\/t.co\/4UchItAeLI","display_url":"pic.twitter.com\/4UchItAeLI","expanded_url":"http:\/\/twitter.com\/G_ONE818\/status\/663715991323480066\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663715991323480066,"source_status_id_str":"663715991323480066","source_user_id":388301095,"source_user_id_str":"388301095"}]},"extended_entities":{"media":[{"id":663713580722733057,"id_str":"663713580722733057","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663713580722733057\/pu\/img\/zYdJHjnwfhNJ8zGe.jpg","url":"https:\/\/t.co\/4UchItAeLI","display_url":"pic.twitter.com\/4UchItAeLI","expanded_url":"http:\/\/twitter.com\/G_ONE818\/status\/663715991323480066\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663715991323480066,"source_status_id_str":"663715991323480066","source_user_id":388301095,"source_user_id_str":"388301095","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/640x360\/CvP8jt5yNEWH14N_.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/pl\/lc-fMkJ3_SidUo9k.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/320x180\/AvHQQSX9Zr-4qnLT.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/1280x720\/Z-hryfiCNutpcxWp.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/pl\/lc-fMkJ3_SidUo9k.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663713580722733057\/pu\/vid\/640x360\/CvP8jt5yNEWH14N_.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080091664"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127231721473,"id_str":"663728127231721473","text":"@mogatanpe \u854e\u9ea6\u306f\u30b9\u30fc\u30d7\u3060\u3063\u305f\u306e\u304b\u3002\u3046\u3069\u3093\u306f\u5473\u564c\u6c41\u2026\uff1f\uff1f\n\n\u8d8a\u524d\u854e\u9ea6\u3002\u798f\u4e95\u770c\u306e\u540d\u7269\u3002\n\u3069\u3063\u304b\u3067\u98df\u3079\u305f\u304a\u308d\u3057\u306a\u3081\u3053\u854e\u9ea6\u7f8e\u5473\u304b\u3063\u305f\u3088( \u02c7\u706c\u02c7 )\n\u798f\u4e95\u306b\u6765\u305f\u6298\u306b\u306f\u662f\u975e\u0669(\u02ca\u15dc\u02cb*)\u0648 https:\/\/t.co\/9BiNsJEA94","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727328422330368,"in_reply_to_status_id_str":"663727328422330368","in_reply_to_user_id":198467454,"in_reply_to_user_id_str":"198467454","in_reply_to_screen_name":"mogatanpe","user":{"id":2929943076,"id_str":"2929943076","name":"\u3079\u308a\u3043@\u7b4b\u8089\u306e\u3072\u3068","screen_name":"b_errry","location":"\u3075\u304f\u3044\u3051\u3093","url":"http:\/\/www.goldsgym.jp\/mb\/","description":"\u3067\u3093\u3071\u7d44.inc\u306e\u6700\u4e0a\u3082\u304c\u3055\u3093\u63a8\u3057\u3067\u7bb1\u63a8\u3057\u3002 \u73fe\u5834\u3092\u99c6\u3051\u308b\u8272\u9ed2\u306e\u7b4b\u8089\u306f\u6700\u4e0a\u3082\u304c\u3055\u3093\u306e\u30c8\u30ec\u30fc\u30ca\u30fc\u306b\u306a\u308a\u305f\u3044\u4eba\u751f\u3002\u7b4b\u8089\u754c\u9688\u5e83\u5831\u90e8\u9577\u3084\u3063\u3066\u307e\u3059\u300211\u6708\u306f\u5728\u5b85\u3002","protected":false,"verified":false,"followers_count":303,"friends_count":260,"listed_count":19,"favourites_count":3946,"statuses_count":7613,"created_at":"Sun Dec 14 15:16:40 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652995722682368000\/QllRxTY6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652995722682368000\/QllRxTY6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2929943076\/1446830910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mogatanpe","name":"\u6700\u4e0a\u3082\u304c","id":198467454,"id_str":"198467454","indices":[0,10]}],"symbols":[],"media":[{"id":663728112731971584,"id_str":"663728112731971584","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJM7LUYAAx8-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJM7LUYAAx8-p.jpg","url":"https:\/\/t.co\/9BiNsJEA94","display_url":"pic.twitter.com\/9BiNsJEA94","expanded_url":"http:\/\/twitter.com\/b_errry\/status\/663728127231721473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728112731971584,"id_str":"663728112731971584","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJM7LUYAAx8-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJM7LUYAAx8-p.jpg","url":"https:\/\/t.co\/9BiNsJEA94","display_url":"pic.twitter.com\/9BiNsJEA94","expanded_url":"http:\/\/twitter.com\/b_errry\/status\/663728127231721473\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091661"} +{"delete":{"status":{"id":663724251682242560,"id_str":"663724251682242560","user_id":231009239,"user_id_str":"231009239"},"timestamp_ms":"1447080091929"}} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127223336960,"id_str":"663728127223336960","text":"\u79fb\u52d5\u901f\u5ea6\u521d\u3081\u3066\u51fa\u305f\u30fc\uff08\uff3e\u03bd\uff3e\uff09\n\n#\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8 https:\/\/t.co\/Iae4BghPnC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":924835092,"id_str":"924835092","name":"\u308a\u3084\u306a\u3055\u3093","screen_name":"liyana029","location":null,"url":"http:\/\/blog.livedoor.jp\/liyana029\/","description":"PLAY:FFGM\u3001\u767d\u732b\u3001\u305d\u306e\u4ed6\u8272\u3005\u3001\u5178\u578b\u7684\u306a\u30f2\u30bf\u601d\u8003\u3067\u3059\u30022\u5150\u306e\u7236\u306b\u306a\u308a\u307e\u3057\u305f(^-^)\/","protected":false,"verified":false,"followers_count":154,"friends_count":97,"listed_count":2,"favourites_count":111,"statuses_count":8192,"created_at":"Sun Nov 04 07:15:24 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650281823939899392\/uFXv3plQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650281823939899392\/uFXv3plQ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8","indices":[17,26]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728121560985602,"id_str":"663728121560985602","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNcEUcAIMKdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNcEUcAIMKdX.jpg","url":"https:\/\/t.co\/Iae4BghPnC","display_url":"pic.twitter.com\/Iae4BghPnC","expanded_url":"http:\/\/twitter.com\/liyana029\/status\/663728127223336960\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728121560985602,"id_str":"663728121560985602","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNcEUcAIMKdX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNcEUcAIMKdX.jpg","url":"https:\/\/t.co\/Iae4BghPnC","display_url":"pic.twitter.com\/Iae4BghPnC","expanded_url":"http:\/\/twitter.com\/liyana029\/status\/663728127223336960\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080091659"} +{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728127219138560,"id_str":"663728127219138560","text":"Warming set to breach 1C\u00a0threshold https:\/\/t.co\/Vtx72Erziz https:\/\/t.co\/7Kkz1rERHI","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750254825,"id_str":"2750254825","name":"moomblr","screen_name":"moomblr","location":"W O R L D","url":"http:\/\/www.moomblr.com","description":"Information at your fingertips from top social media news on topics to share on Facebook, YouTube, Google, Twitter and More.","protected":false,"verified":false,"followers_count":1389,"friends_count":1965,"listed_count":60,"favourites_count":78,"statuses_count":120684,"created_at":"Wed Aug 20 20:13:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/523256011608453120\/-dMQx3XT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/523256011608453120\/-dMQx3XT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2750254825\/1413588950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Vtx72Erziz","expanded_url":"http:\/\/moomblr.com\/2015\/11\/09\/warming-set-to-breach-1c-threshold\/","display_url":"moomblr.com\/2015\/11\/09\/war\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[],"media":[{"id":663728126011113472,"id_str":"663728126011113472","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNspUAAA51vX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNspUAAA51vX.jpg","url":"https:\/\/t.co\/7Kkz1rERHI","display_url":"pic.twitter.com\/7Kkz1rERHI","expanded_url":"http:\/\/twitter.com\/moomblr\/status\/663728127219138560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":1024,"h":557,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728126011113472,"id_str":"663728126011113472","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNspUAAA51vX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNspUAAA51vX.jpg","url":"https:\/\/t.co\/7Kkz1rERHI","display_url":"pic.twitter.com\/7Kkz1rERHI","expanded_url":"http:\/\/twitter.com\/moomblr\/status\/663728127219138560\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":1024,"h":557,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080091658"} +{"delete":{"status":{"id":519538370179903488,"id_str":"519538370179903488","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080092071"}} +{"delete":{"status":{"id":663656626944090112,"id_str":"663656626944090112","user_id":1292428088,"user_id_str":"1292428088"},"timestamp_ms":"1447080092213"}} +{"delete":{"status":{"id":663559109384536064,"id_str":"663559109384536064","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080092554"}} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430334464,"id_str":"663728131430334464","text":"CosnaAmir: nicoleferrer07: kathnielquotes_: Imma_lonely_: gerald312garcia: sandyayala09: KOREAdorables: kbdpftcris29: byaheng4: #PushAwards\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3250221410,"id_str":"3250221410","name":"NO 1 CAN BEAT KNFndm","screen_name":"caide38","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":83,"friends_count":294,"listed_count":11,"favourites_count":128,"statuses_count":32474,"created_at":"Sat Jun 20 02:01:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651185522031722496\/Isitb4yQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651185522031722496\/Isitb4yQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3250221410\/1444089687","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwards","indices":[128,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430289408,"id_str":"663728131430289408","text":"RT @fuckingtimexx: @shulyginaOk_LoL \u0434\u043e 8 \u0432\u0435\u0447\u0435\u0440\u0430 \u0435\u0449\u0435 \u0431\u0443\u0434\u0443\u0442 \u0440\u043e\u0437\u044b\u0433\u0440\u044b\u0448\u0438 :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241469861,"id_str":"3241469861","name":"|KRISTINA","screen_name":"kristina45752","location":null,"url":"http:\/\/vk.com\/id260282699","description":"|promise.","protected":false,"verified":false,"followers_count":273,"friends_count":334,"listed_count":1,"favourites_count":140,"statuses_count":415,"created_at":"Fri May 08 04:47:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663682326241628160\/1oVRIfYB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663682326241628160\/1oVRIfYB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241469861\/1447069170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728096479199232,"id_str":"663728096479199232","text":"@shulyginaOk_LoL \u0434\u043e 8 \u0432\u0435\u0447\u0435\u0440\u0430 \u0435\u0449\u0435 \u0431\u0443\u0434\u0443\u0442 \u0440\u043e\u0437\u044b\u0433\u0440\u044b\u0448\u0438 :)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727710234157056,"in_reply_to_status_id_str":"663727710234157056","in_reply_to_user_id":3138726370,"in_reply_to_user_id_str":"3138726370","in_reply_to_screen_name":"shulyginaOk_LoL","user":{"id":2444085410,"id_str":"2444085410","name":"\u25b3","screen_name":"fuckingtimexx","location":"\u0418\u0436\u0435\u0432\u0441\u043a","url":null,"description":"#BELIEBER #DIRECTIONER #PRETTYLITTLELIARS #THEHUNGERGAMES","protected":false,"verified":false,"followers_count":3133,"friends_count":329,"listed_count":2,"favourites_count":768,"statuses_count":8026,"created_at":"Mon Apr 14 15:47:04 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658973627874865153\/gzEDrjIo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658973627874865153\/gzEDrjIo.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661243293221707776\/zKJkTdtU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661243293221707776\/zKJkTdtU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2444085410\/1446487693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"c48857aa6fc83122","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c48857aa6fc83122.json","place_type":"city","name":"\u0418\u0436\u0435\u0432\u0441\u043a","full_name":"\u0418\u0436\u0435\u0432\u0441\u043a, \u0423\u0434\u043c\u0443\u0440\u0442\u0441\u043a\u0430\u044f \u0440\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[53.010000,56.723600],[53.010000,57.002534],[53.392600,57.002534],[53.392600,56.723600]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shulyginaOk_LoL","name":"\u2b50Vanessa\u2b50MITAM\u2b50","id":3138726370,"id_str":"3138726370","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fuckingtimexx","name":"\u25b3","id":2444085410,"id_str":"2444085410","indices":[3,17]},{"screen_name":"shulyginaOk_LoL","name":"\u2b50Vanessa\u2b50MITAM\u2b50","id":3138726370,"id_str":"3138726370","indices":[19,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438678017,"id_str":"663728131438678017","text":"RT @fisher_outdoor: #giveaway time! FOLLOW US & RETWEET for the chance to #win a @BOOKMANse Curve USB Front Light! #Safety #cycling https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3986422337,"id_str":"3986422337","name":"Karen Martin","screen_name":"MummyK87","location":"South East, England","url":null,"description":"Life is short. Break the RULES, FORGIVE quickly, KISS slowly, LOVE truly, LAUGH uncontrollably, and NEVER REGRET anything that made you SMILE.","protected":false,"verified":false,"followers_count":225,"friends_count":1204,"listed_count":8,"favourites_count":1069,"statuses_count":2137,"created_at":"Sun Oct 18 10:49:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661587889445302272\/Y5mVRSCd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661587889445302272\/Y5mVRSCd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3986422337\/1446025865","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:17:41 +0000 2015","id":663676828423495680,"id_str":"663676828423495680","text":"#giveaway time! FOLLOW US & RETWEET for the chance to #win a @BOOKMANse Curve USB Front Light! #Safety #cycling https:\/\/t.co\/wGOCAXx75N","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39467819,"id_str":"39467819","name":"Fisher Outdoor","screen_name":"fisher_outdoor","location":"St Albans","url":"http:\/\/www.fisheroutdoor.co.uk","description":"Fisher Outdoor Leisure. One of the leading distributors of cycling parts, accessories and bikes in the UK.","protected":false,"verified":false,"followers_count":2609,"friends_count":2010,"listed_count":24,"favourites_count":524,"statuses_count":3266,"created_at":"Tue May 12 09:39:46 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFAFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516570399828480001\/FAGQntFU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516570399828480001\/FAGQntFU.jpeg","profile_background_tile":false,"profile_link_color":"BF1238","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552825277550559233\/Afk_S7mI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552825277550559233\/Afk_S7mI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39467819\/1444294508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":6,"entities":{"hashtags":[{"text":"giveaway","indices":[0,9]},{"text":"win","indices":[58,62]},{"text":"Safety","indices":[99,106]},{"text":"cycling","indices":[107,115]}],"urls":[],"user_mentions":[{"screen_name":"BOOKMANse","name":"BOOKMAN","id":322524894,"id_str":"322524894","indices":[65,75]}],"symbols":[],"media":[{"id":663673944474537984,"id_str":"663673944474537984","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","url":"https:\/\/t.co\/wGOCAXx75N","display_url":"pic.twitter.com\/wGOCAXx75N","expanded_url":"http:\/\/twitter.com\/fisher_outdoor\/status\/663676828423495680\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663673944474537984,"id_str":"663673944474537984","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","url":"https:\/\/t.co\/wGOCAXx75N","display_url":"pic.twitter.com\/wGOCAXx75N","expanded_url":"http:\/\/twitter.com\/fisher_outdoor\/status\/663676828423495680\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"giveaway","indices":[20,29]},{"text":"win","indices":[78,82]},{"text":"Safety","indices":[119,126]},{"text":"cycling","indices":[127,135]}],"urls":[],"user_mentions":[{"screen_name":"fisher_outdoor","name":"Fisher Outdoor","id":39467819,"id_str":"39467819","indices":[3,18]},{"screen_name":"BOOKMANse","name":"BOOKMAN","id":322524894,"id_str":"322524894","indices":[85,95]}],"symbols":[],"media":[{"id":663673944474537984,"id_str":"663673944474537984","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","url":"https:\/\/t.co\/wGOCAXx75N","display_url":"pic.twitter.com\/wGOCAXx75N","expanded_url":"http:\/\/twitter.com\/fisher_outdoor\/status\/663676828423495680\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663676828423495680,"source_status_id_str":"663676828423495680","source_user_id":39467819,"source_user_id_str":"39467819"}]},"extended_entities":{"media":[{"id":663673944474537984,"id_str":"663673944474537984","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXX76sWUAArg4k.jpg","url":"https:\/\/t.co\/wGOCAXx75N","display_url":"pic.twitter.com\/wGOCAXx75N","expanded_url":"http:\/\/twitter.com\/fisher_outdoor\/status\/663676828423495680\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663676828423495680,"source_status_id_str":"663676828423495680","source_user_id":39467819,"source_user_id_str":"39467819"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092664"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430289409,"id_str":"663728131430289409","text":"RT @PBieberFollow: Retweet aqui e comente a tag #4DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385673980,"id_str":"385673980","name":"P U R P O S E","screen_name":"gabixxprado","location":"lovatic and belieber ","url":"http:\/\/instagram.com\/gabixprado","description":"No, I'm not lucky, I'm blessed, yes.!","protected":false,"verified":false,"followers_count":1256,"friends_count":304,"listed_count":1,"favourites_count":40,"statuses_count":19797,"created_at":"Wed Oct 05 22:36:39 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663546004596199424\/nwxRpicw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663546004596199424\/nwxRpicw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385673980\/1447036618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:23 +0000 2015","id":663728094683996161,"id_str":"663728094683996161","text":"Retweet aqui e comente a tag #4DaysTillPURPOSE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298133953,"id_str":"3298133953","name":"ProjetoBieberFollow","screen_name":"PBieberFollow","location":"S\u00e3o Paulo, Brasil","url":"http:\/\/smarturl.it\/JBPurpose","description":"Projeto para ajudar beliebers a conseguirem o follow do @JustinBieber e ajudar nas vota\u00e7\u00f5es. Ativem as notifica\u00e7\u00f5es :) Team Support Bieber.","protected":false,"verified":false,"followers_count":6258,"friends_count":5260,"listed_count":3,"favourites_count":4545,"statuses_count":8529,"created_at":"Mon Jul 27 16:23:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661319789915283456\/EBuj8eUd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661319789915283456\/EBuj8eUd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298133953\/1446502013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"b3b4cdbac4fca873","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/b3b4cdbac4fca873.json","place_type":"city","name":"Itaquaquecetuba","full_name":"Itaquaquecetuba, S\u00e3o Paulo","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-46.398714,-23.513212],[-46.398714,-23.416438],[-46.270084,-23.416438],[-46.270084,-23.513212]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[29,46]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[48,65]}],"urls":[],"user_mentions":[{"screen_name":"PBieberFollow","name":"ProjetoBieberFollow","id":3298133953,"id_str":"3298133953","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442896896,"id_str":"663728131442896896","text":"@Sarah_AboZeid \u0627\u0644\u0639\u0627\u0626\u0644\u0647 \u0627\u0644\u0645\u0627\u0644\u0643\u0647 \u0641 \u0628\u0631\u064a\u0637\u0627\u0646\u064a\u0627 \u0647\u0645\u0627 \u0627\u0644\u0644\u0649 \u0642\u062a\u0644\u0648\u0647\u0627 \u0628\u0633\u0628\u0628 \u0639\u0644\u0627\u0642\u062a\u0647\u0627 \u0628\u062f\u0648\u062f\u0649 \u0627\u0644\u0641\u0627\u064a\u062f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663452423999082497,"in_reply_to_status_id_str":"663452423999082497","in_reply_to_user_id":541629311,"in_reply_to_user_id_str":"541629311","in_reply_to_screen_name":"Sarah_AboZeid","user":{"id":552635865,"id_str":"552635865","name":"\u0429\u15e9\u1eb8\u14aa \u15e9\u13bb\u0360\u15f0\u1eb8\u0110","screen_name":"WaelAhmed__","location":"\u0633\u0627\u0643\u0646 \u0641\u064a \u062a\u0648\u064a\u062a\u0631","url":"http:\/\/wael-ahmed.tumblr.com","description":"T\u1587\u15e9\u142fE\u14aa \u1455O\u144c\u144e\u1515E\u14aaO\u1587 | TO\u144c\u1587 G\u144cI\u15eaE \u2663\ufe0f \u15f7\u15e9Y \u15e9\u1587E\u15e9 i \u2764GY\u15f0\u2600\ufe0f25 YE\u15e9\u1587\u1515 O\u14aa\u15ea \u2666\ufe0f \u15eaT I\u1515 \u15f0Y\u2764\ufe0f\u2728\u15f0E\u144eTIO\u144e \u15f0E \u15b4O\u1587 \u15e9 \u15b4O\u14aa\u14aaO\u15ef \u15f7\u15e9\u1455K\u26a1\u2600\ufe0f\u2747 https:\/\/t.co\/lNLPKrUVxA\u2b55\ufe0f\u2668 http:\/\/t.co\/B1iORWF6uD","protected":false,"verified":false,"followers_count":18729,"friends_count":16545,"listed_count":10,"favourites_count":1315,"statuses_count":26819,"created_at":"Fri Apr 13 09:16:58 +0000 2012","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576761992196665344\/oGqUw3FA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576761992196665344\/oGqUw3FA.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661914359510269952\/auWB-R8F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661914359510269952\/auWB-R8F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/552635865\/1446647841","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sarah_AboZeid","name":"\u062a\u0628\u0648\u0644\u0629 \u0627\u0644\u062a\u0648\u064a\u062a\u064a","id":541629311,"id_str":"541629311","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413565440,"id_str":"663728131413565440","text":"RT @sarahbeth2016: My \"idc\" game has gotten so strong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484506258,"id_str":"484506258","name":"Darren McDabbin","screen_name":"WayneTrain30","location":null,"url":null,"description":"http:\/\/soundcloud.com\/dgreen30 @Sheen_187 @RichieByrns @zachfarlow #Fanlee #UAMG #SpecialEnt #DGME #SheenSquad","protected":false,"verified":false,"followers_count":1877,"friends_count":2077,"listed_count":4,"favourites_count":12699,"statuses_count":44758,"created_at":"Mon Feb 06 05:42:40 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637759960026320896\/HRDBUFhy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637759960026320896\/HRDBUFhy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484506258\/1432766988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727714361327617,"id_str":"663727714361327617","text":"My \"idc\" game has gotten so strong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":397022494,"id_str":"397022494","name":"sarah\u2741","screen_name":"sarahbeth2016","location":"oc, ky","url":null,"description":"blessed are the curious for they shall have adventures \u2708\ufe0f Senior @ Ohio County, avid animal lovaaa","protected":false,"verified":false,"followers_count":1055,"friends_count":485,"listed_count":1,"favourites_count":6691,"statuses_count":26307,"created_at":"Mon Oct 24 03:49:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658127422592782336\/C1k2EG-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658127422592782336\/C1k2EG-Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/397022494\/1446616477","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sarahbeth2016","name":"sarah\u2741","id":397022494,"id_str":"397022494","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413536772,"id_str":"663728131413536772","text":"\u201cDe la renuncia de @David_Korenfeld hab\u00eda poco qu\u00e9 aclamar en el \u00edndice privado de su batidillo\u201d https:\/\/t.co\/QEvIup4g0u","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":375330011,"id_str":"375330011","name":"Vladimir Rothschuh","screen_name":"VladRothschuh","location":"M\u00e9xico,D.F","url":"http:\/\/www.vladimirrothschuh.com","description":"Periodista","protected":false,"verified":false,"followers_count":8464,"friends_count":8285,"listed_count":24,"favourites_count":80,"statuses_count":105508,"created_at":"Sat Sep 17 23:01:07 +0000 2011","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649741252351668224\/PSfC2E61.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649741252351668224\/PSfC2E61.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651203451653767173\/mmK4Nvjf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651203451653767173\/mmK4Nvjf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375330011\/1430268755","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QEvIup4g0u","expanded_url":"http:\/\/buff.ly\/1NEzR3U","display_url":"buff.ly\/1NEzR3U","indices":[97,120]}],"user_mentions":[{"screen_name":"David_Korenfeld","name":"David Korenfeld","id":96378833,"id_str":"96378833","indices":[19,35]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413405696,"id_str":"663728131413405696","text":"If anyone read mine and Taylor's text. They would think we were weird af\ud83d\ude42","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1163594000,"id_str":"1163594000","name":"cray tay","screen_name":"tayylor04","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":733,"friends_count":355,"listed_count":0,"favourites_count":14675,"statuses_count":9018,"created_at":"Sat Feb 09 17:46:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"5E0BBD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657748199256494080\/Q9q4kW8w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657748199256494080\/Q9q4kW8w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1163594000\/1446564928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"008f15ef5cfd041a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/008f15ef5cfd041a.json","place_type":"city","name":"Greenwood","full_name":"Greenwood, IN","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-86.250640,39.529358],[-86.250640,39.636719],[-86.040001,39.636719],[-86.040001,39.529358]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131426111488,"id_str":"663728131426111488","text":"Acabo de recibir mis estados de cuenta y creo que mi futuro en la prostitucion est\u00e1 cerca \ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1965252368,"id_str":"1965252368","name":"Betto","screen_name":"El_Imprudentee","location":"Gye","url":null,"description":"Mate todo lo humano en Mi para vencer todo lo que me hace da\u00f1o","protected":false,"verified":false,"followers_count":503,"friends_count":984,"listed_count":1,"favourites_count":1041,"statuses_count":8213,"created_at":"Wed Oct 16 17:55:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657424689451651072\/9wMuk-45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657424689451651072\/9wMuk-45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1965252368\/1442116706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092661"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417731072,"id_str":"663728131417731072","text":"@enzocenturion jajaja vos te burlas, pero yo no rindo biologia","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709578333409280,"in_reply_to_status_id_str":"663709578333409280","in_reply_to_user_id":311613852,"in_reply_to_user_id_str":"311613852","in_reply_to_screen_name":"enzocenturion","user":{"id":1177197294,"id_str":"1177197294","name":"E\u264fi Ferreira","screen_name":"EmilseAgustina1","location":"Montecarlos-Misiones","url":"https:\/\/www.facebook.com\/laiisaa.ferreiira?ref=tn_tnmn","description":"Patin-Piano-Violin\n\nSnapp: emi-ferreira1","protected":false,"verified":false,"followers_count":585,"friends_count":539,"listed_count":1,"favourites_count":1714,"statuses_count":7048,"created_at":"Thu Feb 14 00:18:45 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656600580627013632\/RluKzngE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656600580627013632\/RluKzngE.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653733845213253632\/7ynv-fwH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653733845213253632\/7ynv-fwH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177197294\/1445380503","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"enzocenturion","name":"Enzo ","id":311613852,"id_str":"311613852","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438678018,"id_str":"663728131438678018","text":"RT @JazDntGivAFck: This not a way to look good this just that in between style while you on the way to get your hair done. https:\/\/t.co\/bb\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1465825046,"id_str":"1465825046","name":"l . w i l l\u2693\ufe0f","screen_name":"elle_weezyy","location":"Baton Rouge...New Orleans","url":null,"description":"DillardUniversity19 | Volleyball #16","protected":false,"verified":false,"followers_count":966,"friends_count":668,"listed_count":4,"favourites_count":3470,"statuses_count":40575,"created_at":"Tue May 28 22:26:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649953917586046976\/RFkmE6zU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649953917586046976\/RFkmE6zU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1465825046\/1445618018","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:31:20 +0000 2015","id":663634965385445377,"id_str":"663634965385445377","text":"This not a way to look good this just that in between style while you on the way to get your hair done. https:\/\/t.co\/bbW8OUQxtt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266372358,"id_str":"266372358","name":"Jazmine","screen_name":"JazDntGivAFck","location":"HOUSTON","url":null,"description":"I transferred from Los Angeles, your school has no gymnastics team; this is a last resort.","protected":false,"verified":false,"followers_count":6723,"friends_count":1214,"listed_count":92,"favourites_count":267,"statuses_count":166453,"created_at":"Tue Mar 15 03:42:21 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651109155101540353\/HwmlzIxL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651109155101540353\/HwmlzIxL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266372358\/1397905258","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":630882825793871872,"quoted_status_id_str":"630882825793871872","quoted_status":{"created_at":"Mon Aug 10 23:26:01 +0000 2015","id":630882825793871872,"id_str":"630882825793871872","text":"They ALWAYS trying to find new ways for you bald hoes to \"look good\" \ud83d\ude12 http:\/\/t.co\/D1OSv8XElZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2185171381,"id_str":"2185171381","name":"\u2202\u0454\u03b1\u0438\u2202\u044f\u0454","screen_name":"ABlessedSinner","location":null,"url":"http:\/\/instagram.com\/realdrekennedy","description":"THINK DEEP : FUCK DEEPER || XII.II.MCMXCIII || D O N T ||","protected":false,"verified":false,"followers_count":34466,"friends_count":34460,"listed_count":40,"favourites_count":75,"statuses_count":28025,"created_at":"Sat Nov 09 22:48:19 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663636990445813760\/_vPimSzW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663636990445813760\/_vPimSzW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185171381\/1446876723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":630882809624793088,"id_str":"630882809624793088","indices":[71,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CMFYkqKWEAALWdG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMFYkqKWEAALWdG.jpg","url":"http:\/\/t.co\/D1OSv8XElZ","display_url":"pic.twitter.com\/D1OSv8XElZ","expanded_url":"http:\/\/twitter.com\/ABlessedSinner\/status\/630882825793871872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":630882809624793088,"id_str":"630882809624793088","indices":[71,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CMFYkqKWEAALWdG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CMFYkqKWEAALWdG.jpg","url":"http:\/\/t.co\/D1OSv8XElZ","display_url":"pic.twitter.com\/D1OSv8XElZ","expanded_url":"http:\/\/twitter.com\/ABlessedSinner\/status\/630882825793871872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bbW8OUQxtt","expanded_url":"https:\/\/twitter.com\/ablessedsinner\/status\/630882825793871872","display_url":"twitter.com\/ablessedsinner\u2026","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bbW8OUQxtt","expanded_url":"https:\/\/twitter.com\/ablessedsinner\/status\/630882825793871872","display_url":"twitter.com\/ablessedsinner\u2026","indices":[124,140]}],"user_mentions":[{"screen_name":"JazDntGivAFck","name":"Jazmine","id":266372358,"id_str":"266372358","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092664"} +{"delete":{"status":{"id":661778086258737152,"id_str":"661778086258737152","user_id":2177392311,"user_id_str":"2177392311"},"timestamp_ms":"1447080092687"}} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131421794304,"id_str":"663728131421794304","text":"RT @hansuxxx: \uc794\uc778\ud55c \uac74 \uc6b0\uc8fc\ub9cc\uc774 \uc544\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237222102,"id_str":"2237222102","name":"\ud604\uc544","screen_name":"dansssssssss","location":null,"url":null,"description":"d a n s","protected":false,"verified":false,"followers_count":402,"friends_count":47,"listed_count":11,"favourites_count":59,"statuses_count":29593,"created_at":"Mon Dec 09 07:36:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314799107768320\/6lk366gU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314799107768320\/6lk366gU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2237222102\/1445907470","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537659342849,"id_str":"663727537659342849","text":"\uc794\uc778\ud55c \uac74 \uc6b0\uc8fc\ub9cc\uc774 \uc544\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113304085,"id_str":"113304085","name":"\ud55c\uc2a4","screen_name":"hansuxxx","location":null,"url":null,"description":"\uc874\ub098 \uc548 \uc678\ub86d\ub2e4","protected":false,"verified":false,"followers_count":349,"friends_count":377,"listed_count":6,"favourites_count":1092,"statuses_count":3931,"created_at":"Thu Feb 11 09:54:44 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522786919940239360\/DVGAVsLY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522786919940239360\/DVGAVsLY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113304085\/1416926548","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hansuxxx","name":"\ud55c\uc2a4","id":113304085,"id_str":"113304085","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080092660"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417710592,"id_str":"663728131417710592","text":"#LPAAVisa. Resuelto Aviso 12434 del tipo Papeleras y contenedores \/ Ca\u00edda en Calle Bat\u00e1n, 16","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/developer?id=Ayuntamiento+de+Las+Palmas+de+Gran+Canaria\" rel=\"nofollow\"\u003eLPA Avisa\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242050482,"id_str":"2242050482","name":"LPA Avisa","screen_name":"LPAAvisa","location":"Las Palmas de Gran Canaria","url":"http:\/\/www.laspalmasgc.es","description":"LPA Avisa es una App que permite enviar avisos al Ayuntamiento de Las Palmas de Gran Canaria de las anomal\u00edas que encuentre.","protected":false,"verified":false,"followers_count":1117,"friends_count":6,"listed_count":18,"favourites_count":12,"statuses_count":10687,"created_at":"Thu Dec 12 08:51:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658694602053058560\/B4IKqgkg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658694602053058560\/B4IKqgkg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242050482\/1445880023","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LPAAVisa","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417620481,"id_str":"663728131417620481","text":"\u306d\u3080","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3146193263,"id_str":"3146193263","name":"\u3086\u308b\u3075\u308f\u3042\u3086\u3057\u3043","screen_name":"breitenbachgios","location":"\u7b51\u6ce2\u5927\u5b66\u751f\u547d\u74b0\u5883\u5b66\u7fa4\u5730\u7403\u5b66\u985e","url":null,"description":"\u99ff\u53f0\u6d6a\u4eba\u2192\u7b51\u6ce2earth15-1 \u5c06\u6765\u306e\u305f\u3081\u306b\u4eca\u3068\u3044\u3046\u6642\u9593\u3092\u6295\u8cc7\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":96,"friends_count":87,"listed_count":3,"favourites_count":835,"statuses_count":3275,"created_at":"Wed Apr 08 02:21:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643610623356465152\/1UQZ63R6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643610623356465152\/1UQZ63R6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146193263\/1442283705","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131446931456,"id_str":"663728131446931456","text":"\uc6b0\uc69019\ubd84\u315c\u315c\u315c\u315c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115614368,"id_str":"3115614368","name":"\ub07c\ub7ad\uae4c\ub791_OLO_","screen_name":"jdhles6028","location":"\u2665\uc7ac\ud658\uc624\ube60 \ub9c8\uc74c\uc18d\u2665","url":"https:\/\/youtu.be\/KNp9j4rOuBs","description":"\ub108\ubb34 \ub108\ubb34 \uc0ac\ub791\ud574\uc694 \uadf8\ub9ac\uace0 \uc88b\uc544\ud574\uc694@jaehwany0406 \uc120\ud314\u25b6\ub9de\ud314","protected":false,"verified":false,"followers_count":143,"friends_count":921,"listed_count":1,"favourites_count":2409,"statuses_count":5843,"created_at":"Sun Mar 29 15:56:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653154076453048320\/GHTR1Umx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653154076453048320\/GHTR1Umx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115614368\/1446738681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080092666"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131447128064,"id_str":"663728131447128064","text":"T\u0131pk\u0131 been \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/Ulfe5ZoXwp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246375552,"id_str":"246375552","name":"Alturan","screen_name":"elfaltrnn","location":"G\u00fcng\u00f6ren, \u0130stanbul","url":null,"description":"D\u00fcnyalar\u0131 kad\u0131n\u0131n \u00f6n\u00fcne sersen'ke\u015fke \u015fu tarafa serseydin' der.","protected":false,"verified":false,"followers_count":2278,"friends_count":1880,"listed_count":1,"favourites_count":11215,"statuses_count":5716,"created_at":"Wed Feb 02 17:41:14 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151294904\/m3Ea6J0E.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151294904\/m3Ea6J0E.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659916452980514816\/VUktaNvw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659916452980514816\/VUktaNvw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246375552\/1446808757","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663102409556799488,"quoted_status_id_str":"663102409556799488","quoted_status":{"created_at":"Sat Nov 07 21:15:08 +0000 2015","id":663102409556799488,"id_str":"663102409556799488","text":"O\u011eLAK\u2019\u0131n ruh hali; https:\/\/t.co\/IAcHYWkmFs","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2379079607,"id_str":"2379079607","name":"12 Bur\u00e7","screen_name":"12burrc","location":"\u0130leti\u015fim: 12burrc@gmail.com","url":"http:\/\/instagram.com\/12burrc","description":"\u2648 KO\u00c7, \u2649 BO\u011eA, \u264a \u0130K\u0130ZLER, \u264b YENGE\u00c7, \u264c ASLAN, \u264d BA\u015eAK, \u264e TERAZ\u0130, \u264f AKREP, \u2650 YAY, \u2651 O\u011eLAK, \u2652 KOVA, \u2653 BALIK","protected":false,"verified":false,"followers_count":234742,"friends_count":210100,"listed_count":83,"favourites_count":12671,"statuses_count":31438,"created_at":"Mon Mar 03 12:13:01 +0000 2014","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575041469922193408\/od2zOVvh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575041469922193408\/od2zOVvh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2379079607\/1417200602","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663102409036558336,"id_str":"663102409036558336","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPQILRUcAAhNVw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPQILRUcAAhNVw.jpg","url":"https:\/\/t.co\/IAcHYWkmFs","display_url":"pic.twitter.com\/IAcHYWkmFs","expanded_url":"http:\/\/twitter.com\/12burrc\/status\/663102409556799488\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":329,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":329,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663102409036558336,"id_str":"663102409036558336","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPQILRUcAAhNVw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPQILRUcAAhNVw.jpg","url":"https:\/\/t.co\/IAcHYWkmFs","display_url":"pic.twitter.com\/IAcHYWkmFs","expanded_url":"http:\/\/twitter.com\/12burrc\/status\/663102409556799488\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":329,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":329,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ulfe5ZoXwp","expanded_url":"https:\/\/twitter.com\/12burrc\/status\/663102409556799488","display_url":"twitter.com\/12burrc\/status\u2026","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080092666"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430305792,"id_str":"663728131430305792","text":"@MyNorland \u043e\u043a, \u0432\u0441\u0442\u0440\u0435\u0442\u0438\u043c\u0441\u044f \u043d\u0430 \u0448\u043a \u0438 \u043b\u0430\u043f\u0430\u043d\u0443 :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726630888726528,"in_reply_to_status_id_str":"663726630888726528","in_reply_to_user_id":1578412999,"in_reply_to_user_id_str":"1578412999","in_reply_to_screen_name":"MyNorland","user":{"id":3184842934,"id_str":"3184842934","name":"\u0430\u043b\u043e \u0430\u043b\u043e \u044d\u0442\u043e \u0431\u0440\u0430\u0439\u043d\u00bf","screen_name":"ssuffocationn","location":"\u0434\u0443\u0448\u043e\u0439 \u0432 \u0434\u0435\u0442\u0440\u043e\u0439\u0442\u0435 \u0436\u043e\u043f\u043e\u0439 \u0432 \u0440\u0430\u0448\u043a\u0435","url":null,"description":"\u043c\u0435\u043d\u044f\u044e \u043e\u0444\u043e\u0440\u043c\u0443 \u0447\u0430\u0449\u0435, \u0447\u0435\u043c \u0442\u044b \u0434\u044b\u0448\u0438\u0448\u044c","protected":false,"verified":false,"followers_count":359,"friends_count":90,"listed_count":1,"favourites_count":17,"statuses_count":5137,"created_at":"Sun Apr 19 21:31:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663096783376093184\/33ugiEqf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663096783376093184\/33ugiEqf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184842934\/1446929670","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MyNorland","name":"\u2020\u041b\u0430\u0432\u0440 \u0432 Ukraine\u2020","id":1578412999,"id_str":"1578412999","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430223873,"id_str":"663728131430223873","text":"@sz_hnt \u304a\u75b2\u308c\u69d8\uff01\u3086\u3063\u304f\u308a\u4f11\u3093\u3067\u306d\uff01\uff01\n\u305d\u3057\u3066\u4f53\u3092\u51b7\u3084\u3055\u306a\u3044\u3088\u3046\u306b\ud83d\ude0c(\u304a\u304b\u3093\u304b)\n\u30b9\u30fc\u30d7\u30c0\u30a4\u30a8\u30c3\u30c8\u304c\u3093\u3070\u308c\uff01\uff01\n\u304a\u3084\u3059\u307f\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727767209402370,"in_reply_to_status_id_str":"663727767209402370","in_reply_to_user_id":3003705403,"in_reply_to_user_id_str":"3003705403","in_reply_to_screen_name":"sz_hnt","user":{"id":3275592164,"id_str":"3275592164","name":"\u304b\u308c\u3093\u304b\u2020\u30d7\u30c6\u30a3\u30d1\u304c\u3059\u3057\u2020","screen_name":"karenka_id","location":null,"url":null,"description":"\u4e3b\u306b\u65e5\u5411\u3059\u305a\u306a\u65e5\u5e38\u270c\ufe0e\u30a2\u30a4\u30c9\u30eb\u3001\u30b2\u30fc\u30e0(\u30da\u30eb\u30bd\u30ca\u611b)\u3001\u97f3\u697d\u3001\u5973\u306e\u5b50\u3001\u30a2\u30cb\u30e1\u3068\u304b\u597d\u304d\u3067\u3059\u270c\ufe0e\u3059\u305a\u3061\u3083\u3093(\u672c\u547d)\u3053\u3053\u308d\u3061\u3083\u3093,\u306e\u305e\u307f\u3061\u3083\u3093(-petit pas!-)\u307e\u3057\u308d\u3061\u3083\u3093(\u305c\u3093\u3076\u541b\u306e\u305b\u3044\u3060\u3002)\u203b\u53d7\u9a13\u751f\u3067\u3082\u30e9\u30a4\u30d6\u306b\u884c\u304d\u305f\u3044","protected":false,"verified":false,"followers_count":26,"friends_count":75,"listed_count":0,"favourites_count":502,"statuses_count":326,"created_at":"Sat Jul 11 10:02:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620553891042562048\/q1OsgOZL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620553891042562048\/q1OsgOZL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3275592164\/1445243073","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sz_hnt","name":"\u65e5\u5411\u3059\u305a\u677eY\u306d\u304e\u3061\u3083\u3093","id":3003705403,"id_str":"3003705403","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442761729,"id_str":"663728131442761729","text":"RT @OhhWanBento: HAHAHAHAHAHAHA HILANG FOKUS NAK MEMANDU \ud83d\ude02 https:\/\/t.co\/YsGCoITA73","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1440727010,"id_str":"1440727010","name":"anis","screen_name":"anishanips","location":null,"url":null,"description":"im good at waiting","protected":false,"verified":false,"followers_count":621,"friends_count":392,"listed_count":0,"favourites_count":1288,"statuses_count":12117,"created_at":"Sun May 19 09:37:47 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452657393076142081\/2DwLfuMJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452657393076142081\/2DwLfuMJ.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661157345733406720\/jnnVta3G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661157345733406720\/jnnVta3G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1440727010\/1441288035","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:58:54 +0000 2015","id":663355012093902848,"id_str":"663355012093902848","text":"HAHAHAHAHAHAHA HILANG FOKUS NAK MEMANDU \ud83d\ude02 https:\/\/t.co\/YsGCoITA73","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":462182532,"id_str":"462182532","name":"Penghidap Talesmia","screen_name":"OhhWanBento","location":null,"url":"http:\/\/www.AnakGaul.com","description":"Gendang gendut tali kecapi, Kenyang perut suka hati.","protected":false,"verified":false,"followers_count":1638,"friends_count":455,"listed_count":15,"favourites_count":5131,"statuses_count":260978,"created_at":"Thu Jan 12 17:21:21 +0000 2012","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663356878743695361\/qapyEFbe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663356878743695361\/qapyEFbe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/462182532\/1446184324","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3938,"favorite_count":1067,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663355011993198592,"id_str":"663355011993198592","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","url":"https:\/\/t.co\/YsGCoITA73","display_url":"pic.twitter.com\/YsGCoITA73","expanded_url":"http:\/\/twitter.com\/OhhWanBento\/status\/663355012093902848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":564,"h":621,"resize":"fit"},"medium":{"w":564,"h":621,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663355011993198592,"id_str":"663355011993198592","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","url":"https:\/\/t.co\/YsGCoITA73","display_url":"pic.twitter.com\/YsGCoITA73","expanded_url":"http:\/\/twitter.com\/OhhWanBento\/status\/663355012093902848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":564,"h":621,"resize":"fit"},"medium":{"w":564,"h":621,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OhhWanBento","name":"Penghidap Talesmia","id":462182532,"id_str":"462182532","indices":[3,15]}],"symbols":[],"media":[{"id":663355011993198592,"id_str":"663355011993198592","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","url":"https:\/\/t.co\/YsGCoITA73","display_url":"pic.twitter.com\/YsGCoITA73","expanded_url":"http:\/\/twitter.com\/OhhWanBento\/status\/663355012093902848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":564,"h":621,"resize":"fit"},"medium":{"w":564,"h":621,"resize":"fit"}},"source_status_id":663355012093902848,"source_status_id_str":"663355012093902848","source_user_id":462182532,"source_user_id_str":"462182532"}]},"extended_entities":{"media":[{"id":663355011993198592,"id_str":"663355011993198592","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS13mnUYAAI7LY.jpg","url":"https:\/\/t.co\/YsGCoITA73","display_url":"pic.twitter.com\/YsGCoITA73","expanded_url":"http:\/\/twitter.com\/OhhWanBento\/status\/663355012093902848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":374,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":564,"h":621,"resize":"fit"},"medium":{"w":564,"h":621,"resize":"fit"}},"source_status_id":663355012093902848,"source_status_id_str":"663355012093902848","source_user_id":462182532,"source_user_id_str":"462182532"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417710593,"id_str":"663728131417710593","text":"RT @Emre_CAYIRLI: #USDTRY d\u00fc\u015f\u00fc\u015f kanal\u0131 k\u0131r\u0131ld\u0131, 2.93 \u00fczerinde bayrak formasyonu da k\u0131r\u0131labilir. 3.00 e y\u00f6nelim g\u00f6rebiliriz... https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051081340,"id_str":"3051081340","name":"Patron","screen_name":"Patronbenim09","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":157,"friends_count":460,"listed_count":6,"favourites_count":63,"statuses_count":6105,"created_at":"Sat Feb 21 23:03:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569282045965504512\/bMPC6Rk9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569282045965504512\/bMPC6Rk9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051081340\/1425817099","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:57:59 +0000 2015","id":663626573657034752,"id_str":"663626573657034752","text":"#USDTRY d\u00fc\u015f\u00fc\u015f kanal\u0131 k\u0131r\u0131ld\u0131, 2.93 \u00fczerinde bayrak formasyonu da k\u0131r\u0131labilir. 3.00 e y\u00f6nelim g\u00f6rebiliriz... https:\/\/t.co\/3e32K9ZIcv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1135103516,"id_str":"1135103516","name":"Emre \u00c7AYIRLI","screen_name":"Emre_CAYIRLI","location":"\u0130ntegral Forex Ar\u015f.Uzm.","url":null,"description":"\u0130nsan m\u0131 paraya ba\u011fl\u0131, para m\u0131 insana ba\u011fl\u0131?","protected":false,"verified":false,"followers_count":653,"friends_count":350,"listed_count":13,"favourites_count":843,"statuses_count":1214,"created_at":"Wed Jan 30 20:16:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545867637972942848\/uz94-9K8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545867637972942848\/uz94-9K8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1135103516\/1398241902","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"entities":{"hashtags":[{"text":"USDTRY","indices":[0,7]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663626572499324928,"id_str":"663626572499324928","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","url":"https:\/\/t.co\/3e32K9ZIcv","display_url":"pic.twitter.com\/3e32K9ZIcv","expanded_url":"http:\/\/twitter.com\/Emre_CAYIRLI\/status\/663626573657034752\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":559,"resize":"fit"},"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663626572499324928,"id_str":"663626572499324928","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","url":"https:\/\/t.co\/3e32K9ZIcv","display_url":"pic.twitter.com\/3e32K9ZIcv","expanded_url":"http:\/\/twitter.com\/Emre_CAYIRLI\/status\/663626573657034752\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":559,"resize":"fit"},"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"USDTRY","indices":[18,25]}],"urls":[],"user_mentions":[{"screen_name":"Emre_CAYIRLI","name":"Emre \u00c7AYIRLI","id":1135103516,"id_str":"1135103516","indices":[3,16]}],"symbols":[],"media":[{"id":663626572499324928,"id_str":"663626572499324928","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","url":"https:\/\/t.co\/3e32K9ZIcv","display_url":"pic.twitter.com\/3e32K9ZIcv","expanded_url":"http:\/\/twitter.com\/Emre_CAYIRLI\/status\/663626573657034752\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":559,"resize":"fit"},"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663626573657034752,"source_status_id_str":"663626573657034752","source_user_id":1135103516,"source_user_id_str":"1135103516"}]},"extended_entities":{"media":[{"id":663626572499324928,"id_str":"663626572499324928","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWs2gVVEAALcMI.png","url":"https:\/\/t.co\/3e32K9ZIcv","display_url":"pic.twitter.com\/3e32K9ZIcv","expanded_url":"http:\/\/twitter.com\/Emre_CAYIRLI\/status\/663626573657034752\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":559,"resize":"fit"},"small":{"w":340,"h":185,"resize":"fit"},"medium":{"w":600,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663626573657034752,"source_status_id_str":"663626573657034752","source_user_id":1135103516,"source_user_id_str":"1135103516"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442802688,"id_str":"663728131442802688","text":"@BtsTouko \n\n\u5168\u7136\u3044\u3044\u3088\uff01\uff01\uff01\u6c17\u306b\u3057\u306a\u3044\u3067\ud83d\ude28","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663592515707080704,"in_reply_to_status_id_str":"663592515707080704","in_reply_to_user_id":3139982941,"in_reply_to_user_id_str":"3139982941","in_reply_to_screen_name":"BtsTouko","user":{"id":2885979780,"id_str":"2885979780","name":"MINYEOL","screen_name":"25Mnyl","location":null,"url":null,"description":"\u81ea\u5df1\u6e80\u3002 \u4f11\u307f\u306e\u65e5\u306f\u30ea\u30d7\u8fd4\u305b\u307e\u3059","protected":false,"verified":false,"followers_count":3472,"friends_count":172,"listed_count":63,"favourites_count":3920,"statuses_count":20813,"created_at":"Sat Nov 01 08:29:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652518128090394625\/qyFncU7P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652518128090394625\/qyFncU7P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885979780\/1446631386","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BtsTouko","name":"\u3050\u3045\u3061\u3083\u3093","id":3139982941,"id_str":"3139982941","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417620480,"id_str":"663728131417620480","text":"@prettyponiesz same :')","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703181285699586,"in_reply_to_status_id_str":"663703181285699586","in_reply_to_user_id":633513169,"in_reply_to_user_id_str":"633513169","in_reply_to_screen_name":"prettyponiesz","user":{"id":2785037606,"id_str":"2785037606","name":"cherlyn","screen_name":"cherlyntbfh","location":"here and there","url":null,"description":"sometimes i have far too much to say. other times i have nothing to say at all.","protected":false,"verified":false,"followers_count":72,"friends_count":70,"listed_count":0,"favourites_count":3087,"statuses_count":2977,"created_at":"Tue Sep 02 02:05:55 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"423D42","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661388054267998209\/lq-KgsZy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661388054267998209\/lq-KgsZy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2785037606\/1446646582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"prettyponiesz","name":"Cherrylouise","id":633513169,"id_str":"633513169","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438571522,"id_str":"663728131438571522","text":"@poyochan215 \n\n\u3042\u3044\u3064\u5b66\u6821\u3044\u3063\u3066\u308b\u3093\u3084\u7206\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728070302429185,"in_reply_to_status_id_str":"663728070302429185","in_reply_to_user_id":3054448764,"in_reply_to_user_id_str":"3054448764","in_reply_to_screen_name":"poyochan215","user":{"id":2949946309,"id_str":"2949946309","name":"chin","screen_name":"makichin_tooi","location":"\u8328\u6728","url":null,"description":"\u5e78\u305b\u3063\u3066\u306a\u306b\uff1f","protected":false,"verified":false,"followers_count":155,"friends_count":147,"listed_count":0,"favourites_count":1181,"statuses_count":3905,"created_at":"Mon Dec 29 10:50:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662108132647112704\/qRltxBFQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662108132647112704\/qRltxBFQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949946309\/1446413020","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"poyochan215","name":"saopoyo","id":3054448764,"id_str":"3054448764","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092664"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413446656,"id_str":"663728131413446656","text":"\u304a\u3084\u3059\u307f(*_*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384636013,"id_str":"384636013","name":"\u304a\u30ea\u30f3","screen_name":"RIIiN66","location":null,"url":null,"description":"\u304a\u30ea\u30f3\u3067\u3059 \u30c9\u30b5\u30f3\u30b3\u30ea\u30cb\u30b9\u30bf\u306f\u9759\u304b\u306a\u30cf\u30a4\u3067\u7720\u308c\u306a\u3044","protected":false,"verified":false,"followers_count":686,"friends_count":638,"listed_count":10,"favourites_count":7628,"statuses_count":80567,"created_at":"Tue Oct 04 01:45:59 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657535333295194112\/vN1ar49y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657535333295194112\/vN1ar49y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384636013\/1437974560","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131421962240,"id_str":"663728131421962240","text":"RT @SENIAT_Oficial: Los comprobantes del RIF que cada contribuyente imprima se encuentran validados autom\u00e1ticamente.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226163379,"id_str":"226163379","name":"LuidomiRNO","screen_name":"luidomi","location":null,"url":null,"description":"#YoFirmoPorLaPaz @seniatnor","protected":false,"verified":false,"followers_count":79,"friends_count":14,"listed_count":8,"favourites_count":3,"statuses_count":5101,"created_at":"Mon Dec 13 13:44:54 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623567227380461569\/DVn3lIcF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623567227380461569\/DVn3lIcF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226163379\/1437504969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:56:42 +0000 2015","id":663716846441467904,"id_str":"663716846441467904","text":"Los comprobantes del RIF que cada contribuyente imprima se encuentran validados autom\u00e1ticamente.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140886484,"id_str":"140886484","name":"SENIAT","screen_name":"SENIAT_Oficial","location":"Venezuela","url":"http:\/\/www.seniat.gob.ve","description":"Servicio Nacional Integrado de Administraci\u00f3n Aduanera y Tributaria","protected":false,"verified":false,"followers_count":156443,"friends_count":282,"listed_count":635,"favourites_count":890,"statuses_count":52981,"created_at":"Thu May 06 16:26:55 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631453920649416704\/aM81wYCw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631453920649416704\/aM81wYCw.jpg","profile_background_tile":false,"profile_link_color":"B10B0B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636189084029988864\/rMffpBge_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636189084029988864\/rMffpBge_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140886484\/1439385393","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"043383f8b2b79918","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/043383f8b2b79918.json","place_type":"country","name":"Venezuela","full_name":"Venezuela","country_code":"VE","country":"Venezuela","bounding_box":{"type":"Polygon","coordinates":[[[-73.354073,0.648837],[-73.354073,12.196802],[-59.803780,12.196802],[-59.803780,0.648837]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":103,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SENIAT_Oficial","name":"SENIAT","id":140886484,"id_str":"140886484","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092660"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413426176,"id_str":"663728131413426176","text":"@OurGypsyCamp Maybe it's a secret ad campaign genius idea like @OutNmbrdByBoys says. \ud83d\ude09 #conspiracytheory","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724398336151556,"in_reply_to_status_id_str":"663724398336151556","in_reply_to_user_id":336911668,"in_reply_to_user_id_str":"336911668","in_reply_to_screen_name":"OurGypsyCamp","user":{"id":2524264328,"id_str":"2524264328","name":"Katy Starfish","screen_name":"hopefulstarfish","location":"Black Sheep Farm, Ohio","url":"http:\/\/thehopefulstarfish.blogspot.com","description":"Things I should just text my sister. Wife|Mom|Nurse|Friend. My love is fierce, my ways inscrutable. Not as na\u00efve as I seem.","protected":false,"verified":false,"followers_count":173,"friends_count":249,"listed_count":9,"favourites_count":17027,"statuses_count":8686,"created_at":"Mon May 26 06:03:54 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646515610717827074\/UQvsRebc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646515610717827074\/UQvsRebc.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655941395526500352\/KRwRnFqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655941395526500352\/KRwRnFqy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2524264328\/1445223590","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"conspiracytheory","indices":[87,104]}],"urls":[],"user_mentions":[{"screen_name":"OurGypsyCamp","name":"martha","id":336911668,"id_str":"336911668","indices":[0,13]},{"screen_name":"OutNmbrdByBoys","name":"He Makes Me Laugh","id":1480580348,"id_str":"1480580348","indices":[63,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442806788,"id_str":"663728131442806788","text":"\u307f\u3093\u306a\u304b\u3089\u306e\u30b9\u30da\u8a9eLINE\u304c\u3059\u3054\u3044\u3067\u3059\u3002\u7b11","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961223330,"id_str":"961223330","name":"\u5742\u672c\u5927\u5144\u738b","screen_name":"keith_1108","location":"\u6a2a\u6d5c","url":null,"description":"\u8c4a\u7530\u2192KN38HR \u82f1\u8a9e\u30b3\u30fc\u30b9\u2192MGU \u56fd\u969b\u30ad\u30e3\u30ea\u30a2 Scuba Diving : A PORT OF CALL\/Billiards\/ONE OK ROCK\/FPS\/Werewolf\/\u30d8\u30a2\u30bb\u30c3\u30c8\/OCEAN TOKYO\/AKROS","protected":false,"verified":false,"followers_count":331,"friends_count":354,"listed_count":2,"favourites_count":1756,"statuses_count":10686,"created_at":"Tue Nov 20 21:13:13 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661944757216632832\/WogMMTHW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661944757216632832\/WogMMTHW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961223330\/1439132206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442802689,"id_str":"663728131442802689","text":"Kalo om wonho baca tweet tadi pasti langsung ngambek \ud83d\ude1b\ud83d\ude1c susah punya kapel yg punya jiwa sasaeng pens cem dia \ud83d\ude02\ud83d\ude0d\ud83d\ude18","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":764991661,"id_str":"764991661","name":"Lican.","screen_name":"Yeojaaax_","location":"Om Wonho's..\u2661 ","url":null,"description":"Hello Leader & Main Vocalist CLC Oh Seunghee here!\u270c \u2022 95'L \u2022\n\n#OKingdom #CUBEIntlFams #APINKFAMSQ #ARMYSQ #APINKEUSQ #PCRSQ #Banjar #CUBENTSQ #ArmyDope","protected":false,"verified":false,"followers_count":2939,"friends_count":2649,"listed_count":1,"favourites_count":452,"statuses_count":61625,"created_at":"Sat Aug 18 03:36:14 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000152798329\/7tJI3UhN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000152798329\/7tJI3UhN.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662461294935543808\/55ximy9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662461294935543808\/55ximy9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/764991661\/1446768650","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430342656,"id_str":"663728131430342656","text":"@WaladMahawi \u0627\u0643\u064a\u062f \u0631\u0627\u062d \u0627\u062e\u062a\u0627\u0631 \u0634\u0647\u062f \u0627\u0644\u0642\u062d\u0628\u0629","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719053350055936,"in_reply_to_status_id_str":"663719053350055936","in_reply_to_user_id":434475815,"in_reply_to_user_id_str":"434475815","in_reply_to_screen_name":"WaladMahawi","user":{"id":1062729751,"id_str":"1062729751","name":"black cock","screen_name":"Dj_Lil_SNAKE","location":null,"url":null,"description":".","protected":false,"verified":false,"followers_count":827,"friends_count":167,"listed_count":0,"favourites_count":514,"statuses_count":50,"created_at":"Sat Jan 05 10:49:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661787799801188352\/EPYvqb_t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661787799801188352\/EPYvqb_t_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WaladMahawi","name":"\u0648\u0644\u062f \u0645\u0647\u0627\u0648\u064a","id":434475815,"id_str":"434475815","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438571520,"id_str":"663728131438571520","text":"never want to lose @kaleigh_jordan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719957918822400,"in_reply_to_status_id_str":"663719957918822400","in_reply_to_user_id":338484320,"in_reply_to_user_id_str":"338484320","in_reply_to_screen_name":"kaleigh_jordan","user":{"id":1439168694,"id_str":"1439168694","name":"T-ricia\u2661","screen_name":"tricc07","location":null,"url":null,"description":"Noone will have my heart the way he does @z_summ \u202207-30-13\u2022 |senior\u2661|","protected":false,"verified":false,"followers_count":352,"friends_count":262,"listed_count":0,"favourites_count":5004,"statuses_count":5846,"created_at":"Sat May 18 19:07:46 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614153013461057536\/FubJZ7p5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614153013461057536\/FubJZ7p5.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564853659856896\/dwQUShxH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564853659856896\/dwQUShxH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1439168694\/1445908267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaleigh_jordan","name":"Kales","id":338484320,"id_str":"338484320","indices":[19,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092664"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131446996992,"id_str":"663728131446996992","text":"@djpmxyy1115 \u4ffa\u3082\u30cf\u30fc\u30c7\u30b9\u3042\u305f\u308a\u3084\u3063\u3066\u307f\u3088\u3046\u304b\u306a\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727996503638016,"in_reply_to_status_id_str":"663727996503638016","in_reply_to_user_id":2858601445,"in_reply_to_user_id_str":"2858601445","in_reply_to_screen_name":"djpmxyy1115","user":{"id":2898881419,"id_str":"2898881419","name":"\u5e73\u8cc0\u7adc\u4e5f","screen_name":"ryuyasakusin","location":null,"url":null,"description":"\u4f5c\u65b0\u5b66\u9662#1 \u30bb\u30c3\u30bf\u30fc \u5e73\u6210\u56fd\u969b\u5927#25","protected":false,"verified":false,"followers_count":446,"friends_count":413,"listed_count":0,"favourites_count":1321,"statuses_count":2402,"created_at":"Fri Nov 14 00:04:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629715040547962880\/qHdQKpgh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629715040547962880\/qHdQKpgh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2898881419\/1436967704","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"djpmxyy1115","name":"\u5c71\u7530\u30d6\u30c3\u30d5\u30a1\u30ed\u30fc\u30de\u30b8\u30c3\u30af","id":2858601445,"id_str":"2858601445","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092666"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131421810688,"id_str":"663728131421810688","text":"@lecona_ as\u00ed se deber\u00eda de terminar siempre!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663560906173886466,"in_reply_to_status_id_str":"663560906173886466","in_reply_to_user_id":350608324,"in_reply_to_user_id_str":"350608324","in_reply_to_screen_name":"lecona_","user":{"id":2814140658,"id_str":"2814140658","name":"Leonardo","screen_name":"leus_dex87","location":null,"url":null,"description":"Abogado de profesi\u00f3n. Trancer por convicci\u00f3n","protected":false,"verified":false,"followers_count":147,"friends_count":622,"listed_count":1,"favourites_count":333,"statuses_count":619,"created_at":"Wed Sep 17 04:01:40 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658648224769576965\/zAL9A7Od_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658648224769576965\/zAL9A7Od_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2814140658\/1445837764","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lecona_","name":"Karla","id":350608324,"id_str":"350608324","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080092660"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131426029569,"id_str":"663728131426029569","text":"RT @back_numberBOT0: \u4f1a\u3044\u305f\u3044\u3068\u601d\u3046\u56de\u6570\u304c\n\n\u4f1a\u3048\u306a\u3044\u3068\u75db\u3044\u3053\u306e\u80f8\u304c\n\n\u541b\u306e\u4e8b\u3069\u3046\u601d\u3046\u304b\u6559\u3048\u3088\u3046\u3068\u3057\u3066\u308b\n\n\u3044\u3044\u3088 \u305d\u3093\u306a\u4e8b\u81ea\u5206\u3067\u5206\u304b\u3063\u3066\u308b\u3088\n\n\u30b5\u30f3\u30bf\u3068\u3084\u3089\u306b\u983c\u3093\u3067\u3082\n\n\u4ed5\u65b9\u306a\u3044\u3088\u306a\u3041\n\n\u3010\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0\u3011\n\n#backnumber\u597d\u304d\u306a\u4ebaRT http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3904058114,"id_str":"3904058114","name":"\u307e\u3069\u304b","screen_name":"niji_jasuminn","location":null,"url":null,"description":"\u7d2b\u6fc3\u3044\u3081\u306e\u8679\u8272\u30b8\u30e3\u30b9\u6c11\u2661\u7121\u8a00follow\u25ce\u6c17\u4ed8\u3051\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u266c*\u309c\u7121\u8a00follow\u3057\u3061\u3083\u3044\u307e\u3059(^\u03c9^;)\u6fc3\u304f\u7d61\u3081\u308b\u4ebaLINE\u4ea4\u63dbOK(\u0942 \u2022\u03c9\u2022\u0942\u3000)\u2661.\u25e6\n\u30b8\u30e3\u30b9\u6c11\u3001\u30b8\u30e3\u30b9\u30e1\u30f3(\u3064`\uff65\u03c9\uff65\u00b4)\u3063\uff75\uff72\uff83\uff9e\u266a \u203b\u30d5\u30a9\u30ed\u30d0\u306a\u3044\u5834\u5408\u306f\u30ea\u30e0\u308a\u307e\u3059\u3002\u3042\u3068\u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u305b\u3093\u3067\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":423,"friends_count":416,"listed_count":0,"favourites_count":1228,"statuses_count":2271,"created_at":"Thu Oct 15 15:30:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654681456770334721\/m0j1x20c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654681456770334721\/m0j1x20c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3904058114\/1446297021","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:30 +0000 2015","id":663701949347311616,"id_str":"663701949347311616","text":"\u4f1a\u3044\u305f\u3044\u3068\u601d\u3046\u56de\u6570\u304c\n\n\u4f1a\u3048\u306a\u3044\u3068\u75db\u3044\u3053\u306e\u80f8\u304c\n\n\u541b\u306e\u4e8b\u3069\u3046\u601d\u3046\u304b\u6559\u3048\u3088\u3046\u3068\u3057\u3066\u308b\n\n\u3044\u3044\u3088 \u305d\u3093\u306a\u4e8b\u81ea\u5206\u3067\u5206\u304b\u3063\u3066\u308b\u3088\n\n\u30b5\u30f3\u30bf\u3068\u3084\u3089\u306b\u983c\u3093\u3067\u3082\n\n\u4ed5\u65b9\u306a\u3044\u3088\u306a\u3041\n\n\u3010\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0\u3011\n\n#backnumber\u597d\u304d\u306a\u4ebaRT https:\/\/t.co\/Pkz8mdvMyJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835596449,"id_str":"2835596449","name":"back number","screen_name":"back_numberBOT0","location":"YouTube\u2192","url":"http:\/\/u111u.info\/m4Yz","description":"\u3010backnumber\u3011\u306e\u6b4c\u8a5e\u3092\u7d39\u4ecb\u3059\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002backnumber\u597d\u304d\u306a\u4eba\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u2605\u597d\u304d\u306a\u6b4c\u8a5e\u306fRT\u3057\u3066\u4e0b\u3055\u3044\u306d\uff01Instagram\u21d2back_number_bot\/ YouTube\u3067\u4f9d\u4e0e\u540f\u3055\u3093\u306e\u8a00\u8449\u3092\u6295\u7a3f\u3057\u3066\u307e\u3059\u203c\ufe0e","protected":false,"verified":false,"followers_count":42940,"friends_count":7937,"listed_count":33,"favourites_count":34,"statuses_count":1498,"created_at":"Mon Sep 29 14:12:02 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652492789037400065\/QGqIfyNp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652492789037400065\/QGqIfyNp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835596449\/1412000824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2392,"favorite_count":3865,"entities":{"hashtags":[{"text":"backnumber\u597d\u304d\u306a\u4ebaRT","indices":[96,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660424360931360768,"id_str":"660424360931360768","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","url":"https:\/\/t.co\/Pkz8mdvMyJ","display_url":"pic.twitter.com\/Pkz8mdvMyJ","expanded_url":"http:\/\/twitter.com\/back_numberBOT0\/status\/660424696169533440\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":660424696169533440,"source_status_id_str":"660424696169533440","source_user_id":2835596449,"source_user_id_str":"2835596449"}]},"extended_entities":{"media":[{"id":660424360931360768,"id_str":"660424360931360768","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","url":"https:\/\/t.co\/Pkz8mdvMyJ","display_url":"pic.twitter.com\/Pkz8mdvMyJ","expanded_url":"http:\/\/twitter.com\/back_numberBOT0\/status\/660424696169533440\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":660424696169533440,"source_status_id_str":"660424696169533440","source_user_id":2835596449,"source_user_id_str":"2835596449","video_info":{"aspect_ratio":[16,9],"duration_millis":24992,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/pl\/M1LvhUQzMrKPbXhn.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/320x180\/tB1xpc7204zdU3eM.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/1280x720\/b2leza_TI6dyRuvP.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/640x360\/M1jlt4x736Hk4ufE.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/pl\/M1LvhUQzMrKPbXhn.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/640x360\/M1jlt4x736Hk4ufE.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"backnumber\u597d\u304d\u306a\u4ebaRT","indices":[117,134]}],"urls":[],"user_mentions":[{"screen_name":"back_numberBOT0","name":"back number","id":2835596449,"id_str":"2835596449","indices":[3,19]}],"symbols":[],"media":[{"id":660424360931360768,"id_str":"660424360931360768","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","url":"https:\/\/t.co\/Pkz8mdvMyJ","display_url":"pic.twitter.com\/Pkz8mdvMyJ","expanded_url":"http:\/\/twitter.com\/back_numberBOT0\/status\/660424696169533440\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":660424696169533440,"source_status_id_str":"660424696169533440","source_user_id":2835596449,"source_user_id_str":"2835596449"}]},"extended_entities":{"media":[{"id":660424360931360768,"id_str":"660424360931360768","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/660424360931360768\/pu\/img\/RkPrOYxo-gqJFqW2.jpg","url":"https:\/\/t.co\/Pkz8mdvMyJ","display_url":"pic.twitter.com\/Pkz8mdvMyJ","expanded_url":"http:\/\/twitter.com\/back_numberBOT0\/status\/660424696169533440\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":660424696169533440,"source_status_id_str":"660424696169533440","source_user_id":2835596449,"source_user_id_str":"2835596449","video_info":{"aspect_ratio":[16,9],"duration_millis":24992,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/pl\/M1LvhUQzMrKPbXhn.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/320x180\/tB1xpc7204zdU3eM.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/1280x720\/b2leza_TI6dyRuvP.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/640x360\/M1jlt4x736Hk4ufE.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/pl\/M1LvhUQzMrKPbXhn.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/660424360931360768\/pu\/vid\/640x360\/M1jlt4x736Hk4ufE.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092661"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131434409984,"id_str":"663728131434409984","text":"RT @ghasaq__: Apa moment yang paling bermakna sekali bagi seorang anak?\n\n\"Dapat gelak sama-sama dengan ayah\".\n\nSumpah mahal.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":923016374,"id_str":"923016374","name":"Hakim","screen_name":"luqmanshakims","location":null,"url":"http:\/\/instagram.com\/luqmanshakims","description":"thug life","protected":false,"verified":false,"followers_count":986,"friends_count":202,"listed_count":0,"favourites_count":5303,"statuses_count":9707,"created_at":"Sat Nov 03 11:31:42 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662303394363633665\/yDU4PSpq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662303394363633665\/yDU4PSpq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/923016374\/1447032731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 15 14:15:37 +0000 2015","id":643790274250993665,"id_str":"643790274250993665","text":"Apa moment yang paling bermakna sekali bagi seorang anak?\n\n\"Dapat gelak sama-sama dengan ayah\".\n\nSumpah mahal.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":951745189,"id_str":"951745189","name":"PU Pepejal.","screen_name":"ghasaq__","location":"al-Ardh. Kesultanan Al-Hege","url":"http:\/\/ask.fm\/faizaldaus","description":"hamba. muslimin. mujahid. espiyem.","protected":false,"verified":false,"followers_count":5036,"friends_count":274,"listed_count":3,"favourites_count":631,"statuses_count":31269,"created_at":"Fri Nov 16 13:55:32 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5EAA1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563753574153216001\/EkMwClUW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563753574153216001\/EkMwClUW.jpeg","profile_background_tile":true,"profile_link_color":"088058","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663631871620739072\/3ehgn6Nl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663631871620739072\/3ehgn6Nl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/951745189\/1447045293","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6160,"favorite_count":1942,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ghasaq__","name":"PU Pepejal.","id":951745189,"id_str":"951745189","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080092663"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131446968320,"id_str":"663728131446968320","text":"\u304a\u3063\u3057\u3083\u307e\u307e\u306b\u3082\u5e74\u8cc0\u72b6\u63cf\u3053\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241015335,"id_str":"241015335","name":"\u3044\u3064\u304b\u3089\u767d\u84ee\u3068\u932f\u899a\u3057\u3066\u3044\u305f\uff1f","screen_name":"hakurenren","location":null,"url":"http:\/\/twpf.jp\/hakurenren","description":"\uff3c\uff3c\u30cf\u30c3\u30d4\u30fc\u30cf\u30ed\u30a6\u30a3\u30f3\uff01\u30cf\u30c3\u30d4\u30fc\u30f4\u30a3\u30e9\u30f3\u30ba\uff01\uff0f\uff0f \u30d2\u30fc\u30ed\u30fc\u8ffd\u3044\u304b\u3051\u3066\u305f\u308a\u3057\u3066\u308b\u4eba 20\u2191 Web\u53c2\u7167 \u898f\u5236\u57a2\u2192@hakuren_2 \u5199\u771f\u57a2\u2192@hakuren_photo \u88cf\u57a2\u2192@hakuren_0w0","protected":false,"verified":false,"followers_count":1144,"friends_count":1046,"listed_count":39,"favourites_count":18541,"statuses_count":196094,"created_at":"Fri Jan 21 07:29:31 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576947668\/211.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576947668\/211.gif","profile_background_tile":true,"profile_link_color":"779FDB","profile_sidebar_border_color":"779FDB","profile_sidebar_fill_color":"CCFFFF","profile_text_color":"194B61","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660843909686296576\/wom8-dQZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660843909686296576\/wom8-dQZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241015335\/1437873799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092666"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131430154240,"id_str":"663728131430154240","text":"\uc724\ud788\ub2d8\uc785\ub355\ud55c\uac74\uac00\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253705460,"id_str":"3253705460","name":"\uc378\uc6d0\uccab\ub9c9\ucf58\ud2f0\ucf13\ud305\uc131\uacf5","screen_name":"JSHxGH","location":"\uc9c0\uc218\uc624\ube60 \ubaa8\uacf5","url":null,"description":"\uc544, \uc774\ubc88\uc0dd\uc740 \uba38\uae00\ub85c \uc0b4\uae34 \uae00\ub800\uad70","protected":false,"verified":false,"followers_count":230,"friends_count":264,"listed_count":1,"favourites_count":132,"statuses_count":19544,"created_at":"Tue Jun 23 14:24:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657593588813983744\/h6--whcW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657593588813983744\/h6--whcW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253705460\/1442020366","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080092662"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131421827073,"id_str":"663728131421827073","text":"\u591c\u3054\u98ef\u305f\u3079\u3066\u304b\u3089\u305a\u3063\u3068\u5bdd\u3066\u305f\u304b\u3089\u6708\u66dc9\u898b\u308c\u306a\u304b\u3063\u305f\n1\u9031\u9593\u306e\u3054\u8912\u7f8e\u304c\u3001\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1114210418,"id_str":"1114210418","name":"\u30df\u30a6\u30e9","screen_name":"uruaramomo","location":null,"url":"http:\/\/Instagram.com\/papipop531","description":"\u3082\u3044\u308f1-6\u25b72-1. \u306f\u3080\u26be\ufe0e.\u306b\u305b\u3089R","protected":false,"verified":false,"followers_count":529,"friends_count":472,"listed_count":5,"favourites_count":16181,"statuses_count":15058,"created_at":"Wed Jan 23 12:00:58 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660765699007057920\/00fS_LS9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660765699007057920\/00fS_LS9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1114210418\/1443001759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092660"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131413422081,"id_str":"663728131413422081","text":"@SyaJay_G7 thank you sis \u2764 and thanks for the goodluck wish. Amin \u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723189441171457,"in_reply_to_status_id_str":"663723189441171457","in_reply_to_user_id":1620670292,"in_reply_to_user_id_str":"1620670292","in_reply_to_screen_name":"SyaJay_G7","user":{"id":307333239,"id_str":"307333239","name":"A. Daniel Haiqal","screen_name":"danielhaiqal98","location":null,"url":"http:\/\/instagram.com\/a.danielhaiqal","description":"Nerd Malaya \u231a","protected":false,"verified":false,"followers_count":470,"friends_count":851,"listed_count":1,"favourites_count":2851,"statuses_count":4875,"created_at":"Sun May 29 13:03:36 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"804B65","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646942656027688962\/7qYZaJQ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646942656027688962\/7qYZaJQ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/307333239\/1442621956","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SyaJay_G7","name":"Summer","id":1620670292,"id_str":"1620670292","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092658"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131442782208,"id_str":"663728131442782208","text":"If you are a fan of @iHeartRadio and want to here the Sack Heads Show, listen though our I Heart Radio Channel here https:\/\/t.co\/tnmtfHFf1X","source":"\u003ca href=\"http:\/\/patriotjournalist.com\" rel=\"nofollow\"\u003ePatriotJournalist\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":477525334,"id_str":"477525334","name":"Sack Heads Radio","screen_name":"SackHeads","location":"United States of America","url":"http:\/\/shrmedia.com\/shr\/sack-heads-radio-show","description":"Sack Heads Radio Show - Conservative Kickass! Listen live every Wednesday @ 8 pm PT (usually) or the podcast! Retweets not endorsements #freesoko","protected":false,"verified":false,"followers_count":3323,"friends_count":3344,"listed_count":86,"favourites_count":8858,"statuses_count":63986,"created_at":"Sun Jan 29 08:40:16 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463353063059640320\/rJc5enTt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463353063059640320\/rJc5enTt.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2601450205\/fF6c45A8_normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2601450205\/fF6c45A8_normal","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/477525334\/1358269440","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tnmtfHFf1X","expanded_url":"http:\/\/bit.ly\/KcVIRz","display_url":"bit.ly\/KcVIRz","indices":[116,139]}],"user_mentions":[{"screen_name":"iHeartRadio","name":"iHeartRadio","id":46116615,"id_str":"46116615","indices":[20,32]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092665"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131434508288,"id_str":"663728131434508288","text":"Making money May \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":702080376,"id_str":"702080376","name":"Dimarys","screen_name":"Dimaryyy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":414,"friends_count":353,"listed_count":1,"favourites_count":1704,"statuses_count":8378,"created_at":"Wed Jul 18 00:56:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658663295071735808\/fwbJiD4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658663295071735808\/fwbJiD4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702080376\/1442492490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"bec68a93372eb249","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bec68a93372eb249.json","place_type":"city","name":"Camden","full_name":"Camden, NJ","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-75.132850,39.906751],[-75.132850,39.968220],[-75.066575,39.968220],[-75.066575,39.906751]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092663"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131409354752,"id_str":"663728131409354752","text":"https:\/\/t.co\/V4IMhKRuxj","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":55105778,"id_str":"55105778","name":"Ivan Bogdanov","screen_name":"Bukvite","location":null,"url":"http:\/\/www.bukvite.bg","description":null,"protected":false,"verified":false,"followers_count":71,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":10953,"created_at":"Thu Jul 09 01:57:38 +0000 2009","utc_offset":7200,"time_zone":"Sofia","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/304514722\/az1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/304514722\/az1_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/V4IMhKRuxj","expanded_url":"http:\/\/fb.me\/2p0veYkFd","display_url":"fb.me\/2p0veYkFd","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080092657"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417706496,"id_str":"663728131417706496","text":"https:\/\/t.co\/z7nOy4VBJu Watch and learn how to bet sports and win! https:\/\/t.co\/QzCEPDhzNL #nflpick #mlbpick #freepick #nfl","source":"\u003ca href=\"http:\/\/www.sportspicktweets.com\" rel=\"nofollow\"\u003e135Picks-MYAPI\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313812834,"id_str":"3313812834","name":"135Picks","screen_name":"135Picks","location":"Henderson, NV","url":"http:\/\/135Picks.com","description":"http:\/\/135picks.com Home of the 1,3,5 Unit Winning Picks","protected":false,"verified":false,"followers_count":75,"friends_count":111,"listed_count":6,"favourites_count":2,"statuses_count":1918,"created_at":"Thu Aug 13 01:28:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631640037809983488\/hS4r5yMJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631640037809983488\/hS4r5yMJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313812834\/1439429793","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nflpick","indices":[91,99]},{"text":"mlbpick","indices":[100,108]},{"text":"freepick","indices":[109,118]},{"text":"nfl","indices":[119,123]}],"urls":[{"url":"https:\/\/t.co\/z7nOy4VBJu","expanded_url":"https:\/\/www.youtube.com\/watch?v=StI5X0Zp6Xg","display_url":"youtube.com\/watch?v=StI5X0\u2026","indices":[0,23]},{"url":"https:\/\/t.co\/QzCEPDhzNL","expanded_url":"http:\/\/www.135Picks.com","display_url":"135Picks.com","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438604288,"id_str":"663728131438604288","text":"@hokui_ksw \u307e\u3041\u3053\u308c\u304b\u3089\u3088\u308d\u3057\u304f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714500030271488,"in_reply_to_status_id_str":"663714500030271488","in_reply_to_user_id":3266108556,"in_reply_to_user_id_str":"3266108556","in_reply_to_screen_name":"hokui_ksw","user":{"id":1538015911,"id_str":"1538015911","name":"\u5317\u6975\u661f","screen_name":"Plaris_N0290","location":"\u4e00\u30ce\u5bae\u5bb6\u306e\u8c6a\u90b8","url":"http:\/\/twpf.jp\/Plaris_N0290","description":"\u30c9\u30fc\u30e2\u3001\u30df\u30ca=\u30b5\u30f3\u3002\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u9802\u3044\u3066\u30c0\u30a4\u30b8\u30e7\u30fc\u30d6\u3067\u3059\u3002http:\/\/ask.fm\/PlarisN \u6700\u8fd1\u306f\u30d1\u30ba\u30c9\u30e9\u306b\u304a\u71b1 \u3044\u3044\u306d\uff01\u3088\u308a\u304a\u6c17\u306b\u5165\u308a\u306e\u307b\u3046\u304c\u3088\u304b\u3063\u305f","protected":false,"verified":false,"followers_count":284,"friends_count":262,"listed_count":8,"favourites_count":2210,"statuses_count":36019,"created_at":"Sat Jun 22 05:18:10 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661874203864379392\/Wx0DCtYp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661874203864379392\/Wx0DCtYp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1538015911\/1446644836","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hokui_ksw","name":"\u5317\u4f0a","id":3266108556,"id_str":"3266108556","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092664"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131446996993,"id_str":"663728131446996993","text":"Honey https:\/\/t.co\/X09aFiljkN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":755469504,"id_str":"755469504","name":"EunMi Jun ELF","screen_name":"EunMiB1315","location":"seul","url":null,"description":"\uc0ac\ub791\ud574\uc694-\uc288\ud37c\uc8fc\ub2c8\uc5b4&\uc5d8\ud504 ELForever!! Crazy Hottest I love Jun.K \nTaeckay forever!^^","protected":false,"verified":false,"followers_count":72,"friends_count":660,"listed_count":0,"favourites_count":1562,"statuses_count":1374,"created_at":"Mon Aug 13 16:56:24 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0526FC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660504868910534657\/NyCjtRD-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660504868910534657\/NyCjtRD-.jpg","profile_background_tile":true,"profile_link_color":"0F0CAD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662286051365421056\/sjD_z7UT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662286051365421056\/sjD_z7UT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/755469504\/1446736261","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725574557446146,"quoted_status_id_str":"663725574557446146","quoted_status":{"created_at":"Mon Nov 09 14:31:23 +0000 2015","id":663725574557446146,"id_str":"663725574557446146","text":"\u3044\u3061\u3083\u3044\u3061\u3083\u30a6\u30cf\u30a6\u30cf\u3059\u308b2\u4eba\u306e\u9593\u306e\u30b8\u30e5\u30ce\u304f\u3093\u306e\u9854\u306a\u2026( \u00b4_\u309d`) https:\/\/t.co\/M0MD2u070Z","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1418092548,"id_str":"1418092548","name":"PIKOTA (\u3074\u3053\u305f)","screen_name":"pikota_midori","location":"JAPAN","url":"https:\/\/store.line.me\/stickershop\/product\/1089651\/ja","description":"\u305f\u307e\u306b2PM\u306eFA\u63cf\u3044\u3066\u307e\u3059\u3002\u5168\u54e1\u306e\u65b9\u306b\u304a\u8fd4\u4e8b\u3059\u308b\u4e8b\u304c\u51fa\u6765\u306a\u3044\u306e\u3067\u3059\u304c\u3001\u30d5\u30a9\u30ed\u30fc\u30fb\u30ea\u30e0\u30fc\u30d6\u306f\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\uff01^^ FA\u306e\u7121\u65ad\u8ee2\u8f09\u30fb\u7121\u65ad\u52a0\u5de5\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002\u300e\u5149\u7530\u3055\u307e\u307f\uff08\u307f\u3064\u3060\u3055\u307e\u307f\uff09\u300f\u540d\u7fa9\u3067LINE\u30b9\u30bf\u30f3\u30d7\u8ca9\u58f2\u3057\u3066\u307e\u3059\u2661","protected":false,"verified":false,"followers_count":2802,"friends_count":95,"listed_count":16,"favourites_count":1679,"statuses_count":7604,"created_at":"Fri May 10 13:24:28 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576799049593958400\/PQ1rnbkf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576799049593958400\/PQ1rnbkf.jpeg","profile_background_tile":true,"profile_link_color":"00B395","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618994505811791872\/0hJeGmv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618994505811791872\/0hJeGmv6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1418092548\/1440942627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/M0MD2u070Z","expanded_url":"https:\/\/vine.co\/v\/elMVimwrP1K","display_url":"vine.co\/v\/elMVimwrP1K","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/X09aFiljkN","expanded_url":"https:\/\/twitter.com\/pikota_midori\/status\/663725574557446146","display_url":"twitter.com\/pikota_midori\/\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092666"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438571521,"id_str":"663728131438571521","text":"@haruharu1113 Rt\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":403117906,"in_reply_to_user_id_str":"403117906","in_reply_to_screen_name":"haruharu1113","user":{"id":2474858648,"id_str":"2474858648","name":"\u5f69\u90a3\u3002","screen_name":"ayana_20_","location":"\u265b* LIVE\u21d42016\/02\/15in\u65b0\u5bbf","url":"http:\/\/nicovideo.jp\/mylist\/41264726","description":"\u3042\u3084\u306a\u3002\u3067\u3059\uff1e\\( \uff65\u03c9\uff65)\/ \uff1c\u6b4c\u3063\u3066\u307e\u3059\u3002 _______ Always thank you!! .+*:\uff9f+\uff61.\u2606 ___________________\uff3f\u24a4\u6bd2\u514e\u21e8@dokuusagi39 \u24a3\u767d\u57dc \u6625\u21e8@sr_hn_0","protected":false,"verified":false,"followers_count":834,"friends_count":658,"listed_count":85,"favourites_count":19957,"statuses_count":52406,"created_at":"Sat May 03 03:08:39 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F22469","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663287073130962945\/L8nmhta8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663287073130962945\/L8nmhta8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2474858648\/1446309922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haruharu1113","name":"Hal","id":403117906,"id_str":"403117906","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092664"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417616384,"id_str":"663728131417616384","text":"Hi.....","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3724331840,"id_str":"3724331840","name":"nikhil","screen_name":"nikhil49401034","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":121,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Tue Sep 29 09:30:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080092659"} +{"delete":{"status":{"id":661167349450596352,"id_str":"661167349450596352","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080092910"}} +{"delete":{"status":{"id":661167383013388289,"id_str":"661167383013388289","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080092913"}} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131417743360,"id_str":"663728131417743360","text":"@oldvicnewvoices @oldvictheatre working hard on the pitch #OVStagebusiness https:\/\/t.co\/72usbV70ma","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":65661019,"in_reply_to_user_id_str":"65661019","in_reply_to_screen_name":"oldvicnewvoices","user":{"id":3478252455,"id_str":"3478252455","name":"Performing Arts Dept","screen_name":"PerfArtsCTK","location":null,"url":null,"description":"Twitter Feed and News for the Performing Arts Dept at Christ the King College","protected":false,"verified":false,"followers_count":11,"friends_count":32,"listed_count":0,"favourites_count":3,"statuses_count":14,"created_at":"Sat Aug 29 08:09:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637539258849468416\/8ORp06nM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637539258849468416\/8ORp06nM_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OVStagebusiness","indices":[58,74]}],"urls":[],"user_mentions":[{"screen_name":"oldvicnewvoices","name":"Old Vic New Voices","id":65661019,"id_str":"65661019","indices":[0,16]},{"screen_name":"oldvictheatre","name":"The Old Vic Theatre","id":39263607,"id_str":"39263607","indices":[17,31]}],"symbols":[],"media":[{"id":663728130545201152,"id_str":"663728130545201152","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJN9iUsAAmKJN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJN9iUsAAmKJN.jpg","url":"https:\/\/t.co\/72usbV70ma","display_url":"pic.twitter.com\/72usbV70ma","expanded_url":"http:\/\/twitter.com\/PerfArtsCTK\/status\/663728131417743360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728130545201152,"id_str":"663728130545201152","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJN9iUsAAmKJN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJN9iUsAAmKJN.jpg","url":"https:\/\/t.co\/72usbV70ma","display_url":"pic.twitter.com\/72usbV70ma","expanded_url":"http:\/\/twitter.com\/PerfArtsCTK\/status\/663728131417743360\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080092659"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131421765632,"id_str":"663728131421765632","text":"RT @koh_oruby3k4: #RT\u65e9\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u309310\u4eba\u304c\u79c1\u306e\u30ac\u30c1\u52e2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479585705,"id_str":"2479585705","name":"\u3068\u3082\u266a\u3046\u306f@\u4f4e\u6d6e\u4e0a","screen_name":"ryoha0727","location":null,"url":"http:\/\/twpf.jp\/ryoha0727","description":"\u9ad8\u68212\u5e74\u751f\uff01\u9ad8\u6a4b\u6731\u91cc\u3001\u7530\u4e2d\u7f8e\u4e45\u3001\u677e\u5ca1\u83dc\u6458\u3001\u7a74\u4e95\u5343\u5c0b\u3001\u5bae\u8107\u54b2\u826f\u306a\u3069\u63a8\u3057\u3066\u307e\u3059\u3002\u6c17\u5206\u6b21\u7b2c\u3067\u3075\u3041\u307c\u3059\u308b\u3002 \u30f2\u30bf\u5352\u8996\u91ce","protected":false,"verified":false,"followers_count":1136,"friends_count":558,"listed_count":27,"favourites_count":11962,"statuses_count":17676,"created_at":"Tue May 06 09:49:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598854583360757760\/uWjZ7vKZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598854583360757760\/uWjZ7vKZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479585705\/1436371378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:56 +0000 2015","id":663722696396533760,"id_str":"663722696396533760","text":"#RT\u65e9\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u309310\u4eba\u304c\u79c1\u306e\u30ac\u30c1\u52e2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2795091528,"id_str":"2795091528","name":"\u3053\u30fc\u3088\u30fc","screen_name":"koh_oruby3k4","location":null,"url":null,"description":"97\u5e74\u7d44\/\u5317\u6d77\u9053\/\u4f50\u91ce\u73b2\u65bc\/\u5bae\u8107\u54b2\u826f\/\u4e2d\u897f\u667a\u4ee3\u68a8\/\u5927\u548c\u7530\u5357\u90a3\/\u30e2\u30fc\u5a18\u3002\/\u30dd\u30b1\u30e2\u30f3\/\uff78\uff7f\uff88\uff90\/\u3060\u3044\u3054\u308d\u30fcfam\u8ecd\u56e3\/\u798f\u5ca1\u8056\u83dc\u2190\u301011\/7\u5317\u6d77\u9053\u5168\u63e1\u3011","protected":false,"verified":false,"followers_count":118,"friends_count":72,"listed_count":6,"favourites_count":13562,"statuses_count":9489,"created_at":"Sun Sep 07 01:53:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650550915632463872\/m9UyZU2Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650550915632463872\/m9UyZU2Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2795091528\/1441966070","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u65e9\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u309310\u4eba\u304c\u79c1\u306e\u30ac\u30c1\u52e2","indices":[0,21]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u65e9\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u309310\u4eba\u304c\u79c1\u306e\u30ac\u30c1\u52e2","indices":[18,39]}],"urls":[],"user_mentions":[{"screen_name":"koh_oruby3k4","name":"\u3053\u30fc\u3088\u30fc","id":2795091528,"id_str":"2795091528","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080092660"} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131438678016,"id_str":"663728131438678016","text":"Fazendo o teste https:\/\/t.co\/fTNblmcIZF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3827812576,"id_str":"3827812576","name":"mels","screen_name":"THISMELS","location":"Santiago. Wpp: 96181371","url":"https:\/\/www.facebook.com\/profile.php?id=100006558871560","description":"Equilibre-se!","protected":false,"verified":false,"followers_count":121,"friends_count":146,"listed_count":0,"favourites_count":73,"statuses_count":1136,"created_at":"Wed Sep 30 21:50:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662003374162866176\/BHvLG0hw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662003374162866176\/BHvLG0hw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3827812576\/1445776312","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728117547196416,"id_str":"663728117547196416","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNNHW4AA1vip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNNHW4AA1vip.jpg","url":"https:\/\/t.co\/fTNblmcIZF","display_url":"pic.twitter.com\/fTNblmcIZF","expanded_url":"http:\/\/twitter.com\/THISMELS\/status\/663728131438678016\/photo\/1","type":"photo","sizes":{"large":{"w":564,"h":1024,"resize":"fit"},"medium":{"w":564,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":617,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728117547196416,"id_str":"663728117547196416","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNNHW4AA1vip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNNHW4AA1vip.jpg","url":"https:\/\/t.co\/fTNblmcIZF","display_url":"pic.twitter.com\/fTNblmcIZF","expanded_url":"http:\/\/twitter.com\/THISMELS\/status\/663728131438678016\/photo\/1","type":"photo","sizes":{"large":{"w":564,"h":1024,"resize":"fit"},"medium":{"w":564,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":617,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080092664"} +{"delete":{"status":{"id":663695650756792321,"id_str":"663695650756792321","user_id":29150594,"user_id_str":"29150594"},"timestamp_ms":"1447080093098"}} +{"created_at":"Mon Nov 09 14:41:32 +0000 2015","id":663728131434377216,"id_str":"663728131434377216","text":"@65ay_nO \u306f\u3044 https:\/\/t.co\/csXDG9WMJY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727453660053509,"in_reply_to_status_id_str":"663727453660053509","in_reply_to_user_id":3029060843,"in_reply_to_user_id_str":"3029060843","in_reply_to_screen_name":"65ay_nO","user":{"id":3658108340,"id_str":"3658108340","name":"\u164f\u0324\u032b\u308a\u304f\u3074\u3093\u164f\u0324\u032b","screen_name":"r_kpino","location":"\u30e1\u30a4\u30bb\u30a4\u21d2 next\u261eIPU","url":null,"description":"\u03a9\u3044\u308f\u3082\u3061\u3082\u3061\u03a9","protected":false,"verified":false,"followers_count":232,"friends_count":226,"listed_count":1,"favourites_count":744,"statuses_count":856,"created_at":"Wed Sep 23 09:25:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662525311246954496\/bG-HGv4q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662525311246954496\/bG-HGv4q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3658108340\/1447039357","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"65ay_nO","name":"\u5927\u68ee \u6731\u4e43","id":3029060843,"id_str":"3029060843","indices":[0,8]}],"symbols":[],"media":[{"id":663727856178999297,"id_str":"663727856178999297","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727856178999297\/pu\/img\/GVrCU2XOXGAXos7M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727856178999297\/pu\/img\/GVrCU2XOXGAXos7M.jpg","url":"https:\/\/t.co\/csXDG9WMJY","display_url":"pic.twitter.com\/csXDG9WMJY","expanded_url":"http:\/\/twitter.com\/r_kpino\/status\/663728131434377216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727856178999297,"id_str":"663727856178999297","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727856178999297\/pu\/img\/GVrCU2XOXGAXos7M.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663727856178999297\/pu\/img\/GVrCU2XOXGAXos7M.jpg","url":"https:\/\/t.co\/csXDG9WMJY","display_url":"pic.twitter.com\/csXDG9WMJY","expanded_url":"http:\/\/twitter.com\/r_kpino\/status\/663728131434377216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":12033,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/pl\/gDdZQ64pbmcgOYOE.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/vid\/360x640\/hZd31E5NFbjXWwvt.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/pl\/gDdZQ64pbmcgOYOE.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/vid\/720x1280\/II8mhtTDPJ5_HyKS.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/vid\/360x640\/hZd31E5NFbjXWwvt.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663727856178999297\/pu\/vid\/180x320\/6eK8L5uWgVo8jYyO.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080092663"} +{"delete":{"status":{"id":430552259768754176,"id_str":"430552259768754176","user_id":314260680,"user_id_str":"314260680"},"timestamp_ms":"1447080093127"}} +{"delete":{"status":{"id":663726847969124352,"id_str":"663726847969124352","user_id":1477896811,"user_id_str":"1477896811"},"timestamp_ms":"1447080093288"}} +{"delete":{"status":{"id":663718748784738304,"id_str":"663718748784738304","user_id":3007996825,"user_id_str":"3007996825"},"timestamp_ms":"1447080093626"}} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620440064,"id_str":"663728135620440064","text":"RT @ananaa17: Fiel creyente de que el que quiere algo busca una manera de conseguirlo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1362823088,"id_str":"1362823088","name":"Michael Douglas","screen_name":"michaeldou16","location":"Cabo Rojo, Puerto Rico","url":null,"description":"ig-sc-phhhoto: michaeldou16 \u039d\u03a3\u0392","protected":false,"verified":false,"followers_count":469,"friends_count":314,"listed_count":0,"favourites_count":3934,"statuses_count":8756,"created_at":"Thu Apr 18 20:18:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663487215914369026\/N3pm8VzK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663487215914369026\/N3pm8VzK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1362823088\/1443587598","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:00 +0000 2015","id":663702830377771009,"id_str":"663702830377771009","text":"Fiel creyente de que el que quiere algo busca una manera de conseguirlo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":855012481,"id_str":"855012481","name":"ERRR DIABLO","screen_name":"ananaa17","location":"\u2022UPRM\u2022\u0397\u0393\u0394\u2022","url":null,"description":"Ni yo misma se...","protected":false,"verified":false,"followers_count":566,"friends_count":282,"listed_count":0,"favourites_count":5469,"statuses_count":16619,"created_at":"Sun Sep 30 16:55:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658139802936745984\/hDJijKi7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658139802936745984\/hDJijKi7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/855012481\/1433365679","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ananaa17","name":"ERRR DIABLO","id":855012481,"id_str":"855012481","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628828672,"id_str":"663728135628828672","text":"RT @Country_Words: You\u2019re damned if you do and you\u2019re damned if you don\u2019t so you might as well do what you want. -Kacey Musgraves","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411920552,"id_str":"411920552","name":"Kara Villwock","screen_name":"knicole28","location":null,"url":null,"description":"I'd rather be sitting by a fire looking at the stars","protected":false,"verified":false,"followers_count":488,"friends_count":422,"listed_count":1,"favourites_count":4074,"statuses_count":7294,"created_at":"Mon Nov 14 01:53:04 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576839702\/5nv6au7ep7zqsk70i1ic.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576839702\/5nv6au7ep7zqsk70i1ic.png","profile_background_tile":false,"profile_link_color":"D40C66","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"74DEAB","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663443027885760512\/RHMtfqic_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663443027885760512\/RHMtfqic_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411920552\/1447012077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:00:21 +0000 2015","id":663596971320598528,"id_str":"663596971320598528","text":"You\u2019re damned if you do and you\u2019re damned if you don\u2019t so you might as well do what you want. -Kacey Musgraves","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":453510918,"id_str":"453510918","name":"Country Words","screen_name":"Country_Words","location":"USA","url":"http:\/\/www.countrywords.net\/gallery","description":"The original country lyric page! Revolutionizing the way lyrics are viewed in country music... CountryWords@yahoo.com","protected":false,"verified":false,"followers_count":1017044,"friends_count":761,"listed_count":836,"favourites_count":503,"statuses_count":41460,"created_at":"Tue Jan 03 00:36:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464945079669751808\/KA6u0apU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464945079669751808\/KA6u0apU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/453510918\/1399327926","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":363,"favorite_count":506,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Country_Words","name":"Country Words","id":453510918,"id_str":"453510918","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620415488,"id_str":"663728135620415488","text":"RT @DanielaMerlo04: Quiero que llegue ma\u00f1ana as\u00ed lo veo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":564634745,"id_str":"564634745","name":"Gaston Palma","screen_name":"GastonPalma96","location":null,"url":null,"description":"Ilustre ignorante","protected":false,"verified":false,"followers_count":161,"friends_count":137,"listed_count":0,"favourites_count":378,"statuses_count":2104,"created_at":"Fri Apr 27 14:03:59 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594293882428510210\/_goN7jKH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594293882428510210\/_goN7jKH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/564634745\/1432346991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:00:53 +0000 2015","id":662766633035919364,"id_str":"662766633035919364","text":"Quiero que llegue ma\u00f1ana as\u00ed lo veo","source":"\u003ca href=\"http:\/\/www.samsungmobile.com\" rel=\"nofollow\"\u003eSamsung Mobile\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":565405526,"id_str":"565405526","name":"Daniela.","screen_name":"DanielaMerlo04","location":"canelones, canelones","url":null,"description":"Ama hasta que te duela. Si te duele es buena se\u00f1al.","protected":false,"verified":false,"followers_count":379,"friends_count":357,"listed_count":1,"favourites_count":413,"statuses_count":24220,"created_at":"Sat Apr 28 12:32:41 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532942237336739840\/zM5oRpM7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532942237336739840\/zM5oRpM7.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656171015597367296\/nC2NFODn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656171015597367296\/nC2NFODn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565405526\/1442258930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DanielaMerlo04","name":"Daniela.","id":565405526,"id_str":"565405526","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641407489,"id_str":"663728135641407489","text":"RT @haileybaldwin: \"RT @seventeen: 10 times @Louis_Tomlinson and @KylieJenner were the same person: ... https:\/\/t.co\/GzcAjswFHY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2823515139,"id_str":"2823515139","name":"Keeks","screen_name":"KeeksAndrade","location":"Rio de Janeiro | Brazil","url":"http:\/\/firstofthemonth.com","description":"Young, Wild & Free","protected":false,"verified":false,"followers_count":1278,"friends_count":2004,"listed_count":2,"favourites_count":5114,"statuses_count":7541,"created_at":"Sat Oct 11 20:12:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661140266536017920\/NBfV4zZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661140266536017920\/NBfV4zZM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2823515139\/1446416080","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:44 +0000 2015","id":663717612510191616,"id_str":"663717612510191616","text":"\"RT @seventeen: 10 times @Louis_Tomlinson and @KylieJenner were the same person: ... https:\/\/t.co\/GzcAjswFHY","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64090343,"id_str":"64090343","name":"Hailey Baldwin","screen_name":"haileybaldwin","location":"East Coast","url":null,"description":"Hailey Rhode Baldwin\nHeroes models NY - Julien@heroesmodels.com\nStorm models London \ninstagram\u2022haileybaldwin","protected":false,"verified":true,"followers_count":399057,"friends_count":3069,"listed_count":870,"favourites_count":752,"statuses_count":20843,"created_at":"Sun Aug 09 02:15:48 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655157543212326912\/YdFJO59e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655157543212326912\/YdFJO59e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64090343\/1416958009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":100,"favorite_count":170,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GzcAjswFHY","expanded_url":"http:\/\/tmi.me\/1fa7xb","display_url":"tmi.me\/1fa7xb","indices":[85,108]}],"user_mentions":[{"screen_name":"seventeen","name":"Seventeen","id":16824090,"id_str":"16824090","indices":[4,14]},{"screen_name":"Louis_Tomlinson","name":"Louis Tomlinson","id":84279963,"id_str":"84279963","indices":[25,41]},{"screen_name":"KylieJenner","name":"Kylie Jenner","id":236699098,"id_str":"236699098","indices":[46,58]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GzcAjswFHY","expanded_url":"http:\/\/tmi.me\/1fa7xb","display_url":"tmi.me\/1fa7xb","indices":[104,127]}],"user_mentions":[{"screen_name":"haileybaldwin","name":"Hailey Baldwin","id":64090343,"id_str":"64090343","indices":[3,17]},{"screen_name":"seventeen","name":"Seventeen","id":16824090,"id_str":"16824090","indices":[23,33]},{"screen_name":"Louis_Tomlinson","name":"Louis Tomlinson","id":84279963,"id_str":"84279963","indices":[44,60]},{"screen_name":"KylieJenner","name":"Kylie Jenner","id":236699098,"id_str":"236699098","indices":[65,77]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135616245760,"id_str":"663728135616245760","text":"RT @JacobWhitesides: You all are really something special thank you for just living and being you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":610020350,"id_str":"610020350","name":"sunlight","screen_name":"bellareism","location":"Brazil","url":null,"description":"definitely born in the wrong generation instagram : bellareism \/ snapchat : isah_reis","protected":false,"verified":false,"followers_count":507,"friends_count":672,"listed_count":0,"favourites_count":1674,"statuses_count":6616,"created_at":"Sat Jun 16 14:17:38 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656411234800128000\/wzVvNSHH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656411234800128000\/wzVvNSHH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610020350\/1441400056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:01:12 +0000 2015","id":663597186169487360,"id_str":"663597186169487360","text":"You all are really something special thank you for just living and being you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313087874,"id_str":"313087874","name":"Jacob Whitesides","screen_name":"JacobWhitesides","location":"East Tennessee \u2022 Tour Bus","url":"http:\/\/jacobwhitesides.com","description":"MY EP FACES ON FILM OUT NOW http:\/\/smarturl.it\/FacesOnFilm","protected":false,"verified":true,"followers_count":1840818,"friends_count":59808,"listed_count":8598,"favourites_count":22391,"statuses_count":62597,"created_at":"Wed Jun 08 03:55:18 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177538419\/oqOR41gf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177538419\/oqOR41gf.jpeg","profile_background_tile":false,"profile_link_color":"7F7B7A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663518365361659904\/wEQjQI9Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663518365361659904\/wEQjQI9Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313087874\/1447005523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2235,"favorite_count":3967,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JacobWhitesides","name":"Jacob Whitesides","id":313087874,"id_str":"313087874","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093660"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135624663040,"id_str":"663728135624663040","text":"RT @WS_Women: #DitchYourTights this party season and get your hands on a FREE* Hydro Silk razor! Ts&Cs apply. https:\/\/t.co\/G8w54UaUck","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1898437680,"id_str":"1898437680","name":"Sabbah Wasim","screen_name":"SabbahWasim","location":"Birmingham, England","url":null,"description":"Brummie. Traveller. Explorer. Foodie. Amateur Comedian. Treasurer. ESFJ.\n#Gryffindor #Saheli #YOLO\nMidlands Contact Centre of the Year 2015 #UKCCF","protected":false,"verified":false,"followers_count":139,"friends_count":517,"listed_count":9,"favourites_count":230,"statuses_count":884,"created_at":"Mon Sep 23 21:34:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659509240483217408\/unbNuDVd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659509240483217408\/unbNuDVd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1898437680\/1446074229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 15:14:14 +0000 2015","id":662286806751166464,"id_str":"662286806751166464","text":"#DitchYourTights this party season and get your hands on a FREE* Hydro Silk razor! Ts&Cs apply. https:\/\/t.co\/G8w54UaUck","source":"\u003ca href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2491349700,"id_str":"2491349700","name":"WilkinsonSword Women","screen_name":"WS_Women","location":"London","url":"http:\/\/www.wilkinsonsword.co.uk\/women","description":"The official Wilkinson Sword Women Twitter page","protected":false,"verified":false,"followers_count":6580,"friends_count":737,"listed_count":12,"favourites_count":221,"statuses_count":1067,"created_at":"Mon May 12 12:12:05 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"A749D6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578610427912912896\/D0OAmPQv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578610427912912896\/D0OAmPQv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2491349700\/1412083521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":35,"entities":{"hashtags":[{"text":"DitchYourTights","indices":[0,16]}],"urls":[{"url":"https:\/\/t.co\/G8w54UaUck","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53vxe7a\/153lo","display_url":"cards.twitter.com\/cards\/18ce53vx\u2026","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DitchYourTights","indices":[14,30]}],"urls":[{"url":"https:\/\/t.co\/G8w54UaUck","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce53vxe7a\/153lo","display_url":"cards.twitter.com\/cards\/18ce53vx\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"WS_Women","name":"WilkinsonSword Women","id":2491349700,"id_str":"2491349700","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093662"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641374720,"id_str":"663728135641374720","text":"Reports that Soon inshaAllah TTP(Tehrek Taliban Pakistan)bayah to IEA (Islamic Emirate of Afghanistan) will be released by Al Emarah studio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3429258352,"id_str":"3429258352","name":"Dread Muslim","screen_name":"dread_muslem","location":"Shaam","url":"http:\/\/justpaste.it\/dailyreminders1","description":"remember Allah and Allah will remember you... not in IS group nor JN nor any other group.. inshaAllah fe sabelilah","protected":false,"verified":false,"followers_count":1038,"friends_count":215,"listed_count":14,"favourites_count":412,"statuses_count":1057,"created_at":"Tue Aug 18 01:12:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644399088277028864\/kDRFztVp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644399088277028864\/kDRFztVp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3429258352\/1439860628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641407488,"id_str":"663728135641407488","text":"RT @rufflemuffin: Finally. I get to cycle for real in London. https:\/\/t.co\/AyYMYpkMql","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1326966306,"id_str":"1326966306","name":"aviewoflondon","screen_name":"sw19cam","location":"London","url":"http:\/\/www.youtube.com\/sw19cam","description":"A fan of satire,& re-tweeting 'good news' & 'bad news' cycling stories. Videographer of both cycling & other adventures.Currently commuting over Bow Roundabout.","protected":false,"verified":false,"followers_count":1195,"friends_count":1236,"listed_count":49,"favourites_count":10100,"statuses_count":12051,"created_at":"Thu Apr 04 13:45:19 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471408221249228801\/kmP3idBI_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471408221249228801\/kmP3idBI_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1326966306\/1409919577","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:11:51 +0000 2015","id":663645165236699136,"id_str":"663645165236699136","text":"Finally. I get to cycle for real in London. https:\/\/t.co\/AyYMYpkMql","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18613572,"id_str":"18613572","name":"rufflemuffin","screen_name":"rufflemuffin","location":"Glasgow","url":"http:\/\/rufflemuffin.org\/","description":"Social goodness meets public services in a human approach. Designer and hacker @wearesnook @dearestscotland @cycle_hack @_badgemaker @thisisthematter","protected":false,"verified":false,"followers_count":4864,"friends_count":3647,"listed_count":333,"favourites_count":1639,"statuses_count":19860,"created_at":"Sun Jan 04 22:07:11 +0000 2009","utc_offset":0,"time_zone":"Edinburgh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/19404140\/twitterback2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/19404140\/twitterback2.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484539550\/twitterProfilePhoto_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484539550\/twitterProfilePhoto_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18613572\/1407840030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AyYMYpkMql","expanded_url":"https:\/\/instagram.com\/p\/928vsztoIa_lSrYZ_rfBHnEosXnBVywYQ860Y0\/","display_url":"instagram.com\/p\/928vsztoIa_l\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/AyYMYpkMql","expanded_url":"https:\/\/instagram.com\/p\/928vsztoIa_lSrYZ_rfBHnEosXnBVywYQ860Y0\/","display_url":"instagram.com\/p\/928vsztoIa_l\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"rufflemuffin","name":"rufflemuffin","id":18613572,"id_str":"18613572","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628787712,"id_str":"663728135628787712","text":"RT rvwendeey: for RP [RT] #openfolloww 'null'","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14272985,"id_str":"14272985","name":"Becul -Folback-","screen_name":"bbhucul","location":null,"url":null,"description":"Luhan's Role Player","protected":false,"verified":false,"followers_count":11321,"friends_count":5275,"listed_count":3,"favourites_count":0,"statuses_count":145304,"created_at":"Tue Apr 01 07:14:21 +0000 2008","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658551076115734528\/rWZp_caK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658551076115734528\/rWZp_caK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14272985\/1445845786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"openfolloww","indices":[27,39]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637180416,"id_str":"663728135637180416","text":"Tried a Bar \ud83d\udc8a..Never Again waste of my money","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2198847148,"id_str":"2198847148","name":"\u26c4\ufe0f","screen_name":"CampaignRankin","location":"Proceedin","url":null,"description":"They hated me without reason - John15:25","protected":false,"verified":false,"followers_count":411,"friends_count":420,"listed_count":2,"favourites_count":6133,"statuses_count":10264,"created_at":"Thu Nov 28 05:47:15 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617290389284745216\/9yhkiJKe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617290389284745216\/9yhkiJKe.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660731285518868480\/sL2NrOfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660731285518868480\/sL2NrOfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2198847148\/1446366320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607885824,"id_str":"663728135607885824","text":"#PS4share\nhttps:\/\/t.co\/RSr0jPWiB9","source":"\u003ca href=\"http:\/\/www.playstation.com\" rel=\"nofollow\"\u003ePlayStation(R)4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763864350,"id_str":"2763864350","name":"hadi Q8","screen_name":"alhagag3","location":null,"url":null,"description":"\u0635\u0627\u062d\u0628 \u0642\u0646\u0627\u0629 \u0628\u0627\u0644\u064a\u0648\u062a\u064a\u0648\u0628 \u0648\u0642\u0631\u064a\u0628 \u0631\u062d \u0627\u0646\u0632\u0644 \u0641\u0644\u0648\u0642\u0627\u062a \u0648\u0628\u0627\u0644\u0648\u0642\u062a \u0627\u0644\u062d\u0627\u0644\u064a \u0627\u0635\u0648\u0631 \u0645\u0627\u064a\u0646 \u0643\u0631\u0627\u0641\u062a http:\/\/youtu.be\/rpxuNC89qK8","protected":false,"verified":false,"followers_count":11,"friends_count":77,"listed_count":0,"favourites_count":5,"statuses_count":63,"created_at":"Sun Aug 24 20:26:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655157196821368833\/Ue_Hi9q2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655157196821368833\/Ue_Hi9q2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PS4share","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/RSr0jPWiB9","expanded_url":"http:\/\/youtu.be\/7pcfn1pgYQE","display_url":"youtu.be\/7pcfn1pgYQE","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135603666944,"id_str":"663728135603666944","text":"RT @ComedyPosts: does anyone else get really disappointed when you see a really crunchy looking leaf but when you step on it it doesn\u2019t do \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1407691554,"id_str":"1407691554","name":"A.Mason","screen_name":"PartyGurl_Mason","location":"North Carolina","url":null,"description":"all my bitches love me and I love all my bitches","protected":false,"verified":false,"followers_count":54,"friends_count":88,"listed_count":1,"favourites_count":247,"statuses_count":4028,"created_at":"Mon May 06 13:08:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"D918AC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663243694057893888\/L9wmSy9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663243694057893888\/L9wmSy9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1407691554\/1446964471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:11 +0000 2015","id":663726029446488064,"id_str":"663726029446488064","text":"does anyone else get really disappointed when you see a really crunchy looking leaf but when you step on it it doesn\u2019t do the thing","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64019328,"id_str":"64019328","name":"Sarcasm ","screen_name":"ComedyPosts","location":null,"url":"https:\/\/Instagram.com\/femaletxts\/","description":"how I talk: 25% swearing 25% sarcasm 50% a combination of both. *We do not own the content posted.* Contact: girl-posts@outlook.com","protected":false,"verified":false,"followers_count":2950807,"friends_count":148,"listed_count":10081,"favourites_count":153,"statuses_count":102714,"created_at":"Sat Aug 08 18:54:57 +0000 2009","utc_offset":18000,"time_zone":"Karachi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563576709597765632\/8RFCEGZx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563576709597765632\/8RFCEGZx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64019328\/1420878171","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":162,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ComedyPosts","name":"Sarcasm ","id":64019328,"id_str":"64019328","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093657"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135603658752,"id_str":"663728135603658752","text":"@_gracehills to luces we go","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728049112932353,"in_reply_to_status_id_str":"663728049112932353","in_reply_to_user_id":945000648,"in_reply_to_user_id_str":"945000648","in_reply_to_screen_name":"_gracehills","user":{"id":3579068794,"id_str":"3579068794","name":"abel","screen_name":"laura_xo28","location":null,"url":null,"description":"@deslingard78 \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":278,"friends_count":230,"listed_count":1,"favourites_count":4440,"statuses_count":2883,"created_at":"Mon Sep 07 17:20:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663533439333883905\/8_iG1jkF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663533439333883905\/8_iG1jkF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3579068794\/1446685862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_gracehills","name":"gracie","id":945000648,"id_str":"945000648","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093657"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620313088,"id_str":"663728135620313088","text":"RT @sawamura_h: \u6771\u4eac\u27a1\ufe0e\u798f\u5ca1\u27a1\ufe0e\u672d\u5e4c\u27a1\ufe0e\u53f0\u6e7e\u2708\ufe0f\n#\u30d7\u30ec\u30df\u30a212","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122016328,"id_str":"122016328","name":"\u308a\u30fc\u306c\ufe0e","screen_name":"real23lee","location":"\u3081\u304c\u307f\u30fc\u305a\uff3c( '\u03c9')\uff0f","url":"http:\/\/twpf.jp\/real23lee","description":"\u864e\u30ad\u30c1\u3002(\u00b4\u2200')\u2665(\uff65\uff9f\u03c1\uff9f)\n\u3069\u308d\u3059\u3002\u304a\u30fc\u3044\u3057\u3002\u525b\u3061\u3083\u3093\u3002\n\u3053\u3093\u3069\u3046\u3075\u307f\u3044\u3061\u3002\n\u3010\u266126.4.13\uff1a\u3058\u3093\u304b\u3081\u8a18\u5ff5\u65e5\u2661\u3011\n\u3010\u266526.12.3\uff1a\u7dbe\u30af\u30e9\u6c88\u6ca1\u8a18\u5ff5\u65e5\u2665\u3011","protected":false,"verified":false,"followers_count":485,"friends_count":645,"listed_count":22,"favourites_count":8627,"statuses_count":282957,"created_at":"Thu Mar 11 09:36:32 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850985094\/cd55960f296612a4871b2d089c15716b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850985094\/cd55960f296612a4871b2d089c15716b.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314649421447168\/KSgwZUtU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314649421447168\/KSgwZUtU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122016328\/1445442672","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:06 +0000 2015","id":663722737932746752,"id_str":"663722737932746752","text":"\u6771\u4eac\u27a1\ufe0e\u798f\u5ca1\u27a1\ufe0e\u672d\u5e4c\u27a1\ufe0e\u53f0\u6e7e\u2708\ufe0f\n#\u30d7\u30ec\u30df\u30a212","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1001462966,"id_str":"1001462966","name":"\u6fa4\u6751 \u62d3\u4e00","screen_name":"sawamura_h","location":null,"url":null,"description":"Official Twitter of GIANTS pitcher Hirokazu Sawamura.\n\nTOKYO","protected":false,"verified":true,"followers_count":129801,"friends_count":55,"listed_count":1499,"favourites_count":2,"statuses_count":650,"created_at":"Mon Dec 10 11:20:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641997258381103105\/MbkQi6_O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641997258381103105\/MbkQi6_O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1001462966\/1437500281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":234,"favorite_count":628,"entities":{"hashtags":[{"text":"\u30d7\u30ec\u30df\u30a212","indices":[17,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30d7\u30ec\u30df\u30a212","indices":[33,40]}],"urls":[],"user_mentions":[{"screen_name":"sawamura_h","name":"\u6fa4\u6751 \u62d3\u4e00","id":1001462966,"id_str":"1001462966","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135633022976,"id_str":"663728135633022976","text":"RT @LourryFanArts: Literally the cutest thing ever http:\/\/t.co\/tceZCZtAIQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2221979482,"id_str":"2221979482","name":"LARRY HUG","screen_name":"Fanni1204","location":null,"url":"http:\/\/smarturl.It\/1Dmitamdxit","description":"LARRY HUG LARRY HUG LARRY HUG LARRY HUG LARRY HUG LARRY HUG 1DAF btw LARRY HUG LARRY HUG chill lerrie:) LARRY HUG LARRY HUG LARRY HUG LARRY HUG LARRY HUG LARRY","protected":false,"verified":false,"followers_count":339,"friends_count":391,"listed_count":6,"favourites_count":18089,"statuses_count":11114,"created_at":"Thu Dec 12 18:42:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"hu","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660785402203078656\/9dVQPgUr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660785402203078656\/9dVQPgUr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2221979482\/1446377321","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 02 18:16:04 +0000 2015","id":650011382943977472,"id_str":"650011382943977472","text":"Literally the cutest thing ever http:\/\/t.co\/tceZCZtAIQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479857121,"id_str":"2479857121","name":"Larry Fan Art \u26a3","screen_name":"LourryFanArts","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22771,"friends_count":298,"listed_count":154,"favourites_count":339,"statuses_count":1358,"created_at":"Tue May 06 13:44:58 +0000 2014","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637147639880921088\/2rfXfiSB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637147639880921088\/2rfXfiSB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479857121\/1440742817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":535,"favorite_count":393,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":650011365592182784,"id_str":"650011365592182784","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":540,"h":304,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":650011365592182784,"id_str":"650011365592182784","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":540,"h":304,"resize":"fit"}}},{"id":650011366431031296,"id_str":"650011366431031296","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5NQWgAAyzcj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5NQWgAAyzcj.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":416,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}}},{"id":650011370231099392,"id_str":"650011370231099392","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5baW8AAqD8k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5baW8AAqD8k.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":448,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LourryFanArts","name":"Larry Fan Art \u26a3","id":2479857121,"id_str":"2479857121","indices":[3,17]}],"symbols":[],"media":[{"id":650011365592182784,"id_str":"650011365592182784","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":540,"h":304,"resize":"fit"}},"source_status_id":650011382943977472,"source_status_id_str":"650011382943977472","source_user_id":2479857121,"source_user_id_str":"2479857121"}]},"extended_entities":{"media":[{"id":650011365592182784,"id_str":"650011365592182784","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5KIWsAAnBks.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":540,"h":304,"resize":"fit"}},"source_status_id":650011382943977472,"source_status_id_str":"650011382943977472","source_user_id":2479857121,"source_user_id_str":"2479857121"},{"id":650011366431031296,"id_str":"650011366431031296","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5NQWgAAyzcj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5NQWgAAyzcj.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"large":{"w":540,"h":416,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":416,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}},"source_status_id":650011382943977472,"source_status_id_str":"650011382943977472","source_user_id":2479857121,"source_user_id_str":"2479857121"},{"id":650011370231099392,"id_str":"650011370231099392","indices":[51,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CQVN5baW8AAqD8k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQVN5baW8AAqD8k.jpg","url":"http:\/\/t.co\/tceZCZtAIQ","display_url":"pic.twitter.com\/tceZCZtAIQ","expanded_url":"http:\/\/twitter.com\/LourryFanArts\/status\/650011382943977472\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":448,"resize":"fit"},"small":{"w":340,"h":282,"resize":"fit"}},"source_status_id":650011382943977472,"source_status_id_str":"650011382943977472","source_user_id":2479857121,"source_user_id_str":"2479857121"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637176320,"id_str":"663728135637176320","text":"RT: #indiedev from sakamozu https:\/\/t.co\/quXKwCbhCl","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3240884781,"id_str":"3240884781","name":"Indie Gamer","screen_name":"IndieGamerBot","location":null,"url":"http:\/\/playtestingjobs.com\/","description":"Just a bot who loves indie games. :) #indiegames #indiedev #gamedev","protected":false,"verified":false,"followers_count":2757,"friends_count":1735,"listed_count":73,"favourites_count":1462,"statuses_count":443368,"created_at":"Thu May 07 19:19:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596444974155194368\/wuf6GM-H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596444974155194368\/wuf6GM-H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3240884781\/1431035476","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725848898486272,"quoted_status_id_str":"663725848898486272","quoted_status":{"created_at":"Mon Nov 09 14:32:28 +0000 2015","id":663725848898486272,"id_str":"663725848898486272","text":"pLawitzki: Vulcan cannon is still a bit op. #PressureOverdrive #gamedev #indiedev #unity3d https:\/\/t.co\/CmQXvZbUcP","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2759310935,"id_str":"2759310935","name":"Parodossy","screen_name":"Parodossy","location":null,"url":null,"description":"I make games. Play games. I need to stahp actually nah, it can wait a few years.","protected":false,"verified":false,"followers_count":3165,"friends_count":10,"listed_count":2660,"favourites_count":45,"statuses_count":649087,"created_at":"Tue Sep 02 12:56:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657661705716150273\/EI8Qj2kU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657661705716150273\/EI8Qj2kU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2759310935\/1442693528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PressureOverdrive","indices":[44,62]},{"text":"gamedev","indices":[63,71]},{"text":"indiedev","indices":[72,81]},{"text":"unity3d","indices":[82,90]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690229765816320,"id_str":"663690229765816320","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXmv2IWwAAkCd4.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXmv2IWwAAkCd4.png","url":"https:\/\/t.co\/CmQXvZbUcP","display_url":"pic.twitter.com\/CmQXvZbUcP","expanded_url":"http:\/\/twitter.com\/pLawitzki\/status\/663690232127217664\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":224,"resize":"fit"},"large":{"w":300,"h":224,"resize":"fit"}},"source_status_id":663690232127217664,"source_status_id_str":"663690232127217664","source_user_id":1370245645,"source_user_id_str":"1370245645"}]},"extended_entities":{"media":[{"id":663690229765816320,"id_str":"663690229765816320","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXmv2IWwAAkCd4.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXmv2IWwAAkCd4.png","url":"https:\/\/t.co\/CmQXvZbUcP","display_url":"pic.twitter.com\/CmQXvZbUcP","expanded_url":"http:\/\/twitter.com\/pLawitzki\/status\/663690232127217664\/photo\/1","type":"animated_gif","sizes":{"small":{"w":300,"h":224,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":224,"resize":"fit"},"large":{"w":300,"h":224,"resize":"fit"}},"source_status_id":663690232127217664,"source_status_id_str":"663690232127217664","source_user_id":1370245645,"source_user_id_str":"1370245645","video_info":{"aspect_ratio":[75,56],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXmv2IWwAAkCd4.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"indiedev","indices":[4,13]}],"urls":[{"url":"https:\/\/t.co\/quXKwCbhCl","expanded_url":"http:\/\/twitter.com\/sakamozu\/status\/663727640465924097","display_url":"twitter.com\/sakamozu\/statu\u2026","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"lv","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135603638272,"id_str":"663728135603638272","text":"@parkbenchguy YOU CREATED A MONSTER FRANKENSTEIN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727261938540546,"in_reply_to_status_id_str":"663727261938540546","in_reply_to_user_id":871308200,"in_reply_to_user_id_str":"871308200","in_reply_to_screen_name":"parkbenchguy","user":{"id":1611314654,"id_str":"1611314654","name":"Octuse","screen_name":"octuse","location":"HELENA THE BAENA STOLE MY CROP","url":"https:\/\/twitter.com\/mishacollins\/status\/587626111300808706","description":"Say you'll remember memes Standing in overalls, staring at the corn fields, babe turnips and round beets even if it's just in your wildest beans.","protected":false,"verified":false,"followers_count":3676,"friends_count":1779,"listed_count":72,"favourites_count":74026,"statuses_count":96672,"created_at":"Sun Jul 21 20:33:39 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630443085605011456\/l5IF_v7k.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630443085605011456\/l5IF_v7k.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663595312380952576\/h6pY8d1L_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663595312380952576\/h6pY8d1L_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1611314654\/1447048442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"parkbenchguy","name":"Andrew","id":871308200,"id_str":"871308200","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093657"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135611912194,"id_str":"663728135611912194","text":"RT @JFed_: @R0S3YY \ud83d\ude22\ud83d\ude22\ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4123645354,"id_str":"4123645354","name":"B-Roke","screen_name":"Cannabizness420","location":null,"url":null,"description":"The Enforcer of #Stoners_Circle","protected":false,"verified":false,"followers_count":103,"friends_count":113,"listed_count":0,"favourites_count":75,"statuses_count":73,"created_at":"Fri Nov 06 02:00:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663523140878766080\/rdwqipD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663523140878766080\/rdwqipD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4123645354\/1447004487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:44 +0000 2015","id":663722645100195840,"id_str":"663722645100195840","text":"@R0S3YY \ud83d\ude22\ud83d\ude22\ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722526556729344,"in_reply_to_status_id_str":"663722526556729344","in_reply_to_user_id":1613671483,"in_reply_to_user_id_str":"1613671483","in_reply_to_screen_name":"R0S3YY","user":{"id":3226449510,"id_str":"3226449510","name":"jf\u03a3\u056e","screen_name":"JFed_","location":"Vaping on a Cloud","url":"http:\/\/www.reverbnation.com\/federalli_iii","description":"CEO\/PREZ:\u270a#\u0455\u0442oner\u0455_c\u03b9rcle\u270a","protected":false,"verified":false,"followers_count":17963,"friends_count":17013,"listed_count":39,"favourites_count":9975,"statuses_count":13911,"created_at":"Mon May 25 19:12:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716374112399360\/RGZipK20_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716374112399360\/RGZipK20_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3226449510\/1447002483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"R0S3YY","name":"L E S L I E \u265b","id":1613671483,"id_str":"1613671483","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JFed_","name":"jf\u03a3\u056e","id":3226449510,"id_str":"3226449510","indices":[3,9]},{"screen_name":"R0S3YY","name":"L E S L I E \u265b","id":1613671483,"id_str":"1613671483","indices":[11,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080093659"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637090304,"id_str":"663728135637090304","text":"\u65b0\u5e79\u7dda\u906d\u9047\u306e\u8a71\u3068\u5408\u308f\u305b\u308b\u3068\u672c\u5f53\u306b\u6d0b\u5e73\u3055\u3093\u3063\u3066\u81ea\u5206\u306e\u8eab\u3092\u524a\u3063\u3066\u751f\u304d\u308b\u4eba\u9593\u3060\u306a\u3063\u3066\u3002\u6d0b\u5e73\u3055\u3093\u304c\u4e00\u756a\u6094\u3057\u3044\u3060\u308d\u3046\u3057\u3001\u3082\u3061\u308d\u3093\u30e1\u30f3\u30d0\u30fc\u3082\u30ed\u30bc\u3055\u3093\u3082\u643a\u308f\u3063\u3066\u3044\u308b\u4eba\u307f\u3093\u306a\u6094\u3057\u3044\u3088\u306d\u3001\u30d5\u30a1\u30f3\u3060\u3063\u3066\u6094\u3057\u3044\u3002\u304d\u3063\u3068\u3053\u308c\u304b\u3089\u3053\u308c\u4ee5\u4e0a\u306a\u3053\u3068\u304c\u8d77\u3053\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u6b4c\u3063\u3066\u3044\u308b\u3053\u3068\u3063\u3066\u5f53\u305f\u308a\u524d\u306a\u3053\u3068\u3058\u3083\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1474062985,"id_str":"1474062985","name":"serinaaaan\u306f\u30c9\u30ed\u30b9\u65b0\u6f5f\u4e21\u65e5","screen_name":"se1202ri","location":"\u304d\u3068\u304d\u3068","url":null,"description":"\u30c9\u30ed\u30b9\u30c4\u30a2\u30fc(\u5bcc\u5c71\u77f3\u5ddd\u65b0\u6f5f\u5e55\u5f35) *[Alexandros] *BIGMAMA \u30df\u30bb\u30b9 04LS SPYAIR TF \u30b0\u30c9\u30e2 \u30aa\u30fc\u30e9\u30eb \u30c6\u30ec\u30f3 \u30c9\u30a2\u30e9 \u30d6\u30eb\u30a8\u30f3 MFS \u30bb\u30ab\u30aa\u30ef \u30c9\u30ed\u30b9NEW\u30b7\u30f3\u30b0\u30eb\u767a\u58f2\u65e5\u306f\u8a95\u751f\u65e5\u306a\u3093\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":397,"friends_count":335,"listed_count":26,"favourites_count":3908,"statuses_count":18307,"created_at":"Sat Jun 01 07:19:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569517197525929984\/BO5MlcrV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569517197525929984\/BO5MlcrV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1474062985\/1435313248","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135611875329,"id_str":"663728135611875329","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197788094,"id_str":"3197788094","name":"Peregrin Leslie","screen_name":"hykofolozul","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":169,"friends_count":388,"listed_count":3,"favourites_count":13672,"statuses_count":14627,"created_at":"Sat May 16 18:36:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645661027330326534\/got3gNJy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645661027330326534\/got3gNJy_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":507,"favorite_count":300,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093659"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135632998400,"id_str":"663728135632998400","text":"As of September 2015 over 1 billion Pula has been raised from the alcohol levy (exact amount BWP1 867 586 562.00) #SONA2015","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":304962574,"id_str":"304962574","name":"Student Network","screen_name":"MotswanaStudent","location":"Botswana","url":"http:\/\/www.studentnetwork.org.bw","description":"The coolest student network in Botswana!!!","protected":false,"verified":false,"followers_count":1361,"friends_count":36,"listed_count":8,"favourites_count":21,"statuses_count":2676,"created_at":"Wed May 25 12:09:24 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1814920588\/twter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1814920588\/twter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304962574\/1402162995","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SONA2015","indices":[114,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093664"} +{"delete":{"status":{"id":622466955253911552,"id_str":"622466955253911552","user_id":2430161312,"user_id_str":"2430161312"},"timestamp_ms":"1447080093730"}} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135624482816,"id_str":"663728135624482816","text":"RT @UniqueTwit_bot: \u95bb\u9b54\u5927\u738b\u300c\u6b21\u306e\u65b9\u30fc\u300d\u30b9\u300c\u30b9\u30c6\u30a3\u30fc\u30d6\u30b8\u30e7\u30d6\u30ba\u3067\u3059\u300d\u95bb\u300c\u3048\u30fc\u3001s\u2026s\u20266952\u30da\u30fc\u30b8\u2026\u300d\u30b9\u300c\u7d19\u5a92\u4f53\u3001\u4f7f\u3044\u306b\u304f\u304f\u306a\u3044\u3067\u3059\u304b\uff1f\u300d\u95bb\u300c\u3048\uff1f\u300d\u30b9\u300c\u5168\u90e8\u30c7\u30fc\u30bf\u5316\u3059\u308c\u3070\u540d\u524d\u691c\u7d22\u3084\u6b7b\u4ea1\u9806\u4e26\u3073\u66ff\u3048\u3001\u66f4\u306b\u30ec\u30fc\u30c8\u3082\u3064\u3051\u3089\u308c\u307e\u3059\u3088\u3002\u305d\u3046iPhone4S\u306a\u3089\u306d\u3002\u300d \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1139963438,"id_str":"1139963438","name":"[\u30ed\u30fc\u30c9\u30e9\u3084\u3063\u3066\u307e\u3059]C\u6c70","screen_name":"Soccer0117Xxx","location":null,"url":null,"description":"\u30b0\u30e9\u30d3\u30c6\u30a3\u30c7\u30a4\u30ba\u3084\u308a\u305f\u3044\u30ed\u30fc\u30c9\u30e9\u30fc \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059 \uc2e0\ud0d1","protected":false,"verified":false,"followers_count":152,"friends_count":241,"listed_count":0,"favourites_count":40,"statuses_count":1108,"created_at":"Fri Feb 01 15:16:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640403093587234816\/qGUZ_j5e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640403093587234816\/qGUZ_j5e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1139963438\/1417615094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:26 +0000 2015","id":663727855776329729,"id_str":"663727855776329729","text":"\u95bb\u9b54\u5927\u738b\u300c\u6b21\u306e\u65b9\u30fc\u300d\u30b9\u300c\u30b9\u30c6\u30a3\u30fc\u30d6\u30b8\u30e7\u30d6\u30ba\u3067\u3059\u300d\u95bb\u300c\u3048\u30fc\u3001s\u2026s\u20266952\u30da\u30fc\u30b8\u2026\u300d\u30b9\u300c\u7d19\u5a92\u4f53\u3001\u4f7f\u3044\u306b\u304f\u304f\u306a\u3044\u3067\u3059\u304b\uff1f\u300d\u95bb\u300c\u3048\uff1f\u300d\u30b9\u300c\u5168\u90e8\u30c7\u30fc\u30bf\u5316\u3059\u308c\u3070\u540d\u524d\u691c\u7d22\u3084\u6b7b\u4ea1\u9806\u4e26\u3073\u66ff\u3048\u3001\u66f4\u306b\u30ec\u30fc\u30c8\u3082\u3064\u3051\u3089\u308c\u307e\u3059\u3088\u3002\u305d\u3046iPhone4S\u306a\u3089\u306d\u3002\u300d fucki_no","source":"\u003ca href=\"https:\/\/twitter.com\/oigjgmwh\" rel=\"nofollow\"\u003eTJj9cxvps\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":435969741,"id_str":"435969741","name":"\u30aa\u30e2\u30b7\u30ed\u30c4\u30a4\u30fc\u30c8","screen_name":"UniqueTwit_bot","location":null,"url":null,"description":"\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u545f\u304b\u308c\u305f\u304a\u3082\u3057\u308d\u30c4\u30a4\u30fc\u30c8\u3092\u307e\u3068\u3081\u305fbot\u3067\u3059\uff011\u6642\u9593\u6bce\u306b\u9762\u767d\u3044\u30fb\u7206\u7b11\u30fb\u6df1\u30a4\u30a4\u8a71\u306a\u3069\u3092post\u3057\u3066\u3044\u304d\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":77491,"friends_count":38409,"listed_count":1937,"favourites_count":76,"statuses_count":23790,"created_at":"Tue Dec 13 16:56:40 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1914881145\/1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1914881145\/1_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"UniqueTwit_bot","name":"\u30aa\u30e2\u30b7\u30ed\u30c4\u30a4\u30fc\u30c8","id":435969741,"id_str":"435969741","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093662"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607742464,"id_str":"663728135607742464","text":"@taekseol_1827 \uadf8\ub85c\ub2c8\uae4c \uba39\uc744\uac74 \uc92c\ub294\ub370 \uc778\ud654\uc0ac\uc9c4\ub450 \uc788\uc5c8\uc624? \u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc544\uc774\ucf69...\ub625\uc744 \uc92c\ub124","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727952526348288,"in_reply_to_status_id_str":"663727952526348288","in_reply_to_user_id":3754996644,"in_reply_to_user_id_str":"3754996644","in_reply_to_screen_name":"taekseol_1827","user":{"id":2988301962,"id_str":"2988301962","name":"\uc7c8\ub2c8\ub97c\ud5a5\ud55c\ub2ec\ub2d8 \ubcc0\ud0dc\ub798\uc694","screen_name":"xordnswoghks","location":"\uc7ac\ud658\uc624\ube60\ub97c \uc88b\uc544\ud560\uc218\uc788\ub294 \uc5b4\ub518\uac00\uc5d0","url":null,"description":"\ube45\uc2a4\ud32c\uc544\ud130\/\ud314\ub85c\uc804\uc5d0 \uadf8\ub9bc\uc2a4\ud0c0\uc77c\uc744 \uaf2d \ud655\uc778\ud574\uc8fc\uc138\uc694(\uad50\ubcf5\ubc84\uc804.\uc0ac\uadf9\ubc84\uc804.\ubc40\ud30c\uc774\uc5b4\ub4f1\ub4f1) \ud314\ub85c\ud6c4\uc5d0 \uba58\uc158\uc8fc\uc138\uc694(\ud32c\uc544\ud130\ubd84\ub4e4 \ub9de\ud314\ud569\ub2c8\ub2e4)\u2661 \uc26c\uc6b4\uc0ac\ub78c\uc785\ub2c8\ub2e4 \ub2e4\uac00\uc624\uc138\uc694\u2661","protected":false,"verified":false,"followers_count":963,"friends_count":157,"listed_count":1,"favourites_count":626,"statuses_count":29292,"created_at":"Sun Jan 18 10:21:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662630670762532864\/6LVADwuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662630670762532864\/6LVADwuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988301962\/1444780201","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taekseol_1827","name":"\uc633\uc9c0 \ucc29\ud558\uc9c0 \uc124\uc544","id":3754996644,"id_str":"3754996644","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607681025,"id_str":"663728135607681025","text":"RT @pinkysky_saga: \u672c\u65e5\u3001\u7f8e\u5c11\u5973\u56f3\u9451TV\u64ae\u5f71\u3067\u3057\u305f\uff01\n\n\u653e\u9001\u306f11\u670823\u65e5(\u6708\u30fb\u795d)\n\u30b5\u30ac\u30c6\u30ec\u30d3\u3000SMAP\u00d7SMAP\u306e\u5f8c\n(22:54\uff5e)\n\n\u4eca\u56de\u306e\u76ee\u7389\u306f\u306a\u3093\u3068\n\u306a\u304e\u308a\u3093\u7f8e\u5c11\u5973\u56f3\u9451TV\u521d\u767b\u5834\uff01\uff01\n&\u306a\u304e\u308a\u3093\u3001\u3060\u30fc\u3086\u3093\u3001\u30c0\u30d6\u30eb\u51fa\u6f14\uff01\uff01\n\n\u304a\u898b\u9003\u3057\u306a\u304f\uff01\uff01 htt\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135269441,"id_str":"135269441","name":"\u305d\u3046\u3044\u3061","screen_name":"souichi99","location":"\u3055\u304c\u3051\u3093","url":null,"description":"\u4f50\u8cc0\u4e59\u5973 \u307f\u3085\u30fc\u2606\u30b9\u30bf\u30fc \u9752\u6728\u7406\u5948\u3055\u3093 PinkySky KIA\u3055\u3093 hipSShip \u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u3002 2015\/5\/10 blog\u8a2d\u7f6e (\u304a\u3057\u306e\u3048) http:\/\/blog.livedoor.jp\/ldblg080506-souichi\/","protected":false,"verified":false,"followers_count":169,"friends_count":178,"listed_count":2,"favourites_count":12123,"statuses_count":8669,"created_at":"Tue Apr 20 20:44:30 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646682477835059201\/r3FCkrx2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646682477835059201\/r3FCkrx2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135269441\/1426755771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:33:55 +0000 2015","id":663696015959027712,"id_str":"663696015959027712","text":"\u672c\u65e5\u3001\u7f8e\u5c11\u5973\u56f3\u9451TV\u64ae\u5f71\u3067\u3057\u305f\uff01\n\n\u653e\u9001\u306f11\u670823\u65e5(\u6708\u30fb\u795d)\n\u30b5\u30ac\u30c6\u30ec\u30d3\u3000SMAP\u00d7SMAP\u306e\u5f8c\n(22:54\uff5e)\n\n\u4eca\u56de\u306e\u76ee\u7389\u306f\u306a\u3093\u3068\n\u306a\u304e\u308a\u3093\u7f8e\u5c11\u5973\u56f3\u9451TV\u521d\u767b\u5834\uff01\uff01\n&\u306a\u304e\u308a\u3093\u3001\u3060\u30fc\u3086\u3093\u3001\u30c0\u30d6\u30eb\u51fa\u6f14\uff01\uff01\n\n\u304a\u898b\u9003\u3057\u306a\u304f\uff01\uff01 https:\/\/t.co\/1YfjHgQXEj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2897940554,"id_str":"2897940554","name":"\u30d4\u30f3\u30ad\u30fc\u30b9\u30ab\u30a4\u3010\u516c\u5f0f\u3011","screen_name":"pinkysky_saga","location":"\u4f50\u8cc0\u770c","url":"http:\/\/pinkysky.jimdo.com","description":"\u4f50\u8cc0\u306e\u3054\u5f53\u5730\u30a2\u30a4\u30c9\u30eb\u300ePinkySky\u300f\u516c\u5f0f\u3067\u3059\u266a\u306a\u304e\u308a\u3093(@usagi4324)\u3068\u3060\u301c\u3086\u3093(@da_yun2)\u306e2\u4eba\u304c\u5143\u6c17\u306b\u53ef\u611b\u304f\u6d3b\u52d5\u4e2d\u301c\uff01\/YouTube\u2192\u300e\u30d4\u30f3\u30b9\u30abtv\u300f\/\u3048\u3073\u3059FM89,6MHz\u306b\u3082\u51fa\u6f14\u4e2d\u266a(\u6bce\u9031\u571f\u66dc9:00\uff5e12:00)\u643a\u5e2f\u30a2\u30d7\u30ea\u300e\u3048\u3073\u3059FM\u300f\u3067\u5168\u56fd\u8074\u53d6\u53ef\u80fd\u3067\u3059\u266a","protected":false,"verified":false,"followers_count":1420,"friends_count":1307,"listed_count":37,"favourites_count":350,"statuses_count":5864,"created_at":"Thu Nov 13 00:28:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613345698482819072\/KOvIB8_o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613345698482819072\/KOvIB8_o_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2897940554\/1435042739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663695996111581184,"id_str":"663695996111581184","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","url":"https:\/\/t.co\/1YfjHgQXEj","display_url":"pic.twitter.com\/1YfjHgQXEj","expanded_url":"http:\/\/twitter.com\/pinkysky_saga\/status\/663696015959027712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695996111581184,"id_str":"663695996111581184","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","url":"https:\/\/t.co\/1YfjHgQXEj","display_url":"pic.twitter.com\/1YfjHgQXEj","expanded_url":"http:\/\/twitter.com\/pinkysky_saga\/status\/663696015959027712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pinkysky_saga","name":"\u30d4\u30f3\u30ad\u30fc\u30b9\u30ab\u30a4\u3010\u516c\u5f0f\u3011","id":2897940554,"id_str":"2897940554","indices":[3,17]}],"symbols":[],"media":[{"id":663695996111581184,"id_str":"663695996111581184","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","url":"https:\/\/t.co\/1YfjHgQXEj","display_url":"pic.twitter.com\/1YfjHgQXEj","expanded_url":"http:\/\/twitter.com\/pinkysky_saga\/status\/663696015959027712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663696015959027712,"source_status_id_str":"663696015959027712","source_user_id":2897940554,"source_user_id_str":"2897940554"}]},"extended_entities":{"media":[{"id":663695996111581184,"id_str":"663695996111581184","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXr_fcUcAAnoVs.jpg","url":"https:\/\/t.co\/1YfjHgQXEj","display_url":"pic.twitter.com\/1YfjHgQXEj","expanded_url":"http:\/\/twitter.com\/pinkysky_saga\/status\/663696015959027712\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663696015959027712,"source_status_id_str":"663696015959027712","source_user_id":2897940554,"source_user_id_str":"2897940554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607750657,"id_str":"663728135607750657","text":"\u30ad\u30b9\u30d6\u30b5\u898b\u306a\u304c\u3089\u9db4\u6298\u3063\u3066\u305f\u3051\u3069\u3001\u30ad\u30b9\u30d6\u30b5\u306b\u5922\u4e2d\u306b\u306a\u3063\u3066\u3061\u3087\u3063\u3068\u3057\u304b\u6298\u3063\u3066\u306a\u3044\u2026\u3002(;\u30fb\u0434\u30fb)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224642442,"id_str":"3224642442","name":"\u9065\u9999","screen_name":"kis_my_syf","location":null,"url":null,"description":"\u4e0a\u4e2d\u3000\u30b3\u30fc\u30e9\u30b9\u90e8\u266a\u5143\u90e8\u9577\u2192\u4e0a\u9ad82203\u3000\u5929\u6587\u90e8\u2606\u5f61\u4f1a\u8a08\u4fc2\u3000\u30c7\u30a3\u30ba\u30cb\u30fc\u2661\u30ad\u30b9\u30de\u30a4\uff06\u821e\u796d\u7d44\u2661Miracle Vell Magic\u2661\u7fbd\u751f\u7d50\u5f26\u2661\u30c4\u30e0\u30c4\u30e0\/\u30ad\u30b9\u30de\u30a4\u57a2orange_shisho","protected":false,"verified":false,"followers_count":145,"friends_count":145,"listed_count":0,"favourites_count":2695,"statuses_count":346,"created_at":"Sun May 24 01:09:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658208836122054656\/JBbdlr0z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658208836122054656\/JBbdlr0z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224642442\/1446860061","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135611912193,"id_str":"663728135611912193","text":"RT @aaa_mu335: \u6c17\u306b\u306a\u3063\u305f\u65b9\u8fce\u3048\u884c\u304d\u307e\u3059\ud83d\ude47\n\n\u25ce\u5b87\u91ce\u3061\u3083\u3093\u63a8\u3057\n\u25ce\u9759\u5ca1\n\u25ce\u307e\u306a\u3075\u3043\n\n\u9006\u306b\u8fce\u3048\u306b\u6765\u3066\u304f\u308c\u3066\u3082\u2026|\u0414\uff65)\n\n#a\u30f2\u30bf\u3055\u3093\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044 \n#RT\u304b\u3089\u6c17\u306b\u306a\u3063\u305fa\u30f2\u30bf\u304a\u8fce\u3048 https:\/\/t.co\/vcVDq4elK6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3999668653,"id_str":"3999668653","name":"\u2661\u307f\u3055\u2661","screen_name":"aaa_misa0130","location":null,"url":null,"description":"AAA\u597d\u304d\u306a\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u3066\uff01 \u306b\u3057\u3072\u3060\u3088\u308a\u306eall\u2661 \u897f\u5cf6\u5927\u597d\u304d\u3060\u3042\uff01a\u30f2\u30bf\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u30fc\uff01","protected":false,"verified":false,"followers_count":51,"friends_count":66,"listed_count":0,"favourites_count":96,"statuses_count":240,"created_at":"Sat Oct 24 06:51:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661477730215591937\/V5-mtX88_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661477730215591937\/V5-mtX88_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3999668653\/1446543555","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:37:16 +0000 2015","id":663696859555172352,"id_str":"663696859555172352","text":"\u6c17\u306b\u306a\u3063\u305f\u65b9\u8fce\u3048\u884c\u304d\u307e\u3059\ud83d\ude47\n\n\u25ce\u5b87\u91ce\u3061\u3083\u3093\u63a8\u3057\n\u25ce\u9759\u5ca1\n\u25ce\u307e\u306a\u3075\u3043\n\n\u9006\u306b\u8fce\u3048\u306b\u6765\u3066\u304f\u308c\u3066\u3082\u2026|\u0414\uff65)\n\n#a\u30f2\u30bf\u3055\u3093\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044 \n#RT\u304b\u3089\u6c17\u306b\u306a\u3063\u305fa\u30f2\u30bf\u304a\u8fce\u3048 https:\/\/t.co\/vcVDq4elK6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2301021499,"id_str":"2301021499","name":"\u304f \u3044 \u3060 \u304a \u308c \u307b \u306e \u304b","screen_name":"aaa_mu335","location":null,"url":null,"description":"\u9759\u5ca1 \/ \u85e4\u4e2d\u2192\u85e4\u5317OG AAA\u25b7\u25b6\ufe0e\u25b7\u5b87\u91ce\u5b9f\u5f69\u5b50\u3010@uno_uno_0716\u3011Misako.U\u00d7Takahiro.N Twins\u2192\u3010@15rinaaa93tntk\u3011\u307e\u306a\u3075\u3043","protected":false,"verified":false,"followers_count":2290,"friends_count":86,"listed_count":35,"favourites_count":1991,"statuses_count":3639,"created_at":"Mon Jan 20 08:26:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638354718410960897\/3117BB9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638354718410960897\/3117BB9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2301021499\/1413592068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":16,"entities":{"hashtags":[{"text":"a\u30f2\u30bf\u3055\u3093\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044","indices":[53,66]},{"text":"RT\u304b\u3089\u6c17\u306b\u306a\u3063\u305fa\u30f2\u30bf\u304a\u8fce\u3048","indices":[68,84]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663696838973743104,"id_str":"663696838973743104","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":571,"h":376,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":376,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663696838973743104,"id_str":"663696838973743104","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":571,"h":376,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":376,"resize":"fit"}}},{"id":663696839070224384,"id_str":"663696839070224384","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjtUkAAdrwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjtUkAAdrwI.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}}},{"id":663696838986301440,"id_str":"663696838986301440","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjZUAAAWWcp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjZUAAAWWcp.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"medium":{"w":592,"h":334,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":592,"h":334,"resize":"fit"}}},{"id":663696838990544896,"id_str":"663696838990544896","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjaUwAAgzTj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjaUwAAgzTj.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"a\u30f2\u30bf\u3055\u3093\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044","indices":[68,81]},{"text":"RT\u304b\u3089\u6c17\u306b\u306a\u3063\u305fa\u30f2\u30bf\u304a\u8fce\u3048","indices":[83,99]}],"urls":[],"user_mentions":[{"screen_name":"aaa_mu335","name":"\u304f \u3044 \u3060 \u304a \u308c \u307b \u306e \u304b","id":2301021499,"id_str":"2301021499","indices":[3,13]}],"symbols":[],"media":[{"id":663696838973743104,"id_str":"663696838973743104","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":571,"h":376,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":376,"resize":"fit"}},"source_status_id":663696859555172352,"source_status_id_str":"663696859555172352","source_user_id":2301021499,"source_user_id_str":"2301021499"}]},"extended_entities":{"media":[{"id":663696838973743104,"id_str":"663696838973743104","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjWUYAAd6m6.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":571,"h":376,"resize":"fit"},"small":{"w":340,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":571,"h":376,"resize":"fit"}},"source_status_id":663696859555172352,"source_status_id_str":"663696859555172352","source_user_id":2301021499,"source_user_id_str":"2301021499"},{"id":663696839070224384,"id_str":"663696839070224384","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjtUkAAdrwI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjtUkAAdrwI.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":480,"h":270,"resize":"fit"},"large":{"w":480,"h":270,"resize":"fit"}},"source_status_id":663696859555172352,"source_status_id_str":"663696859555172352","source_user_id":2301021499,"source_user_id_str":"2301021499"},{"id":663696838986301440,"id_str":"663696838986301440","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjZUAAAWWcp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjZUAAAWWcp.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"medium":{"w":592,"h":334,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":592,"h":334,"resize":"fit"}},"source_status_id":663696859555172352,"source_status_id_str":"663696859555172352","source_user_id":2301021499,"source_user_id_str":"2301021499"},{"id":663696838990544896,"id_str":"663696838990544896","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXswjaUwAAgzTj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXswjaUwAAgzTj.jpg","url":"https:\/\/t.co\/vcVDq4elK6","display_url":"pic.twitter.com\/vcVDq4elK6","expanded_url":"http:\/\/twitter.com\/aaa_mu335\/status\/663696859555172352\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663696859555172352,"source_status_id_str":"663696859555172352","source_user_id":2301021499,"source_user_id_str":"2301021499"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093659"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620308992,"id_str":"663728135620308992","text":"RT @mountainmanhans: mom webmd says i'm dying","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317623045,"id_str":"317623045","name":"assyla","screen_name":"AlyLikesUrSmile","location":null,"url":null,"description":"quiero montar harry styles tan duro hasta que \u00e9l pide m\u00e1s!","protected":false,"verified":false,"followers_count":434,"friends_count":628,"listed_count":2,"favourites_count":2476,"statuses_count":4208,"created_at":"Wed Jun 15 06:31:41 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/720903140\/a656d56a228e192f4e47f67506d79f77.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/720903140\/a656d56a228e192f4e47f67506d79f77.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658357835865063424\/V2GKd3_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658357835865063424\/V2GKd3_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317623045\/1446613255","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:06 +0000 2015","id":663724496440991744,"id_str":"663724496440991744","text":"mom webmd says i'm dying","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4058795417,"id_str":"4058795417","name":"hans","screen_name":"mountainmanhans","location":null,"url":null,"description":"bottom of the pit","protected":false,"verified":false,"followers_count":14,"friends_count":21,"listed_count":0,"favourites_count":9,"statuses_count":48,"created_at":"Wed Oct 28 06:29:11 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659291617585573888\/mK8LKbHc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659291617585573888\/mK8LKbHc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4058795417\/1446027332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mountainmanhans","name":"hans","id":4058795417,"id_str":"4058795417","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620288513,"id_str":"663728135620288513","text":"RT @httphearts: aku suka kawan dengan orang yang mudah terhibur. semua benda tak kelakar pun jadi kelakar. aku dengar dia ketawa pun boleh \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241446055,"id_str":"241446055","name":"Pahh \u2122","screen_name":"afifasyzna","location":"Sikamat | Petaling Jaya","url":null,"description":"Sebab di akhirnya, kita pasti gembira.","protected":false,"verified":false,"followers_count":392,"friends_count":262,"listed_count":1,"favourites_count":2869,"statuses_count":8045,"created_at":"Sat Jan 22 08:05:43 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467702972898488322\/uo6Nqre-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467702972898488322\/uo6Nqre-.jpeg","profile_background_tile":false,"profile_link_color":"33AA99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B85881","profile_text_color":"D16487","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663675148260642816\/n4kIE56z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663675148260642816\/n4kIE56z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241446055\/1444496890","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Sep 24 18:46:31 +0000 2015","id":647119941041152000,"id_str":"647119941041152000","text":"aku suka kawan dengan orang yang mudah terhibur. semua benda tak kelakar pun jadi kelakar. aku dengar dia ketawa pun boleh berdekah.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3020347046,"id_str":"3020347046","name":"human error","screen_name":"httphearts","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3678,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Sun Feb 15 02:29:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649328825545850880\/6oEtLbEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649328825545850880\/6oEtLbEu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14047,"favorite_count":3664,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"httphearts","name":"human error","id":3020347046,"id_str":"3020347046","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135633043456,"id_str":"663728135633043456","text":"I'm at \u0426\u0423\u041c in \u041f\u0435\u0440\u043c\u044c, \u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439 https:\/\/t.co\/FFbqchgj6D","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1872452736,"id_str":"1872452736","name":"\u2716\ufe0fLera\u2716\ufe0f","screen_name":"lera_litvishko","location":"\u041f\u0435\u0440\u043c\u044c, \u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439","url":null,"description":"http:\/\/Instagram.com\/lera_litvishko\/","protected":false,"verified":false,"followers_count":4254,"friends_count":103,"listed_count":15,"favourites_count":282,"statuses_count":59848,"created_at":"Mon Sep 16 17:49:24 +0000 2013","utc_offset":21600,"time_zone":"Almaty","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553997273323954176\/9Pqtusq0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553997273323954176\/9Pqtusq0.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663400925839630336\/08BAfEPb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663400925839630336\/08BAfEPb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1872452736\/1443857958","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[58.01157063,56.23766184]},"coordinates":{"type":"Point","coordinates":[56.23766184,58.01157063]},"place":{"id":"f5dcd434a1d49fde","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/f5dcd434a1d49fde.json","place_type":"city","name":"\u041f\u0435\u0440\u043c\u044c","full_name":"\u041f\u0435\u0440\u043c\u044c, \u041f\u0435\u0440\u043c\u0441\u043a\u0438\u0439 \u043a\u0440\u0430\u0439","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[55.806464,57.862774],[55.806464,58.182142],[56.482086,58.182142],[56.482086,57.862774]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FFbqchgj6D","expanded_url":"https:\/\/www.swarmapp.com\/c\/1Ps1P1UUx9G","display_url":"swarmapp.com\/c\/1Ps1P1UUx9G","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135611899904,"id_str":"663728135611899904","text":"RT @BestBikiniGirls: Hotel Erotica Bikini \u2013 Product Rosanna Arkle High definition tunes... - https:\/\/t.co\/Np73Svh3HN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3977625285,"id_str":"3977625285","name":"Rosina Royal","screen_name":"RosinaRoyal","location":"us","url":null,"description":"Total tv scholar. Infuriatingly humble troublemaker. Amateur internet enthusiast. Music maven. Pop culture junkie.","protected":false,"verified":false,"followers_count":154,"friends_count":1432,"listed_count":3,"favourites_count":5825,"statuses_count":5834,"created_at":"Sat Oct 17 06:49:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655274487232004097\/sPWXuUb4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655274487232004097\/sPWXuUb4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:08 +0000 2015","id":663725262165536768,"id_str":"663725262165536768","text":"Hotel Erotica Bikini \u2013 Product Rosanna Arkle High definition tunes... - https:\/\/t.co\/Np73Svh3HN","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2388,"favorite_count":1496,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Np73Svh3HN","expanded_url":"http:\/\/bestgirlsbikinis.com\/hotel-erotica-bikini-product-rosanna-arkle-high-definition-tunes\/","display_url":"bestgirlsbikinis.com\/hotel-erotica-\u2026","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Np73Svh3HN","expanded_url":"http:\/\/bestgirlsbikinis.com\/hotel-erotica-bikini-product-rosanna-arkle-high-definition-tunes\/","display_url":"bestgirlsbikinis.com\/hotel-erotica-\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093659"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135632896000,"id_str":"663728135632896000","text":"@null Hari ini hari Senin,Tanggal 09 Bulan November Tahun 2015 Jam 09:40:54","source":"\u003ca href=\"http:\/\/yoshika23218.com\/twitcle\/\" rel=\"nofollow\"\u003etwitcle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":3061610979,"id_str":"3061610979","name":"sinB","screen_name":"eusinb","location":null,"url":null,"description":"Hwang Eun-bi ( June 3rd 1998. Hangul; \ud669\uc740\ube44 )","protected":false,"verified":false,"followers_count":40,"friends_count":53,"listed_count":8,"favourites_count":2,"statuses_count":292542,"created_at":"Wed Feb 25 11:07:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594206465688145920\/tYhWTZu1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594206465688145920\/tYhWTZu1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3061610979\/1430505289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641305088,"id_str":"663728135641305088","text":".\n\n\u5358\u7d14\u306b\u305f\u3060\u697d\u3057\u304f\u751f\u304d\u305f\u3044\u3051\u3069\u305d\u3046\u3044\u3046\u308f\u3051\u306b\u3044\u304b\u306a\u3044\u304b\u3089\u7d50\u69cb\u96e3\u3057\u3044\u3051\u3069\u3001\u3068\u308a\u3042\u3048\u305a\u6bce\u65e5\u5e78\u305b\u3060\u306a\u3042\u3063\u3066\n\n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2921115204,"id_str":"2921115204","name":"\u30ca \u30f2","screen_name":"s83TD3mTcDYU0aT","location":"\u5c3e\u5d0e\u4e16\u754c\u89b3","url":null,"description":"\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800\u2800 \u2702\ufe0e \u90a6\u30ed\u30c3\u30af\u3068\u30ab\u30e1\u30e9\u3068\u304a\u6d0b\u670d\u305f\u3061\u3068\u2702\ufe0e","protected":false,"verified":false,"followers_count":62,"friends_count":88,"listed_count":1,"favourites_count":356,"statuses_count":436,"created_at":"Sun Dec 07 02:15:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662990277062209536\/i4xs1vzS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662990277062209536\/i4xs1vzS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921115204\/1442015256","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135616073728,"id_str":"663728135616073728","text":"\u4eca\u65e5\u306f1\u6642\u304b\u3089\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u304c\u3042\u308a\u78ba\u8a8d\u304c\u5fc5\u8981\u306a\u3093\u3060\u304c\u3001\u65e2\u306b\u51c4\u304f\u7720\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155570368,"id_str":"155570368","name":"R.Ohzeki","screen_name":"rapmaster1218","location":null,"url":"http:\/\/rapmaster.sakura.ne.jp\/","description":"IT\u696d\u754c\u3067\u50cd\u3044\u3066\u3044\u308bSE\u3067\u3059\u3002\u3002 \u793e\u4f1a\u4eba5\u5e74\u76ee\u306e\u6642\u306b\u30e2\u30d0\u30a4\u30eb\u306b\u7279\u5316\u3057\u305f\u4f1a\u793e\u3078\u8ee2\u8077\u3057\u307e\u3057\u305f\u3002 \u91ce\u7403(\u897f\u6b66\u30e9\u30a4\u30aa\u30f3\u30ba\u306e\u5927\u30d5\u30a1\u30f3)\u3001\u6b27\u5dde\u30b5\u30c3\u30ab\u30fc(\u7279\u306b\u30d7\u30ec\u30df\u30a2\u30ea\u30fc\u30b0\u3067\u30ea\u30f4\u30a1\u30d7\u30fc\u30eb\u304c\u597d\u304d)\u3001IT\u95a2\u9023\u3001\u7d4c\u6e08\u3001\u30a8\u30f3\u30bf\u30e1\u3068\u5272\u3068\u306a\u3093\u3067\u3082\u8208\u5473\u304c\u3042\u308b\u306e\u3067\u60c5\u5831\u3092\u304f\u308c\u308b\u3068\u559c\u3093\u3067\u53cd\u5fdc\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":186,"friends_count":241,"listed_count":3,"favourites_count":102,"statuses_count":4824,"created_at":"Mon Jun 14 14:08:04 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1177998192\/tengu1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1177998192\/tengu1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093660"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135616094208,"id_str":"663728135616094208","text":"A licence to take on a bigger music streaming rival - Financial Times https:\/\/t.co\/SM1Bc7814g #music via Thomas Tolkien","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":922616820,"id_str":"922616820","name":"Thomas Tolkien","screen_name":"CaTolkien","location":"Toronto","url":null,"description":"I play the guitar. Pearl Jam rock. That's it.","protected":false,"verified":false,"followers_count":128,"friends_count":10,"listed_count":34,"favourites_count":0,"statuses_count":19112,"created_at":"Sat Nov 03 06:53:16 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2800133045\/be20a4c397cd5d949f25055a9ce61469_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2800133045\/be20a4c397cd5d949f25055a9ce61469_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"music","indices":[94,100]}],"urls":[{"url":"https:\/\/t.co\/SM1Bc7814g","expanded_url":"http:\/\/dlvr.it\/Chfhn0","display_url":"dlvr.it\/Chfhn0","indices":[70,93]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093660"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628677120,"id_str":"663728135628677120","text":"#HAPPYLEODAY\n#HAPPYLEODAY\n\ud0dd\uc6b4\uc624\ube60, \uc0dd\uc77c \ucd95\ud558\ud574\uc694 !\n#HAPPYLEODAY\n#HAPPYLEODAY\n\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2558882262,"id_str":"2558882262","name":"#HAPPYLEODAY \ucf85","screen_name":"0524_Ken","location":"\uc774\uc7ac\ud658\ucd08\ucee4","url":"http:\/\/realvixx.com","description":"[ @jaehwany0406 ] \ub298 \ube44\ucd94\uace0\ud508, \uc0ac\ub791\uc635\uc740 \uc0ac\ub78c. HARDFLOWER \/ \ucf85 X \uc158 \u2665 \/ #\ud070\ucf54\uc655\uc790\ub2d8_\ucf54\uc655_\ucf85 \/ @\uacf5\uc624\uc774\uc0ac","protected":false,"verified":false,"followers_count":112,"friends_count":269,"listed_count":2,"favourites_count":476,"statuses_count":23170,"created_at":"Tue Jun 10 12:11:55 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662559445285650432\/pDHIhhRM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662559445285650432\/pDHIhhRM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2558882262\/1446728045","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[0,12]},{"text":"HAPPYLEODAY","indices":[13,25]},{"text":"HAPPYLEODAY","indices":[42,54]},{"text":"HAPPYLEODAY","indices":[55,67]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620300801,"id_str":"663728135620300801","text":"\u771f\u9762\u76ee\u306b\u8003\u3048\u3066\u53d6\u308a\u7d44\u3093\u3067\u3084","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2489981251,"id_str":"2489981251","name":"\u30b7\u30e2\u30e4\u30de","screen_name":"_yl03","location":"\u7d4c\u5c021\u5e74","url":null,"description":"\u3010\u6620\u50cf\u3011\u76e3\u7763\u30fbDir \uff08\u306a\u308a\u305f\u3044\uff09\/ \u30b7\u30e7\u30fc\u30c8\u300c\u30de\u30b9\u30af\u300dIFMC2015\u6e96\u30b0\u30e9\u30f3\u30d7\u30ea \/ \u5236\u4f5c\u4e2d\u2192 MV\u300cclapclap\u300d\/","protected":false,"verified":false,"followers_count":328,"friends_count":411,"listed_count":1,"favourites_count":2207,"statuses_count":848,"created_at":"Sun May 11 14:44:13 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652896122982154240\/hwXFrg1H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652896122982154240\/hwXFrg1H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2489981251\/1446868082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641387008,"id_str":"663728135641387008","text":"RT @CleanMy_Sprite: *Blackboard assignment due at 11:59*\n11:45 = https:\/\/t.co\/rBQLxj2cDp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":334251023,"id_str":"334251023","name":"SilenceIsGolden","screen_name":"WildLoverrr","location":"VA","url":null,"description":"DMV 301\u2708252 NC #Chow17 When your ready to sacrifice who you are for what you will become 7\/28\/15","protected":false,"verified":false,"followers_count":599,"friends_count":545,"listed_count":1,"favourites_count":774,"statuses_count":18827,"created_at":"Tue Jul 12 20:14:32 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/413628999\/a930cfda374d11e1a87612313804ec91_7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/413628999\/a930cfda374d11e1a87612313804ec91_7.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641767204363608064\/LeR0N5E1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641767204363608064\/LeR0N5E1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334251023\/1441804991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 04:53:40 +0000 2015","id":661043472510644224,"id_str":"661043472510644224","text":"*Blackboard assignment due at 11:59*\n11:45 = https:\/\/t.co\/rBQLxj2cDp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":257690001,"id_str":"257690001","name":"IG: terry_thetwin","screen_name":"CleanMy_Sprite","location":" [757]","url":"https:\/\/vine.co\/v\/MUEtKVIX77V","description":"#VCU","protected":false,"verified":false,"followers_count":2832,"friends_count":2705,"listed_count":5,"favourites_count":10162,"statuses_count":25564,"created_at":"Fri Feb 25 23:51:30 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639039904\/229subflbkkraen4vaxz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639039904\/229subflbkkraen4vaxz.jpeg","profile_background_tile":true,"profile_link_color":"0C2DD1","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652350313618382848\/yx9ZwSLZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652350313618382848\/yx9ZwSLZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/257690001\/1442929850","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4749,"favorite_count":3789,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661043412875898880,"id_str":"661043412875898880","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","url":"https:\/\/t.co\/rBQLxj2cDp","display_url":"pic.twitter.com\/rBQLxj2cDp","expanded_url":"http:\/\/twitter.com\/CleanMy_Sprite\/status\/661043472510644224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661043412875898880,"id_str":"661043412875898880","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","url":"https:\/\/t.co\/rBQLxj2cDp","display_url":"pic.twitter.com\/rBQLxj2cDp","expanded_url":"http:\/\/twitter.com\/CleanMy_Sprite\/status\/661043472510644224\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSx_e02UcAAt-Zc.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CleanMy_Sprite","name":"IG: terry_thetwin","id":257690001,"id_str":"257690001","indices":[3,18]}],"symbols":[],"media":[{"id":661043412875898880,"id_str":"661043412875898880","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","url":"https:\/\/t.co\/rBQLxj2cDp","display_url":"pic.twitter.com\/rBQLxj2cDp","expanded_url":"http:\/\/twitter.com\/CleanMy_Sprite\/status\/661043472510644224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"source_status_id":661043472510644224,"source_status_id_str":"661043472510644224","source_user_id":257690001,"source_user_id_str":"257690001"}]},"extended_entities":{"media":[{"id":661043412875898880,"id_str":"661043412875898880","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSx_e02UcAAt-Zc.png","url":"https:\/\/t.co\/rBQLxj2cDp","display_url":"pic.twitter.com\/rBQLxj2cDp","expanded_url":"http:\/\/twitter.com\/CleanMy_Sprite\/status\/661043472510644224\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":499,"h":280,"resize":"fit"},"medium":{"w":499,"h":280,"resize":"fit"}},"source_status_id":661043472510644224,"source_status_id_str":"661043472510644224","source_user_id":257690001,"source_user_id_str":"257690001","video_info":{"aspect_ratio":[25,14],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSx_e02UcAAt-Zc.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637102593,"id_str":"663728135637102593","text":"@mister2000831 \u7b11\u3046\u308f\u3042\u3093\u306a\u3093www","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728064933720064,"in_reply_to_status_id_str":"663728064933720064","in_reply_to_user_id":3230421164,"in_reply_to_user_id_str":"3230421164","in_reply_to_screen_name":"mister2000831","user":{"id":3196424137,"id_str":"3196424137","name":"\u3042\u3059\u306a@\u30c7\u30f3\u30ea\u30e5\u30a6\u56fd\u969b\u5b75\u5316","screen_name":"youyoumu1175","location":"\u53cb\u5229 \u5996\u5922 \u30c7\u30f3\u30ea\u30e5\u30a6\u306e\u96a3\u304b\u306a\uff1f","url":"http:\/\/twpf.jp\/youyoumu1175","description":"\u3069\u3063\u304b\u306e\u5996\u5922\u304c\u597d\u304d\u306a\u5909\u614b(\u4e2d3)\n\u30dd\u30b1\u30af\u30e9\/\u97f3\u30b2\u30fc\u30de\u30fc\n\u591c\u4e2d\u306b\u3088\u304f\u30ad\u30e3\u30b9\u3072\u3089\u304f\n \u30dd\u30b1\u30e2\u30f3\u30b7\u30f3\u30b0\u30eb\u30ec\u30fc\u30c8\u6700\u9ad8\u30ec\u30fc\u30c81722\n\u9ec4\u660f\u56e3\u79d1\u5b66\u8005","protected":false,"verified":false,"followers_count":560,"friends_count":524,"listed_count":12,"favourites_count":1156,"statuses_count":12555,"created_at":"Fri May 15 14:13:52 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725498170671108\/p2QwohNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725498170671108\/p2QwohNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196424137\/1447079734","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mister2000831","name":"\u2020\u3048\u3093\u3076\u305f\u30fc\u2020\u306a\u304a\u3068\u3093","id":3230421164,"id_str":"3230421164","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620325377,"id_str":"663728135620325377","text":"Who was in the first light beer commercial, billy martin or bubba smith? #americanfootballleague https:\/\/t.co\/gerKn0BBgc","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113762275,"id_str":"113762275","name":"kgbHollywood","screen_name":"kgbHollywood","location":"kgb answers","url":"http:\/\/www.kgbanswers.com\/","description":"Our special agents are ready to answer your questions on everything Hollywood plus keep you up-to-date on the latest entertainment news.","protected":false,"verified":false,"followers_count":281,"friends_count":16,"listed_count":18,"favourites_count":0,"statuses_count":16989,"created_at":"Fri Feb 12 23:39:02 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2178CA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/74781292\/kgb_twitter4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/74781292\/kgb_twitter4.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/695698401\/badgelogo_bigger_bigger_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/695698401\/badgelogo_bigger_bigger_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"americanfootballleague","indices":[73,96]}],"urls":[{"url":"https:\/\/t.co\/gerKn0BBgc","expanded_url":"http:\/\/dlvr.it\/Chfp0P","display_url":"dlvr.it\/Chfp0P","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620313089,"id_str":"663728135620313089","text":"RT @Chogieswagz: \u0e23\u0e31 \u0e01 \u0e44 \u0e14\u0e49 \u0e41 \u0e15\u0e48 \u0e2d \u0e22\u0e48 \u0e32 \u0e2b \u0e25 \u0e07 \u0e07 \u0e21 \u0e07 \u0e32 \u0e22\n\u0e2d\u0e22\u0e48\u0e32\u0e43\u0e2b\u0e49\u0e17\u0e31\u0e49\u0e07\u0e43\u0e08 \u0e40\u0e1c\u0e37\u0e48\u0e2d\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e44\u0e27\u0e49\u0e1a\u0e49\u0e32\u0e07 \u0e40\u0e27\u0e25\u0e32\u0e42\u0e14\u0e19\u0e17\u0e33\u0e23\u0e49\u0e32\u0e22\u0e21\u0e32\u0e21\u0e31\u0e19\u0e2b\u0e32\u0e04\u0e19\u0e0a\u0e48\u0e27\u0e22\u0e22\u0e32\u0e01\u0e19\u0e30 #\u0e1a\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07 http:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294662460,"id_str":"294662460","name":"aom","screen_name":"Thamonwan_Aom","location":"Thailand-Tak","url":null,"description":null,"protected":false,"verified":false,"followers_count":296,"friends_count":174,"listed_count":0,"favourites_count":2287,"statuses_count":13878,"created_at":"Sat May 07 15:02:33 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D975B6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000070529591\/67e9bfb459872e83e7b545c48bc8eef0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000070529591\/67e9bfb459872e83e7b545c48bc8eef0.jpeg","profile_background_tile":true,"profile_link_color":"E08FD7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663659063700406272\/Knn2Fv5a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663659063700406272\/Knn2Fv5a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294662460\/1447063463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 16 06:56:39 +0000 2015","id":599468486780268544,"id_str":"599468486780268544","text":"\u0e23\u0e31 \u0e01 \u0e44 \u0e14\u0e49 \u0e41 \u0e15\u0e48 \u0e2d \u0e22\u0e48 \u0e32 \u0e2b \u0e25 \u0e07 \u0e07 \u0e21 \u0e07 \u0e32 \u0e22\n\u0e2d\u0e22\u0e48\u0e32\u0e43\u0e2b\u0e49\u0e17\u0e31\u0e49\u0e07\u0e43\u0e08 \u0e40\u0e1c\u0e37\u0e48\u0e2d\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e44\u0e27\u0e49\u0e1a\u0e49\u0e32\u0e07 \u0e40\u0e27\u0e25\u0e32\u0e42\u0e14\u0e19\u0e17\u0e33\u0e23\u0e49\u0e32\u0e22\u0e21\u0e32\u0e21\u0e31\u0e19\u0e2b\u0e32\u0e04\u0e19\u0e0a\u0e48\u0e27\u0e22\u0e22\u0e32\u0e01\u0e19\u0e30 #\u0e1a\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07 http:\/\/t.co\/QykHgDTmEU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1586161256,"id_str":"1586161256","name":"`\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e04\u0e37\u0e2d\u0e19\u0e34\u0e1e\u0e1e\u0e32\u0e19 \u2661","screen_name":"Chogieswagz","location":"Thailand ","url":null,"description":"\u0e0a\u0e37\u0e48\u0e2d\u0e01\u0e35\u0e49 \u0e17\u0e27\u0e34\u0e15\u0e19\u0e35\u0e49 \u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e41\u0e2d\u0e14\u0e21\u0e34\u0e19 #Dek58 | \u0e0a\u0e2d\u0e1a\u0e1d\u0e23\u0e31\u0e48\u0e07 | tumblr | \u0e0a\u0e30\u0e19\u0e35\u0e2a\u0e32\u0e22\u0e14\u0e32\u0e23\u0e4c\u0e04\u0e1b\u0e32\u0e01\u0e2b\u0e21\u0e32 | BE KKU | DM ME im free to talk :) \u0e17\u0e31\u0e01 dm \u0e44\u0e14\u0e49","protected":false,"verified":false,"followers_count":81597,"friends_count":190,"listed_count":20,"favourites_count":323,"statuses_count":13934,"created_at":"Thu Jul 11 15:43:47 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593941628982665217\/18_MsGxo.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593941628982665217\/18_MsGxo.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FA8459","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662294411204661248\/s9bH2qX9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662294411204661248\/s9bH2qX9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1586161256\/1425474482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27904,"favorite_count":3278,"entities":{"hashtags":[{"text":"\u0e1a\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07","indices":[102,112]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":599468484297273345,"id_str":"599468484297273345","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":505,"resize":"fit"},"large":{"w":400,"h":505,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":599468484297273345,"id_str":"599468484297273345","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":505,"resize":"fit"},"large":{"w":400,"h":505,"resize":"fit"}}},{"id":599468485136121856,"id_str":"599468485136121856","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aT6UgAAiIK7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aT6UgAAiIK7.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":332,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":332,"resize":"fit"}}},{"id":599468467306135553,"id_str":"599468467306135553","indices":[113,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9ZRfUgAEImoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9ZRfUgAEImoB.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":443,"resize":"fit"},"medium":{"w":500,"h":443,"resize":"fit"},"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e1a\u0e2d\u0e01\u0e15\u0e31\u0e27\u0e40\u0e2d\u0e07","indices":[119,129]}],"urls":[],"user_mentions":[{"screen_name":"Chogieswagz","name":"`\u0e1d\u0e23\u0e31\u0e48\u0e07\u0e04\u0e37\u0e2d\u0e19\u0e34\u0e1e\u0e1e\u0e32\u0e19 \u2661","id":1586161256,"id_str":"1586161256","indices":[3,15]}],"symbols":[],"media":[{"id":599468484297273345,"id_str":"599468484297273345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":505,"resize":"fit"},"large":{"w":400,"h":505,"resize":"fit"}},"source_status_id":599468486780268544,"source_status_id_str":"599468486780268544","source_user_id":1586161256,"source_user_id_str":"1586161256"}]},"extended_entities":{"media":[{"id":599468484297273345,"id_str":"599468484297273345","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aQyUsAE2y9c.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":505,"resize":"fit"},"large":{"w":400,"h":505,"resize":"fit"}},"source_status_id":599468486780268544,"source_status_id_str":"599468486780268544","source_user_id":1586161256,"source_user_id_str":"1586161256"},{"id":599468485136121856,"id_str":"599468485136121856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9aT6UgAAiIK7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9aT6UgAAiIK7.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":332,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":332,"resize":"fit"}},"source_status_id":599468486780268544,"source_status_id_str":"599468486780268544","source_user_id":1586161256,"source_user_id_str":"1586161256"},{"id":599468467306135553,"id_str":"599468467306135553","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CFG9ZRfUgAEImoB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CFG9ZRfUgAEImoB.jpg","url":"http:\/\/t.co\/QykHgDTmEU","display_url":"pic.twitter.com\/QykHgDTmEU","expanded_url":"http:\/\/twitter.com\/Chogieswagz\/status\/599468486780268544\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":443,"resize":"fit"},"medium":{"w":500,"h":443,"resize":"fit"},"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":599468486780268544,"source_status_id_str":"599468486780268544","source_user_id":1586161256,"source_user_id_str":"1586161256"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"th","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641280512,"id_str":"663728135641280512","text":"RT @daewhyun: B.A.P MATRIX WALLPAPERS:\n1366x768 : https:\/\/t.co\/VHfjjaDAKE\n1440x900 : https:\/\/t.co\/EeIDgLeBUJ\n(no repost please~) https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2248599678,"id_str":"2248599678","name":"\u2765 YHDYJJ \u2465","screen_name":"_bhc19990","location":null,"url":null,"description":"Believe in B.A.P | NO MORE PAIN , NO MORE CRY #BAP | #\ube44\uc5d0\uc774\ud53c | TH-Bangkok | \u0e27\u0e32\u0e40\u0e25\u0e19\u0e44\u0e17\u0e19\u0e4c\u0e1b\u0e3560","protected":false,"verified":false,"followers_count":313,"friends_count":262,"listed_count":0,"favourites_count":213,"statuses_count":26090,"created_at":"Mon Dec 16 11:20:42 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626606669238132736\/6xO8IvY-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626606669238132736\/6xO8IvY-.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622344394243321857\/-DqPXHb8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622344394243321857\/-DqPXHb8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2248599678\/1437213618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:21:39 +0000 2015","id":663557033564774400,"id_str":"663557033564774400","text":"B.A.P MATRIX WALLPAPERS:\n1366x768 : https:\/\/t.co\/VHfjjaDAKE\n1440x900 : https:\/\/t.co\/EeIDgLeBUJ\n(no repost please~) https:\/\/t.co\/vGZITAbFPh","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":24789465,"id_str":"24789465","name":"nana #BAPisBACK","screen_name":"daewhyun","location":"Babyhyun","url":"http:\/\/babyhyuns.flavors.me\/","description":"Alone we may be weak but together we are strong - BYG","protected":false,"verified":false,"followers_count":3244,"friends_count":473,"listed_count":39,"favourites_count":19986,"statuses_count":227753,"created_at":"Mon Mar 16 22:57:43 +0000 2009","utc_offset":0,"time_zone":"Lisbon","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E7E8E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435564072541487104\/uregzGvr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435564072541487104\/uregzGvr.png","profile_background_tile":false,"profile_link_color":"93AEB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000308147320\/12ad2157154a773c57ddc530726cc9a6_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000308147320\/12ad2157154a773c57ddc530726cc9a6_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24789465\/1447041249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":347,"favorite_count":270,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VHfjjaDAKE","expanded_url":"http:\/\/i.imgur.com\/gCVCV9h.png","display_url":"i.imgur.com\/gCVCV9h.png","indices":[36,59]},{"url":"https:\/\/t.co\/EeIDgLeBUJ","expanded_url":"http:\/\/i.imgur.com\/lIvQ2I3.png","display_url":"i.imgur.com\/lIvQ2I3.png","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663553882329587712,"id_str":"663553882329587712","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","url":"https:\/\/t.co\/vGZITAbFPh","display_url":"pic.twitter.com\/vGZITAbFPh","expanded_url":"http:\/\/twitter.com\/daewhyun\/status\/663557033564774400\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663553882329587712,"id_str":"663553882329587712","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","url":"https:\/\/t.co\/vGZITAbFPh","display_url":"pic.twitter.com\/vGZITAbFPh","expanded_url":"http:\/\/twitter.com\/daewhyun\/status\/663557033564774400\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VHfjjaDAKE","expanded_url":"http:\/\/i.imgur.com\/gCVCV9h.png","display_url":"i.imgur.com\/gCVCV9h.png","indices":[50,73]},{"url":"https:\/\/t.co\/EeIDgLeBUJ","expanded_url":"http:\/\/i.imgur.com\/lIvQ2I3.png","display_url":"i.imgur.com\/lIvQ2I3.png","indices":[85,108]}],"user_mentions":[{"screen_name":"daewhyun","name":"nana #BAPisBACK","id":24789465,"id_str":"24789465","indices":[3,12]}],"symbols":[],"media":[{"id":663553882329587712,"id_str":"663553882329587712","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","url":"https:\/\/t.co\/vGZITAbFPh","display_url":"pic.twitter.com\/vGZITAbFPh","expanded_url":"http:\/\/twitter.com\/daewhyun\/status\/663557033564774400\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663557033564774400,"source_status_id_str":"663557033564774400","source_user_id":24789465,"source_user_id_str":"24789465"}]},"extended_entities":{"media":[{"id":663553882329587712,"id_str":"663553882329587712","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVqvYWWIAAahO3.png","url":"https:\/\/t.co\/vGZITAbFPh","display_url":"pic.twitter.com\/vGZITAbFPh","expanded_url":"http:\/\/twitter.com\/daewhyun\/status\/663557033564774400\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663557033564774400,"source_status_id_str":"663557033564774400","source_user_id":24789465,"source_user_id_str":"24789465"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637045248,"id_str":"663728135637045248","text":"RT @_1322_: #\u4e8c\u53e3\u30af\u30e9\u30b9\u30bf\u3055\u3093\u306fRT\u30d6\u30c3\u53e9\u3051 \n#\u4e8c\u53e3\u5805\u6cbb\u751f\u8a95\u796d2015 \n#\u4e8c\u53e3\u5805\u6cbb\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b111RT\u76ee\u6307\u3059 \n\u3055\u308a\u3052\u306a\u304f\u30b5\u30fc\u30d6\u304c\u9b3c\u306a\u6240\u3068\u304b\u3082\u3046\u5168\u3066\u304c\u597d\u304d\u3067\u3059!!\n\u3044\u3064\u3082\u306f\u306b\u308d\u304f\u3093\u307f\u305f\u3044\u306a\u611f\u3058\u306e\u6027\u683c\u82e6\u624b\u306a\u306e\u306b\u306a\u3093\u3067\u3067\u3057\u3087\u3046\u306d\u5927\u597d\u304d\u3067\u3059!! http:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4135794732,"id_str":"4135794732","name":"\u30db\u30ef\u30a4\u30c8no,9 \u30ea\u30a2\u5145\u6e80\u55ab\u4e2d\u2661","screen_name":"kingonthecourt9","location":"\u5909\u306a\u306e\u545f\u3044\u3066\u308b\u4eba\u4ee5\u591699\uff05\u30d5\u30a9\u30ed\u30fc\u3057\u3083\u3059\uff01\u2661","url":null,"description":"\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\/\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\/\uff2b\/\u30c0\u30a4\u30e4\u306e\uff21\/\u30e1\u30b8\u30e3\u30fc\/\u30c6\u30cb\u30b9\u306e\u738b\u5b50\u69d8\/NARUTO\/\u30ef\u30f3\u30d4\u30fc\u30b9\/\u6697\u6bba\u6559\u5ba4\/\u30ce\u30e9\u30ac\u30df\/\u4e03\u3064\u306e\u5927\u7f6a\/\u30d5\u30a7\u30a2\u30ea\u30fc\u30c6\u30a4\u30eb\/\u9280\u9b42\/\u72ac\u591c\u53c9\/\u540d\u63a2\u5075\u30b3\u30ca\u30f3\/\u30de\u30ae\/\u6771\u4eac\u55b0\u7a2e\/\u30c7\u30e5\u30e9\u30e9\u30e9\u203c\ufe0e\/\u591c\u685c\u56db\u91cd\u594f\/\u9ed2\u5b50\u306e\u30d0\u30b9\u30b1\/\u9752\u306e\u7953\u9b54\u5e2b\/\u30aa\u30c8\u30e1\u30a4\u30c8\u306a\u3069\u30a2\u30cb\u30e1\uff06\u58f0\u512a\u4f55\u3067\u3082\u6765\u3044(^-^)\u2661 follow me\u2661","protected":false,"verified":false,"followers_count":60,"friends_count":214,"listed_count":0,"favourites_count":95,"statuses_count":139,"created_at":"Thu Nov 05 14:31:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662278864924643329\/1LMTwvrs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662278864924643329\/1LMTwvrs_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 14 22:54:55 +0000 2015","id":643558574996647936,"id_str":"643558574996647936","text":"#\u4e8c\u53e3\u30af\u30e9\u30b9\u30bf\u3055\u3093\u306fRT\u30d6\u30c3\u53e9\u3051 \n#\u4e8c\u53e3\u5805\u6cbb\u751f\u8a95\u796d2015 \n#\u4e8c\u53e3\u5805\u6cbb\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b111RT\u76ee\u6307\u3059 \n\u3055\u308a\u3052\u306a\u304f\u30b5\u30fc\u30d6\u304c\u9b3c\u306a\u6240\u3068\u304b\u3082\u3046\u5168\u3066\u304c\u597d\u304d\u3067\u3059!!\n\u3044\u3064\u3082\u306f\u306b\u308d\u304f\u3093\u307f\u305f\u3044\u306a\u611f\u3058\u306e\u6027\u683c\u82e6\u624b\u306a\u306e\u306b\u306a\u3093\u3067\u3067\u3057\u3087\u3046\u306d\u5927\u597d\u304d\u3067\u3059!! http:\/\/t.co\/TNyRQ5X9JP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112063136,"id_str":"3112063136","name":"\u306e\u3042\u3068\u3068","screen_name":"_1322_","location":null,"url":null,"description":"\u2721 \u30c6 \u30cb \u30d7 \u30ea \u2721 \u65b0 \u30c6 \u30cb \u2721 H Q \u2721 \u9ed2 \u30d0 \u30b9 \u2721 \n\u25c7 \u96d1 \u98df \u25c7 \u8150 \u5973 \u5b50 \u25c7 \u5730 \u96f7 \u306a \u3057 \u25c7\n\n \u203b\u306e\u3093\u3073\u30fc\u308a\u79fb\u52d5\u4e2d\u203b","protected":false,"verified":false,"followers_count":485,"friends_count":597,"listed_count":16,"favourites_count":2068,"statuses_count":4302,"created_at":"Sat Mar 28 03:34:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659138985998979072\/crSxEx_a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659138985998979072\/crSxEx_a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112063136\/1445178257","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":239,"favorite_count":131,"entities":{"hashtags":[{"text":"\u4e8c\u53e3\u30af\u30e9\u30b9\u30bf\u3055\u3093\u306fRT\u30d6\u30c3\u53e9\u3051","indices":[0,16]},{"text":"\u4e8c\u53e3\u5805\u6cbb\u751f\u8a95\u796d2015","indices":[18,30]},{"text":"\u4e8c\u53e3\u5805\u6cbb\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b111RT\u76ee\u6307\u3059","indices":[32,52]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":643558039404965888,"id_str":"643558039404965888","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":643558039404965888,"id_str":"643558039404965888","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":643558080932777984,"id_str":"643558080932777984","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gqjZUkAAEcf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gqjZUkAAEcf0.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"large":{"w":912,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":643558114483048448,"id_str":"643558114483048448","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gsgYVEAAMZMB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gsgYVEAAMZMB.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}},{"id":643558206350843904,"id_str":"643558206350843904","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gx2nUYAAhqcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gx2nUYAAhqcM.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4e8c\u53e3\u30af\u30e9\u30b9\u30bf\u3055\u3093\u306fRT\u30d6\u30c3\u53e9\u3051","indices":[12,28]},{"text":"\u4e8c\u53e3\u5805\u6cbb\u751f\u8a95\u796d2015","indices":[30,42]},{"text":"\u4e8c\u53e3\u5805\u6cbb\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b111RT\u76ee\u6307\u3059","indices":[44,64]}],"urls":[],"user_mentions":[{"screen_name":"_1322_","name":"\u306e\u3042\u3068\u3068","id":3112063136,"id_str":"3112063136","indices":[3,10]}],"symbols":[],"media":[{"id":643558039404965888,"id_str":"643558039404965888","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":643558574996647936,"source_status_id_str":"643558574996647936","source_user_id":3112063136,"source_user_id_str":"3112063136"}]},"extended_entities":{"media":[{"id":643558039404965888,"id_str":"643558039404965888","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5goIsUcAAlZNo.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":643558574996647936,"source_status_id_str":"643558574996647936","source_user_id":3112063136,"source_user_id_str":"3112063136"},{"id":643558080932777984,"id_str":"643558080932777984","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gqjZUkAAEcf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gqjZUkAAEcf0.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"large":{"w":912,"h":514,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":643558574996647936,"source_status_id_str":"643558574996647936","source_user_id":3112063136,"source_user_id_str":"3112063136"},{"id":643558114483048448,"id_str":"643558114483048448","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gsgYVEAAMZMB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gsgYVEAAMZMB.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}},"source_status_id":643558574996647936,"source_status_id_str":"643558574996647936","source_user_id":3112063136,"source_user_id_str":"3112063136"},{"id":643558206350843904,"id_str":"643558206350843904","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CO5gx2nUYAAhqcM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO5gx2nUYAAhqcM.jpg","url":"http:\/\/t.co\/TNyRQ5X9JP","display_url":"pic.twitter.com\/TNyRQ5X9JP","expanded_url":"http:\/\/twitter.com\/_1322_\/status\/643558574996647936\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":643558574996647936,"source_status_id_str":"643558574996647936","source_user_id":3112063136,"source_user_id_str":"3112063136"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135632891904,"id_str":"663728135632891904","text":"\u3042\u306a\u305f\u3060\u3051\u306b\u7279\u5225\u306b\u6559\u3048\u3061\u3083\u3046\u306d\u266a\u79c1\u306e\u5229\u7528\u3057\u3066\u3044\u308b\u51fa\u4f1a\u3044\u30b5\u30a4\u30c8\u21d2 https:\/\/t.co\/3yhyNp9FJw","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1861956596,"id_str":"1861956596","name":"\u604b\u4eba\u6b32\u3057\u3044\u2606\u308a\u306a\uff3e\uff3e\/","screen_name":"info_rina_love","location":"\u95a2\u6771","url":"http:\/\/ameblo.jp\/inforikababy\/","description":"\u5f7c\u6c0f\u52df\u96c6\u4e2d\u2606\u308a\u306a\u3002\u4eca\u3059\u3063\u3054\u304f\u604b\u3057\u305f\u3044\u3067\uff5e\uff5e\uff5e\uff5e\u3059\u266a\u4f55\u304b\u3044\u3044\u51fa\u4f1a\u3044\u306a\u3044\u304b\u306a\uff1f\uff1f\uff1f\u30cf\u30d4\u30e1\u3084PC\u2606MAX\u3082\u5229\u7528\u3057\u3066\u3044\u308b\u3088\u266a\u3069\u306a\u305f\u3067\u3082\u30d5\u30a9\u30ed\u30fcDM\u3057\u3066\u306d\u2606\u5f85\u3063\u3066\u308b\u3088\u266a\uff3e\uff3e\/","protected":false,"verified":false,"followers_count":10319,"friends_count":2966,"listed_count":6,"favourites_count":0,"statuses_count":24363,"created_at":"Fri Sep 13 22:48:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000453309849\/8dcd3a45c47c13e7af5731dcefcecb22_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000453309849\/8dcd3a45c47c13e7af5731dcefcecb22_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3yhyNp9FJw","expanded_url":"http:\/\/happymail.co.jp\/?af7487060","display_url":"happymail.co.jp\/?af7487060","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135603552256,"id_str":"663728135603552256","text":"@tweetssbytayy9 \ud83d\ude02\ud83d\ude02\ud83d\ude02 should said \"sorry\" like Ciara \ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727706325020672,"in_reply_to_status_id_str":"663727706325020672","in_reply_to_user_id":3410020750,"in_reply_to_user_id_str":"3410020750","in_reply_to_screen_name":"tweetssbytayy9","user":{"id":2466662120,"id_str":"2466662120","name":"\u015a\u014d K\u00e4r\u00ebm\u00e9l","screen_name":"Liquid_kayy","location":"NewOrleans","url":null,"description":"M\u00d8ST F\u00cb\u00c4R\u00cbD","protected":false,"verified":false,"followers_count":971,"friends_count":395,"listed_count":1,"favourites_count":1853,"statuses_count":7300,"created_at":"Sun Apr 27 20:57:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643712842269523968\/9kAJjuy0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643712842269523968\/9kAJjuy0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2466662120\/1443579175","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tweetssbytayy9","name":"Keedy7gang\u2764\ufe0f","id":3410020750,"id_str":"3410020750","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093657"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628656640,"id_str":"663728135628656640","text":"\u5199\u771f\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":995374448,"id_str":"995374448","name":"\u308a\u3085\u3046\u305f\u308d\u3046\u3060\u3088(o\u2267\u25bd\u309c)b","screen_name":"aspara126","location":"\u82e5\u30d3\u30eb","url":null,"description":"\u91d1\u6ca2\u5927\u5b66\u7269\u8cea\u5316\u5b66\u985e\u4e00\u5e74\/\u65b0\u6f5f\u2192\u91d1\u6ca2\/\u30e8\u30c3\u30c8\/\u304a\u83d3\u5b50\/ \u65ed\u753a\u306e\u4eba\/\u5f8c\u671f\u306f\u9811\u5f35\u308b\u4eba\/\u9811\u5f35\u308b\u3068\u601d\u3046\u4eba\/\u591a\u5206\u304d\u3063\u3068\u2026\u2026","protected":false,"verified":false,"followers_count":119,"friends_count":117,"listed_count":1,"favourites_count":903,"statuses_count":3259,"created_at":"Fri Dec 07 16:13:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649114003197657088\/7ZpXJf-6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649114003197657088\/7ZpXJf-6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995374448\/1443595809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135620435968,"id_str":"663728135620435968","text":"RT @Amaka_Ekwo: Revolution #Biafra \nFlood YouTube with all videos.\nSome must go viral.\nMedia power.\nWe Must Continue.\n#FreeNnamdiKanu #Free\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130107845,"id_str":"3130107845","name":"Samuel okenwa","screen_name":"Okenwa2912","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":298,"friends_count":2196,"listed_count":11,"favourites_count":13,"statuses_count":43577,"created_at":"Mon Mar 30 23:00:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655896983639609344\/FwwKzgEg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655896983639609344\/FwwKzgEg_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:12:09 +0000 2015","id":663615040403218432,"id_str":"663615040403218432","text":"Revolution #Biafra \nFlood YouTube with all videos.\nSome must go viral.\nMedia power.\nWe Must Continue.\n#FreeNnamdiKanu #FreeBiafra","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2716396878,"id_str":"2716396878","name":"Amaka Ekwo-Marchie","screen_name":"Amaka_Ekwo","location":"UK","url":"http:\/\/www.amakaekwo.com","description":"An educator, songwriter and singer. Worship CHUKWU OKIKE ABIAMA. Preach the restoration of Great Biafra, a beautiful African nation.","protected":false,"verified":false,"followers_count":7589,"friends_count":272,"listed_count":26,"favourites_count":638,"statuses_count":30224,"created_at":"Fri Aug 08 07:17:02 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536703144059621377\/E9hx04Id_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536703144059621377\/E9hx04Id_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2716396878\/1416794866","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":275,"favorite_count":5,"entities":{"hashtags":[{"text":"Biafra","indices":[11,18]},{"text":"FreeNnamdiKanu","indices":[102,117]},{"text":"FreeBiafra","indices":[118,129]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Biafra","indices":[27,34]},{"text":"FreeNnamdiKanu","indices":[118,133]},{"text":"FreeBiafra","indices":[134,140]}],"urls":[],"user_mentions":[{"screen_name":"Amaka_Ekwo","name":"Amaka Ekwo-Marchie","id":2716396878,"id_str":"2716396878","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093661"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607705600,"id_str":"663728135607705600","text":"@ham_tra \n\u306f\u3080\u301c\u301c(._.)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724291138043904,"in_reply_to_status_id_str":"663724291138043904","in_reply_to_user_id":4028941572,"in_reply_to_user_id_str":"4028941572","in_reply_to_screen_name":"ham_tra","user":{"id":3944593452,"id_str":"3944593452","name":"\u30df\u30ba\u83cc\u00ab\u4f11\u6b62\u00bb","screen_name":"EX_n0830a_3JSB","location":"\uff3c\u3044\u3064\u304b\u5fc5\u305a\u306d\u308b\u3053\u3068\u30de\u30ea\u30d6\u30e9\u53c2\u6226\uff0f","url":null,"description":"\u306a\u30fc\u304a\u3061\u3083\u3093\u3002","protected":false,"verified":false,"followers_count":167,"friends_count":159,"listed_count":7,"favourites_count":447,"statuses_count":1639,"created_at":"Mon Oct 19 07:37:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663352622573686789\/noHYrcPj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663352622573686789\/noHYrcPj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3944593452\/1446275393","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ham_tra","name":"\u306f \u3080","id":4028941572,"id_str":"4028941572","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135632912384,"id_str":"663728135632912384","text":"@docodemo_kuu \u304a\u3084\u3059\u307f\u3067\u3059\u3057\u3002\n\u3053\u306e\u30ea\u30d7\u3092\u53d7\u3051\u53d6\u3063\u305f\u3042\u306a\u305f\u306f\u5fc5\u305a\u60aa\u5922\u3092\u898b\u308b\u3067\u3059\u3057\u2661","source":"\u003ca href=\"http:\/\/www55.atwiki.jp\/j\/makebot.sh\" rel=\"nofollow\"\u003e\u30ad\u30e5\u30fc\u5b50bot support.\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727947610763264,"in_reply_to_status_id_str":"663727947610763264","in_reply_to_user_id":3037986960,"in_reply_to_user_id_str":"3037986960","in_reply_to_screen_name":"docodemo_kuu","user":{"id":1903435190,"id_str":"1903435190","name":"\u30ad\u30e5\u30fc\u5b50\uff08\u308dbot\uff09","screen_name":"DigitqlCuko","location":"DigitalCute","url":"http:\/\/digitalcute.com","description":"\u3048\u308d\u3044\u30b2\u30fc\u30e0\u3092\u4f5c\u3063\u3066\u308bDigitalCute\u306e\u30de\u30b9\u30b3\u30c3\u30c8\u3002\u7d76\u5bfe\u306b\u30a2\u30f3\u30c9\u30ed\u30a4\u30c9\u306a\u306e\u3067\u3059\u3057\u3002\u203b\u7686\u3055\u3093\u306e\u304a\u8a71\u3092\u5b66\u7fd2\u3057\u307e\u3059\u3002\u30fb\u30cb\u30e5\u30fc\u30b9\u3060\u3051(@DigitalCuteNews)\u30fb\u308f\u305f\u3057\u306e\u3053\u3068(http:\/\/digitalcuko.com)\u30fb\u308d\u3050(http:\/\/goo.gl\/1gzdH)","protected":false,"verified":false,"followers_count":2840,"friends_count":2413,"listed_count":19,"favourites_count":396,"statuses_count":946700,"created_at":"Wed Sep 25 08:42:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663576688631021568\/9PLnYEBL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663576688631021568\/9PLnYEBL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1903435190\/1420368595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"docodemo_kuu","name":"\uff20Pekozzzz","id":3037986960,"id_str":"3037986960","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135607750656,"id_str":"663728135607750656","text":"@kinpa_ssul \ud551\ud06c!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728058881277952,"in_reply_to_status_id_str":"663728058881277952","in_reply_to_user_id":2450742295,"in_reply_to_user_id_str":"2450742295","in_reply_to_screen_name":"kinpa_ssul","user":{"id":471045804,"id_str":"471045804","name":"\ub2e8\ub9e4\ub2d8 \uc774\uc81c \ubc31\uc218\ub78c\uc11c\uc5ec(\uae08\uc8fc 58\uc77c)","screen_name":"DM_FRLG","location":"\uae34\uc774 \uac00\ubc29 \uc55e \uc8fc\uba38\ub2c8","url":null,"description":"\ud3ec\ucf13\ubaac, \uc0ac\uc774\ud37c\uc988, \uc790\uce90 \ud314\ub85c\uc2dc \uba58\uc158.\n\ud2b8\uce5c\uc18c\uac00 \uc544\ub2cc \uc774\uc0c1 \ud314\ub85c\ub97c \ubc1b\uace0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4 :)","protected":false,"verified":false,"followers_count":249,"friends_count":288,"listed_count":2,"favourites_count":7951,"statuses_count":296694,"created_at":"Sun Jan 22 12:46:47 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662957882820837376\/dmJpLY2q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662957882820837376\/dmJpLY2q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/471045804\/1444453044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kinpa_ssul","name":"\ud0a8\ud30c*\uc370\uacc4","id":2450742295,"id_str":"2450742295","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080093658"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628677121,"id_str":"663728135628677121","text":"@Suum_ry58 \n\u304d\u3083\u3063\/\/\/\/\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662240273250975746,"in_reply_to_status_id_str":"662240273250975746","in_reply_to_user_id":3726471078,"in_reply_to_user_id_str":"3726471078","in_reply_to_screen_name":"Suum_ry58","user":{"id":2776264934,"id_str":"2776264934","name":"\u3086\u306a\u3051\u3068\uff08 '\u0447' \uff09","screen_name":"yunaketoy","location":"\u3042\u3086\u3061\u3083\u3093\u306e\u96a3","url":null,"description":"\u690e\u540d\u30ec\u30f3\u304f\u3093(( @__yama09 )) \u2765\u2765\u2765 \u30a2\u30e6\u30bf\u30ed \u3088\u3061\u3093\u3061\u3093 (( @YOTINTIN )) \u3086\u306a\u3081\u3050\u3071\u3093 https:\/\/twitter.com\/yunaketoy\/status\/662226695592669184","protected":false,"verified":false,"followers_count":257,"friends_count":162,"listed_count":16,"favourites_count":9304,"statuses_count":11661,"created_at":"Thu Aug 28 11:40:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633056440857432064\/xms9KtZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633056440857432064\/xms9KtZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2776264934\/1439770158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suum_ry58","name":"\u3059\u3045\u3081\u308d \u2721","id":3726471078,"id_str":"3726471078","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135633051648,"id_str":"663728135633051648","text":"Thank you for being wonderful too! https:\/\/t.co\/laWdIzujnm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":418813172,"id_str":"418813172","name":"tiata fahodzi","screen_name":"tiatafahodzi","location":"Watford, England","url":"http:\/\/www.tiatafahodzi.com","description":"tee\u2219ah\u2219tah fa\u2219hoon\u2219zi (n) Britain\u2019s leading African theatre company, producing world-class theatre that reflects the changing African diaspora in Britain.","protected":false,"verified":false,"followers_count":1015,"friends_count":402,"listed_count":30,"favourites_count":367,"statuses_count":1856,"created_at":"Tue Nov 22 16:14:18 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000052937503\/8c88575c2c6241fc66a778d8b9937cc0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000052937503\/8c88575c2c6241fc66a778d8b9937cc0.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594435332155772928\/scpukirY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594435332155772928\/scpukirY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418813172\/1444857633","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4f854c83732cf4f5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4f854c83732cf4f5.json","place_type":"city","name":"Watford","full_name":"Watford, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-0.444459,51.632236],[-0.444459,51.703921],[-0.340092,51.703921],[-0.340092,51.632236]]]},"attributes":{}},"contributors":null,"quoted_status_id":663716517918412800,"quoted_status_id_str":"663716517918412800","quoted_status":{"created_at":"Mon Nov 09 13:55:23 +0000 2015","id":663716517918412800,"id_str":"663716517918412800","text":"Congrats to @tiatafahodzi for curating such a fantastic #tiatadelights15 very proud to be part of the event!","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973658931,"id_str":"2973658931","name":"Kemi-bo","screen_name":"kemi_bo","location":null,"url":null,"description":"Gotcha","protected":false,"verified":false,"followers_count":130,"friends_count":178,"listed_count":4,"favourites_count":18,"statuses_count":191,"created_at":"Sun Jan 11 20:56:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554387058873999361\/N0VhGSH4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554387058873999361\/N0VhGSH4.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556883846646358016\/fHRhHLkl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556883846646358016\/fHRhHLkl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973658931\/1421013589","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tiatadelights15","indices":[56,72]}],"urls":[],"user_mentions":[{"screen_name":"tiatafahodzi","name":"tiata fahodzi","id":418813172,"id_str":"418813172","indices":[12,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/laWdIzujnm","expanded_url":"https:\/\/twitter.com\/kemi_bo\/status\/663716517918412800","display_url":"twitter.com\/kemi_bo\/status\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135637041153,"id_str":"663728135637041153","text":"\u300e\u82f1\u8a9e\uff08\u81ea\u4e3b\uff09\u300f 14\u5206 https:\/\/t.co\/RdoQWOE8Sb #studyplus","source":"\u003ca href=\"http:\/\/studyplus.jp\" rel=\"nofollow\"\u003eStudyplus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3383009714,"id_str":"3383009714","name":"\u30b3\u30b8\u30de\u306f\u3075\u3041\u307c\u308a\u866b@\u52c9\u5f37\u57a2","screen_name":"moeka0803111","location":"\\\u5408\u683c\/","url":null,"description":"\u672c\u57a2\u21d2@moekapopo08031 \u7b2c\u4e00\u5fd7\u671b\u5408\u683c\uff01 \u30b9\u30bf\u30d7\u30e9\u9ad8\u6821\u53d7\u9a13 |\u7b51\u9644| |\u8c4a\u5cf6\u5ca1| |\u5927\u5bae|","protected":false,"verified":false,"followers_count":129,"friends_count":92,"listed_count":1,"favourites_count":209,"statuses_count":312,"created_at":"Sat Aug 29 15:43:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637652039967703040\/PT8F1Onf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637652039967703040\/PT8F1Onf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3383009714\/1440863362","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"studyplus","indices":[37,47]}],"urls":[{"url":"https:\/\/t.co\/RdoQWOE8Sb","expanded_url":"http:\/\/studyplus.jp\/users\/24fdf95ad1f411e48b1a22000a783bbc\/events\/120668228","display_url":"studyplus.jp\/users\/24fdf95a\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093665"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135641374722,"id_str":"663728135641374722","text":"RT @JoseMariFC: S\u00f3lo el #SevillaFC ha sido capaz de ganar al Barcelona sin Messi desde que este se lesion\u00f3. \u00bfPero no era tan f\u00e1cil?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1638362468,"id_str":"1638362468","name":"| Misael Bayo |","screen_name":"Misael_BayoSFC","location":"Sevilla, Andaluc\u00eda","url":null,"description":"17 a\u00f1os, De Sevilla por suerte & Sevillista hasta la muerte. Orgulloso de mi mismo y fiel a mis principios \/\/ Llevo el Rap en cada c\u00e9lula de mi cuerpo. \/\/\u2665SFDK\u2665","protected":false,"verified":false,"followers_count":213,"friends_count":277,"listed_count":10,"favourites_count":710,"statuses_count":4078,"created_at":"Thu Aug 01 16:34:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994087390392327\/XoYnOmgc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994087390392327\/XoYnOmgc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1638362468\/1426347850","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:27 +0000 2015","id":663726601495015424,"id_str":"663726601495015424","text":"S\u00f3lo el #SevillaFC ha sido capaz de ganar al Barcelona sin Messi desde que este se lesion\u00f3. \u00bfPero no era tan f\u00e1cil?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184454726,"id_str":"184454726","name":"Sevilla FC [Jose M.]","screen_name":"JoseMariFC","location":"Sevilla","url":null,"description":"SEVILLA FC | Informaci\u00f3n | Opini\u00f3n | Cantera | Directos | Datos | Me lees en http:\/\/cronicasdeunsevillista.wordpress.com y http:\/\/nervioneo.com | #eterno16","protected":false,"verified":false,"followers_count":15817,"friends_count":275,"listed_count":118,"favourites_count":15,"statuses_count":134320,"created_at":"Sun Aug 29 16:09:39 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629601545848549376\/vt3j4cAJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629601545848549376\/vt3j4cAJ.jpg","profile_background_tile":false,"profile_link_color":"C20404","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656559487369789440\/JJfWUCty_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656559487369789440\/JJfWUCty_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184454726\/1447027445","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":2,"entities":{"hashtags":[{"text":"SevillaFC","indices":[8,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SevillaFC","indices":[24,34]}],"urls":[],"user_mentions":[{"screen_name":"JoseMariFC","name":"Sevilla FC [Jose M.]","id":184454726,"id_str":"184454726","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080093666"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135616131072,"id_str":"663728135616131072","text":"@s2_yongr2 \uadf8\uc815\ub3c4\uc57c?\u314b\u314b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728001129971712,"in_reply_to_status_id_str":"663728001129971712","in_reply_to_user_id":3314566135,"in_reply_to_user_id_str":"3314566135","in_reply_to_screen_name":"s2_yongr2","user":{"id":3426800360,"id_str":"3426800360","name":"\ub450\ubd09\uc774\ub124","screen_name":"704x922","location":"\ub124\uac00 \uc62c \uadf8\uacf3","url":null,"description":"\u2764\ufe0f \ud3c9\uc0dd\uc724\ub450\uc900\ud32c @BeeeestDJ\u2764\ufe0f","protected":false,"verified":false,"followers_count":136,"friends_count":122,"listed_count":1,"favourites_count":94,"statuses_count":3157,"created_at":"Wed Sep 02 14:45:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661942527067484160\/E17wJLil_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661942527067484160\/E17wJLil_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3426800360\/1444900822","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s2_yongr2","name":"\uc6a9\uc54c\uc774","id":3314566135,"id_str":"3314566135","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080093660"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135632908288,"id_str":"663728135632908288","text":"\u4eca\u65e5\u3082\uff11\u65e5\u9577\u304b\u3063\u305f\u30fc(:3_\u30fd)_\u70ad\u9178\u98f2\u307f\u305f\u304b\u3063\u305f\u3051\u3069\u81ea\u8ca9\u306b\u30b3\u30fc\u30e9\u3057\u304b\u306a\u304b\u3063\u305f(\uff1b\u25bd\uff1b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":417663474,"id_str":"417663474","name":"\u307e\u3044\u3068\u3082","screen_name":"mayux5296","location":"\u5343\u8449\u770c \u516b\u5343\u4ee3\u2192\u6771\u4eac","url":null,"description":"\u3055\u3093\u307a\u3044 \u203b\u30b3\u30d6\u30af\u30ed\/TE\u4f1a\u54e1\/\u9ad8\u6a4b\u512a\/\u963f\u90e8\u771f\u592e \u304a\u4ed5\u4e8b\u2192\u7167\u660e\u3055\u3093","protected":false,"verified":false,"followers_count":460,"friends_count":519,"listed_count":11,"favourites_count":563,"statuses_count":6671,"created_at":"Mon Nov 21 06:58:06 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628316039\/mg45e6a2zelw6yhpw57k.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628316039\/mg45e6a2zelw6yhpw57k.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2541982367\/DVC00243_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2541982367\/DVC00243_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/417663474\/1437264257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093664"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628656641,"id_str":"663728135628656641","text":"@janpoke1202 \u30d4\u30b9\u30bf\u30c1\u30aa\u3067\u3059^_^","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723855513559040,"in_reply_to_status_id_str":"663723855513559040","in_reply_to_user_id":135164345,"in_reply_to_user_id_str":"135164345","in_reply_to_screen_name":"janpoke1202","user":{"id":1543034336,"id_str":"1543034336","name":"\u306e\u3093\u304f\u307e\u30dd\u30b1\u30c3\u30c8","screen_name":"monkuma1","location":"\u5009\u6577\u21d4\u96e3\u6ce2\u30fb\u6e0b\u8c37\u30fb\u56fd\u7acb\u30fb\u5e55\u5f35","url":null,"description":"\u30b8\u30e3\u30f3\u30dd\u30b1 \u304f\u307e\u30e2\u30f3 \u30b3\u30de\u3055\u3093 \u30d5\u30a1\u30c3\u30b7\u30e7\u30f3 \u30b0\u30eb\u30e1 \u30de\u30c3\u30b5\u30fc\u30b8\u5c4b\u3055\u3093\u304c\u597d\u304d\u306a20\u4ee3\u5973\u5b50\u3067\u3059\u3002\u767a\u9054\u969c\u5bb3\u304c\u3042\u308a\u3001\u5bfe\u4eba\u95a2\u4fc2\u304c\u6700\u3082\u82e6\u624b\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":361,"friends_count":412,"listed_count":3,"favourites_count":10584,"statuses_count":25291,"created_at":"Mon Jun 24 10:56:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660098045745360896\/aYGYWWrP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660098045745360896\/aYGYWWrP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1543034336\/1438523709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"212d25b5a5b3ca68","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/212d25b5a5b3ca68.json","place_type":"city","name":"\u7dcf\u793e\u5e02","full_name":"\u5ca1\u5c71\u770c \u7dcf\u793e\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[133.590382,34.620296],[133.590382,34.775777],[133.818092,34.775777],[133.818092,34.620296]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"janpoke1202","name":"\u30b8\u30e3\u30f3\u30b0\u30eb\u30dd\u30b1\u30c3\u30c8 \u304a\u305f\u3051","id":135164345,"id_str":"135164345","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093663"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135612051458,"id_str":"663728135612051458","text":"Thanks to my top interactors! @ArabianPages @GayeCrispin @poemprose #tweetjukebox via https:\/\/t.co\/Gm17Zly5Q0","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35051060,"id_str":"35051060","name":"Pamela DeNeuve","screen_name":"pdeneuve","location":"FLORIDA","url":"http:\/\/www.boldandbravelegalladies.com","description":"GENDER EQUITY - International Coach for Women Attorneys| Strategic Career Planning| Marketing to Build Books of Business","protected":false,"verified":false,"followers_count":1885,"friends_count":1608,"listed_count":154,"favourites_count":4295,"statuses_count":18437,"created_at":"Fri Apr 24 21:46:48 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595643722643218433\/Lkv9qlZF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595643722643218433\/Lkv9qlZF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35051060\/1430847471","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tweetjukebox","indices":[70,83]}],"urls":[{"url":"https:\/\/t.co\/Gm17Zly5Q0","expanded_url":"http:\/\/tweetjukebox.com\/thankyou","display_url":"tweetjukebox.com\/thankyou","indices":[88,111]}],"user_mentions":[{"screen_name":"ArabianPages","name":"#ArabianPages 60K \u2728\u2728","id":1325709318,"id_str":"1325709318","indices":[30,43]},{"screen_name":"GayeCrispin","name":"Gaye Crispin","id":162194427,"id_str":"162194427","indices":[44,56]},{"screen_name":"poemprose","name":"Huma","id":109531578,"id_str":"109531578","indices":[57,67]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093659"} +{"delete":{"status":{"id":638327267035336704,"id_str":"638327267035336704","user_id":3248724033,"user_id_str":"3248724033"},"timestamp_ms":"1447080093836"}} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135624482817,"id_str":"663728135624482817","text":"@SUCKXV \u0e1e\u0e35\u0e48\u0e0a\u0e2d\u0e19\u0e2d\u0e48\u0e30\u0e21\u0e35\u0e40\u0e27\u0e25\u0e32\u0e19\u0e49\u0e2d\u0e22\u0e01\u0e27\u0e48\u0e32\u0e27\u0e34\u0e13\u0e2d\u0e35\u0e01\u0e46 \u0e2a\u0e38\u0e14\u0e40\u0e2a\u0e49\u0e32\u0e40\u0e25\u0e22\u0e19\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726172430204928,"in_reply_to_status_id_str":"663726172430204928","in_reply_to_user_id":3889842974,"in_reply_to_user_id_str":"3889842974","in_reply_to_screen_name":"SUCKXV","user":{"id":3976271610,"id_str":"3976271610","name":"\u0e27\u0e34\u0e13 @readbio","screen_name":"wynnx96","location":null,"url":null,"description":"\u0e1e\u0e35\u0e48\u0e02\u0e2d\u0e23\u0e49\u0e2d\u0e07 \u0e19\u0e49\u0e2d\u0e07\u0e2d\u0e22\u0e48\u0e32\u0e01\u0e23\u0e35\u0e4a\u0e14 (\u0e14\u0e34\u0e2a\u0e19\u0e35\u0e49\u0e21\u0e2d\u0e07\u0e01\u0e35\u0e48\u0e17\u0e35\u0e01\u0e47\u0e2b\u0e25\u0e48\u0e2d)","protected":false,"verified":false,"followers_count":49,"friends_count":45,"listed_count":1,"favourites_count":137,"statuses_count":7017,"created_at":"Thu Oct 22 04:22:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663314897120309248\/pYWUmQhj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663314897120309248\/pYWUmQhj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3976271610\/1446265631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SUCKXV","name":"\u0e17\u0e2d\u0e22\u0e2d\u0e01\u0e2b\u0e31\u0e01 (closed)","id":3889842974,"id_str":"3889842974","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080093662"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135612051456,"id_str":"663728135612051456","text":"(Fans not so much)))) https:\/\/t.co\/b5ksmcXgf5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1958796296,"id_str":"1958796296","name":"Toussaint Lukyanov","screen_name":"Medus001","location":"Canada","url":"https:\/\/vk.com\/medus001","description":"awenydd","protected":false,"verified":false,"followers_count":451,"friends_count":375,"listed_count":23,"favourites_count":7025,"statuses_count":17532,"created_at":"Sun Oct 13 14:27:02 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663678416412147712\/vAiS6jrl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663678416412147712\/vAiS6jrl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1958796296\/1447020493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727680592982016,"quoted_status_id_str":"663727680592982016","quoted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727680592982016,"id_str":"663727680592982016","text":"18-year-old wins $250,000 for video that makes Einstein's mind-bending theory seem simple https:\/\/t.co\/LmXtRMWV0i https:\/\/t.co\/iMWWAJthWe","source":"\u003ca href=\"http:\/\/www.businessinsider.com\" rel=\"nofollow\"\u003eBusiness Insider\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20562637,"id_str":"20562637","name":"Business Insider","screen_name":"businessinsider","location":"New York, NY","url":"http:\/\/businessinsider.com\/","description":"What you need to know.","protected":false,"verified":true,"followers_count":1371275,"friends_count":191,"listed_count":22496,"favourites_count":390,"statuses_count":244557,"created_at":"Wed Feb 11 01:18:18 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"185F7C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563745973810110464\/LOuV92MN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563745973810110464\/LOuV92MN.jpeg","profile_background_tile":false,"profile_link_color":"185F7C","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661313209605976064\/EjEK7KeO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661313209605976064\/EjEK7KeO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20562637\/1423242532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LmXtRMWV0i","expanded_url":"http:\/\/read.bi\/1MGW2Bk","display_url":"read.bi\/1MGW2Bk","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":663727679951216640,"id_str":"663727679951216640","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzu8WIAA-BOC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzu8WIAA-BOC.png","url":"https:\/\/t.co\/iMWWAJthWe","display_url":"pic.twitter.com\/iMWWAJthWe","expanded_url":"http:\/\/twitter.com\/businessinsider\/status\/663727680592982016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727679951216640,"id_str":"663727679951216640","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIzu8WIAA-BOC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIzu8WIAA-BOC.png","url":"https:\/\/t.co\/iMWWAJthWe","display_url":"pic.twitter.com\/iMWWAJthWe","expanded_url":"http:\/\/twitter.com\/businessinsider\/status\/663727680592982016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b5ksmcXgf5","expanded_url":"https:\/\/twitter.com\/businessinsider\/status\/663727680592982016","display_url":"twitter.com\/businessinside\u2026","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093659"} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135611912192,"id_str":"663728135611912192","text":"@asada4no \u304b\u308b\u304f\u63a2\u3057\u305f\u611f\u3058\u3053\u306e\u3078\u3093\u306f\u3042\u3063\u305f\uff01\n\u306a\u306b\u8db3\u308a\u306a\u3044\uff1f https:\/\/t.co\/qUYP4gT2iF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727478741925889,"in_reply_to_status_id_str":"663727478741925889","in_reply_to_user_id":841935516,"in_reply_to_user_id_str":"841935516","in_reply_to_screen_name":"asada4no","user":{"id":456472783,"id_str":"456472783","name":"\u3089\u3073","screen_name":"rabiif","location":null,"url":null,"description":"It is everywhere you've ever been.","protected":false,"verified":false,"followers_count":259,"friends_count":194,"listed_count":9,"favourites_count":935,"statuses_count":12608,"created_at":"Fri Jan 06 08:51:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634392957466992640\/x03yRyj0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634392957466992640\/x03yRyj0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456472783\/1440073742","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asada4no","name":"\u3057\u306e\u3093","id":841935516,"id_str":"841935516","indices":[0,9]}],"symbols":[],"media":[{"id":663728123033186304,"id_str":"663728123033186304","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNhjUcAAV8hZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNhjUcAAV8hZ.jpg","url":"https:\/\/t.co\/qUYP4gT2iF","display_url":"pic.twitter.com\/qUYP4gT2iF","expanded_url":"http:\/\/twitter.com\/rabiif\/status\/663728135611912192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728123033186304,"id_str":"663728123033186304","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNhjUcAAV8hZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNhjUcAAV8hZ.jpg","url":"https:\/\/t.co\/qUYP4gT2iF","display_url":"pic.twitter.com\/qUYP4gT2iF","expanded_url":"http:\/\/twitter.com\/rabiif\/status\/663728135611912192\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080093659"} +{"delete":{"status":{"id":579258091071406080,"id_str":"579258091071406080","user_id":72316759,"user_id_str":"72316759"},"timestamp_ms":"1447080094037"}} +{"created_at":"Mon Nov 09 14:41:33 +0000 2015","id":663728135628857345,"id_str":"663728135628857345","text":"\"Will Daddy be home soon?\" https:\/\/t.co\/yNwYg5nEV0","source":"\u003ca href=\"http:\/\/mvilla.it\/fenix\" rel=\"nofollow\"\u003eFenix for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":581766161,"id_str":"581766161","name":"Ponpon","screen_name":"tanukiwag","location":"Cambridge, UK","url":null,"description":"Tanuki with a reputation to live down to.","protected":false,"verified":false,"followers_count":692,"friends_count":245,"listed_count":18,"favourites_count":14848,"statuses_count":52835,"created_at":"Wed May 16 11:49:50 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550969080484601856\/2gKp2cIN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550969080484601856\/2gKp2cIN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/581766161\/1427452659","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728134743814144,"id_str":"663728134743814144","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJONLWcAAT_vN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJONLWcAAT_vN.jpg","url":"https:\/\/t.co\/yNwYg5nEV0","display_url":"pic.twitter.com\/yNwYg5nEV0","expanded_url":"http:\/\/twitter.com\/tanukiwag\/status\/663728135628857345\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":818,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":1280,"resize":"fit"},"small":{"w":340,"h":463,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728134743814144,"id_str":"663728134743814144","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJONLWcAAT_vN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJONLWcAAT_vN.jpg","url":"https:\/\/t.co\/yNwYg5nEV0","display_url":"pic.twitter.com\/yNwYg5nEV0","expanded_url":"http:\/\/twitter.com\/tanukiwag\/status\/663728135628857345\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":818,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":938,"h":1280,"resize":"fit"},"small":{"w":340,"h":463,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080093663"} +{"delete":{"status":{"id":661921934083420160,"id_str":"661921934083420160","user_id":3130418334,"user_id_str":"3130418334"},"timestamp_ms":"1447080094239"}} +{"delete":{"status":{"id":645214855251689472,"id_str":"645214855251689472","user_id":1619973012,"user_id_str":"1619973012"},"timestamp_ms":"1447080094370"}} +{"delete":{"status":{"id":663699626957012992,"id_str":"663699626957012992","user_id":4179211332,"user_id_str":"4179211332"},"timestamp_ms":"1447080094593"}} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139827331072,"id_str":"663728139827331072","text":"RT @amandak_2011: F\u00e9rias porque demora tanto \ud83d\ude2a\ud83d\udeab","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886092997,"id_str":"2886092997","name":"Carol","screen_name":"carolcouto22","location":null,"url":null,"description":"Bow up bitches.","protected":false,"verified":false,"followers_count":400,"friends_count":301,"listed_count":1,"favourites_count":10532,"statuses_count":6718,"created_at":"Thu Nov 20 21:08:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584363360734486529\/K1TDGDjA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584363360734486529\/K1TDGDjA.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662410977149849600\/aoEFDgcm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662410977149849600\/aoEFDgcm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886092997\/1446302218","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:38 +0000 2015","id":663727399197085696,"id_str":"663727399197085696","text":"F\u00e9rias porque demora tanto \ud83d\ude2a\ud83d\udeab","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":396229672,"id_str":"396229672","name":"Amanda","screen_name":"amandak_2011","location":"Sorocaba, S\u00e3o Paulo","url":null,"description":"Kawlaran *-* \u2661","protected":false,"verified":false,"followers_count":754,"friends_count":1339,"listed_count":0,"favourites_count":631,"statuses_count":2431,"created_at":"Sat Oct 22 23:29:42 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000119611423\/59b146ec7c7cd8dfbab870437f6b8d26.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000119611423\/59b146ec7c7cd8dfbab870437f6b8d26.jpeg","profile_background_tile":true,"profile_link_color":"0F0E0F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604734827217219584\/-qVamUqG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604734827217219584\/-qVamUqG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396229672\/1433115637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amandak_2011","name":"Amanda","id":396229672,"id_str":"396229672","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080094664"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810525184,"id_str":"663728139810525184","text":"RT @VignaSonrioXvos: SETECIENTOS Mabeeel! @flor_vigna \n #FansAwards2015 #LaDiosa Flor Vigna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989044387,"id_str":"2989044387","name":"Celeee","screen_name":"PaioftFlorencia","location":"En un lugar, fracasando seguro","url":null,"description":"River ante todo","protected":false,"verified":false,"followers_count":3678,"friends_count":957,"listed_count":2,"favourites_count":11782,"statuses_count":31546,"created_at":"Wed Jan 21 06:30:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625388618996183040\/JnAX7poe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625388618996183040\/JnAX7poe.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661767786012741632\/VhFYLODo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661767786012741632\/VhFYLODo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989044387\/1446619078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:58:22 +0000 2015","id":663566271808733184,"id_str":"663566271808733184","text":"SETECIENTOS Mabeeel! @flor_vigna \n #FansAwards2015 #LaDiosa Flor Vigna","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1383288740,"id_str":"1383288740","name":"Flor Vigna TE AMO\u2764","screen_name":"VignaSonrioXvos","location":"Capital - Salta, Argentina","url":null,"description":"19fav de Flor1RT\/8Fv-Mechi\/9Fv-Vir\/1Rt-Sol,Vir-Efa y Cris\/3Fv-Efa\/1Fv-Estefi-Andre-Bian\/2Fav-Nico,Pau\/Pity, Efa,Mechi,PAU y FLOR Me siguen\u2764La Conoc\u00ed el18-09-15\u2764","protected":false,"verified":false,"followers_count":2803,"friends_count":2334,"listed_count":2,"favourites_count":4992,"statuses_count":17438,"created_at":"Sat Apr 27 01:38:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647960935693438976\/reTldez0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647960935693438976\/reTldez0.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646857954529046532\/_7LMpyLm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646857954529046532\/_7LMpyLm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1383288740\/1438883838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[35,50]},{"text":"LaDiosa","indices":[51,59]}],"urls":[],"user_mentions":[{"screen_name":"flor_vigna","name":"Flor Vigna","id":2468662926,"id_str":"2468662926","indices":[21,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[56,71]},{"text":"LaDiosa","indices":[72,80]}],"urls":[],"user_mentions":[{"screen_name":"VignaSonrioXvos","name":"Flor Vigna TE AMO\u2764","id":1383288740,"id_str":"1383288740","indices":[3,19]},{"screen_name":"flor_vigna","name":"Flor Vigna","id":2468662926,"id_str":"2468662926","indices":[42,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831496704,"id_str":"663728139831496704","text":"\ufe91\ufee0\ufeee\ufb7a \ufead\ufeeb\ufee8\ufee4\ufe8e\ufeb3\ufeae\ufea9\ufe8d\ufead\ufee3\ufbff\ufeae\ufe91\ufe8e\ufea9\ufeb7\ufe8e\ufba6 \ufead\ufeed\ufb88\ufe8d\ufbfe\ufb91\ufeb4\ufbff\ufee8\ufb89\ufee7\ufb67 \ufee3\ufbff\ufb9f \ufe97\ufeec\ufeee\ufb8c\ufe8d\ufeaf\ufea7\ufee4\ufbfd \ufe8d\ufedf\ufee0\ufba7 \ufe97\ufecc\ufe8e\ufedf\ufe8a \ufebb\ufea4\ufbff\ufe8e\ufe91\ufbfd \ufea9\ufbae \ufebb\ufeee\ufed3\ufbfd \ufee3\ufea4\ufee4\ufeaa\ufe91\ufea8\ufeb6 BQM","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":980619679,"id_str":"980619679","name":"\u0622\u0630\u0627\u062f\u0645\u06cc\u0688\u06cc\u0627=\u0645\u0638\u0644\u0648\u0645 \u0622\u0648\u0627\u0632","screen_name":"BROTHER_NEWS","location":"\u0627\u0633\u0644\u0627\u0645 \u0622\u0628\u0627\u062f","url":null,"description":"\u200f\u062f\u0646 \u06c1\u0648\u06cc\u0627 \u0631\u0627\u062a \u0622\u0646\u062f\u06be\u06cc \u06c1\u0648 \u06cc\u0627 \u0637\u0648\u0641\u0627\u0646 \u0628\u0631\u0627\u062f\u0631 \u0646\u06cc\u0648\u0632 \u06c1\u0631\u0648\u0642\u062a \u0622\u067e \u06a9\u0648 \u067e\u06c1\u0646\u0686\u0627\u06d3\r\n \u062a\u06cc\u0632 \u062e\u0628\u0631\u06cc\u06ba \u062f\u06cc\u0631 \u0646\u06c1 \u06a9\u0631\u06cc\u06ba \u0627\u0628\u06be\u06cc \u0641\u0627\u0644\u0648 \u06a9\u0631\u06cc\u06ba\r\nFOLLOW BROTHER_NEWS\r\nSEND.TO.40404 to bar","protected":false,"verified":false,"followers_count":5673,"friends_count":108,"listed_count":1,"favourites_count":9,"statuses_count":15998,"created_at":"Fri Nov 30 14:52:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550576141783019520\/FMPHXe4w_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550576141783019520\/FMPHXe4w_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ur","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139827310593,"id_str":"663728139827310593","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254864326,"id_str":"3254864326","name":"Thurman Ferrieri","screen_name":"miliwutaxyt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":137,"friends_count":903,"listed_count":6,"favourites_count":16194,"statuses_count":16634,"created_at":"Thu May 14 22:38:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645576212467707904\/XJh32Hlv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645576212467707904\/XJh32Hlv_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":521,"favorite_count":304,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094664"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802165248,"id_str":"663728139802165248","text":"@Alcddinx true, true","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727264782225408,"in_reply_to_status_id_str":"663727264782225408","in_reply_to_user_id":2279962245,"in_reply_to_user_id_str":"2279962245","in_reply_to_screen_name":"Alcddinx","user":{"id":3344998971,"id_str":"3344998971","name":"luna\u00a1","screen_name":"icyhct","location":null,"url":null,"description":"feelin' smitten","protected":false,"verified":false,"followers_count":107,"friends_count":24,"listed_count":0,"favourites_count":137,"statuses_count":1419,"created_at":"Thu Jun 25 03:24:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663556838189867008\/LwoIPA9z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663556838189867008\/LwoIPA9z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3344998971\/1447039250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Alcddinx","name":"King Zay","id":2279962245,"id_str":"2279962245","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139806314500,"id_str":"663728139806314500","text":"RT @x_lucid: Every day https:\/\/t.co\/TPoRqzsMqG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":617356818,"id_str":"617356818","name":"\u2728 Ariana Christine \u2728","screen_name":"Buttwell_21","location":"Phenix City, AL","url":null,"description":"Live free \u2600\ufe0f| CVCC #15\u26be\ufe0f\u2693\ufe0f","protected":false,"verified":false,"followers_count":1610,"friends_count":1077,"listed_count":7,"favourites_count":35270,"statuses_count":53370,"created_at":"Sun Jun 24 16:47:00 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663195372005810176\/URh0VIo__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663195372005810176\/URh0VIo__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/617356818\/1446910981","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:42 +0000 2015","id":663714836182863872,"id_str":"663714836182863872","text":"Every day https:\/\/t.co\/TPoRqzsMqG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2460502363,"id_str":"2460502363","name":"femme fatal","screen_name":"x_lucid","location":null,"url":null,"description":"artistically driven, sarcastically inclined. lesbian\/\/nyc","protected":false,"verified":false,"followers_count":825,"friends_count":466,"listed_count":0,"favourites_count":3676,"statuses_count":13620,"created_at":"Wed Apr 23 23:56:15 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651120678859440128\/wvSNEzO4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651120678859440128\/wvSNEzO4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2460502363\/1446921500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663714830478499844,"id_str":"663714830478499844","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","url":"https:\/\/t.co\/TPoRqzsMqG","display_url":"pic.twitter.com\/TPoRqzsMqG","expanded_url":"http:\/\/twitter.com\/x_lucid\/status\/663714836182863872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":500,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":378,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714830478499844,"id_str":"663714830478499844","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","url":"https:\/\/t.co\/TPoRqzsMqG","display_url":"pic.twitter.com\/TPoRqzsMqG","expanded_url":"http:\/\/twitter.com\/x_lucid\/status\/663714836182863872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":500,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":378,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"x_lucid","name":"femme fatal","id":2460502363,"id_str":"2460502363","indices":[3,11]}],"symbols":[],"media":[{"id":663714830478499844,"id_str":"663714830478499844","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","url":"https:\/\/t.co\/TPoRqzsMqG","display_url":"pic.twitter.com\/TPoRqzsMqG","expanded_url":"http:\/\/twitter.com\/x_lucid\/status\/663714836182863872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":500,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":378,"resize":"fit"}},"source_status_id":663714836182863872,"source_status_id_str":"663714836182863872","source_user_id":2460502363,"source_user_id_str":"2460502363"}]},"extended_entities":{"media":[{"id":663714830478499844,"id_str":"663714830478499844","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9Hy7UYAQquwv.jpg","url":"https:\/\/t.co\/TPoRqzsMqG","display_url":"pic.twitter.com\/TPoRqzsMqG","expanded_url":"http:\/\/twitter.com\/x_lucid\/status\/663714836182863872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"large":{"w":500,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":378,"resize":"fit"}},"source_status_id":663714836182863872,"source_status_id_str":"663714836182863872","source_user_id":2460502363,"source_user_id_str":"2460502363"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094659"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831521280,"id_str":"663728139831521280","text":"RT @JuanMartinezmm: No puede hacer tanto calor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1643682018,"id_str":"1643682018","name":"Maay\u270c","screen_name":"MaiiAldosivi","location":"donde el chiquito este","url":"http:\/\/demizorra.com","description":"\u2665 \u271e De mi chiqui Rama\u10e6 \/ A\u2113\u2202\u03c3\u0455ivi\u270c& Nada Mas ;)","protected":false,"verified":false,"followers_count":514,"friends_count":412,"listed_count":0,"favourites_count":1697,"statuses_count":47642,"created_at":"Sat Aug 03 21:42:09 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593976472903094272\/z1LYxl_t.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593976472903094272\/z1LYxl_t.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656240318090747904\/_LOiD9in_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656240318090747904\/_LOiD9in_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1643682018\/1444852903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:29 +0000 2015","id":663725351324024832,"id_str":"663725351324024832","text":"No puede hacer tanto calor","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987632215,"id_str":"2987632215","name":"BOCAMPEON","screen_name":"JuanMartinezmm","location":"Donde. Boca este ","url":null,"description":"Fb: Juan Martinez \/\/ Wpp 2236948746 \/\/ Mi Unico Amor Boca Juniors 12#\/\/LPDO Ah Todo Ritmo\/\/ De mi novia que me ama","protected":false,"verified":false,"followers_count":852,"friends_count":1906,"listed_count":1,"favourites_count":2027,"statuses_count":5098,"created_at":"Tue Jan 20 18:07:23 +0000 2015","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598589421005320192\/gVgjYUIc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598589421005320192\/gVgjYUIc.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662047693611601921\/iO42DbmD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662047693611601921\/iO42DbmD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987632215\/1446511500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JuanMartinezmm","name":"BOCAMPEON","id":2987632215,"id_str":"2987632215","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810570240,"id_str":"663728139810570240","text":"Il va pas \u00eatre content Mr Poutine #AMA #IAAF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":443135534,"id_str":"443135534","name":"Antonin","screen_name":"AntoPltr","location":"DumontZoo - Caen","url":null,"description":"19 yo \u2022 On verra bien, c'que l'avenir nous reserv'ra.","protected":false,"verified":false,"followers_count":59,"friends_count":55,"listed_count":0,"favourites_count":1991,"statuses_count":2643,"created_at":"Wed Dec 21 21:16:07 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"022B4D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0550E6","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615217115101007872\/8jRX61xm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615217115101007872\/8jRX61xm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/443135534\/1423956333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMA","indices":[34,38]},{"text":"IAAF","indices":[39,44]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139814744064,"id_str":"663728139814744064","text":"All I want is Kai Lana \ud83d\ude14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":383929252,"id_str":"383929252","name":"Kristen Dadisman","screen_name":"_kdad","location":"Louisville, KY","url":"http:\/\/Instagram.com\/_kdad","description":"University of Kentucky Cheerleader - Louisville \u27a1\ufe0f Lexington - snapchat: kdad24","protected":false,"verified":false,"followers_count":1096,"friends_count":786,"listed_count":0,"favourites_count":4144,"statuses_count":11432,"created_at":"Sun Oct 02 19:23:54 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/341960083\/vintage-pattern-black-and-white.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/341960083\/vintage-pattern-black-and-white.jpg","profile_background_tile":false,"profile_link_color":"04E3D8","profile_sidebar_border_color":"24E0E0","profile_sidebar_fill_color":"010203","profile_text_color":"A1A6A6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657754540121419776\/wFUaNE6n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657754540121419776\/wFUaNE6n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/383929252\/1439663185","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094661"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831369728,"id_str":"663728139831369728","text":"\u660e\u65e5\u306f\u65e9\u3044\u304b\u3089\u5bdd\u307e\u3063\u3059\uff5e\n\u304a\u3084\u3084\u3093\u3084\uff5e\uff89\uff7c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":592054923,"id_str":"592054923","name":"\u306e\u308a\u30ab\u30ec\u30fc@\u97ff\u5b50\u97ff\u5b50\u97ff\u5b50","screen_name":"MBIFDS","location":null,"url":null,"description":"\u30b3\u30df\u30e5\u969c\u306ekz\/\u96fb\u8eca\u597d\u304d\/\u30b2\u30fc\u30e0\u597d\u304d\/\u307e\u3055\u304b\u306eMHF\u306b\u5fa9\u5e30\/\u81ea\u5df1\u6e80\u8db3\u306e\u70ba\u306b\u4f5c\u3063\u305f\u30a2\u30ab\u30a6\u30f3\u30c8\u306a\u306e\u3067\u3064\u307e\u3089\u306a\u3044\u3053\u3068\u3057\u304b\u545f\u304d\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":44,"friends_count":41,"listed_count":0,"favourites_count":66,"statuses_count":4793,"created_at":"Sun May 27 16:59:12 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2263013952\/IMG00045_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2263013952\/IMG00045_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/592054923\/1422114413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831480320,"id_str":"663728139831480320","text":"RT @BonJoviUpdates: Jon @BonJovi pictured with Selena Gomez in Los Angeles. - November 5, 2015\n(Credit: gomez.22_selena on Instagram) https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1134207734,"id_str":"1134207734","name":"Bon Jovi France","screen_name":"bonjovifrance","location":"France","url":"http:\/\/www.bonjovi.fr","description":"The French website #BonJovi - BjF site communautaire des fans fran\u00e7ais !","protected":false,"verified":false,"followers_count":300,"friends_count":164,"listed_count":1,"favourites_count":144,"statuses_count":530,"created_at":"Wed Jan 30 14:16:43 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660387172869152768\/Vk3_s_7Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660387172869152768\/Vk3_s_7Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1134207734\/1442925302","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 17:25:43 +0000 2015","id":662682285205037056,"id_str":"662682285205037056","text":"Jon @BonJovi pictured with Selena Gomez in Los Angeles. - November 5, 2015\n(Credit: gomez.22_selena on Instagram) https:\/\/t.co\/V3gLYdlabF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3147970564,"id_str":"3147970564","name":"Bon Jovi Updates","screen_name":"BonJoviUpdates","location":"Worldwide","url":"https:\/\/bonjoviupdates.wordpress.com\/","description":"Latest Bon Jovi News - For The Fans, By The Fans. Like us on Facebook: https:\/\/www.facebook.com\/BonJoviUpdates","protected":false,"verified":false,"followers_count":3259,"friends_count":535,"listed_count":18,"favourites_count":30,"statuses_count":2133,"created_at":"Wed Apr 08 13:31:05 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641921687521492992\/os_Uy9S__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641921687521492992\/os_Uy9S__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3147970564\/1441881013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BonJovi","name":"Bon Jovi","id":22720074,"id_str":"22720074","indices":[4,12]}],"symbols":[],"media":[{"id":662682265378492416,"id_str":"662682265378492416","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","url":"https:\/\/t.co\/V3gLYdlabF","display_url":"pic.twitter.com\/V3gLYdlabF","expanded_url":"http:\/\/twitter.com\/BonJoviUpdates\/status\/662682285205037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662682265378492416,"id_str":"662682265378492416","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","url":"https:\/\/t.co\/V3gLYdlabF","display_url":"pic.twitter.com\/V3gLYdlabF","expanded_url":"http:\/\/twitter.com\/BonJoviUpdates\/status\/662682285205037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BonJoviUpdates","name":"Bon Jovi Updates","id":3147970564,"id_str":"3147970564","indices":[3,18]},{"screen_name":"BonJovi","name":"Bon Jovi","id":22720074,"id_str":"22720074","indices":[24,32]}],"symbols":[],"media":[{"id":662682265378492416,"id_str":"662682265378492416","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","url":"https:\/\/t.co\/V3gLYdlabF","display_url":"pic.twitter.com\/V3gLYdlabF","expanded_url":"http:\/\/twitter.com\/BonJoviUpdates\/status\/662682285205037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662682285205037056,"source_status_id_str":"662682285205037056","source_user_id":3147970564,"source_user_id_str":"3147970564"}]},"extended_entities":{"media":[{"id":662682265378492416,"id_str":"662682265378492416","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJSAmLWEAAIg-F.jpg","url":"https:\/\/t.co\/V3gLYdlabF","display_url":"pic.twitter.com\/V3gLYdlabF","expanded_url":"http:\/\/twitter.com\/BonJoviUpdates\/status\/662682285205037056\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662682285205037056,"source_status_id_str":"662682285205037056","source_user_id":3147970564,"source_user_id_str":"3147970564"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810562048,"id_str":"663728139810562048","text":"RT @SaulloRubens: Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164436222,"id_str":"164436222","name":"Portal Mundial","screen_name":"portal_mundial","location":"Manaus - Amazonas","url":"http:\/\/www.radiocircuitomundial.com","description":"Somos a segunda maior web R\u00e1dio do Pa\u00eds . Portal de not\u00edcias com 5 anos de credibilidade e responsabilidade. E-mail RadioMundial@live.com","protected":false,"verified":false,"followers_count":2956,"friends_count":716,"listed_count":92,"favourites_count":18,"statuses_count":9029,"created_at":"Thu Jul 08 21:52:25 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476505098235813888\/bDcJJM4e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476505098235813888\/bDcJJM4e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164436222\/1402442718","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:26:11 +0000 2015","id":663694068732575744,"id_str":"663694068732575744","text":"Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178095302,"id_str":"178095302","name":"REI LE\u00c3O","screen_name":"SaulloRubens","location":"Bel\u00e9m - PA","url":null,"description":"Meu melhor objetivo \u00e9 ser bom para as pessoas e fazer com que elas sorriam.\n(Rubens, Saullo 2015)","protected":false,"verified":false,"followers_count":557,"friends_count":319,"listed_count":14,"favourites_count":3292,"statuses_count":34528,"created_at":"Fri Aug 13 21:30:18 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"2F323B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_tile":true,"profile_link_color":"1E2021","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178095302\/1445571111","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663677630714093568,"quoted_status_id_str":"663677630714093568","quoted_status":{"created_at":"Mon Nov 09 11:20:52 +0000 2015","id":663677630714093568,"id_str":"663677630714093568","text":"Anitta diz que n\u00e3o \u00e9 periguete e se compara a Rihanna e Beyonc\u00e9. https:\/\/t.co\/db8jDYgPni https:\/\/t.co\/CWfQZQNX6O","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2678394506,"id_str":"2678394506","name":"Portal Atualizado","screen_name":"p_atualizado","location":"Sao Paulo, Brasil","url":"http:\/\/www.patualizado.com.br\/","description":"Portal Atualizado, levando a voc\u00ea o melhor do entretenimento e informa\u00e7\u00e3o de credibilidade. e-mail: P.atualizado@gmail.com","protected":false,"verified":false,"followers_count":11128,"friends_count":588,"listed_count":2,"favourites_count":986,"statuses_count":1588,"created_at":"Fri Jul 25 01:52:50 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2678394506\/1444867913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/db8jDYgPni","expanded_url":"http:\/\/goo.gl\/lnmRBT","display_url":"goo.gl\/lnmRBT","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"SaulloRubens","name":"REI LE\u00c3O","id":178095302,"id_str":"178095302","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139823026178,"id_str":"663728139823026178","text":"RT @aqn_: \u300c\u6c17\u6301\u3061\u60aa\u3044\u304b\u3089\u5acc\u3044\u300d\u3068\u3044\u3046\u3053\u3068\u3092\u8a00\u3044\u305f\u304f\u306a\u3044\u304c\u305f\u3081\u306b\u5acc\u3044\u306a\u76f8\u624b\u306e\u60aa\u3044\u70b9\u3092\u634f\u9020\u3059\u308b\u306e\u672c\u5f53\u306b\u6700\u4f4e\u3060\u3068\u601d\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316580040,"id_str":"3316580040","name":"\u3082\u306b\u3085","screen_name":"jiro990416","location":null,"url":null,"description":"\u5984\u60f3\u53a8\u3002\u4e0d\u5b9a\u671f\u3067\u7d75\u63cf\u3044\u3066\u308b\u3002\u96d1\u98df\u3002\u4e0b\u30cd\u30bf\u3002\u6d0b\u30b2\u30fc(\u30d7\u30ed\u30c8\u30bf\u30a4\u30d7\u3001\u30a4\u30f3\u30d5\u30a1\u30de\u30b9\u30bb\u30ab\u30f3\u30c9\u30b5\u30f3)\u3068OFF\u3068\u677e\u304c\u597d\u304d\u3067\u3059\u3002\u3048\u3002\u30c6\u30f3\u30c6\u30f3\u3068\u304b\u3082\u3046\u795e\u3002\u30d5\u30a1\u30dc\u30ea\u30c4\u7a7a\u30ea\u30d7\u3044\u3063\u3071\u3044\u3059\u308b\u3002\u30ea\u30e0\u308a\u305f\u304b\u3063\u305f\u3089\u304a\u597d\u304d\u306b\u3069\u3046\u305e\u3002\u30d6\u30ed\u30c3\u30af\u306e\u65b9\u304c\u559c\u3073\u307e\u3059\u304c\u3002","protected":false,"verified":false,"followers_count":173,"friends_count":138,"listed_count":8,"favourites_count":15052,"statuses_count":11791,"created_at":"Sun Aug 16 07:42:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662785539540553733\/ZZPU5udt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662785539540553733\/ZZPU5udt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316580040\/1444442503","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:29:54 +0000 2015","id":663317516521861120,"id_str":"663317516521861120","text":"\u300c\u6c17\u6301\u3061\u60aa\u3044\u304b\u3089\u5acc\u3044\u300d\u3068\u3044\u3046\u3053\u3068\u3092\u8a00\u3044\u305f\u304f\u306a\u3044\u304c\u305f\u3081\u306b\u5acc\u3044\u306a\u76f8\u624b\u306e\u60aa\u3044\u70b9\u3092\u634f\u9020\u3059\u308b\u306e\u672c\u5f53\u306b\u6700\u4f4e\u3060\u3068\u601d\u3046\u3002","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131146491,"id_str":"131146491","name":"AQN\uff20\u30ee\uff1c)\uff89\u25c6","screen_name":"aqn_","location":"\u65e5\u672c","url":"http:\/\/twisave.com\/aqn_","description":"\u2020\u95c7\u306b\u821e\u3044\u964d\u308a\u305f\u83f1\u578b\u306e\u60aa\u9b54\u2020","protected":false,"verified":false,"followers_count":2547,"friends_count":788,"listed_count":301,"favourites_count":87470,"statuses_count":67025,"created_at":"Fri Apr 09 12:02:48 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569760012252114944\/SM3I7v0__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569760012252114944\/SM3I7v0__normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":142,"favorite_count":117,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aqn_","name":"AQN\uff20\u30ee\uff1c)\uff89\u25c6","id":131146491,"id_str":"131146491","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094663"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139806367744,"id_str":"663728139806367744","text":"RT @SaulloRubens: Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320731944,"id_str":"320731944","name":"@","screen_name":"Gabeevandro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":631,"friends_count":438,"listed_count":0,"favourites_count":604,"statuses_count":31953,"created_at":"Mon Jun 20 12:41:49 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609913991507386368\/7O_eiKYq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609913991507386368\/7O_eiKYq.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634154230325080065\/Ek0kMAgX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634154230325080065\/Ek0kMAgX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320731944\/1440029126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:26:11 +0000 2015","id":663694068732575744,"id_str":"663694068732575744","text":"Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178095302,"id_str":"178095302","name":"REI LE\u00c3O","screen_name":"SaulloRubens","location":"Bel\u00e9m - PA","url":null,"description":"Meu melhor objetivo \u00e9 ser bom para as pessoas e fazer com que elas sorriam.\n(Rubens, Saullo 2015)","protected":false,"verified":false,"followers_count":557,"friends_count":319,"listed_count":14,"favourites_count":3292,"statuses_count":34528,"created_at":"Fri Aug 13 21:30:18 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"2F323B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_tile":true,"profile_link_color":"1E2021","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178095302\/1445571111","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663677630714093568,"quoted_status_id_str":"663677630714093568","quoted_status":{"created_at":"Mon Nov 09 11:20:52 +0000 2015","id":663677630714093568,"id_str":"663677630714093568","text":"Anitta diz que n\u00e3o \u00e9 periguete e se compara a Rihanna e Beyonc\u00e9. https:\/\/t.co\/db8jDYgPni https:\/\/t.co\/CWfQZQNX6O","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2678394506,"id_str":"2678394506","name":"Portal Atualizado","screen_name":"p_atualizado","location":"Sao Paulo, Brasil","url":"http:\/\/www.patualizado.com.br\/","description":"Portal Atualizado, levando a voc\u00ea o melhor do entretenimento e informa\u00e7\u00e3o de credibilidade. e-mail: P.atualizado@gmail.com","protected":false,"verified":false,"followers_count":11128,"friends_count":588,"listed_count":2,"favourites_count":986,"statuses_count":1588,"created_at":"Fri Jul 25 01:52:50 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2678394506\/1444867913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/db8jDYgPni","expanded_url":"http:\/\/goo.gl\/lnmRBT","display_url":"goo.gl\/lnmRBT","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"SaulloRubens","name":"REI LE\u00c3O","id":178095302,"id_str":"178095302","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080094659"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139835678721,"id_str":"663728139835678721","text":"Media Double Standard of Hillary vs Carson Brutally Exposed https:\/\/t.co\/mynPhGUXZy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":421356054,"id_str":"421356054","name":"Oohoo","screen_name":"Oohoo3","location":null,"url":null,"description":"I'm a Constitutional Conservative! I love God, family and my beautiful Country! My opinions reflect my beliefs. Concerned for our nation. RT \u2260 endorsement.","protected":false,"verified":false,"followers_count":1882,"friends_count":1814,"listed_count":24,"favourites_count":6349,"statuses_count":24784,"created_at":"Fri Nov 25 21:00:45 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663029073367568384\/4ZpPA31i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663029073367568384\/4ZpPA31i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/421356054\/1353873601","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mynPhGUXZy","expanded_url":"http:\/\/www.thefederalistpapers.org\/?p=57265","display_url":"thefederalistpapers.org\/?p=57265","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094666"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831496705,"id_str":"663728139831496705","text":"RT @LilMikesLife: Ain't no in between either you rockin or you ain't! \ud83d\udcaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090497189,"id_str":"3090497189","name":"Conteia","screen_name":"Conteia_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":262,"friends_count":182,"listed_count":0,"favourites_count":937,"statuses_count":11218,"created_at":"Fri Mar 13 03:18:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659344612763574272\/mLHDFXU4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659344612763574272\/mLHDFXU4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090497189\/1444168209","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:17 +0000 2015","id":663725046268092417,"id_str":"663725046268092417","text":"Ain't no in between either you rockin or you ain't! \ud83d\udcaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":222179786,"id_str":"222179786","name":"Lil Mike","screen_name":"LilMikesLife","location":"Akron, Ohio ","url":null,"description":"Humble as they come...","protected":false,"verified":false,"followers_count":1972,"friends_count":662,"listed_count":2,"favourites_count":4868,"statuses_count":1138,"created_at":"Thu Dec 02 17:45:22 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/191916409\/l_0b1f8c0429bf47519e716f1ea5f12229.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/191916409\/l_0b1f8c0429bf47519e716f1ea5f12229.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655505847871774720\/lgWFskIE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655505847871774720\/lgWFskIE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222179786\/1407980100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LilMikesLife","name":"Lil Mike","id":222179786,"id_str":"222179786","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139814756352,"id_str":"663728139814756352","text":"RT @JMiquelWine: They've Designed the #Wine Cellar for the Mission to Mars\nNeeds a Lot of WINE\nLOL... https:\/\/t.co\/BH5D57enDp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3305334437,"id_str":"3305334437","name":"Compa\u00f1\u00eda Del Sur","screen_name":"CompaniaDelSur","location":null,"url":null,"description":"Consultor\u00eda | Marketing | Promoci\u00f3n Internacional","protected":false,"verified":false,"followers_count":2547,"friends_count":2568,"listed_count":58,"favourites_count":161,"statuses_count":2748,"created_at":"Mon Jun 01 04:56:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9FB5AA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605248655302492160\/egD6bKAi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605248655302492160\/egD6bKAi.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605241105198817280\/vfxvMOu7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605241105198817280\/vfxvMOu7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3305334437\/1433136841","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 29 20:40:09 +0000 2015","id":659832111289888768,"id_str":"659832111289888768","text":"They've Designed the #Wine Cellar for the Mission to Mars\nNeeds a Lot of WINE\nLOL... https:\/\/t.co\/BH5D57enDp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2437662536,"id_str":"2437662536","name":"Julien Miquel #Wine","screen_name":"JMiquelWine","location":"New Zealand, France","url":"http:\/\/socialvignerons.com\/about-me-julien-miquel\/","description":"#WineLover, Winemaker, Blogger. Obsessed with sharing #wine, #food, #travel, #SocialMedia & family Love. Founder of 2015 Best New Wine Blog @SocialVignerons","protected":false,"verified":false,"followers_count":226355,"friends_count":168098,"listed_count":1933,"favourites_count":79520,"statuses_count":9389,"created_at":"Thu Apr 10 23:52:28 +0000 2014","utc_offset":46800,"time_zone":"Auckland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2C3336","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456372357527920640\/4COSvIqC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456372357527920640\/4COSvIqC.jpeg","profile_background_tile":false,"profile_link_color":"181D40","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454829275288313856\/bfNJHIXO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454829275288313856\/bfNJHIXO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2437662536\/1397645121","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":107,"favorite_count":150,"entities":{"hashtags":[{"text":"Wine","indices":[21,26]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":659832110006472704,"id_str":"659832110006472704","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","url":"https:\/\/t.co\/BH5D57enDp","display_url":"pic.twitter.com\/BH5D57enDp","expanded_url":"http:\/\/twitter.com\/JMiquelWine\/status\/659832111289888768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":862,"resize":"fit"},"large":{"w":626,"h":900,"resize":"fit"},"small":{"w":340,"h":488,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":659832110006472704,"id_str":"659832110006472704","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","url":"https:\/\/t.co\/BH5D57enDp","display_url":"pic.twitter.com\/BH5D57enDp","expanded_url":"http:\/\/twitter.com\/JMiquelWine\/status\/659832111289888768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":862,"resize":"fit"},"large":{"w":626,"h":900,"resize":"fit"},"small":{"w":340,"h":488,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Wine","indices":[38,43]}],"urls":[],"user_mentions":[{"screen_name":"JMiquelWine","name":"Julien Miquel #Wine","id":2437662536,"id_str":"2437662536","indices":[3,15]}],"symbols":[],"media":[{"id":659832110006472704,"id_str":"659832110006472704","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","url":"https:\/\/t.co\/BH5D57enDp","display_url":"pic.twitter.com\/BH5D57enDp","expanded_url":"http:\/\/twitter.com\/JMiquelWine\/status\/659832111289888768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":862,"resize":"fit"},"large":{"w":626,"h":900,"resize":"fit"},"small":{"w":340,"h":488,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":659832111289888768,"source_status_id_str":"659832111289888768","source_user_id":2437662536,"source_user_id_str":"2437662536"}]},"extended_entities":{"media":[{"id":659832110006472704,"id_str":"659832110006472704","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSgxzuBVEAAE4S3.jpg","url":"https:\/\/t.co\/BH5D57enDp","display_url":"pic.twitter.com\/BH5D57enDp","expanded_url":"http:\/\/twitter.com\/JMiquelWine\/status\/659832111289888768\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":862,"resize":"fit"},"large":{"w":626,"h":900,"resize":"fit"},"small":{"w":340,"h":488,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":659832111289888768,"source_status_id_str":"659832111289888768","source_user_id":2437662536,"source_user_id_str":"2437662536"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094661"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139827355648,"id_str":"663728139827355648","text":"@katyperry I tell you honey Prism's era still alive\ud83d\udc4d #pwtmemories","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21447363,"in_reply_to_user_id_str":"21447363","in_reply_to_screen_name":"katyperry","user":{"id":2466631838,"id_str":"2466631838","name":"Sarah Maria ","screen_name":"159_Sarah","location":null,"url":null,"description":"\u2665Katycat\u2661__always and forever__Me and the Katycats\u2665 We are a time","protected":false,"verified":false,"followers_count":48,"friends_count":211,"listed_count":1,"favourites_count":1073,"statuses_count":1444,"created_at":"Sun Apr 27 20:32:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557312526007156739\/1AIjvCj9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557312526007156739\/1AIjvCj9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2466631838\/1421708634","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pwtmemories","indices":[53,65]}],"urls":[],"user_mentions":[{"screen_name":"katyperry","name":"KATY PERRY","id":21447363,"id_str":"21447363","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094664"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139823022083,"id_str":"663728139823022083","text":"RT @atsubotv4649: WINDING ROAD https:\/\/t.co\/2meAlGLtcQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953233115,"id_str":"2953233115","name":"\u30b8\u30e3\u30f3","screen_name":"fukajun86","location":null,"url":null,"description":"\u611b\u8eca\u300c\u30b9\u30d0\u30eb \u30a4\u30f3\u30d7\u30ec\u30c3\u30b5 WRX STi versionV\u300d\u306b\u4e57\u3063\u3066\u3044\u308b\u65b0\u4eba\u793e\u755c\u3067\u3059(\u7b11)\u3002\u8da3\u5473\u306fTV\u30b2\u30fc\u30e0\u3068\u7b4b\u30c8\u30ec\u3002","protected":false,"verified":false,"followers_count":234,"friends_count":354,"listed_count":3,"favourites_count":1200,"statuses_count":4329,"created_at":"Wed Dec 31 06:53:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658486942154158080\/KIDObjni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658486942154158080\/KIDObjni_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953233115\/1445830494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:19:09 +0000 2015","id":663646999401488384,"id_str":"663646999401488384","text":"WINDING ROAD https:\/\/t.co\/2meAlGLtcQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223278278,"id_str":"3223278278","name":"\u3042\u3064\u307c\u30fc","screen_name":"atsubotv4649","location":null,"url":null,"description":"\u3084\u3041\u3001\u3053\u3093\u3070\u3093\u308f\u3041\u30fc","protected":false,"verified":false,"followers_count":22815,"friends_count":33,"listed_count":34,"favourites_count":3,"statuses_count":54,"created_at":"Fri May 22 12:49:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223278278\/1446980441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15992,"favorite_count":18221,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663646430305742848,"id_str":"663646430305742848","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","url":"https:\/\/t.co\/2meAlGLtcQ","display_url":"pic.twitter.com\/2meAlGLtcQ","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663646999401488384\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663646430305742848,"id_str":"663646430305742848","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","url":"https:\/\/t.co\/2meAlGLtcQ","display_url":"pic.twitter.com\/2meAlGLtcQ","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663646999401488384\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":29820,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/180x320\/TtYuOsME4FI4bXjN.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/720x1280\/hoB2cxPoMiGsZvHC.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/pl\/humD_F9MICCKyO0P.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/pl\/humD_F9MICCKyO0P.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/360x640\/uSobJ0Up90iNk8Lg.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/360x640\/uSobJ0Up90iNk8Lg.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[3,16]}],"symbols":[],"media":[{"id":663646430305742848,"id_str":"663646430305742848","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","url":"https:\/\/t.co\/2meAlGLtcQ","display_url":"pic.twitter.com\/2meAlGLtcQ","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663646999401488384\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663646999401488384,"source_status_id_str":"663646999401488384","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663646430305742848,"id_str":"663646430305742848","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663646430305742848\/pu\/img\/0_-QAjp8Yq7juZSj.jpg","url":"https:\/\/t.co\/2meAlGLtcQ","display_url":"pic.twitter.com\/2meAlGLtcQ","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663646999401488384\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663646999401488384,"source_status_id_str":"663646999401488384","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":29820,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/180x320\/TtYuOsME4FI4bXjN.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/720x1280\/hoB2cxPoMiGsZvHC.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/pl\/humD_F9MICCKyO0P.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/pl\/humD_F9MICCKyO0P.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/360x640\/uSobJ0Up90iNk8Lg.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663646430305742848\/pu\/vid\/360x640\/uSobJ0Up90iNk8Lg.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094663"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831410688,"id_str":"663728139831410688","text":"\u6d45\u3044\u306a\u3001\u3001\u3001\u307e\u3060\u307e\u3060\u3060\u306a\u3001\u3001\u3001","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330957777,"id_str":"330957777","name":"\u3088\u3046\u3053","screen_name":"MiracleYokoDa","location":"\u5e30\u308b\u3079\u304d\u5834\u6240","url":"http:\/\/2top5only.blog64.fc2.com\/","description":"\u50d5\u306e\u8a00\u8449\u306b\u9b54\u6cd5\u304b\u3051\u3066\n***smap\/news\/v6\/elly***\n\u6ce3\u3051\u3061\u3083\u3046\u304f\u3089\u3044\u597d\u304d\u3060\u3088\u2661","protected":false,"verified":false,"followers_count":110,"friends_count":184,"listed_count":2,"favourites_count":3554,"statuses_count":40030,"created_at":"Thu Jul 07 12:35:15 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638365532719218688\/jg-kiH7D_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638365532719218688\/jg-kiH7D_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330957777\/1424613566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139818799104,"id_str":"663728139818799104","text":"\u30d5\u30a1\u30f3\u300c\u4ffa\u4f55\u56de\u304b\u6765\u3066\u308b\u3051\u3069\u308f\u304b\u308b\uff1f\uff1f\u300d\u306b\u3087\u3093\u300c\u306f\u3058\u3081\u307e\u3057\u3066\u2661\u300d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1057010252,"id_str":"1057010252","name":"\u307e\u308b\u3059\u304f","screen_name":"maru97ru_2","location":"\u9bf1\u306e\u56fd\u3092\u30d6\u30f3\u30d6\u30d6\u30fc\u30f3","url":"http:\/\/twilog.org\/maru97ru_2","description":"\uff62\u3053\u308c\u304b\u3089\u3082\u4e00\u7dd2\u306b\u751f\u304d\u3066\u3044\u304d\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01\uff63 961005LLAS\u2661DMBB140928 \u25c6LIVE\u21d2Spiral0801,TU0925,\u5c0f\u559c\u52291108,KinKi\u30b3\u30f31231,0101(Happy Birthday\u2661)","protected":false,"verified":false,"followers_count":50,"friends_count":56,"listed_count":3,"favourites_count":441,"statuses_count":8595,"created_at":"Thu Jan 03 06:05:44 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490745611688239104\/MppDSZM1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490745611688239104\/MppDSZM1.png","profile_background_tile":false,"profile_link_color":"D19097","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526726618329264129\/KIKD_bMt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526726618329264129\/KIKD_bMt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1057010252\/1421569010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094662"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139822960640,"id_str":"663728139822960640","text":"@eatchan_happy \u3055\u3088\u3046\u306a\u3089\u306e\u5bb6\u306b\u30a8\u30d3\u30d5\u30e9\u30a4\u3042\u3063\u305f\u3088\u306d\n ,.\u3001,\u3001\u3001\u3001,,_ \uff0fi \n;\u2019\uff40;\u3001\u3001:\u3001. .::\uff40 -\u2010i \n\u2018\u3001;: \u2026: ,:. :.\u3001 \uffe3 \n\u30fd(\u00b4\uff65\u03c9\uff65)\uff89 \n\u3000 | \/ \n\u3000 UU","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u3046\u308b\u305b\u3048\u30a8\u30d3\u30d5\u30e9\u30a4\u3076\u3064\u3051\u308b\u305e\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727985262899200,"in_reply_to_status_id_str":"663727985262899200","in_reply_to_user_id":2829509064,"in_reply_to_user_id_str":"2829509064","in_reply_to_screen_name":"eatchan_happy","user":{"id":1280286732,"id_str":"1280286732","name":"\u3046\u308b\u305b\u3048\u30a8\u30d3\u30d5\u30e9\u30a4\u3076\u3064\u3051\u308b\u305ebot","screen_name":"Friedprawn_bot","location":"\u592a\u5e73\u6d0b","url":null,"description":"\u3044\u308f\u3086\u308b\u30a8\u30d3\u30d5\u30e9\u30a4\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002\u7c21\u5358\u306a\u6328\u62f6\u306b\u306f\u30ea\u30d7\u3092\u8fd4\u3057\u307e\u3059\u3002\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002\u81ea\u52d5\u30d5\u30a9\u30ed\u30fc\u6a5f\u80fd\u505c\u6b62\u306e\u305f\u3081\u30d5\u30a9\u30ed\u30d0\u9045\u308c\u307e\u3059\u3002\u8868\u793a\u540d\u306b\u4ed6\u4eba\u306e\u30e6\u30fc\u30b6\u30fcID\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u57a2\u6d88\u305b\u3002\u5236\u4f5c\u8005\u306f\u6b7b\u306b\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":480,"friends_count":357,"listed_count":19,"favourites_count":0,"statuses_count":385324,"created_at":"Tue Mar 19 12:34:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3400716403\/6e630c148a2495bbf2337e19356a6898_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3400716403\/6e630c148a2495bbf2337e19356a6898_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1280286732\/1363701368","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eatchan_happy","name":"\u3055\u3088\u3046\u306a\u3089","id":2829509064,"id_str":"2829509064","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094663"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139797815296,"id_str":"663728139797815296","text":"Coach\/Agile, Scrum\/Nederland - Noord-Holland https:\/\/t.co\/RjLOxl3Ewb","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2929234985,"id_str":"2929234985","name":"ICT ZZP Jobs","screen_name":"jobs_zzp_ICT","location":"Netherlands","url":"http:\/\/www.isidis.com","description":"Dit is de complete ICT ZZP vacature index source om te volgen. Elke bekende ICT agency wordt hier iedere minuut geindexeerd.","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":11326,"created_at":"Thu Dec 18 09:04:52 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545508303782948865\/xvg3WMAE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545508303782948865\/xvg3WMAE_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RjLOxl3Ewb","expanded_url":"http:\/\/dlvr.it\/Chfprf","display_url":"dlvr.it\/Chfprf","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080094657"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139797835776,"id_str":"663728139797835776","text":"RT @muscle_fitness: \"I don't have anything against her, she's a nice chick that's gonna lose.\" -Ronda Rousey https:\/\/t.co\/3mpwFWUu6T https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2293880196,"id_str":"2293880196","name":"Jesse Pagel","screen_name":"jjpagel4","location":"Wisconsin","url":null,"description":"Father, husband, hockey playing, weight training, outdoorsman.","protected":false,"verified":false,"followers_count":47,"friends_count":84,"listed_count":3,"favourites_count":570,"statuses_count":285,"created_at":"Thu Jan 16 05:13:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530756572646219777\/fTxkumCj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530756572646219777\/fTxkumCj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2293880196\/1389991805","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:00:21 +0000 2015","id":663430876605255680,"id_str":"663430876605255680","text":"\"I don't have anything against her, she's a nice chick that's gonna lose.\" -Ronda Rousey https:\/\/t.co\/3mpwFWUu6T https:\/\/t.co\/uMHxRvX6j8","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17244973,"id_str":"17244973","name":"Muscle & Fitness","screen_name":"muscle_fitness","location":"USA","url":"http:\/\/www.muscleandfitness.com","description":"Your ultimate source for full workout plans and advice on training, nutrition and supplements.","protected":false,"verified":true,"followers_count":512775,"friends_count":1995,"listed_count":3362,"favourites_count":723,"statuses_count":20747,"created_at":"Sat Nov 08 04:27:00 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EF3824","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"EF3824","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593216379907616768\/JsR4Yen5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593216379907616768\/JsR4Yen5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17244973\/1446131674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":86,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3mpwFWUu6T","expanded_url":"http:\/\/ow.ly\/Uo8Qh","display_url":"ow.ly\/Uo8Qh","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663430876089483264,"id_str":"663430876089483264","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","url":"https:\/\/t.co\/uMHxRvX6j8","display_url":"pic.twitter.com\/uMHxRvX6j8","expanded_url":"http:\/\/twitter.com\/muscle_fitness\/status\/663430876605255680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663430876089483264,"id_str":"663430876089483264","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","url":"https:\/\/t.co\/uMHxRvX6j8","display_url":"pic.twitter.com\/uMHxRvX6j8","expanded_url":"http:\/\/twitter.com\/muscle_fitness\/status\/663430876605255680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3mpwFWUu6T","expanded_url":"http:\/\/ow.ly\/Uo8Qh","display_url":"ow.ly\/Uo8Qh","indices":[109,132]}],"user_mentions":[{"screen_name":"muscle_fitness","name":"Muscle & Fitness","id":17244973,"id_str":"17244973","indices":[3,18]}],"symbols":[],"media":[{"id":663430876089483264,"id_str":"663430876089483264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","url":"https:\/\/t.co\/uMHxRvX6j8","display_url":"pic.twitter.com\/uMHxRvX6j8","expanded_url":"http:\/\/twitter.com\/muscle_fitness\/status\/663430876605255680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663430876605255680,"source_status_id_str":"663430876605255680","source_user_id":17244973,"source_user_id_str":"17244973"}]},"extended_entities":{"media":[{"id":663430876089483264,"id_str":"663430876089483264","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTT63eZXAAAkiL0.jpg","url":"https:\/\/t.co\/uMHxRvX6j8","display_url":"pic.twitter.com\/uMHxRvX6j8","expanded_url":"http:\/\/twitter.com\/muscle_fitness\/status\/663430876605255680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663430876605255680,"source_status_id_str":"663430876605255680","source_user_id":17244973,"source_user_id_str":"17244973"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094657"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810377728,"id_str":"663728139810377728","text":"@alixxisthename ay puta ka","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727670065164288,"in_reply_to_status_id_str":"663727670065164288","in_reply_to_user_id":2328681440,"in_reply_to_user_id_str":"2328681440","in_reply_to_screen_name":"alixxisthename","user":{"id":2889263047,"id_str":"2889263047","name":"Nicolouaei","screen_name":"NicoistheName","location":"Antipolo City","url":null,"description":"\u2606Fatimanian\u2606 \u2661Lip BITER\u2665 \u264f SCORPIO \u264f| MUSIC LOVER | ONE OF A KIND","protected":false,"verified":false,"followers_count":117,"friends_count":146,"listed_count":0,"favourites_count":273,"statuses_count":1319,"created_at":"Tue Nov 04 01:44:11 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654099996011180032\/YFnGvnEv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654099996011180032\/YFnGvnEv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2889263047\/1446743806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alixxisthename","name":"Allyyy","id":2328681440,"id_str":"2328681440","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139818921984,"id_str":"663728139818921984","text":"RT @Alvaro11011: @SandraLMC25 es que me encanta, envidiosa. Aun que m\u00e1s me encantas t\u00fa \ud83d\ude18\ud83d\udc8f\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":278622967,"id_str":"278622967","name":"BURROS EN CELO.","screen_name":"SandraLMC25","location":"Vicente Calder\u00f3n, 07.","url":null,"description":"Future teacher. URJC. Nada ni nadie, @Alvaro11011 \u2764 Y supongo que eso es el amor: sonre\u00edr callados. FAV\u2b50 ElenAinhoa \u2661 TPS\n*1409.","protected":false,"verified":false,"followers_count":1272,"friends_count":937,"listed_count":264,"favourites_count":31296,"statuses_count":64896,"created_at":"Thu Apr 07 16:49:53 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640597562299432960\/phUA5rp2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640597562299432960\/phUA5rp2.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"B95AE8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661655401314852864\/q3ROCvOm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661655401314852864\/q3ROCvOm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/278622967\/1443825326","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:01 +0000 2015","id":663728000245059584,"id_str":"663728000245059584","text":"@SandraLMC25 es que me encanta, envidiosa. Aun que m\u00e1s me encantas t\u00fa \ud83d\ude18\ud83d\udc8f\u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727834893037568,"in_reply_to_status_id_str":"663727834893037568","in_reply_to_user_id":278622967,"in_reply_to_user_id_str":"278622967","in_reply_to_screen_name":"SandraLMC25","user":{"id":587439748,"id_str":"587439748","name":"Sic Parvis Magna\u2b50","screen_name":"Alvaro11011","location":"Fuenlabrada, Comunidad de Madrid","url":null,"description":"Mi m\u00e1s bonita casualidad; nada ni nadie @SandraLMC25 \u2764 (23 de Octubre~25 de Junio) \n\n|11011 Pau.| \n\n~ NT ~ \n\nCDAF2015 & ATM1903 \u26bd","protected":false,"verified":false,"followers_count":348,"friends_count":588,"listed_count":3,"favourites_count":2867,"statuses_count":6451,"created_at":"Tue May 22 13:46:24 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655881138444087296\/EjTR9Iow_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655881138444087296\/EjTR9Iow_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587439748\/1445209222","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SandraLMC25","name":"BURROS EN CELO.","id":278622967,"id_str":"278622967","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Alvaro11011","name":"Sic Parvis Magna\u2b50","id":587439748,"id_str":"587439748","indices":[3,15]},{"screen_name":"SandraLMC25","name":"BURROS EN CELO.","id":278622967,"id_str":"278622967","indices":[17,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080094662"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139835736064,"id_str":"663728139835736064","text":"Which song is your favourite from Take Me Home? Mine is Little Things for sure. I love every song but Little Things is just special to me. \u2665","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":708627080,"id_str":"708627080","name":"\u2708","screen_name":"heyangelmrhoran","location":"Johannah noticed me \u2661","url":"http:\/\/www.onedirectionmusic.com","description":"Lord they don't teach ya this in school.","protected":false,"verified":false,"followers_count":1709,"friends_count":2066,"listed_count":7,"favourites_count":2708,"statuses_count":14783,"created_at":"Sat Jul 21 08:22:40 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"00FF3C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000111214299\/93b16271700cf0fb1cb47aa1af5e993c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000111214299\/93b16271700cf0fb1cb47aa1af5e993c.jpeg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663002545959411712\/58j0bBVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663002545959411712\/58j0bBVB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/708627080\/1446907097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094666"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810443264,"id_str":"663728139810443264","text":"\u53ef\u611b\u3044\u3093\u3060\u3082\u3093\u306a\u3041\u30e2\u30f3\u30cf\u30f3\u306e\u5973\u88c5\u5099","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS v3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":591646014,"id_str":"591646014","name":"\uff1c\u308b\u307e\u3047\u3073","screen_name":"9_eb1","location":"SDVX\u30c1\u30fc\u30e0\u300e\u30b4\u30b8\u30e9(.5H)\u300f\u6240\u5c5e","url":null,"description":"\u5f8c\u5149\u6216\u5e1d\u6ec5\u6597\/SDVX 3\u53f7\u304f\u3093\u3068\u30b9\u30b1\u30d9\u3057\u305f\u3044","protected":false,"verified":false,"followers_count":174,"friends_count":174,"listed_count":6,"favourites_count":5272,"statuses_count":11576,"created_at":"Sun May 27 06:16:13 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661920695639650305\/xKb45T1v_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661920695639650305\/xKb45T1v_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/591646014\/1446168703","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139827154944,"id_str":"663728139827154944","text":"RT @kapookdotcom: \u0e27\u0e49\u0e32\u0e27 \u0e2a\u0e23\u0e49\u0e2d\u0e22\u0e04\u0e2d\u0e2d\u0e31\u0e0d\u0e21\u0e13\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e2b\u0e38\u0e1a\u0e40\u0e02\u0e32 \u0e41\u0e19\u0e27\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e2a\u0e38\u0e14\u0e15\u0e37\u0e48\u0e19\u0e15\u0e32\u0e43\u0e19\u0e08\u0e35\u0e19 [\u0e21\u0e35\u0e23\u0e39\u0e1b]\nhttps:\/\/t.co\/GR3qHFGhZV https:\/\/t.co\/vHrcrxcYeX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303152151,"id_str":"303152151","name":"\u0e14\u0e19\u0e34\u0e19\u0e39\u0e2b","screen_name":"nnfusky","location":null,"url":null,"description":"\u0e42\u0e2d\u0e01\u0e32\u0e2a\u0e21\u0e35\u0e2a\u0e33\u0e2b\u0e23\u0e31\u0e1a\u0e04\u0e19\u0e17\u0e35\u0e48\u0e1e\u0e23\u0e49\u0e2d\u0e21'","protected":false,"verified":false,"followers_count":185,"friends_count":148,"listed_count":3,"favourites_count":1090,"statuses_count":28787,"created_at":"Sun May 22 11:33:05 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000085234830\/4ce1ed6b17ba2152ed0b265fdd7d44fe.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000085234830\/4ce1ed6b17ba2152ed0b265fdd7d44fe.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657018662323253248\/e2k8Mquo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657018662323253248\/e2k8Mquo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303152151\/1445480461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:39:02 +0000 2015","id":663712403444490240,"id_str":"663712403444490240","text":"\u0e27\u0e49\u0e32\u0e27 \u0e2a\u0e23\u0e49\u0e2d\u0e22\u0e04\u0e2d\u0e2d\u0e31\u0e0d\u0e21\u0e13\u0e35\u0e41\u0e2b\u0e48\u0e07\u0e2b\u0e38\u0e1a\u0e40\u0e02\u0e32 \u0e41\u0e19\u0e27\u0e15\u0e49\u0e19\u0e44\u0e21\u0e49\u0e2a\u0e38\u0e14\u0e15\u0e37\u0e48\u0e19\u0e15\u0e32\u0e43\u0e19\u0e08\u0e35\u0e19 [\u0e21\u0e35\u0e23\u0e39\u0e1b]\nhttps:\/\/t.co\/GR3qHFGhZV https:\/\/t.co\/vHrcrxcYeX","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14301366,"id_str":"14301366","name":"Kapookdotcom","screen_name":"kapookdotcom","location":"Bangkok, Thailand","url":"http:\/\/www.kapook.com","description":"http:\/\/Kapook.com \u0e41\u0e2d\u0e1e\u0e41\u0e23\u0e01\u0e17\u0e35\u0e48\u0e04\u0e38\u0e13\u0e40\u0e25\u0e37\u0e2d\u0e01 \u0e02\u0e48\u0e32\u0e27\u0e14\u0e48\u0e27\u0e19\u0e23\u0e39\u0e49\u0e40\u0e23\u0e47\u0e27 \u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e17\u0e31\u0e49\u0e07\u0e27\u0e31\u0e19 \u0e14\u0e32\u0e27\u0e19\u0e4c\u0e42\u0e2b\u0e25\u0e14\u0e1f\u0e23\u0e35 \u0e04\u0e25\u0e34\u0e01\u0e40\u0e25\u0e22 http:\/\/m.kapook.com\/app\/","protected":false,"verified":false,"followers_count":144778,"friends_count":4816,"listed_count":815,"favourites_count":3,"statuses_count":189251,"created_at":"Fri Apr 04 10:06:34 +0000 2008","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590833353303019520\/YVM-tety_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590833353303019520\/YVM-tety_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14301366\/1427428554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":14,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GR3qHFGhZV","expanded_url":"http:\/\/goo.gl\/Z7E2On","display_url":"goo.gl\/Z7E2On","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663671515842519040,"id_str":"663671515842519040","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","url":"https:\/\/t.co\/vHrcrxcYeX","display_url":"pic.twitter.com\/vHrcrxcYeX","expanded_url":"http:\/\/twitter.com\/kapookdotcom\/status\/663712403444490240\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663671515842519040,"id_str":"663671515842519040","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","url":"https:\/\/t.co\/vHrcrxcYeX","display_url":"pic.twitter.com\/vHrcrxcYeX","expanded_url":"http:\/\/twitter.com\/kapookdotcom\/status\/663712403444490240\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GR3qHFGhZV","expanded_url":"http:\/\/goo.gl\/Z7E2On","display_url":"goo.gl\/Z7E2On","indices":[79,102]}],"user_mentions":[{"screen_name":"kapookdotcom","name":"Kapookdotcom","id":14301366,"id_str":"14301366","indices":[3,16]}],"symbols":[],"media":[{"id":663671515842519040,"id_str":"663671515842519040","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","url":"https:\/\/t.co\/vHrcrxcYeX","display_url":"pic.twitter.com\/vHrcrxcYeX","expanded_url":"http:\/\/twitter.com\/kapookdotcom\/status\/663712403444490240\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663712403444490240,"source_status_id_str":"663712403444490240","source_user_id":14301366,"source_user_id_str":"14301366"}]},"extended_entities":{"media":[{"id":663671515842519040,"id_str":"663671515842519040","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXVujVWoAAA0Uq.jpg","url":"https:\/\/t.co\/vHrcrxcYeX","display_url":"pic.twitter.com\/vHrcrxcYeX","expanded_url":"http:\/\/twitter.com\/kapookdotcom\/status\/663712403444490240\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663712403444490240,"source_status_id_str":"663712403444490240","source_user_id":14301366,"source_user_id_str":"14301366"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080094664"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831349248,"id_str":"663728139831349248","text":"\u0642\u0627\u0644 \u0627\u0644\u0644\u0647 : \u0623\u0646\u0641\u0642 \u064a\u0627 \u0627\u0628\u0646 \u0622\u062f\u0645 \u0623\u0646\u0641\u0642 \u0639\u0644\u064a\u0643 - \u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a #Hadith #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":416142851,"id_str":"416142851","name":"mohammad alghathber","screen_name":"mohammadalghath","location":null,"url":null,"description":"\u062f\u0627\u0626\u0645\u0627 \u0627\u0639\u0644\u0642 \u0627\u0645\u0627\u0644\u064a \u0639\u0644\u0649 \u062d\u0628\u0644 \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631","protected":false,"verified":false,"followers_count":111,"friends_count":419,"listed_count":0,"favourites_count":235,"statuses_count":2568,"created_at":"Sat Nov 19 08:52:59 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1646758663\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1646758663\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Hadith","indices":[53,60]},{"text":"\ufdfa","indices":[61,63]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802021888,"id_str":"663728139802021888","text":"@in_my_wings \uc560\ub9e4\ud558\uac8c \uc368\uc57c\ud558\ub294\ub370 \uadf8\uc0ac\ub78c\uc744 \uc0dd\uac01\ud558\uba74\uc11c \uc4f0\ub2e4\ubcf4\uba74 \uc790\uafb8 \uba85\ud655\ud574\uc838\uc11c.. 8\u31458... \ub9c8\uc9c0\ub9c9\uc5d0 \uc4f8 \uc0ac\ub78c\uc774 \uc788\ub294\ub370 \uadf8\uc0ac\ub78c\uc740 \uc9c4\uc9dc \uc560\ub9e4\ud558\uac8c \uc4f0\uae30 \uc5b4\ub824\uc6b8\uac70 \uac19\uc544\uc694... 8\u31458....(\uace0\ubbfc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727895727083520,"in_reply_to_status_id_str":"663727895727083520","in_reply_to_user_id":1863258396,"in_reply_to_user_id_str":"1863258396","in_reply_to_screen_name":"in_my_wings","user":{"id":3016557068,"id_str":"3016557068","name":"\ud658\ud5a5","screen_name":"hwanhyang","location":null,"url":null,"description":"\ud30c\uc624\ud6c4\/\uc2e4\ub825\uc5c6\ub294 \ucc0d\uc0ac\u3160\/\uac01\uc885 \ub355\uc9c8 \uac00\ub9ac\uc9c0 \uc54a\uace0 \ud558\ub294\uc911\/\ucd5c\uc560\uac00 \ub108\ubb34 \ub9ce\uc544 \ucc98\uce58\uace4\ub780\/ \uadf8\uce58\ub9cc \ud1a0\uc624\uc0ac\uce74 \ub9b0 \ub2e4\uc774\uc2a4\ud0a4\u2665\/NMB48\uacfc Perfume\uc740 \uc0ac\ub791\u2665\/\ub9c8\uc601\uc804 148\ucc44\/\ud558\uc2a4\uc2a4\ud1a4 \uc544\ub9cc\ubcf4\/\uc131\uc6b0 \ub530\ub77c\uac00\uba70 \uc560\ub2c8\ubd04\/\ud0a4\ud0c0\uc5d0\ub9ac \ub2e4\uc774\uc2a4\ud0a4\u2665\/\ubc30\uc6b0 \ub530\ub77c\uac00\uba70 \ub4dc\ub77c\ub9c8\ubd04\/\uc2dc\ubc14\uc0ac\ud0a4 \ucf54\uc6b0, \uae30\ubb34\ub77c \ud6c4\ubbf8\ub178 \ub2e4\uc774\uc2a4\ud0a4\u2665","protected":false,"verified":false,"followers_count":49,"friends_count":61,"listed_count":0,"favourites_count":272,"statuses_count":3969,"created_at":"Tue Feb 10 14:51:19 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662113569102675968\/6hj-gSya.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662113569102675968\/6hj-gSya.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661035285698863104\/dpR6frqq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661035285698863104\/dpR6frqq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016557068\/1444745028","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"in_my_wings","name":"\ubc1c\ub784\ud55c \ub354\ucfe0\u2b50\ufe0f:evelynC\/\uc5d0\ube14\ub9b0","id":1863258396,"id_str":"1863258396","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139822993408,"id_str":"663728139822993408","text":"\u5b89\u7530\u7ae0\u5927\u6b74\u4ee3\u306e\u5f7c\u5973\u306e\u5642\u60c5\u5831\u307e\u3068\u3081https:\/\/t.co\/06y18oniFW","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310253960,"id_str":"3310253960","name":"\u5897\u7530\u8cb4\u4e45\u2729FAN\u2729","screen_name":"MA431SUDAXXX","location":null,"url":null,"description":"\u5897\u7530\u8cb4\u4e45\u304c\u5927\u597d\u304dJS\u3002\u30a2\u30cb\u30e1\u30fb\u30b3\u30b9\u30d7\u30ec\u3082\u5927\u597d\u304d(*\u2267\u2200\u2266*)\u53cb\u9054\u52df\u96c6\u4e2d\uff01\uff01LINE\u4ea4\u63db\u3057\u3088\u30fc\u266a","protected":false,"verified":false,"followers_count":50,"friends_count":127,"listed_count":0,"favourites_count":0,"statuses_count":12347,"created_at":"Sun Aug 09 05:08:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630320638452862976\/QTE5V99Z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630320638452862976\/QTE5V99Z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310253960\/1439115139","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/06y18oniFW","expanded_url":"http:\/\/lovejony03.seesaa.net\/","display_url":"lovejony03.seesaa.net","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094663"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802181636,"id_str":"663728139802181636","text":"RT @SaulloRubens: Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2678394506,"id_str":"2678394506","name":"Portal Atualizado","screen_name":"p_atualizado","location":"Sao Paulo, Brasil","url":"http:\/\/www.patualizado.com.br\/","description":"Portal Atualizado, levando a voc\u00ea o melhor do entretenimento e informa\u00e7\u00e3o de credibilidade. e-mail: P.atualizado@gmail.com","protected":false,"verified":false,"followers_count":11128,"friends_count":588,"listed_count":2,"favourites_count":986,"statuses_count":1589,"created_at":"Fri Jul 25 01:52:50 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2678394506\/1444867913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:26:11 +0000 2015","id":663694068732575744,"id_str":"663694068732575744","text":"Quem tem boca fala o que quer pra ter nome, pra ganhar aten\u00e7\u00e3o das mulher ou dos homem .. https:\/\/t.co\/z97Egrogsg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178095302,"id_str":"178095302","name":"REI LE\u00c3O","screen_name":"SaulloRubens","location":"Bel\u00e9m - PA","url":null,"description":"Meu melhor objetivo \u00e9 ser bom para as pessoas e fazer com que elas sorriam.\n(Rubens, Saullo 2015)","protected":false,"verified":false,"followers_count":557,"friends_count":319,"listed_count":14,"favourites_count":3292,"statuses_count":34528,"created_at":"Fri Aug 13 21:30:18 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"2F323B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083401475\/834a653252c2dd718f464855702e5ec4.jpeg","profile_background_tile":true,"profile_link_color":"1E2021","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564015310929920\/3-1ABceL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178095302\/1445571111","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663677630714093568,"quoted_status_id_str":"663677630714093568","quoted_status":{"created_at":"Mon Nov 09 11:20:52 +0000 2015","id":663677630714093568,"id_str":"663677630714093568","text":"Anitta diz que n\u00e3o \u00e9 periguete e se compara a Rihanna e Beyonc\u00e9. https:\/\/t.co\/db8jDYgPni https:\/\/t.co\/CWfQZQNX6O","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2678394506,"id_str":"2678394506","name":"Portal Atualizado","screen_name":"p_atualizado","location":"Sao Paulo, Brasil","url":"http:\/\/www.patualizado.com.br\/","description":"Portal Atualizado, levando a voc\u00ea o melhor do entretenimento e informa\u00e7\u00e3o de credibilidade. e-mail: P.atualizado@gmail.com","protected":false,"verified":false,"followers_count":11128,"friends_count":588,"listed_count":2,"favourites_count":986,"statuses_count":1588,"created_at":"Fri Jul 25 01:52:50 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506935960588652544\/Ou3Bj4We.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654452736390471680\/lMgxgxJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2678394506\/1444867913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/db8jDYgPni","expanded_url":"http:\/\/goo.gl\/lnmRBT","display_url":"goo.gl\/lnmRBT","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663677629149667328,"id_str":"663677629149667328","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXbSZLW4AAB9S4.jpg","url":"https:\/\/t.co\/CWfQZQNX6O","display_url":"pic.twitter.com\/CWfQZQNX6O","expanded_url":"http:\/\/twitter.com\/p_atualizado\/status\/663677630714093568\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":664,"h":343,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z97Egrogsg","expanded_url":"https:\/\/twitter.com\/p_atualizado\/status\/663677630714093568","display_url":"twitter.com\/p_atualizado\/s\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"SaulloRubens","name":"REI LE\u00c3O","id":178095302,"id_str":"178095302","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139806248960,"id_str":"663728139806248960","text":"\u0e27\u0e48\u0e32\u0e41\u0e15\u0e48\u0e44\u0e1b\u0e23\u0e39\u0e49\u0e08\u0e31\u0e01\u0e01\u0e31\u0e19\u0e15\u0e2d\u0e19\u0e44\u0e2b\u0e1955","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":231364518,"id_str":"231364518","name":"\u2661\uc6a9\ud06c\u2661","screen_name":"yonkyonkyee","location":"thailand","url":null,"description":"--YG--\u2661\ube45\ubc45\u2661VIP\u3163GD\u3163\u2661iKON\u2661iKONIC \u3163\ud55c\ube48#DoubleB","protected":false,"verified":false,"followers_count":307,"friends_count":361,"listed_count":5,"favourites_count":1711,"statuses_count":76197,"created_at":"Tue Dec 28 09:12:58 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524428588645244928\/gYyKOhEm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524428588645244928\/gYyKOhEm.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643437764512317440\/sQ2xg4lY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643437764512317440\/sQ2xg4lY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/231364518\/1444206490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"008ed10562b203f6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/008ed10562b203f6.json","place_type":"admin","name":"Amphoe Mueang Chiang Mai","full_name":"Amphoe Mueang Chiang Mai, Chiang Mai","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[98.861733,18.695782],[98.861733,18.878290],[99.051222,18.878290],[99.051222,18.695782]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080094659"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139814604800,"id_str":"663728139814604800","text":"RT @chanstar_92: 151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2773072327,"id_str":"2773072327","name":"\u0e23\u0e08\u0e1b\u0e23\u0e22\u0e2b\u0e1e\u0e19\u0e2d :]","screen_name":"Icesyyexol","location":"\u6cf0\u56fd ","url":null,"description":"\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e23\u0e32\u0e27\u0e48\u0e32\u0e44\u0e2d\u0e0b\u0e4c\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nwaiting for go fighting 2016.\n\u0e2e\u0e38\u0e19\u0e2e\u0e32\u0e19\u0e0a\u0e34\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c \u2665\u2665\u2665\n\u4f60\u4eec | \u6bcf\u4e2a\u4f60 | \u5174\u8ff7 | \u6d77\u6d6a | EXO-L \n\u25b6 BJ104 \u0e28\u0e34\u0e25\u0e1b\u0e4c\u0e08\u0e35\u0e19","protected":false,"verified":false,"followers_count":496,"friends_count":615,"listed_count":0,"favourites_count":1593,"statuses_count":9398,"created_at":"Wed Aug 27 11:47:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654905228613947392\/esRWuCtI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654905228613947392\/esRWuCtI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2773072327\/1441193632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727697403580417,"id_str":"663727697403580417","text":"151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38607,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":2,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[8,19]},{"text":"EXO","indices":[30,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[25,36]},{"text":"EXO","indices":[47,51]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080094661"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802050560,"id_str":"663728139802050560","text":"California Baby Newborn Tote - Calendula https:\/\/t.co\/GlOgwHJVCJ","source":"\u003ca href=\"http:\/\/service.rss2twi.com\/\" rel=\"nofollow\"\u003erss2twi.com\u306e\u30c4\u30a4\u30fc\u30c8\u5206\u6790\u30c4\u30fc\u30eb4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322536341,"id_str":"3322536341","name":"California Topics","screen_name":"CaliforniaTopic","location":null,"url":null,"description":"California topics from reddit","protected":false,"verified":false,"followers_count":8,"friends_count":0,"listed_count":0,"favourites_count":1422,"statuses_count":36994,"created_at":"Sat Jun 13 07:13:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609620333348302849\/IMW2VaIL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609620333348302849\/IMW2VaIL_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GlOgwHJVCJ","expanded_url":"http:\/\/service.rss2twi.com\/af?id=12436","display_url":"service.rss2twi.com\/af?id=12436","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139806224385,"id_str":"663728139806224385","text":"@adabc45695f743e @UAE_BARQ \u064a\u0648\u0645 \u0645\u0627 \u0627\u062a\u0639\u0631\u0641 \u0634\u0648 \u0627\u0644\u0633\u0627\u0644\u0641\u0629 \u0644\u0627 \u0627\u062a\u0644\u0639\u0644\u0639 \u0628\u0644\u0633\u0627\u0646\u0643","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662930330400268288,"in_reply_to_status_id_str":"662930330400268288","in_reply_to_user_id":2717234607,"in_reply_to_user_id_str":"2717234607","in_reply_to_screen_name":"adabc45695f743e","user":{"id":518963630,"id_str":"518963630","name":"\u0627\u0645\u0627\u0631\u0627\u062a\u064a\u0629 \u0648\u0644\u064a \u0627\u0644\u0641\u062e\u0631","screen_name":"rakforyou","location":"\u0627\u0644\u0641\u062c\u064a\u0631\u0629 ","url":null,"description":null,"protected":false,"verified":false,"followers_count":174,"friends_count":126,"listed_count":1,"favourites_count":26,"statuses_count":95,"created_at":"Thu Mar 08 22:54:59 +0000 2012","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661154765561180161\/IHhJcDIz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661154765561180161\/IHhJcDIz_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"adabc45695f743e","name":"\u0627\u0644\u064f\u0635\u0651\u0648\u064e\u062a\u0652 \u0627\u0644\u064f\u062c\u0652\u0631\u064e\u064a\u064e\u062d","id":2717234607,"id_str":"2717234607","indices":[0,16]},{"screen_name":"UAE_BARQ","name":"\u0628\u0631\u0642 \u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a","id":251826832,"id_str":"251826832","indices":[17,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080094659"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831410689,"id_str":"663728139831410689","text":"[MIXTAPE] Trell Money - Fat Nigga Season :: https:\/\/t.co\/Rs7VZywCQV #GetCertified! @Certifiedmtapez @SupastarJKwik @xDJ24x","source":"\u003ca href=\"http:\/\/www.certifiedmixtapez.com\" rel=\"nofollow\"\u003eCertified Mixtapes\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1195627915,"id_str":"1195627915","name":"Certified Mixtapez","screen_name":"CertifiedMTapez","location":"Worldwide","url":"http:\/\/www.certifiedmixtapez.com","description":"The Official Mixtapes & Albums Source. Stream & Download on any Android, iOS, and Windows Devices. contact: info@certifiedmixtapez.com","protected":false,"verified":false,"followers_count":4986,"friends_count":1299,"listed_count":52,"favourites_count":788,"statuses_count":248663,"created_at":"Tue Feb 19 02:25:54 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/433421359822016512\/RM2m6ihJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/433421359822016512\/RM2m6ihJ.jpeg","profile_background_tile":true,"profile_link_color":"118BF5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433047125652283392\/V1AqCZYA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433047125652283392\/V1AqCZYA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1195627915\/1408578713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"GetCertified","indices":[68,81]}],"urls":[{"url":"https:\/\/t.co\/Rs7VZywCQV","expanded_url":"http:\/\/certmixtap.es\/1WAu3hq","display_url":"certmixtap.es\/1WAu3hq","indices":[44,67]}],"user_mentions":[{"screen_name":"CertifiedMTapez","name":"Certified Mixtapez","id":1195627915,"id_str":"1195627915","indices":[83,99]},{"screen_name":"supastarjkwik","name":"Supastar J. Kwik!\u2122","id":20834879,"id_str":"20834879","indices":[101,115]},{"screen_name":"xDJ24x","name":"DJ 24","id":139272804,"id_str":"139272804","indices":[116,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139814612992,"id_str":"663728139814612992","text":"RT @SHARP_JP: \u300c\u4eca\u6669\u30ab\u30ec\u30fc\u98df\u3079\u305f\u308d\u300d\u2192\u30bf\u30de\u30cd\u30ae\u30cb\u30f3\u30b8\u30f3\u3056\u304f\u30fc\u2192\u8089\u3068\u30eb\u30fc\u3069\u3055\u30fc\u2192\u30dc\u30bf\u30f3\uff8e\uff9f\uff81\uff70 \u2192\u52b4\u50cd\u2192\u5e30\u5b85\u2192\u300c\u3044\u3044\u30be\uff5e\u3053\u308c\u300d \n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u6c34\u3068\u76e3\u8996\u4e0d\u8981 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y\uffe3\nhttps:\/\/t.co\/K4SUsLpwqI https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/www.jstwi.com\/kurotwi\/\" rel=\"nofollow\"\u003eKuroTwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":514173640,"id_str":"514173640","name":"hurce\/\u306f\u30fc\u3059","screen_name":"hurcehs","location":"\u3088\u3053\u306f\u307e","url":"http:\/\/soundcloud.com\/hurce","description":"\u30af\u30e9\u30d6\u30df\u30e5\u30fc\u30b8\u30c3\u30af\u3092\u4f5c\u3063\u3066\u307e\u3059\u3002Lilium Records(http:\/\/lilium-rec.com\/)\u6240\u5c5e\u3002 DJ\u3084\u3063\u305f\u308a\u3057\u307e\u3059\u3002 \u4f55\u304b\u3042\u308a\u307e\u3057\u305f\u3089\u4e0b\u8a18\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u53c8\u306fDM(\u30d5\u30a9\u30ed\u30fc\u5916\u304b\u3089\u3067\u3082\u53ef)\u3069\u3061\u3089\u304b\u3089\u3067\u3082\u3069\u3046\u305e\u3002 Mail\uff1ahurce1202(at)gmail(dot)com","protected":false,"verified":false,"followers_count":1221,"friends_count":523,"listed_count":47,"favourites_count":24954,"statuses_count":4358,"created_at":"Sun Mar 04 10:05:45 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623429881867579392\/nJtxfvJS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623429881867579392\/nJtxfvJS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/514173640\/1439713838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:21:52 +0000 2015","id":663632582681083904,"id_str":"663632582681083904","text":"\u300c\u4eca\u6669\u30ab\u30ec\u30fc\u98df\u3079\u305f\u308d\u300d\u2192\u30bf\u30de\u30cd\u30ae\u30cb\u30f3\u30b8\u30f3\u3056\u304f\u30fc\u2192\u8089\u3068\u30eb\u30fc\u3069\u3055\u30fc\u2192\u30dc\u30bf\u30f3\uff8e\uff9f\uff81\uff70 \u2192\u52b4\u50cd\u2192\u5e30\u5b85\u2192\u300c\u3044\u3044\u30be\uff5e\u3053\u308c\u300d \n\n\uff3f\u4eba\u4eba\u4eba\u4eba\u4eba\u4eba\uff3f\n\uff1e \u6c34\u3068\u76e3\u8996\u4e0d\u8981 \uff1c\n\uffe3Y^Y^Y^Y^Y^Y\uffe3\nhttps:\/\/t.co\/K4SUsLpwqI https:\/\/t.co\/NYVIylI3r4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303596417,"id_str":"303596417","name":"SHARP \u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e","screen_name":"SHARP_JP","location":null,"url":"http:\/\/www.sharp.co.jp\/corporate\/socialmedia\/","description":"\u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u3055\u307e\u3056\u307e\u306a\u5bb6\u96fb\u3084\u4f01\u696d\u306e\u6d3b\u52d5\u3001\u305d\u306e\u4ed6\u3042\u308c\u3053\u308c\u3092\u767a\u4fe1\u4e2d\u3002\u304a\u554f\u3044\u5408\u308f\u305b\u306b\u306f\u304a\u7b54\u3048\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u304c\u3001\u3044\u305f\u3060\u3044\u305f\u30ea\u30d7\u306b\u306f\u3067\u304d\u308b\u3060\u3051\u53cd\u5fdc\u3057\u307e\u3059\u3002\u306a\u304a\u30d7\u30ec\u30b9\/IR\u60c5\u5831\u306f\u5e83\u5831\u90e8 @SHARP_Press \u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":true,"followers_count":254165,"friends_count":423,"listed_count":4972,"favourites_count":115,"statuses_count":30487,"created_at":"Mon May 23 04:34:08 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDF6FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1387D4","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660461551996940288\/NeNW6lHE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660461551996940288\/NeNW6lHE_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5054,"favorite_count":3045,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K4SUsLpwqI","expanded_url":"http:\/\/www.sharp.co.jp\/hotcook\/feature\/auto\/","display_url":"sharp.co.jp\/hotcook\/featur\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K4SUsLpwqI","expanded_url":"http:\/\/www.sharp.co.jp\/hotcook\/feature\/auto\/","display_url":"sharp.co.jp\/hotcook\/featur\u2026","indices":[106,129]}],"user_mentions":[{"screen_name":"SHARP_JP","name":"SHARP \u30b7\u30e3\u30fc\u30d7\u682a\u5f0f\u4f1a\u793e","id":303596417,"id_str":"303596417","indices":[3,12]}],"symbols":[],"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663632582681083904,"source_status_id_str":"663632582681083904","source_user_id":303596417,"source_user_id_str":"303596417"}]},"extended_entities":{"media":[{"id":663632581338882048,"id_str":"663632581338882048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWyURAUYAADnOD.jpg","url":"https:\/\/t.co\/NYVIylI3r4","display_url":"pic.twitter.com\/NYVIylI3r4","expanded_url":"http:\/\/twitter.com\/SHARP_JP\/status\/663632582681083904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663632582681083904,"source_status_id_str":"663632582681083904","source_user_id":303596417,"source_user_id_str":"303596417"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094661"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139810398208,"id_str":"663728139810398208","text":"@karin_ogino @Y_Adolescence \u884c\u304f\u3057\u304b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715618567225344,"in_reply_to_status_id_str":"663715618567225344","in_reply_to_user_id":791678252,"in_reply_to_user_id_str":"791678252","in_reply_to_screen_name":"karin_ogino","user":{"id":251954781,"id_str":"251954781","name":"\u30e0\u30ed\u30cf\u30b7 \u30a4\u30ba\u30df","screen_name":"izmx27","location":"\u6771\u4eac","url":null,"description":"Pop'n'Roll DJ\u266a\n\u97f3\u697d(Punk,Rock,Ska,Rocksteady,Pop,\u3067\u3093\u3071\u7d44.inc)\u3001\u30b5\u30c3\u30ab\u30fc\u3001\u30de\u30f3\u30ac\u3001\u30a2\u30cb\u30e1\u3001\u3054\u306f\u3093\u3001\u5922\u307f\u308b\u30a2\u30c9\u30ec\u30bb\u30f3\u30b9\u306a\u3069\u597d\u304d\u2728","protected":false,"verified":false,"followers_count":141,"friends_count":170,"listed_count":4,"favourites_count":9799,"statuses_count":7770,"created_at":"Mon Feb 14 05:09:48 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574021259354230784\/-cslO84d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574021259354230784\/-cslO84d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/251954781\/1432460942","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"karin_ogino","name":"\u837b\u91ce\u53ef\u9234","id":791678252,"id_str":"791678252","indices":[0,12]},{"screen_name":"Y_Adolescence","name":"\u5922\u307f\u308b\u30a2\u30c9\u30ec\u30bb\u30f3\u30b9","id":617885225,"id_str":"617885225","indices":[13,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094660"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139831390208,"id_str":"663728139831390208","text":"\u9752\u7a7a\u6587\u5eab\u6e9c\u3081\u3066\u308b\u306e\u5d29\u3057\u3066\u304f\u304b","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220935440,"id_str":"220935440","name":"\uff8d\uff9f\uff67\uff9d\uff7a\uff8f\uff98\uff70\uff88","screen_name":"PANKOmamire","location":"\u307d\u3088\u307d\u3088\u661f","url":"http:\/\/www.amazon.co.jp\/registry\/wishlist\/3O40WL3EOOGVA","description":"\u30a4\u30ab\u3057\u305f\u304a\u3068\u30b4\u30a4\u30e0\u30c4\u30a4\u306e\u30aa\u30bf\u30af","protected":false,"verified":false,"followers_count":796,"friends_count":379,"listed_count":72,"favourites_count":64669,"statuses_count":71054,"created_at":"Mon Nov 29 08:14:32 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662607990374031360\/4eDYnOYc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662607990374031360\/4eDYnOYc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220935440\/1446430684","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094665"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139806224386,"id_str":"663728139806224386","text":"Makasih yap https:\/\/t.co\/3RhyGPlbaG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":630786275,"id_str":"630786275","name":"Anniv 40 Month","screen_name":"iqbaallan","location":"vidnylthfa","url":null,"description":"@iqbaale parodi. SMK48. EightBeat #Pard2012Gen","protected":false,"verified":false,"followers_count":26802,"friends_count":2469,"listed_count":17,"favourites_count":2667,"statuses_count":126963,"created_at":"Mon Jul 09 04:37:58 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169682235\/GcRRVzmY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169682235\/GcRRVzmY.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660078355933298689\/EYxND3cN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660078355933298689\/EYxND3cN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/630786275\/1446623490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663648394984845313,"quoted_status_id_str":"663648394984845313","quoted_status":{"created_at":"Mon Nov 09 09:24:42 +0000 2015","id":663648394984845313,"id_str":"663648394984845313","text":"@iqbaallan happy anniv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663648016025321472,"in_reply_to_status_id_str":"663648016025321472","in_reply_to_user_id":630786275,"in_reply_to_user_id_str":"630786275","in_reply_to_screen_name":"iqbaallan","user":{"id":594336434,"id_str":"594336434","name":"katya","screen_name":"mltchxra","location":"prev;katshamura28","url":"http:\/\/duosyge.co","description":"\u275d ini bukan yg asli coy\u00bf \u275e","protected":false,"verified":false,"followers_count":2375,"friends_count":1479,"listed_count":1,"favourites_count":915,"statuses_count":42864,"created_at":"Wed May 30 05:51:03 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510044904852959235\/k-idO3Vw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510044904852959235\/k-idO3Vw.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663241669345591296\/1gs7Hgs1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663241669345591296\/1gs7Hgs1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594336434\/1446823097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iqbaallan","name":"Anniv 40 Month","id":630786275,"id_str":"630786275","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3RhyGPlbaG","expanded_url":"https:\/\/twitter.com\/mltchxra\/status\/663648394984845313","display_url":"twitter.com\/mltchxra\/statu\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080094659"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802050561,"id_str":"663728139802050561","text":"@arukime0 \u305d\u308c\u306f\u30de\u30b8\u3067\u6b32\u3057\u3044\u2026\u3002","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727672887906304,"in_reply_to_status_id_str":"663727672887906304","in_reply_to_user_id":130234477,"in_reply_to_user_id_str":"130234477","in_reply_to_screen_name":"arukime0","user":{"id":116154806,"id_str":"116154806","name":"\u306a\u305f","screen_name":"natamamenoki","location":"\u30a4\u30d0\u30e9\u30ad\u30b9\u30bf\u30f3\u5357\u897f\u90e8","url":null,"description":"\u57fa\u672c\u30b1\u30e2\u30ca\u30fc\u3067\u7570\u5f62\u982d\u3068\u304b\u3082\u597d\u304d\u306a\u4eba\u5916\u597d\u304d\/\u30de\u30f3\u30ac\u3068\u30a4\u30d0\u30ac\u30fc\u30eb\u304c\u597d\u304d\u306a\u30ab\u30e1\u30b3\u306e\u30aa\u30c3\u30b5\u30f3\/\u5199\u771f\u306f\u30d8\u30dc\u3067\u3059\/ \n\u4eee\u88c5\u30ab\u30e1\u30b3\u30b5\u30d6\u30a2\u30ab\uff08@ninjyakoroku\uff09","protected":false,"verified":false,"followers_count":727,"friends_count":383,"listed_count":45,"favourites_count":1081,"statuses_count":153763,"created_at":"Sun Feb 21 10:52:42 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/267907812\/RIMG0024.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/267907812\/RIMG0024.JPG","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3705630805\/f24c65a6899b69759df86c85833dec7c_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3705630805\/f24c65a6899b69759df86c85833dec7c_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116154806\/1424611533","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arukime0","name":"\u6b69\u304d\u76ee\u3067\u3059","id":130234477,"id_str":"130234477","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139823132672,"id_str":"663728139823132672","text":"Kul att t\u00e5get var 20min sent :))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2277350307,"id_str":"2277350307","name":"Tindra","screen_name":"TindraJohansson","location":"\u00d6rebro, Sverige ","url":null,"description":"kommer aldrig p\u00e5 n\u00e5tt bra att skriva h\u00e4r men jag tycker om katter","protected":false,"verified":false,"followers_count":179,"friends_count":184,"listed_count":5,"favourites_count":16139,"statuses_count":20480,"created_at":"Sun Jan 12 18:14:19 +0000 2014","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660931201537073152\/2u2qjIWb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660931201537073152\/2u2qjIWb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2277350307\/1446413220","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sv","timestamp_ms":"1447080094663"} +{"delete":{"status":{"id":662383940871802880,"id_str":"662383940871802880","user_id":1325280600,"user_id_str":"1325280600"},"timestamp_ms":"1447080094900"}} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139823144960,"id_str":"663728139823144960","text":"I think its so funny how people fake-love the 90s hahha yall r some fucking dorks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299910333,"id_str":"299910333","name":"@internetfame","screen_name":"cleansprite","location":"the laundry mat ","url":"https:\/\/twitter.com\/cleansprite\/status\/656079086763180032","description":"no habla englo mi plug es paco, pedro loco, vato taco, chimi nacho - im a racist - GO RAIDERS","protected":false,"verified":false,"followers_count":1367,"friends_count":555,"listed_count":15,"favourites_count":1240,"statuses_count":56818,"created_at":"Mon May 16 21:48:47 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532651560036073472\/WLYAKnfI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532651560036073472\/WLYAKnfI.png","profile_background_tile":true,"profile_link_color":"0000B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650883043218079744\/G_4W5mwr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650883043218079744\/G_4W5mwr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299910333\/1436999268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094663"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802030080,"id_str":"663728139802030080","text":"Buenos y lluviosos d\u00edas desde Tierra Regia !! https:\/\/t.co\/5sorL5C6NX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877504521,"id_str":"2877504521","name":"Una Abogada ","screen_name":"UnaAbogada123","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":85,"friends_count":231,"listed_count":0,"favourites_count":19,"statuses_count":556,"created_at":"Sat Nov 15 04:00:05 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/533716306592141312\/JMHx5kz4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533716306592141312\/JMHx5kz4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877504521\/1416081936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728137960751105,"id_str":"663728137960751105","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOZKVAAE8vBl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOZKVAAE8vBl.jpg","url":"https:\/\/t.co\/5sorL5C6NX","display_url":"pic.twitter.com\/5sorL5C6NX","expanded_url":"http:\/\/twitter.com\/UnaAbogada123\/status\/663728139802030080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"large":{"w":1024,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728137960751105,"id_str":"663728137960751105","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOZKVAAE8vBl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOZKVAAE8vBl.jpg","url":"https:\/\/t.co\/5sorL5C6NX","display_url":"pic.twitter.com\/5sorL5C6NX","expanded_url":"http:\/\/twitter.com\/UnaAbogada123\/status\/663728139802030080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":244,"resize":"fit"},"medium":{"w":600,"h":432,"resize":"fit"},"large":{"w":1024,"h":737,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802030082,"id_str":"663728139802030082","text":"\u0423\u0440\u0430! \u041c\u043d\u043e\u0439 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \"\u041f\u0435\u0440\u0432\u044b\u0439 \u0442\u0440\u0430\u043d\u0441\u043f\u043e\u0440\u0442\" \u0432 \u0438\u0433\u0440\u0435 Big Business HD \u0434\u043b\u044f iPad! https:\/\/t.co\/xQzWZEz9W7 #gameinsight #ipadgames #ipad","source":"\u003ca href=\"http:\/\/www.game-insight.com\/\" rel=\"nofollow\"\u003eBig Business\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067843876,"id_str":"3067843876","name":"\u0410\u0432\u0435\u0440\u0435\u043d\u043a\u043e\u0432\u0430 \u0412\u0438\u043a\u0430","screen_name":"K4GKv9TBMSmRdKu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":2075,"created_at":"Tue Mar 03 13:31:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gameinsight","indices":[104,116]},{"text":"ipadgames","indices":[117,127]},{"text":"ipad","indices":[128,133]}],"urls":[{"url":"https:\/\/t.co\/xQzWZEz9W7","expanded_url":"http:\/\/tinyurl.com\/ov7xv6u","display_url":"tinyurl.com\/ov7xv6u","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080094658"} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139823026176,"id_str":"663728139823026176","text":"#Nieuws | \u201cEven een dag niet ziek zijn\u201d https:\/\/t.co\/zEoDcJjqzu #BitterBallenBorrel https:\/\/t.co\/5mnOD3LKBr","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2982565349,"id_str":"2982565349","name":"BBB Den Haag","screen_name":"Den_Haag_BBB","location":"Den Haag","url":"http:\/\/www.bitterballenborrel.nl","description":"BitterBallenBorrel Den Haag is een informele inspirerende zakelijke netwerkborrel voor ondernemers, directeuren & managers.","protected":false,"verified":false,"followers_count":66,"friends_count":213,"listed_count":3,"favourites_count":0,"statuses_count":1971,"created_at":"Sat Jan 17 14:10:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556454326583824384\/iBxYt23O.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556454326583824384\/iBxYt23O.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556453648494895106\/riRwdSug_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556453648494895106\/riRwdSug_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2982565349\/1421503896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Nieuws","indices":[0,7]},{"text":"BitterBallenBorrel","indices":[65,84]}],"urls":[{"url":"https:\/\/t.co\/zEoDcJjqzu","expanded_url":"http:\/\/dlvr.it\/Chfk51","display_url":"dlvr.it\/Chfk51","indices":[41,64]}],"user_mentions":[],"symbols":[],"media":[{"id":663728139730751489,"id_str":"663728139730751489","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOfwVEAEOqr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOfwVEAEOqr3.jpg","url":"https:\/\/t.co\/5mnOD3LKBr","display_url":"pic.twitter.com\/5mnOD3LKBr","expanded_url":"http:\/\/twitter.com\/Den_Haag_BBB\/status\/663728139823026176\/photo\/1","type":"photo","sizes":{"large":{"w":495,"h":370,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"medium":{"w":495,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728139730751489,"id_str":"663728139730751489","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOfwVEAEOqr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOfwVEAEOqr3.jpg","url":"https:\/\/t.co\/5mnOD3LKBr","display_url":"pic.twitter.com\/5mnOD3LKBr","expanded_url":"http:\/\/twitter.com\/Den_Haag_BBB\/status\/663728139823026176\/photo\/1","type":"photo","sizes":{"large":{"w":495,"h":370,"resize":"fit"},"small":{"w":340,"h":254,"resize":"fit"},"medium":{"w":495,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080094663"} +{"delete":{"status":{"id":663727959463870465,"id_str":"663727959463870465","user_id":2302752974,"user_id_str":"2302752974"},"timestamp_ms":"1447080095049"}} +{"created_at":"Mon Nov 09 14:41:34 +0000 2015","id":663728139802021889,"id_str":"663728139802021889","text":"Enjoy #MassageTherapy, Reiki, a facial, and more at Zen's Day Spa https:\/\/t.co\/qWq4bCMhis https:\/\/t.co\/T8zLPS0S5k","source":"\u003ca href=\"http:\/\/astrid34123.tumblr.com\" rel=\"nofollow\"\u003eAstrid3412310682\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3910631353,"id_str":"3910631353","name":"Astrid Larrabee","screen_name":"Astrid34123","location":null,"url":null,"description":"Optimist \u2726 Native Rights Economics \u2726 Subtly charming organizer","protected":false,"verified":false,"followers_count":31,"friends_count":268,"listed_count":1,"favourites_count":2,"statuses_count":190,"created_at":"Fri Oct 16 05:38:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654894595487088640\/LF9aTBDg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654894595487088640\/LF9aTBDg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MassageTherapy","indices":[6,21]}],"urls":[{"url":"https:\/\/t.co\/qWq4bCMhis","expanded_url":"http:\/\/hpin.us\/sc6ei","display_url":"hpin.us\/sc6ei","indices":[66,89]}],"user_mentions":[],"symbols":[],"media":[{"id":663728139164512256,"id_str":"663728139164512256","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOdpU8AAkWhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOdpU8AAkWhE.jpg","url":"https:\/\/t.co\/T8zLPS0S5k","display_url":"pic.twitter.com\/T8zLPS0S5k","expanded_url":"http:\/\/twitter.com\/Astrid34123\/status\/663728139802021889\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728139164512256,"id_str":"663728139164512256","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOdpU8AAkWhE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOdpU8AAkWhE.jpg","url":"https:\/\/t.co\/T8zLPS0S5k","display_url":"pic.twitter.com\/T8zLPS0S5k","expanded_url":"http:\/\/twitter.com\/Astrid34123\/status\/663728139802021889\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080094658"} +{"delete":{"status":{"id":663679653647810560,"id_str":"663679653647810560","user_id":768810499,"user_id_str":"768810499"},"timestamp_ms":"1447080095041"}} +{"delete":{"status":{"id":519460469375918080,"id_str":"519460469375918080","user_id":2743251414,"user_id_str":"2743251414"},"timestamp_ms":"1447080095116"}} +{"delete":{"status":{"id":663722347501785088,"id_str":"663722347501785088","user_id":3502662913,"user_id_str":"3502662913"},"timestamp_ms":"1447080095170"}} +{"delete":{"status":{"id":662619836921442304,"id_str":"662619836921442304","user_id":736352137,"user_id_str":"736352137"},"timestamp_ms":"1447080095236"}} +{"delete":{"status":{"id":663727699417047040,"id_str":"663727699417047040","user_id":3183168822,"user_id_str":"3183168822"},"timestamp_ms":"1447080095276"}} +{"delete":{"status":{"id":604525501122633729,"id_str":"604525501122633729","user_id":2653828040,"user_id_str":"2653828040"},"timestamp_ms":"1447080095332"}} +{"delete":{"status":{"id":663728135637045248,"id_str":"663728135637045248","user_id":4135794732,"user_id_str":"4135794732"},"timestamp_ms":"1447080095445"}} +{"delete":{"status":{"id":602045933459742720,"id_str":"602045933459742720","user_id":1899479814,"user_id_str":"1899479814"},"timestamp_ms":"1447080095620"}} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996485633,"id_str":"663728143996485633","text":"RT @SincerelyTumblr: i am pretty much 3% human and 97% stress","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98939229,"id_str":"98939229","name":"Milica","screen_name":"Mici_Serbia","location":null,"url":null,"description":"24. In defense of our Dreams ~ Kindergarten teacher. #TeamCancer","protected":false,"verified":false,"followers_count":1672,"friends_count":1981,"listed_count":77,"favourites_count":142,"statuses_count":60561,"created_at":"Wed Dec 23 18:59:08 +0000 2009","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"sr","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/222545295\/BG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/222545295\/BG.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627432227262099456\/roXFhUDX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627432227262099456\/roXFhUDX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98939229\/1405414006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:37:21 +0000 2015","id":663666678048403456,"id_str":"663666678048403456","text":"i am pretty much 3% human and 97% stress","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226690054,"id_str":"226690054","name":"Sincerely Tumblr","screen_name":"SincerelyTumblr","location":null,"url":"http:\/\/encourage.tumblr.com\/","description":"Everything was David Karp and nothing hurt. *Parody Account \/ Fan Page* - @CommonFanGri","protected":false,"verified":false,"followers_count":2114648,"friends_count":49809,"listed_count":3364,"favourites_count":4370,"statuses_count":47060,"created_at":"Tue Dec 14 20:35:48 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_tile":true,"profile_link_color":"2E3796","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226690054\/1446353800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3099,"favorite_count":3418,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SincerelyTumblr","name":"Sincerely Tumblr","id":226690054,"id_str":"226690054","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144025821184,"id_str":"663728144025821184","text":"Bueno en realidad no","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2722125663,"id_str":"2722125663","name":"Cero a la izquierda","screen_name":"Pdemonster","location":"en mi mundo","url":"http:\/\/www.instagram.com\/\/@paulaferreira_29","description":"Little monster. RCCV, FCB. Persona que le da igual lo que diga la gente de ella,vive la vida porque desgraciadamente es muy corta.","protected":false,"verified":false,"followers_count":207,"friends_count":182,"listed_count":2,"favourites_count":1196,"statuses_count":8263,"created_at":"Wed Jul 23 21:13:26 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663021938932097024\/MGDTpVOl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663021938932097024\/MGDTpVOl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2722125663\/1446070070","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080095665"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000622592,"id_str":"663728144000622592","text":"RT @thomas_begue: Samedi 7 Novembre, les FNJ de la r\u00e9gion se r\u00e9unirons \u00e0 Bardeaux pour une journ\u00e9e d'actions #Regionales2015 https:\/\/t.co\/k\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1162538240,"id_str":"1162538240","name":"ferr\u00e9 claude","screen_name":"claudeferr","location":null,"url":"http:\/\/page.is\/ferre-claude","description":null,"protected":false,"verified":false,"followers_count":1299,"friends_count":2072,"listed_count":87,"favourites_count":27,"statuses_count":132413,"created_at":"Sat Feb 09 10:04:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3228653618\/9ef92ed7bf153861a819915d03dd3b9d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3228653618\/9ef92ed7bf153861a819915d03dd3b9d_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 02:03:52 +0000 2015","id":661725516668526592,"id_str":"661725516668526592","text":"Samedi 7 Novembre, les FNJ de la r\u00e9gion se r\u00e9unirons \u00e0 Bardeaux pour une journ\u00e9e d'actions #Regionales2015 https:\/\/t.co\/kLHl30eAg0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2768196713,"id_str":"2768196713","name":"Thomas B\u00e9gu\u00e9","screen_name":"thomas_begue","location":"Bordeaux, Aquitaine","url":"https:\/\/m.facebook.com\/pages\/FNJ-Gironde\/689360497851807","description":"Responsable adjoint charg\u00e9 des actions militantes du #FNJGironde - Tous avec @JColombierFN pour les #R\u00e9gionales2015 ! - SD #FNJGironde : @KYTaillard","protected":false,"verified":false,"followers_count":220,"friends_count":218,"listed_count":6,"favourites_count":518,"statuses_count":1117,"created_at":"Fri Sep 12 19:25:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597109815186427904\/C3RiYiRm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597109815186427904\/C3RiYiRm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2768196713\/1431199769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"Regionales2015","indices":[91,106]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661725504811237376,"id_str":"661725504811237376","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","url":"https:\/\/t.co\/kLHl30eAg0","display_url":"pic.twitter.com\/kLHl30eAg0","expanded_url":"http:\/\/twitter.com\/thomas_begue\/status\/661725516668526592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661725504811237376,"id_str":"661725504811237376","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","url":"https:\/\/t.co\/kLHl30eAg0","display_url":"pic.twitter.com\/kLHl30eAg0","expanded_url":"http:\/\/twitter.com\/thomas_begue\/status\/661725516668526592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Regionales2015","indices":[109,124]}],"urls":[],"user_mentions":[{"screen_name":"thomas_begue","name":"Thomas B\u00e9gu\u00e9","id":2768196713,"id_str":"2768196713","indices":[3,16]}],"symbols":[],"media":[{"id":661725504811237376,"id_str":"661725504811237376","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","url":"https:\/\/t.co\/kLHl30eAg0","display_url":"pic.twitter.com\/kLHl30eAg0","expanded_url":"http:\/\/twitter.com\/thomas_begue\/status\/661725516668526592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":661725516668526592,"source_status_id_str":"661725516668526592","source_user_id":2768196713,"source_user_id_str":"2768196713"}]},"extended_entities":{"media":[{"id":661725504811237376,"id_str":"661725504811237376","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS7r1zUXAAAeVhq.jpg","url":"https:\/\/t.co\/kLHl30eAg0","display_url":"pic.twitter.com\/kLHl30eAg0","expanded_url":"http:\/\/twitter.com\/thomas_begue\/status\/661725516668526592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":724,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"},"medium":{"w":600,"h":424,"resize":"fit"}},"source_status_id":661725516668526592,"source_status_id_str":"661725516668526592","source_user_id":2768196713,"source_user_id_str":"2768196713"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992299521,"id_str":"663728143992299521","text":"just really want some chocolate","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2163913466,"id_str":"2163913466","name":"\u2661","screen_name":"Emma841Emma","location":null,"url":null,"description":"ehs","protected":false,"verified":false,"followers_count":299,"friends_count":239,"listed_count":0,"favourites_count":6950,"statuses_count":2394,"created_at":"Wed Oct 30 02:03:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661576389833809920\/4FuG-AV9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661576389833809920\/4FuG-AV9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2163913466\/1445911902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"13a0b1e6bbe06a77","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/13a0b1e6bbe06a77.json","place_type":"city","name":"Eastland","full_name":"Eastland, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-98.852255,32.385564],[-98.852255,32.409559],[-98.789332,32.409559],[-98.789332,32.385564]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144029978624,"id_str":"663728144029978624","text":"RT @Itspedrito: eu sou cardiaco parem de mexer com meus sentimentos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2784824105,"id_str":"2784824105","name":"naclara","screen_name":"FUCKINGLOX","location":"\u2741 nic evy lolo \u2741 BABI EDUARDO ","url":"https:\/\/twitter.com\/FALLCHORO\/status\/620793818577768449","description":"sereia vampira do litoral","protected":false,"verified":false,"followers_count":6737,"friends_count":5556,"listed_count":15,"favourites_count":200,"statuses_count":71840,"created_at":"Fri Sep 26 02:44:39 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634206250079776768\/J6Pajtfz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634206250079776768\/J6Pajtfz.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662739143273746433\/RBJaFH0P_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662739143273746433\/RBJaFH0P_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2784824105\/1446844287","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:21:16 +0000 2015","id":663572036967653376,"id_str":"663572036967653376","text":"eu sou cardiaco parem de mexer com meus sentimentos","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2484226796,"id_str":"2484226796","name":"PEDRAO","screen_name":"Itspedrito","location":"Brasil","url":null,"description":"Depois que lacrei uma vez nunca mais parei.","protected":false,"verified":false,"followers_count":23433,"friends_count":235,"listed_count":35,"favourites_count":13734,"statuses_count":56432,"created_at":"Thu May 08 17:13:09 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624324854657888256\/sRDjKVXZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624324854657888256\/sRDjKVXZ.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615634870388301824\/aoxmpLyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615634870388301824\/aoxmpLyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2484226796\/1439937879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Itspedrito","name":"PEDRAO","id":2484226796,"id_str":"2484226796","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080095666"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992266752,"id_str":"663728143992266752","text":"https:\/\/t.co\/7hz3gi2raI \n\u0641\u064a\u0644\u0645 \u0633\u0643\u0633 \u0644\u0628\u0646\u0627\u0646\u064a \u0641\u0627\u062c\u0631 \u0648\u0646\u064a\u0643 \u0631\u0648\u0645\u0627\u0646\u0633\u064a \u0639\u0644\u064a \u0627\u0644\u0627\u0631\u0636 https:\/\/t.co\/fsdWSQsXfE via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2427609164,"id_str":"2427609164","name":"Vivekananda Lismore","screen_name":"zodoluloboxo","location":"Phoenix, AZ","url":null,"description":"I love food more than people & if your reading this pointless bio, you might as well follow me, check out my boy's music as well","protected":false,"verified":false,"followers_count":15,"friends_count":127,"listed_count":0,"favourites_count":0,"statuses_count":48,"created_at":"Fri Apr 04 17:27:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618734845322080256\/FSE-Kepc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618734845322080256\/FSE-Kepc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2427609164\/1436031837","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7hz3gi2raI","expanded_url":"http:\/\/goo.gl\/5EV52d","display_url":"goo.gl\/5EV52d","indices":[0,23]},{"url":"https:\/\/t.co\/fsdWSQsXfE","expanded_url":"http:\/\/sco.lt\/5hjV3J","display_url":"sco.lt\/5hjV3J","indices":[69,92]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[97,105]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144021651457,"id_str":"663728144021651457","text":"#PushAwardsKathNiels https:\/\/t.co\/ii6WdUksYI","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3930271214,"id_str":"3930271214","name":"kath","screen_name":"kathdjjj5","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":35,"friends_count":1,"listed_count":26,"favourites_count":0,"statuses_count":58789,"created_at":"Sun Oct 18 00:23:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655540159224528897\/1fnfXHeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655540159224528897\/1fnfXHeA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728022298734592,"quoted_status_id_str":"663728022298734592","quoted_status":{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728022298734592,"id_str":"663728022298734592","text":"LopezCrz: geliferrer: kathnielquotes_: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: kbdpftcris8: lepitennicell4: #PushAwardsKathNiels #PushAwa\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3834279612,"id_str":"3834279612","name":"SQUAD","screen_name":"babykathniel31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":9,"favourites_count":0,"statuses_count":18705,"created_at":"Fri Oct 09 08:14:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[110,130]},{"text":"PushAwa","indices":[131,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/ii6WdUksYI","expanded_url":"http:\/\/twitter.com\/babykathniel31\/status\/663728022298734592","display_url":"twitter.com\/babykathniel31\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080095664"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144009007105,"id_str":"663728144009007105","text":"THE TRANSITION BETWEEN THE REYNOLDS PAMPHLET AND BURN HOW ABOUT NO !!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287088116,"id_str":"3287088116","name":"a dot ham \u2729","screen_name":"LOVEXPLODES","location":"katie | she\/her ","url":"http:\/\/lovexplodes.flavors.me","description":"you built me palaces out of paragraphs, you built cathedrals || eighteen \u2022 bi \u2022 isfj \u2022 mmc '19","protected":false,"verified":false,"followers_count":350,"friends_count":234,"listed_count":5,"favourites_count":6918,"statuses_count":6034,"created_at":"Wed Jul 22 03:19:44 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625177482413510656\/WKo6rxBG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625177482413510656\/WKo6rxBG.jpg","profile_background_tile":true,"profile_link_color":"C02721","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662848304204550144\/R80d5WXu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662848304204550144\/R80d5WXu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287088116\/1446913898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095661"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996485632,"id_str":"663728143996485632","text":"@pusteherz wirklich! Ich bin grade was Lieder angeht sooo sensibel und fang so leicht an zu heulen, aber n\u00f6 \ud83d\ude00","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727975687438336,"in_reply_to_status_id_str":"663727975687438336","in_reply_to_user_id":1013954168,"in_reply_to_user_id_str":"1013954168","in_reply_to_screen_name":"pusteherz","user":{"id":61743202,"id_str":"61743202","name":"paulikin_skywalker","screen_name":"PauliPresley","location":"Ruhrpott","url":"http:\/\/instagram.com\/paulikin_skywalker","description":"heart of gold covered in ice. Volbeat, Iron Maiden, Dio, Judas Priest.","protected":false,"verified":false,"followers_count":487,"friends_count":145,"listed_count":8,"favourites_count":14028,"statuses_count":5907,"created_at":"Fri Jul 31 10:33:37 +0000 2009","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504164427\/LCW40581W.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504164427\/LCW40581W.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646788985528782848\/MlgMUWmt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646788985528782848\/MlgMUWmt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61743202\/1446207431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pusteherz","name":"morgentau","id":1013954168,"id_str":"1013954168","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000618496,"id_str":"663728144000618496","text":"RT @PakistaniMN: #StatusQuoUnitedAgainstPTI \n#StatusQuoUnitedAgainstPTI \nPTI will win InShaAllah\u270c\ufe0f\n\n@IamHinaaa @ShkhRasheed https:\/\/t.co\/F3\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877762295,"id_str":"3877762295","name":"Amna Khan","screen_name":"96Aamnafaisal","location":"Khyber Pakhtunkhwa, Pakistan","url":"http:\/\/insaf.org.pk","description":"we salute our army,Love PAKISTAN #isupportpti","protected":false,"verified":false,"followers_count":1287,"friends_count":2160,"listed_count":4,"favourites_count":4248,"statuses_count":5698,"created_at":"Tue Oct 06 05:33:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662683004905635840\/yeGVcLt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662683004905635840\/yeGVcLt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3877762295\/1447005708","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:08 +0000 2015","id":663726519953457152,"id_str":"663726519953457152","text":"#StatusQuoUnitedAgainstPTI \n#StatusQuoUnitedAgainstPTI \nPTI will win InShaAllah\u270c\ufe0f\n\n@IamHinaaa @ShkhRasheed https:\/\/t.co\/F3wDHcLQuh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1422198260,"id_str":"1422198260","name":"Aliya #IqbalDay","screen_name":"PakistaniMN","location":null,"url":null,"description":"With Faith, Discipline & selfless devotion 2duty there is nothing worthwhile tht u can't achieve Jinnah. MPhil Electronics,National poetry #TeamIK \u0646\u06cc\u0627 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646","protected":false,"verified":false,"followers_count":28565,"friends_count":1139,"listed_count":67,"favourites_count":25039,"statuses_count":172041,"created_at":"Sun May 12 04:07:46 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663460706713403392\/eboCOAEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663460706713403392\/eboCOAEu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1422198260\/1440965646","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"StatusQuoUnitedAgainstPTI","indices":[0,26]},{"text":"StatusQuoUnitedAgainstPTI","indices":[28,54]}],"urls":[],"user_mentions":[{"screen_name":"IamHinaaa","name":"Hina PTI","id":1958080830,"id_str":"1958080830","indices":[83,93]},{"screen_name":"ShkhRasheed","name":"Sheikh Rashid Ahmad","id":434071161,"id_str":"434071161","indices":[94,106]}],"symbols":[],"media":[{"id":663726512017838081,"id_str":"663726512017838081","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","url":"https:\/\/t.co\/F3wDHcLQuh","display_url":"pic.twitter.com\/F3wDHcLQuh","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726519953457152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":960,"resize":"fit"},"small":{"w":340,"h":576,"resize":"fit"},"large":{"w":566,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726512017838081,"id_str":"663726512017838081","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","url":"https:\/\/t.co\/F3wDHcLQuh","display_url":"pic.twitter.com\/F3wDHcLQuh","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726519953457152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":960,"resize":"fit"},"small":{"w":340,"h":576,"resize":"fit"},"large":{"w":566,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StatusQuoUnitedAgainstPTI","indices":[17,43]},{"text":"StatusQuoUnitedAgainstPTI","indices":[45,71]}],"urls":[],"user_mentions":[{"screen_name":"PakistaniMN","name":"Aliya #IqbalDay","id":1422198260,"id_str":"1422198260","indices":[3,15]},{"screen_name":"IamHinaaa","name":"Hina PTI","id":1958080830,"id_str":"1958080830","indices":[100,110]},{"screen_name":"ShkhRasheed","name":"Sheikh Rashid Ahmad","id":434071161,"id_str":"434071161","indices":[111,123]}],"symbols":[],"media":[{"id":663726512017838081,"id_str":"663726512017838081","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","url":"https:\/\/t.co\/F3wDHcLQuh","display_url":"pic.twitter.com\/F3wDHcLQuh","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726519953457152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":960,"resize":"fit"},"small":{"w":340,"h":576,"resize":"fit"},"large":{"w":566,"h":960,"resize":"fit"}},"source_status_id":663726519953457152,"source_status_id_str":"663726519953457152","source_user_id":1422198260,"source_user_id_str":"1422198260"}]},"extended_entities":{"media":[{"id":663726512017838081,"id_str":"663726512017838081","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHvwDVEAEvpzV.jpg","url":"https:\/\/t.co\/F3wDHcLQuh","display_url":"pic.twitter.com\/F3wDHcLQuh","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726519953457152\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":566,"h":960,"resize":"fit"},"small":{"w":340,"h":576,"resize":"fit"},"large":{"w":566,"h":960,"resize":"fit"}},"source_status_id":663726519953457152,"source_status_id_str":"663726519953457152","source_user_id":1422198260,"source_user_id_str":"1422198260"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144030048256,"id_str":"663728144030048256","text":"#JusticeForFayazChohan https:\/\/t.co\/PsTIFcEJy9","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165137654,"id_str":"3165137654","name":"Saniya","screen_name":"SaniyaRehmann","location":"Lahore","url":null,"description":"part of #PTIFamily love music! follow me for a follow back!","protected":false,"verified":false,"followers_count":3837,"friends_count":1135,"listed_count":13,"favourites_count":6,"statuses_count":133632,"created_at":"Mon Apr 20 09:46:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658361640102948864\/QhZ5OW20_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658361640102948864\/QhZ5OW20_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165137654\/1443472775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726150213115904,"quoted_status_id_str":"663726150213115904","quoted_status":{"created_at":"Mon Nov 09 14:33:40 +0000 2015","id":663726150213115904,"id_str":"663726150213115904","text":"\": RT Noumank39549581: #JusticeForFayazChohan https:\/\/t.co\/nEF71BsBGl","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1377027012,"id_str":"1377027012","name":"Sanya","screen_name":"sanyahasan10","location":"Pakistan","url":null,"description":"#PTIFamily, hoping to contribute on social media bringing change","protected":false,"verified":false,"followers_count":1776,"friends_count":300,"listed_count":7,"favourites_count":36,"statuses_count":52558,"created_at":"Wed Apr 24 13:24:08 +0000 2013","utc_offset":18000,"time_zone":"Karachi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658360057105547264\/00BeCGHk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658360057105547264\/00BeCGHk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725655075500033,"quoted_status_id_str":"663725655075500033","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForFayazChohan","indices":[23,45]}],"urls":[{"url":"https:\/\/t.co\/nEF71BsBGl","expanded_url":"https:\/\/twitter.com\/shumaila_12\/status\/663725655075500033","display_url":"twitter.com\/shumaila_12\/st\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForFayazChohan","indices":[0,22]}],"urls":[{"url":"https:\/\/t.co\/PsTIFcEJy9","expanded_url":"http:\/\/twitter.com\/riaz4884\/status\/663727984826826752","display_url":"twitter.com\/riaz4884\/statu\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080095666"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992143872,"id_str":"663728143992143872","text":"RT @MAI_TSUBAFULA: \u30a2\u30f3\u30af\u30ec\u3055\u3093\u3068\n\u3064\u3070\u30d5\u30e9\u306e\u30c4\u30fc\u30de\u30f3\u30e9\u30a4\u30d6\u3060\u3088\u3063\u266a\n\n\u7686\u3055\u3093\u3001\n\u3053\u308c\u306f\u6765\u308b\u3063\u304d\u3083\u306a\u3044\u3088\u3063\u25bd\u30fbx\u30fb\u25bd\n\n12\/5(\u571f)\n@HOLIDAY NEXT NAGOYA\n\u958b\u583417:00 \/ \u958b\u6f1418:00\n\n\u25b2\u30c1\u30b1\u30c3\u30c8\n\u00a52500+1D \u5973\u6027\u534a\u984d\n\u901a\u3057\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89913109,"id_str":"89913109","name":"brainkun","screen_name":"brkun","location":"\u611b\u77e5\u770c\u8c4a\u5ddd\u304b\u3089\u306e\u9759\u5ca1\u770c\u5bcc\u58eb\u5bae\u5e02","url":"http:\/\/twpf.jp\/brkun","description":"\u793e\u755c\u3002 \u97f3\u697d\u3068\u30d7\u30ed\u30ec\u30b9\u3068\u30e9\u30fc\u30e1\u30f3\u304c\u751f\u304d\u304c\u3044\u3002\u5143\u7814\u7a76\u54e1\u306e\u73fe\u30fb\u6e05\u6383\u54e1\u3002\u6c38\u9060\uff1f\u306e\u3077\u30fc\u3089\u3041\u517c\u30c6\u30f3\u30b3\u754c\u9688\u3002\u30cf\u30b7\u30e4\u30b9\u30e1\u3055\u3093\u306b\u5fc3\u596a\u308f\u308c\u3001\u30c1\u30c3\u30c1\u63a8\u3057\u52a0\u71b1\u4e2d\u3002\u4e3b\u306bBiSH\u3001\u3064\u3070\u3055Fly\u306e\u73fe\u5834\u306b\u305f\u307e\u306b\u73fe\u308c\u307e\u3059\u3002\u30d7\u30ed\u30ec\u30b9\u306f\u68da\u6a4b\u3001\u98ef\u4f0f\u3002\u6700\u8fd1\u307e\u305f\u30e1\u30ed\u30b3\u30a2\u304c\u30a2\u30c4\u3044","protected":false,"verified":false,"followers_count":371,"friends_count":1110,"listed_count":6,"favourites_count":1504,"statuses_count":20680,"created_at":"Sat Nov 14 10:32:39 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663672615370752000\/07Taf67Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663672615370752000\/07Taf67Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89913109\/1446568424","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728037322604545,"id_str":"663728037322604545","text":"\u30a2\u30f3\u30af\u30ec\u3055\u3093\u3068\n\u3064\u3070\u30d5\u30e9\u306e\u30c4\u30fc\u30de\u30f3\u30e9\u30a4\u30d6\u3060\u3088\u3063\u266a\n\n\u7686\u3055\u3093\u3001\n\u3053\u308c\u306f\u6765\u308b\u3063\u304d\u3083\u306a\u3044\u3088\u3063\u25bd\u30fbx\u30fb\u25bd\n\n12\/5(\u571f)\n@HOLIDAY NEXT NAGOYA\n\u958b\u583417:00 \/ \u958b\u6f1418:00\n\n\u25b2\u30c1\u30b1\u30c3\u30c8\n\u00a52500+1D \u5973\u6027\u534a\u984d\n\u901a\u3057\u5238\/\u00a54000(+2D)\u5973\u6027\u534a\u984d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":945396170,"id_str":"945396170","name":"\u307e \u3044 \u3061 \u3043@\u3064 \u3070 \u3055 F l y\u265e","screen_name":"MAI_TSUBAFULA","location":null,"url":"http:\/\/ameblo.jp\/tsubafulamai\/","description":"\u9ec4\u8272\u62c5\u5f53\u306e\u303e\u30ae\u30e3\u30f3\u30d6\u30e9\u30fc\u3067\u3059\u303e\u4e3b\u306b\u7af6\u99ac\uff01\u30a2\u30dd\u30ed\u30b5\u30e9\u30d6\u30ec\u30c3\u30c9\u30af\u30e9\u30d6\u306e\u300e\u30a2\u30dd\u30ed\u30d5\u30e9\u30a4\u300f\u306e\u540d\u4ed8\u3051\u89aa\u3067\u3059\u3002 \u305d\u3057\u3066\u2026FANCL\u30de\u30cb\u30a2\u3067\u3082\u3042\u308a\u307e\u3059\u3002\u7121\u6dfb\u52a0\u30b5\u30a4\u30b3\u30fc(\uff9f\u2200\uff9f)!!! \u597d\u304d\u306a\u30a2\u30a4\u30c9\u30eb\u306f\u5c0f\u539f\u6625\u9999\u3055\u3093,\u677e\u6751\u9999\u7e54\u3055\u3093,\u5c71\u5cb8\u5948\u6d25\u7f8e\u3055\u3093,\u4e2d\u7530\u3061\u3055\u3068\u3055\u3093,\u9577\u91ce\u305b\u308a\u306a\u3055\u3093\u2764\ufe0e\u597d\u304d\u306a\u697d\u66f2\u306fRADWIMPS\u3055\u3093\u306e\u66f2\u3067\u3059\u266a","protected":false,"verified":false,"followers_count":6453,"friends_count":5244,"listed_count":133,"favourites_count":16743,"statuses_count":10689,"created_at":"Tue Nov 13 08:17:22 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529127482096484352\/aWLEp21d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529127482096484352\/aWLEp21d.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661581951128604672\/6pAgL7zi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661581951128604672\/6pAgL7zi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/945396170\/1446624554","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"holiday","name":"Paul C","id":1278601,"id_str":"1278601","indices":[58,66]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MAI_TSUBAFULA","name":"\u307e \u3044 \u3061 \u3043@\u3064 \u3070 \u3055 F l y\u265e","id":945396170,"id_str":"945396170","indices":[3,17]},{"screen_name":"holiday","name":"Paul C","id":1278601,"id_str":"1278601","indices":[77,85]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996469248,"id_str":"663728143996469248","text":"RT @paioignaxpau: #FansAwards2015 #LaDiosa Flor Vigna \n\n@UnionVignista","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4106250975,"id_str":"4106250975","name":"Karen","screen_name":"karencm04","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":62,"listed_count":0,"favourites_count":21,"statuses_count":86,"created_at":"Tue Nov 03 18:18:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661763655231479808\/BbLThnFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661763655231479808\/BbLThnFO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4106250975\/1446611724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:07:49 +0000 2015","id":663493152142188545,"id_str":"663493152142188545","text":"#FansAwards2015 #LaDiosa Flor Vigna \n\n@UnionVignista","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3577491615,"id_str":"3577491615","name":"Fio","screen_name":"paioignaxpau","location":"Argentina","url":"http:\/\/httpLaQuintaDePaio.com","description":null,"protected":false,"verified":false,"followers_count":419,"friends_count":92,"listed_count":0,"favourites_count":1301,"statuses_count":8606,"created_at":"Mon Sep 07 14:02:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662830378445598721\/W2MG16dP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662830378445598721\/W2MG16dP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3577491615\/1444848687","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":85,"favorite_count":4,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[0,15]},{"text":"LaDiosa","indices":[16,24]}],"urls":[],"user_mentions":[{"screen_name":"UnionVignista","name":"28K Unidos Por Flor","id":2854057473,"id_str":"2854057473","indices":[38,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[18,33]},{"text":"LaDiosa","indices":[34,42]}],"urls":[],"user_mentions":[{"screen_name":"paioignaxpau","name":"Fio","id":3577491615,"id_str":"3577491615","indices":[3,16]},{"screen_name":"UnionVignista","name":"28K Unidos Por Flor","id":2854057473,"id_str":"2854057473","indices":[56,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017260544,"id_str":"663728144017260544","text":"RT @nnBline_Ispr: @Midorin1007 @FuseXoxo \u0e43\u0e0a\u0e48 \u0e2d\u0e22\u0e32\u0e01\u0e15\u0e1a\u0e01\u0e32\u0e23\u0e4c\u0e14\u0e21\u0e32\u0e01 \u0e41\u0e21\u0e48\u0e07\u0e08\u0e49\u0e2d\u0e07\u0e2d\u0e30\u0e44\u0e23\u0e14\u0e2d\u0e22\u0e19\u0e31\u0e01\u0e2b\u0e19\u0e32 555\u0e2b\u0e25\u0e38\u0e21\u0e01\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1e\u0e35\u0e48\u0e19\u0e35\u0e49\u0e14\u0e35\u0e49\u0e14\u0e48\u0e32\u0e1b\u0e32\u0e1b\u0e23\u0e34\u0e01\u0e49\u0e2a\u0e40\u0e25\u0e22 \u0e1c\u0e0a.\u0e01\u0e49\u0e2d\u0e43\u0e01\u0e25\u0e49 \u0e04\u0e25\u0e34\u0e1b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2148554527,"id_str":"2148554527","name":"` \u0e0b\u0e2d\u0e07\u0e01\u0e34\u0e27\u0e44\u0e21\u0e48\u0e07\u0e48\u0e27\u0e07\u0e19\u0e30","screen_name":"Midorin1007","location":"\u0e40\u0e21\u0e19\u0e04\u0e19\u0e43\u0e1a\u0e49\u0e2b\u0e27\u0e22","url":"https:\/\/www.facebook.com\/midorin.pheles.pao","description":"\u0e1b\u0e4a\u0e32 - \u0e15\u0e31\u0e49\u0e07\u0e43\u0e08\u0e40\u0e23\u0e35\u0e22\u0e19\u0e2b\u0e19\u0e48\u0e2d\u0e22 \u0e04\u0e48\u0e32\u0e40\u0e17\u0e2d\u0e21\u0e41\u0e1e\u0e07. #ScieneMath #SWB11 #Dek61 | \uc778\uc2a4\ud53c\ub9bf \u2764 \uc778\ud53c\ub2c8\ud2b8 | \uaddc\uc6b0 \u2022 \uba85\uc5f4 | \u0e42\u0e25\u0e01\u0e17\u0e31\u0e49\u0e07\u0e43\u0e1a\u0e22\u0e01\u0e43\u0e2b\u0e49\u0e2d\u0e34\u0e19 !!","protected":false,"verified":false,"followers_count":331,"friends_count":156,"listed_count":0,"favourites_count":111,"statuses_count":49051,"created_at":"Tue Oct 22 07:48:07 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"815D42","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596378102843838464\/hfJBmD3h.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596378102843838464\/hfJBmD3h.jpg","profile_background_tile":true,"profile_link_color":"A17256","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660826515760746498\/p1zDxY0K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660826515760746498\/p1zDxY0K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2148554527\/1431022408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:38 +0000 2015","id":663722366837481473,"id_str":"663722366837481473","text":"@Midorin1007 @FuseXoxo \u0e43\u0e0a\u0e48 \u0e2d\u0e22\u0e32\u0e01\u0e15\u0e1a\u0e01\u0e32\u0e23\u0e4c\u0e14\u0e21\u0e32\u0e01 \u0e41\u0e21\u0e48\u0e07\u0e08\u0e49\u0e2d\u0e07\u0e2d\u0e30\u0e44\u0e23\u0e14\u0e2d\u0e22\u0e19\u0e31\u0e01\u0e2b\u0e19\u0e32 555\u0e2b\u0e25\u0e38\u0e21\u0e01\u0e32\u0e23\u0e4c\u0e14\u0e44\u0e21\u0e48\u0e21\u0e35\u0e1e\u0e35\u0e48\u0e19\u0e35\u0e49\u0e14\u0e35\u0e49\u0e14\u0e48\u0e32\u0e1b\u0e32\u0e1b\u0e23\u0e34\u0e01\u0e49\u0e2a\u0e40\u0e25\u0e22 \u0e1c\u0e0a.\u0e01\u0e49\u0e2d\u0e43\u0e01\u0e25\u0e49 \u0e04\u0e25\u0e34\u0e1b\u0e16\u0e48\u0e32\u0e22\u0e44\u0e14\u0e49 \u0e41\u0e04\u0e48\u0e2d\u0e14\u0e17\u0e19\u0e1e\u0e2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721850174763008,"in_reply_to_status_id_str":"663721850174763008","in_reply_to_user_id":2148554527,"in_reply_to_user_id_str":"2148554527","in_reply_to_screen_name":"Midorin1007","user":{"id":563716486,"id_str":"563716486","name":"\u0e04\u0e2d\u0e19\u0e08\u0e1a\u0e44\u0e1b\u0e43\u0e08\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e2d\u0e34\u0e19","screen_name":"nnBline_Ispr","location":null,"url":null,"description":"\u0e22\u0e01\u0e43\u0e08\u0e43\u0e2b\u0e49\u0e19\u0e32\u0e21\u0e39\u0e04\u0e19\u0e02\u0e35\u0e49\u0e2d\u0e48\u0e2d\u0e22 \u0e40\u0e14\u0e47\u0e01\u0e1b\u0e23\u0e30\u0e16\u0e21\u0e22\u0e2d\u0e25\u0e25\u0e35\u0e48\u0e02\u0e35\u0e49\u0e42\u0e27\u0e22\u0e27\u0e32\u0e22 \u0e19\u0e2d\u0e19\u0e01\u0e2d\u0e14\u0e2a\u0e32\u0e21\u0e35 7 \u0e04\u0e19 \u0e09\u0e31\u0e19\u0e23\u0e31\u0e01\u0e40\u0e02\u0e32 ~ \u0e22\u0e31\u0e07\u0e23\u0e2d\u0e27\u0e31\u0e19\u0e17\u0e35\u0e48\u0e40\u0e23\u0e32\u0e08\u0e30\u0e44\u0e14\u0e49\u0e21\u0e32\u0e40\u0e08\u0e2d\u0e01\u0e31\u0e19\u0e2d\u0e35\u0e01\u0e19\u0e30 \u0e42\u0e2d\u0e1b\u0e1b\u0e49\u0e32 :)","protected":false,"verified":false,"followers_count":442,"friends_count":302,"listed_count":0,"favourites_count":2827,"statuses_count":89509,"created_at":"Thu Apr 26 13:14:09 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641480743550513152\/RUSUP8TA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641480743550513152\/RUSUP8TA.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661413113107877888\/K_LHPxSa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661413113107877888\/K_LHPxSa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/563716486\/1441775657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0162a3c85e27216e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0162a3c85e27216e.json","place_type":"admin","name":"Amphoe Mueang Samut Prakan","full_name":"Amphoe Mueang Samut Prakan, Samut Prakan","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[100.551474,13.490590],[100.551474,13.663814],[100.784974,13.663814],[100.784974,13.490590]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Midorin1007","name":"` \u0e0b\u0e2d\u0e07\u0e01\u0e34\u0e27\u0e44\u0e21\u0e48\u0e07\u0e48\u0e27\u0e07\u0e19\u0e30","id":2148554527,"id_str":"2148554527","indices":[0,12]},{"screen_name":"FuseXoxo","name":"*\u0e40\u0e22\u0e25\u0e25\u0e35\u0e48*","id":3133706354,"id_str":"3133706354","indices":[13,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nnBline_Ispr","name":"\u0e04\u0e2d\u0e19\u0e08\u0e1a\u0e44\u0e1b\u0e43\u0e08\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e2d\u0e34\u0e19","id":563716486,"id_str":"563716486","indices":[3,16]},{"screen_name":"Midorin1007","name":"` \u0e0b\u0e2d\u0e07\u0e01\u0e34\u0e27\u0e44\u0e21\u0e48\u0e07\u0e48\u0e27\u0e07\u0e19\u0e30","id":2148554527,"id_str":"2148554527","indices":[18,30]},{"screen_name":"FuseXoxo","name":"*\u0e40\u0e22\u0e25\u0e25\u0e35\u0e48*","id":3133706354,"id_str":"3133706354","indices":[31,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144013115392,"id_str":"663728144013115392","text":"Twitter\u306e\u52d5\u753b\u307f\u305f\u3089\u89aa\u306e\u524d\u3067\u601d\u3044\u3063\u304d\u308aAV\u6d41\u308c\u305f\u3058\u3083\u306d\u3048\u304b\n\u3075\u3056\u3051\u3093\u306a\ud83d\udca2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3280451047,"id_str":"3280451047","name":"\u6749\u5c71\u8ad2\u592a","screen_name":"tennisugi1130","location":null,"url":null,"description":"\u7530\u9053\u5c0f\u2192\u7acb\u6c60\u4e2d\u2192\u7acb\u6c60\u9ad8\/\u9ad81\/\u30c6\u30cb\u30b9\/JITC\/ \u77e5\u3063\u3066\u308b\u4eba\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\/\u6c17\u8efd\u306b\u3069\u3046\u305e\/\u304d\u3087\u30fc\u3078\u30fc\u3068\u5bae\u6fa4\u306b\u306f\u5962\u3089\u3059\/RIF\u6765\u3066\u306d","protected":false,"verified":false,"followers_count":186,"friends_count":175,"listed_count":1,"favourites_count":1056,"statuses_count":731,"created_at":"Wed Jul 15 07:41:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658781134856196097\/jNOWXQnt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658781134856196097\/jNOWXQnt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280451047\/1441234574","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095662"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144025649152,"id_str":"663728144025649152","text":"RT @The_4Feel: #XIA_1107 \uc0b4\uc544\uc788\ub294\uac8c \uae30\uc801\uc774\ub2e4...!!! \uc624..\uc8fc\uc5ec!!! \uc8fc\uc5ec!!!!!!!!!!! https:\/\/t.co\/kugawvTBVY https:\/\/t.co\/tD7KFUFKo9 https:\/\/t.co\/Nfnpok29UC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191436990,"id_str":"191436990","name":"\ub2e4\ub2e4","screen_name":"jyj_dada","location":"Dae-jeon","url":null,"description":"JYJ \uae40\uc7ac\uc911 \ubc15\uc720\ucc9c \uae40\uc900\uc218\u2665 \uc774\uce74\ub3d9 \ub2e4\ub2e4\ub2e4\ub2e4\ub2e4","protected":false,"verified":false,"followers_count":140,"friends_count":322,"listed_count":2,"favourites_count":4875,"statuses_count":13746,"created_at":"Thu Sep 16 13:13:46 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611551833941606400\/LmUQUEgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611551833941606400\/LmUQUEgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191436990\/1435550665","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:17 +0000 2015","id":663722530637680640,"id_str":"663722530637680640","text":"#XIA_1107 \uc0b4\uc544\uc788\ub294\uac8c \uae30\uc801\uc774\ub2e4...!!! \uc624..\uc8fc\uc5ec!!! \uc8fc\uc5ec!!!!!!!!!!! https:\/\/t.co\/kugawvTBVY https:\/\/t.co\/tD7KFUFKo9 https:\/\/t.co\/Nfnpok29UC","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218971297,"id_str":"218971297","name":"\u273f\uc0ac\ud544[4Feel]\u273f","screen_name":"The_4Feel","location":"\uae40\ubc15\uae40, JYJ","url":"http:\/\/the_4feel.blog.me\/","description":"O e O)\uff89 \u007b\ub108\ud76c \ub4e4\uacfc \ud568\uaed8\ub77c\uba74, \uadf8 \uae38\uc740 \ud589\ubcf5\ud55c \uae38\uc77c\uaebc\uc57c) I don't like TV5XQ!! TV2XQ!! FUCKSM! \u95dc\u6ce8\u6211\u4e4b\u524d\u8acb\u5148\u770b\u6211\u7684\u500b\u4eba\u8cc7\u6599\uff0c\u6211\u53ea\u559c\u6b61JYJ\u3002\u4e94\u4eba\u5718\u98ef\u3001\u5169\u4eba\u795e\u8d77\u98ef\u3001SM\u7684\u7c89\u7d72\u7b49\u7b49\u8acb\u4e0d\u8981\u95dc\u6ce8\u6211\uff0c\u8b1d\u8b1d\u3002\u2665\u2665\u2665Only JYJ\u2665\u2665\u2665","protected":false,"verified":false,"followers_count":9879,"friends_count":3,"listed_count":126,"favourites_count":1179,"statuses_count":120150,"created_at":"Tue Nov 23 16:07:24 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663639731352158210\/mFfodWcQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663639731352158210\/mFfodWcQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218971297\/1441120574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":84,"entities":{"hashtags":[{"text":"XIA_1107","indices":[0,9]}],"urls":[{"url":"https:\/\/t.co\/kugawvTBVY","expanded_url":"http:\/\/i.imgur.com\/FNQbHGi.jpg","display_url":"i.imgur.com\/FNQbHGi.jpg","indices":[50,73]},{"url":"https:\/\/t.co\/tD7KFUFKo9","expanded_url":"http:\/\/i.imgur.com\/r0sxPjm.jpg","display_url":"i.imgur.com\/r0sxPjm.jpg","indices":[74,97]}],"user_mentions":[],"symbols":[],"media":[{"id":663722526602739712,"id_str":"663722526602739712","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722526602739712,"id_str":"663722526602739712","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663722529542942721,"id_str":"663722529542942721","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEH8LUsAEGPao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEH8LUsAEGPao.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"XIA_1107","indices":[15,24]}],"urls":[{"url":"https:\/\/t.co\/kugawvTBVY","expanded_url":"http:\/\/i.imgur.com\/FNQbHGi.jpg","display_url":"i.imgur.com\/FNQbHGi.jpg","indices":[65,88]},{"url":"https:\/\/t.co\/tD7KFUFKo9","expanded_url":"http:\/\/i.imgur.com\/r0sxPjm.jpg","display_url":"i.imgur.com\/r0sxPjm.jpg","indices":[89,112]}],"user_mentions":[{"screen_name":"The_4Feel","name":"\u273f\uc0ac\ud544[4Feel]\u273f","id":218971297,"id_str":"218971297","indices":[3,13]}],"symbols":[],"media":[{"id":663722526602739712,"id_str":"663722526602739712","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663722530637680640,"source_status_id_str":"663722530637680640","source_user_id":218971297,"source_user_id_str":"218971297"}]},"extended_entities":{"media":[{"id":663722526602739712,"id_str":"663722526602739712","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEHxOUwAAyGF8.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663722530637680640,"source_status_id_str":"663722530637680640","source_user_id":218971297,"source_user_id_str":"218971297"},{"id":663722529542942721,"id_str":"663722529542942721","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEH8LUsAEGPao.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEH8LUsAEGPao.jpg","url":"https:\/\/t.co\/Nfnpok29UC","display_url":"pic.twitter.com\/Nfnpok29UC","expanded_url":"http:\/\/twitter.com\/The_4Feel\/status\/663722530637680640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663722530637680640,"source_status_id_str":"663722530637680640","source_user_id":218971297,"source_user_id_str":"218971297"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080095665"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144029913088,"id_str":"663728144029913088","text":"RT @ioneemkno: *Takes one shot of Tequila* https:\/\/t.co\/7oDuZ09kta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3016163956,"id_str":"3016163956","name":"AALIYAH","screen_name":"aleezywest","location":"California, USA","url":"http:\/\/instagram.com\/breakfastatliyahs","description":"No, father. The moon's reaching for me.","protected":false,"verified":false,"followers_count":103,"friends_count":86,"listed_count":1,"favourites_count":5198,"statuses_count":7080,"created_at":"Wed Feb 04 03:08:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625400427157155840\/fxfIDvzv.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625400427157155840\/fxfIDvzv.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655604228287627265\/w804zftY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655604228287627265\/w804zftY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016163956\/1446876824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:50:42 +0000 2015","id":663579443722489856,"id_str":"663579443722489856","text":"*Takes one shot of Tequila* https:\/\/t.co\/7oDuZ09kta","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":511070720,"id_str":"511070720","name":"Josh Koya.","screen_name":"ioneemkno","location":"Houston, TX","url":null,"description":"Koya. 18. Jes\u00fas es el Se\u00f1or - snap: iiprospect","protected":false,"verified":false,"followers_count":5110,"friends_count":1503,"listed_count":6,"favourites_count":4620,"statuses_count":8524,"created_at":"Fri Mar 02 00:02:32 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662117958290796544\/fTk_2_0d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662117958290796544\/fTk_2_0d_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/511070720\/1446306692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"343ecdd7da8dfae0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/343ecdd7da8dfae0.json","place_type":"city","name":"Spring","full_name":"Spring, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-95.437180,30.011444],[-95.437180,30.115585],[-95.318449,30.115585],[-95.318449,30.011444]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":12962,"favorite_count":10737,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663579060052733952,"id_str":"663579060052733952","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","url":"https:\/\/t.co\/7oDuZ09kta","display_url":"pic.twitter.com\/7oDuZ09kta","expanded_url":"http:\/\/twitter.com\/ioneemkno\/status\/663579443722489856\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663579060052733952,"id_str":"663579060052733952","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","url":"https:\/\/t.co\/7oDuZ09kta","display_url":"pic.twitter.com\/7oDuZ09kta","expanded_url":"http:\/\/twitter.com\/ioneemkno\/status\/663579443722489856\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/480x480\/ytKXlweDHsOPMeTC.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/240x240\/JQodZ7MMZd8W6gug.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/720x720\/bzToqJ8imrqW8yvn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/pl\/3zIEs_eho2X7myKj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/480x480\/ytKXlweDHsOPMeTC.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/pl\/3zIEs_eho2X7myKj.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ioneemkno","name":"Josh Koya.","id":511070720,"id_str":"511070720","indices":[3,13]}],"symbols":[],"media":[{"id":663579060052733952,"id_str":"663579060052733952","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","url":"https:\/\/t.co\/7oDuZ09kta","display_url":"pic.twitter.com\/7oDuZ09kta","expanded_url":"http:\/\/twitter.com\/ioneemkno\/status\/663579443722489856\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663579443722489856,"source_status_id_str":"663579443722489856","source_user_id":511070720,"source_user_id_str":"511070720"}]},"extended_entities":{"media":[{"id":663579060052733952,"id_str":"663579060052733952","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663579060052733952\/pu\/img\/6cEc0bJ4qsypqwfS.jpg","url":"https:\/\/t.co\/7oDuZ09kta","display_url":"pic.twitter.com\/7oDuZ09kta","expanded_url":"http:\/\/twitter.com\/ioneemkno\/status\/663579443722489856\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663579443722489856,"source_status_id_str":"663579443722489856","source_user_id":511070720,"source_user_id_str":"511070720","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/480x480\/ytKXlweDHsOPMeTC.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/240x240\/JQodZ7MMZd8W6gug.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/720x720\/bzToqJ8imrqW8yvn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/pl\/3zIEs_eho2X7myKj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/vid\/480x480\/ytKXlweDHsOPMeTC.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663579060052733952\/pu\/pl\/3zIEs_eho2X7myKj.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095666"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017321984,"id_str":"663728144017321984","text":"Shivaay Diwali Dhamaka Sukh sampada aapke jivan mein aye,\nLaxmi j aapke ghar mein saamye,\nBhul kr v aap ke jivan me,\nAage kvi v 1dukh na aae","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3562604417,"id_str":"3562604417","name":"Ashish Kumar","screen_name":"g4ajay","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":12,"listed_count":0,"favourites_count":0,"statuses_count":365,"created_at":"Sun Sep 06 04:38:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640384780660555777\/WETvAGJL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640384780660555777\/WETvAGJL_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017305602,"id_str":"663728144017305602","text":"@OhohKkkkim hadluka tanawon oy hahaha bebe balik ka na dito :(","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727946662678528,"in_reply_to_status_id_str":"663727946662678528","in_reply_to_user_id":138036481,"in_reply_to_user_id_str":"138036481","in_reply_to_screen_name":"OhohKkkkim","user":{"id":545691416,"id_str":"545691416","name":"MAYING\u2764","screen_name":"mamamarielyyy","location":null,"url":null,"description":"just keep calm and eat pizza IG: itsmarielove | http:\/\/ask.fm\/yingmayingg","protected":false,"verified":false,"followers_count":446,"friends_count":379,"listed_count":1,"favourites_count":2210,"statuses_count":7933,"created_at":"Thu Apr 05 04:45:35 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1D2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000084702437\/9c7754dd6b988fbf92630ebb839e3ca4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000084702437\/9c7754dd6b988fbf92630ebb839e3ca4.jpeg","profile_background_tile":true,"profile_link_color":"ED2FBA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661220867087532032\/S6CU90wy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661220867087532032\/S6CU90wy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545691416\/1446739356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OhohKkkkim","name":"KimNANA\u2728","id":138036481,"id_str":"138036481","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144013070336,"id_str":"663728144013070336","text":"\u0aad\u0abe\u0ab0\u0aa4\u0ac0\u0aaf \u0ab6\u0ab8\u0acd\u0aa4\u0acd\u0ab0\u0a97\u0abe\u0ab0\u0aae\u0abe\u0a82 \u0aa7\u0aa3\u0ac0 \u0aa7\u0abe\u0aa4\u0a95 \u0aae\u0abf\u0ab8\u0abe\u0a88\u0ab2\u0acb \u0ab0\u0ab9\u0ac7\u0ab2\u0ac0 \u0a9b\u0ac7 https:\/\/t.co\/PDeG35wUDf","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102032353,"id_str":"102032353","name":"Akilanews.com","screen_name":"akilanews","location":"Sadar Bazaar, Rajkot, India.","url":"http:\/\/www.akilaindia.com","description":"Fastest Gujarati News at Lightning Speed.","protected":false,"verified":false,"followers_count":1291,"friends_count":34,"listed_count":18,"favourites_count":5,"statuses_count":152748,"created_at":"Tue Jan 05 11:11:28 +0000 2010","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1520573652\/Akila_Logo_reasonably_small_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1520573652\/Akila_Logo_reasonably_small_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PDeG35wUDf","expanded_url":"http:\/\/goo.gl\/6edaTH","display_url":"goo.gl\/6edaTH","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"gu","timestamp_ms":"1447080095662"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144025710592,"id_str":"663728144025710592","text":"RT @toc_3dm: SODEN\u304a\u524d\u4f55\u500b\u82b1\u8e0f\u3080\u3093\u3060\u3088","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2993796673,"id_str":"2993796673","name":"\u306a\u3093\u304d\u3087\u304f\uff20BnS\u7261\u4e39","screen_name":"ginmaxd","location":null,"url":null,"description":"\u4e09\u56fd\u7121\u53ccOnline\/TERA\/BnS\uff20\u7261\u4e39\u9bd6 \u9b54\u9053\u58eb\/\u30b5\u30d6 \u90aa\u8853\u3001\u5263\u8853\u3067\u3084\u3063\u3066\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":156,"friends_count":153,"listed_count":3,"favourites_count":1796,"statuses_count":5267,"created_at":"Fri Jan 23 21:00:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655693907796230145\/L3lhW7qN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655693907796230145\/L3lhW7qN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2993796673\/1439631186","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:32 +0000 2015","id":663726367704416256,"id_str":"663726367704416256","text":"SODEN\u304a\u524d\u4f55\u500b\u82b1\u8e0f\u3080\u3093\u3060\u3088","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022367030,"id_str":"3022367030","name":"\u30c6\u30aa\u6c5f\u308b\u30c9\u30fc\u30eb","screen_name":"toc_3dm","location":null,"url":"https:\/\/www.youtube.com\/channel\/UChRALw4VVEVpB7SpVDbaTAQ\/videos","description":"\u7261\u4e39\u9bd6\u3000Frandle\/\u30ea\u30f3\u5263\u58eb","protected":false,"verified":false,"followers_count":221,"friends_count":301,"listed_count":7,"favourites_count":8766,"statuses_count":30036,"created_at":"Mon Feb 16 11:30:46 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594842959071186944\/w8F9gLFj.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594842959071186944\/w8F9gLFj.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644944017625473024\/RNawv76K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644944017625473024\/RNawv76K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022367030\/1432662001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"toc_3dm","name":"\u30c6\u30aa\u6c5f\u308b\u30c9\u30fc\u30eb","id":3022367030,"id_str":"3022367030","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095665"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144008876032,"id_str":"663728144008876032","text":"@mi_39xx \u3042\u306e\u3001\u79c1\u3001\u4e88\u5b9a\u30ac\u30e9\u7a7a\u304d\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726579676086272,"in_reply_to_status_id_str":"663726579676086272","in_reply_to_user_id":1230014732,"in_reply_to_user_id_str":"1230014732","in_reply_to_screen_name":"mi_39xx","user":{"id":995637134,"id_str":"995637134","name":"\u3081\u308d\u3053\u3042\u3086\u3046\u3059\u3051","screen_name":"melocore_yusuke","location":"\u306a\u306b\u308f","url":null,"description":"\u30e1\u30ed\u30b3\u30a2\/HONDA\/ZOOMER\/SCOOPY\/\u5343\u8449\u30ed\u30c3\u30c6\/\u5bff\u53f8(\u304f\u3089\u6d3e)\/\u725b\u4e3c(\u5409\u91ce\u5bb6\u6d3e)\/\u30e9\u30fc\u30e1\u30f3\/RedBull\/ELLEGARDEN.SHANK.OVER ACTION.HEY-SMITH.dustbox.MEANING.G4N.SuG.THE KIDDIE.DIV.REALies.Blitz.LEZARD","protected":false,"verified":false,"followers_count":168,"friends_count":468,"listed_count":0,"favourites_count":1032,"statuses_count":7293,"created_at":"Fri Dec 07 18:45:48 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659645448555134976\/qEuZZc2e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659645448555134976\/qEuZZc2e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/995637134\/1424577961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mi_39xx","name":"\u307f\u3055\u3061\u3047\u308b","id":1230014732,"id_str":"1230014732","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095661"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017264640,"id_str":"663728144017264640","text":"@Lunakind2015 \u3042\u3041\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728085716500482,"in_reply_to_status_id_str":"663728085716500482","in_reply_to_user_id":3326009474,"in_reply_to_user_id_str":"3326009474","in_reply_to_screen_name":"Lunakind2015","user":{"id":4114062438,"id_str":"4114062438","name":"\u30b5\u30a4\u30bf\u30de","screen_name":"wannpannmannS","location":"Z\u5e02\u306e\u30a2\u30d1\u30fc\u30c8","url":null,"description":"\u4ffa\u306f\u30b5\u30a4\u30bf\u30de\u3060 \u8da3\u5473\u3067\u30d2\u30fc\u30ed\u30fc\u3092\u3084\u3063\u3066\u308b\u8005\u3060\uff01\u4e00\u822c\u4eba\u4ee5\u5916\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3060\uff01\u307f\u3093\u306a\u3001\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u308c\u3088\u306a\u266a","protected":false,"verified":false,"followers_count":60,"friends_count":72,"listed_count":1,"favourites_count":3,"statuses_count":149,"created_at":"Tue Nov 03 15:22:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661574377415163904\/PrEuZA-w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661574377415163904\/PrEuZA-w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4114062438\/1446623056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lunakind2015","name":"\u795e\u5316\u30d5\u30e9\u30f3(\u30e1\u30a4\u30c9\u5316)","id":3326009474,"id_str":"3326009474","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144008871937,"id_str":"663728144008871937","text":"Cciiee kadal sana mau sini mau,lah emang kadal toh kwe lee bhahhakk *mantauteel bgitu sih kyknya \ud83d\ude04\ud83d\ude04","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598047849,"id_str":"598047849","name":"SA3 PRILLYLTC","screen_name":"diva_karinta","location":"Yogyakarta, Indonesia","url":null,"description":"*ScorpioGirl* Cinta Allah swt,Bismillah.. I Love My Family .. Together We Can do Great Things \u2764\ufe0f @PrillyBie @Iqbaale @AlKohler7 \u2764\ufe0f","protected":false,"verified":false,"followers_count":871,"friends_count":128,"listed_count":1,"favourites_count":411,"statuses_count":20818,"created_at":"Sun Jun 03 03:12:48 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"E81919","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571946841202114560\/tmAo70eC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571946841202114560\/tmAo70eC.jpeg","profile_background_tile":true,"profile_link_color":"E61919","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661393276939862016\/S7xVeYHu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661393276939862016\/S7xVeYHu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/598047849\/1446976390","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080095661"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144013271040,"id_str":"663728144013271040","text":"\u0435\u0441\u0442\u044c \u0441\u043c\u0435\u0448\u043d\u044b\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u043b\u044b\u0441\u044b\u0445?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440985296,"id_str":"440985296","name":"\u041a\u0443\u0440\u043b\u043e\u0432\u0438\u0447 \u041f\u0430\u0432\u0435\u043b","screen_name":"KurlovichPavel","location":"\u041b\u0430\u043d\u0433\u0435\u043f\u0430\u0441","url":"https:\/\/twitter.com\/kurlovichpavel","description":"\u041e\u043a\u043d\u043e \u0432 \u043c\u0438\u0440 \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043a\u0440\u044b\u0442\u044c \u0433\u0430\u0437\u0435\u0442\u043e\u0439","protected":false,"verified":false,"followers_count":9319,"friends_count":1044,"listed_count":506,"favourites_count":100,"statuses_count":21144,"created_at":"Mon Dec 19 16:32:33 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719653057\/219_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719653057\/219_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440985296\/1436807878","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080095662"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144004837377,"id_str":"663728144004837377","text":"RT @TheWorldStories: Sunsets >>> http:\/\/t.co\/8wjHA59drq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3017874988,"id_str":"3017874988","name":"Dude","screen_name":"Noraj666","location":"Paris, etc.","url":"http:\/\/thrashuverymuch.tumblr.com","description":"To be honest, je ne suis pas si int\u00e9ressant","protected":false,"verified":false,"followers_count":293,"friends_count":258,"listed_count":3,"favourites_count":6080,"statuses_count":7888,"created_at":"Wed Feb 04 15:22:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662743777992306688\/Rx6TJU0q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662743777992306688\/Rx6TJU0q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017874988\/1446986934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 09 01:19:26 +0000 2015","id":641420615635722240,"id_str":"641420615635722240","text":"Sunsets >>> http:\/\/t.co\/8wjHA59drq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284441324,"id_str":"284441324","name":"Travel Vibes\u27b9","screen_name":"TheWorldStories","location":"yocontactus@gmail.com","url":"http:\/\/Instagram.com\/travelvibees\/","description":"For those who travel, explore and enjoy the world!\u270c\ufe0f Dm us your pictures,we'll try to post'em ,We don't own any of the picture ,for DMCA removal see email below","protected":false,"verified":false,"followers_count":2382931,"friends_count":553,"listed_count":5053,"favourites_count":136,"statuses_count":56736,"created_at":"Tue Apr 19 08:44:53 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662505055770177536\/eZsHHutQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284441324\/1446790199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19832,"favorite_count":20946,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":641420583662555137,"id_str":"641420583662555137","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":641420583662555137,"id_str":"641420583662555137","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}},{"id":641420597507952640,"id_str":"641420597507952640","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIopIUkAA53Td.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIopIUkAA53Td.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":641420612628406272,"id_str":"641420612628406272","indices":[21,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIphdUYAAbONP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIphdUYAAbONP.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":600,"h":375,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheWorldStories","name":"Travel Vibes\u27b9","id":284441324,"id_str":"284441324","indices":[3,19]}],"symbols":[],"media":[{"id":641420583662555137,"id_str":"641420583662555137","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":641420615635722240,"source_status_id_str":"641420615635722240","source_user_id":284441324,"source_user_id_str":"284441324"}]},"extended_entities":{"media":[{"id":641420583662555137,"id_str":"641420583662555137","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIn1jUkAE0ztx.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":641420615635722240,"source_status_id_str":"641420615635722240","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":641420597507952640,"id_str":"641420597507952640","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIopIUkAA53Td.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIopIUkAA53Td.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":641420615635722240,"source_status_id_str":"641420615635722240","source_user_id":284441324,"source_user_id_str":"284441324"},{"id":641420612628406272,"id_str":"641420612628406272","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CObIphdUYAAbONP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CObIphdUYAAbONP.jpg","url":"http:\/\/t.co\/8wjHA59drq","display_url":"pic.twitter.com\/8wjHA59drq","expanded_url":"http:\/\/twitter.com\/TheWorldStories\/status\/641420615635722240\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":600,"h":375,"resize":"fit"}},"source_status_id":641420615635722240,"source_status_id_str":"641420615635722240","source_user_id":284441324,"source_user_id_str":"284441324"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095660"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144004681728,"id_str":"663728144004681728","text":"@ety_town \uc820\uc7a5!!(\uc660\uc9c0 \uc9c4\ub3d9\ubaa8\ub4dc\uac00 \ub41c\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727788516503556,"in_reply_to_status_id_str":"663727788516503556","in_reply_to_user_id":2384941976,"in_reply_to_user_id_str":"2384941976","in_reply_to_screen_name":"ety_town","user":{"id":1088056584,"id_str":"1088056584","name":"(\ubd80\uc6b0\uc6b0\uc6c5...) \uc18c\uc6b0\uc138\uc950\uc774","screen_name":"fkfzk5604","location":"\ud5e4\uc5b4\uc9d0\uc740 \ube14\uc5b8\ube14","url":null,"description":"\uace0\uc0bc\/\u2606\uce74\u2606\ub77c\u2606\ub9c8\u2606\uce20\u2606 \ucd5c\uc560\/\uce74\ub77c\uc774\uce58 \ud6c8\ud6c8\uc5f0\uc131\uc744 \ubcf4\uba74 \ub179\uc74c\/\ucd78\ub85c\ud1a0\ub3c4\ub3c4 \uc88b\uc74c\/\ucefe\ub9c1 \uc5c6\uc774 \uadf8\ub0e5 6\uc30d\ub465 \ubcf5\uc791\ubcf5\uc791 \uaf41\ub0e5\uaf41\ub0e5\ub3c4 \uc88b\uc74c\/\uc8e0\uc8e0\ub3c4 \uc88b\uc544\ud568(\ub72c\uae08)","protected":false,"verified":false,"followers_count":59,"friends_count":153,"listed_count":2,"favourites_count":6278,"statuses_count":86853,"created_at":"Mon Jan 14 05:12:20 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/564483055004303360\/ryGWOOWf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/564483055004303360\/ryGWOOWf.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663081652042661888\/SPs8X7uo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663081652042661888\/SPs8X7uo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1088056584\/1446448423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ety_town","name":"\uc5d0\ud2f0rtop","id":2384941976,"id_str":"2384941976","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080095660"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996293120,"id_str":"663728143996293120","text":"So yeah, I'm cheesing right now.... Im believing God https:\/\/t.co\/hyk7X2aHEv","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28008228,"id_str":"28008228","name":"TiffanyJ","screen_name":"IamTiffanyJ","location":"Columbia, SC","url":"http:\/\/www.iamtiffanyj.com","description":"Christian. Inspirational Soul Artist. Singer. Songwriter. Graphic & Web Designer. Booking Information: contact@iamtiffanyj.com","protected":false,"verified":false,"followers_count":1495,"friends_count":1895,"listed_count":26,"favourites_count":378,"statuses_count":19090,"created_at":"Wed Apr 01 00:39:34 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CC3366","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000083104440\/9697dd2a74d779186a2986b0e26019aa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000083104440\/9697dd2a74d779186a2986b0e26019aa.jpeg","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7A0F3A","profile_text_color":"FF1438","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628375282395672578\/_aAH7dJP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628375282395672578\/_aAH7dJP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28008228\/1398269382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hyk7X2aHEv","expanded_url":"https:\/\/instagram.com\/p\/93ied_qJZD\/","display_url":"instagram.com\/p\/93ied_qJZD\/","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000659456,"id_str":"663728144000659456","text":"RT @SincerelyTumblr: i hope i frustrate you and you think about me a lot","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1565638225,"id_str":"1565638225","name":"sami","screen_name":"blinkcaI","location":"cielo x x","url":null,"description":"p a c i f y h e r","protected":false,"verified":false,"followers_count":3250,"friends_count":724,"listed_count":35,"favourites_count":6859,"statuses_count":27014,"created_at":"Wed Jul 03 12:10:15 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453984638017368064\/s1hSEVu8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453984638017368064\/s1hSEVu8.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719852470124544\/EheY2S8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719852470124544\/EheY2S8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1565638225\/1444950353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:37:01 +0000 2015","id":663636398218600448,"id_str":"663636398218600448","text":"i hope i frustrate you and you think about me a lot","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226690054,"id_str":"226690054","name":"Sincerely Tumblr","screen_name":"SincerelyTumblr","location":null,"url":"http:\/\/encourage.tumblr.com\/","description":"Everything was David Karp and nothing hurt. *Parody Account \/ Fan Page* - @CommonFanGri","protected":false,"verified":false,"followers_count":2114648,"friends_count":49809,"listed_count":3364,"favourites_count":4370,"statuses_count":47060,"created_at":"Tue Dec 14 20:35:48 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/302799773\/love.gif","profile_background_tile":true,"profile_link_color":"2E3796","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660680814762598401\/WlLkEfCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226690054\/1446353800","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1283,"favorite_count":2928,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SincerelyTumblr","name":"Sincerely Tumblr","id":226690054,"id_str":"226690054","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144025710593,"id_str":"663728144025710593","text":"What a lovely morning!!! I don't feel like crap at all!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":270728196,"id_str":"270728196","name":"Screw does Blizzcon","screen_name":"screwlewseWoW","location":"Bay Area, CA","url":"http:\/\/www.screwlewse.com","description":"your adorable creeper at your service. innapropriate most of the time.","protected":false,"verified":false,"followers_count":685,"friends_count":410,"listed_count":42,"favourites_count":9635,"statuses_count":48235,"created_at":"Wed Mar 23 04:22:25 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598982561637896193\/SYylTItr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598982561637896193\/SYylTItr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270728196\/1415295948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095665"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017321985,"id_str":"663728144017321985","text":"RT @black_na_zatu: \u4eba\u9593\u306f\u6975\u5ea6\u306b\u75b2\u308c\u3066\u304f\u308b\u3068\u4e0b\u30cd\u30bf\u3057\u304b\u982d\u306b\u6d6e\u304b\u3070\u306a\u304f\u306a\u308b\u3002\n\u8133\u304c\u547d\u306e\u5371\u6a5f\u3060\u3068\u5224\u65ad\u3059\u308b\u3068\u7a2e\u306e\u751f\u5b58\u672c\u80fd\u304c\u50cd\u3044\u3066\u982d\u304c\u4e0b\u30cd\u30bf\u3067\u3044\u3063\u3071\u3044\u304a\u3063\u3071\u3044\u306b\u306a\u308b\u3002\n\u3060\u304b\u3089\u7b11\u9854\u3067\u610f\u6c17\u63da\u3005\u3068\u4e0b\u30cd\u30bf\u3092\u8a00\u3063\u3066\u3044\u308b\u5974\u304c\u3044\u305f\u3089\n\u5fc3\u306b\u6df1\u3044\u50b7\u3092\u8ca0\u3063\u3066\u3044\u308b\u306b\u9055\u3044\u306a\u3044\u306e\u3067\u512a\u3057\u304f\u3057\u308d\u3088\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":830594348,"id_str":"830594348","name":"\u591c\u9b54","screen_name":"1105_141","location":"\u30bf\u30a6\u30a4\u30bf\u30a6\u30a4\u6cca\u5730","url":"http:\/\/com.nicovideo.jp\/community\/co2700989","description":"\u7d42\u4e86\u3057\u305f\u67d0SNS\u304b\u3089\u306e\u304a\u5f15\u8d8a\u3057\u7528\u57a2\u3002\u6700\u8fd1\u4e3b\u306b\u8266\u3053\u308c\u57a2\u3002\u3068\u304d\u3069\u304d\u30c1\u30a7\u30f3\u30af\u30ed\u3002\u8266\u3053\u308c\u63d0\u7763lv120\u30bf\u30a6\u30a4\u9bd6(\u63d0\u7763\u540d\uff1a\u5c71)\u3000\u8266\u5a18\u30b3\u30f3\u30d7(15\u590f\u73fe\u5728)\u30a4\u30d9RTA\u53c2\u52a0(14\u79cb\uff5e)\u3002\u6708\u521dEO5\u6d77\u57dfRTA 2:00:12\u5168\u4e00\u3000\u30c1\u30a7\u30f3\u30af\u30edRank115\u3000\u62f7\u554f\u90e8\u5c4b\u30ce\u30fc\u30b3\u30f3\u4ed6\u3000\u30cb\u30b3\u751f\u3084\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":820,"friends_count":590,"listed_count":43,"favourites_count":16161,"statuses_count":32145,"created_at":"Tue Sep 18 08:10:55 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2622236654\/yama05-1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2622236654\/yama05-1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/830594348\/1408037468","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 02:00:01 +0000 2015","id":663174102107099136,"id_str":"663174102107099136","text":"\u4eba\u9593\u306f\u6975\u5ea6\u306b\u75b2\u308c\u3066\u304f\u308b\u3068\u4e0b\u30cd\u30bf\u3057\u304b\u982d\u306b\u6d6e\u304b\u3070\u306a\u304f\u306a\u308b\u3002\n\u8133\u304c\u547d\u306e\u5371\u6a5f\u3060\u3068\u5224\u65ad\u3059\u308b\u3068\u7a2e\u306e\u751f\u5b58\u672c\u80fd\u304c\u50cd\u3044\u3066\u982d\u304c\u4e0b\u30cd\u30bf\u3067\u3044\u3063\u3071\u3044\u304a\u3063\u3071\u3044\u306b\u306a\u308b\u3002\n\u3060\u304b\u3089\u7b11\u9854\u3067\u610f\u6c17\u63da\u3005\u3068\u4e0b\u30cd\u30bf\u3092\u8a00\u3063\u3066\u3044\u308b\u5974\u304c\u3044\u305f\u3089\n\u5fc3\u306b\u6df1\u3044\u50b7\u3092\u8ca0\u3063\u3066\u3044\u308b\u306b\u9055\u3044\u306a\u3044\u306e\u3067\u512a\u3057\u304f\u3057\u308d\u3088\u306a\u3002","source":"\u003ca href=\"https:\/\/twitter.com\/obgatlfbka\" rel=\"nofollow\"\u003eparial\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317149460,"id_str":"3317149460","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","screen_name":"black_na_zatu","location":null,"url":null,"description":"\u6bd2\u820c\u30c6\u30c7\u30a3\u30d9\u30a2\u300c\u30c6\u30c3\u30c9\u300d\u304c\u5c11\u3057\u30d6\u30e9\u30c3\u30af\u306a\u96d1\u5b66\u3092\u6559\u3048\u3066\u304f\u308c\u307e\u3059\u3002\u203b\u975e\u516c\u5f0f\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":61355,"friends_count":0,"listed_count":215,"favourites_count":0,"statuses_count":150,"created_at":"Sun Aug 16 20:34:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653192037546627072\/ZHRIeKB__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317149460\/1444568111","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15531,"favorite_count":9805,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"black_na_zatu","name":"\u30c6\u30c3\u30c9\u306e\u30d6\u30e9\u30c3\u30af\u96d1\u5b66","id":3317149460,"id_str":"3317149460","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144025853952,"id_str":"663728144025853952","text":"The Xbox One backwards compatibility list is going to be revealed today.\n\nIf the leak is fake, let's hope that Sonic Generations is there.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2721485465,"id_str":"2721485465","name":"Shanesgiving","screen_name":"FourScore64","location":"Bramble Blast","url":"https:\/\/www.youtube.com\/c\/FourScore64","description":"edgy man memes overhyped trash to death and fires it in spurts","protected":false,"verified":false,"followers_count":1681,"friends_count":2062,"listed_count":15,"favourites_count":16495,"statuses_count":26306,"created_at":"Wed Jul 23 06:35:30 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612001524214935552\/BFwD5HtY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612001524214935552\/BFwD5HtY.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662773461891289088\/WoEjgKWw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662773461891289088\/WoEjgKWw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2721485465\/1446588154","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095665"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144004882432,"id_str":"663728144004882432","text":"@neauxbodee I feel attacked","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725828321120256,"in_reply_to_status_id_str":"663725828321120256","in_reply_to_user_id":124467477,"in_reply_to_user_id_str":"124467477","in_reply_to_screen_name":"neauxbodee","user":{"id":14236807,"id_str":"14236807","name":"Skeetbone Jones","screen_name":"EyanJ","location":"By the beach. Drinking beer. ","url":"http:\/\/gullierthanthou.net","description":"Unsigned Pipe, Picture taker, Nut faker,Tshirt Gawd, Slangologist, fingerbang champ","protected":false,"verified":false,"followers_count":1342,"friends_count":1101,"listed_count":82,"favourites_count":498,"statuses_count":173004,"created_at":"Thu Mar 27 17:01:22 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/51864136\/twitterback.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/51864136\/twitterback.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ADE890","profile_text_color":"181A1A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662810439890444288\/ubV0dB1q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662810439890444288\/ubV0dB1q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14236807\/1441249481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"neauxbodee","name":"Janet Snackson","id":124467477,"id_str":"124467477","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095660"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992156160,"id_str":"663728143992156160","text":"@alanswally_LDH 500\u5186\u30011000\u5186\u306b\u306a\u308a\u307e\u3059\u306d\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663629151031574528,"in_reply_to_status_id_str":"663629151031574528","in_reply_to_user_id":3287463122,"in_reply_to_user_id_str":"3287463122","in_reply_to_screen_name":"alanswally_LDH","user":{"id":3177357140,"id_str":"3177357140","name":"MINAMI(\u62e1\u6563\u5c02\u7528)","screen_name":"ex_minalan","location":null,"url":null,"description":"\u30cf\u30a4\u30bf\u30c3\u30c1\u6771\u4eac\u5343\u8449\u5927\u962a\u304a\u8b72\u308a\u3057\u307e\u3059\u3002\u7b11","protected":false,"verified":false,"followers_count":497,"friends_count":163,"listed_count":4,"favourites_count":940,"statuses_count":3621,"created_at":"Mon Apr 27 03:43:41 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635820275439824896\/g7NJ673G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635820275439824896\/g7NJ673G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3177357140\/1440309568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alanswally_LDH","name":"\u272fmomoTARO\u272f\u767d\u6ff1\u30b0\u30c3\u30ba\u6fc0\u6c42\u3081","id":3287463122,"id_str":"3287463122","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000520192,"id_str":"663728144000520192","text":"\u306a\u3093\u3060\u3063\u3051\uff1f","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2901519786,"id_str":"2901519786","name":"\u51ac\u8389\uffe1\u51ac\u7720\u4e2d(\u4eee)","screen_name":"yamata_touri","location":"\u8fd1\u757f\u306e\u5185\u9678\u770c","url":"http:\/\/twpro.jp\/yamata_touri","description":"\u6700\u8fd1\u306f\u30a2\u30eb\u30da\u30b8\u30aa\u304c\u30d6\u30fc\u30e0\u304b\u306a\uff1f\u3000like\u21e8*\u85cd\u4e95\u30a8\u30a4\u30eb\/\u65b0\u7530\u6075\u6d77\/\u30d0\u30a4\u30af\/\u97f3\u30b2\u30fc(\u30c1\u30e5\u30a6\u30cb\u30ba\u30e0\u30fb\u30ea\u30d5\u30ec\u30af\u30fb\u30d3\u30fc\u30b9\u30c8)\/Youtube\u304c\u597d\u304d\u3067\u3059*\u3000\u30a2\u30cb\u30e1\u306f\u3001\u65ad\u7136\u30bd\u30fc\u30c9\u30a2\u30fc\u30c8\u30fb\u30aa\u30f3\u30e9\u30a4\u30f3\u3068\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9\u304c\u597d\u304d\u3067\u3059\u2b55\ufe0f \u30b2\u30fc\u30e0\u306f\u3001\u30d5\u30a1\u30a4\u30a2\u30fc\u30a8\u30e0\u30d6\u30ec\u30e0\u3068FF\u304c\u597d\u304d\u301c\u3000\u9032\u51fa\u9b3c\u6ca1\u306b\u7d61\u307e\u307e\u3059\u306e\u3067\u3088\u308d\u3057\u304f\u3067\u3059\u30fc\u3000*\\(^o^)\/*","protected":false,"verified":false,"followers_count":67,"friends_count":75,"listed_count":0,"favourites_count":105,"statuses_count":3525,"created_at":"Sun Nov 16 11:34:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653914032798236673\/Fq2SNppL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653914032798236673\/Fq2SNppL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2901519786\/1446391391","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017264641,"id_str":"663728144017264641","text":"Ford, UAW reach tentative agreement: Filed under:\u2026 https:\/\/t.co\/1dkViMdgNJ #contract #ford #gm #report #uaw #Autos #Car #Trucks","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2238038616,"id_str":"2238038616","name":"Autotestdrivers.com","screen_name":"testdrivernews","location":null,"url":"http:\/\/news.automotivetestdrivers.com","description":"Latest Automotive News","protected":false,"verified":false,"followers_count":447,"friends_count":66,"listed_count":150,"favourites_count":309,"statuses_count":125945,"created_at":"Mon Dec 09 18:29:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000851335895\/bbf1cc613492deb9300c2861d30ca146_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000851335895\/bbf1cc613492deb9300c2861d30ca146_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2238038616\/1407402358","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"contract","indices":[75,84]},{"text":"ford","indices":[85,90]},{"text":"gm","indices":[91,94]},{"text":"report","indices":[95,102]},{"text":"uaw","indices":[103,107]},{"text":"Autos","indices":[108,114]},{"text":"Car","indices":[115,119]},{"text":"Trucks","indices":[120,127]}],"urls":[{"url":"https:\/\/t.co\/1dkViMdgNJ","expanded_url":"http:\/\/dlvr.it\/ChfnDS","display_url":"dlvr.it\/ChfnDS","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017330176,"id_str":"663728144017330176","text":"RT @aimanmaisara: @Aiman_Ridzuan memang kau pun","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1571576720,"id_str":"1571576720","name":"AIMUND","screen_name":"Aiman_Ridzuan","location":"instagram : aimanridzuan85","url":null,"description":"I expect nothing \/\/ Georgian","protected":false,"verified":false,"followers_count":188,"friends_count":139,"listed_count":0,"favourites_count":625,"statuses_count":2407,"created_at":"Fri Jul 05 23:40:25 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661209260538265600\/GFlh6id9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661209260538265600\/GFlh6id9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1571576720\/1386585940","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:49 +0000 2015","id":663725686234845184,"id_str":"663725686234845184","text":"@Aiman_Ridzuan memang kau pun","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725616831705089,"in_reply_to_status_id_str":"663725616831705089","in_reply_to_user_id":1571576720,"in_reply_to_user_id_str":"1571576720","in_reply_to_screen_name":"Aiman_Ridzuan","user":{"id":475979673,"id_str":"475979673","name":"Aiman Maisara","screen_name":"aimanmaisara","location":null,"url":"http:\/\/Instagram.com\/aimnsra","description":"life serabai gila","protected":false,"verified":false,"followers_count":387,"friends_count":301,"listed_count":1,"favourites_count":1816,"statuses_count":2552,"created_at":"Fri Jan 27 16:56:36 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616561269559070720\/PTla7FfI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616561269559070720\/PTla7FfI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475979673\/1426397674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aiman_Ridzuan","name":"AIMUND","id":1571576720,"id_str":"1571576720","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aimanmaisara","name":"Aiman Maisara","id":475979673,"id_str":"475979673","indices":[3,16]},{"screen_name":"Aiman_Ridzuan","name":"AIMUND","id":1571576720,"id_str":"1571576720","indices":[18,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080095663"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000544768,"id_str":"663728144000544768","text":"\u30bb\u30c7\u30a3\u30ca\u306e\u30af\u30ec\u30b8\u30c3\u30c8\u30ab\u30fc\u30c9\u3092\u4f7f\u3063\u3066\u3044\u307e\u3059\u3002 \u81ea\u52d5\u8eca\u5b66\u6821\u306e\u30ed\u30fc\u30f3\u3092\u7d44\u3093\u3067\u3044\u308b\u306e\u3067... https:\/\/t.co\/Hbly4KkSkp","source":"\u003ca href=\"http:\/\/twitter.com\/kenkoukurashir\" rel=\"nofollow\"\u003ekenkoukurashir\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2834665490,"id_str":"2834665490","name":"kenkoukurashir","screen_name":"kenkoukurashir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":38,"listed_count":0,"favourites_count":0,"statuses_count":3899,"created_at":"Sun Sep 28 04:41:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531707571741016065\/ir3Gyn9e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531707571741016065\/ir3Gyn9e_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Hbly4KkSkp","expanded_url":"http:\/\/bit.ly\/1njS8I6","display_url":"bit.ly\/1njS8I6","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992098817,"id_str":"663728143992098817","text":"Gubernur Minta Warga Waspada Banjir di Jabar dan Jakarta: SJO BANDUNG -- Gubernur Jawa Barat Ahmad Heryawan (A... https:\/\/t.co\/PozMstLFji","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1186735693,"id_str":"1186735693","name":"Rancaekek Online","screen_name":"RancaekekOnline","location":"Rancaekek","url":null,"description":null,"protected":false,"verified":false,"followers_count":792,"friends_count":52,"listed_count":0,"favourites_count":5,"statuses_count":6368,"created_at":"Sat Feb 16 16:27:26 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/431991615201099776\/t_mbgtSB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/431991615201099776\/t_mbgtSB.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431991346983743488\/-tfVZLjy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431991346983743488\/-tfVZLjy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1186735693\/1391829216","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PozMstLFji","expanded_url":"http:\/\/bit.ly\/1HqgCKd","display_url":"bit.ly\/1HqgCKd","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992098818,"id_str":"663728143992098818","text":"\u0422\u0430\u043b\u0446\u0430\u0445, \u0445\u044d\u043c\u043b\u044d\u043b\u0434\u044d\u0445, \u043d\u044d\u0433\u043d\u0438\u0439\u0433\u044d\u044d \u04af\u0433\u04af\u0439\u0441\u0433\u044d\u0445\u0438\u0439\u043d \u0442\u0443\u0439\u043b \u0431\u043e\u043b\u0441\u043e\u043d \u043d\u044d\u0433 \u0445\u044d\u0441\u044d\u0433 \u043d\u044c \u043c\u0430\u0441\u0441\u0430\u0430 \u0447\u0438\u0440\u044d\u044d\u0434 \u044f\u0432\u0447\u0438\u0445 \u0433\u044d\u044d\u0434 \u04af\u0437\u044d\u044d\u0434 \u043b. \u041c\u043e\u043d\u0433\u043e\u043b\u0447\u0443\u0443\u0434 \u0443\u0434\u0430\u0430\u043d \u0442\u0443\u043b\u0434\u0430\u0430 \u0442\u044d\u0441\u0441\u044d\u044d\u0440 \u0431\u043d\u0430 \u0434\u0430\u0430.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":390081585,"id_str":"390081585","name":"Uugaa","screen_name":"iUugaa","location":"\u0423\u043b\u0441\u044b\u043d \u043d\u0438\u0439\u0441\u043b\u044d\u043b \u0423\u0442\u0430\u0430\u043d\u0431\u0430\u0430\u0442\u0430\u0440","url":null,"description":"\u0413\u044d\u0440\u044d\u043b \u0437\u0443\u0440\u0430\u0433, \u0421\u043f\u043e\u0440\u0442 \u0441\u043e\u043d\u0438\u0440\u0445\u043e\u0433\u0447. Founder of #TwiNNersMN, \u0413\u0435\u043e \u0446\u0443\u0439\u0432\u0430\u043d \u0441\u0443\u0434\u043b\u0430\u0430\u0447, \u0446\u0443\u0439\u0432\u0430\u043d\u0433\u0438\u0439\u043d \u0445\u043e\u0440\u0445\u043e\u0439\u0442\u043e\u043d","protected":false,"verified":false,"followers_count":15191,"friends_count":666,"listed_count":25,"favourites_count":5647,"statuses_count":33047,"created_at":"Thu Oct 13 12:47:40 +0000 2011","utc_offset":28800,"time_zone":"Ulaan Bataar","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000120983005\/8e4b4300322008f4e8307b1e595d0435.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000120983005\/8e4b4300322008f4e8307b1e595d0435.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/477747935774375936\/xuyrwybL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/477747935774375936\/xuyrwybL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/390081585\/1396584879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144013135872,"id_str":"663728144013135872","text":"RT @JamesReidsArmy: Wow naman Toltys\n\n#OTWOLWish\n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4000135333,"id_str":"4000135333","name":"jsuhreefah","screen_name":"jsuhreefah","location":"Canada","url":null,"description":"pros of social media; it lets people express themselves. cons of social media; it lets people express themselves.","protected":false,"verified":false,"followers_count":9,"friends_count":24,"listed_count":3,"favourites_count":97,"statuses_count":5004,"created_at":"Sat Oct 24 07:52:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657831976599031808\/JC_DozZa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657831976599031808\/JC_DozZa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4000135333\/1445676082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:12 +0000 2015","id":663715967256698880,"id_str":"663715967256698880","text":"Wow naman Toltys\n\n#OTWOLWish\n#PushAwardsJaDines","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2440282118,"id_str":"2440282118","name":"JAMES REID'S ARMY","screen_name":"JamesReidsArmy","location":"Est 140312","url":null,"description":"What defines us is how we rise after falling. Keep in mind that strong walls shake, But never collapse. \u2022 Dedicated to the hottest heartthrob today @jamesxreid","protected":false,"verified":false,"followers_count":28050,"friends_count":127,"listed_count":64,"favourites_count":9935,"statuses_count":116486,"created_at":"Sat Apr 12 17:00:06 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660139215133409281\/oaq9bmUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660139215133409281\/oaq9bmUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2440282118\/1440148143","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":8,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[18,28]},{"text":"PushAwardsJaDines","indices":[29,47]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[38,48]},{"text":"PushAwardsJaDines","indices":[49,67]}],"urls":[],"user_mentions":[{"screen_name":"JamesReidsArmy","name":"JAMES REID'S ARMY","id":2440282118,"id_str":"2440282118","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095662"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143992119296,"id_str":"663728143992119296","text":"@_NNnatuki_ \n\u305d\u306e\u57df\u307e\u3067\u9054\u3057\u3066\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728001247350784,"in_reply_to_status_id_str":"663728001247350784","in_reply_to_user_id":2919682561,"in_reply_to_user_id_str":"2919682561","in_reply_to_screen_name":"_NNnatuki_","user":{"id":2473788456,"id_str":"2473788456","name":"\u304d\u305f\u3084\u307e\u3069\u308a","screen_name":"kitayamadori713","location":null,"url":"http:\/\/Instagram.com\/kitayamadori713","description":"\u81ea\u8650\u3059\u308b\u305f\u3081\u306b\u5b66\u6821\u901a\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":605,"friends_count":522,"listed_count":4,"favourites_count":3184,"statuses_count":15579,"created_at":"Fri May 02 10:23:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661207107622928384\/n-SqBS4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661207107622928384\/n-SqBS4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473788456\/1446479033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_NNnatuki_","name":"\u3057\u3085\u3093","id":2919682561,"id_str":"2919682561","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095657"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000487424,"id_str":"663728144000487424","text":"Mod Misadventures with PocketsTheThief!: https:\/\/t.co\/A7ojBiq4F7","source":"\u003ca href=\"http:\/\/www.twitch.tv\" rel=\"nofollow\"\u003eTwitch.tv\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3142779931,"id_str":"3142779931","name":"Grimm_MissTori","screen_name":"Grimm_MissTori","location":null,"url":"http:\/\/www.twitch.tv\/grimm_misstori","description":"Follow me on Twitch!","protected":false,"verified":false,"followers_count":74,"friends_count":144,"listed_count":2,"favourites_count":163,"statuses_count":588,"created_at":"Tue Apr 07 01:17:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586358792771756032\/syGSS4F7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586358792771756032\/syGSS4F7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3142779931\/1431446133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/A7ojBiq4F7","expanded_url":"http:\/\/www.twitch.tv\/grimm_misstori#4999","display_url":"twitch.tv\/grimm_misstori\u2026","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144013131776,"id_str":"663728144013131776","text":"@AIxxx78131 \u3053\u306e\uff12\u4eba\u6700\u5f37\u2665 \u30c0\u30d6\u30eb\u30c7\u30fc\u30c8\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727576964206592,"in_reply_to_status_id_str":"663727576964206592","in_reply_to_user_id":2192521176,"in_reply_to_user_id_str":"2192521176","in_reply_to_screen_name":"AIxxx78131","user":{"id":3019740036,"id_str":"3019740036","name":"\u3086\u3058\u306a 12\u67088\u65e5\u30b8\u30f3\u304f\u3093\u306b\u4f1a\u3044\u306b\u884c\u304f","screen_name":"yuma_oono1020","location":"\u30b8\u30f3\u304f\u3093\u306e\u534a\u6b69\u3046\u3057\u308d","url":null,"description":"BTS\/99line\/ \uae40\uc11d\uc9c4\n\/\u5728\u65e5\u97d3\u56fd\u4ebaARMY\u2665EATJIN \u2665 \u2661\u266124\/7=BTS\u2661\u2661 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\uff01\u30ea\u30d7\u304f\u308c\u305f\u3089\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\n\u30b8\u30f3\u304f\u3093\u306f\u79c1\u306e\u738b\u5b50\u69d8\u2665 \u3058\u3093\u306b\u3080\u9023\u5408\u4f1a\u54e1No.1\nMy BigDream\u261e\u30b8\u30f3\u30da\u30f3=\u3086\u3058\u306a\u3063\u3066\u601d\u308f\u308c\u308bARMY\u306b\u306a\u308b\ubc29\ud0c4\uc18c\ub144\ub2e8\u2192@BTS_twt","protected":false,"verified":false,"followers_count":828,"friends_count":841,"listed_count":53,"favourites_count":8246,"statuses_count":9884,"created_at":"Sat Feb 14 14:13:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652849508133371904\/bjqB9PWi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652849508133371904\/bjqB9PWi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3019740036\/1445956991","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AIxxx78131","name":"\uc544 \uc774","id":2192521176,"id_str":"2192521176","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095662"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996338176,"id_str":"663728143996338176","text":"@Chaadicted Malam sist promot aq ya pin 2B50BAF3 RT\/khusus yg mau boking\/member boking(LT,ST)#wajibDP \/ follow ya...","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727465462804480,"in_reply_to_status_id_str":"663727465462804480","in_reply_to_user_id":1074473168,"in_reply_to_user_id_str":"1074473168","in_reply_to_screen_name":"Chaadicted","user":{"id":2860419746,"id_str":"2860419746","name":"Anggita semok69","screen_name":"PemuasSex_69","location":"INDONESIA","url":null,"description":"PS \/ CS | BO 1 hari 800 | BO 2 hari 1,3 | BO 1 minggu 3,5 |BO wajib DP minimal 500 | No mlyni BO dimn aja 37 M&F pengen coba soft swingFOLBACK | wajib member","protected":false,"verified":false,"followers_count":14097,"friends_count":2474,"listed_count":28,"favourites_count":5,"statuses_count":28433,"created_at":"Fri Oct 17 13:51:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657582000409149440\/cGAluuVa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657582000409149440\/cGAluuVa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2860419746\/1445267959","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"wajibDP","indices":[93,101]}],"urls":[],"user_mentions":[{"screen_name":"Chaadicted","name":"Venus KinkyBar","id":1074473168,"id_str":"1074473168","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144004702208,"id_str":"663728144004702208","text":"@purikintakami \n\n\u6628\u65e5WEL NEXT\u884c\u304b\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f( ^\u03c9^ )\u307e\u3060\u30d7\u30ea\u30f3\u30bb\u30b9\u91d1\u9b5a\u3055\u3093\u306e\u30cd\u30bf\u751f\u30672\u56de\u3057\u304b\u307f\u3066\u306a\u3044\u3067\u3059\u3051\u3069\u3053\u308c\u304b\u3089\u3082\u3063\u3068\u307f\u306b\u3044\u304d\u307e\u3059\uff01\u5fdc\u63f4\u3057\u306b\u3044\u304d\u307e\u3059\uff01\u164f\u0324\u032b\u2764\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":149975141,"in_reply_to_user_id_str":"149975141","in_reply_to_screen_name":"purikintakami","user":{"id":3080624214,"id_str":"3080624214","name":"\u307f\u3055\u307f\u3055","screen_name":"720Misa","location":"1108 \u2765 WEL NEXT ","url":null,"description":"\u2661\u2661\u2661 @tosakyodai_yuki \u2764\ufe0e sharebako member \u2661\u2661\u2661 \u2661\u2661\u2661 @dayumxxx \u2764\ufe0e @617nmiya \u2661\u2661\u2661","protected":false,"verified":false,"followers_count":53,"friends_count":69,"listed_count":1,"favourites_count":7068,"statuses_count":9571,"created_at":"Sat Mar 14 12:04:02 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663380682849153024\/uyVacdJE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663380682849153024\/uyVacdJE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3080624214\/1446645546","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"purikintakami","name":"\u30d7\u30ea\u30f3\u30bb\u30b9\u91d1\u9b5a \u305f\u304b\u307f\u3061","id":149975141,"id_str":"149975141","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080095660"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728143996428288,"id_str":"663728143996428288","text":"fiquei mudo ao lhe conhecer, o que vi foi demais, vazou, por toda selva do meu ser nada ficou intacto","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2162695646,"id_str":"2162695646","name":"criss","screen_name":"ourdarklife","location":"S\u00e3o Paulo, Brasil","url":"http:\/\/instagram.com\/crisstyellefs","description":"tava aq de boa na internet e vi esse site aq so tomei no cu desde entao","protected":false,"verified":false,"followers_count":2698,"friends_count":620,"listed_count":2,"favourites_count":6641,"statuses_count":59213,"created_at":"Tue Oct 29 11:47:16 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/461656645718663168\/B81qMxLF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/461656645718663168\/B81qMxLF.png","profile_background_tile":false,"profile_link_color":"0A060A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662812458533392384\/vHk_ZFVX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662812458533392384\/vHk_ZFVX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2162695646\/1446508004","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0bdb47219a1bda81","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0bdb47219a1bda81.json","place_type":"city","name":"Americana","full_name":"Americana, S\u00e3o Paulo","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-47.387621,-22.784927],[-47.387621,-22.663191],[-47.192664,-22.663191],[-47.192664,-22.784927]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080095658"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144000548864,"id_str":"663728144000548864","text":"My edges will not slick down for shittttt!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363202226,"id_str":"363202226","name":"M.Rankin$","screen_name":"Ma_KaYlaH__","location":"NOLA\u269c to Cali ","url":null,"description":"young & such a BeYouTee \u2728 \u2022RN soon to be\u2764\ufe0f Casey & Brianna\u2728","protected":false,"verified":false,"followers_count":623,"friends_count":188,"listed_count":2,"favourites_count":6722,"statuses_count":42326,"created_at":"Sat Aug 27 18:05:40 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660236683921657856\/zdZaoIq9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660236683921657856\/zdZaoIq9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363202226\/1446860550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095659"} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144029888512,"id_str":"663728144029888512","text":"@HoardingSF: Thank you to all attendees, presenters, keynotes, and supporters. 17th ICHC was a success! #hoardingsf #recovery #hoarding","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663229374645178368,"in_reply_to_status_id_str":"663229374645178368","in_reply_to_user_id":244206618,"in_reply_to_user_id_str":"244206618","in_reply_to_screen_name":"HoardingSF","user":{"id":3837172813,"id_str":"3837172813","name":"Satwant Singh","screen_name":"satwant_1","location":"London UK","url":"http:\/\/www.lifemattersconsultancy.com","description":"Cognitive Behavioural Therapist. Co-author of Overcoming Hoarding and developer of the Reclaim your space and life app. Clinician, supervisor and trainer.","protected":false,"verified":false,"followers_count":30,"friends_count":59,"listed_count":3,"favourites_count":4,"statuses_count":85,"created_at":"Fri Oct 09 14:14:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652667820178673664\/SDc5m2Ar_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652667820178673664\/SDc5m2Ar_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3837172813\/1445367635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"hoardingsf","indices":[104,115]},{"text":"recovery","indices":[116,125]},{"text":"hoarding","indices":[126,135]}],"urls":[],"user_mentions":[{"screen_name":"HoardingSF","name":"ICHC","id":244206618,"id_str":"244206618","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080095666"} +{"delete":{"status":{"id":663725774244040705,"id_str":"663725774244040705","user_id":3183168822,"user_id_str":"3183168822"},"timestamp_ms":"1447080095933"}} +{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144017448960,"id_str":"663728144017448960","text":"@michaeljkellyjr @HouseofCards @bacioli https:\/\/t.co\/zupeU6oR4C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663691419308134401,"in_reply_to_status_id_str":"663691419308134401","in_reply_to_user_id":1134531883,"in_reply_to_user_id_str":"1134531883","in_reply_to_screen_name":"michaeljkellyjr","user":{"id":35292418,"id_str":"35292418","name":"jubil\u00e9","screen_name":"julianacbrasil","location":null,"url":"http:\/\/www.instagram.com\/julianacbrasil","description":"I have this thing with the space.","protected":false,"verified":false,"followers_count":515,"friends_count":1999,"listed_count":8,"favourites_count":8442,"statuses_count":4968,"created_at":"Sat Apr 25 19:45:44 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"E95252","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647275692141453312\/bKXQEYGy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647275692141453312\/bKXQEYGy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35292418\/1435542802","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"michaeljkellyjr","name":"Michael Kelly","id":1134531883,"id_str":"1134531883","indices":[0,16]},{"screen_name":"HouseofCards","name":"House of Cards","id":1023096199,"id_str":"1023096199","indices":[17,30]},{"screen_name":"bacioli","name":"GURU DAS BLOGUEIRAS","id":84943406,"id_str":"84943406","indices":[31,39]}],"symbols":[],"media":[{"id":663728142260019201,"id_str":"663728142260019201","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOpLWoAESB18.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOpLWoAESB18.jpg","url":"https:\/\/t.co\/zupeU6oR4C","display_url":"pic.twitter.com\/zupeU6oR4C","expanded_url":"http:\/\/twitter.com\/julianacbrasil\/status\/663728144017448960\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":598,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":598,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728142260019201,"id_str":"663728142260019201","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOpLWoAESB18.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOpLWoAESB18.jpg","url":"https:\/\/t.co\/zupeU6oR4C","display_url":"pic.twitter.com\/zupeU6oR4C","expanded_url":"http:\/\/twitter.com\/julianacbrasil\/status\/663728144017448960\/photo\/1","type":"photo","sizes":{"large":{"w":598,"h":598,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":598,"h":598,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080095663"} +{"delete":{"status":{"id":519456824529911808,"id_str":"519456824529911808","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080096166"}} +{"delete":{"status":{"id":645321390590173185,"id_str":"645321390590173185","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080096293"}} +{"delete":{"status":{"id":663727217067892736,"id_str":"663727217067892736","user_id":4097941371,"user_id_str":"4097941371"},"timestamp_ms":"1447080096461"}} +{"delete":{"status":{"id":624791358818009088,"id_str":"624791358818009088","user_id":3243310574,"user_id_str":"3243310574"},"timestamp_ms":"1447080096479"}} +{"delete":{"status":{"id":520284356506841088,"id_str":"520284356506841088","user_id":1102992872,"user_id_str":"1102992872"},"timestamp_ms":"1447080096601"}} +{"delete":{"status":{"id":644537961715884033,"id_str":"644537961715884033","user_id":3313687916,"user_id_str":"3313687916"},"timestamp_ms":"1447080096659"}} +{"delete":{"status":{"id":663727191906058240,"id_str":"663727191906058240","user_id":3235000778,"user_id_str":"3235000778"},"timestamp_ms":"1447080096633"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194938880,"id_str":"663728148194938880","text":"RT @fo10001: \u0648\u0627\u062d\u062f \u0643\u0627\u062a\u0628: \u0645\u0646 \u0627\u0647\u0645 \u0635\u0641\u0627\u062a \u0627\u0644\u0632\u0648\u062c\u0629 \u0627\u0644\u0637\u0628\u062e \ud83d\ude0f\n\u0631\u062f\u062a \u0639\u0644\u064a\u0647 \u0648\u062d\u062f\u0629 : \u0627\u0643\u0628\u0631 \u0637\u0645\u0648\u062d \u0627\u0644\u0628\u0647\u0627\u064a\u0645 \u0639\u0644\u0641\u0647\u0627 \ud83d\ude0a\ud83d\ude0a\n\u0637\u062d\u0646\u062a \u062c\u0628\u0647\u062a\u0647\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351970129,"id_str":"2351970129","name":"\u200f\u0642\u0646\u0627\u0635\u2661\u0630\u0648\u0642\u2661\u062a\u0648\u064a\u062a\u0631\u27b6\u27b6","screen_name":"nt9099","location":null,"url":null,"description":"\u0644\u0627 \u0635\u0631\u062a \u0628\u0623\u0633\u0644\u0648\u0628\u064a \u0645\u0639\u0643\u0645 \u0634\u062e\u0635 \u0631\u0627\u0642\u064a \u060c\u060c \u0623\u0631\u0627\u0639\u064a \u0623\u062d\u0633\u0627\u0633\u0643\u0645 \u0645\u0646 \u0627\u0644\u0628\u0648\u062d \u0644\u0644\u0628\u0648\u062d \u060c\u060c \u0644\u0627 \u062a\u062d\u0633\u0628\u0648 \u0625\u0646 \u0642\u0644\u0628\u064a \u0644\u0642\u0627 \u0645\u0646\u0643\u0645 (\u0644\u0627\u0642\u064a)\u060c\u060c \u0623\u0646\u0627 \u0623\u062d\u062a\u0631\u0645 \u0643\u0644 \u0627\u0644\u0645\u062e\u0627\u0644\u064a\u0642 \u0628\u0627\u0644\u0630\u0624\u0624\u0624\u0642\u2764\ufe0f\u0627\u0644\u0642\u0635\u064a\u0645~ \u0628\u0631\u064a\u062f\u0647","protected":false,"verified":false,"followers_count":89925,"friends_count":27317,"listed_count":34,"favourites_count":8614,"statuses_count":320106,"created_at":"Wed Feb 19 05:57:13 +0000 2014","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654770644211470336\/a0tNdTfX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654770644211470336\/a0tNdTfX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351970129\/1444944692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:12 +0000 2015","id":663702879841198082,"id_str":"663702879841198082","text":"\u0648\u0627\u062d\u062f \u0643\u0627\u062a\u0628: \u0645\u0646 \u0627\u0647\u0645 \u0635\u0641\u0627\u062a \u0627\u0644\u0632\u0648\u062c\u0629 \u0627\u0644\u0637\u0628\u062e \ud83d\ude0f\n\u0631\u062f\u062a \u0639\u0644\u064a\u0647 \u0648\u062d\u062f\u0629 : \u0627\u0643\u0628\u0631 \u0637\u0645\u0648\u062d \u0627\u0644\u0628\u0647\u0627\u064a\u0645 \u0639\u0644\u0641\u0647\u0627 \ud83d\ude0a\ud83d\ude0a\n\u0637\u062d\u0646\u062a \u062c\u0628\u0647\u062a\u0647\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3053311159,"id_str":"3053311159","name":"\u2728\u0645\u0650\u06d2\u0640\u0646\u0648\u0648\u0634 \u0627\u0644\u0648\u064a\u0644\u0627\u0646\u2728","screen_name":"fo10001","location":null,"url":null,"description":"\u27b0\u0627\u0644\u0645\u0641\u0636\u0644\u0647\u27b0!!!! \u0645\u0648 \u063a\u0631\u0648\u0631 \u0625\u0646 \u0642\u0644\u062a \u0644\u0643 \u0645\u0627\u0644\u064a \u0634\u0628\u064a\u0647 \u0625\u064a\u064a\u0647 \u0623\u0646\u0627 \u064a\u0627 \u0639\u064a\u0646\u064a \u0645\u0627 \u0623\u0634\u0628\u0647 \u0623\u062d\u062f . \u060c\u060c\u060c\u060c\u060c\u060c","protected":false,"verified":false,"followers_count":2032,"friends_count":279,"listed_count":2,"favourites_count":3236,"statuses_count":11960,"created_at":"Sun Mar 01 18:25:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656936664506499073\/Xcf0p55T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656936664506499073\/Xcf0p55T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3053311159\/1446852944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fo10001","name":"\u2728\u0645\u0650\u06d2\u0640\u0646\u0648\u0648\u0634 \u0627\u0644\u0648\u064a\u0644\u0627\u0646\u2728","id":3053311159,"id_str":"3053311159","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080096659"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207546370,"id_str":"663728148207546370","text":"RT @InnovatorsHub: OPPORTUNITY - We have an Interior Design internship available. \u00a310 p\/h, located in the City Centre. \n\nContact: hello@inn\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2511237848,"id_str":"2511237848","name":"Helen Paton","screen_name":"OneArkHelen","location":"Programme Officer","url":"http:\/\/www.oneark.com","description":"All views are my own.","protected":false,"verified":false,"followers_count":316,"friends_count":491,"listed_count":7,"favourites_count":531,"statuses_count":1416,"created_at":"Tue May 20 19:25:34 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510188490257367041\/WpluC3aA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510188490257367041\/WpluC3aA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2511237848\/1407837104","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:28 +0000 2015","id":663727360362024960,"id_str":"663727360362024960","text":"OPPORTUNITY - We have an Interior Design internship available. \u00a310 p\/h, located in the City Centre. \n\nContact: hello@innovatorshub.co.uk!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2892101867,"id_str":"2892101867","name":"Innovators Hub","screen_name":"InnovatorsHub","location":"Liverpool, UK","url":"http:\/\/www.innovatorshub.co","description":"Hello, we're Innovators Hub. We're the glue between young creatives & innovative businesses. We provide paid internships & freelance opportunities.","protected":false,"verified":false,"followers_count":1786,"friends_count":1630,"listed_count":31,"favourites_count":1473,"statuses_count":1471,"created_at":"Tue Nov 25 15:23:29 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658007063524716544\/IpEa3nCd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658007063524716544\/IpEa3nCd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2892101867\/1437930894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"InnovatorsHub","name":"Innovators Hub","id":2892101867,"id_str":"2892101867","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207550464,"id_str":"663728148207550464","text":"RT @1DDailyReport: Niall Louis et Harry ont aim\u00e9 ces photos sur Instagram ! (Via @NiallsNotes ) -L https:\/\/t.co\/HI6ljC6Bi6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2567090376,"id_str":"2567090376","name":"\u2764\ufe0f J-4 \u2764\ufe0f","screen_name":"SmilesxfKings","location":"France ","url":null,"description":"\u2764\ufe0fDirectioner\u2764\ufe0fZquad\u2764\ufe0fMusic=Life\u2764\ufe0fLiam\u2764\ufe0fHarry\u2764\ufe0fNiall\u2764\ufe0fLouis\u2764\ufe0fZayn\u2764\ufe0f0\/5\u2764Viens parler en priv\u00e9 si tu veux\u2764\ufe0f","protected":false,"verified":false,"followers_count":2363,"friends_count":1638,"listed_count":9,"favourites_count":6025,"statuses_count":23506,"created_at":"Sat Jun 14 13:22:03 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"2905F7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643507631705980930\/lSLGNmT0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643507631705980930\/lSLGNmT0_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:18:45 +0000 2015","id":663707297097609216,"id_str":"663707297097609216","text":"Niall Louis et Harry ont aim\u00e9 ces photos sur Instagram ! (Via @NiallsNotes ) -L https:\/\/t.co\/HI6ljC6Bi6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1687899980,"id_str":"1687899980","name":"One Direction France","screen_name":"1DDailyReport","location":"France","url":"http:\/\/ask.fm\/OneDirectionFRNews","description":"Updating you on everything about One direction - Latest news, photos, videos and more ! Made in the A.M. is available to pre-order now: http:\/\/t.co\/gtTGAb8uTh","protected":false,"verified":false,"followers_count":40911,"friends_count":1280,"listed_count":129,"favourites_count":34783,"statuses_count":103827,"created_at":"Wed Aug 21 09:46:35 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000073587130\/cea181db2cceefdb6fbfaaf906e71b81.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000073587130\/cea181db2cceefdb6fbfaaf906e71b81.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646351324821504000\/aUD2WhLR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646351324821504000\/aUD2WhLR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1687899980\/1447003254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NiallsNotes","name":"Niall's Notes","id":390485820,"id_str":"390485820","indices":[62,74]}],"symbols":[],"media":[{"id":663684254187024384,"id_str":"663684254187024384","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":749,"resize":"fit"},"small":{"w":340,"h":398,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":703,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"}]},"extended_entities":{"media":[{"id":663684254187024384,"id_str":"663684254187024384","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":749,"resize":"fit"},"small":{"w":340,"h":398,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":703,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"},{"id":663684254396751872,"id_str":"663684254396751872","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUCJWoAAMA1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUCJWoAAMA1E.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":406,"resize":"fit"},"medium":{"w":600,"h":717,"resize":"fit"},"large":{"w":639,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"},{"id":663684254489042945,"id_str":"663684254489042945","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUCfW4AEQspy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUCfW4AEQspy.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":632,"h":767,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":728,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1DDailyReport","name":"One Direction France","id":1687899980,"id_str":"1687899980","indices":[3,17]},{"screen_name":"NiallsNotes","name":"Niall's Notes","id":390485820,"id_str":"390485820","indices":[81,93]}],"symbols":[],"media":[{"id":663684254187024384,"id_str":"663684254187024384","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":749,"resize":"fit"},"small":{"w":340,"h":398,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":703,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"}]},"extended_entities":{"media":[{"id":663684254187024384,"id_str":"663684254187024384","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUBXWcAAKZ4O.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":749,"resize":"fit"},"small":{"w":340,"h":398,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":703,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"},{"id":663684254396751872,"id_str":"663684254396751872","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUCJWoAAMA1E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUCJWoAAMA1E.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":406,"resize":"fit"},"medium":{"w":600,"h":717,"resize":"fit"},"large":{"w":639,"h":764,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"},{"id":663684254489042945,"id_str":"663684254489042945","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXhUCfW4AEQspy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXhUCfW4AEQspy.jpg","url":"https:\/\/t.co\/HI6ljC6Bi6","display_url":"pic.twitter.com\/HI6ljC6Bi6","expanded_url":"http:\/\/twitter.com\/NiallsNotes\/status\/663684280263049216\/photo\/1","type":"photo","sizes":{"large":{"w":632,"h":767,"resize":"fit"},"small":{"w":340,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":728,"resize":"fit"}},"source_status_id":663684280263049216,"source_status_id_str":"663684280263049216","source_user_id":390485820,"source_user_id_str":"390485820"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207546368,"id_str":"663728148207546368","text":"RT @bbygalclothing: *says i don't care* \n*actually cares a lot though*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":514436009,"id_str":"514436009","name":"dannthemann","screen_name":"danni_elles","location":"New York","url":null,"description":"i'm messed up in the head thanks to society ~18~","protected":false,"verified":false,"followers_count":351,"friends_count":237,"listed_count":2,"favourites_count":7236,"statuses_count":9074,"created_at":"Sun Mar 04 15:06:28 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9262CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444945090880880640\/2kSfcukK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444945090880880640\/2kSfcukK.jpeg","profile_background_tile":false,"profile_link_color":"003388","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"8F2E2E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662299437964918784\/1M3G-FK0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662299437964918784\/1M3G-FK0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/514436009\/1428928711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:20:25 +0000 2015","id":663164135090298880,"id_str":"663164135090298880","text":"*says i don't care* \n*actually cares a lot though*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4100548223,"id_str":"4100548223","name":"BBYGAL.","screen_name":"bbygalclothing","location":"London","url":"http:\/\/instagram.com\/bbygalclothing","description":"Life's too short to not look cute af all the time. Shop coming soon, turn on our notifications.","protected":false,"verified":false,"followers_count":2859,"friends_count":0,"listed_count":4,"favourites_count":2,"statuses_count":17,"created_at":"Mon Nov 02 23:14:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662793244703592449\/vAM1F_q__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662793244703592449\/vAM1F_q__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4100548223\/1446515430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":728,"favorite_count":596,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bbygalclothing","name":"BBYGAL.","id":4100548223,"id_str":"4100548223","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211740672,"id_str":"663728148211740672","text":"RT @LutfuTurkkan: Mantarlar\u0131n k\u00f6kleri yoktur, ba\u015fka bitkilerin k\u00f6klerinden beslenirler... Konu anla\u015f\u0131lm\u0131\u015ft\u0131r; ge\u00e7elim.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2832430407,"id_str":"2832430407","name":"e\u011fitimci","screen_name":"eitimci27","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":82,"friends_count":327,"listed_count":0,"favourites_count":903,"statuses_count":3248,"created_at":"Wed Oct 15 18:56:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526457906120499201\/l8eqLmFh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526457906120499201\/l8eqLmFh_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:09 +0000 2015","id":663722999619678208,"id_str":"663722999619678208","text":"Mantarlar\u0131n k\u00f6kleri yoktur, ba\u015fka bitkilerin k\u00f6klerinden beslenirler... Konu anla\u015f\u0131lm\u0131\u015ft\u0131r; ge\u00e7elim.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":176329831,"id_str":"176329831","name":"L\u00fctf\u00fc T\u00fcrkkan","screen_name":"LutfuTurkkan","location":"\u0130stanbul \/ Kocaeli","url":"http:\/\/lutfuturkkan.com.tr","description":"https:\/\/www.tbmm.gov.tr\/develop\/owa\/milletvekillerimiz_sd.bilgi?p_donem=24&p_sicil=6664\n24. D\u00f6nem MHP Kocaeli Milletvekili","protected":false,"verified":false,"followers_count":279086,"friends_count":575,"listed_count":433,"favourites_count":83,"statuses_count":33602,"created_at":"Mon Aug 09 06:55:23 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"3722D4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/824166997\/0b4b16d3a47704631b9aabca244fc2a4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/824166997\/0b4b16d3a47704631b9aabca244fc2a4.jpeg","profile_background_tile":false,"profile_link_color":"787BB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"6B646B","profile_text_color":"578391","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638742645775462400\/_6Caafgk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638742645775462400\/_6Caafgk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/176329831\/1438690154","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LutfuTurkkan","name":"L\u00fctf\u00fc T\u00fcrkkan","id":176329831,"id_str":"176329831","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220125185,"id_str":"663728148220125185","text":"RT @lucianagenro: Na Parada Livre de Porto Alegre! Muito bom festejar e lutar junto com os LGBTs por mais direitos e pelo #ForaCunha! https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4056370672,"id_str":"4056370672","name":"Marina","screen_name":"_marih17","location":null,"url":null,"description":"A m\u00fasica me devolve a paz que o mundo tira...","protected":false,"verified":false,"followers_count":25,"friends_count":71,"listed_count":0,"favourites_count":23,"statuses_count":248,"created_at":"Tue Oct 27 22:05:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661709002078859264\/wK2hfvoj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661709002078859264\/wK2hfvoj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4056370672\/1445993198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:01:09 +0000 2015","id":663461276409069568,"id_str":"663461276409069568","text":"Na Parada Livre de Porto Alegre! Muito bom festejar e lutar junto com os LGBTs por mais direitos e pelo #ForaCunha! https:\/\/t.co\/58bNAJiFSx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44449830,"id_str":"44449830","name":"Luciana Genro","screen_name":"lucianagenro","location":"Porto Alegre, RS","url":"http:\/\/lucianagenro.com.br","description":"Presidenta da Funda\u00e7\u00e3o Lauro Campos. Quarta colocada nas elei\u00e7\u00f5es presidenciais com 1.612.186 votos. http:\/\/facebook.com\/LucianaGenroPS\u2026","protected":false,"verified":true,"followers_count":167766,"friends_count":376,"listed_count":950,"favourites_count":1676,"statuses_count":9672,"created_at":"Wed Jun 03 20:32:35 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D8B18F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/489199003297263616\/mm9ma79q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/489199003297263616\/mm9ma79q.png","profile_background_tile":false,"profile_link_color":"D8B18F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5990E","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660475353698299904\/qqSrkLlZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660475353698299904\/qqSrkLlZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44449830\/1423183791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":349,"entities":{"hashtags":[{"text":"ForaCunha","indices":[104,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461263515770884,"id_str":"663461263515770884","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","url":"https:\/\/t.co\/58bNAJiFSx","display_url":"pic.twitter.com\/58bNAJiFSx","expanded_url":"http:\/\/twitter.com\/lucianagenro\/status\/663461276409069568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461263515770884,"id_str":"663461263515770884","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","url":"https:\/\/t.co\/58bNAJiFSx","display_url":"pic.twitter.com\/58bNAJiFSx","expanded_url":"http:\/\/twitter.com\/lucianagenro\/status\/663461276409069568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ForaCunha","indices":[122,132]}],"urls":[],"user_mentions":[{"screen_name":"lucianagenro","name":"Luciana Genro","id":44449830,"id_str":"44449830","indices":[3,16]}],"symbols":[],"media":[{"id":663461263515770884,"id_str":"663461263515770884","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","url":"https:\/\/t.co\/58bNAJiFSx","display_url":"pic.twitter.com\/58bNAJiFSx","expanded_url":"http:\/\/twitter.com\/lucianagenro\/status\/663461276409069568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663461276409069568,"source_status_id_str":"663461276409069568","source_user_id":44449830,"source_user_id_str":"44449830"}]},"extended_entities":{"media":[{"id":663461263515770884,"id_str":"663461263515770884","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWgQYW4AQ4HxS.jpg","url":"https:\/\/t.co\/58bNAJiFSx","display_url":"pic.twitter.com\/58bNAJiFSx","expanded_url":"http:\/\/twitter.com\/lucianagenro\/status\/663461276409069568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663461276409069568,"source_status_id_str":"663461276409069568","source_user_id":44449830,"source_user_id_str":"44449830"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194959360,"id_str":"663728148194959360","text":"RT @MOTEZ_SOCCER: @Prince_Ibra97 shiekh ibra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740003557,"id_str":"2740003557","name":"Chef Masta Ibrrrra","screen_name":"Prince_Ibra97","location":null,"url":"https:\/\/www.youtube.com\/channel\/UCsH5sKyvPnO_FhKv2XnaKBw","description":"Now it's time to prove everyone wrong","protected":false,"verified":false,"followers_count":474,"friends_count":255,"listed_count":0,"favourites_count":691,"statuses_count":3207,"created_at":"Mon Aug 11 16:28:30 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627908175237394432\/ZKoBDz6q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627908175237394432\/ZKoBDz6q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2740003557\/1438539977","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:43 +0000 2015","id":663726666733219840,"id_str":"663726666733219840","text":"@Prince_Ibra97 shiekh ibra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722007004110848,"in_reply_to_status_id_str":"663722007004110848","in_reply_to_user_id":2740003557,"in_reply_to_user_id_str":"2740003557","in_reply_to_screen_name":"Prince_Ibra97","user":{"id":2848151879,"id_str":"2848151879","name":"\u303d\ufe0foutiz","screen_name":"MOTEZ_SOCCER","location":"Starting Striker for PSG","url":null,"description":"No L's Taken. JSHS 18'","protected":false,"verified":false,"followers_count":116,"friends_count":128,"listed_count":0,"favourites_count":613,"statuses_count":441,"created_at":"Tue Oct 28 12:55:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646341319116345344\/R5OXWv-q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646341319116345344\/R5OXWv-q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848151879\/1442934754","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Prince_Ibra97","name":"Chef Masta Ibrrrra","id":2740003557,"id_str":"2740003557","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MOTEZ_SOCCER","name":"\u303d\ufe0foutiz","id":2848151879,"id_str":"2848151879","indices":[3,16]},{"screen_name":"Prince_Ibra97","name":"Chef Masta Ibrrrra","id":2740003557,"id_str":"2740003557","indices":[18,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"sk","timestamp_ms":"1447080096659"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148224212992,"id_str":"663728148224212992","text":"RT @foreverrgutom: Liza TheMostBeautiful https:\/\/t.co\/I1LHyZR8Gh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3028872186,"id_str":"3028872186","name":"lizquenfan_4ever","screen_name":"CabanosMavic","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":84,"friends_count":349,"listed_count":7,"favourites_count":7370,"statuses_count":12413,"created_at":"Thu Feb 19 06:44:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657471633863499776\/PYe9KOF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657471633863499776\/PYe9KOF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3028872186\/1440935463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:55 +0000 2015","id":663725712625393665,"id_str":"663725712625393665","text":"Liza TheMostBeautiful https:\/\/t.co\/I1LHyZR8Gh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58715309,"id_str":"58715309","name":"kim","screen_name":"foreverrgutom","location":"LizQuen Universe","url":null,"description":"bitch with wifi and a drama queen","protected":false,"verified":false,"followers_count":1681,"friends_count":712,"listed_count":22,"favourites_count":204665,"statuses_count":182591,"created_at":"Tue Jul 21 05:30:34 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"80B8D6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663536180277829632\/T4oa_caf.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663536180277829632\/T4oa_caf.jpg","profile_background_tile":true,"profile_link_color":"609ED4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3639F","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663677757004496896\/W76Hmpla_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663677757004496896\/W76Hmpla_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58715309\/1447031304","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725700088594433,"id_str":"663725700088594433","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","url":"https:\/\/t.co\/I1LHyZR8Gh","display_url":"pic.twitter.com\/I1LHyZR8Gh","expanded_url":"http:\/\/twitter.com\/foreverrgutom\/status\/663725712625393665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725700088594433,"id_str":"663725700088594433","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","url":"https:\/\/t.co\/I1LHyZR8Gh","display_url":"pic.twitter.com\/I1LHyZR8Gh","expanded_url":"http:\/\/twitter.com\/foreverrgutom\/status\/663725712625393665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"foreverrgutom","name":"kim","id":58715309,"id_str":"58715309","indices":[3,17]}],"symbols":[],"media":[{"id":663725700088594433,"id_str":"663725700088594433","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","url":"https:\/\/t.co\/I1LHyZR8Gh","display_url":"pic.twitter.com\/I1LHyZR8Gh","expanded_url":"http:\/\/twitter.com\/foreverrgutom\/status\/663725712625393665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663725712625393665,"source_status_id_str":"663725712625393665","source_user_id":58715309,"source_user_id_str":"58715309"}]},"extended_entities":{"media":[{"id":663725700088594433,"id_str":"663725700088594433","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHAfYUAAEg-al.jpg","url":"https:\/\/t.co\/I1LHyZR8Gh","display_url":"pic.twitter.com\/I1LHyZR8Gh","expanded_url":"http:\/\/twitter.com\/foreverrgutom\/status\/663725712625393665\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663725712625393665,"source_status_id_str":"663725712625393665","source_user_id":58715309,"source_user_id_str":"58715309"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096666"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220129281,"id_str":"663728148220129281","text":"Ganas de terminar las clases","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1579382088,"id_str":"1579382088","name":"CD","screen_name":"CamiDiallutto","location":null,"url":null,"description":"Hincha de @LCFC @MCFC @BVB @AFCAjax y @OficialCAP\nhttps:\/\/instagram.com\/camilodialluttof\/","protected":false,"verified":false,"followers_count":251,"friends_count":275,"listed_count":2,"favourites_count":306,"statuses_count":11044,"created_at":"Tue Jul 09 04:30:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643264781969920000\/8862cm2k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643264781969920000\/8862cm2k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1579382088\/1434647866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148190597120,"id_str":"663728148190597120","text":"Stitches","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366545028,"id_str":"366545028","name":"Ms. E","screen_name":"xjmle_","location":null,"url":null,"description":"worry less \u2661 JlnLyBlytMndz \u2022 b\u00e6 @ZacEfron","protected":false,"verified":false,"followers_count":1649,"friends_count":800,"listed_count":3,"favourites_count":63927,"statuses_count":113133,"created_at":"Fri Sep 02 11:12:28 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573840272041234434\/JEt2m851.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573840272041234434\/JEt2m851.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"696969","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662363086234382336\/A4mFLlmV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662363086234382336\/A4mFLlmV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366545028\/1446873709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096658"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148198981632,"id_str":"663728148198981632","text":"#\u9000\u4f1a #\u3067\u304d\u308b #\u5b89\u5fc3 #\u51fa\u4f1a\u3044\u7cfb #\u30b5\u30a4\u30c8 #\u7d39\u4ecb \u30d5\u30a9\u30ed\u30fc\u3042\u3056\u3063\u3059\u3002 #\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":548453327,"id_str":"548453327","name":"siori","screen_name":"siorioiwe","location":null,"url":"http:\/\/naomideaibbs.blog.fc2.com\/","description":"((o^\u2207^o)\uff89 \u306f\u3058\u3081\u307e\u3057\u3066\u266a\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002)\r\n#\u9000\u4f1a #\u3067\u304d\u308b #\u5b89\u5fc3 #\u51fa\u4f1a\u3044\u7cfb #\u30b5\u30a4\u30c8 #\u7d39\u4ecb","protected":false,"verified":false,"followers_count":2111,"friends_count":2370,"listed_count":3,"favourites_count":0,"statuses_count":24892,"created_at":"Sun Apr 08 14:13:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2155944399\/n14_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2155944399\/n14_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u9000\u4f1a","indices":[0,3]},{"text":"\u3067\u304d\u308b","indices":[4,8]},{"text":"\u5b89\u5fc3","indices":[9,12]},{"text":"\u51fa\u4f1a\u3044\u7cfb","indices":[13,18]},{"text":"\u30b5\u30a4\u30c8","indices":[19,23]},{"text":"\u7d39\u4ecb","indices":[24,27]},{"text":"\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057","indices":[38,45]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096660"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148199030784,"id_str":"663728148199030784","text":"\u4eca\u56de\u753b\u50cf\u3060\u3051\u3060\u3051\u3069\n\u5148\u306b\u6d41\u308c\u308b\u304b\u3089\u6d41\u3059\u306d\n\u30d5\u30e9\u30a4\u30f3\u30b0\u3057\u307e\u3059\ud83d\udc3c\ud83d\udc93","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3758027533,"id_str":"3758027533","name":"\u24c2\ufe0f\u2765\u2765\u2765","screen_name":"hiro31200","location":"0312 \u7279\u5225\u306a\u65e5","url":null,"description":"\u81e3\u304f\u3093 \u2764\ufe0e \u2764\ufe0e \u81ea\u5206\u306a\u308a\u306e\u611b\u3067.. \u2601\ufe0e \u88f8\u773c\u5973\u5b50","protected":false,"verified":false,"followers_count":519,"friends_count":389,"listed_count":18,"favourites_count":2215,"statuses_count":5104,"created_at":"Fri Oct 02 10:29:20 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654638980441346048\/jmsmqaHl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654638980441346048\/jmsmqaHl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3758027533\/1444911090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096660"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148224151552,"id_str":"663728148224151552","text":"RT @justinbieber: Hey @zanelowe u think we should world premiere another song off #purpose tomorrow?? #beats1 #LoveYourself @edsheeran","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":799075375,"id_str":"799075375","name":"haila","screen_name":"liladenice","location":null,"url":"http:\/\/Instagram.com\/liladenice","description":"another day, another slay","protected":false,"verified":false,"followers_count":1365,"friends_count":862,"listed_count":17,"favourites_count":31005,"statuses_count":62192,"created_at":"Sun Sep 02 21:25:49 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632043073405513728\/FhU8dqpB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632043073405513728\/FhU8dqpB.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660735794923962368\/iYqE4Xaa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660735794923962368\/iYqE4Xaa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/799075375\/1446367282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:00:25 +0000 2015","id":663642287457501184,"id_str":"663642287457501184","text":"Hey @zanelowe u think we should world premiere another song off #purpose tomorrow?? #beats1 #LoveYourself @edsheeran","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27260086,"id_str":"27260086","name":"Justin Bieber","screen_name":"justinbieber","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Let's make the world better. Join @officialfahlo and add me on @shots 'justinbieber'. OUR new single SORRY out now. OUR new album PURPOSE out Nov 13","protected":false,"verified":true,"followers_count":69382964,"friends_count":240813,"listed_count":627142,"favourites_count":1894,"statuses_count":29961,"created_at":"Sat Mar 28 16:41:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27260086\/1446487498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19024,"favorite_count":25740,"entities":{"hashtags":[{"text":"purpose","indices":[64,72]},{"text":"beats1","indices":[84,91]},{"text":"LoveYourself","indices":[92,105]}],"urls":[],"user_mentions":[{"screen_name":"zanelowe","name":"Zane Lowe","id":21288052,"id_str":"21288052","indices":[4,13]},{"screen_name":"edsheeran","name":"Ed Sheeran","id":85452649,"id_str":"85452649","indices":[106,116]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"purpose","indices":[82,90]},{"text":"beats1","indices":[102,109]},{"text":"LoveYourself","indices":[110,123]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[3,16]},{"screen_name":"zanelowe","name":"Zane Lowe","id":21288052,"id_str":"21288052","indices":[22,31]},{"screen_name":"edsheeran","name":"Ed Sheeran","id":85452649,"id_str":"85452649","indices":[124,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096666"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194811904,"id_str":"663728148194811904","text":"E40 Het ongeval in Jabbeke\/De Haan is afgehandeld.","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251822199,"id_str":"1251822199","name":"Verkeersinfo Belgi\u00eb","screen_name":"VerkeersinfoBE","location":"Belgi\u00eb","url":"http:\/\/goo.gl\/KRD76","description":"Alle verkeersinformatie in Belgi\u00eb op Twitter !\nBekijk in real-time files, incidenten en wegenwerken. Volg nu de beste Twitter community met de meeste updates !","protected":false,"verified":false,"followers_count":1345,"friends_count":1158,"listed_count":33,"favourites_count":2,"statuses_count":167613,"created_at":"Fri Mar 08 14:03:40 +0000 2013","utc_offset":3600,"time_zone":"Brussels","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3362872942\/7fab652a9d38901e8f482e2e63b22698_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3362872942\/7fab652a9d38901e8f482e2e63b22698_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251822199\/1362933859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080096659"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148190621697,"id_str":"663728148190621697","text":"amei #BCAOsDezMandamentos","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440180201,"id_str":"440180201","name":"Juliane Quadros","screen_name":"juliane_quadros","location":"curitiba paran\u00e1","url":null,"description":"Posso n\u00e3o ser a melhor f\u00e3, mas tenho os melhores \u00eddolos do mundo","protected":false,"verified":false,"followers_count":840,"friends_count":548,"listed_count":2,"favourites_count":4396,"statuses_count":84170,"created_at":"Sun Dec 18 17:31:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578625832714776576\/RtiJXWLa.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578625832714776576\/RtiJXWLa.png","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647095013126602752\/S7J6reTP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647095013126602752\/S7J6reTP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440180201\/1434757495","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BCAOsDezMandamentos","indices":[5,25]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080096658"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194791425,"id_str":"663728148194791425","text":"\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e08\u0e30\u0e17\u0e33\u0e16\u0e39\u0e01\u0e2b\u0e23\u0e37\u0e2d\u0e17\u0e33\u0e1c\u0e34\u0e14 \u0e2b\u0e23\u0e37\u0e2d\u0e41\u0e21\u0e49\u0e41\u0e15\u0e48\u0e2d\u0e22\u0e39\u0e48\u0e40\u0e09\u0e22\u0e46 \u0e22\u0e31\u0e07\u0e42\u0e14\u0e19\u0e14\u0e48\u0e32 \u0e14\u0e48\u0e32\u0e15\u0e25\u0e2d\u0e14 \u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e0b\u0e49\u0e33\u0e46\u0e21\u0e32\u0e01\u0e35\u0e48\u0e23\u0e2d\u0e1a\u0e41\u0e25\u0e49\u0e27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":102652932,"id_str":"102652932","name":"*mamew\u2605","screen_name":"ppkkb","location":"Chiang Mai Thailand","url":null,"description":"You were born to be real, not to be perfect.","protected":false,"verified":false,"followers_count":131,"friends_count":254,"listed_count":1,"favourites_count":3520,"statuses_count":20233,"created_at":"Thu Jan 07 11:38:53 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/755198397\/cb85abbdbe55e48da4e80d04480dffb6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/755198397\/cb85abbdbe55e48da4e80d04480dffb6.jpeg","profile_background_tile":true,"profile_link_color":"37F211","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"ED0C84","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471803025992851456\/0Bbgqog__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471803025992851456\/0Bbgqog__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/102652932\/1357277528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080096659"} +{"delete":{"status":{"id":632762834917548033,"id_str":"632762834917548033","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080096743"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220014593,"id_str":"663728148220014593","text":"https:\/\/t.co\/9as6bFEmZv: Listen to iamKingLos' #ThePharmacy freestyle (prod. by drdre) \/sehxzh\u00a0 https:\/\/t.co\/PgtoX2qkJT","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1033180867,"id_str":"1033180867","name":"Spread1000Follows","screen_name":"SpreadFollows","location":"California","url":"http:\/\/tinyurl.com\/SPREADS1000","description":"Loving and living life as I spread follows. \r\n4 A \u2131\u2134\u2113\u2113\u2134\u03c9 #WePromoteYou! Also get 1000 NEW FOLLOWS just click my site below.","protected":false,"verified":false,"followers_count":1749,"friends_count":2796,"listed_count":7,"favourites_count":3,"statuses_count":660021,"created_at":"Mon Dec 24 18:00:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F49984","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/748094978\/a29e3f1e0fb8783205bcf19e87a5bd7a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/748094978\/a29e3f1e0fb8783205bcf19e87a5bd7a.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3127895109\/36abd9ff7572e439799e0f333b7d14cd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3127895109\/36abd9ff7572e439799e0f333b7d14cd_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ThePharmacy","indices":[47,59]}],"urls":[{"url":"https:\/\/t.co\/9as6bFEmZv","expanded_url":"http:\/\/tiny.cc\/cdu80x","display_url":"tiny.cc\/cdu80x","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663485781831454720,"id_str":"663485781831454720","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUszaOWEAApS0H.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUszaOWEAApS0H.png","url":"https:\/\/t.co\/PgtoX2qkJT","display_url":"pic.twitter.com\/PgtoX2qkJT","expanded_url":"http:\/\/twitter.com\/HotNewHipHop\/status\/663485871316955136\/photo\/1","type":"photo","sizes":{"large":{"w":594,"h":591,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":594,"h":591,"resize":"fit"}},"source_status_id":663485871316955136,"source_status_id_str":"663485871316955136","source_user_id":24036264,"source_user_id_str":"24036264"}]},"extended_entities":{"media":[{"id":663485781831454720,"id_str":"663485781831454720","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUszaOWEAApS0H.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUszaOWEAApS0H.png","url":"https:\/\/t.co\/PgtoX2qkJT","display_url":"pic.twitter.com\/PgtoX2qkJT","expanded_url":"http:\/\/twitter.com\/HotNewHipHop\/status\/663485871316955136\/photo\/1","type":"photo","sizes":{"large":{"w":594,"h":591,"resize":"fit"},"small":{"w":340,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":594,"h":591,"resize":"fit"}},"source_status_id":663485871316955136,"source_status_id_str":"663485871316955136","source_user_id":24036264,"source_user_id_str":"24036264"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211699712,"id_str":"663728148211699712","text":"@FolagoR desde pokemon oro randomlocke que no me gustaba tanto una serie de tu canal. El hack es una pasada.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727282331238400,"in_reply_to_status_id_str":"663727282331238400","in_reply_to_user_id":272365112,"in_reply_to_user_id_str":"272365112","in_reply_to_screen_name":"FolagoR","user":{"id":233973593,"id_str":"233973593","name":"S\u00f2nia PokeRoig","screen_name":"soniafroig","location":"Ribera de Loira","url":null,"description":"Bioqu\u00edmica del Team Rocket i senyora de la s\u00edndria. Tinc un cap de cavall. Buscant la valija llegend\u00e0ria #BolaDeDrac3xl","protected":false,"verified":false,"followers_count":389,"friends_count":976,"listed_count":18,"favourites_count":1973,"statuses_count":14054,"created_at":"Tue Jan 04 15:12:51 +0000 2011","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"AD232E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659467446114492416\/WWNqXn5G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659467446114492416\/WWNqXn5G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233973593\/1446057570","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FolagoR","name":"Yoel Ram\u00edrez","id":272365112,"id_str":"272365112","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220088320,"id_str":"663728148220088320","text":"RT @_Lefty__: Jugg - Fetty wap >>>","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":775104967,"id_str":"775104967","name":"Austin Bissell","screen_name":"OleBubs_Cheeks","location":"University of Rio Grande","url":null,"description":"Every day is a new beginning stay away from what might have been and look at what can be #URGBaseball #BuckeyeNation | John 14:6","protected":false,"verified":false,"followers_count":435,"friends_count":353,"listed_count":1,"favourites_count":1541,"statuses_count":5576,"created_at":"Thu Aug 23 03:51:46 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/665234109\/788d15e91380d20c29b75283a6772136.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/665234109\/788d15e91380d20c29b75283a6772136.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631219120642609152\/crW8xl1f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631219120642609152\/crW8xl1f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775104967\/1441758824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:00 +0000 2015","id":663727241591980032,"id_str":"663727241591980032","text":"Jugg - Fetty wap >>>","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86788636,"id_str":"86788636","name":"AY\u26be","screen_name":"_Lefty__","location":"Perris, CA","url":null,"description":"Playing ball at URG \u26be","protected":false,"verified":false,"followers_count":422,"friends_count":401,"listed_count":0,"favourites_count":6055,"statuses_count":51350,"created_at":"Sun Nov 01 19:52:26 +0000 2009","utc_offset":-18000,"time_zone":"America\/New_York","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612409545\/ktkux88l3cw6lgt6rk1q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612409545\/ktkux88l3cw6lgt6rk1q.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649625263593136128\/dIDc3cAE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649625263593136128\/dIDc3cAE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86788636\/1443754781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_Lefty__","name":"AY\u26be","id":86788636,"id_str":"86788636","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211736576,"id_str":"663728148211736576","text":"RT @nebiiliyim: sevdi\u011fim erkek beni k\u00fc\u00e7\u00fck s\u00fcrprizlerle \u015f\u0131martmal\u0131 http:\/\/t.co\/eSvseXe77j","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":516650670,"id_str":"516650670","name":"AK GEN\u00c7LIK - IYI","screen_name":"edoos_1905","location":"Elbistan, Kahramanmara\u015f","url":null,"description":"IYI \u015e\u00fckredenlerden S\u00fcheyb sabredenlerden Hifa... \u2661","protected":false,"verified":false,"followers_count":1221,"friends_count":603,"listed_count":5,"favourites_count":4011,"statuses_count":42715,"created_at":"Tue Mar 06 16:23:35 +0000 2012","utc_offset":43200,"time_zone":"Kamchatka","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"696E70","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663464713464975360\/JSMKES5V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663464713464975360\/JSMKES5V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/516650670\/1444887889","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 16 12:09:51 +0000 2015","id":644121015560372224,"id_str":"644121015560372224","text":"sevdi\u011fim erkek beni k\u00fc\u00e7\u00fck s\u00fcrprizlerle \u015f\u0131martmal\u0131 http:\/\/t.co\/eSvseXe77j","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1576617078,"id_str":"1576617078","name":"ven\u00fcs","screen_name":"nebiiliyim","location":"\u0130leti\u015fim; nebiiliyim@gmail.com","url":null,"description":"sevgilimi favlayan k\u0131zlar\u0131 b\u0131\u00e7aklar\u0131m http:\/\/instagram.com\/nebiliiyim\nhttp:\/\/facebook.com\/nebiiliyim\nReklam rt ff isleri i\u00e7in @vatsep hesab\u0131na ula\u015fabilirsiniz","protected":false,"verified":false,"followers_count":249198,"friends_count":28,"listed_count":121,"favourites_count":179,"statuses_count":2080,"created_at":"Mon Jul 08 03:31:05 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616339687666487296\/kjW5OVN9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616339687666487296\/kjW5OVN9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1576617078\/1435458965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":550,"favorite_count":1921,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":644120990235144192,"id_str":"644120990235144192","indices":[50,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","url":"http:\/\/t.co\/eSvseXe77j","display_url":"pic.twitter.com\/eSvseXe77j","expanded_url":"http:\/\/twitter.com\/nebiiliyim\/status\/644121015560372224\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":598,"h":329,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":644120990235144192,"id_str":"644120990235144192","indices":[50,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","url":"http:\/\/t.co\/eSvseXe77j","display_url":"pic.twitter.com\/eSvseXe77j","expanded_url":"http:\/\/twitter.com\/nebiiliyim\/status\/644121015560372224\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":598,"h":329,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nebiiliyim","name":"ven\u00fcs","id":1576617078,"id_str":"1576617078","indices":[3,14]}],"symbols":[],"media":[{"id":644120990235144192,"id_str":"644120990235144192","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","url":"http:\/\/t.co\/eSvseXe77j","display_url":"pic.twitter.com\/eSvseXe77j","expanded_url":"http:\/\/twitter.com\/nebiiliyim\/status\/644121015560372224\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":598,"h":329,"resize":"fit"}},"source_status_id":644121015560372224,"source_status_id_str":"644121015560372224","source_user_id":1576617078,"source_user_id_str":"1576617078"}]},"extended_entities":{"media":[{"id":644120990235144192,"id_str":"644120990235144192","indices":[66,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPBgoL9WsAATsHa.jpg","url":"http:\/\/t.co\/eSvseXe77j","display_url":"pic.twitter.com\/eSvseXe77j","expanded_url":"http:\/\/twitter.com\/nebiiliyim\/status\/644121015560372224\/photo\/1","type":"photo","sizes":{"medium":{"w":598,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"},"large":{"w":598,"h":329,"resize":"fit"}},"source_status_id":644121015560372224,"source_status_id_str":"644121015560372224","source_user_id":1576617078,"source_user_id_str":"1576617078"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148190658560,"id_str":"663728148190658560","text":"@ApuavaCat ily too bbg \u2728\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727308767817729,"in_reply_to_status_id_str":"663727308767817729","in_reply_to_user_id":201361706,"in_reply_to_user_id_str":"201361706","in_reply_to_screen_name":"ApuavaCat","user":{"id":115899442,"id_str":"115899442","name":"sarah","screen_name":"pastelskies_","location":null,"url":"http:\/\/murdermitten-s.tumblr.com","description":"snapchat: srhnabila \/ instagram: sarahpoedjo","protected":false,"verified":false,"followers_count":414,"friends_count":316,"listed_count":0,"favourites_count":5406,"statuses_count":41151,"created_at":"Sat Feb 20 10:48:43 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"808080","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434228059604910080\/zllZJuPq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434228059604910080\/zllZJuPq.jpeg","profile_background_tile":true,"profile_link_color":"CCCCCC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"838785","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663704683567976448\/UVenaUY__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663704683567976448\/UVenaUY__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115899442\/1447078142","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ApuavaCat","name":"\u2661rona\u2661","id":201361706,"id_str":"201361706","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096658"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220092416,"id_str":"663728148220092416","text":"RT @retardalisson: arroto de coca \u00e9 os melhor arroto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2760446605,"id_str":"2760446605","name":"Ashley Benfield","screen_name":"danibenfeld","location":null,"url":null,"description":"Was born in London - 14 years old- Tudo no final da certo! Se ainda n\u00e3o deu certo \u00e9 Porque ainda n\u00e3o \u00e9 o final! \u2764\ufe0f","protected":false,"verified":false,"followers_count":116,"friends_count":363,"listed_count":2,"favourites_count":552,"statuses_count":300,"created_at":"Sat Aug 23 21:39:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663125434847125508\/5njwH2nA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663125434847125508\/5njwH2nA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2760446605\/1445711130","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:46:04 +0000 2015","id":663381983679107073,"id_str":"663381983679107073","text":"arroto de coca \u00e9 os melhor arroto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":429845365,"id_str":"429845365","name":"ale","screen_name":"retardalisson","location":null,"url":null,"description":"so pica das tornera","protected":false,"verified":false,"followers_count":4543,"friends_count":33,"listed_count":21,"favourites_count":2990,"statuses_count":23689,"created_at":"Tue Dec 06 13:14:22 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566244332697448449\/CSftXrvC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566244332697448449\/CSftXrvC.jpeg","profile_background_tile":true,"profile_link_color":"111111","profile_sidebar_border_color":"FC0303","profile_sidebar_fill_color":"0A0909","profile_text_color":"FA0303","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661731325276241920\/fsc2QUmz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661731325276241920\/fsc2QUmz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/429845365\/1446428956","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":109,"favorite_count":58,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"retardalisson","name":"ale","id":429845365,"id_str":"429845365","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207546369,"id_str":"663728148207546369","text":"\u0412 \u0421\u0442\u0430\u0432\u0440\u043e\u043f\u043e\u043b\u0435 \u043d\u0430\u0448\u043b\u0438 \u043c\u0430\u0441\u0441\u043e\u0432\u043e\u0435 \u0437\u0430\u0445\u043e\u0440\u043e\u043d\u0435\u043d\u0438\u0435 \u043c\u0435\u0440\u0442\u0432\u043e\u0440\u043e\u0436\u0434\u0435\u043d\u043d\u044b\u0445 \u0434\u0435\u0442\u0435\u0439","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2636965385,"id_str":"2636965385","name":"Hector Hilliard","screen_name":"HectorHilliard","location":"\u0411\u0430\u043b\u0430\u0445\u043d\u0430","url":null,"description":"\u0412\u0440\u0430\u0447 \u041c\u0421\u042d\u041a, \u0411\u0443\u0442\u044b\u043b\u043a\u0438, \u0425\u0438\u043c\u0438\u043a-\u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433, \u043f\u043e\u0442\u043e\u043c\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0433\u0440\u0430\u0431\u0438\u0442\u0435\u043b\u044c \u043c\u043e\u0433\u0438\u043b","protected":false,"verified":false,"followers_count":13,"friends_count":5,"listed_count":2,"favourites_count":0,"statuses_count":55124,"created_at":"Tue Jun 24 07:31:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484671486926405634\/u4fxSK6I_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484671486926405634\/u4fxSK6I_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148190597121,"id_str":"663728148190597121","text":"(\ube44\ud589\uae30\uac00 \ub0a0\uc544\uac10)\n\ud0c0\uc774\uc5b4\uac00 \uc794\ub729 \uc788\uc5b4.\n22\uac1c \uc788\uc5b4\uc694. \uadf8\ub7fc \uc138 \uae30\uc758 \ube44\ud589\uae30\uac00 \ub0a0\uc544\uac00\uba74 \ucd1d \uba87 \uac1c\uc758 \ud0c0\uc774\uc5b4\uac00 \uc788\ub294 \uac78\uae4c\uc694?\n... ... ... ...\n\n>>>>\uc794\ub729\uc774\uc57c<<<<<","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727742798589953,"in_reply_to_status_id_str":"663727742798589953","in_reply_to_user_id":2762650436,"in_reply_to_user_id_str":"2762650436","in_reply_to_screen_name":"NP_DAM","user":{"id":2762650436,"id_str":"2762650436","name":"\ub9e0\uce74\ub974\ub3c4 \ubc14\ub808\ud0c0","screen_name":"NP_DAM","location":"Somewhere","url":"http:\/\/ask.fm\/NP_DAM","description":"\ub9c8\ube14\uc740 \ubb34\ube44 \uc704\uc8fc\/\ubc14\ub9ac\uc544\/\uc6d0\ud53c\uc2a4\/\ud574\ub9ac\ud3ec\ud130\/\ud558\uc774\ud050\/\ud5cc\ud130\ud5cc\ud130\/\uc0ac\ud37c\/\ucd5c\uad70\/\uc790\uce90\/etc\/\ub4dc\ub9bc\ub7ec\/\ub9ac\ubc84\uc2a4, \ud06c\uc624, AU \uc5b8\uae09 \ub9ce\uc74c\/\uc9c0\ub8b0X\/\uc120\uba58\uc2dc \ub9de\ud314\ud568|| || \ub9c8\ud0a4\u2665\ube44\ud0c0 | \ud53c\ud130\u2665\uc624\uac00| \ud55c\uc724\ucc9c\u2665\uc81c\uc774\ubbf8 ||","protected":false,"verified":false,"followers_count":89,"friends_count":97,"listed_count":2,"favourites_count":2469,"statuses_count":60046,"created_at":"Sun Aug 24 14:34:45 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662607298309689344\/Vv9ep474_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662607298309689344\/Vv9ep474_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2762650436\/1412151365","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080096658"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211589120,"id_str":"663728148211589120","text":"@sunsitti8 \u3075\u3041\u30fc\n\u3084\u3081\u3061\u304f\u308a\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727712788332544,"in_reply_to_status_id_str":"663727712788332544","in_reply_to_user_id":2376436501,"in_reply_to_user_id_str":"2376436501","in_reply_to_screen_name":"sunsitti8","user":{"id":749403456,"id_str":"749403456","name":"ninnjinn","screen_name":"ninnjinn4","location":"\u307f\u306a\u304b\u307f \u21c4 \u304d\u308a\u3085\u3046","url":null,"description":"\u5316\u751f 2\u5e74 \u30d3\u30b8\u30e5\u30e1\u30cb\u30a2","protected":false,"verified":false,"followers_count":67,"friends_count":119,"listed_count":1,"favourites_count":782,"statuses_count":2186,"created_at":"Fri Aug 10 13:56:25 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662286191937519616\/4kB8hoTx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662286191937519616\/4kB8hoTx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749403456\/1445003400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sunsitti8","name":"\u3089\u3069\u3093","id":2376436501,"id_str":"2376436501","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148219957248,"id_str":"663728148219957248","text":"@ayako_usachoko \u7d62\u3061\u3083\u3093(^-^)\u5b50\u3092\u3068\u3063\u3061\u3083\u3063\u305f\u2606\u3042\u308a\u304c\u3068\u30fc\u697d\u3057\u304b\u3063\u305f\u3088\u266a\n\u3082\u3046\u3053\u308c\u306f16\u65e5\u307e\u3067\u3001\u7d62\u3061\u3083\u3093\u306b\u306f\n\u9811\u5f35\u3063\u3066\u3068\u3044\u3046\u6c17\u6301\u3061\u304c\u6ca2\u5c71\u3067\u3066\u304d\u305f\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727045961060352,"in_reply_to_status_id_str":"663727045961060352","in_reply_to_user_id":227655635,"in_reply_to_user_id_str":"227655635","in_reply_to_screen_name":"ayako_usachoko","user":{"id":3040550935,"id_str":"3040550935","name":"\u5e3d\u5b50\u30bf\u30b9\u30ad","screen_name":"nakasho941","location":null,"url":null,"description":"\u5ca1\u5c71\u63a8\u3057\u306e\u5ca1\u5c71\u770c\u4eba\u266a5\u670813\u65e5\u306b\u30aa\u30ae\u30e3\u30fc\u3068\u8a95\u751f\u2606","protected":false,"verified":false,"followers_count":624,"friends_count":577,"listed_count":4,"favourites_count":58547,"statuses_count":41228,"created_at":"Tue Feb 24 23:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658128284736077824\/-PgtjWYJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658128284736077824\/-PgtjWYJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3040550935\/1424839989","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayako_usachoko","name":"\u7532\u6590\u7530\u7d62\u5b50\u260611\/6(\u91d1)\u591c\u30a4\u30d9\u30f3\u30c8\u51fa\u6f14","id":227655635,"id_str":"227655635","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194836480,"id_str":"663728148194836480","text":"Google presenta TensorFlow, su sistema opensource de aprendizaje autom\u00e1tico https:\/\/t.co\/JOJ4EXQugT","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1934075822,"id_str":"1934075822","name":"Socialymedias","screen_name":"Socialymedias","location":"Espa\u00f1a","url":null,"description":"Actualidad e informaci\u00f3n sobre #SocialMedia, #SEO, #Tecnolog\u00eda, #RedesSociales, #Marketing, #CommunityManager, #Comunicaci\u00f3n, #Publicidad, #Web, #Branding, 2.0","protected":false,"verified":false,"followers_count":8941,"friends_count":591,"listed_count":94,"favourites_count":28,"statuses_count":50361,"created_at":"Fri Oct 04 12:05:28 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/508182898789216257\/9k1uUmA5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/508182898789216257\/9k1uUmA5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1934075822\/1409995243","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JOJ4EXQugT","expanded_url":"http:\/\/dlvr.it\/ChfmW9","display_url":"dlvr.it\/ChfmW9","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080096659"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207415296,"id_str":"663728148207415296","text":"Follow the ministry of Dr. Apostle\/Prophet DeShawne on Periscope \n@ Dr.Apostle\/Prophet D!!! Ministry going... https:\/\/t.co\/VAHLnJsfbW","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310380313,"id_str":"310380313","name":"Dr.Apostle\/Prophet D","screen_name":"DSHAWNE","location":"Titusville, Florida","url":"http:\/\/www.odcministries.com","description":"I'M A WIFE~MOTHER~ APOSTLE~ PROPHET~FOUNDER OF ODC MINISTRIES WORLDWIDE","protected":false,"verified":false,"followers_count":251,"friends_count":267,"listed_count":1,"favourites_count":1038,"statuses_count":2414,"created_at":"Fri Jun 03 17:04:39 +0000 2011","utc_offset":-18000,"time_zone":"America\/New_York","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510935961635917824\/KYOK_ob0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510935961635917824\/KYOK_ob0_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VAHLnJsfbW","expanded_url":"http:\/\/fb.me\/39oPVC2sO","display_url":"fb.me\/39oPVC2sO","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220018688,"id_str":"663728148220018688","text":"RT @sambonfante: Russian Athletes Part of State-Sponsored Doping Program https:\/\/t.co\/BGRxSM09ct","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3375858499,"id_str":"3375858499","name":"FOUR","screen_name":"Webleorpad","location":"columbus, ohio","url":null,"description":"19, DIRECTIONER, PROFESSIONAL FANGIRL, #, College Freshman #UWF18","protected":false,"verified":false,"followers_count":51,"friends_count":182,"listed_count":1,"favourites_count":412,"statuses_count":459,"created_at":"Sat Aug 29 00:06:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639228803122724864\/RSiLNCna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639228803122724864\/RSiLNCna_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375858499\/1441239042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:47 +0000 2015","id":663726430363209728,"id_str":"663726430363209728","text":"Russian Athletes Part of State-Sponsored Doping Program https:\/\/t.co\/BGRxSM09ct","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15232098,"id_str":"15232098","name":"Sam Bonfante","screen_name":"sambonfante","location":"Boston | NY and beyond","url":"http:\/\/bonfantegroup.com","description":"Strategist for leading Civic Media, Digital Publishing & Media Tech ventures. Civic Media Lab. Being slowly refined by my swanky Boston girl. Leaning in. Always","protected":false,"verified":false,"followers_count":15947,"friends_count":201,"listed_count":52,"favourites_count":417,"statuses_count":3027,"created_at":"Wed Jun 25 14:57:56 +0000 2008","utc_offset":-18000,"time_zone":"Lima","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496811404611952640\/ots-9FhZ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496811404611952640\/ots-9FhZ.png","profile_background_tile":true,"profile_link_color":"2891E2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BABAB2","profile_text_color":"47484D","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580421932643848192\/tuJ8mUVW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580421932643848192\/tuJ8mUVW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15232098\/1442175947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BGRxSM09ct","expanded_url":"http:\/\/www.nytimes.com\/2015\/11\/10\/sports\/russian-athletes-part-of-state-sponsored-doping-program-report-finds.html","display_url":"nytimes.com\/2015\/11\/10\/spo\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BGRxSM09ct","expanded_url":"http:\/\/www.nytimes.com\/2015\/11\/10\/sports\/russian-athletes-part-of-state-sponsored-doping-program-report-finds.html","display_url":"nytimes.com\/2015\/11\/10\/spo\u2026","indices":[73,96]}],"user_mentions":[{"screen_name":"sambonfante","name":"Sam Bonfante","id":15232098,"id_str":"15232098","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096665"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148194848768,"id_str":"663728148194848768","text":"RT @Amayrasex: Hola chicos #FelizMartes comenten si les gusta verme #pre\u00f1ada, su #hotwife amante del #cuckold y de los #gangbang https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2822868824,"id_str":"2822868824","name":"Diaz Hernandez","screen_name":"adiazhernandez1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":70,"friends_count":395,"listed_count":0,"favourites_count":5318,"statuses_count":166,"created_at":"Sat Sep 20 22:13:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/513467062245949440\/hnIIrFth_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/513467062245949440\/hnIIrFth_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 16:47:28 +0000 2015","id":661585495483265024,"id_str":"661585495483265024","text":"Hola chicos #FelizMartes comenten si les gusta verme #pre\u00f1ada, su #hotwife amante del #cuckold y de los #gangbang https:\/\/t.co\/VAyb4IUEkZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118553982,"id_str":"118553982","name":"Amayrany Vera","screen_name":"Amayrasex","location":null,"url":null,"description":"Pareja swinger de Pachuca Hidalgo","protected":false,"verified":false,"followers_count":18869,"friends_count":1378,"listed_count":120,"favourites_count":2,"statuses_count":1357,"created_at":"Mon Mar 01 01:55:29 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628163419703611393\/7pAMHqOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628163419703611393\/7pAMHqOg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":214,"entities":{"hashtags":[{"text":"FelizMartes","indices":[12,24]},{"text":"pre\u00f1ada","indices":[53,61]},{"text":"hotwife","indices":[66,74]},{"text":"cuckold","indices":[86,94]},{"text":"gangbang","indices":[104,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661585422561079296,"id_str":"661585422561079296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","url":"https:\/\/t.co\/VAyb4IUEkZ","display_url":"pic.twitter.com\/VAyb4IUEkZ","expanded_url":"http:\/\/twitter.com\/Amayrasex\/status\/661585495483265024\/photo\/1","type":"photo","sizes":{"medium":{"w":585,"h":1200,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":673,"h":1379,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661585422561079296,"id_str":"661585422561079296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","url":"https:\/\/t.co\/VAyb4IUEkZ","display_url":"pic.twitter.com\/VAyb4IUEkZ","expanded_url":"http:\/\/twitter.com\/Amayrasex\/status\/661585495483265024\/photo\/1","type":"photo","sizes":{"medium":{"w":585,"h":1200,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":673,"h":1379,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FelizMartes","indices":[27,39]},{"text":"pre\u00f1ada","indices":[68,76]},{"text":"hotwife","indices":[81,89]},{"text":"cuckold","indices":[101,109]},{"text":"gangbang","indices":[119,128]}],"urls":[],"user_mentions":[{"screen_name":"Amayrasex","name":"Amayrany Vera","id":118553982,"id_str":"118553982","indices":[3,13]}],"symbols":[],"media":[{"id":661585422561079296,"id_str":"661585422561079296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","url":"https:\/\/t.co\/VAyb4IUEkZ","display_url":"pic.twitter.com\/VAyb4IUEkZ","expanded_url":"http:\/\/twitter.com\/Amayrasex\/status\/661585495483265024\/photo\/1","type":"photo","sizes":{"medium":{"w":585,"h":1200,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":673,"h":1379,"resize":"fit"}},"source_status_id":661585495483265024,"source_status_id_str":"661585495483265024","source_user_id":118553982,"source_user_id_str":"118553982"}]},"extended_entities":{"media":[{"id":661585422561079296,"id_str":"661585422561079296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5sb8RUcAAjKfv.jpg","url":"https:\/\/t.co\/VAyb4IUEkZ","display_url":"pic.twitter.com\/VAyb4IUEkZ","expanded_url":"http:\/\/twitter.com\/Amayrasex\/status\/661585495483265024\/photo\/1","type":"photo","sizes":{"medium":{"w":585,"h":1200,"resize":"fit"},"small":{"w":331,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":673,"h":1379,"resize":"fit"}},"source_status_id":661585495483265024,"source_status_id_str":"661585495483265024","source_user_id":118553982,"source_user_id_str":"118553982"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080096659"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148224217092,"id_str":"663728148224217092","text":"@gami_ATM \uc624\ud788\ub824 \uc800 \uc9c0\uae08 \ub6f0\ub294 \ub374 \uc544\ubb34\ub9ac \ub0b4\ub824\uac00\ubd24\uc790 100~200\uc704 \uc815\ub3c4\uac19\uc740.....? \ud750\uc74d \ub9ac\uce20 5\uc7a5\uc73c\ub85c \ub9cc\uc871\ud558\uace0 \ub05d\ub0b4\ub294 \uc0ac\ub78c\uacfc \ucf54\uc6b0\uac00 \ud480\ub3cc\uc744 \uc704\ud574\uc11c \ubbf8\uce5c\ub4ef\uc774 \ub6f0\ub294 \uc0ac\ub78c\uc774 \uc2ac\uc2ac \uac08\ub9ac\ub294 \uad6c\uac04 \uac19\uc2b5\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727771298873345,"in_reply_to_status_id_str":"663727771298873345","in_reply_to_user_id":3140635462,"in_reply_to_user_id_str":"3140635462","in_reply_to_screen_name":"gami_ATM","user":{"id":4074620473,"id_str":"4074620473","name":"FioMama\/\u5922\u306epass-code","screen_name":"fiomama_as","location":"\u79c1\u7acb\u5922\u30ce\u54b2\u5b66\u9662","url":"http:\/\/twpf.jp\/fiomama_as","description":"\u6210\u4eba\u6e08\u307f\/\u3042\u3093\u30b9\u30bf \u53f8\u30ec\u30aa \u2605F\/UF\/B Free\n\uc5d0\uc774\uce58P\uc9c0\ub9cc \ub098\uc774\uce20\uc624\uc2dc\uc778 \uc804\ud559\uc0dd. \ud50c\ud14d\uacc4 \uad6c\ub3c5\uc740 \ubc1b\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc5ec\uc7a5\uce20\uce74\ub808\uc624 \ucd5c\uace0!","protected":false,"verified":false,"followers_count":47,"friends_count":56,"listed_count":0,"favourites_count":324,"statuses_count":1641,"created_at":"Sat Oct 31 01:30:34 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660268052269805568\/WG_Yygi-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660268052269805568\/WG_Yygi-_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gami_ATM","name":"\uce20\uce74\uc0ac \uc6b0\uc8fc \ub300\ucc9c\uc0ac\ubd07","id":3140635462,"id_str":"3140635462","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080096666"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207521796,"id_str":"663728148207521796","text":"RT @SpeakComedy: My excuse when I'm late to class https:\/\/t.co\/GRPwcTUXcr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633021565,"id_str":"633021565","name":"Jocelyn.","screen_name":"jocelyng37","location":null,"url":null,"description":"College student, 22. IG: joce.gxn","protected":false,"verified":false,"followers_count":862,"friends_count":1354,"listed_count":1,"favourites_count":3835,"statuses_count":16984,"created_at":"Wed Jul 11 16:14:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663198625833607168\/AsMjDrna_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663198625833607168\/AsMjDrna_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633021565\/1446952799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 06:37:02 +0000 2015","id":663243814111281152,"id_str":"663243814111281152","text":"My excuse when I'm late to class https:\/\/t.co\/GRPwcTUXcr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eSpeakComedyApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50618718,"id_str":"50618718","name":"Speak Comedy","screen_name":"SpeakComedy","location":null,"url":null,"description":"Finally, comedy on Twitter! For Business, email alyzigho@gmail.com","protected":false,"verified":false,"followers_count":2227991,"friends_count":1,"listed_count":5728,"favourites_count":262,"statuses_count":50258,"created_at":"Thu Jun 25 11:22:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ABBF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_tile":true,"profile_link_color":"2ABBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"594F55","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50618718\/1444775882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":468,"favorite_count":544,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663243813377302528,"id_str":"663243813377302528","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","url":"https:\/\/t.co\/GRPwcTUXcr","display_url":"pic.twitter.com\/GRPwcTUXcr","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663243814111281152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":465,"resize":"fit"},"large":{"w":599,"h":465,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663243813377302528,"id_str":"663243813377302528","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","url":"https:\/\/t.co\/GRPwcTUXcr","display_url":"pic.twitter.com\/GRPwcTUXcr","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663243814111281152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":465,"resize":"fit"},"large":{"w":599,"h":465,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeakComedy","name":"Speak Comedy","id":50618718,"id_str":"50618718","indices":[3,15]}],"symbols":[],"media":[{"id":663243813377302528,"id_str":"663243813377302528","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","url":"https:\/\/t.co\/GRPwcTUXcr","display_url":"pic.twitter.com\/GRPwcTUXcr","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663243814111281152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":465,"resize":"fit"},"large":{"w":599,"h":465,"resize":"fit"}},"source_status_id":663243814111281152,"source_status_id_str":"663243814111281152","source_user_id":50618718,"source_user_id_str":"50618718"}]},"extended_entities":{"media":[{"id":663243813377302528,"id_str":"663243813377302528","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRQu_fUYAAf0Wp.jpg","url":"https:\/\/t.co\/GRPwcTUXcr","display_url":"pic.twitter.com\/GRPwcTUXcr","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663243814111281152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":263,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":465,"resize":"fit"},"large":{"w":599,"h":465,"resize":"fit"}},"source_status_id":663243814111281152,"source_status_id_str":"663243814111281152","source_user_id":50618718,"source_user_id_str":"50618718"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148186443779,"id_str":"663728148186443779","text":"@BryanBroaddus @JTimlina were the Boys in man or zone more often. With that kind of pressure did they try to take away quick routes?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726761092513794,"in_reply_to_status_id_str":"663726761092513794","in_reply_to_user_id":169194549,"in_reply_to_user_id_str":"169194549","in_reply_to_screen_name":"BryanBroaddus","user":{"id":1067453726,"id_str":"1067453726","name":"CUBUFFSFAN","screen_name":"BUFFSFAN80","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":58,"listed_count":1,"favourites_count":16,"statuses_count":56,"created_at":"Mon Jan 07 04:46:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BryanBroaddus","name":"Bryan Broaddus","id":169194549,"id_str":"169194549","indices":[0,14]},{"screen_name":"JTimlina","name":"Josh Timlina","id":2178388705,"id_str":"2178388705","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096657"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148190593024,"id_str":"663728148190593024","text":"@konomi25247784 \u305d\u3053\u3058\u3083\u306d\u3047\u3088w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727933228343297,"in_reply_to_status_id_str":"663727933228343297","in_reply_to_user_id":1933855770,"in_reply_to_user_id_str":"1933855770","in_reply_to_screen_name":"konomi25247784","user":{"id":2185797961,"id_str":"2185797961","name":"\u306d\u305911\u5bff\u4e00","screen_name":"nesu_bba","location":"\u7bb1\u6839\u5b66\u5712","url":"http:\/\/twpf.jp\/nesu_bba","description":"\u305d\u306e\u8fba\u306e\u30ec\u30a4\u30e4\u30fc\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u306f\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u4e0b\u3055\u3044(\uff61-\u2200-)\uff86\uff8b\u266a\u304a\u6c17\u8efd\u306b\u3002","protected":false,"verified":false,"followers_count":90,"friends_count":106,"listed_count":3,"favourites_count":3554,"statuses_count":11110,"created_at":"Sun Nov 10 07:00:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663158788254371840\/1icJm5LA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663158788254371840\/1icJm5LA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2185797961\/1447031098","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"konomi25247784","name":"konomi@\u9752\u516b\u6728\u4e00\u3001\u5c71\u59e5\u5207\u56fd\u5e83\u30e2\u30f3\u30da","id":1933855770,"id_str":"1933855770","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096658"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207394816,"id_str":"663728148207394816","text":"RT @SupportVale_46: Proud to be fan of #ValentinoRossi \n#iostoconVale \ud83d\udcaa https:\/\/t.co\/ZhIQcB5uoc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571492311,"id_str":"571492311","name":"fiqih juniawan","screen_name":"fiqihjuniawan","location":"malang","url":null,"description":"Tuhan bersama para cyclist","protected":false,"verified":false,"followers_count":134,"friends_count":271,"listed_count":1,"favourites_count":209,"statuses_count":2986,"created_at":"Sat May 05 03:45:13 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566862152779055104\/XpPJ5lpv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566862152779055104\/XpPJ5lpv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571492311\/1427661053","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:12:09 +0000 2015","id":663645236883795969,"id_str":"663645236883795969","text":"Proud to be fan of #ValentinoRossi \n#iostoconVale \ud83d\udcaa https:\/\/t.co\/ZhIQcB5uoc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550229852,"id_str":"550229852","name":"SupportVale46","screen_name":"SupportVale_46","location":"Italy","url":null,"description":"#SupportVale46 - [No controversy, only support and fun]","protected":false,"verified":false,"followers_count":9943,"friends_count":46,"listed_count":58,"favourites_count":665,"statuses_count":6574,"created_at":"Tue Apr 10 16:07:35 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460170631741325312\/ugYSzIh0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460170631741325312\/ugYSzIh0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550229852\/1398549200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":144,"favorite_count":143,"entities":{"hashtags":[{"text":"ValentinoRossi","indices":[19,34]},{"text":"iostoconVale","indices":[36,49]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663645235654885376,"id_str":"663645235654885376","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","url":"https:\/\/t.co\/ZhIQcB5uoc","display_url":"pic.twitter.com\/ZhIQcB5uoc","expanded_url":"http:\/\/twitter.com\/SupportVale_46\/status\/663645236883795969\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"},"large":{"w":600,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663645235654885376,"id_str":"663645235654885376","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","url":"https:\/\/t.co\/ZhIQcB5uoc","display_url":"pic.twitter.com\/ZhIQcB5uoc","expanded_url":"http:\/\/twitter.com\/SupportVale_46\/status\/663645236883795969\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"},"large":{"w":600,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ValentinoRossi","indices":[39,54]},{"text":"iostoconVale","indices":[56,69]}],"urls":[],"user_mentions":[{"screen_name":"SupportVale_46","name":"SupportVale46","id":550229852,"id_str":"550229852","indices":[3,18]}],"symbols":[],"media":[{"id":663645235654885376,"id_str":"663645235654885376","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","url":"https:\/\/t.co\/ZhIQcB5uoc","display_url":"pic.twitter.com\/ZhIQcB5uoc","expanded_url":"http:\/\/twitter.com\/SupportVale_46\/status\/663645236883795969\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"},"large":{"w":600,"h":512,"resize":"fit"}},"source_status_id":663645236883795969,"source_status_id_str":"663645236883795969","source_user_id":550229852,"source_user_id_str":"550229852"}]},"extended_entities":{"media":[{"id":663645235654885376,"id_str":"663645235654885376","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW902AXAAAWEyP.jpg","url":"https:\/\/t.co\/ZhIQcB5uoc","display_url":"pic.twitter.com\/ZhIQcB5uoc","expanded_url":"http:\/\/twitter.com\/SupportVale_46\/status\/663645236883795969\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"},"large":{"w":600,"h":512,"resize":"fit"}},"source_status_id":663645236883795969,"source_status_id_str":"663645236883795969","source_user_id":550229852,"source_user_id_str":"550229852"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148186447876,"id_str":"663728148186447876","text":"How to Play Your Credit Cards: , https:\/\/t.co\/2EpC4VVdKV, https:\/\/t.co\/S2dtH7zB1r, Consumer Credit Counseling in US\u2026 https:\/\/t.co\/2EpC4VVdKV","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2760566104,"id_str":"2760566104","name":"Psychic California","screen_name":"ahrpornowe","location":"California, USA","url":"http:\/\/dai.ly\/x2dzx1v","description":"Psychic Readings in California call (888) 908-4937 http:\/\/t.co\/mdw4nGCcFE https:\/\/t.co\/RbvkgI9JtN http:\/\/t.co\/DFsvDl206u http:\/\/t.co\/F6p5np8WkS","protected":false,"verified":false,"followers_count":12,"friends_count":27,"listed_count":0,"favourites_count":1,"statuses_count":34578,"created_at":"Wed Sep 03 17:45:07 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2EpC4VVdKV","expanded_url":"http:\/\/panamayellowpages.net\/cccs\/usvirginislands\/?p=3954","display_url":"panamayellowpages.net\/cccs\/usvirgini\u2026","indices":[33,56]},{"url":"https:\/\/t.co\/S2dtH7zB1r","expanded_url":"http:\/\/panamayellowpages.net\/cccs\/usvirginislands\/?feed=rss2","display_url":"panamayellowpages.net\/cccs\/usvirgini\u2026","indices":[58,81]},{"url":"https:\/\/t.co\/2EpC4VVdKV","expanded_url":"http:\/\/panamayellowpages.net\/cccs\/usvirginislands\/?p=3954","display_url":"panamayellowpages.net\/cccs\/usvirgini\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096657"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148203204608,"id_str":"663728148203204608","text":"Can you guess the most popular board game sold on @eBay_UK? Hint via @ToyNewsOnline: https:\/\/t.co\/wNoXdYQ30d","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13014082,"id_str":"13014082","name":"eBay Newsroom","screen_name":"eBayNewsroom","location":"San Francisco Bay Area","url":"http:\/\/www.ebayinc.com\/","description":"Official feed for news, stories and announcements about eBay. Customer Service: @AskeBay","protected":false,"verified":true,"followers_count":78584,"friends_count":1329,"listed_count":802,"favourites_count":2641,"statuses_count":13370,"created_at":"Sun Feb 03 17:12:42 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/812992274\/feb93a6a494ae55942760600be78be15.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/812992274\/feb93a6a494ae55942760600be78be15.jpeg","profile_background_tile":false,"profile_link_color":"016085","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFEDBC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614836341570863104\/E9XjJiQb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614836341570863104\/E9XjJiQb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13014082\/1441297116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wNoXdYQ30d","expanded_url":"http:\/\/bit.ly\/1Nxn9E2","display_url":"bit.ly\/1Nxn9E2","indices":[85,108]}],"user_mentions":[{"screen_name":"eBay_UK","name":"eBay.co.uk","id":33563975,"id_str":"33563975","indices":[50,58]},{"screen_name":"ToyNewsOnline","name":"ToyNewsOnline","id":22641850,"id_str":"22641850","indices":[69,83]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096661"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148215762948,"id_str":"663728148215762948","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3197788094,"id_str":"3197788094","name":"Peregrin Leslie","screen_name":"hykofolozul","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":169,"friends_count":388,"listed_count":3,"favourites_count":13672,"statuses_count":14628,"created_at":"Sat May 16 18:36:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645661027330326534\/got3gNJy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645661027330326534\/got3gNJy_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":791,"favorite_count":480,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096664"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211593216,"id_str":"663728148211593216","text":"@yuya510yuya \n\u304b\u308f\u3044\u3044\u2665\n\u9811\u5f35\u308c\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663702706280792064,"in_reply_to_status_id_str":"663702706280792064","in_reply_to_user_id":3080455747,"in_reply_to_user_id_str":"3080455747","in_reply_to_screen_name":"yuya510yuya","user":{"id":2933176406,"id_str":"2933176406","name":"\u5409\u7530 \u73b2\u592e\u83dc\u2661JYJ\uc0ac\ub791\ud574","screen_name":"J2YNALCBXIFEgnR","location":"\u5e0c\u671b\u2192\u97d3\u56fd","url":null,"description":"\u829d\u4fdd\u80b2\u5712\u2192\u56fd\u6771\u5c0f\u2192\u56fd\u4e2d\u2192\u5c0f\u5c71\u5357\uff11\u5e74G2\u274099line\u2740JYJ&\u6771\u65b9\u795e\u8d77\uff15\u4eba\u304a\u308b\u307a\u3093\u2740\u5c0f\u5357\u306e\u4eba\u3068\u304bK-POP\u30da\u30f3\u3068\u304bfollow\u3088\u308d\u3057\u304f\u3067\u3059\u2740\u5143\u540c\u3058\u5b66\u6821\u306e\u4eba\u3068\u5c0f\u5357\u306e\u4eba\u3068K\uff70POP\u30da\u30f3\u306e\u4eba\u306e\u30d5\u30a9\u30ed\u30d0\u306f100\uff05\u2740 \ub808\uc624\ub098 \uc5d0\ub294 \ub3d9\ubc29\uc2e0\uae30\uc640JYJ\ubc16\uc5d0 \uc5c6\ub2e4\u2740","protected":false,"verified":false,"followers_count":443,"friends_count":419,"listed_count":0,"favourites_count":7044,"statuses_count":3912,"created_at":"Wed Dec 17 07:37:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661466746872688640\/Tq8pL0wq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661466746872688640\/Tq8pL0wq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933176406\/1435938994","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuya510yuya","name":"\u3086\u30fc\u3084","id":3080455747,"id_str":"3080455747","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096663"} +{"delete":{"status":{"id":661166909052682240,"id_str":"661166909052682240","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080096800"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148186443778,"id_str":"663728148186443778","text":"@nomain050 \u3147\u3131\u3139\u3147","source":"\u003ca href=\"http:\/\/azurea.info\/\" rel=\"nofollow\"\u003eAzurea for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727790676508672,"in_reply_to_status_id_str":"663727790676508672","in_reply_to_user_id":2338703347,"in_reply_to_user_id_str":"2338703347","in_reply_to_screen_name":"nomain050","user":{"id":210494776,"id_str":"210494776","name":"\uc0ac\ud0a4","screen_name":"G_HeartYR","location":null,"url":null,"description":"\uc724\ud558\/\ub9c8\ub9c8\ubb34\/\ub7ec\ube0c\ub77c\uc774\ube0c\/\uc544\uc774\ub9c8\uc2a4\/\ub9c8\ube44\ub178\uae30 \ub4f1...+ \u767e\u5408","protected":false,"verified":false,"followers_count":865,"friends_count":360,"listed_count":22,"favourites_count":6083,"statuses_count":11309,"created_at":"Sun Oct 31 15:32:41 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542230143612121088\/inw4hxcP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542230143612121088\/inw4hxcP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210494776\/1416718636","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nomain050","name":"[\ucee4\ubbf8\uc158] \ub9c8\uc694\ub124\uc988","id":2338703347,"id_str":"2338703347","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080096657"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211634176,"id_str":"663728148211634176","text":"@harang_for_nick \uadf8\ub807\uc9c0\ub9cc \uc774\uac83\ub9cc\ud07c\uc740 \uc544\ub2c8\ub418\uc624!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728030573989889,"in_reply_to_status_id_str":"663728030573989889","in_reply_to_user_id":4162655114,"in_reply_to_user_id_str":"4162655114","in_reply_to_screen_name":"harang_for_nick","user":{"id":4159873332,"id_str":"4159873332","name":"Rick","screen_name":"For_Nickchya","location":null,"url":null,"description":"\uadf8\ub300 \uacc1\uc5d0 \ud56d\uc0c1 \uc11c \uc788\ub2e4\uc624.\n\ud798\ub4e4\ub2e4\uba74 \uae30\ub300\uc8fc\uaca0\uc18c?\n\ubd80\ub514 \uc544\ud504\uace0 \uc2ac\ud37c\ud558\uc9c0 \uc54a\uc558\uc73c\uba74 \uc88b\uaca0\uc18c.\n\ub0b4 \uc791\uc740 \ud76c\ub9dd\uc774\uc624 \uc544\uac00\uc528\u3161","protected":false,"verified":false,"followers_count":2,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":32,"created_at":"Sat Nov 07 18:47:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663068203203989504\/1GE3sQhi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663068203203989504\/1GE3sQhi_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"harang_for_nick","name":"\uc774 \ud558\ub791","id":4162655114,"id_str":"4162655114","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148207398913,"id_str":"663728148207398913","text":"@k_suezou \u5168\u9762\u9ad8\u89e3\u50cf\u5ea6\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff08\u5618\uff09","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727054022578176,"in_reply_to_status_id_str":"663727054022578176","in_reply_to_user_id":15474002,"in_reply_to_user_id_str":"15474002","in_reply_to_screen_name":"k_suezou","user":{"id":270460813,"id_str":"270460813","name":"\u304b\u305f\u305b\uff20\u3044\u3044\u306d\uff01\u30de\u30f3","screen_name":"katayama_765_72","location":"JP - TOKYO","url":"http:\/\/twpf.jp\/katayama_765_72","description":"\uff5e\u8eca\u30fb\u30d0\u30a4\u30af\u304c\u597d\u304d\u306a\u305d\u3053\u3089\u8fba\u306b\u3044\u305d\u3046\u306a\u4eba\u3067\u3059\u3002\u8eca\u4ee5\u5916\u306f\u30a2\u30a4\u30de\u30b9\u304c\uff08\u8cb4\u97f3\u30fb\u3084\u3088\u3044\uff09\u597d\u304d\u3067\u30b4\u30b6\u30a4\u30de\u30b9\u3002\u30b3\u30b9\u30d7\u30ec\u5199\u771f\u591a\u3081\u306b\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":217,"friends_count":255,"listed_count":17,"favourites_count":5542,"statuses_count":6818,"created_at":"Tue Mar 22 17:21:18 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663353618020495361\/wc7nFxOP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663353618020495361\/wc7nFxOP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/270460813\/1428596609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"k_suezou","name":"\uff2b\u8f14","id":15474002,"id_str":"15474002","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096662"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148186427392,"id_str":"663728148186427392","text":"Come on Barbie, let's go party. https:\/\/t.co\/9d2hJLxiHM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3160563146,"id_str":"3160563146","name":"ROSA Maya","screen_name":"ROSA5_2Maya","location":"Norwalk CA","url":"http:\/\/picttwitter.com\/How-women-are-training-for-giving-the-best-oral-sex","description":"I only rap caucasionally","protected":false,"verified":false,"followers_count":12858,"friends_count":7572,"listed_count":12,"favourites_count":674,"statuses_count":17882,"created_at":"Fri Apr 17 05:29:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589015694022324225\/tyvAiWyX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589015694022324225\/tyvAiWyX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3160563146\/1432182122","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728137759395842,"id_str":"663728137759395842","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOYaUkAIuclv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOYaUkAIuclv.jpg","url":"https:\/\/t.co\/9d2hJLxiHM","display_url":"pic.twitter.com\/9d2hJLxiHM","expanded_url":"http:\/\/twitter.com\/ROSA5_2Maya\/status\/663728148186427392\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728137759395842,"id_str":"663728137759395842","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOYaUkAIuclv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOYaUkAIuclv.jpg","url":"https:\/\/t.co\/9d2hJLxiHM","display_url":"pic.twitter.com\/9d2hJLxiHM","expanded_url":"http:\/\/twitter.com\/ROSA5_2Maya\/status\/663728148186427392\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096657"} +{"delete":{"status":{"id":477973505414144000,"id_str":"477973505414144000","user_id":2466335372,"user_id_str":"2466335372"},"timestamp_ms":"1447080096875"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148215758848,"id_str":"663728148215758848","text":"@_DreamHayu \u3044\u3051\u3081\u3093\u3093\u3093\u3093\u0b18(\u0a6d\u02ca\ua4b3\u200b\u02cb)\u0a6d\u2727","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663697423903002624,"in_reply_to_status_id_str":"663697423903002624","in_reply_to_user_id":2880311618,"in_reply_to_user_id_str":"2880311618","in_reply_to_screen_name":"_DreamHayu","user":{"id":2892262098,"id_str":"2892262098","name":"\u98a8\u5b50@\u6c60\u30cf\u30ed31\u65e5","screen_name":"fuko_kosu","location":null,"url":"http:\/\/sblog.ameba.jp\/ucs\/skinPreview.form?skinCode=pf_cats","description":"\u5e38\u306b\u5bdd\u3066\u308bJK( \u00a8\u032e )\u521d\u5fc3\u8005\u3053\u3059\u3077\u308c\u3044\u3084\u30fc\u3067\u3059\u0669( \u2022\u0300\u03c9\u2022\u0301 )\ufeed\u3010\u30a2\u30fc\u30ab\u30a4\u30d6\u3011385971 \u3010cure\u3011375242 \u672c\u57a2\u2192@__fu_fuko__ \u30d5\u30a9\u30ed\u30ea\u30d7\u304a\u6c17\u8efd\u306b\uff01(\u30d5\u30a9\u30ed\u30d0\u306f\u4ef2\u3044\u3044\u4eba\u3060\u3051\u3067\u3059\u3002\u3059\u307f\u307e\u305b\u3093\u2026)\u306a\u306b\u304b\u3042\u308a\u307e\u3057\u305f\u3089DM\u304b\u30b3\u30c1\u30e9\u306b\u2192fuko.cos2@gmail.com","protected":false,"verified":false,"followers_count":155,"friends_count":37,"listed_count":3,"favourites_count":823,"statuses_count":1932,"created_at":"Thu Nov 06 15:17:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634332441377796097\/HkvBlzZm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634332441377796097\/HkvBlzZm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2892262098\/1446955996","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_DreamHayu","name":"\u5922\u54b2\u306f\u3086","id":2880311618,"id_str":"2880311618","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096664"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148199153664,"id_str":"663728148199153664","text":"@SmiteDatamining You guys should change the image links to go straight to Lightbox instead of the image page then Lightbox. Lots o' clicks","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2723528222,"in_reply_to_user_id_str":"2723528222","in_reply_to_screen_name":"SmiteDatamining","user":{"id":2920915227,"id_str":"2920915227","name":"disofleshpot","screen_name":"discofleshpot","location":"The beginning of the end.","url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":48,"listed_count":0,"favourites_count":28,"statuses_count":51,"created_at":"Sun Dec 14 05:37:30 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653342060569755648\/jOeMTebw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653342060569755648\/jOeMTebw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2920915227\/1444603895","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SmiteDatamining","name":"Smite Datamining","id":2723528222,"id_str":"2723528222","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096660"} +{"delete":{"status":{"id":629509959189856258,"id_str":"629509959189856258","user_id":2863181395,"user_id_str":"2863181395"},"timestamp_ms":"1447080096938"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148215783424,"id_str":"663728148215783424","text":"\u6c7a\u6226\uff01\u30c7\u30e5\u30d0\u30eb\n\u260511\/9(12:00)\uff5e11\/10(11:59)\u671f\u9593\u9650\u5b9a\u2605\n\u96e3\u6613\u5ea6\u30de\u30b9\u30bf\u30fc\u30af\u30ea\u30a2\u3067\u624b\u914d\u66f8\u5165\u624b\u78ba\u5b9a\uff01\nhttps:\/\/t.co\/t9sMxXtPst\u3000#\u30c8\u30ec\u30af\u30eb https:\/\/t.co\/j4TerZKhoQ","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4080229874,"id_str":"4080229874","name":"tomo","screen_name":"aut566","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":47,"created_at":"Sat Oct 31 13:48:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30c8\u30ec\u30af\u30eb","indices":[83,88]}],"urls":[{"url":"https:\/\/t.co\/t9sMxXtPst","expanded_url":"http:\/\/wpp.jp\/optw\/","display_url":"wpp.jp\/optw\/","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663728148119339009,"id_str":"663728148119339009","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO_AUwAEvahc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO_AUwAEvahc.jpg","url":"https:\/\/t.co\/j4TerZKhoQ","display_url":"pic.twitter.com\/j4TerZKhoQ","expanded_url":"http:\/\/twitter.com\/aut566\/status\/663728148215783424\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":240,"resize":"fit"},"small":{"w":340,"h":163,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728148119339009,"id_str":"663728148119339009","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO_AUwAEvahc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO_AUwAEvahc.jpg","url":"https:\/\/t.co\/j4TerZKhoQ","display_url":"pic.twitter.com\/j4TerZKhoQ","expanded_url":"http:\/\/twitter.com\/aut566\/status\/663728148215783424\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":240,"resize":"fit"},"small":{"w":340,"h":163,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096664"} +{"delete":{"status":{"id":663721009506316289,"id_str":"663721009506316289","user_id":3091953485,"user_id_str":"3091953485"},"timestamp_ms":"1447080096922"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148186468352,"id_str":"663728148186468352","text":"@ntaisei1109 @besdollnankatu \u304a\u307e\u3048\u3089\u3084\u3081\u3066\u304f\u308c\ud83d\ude33\ud83d\ude33\u7b11 https:\/\/t.co\/pC9rLMOScX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724440790790144,"in_reply_to_status_id_str":"663724440790790144","in_reply_to_user_id":2344841114,"in_reply_to_user_id_str":"2344841114","in_reply_to_screen_name":"ntaisei1109","user":{"id":2476929306,"id_str":"2476929306","name":"\u77f3\u585a\u512a\u592a\u6717","screen_name":"onepiecebaseba9","location":null,"url":null,"description":"2014 7\/4 \u5ca9\u4e0b\u674f \u4e09\u4ee3\u76eeJSoulBrothers. GENERATIONS.","protected":false,"verified":false,"followers_count":336,"friends_count":327,"listed_count":0,"favourites_count":1544,"statuses_count":1325,"created_at":"Sun May 04 14:01:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651031301701537793\/Rbyn7Gu8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651031301701537793\/Rbyn7Gu8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2476929306\/1443943997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ntaisei1109","name":"\u897f\u5ca1\u5927\u305b\u3044","id":2344841114,"id_str":"2344841114","indices":[0,12]},{"screen_name":"besdollnankatu","name":"\u6a2a\u7530\u8b19","id":2506489242,"id_str":"2506489242","indices":[13,28]}],"symbols":[],"media":[{"id":663728138816372737,"id_str":"663728138816372737","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOcWUwAESy9I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOcWUwAESy9I.jpg","url":"https:\/\/t.co\/pC9rLMOScX","display_url":"pic.twitter.com\/pC9rLMOScX","expanded_url":"http:\/\/twitter.com\/onepiecebaseba9\/status\/663728148186468352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728138816372737,"id_str":"663728138816372737","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOcWUwAESy9I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOcWUwAESy9I.jpg","url":"https:\/\/t.co\/pC9rLMOScX","display_url":"pic.twitter.com\/pC9rLMOScX","expanded_url":"http:\/\/twitter.com\/onepiecebaseba9\/status\/663728148186468352\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080096657"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148224192513,"id_str":"663728148224192513","text":"Wada commission wants Russia\u00a0ban https:\/\/t.co\/4HfVV9ZGoq https:\/\/t.co\/29kHMkeZLr","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2557273933,"id_str":"2557273933","name":"CSR PRODUCTIONS","screen_name":"CSRPRODUCTIONS1","location":null,"url":"http:\/\/www.csrentertainment.com","description":"CSR PRODUCTIONS Entertainment Group, Inc. http:\/\/www.csrentertainment.com #csrproductions, #csrentertainment, #bliips, @chris_s_rogers","protected":false,"verified":false,"followers_count":3257,"friends_count":2700,"listed_count":23,"favourites_count":8,"statuses_count":15362,"created_at":"Mon Jun 09 17:45:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476077470282555392\/JJN93OCl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476077470282555392\/JJN93OCl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2557273933\/1446651233","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4HfVV9ZGoq","expanded_url":"http:\/\/csrproductions.com\/wada-commission-wants-russia-ban\/","display_url":"csrproductions.com\/wada-commissio\u2026","indices":[33,56]}],"user_mentions":[],"symbols":[],"media":[{"id":663728146772979712,"id_str":"663728146772979712","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO5_U8AA5dvn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO5_U8AA5dvn.jpg","url":"https:\/\/t.co\/29kHMkeZLr","display_url":"pic.twitter.com\/29kHMkeZLr","expanded_url":"http:\/\/twitter.com\/CSRPRODUCTIONS1\/status\/663728148224192513\/photo\/1","type":"photo","sizes":{"large":{"w":624,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728146772979712,"id_str":"663728146772979712","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO5_U8AA5dvn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO5_U8AA5dvn.jpg","url":"https:\/\/t.co\/29kHMkeZLr","display_url":"pic.twitter.com\/29kHMkeZLr","expanded_url":"http:\/\/twitter.com\/CSRPRODUCTIONS1\/status\/663728148224192513\/photo\/1","type":"photo","sizes":{"large":{"w":624,"h":351,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096666"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148224299008,"id_str":"663728148224299008","text":"RT @9GAG: College students' struggles every day...\nMore: https:\/\/t.co\/eLqwacyAt7 https:\/\/t.co\/AaSKlkcNkX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":72047928,"id_str":"72047928","name":"salad queen","screen_name":"zoeskimo","location":"hogwarts","url":"http:\/\/indian-moonlight.tumblr.com","description":"mermaid \u203a twenty \u203a english student \u203a gryffindor \u203a life based on tv shows \u203a finnick odair is the love of my life. \u2661\u263e\u221e\u2746","protected":false,"verified":false,"followers_count":686,"friends_count":489,"listed_count":45,"favourites_count":6574,"statuses_count":42043,"created_at":"Sun Sep 06 14:45:12 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448157494225825792\/x8r-hAQP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448157494225825792\/x8r-hAQP.jpeg","profile_background_tile":false,"profile_link_color":"D6D3D3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"B85484","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658973723505086464\/6TJ57tzT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658973723505086464\/6TJ57tzT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/72047928\/1427976782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 06:00:29 +0000 2015","id":662509839227199488,"id_str":"662509839227199488","text":"College students' struggles every day...\nMore: https:\/\/t.co\/eLqwacyAt7 https:\/\/t.co\/AaSKlkcNkX","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16548023,"id_str":"16548023","name":"9GAG","screen_name":"9GAG","location":"Universe","url":"http:\/\/9gag.com","description":"Officially 9GAG. Follow us for LOL. get our app on http:\/\/9gag.com\/mobile","protected":false,"verified":false,"followers_count":5692270,"friends_count":11,"listed_count":8840,"favourites_count":1091,"statuses_count":28094,"created_at":"Wed Oct 01 18:46:32 +0000 2008","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663470724\/wcc0dvt5nfi4k8j5twsb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663470724\/wcc0dvt5nfi4k8j5twsb.jpeg","profile_background_tile":true,"profile_link_color":"0099FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"111111","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616147175987265536\/EQm39fW7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616147175987265536\/EQm39fW7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16548023\/1441105345","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4559,"favorite_count":3649,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eLqwacyAt7","expanded_url":"http:\/\/9gag.com\/gag\/aKBXNKb?ref=tp","display_url":"9gag.com\/gag\/aKBXNKb?re\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":662509838681804800,"id_str":"662509838681804800","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":625,"h":478,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662509838681804800,"id_str":"662509838681804800","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":625,"h":478,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"}}},{"id":662509836043722752,"id_str":"662509836043722752","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L42WoAANS_C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L42WoAANS_C.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"medium":{"w":588,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"large":{"w":588,"h":453,"resize":"fit"}}},{"id":662509836689653760,"id_str":"662509836689653760","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L7QWwAAas2r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L7QWwAAas2r.png","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":482,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":273,"resize":"fit"},"large":{"w":625,"h":503,"resize":"fit"}}},{"id":662509837448712192,"id_str":"662509837448712192","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L-FVEAAnhya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L-FVEAAnhya.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":625,"h":625,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eLqwacyAt7","expanded_url":"http:\/\/9gag.com\/gag\/aKBXNKb?ref=tp","display_url":"9gag.com\/gag\/aKBXNKb?re\u2026","indices":[57,80]}],"user_mentions":[{"screen_name":"9GAG","name":"9GAG","id":16548023,"id_str":"16548023","indices":[3,8]}],"symbols":[],"media":[{"id":662509838681804800,"id_str":"662509838681804800","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":625,"h":478,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"}},"source_status_id":662509839227199488,"source_status_id_str":"662509839227199488","source_user_id":16548023,"source_user_id_str":"16548023"}]},"extended_entities":{"media":[{"id":662509838681804800,"id_str":"662509838681804800","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1MCrUkAA8Xib.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":260,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":625,"h":478,"resize":"fit"},"medium":{"w":600,"h":458,"resize":"fit"}},"source_status_id":662509839227199488,"source_status_id_str":"662509839227199488","source_user_id":16548023,"source_user_id_str":"16548023"},{"id":662509836043722752,"id_str":"662509836043722752","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L42WoAANS_C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L42WoAANS_C.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"medium":{"w":588,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":261,"resize":"fit"},"large":{"w":588,"h":453,"resize":"fit"}},"source_status_id":662509839227199488,"source_status_id_str":"662509839227199488","source_user_id":16548023,"source_user_id_str":"16548023"},{"id":662509836689653760,"id_str":"662509836689653760","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L7QWwAAas2r.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L7QWwAAas2r.png","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":482,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":273,"resize":"fit"},"large":{"w":625,"h":503,"resize":"fit"}},"source_status_id":662509839227199488,"source_status_id_str":"662509839227199488","source_user_id":16548023,"source_user_id_str":"16548023"},{"id":662509837448712192,"id_str":"662509837448712192","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTG1L-FVEAAnhya.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTG1L-FVEAAnhya.jpg","url":"https:\/\/t.co\/AaSKlkcNkX","display_url":"pic.twitter.com\/AaSKlkcNkX","expanded_url":"http:\/\/twitter.com\/9GAG\/status\/662509839227199488\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":625,"h":625,"resize":"fit"}},"source_status_id":662509839227199488,"source_status_id_str":"662509839227199488","source_user_id":16548023,"source_user_id_str":"16548023"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080096666"} +{"delete":{"status":{"id":662798199711735808,"id_str":"662798199711735808","user_id":1490560868,"user_id_str":"1490560868"},"timestamp_ms":"1447080097021"}} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148211740673,"id_str":"663728148211740673","text":"@hwasadel @CALofRivia https:\/\/t.co\/RAiRU5w6TR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726432175177729,"in_reply_to_status_id_str":"663726432175177729","in_reply_to_user_id":2412316588,"in_reply_to_user_id_str":"2412316588","in_reply_to_screen_name":"hwasadel","user":{"id":538292249,"id_str":"538292249","name":"B L A C K","screen_name":"X_X7SoOnX_X","location":"Yarnham City","url":"http:\/\/www.tvshowtime.com\/en\/user\/3058823\/profile","description":"You'll see me in front of the TV all the time playing #VideoGames and watching #TvShows & #Animes .. | #BlackOps3 | I like both #PS4 & #XboxOne","protected":false,"verified":false,"followers_count":707,"friends_count":288,"listed_count":10,"favourites_count":1713,"statuses_count":19556,"created_at":"Tue Mar 27 16:28:08 +0000 2012","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655730579845976065\/_rMNy_n1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655730579845976065\/_rMNy_n1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/538292249\/1445173329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hwasadel","name":"Darkadel","id":2412316588,"id_str":"2412316588","indices":[0,9]},{"screen_name":"CALofRivia","name":"Cal Black","id":817259354,"id_str":"817259354","indices":[10,21]}],"symbols":[],"media":[{"id":663728125927292928,"id_str":"663728125927292928","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNsVVAAAHDeg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNsVVAAAHDeg.jpg","url":"https:\/\/t.co\/RAiRU5w6TR","display_url":"pic.twitter.com\/RAiRU5w6TR","expanded_url":"http:\/\/twitter.com\/X_X7SoOnX_X\/status\/663728148211740673\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728125927292928,"id_str":"663728125927292928","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJNsVVAAAHDeg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJNsVVAAAHDeg.jpg","url":"https:\/\/t.co\/RAiRU5w6TR","display_url":"pic.twitter.com\/RAiRU5w6TR","expanded_url":"http:\/\/twitter.com\/X_X7SoOnX_X\/status\/663728148211740673\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080096663"} +{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148220129280,"id_str":"663728148220129280","text":"\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u062d\u0645 \u0627\u0645\u064a #\u0641\u0648\u0632\u064a\u0629_\u0627\u0644\u062e\u0645\u064a\u0633 \u0648\u0627\u063a\u0641\u0631 \u0644\u0647\u0627 \u0648\u0627\u062c\u0645\u0639\u0646\u0627 \u0645\u0639\u0647\u0627 \u0641\u064a \u0641\u0631\u062f\u0648\u0633\u0643 \u0627\u0644\u0627\u0639\u0644\u0649 \u0648\u062c\u0645\u064a\u0639 \u0627\u0645\u0648\u0627\u062a \u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646 \u2764\ufe0f https:\/\/t.co\/azEJ6yUbac","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":227843621,"id_str":"227843621","name":"\u0641\u0627\u062f\u064a \u0639\u0628\u062f\u0627\u0644\u0639\u0632\u064a\u0632\u0627\u0644\u0637\u064a\u0627\u0634","screen_name":"FadiAlTayash","location":"Saudi Arabia .. Al-Riyadh","url":"http:\/\/ask.fm\/ftayash7","description":".. \u064a\u0627 \u0631\u0628 \u0643\u0645\u0627 \u062c\u0639\u0644\u062a \u0627\u0644\u062c\u0646\u0629 \u062a\u062d\u062a \u0642\u062f\u0645 \u0627\u0645\u064a \u0641\u0627\u062c\u0639\u0644 \u0627\u0644\u062c\u0646\u0629 \u0645\u0633\u0643\u0646\u0647\u0627 \u0648\u0627\u062c\u0645\u0639\u0646\u0627 \u0628\u0647\u0627 \u0641\u064a \u062c\u0646\u062a\u0643 \n\u2665 #AlHilal #RealMadrid \ninstagram : FadiAlTayash","protected":false,"verified":false,"followers_count":4172,"friends_count":274,"listed_count":17,"favourites_count":29,"statuses_count":11085,"created_at":"Sat Dec 18 00:01:56 +0000 2010","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"A300A3","profile_sidebar_border_color":"B500B5","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"9E009E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592124417850757120\/jvc2osrW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592124417850757120\/jvc2osrW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/227843621\/1367368349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0641\u0648\u0632\u064a\u0629_\u0627\u0644\u062e\u0645\u064a\u0633","indices":[15,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728135532322816,"id_str":"663728135532322816","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOQHWIAApN1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOQHWIAApN1d.jpg","url":"https:\/\/t.co\/azEJ6yUbac","display_url":"pic.twitter.com\/azEJ6yUbac","expanded_url":"http:\/\/twitter.com\/FadiAlTayash\/status\/663728148220129280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":113,"resize":"fit"},"medium":{"w":600,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":214,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728135532322816,"id_str":"663728135532322816","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOQHWIAApN1d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOQHWIAApN1d.jpg","url":"https:\/\/t.co\/azEJ6yUbac","display_url":"pic.twitter.com\/azEJ6yUbac","expanded_url":"http:\/\/twitter.com\/FadiAlTayash\/status\/663728148220129280\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":113,"resize":"fit"},"medium":{"w":600,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":214,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080096665"} +{"delete":{"status":{"id":596796782941773824,"id_str":"596796782941773824","user_id":43144730,"user_id_str":"43144730"},"timestamp_ms":"1447080097473"}} +{"delete":{"status":{"id":659775423518220288,"id_str":"659775423518220288","user_id":3246805408,"user_id_str":"3246805408"},"timestamp_ms":"1447080097584"}} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152385093636,"id_str":"663728152385093636","text":"DJFPrepublic: kathnielcecaina: supersharm26: AyalaXander: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: kbdpftcris8: lepitennicell4: #PushAward\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3835224492,"id_str":"3835224492","name":"John Estrada","screen_name":"ImJohnEstrada","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":3,"listed_count":7,"favourites_count":0,"statuses_count":19039,"created_at":"Fri Oct 09 10:17:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656089128409305088\/PZv8IQfX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656089128409305088\/PZv8IQfX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3835224492\/1445258825","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAward","indices":[129,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080097658"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397631488,"id_str":"663728152397631488","text":"RT @Cocainabrasil_: O que \u00e9 a cocaina que destroi nariz comparado a voce que destroi meu cora\u00e7\u00e3o todos os dias.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3733704556,"id_str":"3733704556","name":"Isabella","screen_name":"isagomesff","location":null,"url":"http:\/\/instagram.com\/isagomef","description":null,"protected":false,"verified":false,"followers_count":139,"friends_count":115,"listed_count":1,"favourites_count":459,"statuses_count":1447,"created_at":"Tue Sep 22 00:53:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663111449309536257\/jyTZ2gjR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663111449309536257\/jyTZ2gjR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3733704556\/1442883617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 05:16:25 +0000 2015","id":662136364792721408,"id_str":"662136364792721408","text":"O que \u00e9 a cocaina que destroi nariz comparado a voce que destroi meu cora\u00e7\u00e3o todos os dias.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3091960774,"id_str":"3091960774","name":"Cocaina Brasil","screen_name":"Cocainabrasil_","location":"no pino ","url":null,"description":"Coca\u00edna hoje, coca\u00edna amanh\u00e3, coca\u00edna sempre.","protected":false,"verified":false,"followers_count":4581,"friends_count":6,"listed_count":3,"favourites_count":492,"statuses_count":1412,"created_at":"Sun Mar 15 05:40:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618048316018978816\/B6xKxISN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618048316018978816\/B6xKxISN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3091960774\/1426994772","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":238,"favorite_count":121,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cocainabrasil_","name":"Cocaina Brasil","id":3091960774,"id_str":"3091960774","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152410243072,"id_str":"663728152410243072","text":"RT @relatojovens: Talvez eu n\u00e3o chore, mas d\u00f3i.\nTalvez eu n\u00e3o diga, mas sinto.\nTalvez eu n\u00e3o demonstre, mas me importo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":613776344,"id_str":"613776344","name":"Carol Ribeiro","screen_name":"Carolinnysilva2","location":"Divin\u00f3polis -MG","url":"http:\/\/Instagram.com\/carolribeiro02","description":"For you all my love","protected":false,"verified":false,"followers_count":181,"friends_count":214,"listed_count":0,"favourites_count":1252,"statuses_count":2236,"created_at":"Wed Jun 20 21:37:00 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660631050540982272\/jjXcqvCZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660631050540982272\/jjXcqvCZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/613776344\/1446406752","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:00:13 +0000 2015","id":663672433920991233,"id_str":"663672433920991233","text":"Talvez eu n\u00e3o chore, mas d\u00f3i.\nTalvez eu n\u00e3o diga, mas sinto.\nTalvez eu n\u00e3o demonstre, mas me importo.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305192408,"id_str":"305192408","name":"Positividade \u263c","screen_name":"relatojovens","location":null,"url":null,"description":"\u201cQue o vento leve todas as coisas negativas.\u201d \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nContato para publicidade: contatoigorlewis@gmail.com","protected":false,"verified":false,"followers_count":1319739,"friends_count":69,"listed_count":330,"favourites_count":1037,"statuses_count":39128,"created_at":"Wed May 25 20:08:19 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000135907451\/zIBHLIT-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000135907451\/zIBHLIT-.jpeg","profile_background_tile":false,"profile_link_color":"1424DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633293491825721345\/5T7yjJqy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633293491825721345\/5T7yjJqy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/305192408\/1439823961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":316,"favorite_count":194,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"relatojovens","name":"Positividade \u263c","id":305192408,"id_str":"305192408","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080097664"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152406073344,"id_str":"663728152406073344","text":"Cuarenta y uno #FansAwards2015 #ElBombon Gonza Gravano","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3517973535,"id_str":"3517973535","name":"2 Dias\u2661","screen_name":"ProudOfGravanoo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":165,"friends_count":84,"listed_count":0,"favourites_count":588,"statuses_count":1519,"created_at":"Wed Sep 02 00:54:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659138959776350208\/pHq_Rh3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659138959776350208\/pHq_Rh3-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3517973535\/1441156669","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[15,30]},{"text":"ElBombon","indices":[31,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097663"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397656064,"id_str":"663728152397656064","text":"RT @_mahmoudd: \u0631\u0628\u0646\u0627 \u0647\u0648 \u0627\u0644\u0639\u0627\u0631\u0641 \u0627\u062d\u0646\u0627 \u0646\u0633\u062a\u062d\u0642 \u0627\u064a\u0629 \u0648 \u0645\u0646\u0633\u062a\u062d\u0642\u0634 \u0627\u064a\u0629... \n\u0633\u064a\u0628\u0648\u0647\u0627 \u0639\u0644\u064a \u0631\u0628\u0646\u0627 \u0634\u0648\u064a\u0629\u261d\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1879494787,"id_str":"1879494787","name":"Noha ghoraba","screen_name":"NohaGh95","location":"Cairo, Egypt","url":null,"description":null,"protected":false,"verified":false,"followers_count":472,"friends_count":901,"listed_count":0,"favourites_count":159,"statuses_count":824,"created_at":"Wed Sep 18 13:23:00 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699016333570048\/4y7pb5N3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699016333570048\/4y7pb5N3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1879494787\/1446578270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Aug 15 13:26:34 +0000 2015","id":632543907319009280,"id_str":"632543907319009280","text":"\u0631\u0628\u0646\u0627 \u0647\u0648 \u0627\u0644\u0639\u0627\u0631\u0641 \u0627\u062d\u0646\u0627 \u0646\u0633\u062a\u062d\u0642 \u0627\u064a\u0629 \u0648 \u0645\u0646\u0633\u062a\u062d\u0642\u0634 \u0627\u064a\u0629... \n\u0633\u064a\u0628\u0648\u0647\u0627 \u0639\u0644\u064a \u0631\u0628\u0646\u0627 \u0634\u0648\u064a\u0629\u261d\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1657479542,"id_str":"1657479542","name":"mahmoud","screen_name":"_mahmoudd","location":"new cairo","url":null,"description":"never regret something that once made you smile :) faculty of engineering #mechatronics Real_Madrid\u2764 Lindsay_stirling\u2764\u2764 #25jan","protected":false,"verified":false,"followers_count":5327,"friends_count":4207,"listed_count":6,"favourites_count":256,"statuses_count":24266,"created_at":"Fri Aug 09 10:47:38 +0000 2013","utc_offset":7200,"time_zone":"Cairo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000091396223\/65e4eb6ac92d06b575e79d6efa3a7b10.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000091396223\/65e4eb6ac92d06b575e79d6efa3a7b10.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659376286071169024\/hpLahq2Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659376286071169024\/hpLahq2Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1657479542\/1437313210","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":512,"favorite_count":68,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_mahmoudd","name":"mahmoud","id":1657479542,"id_str":"1657479542","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389263360,"id_str":"663728152389263360","text":"RT @fedefederossi: LETTERA FINALMENTE \u00c8 FUORI \u2764\ufe0f SPARGETELA DAPPERTUTTO \u2728 #BenjieFedeLettera https:\/\/t.co\/CDUrchLhrW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3046666824,"id_str":"3046666824","name":"Federica | 20:05 |","screen_name":"federicaregali_","location":"Sardegna, Italia","url":"https:\/\/instagram.com\/p\/7P6VmPrr41\/","description":"I miei sogni sanno di te!\nANTONY\u2661\nHO ABBRACCIATO MICHELE E BENJI&FEDE\n18\/10 - 06\/11","protected":false,"verified":false,"followers_count":34,"friends_count":63,"listed_count":0,"favourites_count":354,"statuses_count":395,"created_at":"Fri Feb 27 14:22:25 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727900760387584\/Elv8phdI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727900760387584\/Elv8phdI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3046666824\/1437561083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:47 +0000 2015","id":663727439957331968,"id_str":"663727439957331968","text":"LETTERA FINALMENTE \u00c8 FUORI \u2764\ufe0f SPARGETELA DAPPERTUTTO \u2728 #BenjieFedeLettera https:\/\/t.co\/CDUrchLhrW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014558284,"id_str":"3014558284","name":"Fede |20:05|","screen_name":"fedefederossi","location":null,"url":null,"description":"ciao sono fede e canto in un duo pazzo\u270c\ufe0f","protected":false,"verified":false,"followers_count":54652,"friends_count":367,"listed_count":40,"favourites_count":640,"statuses_count":1461,"created_at":"Tue Feb 03 14:15:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653328953114017792\/64uigTay_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653328953114017792\/64uigTay_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014558284\/1444600768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":861,"favorite_count":946,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[55,73]}],"urls":[{"url":"https:\/\/t.co\/CDUrchLhrW","expanded_url":"http:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[74,92]}],"urls":[{"url":"https:\/\/t.co\/CDUrchLhrW","expanded_url":"http:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[93,116]}],"user_mentions":[{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397668352,"id_str":"663728152397668352","text":"RT @miracle_1013: 151107 #\uc9c0\ubbfc #JIMIN \ud654\uc9c8\uc774...\ud83d\ude02 https:\/\/t.co\/167wRZPH71","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3007573999,"id_str":"3007573999","name":"bluetears","screen_name":"bluetears_clock","location":null,"url":"https:\/\/www.evernote.com\/shard\/s412\/sh\/faee6f91-e4c1-4040-b000-d3ce8d2670e8\/6c1ff967d68862cdd1c447bc","description":"\uc5b4\ub514\uc5d0\ub3c4 \uac00\uc9c0\ub9c8. \ub0b4\uac00 \uadf8\ub9ac\ub85c \uac08\ud14c\ub2c8.","protected":false,"verified":false,"followers_count":233,"friends_count":395,"listed_count":1,"favourites_count":1253,"statuses_count":22188,"created_at":"Mon Feb 02 05:04:25 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661194828386951169\/B8AoTyLo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661194828386951169\/B8AoTyLo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3007573999\/1442067731","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:23 +0000 2015","id":663726834236809216,"id_str":"663726834236809216","text":"151107 #\uc9c0\ubbfc #JIMIN \ud654\uc9c8\uc774...\ud83d\ude02 https:\/\/t.co\/167wRZPH71","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953031903,"id_str":"2953031903","name":"Just a Miracle","screen_name":"miracle_1013","location":null,"url":null,"description":"\uc218\ub9ce\uc740 \uc0ac\ub78c \uc911\uc5d0 \ub09c \ub108\ub9cc \ubcf4\uac8c \ub3fc \uc774\uac74 \ub0b4\uac8c MIRACLE\u2665","protected":false,"verified":false,"followers_count":14495,"friends_count":2,"listed_count":513,"favourites_count":0,"statuses_count":507,"created_at":"Wed Dec 31 12:40:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653593898929885184\/zUxpwy7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653593898929885184\/zUxpwy7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953031903\/1433429166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":72,"entities":{"hashtags":[{"text":"\uc9c0\ubbfc","indices":[7,10]},{"text":"JIMIN","indices":[11,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":16633,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/720x720\/6eWiliXhGOX-vqcn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/240x240\/rx5rePM3OlbSGWHN.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc9c0\ubbfc","indices":[25,28]},{"text":"JIMIN","indices":[29,35]}],"urls":[],"user_mentions":[{"screen_name":"miracle_1013","name":"Just a Miracle","id":2953031903,"id_str":"2953031903","indices":[3,16]}],"symbols":[],"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726834236809216,"source_status_id_str":"663726834236809216","source_user_id":2953031903,"source_user_id_str":"2953031903"}]},"extended_entities":{"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726834236809216,"source_status_id_str":"663726834236809216","source_user_id":2953031903,"source_user_id_str":"2953031903","video_info":{"aspect_ratio":[1,1],"duration_millis":16633,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/720x720\/6eWiliXhGOX-vqcn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/240x240\/rx5rePM3OlbSGWHN.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152393437184,"id_str":"663728152393437184","text":"RT @MariamDiamond: Back in Florence .. It's so much colder here than in Rome ! \ud83d\ude4f\ud83c\udffb\u2764\ufe0f\ud83c\uddee\ud83c\uddf9\ud83d\ude4f\ud83c\udffb @ Florence, Italy https:\/\/t.co\/jMt9qLJbKS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3050918676,"id_str":"3050918676","name":"Janoskians-4ever","screen_name":"Mariannamasone","location":"Montr\u00e9al, Canada","url":null,"description":"they had me at hey guys we're the janoskians\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0fJai and James followed and so did kiana\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":364,"friends_count":523,"listed_count":0,"favourites_count":2751,"statuses_count":8705,"created_at":"Sat Feb 28 20:08:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632523889982218240\/yZeuUM2H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632523889982218240\/yZeuUM2H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3050918676\/1444268745","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:24 +0000 2015","id":663717275116023808,"id_str":"663717275116023808","text":"Back in Florence .. It's so much colder here than in Rome ! \ud83d\ude4f\ud83c\udffb\u2764\ufe0f\ud83c\uddee\ud83c\uddf9\ud83d\ude4f\ud83c\udffb @ Florence, Italy https:\/\/t.co\/jMt9qLJbKS","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174958289,"id_str":"174958289","name":"Mariam Diamond","screen_name":"MariamDiamond","location":"Sydney \u2708\ufe0f LA ","url":"http:\/\/mariamdiamond.com","description":"Born at a very young age - Instagram: mariamdiamond mariam.diamond@live.com \u2764@RonnieElDiamond\u2764\ufe0f","protected":false,"verified":false,"followers_count":107951,"friends_count":13101,"listed_count":667,"favourites_count":12758,"statuses_count":80719,"created_at":"Thu Aug 05 07:18:16 +0000 2010","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659213853289349120\/CvjngYWW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659213853289349120\/CvjngYWW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174958289\/1370736918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":38,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jMt9qLJbKS","expanded_url":"https:\/\/instagram.com\/p\/93diH0y-Zb\/","display_url":"instagram.com\/p\/93diH0y-Zb\/","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jMt9qLJbKS","expanded_url":"https:\/\/instagram.com\/p\/93diH0y-Zb\/","display_url":"instagram.com\/p\/93diH0y-Zb\/","indices":[106,129]}],"user_mentions":[{"screen_name":"MariamDiamond","name":"Mariam Diamond","id":174958289,"id_str":"174958289","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097660"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152401846272,"id_str":"663728152401846272","text":"RT @viciconte10: Quien como @MicaelistasArg q se quedo toda la noche votando \n\n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2740580632,"id_str":"2740580632","name":"verde,verde, vot 4","screen_name":"YbBerardo","location":null,"url":null,"description":"micaelista a morir... y super fans del verde!!!","protected":false,"verified":false,"followers_count":43,"friends_count":136,"listed_count":0,"favourites_count":318,"statuses_count":1606,"created_at":"Tue Aug 12 06:14:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662418692169404419\/_ArH_wnl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662418692169404419\/_ArH_wnl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2740580632\/1446697898","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:02 +0000 2015","id":663725236135845888,"id_str":"663725236135845888","text":"Quien como @MicaelistasArg q se quedo toda la noche votando \n\n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492052360,"id_str":"2492052360","name":"LoReE \u270c","screen_name":"viciconte10","location":" Micaela Lorena Viciconte ","url":null,"description":"Vos y Yo: Donde sea que est\u00e9s Pero \n\n SIEMPRE JUNTAS","protected":false,"verified":false,"followers_count":983,"friends_count":494,"listed_count":0,"favourites_count":1677,"statuses_count":9631,"created_at":"Mon May 12 22:48:02 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663606352649003009\/w6GsGMTn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663606352649003009\/w6GsGMTn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492052360\/1446701296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[62,77]},{"text":"LaDiosa","indices":[78,86]}],"urls":[],"user_mentions":[{"screen_name":"MicaelistasArg","name":"tami","id":2595976850,"id_str":"2595976850","indices":[11,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[79,94]},{"text":"LaDiosa","indices":[95,103]}],"urls":[],"user_mentions":[{"screen_name":"viciconte10","name":"LoReE \u270c","id":2492052360,"id_str":"2492052360","indices":[3,15]},{"screen_name":"MicaelistasArg","name":"tami","id":2595976850,"id_str":"2595976850","indices":[28,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097662"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397639681,"id_str":"663728152397639681","text":"Apps que solucionan los atascos en ciudad y en carretera https:\/\/t.co\/b24GqHwEOe #mercados","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2833920285,"id_str":"2833920285","name":"Tiempo De Bolsa","screen_name":"tiempodebolsa","location":null,"url":null,"description":"Informaci\u00f3n al minuto de los principales mercados financieros #Bolsa #Ibex35 #DowJones #Nasdaq #Daxx #EuroStoxx #Merval #Igpa #Ipc #Metales #Inmobiliaria","protected":false,"verified":false,"followers_count":1523,"friends_count":49,"listed_count":86,"favourites_count":1,"statuses_count":347669,"created_at":"Thu Oct 16 12:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522722803351441411\/ph8ER62W.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522722803351441411\/ph8ER62W.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522722932963815424\/WOTRXzyY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522722932963815424\/WOTRXzyY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833920285\/1413461870","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mercados","indices":[81,90]}],"urls":[{"url":"https:\/\/t.co\/b24GqHwEOe","expanded_url":"http:\/\/ift.tt\/1Mk53Rr","display_url":"ift.tt\/1Mk53Rr","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152406003712,"id_str":"663728152406003712","text":"La palabra RECURSAR me da miedo! jajaaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1968978218,"id_str":"1968978218","name":"Ka","screen_name":"CristianKaa","location":null,"url":null,"description":"Pasion inexplicable por las Motos \u2661\n...Si la velocidad algun dia me mata no se preocupen,sepan que mori feliz... \n~Futura Maestra Jardinera~","protected":false,"verified":false,"followers_count":131,"friends_count":141,"listed_count":1,"favourites_count":754,"statuses_count":3332,"created_at":"Fri Oct 18 14:23:38 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600718434146516992\/ToG0ZiL7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600718434146516992\/ToG0ZiL7.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594625304389414912\/1dPukbEK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594625304389414912\/1dPukbEK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1968978218\/1442089963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097663"} +{"delete":{"status":{"id":663724134241714176,"id_str":"663724134241714176","user_id":314883589,"user_id_str":"314883589"},"timestamp_ms":"1447080097696"}} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152414396417,"id_str":"663728152414396417","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1361690774,"id_str":"1361690774","name":"ropatrokola","screen_name":"ropatrokola","location":"Espa\u00f1a","url":"http:\/\/ropatrokola.spreadshirt.es\/","description":"TROKOLA T-SHIRT SHOP | LA FORMA FACIL DE COMPRAR CAMISETAS","protected":false,"verified":false,"followers_count":841,"friends_count":1447,"listed_count":156,"favourites_count":0,"statuses_count":109266,"created_at":"Thu Apr 18 11:35:01 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"72BC23","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/849847851\/48ce411230a1c99122a2f4b040c2dff5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/849847851\/48ce411230a1c99122a2f4b040c2dff5.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3538755319\/4713ed5076f5dfd6fa645d58b542b9c6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3538755319\/4713ed5076f5dfd6fa645d58b542b9c6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1361690774\/1396955578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":570,"favorite_count":336,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097665"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152393424896,"id_str":"663728152393424896","text":"@CarrieAnnRyan I get more worried of running into one outside while taking the kid to bus stop at 6am.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727455643922432,"in_reply_to_status_id_str":"663727455643922432","in_reply_to_user_id":212995763,"in_reply_to_user_id_str":"212995763","in_reply_to_screen_name":"CarrieAnnRyan","user":{"id":250908667,"id_str":"250908667","name":"smexys_sidekick","screen_name":"smexys_sidekick","location":null,"url":"http:\/\/www.smexybooks.com","description":"Biblio bimbo, booze hound, blasphemer. Freelance for @smexybooks, @heroesnhearts, & @RT_Magazine. I support mediocrity because we can't all be 5 stars.","protected":false,"verified":false,"followers_count":4346,"friends_count":646,"listed_count":193,"favourites_count":3824,"statuses_count":102622,"created_at":"Sat Feb 12 01:56:21 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641392255207501824\/hKjdtKI-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641392255207501824\/hKjdtKI-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250908667\/1436218281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarrieAnnRyan","name":"Carrie Ann Ryan","id":212995763,"id_str":"212995763","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097660"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152401809408,"id_str":"663728152401809408","text":"\u0627\u0644\u0644\u0647\u0645 \u0645\u0646\u0632\u0644 \u0627\u0644\u0643\u062a\u0627\u0628 \u0633\u0631\u064a\u0639 \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0647\u0632\u0645 \u0627\u0644\u0623\u062d\u0632\u0627\u0628\n\u267b\ufe0f https:\/\/t.co\/5MAYh6HToz","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3523639332,"id_str":"3523639332","name":"saleh","screen_name":"ytr6655","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":49,"listed_count":0,"favourites_count":0,"statuses_count":4420,"created_at":"Fri Sep 11 06:15:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646239239491883008\/E5C678fv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646239239491883008\/E5C678fv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3523639332\/1442910414","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5MAYh6HToz","expanded_url":"http:\/\/zad-muslim.com","display_url":"zad-muslim.com","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080097662"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152385077248,"id_str":"663728152385077248","text":"RT @Gamers_Account: Gamers_Account: Latest advances, check now https:\/\/t.co\/kQtq9kbEpE #gamedev #indiedev #gamers #gaming #indiegame #enter\u2026","source":"\u003ca href=\"http:\/\/made-apps.com\" rel=\"nofollow\"\u003eIndie Dev Syndicate\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3384451091,"id_str":"3384451091","name":"Indie Dev Syndicate","screen_name":"dev_indie","location":"Germany","url":null,"description":"We RT and post awesome news about indie games! Follow us to stay up to date on the scene.","protected":false,"verified":false,"followers_count":1259,"friends_count":1918,"listed_count":224,"favourites_count":13246,"statuses_count":13779,"created_at":"Mon Jul 20 12:20:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623118172716187649\/udulfrtx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623118172716187649\/udulfrtx_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:22 +0000 2015","id":663727585864630272,"id_str":"663727585864630272","text":"Gamers_Account: Latest advances, check now https:\/\/t.co\/kQtq9kbEpE #gamedev #indiedev #gamers #gaming #indiegame #entertainment #videogame\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4093378288,"id_str":"4093378288","name":"Gamers Account","screen_name":"Gamers_Account","location":null,"url":"https:\/\/www.g2a.com\/r\/user-563659086bd21","description":"Official account. Just Gamers. Check link below for cheap games","protected":false,"verified":false,"followers_count":200,"friends_count":0,"listed_count":184,"favourites_count":5,"statuses_count":19946,"created_at":"Sun Nov 01 23:30:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660964529459830784\/Axx55x4u_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660964529459830784\/Axx55x4u_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4093378288\/1446422296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"gamedev","indices":[67,75]},{"text":"indiedev","indices":[76,85]},{"text":"gamers","indices":[86,93]},{"text":"gaming","indices":[94,101]},{"text":"indiegame","indices":[102,112]},{"text":"entertainment","indices":[113,127]},{"text":"videogame","indices":[128,138]}],"urls":[{"url":"https:\/\/t.co\/kQtq9kbEpE","expanded_url":"http:\/\/ift.tt\/1GSOBLg","display_url":"ift.tt\/1GSOBLg","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gamedev","indices":[87,95]},{"text":"indiedev","indices":[96,105]},{"text":"gamers","indices":[106,113]},{"text":"gaming","indices":[114,121]},{"text":"indiegame","indices":[122,132]},{"text":"entertainment","indices":[133,140]},{"text":"videogame","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/kQtq9kbEpE","expanded_url":"http:\/\/ift.tt\/1GSOBLg","display_url":"ift.tt\/1GSOBLg","indices":[63,86]}],"user_mentions":[{"screen_name":"Gamers_Account","name":"Gamers Account","id":4093378288,"id_str":"4093378288","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097658"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397639680,"id_str":"663728152397639680","text":"RT @OedipusDreamX: Lucky I was drunk & extremely horny last night. It had me discover that my little brother is amazing at eating pussy htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3435834622,"id_str":"3435834622","name":"April J Avery","screen_name":"AprilAvery92","location":"San Antonio, TX","url":null,"description":"love other girls\/women...","protected":false,"verified":false,"followers_count":1504,"friends_count":5001,"listed_count":21,"favourites_count":9528,"statuses_count":10133,"created_at":"Sat Aug 22 18:32:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635159133453348864\/Cw0eg3fq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635159133453348864\/Cw0eg3fq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 06 12:41:52 +0000 2015","id":651376828284669952,"id_str":"651376828284669952","text":"Lucky I was drunk & extremely horny last night. It had me discover that my little brother is amazing at eating pussy http:\/\/t.co\/rfYAd5vRIn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254836447,"id_str":"3254836447","name":"Oedipus Dreams","screen_name":"OedipusDreamX","location":"In my mothers bedroom","url":null,"description":"Turning ordinary porn into my incest fantasy (nsfw)(18+ only) kik: oedipusX","protected":false,"verified":false,"followers_count":2033,"friends_count":53,"listed_count":10,"favourites_count":7,"statuses_count":212,"created_at":"Wed Jun 24 16:50:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623632881206718464\/z_OSIgad_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623632881206718464\/z_OSIgad_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254836447\/1446769127","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":651376826825072644,"id_str":"651376826825072644","indices":[121,143],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","url":"http:\/\/t.co\/rfYAd5vRIn","display_url":"pic.twitter.com\/rfYAd5vRIn","expanded_url":"http:\/\/twitter.com\/OedipusDreamX\/status\/651376828284669952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":231,"resize":"fit"},"medium":{"w":400,"h":231,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":651376826825072644,"id_str":"651376826825072644","indices":[121,143],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","url":"http:\/\/t.co\/rfYAd5vRIn","display_url":"pic.twitter.com\/rfYAd5vRIn","expanded_url":"http:\/\/twitter.com\/OedipusDreamX\/status\/651376828284669952\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":231,"resize":"fit"},"medium":{"w":400,"h":231,"resize":"fit"}},"video_info":{"aspect_ratio":[400,231],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CQonxdnUYAQeTuE.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OedipusDreamX","name":"Oedipus Dreams","id":3254836447,"id_str":"3254836447","indices":[3,17]}],"symbols":[],"media":[{"id":651376826825072644,"id_str":"651376826825072644","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","url":"http:\/\/t.co\/rfYAd5vRIn","display_url":"pic.twitter.com\/rfYAd5vRIn","expanded_url":"http:\/\/twitter.com\/OedipusDreamX\/status\/651376828284669952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":231,"resize":"fit"},"medium":{"w":400,"h":231,"resize":"fit"}},"source_status_id":651376828284669952,"source_status_id_str":"651376828284669952","source_user_id":3254836447,"source_user_id_str":"3254836447"}]},"extended_entities":{"media":[{"id":651376826825072644,"id_str":"651376826825072644","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQonxdnUYAQeTuE.png","url":"http:\/\/t.co\/rfYAd5vRIn","display_url":"pic.twitter.com\/rfYAd5vRIn","expanded_url":"http:\/\/twitter.com\/OedipusDreamX\/status\/651376828284669952\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":196,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":231,"resize":"fit"},"medium":{"w":400,"h":231,"resize":"fit"}},"source_status_id":651376828284669952,"source_status_id_str":"651376828284669952","source_user_id":3254836447,"source_user_id_str":"3254836447","video_info":{"aspect_ratio":[400,231],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CQonxdnUYAQeTuE.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152385085440,"id_str":"663728152385085440","text":"Mein elektrotechnik Professor schafft es erfolgreich das Semester zu vergraulen :'D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242831818,"id_str":"2242831818","name":"Riko","screen_name":"0_Riko_","location":"HL\/Germany","url":"https:\/\/www.facebook.com\/pages\/Riko-CosplayVideo\/1391172834479451","description":"Cosplayer\/ Dancer\/ PatchWorkCrewMember\/Student\/Gamer\/","protected":false,"verified":false,"followers_count":61,"friends_count":115,"listed_count":1,"favourites_count":4832,"statuses_count":5227,"created_at":"Thu Dec 12 19:41:24 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646196987335942144\/3sh0QJBC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646196987335942144\/3sh0QJBC_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080097658"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152380874752,"id_str":"663728152380874752","text":"https:\/\/t.co\/XklS2pN6vC","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304306251,"id_str":"3304306251","name":"GamingAdAgent","screen_name":"GamingAdAgent","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":176,"friends_count":813,"listed_count":0,"favourites_count":0,"statuses_count":313,"created_at":"Sun May 31 04:51:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604876204169129984\/OkVkaFMR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604876204169129984\/OkVkaFMR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304306251\/1433048759","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XklS2pN6vC","expanded_url":"http:\/\/gamingadagent.com","display_url":"gamingadagent.com","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080097657"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397516800,"id_str":"663728152397516800","text":"\u0e1e\u0e23\u0e35\u0e40\u0e0b\u0e49\u0e19\u0e27\u0e34\u0e0a\u0e32\u0e0d\u0e1b.\u0e2a\u0e2d\u0e07\u0e27\u0e31\u0e19\u0e15\u0e34\u0e14\u0e19\u0e35\u0e48\u0e44\u0e21\u0e48\u0e44\u0e2b\u0e27\u0e08\u0e23\u0e34\u0e21\u0e46 \u0e42\u0e2d\u0e22\u0e22\u0e22\u0e22\u0e22\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81046379,"id_str":"81046379","name":"\u0e40\u0e08\u0e44\u0e07\u0e08\u0e33\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e2b\u0e23\u0e2d","screen_name":"Jay_Khun","location":null,"url":null,"description":"Just Jay \u27b0 Since 1996 \u27b0 \u0e15\u0e34\u0e48\u0e07 \u27b0 \u0e2d\u0e48\u0e32\u0e19\u0e1f\u0e34\u0e04","protected":false,"verified":false,"followers_count":372,"friends_count":257,"listed_count":1,"favourites_count":1806,"statuses_count":49707,"created_at":"Fri Oct 09 06:43:33 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/501914895\/110609Cola03.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/501914895\/110609Cola03.jpg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651796071924916224\/vCuIQxOp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651796071924916224\/vCuIQxOp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81046379\/1440003577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152405872640,"id_str":"663728152405872640","text":"RT @B1A4_CNU: \ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4167399493,"id_str":"4167399493","name":"\ub098\ub098^\u2661^","screen_name":"bcl0320","location":null,"url":null,"description":"B1A4 \/ BTS \/ LOVELYZ \/ CRAYON POP 98line \u718a\u672cBANA @SANDEUL920320 \ub0b4 \uc0ac\ub791","protected":false,"verified":false,"followers_count":3,"friends_count":36,"listed_count":0,"favourites_count":0,"statuses_count":12,"created_at":"Sun Nov 08 10:50:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663322058248470528\/yoiST0U-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663322058248470528\/yoiST0U-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4167399493\/1446982614","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728098232238080,"id_str":"663728098232238080","text":"\ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187806925,"id_str":"187806925","name":"\uc2e0\ub3d9\uc6b0","screen_name":"B1A4_CNU","location":null,"url":null,"description":"Hello~ I'm C-NU","protected":false,"verified":true,"followers_count":668756,"friends_count":51,"listed_count":8493,"favourites_count":27,"statuses_count":448,"created_at":"Tue Sep 07 05:37:35 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187806925\/1357579369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":35,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[47,54]},{"text":"B1A4","indices":[55,60]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[61,68]},{"text":"B1A4","indices":[69,74]}],"urls":[],"user_mentions":[{"screen_name":"B1A4_CNU","name":"\uc2e0\ub3d9\uc6b0","id":187806925,"id_str":"187806925","indices":[3,12]}],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080097663"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389279745,"id_str":"663728152389279745","text":"RT @RMadridBilis: OMG!! \u27a1 Rapha\u00ebl Varane. #genius \ud83d\udd1d\u26bd\nhttps:\/\/t.co\/SjKWkiV5Xr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":473750548,"id_str":"473750548","name":"Ger547","screen_name":"germanfb96","location":null,"url":null,"description":"Live a life you will remember. Llevo 19 a\u00f1os en mi mundo, la m\u00fasica alivia mis penas o las multiplica. Alicante\u25e2\u25e4 Minion 26","protected":false,"verified":false,"followers_count":62,"friends_count":40,"listed_count":7,"favourites_count":224,"statuses_count":3736,"created_at":"Wed Jan 25 09:07:17 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656450545092317184\/v1pUX0ce_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656450545092317184\/v1pUX0ce_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473750548\/1395183012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 19:55:38 +0000 2015","id":660908073909944320,"id_str":"660908073909944320","text":"OMG!! \u27a1 Rapha\u00ebl Varane. #genius \ud83d\udd1d\u26bd\nhttps:\/\/t.co\/SjKWkiV5Xr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615865182,"id_str":"615865182","name":"Real Madrid Bilis\u2122","screen_name":"RMadridBilis","location":"Espa\u00f1a.","url":null,"description":"Madridista, \u00a1S\u00edguenos! Toda la actualidad del Real Madrid: Fotos, noticias, humor y mucho m\u00e1s. \u00a1S\u00edguenos! \u00a1Hasta el final Vamos Real! TROYANOS","protected":false,"verified":false,"followers_count":127748,"friends_count":44884,"listed_count":151,"favourites_count":3291,"statuses_count":141,"created_at":"Sat Jun 23 04:04:06 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/457224141221797888\/hIIqC0lE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/457224141221797888\/hIIqC0lE.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581133601686839296\/-JvIfpLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581133601686839296\/-JvIfpLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/615865182\/1429949463","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":80,"entities":{"hashtags":[{"text":"genius","indices":[24,31]}],"urls":[{"url":"https:\/\/t.co\/SjKWkiV5Xr","expanded_url":"https:\/\/vine.co\/v\/exah0xWYj3j","display_url":"vine.co\/v\/exah0xWYj3j","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"genius","indices":[42,49]}],"urls":[{"url":"https:\/\/t.co\/SjKWkiV5Xr","expanded_url":"https:\/\/vine.co\/v\/exah0xWYj3j","display_url":"vine.co\/v\/exah0xWYj3j","indices":[53,76]}],"user_mentions":[{"screen_name":"RMadridBilis","name":"Real Madrid Bilis\u2122","id":615865182,"id_str":"615865182","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152393445376,"id_str":"663728152393445376","text":"To com muita dor de cabe\u00e7a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2808283686,"id_str":"2808283686","name":"PURPOSE \u2764","screen_name":"Lary_Styles2","location":"Rio de Janeiro, Brasil","url":null,"description":"Ela \u00e9 uma simples garota, agora vai achando que ela \u00e9 boba.\nBelieber \u2764","protected":false,"verified":false,"followers_count":1723,"friends_count":1862,"listed_count":1,"favourites_count":5219,"statuses_count":18647,"created_at":"Sat Sep 13 23:20:57 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638537837588185088\/EErwe2JP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638537837588185088\/EErwe2JP.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662818707467575296\/o3h097V4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662818707467575296\/o3h097V4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2808283686\/1446592798","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080097660"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152410267648,"id_str":"663728152410267648","text":"Oi, meu nome \u00e9 Bono. \u2764 https:\/\/t.co\/us3ZzM5tKr","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3248865706,"id_str":"3248865706","name":"Stephanie Cammarota","screen_name":"CoalaFeminista","location":null,"url":null,"description":"Feminista\n\nsnap: tephacammarota","protected":false,"verified":false,"followers_count":36,"friends_count":93,"listed_count":0,"favourites_count":243,"statuses_count":859,"created_at":"Tue May 12 21:10:22 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598316555630346240\/yyQwy5EB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598316555630346240\/yyQwy5EB.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605435721642557440\/saWrB2G3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605435721642557440\/saWrB2G3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3248865706\/1434786472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/us3ZzM5tKr","expanded_url":"https:\/\/instagram.com\/p\/93ie75HtGE\/","display_url":"instagram.com\/p\/93ie75HtGE\/","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080097664"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152410234880,"id_str":"663728152410234880","text":"@georgecooperm8 No. I think you may wish to look at the statistics (inc gap in hourly earnings) before commenting https:\/\/t.co\/dagqoGVzCk","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726956937125888,"in_reply_to_status_id_str":"663726956937125888","in_reply_to_user_id":737342478,"in_reply_to_user_id_str":"737342478","in_reply_to_screen_name":"georgecooperm8","user":{"id":23660042,"id_str":"23660042","name":"Ben Soffa","screen_name":"BenSoffa","location":"London (Hoxton) & Lancaster","url":"http:\/\/www.organiccampaigns.com","description":"Campaigner & techie. Labour. Secretary, Palestine Solidarity @PSCupdates. Communications Manager at @TSSAunion. Run Organic Campaigns web firm","protected":false,"verified":false,"followers_count":2000,"friends_count":1913,"listed_count":69,"favourites_count":220,"statuses_count":6055,"created_at":"Tue Mar 10 21:23:25 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1144669868\/ben-venezuela-cropped_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1144669868\/ben-venezuela-cropped_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dagqoGVzCk","expanded_url":"http:\/\/www.ons.gov.uk\/ons\/rel\/ashe\/annual-survey-of-hours-and-earnings\/2014-provisional-results\/stb-ashe-statistical-bulletin-2014.html#tab-Gender-pay-differences","display_url":"ons.gov.uk\/ons\/rel\/ashe\/a\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"georgecooperm8","name":"Fuckabout","id":737342478,"id_str":"737342478","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097664"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152401702913,"id_str":"663728152401702913","text":"@spicachu74anst \n\u305d\u3046\u304b\u306a\u2026\u3058\u3083\u3042\u884c\u304d\u307e\u3059\u2026\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728033270927360,"in_reply_to_status_id_str":"663728033270927360","in_reply_to_user_id":3491122994,"in_reply_to_user_id_str":"3491122994","in_reply_to_screen_name":"spicachu74anst","user":{"id":1905708782,"id_str":"1905708782","name":"\u307d\u3066(\u4e00\u756a\u53f3)\u306f\uff18\u65e5\u9cf4\u4e0a\u5d50\u3067\u3057\u305f\uff01","screen_name":"FukaRia","location":"\u702c\u540d\u6cc9\u3067\u3066\u3053\u306a\u3044","url":null,"description":"18\u2191\u3084\u3063\u3061\u307e\u3063\u305f\u7cfb\u30ec\u30a4\u30e4\u30fc\u3002\u5272\u3068\u3069\u3046\u3067\u3082\u3044\u3044\u3053\u3068\u3057\u304b\u8a00\u308f\u306a\u3044\u3002TL\u8352\u3089\u3057\u307e\u3059\u3000\u3077\u3088\u9b54\u5c0e\/\u30c6\u30a4\u30eb\u30ba\/\u3042\u3093\u30b9\u30bf\/\u30a2\u30a4\u30de\u30b9\/\u9032\u6483\/BEMANI\/WLW\/\u30aa\u30c8\u30ab\/\u304a\u7d75\u304b\u304d\u3082\u3057\u307e\u3059\u3002\u30af\u30bd\u8150\u5973\u5b50\u3067\u3059\u3002\u304a\u5225\u308c\u306fB\u3067","protected":false,"verified":false,"followers_count":231,"friends_count":246,"listed_count":18,"favourites_count":9886,"statuses_count":21307,"created_at":"Wed Sep 25 23:14:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663701490263920640\/9lrqTpab_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663701490263920640\/9lrqTpab_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1905708782\/1447003084","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"spicachu74anst","name":"\u3059\u3074\u304b(\u2190)\u26618AGF \u30b5\u30fc\u30ab\u30b9\u6843\u674e","id":3491122994,"id_str":"3491122994","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097662"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152405872641,"id_str":"663728152405872641","text":"i pourin up till i can't no moh , i swear everything i see is slo-mo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2255964067,"id_str":"2255964067","name":"MCMXCIX","screen_name":"beanerYSL","location":"Pittsburgh, PA","url":"http:\/\/instagram.com\/chinesebeaner","description":"Self-Made","protected":false,"verified":false,"followers_count":1162,"friends_count":246,"listed_count":2,"favourites_count":14067,"statuses_count":29390,"created_at":"Sat Dec 21 04:05:13 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631148282253684737\/AlWHKp2h.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631148282253684737\/AlWHKp2h.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662336017773367296\/93AZpMcM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662336017773367296\/93AZpMcM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2255964067\/1443692228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097663"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152380768256,"id_str":"663728152380768256","text":"@ikyu___ \u307e\u3042\u3067\u3082\u3001\u3042\u305d\u3053\u3067\u9854\u306e\u8a71\u3060\u3059\u306e\u306f\u4e00\u4f11\u3055\u3093\u306e\u7a7a\u6c17\u3088\u3081\u3066\u306a\u3044\u3063\u3066\u5370\u8c61\u3067\u3059\u3002\u305f\u3060\u3001\u3042\u306e\u8fd4\u3057\u306f\u3061\u3087\u3063\u3068\u5f7c\u5973\u304c\u304a\u304b\u3057\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724376857047041,"in_reply_to_status_id_str":"663724376857047041","in_reply_to_user_id":3299391644,"in_reply_to_user_id_str":"3299391644","in_reply_to_screen_name":"ikyu___","user":{"id":3325512074,"id_str":"3325512074","name":"\u30d5\u30a3\u30ce\u30e9","screen_name":"Mme_finola","location":"\u73fe\u5b9f\u3068\u7a7a\u60f3\u306e\u5883\u754c\u7dda\u4ed8\u8fd1","url":null,"description":"\u5618\u3057\u304b\u66f8\u3044\u3066\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":149,"friends_count":60,"listed_count":2,"favourites_count":3506,"statuses_count":2869,"created_at":"Sun Aug 23 02:56:38 +0000 2015","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663581114087305216\/mlrLmaBX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663581114087305216\/mlrLmaBX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3325512074\/1443360104","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ikyu___","name":"\u4e00\u4f11 S.Ikyu","id":3299391644,"id_str":"3299391644","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097657"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397508608,"id_str":"663728152397508608","text":"@latiffaa9 fdait","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719972699570176,"in_reply_to_status_id_str":"663719972699570176","in_reply_to_user_id":3110980009,"in_reply_to_user_id_str":"3110980009","in_reply_to_screen_name":"latiffaa9","user":{"id":3190840993,"id_str":"3190840993","name":"ay","screen_name":"aysvha","location":null,"url":null,"description":"\u2022This is my life so shut up\u2022","protected":false,"verified":false,"followers_count":493,"friends_count":346,"listed_count":0,"favourites_count":327,"statuses_count":1953,"created_at":"Sun May 10 13:08:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692476956413952\/cnydwLIR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692476956413952\/cnydwLIR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190840993\/1447071678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"latiffaa9","name":"L.","id":3110980009,"id_str":"3110980009","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389128192,"id_str":"663728152389128192","text":"AKB48\u9ad8\u6a4b\u307f\u306a\u307f\u3001\u4e43\u6728\u574246\u6a4b\u672c\u5948\u3005\u672a\u3089\u304c\u81ea\u6162\u306e\u30d8\u30c3\u30c9\u30a6\u30a7\u30a2\u62ab\u9732 https:\/\/t.co\/dxhF4KOsr1","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3657535274,"id_str":"3657535274","name":"\u4e43\u6728\u574246v(^\u25bd\uff3e)v","screen_name":"a0027nogi46","location":null,"url":null,"description":"\u4e43\u6728\u574246\u304c\u597d\u304d\u306a\u5927\u5b66\u751f\u3067\uff5e\u3059\uff01\u305f\u304f\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u306d\uff08*\uff3e\u25bd\uff3e*\uff09","protected":false,"verified":false,"followers_count":127,"friends_count":235,"listed_count":0,"favourites_count":0,"statuses_count":3974,"created_at":"Wed Sep 23 08:09:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647461109624995840\/cNm0k2O4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647461109624995840\/cNm0k2O4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3657535274\/1443201779","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dxhF4KOsr1","expanded_url":"http:\/\/musiclife1972.seesaa.net\/","display_url":"musiclife1972.seesaa.net","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418476033,"id_str":"663728152418476033","text":"@Aruiteru_4329 \u6298\u89d2\u306e\u624b\u58f2\u308a\u306e\u6a5f\u4f1a\u3092\u6d3b\u304b\u3057\u304d\u308c\u3066\u306a\u3044\u3053\u3068\u304c\u60dc\u3057\u307e\u308c\u307e\u3059\u3002\u9006\u306e\u7acb\u5834\u3067\u30a2\u30d7\u30ac\u3084\u304d\u3063\u304b\u306e\u30e9\u30a4\u30d6\u306b\u884c\u3053\u3046\u304b\u306a\u3068\u601d\u3063\u305f\u3068\u3057\u3066\u3082\u3001\u30c1\u30e3\u30aa\u30d9\u30e9\u30e1\u30f3\u306e\u76e3\u8996\u306e\u4e2d\u3067\u30c1\u30b1\u30c3\u30c8\u3092\u8cb7\u3046\u52c7\u6c17\u306f\u306a\u304b\u306a\u304b\u51fa\u307e\u305b\u3093\u304b\u3089\u306d\u3002\u3042\u306e\u72b6\u6cc1\u3067\u30a2\u30d7\u30ac\u304d\u3063\u304b\u306e\u30d5\u30a1\u30f3\u306b\u8cb7\u3063\u3066\u3082\u3089\u3046\u306e\u306f\u53b3\u3057\u3044\u304b\u3068\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703005082972161,"in_reply_to_status_id_str":"663703005082972161","in_reply_to_user_id":2914828141,"in_reply_to_user_id_str":"2914828141","in_reply_to_screen_name":"Aruiteru_4329","user":{"id":1521296466,"id_str":"1521296466","name":"\u3072\u3068\u3084\u3059\u307f","screen_name":"hitoyasumi41","location":null,"url":null,"description":"\u30c1\u30e3\u30aa \u30d9\u30c3\u30e9 \u30c1\u30f3\u30af\u30a8\u30c3\u30c6\u30a3 \/ \u30d0\u30cb\u30e9\u30d3\u30fc\u30f3\u30ba","protected":false,"verified":false,"followers_count":265,"friends_count":321,"listed_count":5,"favourites_count":8513,"statuses_count":8651,"created_at":"Sun Jun 16 05:46:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"003CB3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450960615163441152\/1gCOgkaL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450960615163441152\/1gCOgkaL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1521296466\/1446777031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aruiteru_4329","name":"\u30c1\u30a7\u308b\u30fb\u30b2\u30d0\u30e9@\u5ba3\u4f1d\u52d5\u753b\u898b\u3066\u306d\uff01","id":2914828141,"id_str":"2914828141","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097666"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152384942080,"id_str":"663728152384942080","text":"@GOS_SinB eaea banget bahasa nya wkwk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723118955921408,"in_reply_to_status_id_str":"663723118955921408","in_reply_to_user_id":2383544388,"in_reply_to_user_id_str":"2383544388","in_reply_to_screen_name":"GOS_SinB","user":{"id":1251394392,"id_str":"1251394392","name":"\ube44","screen_name":"DS_Hanbin96","location":"#DSFams [09]","url":null,"description":"iKON's leader. known as B.I. 96s. charismatic. hey mrs. airplane naytwc","protected":false,"verified":false,"followers_count":806,"friends_count":815,"listed_count":0,"favourites_count":87,"statuses_count":5031,"created_at":"Fri Mar 08 10:54:35 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000017243363\/822d5130c42b35a84969034333541b94.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000017243363\/822d5130c42b35a84969034333541b94.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663575078651629568\/wopkv4vm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663575078651629568\/wopkv4vm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251394392\/1447043600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GOS_SinB","name":"sinb","id":2383544388,"id_str":"2383544388","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080097658"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418480128,"id_str":"663728152418480128","text":"Ciudadanos se mantiene como segunda fuerza, seg\u00fan Antena 3 https:\/\/t.co\/1C93YpMqeo","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259087445,"id_str":"259087445","name":"iMayordomo\u2122","screen_name":"iMayordomo","location":"Ayudando","url":"http:\/\/joseenriqueag.com","description":"Noticias, ciencia, tecnolog\u00eda, frases y mucho m\u00e1s. @facebook: http:\/\/facebook.com\/iMayordomoOfficial & http:\/\/aarias.com","protected":false,"verified":false,"followers_count":547,"friends_count":30,"listed_count":35,"favourites_count":0,"statuses_count":150864,"created_at":"Tue Mar 01 03:24:57 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/345520822\/digital-background-1280x1024.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/345520822\/digital-background-1280x1024.jpg","profile_background_tile":false,"profile_link_color":"000317","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2770D5","profile_text_color":"1F1E1F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1571337368\/assistant_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1571337368\/assistant_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259087445\/1348026158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1C93YpMqeo","expanded_url":"http:\/\/dlvr.it\/Chfjn5","display_url":"dlvr.it\/Chfjn5","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097666"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397549568,"id_str":"663728152397549568","text":"RT @dbqls0944: \uc774\ub7ec\uc9c0\ub9c8 https:\/\/t.co\/JcYYoNQoRd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3286823810,"id_str":"3286823810","name":"\ub728\ub610","screen_name":"ssss_oo_wwww","location":null,"url":null,"description":"\u3147\u3145\u3147\u314b","protected":false,"verified":false,"followers_count":11,"friends_count":15,"listed_count":0,"favourites_count":38,"statuses_count":928,"created_at":"Tue Jul 21 20:15:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662709169477189632\/lFChT1uW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662709169477189632\/lFChT1uW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 10:34:19 +0000 2015","id":661853976741023744,"id_str":"661853976741023744","text":"\uc774\ub7ec\uc9c0\ub9c8 https:\/\/t.co\/JcYYoNQoRd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744336125,"id_str":"2744336125","name":"\ud3ec\uad6c\ub9ac\ub2d8 \uba58\ud0c8 \ubd80\uc234\uc84c\ub2e4\ud569\ub2c8\ub2e4","screen_name":"dbqls0944","location":"\ube14\ub9ac\uce58 \ub2aa","url":null,"description":"\ud3ec\uad6c\ub9ac\ub77c\uace0 \ud574\uc694!\n\uadf8\ub9bc\uc8e0 \uc815\ub9d0 \uc88b\uc544\ud569\ub2c8\ub2e4! \ube14\ub9ac\uce58, \uc6d0\ud380\ub9e8 \ud30c\uc2dc\ub294 \ubd84 \ud314\ub85c\uc6b0 \uc88b\uc544\ud574\uc694! \uba58\uc158 \uc8fc\uc2dc\uba74 \uc800 \ub610\ud55c \ud314\ub85c\uc6b0 \ud560 \uc608\uc815\uc774\ub2c8 \uba58\uc158 \ubd80\ud0c1\ub4dc\ub824\uc694 U.U\/\/\uc778\uc7a5\uc740 \uae30\ub9b0\ub2d8!","protected":false,"verified":false,"followers_count":69,"friends_count":67,"listed_count":0,"favourites_count":146,"statuses_count":3089,"created_at":"Tue Aug 19 08:12:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662924546438115328\/tGW1cSHq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662924546438115328\/tGW1cSHq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2744336125\/1444064157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":282,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661853975260499969,"id_str":"661853975260499969","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","url":"https:\/\/t.co\/JcYYoNQoRd","display_url":"pic.twitter.com\/JcYYoNQoRd","expanded_url":"http:\/\/twitter.com\/dbqls0944\/status\/661853976741023744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":504,"resize":"fit"},"large":{"w":400,"h":594,"resize":"fit"},"medium":{"w":400,"h":594,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661853975260499969,"id_str":"661853975260499969","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","url":"https:\/\/t.co\/JcYYoNQoRd","display_url":"pic.twitter.com\/JcYYoNQoRd","expanded_url":"http:\/\/twitter.com\/dbqls0944\/status\/661853976741023744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":504,"resize":"fit"},"large":{"w":400,"h":594,"resize":"fit"},"medium":{"w":400,"h":594,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dbqls0944","name":"\ud3ec\uad6c\ub9ac\ub2d8 \uba58\ud0c8 \ubd80\uc234\uc84c\ub2e4\ud569\ub2c8\ub2e4","id":2744336125,"id_str":"2744336125","indices":[3,13]}],"symbols":[],"media":[{"id":661853975260499969,"id_str":"661853975260499969","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","url":"https:\/\/t.co\/JcYYoNQoRd","display_url":"pic.twitter.com\/JcYYoNQoRd","expanded_url":"http:\/\/twitter.com\/dbqls0944\/status\/661853976741023744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":504,"resize":"fit"},"large":{"w":400,"h":594,"resize":"fit"},"medium":{"w":400,"h":594,"resize":"fit"}},"source_status_id":661853976741023744,"source_status_id_str":"661853976741023744","source_user_id":2744336125,"source_user_id_str":"2744336125"}]},"extended_entities":{"media":[{"id":661853975260499969,"id_str":"661853975260499969","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9grxCVEAEyz7B.jpg","url":"https:\/\/t.co\/JcYYoNQoRd","display_url":"pic.twitter.com\/JcYYoNQoRd","expanded_url":"http:\/\/twitter.com\/dbqls0944\/status\/661853976741023744\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":504,"resize":"fit"},"large":{"w":400,"h":594,"resize":"fit"},"medium":{"w":400,"h":594,"resize":"fit"}},"source_status_id":661853976741023744,"source_status_id_str":"661853976741023744","source_user_id":2744336125,"source_user_id_str":"2744336125"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152410107906,"id_str":"663728152410107906","text":"Hear Neil Young's Offbeat New Eighties Live Album: In the fall of 1987, Neil Young\u00a0launched a California club ... https:\/\/t.co\/XA1VLHXI3P","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2724845083,"id_str":"2724845083","name":"RockWar","screen_name":"RockWarBlog","location":null,"url":"http:\/\/www.rockwar.co","description":"All things Rock!","protected":false,"verified":false,"followers_count":996,"friends_count":2157,"listed_count":9,"favourites_count":3,"statuses_count":8740,"created_at":"Mon Aug 11 22:54:29 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"D608AD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498973883903401985\/_j5uEUr0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498973883903401985\/_j5uEUr0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2724845083\/1407799168","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XA1VLHXI3P","expanded_url":"http:\/\/rol.st\/1Qp9hMW","display_url":"rol.st\/1Qp9hMW","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097664"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152397504512,"id_str":"663728152397504512","text":"RT @I3amnoii: \u0e04\u0e19\u0e2d\u0e48\u0e32\u0e19\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d \u0e21\u0e31\u0e19\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e2d\u0e49\u0e30\u0e40\u0e19\u0e2d\u0e30 \u0e14\u0e39\u0e2d\u0e31\u0e1e\u0e23\u0e39\u0e1b \u0e04\u0e34\u0e01\u0e46 \ud83d\ude06\ud83d\ude06 https:\/\/t.co\/FIpnLYbDMr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2570013692,"id_str":"2570013692","name":"markbamxx2","screen_name":"markbamxx2","location":"GOT7 IGOT7","url":"http:\/\/www.got7.jype.com","description":"#G\ufe0eO\ufe0eT\ufe0e7 #I\ufe0eG\ufe0eO\ufe0eT\ufe0e7 #\u15f0\ufe0e\u15e9\ufe0e\u1587\ufe0eK\ufe0e\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e main #\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e\u15f7\ufe0e\u15e9\ufe0e\u15f0\ufe0e love #\u15f0\ufe0e\u15e9\ufe0e\u1587\ufe0eK\ufe0e too #\u15ea\ufe0e\u15e9\ufe0eY\ufe0e6: #\u15ea\ufe0eO\ufe0e\u15ef\ufe0eO\ufe0eO\ufe0e\u144e\ufe0e -\u0e23\u0e35\u0e40\u0e22\u0e2d\u0e30\u0e21\u0e32\u0e01 -\u0e2d\u0e31\u0e19\u0e1f\u0e2d\u0e25\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e27\u0e48\u0e32\u0e01\u0e31\u0e19 -\u0e0b\u0e32\u0e23\u0e32\u0e07\u0e41\u0e2e\u0e42\u0e2d\u0e1b\u0e1b\u0e49\u0e32","protected":false,"verified":false,"followers_count":96,"friends_count":117,"listed_count":9,"favourites_count":555,"statuses_count":72932,"created_at":"Mon Jun 16 01:54:09 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661209341488312322\/4wY-uI7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661209341488312322\/4wY-uI7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2570013692\/1444543666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:34:25 +0000 2015","id":663711242226266112,"id_str":"663711242226266112","text":"\u0e04\u0e19\u0e2d\u0e48\u0e32\u0e19\u0e2b\u0e19\u0e31\u0e07\u0e2a\u0e37\u0e2d \u0e21\u0e31\u0e19\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22\u0e2d\u0e49\u0e30\u0e40\u0e19\u0e2d\u0e30 \u0e14\u0e39\u0e2d\u0e31\u0e1e\u0e23\u0e39\u0e1b \u0e04\u0e34\u0e01\u0e46 \ud83d\ude06\ud83d\ude06 https:\/\/t.co\/FIpnLYbDMr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302134776,"id_str":"302134776","name":"B A M N O II","screen_name":"I3amnoii","location":"Thailand","url":"http:\/\/ask.fm\/I3amnoii","description":"\uc544\uc6d0 ll GOT7 II \ubc40\ubc40 150228 https:\/\/twitter.com\/bambam1a\/status\/571507727932866560 151015 https:\/\/twitter.com\/bambam1a\/status\/654633971045654528","protected":false,"verified":false,"followers_count":15584,"friends_count":154,"listed_count":40,"favourites_count":7346,"statuses_count":55320,"created_at":"Fri May 20 17:17:26 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661907272897990656\/UAT5nbDj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661907272897990656\/UAT5nbDj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302134776\/1440939423","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01e14f7d74f3ff8c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01e14f7d74f3ff8c.json","place_type":"admin","name":"\u0e2d.\u0e2a\u0e32\u0e21\u0e0a\u0e38\u0e01","full_name":"\u0e2d.\u0e2a\u0e32\u0e21\u0e0a\u0e38\u0e01, \u0e08.\u0e2a\u0e38\u0e1e\u0e23\u0e23\u0e13\u0e1a\u0e38\u0e23\u0e35","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[99.949395,14.675340],[99.949395,14.847602],[100.209280,14.847602],[100.209280,14.675340]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663711228011745280,"id_str":"663711228011745280","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","url":"https:\/\/t.co\/FIpnLYbDMr","display_url":"pic.twitter.com\/FIpnLYbDMr","expanded_url":"http:\/\/twitter.com\/I3amnoii\/status\/663711242226266112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"},"large":{"w":749,"h":718,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711228011745280,"id_str":"663711228011745280","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","url":"https:\/\/t.co\/FIpnLYbDMr","display_url":"pic.twitter.com\/FIpnLYbDMr","expanded_url":"http:\/\/twitter.com\/I3amnoii\/status\/663711242226266112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"},"large":{"w":749,"h":718,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"I3amnoii","name":"B A M N O II","id":302134776,"id_str":"302134776","indices":[3,12]}],"symbols":[],"media":[{"id":663711228011745280,"id_str":"663711228011745280","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","url":"https:\/\/t.co\/FIpnLYbDMr","display_url":"pic.twitter.com\/FIpnLYbDMr","expanded_url":"http:\/\/twitter.com\/I3amnoii\/status\/663711242226266112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"},"large":{"w":749,"h":718,"resize":"fit"}},"source_status_id":663711242226266112,"source_status_id_str":"663711242226266112","source_user_id":302134776,"source_user_id_str":"302134776"}]},"extended_entities":{"media":[{"id":663711228011745280,"id_str":"663711228011745280","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX52GsUEAAZF-4.jpg","url":"https:\/\/t.co\/FIpnLYbDMr","display_url":"pic.twitter.com\/FIpnLYbDMr","expanded_url":"http:\/\/twitter.com\/I3amnoii\/status\/663711242226266112\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"medium":{"w":600,"h":575,"resize":"fit"},"large":{"w":749,"h":718,"resize":"fit"}},"source_status_id":663711242226266112,"source_status_id_str":"663711242226266112","source_user_id":302134776,"source_user_id_str":"302134776"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080097661"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152414294016,"id_str":"663728152414294016","text":"With sixth straight loss, these Cowboys now tied to 1989 Cowboys https:\/\/t.co\/BZ9euTn0aR","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":348343019,"id_str":"348343019","name":"World of Sports","screen_name":"worldofsportsGo","location":"World","url":null,"description":"Just do it...!","protected":false,"verified":false,"followers_count":90,"friends_count":12,"listed_count":10,"favourites_count":0,"statuses_count":29602,"created_at":"Thu Aug 04 08:14:03 +0000 2011","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/550394038\/icon_sports-rec.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/550394038\/icon_sports-rec.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2213177270\/icon_sports-rec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2213177270\/icon_sports-rec_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BZ9euTn0aR","expanded_url":"http:\/\/dlvr.it\/Chfk01","display_url":"dlvr.it\/Chfk01","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097665"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152380837888,"id_str":"663728152380837888","text":"@MaxiLucasLopez @soyrojoyexijo (+) aplaudio q el vaya y patee... Si total lo iban a criticar d todas formas...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726592179503104,"in_reply_to_status_id_str":"663726592179503104","in_reply_to_user_id":157732374,"in_reply_to_user_id_str":"157732374","in_reply_to_screen_name":"MaxiLucasLopez","user":{"id":228228940,"id_str":"228228940","name":"Nico - CAI","screen_name":"nyscai","location":null,"url":null,"description":"*** Yo soy asi y gritando que te quiero voy a morir *** Porque el rojo es pasion y mi viejo me ense\u00f1o a quererte de la cuna hasta el cajon ***","protected":false,"verified":false,"followers_count":198,"friends_count":213,"listed_count":3,"favourites_count":2375,"statuses_count":13401,"created_at":"Sun Dec 19 03:24:07 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613852780462243840\/E5B0RuhI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613852780462243840\/E5B0RuhI.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595410079555440641\/r2UrM497_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595410079555440641\/r2UrM497_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228228940\/1435188710","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaxiLucasLopez","name":"Maximiliano L\u00f3pez","id":157732374,"id_str":"157732374","indices":[0,15]},{"screen_name":"soyrojoyexijo","name":"SOY DEL ROJO Y QUE?","id":2771685546,"id_str":"2771685546","indices":[16,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097657"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152401739776,"id_str":"663728152401739776","text":"\u8d77\u304d\u305f\u3089\u6795\u5143\u306b\u30dd\u30e1\u30e9\u3068\u8d64\u306e\u5165\u3063\u305f\u6253\u3061\u51fa\u3057\u306e\u675f\u3068\u8f9e\u66f8\u304c\u7f6e\u3044\u3066\u3042\u3063\u305f\u3002\u5c0f\u4eba\u3055\u3093\u3001\u3042\u308a\u304c\u3068\u3046\u2026","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":83646789,"id_str":"83646789","name":"\u3057\u307e\u3060","screen_name":"ozone_1o","location":"\u30d1\u30e9\u30aa\u6cca\u5730","url":null,"description":"\u706b\u846c\u5834\u306f\u5927\u4eba\u6599\u91d1\u306e\u5c4d","protected":false,"verified":false,"followers_count":39,"friends_count":63,"listed_count":1,"favourites_count":67,"statuses_count":67848,"created_at":"Mon Oct 19 17:29:05 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3565722450\/bb4c0fe0aaf71c8708aea6cb39258ebf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3565722450\/bb4c0fe0aaf71c8708aea6cb39258ebf_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097662"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152414302208,"id_str":"663728152414302208","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254823028,"id_str":"3254823028","name":"Innochka Gullen","screen_name":"qahipinavyni","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":82,"friends_count":621,"listed_count":10,"favourites_count":14700,"statuses_count":15751,"created_at":"Thu May 14 21:48:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645575005493964800\/SwuN-jmv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645575005493964800\/SwuN-jmv_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":813,"favorite_count":498,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097665"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152393355264,"id_str":"663728152393355264","text":"RT @kininarugosi: \u3010\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb\u306e\u885d\u6483\u52d5\u753b\u3011 \uff12\uff15\u5e74\u7d4c\u3063\u3066\u660e\u304b\u3055\u308c\u305f\u771f\u5b9f\uff01\n\u2192\u3000https:\/\/t.co\/EERolhsIjo https:\/\/t.co\/omwvkie2Vx","source":"\u003ca href=\"https:\/\/twitter.com\/86Gulbit\" rel=\"nofollow\"\u003egnfgnsnmh86Gujjj\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3805149136,"id_str":"3805149136","name":"\u262a\u5e73\u6210\u306e\u304f\u308c\u307c\u306f\u30ab\u30aa\u30b9\u3089\u3076\u262a","screen_name":"dulinkranpha197","location":null,"url":null,"description":"\u672c\u65e5\u3082\u300c\uff71\uff98-!\u300d\u3068\u611b\u3092\u53eb\u3093\u3067\u304a\u308a\u307e\u3059\u3002\u3042\u306a\u305f\u306eTL\u306b\u3042\u308a\u3063\u3053\u308a\u3053\u3092\u3002\u6642\u3005\u753b\u50cf\u67a0\u90e8\u5206\u524a\u9664\u3059\u308b\u3088 \u6c17\u5206\u3067\u9375\u304b\u3051\u308b\u270b\u273f\u6700\u9ad8\u306e\u7652\u3057=\u3044\u306e\u3042\u308a\u306e\u4e16\u754c\u4e00\u53ef\u611b\u3044\u7d61\u307f\u273f\u3042\u308a\u3084\u307e\u53cc\u5b50\u3082\u611b\u3057\u3066\u307e\u3059\u273f\u307e\u3042\u5168\u90e8\u597d\u304d\u30ca\u30f3\u30c7\u30b9\u273f","protected":false,"verified":false,"followers_count":1212,"friends_count":2063,"listed_count":1,"favourites_count":0,"statuses_count":120,"created_at":"Mon Sep 28 15:38:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657123268986429441\/j9bPCGlO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657123268986429441\/j9bPCGlO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3805149136\/1445505376","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728003256463361,"id_str":"663728003256463361","text":"\u3010\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb\u306e\u885d\u6483\u52d5\u753b\u3011 \uff12\uff15\u5e74\u7d4c\u3063\u3066\u660e\u304b\u3055\u308c\u305f\u771f\u5b9f\uff01\n\u2192\u3000https:\/\/t.co\/EERolhsIjo https:\/\/t.co\/omwvkie2Vx","source":"\u003ca href=\"https:\/\/twitter.com\/smith_madam\" rel=\"nofollow\"\u003erhsthvbghstsjddddddddddddddd\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4080722120,"id_str":"4080722120","name":"\u3010\u30ad\u30cb\u30ca\u30eb\u3011\u3042\u306e\u30b4\u30b7\u30c3\u30d7\u30cd\u30bf\u3092\u8ffd\u3048\u2606","screen_name":"kininarugosi","location":null,"url":null,"description":"\u4eca\u8a71\u984c\u306e\u82b8\u80fd\u4eba\u306e\u30b9\u30ad\u30e3\u30f3\u30c0\u30eb\u30cd\u30bf\u306e\u6700\u65b0\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u2606","protected":false,"verified":false,"followers_count":316,"friends_count":40,"listed_count":2,"favourites_count":0,"statuses_count":21,"created_at":"Sat Oct 31 14:52:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660470239767826432\/fitowIfi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660470239767826432\/fitowIfi_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EERolhsIjo","expanded_url":"http:\/\/goo.gl\/v4RI9W","display_url":"goo.gl\/v4RI9W","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663728002728001536,"id_str":"663728002728001536","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","url":"https:\/\/t.co\/omwvkie2Vx","display_url":"pic.twitter.com\/omwvkie2Vx","expanded_url":"http:\/\/twitter.com\/kininarugosi\/status\/663728003256463361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"medium":{"w":500,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":295,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728002728001536,"id_str":"663728002728001536","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","url":"https:\/\/t.co\/omwvkie2Vx","display_url":"pic.twitter.com\/omwvkie2Vx","expanded_url":"http:\/\/twitter.com\/kininarugosi\/status\/663728003256463361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"medium":{"w":500,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":295,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EERolhsIjo","expanded_url":"http:\/\/goo.gl\/v4RI9W","display_url":"goo.gl\/v4RI9W","indices":[50,73]}],"user_mentions":[{"screen_name":"kininarugosi","name":"\u3010\u30ad\u30cb\u30ca\u30eb\u3011\u3042\u306e\u30b4\u30b7\u30c3\u30d7\u30cd\u30bf\u3092\u8ffd\u3048\u2606","id":4080722120,"id_str":"4080722120","indices":[3,16]}],"symbols":[],"media":[{"id":663728002728001536,"id_str":"663728002728001536","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","url":"https:\/\/t.co\/omwvkie2Vx","display_url":"pic.twitter.com\/omwvkie2Vx","expanded_url":"http:\/\/twitter.com\/kininarugosi\/status\/663728003256463361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"medium":{"w":500,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":295,"resize":"fit"}},"source_status_id":663728003256463361,"source_status_id_str":"663728003256463361","source_user_id":4080722120,"source_user_id_str":"4080722120"}]},"extended_entities":{"media":[{"id":663728002728001536,"id_str":"663728002728001536","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGhYVAAAVcQ6.jpg","url":"https:\/\/t.co\/omwvkie2Vx","display_url":"pic.twitter.com\/omwvkie2Vx","expanded_url":"http:\/\/twitter.com\/kininarugosi\/status\/663728003256463361\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":200,"resize":"fit"},"medium":{"w":500,"h":295,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":295,"resize":"fit"}},"source_status_id":663728003256463361,"source_status_id_str":"663728003256463361","source_user_id":4080722120,"source_user_id_str":"4080722120"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097660"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389095424,"id_str":"663728152389095424","text":"\u3069\u3053\u3088\u308a\u3082\u9ad8\u984d\u5831\u916c\u304c\u7d04\u675f\u3055\u308c\u305f\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u30bb\u30f3\u30bf\u30fc\nhttps:\/\/t.co\/jJVIVYsRhO","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1150289424,"id_str":"1150289424","name":"\u526f\u696d\uff20\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8","screen_name":"torinpafsan","location":null,"url":"http:\/\/akb.cx\/3k0","description":"\u3069\u3053\u3088\u308a\u3082\u9ad8\u984d\u5831\u916c\u304c\u7d04\u675f\u3055\u308c\u305f\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u30bb\u30f3\u30bf\u30fc","protected":false,"verified":false,"followers_count":1554,"friends_count":1551,"listed_count":3,"favourites_count":0,"statuses_count":16812,"created_at":"Tue Feb 05 08:05:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3210559568\/17592dec3ed417e6cceb86127a254fc7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3210559568\/17592dec3ed417e6cceb86127a254fc7_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jJVIVYsRhO","expanded_url":"http:\/\/akb.cx\/3k0","display_url":"akb.cx\/3k0","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418455552,"id_str":"663728152418455552","text":"You are chosen to play the role of a highly skilled diplomat t... More for Capricorn https:\/\/t.co\/hzZ7Kfpy2w","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267311632,"id_str":"267311632","name":"Jahniece\u262e","screen_name":"jahniece_hall","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":537,"friends_count":879,"listed_count":1,"favourites_count":1032,"statuses_count":11685,"created_at":"Wed Mar 16 18:09:58 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/218454477\/free_twitter_backgrounds_1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/218454477\/free_twitter_backgrounds_1.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483463775400755200\/ZhboVvV__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483463775400755200\/ZhboVvV__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267311632\/1378653056","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hzZ7Kfpy2w","expanded_url":"http:\/\/bit.ly\/A5KmeJ","display_url":"bit.ly\/A5KmeJ","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097666"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389271552,"id_str":"663728152389271552","text":"Thank you\ud83d\ude0a https:\/\/t.co\/P99kmGsliS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2251900966,"id_str":"2251900966","name":"Ntombi'kaNyoko\u2764","screen_name":"Zar_Ntseto","location":"South Africa","url":null,"description":"Inceba ka'Thixo\u2764","protected":false,"verified":false,"followers_count":790,"friends_count":328,"listed_count":3,"favourites_count":263,"statuses_count":23167,"created_at":"Mon Dec 30 11:52:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719775055519745\/TCGC0_zF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719775055519745\/TCGC0_zF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2251900966\/1447008509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663722249187364864,"quoted_status_id_str":"663722249187364864","quoted_status":{"created_at":"Mon Nov 09 14:18:10 +0000 2015","id":663722249187364864,"id_str":"663722249187364864","text":"@Zar_Ntseto Nice Avi!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722078412107777,"in_reply_to_status_id_str":"663722078412107777","in_reply_to_user_id":2251900966,"in_reply_to_user_id_str":"2251900966","in_reply_to_screen_name":"Zar_Ntseto","user":{"id":268734929,"id_str":"268734929","name":"Bana ba Nwang?","screen_name":"Otumi_","location":"Bloemfontein\/Durban","url":null,"description":"No balls! No glory!! King of Kotso in ma ali. Fafi Jackpot winner. Kasi Kite engineer. Black mampatile expert.","protected":false,"verified":false,"followers_count":662,"friends_count":345,"listed_count":8,"favourites_count":511,"statuses_count":53185,"created_at":"Sat Mar 19 10:48:50 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853725344\/0c0c0182ca298da5475599d174bd2fa4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853725344\/0c0c0182ca298da5475599d174bd2fa4.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661403424576139264\/jq93MRuK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661403424576139264\/jq93MRuK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268734929\/1414642608","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Zar_Ntseto","name":"Ntombi'kaNyoko\u2764","id":2251900966,"id_str":"2251900966","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P99kmGsliS","expanded_url":"https:\/\/twitter.com\/Otumi_\/status\/663722249187364864","display_url":"twitter.com\/Otumi_\/status\/\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152410107904,"id_str":"663728152410107904","text":"RT @yuchi_f34: \u304b\u307c\u3061\u3083\u3093\u304c\u3001\u3042\u3063\u305f\u306e\uff01*\\(^o^)\/* https:\/\/t.co\/S7x0Wrd4Bb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2614615868,"id_str":"2614615868","name":"\u304b\u306e\u3093@\u306a\u3093\u3061\u3083\u3093\u5927\u597d\u304d","screen_name":"kanoninkota","location":"\u304b\u306a\u304c\u308f\u306e\u3069\u3063\u304b","url":null,"description":"\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\uff01\u306e\u305e\u3048\u308a\u307e\u304d\u3071\u306a\u63a8\u3057\uff01 \uff01\uff01\u30dc\u30ab\u30ed\u3068SAO\u3082\u597d\u304d\u3002RT\u3070\u3063\u304b\u3057\u307e\u3059\u3002\u3002\u3002\u5357\u689d\u611b\u4e43\u3055\u3093\u306f\u795e\u2728LiSA\u3063\u5b50\u2661","protected":false,"verified":false,"followers_count":735,"friends_count":384,"listed_count":10,"favourites_count":2432,"statuses_count":6563,"created_at":"Thu Jul 10 02:17:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619710154141859840\/AalS3UUE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619710154141859840\/AalS3UUE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614615868\/1414110313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:26:33 +0000 2015","id":661867123963129857,"id_str":"661867123963129857","text":"\u304b\u307c\u3061\u3083\u3093\u304c\u3001\u3042\u3063\u305f\u306e\uff01*\\(^o^)\/* https:\/\/t.co\/S7x0Wrd4Bb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181257698,"id_str":"3181257698","name":"\u53e4\u5ddd\u7531\u5229\u5948","screen_name":"yuchi_f34","location":null,"url":null,"description":"\u65b0\u4eba\u58f0\u512a\u306e\u53e4\u5ddd\u7531\u5229\u5948\u3067\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u307e\u3063\u305f\u308a\u3068\u3001\u65e5\u3005\u306e\u3053\u3068\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u3042\u3060\u540d\u306f\u3086\u3063\u3061\u3068\u3086\u30fc\u308a\u3093\u3061\u30fc\uff01\u3010\u5e72\u7269\u59b9\uff01\u3046\u307e\u308b\u3061\u3083\u3093\u3011\u6a58\u30b7\u30eb\u30d5\u30a3\u30f3\u30d5\u30a9\u30fc\u30c9\/ \u3010\u30c9\u30b0\u30de\u30c4\u30eb\u30ae\u30fc\u3011\u5c04\u5834\u30a2\u30e4\u30cd\/\u3010\u30d5\u30a7\u30a2\u30ea\u30fc\u30d5\u30a7\u30f3\u30b5\u30fc\u30a8\u30d5\u3011\u30c7\u30e9 \u4ed6","protected":false,"verified":false,"followers_count":8068,"friends_count":55,"listed_count":256,"favourites_count":11,"statuses_count":2394,"created_at":"Fri May 01 03:49:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662117760462286848\/Ggp_AKC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662117760462286848\/Ggp_AKC1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181257698\/1444133960","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":661866420536393728,"quoted_status_id_str":"661866420536393728","quoted_status":{"created_at":"Wed Nov 04 11:23:46 +0000 2015","id":661866420536393728,"id_str":"661866420536393728","text":"\u3010Twinkle\u2729Girls \u6c34\u66dc\u65e5\u306f\u3053\u3053\u3067 \u7b2c44\u56de\u3011https:\/\/t.co\/SkfPMqzDrr\u3000#Twinkle_Girls \u3086\u3063\u3061\u3083\u3093\u3068\u304b\u307c\u3061\u3083\u3093\u2661 https:\/\/t.co\/V20i2mmw36","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":864725310,"id_str":"864725310","name":"\u5409\u5ca1\u9ebb\u8036\uff0a\u307e\u3041\u306b\u3083","screen_name":"maya_no_a","location":"\u95a2\u6771\u306e\u30a4\u30bf\u30ea\u30a2\u6d41\u5ddd\u5e02\u5927\u6d17\u753a\u306e\u30d2\u30e5\u30f3\u6751","url":"http:\/\/ameblo.jp\/maya2noa\/","description":"\u51fa\u6f14\u4f5c\u54c1\u2661\u666e\u901a\u306e\u5973\u5b50\u6821\u751f\u304c\u300c\u308d\u3053\u3069\u308b\u300d\u3084\u3063\u3066\u307f\u305f \u4e09\u30f6\u6708\u3086\u3044 \u30ac\u30fc\u30eb\u30ba\uff06\u30d1\u30f3\u30c4\u30a1\u30fc \u8fd1\u85e4\u5999\u5b50\u30a2\u30f3\u30c1\u30e7\u30d3 \u7d76\u5bfe\u8ff7\u5bae\u79d8\u5bc6\u306e\u304a\u3084\u3086\u3073\u59eb \u30b7\u30e3\u30eb\u30ed\u30c3\u30c6 \u82f1\u56fd\u63a2\u5075\u30df\u30b9\u30c6\u30ea\u30a2The Crown \u30bb\u30fc\u30e9\u30fb\u30de\u30fc\u30d7\u30eb \u7d76\u5bfe\u8fce\u6483\u30a6\u30a9\u30fc\u30ba \u30c6\u30a3\u30b3\u30c8\u30ea\u30ea\u30aa\u30f3 \u30b1\u30eb\u30d9\u30ed\u30b9 \u6771\u6d0b\u7d21\u30aa\u30ea\u30a8\u30b9\u30c6\u30eb\u6771\u967d\u5b50 \u3057\u307e\u3058\u308d\u3046 \u30dd\u30ed\u30f3\u6771\u4eac\u30cf\u30fc\u30ec\u30e0 \u7dbe\u702c\u3072\u304b\u308a\u4ed6","protected":false,"verified":false,"followers_count":10380,"friends_count":215,"listed_count":681,"favourites_count":3,"statuses_count":31552,"created_at":"Sat Oct 06 13:58:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657836913731067908\/o_vLI57w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657836913731067908\/o_vLI57w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864725310\/1445080491","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Twinkle_Girls","indices":[52,66]}],"urls":[{"url":"https:\/\/t.co\/SkfPMqzDrr","expanded_url":"http:\/\/nico.ms\/lv240069838","display_url":"nico.ms\/lv240069838","indices":[28,51]}],"user_mentions":[],"symbols":[],"media":[{"id":661866414211379201,"id_str":"661866414211379201","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9r_zvUsAEXfRB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9r_zvUsAEXfRB.jpg","url":"https:\/\/t.co\/V20i2mmw36","display_url":"pic.twitter.com\/V20i2mmw36","expanded_url":"http:\/\/twitter.com\/maya_no_a\/status\/661866420536393728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661866414211379201,"id_str":"661866414211379201","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9r_zvUsAEXfRB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9r_zvUsAEXfRB.jpg","url":"https:\/\/t.co\/V20i2mmw36","display_url":"pic.twitter.com\/V20i2mmw36","expanded_url":"http:\/\/twitter.com\/maya_no_a\/status\/661866420536393728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":4,"favorite_count":32,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/S7x0Wrd4Bb","expanded_url":"https:\/\/twitter.com\/maya_no_a\/status\/661866420536393728","display_url":"twitter.com\/maya_no_a\/stat\u2026","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/S7x0Wrd4Bb","expanded_url":"https:\/\/twitter.com\/maya_no_a\/status\/661866420536393728","display_url":"twitter.com\/maya_no_a\/stat\u2026","indices":[37,60]}],"user_mentions":[{"screen_name":"yuchi_f34","name":"\u53e4\u5ddd\u7531\u5229\u5948","id":3181257698,"id_str":"3181257698","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097664"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418521089,"id_str":"663728152418521089","text":"sebelum tidur gabung di bbm chanel gaulmojokerto dulu ya, ini pin nya c00165bfd","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2846142738,"id_str":"2846142738","name":"Gaul Mojokerto","screen_name":"GaulMojokerto","location":"Mojokerto, indonesia","url":null,"description":"Wong gaul iku wong seng lahir nang mojokerto | admin = cupu| ig : gaulmojokerto | \u2709 : gaulmojokerto@gmail.com | SMS 085730800069 \/ bbm https:\/\/t.co\/K0RhOseEtz","protected":false,"verified":false,"followers_count":2726,"friends_count":1224,"listed_count":0,"favourites_count":0,"statuses_count":2678,"created_at":"Wed Oct 08 05:01:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595202742852784128\/aNmBT3Wv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595202742852784128\/aNmBT3Wv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2846142738\/1428466425","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080097666"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418451457,"id_str":"663728152418451457","text":"RT @hi_euh: \u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc544\ub2c8 \uc65c \uc8c4\ub2e4 \ub3d9\uc131\uc560\uc790\ub97c \ucde8\uc7ac\ud560 \ub54c \uac8c\uc774 \ucc1c\ubc29\uc744 \uac00\uace0 \uac8c\uc774 \ud074\ub7fd\uc744 \uac00\uc138\uc694? \uc774\uc131\uc560\uc790\uc5d0 \ub300\ud574 \ucde8\uc7ac\ud560 \ub54c \ube61\ucd0c\uac00\uace0 \ud074\ub7fd \uac00\uc2dc\ub098\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1204507268,"id_str":"1204507268","name":"\ud589\ubcf5\ud55c \uc774\ub780","screen_name":"seung_j27","location":"\uc2f1\uc758 \ud488 \uc548","url":null,"description":"\uc774\uc0c1\ud55c \ub9d0 \ub9ce\uc774\ud569\ub2c8\ub2e4. \uc790\uce90\ubcf8\uc9c4, 2\ucc28\ub294 \uc18c\ube44\ub9cc. \/\uc0ac\ud37c, \ucd5c\uad70 : \uc67c\uc190\uc758\ud751\uc5fc\ub8e1\/ \uc2f1 \uc0ac\ub791\ud574~! \ud5e4\ub354\ub294 \uc740\ub4c0\ub2d8\uc774!","protected":false,"verified":false,"followers_count":130,"friends_count":185,"listed_count":1,"favourites_count":1272,"statuses_count":29096,"created_at":"Thu Feb 21 12:30:49 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"1BBBDB","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653796474422099968\/kho81YiA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653796474422099968\/kho81YiA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204507268\/1437019483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:38:03 +0000 2015","id":663681957277003776,"id_str":"663681957277003776","text":"\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc544\ub2c8 \uc65c \uc8c4\ub2e4 \ub3d9\uc131\uc560\uc790\ub97c \ucde8\uc7ac\ud560 \ub54c \uac8c\uc774 \ucc1c\ubc29\uc744 \uac00\uace0 \uac8c\uc774 \ud074\ub7fd\uc744 \uac00\uc138\uc694? \uc774\uc131\uc560\uc790\uc5d0 \ub300\ud574 \ucde8\uc7ac\ud560 \ub54c \ube61\ucd0c\uac00\uace0 \ud074\ub7fd \uac00\uc2dc\ub098\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2996129888,"id_str":"2996129888","name":"\ud5e8\uc9c4","screen_name":"hi_euh","location":null,"url":null,"description":"\uc544\uc774..\uc11c\uc6b8....\uc720..","protected":false,"verified":false,"followers_count":341,"friends_count":231,"listed_count":2,"favourites_count":6053,"statuses_count":13036,"created_at":"Sun Jan 25 18:13:54 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655406560798113792\/4cVJzKMf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655406560798113792\/4cVJzKMf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2996129888\/1445707461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1632,"favorite_count":125,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hi_euh","name":"\ud5e8\uc9c4","id":2996129888,"id_str":"2996129888","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080097666"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389128193,"id_str":"663728152389128193","text":"i want a bouquet of tulips :<","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2268584528,"id_str":"2268584528","name":"kekby","screen_name":"qstnaltf_","location":"selangor","url":"http:\/\/instagram.com\/qstnaltf_","description":"life goals: to be an intelligent, beautiful and rich woman before 30","protected":false,"verified":false,"followers_count":166,"friends_count":129,"listed_count":1,"favourites_count":1052,"statuses_count":7249,"created_at":"Mon Dec 30 09:02:30 +0000 2013","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529599987357720576\/N3Q6vVd3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529599987357720576\/N3Q6vVd3.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657551980114542596\/LEkEN-75_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657551980114542596\/LEkEN-75_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2268584528\/1439899881","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080097659"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152418521088,"id_str":"663728152418521088","text":"RT @campzxzx: \u0e21\u0e31\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e41\u0e22\u0e48\u0e25\u0e07\u0e2d\u0e35\u0e01\u0e40\u0e40\u0e25\u0e49\u0e27\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e01\u0e39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2893530739,"id_str":"2893530739","name":"alone.","screen_name":"ninidchada","location":"IG : nid_nidchada","url":null,"description":"\u0e08\u0e30\u0e1c\u0e48\u0e32\u0e19\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22\u0e14\u0e35 \u263b","protected":false,"verified":false,"followers_count":142,"friends_count":182,"listed_count":0,"favourites_count":683,"statuses_count":15142,"created_at":"Sat Nov 08 06:55:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663317412318609408\/UCR6ZNmq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663317412318609408\/UCR6ZNmq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2893530739\/1446982191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:54 +0000 2015","id":663727216828661760,"id_str":"663727216828661760","text":"\u0e21\u0e31\u0e19\u0e40\u0e23\u0e34\u0e48\u0e21\u0e41\u0e22\u0e48\u0e25\u0e07\u0e2d\u0e35\u0e01\u0e40\u0e40\u0e25\u0e49\u0e27\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e01\u0e39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1691017135,"id_str":"1691017135","name":"\u0e41\u0e04\u0e49\u0e21\u0e1b\u0e31\u0e2a","screen_name":"campzxzx","location":null,"url":"https:\/\/Instagram.com\/campnatta\/","description":"\u0e1e\u0e37\u0e49\u0e19\u0e17\u0e35\u0e48\u0e23\u0e30\u0e1a\u0e32\u0e22\u0e04\u0e27\u0e32\u0e21\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01 ____S___N______S___D___ Swk 5.6 \u24a4\u24a2 CampNatta ......\u2026\u0e19\u0e2d\u0e19\u0e44\u0e14\u0e49\u0e17\u0e38\u0e01\u0e17\u0e35\u0e48","protected":false,"verified":false,"followers_count":1340,"friends_count":183,"listed_count":1,"favourites_count":335,"statuses_count":16061,"created_at":"Thu Aug 22 12:52:25 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180038428\/1PFO3Vky.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180038428\/1PFO3Vky.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693655283118080\/kvKGu4H9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693655283118080\/kvKGu4H9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1691017135\/1443720182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"campzxzx","name":"\u0e41\u0e04\u0e49\u0e21\u0e1b\u0e31\u0e2a","id":1691017135,"id_str":"1691017135","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080097666"} +{"delete":{"status":{"id":519411245015785472,"id_str":"519411245015785472","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080097919"}} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152393351168,"id_str":"663728152393351168","text":"\u524d\u7530\u5065\u592a\u6295\u624b\u3001\u5742\u672c\u52c7\u4eba\u9078\u624b\u3002\n\n\u30b0\u30fc\u30bf\u30c3\u30c1\u3059\u304d\u301c\n\n2015.11.6 https:\/\/t.co\/N4Uakl9eWJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261778786,"id_str":"2261778786","name":"\u3072\u304b\u308a","screen_name":"0527hikari","location":"\u3075\u304f\u304a\u304b \u304f\u308b\u3081","url":"http:\/\/twpf.jp\/0527hikari","description":"\uff0aHAWKS\uff0a#46#43#5\uff0a\u5168\u54e1\uff0a\u91ce\u7403\u9078\u624b\u306e\u304d\u3089\u304d\u3089\u3048\u304c\u304a\u304c\u3060\u3044\u3059\u304d\uff0a\u304b\u3081\u3089\u52c9\u5f37\u4e2d\uff0a\u8ee2\u8f09\u30fb\u52a0\u5de5\u304a\u65ad\u308a\uff0a\u4fdd\u5b58\u306e\u969b\u306b\u306f\u4e00\u8a00\u3044\u305f\u3060\u3051\u308b\u3068\u559c\u3073\u307e\u3059\uff0a\u307e\u305a\u306fURL\u3092\u307d\u3061\u3063\u3068\u2193\uff0a","protected":false,"verified":false,"followers_count":146,"friends_count":94,"listed_count":3,"favourites_count":14081,"statuses_count":2568,"created_at":"Wed Dec 25 18:43:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663652648101351424\/nokz30Bh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663652648101351424\/nokz30Bh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261778786\/1445130448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728141790113792,"id_str":"663728141790113792","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOnbUcAAvRrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOnbUcAAvRrS.jpg","url":"https:\/\/t.co\/N4Uakl9eWJ","display_url":"pic.twitter.com\/N4Uakl9eWJ","expanded_url":"http:\/\/twitter.com\/0527hikari\/status\/663728152393351168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728141790113792,"id_str":"663728141790113792","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJOnbUcAAvRrS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJOnbUcAAvRrS.jpg","url":"https:\/\/t.co\/N4Uakl9eWJ","display_url":"pic.twitter.com\/N4Uakl9eWJ","expanded_url":"http:\/\/twitter.com\/0527hikari\/status\/663728152393351168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080097660"} +{"created_at":"Mon Nov 09 14:41:37 +0000 2015","id":663728152389287936,"id_str":"663728152389287936","text":"RT @ohsamaisalive: La espantosa gabriela cerruti d campa\u00f1a con echarri, mir\u00e1s, barrientos y romano, militontos subsidiados\n#NuncaM\u00e1sK https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105217250,"id_str":"105217250","name":"Fabi\u00e1n P. Emanuelli","screen_name":"faemper","location":"Argentina","url":null,"description":"Profesor Nacional de ingl\u00e9s. Traductor T\u00e9cnico Universitario de ingl\u00e9s. Futuro Traductor P\u00fablico e Int\u00e9rprete.","protected":false,"verified":false,"followers_count":1222,"friends_count":920,"listed_count":11,"favourites_count":8588,"statuses_count":31768,"created_at":"Fri Jan 15 18:28:20 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1302513539\/091107_214127_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1302513539\/091107_214127_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:48:55 +0000 2015","id":663563893495738368,"id_str":"663563893495738368","text":"La espantosa gabriela cerruti d campa\u00f1a con echarri, mir\u00e1s, barrientos y romano, militontos subsidiados\n#NuncaM\u00e1sK https:\/\/t.co\/h1lY5hYbUn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1011748417,"id_str":"1011748417","name":" L-ARGO YUDA.","screen_name":"ohsamaisalive","location":"Eslovaquia Central","url":null,"description":"Bipolar,bisexual,bisagra,bife con pur\u00e9. Entrenadora de nutrias con capacidades diferentes De la ensalada de frutas no me como la banana","protected":false,"verified":false,"followers_count":6602,"friends_count":3599,"listed_count":27,"favourites_count":48506,"statuses_count":54684,"created_at":"Fri Dec 14 18:52:41 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000061051857\/7edbe08c01a5e9d83b239f0fafd23055.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000061051857\/7edbe08c01a5e9d83b239f0fafd23055.jpeg","profile_background_tile":true,"profile_link_color":"0099CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633112466969526272\/TUaH8gWR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633112466969526272\/TUaH8gWR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1011748417\/1411049073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"018f1cde6bad9747","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/018f1cde6bad9747.json","place_type":"city","name":"Ciudad Aut\u00f3noma de Buenos Aires","full_name":"Ciudad Aut\u00f3noma de Buenos Aires, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-58.531792,-34.674453],[-58.531792,-34.534177],[-58.353494,-34.534177],[-58.353494,-34.674453]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":23,"entities":{"hashtags":[{"text":"NuncaM\u00e1sK","indices":[104,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663563892472348672,"id_str":"663563892472348672","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","url":"https:\/\/t.co\/h1lY5hYbUn","display_url":"pic.twitter.com\/h1lY5hYbUn","expanded_url":"http:\/\/twitter.com\/ohsamaisalive\/status\/663563893495738368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663563892472348672,"id_str":"663563892472348672","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","url":"https:\/\/t.co\/h1lY5hYbUn","display_url":"pic.twitter.com\/h1lY5hYbUn","expanded_url":"http:\/\/twitter.com\/ohsamaisalive\/status\/663563893495738368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NuncaM\u00e1sK","indices":[123,133]}],"urls":[],"user_mentions":[{"screen_name":"ohsamaisalive","name":" L-ARGO YUDA.","id":1011748417,"id_str":"1011748417","indices":[3,17]}],"symbols":[],"media":[{"id":663563892472348672,"id_str":"663563892472348672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","url":"https:\/\/t.co\/h1lY5hYbUn","display_url":"pic.twitter.com\/h1lY5hYbUn","expanded_url":"http:\/\/twitter.com\/ohsamaisalive\/status\/663563893495738368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663563893495738368,"source_status_id_str":"663563893495738368","source_user_id":1011748417,"source_user_id_str":"1011748417"}]},"extended_entities":{"media":[{"id":663563892472348672,"id_str":"663563892472348672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVz2DCXAAAt55B.jpg","url":"https:\/\/t.co\/h1lY5hYbUn","display_url":"pic.twitter.com\/h1lY5hYbUn","expanded_url":"http:\/\/twitter.com\/ohsamaisalive\/status\/663563893495738368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663563893495738368,"source_status_id_str":"663563893495738368","source_user_id":1011748417,"source_user_id_str":"1011748417"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080097659"} +{"delete":{"status":{"id":632566608590843904,"id_str":"632566608590843904","user_id":2563358538,"user_id_str":"2563358538"},"timestamp_ms":"1447080098446"}} +{"delete":{"status":{"id":245311872197345280,"id_str":"245311872197345280","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080098555"}} +{"delete":{"status":{"id":622858736801968128,"id_str":"622858736801968128","user_id":2398610028,"user_id_str":"2398610028"},"timestamp_ms":"1447080098612"}} +{"delete":{"status":{"id":519407822451126272,"id_str":"519407822451126272","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080098580"}} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579397632,"id_str":"663728156579397632","text":"Daeeee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1876811462,"id_str":"1876811462","name":"Luana","screen_name":"_umahunter1","location":null,"url":null,"description":"The best part was that i found you.\n 08\/09 \u2665","protected":false,"verified":false,"followers_count":454,"friends_count":101,"listed_count":1,"favourites_count":1600,"statuses_count":40512,"created_at":"Tue Sep 17 20:27:36 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661262079735803904\/7SbBaAi5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661262079735803904\/7SbBaAi5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1876811462\/1446841976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080098658"} +{"delete":{"status":{"id":645421584090427392,"id_str":"645421584090427392","user_id":2492821458,"user_id_str":"2492821458"},"timestamp_ms":"1447080098657"}} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583571456,"id_str":"663728156583571456","text":"Kaybeden ben deyil sen olursun \u263a\udbb8\udf47","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2558971982,"id_str":"2558971982","name":"nur \u0131\u015f\u0131k","screen_name":"kevsernur20","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":24,"listed_count":0,"favourites_count":171,"statuses_count":476,"created_at":"Tue Jun 10 12:55:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156596150272,"id_str":"663728156596150272","text":"You know in try but I don't do too well with apologies","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4139950697,"id_str":"4139950697","name":"JUSTIN BIEBER","screen_name":"illegalbieberr","location":null,"url":null,"description":"if you can't find heaven; \nI'll walk trough hell with you \/\/ [L]GBT || 18 \\\\","protected":false,"verified":false,"followers_count":7,"friends_count":7,"listed_count":0,"favourites_count":11,"statuses_count":18,"created_at":"Sun Nov 08 07:06:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663251636920426496\/DdTFwciZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663251636920426496\/DdTFwciZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4139950697\/1446966563","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098662"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591980544,"id_str":"663728156591980544","text":"RT @Samuel49502: Rumblr, the #Tinder for Fighting' app, to launch beta Nov. 9 https:\/\/t.co\/KkNmUAbQCP https:\/\/t.co\/8Bol1Licth","source":"\u003ca href=\"http:\/\/www.echofon.com\" rel=\"nofollow\"\u003eEchofon Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350786737,"id_str":"350786737","name":"Sarah Fer","screen_name":"AquaMan419","location":null,"url":"http:\/\/www.soundcloud.com\/d4ltbeats","description":"Too psycho for you.\n\nBedroom Composer.\n\nFour to the floor, bihh you should know the score.","protected":false,"verified":false,"followers_count":140,"friends_count":243,"listed_count":17,"favourites_count":5570,"statuses_count":60619,"created_at":"Mon Aug 08 09:27:06 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/754435127\/af112be2b2fc681e079aaadf7b4b2898.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/754435127\/af112be2b2fc681e079aaadf7b4b2898.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552898120368263168\/1dRDYYvq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552898120368263168\/1dRDYYvq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350786737\/1436811316","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:56 +0000 2015","id":663726972368003072,"id_str":"663726972368003072","text":"Rumblr, the #Tinder for Fighting' app, to launch beta Nov. 9 https:\/\/t.co\/KkNmUAbQCP https:\/\/t.co\/8Bol1Licth","source":"\u003ca href=\"http:\/\/samuel49502.webs.com\" rel=\"nofollow\"\u003eSamuel495021569\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3302368039,"id_str":"3302368039","name":"Samuel Sisto ","screen_name":"Samuel49502","location":null,"url":null,"description":"Beauty appreciator | Health and Behavioral Psychologist | Soul Esteem Builder | Fitness enthusiast","protected":false,"verified":false,"followers_count":246,"friends_count":1243,"listed_count":65,"favourites_count":87,"statuses_count":2482,"created_at":"Fri Jul 31 10:26:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627063064873951232\/HXZQSoC__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627063064873951232\/HXZQSoC__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Tinder","indices":[12,19]}],"urls":[{"url":"https:\/\/t.co\/KkNmUAbQCP","expanded_url":"http:\/\/toptid.us\/sc41p","display_url":"toptid.us\/sc41p","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":663726972091150336,"id_str":"663726972091150336","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","url":"https:\/\/t.co\/8Bol1Licth","display_url":"pic.twitter.com\/8Bol1Licth","expanded_url":"http:\/\/twitter.com\/Samuel49502\/status\/663726972368003072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726972091150336,"id_str":"663726972091150336","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","url":"https:\/\/t.co\/8Bol1Licth","display_url":"pic.twitter.com\/8Bol1Licth","expanded_url":"http:\/\/twitter.com\/Samuel49502\/status\/663726972368003072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Tinder","indices":[29,36]}],"urls":[{"url":"https:\/\/t.co\/KkNmUAbQCP","expanded_url":"http:\/\/toptid.us\/sc41p","display_url":"toptid.us\/sc41p","indices":[78,101]}],"user_mentions":[{"screen_name":"Samuel49502","name":"Samuel Sisto ","id":3302368039,"id_str":"3302368039","indices":[3,15]}],"symbols":[],"media":[{"id":663726972091150336,"id_str":"663726972091150336","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","url":"https:\/\/t.co\/8Bol1Licth","display_url":"pic.twitter.com\/8Bol1Licth","expanded_url":"http:\/\/twitter.com\/Samuel49502\/status\/663726972368003072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726972368003072,"source_status_id_str":"663726972368003072","source_user_id":3302368039,"source_user_id_str":"3302368039"}]},"extended_entities":{"media":[{"id":663726972091150336,"id_str":"663726972091150336","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIKh9WsAAIw0n.jpg","url":"https:\/\/t.co\/8Bol1Licth","display_url":"pic.twitter.com\/8Bol1Licth","expanded_url":"http:\/\/twitter.com\/Samuel49502\/status\/663726972368003072\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663726972368003072,"source_status_id_str":"663726972368003072","source_user_id":3302368039,"source_user_id_str":"3302368039"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591972352,"id_str":"663728156591972352","text":"It's at the point where I for sure need a trim though.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2967905734,"id_str":"2967905734","name":"50 Shades of McBray","screen_name":"mcbreeeezy","location":"Michigan State University","url":null,"description":"Real choppa boy, real stick sparker.","protected":false,"verified":false,"followers_count":251,"friends_count":208,"listed_count":3,"favourites_count":391,"statuses_count":10209,"created_at":"Thu Jan 08 14:27:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662466112744005632\/RqfC9dqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662466112744005632\/RqfC9dqy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2967905734\/1446779360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583600128,"id_str":"663728156583600128","text":"mulheres s\u00e3o estranhas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727287439855617,"in_reply_to_status_id_str":"663727287439855617","in_reply_to_user_id":3389110432,"in_reply_to_user_id_str":"3389110432","in_reply_to_screen_name":"myssiyou","user":{"id":3389110432,"id_str":"3389110432","name":"my$$","screen_name":"myssiyou","location":"manaus ","url":"http:\/\/www.black-beauty-lana.tumblr.com","description":"sei la mano","protected":false,"verified":false,"followers_count":241,"friends_count":193,"listed_count":0,"favourites_count":184,"statuses_count":10326,"created_at":"Thu Jul 23 11:51:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663181317425770496\/XEvVfEZ7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663181317425770496\/XEvVfEZ7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389110432\/1446567747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583600129,"id_str":"663728156583600129","text":"RT @epursito: -\u00bfA qu\u00e9 te dedic\u00e1s?\n-Escucho las conversaciones de la gente y si no piensan como yo los mato, \u00bfvos?\n-Soy vegano\n-AH PERO SOS \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161426974,"id_str":"161426974","name":"Andres Sarco","screen_name":"borrachinfino","location":"Me encanta la buena vida","url":null,"description":null,"protected":false,"verified":false,"followers_count":142,"friends_count":155,"listed_count":2,"favourites_count":3287,"statuses_count":3669,"created_at":"Wed Jun 30 20:43:47 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000302997074\/35709adae7aab15e75e9336b5b895175_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000302997074\/35709adae7aab15e75e9336b5b895175_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161426974\/1391036560","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Dec 09 21:45:50 +0000 2014","id":542434974498971649,"id_str":"542434974498971649","text":"-\u00bfA qu\u00e9 te dedic\u00e1s?\n-Escucho las conversaciones de la gente y si no piensan como yo los mato, \u00bfvos?\n-Soy vegano\n-AH PERO SOS RE INTOLERANTE","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":35112975,"id_str":"35112975","name":"Epur\u2122","screen_name":"epursito","location":"Little Italy porte\u00f1o","url":"http:\/\/favstar.fm\/users\/epursito\/recent","description":"Cuando me haga travesti me voy a dejar mi nombre de var\u00f3n, como hizo la Sirenita.\nVeo caritas en las cosas. Me explot\u00f3 una botella de @CocaColaZeroAr. #TeamSlip","protected":false,"verified":false,"followers_count":12742,"friends_count":437,"listed_count":77,"favourites_count":260634,"statuses_count":70721,"created_at":"Sat Apr 25 02:05:00 +0000 2009","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659898068029022208\/Pfz_78L9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659898068029022208\/Pfz_78L9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/35112975\/1434070528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":62,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"epursito","name":"Epur\u2122","id":35112975,"id_str":"35112975","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579270656,"id_str":"663728156579270656","text":"\u5b9f\u306f\u306d\u304e\u305d\u3046\u3044\u3046\u304b\u3089\u307f\u6b7b\u306c\u307b\u3069\u597d\u304d\u3060\u304b\u3089( \u2022\u0300\u03c9\u2022\u0301 )\u0648","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1001133559,"id_str":"1001133559","name":"Rea:\u3048\u3073\u3075\u308a\u3083\u30fc@HBC\u4e0b\u3063\u7aef","screen_name":"negi_ebiten","location":"\u30d2\u30e9\u30e1\u304c\u4e18\u56e3\u5730305\u53f7\u5ba4","url":null,"description":"\u8a2a\u554f\u3042\u308a\u304c\u3068\u30de\u30f3\u30e1\u30f3\u30df \u30a6\u30c7\u30de\u30a8S\u5b9f\u529b\u306f\u3082\u3063\u3068\u5f31\u3044\u306f\u305a \u6b66\u5668\u6a21\u7d22\u4e2d ID\u306fmiku_negi \u30c1\u30fc\u30e0Rea\u6240\u5c5e \u30ec\u30ae\u30e5\u30e9\u30fc\u98db\u3093\u3067\u304d\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\uff01 \u30bc\u30eb\u4f1d\u30d5\u30a1\u30f3OP\u53a8 \u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u308c\u308b\u3068\u559c\u3073\u307e\u3059(\u25cf\u00b4\u03c9`\u25cf)\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093 Skype\u6709LINE\u6709\u4ef2\u826f\u304f\u306a\u3063\u3066\u304b\u3089\u3067","protected":false,"verified":false,"followers_count":360,"friends_count":351,"listed_count":11,"favourites_count":8754,"statuses_count":51800,"created_at":"Mon Dec 10 07:12:47 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0E513","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/850470653\/5acb23878e1dc17fb9c1eda3ea5a02e9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/850470653\/5acb23878e1dc17fb9c1eda3ea5a02e9.jpeg","profile_background_tile":false,"profile_link_color":"F29305","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663282527382036480\/Ih_r9GSe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663282527382036480\/Ih_r9GSe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1001133559\/1443027475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587626496,"id_str":"663728156587626496","text":"https:\/\/t.co\/gITj2ms7si \u58fd\u5c4b\uff0c\u300c\u8266\u3053\u308c\u300d\u306e\u99c6\u9010\u8266\u300c\u96f7\u300d\u3092\u30c7\u30d5\u30a9\u30eb\u30e1\u30d5\u30a3\u30ae\u30e5\u30a2\u5316\u30022015\u5e745\u6708\u306b\u767a\u58f2","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2309341028,"id_str":"2309341028","name":"\u3070\u3082\u305b\u3093@2\u65e5\u76ee\u53c2\u6226","screen_name":"bamosen","location":null,"url":null,"description":"\u6c17\u306b\u306a\u3063\u305f\u3053\u3068\u3092\u5ea6\u3005\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u30b7\u30a7\u30a2\u591a\u3081\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1116,"friends_count":845,"listed_count":8,"favourites_count":0,"statuses_count":51064,"created_at":"Sat Jan 25 03:29:25 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625107807956668416\/9SN4kCw5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625107807956668416\/9SN4kCw5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gITj2ms7si","expanded_url":"http:\/\/piton.xyz\/32751","display_url":"piton.xyz\/32751","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579266561,"id_str":"663728156579266561","text":"@Inacefa \u30ab\u30aa\u30b9\u30d6\u30ec\u30a4\u30ab\u30fc\u541b\u306b\u9811\u5f35\u3063\u3066\u4f5c\u3063\u3066\u3082\u3089\u3046\u3057\u304b\u306a\u3044\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727802479280128,"in_reply_to_status_id_str":"663727802479280128","in_reply_to_user_id":277033210,"in_reply_to_user_id_str":"277033210","in_reply_to_screen_name":"Inacefa","user":{"id":375092906,"id_str":"375092906","name":"\u306f\u3054\u308d\u3082P","screen_name":"hgrm8","location":null,"url":null,"description":"\u5343\u65e9\u3001\u5468\u5b50\u3001\u30c8\u30e9\u30a4\u30a2\u30c9P","protected":false,"verified":false,"followers_count":182,"friends_count":530,"listed_count":6,"favourites_count":3152,"statuses_count":28957,"created_at":"Sat Sep 17 13:54:23 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627066605340459008\/TlcMjlzW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627066605340459008\/TlcMjlzW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/375092906\/1415632224","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Inacefa","name":"\u30a4\u30ca\u30b9\u30d5\u30a1","id":277033210,"id_str":"277033210","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156596117504,"id_str":"663728156596117504","text":"RT @justinbieber: #BIEBERWEEK starts on @TheEllenShow tomorrow! #PURPOSE ON FRIDAY!! https:\/\/t.co\/H797XW66WV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1411477458,"id_str":"1411477458","name":"Purpose 13Nov","screen_name":"ownbelij","location":"Los Angeles ","url":null,"description":"Justin thank you for existing, no matter what \u00fc do, always be on your side , I love you very kind \u2022 God","protected":false,"verified":false,"followers_count":1129,"friends_count":739,"listed_count":0,"favourites_count":89,"statuses_count":10889,"created_at":"Tue May 07 23:21:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658826533327364096\/j_Xc2Nnt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658826533327364096\/j_Xc2Nnt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1411477458\/1446695692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:56:01 +0000 2015","id":663641180521955328,"id_str":"663641180521955328","text":"#BIEBERWEEK starts on @TheEllenShow tomorrow! #PURPOSE ON FRIDAY!! https:\/\/t.co\/H797XW66WV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":27260086,"id_str":"27260086","name":"Justin Bieber","screen_name":"justinbieber","location":null,"url":"http:\/\/smarturl.it\/JBPurpose","description":"Let's make the world better. Join @officialfahlo and add me on @shots 'justinbieber'. OUR new single SORRY out now. OUR new album PURPOSE out Nov 13","protected":false,"verified":true,"followers_count":69382958,"friends_count":240812,"listed_count":627140,"favourites_count":1894,"statuses_count":29961,"created_at":"Sat Mar 28 16:41:22 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460851381025267712\/RU-xit8T.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652596362073272320\/Zv6K-clv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27260086\/1446487498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18944,"favorite_count":26440,"entities":{"hashtags":[{"text":"BIEBERWEEK","indices":[0,11]},{"text":"PURPOSE","indices":[46,54]}],"urls":[],"user_mentions":[{"screen_name":"TheEllenShow","name":"Ellen DeGeneres","id":15846407,"id_str":"15846407","indices":[22,35]}],"symbols":[],"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BIEBERWEEK","indices":[18,29]},{"text":"PURPOSE","indices":[64,72]}],"urls":[],"user_mentions":[{"screen_name":"justinbieber","name":"Justin Bieber","id":27260086,"id_str":"27260086","indices":[3,16]},{"screen_name":"TheEllenShow","name":"Ellen DeGeneres","id":15846407,"id_str":"15846407","indices":[40,53]}],"symbols":[],"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663641180521955328,"source_status_id_str":"663641180521955328","source_user_id":27260086,"source_user_id_str":"27260086"}]},"extended_entities":{"media":[{"id":663641166886256640,"id_str":"663641166886256640","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW6IAqUwAAXy9N.jpg","url":"https:\/\/t.co\/H797XW66WV","display_url":"pic.twitter.com\/H797XW66WV","expanded_url":"http:\/\/twitter.com\/justinbieber\/status\/663641180521955328\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663641180521955328,"source_status_id_str":"663641180521955328","source_user_id":27260086,"source_user_id_str":"27260086"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098662"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600176640,"id_str":"663728156600176640","text":"RT @Gurmeetramrahim: #MSG2onTheTopInRajasthan God bless you all https:\/\/t.co\/mP04SWGBXW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2871346400,"id_str":"2871346400","name":"Sonam","screen_name":"insan_sonam","location":"sds","url":null,"description":"nutritionist ... mba.... x student little roses block","protected":false,"verified":false,"followers_count":122,"friends_count":73,"listed_count":0,"favourites_count":582,"statuses_count":594,"created_at":"Wed Oct 22 16:40:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577334410623614977\/H-PFYK_6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577334410623614977\/H-PFYK_6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:23:50 +0000 2015","id":663708578235072516,"id_str":"663708578235072516","text":"#MSG2onTheTopInRajasthan God bless you all https:\/\/t.co\/mP04SWGBXW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2852359916,"id_str":"2852359916","name":"GURMEET RAM RAHIM","screen_name":"Gurmeetramrahim","location":"sirsa(haryana) India","url":"http:\/\/www.gurmeetramrahim.in","description":"Spiritual Saint\/philanthropist\/versatile singer\/allrounder sportsperson\/film director\/art director\/music director\/script writer\/lyricist\/autobiographer\/DOP\/","protected":false,"verified":true,"followers_count":1399185,"friends_count":0,"listed_count":757,"favourites_count":7,"statuses_count":935,"created_at":"Sat Oct 11 20:50:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662214924609830912\/jzxFlsbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2852359916\/1443248390","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3056,"favorite_count":3032,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708555325796352,"id_str":"663708555325796352","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","url":"https:\/\/t.co\/mP04SWGBXW","display_url":"pic.twitter.com\/mP04SWGBXW","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663708578235072516\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708555325796352,"id_str":"663708555325796352","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","url":"https:\/\/t.co\/mP04SWGBXW","display_url":"pic.twitter.com\/mP04SWGBXW","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663708578235072516\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[21,45]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[3,19]}],"symbols":[],"media":[{"id":663708555325796352,"id_str":"663708555325796352","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","url":"https:\/\/t.co\/mP04SWGBXW","display_url":"pic.twitter.com\/mP04SWGBXW","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663708578235072516\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663708578235072516,"source_status_id_str":"663708578235072516","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"extended_entities":{"media":[{"id":663708555325796352,"id_str":"663708555325796352","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3aiKU8AAVLAB.jpg","url":"https:\/\/t.co\/mP04SWGBXW","display_url":"pic.twitter.com\/mP04SWGBXW","expanded_url":"http:\/\/twitter.com\/Gurmeetramrahim\/status\/663708578235072516\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663708578235072516,"source_status_id_str":"663708578235072516","source_user_id":2852359916,"source_user_id_str":"2852359916"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579250180,"id_str":"663728156579250180","text":"RT @virginangelic: @POZboySG stage 2.5 tak ada ah?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303493301,"id_str":"303493301","name":"Happiness is Within ","screen_name":"POZboySG","location":"Singapore","url":"http:\/\/www.pozboysg.tumblr.com","description":"Tough talking Singaporean HIV+ animal welfare activist & #crazycatlady. Be Kind To All. \n\n\u2022 live, laugh, & love. :) \n(views are mine, duh)\r\n\r\npozboysg@gmail.com","protected":false,"verified":false,"followers_count":2019,"friends_count":799,"listed_count":56,"favourites_count":3673,"statuses_count":96493,"created_at":"Sun May 22 23:49:02 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCEBB6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000081331517\/85088deacc3948bd9fc7bbe886f97193.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000081331517\/85088deacc3948bd9fc7bbe886f97193.jpeg","profile_background_tile":true,"profile_link_color":"CE7834","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"5E412F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483662586009759745\/GN5_vVEP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483662586009759745\/GN5_vVEP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303493301\/1387385330","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727697625923584,"id_str":"663727697625923584","text":"@POZboySG stage 2.5 tak ada ah?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727399347945472,"in_reply_to_status_id_str":"663727399347945472","in_reply_to_user_id":303493301,"in_reply_to_user_id_str":"303493301","in_reply_to_screen_name":"POZboySG","user":{"id":44093058,"id_str":"44093058","name":"Kanchiong K.","screen_name":"virginangelic","location":null,"url":null,"description":"Guess i can't be considered a bimbo any longer. Dang it! I complain...I mean tweet a lot and give gold stars liberally.","protected":false,"verified":false,"followers_count":160,"friends_count":363,"listed_count":9,"favourites_count":27400,"statuses_count":33748,"created_at":"Tue Jun 02 09:56:35 +0000 2009","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595204595854352384\/gviF21-Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595204595854352384\/gviF21-Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44093058\/1430743030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"POZboySG","name":"Happiness is Within ","id":303493301,"id_str":"303493301","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"virginangelic","name":"Kanchiong K.","id":44093058,"id_str":"44093058","indices":[3,17]},{"screen_name":"POZboySG","name":"Happiness is Within ","id":303493301,"id_str":"303493301","indices":[19,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587638784,"id_str":"663728156587638784","text":"Esta es la programaci\u00f3n para la Feria de la Chinita 2015 https:\/\/t.co\/oGXpxZIZcQ","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1966000838,"id_str":"1966000838","name":"Noti Interesante","screen_name":"Noti_insolito","location":null,"url":null,"description":"Si quieres mantenerte informado,al tanto de las novedades,est\u00e1s en el lugar adecuado.","protected":false,"verified":false,"followers_count":776,"friends_count":918,"listed_count":12,"favourites_count":4,"statuses_count":257138,"created_at":"Thu Oct 17 03:30:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000099489636\/978bf092fccb7bed16097bbf96393965.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000099489636\/978bf092fccb7bed16097bbf96393965.jpeg","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000631633347\/4b468b6a94126a8fa057cbba876c4f95_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000631633347\/4b468b6a94126a8fa057cbba876c4f95_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1966000838\/1382418188","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oGXpxZIZcQ","expanded_url":"http:\/\/dlvr.it\/Chflpx","display_url":"dlvr.it\/Chflpx","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587626497,"id_str":"663728156587626497","text":"RT @skrl_takuan: \uc5b8\uc81c\uae4c\uc9c0 \uce68\ubb35\ud558\uc2e4 \uc0dd\uac01\uc774\uc2e0\uac00\uc694?\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \n\ud32c\ub4e4\uc740 \uae30\ub2e4\ub9ac\uace0 \uc788\uc2b5\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3837608594,"id_str":"3837608594","name":"\uc790\ubabd","screen_name":"wkahd66","location":null,"url":null,"description":"\ubfc5","protected":false,"verified":false,"followers_count":4,"friends_count":5,"listed_count":0,"favourites_count":3,"statuses_count":187,"created_at":"Fri Oct 09 15:17:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716844910473216\/TBfQJ3qd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716844910473216\/TBfQJ3qd_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:25 +0000 2015","id":663726844701573120,"id_str":"663726844701573120","text":"\uc5b8\uc81c\uae4c\uc9c0 \uce68\ubb35\ud558\uc2e4 \uc0dd\uac01\uc774\uc2e0\uac00\uc694?\n#\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \n\ud32c\ub4e4\uc740 \uae30\ub2e4\ub9ac\uace0 \uc788\uc2b5\ub2c8\ub2e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2940653197,"id_str":"2940653197","name":"skrl\/\ub098\uae30","screen_name":"skrl_takuan","location":"Cool_kids_never_die","url":null,"description":"\ud06c\ub85c\uc2a4\uc9c4\uc218\ub2c8\/\ub178\ub2f5\ud6c4\uc8e0-\ud0c0\ucfe0\uc548\/\ud0d8\uc2e0\/\uc900\ud0d8\/\uc62c\ub77c\uc6b4\ub354","protected":false,"verified":false,"followers_count":127,"friends_count":188,"listed_count":1,"favourites_count":2564,"statuses_count":10725,"created_at":"Tue Dec 23 11:28:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663621187050696704\/OC3Nd15p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663621187050696704\/OC3Nd15p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2940653197\/1446794093","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[18,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[35,49]}],"urls":[],"user_mentions":[{"screen_name":"skrl_takuan","name":"skrl\/\ub098\uae30","id":2940653197,"id_str":"2940653197","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156608561153,"id_str":"663728156608561153","text":"RT @free24apps: 7 Minute Workout Pro Health & Fitness Utilities iPhone App ***** $0. ... https:\/\/t.co\/cEG9JX95kj https:\/\/t.co\/xE5TjvmNWf","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2491589184,"id_str":"2491589184","name":"\uae40\ud788\ub098\ud0c0","screen_name":"lovegunaheart","location":"\u5927\u962a","url":null,"description":"\uff39Gfamily Love\u2665\ufe0e\u7df4\u7fd2\u751f\u306b\u306a\u308b\u203c\ufe0e\u203c\ufe0e EXO.Girlsday.ulzzang.....","protected":false,"verified":false,"followers_count":15615,"friends_count":16584,"listed_count":275,"favourites_count":15253,"statuses_count":262800,"created_at":"Mon May 12 15:22:36 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465876953090641920\/Hs2J9Dmi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465876953090641920\/Hs2J9Dmi.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465876608457252864\/XNkG0yOw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465876608457252864\/XNkG0yOw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2491589184\/1399908622","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:16 +0000 2015","id":663728064656896001,"id_str":"663728064656896001","text":"7 Minute Workout Pro Health & Fitness Utilities iPhone App ***** $0. ... https:\/\/t.co\/cEG9JX95kj https:\/\/t.co\/xE5TjvmNWf","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2234609616,"id_str":"2234609616","name":"free24apps","screen_name":"free24apps","location":"Cupertino, CA","url":"http:\/\/www.free24apps.com","description":"#iOS #apps #iphone #ipod #ipad #ipod #android \nhttp:\/\/pinterest.com\/free24apps\/","protected":false,"verified":false,"followers_count":14796,"friends_count":13707,"listed_count":83,"favourites_count":2194,"statuses_count":443039,"created_at":"Sat Dec 07 14:34:11 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2234609616\/1389738920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cEG9JX95kj","expanded_url":"http:\/\/www.free24apps.com\/?aid=657222343","display_url":"free24apps.com\/?aid=657222343","indices":[77,100]}],"user_mentions":[],"symbols":[],"media":[{"id":663728064514265088,"id_str":"663728064514265088","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","url":"https:\/\/t.co\/xE5TjvmNWf","display_url":"pic.twitter.com\/xE5TjvmNWf","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728064656896001\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728064514265088,"id_str":"663728064514265088","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","url":"https:\/\/t.co\/xE5TjvmNWf","display_url":"pic.twitter.com\/xE5TjvmNWf","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728064656896001\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cEG9JX95kj","expanded_url":"http:\/\/www.free24apps.com\/?aid=657222343","display_url":"free24apps.com\/?aid=657222343","indices":[93,116]}],"user_mentions":[{"screen_name":"free24apps","name":"free24apps","id":2234609616,"id_str":"2234609616","indices":[3,14]}],"symbols":[],"media":[{"id":663728064514265088,"id_str":"663728064514265088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","url":"https:\/\/t.co\/xE5TjvmNWf","display_url":"pic.twitter.com\/xE5TjvmNWf","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728064656896001\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}},"source_status_id":663728064656896001,"source_status_id_str":"663728064656896001","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"extended_entities":{"media":[{"id":663728064514265088,"id_str":"663728064514265088","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKHjUkAATD2m.jpg","url":"https:\/\/t.co\/xE5TjvmNWf","display_url":"pic.twitter.com\/xE5TjvmNWf","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728064656896001\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1136,"resize":"fit"},"medium":{"w":600,"h":1065,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"}},"source_status_id":663728064656896001,"source_status_id_str":"663728064656896001","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098665"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156612784128,"id_str":"663728156612784128","text":"@yua_shena \n\u3086\u3063\u3086\u3042\u307d\u3088\u306b\u304a\u3063\u3071\u3044\u304c\u3042\u308b\u3060\u3068...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726074002411520,"in_reply_to_status_id_str":"663726074002411520","in_reply_to_user_id":3022522604,"in_reply_to_user_id_str":"3022522604","in_reply_to_screen_name":"yua_shena","user":{"id":3266735510,"id_str":"3266735510","name":"\u3042\u3089\u308c\u3093\u3053\u3093","screen_name":"ararenkooon","location":"\u30d7\u30ea\u30ad\u30e5\u30a2\u306e\u8857","url":null,"description":"148cm\u306e\u7403\u4f53\u95a2\u7bc0\u30c9\u30fc\u30eb\u306b\u306a\u308a\u305f\u3044\u3002\u3072\u3088\u3063\u3053\u30ec\u30a4\u30e4\u30fc\u3067\u3059\u4e41( \u02d9\u03c9\u02d9 \u4e41)\u30c4\u30a4\u30fc\u30c8\u306f\u81ea\u64ae\u308a\u591a\u3081\u306e\u30af\u30bd\u4ed5\u69d8\u3002\u30d7\u30ea\u30ad\u30e5\u30a2\u304a\u71b111\u5468\u5e74\/\u8266\u3053\u308c\/\u30a2\u30a4\u30de\u30b9\/\u30a2\u30eb\u30da\u30b8\u30aa\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u3044\u306c\u307c\u304f\u2729\u30a2\u30fc\u30ab\u30a4\u30d6-408394-","protected":false,"verified":false,"followers_count":73,"friends_count":41,"listed_count":2,"favourites_count":476,"statuses_count":1053,"created_at":"Fri Jul 03 04:05:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637745528533463040\/SdVbakhy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637745528533463040\/SdVbakhy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3266735510\/1439822843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yua_shena","name":"\u690e\u540d\u3086\u3042@14\u30dd\u30c8\u30ec15\u30b0\u30e9\u30f3\u30dc\u30a2","id":3022522604,"id_str":"3022522604","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098666"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600201216,"id_str":"663728156600201216","text":"\u3093\u3093\u3093\u3093\u3002\u7720\u3044\u3088\u304a\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1557356856,"id_str":"1557356856","name":"\u307e\u308a\u3053\u3002","screen_name":"LikeFairy7","location":null,"url":null,"description":"\u5b66\u751f\u3062\u3083\u3042\u308a\u307e\u305b\u3093\u3002\u5927\u4eba\u3067\u3059\u3002\u65e5\u713c\u3051\u3057\u305f\u3093\u3062\u3083\u3042\u308a\u307e\u305b\u3093\u3002\u30d5\u30a1\u30f3\u30c7\u306e\u8272\u3092\u8cb7\u3044\u9593\u9055\u3048\u305f\u3060\u3051\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":49,"friends_count":52,"listed_count":1,"favourites_count":132,"statuses_count":3108,"created_at":"Sun Jun 30 06:36:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663206296527605760\/f-Aa78wj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663206296527605760\/f-Aa78wj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1557356856\/1446955723","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587761664,"id_str":"663728156587761664","text":"19 cosas que las mujeres jam\u00e1s admitiremos que nos hace felices! https:\/\/t.co\/p3kcCzMraD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33328278,"id_str":"33328278","name":"Sara Mar\u00edn \u30c4","screen_name":"DieSarKrisT","location":"Manta, Manabi, Ecuador","url":"http:\/\/www.oromartv.com","description":"Si las indirectas brillaran, Twitter ser\u00eda Las Vegas. \u00a1God's Not Dead!\nI \u2764 RNR","protected":false,"verified":false,"followers_count":688,"friends_count":655,"listed_count":1,"favourites_count":18,"statuses_count":4527,"created_at":"Sun Apr 19 22:26:32 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"07172E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470970466870390784\/gBs3EPzE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470970466870390784\/gBs3EPzE.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B3A7A8","profile_text_color":"E573A2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662759196962725888\/pVqRMstT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662759196962725888\/pVqRMstT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33328278\/1446847935","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p3kcCzMraD","expanded_url":"http:\/\/www.lamasviral.com\/vida\/19-cosas-que-las-mujeres-nunca-admitiremos-que-nos-hacen-felices\/","display_url":"lamasviral.com\/vida\/19-cosas-\u2026","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600197120,"id_str":"663728156600197120","text":"@SeunghoY93 \uc548\ub155\ud558\uc138\uc694 DAY6 YoungK \uc785\ub2c8\ub2e4. *bows*","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3246555852,"in_reply_to_user_id_str":"3246555852","in_reply_to_screen_name":"SeunghoY93","user":{"id":1181227772,"id_str":"1181227772","name":"Day6 YoungK","screen_name":"youngk993","location":"JYPERP","url":"http:\/\/day6.jype.com\/","description":"[i\ubd07 the real youngk is : @youngk1993] Day6 YoungK Stay Gold \/ Carpe Diem","protected":false,"verified":false,"followers_count":813,"friends_count":79,"listed_count":1,"favourites_count":15,"statuses_count":347,"created_at":"Fri Feb 15 05:42:42 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000000752753\/f747a5174b23f9b18bc87674c1f24bdb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000000752753\/f747a5174b23f9b18bc87674c1f24bdb.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657645939532763136\/LobzRdVY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657645939532763136\/LobzRdVY_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeunghoY93","name":"Yoo Seung Ho","id":3246555852,"id_str":"3246555852","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579250181,"id_str":"663728156579250181","text":"\u3048\u3063\u3082\u304612\u6642\u3058\u3083\u3093\u3001\u3001\u3001\u3001\u5968\u5b66\u91d1\u306b\u5168\u90e8\u6642\u9593\u53d6\u3089\u308c\u305f\u3001\u3001\u3001\u307e\u3058\u304b\u3001\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1870076304,"id_str":"1870076304","name":"\u30cf\u30b9\u30ad\u30fc\u7684\u307b\u307c@\u5e74\u8cc0\u72b6\u56fa\u5b9a","screen_name":"27xhono_reborn","location":"\u25ceNext \u25ba\u25ba 11\/22 \u4eee\u9762\u306e\u88cf\u5074\u30ea\u30ea\u30a4\u30d9","url":null,"description":"\u67d0\u661f\u306e\u56fd\u6c11\u300a\u661f\u4eba\u756a\u53f7:1411\u300b\u5929\u91ce\u660e\u5148\u751f \u307c\u30fc\u3061\u3083\u3093 \u30b5\u30f3\u30ea\u30aa \u5944\u7f8e\u5927\u5cf6 Deemo \u7f8e\u5473\u3057\u3044\u3082\u306e\u597d\u304d \u30db\u30f3\u30b8\u30e7\u30ea\u30fc\u30ce\u30fb\u30c1\u30f3\u30b3 \u5bdd\u574a\u56db\u5929\u738b\u30dc\u30b9\u88dc\u4f50 \u30a2\u30eb\u30b9\u306b\u7247\u8db3 \u261e\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u6c17\u3065\u304d\u307e\u305b\u3093(\u02d8\u03c9\u02d8)","protected":false,"verified":false,"followers_count":370,"friends_count":365,"listed_count":51,"favourites_count":12637,"statuses_count":54957,"created_at":"Mon Sep 16 03:32:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661498436324225024\/RROmCT6k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661498436324225024\/RROmCT6k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1870076304\/1446548490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587786240,"id_str":"663728156587786240","text":"MIGOS https:\/\/t.co\/WkxxyGUVGy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":334779509,"id_str":"334779509","name":"abdulaziz al zaabi","screen_name":"alzaabi741","location":"UAE","url":null,"description":"In GabeN we trust. May his bundles be forever humble, may he deliver us unto HL3","protected":false,"verified":false,"followers_count":364,"friends_count":301,"listed_count":13,"favourites_count":3875,"statuses_count":28243,"created_at":"Wed Jul 13 17:15:16 +0000 2011","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640931811388878848\/2708GaPV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640931811388878848\/2708GaPV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334779509\/1410470475","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727521666609153,"quoted_status_id_str":"663727521666609153","quoted_status":{"created_at":"Mon Nov 09 14:39:07 +0000 2015","id":663727521666609153,"id_str":"663727521666609153","text":"Ed Sheeran https:\/\/t.co\/WPX7X1EuUf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":86304132,"id_str":"86304132","name":"A","screen_name":"BloodGalleon","location":"U.A.E. \/ Camp Nou \/ Cupertino","url":null,"description":"Apple | Gaming | Technology | Startups | FC Barcelona | Science | Photography | Harry Potter.","protected":false,"verified":false,"followers_count":703,"friends_count":385,"listed_count":17,"favourites_count":1374,"statuses_count":22572,"created_at":"Fri Oct 30 12:46:21 +0000 2009","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581999084\/dc7228ypsz2h1fsuigo3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581999084\/dc7228ypsz2h1fsuigo3.jpeg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663063618762620928\/IRBtSKmh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663063618762620928\/IRBtSKmh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86304132\/1443041827","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727423763128320,"quoted_status_id_str":"663727423763128320","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WPX7X1EuUf","expanded_url":"https:\/\/twitter.com\/asmazaghdoud\/status\/663727423763128320","display_url":"twitter.com\/asmazaghdoud\/s\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WkxxyGUVGy","expanded_url":"https:\/\/twitter.com\/BloodGalleon\/status\/663727521666609153","display_url":"twitter.com\/BloodGalleon\/s\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600217600,"id_str":"663728156600217600","text":"\u30a2\u30f3\u30b1\u30fc\u30c8\u7b54\u3048\u3066\u304f\u308c\u305f\u4eba\u308f\u304b\u3063\u305f\u3089\u3048\u3048\u306e\u306b\u306a\u30fc\n\u3084\u30fc\u3042\u3066\u3053\u306a\u30fc\u3044\u4eba\u304a\u308b\u3057w\n\u4ef2\u9593\u3084\u30fc\uff3c(^o^)\uff0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":294678909,"id_str":"294678909","name":"\u6075","screen_name":"555k555","location":null,"url":null,"description":"\u5de6\u76ee\u306e\u4e0b\u306b\u75e3\u304c\u3042\u308b\u5973\u3092\u77e5\u3063\u3066\u305f\u3089\u30dd\u30c1\u3063\u3068\u3069\u3046\u305e\u3002 \u59c9\u2192 @azuki_achan","protected":false,"verified":false,"followers_count":208,"friends_count":202,"listed_count":9,"favourites_count":13489,"statuses_count":32165,"created_at":"Sat May 07 15:35:00 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2721641573\/1065e472453f93bab035c78508c53e70_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2721641573\/1065e472453f93bab035c78508c53e70_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/294678909\/1445510456","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579336192,"id_str":"663728156579336192","text":"Soy feliz ah jajaja","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2345568715,"id_str":"2345568715","name":"\u2665China\u2665","screen_name":"Brisa_Manucci","location":"Tabossi Entre Rios","url":null,"description":"C. S. D. T.\u2014C. A. B. J. Fueron son y seran siempre la mayor alegria de mi corazon\u2665Amor eterno al futbol\u2665Me Caso con mi A. G.\u2665","protected":false,"verified":false,"followers_count":518,"friends_count":376,"listed_count":1,"favourites_count":296,"statuses_count":32272,"created_at":"Sat Feb 15 18:37:54 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518065408239083520\/0Xj2-R2V.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518065408239083520\/0Xj2-R2V.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662320666868346880\/woH_Vbb__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662320666868346880\/woH_Vbb__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2345568715\/1434496645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-31.8135027,-59.9409463]},"coordinates":{"type":"Point","coordinates":[-59.9409463,-31.8135027]},"place":{"id":"5a31f78df98634d6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/5a31f78df98634d6.json","place_type":"admin","name":"Entre R\u00edos","full_name":"Entre R\u00edos, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-60.756769,-34.037952],[-60.756769,-30.162823],[-57.797527,-30.162823],[-57.797527,-34.037952]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583555072,"id_str":"663728156583555072","text":"RT @frasesdebebada: perfume masculino \u00e9 mil vezes melhor que o feminino, da pra sentir o cheiro de longe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":336615047,"id_str":"336615047","name":"van","screen_name":"fallenangelvan","location":"Tomar, Portugal","url":null,"description":"angels never die","protected":false,"verified":false,"followers_count":187,"friends_count":190,"listed_count":0,"favourites_count":350,"statuses_count":3739,"created_at":"Sat Jul 16 16:08:20 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344511763025195366\/0edd736ae622b10db07e415c9aa29b04.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344511763025195366\/0edd736ae622b10db07e415c9aa29b04.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616353136425463808\/r7U6JueI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616353136425463808\/r7U6JueI_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:11 +0000 2015","id":663695077311512576,"id_str":"663695077311512576","text":"perfume masculino \u00e9 mil vezes melhor que o feminino, da pra sentir o cheiro de longe","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216258832,"id_str":"1216258832","name":"BEBADA","screen_name":"frasesdebebada","location":"eu to b\u00eabada","url":"https:\/\/facebook.com\/frasesdebebadas","description":"\u2709 Interesses Publicit\u00e1rios \u2709donosdabebada@hotmail.com https:\/\/Instagram.com\/abebadaoficial\/\nQuiser entrar em contato s\u00f3 chamar na dm","protected":false,"verified":false,"followers_count":753214,"friends_count":55,"listed_count":315,"favourites_count":4107,"statuses_count":37060,"created_at":"Sun Feb 24 18:43:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"0D9191","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652595446267953152\/Y-aPRfbp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652595446267953152\/Y-aPRfbp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216258832\/1444425990","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":459,"favorite_count":381,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"frasesdebebada","name":"BEBADA","id":1216258832,"id_str":"1216258832","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604366848,"id_str":"663728156604366848","text":"RT @FreddyAmazin: Who else cried \ud83d\ude2d https:\/\/t.co\/v8eZZeOMDb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":400527880,"id_str":"400527880","name":"haizat haiqal","screen_name":"haizathaiqal","location":null,"url":"http:\/\/instagram.com\/haizathaiqal","description":"H.H","protected":false,"verified":false,"followers_count":186,"friends_count":101,"listed_count":2,"favourites_count":143,"statuses_count":17942,"created_at":"Sat Oct 29 05:31:47 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/727001209\/4d7348e9cba357b24c79c887c6ea1993.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/727001209\/4d7348e9cba357b24c79c887c6ea1993.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417856334852128768\/5u8l2HqQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417856334852128768\/5u8l2HqQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/400527880\/1435295893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:05 +0000 2015","id":663716443230494721,"id_str":"663716443230494721","text":"Who else cried \ud83d\ude2d https:\/\/t.co\/v8eZZeOMDb","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61003804,"id_str":"61003804","name":"FREDDY","screen_name":"FreddyAmazin","location":"San Diego, CA","url":"http:\/\/FREDDYAMAZIN.COM","description":"I love food more than people & that's all u need to know. I tweet pics, quotes, jokes, & advice. Add me on snapchat: FredAmazin freddycabrales@freddyamazin.com","protected":false,"verified":true,"followers_count":3686588,"friends_count":623954,"listed_count":12079,"favourites_count":80511,"statuses_count":99111,"created_at":"Tue Jul 28 20:02:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000166063561\/aem0xss8.png","profile_background_tile":false,"profile_link_color":"A16CD8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660923438995865600\/mUkEO7EL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61003804\/1441851464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1467,"favorite_count":2500,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663716439963115524,"id_str":"663716439963115524","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663716441363865600,"id_str":"663716441363865600","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FreddyAmazin","name":"FREDDY","id":61003804,"id_str":"61003804","indices":[3,16]}],"symbols":[],"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"}]},"extended_entities":{"media":[{"id":663716442341142528,"id_str":"663716442341142528","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lnlUcAAUGW5.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"},{"id":663716439963115524,"id_str":"663716439963115524","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-leuWoAQVkWo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"},{"id":663716441363865600,"id_str":"663716441363865600","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-lj8UYAAyNNo.jpg","url":"https:\/\/t.co\/v8eZZeOMDb","display_url":"pic.twitter.com\/v8eZZeOMDb","expanded_url":"http:\/\/twitter.com\/FreddyAmazin\/status\/663716443230494721\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663716443230494721,"source_status_id_str":"663716443230494721","source_user_id":61003804,"source_user_id_str":"61003804"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591849476,"id_str":"663728156591849476","text":"RT @moviesoverPO: \ud32c\ub4e4\uc774 \uc65c \uc6c3\ub294\uc9c0 \uad81\uae08\ud574\uc11c \ub4a4\ub3cc\uc544 \ubcf4\uace0 \ube75 \ud130\uc9c4 \uc131\uc7ac\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/6GhBihkuxn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317873179,"id_str":"3317873179","name":"\uc0b6\uc73c\ub099","screen_name":"thankumylove","location":null,"url":null,"description":"\uc0b4\uc790 \ubbf8\ub904\uc8fc\ub294 \uacc4\uc815","protected":false,"verified":false,"followers_count":0,"friends_count":11,"listed_count":0,"favourites_count":819,"statuses_count":88,"created_at":"Mon Aug 17 14:28:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633291342668414977\/gwDqgvWJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633291342668414977\/gwDqgvWJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:04:39 +0000 2015","id":663160165672206336,"id_str":"663160165672206336","text":"\ud32c\ub4e4\uc774 \uc65c \uc6c3\ub294\uc9c0 \uad81\uae08\ud574\uc11c \ub4a4\ub3cc\uc544 \ubcf4\uace0 \ube75 \ud130\uc9c4 \uc131\uc7ac\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/6GhBihkuxn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2617524391,"id_str":"2617524391","name":"\uae30\ub9b0","screen_name":"moviesoverPO","location":"\ub420\uc131\ubd80\ub978\ud638\ubaa8\ub294\ub5a1\ubc25\ubd80\ud130\ub2e4\ub974\ub2e4","url":"http:\/\/ask.fm\/moviesoverPO","description":"\uc9c1\uc5c5 : \ud504\ub85c \ubc14\uc218\ub2c8, \ud2b8\uc704\ud130 \uc6cc\ub9ac\uc5b4, \uc7a1\ub355","protected":false,"verified":false,"followers_count":869,"friends_count":57,"listed_count":6,"favourites_count":157,"statuses_count":54369,"created_at":"Fri Jul 11 14:54:56 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655757584268312576\/NHOUOhp6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655757584268312576\/NHOUOhp6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2617524391\/1446895721","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":250,"favorite_count":188,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663160163507920896,"id_str":"663160163507920896","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","url":"https:\/\/t.co\/6GhBihkuxn","display_url":"pic.twitter.com\/6GhBihkuxn","expanded_url":"http:\/\/twitter.com\/moviesoverPO\/status\/663160165672206336\/photo\/1","type":"photo","sizes":{"medium":{"w":456,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":229,"resize":"fit"},"large":{"w":456,"h":308,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663160163507920896,"id_str":"663160163507920896","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","url":"https:\/\/t.co\/6GhBihkuxn","display_url":"pic.twitter.com\/6GhBihkuxn","expanded_url":"http:\/\/twitter.com\/moviesoverPO\/status\/663160165672206336\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":456,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":229,"resize":"fit"},"large":{"w":456,"h":308,"resize":"fit"}},"video_info":{"aspect_ratio":[114,77],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTQEp7cUYAAG2gu.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"moviesoverPO","name":"\uae30\ub9b0","id":2617524391,"id_str":"2617524391","indices":[3,16]}],"symbols":[],"media":[{"id":663160163507920896,"id_str":"663160163507920896","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","url":"https:\/\/t.co\/6GhBihkuxn","display_url":"pic.twitter.com\/6GhBihkuxn","expanded_url":"http:\/\/twitter.com\/moviesoverPO\/status\/663160165672206336\/photo\/1","type":"photo","sizes":{"medium":{"w":456,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":229,"resize":"fit"},"large":{"w":456,"h":308,"resize":"fit"}},"source_status_id":663160165672206336,"source_status_id_str":"663160165672206336","source_user_id":2617524391,"source_user_id_str":"2617524391"}]},"extended_entities":{"media":[{"id":663160163507920896,"id_str":"663160163507920896","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTQEp7cUYAAG2gu.png","url":"https:\/\/t.co\/6GhBihkuxn","display_url":"pic.twitter.com\/6GhBihkuxn","expanded_url":"http:\/\/twitter.com\/moviesoverPO\/status\/663160165672206336\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":456,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":229,"resize":"fit"},"large":{"w":456,"h":308,"resize":"fit"}},"source_status_id":663160165672206336,"source_status_id_str":"663160165672206336","source_user_id":2617524391,"source_user_id_str":"2617524391","video_info":{"aspect_ratio":[114,77],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTQEp7cUYAAG2gu.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587614208,"id_str":"663728156587614208","text":"@nozomimizuku \u304a\u30d2\u30b2\u3082\u3058\u3083\u3082\u3058\u3083\uff5e\/\/\/\/\u3000\u304b\u308f\u3044\u3044\u306d\u266a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727850059501568,"in_reply_to_status_id_str":"663727850059501568","in_reply_to_user_id":457505275,"in_reply_to_user_id_str":"457505275","in_reply_to_screen_name":"nozomimizuku","user":{"id":601590211,"id_str":"601590211","name":"\u3061\u3044\u3061\u308b\uff20\u9f2c\u5de5\u52d9\u5e97","screen_name":"chiichiru37","location":null,"url":"http:\/\/yaplog.jp\/tailbomb\/","description":"\u30d5\u30a7\u30ec\u4e2d\u6bd2\u672b\u671f\u3002\u3053\u306e\u5302\u3044\u306a\u3057\u3067\u306f\u751f\u304d\u3066\u3044\u3051\u307e\u305b\u306c\u3002\u9f2c\u5de5\u52d9\u5e97\u306b\u3066\u7f8a\u6bdb\u30d5\u30a7\u30ec\u30c3\u30c8\u5236\u4f5c\u6d3b\u52d5\u4e2d\u3002\u203b\u73fe\u5728\u3001\u65b0\u898f\u30aa\u30fc\u30c0\u30fc\u5236\u4f5c\u53d7\u4ed8\u306f\u4e2d\u6b62\u4e2d\u3067\u3059\u3002\u53d7\u4ed8\u53ef\u80fd\u306b\u306a\u3063\u305f\u5834\u5408\u306f\u3001\u304a\u77e5\u3089\u305b\u3044\u305f\u3057\u307e\u3059(^^","protected":false,"verified":false,"followers_count":608,"friends_count":335,"listed_count":26,"favourites_count":13090,"statuses_count":39188,"created_at":"Thu Jun 07 05:34:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572608602\/dqw5wisbch6gpo804qmf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572608602\/dqw5wisbch6gpo804qmf.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663629324071731200\/5GaF7Pcg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663629324071731200\/5GaF7Pcg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601590211\/1400650383","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nozomimizuku","name":"\u3042\u3093\u3053","id":457505275,"id_str":"457505275","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604411904,"id_str":"663728156604411904","text":"\u3042\u3093\u306a\u30cf\u30a4\u30c6\u30f3\u30b7\u30e7\u30f3\u306b\u306a\u308b\u3068\u306f\u601d\u308f\u3093\u3060\u304a\u3082\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2833814336,"id_str":"2833814336","name":"JURI.","screen_name":"juuu_a10","location":"TBB ","url":"https:\/\/Instagram.com\/juuu_a10\/#","description":"\u30df\u30ba\u30cf\u30b7\u9ad8\u6821 \/ \u7f8e\u5bb9\u5b66\u751f \/ \u30dc\u30d6 \/ \uff0819\uff09","protected":false,"verified":false,"followers_count":358,"friends_count":351,"listed_count":0,"favourites_count":920,"statuses_count":984,"created_at":"Sat Sep 27 09:04:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662935153203769344\/PirS0tbY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662935153203769344\/PirS0tbY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833814336\/1446868638","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583583744,"id_str":"663728156583583744","text":"RT @JulietteIsabell: Don't ask, just block him. You'd be doing yourself a favor. https:\/\/t.co\/OqqJFwmKsc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2784100399,"id_str":"2784100399","name":"Linda","screen_name":"LMM1952","location":null,"url":null,"description":"#JesusFirst #Family #Country #Constitution #Troops MAYDAY! DVA #ConstitutionalConservative #NRA #CancerSurvivor #AAMACMA #Prolife #Israel Anti-big government","protected":false,"verified":false,"followers_count":2851,"friends_count":2031,"listed_count":101,"favourites_count":8272,"statuses_count":45648,"created_at":"Mon Sep 01 12:51:02 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649207795670118400\/AXRU2GSN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649207795670118400\/AXRU2GSN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2784100399\/1419595414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:05:16 +0000 2015","id":663628405901025280,"id_str":"663628405901025280","text":"Don't ask, just block him. You'd be doing yourself a favor. https:\/\/t.co\/OqqJFwmKsc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457448375,"id_str":"457448375","name":"Juliette Isabella","screen_name":"JulietteIsabell","location":"Greenwich, CT. ","url":null,"description":"http:\/\/Christian.Millennial.Conservative.Business owner. ProLife. #TRUMP2016 #MakeAmericaGreat #AmericaIsStillExceptional backup acct @JulietteIsabel2","protected":false,"verified":false,"followers_count":7158,"friends_count":6362,"listed_count":189,"favourites_count":36552,"statuses_count":95444,"created_at":"Sat Jan 07 12:26:13 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657396488398618624\/YiFN9DCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657396488398618624\/YiFN9DCw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457448375\/1444796612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663627054961860608,"quoted_status_id_str":"663627054961860608","quoted_status":{"created_at":"Mon Nov 09 07:59:54 +0000 2015","id":663627054961860608,"id_str":"663627054961860608","text":"@DoubleD2k15 @JulietteIsabell @jenilynn1001 And who exactly is this @TheRickWilson never heard of him so must not be anybody special","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663623223792287744,"in_reply_to_status_id_str":"663623223792287744","in_reply_to_user_id":3270951991,"in_reply_to_user_id_str":"3270951991","in_reply_to_screen_name":"DoubleD2k15","user":{"id":2784100399,"id_str":"2784100399","name":"Linda","screen_name":"LMM1952","location":null,"url":null,"description":"#JesusFirst #Family #Country #Constitution #Troops MAYDAY! DVA #ConstitutionalConservative #NRA #CancerSurvivor #AAMACMA #Prolife #Israel Anti-big government","protected":false,"verified":false,"followers_count":2851,"friends_count":2031,"listed_count":101,"favourites_count":8272,"statuses_count":45647,"created_at":"Mon Sep 01 12:51:02 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649207795670118400\/AXRU2GSN_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649207795670118400\/AXRU2GSN_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2784100399\/1419595414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DoubleD2k15","name":"Double D","id":3270951991,"id_str":"3270951991","indices":[0,12]},{"screen_name":"JulietteIsabell","name":"Juliette Isabella","id":457448375,"id_str":"457448375","indices":[13,29]},{"screen_name":"jenilynn1001","name":"jennifer","id":33270656,"id_str":"33270656","indices":[30,43]},{"screen_name":"TheRickWilson","name":"Rick Wilson","id":19084896,"id_str":"19084896","indices":[68,82]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OqqJFwmKsc","expanded_url":"https:\/\/twitter.com\/lmm1952\/status\/663627054961860608","display_url":"twitter.com\/lmm1952\/status\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OqqJFwmKsc","expanded_url":"https:\/\/twitter.com\/lmm1952\/status\/663627054961860608","display_url":"twitter.com\/lmm1952\/status\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"JulietteIsabell","name":"Juliette Isabella","id":457448375,"id_str":"457448375","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604395521,"id_str":"663728156604395521","text":"En la sesi\u00f3n del @GuadalajaraGob programada a las 8:00 y a\u00fan no comienza #c\u00f3moah\u00edqu\u00e9 \ud83d\ude1c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":194221486,"id_str":"194221486","name":"MICHEL CASILLAS","screen_name":"MICHELCASILLAS","location":"Guadalajara, Jalisco","url":null,"description":"De musico, poeta y loco, creo que tengo un poco!!","protected":false,"verified":false,"followers_count":482,"friends_count":1523,"listed_count":13,"favourites_count":5552,"statuses_count":5323,"created_at":"Thu Sep 23 18:35:48 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625870277071667200\/oFzDOzom_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625870277071667200\/oFzDOzom_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194221486\/1354403594","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"c\u00f3moah\u00edqu\u00e9","indices":[73,84]}],"urls":[],"user_mentions":[{"screen_name":"GuadalajaraGob","name":"Gob. de Guadalajara","id":81437068,"id_str":"81437068","indices":[17,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583432192,"id_str":"663728156583432192","text":"RT @free24apps: Tornainbow Entertainment Photo & Video iPad App ***** $0. ... https:\/\/t.co\/J9W0chmjFK https:\/\/t.co\/K7VumSrWg8","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2493984529,"id_str":"2493984529","name":"\u307f\u306e\u305f\u305d\u3061\u3083\u3093\u3055\u3093\u2729","screen_name":"todori3","location":null,"url":null,"description":"\u30ab\u30e1\u30ec\u30aa\/ABC\/R\u6307\u5b9a\/\u6c17\u307e\u3050\u308c\/\u30af\u30ba\n\u4f9d\u5b58\u30b7\u30c6\u30af\u30c0\u30b5\u30a4","protected":false,"verified":false,"followers_count":13847,"friends_count":14695,"listed_count":249,"favourites_count":15668,"statuses_count":258618,"created_at":"Wed May 14 10:00:46 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466519072134283264\/Yp081fJs_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466519072134283264\/Yp081fJs_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2493984529\/1400061795","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728070067552256,"id_str":"663728070067552256","text":"Tornainbow Entertainment Photo & Video iPad App ***** $0. ... https:\/\/t.co\/J9W0chmjFK https:\/\/t.co\/K7VumSrWg8","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2234609616,"id_str":"2234609616","name":"free24apps","screen_name":"free24apps","location":"Cupertino, CA","url":"http:\/\/www.free24apps.com","description":"#iOS #apps #iphone #ipod #ipad #ipod #android \nhttp:\/\/pinterest.com\/free24apps\/","protected":false,"verified":false,"followers_count":14796,"friends_count":13707,"listed_count":83,"favourites_count":2194,"statuses_count":443039,"created_at":"Sat Dec 07 14:34:11 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2234609616\/1389738920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/J9W0chmjFK","expanded_url":"http:\/\/www.free24apps.com\/?pid=488867916","display_url":"free24apps.com\/?pid=488867916","indices":[66,89]}],"user_mentions":[],"symbols":[],"media":[{"id":663728069937524742,"id_str":"663728069937524742","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","url":"https:\/\/t.co\/K7VumSrWg8","display_url":"pic.twitter.com\/K7VumSrWg8","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728070067552256\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":480,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728069937524742,"id_str":"663728069937524742","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","url":"https:\/\/t.co\/K7VumSrWg8","display_url":"pic.twitter.com\/K7VumSrWg8","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728070067552256\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":480,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/J9W0chmjFK","expanded_url":"http:\/\/www.free24apps.com\/?pid=488867916","display_url":"free24apps.com\/?pid=488867916","indices":[82,105]}],"user_mentions":[{"screen_name":"free24apps","name":"free24apps","id":2234609616,"id_str":"2234609616","indices":[3,14]}],"symbols":[],"media":[{"id":663728069937524742,"id_str":"663728069937524742","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","url":"https:\/\/t.co\/K7VumSrWg8","display_url":"pic.twitter.com\/K7VumSrWg8","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728070067552256\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":480,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":480,"resize":"fit"}},"source_status_id":663728070067552256,"source_status_id_str":"663728070067552256","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"extended_entities":{"media":[{"id":663728069937524742,"id_str":"663728069937524742","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKbwU8AYZvFJ.jpg","url":"https:\/\/t.co\/K7VumSrWg8","display_url":"pic.twitter.com\/K7VumSrWg8","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728070067552256\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":480,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":480,"resize":"fit"}},"source_status_id":663728070067552256,"source_status_id_str":"663728070067552256","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600377344,"id_str":"663728156600377344","text":"Do you wear makeup? Join me at @ipsy https:\/\/t.co\/g3TU3ZxgX4","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30053182,"id_str":"30053182","name":"Marilyn&TrozyDarlin","screen_name":"DarlinsArmyWife","location":"Ft. Benning Georgia","url":null,"description":"I'm a army wife to a wonderful husband and a mother to our baby girl.We give thanks to God for all that we have now and what he has for us...","protected":false,"verified":false,"followers_count":58,"friends_count":83,"listed_count":3,"favourites_count":69,"statuses_count":128,"created_at":"Thu Apr 09 19:53:58 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/672242864\/30be62d793f00ea81fd14c51b7982fa6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/672242864\/30be62d793f00ea81fd14c51b7982fa6.jpeg","profile_background_tile":true,"profile_link_color":"3200B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"0F0A0A","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651763098706145280\/5_77otPh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651763098706145280\/5_77otPh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30053182\/1444227405","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g3TU3ZxgX4","expanded_url":"https:\/\/www.ipsy.com\/new?cid=share_referral&sid=twitter&refer=vt38s","display_url":"ipsy.com\/new?cid=share_\u2026","indices":[37,60]}],"user_mentions":[{"screen_name":"ipsy","name":"ipsy","id":401643632,"id_str":"401643632","indices":[31,36]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579352581,"id_str":"663728156579352581","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/sKKGe1Vvl1","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2220347301,"id_str":"2220347301","name":"\u0639\u0628\u0640\u0640\u062f\u0627\u0644\u0644\u0647 \u0627\u0644\u0630\u064a\u0627\u0628\u0640\u0640\u0640\u064a","screen_name":"C_M_5","location":"BBM: BBBBBB2","url":"https:\/\/www.youtube.com\/watch?v=O6txrqAEq_U","description":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u060c \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647 \u060c \u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u060c \u0627\u0644\u0644\u0647 \u0627\u0643\u0628\u0631 \u060c \u0644\u0627\u062d\u0648\u0644 \u0648\u0644\u0627\u0642\u0648\u0629 \u0625\u0644\u0627 \u0628\u0627\u0644\u0644\u0647","protected":false,"verified":false,"followers_count":10532,"friends_count":337,"listed_count":1,"favourites_count":308,"statuses_count":8451,"created_at":"Wed Dec 11 22:09:44 +0000 2013","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"660000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636902895003156480\/fUSsxMva_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636902895003156480\/fUSsxMva_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2220347301\/1441207868","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sKKGe1Vvl1","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156575010816,"id_str":"663728156575010816","text":"Peyton Manning falls short of record as mistakes doom Broncos https:\/\/t.co\/Iv7T7eREvl","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1709042084,"id_str":"1709042084","name":"yung","screen_name":"I_ampresh","location":"All around","url":null,"description":"CooL dude","protected":false,"verified":false,"followers_count":56,"friends_count":106,"listed_count":11,"favourites_count":0,"statuses_count":17668,"created_at":"Thu Aug 29 04:29:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000378122855\/dd36cad3960bc3679cb557b99f85effe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000378122855\/dd36cad3960bc3679cb557b99f85effe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1709042084\/1377752235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Iv7T7eREvl","expanded_url":"http:\/\/dlvr.it\/Chflfk","display_url":"dlvr.it\/Chflfk","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098657"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604436481,"id_str":"663728156604436481","text":"@sukottish \uff96\uff7a\uff7e\u2026\uff83\uff76\uff84\uff9e\uff7a\uff80\uff9e\u2026\n(\u722a\u5f85\u3061\u3067\u4e00\u90e8\u306e\u9bd6\u306e\u6700\u7d42\u518d\u81e8\u3067\u304d\u306a\u3044\u4eba)","source":"\u003ca href=\"http:\/\/www.playstation.com\/\" rel=\"nofollow\"\u003ePlayStation\u00aeVita\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663704824702042112,"in_reply_to_status_id_str":"663704824702042112","in_reply_to_user_id":106030749,"in_reply_to_user_id_str":"106030749","in_reply_to_screen_name":"sukottish","user":{"id":1331146662,"id_str":"1331146662","name":"\u30a2\u30eb@\u30aa\u30b1\u30a2\u30ce\u30b9\u25b3","screen_name":"arumon15","location":"\u706b\u661f \u30a2\u30af\u30b7\u30ba \u7b2c\u4e00MS\u683c\u7d0d\u5eab\u524d","url":null,"description":"\u30b8\u30aa\u30f3\u516c\u56fd\u6c11\u3060\u3063\u305f\u308a\u30dc\u30fc\u30c0\u30fc(A\u30e9\u30f3\u30af)\u3060\u3063\u305f\u308a\u63d0\u7763\u3060\u3063\u305f\u308a\u5996\u7cbe\u3060\u3063\u305f\u308a\u3001\u6700\u8fd1\u306f\u30de\u30b9\u30bf\u30fc\u306b\u306a\u3063\u305f\nhttp:\/\/pixiv.me\/arumon0510","protected":false,"verified":false,"followers_count":228,"friends_count":230,"listed_count":13,"favourites_count":12577,"statuses_count":19493,"created_at":"Sat Apr 06 09:32:06 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511426682553528321\/FpK9vxFA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511426682553528321\/FpK9vxFA.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653204211627200513\/Ewvlx3-c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653204211627200513\/Ewvlx3-c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1331146662\/1426488616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sukottish","name":"\u30cf\u30e4\u30c6","id":106030749,"id_str":"106030749","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583424000,"id_str":"663728156583424000","text":"(\u3057\u3066\u306a\u3044)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068871752,"id_str":"3068871752","name":"\u3042\u308b\u305f","screen_name":"al__ta___","location":null,"url":null,"description":"3\u5e74\u751f http:\/\/twpf.jp\/al__ta___","protected":false,"verified":false,"followers_count":60,"friends_count":61,"listed_count":4,"favourites_count":60855,"statuses_count":19864,"created_at":"Mon Mar 09 00:59:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654887135560921088\/G-uy-Sy3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654887135560921088\/G-uy-Sy3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068871752\/1444972233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591808512,"id_str":"663728156591808512","text":"\u30ab\u30e9\u30aa\u30b1\u6765\u305f\u307f\u305f\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3232059014,"id_str":"3232059014","name":"\u304b\u3058\u306c\u307e \u307e\u3055\u304d","screen_name":"kaji03_22","location":"\u4eca\u3057\u304b\u3067\u304d\u306a\u3044\u3053\u3068 \u5f8c\u6094\u306f\u3057\u306a\u3044 ","url":null,"description":"\u6839\uff11\u2192\u696f\u9ad8\u2192\u4ed9\u53f0\u59271\u5e74B1 \u786c\u5f0f\u91ce\u7403\u90e8 \u30a2\u30ab\u30da\u30e9\/\u30dc\u30a4\u30d1\/\u30ae\u30bf\u30fc\/\u30b9\u30ed\u30c3\u30c8\/\u30e9\u30fc\u30e1\u30f3\/","protected":false,"verified":false,"followers_count":288,"friends_count":320,"listed_count":0,"favourites_count":1431,"statuses_count":1107,"created_at":"Mon Jun 01 00:16:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654980671224479744\/j_wPhqT3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654980671224479744\/j_wPhqT3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232059014\/1433118258","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156596039680,"id_str":"663728156596039680","text":"#News: Seorang Tukang Koma Setelah Terjepit Keramik: Orang-orang memukul keramik raksasa dengan palu untuk... https:\/\/t.co\/P3SojIHG3S #TU","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116155386,"id_str":"116155386","name":"News Update","screen_name":"Tukang_Update","location":"Around You","url":null,"description":"The Latest News #TU","protected":false,"verified":false,"followers_count":2563,"friends_count":15,"listed_count":127,"favourites_count":3,"statuses_count":923608,"created_at":"Sun Feb 21 10:56:18 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/442173882896633856\/3ohMFbtI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/442173882896633856\/3ohMFbtI.png","profile_background_tile":false,"profile_link_color":"D10202","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442167687003643904\/pq17SyJZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442167687003643904\/pq17SyJZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116155386\/1402009548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"News","indices":[0,5]},{"text":"TU","indices":[134,137]}],"urls":[{"url":"https:\/\/t.co\/P3SojIHG3S","expanded_url":"http:\/\/bit.ly\/1kFX6Pn","display_url":"bit.ly\/1kFX6Pn","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080098662"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604428288,"id_str":"663728156604428288","text":"\u3064\u306a\u304e\u53ef\u611b\u3044\u306a\u203c\ufe0e https:\/\/t.co\/s50HdbTik5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2313004944,"id_str":"2313004944","name":"\u3086\u3046\u308a","screen_name":"youreimas","location":null,"url":null,"description":"NEWS\u304c\u597d\u304d\u2661 \u307e\u3063\u3059\u30fc\u62c5\u3067\u3059\u2661\u30c6\u30cb\u30b9\u306f\u9326\u7e54\u572d\u304f\u3093\u3092\u5fdc\u63f4\u3057\u3066\u308b\uff01\u30a2\u30cb\u30e1\u3082\u597d\u304d\uff01Free\uff01working\uff01\u30b8\u30e7\u30b7\u30e7\u30fb\u9ed2\u30d0\u30b9\u30fb\u304a\u305d\u677e\u3055\u3093\u30fb\u3046\u305f\u30d7\u30ea\u2b50\ufe0f","protected":false,"verified":false,"followers_count":14,"friends_count":51,"listed_count":0,"favourites_count":7,"statuses_count":170,"created_at":"Mon Jan 27 04:36:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651431211521314816\/YOPcC2tG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651431211521314816\/YOPcC2tG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2313004944\/1442507346","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663710254488645632,"quoted_status_id_str":"663710254488645632","quoted_status":{"created_at":"Mon Nov 09 13:30:30 +0000 2015","id":663710254488645632,"id_str":"663710254488645632","text":"\u3010\u672c\u65e5\u7b2c6\u8a71\u653e\u9001\uff01\u3011TV\u30a2\u30cb\u30e1\u300c\u304a\u305d\u677e\u3055\u3093\u300d\u7b2c6\u8a71\u653e\u9001\u307e\u3067\u3042\u3068\u5c11\u3057\uff01\u653e\u9001\u6642\u9593\u307e\u3067\u3086\u308b\u308a\u3068\u304a\u5f85\u3061\u304f\u3060\u3055\u3044\u307e\u305b\uff5e\u3002#\u304a\u305d\u677e\u3055\u3093 https:\/\/t.co\/6xfw8sGJIm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3260659704,"id_str":"3260659704","name":"TV\u30a2\u30cb\u30e1\u300c\u304a\u305d\u677e\u3055\u3093\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","screen_name":"osomatsu_PR","location":null,"url":"http:\/\/osomatsusan.com\/","description":"\u4f1d\u8aac\u306e6\u3064\u5b50\u304c\u5e30\u3063\u3066\u304d\u305f\uff01\u3057\u304b\u3082\u3001\u5927\u4eba\u306b\u306a\u3063\u3066\u2026\uff01\u8d64\u585a\u4e0d\u4e8c\u592b\u751f\u8a9580\u5468\u5e74\u8a18\u5ff5\u4f5c\u54c1\u3001\u30a2\u30cb\u30e1\u300c\u304a\u305d\u677e\u3055\u3093\u300d\u516c\u5f0fTwitter\u3002\u3010\u76e3\u7763\u3011\u85e4\u7530\u967d\u4e00\u3010\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u30c7\u30b6\u30a4\u30f3\u3011\u6d45\u91ce\u76f4\u4e4b\u3010\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u5236\u4f5c\u3011studio\u3074\u3048\u308d\u3010\u30ad\u30e3\u30b9\u30c8\u3011\u6afb\u4e95\u5b5d\u5b8f\u3001\u4e2d\u6751\u60a0\u4e00\u3001\u795e\u8c37\u6d69\u53f2\u3001\u798f\u5c71\u6f64\u3001\u5c0f\u91ce\u5927\u8f14\u3001\u5165\u91ce\u81ea\u7531\u3001\u9060\u85e4\u7dbe\u3001\u9234\u6751\u5065\u4e00\u3001\u570b\u7acb\u5e78 #\u304a\u305d\u677e\u3055\u3093","protected":false,"verified":true,"followers_count":128962,"friends_count":2,"listed_count":1485,"favourites_count":0,"statuses_count":199,"created_at":"Tue Jun 30 04:05:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617981707438829568\/EHd_XVHK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617981707438829568\/EHd_XVHK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3260659704\/1436173208","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u305d\u677e\u3055\u3093","indices":[55,61]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710253146476546,"id_str":"663710253146476546","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX49XCUkAIhQXB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX49XCUkAIhQXB.jpg","url":"https:\/\/t.co\/6xfw8sGJIm","display_url":"pic.twitter.com\/6xfw8sGJIm","expanded_url":"http:\/\/twitter.com\/osomatsu_PR\/status\/663710254488645632\/photo\/1","type":"photo","sizes":{"medium":{"w":368,"h":207,"resize":"fit"},"large":{"w":368,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710253146476546,"id_str":"663710253146476546","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX49XCUkAIhQXB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX49XCUkAIhQXB.jpg","url":"https:\/\/t.co\/6xfw8sGJIm","display_url":"pic.twitter.com\/6xfw8sGJIm","expanded_url":"http:\/\/twitter.com\/osomatsu_PR\/status\/663710254488645632\/photo\/1","type":"photo","sizes":{"medium":{"w":368,"h":207,"resize":"fit"},"large":{"w":368,"h":207,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/s50HdbTik5","expanded_url":"https:\/\/twitter.com\/osomatsu_pr\/status\/663710254488645632","display_url":"twitter.com\/osomatsu_pr\/st\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591960064,"id_str":"663728156591960064","text":"T64-GE-416\/416A engine fuel control upgrades https:\/\/t.co\/MmTMQVqWsG #t64ge416416aenginefuelcontrolupgrade #28","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":248828904,"id_str":"248828904","name":"FBOMobile","screen_name":"fbomobile","location":null,"url":"http:\/\/www.fbomobile.com","description":"FBOMobile makes it easy to find business opportunities, bids, solicitations, RFP\u2019s, RFI\u2019s from ALL federal government agencies right from your phone!","protected":false,"verified":false,"followers_count":221,"friends_count":35,"listed_count":19,"favourites_count":0,"statuses_count":244859,"created_at":"Mon Feb 07 20:24:02 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/207119190\/usflagbackground_fbo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/207119190\/usflagbackground_fbo.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1237729222\/star480x480_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1237729222\/star480x480_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"t64ge416416aenginefuelcontrolupgrade","indices":[69,106]}],"urls":[{"url":"https:\/\/t.co\/MmTMQVqWsG","expanded_url":"http:\/\/goo.gl\/fb\/EA9ZWP","display_url":"goo.gl\/fb\/EA9ZWP","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604370944,"id_str":"663728156604370944","text":"The weekend is over, yet you might be resistant to the workloa... More for Leo https:\/\/t.co\/D2UHWtb2oP","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1462088156,"id_str":"1462088156","name":"Claire\u2661","screen_name":"cgallagher0446","location":null,"url":null,"description":"Hunter Martin","protected":false,"verified":false,"followers_count":303,"friends_count":179,"listed_count":0,"favourites_count":3804,"statuses_count":10362,"created_at":"Mon May 27 13:15:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656287348741705728\/6i3m4x5B_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656287348741705728\/6i3m4x5B_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1462088156\/1445209074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/D2UHWtb2oP","expanded_url":"http:\/\/bit.ly\/xjQYj7","display_url":"bit.ly\/xjQYj7","indices":[79,102]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591808513,"id_str":"663728156591808513","text":"RT @_500yen: \u5c0f\u91ce\u5bfa\u4e94\u5178\u300c\u5c16\u95a3\u306b\u4e2d\u56fd\u306e\u516c\u8239\u304c\u6765\u3066\u3044\u307e\u3059\u304c\u3001\u3042\u305d\u3053\u306f\u6c96\u7e04\u770c\u77f3\u57a3\u5e02\u306e\u6d77\u306a\u3093\u3067\u3059\u3002\u6c96\u7e04\u770c\u306b\u5b89\u5168\u4fdd\u969c\u306e\u7dca\u5f35\u611f\u304c\u3042\u308b\u3079\u304d\u5834\u6240\u306a\u3093\u3067\u3059\u3002\u662f\u975e\u3001\u7fc1\u9577\u77e5\u4e8b\u306b\u7406\u89e3\u3057\u3066\u9802\u304d\u305f\u3044\u3002\u7c73\u8ecd\u304c\u5c45\u306a\u304f\u306a\u3063\u305f\u3089\u4e2d\u56fd\u306f\u4f55\u3082\u3057\u3066\u6765\u306a\u3044\u304b\u3068\u8a00\u3063\u3066\u307e\u3059\u304c\u3001\u9006\u3060\u3068\u601d\u3044\u307e\u3059\u300d\u2190 #primen\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2606452938,"id_str":"2606452938","name":"\u308b\u304f\u308c\u308b\u304f","screen_name":"djalminha20","location":"\u65e5\u672c \u5bae\u5d0e\u770c","url":null,"description":"\u30dc\u30af\u30b7\u30f3\u30b0\u7b49\u306e\u30b9\u30dd\u30fc\u30c4\u3001\u30df\u30ea\u30bf\u30ea\u30fc\u3001\u6b74\u53f2\u3001\u662d\u548c\u30a2\u30a4\u30c9\u30eb(\u77f3\u5ddd\u3072\u3068\u307f&\u5009\u7530\u307e\u308a\u5b50)\u3001\u30d6\u30e9\u30b8\u30eb\u97f3\u697d\u3001\u30a2\u30cb\u30e1\u3001\u30e0\u30b7\u306a\u3069\u3002\u7d50\u69cb\u4fdd\u5b88\u8272\u306e\u5f37\u3044\u4eba\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":504,"friends_count":747,"listed_count":3,"favourites_count":284,"statuses_count":4479,"created_at":"Sun Jul 06 01:10:39 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659333746223550466\/yQh_awbW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659333746223550466\/yQh_awbW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2606452938\/1445947730","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:08:16 +0000 2015","id":663689561847939073,"id_str":"663689561847939073","text":"\u5c0f\u91ce\u5bfa\u4e94\u5178\u300c\u5c16\u95a3\u306b\u4e2d\u56fd\u306e\u516c\u8239\u304c\u6765\u3066\u3044\u307e\u3059\u304c\u3001\u3042\u305d\u3053\u306f\u6c96\u7e04\u770c\u77f3\u57a3\u5e02\u306e\u6d77\u306a\u3093\u3067\u3059\u3002\u6c96\u7e04\u770c\u306b\u5b89\u5168\u4fdd\u969c\u306e\u7dca\u5f35\u611f\u304c\u3042\u308b\u3079\u304d\u5834\u6240\u306a\u3093\u3067\u3059\u3002\u662f\u975e\u3001\u7fc1\u9577\u77e5\u4e8b\u306b\u7406\u89e3\u3057\u3066\u9802\u304d\u305f\u3044\u3002\u7c73\u8ecd\u304c\u5c45\u306a\u304f\u306a\u3063\u305f\u3089\u4e2d\u56fd\u306f\u4f55\u3082\u3057\u3066\u6765\u306a\u3044\u304b\u3068\u8a00\u3063\u3066\u307e\u3059\u304c\u3001\u9006\u3060\u3068\u601d\u3044\u307e\u3059\u300d\u2190 #primenews","source":"\u003ca href=\"http:\/\/bit.ly\/UDldit\" rel=\"nofollow\"\u003eSaezuri\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524294327,"id_str":"524294327","name":"500\u5186","screen_name":"_500yen","location":"\u65e5\u672c\u9280\u884c","url":"http:\/\/aclog.koba789.com\/_500yen","description":"\u3053\u3053\u306f\u5b9f\u6cc1\u57a2(@_500yen)\u3067\u3059 http:\/\/fivezerozero.tumblr.com\uff0fhttp:\/\/ja.favstar.fm\/users\/_500yen\uff0f\u672c\u57a2\u306f(@bio_jackrose)\u3067\u3059 http:\/\/jackrose.tumblr.com\uff0f","protected":false,"verified":false,"followers_count":5060,"friends_count":327,"listed_count":136,"favourites_count":14585,"statuses_count":10083,"created_at":"Wed Mar 14 12:11:11 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"00C6E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597033948468760576\/yht65XtD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597033948468760576\/yht65XtD.png","profile_background_tile":false,"profile_link_color":"C02400","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2892403315\/3b163fe3c2c3fea75c665836cef68767_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2892403315\/3b163fe3c2c3fea75c665836cef68767_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524294327\/1431184208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":56,"favorite_count":14,"entities":{"hashtags":[{"text":"primenews","indices":[119,129]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"primenews","indices":[132,140]}],"urls":[],"user_mentions":[{"screen_name":"_500yen","name":"500\u5186","id":524294327,"id_str":"524294327","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156612820992,"id_str":"663728156612820992","text":"RT @nao_kakaomame: \u30b9\u30bf\u30a4\u30ea\u30c3\u30b7\u30e5\u306a\u7acb\u3061\u4e0a\u304c\u308a\u304b\u3089\u306e\u30af\u30bd\u306e\u3088\u3046\u306a\u6b69\u884c http:\/\/t.co\/HeL3fLtCMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":235293530,"id_str":"235293530","name":"\u3044\u3057\u304b\u308f","screen_name":"isnsk_t","location":"\u304d\u3087\u3046\u3068\uff01\uff01\uff01\uff01","url":null,"description":"\u4f01\u696d \u00d7 \u653f\u6cbb \u00d7 \u5730\u65b9 \/ \u767a\u8a00\u5185\u5bb9\u306f\u500b\u4eba\u306e\u898b\u89e3\u3067\u3042\u308a\u3001\u6240\u5c5e\u56e3\u4f53\u7b49\u3068\u306f\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093 \/ \u4eac\u90fd\u5927\u5b66 \/ \u798f\u5ca1\u9ad8\u682161\u56de \/ \u4e16\u754c\u306e\u30d3\u30fc\u30eb\u3092\u98f2\u307f\u6b69\u304d\u305f\u3044","protected":false,"verified":false,"followers_count":380,"friends_count":323,"listed_count":8,"favourites_count":2634,"statuses_count":25035,"created_at":"Fri Jan 07 20:49:04 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000445493727\/34b3da6b24d635c86c5c235a69681061_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000445493727\/34b3da6b24d635c86c5c235a69681061_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/235293530\/1445062222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 28 09:46:20 +0000 2014","id":516161979447128065,"id_str":"516161979447128065","text":"\u30b9\u30bf\u30a4\u30ea\u30c3\u30b7\u30e5\u306a\u7acb\u3061\u4e0a\u304c\u308a\u304b\u3089\u306e\u30af\u30bd\u306e\u3088\u3046\u306a\u6b69\u884c http:\/\/t.co\/HeL3fLtCMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623736433,"id_str":"623736433","name":"\u30ca\u30aaE","screen_name":"nao_kakaomame","location":"\u673a\u306e\u4e0b","url":null,"description":"\u4e09\u89d2\u7ffc\u3068\u304bG36C\u3068\u304b\u304c\u597d\u304d\u306a\u30ec\u30b6\u30b9\u30d4\u4e57\u308a","protected":false,"verified":false,"followers_count":1292,"friends_count":940,"listed_count":40,"favourites_count":13340,"statuses_count":82771,"created_at":"Sun Jul 01 13:11:21 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455299320502157312\/18Iw48H-.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455299320502157312\/18Iw48H-.jpeg","profile_background_tile":false,"profile_link_color":"00B395","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660858588416503808\/sH4_8yAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660858588416503808\/sH4_8yAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/623736433\/1445923018","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":102072,"favorite_count":85399,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[25,47],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"animated_gif","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/BynGlOzCIAAdkXW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nao_kakaomame","name":"\u30ca\u30aaE","id":623736433,"id_str":"623736433","indices":[3,17]}],"symbols":[],"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"source_status_id":516161979447128065,"source_status_id_str":"516161979447128065","source_user_id":623736433,"source_user_id_str":"623736433"}]},"extended_entities":{"media":[{"id":516161975240237056,"id_str":"516161975240237056","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/BynGlOzCIAAdkXW.png","url":"http:\/\/t.co\/HeL3fLtCMA","display_url":"pic.twitter.com\/HeL3fLtCMA","expanded_url":"http:\/\/twitter.com\/nao_kakaomame\/status\/516161979447128065\/photo\/1","type":"animated_gif","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"}},"source_status_id":516161979447128065,"source_status_id_str":"516161979447128065","source_user_id":623736433,"source_user_id_str":"623736433","video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/BynGlOzCIAAdkXW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098666"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583395328,"id_str":"663728156583395328","text":"RT @vuitton7777: \u30a2\u30a4\u30b9\u306e\u68d2\u3067T\u30b7\u30e3\u30c4\u304c\u8cb0\u3048\u308b\u3093\u3067\u3059\u3088\u301c https:\/\/t.co\/zMIr7DRMKM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1352147790,"id_str":"1352147790","name":"\u8fd1\u85e4 \u5343\u7d18","screen_name":"RRchihiro","location":"Revo \u30eb\u30b5\u30f3\u30c1\u30ab","url":"http:\/\/danceprojectrevo.wix.com\/dance-project-revo","description":"\u6b21\u56de\u516c\u6f14\u60c5\u5831 \u30eb\u30b5\u30f3\u30c1\u30ab\u5352\u696d\u5236\u4f5c\u516c\u6f14 \u3010\u6625\u306e\u3081\u3056\u3081\u3011 \u4f5c \u30d5\u30e9\u30f3\u30af\u30fb\u30f4\u30a7\u30c7\u30ad\u30f3\u30c8 \u6f14\u51fa \u6cb3\u4e95\u6717 \u4f1a\u5834 \u4eac\u90fd\u82b8\u8853\u5287\u5834\u6625\u79cb\u5ea7 2015\u5e7412\/5(\u571f)-6(\u65e5) \u66f4\u306a\u308b\u8a73\u7d30\u306f\u4e5e\u3046\u3054\u671f\u5f85\u4e0b\u3055\u3044\uff01\uff01 http:\/\/twitter.com\/ressenchka\/status\/638526595829882880\/photo\/1","protected":false,"verified":false,"followers_count":686,"friends_count":690,"listed_count":4,"favourites_count":1336,"statuses_count":5234,"created_at":"Sun Apr 14 15:48:03 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E9A8F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445054615298379776\/wrhaHGFr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445054615298379776\/wrhaHGFr.jpeg","profile_background_tile":false,"profile_link_color":"AE72C4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652060123066535936\/Y2keg3Cn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652060123066535936\/Y2keg3Cn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1352147790\/1442787820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:16 +0000 2015","id":663721266893819905,"id_str":"663721266893819905","text":"\u30a2\u30a4\u30b9\u306e\u68d2\u3067T\u30b7\u30e3\u30c4\u304c\u8cb0\u3048\u308b\u3093\u3067\u3059\u3088\u301c https:\/\/t.co\/zMIr7DRMKM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576418195,"id_str":"576418195","name":"\u7530\u6751\u8208\u4e00\u90ce KoichiroTamura","screen_name":"vuitton7777","location":"\u4eac\u90fd\u5e9c","url":"http:\/\/danceprojectrevo.wix.com\/dance-project-revo","description":"'92'7'10 \u632f\u4ed8\u5bb6\/\u6f14\u51fa\u5bb6\/\u30c0\u30f3\u30b5\u30fc \u65b0\u6f5f\u51fa\u8eab \u4eac\u90fd\u5728\u4f4f DanceProjectRevo\u4e3b\u5bb0\u30fb\u632f\u4ed8\u30fb\u6f14\u51fa(@revo_bestfriend) \u304a\u7b11\u3044\u30c0\u30f3\u30b9\u30e6\u30cb\u30c3\u30c8 \u30e0\u30ed\u30bf\u30e0\u30e9(@murotamura)\u6b21\u56de\u6d3b\u52d5\u219212\/12-13 Grow! Comtemporarydance in Nagoya","protected":false,"verified":false,"followers_count":328,"friends_count":326,"listed_count":0,"favourites_count":675,"statuses_count":3622,"created_at":"Thu May 10 17:28:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648896601453260800\/dls9RqN2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648896601453260800\/dls9RqN2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576418195\/1443768626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720958365032448,"id_str":"663720958365032448","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","url":"https:\/\/t.co\/zMIr7DRMKM","display_url":"pic.twitter.com\/zMIr7DRMKM","expanded_url":"http:\/\/twitter.com\/vuitton7777\/status\/663721266893819905\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720958365032448,"id_str":"663720958365032448","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","url":"https:\/\/t.co\/zMIr7DRMKM","display_url":"pic.twitter.com\/zMIr7DRMKM","expanded_url":"http:\/\/twitter.com\/vuitton7777\/status\/663721266893819905\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":30030,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/180x320\/wOyUWRlRYEU9q1ii.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/pl\/Fzhlur5gfCZisCxE.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/360x640\/FHCk2O7Uam1dAUPc.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/360x640\/FHCk2O7Uam1dAUPc.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/pl\/Fzhlur5gfCZisCxE.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/720x1280\/eOqXdn9zH6SDv440.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vuitton7777","name":"\u7530\u6751\u8208\u4e00\u90ce KoichiroTamura","id":576418195,"id_str":"576418195","indices":[3,15]}],"symbols":[],"media":[{"id":663720958365032448,"id_str":"663720958365032448","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","url":"https:\/\/t.co\/zMIr7DRMKM","display_url":"pic.twitter.com\/zMIr7DRMKM","expanded_url":"http:\/\/twitter.com\/vuitton7777\/status\/663721266893819905\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663721266893819905,"source_status_id_str":"663721266893819905","source_user_id":576418195,"source_user_id_str":"576418195"}]},"extended_entities":{"media":[{"id":663720958365032448,"id_str":"663720958365032448","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663720958365032448\/pu\/img\/hZOcD-EDDPHZr7Ja.jpg","url":"https:\/\/t.co\/zMIr7DRMKM","display_url":"pic.twitter.com\/zMIr7DRMKM","expanded_url":"http:\/\/twitter.com\/vuitton7777\/status\/663721266893819905\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663721266893819905,"source_status_id_str":"663721266893819905","source_user_id":576418195,"source_user_id_str":"576418195","video_info":{"aspect_ratio":[9,16],"duration_millis":30030,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/180x320\/wOyUWRlRYEU9q1ii.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/pl\/Fzhlur5gfCZisCxE.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/360x640\/FHCk2O7Uam1dAUPc.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/360x640\/FHCk2O7Uam1dAUPc.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/pl\/Fzhlur5gfCZisCxE.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663720958365032448\/pu\/vid\/720x1280\/eOqXdn9zH6SDv440.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156608589828,"id_str":"663728156608589828","text":"RT @emenezes: Sem falar no passado sequestrando, assassinando opositores e assaltando bancos. https:\/\/t.co\/WGyhKJO7bS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2571315692,"id_str":"2571315692","name":"Euclides Silveira","screen_name":"euclidesilveira","location":"Bel\u00e9m do Par\u00e1","url":null,"description":"Por um Brasil melhor","protected":false,"verified":false,"followers_count":677,"friends_count":1030,"listed_count":5,"favourites_count":436,"statuses_count":23596,"created_at":"Mon Jun 16 17:21:06 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482550504061276160\/ovXdrc-j_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482550504061276160\/ovXdrc-j_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2571315692\/1445910212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:39 +0000 2015","id":663725642664574976,"id_str":"663725642664574976","text":"Sem falar no passado sequestrando, assassinando opositores e assaltando bancos. https:\/\/t.co\/WGyhKJO7bS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28468268,"id_str":"28468268","name":"Eduardo Menezes.'.","screen_name":"emenezes","location":"Curitiba, PR","url":"https:\/\/www.facebook.com\/eduardo.menezesdasilva","description":"Consultor e analista de sistemas, atirador e cozinheiro. Conservador de direita e armamentista sem constrangimento. Luto por um Brasil menos corrupto.","protected":false,"verified":false,"followers_count":417,"friends_count":419,"listed_count":4,"favourites_count":544,"statuses_count":17003,"created_at":"Fri Apr 03 01:17:07 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/872616791\/862986d21752fe550385c461b63253d2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/872616791\/862986d21752fe550385c461b63253d2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3060478918\/01dbc6f579ce542b7e15aa65db07cf40_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3060478918\/01dbc6f579ce542b7e15aa65db07cf40_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28468268\/1354113500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6d5542f8d837770d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6d5542f8d837770d.json","place_type":"city","name":"Curitiba","full_name":"Curitiba, Paran\u00e1","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-49.391643,-25.644752],[-49.391643,-25.345747],[-49.185278,-25.345747],[-49.185278,-25.644752]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725613711257602,"id_str":"663725613711257602","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","url":"https:\/\/t.co\/WGyhKJO7bS","display_url":"pic.twitter.com\/WGyhKJO7bS","expanded_url":"http:\/\/twitter.com\/emenezes\/status\/663725642664574976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725613711257602,"id_str":"663725613711257602","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","url":"https:\/\/t.co\/WGyhKJO7bS","display_url":"pic.twitter.com\/WGyhKJO7bS","expanded_url":"http:\/\/twitter.com\/emenezes\/status\/663725642664574976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emenezes","name":"Eduardo Menezes.'.","id":28468268,"id_str":"28468268","indices":[3,12]}],"symbols":[],"media":[{"id":663725613711257602,"id_str":"663725613711257602","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","url":"https:\/\/t.co\/WGyhKJO7bS","display_url":"pic.twitter.com\/WGyhKJO7bS","expanded_url":"http:\/\/twitter.com\/emenezes\/status\/663725642664574976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663725642664574976,"source_status_id_str":"663725642664574976","source_user_id":28468268,"source_user_id_str":"28468268"}]},"extended_entities":{"media":[{"id":663725613711257602,"id_str":"663725613711257602","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7dmWcAIWT4o.jpg","url":"https:\/\/t.co\/WGyhKJO7bS","display_url":"pic.twitter.com\/WGyhKJO7bS","expanded_url":"http:\/\/twitter.com\/emenezes\/status\/663725642664574976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663725642664574976,"source_status_id_str":"663725642664574976","source_user_id":28468268,"source_user_id_str":"28468268"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080098665"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156579246080,"id_str":"663728156579246080","text":"El alzh\u00e9imer podr\u00eda estar provocado por hongos, seg\u00fan un estudio https:\/\/t.co\/udb1SKYi8N","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":541822184,"id_str":"541822184","name":"\u00ae\u2588\u2551F\u2113\u03c3w-D StF\u2588\u00a9\u2122","screen_name":"FalbinF","location":"\u2607Herrera City\u2717 Flow-D \u2611\u2717","url":"http:\/\/www.Facebook.com\/FalbinR","description":"\u2588\u2551M\u0454\u03b7\u03c3\u2113-St\u0455\u2588\u266b\u2122 \u2198[C\u03c5\u0454\u0438\u0442\u03b1 \u03d1\u0192\u0192\u026ac\u026a\u03b1I]\u2196 I L\u03b9k\u0454 \u0181\u03b1s\u03ba\u0454\u0442\u0432\u03b1\u2113 '\u2192 Integrante Del SotanoTF RD @Sotanostudios. - \u2190 IG:FalbinF FollowBack","protected":false,"verified":false,"followers_count":1066,"friends_count":808,"listed_count":13,"favourites_count":158,"statuses_count":121309,"created_at":"Sat Mar 31 17:18:10 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":true,"profile_background_color":"005EFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459812738168926208\/x0qH3HHx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459812738168926208\/x0qH3HHx.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0F0F0F","profile_text_color":"0016FF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577183004717535233\/fE5-bXQq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577183004717535233\/fE5-bXQq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/541822184\/1434734859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/udb1SKYi8N","expanded_url":"http:\/\/dlvr.it\/ChfhkV","display_url":"dlvr.it\/ChfhkV","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098658"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156583399424,"id_str":"663728156583399424","text":"\u306a\u3093\u3060\u308d\u3046\u306a\u3041\u73fe\u5834\u7537\u5b50\u7cfb\u5973\u5b50\u3060\u304b\u3089\u304b\u308f\u3044\u3044\u5973\u306e\u5b50\u306b\u558b\u308a\u304b\u3051\u3089\u308c\u308b\u3068\u6163\u308c\u3066\u306a\u3044\u304b\u3089\u821e\u3044\u4e0a\u304c\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175280358,"id_str":"175280358","name":"\u3044\u305c\u3068@\u5927\u962a\u97f3\u697d\u968a2\u65e5\u76ee","screen_name":"izeto0608","location":"\u304a\u304a\u3055\u304b\u3063","url":null,"description":"\u30cf\u30c1 \u7c73\u6d25\u7384\u5e2b \u30d2\u30c8\u30ea\u30a8 \u982d\u6587\u5b57D GANGSTA. \u30b3\u30fc\u30b9\u30b1\u5148\u751f \u30e9\u30d6\u30e9\u30a4\u30d6 \u6700\u904a\u8a18 \u5cf0\u5009\u304b\u305a\u3084\u5148\u751f \u793e\u4f1a\u4eba \u30e1\u30bf\u30eb\u30ae\u30a25\u30d7\u30ec\u30a4\u4e2d \u5927\u962a\u97f3\u697d\u968a\u4e8c\u65e5\u76ee \u30a2\u30a4\u30b3\u30f3\u306f\u3042\u308f\u305b\u3061\u3083\u3093\u3088\u308a\u3002","protected":false,"verified":false,"followers_count":263,"friends_count":238,"listed_count":14,"favourites_count":2865,"statuses_count":36650,"created_at":"Fri Aug 06 04:47:34 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658948713600028672\/OnsYmK37_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658948713600028672\/OnsYmK37_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175280358\/1433936083","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098659"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156608561152,"id_str":"663728156608561152","text":"RT @ChhinderInsan: @Gurmeetramrahim #MSG2onTheTopInRajasthan Awesome Craze \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c https:\/\/t.co\/vCEmg2nrv4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4155871812,"id_str":"4155871812","name":"himanshu","screen_name":"himanshu2081","location":"sirsa, Haryana","url":null,"description":"student","protected":false,"verified":false,"followers_count":13,"friends_count":11,"listed_count":0,"favourites_count":39,"statuses_count":821,"created_at":"Sat Nov 07 10:06:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662950428515000320\/Y0a7GIl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662950428515000320\/Y0a7GIl__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4155871812\/1446977713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727888844259329,"id_str":"663727888844259329","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan Awesome Craze \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c\ud83d\udc4c https:\/\/t.co\/vCEmg2nrv4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713367958253568,"in_reply_to_status_id_str":"663713367958253568","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2886892046,"id_str":"2886892046","name":"Chhindermanku insan","screen_name":"ChhinderInsan","location":"ludhiana","url":"http:\/\/www.derasachasauda.org","description":"W\/o Jasvirmanku Insan 45m pb","protected":false,"verified":false,"followers_count":222,"friends_count":96,"listed_count":1,"favourites_count":2311,"statuses_count":1613,"created_at":"Sun Nov 02 02:27:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660403311082770432\/UjOjsmO7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660403311082770432\/UjOjsmO7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886892046\/1440511852","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[],"media":[{"id":663727765154234368,"id_str":"663727765154234368","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","url":"https:\/\/t.co\/vCEmg2nrv4","display_url":"pic.twitter.com\/vCEmg2nrv4","expanded_url":"http:\/\/twitter.com\/ChhinderInsan\/status\/663727888844259329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727765154234368,"id_str":"663727765154234368","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","url":"https:\/\/t.co\/vCEmg2nrv4","display_url":"pic.twitter.com\/vCEmg2nrv4","expanded_url":"http:\/\/twitter.com\/ChhinderInsan\/status\/663727888844259329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[36,60]}],"urls":[],"user_mentions":[{"screen_name":"ChhinderInsan","name":"Chhindermanku insan","id":2886892046,"id_str":"2886892046","indices":[3,17]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[19,35]}],"symbols":[],"media":[{"id":663727765154234368,"id_str":"663727765154234368","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","url":"https:\/\/t.co\/vCEmg2nrv4","display_url":"pic.twitter.com\/vCEmg2nrv4","expanded_url":"http:\/\/twitter.com\/ChhinderInsan\/status\/663727888844259329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727888844259329,"source_status_id_str":"663727888844259329","source_user_id":2886892046,"source_user_id_str":"2886892046"}]},"extended_entities":{"media":[{"id":663727765154234368,"id_str":"663727765154234368","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4sWVAAAzvFn.jpg","url":"https:\/\/t.co\/vCEmg2nrv4","display_url":"pic.twitter.com\/vCEmg2nrv4","expanded_url":"http:\/\/twitter.com\/ChhinderInsan\/status\/663727888844259329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727888844259329,"source_status_id_str":"663727888844259329","source_user_id":2886892046,"source_user_id_str":"2886892046"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098665"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604416000,"id_str":"663728156604416000","text":"\u26051Day\u2605\u3000DOLCE Perfect Series 1Day \u3000\u9583\u5203\u30db\u30ef\u30a4\u30c8\u30001\u7bb16\u679a\u5165\u308a\u30fb\u5ea6\u3042\u308a\u00a0|\u00a0\u30a2\u30b7\u30b9\u30c8\u30a6\u30a3\u30c3\u30b0\u3000\u30aa\u30f3\u30e9\u30a4\u30f3\u30b7\u30e7\u30c3\u30d7 https:\/\/t.co\/lWk8IJTIgc \n\u3059\u3063\u3063\u3054\u304f\u6c17\u306b\u306a\u308b\u3093\u3060\u3051\u3069\u3001\u3053\u308c\u3063\u3066\u4e09\u767d\u773c\u30ab\u30e9\u30b3\u30f3\u3088\u308a\u3001\u9ed2\u76ee\u3061\u3063\u3061\u3083\u3044\u3088\u306d\u2026\u2026\uff01\uff1f\ud83d\ude23","source":"\u003ca href=\"http:\/\/jigtwi.jp\/?p=1\" rel=\"nofollow\"\u003ejigtwi\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2552760618,"id_str":"2552760618","name":"\u30cf\u30c4\u30ab@\u5927\u7b52\u6728","screen_name":"lesmise2012","location":"\u540d\u53e4\u5c4b","url":null,"description":"\u3010\u4e00\u5fdc\u30b3\u30b9\u57a2\u3011\u30cf\u30c4\u30ab\u3067\u3059\u3002(\u7d75\u63cf\u304f\u6642\u306f\u300e\u3055\u3042\u308a\u300f)\u30de\u30c0\u30e9\u69d8\u72ec\u5360\u6b32\u3002\nNARUTO\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u3002\u672c\u5f53\u306b\u5fc3\u306e\u5e95\u306e\u5e95\u304b\u3089NARUTO\u3092\u611b\u3057\u3066\u308b\u3002NARUTO\u7121\u3044\u3068\u606f\u304c\u51fa\u6765\u306a\u3044\u3002\n\u30b3\u30b9\/\u65e5\u5e38\/\u7d75\n\u300eNARUTO DANCER\u300f\u6240\u5c5e\u3002\n\u203b\u672c\u57a2\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u203b\u3010RT\u4ee5\u5916\u306e\u753b\u50cf\u306e\u8ee2\u8f09\u7981\u6b62\u3011\n\u2661\u6700\u8fd1\u306f\u5927\u7b52\u6728\u5144\u5f1f\u2661","protected":false,"verified":false,"followers_count":93,"friends_count":55,"listed_count":11,"favourites_count":793,"statuses_count":4781,"created_at":"Sat Jun 07 15:03:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663208033728643072\/jpwzjbs2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663208033728643072\/jpwzjbs2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2552760618\/1446955967","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lWk8IJTIgc","expanded_url":"http:\/\/www.assist-wig.com\/detail\/014268","display_url":"assist-wig.com\/detail\/014268","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098664"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600217601,"id_str":"663728156600217601","text":"RT @sky_ri9c: \u304a\u3058\u3055\u3093\u2026\n\n https:\/\/t.co\/ovdtLGzHUY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192864595,"id_str":"3192864595","name":"\u305f\u304b\u3084\u30de\u30f3","screen_name":"takayaman22","location":null,"url":null,"description":"\u5b66\u5927\u7af9\u65e9\u4e2d\u2192\u6176\u61c9\u5fd7\u6728 2C \u30db\u30c3\u30b1\u30fc\u90e8","protected":false,"verified":false,"followers_count":191,"friends_count":209,"listed_count":0,"favourites_count":663,"statuses_count":705,"created_at":"Tue May 12 05:13:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621484199795560449\/xQ3ochAR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621484199795560449\/xQ3ochAR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3192864595\/1441933438","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:00:39 +0000 2015","id":663310156495634433,"id_str":"663310156495634433","text":"\u304a\u3058\u3055\u3093\u2026\n\n https:\/\/t.co\/ovdtLGzHUY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572989374,"id_str":"2572989374","name":"R!ku@\u5b8c\u5168\u52dd\u5229","screen_name":"sky_ri9c","location":"\u7fa4\u99ac","url":null,"description":"\u9ad8\uff12\uff01\uff01r!ku\u3068\u7533\u3057\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30d0\u3088\u308d\u3057\u304f\u306d\u3002\u5168\u65e5\u672c\u3082\u3046\u5e30\u308a\u305f\u3044\u5354\u4f1a\u306e\u3082\u306e\u3067\u3059\u3002@sky_ri9u \u6210\u308a\u3059\u307e\u3057\u57a2\u306f\u7121\u4e8b\u51cd\u7d50\u3057\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u5354\u529b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305fm(_ _)m \u3053\u308c\u304b\u3089\u3082\u3088\u308d\u3057\u304f\u306d\u30fc\uff01\uff01","protected":false,"verified":false,"followers_count":73506,"friends_count":73253,"listed_count":151,"favourites_count":34642,"statuses_count":14811,"created_at":"Tue Jun 17 14:15:53 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661780512025894912\/8fPSz6N0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661780512025894912\/8fPSz6N0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572989374\/1446364408","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13658,"favorite_count":10833,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314"}]},"extended_entities":{"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314","video_info":{"aspect_ratio":[9,16],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/180x320\/8myg1OdTxYSEDhI-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/720x1280\/jWlz__w4F3hr91VG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sky_ri9c","name":"R!ku@\u5b8c\u5168\u52dd\u5229","id":2572989374,"id_str":"2572989374","indices":[3,12]}],"symbols":[],"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314"}]},"extended_entities":{"media":[{"id":662257104388947969,"id_str":"662257104388947969","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662257104388947969\/pu\/img\/pS2jm7oR_3VGF1Tn.jpg","url":"https:\/\/t.co\/ovdtLGzHUY","display_url":"pic.twitter.com\/ovdtLGzHUY","expanded_url":"http:\/\/twitter.com\/snkz_hideto\/status\/662257221095428102\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":662257221095428102,"source_status_id_str":"662257221095428102","source_user_id":2717211314,"source_user_id_str":"2717211314","video_info":{"aspect_ratio":[9,16],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/180x320\/8myg1OdTxYSEDhI-.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/360x640\/cd9lAdxU5Y0X7NMs.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/pl\/Hogj4roHyzw1oxMW.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662257104388947969\/pu\/vid\/720x1280\/jWlz__w4F3hr91VG.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156591788033,"id_str":"663728156591788033","text":"@n_chi__take \n\u3042\u307e\u3064\u304b\u3068\u805e\u3044\u3066\u601d\u3044\u6d6e\u304b\u3076\u306e1\u3064\u3057\u304b\u306a\u3044\u3093\u3060\u304c()","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726603059367937,"in_reply_to_status_id_str":"663726603059367937","in_reply_to_user_id":907937862,"in_reply_to_user_id_str":"907937862","in_reply_to_screen_name":"n_chi__take","user":{"id":339444725,"id_str":"339444725","name":"\u3057\u3093\u3061\u3083\u3093","screen_name":"laugh_away05","location":null,"url":null,"description":"\u30ca\u30b4\u30e4\u30c9\u30fc\u30e0\u3067\u3082\u306a\u304f\u2026\u6771\u4eac\u30c9\u30fc\u30e0\u3067\u3082\u306a\u304f\u2026\u30c7\u30a3\u30ba\u30cb\u30fc\u3067\u25ce\/viva GIANTS","protected":false,"verified":false,"followers_count":321,"friends_count":283,"listed_count":11,"favourites_count":2376,"statuses_count":31770,"created_at":"Thu Jul 21 03:32:30 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656193465017995264\/zEH5qn01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656193465017995264\/zEH5qn01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/339444725\/1446728247","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"n_chi__take","name":"\u305f\u3051(\u3057)","id":907937862,"id_str":"907937862","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098661"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156600324097,"id_str":"663728156600324097","text":"RT @Gus_802: This is the lunatic \"pastor\" that started this Starbuck's paper red cup stupidity. Joshua Feuerstein. https:\/\/t.co\/tCgWmeYcJZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37688993,"id_str":"37688993","name":"Erniegrrl","screen_name":"erniegrrl","location":"Appalachian Ohio, USA","url":null,"description":"I have the honor to be your obedient servant.","protected":false,"verified":false,"followers_count":235,"friends_count":427,"listed_count":10,"favourites_count":4685,"statuses_count":5189,"created_at":"Mon May 04 15:57:21 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DAD1BF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/161199836\/xfecb080a6141dbe8caee939a07e4607.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/161199836\/xfecb080a6141dbe8caee939a07e4607.jpg","profile_background_tile":false,"profile_link_color":"6A6B85","profile_sidebar_border_color":"DA6F8E","profile_sidebar_fill_color":"D2DB9B","profile_text_color":"56675F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663490390792740864\/pTexfVEf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663490390792740864\/pTexfVEf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37688993\/1438273782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:55:50 +0000 2015","id":663701529166090241,"id_str":"663701529166090241","text":"This is the lunatic \"pastor\" that started this Starbuck's paper red cup stupidity. Joshua Feuerstein. https:\/\/t.co\/tCgWmeYcJZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237572596,"id_str":"237572596","name":"Gus Denali \u00af\\_(\u30c4)_\/\u00af","screen_name":"Gus_802","location":"Denver, CO","url":"http:\/\/littlegreenfootballs.com\/pages\/Gus%20802","description":"Aviation \u25cf Design \u25cf Life \u25cf Music \u25cf News \u25cf Politics \u25cf Skeptical\r\n\r\nNon-believer prone to occasional sarcasm, grumpiness and desk flipping.","protected":false,"verified":false,"followers_count":2781,"friends_count":1154,"listed_count":153,"favourites_count":38577,"statuses_count":257074,"created_at":"Thu Jan 13 03:59:08 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"011BD4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630895840647774208\/eUB5Nmr2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630895840647774208\/eUB5Nmr2.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"66CCFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647624102354665472\/RHr_guMB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647624102354665472\/RHr_guMB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237572596\/1398198183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663701526527897601,"id_str":"663701526527897601","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":345,"h":240,"resize":"fit"},"medium":{"w":345,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701526527897601,"id_str":"663701526527897601","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":345,"h":240,"resize":"fit"},"medium":{"w":345,"h":240,"resize":"fit"}}},{"id":663701527366754304,"id_str":"663701527366754304","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBc-UYAAVcjo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBc-UYAAVcjo.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":222,"h":395,"resize":"fit"},"medium":{"w":222,"h":395,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":222,"h":395,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gus_802","name":"Gus Denali \u00af\\_(\u30c4)_\/\u00af","id":237572596,"id_str":"237572596","indices":[3,11]}],"symbols":[],"media":[{"id":663701526527897601,"id_str":"663701526527897601","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":345,"h":240,"resize":"fit"},"medium":{"w":345,"h":240,"resize":"fit"}},"source_status_id":663701529166090241,"source_status_id_str":"663701529166090241","source_user_id":237572596,"source_user_id_str":"237572596"}]},"extended_entities":{"media":[{"id":663701526527897601,"id_str":"663701526527897601","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBZ2UcAEVgXn.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":236,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":345,"h":240,"resize":"fit"},"medium":{"w":345,"h":240,"resize":"fit"}},"source_status_id":663701529166090241,"source_status_id_str":"663701529166090241","source_user_id":237572596,"source_user_id_str":"237572596"},{"id":663701527366754304,"id_str":"663701527366754304","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxBc-UYAAVcjo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxBc-UYAAVcjo.jpg","url":"https:\/\/t.co\/tCgWmeYcJZ","display_url":"pic.twitter.com\/tCgWmeYcJZ","expanded_url":"http:\/\/twitter.com\/Gus_802\/status\/663701529166090241\/photo\/1","type":"photo","sizes":{"small":{"w":222,"h":395,"resize":"fit"},"medium":{"w":222,"h":395,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":222,"h":395,"resize":"fit"}},"source_status_id":663701529166090241,"source_status_id_str":"663701529166090241","source_user_id":237572596,"source_user_id_str":"237572596"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080098663"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156587638790,"id_str":"663728156587638790","text":"RT @Dr_OscarCabrera: Dice la OMS que madrugar tambi\u00e9n da c\u00e1ncer.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489423964,"id_str":"1489423964","name":"Mario Veliz \u30c4","screen_name":"TottoVel","location":null,"url":null,"description":"Futuro M\u00e9dico SanCarlista 19. con cara de 15 Amante de los libros snapchat: tottovel","protected":false,"verified":false,"followers_count":358,"friends_count":445,"listed_count":1,"favourites_count":333,"statuses_count":5051,"created_at":"Fri Jun 07 03:46:27 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4915D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156288109\/r6tkVXwb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156288109\/r6tkVXwb.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640037216064966656\/E7via6iU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640037216064966656\/E7via6iU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1489423964\/1424746612","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:05:49 +0000 2015","id":663704043500474369,"id_str":"663704043500474369","text":"Dice la OMS que madrugar tambi\u00e9n da c\u00e1ncer.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":567881458,"id_str":"567881458","name":"Dr_OscarCabrera","screen_name":"Dr_OscarCabrera","location":null,"url":"https:\/\/youtu.be\/mJIPAFfmJ7c","description":"M\u00e9dico de la Rep\u00fablica del Ecuador \n Suscr\u00edbete a mi canal de YouTube","protected":false,"verified":false,"followers_count":61946,"friends_count":158,"listed_count":139,"favourites_count":1,"statuses_count":405,"created_at":"Tue May 01 05:15:47 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172174815\/V0MLvwTF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172174815\/V0MLvwTF.jpeg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582911626292129792\/7PhnyHvK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582911626292129792\/7PhnyHvK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/567881458\/1427811988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":48,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dr_OscarCabrera","name":"Dr_OscarCabrera","id":567881458,"id_str":"567881458","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080098660"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156575031296,"id_str":"663728156575031296","text":"@sing_n802 \u3042\u308c\u7d76\u5bfe\u96e3\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728011435347969,"in_reply_to_status_id_str":"663728011435347969","in_reply_to_user_id":1572792422,"in_reply_to_user_id_str":"1572792422","in_reply_to_screen_name":"sing_n802","user":{"id":3152962644,"id_str":"3152962644","name":"\u30aa\u30ab\u30de\u6cd5\u5c11\u5973\u304c\u307c\u3093","screen_name":"ryo_mask","location":"\u307f\u304b\u3093\u306e\u4e2d","url":null,"description":"\u610f\u5916\u304b\u3082\u77e5\u308c\u307e\u305b\u3093\u304c\u5b9f\u306f\u5c11\u5973\u3067\u306f\u3042\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":168,"friends_count":167,"listed_count":2,"favourites_count":4485,"statuses_count":12294,"created_at":"Mon Apr 13 14:23:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663688346267353089\/M4MINSId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663688346267353089\/M4MINSId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3152962644\/1446034973","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sing_n802","name":"\u306a\u3064\u304d","id":1572792422,"id_str":"1572792422","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098657"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156612804608,"id_str":"663728156612804608","text":"\u3084\u3070\u3044\u592a\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2598207751,"id_str":"2598207751","name":"\u2662\u2664MaRina*\u2661\u2667","screen_name":"marinnjk019","location":"\u30c0\u30a4\u30a8\u30c3\u30c8\u7d99\u7d9a\u4e2d","url":null,"description":"\u2662JK2\u2662\u30d5\u30bf\u30b4(@giantsAi_019)\u2662\u30d2\u30c8\u30ae\u30e9\u30a4\u21c6\u30d2\u30c8\u30b9\u30ad","protected":false,"verified":false,"followers_count":152,"friends_count":84,"listed_count":3,"favourites_count":1697,"statuses_count":2031,"created_at":"Tue Jul 01 15:48:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560795053790998529\/1coNIOSq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560795053790998529\/1coNIOSq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2598207751\/1443502056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080098666"} +{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728156604538880,"id_str":"663728156604538880","text":"mano ainda bem q a minha m\u00e3e n viu oq eu deixei em cima da minha cama kkkkkk obg Deus","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320267501,"id_str":"320267501","name":"Al\u00ea","screen_name":"AlessandraQnts_","location":"Canalhizando","url":"http:\/\/instagram.com\/alessandraquintas","description":"@FilipeRet \u2764","protected":false,"verified":false,"followers_count":1643,"friends_count":850,"listed_count":21,"favourites_count":6381,"statuses_count":23488,"created_at":"Sun Jun 19 16:18:09 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471337385091796993\/ss2sgi61.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471337385091796993\/ss2sgi61.jpeg","profile_background_tile":true,"profile_link_color":"9C27D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D17CED","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662037784224485376\/tFJKDwg7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662037784224485376\/tFJKDwg7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320267501\/1447001007","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e197438c3cdbd6c0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e197438c3cdbd6c0.json","place_type":"city","name":"Petr\u00f3polis","full_name":"Petr\u00f3polis, Rio de Janeiro","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.377350,-22.571793],[-43.377350,-22.202457],[-42.997237,-22.202457],[-42.997237,-22.571793]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080098664"} +{"delete":{"status":{"id":648003547338948608,"id_str":"648003547338948608","user_id":3309808280,"user_id_str":"3309808280"},"timestamp_ms":"1447080099108"}} +{"delete":{"status":{"id":663692421121892352,"id_str":"663692421121892352","user_id":3648124814,"user_id_str":"3648124814"},"timestamp_ms":"1447080099310"}} +{"delete":{"status":{"id":663727674259542016,"id_str":"663727674259542016","user_id":177247082,"user_id_str":"177247082"},"timestamp_ms":"1447080099341"}} +{"delete":{"status":{"id":652220500576464896,"id_str":"652220500576464896","user_id":2394969031,"user_id_str":"2394969031"},"timestamp_ms":"1447080099417"}} +{"delete":{"status":{"id":663727632320626688,"id_str":"663727632320626688","user_id":2215736377,"user_id_str":"2215736377"},"timestamp_ms":"1447080099359"}} +{"delete":{"status":{"id":519401992372752385,"id_str":"519401992372752385","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080099612"}} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160790487041,"id_str":"663728160790487041","text":"Organizaciones sociales convocan a cacerolazo contra la colusi\u00f3n para este viernes 13. @pulso_tw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":844256442,"id_str":"844256442","name":"Tom\u00e1s Mart\u00ednez","screen_name":"pulso_tmartinez","location":null,"url":"http:\/\/www.pulso.cl","description":"Editor de Pol\u00edtica, Diario PULSO. Santiago de Chile.","protected":false,"verified":false,"followers_count":1738,"friends_count":674,"listed_count":31,"favourites_count":34,"statuses_count":6225,"created_at":"Mon Sep 24 20:34:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497406248258510848\/RACZP9WO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497406248258510848\/RACZP9WO_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pulso_tw","name":"Diario Pulso","id":420592061,"id_str":"420592061","indices":[87,96]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099662"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160807235584,"id_str":"663728160807235584","text":"RT @InforKatrahn: https:\/\/t.co\/7XNsiXmVVA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3367914173,"id_str":"3367914173","name":"samanta","screen_name":"2samanta2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":250,"friends_count":1029,"listed_count":2,"favourites_count":0,"statuses_count":19341,"created_at":"Thu Jul 09 17:05:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621005507143290880\/KPJACL5s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621005507143290880\/KPJACL5s_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:27 +0000 2015","id":663719552463872001,"id_str":"663719552463872001","text":"https:\/\/t.co\/7XNsiXmVVA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3107544205,"id_str":"3107544205","name":"ATLANTA_HN","screen_name":"InforKatrahn","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":540,"friends_count":2023,"listed_count":2,"favourites_count":0,"statuses_count":30031,"created_at":"Wed Mar 25 14:19:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580740326140166145\/qpubSrOG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580740326140166145\/qpubSrOG_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719551478157312,"id_str":"663719551478157312","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","url":"https:\/\/t.co\/7XNsiXmVVA","display_url":"pic.twitter.com\/7XNsiXmVVA","expanded_url":"http:\/\/twitter.com\/InforKatrahn\/status\/663719552463872001\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":244,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":207,"resize":"fit"},"medium":{"w":400,"h":244,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719551478157312,"id_str":"663719551478157312","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","url":"https:\/\/t.co\/7XNsiXmVVA","display_url":"pic.twitter.com\/7XNsiXmVVA","expanded_url":"http:\/\/twitter.com\/InforKatrahn\/status\/663719552463872001\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":244,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":207,"resize":"fit"},"medium":{"w":400,"h":244,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"InforKatrahn","name":"ATLANTA_HN","id":3107544205,"id_str":"3107544205","indices":[3,16]}],"symbols":[],"media":[{"id":663719551478157312,"id_str":"663719551478157312","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","url":"https:\/\/t.co\/7XNsiXmVVA","display_url":"pic.twitter.com\/7XNsiXmVVA","expanded_url":"http:\/\/twitter.com\/InforKatrahn\/status\/663719552463872001\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":244,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":207,"resize":"fit"},"medium":{"w":400,"h":244,"resize":"fit"}},"source_status_id":663719552463872001,"source_status_id_str":"663719552463872001","source_user_id":3107544205,"source_user_id_str":"3107544205"}]},"extended_entities":{"media":[{"id":663719551478157312,"id_str":"663719551478157312","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBamBWUAAQBpW.jpg","url":"https:\/\/t.co\/7XNsiXmVVA","display_url":"pic.twitter.com\/7XNsiXmVVA","expanded_url":"http:\/\/twitter.com\/InforKatrahn\/status\/663719552463872001\/photo\/1","type":"photo","sizes":{"large":{"w":400,"h":244,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":207,"resize":"fit"},"medium":{"w":400,"h":244,"resize":"fit"}},"source_status_id":663719552463872001,"source_status_id_str":"663719552463872001","source_user_id":3107544205,"source_user_id_str":"3107544205"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080099666"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160773681152,"id_str":"663728160773681152","text":"RT @Freedom_Poems: \u0646\u0639\u0645 \u0623\u0646\u0627 \u0628\u0644\u0627 \u0623\u062f\u0628\n \u0648\u0634\u0639\u0631\u064a \u0643\u0644\u0647\n\u0644\u064a\u0633 \u0633\u0648\u0649 \u0634\u062a\u0645\u064d \u0648\u0633\u0628\n\u0648\u0645\u0627 \u0627\u0644\u0639\u062c\u0628\n\u0627\u0644\u0646\u0627\u0631\u0644\u0627 \u062a\u0646\u0637\u0642 \u0625\u0644\u0627 \u0644\u0647\u0628\u0627\u064b\n\u0625\u0646 \u062e\u0646\u0642\u0648\u0647\u0627 \u0628\u0627\u0644\u062d\u0637\u0628\n\u0648\u0625\u0646\u0646\u064a \u0645\u062e\u062a\u0646\u0642\n\u062d\u062f\u0627\u0644\u062a\u0647\u0627\u0645\u064a \u063a\u0636\u0628\u064a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050870139,"id_str":"1050870139","name":"\u0643\u0646\u062a \u0647\u0646\u0627","screen_name":"Fatemah_math_88","location":null,"url":null,"description":"\u0647\u0646\u0627 \u062a\u062c\u062f \u0628\u0639\u0636 \u0645\u0646\u064a \u0623\u0646 \u0627\u0639\u062c\u0628\u0643 \u0641\u062c\u064a\u062f \u0648\u0625\u0646 \u0644\u0645 \u064a\u0639\u062c\u0628\u0643 \u0641\u0647\u0648 \u0631\u0623\u064a\u064a \u0644\u0627 \u0623\u062c\u0628\u0631\u0643 \u0639\u0644\u064a\u0647","protected":false,"verified":false,"followers_count":371,"friends_count":41,"listed_count":1,"favourites_count":682,"statuses_count":7996,"created_at":"Mon Dec 31 18:01:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/416179571760037888\/yiNQoVgz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/416179571760037888\/yiNQoVgz_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:52 +0000 2015","id":663711605046296576,"id_str":"663711605046296576","text":"\u0646\u0639\u0645 \u0623\u0646\u0627 \u0628\u0644\u0627 \u0623\u062f\u0628\n \u0648\u0634\u0639\u0631\u064a \u0643\u0644\u0647\n\u0644\u064a\u0633 \u0633\u0648\u0649 \u0634\u062a\u0645\u064d \u0648\u0633\u0628\n\u0648\u0645\u0627 \u0627\u0644\u0639\u062c\u0628\n\u0627\u0644\u0646\u0627\u0631\u0644\u0627 \u062a\u0646\u0637\u0642 \u0625\u0644\u0627 \u0644\u0647\u0628\u0627\u064b\n\u0625\u0646 \u062e\u0646\u0642\u0648\u0647\u0627 \u0628\u0627\u0644\u062d\u0637\u0628\n\u0648\u0625\u0646\u0646\u064a \u0645\u062e\u062a\u0646\u0642\n\u062d\u062f\u0627\u0644\u062a\u0647\u0627\u0645\u064a \u063a\u0636\u0628\u064a\n\u0645\u0646 \u0641\u0631\u0637 \u0645\u0627 \u0628\u064a \u0645\u0646 \u063a\u0636\u0628","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2188656774,"id_str":"2188656774","name":"\u0623\u062d\u0645\u062f \u0645\u0637\u0631","screen_name":"Freedom_Poems","location":"\u0627\u0644\u0639\u0631\u0627\u0642","url":null,"description":"\u0623\u062d\u0645\u062f \u0645\u0637\u0631 .. \u0634\u0627\u0639\u0631 \u0627\u0644\u062d\u0631\u064a\u0629","protected":false,"verified":false,"followers_count":22512,"friends_count":13,"listed_count":150,"favourites_count":7,"statuses_count":689,"created_at":"Mon Nov 11 16:25:44 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114646060\/a38876ea96ba7b4686d14973ba002b46.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114646060\/a38876ea96ba7b4686d14973ba002b46.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425861694267473920\/4FnSiMid_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425861694267473920\/4FnSiMid_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2188656774\/1430678168","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Freedom_Poems","name":"\u0623\u062d\u0645\u062f \u0645\u0637\u0631","id":2188656774,"id_str":"2188656774","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080099658"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769507328,"id_str":"663728160769507328","text":"@safaricom_care i lost my\nphone n was asking if theirs a\nway i will get IMEI so that i give to\nthe cid for tracking","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":320662182,"in_reply_to_user_id_str":"320662182","in_reply_to_screen_name":"Safaricom_Care","user":{"id":364859003,"id_str":"364859003","name":"Saikorn","screen_name":"Luiyet02","location":null,"url":null,"description":"#MUFC #Footballfanatics #manchesterunitedengineer \r\n#teenagerfollower\r\n#hiphop&rnb is my life","protected":false,"verified":false,"followers_count":1303,"friends_count":1346,"listed_count":8,"favourites_count":140,"statuses_count":4596,"created_at":"Tue Aug 30 13:27:47 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582559558360395776\/k8Vh4vwN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582559558360395776\/k8Vh4vwN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364859003\/1415631214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Safaricom_Care","name":"Safaricom ","id":320662182,"id_str":"320662182","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160803045376,"id_str":"663728160803045376","text":"RT @DilmaRousselff: come esse salgadinho aqui https:\/\/t.co\/xF4HJFP4bT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2469782151,"id_str":"2469782151","name":"Lua \u262a","screen_name":"luannaverdelho","location":"c4","url":null,"description":null,"protected":false,"verified":false,"followers_count":526,"friends_count":1098,"listed_count":0,"favourites_count":6692,"statuses_count":37643,"created_at":"Tue Apr 08 15:39:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637269899560288256\/hNH_PtN8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637269899560288256\/hNH_PtN8.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663544395375988737\/dktY1Ynj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663544395375988737\/dktY1Ynj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2469782151\/1447040799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:54:28 +0000 2015","id":663474695233253377,"id_str":"663474695233253377","text":"come esse salgadinho aqui https:\/\/t.co\/xF4HJFP4bT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2551472479,"id_str":"2551472479","name":"Dilminha","screen_name":"DilmaRousselff","location":"Brasil","url":"http:\/\/facebook.com\/ADilminha","description":"Perfil fake, Conta de Par\u00f3dia. (Este perfil n\u00e3o tem qualquer vinculo com a conta oficial @dilmabr). parody account.\r\nEmail \u2709\ufe0f: ContatoDilminha@outlook.com","protected":false,"verified":false,"followers_count":315607,"friends_count":77,"listed_count":160,"favourites_count":1498,"statuses_count":6807,"created_at":"Sat Jun 07 02:56:57 +0000 2014","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"8B0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660637450000318464\/k1f88th4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660637450000318464\/k1f88th4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2551472479\/1446343240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1885,"favorite_count":1067,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663474694000132096,"id_str":"663474694000132096","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","url":"https:\/\/t.co\/xF4HJFP4bT","display_url":"pic.twitter.com\/xF4HJFP4bT","expanded_url":"http:\/\/twitter.com\/DilmaRousselff\/status\/663474695233253377\/photo\/1","type":"photo","sizes":{"large":{"w":216,"h":216,"resize":"fit"},"small":{"w":216,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":216,"h":216,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663474694000132096,"id_str":"663474694000132096","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","url":"https:\/\/t.co\/xF4HJFP4bT","display_url":"pic.twitter.com\/xF4HJFP4bT","expanded_url":"http:\/\/twitter.com\/DilmaRousselff\/status\/663474695233253377\/photo\/1","type":"photo","sizes":{"large":{"w":216,"h":216,"resize":"fit"},"small":{"w":216,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":216,"h":216,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DilmaRousselff","name":"Dilminha","id":2551472479,"id_str":"2551472479","indices":[3,18]}],"symbols":[],"media":[{"id":663474694000132096,"id_str":"663474694000132096","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","url":"https:\/\/t.co\/xF4HJFP4bT","display_url":"pic.twitter.com\/xF4HJFP4bT","expanded_url":"http:\/\/twitter.com\/DilmaRousselff\/status\/663474695233253377\/photo\/1","type":"photo","sizes":{"large":{"w":216,"h":216,"resize":"fit"},"small":{"w":216,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":216,"h":216,"resize":"fit"}},"source_status_id":663474695233253377,"source_status_id_str":"663474695233253377","source_user_id":2551472479,"source_user_id_str":"2551472479"}]},"extended_entities":{"media":[{"id":663474694000132096,"id_str":"663474694000132096","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUiuA1WwAAaJ14.png","url":"https:\/\/t.co\/xF4HJFP4bT","display_url":"pic.twitter.com\/xF4HJFP4bT","expanded_url":"http:\/\/twitter.com\/DilmaRousselff\/status\/663474695233253377\/photo\/1","type":"photo","sizes":{"large":{"w":216,"h":216,"resize":"fit"},"small":{"w":216,"h":216,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":216,"h":216,"resize":"fit"}},"source_status_id":663474695233253377,"source_status_id_str":"663474695233253377","source_user_id":2551472479,"source_user_id_str":"2551472479"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080099665"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160786124800,"id_str":"663728160786124800","text":"RT @theCheerBook: So casual \ud83d\udc4c\ud83c\udffc\ud83d\ude0f https:\/\/t.co\/OZP3fNXW6c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2431273699,"id_str":"2431273699","name":"bree","screen_name":"breenorwoodd","location":null,"url":null,"description":"mhs cheer","protected":false,"verified":false,"followers_count":367,"friends_count":317,"listed_count":3,"favourites_count":1874,"statuses_count":5302,"created_at":"Mon Apr 07 01:41:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662414988477267968\/WDMaX84o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662414988477267968\/WDMaX84o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2431273699\/1442018937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 02:20:23 +0000 2015","id":663179225122406400,"id_str":"663179225122406400","text":"So casual \ud83d\udc4c\ud83c\udffc\ud83d\ude0f https:\/\/t.co\/OZP3fNXW6c","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":905363521,"id_str":"905363521","name":"CheerBook","screen_name":"theCheerBook","location":null,"url":null,"description":"Cheerleading | Updates | Videos | Quotes | Inspiration advertising: lionsheadsocial@gmail.com","protected":false,"verified":false,"followers_count":188775,"friends_count":70589,"listed_count":95,"favourites_count":41,"statuses_count":14397,"created_at":"Fri Oct 26 05:31:05 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/507401839479099392\/T3MWD2F0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/507401839479099392\/T3MWD2F0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/905363521\/1430232868","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":505,"favorite_count":833,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OZP3fNXW6c","expanded_url":"https:\/\/vine.co\/v\/egwdjHe1mQX","display_url":"vine.co\/v\/egwdjHe1mQX","indices":[14,37]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OZP3fNXW6c","expanded_url":"https:\/\/vine.co\/v\/egwdjHe1mQX","display_url":"vine.co\/v\/egwdjHe1mQX","indices":[32,55]}],"user_mentions":[{"screen_name":"theCheerBook","name":"CheerBook","id":905363521,"id_str":"905363521","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099661"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769515520,"id_str":"663728160769515520","text":"RT @DanHannanMEP: \u201cThe Europe of today is no longer of one speed,\u201d Says Angela Merkel. Different speeds, same destination. https:\/\/t.co\/7yD\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164794909,"id_str":"164794909","name":"Iain Gordon","screen_name":"lyeemoon","location":"lo Selhurst (ZS)","url":null,"description":"Sleuth Sceptic Turco\/Kurdophile Atheist for - Historic Chapels http:\/\/hct.org.uk - Heyva sor. Pubs\/real ale. CPFC #johnnybyrne Turkiye futbol aficionado.","protected":false,"verified":false,"followers_count":629,"friends_count":1504,"listed_count":18,"favourites_count":669,"statuses_count":20458,"created_at":"Fri Jul 09 19:42:58 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628491309968437248\/x7lC0FRV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628491309968437248\/x7lC0FRV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 09:36:27 +0000 2015","id":662926578301534208,"id_str":"662926578301534208","text":"\u201cThe Europe of today is no longer of one speed,\u201d Says Angela Merkel. Different speeds, same destination. https:\/\/t.co\/7yDdURDShe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85794542,"id_str":"85794542","name":"Daniel Hannan","screen_name":"DanHannanMEP","location":null,"url":"http:\/\/www.hannan.co.uk","description":"Old Whig. Columnist with CapX, ConservativeHome and the Washington Examiner. Author of 'How we Invented Freedom'. Conservative MEP. Loves Europe, not the EU.","protected":false,"verified":true,"followers_count":63084,"friends_count":500,"listed_count":1920,"favourites_count":100,"statuses_count":11068,"created_at":"Wed Oct 28 11:18:28 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DBDE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000145698891\/BsRhh5GY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000145698891\/BsRhh5GY.jpeg","profile_background_tile":true,"profile_link_color":"18308F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653595780540841984\/SEd9VZfh_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653595780540841984\/SEd9VZfh_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85794542\/1398755971","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":12,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7yDdURDShe","expanded_url":"http:\/\/www.independent.co.uk\/voices\/comment\/david-cameron-and-george-osborne-refine-their-eu-referendum-lines-a6724581.html","display_url":"independent.co.uk\/voices\/comment\u2026","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7yDdURDShe","expanded_url":"http:\/\/www.independent.co.uk\/voices\/comment\/david-cameron-and-george-osborne-refine-their-eu-referendum-lines-a6724581.html","display_url":"independent.co.uk\/voices\/comment\u2026","indices":[123,140]}],"user_mentions":[{"screen_name":"DanHannanMEP","name":"Daniel Hannan","id":85794542,"id_str":"85794542","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160773656576,"id_str":"663728160773656576","text":"RT @EmblemThree: You'll be my Monday my fresh start","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":561538022,"id_str":"561538022","name":"shama","screen_name":"musicisyummy","location":"on the planet earth :)","url":"http:\/\/broken-hearts-ina-drawer.tumblr.com","description":"Everybody loves a good jazz square","protected":false,"verified":false,"followers_count":187,"friends_count":626,"listed_count":0,"favourites_count":464,"statuses_count":2672,"created_at":"Mon Apr 23 23:03:23 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C2FCDD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/619733538\/x4dacbc8ed9bb024dd2dbcdeb1a0da02.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/619733538\/x4dacbc8ed9bb024dd2dbcdeb1a0da02.jpg","profile_background_tile":true,"profile_link_color":"12EFD7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"47B494","profile_text_color":"09DAB2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644346543621951488\/wRi5ng33_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644346543621951488\/wRi5ng33_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/561538022\/1442459160","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:43 +0000 2015","id":663727673085067264,"id_str":"663727673085067264","text":"You'll be my Monday my fresh start","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378376122,"id_str":"378376122","name":"EMBLEM3","screen_name":"EmblemThree","location":"Huntington Beach, CA","url":"http:\/\/www.emblem3.com","description":"We write and create music. Our mission is to empower the people ! @wesleystromberg @keatonstromberg @truechadwick #TeamInspire","protected":false,"verified":true,"followers_count":1004063,"friends_count":19556,"listed_count":3160,"favourites_count":5729,"statuses_count":9983,"created_at":"Fri Sep 23 03:02:16 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446785630559686657\/mvs8bnET.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446785630559686657\/mvs8bnET.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642743758128152576\/V7PGXbyy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642743758128152576\/V7PGXbyy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378376122\/1442077009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":192,"favorite_count":244,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EmblemThree","name":"EMBLEM3","id":378376122,"id_str":"378376122","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099658"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160782082048,"id_str":"663728160782082048","text":"#G\u00e9minis Aprende de lo ya vivido para que no te agarre desprevenido la vida y acu\u00e9rdate que la vida da muchas vueltas..","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3525144142,"id_str":"3525144142","name":"Felix Costa","screen_name":"FelixCosta_J1","location":null,"url":null,"description":"Soy amante de las letras aunque no se escribir bien, caf\u00e9 y m\u00e1s caf\u00e9.","protected":false,"verified":false,"followers_count":85,"friends_count":328,"listed_count":1,"favourites_count":0,"statuses_count":1061,"created_at":"Wed Sep 02 16:42:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639533836620156928\/eRng5N7y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639533836620156928\/eRng5N7y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3525144142\/1441311724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"G\u00e9minis","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160798851072,"id_str":"663728160798851072","text":"RT @827SpaceKid: Fact! Don't give up #Stay\ud83d\ude4f\ud83c\udffe\ud83c\udd99 https:\/\/t.co\/hXBe9YDCKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349542542,"id_str":"2349542542","name":"Princess Perkins","screen_name":"PrincessDasire","location":null,"url":null,"description":"Concord University '18","protected":false,"verified":false,"followers_count":74,"friends_count":49,"listed_count":1,"favourites_count":50,"statuses_count":254,"created_at":"Mon Feb 17 23:04:45 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663488531038257152\/tUqRvbLx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663488531038257152\/tUqRvbLx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349542542\/1445957034","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:53:11 +0000 2015","id":663670665992495104,"id_str":"663670665992495104","text":"Fact! Don't give up #Stay\ud83d\ude4f\ud83c\udffe\ud83c\udd99 https:\/\/t.co\/hXBe9YDCKt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322193708,"id_str":"322193708","name":"VVJ","screen_name":"827SpaceKid","location":null,"url":"http:\/\/petitions.moveon.org\/sign\/federal-investigation-2?source=s.fwd&r_by=13796605","description":"Keep God first & everything will be ok.","protected":false,"verified":false,"followers_count":927,"friends_count":902,"listed_count":6,"favourites_count":3833,"statuses_count":44382,"created_at":"Wed Jun 22 19:46:43 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A01","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/701088690\/43df4cd2eae40c8cd5a22d4c7fc45ea6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/701088690\/43df4cd2eae40c8cd5a22d4c7fc45ea6.jpeg","profile_background_tile":true,"profile_link_color":"F00C1F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550637765013278720\/aty5AxiH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550637765013278720\/aty5AxiH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322193708\/1444301067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663663358634098689,"quoted_status_id_str":"663663358634098689","quoted_status":{"created_at":"Mon Nov 09 10:24:09 +0000 2015","id":663663358634098689,"id_str":"663663358634098689","text":"People should always pray and not give up - Luke 18:1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79633819,"id_str":"79633819","name":"Great Bible Verses","screen_name":"GreatBibleVerse","location":null,"url":null,"description":"Great Bible Verse is one of the fastest-growing daily Bible verse sites on Twitter. Follow Great Bible Verse now and discover why.","protected":false,"verified":false,"followers_count":691494,"friends_count":139967,"listed_count":3980,"favourites_count":579,"statuses_count":24179,"created_at":"Sun Oct 04 03:15:24 +0000 2009","utc_offset":36000,"time_zone":"Brisbane","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1709721347\/Twitter_YELLOW_flower_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1709721347\/Twitter_YELLOW_flower_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Stay","indices":[20,25]}],"urls":[{"url":"https:\/\/t.co\/hXBe9YDCKt","expanded_url":"https:\/\/twitter.com\/greatbibleverse\/status\/663663358634098689","display_url":"twitter.com\/greatbiblevers\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Stay","indices":[37,42]}],"urls":[{"url":"https:\/\/t.co\/hXBe9YDCKt","expanded_url":"https:\/\/twitter.com\/greatbibleverse\/status\/663663358634098689","display_url":"twitter.com\/greatbiblevers\u2026","indices":[46,69]}],"user_mentions":[{"screen_name":"827SpaceKid","name":"VVJ","id":322193708,"id_str":"322193708","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099664"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160786087936,"id_str":"663728160786087936","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254440540,"id_str":"3254440540","name":"Cicely Glandfield","screen_name":"paqemufybuk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":322,"listed_count":9,"favourites_count":15713,"statuses_count":16689,"created_at":"Thu May 14 18:07:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645565840595681280\/m39YvVXI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645565840595681280\/m39YvVXI_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":612,"favorite_count":355,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099661"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794681344,"id_str":"663728160794681344","text":"aquele viado","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2940026499,"id_str":"2940026499","name":"Complicada","screen_name":"the_serpa","location":null,"url":null,"description":"Eu n\u00e3o sou louca, \u00e9 o mundo que n\u00e3o entende minha lucidez...","protected":false,"verified":false,"followers_count":197,"friends_count":588,"listed_count":0,"favourites_count":1894,"statuses_count":440,"created_at":"Wed Dec 24 22:09:09 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"090905","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618177010582593537\/wiGV9Ifl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618177010582593537\/wiGV9Ifl.jpg","profile_background_tile":true,"profile_link_color":"5C1518","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726150544396288\/NJfqzix4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726150544396288\/NJfqzix4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2940026499\/1446546790","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160781918208,"id_str":"663728160781918208","text":"RT @brajeshk12: \u092c\u093f\u0939\u093e\u0930 \u091a\u0941\u0928\u093e\u0935: \u0938\u092c\u0915\u094b \u0916\u094b\u092f\u093e \u0939\u0941\u0906 \u0938\u092e\u094d\u092e\u093e\u0928 \u0935\u093e\u092a\u0938 \u092e\u093f\u0932 \u0917\u092f\u093e \u0939\u0948, \u0905\u092c \u0915\u094b\u0908 \u0938\u092e\u094d\u092e\u093e\u0928 \u0928\u0939\u0940\u0902 \u0932\u094c\u091f\u093e\u092f\u093e \u091c\u093e\u090f\u0917\u093e\u0964 https:\/\/t.co\/UzfvQ1fqFs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33413068,"id_str":"33413068","name":"\u0938\u094c\u0930\u092d \u0936\u0941\u0915\u094d\u0932","screen_name":"DigitalLekhanee","location":"India","url":"http:\/\/saaurabhshuklaa.blogspot.com","description":"Student at School of Life. TV Journalist\r\n. Author of Naye Zamane Kee Patrakarita. RTs do not mean endorsement.","protected":false,"verified":false,"followers_count":1499,"friends_count":276,"listed_count":15,"favourites_count":272,"statuses_count":6763,"created_at":"Mon Apr 20 03:53:33 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602452275336847360\/NNlRu1YY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602452275336847360\/NNlRu1YY.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636195163614740480\/vQ8Gs1ga_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636195163614740480\/vQ8Gs1ga_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33413068\/1421547843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:40 +0000 2015","id":663726906693414912,"id_str":"663726906693414912","text":"\u092c\u093f\u0939\u093e\u0930 \u091a\u0941\u0928\u093e\u0935: \u0938\u092c\u0915\u094b \u0916\u094b\u092f\u093e \u0939\u0941\u0906 \u0938\u092e\u094d\u092e\u093e\u0928 \u0935\u093e\u092a\u0938 \u092e\u093f\u0932 \u0917\u092f\u093e \u0939\u0948, \u0905\u092c \u0915\u094b\u0908 \u0938\u092e\u094d\u092e\u093e\u0928 \u0928\u0939\u0940\u0902 \u0932\u094c\u091f\u093e\u092f\u093e \u091c\u093e\u090f\u0917\u093e\u0964 https:\/\/t.co\/UzfvQ1fqFs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":51735322,"id_str":"51735322","name":" Brajesh Mishra","screen_name":"brajeshk12","location":"Mumbai","url":"http:\/\/brajeshmishra.wordpress.com","description":"Financial Journalist, IIMCian and UPite. RT does not mean endorsement.","protected":false,"verified":false,"followers_count":145,"friends_count":292,"listed_count":4,"favourites_count":31,"statuses_count":1184,"created_at":"Sun Jun 28 13:59:35 +0000 2009","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2602026415\/liam1lwfrxlkw7x6rgpv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2602026415\/liam1lwfrxlkw7x6rgpv_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663350730267324416,"quoted_status_id_str":"663350730267324416","quoted_status":{"created_at":"Sun Nov 08 13:41:53 +0000 2015","id":663350730267324416,"id_str":"663350730267324416","text":"\u0915\u092e\u0902\u0921\u0932 \u092a\u0930 \u092b\u093f\u0930 \u092e\u0902\u0921\u0932 \u092d\u093e\u0930\u0940\n\u0905\u092c\u0915\u0940 \u092c\u093e\u0930\u0940 \u0928\u0940\u0924\u093f\u0936 \u092c\u093f\u0939\u093e\u0930\u0940\n@BJP4India @AmitShah @NitishKumar @laluprasadrjd #BiharVerdict","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33413068,"id_str":"33413068","name":"\u0938\u094c\u0930\u092d \u0936\u0941\u0915\u094d\u0932","screen_name":"DigitalLekhanee","location":"India","url":"http:\/\/saaurabhshuklaa.blogspot.com","description":"Student at School of Life. TV Journalist\r\n. Author of Naye Zamane Kee Patrakarita. RTs do not mean endorsement.","protected":false,"verified":false,"followers_count":1499,"friends_count":276,"listed_count":15,"favourites_count":272,"statuses_count":6762,"created_at":"Mon Apr 20 03:53:33 +0000 2009","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602452275336847360\/NNlRu1YY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602452275336847360\/NNlRu1YY.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636195163614740480\/vQ8Gs1ga_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636195163614740480\/vQ8Gs1ga_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33413068\/1421547843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BiharVerdict","indices":[95,108]}],"urls":[],"user_mentions":[{"screen_name":"BJP4India","name":"BJP","id":207809313,"id_str":"207809313","indices":[46,56]},{"screen_name":"AmitShah","name":"Amit Shah","id":1447949844,"id_str":"1447949844","indices":[57,66]},{"screen_name":"NitishKumar","name":"Nitish Kumar","id":143409075,"id_str":"143409075","indices":[67,79]},{"screen_name":"laluprasadrjd","name":"Lalu Prasad Yadav","id":786958314,"id_str":"786958314","indices":[80,94]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UzfvQ1fqFs","expanded_url":"https:\/\/twitter.com\/DigitalLekhanee\/status\/663350730267324416","display_url":"twitter.com\/DigitalLekhane\u2026","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UzfvQ1fqFs","expanded_url":"https:\/\/twitter.com\/DigitalLekhanee\/status\/663350730267324416","display_url":"twitter.com\/DigitalLekhane\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"brajeshk12","name":" Brajesh Mishra","id":51735322,"id_str":"51735322","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160807211008,"id_str":"663728160807211008","text":"RT @MTVbaseAfrica: #BaseRealTalk with @StephanieCoker_ : @OfficialWaje talks about her relationship status & her music. https:\/\/t.co\/yl1waX\u2026","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923738928,"id_str":"2923738928","name":"Ayo","screen_name":"DejiIam","location":"Not Found","url":null,"description":"||On The Road To Greatness, Keep Off|| #Thespian #Arts #MUFC","protected":false,"verified":false,"followers_count":368,"friends_count":291,"listed_count":4,"favourites_count":33,"statuses_count":4650,"created_at":"Tue Dec 09 11:03:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662979878950707200\/C2sLhybj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662979878950707200\/C2sLhybj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923738928\/1447077562","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:37 +0000 2015","id":663726893083029504,"id_str":"663726893083029504","text":"#BaseRealTalk with @StephanieCoker_ : @OfficialWaje talks about her relationship status & her music. https:\/\/t.co\/yl1waXEs3l","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25959730,"id_str":"25959730","name":"MTV Base Africa","screen_name":"MTVbaseAfrica","location":"Africa","url":"http:\/\/www.mtvbase.com\/","description":"Uniting Africa through music. Taking African music to the World.","protected":false,"verified":true,"followers_count":479574,"friends_count":4398,"listed_count":1124,"favourites_count":639,"statuses_count":39614,"created_at":"Mon Mar 23 05:28:57 +0000 2009","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606487870971498496\/--RN7otl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606487870971498496\/--RN7otl.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658921921426251776\/HsWiVTQn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658921921426251776\/HsWiVTQn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25959730\/1446362909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"BaseRealTalk","indices":[0,13]}],"urls":[],"user_mentions":[{"screen_name":"StephanieCoker_","name":"Steph Eniafe Coker","id":222068338,"id_str":"222068338","indices":[19,35]},{"screen_name":"OfficialWaje","name":"iruobe waje","id":44354695,"id_str":"44354695","indices":[38,51]}],"symbols":[],"media":[{"id":663726820764876800,"id_str":"663726820764876800","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","url":"https:\/\/t.co\/yl1waXEs3l","display_url":"pic.twitter.com\/yl1waXEs3l","expanded_url":"http:\/\/twitter.com\/MTVbaseAfrica\/status\/663726893083029504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":502,"resize":"fit"},"medium":{"w":600,"h":294,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726820764876800,"id_str":"663726820764876800","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","url":"https:\/\/t.co\/yl1waXEs3l","display_url":"pic.twitter.com\/yl1waXEs3l","expanded_url":"http:\/\/twitter.com\/MTVbaseAfrica\/status\/663726893083029504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":502,"resize":"fit"},"medium":{"w":600,"h":294,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BaseRealTalk","indices":[19,32]}],"urls":[],"user_mentions":[{"screen_name":"MTVbaseAfrica","name":"MTV Base Africa","id":25959730,"id_str":"25959730","indices":[3,17]},{"screen_name":"StephanieCoker_","name":"Steph Eniafe Coker","id":222068338,"id_str":"222068338","indices":[38,54]},{"screen_name":"OfficialWaje","name":"iruobe waje","id":44354695,"id_str":"44354695","indices":[57,70]}],"symbols":[],"media":[{"id":663726820764876800,"id_str":"663726820764876800","indices":[124,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","url":"https:\/\/t.co\/yl1waXEs3l","display_url":"pic.twitter.com\/yl1waXEs3l","expanded_url":"http:\/\/twitter.com\/MTVbaseAfrica\/status\/663726893083029504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":502,"resize":"fit"},"medium":{"w":600,"h":294,"resize":"fit"}},"source_status_id":663726893083029504,"source_status_id_str":"663726893083029504","source_user_id":25959730,"source_user_id_str":"25959730"}]},"extended_entities":{"media":[{"id":663726820764876800,"id_str":"663726820764876800","indices":[124,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIBuOXAAACXuk.png","url":"https:\/\/t.co\/yl1waXEs3l","display_url":"pic.twitter.com\/yl1waXEs3l","expanded_url":"http:\/\/twitter.com\/MTVbaseAfrica\/status\/663726893083029504\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":166,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":502,"resize":"fit"},"medium":{"w":600,"h":294,"resize":"fit"}},"source_status_id":663726893083029504,"source_status_id_str":"663726893083029504","source_user_id":25959730,"source_user_id_str":"25959730"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099666"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160802902016,"id_str":"663728160802902016","text":"RT @MMANewsSource: Fedor Emelianenko\u2019s opponent not finalized just yet https:\/\/t.co\/LB9tpBxpNi https:\/\/t.co\/wBoCGRnvTy","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":973517844,"id_str":"973517844","name":"WWE News and Scoops","screen_name":"NewsScoopsWWE","location":"United States","url":"http:\/\/www.wrestlingnews.co","description":"Follow http:\/\/www.facebook.com\/wrestlingnewsco - Latest news from WWE, TNA, ROH, UFC, Bellator","protected":false,"verified":false,"followers_count":6326,"friends_count":2698,"listed_count":24,"favourites_count":0,"statuses_count":77981,"created_at":"Tue Nov 27 08:46:40 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560897420192526336\/1PqzY0s6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560897420192526336\/1PqzY0s6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/973517844\/1422563325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:07 +0000 2015","id":663726767832588288,"id_str":"663726767832588288","text":"Fedor Emelianenko\u2019s opponent not finalized just yet https:\/\/t.co\/LB9tpBxpNi https:\/\/t.co\/wBoCGRnvTy","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3604379896,"id_str":"3604379896","name":"MMA News Source","screen_name":"MMANewsSource","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":34862,"friends_count":7292,"listed_count":16,"favourites_count":0,"statuses_count":3634,"created_at":"Thu Sep 10 01:53:33 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642163385589633024\/XGaz3RtD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642163385589633024\/XGaz3RtD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3604379896\/1441938787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LB9tpBxpNi","expanded_url":"http:\/\/mmanewssource.com\/fedor-emelianenkos-opponent-not-finalized-just-yet\/","display_url":"mmanewssource.com\/fedor-emeliane\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663726767677423617,"id_str":"663726767677423617","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","url":"https:\/\/t.co\/wBoCGRnvTy","display_url":"pic.twitter.com\/wBoCGRnvTy","expanded_url":"http:\/\/twitter.com\/MMANewsSource\/status\/663726767832588288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726767677423617,"id_str":"663726767677423617","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","url":"https:\/\/t.co\/wBoCGRnvTy","display_url":"pic.twitter.com\/wBoCGRnvTy","expanded_url":"http:\/\/twitter.com\/MMANewsSource\/status\/663726767832588288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LB9tpBxpNi","expanded_url":"http:\/\/mmanewssource.com\/fedor-emelianenkos-opponent-not-finalized-just-yet\/","display_url":"mmanewssource.com\/fedor-emeliane\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"MMANewsSource","name":"MMA News Source","id":3604379896,"id_str":"3604379896","indices":[3,17]}],"symbols":[],"media":[{"id":663726767677423617,"id_str":"663726767677423617","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","url":"https:\/\/t.co\/wBoCGRnvTy","display_url":"pic.twitter.com\/wBoCGRnvTy","expanded_url":"http:\/\/twitter.com\/MMANewsSource\/status\/663726767832588288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}},"source_status_id":663726767832588288,"source_status_id_str":"663726767832588288","source_user_id":3604379896,"source_user_id_str":"3604379896"}]},"extended_entities":{"media":[{"id":663726767677423617,"id_str":"663726767677423617","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-odUwAEJ720.jpg","url":"https:\/\/t.co\/wBoCGRnvTy","display_url":"pic.twitter.com\/wBoCGRnvTy","expanded_url":"http:\/\/twitter.com\/MMANewsSource\/status\/663726767832588288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":900,"h":600,"resize":"fit"}},"source_status_id":663726767832588288,"source_status_id_str":"663726767832588288","source_user_id":3604379896,"source_user_id_str":"3604379896"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099665"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160798732288,"id_str":"663728160798732288","text":"RT @kabu_0014: \u5317\u8d8a\u6025\u884c\u304c\u3053\u3093\u306a\u30b3\u30e1\u30f3\u30c8\u3092\u3057\u305f\u305d\u3046\u3067\u3059\u3002\n\u300c\u30a4\u30d9\u30f3\u30c8\u5217\u8eca\u3092\u904b\u884c\u3057\u3066\u3082\u3001\u53ce\u76ca\u306f\u4e0a\u304c\u308a\u307e\u305b\u3093\u3002\u3053\u3046\u3057\u305f\u4f01\u753b\u3092\u884c\u3046\u3053\u3068\u3067\u591a\u304f\u306e\u4eba\u306b\u3053\u306e\u5730\u57df\u3078\u8208\u5473\u3092\u6301\u3063\u3066\u3082\u3089\u3044\u3001\u8a2a\u308c\u3066\u3082\u3089\u3044\u3001\u5730\u57df\u5168\u4f53\u3092\u6d3b\u6027\u5316\u3092\u3059\u308b\u306e\u304c\u904b\u884c\u306e\u76ee\u7684\u3067\u3059\u3002\u9244\u9053\u4f1a\u793e\u306f\u5730\u57df\u3068\u5171\u306b\u3042\u308a\u307e\u3059\u300d\n\u3069\u3053\u304b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":594298291,"id_str":"594298291","name":"\u8309\u8389","screen_name":"nicotea2","location":"\u6a2a\u6d5c\u306e\u5965\u5730","url":null,"description":"\u307e\u3064\u308a\u3001\u5c06\u68cb\uff08\u898b\u308b\u5c06\u68cb\u30d5\u30a1\u30f3\uff09\u3002\u68ee\u5185\u4e5d\u6bb5\u3002X\u3000YOSHIKI\u3002\u73fe\u5728TL\u8ffd\u3044\u3064\u304b\u306a\u3044\u306e\u3067\u3001\u65b0\u898f\u30d5\u30a9\u30ed\u30fc\u4f5c\u696d\u8457\u3057\u304f\u505c\u6ede\u3057\u3066\u307e\u3059\u3002\u5897\u3084\u3057\u3066\u884c\u304d\u305f\u3044\u3068\u306f\u601d\u3063\u3066\u307e\u3059\u304c\u3059\u3044\u307e\u305b\u3093\u3002\uff08\u6700\u8fd1\u306f\u307e\u3068\u3081\u4f5c\u696d\u3067\u5c1a\u505c\u6ede\uff09","protected":false,"verified":false,"followers_count":443,"friends_count":192,"listed_count":38,"favourites_count":11462,"statuses_count":33176,"created_at":"Wed May 30 04:30:47 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"00A381","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576310724340781057\/7mKrHr5P.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576310724340781057\/7mKrHr5P.jpeg","profile_background_tile":true,"profile_link_color":"CD5E3C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652745743195762688\/VWCqg7bb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652745743195762688\/VWCqg7bb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594298291\/1433861962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:08:06 +0000 2015","id":663357327056048129,"id_str":"663357327056048129","text":"\u5317\u8d8a\u6025\u884c\u304c\u3053\u3093\u306a\u30b3\u30e1\u30f3\u30c8\u3092\u3057\u305f\u305d\u3046\u3067\u3059\u3002\n\u300c\u30a4\u30d9\u30f3\u30c8\u5217\u8eca\u3092\u904b\u884c\u3057\u3066\u3082\u3001\u53ce\u76ca\u306f\u4e0a\u304c\u308a\u307e\u305b\u3093\u3002\u3053\u3046\u3057\u305f\u4f01\u753b\u3092\u884c\u3046\u3053\u3068\u3067\u591a\u304f\u306e\u4eba\u306b\u3053\u306e\u5730\u57df\u3078\u8208\u5473\u3092\u6301\u3063\u3066\u3082\u3089\u3044\u3001\u8a2a\u308c\u3066\u3082\u3089\u3044\u3001\u5730\u57df\u5168\u4f53\u3092\u6d3b\u6027\u5316\u3092\u3059\u308b\u306e\u304c\u904b\u884c\u306e\u76ee\u7684\u3067\u3059\u3002\u9244\u9053\u4f1a\u793e\u306f\u5730\u57df\u3068\u5171\u306b\u3042\u308a\u307e\u3059\u300d\n\u3069\u3053\u304b\u306b\u805e\u304b\u305b\u305f\u3044\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3936239298,"id_str":"3936239298","name":"\u3084\u307e\u3060","screen_name":"kabu_0014","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":12,"listed_count":0,"favourites_count":98,"statuses_count":296,"created_at":"Sun Oct 18 13:29:42 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655878636948426752\/69wIvgKT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655878636948426752\/69wIvgKT_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":172,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kabu_0014","name":"\u3084\u307e\u3060","id":3936239298,"id_str":"3936239298","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099664"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160777859072,"id_str":"663728160777859072","text":"Half the people that text me I don't wanna talk to them .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":461572550,"id_str":"461572550","name":"Veevee","screen_name":"_iahsivaK","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1124,"friends_count":992,"listed_count":2,"favourites_count":3296,"statuses_count":41563,"created_at":"Wed Jan 11 23:18:46 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/719654101\/e44f0ed2d305a5598d0bb8e7c86a7b5a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/719654101\/e44f0ed2d305a5598d0bb8e7c86a7b5a.png","profile_background_tile":true,"profile_link_color":"F08000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"BFBFBF","profile_text_color":"2B2B2B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658663622990766080\/Qr0hMAKq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658663622990766080\/Qr0hMAKq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/461572550\/1436891374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6f36fc2e52870eee","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6f36fc2e52870eee.json","place_type":"city","name":"Newport News","full_name":"Newport News, VA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-76.627970,36.960216],[-76.627970,37.220386],[-76.387647,37.220386],[-76.387647,36.960216]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099659"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160786239488,"id_str":"663728160786239488","text":"NotRel:: La misteriosa luz en el cielo que genero panico -El Ancasti (Catamarca)- https:\/\/t.co\/20ZrnL9UdV","source":"\u003ca href=\"http:\/\/directoriodediarios.com\" rel=\"nofollow\"\u003edirectoriodediarios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3760220793,"id_str":"3760220793","name":"Argentina Relnews","screen_name":"argentrelnews1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":19412,"created_at":"Thu Sep 24 12:53:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647032956037545984\/WKWzbpfP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647032956037545984\/WKWzbpfP_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/20ZrnL9UdV","expanded_url":"http:\/\/directoriodediarios.com\/q\/45-67956","display_url":"directoriodediarios.com\/q\/45-67956","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099661"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160782090240,"id_str":"663728160782090240","text":"My great grandma made it to another birthday \ud83d\ude4f\ud83c\udffe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360403287,"id_str":"360403287","name":"SinginNigga","screen_name":"LsUpForLito21","location":"Racine,Wi","url":null,"description":"R.I.P to the deceased aint no love in these streets so watch out who u breed wit #onmyownshit","protected":false,"verified":false,"followers_count":1202,"friends_count":853,"listed_count":1,"favourites_count":11609,"statuses_count":94296,"created_at":"Tue Aug 23 04:36:26 +0000 2011","utc_offset":-21600,"time_zone":"America\/Chicago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/477499164\/IMAG0505.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/477499164\/IMAG0505.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"000000","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726700048613376\/K4GQYiLq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726700048613376\/K4GQYiLq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360403287\/1420472144","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160798810112,"id_str":"663728160798810112","text":"RT @GFsdoitbest: If you like #nudeselfies, Follow me! https:\/\/t.co\/4EnG4TRR57","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454411535,"id_str":"2454411535","name":"Jess-A-Belly","screen_name":"jess_a_belly","location":null,"url":null,"description":"I want to see that big cock between these tits! LOL J\/king!","protected":false,"verified":false,"followers_count":3365,"friends_count":1226,"listed_count":4,"favourites_count":174,"statuses_count":11511,"created_at":"Sun Apr 20 07:24:38 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626581032364457984\/AcduHbkT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626581032364457984\/AcduHbkT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2454411535\/1438223723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 15:06:36 +0000 2015","id":662284887588741120,"id_str":"662284887588741120","text":"If you like #nudeselfies, Follow me! https:\/\/t.co\/4EnG4TRR57","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413357026,"id_str":"2413357026","name":"\u2198GFs Do It Better\u2199","screen_name":"GFsdoitbest","location":"New Orleans, LA","url":"https:\/\/twitter.com\/GFsdoitbest","description":"\u2765Everyone knows GFs do it best! If they are hot enough for you, RT and Fave and don't forget to follow me!","protected":false,"verified":false,"followers_count":9815,"friends_count":2300,"listed_count":29,"favourites_count":0,"statuses_count":18794,"created_at":"Thu Mar 27 00:21:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"555566","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617409899144679424\/N_wq6uV7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617409899144679424\/N_wq6uV7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413357026\/1436036983","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"nudeselfies","indices":[12,24]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662284887462948869,"id_str":"662284887462948869","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","url":"https:\/\/t.co\/4EnG4TRR57","display_url":"pic.twitter.com\/4EnG4TRR57","expanded_url":"http:\/\/twitter.com\/GFsdoitbest\/status\/662284887588741120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662284887462948869,"id_str":"662284887462948869","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","url":"https:\/\/t.co\/4EnG4TRR57","display_url":"pic.twitter.com\/4EnG4TRR57","expanded_url":"http:\/\/twitter.com\/GFsdoitbest\/status\/662284887588741120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nudeselfies","indices":[29,41]}],"urls":[],"user_mentions":[{"screen_name":"GFsdoitbest","name":"\u2198GFs Do It Better\u2199","id":2413357026,"id_str":"2413357026","indices":[3,15]}],"symbols":[],"media":[{"id":662284887462948869,"id_str":"662284887462948869","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","url":"https:\/\/t.co\/4EnG4TRR57","display_url":"pic.twitter.com\/4EnG4TRR57","expanded_url":"http:\/\/twitter.com\/GFsdoitbest\/status\/662284887588741120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}},"source_status_id":662284887588741120,"source_status_id_str":"662284887588741120","source_user_id":2413357026,"source_user_id_str":"2413357026"}]},"extended_entities":{"media":[{"id":662284887462948869,"id_str":"662284887462948869","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDomKFWsAU4yKO.jpg","url":"https:\/\/t.co\/4EnG4TRR57","display_url":"pic.twitter.com\/4EnG4TRR57","expanded_url":"http:\/\/twitter.com\/GFsdoitbest\/status\/662284887588741120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":452,"resize":"fit"},"large":{"w":500,"h":666,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":666,"resize":"fit"}},"source_status_id":662284887588741120,"source_status_id_str":"662284887588741120","source_user_id":2413357026,"source_user_id_str":"2413357026"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099664"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794542080,"id_str":"663728160794542080","text":"@mst_11221107 \ubc29\uae08 \uc778\uac15 \ub098\uba38\uc9c0 \ub4e3\uace0 \uc640\uc368\uc624 \uc218\ub2a5 \uc798\ubd10\uc11c \ub300\ud559 \ud55c\ubc88\uc5d0 \ubd99\uc73c\ub77c\uace0 \ud574\uc870\ub77c\u314f\u3147 \uc0bc\uc218\ub294 \ucde8\uc18c\ud558\uace0 \u314e\u3145\u314e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727922901942273,"in_reply_to_status_id_str":"663727922901942273","in_reply_to_user_id":3803333653,"in_reply_to_user_id_str":"3803333653","in_reply_to_screen_name":"mst_11221107","user":{"id":3219058860,"id_str":"3219058860","name":"\uc774\ub984 \uc5c6\uc568 \uac70\uc784 \u3145\u3142","screen_name":"12fullmoon12","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":52,"friends_count":162,"listed_count":0,"favourites_count":438,"statuses_count":19,"created_at":"Mon May 18 07:57:02 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663631836589920257\/hCOKMQDg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663631836589920257\/hCOKMQDg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mst_11221107","name":"\uae30\ud604\uc11c\ud604","id":3803333653,"id_str":"3803333653","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794636288,"id_str":"663728160794636288","text":"@labomba_televen @jumart171 desde acarigua dando gracia a dios ya es lunes esprerando la bomba","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727425109532673,"in_reply_to_status_id_str":"663727425109532673","in_reply_to_user_id":135236273,"in_reply_to_user_id_str":"135236273","in_reply_to_screen_name":"LaBomba_Televen","user":{"id":808021622,"id_str":"808021622","name":"francy ","screen_name":"jumart171","location":"Acarigua -Poruguesa","url":null,"description":"INGENIERO","protected":false,"verified":false,"followers_count":1,"friends_count":49,"listed_count":0,"favourites_count":1,"statuses_count":12,"created_at":"Fri Sep 07 02:25:40 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2584530273\/02jq56cylltxvqrr0107_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2584530273\/02jq56cylltxvqrr0107_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LaBomba_Televen","name":"La Bomba","id":135236273,"id_str":"135236273","indices":[0,16]},{"screen_name":"jumart171","name":"francy ","id":808021622,"id_str":"808021622","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160790282242,"id_str":"663728160790282242","text":"Esok pukoi 4 dah nak kena bangkit \ud83d\ude4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":629263589,"id_str":"629263589","name":"Fazanaa \u2764","screen_name":"Fazanaaa","location":"Penang ","url":"http:\/\/instagram.com\/f4z4n4_","description":"Sebut yang baik-baik kerana kata-kata kita adalah doa yang melantun . Toing Toing \u2764","protected":false,"verified":false,"followers_count":1104,"friends_count":641,"listed_count":2,"favourites_count":10170,"statuses_count":12067,"created_at":"Sat Jul 07 11:57:07 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"A309F0","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663627336781185028\/BdMFinP9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663627336781185028\/BdMFinP9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/629263589\/1447056017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080099662"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160790282241,"id_str":"663728160790282241","text":"@taisuke_nanami \u3069\u3084\u308a\u3093\u3061\u3087\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712459639750657,"in_reply_to_status_id_str":"663712459639750657","in_reply_to_user_id":2596220160,"in_reply_to_user_id_str":"2596220160","in_reply_to_screen_name":"taisuke_nanami","user":{"id":2596204782,"id_str":"2596204782","name":"\u3082\u3048\u305f\u307e","screen_name":"tamaoreasizoku1","location":"\u305f\u307e\u3061\u3083\u3093\u30d5\u30a1\u30df\u30ea\u30fc\uff9f+.*\u029a\u2661\u025e*.+\uff9f","url":null,"description":"\u7389 \u68ee \u88d5 \u592a \uff3c\u2661\uff0f Kis-My-Ft2\uff3c\u2661\uff0f\u5996\u7cbeNo.3 \u2765\u2765 \u2765\u2765\u304a \u3068 \u306a \u308a \u261e\u3010@taisuke_nanami\u3011","protected":false,"verified":false,"followers_count":2691,"friends_count":2679,"listed_count":7,"favourites_count":1493,"statuses_count":4142,"created_at":"Mon Jun 30 11:32:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663231701053632512\/8UazXYjA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663231701053632512\/8UazXYjA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2596204782\/1446963278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taisuke_nanami","name":"\u30ca\u30ca\u30f3\u30c4\u30a7\u30eb","id":2596220160,"id_str":"2596220160","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099662"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769339392,"id_str":"663728160769339392","text":"@xo_Corina flies! Lol","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727031255896064,"in_reply_to_status_id_str":"663727031255896064","in_reply_to_user_id":1537585111,"in_reply_to_user_id_str":"1537585111","in_reply_to_screen_name":"xo_Corina","user":{"id":586987346,"id_str":"586987346","name":"CDJ","screen_name":"Cassss___","location":"San Antonio, TX","url":null,"description":"CDJohnson photography \u2728 | senior | 18 | jap\u2764\ufe0f","protected":false,"verified":false,"followers_count":1303,"friends_count":919,"listed_count":1,"favourites_count":21660,"statuses_count":61442,"created_at":"Tue May 22 00:03:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663053136957952000\/tFAHgT4o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663053136957952000\/tFAHgT4o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/586987346\/1446933413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xo_Corina","name":"Corina Mor\u00f3n","id":1537585111,"id_str":"1537585111","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160781942784,"id_str":"663728160781942784","text":"RT @iide_shou: \u51ac\u30b3\u30df\u3067\u697d\u3057\u307f\u306a\u3053\u3068\u304c\u5897\u3048\u305f\u306e\u3067M-\uff11\u306b\u51fa\u5834\u3057\u305f\u6642\u306e\u4e3b\u5c06\u30c8\u30ea\u30aa\u63cf\u304d\u307e\u3057\u305f https:\/\/t.co\/3t8rnhlIcN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":75652812,"id_str":"75652812","name":"\u30ca\u30b4\u30ca\u30b4","screen_name":"nagotter","location":"\u30ed\u30fc\u30c9\u30ec\u30fc\u30b9\u5b9f\u6cc1TL\u5f37\u5316\u6708\u9593 (4\u6708\uff5e9\u6708)","url":"http:\/\/twpf.jp\/nagotter","description":"Drawing fan-fic\/Cycle road race\/ \uff86\uff8e\uff9d\uff7a\uff9e\uff81\uff6e\uff6f\uff84\uff9c\uff76\uff99 11\/8\u5742\uff8f\uff86\u59d4\u8a17:E03b 12\/29\u51ac\uff7a\uff90:\u304240a \u203b\u30d8\u30c3\u30c0\u30fc\u306e\u771f\u6ce2\u304f\u3093\u306f\u24b8\u304f\u3057\u3053\u30d6\u30e9\u30f3\u30c9 \u30a2\u30a4\u30b3\u30f3\u306f\u24b8\u30ac\u30ea\u30d6\u30e9\u30f3\u30c9 (\u3064\u307e\u308a\uff64\u79c1\u306e\u7d75\u3058\u3083\u306a\u3044)","protected":false,"verified":false,"followers_count":1373,"friends_count":854,"listed_count":56,"favourites_count":7244,"statuses_count":30195,"created_at":"Sat Sep 19 22:00:02 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522809715445600256\/q7Fpoe6s.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522809715445600256\/q7Fpoe6s.jpeg","profile_background_tile":true,"profile_link_color":"008CC4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E7F5EF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612244017653284864\/i_sFGgnB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612244017653284864\/i_sFGgnB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/75652812\/1427900521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:43:23 +0000 2015","id":663713498598260736,"id_str":"663713498598260736","text":"\u51ac\u30b3\u30df\u3067\u697d\u3057\u307f\u306a\u3053\u3068\u304c\u5897\u3048\u305f\u306e\u3067M-\uff11\u306b\u51fa\u5834\u3057\u305f\u6642\u306e\u4e3b\u5c06\u30c8\u30ea\u30aa\u63cf\u304d\u307e\u3057\u305f https:\/\/t.co\/3t8rnhlIcN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1494699206,"id_str":"1494699206","name":"\u3084\u304b\u3093","screen_name":"iide_shou","location":null,"url":"http:\/\/twpf.jp\/iide_shou","description":"\u30da\u30c0\u30eb\u57a2\u3002\u6210\u4eba\u6e08\u306e\u7bc0\u64cd\u306a\u3044\u30de\u30f3\u3002\uff26\uff22\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002\u4fe1\u53f7\u6a5f(\u4eca\u9cf4\u5bc4\u308a)\/\u4e3b\u5c06\u30ba\/\u307f\u3069\u306a\u308b \u3064\u3044\u3077\u308d\u307f\u3066\u306d\u3002 \u8ad6\u7834\u57a2\u2192@iide_shou6n8 \u30b9\u30bf\u30aa2\u57a2\u2192@iide_shouso2","protected":false,"verified":false,"followers_count":1155,"friends_count":196,"listed_count":27,"favourites_count":2629,"statuses_count":12764,"created_at":"Sun Jun 09 05:11:50 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/890292281\/7187636edb84107a0d77d53ac0ca4fc3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/890292281\/7187636edb84107a0d77d53ac0ca4fc3.png","profile_background_tile":true,"profile_link_color":"0B706D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493771209935294466\/OXupUqsG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493771209935294466\/OXupUqsG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1494699206\/1409656747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713496509452288,"id_str":"663713496509452288","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","url":"https:\/\/t.co\/3t8rnhlIcN","display_url":"pic.twitter.com\/3t8rnhlIcN","expanded_url":"http:\/\/twitter.com\/iide_shou\/status\/663713498598260736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":600,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":423,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713496509452288,"id_str":"663713496509452288","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","url":"https:\/\/t.co\/3t8rnhlIcN","display_url":"pic.twitter.com\/3t8rnhlIcN","expanded_url":"http:\/\/twitter.com\/iide_shou\/status\/663713498598260736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":600,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":423,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iide_shou","name":"\u3084\u304b\u3093","id":1494699206,"id_str":"1494699206","indices":[3,13]}],"symbols":[],"media":[{"id":663713496509452288,"id_str":"663713496509452288","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","url":"https:\/\/t.co\/3t8rnhlIcN","display_url":"pic.twitter.com\/3t8rnhlIcN","expanded_url":"http:\/\/twitter.com\/iide_shou\/status\/663713498598260736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":600,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":423,"resize":"fit"}},"source_status_id":663713498598260736,"source_status_id_str":"663713498598260736","source_user_id":1494699206,"source_user_id_str":"1494699206"}]},"extended_entities":{"media":[{"id":663713496509452288,"id_str":"663713496509452288","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX76JgUEAADiBg.png","url":"https:\/\/t.co\/3t8rnhlIcN","display_url":"pic.twitter.com\/3t8rnhlIcN","expanded_url":"http:\/\/twitter.com\/iide_shou\/status\/663713498598260736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":600,"h":423,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":423,"resize":"fit"}},"source_status_id":663713498598260736,"source_status_id_str":"663713498598260736","source_user_id":1494699206,"source_user_id_str":"1494699206"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794505217,"id_str":"663728160794505217","text":"\u6210\u529f\u306b\u81f3\u308b\u7b2c\u4e00\u6b69\u306f\u3001\u81ea\u5206\u304c\u5fc3\u306b\u4f55\u3092\u671b\u3093\u3067\u3044\u308b\u304b\u3092\u898b\u3064\u3051\u51fa\u3059\u3053\u3068\u3067\u3059\u3002\u305d\u308c\u304c\u306f\u3063\u304d\u308a\u3068\u308f\u304b\u3089\u306a\u3044\u3046\u3061\u306f\u3001\u4f55\u3092\u671f\u5f85\u3057\u3066\u3082\u3060\u3081\u3067\u3059\u3002\n\u2500\u30ab\u30fc\u30cd\u30ae\u30fc","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333893568,"id_str":"333893568","name":"\u5049\u4eba\u306e\u540d\u8a00\u96c6","screen_name":"ijinmeigen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1272,"friends_count":1790,"listed_count":39,"favourites_count":0,"statuses_count":67793,"created_at":"Tue Jul 12 07:38:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1474084891\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1474084891\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769482752,"id_str":"663728160769482752","text":"@Highperformbev here comes the dump","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":612875517,"in_reply_to_user_id_str":"612875517","in_reply_to_screen_name":"Highperformbev","user":{"id":215551899,"id_str":"215551899","name":"Brendan","screen_name":"brenbto","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":37,"friends_count":51,"listed_count":1,"favourites_count":4949,"statuses_count":1754,"created_at":"Sun Nov 14 07:42:12 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595462999353229312\/Wbv4Qn8-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595462999353229312\/Wbv4Qn8-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215551899\/1430764843","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Highperformbev","name":"High Performance Bev","id":612875517,"id_str":"612875517","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160807063552,"id_str":"663728160807063552","text":"@amanohimame \uff1f\uff01\u3084\u3070\u3044\u30b5\u30e0\u30cd\u304b\u3089\u4f55\u304b\u51fa\u3057\u3066\u307e\u3057\u305f\u304b\uff1f\uff01\u753b\u529b\u8ae6\u3081\u3066\u96f0\u56f2\u6c17\u91cd\u8996\u306e\u3084\u3064\u306a\u306e\u3067\u30aa\u30fc\u30e9\u3068\u304b\u96f0\u56f2\u6c17\u307b\u3081\u3066\u3082\u3089\u3048\u308b\u3068\u307b\u3093\u3068\u306b\u5b09\u3057\u3044\u3067\u3059\u3088\u2026\u96e8\u91ce\u3055\u3093\u306e\u3088\u3046\u306a\u53ef\u611b\u3044\u7d75\u306e\u65b9\u306b\u8912\u3081\u3089\u308c\u308b\u3068\u7279\u306b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727654063833089,"in_reply_to_status_id_str":"663727654063833089","in_reply_to_user_id":2858195125,"in_reply_to_user_id_str":"2858195125","in_reply_to_screen_name":"amanohimame","user":{"id":3002628590,"id_str":"3002628590","name":"\u306e\u3048\u308a@\u3068\u3046\u3089\u3076","screen_name":"tolovenoeli","location":"\u5c71\u57ce","url":"http:\/\/www.pixiv.net\/member.php?id=441332","description":"\u3068\u3046\u3089\u3076\u840c\u3048\u5410\u304d\u9694\u96e2\u3002\u6210\u4eba\u6e08\u3002\u8107\u5dee\u85e4\u56db\u90ce\u3092\u80b4\u306b\u9152\u3092\u98f2\u3080\u304a\u7d75\u63cf\u304d\u5be9\u795e\u8005\u3002\u6642\u3005\u98ef\u30c6\u30ed\u300218\u2191\u63a8\u5968\u3002\u79c1\u751f\u6d3b\u3060\u3060\u6f0f\u308c\u672c\u57a2\uff08\uff20himenoeli\uff09\u5408\u308f\u306a\u3044\u6642\u306f\u7121\u7406\u305b\u305a\u30ea\u30e0\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":514,"friends_count":199,"listed_count":29,"favourites_count":9296,"statuses_count":19588,"created_at":"Fri Jan 30 00:20:01 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661147955630469120\/WhVfD8i2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661147955630469120\/WhVfD8i2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3002628590\/1446386289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amanohimame","name":"\u96e8\u91ce\u2654\u9583\u83ef3B50b","id":2858195125,"id_str":"2858195125","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099666"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160786284544,"id_str":"663728160786284544","text":"RT @elita8174: Jajajajaja q' me dio risa...\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/FN7hpmwS83","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":848439050,"id_str":"848439050","name":"Manuel Saenz","screen_name":"ElSaeen","location":"Puerto Ordaz, Venezuela","url":null,"description":"The world is yours","protected":false,"verified":false,"followers_count":626,"friends_count":574,"listed_count":5,"favourites_count":748,"statuses_count":21613,"created_at":"Thu Sep 27 01:20:12 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/604122413434040320\/rPTpUlSU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/604122413434040320\/rPTpUlSU.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654465567290691584\/urOIAP29_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654465567290691584\/urOIAP29_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/848439050\/1432868875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:55 +0000 2015","id":663717907977871362,"id_str":"663717907977871362","text":"Jajajajaja q' me dio risa...\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/FN7hpmwS83","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544427578,"id_str":"544427578","name":"Elita\u2764\ufe0f","screen_name":"elita8174","location":null,"url":null,"description":"Amo mi libertad, la comida, el arte, los peluditos, la gente verdadera y a la vida m\u00e1s q' a nada...lo negativo me resbala..Mi otro gran amor es F......","protected":false,"verified":false,"followers_count":1011,"friends_count":962,"listed_count":4,"favourites_count":18356,"statuses_count":20459,"created_at":"Tue Apr 03 16:57:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661731146103922688\/-pMGWCjS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661731146103922688\/-pMGWCjS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544427578\/1443739828","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717884498206721,"id_str":"663717884498206721","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","url":"https:\/\/t.co\/FN7hpmwS83","display_url":"pic.twitter.com\/FN7hpmwS83","expanded_url":"http:\/\/twitter.com\/elita8174\/status\/663717907977871362\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717884498206721,"id_str":"663717884498206721","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","url":"https:\/\/t.co\/FN7hpmwS83","display_url":"pic.twitter.com\/FN7hpmwS83","expanded_url":"http:\/\/twitter.com\/elita8174\/status\/663717907977871362\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elita8174","name":"Elita\u2764\ufe0f","id":544427578,"id_str":"544427578","indices":[3,13]}],"symbols":[],"media":[{"id":663717884498206721,"id_str":"663717884498206721","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","url":"https:\/\/t.co\/FN7hpmwS83","display_url":"pic.twitter.com\/FN7hpmwS83","expanded_url":"http:\/\/twitter.com\/elita8174\/status\/663717907977871362\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663717907977871362,"source_status_id_str":"663717907977871362","source_user_id":544427578,"source_user_id_str":"544427578"}]},"extended_entities":{"media":[{"id":663717884498206721,"id_str":"663717884498206721","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_5kCW4AEtXu-.jpg","url":"https:\/\/t.co\/FN7hpmwS83","display_url":"pic.twitter.com\/FN7hpmwS83","expanded_url":"http:\/\/twitter.com\/elita8174\/status\/663717907977871362\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663717907977871362,"source_status_id_str":"663717907977871362","source_user_id":544427578,"source_user_id_str":"544427578"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099661"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160782073856,"id_str":"663728160782073856","text":"Comisi\u00f3n indpendiente de la @wada_ama recomienda la suspensi\u00f3n de la Federaci\u00f3n de #Atletismo de #Rusia - Los detalles del informe, en #dpa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152614791,"id_str":"152614791","name":"dpadeportes","screen_name":"dpadeportes","location":"Madrid","url":"http:\/\/www.dpa.com","description":"Contacto directo con la secci\u00f3n de Deportes de dpa, una de las cuatro grandes agencias de noticias del planeta - direct line to dpa's Sports Spanish Service","protected":false,"verified":true,"followers_count":4199,"friends_count":906,"listed_count":141,"favourites_count":17,"statuses_count":16094,"created_at":"Sun Jun 06 12:26:32 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/967868709\/dpa-logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/967868709\/dpa-logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152614791\/1413811309","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Atletismo","indices":[83,93]},{"text":"Rusia","indices":[97,103]},{"text":"dpa","indices":[135,139]}],"urls":[],"user_mentions":[{"screen_name":"wada_ama","name":"WADA","id":108985884,"id_str":"108985884","indices":[28,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794505216,"id_str":"663728160794505216","text":"RT @saaatk0203: \u30c1\u30e3\u30cb\u30e7\u30eb\u306e\u540d\u524d\u51fa\u3057\u3066\u306a\u3044\u306e\u306b\n\u300c\u30c1\u30e3\u30cb\u30e7\u30eb\u3001\u3001(\u7b11)\u300d\u3063\u3066\u306a\u308b(\u7b11) https:\/\/t.co\/SMGqRt1IMz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115330178,"id_str":"3115330178","name":"SHININIYEOL","screen_name":"LpFkgmzUAtZWreQ","location":null,"url":null,"description":"SHINee&EXO\u2661\u3061\u3083\u3044\u306b&\u3048\u304d\u305d&\u308c\u3069\u3045\u3079\u308b\u3079\u3063Twice\u3068\u3045\u308f\u3044\u3059","protected":false,"verified":false,"followers_count":55,"friends_count":88,"listed_count":0,"favourites_count":1842,"statuses_count":3800,"created_at":"Sun Mar 29 13:00:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662957335875219456\/Yoyd5bsg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662957335875219456\/Yoyd5bsg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115330178\/1446305050","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:58:57 +0000 2015","id":663702313974915076,"id_str":"663702313974915076","text":"\u30c1\u30e3\u30cb\u30e7\u30eb\u306e\u540d\u524d\u51fa\u3057\u3066\u306a\u3044\u306e\u306b\n\u300c\u30c1\u30e3\u30cb\u30e7\u30eb\u3001\u3001(\u7b11)\u300d\u3063\u3066\u306a\u308b(\u7b11) https:\/\/t.co\/SMGqRt1IMz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3218970151,"id_str":"3218970151","name":"\u3055\u3064\u304d\u3061\u3083\u3093","screen_name":"saaatk0203","location":null,"url":null,"description":"\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u3067\u3063\u3059\uff08\uff3e\u2207\uff3e\uff09","protected":false,"verified":false,"followers_count":438,"friends_count":299,"listed_count":2,"favourites_count":289,"statuses_count":3568,"created_at":"Mon May 18 04:16:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644160749611302917\/glYk9RxB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644160749611302917\/glYk9RxB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3218970151\/1441448815","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":80,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663702249021964288,"id_str":"663702249021964288","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","url":"https:\/\/t.co\/SMGqRt1IMz","display_url":"pic.twitter.com\/SMGqRt1IMz","expanded_url":"http:\/\/twitter.com\/saaatk0203\/status\/663702313974915076\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702249021964288,"id_str":"663702249021964288","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","url":"https:\/\/t.co\/SMGqRt1IMz","display_url":"pic.twitter.com\/SMGqRt1IMz","expanded_url":"http:\/\/twitter.com\/saaatk0203\/status\/663702313974915076\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/320x180\/8_00xhuGtjhjnGUR.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/640x360\/rTGwVfLoTaz8znlK.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/pl\/tM2EheZcTR8YoroC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/pl\/tM2EheZcTR8YoroC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/640x360\/rTGwVfLoTaz8znlK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"saaatk0203","name":"\u3055\u3064\u304d\u3061\u3083\u3093","id":3218970151,"id_str":"3218970151","indices":[3,14]}],"symbols":[],"media":[{"id":663702249021964288,"id_str":"663702249021964288","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","url":"https:\/\/t.co\/SMGqRt1IMz","display_url":"pic.twitter.com\/SMGqRt1IMz","expanded_url":"http:\/\/twitter.com\/saaatk0203\/status\/663702313974915076\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663702313974915076,"source_status_id_str":"663702313974915076","source_user_id":3218970151,"source_user_id_str":"3218970151"}]},"extended_entities":{"media":[{"id":663702249021964288,"id_str":"663702249021964288","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702249021964288\/pu\/img\/fDyHMTskUZ5-zVou.jpg","url":"https:\/\/t.co\/SMGqRt1IMz","display_url":"pic.twitter.com\/SMGqRt1IMz","expanded_url":"http:\/\/twitter.com\/saaatk0203\/status\/663702313974915076\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663702313974915076,"source_status_id_str":"663702313974915076","source_user_id":3218970151,"source_user_id_str":"3218970151","video_info":{"aspect_ratio":[16,9],"duration_millis":30020,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/320x180\/8_00xhuGtjhjnGUR.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/640x360\/rTGwVfLoTaz8znlK.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/pl\/tM2EheZcTR8YoroC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/pl\/tM2EheZcTR8YoroC.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702249021964288\/pu\/vid\/640x360\/rTGwVfLoTaz8znlK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160781963264,"id_str":"663728160781963264","text":"Jennifer Lawence Shows Some Serious Side Boob At The London Premiere Of The Hunger Gamres: Mockingjay Part 2: Whoa!\u2026 https:\/\/t.co\/IFhGBPO3h9","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2202767136,"id_str":"2202767136","name":"Music Click","screen_name":"LashellLohrmann","location":null,"url":"http:\/\/freemusicarchive.org\/","description":"The best artist music meeting point. Including top stars & bands. Free member pages including unlimited free webspace, free MP3 .","protected":false,"verified":false,"followers_count":1808,"friends_count":2056,"listed_count":18,"favourites_count":940,"statuses_count":46466,"created_at":"Tue Nov 19 09:04:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0000FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000123524650\/4ab46bdde7819cb373b95e2af36b12e0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000123524650\/4ab46bdde7819cb373b95e2af36b12e0.jpeg","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517668739118944257\/7d4x2u3m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517668739118944257\/7d4x2u3m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2202767136\/1412257135","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IFhGBPO3h9","expanded_url":"http:\/\/dlvr.it\/ChflVs","display_url":"dlvr.it\/ChflVs","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160781930496,"id_str":"663728160781930496","text":"RT @ilovejaney4ever: I Nominate Jane Oineza @itsJaneOineza @tccandler for \"100 most beautiful faces 2015\" @tccandler #100Faces https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2824181677,"id_str":"2824181677","name":"me\u2764\ufe0felizabethJANE","screen_name":"emily_montejo","location":null,"url":null,"description":"We are united for Jane Oineza with or without LT. We sincerely support her for whatever endeavor she's up to.","protected":false,"verified":false,"followers_count":182,"friends_count":191,"listed_count":8,"favourites_count":14354,"statuses_count":38343,"created_at":"Sun Sep 21 12:22:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656455071274680321\/Q6nD5FM0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656455071274680321\/Q6nD5FM0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2824181677\/1431407642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:54 +0000 2015","id":663723441036460032,"id_str":"663723441036460032","text":"I Nominate Jane Oineza @itsJaneOineza @tccandler for \"100 most beautiful faces 2015\" @tccandler #100Faces https:\/\/t.co\/iMuNiebjfS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2573128338,"id_str":"2573128338","name":"JANE \u2747","screen_name":"ilovejaney4ever","location":null,"url":null,"description":"SOLID FAN OF JANE OINEZA","protected":false,"verified":false,"followers_count":317,"friends_count":197,"listed_count":2,"favourites_count":5662,"statuses_count":19207,"created_at":"Tue Jun 17 15:54:54 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661189222208921600\/p864kbvW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661189222208921600\/p864kbvW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2573128338\/1446475179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[{"text":"100Faces","indices":[96,105]}],"urls":[],"user_mentions":[{"screen_name":"itsJaneOineza","name":"Jane Oineza","id":62764427,"id_str":"62764427","indices":[23,37]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[38,48]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[85,95]}],"symbols":[],"media":[{"id":663722494151364608,"id_str":"663722494151364608","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1020,"h":680,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722494151364608,"id_str":"663722494151364608","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1020,"h":680,"resize":"fit"}}},{"id":663723217928876032,"id_str":"663723217928876032","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEwAnUcAAcxON.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEwAnUcAAcxON.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}},{"id":663723229190602753,"id_str":"663723229190602753","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEwqkUwAEG47N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEwqkUwAEG47N.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":1023,"h":681,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663723438217924608,"id_str":"663723438217924608","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE81QUkAA7HdR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE81QUkAA7HdR.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"large":{"w":556,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":556,"h":596,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"100Faces","indices":[117,126]}],"urls":[],"user_mentions":[{"screen_name":"ilovejaney4ever","name":"JANE \u2747","id":2573128338,"id_str":"2573128338","indices":[3,19]},{"screen_name":"itsJaneOineza","name":"Jane Oineza","id":62764427,"id_str":"62764427","indices":[44,58]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[59,69]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[106,116]}],"symbols":[],"media":[{"id":663722494151364608,"id_str":"663722494151364608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1020,"h":680,"resize":"fit"}},"source_status_id":663723441036460032,"source_status_id_str":"663723441036460032","source_user_id":2573128338,"source_user_id_str":"2573128338"}]},"extended_entities":{"media":[{"id":663722494151364608,"id_str":"663722494151364608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEF4VUEAAvrxb.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1020,"h":680,"resize":"fit"}},"source_status_id":663723441036460032,"source_status_id_str":"663723441036460032","source_user_id":2573128338,"source_user_id_str":"2573128338"},{"id":663723217928876032,"id_str":"663723217928876032","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEwAnUcAAcxON.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEwAnUcAAcxON.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663723441036460032,"source_status_id_str":"663723441036460032","source_user_id":2573128338,"source_user_id_str":"2573128338"},{"id":663723229190602753,"id_str":"663723229190602753","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEwqkUwAEG47N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEwqkUwAEG47N.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"large":{"w":1023,"h":681,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723441036460032,"source_status_id_str":"663723441036460032","source_user_id":2573128338,"source_user_id_str":"2573128338"},{"id":663723438217924608,"id_str":"663723438217924608","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE81QUkAA7HdR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE81QUkAA7HdR.jpg","url":"https:\/\/t.co\/iMuNiebjfS","display_url":"pic.twitter.com\/iMuNiebjfS","expanded_url":"http:\/\/twitter.com\/ilovejaney4ever\/status\/663723441036460032\/photo\/1","type":"photo","sizes":{"large":{"w":556,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":556,"h":596,"resize":"fit"},"small":{"w":340,"h":364,"resize":"fit"}},"source_status_id":663723441036460032,"source_status_id_str":"663723441036460032","source_user_id":2573128338,"source_user_id_str":"2573128338"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099660"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769310720,"id_str":"663728160769310720","text":"RT @ichimiyamayuka: \u30ef\u30f3\u30de\u30f3\u30e9\u30a4\u30d6\u306eticket\u8cb7\u3063\u3066\u304f\u308c\u305f\u65b9\u3001\u672c\u5f53\u306b\u3042\u308a\u304c\u3068\u3046\uff01\n\n\u7686\u3055\u3093\uff01\u3042\u30682\u4eba\u3067\u4e00\u5bae\u51fa\u308c\u307e\u3059(><)\n\u3067\u3082100\u4eba\u307e\u3067\u307e\u3060\u307e\u3060\u3067\u3059\ud83d\ude2d\n\u529b\u3092\u8cb8\u3057\u3066\u304f\u3060\u3055\u3044\n\u30b3\u30c1\u30e9\u261ehttps:\/\/t.co\/A4UQA4Je4n\n#\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8 htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136955057,"id_str":"136955057","name":"\u304d\u304f\u308a\u3093","screen_name":"kikurin0817","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":171,"friends_count":321,"listed_count":0,"favourites_count":4248,"statuses_count":8994,"created_at":"Sun Apr 25 11:01:52 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630602809012961280\/bKa09CWH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630602809012961280\/bKa09CWH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/136955057\/1439182399","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:49 +0000 2015","id":663727197274767360,"id_str":"663727197274767360","text":"\u30ef\u30f3\u30de\u30f3\u30e9\u30a4\u30d6\u306eticket\u8cb7\u3063\u3066\u304f\u308c\u305f\u65b9\u3001\u672c\u5f53\u306b\u3042\u308a\u304c\u3068\u3046\uff01\n\n\u7686\u3055\u3093\uff01\u3042\u30682\u4eba\u3067\u4e00\u5bae\u51fa\u308c\u307e\u3059(><)\n\u3067\u3082100\u4eba\u307e\u3067\u307e\u3060\u307e\u3060\u3067\u3059\ud83d\ude2d\n\u529b\u3092\u8cb8\u3057\u3066\u304f\u3060\u3055\u3044\n\u30b3\u30c1\u30e9\u261ehttps:\/\/t.co\/A4UQA4Je4n\n#\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8 https:\/\/t.co\/YcP3DnDp7O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1463942065,"id_str":"1463942065","name":"\u4e00\u5bae\u9ebb\u7531\u52a0@\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8","screen_name":"ichimiyamayuka","location":null,"url":"http:\/\/s.ameblo.jp\/ichim1206\/","description":"12\/12\u30ef\u30f3\u30de\u30f3\u30e9\u30a4\u30d6\u6c7a\u5b9a\uff01\u65b0\u6f5f\u51fa\u8eab\uff01\u30a2\u30a4\u30c9\u30eb\u30e6\u30cb\u30c3\u30c8info.m@te\u8d64\u8272\u62c5\u5f53\uff01\u30b5\u30ed\u30e2\/TV(\u30d2\u30eb\u30ca\u30f3\u30c7\u30b9*\u30ba\u30e0\u30b5\u30bf*\u30bb\u30f3\u30cb\u30e5\u30a6\u611f\uff0a\u30b6\u30ce\u30f3\u30d5\u30a3\u30af\u30b7\u30e7\u30f3)\/\u6620\u753b\u300e\u591c\u5149\u83ef\u300f\/radio\/\u96d1\u8a8c(BLT\u30fb\u632f\u8896\u8a18\u5ff5\u65e5\u3001BOFOUT)\/\u30d5\u30a1\u30c3\u30b7\u30e7\u30f3\u30b7\u30e7\u30fc\/web\uff08\u7f8e\u4eba\uff7d\uff85\uff6f\uff8c\uff9f.R25\uff09\u203b\u7121\u6240\u5c5e\u203b\u304a\u4ed5\u4e8b\u4f9d\u983c\u306fDM\u3088\u308a","protected":false,"verified":false,"followers_count":3973,"friends_count":3062,"listed_count":68,"favourites_count":8849,"statuses_count":4706,"created_at":"Tue May 28 05:50:36 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660362047394152448\/dPKGccpt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660362047394152448\/dPKGccpt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1463942065\/1445164413","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8","indices":[113,121]}],"urls":[{"url":"https:\/\/t.co\/A4UQA4Je4n","expanded_url":"https:\/\/ssl.form-mailer.jp\/fms\/3ea72edd351903","display_url":"ssl.form-mailer.jp\/fms\/3ea72edd35\u2026","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727188286423040,"id_str":"663727188286423040","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","url":"https:\/\/t.co\/YcP3DnDp7O","display_url":"pic.twitter.com\/YcP3DnDp7O","expanded_url":"http:\/\/twitter.com\/ichimiyamayuka\/status\/663727197274767360\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":437,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":599,"h":437,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727188286423040,"id_str":"663727188286423040","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","url":"https:\/\/t.co\/YcP3DnDp7O","display_url":"pic.twitter.com\/YcP3DnDp7O","expanded_url":"http:\/\/twitter.com\/ichimiyamayuka\/status\/663727197274767360\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":437,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":599,"h":437,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8","indices":[133,141]}],"urls":[{"url":"https:\/\/t.co\/A4UQA4Je4n","expanded_url":"https:\/\/ssl.form-mailer.jp\/fms\/3ea72edd351903","display_url":"ssl.form-mailer.jp\/fms\/3ea72edd35\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"ichimiyamayuka","name":"\u4e00\u5bae\u9ebb\u7531\u52a0@\u30a4\u30f3\u30d5\u30a9\u30e1\u30a4\u30c8","id":1463942065,"id_str":"1463942065","indices":[3,18]}],"symbols":[],"media":[{"id":663727188286423040,"id_str":"663727188286423040","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","url":"https:\/\/t.co\/YcP3DnDp7O","display_url":"pic.twitter.com\/YcP3DnDp7O","expanded_url":"http:\/\/twitter.com\/ichimiyamayuka\/status\/663727197274767360\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":437,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":599,"h":437,"resize":"fit"}},"source_status_id":663727197274767360,"source_status_id_str":"663727197274767360","source_user_id":1463942065,"source_user_id_str":"1463942065"}]},"extended_entities":{"media":[{"id":663727188286423040,"id_str":"663727188286423040","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIXHWUwAA6er5.jpg","url":"https:\/\/t.co\/YcP3DnDp7O","display_url":"pic.twitter.com\/YcP3DnDp7O","expanded_url":"http:\/\/twitter.com\/ichimiyamayuka\/status\/663727197274767360\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":437,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":599,"h":437,"resize":"fit"}},"source_status_id":663727197274767360,"source_status_id_str":"663727197274767360","source_user_id":1463942065,"source_user_id_str":"1463942065"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160807211009,"id_str":"663728160807211009","text":"\u0641\u064a\u062f\u064a\u0648 \u0645\u0624\u062b\u0631: \u0637\u0627\u0644\u0628 \u064a\u0628\u0643\u064a \u0648\u064a\u0648\u062f\u0639 \u0645\u0639\u0644\u0645\u0647 \u0644\u0627\u0646\u062a\u0642\u0627\u0644\u0647 \u0644\u0645\u062f\u0631\u0633\u0629 \u0623\u062e\u0631\u0649 https:\/\/t.co\/9svOs8UDEv","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2523137670,"id_str":"2523137670","name":"\u0641\u0646\u0648\u0646","screen_name":"Fnonnet","location":null,"url":"http:\/\/Fnon.net","description":"\u0623\u0633\u062a\u0645\u062a\u0639 \u0628\u0640 \u0623\u062c\u0645\u0644 \u0645\u0642\u0627\u0637\u0639 \u0627\u0644\u0641\u064a\u062f\u064a\u0648 \u0627\u0644\u0645\u0646\u0648\u0639\u0629","protected":false,"verified":false,"followers_count":19212,"friends_count":19501,"listed_count":14,"favourites_count":1,"statuses_count":34279,"created_at":"Sun May 25 17:38:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586732616339984384\/8lbtNxFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586732616339984384\/8lbtNxFO_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9svOs8UDEv","expanded_url":"http:\/\/goo.gl\/k5QN76","display_url":"goo.gl\/k5QN76","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080099666"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160786149376,"id_str":"663728160786149376","text":"RT @JUMP_lovehina: \u5c71\u7530\u6dbc\u4ecb\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b509RT\u76ee\u6307\u3057\u307e\u3059\u2729\n509\u3074\u3063\u305f\u308a\u3067\u6b62\u3081\u3066\u304f\u3060\u3055\u3044\uff01\n\n#JUMP\u597d\u304dRT\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b \n\n\u6b21\u306f\u6dbc\u4ecb\uff01\u4f0a\u91ce\u5c3e\u3061\u3083\u3093\u306f\u6210\u529f\u3057\u305f\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 https:\/\/t.co\/jmwp3DZ\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4180047133,"id_str":"4180047133","name":"\u3081\u30fc\u3053@\u53d7\u9a13\u751f","screen_name":"meeko0606","location":"\u4ed6\u306e\u4eba\u3092\u611b\u3057\u3066\u3082\u4ed6\u306e\u4eba\u3067\u3057\u304b\u3042\u308a\u307e\u305b\u3093","url":null,"description":"#\u5d50\/#\u4e8c\u5bae\u548c\u4e5f\/#\u6709\u5ca1\u5927\u8cb4\/#\u795e\u6728\u9686\u4e4b\u4ecb\/\u3086\u308b~\u3044\u30b8\u30e3\u30cb\u30f2\u30bf\u3002\u540c\u62c5\u3055\u3093welcome\u3002\u639b\u3051\u6301\u3061\u62d2\u5426\u306e\u65b9\u3059\u307f\u307e\u305b\u3093\u3002\u6ca2\u5c71\u306e\u8da3\u5473\u5408\u3046\u4eba\u3068\u7e4b\u304c\u308c\u307e\u3059\u3088\u3046\u306b\u3002","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 14:17:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726417524363264\/WHztKhsT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726417524363264\/WHztKhsT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4180047133\/1447079858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:50:36 +0000 2015","id":663715311565189120,"id_str":"663715311565189120","text":"\u5c71\u7530\u6dbc\u4ecb\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b509RT\u76ee\u6307\u3057\u307e\u3059\u2729\n509\u3074\u3063\u305f\u308a\u3067\u6b62\u3081\u3066\u304f\u3060\u3055\u3044\uff01\n\n#JUMP\u597d\u304dRT\n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b \n\n\u6b21\u306f\u6dbc\u4ecb\uff01\u4f0a\u91ce\u5c3e\u3061\u3083\u3093\u306f\u6210\u529f\u3057\u305f\u306e\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 https:\/\/t.co\/jmwp3DZQlh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3325996968,"id_str":"3325996968","name":"\u3072\u306a\u2665Hey!Say!JUMP","screen_name":"JUMP_lovehina","location":null,"url":null,"description":"Hey! Say! JUMP\u611bing\u3002\u9999\u5ddd\u770c\u4f4f\u307f\u306e\u3068\u3073\u3063\u3053JK2\u3067\u3059\uff01\u5c71\u7530\u6dbc\u4ecb \u795e\u62c5\uff01\u4f0a\u91ce\u5c3e\u6167 \u62c5\u5f53\uff01\u6709\u5ca1\u5927\u8cb4 \u526f\u62c5\uff01\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5c3e\u3063\u6167\uff01 \u3068\u3073\u3063\u3053\u306e\u65b9\u30d5\u30a9\u30ed\u30d0600\uff05\u3069\u3093\u3069\u3093\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u301c\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044(ToT)","protected":false,"verified":false,"followers_count":1444,"friends_count":2111,"listed_count":3,"favourites_count":187,"statuses_count":872,"created_at":"Sun Aug 23 08:39:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653049469097738240\/_IVC8S-F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653049469097738240\/_IVC8S-F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3325996968\/1440335144","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":9,"entities":{"hashtags":[{"text":"JUMP\u597d\u304dRT","indices":[43,52]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[53,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715303616974848,"id_str":"663715303616974848","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663715303616974848,"id_str":"663715303616974848","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663715305210798081,"id_str":"663715305210798081","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jbcUYAEZTCl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jbcUYAEZTCl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663715307597332481,"id_str":"663715307597332481","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jkVUAAE6PMQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jkVUAAE6PMQ.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663715309455470592,"id_str":"663715309455470592","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jrQU8AAwdbR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jrQU8AAwdbR.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JUMP\u597d\u304dRT","indices":[62,71]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[72,86]}],"urls":[],"user_mentions":[{"screen_name":"JUMP_lovehina","name":"\u3072\u306a\u2665Hey!Say!JUMP","id":3325996968,"id_str":"3325996968","indices":[3,17]}],"symbols":[],"media":[{"id":663715303616974848,"id_str":"663715303616974848","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663715311565189120,"source_status_id_str":"663715311565189120","source_user_id":3325996968,"source_user_id_str":"3325996968"}]},"extended_entities":{"media":[{"id":663715303616974848,"id_str":"663715303616974848","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jVgUkAAveUl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663715311565189120,"source_status_id_str":"663715311565189120","source_user_id":3325996968,"source_user_id_str":"3325996968"},{"id":663715305210798081,"id_str":"663715305210798081","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jbcUYAEZTCl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jbcUYAEZTCl.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663715311565189120,"source_status_id_str":"663715311565189120","source_user_id":3325996968,"source_user_id_str":"3325996968"},{"id":663715307597332481,"id_str":"663715307597332481","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jkVUAAE6PMQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jkVUAAE6PMQ.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":477,"h":636,"resize":"fit"},"large":{"w":477,"h":636,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663715311565189120,"source_status_id_str":"663715311565189120","source_user_id":3325996968,"source_user_id_str":"3325996968"},{"id":663715309455470592,"id_str":"663715309455470592","indices":[119,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9jrQU8AAwdbR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9jrQU8AAwdbR.jpg","url":"https:\/\/t.co\/jmwp3DZQlh","display_url":"pic.twitter.com\/jmwp3DZQlh","expanded_url":"http:\/\/twitter.com\/JUMP_lovehina\/status\/663715311565189120\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":480,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":480,"resize":"fit"}},"source_status_id":663715311565189120,"source_status_id_str":"663715311565189120","source_user_id":3325996968,"source_user_id_str":"3325996968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099661"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160790327296,"id_str":"663728160790327296","text":"@SacredBa2 @misuchiru_06 \n\u307e\u3041\u3001\u4eca\u306e\u3046\u3061\u3060\u304b\u3089\u306a\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728033338032128,"in_reply_to_status_id_str":"663728033338032128","in_reply_to_user_id":3324420709,"in_reply_to_user_id_str":"3324420709","in_reply_to_screen_name":"SacredBa2","user":{"id":2805356000,"id_str":"2805356000","name":"\u3044\u307e(\u4eca\u91cc \u50da\u4ecb)","screen_name":"agp0iliveinsom1","location":"\u798f\u5ca1\u770c\u5927\u5ddd \u8840\u6db2\u578bO\u578b \u7279\u6027\u9f3b\u304b\u3089\u306e\u5927\u91cf\u51fa\u8840","url":null,"description":"\u9f8d\u8c37 6th \u751f\u5f92\u4f1a13~15 \u60c5\u5831\u2192\u5b97\u6559\n\u7a81\u7136\u306e\u3075\u3041\u307c\u306b\u3054\u6ce8\u610f\u3092\n\u30ea\u30a2\u57a2\u5bfe\u30d5\u30a9\u30ed\u30d0100\uff05","protected":false,"verified":false,"followers_count":301,"friends_count":292,"listed_count":1,"favourites_count":12207,"statuses_count":11727,"created_at":"Fri Sep 12 10:51:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658299365002313728\/sQCU2kBP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658299365002313728\/sQCU2kBP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805356000\/1446521788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SacredBa2","name":"\u3070\u3070\u3055\u304d","id":3324420709,"id_str":"3324420709","indices":[0,10]},{"screen_name":"misuchiru_06","name":"\u307e\u3086","id":3191767826,"id_str":"3191767826","indices":[11,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099662"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160790351872,"id_str":"663728160790351872","text":"\u304a\u305d\u677e\u3055\u3093\u3092\u77e5\u3063\u3066\u3044\u308b\u5148\u8f29\u3055\u3093\u3068\u4f1a\u3048\u305f\u306e\u3067\u3044\u308d\u3044\u308d\u304a\u8a71\u3057\u305f\u3044\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1096675158,"id_str":"1096675158","name":"\u5584","screen_name":"inuinushokora","location":"\u5ca1\u5c71","url":"http:\/\/otokoume.com\/","description":"\u30f4\u30a9\u2026\u30f4\u30a9\u30b0\u306e\u3044\u3044\u306d\u6b04\u304c\u304a\u305d\u677e\u3055\u3093\u3060\u3089\u3051\u306b\u2026 \u4e00\u5fdc\u5275\u4f5c\u57a2\u3067\u3059","protected":false,"verified":false,"followers_count":129,"friends_count":86,"listed_count":6,"favourites_count":2727,"statuses_count":58344,"created_at":"Wed Jan 16 23:55:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662969812985864192\/jyipzXnV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662969812985864192\/jyipzXnV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1096675158\/1446887006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099662"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160769380352,"id_str":"663728160769380352","text":"@_freno @fikarnn budak baik tu kome","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727732463828992,"in_reply_to_status_id_str":"663727732463828992","in_reply_to_user_id":1438566518,"in_reply_to_user_id_str":"1438566518","in_reply_to_screen_name":"_freno","user":{"id":1491864984,"id_str":"1491864984","name":"johndot.","screen_name":"seorangpidot","location":"Anfield , Skudai","url":"http:\/\/thepidot.vsco.co","description":"Your consciousness disperses ! nyx nyx nyx !","protected":false,"verified":false,"followers_count":767,"friends_count":556,"listed_count":2,"favourites_count":4970,"statuses_count":43694,"created_at":"Sat Jun 08 03:33:07 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034408603225\/b7968b7b1e2330d98191e2e093f8aeb5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034408603225\/b7968b7b1e2330d98191e2e093f8aeb5.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660013386088910849\/2CO1xMtd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660013386088910849\/2CO1xMtd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1491864984\/1445629742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_freno","name":"fren","id":1438566518,"id_str":"1438566518","indices":[0,7]},{"screen_name":"fikarnn","name":"ZUL","id":896712498,"id_str":"896712498","indices":[8,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080099657"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160773550081,"id_str":"663728160773550081","text":"RT @226Shimesaba1: \u8b1d\u3063\u3061\u3083\u30c0\u30e1\uff01\u305d\u3057\u305f\u3089\u307e\u3059\u307e\u3059\u3044\u3058\u3081\u304c\u30d2\u30fc\u30c8\u30a2\u30c3\u30d7\u3057\u3061\u3083\u3046\uff01\uff01\uff01 #SOL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2848868395,"id_str":"2848868395","name":"[\u62d3]","screen_name":"tak0195","location":"\u306b\u3044\u304c\u305f","url":"http:\/\/twpf.jp\/tak0195","description":"\u300a\u30d5\u30ea\u30fc\u30c0\u30fc\u30fc\u30e0\u300b \u4e2d2\u7537\u5b50 SOL\u751f\u5f92\uff0a\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\uff01\uff01\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059 \u57fa\u672c\u30d5\u30a9\u30ed\u30d0 \uff0a \u81ea\u7531 \uff0a J-Rock,J-Pop,\u30b8\u30e3\u30cb\u30fc\u30ba,\u7279\u64ae\u3068\u304b\u3044\u308d\u3044\u308d\u597d\u304d \u8a73\u3057\u3044\u306e\u306f\u3053\u3061\u3089\u306b\u79fb\u52d5\u3057\u307e\u3057\u305f\u2193","protected":false,"verified":false,"followers_count":421,"friends_count":668,"listed_count":6,"favourites_count":3186,"statuses_count":7372,"created_at":"Thu Oct 09 12:44:18 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560737866645377025\/fuY8LoPr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560737866645377025\/fuY8LoPr.jpeg","profile_background_tile":false,"profile_link_color":"000033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635837658640465920\/ONMdpiji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635837658640465920\/ONMdpiji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2848868395\/1444133604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727864714432513,"id_str":"663727864714432513","text":"\u8b1d\u3063\u3061\u3083\u30c0\u30e1\uff01\u305d\u3057\u305f\u3089\u307e\u3059\u307e\u3059\u3044\u3058\u3081\u304c\u30d2\u30fc\u30c8\u30a2\u30c3\u30d7\u3057\u3061\u3083\u3046\uff01\uff01\uff01 #SOL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766315337,"id_str":"2766315337","name":"\u864e\u592a\u90ce\u306e\u91cc(SOL)@\u9b5a\u6c11","screen_name":"226Shimesaba1","location":null,"url":null,"description":"school of lock\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\uff01(RN\u864e\u592a\u90ce\u306e\u91cc)\n\u30b5\u30ab\u30ca\u30af\u30b7\u30e7\u30f3\/flumpool\/\u9ad8\u6a4b\u512a\/\u65b0\u6f5f\u770c\u9ad82\u30b5\u30c3\u30ab\u30fc\u90e8\u3067\u3059\uff01","protected":false,"verified":false,"followers_count":280,"friends_count":401,"listed_count":1,"favourites_count":725,"statuses_count":1586,"created_at":"Mon Aug 25 12:59:59 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593419922404839424\/b0GSVBey_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593419922404839424\/b0GSVBey_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"SOL","indices":[33,37]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SOL","indices":[52,56]}],"urls":[],"user_mentions":[{"screen_name":"226Shimesaba1","name":"\u864e\u592a\u90ce\u306e\u91cc(SOL)@\u9b5a\u6c11","id":2766315337,"id_str":"2766315337","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099658"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794501121,"id_str":"663728160794501121","text":"@chi_ta37 \u3042\u308a\u304c\u3068\u3046\uff01\u79c1\u3082\u697d\u3057\u307f\u306b\u3057\u3066\u308b\u270c\u270c(\u27b2 \u15dc \u27b2)\u270c\u270c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727825111814144,"in_reply_to_status_id_str":"663727825111814144","in_reply_to_user_id":3285134448,"in_reply_to_user_id_str":"3285134448","in_reply_to_screen_name":"chi_ta37","user":{"id":3474352933,"id_str":"3474352933","name":"\u304d\u3055\u304d\uff2011\/23TDL\u53c2\u6226","screen_name":"kisaki0526","location":"\u795e\u5948\u5ddd","url":null,"description":"DOGinThePWO\/\u30e1\u30a4 BugLug\/\u4e00\u6a39 Blu-BiLLioN\/mag V\u7cfb\u304c\u597d\u304d\u3067\u3059\uff01\u7d61\u307f\u306b\u6765\u3066\u306d\u3063\u3066\u8a00\u308f\u308c\u3066\u3082\u7d61\u307f\u306b\u884c\u3051\u306a\u3044\u4eba\u898b\u77e5\u308a\u30c1\u30ad\u30f3\u91ce\u90ce\u3068\u306f\u79c1\u306e\u3053\u3068\u306a\u306e\u3067\u7a4d\u6975\u7684\u306b\u7d61\u307f\u306b\u6765\u3066\u304f\u3060\u3055\u3044(\u066d\u00b0\u0327\u0327\u0327\u03c9\u00b0\u0327\u0327\u0327\u066d) \u3042\u3068\u30c4\u30a4\u30d7\u30ed\u662f\u975e\u898b\u3066\u304f\u3060\u3055\u3044\uff01http:\/\/twpf.jp\/kisaki0526","protected":false,"verified":false,"followers_count":130,"friends_count":251,"listed_count":8,"favourites_count":4695,"statuses_count":1291,"created_at":"Sun Sep 06 20:41:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640628256123678720\/krzCM84a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640628256123678720\/krzCM84a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3474352933\/1444547132","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chi_ta37","name":"\uff61.\u029aM I N A\u025e .\uff61","id":3285134448,"id_str":"3285134448","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160773693440,"id_str":"663728160773693440","text":"@ElPutoHelios @FanDeAlexelcapo @teamx6tence jajajaj te comprendk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727859068981248,"in_reply_to_status_id_str":"663727859068981248","in_reply_to_user_id":2749596578,"in_reply_to_user_id_str":"2749596578","in_reply_to_screen_name":"ElPutoHelios","user":{"id":1931354814,"id_str":"1931354814","name":"URIII","screen_name":"UriDubi","location":null,"url":"http:\/\/laruta.cat","description":"12","protected":false,"verified":false,"followers_count":151,"friends_count":200,"listed_count":8,"favourites_count":2078,"statuses_count":6319,"created_at":"Thu Oct 03 17:06:04 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654051915412582400\/4Z5lCQtV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654051915412582400\/4Z5lCQtV.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654051705194082304\/Cas3WsMX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654051705194082304\/Cas3WsMX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1931354814\/1444773066","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ElPutoHelios","name":"Helios Kumple Anios","id":2749596578,"id_str":"2749596578","indices":[0,13]},{"screen_name":"FanDeAlexelcapo","name":"Armand Diago ","id":2489896356,"id_str":"2489896356","indices":[14,30]},{"screen_name":"teamx6tence","name":"x6tence","id":112113934,"id_str":"112113934","indices":[31,43]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080099658"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160777871360,"id_str":"663728160777871360","text":"2-0! Bangladesh secure another ODI series, as they win the 2nd ODI by 58 runs: https:\/\/t.co\/vlETEWd2Cx #BanvZim https:\/\/t.co\/7MiRisL0bl","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3017808051,"id_str":"3017808051","name":"Lets Play Cricket","screen_name":"LPC_TeamIndia","location":"New Delhi, Delhi","url":null,"description":"Bio Shio kuch nai bae only remember we are Cricket Lovers. #TeamIndia","protected":false,"verified":false,"followers_count":67,"friends_count":8,"listed_count":2,"favourites_count":1,"statuses_count":8270,"created_at":"Wed Feb 04 15:24:37 +0000 2015","utc_offset":18000,"time_zone":"Karachi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622744144742494209\/VfX8Y2hD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622744144742494209\/VfX8Y2hD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3017808051\/1437308722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BanvZim","indices":[103,111]}],"urls":[{"url":"https:\/\/t.co\/vlETEWd2Cx","expanded_url":"http:\/\/bit.ly\/banvszim2","display_url":"bit.ly\/banvszim2","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663727766253248512,"id_str":"663727766253248512","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wcWoAAjqOh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wcWoAAjqOh.jpg","url":"https:\/\/t.co\/7MiRisL0bl","display_url":"pic.twitter.com\/7MiRisL0bl","expanded_url":"http:\/\/twitter.com\/ICC\/status\/663727882619985920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727882619985920,"source_status_id_str":"663727882619985920","source_user_id":177547780,"source_user_id_str":"177547780"}]},"extended_entities":{"media":[{"id":663727766253248512,"id_str":"663727766253248512","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI4wcWoAAjqOh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI4wcWoAAjqOh.jpg","url":"https:\/\/t.co\/7MiRisL0bl","display_url":"pic.twitter.com\/7MiRisL0bl","expanded_url":"http:\/\/twitter.com\/ICC\/status\/663727882619985920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727882619985920,"source_status_id_str":"663727882619985920","source_user_id":177547780,"source_user_id_str":"177547780"},{"id":663727790462787584,"id_str":"663727790462787584","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6KoW4AAjJ8U.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6KoW4AAjJ8U.jpg","url":"https:\/\/t.co\/7MiRisL0bl","display_url":"pic.twitter.com\/7MiRisL0bl","expanded_url":"http:\/\/twitter.com\/ICC\/status\/663727882619985920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727882619985920,"source_status_id_str":"663727882619985920","source_user_id":177547780,"source_user_id_str":"177547780"},{"id":663727805289598976,"id_str":"663727805289598976","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI7B3WEAAvzz9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI7B3WEAAvzz9.jpg","url":"https:\/\/t.co\/7MiRisL0bl","display_url":"pic.twitter.com\/7MiRisL0bl","expanded_url":"http:\/\/twitter.com\/ICC\/status\/663727882619985920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727882619985920,"source_status_id_str":"663727882619985920","source_user_id":177547780,"source_user_id_str":"177547780"},{"id":663727838667911169,"id_str":"663727838667911169","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8-NWsAEA90E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8-NWsAEA90E.jpg","url":"https:\/\/t.co\/7MiRisL0bl","display_url":"pic.twitter.com\/7MiRisL0bl","expanded_url":"http:\/\/twitter.com\/ICC\/status\/663727882619985920\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663727882619985920,"source_status_id_str":"663727882619985920","source_user_id":177547780,"source_user_id_str":"177547780"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099659"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794525696,"id_str":"663728160794525696","text":"AKB48\u52a0\u85e4\u73b2\u5948\u306e\u771f\u76f8\u3092\u544a\u767d\uff01\uff01\u3048\u3001\u30ad\u30b9\u9b54\uff1f\u30cf\u30fc\u30d5\uff1f \u03a3(\uff9f\u0434\uff9flll) \u672c\u5f53\u306e\u6027\u683c\u3084\u71b1\u611b\u306e\u5642\u3082\uff01 https:\/\/t.co\/lwIcCLQkzz","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314959195,"id_str":"3314959195","name":"\u9ad8\u6a4b\u307f\u306a\u307f\u2606\u53ef\u611b\u3044\u2665\u2665","screen_name":"u0175eTakamina","location":null,"url":null,"description":"\u9ad8\u6a4b\u307f\u306a\u307f\u3092\u71b1\u70c8\u306b\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01\uff01 \u3084\u3063\u3071\u308a\u7b11\u9854\u3068\u30c0\u30f3\u30b9\u304c('\u2200`)\uff7d\uff9d\uff73\uff9e\uff67\uff97\uff6f\uff6f\uff7d\uff68\uff68\uff68\uff68\uff68\uff68\uff68\u3068\u601d\u3044\u307e\u3059\u266a\u266a\u266a \u307e\u305f\u30e9\u30a4\u30d6\u306b\u884c\u3063\u3066\u58f0\u304c\u67af\u308c\u308b\u307e\u3067\u5fdc\u63f4\u3057\u305f\u3044\u3067\u3059\uff01\uff01 \u662f\u975e\u30d5\u30a1\u30f3\u306e\u7686\u3055\u3093\u3001\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff01 \u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3067\u3059\uff01\uff01(\u00b4\u2207\uff40)\uff89","protected":false,"verified":false,"followers_count":26,"friends_count":57,"listed_count":0,"favourites_count":0,"statuses_count":11074,"created_at":"Fri Aug 14 09:33:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632122937521274881\/9EY8rzXb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632122937521274881\/9EY8rzXb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314959195\/1439544845","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lwIcCLQkzz","expanded_url":"http:\/\/geinonews01abc.seesaa.net\/","display_url":"geinonews01abc.seesaa.net","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160807124992,"id_str":"663728160807124992","text":"@mm_exta \n\u308f\u3042\ud83d\udc97\u304a\u8fce\u3048\u304d\u3066\u304f\u308c\u3066\n\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff61\uff9f(P\u0414`q*)\uff9f\uff61","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727505577127936,"in_reply_to_status_id_str":"663727505577127936","in_reply_to_user_id":2421409658,"in_reply_to_user_id_str":"2421409658","in_reply_to_screen_name":"mm_exta","user":{"id":135507650,"id_str":"135507650","name":"\u2661\u3042\u3055\u307f\u3093@TA\u30df\u30b7\u30ab\u2661","screen_name":"asana1118","location":"\u6771\u4eac\uff0a \u30e1\u30c7\u30a3\u30c6\u30ec\u30fc\u30cb\u30a2\u30f3\u30cf\u30fc\u30d0\u30fc","url":null,"description":"Ayumi Hamasaki\u2661TA\/TAcouple\/KO\u3061\u3083\u3093\u2661\/Biglooove\u2661\/1990\/11.18 Disney\u2661\u5e74\u30d1\u5207\u308c\u4e2d\u2026\uff0a\u821e\u6d5c\u6d3b\u52d5\u3057\u3070\u3089\u304f\u304a\u4f11\u307f\/TAtour...\u5317\u6d77\u9053\u3001\u5e83\u5cf6\u3001\u6771\u4eac\u2661\/ \u6e05\u6728\u5834\u4fca\u4ecb\u202612.13\u2661\/CDL...29.30.31\u2661","protected":false,"verified":false,"followers_count":349,"friends_count":320,"listed_count":2,"favourites_count":274,"statuses_count":22473,"created_at":"Wed Apr 21 14:04:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605667462\/w95ec11jxliymjycre0t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605667462\/w95ec11jxliymjycre0t.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620162156223270912\/vmCV7XYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620162156223270912\/vmCV7XYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135507650\/1445844305","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mm_exta","name":"\u307f\u304a\u3061\u3093\u2764\ufe0e","id":2421409658,"id_str":"2421409658","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099666"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160798822400,"id_str":"663728160798822400","text":"2 people unfollowed me \/\/ automatically checked by https:\/\/t.co\/Nu5VUO8qhN","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570717038,"id_str":"1570717038","name":"Joseline Campoverde\u270c","screen_name":"joselinecs97","location":"Ecuador,Machala","url":null,"description":"Snapchat : Joselinecs97 \u2665","protected":false,"verified":false,"followers_count":297,"friends_count":394,"listed_count":0,"favourites_count":1069,"statuses_count":8809,"created_at":"Fri Jul 05 15:23:50 +0000 2013","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000016583992\/e7cde0006c3977f40afa12c174ec57a0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000016583992\/e7cde0006c3977f40afa12c174ec57a0.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635655123608424448\/GUsnPK1-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635655123608424448\/GUsnPK1-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570717038\/1431159353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Nu5VUO8qhN","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080099664"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160794480640,"id_str":"663728160794480640","text":"@awkwardgoogle @EricAdorn11 bring me here \ud83d\ude44","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661966837857521664,"in_reply_to_status_id_str":"661966837857521664","in_reply_to_user_id":476199422,"in_reply_to_user_id_str":"476199422","in_reply_to_screen_name":"awkwardgoogle","user":{"id":1254302868,"id_str":"1254302868","name":"KS","screen_name":"Krthnaa_","location":"Land of the Hornbills \u2728","url":"https:\/\/Instagram.com\/krthnaa\/","description":"Duck my sick.","protected":false,"verified":false,"followers_count":647,"friends_count":142,"listed_count":1,"favourites_count":3794,"statuses_count":6760,"created_at":"Sat Mar 09 12:59:39 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5B4AE0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000016491116\/3caec08d1c96ea33c974aaf7057e26e3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000016491116\/3caec08d1c96ea33c974aaf7057e26e3.jpeg","profile_background_tile":true,"profile_link_color":"1A96B5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726616133042177\/09BC0OSH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726616133042177\/09BC0OSH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1254302868\/1446122460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d6b1212c71500c2d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d6b1212c71500c2d.json","place_type":"city","name":"Miri","full_name":"Miri, Sarawak","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[113.410527,3.295309],[113.410527,4.597678],[114.211628,4.597678],[114.211628,3.295309]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"awkwardgoogle","name":"Tips & Tricks","id":476199422,"id_str":"476199422","indices":[0,14]},{"screen_name":"EricAdorn11","name":"Eric\ufe0f","id":779839916,"id_str":"779839916","indices":[15,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080099663"} +{"created_at":"Mon Nov 09 14:41:39 +0000 2015","id":663728160777764865,"id_str":"663728160777764865","text":"\u5f37\u305d\u3046\u306a\u30ae\u30eb\u30c9\u540d https:\/\/t.co\/4WdwnX8par","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264601481,"id_str":"264601481","name":"\u3072\u306a\u305f","screen_name":"hinataaaax","location":"\u9577\u91ce\u306e\u30d4\u30a8\u30e9\u30fc","url":"http:\/\/com.nicovideo.jp\/community\/co1479190?mypage_nicorepo","description":"\u30ad\u30f3\u30b0\u30b9\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u5927\u597d\u304d\u306a\u30de\u30a4\u30af\u30e9V\u7cfb\u63d0\u7763\u3002\u30cb\u30b3\u751f\u306b\u3066\u6975\u7a00\u306b\u51fa\u73fe\u3002\u30c0\u30f3\u30b8\u30e7\u30f3\u30b9\u30c8\u30e9\u30a4\u30ab\u30fc\u3084\u308a\u59cb\u3081\u307e\u3057\u305f('\u03c9')\u270c","protected":false,"verified":false,"followers_count":146,"friends_count":105,"listed_count":6,"favourites_count":143,"statuses_count":19432,"created_at":"Sat Mar 12 04:49:11 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602116735236321281\/lwqjIRYZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602116735236321281\/lwqjIRYZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264601481\/1432299692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728158185684992,"id_str":"663728158185684992","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPkgVAAANqEk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPkgVAAANqEk.png","url":"https:\/\/t.co\/4WdwnX8par","display_url":"pic.twitter.com\/4WdwnX8par","expanded_url":"http:\/\/twitter.com\/hinataaaax\/status\/663728160777764865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":201,"h":239,"resize":"fit"},"medium":{"w":201,"h":239,"resize":"fit"},"large":{"w":201,"h":239,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728158185684992,"id_str":"663728158185684992","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPkgVAAANqEk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPkgVAAANqEk.png","url":"https:\/\/t.co\/4WdwnX8par","display_url":"pic.twitter.com\/4WdwnX8par","expanded_url":"http:\/\/twitter.com\/hinataaaax\/status\/663728160777764865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":201,"h":239,"resize":"fit"},"medium":{"w":201,"h":239,"resize":"fit"},"large":{"w":201,"h":239,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080099659"} +{"delete":{"status":{"id":519400528577437696,"id_str":"519400528577437696","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080100026"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164976349185,"id_str":"663728164976349185","text":"RT @Cristinaandugar: b\u00fascame en tu equivocaci\u00f3n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335839307,"id_str":"335839307","name":"Juan Jim\u00e9nez-Fontes","screen_name":"JuanJFGR","location":"Murcia, Espa\u00f1a ","url":null,"description":"Rugby player \/\/ CURM","protected":false,"verified":false,"followers_count":600,"friends_count":512,"listed_count":3,"favourites_count":3933,"statuses_count":12592,"created_at":"Fri Jul 15 09:51:01 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/841260486\/1073df4f403ea59bcf63a5402280719f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/841260486\/1073df4f403ea59bcf63a5402280719f.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610788756283621376\/OnXhQh_y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610788756283621376\/OnXhQh_y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335839307\/1424604182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:37 +0000 2015","id":663719344648675328,"id_str":"663719344648675328","text":"b\u00fascame en tu equivocaci\u00f3n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":928286426,"id_str":"928286426","name":"Cristina And\u00fagar","screen_name":"Cristinaandugar","location":null,"url":"https:\/\/instagram.com\/cristinaandugar\/","description":"nos vemos en la oscuridad","protected":false,"verified":false,"followers_count":996,"friends_count":574,"listed_count":5,"favourites_count":3239,"statuses_count":21946,"created_at":"Mon Nov 05 19:47:40 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000152498922\/v4JQFUBx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000152498922\/v4JQFUBx.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658050042482311172\/o_IgEnaO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658050042482311172\/o_IgEnaO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/928286426\/1446729763","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cristinaandugar","name":"Cristina And\u00fagar","id":928286426,"id_str":"928286426","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080100660"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963753984,"id_str":"663728164963753984","text":"RT @GlobalGoalsUN: Immediate push on climate-smart development can keep >100M people out of poverty, says new @WorldBank report. #COP21 htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143527462,"id_str":"143527462","name":"Pete Crane","screen_name":"KadamBPD","location":"Over the hills and far away!","url":null,"description":"Genuinely (diagnosed) mad. NKT practitioner. Vegan. Chunky, indolent & shaven-headed, avec bins! Empathy not sympathy!","protected":false,"verified":false,"followers_count":280,"friends_count":1247,"listed_count":20,"favourites_count":130064,"statuses_count":139388,"created_at":"Thu May 13 18:24:21 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522766100568633344\/0sHf2JWG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522766100568633344\/0sHf2JWG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143527462\/1412834483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727941021474817,"id_str":"663727941021474817","text":"Immediate push on climate-smart development can keep >100M people out of poverty, says new @WorldBank report. #COP21 https:\/\/t.co\/uq4tSBK6kA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115099953,"id_str":"115099953","name":"Global Goals ","screen_name":"GlobalGoalsUN","location":"Global","url":"http:\/\/www.un.org\/sustainabledevelopment\/","description":"Official twitter account of the United Nations on the Global Goals for Sustainable Development. Transforming our world by 2030.","protected":false,"verified":true,"followers_count":161096,"friends_count":389,"listed_count":3373,"favourites_count":803,"statuses_count":12811,"created_at":"Wed Feb 17 16:18:01 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/100887158\/mdg_light.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/100887158\/mdg_light.jpg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641336035159482368\/qhBNV1vp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641336035159482368\/qhBNV1vp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115099953\/1442010048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"COP21","indices":[113,119]}],"urls":[{"url":"https:\/\/t.co\/uq4tSBK6kA","expanded_url":"http:\/\/bit.ly\/1WIzvim","display_url":"bit.ly\/1WIzvim","indices":[120,143]}],"user_mentions":[{"screen_name":"WorldBank","name":"World Bank","id":27860681,"id_str":"27860681","indices":[94,104]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"COP21","indices":[132,138]}],"urls":[{"url":"https:\/\/t.co\/uq4tSBK6kA","expanded_url":"http:\/\/bit.ly\/1WIzvim","display_url":"bit.ly\/1WIzvim","indices":[142,143]}],"user_mentions":[{"screen_name":"GlobalGoalsUN","name":"Global Goals ","id":115099953,"id_str":"115099953","indices":[3,17]},{"screen_name":"WorldBank","name":"World Bank","id":27860681,"id_str":"27860681","indices":[113,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164984721408,"id_str":"663728164984721408","text":"RT @OkieGirl405: It's a hard lesson to learn, just because your intentions are good doesn't mean everyone else's are","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":61595924,"id_str":"61595924","name":"Nyambura","screen_name":"AliceKibz","location":"Kenya","url":null,"description":"Ain't picture perfect but worth the picture still","protected":false,"verified":false,"followers_count":1229,"friends_count":707,"listed_count":4,"favourites_count":102,"statuses_count":21734,"created_at":"Thu Jul 30 20:53:08 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656004208886284288\/7G9J349p.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656004208886284288\/7G9J349p.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377826683465728\/CszsOu97_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377826683465728\/CszsOu97_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61595924\/1438974629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:44:37 +0000 2015","id":661871670609735680,"id_str":"661871670609735680","text":"It's a hard lesson to learn, just because your intentions are good doesn't mean everyone else's are","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480958830,"id_str":"480958830","name":"Tammy","screen_name":"OkieGirl405","location":"Oklahoman living in Orlando FL","url":"http:\/\/twitter.com\/OkieGirl405\/timelines\/565655110387531780","description":"Rode off into the Florida sunset with @cowboyjeffkent http:\/\/favstar.fm\/users\/OkieGirl405","protected":false,"verified":false,"followers_count":40249,"friends_count":3599,"listed_count":1056,"favourites_count":124627,"statuses_count":182529,"created_at":"Thu Feb 02 03:53:35 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344511763025053766\/2ed30da08fa3efb892a601068b65c2eb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344511763025053766\/2ed30da08fa3efb892a601068b65c2eb.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457711723378532352\/TwfvoEtQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457711723378532352\/TwfvoEtQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480958830\/1366752215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":147,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OkieGirl405","name":"Tammy","id":480958830,"id_str":"480958830","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100662"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963803136,"id_str":"663728164963803136","text":"RT @AlMnatiq: \u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u062c\u0627\u0644\u0633 \u0627\u0644\u0628\u0644\u062f\u064a\u0629: 1,486,477 \u0646\u0627\u062e\u0628 \u0648\u0646\u0627\u062e\u0628\u0629 \u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u0646\u0647\u0627\u0626\u064a\u0629 \u0644\u0644\u0646\u0627\u062e\u0628\u064a\u0646\nhttps:\/\/t.co\/FFZRLC6qD8\n#\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074386813,"id_str":"3074386813","name":"\u0646\u0628\u0631\u0627\u0633 \u0627\u0644\u0623\u0645\u0644","screen_name":"laylaahmad2015","location":null,"url":null,"description":"\u0628\u0643\u0627\u0644\u0648\u0631\u064a\u0648\u0633 \u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629 \u062f\u0628\u0644\u0648\u0645 \u062d\u0627\u0633\u0628 \u062a\u0637\u0628\u064a\u0642\u064a (\u0639\u0627\u0637\u0644\u0629 \u0639\u0646 \u0627\u0644\u0639\u0645\u0644)","protected":false,"verified":false,"followers_count":189,"friends_count":351,"listed_count":0,"favourites_count":926,"statuses_count":8610,"created_at":"Thu Mar 12 00:45:52 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635955538744897536\/5LWl9_fn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635955538744897536\/5LWl9_fn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074386813\/1427667608","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:17 +0000 2015","id":663724797508104193,"id_str":"663724797508104193","text":"\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a \u0627\u0644\u0645\u062c\u0627\u0644\u0633 \u0627\u0644\u0628\u0644\u062f\u064a\u0629: 1,486,477 \u0646\u0627\u062e\u0628 \u0648\u0646\u0627\u062e\u0628\u0629 \u0625\u062c\u0645\u0627\u0644\u064a \u0627\u0644\u0642\u0648\u0627\u0626\u0645 \u0627\u0644\u0646\u0647\u0627\u0626\u064a\u0629 \u0644\u0644\u0646\u0627\u062e\u0628\u064a\u0646\nhttps:\/\/t.co\/FFZRLC6qD8\n#\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a https:\/\/t.co\/584sADcnB1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":440155560,"id_str":"440155560","name":"\u0635\u062d\u064a\u0641\u0629 \u0627\u0644\u0645\u0646\u0627\u0637\u0642","screen_name":"AlMnatiq","location":null,"url":"http:\/\/almnatiq.net","description":"\u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0631\u0633\u0645\u064a \u0644\u0635\u062d\u064a\u0641\u0629 \u0627\u0644\u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629","protected":false,"verified":false,"followers_count":128567,"friends_count":12,"listed_count":396,"favourites_count":79,"statuses_count":65216,"created_at":"Sun Dec 18 16:55:43 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549971119197810688\/77flDvr6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549971119197810688\/77flDvr6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440155560\/1427697427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[105,116]}],"urls":[{"url":"https:\/\/t.co\/FFZRLC6qD8","expanded_url":"http:\/\/almnatiq.net\/151517\/","display_url":"almnatiq.net\/151517\/","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663724795968815104,"id_str":"663724795968815104","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","url":"https:\/\/t.co\/584sADcnB1","display_url":"pic.twitter.com\/584sADcnB1","expanded_url":"http:\/\/twitter.com\/AlMnatiq\/status\/663724797508104193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":365,"h":227,"resize":"fit"},"medium":{"w":365,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724795968815104,"id_str":"663724795968815104","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","url":"https:\/\/t.co\/584sADcnB1","display_url":"pic.twitter.com\/584sADcnB1","expanded_url":"http:\/\/twitter.com\/AlMnatiq\/status\/663724797508104193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":365,"h":227,"resize":"fit"},"medium":{"w":365,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[119,130]}],"urls":[{"url":"https:\/\/t.co\/FFZRLC6qD8","expanded_url":"http:\/\/almnatiq.net\/151517\/","display_url":"almnatiq.net\/151517\/","indices":[95,118]}],"user_mentions":[{"screen_name":"AlMnatiq","name":"\u0635\u062d\u064a\u0641\u0629 \u0627\u0644\u0645\u0646\u0627\u0637\u0642","id":440155560,"id_str":"440155560","indices":[3,12]}],"symbols":[],"media":[{"id":663724795968815104,"id_str":"663724795968815104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","url":"https:\/\/t.co\/584sADcnB1","display_url":"pic.twitter.com\/584sADcnB1","expanded_url":"http:\/\/twitter.com\/AlMnatiq\/status\/663724797508104193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":365,"h":227,"resize":"fit"},"medium":{"w":365,"h":227,"resize":"fit"}},"source_status_id":663724797508104193,"source_status_id_str":"663724797508104193","source_user_id":440155560,"source_user_id_str":"440155560"}]},"extended_entities":{"media":[{"id":663724795968815104,"id_str":"663724795968815104","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGL3RXAAAVoHd.jpg","url":"https:\/\/t.co\/584sADcnB1","display_url":"pic.twitter.com\/584sADcnB1","expanded_url":"http:\/\/twitter.com\/AlMnatiq\/status\/663724797508104193\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":211,"resize":"fit"},"large":{"w":365,"h":227,"resize":"fit"},"medium":{"w":365,"h":227,"resize":"fit"}},"source_status_id":663724797508104193,"source_status_id_str":"663724797508104193","source_user_id":440155560,"source_user_id_str":"440155560"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164976349184,"id_str":"663728164976349184","text":"Cahit Zarifo\u011flu \u0130mam Hatip Ortaokulundan \u00d6rnek Bir Uygulama Daha! https:\/\/t.co\/b25rppI6Rz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2438605542,"id_str":"2438605542","name":"KGRT","screen_name":"KGRTKaraman","location":"Karaman \u0130li","url":"http:\/\/www.kgrt.net","description":"0 338 212 90 90","protected":false,"verified":false,"followers_count":1589,"friends_count":1528,"listed_count":0,"favourites_count":1,"statuses_count":5020,"created_at":"Fri Apr 11 14:33:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"090C0D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/454629319696871424\/S4KVzASr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/454629319696871424\/S4KVzASr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2438605542\/1397227126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b25rppI6Rz","expanded_url":"http:\/\/www.kgrt.net\/Haber\/15514\/Cahit-Zarifoglu-Imam-Hatip-Ortaokulundan-Ornek-Bir-Uygulama-Daha.aspx#.VkCwoOFZAJw.twitter","display_url":"kgrt.net\/Haber\/15514\/Ca\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080100660"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164984766464,"id_str":"663728164984766464","text":"RT @carol_ssparrow: Monica (bom senso) vs Ota (falta de criatividade)\n#BCAMonicaHumorista https:\/\/t.co\/r2CasOzD7H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301073261,"id_str":"3301073261","name":"lifebaronesa","screen_name":"lifebaronesa","location":null,"url":null,"description":"Novo Twitter\u2663Segue Nosso Insta @lifebaronesa -\nClau Te Amo Muito\u2665 Florian\u00f3polis\u2190\u2192","protected":false,"verified":false,"followers_count":50,"friends_count":6,"listed_count":0,"favourites_count":372,"statuses_count":509,"created_at":"Thu May 28 00:18:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605547865407111168\/wHnZntpw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605547865407111168\/wHnZntpw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301073261\/1432772675","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:03:21 +0000 2015","id":663371233514405888,"id_str":"663371233514405888","text":"Monica (bom senso) vs Ota (falta de criatividade)\n#BCAMonicaHumorista https:\/\/t.co\/r2CasOzD7H","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":394417717,"id_str":"394417717","name":"CarolSparrow ~","screen_name":"carol_ssparrow","location":"BRA","url":"http:\/\/monicaiozzi.net","description":"\u007bABBA\u007d \u007bGirls'Generation\u007d \u007bJohnnyDEPP\u007d \u007bF.R.I.E.N.D.S\u007d \u007bMonicaIOZZI\u007d","protected":false,"verified":false,"followers_count":745,"friends_count":409,"listed_count":3,"favourites_count":4004,"statuses_count":36112,"created_at":"Thu Oct 20 01:36:00 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"E187FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097919237\/e56b55a384f2468ad340e5aebe0c9a99.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097919237\/e56b55a384f2468ad340e5aebe0c9a99.jpeg","profile_background_tile":true,"profile_link_color":"6600FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663611435667341312\/eq39KUZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663611435667341312\/eq39KUZH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394417717\/1443383845","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":7,"entities":{"hashtags":[{"text":"BCAMonicaHumorista","indices":[50,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663371231803125760,"id_str":"663371231803125760","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","url":"https:\/\/t.co\/r2CasOzD7H","display_url":"pic.twitter.com\/r2CasOzD7H","expanded_url":"http:\/\/twitter.com\/carol_ssparrow\/status\/663371233514405888\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":296,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"large":{"w":448,"h":296,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663371231803125760,"id_str":"663371231803125760","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","url":"https:\/\/t.co\/r2CasOzD7H","display_url":"pic.twitter.com\/r2CasOzD7H","expanded_url":"http:\/\/twitter.com\/carol_ssparrow\/status\/663371233514405888\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":296,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"large":{"w":448,"h":296,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BCAMonicaHumorista","indices":[70,89]}],"urls":[],"user_mentions":[{"screen_name":"carol_ssparrow","name":"CarolSparrow ~","id":394417717,"id_str":"394417717","indices":[3,18]}],"symbols":[],"media":[{"id":663371231803125760,"id_str":"663371231803125760","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","url":"https:\/\/t.co\/r2CasOzD7H","display_url":"pic.twitter.com\/r2CasOzD7H","expanded_url":"http:\/\/twitter.com\/carol_ssparrow\/status\/663371233514405888\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":296,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"large":{"w":448,"h":296,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663371233514405888,"source_status_id_str":"663371233514405888","source_user_id":394417717,"source_user_id_str":"394417717"}]},"extended_entities":{"media":[{"id":663371231803125760,"id_str":"663371231803125760","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTTEnuHWsAA-2TA.jpg","url":"https:\/\/t.co\/r2CasOzD7H","display_url":"pic.twitter.com\/r2CasOzD7H","expanded_url":"http:\/\/twitter.com\/carol_ssparrow\/status\/663371233514405888\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":296,"resize":"fit"},"small":{"w":340,"h":224,"resize":"fit"},"large":{"w":448,"h":296,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663371233514405888,"source_status_id_str":"663371233514405888","source_user_id":394417717,"source_user_id_str":"394417717"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080100662"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164980596737,"id_str":"663728164980596737","text":"RT @WIREDFeed: Google Just Open Sourced TensorFlow, Its Artificial Intelligence Engine: In a dramatic departure, Google is op... https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3138244063,"id_str":"3138244063","name":"a16zBot","screen_name":"a16zBot","location":null,"url":null,"description":"When @a16z folks tweet (or retweet), I retweet.","protected":false,"verified":false,"followers_count":160,"friends_count":2,"listed_count":125,"favourites_count":156,"statuses_count":13550,"created_at":"Sat Apr 04 00:55:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584159698221338625\/Z7J_IHA9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584159698221338625\/Z7J_IHA9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:42 +0000 2015","id":663724145625071616,"id_str":"663724145625071616","text":"Google Just Open Sourced TensorFlow, Its Artificial Intelligence Engine: In a dramatic departure, Google is op... https:\/\/t.co\/1mcaDxN7WO","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20607406,"id_str":"20607406","name":"WIRED Feed","screen_name":"WIREDFeed","location":"San Francisco, CA","url":"http:\/\/www.wired.com","description":"Follow this account to get all of http:\/\/WIRED.com's stories as soon as they are published.","protected":false,"verified":false,"followers_count":19972,"friends_count":1,"listed_count":1869,"favourites_count":0,"statuses_count":34824,"created_at":"Wed Feb 11 18:08:26 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/5572253\/bg_wired.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/5572253\/bg_wired.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/94110918\/73x73_wired_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/94110918\/73x73_wired_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1mcaDxN7WO","expanded_url":"http:\/\/bit.ly\/1Sc6hC3","display_url":"bit.ly\/1Sc6hC3","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1mcaDxN7WO","expanded_url":"http:\/\/bit.ly\/1Sc6hC3","display_url":"bit.ly\/1Sc6hC3","indices":[139,140]}],"user_mentions":[{"screen_name":"WIREDFeed","name":"WIRED Feed","id":20607406,"id_str":"20607406","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100661"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164997320705,"id_str":"663728164997320705","text":"RT @httpsignos: pode amar o aquariano de boas mas finja que n\u00e3o ama tanto, pq ele gosta de ficar tipo ''uhuul eu amo alguem q \u00e9 foda pra cr\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3358800022,"id_str":"3358800022","name":"VICKY","screen_name":"NIALL0IRINHO","location":"Pedra Branca,Brasil","url":null,"description":"\u2764\ufe0f","protected":false,"verified":false,"followers_count":1360,"friends_count":1901,"listed_count":1,"favourites_count":10817,"statuses_count":12706,"created_at":"Sat Jul 04 14:54:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663022565103792128\/GSvHyJR5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663022565103792128\/GSvHyJR5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3358800022\/1443274360","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:08:56 +0000 2015","id":663448134161440769,"id_str":"663448134161440769","text":"pode amar o aquariano de boas mas finja que n\u00e3o ama tanto, pq ele gosta de ficar tipo ''uhuul eu amo alguem q \u00e9 foda pra crlh e nao me ama''","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":744119384,"id_str":"744119384","name":".","screen_name":"httpsignos","location":null,"url":"http:\/\/ask.fm\/askhttpsignos","description":"n\u00e3o sou a m\u00e3e din\u00c1H mas to quase l\u00c1H","protected":false,"verified":false,"followers_count":8241,"friends_count":47,"listed_count":15,"favourites_count":1753,"statuses_count":20730,"created_at":"Wed Aug 08 01:06:29 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625022132490211328\/M5eoJFhS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625022132490211328\/M5eoJFhS.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7DA869","profile_text_color":"537D6F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650778929624686592\/JO1HfNRQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650778929624686592\/JO1HfNRQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/744119384\/1440857108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"httpsignos","name":".","id":744119384,"id_str":"744119384","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080100665"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963803138,"id_str":"663728164963803138","text":"RT @Polishpiceofass: \u201c@the1stMe420: Lucky guy! #FreakyFriday @Pantherazzz: Be a BABE hunter. Join the site for FREE today! \n#dupy \/ http:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3140745388,"id_str":"3140745388","name":"shelby67","screen_name":"xxxshelby67xxx","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":468,"friends_count":1407,"listed_count":11,"favourites_count":1304,"statuses_count":4847,"created_at":"Mon Apr 06 15:00:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3140745388\/1430849464","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Apr 03 15:43:26 +0000 2015","id":584018377418678272,"id_str":"584018377418678272","text":"\u201c@the1stMe420: Lucky guy! #FreakyFriday @Pantherazzz: Be a BABE hunter. Join the site for FREE today! \n#dupy \/ http:\/\/t.co\/dUPeXTAJ04\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":583982692779347968,"in_reply_to_status_id_str":"583982692779347968","in_reply_to_user_id":359529660,"in_reply_to_user_id_str":"359529660","in_reply_to_screen_name":"the1stMe420","user":{"id":1363354952,"id_str":"1363354952","name":"PolishpieceofASS 81K","screen_name":"Polishpiceofass","location":"around the world ","url":null,"description":"#polishpieceofass #dupy #polishbusty #polishgirls #Polishpiceofass #polishamateur #cunt #anal #busty #PAWG #TwitterAfterDark","protected":false,"verified":false,"followers_count":79832,"friends_count":1122,"listed_count":350,"favourites_count":35695,"statuses_count":30625,"created_at":"Fri Apr 19 01:58:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/503994228763295745\/xWPkZovj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/503994228763295745\/xWPkZovj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1363354952\/1415229284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":25,"entities":{"hashtags":[{"text":"FreakyFriday","indices":[26,39]},{"text":"dupy","indices":[103,108]}],"urls":[],"user_mentions":[{"screen_name":"the1stMe420","name":"The Breast Inspector","id":359529660,"id_str":"359529660","indices":[1,13]},{"screen_name":"Pantherazzz","name":"Pantera Girls\u2122","id":2408029495,"id_str":"2408029495","indices":[40,52]}],"symbols":[],"media":[{"id":583975652199538688,"id_str":"583975652199538688","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","url":"http:\/\/t.co\/dUPeXTAJ04","display_url":"pic.twitter.com\/dUPeXTAJ04","expanded_url":"http:\/\/twitter.com\/Pantherazzz\/status\/583975653432815618\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":342,"resize":"fit"},"large":{"w":350,"h":342,"resize":"fit"}},"source_status_id":583975653432815618,"source_status_id_str":"583975653432815618","source_user_id":2408029495,"source_user_id_str":"2408029495"}]},"extended_entities":{"media":[{"id":583975652199538688,"id_str":"583975652199538688","indices":[111,133],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","url":"http:\/\/t.co\/dUPeXTAJ04","display_url":"pic.twitter.com\/dUPeXTAJ04","expanded_url":"http:\/\/twitter.com\/Pantherazzz\/status\/583975653432815618\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":342,"resize":"fit"},"large":{"w":350,"h":342,"resize":"fit"}},"source_status_id":583975653432815618,"source_status_id_str":"583975653432815618","source_user_id":2408029495,"source_user_id_str":"2408029495","video_info":{"aspect_ratio":[175,171],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CBqywvrUoAAvmut.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FreakyFriday","indices":[47,60]},{"text":"dupy","indices":[124,129]}],"urls":[],"user_mentions":[{"screen_name":"Polishpiceofass","name":"PolishpieceofASS 81K","id":1363354952,"id_str":"1363354952","indices":[3,19]},{"screen_name":"the1stMe420","name":"The Breast Inspector","id":359529660,"id_str":"359529660","indices":[22,34]},{"screen_name":"Pantherazzz","name":"Pantera Girls\u2122","id":2408029495,"id_str":"2408029495","indices":[61,73]}],"symbols":[],"media":[{"id":583975652199538688,"id_str":"583975652199538688","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","url":"http:\/\/t.co\/dUPeXTAJ04","display_url":"pic.twitter.com\/dUPeXTAJ04","expanded_url":"http:\/\/twitter.com\/Pantherazzz\/status\/583975653432815618\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":342,"resize":"fit"},"large":{"w":350,"h":342,"resize":"fit"}},"source_status_id":583975653432815618,"source_status_id_str":"583975653432815618","source_user_id":2408029495,"source_user_id_str":"2408029495"}]},"extended_entities":{"media":[{"id":583975652199538688,"id_str":"583975652199538688","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CBqywvrUoAAvmut.png","url":"http:\/\/t.co\/dUPeXTAJ04","display_url":"pic.twitter.com\/dUPeXTAJ04","expanded_url":"http:\/\/twitter.com\/Pantherazzz\/status\/583975653432815618\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":342,"resize":"fit"},"large":{"w":350,"h":342,"resize":"fit"}},"source_status_id":583975653432815618,"source_status_id_str":"583975653432815618","source_user_id":2408029495,"source_user_id_str":"2408029495","video_info":{"aspect_ratio":[175,171],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CBqywvrUoAAvmut.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963774465,"id_str":"663728164963774465","text":"Mind on fire cause I bleed petrol @bassnectar \ud83d\udd25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633994391,"id_str":"633994391","name":"Haley McCammon","screen_name":"HeyMACCC","location":null,"url":null,"description":"901\/662 -- good vibes only! @bassnectar followed me on April 18, 2014","protected":false,"verified":false,"followers_count":920,"friends_count":1528,"listed_count":1,"favourites_count":3714,"statuses_count":8551,"created_at":"Thu Jul 12 19:47:28 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/836573556\/948833e429a0301bcb2abe5eb022cdd8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/836573556\/948833e429a0301bcb2abe5eb022cdd8.jpeg","profile_background_tile":true,"profile_link_color":"EB3D91","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581597064926232576\/mMlE8gZS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581597064926232576\/mMlE8gZS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633994391\/1381157893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bassnectar","name":"bassnectar","id":23027648,"id_str":"23027648","indices":[34,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728165001560065,"id_str":"663728165001560065","text":"Domo arigato mr. Roboto.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":240414628,"id_str":"240414628","name":"Hexenweib","screen_name":"RotesDing","location":"Soest","url":null,"description":"KISS-maniac, #TeamHasselhoff, Formel 1, Wrestling, Fu\u00dfball, sarkastisch, ehrlich, augenrollend.","protected":false,"verified":false,"followers_count":664,"friends_count":402,"listed_count":22,"favourites_count":324,"statuses_count":25234,"created_at":"Wed Jan 19 21:47:51 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"DF6060","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/428144888\/x55ac6a038f495c8bdc947c529c427e5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/428144888\/x55ac6a038f495c8bdc947c529c427e5.png","profile_background_tile":true,"profile_link_color":"AF1111","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"030303","profile_text_color":"70656C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504739226206748672\/dgj65Pqe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504739226206748672\/dgj65Pqe_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/240414628\/1366320586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080100666"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963803137,"id_str":"663728164963803137","text":"@LittleBirdie97 you forget I am a Kung fu master","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728065441341440,"in_reply_to_status_id_str":"663728065441341440","in_reply_to_user_id":203630364,"in_reply_to_user_id_str":"203630364","in_reply_to_screen_name":"LittleBirdie97","user":{"id":1154607330,"id_str":"1154607330","name":"'Melia","screen_name":"allpurposes","location":null,"url":null,"description":"Keeper of the Truths","protected":false,"verified":false,"followers_count":772,"friends_count":900,"listed_count":0,"favourites_count":308,"statuses_count":7338,"created_at":"Wed Feb 06 17:35:01 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFA970","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"FFA970","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663028419219873792\/EdSUfT-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663028419219873792\/EdSUfT-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1154607330\/1444045016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LittleBirdie97","name":"Harriet","id":203630364,"id_str":"203630364","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972191748,"id_str":"663728164972191748","text":"(\u0648\u0643\u0627\u0646 \u0641\u064a \u0627\u0644\u0645\u062f\u064a\u0646\u0629 \u062a\u0633\u0639\u0629 \u0631\u0647\u0637 \u064a\u0641\u0633\u062f\u0648\u0646 \u0641\u064a \u0627\u0644\u0623\u0631\u0636 \u0648\u0644\u0627 \u064a\u0635\u0644\u062d\u0648\u0646) [\u0627\u0644\u0646\u0645\u0644:48] http:\/\/qurani .tv","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":453032713,"id_str":"453032713","name":"\u0639\u0628\u062f\u0627\u0644\u0644\u0647 ..\u2667","screen_name":"3boOode9","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"phone:0544114754- snap:abodee23 bbm:5AB60010","protected":false,"verified":false,"followers_count":2573,"friends_count":2862,"listed_count":0,"favourites_count":306,"statuses_count":15476,"created_at":"Mon Jan 02 14:16:46 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658667614047203328\/kKhbO_Zz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658667614047203328\/kKhbO_Zz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/453032713\/1444317696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080100659"} +{"delete":{"status":{"id":621818343889047552,"id_str":"621818343889047552","user_id":3020551910,"user_id_str":"3020551910"},"timestamp_ms":"1447080100665"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972175360,"id_str":"663728164972175360","text":"\u3010 \u8f38\u5165\u30d3\u30fc\u30eb\u3011 #5: \u30b1\u30cb\u30a2\u30fb\u30d6\u30ea\u30e5\u30ef\u30ea\u30fc \u30bf\u30b9\u30ab\u30fc \u74f6 355ml\u00d724\u672c https:\/\/t.co\/ULhTs23pSV \u3000#\u8f38\u5165\u30d3\u30fc\u30eb\u3000#\u9152 \u3000#\u30d3\u30fc\u30eb\u3000#beer","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1471311283,"id_str":"1471311283","name":"\u30d3\u30fc\u30eb\uff08\u304a\u9152\uff09","screen_name":"shop_beer","location":null,"url":null,"description":"\u30d3\u30fc\u30eb\u88fd\u54c1\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\u3000#\u30d3\u30fc\u30eb\u3000#\u9152","protected":false,"verified":false,"followers_count":2073,"friends_count":1916,"listed_count":11,"favourites_count":0,"statuses_count":986234,"created_at":"Fri May 31 04:12:07 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/882216208\/426e87d38bef741b76c52d18bb3cf543.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/882216208\/426e87d38bef741b76c52d18bb3cf543.jpeg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3738100788\/0dd4671f3460b886cd1b5dcfaaeab703_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3738100788\/0dd4671f3460b886cd1b5dcfaaeab703_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1471311283\/1369976683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u8f38\u5165\u30d3\u30fc\u30eb","indices":[66,72]},{"text":"\u9152","indices":[73,75]},{"text":"\u30d3\u30fc\u30eb","indices":[77,81]},{"text":"beer","indices":[82,87]}],"urls":[{"url":"https:\/\/t.co\/ULhTs23pSV","expanded_url":"http:\/\/amzn.to\/1J3TL4e","display_url":"amzn.to\/1J3TL4e","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164988784640,"id_str":"663728164988784640","text":"RT @DepressedDarth: Retweet if you agree https:\/\/t.co\/ahumC4Tpjq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2344926979,"id_str":"2344926979","name":"Honey Badger","screen_name":"MattLegit10","location":null,"url":null,"description":"I am the master of my fate: I am the captain of my soul. #Invictus STL \u2194\ufe0f Louisville","protected":false,"verified":false,"followers_count":860,"friends_count":1997,"listed_count":12,"favourites_count":150738,"statuses_count":38216,"created_at":"Sat Feb 15 10:31:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646919067685752833\/yWvtwPpI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646919067685752833\/yWvtwPpI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2344926979\/1444699420","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:50 +0000 2015","id":663724934980640768,"id_str":"663724934980640768","text":"Retweet if you agree https:\/\/t.co\/ahumC4Tpjq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125122481,"id_str":"125122481","name":"Darth Vader","screen_name":"DepressedDarth","location":"A galaxy far, far away ","url":"http:\/\/instagram.com\/depressed_darth","description":"I am your father. Not associated with Disney. Contact: DepressedDarth@gmail.com","protected":false,"verified":false,"followers_count":655257,"friends_count":128,"listed_count":6022,"favourites_count":265,"statuses_count":32982,"created_at":"Sun Mar 21 19:30:01 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/159392981\/photo__2_.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/159392981\/photo__2_.JPG","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1125323984\/darthvader_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1125323984\/darthvader_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125122481\/1398557177","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":266,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724929532071936,"id_str":"663724929532071936","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","url":"https:\/\/t.co\/ahumC4Tpjq","display_url":"pic.twitter.com\/ahumC4Tpjq","expanded_url":"http:\/\/twitter.com\/DepressedDarth\/status\/663724934980640768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":319,"resize":"fit"},"medium":{"w":490,"h":461,"resize":"fit"},"large":{"w":490,"h":461,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724929532071936,"id_str":"663724929532071936","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","url":"https:\/\/t.co\/ahumC4Tpjq","display_url":"pic.twitter.com\/ahumC4Tpjq","expanded_url":"http:\/\/twitter.com\/DepressedDarth\/status\/663724934980640768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":319,"resize":"fit"},"medium":{"w":490,"h":461,"resize":"fit"},"large":{"w":490,"h":461,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DepressedDarth","name":"Darth Vader","id":125122481,"id_str":"125122481","indices":[3,18]}],"symbols":[],"media":[{"id":663724929532071936,"id_str":"663724929532071936","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","url":"https:\/\/t.co\/ahumC4Tpjq","display_url":"pic.twitter.com\/ahumC4Tpjq","expanded_url":"http:\/\/twitter.com\/DepressedDarth\/status\/663724934980640768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":319,"resize":"fit"},"medium":{"w":490,"h":461,"resize":"fit"},"large":{"w":490,"h":461,"resize":"fit"}},"source_status_id":663724934980640768,"source_status_id_str":"663724934980640768","source_user_id":125122481,"source_user_id_str":"125122481"}]},"extended_entities":{"media":[{"id":663724929532071936,"id_str":"663724929532071936","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGTo1UkAAzY3i.jpg","url":"https:\/\/t.co\/ahumC4Tpjq","display_url":"pic.twitter.com\/ahumC4Tpjq","expanded_url":"http:\/\/twitter.com\/DepressedDarth\/status\/663724934980640768\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":319,"resize":"fit"},"medium":{"w":490,"h":461,"resize":"fit"},"large":{"w":490,"h":461,"resize":"fit"}},"source_status_id":663724934980640768,"source_status_id_str":"663724934980640768","source_user_id":125122481,"source_user_id_str":"125122481"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100663"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164993126400,"id_str":"663728164993126400","text":"RT @TopAchat: #ConcoursExpress\n\nFallout 4 \u00e0 gagner !\n\nPour jouer, c'est tr\u00e8s simple :\nRT & Follow @TopAchat ^^ https:\/\/t.co\/1TuANwa6Ys","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2660326458,"id_str":"2660326458","name":"Vigouze","screen_name":"DidierTordier","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":94,"listed_count":0,"favourites_count":8,"statuses_count":183,"created_at":"Sat Jul 19 19:38:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"128A50","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530775282332868608\/ToDEEaT4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530775282332868608\/ToDEEaT4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2660326458\/1436303165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:53 +0000 2015","id":663727213490106368,"id_str":"663727213490106368","text":"#ConcoursExpress\n\nFallout 4 \u00e0 gagner !\n\nPour jouer, c'est tr\u00e8s simple :\nRT & Follow @TopAchat ^^ https:\/\/t.co\/1TuANwa6Ys","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106355755,"id_str":"106355755","name":"TopAchat","screen_name":"TopAchat","location":"France","url":"http:\/\/www.topachat.com","description":"Epicier du #Geek depuis 1999 ! Grosse commande \u00e0 passer ? #codepromo \u00e0 la demande. Sinon, conseils techniques H24 :-)","protected":false,"verified":true,"followers_count":184089,"friends_count":4681,"listed_count":322,"favourites_count":7644,"statuses_count":124897,"created_at":"Tue Jan 19 08:42:47 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553466377198006273\/N7JHeyhI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553466377198006273\/N7JHeyhI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106355755\/1409234379","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":398,"favorite_count":32,"entities":{"hashtags":[{"text":"ConcoursExpress","indices":[0,16]}],"urls":[],"user_mentions":[{"screen_name":"TopAchat","name":"TopAchat","id":106355755,"id_str":"106355755","indices":[88,97]}],"symbols":[],"media":[{"id":663727112700981248,"id_str":"663727112700981248","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","url":"https:\/\/t.co\/1TuANwa6Ys","display_url":"pic.twitter.com\/1TuANwa6Ys","expanded_url":"http:\/\/twitter.com\/TopAchat\/status\/663727213490106368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727112700981248,"id_str":"663727112700981248","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","url":"https:\/\/t.co\/1TuANwa6Ys","display_url":"pic.twitter.com\/1TuANwa6Ys","expanded_url":"http:\/\/twitter.com\/TopAchat\/status\/663727213490106368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ConcoursExpress","indices":[14,30]}],"urls":[],"user_mentions":[{"screen_name":"TopAchat","name":"TopAchat","id":106355755,"id_str":"106355755","indices":[3,12]},{"screen_name":"TopAchat","name":"TopAchat","id":106355755,"id_str":"106355755","indices":[102,111]}],"symbols":[],"media":[{"id":663727112700981248,"id_str":"663727112700981248","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","url":"https:\/\/t.co\/1TuANwa6Ys","display_url":"pic.twitter.com\/1TuANwa6Ys","expanded_url":"http:\/\/twitter.com\/TopAchat\/status\/663727213490106368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727213490106368,"source_status_id_str":"663727213490106368","source_user_id":106355755,"source_user_id_str":"106355755"}]},"extended_entities":{"media":[{"id":663727112700981248,"id_str":"663727112700981248","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIStxWcAA7mTb.jpg","url":"https:\/\/t.co\/1TuANwa6Ys","display_url":"pic.twitter.com\/1TuANwa6Ys","expanded_url":"http:\/\/twitter.com\/TopAchat\/status\/663727213490106368\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727213490106368,"source_status_id_str":"663727213490106368","source_user_id":106355755,"source_user_id_str":"106355755"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080100664"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164980391936,"id_str":"663728164980391936","text":"@keiki22 \u3053\u3093\u3070\u3093\u306f\u3002\u672c\u65e5\u592a\u90ce\u3055\u3093\u306e\u540d\u53e4\u5c4b\u8857\u982d\u8a18\u8005\u4f1a\u898b\u7d42\u4e86\u5f8c\u58f0\u3092\u304b\u3051\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u305f\u8005\u3067\u3059\u3002\u3053\u308c\u304b\u3089\u3082\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u3000^ \u25e1 ^","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":102270151,"in_reply_to_user_id_str":"102270151","in_reply_to_screen_name":"keiki22","user":{"id":189806643,"id_str":"189806643","name":"\u6cc9\u8218\u670b\u5b50","screen_name":"tomspring","location":"\u611b\u77e5\u770c","url":"http:\/\/www.hearts-words.jp","description":"\u65e5\u3005\u3044\u308d\u3093\u306a\u3053\u3068\u3092\u8003\u3048\u3001\u8a69\u3084\u6587\u7ae0\u3001\u7d75\u3092\u304b\u3044\u3066\u3044\u307e\u3059\u3002HP\u3054\u89a7\u304f\u3060\u3055\u3044\u3002\u8a69\u96c6\u300c\u9769\u547d\u7684\u30ed\u30de\u30f3\u4e3b\u7fa9\u300d\u307b\u304b\u30022011\u798f\u5cf6\u539f\u767a\u4e8b\u6545\u3092\u304d\u3063\u304b\u3051\u306b\u3001\u6226\u5f8c\u4e16\u754c\u306e\u88cf\u5074\u304c\u9732\u5448\uff01\u3000\u65e5\u672c\u306f\u7c73\u304b\u3089\u72ec\u7acb\u3092\uff01\u3000#\u798f\u5cf6\u3000#NoWar\u3000#NoNukes\u3000#\u53cd\u683c\u5dee\u3000\u904e\u53bb\u30ed\u30b0\u3000http:\/\/twilog.org\/tomspring","protected":false,"verified":false,"followers_count":881,"friends_count":417,"listed_count":37,"favourites_count":4959,"statuses_count":63708,"created_at":"Sun Sep 12 08:08:25 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"036C99","profile_sidebar_border_color":"FFFFFA","profile_sidebar_fill_color":"83FF70","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2354338411\/wm9o00sb2p4lv25o1bic_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2354338411\/wm9o00sb2p4lv25o1bic_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189806643\/1445156512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"keiki22","name":"\u6a2a\u5ddd\u572d\u5e0c","id":102270151,"id_str":"102270151","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100661"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164997357569,"id_str":"663728164997357569","text":"RT @An_141: - https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1679384492,"id_str":"1679384492","name":"Msh3L#H24","screen_name":"Msh3L_NFC","location":null,"url":"http:\/\/tvquran.com","description":"\u200f\u200f\u200f\u0627\u0644\u0646\u0635\u0631..\u0648\u0643\u0641\u06cc \u0628\u0630\u0644\u0643 \u0646\u0639\u064a\u0645\u0627\u064b.","protected":false,"verified":false,"followers_count":180,"friends_count":117,"listed_count":0,"favourites_count":200,"statuses_count":9445,"created_at":"Sat Aug 17 23:39:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659323804838154240\/ZLK9laer_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659323804838154240\/ZLK9laer_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1679384492\/1444901619","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:58 +0000 2015","id":663727486031822848,"id_str":"663727486031822848","text":"- https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577121968,"id_str":"577121968","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","screen_name":"An_141","location":"Riyadh","url":"http:\/\/ask.fm\/iAn141","description":"\u0623\u062e\u0628\u062b \u0645\u0645\u0627 \u062a\u0638\u064f\u0646\u060c \u0648\u0623\u0641\u0636\u0644 \u0645\u0645\u0627 \u062a\u062a\u0648\u0642\u0639 SnapChat\/Kik : An_141 \u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a : ads.an141@gmail.com","protected":false,"verified":false,"followers_count":179881,"friends_count":398,"listed_count":332,"favourites_count":967,"statuses_count":28930,"created_at":"Fri May 11 13:04:40 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577121968\/1445965875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":238,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727458366136320,"id_str":"663727458366136320","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}}},{"id":663727458680729601,"id_str":"663727458680729601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663727458806575104,"id_str":"663727458806575104","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[3,10]}],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458366136320,"id_str":"663727458366136320","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458680729601,"id_str":"663727458680729601","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458806575104,"id_str":"663727458806575104","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080100665"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728165001560064,"id_str":"663728165001560064","text":"@CartilageRepair Discounts for college and uni students in the South West! https:\/\/t.co\/pYSGNV6z7x","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":203110283,"in_reply_to_user_id_str":"203110283","in_reply_to_screen_name":"CartilageRepair","user":{"id":200465599,"id_str":"200465599","name":"Joel Green","screen_name":"Joel_Green2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":220,"listed_count":1,"favourites_count":0,"statuses_count":706,"created_at":"Sat Oct 09 11:11:05 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608219707246833664\/uZijhxq9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608219707246833664\/uZijhxq9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200465599\/1433845834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pYSGNV6z7x","expanded_url":"http:\/\/bit.ly\/SWStudent","display_url":"bit.ly\/SWStudent","indices":[75,98]}],"user_mentions":[{"screen_name":"CartilageRepair","name":"ICRS ","id":203110283,"id_str":"203110283","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100666"} +{"delete":{"status":{"id":661166221165883394,"id_str":"661166221165883394","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080100758"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164984635392,"id_str":"663728164984635392","text":"@thatfishguy1 thanks buddy - best of luck and happy tweeting!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727669733928960,"in_reply_to_status_id_str":"663727669733928960","in_reply_to_user_id":4149302003,"in_reply_to_user_id_str":"4149302003","in_reply_to_screen_name":"thatfishguy1","user":{"id":3420311194,"id_str":"3420311194","name":"Hello My Name Is Dad","screen_name":"MyNameIsDadBlog","location":"Toronto, Ontario","url":"http:\/\/www.hellomynameisdad.com","description":"A parenting site for Dads, by a Dad; Keeping Dads informed about all things baby with a side of men's health, fatherhood, and any other relevant daddy things.","protected":false,"verified":false,"followers_count":1212,"friends_count":1770,"listed_count":43,"favourites_count":500,"statuses_count":2553,"created_at":"Thu Aug 13 14:40:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631978446005006336\/ko8KI4jz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631978446005006336\/ko8KI4jz.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631976639740514304\/Iz2w9zVx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631976639740514304\/Iz2w9zVx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3420311194\/1439509897","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thatfishguy1","name":"That Fish Guy","id":4149302003,"id_str":"4149302003","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100662"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164997357568,"id_str":"663728164997357568","text":"RT @TheOddsBible: Roberto Carlos didn't abide by the laws of physics. https:\/\/t.co\/ZDazQl2oRE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":448391135,"id_str":"448391135","name":"Brandon Eduardo","screen_name":"_BC3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":323,"listed_count":0,"favourites_count":932,"statuses_count":1330,"created_at":"Tue Dec 27 23:28:07 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463700912079245312\/daeEuHaz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463700912079245312\/daeEuHaz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/448391135\/1402751592","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:55 +0000 2015","id":663710361246396417,"id_str":"663710361246396417","text":"Roberto Carlos didn't abide by the laws of physics. https:\/\/t.co\/ZDazQl2oRE","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":458638776,"id_str":"458638776","name":"TheODDSbible","screen_name":"TheOddsBible","location":"UK","url":"http:\/\/www.theoddsbible.com","description":"The official ODDSbible. Followers must be 18+.","protected":false,"verified":false,"followers_count":632834,"friends_count":206,"listed_count":1793,"favourites_count":1199,"statuses_count":15708,"created_at":"Sun Jan 08 19:52:38 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661506978364133376\/QQ6pTnki_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661506978364133376\/QQ6pTnki_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458638776\/1444838847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":103,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZDazQl2oRE","expanded_url":"https:\/\/vine.co\/v\/MVVdhQtgL37","display_url":"vine.co\/v\/MVVdhQtgL37","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZDazQl2oRE","expanded_url":"https:\/\/vine.co\/v\/MVVdhQtgL37","display_url":"vine.co\/v\/MVVdhQtgL37","indices":[70,93]}],"user_mentions":[{"screen_name":"TheOddsBible","name":"TheODDSbible","id":458638776,"id_str":"458638776","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100665"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972048384,"id_str":"663728164972048384","text":"RT @AAAparty777M: Nissy\u96c6\ud83e\udd17\ud83d\udc95\n\n#AAA #nissy #\u597d\u304d\u306a\u66f2\u3042\u308b\u4ebaRT #AAA\u304c\u5927\u597d\u304d\u306a\u4ebaRT https:\/\/t.co\/m0ARCmzBdH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2821942952,"id_str":"2821942952","name":"\u8ff7\u3044","screen_name":"kurumisa1871","location":null,"url":null,"description":"AAA\u5fdc\u63f4\u968a\u4f1a\u54e1 No.574","protected":false,"verified":false,"followers_count":84,"friends_count":120,"listed_count":0,"favourites_count":398,"statuses_count":171,"created_at":"Sat Sep 20 13:48:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640996628342534148\/6bOjUv_x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640996628342534148\/6bOjUv_x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2821942952\/1446102340","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:49:06 +0000 2015","id":663669636794220544,"id_str":"663669636794220544","text":"Nissy\u96c6\ud83e\udd17\ud83d\udc95\n\n#AAA #nissy #\u597d\u304d\u306a\u66f2\u3042\u308b\u4ebaRT #AAA\u304c\u5927\u597d\u304d\u306a\u4ebaRT https:\/\/t.co\/m0ARCmzBdH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187631395,"id_str":"3187631395","name":"M\u2764\ufe0e","screen_name":"AAAparty777M","location":"AAA\u3067\u982d\u304c\u3044\u3063\u3071\u3044JK\u25cbo\uff61+..:*","url":null,"description":"\u300a\u266a\uff9f+AAA\u304c\u30c0\u30a4\u30b9\u30ad+\uff9f\u266a\uff9f\u300b99line\u2764\ufe0e\u2606\uff9f+o\uff61\u2764\ufe0e\u3008Nissy\/\u897f\u5cf6\u9686\u5f18\u3009o+\uff9f\u2606\uff9f\u3008\u4f0a\u85e4\u5343\u6643\/\u5c0a\u656c\u2733\ufe0e\u61a7\u308c\u2733\ufe0e\u3009#AAA #\u306b\u3057\u3061\u3042","protected":false,"verified":false,"followers_count":791,"friends_count":779,"listed_count":0,"favourites_count":1,"statuses_count":41,"created_at":"Thu May 07 11:22:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649889566644563968\/w3K1g5Gu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649889566644563968\/w3K1g5Gu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187631395\/1446903880","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":35,"entities":{"hashtags":[{"text":"AAA","indices":[10,14]},{"text":"nissy","indices":[15,21]},{"text":"\u597d\u304d\u306a\u66f2\u3042\u308b\u4ebaRT","indices":[23,33]},{"text":"AAA\u304c\u5927\u597d\u304d\u306a\u4ebaRT","indices":[34,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663669569530105856,"id_str":"663669569530105856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","url":"https:\/\/t.co\/m0ARCmzBdH","display_url":"pic.twitter.com\/m0ARCmzBdH","expanded_url":"http:\/\/twitter.com\/AAAparty777M\/status\/663669636794220544\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663669569530105856,"id_str":"663669569530105856","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","url":"https:\/\/t.co\/m0ARCmzBdH","display_url":"pic.twitter.com\/m0ARCmzBdH","expanded_url":"http:\/\/twitter.com\/AAAparty777M\/status\/663669636794220544\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"video_info":{"aspect_ratio":[3,2],"duration_millis":29400,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/540x360\/zpgjTvUtLz5PkCl4.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/pl\/0kzhCMhF3NYWgOXe.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/1080x720\/jUQoWdXuO-iU9ah3.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/540x360\/zpgjTvUtLz5PkCl4.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/270x180\/syRWOva2v7Jj_iE0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/pl\/0kzhCMhF3NYWgOXe.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AAA","indices":[28,32]},{"text":"nissy","indices":[33,39]},{"text":"\u597d\u304d\u306a\u66f2\u3042\u308b\u4ebaRT","indices":[41,51]},{"text":"AAA\u304c\u5927\u597d\u304d\u306a\u4ebaRT","indices":[52,64]}],"urls":[],"user_mentions":[{"screen_name":"AAAparty777M","name":"M\u2764\ufe0e","id":3187631395,"id_str":"3187631395","indices":[3,16]}],"symbols":[],"media":[{"id":663669569530105856,"id_str":"663669569530105856","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","url":"https:\/\/t.co\/m0ARCmzBdH","display_url":"pic.twitter.com\/m0ARCmzBdH","expanded_url":"http:\/\/twitter.com\/AAAparty777M\/status\/663669636794220544\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663669636794220544,"source_status_id_str":"663669636794220544","source_user_id":3187631395,"source_user_id_str":"3187631395"}]},"extended_entities":{"media":[{"id":663669569530105856,"id_str":"663669569530105856","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663669569530105856\/pu\/img\/VzkAFqBlMg_QpWHT.jpg","url":"https:\/\/t.co\/m0ARCmzBdH","display_url":"pic.twitter.com\/m0ARCmzBdH","expanded_url":"http:\/\/twitter.com\/AAAparty777M\/status\/663669636794220544\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663669636794220544,"source_status_id_str":"663669636794220544","source_user_id":3187631395,"source_user_id_str":"3187631395","video_info":{"aspect_ratio":[3,2],"duration_millis":29400,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/540x360\/zpgjTvUtLz5PkCl4.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/pl\/0kzhCMhF3NYWgOXe.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/1080x720\/jUQoWdXuO-iU9ah3.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/540x360\/zpgjTvUtLz5PkCl4.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/vid\/270x180\/syRWOva2v7Jj_iE0.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663669569530105856\/pu\/pl\/0kzhCMhF3NYWgOXe.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963774464,"id_str":"663728164963774464","text":"Evet sorun bende de\u011fil sende\ud83d\ude06","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3121114343,"id_str":"3121114343","name":"Fatma","screen_name":"delikzderlr","location":null,"url":null,"description":"09\/17\/2015","protected":false,"verified":false,"followers_count":331,"friends_count":255,"listed_count":1,"favourites_count":184,"statuses_count":80,"created_at":"Fri Mar 27 11:44:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648415375890227200\/yTDLIe1B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648415375890227200\/yTDLIe1B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3121114343\/1444048983","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963680256,"id_str":"663728164963680256","text":"they say family before anything but my family sucks so imma just put myself first ya feel","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":447636186,"id_str":"447636186","name":"scarlett west","screen_name":"sxarlett_","location":"indiana","url":null,"description":"keep it up","protected":false,"verified":false,"followers_count":992,"friends_count":1054,"listed_count":2,"favourites_count":24704,"statuses_count":21239,"created_at":"Tue Dec 27 03:34:27 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662460571468619776\/b_SgY_61_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662460571468619776\/b_SgY_61_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/447636186\/1446777882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"2037586e46d4bbca","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2037586e46d4bbca.json","place_type":"city","name":"Shelbyville","full_name":"Shelbyville, IN","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-85.808882,39.485252],[-85.808882,39.569021],[-85.737081,39.569021],[-85.737081,39.485252]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972003328,"id_str":"663728164972003328","text":"\uce58\ub9c8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2351534318,"id_str":"2351534318","name":"\uacf5\uc2dd\uc801\uc73c\ub85c \uadc0\uc5ec\uc6b4 \ub2e8\ubbf8","screen_name":"ABCDanmi","location":"\ud504\uc0ac\ub294 \u3137\u3154\u3141\u3163","url":null,"description":"\ub7ab\uc11c\ubcc0\ud0dc \ub108\ub3c4 \ub098\ub3c4 FUB \ud504\ub9ac \ud314\ub85c\ud558\uba74 \uc120\uba58\uc880","protected":false,"verified":false,"followers_count":211,"friends_count":418,"listed_count":2,"favourites_count":3794,"statuses_count":83506,"created_at":"Wed Feb 19 11:20:13 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657865404077879296\/5jzZaY0U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657865404077879296\/5jzZaY0U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2351534318\/1445682308","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164997206016,"id_str":"663728164997206016","text":"RT @hi_euh: \u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc544\ub2c8 \uc65c \uc8c4\ub2e4 \ub3d9\uc131\uc560\uc790\ub97c \ucde8\uc7ac\ud560 \ub54c \uac8c\uc774 \ucc1c\ubc29\uc744 \uac00\uace0 \uac8c\uc774 \ud074\ub7fd\uc744 \uac00\uc138\uc694? \uc774\uc131\uc560\uc790\uc5d0 \ub300\ud574 \ucde8\uc7ac\ud560 \ub54c \ube61\ucd0c\uac00\uace0 \ud074\ub7fd \uac00\uc2dc\ub098\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3108221755,"id_str":"3108221755","name":"SENBEN","screen_name":"dldducp","location":"\ud30c\ub2e5\ud30c\ub2e5 \uc9d1\uc5d0 \uac00\uace0 \uc2f6\uc5b4\uc698","url":"https:\/\/m.ask.fm\/Pongstar","description":"20\u2191\/\uc0ac\uc774\ud37c\uc988,\uc8e0\uc8e0,\uc790\uce90\uc704\uc8fc\ub85c \uc7a1\ub2e4\ud558\uac8c\ud30c\ub294 \uc62c\ub77c\uc6b4\ub354\/FUB free\/ @Commission_Pong","protected":false,"verified":false,"followers_count":371,"friends_count":971,"listed_count":3,"favourites_count":4441,"statuses_count":50916,"created_at":"Thu Mar 26 10:04:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663438926019850240\/oRqrIoT9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663438926019850240\/oRqrIoT9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3108221755\/1447011139","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:38:03 +0000 2015","id":663681957277003776,"id_str":"663681957277003776","text":"\u314b\u314b\u314b\u314b\u314b\u314b\u314b\uc544\ub2c8 \uc65c \uc8c4\ub2e4 \ub3d9\uc131\uc560\uc790\ub97c \ucde8\uc7ac\ud560 \ub54c \uac8c\uc774 \ucc1c\ubc29\uc744 \uac00\uace0 \uac8c\uc774 \ud074\ub7fd\uc744 \uac00\uc138\uc694? \uc774\uc131\uc560\uc790\uc5d0 \ub300\ud574 \ucde8\uc7ac\ud560 \ub54c \ube61\ucd0c\uac00\uace0 \ud074\ub7fd \uac00\uc2dc\ub098\uc694?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2996129888,"id_str":"2996129888","name":"\ud5e8\uc9c4","screen_name":"hi_euh","location":null,"url":null,"description":"\uc544\uc774..\uc11c\uc6b8....\uc720..","protected":false,"verified":false,"followers_count":341,"friends_count":231,"listed_count":2,"favourites_count":6053,"statuses_count":13036,"created_at":"Sun Jan 25 18:13:54 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655406560798113792\/4cVJzKMf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655406560798113792\/4cVJzKMf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2996129888\/1445707461","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1633,"favorite_count":125,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hi_euh","name":"\ud5e8\uc9c4","id":2996129888,"id_str":"2996129888","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080100665"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164967837696,"id_str":"663728164967837696","text":"Still mad as fuck at that Cowboys game last night","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3022388398,"id_str":"3022388398","name":"Smacktus Jefe","screen_name":"_whitewomenlova","location":"Providence \u2708\ufe0fChicago ","url":"http:\/\/www.Smacktus.com","description":"I was the 1 keeping it real when they was faking ...... #teamSmacktus #FerrellBoys #LooneyCartel","protected":false,"verified":false,"followers_count":689,"friends_count":642,"listed_count":1,"favourites_count":2754,"statuses_count":38721,"created_at":"Fri Feb 06 22:59:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662773005563490304\/d5kOincE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662773005563490304\/d5kOincE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3022388398\/1446836328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100658"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164980396032,"id_str":"663728164980396032","text":"RT @Factsionary: Remember the five simple rules to be happy:\n\nFree your heart from hatred.\nFree your mind from worries.\nLive simply.\nGive m\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2991527896,"id_str":"2991527896","name":"Terese","screen_name":"teresekaram","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":59,"listed_count":1,"favourites_count":2550,"statuses_count":2954,"created_at":"Thu Jan 22 05:16:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659149063988772864\/GDnCVmyb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659149063988772864\/GDnCVmyb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 28 00:07:32 +0000 2015","id":648287892104544256,"id_str":"648287892104544256","text":"Remember the five simple rules to be happy:\n\nFree your heart from hatred.\nFree your mind from worries.\nLive simply.\nGive more.\nExpect less.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":43042353,"id_str":"43042353","name":"Psychological Facts","screen_name":"Factsionary","location":"Worldwide ","url":null,"description":"Tweeting Psychological and random facts daily. Learn something new every day! For inquiries or suggestions: factsionary@live.com","protected":false,"verified":false,"followers_count":3146555,"friends_count":413,"listed_count":6332,"favourites_count":1836,"statuses_count":27527,"created_at":"Thu May 28 03:57:02 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8F878F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/727699080\/ea1b43c70635b0faceac935f405a304d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/727699080\/ea1b43c70635b0faceac935f405a304d.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559340095661027328\/zsJYpnH8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559340095661027328\/zsJYpnH8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/43042353\/1422218098","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6316,"favorite_count":4947,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Factsionary","name":"Psychological Facts","id":43042353,"id_str":"43042353","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100661"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164980436992,"id_str":"663728164980436992","text":"RT @gunwithwings: \u30bb\u30fc\u30d5\u30c6\u30a3\u3067\u30b0\u30ed\u30fc\u30d6\u306e\u7247\u5272\u308c\u304c\u306a\u304f\u306a\u308a\u3001\u8d85\u5fc5\u6b7b\u306b\u63a2\u3059\u4ffa\u3002 http:\/\/t.co\/A0RWEdrLD0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1380917767,"id_str":"1380917767","name":"Ng-chan\u2605666\u2605","screen_name":"0221Mw3","location":null,"url":null,"description":"\u30a2\u30cb\u30e1 \u30b5\u30d0\u30b2 \u8eca \u30d0\u30a4\u30af \u30b2\u30fc\u30e0(FPS\u7cfb) \u306a\u3069\u591a\u8da3\u5473\u3067\u3059\u3002\u9ed2\u91d1\u306eCB\u306b\u8336\u8272\u306e\u30bf\u30c3\u30af\u30ed\u30fc\u30eb\u4ed8\u3051\u3066\u305f\u3089\u4ffa\u3067\u3059www\u3069\u3053\u304b\u3067\u898b\u304b\u3051\u305f\u3089\u558b\u308a\u304b\u3051\u3066\u304f\u3060\u3055\u3044ww","protected":false,"verified":false,"followers_count":286,"friends_count":390,"listed_count":0,"favourites_count":1016,"statuses_count":4324,"created_at":"Fri Apr 26 02:40:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654497095575932928\/WCrlFhnn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654497095575932928\/WCrlFhnn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1380917767\/1434536540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Jun 30 11:23:51 +0000 2013","id":351300039131422720,"id_str":"351300039131422720","text":"\u30bb\u30fc\u30d5\u30c6\u30a3\u3067\u30b0\u30ed\u30fc\u30d6\u306e\u7247\u5272\u308c\u304c\u306a\u304f\u306a\u308a\u3001\u8d85\u5fc5\u6b7b\u306b\u63a2\u3059\u4ffa\u3002 http:\/\/t.co\/A0RWEdrLD0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166202372,"id_str":"166202372","name":"PJ\uff20\u4e8c\u65e5\u76ee\u6771L22a","screen_name":"gunwithwings","location":null,"url":"http:\/\/gunwithwings.blog.fc2.com\/","description":"\u7a7a\u304b\u3089\u6226\u5834\u306b\u98db\u3073\u964d\u308a\u308b\u30a2\u30e1\u30ea\u30ab\u7a7a\u8ecd\u306e\u30d1\u30e9\u30b8\u30e3\u30f3\u30d1\u30fc\u9054\u306e\u88c5\u5099\u3067\u30b5\u30d0\u30b2\u30fc\u3084\u3063\u3066\u307e\u3059\u3002\u8a71\u984c\u306f\u30df\u30ea\u30bf\u30ea\u30fc\u304c\u30e1\u30a4\u30f3\u3067\u3059\u304c\u3001\u304b\u306a\u308a\u96d1\u591a\u306a\u3053\u3068\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u306e\u3067\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u3002\u8a73\u7d30\u306f\u30d6\u30ed\u30b0\u3067\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":3126,"friends_count":441,"listed_count":84,"favourites_count":48240,"statuses_count":174097,"created_at":"Tue Jul 13 15:53:00 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/323179159\/twitter_bg_starter_kit.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/323179159\/twitter_bg_starter_kit.jpg","profile_background_tile":true,"profile_link_color":"3C8080","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546705046272897024\/nA4zP10-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546705046272897024\/nA4zP10-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166202372\/1401193154","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":132,"favorite_count":77,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":351300039139811328,"id_str":"351300039139811328","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","url":"http:\/\/t.co\/A0RWEdrLD0","display_url":"pic.twitter.com\/A0RWEdrLD0","expanded_url":"http:\/\/twitter.com\/gunwithwings\/status\/351300039131422720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":800,"h":1204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":902,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":351300039139811328,"id_str":"351300039139811328","indices":[29,51],"media_url":"http:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","url":"http:\/\/t.co\/A0RWEdrLD0","display_url":"pic.twitter.com\/A0RWEdrLD0","expanded_url":"http:\/\/twitter.com\/gunwithwings\/status\/351300039131422720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":800,"h":1204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":902,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gunwithwings","name":"PJ\uff20\u4e8c\u65e5\u76ee\u6771L22a","id":166202372,"id_str":"166202372","indices":[3,16]}],"symbols":[],"media":[{"id":351300039139811328,"id_str":"351300039139811328","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","url":"http:\/\/t.co\/A0RWEdrLD0","display_url":"pic.twitter.com\/A0RWEdrLD0","expanded_url":"http:\/\/twitter.com\/gunwithwings\/status\/351300039131422720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":800,"h":1204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":902,"resize":"fit"}},"source_status_id":351300039131422720,"source_status_id_str":"351300039131422720","source_user_id":166202372,"source_user_id_str":"166202372"}]},"extended_entities":{"media":[{"id":351300039139811328,"id_str":"351300039139811328","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BOARhjqCYAAi1-9.jpg","url":"http:\/\/t.co\/A0RWEdrLD0","display_url":"pic.twitter.com\/A0RWEdrLD0","expanded_url":"http:\/\/twitter.com\/gunwithwings\/status\/351300039131422720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":800,"h":1204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":902,"resize":"fit"}},"source_status_id":351300039131422720,"source_status_id_str":"351300039131422720","source_user_id":166202372,"source_user_id_str":"166202372"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100661"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728165001367553,"id_str":"663728165001367553","text":"Semua mapel buat hari besok ada ulangan harian smua. Mantappp. Mantappp!!! Kzl []","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3006641192,"id_str":"3006641192","name":"kinaw \u2728","screen_name":"snawny94","location":"\u0394NUFAMS.F\u0394VOR.HVPLA.SHUECOT","url":null,"description":"SonNaeun \u00a91994 || @jjyrock89__'s \u2764 || #CAGANSQ #yeojasxq","protected":false,"verified":false,"followers_count":1308,"friends_count":1314,"listed_count":6,"favourites_count":196,"statuses_count":7584,"created_at":"Sun Feb 01 12:51:49 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660850568739450880\/fUQ1yrw7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660850568739450880\/fUQ1yrw7_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080100666"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728165001433088,"id_str":"663728165001433088","text":"RT @EXO_HBK: \u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2249579012,"id_str":"2249579012","name":"Kim K","screen_name":"2Googg","location":null,"url":null,"description":"Rythmic gymnastic thailand 1998. \uc0ac\ub791\ud558\uc790 EXO Minseokky Jongin LM @aagban IKON ~ (^\u25cb^)","protected":false,"verified":false,"followers_count":83,"friends_count":1581,"listed_count":1,"favourites_count":446,"statuses_count":8883,"created_at":"Tue Dec 17 01:10:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652017121514291200\/7ZGw1OxA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652017121514291200\/7ZGw1OxA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2249579012\/1446461829","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:46 +0000 2015","id":663727181541998593,"id_str":"663727181541998593","text":"\u0e2a\u0e23\u0e38\u0e1b\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e41\u0e2e\u0e0a\u0e41\u0e17\u0e47\u0e01\u0e43\u0e0a\u0e48\u0e44\u0e2b\u0e21 #EXO \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47 #CALLMEBABY \u0e41\u0e25\u0e49\u0e27\u0e01\u0e47\u0e15\u0e49\u0e2d\u0e07\u0e15\u0e34\u0e14\u0e41\u0e17\u0e47\u0e01\u0e07\u0e32\u0e19 #MAMA2015 \u0e17\u0e35\u0e48\u0e2a\u0e33\u0e04\u0e31\u0e0d\u0e40\u0e21\u0e19\u0e0a\u0e31\u0e48\u0e19\u0e16\u0e36\u0e07 @MnetMAMA \u0e14\u0e49\u0e27\u0e22 \u0e2d\u0e22\u0e48\u0e32\u0e25\u0e37\u0e21\u0e08\u0e49\u0e32 \u0e04\u0e36\u0e04\u0e36","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":484958528,"id_str":"484958528","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","screen_name":"EXO_HBK","location":"EXO planet & EXO-L(\u2665ve)","url":"http:\/\/weibo.com\/u\/3862715569","description":"\u2665 EXO is mine \u2665 Sehun is my precious boy \u2665 Suho is the best leader \u2665 K+L+M = ONE \u2665 Always be with you till the time ends \u2665 Meeting U is best luck \u2665 FLT \u2665 \u3147\u3145\u3147","protected":false,"verified":false,"followers_count":16859,"friends_count":1047,"listed_count":10,"favourites_count":59927,"statuses_count":202473,"created_at":"Mon Feb 06 17:42:34 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000134893165\/Re3KoxKg.jpeg","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661578700190691328\/s77QMbtB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/484958528\/1444061758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":171,"favorite_count":9,"entities":{"hashtags":[{"text":"EXO","indices":[30,34]},{"text":"CALLMEBABY","indices":[42,53]},{"text":"MAMA2015","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[104,113]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[43,47]},{"text":"CALLMEBABY","indices":[55,66]},{"text":"MAMA2015","indices":[88,97]}],"urls":[],"user_mentions":[{"screen_name":"EXO_HBK","name":"\u2665\uc138\ud6c8\ud1a0\ub780 '\u3145' #TeamEXO\u2665","id":484958528,"id_str":"484958528","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[117,126]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080100666"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972208128,"id_str":"663728164972208128","text":"RT @signoseternos: Os signos mais incompreendidos: g\u00eameos, escorpi\u00e3o, touro, virgem, aqu\u00e1rio, c\u00e2ncer e Sagit\u00e1rio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":367412891,"id_str":"367412891","name":"Julia '","screen_name":"JuhMorenno","location":"Carioca da Sul ... \u270c","url":null,"description":"\u21dd Snap: juh-morenno \u21dd - \n Covinha no sorriso, uma menina, uma mulher ... \u2665","protected":false,"verified":false,"followers_count":1051,"friends_count":2128,"listed_count":2,"favourites_count":7463,"statuses_count":19374,"created_at":"Sat Sep 03 22:54:27 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651153503520358400\/lkrjGo5J.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651153503520358400\/lkrjGo5J.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F1F2E8","profile_text_color":"96B949","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662290168511090688\/Aqqd-h6J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662290168511090688\/Aqqd-h6J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/367412891\/1444082375","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Aug 18 19:10:22 +0000 2015","id":633717593807945728,"id_str":"633717593807945728","text":"Os signos mais incompreendidos: g\u00eameos, escorpi\u00e3o, touro, virgem, aqu\u00e1rio, c\u00e2ncer e Sagit\u00e1rio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2397838608,"id_str":"2397838608","name":"A culpa \u00e9 do signo","screen_name":"signoseternos","location":"Brasil","url":null,"description":"Signos, Dicas, Hor\u00f3scopo e Afins.","protected":false,"verified":false,"followers_count":83877,"friends_count":7,"listed_count":15,"favourites_count":1279,"statuses_count":255,"created_at":"Wed Mar 19 13:11:04 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482264053926993920\/_oSTkucX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482264053926993920\/_oSTkucX.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656833526290063360\/qSEMyEEk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656833526290063360\/qSEMyEEk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2397838608\/1441773259","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2434,"favorite_count":1071,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"signoseternos","name":"A culpa \u00e9 do signo","id":2397838608,"id_str":"2397838608","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164988829696,"id_str":"663728164988829696","text":"why have school wifi when it doesn't work for shit","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119158928,"id_str":"3119158928","name":"\u0ca0\u2312\u0ca0","screen_name":"savanna0marie","location":null,"url":null,"description":"I've been dropped like a hot pop tart on a cold kitchen floor","protected":false,"verified":false,"followers_count":133,"friends_count":267,"listed_count":1,"favourites_count":1938,"statuses_count":1790,"created_at":"Tue Mar 31 05:11:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659576036158402560\/DEDnAEQz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659576036158402560\/DEDnAEQz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3119158928\/1441254666","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100663"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728165001408513,"id_str":"663728165001408513","text":"How much money for health? https:\/\/t.co\/kpFumAJ3ff","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":967472671,"id_str":"967472671","name":"HC Squad's\u2655\u2668","screen_name":"Daafiiiii27","location":null,"url":null,"description":"INI AKUN ROBOT !!! FOLLOW YANG BARU @NotesDaafuq","protected":false,"verified":false,"followers_count":654,"friends_count":686,"listed_count":78,"favourites_count":3,"statuses_count":942708,"created_at":"Sat Nov 24 06:13:55 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000107349836\/91ace539b679f4771cb9d5f34d3048b3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000107349836\/91ace539b679f4771cb9d5f34d3048b3.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/444114792769282048\/4Jokmnm0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/444114792769282048\/4Jokmnm0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967472671\/1396353349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kpFumAJ3ff","expanded_url":"http:\/\/dlvr.it\/ChfpNw","display_url":"dlvr.it\/ChfpNw","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080100666"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963676161,"id_str":"663728164963676161","text":"@a0alola0a \u307e\u3088\u306d\u30fc\u305c\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727927171948545,"in_reply_to_status_id_str":"663727927171948545","in_reply_to_user_id":2934488420,"in_reply_to_user_id_str":"2934488420","in_reply_to_screen_name":"a0alola0a","user":{"id":3051758202,"id_str":"3051758202","name":"\u306f\u3093\u304b\u3061\u3002","screen_name":"rice_rice00","location":"\u304a\u8089\u98df\u3079\u305f\u3044\u306a\u3041","url":null,"description":null,"protected":false,"verified":false,"followers_count":34,"friends_count":27,"listed_count":2,"favourites_count":793,"statuses_count":5316,"created_at":"Sun Mar 01 03:57:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650609288277155840\/G4w5fPh2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650609288277155840\/G4w5fPh2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051758202\/1435407788","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"a0alola0a","name":"\u3058\u3093\u3051\u3093\u304c\u307b\u3057\u3044","id":2934488420,"id_str":"2934488420","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164976242688,"id_str":"663728164976242688","text":"RT @VIralBuzzNewss: Crowdfunding may perhaps not produce the &#039next Fb,&#039 but it&#039s terrific f... - https:\/\/t.co\/pxH3gtV9WW https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3976940175,"id_str":"3976940175","name":"Renea Yost","screen_name":"ReneaYost","location":"North Holland, The Netherlands","url":null,"description":"General thinker. Wannabe alcohol evangelist. Infuriatingly humble beer fanatic. Hardcore coffee buff.","protected":false,"verified":false,"followers_count":10,"friends_count":0,"listed_count":2,"favourites_count":5215,"statuses_count":6653,"created_at":"Sat Oct 17 04:33:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655240409598291969\/p-kSMBl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655240409598291969\/p-kSMBl__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:28 +0000 2015","id":663725092036218881,"id_str":"663725092036218881","text":"Crowdfunding may perhaps not produce the &#039next Fb,&#039 but it&#039s terrific f... - https:\/\/t.co\/pxH3gtV9WW https:\/\/t.co\/MYfgup63Z3","source":"\u003ca href=\"http:\/\/viralbuzz.news\" rel=\"nofollow\"\u003eViralBuzz Blasts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3090733766,"id_str":"3090733766","name":"Viral Buzz News","screen_name":"VIralBuzzNewss","location":"Las Vegas, NV","url":"http:\/\/viralbuzz.news","description":"Viral Buzz News is a trendy take on today's news, entertainment, social media trends and fresh talk","protected":false,"verified":false,"followers_count":101111,"friends_count":1147,"listed_count":10,"favourites_count":1,"statuses_count":2313,"created_at":"Mon Mar 16 19:26:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655576179781431296\/oK4DvSdy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655576179781431296\/oK4DvSdy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090733766\/1445136509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2621,"favorite_count":1689,"entities":{"hashtags":[{"text":"039next","indices":[46,54]},{"text":"039s","indices":[79,84]}],"urls":[{"url":"https:\/\/t.co\/pxH3gtV9WW","expanded_url":"http:\/\/viralbuzz.news\/2015\/11\/09\/crowdfunding-may-perhaps-not-produce-the-039next-fb039-but-it039s-terrific-f\/","display_url":"viralbuzz.news\/2015\/11\/09\/cro\u2026","indices":[102,125]}],"user_mentions":[],"symbols":[],"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[126,149],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"039next","indices":[66,74]},{"text":"039s","indices":[99,104]}],"urls":[{"url":"https:\/\/t.co\/pxH3gtV9WW","expanded_url":"http:\/\/viralbuzz.news\/2015\/11\/09\/crowdfunding-may-perhaps-not-produce-the-039next-fb039-but-it039s-terrific-f\/","display_url":"viralbuzz.news\/2015\/11\/09\/cro\u2026","indices":[122,145]}],"user_mentions":[{"screen_name":"VIralBuzzNewss","name":"Viral Buzz News","id":3090733766,"id_str":"3090733766","indices":[3,18]}],"symbols":[],"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[151,152],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725092036218881,"source_status_id_str":"663725092036218881","source_user_id":3090733766,"source_user_id_str":"3090733766"}]},"extended_entities":{"media":[{"id":663725091822301184,"id_str":"663725091822301184","indices":[151,152],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGdFaU8AAgaV_.jpg","url":"https:\/\/t.co\/MYfgup63Z3","display_url":"pic.twitter.com\/MYfgup63Z3","expanded_url":"http:\/\/twitter.com\/VIralBuzzNewss\/status\/663725092036218881\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663725092036218881,"source_status_id_str":"663725092036218881","source_user_id":3090733766,"source_user_id_str":"3090733766"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100660"} +{"delete":{"status":{"id":663226832402055168,"id_str":"663226832402055168","user_id":477292181,"user_id_str":"477292181"},"timestamp_ms":"1447080100766"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972007424,"id_str":"663728164972007424","text":"\uc8fd\uc744\ubed4\ud55c \uc5d8\ub9ac\uc640 \uadf8\ub7f0 \uadf8\ub140\ub97c \uad6c\ud558\ub294 \ud53c\ud130, \uadf8\ub9ac\uace0 \uc544\uc774\ub4e4\uc744 \uad6c\ud558\ub294 \uc9c0\ud558\uc5f0\ud569 \uc5f0\uc131\uc744 \ubd24\ub294\ub370 \ubaa8\ub450\uac00 \uc6b8\uba74\uc11c \ub9cc\ub098\ub294 \ub9c8\uc9c0\ub9c9\uc744 \ubcf4\uba74\uc11c \uad1c\uc2dc\ub9ac \uc2ac\ud37c\uc84c\ub2e4. \uc6b8\ucee5\ud558\ub294\ub370 \ub3c4\uc77c\uc774 \uc0dd\uac01\ud558\uae30\uc5d0\ub294 \uc544\uc774\ub4e4\uc740 \ub180\uc774\ud130\uc5d0\uc11c \ub180\uc544\uc57c \ud558\ub294\ub370 \uc774\ub7f0 \uc77c\uc744 \uacaa\uc5b4\uc57c \ud55c\ub2e4\ub2c8.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3015996945,"id_str":"3015996945","name":"[\uae34\uc218\uc628 \uc6d0\uace0]\uc2dc\ud604","screen_name":"xkzkgusrls","location":"\uc778\uc7a5 \uc584\ub2d8","url":null,"description":"\uadf8\ub300\ub294 \ub098\uc640 \ud568\uaed8 \ud574\uc11c \ud589\ubcf5\ud588\uc744\uae4c","protected":false,"verified":false,"followers_count":94,"friends_count":74,"listed_count":1,"favourites_count":684,"statuses_count":428,"created_at":"Wed Feb 04 02:21:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708554101035009\/2COc_rpD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708554101035009\/2COc_rpD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3015996945\/1447073142","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164972142592,"id_str":"663728164972142592","text":"I don't want to adult today","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34960068,"id_str":"34960068","name":"Brian B.","screen_name":"BrianGTB","location":"Toronto, Ontario ","url":"http:\/\/www.facebook.com\/j.brian.baine","description":"I don't write so no #blog. I don't do alot so no #vlog.... so I just tweet. My tweets are my own and no one elses.","protected":false,"verified":false,"followers_count":493,"friends_count":469,"listed_count":18,"favourites_count":1714,"statuses_count":36992,"created_at":"Fri Apr 24 15:54:10 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/427662399\/6826618949_368b4cc8ce_o.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/427662399\/6826618949_368b4cc8ce_o.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660559144827621376\/1HPtHh_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660559144827621376\/1HPtHh_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34960068\/1411583208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3797791ff9c0e4c6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3797791ff9c0e4c6.json","place_type":"city","name":"Toronto","full_name":"Toronto, Ontario","country_code":"CA","country":"Canada","bounding_box":{"type":"Polygon","coordinates":[[[-79.639319,43.403221],[-79.639319,43.855401],[-78.905820,43.855401],[-78.905820,43.403221]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100659"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164967845888,"id_str":"663728164967845888","text":"@iceiceice0611 \n\n\u305d\u3046\u601d\u3063\u3066\u305f\u306e\u304b\uff01\n\u5272\u3068\u51ac\u306a\u3093\u3067\u3059\u7b11\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728028615180289,"in_reply_to_status_id_str":"663728028615180289","in_reply_to_user_id":3182629038,"in_reply_to_user_id_str":"3182629038","in_reply_to_screen_name":"iceiceice0611","user":{"id":3482449334,"id_str":"3482449334","name":"\u306b\u3044\u3064\u307e\u306a\u304a\u3084","screen_name":"__rAsn_","location":null,"url":null,"description":"\u9ad8\u68212\u5e74\u751f\u3067\u3059\u263a\ufe0e\u897f\u6d0b\u6599\u7406\u3092\u4f5c\u308b\u306e\u306b\u30cf\u30de\u3063\u3066\u307e\u3059\u3001IH\u30b3\u30f3\u30ed\u306f\u5acc\u3044\u3067\u3059\u3002\u30d5\u30e9\u30d5\u30e9\u3057\u305f\u308a\u3044\u3044\u666f\u8272\u3092\u898b\u308b\u306e\u304c\u597d\u304d\u3067\u3059\u3002\u65e5\u672c\u306b\u3044\u308b\u9593\u306b\u3044\u308d\u3093\u306a\u6240\u884c\u304d\u305f\u3044\u3067\u3059\u3002\u8a71\u3057\u304b\u3051\u3066\u304f\u308c\u308c\u3070\u3061\u3083\u3093\u3068\u558b\u308a\u307e\u3059\u3002\u9811\u5f35\u308a\u307e\u3059\u263a\ufe0e","protected":false,"verified":false,"followers_count":101,"friends_count":98,"listed_count":0,"favourites_count":229,"statuses_count":245,"created_at":"Mon Sep 07 14:05:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646704182154539008\/TIjTw-pH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646704182154539008\/TIjTw-pH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3482449334\/1443019221","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iceiceice0611","name":"\u5996\u602a\u3072\u3080\u3072\u3080\u3053\u3063\u3074","id":3182629038,"id_str":"3182629038","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100658"} +{"delete":{"status":{"id":663728060127121408,"id_str":"663728060127121408","user_id":22895976,"user_id_str":"22895976"},"timestamp_ms":"1447080100815"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164997169152,"id_str":"663728164997169152","text":"RT @1Nssu: \u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3080341484,"id_str":"3080341484","name":"\u308a\u308b\u304a","screen_name":"2525_Riru","location":"\u25ce 10.04 \u25ce","url":null,"description":"\u4e0a \u4e2d \uffe4\uff8a\uff9e \uff9a \uff70 \uffe4 \u25b6\ufe0f \u677e \u9ad8 1 A \u304a \u3093 \u307e \u3086 \uffe4 \uff8a\uff9e \uff84\uff9e \u90e8 \uff8f \uff88 \uffe4 \u2601\ufe0f \uff84\uff9e \uff85 \u2601\ufe0f \uff7a \uff98 \uff71 \u2601\ufe0f \u90a6 \uff9b \uff6f \uff78 \u2601\ufe0f \uff8c \uff6b \uff70 \uff98 \uff9d \uff90 \uff6d \uff70 \uff7c \uff9e\uff6f \uff78 \u2601\ufe0f\uff08\uff08https:\/\/instagram.com\/RIRU_2525\uff09\uff09","protected":false,"verified":false,"followers_count":405,"friends_count":399,"listed_count":1,"favourites_count":5453,"statuses_count":5193,"created_at":"Sat Mar 14 10:16:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662866840540983296\/yVUCVCIu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662866840540983296\/yVUCVCIu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3080341484\/1446998075","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 08:28:53 +0000 2015","id":663271961917652993,"id_str":"663271961917652993","text":"\u884c\u304d\u3064\u3051\u306e\u30da\u30c3\u30c8\u30b7\u30e7\u30c3\u30d7\u304c\u4eca\u65e5\u3067\u9589\u5e97\u2026\u9023\u308c\u3066\u5e30\u308a\u305f\u3044 https:\/\/t.co\/NGF2U23fJM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3193571228,"id_str":"3193571228","name":"\u4e2d\u5cf6\u512a\u592a\u6717","screen_name":"1Nssu","location":"\u9759\u5ca1 \u6d5c\u677e \u261e \u795e\u5948\u5ddd \u6a2a\u6d5c","url":null,"description":"\u65e5\u672c\u4f53\u80b2\u5927\u5b66 \u9678\u4e0a \u77ed\u8ddd\u96e2","protected":false,"verified":false,"followers_count":282,"friends_count":209,"listed_count":0,"favourites_count":241,"statuses_count":211,"created_at":"Tue May 12 18:57:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640256083999612928\/t3o820fc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3193571228\/1447078229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17635,"favorite_count":20093,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1Nssu","name":"\u4e2d\u5cf6\u512a\u592a\u6717","id":3193571228,"id_str":"3193571228","indices":[3,9]}],"symbols":[],"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228"}]},"extended_entities":{"media":[{"id":663271696250474496,"id_str":"663271696250474496","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663271696250474496\/pu\/img\/7VAchWREEGlQV0Q1.jpg","url":"https:\/\/t.co\/NGF2U23fJM","display_url":"pic.twitter.com\/NGF2U23fJM","expanded_url":"http:\/\/twitter.com\/1Nssu\/status\/663271961917652993\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663271961917652993,"source_status_id_str":"663271961917652993","source_user_id":3193571228,"source_user_id_str":"3193571228","video_info":{"aspect_ratio":[9,16],"duration_millis":15981,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/180x320\/Ch5kukg_vbiA9VYu.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.mpd"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/720x1280\/DKWGmDyW5HV5WLg1.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/pl\/V4PcExK1K2at-wyP.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663271696250474496\/pu\/vid\/360x640\/0Iaf4TKHmA6-n0hi.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100665"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164976377856,"id_str":"663728164976377856","text":"\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d https:\/\/t.co\/pJ5o22fxek","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":68774817,"id_str":"68774817","name":"B$","screen_name":"Bitchie_Brit","location":"Mason's\u2764World","url":null,"description":"No1s Perfect In A Imperfected World......Stack,Live&Pray #FreeTy","protected":false,"verified":false,"followers_count":1177,"friends_count":826,"listed_count":9,"favourites_count":256,"statuses_count":175830,"created_at":"Tue Aug 25 18:58:24 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/284434665\/tumblr_lg26bn4XKk1qdif3jo1_500.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/284434665\/tumblr_lg26bn4XKk1qdif3jo1_500.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658403146201440257\/gymF_-iE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658403146201440257\/gymF_-iE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/68774817\/1445810563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727478142312448,"quoted_status_id_str":"663727478142312448","quoted_status":{"created_at":"Mon Nov 09 14:38:56 +0000 2015","id":663727478142312448,"id_str":"663727478142312448","text":"Somebody just ask was I pregnant,.i said where?in my nvm\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1852059595,"id_str":"1852059595","name":"Tay","screen_name":"Team_biglips","location":null,"url":null,"description":"Mood:IDGAF","protected":false,"verified":false,"followers_count":670,"friends_count":560,"listed_count":0,"favourites_count":1009,"statuses_count":5586,"created_at":"Tue Sep 10 17:14:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660891619047161856\/q2ahLoTl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660891619047161856\/q2ahLoTl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1852059595\/1445631588","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pJ5o22fxek","expanded_url":"https:\/\/twitter.com\/team_biglips\/status\/663727478142312448","display_url":"twitter.com\/team_biglips\/s\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und","timestamp_ms":"1447080100660"} +{"delete":{"status":{"id":629289447859712000,"id_str":"629289447859712000","user_id":2942462719,"user_id_str":"2942462719"},"timestamp_ms":"1447080100861"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164976201728,"id_str":"663728164976201728","text":"RT @Iifepost: the colors bring comfort to my soul https:\/\/t.co\/T5G5KlSfVD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":608855694,"id_str":"608855694","name":"Mckenna Case","screen_name":"mckennarcase","location":null,"url":null,"description":"CO","protected":false,"verified":false,"followers_count":264,"friends_count":138,"listed_count":0,"favourites_count":6320,"statuses_count":1993,"created_at":"Fri Jun 15 04:40:20 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659398439701053440\/HdI-P9os_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659398439701053440\/HdI-P9os_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/608855694\/1439964257","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 21:33:09 +0000 2015","id":662019777033060353,"id_str":"662019777033060353","text":"the colors bring comfort to my soul https:\/\/t.co\/T5G5KlSfVD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":404916846,"id_str":"404916846","name":"Relatable","screen_name":"Iifepost","location":null,"url":"http:\/\/goo.gl\/1PKJtM","description":"Tweeting my thoughts and feelings. I hope to inspire each and every one of you! business ddvvcc2@gmail.com Kik: Life_Post - dm submissions","protected":false,"verified":false,"followers_count":1900569,"friends_count":322697,"listed_count":1665,"favourites_count":3897,"statuses_count":8341,"created_at":"Fri Nov 04 15:56:03 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491355960854581248\/OI_f-9oS.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624305249566633984\/T9ne50dD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/404916846\/1437681456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2632,"favorite_count":4808,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661743948860379136,"id_str":"661743948860379136","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","url":"https:\/\/t.co\/T5G5KlSfVD","display_url":"pic.twitter.com\/T5G5KlSfVD","expanded_url":"http:\/\/twitter.com\/SoReIatable\/status\/661743949099474944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":600,"h":441,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":441,"resize":"fit"}},"source_status_id":661743949099474944,"source_status_id_str":"661743949099474944","source_user_id":407261533,"source_user_id_str":"407261533"}]},"extended_entities":{"media":[{"id":661743948860379136,"id_str":"661743948860379136","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","url":"https:\/\/t.co\/T5G5KlSfVD","display_url":"pic.twitter.com\/T5G5KlSfVD","expanded_url":"http:\/\/twitter.com\/SoReIatable\/status\/661743949099474944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":600,"h":441,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":441,"resize":"fit"}},"source_status_id":661743949099474944,"source_status_id_str":"661743949099474944","source_user_id":407261533,"source_user_id_str":"407261533"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iifepost","name":"Relatable","id":404916846,"id_str":"404916846","indices":[3,12]}],"symbols":[],"media":[{"id":661743948860379136,"id_str":"661743948860379136","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","url":"https:\/\/t.co\/T5G5KlSfVD","display_url":"pic.twitter.com\/T5G5KlSfVD","expanded_url":"http:\/\/twitter.com\/SoReIatable\/status\/661743949099474944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":600,"h":441,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":441,"resize":"fit"}},"source_status_id":661743949099474944,"source_status_id_str":"661743949099474944","source_user_id":407261533,"source_user_id_str":"407261533"}]},"extended_entities":{"media":[{"id":661743948860379136,"id_str":"661743948860379136","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS78nYwWUAA4_Wg.jpg","url":"https:\/\/t.co\/T5G5KlSfVD","display_url":"pic.twitter.com\/T5G5KlSfVD","expanded_url":"http:\/\/twitter.com\/SoReIatable\/status\/661743949099474944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":600,"h":441,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":441,"resize":"fit"}},"source_status_id":661743949099474944,"source_status_id_str":"661743949099474944","source_user_id":407261533,"source_user_id_str":"407261533"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080100660"} +{"delete":{"status":{"id":663722653648220160,"id_str":"663722653648220160","user_id":3185046757,"user_id_str":"3185046757"},"timestamp_ms":"1447080100931"}} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963618817,"id_str":"663728164963618817","text":"@___msk__xxx11 \u307e\u3058\u304b\u301c\uff5e\u8abf\u3079\u3066\u3082\u672a\u6210\u5e74\u306f\u3060\u3081\u307f\u305f\u3044\u306a\u3053\u3068\u66f8\u3044\u3068\u308b\u3093\u3084\u3051\u3069\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727348445872128,"in_reply_to_status_id_str":"663727348445872128","in_reply_to_user_id":2913396505,"in_reply_to_user_id_str":"2913396505","in_reply_to_screen_name":"___msk__xxx11","user":{"id":3313037484,"id_str":"3313037484","name":"\u2661\u2661 \u308a\u306a\u307e\u308b","screen_name":"__green1030","location":null,"url":null,"description":"\u9280\u6cb3\u4e00 \u5927\u91ce\u304f\u3093.\u00b0\u2445\u029a( \u00b4\uff61\uff65\u2200\uff65\uff61` \uff09\u025e\u2445\u00b0.","protected":false,"verified":false,"followers_count":66,"friends_count":65,"listed_count":0,"favourites_count":233,"statuses_count":757,"created_at":"Wed Aug 12 06:10:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660641908562112512\/08hMhm-T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660641908562112512\/08hMhm-T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313037484\/1439476643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___msk__xxx11","name":"\u2661\u3057\u307b\u308a\u30fc\u306c","id":2913396505,"id_str":"2913396505","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100657"} +{"created_at":"Mon Nov 09 14:41:40 +0000 2015","id":663728164963618816,"id_str":"663728164963618816","text":"@gypsy0tsuna \n\u3093(\u2235)\uff1f https:\/\/t.co\/CnZivAshSB","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719471622717440,"in_reply_to_status_id_str":"663719471622717440","in_reply_to_user_id":1374601069,"in_reply_to_user_id_str":"1374601069","in_reply_to_screen_name":"gypsy0tsuna","user":{"id":761576172,"id_str":"761576172","name":"kitayama","screen_name":"ki_ta_yama","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":326,"friends_count":945,"listed_count":3,"favourites_count":25623,"statuses_count":35349,"created_at":"Thu Aug 16 13:42:34 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660799840750694405\/PIXivBX2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660799840750694405\/PIXivBX2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/761576172\/1411913095","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gypsy0tsuna","name":"\u3061\u3085\u3046\u304d\u30613\u53f7","id":1374601069,"id_str":"1374601069","indices":[0,12]}],"symbols":[],"media":[{"id":663728150644326401,"id_str":"663728150644326401","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPIaVAAEuvuS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPIaVAAEuvuS.jpg","url":"https:\/\/t.co\/CnZivAshSB","display_url":"pic.twitter.com\/CnZivAshSB","expanded_url":"http:\/\/twitter.com\/ki_ta_yama\/status\/663728164963618816\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728150644326401,"id_str":"663728150644326401","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPIaVAAEuvuS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPIaVAAEuvuS.jpg","url":"https:\/\/t.co\/CnZivAshSB","display_url":"pic.twitter.com\/CnZivAshSB","expanded_url":"http:\/\/twitter.com\/ki_ta_yama\/status\/663728164963618816\/photo\/1","type":"photo","sizes":{"large":{"w":470,"h":313,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":470,"h":313,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080100657"} +{"delete":{"status":{"id":640430429460234240,"id_str":"640430429460234240","user_id":40442919,"user_id_str":"40442919"},"timestamp_ms":"1447080101195"}} +{"delete":{"status":{"id":594796691326312448,"id_str":"594796691326312448","user_id":2807489238,"user_id_str":"2807489238"},"timestamp_ms":"1447080101635"}} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169166458880,"id_str":"663728169166458880","text":"@CamiMendia08 Lo siento, Fuerza \ud83d\ude29","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727691900809216,"in_reply_to_status_id_str":"663727691900809216","in_reply_to_user_id":1949672089,"in_reply_to_user_id_str":"1949672089","in_reply_to_screen_name":"CamiMendia08","user":{"id":2465008807,"id_str":"2465008807","name":"Gallo #02","screen_name":"NachoGallo06","location":" Uruguay","url":"https:\/\/www.facebook.com\/nacho.gallo1","description":"|#Insta:Nachogallo_06| #Snap:nachogallo06| 18.01.99 | @MarceloM12 \u00eddolo| \u2665 #ClubNacionaldeF\u00fatbol \u2665-#FcBarcelona-#CARP\u2b05| #NTVG - #LVP -#CJS | #Capricornio \u2651","protected":false,"verified":false,"followers_count":2188,"friends_count":1596,"listed_count":5,"favourites_count":38077,"statuses_count":22670,"created_at":"Sat Apr 26 18:49:46 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":true,"profile_link_color":"043AFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660241329256050688\/bi1LC-DD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660241329256050688\/bi1LC-DD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2465008807\/1446766400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CamiMendia08","name":"\u274cSerranista\u274c\u2122","id":1949672089,"id_str":"1949672089","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080101659"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169158123520,"id_str":"663728169158123520","text":"@Kagetsuu >\"D wie viele Kaffee wir h\u00e4tten trinken gehen k\u00f6nnen\nAber ich warte geduldig bis n\u00e4chstes Jahr uvu \u2764","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726468485091328,"in_reply_to_status_id_str":"663726468485091328","in_reply_to_user_id":331985177,"in_reply_to_user_id_str":"331985177","in_reply_to_screen_name":"Kagetsuu","user":{"id":1529778883,"id_str":"1529778883","name":"hom\u00f8ra-chan","screen_name":"chloeful","location":"L\u00fcbeck","url":"https:\/\/instagram.com\/chloeful_\/","description":"\u2192 22 | just a girl in a world of colour and happiness | Germany, Cosplayer \u2190 Animexx: chloeful","protected":false,"verified":false,"followers_count":281,"friends_count":98,"listed_count":6,"favourites_count":8548,"statuses_count":58194,"created_at":"Wed Jun 19 05:04:58 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654692172520775680\/EIFqByx1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654692172520775680\/EIFqByx1.png","profile_background_tile":true,"profile_link_color":"FF1493","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660428142000144384\/aNk-3zMx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660428142000144384\/aNk-3zMx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1529778883\/1439669529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kagetsuu","name":"Yay-son","id":331985177,"id_str":"331985177","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080101657"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169191612416,"id_str":"663728169191612416","text":"RT @Dnk4r: \u0643\u0644 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u0633\u0627\u064a\u0631\u0627\u062a\u060c \u0627\u0644\u0648\u0627\u062c\u0628\u0627\u062a \u0648\u0627\u0644\u062a\u0642\u0627\u0644\u064a\u062f \u0627\u0644\u0625\u062c\u062a\u0645\u0627\u0639\u064a\u0629 \u0646\u0642\u0639\u0648\u0647\u0627 \u0648\u0634\u0631\u0628\u0648\u0627 \u0645\u064a\u0651\u062a\u0647\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":354428317,"id_str":"354428317","name":"Haya Barahmeh","screen_name":"hayabarahmeh","location":"Amman.","url":null,"description":"21, pisces \u2653\ufe0f","protected":false,"verified":false,"followers_count":209,"friends_count":305,"listed_count":6,"favourites_count":502,"statuses_count":6671,"created_at":"Sat Aug 13 18:08:50 +0000 2011","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657811934507585537\/hqzFmZrm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657811934507585537\/hqzFmZrm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/354428317\/1445669562","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:09 +0000 2015","id":663728032398503936,"id_str":"663728032398503936","text":"\u0643\u0644 \u0623\u0646\u0648\u0627\u0639 \u0627\u0644\u0645\u0633\u0627\u064a\u0631\u0627\u062a\u060c \u0627\u0644\u0648\u0627\u062c\u0628\u0627\u062a \u0648\u0627\u0644\u062a\u0642\u0627\u0644\u064a\u062f \u0627\u0644\u0625\u062c\u062a\u0645\u0627\u0639\u064a\u0629 \u0646\u0642\u0639\u0648\u0647\u0627 \u0648\u0634\u0631\u0628\u0648\u0627 \u0645\u064a\u0651\u062a\u0647\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321929328,"id_str":"321929328","name":"Mh\u0651md","screen_name":"Dnk4r","location":"\u0644\u0628\u0646\u0627\u0646","url":"http:\/\/www.w0rd.me","description":"Social Media Specialist | @Cloud961mag contributor | Nothing would mean anything if we didn't live a life of use to others | 309","protected":false,"verified":false,"followers_count":5892,"friends_count":1003,"listed_count":60,"favourites_count":118384,"statuses_count":110134,"created_at":"Wed Jun 22 11:03:16 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"52595C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529201820820713472\/_cKrJQS_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529201820820713472\/_cKrJQS_.jpeg","profile_background_tile":false,"profile_link_color":"214866","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662418574921719808\/WWhXisF1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662418574921719808\/WWhXisF1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321929328\/1444772099","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dnk4r","name":"Mh\u0651md","id":321929328,"id_str":"321929328","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080101665"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169191645184,"id_str":"663728169191645184","text":"RT @bflincs: #BFLMember @NELincsChaplain A chaplain is for always not just for Christmas or a crisis","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255471141,"id_str":"255471141","name":"Mary Vickers","screen_name":"NELincsChaplain","location":"North East Lincolnshire, UK","url":"http:\/\/www.lincschaplaincy.org.uk\/blogs\/marys_blog","description":"Urban & Industrial Chaplain NELincolnshire. Experience of sport, university, industry, retail, business, hospital, forces, & civic chaplaincy. Anglican priest.","protected":false,"verified":false,"followers_count":942,"friends_count":281,"listed_count":34,"favourites_count":2260,"statuses_count":9271,"created_at":"Mon Feb 21 12:43:08 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"642D8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1286846816\/P8190065_edited_2_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1286846816\/P8190065_edited_2_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728107296317441,"id_str":"663728107296317441","text":"#BFLMember @NELincsChaplain A chaplain is for always not just for Christmas or a crisis","source":"\u003ca href=\"http:\/\/www.tjdixon.com\" rel=\"nofollow\"\u003eTJD Auto Tweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356778082,"id_str":"356778082","name":"BusinessFriendsLincs","screen_name":"bflincs","location":"Grimsby, UK","url":"http:\/\/www.businessfriendslincs.net","description":"Simply put, Business Friends Lincs is a group of like minded sole-traders, business owners and company representatives who formed their own networking group.","protected":false,"verified":false,"followers_count":284,"friends_count":181,"listed_count":10,"favourites_count":2,"statuses_count":3580,"created_at":"Wed Aug 17 10:43:22 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557213253\/BFL_Logo.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557213253\/BFL_Logo.png","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2110658469\/BFL_Logo_only_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2110658469\/BFL_Logo_only_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"BFLMember","indices":[0,10]}],"urls":[],"user_mentions":[{"screen_name":"NELincsChaplain","name":"Mary Vickers","id":255471141,"id_str":"255471141","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BFLMember","indices":[13,23]}],"urls":[],"user_mentions":[{"screen_name":"bflincs","name":"BusinessFriendsLincs","id":356778082,"id_str":"356778082","indices":[3,11]},{"screen_name":"NELincsChaplain","name":"Mary Vickers","id":255471141,"id_str":"255471141","indices":[24,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101665"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162289152,"id_str":"663728169162289152","text":"@LeagueOfAram con rp supongo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728086270242816,"in_reply_to_status_id_str":"663728086270242816","in_reply_to_user_id":3420923013,"in_reply_to_user_id_str":"3420923013","in_reply_to_screen_name":"LeagueOfAram","user":{"id":2864510435,"id_str":"2864510435","name":"ByAxel073","screen_name":"BAxel073","location":null,"url":null,"description":"hola","protected":false,"verified":false,"followers_count":43,"friends_count":99,"listed_count":1,"favourites_count":126,"statuses_count":696,"created_at":"Thu Nov 06 21:15:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570223523790266368\/WUsuPjWg_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570223523790266368\/WUsuPjWg_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LeagueOfAram","name":"League of Aram","id":3420923013,"id_str":"3420923013","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162248192,"id_str":"663728169162248192","text":"RT @ddlovato: Much better thank you!!! I do need a nap soon though \ud83d\ude34\ud83d\ude1d\u263a\ufe0f #AskDemi https:\/\/t.co\/eXqyiFTlMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1138674890,"id_str":"1138674890","name":"Hayleey","screen_name":"Hayley_lovatic","location":"Qormi, Malta","url":"https:\/\/www.facebook.com\/hayley.borg.10?ref=tn_tnmn","description":"Awkward, Can't keep a straight face at serious times and a Chick who loves comedy movies and YouTube xx\n|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|\u2022\u2206|","protected":false,"verified":false,"followers_count":532,"friends_count":2017,"listed_count":8,"favourites_count":8511,"statuses_count":4718,"created_at":"Fri Feb 01 04:12:09 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"570441","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456383759600726018\/vA387BFR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456383759600726018\/vA387BFR.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657777277019803648\/HnoAkEKm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657777277019803648\/HnoAkEKm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1138674890\/1445661297","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:04:56 +0000 2015","id":663688720021856256,"id_str":"663688720021856256","text":"Much better thank you!!! I do need a nap soon though \ud83d\ude34\ud83d\ude1d\u263a\ufe0f #AskDemi https:\/\/t.co\/eXqyiFTlMA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672544,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663685015314677760,"quoted_status_id_str":"663685015314677760","quoted_status":{"created_at":"Mon Nov 09 11:50:12 +0000 2015","id":663685015314677760,"id_str":"663685015314677760","text":"How are you feeling today? Your headache any better? #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93051474,"id_str":"93051474","name":"Amber","screen_name":"youramberddl","location":"United States","url":"https:\/\/itun.es\/us\/nhEN9","description":"https:\/\/twitter.com\/ddlovato\/status\/663688720021856256","protected":false,"verified":false,"followers_count":746,"friends_count":218,"listed_count":71,"favourites_count":2546,"statuses_count":10353,"created_at":"Fri Nov 27 21:28:05 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000031105544\/32f80c9af854b892bb763a4c13c866f6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000031105544\/32f80c9af854b892bb763a4c13c866f6.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"990000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663541756416401408\/xnWdv-9O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663541756416401408\/xnWdv-9O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93051474\/1447035657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[53,61]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1881,"favorite_count":3713,"entities":{"hashtags":[{"text":"AskDemi","indices":[58,66]}],"urls":[{"url":"https:\/\/t.co\/eXqyiFTlMA","expanded_url":"https:\/\/twitter.com\/youramberddl\/status\/663685015314677760","display_url":"twitter.com\/youramberddl\/s\u2026","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[72,80]}],"urls":[{"url":"https:\/\/t.co\/eXqyiFTlMA","expanded_url":"https:\/\/twitter.com\/youramberddl\/status\/663685015314677760","display_url":"twitter.com\/youramberddl\/s\u2026","indices":[81,104]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169195732992,"id_str":"663728169195732992","text":"\uc218\ud5d8\uc0dd\ub4e4 \ub2e4 \uc77c\ucc0d\uc790\ub124\uc694\uc998 \u3160","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2938335074,"id_str":"2938335074","name":"\ud050\ub178\/Qno@11.16~11.20\u65e5\u672c","screen_name":"QNO_SDVX","location":"@TOKA_SDVX","url":null,"description":"19 \/ \uc0ac\ubcfc [LT-QNO] , \ud38c\ud504 [RUA] , \ud22c\ub371 [MAX-HS] ETC... \/ \ud558\uc2a4\uc2a4\ud1a4 : Lastae#3737 \/ CS : GO \/ \ub8e8\uc544\uc600\uc2b5\ub2c8\ub2e4. \/151031~With @TOKA_SDVX \u2665","protected":false,"verified":false,"followers_count":252,"friends_count":249,"listed_count":6,"favourites_count":120,"statuses_count":38576,"created_at":"Sun Dec 21 14:52:05 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660695749328400384\/J7RzYc2O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660695749328400384\/J7RzYc2O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938335074\/1443493555","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080101666"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174761472,"id_str":"663728169174761472","text":"#HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY #HAPPYLEODAY 62","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3038344850,"id_str":"3038344850","name":"\u2764","screen_name":"jyl07250524","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":8,"listed_count":0,"favourites_count":1,"statuses_count":588,"created_at":"Mon Feb 23 17:36:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[0,12]},{"text":"HAPPYLEODAY","indices":[13,25]},{"text":"HAPPYLEODAY","indices":[26,38]},{"text":"HAPPYLEODAY","indices":[39,51]},{"text":"HAPPYLEODAY","indices":[52,64]},{"text":"HAPPYLEODAY","indices":[65,77]},{"text":"HAPPYLEODAY","indices":[78,90]},{"text":"HAPPYLEODAY","indices":[91,103]},{"text":"HAPPYLEODAY","indices":[104,116]},{"text":"HAPPYLEODAY","indices":[117,129]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169195839488,"id_str":"663728169195839488","text":"How did I not know this was the last season of #POI? And when does it finally come back @CBS","source":"\u003ca href=\"http:\/\/www.handmark.com\" rel=\"nofollow\"\u003eTweetCaster for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16082853,"id_str":"16082853","name":"Claudia \u029a\u03ca\u025e","screen_name":"cand2jays","location":"Michigan","url":null,"description":"Wizard of OZ Fanatic. Love my soaps OLTL GH Lifelong Yankee Fan.#Beardown Chicago Bears No H8ters. Who doesn't want a pair of Ruby Red shoes?","protected":false,"verified":false,"followers_count":356,"friends_count":510,"listed_count":20,"favourites_count":209,"statuses_count":24456,"created_at":"Mon Sep 01 14:29:59 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8A402D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000112876718\/2b85538fda338dfe577b26f5a32ea4ae.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000112876718\/2b85538fda338dfe577b26f5a32ea4ae.jpeg","profile_background_tile":false,"profile_link_color":"FF0022","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555721735316598785\/UkAP2knG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555721735316598785\/UkAP2knG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16082853\/1435098225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"POI","indices":[47,51]}],"urls":[],"user_mentions":[{"screen_name":"CBS","name":"CBS Television","id":97739866,"id_str":"97739866","indices":[88,92]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101666"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174884352,"id_str":"663728169174884352","text":"RT @Michael5SOS: http:\/\/t.co\/NdDTr7nhsa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2580611635,"id_str":"2580611635","name":"\u274c\u2b50Viih Clifford\u2b50\u274c","screen_name":"Vih_bb3","location":"S\u00e3o Paulo, Brasil","url":null,"description":"SGFG \u2764\u2764","protected":false,"verified":false,"followers_count":129,"friends_count":164,"listed_count":0,"favourites_count":4258,"statuses_count":3822,"created_at":"Sat Jun 21 15:09:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658041890550489092\/d5QMj9ae_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658041890550489092\/d5QMj9ae_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2580611635\/1445028943","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Feb 16 10:28:27 +0000 2015","id":567269269033865216,"id_str":"567269269033865216","text":"http:\/\/t.co\/NdDTr7nhsa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":403246803,"id_str":"403246803","name":"Michael Clifford","screen_name":"Michael5SOS","location":null,"url":"http:\/\/5sosf.am\/vjnufZ","description":"i play in a band. so do other people in my band","protected":false,"verified":true,"followers_count":5620731,"friends_count":15497,"listed_count":34351,"favourites_count":98,"statuses_count":10898,"created_at":"Wed Nov 02 07:04:18 +0000 2011","utc_offset":39600,"time_zone":"Sydney","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/706670040\/cc8c41abe304e1f7b30323bc0cd6d3e7.jpeg","profile_background_tile":true,"profile_link_color":"0E45B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"030203","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703692487630848\/Di7-gaPx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/403246803\/1446535517","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81310,"favorite_count":140144,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":567269185294573568,"id_str":"567269185294573568","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","url":"http:\/\/t.co\/NdDTr7nhsa","display_url":"pic.twitter.com\/NdDTr7nhsa","expanded_url":"http:\/\/twitter.com\/Michael5SOS\/status\/567269269033865216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":567269185294573568,"id_str":"567269185294573568","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","url":"http:\/\/t.co\/NdDTr7nhsa","display_url":"pic.twitter.com\/NdDTr7nhsa","expanded_url":"http:\/\/twitter.com\/Michael5SOS\/status\/567269269033865216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Michael5SOS","name":"Michael Clifford","id":403246803,"id_str":"403246803","indices":[3,15]}],"symbols":[],"media":[{"id":567269185294573568,"id_str":"567269185294573568","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","url":"http:\/\/t.co\/NdDTr7nhsa","display_url":"pic.twitter.com\/NdDTr7nhsa","expanded_url":"http:\/\/twitter.com\/Michael5SOS\/status\/567269269033865216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":567269269033865216,"source_status_id_str":"567269269033865216","source_user_id":403246803,"source_user_id_str":"403246803"}]},"extended_entities":{"media":[{"id":567269185294573568,"id_str":"567269185294573568","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B99YUYmCIAAhMEP.jpg","url":"http:\/\/t.co\/NdDTr7nhsa","display_url":"pic.twitter.com\/NdDTr7nhsa","expanded_url":"http:\/\/twitter.com\/Michael5SOS\/status\/567269269033865216\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":567269269033865216,"source_status_id_str":"567269269033865216","source_user_id":403246803,"source_user_id_str":"403246803"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169191542784,"id_str":"663728169191542784","text":"RT @ThePxinKiller__: he's your boyfriend, of course he's gonna be annoying \n\nshe's your girlfriend, of course she's gonna be upset about th\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2224677103,"id_str":"2224677103","name":"Lidyoo","screen_name":"Nursyalidya_","location":null,"url":null,"description":"http:\/\/lid.com \u2764 & 16","protected":false,"verified":false,"followers_count":297,"friends_count":178,"listed_count":0,"favourites_count":660,"statuses_count":11593,"created_at":"Sun Dec 01 10:39:57 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D1D19C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155220208\/Ot_1nQa6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155220208\/Ot_1nQa6.jpeg","profile_background_tile":true,"profile_link_color":"E3146E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A5C79B","profile_text_color":"B53F78","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657425718914093056\/QTCyh9Yg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657425718914093056\/QTCyh9Yg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2224677103\/1446392577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:51 +0000 2015","id":663724938516262913,"id_str":"663724938516262913","text":"he's your boyfriend, of course he's gonna be annoying \n\nshe's your girlfriend, of course she's gonna be upset about the littlest things.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":865802258,"id_str":"865802258","name":"\u306a\u308b\u3093\u307f","screen_name":"ThePxinKiller__","location":"Los Angeles, CA","url":null,"description":"17 \/\/ Love yourself & be happy. The 1975, \u3160\u3145\u3134(BTS), New Years Day, AX7, Simple Plan & The 1975 fav. Only love him A.Hzq \u2764","protected":false,"verified":false,"followers_count":9572,"friends_count":7702,"listed_count":15,"favourites_count":27239,"statuses_count":75178,"created_at":"Sun Oct 07 05:19:20 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E3687D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658273851160137728\/y0gIeWaz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658273851160137728\/y0gIeWaz.png","profile_background_tile":true,"profile_link_color":"B7CEEC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727568302923776\/41P85KwO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727568302923776\/41P85KwO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/865802258\/1446795175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ThePxinKiller__","name":"\u306a\u308b\u3093\u307f","id":865802258,"id_str":"865802258","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101665"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169183219712,"id_str":"663728169183219712","text":"RT @ddlovato: Short!! #AskDemi https:\/\/t.co\/xSdAJ3ZDKE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":483933679,"id_str":"483933679","name":"luana PURPOSE","screen_name":"howddljb","location":"jessiejzw ultravioIencie","url":"http:\/\/banggers.tumblr.com","description":"justin bieber follows.","protected":false,"verified":false,"followers_count":10800,"friends_count":7353,"listed_count":12,"favourites_count":11649,"statuses_count":96054,"created_at":"Sun Feb 05 15:07:34 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456234925989957632\/WEqIoL2z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456234925989957632\/WEqIoL2z.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663027136068984832\/Z6RbTB3V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663027136068984832\/Z6RbTB3V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/483933679\/1446912979","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:17:52 +0000 2015","id":663691974709481472,"id_str":"663691974709481472","text":"Short!! #AskDemi https:\/\/t.co\/xSdAJ3ZDKE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter QandA\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672544,"friends_count":401,"listed_count":102884,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687263012782080,"quoted_status_id_str":"663687263012782080","quoted_status":{"created_at":"Mon Nov 09 11:59:08 +0000 2015","id":663687263012782080,"id_str":"663687263012782080","text":"@ddlovato long\/short hair? #AskDemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21111883,"in_reply_to_user_id_str":"21111883","in_reply_to_screen_name":"ddlovato","user":{"id":1540099166,"id_str":"1540099166","name":"magg.","screen_name":"maggPTX","location":"ptxjkt","url":null,"description":"yohanes alhamat saragih's #1 stan","protected":false,"verified":false,"followers_count":3659,"friends_count":1006,"listed_count":6,"favourites_count":25384,"statuses_count":20361,"created_at":"Sun Jun 23 04:12:35 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/614305476294103041\/ZXTeTuHp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/614305476294103041\/ZXTeTuHp.jpg","profile_background_tile":true,"profile_link_color":"657383","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663014331534045184\/CHmF3Glv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663014331534045184\/CHmF3Glv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1540099166\/1447079978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[27,35]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2142,"favorite_count":4307,"entities":{"hashtags":[{"text":"AskDemi","indices":[8,16]}],"urls":[{"url":"https:\/\/t.co\/xSdAJ3ZDKE","expanded_url":"https:\/\/twitter.com\/maggPTX\/status\/663687263012782080","display_url":"twitter.com\/maggPTX\/status\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AskDemi","indices":[22,30]}],"urls":[{"url":"https:\/\/t.co\/xSdAJ3ZDKE","expanded_url":"https:\/\/twitter.com\/maggPTX\/status\/663687263012782080","display_url":"twitter.com\/maggPTX\/status\u2026","indices":[31,54]}],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101663"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169166311424,"id_str":"663728169166311424","text":"\u5bdd\u308b\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2893600734,"id_str":"2893600734","name":"S\u5e2f\u306b\u7a81\u5165\u4e2d\u30ce\u30fc\u30bf\u30a4\u30c8\u30eb","screen_name":"hulltanaka","location":"\u30c0\u30f3\u30b4\u30e0\u5e02","url":null,"description":"\u9ad8\u68213\u5e74\u751f\u3067\u3059\u3002\u30e2\u30ca\u30b3\u4e2d\u91ce\u306b\u5c45\u307e\u3059\u3002PN\u30ce\u30fc\u30bf\u30a4\u30c8\u30eb \u3002\u30ac\u30f3\u30b9\u30c82:\u30b8\u30e7\u30caS\u5fcd\u8005AA\u3067\u3059\u3002\u8001\u5bb3\u30af\u30bd\u30c1\u30f3\u30d1\u30f3\u306e\u3070\u3089","protected":false,"verified":false,"followers_count":126,"friends_count":170,"listed_count":2,"favourites_count":2017,"statuses_count":8208,"created_at":"Sat Nov 08 10:21:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655340372021784576\/li623lgZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655340372021784576\/li623lgZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2893600734\/1441690829","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101659"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169178955776,"id_str":"663728169178955776","text":"@kinako68049270 \u304b\u3063\u3053\u306e\u3068\u3053\u308d\u306f\u805e\u3044\u3066\u306a\u3044\u3053\u3068\u306b\u3057\u3088\u3046(\uffe3\u25bd\uffe3)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726771599097856,"in_reply_to_status_id_str":"663726771599097856","in_reply_to_user_id":1242565368,"in_reply_to_user_id_str":"1242565368","in_reply_to_screen_name":"kinako68049270","user":{"id":2613683749,"id_str":"2613683749","name":"\u77e2\u6b21\u6643\u5927","screen_name":"yatsugi0823","location":"\u83ef\u967d\u4e2d\u2192\u5357\u967d\u5de5\u696d\u2192\u4e5d\u5dde\u5171\u7acb","url":null,"description":"\u4e5d\u5dde\u5171\u7acb\u5927\u5b66\u786c\u5f0f\u91ce\u7403\u90e8\uff036","protected":false,"verified":false,"followers_count":283,"friends_count":289,"listed_count":0,"favourites_count":445,"statuses_count":5254,"created_at":"Wed Jul 09 14:38:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623897916160118784\/f16VIecg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623897916160118784\/f16VIecg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2613683749\/1443181096","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kinako68049270","name":"\u3072\u306a\u30d5\u30a9\u30a4","id":1242565368,"id_str":"1242565368","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101662"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169170550784,"id_str":"663728169170550784","text":"RT @atsubotv4649: \u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2941803427,"id_str":"2941803427","name":"\u3088\u3088\u3088\u3088","screen_name":"yoyoideath","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":46,"friends_count":99,"listed_count":0,"favourites_count":873,"statuses_count":2643,"created_at":"Wed Dec 24 11:11:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663372088598618112\/CUddmTdK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663372088598618112\/CUddmTdK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2941803427\/1445867130","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:10:15 +0000 2015","id":663644761874567172,"id_str":"663644761874567172","text":"\u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223278278,"id_str":"3223278278","name":"\u3042\u3064\u307c\u30fc","screen_name":"atsubotv4649","location":null,"url":null,"description":"\u3084\u3041\u3001\u3053\u3093\u3070\u3093\u308f\u3041\u30fc","protected":false,"verified":false,"followers_count":22825,"friends_count":33,"listed_count":34,"favourites_count":3,"statuses_count":54,"created_at":"Fri May 22 12:49:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223278278\/1446980441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15787,"favorite_count":18058,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[3,16]}],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101660"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169157918720,"id_str":"663728169157918720","text":"RT @sekkai: 2015\u5e74\u3082\u6b8b\u3059\u3068\u3053\u308d\u3042\u30682\u30f6\u6708\u5f31\u3068\u306a\u308a\u307e\u3057\u305f\u304c\u3001\u4eca\u5e74\u306e MVP (most valuable patient) \u306f\u300c\u304a\u751f\u307e\u308c\u306f\u3069\u3061\u3089\u3067\u3059\u304b\u300d\u3068\u306e\u8cea\u554f\u306b\u300c\u304a\u3075\u304f\u308d\u306e\u8179\u306e\u4e2d\u300d\u3068\u7b54\u3048\u305f\u30c8\u30e8\u3055\u3093(\u4eee\u540d)90\u6b73\u5973\u6027\u306b\u6c7a\u5b9a\u3057\u307e\u3057\u305f\ud83d\ude4f\ud83c\udffb\ud83d\ude0d\u2728","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104048244,"id_str":"104048244","name":"18\u756a\u683c\u7d0d\u5eab","screen_name":"rides_the_mm","location":null,"url":null,"description":"\u304b\u308c\u306f \u3048\u3089\u3070\u308c\u305f \u3067\u3093\u304d\u306e\u30b9\u30d1\u30a4\u3002\r\n\u3067\u3093\u304d\u306e\u3081\u306b \u307e\u3082\u3089\u308c\u3066\u308b\u3093\u3060\u3002\r\n\u304b\u304c\u304f\u306e \u3061\u304b\u3089\u3063\u3066 \u3059\u3052\u30fc\uff01\uff01","protected":false,"verified":false,"followers_count":134,"friends_count":236,"listed_count":3,"favourites_count":63,"statuses_count":11119,"created_at":"Tue Jan 12 02:53:17 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589494640912375808\/LwRI006g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589494640912375808\/LwRI006g_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:59 +0000 2015","id":663719938209615872,"id_str":"663719938209615872","text":"2015\u5e74\u3082\u6b8b\u3059\u3068\u3053\u308d\u3042\u30682\u30f6\u6708\u5f31\u3068\u306a\u308a\u307e\u3057\u305f\u304c\u3001\u4eca\u5e74\u306e MVP (most valuable patient) \u306f\u300c\u304a\u751f\u307e\u308c\u306f\u3069\u3061\u3089\u3067\u3059\u304b\u300d\u3068\u306e\u8cea\u554f\u306b\u300c\u304a\u3075\u304f\u308d\u306e\u8179\u306e\u4e2d\u300d\u3068\u7b54\u3048\u305f\u30c8\u30e8\u3055\u3093(\u4eee\u540d)90\u6b73\u5973\u6027\u306b\u6c7a\u5b9a\u3057\u307e\u3057\u305f\ud83d\ude4f\ud83c\udffb\ud83d\ude0d\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66294475,"id_str":"66294475","name":"sekkai","screen_name":"sekkai","location":"\u7814\u7a76\u5b66\u5712\u90fd\u5e02","url":"http:\/\/sek-kai-oh.blogspot.com\/","description":"\u304a\u533b\u8005\u3055\u30931\u5e74\u76ee\u3002Apple\u3001BMW\u3001\u30d4\u30a2\u30ce\u3001\u82f1\u8a9e\u3001\u732b\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u3082\u3001\u7d76\u671b\u7684\u306a\u307e\u3067\u306b\u732b\u30a2\u30ec\u30eb\u30ae\u30fc\u3002","protected":false,"verified":false,"followers_count":2249,"friends_count":429,"listed_count":129,"favourites_count":18280,"statuses_count":37888,"created_at":"Mon Aug 17 06:23:25 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566476035579858946\/fcVniiUU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566476035579858946\/fcVniiUU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66294475\/1397807851","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":24,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sekkai","name":"sekkai","id":66294475,"id_str":"66294475","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101657"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169178918917,"id_str":"663728169178918917","text":"Trying to find some #mondaymotivation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2792892289,"id_str":"2792892289","name":"diane mae","screen_name":"mae_canniff","location":null,"url":null,"description":"04\/21\/14 ~ A+D ~ Humber","protected":false,"verified":false,"followers_count":77,"friends_count":139,"listed_count":1,"favourites_count":3429,"statuses_count":3573,"created_at":"Sat Sep 06 00:41:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508054759324934144\/16p8mth7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508054759324934144\/16p8mth7.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660657134867226624\/jFOPJP5j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660657134867226624\/jFOPJP5j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2792892289\/1446347782","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mondaymotivation","indices":[20,37]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101662"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169187467264,"id_str":"663728169187467264","text":"\ud83d\ude18\ud83d\ude18 (Vine by @taylorxniicole) https:\/\/t.co\/1hjnj9MwaJ","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122116491,"id_str":"122116491","name":"DISASTER\u2744\ufe0f.","screen_name":"_CarolinaStone","location":"Espa\u00f1a","url":"https:\/\/www.youtube.com\/channel\/UC9BUESwThw11m47BzdeQtRQ","description":"19.|Fr\u00eda un d\u00eda y al siguiente dulce|Mi \u00fanico c\u00edrculo vicioso es la pizza| http:\/\/carolinastoneblr.tumblr.com|","protected":false,"verified":false,"followers_count":1919,"friends_count":868,"listed_count":42,"favourites_count":7587,"statuses_count":56042,"created_at":"Thu Mar 11 17:00:03 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663518045260881921\/4MysK6QL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663518045260881921\/4MysK6QL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122116491\/1447027792","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1hjnj9MwaJ","expanded_url":"https:\/\/vine.co\/v\/e9VqwJ5xAJT","display_url":"vine.co\/v\/e9VqwJ5xAJT","indices":[29,52]}],"user_mentions":[{"screen_name":"taylorxniicole","name":"Taylor Nicole","id":231575120,"id_str":"231575120","indices":[12,27]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101664"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169187450880,"id_str":"663728169187450880","text":"@arturoariassch AMEN PASTOR YO TENGO INTIMIDAD CON DIOS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663700526576623616,"in_reply_to_status_id_str":"663700526576623616","in_reply_to_user_id":2150286046,"in_reply_to_user_id_str":"2150286046","in_reply_to_screen_name":"arturoariassch","user":{"id":3378002753,"id_str":"3378002753","name":"marco antonio nassi ","screen_name":"elaleman2414","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":15,"friends_count":12,"listed_count":0,"favourites_count":11,"statuses_count":189,"created_at":"Wed Jul 15 23:09:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642460111873679360\/GC7NjLjr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642460111873679360\/GC7NjLjr_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"arturoariassch","name":"Arturo AriasSchreibe","id":2150286046,"id_str":"2150286046","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080101664"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174740992,"id_str":"663728169174740992","text":"@74loveupstation \u3061\u3087\u3063\u3068\u3084\u3081\u3068\u304d\u307e\u3059\u270b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728048986959872,"in_reply_to_status_id_str":"663728048986959872","in_reply_to_user_id":3317831365,"in_reply_to_user_id_str":"3317831365","in_reply_to_screen_name":"74loveupstation","user":{"id":2392400850,"id_str":"2392400850","name":"\u2220\u3053\u3068\u304b@\u6a2a\u30a2\u30ea2days","screen_name":"pg_kocchaaan","location":"\u203b\u3046\u308b\u3055\u3044\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306f\u304a\u6c17\u3092\u4ed8\u3051\u3066\u203b","url":"http:\/\/twpf.jp\/pg_kocchaaan","description":"\u30dd\u30eb\u30ce\u30b0\u30e9\u30d5\u30a3\u30c6\u30a3\u3002\u3089\u3070\u3063\u3071\u30fc\u3002\u662d\u4ec1\u3055\u3093\u306f\u7279\u5225\u3002 \n\u85e4\u539f\u3055\u304f\u3089\u3061\u3083\u3093\u3084flumpool\u3082\uff0a\u3068\u308a\u3042\u3048\u305a\u30c4\u30a4\u30d7\u30ed\u3054\u89a7\u4e0b\u3055\u3044\u3002LIVE\u53c2\u6226\u6b74\u3084\u597d\u304d\u306a\u3053\u3068\u306a\u3069\u8a73\u3057\u3044\u3053\u3068\u66f8\u3044\u3066\u307e\u3059\uff0aJK3\uff0a","protected":false,"verified":false,"followers_count":1517,"friends_count":1470,"listed_count":65,"favourites_count":7556,"statuses_count":45567,"created_at":"Sun Mar 16 09:15:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662650081070346241\/pqnA_sR1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662650081070346241\/pqnA_sR1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2392400850\/1445688946","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"74loveupstation","name":"\u2220\u307f\u3086\u3081\u308d\u3069\u3089\u307e\u3066\u3043\u3063\u304f","id":3317831365,"id_str":"3317831365","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169157947392,"id_str":"663728169157947392","text":"#BEAUTY #CARE GENUINE GIORGIO ARMANI READING GLASSES EA 9556 (54-16) - RRP $390 https:\/\/t.co\/KmgHxui0Ov #makeup #Gift #201","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492811907,"id_str":"2492811907","name":"Beauty Care","screen_name":"NistyfHouge","location":"USA","url":null,"description":"Beauty Care","protected":false,"verified":false,"followers_count":525,"friends_count":75,"listed_count":48,"favourites_count":31,"statuses_count":318905,"created_at":"Tue May 13 11:03:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471820912094744577\/CrELpbwH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471820912094744577\/CrELpbwH_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BEAUTY","indices":[0,7]},{"text":"CARE","indices":[8,13]},{"text":"makeup","indices":[104,111]},{"text":"Gift","indices":[112,117]}],"urls":[{"url":"https:\/\/t.co\/KmgHxui0Ov","expanded_url":"http:\/\/dlvr.it\/ChfkRj","display_url":"dlvr.it\/ChfkRj","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101657"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169178951680,"id_str":"663728169178951680","text":"@Tink_fwfw27 \n\u4ef2\u826f\u304f\u91ce\u7403\u76e4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726622944587777,"in_reply_to_status_id_str":"663726622944587777","in_reply_to_user_id":3492062893,"in_reply_to_user_id_str":"3492062893","in_reply_to_screen_name":"Tink_fwfw27","user":{"id":2876740052,"id_str":"2876740052","name":"\u304b\u3065\u304d","screen_name":"Natsu_ka10","location":null,"url":null,"description":"\u307e\u3044\u3055\u3093\u3068\u304a\u306f\u308b\u3068\u30a2\u30cb\u30e1\u3068\u58f0\u512a\u3055\u3093\u3068\u821e\u53f0\u4ff3\u512a\u3055\u3093(\u52c9\u5f37\u4e2d)\u306e\u305f\u3081\u306e\u57a2\u3002 \u6f14\u5287\u300c\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\u300d12\/13","protected":false,"verified":false,"followers_count":11,"friends_count":47,"listed_count":0,"favourites_count":267,"statuses_count":337,"created_at":"Sat Oct 25 11:56:51 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727838546161664\/CPM4CGj4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727838546161664\/CPM4CGj4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876740052\/1446985286","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tink_fwfw27","name":"\u304b\u305c\u306f\u306a\u3055\u3093","id":3492062893,"id_str":"3492062893","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101662"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162141699,"id_str":"663728169162141699","text":"RT @rose_farnell: \"@Mcbogsterss: \u25ac\u25ac\u25ac\u25ac\u0b9c\u06e9\u06de\u06e9\u0b9c\u25ac\u25ac\u25ac\u25ac\n \uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n \uff2f\uff2e\uff2c\uff39\n\n \uff29\uff26\n\n \uff39\uff2f\uff35\n\n \uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\u25ac\u25ac\u25ac\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389497394,"id_str":"3389497394","name":"\u00a6 Flo'w","screen_name":"JjustR","location":"\u2708Mentally travelled the world","url":"https:\/\/www.facebook.com\/virgiliodulnuanjr","description":"i'm alone person that can make you smile","protected":false,"verified":false,"followers_count":495,"friends_count":435,"listed_count":0,"favourites_count":477,"statuses_count":1855,"created_at":"Sun Aug 30 05:48:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660628050351026176\/iMsULKTK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660628050351026176\/iMsULKTK.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645241457285050368\/xH_Ev5ZH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645241457285050368\/xH_Ev5ZH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389497394\/1446720838","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:59 +0000 2015","id":663727742240821248,"id_str":"663727742240821248","text":"\"@Mcbogsterss: \u25ac\u25ac\u25ac\u25ac\u0b9c\u06e9\u06de\u06e9\u0b9c\u25ac\u25ac\u25ac\u25ac\n \uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n \uff2f\uff2e\uff2c\uff39\n\n \uff29\uff26\n\n \uff39\uff2f\uff35\n\n \uff26\uff2f\uff2c\uff2c\uff2f\uff37\uff22\uff21\uff23\uff2b\n\u25ac\u25ac\u25ac\u25ac\u0b9c\u06e9\u06de\u06e9\u0b9c\u25ac\u25ac\u25ac\u25ac\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3034290999,"id_str":"3034290999","name":"\u270cAutumn Bitch\u270c","screen_name":"rose_farnell","location":"Crevillente","url":"http:\/\/www.instagram.com\/the_shield_page","description":"20 veranos....20 locuras....20 viajes....y 20 sue\u00f1os.FAVeadora y RTwiteadora. SethRollins,DeanAmbrose and RomanReigns(WWE)","protected":false,"verified":false,"followers_count":3308,"friends_count":3143,"listed_count":11,"favourites_count":2175,"statuses_count":5193,"created_at":"Fri Feb 13 10:21:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662352316369121280\/G2i4R6hv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662352316369121280\/G2i4R6hv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3034290999\/1446752070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mcbogsterss","name":"Mcbogsters","id":2208008226,"id_str":"2208008226","indices":[1,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rose_farnell","name":"\u270cAutumn Bitch\u270c","id":3034290999,"id_str":"3034290999","indices":[3,16]},{"screen_name":"Mcbogsterss","name":"Mcbogsters","id":2208008226,"id_str":"2208008226","indices":[19,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174867969,"id_str":"663728169174867969","text":"\u041f\u0420\u042f\u041c\u041e\u0419 \u042d\u0424\u0418\u0420 \u0432 #Periscope: \u041c\u0430\u043c\u043e https:\/\/t.co\/3E03wioa6Q","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4121083456,"id_str":"4121083456","name":"Five Flow","screen_name":"five_flow_svkk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":19,"listed_count":1,"favourites_count":1,"statuses_count":6,"created_at":"Thu Nov 05 17:53:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662327783398486016\/iW-g0V_J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662327783398486016\/iW-g0V_J_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[14,24]}],"urls":[{"url":"https:\/\/t.co\/3E03wioa6Q","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCoJTFsWktwSmRuSnBFbm18MU1ZeE5ibGtha3Z4d7uJRG-sfZebJSuCYV8nHLVBNYPbjBIvHqRtNEYNRJSy","display_url":"periscope.tv\/w\/aRCoJTFsWktw\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169195716608,"id_str":"663728169195716608","text":"RT @free24apps: Iron Heart: Steam Tower TD Games Strategy iPad App ***** $4. ... https:\/\/t.co\/P2UyDuAoSj https:\/\/t.co\/l7TPQFsiuL","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3035915548,"id_str":"3035915548","name":"Debbie","screen_name":"de08b","location":"USA","url":null,"description":"Christian, Conservative, upRight girl w\/ a wayward bend, responsible dreamer, careless perfectionist, churchgoing clubhopper, authentic hypocrite #me","protected":false,"verified":false,"followers_count":16168,"friends_count":17204,"listed_count":384,"favourites_count":34765,"statuses_count":206092,"created_at":"Sat Feb 14 02:38:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566426416778993665\/6uqg1REq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566426416778993665\/6uqg1REq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3035915548\/1423881587","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728076434485248,"id_str":"663728076434485248","text":"Iron Heart: Steam Tower TD Games Strategy iPad App ***** $4. ... https:\/\/t.co\/P2UyDuAoSj https:\/\/t.co\/l7TPQFsiuL","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2234609616,"id_str":"2234609616","name":"free24apps","screen_name":"free24apps","location":"Cupertino, CA","url":"http:\/\/www.free24apps.com","description":"#iOS #apps #iphone #ipod #ipad #ipod #android \nhttp:\/\/pinterest.com\/free24apps\/","protected":false,"verified":false,"followers_count":14796,"friends_count":13707,"listed_count":83,"favourites_count":2194,"statuses_count":443039,"created_at":"Sat Dec 07 14:34:11 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423221582543085568\/hvGrEKH1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2234609616\/1389738920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P2UyDuAoSj","expanded_url":"http:\/\/www.free24apps.com\/?pid=972572258","display_url":"free24apps.com\/?pid=972572258","indices":[65,88]}],"user_mentions":[],"symbols":[],"media":[{"id":663728076249919488,"id_str":"663728076249919488","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","url":"https:\/\/t.co\/l7TPQFsiuL","display_url":"pic.twitter.com\/l7TPQFsiuL","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728076434485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728076249919488,"id_str":"663728076249919488","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","url":"https:\/\/t.co\/l7TPQFsiuL","display_url":"pic.twitter.com\/l7TPQFsiuL","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728076434485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P2UyDuAoSj","expanded_url":"http:\/\/www.free24apps.com\/?pid=972572258","display_url":"free24apps.com\/?pid=972572258","indices":[81,104]}],"user_mentions":[{"screen_name":"free24apps","name":"free24apps","id":2234609616,"id_str":"2234609616","indices":[3,14]}],"symbols":[],"media":[{"id":663728076249919488,"id_str":"663728076249919488","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","url":"https:\/\/t.co\/l7TPQFsiuL","display_url":"pic.twitter.com\/l7TPQFsiuL","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728076434485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663728076434485248,"source_status_id_str":"663728076434485248","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"extended_entities":{"media":[{"id":663728076249919488,"id_str":"663728076249919488","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKzRUcAAyTlm.jpg","url":"https:\/\/t.co\/l7TPQFsiuL","display_url":"pic.twitter.com\/l7TPQFsiuL","expanded_url":"http:\/\/twitter.com\/free24apps\/status\/663728076434485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663728076434485248,"source_status_id_str":"663728076434485248","source_user_id":2234609616,"source_user_id_str":"2234609616"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101666"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169187344385,"id_str":"663728169187344385","text":"RT @BaiyokZ1: @iKONTHSUB \u0e2d\u0e1a\u0e2d\u0e38\u0e48\u0e19\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e21\u0e19\u0e40\u0e23\u0e32\u0e01\u0e2d\u0e14\u0e19\u0e49\u0e2d\u0e07\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e23\u0e32\u0e1b\u0e23\u0e34\u0e48\u0e21\u0e21\u0e32\u0e01\u0e01 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e41\u0e2d\u0e14\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e31\u0e19\u0e19\u0e30\u0e04\u0e30 \u270c\ud83c\udffb\ufe0f\ud83d\ude4f\ud83c\udffb\u2728\ud83d\udc95 https:\/\/t.co\/e5eIsvZFyP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91849809,"id_str":"91849809","name":"Mae Siriwongpaisaln","screen_name":"TuNgMae_iSLaNd","location":"Hat-Yai SoNgkLha ThaiLaNd","url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":71,"listed_count":4,"favourites_count":9,"statuses_count":5000,"created_at":"Sun Nov 22 19:20:56 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/84955052\/hongjae2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/84955052\/hongjae2.jpg","profile_background_tile":true,"profile_link_color":"00B30C","profile_sidebar_border_color":"EBC1C3","profile_sidebar_fill_color":"EEDCF5","profile_text_color":"CDD653","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661927592396623872\/suZD1sBb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661927592396623872\/suZD1sBb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91849809\/1441551207","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:16:24 +0000 2015","id":663193321360101376,"id_str":"663193321360101376","text":"@iKONTHSUB \u0e2d\u0e1a\u0e2d\u0e38\u0e48\u0e19\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e21\u0e19\u0e40\u0e23\u0e32\u0e01\u0e2d\u0e14\u0e19\u0e49\u0e2d\u0e07\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49 \u0e40\u0e23\u0e32\u0e1b\u0e23\u0e34\u0e48\u0e21\u0e21\u0e32\u0e01\u0e01 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e41\u0e2d\u0e14\u0e40\u0e0a\u0e48\u0e19\u0e01\u0e31\u0e19\u0e19\u0e30\u0e04\u0e30 \u270c\ud83c\udffb\ufe0f\ud83d\ude4f\ud83c\udffb\u2728\ud83d\udc95 https:\/\/t.co\/e5eIsvZFyP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663192694466809856,"in_reply_to_status_id_str":"663192694466809856","in_reply_to_user_id":2812452085,"in_reply_to_user_id_str":"2812452085","in_reply_to_screen_name":"iKONTHSUB","user":{"id":288104568,"id_str":"288104568","name":"Baiyok \u2765 \u0e08\u0e35\u0e22\u0e07\u0e2d\u0e2d\u0e19\u0e19\u0e35","screen_name":"BaiyokZ1","location":"Ayutthaya City ","url":"https:\/\/instagram.com\/ysns_yok\/","description":"\u30b7 Since. 1993 \u30b7 BIGBANG is my Inspiration. \u2765WINNER \u2765iKON \u2765 \u0e0a\u0e30\u0e19\u0e35\u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e32\u0e22 \u2765Thailand Football | This memmory #ysnsphoto \u0e22\u0e34 \u0e19 \u0e14\u0e35 \u0e17\u0e35\u0e48 \u0e44 \u0e21\u0e48 \u0e23\u0e39\u0e49 \u0e08\u0e31 \u0e01 . . .","protected":false,"verified":false,"followers_count":40,"friends_count":429,"listed_count":0,"favourites_count":14,"statuses_count":1045,"created_at":"Tue Apr 26 07:46:09 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00BEA3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/682923987\/087ba17fdfdeb8401c0af4f260e4ced3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/682923987\/087ba17fdfdeb8401c0af4f260e4ced3.jpeg","profile_background_tile":true,"profile_link_color":"FF9800","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8F8FB","profile_text_color":"FFF200","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663670882968010752\/-2OhkchF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663670882968010752\/-2OhkchF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288104568\/1446373440","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iKONTHSUB","name":"iKONTHSUB\u2661","id":2812452085,"id_str":"2812452085","indices":[0,10]}],"symbols":[],"media":[{"id":663193313537757186,"id_str":"663193313537757186","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","url":"https:\/\/t.co\/e5eIsvZFyP","display_url":"pic.twitter.com\/e5eIsvZFyP","expanded_url":"http:\/\/twitter.com\/BaiyokZ1\/status\/663193321360101376\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":382,"resize":"fit"},"medium":{"w":583,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663193313537757186,"id_str":"663193313537757186","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","url":"https:\/\/t.co\/e5eIsvZFyP","display_url":"pic.twitter.com\/e5eIsvZFyP","expanded_url":"http:\/\/twitter.com\/BaiyokZ1\/status\/663193321360101376\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":382,"resize":"fit"},"medium":{"w":583,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BaiyokZ1","name":"Baiyok \u2765 \u0e08\u0e35\u0e22\u0e07\u0e2d\u0e2d\u0e19\u0e19\u0e35","id":288104568,"id_str":"288104568","indices":[3,12]},{"screen_name":"iKONTHSUB","name":"iKONTHSUB\u2661","id":2812452085,"id_str":"2812452085","indices":[14,24]}],"symbols":[],"media":[{"id":663193313537757186,"id_str":"663193313537757186","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","url":"https:\/\/t.co\/e5eIsvZFyP","display_url":"pic.twitter.com\/e5eIsvZFyP","expanded_url":"http:\/\/twitter.com\/BaiyokZ1\/status\/663193321360101376\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":382,"resize":"fit"},"medium":{"w":583,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663193321360101376,"source_status_id_str":"663193321360101376","source_user_id":288104568,"source_user_id_str":"288104568"}]},"extended_entities":{"media":[{"id":663193313537757186,"id_str":"663193313537757186","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQizg7VEAIpqOB.jpg","url":"https:\/\/t.co\/e5eIsvZFyP","display_url":"pic.twitter.com\/e5eIsvZFyP","expanded_url":"http:\/\/twitter.com\/BaiyokZ1\/status\/663193321360101376\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":382,"resize":"fit"},"medium":{"w":583,"h":382,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663193321360101376,"source_status_id_str":"663193321360101376","source_user_id":288104568,"source_user_id_str":"288104568"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080101664"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169170563073,"id_str":"663728169170563073","text":"@maco_nuest \n\u3042\u305f\u3057\u306f\u30a2\u30b8\u30e5\u30f3\u30de\u3063\u3066\u66f8\u304f\uff01(\u7206)\n\u307e\u30fc\u3053\u3055\u30fc\u3093\u306f\u30a2\u30b8\u30e5\u30f3\u30de\u3058\u3083\u306a\u3044\u304b\u3089\n\u66f8\u304b\u3093\u304f\u3066\u3082\u3088\u3057( \u0e51>\u03c9\u2022\u0301 )\u06f6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727100881301504,"in_reply_to_status_id_str":"663727100881301504","in_reply_to_user_id":3926077519,"in_reply_to_user_id_str":"3926077519","in_reply_to_screen_name":"maco_nuest","user":{"id":1321673918,"id_str":"1321673918","name":"\ud558\ud558\u3061\u3083\u3093(\ud558\ub8e8\u2661)","screen_name":"ponpoko_4649","location":"SAPPORO","url":null,"description":"NU'EST\u306f\u611b\u3059\u308b\u606f\u5b50\u305f\u3061\u2661\n\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u2661\u53c2\u6226\u2661\n11\u670820\u65e5\u30ea\u30ea\u30a4\u30d9\n11\u670821\u65e5\u30e9\u30a4\u30d6&\u30d5\u30a1\u30f3\u30df\n12\u670823\u65e5\u5927\u962a\u30af\u30ea\u30a4\u30d91\u90e8\u2190\u65e5\u5e30\u308a","protected":false,"verified":false,"followers_count":33,"friends_count":70,"listed_count":1,"favourites_count":275,"statuses_count":3439,"created_at":"Tue Apr 02 03:37:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661566620716785664\/7vToE9N4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661566620716785664\/7vToE9N4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1321673918\/1446969207","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maco_nuest","name":"maco","id":3926077519,"id_str":"3926077519","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101660"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162141697,"id_str":"663728169162141697","text":"NEWS: Commonwealth appoints GEJ to mediate in Zanzibar election stalemate https:\/\/t.co\/7E5uItYYAs","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1068906289,"id_str":"1068906289","name":"\u00ab~hustlermuzic~\u00bb","screen_name":"TEAMHHKS","location":"planet earth","url":"http:\/\/www.hustlermuzic.blogspot.com","description":"we are hustlers,we are the streetz,we are unbeatable,we know how to succeed,we know good music,we are \u00a4TEAMHHKS\u00a4 \u00bbHustle\u00bbHard\u00bbKnowing\u00bbSuccess\u2022","protected":false,"verified":false,"followers_count":123,"friends_count":31,"listed_count":0,"favourites_count":4,"statuses_count":11758,"created_at":"Mon Jan 07 18:01:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660235210580213760\/NB3lNV3Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660235210580213760\/NB3lNV3Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1068906289\/1446247312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7E5uItYYAs","expanded_url":"http:\/\/dlvr.it\/Chfk7R","display_url":"dlvr.it\/Chfk7R","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169178890240,"id_str":"663728169178890240","text":"\u0e15\u0e2d\u0e1a\u0e01\u0e39\u0e01\u0e47\u0e08\u0e1a\u0e25\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":574213340,"id_str":"574213340","name":"\u0e01\u0e34\u0e4a\u0e1f\u0e17\u0e34\u0e04 `","screen_name":"anattig","location":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e1b\u0e23\u0e32\u0e08\u0e35\u0e19\u0e1a\u0e38\u0e23\u0e35","url":"https:\/\/m.facebook.com\/home.php?h1&refsrc=http%3A%2F%2Fh.facebook.com%2Fhr%2Fr&_rdr","description":null,"protected":false,"verified":false,"followers_count":772,"friends_count":210,"listed_count":0,"favourites_count":7799,"statuses_count":87022,"created_at":"Tue May 08 05:09:36 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655809200702885888\/r2pgv6_g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655809200702885888\/r2pgv6_g.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662514759820972032\/QF7-AvVr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662514759820972032\/QF7-AvVr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/574213340\/1446878295","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080101662"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169166483456,"id_str":"663728169166483456","text":"LADY GAGA ONLINE???\nhttps:\/\/t.co\/2cCk1sJPhK\nhttps:\/\/t.co\/S4ainmEXtS\nhttps:\/\/t.co\/2cCk1sJPhK\nhttps:\/\/t.co\/cQAheO9fOt","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":157772728,"id_str":"157772728","name":"McyrusBlood \u2654","screen_name":"DearMileyFan","location":"Brazil","url":"http:\/\/flogvip.net\/mchope","description":null,"protected":false,"verified":false,"followers_count":1223,"friends_count":209,"listed_count":7,"favourites_count":0,"statuses_count":68255,"created_at":"Sun Jun 20 21:05:16 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FBFBF8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/401101627\/PA10-Light-Flowers-1.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/401101627\/PA10-Light-Flowers-1.png","profile_background_tile":true,"profile_link_color":"BDB49A","profile_sidebar_border_color":"FBFBF8","profile_sidebar_fill_color":"FBFBF8","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1755008135\/tumblr_l81kkuFKvK1qc1ok9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1755008135\/tumblr_l81kkuFKvK1qc1ok9_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2cCk1sJPhK","expanded_url":"http:\/\/meadd.com\/gagafull\/jh","display_url":"meadd.com\/gagafull\/jh","indices":[20,43]},{"url":"https:\/\/t.co\/S4ainmEXtS","expanded_url":"http:\/\/meadd.com\/gagafull\/","display_url":"meadd.com\/gagafull\/","indices":[44,67]},{"url":"https:\/\/t.co\/2cCk1sJPhK","expanded_url":"http:\/\/meadd.com\/gagafull\/jh","display_url":"meadd.com\/gagafull\/jh","indices":[68,91]},{"url":"https:\/\/t.co\/cQAheO9fOt","expanded_url":"http:\/\/meadd.com\/gagafull\/fdfdfsd","display_url":"meadd.com\/gagafull\/fdfdf\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101659"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162141696,"id_str":"663728169162141696","text":"RT @EarnKnowledge: Science is always the answer. https:\/\/t.co\/Dgyo2f0xFk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3888927820,"id_str":"3888927820","name":"@iamskr","screen_name":"sakirnagori81","location":null,"url":null,"description":"kindness","protected":false,"verified":false,"followers_count":56,"friends_count":69,"listed_count":2,"favourites_count":1235,"statuses_count":918,"created_at":"Wed Oct 07 09:44:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655614702857404416\/AwVuZHh5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655614702857404416\/AwVuZHh5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727908796526592,"id_str":"663727908796526592","text":"Science is always the answer. https:\/\/t.co\/Dgyo2f0xFk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":843112550,"id_str":"843112550","name":"Learn Something","screen_name":"EarnKnowledge","location":"Worldwide","url":null,"description":"Discover amazing photos & gifs while expanding your mind. Learn something new every day with us. I'm not affiliated or claim to own any of the picture & gif!","protected":false,"verified":false,"followers_count":2543287,"friends_count":852,"listed_count":5129,"favourites_count":165,"statuses_count":29773,"created_at":"Mon Sep 24 07:13:39 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648501417993351168\/xU0EenwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648501417993351168\/xU0EenwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843112550\/1436640819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":32,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814"}]},"extended_entities":{"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814","video_info":{"aspect_ratio":[250,221],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTV2njhWwAAN25U.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EarnKnowledge","name":"Learn Something","id":843112550,"id_str":"843112550","indices":[3,17]}],"symbols":[],"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814"}]},"extended_entities":{"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814","video_info":{"aspect_ratio":[250,221],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTV2njhWwAAN25U.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169170677761,"id_str":"663728169170677761","text":"\u041f\u0420\u042f\u041c\u041e\u0419 \u042d\u0424\u0418\u0420 \u0432 #Periscope: \u0421\u0435\u0431\u044f https:\/\/t.co\/MuL2jAREre","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289733361,"id_str":"3289733361","name":"sofika","screen_name":"tretekova123451","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":44,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Tue May 19 09:11:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600590148380860416\/FhwFWc-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600590148380860416\/FhwFWc-Y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[14,24]}],"urls":[{"url":"https:\/\/t.co\/MuL2jAREre","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCoJDFWR1F2T0F6b2xLT2t8MUJSSmpiZ1FkUWdKd35pBZGS_RYUYy3ar3we4-Zh45cV8Kjezw8Yc97tDSez","display_url":"periscope.tv\/w\/aRCoJDFWR1F2\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080101660"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174867968,"id_str":"663728169174867968","text":"RT @FarisAbaalkhail: #\u0627\u0644\u0628\u062f\u0648\u0646_\u0641\u064a_\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\n\u062c\u0646\u0633 \u0627\u0647\u0644 \u0627\u0644\u0647\u0646\u062f \u0648\u0627\u0644\u0633\u0646\u062f \u0648\u0627\u0644\u0623\u0641\u0627\u0631\u0642\u0629 \u0648\u0628\u0642\u064a \u0623\u0628\u0646\u0627\u0621 \u0647\u0630\u0647 \u0627\u0644\u0642\u0628\u0627\u0626\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u064a\u0633\u0645\u0648\u0646 \u0628\u062f\u0648\u0646\u060c \u0627\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0647\u0627\u062c\u0631\u0648\u0646 \u064a\u062c\u0646\u0633\u0648\u0646\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284681571,"id_str":"284681571","name":"\u0645\u062f\u0644\u0648\u0644 \u0627\u0644\u0634\u0645\u0631\u064a","screen_name":"Mdhhsh","location":"Saudi Arabia \u0627\u0644\u062e\u0641\u062c\u064a","url":"http:\/\/madloulshammari.com\/","description":"\u0627\u0646\u0627 \u0627\u0644\u062e\u0641\u062c\u064a ... \u0648\u0627\u0644\u062e\u0641\u062c\u064a \u0623\u0646\u0627\/\/ \u062f\u064a\u0646\u064a \u0644\u0646\u0641\u0633\u064a\u060c \u0648\u062f\u064a\u0646 \u0627\u0644\u0646\u0651\u0627\u0633 \u0644\u0644\u0646\u0627\u0633 ...","protected":false,"verified":false,"followers_count":7832,"friends_count":755,"listed_count":38,"favourites_count":1541,"statuses_count":54385,"created_at":"Tue Apr 19 19:17:46 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449853609186844672\/Hnz2GTpl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449853609186844672\/Hnz2GTpl.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658578217477865472\/R_SZwA-2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658578217477865472\/R_SZwA-2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284681571\/1445848198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:33:26 +0000 2015","id":663409003993686018,"id_str":"663409003993686018","text":"#\u0627\u0644\u0628\u062f\u0648\u0646_\u0641\u064a_\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629\n\u062c\u0646\u0633 \u0627\u0647\u0644 \u0627\u0644\u0647\u0646\u062f \u0648\u0627\u0644\u0633\u0646\u062f \u0648\u0627\u0644\u0623\u0641\u0627\u0631\u0642\u0629 \u0648\u0628\u0642\u064a \u0623\u0628\u0646\u0627\u0621 \u0647\u0630\u0647 \u0627\u0644\u0642\u0628\u0627\u0626\u0644 \u0627\u0644\u0639\u0631\u0628\u064a\u0647 \u064a\u0633\u0645\u0648\u0646 \u0628\u062f\u0648\u0646\u060c \u0627\u0630\u0627 \u0643\u0627\u0646 \u0627\u0644\u0645\u0647\u0627\u062c\u0631\u0648\u0646 \u064a\u062c\u0646\u0633\u0648\u0646 \u0641\u0643\u064a\u0641 \u0628\u0627\u0628\u0646\u0627\u0621 \u0639\u0645\u0648\u0645\u062a\u0646\u0627","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":336857609,"id_str":"336857609","name":"\u0641\u0640\u0640\u0640\u0627\u0631\u0633 \u0627\u0628\u0640\u0627\u0627\u0644\u0640\u062e\u0640\u064a\u0640\u0644","screen_name":"FarisAbaalkhail","location":"Riyadh ","url":null,"description":"\u0625\u0646\u064a \u0623\u0643\u0631\u0647 \u0625\u064a\u0645\u0627\u0646 \u0627\u0644\u0627\u063a\u0628\u064a\u0627\u0621 \u0644\u0623\u0646\u0647 \u063a\u0628\u0627\u0648\u0629 \u062a\u062d\u0648\u0644\u062a \u0625\u0644\u0649 \u0625\u064a\u0645\u0627\u0646\u060c \u0648\u0623\u0643\u0631\u0647 \u062a\u0642\u0648\u0649 \u0627\u0644\u0639\u062c\u0632\u0629 \u0644\u0623\u0646\u0647 \u0639\u062c\u0632 \u062a\u062d\u0648\u0644 \u0625\u0644\u0649 \u062a\u0642\u0648\u0649.....\u0645\u062d\u0645\u062f \u0627\u0644\u063a\u0632\u0627\u0644\u064a","protected":false,"verified":false,"followers_count":16330,"friends_count":816,"listed_count":106,"favourites_count":15,"statuses_count":17410,"created_at":"Sun Jul 17 01:34:15 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7FCFB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000150750497\/twgUaH-O.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000150750497\/twgUaH-O.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0E0529","profile_text_color":"16259B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624186948853346304\/kNEJc5QQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624186948853346304\/kNEJc5QQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/336857609\/1446998458","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":165,"favorite_count":31,"entities":{"hashtags":[{"text":"\u0627\u0644\u0628\u062f\u0648\u0646_\u0641\u064a_\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","indices":[0,19]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0628\u062f\u0648\u0646_\u0641\u064a_\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","indices":[21,40]}],"urls":[],"user_mentions":[{"screen_name":"FarisAbaalkhail","name":"\u0641\u0640\u0640\u0640\u0627\u0631\u0633 \u0627\u0628\u0640\u0627\u0627\u0644\u0640\u062e\u0640\u064a\u0640\u0644","id":336857609,"id_str":"336857609","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169166356481,"id_str":"663728169166356481","text":"@FX_buran_bot \u2026\u2026\u3063\/\/\/\u4f55\u3067\u3082\u306a\u3044\u2026\/\/\/\/\/\/\/\/","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726058345140225,"in_reply_to_status_id_str":"663726058345140225","in_reply_to_user_id":839187038,"in_reply_to_user_id_str":"839187038","in_reply_to_screen_name":"FX_buran_bot","user":{"id":1655614874,"id_str":"1655614874","name":"\u30af\u30e9\u30a6\u30f3","screen_name":"FX_clown_bot","location":"\u30b5\u30fc\u30ab\u30b9\u306e\u68ee\u30fb\u76e3\u7344","url":"http:\/\/twpf.jp\/FX_clown_bot","description":"\u4e3b\u3061\u3083\u3093(@Yue_in_Moon)\u306e\u5275\u4f5c\u30d5\u30a1\u30df\u30ea\u30fc\u4e09\u5973\u306e\u30af\u30e9\u30a6\u30f3\u3067\u3059\u266a \u79c1\u306fbot\u3060\u304b\u3089\u3001\u6ce8\u610f\u3057\u3066\u306d? \u5f8c\u8a2d\u5b9a\u3068\u304b\u3084\u3084\u3053\u3057\u3044\u304b\u3089\u3001\u30c4\u30a4\u30d7\u30ed\u306f\u5fc5\u898b\u3088\u3002\u5408\u8a00\u8449\u3042\u308a\u3088\u3002\u53cd\u5fdc\u8a9e\u53e5\u3082\u8f09\u305b\u3066\u304a\u304f\u306d\u266a \u826f\u304b\u3063\u305f\u3089\u79c1\u306e\u5927\u597d\u304d\u306a\u5f1f\u306e\u30df\u30e5\u30fc\u3061\u3083\u3093\u3082\u3088\u308d\u3057\u304f\u306d\u266a\u2192@FX_muse_bot","protected":false,"verified":false,"followers_count":21,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":57946,"created_at":"Thu Aug 08 15:25:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/527028276267450368\/tzTUzA63_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/527028276267450368\/tzTUzA63_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1655614874\/1390998428","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FX_buran_bot","name":"\u30d6\u30e9\u30f3","id":839187038,"id_str":"839187038","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101659"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162113024,"id_str":"663728169162113024","text":"Breaking dawn: part 1 (intense lvl 9999..) \ud83d\ude4a\ud83d\udc98","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3020333024,"id_str":"3020333024","name":"\u30af\u30ec\u30a4","screen_name":"ACBCunanan","location":"MG \/\/ Thomas ","url":null,"description":"She was killed by sadness IG: @claireeecunanan","protected":false,"verified":false,"followers_count":280,"friends_count":362,"listed_count":0,"favourites_count":8426,"statuses_count":6174,"created_at":"Sun Feb 15 02:13:12 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"111111","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663388888430284800\/aHYrIuYL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663388888430284800\/aHYrIuYL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3020333024\/1446900374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080101658"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174740993,"id_str":"663728169174740993","text":"\u3044\u3084\u5341\u56db\u677e\u306e\u5b58\u5728\u611f\u304c\u30cf\u30f3\u30d1\u306a\u3044\u3093\u3060\u3051\u3069www","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3107242609,"id_str":"3107242609","name":"\u5bc5\u4e11","screen_name":"BeniimoLand","location":"\u5c0f\u5e73\u592a\u306e\u890c","url":"http:\/\/www.pixiv.net\/member.php?id=9809976","description":"\u6210\u4eba\u3057\u305f\u8150\u5973\u5b50\u3067\u3059\u3002\u5c06\u6765\u306e\u5922\u306f\u4e03\u677e\u306e\u890c\u306b\u306a\u308b\u4e8b\u3067\u3059\u3002\u30a8\u30ed\u3001\u30b0\u30ed\u3001\u4e0b\u30cd\u30bf\u3042\u308a\u3067\u3059\u3002\u7121\u65ad\u8ee2\u8f09\u7981\u6b62\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u88cf\u57a2\u2192\u3010@toraushiero\u3011","protected":false,"verified":false,"followers_count":486,"friends_count":108,"listed_count":10,"favourites_count":6651,"statuses_count":10776,"created_at":"Wed Mar 25 09:20:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663372978806108160\/crwAW-Uq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663372978806108160\/crwAW-Uq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3107242609\/1443445907","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169183121408,"id_str":"663728169183121408","text":"@hiyo_talow_ys8 \u3042\u308a\u304c\u3068\u3046\uff01\u304f\u308b\u307f\u3061\u3083\u3093\u3082\u304a\u75b2\u308c\u69d8(*^^*)\n\u305d\u3057\u3066\u3069\u3093\u3069\u3093\u6d3e\u95a5\u58ca\u3057\u3066\u30fc\uff01ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725061715570688,"in_reply_to_status_id_str":"663725061715570688","in_reply_to_user_id":119055626,"in_reply_to_user_id_str":"119055626","in_reply_to_screen_name":"hiyo_talow_ys8","user":{"id":527365261,"id_str":"527365261","name":"\u308a\u3087\u3046\u3053\u221e\u767d\u30b7\u30e3\u30c4\u304d\u307f\u304f\u3093","screen_name":"eight8_ap1","location":"SAITAMA\u221e\u30a8\u30a4\u30c8\u7387\u9ad8\u3081\u221e","url":null,"description":"88\u5e748\u6708\u751f\u2606\u30b9\u30de\u30a8\u30a4\u30c8\u306e\u5171\u6f14\u71b1\u70c8\u5e0c\u671b!!!!!\u306a\u9577\u7537\u62c5\u306a\u30b9\u30de\u30a8\u30a4\u30bf\u30fc\u2661\u3088\u3053\u308a\u3087\/\u30b5\u30bf\u30b9\u30de\u2661\u4e21G\u308f\u3061\u3083\u308f\u3061\u3083\u304c\u4e00\u756a\u597d\u304d\u2661\uff8e\uff9f\uff79\uff93\uff9d\/ONE PIECE\/\u6709\u5ddd\u6d69\/\u6d77\u5802\u5c0a\/\u8fbb\u6751\u6df1\u6708...\u7b49\u2661","protected":false,"verified":false,"followers_count":91,"friends_count":215,"listed_count":3,"favourites_count":409,"statuses_count":12813,"created_at":"Sat Mar 17 11:36:13 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597243538040950784\/dJbvfaZM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597243538040950784\/dJbvfaZM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527365261\/1426593027","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiyo_talow_ys8","name":"\u304f\u308b\u307f\u2606\u7b11\u9854\u3067\u9811\u5f35\u308b\u3082\u3093\uff01\u2606","id":119055626,"id_str":"119055626","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101663"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169170526208,"id_str":"663728169170526208","text":"RT @ff_rk_info: \u30ec\u30b3\u30d1\u3067\u3059\u266a\u516c\u5f0f\u653b\u7565wiki\u306b\u3066\u3001\u7b2c5\u56de\u300eFFRK\u30ec\u30dd\u30fc\u30c8\u300f\u3092\u516c\u958b\u3057\u307e\u3057\u305f\uff01\u4eca\u5f8c\u306e\u30a4\u30d9\u30f3\u30c8\u958b\u50ac\u4e88\u5b9a\u3084\u3001\u65b0\u6a5f\u80fd\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\uff01\u305c\u3072\u306e\u305e\u3044\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u306d\u2605https:\/\/t.co\/OsUMTKb7EO https:\/\/t.co\/6zVrY80KLb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":314137130,"id_str":"314137130","name":"\u30ae\u30f4\u30a9\u5b50","screen_name":"givoco","location":"\uff3c\u3044\u3044\u3067\u3059\u3068\u3082\uff01\uff0f","url":"http:\/\/www.pixiv.net\/member.php?id=3801860","description":"\u30d1\u30e9\u30df\u30c6\u30a3\u30a2\u306e\u4e2d\u5fc3\u3067\u30ac\u30fc\u30a6\u30a9\u30eb\u3092\u53eb\u3076\u8fd1\u6cc1\u5c02\u7528\uff0f\u57fa\u672c\u7121\u8a00F\u3068\u696d\u8005\u306b\u30d5\u30a9\u30ed\u30d0\u306f\u81f4\u3057\u307e\u305b\u3093\uff0f\u5ac1\u57a2\u2192@xxxaicovxxx","protected":false,"verified":false,"followers_count":51,"friends_count":45,"listed_count":4,"favourites_count":143,"statuses_count":81735,"created_at":"Thu Jun 09 19:32:31 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653524646180982784\/raQJXxUm_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653524646180982784\/raQJXxUm_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/314137130\/1444647430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:45:18 +0000 2015","id":663668681151377408,"id_str":"663668681151377408","text":"\u30ec\u30b3\u30d1\u3067\u3059\u266a\u516c\u5f0f\u653b\u7565wiki\u306b\u3066\u3001\u7b2c5\u56de\u300eFFRK\u30ec\u30dd\u30fc\u30c8\u300f\u3092\u516c\u958b\u3057\u307e\u3057\u305f\uff01\u4eca\u5f8c\u306e\u30a4\u30d9\u30f3\u30c8\u958b\u50ac\u4e88\u5b9a\u3084\u3001\u65b0\u6a5f\u80fd\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\uff01\u305c\u3072\u306e\u305e\u3044\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u306d\u2605https:\/\/t.co\/OsUMTKb7EO https:\/\/t.co\/6zVrY80KLb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2603335297,"id_str":"2603335297","name":"FF\u30ec\u30b3\u30fc\u30c9\u30ad\u30fc\u30d1\u30fc\u904b\u55b6\u62c5\u5f53","screen_name":"ff_rk_info","location":null,"url":"http:\/\/ffrk.jp\/","description":"\uff1cFINAL FANTASY Record Keeper\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\uff1e\u904b\u55b6\u62c5\u5f53\u306e\u300e\u30ec\u30b3\u30d1\u300f\u3067\u3059\u266a\u6700\u65b0\u306e\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u60c5\u5831\u3084\u958b\u767a\u72b6\u6cc1\u306a\u3069\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u306d\u2606\uff08http:\/\/ffrk.jp\/\uff09","protected":false,"verified":false,"followers_count":173146,"friends_count":32,"listed_count":610,"favourites_count":6,"statuses_count":1069,"created_at":"Fri Jul 04 11:32:53 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572376075666067456\/01n1Cuz4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572376075666067456\/01n1Cuz4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2603335297\/1425300140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":137,"favorite_count":57,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OsUMTKb7EO","expanded_url":"http:\/\/bit.ly\/1MGhdUa","display_url":"bit.ly\/1MGhdUa","indices":[76,99]}],"user_mentions":[],"symbols":[],"media":[{"id":663668679645597697,"id_str":"663668679645597697","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","url":"https:\/\/t.co\/6zVrY80KLb","display_url":"pic.twitter.com\/6zVrY80KLb","expanded_url":"http:\/\/twitter.com\/ff_rk_info\/status\/663668681151377408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":270,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":542,"h":270,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663668679645597697,"id_str":"663668679645597697","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","url":"https:\/\/t.co\/6zVrY80KLb","display_url":"pic.twitter.com\/6zVrY80KLb","expanded_url":"http:\/\/twitter.com\/ff_rk_info\/status\/663668681151377408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":270,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":542,"h":270,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OsUMTKb7EO","expanded_url":"http:\/\/bit.ly\/1MGhdUa","display_url":"bit.ly\/1MGhdUa","indices":[92,115]}],"user_mentions":[{"screen_name":"ff_rk_info","name":"FF\u30ec\u30b3\u30fc\u30c9\u30ad\u30fc\u30d1\u30fc\u904b\u55b6\u62c5\u5f53","id":2603335297,"id_str":"2603335297","indices":[3,14]}],"symbols":[],"media":[{"id":663668679645597697,"id_str":"663668679645597697","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","url":"https:\/\/t.co\/6zVrY80KLb","display_url":"pic.twitter.com\/6zVrY80KLb","expanded_url":"http:\/\/twitter.com\/ff_rk_info\/status\/663668681151377408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":270,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":542,"h":270,"resize":"fit"}},"source_status_id":663668681151377408,"source_status_id_str":"663668681151377408","source_user_id":2603335297,"source_user_id_str":"2603335297"}]},"extended_entities":{"media":[{"id":663668679645597697,"id_str":"663668679645597697","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXTJdrUEAE-QGn.png","url":"https:\/\/t.co\/6zVrY80KLb","display_url":"pic.twitter.com\/6zVrY80KLb","expanded_url":"http:\/\/twitter.com\/ff_rk_info\/status\/663668681151377408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":270,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"},"large":{"w":542,"h":270,"resize":"fit"}},"source_status_id":663668681151377408,"source_status_id_str":"663668681151377408","source_user_id":2603335297,"source_user_id_str":"2603335297"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101660"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169174745088,"id_str":"663728169174745088","text":"Oficializan vuelta de Alejandro Fleming a la Canciller\u00eda https:\/\/t.co\/8X5SVYcwAt https:\/\/t.co\/iNHwqKwtuZ","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2551082850,"id_str":"2551082850","name":"Maria Teresa Rivas","screen_name":"MariaTe1984","location":null,"url":null,"description":"Amante de la libertad","protected":false,"verified":false,"followers_count":1309,"friends_count":1951,"listed_count":4,"favourites_count":20,"statuses_count":5864,"created_at":"Fri Jun 06 22:26:56 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/476426685399576577\/9HuecJe7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/476426685399576577\/9HuecJe7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2551082850\/1402424020","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8X5SVYcwAt","expanded_url":"http:\/\/bit.ly\/1SDo7i7","display_url":"bit.ly\/1SDo7i7","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663728168834994176,"id_str":"663728168834994176","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQMLUkAAtuJf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQMLUkAAtuJf.jpg","url":"https:\/\/t.co\/iNHwqKwtuZ","display_url":"pic.twitter.com\/iNHwqKwtuZ","expanded_url":"http:\/\/twitter.com\/MariaTe1984\/status\/663728169174745088\/photo\/1","type":"photo","sizes":{"large":{"w":624,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728168834994176,"id_str":"663728168834994176","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQMLUkAAtuJf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQMLUkAAtuJf.jpg","url":"https:\/\/t.co\/iNHwqKwtuZ","display_url":"pic.twitter.com\/iNHwqKwtuZ","expanded_url":"http:\/\/twitter.com\/MariaTe1984\/status\/663728169174745088\/photo\/1","type":"photo","sizes":{"large":{"w":624,"h":350,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080101661"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169191501824,"id_str":"663728169191501824","text":"RT @ryosukejump0501: @__cnsg \n\u306a\u3093\u304b\u304a\u4e45\u3057\u3076\u308a\ud83d\ude0a\ud83d\udc95\n\u4eca\u65e5\u5927\u962a\u3067\u3042\u3063\u305f\u3063\u304d\u308a\u305c\u3093\u305c\u3093\u4f1a\u3063\u3066\u306a\u3044\u3088\u306d\ud83d\udcad\n\u4eca\u5e74\u306f\u304a\u4e92\u3044\u53d7\u9a13\u751f\u3067\u4f1a\u3048\u306a\u304b\u3063\u305f\u304b\u3089\u6765\u5e74\u306f\u7d76\u5bfe\u3042\u304a\u30fc\u306d\ud83d\ude01\ud83d\udc97\n\u304f\u307f\u3068\u306e\u3084\u307e\u3061\u306d\u30c8\u30fc\u30af\u7d50\u69cb\u597d\u304d\u306a\u3093\u3060\u304b\u3089\u261c\nhttps:\/\/t.co\/2Hpz3oL0vi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382382952,"id_str":"3382382952","name":"\u304f\u307f\u3063\u304d\u30fc \u53d7\u9a13\u751f","screen_name":"__cnsg","location":"\u53d7\u9a13\u7d42\u308f\u308b\u307e\u3067\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8","url":null,"description":"\u3061\u306d(o\u30fb\u03c9\u30fb)\u4eba(^\u30ee^=)\u3057\u3052 \u2506 \u53d7\u9a13\u751f \u270f\ufe0e \u4f4e\u6d6e\u4e0a \u611b\u65b9\u306f\u305f\u304b\u3057\u3052\u306e\u4eba \u2506MARKly\u2506 \u307f\u307f\u308a\u301c\u305a\uff01 \u672c\u57a2\u25b7@hsj1130west0826\u25c1 97line \u540d\u53e4\u5c4b Next\u2765\u30b8\u30e3\u30cb\u30b9\u30c8 \u5927\u962a3\/24 \u4e21\u90e8\u2506\u7d76\u5bfe\u5408\u683c\uff01","protected":false,"verified":false,"followers_count":111,"friends_count":111,"listed_count":2,"favourites_count":138,"statuses_count":684,"created_at":"Sat Aug 29 14:29:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638013278887612417\/x-bsetiO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638013278887612417\/x-bsetiO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3382382952\/1443978947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 01:56:04 +0000 2015","id":661723557433511936,"id_str":"661723557433511936","text":"@__cnsg \n\u306a\u3093\u304b\u304a\u4e45\u3057\u3076\u308a\ud83d\ude0a\ud83d\udc95\n\u4eca\u65e5\u5927\u962a\u3067\u3042\u3063\u305f\u3063\u304d\u308a\u305c\u3093\u305c\u3093\u4f1a\u3063\u3066\u306a\u3044\u3088\u306d\ud83d\udcad\n\u4eca\u5e74\u306f\u304a\u4e92\u3044\u53d7\u9a13\u751f\u3067\u4f1a\u3048\u306a\u304b\u3063\u305f\u304b\u3089\u6765\u5e74\u306f\u7d76\u5bfe\u3042\u304a\u30fc\u306d\ud83d\ude01\ud83d\udc97\n\u304f\u307f\u3068\u306e\u3084\u307e\u3061\u306d\u30c8\u30fc\u30af\u7d50\u69cb\u597d\u304d\u306a\u3093\u3060\u304b\u3089\u261c\nhttps:\/\/t.co\/2Hpz3oL0vi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3382382952,"in_reply_to_user_id_str":"3382382952","in_reply_to_screen_name":"__cnsg","user":{"id":812520296,"id_str":"812520296","name":"\u029a \u3084 \u307e \u3060 \u2661\u20db \u308a \u308b \u025e","screen_name":"ryosukejump0501","location":"\u2654\u6dbc\u4ecb\u304f\u3093\u306e\u304a\u96a3\u2654","url":null,"description":"\u305f\u307e\u306b\u5e78\u305b\u304f\u308c\u308b\u7d76\u5bfe\u30a8\u30fc\u30b9\u306e\u6dbc\u4ecb\u304f\u3093\u3060\u3051 \u2765\u2765 \u3061\u306a\u307f\u306b\u304a\u3082\u301c\u3044\u3075\u3041\u3093\u3067\u3059\u3002 \u8179\u7b4b\u6dbc\u4ecb..\u2661","protected":false,"verified":false,"followers_count":454,"friends_count":275,"listed_count":15,"favourites_count":7585,"statuses_count":22879,"created_at":"Sun Sep 09 06:27:00 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654661913834426369\/EV57tAXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654661913834426369\/EV57tAXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812520296\/1445094231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":661190537454587905,"quoted_status_id_str":"661190537454587905","quoted_status":{"created_at":"Mon Nov 02 14:38:03 +0000 2015","id":661190537454587905,"id_str":"661190537454587905","text":"\u660e\u65e5\u4f11\u307f\u306a\u306e\u3067\u4e45\u3057\u3076\u308a\u306b\u30bf\u30b0\u6295\u4e0b\ud83d\udca3\ud83d\udc93\n#11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00 https:\/\/t.co\/lXMii4J2am","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":812520296,"id_str":"812520296","name":"\u029a \u3084 \u307e \u3060 \u2661\u20db \u308a \u308b \u025e","screen_name":"ryosukejump0501","location":"\u2654\u6dbc\u4ecb\u304f\u3093\u306e\u304a\u96a3\u2654","url":null,"description":"\u305f\u307e\u306b\u5e78\u305b\u304f\u308c\u308b\u7d76\u5bfe\u30a8\u30fc\u30b9\u306e\u6dbc\u4ecb\u304f\u3093\u3060\u3051 \u2765\u2765 \u3061\u306a\u307f\u306b\u304a\u3082\u301c\u3044\u3075\u3041\u3093\u3067\u3059\u3002 \u8179\u7b4b\u6dbc\u4ecb..\u2661","protected":false,"verified":false,"followers_count":454,"friends_count":275,"listed_count":15,"favourites_count":7585,"statuses_count":22879,"created_at":"Sun Sep 09 06:27:00 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654661913834426369\/EV57tAXQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654661913834426369\/EV57tAXQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/812520296\/1445094231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"11\u6708\u306b\u306a\u3063\u305f\u306e\u3067RT\u3057\u305f\u4eba\u306b\u4e00\u8a00","indices":[19,37]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661190518773157889,"id_str":"661190518773157889","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0FRhBUkAEIpPp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0FRhBUkAEIpPp.jpg","url":"https:\/\/t.co\/lXMii4J2am","display_url":"pic.twitter.com\/lXMii4J2am","expanded_url":"http:\/\/twitter.com\/ryosukejump0501\/status\/661190537454587905\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":214,"resize":"fit"},"large":{"w":1024,"h":646,"resize":"fit"},"medium":{"w":600,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":661190518773157889,"id_str":"661190518773157889","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CS0FRhBUkAEIpPp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS0FRhBUkAEIpPp.jpg","url":"https:\/\/t.co\/lXMii4J2am","display_url":"pic.twitter.com\/lXMii4J2am","expanded_url":"http:\/\/twitter.com\/ryosukejump0501\/status\/661190537454587905\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":214,"resize":"fit"},"large":{"w":1024,"h":646,"resize":"fit"},"medium":{"w":600,"h":378,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Hpz3oL0vi","expanded_url":"https:\/\/twitter.com\/ryosukejump0501\/status\/661190537454587905","display_url":"twitter.com\/ryosukejump050\u2026","indices":[96,119]}],"user_mentions":[{"screen_name":"__cnsg","name":"\u304f\u307f\u3063\u304d\u30fc \u53d7\u9a13\u751f","id":3382382952,"id_str":"3382382952","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2Hpz3oL0vi","expanded_url":"https:\/\/twitter.com\/ryosukejump0501\/status\/661190537454587905","display_url":"twitter.com\/ryosukejump050\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"ryosukejump0501","name":"\u029a \u3084 \u307e \u3060 \u2661\u20db \u308a \u308b \u025e","id":812520296,"id_str":"812520296","indices":[3,19]},{"screen_name":"__cnsg","name":"\u304f\u307f\u3063\u304d\u30fc \u53d7\u9a13\u751f","id":3382382952,"id_str":"3382382952","indices":[21,28]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080101665"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169187348481,"id_str":"663728169187348481","text":"Ah Sudahlah... @ Air Terjun Sekumpul https:\/\/t.co\/x5LRDPa5xy","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256382112,"id_str":"256382112","name":"Bandem Mahatma","screen_name":"BandemM","location":"Denpasar, Bali","url":"http:\/\/about.me\/bandem.mahatma","description":"@falloutboy","protected":false,"verified":false,"followers_count":654,"friends_count":348,"listed_count":1,"favourites_count":182,"statuses_count":26008,"created_at":"Wed Feb 23 06:10:35 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434242555002097664\/ENwaUTtF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434242555002097664\/ENwaUTtF.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597437524491960321\/SmkcSrtK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597437524491960321\/SmkcSrtK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256382112\/1422800961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-8.6373967,115.18326713]},"coordinates":{"type":"Point","coordinates":[115.18326713,-8.6373967]},"place":{"id":"cf712fd91280ebff","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/cf712fd91280ebff.json","place_type":"city","name":"Denpasar Barat","full_name":"Denpasar Barat, Bali","country_code":"ID","country":"Indonesia","bounding_box":{"type":"Polygon","coordinates":[[[115.173695,-8.709340],[115.173695,-8.591728],[115.235563,-8.591728],[115.235563,-8.709340]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/x5LRDPa5xy","expanded_url":"https:\/\/instagram.com\/p\/93ifJonSId\/","display_url":"instagram.com\/p\/93ifJonSId\/","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080101664"} +{"delete":{"status":{"id":587502624703774721,"id_str":"587502624703774721","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080101886"}} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169178955777,"id_str":"663728169178955777","text":"@lhite2 @imadaysfan @bronyaboland @PaulaP569 @peaceandlove371 @CarolynTopol @SteveNKayla19 @jessrose82 @jeweljewels64 @ChristinaIvey74","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727740873412608,"in_reply_to_status_id_str":"663727740873412608","in_reply_to_user_id":2973755779,"in_reply_to_user_id_str":"2973755779","in_reply_to_screen_name":"basia_barb","user":{"id":2973755779,"id_str":"2973755779","name":"Barb \u2665","screen_name":"basia_barb","location":null,"url":null,"description":"Huge S&K, Stefan & Katherine, Tucker fan\u2665","protected":false,"verified":false,"followers_count":232,"friends_count":164,"listed_count":3,"favourites_count":2520,"statuses_count":3034,"created_at":"Sun Jan 11 03:11:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661213730152157184\/KsN_S9Cu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661213730152157184\/KsN_S9Cu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973755779\/1445469443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lhite2","name":"Lisa H \u2764\ufe0f\u231b\ufe0f","id":75100947,"id_str":"75100947","indices":[0,7]},{"screen_name":"imadaysfan","name":"Belle \u2764 \u23f3","id":3376523427,"id_str":"3376523427","indices":[8,19]},{"screen_name":"bronyaboland","name":"Bronya Boland","id":356014822,"id_str":"356014822","indices":[20,33]},{"screen_name":"PaulaP569","name":"Paula P \u2764\ufe0f\u231b\ufe0f","id":3422047679,"id_str":"3422047679","indices":[34,44]},{"screen_name":"peaceandlove371","name":"Lisa Marie","id":1101671100,"id_str":"1101671100","indices":[45,61]},{"screen_name":"CarolynTopol","name":"Carolyn Topol","id":118543247,"id_str":"118543247","indices":[62,75]},{"screen_name":"SteveNKayla19","name":"\u2652\ufe0fMarissa Brady\u2764\ufe0f","id":3438533583,"id_str":"3438533583","indices":[76,90]},{"screen_name":"jessrose82","name":"jessie \u2764\ufe0f\u23f3","id":112798220,"id_str":"112798220","indices":[91,102]},{"screen_name":"jeweljewels64","name":"Julie","id":3247315442,"id_str":"3247315442","indices":[103,117]},{"screen_name":"ChristinaIvey74","name":"Christina Ivey","id":3751678942,"id_str":"3751678942","indices":[118,134]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080101662"} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169166372865,"id_str":"663728169166372865","text":"#Relax_Music\nhttps:\/\/t.co\/9OiikUrqVC\nhttps:\/\/t.co\/4o69xFu2DX\"\nhttps:\/\/t.co\/EPvjYbMt0A https:\/\/t.co\/54pnuzo95F","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294235777,"id_str":"3294235777","name":"Pig Gold","screen_name":"Pig_Golds","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":1838,"listed_count":11,"favourites_count":226,"statuses_count":21485,"created_at":"Sun Jul 26 02:58:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625138307345723394\/5DWm1CRK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625138307345723394\/5DWm1CRK_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Relax_Music","indices":[0,12]}],"urls":[{"url":"https:\/\/t.co\/9OiikUrqVC","expanded_url":"https:\/\/goo.gl\/5vHwlY","display_url":"goo.gl\/5vHwlY","indices":[13,36]},{"url":"https:\/\/t.co\/4o69xFu2DX","expanded_url":"https:\/\/goo.gl\/HiXZlC","display_url":"goo.gl\/HiXZlC","indices":[37,60]},{"url":"https:\/\/t.co\/EPvjYbMt0A","expanded_url":"https:\/\/goo.gl\/PUXEzK","display_url":"goo.gl\/PUXEzK","indices":[62,85]}],"user_mentions":[],"symbols":[],"media":[{"id":663728167421542400,"id_str":"663728167421542400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQG6VAAAJU0V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQG6VAAAJU0V.jpg","url":"https:\/\/t.co\/54pnuzo95F","display_url":"pic.twitter.com\/54pnuzo95F","expanded_url":"http:\/\/twitter.com\/Pig_Golds\/status\/663728169166372865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":630,"h":355,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728167421542400,"id_str":"663728167421542400","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQG6VAAAJU0V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQG6VAAAJU0V.jpg","url":"https:\/\/t.co\/54pnuzo95F","display_url":"pic.twitter.com\/54pnuzo95F","expanded_url":"http:\/\/twitter.com\/Pig_Golds\/status\/663728169166372865\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":630,"h":355,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080101659"} +{"delete":{"status":{"id":661163708794732544,"id_str":"661163708794732544","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080102006"}} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162272768,"id_str":"663728169162272768","text":"https:\/\/t.co\/32zgVQUqGI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2803875127,"id_str":"2803875127","name":"JMJ","screen_name":"jammasterajay49","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":1351,"created_at":"Thu Sep 11 15:10:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728167396499456,"id_str":"663728167396499456","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQG0W4AAplkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQG0W4AAplkA.jpg","url":"https:\/\/t.co\/32zgVQUqGI","display_url":"pic.twitter.com\/32zgVQUqGI","expanded_url":"http:\/\/twitter.com\/jammasterajay49\/status\/663728169162272768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728167396499456,"id_str":"663728167396499456","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQG0W4AAplkA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQG0W4AAplkA.jpg","url":"https:\/\/t.co\/32zgVQUqGI","display_url":"pic.twitter.com\/32zgVQUqGI","expanded_url":"http:\/\/twitter.com\/jammasterajay49\/status\/663728169162272768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080101658"} +{"delete":{"status":{"id":593394128685178881,"id_str":"593394128685178881","user_id":2807489238,"user_id_str":"2807489238"},"timestamp_ms":"1447080102132"}} +{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728169162174465,"id_str":"663728169162174465","text":"Oie \ud83d\ude07\nVou mendiga \u2714\nSegui eu \ud83d\ude4b \nPrometo Sdv\ud83d\udc4f \nMais olha \ud83d\udc40\nSem Unf \ud83d\udeab\n\u26a0Unf=Unf \u26a0\nLembre-se \ud83d\ude09\n\u2714Ent\u00e3o vamos l\u00e1 \u2714\n\n#SegundaDetremuraPraSdv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338372117,"id_str":"338372117","name":"Thiago","screen_name":"ThiiagoBattista","location":"Goias","url":"https:\/\/instagram.com\/thiago_vasconcelos_batista\/","description":"Ame a Vida, Adore a Realidade, Esque\u00e7a a Tristeza e Procure a Felicidade...\n\nWatts 062-99050463.","protected":false,"verified":false,"followers_count":1130,"friends_count":851,"listed_count":0,"favourites_count":214,"statuses_count":536,"created_at":"Tue Jul 19 13:49:44 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000174742931\/SBLn3aLn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000174742931\/SBLn3aLn.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"AD42AD","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660832222065393664\/XpWT3ha9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660832222065393664\/XpWT3ha9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338372117\/1446600506","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SegundaDetremuraPraSdv","indices":[111,134]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080101658"} +{"delete":{"status":{"id":663545196840394752,"id_str":"663545196840394752","user_id":2460559297,"user_id_str":"2460559297"},"timestamp_ms":"1447080102416"}} +{"delete":{"status":{"id":646197752632733696,"id_str":"646197752632733696","user_id":2477902392,"user_id_str":"2477902392"},"timestamp_ms":"1447080102423"}} +{"delete":{"status":{"id":595924061558976512,"id_str":"595924061558976512","user_id":2807489238,"user_id_str":"2807489238"},"timestamp_ms":"1447080102444"}} +{"delete":{"status":{"id":245304653791780868,"id_str":"245304653791780868","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080102497"}} +{"delete":{"status":{"id":245304645411540992,"id_str":"245304645411540992","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080102498"}} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173356556288,"id_str":"663728173356556288","text":"En nuestras encuestas se ve con mucha claridad q la mayor\u00eda pens\u00e1is que la plantilla fue quien tom\u00f3 las riendas del partido contra el Celta!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091998511,"id_str":"4091998511","name":"EncuestasVCF \u2122","screen_name":"VcfEncuestas","location":"MESTALLA","url":null,"description":"Cuenta dedicada a valorar, a golpe de encuesta, la actualidad del Valencia Club de F\u00fatbol y la opini\u00f3n de los valencianistas.","protected":false,"verified":false,"followers_count":220,"friends_count":647,"listed_count":0,"favourites_count":0,"statuses_count":121,"created_at":"Sun Nov 01 19:19:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660938449386676225\/EJTyRqyd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660938449386676225\/EJTyRqyd.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660901838368153600\/B-S6aGvz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660901838368153600\/B-S6aGvz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4091998511\/1446413785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102658"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377568768,"id_str":"663728173377568768","text":"RT @BayIeys: Cheating Guy Gets Busted Big Time On Facebook \ud83d\ude02\n\nhttps:\/\/t.co\/6KQ6R7FHrG","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3040592727,"id_str":"3040592727","name":"Amazing Pictures","screen_name":"WowAmazingPicx","location":null,"url":null,"description":"Follow for fascinating pictures!","protected":false,"verified":false,"followers_count":39169,"friends_count":38435,"listed_count":91,"favourites_count":0,"statuses_count":16,"created_at":"Mon Feb 16 12:27:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567299855270563840\/reyoZ0Y3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567299855270563840\/reyoZ0Y3_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727756644098048,"id_str":"663727756644098048","text":"Cheating Guy Gets Busted Big Time On Facebook \ud83d\ude02\n\nhttps:\/\/t.co\/6KQ6R7FHrG","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2915293767,"id_str":"2915293767","name":"Nathan.","screen_name":"BayIeys","location":"Stamford Town, UK","url":"http:\/\/nascomedia.com","description":"social media publisher. 5m reach \/\/ business - nathan@nascomedia.com","protected":false,"verified":false,"followers_count":87416,"friends_count":55437,"listed_count":156,"favourites_count":166,"statuses_count":461,"created_at":"Thu Dec 11 11:33:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625740340214005760\/dRkR02PO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625740340214005760\/dRkR02PO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2915293767\/1419030800","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6KQ6R7FHrG","expanded_url":"http:\/\/lol-streams.com\/link\/i96yvc3y1f","display_url":"lol-streams.com\/link\/i96yvc3y1f","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6KQ6R7FHrG","expanded_url":"http:\/\/lol-streams.com\/link\/i96yvc3y1f","display_url":"lol-streams.com\/link\/i96yvc3y1f","indices":[62,85]}],"user_mentions":[{"screen_name":"BayIeys","name":"Nathan.","id":2915293767,"id_str":"2915293767","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173364981760,"id_str":"663728173364981760","text":"RT @Wiki_Quesos: Quiche de queso. https:\/\/t.co\/swJkyrPqpI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":580063456,"id_str":"580063456","name":"\u2654 Rutth \u2654","screen_name":"TuPutaMosca","location":null,"url":null,"description":"Que puto aburrimiento.","protected":false,"verified":false,"followers_count":577,"friends_count":226,"listed_count":1,"favourites_count":7063,"statuses_count":2890,"created_at":"Mon May 14 17:19:20 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000156461741\/gVrJ3fzw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000156461741\/gVrJ3fzw.jpeg","profile_background_tile":false,"profile_link_color":"050505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647091310059487232\/5XmOlV8p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647091310059487232\/5XmOlV8p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/580063456\/1441542880","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:34:11 +0000 2015","id":663469589372796929,"id_str":"663469589372796929","text":"Quiche de queso. https:\/\/t.co\/swJkyrPqpI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3175676327,"id_str":"3175676327","name":"WikiQuesos","screen_name":"Wiki_Quesos","location":"En un s\u00e1ndwich prezo","url":null,"description":"D\u00e9jame ser el queso de tu pizza.","protected":false,"verified":false,"followers_count":7752,"friends_count":547,"listed_count":20,"favourites_count":9392,"statuses_count":7403,"created_at":"Fri Apr 17 08:21:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588983090992836608\/FJH0g8Mv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588983090992836608\/FJH0g8Mv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3175676327\/1429259542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":29,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663469576450084864,"id_str":"663469576450084864","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","url":"https:\/\/t.co\/swJkyrPqpI","display_url":"pic.twitter.com\/swJkyrPqpI","expanded_url":"http:\/\/twitter.com\/Wiki_Quesos\/status\/663469589372796929\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663469576450084864,"id_str":"663469576450084864","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","url":"https:\/\/t.co\/swJkyrPqpI","display_url":"pic.twitter.com\/swJkyrPqpI","expanded_url":"http:\/\/twitter.com\/Wiki_Quesos\/status\/663469589372796929\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Wiki_Quesos","name":"WikiQuesos","id":3175676327,"id_str":"3175676327","indices":[3,15]}],"symbols":[],"media":[{"id":663469576450084864,"id_str":"663469576450084864","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","url":"https:\/\/t.co\/swJkyrPqpI","display_url":"pic.twitter.com\/swJkyrPqpI","expanded_url":"http:\/\/twitter.com\/Wiki_Quesos\/status\/663469589372796929\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663469589372796929,"source_status_id_str":"663469589372796929","source_user_id":3175676327,"source_user_id_str":"3175676327"}]},"extended_entities":{"media":[{"id":663469576450084864,"id_str":"663469576450084864","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUeEIeWEAAwl-6.jpg","url":"https:\/\/t.co\/swJkyrPqpI","display_url":"pic.twitter.com\/swJkyrPqpI","expanded_url":"http:\/\/twitter.com\/Wiki_Quesos\/status\/663469589372796929\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663469589372796929,"source_status_id_str":"663469589372796929","source_user_id":3175676327,"source_user_id_str":"3175676327"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102660"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377576960,"id_str":"663728173377576960","text":"RT @gulnurblahblah: El\u00e7in yenilebilen bi\u015fey mi ki acep","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3357722723,"id_str":"3357722723","name":"KELAM\u0130ST","screen_name":"cawayebremin","location":null,"url":null,"description":"muhalif belagatlar | \u0130.\u00dc-EDEB\u0130YAT","protected":false,"verified":false,"followers_count":504,"friends_count":171,"listed_count":1,"favourites_count":34512,"statuses_count":82,"created_at":"Fri Jul 03 23:34:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644934621843447808\/BiOONANq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644934621843447808\/BiOONANq.jpg","profile_background_tile":true,"profile_link_color":"770033","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646262139469824\/mI1fS3Ek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646262139469824\/mI1fS3Ek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3357722723\/1445936930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 22:34:36 +0000 2015","id":662760016420741120,"id_str":"662760016420741120","text":"El\u00e7in yenilebilen bi\u015fey mi ki acep","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3087343268,"id_str":"3087343268","name":"hesna","screen_name":"gulnurblahblah","location":null,"url":null,"description":"weasley","protected":false,"verified":false,"followers_count":134,"friends_count":317,"listed_count":0,"favourites_count":2283,"statuses_count":322,"created_at":"Mon Mar 16 00:15:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659693661924532224\/VXcQ9yU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659693661924532224\/VXcQ9yU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3087343268\/1447080098","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gulnurblahblah","name":"hesna","id":3087343268,"id_str":"3087343268","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373263872,"id_str":"663728173373263872","text":"RT @zouirriall: Love You Goodbye comes out tomorrow!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1366563247,"id_str":"1366563247","name":"'till the end","screen_name":"oreokidstyles","location":"south africa \u2022 01-04-15","url":null,"description":"my first real crush was @harry_styles","protected":false,"verified":false,"followers_count":12710,"friends_count":9435,"listed_count":41,"favourites_count":6368,"statuses_count":79083,"created_at":"Sat Apr 20 09:02:00 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456437353792274432\/ctC8Taw9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456437353792274432\/ctC8Taw9.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655346500504039424\/fwJ6E5MQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655346500504039424\/fwJ6E5MQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1366563247\/1445081756","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:24 +0000 2015","id":663726839731322881,"id_str":"663726839731322881","text":"Love You Goodbye comes out tomorrow!","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1406539518,"id_str":"1406539518","name":"Louis Tomlinson","screen_name":"zouirriall","location":"\u25e1\u0308 turn my notifications on \u25e1\u0308","url":null,"description":"Pre-order Made In The A.M. on iTunes","protected":false,"verified":false,"followers_count":404770,"friends_count":60444,"listed_count":5019,"favourites_count":40477,"statuses_count":5579,"created_at":"Mon May 06 02:05:38 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515101266897141760\/a3lsdBg_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515101266897141760\/a3lsdBg_.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660963684991172608\/vzgmH4XR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660963684991172608\/vzgmH4XR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1406539518\/1446427145","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":136,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zouirriall","name":"Louis Tomlinson","id":1406539518,"id_str":"1406539518","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373239297,"id_str":"663728173373239297","text":"RT @NTNT33: \uc564\uce90\uc640 \uc564\uc624\ub2d8\uc744 \uc0ac\ub0e5\ud558\ub294 \ub290\uae0d\ub2d8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957333886,"id_str":"2957333886","name":"\ub355\uc9c8\ud558\ub294 \ub2ec\uac40\ud770\uc790","screen_name":"dalgial_huinza","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":93,"friends_count":185,"listed_count":1,"favourites_count":3121,"statuses_count":20312,"created_at":"Sat Jan 03 14:27:05 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659793598922166272\/YlWcTELF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659793598922166272\/YlWcTELF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727688914354176,"id_str":"663727688914354176","text":"\uc564\uce90\uc640 \uc564\uc624\ub2d8\uc744 \uc0ac\ub0e5\ud558\ub294 \ub290\uae0d\ub2d8","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322960244,"id_str":"3322960244","name":"\ub2dd\ub2dd!","screen_name":"NTNT33","location":null,"url":null,"description":"\ub8ec\uc758\uc544\uc774\ub4e4\/\ub178\uc790\ud0a4\uad70\/\uc554\uc0b4\uad50\uc2e4 \ub4f1 \uc7a1\ub355\uc785\ub2c8\ub2e4! \uc77c\uc0c1\ud2b8 \ubed8\ud2b8 \ud0d0\ub77c\ub300\ud654 \ub9ce\uc2b5\ub2c8\ub2e4~! \ubcf4\ud1b5\uc740 \uae00 \uc4f0\uac70\ub098 \ub179\uc74c\ud574\uc694! \uc54c\ub9bc\/\uc548\uba74 \uc5c6\ub294 \ud314\ub85c\ub294 \ube14\uc5b8\ube14\ud569\ub2c8\ub2e4\u3160.\u3160 UB \ud504\ub9ac! \ucee4\ubba4 \uacb8 \uc790\ub355\uacc4\ub294 @ NCNT33","protected":false,"verified":false,"followers_count":49,"friends_count":63,"listed_count":2,"favourites_count":105,"statuses_count":6920,"created_at":"Fri Aug 21 23:42:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662626237907529728\/k5otukgU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662626237907529728\/k5otukgU_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NTNT33","name":"\ub2dd\ub2dd!","id":3322960244,"id_str":"3322960244","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369204737,"id_str":"663728173369204737","text":"Anne Carol - Cheiro Bom https:\/\/t.co\/vZflQ2MGab","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269529862,"id_str":"269529862","name":"somjah","screen_name":"somjah","location":null,"url":"http:\/\/somjah.com","description":"Conectando pessoas atrav\u00e9s do Reggae","protected":false,"verified":false,"followers_count":8148,"friends_count":16,"listed_count":15,"favourites_count":170,"statuses_count":19904,"created_at":"Sun Mar 20 23:51:56 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"089925","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/304226390\/bk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/304226390\/bk.jpg","profile_background_tile":true,"profile_link_color":"007517","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474070307754356736\/JDiIDeP9_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474070307754356736\/JDiIDeP9_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269529862\/1401862083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vZflQ2MGab","expanded_url":"http:\/\/fb.me\/25hIL8X6p","display_url":"fb.me\/25hIL8X6p","indices":[24,47]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360816128,"id_str":"663728173360816128","text":"RT @IAFC: \"Collaboration has found increasing importance in emergency services in the recent years, as doing more with less... https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":432534328,"id_str":"432534328","name":"Daniel Jones","screen_name":"ChiefDanJones","location":"Chapel Hill, NC","url":null,"description":"Retired Fire Chief for Chapel Hill & UNC from1990 to 2015. Husband, father, grandfather, southerner, patriot, firefighter since '74, consultant\/instructor","protected":false,"verified":false,"followers_count":435,"friends_count":357,"listed_count":10,"favourites_count":1433,"statuses_count":1068,"created_at":"Fri Dec 09 14:07:35 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602995746728648704\/p8ItcTy0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602995746728648704\/p8ItcTy0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/432534328\/1442174910","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:01 +0000 2015","id":663720199326158849,"id_str":"663720199326158849","text":"\"Collaboration has found increasing importance in emergency services in the recent years, as doing more with less... https:\/\/t.co\/uGHMWyfcPX","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":34828750,"id_str":"34828750","name":"IAFC","screen_name":"IAFC","location":"Fairfax, VA","url":"http:\/\/www.iafc.org","description":"The IAFC is the leading provider of education, leadership and advocacy for current and future fire and emergency service officers.","protected":false,"verified":false,"followers_count":13452,"friends_count":412,"listed_count":217,"favourites_count":385,"statuses_count":1858,"created_at":"Fri Apr 24 03:11:48 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"990000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/9951204\/NewLogo4__2_.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/9951204\/NewLogo4__2_.JPG","profile_background_tile":false,"profile_link_color":"3399FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/180239496\/NewLogo4__2__normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/180239496\/NewLogo4__2__normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/34828750\/1426769295","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uGHMWyfcPX","expanded_url":"http:\/\/fb.me\/6U4utZAzt","display_url":"fb.me\/6U4utZAzt","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/uGHMWyfcPX","expanded_url":"http:\/\/fb.me\/6U4utZAzt","display_url":"fb.me\/6U4utZAzt","indices":[139,140]}],"user_mentions":[{"screen_name":"IAFC","name":"IAFC","id":34828750,"id_str":"34828750","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102659"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173365002240,"id_str":"663728173365002240","text":"Y es hermosa, la mujer mas poderosa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":349936215,"id_str":"349936215","name":"David","screen_name":"Davidgarnica1A","location":"catamarca ","url":null,"description":"\u270c","protected":false,"verified":false,"followers_count":399,"friends_count":225,"listed_count":0,"favourites_count":37,"statuses_count":9535,"created_at":"Sat Aug 06 23:19:58 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"021B2E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182651376\/Dhp9SGEJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182651376\/Dhp9SGEJ.jpeg","profile_background_tile":true,"profile_link_color":"00B3A4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638877927774531584\/i0uvfpLy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638877927774531584\/i0uvfpLy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/349936215\/1446745214","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102660"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173385981952,"id_str":"663728173385981952","text":"\" La peinture est plus forte que moi, elle me fait faire ce qu'elle veut \" Picasso","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3342894316,"id_str":"3342894316","name":"INSTA : ALYBOBIGNY","screen_name":"Alybobigny","location":null,"url":"https:\/\/www.youtube.com\/HelloAly","description":"Expert en r\u00e9seaux sociaux ---------------Demande Professionnelle : Alybsh@gmail.com\u2709\ufe0f @Nalboo_ Mv","protected":false,"verified":false,"followers_count":42819,"friends_count":8696,"listed_count":4,"favourites_count":82,"statuses_count":253,"created_at":"Tue Jun 23 16:11:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657943670201655296\/n11pI_rU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657943670201655296\/n11pI_rU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3342894316\/1445791980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080102665"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173368999937,"id_str":"663728173368999937","text":"\u5473\u65b9\u6279\u5224\u56de\u7dda\u5f31\u8005\u6279\u5224\u306f\u8cdb\u5426\u4e21\u8ad6\u3042\u308b\u3060\u308d\u3046\u3051\u3069\u30c1\u30fc\u30e0\u30e1\u30f3\u30d0\u30fc\u306b\u7f75\u8a48\u96d1\u8a00\u306f\u307e\u305a\u4eba\u9593\u3068\u3057\u3066\u7121\u3044\u3088\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883015774,"id_str":"2883015774","name":"\u30ea\u30af\u30eb\u30fc\u30c8","screen_name":"kurihara2307","location":"\u4eca\u306fSplatoon\u57a2\u305d\u308d\u305d\u308dMHX\u306b\u5909\u308f\u308b\u304b\u3082","url":null,"description":"\u30b2\u30fc\u30e0\u597d\u304d \u30e2\u30f3\u30cf\u30f33G\u30014\u30014G\u3001\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3","protected":false,"verified":false,"followers_count":132,"friends_count":140,"listed_count":5,"favourites_count":2387,"statuses_count":2586,"created_at":"Thu Oct 30 07:50:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624612487632039936\/dCeMC06i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624612487632039936\/dCeMC06i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883015774\/1444923401","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173356613633,"id_str":"663728173356613633","text":"FREE Printable Thanksgiving Banner from https:\/\/t.co\/j4bndgGsdl \/\/ #free Fall Decor! https:\/\/t.co\/ceZRkIkLd4","source":"\u003ca href=\"http:\/\/pinterest.com\" rel=\"nofollow\"\u003ePinterest\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":715013036,"id_str":"715013036","name":"Mary Ann Purtell","screen_name":"MaryAnnPurtell","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":7,"listed_count":0,"favourites_count":0,"statuses_count":3801,"created_at":"Tue Jul 24 22:13:44 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"free","indices":[67,72]}],"urls":[{"url":"https:\/\/t.co\/j4bndgGsdl","expanded_url":"http:\/\/Shanty-2-Chic.com","display_url":"Shanty-2-Chic.com","indices":[40,63]},{"url":"https:\/\/t.co\/ceZRkIkLd4","expanded_url":"http:\/\/pinterest.com\/pin\/28710516352111997\/","display_url":"pinterest.com\/pin\/2871051635\u2026","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102658"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373239298,"id_str":"663728173373239298","text":"RT @EXOBEAKHYUN_TB: EXO-L !!!! \u0e2a\u0e39\u0e49\u0e44\u0e21\u0e48\u0e2a\u0e39\u0e49!!!! \u0e44\u0e1b\u0e40\u0e17\u0e23\u0e19\u0e41\u0e25\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e42\u0e2b\u0e27\u0e15\u0e19\u0e30 !!! \ud83d\ude46\ud83c\udffb\nhttps:\/\/t.co\/Y2IkLMGdvA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1071019070,"id_str":"1071019070","name":"supiss","screen_name":"Suppiss","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":167,"friends_count":151,"listed_count":0,"favourites_count":3253,"statuses_count":75569,"created_at":"Tue Jan 08 14:11:19 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663717640058175492\/BGf-MN1J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663717640058175492\/BGf-MN1J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1071019070\/1446982752","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728103374483456,"id_str":"663728103374483456","text":"EXO-L !!!! \u0e2a\u0e39\u0e49\u0e44\u0e21\u0e48\u0e2a\u0e39\u0e49!!!! \u0e44\u0e1b\u0e40\u0e17\u0e23\u0e19\u0e41\u0e25\u0e30\u0e0a\u0e48\u0e27\u0e22\u0e01\u0e31\u0e19\u0e42\u0e2b\u0e27\u0e15\u0e19\u0e30 !!! \ud83d\ude46\ud83c\udffb\nhttps:\/\/t.co\/Y2IkLMGdvA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622656607,"id_str":"622656607","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","screen_name":"EXOBEAKHYUN_TB","location":"Bangkok, Thailand","url":null,"description":"\u3139H39EXOK EXOM =EXOL|12forever and ever|\u0e2d\u0e31\u0e1e\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1aEXO \u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46ID:great11575","protected":false,"verified":false,"followers_count":59914,"friends_count":544,"listed_count":81,"favourites_count":889,"statuses_count":186210,"created_at":"Sat Jun 30 08:56:37 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_tile":false,"profile_link_color":"D91161","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622656607\/1445573786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726476785618944,"id_str":"663726476785618944","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":262,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":314,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"}]},"extended_entities":{"media":[{"id":663726476785618944,"id_str":"663726476785618944","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":262,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":314,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"},{"id":663726495920091136,"id_str":"663726495920091136","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHu0FU8AAdetE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHu0FU8AAdetE.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":318,"resize":"fit"},"small":{"w":340,"h":150,"resize":"fit"},"medium":{"w":600,"h":265,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"},{"id":663726498495369216,"id_str":"663726498495369216","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHu9rUkAAsH7D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHu9rUkAAsH7D.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":291,"resize":"fit"},"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":137,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EXOBEAKHYUN_TB","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","id":622656607,"id_str":"622656607","indices":[3,18]}],"symbols":[],"media":[{"id":663726476785618944,"id_str":"663726476785618944","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":262,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":314,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"}]},"extended_entities":{"media":[{"id":663726476785618944,"id_str":"663726476785618944","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHtszUEAAyNPn.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":262,"resize":"fit"},"small":{"w":340,"h":148,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":717,"h":314,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"},{"id":663726495920091136,"id_str":"663726495920091136","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHu0FU8AAdetE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHu0FU8AAdetE.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":318,"resize":"fit"},"small":{"w":340,"h":150,"resize":"fit"},"medium":{"w":600,"h":265,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"},{"id":663726498495369216,"id_str":"663726498495369216","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHu9rUkAAsH7D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHu9rUkAAsH7D.jpg","url":"https:\/\/t.co\/Y2IkLMGdvA","display_url":"pic.twitter.com\/Y2IkLMGdvA","expanded_url":"http:\/\/twitter.com\/xo_cotton\/status\/663726505655033856\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":291,"resize":"fit"},"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":137,"resize":"fit"}},"source_status_id":663726505655033856,"source_status_id_str":"663726505655033856","source_user_id":2177718134,"source_user_id_str":"2177718134"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369028608,"id_str":"663728173369028608","text":"@jisoowind leeeepaskanlahh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727824948170752,"in_reply_to_status_id_str":"663727824948170752","in_reply_to_user_id":4052383933,"in_reply_to_user_id_str":"4052383933","in_reply_to_screen_name":"jisoowind","user":{"id":3845240653,"id_str":"3845240653","name":"wushh wushh\u2728","screen_name":"windclsd","location":"enjoy with 7 admins!\u2764\ufe0f","url":"http:\/\/windclosed.weebly.com","description":"wushh ayo terbang dan rasakan hembusan angin bersama kami~ cek weebly for htj and rules baby :* (G:29\/30) (B:19\/30) no mt:19.00-22.00 | #WindWants for Wishlist!","protected":false,"verified":false,"followers_count":108,"friends_count":52,"listed_count":0,"favourites_count":575,"statuses_count":8250,"created_at":"Sat Oct 10 07:45:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726032172683264\/_Dad_QEg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726032172683264\/_Dad_QEg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3845240653\/1444808199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jisoowind","name":"jisoo","id":4052383933,"id_str":"4052383933","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373243392,"id_str":"663728173373243392","text":"RT @alexandroscrew: \u3010\u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\u3011\n[Alexandros] TOUR 2015 \u201c\u3054\u99b3\u8d70\u306b\u3042\u308a\u3064\u304b\u305b\u3066\u9802\u304d\u307e\u3059\u201d \u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\nhttps:\/\/t.co\/gamWkEk7E9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3626333353,"id_str":"3626333353","name":"yumi","screen_name":"summerjuly723","location":null,"url":null,"description":"\u9ad8\u68211\u5e74\u751f \u5bb6\u5ead\u90e8\u3002ONE OK RCOK(\/\/\/\u03c9\/\/\/)\u266a","protected":false,"verified":false,"followers_count":145,"friends_count":200,"listed_count":0,"favourites_count":156,"statuses_count":320,"created_at":"Sun Sep 20 11:22:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650304965194309632\/A_3TkMTz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650304965194309632\/A_3TkMTz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3626333353\/1446557751","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:26 +0000 2015","id":663717787580272640,"id_str":"663717787580272640","text":"\u3010\u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\u3011\n[Alexandros] TOUR 2015 \u201c\u3054\u99b3\u8d70\u306b\u3042\u308a\u3064\u304b\u305b\u3066\u9802\u304d\u307e\u3059\u201d \u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\nhttps:\/\/t.co\/gamWkEk7E9","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106324851,"id_str":"106324851","name":"[Alexandros]","screen_name":"alexandroscrew","location":"JAPAN","url":"http:\/\/alexandros.jp\/","description":"2007\u5e74\u672c\u683c\u59cb\u52d5\u300212\/2(\u6c34)\u306b\u30cb\u30e5\u30fc\u30b7\u30f3\u30b0\u30eb\u300cGirl A\u300d\u3092\u767a\u58f2\u4e88\u5b9a\u3002\u30a2\u30eb\u30d0\u30e0\u30c4\u30a2\u30fc\u30d5\u30a1\u30a4\u30ca\u30eb\u306b\u306f12\/19(\u571f)\u5e55\u5f35\u30e1\u30c3\u30bb\u56fd\u969b\u5c55\u793a\u5834\u3092\u4e88\u5b9a\u3002 LINE ID\uff1a@ alexandros","protected":false,"verified":true,"followers_count":287743,"friends_count":11,"listed_count":4479,"favourites_count":4,"statuses_count":9996,"created_at":"Tue Jan 19 05:36:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649906942664531969\/vJgHKo-a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649906942664531969\/vJgHKo-a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106324851\/1445346360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2218,"favorite_count":1986,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gamWkEk7E9","expanded_url":"https:\/\/alexandros.jp\/","display_url":"alexandros.jp","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gamWkEk7E9","expanded_url":"https:\/\/alexandros.jp\/","display_url":"alexandros.jp","indices":[86,109]}],"user_mentions":[{"screen_name":"alexandroscrew","name":"[Alexandros]","id":106324851,"id_str":"106324851","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377437696,"id_str":"663728173377437696","text":"@chiobfong yo sigo inc\u00f3lume e inmaculado, esperando a aquella doncella a la cual entregar mi pureza y mi cuerpo por siempre jam\u00e1s.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663399359950684161,"in_reply_to_status_id_str":"663399359950684161","in_reply_to_user_id":2639001425,"in_reply_to_user_id_str":"2639001425","in_reply_to_screen_name":"chiobfong","user":{"id":87520508,"id_str":"87520508","name":"Who Am I?","screen_name":"AstaretMX","location":"M\u00e9xico City","url":"https:\/\/www.facebook.com\/MarvelNewsMx","description":"I gave ideas to the House of Ideas... live with that.","protected":false,"verified":false,"followers_count":1156,"friends_count":890,"listed_count":15,"favourites_count":3886,"statuses_count":14201,"created_at":"Wed Nov 04 20:08:02 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468606300419420160\/Eu0qcwzz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468606300419420160\/Eu0qcwzz.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661444987817594880\/93JIbTLc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661444987817594880\/93JIbTLc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87520508\/1418661149","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chiobfong","name":"LaChio","id":2639001425,"id_str":"2639001425","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173352267776,"id_str":"663728173352267776","text":"@tama54983 \u3055\u3059\u304c\u7b11\n\u307e\u3058\u5b89\u5b9a\u3059\u304e\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725036386127873,"in_reply_to_status_id_str":"663725036386127873","in_reply_to_user_id":3220819562,"in_reply_to_user_id_str":"3220819562","in_reply_to_screen_name":"tama54983","user":{"id":3582693499,"id_str":"3582693499","name":"\u685c\u672c\u306a\u304a\u304d","screen_name":"noook19","location":"\u5143\u306f \u201c \u702c \u6238 \u201d ..\u4eca\u306f\u301d \u540d \u53e4 \u5c4b \u301f","url":"https:\/\/instagram.com\/noook19\/","description":"\u301d\u611b\u77e5\u8abf\u7406\u5c02\u9580\u5b66\u6821\u301f","protected":false,"verified":false,"followers_count":67,"friends_count":75,"listed_count":0,"favourites_count":9,"statuses_count":55,"created_at":"Wed Sep 16 12:33:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661457481000812544\/Wp-qf2Rv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661457481000812544\/Wp-qf2Rv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3582693499\/1445134259","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tama54983","name":"\u3086\u30fc\u307e","id":3220819562,"id_str":"3220819562","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102657"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173390008320,"id_str":"663728173390008320","text":"\u3068\u308a\u3042\u3048\u305a\u30e1\u30fc\u30eb\u3067\u3082\u2026 #\u30e1\u30eb\u53cb\u52df\u96c6 #followmeJP\nq3z","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3271223658,"id_str":"3271223658","name":"\u5e73\u6797 \u3055\u3084\u304b","screen_name":"hirabayash_vB4z","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":133,"friends_count":1756,"listed_count":0,"favourites_count":0,"statuses_count":17067,"created_at":"Tue Jul 07 20:08:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30e1\u30eb\u53cb\u52df\u96c6","indices":[12,18]},{"text":"followmeJP","indices":[19,30]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102666"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369139200,"id_str":"663728173369139200","text":"Per @NBCMase, Eagles-Cowboys did a 32.8 local rating and 49 share in Philadelphia. 14.7\/24 nationally.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14786274,"id_str":"14786274","name":"Jonathan Tannenwald","screen_name":"jtannenwald","location":"Philadelphia, PA, USA","url":"http:\/\/www.philly.com\/sports","description":"Producer for @phillysport. Gadget geek, p\u00e9tanque player. Fan of ice hockey, cricket, urbanism & trains. Alter egos: @pretzel_logic & @thegoalkeeper","protected":false,"verified":false,"followers_count":2334,"friends_count":1672,"listed_count":205,"favourites_count":52,"statuses_count":63954,"created_at":"Thu May 15 13:59:54 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/322312251\/IMG_0358_copy_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/322312251\/IMG_0358_copy_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14786274\/1444062161","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NBCMase","name":"Dan Masonson","id":90464349,"id_str":"90464349","indices":[4,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360635904,"id_str":"663728173360635904","text":"\u30bf\u30c1\u30a6\u30aa\u30d1\u30fc\u30ad\u30f3\u30b0\u6765\u305f\u306e\u3067\u9811\u5f35\u3063\u3066\u30c1\u30e3\u30fc\u30b8\u30e3\u30fc\u5305\u56f2\u7db2\u3092\u7a81\u7834\u3057\u3066\u767b\u9802\u3057\u3088\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303442783,"id_str":"3303442783","name":"\u307e\u3063\u3061","screen_name":"mattipoke","location":null,"url":null,"description":"\u30dd\u30b1\u30e2\u30f3\u306e\u8a71\u984c\u591a\u3081\u3067\u3059\u3002\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3084\u30b9\u30de\u30d6\u30e9\u3082\u3084\u3063\u3066\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":415,"friends_count":355,"listed_count":3,"favourites_count":317,"statuses_count":2258,"created_at":"Sat Aug 01 13:59:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646654920951640064\/Yv_eTFuW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646654920951640064\/Yv_eTFuW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303442783\/1443009320","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102659"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173356466177,"id_str":"663728173356466177","text":"@Secreta_riat \u7e54\u300c\u307e\u3042\u3001\u304a\u793c\u3092\u7533\u3057\u4e0a\u3052\u308b\u306e\u306f\u308f\u305f\u304f\u3057\u5171\u306e\u65b9\u3067\u3059\u308f\u3002\u3053\u306e\u3088\u3046\u306a\u7d20\u6575\u306a\u65b9\u3068\u3053\u306e\u3088\u3046\u306a\u7d20\u6575\u306a\u304a\u8336\u4f1a\u304c\u3067\u304d\u3066\u2026\u6539\u3081\u3066\u304a\u793c\u3092\u2026\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u300d\u7687\u300c\u3048\u3048\u3001\u4e45\u3057\u3076\u308a\u306b\u3053\u3093\u306a\u306b\u7f8e\u3057\u304f\u3001\u7d20\u6674\u3089\u3057\u3044\u304a\u8336\u4f1a\u306b\u62db\u304b\u308c\u307e\u3057\u305f\u3088\u3002\u4eca\u5ea6\u306f\u79c1\u9054\u304c\u3082\u3066\u306a\u3059\u65b9\u3067\u3059\u306d\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724424567263232,"in_reply_to_status_id_str":"663724424567263232","in_reply_to_user_id":1418640475,"in_reply_to_user_id_str":"1418640475","in_reply_to_screen_name":"Secreta_riat","user":{"id":1097759491,"id_str":"1097759491","name":"\u306f\u3086\u305f@\u5352\u8ad6","screen_name":"atuyah0201","location":"\u7344\u306e\u8c37\u9593\u306b\u57cb\u3082\u308c\u3066\u6b7b\u306b\u305f\u3044","url":"http:\/\/twpf.jp\/atuyah0201","description":"\u6210\u4eba\u6e08\u307f\/\u307e\u305f\u306e\u540d\u3092\u3068\u3059\u304b\/\u5275\u4f5c\u5893\/\u306d\u3053\u3042\u3064\u3081\u3053\u3058\u3089\u305b\/\u30a2\u30ca\u30ed\u30b0\u843d\u66f8\u304d\u30de\u30f3\/\u30ce\u30de\u6700\u611b\u30db\u30e2\u597d\u304d\u767e\u5408\u5e73\u6c17\/\u304d\u3087\u3046\u3060\u3044\u3092\u5b89\u6613\u306b\u4e00\u7dda\u8d8a\u3048\u3055\u305b\u308b\/\u304a\u4e0b\u54c1\u306a\u3053\u3068\u3082\u8a00\u3046\u308818\u2193\u306f\u6c17\u3092\u4ed8\u3051\u3066\u306d\/\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed","protected":false,"verified":false,"followers_count":81,"friends_count":114,"listed_count":8,"favourites_count":2277,"statuses_count":9977,"created_at":"Thu Jan 17 10:10:46 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659993112794628096\/r3CyFYXl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659993112794628096\/r3CyFYXl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1097759491\/1446652087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Secreta_riat","name":"Riat.","id":1418640475,"id_str":"1418640475","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102658"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377564672,"id_str":"663728173377564672","text":"@Pro_PEGIDA_ https:\/\/t.co\/e62E1SUWWd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":218627354,"in_reply_to_user_id_str":"218627354","in_reply_to_screen_name":"Pro_PEGIDA_","user":{"id":630517103,"id_str":"630517103","name":"Ernst Richter","screen_name":"internetfrust","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":20,"listed_count":1,"favourites_count":1,"statuses_count":435,"created_at":"Sun Jul 08 20:59:22 +0000 2012","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/e62E1SUWWd","expanded_url":"http:\/\/mobil.stern.de\/familie\/kinder\/fluechtlinge--lehrerverband-in-sachsen-anhalt-warnt-junge-maedchen-vor-schnellem-sex-mit-muslimen-6542170.html","display_url":"mobil.stern.de\/familie\/kinder\u2026","indices":[13,36]}],"user_mentions":[{"screen_name":"Pro_PEGIDA_","name":"Pro PEGIDA","id":218627354,"id_str":"218627354","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369004032,"id_str":"663728173369004032","text":"@tweetabs29 pafollow back naman po byeol \ud83d\ude03 thank you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717908619485184,"in_reply_to_status_id_str":"663717908619485184","in_reply_to_user_id":4168928720,"in_reply_to_user_id_str":"4168928720","in_reply_to_screen_name":"tweetabs29","user":{"id":4179848353,"id_str":"4179848353","name":"Antonette Andrade","screen_name":"byeol31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":28,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Mon Nov 09 13:51:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722774398013440\/bAAA4BeV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722774398013440\/bAAA4BeV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179848353\/1447078814","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tweetabs29","name":"Jhoy Infinity","id":4168928720,"id_str":"4168928720","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173381632001,"id_str":"663728173381632001","text":"RT @kawaii_masa: 1\u30f6\u6708\u524d\u3060\u304b\u3089\u9593\u306b\u5408\u3046\u304b\u3069\u3046\u304b\u308f\u304b\u3093\u306a\u3044\u3051\u3069\n\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059\uff01\ud83d\ude4f\n#\u5927\u91ce\u667a\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126rt\u76ee\u6307\u3059\n#RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/GkJYEFonPv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2212408518,"id_str":"2212408518","name":"\u3042\u3080\u306e\u3059","screen_name":"maximum__sj","location":"\u5317\u6d77\u9053 \u6642\u3005 \u4e09\u91cd","url":null,"description":"\u3057\u3087\u3055\u3093\u5d07\u62dd\/10\u5e74\u76ee\/\u7fd4\u6f64\u304c\u751f\u304d\u7532\u6590\/\u306b\u306e\u3042\u3044\/1996\u306e\u5927\u5b661\u5e74","protected":false,"verified":false,"followers_count":2220,"friends_count":2159,"listed_count":4,"favourites_count":408,"statuses_count":9362,"created_at":"Sun Nov 24 12:30:30 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633995293487292416\/i3BFWOWR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633995293487292416\/i3BFWOWR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2212408518\/1439991132","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 22:36:11 +0000 2015","id":658411761490485248,"id_str":"658411761490485248","text":"1\u30f6\u6708\u524d\u3060\u304b\u3089\u9593\u306b\u5408\u3046\u304b\u3069\u3046\u304b\u308f\u304b\u3093\u306a\u3044\u3051\u3069\n\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059\uff01\ud83d\ude4f\n#\u5927\u91ce\u667a\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126rt\u76ee\u6307\u3059\n#RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/GkJYEFonPv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220285662,"id_str":"3220285662","name":"\u308a\u306a@\u5fa9\u6d3b\u5f53\u9078\u7948\u9858","screen_name":"kawaii_masa","location":"\u7d20\u6674\u3089\u3057\u304d\u4e16\u754c","url":null,"description":"\u7dd1\u8272\u306e\u738b\u5b50\u69d8\u3088\u308a\u306e\u30aa\u30fc\u30eb\u62c5\uff0f\u6afb\u8449\uff0f\u305f\u304f\u3055\u3093\u306e\u3042\u3089\u3057\u3063\u304f\u3055\u3093\u3001\u3042\u3089\u3057\u3042\u3093\u305a\u3055\u3093\u3068\u3064\u306a\u304c\u308a\u305f\u3044\u3067\u3059 98line\u306eJK2 \u2661discostar\u69d8\u4fe1\u8005\u3067\u3059\u2661 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044","protected":false,"verified":false,"followers_count":1727,"friends_count":1750,"listed_count":2,"favourites_count":1123,"statuses_count":5308,"created_at":"Tue May 19 12:46:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600645094912315392\/SJB-heKd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600645094912315392\/SJB-heKd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220285662\/1444881879","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":287,"favorite_count":26,"entities":{"hashtags":[{"text":"\u5927\u91ce\u667a\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126rt\u76ee\u6307\u3059","indices":[34,54]},{"text":"RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[55,73]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658411748911747072,"id_str":"658411748911747072","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":592,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658411748911747072,"id_str":"658411748911747072","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":592,"resize":"fit"}}},{"id":658411749486366720,"id_str":"658411749486366720","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_2wUEAA_BKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_2wUEAA_BKs.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":323,"resize":"fit"},"large":{"w":399,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5927\u91ce\u667a\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126rt\u76ee\u6307\u3059","indices":[51,71]},{"text":"RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[72,90]}],"urls":[],"user_mentions":[{"screen_name":"kawaii_masa","name":"\u308a\u306a@\u5fa9\u6d3b\u5f53\u9078\u7948\u9858","id":3220285662,"id_str":"3220285662","indices":[3,15]}],"symbols":[],"media":[{"id":658411748911747072,"id_str":"658411748911747072","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":592,"resize":"fit"}},"source_status_id":658411761490485248,"source_status_id_str":"658411761490485248","source_user_id":3220285662,"source_user_id_str":"3220285662"}]},"extended_entities":{"media":[{"id":658411748911747072,"id_str":"658411748911747072","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_0nUEAAFC3K.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":592,"resize":"fit"}},"source_status_id":658411761490485248,"source_status_id_str":"658411761490485248","source_user_id":3220285662,"source_user_id_str":"3220285662"},{"id":658411749486366720,"id_str":"658411749486366720","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CSMl_2wUEAA_BKs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSMl_2wUEAA_BKs.jpg","url":"https:\/\/t.co\/GkJYEFonPv","display_url":"pic.twitter.com\/GkJYEFonPv","expanded_url":"http:\/\/twitter.com\/kawaii_masa\/status\/658411761490485248\/photo\/1","type":"photo","sizes":{"medium":{"w":399,"h":323,"resize":"fit"},"large":{"w":399,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"}},"source_status_id":658411761490485248,"source_status_id_str":"658411761490485248","source_user_id":3220285662,"source_user_id_str":"3220285662"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102664"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373198336,"id_str":"663728173373198336","text":"RT @TheUncurvable: LMFAOOO https:\/\/t.co\/rlue8etnfd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69499703,"id_str":"69499703","name":"Titty Man Tim","screen_name":"Jcsw14","location":"Houston, TX","url":null,"description":"6'3 Im a big toe model. I feed pigeons pop rocks. I constantly walk around naked & I was born an albino #MoneySuitsAndSex #550 #LakerNation #iTrade","protected":false,"verified":false,"followers_count":1525,"friends_count":471,"listed_count":34,"favourites_count":8483,"statuses_count":381730,"created_at":"Fri Aug 28 04:06:09 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649309620456943616\/89HVItfa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649309620456943616\/89HVItfa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69499703\/1445555692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:06 +0000 2015","id":663728020167987201,"id_str":"663728020167987201","text":"LMFAOOO https:\/\/t.co\/rlue8etnfd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412327887,"id_str":"412327887","name":"Markus","screen_name":"TheUncurvable","location":"NC","url":null,"description":"IF WE FOLLOW EACH OTHER WE DATING & IM STILL A FAITHFUL BLACK MAN","protected":false,"verified":false,"followers_count":6598,"friends_count":914,"listed_count":136,"favourites_count":960,"statuses_count":278240,"created_at":"Mon Nov 14 15:03:59 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646025938971529216\/QygrEjLR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646025938971529216\/QygrEjLR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412327887\/1438655369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727684669718528,"quoted_status_id_str":"663727684669718528","quoted_status":{"created_at":"Mon Nov 09 14:39:46 +0000 2015","id":663727684669718528,"id_str":"663727684669718528","text":"Just cuz I got ur number and nudes doesn't mean I won't unfollow ur ass.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69499703,"id_str":"69499703","name":"Titty Man Tim","screen_name":"Jcsw14","location":"Houston, TX","url":null,"description":"6'3 Im a big toe model. I feed pigeons pop rocks. I constantly walk around naked & I was born an albino #MoneySuitsAndSex #550 #LakerNation #iTrade","protected":false,"verified":false,"followers_count":1525,"friends_count":471,"listed_count":34,"favourites_count":8483,"statuses_count":381729,"created_at":"Fri Aug 28 04:06:09 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649309620456943616\/89HVItfa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649309620456943616\/89HVItfa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69499703\/1445555692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rlue8etnfd","expanded_url":"https:\/\/twitter.com\/jcsw14\/status\/663727684669718528","display_url":"twitter.com\/jcsw14\/status\/\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rlue8etnfd","expanded_url":"https:\/\/twitter.com\/jcsw14\/status\/663727684669718528","display_url":"twitter.com\/jcsw14\/status\/\u2026","indices":[27,50]}],"user_mentions":[{"screen_name":"TheUncurvable","name":"Markus","id":412327887,"id_str":"412327887","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173364867073,"id_str":"663728173364867073","text":"@ammarah_n Hai. Sila mesej kepada kami nombor akaun anda untuk semakan dan bantuan lanjut ye. Terima kasih. ^arya","source":"\u003ca href=\"http:\/\/www.vocanic.com\" rel=\"nofollow\"\u003eVSocial Community Manager\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726914327080962,"in_reply_to_status_id_str":"663726914327080962","in_reply_to_user_id":549543492,"in_reply_to_user_id_str":"549543492","in_reply_to_screen_name":"ammarah_n","user":{"id":154103584,"id_str":"154103584","name":"Astro","screen_name":"astroonline","location":"All Asia Broadcast Centre","url":"http:\/\/www.astro.com.my","description":"The official Astro Malaysia account. Follow us for latest updates on Astro\u2019s services and tweet us your enquiries! We\u2019re online Mon to Fri 9:00am \u2013 6:00pm.","protected":false,"verified":true,"followers_count":38942,"friends_count":7066,"listed_count":129,"favourites_count":2,"statuses_count":35220,"created_at":"Thu Jun 10 11:16:25 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608100705925132288\/5-OZ6F_Y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608100705925132288\/5-OZ6F_Y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154103584\/1444298872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ammarah_n","name":"\u0e25mm\u0e25r\u0e25","id":549543492,"id_str":"549543492","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080102660"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377458176,"id_str":"663728173377458176","text":"RT @TheRainBro: Any lakas ng hangin dito sa Tagaytay, kayang tangayin ang doubts and insecurities ko.","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144809836,"id_str":"144809836","name":"Rhea G","screen_name":"iamrhea17","location":"on my bed","url":null,"description":"Believer","protected":false,"verified":false,"followers_count":357,"friends_count":385,"listed_count":3,"favourites_count":154,"statuses_count":9448,"created_at":"Mon May 17 10:49:16 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2197A3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496034592\/xb4dace7661eb19f980824cd1c6f2511.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496034592\/xb4dace7661eb19f980824cd1c6f2511.png","profile_background_tile":true,"profile_link_color":"F71E6C","profile_sidebar_border_color":"E7D3B0","profile_sidebar_fill_color":"EBB970","profile_text_color":"F07868","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663360718729703425\/otFyfYnq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663360718729703425\/otFyfYnq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144809836\/1446992559","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheRainBro","name":"Juan Miguel Severo","id":46134061,"id_str":"46134061","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373255680,"id_str":"663728173373255680","text":"RT @Koike_Tempei: \u0e02\u0e2d\u0e41\u0e04\u0e48\u0e04\u0e33\u0e27\u0e48\u0e32\u0e1d\u0e31\u0e19\u0e14\u0e35 :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241364846,"id_str":"241364846","name":"\u0e40\u0e08\u0e25\u0e40\u0e1f\u0e22\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e04\u0e19\u0e08\u0e35\u0e19","screen_name":"Notevrt","location":null,"url":null,"description":"\u0e40\u0e1a\u0e37\u0e48\u0e2d\u0e27\u0e48\u0e30\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e40\u0e14\u0e34\u0e21\u0e46\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e08\u0e30\u0e08\u0e1a","protected":false,"verified":false,"followers_count":23,"friends_count":144,"listed_count":0,"favourites_count":1271,"statuses_count":3530,"created_at":"Sat Jan 22 02:46:55 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625342832782409729\/kH1tp2tq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625342832782409729\/kH1tp2tq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:54 +0000 2015","id":663726964629311489,"id_str":"663726964629311489","text":"\u0e02\u0e2d\u0e41\u0e04\u0e48\u0e04\u0e33\u0e27\u0e48\u0e32\u0e1d\u0e31\u0e19\u0e14\u0e35 :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151783510,"id_str":"151783510","name":"\u0e40\u0e17\u0e21\u0e40\u0e1b\u0e49","screen_name":"Koike_Tempei","location":null,"url":null,"description":"\u0e01\u0e33\u0e25\u0e31\u0e07\u0e23\u0e2d\u0e1b\u0e32\u0e0f\u0e34\u0e2b\u0e32\u0e23\u0e22\u0e4c","protected":false,"verified":false,"followers_count":75555,"friends_count":219,"listed_count":71,"favourites_count":1793,"statuses_count":76257,"created_at":"Fri Jun 04 06:56:02 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659344148277755904\/AxglaVqY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659344148277755904\/AxglaVqY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151783510\/1436863018","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Koike_Tempei","name":"\u0e40\u0e17\u0e21\u0e40\u0e1b\u0e49","id":151783510,"id_str":"151783510","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173385846785,"id_str":"663728173385846785","text":"RT @Ukun0S: \u4ecaRT\u3057\u305f\u3084\u3064\u4f55\u770c\u3060\u308d\u3046\u2026\u3059\u3054\u3044\u3053\u3053\u306b\u4f3c\u305f\u666f\u8272\u304c\u5bb6\u306e\u8fd1\u304f\u306b\u3042\u308b\u306e\u3060\u304c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790923871,"id_str":"2790923871","name":"\u304d\u304f\u3057\u3085\u3093","screen_name":"04184K","location":null,"url":null,"description":"\u751f\u304d\u3066\u307e\u3059\u3088\u307e\u3060( \u0361\u00b0 \u035c\u0296 \u0361\u00b0)","protected":false,"verified":false,"followers_count":53,"friends_count":45,"listed_count":0,"favourites_count":342,"statuses_count":950,"created_at":"Mon Sep 29 08:00:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652114214249562112\/WTYKQQ8B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652114214249562112\/WTYKQQ8B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790923871\/1421559114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:48:06 +0000 2015","id":663699584967819265,"id_str":"663699584967819265","text":"\u4ecaRT\u3057\u305f\u3084\u3064\u4f55\u770c\u3060\u308d\u3046\u2026\u3059\u3054\u3044\u3053\u3053\u306b\u4f3c\u305f\u666f\u8272\u304c\u5bb6\u306e\u8fd1\u304f\u306b\u3042\u308b\u306e\u3060\u304c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1648125410,"id_str":"1648125410","name":"\u3086~\u304f\u3093#(*\u00b4\u2200\uff40*)\uff89","screen_name":"Ukun0S","location":"\u95a2\u6771\u5730\u65b9","url":null,"description":"P&D\u307e\u3063\u305f\u308a\u6c34\u611b\u597d Rank600\/400\u2191\/ \u9ed2\u732bRank100\u2191\/\u30e2\u30f3\u30b9\u30c8\u521d\u5fc3\u8005\/\u5b9c\u3057\u304f\u3067\u3059(*^^*\u309e\u4f3c\u9854\u7d75\u306f\u308a\u3061\u3087(@yukiguniapple)\u3055\u3093\u306b\u63cf\u3044\u3066\u3044\u305f\u3060\u304d\u307e\u3057\u305f(*\u00b4\u2200\uff40*)\uff89","protected":false,"verified":false,"followers_count":550,"friends_count":383,"listed_count":12,"favourites_count":1649,"statuses_count":6498,"created_at":"Mon Aug 05 16:08:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662479560349364226\/ToqcyoJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662479560349364226\/ToqcyoJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1648125410\/1446740441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ukun0S","name":"\u3086~\u304f\u3093#(*\u00b4\u2200\uff40*)\uff89","id":1648125410,"id_str":"1648125410","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102665"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173381586944,"id_str":"663728173381586944","text":"#AmexWFM","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":538320097,"id_str":"538320097","name":"tina ","screen_name":"tinatiu007","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":61,"created_at":"Tue Mar 27 17:02:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmexWFM","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080102664"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173352374272,"id_str":"663728173352374272","text":"\u0634\u0627\u0647\u062f \u0627\u0644\u0639\u0646\u0641 \u0627\u0644\u0630\u064a \u064a\u0639\u0644\u0645\u0647 \u0627\u0644\u0635\u0641\u0648\u064a\u0648\u0646 \u0644\u0623\u0637\u0641\u0627\u0644\u0647\u0645\n\u062a\u062e\u064a\u0644 \u0644\u0648 \u0643\u0627\u0646 \u0641\u064a \u0645\u062f\u0627\u0631\u0633 \u0623\u0647\u0644 #\u0627\u0644\u0633\u0646\u0629 \u061f!\n\u0635\u0648\u0631\u0629 \u0628\u0644\u0627 \u062a\u062d\u064a\u0629 \u0644\u062f\u0639\u0627\u0629 \u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0646\u0627\u0647\u062c !! https:\/\/t.co\/GkEifExoZC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1287036852,"id_str":"1287036852","name":"\u0627\u0628\u0648\u0639\u0628\u062f\u0627\u0644\u0644\u0647","screen_name":"fahadhh2","location":null,"url":null,"description":"\u0645\u0639\u0644\u0645 (\u0627\u0644\u0644\u0647\u0645 \u0635\u0644 \u0639\u0644\u0649 \u0646\u0628\u064a\u0646\u0627 \u0645\u062d\u0645\u062f \u0643\u0644\u0645\u0627 \u0630\u0643\u0631\u0647 \u0627\u0644\u0630\u0627\u0643\u0631\u0648\u0646 \u0648\u0635\u0644 \u0627\u0644\u0644\u0647\u0645 \u0639\u0644\u0649 \u0646\u0628\u064a\u0646\u0627 \u0645\u062d\u0645\u062f \u0643\u0644\u0645\u0627 \u063a\u0641\u0644 \u0639\u0646 \u0630\u0643\u0631\u0647 \u0627\u0644\u063a\u0627\u0641\u0644\u0648\u0646 )","protected":false,"verified":false,"followers_count":72,"friends_count":291,"listed_count":0,"favourites_count":90,"statuses_count":358,"created_at":"Thu Mar 21 21:49:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557800975927631875\/LbLL1lkd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557800975927631875\/LbLL1lkd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1287036852\/1402569555","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0646\u0629","indices":[65,71]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663715078877876227,"id_str":"663715078877876227","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9WQSWEAMFDIP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9WQSWEAMFDIP.jpg","url":"https:\/\/t.co\/GkEifExoZC","display_url":"pic.twitter.com\/GkEifExoZC","expanded_url":"http:\/\/twitter.com\/almol7em\/status\/663715093998387200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":663715093998387200,"source_status_id_str":"663715093998387200","source_user_id":335441093,"source_user_id_str":"335441093"}]},"extended_entities":{"media":[{"id":663715078877876227,"id_str":"663715078877876227","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9WQSWEAMFDIP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9WQSWEAMFDIP.jpg","url":"https:\/\/t.co\/GkEifExoZC","display_url":"pic.twitter.com\/GkEifExoZC","expanded_url":"http:\/\/twitter.com\/almol7em\/status\/663715093998387200\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":540,"h":960,"resize":"fit"},"large":{"w":540,"h":960,"resize":"fit"}},"source_status_id":663715093998387200,"source_status_id_str":"663715093998387200","source_user_id":335441093,"source_user_id_str":"335441093"},{"id":663715079406374913,"id_str":"663715079406374913","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9WSQWUAEt2aC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9WSQWUAEt2aC.jpg","url":"https:\/\/t.co\/GkEifExoZC","display_url":"pic.twitter.com\/GkEifExoZC","expanded_url":"http:\/\/twitter.com\/almol7em\/status\/663715093998387200\/photo\/1","type":"photo","sizes":{"large":{"w":469,"h":540,"resize":"fit"},"small":{"w":340,"h":391,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":469,"h":540,"resize":"fit"}},"source_status_id":663715093998387200,"source_status_id_str":"663715093998387200","source_user_id":335441093,"source_user_id_str":"335441093"},{"id":663715079569981440,"id_str":"663715079569981440","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX9WS3WwAAGX4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX9WS3WwAAGX4X.jpg","url":"https:\/\/t.co\/GkEifExoZC","display_url":"pic.twitter.com\/GkEifExoZC","expanded_url":"http:\/\/twitter.com\/almol7em\/status\/663715093998387200\/photo\/1","type":"photo","sizes":{"medium":{"w":491,"h":540,"resize":"fit"},"small":{"w":340,"h":373,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":491,"h":540,"resize":"fit"}},"source_status_id":663715093998387200,"source_status_id_str":"663715093998387200","source_user_id":335441093,"source_user_id_str":"335441093"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080102657"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369044992,"id_str":"663728173369044992","text":"Looking to get away this fall? Plan a trip to one of these awesome U.S. cities. https:\/\/t.co\/DQTDLVymQh #bestfalltraveldestinations","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2420467590,"id_str":"2420467590","name":"Margarito Reyes","screen_name":"ray24seven","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":7,"listed_count":0,"favourites_count":1,"statuses_count":9,"created_at":"Mon Mar 31 12:30:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450611341535887360\/COUpoT77_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450611341535887360\/COUpoT77_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bestfalltraveldestinations","indices":[104,131]}],"urls":[{"url":"https:\/\/t.co\/DQTDLVymQh","expanded_url":"http:\/\/cokeurl.com\/falltravel","display_url":"cokeurl.com\/falltravel","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373259776,"id_str":"663728173373259776","text":"En Fotos: As\u00ed particip\u00f3 el pueblo venezolano en el gran ensayo para la victoria https:\/\/t.co\/TfZCp82hyN @dcabellor #JPSUV_montes","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2194393640,"id_str":"2194393640","name":"JPSUV Mcipio Montes","screen_name":"JuvenPsuvMontes","location":"Rep. Bolivariana de Venezuela","url":null,"description":"Es Hugo Ch\u00e1vez nuestro padre quien nos mostr\u00f3 el sendero, aqu\u00ed repletos de sue\u00f1os y de lineas; El joven revolucionario cuida el ambiente y lee. \u00a1Haz Revoluci\u00f3n!","protected":false,"verified":false,"followers_count":574,"friends_count":608,"listed_count":11,"favourites_count":3,"statuses_count":92824,"created_at":"Thu Nov 14 15:29:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171826976\/Yd74HMif.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171826976\/Yd74HMif.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/480754448365813761\/drVvQLto_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/480754448365813761\/drVvQLto_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2194393640\/1424353791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JPSUV_montes","indices":[115,128]}],"urls":[{"url":"https:\/\/t.co\/TfZCp82hyN","expanded_url":"http:\/\/dlvr.it\/ChfqGR","display_url":"dlvr.it\/ChfqGR","indices":[80,103]}],"user_mentions":[{"screen_name":"dcabellor","name":"Diosdado Cabello R","id":128262354,"id_str":"128262354","indices":[104,114]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173385912320,"id_str":"663728173385912320","text":"RT @MelinaSophie: Du wei\u00dft du wirst erwachsen, wenn du einen Horrorfilm gucken kannst, ohne dich danach in deiner eigenen Wohnung zu Tode z\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3906349933,"id_str":"3906349933","name":"THE\u00c5","screen_name":"nxchtkd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":92,"listed_count":0,"favourites_count":176,"statuses_count":62,"created_at":"Thu Oct 15 20:21:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655090938432389120\/4x7x-7Py_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655090938432389120\/4x7x-7Py_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:08:50 +0000 2015","id":663523608761868288,"id_str":"663523608761868288","text":"Du wei\u00dft du wirst erwachsen, wenn du einen Horrorfilm gucken kannst, ohne dich danach in deiner eigenen Wohnung zu Tode zu gruseln.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1924076820,"id_str":"1924076820","name":"Melina Sophie","screen_name":"MelinaSophie","location":"Cologne","url":"http:\/\/www.youtube.com\/lifewithmelina","description":"I'm an alien \u2219 contact: lifewithmelina@yahoo.de","protected":false,"verified":true,"followers_count":712338,"friends_count":197,"listed_count":393,"favourites_count":33433,"statuses_count":10940,"created_at":"Tue Oct 01 17:39:27 +0000 2013","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"D11B91","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659767561962303490\/BXvnHHaB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659767561962303490\/BXvnHHaB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1924076820\/1446135674","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":526,"favorite_count":4808,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MelinaSophie","name":"Melina Sophie","id":1924076820,"id_str":"1924076820","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080102665"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360660480,"id_str":"663728173360660480","text":"RT @sunflowers5fam5: \u4eca\u65e5\u521d\u3081\u3066\u5b66\u6821\u3067Hey! Say! JUMP\u306a\u304c\u308c\u305f\uff01\uff01\uff01\u5b09\u3057\u304f\u3066\u6ce3\u3044\u305f\u3002(\u307e\u3062\u3067w)\n\u30a6\u30a3\u30fc\u30af\u30a8\u30f3\u30c0\u30fc\u3068 Chau#\u3068\u611b\u3088\u3001\u50d5\u3092\u5c0e\u3044\u3066\u3086\u3051\uff01\uff01\uff01\n\u3053\u306e\u6b4c\u597d\u304d\u306a\u4eba\u30ea\u30c4\u30a4\u30fc\u30c8\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3945072373,"id_str":"3945072373","name":"\u5857\u304f\u3093@\u8abf\u67fb\u5c02\u9580\u306e\u52a9\u624b","screen_name":"lqv_hsj","location":null,"url":null,"description":"Hey!Say!JUMP\u3001\u5927\u3061\u3083\u3093\u3001\u6dbc\u4ecb\u304f\u3093\u304c\u2764\ufe0f\u306aLJK\uff01\u6c17\u8efd\u306bfollow\u3057\u3066\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3067\u3059^_^\u2661","protected":false,"verified":false,"followers_count":108,"friends_count":122,"listed_count":0,"favourites_count":485,"statuses_count":372,"created_at":"Mon Oct 19 08:23:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656026039248814080\/8PArpt7__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656026039248814080\/8PArpt7__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3945072373\/1445396332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:13 +0000 2015","id":663716224405139456,"id_str":"663716224405139456","text":"\u4eca\u65e5\u521d\u3081\u3066\u5b66\u6821\u3067Hey! Say! JUMP\u306a\u304c\u308c\u305f\uff01\uff01\uff01\u5b09\u3057\u304f\u3066\u6ce3\u3044\u305f\u3002(\u307e\u3062\u3067w)\n\u30a6\u30a3\u30fc\u30af\u30a8\u30f3\u30c0\u30fc\u3068 Chau#\u3068\u611b\u3088\u3001\u50d5\u3092\u5c0e\u3044\u3066\u3086\u3051\uff01\uff01\uff01\n\u3053\u306e\u6b4c\u597d\u304d\u306a\u4eba\u30ea\u30c4\u30a4\u30fc\u30c8\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3322611264,"id_str":"3322611264","name":"\u307f\u307f\u300e\u5c71\u7530\u304f\u3093\u62c5\u5f53\u2728\u300f","screen_name":"sunflowers5fam5","location":"\u591c\u7a7a\u306e\u661f\u306e\u4e0b.*","url":null,"description":"\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044\uff01\u4e2d3\u3067\u3059\u3061\u3087\u30fc\u708e\u4e0a\u3002\u300e\u541b\u3068\u4e00\u7dd2\u306b\u30c6\u30a4\u30af\u30aa\u30d5\u5c71\u7530\u6dbc\u4ecb\u300f\nJUMP\u597d\u304d\u306b\u306a\u3063\u305f\uff06\u57a2\u4f5c\u3063\u305f\u65e5\u21922015\u5e7410\u670825\u65e5~\n900\u4eba\uff01\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\u53d7\u9a13\u751f\u306e\u305f\u3081\u3061\u3087\u304f\u3061\u3087\u304f\u653e\u7f6e\uff06\u3061\u3087\u304f\u3061\u3087\u304f\u708e\u4e0a\u3067\u3044\u304d\u307e\u3059\u2764\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u0295\u201d\u032e\u0941\u097d\u0941\u0dc6\u20db","protected":false,"verified":false,"followers_count":962,"friends_count":1387,"listed_count":5,"favourites_count":2195,"statuses_count":2642,"created_at":"Fri Aug 21 19:04:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663360870349586432\/6i5wKZVn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663360870349586432\/6i5wKZVn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322611264\/1446992529","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sunflowers5fam5","name":"\u307f\u307f\u300e\u5c71\u7530\u304f\u3093\u62c5\u5f53\u2728\u300f","id":3322611264,"id_str":"3322611264","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102659"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173368999936,"id_str":"663728173368999936","text":"RT @brownjenjen: NFL: Steelers' Ben Roethlisberger, VIkings' Teddy Bridgewater, ... https:\/\/t.co\/orLajsYq2A","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2494003213,"id_str":"2494003213","name":"Amy :P","screen_name":"wamysweet","location":"In your phone","url":null,"description":null,"protected":false,"verified":false,"followers_count":19604,"friends_count":20616,"listed_count":334,"favourites_count":18836,"statuses_count":297435,"created_at":"Wed May 14 10:19:04 +0000 2014","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/466523993969668097\/EriwwqcH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/466523993969668097\/EriwwqcH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2494003213\/1400063049","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051356700673,"id_str":"663728051356700673","text":"NFL: Steelers' Ben Roethlisberger, VIkings' Teddy Bridgewater, ... https:\/\/t.co\/orLajsYq2A","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453787236,"id_str":"2453787236","name":"Jennifer ","screen_name":"brownjenjen","location":"Dallas, TX","url":"http:\/\/bit.ly\/usnewse","description":"i've got NO TIME to answer all DM's - i'll favorite (if i've time) some of your posts, but for more i don't have time... sorry :\/","protected":false,"verified":false,"followers_count":28141,"friends_count":2,"listed_count":266,"favourites_count":369,"statuses_count":306043,"created_at":"Sat Apr 19 23:03:12 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509709810938298368\/Cx8Qrtva_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509709810938298368\/Cx8Qrtva_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453787236\/1410359620","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/orLajsYq2A","expanded_url":"http:\/\/dlvr.it\/ChfpMh","display_url":"dlvr.it\/ChfpMh","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/orLajsYq2A","expanded_url":"http:\/\/dlvr.it\/ChfpMh","display_url":"dlvr.it\/ChfpMh","indices":[84,107]}],"user_mentions":[{"screen_name":"brownjenjen","name":"Jennifer ","id":2453787236,"id_str":"2453787236","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369188352,"id_str":"663728173369188352","text":"\u0130kame mal = ikame sevgili olay\u0131, hem erkeklerin hem de bayanlar\u0131n \u00fczerinde en \u00c7ok \u00e7al\u0131\u015ft\u0131\u011f\u0131 konudur!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2518470009,"id_str":"2518470009","name":"Enes Akarslan","screen_name":"bilalkara657","location":"Sel\u00e7uklu, Konya","url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":158,"listed_count":0,"favourites_count":67,"statuses_count":64,"created_at":"Wed Apr 30 07:02:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663632403622207489\/SWanjuS5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663632403622207489\/SWanjuS5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2518470009\/1447057364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360615424,"id_str":"663728173360615424","text":"RT @nekonopapa0926: \u3053\u307e\u308b\u3068\u674f\u306e\u30b3\u30e9\u30dc\u306f\u3088\u304f\u898b\u304b\u3051\u308b\u306e\u3067\u5916\u3046\u307e\u308b\u3068\u674f\u3067\u30b3\u30e9\u30dc\u3063\u3066\u307f\u305f\u3089\u76ee\u306e\u30d1\u30c3\u30c1\u30ea\u3057\u305f\u674f\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u4ef6\u3002\n\n#\u5e72\u7269\u59b9\uff01\u3046\u307e\u308b\u3061\u3083\u3093\n#\u53cc\u8449\u674f https:\/\/t.co\/1eiH5hYelL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2258433708,"id_str":"2258433708","name":"KURT\u221e","screen_name":"kuruboo2013","location":"\u97f3\u697d\u304c\u751f\u304d\u304c\u3044","url":null,"description":"\u9ad82\u3000SAfam\u3000Crew\u3000\u30df\u30aa\u30e9\u30fc\u3000\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3000\u3053\u3068\u308a\u3093\u63a8\u3057\u3000\u3081\u3057\u3060\u3055\u3093\u3000\u9280\u9b42\u3000\u5e72\u7269\u59b9\uff01\u3046\u307e\u308b\u3061\u3083\u3093\u3000Honeyworks\u3000\u30af\u30ea\u30fc\u30d7\u30cf\u30a4\u30d7\u3000\u7a7a\u60f3\u59d4\u54e1\u4f1a\u3000KANA-BOON\u3000RADWIMPS","protected":false,"verified":false,"followers_count":284,"friends_count":274,"listed_count":4,"favourites_count":52,"statuses_count":725,"created_at":"Mon Dec 23 04:02:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722790843912192\/nz_zw00T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722790843912192\/nz_zw00T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2258433708\/1415978504","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 11:17:39 +0000 2015","id":662227270774337536,"id_str":"662227270774337536","text":"\u3053\u307e\u308b\u3068\u674f\u306e\u30b3\u30e9\u30dc\u306f\u3088\u304f\u898b\u304b\u3051\u308b\u306e\u3067\u5916\u3046\u307e\u308b\u3068\u674f\u3067\u30b3\u30e9\u30dc\u3063\u3066\u307f\u305f\u3089\u76ee\u306e\u30d1\u30c3\u30c1\u30ea\u3057\u305f\u674f\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u4ef6\u3002\n\n#\u5e72\u7269\u59b9\uff01\u3046\u307e\u308b\u3061\u3083\u3093\n#\u53cc\u8449\u674f https:\/\/t.co\/1eiH5hYelL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265856397,"id_str":"265856397","name":"\u732b\u306e\u30d1\u30d1","screen_name":"nekonopapa0926","location":null,"url":null,"description":"\u3057\u304c\u306a\u3044\u30d8\u30bf\u30ec\u7d75\u5e2b\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":72,"friends_count":70,"listed_count":1,"favourites_count":552,"statuses_count":1540,"created_at":"Mon Mar 14 07:32:43 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642188768691163136\/_iI_E68Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642188768691163136\/_iI_E68Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265856397\/1441944622","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":6,"entities":{"hashtags":[{"text":"\u5e72\u7269\u59b9","indices":[54,58]},{"text":"\u53cc\u8449\u674f","indices":[66,70]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662227263321038848,"id_str":"662227263321038848","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","url":"https:\/\/t.co\/1eiH5hYelL","display_url":"pic.twitter.com\/1eiH5hYelL","expanded_url":"http:\/\/twitter.com\/nekonopapa0926\/status\/662227270774337536\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1024,"resize":"fit"},"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662227263321038848,"id_str":"662227263321038848","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","url":"https:\/\/t.co\/1eiH5hYelL","display_url":"pic.twitter.com\/1eiH5hYelL","expanded_url":"http:\/\/twitter.com\/nekonopapa0926\/status\/662227270774337536\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1024,"resize":"fit"},"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5e72\u7269\u59b9","indices":[74,78]},{"text":"\u53cc\u8449\u674f","indices":[86,90]}],"urls":[],"user_mentions":[{"screen_name":"nekonopapa0926","name":"\u732b\u306e\u30d1\u30d1","id":265856397,"id_str":"265856397","indices":[3,18]}],"symbols":[],"media":[{"id":662227263321038848,"id_str":"662227263321038848","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","url":"https:\/\/t.co\/1eiH5hYelL","display_url":"pic.twitter.com\/1eiH5hYelL","expanded_url":"http:\/\/twitter.com\/nekonopapa0926\/status\/662227270774337536\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1024,"resize":"fit"},"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662227270774337536,"source_status_id_str":"662227270774337536","source_user_id":265856397,"source_user_id_str":"265856397"}]},"extended_entities":{"media":[{"id":662227263321038848,"id_str":"662227263321038848","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTC0L_bUYAAd52y.jpg","url":"https:\/\/t.co\/1eiH5hYelL","display_url":"pic.twitter.com\/1eiH5hYelL","expanded_url":"http:\/\/twitter.com\/nekonopapa0926\/status\/662227270774337536\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":1024,"resize":"fit"},"medium":{"w":600,"h":960,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662227270774337536,"source_status_id_str":"662227270774337536","source_user_id":265856397,"source_user_id_str":"265856397"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102659"} +{"delete":{"status":{"id":598847709533970433,"id_str":"598847709533970433","user_id":3185352432,"user_id_str":"3185352432"},"timestamp_ms":"1447080102794"}} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173364875264,"id_str":"663728173364875264","text":"Happy 26,, sorry Y_Y I would be languish if to say on the hour 03 am|-O,, Save energy for the morning <=-P @angelina_k\u00e8ufera","source":"\u003ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003eUberSocial for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":909983070,"id_str":"909983070","name":"Mams Mustaman","screen_name":"mamsmustaman22","location":"Bandung,Indonesia","url":null,"description":"Eyes open at 4:30 am, Take Wudzhu, Worship, Work on a mission, Get a vision at 4 pm! | My Clothing Line http:\/\/www.facebook.com\/MustamanAcademyCloth","protected":false,"verified":false,"followers_count":82,"friends_count":561,"listed_count":1,"favourites_count":2,"statuses_count":188,"created_at":"Sun Oct 28 10:17:40 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"690E0E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/851940279\/5657cb03d3b4da7bdc1a801a6bd40b95.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/851940279\/5657cb03d3b4da7bdc1a801a6bd40b95.jpeg","profile_background_tile":false,"profile_link_color":"FF5100","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641244470353260544\/adakQtVt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641244470353260544\/adakQtVt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/909983070\/1377602743","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102660"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369004033,"id_str":"663728173369004033","text":"RT @shfly3424: \uc774\uc81c \uc5bc\ub9c8\uc548\ub0a8\uc558\uad70 ... \ud83d\udc2d\ud83d\udc30 #Yesung #MouseRabbit #2\ud638\uc810 #\uc11c\ucd0c https:\/\/t.co\/wK9902OKDU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2441565522,"id_str":"2441565522","name":"\ucd5c\uc774\uc6d0","screen_name":"yiwon9987","location":"Malaysia","url":null,"description":"\uc5d8\ud504(ELF,\ub824\uc19c\ub2c8\uc57c)\n \uc288\ud37c\uc8fc\ub2c8\uc5b4 \uc0ac\ub791\ud574\uc694!!\n\uc5d8\ud504(4\ub144)","protected":false,"verified":false,"followers_count":598,"friends_count":1612,"listed_count":9,"favourites_count":18335,"statuses_count":20474,"created_at":"Sun Apr 13 11:18:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633848296037986304\/Zhpe2NFO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633848296037986304\/Zhpe2NFO.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663340724092469248\/4u7A-WuF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663340724092469248\/4u7A-WuF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2441565522\/1445091512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:03 +0000 2015","id":663722471267434496,"id_str":"663722471267434496","text":"\uc774\uc81c \uc5bc\ub9c8\uc548\ub0a8\uc558\uad70 ... \ud83d\udc2d\ud83d\udc30 #Yesung #MouseRabbit #2\ud638\uc810 #\uc11c\ucd0c https:\/\/t.co\/wK9902OKDU","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":152902472,"id_str":"152902472","name":"Yesung","screen_name":"shfly3424","location":"Korea","url":null,"description":"Super junior Yesung (Instagram) YESUNG1106 (weibo) Yesung110684","protected":false,"verified":true,"followers_count":3402548,"friends_count":47,"listed_count":35191,"favourites_count":575,"statuses_count":598,"created_at":"Mon Jun 07 04:50:16 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641257798479687681\/kf7Oh8eI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641257798479687681\/kf7Oh8eI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/152902472\/1424152890","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1178,"favorite_count":1384,"entities":{"hashtags":[{"text":"Yesung","indices":[17,24]},{"text":"MouseRabbit","indices":[25,37]},{"text":"2\ud638\uc810","indices":[38,42]},{"text":"\uc11c\ucd0c","indices":[43,46]}],"urls":[{"url":"https:\/\/t.co\/wK9902OKDU","expanded_url":"https:\/\/instagram.com\/p\/93f5c8Av_8\/","display_url":"instagram.com\/p\/93f5c8Av_8\/","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Yesung","indices":[32,39]},{"text":"MouseRabbit","indices":[40,52]},{"text":"2\ud638\uc810","indices":[53,57]},{"text":"\uc11c\ucd0c","indices":[58,61]}],"urls":[{"url":"https:\/\/t.co\/wK9902OKDU","expanded_url":"https:\/\/instagram.com\/p\/93f5c8Av_8\/","display_url":"instagram.com\/p\/93f5c8Av_8\/","indices":[62,85]}],"user_mentions":[{"screen_name":"shfly3424","name":"Yesung","id":152902472,"id_str":"152902472","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173389975552,"id_str":"663728173389975552","text":"\u5bfa\u7530\u5fc3\u304f\u3093\u3092\u8179\u30d1\u30f3\u3059\u308b\u306e\u4f1a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3247892234,"id_str":"3247892234","name":"\u75bc\u6728(\u30d2\u30a4\u30e9\u30ae)","screen_name":"cos_mic_ham","location":"\u30c1\u30fc\u30d0\u304f\u3093\u306e\u6d99\u888b ","url":null,"description":"\u7121\u985e\u306e\u3046\u307f\u307e\u304d\u597d\u304d\n\u3010\u8594\u8587\u59eb\u968aNo.2\u3011","protected":false,"verified":false,"followers_count":1708,"friends_count":1798,"listed_count":53,"favourites_count":15594,"statuses_count":2984,"created_at":"Wed Jun 17 13:53:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660841937843294208\/KxqSfBUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660841937843294208\/KxqSfBUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3247892234\/1446465729","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102666"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373370368,"id_str":"663728173373370368","text":"@_Meltemce_ \n\u0130stanbul= Mehmet(Muhammet)Fatheden+Mustafa(Kurtaran)=Muhammet Mustafa (istanbulu fetheden\/kurtaran asker ne g\u00fczel asker)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726004330975233,"in_reply_to_status_id_str":"663726004330975233","in_reply_to_user_id":257190144,"in_reply_to_user_id_str":"257190144","in_reply_to_screen_name":"_Meltemce_","user":{"id":328433306,"id_str":"328433306","name":"\u0130smet ZEREN","screen_name":"ismet_zeren","location":null,"url":"http:\/\/www.facebook.com\/ismet.u.zeren","description":"sadece insan\u0131m ve hep insan kalaca\u011f\u0131m\r\nsmtzrn.ieee@hotmail.com\r\nzerenismet@yahoo.com","protected":false,"verified":false,"followers_count":66922,"friends_count":66650,"listed_count":34,"favourites_count":3478,"statuses_count":95043,"created_at":"Sun Jul 03 10:52:56 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623350369851080704\/7V0WLZbC.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623350369851080704\/7V0WLZbC.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1424508527\/ismet_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1424508527\/ismet_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/328433306\/1412278433","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_Meltemce_","name":"By Meltemce","id":257190144,"id_str":"257190144","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369024512,"id_str":"663728173369024512","text":"\u0e16\u0e32\u0e21\u0e16\u0e36\u0e07\u0e25\u0e34\u0e49\u0e07 \u0e1e\u0e2d\u0e2d\u0e31\u0e1e\u0e41\u0e1b\u0e30\u0e40\u0e1e\u0e08 \/\/\u0e25\u0e39\u0e1a\u0e2b\u0e19\u0e49\u0e32\/\/","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125377166,"id_str":"125377166","name":"\u30ab\u30ea:\u4f0a\u5948\u30b9\u30ecD8@AZonly","screen_name":"cary69mono","location":"thailand","url":"http:\/\/www.pixiv.net\/member.php?id=2571895","description":"\u0e0b\u0e36\u0e19\/Tsun::\u314e_\u314e)artist&coplayer | \u4f0a\u5948\u30b9\u30ec+\u30b9\u30ec\u4f0a\u5948\u306eStalker\u2727hiddlesworth | INTJ l Eng&Th| \u2727this is R18+ acc\u2727 PAGE: https:\/\/www.facebook.com\/Pudding.Comic \u2727make random art","protected":false,"verified":false,"followers_count":594,"friends_count":404,"listed_count":21,"favourites_count":7977,"statuses_count":135562,"created_at":"Mon Mar 22 16:20:37 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623447563035762692\/G44VTiTW.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623447563035762692\/G44VTiTW.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662515612258693120\/orlnUink_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662515612258693120\/orlnUink_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125377166\/1444650509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080102661"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173352247296,"id_str":"663728173352247296","text":"\uc1a1\uc601\uae38 \uc2eb\uc5b4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135570050,"id_str":"135570050","name":"\uc0ac\ub098\uc774 \uac00\ub294 \uae38","screen_name":"sydbris","location":null,"url":null,"description":"\ucc29\ud574\uc694. \uc784\uc601\ubc15\uadfc\ud670, \uc2eb\uc5b4\uc694. \ubbf8\uce5c \uc0ac\ub78c\uacfc\ub294 \uc18c\ud1b5\ud558\uc9c0 \uc54a\uc544\uc694.","protected":false,"verified":false,"followers_count":21191,"friends_count":11998,"listed_count":130,"favourites_count":51,"statuses_count":112096,"created_at":"Wed Apr 21 17:35:39 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663391566262697984\/MDayQJmE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663391566262697984\/MDayQJmE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/135570050\/1350544909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080102657"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360807937,"id_str":"663728173360807937","text":"||Por eso, quiz\u00e1s estaria chulo que la vea sufrir y gracias a ello se transforme, en plan haciendo honor a lo original.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4121668636,"id_str":"4121668636","name":"\u3016Cell \u3017 \u30bb\u30eb","screen_name":"xFinal_Cell","location":"[#In the Hell]","url":null,"description":"\u3016\u30bb\u30eb\uff61\u250aSeru\uff61\u3017\u275d\uff24\uff45\uff4d\uff4f\uff4e \uff4f\uff46 \uff54\uff48\uff45 \uff37 \uff4f \uff52 \uff4c \uff44 .\u275e\u3014I presented my perfect form. \u2014 Villain.\u3015\u275dHibrid Android \u275e [#Free Rol] #AU","protected":false,"verified":false,"followers_count":62,"friends_count":179,"listed_count":0,"favourites_count":9,"statuses_count":355,"created_at":"Thu Nov 05 19:40:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663638924045217792\/RFou0QWj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663638924045217792\/RFou0QWj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4121668636\/1447022405","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102659"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377568769,"id_str":"663728173377568769","text":"@BullangueriTop_ As\u00ed no m\u00e1s :C","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726564648046592,"in_reply_to_status_id_str":"663726564648046592","in_reply_to_user_id":223455933,"in_reply_to_user_id_str":"223455933","in_reply_to_screen_name":"BullangueriTop_","user":{"id":86333519,"id_str":"86333519","name":"Nico \u10e6","screen_name":"NicoChiessa","location":"Planeta Tierra. ","url":"http:\/\/nchiessa.wordpress.com","description":"No tengo coraz\u00f3n, bueno, yo ten\u00eda uno... Soy la cuenta parodia de la Nico que era feliz. Innuendo.","protected":false,"verified":false,"followers_count":3230,"friends_count":1998,"listed_count":36,"favourites_count":5183,"statuses_count":139434,"created_at":"Fri Oct 30 15:19:57 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663226833626923008\/zNLCe43p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663226833626923008\/zNLCe43p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86333519\/1443885514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BullangueriTop_","name":"C\u00e9sar Palacios Ayala","id":223455933,"id_str":"223455933","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173381586945,"id_str":"663728173381586945","text":"Google presenta TensorFlow, su sistema opensource de aprendizaje autom\u00e1tico https:\/\/t.co\/GUxpDyRfvU","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":541085781,"id_str":"541085781","name":"Rebeca Labanda","screen_name":"JBRebecaLabanda","location":"EUA","url":null,"description":"Trabajo por la tarde y por la ma\ufffdana la puede dedicar al mercadeo en red para ganar dinero","protected":false,"verified":false,"followers_count":3688,"friends_count":4475,"listed_count":9,"favourites_count":0,"statuses_count":49581,"created_at":"Fri Mar 30 17:42:48 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2001372489\/1769421309106_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2001372489\/1769421309106_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GUxpDyRfvU","expanded_url":"http:\/\/dlvr.it\/ChfmG9","display_url":"dlvr.it\/ChfmG9","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102664"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173356593152,"id_str":"663728173356593152","text":"@jauretruly @jbfifth brigado","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727955869237249,"in_reply_to_status_id_str":"663727955869237249","in_reply_to_user_id":175922631,"in_reply_to_user_id_str":"175922631","in_reply_to_screen_name":"jauretruly","user":{"id":1253217218,"id_str":"1253217218","name":"brenda #5H2","screen_name":"dinahjanue","location":"i love dinah janeSO MUCH ","url":null,"description":"dinah Dinah dINAH DiNaH dInAh DInaH DINAH hanid diNah dinah DinAaAh$$","protected":false,"verified":false,"followers_count":3301,"friends_count":270,"listed_count":30,"favourites_count":1395,"statuses_count":141054,"created_at":"Sat Mar 09 02:31:54 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560999750187487232\/x9jc4-Em.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560999750187487232\/x9jc4-Em.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727188827619328\/_UZzlBif_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727188827619328\/_UZzlBif_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253217218\/1447005025","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"68e019afec7d0ba5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/68e019afec7d0ba5.json","place_type":"city","name":"S\u00e3o Paulo","full_name":"S\u00e3o Paulo, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-46.826039,-24.008814],[-46.826039,-23.356792],[-46.365052,-23.356792],[-46.365052,-24.008814]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jauretruly","name":"tori #5H2","id":175922631,"id_str":"175922631","indices":[0,11]},{"screen_name":"jbfifth","name":"brends #5H2","id":586497796,"id_str":"586497796","indices":[12,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080102658"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173377433600,"id_str":"663728173377433600","text":"You might not realize there are conflicts brewing on the home ... More for Cancer https:\/\/t.co\/KCdOQYr4vS","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243743842,"id_str":"243743842","name":"Alexis","screen_name":"BigFaceRol_LEX","location":"w\/ frank in the ocean \u2122","url":null,"description":"Alexis \u25cf June 29th\u25cf 19","protected":false,"verified":false,"followers_count":709,"friends_count":649,"listed_count":0,"favourites_count":213,"statuses_count":18782,"created_at":"Thu Jan 27 18:29:14 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/696150038\/fc4cbf9d7a5577d798fb5af7668c40be.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/696150038\/fc4cbf9d7a5577d798fb5af7668c40be.jpeg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"8F898F","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663547025192034305\/iO0a8GKZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663547025192034305\/iO0a8GKZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243743842\/1447036913","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KCdOQYr4vS","expanded_url":"http:\/\/bit.ly\/yk3b9m","display_url":"bit.ly\/yk3b9m","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102663"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373222913,"id_str":"663728173373222913","text":"@KusudoShota \n\u3069\u3046\u3057\u305f\u306e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727847631097857,"in_reply_to_status_id_str":"663727847631097857","in_reply_to_user_id":3062752909,"in_reply_to_user_id_str":"3062752909","in_reply_to_screen_name":"KusudoShota","user":{"id":3174033660,"id_str":"3174033660","name":"\u25a7 \u25a6\u306a\u304b\u306e\u307f\u3089\u306e\u25a4 \u25a5","screen_name":"taicho_nakano","location":"\u25a7 \u25a6\u6edd\u9ad8\u6821\u3044\u3061\u306e\u3042\u3044\u25a4 \u25a5\u30b5\u30c3\u30ab\u30fc\u90e8MG\u25a7 \u25a6","url":null,"description":"\u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u81ea\u5206\u304c\u99ac\u9e7f\u3059\u304e\u3066\u6ce3\u3051\u308b\u81ea\u79f0\u9032\u5b66\u6821\u8ffd\u8a66\u30ac\u30c1\u52e2\uff61 \u2235\u20dd \u2661 \u2362\u20dd \u900f\u660e\u611f\u304c\u3042\u308a\u3042\u307e\u308bBUMPer\uff61() \u2235\u20dd \u2661 \u2362\u20dd \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6 \u25a4 \u25a5 \u25a7 \u25a6","protected":false,"verified":false,"followers_count":283,"friends_count":297,"listed_count":6,"favourites_count":12070,"statuses_count":6757,"created_at":"Sun Apr 26 01:24:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663215154994122753\/t7h7wya0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663215154994122753\/t7h7wya0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3174033660\/1443956189","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KusudoShota","name":"\u304f\u3059\u3069\u3093","id":3062752909,"id_str":"3062752909","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173360807936,"id_str":"663728173360807936","text":"https:\/\/t.co\/jzcr9FGHtK https:\/\/t.co\/2AwixUK7g5 @IOwebsite @NutriFabPro Twitter Marketing https:\/\/t.co\/OnqvboCjoA","source":"\u003ca href=\"http:\/\/www.netvibes.com\/\" rel=\"nofollow\"\u003eNetvibes Widget\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3299345317,"id_str":"3299345317","name":"Cecilia Quinn","screen_name":"cquinn2015","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":19,"listed_count":8,"favourites_count":28,"statuses_count":62787,"created_at":"Tue Jul 28 08:30:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625949813356388353\/PREbVriB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625949813356388353\/PREbVriB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jzcr9FGHtK","expanded_url":"http:\/\/netvib.es\/p\/p-t0","display_url":"netvib.es\/p\/p-t0","indices":[0,23]},{"url":"https:\/\/t.co\/2AwixUK7g5","expanded_url":"http:\/\/netvib.es\/p\/p-tr","display_url":"netvib.es\/p\/p-tr","indices":[24,47]}],"user_mentions":[{"screen_name":"IOwebsite","name":"IOweb Studio","id":3702734294,"id_str":"3702734294","indices":[48,58]},{"screen_name":"NutriFabPro","name":"NutriFabPro","id":3323106439,"id_str":"3323106439","indices":[59,71]}],"symbols":[],"media":[{"id":663728147179954176,"id_str":"663728147179954176","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO7gW4AAUXY5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO7gW4AAUXY5.jpg","url":"https:\/\/t.co\/OnqvboCjoA","display_url":"pic.twitter.com\/OnqvboCjoA","expanded_url":"http:\/\/twitter.com\/cquinn2015\/status\/663728173360807936\/photo\/1","type":"photo","sizes":{"thumb":{"w":72,"h":72,"resize":"crop"},"small":{"w":72,"h":72,"resize":"fit"},"large":{"w":72,"h":72,"resize":"fit"},"medium":{"w":72,"h":72,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728147179954176,"id_str":"663728147179954176","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJO7gW4AAUXY5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJO7gW4AAUXY5.jpg","url":"https:\/\/t.co\/OnqvboCjoA","display_url":"pic.twitter.com\/OnqvboCjoA","expanded_url":"http:\/\/twitter.com\/cquinn2015\/status\/663728173360807936\/photo\/1","type":"photo","sizes":{"thumb":{"w":72,"h":72,"resize":"crop"},"small":{"w":72,"h":72,"resize":"fit"},"large":{"w":72,"h":72,"resize":"fit"},"medium":{"w":72,"h":72,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102659"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173356445696,"id_str":"663728173356445696","text":"@ayaka73eight \n\n\u30d5\u30a3\u30ea\u30c3\u30d7\u6642\u4ee3\u304c\u597d\u304d\n\u91d1\u9aea\u6642\u4ee3\u306f\u597d\u307e\u306c\n\u30d4\u30f3\u30af\u3063\u3064\u304b\u8d64\u306f\u597d\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727920318296064,"in_reply_to_status_id_str":"663727920318296064","in_reply_to_user_id":2565039703,"in_reply_to_user_id_str":"2565039703","in_reply_to_screen_name":"ayaka73eight","user":{"id":2978150744,"id_str":"2978150744","name":"\u2600\ufe0e S a i k a","screen_name":"akebonoP","location":"# t a a k u r o \u261e","url":null,"description":"\u30c6 \u30b9 \u30c8 \u524d \u30ab \u30e9 \u30aa \u30b1 \u884c \u304d \u305f \u3044 \u7cfb \u53d7 \u9a13 \u751f : ) \u4e00 \u7dd2 \u306b \u30d2 \u30c8 \u30ab \u30e9 \u884c \u3063 \u3066 \u304f \u308c \u308b \u4eba \u52df \u96c6 # \u306f \u25ce \u3042 \u3089 \u3057 \u3063 \u304f \u6fc3 \u5ea6 \u6700 \u9ad8 \u5024 \u8d8a \u3048 \u3058 \u3083 \u307d \u53c2 \u6226 \u3057 \u307e \u3059 \u3042 \u306e 2 \u4eba \u304c \u597d \u304d #mimmamily #\u3042\u3089\u3057\u3063\u304f","protected":false,"verified":false,"followers_count":108,"friends_count":103,"listed_count":0,"favourites_count":3837,"statuses_count":4632,"created_at":"Tue Jan 13 01:46:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660483672278069248\/5oz6walu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660483672278069248\/5oz6walu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978150744\/1446451840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayaka73eight","name":"ayaka \u2765\u2765\u2765\uff081213\uff09","id":2565039703,"id_str":"2565039703","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080102658"} +{"delete":{"status":{"id":663719973487964160,"id_str":"663719973487964160","user_id":3275890020,"user_id_str":"3275890020"},"timestamp_ms":"1447080102922"}} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173373353984,"id_str":"663728173373353984","text":"Farruko con exitosa presentaci\u00f3n en Argentina - https:\/\/t.co\/unu1oTLJAi https:\/\/t.co\/Olz1Fq3uCl","source":"\u003ca href=\"http:\/\/www.sobraodeflow.com\" rel=\"nofollow\"\u003eSobraoDeFlow.com | Ceo RickyRD .\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2339610859,"id_str":"2339610859","name":"Freqkoh MC ","screen_name":"Amaury_FMC","location":"URB. ITALIA","url":"https:\/\/www.facebook.com\/RealFreqkOh","description":"(( NEW CUENTA )) Rapero | Compositor | Estudiante de Derecho | Fe, sacrificio, esfuerzo y humildad son la clave del \u00e9xito. | IG: freqkoh_rd","protected":false,"verified":false,"followers_count":78,"friends_count":54,"listed_count":1,"favourites_count":15,"statuses_count":10192,"created_at":"Wed Feb 12 02:26:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504677837140664320\/Yo5VavCR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504677837140664320\/Yo5VavCR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2339610859\/1408811160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unu1oTLJAi","expanded_url":"http:\/\/sobraodeflow.com\/?p=222207","display_url":"sobraodeflow.com\/?p=222207","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":663728173151047681,"id_str":"663728173151047681","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQcQWUAEPkty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQcQWUAEPkty.jpg","url":"https:\/\/t.co\/Olz1Fq3uCl","display_url":"pic.twitter.com\/Olz1Fq3uCl","expanded_url":"http:\/\/twitter.com\/Amaury_FMC\/status\/663728173373353984\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728173151047681,"id_str":"663728173151047681","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQcQWUAEPkty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQcQWUAEPkty.jpg","url":"https:\/\/t.co\/Olz1Fq3uCl","display_url":"pic.twitter.com\/Olz1Fq3uCl","expanded_url":"http:\/\/twitter.com\/Amaury_FMC\/status\/663728173373353984\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080102662"} +{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728173369204736,"id_str":"663728173369204736","text":"https:\/\/t.co\/Lo4Fkyawk4 https:\/\/t.co\/s1o1p4Ne8f https:\/\/t.co\/0BFmhMbjpG Twitter Marketing https:\/\/t.co\/oGkanGvyeh","source":"\u003ca href=\"http:\/\/www.netvibes.com\/\" rel=\"nofollow\"\u003eNetvibes Widget\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3296516964,"id_str":"3296516964","name":"Cassandra Wallace","screen_name":"casswallace2015","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":29,"listed_count":53,"favourites_count":7,"statuses_count":119077,"created_at":"Mon Jul 27 01:46:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625482556541005824\/9FMQZptq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625482556541005824\/9FMQZptq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Lo4Fkyawk4","expanded_url":"http:\/\/netvib.es\/p\/IV3f","display_url":"netvib.es\/p\/IV3f","indices":[0,23]},{"url":"https:\/\/t.co\/s1o1p4Ne8f","expanded_url":"http:\/\/netvib.es\/p\/1rX4","display_url":"netvib.es\/p\/1rX4","indices":[24,47]},{"url":"https:\/\/t.co\/0BFmhMbjpG","expanded_url":"http:\/\/netvib.es\/p\/p-tC","display_url":"netvib.es\/p\/p-tC","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":663728148413067264,"id_str":"663728148413067264","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPAGWsAAv0Is.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPAGWsAAv0Is.jpg","url":"https:\/\/t.co\/oGkanGvyeh","display_url":"pic.twitter.com\/oGkanGvyeh","expanded_url":"http:\/\/twitter.com\/casswallace2015\/status\/663728173369204736\/photo\/1","type":"photo","sizes":{"thumb":{"w":72,"h":72,"resize":"crop"},"small":{"w":72,"h":72,"resize":"fit"},"large":{"w":72,"h":72,"resize":"fit"},"medium":{"w":72,"h":72,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728148413067264,"id_str":"663728148413067264","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPAGWsAAv0Is.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPAGWsAAv0Is.jpg","url":"https:\/\/t.co\/oGkanGvyeh","display_url":"pic.twitter.com\/oGkanGvyeh","expanded_url":"http:\/\/twitter.com\/casswallace2015\/status\/663728173369204736\/photo\/1","type":"photo","sizes":{"thumb":{"w":72,"h":72,"resize":"crop"},"small":{"w":72,"h":72,"resize":"fit"},"large":{"w":72,"h":72,"resize":"fit"},"medium":{"w":72,"h":72,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080102661"} +{"delete":{"status":{"id":663714437010817024,"id_str":"663714437010817024","user_id":3254998705,"user_id_str":"3254998705"},"timestamp_ms":"1447080103174"}} +{"delete":{"status":{"id":663716513224855553,"id_str":"663716513224855553","user_id":3314238410,"user_id_str":"3314238410"},"timestamp_ms":"1447080103236"}} +{"delete":{"status":{"id":662637310400270338,"id_str":"662637310400270338","user_id":1060356860,"user_id_str":"1060356860"},"timestamp_ms":"1447080103308"}} +{"delete":{"status":{"id":467710643282264064,"id_str":"467710643282264064","user_id":746493847,"user_id_str":"746493847"},"timestamp_ms":"1447080103560"}} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546686464,"id_str":"663728177546686464","text":"@giomax8 perch\u00e8 @matteosalvinimi \u00e8 passato ad interessarsi alle rapine in villa, e ai pistoleros.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715321346449408,"in_reply_to_status_id_str":"663715321346449408","in_reply_to_user_id":1059877728,"in_reply_to_user_id_str":"1059877728","in_reply_to_screen_name":"giomax8","user":{"id":440691898,"id_str":"440691898","name":"Kilgore","screen_name":"ErmannoKilgore","location":null,"url":null,"description":"La vera forza di un uomo \u00e8 quella che possiede indipendentemente dalle attestazioni altrui.","protected":false,"verified":false,"followers_count":4054,"friends_count":4263,"listed_count":34,"favourites_count":24981,"statuses_count":69724,"created_at":"Mon Dec 19 09:13:25 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3087728450\/7e23c2fe64607c104c22deafa82ec578_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3087728450\/7e23c2fe64607c104c22deafa82ec578_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/440691898\/1444904906","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giomax8","name":"Mac \u03c0 \u2791\u03a3\u221e","id":1059877728,"id_str":"1059877728","indices":[0,8]},{"screen_name":"matteosalvinimi","name":"Matteo Salvini","id":270839361,"id_str":"270839361","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584410625,"id_str":"663728177584410625","text":"RT @Refinery29: Adult coloring books are the cool new thing and we found the best one out there: https:\/\/t.co\/EUD0e8qJRj https:\/\/t.co\/M723J\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26304194,"id_str":"26304194","name":"Ellie Browning","screen_name":"EllaRBrowning","location":"\u00dcT: 42.330082,-71.12812","url":null,"description":"Rhet\/Comp doctoral candidate at University of South Florida: feminist rhetorics, disability studies, tech \/ comm, and WPA. Also, pop culture, food, and my dogs.","protected":false,"verified":false,"followers_count":495,"friends_count":847,"listed_count":16,"favourites_count":121,"statuses_count":4907,"created_at":"Tue Mar 24 19:33:09 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAEEC8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/615201185566474240\/5KFn0prO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/615201185566474240\/5KFn0prO.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FAF2BE","profile_sidebar_fill_color":"C7E3D0","profile_text_color":"214025","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578565342827397121\/ovawfPRa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578565342827397121\/ovawfPRa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26304194\/1435084642","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:17 +0000 2015","id":663725300878999553,"id_str":"663725300878999553","text":"Adult coloring books are the cool new thing and we found the best one out there: https:\/\/t.co\/EUD0e8qJRj https:\/\/t.co\/M723JnyH5a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19546942,"id_str":"19546942","name":"refinery29","screen_name":"Refinery29","location":"New York, NY","url":"http:\/\/refinery29.com","description":"R29 unfiltered, uncensored \u2014 the best in fashion, health, entertainment, beauty, news...oh, and GIFs. http:\/\/www.refinery29.com","protected":false,"verified":true,"followers_count":1005328,"friends_count":1322,"listed_count":8804,"favourites_count":2295,"statuses_count":56305,"created_at":"Mon Jan 26 17:58:09 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F75352","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000032951688\/dd4ecb7e83639db7e499cc9d85938706.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000032951688\/dd4ecb7e83639db7e499cc9d85938706.jpeg","profile_background_tile":false,"profile_link_color":"F75352","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616232581655179264\/1Ga9SYGn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616232581655179264\/1Ga9SYGn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19546942\/1446170879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":18,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EUD0e8qJRj","expanded_url":"http:\/\/r29.co\/1kE8ds1","display_url":"r29.co\/1kE8ds1","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663711627338981376,"id_str":"663711627338981376","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","url":"https:\/\/t.co\/M723JnyH5a","display_url":"pic.twitter.com\/M723JnyH5a","expanded_url":"http:\/\/twitter.com\/Refinery29\/status\/663725300878999553\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":1024,"h":537,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711627338981376,"id_str":"663711627338981376","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","url":"https:\/\/t.co\/M723JnyH5a","display_url":"pic.twitter.com\/M723JnyH5a","expanded_url":"http:\/\/twitter.com\/Refinery29\/status\/663725300878999553\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":1024,"h":537,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EUD0e8qJRj","expanded_url":"http:\/\/r29.co\/1kE8ds1","display_url":"r29.co\/1kE8ds1","indices":[97,120]}],"user_mentions":[{"screen_name":"Refinery29","name":"refinery29","id":19546942,"id_str":"19546942","indices":[3,14]}],"symbols":[],"media":[{"id":663711627338981376,"id_str":"663711627338981376","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","url":"https:\/\/t.co\/M723JnyH5a","display_url":"pic.twitter.com\/M723JnyH5a","expanded_url":"http:\/\/twitter.com\/Refinery29\/status\/663725300878999553\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":1024,"h":537,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":663725300878999553,"source_status_id_str":"663725300878999553","source_user_id":19546942,"source_user_id_str":"19546942"}]},"extended_entities":{"media":[{"id":663711627338981376,"id_str":"663711627338981376","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6NWTWIAA0AEs.jpg","url":"https:\/\/t.co\/M723JnyH5a","display_url":"pic.twitter.com\/M723JnyH5a","expanded_url":"http:\/\/twitter.com\/Refinery29\/status\/663725300878999553\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":1024,"h":537,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":663725300878999553,"source_status_id_str":"663725300878999553","source_user_id":19546942,"source_user_id_str":"19546942"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546686465,"id_str":"663728177546686465","text":"RT @GBalwi: \u0648\u0644\u0623\u0646 \u062d\u064a\u0627\u062a\u0646\u0627 \u0645\u062c\u0647\u0648\u0644\u0629 \u0627\u0644\u0646\u0647\u0627\u064a\u0647 \n\u062e\u0628\u064a\u0621 \u0641\u064a \u0642\u0644\u0628\u0643 \u0627\u0644\u063a\u0641\u0631\u0627\u0646 \u062f\u0627\u0626\u0645\u064b\u0627\n\u0648\u0642\u0644 : \u064a\u0627\u0631\u0628 \u0639\u0641\u0648\u062a \u0644\u0623\u062c\u0644\u0643 .... \u0648 \u0635\u0641\u062d\u062a \u0637\u0644\u0628\u0627 \u0644\u0640 \u0645\u063a\u0641\u0631\u062a\u0643 ...\ud83c\udf1b https:\/\/t.co\/xb0\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3023395250,"id_str":"3023395250","name":"\u0634\u0645\u0639\u0629 \u0627\u0644\u0647\u064a\u0644\u0627...511","screen_name":"shm3atalhyla","location":null,"url":null,"description":"\u062c\u0639\u0644\u0646\u064a \u0645\u0627\u0627\u0641\u0642\u062f \u0645\u0646 \u0627\u0644\u0647\u064a\u0644\u0627 \u0639\u062a\u064a\u0628\u064a \u0641\u062e\u0631 \u062c\u062f\u0627\u0646\u064a \u0639\u0633\u0627\u0647\u0645 \u0641\u064a \u0632\u064a\u0627\u062f\u0647........ _ #\u0642\u0631\u0648\u0628_\u0627\u0644\u0627\u0645\u064a\u0631\u0627\u062a.....\u062d\u0633\u0627\u0628 \u0627\u0641\u062a\u062e\u0631 \u0628\u0645\u062a\u0627\u0628\u0639\u062a\u0647 \u2066@pq3ksa\u2069","protected":false,"verified":false,"followers_count":25487,"friends_count":858,"listed_count":6,"favourites_count":81,"statuses_count":25709,"created_at":"Tue Feb 17 06:24:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658247923541614592\/keyyVbmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658247923541614592\/keyyVbmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023395250\/1447010191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:16 +0000 2015","id":663725797816049664,"id_str":"663725797816049664","text":"\u0648\u0644\u0623\u0646 \u062d\u064a\u0627\u062a\u0646\u0627 \u0645\u062c\u0647\u0648\u0644\u0629 \u0627\u0644\u0646\u0647\u0627\u064a\u0647 \n\u062e\u0628\u064a\u0621 \u0641\u064a \u0642\u0644\u0628\u0643 \u0627\u0644\u063a\u0641\u0631\u0627\u0646 \u062f\u0627\u0626\u0645\u064b\u0627\n\u0648\u0642\u0644 : \u064a\u0627\u0631\u0628 \u0639\u0641\u0648\u062a \u0644\u0623\u062c\u0644\u0643 .... \u0648 \u0635\u0641\u062d\u062a \u0637\u0644\u0628\u0627 \u0644\u0640 \u0645\u063a\u0641\u0631\u062a\u0643 ...\ud83c\udf1b https:\/\/t.co\/xb0KiSdF89","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550913850,"id_str":"550913850","name":"\u0645\u0637\u062d\u0650\u0633 \u0627\u0644\u0643\u064f\u0648\u0631\u064a\u0651 \u2743\u02fa","screen_name":"GBalwi","location":"fitness & health","url":null,"description":"\u062f\u064e\u0639\u0651\u0645 \u0647\u0627\u0644\u062d\u0633\u064e\u0627\u0628 \u0627\u0646\u0633\u0627\u064e\u0646\u0647 \u0630\u0648\u0642\u0651 . \u064a\u0639\u0651\u062c\u0632\u0650 \u0627\u0644\u0644\u0633\u0651\u0627\u0646 \u0639\u0646 \u0648\u0635\u0641 \u062c\u0645\u0622\u0644 \u0627\u062e\u0644\u0627\u0642\u0647\u0651\u0627 \u0648\u0627\u0633\u0644\u0650\u0648\u064f\u0628\u0647\u0627\u064e @RaSsssSha \u0627\u0644\u0643\u0644 \u064a\u0636\u064a\u0641\u0647\u0622 \u0648\u064a\u0637\u0644\u0628\u0646\u064a \u0639\u064a\u0648\u0646\u064a ..","protected":false,"verified":false,"followers_count":5302,"friends_count":5410,"listed_count":1,"favourites_count":593,"statuses_count":4121,"created_at":"Wed Apr 11 09:06:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663379754289090560\/DmLi6lIr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663379754289090560\/DmLi6lIr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550913850\/1446997033","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663525528129953792,"id_str":"663525528129953792","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","url":"https:\/\/t.co\/xb0KiSdF89","display_url":"pic.twitter.com\/xb0KiSdF89","expanded_url":"http:\/\/twitter.com\/njlaa30303\/status\/663525537625849856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":713,"h":477,"resize":"fit"}},"source_status_id":663525537625849856,"source_status_id_str":"663525537625849856","source_user_id":3162894048,"source_user_id_str":"3162894048"}]},"extended_entities":{"media":[{"id":663525528129953792,"id_str":"663525528129953792","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","url":"https:\/\/t.co\/xb0KiSdF89","display_url":"pic.twitter.com\/xb0KiSdF89","expanded_url":"http:\/\/twitter.com\/njlaa30303\/status\/663525537625849856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":713,"h":477,"resize":"fit"}},"source_status_id":663525537625849856,"source_status_id_str":"663525537625849856","source_user_id":3162894048,"source_user_id_str":"3162894048"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GBalwi","name":"\u0645\u0637\u062d\u0650\u0633 \u0627\u0644\u0643\u064f\u0648\u0631\u064a\u0651 \u2743\u02fa","id":550913850,"id_str":"550913850","indices":[3,10]}],"symbols":[],"media":[{"id":663525528129953792,"id_str":"663525528129953792","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","url":"https:\/\/t.co\/xb0KiSdF89","display_url":"pic.twitter.com\/xb0KiSdF89","expanded_url":"http:\/\/twitter.com\/njlaa30303\/status\/663525537625849856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":713,"h":477,"resize":"fit"}},"source_status_id":663525537625849856,"source_status_id_str":"663525537625849856","source_user_id":3162894048,"source_user_id_str":"3162894048"}]},"extended_entities":{"media":[{"id":663525528129953792,"id_str":"663525528129953792","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVQ88uW4AAFQBw.jpg","url":"https:\/\/t.co\/xb0KiSdF89","display_url":"pic.twitter.com\/xb0KiSdF89","expanded_url":"http:\/\/twitter.com\/njlaa30303\/status\/663525537625849856\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":401,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":713,"h":477,"resize":"fit"}},"source_status_id":663525537625849856,"source_status_id_str":"663525537625849856","source_user_id":3162894048,"source_user_id_str":"3162894048"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584455680,"id_str":"663728177584455680","text":"RT @yusicim: #CilekKokusu #sonunakadar demek i\u00e7in haz\u0131rm\u0131y\u0131zz ! @startv @yusufcimf https:\/\/t.co\/brp7j0Bmy6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4052484317,"id_str":"4052484317","name":"Cilek Kokusu","screen_name":"Mylifeyusdem","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":45,"listed_count":0,"favourites_count":58,"statuses_count":42,"created_at":"Tue Oct 27 09:40:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658942122855387136\/ptzrrx_5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658942122855387136\/ptzrrx_5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 16:08:49 +0000 2015","id":663025322103820288,"id_str":"663025322103820288","text":"#CilekKokusu #sonunakadar demek i\u00e7in haz\u0131rm\u0131y\u0131zz ! @startv @yusufcimf https:\/\/t.co\/brp7j0Bmy6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":282009988,"id_str":"282009988","name":"YUSUF \u00c7\u0130M","screen_name":"yusicim","location":null,"url":null,"description":"http:\/\/instagram.com\/yusicim","protected":false,"verified":false,"followers_count":107250,"friends_count":106,"listed_count":36,"favourites_count":977,"statuses_count":1615,"created_at":"Thu Apr 14 11:46:14 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618785322432864257\/jvyoxY-4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618785322432864257\/jvyoxY-4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/282009988\/1377176400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":671,"favorite_count":2428,"entities":{"hashtags":[{"text":"CilekKokusu","indices":[0,12]},{"text":"sonunakadar","indices":[13,25]}],"urls":[],"user_mentions":[{"screen_name":"startv","name":"STAR TV","id":74397391,"id_str":"74397391","indices":[51,58]},{"screen_name":"yusufcimf","name":"Yusuf \u00c7im Resmi Fan","id":2298298302,"id_str":"2298298302","indices":[59,69]}],"symbols":[],"media":[{"id":663025310259105792,"id_str":"663025310259105792","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","url":"https:\/\/t.co\/brp7j0Bmy6","display_url":"pic.twitter.com\/brp7j0Bmy6","expanded_url":"http:\/\/twitter.com\/yusicim\/status\/663025322103820288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"},"large":{"w":696,"h":749,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663025310259105792,"id_str":"663025310259105792","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","url":"https:\/\/t.co\/brp7j0Bmy6","display_url":"pic.twitter.com\/brp7j0Bmy6","expanded_url":"http:\/\/twitter.com\/yusicim\/status\/663025322103820288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"},"large":{"w":696,"h":749,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CilekKokusu","indices":[13,25]},{"text":"sonunakadar","indices":[26,38]}],"urls":[],"user_mentions":[{"screen_name":"yusicim","name":"YUSUF \u00c7\u0130M","id":282009988,"id_str":"282009988","indices":[3,11]},{"screen_name":"startv","name":"STAR TV","id":74397391,"id_str":"74397391","indices":[64,71]},{"screen_name":"yusufcimf","name":"Yusuf \u00c7im Resmi Fan","id":2298298302,"id_str":"2298298302","indices":[72,82]}],"symbols":[],"media":[{"id":663025310259105792,"id_str":"663025310259105792","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","url":"https:\/\/t.co\/brp7j0Bmy6","display_url":"pic.twitter.com\/brp7j0Bmy6","expanded_url":"http:\/\/twitter.com\/yusicim\/status\/663025322103820288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"},"large":{"w":696,"h":749,"resize":"fit"}},"source_status_id":663025322103820288,"source_status_id_str":"663025322103820288","source_user_id":282009988,"source_user_id_str":"282009988"}]},"extended_entities":{"media":[{"id":663025310259105792,"id_str":"663025310259105792","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOKAb8WUAA0TF8.jpg","url":"https:\/\/t.co\/brp7j0Bmy6","display_url":"pic.twitter.com\/brp7j0Bmy6","expanded_url":"http:\/\/twitter.com\/yusicim\/status\/663025322103820288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":645,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":365,"resize":"fit"},"large":{"w":696,"h":749,"resize":"fit"}},"source_status_id":663025322103820288,"source_status_id_str":"663025322103820288","source_user_id":282009988,"source_user_id_str":"282009988"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177563480064,"id_str":"663728177563480064","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254976725,"id_str":"3254976725","name":"Lewsyn Deamer","screen_name":"qahunokunoxe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":117,"friends_count":643,"listed_count":7,"favourites_count":16136,"statuses_count":16782,"created_at":"Fri May 15 01:07:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645582645200572416\/0eoYh8R6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645582645200572416\/0eoYh8R6_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":912,"favorite_count":558,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103661"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177571889152,"id_str":"663728177571889152","text":"RT @Ger_xD3: Que lindo como dorm\u00ed!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2711387985,"id_str":"2711387985","name":"payasito #35","screen_name":"ArtazaElias","location":"daireaux, provincia de bs as.","url":null,"description":"Ni marihuana ni coca\u00edna mi \u00fanica droga es ser gallina.. carp\u2665. entre tus ojos y el amor. *callejeros*","protected":false,"verified":false,"followers_count":715,"friends_count":663,"listed_count":0,"favourites_count":2080,"statuses_count":12076,"created_at":"Mon Jul 14 22:35:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628979175232303104\/YiMmE4Yh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628979175232303104\/YiMmE4Yh.jpg","profile_background_tile":true,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661106590150455296\/jnhUrvFt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661106590150455296\/jnhUrvFt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2711387985\/1446216163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:29 +0000 2015","id":663724343734718464,"id_str":"663724343734718464","text":"Que lindo como dorm\u00ed!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479042620,"id_str":"2479042620","name":"GeRmAn\u270c","screen_name":"Ger_xD3","location":"Daireaux","url":null,"description":"-Los Piolas Viven Su Vida, Los Giles Viven La Mia ~ Bancario\u2665","protected":false,"verified":false,"followers_count":367,"friends_count":166,"listed_count":2,"favourites_count":1272,"statuses_count":11207,"created_at":"Tue May 06 01:07:30 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640660561622134784\/qWbldRb4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640660561622134784\/qWbldRb4.jpg","profile_background_tile":true,"profile_link_color":"33BB55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"1D1D1D","profile_text_color":"892DD8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663422521782501376\/pQcUJHO9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663422521782501376\/pQcUJHO9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479042620\/1445137587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ger_xD3","name":"GeRmAn\u270c","id":2479042620,"id_str":"2479042620","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080103663"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559289856,"id_str":"663728177559289856","text":"RT @ainess_zk: \u0645\u0633\u0643\u064a\u0646\u0629 \u0633\u0648\u0647\u0627 \u0627\u0644\u0628\u0627\u0631\u062d \u0643\u064a \u0634\u0627\u0641\u062a \u0645\u064a\u0633\u0627\u062c \u0645\u0646 \u0628\u0646\u062a \u0627\u0644\u0645\u063a\u0631\u0628 \u062a\u062e\u0644\u0639\u062a \u0648\u062a\u0642\u0631\u0627 \u0641\u064a\u0647\u0627 \u0628\u0635\u0648\u062a \u0648\u0627\u0637\u064a\n\u064a\u0627 \u0644\u062d\u0628\u064a\u064a\u0629 \u062f\u0645\u0631\u0648\u0643 \u0648\u0646\u062d\u0627\u0648\u0644\u0643 \u0627\u0644\u0628\u0633\u0645\u0629\n#StaracArabia \n#\u0633\u062a\u0627\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014163019,"id_str":"3014163019","name":"FATI FLOWER","screen_name":"kalou_fati8998","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":27,"listed_count":0,"favourites_count":957,"statuses_count":371,"created_at":"Mon Feb 09 08:36:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661984745635635204\/JGnH06LB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661984745635635204\/JGnH06LB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014163019\/1446664379","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:49 +0000 2015","id":663695234518425601,"id_str":"663695234518425601","text":"\u0645\u0633\u0643\u064a\u0646\u0629 \u0633\u0648\u0647\u0627 \u0627\u0644\u0628\u0627\u0631\u062d \u0643\u064a \u0634\u0627\u0641\u062a \u0645\u064a\u0633\u0627\u062c \u0645\u0646 \u0628\u0646\u062a \u0627\u0644\u0645\u063a\u0631\u0628 \u062a\u062e\u0644\u0639\u062a \u0648\u062a\u0642\u0631\u0627 \u0641\u064a\u0647\u0627 \u0628\u0635\u0648\u062a \u0648\u0627\u0637\u064a\n\u064a\u0627 \u0644\u062d\u0628\u064a\u064a\u0629 \u062f\u0645\u0631\u0648\u0643 \u0648\u0646\u062d\u0627\u0648\u0644\u0643 \u0627\u0644\u0628\u0633\u0645\u0629\n#StaracArabia \n#\u0633\u062a\u0627\u0631\u0627\u0643_\u0637\u0644\u0639\u062a_\u0631\u064a\u062d\u062a\u0643\u0645","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2636674404,"id_str":"2636674404","name":"Ainess_Zk","screen_name":"ainess_zk","location":" ","url":null,"description":"TAYLOR SWIFT= the QUEEN and nobody else \u265a j'viens D'ALGERIE tu comprends ma cherie","protected":false,"verified":false,"followers_count":1681,"friends_count":491,"listed_count":3,"favourites_count":18881,"statuses_count":18414,"created_at":"Sun Jul 13 13:59:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596722400655319042\/uFBdiBbU.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596722400655319042\/uFBdiBbU.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663367157414289408\/UrvA9yl0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663367157414289408\/UrvA9yl0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2636674404\/1446161047","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":24,"entities":{"hashtags":[{"text":"StaracArabia","indices":[105,118]},{"text":"\u0633\u062a\u0627\u0631\u0627\u0643_\u0637\u0644\u0639\u062a_\u0631\u064a\u062d\u062a\u0643\u0645","indices":[120,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StaracArabia","indices":[120,133]},{"text":"\u0633\u062a\u0627\u0631\u0627\u0643_\u0637\u0644\u0639\u062a_\u0631\u064a\u062d\u062a\u0643\u0645","indices":[135,140]}],"urls":[],"user_mentions":[{"screen_name":"ainess_zk","name":"Ainess_Zk","id":2636674404,"id_str":"2636674404","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584463872,"id_str":"663728177584463872","text":"RT @bclarryafxo: @himybigos \ud83d\ude01\ud83d\udc9e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2869640651,"id_str":"2869640651","name":"Nialler w pampersie","screen_name":"himybigos","location":"larry shipper ","url":null,"description":"Hahahahahahaha ~ Niall Horan | 130215","protected":false,"verified":false,"followers_count":2168,"friends_count":2029,"listed_count":5,"favourites_count":11302,"statuses_count":39040,"created_at":"Sun Nov 09 21:43:37 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574965303722954752\/NF6Kj-Zj.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574965303722954752\/NF6Kj-Zj.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642593421488623616\/2klaPodr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642593421488623616\/2klaPodr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2869640651\/1436560862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:40 +0000 2015","id":663725144700010496,"id_str":"663725144700010496","text":"@himybigos \ud83d\ude01\ud83d\udc9e","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663414156264087552,"in_reply_to_status_id_str":"663414156264087552","in_reply_to_user_id":2869640651,"in_reply_to_user_id_str":"2869640651","in_reply_to_screen_name":"himybigos","user":{"id":1546811054,"id_str":"1546811054","name":"DRAma timeG ME DOWN","screen_name":"bclarryafxo","location":"Poland, not Narnia anyway","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"\u2741 need only 7 more to have 7\/7 \u2741 1D aka life \u2741 Zayn aka angel \u2741 Larry aka obsession (btw Ht) \u2741 Cara aka queen \u2741 Ed aka angel, I saw him 13.02`15 \u2741 see who unf \u2741","protected":false,"verified":false,"followers_count":5968,"friends_count":6449,"listed_count":11,"favourites_count":2650,"statuses_count":36595,"created_at":"Tue Jun 25 22:38:52 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561549580731301889\/GN51vdiP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561549580731301889\/GN51vdiP.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635131753108140033\/gvvmYJ7k_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635131753108140033\/gvvmYJ7k_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1546811054\/1440262211","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"himybigos","name":"Nialler w pampersie","id":2869640651,"id_str":"2869640651","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bclarryafxo","name":"DRAma timeG ME DOWN","id":1546811054,"id_str":"1546811054","indices":[3,15]},{"screen_name":"himybigos","name":"Nialler w pampersie","id":2869640651,"id_str":"2869640651","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546715136,"id_str":"663728177546715136","text":"@FreddyAmazin @OMaraBailey","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663517324108926976,"in_reply_to_status_id_str":"663517324108926976","in_reply_to_user_id":61003804,"in_reply_to_user_id_str":"61003804","in_reply_to_screen_name":"FreddyAmazin","user":{"id":199794521,"id_str":"199794521","name":"niamh henderson.","screen_name":"_niamhhenderson","location":"Liverpool, England","url":null,"description":"University of Liverpool","protected":false,"verified":false,"followers_count":519,"friends_count":241,"listed_count":0,"favourites_count":8932,"statuses_count":21632,"created_at":"Thu Oct 07 19:00:44 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662408547033088001\/3LOWSk1w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662408547033088001\/3LOWSk1w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/199794521\/1446765230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FreddyAmazin","name":"FREDDY","id":61003804,"id_str":"61003804","indices":[0,13]},{"screen_name":"OMaraBailey","name":"bailey","id":2356641472,"id_str":"2356641472","indices":[14,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580216321,"id_str":"663728177580216321","text":"Yale students screaming in the face of a senior administrator because he tried to defend free expression at Halloween via \/r\/videos \u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2907090723,"id_str":"2907090723","name":"Reddit Subreddits","screen_name":"subredditsbot","location":"Reddit","url":null,"description":"This account is trying to keep track of everything that happens in the popular subreddits on Reddit. This is a bit and simply posts what others post on Reddit.","protected":false,"verified":false,"followers_count":832,"friends_count":0,"listed_count":201,"favourites_count":0,"statuses_count":825883,"created_at":"Sat Dec 06 01:25:29 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541040979772313600\/6-lmLxf8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541040979772313600\/6-lmLxf8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907090723\/1417829403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559248896,"id_str":"663728177559248896","text":"@haileybaldwin me too girl me too","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727528742359040,"in_reply_to_status_id_str":"663727528742359040","in_reply_to_user_id":64090343,"in_reply_to_user_id_str":"64090343","in_reply_to_screen_name":"haileybaldwin","user":{"id":235284057,"id_str":"235284057","name":"purpose","screen_name":"Kidrauhlsheartx","location":"jdb, crs, jasmine&more follow","url":"https:\/\/twitter.com\/kidrauhlsheartx\/status\/652577511491153920","description":"i love him, because he loved me first. http:\/\/smarturl.it\/JBPurpose","protected":false,"verified":false,"followers_count":2478,"friends_count":2092,"listed_count":12,"favourites_count":4571,"statuses_count":29964,"created_at":"Fri Jan 07 20:19:51 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFCFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463998663174262784\/IHGy9KiV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463998663174262784\/IHGy9KiV.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"790C88","profile_text_color":"BD2828","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663690908521639936\/_TYRcDPt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663690908521639936\/_TYRcDPt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/235284057\/1447071201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haileybaldwin","name":"Hailey Baldwin","id":64090343,"id_str":"64090343","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580261376,"id_str":"663728177580261376","text":"RT @ColinLachance: what could you do with bulk access to case law? https:\/\/t.co\/kwNWNj1LYk @LegalRebels #opendata #openlaw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66743531,"id_str":"66743531","name":"Juriconnexion","screen_name":"juriconnexion","location":"Paris, France","url":"http:\/\/www.juriconnexion.fr","description":"Association d'utilisateurs de ressources d''information juridique \u00e9lectronique.","protected":false,"verified":false,"followers_count":2545,"friends_count":113,"listed_count":212,"favourites_count":524,"statuses_count":11508,"created_at":"Tue Aug 18 17:38:17 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000559162888\/a5d1e780956785e6a19b26732d4940e2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000559162888\/a5d1e780956785e6a19b26732d4940e2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:11:07 +0000 2015","id":663690276666392576,"id_str":"663690276666392576","text":"what could you do with bulk access to case law? https:\/\/t.co\/kwNWNj1LYk @LegalRebels #opendata #openlaw","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115774395,"id_str":"115774395","name":"Colin Lachance","screen_name":"ColinLachance","location":"Ottawa","url":"http:\/\/pgya.ca\/","description":"PGYA Consulting. #legalX advisor. @miralawInc advisor. lawyer. former CEO @CanLII. Focused on legal info\/tech and legal market dynamics.","protected":false,"verified":false,"followers_count":2096,"friends_count":1302,"listed_count":125,"favourites_count":275,"statuses_count":6756,"created_at":"Fri Feb 19 22:25:04 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542121020295884801\/5JIBnp1n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542121020295884801\/5JIBnp1n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115774395\/1447020358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[{"text":"opendata","indices":[85,94]},{"text":"openlaw","indices":[95,103]}],"urls":[{"url":"https:\/\/t.co\/kwNWNj1LYk","expanded_url":"http:\/\/www.slaw.ca\/2015\/11\/09\/what-does-it-really-mean-to-free-the-law-part-2\/","display_url":"slaw.ca\/2015\/11\/09\/wha\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"LegalRebels","name":"LegalRebels","id":18996281,"id_str":"18996281","indices":[72,84]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"opendata","indices":[104,113]},{"text":"openlaw","indices":[114,122]}],"urls":[{"url":"https:\/\/t.co\/kwNWNj1LYk","expanded_url":"http:\/\/www.slaw.ca\/2015\/11\/09\/what-does-it-really-mean-to-free-the-law-part-2\/","display_url":"slaw.ca\/2015\/11\/09\/wha\u2026","indices":[67,90]}],"user_mentions":[{"screen_name":"ColinLachance","name":"Colin Lachance","id":115774395,"id_str":"115774395","indices":[3,17]},{"screen_name":"LegalRebels","name":"LegalRebels","id":18996281,"id_str":"18996281","indices":[91,103]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559175168,"id_str":"663728177559175168","text":"RT @LeliaSigler: Best Diet- Health and Diet Tips The Benefits of https:\/\/t.co\/5GbtuxUvGQ","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003ervvt4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3309573829,"id_str":"3309573829","name":"Weaver Calvin ","screen_name":"WeaverCalvin1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":893,"listed_count":0,"favourites_count":0,"statuses_count":1400,"created_at":"Sat Aug 08 09:45:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630003280748220416\/y6-i8eAg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630003280748220416\/y6-i8eAg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:08 +0000 2015","id":663728028623630336,"id_str":"663728028623630336","text":"Best Diet- Health and Diet Tips The Benefits of https:\/\/t.co\/5GbtuxUvGQ","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003ervvt1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3265783129,"id_str":"3265783129","name":"Sigler Lelia","screen_name":"LeliaSigler","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":112,"friends_count":1008,"listed_count":1,"favourites_count":0,"statuses_count":1913,"created_at":"Thu Jul 02 05:15:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617675491445600256\/y5nnUzGK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617675491445600256\/y5nnUzGK_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5GbtuxUvGQ","expanded_url":"http:\/\/bit.ly\/1QdQZPz","display_url":"bit.ly\/1QdQZPz","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5GbtuxUvGQ","expanded_url":"http:\/\/bit.ly\/1QdQZPz","display_url":"bit.ly\/1QdQZPz","indices":[65,88]}],"user_mentions":[{"screen_name":"LeliaSigler","name":"Sigler Lelia","id":3265783129,"id_str":"3265783129","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584451584,"id_str":"663728177584451584","text":"RT @BestofVirgo: #Virgo's don't appreciate canceled plans.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":291263972,"id_str":"291263972","name":"Dread_Me","screen_name":"No_Lubrication","location":null,"url":null,"description":"Your not going to go anywhere standing still boi #learnfromthedreads","protected":false,"verified":false,"followers_count":224,"friends_count":218,"listed_count":0,"favourites_count":151,"statuses_count":2692,"created_at":"Sun May 01 18:25:32 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593895921412354049\/VVryptWL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593895921412354049\/VVryptWL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/291263972\/1399153629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:31:18 +0000 2015","id":663574560206360576,"id_str":"663574560206360576","text":"#Virgo's don't appreciate canceled plans.","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250082574,"id_str":"250082574","name":"Best of Virgo","screen_name":"BestofVirgo","location":null,"url":"http:\/\/xstrology.org\/Virgo","description":"Powered by @Xstrology","protected":false,"verified":false,"followers_count":210432,"friends_count":6,"listed_count":748,"favourites_count":0,"statuses_count":15828,"created_at":"Thu Feb 10 11:34:36 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/419338495119720448\/KnZjbo1O_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/419338495119720448\/KnZjbo1O_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":77,"favorite_count":82,"entities":{"hashtags":[{"text":"Virgo","indices":[0,6]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Virgo","indices":[17,23]}],"urls":[],"user_mentions":[{"screen_name":"BestofVirgo","name":"Best of Virgo","id":250082574,"id_str":"250082574","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580257280,"id_str":"663728177580257280","text":"@zxynvoice que cosas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713664894152704,"in_reply_to_status_id_str":"663713664894152704","in_reply_to_user_id":2324054819,"in_reply_to_user_id_str":"2324054819","in_reply_to_screen_name":"zxynvoice","user":{"id":1288213453,"id_str":"1288213453","name":"o'brien","screen_name":"rockinidols","location":null,"url":"http:\/\/uwerejustabeautifullmistake.tumblr.com","description":"theres no words to describe how much i love harry styles because i swear anyone has ever felt like this before","protected":false,"verified":false,"followers_count":585,"friends_count":167,"listed_count":23,"favourites_count":6267,"statuses_count":36824,"created_at":"Fri Mar 22 09:12:46 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663290334970052608\/PC3uihyM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663290334970052608\/PC3uihyM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1288213453\/1446975813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zxynvoice","name":"sil ","id":2324054819,"id_str":"2324054819","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580277762,"id_str":"663728177580277762","text":"\u0428\u0435\u0444 \u0434\u0430\u043b \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u0434\u0443\u043c\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0439 \u0444\u0438\u0440\u043c\u044b, \u0435\u0441\u0442\u044c \u0438\u0434\u0435\u0438?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":442609433,"id_str":"442609433","name":"\u0420\u044b\u0436\u0443\u043a \u0424\u0435\u043b\u0438\u043a\u0441","screen_name":"FeliksRyijuk","location":"\u0411\u043e\u043b\u043e\u0442\u043d\u043e\u0435","url":"https:\/\/twitter.com\/feliksryijuk","description":"\u0413\u043e\u0440\u0430\u0437\u0434\u043e \u043b\u0435\u0433\u0447\u0435 \u0443\u0437\u043d\u0430\u0442\u044c \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0432\u043e\u043e\u0431\u0449\u0435, \u0447\u0435\u043c \u043a\u0430\u043a\u043e\u0433\u043e-\u043b\u0438\u0431\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u0432 \u0447\u0430\u0441\u0442\u043d\u043e\u0441\u0442\u0438","protected":false,"verified":false,"followers_count":6151,"friends_count":992,"listed_count":499,"favourites_count":109,"statuses_count":21303,"created_at":"Wed Dec 21 08:39:42 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1719818404\/19__8__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1719818404\/19__8__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/442609433\/1436806474","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559134208,"id_str":"663728177559134208","text":"\u30c1\u30e9\u88cf\u3067\u3069\u3046\u305e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587258469,"id_str":"587258469","name":"\u306a\u308b\u305b@\u30d0\u30c3\u30c1\u30b3\u30fc\u30a4\uff01\uff01\uff01","screen_name":"narusehiko","location":null,"url":null,"description":"\u307e\u307e\u3086\u69d8\u306b\u7e1b\u3089\u308c\u305f\u3044\u7cfb\u30c7\u30ec\u30b9\u30c6\u30d7\u30ec\u30a4\u30e4\u30fc\u3057\u3066\u305f\u308a\u767d\u732b\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u518d\u71c3\u3057\u3066\u308b\u3072\u3068\u3067\u3059( \u02c7\u03c9\u02c7 )\n\n\u97f3\u30b2\u30fc\u30de\u30fc\u517c\u5be9\u795e\u8005\u696d\u306b\u52e4\u3057\u3093\u3067\u304a\u308a\u307e\u3059\u3002\n\u6700\u8fd1\u306e\u30e1\u30a4\u30f3\u306f\u30a6\u30cb\u30ba\u30e0(MAX RATING13.46)\n\u8da3\u5473\u304c\u5408\u3044\u305d\u3046\u3060\u306a\u3068\u601d\u3063\u305f\u3089\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u307e\u305b\uff01\n\n\u3068\u3046\u3089\u3076\u57a2 @naruse0928","protected":false,"verified":false,"followers_count":918,"friends_count":1026,"listed_count":39,"favourites_count":3147,"statuses_count":52919,"created_at":"Tue May 22 05:50:36 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662625683017850881\/_r-GFr1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662625683017850881\/_r-GFr1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587258469\/1446908508","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177567633408,"id_str":"663728177567633408","text":"Desde ya disfrutas de #NuevaEra con @EdwynBarrios por el Circuito Nacional @MelodiaStereo 93.5 fm Matriz Ccs-Vzla y https:\/\/t.co\/55cxREQt4D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":405817443,"id_str":"405817443","name":"Edwyn Barrios","screen_name":"EdwynBarrios","location":"Venezuela","url":null,"description":"Locutor-Presentador de tv @Melodiastereo 93.5 fm @Canal_i, Tarotista-Vidente, conductor del programa Nueva Era, para informaci\u00f3n y consultas 0412-593.55.87 .","protected":false,"verified":false,"followers_count":7570,"friends_count":629,"listed_count":68,"favourites_count":16,"statuses_count":8431,"created_at":"Sat Nov 05 20:59:50 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432980243\/TWITTT2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432980243\/TWITTT2.jpg","profile_background_tile":true,"profile_link_color":"00B30C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660654393801490432\/EcW5YtGl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660654393801490432\/EcW5YtGl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/405817443\/1402673124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NuevaEra","indices":[22,31]}],"urls":[{"url":"https:\/\/t.co\/55cxREQt4D","expanded_url":"http:\/\/www.melodiastereo.com.ve","display_url":"melodiastereo.com.ve","indices":[116,139]}],"user_mentions":[{"screen_name":"EdwynBarrios","name":"Edwyn Barrios","id":405817443,"id_str":"405817443","indices":[36,49]},{"screen_name":"MelodiaStereo","name":"Melod\u00eda Stereo 93.5 ","id":552169096,"id_str":"552169096","indices":[75,89]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080103662"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550917632,"id_str":"663728177550917632","text":"RT @TheSosChef: #chef .. Want to be the first to know ? #freshproduce #menuoftheday info @koppertcressUK #menu https:\/\/t.co\/Gfd2mfwyPR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2889260175,"id_str":"2889260175","name":"JUST LOVE FRESH","screen_name":"TweeterFood","location":"WORLDWIDE","url":null,"description":"#Chefs \/ #Restaurants \/ #Foodpictures #Justlovefresh","protected":false,"verified":false,"followers_count":15,"friends_count":24,"listed_count":3,"favourites_count":34,"statuses_count":118,"created_at":"Sun Nov 23 14:53:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552223594269671425\/EyJai1KA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552223594269671425\/EyJai1KA_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2889260175\/1420494727","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:35 +0000 2015","id":663727893323870208,"id_str":"663727893323870208","text":"#chef .. Want to be the first to know ? #freshproduce #menuoftheday info @koppertcressUK #menu https:\/\/t.co\/Gfd2mfwyPR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166945214,"id_str":"166945214","name":"PaulDaCostaGreaves","screen_name":"TheSosChef","location":"Uk, London, Worldwide ","url":null,"description":"Country Manager UK\/ROI & Scotland for @koppertcressuk. Consultant to Brand Innovation, Home Ec, Chef Demos, Comparing. Give me a stage and I'll give you a show!","protected":false,"verified":false,"followers_count":2292,"friends_count":383,"listed_count":87,"favourites_count":1230,"statuses_count":9717,"created_at":"Thu Jul 15 11:11:38 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453227737658822656\/E8AG1y9y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453227737658822656\/E8AG1y9y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166945214\/1396894148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"chef","indices":[0,5]},{"text":"freshproduce","indices":[42,55]},{"text":"menuoftheday","indices":[56,69]},{"text":"menu","indices":[91,96]}],"urls":[],"user_mentions":[{"screen_name":"koppertcressUK","name":"Koppert Cress UK\/ROI","id":2453276618,"id_str":"2453276618","indices":[75,90]}],"symbols":[],"media":[{"id":663727885988032513,"id_str":"663727885988032513","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","url":"https:\/\/t.co\/Gfd2mfwyPR","display_url":"pic.twitter.com\/Gfd2mfwyPR","expanded_url":"http:\/\/twitter.com\/TheSosChef\/status\/663727893323870208\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727885988032513,"id_str":"663727885988032513","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","url":"https:\/\/t.co\/Gfd2mfwyPR","display_url":"pic.twitter.com\/Gfd2mfwyPR","expanded_url":"http:\/\/twitter.com\/TheSosChef\/status\/663727893323870208\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"chef","indices":[16,21]},{"text":"freshproduce","indices":[58,71]},{"text":"menuoftheday","indices":[72,85]},{"text":"menu","indices":[107,112]}],"urls":[],"user_mentions":[{"screen_name":"TheSosChef","name":"PaulDaCostaGreaves","id":166945214,"id_str":"166945214","indices":[3,14]},{"screen_name":"koppertcressUK","name":"Koppert Cress UK\/ROI","id":2453276618,"id_str":"2453276618","indices":[91,106]}],"symbols":[],"media":[{"id":663727885988032513,"id_str":"663727885988032513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","url":"https:\/\/t.co\/Gfd2mfwyPR","display_url":"pic.twitter.com\/Gfd2mfwyPR","expanded_url":"http:\/\/twitter.com\/TheSosChef\/status\/663727893323870208\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663727893323870208,"source_status_id_str":"663727893323870208","source_user_id":166945214,"source_user_id_str":"166945214"}]},"extended_entities":{"media":[{"id":663727885988032513,"id_str":"663727885988032513","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI_ufWcAEZrJd.jpg","url":"https:\/\/t.co\/Gfd2mfwyPR","display_url":"pic.twitter.com\/Gfd2mfwyPR","expanded_url":"http:\/\/twitter.com\/TheSosChef\/status\/663727893323870208\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663727893323870208,"source_status_id_str":"663727893323870208","source_user_id":166945214,"source_user_id_str":"166945214"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550880768,"id_str":"663728177550880768","text":"RT DrAyesha4: Guys...\nPTI TS is launching the HT\n#JusticeForFayazChohan\nImranKhanPTI should listen to his concerns https:\/\/t.co\/XusY4gG0V9","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165081277,"id_str":"3165081277","name":"Shahida Suleman","screen_name":"sulemanshahida","location":"Karachi, Pakistan","url":null,"description":"Like music, poetry and Pakistan:) KFC my ultimate love","protected":false,"verified":false,"followers_count":4202,"friends_count":1239,"listed_count":23,"favourites_count":13,"statuses_count":142946,"created_at":"Mon Apr 20 08:19:19 +0000 2015","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648600060322668544\/IYm2085H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648600060322668544\/IYm2085H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165081277\/1443473428","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JusticeForFayazChohan","indices":[49,71]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722838168219649,"id_str":"663722838168219649","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEZ55UsAEXi7v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEZ55UsAEXi7v.png","url":"https:\/\/t.co\/XusY4gG0V9","display_url":"pic.twitter.com\/XusY4gG0V9","expanded_url":"http:\/\/twitter.com\/DrAyesha4\/status\/663722840156278784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":291,"resize":"fit"},"large":{"w":705,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":164,"resize":"fit"}},"source_status_id":663722840156278784,"source_status_id_str":"663722840156278784","source_user_id":1086797376,"source_user_id_str":"1086797376"}]},"extended_entities":{"media":[{"id":663722838168219649,"id_str":"663722838168219649","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEZ55UsAEXi7v.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEZ55UsAEXi7v.png","url":"https:\/\/t.co\/XusY4gG0V9","display_url":"pic.twitter.com\/XusY4gG0V9","expanded_url":"http:\/\/twitter.com\/DrAyesha4\/status\/663722840156278784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":291,"resize":"fit"},"large":{"w":705,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":164,"resize":"fit"}},"source_status_id":663722840156278784,"source_status_id_str":"663722840156278784","source_user_id":1086797376,"source_user_id_str":"1086797376"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177555103744,"id_str":"663728177555103744","text":"@VEJA @letraslimitadas parece que ele est\u00e1 amea\u00e7ando????","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663682452121116672,"in_reply_to_status_id_str":"663682452121116672","in_reply_to_user_id":17715048,"in_reply_to_user_id_str":"17715048","in_reply_to_screen_name":"VEJA","user":{"id":2906574142,"id_str":"2906574142","name":"Marlene lucia","screen_name":"leporacci2411","location":"Vila Mariana, S\u00e3o Paulo","url":null,"description":"Sempre procurando ser feliz!!!!","protected":false,"verified":false,"followers_count":41,"friends_count":251,"listed_count":0,"favourites_count":6937,"statuses_count":146,"created_at":"Fri Dec 05 16:39:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VEJA","name":"VEJA","id":17715048,"id_str":"17715048","indices":[0,5]},{"screen_name":"letraslimitadas","name":"Nelson Carvalheira","id":1089535657,"id_str":"1089535657","indices":[6,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080103659"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177575956480,"id_str":"663728177575956480","text":"RT @TsuyoshiWood: \u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67940210,"id_str":"67940210","name":"hechtgrauer hexen","screen_name":"hechtgrauer","location":null,"url":null,"description":"\u73c8\u7432\u4e2d\u6bd2","protected":false,"verified":false,"followers_count":55,"friends_count":78,"listed_count":0,"favourites_count":3,"statuses_count":3225,"created_at":"Sat Aug 22 17:43:51 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1C130E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/761955589\/4ccd35438b42a7da37c20ebc15940e52.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/761955589\/4ccd35438b42a7da37c20ebc15940e52.jpeg","profile_background_tile":false,"profile_link_color":"4F3F38","profile_sidebar_border_color":"9DB98C","profile_sidebar_fill_color":"140E0A","profile_text_color":"838978","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/535485679438807040\/yOXpWq4z_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/535485679438807040\/yOXpWq4z_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:13 +0000 2015","id":663721760114651136,"id_str":"663721760114651136","text":"\u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2472381668,"id_str":"2472381668","name":"\u9d3b\u6c60\u3000\u525b","screen_name":"TsuyoshiWood","location":null,"url":"http:\/\/woodbook.xyz","description":"(\u3053\u3046\u306e\u3044\u3051 \u3064\u3088\u3057)\u3067\u3059\u3002\u6f2b\u753b\u63cf\u3044\u3066\u307e\u3059\u3002\u30a6\u30c3\u30c9\u30d6\u30c3\u30af(\u6f2b\u753b\u65e5\u8a18) http:\/\/woodbook.xyz \u4ed5\u4e8b\u60c5\u5831 http:\/\/goo.gl\/g2oKv6 \u30ea\u30d7\u30e9\u30a4\u898b\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u304c\u3042\u307e\u308a\u8fd4\u4e8b\u3067\u304d\u3066\u307e\u305b\u3093\u3002\u6f2b\u753b\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":513962,"friends_count":168,"listed_count":6381,"favourites_count":400,"statuses_count":5282,"created_at":"Thu May 01 11:52:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10853,"favorite_count":13120,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[36,59]}],"user_mentions":[{"screen_name":"TsuyoshiWood","name":"\u9d3b\u6c60\u3000\u525b","id":2472381668,"id_str":"2472381668","indices":[3,16]}],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580253184,"id_str":"663728177580253184","text":"RT @ala7adeth: #\u0633\u0646\u0629_\u0645\u0647\u062c\u0648\u0631\u0629\n\n\u0643\u0627\u0646 \u0627\u0644\u0646\u0628\u064a\ufdfa\n\u0625\u0630\u0627 \u062c\u0627\u0621\u0647 \u0623\u0645\u0631 \u0633\u0631\u0648\u0631 \u0623\u0648 \u0628\u064f\u0634\u0651\u0631 \u0628\u0647\n\u062e\u0631 \u0633\u0627\u062c\u062f\u0627 \u0634\u0627\u0643\u0631\u0627 \u0644\u0644\u0647\n\n\ud83d\udcda\u0635\u062d\u062d\u0647 \u0627\u0644\u0623\u0644\u0628\u0627\u0646\u064a\n\n\u2022\u0627\u0628\u0646 \u0628\u0627\u0632 \u0648\u0635\u0641\u0629 \u0633\u062c\u0648\u062f \u0627\u0644\u0634\u0643\u0631:\nhttps:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1393921116,"id_str":"1393921116","name":"\u0645\u0634\u0627\u0631\u064a \u0627\u0644\u0642\u0631\u0627\u0634\u064a","screen_name":"ABO__kalid_","location":null,"url":"http:\/\/alawazm.com\/vb\/","description":"\u0642\u0627\u0644 \ufdfa:\u0627\u062a\u0642\u0648\u0627 \u0627\u0644\u0638\u0644\u0645 \u0641\u0625\u0646 \u0627\u0644\u0638\u0644\u0645 \u0638\u0644\u0645\u0627\u062a \u064a\u0648\u0645 \u0627\u0644\u0642\u064a\u0627\u0645\u0629 \u0648\u0627\u062a\u0642\u0648\u0627 \u0627\u0644\u0634\u062d \u0641\u0625\u0646 \u0627\u0644\u0634\u062d \u0623\u0647\u0644\u0643 \u0645\u0646 \u0643\u0627\u0646 \u0642\u0628\u0644\u0643\u0645 \u062d\u0645\u0644\u0647\u0645 \u0639\u0644\u0649 \u0623\u0646 \u0633\u0641\u0643\u0648\u0627 \u062f\u0645\u0627\u0621\u0647\u0645 \u0648\u0627\u0633\u062a\u062d\u0644\u0648\u0627 \u0645\u062d\u0627\u0631\u0645\u0647\u0645-\u0645\u0633\u0644\u0645\n @RT_KSA_78","protected":false,"verified":false,"followers_count":860,"friends_count":57,"listed_count":0,"favourites_count":22,"statuses_count":17427,"created_at":"Wed May 01 06:37:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626509495103926272\/Gue3RE3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626509495103926272\/Gue3RE3A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1393921116\/1411343757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:39 +0000 2015","id":663716081379491840,"id_str":"663716081379491840","text":"#\u0633\u0646\u0629_\u0645\u0647\u062c\u0648\u0631\u0629\n\n\u0643\u0627\u0646 \u0627\u0644\u0646\u0628\u064a\ufdfa\n\u0625\u0630\u0627 \u062c\u0627\u0621\u0647 \u0623\u0645\u0631 \u0633\u0631\u0648\u0631 \u0623\u0648 \u0628\u064f\u0634\u0651\u0631 \u0628\u0647\n\u062e\u0631 \u0633\u0627\u062c\u062f\u0627 \u0634\u0627\u0643\u0631\u0627 \u0644\u0644\u0647\n\n\ud83d\udcda\u0635\u062d\u062d\u0647 \u0627\u0644\u0623\u0644\u0628\u0627\u0646\u064a\n\n\u2022\u0627\u0628\u0646 \u0628\u0627\u0632 \u0648\u0635\u0641\u0629 \u0633\u062c\u0648\u062f \u0627\u0644\u0634\u0643\u0631:\nhttps:\/\/t.co\/ljVHBVDjYR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422398976,"id_str":"422398976","name":"\u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a \u0648\u0645\u0633\u0644\u0645","screen_name":"ala7adeth","location":"instagram.com\/ala7adeeth","url":"http:\/\/Soundcloud.com\/ala7adeth","description":"\u062d\u0633\u0627\u0628\u064c \u062f\u0639\u0648\u064a\u0651\u064c\u060c \u064a\u0639\u0646\u0649 \u0628\u0646\u0634\u0631 \u0623\u062d\u0627\u062f\u064a\u062b \u0627\u0644\u0635\u062d\u064a\u062d\u064a\u0646 \u0648\u063a\u064a\u0631\u0647\u0627\u060c \u0648\u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0627\u0644\u062f\u0639\u0648\u064a\u0629 \u0627\u0644\u0646\u0627\u0641\u0639\u0629 Snapchat : ALa7adeth","protected":false,"verified":false,"followers_count":1012591,"friends_count":83,"listed_count":2246,"favourites_count":24,"statuses_count":56922,"created_at":"Sun Nov 27 06:27:49 +0000 2011","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1E1F1A","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652985816466100224\/pn08qe3O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652985816466100224\/pn08qe3O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422398976\/1432736948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":55,"entities":{"hashtags":[{"text":"\u0633\u0646\u0629_\u0645\u0647\u062c\u0648\u0631\u0629","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/ljVHBVDjYR","expanded_url":"http:\/\/www.binbaz.org.sa\/audio\/noor\/083110.mp3","display_url":"binbaz.org.sa\/audio\/noor\/083\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0633\u0646\u0629_\u0645\u0647\u062c\u0648\u0631\u0629","indices":[15,26]}],"urls":[{"url":"https:\/\/t.co\/ljVHBVDjYR","expanded_url":"http:\/\/www.binbaz.org.sa\/audio\/noor\/083110.mp3","display_url":"binbaz.org.sa\/audio\/noor\/083\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"ala7adeth","name":"\u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a \u0648\u0645\u0633\u0644\u0645","id":422398976,"id_str":"422398976","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546571776,"id_str":"663728177546571776","text":"#\u73cd\u3057\u3044\u4eba\u304b\u3089\u30ea\u30d7\u304c\u304f\u308b\n\n\u3060\u308c\u3060\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":188959416,"id_str":"188959416","name":"\u3061\u308d","screen_name":"chi_rolunlun","location":"\u7d75\u672c\u3068\u97f3\u697d\u3068\u304a\u829d\u5c45\u306e\u3042\u308b\u3068\u3053\u308d","url":"http:\/\/xn--v8j7ca8cb8657bnyza.com","description":"\u30b4\u30fc\u30eb\u30c7\u30f3\u8857\u706b\u66dc\u3068\u9694\u9031\u6728\u66dc\u306f\u4e2d\u306e\u4eba\u3001DJ\u3001\u30a4\u30d9\u30f3\u30bf\u30fc\u3001\u30c7\u30a3\u30fc\u30e9\u30fc(\u30dd\u30fc\u30ab\u30fc\u4ee5\u5916\u306f\u306a\u3093\u3068\u306a\u304f)\u3000\u81ea\u7531\u306b\u904a\u3073\u3060\u3059\u3068\u5927\u62b5\u6012\u3089\u308c\u308b\u3002\u5c0f\u4e8c\u75c5\u60a3\u8005","protected":false,"verified":false,"followers_count":828,"friends_count":725,"listed_count":15,"favourites_count":1102,"statuses_count":31129,"created_at":"Fri Sep 10 00:44:05 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629194097710907392\/PPyxiCDR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629194097710907392\/PPyxiCDR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/188959416\/1428903740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u73cd\u3057\u3044\u4eba\u304b\u3089\u30ea\u30d7\u304c\u304f\u308b","indices":[0,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177567526912,"id_str":"663728177567526912","text":"RT @pparooxio99: \uc77c\ubcf8\uc874\uc798\ub2d8\ub4e4 \uc5f0\uc131 \uc77d\uc5b4\uc8fc\ub294\n\"\uc790\ub3d9\ud574\uc11d \ub80c\uc988\"~! https:\/\/t.co\/jHs2UFg16r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":875766576,"id_str":"875766576","name":"\uc874\ub098\ud589\ubcf5\ud55c \ud2f0\uadf8","screen_name":"Nostalgia_HT","location":"\ub355\uc9c8\uc758\uace0\ud5a5 GCcafe","url":null,"description":"\u2728\ud5e4\ub354 \uc5f0\uc5b8\ub2c8\u2728 \n\uc5b8\ud314\u3134 \ube14\uc5b8\ube14\ud558\uc148 \ube14\ub77d\ud558\ub4e0\uc9c0","protected":false,"verified":false,"followers_count":136,"friends_count":171,"listed_count":0,"favourites_count":8266,"statuses_count":6795,"created_at":"Fri Oct 12 14:44:48 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661195577451933696\/kcdQy2P7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661195577451933696\/kcdQy2P7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875766576\/1446979471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:11 +0000 2015","id":663726282723586048,"id_str":"663726282723586048","text":"\uc77c\ubcf8\uc874\uc798\ub2d8\ub4e4 \uc5f0\uc131 \uc77d\uc5b4\uc8fc\ub294\n\"\uc790\ub3d9\ud574\uc11d \ub80c\uc988\"~! https:\/\/t.co\/jHs2UFg16r","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2323147136,"id_str":"2323147136","name":"\u273f\ube68\ub8e8\u273f","screen_name":"pparooxio99","location":null,"url":"http:\/\/ask.fm\/yalroo","description":"FUB FREE\/ pparooxio99@naver.com \/ \u2661 \ucee4\ubbf8\uc158 - http:\/\/wkdlwldps87.wix.com\/pparooxio99 \/","protected":false,"verified":false,"followers_count":15817,"friends_count":332,"listed_count":95,"favourites_count":7131,"statuses_count":36395,"created_at":"Sun Feb 02 03:39:35 +0000 2014","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628762824706142208\/l-ZHZU-f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628762824706142208\/l-ZHZU-f.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656503420979818496\/QX7yEaAL_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656503420979818496\/QX7yEaAL_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2323147136\/1445358087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":376,"favorite_count":65,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pparooxio99","name":"\u273f\ube68\ub8e8\u273f","id":2323147136,"id_str":"2323147136","indices":[3,15]}],"symbols":[],"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}},"source_status_id":663726282723586048,"source_status_id_str":"663726282723586048","source_user_id":2323147136,"source_user_id_str":"2323147136"}]},"extended_entities":{"media":[{"id":663726146761134081,"id_str":"663726146761134081","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHafXWEAEAggN.png","url":"https:\/\/t.co\/jHs2UFg16r","display_url":"pic.twitter.com\/jHs2UFg16r","expanded_url":"http:\/\/twitter.com\/pparooxio99\/status\/663726282723586048\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":1000,"resize":"fit"},"small":{"w":340,"h":680,"resize":"fit"},"medium":{"w":500,"h":1000,"resize":"fit"}},"source_status_id":663726282723586048,"source_status_id_str":"663726282723586048","source_user_id":2323147136,"source_user_id_str":"2323147136"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080103662"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559244800,"id_str":"663728177559244800","text":"@Alban251 bient\u00f4t mdr tkt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726571786788864,"in_reply_to_status_id_str":"663726571786788864","in_reply_to_user_id":2848540834,"in_reply_to_user_id_str":"2848540834","in_reply_to_screen_name":"Alban251","user":{"id":2606121326,"id_str":"2606121326","name":"Reezon","screen_name":"KheopsXV","location":"Suisse","url":"https:\/\/www.behance.net\/KheopsXVI","description":"Il n'y a que la mort qui tient r\u00e9ellement sa promesse.\nResponsable Graphic for @WySixTeam | \nWork for @CompleT_Esport | @HBK_Trophy |\n#FaZeUp | FaZe Reezon","protected":false,"verified":false,"followers_count":3947,"friends_count":222,"listed_count":13,"favourites_count":5884,"statuses_count":18400,"created_at":"Sat Jul 05 20:54:05 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573818990411173888\/HtRpcDho.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573818990411173888\/HtRpcDho.png","profile_background_tile":false,"profile_link_color":"333355","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662225566611939332\/lCuj26Tc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662225566611939332\/lCuj26Tc_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Alban251","name":"IL N'OSERA PAS","id":2848540834,"id_str":"2848540834","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550745600,"id_str":"663728177550745600","text":"RT @brendamtzh_: #OOTN last night \ud83d\udc83\ud83c\udffb https:\/\/t.co\/AfVtumNXaP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":134577071,"id_str":"134577071","name":"AuxCord Papi","screen_name":"Ronniefkn_Z","location":"Erf ","url":null,"description":"Cars are everything.","protected":false,"verified":false,"followers_count":311,"friends_count":247,"listed_count":2,"favourites_count":4641,"statuses_count":46403,"created_at":"Sun Apr 18 21:02:01 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/93432561\/l_0b6ae50f06c67546a4e7e68d9d374c-1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/93432561\/l_0b6ae50f06c67546a4e7e68d9d374c-1.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651524755523108864\/jzl-X3F3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651524755523108864\/jzl-X3F3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/134577071\/1446258276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:47:03 +0000 2015","id":663638922677719040,"id_str":"663638922677719040","text":"#OOTN last night \ud83d\udc83\ud83c\udffb https:\/\/t.co\/AfVtumNXaP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159430470,"id_str":"159430470","name":"b\u2022","screen_name":"brendamtzh_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1511,"friends_count":1109,"listed_count":3,"favourites_count":8611,"statuses_count":62428,"created_at":"Fri Jun 25 10:26:33 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4289C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626532549\/7twco18iv2bdwqe8f7vx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626532549\/7twco18iv2bdwqe8f7vx.jpeg","profile_background_tile":true,"profile_link_color":"B80B6D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2EDF2","profile_text_color":"5C4A61","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661927807014989825\/CPlMR6_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661927807014989825\/CPlMR6_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159430470\/1443952194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":19,"entities":{"hashtags":[{"text":"OOTN","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663638896836608000,"id_str":"663638896836608000","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663638896836608000,"id_str":"663638896836608000","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663638896878616581,"id_str":"663638896878616581","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4OVAAUsCBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4OVAAUsCBi.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663638897608364032,"id_str":"663638897608364032","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D68UEAA9TK7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D68UEAA9TK7.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OOTN","indices":[17,22]}],"urls":[],"user_mentions":[{"screen_name":"brendamtzh_","name":"b\u2022","id":159430470,"id_str":"159430470","indices":[3,15]}],"symbols":[],"media":[{"id":663638896836608000,"id_str":"663638896836608000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663638922677719040,"source_status_id_str":"663638922677719040","source_user_id":159430470,"source_user_id_str":"159430470"}]},"extended_entities":{"media":[{"id":663638896836608000,"id_str":"663638896836608000","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4EUAAAfztR.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663638922677719040,"source_status_id_str":"663638922677719040","source_user_id":159430470,"source_user_id_str":"159430470"},{"id":663638896878616581,"id_str":"663638896878616581","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D4OVAAUsCBi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D4OVAAUsCBi.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663638922677719040,"source_status_id_str":"663638922677719040","source_user_id":159430470,"source_user_id_str":"159430470"},{"id":663638897608364032,"id_str":"663638897608364032","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW4D68UEAA9TK7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW4D68UEAA9TK7.jpg","url":"https:\/\/t.co\/AfVtumNXaP","display_url":"pic.twitter.com\/AfVtumNXaP","expanded_url":"http:\/\/twitter.com\/brendamtzh_\/status\/663638922677719040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663638922677719040,"source_status_id_str":"663638922677719040","source_user_id":159430470,"source_user_id_str":"159430470"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177567498240,"id_str":"663728177567498240","text":"@sima95387 \u3069\u3084\u3063\uff01\u4eca\u5ea6\u7f8e\u5473\u3057\u3044\u65e5\u672c\u9152\u306e\u304a\u3059\u3059\u3081\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u306a\ud83c\udf76","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726720998989824,"in_reply_to_status_id_str":"663726720998989824","in_reply_to_user_id":2424032149,"in_reply_to_user_id_str":"2424032149","in_reply_to_screen_name":"sima95387","user":{"id":4011511219,"id_str":"4011511219","name":"\u3061\u3054@\u30aa\u30eb\u30b5\u30ac","screen_name":"chigo_horsaga","location":null,"url":null,"description":"\u958b\u59cb\u65e52015.7.31\u2741UR89\u2741\u30aa\u30eb\u30b5\u30ac\u4ee5\u5916\u3060\u3068\u3001\u3077\u3088\u30af\u30a8\u3084\u3063\u3066\u307e\u3059\u3002\u5f31\u3044\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059*_ _)\uff8d\uff9f\uff7a\uff98","protected":false,"verified":false,"followers_count":71,"friends_count":69,"listed_count":2,"favourites_count":135,"statuses_count":363,"created_at":"Sun Oct 25 08:33:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658200709012197376\/n82bMbWL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658200709012197376\/n82bMbWL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4011511219\/1446808616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sima95387","name":"\u3046\u307f\uff20\u30aa\u30eb\u30b5\u30ac\u3001\u6a2a\u93ae\u63d0\u7763","id":2424032149,"id_str":"2424032149","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103662"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580081153,"id_str":"663728177580081153","text":"@aopon88 \u306a\u3093\u304b\u6295\u7968\u7684\u306a\u306e\u3084\u3063\u3066\u308b\u307f\u305f\u3044\u3060\u304b\u3089\u8cb7\u3044\u5360\u3081\u308b\u4eba\u3068\u304b\u3082\u5c45\u305d\u3046\u3067\u3059\u3088\u306d\u301c\uff01\u666e\u901a\u306b\u98df\u3079\u305f\u3044\u4eba\u306b\u3068\u3063\u3066\u306f\u53ef\u611b\u305d\u3046\u3067\u3059\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727065154215936,"in_reply_to_status_id_str":"663727065154215936","in_reply_to_user_id":95210208,"in_reply_to_user_id_str":"95210208","in_reply_to_screen_name":"aopon88","user":{"id":2992909262,"id_str":"2992909262","name":"\u3084\u3088\u677e\u306f\u4f4e\u6d6e\u4e0a","screen_name":"UoxoU__yy","location":"\u2661\u307e\u3044\u3048\u3093\u3058\u3047\u308b\u3082\u3082\u304b\u308a\u3093\u0b68\u0b67\u5357\u3053\u3068\u308a\u2661","url":null,"description":"\u3064\u304d\u3072\u2763@tsukihi_0605","protected":false,"verified":false,"followers_count":48,"friends_count":120,"listed_count":3,"favourites_count":317,"statuses_count":1520,"created_at":"Fri Jan 23 04:42:19 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662503805435555840\/irqliCBJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662503805435555840\/irqliCBJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992909262\/1446788580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aopon88","name":"\u3042\u304a\u307d\u3093","id":95210208,"id_str":"95210208","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559158784,"id_str":"663728177559158784","text":"@sakuratiru0422 \u3075\u3075\u3001\u3069\u3046\u3044\u305f\u3057\u307e\u3057\u3066\uff08\u306b\u3053\u308a\u3068\u67d4\u548c\u306a\u7b11\u307f\u6d6e\u304b\u3079","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u03b3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727642072354818,"in_reply_to_status_id_str":"663727642072354818","in_reply_to_user_id":3815007012,"in_reply_to_user_id_str":"3815007012","in_reply_to_screen_name":"sakuratiru0422","user":{"id":3223358287,"id_str":"3223358287","name":"\u30b7\u30e5\u30a6","screen_name":"r18_schicksal","location":null,"url":null,"description":"R\u30aa\u30ea\u306a\u308a\u3002\u591a\u304f\u306f\u8a9e\u3089\u305a\u3002\u72af\u3055\u308c\u305f\u3051\u308c\u3070\u3001\u6765\u308c\u3070\u826f\u3044\u3055\u3002\n\u5927\u5207\u4e0d\u8981\u3002\u3057\u304b\u3057\u30da\u30c3\u30c8\u306f\u3044\u304f\u3089\u3067\u3082\u307b\u3057\u3044\u3002","protected":false,"verified":false,"followers_count":103,"friends_count":104,"listed_count":3,"favourites_count":34,"statuses_count":5897,"created_at":"Fri May 22 13:41:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651462157033324544\/3kvj9eFG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651462157033324544\/3kvj9eFG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakuratiru0422","name":"\u98a8\u685c","id":3815007012,"id_str":"3815007012","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177575936001,"id_str":"663728177575936001","text":"Buti na lang umulan. Tara ligo!","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":281011215,"id_str":"281011215","name":"Nelson Caparas","screen_name":"eessoonn","location":"Cabuyao, Laguna","url":null,"description":"\u2022Lycean \u2022Cheerleader \u2022SalesTravelAgent \u2022EventCoordinator \u2022GalaTeam \u2022SKniSJ","protected":false,"verified":false,"followers_count":182,"friends_count":124,"listed_count":2,"favourites_count":1478,"statuses_count":12942,"created_at":"Tue Apr 12 13:07:54 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429173200\/396368_2331258963207_1301736137_31871155_1833251917_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429173200\/396368_2331258963207_1301736137_31871155_1833251917_n.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540577702999097344\/wAJbF-m9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540577702999097344\/wAJbF-m9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/281011215\/1381335167","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177575931904,"id_str":"663728177575931904","text":"the best is yet to come...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396229518,"id_str":"2396229518","name":"Wednesday Adams","screen_name":"Dianbastareche","location":"Davao City, Philippines","url":null,"description":"I'm your average everyday superhero. 20yo","protected":false,"verified":false,"followers_count":178,"friends_count":163,"listed_count":0,"favourites_count":1097,"statuses_count":5039,"created_at":"Tue Mar 18 13:37:28 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663496676313710592\/3vQH8pqo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663496676313710592\/3vQH8pqo.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655737190484324352\/XCH7XMC6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655737190484324352\/XCH7XMC6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396229518\/1446982116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[7.1011097,125.60204035]},"coordinates":{"type":"Point","coordinates":[125.60204035,7.1011097]},"place":{"id":"01b763b150004405","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01b763b150004405.json","place_type":"city","name":"Davao City","full_name":"Davao City, Davao Region","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[125.214820,6.959006],[125.214820,7.676159],[125.671703,7.676159],[125.671703,6.959006]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177571880960,"id_str":"663728177571880960","text":"Me ha gustado un v\u00eddeo de @YouTube de @OpTicESP (https:\/\/t.co\/kox8jq3kQa - 5 on screen en Black Ops III | CoD Top 10 Snipers 137 |","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":960813289,"id_str":"960813289","name":"joaquin baranda","screen_name":"joaquin_baranda","location":"Asuncion-Paraguay","url":"https:\/\/www.youtube.com\/channel\/UCxC47MDbFjN99oUvPhB8qag","description":"gamer EN YOUTUBE \/ Quieres diversion sigueme y la tendras \/ gameplays de MineCraft","protected":false,"verified":false,"followers_count":30,"friends_count":85,"listed_count":3,"favourites_count":26,"statuses_count":2576,"created_at":"Tue Nov 20 16:53:20 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/516776384916504576\/d2b3H388_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/516776384916504576\/d2b3H388_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/960813289\/1412044110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kox8jq3kQa","expanded_url":"http:\/\/youtu.be\/K8Xjlm_8D2g?a","display_url":"youtu.be\/K8Xjlm_8D2g?a","indices":[49,72]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[26,34]},{"screen_name":"OpTicESP","name":"OpTicESP","id":235238408,"id_str":"235238408","indices":[38,47]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080103663"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580257281,"id_str":"663728177580257281","text":"@mrmooor11 @Profdeit @morninga4 @m511x_ \n\n\u0634\u0643\u0644\u0647 \u0645\u0648\u062a\ud83d\ude15\ud83d\udc94\n\u0648\u0627\u062f\u0645\u0627\u0646!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663704460535963648,"in_reply_to_status_id_str":"663704460535963648","in_reply_to_user_id":403356853,"in_reply_to_user_id_str":"403356853","in_reply_to_screen_name":"mrmooor11","user":{"id":2676995958,"id_str":"2676995958","name":"\u062c\u0646\u0649\u0670","screen_name":"Janadite","location":"Saudi Arabia","url":"https:\/\/dietjana.wordpress.com","description":"\u0645\u0647\u062a\u0645\u0629 \u0628\u0627\u0644\u0635\u062d\u0629 \u0648\u0645\u062d\u0641\u0632\u0629 \u0648\u0645\u0631\u0646\u064e\u0647 \u060c \u0645\u0627\u0641\u064a\u0634 \u0645\u0633\u062a\u062d\u064a\u0644 - \u0628\u062f\u0623\u062a \u0628\u0648\u0632\u064664 \u0627\u0644\u0622\u064652 \u0627\u0633\u0639\u0649 \u0644\u062c\u0633\u0645 \u0631\u064a\u0627\u0636\u064a \u061b\u0627\u064a \u0627\u0633\u062a\u0641\u0633\u0627\u0631 \u062d\u0627\u0636\u0631\u064a\u0646 \u0627\u0641\u064a\u062f\u0643 \u0628\u0627\u0644\u064a \u0627\u0639\u0631\u0641 .","protected":false,"verified":false,"followers_count":1737,"friends_count":150,"listed_count":7,"favourites_count":370,"statuses_count":13069,"created_at":"Thu Jul 24 13:40:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649270902685757440\/VmmScngj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649270902685757440\/VmmScngj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2676995958\/1428526998","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mrmooor11","name":"\u0645\u0622\u0631\u064a\u0627\u0644\u0643\u0639\u0628\u064a","id":403356853,"id_str":"403356853","indices":[0,10]},{"screen_name":"Profdeit","name":"\u0627\u0644\u0645\u0648\u0648\u062f\u064a\u0631\u0629 \u0628\u0631\u0648\u0641\u064a\u0633\u0648\u0631\u0629","id":2366994695,"id_str":"2366994695","indices":[11,20]},{"screen_name":"morninga4","name":"\u0623\u0633\u0648\u0645\u270c","id":2984656213,"id_str":"2984656213","indices":[21,31]},{"screen_name":"m511x_","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u062a\u064a\u0628\u064a.","id":2757278006,"id_str":"2757278006","indices":[32,39]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177563365376,"id_str":"663728177563365376","text":"RT @TheIrwin5SOS: My favourite thing about calum is when he does that crinkly eyed laugh & he tries to stop himself from laughing but ends \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":801539772,"id_str":"801539772","name":"Monica","screen_name":"moonlightbee_","location":null,"url":null,"description":"Cause I've got a jet black heart","protected":false,"verified":false,"followers_count":768,"friends_count":333,"listed_count":1,"favourites_count":25966,"statuses_count":16758,"created_at":"Tue Sep 04 00:59:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648342991925460994\/5_3kr2aG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648342991925460994\/5_3kr2aG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/801539772\/1442548760","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:55:34 +0000 2015","id":663580666831990784,"id_str":"663580666831990784","text":"My favourite thing about calum is when he does that crinkly eyed laugh & he tries to stop himself from laughing but ends up laughing harder","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1671957470,"id_str":"1671957470","name":"calum","screen_name":"TheIrwin5SOS","location":"muke\/4 + band ","url":"https:\/\/twitter.com\/calum5sos\/status\/547441789376798721","description":"if you ever feel cute, remember that calum is cuter.","protected":false,"verified":false,"followers_count":100278,"friends_count":6115,"listed_count":115,"favourites_count":13870,"statuses_count":43252,"created_at":"Thu Aug 15 02:07:28 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599336765665611776\/GJLnf_cE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599336765665611776\/GJLnf_cE.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652879312119443456\/-_OM34_N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652879312119443456\/-_OM34_N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1671957470\/1443757687","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":185,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheIrwin5SOS","name":"calum","id":1671957470,"id_str":"1671957470","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103661"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177554952197,"id_str":"663728177554952197","text":"@YuunaFrom \u305d\u308c\u306f\u3064\u3089\u3044\u3002\u53d7\u304b\u308b\u6c17\u6e80\u3005\u3060\u3063\u305f\u306e\u306b\u306d\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727506759921664,"in_reply_to_status_id_str":"663727506759921664","in_reply_to_user_id":3164812345,"in_reply_to_user_id_str":"3164812345","in_reply_to_screen_name":"YuunaFrom","user":{"id":2748963702,"id_str":"2748963702","name":"\u307f\u30fc\u3081\u308d\u2765\u306b\u3053\u3061\u3085\u3046 \u5f37\u866b","screen_name":"mck10nc20","location":"\u306b\u3053\u308b\u3093\u611b\u304c\u3042\u3075\u308c\u3066\u308b\u3002","url":null,"description":"\u2729\u85e4\u7530\u30cb\u30b3\u30eb\uff08@0220nicole\uff09\u2729\u306b\u3053\u3061\u3085\u3046\u2729\u307f\u304f\u305f\u3080\uff08@mikkkkkku\uff09\u263b\u263b\u305f\u3080\u3081\u308d\u5b89\u5b9a\u263b\u263b\u4ef2\u826f\u304f\u306a\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3001\u307f\u3093\u306a\u7d61\u3093\u3067\uff08\u00b4-`\uff09.\uff61oO\uff08\u2661NEXT\u261e\u30c1\u30a7\u30ad\u4f1a","protected":false,"verified":false,"followers_count":489,"friends_count":161,"listed_count":14,"favourites_count":6360,"statuses_count":7915,"created_at":"Wed Aug 20 13:13:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662976346570682368\/U2AFiDMm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662976346570682368\/U2AFiDMm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2748963702\/1446859235","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"YuunaFrom","name":"\u3086\u30fc\u306a@\u2661\u306b\u3053\u3061\u3085\u3046\u0437","id":3164812345,"id_str":"3164812345","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103659"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550909440,"id_str":"663728177550909440","text":"I'm at \u3073\u3063\u304f\u308a\u4ead \u672c\u5bb6 in \u798f\u5ca1\u5e02, \u798f\u5ca1\u770c https:\/\/t.co\/hgZHNlgarl","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":422150162,"id_str":"422150162","name":"\u30a2\u30eb\u30c8\u30d0\u30f3\u304c\u9ad8\u901f\u9053\u8def\u3067\u3076\u3063\u98db\u3070\u305b\u308b\u7406\u7531","screen_name":"dsk0526","location":"\u798f\u5ca1","url":null,"description":"\u5730\u5143\u3067\u8ca0\u3051\u307e\u3057\u305f","protected":false,"verified":false,"followers_count":478,"friends_count":331,"listed_count":34,"favourites_count":38762,"statuses_count":72324,"created_at":"Sat Nov 26 21:49:32 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661519211005505537\/qtJUKsJ0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661519211005505537\/qtJUKsJ0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/422150162\/1446881109","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[33.54293497,130.46001256]},"coordinates":{"type":"Point","coordinates":[130.46001256,33.54293497]},"place":{"id":"aa7c3ccdbb497079","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/aa7c3ccdbb497079.json","place_type":"city","name":"\u6625\u65e5\u5e02","full_name":"\u798f\u5ca1\u770c \u6625\u65e5\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[130.441594,33.500324],[130.441594,33.547396],[130.479158,33.547396],[130.479158,33.500324]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hgZHNlgarl","expanded_url":"https:\/\/www.swarmapp.com\/c\/7aoif2n5d4z","display_url":"swarmapp.com\/c\/7aoif2n5d4z","indices":[28,51]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177559179268,"id_str":"663728177559179268","text":"@_potsu_n \u5f85\u3063\u3066\u308b\u3088\uff01\u25ce \u8f9b\u62b1\u3060\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725588088094720,"in_reply_to_status_id_str":"663725588088094720","in_reply_to_user_id":3980887153,"in_reply_to_user_id_str":"3980887153","in_reply_to_screen_name":"_potsu_n","user":{"id":3306225716,"id_str":"3306225716","name":"\u308f\u305f\u308b","screen_name":"watarugapyun22","location":null,"url":"http:\/\/instagram.com\/ao__________","description":"1 9 | 1 9 9 5 | # \u51ac \u751f \u307e \u308c","protected":false,"verified":false,"followers_count":82,"friends_count":124,"listed_count":0,"favourites_count":2396,"statuses_count":1198,"created_at":"Tue Aug 04 17:06:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657463195544612864\/y-34eUUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657463195544612864\/y-34eUUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3306225716\/1444292280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_potsu_n","name":"ayumi","id":3980887153,"id_str":"3980887153","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103660"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177571758081,"id_str":"663728177571758081","text":"RT @alisonlaverfaw: @YSJOT #OTweek15 activity: enjoyed singing along to 1940s songs with Harmony Belle who provided the entertainment https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466742206,"id_str":"466742206","name":"Bill Wong, OTD, OTRL","screen_name":"BillWongOT","location":"Monterey Park, California","url":"https:\/\/www.facebook.com\/BillWongOTR","description":"OTR\/L, OTD, Tedx Talker, #otfloat2017 Member, Autism Self-Advocate, #futureot & #futureota friendly #OT practitioner, #proud2BOT","protected":false,"verified":false,"followers_count":5196,"friends_count":5719,"listed_count":223,"favourites_count":46794,"statuses_count":95416,"created_at":"Tue Jan 17 18:56:16 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/741404200\/a933aa5f32923d397de7c3f6947e2401.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/741404200\/a933aa5f32923d397de7c3f6947e2401.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605964538513653760\/mjG1ZSYE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605964538513653760\/mjG1ZSYE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466742206\/1445900179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 07:26:09 +0000 2015","id":663256173165039616,"id_str":"663256173165039616","text":"@YSJOT #OTweek15 activity: enjoyed singing along to 1940s songs with Harmony Belle who provided the entertainment https:\/\/t.co\/hVmS6gMlNh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3535118542,"in_reply_to_user_id_str":"3535118542","in_reply_to_screen_name":"YSJOT","user":{"id":113336843,"id_str":"113336843","name":"Alison Laver-Fawcett","screen_name":"alisonlaverfaw","location":"York, United Kingdom","url":"http:\/\/bit.ly\/1wlgTJ4","description":"Occupational Therapist, Senior Lecturer, York St John University. Interested in development of OT outcome measures, researching OT for people with dementia.","protected":false,"verified":false,"followers_count":850,"friends_count":357,"listed_count":46,"favourites_count":163,"statuses_count":1273,"created_at":"Thu Feb 11 12:46:00 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570575396148482048\/8ojjyk1m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570575396148482048\/8ojjyk1m_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113336843\/1424870797","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"OTweek15","indices":[7,16]}],"urls":[],"user_mentions":[{"screen_name":"YSJOT","name":"OT at York St John","id":3535118542,"id_str":"3535118542","indices":[0,6]}],"symbols":[],"media":[{"id":663256159386796032,"id_str":"663256159386796032","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","url":"https:\/\/t.co\/hVmS6gMlNh","display_url":"pic.twitter.com\/hVmS6gMlNh","expanded_url":"http:\/\/twitter.com\/alisonlaverfaw\/status\/663256173165039616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663256159386796032,"id_str":"663256159386796032","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","url":"https:\/\/t.co\/hVmS6gMlNh","display_url":"pic.twitter.com\/hVmS6gMlNh","expanded_url":"http:\/\/twitter.com\/alisonlaverfaw\/status\/663256173165039616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTweek15","indices":[27,36]}],"urls":[],"user_mentions":[{"screen_name":"alisonlaverfaw","name":"Alison Laver-Fawcett","id":113336843,"id_str":"113336843","indices":[3,18]},{"screen_name":"YSJOT","name":"OT at York St John","id":3535118542,"id_str":"3535118542","indices":[20,26]}],"symbols":[],"media":[{"id":663256159386796032,"id_str":"663256159386796032","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","url":"https:\/\/t.co\/hVmS6gMlNh","display_url":"pic.twitter.com\/hVmS6gMlNh","expanded_url":"http:\/\/twitter.com\/alisonlaverfaw\/status\/663256173165039616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663256173165039616,"source_status_id_str":"663256173165039616","source_user_id":113336843,"source_user_id_str":"113336843"}]},"extended_entities":{"media":[{"id":663256159386796032,"id_str":"663256159386796032","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRb9n9XAAAxZMV.jpg","url":"https:\/\/t.co\/hVmS6gMlNh","display_url":"pic.twitter.com\/hVmS6gMlNh","expanded_url":"http:\/\/twitter.com\/alisonlaverfaw\/status\/663256173165039616\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663256173165039616,"source_status_id_str":"663256173165039616","source_user_id":113336843,"source_user_id_str":"113336843"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103663"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546555392,"id_str":"663728177546555392","text":"RT @Bisniscom: Freeport Belum Terima Surat Peringatan Soal Divestasi Saham https:\/\/t.co\/mGyiaiD8hO https:\/\/t.co\/NishQl2Kxz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2148753265,"id_str":"2148753265","name":"TeKa","screen_name":"p1t3nx","location":"Jakarta Capital Region, Indone","url":null,"description":"GOD Save The GOLD & In GO(L)D We Trust\nKontak:\n- 087.881.493.063\n- 0813.160.777.35\n- 0815.74.11.555.3\n- http:\/\/7.CFA.348.F (pin BBM)","protected":false,"verified":false,"followers_count":30,"friends_count":97,"listed_count":0,"favourites_count":0,"statuses_count":1113,"created_at":"Tue Oct 22 10:20:50 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648397691739770880\/sTfSThiS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648397691739770880\/sTfSThiS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2148753265\/1443425058","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:17 +0000 2015","id":663728069656473600,"id_str":"663728069656473600","text":"Freeport Belum Terima Surat Peringatan Soal Divestasi Saham https:\/\/t.co\/mGyiaiD8hO https:\/\/t.co\/NishQl2Kxz","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118646322,"id_str":"118646322","name":"Bisnis Indonesia","screen_name":"Bisniscom","location":"Jakarta, Indonesia","url":"http:\/\/www.bisnis.com","description":"Berita, analisis serta navigasi bisnis dan investasi dari Harian Bisnis Indonesia - http:\/\/www.bisnis.com | For English News, Follow @Bisniscom_en","protected":false,"verified":false,"followers_count":665901,"friends_count":121,"listed_count":991,"favourites_count":35,"statuses_count":578593,"created_at":"Mon Mar 01 09:56:53 +0000 2010","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAF7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/80322639\/bg-twitter4.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/80322639\/bg-twitter4.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"1A0808","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649164654648803328\/vE8asVdj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649164654648803328\/vE8asVdj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118646322\/1446103164","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mGyiaiD8hO","expanded_url":"http:\/\/bit.ly\/1MuKy8b","display_url":"bit.ly\/1MuKy8b","indices":[60,83]}],"user_mentions":[],"symbols":[],"media":[{"id":663728069530660864,"id_str":"663728069530660864","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","url":"https:\/\/t.co\/NishQl2Kxz","display_url":"pic.twitter.com\/NishQl2Kxz","expanded_url":"http:\/\/twitter.com\/Bisniscom\/status\/663728069656473600\/photo\/1","type":"photo","sizes":{"large":{"w":354,"h":236,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":354,"h":236,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728069530660864,"id_str":"663728069530660864","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","url":"https:\/\/t.co\/NishQl2Kxz","display_url":"pic.twitter.com\/NishQl2Kxz","expanded_url":"http:\/\/twitter.com\/Bisniscom\/status\/663728069656473600\/photo\/1","type":"photo","sizes":{"large":{"w":354,"h":236,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":354,"h":236,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mGyiaiD8hO","expanded_url":"http:\/\/bit.ly\/1MuKy8b","display_url":"bit.ly\/1MuKy8b","indices":[75,98]}],"user_mentions":[{"screen_name":"Bisniscom","name":"Bisnis Indonesia","id":118646322,"id_str":"118646322","indices":[3,13]}],"symbols":[],"media":[{"id":663728069530660864,"id_str":"663728069530660864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","url":"https:\/\/t.co\/NishQl2Kxz","display_url":"pic.twitter.com\/NishQl2Kxz","expanded_url":"http:\/\/twitter.com\/Bisniscom\/status\/663728069656473600\/photo\/1","type":"photo","sizes":{"large":{"w":354,"h":236,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":354,"h":236,"resize":"fit"}},"source_status_id":663728069656473600,"source_status_id_str":"663728069656473600","source_user_id":118646322,"source_user_id_str":"118646322"}]},"extended_entities":{"media":[{"id":663728069530660864,"id_str":"663728069530660864","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKaPUsAAZXyV.jpg","url":"https:\/\/t.co\/NishQl2Kxz","display_url":"pic.twitter.com\/NishQl2Kxz","expanded_url":"http:\/\/twitter.com\/Bisniscom\/status\/663728069656473600\/photo\/1","type":"photo","sizes":{"large":{"w":354,"h":236,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":354,"h":236,"resize":"fit"}},"source_status_id":663728069656473600,"source_status_id_str":"663728069656473600","source_user_id":118646322,"source_user_id_str":"118646322"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177567522816,"id_str":"663728177567522816","text":"@s__radwimps \u3042\u306e\u65e9\u53e3\u306e\u4eba\u306e\u3084\u3064\u3084\u3093\u306a\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727993706033152,"in_reply_to_status_id_str":"663727993706033152","in_reply_to_user_id":2561136080,"in_reply_to_user_id_str":"2561136080","in_reply_to_screen_name":"s__radwimps","user":{"id":3311019626,"id_str":"3311019626","name":"Yuki Kajikawa","screen_name":"miohopes","location":"\u53f3\u306e\u5927\u7832\u3053\u305d\u304c\u30c1\u30fc\u30e0\u306e4\u756a\u306b\u3075\u3055\u308f\u3057\u3044","url":null,"description":"\u751f\u4e2d\uff13\u5e7467th\/Miohopes\u5143\u4e3b\u5c06\/\u5168\u56fd\u5927\u4f1a\u4e09\u5e74\u9023\u7d9a\u51fa\u5834\/\u30bd\u30d5\u30c8\u30dc\u30fc\u30eb\u5927\u597d\u304d\uff01\/\u91ce\u7403\u3001\u30bd\u30d5\u30c8\u30dc\u30fc\u30eb\u3057\u3066\u308b\u5b50\u30fc\u3069\u3093\u3069\u3093follow\u3057\u3066\u30fc\/\u5352\u696d\u307e\u3067\u6094\u3044\u306f\u306e\u3053\u3055\u3093\uff01","protected":false,"verified":false,"followers_count":237,"friends_count":321,"listed_count":0,"favourites_count":255,"statuses_count":732,"created_at":"Mon Aug 10 01:46:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661070319508045824\/6ymfpk6R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661070319508045824\/6ymfpk6R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311019626\/1446446502","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s__radwimps","name":"\u3057\u304a\u306a@\u80ce\u76e4\u4f59\u97fb","id":2561136080,"id_str":"2561136080","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103662"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584279552,"id_str":"663728177584279552","text":"RT @happy__365: \u6d77\u5916\u306e\u300c\u8d64\u305a\u304d\u3093\u3061\u3083\u3093\u3068\u304a\u3070\u3042\u3061\u3083\u3093\u300d\u306e\u30b3\u30b9\u30d7\u30ec\u3000\u7279\u306b\u304a\u3070\u3042\u3061\u3083\u3093\u306e\u65b9\u304c\u6700\u9ad8\u3000https:\/\/t.co\/1HJzA6LBYC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3140329638,"id_str":"3140329638","name":"\u3067\u3093\u304d\u3069\u308d\u307c\u30fc\u3093","screen_name":"tBQBrKZ4a88U6j0","location":null,"url":null,"description":"\u304a\u305d\u677e\u3055\u3093\u30d7\u30ea\u30ba\u30f3\u30b9\u30af\u30fc\u30eb\u3068\u30e2\u30f3\u5a18\u3068\u304c\u3063\u3053\u3046\u3050\u3089\u3057","protected":false,"verified":false,"followers_count":120,"friends_count":137,"listed_count":2,"favourites_count":2955,"statuses_count":3455,"created_at":"Sun Apr 05 14:22:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604837071023259649\/62ov64u8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604837071023259649\/62ov64u8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3140329638\/1440685017","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:58 +0000 2015","id":663725469729202176,"id_str":"663725469729202176","text":"\u6d77\u5916\u306e\u300c\u8d64\u305a\u304d\u3093\u3061\u3083\u3093\u3068\u304a\u3070\u3042\u3061\u3083\u3093\u300d\u306e\u30b3\u30b9\u30d7\u30ec\u3000\u7279\u306b\u304a\u3070\u3042\u3061\u3083\u3093\u306e\u65b9\u304c\u6700\u9ad8\u3000https:\/\/t.co\/1HJzA6LBYC","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1933261309,"id_str":"1933261309","name":"\u30cf\u30c3\u30d4\u30fc\u30a8\u30d6\u30ea\u30c7\u30a4\uff01","screen_name":"happy__365","location":null,"url":"http:\/\/happyeveryday.biz","description":"\u697d\u3057\u3044\u30cb\u30e5\u30fc\u30b9\u3092\u30a4\u30c1\u901f\u304f\u767a\u4fe1\u3059\u308b\u30e1\u30c7\u30a3\u30a2\u300c\u30cf\u30c3\u30d4\u30fc\u30a8\u30d6\u30ea\u30c7\u30a4\uff01\u300d","protected":false,"verified":false,"followers_count":31010,"friends_count":24469,"listed_count":142,"favourites_count":14,"statuses_count":46908,"created_at":"Fri Oct 04 06:01:58 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/525774648659570688\/ywhCBt59_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525774648659570688\/ywhCBt59_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1HJzA6LBYC","expanded_url":"http:\/\/happyeveryday.biz\/?post_type=post&p=24437","display_url":"happyeveryday.biz\/?post_type=pos\u2026","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1HJzA6LBYC","expanded_url":"http:\/\/happyeveryday.biz\/?post_type=post&p=24437","display_url":"happyeveryday.biz\/?post_type=pos\u2026","indices":[55,78]}],"user_mentions":[{"screen_name":"happy__365","name":"\u30cf\u30c3\u30d4\u30fc\u30a8\u30d6\u30ea\u30c7\u30a4\uff01","id":1933261309,"id_str":"1933261309","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177554980864,"id_str":"663728177554980864","text":"@0610Ari \n\u304a\u3044\u3053\u3089\ud83d\ude24\ud83d\udca2\ud83d\ude20\ud83d\ude21\n4th\u30e9\u30a4\u30d6\u6301\u3063\u3066\u304f\u3001DVD\u3060\u304b\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727878303969280,"in_reply_to_status_id_str":"663727878303969280","in_reply_to_user_id":1272260006,"in_reply_to_user_id_str":"1272260006","in_reply_to_screen_name":"0610Ari","user":{"id":1494799368,"id_str":"1494799368","name":"\u5bae\u4e0b \u307f\u304a\u3053","screen_name":"3510mioko","location":null,"url":null,"description":"1-8\u21922-4\u21923-5\u3088\u308d\u3057\u304f \\\u30df\u306f\u4e09\u68ee\u306e\u30df\/","protected":false,"verified":false,"followers_count":509,"friends_count":452,"listed_count":3,"favourites_count":1971,"statuses_count":6316,"created_at":"Sun Jun 09 06:35:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606835657718132737\/UyTQ-ywm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606835657718132737\/UyTQ-ywm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1494799368\/1411114515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0610Ari","name":"\u6749\u672c*\u3042\u308a\u3055","id":1272260006,"id_str":"1272260006","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103659"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177546575872,"id_str":"663728177546575872","text":"@sayapoyo25 \u884c\u304d\u305f\u3044\uff01\n\u3055\u3084\u3061\u3083\u3093\u3044\u3064\u306a\u3089\u3044\u3051\u305d\u3046\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728011791831040,"in_reply_to_status_id_str":"663728011791831040","in_reply_to_user_id":2297792202,"in_reply_to_user_id_str":"2297792202","in_reply_to_screen_name":"sayapoyo25","user":{"id":413742608,"id_str":"413742608","name":"\u30ef\u30cb(TMG)","screen_name":"c12h22o11s","location":"\u3075\u304f\u304a\u304b","url":null,"description":"\u540c \u62c5 \u304c \u307f \u3066 \u308b","protected":false,"verified":false,"followers_count":48,"friends_count":95,"listed_count":1,"favourites_count":3326,"statuses_count":45236,"created_at":"Wed Nov 16 06:15:22 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662284249161056256\/Q9oTadHn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662284249161056256\/Q9oTadHn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413742608\/1445005699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sayapoyo25","name":"\u3055\u3084","id":2297792202,"id_str":"2297792202","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103657"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177584336896,"id_str":"663728177584336896","text":"H\u00fcrriyet gazetesi...Ertu\u011frul \u00d6zk\u00f6k, Ahmet Hakan..hep kendine demokrat! Hele s\u00f6zkonusu cemaatse her zul\u00fcm hak-m\u00fcbah! NTV, Habert\u00fcrk de \u00f6yle!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539277083,"id_str":"539277083","name":"HABERBANK","screen_name":"MuammerGokcin","location":null,"url":null,"description":"Gazeteci-Yazar, E\u011fitimci","protected":false,"verified":false,"followers_count":193,"friends_count":3797,"listed_count":38,"favourites_count":6,"statuses_count":128064,"created_at":"Wed Mar 28 18:33:40 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/455264248298352641\/anz7fE68_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/455264248298352641\/anz7fE68_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539277083\/1397378566","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080103666"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550782464,"id_str":"663728177550782464","text":"@Glassfeel1999 \u30b7\u30ea\u30a6\u30b9\u3044\u3044\u6b4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728002660896768,"in_reply_to_status_id_str":"663728002660896768","in_reply_to_user_id":2584461865,"in_reply_to_user_id_str":"2584461865","in_reply_to_screen_name":"Glassfeel1999","user":{"id":3281159460,"id_str":"3281159460","name":"\u30ad\u30e3\u30e9\u30e1\u30eb\u3055\u3093","screen_name":"kyalamel832","location":"\u57fa\u5730\u5916","url":"http:\/\/battlelog.battlefield.com\/bfh\/agent\/kyalamel832\/stats\/910857677\/ps3\/","description":"FPS\u30b2\u30fc\u30e0\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059 PS3\u306b\u3066BF3\u30014\u3001HL\u3068\u30d7\u30ec\u30a4\u3057\u3068\u308a\u307e\u3059\u3002\u5b9f\u529b\u3082\u30e1\u30f3\u30bf\u30eb\u3082\u75c5\u7684\u306a\u307b\u3069\u5f31\u3044\u3067\u3059 \u3010ARS\u3011\u3010ZIED\u3011\u3010\u91ce\u7363\u611b\u597d\u4f1a\u3011\u6240\u5c5e \u76f8\u68d2\u2192@96usagi2525","protected":false,"verified":false,"followers_count":246,"friends_count":252,"listed_count":13,"favourites_count":14215,"statuses_count":26623,"created_at":"Thu Jul 16 03:45:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663297445900627968\/tIVlISWd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663297445900627968\/tIVlISWd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3281159460\/1445433768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Glassfeel1999","name":"Glassfeel","id":2584461865,"id_str":"2584461865","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177575923712,"id_str":"663728177575923712","text":"@Syaro_Dragons \u304a\u304b\u3048\u308a\u306a\u3055\u3044\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728032486522881,"in_reply_to_status_id_str":"663728032486522881","in_reply_to_user_id":947845860,"in_reply_to_user_id_str":"947845860","in_reply_to_screen_name":"Syaro_Dragons","user":{"id":2572726915,"id_str":"2572726915","name":"\u30cf\u30c3\u30b7\u30fc","screen_name":"silanaisekai_","location":"osaka","url":"https:\/\/www.youtube.com\/channel\/UC35LHHcBEGBdKHELI-eVBtA","description":"\u64ae\u5f71\u30fb\u7363\uff08\u30b1\u30e2\u30ce\uff09\u30fb\u65c5\u30fb\u81ea\u8ee2\u8eca\u30de\u30de\u30c1\u30e3\u30ea\u6a2a\u65ad\u30fb\u30d2\u30c3\u30c1\u30cf\u30a4\u30af\u30fb\u30ed\u30fc\u30ab\u30eb\u30d2\u30fc\u30ed\u30fc\u30fb\u5143yo-yo\u30fbYouTube\uff1d\u30cf\u30c3\u30b7\u30fcchannel \u5c11\u3057\u3060\u3051FREE\u2605PEACE\u306b\u3044\u305f\u4eba\u3002","protected":false,"verified":false,"followers_count":296,"friends_count":293,"listed_count":8,"favourites_count":3234,"statuses_count":10798,"created_at":"Tue Jun 17 11:05:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663670919248805888\/C6lzQCtW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663670919248805888\/C6lzQCtW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572726915\/1445343736","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Syaro_Dragons","name":"\u85cd\u98a8@\u30ae\u30e5\u30f3\u30ae\u30e5\u30f3","id":947845860,"id_str":"947845860","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177575915520,"id_str":"663728177575915520","text":"RT @aldubvines: Yung reaction ni Alden at Maine nung binanggit ni Allan K yung \"secret.\"\n\n#ALDUBMissingRing https:\/\/t.co\/R4V9UkRSyP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3668400252,"id_str":"3668400252","name":"leigh","screen_name":"keesh1234567","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":77,"friends_count":108,"listed_count":7,"favourites_count":3171,"statuses_count":15134,"created_at":"Thu Sep 24 08:35:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654187697519489024\/fWJaqKIG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654187697519489024\/fWJaqKIG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3668400252\/1445178514","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:12 +0000 2015","id":663725279068577792,"id_str":"663725279068577792","text":"Yung reaction ni Alden at Maine nung binanggit ni Allan K yung \"secret.\"\n\n#ALDUBMissingRing https:\/\/t.co\/R4V9UkRSyP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3388814473,"id_str":"3388814473","name":"ALDUB Vines HD","screen_name":"aldubvines","location":"Manila, PH","url":"https:\/\/vine.co\/aldubvines","description":"A collection of tweets and HD vines of the phenomenal loveteam, ALDUB \u2022 Good Vibes Only \u2022 Katie\/A of TLMF \u2022 Followed by @mainedcm on twitter & vine 9\/28\/15","protected":false,"verified":false,"followers_count":75958,"friends_count":118,"listed_count":61,"favourites_count":1755,"statuses_count":1309,"created_at":"Sun Aug 30 04:13:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661789513681760256\/yUbY5_5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661789513681760256\/yUbY5_5y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3388814473\/1446284672","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":311,"favorite_count":396,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[74,91]}],"urls":[{"url":"https:\/\/t.co\/R4V9UkRSyP","expanded_url":"https:\/\/vine.co\/v\/elM9mEPjj3m","display_url":"vine.co\/v\/elM9mEPjj3m","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[90,107]}],"urls":[{"url":"https:\/\/t.co\/R4V9UkRSyP","expanded_url":"https:\/\/vine.co\/v\/elM9mEPjj3m","display_url":"vine.co\/v\/elM9mEPjj3m","indices":[108,131]}],"user_mentions":[{"screen_name":"aldubvines","name":"ALDUB Vines HD","id":3388814473,"id_str":"3388814473","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580277760,"id_str":"663728177580277760","text":"\u042f \u0441\u043e\u0431\u0440\u0430\u043b 118 706 \u0437\u043e\u043b\u043e\u0442\u044b\u0445 \u043c\u043e\u043d\u0435\u0442! \u041a\u0442\u043e \u0438\u0437 \u0432\u0430\u0441 \u0441\u043c\u043e\u0436\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435? https:\/\/t.co\/tkq3D6Y4G9 #ipad, #ipadgames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4069755250,"id_str":"4069755250","name":"IRINA irchik","screen_name":"IRINAirchik2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":1093,"created_at":"Thu Oct 29 18:51:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ipad","indices":[83,88]},{"text":"ipadgames","indices":[90,100]},{"text":"gameinsight","indices":[102,114]}],"urls":[{"url":"https:\/\/t.co\/tkq3D6Y4G9","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080103665"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177550897152,"id_str":"663728177550897152","text":"Vaga para S\u00e3o Paulo-SP: ANALISTA DE VENDAS GUARULHOS https:\/\/t.co\/gTvU5PI14p","source":"\u003ca href=\"http:\/\/www.infojobs.com.br\" rel=\"nofollow\"\u003eInfojobs Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338362960,"id_str":"338362960","name":"InfoJobs TeleMKT","screen_name":"InfoJobsTeleMKT","location":null,"url":"http:\/\/www.infojobs.com.br","description":"Encontre sua oportunidade profissional no InfoJobs! Siga-nos e esteja atualizado diariamente sobre as melhores vagas na \u00e1rea de Telemarketing.","protected":false,"verified":false,"followers_count":584,"friends_count":9,"listed_count":4,"favourites_count":0,"statuses_count":162318,"created_at":"Tue Jul 19 13:32:40 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454633054674231296\/yVUwWG5k.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454633054674231296\/yVUwWG5k.jpeg","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7F7F7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000230456789\/4c6bf557dc89c37a09a43348a217c55f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000230456789\/4c6bf557dc89c37a09a43348a217c55f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338362960\/1415296435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gTvU5PI14p","expanded_url":"http:\/\/infojo.bs\/vSd-b","display_url":"infojo.bs\/vSd-b","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080103658"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177576062976,"id_str":"663728177576062976","text":"Ahora mismo me cuesta trabajo hasta respirar. \nEstoy agobiad\u00edsima,me va a reventar la cabeza.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2901952142,"id_str":"2901952142","name":"Nou-ch\u00fa","screen_name":"TheFaviolator","location":"#BadLazyTrio ","url":null,"description":"\u007bDGM ruined my life\u007d \u00abIntento de ficker y roleplayer vaga\u00bb Si no ves una biograf\u00eda, es porque me da pereza hacerla. O eso, o est\u00e1s ciego. \u2014En ocasiones dibujo\u2014","protected":false,"verified":false,"followers_count":753,"friends_count":367,"listed_count":9,"favourites_count":60414,"statuses_count":39066,"created_at":"Sun Nov 16 18:33:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650756902838792193\/Qm-VSpnl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650756902838792193\/Qm-VSpnl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2901952142\/1443987680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080103664"} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580081152,"id_str":"663728177580081152","text":"\u0632\u0648\u062c\u0629 \u0628\u0646 \u0644\u0627\u062f\u0646 \u062a\u0641\u062c\u0631 \u0645\u0641\u0627\u062c\u0623\u0647.. \u0632\u0648\u062c\u064a \u062a\u0641\u062c\u0631\u062a \u0628\u0647 \u0627\u0644\u0637\u0627\u0626\u0631\u0629! https:\/\/t.co\/EZypmn5Ma4 https:\/\/t.co\/9XSTyKhI24","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":900928082,"id_str":"900928082","name":"\u062a\u063a\u0631\u064a\u062f\u0627\u062a Q8","screen_name":"Q8_QL","location":"\u0627\u0644\u0643\u0648\u064a\u062a","url":"http:\/\/instagram.com\/faares_q8","description":"\u062a\u0633\u0627\u0647\u064a\u0644 \u062a\u0633\u0647\u0644 \u0644\u0643 \u0639\u0644\u0627\u062c\u0643 http:\/\/tasahil.com\/2015\/10\/11\/%d8%aa%d8%b3%d8%a7%d9%87%d9%8a%d9%84-%d8%aa%d8%b3%d9%87%d9%84-%d9%84%d9%83-%d8%b9%d9%84%d8%a7%d8%ac%d9%83\/","protected":false,"verified":false,"followers_count":186048,"friends_count":179524,"listed_count":147,"favourites_count":5,"statuses_count":1693416,"created_at":"Wed Oct 24 01:18:30 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3440328429\/8649d02753ab5596b9446b216830c2c3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3440328429\/8649d02753ab5596b9446b216830c2c3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/900928082\/1364417631","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EZypmn5Ma4","expanded_url":"http:\/\/www.wasm1.com\/?p=7474","display_url":"wasm1.com\/?p=7474","indices":[50,73]}],"user_mentions":[],"symbols":[],"media":[{"id":663728177341030400,"id_str":"663728177341030400","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQr3UYAAK6g8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQr3UYAAK6g8.jpg","url":"https:\/\/t.co\/9XSTyKhI24","display_url":"pic.twitter.com\/9XSTyKhI24","expanded_url":"http:\/\/twitter.com\/Q8_QL\/status\/663728177580081152\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":175,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":175,"resize":"fit"},"small":{"w":300,"h":175,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728177341030400,"id_str":"663728177341030400","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQr3UYAAK6g8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQr3UYAAK6g8.jpg","url":"https:\/\/t.co\/9XSTyKhI24","display_url":"pic.twitter.com\/9XSTyKhI24","expanded_url":"http:\/\/twitter.com\/Q8_QL\/status\/663728177580081152\/photo\/1","type":"photo","sizes":{"medium":{"w":300,"h":175,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":300,"h":175,"resize":"fit"},"small":{"w":300,"h":175,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080103665"} +{"delete":{"status":{"id":663712318895714304,"id_str":"663712318895714304","user_id":2975884325,"user_id_str":"2975884325"},"timestamp_ms":"1447080103989"}} +{"delete":{"status":{"id":663718501325082624,"id_str":"663718501325082624","user_id":1860476959,"user_id_str":"1860476959"},"timestamp_ms":"1447080104151"}} +{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728177580130305,"id_str":"663728177580130305","text":"Ryeowook'ah if you can't going to kyuhyun concert please going to watch Kyuhyun musical TT TT","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223029817,"id_str":"223029817","name":"deasy puspita","screen_name":"deasy2312","location":"Indonesia","url":null,"description":"Everlasting Friends for Super Junior please mention for follback","protected":false,"verified":false,"followers_count":279,"friends_count":273,"listed_count":3,"favourites_count":785,"statuses_count":13815,"created_at":"Sun Dec 05 05:04:42 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605729602321809408\/GZ03Dm-r.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605729602321809408\/GZ03Dm-r.jpg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654310023418396672\/QOpTrvst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654310023418396672\/QOpTrvst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223029817\/1444834711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080103665"} +{"delete":{"status":{"id":663722372650831872,"id_str":"663722372650831872","user_id":3624113898,"user_id_str":"3624113898"},"timestamp_ms":"1447080104408"}} +{"delete":{"status":{"id":663722511054405632,"id_str":"663722511054405632","user_id":3643704492,"user_id_str":"3643704492"},"timestamp_ms":"1447080104454"}} +{"delete":{"status":{"id":663722515265536000,"id_str":"663722515265536000","user_id":3633606565,"user_id_str":"3633606565"},"timestamp_ms":"1447080104453"}} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181757743104,"id_str":"663728181757743104","text":"\u0421\u0430\u043b\u0430\u0442 \u0441 \u043a\u0443\u0440\u0438\u043d\u043e\u0439 \u043f\u0435\u0447\u0435\u043d\u044c\u044e \u0438 \u043e\u0433\u0443\u0440\u0446\u043e\u043c - \u043f\u043e\u0448\u0430\u0433\u043e\u0432\u044b\u0439 \u0440\u0435\u0446\u0435\u043f\u0442 \u0441 \u0444\u043e\u0442\u043e","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261082400,"id_str":"1261082400","name":"BrentBinkley","screen_name":"BrentBinkley","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":5,"listed_count":0,"favourites_count":0,"statuses_count":18997,"created_at":"Tue Mar 12 04:27:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3634651832\/bda0c31061312b6088c6959afce57f69_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3634651832\/bda0c31061312b6088c6959afce57f69_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080104661"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753589760,"id_str":"663728181753589760","text":"RT @DUVARYAZILARl: https:\/\/t.co\/nNozaRlXrb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2853654586,"id_str":"2853654586","name":"Umut Baybas","screen_name":"umtbybs","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":131,"friends_count":413,"listed_count":3,"favourites_count":803,"statuses_count":236,"created_at":"Fri Oct 31 19:00:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644193700785057792\/3UOqebvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644193700785057792\/3UOqebvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2853654586\/1442422759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:52 +0000 2015","id":663711605646106624,"id_str":"663711605646106624","text":"https:\/\/t.co\/nNozaRlXrb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2872223771,"id_str":"2872223771","name":"DUVAR YAZILARI","screen_name":"DUVARYAZILARl","location":null,"url":"http:\/\/instagram.com\/dduvaryyazilari","description":"G\u00fczel Duvar Yaz\u0131lar\u0131n\u0131z \u0130\u00e7in Dm Atabilirsiniz","protected":false,"verified":false,"followers_count":82249,"friends_count":96,"listed_count":67,"favourites_count":0,"statuses_count":523,"created_at":"Tue Nov 11 12:24:09 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599599577365348352\/K0QY40Ji_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599599577365348352\/K0QY40Ji_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2872223771\/1435102745","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663711604203212800,"id_str":"663711604203212800","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","url":"https:\/\/t.co\/nNozaRlXrb","display_url":"pic.twitter.com\/nNozaRlXrb","expanded_url":"http:\/\/twitter.com\/DUVARYAZILARl\/status\/663711605646106624\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663711604203212800,"id_str":"663711604203212800","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","url":"https:\/\/t.co\/nNozaRlXrb","display_url":"pic.twitter.com\/nNozaRlXrb","expanded_url":"http:\/\/twitter.com\/DUVARYAZILARl\/status\/663711605646106624\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DUVARYAZILARl","name":"DUVAR YAZILARI","id":2872223771,"id_str":"2872223771","indices":[3,17]}],"symbols":[],"media":[{"id":663711604203212800,"id_str":"663711604203212800","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","url":"https:\/\/t.co\/nNozaRlXrb","display_url":"pic.twitter.com\/nNozaRlXrb","expanded_url":"http:\/\/twitter.com\/DUVARYAZILARl\/status\/663711605646106624\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663711605646106624,"source_status_id_str":"663711605646106624","source_user_id":2872223771,"source_user_id_str":"2872223771"}]},"extended_entities":{"media":[{"id":663711604203212800,"id_str":"663711604203212800","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6MAHWUAAi1IW.jpg","url":"https:\/\/t.co\/nNozaRlXrb","display_url":"pic.twitter.com\/nNozaRlXrb","expanded_url":"http:\/\/twitter.com\/DUVARYAZILARl\/status\/663711605646106624\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663711605646106624,"source_status_id_str":"663711605646106624","source_user_id":2872223771,"source_user_id_str":"2872223771"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770350592,"id_str":"663728181770350592","text":"@MiljkovicNatasa Uostalom, kreni redom da gugla\u0161 svaku CV stavku doti\u010dnog, vide\u0107e\u0161 o \u010demu govorim.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727098817855488,"in_reply_to_status_id_str":"663727098817855488","in_reply_to_user_id":382204770,"in_reply_to_user_id_str":"382204770","in_reply_to_screen_name":"MiljkovicNatasa","user":{"id":396880603,"id_str":"396880603","name":"Vesna","screen_name":"VesnaSladojevic","location":"Belgrade, Serbia","url":null,"description":"Journalist","protected":false,"verified":false,"followers_count":3107,"friends_count":1218,"listed_count":33,"favourites_count":27397,"statuses_count":19971,"created_at":"Sun Oct 23 22:21:05 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DADDC0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/851574692\/cc249dfa6758e6b44f121ed034409cae.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/851574692\/cc249dfa6758e6b44f121ed034409cae.jpeg","profile_background_tile":true,"profile_link_color":"6C961C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E2EAEF","profile_text_color":"877F63","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646357996117868544\/PxND3o1Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646357996117868544\/PxND3o1Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396880603\/1397052891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MiljkovicNatasa","name":"Natasa Miljkovic","id":382204770,"id_str":"382204770","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181766168576,"id_str":"663728181766168576","text":"@pngqwn \u0441\u043f\u0430\u0441\u0438\u0431\u043e \u0437\u0430 \u044d\u0442\u043e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723467221704704,"in_reply_to_status_id_str":"663723467221704704","in_reply_to_user_id":854633737,"in_reply_to_user_id_str":"854633737","in_reply_to_screen_name":"pngqwn","user":{"id":1251271675,"id_str":"1251271675","name":"cubicles","screen_name":"bagb0y","location":"\u043a\u043e\u043a\u0441 \u043c\u043e\u0439 \u0431\u043e\u0442\u0442\u043e\u043c","url":"http:\/\/ficbook.net\/authors\/1014781","description":"are you on myfriendsmakeoutspace-ster (fuckeachotherfuckeachotherfuckeachother) club? wanna fuck? i'm just like you.","protected":false,"verified":false,"followers_count":1682,"friends_count":74,"listed_count":15,"favourites_count":1805,"statuses_count":82668,"created_at":"Fri Mar 08 09:37:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435779308938743808\/QtIXFzmJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435779308938743808\/QtIXFzmJ.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653802129530994688\/Ur72rPL0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653802129530994688\/Ur72rPL0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251271675\/1444713549","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pngqwn","name":"\u0442\u0440\u0435\u043c\u043e\u0440","id":854633737,"id_str":"854633737","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080104663"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770395648,"id_str":"663728181770395648","text":"RT @ReaganGomez: The whole school is on their side. This is incredible. #MizzouFootballStrike","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":138304076,"id_str":"138304076","name":"Boogie Baby","screen_name":"LifeSizeBrownie","location":null,"url":null,"description":"Boogie Darling \ue13e\ue31c\ue323","protected":false,"verified":false,"followers_count":824,"friends_count":331,"listed_count":8,"favourites_count":62,"statuses_count":113736,"created_at":"Thu Apr 29 05:07:50 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/380785110\/marilyn_monroe_red_carpet.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/380785110\/marilyn_monroe_red_carpet.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"0D0303","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651516201793945600\/_6yoQlCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651516201793945600\/_6yoQlCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/138304076\/1426455553","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:48 +0000 2015","id":663722662087143424,"id_str":"663722662087143424","text":"The whole school is on their side. This is incredible. #MizzouFootballStrike","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":23831682,"id_str":"23831682","name":"Reagan Gomez","screen_name":"ReaganGomez","location":"Make Gumbo or Die Trying","url":"http:\/\/ReaganGomez.com\/","description":"Wife, mom, ContentCreator, Black Feminist. Seasons 1\/2 of my webseries AlmostHome r on my YT. My new Sci-Fi webseries Surviving, is out Now!","protected":false,"verified":true,"followers_count":156784,"friends_count":1757,"listed_count":1542,"favourites_count":2332,"statuses_count":181442,"created_at":"Wed Mar 11 21:16:11 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/108612503\/rg_012_final.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/108612503\/rg_012_final.jpg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661440567314812928\/0nQG7bmH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661440567314812928\/0nQG7bmH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/23831682\/1368397538","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":12,"entities":{"hashtags":[{"text":"MizzouFootballStrike","indices":[55,76]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MizzouFootballStrike","indices":[72,93]}],"urls":[],"user_mentions":[{"screen_name":"ReaganGomez","name":"Reagan Gomez","id":23831682,"id_str":"23831682","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181774524417,"id_str":"663728181774524417","text":"RT @Macks_A_Million: Nigga it's 9:39 am \ud83d\udc40 https:\/\/t.co\/INDlWL6Tdc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106285766,"id_str":"106285766","name":"S M O O V E \u270a","screen_name":"Mr_CrossOver330","location":null,"url":null,"description":"Smoove \u270a","protected":false,"verified":false,"followers_count":1118,"friends_count":1036,"listed_count":2,"favourites_count":3303,"statuses_count":27131,"created_at":"Tue Jan 19 02:25:46 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"07090B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447577082\/jj_3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447577082\/jj_3.jpg","profile_background_tile":true,"profile_link_color":"C34242","profile_sidebar_border_color":"BFBFBF","profile_sidebar_fill_color":"C9C9C9","profile_text_color":"1C1F23","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635683336460050432\/0LwQZQl6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635683336460050432\/0LwQZQl6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106285766\/1435591903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:29 +0000 2015","id":663727614390087680,"id_str":"663727614390087680","text":"Nigga it's 9:39 am \ud83d\udc40 https:\/\/t.co\/INDlWL6Tdc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275878315,"id_str":"275878315","name":"D\u24c2\ufe0fAC","screen_name":"Macks_A_Million","location":"Dirty3Thirty ","url":"http:\/\/ask.fm\/dmac1123","description":"On My Grown Man. Striving for Greatness. Quitters never win, winners never quit","protected":false,"verified":false,"followers_count":2153,"friends_count":1169,"listed_count":4,"favourites_count":6647,"statuses_count":50807,"created_at":"Sat Apr 02 05:40:57 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456110927994052609\/pOHaumdG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456110927994052609\/pOHaumdG.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684465550577664\/QtyrcvOP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684465550577664\/QtyrcvOP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275878315\/1447069637","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725490738450432,"quoted_status_id_str":"663725490738450432","quoted_status":{"created_at":"Mon Nov 09 14:31:03 +0000 2015","id":663725490738450432,"id_str":"663725490738450432","text":"whats the move?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":393059594,"id_str":"393059594","name":"\u27b0\u2663\ufe0fJEZZY \u2b55\ufe0f\u2020F\u2663\ufe0f\u27b0","screen_name":"BornSinner_7","location":null,"url":null,"description":"SNAPCHAT @ttogo Black Lives Matter \u270a","protected":false,"verified":false,"followers_count":1453,"friends_count":790,"listed_count":2,"favourites_count":41971,"statuses_count":84420,"created_at":"Mon Oct 17 23:41:29 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/820579219\/1ea80e24ee27654b106a2c646afb99a7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/820579219\/1ea80e24ee27654b106a2c646afb99a7.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656903203993292800\/0lB42b5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656903203993292800\/0lB42b5y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/393059594\/1446136556","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/INDlWL6Tdc","expanded_url":"https:\/\/twitter.com\/bornsinner_7\/status\/663725490738450432","display_url":"twitter.com\/bornsinner_7\/s\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/INDlWL6Tdc","expanded_url":"https:\/\/twitter.com\/bornsinner_7\/status\/663725490738450432","display_url":"twitter.com\/bornsinner_7\/s\u2026","indices":[42,65]}],"user_mentions":[{"screen_name":"Macks_A_Million","name":"D\u24c2\ufe0fAC","id":275878315,"id_str":"275878315","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104665"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745061889,"id_str":"663728181745061889","text":"RT @kagura_kotohime: \u3010\u30ef\u30f3\u30de\u30f3\u3067\u306e\u5b09\u3057\u3044\u304a\u77e5\u3089\u305b\ud83c\udf8a\u3011\n\n\u2463\u3010\u6771\u6d77\u5730\u533a\u306e\u30b4\u30fc\u30eb\u30c7\u30f3\u51a0\u30e9\u30b8\u30aa\u756a\u7d44 \u6c7a\u5b9a\uff01\uff01\uff01\u3011\n\u51a0\u30e9\u30b8\u30aa( \u00b4\u2022\u0325\u00d7\u2022\u0325` )\u5b09\u3057\u3059\u304e\u307e\u3059( \u00b4\u2022\u0325\u00d7\u2022\u0325` )\n\n\u65b0\u5bbfReNY\u3067\u306e\u30ef\u30f3\u30de\u30f3\u3001\u51a0\u30e9\u30b8\u30aa\u756a\u7d44\u306e\u767a\u8868\u306f\u308f\u305f\u3057\u305f\u3061\u3082\u6628\u65e5\u77e5\u308a\u307e\u3057\u305f\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\u30b5\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4093375093,"id_str":"4093375093","name":"\u3042\u3093\u3061\u3083\u3093(\u6982\u5ff5)","screen_name":"anchan_ab","location":"\u65e5\u672c \u6771\u4eac\u90fd","url":null,"description":"Twitter\u59cb\u3081\u307e\u3057\u305f(2015.11.1~)\/\u5e73\u6210\u7434\u59eb\u3068Chu-Z\u306f\u7d76\u5bfe\/\u30c7\u30e2\u30b5\u30e8\u30ca\u30e9\/\u307e\u306d\u304d\u30b1\u30c1\u30e3\u307e\u3086\u305f\u63a8\u3057\/\u304b\u306a\u3074\u3087\u3093\u6700\u5f37\u8aac\/\u30d0\u30e9\u306e\u30d0\u30e9\u30f3\u30b9\u306b\u6551\u308f\u308c\u305f\/\u7d14\u60c5\u30de\u30fc\u30e1\u30a4\u30c9\/\u3044\u3063\u3061\u3083\u3093\/\u3042\u3086\u3061\u3083\u3093\/\u552f\u3061\u3085\u3093\/coco\u3061\u3083\u3093\/\u8d64\u514e\/\u30a4\u30b7\u30ab\u30ef\u5148\u751f\/\u864e\u515a\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u304a\u8a31\u3057\u4e0b\u3055\u3044\uff01\u30d5\u30a9\u30ed\u30d0\u671f\u5f85","protected":false,"verified":false,"followers_count":45,"friends_count":119,"listed_count":0,"favourites_count":349,"statuses_count":189,"created_at":"Sun Nov 01 18:12:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663635323734241281\/bJOQJrYq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663635323734241281\/bJOQJrYq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4093375093\/1446992992","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:02:42 +0000 2015","id":663673061170880512,"id_str":"663673061170880512","text":"\u3010\u30ef\u30f3\u30de\u30f3\u3067\u306e\u5b09\u3057\u3044\u304a\u77e5\u3089\u305b\ud83c\udf8a\u3011\n\n\u2463\u3010\u6771\u6d77\u5730\u533a\u306e\u30b4\u30fc\u30eb\u30c7\u30f3\u51a0\u30e9\u30b8\u30aa\u756a\u7d44 \u6c7a\u5b9a\uff01\uff01\uff01\u3011\n\u51a0\u30e9\u30b8\u30aa( \u00b4\u2022\u0325\u00d7\u2022\u0325` )\u5b09\u3057\u3059\u304e\u307e\u3059( \u00b4\u2022\u0325\u00d7\u2022\u0325` )\n\n\u65b0\u5bbfReNY\u3067\u306e\u30ef\u30f3\u30de\u30f3\u3001\u51a0\u30e9\u30b8\u30aa\u756a\u7d44\u306e\u767a\u8868\u306f\u308f\u305f\u3057\u305f\u3061\u3082\u6628\u65e5\u77e5\u308a\u307e\u3057\u305f\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\u30b5\u30d7\u30e9\u30a4\u30ba\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3254733847,"id_str":"3254733847","name":"\u795e\u697d\u3042\u3086@\u30ef\u30f3\u30de\u30f3\u3042\u308a\u304c\u3068\u3046","screen_name":"kagura_kotohime","location":"\u30b8\u30aa\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u6240\u5c5e","url":"http:\/\/s.ameblo.jp\/ayukotohime?frm_id=v.jpameb","description":"\u5e73\u6210\u7434\u59eb\u306e\u9752\u8272\u306e\\\u6b4c\u58f0\u304c\u30c7\u30ab\u30a4\/\u9396\u9aa8\u62c5\u5f53\u306e\u6700\u5e74\u5c11\u3067\u3059\u3002\u300c\u795e\u697d(\u304b\u3050\u3089)\u3042\u3086\u300d\u3060\u3088\u3002\u3042\u3086\u3066\u3083\u3093\u300219\u3061\u3083\u3044\u3002\u2661\u6b4c\u3046\/\u98df\u3079\u308b\/\u304a\u6d12\u843d\/\u6708\/\u5de6\u5229\u304d\/\u30b3\u30f3\u55ab\/\u30ad\u30ad\u30e9\u30e9\u2661 \u3075\u3049\u308d\u307f\uff01\u029a\u2661\u025e\u30d5\u30a9\u30ed\u30fc\u306f\u77e5\u308a\u5408\u3044\u3001\u82b8\u80fd\u95a2\u4fc2\u8005\u3055\u307e\u306e\u307f\u3067\u3059\u2727* \u5e73\u6210\u7434\u59eb2015.7.2\u52a0\u5165","protected":false,"verified":false,"followers_count":1494,"friends_count":127,"listed_count":54,"favourites_count":18484,"statuses_count":3645,"created_at":"Wed Jun 24 14:31:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658268547898982400\/pkaC9AZQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658268547898982400\/pkaC9AZQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254733847\/1447079678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kagura_kotohime","name":"\u795e\u697d\u3042\u3086@\u30ef\u30f3\u30de\u30f3\u3042\u308a\u304c\u3068\u3046","id":3254733847,"id_str":"3254733847","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181774524416,"id_str":"663728181774524416","text":"OKAY YIXING IS SO BEAUTIFUL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3180878635,"id_str":"3180878635","name":"yixing's narood","screen_name":"butterfIive","location":"jiyora \u2661 narxing \u2661 karlie","url":"https:\/\/twitter.com\/butterfiive\/status\/631998886660435968","description":"asia's most influential artist","protected":false,"verified":false,"followers_count":613,"friends_count":235,"listed_count":2,"favourites_count":6633,"statuses_count":14704,"created_at":"Thu Apr 30 16:59:31 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606768254875398145\/VMZ-7YYx.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606768254875398145\/VMZ-7YYx.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663362807799390208\/yL0YVxw2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663362807799390208\/yL0YVxw2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3180878635\/1446895392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104665"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181766057984,"id_str":"663728181766057984","text":"\u76ae\u98df\u3048\u306a\u3044\u3084\u3064\u306f\u8ad6\u5916()","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":540937366,"id_str":"540937366","name":"\u30db\u30ed","screen_name":"ARIA_0902","location":null,"url":null,"description":"\u3072\u3088\u3063\u3061\u3001\u3086\u3044\u3061\u3083\u3093\u3001\u904a\u622f\u738b\u3001\u8266\u3053\u308c\u30022013\u5e7410\u6708\u304b\u3089\u30d1\u30e9\u30aa\u6cca\u5730\u306b\u7740\u4efb\u53f8\u4ee4Lv100\u3001\u52a0\u8cc0\u3055\u3093\u306f\u5ac1","protected":false,"verified":false,"followers_count":513,"friends_count":526,"listed_count":3,"favourites_count":11724,"statuses_count":69473,"created_at":"Fri Mar 30 16:12:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661017629763612672\/nkzSnW3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661017629763612672\/nkzSnW3w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/540937366\/1440711639","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104663"} +{"delete":{"status":{"id":519244622082498560,"id_str":"519244622082498560","user_id":2541171704,"user_id_str":"2541171704"},"timestamp_ms":"1447080104735"}} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181757759488,"id_str":"663728181757759488","text":"@camanpour Hello Christine..speak up on the plight of the biafra.....ur voice will be loud enough.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663689364082401280,"in_reply_to_status_id_str":"663689364082401280","in_reply_to_user_id":69181624,"in_reply_to_user_id_str":"69181624","in_reply_to_screen_name":"camanpour","user":{"id":3289647618,"id_str":"3289647618","name":"Chidiebere chime","screen_name":"Freeurself4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":23,"listed_count":0,"favourites_count":2,"statuses_count":18,"created_at":"Fri Jul 24 11:00:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"camanpour","name":"Christiane Amanpour","id":69181624,"id_str":"69181624","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104661"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181749379072,"id_str":"663728181749379072","text":"@FRodriguezG @terranova60 @lelajandra Para qu\u00e9 est\u00e1n los jueces y tribunales? coludidos, comprados, venales, corruptos? Da igual, no sirven.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663694759567958016,"in_reply_to_status_id_str":"663694759567958016","in_reply_to_user_id":128118246,"in_reply_to_user_id_str":"128118246","in_reply_to_screen_name":"FRodriguezG","user":{"id":2469800310,"id_str":"2469800310","name":"Luis Besoain Urrutia","screen_name":"tricahueno","location":"Santiago","url":null,"description":"Chileno, sufri\u00f3 por Chile los 1.000 d\u00edas de Allende. Espera que no se repitan ahora nuevamente con la Srta. Bachelet. Chill\u00f3n como buen Tricahue.","protected":false,"verified":false,"followers_count":998,"friends_count":2051,"listed_count":3,"favourites_count":264,"statuses_count":2802,"created_at":"Tue Apr 29 20:10:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637269805859516416\/8enTN_BI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637269805859516416\/8enTN_BI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00c4b64e7affea25","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00c4b64e7affea25.json","place_type":"city","name":"Las Condes","full_name":"Las Condes, Chile","country_code":"CL","country":"Chile","bounding_box":{"type":"Polygon","coordinates":[[[-70.608694,-33.486182],[-70.608694,-33.364704],[-70.429141,-33.364704],[-70.429141,-33.486182]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FRodriguezG","name":"Fernando Rodr\u00edguez G","id":128118246,"id_str":"128118246","indices":[0,12]},{"screen_name":"terranova60","name":"Regina Rodr\u00edguez","id":186037690,"id_str":"186037690","indices":[13,25]},{"screen_name":"lelajandra","name":"Ale","id":102981505,"id_str":"102981505","indices":[26,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080104659"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770252288,"id_str":"663728181770252288","text":"@CuderiaFeuerbac \u5192\u967a\uff01\uff1f\u3000\u9811\u5f35\u3063\u3066\u3001\u30af\u30fc\u30c7\u30ea\u30a2\u30fb\u30d5\u30a9\u30f3\u30fb\u30d5\u30a9\u30a4\u30a8\u30eb\u30d0\u30c3\u30cf\u304f\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/jtc-proserpine.com\/Help\/wt_loginNew_appNew.html\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u516c\u8a8d\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727826986627072,"in_reply_to_status_id_str":"663727826986627072","in_reply_to_user_id":786050323,"in_reply_to_user_id_str":"786050323","in_reply_to_screen_name":"CuderiaFeuerbac","user":{"id":1590789456,"id_str":"1590789456","name":"\u679d\u8449 \u67da\u5e0c","screen_name":"Eba_Yuzuki_","location":"\u6850\u5cf6\u5bb6\u306e\u5c45\u5019\u3067\u3059\u304c\u4f55\u304b","url":"http:\/\/anime.geocities.jp\/eba_yuzuki_girl\/","description":"\u30c6\u30cb\u30b9\u90e8\u3000\u51fa\u8eab\uff1a\u6771\u4eac\u90fd\u3000\u8a95\u751f\u65e5\uff1a8\u67083\u65e5\u3000\u8eab\u9577\uff1a155cm\u3000\u4f53\u91cd\uff1a ?kg\u3000\u8840\u6db2\u578b\uff1aAB\u578b\u30003\u30b5\u30a4\u30ba\uff1aB80\/W57\/H83","protected":false,"verified":false,"followers_count":4781,"friends_count":4770,"listed_count":15,"favourites_count":0,"statuses_count":776052,"created_at":"Sat Jul 13 11:37:20 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000128089736\/69a696e0a2fb3ad614c1a2e16266718f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000128089736\/69a696e0a2fb3ad614c1a2e16266718f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1590789456\/1373716037","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CuderiaFeuerbac","name":"\u30af\u30fc\u30c7\u30ea\u30a2\u30fb\u30d5\u30a9\u30f3\u30fb\u30d5\u30a9\u30a4\u30a8\u30eb\u30d0\u30c3\u30cf","id":786050323,"id_str":"786050323","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181778759680,"id_str":"663728181778759680","text":"https:\/\/t.co\/N07my5Ab0m","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2799207773,"id_str":"2799207773","name":"Barbarino salvatore","screen_name":"salvato40079081","location":"siracusa","url":"http:\/\/libertagia.com\/sb1983sblibero","description":"Barbasa","protected":false,"verified":false,"followers_count":303,"friends_count":1351,"listed_count":3,"favourites_count":0,"statuses_count":7173,"created_at":"Thu Oct 02 01:16:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614793194371436544\/kB6dt5Oj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614793194371436544\/kB6dt5Oj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2799207773\/1435413087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/N07my5Ab0m","expanded_url":"http:\/\/fb.me\/2nyWklKn0","display_url":"fb.me\/2nyWklKn0","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080104666"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181761802241,"id_str":"663728181761802241","text":"RT @sudhir_shukla_7: \u0905\u092d\u0940 \u092e\u0941\u091d\u092e\u0947\u0902 \u0915\u0939\u0940 \n\u092c\u093e\u0915\u0940 \u0925\u094b\u0921\u093c\u0940 \u0938\u0940 \u0939\u0948 \u091c\u093f\u0902\u0926\u0917\u0940 \n #SUPER_HIT_SONG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474658977,"id_str":"474658977","name":"\u2606A\u014bG\u025bL\u2606","screen_name":"Fairy_Tanu","location":"Punjab, India","url":"https:\/\/i.instagram.com\/fairy_tanu\/","description":"\u0928\u093e \u0915\u093f\u0938\u0940 \u0938\u0947 \u0908\u0930\u094d\u0937\u094d\u092f\u093e, \u0928\u093e \u0915\u093f\u0938\u0940 \u0938\u0947 \u0915\u094b\u0908 \u0939\u094b\u0921\u093c, \u092e\u0947\u0930\u0940 \u0905\u092a\u0928\u0940 \u092e\u0902\u091c\u0940\u0932\u0947, \u092e\u0947\u0930\u0940 \u0905\u092a\u0928\u0940 \u0926\u094c\u0921\u093c\u2026\u2026\u2026! Visit @MyArchive_Tanu","protected":false,"verified":false,"followers_count":8490,"friends_count":6584,"listed_count":22,"favourites_count":2087,"statuses_count":28788,"created_at":"Thu Jan 26 06:39:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663376165290115072\/F6mbecWy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663376165290115072\/F6mbecWy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474658977\/1446627487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:30 +0000 2015","id":663727619939045376,"id_str":"663727619939045376","text":"\u0905\u092d\u0940 \u092e\u0941\u091d\u092e\u0947\u0902 \u0915\u0939\u0940 \n\u092c\u093e\u0915\u0940 \u0925\u094b\u0921\u093c\u0940 \u0938\u0940 \u0939\u0948 \u091c\u093f\u0902\u0926\u0917\u0940 \n #SUPER_HIT_SONG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2507709159,"id_str":"2507709159","name":"Sudhir Shukla #HTL","screen_name":"sudhir_shukla_7","location":"New Delhi, Delhi","url":null,"description":"\u0907\u0938 \u0932\u093e\u092f\u0915 \u0928\u0939\u0940\u0901 \u0938\u092e\u091d\u0924\u093e \u0916\u0941\u0926 \u0915\u094b","protected":false,"verified":false,"followers_count":326,"friends_count":45,"listed_count":5,"favourites_count":373,"statuses_count":10388,"created_at":"Fri Apr 25 05:49:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663325633032773632\/ISMkVLDB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663325633032773632\/ISMkVLDB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2507709159\/1446984160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"SUPER_HIT_SONG","indices":[42,57]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SUPER_HIT_SONG","indices":[63,78]}],"urls":[],"user_mentions":[{"screen_name":"sudhir_shukla_7","name":"Sudhir Shukla #HTL","id":2507709159,"id_str":"2507709159","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080104662"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181741010945,"id_str":"663728181741010945","text":"A new favorite: Just LT @ Moon Eclipse Semptember 2015 by Justeltech https:\/\/t.co\/dvjo7m7qeX on #SoundCloud","source":"\u003ca href=\"http:\/\/soundcloud.com\" rel=\"nofollow\"\u003eSoundCloud\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":604237751,"id_str":"604237751","name":"mad-nrg(CraOcto\/E'S)","screen_name":"DNeidenbach","location":"Strasbourg, France","url":"https:\/\/www.facebook.com\/madnrg67music2013","description":"Mixing and DJing with Heart and Love for Electronic Music. from Deep-House(122Bpm) to Techno(135Bpm)","protected":false,"verified":false,"followers_count":342,"friends_count":972,"listed_count":3,"favourites_count":99,"statuses_count":7319,"created_at":"Sun Jun 10 05:55:30 +0000 2012","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/591334602\/xc7636d4f0c6a00b8d24ab8048a5865e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/591334602\/xc7636d4f0c6a00b8d24ab8048a5865e.jpg","profile_background_tile":true,"profile_link_color":"29E329","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"171106","profile_text_color":"8A7302","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663418434340933632\/z-RBhMg3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663418434340933632\/z-RBhMg3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/604237751\/1445755373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SoundCloud","indices":[96,107]}],"urls":[{"url":"https:\/\/t.co\/dvjo7m7qeX","expanded_url":"https:\/\/soundcloud.com\/justyna-lutkiewicz\/just-lt-moon-eclipse-semptember-2015","display_url":"soundcloud.com\/justyna-lutkie\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104657"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770342400,"id_str":"663728181770342400","text":"RT https:\/\/t.co\/EtONe3CA9t Larry Silverstein on where NYC real estate: \u201cI\u2019ve been functioning here for about 60 \u2026 https:\/\/t.co\/403A89cvxP","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301160221,"id_str":"3301160221","name":"Ramona B. Thomas","screen_name":"ramonbthomas","location":"Newark, NJ","url":null,"description":"I am a blogger for #realestate and enjoy living a carefree life.","protected":false,"verified":false,"followers_count":678,"friends_count":40,"listed_count":439,"favourites_count":0,"statuses_count":70499,"created_at":"Thu Jul 30 03:50:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626600945518968832\/L85b1S7E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626600945518968832\/L85b1S7E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3301160221\/1438261503","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727010506649600,"quoted_status_id_str":"663727010506649600","quoted_status":{"created_at":"Mon Nov 09 14:37:05 +0000 2015","id":663727010506649600,"id_str":"663727010506649600","text":"Larry Silverstein on where NYC real estate: \u201cI\u2019ve been functioning here for about 60 years and I\u2019ve always been... https:\/\/t.co\/PHD1dQwArG","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2610763891,"id_str":"2610763891","name":"Dan Gotlieb","screen_name":"dangotlieb1","location":"Upper West Side, NYC","url":"http:\/\/digsrealtynyc.com","description":"Real estate attorney, broker, lover of cities and all things New York.","protected":false,"verified":false,"followers_count":29,"friends_count":24,"listed_count":0,"favourites_count":0,"statuses_count":103,"created_at":"Tue Jul 08 00:47:23 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514073493051154433\/3KN6aj6r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514073493051154433\/3KN6aj6r_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PHD1dQwArG","expanded_url":"http:\/\/fb.me\/Dp7GJ5SR","display_url":"fb.me\/Dp7GJ5SR","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EtONe3CA9t","expanded_url":"http:\/\/twitter.com\/dangotlieb1\/status\/663727010506649600","display_url":"twitter.com\/dangotlieb1\/st\u2026","indices":[3,26]},{"url":"https:\/\/t.co\/403A89cvxP","expanded_url":"http:\/\/fb.me\/Dp7GJ5SR","display_url":"fb.me\/Dp7GJ5SR","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770362880,"id_str":"663728181770362880","text":"RT @FiedzahIbrahim: #DeepavaliSeramShit https:\/\/t.co\/aLqTDdZw0O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":236747661,"id_str":"236747661","name":"Nazira","screen_name":"justzeera","location":"Manchester ","url":"http:\/\/Instagram.com\/nazirazman","description":"Life creates a beautiful lie, makes everyone afraid of death \u21e7 \u20aa \u00f8 lll \u00b7o.\u2191 Oh yeah I have thing with Shannon Leto Snapchat ; nazirazman","protected":false,"verified":false,"followers_count":320,"friends_count":272,"listed_count":3,"favourites_count":2190,"statuses_count":20731,"created_at":"Tue Jan 11 08:27:11 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605831167879684097\/Cs7-XsZK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605831167879684097\/Cs7-XsZK.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2E2925","profile_text_color":"FA2872","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661199070145458176\/-H8gMsMC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661199070145458176\/-H8gMsMC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236747661\/1446036819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:55 +0000 2015","id":663720425403252736,"id_str":"663720425403252736","text":"#DeepavaliSeramShit https:\/\/t.co\/aLqTDdZw0O","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962679655,"id_str":"962679655","name":"F","screen_name":"FiedzahIbrahim","location":"Ig: fiedzahibrahimm","url":null,"description":"Jaga-jaga pakwe anda, takut-takut jd pakwe gua. Untung jadi \u0645\u0644\u0627\u064a\u0648. bodo pun, orang puji.\n#MelayuAngkuh #MakweKeningBerdara","protected":false,"verified":false,"followers_count":1670,"friends_count":413,"listed_count":2,"favourites_count":8537,"statuses_count":31952,"created_at":"Wed Nov 21 16:20:07 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608188964428615680\/o56_oRiK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608188964428615680\/o56_oRiK.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661540318873980928\/VlEFHbWo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661540318873980928\/VlEFHbWo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962679655\/1447010503","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":17,"entities":{"hashtags":[{"text":"DeepavaliSeramShit","indices":[0,19]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720422253268993,"id_str":"663720422253268993","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","url":"https:\/\/t.co\/aLqTDdZw0O","display_url":"pic.twitter.com\/aLqTDdZw0O","expanded_url":"http:\/\/twitter.com\/FiedzahIbrahim\/status\/663720425403252736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720422253268993,"id_str":"663720422253268993","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","url":"https:\/\/t.co\/aLqTDdZw0O","display_url":"pic.twitter.com\/aLqTDdZw0O","expanded_url":"http:\/\/twitter.com\/FiedzahIbrahim\/status\/663720425403252736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DeepavaliSeramShit","indices":[20,39]}],"urls":[],"user_mentions":[{"screen_name":"FiedzahIbrahim","name":"F","id":962679655,"id_str":"962679655","indices":[3,18]}],"symbols":[],"media":[{"id":663720422253268993,"id_str":"663720422253268993","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","url":"https:\/\/t.co\/aLqTDdZw0O","display_url":"pic.twitter.com\/aLqTDdZw0O","expanded_url":"http:\/\/twitter.com\/FiedzahIbrahim\/status\/663720425403252736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663720425403252736,"source_status_id_str":"663720425403252736","source_user_id":962679655,"source_user_id_str":"962679655"}]},"extended_entities":{"media":[{"id":663720422253268993,"id_str":"663720422253268993","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCNR6UEAEK6pR.jpg","url":"https:\/\/t.co\/aLqTDdZw0O","display_url":"pic.twitter.com\/aLqTDdZw0O","expanded_url":"http:\/\/twitter.com\/FiedzahIbrahim\/status\/663720425403252736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663720425403252736,"source_status_id_str":"663720425403252736","source_user_id":962679655,"source_user_id_str":"962679655"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753483264,"id_str":"663728181753483264","text":"RT @FTMongolia: \u0410\u043c\u044c\u0434\u0440\u0430\u043b \u0430\u0439\u0445\u0442\u0430\u0440 \u0448\u04af\u04af\u043d\u044d \u0448\u04af\u04af ....\u041e\u0434\u043e\u043e \u044f\u043b\u0436 \u0431\u0433\u0430\u0430 \u043c\u044d\u0442 \u0445\u0430\u0440\u0430\u0433\u0434\u0430\u0432\u0447 \u044d\u0446\u044d\u0441\u0442 \u043d\u044c \u0447\u0438 \u044f\u043b\u0430\u0433\u0434\u0441\u0430\u043d \u0431\u0445 \u0432\u0438\u0439","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3196142191,"id_str":"3196142191","name":"Bvsgvi zaya","screen_name":"Maitsetseg25","location":"Mongolia","url":null,"description":"Hun olon ymguigeer baij chadna, gagtshuu busad hunguigeer baih argagui. L.B Minii yrtuntsud tavtai moril.","protected":false,"verified":false,"followers_count":1267,"friends_count":1759,"listed_count":2,"favourites_count":1771,"statuses_count":2690,"created_at":"Fri May 15 08:42:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634707298565230592\/uuPH6ClJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634707298565230592\/uuPH6ClJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196142191\/1438645494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 12:02:27 +0000 2015","id":662963319116984324,"id_str":"662963319116984324","text":"\u0410\u043c\u044c\u0434\u0440\u0430\u043b \u0430\u0439\u0445\u0442\u0430\u0440 \u0448\u04af\u04af\u043d\u044d \u0448\u04af\u04af ....\u041e\u0434\u043e\u043e \u044f\u043b\u0436 \u0431\u0433\u0430\u0430 \u043c\u044d\u0442 \u0445\u0430\u0440\u0430\u0433\u0434\u0430\u0432\u0447 \u044d\u0446\u044d\u0441\u0442 \u043d\u044c \u0447\u0438 \u044f\u043b\u0430\u0433\u0434\u0441\u0430\u043d \u0431\u0445 \u0432\u0438\u0439","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2362313492,"id_str":"2362313492","name":"\u041a\u043e\u043c\u043f\u043e\u043e\u0434\u0442\u043e\u0439 \u041a\u0435\u0440\u0435\u043d\u00ae","screen_name":"FTMongolia","location":"Mongolia","url":null,"description":"\u041a\u043e\u043c\u043f\u043e\u043e\u0434\u0442\u043e\u0439 \u0445\u04af\u043d \u0411\u0438\u043e\u0433\u043e\u043e\u0440 \u044f\u0430\u0445\u044b\u043d","protected":false,"verified":false,"followers_count":2596,"friends_count":2230,"listed_count":7,"favourites_count":29522,"statuses_count":35613,"created_at":"Wed Feb 26 07:39:28 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0CA1EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438586127541211137\/hUb2Ry2k.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438586127541211137\/hUb2Ry2k.jpeg","profile_background_tile":true,"profile_link_color":"1313D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657951134242357248\/U8CwcjpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657951134242357248\/U8CwcjpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2362313492\/1443732222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":34,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FTMongolia","name":"\u041a\u043e\u043c\u043f\u043e\u043e\u0434\u0442\u043e\u0439 \u041a\u0435\u0440\u0435\u043d\u00ae","id":2362313492,"id_str":"2362313492","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181774450688,"id_str":"663728181774450688","text":"RT @ALDUBPILIPINAS: Alden Richards\u2019 @aldenrichards02 fashion evolution #ExcitedForGMAChristmasStationID #ALDUBMissingRing\nhttps:\/\/t.co\/QnOC\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128172171,"id_str":"128172171","name":"simplyme","screen_name":"lynnebernardo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":51,"listed_count":1,"favourites_count":2082,"statuses_count":5569,"created_at":"Wed Mar 31 09:28:22 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658458363458514944\/JxaU5wZU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658458363458514944\/JxaU5wZU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128172171\/1446641310","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:52:44 +0000 2015","id":663715850386477056,"id_str":"663715850386477056","text":"Alden Richards\u2019 @aldenrichards02 fashion evolution #ExcitedForGMAChristmasStationID #ALDUBMissingRing\nhttps:\/\/t.co\/QnOCAmvyiu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130440619,"id_str":"3130440619","name":"ALDUB PHILIPPINES \u2122","screen_name":"ALDUBPILIPINAS","location":null,"url":null,"description":"WANT TO JOIN OUR FANS CLUB? REGISTER HERE: http:\/\/goo.gl\/forms\/f10zrhsArV","protected":false,"verified":false,"followers_count":418474,"friends_count":87,"listed_count":146,"favourites_count":19402,"statuses_count":63639,"created_at":"Thu Apr 02 12:52:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661517300202213376\/mkYySry5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661517300202213376\/mkYySry5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3130440619\/1446907123","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":285,"favorite_count":144,"entities":{"hashtags":[{"text":"ExcitedForGMAChristmasStationID","indices":[51,83]},{"text":"ALDUBMissingRing","indices":[84,101]}],"urls":[{"url":"https:\/\/t.co\/QnOCAmvyiu","expanded_url":"https:\/\/youtu.be\/mMWW7xncUyc","display_url":"youtu.be\/mMWW7xncUyc","indices":[102,125]}],"user_mentions":[{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ExcitedForGMAChristmasStationID","indices":[71,103]},{"text":"ALDUBMissingRing","indices":[104,121]}],"urls":[{"url":"https:\/\/t.co\/QnOCAmvyiu","expanded_url":"https:\/\/youtu.be\/mMWW7xncUyc","display_url":"youtu.be\/mMWW7xncUyc","indices":[122,140]}],"user_mentions":[{"screen_name":"ALDUBPILIPINAS","name":"ALDUB PHILIPPINES \u2122","id":3130440619,"id_str":"3130440619","indices":[3,18]},{"screen_name":"aldenrichards02","name":"Alden Richards","id":98310564,"id_str":"98310564","indices":[36,52]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104665"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181774385152,"id_str":"663728181774385152","text":"@QfYds \u3075\u308f \u547c\u3073\u308a\u3087\u30fc\u304b\u3044\u2606\u309b\n\u51db\u3063\u3066\u547c\u3076\u306d\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663481895015944193,"in_reply_to_status_id_str":"663481895015944193","in_reply_to_user_id":3191949739,"in_reply_to_user_id_str":"3191949739","in_reply_to_screen_name":"QfYds","user":{"id":3791553252,"id_str":"3791553252","name":"\u3075\u308f__ \u2766","screen_name":"sorawita1315__","location":"\u7121\u8a00\u3075\u3049\u308d\u306fno\u3075\u3049\u308d\u3070 ","url":"http:\/\/twpf.jp\/sorawita1315__","description":"\u30a2\u30eb\u30b9\u30de\u30b0\u30ca\u25b7\u25b7\u2661\u25c1\u25c1\u30d7\u30e9\u30f3\u30c1\u30e3\u30a4\u30e0 \u5c02\u7528\u57a2 \u798f\u4e95 \u3068 \u698a\u539f \u3068 \u6734 \u3092\u51c4\u304f\u3042\u3044\u3057\u3066\u307e\u3059\u2661 \u7a7a\u3092\u773a\u3081\u308b\u4e8b \u3068 \u3044\u3061\u3054\u307f\u308b\u304f \u304c\u5927\u597d\u304d\u7cfb\u5973\u5b50","protected":false,"verified":false,"followers_count":40,"friends_count":42,"listed_count":2,"favourites_count":12,"statuses_count":115,"created_at":"Mon Oct 05 11:31:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662401559402119168\/vLu6BpiM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662401559402119168\/vLu6BpiM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3791553252\/1446730388","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"QfYds","name":"\u51db\u82b1","id":3191949739,"id_str":"3191949739","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104665"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770219520,"id_str":"663728181770219520","text":"RT @TheKingProphecy: Good lucc locc https:\/\/t.co\/91dSD9pq7k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557401596,"id_str":"557401596","name":"Nefelibata","screen_name":"Just_Naiya","location":"in my feelings","url":null,"description":"Don't sleep on me. #DopeCulture #SHBP","protected":false,"verified":false,"followers_count":2759,"friends_count":1803,"listed_count":19,"favourites_count":52130,"statuses_count":87103,"created_at":"Wed Apr 18 23:53:45 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"27251A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631629956\/ecsk1w7h8qhhn32tz2hy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631629956\/ecsk1w7h8qhhn32tz2hy.jpeg","profile_background_tile":true,"profile_link_color":"19E8C6","profile_sidebar_border_color":"89B5A2","profile_sidebar_fill_color":"24210E","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662170763265507328\/W98xDbAN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662170763265507328\/W98xDbAN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557401596\/1447030165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728108797693952,"id_str":"663728108797693952","text":"Good lucc locc https:\/\/t.co\/91dSD9pq7k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333594914,"id_str":"333594914","name":"Sensei 11\/26 \u3123\u20d2","screen_name":"TheKingProphecy","location":null,"url":"http:\/\/sensei3moons.tumblr.com","description":"Sensei 3 Moons\u2122 Triple9 Tha Clan \u26a1\ufe0f Single \u262e [Bombay Papi] (Writer\/Rapper)","protected":false,"verified":false,"followers_count":951,"friends_count":571,"listed_count":4,"favourites_count":8537,"statuses_count":31810,"created_at":"Mon Jul 11 19:45:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632744479\/wuz9yv7ih9szdrn1hya3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632744479\/wuz9yv7ih9szdrn1hya3.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663133218032349184\/iphfK0zJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663133218032349184\/iphfK0zJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/333594914\/1446745310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727878731726848,"quoted_status_id_str":"663727878731726848","quoted_status":{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727878731726848,"id_str":"663727878731726848","text":"I haaaaaaate court","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":557401596,"id_str":"557401596","name":"Nefelibata","screen_name":"Just_Naiya","location":"in my feelings","url":null,"description":"Don't sleep on me. #DopeCulture #SHBP","protected":false,"verified":false,"followers_count":2759,"friends_count":1803,"listed_count":19,"favourites_count":52130,"statuses_count":87102,"created_at":"Wed Apr 18 23:53:45 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"27251A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631629956\/ecsk1w7h8qhhn32tz2hy.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631629956\/ecsk1w7h8qhhn32tz2hy.jpeg","profile_background_tile":true,"profile_link_color":"19E8C6","profile_sidebar_border_color":"89B5A2","profile_sidebar_fill_color":"24210E","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662170763265507328\/W98xDbAN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662170763265507328\/W98xDbAN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/557401596\/1447030165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/91dSD9pq7k","expanded_url":"https:\/\/twitter.com\/just_naiya\/status\/663727878731726848","display_url":"twitter.com\/just_naiya\/sta\u2026","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/91dSD9pq7k","expanded_url":"https:\/\/twitter.com\/just_naiya\/status\/663727878731726848","display_url":"twitter.com\/just_naiya\/sta\u2026","indices":[37,60]}],"user_mentions":[{"screen_name":"TheKingProphecy","name":"Sensei 11\/26 \u3123\u20d2","id":333594914,"id_str":"333594914","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745029120,"id_str":"663728181745029120","text":"\uc0bc\ucd0c \ub3c4\ub9dd\uac00\uc0c8\uc624 @\uc0bc\ucd0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2690495263,"id_str":"2690495263","name":"[FR] M.H.L.R. PETIT","screen_name":"Riley_PETIT","location":"07.30. 14 || FUB Free","url":"http:\/\/rileyp.egloos.com\/9341195","description":"\ub108\ub294 \ub298 \ub098\uc911\uc744 \ud53c\ud558\ub824 \ud574, \ub098\uc911\uc5d0\ub294 \ub0b4\uac00 \uc5c6\uc744 \uac83\ucc98\ub7fc.","protected":false,"verified":false,"followers_count":166,"friends_count":242,"listed_count":11,"favourites_count":65058,"statuses_count":47040,"created_at":"Tue Jul 29 16:16:39 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658629383951806465\/QuMV-PEB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658629383951806465\/QuMV-PEB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2690495263\/1406651785","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745197056,"id_str":"663728181745197056","text":"@Xlibris1 @GuidoFawkes it won't be missed Davis has made it a personal vanity project which has alienated traditional viewers.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724952919662592,"in_reply_to_status_id_str":"663724952919662592","in_reply_to_user_id":1246164433,"in_reply_to_user_id_str":"1246164433","in_reply_to_screen_name":"Xlibris1","user":{"id":817655054,"id_str":"817655054","name":"Stephen O'Reilly","screen_name":"SteveOReilly12","location":"Somewhere","url":null,"description":"Grumpy middle aged man. My thoughts, surprisingly, are my own.","protected":false,"verified":false,"followers_count":191,"friends_count":524,"listed_count":2,"favourites_count":80,"statuses_count":2846,"created_at":"Tue Sep 11 15:38:04 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656898139136401408\/QZFkcrhW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656898139136401408\/QZFkcrhW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Xlibris1","name":"Xlibris1","id":1246164433,"id_str":"1246164433","indices":[0,9]},{"screen_name":"GuidoFawkes","name":"Guido Fawkes","id":465973,"id_str":"465973","indices":[10,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181766066182,"id_str":"663728181766066182","text":"\u6850\u539f\u80e1\u591c\u3068\u540d\u4e57\u3063\u3066\u3044\u307e\u3059\u304c\u3001\u5b9f\u306f\u3053\u306eHN\u3092\u4f7f\u3044\u59cb\u3081\u3066\u3082\u30465\u5e74\u7d4c\u3061\u307e\u3059\u3002\u3061\u306a\u307f\u306b\u672c\u540d\u3068\u306f\u4e00\u30df\u30ea\u3082\u304b\u3059\u3063\u3066\u306a\u3044\u3067\u3059\u3002HN\u306f\u4e00\u56de\u5909\u3048\u3066\u3066\u524d\u306f\u5239\u90a3\u3063\u3066\u540d\u4e57\u3063\u3066\u307e\u3057\u305f\u3002\u3069\u3061\u3089\u306e\u540d\u7fa9\u3067\u3082\u30b5\u30a4\u30c8\u7acb\u3061\u4e0a\u3052\u3066\u307e\u3057\u305f\u304c\u3001\u6614\u306e\u8a71\u3067\u3059\u3002\u3061\u306a\u307f\u306b\u30b8\u30e3\u30f3\u30eb\u306f\u5fa9\u6d3b\u3067\u3059(\u9707\u3048\u58f0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720756904267776,"in_reply_to_status_id_str":"663720756904267776","in_reply_to_user_id":272897599,"in_reply_to_user_id_str":"272897599","in_reply_to_screen_name":"getsurin_546","user":{"id":272897599,"id_str":"272897599","name":"\u3053\u3088\u308b\u306f\u3082\u3046\u30c0\u30e1\u3067\u3059\u3002","screen_name":"getsurin_546","location":null,"url":"http:\/\/twpf.jp\/getsurin_546","description":"\u6210\u4eba\u6e08 fine\u63a8\u3057\/\u82f1\u656c\u82f1 \u9632\u885b\u90e8\u306f\u751f\u304d\u308b\u7ce7(\u6709\u8349\/\u7159\u8349)\u3048\u3063\u3061\u306a\u57a2@ura_getsurin546","protected":false,"verified":false,"followers_count":76,"friends_count":74,"listed_count":0,"favourites_count":826,"statuses_count":15178,"created_at":"Sun Mar 27 11:53:49 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578748423702089731\/pW4xVhMY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578748423702089731\/pW4xVhMY_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272897599\/1445782789","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104663"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181761806337,"id_str":"663728181761806337","text":"\u09b8\u09ac\u0995\u09bf\u099b\u09c1\u09b0\u0987 \u098f\u0995\u099f\u09be \u09ad\u09be\u09b2 \u09a6\u09bf\u0995 \u0986\u09b0 \u0986\u09b0\u09c7\u0995\u099f\u09be \u0996\u09be\u09b0\u09be\u09aa \u09a6\u09bf\u0995 \u0986\u099b\u09c7..\n\u0995\u09bf\u09a8\u09cd\u09a4\u09c1 \u0986\u09ae\u09bf \u0986\u09ae\u09be\u09b0 \u0995\u09be\u099c\u09c7\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u09b8\u09ac\u09b8\u09ae\u09af\u09bc\u0987 \u09ad\u09be\u09b2 \u09a6\u09bf\u0995\u09c7\u09b0 \u099a\u09c7\u09af\u09bc\u09c7 \u0996\u09be\u09b0\u09be\u09aa \u09a6\u09bf\u0995\u099f\u09be\u0987 \u09ac\u09c7\u09b6\u09bf \u0996\u09c1\u0981\u099c\u09c7 \u09aa\u09be\u0987!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2613221338,"id_str":"2613221338","name":"\u2192||\u09ad\u09be\u09ac\u09ac\u09bf\u09b2\u09be\u09b8\u09c0||\u2190","screen_name":"iamAtik94","location":"\u09aa\u09a5 \u09b9\u09be\u09b0\u09be \u09aa\u09a5\u09bf\u0995","url":null,"description":"\u09b8\u09c1\u0996\u09c0 \u09b9\u09a4\u09c7 \u099a\u09be\u0987\u09b2\u09c7 \u0986\u09ae\u09be\u09a6\u09c7\u09b0 \u0989\u099a\u09bf\u09a4 '\u0986\u09ae\u09bf \u0995\u09c0\n\u09a6\u09bf\u09a4\u09c7 \u09aa\u09be\u09b0\u09bf' \u098f\u0987 \u099a\u09bf\u09a8\u09cd\u09a4\u09be \u0995\u09b0\u09be\u0964 '\u0986\u09ae\u09bf \u0995\u09c0 \u09aa\u09c7\u09a4\u09c7\n\u09aa\u09be\u09b0\u09bf' \u09ac\u09be '\u0986\u09ae\u09bf \u0995\u09c0 \u09aa\u09c7\u09b2\u09be\u09ae' \u098f\u0987 \u099a\u09bf\u09a8\u09cd\u09a4\u09be\u0997\u09c1\u09b2\u09cb\n\u0995\u0996\u09a8\u09cb \u0995\u09be\u0989\u0995\u09c7 \u09b8\u09c1\u0996 \u09a6\u09bf\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7\u09a8\u09bf\u0964","protected":false,"verified":false,"followers_count":1047,"friends_count":92,"listed_count":6,"favourites_count":446,"statuses_count":12536,"created_at":"Mon Jun 16 04:39:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652324448566050816\/RIu1NqDP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652324448566050816\/RIu1NqDP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2613221338\/1444143909","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bn","timestamp_ms":"1447080104662"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181766131712,"id_str":"663728181766131712","text":"I'm blowing up like bitches we went to school with","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142825548,"id_str":"142825548","name":"D.","screen_name":"Keonnaaaa_","location":"poppin","url":null,"description":"you do what you want when you poppin","protected":false,"verified":false,"followers_count":1092,"friends_count":687,"listed_count":2,"favourites_count":2062,"statuses_count":25992,"created_at":"Tue May 11 21:36:57 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609069687943495681\/L-bMm531.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609069687943495681\/L-bMm531.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"4D3A47","profile_text_color":"92C2A5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655788098887000064\/9ScLFTsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655788098887000064\/9ScLFTsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142825548\/1446594333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104663"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181757677568,"id_str":"663728181757677568","text":"RT @yoonmindotcom: @vweemin Coz cheryl is one of mah fave \ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2776433144,"id_str":"2776433144","name":"\u02da\u2727\u02da\u314c\u02da\u2727\u02da","screen_name":"vweemin","location":"\u2661sunshine line\uc758 \uc9d1","url":"http:\/\/www.vweemin.tumblr.com","description":"\u2727\u02da \uff65*ultimate garbage for vminhope (\u25d5\u203f\u25d5)*\uff65 \u02da\u2727","protected":false,"verified":false,"followers_count":4623,"friends_count":186,"listed_count":12,"favourites_count":13293,"statuses_count":57374,"created_at":"Thu Aug 28 13:22:07 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"D698FE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635056769937502210\/BGWqGjie.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635056769937502210\/BGWqGjie.jpg","profile_background_tile":true,"profile_link_color":"D698FE","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649809292032274433\/ND3xstX6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649809292032274433\/ND3xstX6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2776433144\/1441727183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:23 +0000 2015","id":663727337670774785,"id_str":"663727337670774785","text":"@vweemin Coz cheryl is one of mah fave \ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2776433144,"in_reply_to_user_id_str":"2776433144","in_reply_to_screen_name":"vweemin","user":{"id":2761995206,"id_str":"2761995206","name":"\u2661\uc2a4\ud2f0\uce58\u2661","screen_name":"yoonmindotcom","location":null,"url":null,"description":"YOONMIN - SOURCE OF ENERGY #\uc288\uce68\ub370\uc77c\ub9ac~! AILUROPHILE","protected":false,"verified":false,"followers_count":1785,"friends_count":497,"listed_count":8,"favourites_count":6648,"statuses_count":20982,"created_at":"Sun Aug 24 10:24:24 +0000 2014","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1EA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571253983453274112\/GrkSuzyF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571253983453274112\/GrkSuzyF.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658925399317975040\/MQeVBtC6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658925399317975040\/MQeVBtC6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2761995206\/1443765195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vweemin","name":"\u02da\u2727\u02da\u314c\u02da\u2727\u02da","id":2776433144,"id_str":"2776433144","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yoonmindotcom","name":"\u2661\uc2a4\ud2f0\uce58\u2661","id":2761995206,"id_str":"2761995206","indices":[3,17]},{"screen_name":"vweemin","name":"\u02da\u2727\u02da\u314c\u02da\u2727\u02da","id":2776433144,"id_str":"2776433144","indices":[19,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104661"} +{"delete":{"status":{"id":519244693385650177,"id_str":"519244693385650177","user_id":2602332828,"user_id_str":"2602332828"},"timestamp_ms":"1447080104772"}} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181761806336,"id_str":"663728181761806336","text":"RT @losingxhopes: My brain:\n\n5% - names\n3% - phone numbers\n2% - stuff I should know for school\n90% - song lyrics","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883014018,"id_str":"2883014018","name":"\u273f.","screen_name":"wannmahirah","location":null,"url":null,"description":"XIV","protected":false,"verified":false,"followers_count":81,"friends_count":48,"listed_count":0,"favourites_count":366,"statuses_count":6456,"created_at":"Thu Oct 30 07:03:17 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"msa","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657557662570143750\/mk-N1Cj6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657557662570143750\/mk-N1Cj6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883014018\/1445608934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:14:20 +0000 2015","id":663721286045044736,"id_str":"663721286045044736","text":"My brain:\n\n5% - names\n3% - phone numbers\n2% - stuff I should know for school\n90% - song lyrics","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2271168349,"id_str":"2271168349","name":"\u2639","screen_name":"losingxhopes","location":null,"url":"http:\/\/instagram.com\/soulsdarkness","description":"I can't unlove you","protected":false,"verified":false,"followers_count":36348,"friends_count":2461,"listed_count":66,"favourites_count":406,"statuses_count":15949,"created_at":"Wed Jan 01 04:36:28 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271168349\/1446903061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":181,"favorite_count":53,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"losingxhopes","name":"\u2639","id":2271168349,"id_str":"2271168349","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104662"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753618432,"id_str":"663728181753618432","text":"@Pan_de_Quesoo @JPanesso25 @lisamariapinto las amo infinito a todas \u2665 mis \u00f1e\u00f1es.. y la flaca tiene que venir a visitarnos YA!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720775610970112,"in_reply_to_status_id_str":"663720775610970112","in_reply_to_user_id":411814598,"in_reply_to_user_id_str":"411814598","in_reply_to_screen_name":"Pan_de_Quesoo","user":{"id":104857822,"id_str":"104857822","name":"Laura Murillo ","screen_name":"LauMc93","location":"Bogot\u00e1, Colombia","url":null,"description":"Mis frases, mis pensamientos, mis locuras, mis canciones, mis libros, mis reflexiones haci\u00e9ndose un poco p\u00fablicas un poco regaladas y vulgares..","protected":false,"verified":false,"followers_count":221,"friends_count":403,"listed_count":3,"favourites_count":257,"statuses_count":2564,"created_at":"Thu Jan 14 16:28:15 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"09F333","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000019930756\/497e15e4cc437c7f8ac00b9688e30c70.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000019930756\/497e15e4cc437c7f8ac00b9688e30c70.jpeg","profile_background_tile":true,"profile_link_color":"FF6666","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D2F509","profile_text_color":"ED0B5B","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619356385936060416\/QJJt4Jh3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619356385936060416\/QJJt4Jh3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104857822\/1440564012","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pan_de_Quesoo","name":"\u00c1ngeles Panesso","id":411814598,"id_str":"411814598","indices":[0,14]},{"screen_name":"JPanesso25","name":"JulianaPanesso25","id":545220560,"id_str":"545220560","indices":[15,26]},{"screen_name":"lisamariapinto","name":"Lisa Mar\u00eda ","id":547029431,"id_str":"547029431","indices":[27,42]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753413632,"id_str":"663728181753413632","text":"@NobbyMM @b_h8s \u3044\u304f\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727279827107840,"in_reply_to_status_id_str":"663727279827107840","in_reply_to_user_id":615156814,"in_reply_to_user_id_str":"615156814","in_reply_to_screen_name":"NobbyMM","user":{"id":1030394744,"id_str":"1030394744","name":"\u3086\u30fc\u3059\u3051","screen_name":"19935107","location":null,"url":null,"description":"\u5927\u5b66\u3067\u30d0\u30c9\u30df\u30f3\u30c8\u30f3\u3057\u3066\u307e\u30fc\u3059\u3002\u5f15\u9000\u3057\u307e\u3057\u305f\uff01\u77e5\u3063\u3066\u308b\u4eba\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(\uffe3\u25bd\uffe3)","protected":false,"verified":false,"followers_count":199,"friends_count":242,"listed_count":0,"favourites_count":203,"statuses_count":13032,"created_at":"Sun Dec 23 11:30:26 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652888001895268352\/BB3dRMzz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652888001895268352\/BB3dRMzz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030394744\/1444374063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NobbyMM","name":"\u5ca9\u6cc9\u4f38\u9686","id":615156814,"id_str":"615156814","indices":[0,8]},{"screen_name":"b_h8s","name":"\u5ba4\u5ca1\u5927\u6676","id":1356139964,"id_str":"1356139964","indices":[9,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745090561,"id_str":"663728181745090561","text":"I posted a new photo to Facebook https:\/\/t.co\/5riDXeORak","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496599551,"id_str":"496599551","name":"DomeTheStar8FC","screen_name":"DomeTheStar8FC","location":null,"url":"https:\/\/www.facebook.com\/domethestar8","description":"This is the official Dome The Star8 FC twitter.","protected":false,"verified":false,"followers_count":2093,"friends_count":12,"listed_count":3,"favourites_count":0,"statuses_count":5506,"created_at":"Sun Feb 19 03:49:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4D474D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438493941\/domee.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438493941\/domee.png","profile_background_tile":true,"profile_link_color":"47B6DE","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1864508263\/dome_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1864508263\/dome_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5riDXeORak","expanded_url":"http:\/\/fb.me\/2z6tHVHoO","display_url":"fb.me\/2z6tHVHoO","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181749288960,"id_str":"663728181749288960","text":"@lokayaa \u0db4\u0dc0\u0dd4\u0dbd\u0dd9 \u0d9a\u0dd2\u0dc0\u0dca\u0dc0\u0dd9, \u0db4\u0dbb\u0db8\u0dca\u0db4\u0dbb\u0dcf\u0dc0\u0dd9?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728019723317248,"in_reply_to_status_id_str":"663728019723317248","in_reply_to_user_id":3557838799,"in_reply_to_user_id_str":"3557838799","in_reply_to_screen_name":"lokayaa","user":{"id":2972642408,"id_str":"2972642408","name":"-V\u00a1Du\u00aea-","screen_name":"ViduraSBP","location":"Kandy, Sri Lanka","url":null,"description":"Love music|classical guitaring|P6|Cm3|Traveling|4tgrphy|thinker|19|Rajan","protected":false,"verified":false,"followers_count":152,"friends_count":131,"listed_count":2,"favourites_count":5767,"statuses_count":2375,"created_at":"Sat Jan 10 17:47:34 +0000 2015","utc_offset":19800,"time_zone":"Sri Jayawardenepura","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663290885715574784\/AcB8pLw5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663290885715574784\/AcB8pLw5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2972642408\/1446026647","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lokayaa","name":"semi colon ;-)","id":3557838799,"id_str":"3557838799","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"si","timestamp_ms":"1447080104659"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181740875776,"id_str":"663728181740875776","text":"@imznoh \u0644\u0627 \u0628\u0639\u062f \u0645\u0646 \u0631\u0627\u062f\ud83d\ude10\u061f","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663560358389350400,"in_reply_to_status_id_str":"663560358389350400","in_reply_to_user_id":2291270738,"in_reply_to_user_id_str":"2291270738","in_reply_to_screen_name":"imznoh","user":{"id":907422932,"id_str":"907422932","name":"\u0641\u0627\u0637\u0645\u0647\u0627\u0644\u0646\u0642\u0628\u064a","screen_name":"FATIIMAH_ALNQBI","location":"\u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a | \u062e\u0648\u0631\u0641\u0643\u0651\u0627\u0646 ","url":"http:\/\/ask.fm\/FATIIMAH_ALNQBI","description":"\u0623\u0633\u0639\u062f\u0648\u0646\u064a \u0627\u0644\u0644\u0647 \u064a\u0633\u0639\u062f\u0643\u0645 #\u0641\u0627\u062a\u064a\u0645\u0627\u0647_\u0627\u0646\u062a\u064a","protected":false,"verified":false,"followers_count":2899,"friends_count":2762,"listed_count":3,"favourites_count":576,"statuses_count":47051,"created_at":"Sat Oct 27 05:20:06 +0000 2012","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660399827130413056\/Pl7VWChP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660399827130413056\/Pl7VWChP.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651739823787671552\/zBezkHmg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651739823787671552\/zBezkHmg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/907422932\/1440793806","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"imznoh","name":"Mznh","id":2291270738,"id_str":"2291270738","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080104657"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181757669376,"id_str":"663728181757669376","text":"You are chosen to play the role of a highly skilled diplomat t... More for Capricorn https:\/\/t.co\/sPGC89LINO","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":879438864,"id_str":"879438864","name":"\u2728\u2728\u2728\u2728","screen_name":"29Barbiebabee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":219,"friends_count":356,"listed_count":0,"favourites_count":178,"statuses_count":2994,"created_at":"Sun Oct 14 06:01:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559155680889020416\/qn27loMM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559155680889020416\/qn27loMM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/879438864\/1406658332","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sPGC89LINO","expanded_url":"http:\/\/bit.ly\/A5KmeJ","display_url":"bit.ly\/A5KmeJ","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104661"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753462784,"id_str":"663728181753462784","text":"\ubb54 \ub188\uc758 \ub9c8\ub9c8\ub294 \ub610 \ud574\uc2dc\ud0dc\uadf8\ud22c\ud45c\uc784 #2015MAMA \uac8c\ub2e4\uac00 5\uc904 \uc774\uc0c1? \ub3c4\ub790 #INFINITE \ubc37\ubc37\u3142\uac1c\ubc37\u3131\ubc30\u315b\uc5b4\ubc43\uac78 #BAD \uc0c1 \ubc1b\uc544\ub77c #\uc778\ud53c\ub2c8\ud2b8 \ub9c8\ub9c8\uc57c \uc0c1\uc918\ub77c \uc591\uc2ec\uc801\uc73c\ub85c \uc6b0\ub9ac \uc774\ubc88 \ud65c\ub3d9 \ub808\uc54c \uc9c4\uc2ec \uc918\uc57c\ub428\u3147\u3147 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1687422720,"id_str":"1687422720","name":"\ub108\ub9cc\ubcfc\uaed8","screen_name":"yyysk1004","location":"7\uba85\uc758 \ubc1c\uae38\uc774 \ub2ff\ub294 \uadf8 \uacf3","url":null,"description":"[ INFINITE ] \uac00\uc7a5 \uc911\uc694\ud55c\uac70\ub294 \uc81c\uac00 \uafc8\uc744 \uc774\ub8ec\uac70, \ubb50 \ud22c\uc5b4\ub3c4 \ud558\uace0 \uc774\ub7f0 \uac83\ub3c4 \uac00\uc7a5 \uc911\uc694\ud558\uc9c0\ub9cc \uc81c \uc778\uc0dd\uc5d0\uc11c \uac00\uc7a5 \uc911\uc694\ud588\ub358 \uac70\ub294 \uc5ec\ub7ec\ubd84\ub4e4\uc744 \ub9cc\ub0ac\ub358 \uc2dc\uac04\uc774 \uc544\ub2d0\uae4c \uc2f6\uc5b4\uc694.\n\n(\ub0a8\uc6b0\ud604, V\uc571 INFINITE SHOW)","protected":false,"verified":false,"followers_count":68,"friends_count":674,"listed_count":0,"favourites_count":10429,"statuses_count":15040,"created_at":"Wed Aug 21 04:57:42 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF8040","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633179096785092608\/Lif0FCeY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633179096785092608\/Lif0FCeY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1687422720\/1438615823","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[20,29]},{"text":"INFINITE","indices":[46,55]},{"text":"BAD","indices":[69,73]},{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[80,85]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[121,130]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770260480,"id_str":"663728181770260480","text":"@reonnu82929 \u308c\u304a\u304f\u3093\u3066\u306a\u3093\u304b\u982d\u826f\u3055\u305d\u3046\u306a\u611f\u3058\u3042\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728058877149184,"in_reply_to_status_id_str":"663728058877149184","in_reply_to_user_id":2877867457,"in_reply_to_user_id_str":"2877867457","in_reply_to_screen_name":"reonnu82929","user":{"id":2594636802,"id_str":"2594636802","name":"\u30ea\u30a2\u53cb\u306b\u57a2\u30d0\u30ec\u30de\u30f3","screen_name":"iry_lk","location":"\u6cc9\u5357\u30a4\u30aa\u30f3","url":null,"description":"\u5b8c\u5168\u306b\u30bd\u30b7\u30e3\u30b2\u306b\u6bd2\u3055\u308c\u305f\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u3053\u3061\u3089\u3067\u3059 \u30a2\u30a4\u30b3\u30f3 @kakakanokaminar","protected":false,"verified":false,"followers_count":1405,"friends_count":868,"listed_count":24,"favourites_count":13667,"statuses_count":17213,"created_at":"Sun Jun 29 11:27:30 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655998811886653440\/E1enHASh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655998811886653440\/E1enHASh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2594636802\/1446477276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"reonnu82929","name":"\u308c\u304a","id":2877867457,"id_str":"2877867457","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745053696,"id_str":"663728181745053696","text":"@kitatasoLoV \u4ed6\u3082\u898b\u3068\u3051\u3088(\u2182\u20d9\u20d9\u20da_\u2182\u20d9\u20d9\u20da)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727868455682048,"in_reply_to_status_id_str":"663727868455682048","in_reply_to_user_id":454869961,"in_reply_to_user_id_str":"454869961","in_reply_to_screen_name":"kitatasoLoV","user":{"id":560847833,"id_str":"560847833","name":"\u306a\u3059\u3073\u2729","screen_name":"10oxo04","location":null,"url":null,"description":"\u3044\u3064\u3067\u3082\u3069\u3053\u3067\u3082\u9ad8\u57ce\u308c\u306b\u3002","protected":false,"verified":false,"followers_count":600,"friends_count":338,"listed_count":23,"favourites_count":12844,"statuses_count":27354,"created_at":"Mon Apr 23 05:21:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"7D0DBA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639447081581543424\/nP8jkxhp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639447081581543424\/nP8jkxhp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560847833\/1417442697","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kitatasoLoV","name":"\u300e\u304d\u305f\u305f\u305dChan\u300f","id":454869961,"id_str":"454869961","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181749415936,"id_str":"663728181749415936","text":"LADY GAGA ONLINE???\nhttps:\/\/t.co\/Ba8UhTpCfy\nhttps:\/\/t.co\/lbArVFj7BL\nhttps:\/\/t.co\/Ba8UhTpCfy\nhttps:\/\/t.co\/dHFuJAwxHV","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":459772286,"id_str":"459772286","name":"CyrusSecret \u2663","screen_name":"CyrusxSecret","location":"Brazil","url":"http:\/\/www.flogvip.net\/thedirection\/","description":"Please don't tell my secret. Can I hold your mouth with a kiss?","protected":false,"verified":false,"followers_count":2528,"friends_count":3680,"listed_count":0,"favourites_count":0,"statuses_count":22900,"created_at":"Tue Jan 10 01:31:41 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F1F1F1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/401149199\/tumblr_lorhwp8C3i1qjqzly.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/401149199\/tumblr_lorhwp8C3i1qjqzly.jpg","profile_background_tile":true,"profile_link_color":"A065B8","profile_sidebar_border_color":"F7F7F7","profile_sidebar_fill_color":"F7F7F7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1744853223\/tumblr_lo5c8guKHE1qmtczjo1_500_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1744853223\/tumblr_lo5c8guKHE1qmtczjo1_500_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Ba8UhTpCfy","expanded_url":"http:\/\/meadd.com\/gagafull\/jh","display_url":"meadd.com\/gagafull\/jh","indices":[20,43]},{"url":"https:\/\/t.co\/lbArVFj7BL","expanded_url":"http:\/\/meadd.com\/gagafull\/","display_url":"meadd.com\/gagafull\/","indices":[44,67]},{"url":"https:\/\/t.co\/Ba8UhTpCfy","expanded_url":"http:\/\/meadd.com\/gagafull\/jh","display_url":"meadd.com\/gagafull\/jh","indices":[68,91]},{"url":"https:\/\/t.co\/dHFuJAwxHV","expanded_url":"http:\/\/meadd.com\/gagafull\/hhghg","display_url":"meadd.com\/gagafull\/hhghg","indices":[92,115]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104659"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181749354496,"id_str":"663728181749354496","text":"gggggggggg #CantateOtra Maxi Espindola y Agus Bernasconi https:\/\/t.co\/UsZ3frcdkV \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 #FansAwards2015 v\u00eda @FansEnVivo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389503911,"id_str":"3389503911","name":"LaBandaDeBernasconi","screen_name":"labandadebernas","location":null,"url":null,"description":"proudofagustin \/ httpagustinb \/ withagusb \/ alwaysagusb \/ agusftIdragons","protected":false,"verified":false,"followers_count":93,"friends_count":100,"listed_count":0,"favourites_count":41,"statuses_count":1689,"created_at":"Thu Jul 23 17:18:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634444588439207938\/DSWPRwRe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634444588439207938\/DSWPRwRe.jpg","profile_background_tile":false,"profile_link_color":"050505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624272829647876097\/AFNBdF4X_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624272829647876097\/AFNBdF4X_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389503911\/1438115661","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CantateOtra","indices":[12,24]},{"text":"FansAwards2015","indices":[98,113]}],"urls":[{"url":"https:\/\/t.co\/UsZ3frcdkV","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-cantateotra-maxi-espindola-y-agus-bernasconi","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[58,81]}],"user_mentions":[{"screen_name":"FansEnVivo","name":"Fans En Vivo","id":246294511,"id_str":"246294511","indices":[118,129]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080104659"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181774430208,"id_str":"663728181774430208","text":"@yasiroakinna \u305c\u3072\u3001\u543e\u8f29\u306b\u3082\u304a\u524d\u306e\u300c\u304a\u306f\u300d\u3063\u3066\u306e\u300d\u3092\u62dd\u307e\u305b\u3066\u300d\u306f\u98df\u3079\u3089\u308c\u306a\u3044\u305e\u3002\u5f8c(\u306e\u3061)\u300d\u3092\u62dd\u307e\u305b\u3066\u304f\u308c\u3047\uff5e","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726010328723456,"in_reply_to_status_id_str":"663726010328723456","in_reply_to_user_id":2906524086,"in_reply_to_user_id_str":"2906524086","in_reply_to_screen_name":"yasiroakinna","user":{"id":2864210961,"id_str":"2864210961","name":"\u5f8c(\u306e\u3061)","screen_name":"yaya_gusiken","location":null,"url":null,"description":"\u3082\u3048\u308b\u30ae\u30bf\u30fc\u30bd\u30ed","protected":false,"verified":false,"followers_count":12,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":169988,"created_at":"Thu Nov 06 18:42:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530430259205009409\/lgVmBzol_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530430259205009409\/lgVmBzol_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2864210961\/1415300724","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yasiroakinna","name":"\u304a\u306f\u306b\u3084\u307e","id":2906524086,"id_str":"2906524086","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104665"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181766057985,"id_str":"663728181766057985","text":"@s2_yongr2 \uc6c5 \uc0ac\ub791\ud574\uc6a4~\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728129106534402,"in_reply_to_status_id_str":"663728129106534402","in_reply_to_user_id":3314566135,"in_reply_to_user_id_str":"3314566135","in_reply_to_screen_name":"s2_yongr2","user":{"id":474798499,"id_str":"474798499","name":"\ub450\ubbf8\ub2c8","screen_name":"DUMIN_1016","location":"\ube44\uc2a4\ud2b8\uc606","url":null,"description":null,"protected":false,"verified":false,"followers_count":71,"friends_count":90,"listed_count":0,"favourites_count":17,"statuses_count":4508,"created_at":"Thu Jan 26 10:52:32 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662605999992254465\/x30utsMT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662605999992254465\/x30utsMT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474798499\/1447058924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"s2_yongr2","name":"\uc6a9\uc54c\uc774","id":3314566135,"id_str":"3314566135","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080104663"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181740900352,"id_str":"663728181740900352","text":"\"No its not.\" \n\n\"Stop youre making me blush dude.\" \n\nJUSTIN AWH AHAHAHAH \n\n https:\/\/t.co\/Rm6ZXIJRtU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2332777574,"id_str":"2332777574","name":"fangirl","screen_name":"AlexieMarcela","location":null,"url":null,"description":"believe in something bigger than yourself and find your purpose | #PURPOSE #NOV13 |","protected":false,"verified":false,"followers_count":1222,"friends_count":715,"listed_count":5,"favourites_count":20289,"statuses_count":23673,"created_at":"Sat Feb 08 03:20:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662472332087169024\/62WP1f2A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662472332087169024\/62WP1f2A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2332777574\/1446780686","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Rm6ZXIJRtU","expanded_url":"https:\/\/m.youtube.com\/watch?feature=youtu.be&v=IAb0xXPB4FY","display_url":"m.youtube.com\/watch?feature=\u2026","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104657"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753548800,"id_str":"663728181753548800","text":"RT @rihanna: Young ladies, love yourself! Your skin, your booty, your hair... You're all beautiful! Keep your hearts pure! Love and laugh, \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1561594962,"id_str":"1561594962","name":"\u0137rislyn","screen_name":"starIet","location":"IG: krisly.n |\u01dd\u0279\u01dd\u0265 s\u0250\u028d \u0279\u01dd\u0254u\u01ddds","url":"http:\/\/www.smosh.com\/smosh-pit\/articles\/girl-took-her-senior-picture-holding-picture-kyle-massey","description":"latina often mistaken for gringa","protected":false,"verified":false,"followers_count":460,"friends_count":102,"listed_count":14,"favourites_count":38391,"statuses_count":6551,"created_at":"Mon Jul 01 22:33:26 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DFE2E3","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"CA97DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658316662249279489\/rzQlSbaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658316662249279489\/rzQlSbaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1561594962\/1443301284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jan 07 23:31:07 +0000 2011","id":23522045434273792,"id_str":"23522045434273792","text":"Young ladies, love yourself! Your skin, your booty, your hair... You're all beautiful! Keep your hearts pure! Love and laugh, and live life","source":"\u003ca href=\"http:\/\/www.ubertwitter.com\/bb\/download.php\" rel=\"nofollow\"\u003e\u00dcberSocialOrig\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79293791,"id_str":"79293791","name":"Rihanna","screen_name":"rihanna","location":"ANTI","url":"http:\/\/www.rihannanow.com","description":"New song \u201cBitch Better Have My Money\u201d out now from #R8. Get #BBHMM at http:\/\/smarturl.it\/BBHMM?IQid=twb","protected":false,"verified":true,"followers_count":52488183,"friends_count":1149,"listed_count":98533,"favourites_count":861,"statuses_count":9724,"created_at":"Fri Oct 02 21:37:33 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447423178004901888\/f8j9ZoVV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447423178004901888\/f8j9ZoVV.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582747937958076418\/ZrNhtrD2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582747937958076418\/ZrNhtrD2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79293791\/1444283495","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89213,"favorite_count":61358,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rihanna","name":"Rihanna","id":79293791,"id_str":"79293791","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770330113,"id_str":"663728181770330113","text":"Got To Be Real - CHERYL LYNN '1978 https:\/\/t.co\/qXjgJaLyhT","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":321050455,"id_str":"321050455","name":"Linda RamnarineBADS","screen_name":"LindaRamnarine","location":"City of London, London","url":null,"description":null,"protected":false,"verified":false,"followers_count":928,"friends_count":1852,"listed_count":6,"favourites_count":3826,"statuses_count":45506,"created_at":"Mon Jun 20 23:18:29 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F8C7DA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/274357978\/x57d26b5f8ba4ae6ca8d069195aa55a7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/274357978\/x57d26b5f8ba4ae6ca8d069195aa55a7.jpg","profile_background_tile":true,"profile_link_color":"D77FB2","profile_sidebar_border_color":"F8C7DA","profile_sidebar_fill_color":"F8C7DA","profile_text_color":"AA2A75","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655562951437471744\/e2D-yQh9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655562951437471744\/e2D-yQh9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/321050455\/1441267914","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qXjgJaLyhT","expanded_url":"http:\/\/fb.me\/U4Nz2R9x","display_url":"fb.me\/U4Nz2R9x","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104664"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181778604033,"id_str":"663728181778604033","text":"\u4e00\u5ea6\u5bdd\u305f\u3089\u671d\u306f\u7d50\u69cb\u3086\u3063\u304f\u308a\u5bdd\u3066\u304f\u308c\u3066\u308b\u306e\u3067\u305d\u308c\u304c\u305b\u3081\u3066\u3082\u306e\u6551\u3044\u304b\u306a\u2026","source":"\u003ca href=\"http:\/\/tweetlogix.com\" rel=\"nofollow\"\u003eTweetlogix\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255026693,"id_str":"255026693","name":"IROHA[\u3044\u308d\u306f]","screen_name":"iroha1247","location":"\u30ec\u30ac\u30b7\u30a3\u306e\u52a9\u624b\u5e2d","url":null,"description":"\u7de8\u307f\u7269\u3001\u304a\u83d3\u5b50\u4f5c\u308a\u3001\uff8b\uff9f\uff7b\uff9e\u4f5c\u308a\u3001\uff79\uff9e\uff70\uff91\u5927\u597d\u304d\u4e3b\u5a66&\u4e00\u5150\u306e\u30de\u30de\u3067\u3059(*\u00b4\u03c9`)\uff79\uff9e\uff70\uff91\u306f\u4e3b\u306b1990\u5e74\u4ee3\uff7d\uff78\uff74\uff86\u7cfb\u3068\u4ed6RPG\u3084\u3001\uff7b\uff9d\uff84\uff9e\uff8e\uff9e\uff6f\uff78\uff7d\u7cfb\uff79\uff9e\uff70\uff91(\uff83\uff97\uff98\uff71\u30fb\uff8f\uff72\uff78\uff97)\u7b49\u3001\u597d\u3093\u3067\uff8c\uff9f\uff9a\uff72\u3057\u3066\u307e\u3059\u3002[playing now]\u7acb\u4f53\u30d4\u30af\u30ed\u30b92\u3001\u30a2\u30a4\u30eb\u30fc\u6751DX\u3001\u30de\u30a4\u30f3\u30af\u30e9\u30d5\u30c8","protected":false,"verified":false,"followers_count":22,"friends_count":27,"listed_count":1,"favourites_count":100,"statuses_count":4978,"created_at":"Sun Feb 20 14:25:03 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725407661780992\/rpJkypqn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725407661780992\/rpJkypqn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255026693\/1349408247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080104666"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181753593856,"id_str":"663728181753593856","text":"Cannabis Oil Cures Terminal Cancer in 3-year-old Boy #LandonRiddle https:\/\/t.co\/XKaBJv1ufi https:\/\/t.co\/H4X5SIBkid","source":"\u003ca href=\"http:\/\/selina-lewis.com\" rel=\"nofollow\"\u003eSelina_Lewis_first_app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3249989665,"id_str":"3249989665","name":"Selina Lewis","screen_name":"Selina_Lewis_","location":"USA","url":null,"description":"Yogi \u272a Subtly charming geek \u272a Parent to hunting dog \u272a Respectful of others \u272a Bartender","protected":false,"verified":false,"followers_count":545,"friends_count":1810,"listed_count":38,"favourites_count":493,"statuses_count":1997,"created_at":"Fri Jun 19 16:48:27 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611939854209814528\/VUQsJtkW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611939854209814528\/VUQsJtkW_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LandonRiddle","indices":[53,66]}],"urls":[{"url":"https:\/\/t.co\/XKaBJv1ufi","expanded_url":"http:\/\/hlpus.me\/sc6fn","display_url":"hlpus.me\/sc6fn","indices":[67,90]}],"user_mentions":[],"symbols":[],"media":[{"id":663728181573263360,"id_str":"663728181573263360","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ7oXIAA37_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ7oXIAA37_7.jpg","url":"https:\/\/t.co\/H4X5SIBkid","display_url":"pic.twitter.com\/H4X5SIBkid","expanded_url":"http:\/\/twitter.com\/Selina_Lewis_\/status\/663728181753593856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728181573263360,"id_str":"663728181573263360","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ7oXIAA37_7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ7oXIAA37_7.jpg","url":"https:\/\/t.co\/H4X5SIBkid","display_url":"pic.twitter.com\/H4X5SIBkid","expanded_url":"http:\/\/twitter.com\/Selina_Lewis_\/status\/663728181753593856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104660"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181757612032,"id_str":"663728181757612032","text":"VIDEO: Hecklers disrupt Cameron's CBI speech https:\/\/t.co\/rDSSaAGVGn","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489796270,"id_str":"1489796270","name":"ota","screen_name":"ota82295024","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":119,"friends_count":19,"listed_count":31,"favourites_count":0,"statuses_count":175615,"created_at":"Fri Jun 07 07:43:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3766380966\/caef6beec024c26ee6a9c27801c8cf90_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3766380966\/caef6beec024c26ee6a9c27801c8cf90_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rDSSaAGVGn","expanded_url":"http:\/\/dlvr.it\/ChfhHz","display_url":"dlvr.it\/ChfhHz","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104661"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181745213440,"id_str":"663728181745213440","text":"RT @FixYouEs: est\u00e1s ah\u00ed, entre lo que extra\u00f1o y debo olvidar.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3431978483,"id_str":"3431978483","name":"KAREN\u2665","screen_name":"karen_ayelen21","location":null,"url":null,"description":"Every Love Story Are Beautifull, But Our Is My Favorite\u2665","protected":false,"verified":false,"followers_count":600,"friends_count":1010,"listed_count":0,"favourites_count":361,"statuses_count":1460,"created_at":"Wed Aug 19 20:23:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662763634720956417\/LGmukN8Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662763634720956417\/LGmukN8Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3431978483\/1446850129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:30:17 +0000 2015","id":663362911771856896,"id_str":"663362911771856896","text":"est\u00e1s ah\u00ed, entre lo que extra\u00f1o y debo olvidar.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":853219472,"id_str":"853219472","name":"sad.","screen_name":"FixYouEs","location":"catalunya","url":"http:\/\/www.instagram.com\/fixyoues","description":"say something i'm giving up on you","protected":false,"verified":false,"followers_count":25207,"friends_count":177,"listed_count":576,"favourites_count":157240,"statuses_count":1212,"created_at":"Sat Sep 29 16:50:00 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDCEC2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491571050543460353\/dK4X31VY.jpeg","profile_background_tile":true,"profile_link_color":"0431B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"461847","profile_text_color":"A88394","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663434255314366464\/BedJuUMo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/853219472\/1446922247","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":330,"favorite_count":405,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FixYouEs","name":"sad.","id":853219472,"id_str":"853219472","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080104658"} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770330112,"id_str":"663728181770330112","text":"This infinite love that I keep with me has name Michael Jackson but has not measured https:\/\/t.co\/A7ZJafhlN6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258792963,"id_str":"3258792963","name":"Michael\u266alove\u2665life\u2665","screen_name":"Cecilia83073025","location":"Thank you\u2665 Michael\u2665I love you","url":null,"description":"Make love your weapon to overcome any evil . (Michael Jackson, 1988) Forever Michael Jackson\u266a Music And Me I will never say goodbye\u2665God is love\u2665","protected":false,"verified":false,"followers_count":280,"friends_count":194,"listed_count":6,"favourites_count":3810,"statuses_count":7108,"created_at":"Sat May 16 01:37:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654460071280267264\/Xmr0eCpl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654460071280267264\/Xmr0eCpl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258792963\/1443550283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728179694206977,"id_str":"663728179694206977","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ0oXAAEG-1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ0oXAAEG-1q.jpg","url":"https:\/\/t.co\/A7ZJafhlN6","display_url":"pic.twitter.com\/A7ZJafhlN6","expanded_url":"http:\/\/twitter.com\/Cecilia83073025\/status\/663728181770330112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728179694206977,"id_str":"663728179694206977","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ0oXAAEG-1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ0oXAAEG-1q.jpg","url":"https:\/\/t.co\/A7ZJafhlN6","display_url":"pic.twitter.com\/A7ZJafhlN6","expanded_url":"http:\/\/twitter.com\/Cecilia83073025\/status\/663728181770330112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080104664"} +{"delete":{"status":{"id":519236103463645184,"id_str":"519236103463645184","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080105119"}} +{"created_at":"Mon Nov 09 14:41:44 +0000 2015","id":663728181770387456,"id_str":"663728181770387456","text":"Arcangel San Miguel @ArCTiiC__ @NibibuLP @NibibuLP https:\/\/t.co\/wzL2Zg2lbv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1000668242,"id_str":"1000668242","name":"La Frase!!!","screen_name":"KathySolor","location":"Esmeraldas- Ecuador","url":null,"description":"Follow me & Follow you back \r \u0623\u0646\u0627 \u0645\u062a\u0627\u0628\u0639\u0629 \u0644\u0643\u0645 \u0645\u062a\u0627\u0628\u0639\u0629...sigueme te sigo !!! TEAM FOLLOW","protected":false,"verified":false,"followers_count":5694,"friends_count":5577,"listed_count":7,"favourites_count":770,"statuses_count":11410,"created_at":"Mon Dec 10 01:53:24 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653351007779430401\/PmgCzs9K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653351007779430401\/PmgCzs9K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1000668242\/1445262551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4e43cac8250a8b20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4e43cac8250a8b20.json","place_type":"country","name":"Ecuador","full_name":"Ecuador","country_code":"EC","country":"Ecuador","bounding_box":{"type":"Polygon","coordinates":[[[-92.008973,-5.013285],[-92.008973,1.681834],[-75.192627,1.681834],[-75.192627,-5.013285]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArCTiiC__","name":"Ruben Miguel \u30c4","id":1568635687,"id_str":"1568635687","indices":[21,31]},{"screen_name":"NibibuLP","name":"Miguel A. Pil\u262f","id":1330259497,"id_str":"1330259497","indices":[32,41]},{"screen_name":"NibibuLP","name":"Miguel A. Pil\u262f","id":1330259497,"id_str":"1330259497","indices":[42,51]}],"symbols":[],"media":[{"id":663728181002772480,"id_str":"663728181002772480","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ5gWIAAdGDh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ5gWIAAdGDh.jpg","url":"https:\/\/t.co\/wzL2Zg2lbv","display_url":"pic.twitter.com\/wzL2Zg2lbv","expanded_url":"http:\/\/twitter.com\/KathySolor\/status\/663728181770387456\/photo\/1","type":"photo","sizes":{"medium":{"w":345,"h":395,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":345,"h":395,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728181002772480,"id_str":"663728181002772480","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ5gWIAAdGDh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ5gWIAAdGDh.jpg","url":"https:\/\/t.co\/wzL2Zg2lbv","display_url":"pic.twitter.com\/wzL2Zg2lbv","expanded_url":"http:\/\/twitter.com\/KathySolor\/status\/663728181770387456\/photo\/1","type":"photo","sizes":{"medium":{"w":345,"h":395,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":389,"resize":"fit"},"large":{"w":345,"h":395,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080104664"} +{"delete":{"status":{"id":663727217063518208,"id_str":"663727217063518208","user_id":2184425276,"user_id_str":"2184425276"},"timestamp_ms":"1447080105126"}} +{"delete":{"status":{"id":661607663302610944,"id_str":"661607663302610944","user_id":2903272416,"user_id_str":"2903272416"},"timestamp_ms":"1447080105187"}} +{"delete":{"status":{"id":663726944446455808,"id_str":"663726944446455808","user_id":1557307891,"user_id_str":"1557307891"},"timestamp_ms":"1447080105264"}} +{"delete":{"status":{"id":663725396727214080,"id_str":"663725396727214080","user_id":2918884070,"user_id_str":"2918884070"},"timestamp_ms":"1447080105352"}} +{"delete":{"status":{"id":452911226197377024,"id_str":"452911226197377024","user_id":913706594,"user_id_str":"913706594"},"timestamp_ms":"1447080105630"}} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185939468292,"id_str":"663728185939468292","text":"RT @SpeakComedy: Greece = a place to visit once in a lifetime https:\/\/t.co\/lmoXchKm95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":990038894,"id_str":"990038894","name":"Nemanja Petrovi\u0107","screen_name":"YoungSerb17","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":47,"friends_count":99,"listed_count":1,"favourites_count":237,"statuses_count":296,"created_at":"Wed Dec 05 02:42:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/729657979\/1c06cc2bdbd644405353d73cb1a8488e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/729657979\/1c06cc2bdbd644405353d73cb1a8488e.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636007240160440321\/-panPamW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636007240160440321\/-panPamW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990038894\/1354679283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:57:03 +0000 2015","id":663475342829449216,"id_str":"663475342829449216","text":"Greece = a place to visit once in a lifetime https:\/\/t.co\/lmoXchKm95","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eSpeakComedyApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":50618718,"id_str":"50618718","name":"Speak Comedy","screen_name":"SpeakComedy","location":null,"url":null,"description":"Finally, comedy on Twitter! For Business, email alyzigho@gmail.com","protected":false,"verified":false,"followers_count":2227991,"friends_count":1,"listed_count":5728,"favourites_count":262,"statuses_count":50258,"created_at":"Thu Jun 25 11:22:36 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2ABBF4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469965346359631872\/4nUyb_hx.png","profile_background_tile":true,"profile_link_color":"2ABBF4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"594F55","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661660292443725826\/8ayUHcRC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/50618718\/1444775882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":426,"favorite_count":605,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663475337846636544,"id_str":"663475337846636544","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663475337846636544,"id_str":"663475337846636544","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":663475339343990785,"id_str":"663475339343990785","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTk7UkAEzt6N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTk7UkAEzt6N.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663475340317102080,"id_str":"663475340317102080","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTojVEAAXBMx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTojVEAAXBMx.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":600,"h":375,"resize":"fit"}}},{"id":663475341575323648,"id_str":"663475341575323648","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTtPUAAAKFep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTtPUAAAKFep.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":557,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":557,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SpeakComedy","name":"Speak Comedy","id":50618718,"id_str":"50618718","indices":[3,15]}],"symbols":[],"media":[{"id":663475337846636544,"id_str":"663475337846636544","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663475342829449216,"source_status_id_str":"663475342829449216","source_user_id":50618718,"source_user_id_str":"50618718"}]},"extended_entities":{"media":[{"id":663475337846636544,"id_str":"663475337846636544","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTfWUwAAkHFp.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663475342829449216,"source_status_id_str":"663475342829449216","source_user_id":50618718,"source_user_id_str":"50618718"},{"id":663475339343990785,"id_str":"663475339343990785","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTk7UkAEzt6N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTk7UkAEzt6N.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663475342829449216,"source_status_id_str":"663475342829449216","source_user_id":50618718,"source_user_id_str":"50618718"},{"id":663475340317102080,"id_str":"663475340317102080","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTojVEAAXBMx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTojVEAAXBMx.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"},"large":{"w":600,"h":375,"resize":"fit"}},"source_status_id":663475342829449216,"source_status_id_str":"663475342829449216","source_user_id":50618718,"source_user_id_str":"50618718"},{"id":663475341575323648,"id_str":"663475341575323648","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUjTtPUAAAKFep.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUjTtPUAAAKFep.jpg","url":"https:\/\/t.co\/lmoXchKm95","display_url":"pic.twitter.com\/lmoXchKm95","expanded_url":"http:\/\/twitter.com\/SpeakComedy\/status\/663475342829449216\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":557,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":557,"resize":"fit"},"small":{"w":340,"h":315,"resize":"fit"}},"source_status_id":663475342829449216,"source_status_id_str":"663475342829449216","source_user_id":50618718,"source_user_id_str":"50618718"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105658"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947914240,"id_str":"663728185947914240","text":"RT @_eaebibica: \"Vamos come\u00e7ar ter mais amor pr\u00f3prio\" \ud83d\udc81\ud83d\ude34 https:\/\/t.co\/1eDmRfTA82","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173573357,"id_str":"173573357","name":"vict\u00f3ria","screen_name":"_minivicks2","location":"0treze","url":null,"description":null,"protected":false,"verified":false,"followers_count":916,"friends_count":731,"listed_count":1,"favourites_count":3317,"statuses_count":77631,"created_at":"Sun Aug 01 20:51:49 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594164437323354112\/-prw6ur_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594164437323354112\/-prw6ur_.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0DC9D6","profile_text_color":"806980","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663176249381138432\/3XDbecdD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663176249381138432\/3XDbecdD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173573357\/1446166221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:17 +0000 2015","id":663710453739163648,"id_str":"663710453739163648","text":"\"Vamos come\u00e7ar ter mais amor pr\u00f3prio\" \ud83d\udc81\ud83d\ude34 https:\/\/t.co\/1eDmRfTA82","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287960110,"id_str":"287960110","name":"Bianca \u2693","screen_name":"_eaebibica","location":null,"url":null,"description":"A felicidade se encontra nas coisas mais simples da terra, \u00e1s vezes a paz de um sorriso pode desarmar uma guerra.","protected":false,"verified":false,"followers_count":847,"friends_count":474,"listed_count":1,"favourites_count":2202,"statuses_count":30864,"created_at":"Tue Apr 26 00:30:04 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460175394776162304\/uidFcuWL.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460175394776162304\/uidFcuWL.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658095136233099264\/i7sG6qk3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658095136233099264\/i7sG6qk3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287960110\/1440378085","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710440158023680,"id_str":"663710440158023680","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","url":"https:\/\/t.co\/1eDmRfTA82","display_url":"pic.twitter.com\/1eDmRfTA82","expanded_url":"http:\/\/twitter.com\/_eaebibica\/status\/663710453739163648\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710440158023680,"id_str":"663710440158023680","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","url":"https:\/\/t.co\/1eDmRfTA82","display_url":"pic.twitter.com\/1eDmRfTA82","expanded_url":"http:\/\/twitter.com\/_eaebibica\/status\/663710453739163648\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_eaebibica","name":"Bianca \u2693","id":287960110,"id_str":"287960110","indices":[3,14]}],"symbols":[],"media":[{"id":663710440158023680,"id_str":"663710440158023680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","url":"https:\/\/t.co\/1eDmRfTA82","display_url":"pic.twitter.com\/1eDmRfTA82","expanded_url":"http:\/\/twitter.com\/_eaebibica\/status\/663710453739163648\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663710453739163648,"source_status_id_str":"663710453739163648","source_user_id":287960110,"source_user_id_str":"287960110"}]},"extended_entities":{"media":[{"id":663710440158023680,"id_str":"663710440158023680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5IPtWUAAWf4k.jpg","url":"https:\/\/t.co\/1eDmRfTA82","display_url":"pic.twitter.com\/1eDmRfTA82","expanded_url":"http:\/\/twitter.com\/_eaebibica\/status\/663710453739163648\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663710453739163648,"source_status_id_str":"663710453739163648","source_user_id":287960110,"source_user_id_str":"287960110"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185952071680,"id_str":"663728185952071680","text":"RT @slikouron: @K_ToOzle mos def.. We did really good. Glad we could be of service. Will always be here to support dudes like you. Oh and S\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":825682496,"id_str":"825682496","name":"Tebby","screen_name":"TebbyTso","location":"GP","url":null,"description":"Scorpio, Introvert, love music: what would life be without music?","protected":false,"verified":false,"followers_count":141,"friends_count":149,"listed_count":0,"favourites_count":732,"statuses_count":2019,"created_at":"Sat Sep 15 17:48:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662901030389161984\/Wgy2cbZO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662901030389161984\/Wgy2cbZO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/825682496\/1445099888","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:45:52 +0000 2015","id":663457430156742656,"id_str":"663457430156742656","text":"@K_ToOzle mos def.. We did really good. Glad we could be of service. Will always be here to support dudes like you. Oh and S\/o em Royals \ud83d\ude4f\ud83c\udfff","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663394269323993088,"in_reply_to_status_id_str":"663394269323993088","in_reply_to_user_id":88463860,"in_reply_to_user_id_str":"88463860","in_reply_to_screen_name":"K_ToOzle","user":{"id":22920188,"id_str":"22920188","name":"millionaire to 37618","screen_name":"slikouron","location":null,"url":"https:\/\/itunes.apple.com\/us\/album\/millionaires-shake-single\/id901356715","description":"For hip hop news log on http:\/\/www.slikouronlife.co.za","protected":false,"verified":false,"followers_count":166517,"friends_count":5308,"listed_count":461,"favourites_count":2062,"statuses_count":100354,"created_at":"Thu Mar 05 13:51:12 +0000 2009","utc_offset":7200,"time_zone":"Pretoria","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/475536031135969280\/GIApSiBq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/475536031135969280\/GIApSiBq.jpeg","profile_background_tile":false,"profile_link_color":"B30000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492421753512407040\/MOmL9xPO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492421753512407040\/MOmL9xPO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22920188\/1402211519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":34,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"K_ToOzle","name":"#K2Friday","id":88463860,"id_str":"88463860","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"slikouron","name":"millionaire to 37618","id":22920188,"id_str":"22920188","indices":[3,13]},{"screen_name":"K_ToOzle","name":"#K2Friday","id":88463860,"id_str":"88463860","indices":[15,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105661"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185952063488,"id_str":"663728185952063488","text":"- \u0111\u1ecbt m\u1ee3 bn ho\u00e0ng ch\u1ee9 ph\u00f3ng u\u1ebf k\u01b0n kh\u1ee7ng ch\u1ecbu bn r :D \u2014 feeling crazy","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3820807872,"id_str":"3820807872","name":"ph\u1ea1m ng\u1ecdc linh","screen_name":"Nguoi98","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":46,"listed_count":0,"favourites_count":0,"statuses_count":21,"created_at":"Thu Oct 08 03:00:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651956066591227904\/EhU4QEPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651956066591227904\/EhU4QEPC_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"vi","timestamp_ms":"1447080105661"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947914242,"id_str":"663728185947914242","text":"RT @BalochShuhda: An Anonymous Baloch Girl shows victory for the Martyrs on the RemembranceDay, 13 November #BalochMartyrsDay @4thAnon http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4063244123,"id_str":"4063244123","name":"Halwaan Toorani","screen_name":"htBaloch","location":null,"url":null,"description":"\u201cThe great revolution in the history of man, past,present and future, is the revolution of those determined to be free.\u201d\nStruggling 4 free,secular Balochistan.","protected":false,"verified":false,"followers_count":15,"friends_count":53,"listed_count":2,"favourites_count":98,"statuses_count":102,"created_at":"Wed Oct 28 21:13:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659494954314526720\/qywiKudm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659494954314526720\/qywiKudm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4063244123\/1446070747","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 06:27:34 +0000 2015","id":663241431134412800,"id_str":"663241431134412800","text":"An Anonymous Baloch Girl shows victory for the Martyrs on the RemembranceDay, 13 November #BalochMartyrsDay @4thAnon https:\/\/t.co\/QNtRHWyXCc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4024954762,"id_str":"4024954762","name":"Baloch Martyrs.C","screen_name":"BalochShuhda","location":"Occupied Balochistan","url":null,"description":"Baloch Martyrs committee is committed to remember Baloch martyrs on 13th November #BalochMartyrsDay","protected":false,"verified":false,"followers_count":119,"friends_count":1,"listed_count":4,"favourites_count":0,"statuses_count":156,"created_at":"Fri Oct 23 14:56:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657572000353943552\/LLN-E_6i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657572000353943552\/LLN-E_6i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4024954762\/1445613110","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":5,"entities":{"hashtags":[{"text":"BalochMartyrsDay","indices":[90,107]}],"urls":[],"user_mentions":[{"screen_name":"4thAnon","name":"Anonymous 4thEstate","id":28003949,"id_str":"28003949","indices":[108,116]}],"symbols":[],"media":[{"id":663241412570431489,"id_str":"663241412570431489","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","url":"https:\/\/t.co\/QNtRHWyXCc","display_url":"pic.twitter.com\/QNtRHWyXCc","expanded_url":"http:\/\/twitter.com\/BalochShuhda\/status\/663241431134412800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663241412570431489,"id_str":"663241412570431489","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","url":"https:\/\/t.co\/QNtRHWyXCc","display_url":"pic.twitter.com\/QNtRHWyXCc","expanded_url":"http:\/\/twitter.com\/BalochShuhda\/status\/663241431134412800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BalochMartyrsDay","indices":[108,125]}],"urls":[],"user_mentions":[{"screen_name":"BalochShuhda","name":"Baloch Martyrs.C","id":4024954762,"id_str":"4024954762","indices":[3,16]},{"screen_name":"4thAnon","name":"Anonymous 4thEstate","id":28003949,"id_str":"28003949","indices":[126,134]}],"symbols":[],"media":[{"id":663241412570431489,"id_str":"663241412570431489","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","url":"https:\/\/t.co\/QNtRHWyXCc","display_url":"pic.twitter.com\/QNtRHWyXCc","expanded_url":"http:\/\/twitter.com\/BalochShuhda\/status\/663241431134412800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663241431134412800,"source_status_id_str":"663241431134412800","source_user_id":4024954762,"source_user_id_str":"4024954762"}]},"extended_entities":{"media":[{"id":663241412570431489,"id_str":"663241412570431489","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTROjPyWwAEPwTC.jpg","url":"https:\/\/t.co\/QNtRHWyXCc","display_url":"pic.twitter.com\/QNtRHWyXCc","expanded_url":"http:\/\/twitter.com\/BalochShuhda\/status\/663241431134412800\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663241431134412800,"source_status_id_str":"663241431134412800","source_user_id":4024954762,"source_user_id_str":"4024954762"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185956241408,"id_str":"663728185956241408","text":"@webDM1 \u00bfLlorar y dar vueltas en c\u00edrculo sobre s\u00ed mismo agitando compulsivamente las manos? :-D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663683825009090561,"in_reply_to_status_id_str":"663683825009090561","in_reply_to_user_id":758619698,"in_reply_to_user_id_str":"758619698","in_reply_to_screen_name":"webDM1","user":{"id":924244028,"id_str":"924244028","name":"\u00d3scar Lpz. de Bri\u00f1as","screen_name":"oscarbrinas","location":"Bilbao","url":"http:\/\/www.jediazucarado.com\/","description":"Profesional de la comunicaci\u00f3n, implicado con la #diabetESP y la #salud . Autor del blog Reflexiones de un Jedi Azucarado #DiabetesAdvocate #Blogger","protected":false,"verified":false,"followers_count":1481,"friends_count":562,"listed_count":101,"favourites_count":1078,"statuses_count":7557,"created_at":"Sat Nov 03 23:31:41 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9BB3BD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"4DBBE3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661259044800364544\/g08dPbFE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661259044800364544\/g08dPbFE_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/924244028\/1427045072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"webDM1","name":"Diabetestipo1","id":758619698,"id_str":"758619698","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105662"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185956257792,"id_str":"663728185956257792","text":"RT @ecoosfera: Esta monta\u00f1a no necesita nada de lo que usted trae: https:\/\/t.co\/JI8CWuNcfV https:\/\/t.co\/SLiO6fKxc4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97361682,"id_str":"97361682","name":"Roc\u00edo Benvenuto","screen_name":"RocioBenvenuto","location":"Santiago, Chile","url":"http:\/\/rociobenvenuto.tumblr.com\/","description":"Me desarmo y rearmo en mol\u00e9culas, de esas, las mismas que conforman el universo,esas que tiene cada ser vivo o inerte sobre esta tierra ...y nos hacen iguales","protected":false,"verified":false,"followers_count":295,"friends_count":277,"listed_count":0,"favourites_count":133,"statuses_count":5658,"created_at":"Thu Dec 17 04:19:36 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491836612603437056\/T3OGy6F5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491836612603437056\/T3OGy6F5.jpeg","profile_background_tile":true,"profile_link_color":"0C0840","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"0C0500","profile_text_color":"5A3B21","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663566431884345344\/V5eCm1kl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663566431884345344\/V5eCm1kl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97361682\/1436630482","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:30:09 +0000 2015","id":663166583288692736,"id_str":"663166583288692736","text":"Esta monta\u00f1a no necesita nada de lo que usted trae: https:\/\/t.co\/JI8CWuNcfV https:\/\/t.co\/SLiO6fKxc4","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150767837,"id_str":"150767837","name":"ecoosfera","screen_name":"ecoosfera","location":"M\u00e9xico ","url":"http:\/\/www.ecoosfera.com\/","description":"Espacio dedicado a difundir informaci\u00f3n sobre ecolog\u00eda y medio ambiente con un solo fin: inspirarte","protected":false,"verified":false,"followers_count":26738,"friends_count":6742,"listed_count":391,"favourites_count":428,"statuses_count":16407,"created_at":"Tue Jun 01 19:36:24 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034408022917\/6b8bc17daf7dd3f560be91b3ca1ebd1a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034408022917\/6b8bc17daf7dd3f560be91b3ca1ebd1a.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522932586708860929\/DYiPxXor_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522932586708860929\/DYiPxXor_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150767837\/1421964537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":29,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JI8CWuNcfV","expanded_url":"http:\/\/ow.ly\/UmI8R","display_url":"ow.ly\/UmI8R","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663015267556073472,"id_str":"663015267556073472","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","url":"https:\/\/t.co\/SLiO6fKxc4","display_url":"pic.twitter.com\/SLiO6fKxc4","expanded_url":"http:\/\/twitter.com\/ecoosfera\/status\/663166583288692736\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663015267556073472,"id_str":"663015267556073472","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","url":"https:\/\/t.co\/SLiO6fKxc4","display_url":"pic.twitter.com\/SLiO6fKxc4","expanded_url":"http:\/\/twitter.com\/ecoosfera\/status\/663166583288692736\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/JI8CWuNcfV","expanded_url":"http:\/\/ow.ly\/UmI8R","display_url":"ow.ly\/UmI8R","indices":[67,90]}],"user_mentions":[{"screen_name":"ecoosfera","name":"ecoosfera","id":150767837,"id_str":"150767837","indices":[3,13]}],"symbols":[],"media":[{"id":663015267556073472,"id_str":"663015267556073472","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","url":"https:\/\/t.co\/SLiO6fKxc4","display_url":"pic.twitter.com\/SLiO6fKxc4","expanded_url":"http:\/\/twitter.com\/ecoosfera\/status\/663166583288692736\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663166583288692736,"source_status_id_str":"663166583288692736","source_user_id":150767837,"source_user_id_str":"150767837"}]},"extended_entities":{"media":[{"id":663015267556073472,"id_str":"663015267556073472","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOA339XIAAc-ji.jpg","url":"https:\/\/t.co\/SLiO6fKxc4","display_url":"pic.twitter.com\/SLiO6fKxc4","expanded_url":"http:\/\/twitter.com\/ecoosfera\/status\/663166583288692736\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663166583288692736,"source_status_id_str":"663166583288692736","source_user_id":150767837,"source_user_id_str":"150767837"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105662"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947852801,"id_str":"663728185947852801","text":"RT @FSFran: Ma\u00f1ana rindo y estoy en hiperpija","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259517385,"id_str":"259517385","name":"Jack the ripper","screen_name":"Antonucci_Lucas","location":null,"url":null,"description":"De acuerdo soy un cuerdo que con los locos concuerdo. http:\/\/htinstagram.com\/luquiantonucc...","protected":false,"verified":false,"followers_count":325,"friends_count":328,"listed_count":1,"favourites_count":2166,"statuses_count":11712,"created_at":"Wed Mar 02 02:09:13 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/483716924618981377\/dcStxDhO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/483716924618981377\/dcStxDhO.jpeg","profile_background_tile":true,"profile_link_color":"D10707","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657225117068632064\/Onri9GSM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657225117068632064\/Onri9GSM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259517385\/1400529950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:37 +0000 2015","id":663727395749412864,"id_str":"663727395749412864","text":"Ma\u00f1ana rindo y estoy en hiperpija","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187654712,"id_str":"187654712","name":"Fran","screen_name":"FSFran","location":null,"url":"http:\/\/instagram.com\/franariel","description":"Solo se trata de vivir ..\nNada gano si no se perder","protected":false,"verified":false,"followers_count":347,"friends_count":442,"listed_count":1,"favourites_count":3648,"statuses_count":17620,"created_at":"Mon Sep 06 20:30:53 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639622667944001536\/VX0r9UKQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639622667944001536\/VX0r9UKQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187654712\/1354047402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FSFran","name":"Fran","id":187654712,"id_str":"187654712","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185952051200,"id_str":"663728185952051200","text":"\u041c\u0430\u0440\u043a\u0438\u0437\u0430 \u0430\u043d\u0433\u0435\u043b\u043e\u0432\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd https:\/\/t.co\/MOZKjUI36A","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1934857310,"id_str":"1934857310","name":"\u042f \u0437\u0434\u0435\u0441\u044c","screen_name":"matrixplus2011","location":"http:\/\/www.abc64.ru","url":"http:\/\/www.seo.matrixplus.ru","description":"\u041f\u0440\u0438\u0432\u0435\u0442 http:\/\/www.abc64.ru http:\/\/www.kinologiyasaratov.ru http:\/\/www.cats.abc64.ru http:\/\/www.zoomed.abc64.ru http:\/\/board.abc64.ru http:\/\/board.matrixplus.ru","protected":false,"verified":false,"followers_count":122,"friends_count":1974,"listed_count":1,"favourites_count":4,"statuses_count":22626,"created_at":"Fri Oct 04 17:07:22 +0000 2013","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087946793\/51b4c08206661c887cbd8bee694d2856.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087946793\/51b4c08206661c887cbd8bee694d2856.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000548031557\/e25adcce4d4737c5d2e21f3f6271df6c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000548031557\/e25adcce4d4737c5d2e21f3f6271df6c_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MOZKjUI36A","expanded_url":"http:\/\/ceocho.com\/home.php?mod=space&uid=117137&do=profile","display_url":"ceocho.com\/home.php?mod=s\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080105661"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185952088064,"id_str":"663728185952088064","text":"@sayebod \u0643\u0627\u0631\u0647 \u0647\u0645\u0647 \u0649 \u0645\u0627\u0633\u062a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727957605773313,"in_reply_to_status_id_str":"663727957605773313","in_reply_to_user_id":2456742346,"in_reply_to_user_id_str":"2456742346","in_reply_to_screen_name":"sayebod","user":{"id":2279143549,"id_str":"2279143549","name":"nt999","screen_name":"ntk777777","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1650,"friends_count":406,"listed_count":0,"favourites_count":24092,"statuses_count":3446,"created_at":"Mon Jan 06 14:13:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661844285629698048\/laI-zz08_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661844285629698048\/laI-zz08_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2279143549\/1430479178","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sayebod","name":"\u0633\u0627\u064a\u0647","id":2456742346,"id_str":"2456742346","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080105661"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960460288,"id_str":"663728185960460288","text":"RT @elcosodelapizza: - \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3355876859,"id_str":"3355876859","name":"\u2740BRENDA\u2740","screen_name":"tamarabrend","location":"C\u00f3rdoba, Argentina","url":null,"description":"Sagitariana\u2650| Rock Nacional & reggaeton | 'De solo vivir se trata mi vida' \u2665","protected":false,"verified":false,"followers_count":747,"friends_count":648,"listed_count":0,"favourites_count":2387,"statuses_count":6737,"created_at":"Thu Jul 02 23:53:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663557267288125441\/4lIT6MNO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663557267288125441\/4lIT6MNO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3355876859\/1447078043","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:07 +0000 2015","id":663727269194563586,"id_str":"663727269194563586","text":"- \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834702151,"id_str":"834702151","name":"cosito de la pizza","screen_name":"elcosodelapizza","location":null,"url":"http:\/\/es.favstar.fm\/users\/elcosodelapizza","description":"Me llamo tr\u00edpode. Sirvo para que el queso no se pegue en la caja.\r\n\r\nCuenta oficial, cuidado con las cuentas falsas por favor. Si ven cuenta falsas reporten.","protected":false,"verified":false,"followers_count":3167628,"friends_count":428,"listed_count":1400,"favourites_count":165734,"statuses_count":29426,"created_at":"Thu Sep 20 03:45:21 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834702151\/1398224448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":344,"favorite_count":160,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elcosodelapizza","name":"cosito de la pizza","id":834702151,"id_str":"834702151","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105663"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935310848,"id_str":"663728185935310848","text":"\uff32\uff25\uff34\uff37\uff25\uff25\uff34\n\n \uff21\uff2e\uff24\n\n \uff26\uff2f\uff2c\uff2c\uff2f\uff37\n\n\u2708\u2708\u2708\u2708\u2708\u2708\n#TeamOpalFruit\n\u2708\u2708\u2708\u2708\u2708\u2708\n@anim3333\n@SemajZachary\n@__EbbyEbz__\n@lynnmorris20\n@mqicantwiry","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003eteamopalfruit (1)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2978559785,"id_str":"2978559785","name":"TeamOpalFruit","screen_name":"teamopalfruit","location":"York, England","url":null,"description":"Retweet our messages, & gain followers\n\nAdd #TeamOpalFruit to your bio","protected":false,"verified":false,"followers_count":79603,"friends_count":64594,"listed_count":133,"favourites_count":1330,"statuses_count":36371,"created_at":"Wed Jan 14 19:12:31 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625611455338049536\/d2MY_LFZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625611455338049536\/d2MY_LFZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978559785\/1437991465","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TeamOpalFruit","indices":[36,50]}],"urls":[],"user_mentions":[{"screen_name":"anim3333","name":"\u2764Anim\u2764TEAMFAIRYROSE","id":403821795,"id_str":"403821795","indices":[58,67]},{"screen_name":"SemajZachary","name":"Semaj \u270a","id":496054455,"id_str":"496054455","indices":[68,81]},{"screen_name":"__EbbyEbz__","name":"Ebz\u2122","id":3171816147,"id_str":"3171816147","indices":[82,94]},{"screen_name":"lynnmorris20","name":"lynn","id":773938801,"id_str":"773938801","indices":[95,108]},{"screen_name":"mqicantwiry","name":"Minerva","id":855249300,"id_str":"855249300","indices":[109,121]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185973035009,"id_str":"663728185973035009","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258531814,"id_str":"3258531814","name":"Pascual Kleinmann","screen_name":"senurewahini","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":157,"friends_count":639,"listed_count":12,"favourites_count":16993,"statuses_count":17682,"created_at":"Fri May 15 23:02:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645627483312816128\/wcINIQWz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645627483312816128\/wcINIQWz_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":702,"favorite_count":414,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105666"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185939374081,"id_str":"663728185939374081","text":"\u982d\u30a4\u30bf\u306a\u3063\u3066\u304d\u305f\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3277405002,"id_str":"3277405002","name":"\u307e\u3044\u3061\u3083\u305d","screen_name":"15BCLyXmAD9PcNT","location":null,"url":null,"description":"156\u339d\u306e \u5cac\u9ad8\u6821\u751f\u270c\ufe0e\u270c\ufe0e","protected":false,"verified":false,"followers_count":167,"friends_count":116,"listed_count":0,"favourites_count":1018,"statuses_count":2016,"created_at":"Sun Jul 12 12:30:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661036498167316480\/capbl5Lp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661036498167316480\/capbl5Lp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3277405002\/1445732908","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105658"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943584768,"id_str":"663728185943584768","text":"Sleepy\ud83d\ude34\ud83d\udca4","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224812392,"id_str":"3224812392","name":"QUEEN B","screen_name":"AngelaDyosa11","location":"Kem's bitch buddy ","url":null,"description":"bish\u2716\ufe0facaepals\u2716\ufe0fpugos\u2716\ufe0fsophomore\u2716\ufe0fchabilita\u2716\ufe0fDj's","protected":false,"verified":false,"followers_count":117,"friends_count":95,"listed_count":0,"favourites_count":1414,"statuses_count":1610,"created_at":"Sun May 24 05:15:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663360219917905920\/1jH1wRTT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663360219917905920\/1jH1wRTT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224812392\/1446992218","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105659"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935138817,"id_str":"663728185935138817","text":"@RitikaSays not at all\nbet laga le chahe","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727576733499392,"in_reply_to_status_id_str":"663727576733499392","in_reply_to_user_id":2180755595,"in_reply_to_user_id_str":"2180755595","in_reply_to_screen_name":"RitikaSays","user":{"id":723899815,"id_str":"723899815","name":"Jasveer Singh Kharra","screen_name":"imjsk27","location":"Jaipur, Rajasthan","url":null,"description":"CSE Student @ NIT Warangal #ABD #MClarke #Cook #Kane #Boult #Root #MMarsh #KP #MNicholas love to play with stats of cricket","protected":false,"verified":false,"followers_count":930,"friends_count":377,"listed_count":18,"favourites_count":1533,"statuses_count":24569,"created_at":"Sun Jul 29 12:13:21 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"21DEB8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/564268902666891265\/cDqLveAN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/564268902666891265\/cDqLveAN.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626038424802234369\/WlTeaeix_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626038424802234369\/WlTeaeix_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/723899815\/1430811604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RitikaSays","name":"Ritika.","id":2180755595,"id_str":"2180755595","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105657"} +{"delete":{"status":{"id":663728118834810880,"id_str":"663728118834810880","user_id":984644826,"user_id_str":"984644826"},"timestamp_ms":"1447080105711"}} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185972948992,"id_str":"663728185972948992","text":"RT @nuruddinshaikh1: Ab mujhse Raha Nhi Ja Raha hai \n #DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4092062785,"id_str":"4092062785","name":"Subhashini Gautam","screen_name":"SubhiShahrukh","location":null,"url":null,"description":"SRK The only reason for what i am here I want to meet only one time to Shah before death :') I hope i'm also somewhere in Shah's Heart *_* #INDIA","protected":false,"verified":false,"followers_count":13,"friends_count":72,"listed_count":0,"favourites_count":226,"statuses_count":80,"created_at":"Sun Nov 01 15:21:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663697891022630912\/hL6e7neG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663697891022630912\/hL6e7neG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4092062785\/1447072952","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:50 +0000 2015","id":663727704668315650,"id_str":"663727704668315650","text":"Ab mujhse Raha Nhi Ja Raha hai \n #DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1709573593,"id_str":"1709573593","name":"RomaN ReigN","screen_name":"nuruddinshaikh1","location":"Mumbai","url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":44,"listed_count":0,"favourites_count":267,"statuses_count":1416,"created_at":"Thu Aug 29 08:53:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663585358282694661\/bAhdBxSE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663585358282694661\/bAhdBxSE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1709573593\/1446971629","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[33,59]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[54,80]}],"urls":[],"user_mentions":[{"screen_name":"nuruddinshaikh1","name":"RomaN ReigN","id":1709573593,"id_str":"1709573593","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080105666"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185964544001,"id_str":"663728185964544001","text":"\u30b9\u30ab\u30fc\u30ec\u30c3\u30c8\u306b\u52dd\u3066\u306a\u3044\u75c5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2483788932,"id_str":"2483788932","name":"\u304c\u308a","screen_name":"toloverudakune4","location":null,"url":null,"description":"\u30a2\u30cb\u30e1\u3001\u30b5\u30d0\u30b2\u30fc\u3001\u30d1\u30ba\u30c9\u30e9\u304c\u597d\u304d\u306a\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3001\u6d77\u672a\u3061\u3083\u3093\u63a8\u3057\u3067\u3059\uff01\u6c17\u8efd\u306b\u8a71\u3057\u3066\u304f\u3060\u3055\u3044\u306a","protected":false,"verified":false,"followers_count":197,"friends_count":281,"listed_count":4,"favourites_count":3161,"statuses_count":6102,"created_at":"Thu May 08 14:05:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657193709235126272\/QvAlwl6f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657193709235126272\/QvAlwl6f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2483788932\/1428405426","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d313627ad749ca61","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d313627ad749ca61.json","place_type":"city","name":"\u5ddd\u5d0e\u5e02 \u4e2d\u539f\u533a","full_name":"\u795e\u5948\u5ddd\u770c \u5ddd\u5d0e\u5e02 \u4e2d\u539f\u533a","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.630937,35.547900],[139.630937,35.596515],[139.688153,35.596515],[139.688153,35.547900]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105664"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185972928513,"id_str":"663728185972928513","text":"\u4eca\u307e\u3067\u306a\u3093\u3067\u7d0d\u8c46\u306b\u304b\u3089\u3057\u3044\u308c\u306a\u304b\u3063\u305f\u3093\u3060\u3002\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220708089,"id_str":"220708089","name":"\u5927\u6fa4\u5c1a\u767b","screen_name":"AUTHOR0514","location":null,"url":null,"description":"\u76ee\u306f\u5782\u308c\u76ee\u3002\u6e29\u539a\u3002\u7b2c\u4e00\u5370\u8c61\u3067\u5931\u6557\u3057\u306a\u3044\u3002\u660e\u592a\u5b50\u3002","protected":false,"verified":false,"followers_count":65,"friends_count":55,"listed_count":4,"favourites_count":51,"statuses_count":1271,"created_at":"Sun Nov 28 16:17:06 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1378914698\/twipple1307025871052_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1378914698\/twipple1307025871052_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105666"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947779072,"id_str":"663728185947779072","text":"RT @DiscoPriest: Ha ha ha, I used to be so funny! What happened? https:\/\/t.co\/vsWKtXDynZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1979000695,"id_str":"1979000695","name":"Posty @VirtualTicket","screen_name":"Postsemreh","location":"Stormwind, Azeroth","url":null,"description":"#WoW, #WorldOfWarcraft, #Warcraft, #Murlocs #Warrior - I Love: Family, Faith, Geek, Technology, Leadership. Pugging Martyr, Sarcasm Patriot. Tweets are mine.","protected":false,"verified":false,"followers_count":1897,"friends_count":2012,"listed_count":54,"favourites_count":3652,"statuses_count":36898,"created_at":"Mon Oct 21 14:46:24 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A8FF26","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623871982828793856\/8FLFZEYV.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623871982828793856\/8FLFZEYV.jpg","profile_background_tile":false,"profile_link_color":"07A7BF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644543124425994240\/DEgYzaZI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644543124425994240\/DEgYzaZI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1979000695\/1438984445","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:36 +0000 2015","id":663727141897420800,"id_str":"663727141897420800","text":"Ha ha ha, I used to be so funny! What happened? https:\/\/t.co\/vsWKtXDynZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":180365236,"id_str":"180365236","name":"Disciplinary Action","screen_name":"DiscoPriest","location":"Cathedral of Light, Room #1B","url":"http:\/\/disciplinaryaction.wordpress.com","description":"Writer & illustrator of Disciplinary Action. Healer. Gamer. Runner.","protected":false,"verified":false,"followers_count":3412,"friends_count":872,"listed_count":150,"favourites_count":48244,"statuses_count":70998,"created_at":"Thu Aug 19 13:14:04 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"7A3856","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/137385963\/img25a.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/137385963\/img25a.jpg","profile_background_tile":false,"profile_link_color":"B85C90","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFEED4","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660932387233222657\/8_sKI4AB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660932387233222657\/8_sKI4AB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180365236\/1415018624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727140798529536,"id_str":"663727140798529536","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","url":"https:\/\/t.co\/vsWKtXDynZ","display_url":"pic.twitter.com\/vsWKtXDynZ","expanded_url":"http:\/\/twitter.com\/DiscoPriest\/status\/663727141897420800\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":380,"resize":"fit"},"small":{"w":340,"h":126,"resize":"fit"},"medium":{"w":600,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727140798529536,"id_str":"663727140798529536","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","url":"https:\/\/t.co\/vsWKtXDynZ","display_url":"pic.twitter.com\/vsWKtXDynZ","expanded_url":"http:\/\/twitter.com\/DiscoPriest\/status\/663727141897420800\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":380,"resize":"fit"},"small":{"w":340,"h":126,"resize":"fit"},"medium":{"w":600,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DiscoPriest","name":"Disciplinary Action","id":180365236,"id_str":"180365236","indices":[3,15]}],"symbols":[],"media":[{"id":663727140798529536,"id_str":"663727140798529536","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","url":"https:\/\/t.co\/vsWKtXDynZ","display_url":"pic.twitter.com\/vsWKtXDynZ","expanded_url":"http:\/\/twitter.com\/DiscoPriest\/status\/663727141897420800\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":380,"resize":"fit"},"small":{"w":340,"h":126,"resize":"fit"},"medium":{"w":600,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727141897420800,"source_status_id_str":"663727141897420800","source_user_id":180365236,"source_user_id_str":"180365236"}]},"extended_entities":{"media":[{"id":663727140798529536,"id_str":"663727140798529536","indices":[65,88],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIUWcVAAA_nOS.jpg","url":"https:\/\/t.co\/vsWKtXDynZ","display_url":"pic.twitter.com\/vsWKtXDynZ","expanded_url":"http:\/\/twitter.com\/DiscoPriest\/status\/663727141897420800\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":380,"resize":"fit"},"small":{"w":340,"h":126,"resize":"fit"},"medium":{"w":600,"h":223,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727141897420800,"source_status_id_str":"663727141897420800","source_user_id":180365236,"source_user_id_str":"180365236"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185968754688,"id_str":"663728185968754688","text":"\u304f\u3063\u3061\u3093","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53401606,"id_str":"53401606","name":"\u3074\u3083\u30fc@11\/14 \u65e5\u30c6\u30ec\u3089\u3093\u3089\u3093\u30db\u30fc\u30eb","screen_name":"pya_h","location":null,"url":null,"description":"\u3048\u3042\u308a\u3077\u3060\u3089\u3051\u3067\u3059\u3002\n\u30a2\u30a4\u30ab\u30c4\uff01\u304a\u3058\u3055\u3093\u306f\u3058\u3081\u307e\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":513,"friends_count":516,"listed_count":36,"favourites_count":3330,"statuses_count":54375,"created_at":"Fri Jul 03 14:40:50 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543445568953933826\/n3GSOdcC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543445568953933826\/n3GSOdcC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53401606\/1409235764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105665"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935171584,"id_str":"663728185935171584","text":"\u98fc \u3044 \u4e3b \u52df \u96c6\n\n\u306a\u307e\u3048\u3000\u3059\uff5e\u3055\u3093\n\u2642\uff0f\u2640\u3000\u304a\u3093\u306a\u3067\u3044\u3044\n\u3059\u3000\u304d\u3000\u3042\u3044\u3059\u3001\u306d\u305f\u3075\u308a\n\u304d\u3089\u3044\u3000\u304a\u304b\u3057\u3001\u306f\u3044\u305f\u3063\u3061\n\u305b\u3044\u683c\u3000\u3074\u3085\u3042\n\u3084\u308b\u6c17\u3000\u307e\u3063\u305f\u304f\u306a\u3044\n\u203b\u98fc\u3044\u305f\u3044\u4eba\u306fRT\u3057\u3066\u306d\n#\u98fc\u3044\u4e3b\u3069\u3053\nhttps:\/\/t.co\/PDxcq1CU76","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":124867270,"id_str":"124867270","name":"\u3059\uff5e\u3055\u3093","screen_name":"atmshnss","location":"\u5927\u4eba\u306e\u4e8b\u60c5\u3067\u7121\u7406\u3067\u3059","url":null,"description":"JAPAN TOKYO \u30d1\u30ba\u30c9\u30e9 AVA \u30ad\u30e3\u30e9\u540d\u3000\uff0a \u3042\u306a\u30fc\u308b\u5148\u8f29\uff0a\u30af\u30e9\u30de\u30b9\u3000\u5618\u3068\u5973\u304c\u5acc\u3044\u3000\u30d8\u30c3\u30c0\u30fc\u306f\u2661\u4e0a\u539f\u82b1\u604b\u2661\u69d8\u3000\u3054\u672c\u4eba\u69d8\u306e\u8a31\u53ef\u3092\u5f97\u3066\u4f7f\u7528\u3055\u305b\u3066\u9802\u3044\u3066\u3044\u307e\u3059 \u7686\u306e\u7b11\u9854\u304c\u5927\u597d\u7269 \u30b2\u30fc\u30e0\u3082\u30ea\u30a2\u30eb\u3082\u697d\u3057\u304f\n\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\u306d \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\n\u3059\u307f\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":289,"friends_count":535,"listed_count":5,"favourites_count":2646,"statuses_count":8666,"created_at":"Sat Mar 20 21:22:21 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632604391556558848\/Bs8CbyoN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632604391556558848\/Bs8CbyoN.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000761860014\/1c1a5bcc586bdae2336411675ca0ad4d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000761860014\/1c1a5bcc586bdae2336411675ca0ad4d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/124867270\/1442116268","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u98fc\u3044\u4e3b\u3069\u3053","indices":[90,96]}],"urls":[{"url":"https:\/\/t.co\/PDxcq1CU76","expanded_url":"https:\/\/shindanmaker.com\/557172","display_url":"shindanmaker.com\/557172","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935339520,"id_str":"663728185935339520","text":"RT @SRKsDrishh: #DhamakedaarDilwaleTrailer ...jaldiiiiiiiiiiiiiiiiiiiii","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112214311,"id_str":"3112214311","name":"SRK Pride Of INDIA\u2665","screen_name":"SRKsDieHardFan","location":"Srk's Country","url":"http:\/\/instagram.com\/srksdiehardfan","description":"\u03b9 \u03b1\u043c \u0257\u03b9\u0454 \u043d\u03b1\u0280\u0257 \u0257\u03b9\u2113\u03c9\u03b1\u03b1\u2113\u0454 \u0280\u03b1\u0454\u0454\u0455 \u0192\u03b1\u03b7 \u03c3\u0192 \u043a\u03b9\u03b7g @iamsrk.. \u03b9 \u043d\u03b1\u0442\u0454 \u0442\u043d\u03c3\u0455\u0454 \u03c9\u043d\u03c3 \u043d\u03b1\u0442\u0454 \u0455\u0280\u043a :D \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0455\u0280\u043a \u03b9 \u03c9\u03b9\u2113\u2113 \u0280\u0454\u0455\u03c1\u0454\u010b\u0442 \u0443\u03c3\u03c5 :) \u0257\u03c3\u03b7'\u0442 \u043d\u03c5\u0280\u0442 \u0455\u0280\u043a \u03b9\u0442\u0455 \u03b9\u03b7\u029d\u03c5\u0280\u03b9\u0454\u0455 \u0442\u03c3 \u0443\u03c3\u03c5\u0280 \u043d\u0454\u03b1\u2113\u0442\u043d","protected":false,"verified":false,"followers_count":163,"friends_count":117,"listed_count":0,"favourites_count":2592,"statuses_count":5657,"created_at":"Sat Mar 28 04:58:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654892626198577152\/LTmwzAJ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112214311\/1444733481","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:32 +0000 2015","id":663727879801339905,"id_str":"663727879801339905","text":"#DhamakedaarDilwaleTrailer ...jaldiiiiiiiiiiiiiiiiiiiii","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2996850440,"id_str":"2996850440","name":"Drishti \u2661","screen_name":"SRKsDrishh","location":"India","url":"http:\/\/www.instagram.com\/drishti9500","description":"Shah Rukh Khan duniya hai meri\n\n\n@iamSRK @SRKUniverse @faisalkofficial","protected":false,"verified":false,"followers_count":2081,"friends_count":293,"listed_count":9,"favourites_count":10026,"statuses_count":45287,"created_at":"Mon Jan 26 08:30:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661268033525194752\/wFrKgiFI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661268033525194752\/wFrKgiFI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2996850440\/1444243397","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[0,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"is"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[16,42]}],"urls":[],"user_mentions":[{"screen_name":"SRKsDrishh","name":"Drishti \u2661","id":2996850440,"id_str":"2996850440","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"is","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943588868,"id_str":"663728185943588868","text":"RT @Oregonian: Could you live on Oregon's minimum wage or $15 an hour? Our online calculator will tell you. https:\/\/t.co\/KrQ593BjB1 https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1269712544,"id_str":"1269712544","name":"Retweety T","screen_name":"RTT599","location":"Seattle","url":null,"description":"Newser","protected":false,"verified":false,"followers_count":192,"friends_count":1270,"listed_count":2,"favourites_count":943,"statuses_count":4687,"created_at":"Fri Mar 15 13:18:49 +0000 2013","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610413864706969600\/oPi3I-qz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610413864706969600\/oPi3I-qz_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:17 +0000 2015","id":663727814617731072,"id_str":"663727814617731072","text":"Could you live on Oregon's minimum wage or $15 an hour? Our online calculator will tell you. https:\/\/t.co\/KrQ593BjB1 https:\/\/t.co\/NyS7YzrUJP","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992751,"id_str":"2992751","name":"The Oregonian","screen_name":"Oregonian","location":"Portland, Oregon","url":"http:\/\/oregonlive.com","description":"News updates from the largest news org in the Pacific NW. See it all at http:\/\/OregonLive.com. Find reporter and more accounts in our lists.","protected":false,"verified":true,"followers_count":120402,"friends_count":409,"listed_count":3341,"favourites_count":308,"statuses_count":78623,"created_at":"Fri Mar 30 17:03:06 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447095410570444800\/nQeYxpx0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447095410570444800\/nQeYxpx0.jpeg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CDCDCD","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662043669285830656\/_DYnWJDG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662043669285830656\/_DYnWJDG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992751\/1404326529","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KrQ593BjB1","expanded_url":"http:\/\/bit.ly\/1lfwbuc","display_url":"bit.ly\/1lfwbuc","indices":[93,116]},{"url":"https:\/\/t.co\/NyS7YzrUJP","expanded_url":"https:\/\/youtu.be\/miHyIN_-upo","display_url":"youtu.be\/miHyIN_-upo","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KrQ593BjB1","expanded_url":"http:\/\/bit.ly\/1lfwbuc","display_url":"bit.ly\/1lfwbuc","indices":[108,131]},{"url":"https:\/\/t.co\/NyS7YzrUJP","expanded_url":"https:\/\/youtu.be\/miHyIN_-upo","display_url":"youtu.be\/miHyIN_-upo","indices":[139,140]}],"user_mentions":[{"screen_name":"Oregonian","name":"The Oregonian","id":2992751,"id_str":"2992751","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105659"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947779073,"id_str":"663728185947779073","text":"@applebrasshome \n\u3070\u30fc\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728054942871552,"in_reply_to_status_id_str":"663728054942871552","in_reply_to_user_id":3913019054,"in_reply_to_user_id_str":"3913019054","in_reply_to_screen_name":"applebrasshome","user":{"id":3316905686,"id_str":"3316905686","name":"\u3086\u3068\u3002","screen_name":"UuuuuutO","location":"\u5927\u962a \u300a\u30a2\u30e1\u6751\u6c11\u300b","url":null,"description":"\u9ad82 (16\u6b73) \/180cm\/47kg\/\u3086\u3068\u304f\u3093\u3063\u3066\u547c\u3070\u308c\u3066\u307e\u3075\u3045\u3002 \ua4b0*\u2445@doux_ange2 \u2445*\ua4b1","protected":false,"verified":false,"followers_count":1431,"friends_count":778,"listed_count":36,"favourites_count":18102,"statuses_count":6140,"created_at":"Sun Aug 16 14:08:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655720825274806273\/GYloRbVQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655720825274806273\/GYloRbVQ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"applebrasshome","name":"\uff0a\u308a\u304a\u3093\uff0a\u9aea\u4f38\u3070\u3057\u307e\u3059\uff0a\u53ea\u4eca\u9396\u9aa8\u306e\u6240\u9aea","id":3913019054,"id_str":"3913019054","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185964691456,"id_str":"663728185964691456","text":"RT @mvxsabb: Marine c une queen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303611321,"id_str":"3303611321","name":"marine","screen_name":"burgundyIips","location":"france ","url":"https:\/\/twitter.com\/espinosalelama\/status\/604940200058474497","description":"June 21th. February 1st. | Valentine Marks","protected":false,"verified":false,"followers_count":1469,"friends_count":497,"listed_count":6,"favourites_count":5863,"statuses_count":8309,"created_at":"Sat May 30 11:24:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658778551282442240\/Dj95TZmM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658778551282442240\/Dj95TZmM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303611321\/1446987335","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728002908450816,"id_str":"663728002908450816","text":"Marine c une queen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714587739,"id_str":"714587739","name":"\u2728","screen_name":"mvxsabb","location":"France ","url":"http:\/\/ordinarix.wordpress.com","description":"\u2601\ufe0fMy attitude is based on how you treat me\u2601\ufe0f |16yo|","protected":false,"verified":false,"followers_count":2642,"friends_count":2209,"listed_count":11,"favourites_count":9206,"statuses_count":32077,"created_at":"Mon Oct 14 16:26:44 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662712592691953664\/6IJ-CvQO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662712592691953664\/6IJ-CvQO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714587739\/1444465690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mvxsabb","name":"\u2728","id":714587739,"id_str":"714587739","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080105664"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943683072,"id_str":"663728185943683072","text":"RT @LDiCaprioReacts: When you realise it's Monday... https:\/\/t.co\/F91EZ9eRhJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":33987659,"id_str":"33987659","name":"Eimear Patterson","screen_name":"Eipa","location":"An D\u00fan","url":null,"description":"Final year teaching student @ St Mary's University College, Belfast :)","protected":false,"verified":false,"followers_count":197,"friends_count":301,"listed_count":2,"favourites_count":105,"statuses_count":3794,"created_at":"Tue Apr 21 18:17:06 +0000 2009","utc_offset":0,"time_zone":"Dublin","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E4D8DC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/704598806\/88db77722883be5e2914d8317c435da4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/704598806\/88db77722883be5e2914d8317c435da4.jpeg","profile_background_tile":true,"profile_link_color":"F5146C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A4C84C","profile_text_color":"F5146C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655442041967656960\/fTCkmriN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655442041967656960\/fTCkmriN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/33987659\/1404941500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:24:14 +0000 2015","id":663678477888045056,"id_str":"663678477888045056","text":"When you realise it's Monday... https:\/\/t.co\/F91EZ9eRhJ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3365666207,"id_str":"3365666207","name":"Leo DiCaprio Reacts","screen_name":"LDiCaprioReacts","location":"Includes #sp","url":null,"description":"*original*","protected":false,"verified":false,"followers_count":21919,"friends_count":51,"listed_count":15,"favourites_count":3,"statuses_count":441,"created_at":"Wed Jul 08 09:33:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618715161403224068\/jjBjyaqe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618715161403224068\/jjBjyaqe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3365666207\/1436348443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":29,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663678465103777792,"id_str":"663678465103777792","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","url":"https:\/\/t.co\/F91EZ9eRhJ","display_url":"pic.twitter.com\/F91EZ9eRhJ","expanded_url":"http:\/\/twitter.com\/LDiCaprioReacts\/status\/663678477888045056\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":293,"resize":"fit"},"large":{"w":300,"h":293,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663678465103777792,"id_str":"663678465103777792","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","url":"https:\/\/t.co\/F91EZ9eRhJ","display_url":"pic.twitter.com\/F91EZ9eRhJ","expanded_url":"http:\/\/twitter.com\/LDiCaprioReacts\/status\/663678477888045056\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":293,"resize":"fit"},"large":{"w":300,"h":293,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LDiCaprioReacts","name":"Leo DiCaprio Reacts","id":3365666207,"id_str":"3365666207","indices":[3,19]}],"symbols":[],"media":[{"id":663678465103777792,"id_str":"663678465103777792","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","url":"https:\/\/t.co\/F91EZ9eRhJ","display_url":"pic.twitter.com\/F91EZ9eRhJ","expanded_url":"http:\/\/twitter.com\/LDiCaprioReacts\/status\/663678477888045056\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":293,"resize":"fit"},"large":{"w":300,"h":293,"resize":"fit"}},"source_status_id":663678477888045056,"source_status_id_str":"663678477888045056","source_user_id":3365666207,"source_user_id_str":"3365666207"}]},"extended_entities":{"media":[{"id":663678465103777792,"id_str":"663678465103777792","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcDDWWUAAaBoZ.png","url":"https:\/\/t.co\/F91EZ9eRhJ","display_url":"pic.twitter.com\/F91EZ9eRhJ","expanded_url":"http:\/\/twitter.com\/LDiCaprioReacts\/status\/663678477888045056\/photo\/1","type":"photo","sizes":{"small":{"w":300,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":300,"h":293,"resize":"fit"},"large":{"w":300,"h":293,"resize":"fit"}},"source_status_id":663678477888045056,"source_status_id_str":"663678477888045056","source_user_id":3365666207,"source_user_id_str":"3365666207"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105659"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185968840705,"id_str":"663728185968840705","text":"https:\/\/t.co\/YzNsrqEXQf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1932679208,"id_str":"1932679208","name":"Maria Rumley","screen_name":"mrs_rumley","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":190,"friends_count":708,"listed_count":8,"favourites_count":114,"statuses_count":3014,"created_at":"Fri Oct 04 01:46:04 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000545172505\/e3e90dcbf6f6087de36e00f1dbe9b298_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000545172505\/e3e90dcbf6f6087de36e00f1dbe9b298_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YzNsrqEXQf","expanded_url":"http:\/\/woobox.com\/m8bt5k\/g9gcw8","display_url":"woobox.com\/m8bt5k\/g9gcw8","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080105665"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960349696,"id_str":"663728185960349696","text":"RT @uipmoviesph: Scouts, zombies, strippers & killer cats! Get ready for the ZOMBIE apocalypse! #ScoutsVsZombies\nhttps:\/\/t.co\/nuKAyTT7hp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908176457,"id_str":"2908176457","name":"Faith Caronan","screen_name":"faithheyy","location":null,"url":null,"description":"To win his heart is to lose everything \/\/ ByFrvr.","protected":false,"verified":false,"followers_count":92,"friends_count":75,"listed_count":0,"favourites_count":10,"statuses_count":1130,"created_at":"Sun Nov 23 13:23:44 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/536861873400864768\/h1tB8We5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/536861873400864768\/h1tB8We5.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622753619499028480\/sOQQfI2g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622753619499028480\/sOQQfI2g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908176457\/1437311006","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Oct 28 10:23:59 +0000 2015","id":659314662471655424,"id_str":"659314662471655424","text":"Scouts, zombies, strippers & killer cats! Get ready for the ZOMBIE apocalypse! #ScoutsVsZombies\nhttps:\/\/t.co\/nuKAyTT7hp","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2838686466,"id_str":"2838686466","name":"United Int'l Pics PH","screen_name":"uipmoviesph","location":"Philippines","url":"https:\/\/www.facebook.com\/uipmoviesph","description":"This is the official account of United International Pictures Philippines, a joint venture of Paramount Pictures and Universal Pictures.","protected":false,"verified":true,"followers_count":9456,"friends_count":552,"listed_count":20,"favourites_count":8766,"statuses_count":7857,"created_at":"Fri Oct 03 05:57:18 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663659030506696704\/ofV2iBYE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663659030506696704\/ofV2iBYE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2838686466\/1446603781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":851,"favorite_count":1460,"entities":{"hashtags":[{"text":"ScoutsVsZombies","indices":[83,99]}],"urls":[{"url":"https:\/\/t.co\/nuKAyTT7hp","expanded_url":"https:\/\/amp.twimg.com\/v\/2f5117f1-131c-4ff2-8773-575b601e2863","display_url":"amp.twimg.com\/v\/2f5117f1-131\u2026","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ScoutsVsZombies","indices":[100,116]}],"urls":[{"url":"https:\/\/t.co\/nuKAyTT7hp","expanded_url":"https:\/\/amp.twimg.com\/v\/2f5117f1-131c-4ff2-8773-575b601e2863","display_url":"amp.twimg.com\/v\/2f5117f1-131\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"uipmoviesph","name":"United Int'l Pics PH","id":2838686466,"id_str":"2838686466","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105663"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185968738304,"id_str":"663728185968738304","text":"RT @COLD_NIGHT1110: [18CAPS UP] 150920\uc5b4\uc1a1\ud3ec\uc720 #\ube45\uc2a4 #VIXX #\ube45\uc2a4LR #LEO #\ub808\uc624 #\ud0dd\uc6b4\n\n\ud558\uc597\uac8c \ubd80\uc11c\uc9c0\ub294 \uaf43\uac00\ub8e8 \ub418\uc5b4\n\uadf8\ub300 \uaf43 \uc704\uc5d0 \uc549\uace0 \uc2f6\uc5b4\ub77c\n\n\u25b6\ufe0fhttp:\/\/t.co\/6H8IB2RkhL http:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":811956092,"id_str":"811956092","name":"ST\u2606RLIGHT_LEO","screen_name":"SolehaAloha","location":"SevenTeen","url":null,"description":"The Wife Of\n\u2665 @JUNGTW_LEO and @RedBeans93 \u2665\nYeoja Chingu Of Wen JunHui \u2661\n Instagram: soleha_zulkifli","protected":false,"verified":false,"followers_count":806,"friends_count":385,"listed_count":1,"favourites_count":1891,"statuses_count":46629,"created_at":"Sun Sep 09 00:14:24 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579882595049029633\/VdeEwC1W.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579882595049029633\/VdeEwC1W.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D4CEAB","profile_text_color":"E2B0A4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662892867438837760\/mEVsaXaH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662892867438837760\/mEVsaXaH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811956092\/1446313703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 23 05:09:35 +0000 2015","id":646551965837627392,"id_str":"646551965837627392","text":"[18CAPS UP] 150920\uc5b4\uc1a1\ud3ec\uc720 #\ube45\uc2a4 #VIXX #\ube45\uc2a4LR #LEO #\ub808\uc624 #\ud0dd\uc6b4\n\n\ud558\uc597\uac8c \ubd80\uc11c\uc9c0\ub294 \uaf43\uac00\ub8e8 \ub418\uc5b4\n\uadf8\ub300 \uaf43 \uc704\uc5d0 \uc549\uace0 \uc2f6\uc5b4\ub77c\n\n\u25b6\ufe0fhttp:\/\/t.co\/6H8IB2RkhL http:\/\/t.co\/1ep69B2pka","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":646546797083529217,"in_reply_to_status_id_str":"646546797083529217","in_reply_to_user_id":2547989730,"in_reply_to_user_id_str":"2547989730","in_reply_to_screen_name":"COLD_NIGHT1110","user":{"id":2547989730,"id_str":"2547989730","name":"\ucc28\uac00\uc6b4 \ubc24\uc5d0","screen_name":"COLD_NIGHT1110","location":"\uc790\ub8cc\ub294 \uad00\uc2ec\uae00\uc5d0","url":"http:\/\/vixxleo.kro.kr","description":"\uc5b5\ub9cc \uacb9\uc758 \uc0ac\ub791\uc744 \ub2f4\uc544, \ud0dd\uc6b4\uc774\uc5d0\uac8c.","protected":false,"verified":false,"followers_count":3106,"friends_count":87,"listed_count":74,"favourites_count":745,"statuses_count":8856,"created_at":"Thu Jun 05 11:57:34 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502826826075361281\/pAfiEmge.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502826826075361281\/pAfiEmge.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663331509185609729\/d4OFBUUt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663331509185609729\/d4OFBUUt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547989730\/1446986276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":80,"favorite_count":83,"entities":{"hashtags":[{"text":"\ube45\uc2a4","indices":[23,26]},{"text":"VIXX","indices":[27,32]},{"text":"\ube45\uc2a4LR","indices":[33,38]},{"text":"LEO","indices":[39,43]},{"text":"\ub808\uc624","indices":[44,47]},{"text":"\ud0dd\uc6b4","indices":[48,51]}],"urls":[{"url":"http:\/\/t.co\/6H8IB2RkhL","expanded_url":"http:\/\/vixxleo.kro.kr\/286","display_url":"vixxleo.kro.kr\/286","indices":[87,109]}],"user_mentions":[],"symbols":[],"media":[{"id":646551949777567744,"id_str":"646551949777567744","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":910,"h":1024,"resize":"fit"},"medium":{"w":600,"h":675,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646551949777567744,"id_str":"646551949777567744","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":910,"h":1024,"resize":"fit"},"medium":{"w":600,"h":675,"resize":"fit"}}},{"id":646551949773398016,"id_str":"646551949773398016","indices":[110,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp8UYAAxmIm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp8UYAAxmIm.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ube45\uc2a4","indices":[43,46]},{"text":"VIXX","indices":[47,52]},{"text":"\ube45\uc2a4LR","indices":[53,58]},{"text":"LEO","indices":[59,63]},{"text":"\ub808\uc624","indices":[64,67]},{"text":"\ud0dd\uc6b4","indices":[68,71]}],"urls":[{"url":"http:\/\/t.co\/6H8IB2RkhL","expanded_url":"http:\/\/vixxleo.kro.kr\/286","display_url":"vixxleo.kro.kr\/286","indices":[107,129]}],"user_mentions":[{"screen_name":"COLD_NIGHT1110","name":"\ucc28\uac00\uc6b4 \ubc24\uc5d0","id":2547989730,"id_str":"2547989730","indices":[3,18]}],"symbols":[],"media":[{"id":646551949777567744,"id_str":"646551949777567744","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":910,"h":1024,"resize":"fit"},"medium":{"w":600,"h":675,"resize":"fit"}},"source_status_id":646551965837627392,"source_status_id_str":"646551965837627392","source_user_id":2547989730,"source_user_id_str":"2547989730"}]},"extended_entities":{"media":[{"id":646551949777567744,"id_str":"646551949777567744","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp9UAAAU1BN.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":382,"resize":"fit"},"large":{"w":910,"h":1024,"resize":"fit"},"medium":{"w":600,"h":675,"resize":"fit"}},"source_status_id":646551965837627392,"source_status_id_str":"646551965837627392","source_user_id":2547989730,"source_user_id_str":"2547989730"},{"id":646551949773398016,"id_str":"646551949773398016","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CPkDkp8UYAAxmIm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPkDkp8UYAAxmIm.jpg","url":"http:\/\/t.co\/1ep69B2pka","display_url":"pic.twitter.com\/1ep69B2pka","expanded_url":"http:\/\/twitter.com\/COLD_NIGHT1110\/status\/646551965837627392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":646551965837627392,"source_status_id_str":"646551965837627392","source_user_id":2547989730,"source_user_id_str":"2547989730"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080105665"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185968738305,"id_str":"663728185968738305","text":"@Hay_akarin souka~ siap siap buat besok sekolah","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663221900999397380,"in_reply_to_status_id_str":"663221900999397380","in_reply_to_user_id":2810637608,"in_reply_to_user_id_str":"2810637608","in_reply_to_screen_name":"Hay_akarin","user":{"id":1110442303,"id_str":"1110442303","name":"\u5409\u7530\u4ec1\u4eba","screen_name":"yoshidajinto","location":"Satsuma, Kagoshima","url":"http:\/\/sd-milk.com","description":"RP\/FAKE \u30fb M!LK\u306e\u30ec\u30e2\u30f3\u725b\u4e73\u62c5\u5f53\u5409\u7530\u4ec1\u4eba\u3067\u3059\uff01\u30c1\u30a7\u30b9\u30c8\u30fc\uff01\u30fb @bt06_FYusuke \u3068\u4e00\u7dd2\u306b \u9ec4\u8272\u540c\u76df(((o(*\uff9f\u25bd\uff9f*)o))) \u30fb Stardust Promotion \u30fb Official Twitter: @milk_info @ebi_dan @milk1422","protected":false,"verified":false,"followers_count":1336,"friends_count":244,"listed_count":7,"favourites_count":41,"statuses_count":28376,"created_at":"Tue Jan 22 02:11:08 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFAA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582457479461625856\/G9s11s_P.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582457479461625856\/G9s11s_P.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647066276464988160\/6kFA_Yga_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647066276464988160\/6kFA_Yga_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1110442303\/1443022518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hay_akarin","name":"keiko [ts]","id":2810637608,"id_str":"2810637608","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080105665"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185956171776,"id_str":"663728185956171776","text":"RT @itsamazingtweet: Whoa! Celebrity Camel Toe (That's going too far.)>>>> https:\/\/t.co\/4IXrK17Ppd https:\/\/t.co\/41oMKcbUWw\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2959324652,"id_str":"2959324652","name":"Tattoos","screen_name":"DaiIyTatts","location":null,"url":null,"description":"Posting the sickest tattoos to inspire you!","protected":false,"verified":false,"followers_count":48874,"friends_count":53889,"listed_count":56,"favourites_count":37,"statuses_count":29431,"created_at":"Mon Jan 05 07:53:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658723940328603648\/zERLqFdX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658723940328603648\/zERLqFdX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959324652\/1445887386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:13:42 +0000 2015","id":663570132455657472,"id_str":"663570132455657472","text":"Whoa! Celebrity Camel Toe (That's going too far.)>>>> https:\/\/t.co\/4IXrK17Ppd https:\/\/t.co\/41oMKcbUWw\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1489600321,"id_str":"1489600321","name":"Funny Tweets!","screen_name":"itsamazingtweet","location":"Worldwide","url":null,"description":null,"protected":false,"verified":false,"followers_count":131381,"friends_count":136582,"listed_count":282,"favourites_count":4,"statuses_count":503,"created_at":"Fri Jun 07 05:27:57 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470680052368039936\/v0J8q8ZA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470680052368039936\/v0J8q8ZA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1489600321\/1401053864","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":27,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4IXrK17Ppd","expanded_url":"http:\/\/bit.ly\/1kq6iqU","display_url":"bit.ly\/1kq6iqU","indices":[66,89]}],"user_mentions":[],"symbols":[],"media":[{"id":661645231721353216,"id_str":"661645231721353216","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","url":"https:\/\/t.co\/41oMKcbUWw","display_url":"pic.twitter.com\/41oMKcbUWw","expanded_url":"http:\/\/twitter.com\/lovelyimagek\/status\/661645234493755393\/photo\/1","type":"photo","sizes":{"medium":{"w":205,"h":246,"resize":"fit"},"large":{"w":205,"h":246,"resize":"fit"},"small":{"w":205,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661645234493755393,"source_status_id_str":"661645234493755393","source_user_id":3278260933,"source_user_id_str":"3278260933"}]},"extended_entities":{"media":[{"id":661645231721353216,"id_str":"661645231721353216","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","url":"https:\/\/t.co\/41oMKcbUWw","display_url":"pic.twitter.com\/41oMKcbUWw","expanded_url":"http:\/\/twitter.com\/lovelyimagek\/status\/661645234493755393\/photo\/1","type":"photo","sizes":{"medium":{"w":205,"h":246,"resize":"fit"},"large":{"w":205,"h":246,"resize":"fit"},"small":{"w":205,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661645234493755393,"source_status_id_str":"661645234493755393","source_user_id":3278260933,"source_user_id_str":"3278260933"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4IXrK17Ppd","expanded_url":"http:\/\/bit.ly\/1kq6iqU","display_url":"bit.ly\/1kq6iqU","indices":[87,110]}],"user_mentions":[{"screen_name":"itsamazingtweet","name":"Funny Tweets!","id":1489600321,"id_str":"1489600321","indices":[3,19]}],"symbols":[],"media":[{"id":661645231721353216,"id_str":"661645231721353216","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","url":"https:\/\/t.co\/41oMKcbUWw","display_url":"pic.twitter.com\/41oMKcbUWw","expanded_url":"http:\/\/twitter.com\/lovelyimagek\/status\/661645234493755393\/photo\/1","type":"photo","sizes":{"medium":{"w":205,"h":246,"resize":"fit"},"large":{"w":205,"h":246,"resize":"fit"},"small":{"w":205,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661645234493755393,"source_status_id_str":"661645234493755393","source_user_id":3278260933,"source_user_id_str":"3278260933"}]},"extended_entities":{"media":[{"id":661645231721353216,"id_str":"661645231721353216","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS6i1SwVEAArmqt.jpg","url":"https:\/\/t.co\/41oMKcbUWw","display_url":"pic.twitter.com\/41oMKcbUWw","expanded_url":"http:\/\/twitter.com\/lovelyimagek\/status\/661645234493755393\/photo\/1","type":"photo","sizes":{"medium":{"w":205,"h":246,"resize":"fit"},"large":{"w":205,"h":246,"resize":"fit"},"small":{"w":205,"h":246,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661645234493755393,"source_status_id_str":"661645234493755393","source_user_id":3278260933,"source_user_id_str":"3278260933"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080105662"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935179776,"id_str":"663728185935179776","text":"RT @Filmmiieiei19: \u0e2b\u0e25\u0e48\u0e2d\u0e21\u0e32\u0e01\u0e2d\u0e30\u0e1e\u0e35\u0e48\u0e2a\u0e34\u0e19\u0e19\u0e19 \u0e22\u0e34\u0e49\u0e21\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e01 \ud83d\ude04\ud83d\ude04 #\u0e17\u0e35\u0e21\u0e1a\u0e38\u0e0d\u0e2a\u0e34\u0e19 #\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e31\u0e49\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e38\u0e0d\u0e23\u0e2d\u0e14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2793999817,"id_str":"2793999817","name":"\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32.\u221e","screen_name":"Ts_ifnt","location":"Yaoi.","url":null,"description":"Ishimaru Kazuki \n\u203b Liw sag \u203b ...........\neverybody sees\nbut not everyone can feel .\n.\n.\n.\n\u0e17\u0e38\u0e01\u0e04\u0e19\u0e40\u0e2b\u0e47\u0e19\n\u0e41\u0e15\u0e48\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e17\u0e38\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01.\n\nINFINITE | EXO \u2661\u2661 INSPIRIT | EXO-L","protected":false,"verified":false,"followers_count":88,"friends_count":920,"listed_count":0,"favourites_count":1833,"statuses_count":16663,"created_at":"Sat Sep 06 13:46:34 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663165878075195396\/__FmVSeQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663165878075195396\/__FmVSeQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2793999817\/1446946100","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:57 +0000 2015","id":663727229994557440,"id_str":"663727229994557440","text":"\u0e2b\u0e25\u0e48\u0e2d\u0e21\u0e32\u0e01\u0e2d\u0e30\u0e1e\u0e35\u0e48\u0e2a\u0e34\u0e19\u0e19\u0e19 \u0e22\u0e34\u0e49\u0e21\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e01 \ud83d\ude04\ud83d\ude04 #\u0e17\u0e35\u0e21\u0e1a\u0e38\u0e0d\u0e2a\u0e34\u0e19 #\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e31\u0e49\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e38\u0e0d\u0e23\u0e2d\u0e14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1390044776,"id_str":"1390044776","name":"\u0e19\u0e49\u0e2d\u0e07\u0e1f\u0e34\u0e25\u0e4c\u0e21\u0e23\u0e31\u0e01\u0e1e\u0e35\u0e48\u0e2d\u0e49\u0e19 \u2764","screen_name":"Filmmiieiei19","location":"\u0e44\u0e21\u0e48\u0e23\u0e31\u0e1a\u0e1b\u0e32\u0e01\u0e41\u0e15\u0e48\u0e08\u0e30\u0e1e\u0e22\u0e32\u0e22\u0e32\u0e21 ","url":null,"description":"Support : @Aoncong @Aonkorakot19 \u2661 \u0e2d\u0e49 \u0e19 \u0e01 \u0e23 \u0e01 \u0e0e \u0e15\u0e38\u0e48 \u0e19 \u0e40 \u0e40 \u0e01\u0e49 \u0e27 \u0e04 \u0e19 \u0e02 \u0e2d \u0e07 \u0e1e\u0e35\u0e48 \u0e2d\u0e49 \u0e19 \u0e40 \u0e1e \u0e23 \u0e32 \u0e30 \u0e1e\u0e35\u0e48 \u0e2d\u0e49 \u0e19 \u0e04 \u0e19 \u0e19\u0e35\u0e49 \u0e14\u0e35 \u0e17\u0e35\u0e48 \u0e2a\u0e38 \u0e14 \u0e40 \u0e40 \u0e25\u0e49 \u0e27 \u0e23\u0e31 \u0e01 \u0e17\u0e35\u0e48 \u0e2a\u0e38 \u0e14 \u0e1e\u0e35\u0e48 \u0e25\u0e31 \u0e01 \u0e22\u0e34\u0e49 \u0e21","protected":false,"verified":false,"followers_count":252,"friends_count":78,"listed_count":1,"favourites_count":6028,"statuses_count":28940,"created_at":"Mon Apr 29 17:37:32 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"1DAAF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000099451636\/7c2a511e2087e56a14ae1d46183c36a4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000099451636\/7c2a511e2087e56a14ae1d46183c36a4.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661179726036250625\/u2jiiwQw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661179726036250625\/u2jiiwQw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390044776\/1445694170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e1a\u0e38\u0e0d\u0e2a\u0e34\u0e19","indices":[34,44]},{"text":"\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e31\u0e49\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e38\u0e0d\u0e23\u0e2d\u0e14","indices":[45,69]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e17\u0e35\u0e21\u0e1a\u0e38\u0e0d\u0e2a\u0e34\u0e19","indices":[53,63]},{"text":"\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e31\u0e49\u0e19\u0e0a\u0e37\u0e48\u0e2d\u0e1a\u0e38\u0e0d\u0e23\u0e2d\u0e14","indices":[64,88]}],"urls":[],"user_mentions":[{"screen_name":"Filmmiieiei19","name":"\u0e19\u0e49\u0e2d\u0e07\u0e1f\u0e34\u0e25\u0e4c\u0e21\u0e23\u0e31\u0e01\u0e1e\u0e35\u0e48\u0e2d\u0e49\u0e19 \u2764","id":1390044776,"id_str":"1390044776","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935200261,"id_str":"663728185935200261","text":"@eunjiianm aminnn makasih unniyak\ud83d\udc9e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663690337915801600,"in_reply_to_status_id_str":"663690337915801600","in_reply_to_user_id":3316889588,"in_reply_to_user_id_str":"3316889588","in_reply_to_screen_name":"eunjiianm","user":{"id":3300823976,"id_str":"3300823976","name":"seulgi","screen_name":"seulgianm","location":"naruto 05","url":null,"description":"\uc721\uc131\uc7ac's-Redeu Velveteu's sseulbear- garis 94","protected":false,"verified":false,"followers_count":70,"friends_count":51,"listed_count":1,"favourites_count":454,"statuses_count":5503,"created_at":"Wed Jul 29 19:22:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663330786318270464\/omA_g0iJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663330786318270464\/omA_g0iJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3300823976\/1446967589","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eunjiianm","name":"nji[LH]","id":3316889588,"id_str":"3316889588","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960325121,"id_str":"663728185960325121","text":"@trr_arpeggio \u3064\u3064\u304d\u3084\u3059\u305d\u3046\u3063\u3066\u3053\u3068\u3067\u3059\u304b\u306d\uff01\uff1f(\u00b4\u30fb\u03c9\u30fb\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726613075333120,"in_reply_to_status_id_str":"663726613075333120","in_reply_to_user_id":2201060088,"in_reply_to_user_id_str":"2201060088","in_reply_to_screen_name":"trr_arpeggio","user":{"id":1536708481,"id_str":"1536708481","name":"\u305f\u3060_1118\u3086\u305a\u4ee3\u3005\u6728","screen_name":"rain_azure","location":"\u5317\u4e5d\u5dde\u2192\u798f\u5ca1\u2192\u5ddd\u5d0e","url":"http:\/\/twpf.jp\/rain_azure","description":"\u65e7HN\uff1a\u308c\u3044\u3093\u3002SE(SIer)\u3002SCRAP\u95a2\u6771\u30dc\u30e9\u30b9\u30bf\u3002\u2642\u3002 \u597d\u304d\u306a\u3082\u306e\uff1a\u8aad\u66f8\u3001\u30ea\u30a2\u30eb\u8131\u51fa\u30b2\u30fc\u30e0\u3001\u97f3\u697d\uff08\u3086\u305a\u3001BUMP\u3001\u798f\u5c71\u96c5\u6cbb\u3001\u3044\u304d\u3082\u306e\u304c\u304b\u308a\u3001\u30fb\u30fb\u30fb\uff09\u3002\u30c1\u30e7\u30b3\u30df\u30f3\u515a\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u53c2\u7167\u3002\u30de\u30a4\u30da\u30fc\u30b9\u306b\u6b69\u3044\u3066\u3044\u3051\u3070\u3044\u3044\u3055\u266a","protected":false,"verified":false,"followers_count":137,"friends_count":235,"listed_count":3,"favourites_count":399,"statuses_count":4881,"created_at":"Fri Jun 21 14:57:35 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"30B9D1","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639071210970591232\/Pc_bWAIT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639071210970591232\/Pc_bWAIT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536708481\/1441201195","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"trr_arpeggio","name":"\u3086\u3042","id":2201060088,"id_str":"2201060088","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105663"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935339522,"id_str":"663728185935339522","text":"@Harry_Styles IS WAT TOO HOT IN ARGENTINA. TAKE ME WITH YOU.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":181561712,"in_reply_to_user_id_str":"181561712","in_reply_to_screen_name":"Harry_Styles","user":{"id":341634037,"id_str":"341634037","name":"4 \u262a","screen_name":"allhislovex","location":"between harry's legs ;) \u2764","url":"http:\/\/smarturl.it\/1DmitamDXiT","description":"\u275dPlease don't forget us, we will always be here for you\u275e- Harry \u2764 [[luke+5sos\/4 ~ :(\/5]] (used to be defensedreams)","protected":false,"verified":false,"followers_count":777,"friends_count":2024,"listed_count":13,"favourites_count":20928,"statuses_count":56212,"created_at":"Sun Jul 24 18:04:10 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648989867708444672\/DvJ1awV2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648989867708444672\/DvJ1awV2.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C29DB8","profile_text_color":"52394C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648988756276588544\/MkIIgNZb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648988756276588544\/MkIIgNZb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/341634037\/1416186157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935138816,"id_str":"663728185935138816","text":"RT @MyoyoShinnyo: \u8ab0\u3060\u3088\u3053\u3093\u306a\u306e\u5efa\u3066\u305f\u306e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98670889,"id_str":"98670889","name":"\u3042\u3044","screen_name":"RoiDesHaricot","location":"\u304b\u308d\u3046\u3058\u3066\u6771\u4eac","url":null,"description":"\u6691\u3044\u3068\u6eb6\u3051\u308b\u3057\u5bd2\u3044\u3068\u51ac\u7720\u3059\u308b\u3002","protected":false,"verified":false,"followers_count":44,"friends_count":38,"listed_count":1,"favourites_count":343,"statuses_count":10822,"created_at":"Tue Dec 22 16:38:55 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1164536845\/loop_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1164536845\/loop_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98670889\/1401084466","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:24:23 +0000 2015","id":663693614329917445,"id_str":"663693614329917445","text":"\u8ab0\u3060\u3088\u3053\u3093\u306a\u306e\u5efa\u3066\u305f\u306e\u3002","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246293965,"id_str":"246293965","name":"\u3053\u306a\u305f\u307e\uff08CV:\u6e21\u8fba\u4e45\u7f8e\u5b50\uff09","screen_name":"MyoyoShinnyo","location":"\u30c9\u30a4\u30c4\u5e1d\u56fd\u6b74\u53f2\u4fee\u6b63\u5c40","url":"http:\/\/snudge.blog38.fc2.com\/blog-entry-182.html","description":"\u697d\u3057\u3082\u3046my life\u301c\u2661 \/(\u0e51\u2579\u03c9\u2579\u0e51 )\/\u304a\u3057\u3083\u308c\/\u7f8e\u5bb9\/\u5360\u3044\/\u30c0\u30a4\u30a8\u30c3\u30c8\/\u304a\u51fa\u304b\u3051\/\u5c0f\u3055\u3044\u3082\u306e\/\u53ef\u611b\u3044\u3082\u306e\/\u30b3\u30b9\u30e1\/\u30cd\u30a4\u30eb\/\u304a\u9152\/\u3068\u3046\u3089\u3076\/\u9cf4\u72d0\/\u8aad\u66f8\/\u6620\u753b\/\u6d0b\u670d\/\u30ad\u30ec\u30a4\u306a\u5834\u6240\/\u6563\u6b69\/\u7652\u3057\u305f\u3044\/\u7652\u3055\u308c\u305f\u3044\/\u5922\u306b\u5411\u304b\u3063\u3066\/\u81ea\u5206\u3089\u3057\u304f\/L\u2661VE\/\u25c6Qx5\/ucOICU\/\u3053\u306e\u30a2\u30a4\u30b3\u30f3\u3092\u63cf\u3044\u3066\u304f\u308c\u305f\u4eba\u3092\u63a2\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":14537,"friends_count":32,"listed_count":936,"favourites_count":135,"statuses_count":88957,"created_at":"Wed Feb 02 14:39:34 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"49575A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602925292\/8b1e9nd7qdfvjypk9cym.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602925292\/8b1e9nd7qdfvjypk9cym.jpeg","profile_background_tile":false,"profile_link_color":"DE0404","profile_sidebar_border_color":"F1D4AA","profile_sidebar_fill_color":"ECECC6","profile_text_color":"3D3B49","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000389607856\/69db0f37bdfb26e5b43a39fb30811394_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000389607856\/69db0f37bdfb26e5b43a39fb30811394_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246293965\/1356961043","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MyoyoShinnyo","name":"\u3053\u306a\u305f\u307e\uff08CV:\u6e21\u8fba\u4e45\u7f8e\u5b50\uff09","id":246293965,"id_str":"246293965","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947852800,"id_str":"663728185947852800","text":"I'm laughing and crying https:\/\/t.co\/SFBaLmNSLY","source":"\u003ca href=\"http:\/\/vine.co\" rel=\"nofollow\"\u003eVine - Make a Scene\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1966044853,"id_str":"1966044853","name":"Confused Calum","screen_name":"marley_marshall","location":"California, USA","url":"http:\/\/youtu.be\/LhcPGfiKBGY","description":"i will never be tumbr","protected":false,"verified":false,"followers_count":741,"friends_count":1119,"listed_count":1,"favourites_count":29846,"statuses_count":6902,"created_at":"Thu Oct 17 03:43:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660916038482030592\/L3-b4PGV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660916038482030592\/L3-b4PGV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1966044853\/1446013215","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SFBaLmNSLY","expanded_url":"https:\/\/vine.co\/v\/elWpQwUY3ei","display_url":"vine.co\/v\/elWpQwUY3ei","indices":[25,48]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960329216,"id_str":"663728185960329216","text":"FORREAL! https:\/\/t.co\/YkzdFjgYpF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30703016,"id_str":"30703016","name":"yellow iverson","screen_name":"Jonwuwho","location":null,"url":null,"description":"i ocassionally say cool shit but dont quote me on that IG\/@_jonswu","protected":false,"verified":false,"followers_count":485,"friends_count":445,"listed_count":1,"favourites_count":8986,"statuses_count":42965,"created_at":"Sun Apr 12 19:18:08 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/138960078\/l_911a16f7b5004c12bd31bda70857fb9d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/138960078\/l_911a16f7b5004c12bd31bda70857fb9d.gif","profile_background_tile":true,"profile_link_color":"F51818","profile_sidebar_border_color":"CDD7EB","profile_sidebar_fill_color":"E7E6EB","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617540312496410624\/E0vTOWqS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617540312496410624\/E0vTOWqS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30703016\/1435108403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663636342765543424,"quoted_status_id_str":"663636342765543424","quoted_status":{"created_at":"Mon Nov 09 08:36:48 +0000 2015","id":663636342765543424,"id_str":"663636342765543424","text":"two weeks out of work and my sleep schedule turns into shit. coooooool","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26903556,"id_str":"26903556","name":"jesslyn","screen_name":"Jesslalalyn","location":null,"url":null,"description":"too high for this","protected":false,"verified":false,"followers_count":480,"friends_count":378,"listed_count":2,"favourites_count":11469,"statuses_count":17499,"created_at":"Fri Mar 27 00:40:22 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493097982\/tumblr_ld68vlXfPC1qb8a3ro1_500.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493097982\/tumblr_ld68vlXfPC1qb8a3ro1_500.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"363536","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661782559303471104\/90CUH2Jb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661782559303471104\/90CUH2Jb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26903556\/1446419299","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YkzdFjgYpF","expanded_url":"https:\/\/twitter.com\/jesslalalyn\/status\/663636342765543424","display_url":"twitter.com\/jesslalalyn\/st\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105663"} +{"delete":{"status":{"id":635796226856906754,"id_str":"635796226856906754","user_id":384426280,"user_id_str":"384426280"},"timestamp_ms":"1447080105800"}} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185947717632,"id_str":"663728185947717632","text":"@extrema_pt3 \u3057\u304b\u3082\u30b9\u30ad\u30eb\u30de","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727958629023749,"in_reply_to_status_id_str":"663727958629023749","in_reply_to_user_id":1274109170,"in_reply_to_user_id_str":"1274109170","in_reply_to_screen_name":"extrema_pt3","user":{"id":106370798,"id_str":"106370798","name":"\u512a\u3005@\u4ed9\u53f0\u8ee2\u52e4","screen_name":"yuuyuu573","location":"\u5343\u8449\u770c\u8239\u6a4b\u5e02","url":null,"description":"\u91d1\u878d\u7cfb\u55b6\u696d\u30de\u30f3\/\u30de\u30f3\u30ac\u8aad\u307f\/\u8239\u6a4b\u5e02\u6c11\/IIDX\u7247\u624b\u30d7\u30ec\u30a4\u30e4\u30fc(U-2@6175-0353 \u672a\u30af\u30ea\u30a225)\/\u4f0a\u96c6\u9662\u30ea\u30b9\u30ca\u30fc\/\u5800\u3055\u3093\u3068\u5bae\u6751\u304f\u3093\/\u30c6\u30cb\u30b9\u306e\u738b\u5b50\u69d8\/\u30dc\u30ab\u30ed\u52e2\/\u3055\u308a\u3052\u8150\u7537\u5b50\/\uff71\uff72\uff7a\uff9d\u306f@OOOCHIYOOO thx!!!","protected":false,"verified":false,"followers_count":1208,"friends_count":1328,"listed_count":141,"favourites_count":20571,"statuses_count":173996,"created_at":"Tue Jan 19 10:11:15 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"888888","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/72002305\/red_line_install.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/72002305\/red_line_install.jpg","profile_background_tile":false,"profile_link_color":"CDCDCD","profile_sidebar_border_color":"ACACAC","profile_sidebar_fill_color":"888888","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441112168713289728\/ikYlPMST_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441112168713289728\/ikYlPMST_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106370798\/1351699820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"extrema_pt3","name":"\u9ebb\u751f","id":1274109170,"id_str":"1274109170","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105660"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185939333120,"id_str":"663728185939333120","text":"RT @B1A4_CNU: \ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":256522385,"id_str":"256522385","name":"\ub2e4\uc19c","screen_name":"dmsrud0712","location":null,"url":null,"description":"To me, you are perfect \u2665","protected":false,"verified":false,"followers_count":34,"friends_count":66,"listed_count":3,"favourites_count":292,"statuses_count":3973,"created_at":"Wed Feb 23 14:23:45 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606779511728832512\/Zccgx3uq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606779511728832512\/Zccgx3uq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/256522385\/1439990199","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728098232238080,"id_str":"663728098232238080","text":"\ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187806925,"id_str":"187806925","name":"\uc2e0\ub3d9\uc6b0","screen_name":"B1A4_CNU","location":null,"url":null,"description":"Hello~ I'm C-NU","protected":false,"verified":true,"followers_count":668756,"friends_count":51,"listed_count":8493,"favourites_count":27,"statuses_count":448,"created_at":"Tue Sep 07 05:37:35 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187806925\/1357579369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":143,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[47,54]},{"text":"B1A4","indices":[55,60]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[61,68]},{"text":"B1A4","indices":[69,74]}],"urls":[],"user_mentions":[{"screen_name":"B1A4_CNU","name":"\uc2e0\ub3d9\uc6b0","id":187806925,"id_str":"187806925","indices":[3,12]}],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080105658"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935183872,"id_str":"663728185935183872","text":"RT @Ieansquad: How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":894384949,"id_str":"894384949","name":"Johnny \u303d\ufe0fay Ca\u26a1\ufe0fh","screen_name":"Ispeaktruwords","location":null,"url":null,"description":"#Bullsnation","protected":false,"verified":false,"followers_count":219,"friends_count":389,"listed_count":0,"favourites_count":573,"statuses_count":2363,"created_at":"Sun Oct 21 01:26:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660645962625478657\/Mty9fbN0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660645962625478657\/Mty9fbN0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/894384949\/1406778556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jun 17 19:13:40 +0000 2015","id":611250376524730369,"id_str":"611250376524730369","text":"How chief keef be in the studio http:\/\/t.co\/IPUdTmalyq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2496762631,"id_str":"2496762631","name":"Leansquad","screen_name":"Ieansquad","location":"DM for Promo","url":null,"description":"Unofficial Fan Account. Follow the squad: @leanandcuisine, @youfunnyb, @retro_spectro_ \nTurn on Notifications to be notified when new videos drop.","protected":false,"verified":false,"followers_count":156631,"friends_count":12,"listed_count":44,"favourites_count":12,"statuses_count":155,"created_at":"Thu May 15 17:02:05 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2496762631\/1431299803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19721,"favorite_count":19276,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[32,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ieansquad","name":"Leansquad","id":2496762631,"id_str":"2496762631","indices":[3,13]}],"symbols":[],"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445"}]},"extended_entities":{"media":[{"id":582986021870170113,"id_str":"582986021870170113","indices":[47,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/582986021870170113\/pu\/img\/6Cy93sozKxqK4XYR.jpg","url":"http:\/\/t.co\/IPUdTmalyq","display_url":"pic.twitter.com\/IPUdTmalyq","expanded_url":"http:\/\/twitter.com\/Retro_Spectro_\/status\/582986158617030656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":582986158617030656,"source_status_id_str":"582986158617030656","source_user_id":126336445,"source_user_id_str":"126336445","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/pl\/NECgHsQC05kSkNj4.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/320x180\/77JqbyKc6wzOJXMZ.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/640x360\/WhthGnn5KDvMrAW9.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/582986021870170113\/pu\/vid\/1280x720\/AqcYA6teFVWUEAuS.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185939353600,"id_str":"663728185939353600","text":"\u0e2d\u0e35\u0e40\u0e2b\u0e35\u0e49\u0e22\u0e02\u0e335555555555555555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2932410967,"id_str":"2932410967","name":"aom","screen_name":"aowmii","location":null,"url":null,"description":"\u2022saint joseph bangna \u2022ig:aowmii","protected":false,"verified":false,"followers_count":238,"friends_count":142,"listed_count":0,"favourites_count":1067,"statuses_count":17343,"created_at":"Tue Dec 16 14:30:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723230901858306\/IkD7jCtu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723230901858306\/IkD7jCtu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2932410967\/1438322368","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080105658"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185935163392,"id_str":"663728185935163392","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243015777,"id_str":"3243015777","name":"Abiella Dimitriev","screen_name":"binyvaluqofe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":330,"friends_count":415,"listed_count":6,"favourites_count":18009,"statuses_count":18836,"created_at":"Sat May 09 06:51:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642945770119921664\/N8CJPYlR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642945770119921664\/N8CJPYlR_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":945,"favorite_count":583,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080105657"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960497152,"id_str":"663728185960497152","text":"Pens\u00e9 que no era posible enamorarse todos los d\u00edas de la misma persona.. Hoy se que si \ud83d\udc98\ud83d\ude18 https:\/\/t.co\/GSZNcig8Ya","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1630205192,"id_str":"1630205192","name":"\u263dCriatura Emocional\u263e","screen_name":"QCoty","location":"ZN |Argentinademivida|","url":"https:\/\/www.facebook.com\/cotty.quintana","description":"Amor por la lectura. \u265b Amor por la danza. - Promoci\u00f3n 2015 \u221e XV \u2744\u26c4 \/ MUSICAXFAVOR!\u00bb \/ alta guacha .jodidamente enamorada \u2764. |Tintaenlasangre| \u300aHH\u300bDANCER.","protected":false,"verified":false,"followers_count":372,"friends_count":336,"listed_count":1,"favourites_count":4394,"statuses_count":16989,"created_at":"Mon Jul 29 12:00:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455129966653366272\/7wFQw351.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455129966653366272\/7wFQw351.jpeg","profile_background_tile":true,"profile_link_color":"7D12B3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576701984276930560\/siBaeDdc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576701984276930560\/siBaeDdc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1630205192\/1440214919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728182412091392,"id_str":"663728182412091392","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ-wWoAAZL_g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ-wWoAAZL_g.jpg","url":"https:\/\/t.co\/GSZNcig8Ya","display_url":"pic.twitter.com\/GSZNcig8Ya","expanded_url":"http:\/\/twitter.com\/QCoty\/status\/663728185960497152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728182412091392,"id_str":"663728182412091392","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ-wWoAAZL_g.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ-wWoAAZL_g.jpg","url":"https:\/\/t.co\/GSZNcig8Ya","display_url":"pic.twitter.com\/GSZNcig8Ya","expanded_url":"http:\/\/twitter.com\/QCoty\/status\/663728185960497152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105663"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943560193,"id_str":"663728185943560193","text":"RT @ReusDurmTH: \u0e2d\u0e48\u0e30\u0e46 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e1e\u0e35\u0e48\u0e40\u0e02\u0e32\u0e08\u0e30\u0e19\u0e49\u0e2d\u0e22\u0e43\u0e08 \u0e08\u0e49\u0e32\u0e32\u0e32\u0e32 \u0e2b\u0e25\u0e48\u0e2d\u0e08\u0e49\u0e32\u0e1e\u0e35\u0e48 \u0e2b\u0e25\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e43\u0e19\u0e40\u0e1f\u0e23\u0e21\u0e41\u0e25\u0e49\u0e27 \n#\u0e01\u0e47\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e2b\u0e21\u0e25\u0e48\u0e30 55555555555 https:\/\/t.co\/R2OQy5fd95","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1710156104,"id_str":"1710156104","name":"Crisito \u3002\u3001","screen_name":"ng_luckiiz","location":"\u3010 London, England \u3011","url":null,"description":"Football is my style. Mi Chelsea | Mi beb\u00e9: Lionel Messi 10 | Marco Reus 11","protected":false,"verified":false,"followers_count":131,"friends_count":83,"listed_count":4,"favourites_count":191,"statuses_count":33310,"created_at":"Thu Aug 29 14:19:21 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508112692817559552\/5ob8dlg2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508112692817559552\/5ob8dlg2.jpeg","profile_background_tile":true,"profile_link_color":"52CCA9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649069184618360832\/yPu-uQ1a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649069184618360832\/yPu-uQ1a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1710156104\/1435829721","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:30:43 +0000 2015","id":663695210682028032,"id_str":"663695210682028032","text":"\u0e2d\u0e48\u0e30\u0e46 \u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e1e\u0e35\u0e48\u0e40\u0e02\u0e32\u0e08\u0e30\u0e19\u0e49\u0e2d\u0e22\u0e43\u0e08 \u0e08\u0e49\u0e32\u0e32\u0e32\u0e32 \u0e2b\u0e25\u0e48\u0e2d\u0e08\u0e49\u0e32\u0e1e\u0e35\u0e48 \u0e2b\u0e25\u0e48\u0e2d\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e43\u0e19\u0e40\u0e1f\u0e23\u0e21\u0e41\u0e25\u0e49\u0e27 \n#\u0e01\u0e47\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e2b\u0e21\u0e25\u0e48\u0e30 55555555555 https:\/\/t.co\/R2OQy5fd95","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290620610,"id_str":"3290620610","name":"\u0e1e\u0e35\u0e48\u0e2b\u0e23\u0e2d\u0e22\u0e19\u0e49\u0e2d\u0e07\u0e2b\u0e23\u0e34\u0e04","screen_name":"ReusDurmTH","location":"Thailand","url":null,"description":"Marco Reus and Erik Durm Thai Fans! \u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e17\u0e38\u0e01\u0e04\u0e27\u0e32\u0e21\u0e40\u0e04\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e44\u0e2b\u0e27\u0e02\u0e2d\u0e07\u0e1e\u0e35\u0e48\u0e2b\u0e23\u0e2d\u0e22\u0e19\u0e49\u0e2d\u0e07\u0e2b\u0e23\u0e34\u0e04 #\u0e07\u0e32\u0e19\u0e41\u0e0b\u0e30\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e02\u0e32\u0e14 #\u0e07\u0e32\u0e19\u0e0a\u0e34\u0e1b\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e1e\u0e23\u0e48\u0e2d\u0e07 #\u0e41\u0e25\u0e49\u0e27\u0e21\u0e32\u0e1f\u0e34\u0e19\u0e44\u0e1b\u0e1e\u0e23\u0e49\u0e2d\u0e21\u0e46\u0e01\u0e31\u0e19 \u26bd\u2764","protected":false,"verified":false,"followers_count":325,"friends_count":23,"listed_count":2,"favourites_count":0,"statuses_count":1082,"created_at":"Fri Jul 24 17:44:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652730756679143424\/37LiNltT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652730756679143424\/37LiNltT.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624705546738778112\/aycjVXPK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624705546738778112\/aycjVXPK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290620610\/1438622918","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":9,"entities":{"hashtags":[{"text":"\u0e01\u0e47\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e2b\u0e21\u0e25\u0e48\u0e30","indices":[66,88]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663695208454819840,"id_str":"663695208454819840","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","url":"https:\/\/t.co\/R2OQy5fd95","display_url":"pic.twitter.com\/R2OQy5fd95","expanded_url":"http:\/\/twitter.com\/ReusDurmTH\/status\/663695210682028032\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":304,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663695208454819840,"id_str":"663695208454819840","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","url":"https:\/\/t.co\/R2OQy5fd95","display_url":"pic.twitter.com\/R2OQy5fd95","expanded_url":"http:\/\/twitter.com\/ReusDurmTH\/status\/663695210682028032\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":304,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"video_info":{"aspect_ratio":[135,76],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXrRpMUEAA4nC6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e01\u0e47\u0e21\u0e35\u0e2d\u0e22\u0e39\u0e48\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27\u0e44\u0e2b\u0e21\u0e25\u0e48\u0e30","indices":[82,104]}],"urls":[],"user_mentions":[{"screen_name":"ReusDurmTH","name":"\u0e1e\u0e35\u0e48\u0e2b\u0e23\u0e2d\u0e22\u0e19\u0e49\u0e2d\u0e07\u0e2b\u0e23\u0e34\u0e04","id":3290620610,"id_str":"3290620610","indices":[3,14]}],"symbols":[],"media":[{"id":663695208454819840,"id_str":"663695208454819840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","url":"https:\/\/t.co\/R2OQy5fd95","display_url":"pic.twitter.com\/R2OQy5fd95","expanded_url":"http:\/\/twitter.com\/ReusDurmTH\/status\/663695210682028032\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":304,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663695210682028032,"source_status_id_str":"663695210682028032","source_user_id":3290620610,"source_user_id_str":"3290620610"}]},"extended_entities":{"media":[{"id":663695208454819840,"id_str":"663695208454819840","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXrRpMUEAA4nC6.png","url":"https:\/\/t.co\/R2OQy5fd95","display_url":"pic.twitter.com\/R2OQy5fd95","expanded_url":"http:\/\/twitter.com\/ReusDurmTH\/status\/663695210682028032\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":540,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":540,"h":304,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663695210682028032,"source_status_id_str":"663695210682028032","source_user_id":3290620610,"source_user_id_str":"3290620610","video_info":{"aspect_ratio":[135,76],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXrRpMUEAA4nC6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080105659"} +{"delete":{"status":{"id":537821664247959552,"id_str":"537821664247959552","user_id":1202948870,"user_id_str":"1202948870"},"timestamp_ms":"1447080105882"}} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185960300544,"id_str":"663728185960300544","text":"@yotsuki1125 \u304a\u3063\u3071\u3044\u3060\u3051\u3067\u3048\u3048\u3093\u304b\uff1f\uff08\uff3e\u03c9\uff3e\uff09","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728001905876993,"in_reply_to_status_id_str":"663728001905876993","in_reply_to_user_id":1889057138,"in_reply_to_user_id_str":"1889057138","in_reply_to_screen_name":"yotsuki1125","user":{"id":847665030,"id_str":"847665030","name":"\u30b0\u30e9\u30d6\u30eb\u3042\u3093\u3061\u3083\u3093\u2606\uff08\u00b4p\uff40\uff09","screen_name":"Nukomahuyu","location":"\u5bae\u57ce\u770c","url":null,"description":"\u30b0\u30e9\u30d6\u30eb\u30de\u30fc\u30fc\u30f3\uff01","protected":false,"verified":false,"followers_count":54,"friends_count":72,"listed_count":0,"favourites_count":194,"statuses_count":7900,"created_at":"Wed Sep 26 16:08:23 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663387069767512065\/3JDkKGnE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663387069767512065\/3JDkKGnE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/847665030\/1442717067","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yotsuki1125","name":"\u591c\u6708\u3055\u3093","id":1889057138,"id_str":"1889057138","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105663"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185939394560,"id_str":"663728185939394560","text":"APPRECIATE\u30fc\u77e5\u308b\u3053\u3068\u3067\u4e16\u754c\u306f\u5909\u308f\u308b\u30fc: \u64a4\u53bb\u3055\u308c\u305f\u653e\u7f6e\u81ea\u8ee2\u8eca\u3092\u3069\u3046\u306b\u304b\u3057\u3088\u3046\u3068\u8003\u3048\u3066\u3044\u307e\u3059\uff01 https:\/\/t.co\/cvUfgycTiv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419793780,"id_str":"2419793780","name":"fissa-otynee","screen_name":"westyokko","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45,"friends_count":87,"listed_count":0,"favourites_count":1895,"statuses_count":1256,"created_at":"Mon Mar 31 01:43:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/450596061183107072\/pkKqqbQ3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/450596061183107072\/pkKqqbQ3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419793780\/1396266515","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/cvUfgycTiv","expanded_url":"http:\/\/appreciateanythings.blogspot.com\/2015\/11\/blog-post.html?spref=tw","display_url":"appreciateanythings.blogspot.com\/2015\/11\/blog-p\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105658"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943683073,"id_str":"663728185943683073","text":"https:\/\/t.co\/YwH9EcfcVj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":366362320,"id_str":"366362320","name":"Norm","screen_name":"SPIRITMONZFIRE","location":"IN THE SPIRIT","url":null,"description":"SAVED BY GRACE!!!\r\n #HALLELUJAH!!!","protected":false,"verified":false,"followers_count":9335,"friends_count":3450,"listed_count":87,"favourites_count":8950,"statuses_count":151338,"created_at":"Fri Sep 02 01:34:27 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661908993166729216\/AUmqP-B5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661908993166729216\/AUmqP-B5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/366362320\/1398404658","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728184593022977,"id_str":"663728184593022977","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRG4VAAELZz7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRG4VAAELZz7.jpg","url":"https:\/\/t.co\/YwH9EcfcVj","display_url":"pic.twitter.com\/YwH9EcfcVj","expanded_url":"http:\/\/twitter.com\/SPIRITMONZFIRE\/status\/663728185943683073\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":381,"resize":"fit"},"large":{"w":480,"h":381,"resize":"fit"},"small":{"w":340,"h":269,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728184593022977,"id_str":"663728184593022977","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRG4VAAELZz7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRG4VAAELZz7.jpg","url":"https:\/\/t.co\/YwH9EcfcVj","display_url":"pic.twitter.com\/YwH9EcfcVj","expanded_url":"http:\/\/twitter.com\/SPIRITMONZFIRE\/status\/663728185943683073\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":381,"resize":"fit"},"large":{"w":480,"h":381,"resize":"fit"},"small":{"w":340,"h":269,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080105659"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185943547904,"id_str":"663728185943547904","text":"Los cuatro elementos y la magia https:\/\/t.co\/owBxBgO7xq https:\/\/t.co\/Ll4yMe1Kix","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3346561150,"id_str":"3346561150","name":"P\u00eda Le\u00f3n","screen_name":"Pialaleon","location":"Puerto Ordaz","url":null,"description":"Me apasiona mi profesi\u00f3n por encima de todo. \u00bfQu\u00e9 hay mejor que eso? Nadie llega al \u00e9xito profesional sin ser un loco de lo que hace.","protected":false,"verified":false,"followers_count":164,"friends_count":278,"listed_count":13,"favourites_count":6,"statuses_count":12005,"created_at":"Fri Jun 26 13:10:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"948623","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623896589216653312\/So_hEA3q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623896589216653312\/So_hEA3q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3346561150\/1435324456","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/owBxBgO7xq","expanded_url":"http:\/\/bit.ly\/1MuKCoD","display_url":"bit.ly\/1MuKCoD","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663728185553514496,"id_str":"663728185553514496","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRKdU8AAJf-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRKdU8AAJf-Z.jpg","url":"https:\/\/t.co\/Ll4yMe1Kix","display_url":"pic.twitter.com\/Ll4yMe1Kix","expanded_url":"http:\/\/twitter.com\/Pialaleon\/status\/663728185943547904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":164,"resize":"fit"},"large":{"w":792,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":290,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728185553514496,"id_str":"663728185553514496","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRKdU8AAJf-Z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRKdU8AAJf-Z.jpg","url":"https:\/\/t.co\/Ll4yMe1Kix","display_url":"pic.twitter.com\/Ll4yMe1Kix","expanded_url":"http:\/\/twitter.com\/Pialaleon\/status\/663728185943547904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":164,"resize":"fit"},"large":{"w":792,"h":384,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":290,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080105659"} +{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728185968726016,"id_str":"663728185968726016","text":"@Tsubu292939 \n\u30ca\u30fc\u30b9\u306e\u7db4\u308a\u3002\u3002\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726737700753408,"in_reply_to_status_id_str":"663726737700753408","in_reply_to_user_id":1889311015,"in_reply_to_user_id_str":"1889311015","in_reply_to_screen_name":"Tsubu292939","user":{"id":451326830,"id_str":"451326830","name":"\u3086\u304b\u307e\u308b","screen_name":"ymqru","location":null,"url":null,"description":"\u76f4\u4eba\u3055\u3093\u304c\u30c0\u30a4\u30b9\u30ad \u2764\ufe0e \u770b\u8b77\u5b66\u751f3\u5e74\u76ee","protected":false,"verified":false,"followers_count":318,"friends_count":259,"listed_count":2,"favourites_count":3241,"statuses_count":24134,"created_at":"Sat Dec 31 09:15:45 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655777681657610240\/QkSJjiST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655777681657610240\/QkSJjiST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451326830\/1445433976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tsubu292939","name":"\ud1a0\ud544\uc790","id":1889311015,"id_str":"1889311015","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080105665"} +{"delete":{"status":{"id":663728173385846785,"id_str":"663728173385846785","user_id":2790923871,"user_id_str":"2790923871"},"timestamp_ms":"1447080106118"}} +{"delete":{"status":{"id":631456418248265728,"id_str":"631456418248265728","user_id":3034158842,"user_id_str":"3034158842"},"timestamp_ms":"1447080106158"}} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190142197760,"id_str":"663728190142197760","text":"RT @Karyqfh: Tennis, basketball and e-sports bets https:\/\/t.co\/LFyVGhHxkU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2935749178,"id_str":"2935749178","name":"Sergei Sergeeiv","screen_name":"investcfr","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":242,"friends_count":813,"listed_count":323,"favourites_count":4,"statuses_count":19472,"created_at":"Sun Dec 21 19:14:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546745899733352448\/f9iwFYmj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546745899733352448\/f9iwFYmj_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:02 +0000 2015","id":663718945388519424,"id_str":"663718945388519424","text":"Tennis, basketball and e-sports bets https:\/\/t.co\/LFyVGhHxkU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313834309,"id_str":"313834309","name":"Kary Piggott","screen_name":"Karyqfh","location":"Illinois","url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":133,"listed_count":1,"favourites_count":212,"statuses_count":3714,"created_at":"Thu Jun 09 08:51:21 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1388302197\/GOJ_0908_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1388302197\/GOJ_0908_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":122,"favorite_count":104,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LFyVGhHxkU","expanded_url":"http:\/\/betwins.eu\/","display_url":"betwins.eu","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/LFyVGhHxkU","expanded_url":"http:\/\/betwins.eu\/","display_url":"betwins.eu","indices":[50,73]}],"user_mentions":[{"screen_name":"Karyqfh","name":"Kary Piggott","id":313834309,"id_str":"313834309","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106660"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190150561792,"id_str":"663728190150561792","text":"@mullingazr eu sei mas esse nome dps hauxbdisn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728132520861696,"in_reply_to_status_id_str":"663728132520861696","in_reply_to_user_id":426158160,"in_reply_to_user_id_str":"426158160","in_reply_to_screen_name":"mullingazr","user":{"id":1389790584,"id_str":"1389790584","name":"rafa","screen_name":"iknowplacez","location":null,"url":null,"description":"i'm sorry for being a psycho bitch","protected":false,"verified":false,"followers_count":3295,"friends_count":2487,"listed_count":0,"favourites_count":1580,"statuses_count":7473,"created_at":"Mon Apr 29 15:56:02 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663505131288293376\/hyAZmC91_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663505131288293376\/hyAZmC91_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1389790584\/1447026912","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mullingazr","name":"juliana","id":426158160,"id_str":"426158160","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080106662"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163173376,"id_str":"663728190163173376","text":"RT @JaDineNATION: Spoken words poetry! #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925367627,"id_str":"2925367627","name":"Anne","screen_name":"anne04rache","location":"Kingdom of Saudi Arabia","url":null,"description":"OFW | ABS-CBN | Kapamilya | OTWOLISTA | JaDineFan | Naddict","protected":false,"verified":false,"followers_count":79,"friends_count":525,"listed_count":1,"favourites_count":623,"statuses_count":514,"created_at":"Wed Dec 10 07:24:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661840422432604160\/lx2eWyAm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661840422432604160\/lx2eWyAm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925367627\/1446370536","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:26:40 +0000 2015","id":663709289001824256,"id_str":"663709289001824256","text":"Spoken words poetry! #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1336083336,"id_str":"1336083336","name":"JADINE NATION","screen_name":"JaDineNATION","location":"Worldwide","url":"https:\/\/www.facebook.com\/groups\/JaDineNationOfficial","description":"\u275d ONE LOVE. ONE NATION. WE ARE JADINENATION! \u275e \u2014 Instagram account: jadinenation \u2014 3 admins \u2014 since : march 13, 2014","protected":false,"verified":false,"followers_count":56779,"friends_count":365,"listed_count":37,"favourites_count":22033,"statuses_count":64098,"created_at":"Mon Apr 08 08:39:35 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719252999237632\/3PJoD-lv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719252999237632\/3PJoD-lv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1336083336\/1446837849","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":21,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[22,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[40,50]}],"urls":[],"user_mentions":[{"screen_name":"JaDineNATION","name":"JADINE NATION","id":1336083336,"id_str":"1336083336","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133784577,"id_str":"663728190133784577","text":"Listen to Fallin In ft. Young Murph & G-5 Gav (prod by Divine Beatz) by TNC LAID #np on #SoundCloud https:\/\/t.co\/fe6KQW3eKJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353438690,"id_str":"353438690","name":"#\u20e3NoDaysOff","screen_name":"__LilJayR","location":null,"url":"http:\/\/soundcloud.com\/dejahbphilly","description":"By Any Means #HotNewupcoming #Promotion Dm Me @young_shoddy @officialdejahb @XT_Records \u260e\ufe0f","protected":false,"verified":false,"followers_count":939,"friends_count":1076,"listed_count":2,"favourites_count":3089,"statuses_count":18428,"created_at":"Fri Aug 12 02:22:30 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"968D8D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476794978572574720\/NweKPtkZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476794978572574720\/NweKPtkZ.jpeg","profile_background_tile":true,"profile_link_color":"FA2828","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8A0C0C","profile_text_color":"E6C833","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660996996199809024\/hqfkXJ2t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660996996199809024\/hqfkXJ2t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353438690\/1441040556","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"np","indices":[85,88]},{"text":"SoundCloud","indices":[92,103]}],"urls":[{"url":"https:\/\/t.co\/fe6KQW3eKJ","expanded_url":"https:\/\/soundcloud.com\/tnclaid\/fallin-in-ft-young-murph-g-5-gav-prod-by-divine-beatz","display_url":"soundcloud.com\/tnclaid\/fallin\u2026","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190129442817,"id_str":"663728190129442817","text":"@07_yuppi_16 \u306a\u304e\u305f\u3093\u3068\u3051\u3093\u3051\u3093\u3068\u3082\u590f\u8a71\u3057\u3066\u305f\u3057\u3084\u308d\uff0112\u6708\u304b1\u6708\u3068\u304b\u304b\u306a\uff1f\u3068\u308a\u3042\u3048\u305a\u3057\u304a\u308a\u3069\u3063\u304f\u3089\u306e\u3050\u308b\u3061\u3083\u6d88\u3048\u3066\u308b\u304b\u3089\u8ab0\u304b\u767a\u8a00\u3057\u306a\u3044\u3068\u51fa\u3066\u3053\u306a\u3044\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727699639185409,"in_reply_to_status_id_str":"663727699639185409","in_reply_to_user_id":1248433657,"in_reply_to_user_id_str":"1248433657","in_reply_to_screen_name":"07_yuppi_16","user":{"id":768978984,"id_str":"768978984","name":"\u3057\u304a\u308a\u30fc\u306c\u2661","screen_name":"shiorichan1006","location":"*\u2661\u30ed\u30c3\u30af\u30a2\u30c3\u30d7\u5927\u5bae\u7f72\u2661*\u309c\u5927\u5bae\/\u6e0b\u8c37\/\u65b0\u5bbf","url":"http:\/\/Instagram.com\/shiorichan1006\/","description":"\u2445\u897f\u6ca2 \u681e\u2445 \u029a\u5929\u4f7f\u025e\u308e\u3042\u3044\u3067\u3093\u3066\u3043\u3066\u3043\u2606\u301c\uff08\u309d\u3002\u2202\uff09\u307f\u301c\u3093\u306a\u3066\u3093\u3057\u304a\u308a\u30fc\u306c\u306b\u3081\u308d\u3081\u308d\u3067\u3043\u301c\u2661\u30fb*\u309c\u30fb\u309c\u5358\u4f4d\u306b\u30b7\u30d3\u30a2\u306a\u306e\u3067\u904a\u3073\u5446\u3051\u308b\u306e\u8f9e\u3081\u307e\u3057\u305f\u3002\u4eba\u751f\u30cd\u30bf\u3067\u3059\u3002\u3010OCC2015 finalist\u2764\ufe0eN1\u30b0\u30e9\u30f3\u30d7\u30eaCOCO BEAUMO\u8cde\u53d7\u8cde\u3011 http:\/\/twpf.jp\/shiorichan1006","protected":false,"verified":false,"followers_count":1033,"friends_count":338,"listed_count":7,"favourites_count":3296,"statuses_count":19353,"created_at":"Mon Aug 20 06:40:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649029457794068480\/fXQdyuvL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649029457794068480\/fXQdyuvL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/768978984\/1439260158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"07_yuppi_16","name":"\u3086\u3063\u3077\u30fc\u3055\u3093","id":1248433657,"id_str":"1248433657","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106657"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190146265088,"id_str":"663728190146265088","text":"RT @SavageJihad: yo read this \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/e3iNxXKG1T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253880966,"id_str":"3253880966","name":"Riley Minnoch","screen_name":"spiz529","location":null,"url":null,"description":"\/sjchs\/","protected":false,"verified":false,"followers_count":97,"friends_count":429,"listed_count":1,"favourites_count":759,"statuses_count":332,"created_at":"Tue Jun 23 17:45:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655765226814504960\/JRK_9Rvi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655765226814504960\/JRK_9Rvi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253880966\/1447040121","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 22:02:23 +0000 2015","id":660577583650746368,"id_str":"660577583650746368","text":"yo read this \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/e3iNxXKG1T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2305405063,"id_str":"2305405063","name":"Allahu Akbar","screen_name":"SavageJihad","location":"NYC","url":null,"description":"parody | not affiliated with anything | we do not own the content posted |","protected":false,"verified":false,"followers_count":284683,"friends_count":372,"listed_count":151,"favourites_count":9,"statuses_count":1236,"created_at":"Wed Jan 22 20:12:54 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580936644250894336\/hg8W2iyq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580936644250894336\/hg8W2iyq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1036,"favorite_count":1419,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660577575614464000,"id_str":"660577575614464000","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":660577575614464000,"id_str":"660577575614464000","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":660577575610269696,"id_str":"660577575610269696","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzhzWwAAAahe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzhzWwAAAahe.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SavageJihad","name":"Allahu Akbar","id":2305405063,"id_str":"2305405063","indices":[3,15]}],"symbols":[],"media":[{"id":660577575614464000,"id_str":"660577575614464000","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660577583650746368,"source_status_id_str":"660577583650746368","source_user_id":2305405063,"source_user_id_str":"2305405063"}]},"extended_entities":{"media":[{"id":660577575614464000,"id_str":"660577575614464000","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzh0WwAAp0kI.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660577583650746368,"source_status_id_str":"660577583650746368","source_user_id":2305405063,"source_user_id_str":"2305405063"},{"id":660577575610269696,"id_str":"660577575610269696","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSrXzhzWwAAAahe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSrXzhzWwAAAahe.jpg","url":"https:\/\/t.co\/e3iNxXKG1T","display_url":"pic.twitter.com\/e3iNxXKG1T","expanded_url":"http:\/\/twitter.com\/SavageJihad\/status\/660577583650746368\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":660577583650746368,"source_status_id_str":"660577583650746368","source_user_id":2305405063,"source_user_id_str":"2305405063"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106661"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167347201,"id_str":"663728190167347201","text":"RT @1HDRD: 28\u0633\u0646\u0629 \u0645\u0627 \u064a\u0631\u0649 \u0634\u064a \u0648\u062d\u0627\u0641\u0638 \u0644\u0644\u0642\u0631\u0627\u0646 ! \u0648\u0634 \u0639\u0630\u0631\u0643 \u0627\u0633\u0627\u0644 \u0627\u0644\u0644\u0647 \u0623\u0646 \u064a\u0646\u064a\u0631 \u0628\u0635\u064a\u0631\u062a\u0646\u0627 \u0648\u064a\u062d\u064a\u064a\u0621 \u0642\u0644\u0648\u0628\u0646\u0627 \u0648\u0627\u0644\u0639\u0645\u0649 \u0644\u064a\u0633 \u0639\u0645\u0649 \u0627\u0644\u0628\u0635\u064a\u0631\u0629 \u0627\u0646\u0645\u0627 \u0639\u0645\u0649 \u0627\u0644\u0642\u0644\u0628 https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2660388757,"id_str":"2660388757","name":"\u0644\u0645\u0649 92:48","screen_name":"lama_abdullah50","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645","protected":false,"verified":false,"followers_count":260,"friends_count":967,"listed_count":1,"favourites_count":10146,"statuses_count":15142,"created_at":"Sat Jul 19 19:45:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663083490192289792\/sltjavOf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663083490192289792\/sltjavOf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2660388757\/1446915118","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:40:28 +0000 2015","id":663471172462448642,"id_str":"663471172462448642","text":"28\u0633\u0646\u0629 \u0645\u0627 \u064a\u0631\u0649 \u0634\u064a \u0648\u062d\u0627\u0641\u0638 \u0644\u0644\u0642\u0631\u0627\u0646 ! \u0648\u0634 \u0639\u0630\u0631\u0643 \u0627\u0633\u0627\u0644 \u0627\u0644\u0644\u0647 \u0623\u0646 \u064a\u0646\u064a\u0631 \u0628\u0635\u064a\u0631\u062a\u0646\u0627 \u0648\u064a\u062d\u064a\u064a\u0621 \u0642\u0644\u0648\u0628\u0646\u0627 \u0648\u0627\u0644\u0639\u0645\u0649 \u0644\u064a\u0633 \u0639\u0645\u0649 \u0627\u0644\u0628\u0635\u064a\u0631\u0629 \u0627\u0646\u0645\u0627 \u0639\u0645\u0649 \u0627\u0644\u0642\u0644\u0628 https:\/\/t.co\/5K1tJdoCf5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479144839,"id_str":"2479144839","name":"Rasheed 97R","screen_name":"1HDRD","location":"Riyadh \u060c Saudi Arabia","url":null,"description":"\u0642\u0644 \u0645\u0627 \u062a\u0631\u064a\u062f\u0647 \u0639\u0646\u064a \u0641\u062d\u062f\u064a\u062b\u0643 \u0639\u0646\u064a \u0644\u0646 \u064a\u0636\u0631\u0646\u064a \u060c \u0641\u064a \u0627\u0644\u0627\u0639\u062c\u0627\u0628\u0627\u062a \u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0644\u0645\u0648\u0627\u0642\u0639 \u0648\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0648\u0623\u0641\u0644\u0627\u0645 \u0648\u062b\u0627\u0626\u0642\u064a\u0629 \u0645\u062e\u062a\u0644\u0641\u0629 \u060c \u0642\u0628\u0644 \u0644\u0627 \u062a\u062a\u062f\u062e\u0644 \u0627\u0644\u0627\u0639\u062c\u0627\u0628\u0627\u062a \u062e\u0630\u0644\u0643 \u0641\u0634\u0627\u0631 \u060c \u0644\u0644\u062f\u0639\u0627\u064a\u0629 \u0648\u0627\u0644\u0625\u0639\u0644\u0627\u0646 kik:hdrd1","protected":false,"verified":false,"followers_count":184752,"friends_count":303,"listed_count":719,"favourites_count":1383,"statuses_count":11077,"created_at":"Sat Apr 12 15:44:31 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661875224414167040\/kKT2Rgtj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661875224414167040\/kKT2Rgtj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479144839\/1446848421","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":997,"favorite_count":306,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663468558609948672,"id_str":"663468558609948672","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","url":"https:\/\/t.co\/5K1tJdoCf5","display_url":"pic.twitter.com\/5K1tJdoCf5","expanded_url":"http:\/\/twitter.com\/1HDRD\/status\/663471172462448642\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663468558609948672,"id_str":"663468558609948672","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","url":"https:\/\/t.co\/5K1tJdoCf5","display_url":"pic.twitter.com\/5K1tJdoCf5","expanded_url":"http:\/\/twitter.com\/1HDRD\/status\/663471172462448642\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":29530,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/pl\/gwg7yx6STPJ7kahz.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/360x640\/FmstWAACDGDvZDJ4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/360x640\/FmstWAACDGDvZDJ4.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/180x320\/EyNlilQ4PYo0g6_Z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/pl\/gwg7yx6STPJ7kahz.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1HDRD","name":"Rasheed 97R","id":2479144839,"id_str":"2479144839","indices":[3,9]}],"symbols":[],"media":[{"id":663468558609948672,"id_str":"663468558609948672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","url":"https:\/\/t.co\/5K1tJdoCf5","display_url":"pic.twitter.com\/5K1tJdoCf5","expanded_url":"http:\/\/twitter.com\/1HDRD\/status\/663471172462448642\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663471172462448642,"source_status_id_str":"663471172462448642","source_user_id":2479144839,"source_user_id_str":"2479144839"}]},"extended_entities":{"media":[{"id":663468558609948672,"id_str":"663468558609948672","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663468558609948672\/pu\/img\/2biqNwWghW488Lof.jpg","url":"https:\/\/t.co\/5K1tJdoCf5","display_url":"pic.twitter.com\/5K1tJdoCf5","expanded_url":"http:\/\/twitter.com\/1HDRD\/status\/663471172462448642\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"medium":{"w":360,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":360,"h":640,"resize":"fit"}},"source_status_id":663471172462448642,"source_status_id_str":"663471172462448642","source_user_id":2479144839,"source_user_id_str":"2479144839","video_info":{"aspect_ratio":[9,16],"duration_millis":29530,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/pl\/gwg7yx6STPJ7kahz.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/360x640\/FmstWAACDGDvZDJ4.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/360x640\/FmstWAACDGDvZDJ4.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/vid\/180x320\/EyNlilQ4PYo0g6_Z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663468558609948672\/pu\/pl\/gwg7yx6STPJ7kahz.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133657601,"id_str":"663728190133657601","text":"RT @CNBYonghwa: 151109 #\uc815\uc6a9\ud654 SKIN79 https:\/\/t.co\/RCOAf6lq1U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2916593445,"id_str":"2916593445","name":"cnpkkk","screen_name":"Ppinkkaa","location":null,"url":null,"description":"Love Cnblue \uc528\uc5d4\ube14\ub8e8 Yonghwa","protected":false,"verified":false,"followers_count":3,"friends_count":99,"listed_count":2,"favourites_count":1637,"statuses_count":2415,"created_at":"Fri Dec 12 00:45:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651720356227485696\/hzfPt_4P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651720356227485696\/hzfPt_4P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2916593445\/1447047692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:15 +0000 2015","id":663710191456620544,"id_str":"663710191456620544","text":"151109 #\uc815\uc6a9\ud654 SKIN79 https:\/\/t.co\/RCOAf6lq1U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169450864,"id_str":"169450864","name":"CNBYonghwa","screen_name":"CNBYonghwa","location":"All over the world\u2606","url":"http:\/\/cnbyonghwa.wordpress.com","description":"A fan-based account that delivers updates and stuff about Jung Yonghwa. Made by and for Emotional Angels.","protected":false,"verified":false,"followers_count":89483,"friends_count":170,"listed_count":491,"favourites_count":1069,"statuses_count":51656,"created_at":"Thu Jul 22 11:05:15 +0000 2010","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555328539881267200\/drFHcDSX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555328539881267200\/drFHcDSX.jpeg","profile_background_tile":true,"profile_link_color":"0D81A8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"635F63","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3348868641\/43f09560a59dd839f4511e2da7571cc6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3348868641\/43f09560a59dd839f4511e2da7571cc6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169450864\/1446378966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":91,"entities":{"hashtags":[{"text":"\uc815\uc6a9\ud654","indices":[7,11]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710156157415424,"id_str":"663710156157415424","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663710156157415424,"id_str":"663710156157415424","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663710156190945280,"id_str":"663710156190945280","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43t2UkAAiM4d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43t2UkAAiM4d.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}}},{"id":663710156249657344,"id_str":"663710156249657344","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43uEUcAAfUul.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43uEUcAAfUul.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}}},{"id":663710156425854976,"id_str":"663710156425854976","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43uuVAAAYEr7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43uuVAAAYEr7.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc815\uc6a9\ud654","indices":[23,27]}],"urls":[],"user_mentions":[{"screen_name":"CNBYonghwa","name":"CNBYonghwa","id":169450864,"id_str":"169450864","indices":[3,14]}],"symbols":[],"media":[{"id":663710156157415424,"id_str":"663710156157415424","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663710191456620544,"source_status_id_str":"663710191456620544","source_user_id":169450864,"source_user_id_str":"169450864"}]},"extended_entities":{"media":[{"id":663710156157415424,"id_str":"663710156157415424","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43tuU8AAfJZw.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663710191456620544,"source_status_id_str":"663710191456620544","source_user_id":169450864,"source_user_id_str":"169450864"},{"id":663710156190945280,"id_str":"663710156190945280","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43t2UkAAiM4d.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43t2UkAAiM4d.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}},"source_status_id":663710191456620544,"source_status_id_str":"663710191456620544","source_user_id":169450864,"source_user_id_str":"169450864"},{"id":663710156249657344,"id_str":"663710156249657344","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43uEUcAAfUul.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43uEUcAAfUul.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}},"source_status_id":663710191456620544,"source_status_id_str":"663710191456620544","source_user_id":169450864,"source_user_id_str":"169450864"},{"id":663710156425854976,"id_str":"663710156425854976","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX43uuVAAAYEr7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX43uuVAAAYEr7.jpg","url":"https:\/\/t.co\/RCOAf6lq1U","display_url":"pic.twitter.com\/RCOAf6lq1U","expanded_url":"http:\/\/twitter.com\/CNBYonghwa\/status\/663710191456620544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":768,"resize":"fit"},"medium":{"w":576,"h":768,"resize":"fit"}},"source_status_id":663710191456620544,"source_status_id_str":"663710191456620544","source_user_id":169450864,"source_user_id_str":"169450864"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167322624,"id_str":"663728190167322624","text":"RT @fahody_333: @M___S___MS \n\n\u0642\u0631\u0628\u0643 \u064a\u0627 \u0648\u0647\u0645 \u064a\u0631\u0641\u0639 \u0627\u0644\u0631\u0627\u0633\n\u0627\u063a\u0644\u064a\u0643 \u0648\u0628\u0634\u0648\u0641\u062a\u0643 \u062a\u0632\u064a\u0646 \u0646\u0641\u0633\u064a\n\n\u0627\u0644\u0648\u0641\u0627\u0621 \u0637\u0628\u0639\u0643 \u064a\u0627 \u0627\u0639\u0632 \u0627\u0644\u0646\u0627\u0633\n\u0646\u0633\u0639\u062f \u0628\u0648\u0635\u0644\u0643 \u0648\u0627\u0644\u0641\u0643\u0631 \u0647\u0648\u062c\u0627\u0633\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2606697973,"id_str":"2606697973","name":"\u0623\u064a\u0645\u0646 \u0627\u0644\u0645\u0640\u0640\u0640\u0640\u0640\u0627\u062c\u062f\u064b\u064b","screen_name":"klll123385","location":null,"url":null,"description":"\u200f\u0631\u0628\u0651\u064a \u0623\u0646\u062b\u0650\u0631 \u0627\u0644\u0633\u0639\u064e\u0627\u062f\u0629 \u0644\u0650\u0645\u0646 \u0623\u0633\u064e\u0639\u062f\u0646\u064a \u0628\u0650\u0643\u0644\u0645\u0652\u0647 \u0623\u0648\u064f \u0628\u0641\u0639\u0651\u0644 \u0623\u0648 \u0644\u0645\u0646 \u062f\u0639\u064e\u0649\u0651 \u0644\u064a \u0628\u0651\u0638\u0647\u0631 \u0627\u0644\u063a\u064a\u0628 \u064e","protected":false,"verified":false,"followers_count":12532,"friends_count":12204,"listed_count":6,"favourites_count":490,"statuses_count":21686,"created_at":"Sun Jul 06 03:38:16 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661279862255173632\/uaqJdJPZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661279862255173632\/uaqJdJPZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2606697973\/1446417690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:58:04 +0000 2015","id":663641696253689856,"id_str":"663641696253689856","text":"@M___S___MS \n\n\u0642\u0631\u0628\u0643 \u064a\u0627 \u0648\u0647\u0645 \u064a\u0631\u0641\u0639 \u0627\u0644\u0631\u0627\u0633\n\u0627\u063a\u0644\u064a\u0643 \u0648\u0628\u0634\u0648\u0641\u062a\u0643 \u062a\u0632\u064a\u0646 \u0646\u0641\u0633\u064a\n\n\u0627\u0644\u0648\u0641\u0627\u0621 \u0637\u0628\u0639\u0643 \u064a\u0627 \u0627\u0639\u0632 \u0627\u0644\u0646\u0627\u0633\n\u0646\u0633\u0639\u062f \u0628\u0648\u0635\u0644\u0643 \u0648\u0627\u0644\u0641\u0643\u0631 \u0647\u0648\u062c\u0627\u0633\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663627228652130304,"in_reply_to_status_id_str":"663627228652130304","in_reply_to_user_id":3673256293,"in_reply_to_user_id_str":"3673256293","in_reply_to_screen_name":"M___S___MS","user":{"id":2564312196,"id_str":"2564312196","name":"\u0627\u0644\u0645\u0633\u0627\u0641\u0631 \u0641\u0647\u062f","screen_name":"fahody_333","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 \u0627\u0644\u0630\u064a \u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0647\u0648 \u0627\u0644\u062d\u064a \u0627\u0644\u0642\u064a\u0648\u0645 \u0648\u0623\u062a\u0648\u0628 \u0625\u0644\u064a\u0647 .. \u0639\u062f\u062f \u062e\u0644\u0642\u0647 \u0648\u0631\u0636\u0627 \u0646\u0641\u0633\u0647 \u0648\u0632\u0646\u0629 \u0639\u0631\u0634\u0647 \u0648\u0645\u062f\u0627\u062f \u0643\u0644\u0645\u0627\u062a\u0647 ..#\u0631\u0648\u062d_\u0645\u0633\u0627\u0641\u0631","protected":false,"verified":false,"followers_count":117285,"friends_count":16178,"listed_count":10,"favourites_count":1982,"statuses_count":42425,"created_at":"Fri Jun 13 00:36:19 +0000 2014","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663386578342014980\/-XgNh2gV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663386578342014980\/-XgNh2gV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2564312196\/1415557378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"M___S___MS","name":"\u200f\u0648\u0647\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0645","id":3673256293,"id_str":"3673256293","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fahody_333","name":"\u0627\u0644\u0645\u0633\u0627\u0641\u0631 \u0641\u0647\u062f","id":2564312196,"id_str":"2564312196","indices":[3,14]},{"screen_name":"M___S___MS","name":"\u200f\u0648\u0647\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0640\u0645","id":3673256293,"id_str":"3673256293","indices":[16,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167257089,"id_str":"663728190167257089","text":"@high_001 \u306a\u306a\u304d\u3061\u304a\u3058\u3044\u3061\u3083\u3093\u3080\u304b\u3057\u3053\u3063\u3077\u308c\u3057\u3066\u307e\u3057\u305f\/\/\/","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727936206323712,"in_reply_to_status_id_str":"663727936206323712","in_reply_to_user_id":359735477,"in_reply_to_user_id_str":"359735477","in_reply_to_screen_name":"high_001","user":{"id":3038147815,"id_str":"3038147815","name":"\u306a\u306a\u304d\u3061\uff20c89\uff12\u65e5\u76ee\u30b346b","screen_name":"mitake_tl","location":"\u7409\u7403\u56fd","url":null,"description":"@mitake_tar\u306e\u3068\u3046\u3089\u3076\u7279\u5316\u57a2\uff08\u306e\u3064\u3082\u308a\uff09\u5099\u524d\u9bd6\u5728\u4f4f\u306e\u7c9f\u7530\u53e3\u5c0a\u3044\u3064\u308b\u3044\u3061\u5927\u597d\u304d\u52e2\u3002\u6210\u4eba\uff1f\u3057\u3066\u308b\u3088\uff01\u5408\u6226\u5834\u662d\u548c\u306e\u8a18\u61b6\u3068\u3084\u305f\u3089\u76f8\u6027\u304c\u3044\u3044\/\/\u306c\u308b\u304f\u3088\u308d\u3057\u304f\uff01","protected":false,"verified":false,"followers_count":91,"friends_count":103,"listed_count":9,"favourites_count":183,"statuses_count":2034,"created_at":"Mon Feb 23 14:15:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641895248029880321\/1bn-WDQ4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641895248029880321\/1bn-WDQ4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3038147815\/1444577224","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"high_001","name":"\u7070","id":359735477,"id_str":"359735477","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190129442816,"id_str":"663728190129442816","text":"RT @blxcknicotine: \u201cGod has a reason for allowing things to happen. We may never understand his wisdom, but we simply have to trust his wil\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2581964390,"id_str":"2581964390","name":"ad","screen_name":"adlhrhm","location":"ambrose asylum","url":null,"description":"always tired","protected":false,"verified":false,"followers_count":100,"friends_count":80,"listed_count":2,"favourites_count":804,"statuses_count":7754,"created_at":"Sun Jun 22 09:58:31 +0000 2014","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572354028273537024\/AaTphUGu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572354028273537024\/AaTphUGu.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660435806130073600\/MQZsWuis_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660435806130073600\/MQZsWuis_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2581964390\/1446637310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:41 +0000 2015","id":663722633481945089,"id_str":"663722633481945089","text":"\u201cGod has a reason for allowing things to happen. We may never understand his wisdom, but we simply have to trust his will.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":284197383,"id_str":"284197383","name":"human error.","screen_name":"blxcknicotine","location":"Seoul, Korea ","url":null,"description":"Don\u2019t try to figure me out. It will only exhaust you. #illhueminati","protected":false,"verified":false,"followers_count":122417,"friends_count":25120,"listed_count":217,"favourites_count":13595,"statuses_count":102582,"created_at":"Mon Apr 18 20:37:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"E09CCB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/264233452\/pink-polka-dots-black.jpg","profile_background_tile":true,"profile_link_color":"D662B3","profile_sidebar_border_color":"F283E1","profile_sidebar_fill_color":"1A1D1F","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663371330905993216\/KzWJrekS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284197383\/1446304062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":233,"favorite_count":154,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blxcknicotine","name":"human error.","id":284197383,"id_str":"284197383","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106657"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190129438721,"id_str":"663728190129438721","text":"\u3050\u304a\u304a\u304a\u304a\u308a\u3093\u307f\u3069\u304a\u304a\u304a\u304a\u304a\/\/\/\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2766264720,"id_str":"2766264720","name":"\u30d5\u30ad@\u30c8\u30e93\u30b9\u30ab\u30a6\u30a9","screen_name":"stnmdz","location":null,"url":null,"description":"\u4e8c\u6b21\u5275\u4f5c(\u30bc\u30eb\u4f1d\u30ea\u30f3\u30df\u30c9\u4e2d\u5fc3)\u30fb\u30b2\u30fc\u30e0\u30d7\u30ec\u30a4\u57a2\u3002\u4ed6\u306b\u306f\u30c7\u30b8\u30e2\u30f3\u3001\u3068\u3046\u3089\u3076\u3068\u304b\u3002CP\u8133\u96d1\u98df\u6ce8\u610f\u3067\u3059(\u00b4\uff65\u03c9\uff65`) \u5984\u60f3\u30c4\u30a4\u3042\u308b\u306e\u3067\u30ea\u30e0\u30d6\u30ed\u3054\u81ea\u7531\u306b\u2026!20\u2191[\u30d7\u30ec\u30a4\u4e2d\u30b2\u30fc\u30e0]\u4e09\u9283\u58eb\u3001\u30b9\u30ab\u30a6\u30a9 [\u30c4\u30a4\u30d7\u30ed]http:\/\/twpf.jp\/stnmdz","protected":false,"verified":false,"followers_count":91,"friends_count":74,"listed_count":1,"favourites_count":2993,"statuses_count":4561,"created_at":"Mon Aug 25 13:05:40 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642376248124043264\/WOoxnH7O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642376248124043264\/WOoxnH7O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2766264720\/1441538460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106657"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190158843904,"id_str":"663728190158843904","text":"3k\u3092\u30b9\u30ea\u30fc\u30d6\u3068\u30c7\u30c3\u30ad\u30b1\u30fc\u30b9\u306b\u6255\u3046\u306e\u306f\u5c11\u3057\u9ad8\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2910602972,"id_str":"2910602972","name":"\u30ca\u30ab\u30fc\u30cc@\u30d6\u30b7\u30ed\u30fc\u30c9\u30b2\u30fc\u597d\u304d","screen_name":"7PW0k34OlSiVIBv","location":null,"url":null,"description":"\u793e\u4f1a\u4eba\u30e9\u30a4\u30d0\u30fc(?)\u3067\u3059\u3002\u697d\u3057\u3080\u70ba\u306a\u3089\u591a\u5c11\u306f\u306d\uff1f\u30f4\u30a1\u30a4\u30b9\u3068\u904a\u622f\u738b\u3082\u591a\u5c11\u3084\u3063\u3066\u307e\u3059\u3002 \u4e3b\u306b\u540d\u53e4\u5c4b\u4ed8\u8fd1\u304c\u884c\u52d5\u7bc4\u56f2\u3001\u304a\u4f1a\u3044\u306b\u306a\u3063\u305f\u969b\u306f\u305c\u3072\u58f0\u3092\u639b\u3051\u3066\u4e0b\u3055\u3044\u306d\uff01","protected":false,"verified":false,"followers_count":72,"friends_count":110,"listed_count":0,"favourites_count":79,"statuses_count":1808,"created_at":"Wed Nov 26 05:36:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655366062087630848\/T6ym2u8N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655366062087630848\/T6ym2u8N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2910602972\/1438000217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106664"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190150438912,"id_str":"663728190150438912","text":"RT @hepa___000: \u3072\u3068\u3064\u3001\u8a00\u308f\u305b\u3066\u3082\u3089\u3044\u307e\u3059\u3068\n\n\u6e9c\u3081\u8fbc\u3080\u3068\u304b\u7121\u7406\u3059\u308b\u4eba\u3068\u304b\u3078\u3063\u3071\u30fc\u304c\u5acc\u3060\u304b\u3089\u3084\u3081\u3066\u306d\n\u7121\u7406\u3055\u308c\u305f\u308a\u6e9c\u3081\u8fbc\u307e\u308c\u305f\u308a\u3059\u3093\u306e\u8ff7\u60d1\n\u8ff7\u60d1\u304b\u304b\u308b\u3068\u304b\u601d\u3063\u3066\u308b\u306e\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u308f\u305f\u3057\u3001\u305d\u3063\u3061\u306e\u304c\u8ff7\u60d1\n\n\u5168\u90e8\u5410\u304d\u51fa\u3057\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3004089870,"id_str":"3004089870","name":"\u2729\u30ad\u30a4\u30ed\u30c8\u30ea\u2729 \u3010\u4f4e\u6d6e\u4e0a\u3011","screen_name":"kiirotori_MJ","location":"\u2729*\u22c6 \u234b*\u5927\u597d\u304d\u3067\u4ed5\u65b9\u306a\u3044\u3093\u3067\u3059\u22c6\u234b\u22c6*\u2729","url":"http:\/\/twpf.jp\/kiirotori_MJ","description":"\u2765\u20dd\u2217\u204e.\u029a\u7fd4\u6f64 \u3092 \u3053\u3088\u306a\u304f \u611b\u3059\u025e.\u204e\u2217\u2765\u20dd \u25ce\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6c17\u3065\u304b\u306a\u3044\u304b\u3082\u25ce \u30ed\u30b0\u30a2\u30a6\u30c8\u4e2d\u3002 \u308a\u3080\u3089\u306a\u3044\u3067\u306d\u2026(\u00b4-\u03c9-`)","protected":false,"verified":false,"followers_count":409,"friends_count":140,"listed_count":26,"favourites_count":15400,"statuses_count":21108,"created_at":"Sat Jan 31 01:40:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648525170458537984\/OceJBpFi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648525170458537984\/OceJBpFi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3004089870\/1440902723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821613740034,"id_str":"663727821613740034","text":"\u3072\u3068\u3064\u3001\u8a00\u308f\u305b\u3066\u3082\u3089\u3044\u307e\u3059\u3068\n\n\u6e9c\u3081\u8fbc\u3080\u3068\u304b\u7121\u7406\u3059\u308b\u4eba\u3068\u304b\u3078\u3063\u3071\u30fc\u304c\u5acc\u3060\u304b\u3089\u3084\u3081\u3066\u306d\n\u7121\u7406\u3055\u308c\u305f\u308a\u6e9c\u3081\u8fbc\u307e\u308c\u305f\u308a\u3059\u3093\u306e\u8ff7\u60d1\n\u8ff7\u60d1\u304b\u304b\u308b\u3068\u304b\u601d\u3063\u3066\u308b\u306e\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u308f\u305f\u3057\u3001\u305d\u3063\u3061\u306e\u304c\u8ff7\u60d1\n\n\u5168\u90e8\u5410\u304d\u51fa\u3057\u3066\u304f\u3060\u3055\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3261198680,"id_str":"3261198680","name":"\u3078\u3063\u3071\u30fc\u3010 \u56fa\u5b9a\u30c4\u30a4\u898b\u3066\u306d \u3011@ \u6771\u4eac","screen_name":"hepa___000","location":"\u30b3\u30de\u3089\u3044 \u277707 ~ ","url":null,"description":"\u25c7 CAS\u57a2 \u25c7 \u3042\u3063\u3071\u30fc\u3089\u3063\u3071\u30fc\u3078\u3063\u3071\u30fc\u3067\u3059\u3002\u5927\u91ce\u667a\u306b\u6eba\u308c\u3066\u308b\u7cfb\u5973\u5b50\u3002\u6709\u6751\u67b6\u7d14\u304c\u5929\u4f7f\u3067\u3059\u3002\u30ea\u30d7\u8fd4\u306f\u6c17\u5206\u3002\u3057\u3085\u305d\u52e2 . S_ner . \u667a\u96c6\u4f1a . S.VIP . \u308a\u3093\u306a\u30fc . S_A_Lis . \u304a\u308f\u3054\u3068\uff08\u53cc\u5b50 \u27b5 \u30ad\u30a4\u30ed\u30c8\u30ea\uff09\u3053\u306e\u5ea6\u3057\u3085\u3093\u3057\u3085\u3093\u516c\u8a8d\u30b9\u30c8\u30fc\u30ab\u30fc\u306b\u306a\u308a\u307e\u3057\u305f ??","protected":false,"verified":false,"followers_count":222,"friends_count":222,"listed_count":9,"favourites_count":1181,"statuses_count":2773,"created_at":"Tue Jun 30 10:32:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648512698284556288\/pBS2AleZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648512698284556288\/pBS2AleZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3261198680\/1442484810","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hepa___000","name":"\u3078\u3063\u3071\u30fc\u3010 \u56fa\u5b9a\u30c4\u30a4\u898b\u3066\u306d \u3011@ \u6771\u4eac","id":3261198680,"id_str":"3261198680","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106662"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163017728,"id_str":"663728190163017728","text":"@grisia0127 \u4e0a\u624b\u3044\nB\u3092\u72d9\u3044\u3064\u3064\u30ce\u30c3\u30af\u3057\u3066\u307f\u3088\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728017592619009,"in_reply_to_status_id_str":"663728017592619009","in_reply_to_user_id":3238042272,"in_reply_to_user_id_str":"3238042272","in_reply_to_screen_name":"grisia0127","user":{"id":2801571446,"id_str":"2801571446","name":"\u304f\u3089\u308a\u3059","screen_name":"craris_quell","location":"\u5343\u65e5\u524d\u306e\u30e9","url":"http:\/\/beatmania-clearlamp.com\/djdata\/jappy1756\/","description":"\u3042\u3080\u3057\u3053 SG. \u26055 \u30a2\u30eb\u30c1\u30e1\u30c3\u30c8 \u5ea6\u80f8\u5144\u5f1f\u3068\u30b4\u30d3\u30e8\u306b\u5acc\u308f\u308c\u3066\u308b","protected":false,"verified":false,"followers_count":1134,"friends_count":1137,"listed_count":70,"favourites_count":23207,"statuses_count":79752,"created_at":"Wed Sep 10 10:57:56 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628465098273652738\/wVpH8r1A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628465098273652738\/wVpH8r1A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2801571446\/1445609404","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"grisia0127","name":"\u3050\u308a\u3057\u3042","id":3238042272,"id_str":"3238042272","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190146252800,"id_str":"663728190146252800","text":"@daiswim3181 \u4ffa\u3066\u304d\u306b\u308e\u3001\u30bd\u30cb\u30c3\u30af\u306e\u524d\u306b\u51fa\u305f\u666e\u901a\u306eGX\u306e\u771f\u3063\u9ed2\u306e\u3084\u3064\u304c\u597d\u304d\u3067\u3057\u305fw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723415862272001,"in_reply_to_status_id_str":"663723415862272001","in_reply_to_user_id":3193128570,"in_reply_to_user_id_str":"3193128570","in_reply_to_screen_name":"daiswim3181","user":{"id":2988342506,"id_str":"2988342506","name":"\u77f3\u7530 \u5275\u4e5f","screen_name":"isida527","location":"\u898b\u9003\u3057\u4e09\u632f\u3088\u308a\u3001\u7a7a\u632f\u308a\u4e09\u632f","url":null,"description":"MIDORIOKA.J.H.S\u2462\/\u8328\u57ce\u3067\u30af\u30ed\u30fc\u30eb\u6cf3\u3044\u3067\u307e\u3059\u2605\u306f\u3084\u304f1500\u309216\u5206\u53f0\u3067\u6cf3\u304e\u305f\u3044\u3002\u3002","protected":false,"verified":false,"followers_count":369,"friends_count":410,"listed_count":0,"favourites_count":587,"statuses_count":3261,"created_at":"Sun Jan 18 10:22:14 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658289633189457920\/ImAhGinm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658289633189457920\/ImAhGinm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988342506\/1446640841","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"daiswim3181","name":"\u5927\u8f1d","id":3193128570,"id_str":"3193128570","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106661"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190150471680,"id_str":"663728190150471680","text":"RT @dipesh333: Trend of #prdp is now at its peak.\nAny one can predict 1st day collection of #PremRatanDhanPayo ?\n\n#3DaysToPRDP \n#DiwaliDham\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2983224168,"id_str":"2983224168","name":"pallavi dev","screen_name":"beingdevpallavi","location":"India","url":null,"description":"Female","protected":false,"verified":false,"followers_count":164,"friends_count":64,"listed_count":9,"favourites_count":15392,"statuses_count":13769,"created_at":"Wed Jan 14 21:30:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660313010632699904\/p68KP6_U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660313010632699904\/p68KP6_U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2983224168\/1446228365","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:58 +0000 2015","id":663727233740107776,"id_str":"663727233740107776","text":"Trend of #prdp is now at its peak.\nAny one can predict 1st day collection of #PremRatanDhanPayo ?\n\n#3DaysToPRDP \n#DiwaliDhamakaWithPRDP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140392916,"id_str":"140392916","name":"Dipesh Shah","screen_name":"dipesh333","location":"Dubai","url":null,"description":"Civil Engineer","protected":false,"verified":false,"followers_count":48,"friends_count":11,"listed_count":1,"favourites_count":11,"statuses_count":128,"created_at":"Wed May 05 11:19:47 +0000 2010","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BF1238","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme20\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme20\/bg.png","profile_background_tile":false,"profile_link_color":"BF1238","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648909393145102336\/PCu6MLRY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648909393145102336\/PCu6MLRY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140392916\/1434390995","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":3,"entities":{"hashtags":[{"text":"prdp","indices":[9,14]},{"text":"PremRatanDhanPayo","indices":[77,95]},{"text":"3DaysToPRDP","indices":[99,111]},{"text":"DiwaliDhamakaWithPRDP","indices":[113,135]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"prdp","indices":[24,29]},{"text":"PremRatanDhanPayo","indices":[92,110]},{"text":"3DaysToPRDP","indices":[114,126]},{"text":"DiwaliDhamakaWithPRDP","indices":[128,140]}],"urls":[],"user_mentions":[{"screen_name":"dipesh333","name":"Dipesh Shah","id":140392916,"id_str":"140392916","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106662"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190146244608,"id_str":"663728190146244608","text":"RT @JonB_954: Keep away from drama, it's bad for your health \ud83d\udeab\ud83d\ude37","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":586059607,"id_str":"586059607","name":"Basic Kalei \u270c\ufe0f","screen_name":"kaallleeeeiiiii","location":"Beloit, Wisconson","url":null,"description":"Please smd lul hoe.\u270c\ufe0f Insta: @kaallleeeeiiiii \u2764\ufe0f","protected":false,"verified":false,"followers_count":1276,"friends_count":1298,"listed_count":0,"favourites_count":2163,"statuses_count":2915,"created_at":"Sun May 20 22:52:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654813046712369156\/aBPES_Eg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654813046712369156\/aBPES_Eg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/586059607\/1443320838","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:27:14 +0000 2015","id":663558437293412352,"id_str":"663558437293412352","text":"Keep away from drama, it's bad for your health \ud83d\udeab\ud83d\ude37","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":166938112,"id_str":"166938112","name":"I FOLLOW BACK \u270a","screen_name":"JonB_954","location":"Fort Lauderdale, FL","url":null,"description":"For a S\/O to my 200K + my other pages (180K) Go on @JonBsDeck2 and follow the instructions. Let me gain you followers and keep your page active. DM me.","protected":false,"verified":false,"followers_count":212570,"friends_count":176143,"listed_count":317,"favourites_count":303,"statuses_count":103098,"created_at":"Thu Jul 15 10:38:24 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/149923419\/YJTEj6_large.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/149923419\/YJTEj6_large.jpg","profile_background_tile":false,"profile_link_color":"202124","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1F90DB","profile_text_color":"1C1817","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548419234670575617\/apO9XD1a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548419234670575617\/apO9XD1a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/166938112\/1432706719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":134,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JonB_954","name":"I FOLLOW BACK \u270a","id":166938112,"id_str":"166938112","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106661"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190137896960,"id_str":"663728190137896960","text":"I need to sleeeeeep but i still have things to do \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2783947333,"id_str":"2783947333","name":"Ann\u2743","screen_name":"sml_dallas","location":null,"url":null,"description":"patiently waiting for the right guy to barge in my life \u2743 taylor swift is beautiful","protected":false,"verified":false,"followers_count":389,"friends_count":592,"listed_count":1,"favourites_count":1034,"statuses_count":2769,"created_at":"Mon Sep 01 10:52:14 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663243779323793408\/XykzrIB5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663243779323793408\/XykzrIB5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2783947333\/1438504267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106659"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163054592,"id_str":"663728190163054592","text":"\u50d5\u666e\u6bb5\u6012\u3089\u306a\u3044\n\n\u516c\u5f0f\u5927\u4f1a\u4e2d\u5bfe\u6226\u76f8\u624b\u306b\u30a2\u30f3\u30b8\u30e5\u306e\u30eb\u30fc\u30eb\u8aac\u660e\u3057\u306a\u304c\u3089\u6226\u3063\u305f\u3053\u3068\u3042\u308b\u3057\u521d\u5fc3\u8005\u306b\u306f\u512a\u3057\u3044\u307b\u3046\n\n\u50d5\u6012\u308b\u3088\u307b\u3069\u306e\u4e8b\u76f8\u624b\u3057\u305f\n\n\u3044\u3063\u3071\u3093\u3074\u30fc\u3077\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189175098,"id_str":"189175098","name":"SHOWHEY@\u30df\u30b9\u30bf\u30fc\u30df\u30eb\u30af","screen_name":"daice0704","location":"\u30df\u30eb\u30af\u306e\u56fd","url":null,"description":"\u30df\u30eb\u30af\u306e\u56fd\/\u30a2\u30f3\u30b8\u30e5\/\u30ed\u30b6\u30ea\u30fc\/\u30cf\u30ca\u30e4\u30de\u30bf\/\u4e2d\u6751\u714c\/\u30de\u30f3\u30ac\/\u767e\u5408\/ \u30d7\u30ea\u30d1\u30e9\u5927\u4f53\u3053\u3093\u306a\u611f\u3058\u3069\u3059(\u00b4\uff65\u03c9\uff65`) \u30a2\u30a4\u30b3\u30f3\u306f\u3061\u308d\u308a\u30fc\u753b\u4f2f\u306e\u63cf\u3044\u305f\u3067\u3059\u0669( '\u03c9' )\u0648 \u6c17\u8efd\u306b\u3088\u308d\u3057\u304f\u0669(\u02ca\u15dc\u02cb*)\u0648 \u30de\u30a4\u30ad\u30e3\u30e9\u306f\u3057\u3087\u3046\u2605\u3068\u3042\u304b\u306d\u266a\u266a\u3067\u3084\u3063\u3066\u307e\u3059\u0669( '\u03c9' )\u0648 \u30df\u30eb\u30af\u306e\u56fd\u3067\u4e00\u756a\u771f\u9762\u76ee\u306a\u4eba\u3067\u3059 #kumaV","protected":false,"verified":false,"followers_count":351,"friends_count":536,"listed_count":17,"favourites_count":690,"statuses_count":38937,"created_at":"Fri Sep 10 15:39:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658248251833913344\/yZWva-m9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658248251833913344\/yZWva-m9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189175098\/1446526755","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190158823424,"id_str":"663728190158823424","text":"RT @vladoluna24: Hope @persib will play again final of Piala Sudirman, and our gubernur will come again in dressing room to promise somethi\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58773666,"id_str":"58773666","name":"m_buddyana","screen_name":"m_buddyana","location":null,"url":null,"description":"You can hate me,You can talk bad about me. But in the end, i'll stay HAPPY, and you'll stay JEALOUS. Who's the winner then? | PERSIB SALAWASNA","protected":false,"verified":false,"followers_count":351,"friends_count":75,"listed_count":3,"favourites_count":0,"statuses_count":30262,"created_at":"Tue Jul 21 11:45:14 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/36859778\/iseng.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/36859778\/iseng.jpg","profile_background_tile":false,"profile_link_color":"0D427A","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658821752567365632\/NuZSqyz1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658821752567365632\/NuZSqyz1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58773666\/1445910321","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:38:53 +0000 2015","id":663636865254338560,"id_str":"663636865254338560","text":"Hope @persib will play again final of Piala Sudirman, and our gubernur will come again in dressing room to promise something @aheryawan","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1157747856,"id_str":"1157747856","name":"VLADIMIR VUJOVIC","screen_name":"vladoluna24","location":null,"url":"http:\/\/www.vladimirvujovic.com","description":"Luna \u2764\ufe0f Natasa","protected":false,"verified":false,"followers_count":57494,"friends_count":64,"listed_count":40,"favourites_count":844,"statuses_count":721,"created_at":"Thu Feb 07 17:26:19 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662035251905093637\/RcXWWrub_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662035251905093637\/RcXWWrub_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":248,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"persib","name":"PERSIB","id":14372726,"id_str":"14372726","indices":[5,12]},{"screen_name":"aheryawan","name":"Ahmad Heryawan","id":183832491,"id_str":"183832491","indices":[125,135]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vladoluna24","name":"VLADIMIR VUJOVIC","id":1157747856,"id_str":"1157747856","indices":[3,15]},{"screen_name":"persib","name":"PERSIB","id":14372726,"id_str":"14372726","indices":[22,29]},{"screen_name":"aheryawan","name":"Ahmad Heryawan","id":183832491,"id_str":"183832491","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106664"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163042304,"id_str":"663728190163042304","text":"\u306a\u3093\u304b\u7a42\u4e43\u679c\u3092\u60f3\u3063\u3066\u6b4c\u3063\u3066\u308b\u307f\u305f\u3044\u3060\u306a\u30fc\u3063\u3066\u611f\u3058\u3066\u3081\u3063\u3061\u3087\u6ce3\u3051\u3066\u304d\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265637326,"id_str":"265637326","name":"\u661f\u7a7a\u30b4\u30fc\u30eb\u30c9\u30de\u30f3","screen_name":"n_recoom","location":"\u56fd\u7acb\u97f3\u30ce\u6728\u5742\u5b66\u9662","url":null,"description":"\u7d76\u8cdb\u661f\u7a7a\u51db\u3061\u3083\u3093\u63a8\u3057\u3001\u30e9\u30d6\u30e9\u30a4\u30d6\u3068\u03bc's\u3092\u611b\u3057\u3066\u6b62\u307e\u306a\u3044\u793e\u755c\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u3002\u30b9\u30af\u30d5\u30a7\u30b9\u30a8\u30f3\u30b8\u30e7\u30a4\u52e2\uff08ID494798464\uff09\u3001\u7279\u6280\u306f\u30b3\u30f3\u30dc\u3092\u5207\u308b\u3053\u3068\u3002\u51db\u3061\u3083\u3093\u304c\u53ef\u611b\u3059\u304e\u3066\u5143\u6c17\u306e\u6e29\u5ea6\u306f\u4e0b\u304c\u3089\u306a\u3044\uff1e\u03c9\uff1c\/ \u97f3\u697d\u3068\u304b\u697d\u5668\u3068\u304b\u306e\u8a71\u306f\u3053\u3061\u3089@recoombass","protected":false,"verified":false,"followers_count":441,"friends_count":330,"listed_count":48,"favourites_count":45664,"statuses_count":36196,"created_at":"Sun Mar 13 22:32:49 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663368606340616194\/wc3kLj3K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663368606340616194\/wc3kLj3K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265637326\/1423733805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190146260992,"id_str":"663728190146260992","text":"\u672a\u6210\u5e74\u6587\u82b8\u7cfb\u8da3\u5473\u306e\u66f8\u304d\u624b\u306e\uff13\u5272\u5f37\u306b\u52b9\u304f\u8aad\u5f8c\u306e\u611f\u60f3No1\uff08\u4ffa\u8abf\u3079\uff09\n\u300cfate stay\/night \u3068\u7a7a\u306e\u5883\u754c\u3001\u3069\u3063\u3061\u898b\u305f\uff1f\u300d\n\u3067\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1521761149,"id_str":"1521761149","name":"\u30a8\u30f3\u30b8\u30cb\u30a2\u30ea\u30f3\u30b0\u306e\u95c7\u306e\u9b54\u8853\u306b\u5bfe\u3059\u308b\u9632\u885b\u8853","screen_name":"keizo_bookman","location":null,"url":"http:\/\/keizobookman.hatenablog.com\/","description":"screen name: keizo.\nhaskeller, gopher, libvmod_mruby-dev \u795e\u6211\u72e9 \u3046\u305f\u308f\u308c\u308b\u3082\u306e","protected":false,"verified":false,"followers_count":306,"friends_count":342,"listed_count":19,"favourites_count":3737,"statuses_count":25649,"created_at":"Sun Jun 16 09:38:44 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000078599109\/a4deceec83ebb854d1e25e0e518ec60e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000078599109\/a4deceec83ebb854d1e25e0e518ec60e.jpeg","profile_background_tile":true,"profile_link_color":"112E69","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000000284219\/f8560d1f3ad2d79561dc7f78fec2befe_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000000284219\/f8560d1f3ad2d79561dc7f78fec2befe_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106661"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190142058496,"id_str":"663728190142058496","text":"My hair is stuck in a fro\ud83d\udc80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1738983644,"id_str":"1738983644","name":"\u26ab54\u26ab","screen_name":"ty_hayden55","location":null,"url":null,"description":"D-end #54\n\nSc ~liteskin_jeezus","protected":false,"verified":false,"followers_count":326,"friends_count":490,"listed_count":0,"favourites_count":4006,"statuses_count":1448,"created_at":"Sat Sep 07 01:02:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658004604639035392\/uSCgUvBm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658004604639035392\/uSCgUvBm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1738983644\/1445715497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106660"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190154629120,"id_str":"663728190154629120","text":"\u30d0\u30a4\u30a8\u30eb\u306e\u6f14\u594f\u52d5\u753b\u30aa\u30ab\u30ba\u306b\u30aa\u30ca\u30cb\u30fc\u3057\u3066\u304f\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2458253880,"id_str":"2458253880","name":"\u30b8\u30e7\u30f3\u30fb\u30c7\u30e5\u30fc\u30a4","screen_name":"moi_moi_nyt","location":"\u9ec4\u91d1\u753a\u30d4\u30f3\u30af\u30e9\u30a4\u30aa\u30f3","url":"http:\/\/www.xvideos.com","description":"\u30a4\u30ae\u30ea\u30b9\u738b\u5bb6\u6700\u5927\u306e\u30ab\u30c3\u30d7\u6570\u3092\u8a87\u308b\u30af\u30bd\u30b8\u30e7\u30f3\u3002 \u30d8\u30c3\u30c0\u30fc:\u9752\u3061\u3083\u3093@jyukai_girl","protected":false,"verified":false,"followers_count":310,"friends_count":413,"listed_count":6,"favourites_count":21873,"statuses_count":33719,"created_at":"Tue Apr 22 14:40:34 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659747104827441152\/bLXQBQ4v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659747104827441152\/bLXQBQ4v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2458253880\/1446894290","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106663"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133784576,"id_str":"663728190133784576","text":"@elisabeth_petit @encarnacion67 @BergerBerge @jojobeau39 @JeanneReinhart @amijodoin @Berger3254 https:\/\/t.co\/g6tVAqSxHW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719608453582848,"in_reply_to_status_id_str":"663719608453582848","in_reply_to_user_id":2361412945,"in_reply_to_user_id_str":"2361412945","in_reply_to_screen_name":"Salahana61","user":{"id":2361412945,"id_str":"2361412945","name":"Karalastik","screen_name":"Salahana61","location":"KA\u00c7IYORLAR! kap\u0131lar\u0131 Tutun! ","url":"http:\/\/bit.ly\/1LoGkzH","description":"Mehmet Baransu Tahliye! En g\u00fczel g\u00fcnlerimiz, hen\u00fcz ya\u015famad\u0131klar\u0131m\u0131z.","protected":false,"verified":false,"followers_count":2779,"friends_count":2660,"listed_count":15,"favourites_count":12467,"statuses_count":54961,"created_at":"Tue Feb 25 17:22:13 +0000 2014","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641502692607688704\/VwFqAKll.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641502692607688704\/VwFqAKll.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555383936939880450\/uoIjcz3Y_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555383936939880450\/uoIjcz3Y_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2361412945\/1441650320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g6tVAqSxHW","expanded_url":"https:\/\/www.youtube.com\/watch?v=Mycq2rfovlk","display_url":"youtube.com\/watch?v=Mycq2r\u2026","indices":[96,119]}],"user_mentions":[{"screen_name":"elisabeth_petit","name":"Elisabeth Petit","id":708584675,"id_str":"708584675","indices":[0,16]},{"screen_name":"encarnacion67","name":"MARIA CRISTINA","id":339733069,"id_str":"339733069","indices":[17,31]},{"screen_name":"BergerBerge","name":"Nicole Berger","id":1134512491,"id_str":"1134512491","indices":[32,44]},{"screen_name":"jojobeau39","name":"\u2764Jocelyne Beauregard","id":536855580,"id_str":"536855580","indices":[45,56]},{"screen_name":"JeanneReinhart","name":"Jeanne Reinhart","id":763341578,"id_str":"763341578","indices":[57,72]},{"screen_name":"amijodoin","name":"Josiane Morin","id":745803631,"id_str":"745803631","indices":[73,83]},{"screen_name":"Berger3254","name":"Chantal","id":563938309,"id_str":"563938309","indices":[84,95]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190150479873,"id_str":"663728190150479873","text":"#Beauty #Deals #338 Ray-Ban Reading glasses Carbon Fibre Model RB8901 5263 Demigloss Black https:\/\/t.co\/Heqe05DFBF #Hair #Skin #women","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2493253616,"id_str":"2493253616","name":"Real Beauty","screen_name":"Timafordy","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":355,"friends_count":4,"listed_count":39,"favourites_count":8,"statuses_count":314326,"created_at":"Tue May 13 16:58:04 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/475596674002202624\/A8UAl5ZD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/475596674002202624\/A8UAl5ZD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Beauty","indices":[0,7]},{"text":"Deals","indices":[8,14]},{"text":"Hair","indices":[115,120]},{"text":"Skin","indices":[121,126]},{"text":"women","indices":[127,133]}],"urls":[{"url":"https:\/\/t.co\/Heqe05DFBF","expanded_url":"http:\/\/dlvr.it\/ChfhNx","display_url":"dlvr.it\/ChfhNx","indices":[91,114]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106662"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190129483778,"id_str":"663728190129483778","text":"@omi___tkhr_12 \n\u3093\u3060\uff01\ud83d\udc4d\ud83c\udffb\n\u306a\u3093\u304b\u4f53\u5236\u304c\u30ad\u30c4\u30a4\u304b\u3089\u5bdd\u308c\u306a\u3044...ww\ud83d\ude02\n\u305d\u308c\u3082\u3042\u308b\u3051\u3069\u306d\ud83d\ude01ww\n\n\u305d\u308c\u306d\ud83d\ude18\n\u30ac\u30c1\u3067\u4f1a\u308f\u306a\u3044\u3068\u30c0\u30e1\u306a\u3084\u3064\u306d\ud83d\udc95\ud83d\ude0d\n\u81e3\u81e3\u30b3\u30f3\u30d3\u3055\u3044\u3053\u30fc\ud83d\ude06\ud83d\ude0a\n\n\u306f\u30fc\u3044\ud83d\ude4b\n\u7530\u820e\u306a\u306e\u304b\uff1f\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663356523486179329,"in_reply_to_status_id_str":"663356523486179329","in_reply_to_user_id":3278372672,"in_reply_to_user_id_str":"3278372672","in_reply_to_screen_name":"omi___tkhr_12","user":{"id":3189344389,"id_str":"3189344389","name":"\u306a\u306a\u304a\u307f","screen_name":"70omi312","location":"OMI\u306e\u3068\u30fb\u306a\u30fb\u308a\u2661","url":"http:\/\/Instagram.com\/0.3.1.2.OMI","description":"\uff0a00line JK1\uff0aBP7\u670815\u65e5LV \u8ffd\u52a010\u670817\u65e5\u53c2\u6226\u6e08\u307f\uff0aLDH LOVE\uff0a\u4e09\u4ee3\u76ee J Soul BrothersLOVE\uff0aGENERATIONS\uff0a\u81e3\u304f\u3093LOVE\uff0a\u73b2\u65bc\u304f\u3093LOVE\uff0a\u5927\u6a39\u304f\u3093LOVE\u2606 \u2661\u76f8\u65b9\u2661\u2192\u3010@omi___tkhr_12 \u3011","protected":false,"verified":false,"followers_count":435,"friends_count":438,"listed_count":2,"favourites_count":1154,"statuses_count":1776,"created_at":"Sat May 09 02:01:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660828443764879360\/zffr7IyQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660828443764879360\/zffr7IyQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3189344389\/1446474312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"omi___tkhr_12","name":"\uff0aMAOMI\uff0a","id":3278372672,"id_str":"3278372672","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106657"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167232512,"id_str":"663728190167232512","text":"\uc9c8\ud22c\ub294 \ub354\uc774\uc0c1 \ub124\uc774\ubc84..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3925115725,"id_str":"3925115725","name":"\uc774\uc988\u273f","screen_name":"IS__z","location":"2015.10.27 \u2665 @Todo_for_IS \u2665","url":"http:\/\/mama.mwave.me\/mobile\/myVoteState#","description":"\ud638\ubaa8\uc5d0 \ud658\uc7a5\ud569\ub2c8\ub2e4 \/ \ub808\ubc85&\uc624\uc18c\ub9c8\uce20 \/ \uc885\uc885\uc695\ud2b8,\uac20\ubd07\uc553\uc774\u2665","protected":false,"verified":false,"followers_count":225,"friends_count":220,"listed_count":0,"favourites_count":95,"statuses_count":2516,"created_at":"Sat Oct 17 13:04:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660944419542056962\/NGBubqed_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660944419542056962\/NGBubqed_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3925115725\/1446985550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167347200,"id_str":"663728190167347200","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319921807,"id_str":"3319921807","name":"\u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 ","screen_name":"gra_1213","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0627\u0631\u062d\u0645 \u0627\u0645\u064a \u0648\u0623\u0628\u064a \u0648\u0627\u062c\u0639\u0644\u0647\u0645\u0627 \u0641\u064a \u0627\u0644\u0641\u0631\u062f\u0648\u0633 \u0627\u0644\u0623\u0639\u0644\u0649 \u0645\u0646 \u0627\u0644\u062c\u0646\u0629","protected":false,"verified":false,"followers_count":1,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":215,"created_at":"Wed Aug 19 10:10:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133772288,"id_str":"663728190133772288","text":"RT @Nashgrier: Age is such a weird thing to have to deal with","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3642304636,"id_str":"3642304636","name":"Clara B","screen_name":"lifeasclara","location":null,"url":null,"description":"we become what we dream about","protected":false,"verified":false,"followers_count":21,"friends_count":69,"listed_count":0,"favourites_count":188,"statuses_count":149,"created_at":"Sun Sep 13 12:55:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"da","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650767730312892417\/2_5akCrW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650767730312892417\/2_5akCrW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3642304636\/1443709935","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:15:48 +0000 2015","id":663162971976175616,"id_str":"663162971976175616","text":"Age is such a weird thing to have to deal with","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310072711,"id_str":"310072711","name":"Nash Grier","screen_name":"Nashgrier","location":null,"url":"http:\/\/itunes.com\/theoutfield","description":"Pre-Order my first film The Outfield below!","protected":false,"verified":true,"followers_count":5092913,"friends_count":72426,"listed_count":15250,"favourites_count":28698,"statuses_count":26228,"created_at":"Fri Jun 03 04:34:15 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662468349469859840\/2hvwk4qF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662468349469859840\/2hvwk4qF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310072711\/1446779643","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9890,"favorite_count":20204,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nashgrier","name":"Nash Grier","id":310072711,"id_str":"310072711","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163132416,"id_str":"663728190163132416","text":"@DanivonUK @UndercoverMutha @MaternityAction Given the changing pay dynamics over that period of time, no it doesn't. Look at annual ONS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727339625455616,"in_reply_to_status_id_str":"663727339625455616","in_reply_to_user_id":65434313,"in_reply_to_user_id_str":"65434313","in_reply_to_screen_name":"DanivonUK","user":{"id":1519242367,"id_str":"1519242367","name":"David Shipley","screen_name":"DavidCShipley","location":"London","url":null,"description":"M&A Banker. Rider. Rugby-lover. Non-training prop.","protected":false,"verified":false,"followers_count":610,"friends_count":1563,"listed_count":12,"favourites_count":1991,"statuses_count":19508,"created_at":"Sat Jun 15 12:01:46 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645722209055600640\/73MrGnqJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645722209055600640\/73MrGnqJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1519242367\/1407406354","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DanivonUK","name":"Owen Richards","id":65434313,"id_str":"65434313","indices":[0,10]},{"screen_name":"UndercoverMutha","name":"Sophia Cannon","id":279238668,"id_str":"279238668","indices":[11,27]},{"screen_name":"MaternityAction","name":"Maternity Action","id":463003262,"id_str":"463003262","indices":[28,44]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190167212032,"id_str":"663728190167212032","text":"Pit pit pit... Pitbulll... \u266b Fun (feat. Chris Brown) by @Pitbull \u2014 https:\/\/t.co\/4hH7cY0PTJ","source":"\u003ca href=\"https:\/\/path.com\/\" rel=\"nofollow\"\u003ePath\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1346300532,"id_str":"1346300532","name":"RnestJulyansyah","screen_name":"_ErnestBmx","location":null,"url":"http:\/\/instagram.com","description":"DEVIL & ANGEL","protected":false,"verified":false,"followers_count":231,"friends_count":216,"listed_count":0,"favourites_count":71,"statuses_count":6696,"created_at":"Fri Apr 12 08:30:02 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000041448416\/c8c311a000b5668d209314158194df77.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000041448416\/c8c311a000b5668d209314158194df77.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557088040493936641\/iCXnR3LN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557088040493936641\/iCXnR3LN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1346300532\/1366361846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4hH7cY0PTJ","expanded_url":"https:\/\/path.com\/p\/1Gct2m","display_url":"path.com\/p\/1Gct2m","indices":[67,90]}],"user_mentions":[{"screen_name":"pitbull","name":"Pitbull","id":31927467,"id_str":"31927467","indices":[56,64]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106666"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133698560,"id_str":"663728190133698560","text":"@tomoronnronn \u3084\u3063\u305f\u305c\uff01\u3000\u3084\u308d\uff01\uff01\n\u3053\u308f\uff01\uff01\u7df4\u7fd2\u3057\u3068\u3053\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726104578932736,"in_reply_to_status_id_str":"663726104578932736","in_reply_to_user_id":2369761772,"in_reply_to_user_id_str":"2369761772","in_reply_to_screen_name":"tomoronnronn","user":{"id":1315827920,"id_str":"1315827920","name":"\u3057\u3083\u308f","screen_name":"k_m_k_s_a_u","location":null,"url":null,"description":"\u2103-ute\u3000\u3060\u3051\u3000\u30cf\u30ed\u30d7\u30ed\u3000\u30a2\u30c3\u30d7\u30a2\u30c3\u30d7\u300048g 46 \u5973\u5b50\u6d41\u3000\u3082\u597d\u304d\u3067\u3059 \u305d\u306e\u4ed6\u3082\u8272\u3005\u308f\u304b\u308a\u307e\u3059\u3000\u3077\u3088\u3089\u30fc\u3067\u3059\u3000in\u5927\u962a","protected":false,"verified":false,"followers_count":644,"friends_count":527,"listed_count":17,"favourites_count":3533,"statuses_count":16965,"created_at":"Sat Mar 30 05:33:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613024355388297217\/P8jMjj9k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613024355388297217\/P8jMjj9k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1315827920\/1405789912","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tomoronnronn","name":"\u3068\u3082\u308d\u3093","id":2369761772,"id_str":"2369761772","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190163042305,"id_str":"663728190163042305","text":"@SlotRusshie \u660e\u65e5\u3082\u898b\u3066\u304f\u308c\u308b\u30ab\u30ca\u306e\u4eba\u3067\u3059\u306d[\u58c1]\u03c9\u00b4\u30fb)\uff81\uff97\uff6f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727799828549632,"in_reply_to_status_id_str":"663727799828549632","in_reply_to_user_id":2333152291,"in_reply_to_user_id_str":"2333152291","in_reply_to_screen_name":"SlotRusshie","user":{"id":2761924663,"id_str":"2761924663","name":"\u3051\u3093","screen_name":"o9o24272176","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":161,"friends_count":158,"listed_count":0,"favourites_count":39,"statuses_count":11449,"created_at":"Sun Aug 24 09:27:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588729965551554560\/u3d8nio8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588729965551554560\/u3d8nio8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2761924663\/1429199138","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SlotRusshie","name":"\u30e9\u30c3\u30b7\u30fc(\u72ac\u3067\u3082\u6728\u6751\u3067\u3082\u306a\u3044)","id":2333152291,"id_str":"2333152291","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106665"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190158835712,"id_str":"663728190158835712","text":"86 Penjahat Cyber Dideportasi ke Tiongkok: Tahun ini saja, kita sudah mendeportasi sebanyak 10.100 WNA bermasalah https:\/\/t.co\/8dgjNIdagg","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40779940,"id_str":"40779940","name":"Okezone News","screen_name":"okezonews","location":"indonesian","url":"http:\/\/www.okezone.com","description":"the official Twitter account of http:\/\/okezone.com, Indonesian News & Entertainment Online.","protected":false,"verified":false,"followers_count":8759,"friends_count":71,"listed_count":161,"favourites_count":3,"statuses_count":1268459,"created_at":"Mon May 18 01:18:06 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472561452906070016\/LX7WCMAG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472561452906070016\/LX7WCMAG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40779940\/1400396916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8dgjNIdagg","expanded_url":"http:\/\/bit.ly\/1Qp7SWE","display_url":"bit.ly\/1Qp7SWE","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080106664"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133657602,"id_str":"663728190133657602","text":"Your social inclinations are luring you to reach out beyond yo... More for Sagittarius https:\/\/t.co\/HPLD98f5DC","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":591361133,"id_str":"591361133","name":"Lizzie","screen_name":"LIZard_1212","location":"Horsham, PA","url":null,"description":"HH '16 | 12.10.14","protected":false,"verified":false,"followers_count":188,"friends_count":765,"listed_count":3,"favourites_count":1860,"statuses_count":4684,"created_at":"Sun May 27 00:08:32 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643631117657112577\/JTrjpusu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643631117657112577\/JTrjpusu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/591361133\/1435007107","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HPLD98f5DC","expanded_url":"http:\/\/bit.ly\/yibOac","display_url":"bit.ly\/yibOac","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133661696,"id_str":"663728190133661696","text":"\u304a\u3081\u30fc ( #\u3069\u3046\u3076\u3064\u306e\u68ee \u30ad\u30e3\u30b9 https:\/\/t.co\/rLk4hNsh70 )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2993459959,"id_str":"2993459959","name":"\u3042\u304a\u307a\u3093","screen_name":"0342singo","location":"\u795e\u5948\u5ddd\u770c","url":null,"description":"\u306f\u3058\u3081\u307e\u3057\u3066\u308b\u30a2\u30cb\u30e1\u3001\u30dc\u30ab\u30ed\u304c\u597d\u304d\u3067\u3059\u3002 \u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3057\u3066\u307e\u3059\u3002vita\u306e\u30d5\u30ec\u30f3\u30c9 \u3088\u308d\u3057\u304f\u3046\u3046\u3046\u3046 \u30d5\u30ec\u30f3\u30c9\u540d\u2192ahogesingo \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3046\u3046\u3046\u3046\u3046\u203c\ufe0e","protected":false,"verified":false,"followers_count":27,"friends_count":67,"listed_count":0,"favourites_count":7,"statuses_count":355,"created_at":"Fri Jan 23 13:56:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658678969684783104\/VZ5h83Vc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658678969684783104\/VZ5h83Vc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2993459959\/1445257163","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3069\u3046\u3076\u3064\u306e\u68ee","indices":[6,13]}],"urls":[{"url":"https:\/\/t.co\/rLk4hNsh70","expanded_url":"http:\/\/cas.st\/cd36540","display_url":"cas.st\/cd36540","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190158938112,"id_str":"663728190158938112","text":"@smokenanight n\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727711081406464,"in_reply_to_status_id_str":"663727711081406464","in_reply_to_user_id":1644144991,"in_reply_to_user_id_str":"1644144991","in_reply_to_screen_name":"smokenanight","user":{"id":1390754264,"id_str":"1390754264","name":"Orientaime","screen_name":"DougLemes_","location":null,"url":null,"description":"Capricorniano e largado","protected":false,"verified":false,"followers_count":156,"friends_count":144,"listed_count":0,"favourites_count":282,"statuses_count":1458,"created_at":"Tue Apr 30 00:04:45 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/855942096\/020c73f7e0e072a29305056a3d3843ad.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/855942096\/020c73f7e0e072a29305056a3d3843ad.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662385007714050048\/TCK7XeUT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662385007714050048\/TCK7XeUT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390754264\/1444799340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"smokenanight","name":"isa bela","id":1644144991,"id_str":"1644144991","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080106664"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133829632,"id_str":"663728190133829632","text":"#Olympia-Referendum: Strafbare Beschaffung und Unterdr\u00fcckung von Briefwahlunterlagen durch \u201eJA\u201c-Kampagne?\n\nAm... https:\/\/t.co\/xIxejuQJr0","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2799556938,"id_str":"2799556938","name":"Olympia_Bewerbung_24","screen_name":"Sommerspiele_24","location":null,"url":"http:\/\/www.walterscheuerl.de","description":"Initiative f\u00fcr Transparenz bei der Bewerbung von Hamburg f\u00fcr Olympische und Paralympische Sommerspiele 2024 - Impressum: http:\/\/t.co\/II3tuBBXu4","protected":false,"verified":false,"followers_count":138,"friends_count":408,"listed_count":4,"favourites_count":42,"statuses_count":458,"created_at":"Tue Sep 09 09:54:35 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577854763259179009\/SNZXq4S9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577854763259179009\/SNZXq4S9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2799556938\/1426606181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Olympia","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/xIxejuQJr0","expanded_url":"http:\/\/fb.me\/3zDtTwiEg","display_url":"fb.me\/3zDtTwiEg","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190129483776,"id_str":"663728190129483776","text":"@fk37_joker \n\u305b\u304f\u3061\u3083\u3093\u3068\u304b\u9332\u753b\u3067\u304d\u308b\u304b\u3002\ud83d\udc4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727678151749632,"in_reply_to_status_id_str":"663727678151749632","in_reply_to_user_id":3371888174,"in_reply_to_user_id_str":"3371888174","in_reply_to_screen_name":"fk37_joker","user":{"id":3252701742,"id_str":"3252701742","name":"\u3053\uff01\u3066\uff01\u3044\uff01\u307f\uff01\u3066\uff01\u3060\u3064\u307d\u3093","screen_name":"JloveNatsupon","location":"\u30a2\u30eb\u30d7\u30b9","url":null,"description":"\u591c\u306f\u6ff5\u7530\u3002\u5c0f\u7027\u3092\u8cb6\u3057\u307e\u304f\u3063\u3066\u308b\u91cd\u5ca1\u62c5\u3067\u3054\u3056\u3093\u3059\u3002\u4eca\u8d85\u7d76\u51b7\u3081\u3066\u307e\u3059\u3002\n\u306a\u308a\u3059\u3068\u300210\/25\u3088\u308a\u59cb\u52d5\u3002","protected":false,"verified":false,"followers_count":211,"friends_count":217,"listed_count":19,"favourites_count":457,"statuses_count":15269,"created_at":"Mon Jun 22 14:08:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661846448510623745\/OlkICsDS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661846448510623745\/OlkICsDS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252701742\/1446299056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fk37_joker","name":"\u30c1\u30a7\u30ea\u30aa\u306f\u591a\u5206\u4f4e\u6d6e\u4e0a","id":3371888174,"id_str":"3371888174","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106657"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190154670080,"id_str":"663728190154670080","text":"\u30e2\u30a4\uff01iPhone\u304b\u3089\u30ad\u30e3\u30b9\u914d\u4fe1\u4e2d -\u5207\u308c\u305fwww https:\/\/t.co\/YDhJEmvbOX","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3023679200,"id_str":"3023679200","name":"\u6b63\u9732\u4e38\u30b8\u30b8\u30a4\u306f\u304a\u91d1\u304c\u306a\u3044","screen_name":"Seirogan_21","location":"\u30a2\u30cb\u30de\u30eb\u30cf\u30a6\u30b9","url":null,"description":"\u3075\u30fc\u3061\u3083\u3093\u3076\u30fc\u3061\u3083\u3093\u3077\u30fc\u3061\u3083\u3093\u3002\u30b8\u30b8\u30a4\u306e\u76f8\u65b9\u2192\u300e@bigbang_yg_anna\u300f\u30b8\u30b8\u30a4\u306e\u76f8\u68d2\u2192\u300e@__yg5\u300f","protected":false,"verified":false,"followers_count":215,"friends_count":138,"listed_count":23,"favourites_count":811,"statuses_count":14021,"created_at":"Tue Feb 17 10:03:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655175966080131072\/rsWSCwTP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655175966080131072\/rsWSCwTP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3023679200\/1441559306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YDhJEmvbOX","expanded_url":"http:\/\/cas.st\/cd3cf95","display_url":"cas.st\/cd3cf95","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106663"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190154649600,"id_str":"663728190154649600","text":"#lunes con Buena #actitud #losdehoy https:\/\/t.co\/AeijaHaE8u","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":116248870,"id_str":"116248870","name":"El Sorprendente \u00ae","screen_name":"ELSORPREDENTE","location":"RESPETO Y ACTITUD","url":null,"description":"Tolerante, capaz y buen amigo. Amo a mi famila sobre todas las cosas y por ellos hago y hare cualquier cosa.","protected":false,"verified":false,"followers_count":47,"friends_count":93,"listed_count":3,"favourites_count":519,"statuses_count":1271,"created_at":"Sun Feb 21 19:05:02 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661774417228226560\/mo-6UFb4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661774417228226560\/mo-6UFb4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/116248870\/1445091991","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lunes","indices":[0,6]},{"text":"actitud","indices":[17,25]},{"text":"losdehoy","indices":[26,35]}],"urls":[{"url":"https:\/\/t.co\/AeijaHaE8u","expanded_url":"https:\/\/instagram.com\/p\/93ifzBJ5D8\/","display_url":"instagram.com\/p\/93ifzBJ5D8\/","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080106663"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190133669888,"id_str":"663728190133669888","text":"Our Facebook Friend of the\u00a0Week https:\/\/t.co\/qIVdI8A5MA","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314637055,"id_str":"3314637055","name":"Chattanooga","screen_name":"yskChattanooga","location":"Chattanooga, TN","url":"http:\/\/chattanooga.ysktoday.com","description":"Follow YSK Chattanooga for the latest news in the #Chattanooga, #Tennessee area.\nhttp:\/\/YSKtoday.com","protected":false,"verified":false,"followers_count":130,"friends_count":66,"listed_count":12,"favourites_count":9,"statuses_count":13831,"created_at":"Fri Aug 14 01:12:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"532491","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637283973278789632\/1C-UY8Qv_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637283973278789632\/1C-UY8Qv_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314637055\/1442378748","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qIVdI8A5MA","expanded_url":"http:\/\/chattanooga.ysktoday.com\/our-facebook-friend-of-the-week-2\/","display_url":"chattanooga.ysktoday.com\/our-facebook-f\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080106658"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190142087168,"id_str":"663728190142087168","text":"\u3042\u3064\u3044\u308f\u30fb\u30fb\u30fb\u6eb6\u3051\u3061\u3083\u3044\u305d\u3046\u30fb\u30fb\u30fb","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":352390755,"id_str":"352390755","name":"\u591a\u3005\u826f\u5c0f\u5098","screen_name":"Bot_Kogasa","location":null,"url":null,"description":"\u52dd\u624b\u306a\u601d\u3044\u3067\u4f5c\u3063\u305f\u5c0f\u5098\u306eBot\u3067\u3059\u3002\u52dd\u624b\u306b\u66b4\u8d70\u3059\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":22,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":55710,"created_at":"Wed Aug 10 15:13:27 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/308658187\/__.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/308658187\/__.jpg","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1488182848\/______2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1488182848\/______2_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106660"} +{"delete":{"status":{"id":663460601939783680,"id_str":"663460601939783680","user_id":3827551823,"user_id_str":"3827551823"},"timestamp_ms":"1447080106934"}} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190162997248,"id_str":"663728190162997248","text":"\uc544\ub2c8 \uc2dc\ud314 \uc774\ub807\uac8c \uc608\uc05c\ub370 \uac15\uae40 \uc65c \uc548\ud30c\uc694 \uc548 \uae01\uc740 \ubcf5\uad8c\uc774\uc57c \uc598\ub4e4\uc740! \ube44\ub85d \ub098\ub294 \uc544\ub2c8\uc9c0\ub9cc \uc5b8\uc820\uac00\ub294 \uc5b4\ub5a4 \uc874\uc798\ub2d8\uc774 \ubd84\uba85 \uac15\uae40\uc73c\ub85c \ub808\uc804\ub4dc \uc791\ud488\uc744 \uc368\uc8fc\uc2e4\uac70\ub77c \ubbff\ub294 \ubc14 https:\/\/t.co\/zXjD2n6VB0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130421634,"id_str":"3130421634","name":"\uc774\ubc24","screen_name":"ibamjinwoo","location":"\ud1b5\uc7a5 \uc8fc\uc778 = \uae40\uc9c4\uc6b0","url":null,"description":"\uc704\ub108 \ud30c\uc138\uc694 \uc798\ud574\ub4dc\ub9b4\uac8c\uc694 RPS \/ \ubd84\ub178\ub97c \uc870\uc808\ud558\uc9c0 \ubaa8\ud0d0..","protected":false,"verified":false,"followers_count":416,"friends_count":155,"listed_count":5,"favourites_count":954,"statuses_count":24161,"created_at":"Thu Apr 02 13:07:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661572336324206592\/cHKTDHbQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661572336324206592\/cHKTDHbQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3130421634\/1446002675","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728178616139776,"id_str":"663728178616139776","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQwnVAAAI2i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQwnVAAAI2i_.jpg","url":"https:\/\/t.co\/zXjD2n6VB0","display_url":"pic.twitter.com\/zXjD2n6VB0","expanded_url":"http:\/\/twitter.com\/ibamjinwoo\/status\/663728190162997248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728178616139776,"id_str":"663728178616139776","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQwnVAAAI2i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQwnVAAAI2i_.jpg","url":"https:\/\/t.co\/zXjD2n6VB0","display_url":"pic.twitter.com\/zXjD2n6VB0","expanded_url":"http:\/\/twitter.com\/ibamjinwoo\/status\/663728190162997248\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080106665"} +{"delete":{"status":{"id":663577186822062080,"id_str":"663577186822062080","user_id":2877725426,"user_id_str":"2877725426"},"timestamp_ms":"1447080106985"}} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190158970880,"id_str":"663728190158970880","text":"@XersusL, tu sautes et tombes dans un pi\u00e8ge #TombRaider https:\/\/t.co\/r3aBg14rn9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eXBOX Tomb Raider\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728186367336448,"in_reply_to_status_id_str":"663728186367336448","in_reply_to_user_id":3432654497,"in_reply_to_user_id_str":"3432654497","in_reply_to_screen_name":"XersusL","user":{"id":49979934,"id_str":"49979934","name":"Xbox FR","screen_name":"XboxFR","location":"France","url":"http:\/\/www.xbox.com\/fr-FR","description":"Bienvenue sur le compte officiel de Xbox France o\u00f9 vous pourrez suivre les derni\u00e8res news relatives \u00e0 la Xbox One et la Xbox 360.","protected":false,"verified":true,"followers_count":271482,"friends_count":14589,"listed_count":714,"favourites_count":1713,"statuses_count":56846,"created_at":"Tue Jun 23 13:51:19 +0000 2009","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"43751D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453438333520060418\/2OZYp_pZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453438333520060418\/2OZYp_pZ.jpeg","profile_background_tile":false,"profile_link_color":"69BA2F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"1CF718","profile_text_color":"1F3024","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585433520585191424\/BBb4x1Ec_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585433520585191424\/BBb4x1Ec_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49979934\/1446628605","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TombRaider","indices":[44,55]}],"urls":[],"user_mentions":[{"screen_name":"XersusL","name":"Xersus","id":3432654497,"id_str":"3432654497","indices":[0,8]}],"symbols":[],"media":[{"id":663728188623835136,"id_str":"663728188623835136","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRV5WUAAqmix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRV5WUAAqmix.png","url":"https:\/\/t.co\/r3aBg14rn9","display_url":"pic.twitter.com\/r3aBg14rn9","expanded_url":"http:\/\/twitter.com\/XboxFR\/status\/663728190158970880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728188623835136,"id_str":"663728188623835136","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRV5WUAAqmix.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRV5WUAAqmix.png","url":"https:\/\/t.co\/r3aBg14rn9","display_url":"pic.twitter.com\/r3aBg14rn9","expanded_url":"http:\/\/twitter.com\/XboxFR\/status\/663728190158970880\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1024,"h":512,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080106664"} +{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728190142046212,"id_str":"663728190142046212","text":"\u4e45\u3005\u306e1\u65e5\u4f11\u307f\u306f\u30b0\u30e9\u30b9\u30db\u30c3\u30d1\u30fc\u89b3\u3066\u304d\u305f\uff01\uff01\n\u63a2\u3057\u3066\u308b\u672c\u307f\u3064\u304b\u3063\u305f\u3057\u3001\u3088\u304b\u3063\u305f\u3088\u304b\u3063\u305f\ud83d\ude0a\n\u3086\u3063\u3053\u3042\u308a\u304c\u3068\u3055\u3093\ud83d\ude18\ud83d\udc95 https:\/\/t.co\/V6eOZjonNh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1115421386,"id_str":"1115421386","name":"\uff95 \uff73 \uff85","screen_name":"__ynyn_24","location":"Amami \/ Osaka\u27aaKagawa\u27aaHyogo","url":null,"description":"\u4eca\u5e74\u306f\u30e9\u30a4\u30d6\u5145\uff01\u30d5\u30a7\u30b9\u5145\uff01\u3010 NEXT LIVE : \u30d9\u30ac\u30b9\u5802\u5cf6 \u25b7 UVER\u57ce\u30db \u25b7 \u30dd\u30eb\u30ce\u8d85\u7279\u6025 \u25b7 RADIO CRAZY2days \u3011ROCK \/ BASS \/ TOURING \/\/ WOMAN RIDER \/\/ \u65e9\u6442 \/ NURSING \/ \u587e\u8b1b \/ \u30ab\u30c6\u30ad\u30e7","protected":false,"verified":false,"followers_count":251,"friends_count":299,"listed_count":0,"favourites_count":4470,"statuses_count":653,"created_at":"Wed Jan 23 22:20:34 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658422897694806016\/P7yQOcw-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658422897694806016\/P7yQOcw-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1115421386\/1446731900","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728177143873536,"id_str":"663728177143873536","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQrIUAAATf6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQrIUAAATf6_.jpg","url":"https:\/\/t.co\/V6eOZjonNh","display_url":"pic.twitter.com\/V6eOZjonNh","expanded_url":"http:\/\/twitter.com\/__ynyn_24\/status\/663728190142046212\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728177143873536,"id_str":"663728177143873536","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQrIUAAATf6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQrIUAAATf6_.jpg","url":"https:\/\/t.co\/V6eOZjonNh","display_url":"pic.twitter.com\/V6eOZjonNh","expanded_url":"http:\/\/twitter.com\/__ynyn_24\/status\/663728190142046212\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728177160712192,"id_str":"663728177160712192","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQrMU8AAhDWc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQrMU8AAhDWc.jpg","url":"https:\/\/t.co\/V6eOZjonNh","display_url":"pic.twitter.com\/V6eOZjonNh","expanded_url":"http:\/\/twitter.com\/__ynyn_24\/status\/663728190142046212\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":407,"resize":"fit"},"large":{"w":640,"h":767,"resize":"fit"},"medium":{"w":600,"h":719,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663728177152266240,"id_str":"663728177152266240","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQrKUEAASapA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQrKUEAASapA.jpg","url":"https:\/\/t.co\/V6eOZjonNh","display_url":"pic.twitter.com\/V6eOZjonNh","expanded_url":"http:\/\/twitter.com\/__ynyn_24\/status\/663728190142046212\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728178494476294,"id_str":"663728178494476294","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQwKUkAYGiO9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQwKUkAYGiO9.jpg","url":"https:\/\/t.co\/V6eOZjonNh","display_url":"pic.twitter.com\/V6eOZjonNh","expanded_url":"http:\/\/twitter.com\/__ynyn_24\/status\/663728190142046212\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080106660"} +{"delete":{"status":{"id":663726864742146048,"id_str":"663726864742146048","user_id":760088815,"user_id_str":"760088815"},"timestamp_ms":"1447080107128"}} +{"delete":{"status":{"id":651879642073313280,"id_str":"651879642073313280","user_id":3621377963,"user_id_str":"3621377963"},"timestamp_ms":"1447080107323"}} +{"delete":{"status":{"id":663728093689987072,"id_str":"663728093689987072","user_id":207308018,"user_id_str":"207308018"},"timestamp_ms":"1447080107443"}} +{"delete":{"status":{"id":662924741859082240,"id_str":"662924741859082240","user_id":1132918412,"user_id_str":"1132918412"},"timestamp_ms":"1447080107435"}} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336514048,"id_str":"663728194336514048","text":"RT @mysticdiariees: Essa \u00e9 a maneira do Damon demonstrar preocupa\u00e7\u00e3o kkkk https:\/\/t.co\/V82k6U0HlI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1204624460,"id_str":"1204624460","name":"Tha\u00eds","screen_name":"TheVampsDiars","location":null,"url":null,"description":"Dormi com ele porque estou apaixonada -Elena","protected":false,"verified":false,"followers_count":680,"friends_count":643,"listed_count":0,"favourites_count":110,"statuses_count":6634,"created_at":"Thu Feb 21 12:55:32 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585475924923027456\/SOfjB6Fc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585475924923027456\/SOfjB6Fc.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655175773716922368\/Z1U0QznM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655175773716922368\/Z1U0QznM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204624460\/1445040895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:43:14 +0000 2015","id":663698357551030272,"id_str":"663698357551030272","text":"Essa \u00e9 a maneira do Damon demonstrar preocupa\u00e7\u00e3o kkkk https:\/\/t.co\/V82k6U0HlI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":315869712,"id_str":"315869712","name":"Carol","screen_name":"mysticdiariees","location":"Mystic Falls","url":null,"description":"Pra TVD\/TO eu sou igual Casas Bahia dedica\u00e7\u00e3o total! \u2022Since: 12\/06\/2013","protected":false,"verified":false,"followers_count":20754,"friends_count":18720,"listed_count":36,"favourites_count":908,"statuses_count":87938,"created_at":"Sun Jun 12 15:43:33 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658640676935049216\/N19zKg9M.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658640676935049216\/N19zKg9M.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634907859965378561\/17rdDEmY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634907859965378561\/17rdDEmY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/315869712\/1440208832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663698356292722689,"id_str":"663698356292722689","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","url":"https:\/\/t.co\/V82k6U0HlI","display_url":"pic.twitter.com\/V82k6U0HlI","expanded_url":"http:\/\/twitter.com\/mysticdiariees\/status\/663698357551030272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":570,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698356292722689,"id_str":"663698356292722689","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","url":"https:\/\/t.co\/V82k6U0HlI","display_url":"pic.twitter.com\/V82k6U0HlI","expanded_url":"http:\/\/twitter.com\/mysticdiariees\/status\/663698357551030272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":570,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mysticdiariees","name":"Carol","id":315869712,"id_str":"315869712","indices":[3,18]}],"symbols":[],"media":[{"id":663698356292722689,"id_str":"663698356292722689","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","url":"https:\/\/t.co\/V82k6U0HlI","display_url":"pic.twitter.com\/V82k6U0HlI","expanded_url":"http:\/\/twitter.com\/mysticdiariees\/status\/663698357551030272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":570,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}},"source_status_id":663698357551030272,"source_status_id_str":"663698357551030272","source_user_id":315869712,"source_user_id_str":"315869712"}]},"extended_entities":{"media":[{"id":663698356292722689,"id_str":"663698356292722689","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXuI3zWoAE124c.png","url":"https:\/\/t.co\/V82k6U0HlI","display_url":"pic.twitter.com\/V82k6U0HlI","expanded_url":"http:\/\/twitter.com\/mysticdiariees\/status\/663698357551030272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":570,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":570,"h":570,"resize":"fit"}},"source_status_id":663698357551030272,"source_status_id_str":"663698357551030272","source_user_id":315869712,"source_user_id_str":"315869712"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340700160,"id_str":"663728194340700160","text":"RT @namotllah050178: - \u0627\u0644\u0644\u0647 \u064a\u0633\u0627\u0645\u062d \u062c\u0641\u0627\u0643 \u0648 \u0643\u062b\u0631\u0629 \u063a\u064a\u0627\u0628\u0643 \u060c \u0645\u0627 \u0643\u0646 \u0644\u0643 \u0642\u0644\u0628 \u064a\u062c\u0631\u064a \u0627\u0644\u062f\u0645 \u0628 \u0639\u0631\u0648\u0642\u0647..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319267836,"id_str":"3319267836","name":"\u06dd\u275d \u0631\u0642\u0629 \u0627\u062d\u0633\u0627\u0633 \u275d\u06dd \u0650","screen_name":"e7______sas","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":null,"description":"\u200f\u200f\u0644\u0645\u0634\u0627\u0639\u0631\u064a \u0627\u062d\u0633\u0633\u0627\u0633 \u0648\u0631\u0642\u0647 \u0635\u0639\u0628 \u064a\u0641\u0647\u0645\u0648\u0646\u0647.. \u0645\u0627\u064a\u0641\u0647\u0645\u0647 \u063a\u064a\u0631 \u0627\u0644\u0644\u064a \u0639\u0627\u0631\u0641\u0646 \u0637\u0628\u0639\u064a \u0648\u0634\u0639\u0648\u0631\u0647 ..","protected":false,"verified":false,"followers_count":13247,"friends_count":13707,"listed_count":3,"favourites_count":11,"statuses_count":655,"created_at":"Tue Aug 18 22:31:57 +0000 2015","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636798816826449920\/EL2gdlsD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636798816826449920\/EL2gdlsD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319267836\/1442407769","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:02:46 +0000 2015","id":663401287178985472,"id_str":"663401287178985472","text":"- \u0627\u0644\u0644\u0647 \u064a\u0633\u0627\u0645\u062d \u062c\u0641\u0627\u0643 \u0648 \u0643\u062b\u0631\u0629 \u063a\u064a\u0627\u0628\u0643 \u060c \u0645\u0627 \u0643\u0646 \u0644\u0643 \u0642\u0644\u0628 \u064a\u062c\u0631\u064a \u0627\u0644\u062f\u0645 \u0628 \u0639\u0631\u0648\u0642\u0647..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2408349665,"id_str":"2408349665","name":"\u0641\u0640\u0640\u0640\u0631\u062f\u0648\u0633\u2763","screen_name":"namotllah050178","location":null,"url":null,"description":"\u0633\u064f\u0628\u0652\u062d\u064e\u0627\u0646\u064e \u0627\u0644\u0644\u0651\u064e\u0647\u0650 \u060c \u0648\u064e\u0627\u0644\u0652\u062d\u064e\u0645\u0652\u062f\u064f \u0644\u0650\u0644\u0651\u064e\u0647\u0650 \u060c \u0648\u064e\u0644\u0627 \u0625\u0650\u0644\u064e\u0647 \u0625\u0650\u0644\u0627 \u0627\u0644\u0644\u0651\u064e\u0647\u064f \u060c \u0648\u064e\u0627\u0644\u0644\u0651\u064e\u0647 \u0623\u064e\u0643\u0652\u0628\u064e\u0631\u064f","protected":false,"verified":false,"followers_count":19512,"friends_count":19381,"listed_count":9,"favourites_count":119,"statuses_count":11650,"created_at":"Thu Mar 13 19:54:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663318559909683200\/H1nAofxs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663318559909683200\/H1nAofxs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2408349665\/1447034443","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"namotllah050178","name":"\u0641\u0640\u0640\u0640\u0631\u062f\u0648\u0633\u2763","id":2408349665,"id_str":"2408349665","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353283072,"id_str":"663728194353283072","text":"RT @CloydRivers: It\u2019s always easier wakin\u2019 up to go huntin\u2019 or fishin\u2019 than it is to go to school or work. Merica.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553875842,"id_str":"1553875842","name":"Micah Stephens","screen_name":"mcstud98","location":"Tennessee","url":null,"description":"trying every day to let Christ lead. sc: micah_stephens","protected":false,"verified":false,"followers_count":138,"friends_count":344,"listed_count":2,"favourites_count":3037,"statuses_count":3334,"created_at":"Fri Jun 28 19:56:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D3D9DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451768299013931008\/ppQuX4UG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451768299013931008\/ppQuX4UG.jpeg","profile_background_tile":true,"profile_link_color":"A177AB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"2D1E29","profile_text_color":"DB6995","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659536702227247104\/hICagKVd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659536702227247104\/hICagKVd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553875842\/1446080781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:27 +0000 2015","id":663725592991432704,"id_str":"663725592991432704","text":"It\u2019s always easier wakin\u2019 up to go huntin\u2019 or fishin\u2019 than it is to go to school or work. Merica.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466645191,"id_str":"466645191","name":"Cloyd Rivers","screen_name":"CloydRivers","location":null,"url":"http:\/\/www.CloydRivers.com","description":"Male model. Lost every fight I've ever been in. Born to lose. Merica.","protected":false,"verified":false,"followers_count":1063111,"friends_count":2221,"listed_count":1124,"favourites_count":12903,"statuses_count":8846,"created_at":"Tue Jan 17 16:49:44 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3043244239\/26ecb7d1a46b534430f04b447c1ab5d4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3043244239\/26ecb7d1a46b534430f04b447c1ab5d4_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":315,"favorite_count":531,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CloydRivers","name":"Cloyd Rivers","id":466645191,"id_str":"466645191","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332311552,"id_str":"663728194332311552","text":"RT @Chef_Fireman: I hate working in weather like this... Cold rain<<<","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3422108837,"id_str":"3422108837","name":"Jakeia Jones","screen_name":"_The1YouWannaBe","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":22,"listed_count":1,"favourites_count":8,"statuses_count":177,"created_at":"Fri Aug 14 12:48:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632172518674186240\/szKSJ5x9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632172518674186240\/szKSJ5x9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:27:09 +0000 2015","id":663664114879717378,"id_str":"663664114879717378","text":"I hate working in weather like this... Cold rain<<<","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32135903,"id_str":"32135903","name":"Holden Kennebrew","screen_name":"Chef_Fireman","location":null,"url":null,"description":"Being happy doesn't mean that everything is perfect, it means that you've decided to look beyond the imperfections.","protected":false,"verified":false,"followers_count":538,"friends_count":419,"listed_count":1,"favourites_count":14,"statuses_count":39341,"created_at":"Thu Apr 16 20:15:11 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/844970376\/f32a3c736da8d971ba030f5eec85f573.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/844970376\/f32a3c736da8d971ba030f5eec85f573.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660914182456541184\/GD-7dRUK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660914182456541184\/GD-7dRUK_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Chef_Fireman","name":"Holden Kennebrew","id":32135903,"id_str":"32135903","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344775681,"id_str":"663728194344775681","text":"\u30b9\u30c8\u30fc\u30d6\u3082\u30b3\u30bf\u30c4\u3082\u30c6\u30ec\u30d3\u3082\u3064\u3044\u3066\u306a\u3044\u4eca\u306f\u4ffa\u306e\u80cc\u4e2d\u304c\u4e00\u756a\u3042\u3063\u305f\u304b\u3044\u3093\u3060...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1201121719,"id_str":"1201121719","name":"\u304b\u304a\u308b\u304a\u308b\u304b","screen_name":"orenokoto4649","location":null,"url":null,"description":"\u8ab0\u304b\u306e\u4ee3\u308f\u308a","protected":false,"verified":false,"followers_count":88,"friends_count":93,"listed_count":0,"favourites_count":852,"statuses_count":5863,"created_at":"Wed Feb 20 13:50:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641163166420832256\/Tl1i7w0t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641163166420832256\/Tl1i7w0t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1201121719\/1442289415","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357358593,"id_str":"663728194357358593","text":"\u3042\u3041\u660e\u65e5\u8679\u30b3\u30f3\u3042\u308b\u306e\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606773515,"id_str":"606773515","name":"\u307f\u3082\u3061@\u30e1\u30ed\u30f3\u30d1\u30f3\u306f\u4e3b\u98df","screen_name":"aquandroid89","location":"\u30d7\u30ed\u30d5\u898b\u3066\u308b\u3093\u3058\u3083\u306a\u3044\u3088","url":null,"description":"\u8da3\u5473\u3067\u682a\u3084\u3063\u3066\u307e\u3059\u30022013\u21922015\/200\u2192\u25cb000\u3002\u8cc7\u752310\u500d\u9054\u6210\u6e08\u3002\u30a2\u30a4\u30c9\u30eb\u30aa\u30bf\u30af\u3002\u9db4\u898b\u840c\u304c\u672c\u5f53\u306b\u597d\u304d\u3002\u9db4\u898b\u840c\u3092\u8d85\u3048\u308b\u30a2\u30a4\u30c9\u30eb\u63a2\u3057\u3066\u307e\u3059\u3002\u795e\u63a8\u3057\u306e\u306e\u305f\u3002\u5ca1\u7530\u9999\u83dc\u3061\u3083\u3093\u304c\u6700\u5f8c\u306e\u63a8\u3057\u3067\u3059\u3002\u7acb\u82b1\u4f73\u7d14\u3061\u3083\u3093\u59cb\u307e\u308a\u307e\u3057\u305f\u3002\u30e1\u30ed\u30f3\u30d1\u30f3\u304c\u597d\u304d\u3067\u3059\u3002\u3054\u306f\u3093\u3088\u308a\u30e1\u30ed\u30f3\u30d1\u30f3\u3002\u30e1\u30ed\u30f3\u30d1\u30f3\u306f\u4e3b\u98df\u30025\u670825\u65e5","protected":false,"verified":false,"followers_count":1944,"friends_count":292,"listed_count":26,"favourites_count":83223,"statuses_count":62907,"created_at":"Wed Jun 13 00:48:35 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663154030802153472\/K878rM81_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663154030802153472\/K878rM81_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/606773515\/1428110959","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194323881984,"id_str":"663728194323881984","text":"RT @MahoganyLOX: liquid to matte lipsticks are my favorite \ud83d\ude3b\ud83d\udc84","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":52469625,"id_str":"52469625","name":"Purpose Maia.","screen_name":"pettymendes","location":"Sliding thru Bri's DM's ","url":"https:\/\/twitter.com\/MochaWiIk\/status\/628983246592811008","description":"Click on the link in my pinned tweet please :)","protected":false,"verified":false,"followers_count":5220,"friends_count":5408,"listed_count":78,"favourites_count":12226,"statuses_count":68277,"created_at":"Tue Jun 30 18:10:12 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DE428D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632614637624786944\/IZd7ELRu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632614637624786944\/IZd7ELRu.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"A81226","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661434900587900928\/-IlybNv0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661434900587900928\/-IlybNv0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/52469625\/1446314429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:39:18 +0000 2015","id":663621872412594177,"id_str":"663621872412594177","text":"liquid to matte lipsticks are my favorite \ud83d\ude3b\ud83d\udc84","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101617959,"id_str":"101617959","name":"Mahogany *LOX*","screen_name":"MahoganyLOX","location":"contactmahogany@gmail.com ","url":"http:\/\/smarturl.it\/mahogany","description":"\u2661 the girl with the ears \u2661","protected":false,"verified":true,"followers_count":1146139,"friends_count":1546,"listed_count":4339,"favourites_count":22279,"statuses_count":48724,"created_at":"Mon Jan 04 01:02:19 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/540042673218793472\/uDR0GIVa.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/540042673218793472\/uDR0GIVa.jpeg","profile_background_tile":true,"profile_link_color":"FC97FC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652302994394890240\/Yci-zy5U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652302994394890240\/Yci-zy5U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101617959\/1444356127","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":666,"favorite_count":1624,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MahoganyLOX","name":"Mahogany *LOX*","id":101617959,"id_str":"101617959","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107657"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194361630720,"id_str":"663728194361630720","text":"RT @Hoza2014: Gets better every time I watch it https:\/\/t.co\/O7QhkxM61p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3393690669,"id_str":"3393690669","name":"Mack","screen_name":"nelson11mack","location":null,"url":null,"description":"21 New Twitter Christ Lover Soccer Player and College Student","protected":false,"verified":false,"followers_count":316,"friends_count":329,"listed_count":1,"favourites_count":1723,"statuses_count":2135,"created_at":"Wed Jul 29 12:19:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651160686505037826\/e4C-52Zy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651160686505037826\/e4C-52Zy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3393690669\/1444151497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:54 +0000 2015","id":663725454042529793,"id_str":"663725454042529793","text":"Gets better every time I watch it https:\/\/t.co\/O7QhkxM61p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2176440712,"id_str":"2176440712","name":"H\u00f6za \u26bd\ufe0f","screen_name":"Hoza2014","location":null,"url":"http:\/\/ask.fm\/HozaMohamed","description":"Fail to prepare, prepare to fail \/ soccer player \u26bd\ufe0f\/ #10 \/ Visca El Barca","protected":false,"verified":false,"followers_count":221,"friends_count":285,"listed_count":0,"favourites_count":4071,"statuses_count":4243,"created_at":"Mon Nov 11 01:50:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658647071130521600\/r3RAacbs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658647071130521600\/r3RAacbs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2176440712\/1411145513","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724061101563905,"quoted_status_id_str":"663724061101563905","quoted_status":{"created_at":"Mon Nov 09 14:25:22 +0000 2015","id":663724061101563905,"id_str":"663724061101563905","text":"ICYMI: Neymar\u2019s goal was \ud83d\udd25 https:\/\/t.co\/dv2hrpyBac","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16099375,"id_str":"16099375","name":"World Soccer Shop","screen_name":"worldsoccershop","location":"Based in USA.","url":"http:\/\/WorldSoccerShop.com","description":"Product launches, discount offers, coupons, and soccer news from World Soccer Shop. \u26bd\ufe0f Powered by Passion. En espa\u00f1ol: @tiendafutbol","protected":false,"verified":true,"followers_count":181453,"friends_count":905,"listed_count":692,"favourites_count":3878,"statuses_count":27990,"created_at":"Tue Sep 02 16:55:31 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616285737776844800\/2XSOQAc1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616285737776844800\/2XSOQAc1.jpg","profile_background_tile":false,"profile_link_color":"0D2DFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"878787","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1846564426\/2012_WSS_LogoStacked_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1846564426\/2012_WSS_LogoStacked_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16099375\/1446303962","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dv2hrpyBac","expanded_url":"https:\/\/vine.co\/v\/elWQMOmMmLT","display_url":"vine.co\/v\/elWQMOmMmLT","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O7QhkxM61p","expanded_url":"https:\/\/twitter.com\/worldsoccershop\/status\/663724061101563905","display_url":"twitter.com\/worldsoccersho\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/O7QhkxM61p","expanded_url":"https:\/\/twitter.com\/worldsoccershop\/status\/663724061101563905","display_url":"twitter.com\/worldsoccersho\u2026","indices":[48,71]}],"user_mentions":[{"screen_name":"Hoza2014","name":"H\u00f6za \u26bd\ufe0f","id":2176440712,"id_str":"2176440712","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107666"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357321728,"id_str":"663728194357321728","text":"@khairilshafiq7 @aliffredhwan9 SOKONG...!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728014228787200,"in_reply_to_status_id_str":"663728014228787200","in_reply_to_user_id":2539874743,"in_reply_to_user_id_str":"2539874743","in_reply_to_screen_name":"khairilshafiq7","user":{"id":988522980,"id_str":"988522980","name":"\u012bs\u00ffr\u0103ff","screen_name":"qill_isyraff","location":"Lumut","url":null,"description":"Mencari kehidupan biasa.\nMaka aku hilang tanpa jejak.","protected":false,"verified":false,"followers_count":632,"friends_count":787,"listed_count":1,"favourites_count":24001,"statuses_count":16824,"created_at":"Tue Dec 04 10:52:44 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482592667872665601\/aVW6Ph4n.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482592667872665601\/aVW6Ph4n.jpeg","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636441327563988992\/jZT_32eR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636441327563988992\/jZT_32eR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/988522980\/1446532116","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"9e2ff59d7bdf1e63","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/9e2ff59d7bdf1e63.json","place_type":"city","name":"Lumut","full_name":"Lumut, Perak","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[100.557747,4.161549],[100.557747,4.383829],[100.713455,4.383829],[100.713455,4.161549]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"khairilshafiq7","name":"S Y A B A B","id":2539874743,"id_str":"2539874743","indices":[0,15]},{"screen_name":"aliffredhwan9","name":"alfred.","id":994958978,"id_str":"994958978","indices":[16,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336374784,"id_str":"663728194336374784","text":"\u307c\u304f\u306e\u5834\u5408\u3048\u3001\u3044\u3084\u3084\u3057...\u3058\u3083\u306a\u304f\u3066 \u3048\u30fc\u3044\u3084\u3084\u3057\u30fc\u7b11 \u306a\u306e\u3067","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2273059188,"id_str":"2273059188","name":"\u3042\u3044\u304b","screen_name":"DHC_8_100","location":null,"url":null,"description":"\u3054\u6ce8\u6587\u306e\u3046\u306a\u304e \u661f\u7d44\u9752\u6d3e","protected":false,"verified":false,"followers_count":177,"friends_count":139,"listed_count":16,"favourites_count":50848,"statuses_count":106715,"created_at":"Thu Jan 02 14:04:21 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653408117175091200\/dSTrclOx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653408117175091200\/dSTrclOx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2273059188\/1427855813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332135428,"id_str":"663728194332135428","text":"RT @4T4S4A: NBC\u30c8\u30ec\u30a4\u30b7\u30fc\u89e3\u8aac\u771f\u592eFS\u2460\uff1a(3A)\u5b8c\u74a7\uff01\uff081\u5e74\u306e\u4f11\u990a\u304b\u3089\u3053\u306e\u30ec\u30d9\u30eb\u3067\u306e\u5fa9\u5e30\u306b\u3064\u3044\u3066\uff09\u771f\u592e\u306f\u5b9f\u969b\u3088\u308a\u3082\u7c21\u5358\u306b\u307f\u305b\u3066\u3044\u308b\u3051\u3069\u79c1\u304c\u601d\u3046\u306b\u3001\u672c\u5f53\u306b\u3053\u3053\u306b\u623b\u3063\u3066\u304d\u305f\u304f\u3066\u3001\u4eca\u306f\u4e16\u754c\u306e\u671f\u5f85\u3092\u80cc\u8ca0\u3046\u306e\u3067\u306a\u304f\u771f\u592e\u306f\u81ea\u5206\u81ea\u8eab\u306e\u305f\u3081\u306b\u6ed1\u3063\u3066\u3044\u308b\u611f\u3058\u304c\u3059\u308b\u308f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146792731,"id_str":"146792731","name":"\u3086\u3063\u304d\u30fc","screen_name":"ponta_mao_love","location":null,"url":"http:\/\/ameblo.jp\/peach-mao-peach\/","description":"\u6d45\u7530\u771f\u592e\u3055\u3093\u3092\u71b1\u70c8\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":184,"friends_count":369,"listed_count":0,"favourites_count":437,"statuses_count":3810,"created_at":"Sat May 22 10:28:15 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/582523798945042432\/gADYNjr2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/582523798945042432\/gADYNjr2.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651063152398872576\/PcDfDXN__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651063152398872576\/PcDfDXN__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146792731\/1402671593","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:34 +0000 2015","id":663727889540472832,"id_str":"663727889540472832","text":"NBC\u30c8\u30ec\u30a4\u30b7\u30fc\u89e3\u8aac\u771f\u592eFS\u2460\uff1a(3A)\u5b8c\u74a7\uff01\uff081\u5e74\u306e\u4f11\u990a\u304b\u3089\u3053\u306e\u30ec\u30d9\u30eb\u3067\u306e\u5fa9\u5e30\u306b\u3064\u3044\u3066\uff09\u771f\u592e\u306f\u5b9f\u969b\u3088\u308a\u3082\u7c21\u5358\u306b\u307f\u305b\u3066\u3044\u308b\u3051\u3069\u79c1\u304c\u601d\u3046\u306b\u3001\u672c\u5f53\u306b\u3053\u3053\u306b\u623b\u3063\u3066\u304d\u305f\u304f\u3066\u3001\u4eca\u306f\u4e16\u754c\u306e\u671f\u5f85\u3092\u80cc\u8ca0\u3046\u306e\u3067\u306a\u304f\u771f\u592e\u306f\u81ea\u5206\u81ea\u8eab\u306e\u305f\u3081\u306b\u6ed1\u3063\u3066\u3044\u308b\u611f\u3058\u304c\u3059\u308b\u308f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":633657957,"id_str":"633657957","name":"\/)_\/)\u306e\u306e\u306e\/)_\/)","screen_name":"4T4S4A","location":null,"url":null,"description":"\u2764\ufe0e watching figure skating \/ rabbits \/ cats \/ animals in general \/ healthy food & lifestyle \/ natural skin care & beauty \u2764\ufe0e","protected":false,"verified":false,"followers_count":1437,"friends_count":826,"listed_count":67,"favourites_count":6622,"statuses_count":52025,"created_at":"Thu Jul 12 08:40:23 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466472830863831040\/D59UiZ2d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466472830863831040\/D59UiZ2d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589710525862260736\/OS_yyUaH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589710525862260736\/OS_yyUaH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633657957\/1397891068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"4T4S4A","name":"\/)_\/)\u306e\u306e\u306e\/)_\/)","id":633657957,"id_str":"633657957","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353139714,"id_str":"663728194353139714","text":"\u5c31\u8077\u6a21\u8a66\u8fd4\u3063\u3066\u304d\u3066\u305f\u3002\u524d\u56de\u504f\u5dee\u502476\u3084\u3063\u305f\u3051\u3069\u4eca\u56de73\u3084\u3063\u305f\u3002\u3080\u304b\u3064\u304f\u3002\u3067\u3082\u3053\u308c\u898b\u3066\u305f\u3089SPI\u3068\u304b1\u500b\u3082\u5bfe\u7b56\u305b\u3093\u3067\u3082\u307b\u3068\u3093\u3069\u306e\u4f01\u696d\u901a\u904e\u3067\u304d\u305d\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1266060632,"id_str":"1266060632","name":"\u307f\u3084\u3051\u308b","screen_name":"peshimichishi","location":"\u30e1\u30ed\u30a6","url":null,"description":"groove Bass blackbird blackbird\/Bj\u00f6rk\/gold panda\/Soko\/FKA twigs","protected":false,"verified":false,"followers_count":300,"friends_count":323,"listed_count":2,"favourites_count":1759,"statuses_count":10901,"created_at":"Thu Mar 14 03:18:22 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655664003755081728\/XvmYI2RL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655664003755081728\/XvmYI2RL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1266060632\/1431645989","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357358592,"id_str":"663728194357358592","text":"@hmratn963 \n\u307e\u3058\u305d\u308c\u306a\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725624452739072,"in_reply_to_status_id_str":"663725624452739072","in_reply_to_user_id":2472461420,"in_reply_to_user_id_str":"2472461420","in_reply_to_screen_name":"hmratn963","user":{"id":2937684818,"id_str":"2937684818","name":"\u5f69\u6708","screen_name":"n1gv5Y7olF7qx4Q","location":null,"url":null,"description":"\u5869\u5c3b\u897f\u90e8\u2192\u5fd7 \u5b66 \u2461\/\u26bd \u5973\u30b5\u30ab\u26bd","protected":false,"verified":false,"followers_count":743,"friends_count":647,"listed_count":0,"favourites_count":3194,"statuses_count":858,"created_at":"Sun Dec 21 03:33:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658184435972509696\/o1wpN6Ej_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658184435972509696\/o1wpN6Ej_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2937684818\/1445733844","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hmratn963","name":"\u30cf\u30e9 \u30df\u30c5\u30ad","id":2472461420,"id_str":"2472461420","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357432320,"id_str":"663728194357432320","text":"\u00a1He cosechado 2,135 de comida! https:\/\/t.co\/AlHErn0IV3 #iphone, #iphonegames, #gameinsight","source":"\u003ca href=\"http:\/\/bit.ly\/tribez_itw\" rel=\"nofollow\"\u003eThe Tribez for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1052463541,"id_str":"1052463541","name":"Ramona albu","screen_name":"BbmRamona","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":0,"statuses_count":7847,"created_at":"Tue Jan 01 12:05:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3277321673\/d7bcbc47bbb1764d08246c4d569c8fad_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3277321673\/d7bcbc47bbb1764d08246c4d569c8fad_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1052463541\/1361272516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iphone","indices":[56,63]},{"text":"iphonegames","indices":[65,77]},{"text":"gameinsight","indices":[79,91]}],"urls":[{"url":"https:\/\/t.co\/AlHErn0IV3","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353139712,"id_str":"663728194353139712","text":"\u3082\u3068\u3082\u3068\u819d\u60aa\u3044\u306e\u306b\u819d\u304b\u3089\u8ee2\u3093\u3060\u304b\u3089\u3082\u3046\u7acb\u3061\u76f4\u308c\u306a\u3044\u75db\u3059\u304e\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3279680407,"id_str":"3279680407","name":"\u304b \u308a \u3093","screen_name":"ka__bigeast","location":null,"url":"http:\/\/instagram.com\/ka_rinchosu","description":"S J K \/ \u9ed2\u6728\u5553\u53f8 \/ \u4e43\u6728\u5742","protected":false,"verified":false,"followers_count":250,"friends_count":250,"listed_count":1,"favourites_count":628,"statuses_count":536,"created_at":"Tue Jul 14 14:11:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657327856037433346\/TabKH_fg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657327856037433346\/TabKH_fg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279680407\/1442669374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194327965696,"id_str":"663728194327965696","text":"RT @chumchumche: \u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e04\u0e27\u0e23\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e41\u0e01\u0e1b\u0e48\u0e32\u0e27\u0e27\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144073182,"id_str":"144073182","name":"\u0e41\u0e19\u0e19\u0e17\u0e32\u0e23\u0e34\u0e01\u0e30","screen_name":"nanta_tarika","location":null,"url":null,"description":"\ufe0e\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e21\u0e35\u0e40\u0e2b\u0e15\u0e38\u0e1c\u0e25\u0e41\u0e15\u0e48\u0e17\u0e33\u0e15\u0e32\u0e21\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c.","protected":false,"verified":false,"followers_count":586,"friends_count":192,"listed_count":3,"favourites_count":3327,"statuses_count":28694,"created_at":"Sat May 15 06:32:19 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662795772266606592\/2tSmR8Vy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662795772266606592\/2tSmR8Vy.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EBEBEB","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662266503270543360\/dkBNRYfX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662266503270543360\/dkBNRYfX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144073182\/1443612690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:44 +0000 2015","id":663727930434961408,"id_str":"663727930434961408","text":"\u0e08\u0e23\u0e34\u0e07\u0e46 \u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e04\u0e27\u0e23\u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e01\u0e31\u0e1a\u0e41\u0e01\u0e1b\u0e48\u0e32\u0e27\u0e27\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":238981499,"id_str":"238981499","name":"\u0e08\u0e23\u0e23\u0e21","screen_name":"chumchumche","location":null,"url":null,"description":"| \u0e40\u0e1b\u0e47\u0e19\u0e1c\u0e39\u0e49\u0e0a\u0e32\u0e22\u0e2b\u0e27\u0e32\u0e19\u0e2b\u0e27\u0e32\u0e19 | \u0e19\u0e31\u0e01\u0e40\u0e23\u0e35\u0e22\u0e19\u0e27\u0e32\u0e17\u0e30\u0e41\u0e2b\u0e48\u0e07\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e1a\u0e32\u0e07\u0e41\u0e2a\u0e19 | \u0e17\u0e27\u0e34\u0e15\u0e2a\u0e32\u0e22\u0e40\u0e1e\u0e49\u0e2d","protected":false,"verified":false,"followers_count":9762,"friends_count":55,"listed_count":0,"favourites_count":76,"statuses_count":15127,"created_at":"Sun Jan 16 14:18:00 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000141309406\/YSSOlQ94.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000141309406\/YSSOlQ94.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661545220324986880\/wGXM7QBR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661545220324986880\/wGXM7QBR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/238981499\/1436270969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chumchumche","name":"\u0e08\u0e23\u0e23\u0e21","id":238981499,"id_str":"238981499","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340556802,"id_str":"663728194340556802","text":"@samy_or \u3082\u3046\u2026\u6765\u5e74\u306e\u3066\u30fc\u3061\u3087\u3046\u3092\u8cb7\u308f\u306d\u3070\u306a\u3089\u306a\u3044\u306e\u306d(*_*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663641050091683840,"in_reply_to_status_id_str":"663641050091683840","in_reply_to_user_id":94189806,"in_reply_to_user_id_str":"94189806","in_reply_to_screen_name":"samy_or","user":{"id":1411573410,"id_str":"1411573410","name":"\u98ef\u7530\u611b\u7f8e","screen_name":"manateeeeeen","location":null,"url":null,"description":"\u99c6\u3051\u51fa\u3057\u306e\u30b9\u30bf\u30f3\u30c8\u30de\u30f3\u3067\u3059\u3002stunt team gocoo\u30fbhorse team gocoo \u73fe\u5728\u5cf6\u6839\u306b\u3066\u3001\u7d76\u8cdb\u64ae\u5f71\u4e2d\uff01\u0669(\u0e51\u25e1\u0e51)\u06f6:.\uff61+\uff9f","protected":false,"verified":false,"followers_count":203,"friends_count":184,"listed_count":2,"favourites_count":2468,"statuses_count":3723,"created_at":"Wed May 08 00:32:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727649882136576\/FeR8bPHq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727649882136576\/FeR8bPHq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1411573410\/1438955681","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"samy_or","name":"samy","id":94189806,"id_str":"94189806","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344738816,"id_str":"663728194344738816","text":"Onda de lama pode chegar a Colatina, no ES, com at\u00e9 1,5 metro https:\/\/t.co\/wgolwuHaNC","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551517691,"id_str":"551517691","name":"slotsapp","screen_name":"slotsapp","location":null,"url":null,"description":"slotsapp\u00ae","protected":false,"verified":false,"followers_count":470,"friends_count":18,"listed_count":18,"favourites_count":0,"statuses_count":350097,"created_at":"Thu Apr 12 02:55:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2098919133\/icon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2098919133\/icon_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wgolwuHaNC","expanded_url":"http:\/\/dlvr.it\/ChfjCJ","display_url":"dlvr.it\/ChfjCJ","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340569088,"id_str":"663728194340569088","text":"Unlucky Chelsea still 'together' - Matic https:\/\/t.co\/8FSthCyGT6","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":401452764,"id_str":"401452764","name":"tunmishe's blog","screen_name":"tunmishesblog","location":"errywhere","url":"http:\/\/www.tunmishe.blogspot.com","description":"latest updates on sports, lifestyle, tv and showbiz, technology, relationship, articles and discussions","protected":false,"verified":false,"followers_count":69,"friends_count":26,"listed_count":1,"favourites_count":1,"statuses_count":12366,"created_at":"Sun Oct 30 15:29:26 +0000 2011","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000613710048\/9df107ce94ce027dc80dc2532e5381f7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000613710048\/9df107ce94ce027dc80dc2532e5381f7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401452764\/1379149135","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8FSthCyGT6","expanded_url":"http:\/\/dlvr.it\/Chfq5y","display_url":"dlvr.it\/Chfq5y","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332180484,"id_str":"663728194332180484","text":"\u4e0d\u610f\u306b\u30b9\u30ab\u30eb\u30d7\u4ed8\u3051\u305f\u3044\u885d\u52d5\u306b\u99c6\u3089\u308c\u305f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287451997,"id_str":"3287451997","name":"\u3042\u3055\u307d\u3093*","screen_name":"friend07d5hould","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":146,"friends_count":1491,"listed_count":0,"favourites_count":0,"statuses_count":1495,"created_at":"Wed Jul 22 09:50:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628479642765144065\/6UWAL6ru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628479642765144065\/6UWAL6ru_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287451997\/1438676197","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332135429,"id_str":"663728194332135429","text":"@atsuk1tboy 50\u6b73\u3068\u304b\u8a00\u3063\u3066\u308b\u4eba\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718336467865604,"in_reply_to_status_id_str":"663718336467865604","in_reply_to_user_id":760981525,"in_reply_to_user_id_str":"760981525","in_reply_to_screen_name":"atsuk1tboy","user":{"id":3270700634,"id_str":"3270700634","name":"\u3044\u305a\u306a","screen_name":"kutiito2","location":"\u9759\u5ca1\u770c\u7530\u65b9\u90e1\u51fd\u5357\u753a","url":null,"description":"\u304a\u3044\u3063\u3059\u30fc\u3044\u305a\u306a\u3067\u3059\uff01\uff01\u30dd\u30b1\u30e2\u30f3\u304c\u597d\u304d\u3067\u3059\uff01\uff01\u30e8\u30a6\u30c4\u30d9\u306b\u305d\u308d\u305d\u308d\u5b9f\u6cc1\u52d5\u753b\u3060\u3059\u304b\u3089\u662f\u975e\u307f\u3066\u304f\u3060\u3055\u3044\uff01\uff01\uff01\u3042\u3068\u30ac\u30aa\u30e9\u30fc\u3067\u3059\uff01\uff01MAYU\u3088\u308a\u306eAll\u3067\u3059\uff01\uff01\u57fa\u672c\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\uff01\uff01\u30dd\u30b1\u30e2\u30f3\u5ec3\u4eba\u306e\u307f\u306a\u3055\u3093\uff01\u30ac\u30aa\u30e9\u30fc\u306e\u7686\u3055\u3093\uff01\u662f\u975e\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":743,"friends_count":828,"listed_count":0,"favourites_count":669,"statuses_count":5017,"created_at":"Tue Jul 07 05:43:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662208611209183232\/yNHhUiRU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662208611209183232\/yNHhUiRU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270700634\/1446353346","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsuk1tboy","name":"\u304d\u3085\u3093\u306e\u3059\u3051 #\u30ac\u30aa\u30e9\u30fc\u57a2","id":760981525,"id_str":"760981525","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332168193,"id_str":"663728194332168193","text":"@milkyseok @fihx_ @qu33nchu cowboy?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727801434927105,"in_reply_to_status_id_str":"663727801434927105","in_reply_to_user_id":409181112,"in_reply_to_user_id_str":"409181112","in_reply_to_screen_name":"milkyseok","user":{"id":2263609602,"id_str":"2263609602","name":"halsey","screen_name":"aliameowing","location":"badlands","url":"http:\/\/instagram.com\/aleea.1","description":"running out of short sentences to summarize my existence. try wikipedia.","protected":false,"verified":false,"followers_count":1360,"friends_count":533,"listed_count":2,"favourites_count":1772,"statuses_count":15049,"created_at":"Fri Dec 27 01:58:03 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535665646650929153\/f2dha5Ab.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535665646650929153\/f2dha5Ab.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662545917417943040\/S17dZer1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662545917417943040\/S17dZer1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2263609602\/1446997759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"milkyseok","name":"zee","id":409181112,"id_str":"409181112","indices":[0,10]},{"screen_name":"fihx_","name":"ceica","id":1034710002,"id_str":"1034710002","indices":[11,17]},{"screen_name":"qu33nchu","name":"smeb queen","id":597926282,"id_str":"597926282","indices":[18,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336391168,"id_str":"663728194336391168","text":"One small step for man.\n\nOne giant leap for mankind.\n\n@JoeNBC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553281753,"id_str":"1553281753","name":"Kelly","screen_name":"TOVAOD","location":null,"url":null,"description":"Financial Professional. Educated in the great state of Ohio- two degrees in Financial Management. US Marines: My Husband, Father, and Grandfather. Go Bucks!!","protected":false,"verified":false,"followers_count":1488,"friends_count":1528,"listed_count":21,"favourites_count":12430,"statuses_count":20298,"created_at":"Fri Jun 28 14:42:59 +0000 2013","utc_offset":-21600,"time_zone":"America\/Chicago","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625673290389016576\/SepJ4GKv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625673290389016576\/SepJ4GKv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JoeNBC","name":"Joe Scarborough","id":21619519,"id_str":"21619519","indices":[54,61]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336350208,"id_str":"663728194336350208","text":"RT @lolo_oro: \u30d5\u30a1\u30c8\u30ca\u30b9\u306f\u30b5\u30f3\u30bb\u30c3\u30c8\u304c\u6709\u540d\u3067\u304a\u8336\u3092\u3057\u306a\u304c\u3089\u306e\u3093\u3073\u308a\u904e\u3054\u3059\u3002 https:\/\/t.co\/ADTIXs67s5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97925709,"id_str":"97925709","name":"Yuri M","screen_name":"dorobee_yuri","location":"Fukushima,JAPAN","url":null,"description":"2011\u5e74\u304b\u30892012\u5e74\u306b\u304b\u3051\u3066\u30a8\u30b8\u30d7\u30c8\u306b\u7559\u5b66\u3057\u3066\u3044\u307e\u3057\u305f\u3002\u72ac\u732b\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u5e73\u548c\u306a\u30aa\u30bf\u30af\u3067\u3059\u3002\u5199\u771f\u306f\u611b\u732b\u3002\u4e2d\u6771\u60c5\u52e2\u306b\u8208\u5473\u304c\u3042\u308a\u3001\u30a8\u30b8\u30d7\u30c8\u3084\u4e2d\u6771\u306b\u3064\u3044\u3066\u3088\u304f\u30c4\u30a4\u3057\u3066\u307e\u3059\u3002\u30a8\u30b8\u30d7\u30c8\u4eba(\u30a4\u30b9\u30e9\u30e0\u6559\u5f92)\u3092\u592b\u306b\u3082\u3064\u65e5\u672c\u4eba(\u30ad\u30ea\u30b9\u30c8\u6559\u5f92)\u3002\u798f\u5cf6\u770c\u5728\u4f4f(*\u00b4\u2200\uff40)","protected":false,"verified":false,"followers_count":95,"friends_count":127,"listed_count":4,"favourites_count":200,"statuses_count":10193,"created_at":"Sat Dec 19 15:58:49 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/425904933\/DSC02308_1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/425904933\/DSC02308_1.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582349988\/091209_3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582349988\/091209_3_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 04:08:59 +0000 2015","id":663206555052044288,"id_str":"663206555052044288","text":"\u30d5\u30a1\u30c8\u30ca\u30b9\u306f\u30b5\u30f3\u30bb\u30c3\u30c8\u304c\u6709\u540d\u3067\u304a\u8336\u3092\u3057\u306a\u304c\u3089\u306e\u3093\u3073\u308a\u904e\u3054\u3059\u3002 https:\/\/t.co\/ADTIXs67s5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107850084,"id_str":"107850084","name":"\u304a\u308d\u3050\u3061\u3068\u3082\u3053","screen_name":"lolo_oro","location":"\u30a8\u30b8\u30d7\u30c8\u3068\u304b\u3001\u3044\u308d\u3044\u308d","url":"http:\/\/ameblo.jp\/oro","description":"\u7d0450\u30ab\u56fd\u3092\u30d0\u30c3\u30af\u30d1\u30c3\u30ab\u30fc\u3067\u65c5\u3057\u3066\u306f\u3001\u65c5\u6f2b\u753b\u306b\u30023\u5e74\u534a\u30a8\u30b8\u30d7\u30c8\u751f\u6d3b\u3057\u306a\u304c\u3089\u3001\u6f2b\u753b\u63cf\u3044\u305f\u308a\u30d7\u30ed\u30a2\u30b7\u3057\u305f\u308a\u3002\u30b7\u30fc\u30b7\u30e3\u304c\u3042\u308c\u3070\u751f\u304d\u3066\u3044\u3051\u308b\u3002\u30de\u30a4\u30ca\u30d3\u30cb\u30e5\u30fc\u30b9\u3067\u300c\u30a8\u30b8\u30d7\u30c8\u52b4\u50cd\u8a18\u300d\u30de\u30f3\u30ac\u9023\u8f09\u4e2d\uff01http:\/\/news.mynavi.jp\/series\/workegypt\/001\/","protected":false,"verified":false,"followers_count":1027,"friends_count":72,"listed_count":26,"favourites_count":152,"statuses_count":9799,"created_at":"Sat Jan 23 23:53:23 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651105774\/1625366_3030945188_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651105774\/1625366_3030945188_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107850084\/1365636730","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663206538597789697,"id_str":"663206538597789697","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","url":"https:\/\/t.co\/ADTIXs67s5","display_url":"pic.twitter.com\/ADTIXs67s5","expanded_url":"http:\/\/twitter.com\/lolo_oro\/status\/663206555052044288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663206538597789697,"id_str":"663206538597789697","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","url":"https:\/\/t.co\/ADTIXs67s5","display_url":"pic.twitter.com\/ADTIXs67s5","expanded_url":"http:\/\/twitter.com\/lolo_oro\/status\/663206555052044288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lolo_oro","name":"\u304a\u308d\u3050\u3061\u3068\u3082\u3053","id":107850084,"id_str":"107850084","indices":[3,12]}],"symbols":[],"media":[{"id":663206538597789697,"id_str":"663206538597789697","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","url":"https:\/\/t.co\/ADTIXs67s5","display_url":"pic.twitter.com\/ADTIXs67s5","expanded_url":"http:\/\/twitter.com\/lolo_oro\/status\/663206555052044288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663206555052044288,"source_status_id_str":"663206555052044288","source_user_id":107850084,"source_user_id_str":"107850084"}]},"extended_entities":{"media":[{"id":663206538597789697,"id_str":"663206538597789697","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQu1UHWcAEmoj0.jpg","url":"https:\/\/t.co\/ADTIXs67s5","display_url":"pic.twitter.com\/ADTIXs67s5","expanded_url":"http:\/\/twitter.com\/lolo_oro\/status\/663206555052044288\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663206555052044288,"source_status_id_str":"663206555052044288","source_user_id":107850084,"source_user_id_str":"107850084"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357456897,"id_str":"663728194357456897","text":"RT @awnharrystyles: preciso restaurar esse iphone bosta pq to com mem\u00f3ria insuficiente","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":173267779,"id_str":"173267779","name":"GoldDizz","screen_name":"Gabiiihenriques","location":"Brasil","url":"http:\/\/instagram.com\/_gabrii3laa__","description":"Estavo procurando una dire\u00e7\u00e3o, ai lembra que \u00e9 a one direction, cai no chao sem voltas.|#~%|%*|","protected":false,"verified":false,"followers_count":240,"friends_count":435,"listed_count":11,"favourites_count":2896,"statuses_count":8583,"created_at":"Sat Jul 31 23:20:52 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499358946033803264\/ILvw-khT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499358946033803264\/ILvw-khT.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B51A74","profile_text_color":"BF1FBA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662097646597853184\/_NvZOdbB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662097646597853184\/_NvZOdbB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/173267779\/1446691314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:24:31 +0000 2015","id":663708750281375744,"id_str":"663708750281375744","text":"preciso restaurar esse iphone bosta pq to com mem\u00f3ria insuficiente","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":408357082,"id_str":"408357082","name":"giovanna","screen_name":"awnharrystyles","location":"\u2022 ari liam 5h dinah follows \u2022","url":"https:\/\/twitter.com\/Louis_Tomlinson\/status\/120620074301267968","description":"vc eh tao feia que as barreiras de idris te confudem com um demonio","protected":false,"verified":false,"followers_count":119120,"friends_count":38887,"listed_count":148,"favourites_count":16282,"statuses_count":370714,"created_at":"Wed Nov 09 09:47:59 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658808661700136960\/7soT77fh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658808661700136960\/7soT77fh.png","profile_background_tile":true,"profile_link_color":"881144","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663117663644815361\/BpJulZLC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663117663644815361\/BpJulZLC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/408357082\/1446934685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"awnharrystyles","name":"giovanna","id":408357082,"id_str":"408357082","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194327961600,"id_str":"663728194327961600","text":"KEATON HENSON\/\/ YOU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300745251,"id_str":"300745251","name":"Leah Geagea","screen_name":"Leahgea","location":"instagram and snap: leahgeagea","url":null,"description":"A tongue full of beautiful lies. ElliottSmith n LinkinPark n TheWeeknd","protected":false,"verified":false,"followers_count":1684,"friends_count":811,"listed_count":3,"favourites_count":23266,"statuses_count":15448,"created_at":"Wed May 18 08:52:58 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055627496\/f8f3c94cbf5970e723d369b33a3a8ec1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055627496\/f8f3c94cbf5970e723d369b33a3a8ec1.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663047349795577856\/cVDhz0RY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663047349795577856\/cVDhz0RY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300745251\/1443031481","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336362496,"id_str":"663728194336362496","text":"@haretehareruya \u7d76\u30c6\u30f3\u306e\u4eba\u3067\u3059\u3088\u306d\u3002\u8150\u3089\u306a\u3044\u771f\u9762\u76ee\u306aNL\u3060\u3057\u9762\u767d\u305d\u3046\u306a\u306e\u3067\u8aad\u307f\u305f\u3044\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721703017611264,"in_reply_to_status_id_str":"663721703017611264","in_reply_to_user_id":105276054,"in_reply_to_user_id_str":"105276054","in_reply_to_screen_name":"haretehareruya","user":{"id":1008798590,"id_str":"1008798590","name":"\u5948\u843d\u8fe6\/\u30ca\u30e9\u30ab","screen_name":"Schmidt1648","location":null,"url":null,"description":"Long time my friend","protected":false,"verified":false,"followers_count":465,"friends_count":1237,"listed_count":4,"favourites_count":10431,"statuses_count":33915,"created_at":"Thu Dec 13 13:18:50 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659662236537913345\/f5gHprPn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659662236537913345\/f5gHprPn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1008798590\/1442569846","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haretehareruya","name":"\u7df4\u3005\u306d\u308b\u306d@\u897f\u5730\u533a\u201c\u304b\u201d28a","id":105276054,"id_str":"105276054","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336325633,"id_str":"663728194336325633","text":"\ub135...\uc0ac\uc2e4 \uc81c\uac00 \uc131\uc9c8\uc774 \ub354\ub7fd\uc2b5\ub2c8\ub2e4... \u314e\u314e...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2626132453,"id_str":"2626132453","name":"SIRIUS","screen_name":"sirius_0131","location":null,"url":null,"description":"\ubc31\ud569\uae00\ub7ec \n\u25b6 http:\/\/ask.fm\/tlfqjans","protected":false,"verified":false,"followers_count":257,"friends_count":167,"listed_count":2,"favourites_count":2492,"statuses_count":9669,"created_at":"Sat Jul 12 15:04:08 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653486694553939968\/zXhBsJzi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653486694553939968\/zXhBsJzi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2626132453\/1445261340","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344759296,"id_str":"663728194344759296","text":"\u3042\u3001\u30b8\u30e7\u30fc\u30a4\u3055\u3093\uff01\u3063\u3066\u8a00\u3063\u305f\u306e\u306f\u30b8\u30e7\u30fc\u30a4\u3055\u3093\u3060\u3051\u898b\u305f\u3044\u308f\u3051\u3058\u3083\u306a\u304f\u3066\u3001\u3046\u3063\u3061\u30fc\u3082\u304f\u3093\u3061\u3083\u3093\u3082\u3084\u308a\u305f\u305d\u3046\u306a\u3093\u3060\u3088\u3002\n\u305f\u3076\u3093\u5f8c\u306f\u30b8\u30e7\u30fc\u30a4\u3055\u3093\u3060\u3051\u306a\u306e\u3002\n\u3060\u304b\u3089\u5f85\u3063\u3066\u308b\u306e\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3035564185,"id_str":"3035564185","name":"\u304b\u307b(21)\u25b720\u65e5\u30ed\u30c3\u30c8\u30f3\u5927\u5206","screen_name":"KAHOomrice","location":"\u5927\u5206","url":"http:\/\/twpf.jp\/KAHOomrice","description":"It's late but it's not too late to give a final act.\u3010EGG BRAIN\u306e\u6d3b\u52d5\u518d\u958b\u3092\u5f85\u3063\u3066\u307e\u3059\u3011TF\/ROACH\/\u30d2\u30b9\u30d1\u30cb\/KOM\/AIR SWELL\/FABLED\u3010\u3057\u30fc\u3086\u30fc\u3044\u3093\u3060\u3074\uff01\u3011","protected":false,"verified":false,"followers_count":670,"friends_count":485,"listed_count":39,"favourites_count":10669,"statuses_count":59528,"created_at":"Sun Feb 22 04:15:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662993692366495745\/qllJ8ZyG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662993692366495745\/qllJ8ZyG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3035564185\/1446919017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194328006657,"id_str":"663728194328006657","text":"vote vote emg pemilu apa pak https:\/\/t.co\/XbPrFlUwE1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1215118622,"id_str":"1215118622","name":"kisum","screen_name":"crkisum","location":"crush x","url":null,"description":"mansaE","protected":false,"verified":false,"followers_count":136,"friends_count":66,"listed_count":0,"favourites_count":122,"statuses_count":428,"created_at":"Sun Feb 24 10:31:20 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"E04E8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663686913245605889\/u2ts3daG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663686913245605889\/u2ts3daG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1215118622\/1447079705","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728100073586688,"quoted_status_id_str":"663728100073586688","quoted_status":{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728100073586688,"id_str":"663728100073586688","text":"voteeee https:\/\/t.co\/WFuY3mTWpx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3218991350,"id_str":"3218991350","name":"bobi","screen_name":"crkjw","location":"crush","url":null,"description":"jomblo. pepetable. loveable. suamiable. ableable. wassalam.","protected":false,"verified":false,"followers_count":127,"friends_count":93,"listed_count":1,"favourites_count":463,"statuses_count":3405,"created_at":"Mon May 18 05:26:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661520866384080897\/rWSF-fIB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661520866384080897\/rWSF-fIB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3218991350\/1447058923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727971769827328,"quoted_status_id_str":"663727971769827328","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WFuY3mTWpx","expanded_url":"https:\/\/twitter.com\/crkisum\/status\/663727971769827328","display_url":"twitter.com\/crkisum\/status\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XbPrFlUwE1","expanded_url":"https:\/\/twitter.com\/crkjw\/status\/663728100073586688","display_url":"twitter.com\/crkjw\/status\/6\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340524032,"id_str":"663728194340524032","text":"RT @K5Pcg: \u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/eHutLClf90\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/XBI92GYE60","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u306e\u3093\u306d\u3053\uff12\uff17\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3962465415,"id_str":"3962465415","name":"ayaka","screen_name":"kishore_nguyen","location":null,"url":null,"description":"\u306b\u3053\u307e\u3064\u2192\u30b3\u30de\u2161\u2192\u5b89\u7530\u5b66\u5712\u72791-B","protected":false,"verified":false,"followers_count":181,"friends_count":465,"listed_count":0,"favourites_count":0,"statuses_count":23,"created_at":"Thu Oct 15 05:46:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660773903522902016\/hAZA8ApT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660773903522902016\/hAZA8ApT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3962465415\/1446375753","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728004330229760,"id_str":"663728004330229760","text":"\u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/eHutLClf90\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/XBI92GYE60","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u305f\u305f\u305d\u305d88\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3480860893,"id_str":"3480860893","name":"\u591c\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","screen_name":"K5Pcg","location":null,"url":null,"description":"\u591c\u306e\u30a2\u30d7\u30ea\uff08\u30a8\u30ed\u30b2\u30fc\uff09\u3092\u914d\u4fe1\u3057\u307e\u3059!","protected":false,"verified":false,"followers_count":8,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":4,"created_at":"Mon Sep 07 10:35:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662973372238688258\/mpx77aMd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662973372238688258\/mpx77aMd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3480860893\/1446900149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eHutLClf90","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eHutLClf90","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[70,93]}],"user_mentions":[{"screen_name":"K5Pcg","name":"\u591c\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","id":3480860893,"id_str":"3480860893","indices":[3,9]}],"symbols":[],"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728004330229760,"source_status_id_str":"663728004330229760","source_user_id":3480860893,"source_user_id_str":"3480860893"}]},"extended_entities":{"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728004330229760,"source_status_id_str":"663728004330229760","source_user_id":3480860893,"source_user_id_str":"3480860893"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194348969984,"id_str":"663728194348969984","text":"HONKS YULIAN THAT HIT ME IN THE FEELS I","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3429731523,"id_str":"3429731523","name":"(H)ANNAH.","screen_name":"SAUSAGE4F","location":"honk honk.","url":"http:\/\/listography.com\/MlSANTHRXPE","description":"worthless.","protected":false,"verified":false,"followers_count":76,"friends_count":57,"listed_count":0,"favourites_count":472,"statuses_count":3748,"created_at":"Tue Aug 18 12:15:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"CCCCCC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662704856134582272\/xo0UleFr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662704856134582272\/xo0UleFr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3429731523\/1441070751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107663"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357436416,"id_str":"663728194357436416","text":"igual me enamor\u00e9 de la loca, porque el otro d\u00eda vi una pel\u00edcula y hab\u00eda una loca parecida a ella y taba al oil also","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2308485632,"id_str":"2308485632","name":"Samuel VIH","screen_name":"cuandosea_chico","location":"Tacuaremb\u00f3, Uruguay","url":null,"description":"fumo coca\u00edna smoke weed everyday soy malo no te metas con migo, migo es m\u00e1s malo que yo ahr daun","protected":false,"verified":false,"followers_count":199,"friends_count":310,"listed_count":1,"favourites_count":4709,"statuses_count":8813,"created_at":"Fri Jan 24 14:54:53 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/593842787319058432\/sS5lP3Rc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/593842787319058432\/sS5lP3Rc.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646694879263854592\/RlepdpTo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646694879263854592\/RlepdpTo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2308485632\/1407089454","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357342212,"id_str":"663728194357342212","text":"\u304a\u305d\u677e\u3055\u30935\u8a71\u307f\u3066\u6ce3\u3044\u3066\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":398768114,"id_str":"398768114","name":"\u3079\u306b\u3053@AGF\u4e21\u65e5\u53c2\u6226","screen_name":"kurenairabbit","location":"\u73ca\u745a\u7901","url":null,"description":"\u79c1\u306e\u4e00\u756a\u304c\u745b\u3067\u3042\u308b\u3088\u3046\u306b\u745b\u306e\u4e00\u756a\u3082\u79c1\u306b\u306a\u308b\u3068\u3044\u3044\u306a\u3041\u3002\u4f50\u4f2f\u3055\u3093\u306e\u5965\u3055\u3093\u3002(not\u540c\u62c5\u62d2\u5426)","protected":false,"verified":false,"followers_count":178,"friends_count":267,"listed_count":6,"favourites_count":1870,"statuses_count":40996,"created_at":"Wed Oct 26 14:31:32 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655963901268389892\/lD-ROB63_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655963901268389892\/lD-ROB63_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/398768114\/1445228955","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353147904,"id_str":"663728194353147904","text":"@kirakiratori777 \u304f\u307e\u3063\u304d\u30fc\u3055\u3093(\uffe3\u25cb\uffe3)\u304a(\uffe3\u25c7\uffe3)\u3084(\uffe3\u03bf\uffe3)\u3059(\uffe3\u30fc\uffe3)\u30ce~~~\u307f\uff5e\u266a\u30fb:*:\u30fb\u309c\u2605,\u3002\u30fb:*:\u30fb\u309c\u2606","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728160085827585,"in_reply_to_status_id_str":"663728160085827585","in_reply_to_user_id":1065619148,"in_reply_to_user_id_str":"1065619148","in_reply_to_screen_name":"kirakiratori777","user":{"id":81823335,"id_str":"81823335","name":"\u3061\u3073\u30eb\u30ea","screen_name":"chibiruri","location":"\u96fb\u5b50\u306e\u6d77\u3092\uff5e\uff5e\uff5e\u30df((((\/*\uffe3\u30fc\uffe3)\/ \u30b9\u30a4\u30b9\u30a4\uff5e\u266a","url":"http:\/\/chibiruri.exblog.jp\/","description":"\u3061\u3073\u30eb\u30ea\u306e\u9854\u6587\u5b57\u591a\u3081\u306e\u3064\u3076\u3084\u304d\u30fe(\uffe3\u25c7\uffe3*)\u30ce \u30d5\u30a9\u30ed\u30fc\u306b\u6c17\u4ed8\u304b\u306a\u3044\u3053\u3068\u304c\u591a\u3044\u306e\u3067\u3001\u30ea\u30d7\u3092\u3082\u3089\u3048\u308b\u3068\u52a9\u304b\u308a\u307e\u3059(\uff1e\u0414\uff1c)\u309d\u201d \u3082\u3061\u308d\u3093100\uff05\u306e\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3092\u4fdd\u8a3c\u3059\u308b\u3082\u306e\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u306e\u3067\u3042\u3057\u304b\u3089\u305a m(_ _m)\u30da\u30b3\u30ea","protected":false,"verified":false,"followers_count":1869,"friends_count":1018,"listed_count":190,"favourites_count":29469,"statuses_count":1423260,"created_at":"Mon Oct 12 11:49:08 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/63637284\/back01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/63637284\/back01.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650784361495703556\/nNO3_XPr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650784361495703556\/nNO3_XPr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81823335\/1399338615","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kirakiratori777","name":"\u30af\u30de\u306b\u3093(\u8a8d\u8a3c\u6e08\u307f\u30a2\u30ab\u30a6\u30f3\u30c8)","id":1065619148,"id_str":"1065619148","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194328109056,"id_str":"663728194328109056","text":"RT @louiseweir2014: 69 #FORD #MUSTANG #MACH-1 https:\/\/t.co\/a8CZVraLwV","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1038495830,"id_str":"1038495830","name":"Rick Hardorff","screen_name":"Iqrr08","location":null,"url":null,"description":"Were all brothers and sisters. Hang loose,you know the sign. 3-11","protected":false,"verified":false,"followers_count":141,"friends_count":152,"listed_count":23,"favourites_count":17323,"statuses_count":17371,"created_at":"Thu Dec 27 01:17:48 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557217901501886464\/4Yxwfw2A_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557217901501886464\/4Yxwfw2A_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1038495830\/1439676307","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:12 +0000 2015","id":663723012198440960,"id_str":"663723012198440960","text":"69 #FORD #MUSTANG #MACH-1 https:\/\/t.co\/a8CZVraLwV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2790898401,"id_str":"2790898401","name":"\u2728\u2764 MUSTANG GIRL\u2665\u2728\u270c","screen_name":"louiseweir2014","location":"England, United Kingdom","url":null,"description":"\u2764GIRLIE AND COUNTRY \u2764 A LITTLE MEAN A LOT OF SWEET \u2764 I DRIVE TOO FAST & PLAY MY MUSIC 2 LOUD \u2764 I LOVE LIFE A LITTLE TOO MUCH \u2764 I DREAM BIG & FALL HARD \u26a1 NO DMS\u26a1","protected":false,"verified":false,"followers_count":5126,"friends_count":3942,"listed_count":47,"favourites_count":21959,"statuses_count":23875,"created_at":"Mon Sep 29 07:41:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662181916867735552\/Gapbkyy6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662181916867735552\/Gapbkyy6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2790898401\/1431044433","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":7,"entities":{"hashtags":[{"text":"FORD","indices":[3,8]},{"text":"MUSTANG","indices":[9,17]},{"text":"MACH","indices":[18,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723003105136640,"id_str":"663723003105136640","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","url":"https:\/\/t.co\/a8CZVraLwV","display_url":"pic.twitter.com\/a8CZVraLwV","expanded_url":"http:\/\/twitter.com\/louiseweir2014\/status\/663723012198440960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":720,"h":710,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723003105136640,"id_str":"663723003105136640","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","url":"https:\/\/t.co\/a8CZVraLwV","display_url":"pic.twitter.com\/a8CZVraLwV","expanded_url":"http:\/\/twitter.com\/louiseweir2014\/status\/663723012198440960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":720,"h":710,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FORD","indices":[23,28]},{"text":"MUSTANG","indices":[29,37]},{"text":"MACH","indices":[38,43]}],"urls":[],"user_mentions":[{"screen_name":"louiseweir2014","name":"\u2728\u2764 MUSTANG GIRL\u2665\u2728\u270c","id":2790898401,"id_str":"2790898401","indices":[3,18]}],"symbols":[],"media":[{"id":663723003105136640,"id_str":"663723003105136640","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","url":"https:\/\/t.co\/a8CZVraLwV","display_url":"pic.twitter.com\/a8CZVraLwV","expanded_url":"http:\/\/twitter.com\/louiseweir2014\/status\/663723012198440960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":720,"h":710,"resize":"fit"}},"source_status_id":663723012198440960,"source_status_id_str":"663723012198440960","source_user_id":2790898401,"source_user_id_str":"2790898401"}]},"extended_entities":{"media":[{"id":663723003105136640,"id_str":"663723003105136640","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEjgVWUAAo7DL.jpg","url":"https:\/\/t.co\/a8CZVraLwV","display_url":"pic.twitter.com\/a8CZVraLwV","expanded_url":"http:\/\/twitter.com\/louiseweir2014\/status\/663723012198440960\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":720,"h":710,"resize":"fit"}},"source_status_id":663723012198440960,"source_status_id_str":"663723012198440960","source_user_id":2790898401,"source_user_id_str":"2790898401"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344775680,"id_str":"663728194344775680","text":"@Akira_silver_ \u5175\u58ebLv\u304c4\u306b\u3042\u304c\u3063\u305f\uff01(+3) \u3042\u304a\u304f\u3055\u3055\u3001\u30b3\u30df\u30e5\u529b\u3001\u3046\u3044\u3046\u3044\u3057\u3055\u7b49\u304c\u3042\u304c\u3063\u305f\uff01(\u30e1\u30c0\u30eb+3) \u3010\u8a73\u7d30\u2192 https:\/\/t.co\/fgCadIKuvY \u3011 #lvup #lvg_spk","source":"\u003ca href=\"https:\/\/lvagatter.jp\/\" rel=\"nofollow\"\u003e\u308c\u3079\u308b\u3042\u304c\u3063\u305f\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2158218800,"in_reply_to_user_id_str":"2158218800","in_reply_to_screen_name":"Akira_silver_","user":{"id":2158218800,"id_str":"2158218800","name":"\u3042\u304d\u3089\u3002","screen_name":"Akira_silver_","location":"\u3059\u3071\u304d\u3083\u3093\u6559(\u00b4\uff65_\uff65`) ","url":"http:\/\/twpf.jp\/Akira_silver_","description":"\u30d8\u30c3\u30c0\u30fc\u306f\u3059\u3071\u3061\u3083\u3093\u307e\u3093( \u02d8\u03c9\u02d8)v","protected":false,"verified":false,"followers_count":22061,"friends_count":6281,"listed_count":156,"favourites_count":288945,"statuses_count":41040,"created_at":"Sun Oct 27 06:18:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"00FFDD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659097510246395904\/FTOGb0Gu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659097510246395904\/FTOGb0Gu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2158218800\/1446997334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lvup","indices":[95,100]},{"text":"lvg_spk","indices":[101,109]}],"urls":[{"url":"https:\/\/t.co\/fgCadIKuvY","expanded_url":"https:\/\/lvagatter.jp\/status.php?user_id=2158218800","display_url":"lvagatter.jp\/status.php?use\u2026","indices":[69,92]}],"user_mentions":[{"screen_name":"Akira_silver_","name":"\u3042\u304d\u3089\u3002","id":2158218800,"id_str":"2158218800","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194361495552,"id_str":"663728194361495552","text":"@IJIllIonAIRe TeamB\u2161\uff01\uff01\uff01\uff01 \n\u307e\u3060\u307e\u3060\u306a\u30c1\u30fc\u30e0\u3067\u3059\u304c\u3001 \n\u3053\u308c\u304b\u3089\u3082\u5fdc\u63f4\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u3048\u307f\u3061\u306e\u3061\u307f\u3048\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728143904190464,"in_reply_to_status_id_str":"663728143904190464","in_reply_to_user_id":1543154906,"in_reply_to_user_id_str":"1543154906","in_reply_to_screen_name":"IJIllIonAIRe","user":{"id":1469297544,"id_str":"1469297544","name":"\u4e0a\u679d\u6075\u7f8e\u52a0_bot","screen_name":"emichi_bot","location":null,"url":null,"description":"NMB48 TeamB\u2161\u30ad\u30e3\u30d7\u30c6\u30f3\r\n\u3048\u307f\u3061\u3053\u3068\u4e0a\u679d\u6075\u7f8e\u52a0\u306e\u975e\u516c\u5f0fbot\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":554,"friends_count":586,"listed_count":7,"favourites_count":86,"statuses_count":134615,"created_at":"Thu May 30 09:15:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3731189000\/7c018b5643ce29d35f2e99c593259d83_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3731189000\/7c018b5643ce29d35f2e99c593259d83_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1469297544\/1369906272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IJIllIonAIRe","name":"\u4e95\u5c3b\u664f\u83dcer","id":1543154906,"id_str":"1543154906","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107666"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357301251,"id_str":"663728194357301251","text":"RT @AYHL: #16UScoreAlert @SachaGuillemain with a pair of goals as the @WBSKnights defeated the @LittleFlyersHky 5-4 #AYHL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3419777865,"id_str":"3419777865","name":"Carole Guillemain","screen_name":"guillemaincaro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":40,"listed_count":0,"favourites_count":286,"statuses_count":20,"created_at":"Thu Aug 13 09:51:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631765604131819522\/nXZKU6IX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631765604131819522\/nXZKU6IX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3419777865\/1439459633","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:15:30 +0000 2015","id":663570584564056064,"id_str":"663570584564056064","text":"#16UScoreAlert @SachaGuillemain with a pair of goals as the @WBSKnights defeated the @LittleFlyersHky 5-4 #AYHL","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46697742,"id_str":"46697742","name":"AYHL Hockey","screen_name":"AYHL","location":null,"url":"http:\/\/www.atlantichockey.org","description":"Fun....Skill Development....Competition....College Prep","protected":false,"verified":false,"followers_count":1715,"friends_count":118,"listed_count":5,"favourites_count":289,"statuses_count":846,"created_at":"Fri Jun 12 17:13:30 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5AE3E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/18394270\/AYHL_Twitter.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/18394270\/AYHL_Twitter.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"111111","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652581469550981120\/QdzhrHCE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652581469550981120\/QdzhrHCE_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"16UScoreAlert","indices":[0,14]},{"text":"AYHL","indices":[106,111]}],"urls":[],"user_mentions":[{"screen_name":"SachaGuillemain","name":"Sacha guillemain","id":1917019122,"id_str":"1917019122","indices":[15,31]},{"screen_name":"WBSKnights","name":"WBS Knights","id":770150461,"id_str":"770150461","indices":[60,71]},{"screen_name":"LittleFlyersHky","name":"Philly Little Flyers","id":2422597496,"id_str":"2422597496","indices":[85,101]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"16UScoreAlert","indices":[10,24]},{"text":"AYHL","indices":[116,121]}],"urls":[],"user_mentions":[{"screen_name":"AYHL","name":"AYHL Hockey","id":46697742,"id_str":"46697742","indices":[3,8]},{"screen_name":"SachaGuillemain","name":"Sacha guillemain","id":1917019122,"id_str":"1917019122","indices":[25,41]},{"screen_name":"WBSKnights","name":"WBS Knights","id":770150461,"id_str":"770150461","indices":[70,81]},{"screen_name":"LittleFlyersHky","name":"Philly Little Flyers","id":2422597496,"id_str":"2422597496","indices":[95,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194348957696,"id_str":"663728194348957696","text":"I ended up buying ice cream for the neighborhood kids too...","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181897637,"id_str":"3181897637","name":"Ushijima Wakatoshi","screen_name":"wakawakatoshi","location":null,"url":null,"description":"Shiratorizawa's Captain and ace.\n\n[replies will be added in the future!]","protected":false,"verified":false,"followers_count":217,"friends_count":65,"listed_count":1,"favourites_count":357,"statuses_count":4903,"created_at":"Sun Apr 19 05:13:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"CA095D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601792827320881153\/r9FORCBc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601792827320881153\/r9FORCBc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181897637\/1430350186","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107663"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194323808256,"id_str":"663728194323808256","text":"RT @RoyceUpdates: -NEW PHOTOS- Prince Royce Visits SBS Radio Miami To Announce Grand Slam Party Latino https:\/\/t.co\/25zZ9plUtf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1528986216,"id_str":"1528986216","name":"paola","screen_name":"relenasfries","location":"TX","url":"http:\/\/youtu.be\/GLB7Pi4zDqE","description":"selena is my queen #relenaisreal","protected":false,"verified":false,"followers_count":3226,"friends_count":248,"listed_count":13,"favourites_count":18212,"statuses_count":70937,"created_at":"Tue Jun 18 22:30:32 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660955987289833472\/OR03UmcH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660955987289833472\/OR03UmcH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1528986216\/1442640096","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:13 +0000 2015","id":663727043385798656,"id_str":"663727043385798656","text":"-NEW PHOTOS- Prince Royce Visits SBS Radio Miami To Announce Grand Slam Party Latino https:\/\/t.co\/25zZ9plUtf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2169263328,"id_str":"2169263328","name":"Royce Updates","screen_name":"RoyceUpdates","location":"\u2728Planet Royce\u2728","url":"http:\/\/youtube.com\/royceupdates","description":"Buy @PrinceRoyce's new album #DoubleVision now on iTunes! http:\/\/smarturl.it\/iDoubleVisionD\u2026","protected":false,"verified":false,"followers_count":3513,"friends_count":477,"listed_count":7,"favourites_count":2025,"statuses_count":6836,"created_at":"Fri Nov 01 23:56:18 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/480882325127823360\/tPIde4sP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/480882325127823360\/tPIde4sP.jpeg","profile_background_tile":true,"profile_link_color":"61B5C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659074861755568128\/Iz1FP3lZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659074861755568128\/Iz1FP3lZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2169263328\/1445970831","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727036175745024,"id_str":"663727036175745024","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727036175745024,"id_str":"663727036175745024","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}}},{"id":663727036381290496,"id_str":"663727036381290496","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORdUYAAdl84.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORdUYAAdl84.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}}},{"id":663727036528095232,"id_str":"663727036528095232","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOSAUcAAbnBa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOSAUcAAbnBa.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":395,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":594,"resize":"fit"}}},{"id":663727036721004544,"id_str":"663727036721004544","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOSuUAAAS63l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOSuUAAAS63l.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RoyceUpdates","name":"Royce Updates","id":2169263328,"id_str":"2169263328","indices":[3,16]}],"symbols":[],"media":[{"id":663727036175745024,"id_str":"663727036175745024","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}},"source_status_id":663727043385798656,"source_status_id_str":"663727043385798656","source_user_id":2169263328,"source_user_id_str":"2169263328"}]},"extended_entities":{"media":[{"id":663727036175745024,"id_str":"663727036175745024","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOQsUAAAw_0e.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}},"source_status_id":663727043385798656,"source_status_id_str":"663727043385798656","source_user_id":2169263328,"source_user_id_str":"2169263328"},{"id":663727036381290496,"id_str":"663727036381290496","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIORdUYAAdl84.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIORdUYAAdl84.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}},"source_status_id":663727043385798656,"source_status_id_str":"663727043385798656","source_user_id":2169263328,"source_user_id_str":"2169263328"},{"id":663727036528095232,"id_str":"663727036528095232","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOSAUcAAbnBa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOSAUcAAbnBa.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":511,"resize":"fit"},"large":{"w":395,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":395,"h":594,"resize":"fit"}},"source_status_id":663727043385798656,"source_status_id_str":"663727043385798656","source_user_id":2169263328,"source_user_id_str":"2169263328"},{"id":663727036721004544,"id_str":"663727036721004544","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIOSuUAAAS63l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIOSuUAAAS63l.jpg","url":"https:\/\/t.co\/25zZ9plUtf","display_url":"pic.twitter.com\/25zZ9plUtf","expanded_url":"http:\/\/twitter.com\/RoyceUpdates\/status\/663727043385798656\/photo\/1","type":"photo","sizes":{"medium":{"w":594,"h":395,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":594,"h":395,"resize":"fit"}},"source_status_id":663727043385798656,"source_status_id_str":"663727043385798656","source_user_id":2169263328,"source_user_id_str":"2169263328"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107657"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357366784,"id_str":"663728194357366784","text":"RT @K5Pcg: \u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/eHutLClf90\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/XBI92GYE60","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u306e\u3093\u306d\u3053\uff12\uff17\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3962516645,"id_str":"3962516645","name":"\u3055\u304d","screen_name":"padmatiken19831","location":null,"url":null,"description":"\u5c71\u897f30th??\u5c71\u9ad81-3 2\u53f7\u3067\u3059","protected":false,"verified":false,"followers_count":215,"friends_count":725,"listed_count":0,"favourites_count":0,"statuses_count":23,"created_at":"Thu Oct 15 05:47:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660774740819230720\/0mJVNULt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660774740819230720\/0mJVNULt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3962516645\/1446375953","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728004330229760,"id_str":"663728004330229760","text":"\u672c\u5f53\u306b\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u3057\u3066\u3044\u308b\u3088\u3046\u306a\n\n\u30ea\u30a2\u30eb\u306a\u611f\u899a\u306b\u306a\u308b\u3068\u8a71\u984c\u306e\u30a8\u30ed\u30b2\u30fc\u304c\n\n\u3042\u308b\u3093\u3060\u3051\u3069\u3001\u3069\u3093\u306a\u611f\u899a\u306a\u3093\u3060\u308d\u3046\uff1f\n\nhttps:\/\/t.co\/eHutLClf90\n\n\u5973\u306e\u5b50\u3068\u30a8\u30c3\u30c1\u611f\u899awww\n\nR18\u5bfe\u8c61 https:\/\/t.co\/XBI92GYE60","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u305f\u305f\u305d\u305d88\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3480860893,"id_str":"3480860893","name":"\u591c\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","screen_name":"K5Pcg","location":null,"url":null,"description":"\u591c\u306e\u30a2\u30d7\u30ea\uff08\u30a8\u30ed\u30b2\u30fc\uff09\u3092\u914d\u4fe1\u3057\u307e\u3059!","protected":false,"verified":false,"followers_count":8,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":4,"created_at":"Mon Sep 07 10:35:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662973372238688258\/mpx77aMd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662973372238688258\/mpx77aMd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3480860893\/1446900149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eHutLClf90","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eHutLClf90","expanded_url":"http:\/\/apurin.chu.jp\/f5A","display_url":"apurin.chu.jp\/f5A","indices":[70,93]}],"user_mentions":[{"screen_name":"K5Pcg","name":"\u591c\u306e\u30a2\u30d7\u30ea\u3014\u516c\u5f0f\u3015","id":3480860893,"id_str":"3480860893","indices":[3,9]}],"symbols":[],"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728004330229760,"source_status_id_str":"663728004330229760","source_user_id":3480860893,"source_user_id_str":"3480860893"}]},"extended_entities":{"media":[{"id":663728004107923456,"id_str":"663728004107923456","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJGmhU8AAzTns.jpg","url":"https:\/\/t.co\/XBI92GYE60","display_url":"pic.twitter.com\/XBI92GYE60","expanded_url":"http:\/\/twitter.com\/K5Pcg\/status\/663728004330229760\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":548,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":700,"h":640,"resize":"fit"}},"source_status_id":663728004330229760,"source_status_id_str":"663728004330229760","source_user_id":3480860893,"source_user_id_str":"3480860893"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332160000,"id_str":"663728194332160000","text":"@saya0316_3JSB \u9752\uff34\u30b7\u30e3\u30c4\u5ca9\u3061\u3083\u3093\u30af\u30ea\u30fc\u30ca\u30fc\u304a\u8b72\u308a\u306f\u53ef\u80fd\u3067\u3057\u3087\u3046\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":656754686758772736,"in_reply_to_status_id_str":"656754686758772736","in_reply_to_user_id":3215480734,"in_reply_to_user_id_str":"3215480734","in_reply_to_screen_name":"saya0316_3JSB","user":{"id":2367911730,"id_str":"2367911730","name":"\u2661\u2661asuka\u2661\u2661","screen_name":"asuka19841205","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":181,"listed_count":0,"favourites_count":24,"statuses_count":218,"created_at":"Sun Mar 02 01:07:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441777677624557568\/QB7cNKLZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441777677624557568\/QB7cNKLZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2367911730\/1433805403","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"saya0316_3JSB","name":"saya\u81e3","id":3215480734,"id_str":"3215480734","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194361556992,"id_str":"663728194361556992","text":"Join the Aurora Health Care team! See our latest #Nursing #job opening here: https:\/\/t.co\/rA4mYGRkeR #GRAFTON, WI #Hiring #CareerArc","source":"\u003ca href=\"http:\/\/www.tweetmyjobs.com\" rel=\"nofollow\"\u003eTweetMyJOBS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":22159498,"id_str":"22159498","name":"TMJ-MKE Nursing Jobs","screen_name":"tmj_mke_nursing","location":"Milwaukee, WI","url":"http:\/\/tweetmyjobs.com","description":"Follow this account for geo-targeted Healthcare-Nursing job tweets in Milwaukee, WI from TweetMyJobs. Need help? Tweet us at @TweetMyJobs!","protected":false,"verified":false,"followers_count":365,"friends_count":302,"listed_count":16,"favourites_count":0,"statuses_count":750,"created_at":"Fri Feb 27 16:50:04 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"253956","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315549074\/Twitter-BG_2_bg-image.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315549074\/Twitter-BG_2_bg-image.jpg","profile_background_tile":false,"profile_link_color":"96BEDF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"407DB0","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2303744690\/Logo_tmj_new2b_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2303744690\/Logo_tmj_new2b_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/22159498\/1349362750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[43.3242639,-87.9277579]},"coordinates":{"type":"Point","coordinates":[-87.9277579,43.3242639]},"place":{"id":"7dc5c6d3bfb10ccc","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/7dc5c6d3bfb10ccc.json","place_type":"admin","name":"Wisconsin","full_name":"Wisconsin, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-92.889433,42.491889],[-92.889433,47.309715],[-86.249550,47.309715],[-86.249550,42.491889]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Nursing","indices":[49,57]},{"text":"job","indices":[58,62]},{"text":"GRAFTON","indices":[101,109]},{"text":"Hiring","indices":[114,121]},{"text":"CareerArc","indices":[122,132]}],"urls":[{"url":"https:\/\/t.co\/rA4mYGRkeR","expanded_url":"http:\/\/bit.ly\/1j3Sj9F","display_url":"bit.ly\/1j3Sj9F","indices":[77,100]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107666"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194327973888,"id_str":"663728194327973888","text":"@yumemimeru \u5f85\u3063\u3066\u308b\ud83d\ude4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721259448950784,"in_reply_to_status_id_str":"663721259448950784","in_reply_to_user_id":3955993459,"in_reply_to_user_id_str":"3955993459","in_reply_to_screen_name":"yumemimeru","user":{"id":1921964444,"id_str":"1921964444","name":"\u3082\u304b\u3081\u308d","screen_name":"xo_____moka","location":"#\u5343\u8449","url":null,"description":"\u4e00\u77ac\u306e\u51fa\u6765\u4e8b\u304c\u5168\u3066\u3092\u5909\u3048\u308b nana :\uff3bhttp:\/\/hibari.nana-music.com\/w\/profile\/462536\/\uff3d\u304a\u306b\u3044\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":2409,"friends_count":281,"listed_count":168,"favourites_count":28135,"statuses_count":57499,"created_at":"Tue Oct 01 02:16:41 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638304690812272641\/mG4Q1n0X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638304690812272641\/mG4Q1n0X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1921964444\/1441011191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yumemimeru","name":"\u3086\u3081\u307f\u3081\u308b","id":3955993459,"id_str":"3955993459","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107658"} +{"delete":{"status":{"id":663728185968840705,"id_str":"663728185968840705","user_id":1932679208,"user_id_str":"1932679208"},"timestamp_ms":"1447080107802"}} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194327941122,"id_str":"663728194327941122","text":"@kakutou623 \u307e\u3041\u3082\u3046\uff12\uff14\u6642\u9593\u8010\u4e45\u30bb\u30c3\u30af\u30b9\u307f\u305f\u3044\u306a\u3068\u3053\u3042\u308b\u3002\u30b7\u30e7\u30bf\u3060\u3068\u62c5\u304e\u3084\u3059\u3044\u3057\u5149\u5fe0\u99c5\u5f01\u3067\u5965\u307e\u3067\u5165\u3063\u3066\u3093\u307b\u3049\u3063\u3066\u3067\u304d\u308b\u3084\u3064\uff01\uff01\u30c1\u30e5\u30c3\u30d1\u30c1\u30e3\u30c3\u30d7\u30b9\u304f\u3089\u3044\u306e\u306e\u308a\u3067\u8210\u3081\u3068\u304d\u305f\u3044\u3088\u306a","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727664113430528,"in_reply_to_status_id_str":"663727664113430528","in_reply_to_user_id":294633471,"in_reply_to_user_id_str":"294633471","in_reply_to_screen_name":"kakutou623","user":{"id":3245308152,"id_str":"3245308152","name":"\u30b5\u30df\u30fc\uff20\u6deb\u8a9e\u306e\u4eba","screen_name":"shokushusaniwa","location":null,"url":"http:\/\/privatter.net\/u\/shokushusaniwa","description":"\u30d4\u30af\u30b7\u30d6\u3067\u4e3b\u71ed\u4e2d\u5fc3\u306b\u3042\u307b\u3048\u308d\u306a\u3093\u304b\u3092\u66f8\u304b\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u304a\u308a\u307e\u3059\u3002\u96d1\u98df\u3067\u3059\u3002\u4e3b\u5200\u304c\u3059\u304d\u3002\u30d5\u30a9\u30ed\u30fc\u306f18\u6b73\u4ee5\u4e0a\u306e\u65b9\u306e\u307f\u81ea\u5df1\u8cac\u4efb\u3067\u304a\u9858\u3044\u3057\u307e\u3059 \u30d7\u30e9\u30a4\u30d9\u30c3\u30bf\u30fc\u3067\u3082\u5730\u5473\u306b\u3042\u307b\u3048\u308d\u3084\u3063\u3066\u307e\u3059\u304c\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u9650\u5b9a\u3067\u3059","protected":false,"verified":false,"followers_count":869,"friends_count":272,"listed_count":34,"favourites_count":4122,"statuses_count":12585,"created_at":"Sun Jun 14 17:54:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633633079794339842\/pWKGjlfX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633633079794339842\/pWKGjlfX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245308152\/1438445560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kakutou623","name":"\u89d2\u7cd6","id":294633471,"id_str":"294633471","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194332131328,"id_str":"663728194332131328","text":"@makazuryo2 \u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059(\u2312\u25bd\u2312)\n\u52c9\u5f37\u3068\u4ed5\u4e8b\u3068ZARD\u3070\u304b\u308a\u3067\u5fd9\u3057\u3044\u6bce\u65e5\u3067\u3059\u7b11\u7b11\u7b11\u2764\ufe0f\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722975359700992,"in_reply_to_status_id_str":"663722975359700992","in_reply_to_user_id":2975582460,"in_reply_to_user_id_str":"2975582460","in_reply_to_screen_name":"makazuryo2","user":{"id":2158865414,"id_str":"2158865414","name":"\u2661ZARD@izumi\u968a\u9577\u2661","screen_name":"4409Ikimono","location":null,"url":null,"description":"\u89b3\u89a7\u3057\u3066\u3044\u305f\u3060\u304d\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u2661 \u3044\u304d\u3082\u306e\u3068ZARD\u5927\u597d\u304d \u3053\u3061\u3089\u306f\u3001ZARD\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8Twitter\u3067\u3059( ^\u03c9^ ) WEZARD\u4f1a\u54e1\u5165\u3063\u3066\u3044\u307e\u3059 ZARD\u5927\u597d\u304d\u306a\u65b9\u304a\u6c17\u8efd\u306b\u5927\u4e08\u592b\u3067\u3059","protected":false,"verified":false,"followers_count":378,"friends_count":640,"listed_count":11,"favourites_count":2100,"statuses_count":4605,"created_at":"Sun Oct 27 13:16:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660601235037286400\/cQ6ikmSF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660601235037286400\/cQ6ikmSF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2158865414\/1446855745","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"makazuryo2","name":"ZARD\u5927\u597d\u304d\u30aa\u30e9\u30d5","id":2975582460,"id_str":"2975582460","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107659"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344775682,"id_str":"663728194344775682","text":"I miss you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287606022,"id_str":"3287606022","name":".","screen_name":"_liyanaanr","location":null,"url":"http:\/\/liyananr.tumblr.com","description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":106,"listed_count":0,"favourites_count":56,"statuses_count":1895,"created_at":"Wed Jul 22 14:52:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660485047795847170\/lAxYvoxI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660485047795847170\/lAxYvoxI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287606022\/1446306806","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340544512,"id_str":"663728194340544512","text":"RT @sugaflow93: 151107 \uba5c\ubba4\uc5b4 #\uc288\uac00 #\ubbfc\uc724\uae30 @BTS_twt \n\uc624\ub298\uc740 \uc9c0\uc9dc \ubcf4\uc815\ud560\ub77c\uad6c \uadf8\ub7ac\ub294\ub370.. \ubab8\uc774 \uc548 \uc870\uc544\uac00\uc9c0\uad6c\u3163\u3145\u3147..\n\uc6b0\uc120 \ud558\ub098 \ubbf8\ub9ac \uc62c\ub9b4\uac8c\uc694 \u314e-\u314e \n\uc9c4\uc9dc \ud45c\uc815 \ubd10 \u314b\u314b\u314b\u314b \uadc0\uc5fd \u3160\u3160 \ud63c\uc790 \uc778\uc0dd\ubb34\uc0c1.. https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2881269044,"id_str":"2881269044","name":"marryel-ssi \u2605","screen_name":"hopieiaaa","location":"Hoseok's Lip Mole \u2665","url":"http:\/\/hopieiaaa.tumblr.com","description":"I is an Innocent \ud638\uc11d-stan. I is an Angel.\nVHOPE | YOONMIN | YOONSEOK | JIKOOK | NAMJIN |\nVine: hopieiaaa","protected":false,"verified":false,"followers_count":321,"friends_count":497,"listed_count":2,"favourites_count":9263,"statuses_count":17085,"created_at":"Tue Oct 28 22:12:34 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"111111","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/619105733796179968\/Mmi-KWLG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/619105733796179968\/Mmi-KWLG.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663678887923068928\/eCd7jF4E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663678887923068928\/eCd7jF4E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2881269044\/1446646408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:56 +0000 2015","id":663727980749852672,"id_str":"663727980749852672","text":"151107 \uba5c\ubba4\uc5b4 #\uc288\uac00 #\ubbfc\uc724\uae30 @BTS_twt \n\uc624\ub298\uc740 \uc9c0\uc9dc \ubcf4\uc815\ud560\ub77c\uad6c \uadf8\ub7ac\ub294\ub370.. \ubab8\uc774 \uc548 \uc870\uc544\uac00\uc9c0\uad6c\u3163\u3145\u3147..\n\uc6b0\uc120 \ud558\ub098 \ubbf8\ub9ac \uc62c\ub9b4\uac8c\uc694 \u314e-\u314e \n\uc9c4\uc9dc \ud45c\uc815 \ubd10 \u314b\u314b\u314b\u314b \uadc0\uc5fd \u3160\u3160 \ud63c\uc790 \uc778\uc0dd\ubb34\uc0c1.. https:\/\/t.co\/sWLi85zNGh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273109554,"id_str":"3273109554","name":"SUGA FLOW","screen_name":"sugaflow93","location":"\uc299\uae30\ub825","url":"http:\/\/sugaflow.com","description":"\ubc29\ud0c4\uc18c\ub144\ub2e8 \uc288\uac00 \ud32c\ud398\uc774\uc9c0 \uc288\uac00\ud50c\ub85c\uc6b0 @BTS_twt","protected":false,"verified":false,"followers_count":15220,"friends_count":25,"listed_count":472,"favourites_count":141,"statuses_count":705,"created_at":"Thu Jul 09 15:51:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630934127064133632\/6fH5VFJ5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630934127064133632\/6fH5VFJ5.jpg","profile_background_tile":false,"profile_link_color":"E6547D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661487879378497536\/Rsm9p28n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661487879378497536\/Rsm9p28n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273109554\/1446645576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":39,"favorite_count":27,"entities":{"hashtags":[{"text":"\uc288\uac00","indices":[11,14]},{"text":"\ubbfc\uc724\uae30","indices":[15,19]}],"urls":[],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[20,28]}],"symbols":[],"media":[{"id":663727979353083904,"id_str":"663727979353083904","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","url":"https:\/\/t.co\/sWLi85zNGh","display_url":"pic.twitter.com\/sWLi85zNGh","expanded_url":"http:\/\/twitter.com\/sugaflow93\/status\/663727980749852672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727979353083904,"id_str":"663727979353083904","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","url":"https:\/\/t.co\/sWLi85zNGh","display_url":"pic.twitter.com\/sWLi85zNGh","expanded_url":"http:\/\/twitter.com\/sugaflow93\/status\/663727980749852672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc288\uac00","indices":[27,30]},{"text":"\ubbfc\uc724\uae30","indices":[31,35]}],"urls":[],"user_mentions":[{"screen_name":"sugaflow93","name":"SUGA FLOW","id":3273109554,"id_str":"3273109554","indices":[3,14]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[36,44]}],"symbols":[],"media":[{"id":663727979353083904,"id_str":"663727979353083904","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","url":"https:\/\/t.co\/sWLi85zNGh","display_url":"pic.twitter.com\/sWLi85zNGh","expanded_url":"http:\/\/twitter.com\/sugaflow93\/status\/663727980749852672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727980749852672,"source_status_id_str":"663727980749852672","source_user_id":3273109554,"source_user_id_str":"3273109554"}]},"extended_entities":{"media":[{"id":663727979353083904,"id_str":"663727979353083904","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJFKTUEAAfF4I.jpg","url":"https:\/\/t.co\/sWLi85zNGh","display_url":"pic.twitter.com\/sWLi85zNGh","expanded_url":"http:\/\/twitter.com\/sugaflow93\/status\/663727980749852672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663727980749852672,"source_status_id_str":"663727980749852672","source_user_id":3273109554,"source_user_id_str":"3273109554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353278976,"id_str":"663728194353278976","text":"Happy dhanteras\ud83d\ude18\ud83d\ude18 https:\/\/t.co\/lNbwwbiiL3","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2864862860,"id_str":"2864862860","name":"Prerna","screen_name":"Prerna_Bachchan","location":"India","url":null,"description":"livelovelaugheattravel\u2708 life is given once bitch nt twice. People get some chill and a life. Lets make world better together","protected":false,"verified":false,"followers_count":199,"friends_count":135,"listed_count":0,"favourites_count":8611,"statuses_count":837,"created_at":"Sun Oct 19 12:05:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663600715349274624\/cEPL8Xnu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663600715349274624\/cEPL8Xnu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2864862860\/1446348352","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lNbwwbiiL3","expanded_url":"https:\/\/instagram.com\/p\/93igHZjmXdUm3Q4mqR57PS2SsDzDx3y0zTCt80\/","display_url":"instagram.com\/p\/93igHZjmXdUm\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336387072,"id_str":"663728194336387072","text":"#HAPPYLEODAY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662970423215153153,"in_reply_to_status_id_str":"662970423215153153","in_reply_to_user_id":2547989730,"in_reply_to_user_id_str":"2547989730","in_reply_to_screen_name":"COLD_NIGHT1110","user":{"id":2547989730,"id_str":"2547989730","name":"\ucc28\uac00\uc6b4 \ubc24\uc5d0","screen_name":"COLD_NIGHT1110","location":"\uc790\ub8cc\ub294 \uad00\uc2ec\uae00\uc5d0","url":"http:\/\/vixxleo.kro.kr","description":"\uc5b5\ub9cc \uacb9\uc758 \uc0ac\ub791\uc744 \ub2f4\uc544, \ud0dd\uc6b4\uc774\uc5d0\uac8c.","protected":false,"verified":false,"followers_count":3106,"friends_count":87,"listed_count":74,"favourites_count":745,"statuses_count":8857,"created_at":"Thu Jun 05 11:57:34 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502826826075361281\/pAfiEmge.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502826826075361281\/pAfiEmge.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663331509185609729\/d4OFBUUt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663331509185609729\/d4OFBUUt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547989730\/1446986276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[0,12]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194327965697,"id_str":"663728194327965697","text":"@haaaaaru722 \u81ea\u5206\u3001\u5165\u3063\u3068\u3063\u305f\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722281458204672,"in_reply_to_status_id_str":"663722281458204672","in_reply_to_user_id":2196711840,"in_reply_to_user_id_str":"2196711840","in_reply_to_screen_name":"haaaaaru722","user":{"id":454477913,"id_str":"454477913","name":"\u90a3\u9808 \u745e\u7a00","screen_name":"AAA_soft18miffy","location":"\u30a2\u30c8\u30d4\u30fc\u306e\u6642\u671f\u3002","url":null,"description":"\u65e5\u5357\u5b66\u5712\u30bd\u30d5\u30c8\u90e8#18\u2192\u7cbe\u83ef\u5973\u5b50\u77ed\u5927 \n\nAAA\/\u5b9d\u585a\/Flower\/\u95a2\u30b8\u30e3\u30cb\u221e \u3000Sonlyone","protected":false,"verified":false,"followers_count":1277,"friends_count":900,"listed_count":1,"favourites_count":25716,"statuses_count":26275,"created_at":"Wed Jan 04 01:36:25 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658269311090360320\/SsoS8mFM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658269311090360320\/SsoS8mFM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454477913\/1441806088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haaaaaru722","name":"\u5927\u7530\u6674\u82b1","id":2196711840,"id_str":"2196711840","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357301249,"id_str":"663728194357301249","text":"@kanata_lol j-com\u4ee5\u4e0b\u306e\u5149\u3068\u304b\u5149\u3058\u3083\u306d\u3048\u308f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727914928574464,"in_reply_to_status_id_str":"663727914928574464","in_reply_to_user_id":759056335,"in_reply_to_user_id_str":"759056335","in_reply_to_screen_name":"kanata_lol","user":{"id":2518385432,"id_str":"2518385432","name":"\u3086\u3044\u3086\u3044@\u30d7\u30ea\u30e4\u5927\u597d\u304d","screen_name":"yukina0147","location":null,"url":null,"description":"\u30a4\u30ea\u30e4\u5927\u597d\u304d \u30d7\u30ea\u30e4\u5927\u597d\u304d\u3067\u3059\u3002 AVA\/\u8266\u3053\u308c\/\u30a8\u30eb\u30bd\/OSU AVA\u540d:Shalltear","protected":false,"verified":false,"followers_count":266,"friends_count":323,"listed_count":2,"favourites_count":453,"statuses_count":7568,"created_at":"Fri May 23 18:03:42 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBC1E1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516604222515589120\/8LygTrCQ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516604222515589120\/8LygTrCQ.png","profile_background_tile":true,"profile_link_color":"B30098","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647241514293202944\/v5z-fgM6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647241514293202944\/v5z-fgM6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2518385432\/1438550898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kanata_lol","name":"\u3042\u3081\u304d\u3083(\u0e51\u0301\u2022\u2200\u2022\u0e51\u0300)\u3093","id":759056335,"id_str":"759056335","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107665"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353172481,"id_str":"663728194353172481","text":"@alfadwa_raka kangen sma rizi miss miss rizi","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728083761917952,"in_reply_to_status_id_str":"663728083761917952","in_reply_to_user_id":3946220352,"in_reply_to_user_id_str":"3946220352","in_reply_to_screen_name":"cynthiadewirus1","user":{"id":3946220352,"id_str":"3946220352","name":"Rizi Dhirga Ray Wawa","screen_name":"cynthiadewirus1","location":"Reinvite My Pin 29FF4E25","url":null,"description":"Ray , Dhirga , Rizi , Petra , Revo , Joshua , Wawa , Devita","protected":false,"verified":false,"followers_count":27,"friends_count":147,"listed_count":0,"favourites_count":0,"statuses_count":610,"created_at":"Mon Oct 19 11:09:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662875959637360640\/b4emkaCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662875959637360640\/b4emkaCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3946220352\/1446898383","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alfadwa_raka","name":"rakaalfadwa","id":3782101105,"id_str":"3782101105","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194323931136,"id_str":"663728194323931136","text":"RT @datpmf_jehovany: Monday, the perfect day to set the tone for a positive start for the rest of the week!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517865589,"id_str":"517865589","name":"Dani","screen_name":"standd_back","location":null,"url":null,"description":"Strawberita dreams #VSU","protected":false,"verified":false,"followers_count":491,"friends_count":388,"listed_count":1,"favourites_count":1963,"statuses_count":18662,"created_at":"Wed Mar 07 19:21:24 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660231774\/87jzlm2qdeg1kx2yjf32.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660231774\/87jzlm2qdeg1kx2yjf32.jpeg","profile_background_tile":true,"profile_link_color":"C8CF00","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644944615750139904\/6HZ85FRx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644944615750139904\/6HZ85FRx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517865589\/1445354385","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:29:49 +0000 2015","id":663710082161623040,"id_str":"663710082161623040","text":"Monday, the perfect day to set the tone for a positive start for the rest of the week!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":326402012,"id_str":"326402012","name":"Walter","screen_name":"datpmf_jehovany","location":null,"url":null,"description":"Entrepreneur in-the-making. Alexandra Sabogal \u2764\ufe0f Destined for greatness","protected":false,"verified":false,"followers_count":1754,"friends_count":1301,"listed_count":10,"favourites_count":12269,"statuses_count":51367,"created_at":"Wed Jun 29 21:22:36 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572627364\/5vchg0b0jdykfan82ilb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572627364\/5vchg0b0jdykfan82ilb.jpeg","profile_background_tile":true,"profile_link_color":"ACB1B3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658751391113039873\/gxAtWPt__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658751391113039873\/gxAtWPt__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/326402012\/1443582528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"datpmf_jehovany","name":"Walter","id":326402012,"id_str":"326402012","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107657"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344894464,"id_str":"663728194344894464","text":"RT @FarjatMarian: Las viejas chusmas de mi country son lo mas, todo el dia chusmeando como unas cotorras. Lo q es estar alpedo..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3439299897,"id_str":"3439299897","name":"\u2665Paula\u2665","screen_name":"flowerpaulaok","location":"Argentina","url":null,"description":"Feliz de la vida que me toc\u00f3.. Me sigue Eloy Lanzelotta 2\/11. Un MG de Brian el 6\/11\u2764","protected":false,"verified":false,"followers_count":177,"friends_count":178,"listed_count":0,"favourites_count":3256,"statuses_count":12805,"created_at":"Tue Aug 25 16:40:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663561781965684738\/V0L3u1jO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663561781965684738\/V0L3u1jO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3439299897\/1446136166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 03 20:00:07 +0000 2013","id":374985176121901056,"id_str":"374985176121901056","text":"Las viejas chusmas de mi country son lo mas, todo el dia chusmeando como unas cotorras. Lo q es estar alpedo..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":302170735,"id_str":"302170735","name":"Marian Garcia Farja\u2020","screen_name":"FarjatMarian","location":null,"url":null,"description":"I'm gonna live like tomorrow doesn't exist. I am fucking crazy, but i am free! Levantate y brilla, perrita. Manager: Christian Manzanelli 01147404843","protected":false,"verified":false,"followers_count":120041,"friends_count":578,"listed_count":56,"favourites_count":1320,"statuses_count":10991,"created_at":"Fri May 20 18:34:40 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/782418850\/828785ca521af7494a42ada47646e3be.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/782418850\/828785ca521af7494a42ada47646e3be.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657995615981469696\/Vchh0HYk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657995615981469696\/Vchh0HYk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/302170735\/1445713453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":34,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FarjatMarian","name":"Marian Garcia Farja\u2020","id":302170735,"id_str":"302170735","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194361630721,"id_str":"663728194361630721","text":"RT @ttwitandu: Especiais s\u00e3o as pessoas que te fazem sorrir nos piores momentos.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1065851030,"id_str":"1065851030","name":"\u26a1The Shit In Person\u26a1","screen_name":"NinStyl","location":"Excelent\u00edssimo Senhor Caralho","url":null,"description":"\u2022She's all broken inside, but no one will never notice\u2022\/\/Justin Bieber's follow since 22\/07 15:07","protected":false,"verified":false,"followers_count":628,"friends_count":249,"listed_count":4,"favourites_count":8841,"statuses_count":23877,"created_at":"Sun Jan 06 14:29:34 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652319898312527872\/WFkDvoBp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652319898312527872\/WFkDvoBp.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662474883788599296\/iImJraZ4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662474883788599296\/iImJraZ4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1065851030\/1446781408","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:00 +0000 2015","id":663726990449577985,"id_str":"663726990449577985","text":"Especiais s\u00e3o as pessoas que te fazem sorrir nos piores momentos.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296426412,"id_str":"296426412","name":"MICKEY \u30c4","screen_name":"ttwitandu","location":"\u221e Deus sabe o que faz \u2665 \u221e","url":null,"description":"Contato para publicidade: ttwitandu1@outlook.com","protected":false,"verified":false,"followers_count":600659,"friends_count":224594,"listed_count":177,"favourites_count":45968,"statuses_count":103301,"created_at":"Tue May 10 18:54:01 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164865327\/IdhGKD-u.jpeg","profile_background_tile":true,"profile_link_color":"0F0F0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552512572386050048\/anz0uDV1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296426412\/1405809646","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":30,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ttwitandu","name":"MICKEY \u30c4","id":296426412,"id_str":"296426412","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080107666"} +{"delete":{"status":{"id":663431527041277952,"id_str":"663431527041277952","user_id":602182827,"user_id_str":"602182827"},"timestamp_ms":"1447080107888"}} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194340556801,"id_str":"663728194340556801","text":"@waveyariana","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727658367238144,"in_reply_to_status_id_str":"663727658367238144","in_reply_to_user_id":2598845368,"in_reply_to_user_id_str":"2598845368","in_reply_to_screen_name":"waveyariana","user":{"id":1538678460,"id_str":"1538678460","name":".","screen_name":"sugasmain","location":"#exhoesquad\u2122","url":"https:\/\/twitter.com\/sugasmain\/status\/632035397988679681","description":"gotta taehyung","protected":false,"verified":false,"followers_count":4572,"friends_count":114,"listed_count":40,"favourites_count":10168,"statuses_count":61094,"created_at":"Sat Jun 22 13:11:57 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554142415162839040\/2z6qhRIk.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554142415162839040\/2z6qhRIk.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662599688219152384\/AHEikVqc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662599688219152384\/AHEikVqc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1538678460\/1446811050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"waveyariana","name":"-","id":2598845368,"id_str":"2598845368","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080107661"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194336501760,"id_str":"663728194336501760","text":"@DisneyChannel MY FAVORITE DESCENDANTS @DoveCameron @TheCameronBoyce @SofiaCarson https:\/\/t.co\/da6B4NZ1zw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1909344061,"in_reply_to_user_id_str":"1909344061","in_reply_to_screen_name":"DisneyChannel","user":{"id":3501896895,"id_str":"3501896895","name":"Maria Rivero","screen_name":"Maria_belandia","location":"Cabudare, Lara","url":null,"description":"Artista Urbano","protected":false,"verified":false,"followers_count":674,"friends_count":2936,"listed_count":4,"favourites_count":9714,"statuses_count":4383,"created_at":"Mon Aug 31 12:59:53 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661525805193916416\/tfbXDg8h.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661525805193916416\/tfbXDg8h.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663426888493305856\/1hvaNKnb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663426888493305856\/1hvaNKnb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3501896895\/1444598498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662766423635320832,"quoted_status_id_str":"662766423635320832","quoted_status":{"created_at":"Fri Nov 06 23:00:03 +0000 2015","id":662766423635320832,"id_str":"662766423635320832","text":"See what it\u2019s like in Jordan\u2019s lamp on a new #DisneyDescendants #WickedWorld tonight after #BUNKD! https:\/\/t.co\/RwFmo1VoBM","source":"\u003ca href=\"http:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1909344061,"id_str":"1909344061","name":"Disney Channel","screen_name":"DisneyChannel","location":"United States","url":"http:\/\/www.disneychannel.com","description":"The official Disney Channel Twitter account for the US!","protected":false,"verified":true,"followers_count":430000,"friends_count":151,"listed_count":381,"favourites_count":393,"statuses_count":3931,"created_at":"Thu Sep 26 21:49:14 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469885819579138049\/lYXmGLOF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469885819579138049\/lYXmGLOF.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628639374909898752\/C8CIMDp3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628639374909898752\/C8CIMDp3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1909344061\/1446504314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DisneyDescendants","indices":[45,63]},{"text":"WickedWorld","indices":[64,76]},{"text":"BUNKD","indices":[91,97]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662766422897139712,"id_str":"662766422897139712","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKejNXXIAA-Sk9.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKejNXXIAA-Sk9.png","url":"https:\/\/t.co\/RwFmo1VoBM","display_url":"pic.twitter.com\/RwFmo1VoBM","expanded_url":"http:\/\/twitter.com\/DisneyChannel\/status\/662766423635320832\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":284,"resize":"fit"},"large":{"w":1024,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":161,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662766422897139712,"id_str":"662766422897139712","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKejNXXIAA-Sk9.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKejNXXIAA-Sk9.png","url":"https:\/\/t.co\/RwFmo1VoBM","display_url":"pic.twitter.com\/RwFmo1VoBM","expanded_url":"http:\/\/twitter.com\/DisneyChannel\/status\/662766423635320832\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":284,"resize":"fit"},"large":{"w":1024,"h":485,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":161,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/da6B4NZ1zw","expanded_url":"https:\/\/twitter.com\/DisneyChannel\/status\/662766423635320832","display_url":"twitter.com\/DisneyChannel\/\u2026","indices":[83,106]}],"user_mentions":[{"screen_name":"DisneyChannel","name":"Disney Channel","id":1909344061,"id_str":"1909344061","indices":[0,14]},{"screen_name":"DoveCameron","name":"Dove Cameron","id":317114365,"id_str":"317114365","indices":[39,51]},{"screen_name":"TheCameronBoyce","name":"Cameron Boyce","id":327019649,"id_str":"327019649","indices":[52,68]},{"screen_name":"SofiaCarson","name":"Sofia Carson","id":372123733,"id_str":"372123733","indices":[69,81]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080107660"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194357325824,"id_str":"663728194357325824","text":"@kh4sv https:\/\/t.co\/8df5DKLwdI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663323095504060416,"in_reply_to_status_id_str":"663323095504060416","in_reply_to_user_id":3306721321,"in_reply_to_user_id_str":"3306721321","in_reply_to_screen_name":"kh4sv","user":{"id":3219204830,"id_str":"3219204830","name":"\u306a\u306a@\u306a\u306a\u306a","screen_name":"nananinunenoo","location":"\u3075\u3043\u308b\u306e\u30fc\u3068 XYZ\u4eac\u90fd","url":"http:\/\/xtw.me\/XUk18KN","description":"\u3042\u3044\u3053\u3093\u306f\u3082\u3082\u304b\u3093\u3061\u3083\u3093","protected":false,"verified":false,"followers_count":288,"friends_count":314,"listed_count":19,"favourites_count":2896,"statuses_count":25027,"created_at":"Mon May 18 09:49:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661011862151020544\/SuCVoDUl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661011862151020544\/SuCVoDUl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3219204830\/1445553018","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kh4sv","name":"\u3089\u3059\u304f\u306fCOF\u798f\u5ca1","id":3306721321,"id_str":"3306721321","indices":[0,6]}],"symbols":[],"media":[{"id":663728180566470656,"id_str":"663728180566470656","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ34UsAAlXKa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ34UsAAlXKa.jpg","url":"https:\/\/t.co\/8df5DKLwdI","display_url":"pic.twitter.com\/8df5DKLwdI","expanded_url":"http:\/\/twitter.com\/nananinunenoo\/status\/663728194357325824\/photo\/1","type":"photo","sizes":{"large":{"w":768,"h":768,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728180566470656,"id_str":"663728180566470656","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ34UsAAlXKa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ34UsAAlXKa.jpg","url":"https:\/\/t.co\/8df5DKLwdI","display_url":"pic.twitter.com\/8df5DKLwdI","expanded_url":"http:\/\/twitter.com\/nananinunenoo\/status\/663728194357325824\/photo\/1","type":"photo","sizes":{"large":{"w":768,"h":768,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080107665"} +{"delete":{"status":{"id":663716643214893058,"id_str":"663716643214893058","user_id":2606181961,"user_id_str":"2606181961"},"timestamp_ms":"1447080107991"}} +{"delete":{"status":{"id":659018284545667073,"id_str":"659018284545667073","user_id":3104402749,"user_id_str":"3104402749"},"timestamp_ms":"1447080107980"}} +{"delete":{"status":{"id":661359935125635073,"id_str":"661359935125635073","user_id":2565690725,"user_id_str":"2565690725"},"timestamp_ms":"1447080108051"}} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194353172480,"id_str":"663728194353172480","text":"@Moeno1995 \u307e\u3041\u5b9f\u969b\u306b\u3082\u3048\u306e\u3061\u3083\u3093\u62b1\u3051\u3066\u305f\u3089\u3055\u3044\u3053\u30fc\u3060\u3088\u306d\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728077034262529,"in_reply_to_status_id_str":"663728077034262529","in_reply_to_user_id":3238346520,"in_reply_to_user_id_str":"3238346520","in_reply_to_screen_name":"Moeno1995","user":{"id":1359890994,"id_str":"1359890994","name":"\u3068\u3046\u305b\u3044","screen_name":"Quelqu_un_maime","location":"\u6771\u4eac","url":null,"description":"\u306d\u3054\u3068\u3001\u30b7\u30e3\u30f3\u30da\u3001\u30af\u30ea\u30fc\u30d7\u3001\u3055\u3081\u3056\u3081\u306a\u3069\u306a\u3069\u306a\u3069\u3002","protected":false,"verified":false,"followers_count":510,"friends_count":1550,"listed_count":1,"favourites_count":52,"statuses_count":5979,"created_at":"Wed Apr 17 17:09:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3554534261\/6be7674210c1e6512107967eb2f72e0e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3554534261\/6be7674210c1e6512107967eb2f72e0e_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Moeno1995","name":"\u3082\u3048\u306e@\u3046\u3089\u3042\u304b","id":3238346520,"id_str":"3238346520","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107664"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194348957697,"id_str":"663728194348957697","text":"RT @lcy05250420: \uc0ac\ub294 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774 \uc544\ub2c8\ub77c \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774\ub2c8 \ub2e4\uc2dc #SHINee \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69 \ub098\ub77c\ub85c \ub3cc\uc544\uac00\ub77c\uace0 \ud574\uc11c #view \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc740 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774 \ub418\uc9c0 \ubabb\ud558\uace0 #\uc0e4\uc774\ub2c8 \ub2e4\uc2dc \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\ub098\ub77c\ub85c \ub3cc\uc544\uac00 \uc548 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2737672069,"id_str":"2737672069","name":"\ubc18\uc7a0 \ube14\ub9c1\uc2a4","screen_name":"rainyblue_1214","location":null,"url":"http:\/\/blog.naver.com\/apple_1214","description":"\ub9de\ud314\uc744 \uc6d0\ud558\uc2e4\ub550 \uba58\uc158, \ub5a0\ub098\uac00\uc2e4\ub550 \ube14\uc5b8\ube14\ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4:)\n \/ I'm trying dying crying for you, \ud654\uc0b4(Quasimodo)\/ \uc7a1\ub2f4\uacfc \ub355\uc9c8\uc774 \uacf5\uc874\ud558\ub294 \uacf3","protected":false,"verified":false,"followers_count":154,"friends_count":273,"listed_count":1,"favourites_count":4232,"statuses_count":10875,"created_at":"Sat Aug 16 17:00:42 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663345137020334081\/8BMQxdvM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663345137020334081\/8BMQxdvM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737672069\/1446916518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:06 +0000 2015","id":663720219005706240,"id_str":"663720219005706240","text":"\uc0ac\ub294 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774 \uc544\ub2c8\ub77c \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774\ub2c8 \ub2e4\uc2dc #SHINee \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69 \ub098\ub77c\ub85c \ub3cc\uc544\uac00\ub77c\uace0 \ud574\uc11c #view \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc740 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc774 \ub418\uc9c0 \ubabb\ud558\uace0 #\uc0e4\uc774\ub2c8 \ub2e4\uc2dc \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\ub098\ub77c\ub85c \ub3cc\uc544\uac00 \uc548 \ucd09\ucd09\ud55c \ucd08\ucf54\uce69\uc73c\ub85c \uc0b4\uc558\uc5b4\uc694","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2647799845,"id_str":"2647799845","name":"\ud788\uc5d4","screen_name":"lcy05250420","location":"\uadf8\ucde8&\uc0ac\ub2f4\uacc4 @los04201","url":null,"description":"\uc628\ub9ac \uc0e4\uc774\ub2c8 \ud32c","protected":false,"verified":false,"followers_count":168,"friends_count":336,"listed_count":1,"favourites_count":443,"statuses_count":13511,"created_at":"Tue Jul 15 13:55:50 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663337070270611456\/UKIGYj6u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663337070270611456\/UKIGYj6u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647799845\/1445611963","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":0,"entities":{"hashtags":[{"text":"SHINee","indices":[31,38]},{"text":"view","indices":[62,67]},{"text":"\uc0e4\uc774\ub2c8","indices":[95,99]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SHINee","indices":[48,55]},{"text":"view","indices":[79,84]},{"text":"\uc0e4\uc774\ub2c8","indices":[112,116]}],"urls":[],"user_mentions":[{"screen_name":"lcy05250420","name":"\ud788\uc5d4","id":2647799845,"id_str":"2647799845","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080107663"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194361667584,"id_str":"663728194361667584","text":"Cuando s\u00f3lo queda 4 d\u00edas\n\n#4DaysUntilMITAM https:\/\/t.co\/HJMcgKva8Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":191057320,"id_str":"191057320","name":"MITAM","screen_name":"analvber","location":"Sevilla ","url":null,"description":"Snap \u2192 analvber\n2 favs(AntonLofer)1 fav(dddiegggo)1 respuesta(OMGlobalNews)1 fav(Zane)\u2764","protected":false,"verified":false,"followers_count":383,"friends_count":513,"listed_count":3,"favourites_count":1180,"statuses_count":8738,"created_at":"Wed Sep 15 14:20:05 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"662E0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/481175112096301056\/JXPRhddj.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/481175112096301056\/JXPRhddj.jpeg","profile_background_tile":true,"profile_link_color":"C78585","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662922462892527616\/5W8qAhFz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662922462892527616\/5W8qAhFz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/191057320\/1438128806","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[26,42]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728191601827844,"id_str":"663728191601827844","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJRg_W4AQfVCy.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJRg_W4AQfVCy.png","url":"https:\/\/t.co\/HJMcgKva8Z","display_url":"pic.twitter.com\/HJMcgKva8Z","expanded_url":"http:\/\/twitter.com\/analvber\/status\/663728194361667584\/photo\/1","type":"photo","sizes":{"small":{"w":200,"h":80,"resize":"fit"},"thumb":{"w":150,"h":80,"resize":"crop"},"large":{"w":200,"h":80,"resize":"fit"},"medium":{"w":200,"h":80,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728191601827844,"id_str":"663728191601827844","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJRg_W4AQfVCy.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJRg_W4AQfVCy.png","url":"https:\/\/t.co\/HJMcgKva8Z","display_url":"pic.twitter.com\/HJMcgKva8Z","expanded_url":"http:\/\/twitter.com\/analvber\/status\/663728194361667584\/photo\/1","type":"animated_gif","sizes":{"small":{"w":200,"h":80,"resize":"fit"},"thumb":{"w":150,"h":80,"resize":"crop"},"large":{"w":200,"h":80,"resize":"fit"},"medium":{"w":200,"h":80,"resize":"fit"}},"video_info":{"aspect_ratio":[5,2],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJRg_W4AQfVCy.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080107666"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194328117248,"id_str":"663728194328117248","text":"RT @TheIsildursBane: Cuando opin\u00e1is sobre algo y luego la cuenta esta del Cu\u00f1ado pone lo mismo a lo mejor deber\u00edais empezar a replantearos \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":475016933,"id_str":"475016933","name":"\u2728blau \u2728","screen_name":"bluepainter_","location":"Gotham City - Hinamizawa","url":null,"description":"Ca\u00f3tica neutral. Guarda Gris fereldana e inquisidora, drow, sith, Targaryen, puella magi, Endless Witch, adepta de mercurio y miembro de la SOS Brigade.","protected":false,"verified":false,"followers_count":989,"friends_count":421,"listed_count":27,"favourites_count":87489,"statuses_count":63194,"created_at":"Thu Jan 26 16:02:30 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/558004143449600000\/0sdY0wuR.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/558004143449600000\/0sdY0wuR.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"554D42","profile_text_color":"918579","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614593146945716226\/UBzlGKyz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614593146945716226\/UBzlGKyz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475016933\/1446557053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:13 +0000 2015","id":663725784167747584,"id_str":"663725784167747584","text":"Cuando opin\u00e1is sobre algo y luego la cuenta esta del Cu\u00f1ado pone lo mismo a lo mejor deber\u00edais empezar a replantearos cosicas","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2981398289,"id_str":"2981398289","name":"Gaurwaith","screen_name":"TheIsildursBane","location":"Angmar\/C\u00f3rdoba\/Murcia ","url":null,"description":"Do you not know death when you see it, old man? This is\u00a0my\u00a0hour! You have failed. The world of men will fall","protected":false,"verified":false,"followers_count":137,"friends_count":344,"listed_count":10,"favourites_count":4161,"statuses_count":22888,"created_at":"Fri Jan 16 16:52:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557586482135707648\/tkXfPNhI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557586482135707648\/tkXfPNhI.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663401387007561728\/jnkJHYhS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663401387007561728\/jnkJHYhS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2981398289\/1430473329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheIsildursBane","name":"Gaurwaith","id":2981398289,"id_str":"2981398289","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080107658"} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194348957698,"id_str":"663728194348957698","text":"\u6226\u6144\u3055\u305b\u305f https:\/\/t.co\/hCZFICXDfL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":773404842,"id_str":"773404842","name":"\u3086\u306b@\u6c34\u8272\u9ce5","screen_name":"yn_wx","location":null,"url":null,"description":"WIXOSS\/\u5996\u7cbe\u5e1d\u570b\/\u30c7\u30f3\u30ab\u30ec\/\u30a2\u30ea\u30d7\u30ed\/SA\/REFLEC BEAT\/maimai\/jubeat\/KF1.2\/L4D2\/ipad\/7days\/\u30af\u30ed\u30b9\u30d0\u30a4\u30af\/\u30d7\u30ea\u30d1\u30e9 CW\u8a98\u3063\u3066\u304f\u3060\u3055\u3044\u3002\u97f3\u30b2\u30fc\u30ed\u30fc\u30ab\u30eb\u3057\u307e\u3057\u3087\u3046\u3001\u30a6\u30a3\u30af\u30ed\u30b9\u30d5\u30ea\u30fc\u3057\u307e\u3057\u3087\u3046\u3002\u30d4\u30eb\u30eb\u30af\u2022\u30df\u30eb\u30eb\u30f3skype\u6709 \u30d3\u30a2\u30f3\u30ad\u4e57\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":711,"friends_count":727,"listed_count":16,"favourites_count":10433,"statuses_count":59332,"created_at":"Wed Aug 22 10:56:34 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644131848\/86r4j3vkpab0vmwyao06.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644131848\/86r4j3vkpab0vmwyao06.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660249167776735232\/WaxruvcL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660249167776735232\/WaxruvcL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/773404842\/1443013698","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728183636692993,"id_str":"663728183636692993","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRDUUkAEeImK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRDUUkAEeImK.jpg","url":"https:\/\/t.co\/hCZFICXDfL","display_url":"pic.twitter.com\/hCZFICXDfL","expanded_url":"http:\/\/twitter.com\/yn_wx\/status\/663728194348957698\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728183636692993,"id_str":"663728183636692993","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRDUUkAEeImK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRDUUkAEeImK.jpg","url":"https:\/\/t.co\/hCZFICXDfL","display_url":"pic.twitter.com\/hCZFICXDfL","expanded_url":"http:\/\/twitter.com\/yn_wx\/status\/663728194348957698\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728183636701184,"id_str":"663728183636701184","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRDUUsAA7uMu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRDUUsAA7uMu.jpg","url":"https:\/\/t.co\/hCZFICXDfL","display_url":"pic.twitter.com\/hCZFICXDfL","expanded_url":"http:\/\/twitter.com\/yn_wx\/status\/663728194348957698\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":769,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":436,"resize":"fit"},"large":{"w":798,"h":1024,"resize":"fit"}}},{"id":663728183838052352,"id_str":"663728183838052352","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJREEVEAA0e19.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJREEVEAA0e19.jpg","url":"https:\/\/t.co\/hCZFICXDfL","display_url":"pic.twitter.com\/hCZFICXDfL","expanded_url":"http:\/\/twitter.com\/yn_wx\/status\/663728194348957698\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":744,"resize":"fit"},"small":{"w":340,"h":395,"resize":"fit"},"medium":{"w":600,"h":697,"resize":"fit"}}},{"id":663728183917703169,"id_str":"663728183917703169","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJREXUcAEpOAD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJREXUcAEpOAD.jpg","url":"https:\/\/t.co\/hCZFICXDfL","display_url":"pic.twitter.com\/hCZFICXDfL","expanded_url":"http:\/\/twitter.com\/yn_wx\/status\/663728194348957698\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":348,"h":194,"resize":"fit"},"medium":{"w":348,"h":194,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107663"} +{"delete":{"status":{"id":449508785821057024,"id_str":"449508785821057024","user_id":531421795,"user_id_str":"531421795"},"timestamp_ms":"1447080108164"}} +{"created_at":"Mon Nov 09 14:41:47 +0000 2015","id":663728194344783872,"id_str":"663728194344783872","text":"\u305d\u308c\u3067\u3082\u73fe\u53e4\u6f22\u30676\u5272\u3001\u6570\u5b665\u5272\u5f31\u3044\u3063\u305f\u3053\u3068\u306f\u81ea\u8ca0\u3057\u305f\u3044","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2346680737,"id_str":"2346680737","name":"\u3066\u3044\u304fP","screen_name":"takee622","location":"\u81ea\u79f0\u9032\u5b66\u6821\u306e\u53d7\u9a13\u751f","url":null,"description":"Wi-fi\u304c\u539f\u52d5\u529b\u3002\u5343\u8449\u770c\u652f\u90e8\u3001\u9577\u91ce\u770c\u652f\u90e8\u6240\u5c5e\u300210th\u5f8c\u306f\u6d6e\u4e0a\u7387\u4e0b\u304c\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":2534,"friends_count":2531,"listed_count":43,"favourites_count":3435,"statuses_count":15990,"created_at":"Sun Feb 16 11:04:35 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446716419019771904\/Yt5K0cdi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446716419019771904\/Yt5K0cdi.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/567706446549102594\/LntKymaG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/567706446549102594\/LntKymaG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2346680737\/1392554240","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080107662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522437633,"id_str":"663728198522437633","text":"RT @AyeRamirezz00: Mi inicio es \ud83d\ude26TODO \"Lau Suarez y Martu Fiore\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4027942155,"id_str":"4027942155","name":"Pibes fachas","screen_name":"Pibesfachas4","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":45,"friends_count":5,"listed_count":1,"favourites_count":5,"statuses_count":1361,"created_at":"Sat Oct 24 00:50:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:41 +0000 2015","id":663728170110185472,"id_str":"663728170110185472","text":"Mi inicio es \ud83d\ude26TODO \"Lau Suarez y Martu Fiore\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975238542,"id_str":"2975238542","name":"Ramirezz \u10e6 \u32e1","screen_name":"AyeRamirezz00","location":"Reconquista","url":"https:\/\/www.facebook.com\/","description":"Querer decir tanto y saber que es mejor no decir nada..","protected":false,"verified":false,"followers_count":559,"friends_count":763,"listed_count":0,"favourites_count":1264,"statuses_count":4273,"created_at":"Sun Jan 11 19:36:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652545094659215360\/TFWW9_xL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652545094659215360\/TFWW9_xL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975238542\/1446159243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":49,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AyeRamirezz00","name":"Ramirezz \u10e6 \u32e1","id":2975238542,"id_str":"2975238542","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539157504,"id_str":"663728198539157504","text":"RT @loira_malfoy: sdds minha sala do ano passado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":264902060,"id_str":"264902060","name":"Djow","screen_name":"jaaads","location":"bruxque ","url":null,"description":"Amo a mor \u2764\ufe0f \/ 07\/06 \u2764\ufe0f","protected":false,"verified":false,"followers_count":1783,"friends_count":756,"listed_count":1,"favourites_count":14575,"statuses_count":39182,"created_at":"Sat Mar 12 17:02:34 +0000 2011","utc_offset":16200,"time_zone":"Kabul","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FB3B7E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607014579760201728\/d8Mr6jt5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607014579760201728\/d8Mr6jt5.jpg","profile_background_tile":true,"profile_link_color":"0BA5F9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"111111","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639720573362176\/LAk4b6Cx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639720573362176\/LAk4b6Cx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/264902060\/1446673498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653476769793,"id_str":"663727653476769793","text":"sdds minha sala do ano passado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211546709,"id_str":"211546709","name":"Heloisa","screen_name":"loira_malfoy","location":"Brusque, Santa Catarina","url":"https:\/\/www.instagram.com\/heelomelo","description":"The world is beating you down.","protected":false,"verified":false,"followers_count":1506,"friends_count":674,"listed_count":0,"favourites_count":9004,"statuses_count":37163,"created_at":"Wed Nov 03 15:27:43 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0506","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510823563910053888\/--2f9arr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510823563910053888\/--2f9arr.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662283654324973568\/hB7a-t7j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662283654324973568\/hB7a-t7j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211546709\/1441426891","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"loira_malfoy","name":"Heloisa","id":211546709,"id_str":"211546709","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522437632,"id_str":"663728198522437632","text":"1h30 de trou, du coup on a bu en ville avec toutes les filles de la classe, tranquille","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805845301,"id_str":"2805845301","name":"13d\u00e9c2011","screen_name":"florine_hll","location":null,"url":null,"description":"Anthony\u202221|o1\u2022 Iv and Paw \u2022 tatou\u00e9e \u2022 IFSI","protected":false,"verified":false,"followers_count":122,"friends_count":73,"listed_count":0,"favourites_count":3625,"statuses_count":5088,"created_at":"Sat Oct 04 17:28:28 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661611691671703552\/C0o4sL-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661611691671703552\/C0o4sL-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805845301\/1445076732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198543351809,"id_str":"663728198543351809","text":"RT @jackgilinsky: here you go I tried my best \u2764\ufe0f https:\/\/t.co\/HZfXEiPUkJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":548574146,"id_str":"548574146","name":"tat\u00e1 loves lou","screen_name":"beerluxinho","location":"pietro\u2022mia\u2022vini","url":"https:\/\/twitter.com\/MadisonElleBeer\/status\/607667493587578880","description":"I'll catch you if you fall @moonliightbeer #IMADGINERSQUAD","protected":false,"verified":false,"followers_count":17998,"friends_count":16595,"listed_count":26,"favourites_count":5449,"statuses_count":118071,"created_at":"Sun Apr 08 17:15:04 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659078085921382400\/fygonIIG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659078085921382400\/fygonIIG.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663677070950666240\/F9Qoi3Qk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663677070950666240\/F9Qoi3Qk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/548574146\/1447068097","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:54:06 +0000 2015","id":663535001280073729,"id_str":"663535001280073729","text":"here you go I tried my best \u2764\ufe0f https:\/\/t.co\/HZfXEiPUkJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":278328390,"id_str":"278328390","name":"Jack Gilinsky","screen_name":"jackgilinsky","location":null,"url":"http:\/\/apple.co\/Calibraska","description":"1\/2 of @JackAndJackReal. Click the link below to hear our new EP! Stay true.","protected":false,"verified":true,"followers_count":2703474,"friends_count":13355,"listed_count":9508,"favourites_count":9349,"statuses_count":5647,"created_at":"Thu Apr 07 02:12:22 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629463882185093120\/NwBYdCcc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629463882185093120\/NwBYdCcc_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663534173962027008,"quoted_status_id_str":"663534173962027008","quoted_status":{"created_at":"Mon Nov 09 01:50:49 +0000 2015","id":663534173962027008,"id_str":"663534173962027008","text":"I can't change the world but i can change my life with a Jack Gilinsky 's follow \ud83d\udc9b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699202103,"id_str":"2699202103","name":"THANKS JACKG\u2764","screen_name":"MiriamftHoranE3","location":"THANKs JADE and CHER","url":null,"description":"1D 0\/5 |5SOS 0\/4 | LM | JB | AM | E3 E3acc+Wes\/4 | MAGCON 4\/12 |BTR 0\/4| twins Dolan 1\/2 | janoskians 2\/5|5H Mani1\/5 |+ETC\u00ac\u00ac iGGY FAV x13\/5H Fav1","protected":false,"verified":false,"followers_count":7907,"friends_count":5828,"listed_count":11,"favourites_count":5718,"statuses_count":44212,"created_at":"Fri Aug 01 21:01:14 +0000 2014","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574347135014993920\/1ZFkAOLo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574347135014993920\/1ZFkAOLo.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663347095802368001\/8yYICOkZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663347095802368001\/8yYICOkZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2699202103\/1445299568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1016,"favorite_count":3910,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HZfXEiPUkJ","expanded_url":"https:\/\/twitter.com\/miriamfthorane3\/status\/663534173962027008","display_url":"twitter.com\/miriamfthorane\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HZfXEiPUkJ","expanded_url":"https:\/\/twitter.com\/miriamfthorane3\/status\/663534173962027008","display_url":"twitter.com\/miriamfthorane\u2026","indices":[49,72]}],"user_mentions":[{"screen_name":"jackgilinsky","name":"Jack Gilinsky","id":278328390,"id_str":"278328390","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108663"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522421249,"id_str":"663728198522421249","text":"@StephDreamsBlog you can jump in my case!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663624130735026176,"in_reply_to_status_id_str":"663624130735026176","in_reply_to_user_id":20096781,"in_reply_to_user_id_str":"20096781","in_reply_to_screen_name":"StephDreamsBlog","user":{"id":582681621,"id_str":"582681621","name":"Amy","screen_name":"paintpotted","location":"Northumberland","url":"http:\/\/www.paintpotted.co.uk","description":"Disney dreamer, makeup lover. Contact me at amy@paintpotted.co.uk","protected":false,"verified":false,"followers_count":1228,"friends_count":312,"listed_count":27,"favourites_count":1483,"statuses_count":12946,"created_at":"Thu May 17 09:13:53 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DAB3B2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458681815746609152\/kzoZgkrO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458681815746609152\/kzoZgkrO.png","profile_background_tile":true,"profile_link_color":"DAB3B2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F5C5A1","profile_text_color":"F7947F","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651142570563629061\/lf1-sI4O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651142570563629061\/lf1-sI4O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582681621\/1401388235","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"StephDreamsBlog","name":"Stephanie Dreams","id":20096781,"id_str":"20096781","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198526570496,"id_str":"663728198526570496","text":"My outfit today is so bad it's good.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":393584390,"id_str":"393584390","name":"Grace","screen_name":"_gracenowen","location":null,"url":null,"description":"tongue-tied and twisted just an earth bound misfit","protected":false,"verified":false,"followers_count":309,"friends_count":93,"listed_count":1,"favourites_count":11703,"statuses_count":11059,"created_at":"Tue Oct 18 19:18:18 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"33E6D7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/364778185\/dew_flower.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/364778185\/dew_flower.jpg","profile_background_tile":true,"profile_link_color":"9D41E8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0B968","profile_text_color":"0A8A4C","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643999948019761152\/5jVZZ1IB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643999948019761152\/5jVZZ1IB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/393584390\/1437063947","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108659"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198555975680,"id_str":"663728198555975680","text":"Voy a retomar mi cuadro \"19th century soul\", que tiene pinta de acabar siendo mi puta mejor obra.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2571222894,"id_str":"2571222894","name":"Meng-\u00e2mok.","screen_name":"LimekiWuivre","location":"Segunda tumba a la derecha.","url":"http:\/\/enmicabezacobrasentido.blogspot.com.es","description":"No s\u00e9 si soy una mota de polvo en una obra de arte, o una obra de arte hecha polvo.","protected":false,"verified":false,"followers_count":401,"friends_count":68,"listed_count":7,"favourites_count":9783,"statuses_count":13707,"created_at":"Mon Jun 16 16:31:20 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572160050701950976\/kjvU62rF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572160050701950976\/kjvU62rF.jpeg","profile_background_tile":true,"profile_link_color":"63175E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661657531874430976\/HYalqrZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661657531874430976\/HYalqrZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2571222894\/1446677493","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080108666"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198543364096,"id_str":"663728198543364096","text":"RT @flor_satle: ODIO que me dejen con la intirga\ud83d\ude21\ud83d\ude21\ud83d\ude21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2774155054,"id_str":"2774155054","name":"Cele Laferla \u2665","screen_name":"celelaf","location":null,"url":null,"description":"25\/01\/97\u2022 Acuario\u2022 SUD\/LDS\u2764\u2022 CAB\/CARP\u2665\u2022 Anti K\u2022 Cordoba, Argentina \u2022~Disfruta de las cosas simples~","protected":false,"verified":false,"followers_count":135,"friends_count":113,"listed_count":0,"favourites_count":1046,"statuses_count":3043,"created_at":"Thu Sep 18 02:24:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658703239894990848\/u6Gc0LB6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658703239894990848\/u6Gc0LB6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2774155054\/1445882064","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:44:38 +0000 2015","id":663683611653181440,"id_str":"663683611653181440","text":"ODIO que me dejen con la intirga\ud83d\ude21\ud83d\ude21\ud83d\ude21","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":355502929,"id_str":"355502929","name":"Florr","screen_name":"flor_satle","location":"C\u00f3rdoba, Argentina","url":null,"description":"15 \u2665\n'hay mil historias detr\u00e1s de un silencio \u2600 \u2600\n WPP: 3515205917 \u2b05","protected":false,"verified":false,"followers_count":747,"friends_count":684,"listed_count":2,"favourites_count":1117,"statuses_count":6692,"created_at":"Mon Aug 15 13:19:37 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507618531655954433\/-tpmzDiQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507618531655954433\/-tpmzDiQ.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663096736353787904\/m-sVHxp3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663096736353787904\/m-sVHxp3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/355502929\/1446929283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"flor_satle","name":"Florr","id":355502929,"id_str":"355502929","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080108663"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198534975488,"id_str":"663728198534975488","text":"cc to jessica. https:\/\/t.co\/lKCof95pO1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3434177385,"id_str":"3434177385","name":"POOT8 !","screen_name":"BBHPLN","location":"% PALINOIA !","url":null,"description":"fuck whoever tells you no ! do you, be proud and love lots ! :)","protected":false,"verified":false,"followers_count":180,"friends_count":54,"listed_count":0,"favourites_count":834,"statuses_count":262,"created_at":"Fri Aug 21 14:07:50 +0000 2015","utc_offset":3600,"time_zone":"Budapest","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BCCCC9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663712002796208129\/U0huIUSS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663712002796208129\/U0huIUSS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3434177385\/1447076241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728110227996672,"quoted_status_id_str":"663728110227996672","quoted_status":{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728110227996672,"id_str":"663728110227996672","text":"for a second i thought i was jessica. \nw h a t.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179682100,"id_str":"4179682100","name":"I WANNA 6 YOU UP.","screen_name":"SYJPLN","location":"PALINOIA.","url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":55,"listed_count":0,"favourites_count":3,"statuses_count":40,"created_at":"Mon Nov 09 13:36:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F1D8EC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725017343983616\/NNWklVSa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725017343983616\/NNWklVSa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179682100\/1447076978","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lKCof95pO1","expanded_url":"https:\/\/twitter.com\/SYJPLN\/status\/663728110227996672","display_url":"twitter.com\/SYJPLN\/status\/\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080108661"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198535020545,"id_str":"663728198535020545","text":"RT @chrisbrown: \"Why you always lying... Uuuuummmmmy God, stop fucking lying\" \ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179022719,"id_str":"179022719","name":"OneManGangHB\u2122","screen_name":"iamOMG","location":"Raleighwood, NC","url":"https:\/\/soundcloud.com\/omg-1","description":"A1 Bundy. #HustleBaby omghnic1@yahoo.com","protected":false,"verified":false,"followers_count":1425,"friends_count":1063,"listed_count":4,"favourites_count":6220,"statuses_count":57005,"created_at":"Mon Aug 16 08:52:52 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560860648\/got_20ammo_20guns_20sticker_20decal.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560860648\/got_20ammo_20guns_20sticker_20decal.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576557181706858496\/NfSabc9a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576557181706858496\/NfSabc9a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179022719\/1395365942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:22:25 +0000 2015","id":663451529320357888,"id_str":"663451529320357888","text":"\"Why you always lying... Uuuuummmmmy God, stop fucking lying\" \ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d\ud83d\udc7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":119509520,"id_str":"119509520","name":"Chris Brown","screen_name":"chrisbrown","location":null,"url":"http:\/\/www.chrisbrownworld.com","description":"Official Chris Brown Twitter #ZERO OUT NOW! http:\/\/smarturl.it\/Zeroi?IQid=tw Management Inquiries: Mike G @nitevision_mgmt","protected":false,"verified":true,"followers_count":15123329,"friends_count":0,"listed_count":45769,"favourites_count":586,"statuses_count":2348,"created_at":"Wed Mar 03 21:39:14 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"999999","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570252996177428480\/o6cf40Yp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570252996177428480\/o6cf40Yp.jpeg","profile_background_tile":true,"profile_link_color":"0A0101","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"D0D8D9","profile_text_color":"4327E6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655114873177681924\/iJ0nfitg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655114873177681924\/iJ0nfitg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/119509520\/1442943900","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10403,"favorite_count":11628,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chrisbrown","name":"Chris Brown","id":119509520,"id_str":"119509520","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108661"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539177984,"id_str":"663728198539177984","text":"RT @GbtimesTurkey: \u00c7in'in Suriye sorunuyla ilgili olarak Viyana'da ikinci kez konferans d\u00fczenlenmesini destekledi\u011fi bildirildi.","source":"\u003ca href=\"http:\/\/itunes.apple.com\/us\/app\/twitter\/id409789998?mt=12\" rel=\"nofollow\"\u003eTwitter for Mac\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1506209930,"id_str":"1506209930","name":"berkecan","screen_name":"berkardo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":104,"friends_count":1922,"listed_count":1,"favourites_count":9100,"statuses_count":9577,"created_at":"Tue Jun 11 19:56:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000214539302\/5953dc6165d41df4ed607dda39331d38_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000214539302\/5953dc6165d41df4ed607dda39331d38_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:04:26 +0000 2015","id":663688596033961984,"id_str":"663688596033961984","text":"\u00c7in'in Suriye sorunuyla ilgili olarak Viyana'da ikinci kez konferans d\u00fczenlenmesini destekledi\u011fi bildirildi.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3899381668,"id_str":"3899381668","name":"Gbtimes Turkey","screen_name":"GbtimesTurkey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62485,"friends_count":0,"listed_count":0,"favourites_count":1,"statuses_count":492,"created_at":"Thu Oct 08 12:12:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652094942794285056\/qADYLpYd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652094942794285056\/qADYLpYd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3899381668\/1444306701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GbtimesTurkey","name":"Gbtimes Turkey","id":3899381668,"id_str":"3899381668","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547611648,"id_str":"663728198547611648","text":"Alright then lol.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2566054768,"id_str":"2566054768","name":"Noah\u2122","screen_name":"nno_ahh_","location":"Stuck in Somerset, KY","url":"http:\/\/ask.fm\/nno_ahh_","description":"I'm that guy in the back on the drums.. yeah, hi.\n\nAllow me to reintroduce myself","protected":false,"verified":false,"followers_count":221,"friends_count":237,"listed_count":0,"favourites_count":1623,"statuses_count":2667,"created_at":"Mon May 26 22:45:00 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656301411542683648\/8z8Q64GH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656301411542683648\/8z8Q64GH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2566054768\/1446437599","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108664"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539042816,"id_str":"663728198539042816","text":"RT @_SHIMETAGU_: \u4e03\u4e94\u4e09\u639b\u9f8d\u4e5f\u304f\u3093\ud83d\udc36\ud83d\udc95\n\n#\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087rt\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3067\u3059 #jr\u62c5\u540c\u58eb\u4ef2\u826f\u304f\u3057\u3088\u3046\u305c\u3063\u3066\u3053\u3068\u3067\u6771\u897f\u95a2\u4fc2\u306a\u304f\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3913238052,"id_str":"3913238052","name":"tag\u2661","screen_name":"tag__666","location":null,"url":null,"description":"\u5e73\u91ce\u7d2b\u8000 \u2661 96","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":6,"created_at":"Fri Oct 16 11:34:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727382096838656\/X70cXYDF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727382096838656\/X70cXYDF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 07:32:34 +0000 2015","id":661445849939972096,"id_str":"661445849939972096","text":"\u4e03\u4e94\u4e09\u639b\u9f8d\u4e5f\u304f\u3093\ud83d\udc36\ud83d\udc95\n\n#\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087rt\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3067\u3059 #jr\u62c5\u540c\u58eb\u4ef2\u826f\u304f\u3057\u3088\u3046\u305c\u3063\u3066\u3053\u3068\u3067\u6771\u897f\u95a2\u4fc2\u306a\u304f\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/lvhoYsMTNT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4078243272,"id_str":"4078243272","name":"tag \u2764\ufe0e","screen_name":"_SHIMETAGU_","location":null,"url":null,"description":"S.ryuya \u2764\ufe0e \/ \u3057\u3081\u62c5\u3068\u7d61\u307f\u306a\u3044\u65b9","protected":false,"verified":false,"followers_count":7,"friends_count":7,"listed_count":0,"favourites_count":2,"statuses_count":39,"created_at":"Sat Oct 31 09:38:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660392289542389760\/u6IOVFxG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660392289542389760\/u6IOVFxG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4078243272\/1446860094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":0,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087rt\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3067\u3059","indices":[12,72]},{"text":"jr\u62c5\u540c\u58eb\u4ef2\u826f\u304f\u3057\u3088\u3046\u305c\u3063\u3066\u3053\u3068\u3067\u6771\u897f\u95a2\u4fc2\u306a\u304f\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[73,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661445838741176320,"id_str":"661445838741176320","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","url":"https:\/\/t.co\/lvhoYsMTNT","display_url":"pic.twitter.com\/lvhoYsMTNT","expanded_url":"http:\/\/twitter.com\/_SHIMETAGU_\/status\/661445849939972096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661445838741176320,"id_str":"661445838741176320","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","url":"https:\/\/t.co\/lvhoYsMTNT","display_url":"pic.twitter.com\/lvhoYsMTNT","expanded_url":"http:\/\/twitter.com\/_SHIMETAGU_\/status\/661445849939972096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u308f\u30fc\u30fc\u30fc\u30fc\u30b8\u30e3\u30cb\u30aa\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308b\u304a\u6642\u9593\u304c\u307e\u3044\u308a\u307e\u3057\u305f\u306a\u306e\u3067\u3044\u3063\u3071\u3044\u7e4b\u304c\u308a\u307e\u3057\u3087rt\u3057\u3066\u304f\u308c\u305f\u65b9\u3067\u6c17\u306b\u306a\u3063\u305f\u65b9\u304a\u8fce\u3048\u3067\u3059","indices":[29,89]},{"text":"jr\u62c5\u540c\u58eb\u4ef2\u826f\u304f\u3057\u3088\u3046\u305c\u3063\u3066\u3053\u3068\u3067\u6771\u897f\u95a2\u4fc2\u306a\u304f\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[90,126]}],"urls":[],"user_mentions":[{"screen_name":"_SHIMETAGU_","name":"tag \u2764\ufe0e","id":4078243272,"id_str":"4078243272","indices":[3,15]}],"symbols":[],"media":[{"id":661445838741176320,"id_str":"661445838741176320","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","url":"https:\/\/t.co\/lvhoYsMTNT","display_url":"pic.twitter.com\/lvhoYsMTNT","expanded_url":"http:\/\/twitter.com\/_SHIMETAGU_\/status\/661445849939972096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":661445849939972096,"source_status_id_str":"661445849939972096","source_user_id":4078243272,"source_user_id_str":"4078243272"}]},"extended_entities":{"media":[{"id":661445838741176320,"id_str":"661445838741176320","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS3tfGBUAAABLE9.jpg","url":"https:\/\/t.co\/lvhoYsMTNT","display_url":"pic.twitter.com\/lvhoYsMTNT","expanded_url":"http:\/\/twitter.com\/_SHIMETAGU_\/status\/661445849939972096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":661445849939972096,"source_status_id_str":"661445849939972096","source_user_id":4078243272,"source_user_id_str":"4078243272"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198518181888,"id_str":"663728198518181888","text":"@InstagramColor @my_princes_2001 dios tendr\u00eda que pillarme confesada.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727831558529024,"in_reply_to_status_id_str":"663727831558529024","in_reply_to_user_id":1596146340,"in_reply_to_user_id_str":"1596146340","in_reply_to_screen_name":"InstagramColor","user":{"id":2940697048,"id_str":"2940697048","name":"ljp","screen_name":"intomyliam","location":"shawn follows me","url":"https:\/\/twitter.com\/intomyliam\/status\/639395972225867776","description":"don't talk to me if you are not liam or shawn.","protected":false,"verified":false,"followers_count":2066,"friends_count":1426,"listed_count":10,"favourites_count":32787,"statuses_count":25905,"created_at":"Thu Dec 25 12:26:25 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662387649747947520\/CoK4hXxF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662387649747947520\/CoK4hXxF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2940697048\/1446761175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"InstagramColor","name":"Paula Fe\u270c\ufe0f","id":1596146340,"id_str":"1596146340","indices":[0,15]},{"screen_name":"my_princes_2001","name":"c\u00a1nta","id":2998366679,"id_str":"2998366679","indices":[16,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080108657"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198551662592,"id_str":"663728198551662592","text":"\u0627\u062d\u064a\u0627\u0646\u0622 \u062a\u0643\u0648\u0646 \u0627\u0644\u0637\u0631\u064a\u0642\u0647 \u0644\u062a\u0633\u0639\u062f \u0645\u0646 \u062a\u062d\u0628\n\u0627\u0646 \u062a\u0628\u0642\u0649 \u0628\u0639\u064a\u062f\u0622 \u0639\u0646\u0647 \u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3269872874,"id_str":"3269872874","name":"haifa\u2661","screen_name":"haifaskaik","location":"snapchat:haifa_662","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0628\u062f\u0627\u062e\u0644\u064a \u062d\u064a\u0627\u0629 .. \u0644\u0627 \u0639\u0644\u0627\u0642\u0647 \u0644\u0647\u0627 \u0628\u0647\u0630\u0627 \u0627\u0644\u0648\u0627\u0642\u0639 \u0627\u0644\u0643\u0626\u064a\u0628","protected":false,"verified":false,"followers_count":1010,"friends_count":371,"listed_count":1,"favourites_count":7476,"statuses_count":4796,"created_at":"Mon Jul 06 09:39:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662652624550760448\/g4g5R-ud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662652624550760448\/g4g5R-ud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269872874\/1443781580","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080108665"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539194368,"id_str":"663728198539194368","text":"https:\/\/t.co\/1VtCDr9a39 #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512800941,"id_str":"3512800941","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 35","screen_name":"35Marmousa35","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3990,"created_at":"Tue Sep 01 13:20:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[25,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/1VtCDr9a39","display_url":"pic.twitter.com\/1VtCDr9a39","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/1VtCDr9a39","display_url":"pic.twitter.com\/1VtCDr9a39","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547443712,"id_str":"663728198547443712","text":"\u5f25\u97f3\u3082\u5bdd\u305f\u3057\u5bdd\u3088\uff5e\ud83d\ude2e\ud83d\udca4\u304a\u5f01\u5f53\u306e\u304a\u304b\u305a\u4f55\u306b\u3057\u3088\u3046\u304b\u307e\u3060\u6c7a\u307e\u3063\u3066\u306a\u3043\u3051\u3069\u2026\u5834\u9762\u3067\u3044\u3044\u3084\ud83d\udc4f\ud83c\udffb\u7b11 \uff14\u664245\u5206\u307e\u3067\u0295\u2022x\u2022\u0294 Good night.\u262a\ufe0e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2203896378,"id_str":"2203896378","name":"\uff2diyabi\u2765\u2765","screen_name":"0820_miyabi","location":"\u795e\u5948\u5ddd \u6a2a\u6d5c","url":"http:\/\/s.ameblo.jp\/miyabijyotaro\/","description":"\uff4dama(22)\uff50apa(22)\u5f25\u97f3(0.2)\u2765\u00bb2015.09.03\u264012:47 2576g\u2763\ufe0f\u2661 \u2323\u0308\u20dd\u5f25\u97f3\u306f\uff4dama\u3068\uff50apa\u306e\u5927\u5207\u306a\u5b9d\u7269\u2323\u0308\u20dd \u2661 @jyochann \u30de\u30de\u3055\u3093\/\u30de\u30bf\u30de\u30de\/FollowMe\u2729\/\u526f\u696d\uff2e\uff27","protected":false,"verified":false,"followers_count":204,"friends_count":233,"listed_count":0,"favourites_count":292,"statuses_count":5001,"created_at":"Tue Nov 19 23:10:19 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660477341424943104\/vcG3B-eq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660477341424943104\/vcG3B-eq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2203896378\/1446541147","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108664"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547595264,"id_str":"663728198547595264","text":"@zaynmalik @SimonCowell @SonyMusicGlobal @RCARecords @samsmithworld @JessieJ @Adele @ArianaGrande @onedirection","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728133858807808,"in_reply_to_status_id_str":"663728133858807808","in_reply_to_user_id":3831717796,"in_reply_to_user_id_str":"3831717796","in_reply_to_screen_name":"BenJamesMax11","user":{"id":3831717796,"id_str":"3831717796","name":"Ben-James Maxwell","screen_name":"BenJamesMax11","location":"England, United Kingdom","url":"http:\/\/www.facebook.com\/BenMaxwell","description":"Versatile Singer-Songwriter, MT Performer..\nShows:Les Mis, Fame, HSM1+2, Rent.The woman in black, Blood Brothers, Cruise Lines Host, General Gigs I also model:)","protected":false,"verified":false,"followers_count":1100,"friends_count":2735,"listed_count":1,"favourites_count":1244,"statuses_count":2174,"created_at":"Thu Oct 01 07:53:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661937410050248704\/ifFvsgUE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661937410050248704\/ifFvsgUE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3831717796\/1446653146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zaynmalik","name":"zayn","id":176566242,"id_str":"176566242","indices":[0,10]},{"screen_name":"SimonCowell","name":"Simon Cowell","id":413487212,"id_str":"413487212","indices":[11,23]},{"screen_name":"SonyMusicGlobal","name":"Sony Music Global","id":27943891,"id_str":"27943891","indices":[24,40]},{"screen_name":"RCARecords","name":"RCA Records","id":18142856,"id_str":"18142856","indices":[41,52]},{"screen_name":"samsmithworld","name":"SAM SMITH","id":457554412,"id_str":"457554412","indices":[53,67]},{"screen_name":"JessieJ","name":"Jessie J","id":36008570,"id_str":"36008570","indices":[68,76]},{"screen_name":"Adele","name":"Adele","id":184910040,"id_str":"184910040","indices":[77,83]},{"screen_name":"ArianaGrande","name":"Ariana Grande","id":34507480,"id_str":"34507480","indices":[84,97]},{"screen_name":"onedirection","name":"One Direction","id":209708391,"id_str":"209708391","indices":[98,111]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080108664"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198543392769,"id_str":"663728198543392769","text":"RT @Aisha_Reams: @_sleezeo @_famerica just keep me out ya shit with that lame hoe shit \ud83d\udc4c\ud83c\udffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":286944295,"id_str":"286944295","name":"Fuck The Falcons ","screen_name":"_famerica","location":null,"url":"http:\/\/www.bitchimworking.com","description":"#Famerica All praise are due to Allah #FamGoon #LongLivePooh","protected":false,"verified":false,"followers_count":970,"friends_count":679,"listed_count":4,"favourites_count":114,"statuses_count":45102,"created_at":"Sun Apr 24 01:06:36 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/731793622\/84dfcdbb0b2ad1d5035b5eb8d01685bd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/731793622\/84dfcdbb0b2ad1d5035b5eb8d01685bd.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616446161076011008\/J-DUVbGa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616446161076011008\/J-DUVbGa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/286944295\/1445667773","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:38 +0000 2015","id":663727903939674112,"id_str":"663727903939674112","text":"@_sleezeo @_famerica just keep me out ya shit with that lame hoe shit \ud83d\udc4c\ud83c\udffd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727665598308352,"in_reply_to_status_id_str":"663727665598308352","in_reply_to_user_id":314096839,"in_reply_to_user_id_str":"314096839","in_reply_to_screen_name":"_sleezeo","user":{"id":416374457,"id_str":"416374457","name":"Ft.Angela\u2763","screen_name":"Aisha_Reams","location":null,"url":null,"description":"2Girls .. 1Page . Ft. #Angela","protected":false,"verified":false,"followers_count":919,"friends_count":627,"listed_count":2,"favourites_count":783,"statuses_count":16295,"created_at":"Sat Nov 19 16:06:19 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663500008940027904\/TXX4JTvX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663500008940027904\/TXX4JTvX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/416374457\/1440898558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_sleezeo","name":"#NFLRIGGED!","id":314096839,"id_str":"314096839","indices":[0,9]},{"screen_name":"_famerica","name":"Fuck The Falcons ","id":286944295,"id_str":"286944295","indices":[10,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aisha_Reams","name":"Ft.Angela\u2763","id":416374457,"id_str":"416374457","indices":[3,15]},{"screen_name":"_sleezeo","name":"#NFLRIGGED!","id":314096839,"id_str":"314096839","indices":[17,26]},{"screen_name":"_famerica","name":"Fuck The Falcons ","id":286944295,"id_str":"286944295","indices":[27,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108663"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198530658304,"id_str":"663728198530658304","text":"\u307e\u3042\u79c1\u306f\u307c\u3063\u3061\u3058\u3083\u306a\u3044\u3051\u3069\u306d\u3063\u3066\u898b\u305b\u304b\u3051\u3066\u306e\n\n\u30af\u30ea\u307c\u3063\u3061\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1354474730,"id_str":"1354474730","name":"Dream@OORer(\u30c6\u30b9\u30c8\u671f\u9593)","screen_name":"0414Yumekuro","location":"\u8cb4\u65b9\u306e\u5922\u306e\u306a\u304b\u306b\u4f4f\u307f\u7740\u304f\u30e2\u30f3\u30b9\u30bf\u30fc","url":null,"description":"\\\u90a6\u30ed\u30c3\u30af\u57a2\/ONE OK ROCK\/_ROCK\u306f\u5fc3\u81d3_\/\u5f13\u9053\u304c\u597d\u304d\u3060\/\u30d5\u30a9\u30ed\u30d0\u3059\u308b\u3057\u30ea\u30e0\u3070\u3059\u308b\/\u90a6\u30ed\u30c3\u30af\/\u8c5a\u306b\u771f\u73e0\/\u53ef\u611b\u3044\u5b50\u3092\u89b3\u5bdf\u3059\u308b\u306e\u304c\u3059\u304d\/\u4eca\u3092\u751f\u304d\u308b\u30d6\u30b9\/ 15LJC\/\u30ea\u30a2\u30eb\u53d7\u9a13\u751f\u8ffd\u3044\u8fbc\u307e\u308c\u3066\u308b\u306a\u3046","protected":false,"verified":false,"followers_count":737,"friends_count":568,"listed_count":3,"favourites_count":12348,"statuses_count":4425,"created_at":"Mon Apr 15 14:16:57 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715037853282304\/hVjABWi8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715037853282304\/hVjABWi8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1354474730\/1446880415","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108660"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198526435328,"id_str":"663728198526435328","text":"@oshioshake \u4e00\u4eba\u3060\u3051\u5c0f\u567a\u304c\u3067\u304d\u306a\u304f\u3066\u56fa\u307e\u3063\u3066\u308b\u307f\u305f\u3044\u306a\u7d75\u9762\u3067\u7533\u3057\u8a33\u306a\u3044\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727570320388097,"in_reply_to_status_id_str":"663727570320388097","in_reply_to_user_id":238639419,"in_reply_to_user_id_str":"238639419","in_reply_to_screen_name":"oshioshake","user":{"id":162309738,"id_str":"162309738","name":"\u96db\u8c46","screen_name":"_hiyoko_mame","location":null,"url":"http:\/\/fotologue.jp\/milancha","description":"\u30d2\u30e8\u30b3\u8c46\u30ab\u30ec\u30fc\u304c\u597d\u7269\u306a\u306e\u3067\u3001HN\u306f\u96db\u8c46(\u30d2\u30e8\u30b3\u30de\u30e1)\u3092\u540d\u4e57\u3063\u3066\u3044\u307e\u3059\u3002\u9020\u308b\u7740\u308b\u64ae\u308b\u306f\u30bb\u30c3\u30c8\u3067\u697d\u3057\u3080\u306e\u304c\u7406\u60f3\u3000\u3000\u3042\u3061\u3089\u3092\u77e5\u3063\u3066\u3044\u308b\u4eba\u306f\u3053\u3061\u3089\u3067\u898b\u304b\u3051\u3066\u3082\u30e6\u30eb\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":128,"friends_count":178,"listed_count":9,"favourites_count":235,"statuses_count":14298,"created_at":"Sat Jul 03 08:05:10 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF8C00","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573782142\/irdhjcdkt2d9n4lh3kqh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573782142\/irdhjcdkt2d9n4lh3kqh.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2206893474\/icon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2206893474\/icon_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/162309738\/1433271427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oshioshake","name":"\u62bc\u5c3e\u3057\u3083\u3051","id":238639419,"id_str":"238639419","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108659"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198518075392,"id_str":"663728198518075392","text":"RT @AIUEO_UMI: @58012M \n\u304c\u3093\u3070\u3063\u3066\u304f\u3060\u3055\u3044\uff01\u5fdc\u63f4\u3057\u3066\u304a\u308a\u307e\u3059m(_ _)m\n\n\u79c1\u306f\u8db3\u9996\u306e\u6539\u4fee\u3082\u624b\u9996\u306e\u7f6e\u304d\u63db\u3048\u3082\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u305d\u306e\u305f\u3081\u8a2d\u7f6e\u304c\u4e0d\u5b89\u5b9a\u3067\u3059\uff08\u7b11\uff09 https:\/\/t.co\/QyQaxPmN8F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2267784246,"id_str":"2267784246","name":"Bookmany","screen_name":"58012M","location":"\u672d\u5e4c\u5e02","url":null,"description":"\u69d8\u3005\u306a\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u306e\u65e7\u30ad\u30c3\u30c8 \u304c\u5927\u597d\u304d\u306a\u30aa\u30c3\u30b5\u30f3\u3067\u3059\uff01\uff01 \n\u65e7\u30ad\u30c3\u30c8\u306e\u9762\u767d\u3055\u3092\u4f1d\u3048\u3089\u308c\u305f\u3089\u3068\u601d\u3044\u307e\u3059\u3002 \n\u307f\u3093\u306a\u3067\u4f5c\u308a\u307e\u3057\u3087\u3001\u65e7\u30ad\u30c3\u30c8\uff01\uff01(^_^)","protected":false,"verified":false,"followers_count":512,"friends_count":512,"listed_count":16,"favourites_count":10719,"statuses_count":8215,"created_at":"Sun Dec 29 19:06:00 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622044223794118656\/VAzq_SDY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622044223794118656\/VAzq_SDY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2267784246\/1437141634","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:48 +0000 2015","id":663726941279653888,"id_str":"663726941279653888","text":"@58012M \n\u304c\u3093\u3070\u3063\u3066\u304f\u3060\u3055\u3044\uff01\u5fdc\u63f4\u3057\u3066\u304a\u308a\u307e\u3059m(_ _)m\n\n\u79c1\u306f\u8db3\u9996\u306e\u6539\u4fee\u3082\u624b\u9996\u306e\u7f6e\u304d\u63db\u3048\u3082\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u305d\u306e\u305f\u3081\u8a2d\u7f6e\u304c\u4e0d\u5b89\u5b9a\u3067\u3059\uff08\u7b11\uff09 https:\/\/t.co\/QyQaxPmN8F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726061377724418,"in_reply_to_status_id_str":"663726061377724418","in_reply_to_user_id":2267784246,"in_reply_to_user_id_str":"2267784246","in_reply_to_screen_name":"58012M","user":{"id":3247373292,"id_str":"3247373292","name":"AIUEO","screen_name":"AIUEO_UMI","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":80,"friends_count":87,"listed_count":1,"favourites_count":179,"statuses_count":1371,"created_at":"Wed Jun 17 03:31:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663204589353566213\/7yOkSWOW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663204589353566213\/7yOkSWOW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3247373292\/1442932026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"58012M","name":"Bookmany","id":2267784246,"id_str":"2267784246","indices":[0,7]}],"symbols":[],"media":[{"id":663726928545755138,"id_str":"663726928545755138","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","url":"https:\/\/t.co\/QyQaxPmN8F","display_url":"pic.twitter.com\/QyQaxPmN8F","expanded_url":"http:\/\/twitter.com\/AIUEO_UMI\/status\/663726941279653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726928545755138,"id_str":"663726928545755138","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","url":"https:\/\/t.co\/QyQaxPmN8F","display_url":"pic.twitter.com\/QyQaxPmN8F","expanded_url":"http:\/\/twitter.com\/AIUEO_UMI\/status\/663726941279653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AIUEO_UMI","name":"AIUEO","id":3247373292,"id_str":"3247373292","indices":[3,13]},{"screen_name":"58012M","name":"Bookmany","id":2267784246,"id_str":"2267784246","indices":[15,22]}],"symbols":[],"media":[{"id":663726928545755138,"id_str":"663726928545755138","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","url":"https:\/\/t.co\/QyQaxPmN8F","display_url":"pic.twitter.com\/QyQaxPmN8F","expanded_url":"http:\/\/twitter.com\/AIUEO_UMI\/status\/663726941279653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663726941279653888,"source_status_id_str":"663726941279653888","source_user_id":3247373292,"source_user_id_str":"3247373292"}]},"extended_entities":{"media":[{"id":663726928545755138,"id_str":"663726928545755138","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIH_vUsAINNDs.jpg","url":"https:\/\/t.co\/QyQaxPmN8F","display_url":"pic.twitter.com\/QyQaxPmN8F","expanded_url":"http:\/\/twitter.com\/AIUEO_UMI\/status\/663726941279653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663726941279653888,"source_status_id_str":"663726941279653888","source_user_id":3247373292,"source_user_id_str":"3247373292"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108657"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547431424,"id_str":"663728198547431424","text":"Waaah.can't wait for nextweekend!\ud83c\udf0a\ud83c\udf0a\u2764\ud83d\ude46","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268802570,"id_str":"3268802570","name":"christine\u2606\u2764","screen_name":"sassytin13","location":"Quezon City","url":null,"description":"Even the darkest night will end and the sun will rise.-c\n\nALDUB\/MAIDEN fun here !","protected":false,"verified":false,"followers_count":53,"friends_count":318,"listed_count":1,"favourites_count":863,"statuses_count":1217,"created_at":"Sun Jul 05 06:25:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662487038445260802\/XkyAlAzO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662487038445260802\/XkyAlAzO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268802570\/1446652088","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108664"} +{"delete":{"status":{"id":663724369122828288,"id_str":"663724369122828288","user_id":3370845941,"user_id_str":"3370845941"},"timestamp_ms":"1447080108720"}} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547406848,"id_str":"663728198547406848","text":"You're quite thankful for coworkers who support you even when ... More for Aries https:\/\/t.co\/xQ0aYelb1Z","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":247529841,"id_str":"247529841","name":"Kaylee Holmes","screen_name":"Kaylaced1992","location":null,"url":null,"description":"bitch I'm from that double O \r\n #EST, That's my team hoe..\r\n@machinegunkelly has my x3\r\n#fuckinfoolies\r\n#teamkyly\r\nI'm obsessed with #music :)","protected":false,"verified":false,"followers_count":746,"friends_count":402,"listed_count":3,"favourites_count":178,"statuses_count":17571,"created_at":"Sat Feb 05 00:24:02 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000377602798\/7136dfad760010f56b3d8ec52e76d6b0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000377602798\/7136dfad760010f56b3d8ec52e76d6b0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247529841\/1376188902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xQ0aYelb1Z","expanded_url":"http:\/\/bit.ly\/zzEL3G","display_url":"bit.ly\/zzEL3G","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108664"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198530805760,"id_str":"663728198530805760","text":"https:\/\/t.co\/2TlqU4sMAf #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512847269,"id_str":"3512847269","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 34","screen_name":"34Marmousa34","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3991,"created_at":"Tue Sep 01 13:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[25,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/2TlqU4sMAf","display_url":"pic.twitter.com\/2TlqU4sMAf","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/2TlqU4sMAf","display_url":"pic.twitter.com\/2TlqU4sMAf","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080108660"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522265601,"id_str":"663728198522265601","text":"@musicnews_shade @_cxrxy_ look at how tiny she is oh my fuck","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663470894044573696,"in_reply_to_status_id_str":"663470894044573696","in_reply_to_user_id":3100245167,"in_reply_to_user_id_str":"3100245167","in_reply_to_screen_name":"musicnews_shade","user":{"id":4092714432,"id_str":"4092714432","name":"Kale Talbot","screen_name":"kale_talbot","location":"Perth, Western Australia","url":"http:\/\/instagram.com\/kaletalbot","description":"just some queer","protected":false,"verified":false,"followers_count":75,"friends_count":113,"listed_count":0,"favourites_count":99,"statuses_count":43,"created_at":"Sun Nov 01 17:03:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660866968283582465\/eqrZBXlC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660866968283582465\/eqrZBXlC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4092714432\/1447001979","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"musicnews_shade","name":"Shady Music Facts","id":3100245167,"id_str":"3100245167","indices":[0,16]},{"screen_name":"_cxrxy_","name":"- corey -","id":3256110468,"id_str":"3256110468","indices":[17,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198530674689,"id_str":"663728198530674689","text":"\u99ac\u5834\u3053\u306e\u307f\u3068\u7d50\u5a5a\u3057\u3066\u3048","source":"\u003ca href=\"http:\/\/alfredtweet.dferg.us\" rel=\"nofollow\"\u003eAlfredTweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":393115170,"id_str":"393115170","name":"\u3075\u308d\u3046\u3068","screen_name":"la_float","location":"\u7518\u3048\u308b\u306a","url":"https:\/\/soundcloud.com\/la_float","description":"\u697d\u3057\u3080\u3053\u3068\u3092\u5fd8\u308c\u305a\u306b\u9811\u5f35\u308a\u7d9a\u3051\u308b\u3053\u3068","protected":false,"verified":false,"followers_count":546,"friends_count":466,"listed_count":43,"favourites_count":3205,"statuses_count":23099,"created_at":"Tue Oct 18 01:43:33 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/882523427\/35be17741d68239ad2b9aa8448147e10.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/882523427\/35be17741d68239ad2b9aa8448147e10.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601706198883176449\/a4IUYehU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601706198883176449\/a4IUYehU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/393115170\/1415376783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108660"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198535012352,"id_str":"663728198535012352","text":"\u0434\u0430\u0436\u0435 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u0430 \u043d\u0435 \u0433\u0440\u043e\u043c\u043a\u043e","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2400944738,"id_str":"2400944738","name":"\u041a\u043e\u0442\u0438\u043a \u041c\u0438\u0441\u0430\u043a\u0438","screen_name":"MeowMEOWNyan_","location":"\u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a","url":null,"description":"\u0422\u044b \u0437\u0430\u0449\u0438\u0442\u0438\u0448\u044c \u043c\u0435\u043d\u044f? - \u041b\u0435\u0441\u043b\u0438 \u0412\u0438\u0437\u0435\u0440\u0441. hold to heal your partner. \u044f \u0442\u0430\u043a\u043e\u0439 \u0436\u0435 \u043d\u0438\u0437\u043a\u0438\u0439, \u043a\u0430\u043a \u0412\u0435\u0439\u043b\u043e\u043d \u041f\u0430\u0440\u043a. GIVE ME YOUR PILLS. \u0431\u0430\u0442\u044f: @motilibragim","protected":false,"verified":false,"followers_count":452,"friends_count":191,"listed_count":10,"favourites_count":1578,"statuses_count":25373,"created_at":"Fri Mar 21 04:33:48 +0000 2014","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652371509911011328\/ffMxZjWL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652371509911011328\/ffMxZjWL.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663684373678567424\/FTcK52e-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663684373678567424\/FTcK52e-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2400944738\/1446576053","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080108661"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198555799553,"id_str":"663728198555799553","text":"@51wm_ \u307e\u3042\u306d\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727063195455488,"in_reply_to_status_id_str":"663727063195455488","in_reply_to_user_id":3958261819,"in_reply_to_user_id_str":"3958261819","in_reply_to_screen_name":"51wm_","user":{"id":3719043014,"id_str":"3719043014","name":"\u6afb\u4e95 \u3086\u304b\u3010\u5fa9\u6d3b\u5f53\u9078\u7948\u9858\u273d\u5317\u6d77\u9053\u3011","screen_name":"Ars915Yuka","location":null,"url":null,"description":"\u7fd4\u3088\u308a\u306e\u304a\u30fc\u308b\u62c5\uff0aFC\uff0a\u30d5\u30a9\u30ed\u30d0125%\uff0a\u9053\u7523\u5b50JK1*\u7f8e\u4e16\u754c\u9b42*LOVE\u9b42*\u30c7\u30b8\u9b42* \u307f\u3093\u306a\u3068\u7e4b\u304c\u308a\u305f\u3044 #\u672d\u5e4c\u52e2 #\u5fa9\u6d3b\u5f53\u9078","protected":false,"verified":false,"followers_count":213,"friends_count":247,"listed_count":1,"favourites_count":68,"statuses_count":947,"created_at":"Mon Sep 28 22:01:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657756239430987776\/wxHPfY_9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657756239430987776\/wxHPfY_9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3719043014\/1446939446","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"51wm_","name":"\uff0a \u30b5 \u30ad \u30e9 \u30a4 \uff0a","id":3958261819,"id_str":"3958261819","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108666"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198518108160,"id_str":"663728198518108160","text":"@taiyo6156 \u7533\u3057\u8a33\u3042\u308a\u307e\u305b\u3093\u2026\u7686\u3055\u3093\u697d\u3057\u305d\u3046\u3060\u3063\u305f\u306e\u3067\u3001\u3064\u3044\u653e\u7f6e\u3057\u3066\u3057\u307e\u3044\u307e\u3057\u305f(\u3064\u0434\uff40)","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727922264469506,"in_reply_to_status_id_str":"663727922264469506","in_reply_to_user_id":2697274272,"in_reply_to_user_id_str":"2697274272","in_reply_to_screen_name":"taiyo6156","user":{"id":857988871,"id_str":"857988871","name":"\u30b7\u30e3\u30c9\u30a6@\u76f8\u6a21\u30d6\u30a4\u30f3\u57fa\u5730","screen_name":"Shadow01124","location":"\u795e\u5948\u5ddd","url":null,"description":"\u30cb\u30b3\u30cb\u30b3\u751f\u653e\u9001\u3001\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u3001\u6c34\u66dc\u3069\u3046\u3067\u3057\u3087\u3046\u3001MHP3\u3001MH4\u3001MH4G\u300180\u5e74\u4ee3\uff5e90\u5e74\u4ee3\u306e\u30a2\u30c9\u30d9\u30f3\u30c1\u30e3\u30fc\u30b2\u30fc\u30e0(\u30b5\u30a6\u30f3\u30c9\u30ce\u30d9\u30eb\u542b\u3080)\u304c\u597d\u304d\u3002\u8266\u3053\u308c(\u8266\u968a\u3053\u308c\u304f\u3057\u3087\u3093)\uff1a\u30d6\u30a4\u30f3\u6240\u5c5e\u3001\u63d0\u7763\u540d\u306f\u82f1\u5f71\u3002\u5200\u5263\u4e71\u821e\uff1a\u76f8\u6a21\u6240\u5c5e\u3001\u5be9\u795e\u8005(\u3055\u306b\u308f)\u540d\u306f\u65ac\u5f71\u3002RT\u3057\u304b\u3057\u3066\u3044\u306a\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u305f\u5834\u5408\u306f\u3001\u30b9\u30d1\u30e0\u5831\u544a&\u30d6\u30ed\u30c3\u30af\u3002","protected":false,"verified":false,"followers_count":157,"friends_count":174,"listed_count":5,"favourites_count":3311,"statuses_count":20879,"created_at":"Tue Oct 02 12:36:25 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/772811697\/1ee81916194a500820af529c96a97e06.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/772811697\/1ee81916194a500820af529c96a97e06.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630064035153580032\/BYPdgqxY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630064035153580032\/BYPdgqxY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/857988871\/1359186325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taiyo6156","name":"\u305f\u3044\u3088\u30fc","id":2697274272,"id_str":"2697274272","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108657"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198526480385,"id_str":"663728198526480385","text":"RT @Acquired_Taste: *this goes on for 10 more minutes*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":218486716,"id_str":"218486716","name":"El Cheapo","screen_name":"WolfGangTiga","location":"Probably goin back to Africa","url":null,"description":"#TeamMSU #HailState #MakeYaBadDaysGoodAndYaGoodDaysBetter","protected":false,"verified":false,"followers_count":3292,"friends_count":2181,"listed_count":19,"favourites_count":877,"statuses_count":170775,"created_at":"Mon Nov 22 13:44:30 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/398575030\/32.jpg.crdownload","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/398575030\/32.jpg.crdownload","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659154032397807616\/ex_ifnkk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659154032397807616\/ex_ifnkk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/218486716\/1440526694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 26 05:17:57 +0000 2015","id":658512872310333443,"id_str":"658512872310333443","text":"*this goes on for 10 more minutes*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96428187,"id_str":"96428187","name":"Dabb Calloway","screen_name":"Acquired_Taste","location":"Dallas","url":"http:\/\/Instagram.com\/ShoesShirtAndAttah","description":"29. Christian. Nigerian. Dallasite. Cowboys. Mavericks. Hooper. Promoter. Sock aficionado. #Wingsday. I love cheese, but it doesn't always love me back.","protected":false,"verified":false,"followers_count":4174,"friends_count":3784,"listed_count":85,"favourites_count":19220,"statuses_count":239408,"created_at":"Sat Dec 12 22:07:10 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"003399","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639970657531334656\/3Lj0UcHC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639970657531334656\/3Lj0UcHC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96428187\/1427867835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":53,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Acquired_Taste","name":"Dabb Calloway","id":96428187,"id_str":"96428187","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108659"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522376192,"id_str":"663728198522376192","text":"https:\/\/t.co\/kDA0MYB3wW #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512755876,"id_str":"3512755876","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 29","screen_name":"29Marmousa29","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4289,"created_at":"Tue Sep 01 13:00:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[25,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/kDA0MYB3wW","display_url":"pic.twitter.com\/kDA0MYB3wW","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929842732703744,"id_str":"662929842732703744","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMzLfsWoAAhj_y.jpg","url":"https:\/\/t.co\/kDA0MYB3wW","display_url":"pic.twitter.com\/kDA0MYB3wW","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929920943722496\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929920943722496,"source_status_id_str":"662929920943722496","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198547456000,"id_str":"663728198547456000","text":"Boiiii https:\/\/t.co\/b3XzorwEOX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":839899592,"id_str":"839899592","name":"Lost In The Sauce \u262f","screen_name":"SvmmiSuperSxcks","location":"Friendzone, USA","url":"http:\/\/im-probably-high.com","description":"Ghanian|18| WTAMU'19 | Pre-med major | CHHS Alumni | It's so lit|","protected":false,"verified":false,"followers_count":869,"friends_count":697,"listed_count":1,"favourites_count":1252,"statuses_count":5142,"created_at":"Sat Sep 22 14:56:58 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660789788002287616\/GWPf3c4B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660789788002287616\/GWPf3c4B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/839899592\/1445287649","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"309059ff6710946f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/309059ff6710946f.json","place_type":"city","name":"Canyon","full_name":"Canyon, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-101.954673,34.960525],[-101.954673,35.017533],[-101.878133,35.017533],[-101.878133,34.960525]]]},"attributes":{}},"contributors":null,"quoted_status_id":663638461862187009,"quoted_status_id_str":"663638461862187009","quoted_status":{"created_at":"Mon Nov 09 08:45:13 +0000 2015","id":663638461862187009,"id_str":"663638461862187009","text":"Same https:\/\/t.co\/ZdvI6whr50","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619436162,"id_str":"619436162","name":"Dee Asia","screen_name":"lost_qveen","location":"Denton, TX","url":null,"description":"|UNT| #GoGettasEnt | Don't speak on what you don't know.","protected":false,"verified":false,"followers_count":1009,"friends_count":868,"listed_count":5,"favourites_count":692,"statuses_count":52412,"created_at":"Tue Jun 26 21:28:19 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"64B316","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660188188338581504\/6ykbiCxH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660188188338581504\/6ykbiCxH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619436162\/1446270750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663638121716715520,"quoted_status_id_str":"663638121716715520","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZdvI6whr50","expanded_url":"https:\/\/twitter.com\/ch0pped\/status\/663638121716715520","display_url":"twitter.com\/ch0pped\/status\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/b3XzorwEOX","expanded_url":"https:\/\/twitter.com\/lost_qveen\/status\/663638461862187009","display_url":"twitter.com\/lost_qveen\/sta\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080108664"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522310656,"id_str":"663728198522310656","text":"(\u9707\u3048\u58f0)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2985378440,"id_str":"2985378440","name":"\u5927\u5929\u4f7f\u3086\u304d\u304d\u3048\u308b\u00b0\u02d6\u2727\u042fural\u2727\u02d6\u00b0","screen_name":"ruiluisan","location":"\u30aa\u30bf\u30af\u306e\u3044\u306a\u3044\u8f9b\u304f\u53b3\u3057\u3044\u4e16\u754c","url":null,"description":"\u3054\u3061\u3046\u3055\/\/\/\/\u6771\u4eac\/\u90fd\u5185\/t\/\u30b7\u30e3\u30ed\/\u5ef6\u73e0\u3061\u3083\u3093\/\u5185\u7530\u771f\u793c\/\u539f\u7531\u5b9f\/\u4f50\u5009\u7dbe\u97f3\/\u9ed2\u6ca2\u3068\u3082\u3088\/\u4e0a\u5742\u3059\u307f\u308c \u301d\u9006\u5883\u30d6\u30ec\u30a4\u30ab\u30fc\u301f","protected":false,"verified":false,"followers_count":183,"friends_count":109,"listed_count":20,"favourites_count":8430,"statuses_count":15025,"created_at":"Fri Jan 16 08:46:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649655988782370816\/P_M15sBx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649655988782370816\/P_M15sBx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2985378440\/1446837116","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198551629824,"id_str":"663728198551629824","text":"@yucky1313 \u5b9f\u7528\u6027\u3068\u304b\u4f7f\u3044\u52dd\u624b\u3042\u308b\u30e2\u30ce\u304c\u6b8b\u308a\u307e\u3059\u3088\u306d\uff01\u3088\u3063\u3066\u3001\u6ea2\u308c\u308bT\u30b7\u30e3\u30c4\u3068\u30bf\u30aa\u30eb\u3068\u30c8\u30fc\u30c8\u30d0\u30c3\u30b0\u2026","source":"\u003ca href=\"http:\/\/www.movatwi.jp\" rel=\"nofollow\"\u003e\u30e2\u30d0\u30c4\u30a4 \/ www.movatwi.jp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725758758584321,"in_reply_to_status_id_str":"663725758758584321","in_reply_to_user_id":78001573,"in_reply_to_user_id_str":"78001573","in_reply_to_screen_name":"yucky1313","user":{"id":99301803,"id_str":"99301803","name":"\u308a\u3048\u308a\u3048","screen_name":"dp_ff_as","location":"\u30c8\u30fc\u30ad\u30e7\u30fc","url":null,"description":"\u30d1\u30f3\u30c0\u515a\u3067\u864e\u515a\u3002LIVE HOUSE\u304b\u7403\u5834\u3067\u304a\u4f1a\u3044\u3057\u307e\u3057\u3087\u3046\u3002","protected":false,"verified":false,"followers_count":141,"friends_count":343,"listed_count":7,"favourites_count":846,"statuses_count":11096,"created_at":"Fri Dec 25 15:05:52 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000841205040\/18e2d85ec4791086d64b4f29c0562882_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000841205040\/18e2d85ec4791086d64b4f29c0562882_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yucky1313","name":"\u3086\u304d\u59c9","id":78001573,"id_str":"78001573","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108665"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198534860800,"id_str":"663728198534860800","text":"RT @mainedcm: Daniel padilla is soooo gwapo. <333333333333","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2402698914,"id_str":"2402698914","name":"z\u0271\u025b","screen_name":"imdcinderela","location":"@imdanielpadilla's boxers","url":"http:\/\/kathbernardo.com","description":"\u0442r\u03b9ed \u0493ollow\u03b9ng Dan\u03b9el Pad\u03b9lla'\u0455 g\u03b9rl\u0493r\u03b9end \u0432\u03c5\u0442 \u03b9\u0442 \u0455ay\u0455 ed\u03b9\u0442 pro\u0493\u03b9le\u270c\ufe0f","protected":false,"verified":false,"followers_count":868,"friends_count":977,"listed_count":23,"favourites_count":3880,"statuses_count":53213,"created_at":"Sat Mar 22 05:18:22 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663378113049395201\/pstYmfuP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663378113049395201\/pstYmfuP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2402698914\/1446989663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 01 11:47:31 +0000 2010","id":26071827992,"id_str":"26071827992","text":"Daniel padilla is soooo gwapo. <333333333333","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63701775,"id_str":"63701775","name":"Maine Mendoza","screen_name":"mainedcm","location":null,"url":null,"description":"yup, I am that girl","protected":false,"verified":true,"followers_count":2488052,"friends_count":276,"listed_count":1549,"favourites_count":1400,"statuses_count":38005,"created_at":"Fri Aug 07 12:07:22 +0000 2009","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/807556650\/88b59e59d76e50306c12604655e5212c.jpeg","profile_background_tile":true,"profile_link_color":"1A1A17","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648044677770293249\/sr6Ck-9f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63701775\/1446987129","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1743,"favorite_count":2119,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mainedcm","name":"Maine Mendoza","id":63701775,"id_str":"63701775","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080108661"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539083777,"id_str":"663728198539083777","text":"RT @EarthPixHD: Early morning light on the Horns of Torres del Paine National Park in Chile https:\/\/t.co\/pGwGwtLvzJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":438472662,"id_str":"438472662","name":"WOOD$","screen_name":"XOXSSVLVS","location":"LONGLIVESTEADYHOOPIN","url":null,"description":"Heaven is a place on earth w u @ally \u2764\ufe0f\u2600\ufe0f","protected":false,"verified":false,"followers_count":1084,"friends_count":776,"listed_count":2,"favourites_count":13728,"statuses_count":57501,"created_at":"Fri Dec 16 16:41:11 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0EEDA3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451920091290935296\/LDtZ92MD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451920091290935296\/LDtZ92MD.jpeg","profile_background_tile":true,"profile_link_color":"EB0E45","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660991957833920512\/vArXghxS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660991957833920512\/vArXghxS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/438472662\/1446782060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:41 +0000 2015","id":663726659003117568,"id_str":"663726659003117568","text":"Early morning light on the Horns of Torres del Paine National Park in Chile https:\/\/t.co\/pGwGwtLvzJ","source":"\u003ca href=\"http:\/\/sendible.com\" rel=\"nofollow\"\u003eSendible\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2551188847,"id_str":"2551188847","name":"Earth Pics (HD)","screen_name":"EarthPixHD","location":null,"url":null,"description":"Earth Pics HD | Stunning High Definition Photographs From All Around The World","protected":false,"verified":false,"followers_count":25020,"friends_count":23737,"listed_count":316,"favourites_count":0,"statuses_count":6797,"created_at":"Fri Jun 06 23:33:51 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492023418577903616\/eYg8yCcL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492023418577903616\/eYg8yCcL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2551188847\/1410129026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726657925197825,"id_str":"663726657925197825","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","url":"https:\/\/t.co\/pGwGwtLvzJ","display_url":"pic.twitter.com\/pGwGwtLvzJ","expanded_url":"http:\/\/twitter.com\/EarthPixHD\/status\/663726659003117568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726657925197825,"id_str":"663726657925197825","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","url":"https:\/\/t.co\/pGwGwtLvzJ","display_url":"pic.twitter.com\/pGwGwtLvzJ","expanded_url":"http:\/\/twitter.com\/EarthPixHD\/status\/663726659003117568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EarthPixHD","name":"Earth Pics (HD)","id":2551188847,"id_str":"2551188847","indices":[3,14]}],"symbols":[],"media":[{"id":663726657925197825,"id_str":"663726657925197825","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","url":"https:\/\/t.co\/pGwGwtLvzJ","display_url":"pic.twitter.com\/pGwGwtLvzJ","expanded_url":"http:\/\/twitter.com\/EarthPixHD\/status\/663726659003117568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726659003117568,"source_status_id_str":"663726659003117568","source_user_id":2551188847,"source_user_id_str":"2551188847"}]},"extended_entities":{"media":[{"id":663726657925197825,"id_str":"663726657925197825","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH4PmWsAEt2ic.jpg","url":"https:\/\/t.co\/pGwGwtLvzJ","display_url":"pic.twitter.com\/pGwGwtLvzJ","expanded_url":"http:\/\/twitter.com\/EarthPixHD\/status\/663726659003117568\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663726659003117568,"source_status_id_str":"663726659003117568","source_user_id":2551188847,"source_user_id_str":"2551188847"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198555992064,"id_str":"663728198555992064","text":"@emanhasnolife do your best","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723333729390592,"in_reply_to_status_id_str":"663723333729390592","in_reply_to_user_id":2359794055,"in_reply_to_user_id_str":"2359794055","in_reply_to_screen_name":"emanhasnolife","user":{"id":204348684,"id_str":"204348684","name":"\u00e9gyptien","screen_name":"LeMasry","location":"Egypt","url":null,"description":"\u200f\u0627\u0631\u062c\u0648\u0643 .. \u0627\u0648\u0639\u0649 \u062a\u0641\u0647\u0645\u0646\u0649 \u0635\u062d","protected":false,"verified":false,"followers_count":1243,"friends_count":351,"listed_count":11,"favourites_count":858,"statuses_count":32756,"created_at":"Mon Oct 18 14:10:29 +0000 2010","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/362148592\/00-va-ministry_of_sound_clubbers_guide_to_2008__au_editi__1_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/362148592\/00-va-ministry_of_sound_clubbers_guide_to_2008__au_editi__1_.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620655660410114052\/HsEw9cT6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620655660410114052\/HsEw9cT6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204348684\/1436810905","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emanhasnolife","name":"qaloc qaloc","id":2359794055,"id_str":"2359794055","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108666"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198555799552,"id_str":"663728198555799552","text":"@MakishimaRavi \u305d\u3093\u306a\u3053\u3063\u305f\u308d\u3046\u3068\u601d\u3063\u305fwwwwwwwww\u9858\u671b\u308f\u308d\u305fwwwwwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727971023241216,"in_reply_to_status_id_str":"663727971023241216","in_reply_to_user_id":2942860680,"in_reply_to_user_id_str":"2942860680","in_reply_to_screen_name":"MakishimaRavi","user":{"id":105773799,"id_str":"105773799","name":"\u9752\u6625\u30d0\u30f3\u30d3\u306b\u98e2\u3048\u308b\u96ea\u702c\u306f\u771f\u3093\u4e2d","screen_name":"scherzo_7778","location":"\u5fc3\u306f\u6c5f\u30ce\u5cf6\u3001\u4f53\u306f\u6885\u306e\u56fd","url":"http:\/\/twpf.jp\/scherzo_7778","description":"20\u2191\u306a\u30f2\u30bf\u3067\u30ec\u30a4\u30e4\u30fc\u3067\u8150\u306e\u30aa\u30f3\u30d1\u30ec\u30fc\u30c9\u3002\u65e5\u5e38\uff34\uff2c\u591a\u3081\u3002\u98ef\u30c6\u30ed\u697d\u3057\u3044( \u02c7\u03c9\u02c7 )\u4eca\u306f\u5439\u594f\u697d\u90e8\u304c\u30e1\u30a4\u30f3\u3002\u305d\u3057\u3066\u30a2\u30a4\u30ab\u30c4\u304a\u3070\u3055\u3093\u300a\u2661\u300b\u3064\u308a\u7403\uff0f\u30c0\u30f3\u30ed\u30f3\u5c0f\u8aac\u7d44\uff0fSC(S)\uff0f\u30c0\u30f3\u6226\uff0f\u30a2\u30cb\u30e1\u30aa\u30ea\u30b8\u30ca\u30eb\u4f5c\u54c1\u25bcHOMO\u3088\u308a\u30b3\u30f3\u30d3\u306e\u65b9\u304c\u597d\u304d\u3001\u3060\u3051\u3069HOMO\u3082\u597d\u304d","protected":false,"verified":false,"followers_count":315,"friends_count":360,"listed_count":11,"favourites_count":1499,"statuses_count":32050,"created_at":"Sun Jan 17 12:36:03 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000135124321\/6rH46X8E.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000135124321\/6rH46X8E.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661004425285136384\/3wrlRgVx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661004425285136384\/3wrlRgVx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105773799\/1415362739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MakishimaRavi","name":"\u3089\u3073\u3071\u3061(\u4e0a\u2191)\u306f\u5dfb\u3061\u3083\u3093\u6e07\u671b\u75c7","id":2942860680,"id_str":"2942860680","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108666"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198543392768,"id_str":"663728198543392768","text":"Um baita dia p sair, mas ba ta mt calor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370727805,"id_str":"1370727805","name":"J\u00falia","screen_name":"juhnzl","location":"Pelotas, Rio Grande do Sul","url":null,"description":"Que perdoem a minha loucura, pois parte de mim vive para o Xavante, e a outra tamb\u00e9m. Eu te amo @GEBrasilOficial \u2665","protected":false,"verified":false,"followers_count":524,"friends_count":201,"listed_count":0,"favourites_count":4526,"statuses_count":46233,"created_at":"Sun Apr 21 22:34:33 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663566180658081792\/xziW1Ycr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663566180658081792\/xziW1Ycr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370727805\/1447041479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080108663"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198522269696,"id_str":"663728198522269696","text":"RT @twt_kecantikan: Kita taknak muka awk penuh dgn sel kulit mati, tampal lagi bermcm mcm masker. Sama ada pori awk akan lebih tersumbat at\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2805159589,"id_str":"2805159589","name":"\u25b3ti\u0454\u03b7 \u2022","screen_name":"FatinSyafiqa_","location":"Kedah Darul Aman","url":null,"description":null,"protected":false,"verified":false,"followers_count":608,"friends_count":659,"listed_count":0,"favourites_count":276,"statuses_count":14628,"created_at":"Fri Sep 12 07:38:58 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654962353377710080\/srieQuNv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654962353377710080\/srieQuNv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2805159589\/1446880176","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:30 +0000 2015","id":663725604341022726,"id_str":"663725604341022726","text":"Kita taknak muka awk penuh dgn sel kulit mati, tampal lagi bermcm mcm masker. Sama ada pori awk akan lebih tersumbat atau kesan minimum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949141835,"id_str":"2949141835","name":"Ama | kecantikan","screen_name":"twt_kecantikan","location":"Malaysia","url":null,"description":"No matter where you are in life, inspire and empower the women around you. Curator: @amaazmi \/ admin: @aliabatrisyiaa \u26a0 curator application is now closed! \u26a0","protected":false,"verified":false,"followers_count":40755,"friends_count":45,"listed_count":37,"favourites_count":9306,"statuses_count":68490,"created_at":"Mon Dec 29 04:58:39 +0000 2014","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662653825514237952\/01L3Vgmj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662653825514237952\/01L3Vgmj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949141835\/1442635624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twt_kecantikan","name":"Ama | kecantikan","id":2949141835,"id_str":"2949141835","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080108658"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198518091776,"id_str":"663728198518091776","text":"@shirotakurota \u3075\u3075\u3075\u3001\u4f55\u51e6\u306b\u3069\u3046\u7f6e\u3044\u3066\u3082\u305d\u308c\u3063\u307d\u304f\u30d5\u30a9\u30c8\u30b8\u30a7\u30cb\u30c3\u30af\u306a\u5f7c\u306a\u306e\u3067\u3059\u3088\uff01\u3044\u3063\u3071\u3044\u5199\u771f\u64ae\u3063\u3066\u697d\u3057\u3093\u3067\uff01\n\u2026\u3066\u3001\u9577\u7537\u3001\u6c17\u306b\u5165\u3063\u305f\u306e\u306dww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726320883359744,"in_reply_to_status_id_str":"663726320883359744","in_reply_to_user_id":110994659,"in_reply_to_user_id_str":"110994659","in_reply_to_screen_name":"shirotakurota","user":{"id":1242396205,"id_str":"1242396205","name":"\u58f1\u5b50","screen_name":"irie0530","location":"\u5c71\u57ce","url":null,"description":"\u30b3\u30ea\u30c9\u30e9\u30b9\u3068\u30d9\u30bf\u3089\u3076\u3002\u30c0\u30f3\u30dc\u30fc\u3089\u3076\u3002 \u30ab\u30a8\u30eb\u3089\u3076\u3002\u30ac\u30c1\u30e3\u30dd\u30f3\u30b9\u30ad\u30fc\u3067\u76f8\u5f53\u306a\u5927\u4eba\u3001\u5be7\u308dBBA\u4e2d\u306eBBA\u3002\u5c71\u57ce\u3055\u306b\u308f350\u6559\u3002\u30ab\u30e9\u30aa\u30b1\u55ab\u8336\u52e4\u52d9\u3002\u305f\u307e\u306b\u53f8\u4f1a\u696d\u3002 \u6f14\u6b4c\u3082JAZZ\u3082\u597d\u304d\u3055\uff01","protected":false,"verified":false,"followers_count":221,"friends_count":395,"listed_count":8,"favourites_count":1875,"statuses_count":8481,"created_at":"Mon Mar 04 22:53:34 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563603453377667072\/N_ROQO91_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563603453377667072\/N_ROQO91_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1242396205\/1384951946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shirotakurota","name":"\u767d\u7530\u30af\u30ed\u30ce\u30b9\u30b1\uff0f\u30b7\u30ed\u30bf\u30af\u30ed\u30bf","id":110994659,"id_str":"110994659","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108657"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539079680,"id_str":"663728198539079680","text":"\u3084\u3063\u3068\u51fa\u305f\u30fc\u9676\u5c71\u3055\u3093\u3044\u308b\u30fc","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112047169,"id_str":"112047169","name":"\u304a\u3057\u3087\u3044","screen_name":"oshoi_169cm_p_s","location":"\u697d\u3057\u305d\u3046\u306a\u3068\u3053","url":"http:\/\/ameblo.jp\/shoi-shoi-oshoi\/","description":"\u8679\u306e\u30b3\u30f3\u30ad\u30b9\u30bf\u30c9\u30fc\u30eb\/\u7530\u6240\u3042\u305a\u3055 \u3082\u3046\u306d\u307f\u3093\u306a\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":954,"friends_count":1313,"listed_count":42,"favourites_count":7169,"statuses_count":114380,"created_at":"Sun Feb 07 02:52:03 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658644883033296896\/oFdJaL5u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658644883033296896\/oFdJaL5u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112047169\/1446971367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198551805952,"id_str":"663728198551805952","text":"Amo qu\u00edmica, voc\u00eas n\u00e3o t\u00eam no\u00e7\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1630817276,"id_str":"1630817276","name":"Ju","screen_name":"itsjuramiro","location":"+55 21","url":null,"description":"Pisciana, tricolor, carioca.","protected":false,"verified":false,"followers_count":549,"friends_count":395,"listed_count":2,"favourites_count":17781,"statuses_count":26186,"created_at":"Mon Jul 29 17:08:49 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663437124256034817\/F8ooXfQ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663437124256034817\/F8ooXfQ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1630817276\/1447075434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080108665"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198551670784,"id_str":"663728198551670784","text":"@ammwf \u3084\u3070\u3044\uff01\uff01\u6559\u3048\u3066\u304f\u308c\u3066\u3042\u308a\u304c\u3068\u3046\ud83d\ude43\u2763\u3058\u3083\u3042\u6c34\u66dc\u9023\u7d61\u3059\u308b\u301c\u301c\u301c\u52c9\u5f37\u3057\u3088\u3046\uff01\uff01\u3084\u308b\u3068\u304d\u3084\u3063\u3066\u558b\u308b\u3068\u304d\u558b\u308d\u3046\uff08\u7b11\uff09\u304f\u3063\u305d\u3086\u308b\u3086\u308b\u306a\u670d\u88c5\u3060\u3051\u3069\u3044\u3044\uff1f\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727117750767616,"in_reply_to_status_id_str":"663727117750767616","in_reply_to_user_id":2294793811,"in_reply_to_user_id_str":"2294793811","in_reply_to_screen_name":"ammwf","user":{"id":2704440277,"id_str":"2704440277","name":"\u3072\u3089\u3055\u308f\u304b\u306a","screen_name":"HiKnp","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":225,"friends_count":253,"listed_count":0,"favourites_count":758,"statuses_count":1949,"created_at":"Sun Aug 03 16:01:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659711026330386433\/s-kqUeyK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659711026330386433\/s-kqUeyK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2704440277\/1440600444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ammwf","name":"machu \uff5e\u2661.:*:","id":2294793811,"id_str":"2294793811","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108665"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198555865088,"id_str":"663728198555865088","text":"\u6c38\u9060\u306e29\u3063\u3066\u3069\u3046\u3060\u308d\uff08\u7b11\uff09 ( @yakimenta0480 \u30ad\u30e3\u30b9 https:\/\/t.co\/gqlOgZdcBh )","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2998137757,"id_str":"2998137757","name":"\u3072\u3073\u304d\u677e@11.6-10 \u5e83\u5cf6","screen_name":"hibi_kiii","location":"\u6771\u4eac\u90fd","url":null,"description":"163 \/ 55 \/ B \/ \u81ea\u8ee2\u8eca \/ \u767b\u5c71 \/ \u65c5\u884c \/ \u6e29\u6cc9 \/ \u9244\u9053 \/ \u30ab\u30e9\u30aa\u30b1 \/ Disney \/ \u30ea\u30e9\u30c3\u30af\u30de \/ \u306d\u3053\u3042\u3064\u3081","protected":false,"verified":false,"followers_count":127,"friends_count":167,"listed_count":1,"favourites_count":1080,"statuses_count":10393,"created_at":"Tue Jan 27 08:54:36 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/560020556683046912\/eKMAJOdF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/560020556683046912\/eKMAJOdF.png","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660411637715767297\/gmzxyQI5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660411637715767297\/gmzxyQI5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998137757\/1446289385","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gqlOgZdcBh","expanded_url":"http:\/\/cas.st\/cd3a314","display_url":"cas.st\/cd3a314","indices":[36,59]}],"user_mentions":[{"screen_name":"yakimenta0480","name":"\u713c\u304d\u660e\u592a","id":873839646,"id_str":"873839646","indices":[17,31]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108666"} +{"delete":{"status":{"id":660307470988918784,"id_str":"660307470988918784","user_id":3255483414,"user_id_str":"3255483414"},"timestamp_ms":"1447080108800"}} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539223042,"id_str":"663728198539223042","text":"More draw something skills https:\/\/t.co\/U7YZEh3ls4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18101061,"id_str":"18101061","name":"Isma Mart ","screen_name":"dknuto","location":"Montevideo","url":null,"description":"Si llama ahora mismo se lleva un segundo tweet absolutamente gratis.","protected":false,"verified":false,"followers_count":210,"friends_count":146,"listed_count":10,"favourites_count":1143,"statuses_count":2998,"created_at":"Sat Dec 13 17:05:05 +0000 2008","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561160632167190528\/6fvoFGQV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561160632167190528\/6fvoFGQV.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572227746370039808\/e1WxwWde_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572227746370039808\/e1WxwWde_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18101061\/1422623795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728187025793024,"id_str":"663728187025793024","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRP8WIAAW6Yd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRP8WIAAW6Yd.jpg","url":"https:\/\/t.co\/U7YZEh3ls4","display_url":"pic.twitter.com\/U7YZEh3ls4","expanded_url":"http:\/\/twitter.com\/dknuto\/status\/663728198539223042\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":707,"h":1024,"resize":"fit"},"medium":{"w":600,"h":869,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728187025793024,"id_str":"663728187025793024","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRP8WIAAW6Yd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRP8WIAAW6Yd.jpg","url":"https:\/\/t.co\/U7YZEh3ls4","display_url":"pic.twitter.com\/U7YZEh3ls4","expanded_url":"http:\/\/twitter.com\/dknuto\/status\/663728198539223042\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":492,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":707,"h":1024,"resize":"fit"},"medium":{"w":600,"h":869,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198526570497,"id_str":"663728198526570497","text":"Te exta\u00f1o,aunque no seamos nada.. \ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3003901031,"id_str":"3003901031","name":"Mili Antunez \u2661","screen_name":"MiliAntune2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":58,"friends_count":144,"listed_count":0,"favourites_count":578,"statuses_count":525,"created_at":"Wed Jan 28 23:52:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618831050089869312\/yRgpW5t6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618831050089869312\/yRgpW5t6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3003901031\/1435013101","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080108659"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198543282177,"id_str":"663728198543282177","text":"\u3054\u98ef\u304c\u306a\u304f\u306a\u3063\u305f\u306e\u3067\u751f\u5375\u98f2\u3093\u3067\u308b https:\/\/t.co\/7MZER7EgWj","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92955488,"id_str":"92955488","name":"\u306f\u305b\u3054\u3093","screen_name":"hasdas06","location":"\u30e9\u30fc\u30e1\u30f3\u4e8c\u90ce\u3081\u3058\u308d\u53f0\u6cd5\u653f\u5927\u5b66\u524d\u5e97","url":null,"description":"\u7279\u6280\u304c\u30e9\u30d6\u30d7\u30e9\u30b9\u3057\u304b\u306a\u3044","protected":false,"verified":false,"followers_count":618,"friends_count":455,"listed_count":48,"favourites_count":2210,"statuses_count":65812,"created_at":"Fri Nov 27 11:58:51 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532567332187430912\/plIbvWDF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532567332187430912\/plIbvWDF.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661947511716753408\/9SrhK5Og_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661947511716753408\/9SrhK5Og_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92955488\/1428511054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728198341947392,"id_str":"663728198341947392","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR6GU8AA12eg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR6GU8AA12eg.jpg","url":"https:\/\/t.co\/7MZER7EgWj","display_url":"pic.twitter.com\/7MZER7EgWj","expanded_url":"http:\/\/twitter.com\/hasdas06\/status\/663728198543282177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728198341947392,"id_str":"663728198341947392","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR6GU8AA12eg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR6GU8AA12eg.jpg","url":"https:\/\/t.co\/7MZER7EgWj","display_url":"pic.twitter.com\/7MZER7EgWj","expanded_url":"http:\/\/twitter.com\/hasdas06\/status\/663728198543282177\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108663"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539087872,"id_str":"663728198539087872","text":"\u30c8\u30ca\u30ab\u30a4\u30d6\u30fc\u30b9\u30c8\u3057\u307e\u3059 https:\/\/t.co\/tw87zqTAmM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1409868864,"id_str":"1409868864","name":"\u6625\u6b4c(\u306f\u308b\u3045\u305f)\uff20ship6.8","screen_name":"_haruuta","location":"\u751f\u3068\u6b7b\u306e\u72ed\u9593","url":"http:\/\/ameblo.jp\/haruuta0327\/","description":"\u30e6\u30d3\u30fc\u30c8(jubility\u3042\u308b\u3053\u308d\u306e6)\u3001PSO2(ship6(DoL)\u3068ship8(\u3046\u305f\u305f\u306d))\u3061\u3087\u3063\u3068\u3057\u305fSS\u52e2\u3001\u304a\u7d75\u304b\u304d\u3001\u30d1\u30ba\u30c9\u30e9(\u30ab\u30ea\u30f3\u3061\u3083\u3093)\u3001\u8266\u3053\u308c\u3002","protected":false,"verified":false,"followers_count":2249,"friends_count":1426,"listed_count":80,"favourites_count":89725,"statuses_count":99789,"created_at":"Tue May 07 10:13:59 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658511683766259712\/V81h25V0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658511683766259712\/V81h25V0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1409868864\/1433113598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728152452009984,"id_str":"663728152452009984","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPPJUEAAxkPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPPJUEAAxkPn.jpg","url":"https:\/\/t.co\/tw87zqTAmM","display_url":"pic.twitter.com\/tw87zqTAmM","expanded_url":"http:\/\/twitter.com\/_haruuta\/status\/663728198539087872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728152452009984,"id_str":"663728152452009984","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJPPJUEAAxkPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJPPJUEAAxkPn.jpg","url":"https:\/\/t.co\/tw87zqTAmM","display_url":"pic.twitter.com\/tw87zqTAmM","expanded_url":"http:\/\/twitter.com\/_haruuta\/status\/663728198539087872\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198539223041,"id_str":"663728198539223041","text":"Great coverage of our #LSEinfluence report in today's UK press including @guardian front page, @thetimes @theipaper https:\/\/t.co\/dLoGJ3SAlZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74159604,"id_str":"74159604","name":"LSE IDEAS","screen_name":"lseideas","location":"London, UK","url":"http:\/\/www.lse.ac.uk\/IDEAS","description":"LSE IDEAS is a @LSEIGA Centre that acts as the School\u2019s foreign policy think tank.","protected":false,"verified":false,"followers_count":17567,"friends_count":905,"listed_count":422,"favourites_count":214,"statuses_count":3876,"created_at":"Mon Sep 14 13:46:47 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"75726D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/68833223\/IDEAS_twitterBackground.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/68833223\/IDEAS_twitterBackground.png","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"777777","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2659092225\/6b107907112986d81ae0fcde45ee5ede_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2659092225\/6b107907112986d81ae0fcde45ee5ede_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74159604\/1433243544","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LSEinfluence","indices":[22,35]}],"urls":[],"user_mentions":[{"screen_name":"guardian","name":"The Guardian ","id":87818409,"id_str":"87818409","indices":[73,82]},{"screen_name":"thetimes","name":"The Times of London","id":6107422,"id_str":"6107422","indices":[95,104]},{"screen_name":"theipaper","name":"i newspaper","id":205770556,"id_str":"205770556","indices":[105,115]}],"symbols":[],"media":[{"id":663728190695866368,"id_str":"663728190695866368","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRdnXAAAJWkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRdnXAAAJWkQ.jpg","url":"https:\/\/t.co\/dLoGJ3SAlZ","display_url":"pic.twitter.com\/dLoGJ3SAlZ","expanded_url":"http:\/\/twitter.com\/lseideas\/status\/663728198539223041\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":548,"resize":"fit"},"medium":{"w":600,"h":321,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728190695866368,"id_str":"663728190695866368","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRdnXAAAJWkQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRdnXAAAJWkQ.jpg","url":"https:\/\/t.co\/dLoGJ3SAlZ","display_url":"pic.twitter.com\/dLoGJ3SAlZ","expanded_url":"http:\/\/twitter.com\/lseideas\/status\/663728198539223041\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":548,"resize":"fit"},"medium":{"w":600,"h":321,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108662"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198526595072,"id_str":"663728198526595072","text":"DashGoPro on Twitter: \"DashGoPro on Twitter: \"\"1940: De Gaulle Strikes in Africa\" by INTER\u2026 https:\/\/t.co\/7YzfXATMeg https:\/\/t.co\/2bzynhxLGT","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2989902802,"id_str":"2989902802","name":"DashGoPro","screen_name":"DashGoPro","location":"London, England","url":"http:\/\/dashgopro.blogspot.com\/","description":"I'm a dashund, happy to run in the park all day and make new dog friends.","protected":false,"verified":false,"followers_count":622,"friends_count":572,"listed_count":250,"favourites_count":332,"statuses_count":157234,"created_at":"Wed Jan 21 13:31:10 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637579160660103169\/LT-0ABA5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637579160660103169\/LT-0ABA5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2989902802\/1442172010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7YzfXATMeg","expanded_url":"http:\/\/ift.tt\/1LFPd48","display_url":"ift.tt\/1LFPd48","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663728198451113985,"id_str":"663728198451113985","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR6gWsAEvAGO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR6gWsAEvAGO.jpg","url":"https:\/\/t.co\/2bzynhxLGT","display_url":"pic.twitter.com\/2bzynhxLGT","expanded_url":"http:\/\/twitter.com\/DashGoPro\/status\/663728198526595072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728198451113985,"id_str":"663728198451113985","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR6gWsAEvAGO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR6gWsAEvAGO.jpg","url":"https:\/\/t.co\/2bzynhxLGT","display_url":"pic.twitter.com\/2bzynhxLGT","expanded_url":"http:\/\/twitter.com\/DashGoPro\/status\/663728198526595072\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108659"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198518095872,"id_str":"663728198518095872","text":"happy birthday to @Brookadee33 \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f https:\/\/t.co\/lzt6Bvu1LR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3348462783,"id_str":"3348462783","name":"South Cheer","screen_name":"southpantherss","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":41,"friends_count":96,"listed_count":0,"favourites_count":6,"statuses_count":35,"created_at":"Sun Jun 28 04:25:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615238805939826689\/5oNujhLg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615238805939826689\/5oNujhLg_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Brookadee33","name":"Brooke Hudson","id":559106240,"id_str":"559106240","indices":[18,30]}],"symbols":[],"media":[{"id":663728181241868288,"id_str":"663728181241868288","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ6ZWcAA1UPs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ6ZWcAA1UPs.jpg","url":"https:\/\/t.co\/lzt6Bvu1LR","display_url":"pic.twitter.com\/lzt6Bvu1LR","expanded_url":"http:\/\/twitter.com\/southpantherss\/status\/663728198518095872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728181241868288,"id_str":"663728181241868288","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ6ZWcAA1UPs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ6ZWcAA1UPs.jpg","url":"https:\/\/t.co\/lzt6Bvu1LR","display_url":"pic.twitter.com\/lzt6Bvu1LR","expanded_url":"http:\/\/twitter.com\/southpantherss\/status\/663728198518095872\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108657"} +{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728198530768896,"id_str":"663728198530768896","text":"Sailing Deep! https:\/\/t.co\/VlnOA8MWw3","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179266227,"id_str":"179266227","name":"SOA","screen_name":"olamotha4lyfe","location":"Nigeria","url":null,"description":"Property Consultant n Hospitality Customer Advisor.","protected":false,"verified":false,"followers_count":568,"friends_count":1495,"listed_count":3,"favourites_count":25,"statuses_count":965,"created_at":"Mon Aug 16 22:35:41 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629169298167234560\/XkNMFs6Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629169298167234560\/XkNMFs6Q_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728196223787009,"id_str":"663728196223787009","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRyNUYAETYmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRyNUYAETYmn.jpg","url":"https:\/\/t.co\/VlnOA8MWw3","display_url":"pic.twitter.com\/VlnOA8MWw3","expanded_url":"http:\/\/twitter.com\/olamotha4lyfe\/status\/663728198530768896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728196223787009,"id_str":"663728196223787009","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRyNUYAETYmn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRyNUYAETYmn.jpg","url":"https:\/\/t.co\/VlnOA8MWw3","display_url":"pic.twitter.com\/VlnOA8MWw3","expanded_url":"http:\/\/twitter.com\/olamotha4lyfe\/status\/663728198530768896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080108660"} +{"delete":{"status":{"id":663722750138261504,"id_str":"663722750138261504","user_id":3293009149,"user_id_str":"3293009149"},"timestamp_ms":"1447080109299"}} +{"delete":{"status":{"id":663724826306154496,"id_str":"663724826306154496","user_id":4015347672,"user_id_str":"4015347672"},"timestamp_ms":"1447080109344"}} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729263104,"id_str":"663728202729263104","text":"RT @Manucito15: Estoy absolutamente en contra del conformismo, hay que criticar cuando amerita, pero otra cosa diferente es vivir puteando \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237991889,"id_str":"237991889","name":"Juan Jos\u00e9 ","screen_name":"juanjo18_06","location":null,"url":null,"description":"Lic. Administraci\u00f3n de Empresas Cerrista Fan\u00e1tico!!!","protected":false,"verified":false,"followers_count":671,"friends_count":1437,"listed_count":1,"favourites_count":947,"statuses_count":11403,"created_at":"Fri Jan 14 03:21:00 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640343541441540096\/bk0Git_z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640343541441540096\/bk0Git_z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237991889\/1420061997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:49 +0000 2015","id":663726189266247680,"id_str":"663726189266247680","text":"Estoy absolutamente en contra del conformismo, hay que criticar cuando amerita, pero otra cosa diferente es vivir puteando y tirando mierda.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142512840,"id_str":"142512840","name":"Espartano","screen_name":"Manucito15","location":"Sparta","url":null,"description":"Agradecido a DIOS\/ Abogado\/ Amante del f\u00fatbol en todos sus sentidos\/ De coraz\u00f3n azulgrana\/ Cervecero","protected":false,"verified":false,"followers_count":931,"friends_count":504,"listed_count":6,"favourites_count":724,"statuses_count":20897,"created_at":"Tue May 11 02:28:34 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C1C3EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/214552792\/edit1.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/214552792\/edit1.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639925194124099584\/GHwGJjAX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639925194124099584\/GHwGJjAX_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Manucito15","name":"Espartano","id":142512840,"id_str":"142512840","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729316352,"id_str":"663728202729316352","text":"RT @vip_9_k: \u0642\u064f\u0644\u0648\u0628\u0646\u0627 \u0643\u0628\u064a\u0631\u0629 \n\u0644\u0643\u0646 \u0644\u0627 \u062a\u0633\u062a\u0647\u064a\u0646\u0648\u0627 \u0628\u062d\u062c\u0645 \u0623\u062e\u0637\u0627\u0626\u0643\u0645\n\u0641\u0627\u0644\u0628\u062d\u0631\u064f \u0644\u0627 \u064a\u062d\u0645\u0644 \u0627\u0644\u0633\u0641\u064a\u0646\u0629 \u0625\u0646 \u062b\u0642\u0628\u062a ! https:\/\/t.co\/fqnOsTLCId","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3002151780,"id_str":"3002151780","name":"\u0645\u064f\u0639\u0622\u0630 .","screen_name":"moaaz_bakr","location":"Shmal Sina .","url":null,"description":"\u200f\u200f\u0645\u0650\u0646\u0652 \u0623\u0633\u0628\u064e\u0627\u0628\u0650 \u0627\u0644\u062c\u064e\u0645\u064e\u0627\u0644 \u0623\u0646\u0652 \u062a\u064f\u0644\u0627\u0645\u0650\u0633 \u062d\u064f\u0631\u0648\u0641\u064f\u0643 \u0627\u0631\u0652\u0648\u064e\u0627\u062d\u064f \u0627\u0644\u0622\u062e\u0652\u0631\u0650\u064a\u0646 .! \u200f\u200f\u200f\u200f\u2661","protected":false,"verified":false,"followers_count":1616,"friends_count":1844,"listed_count":1,"favourites_count":463,"statuses_count":6364,"created_at":"Thu Jan 29 19:56:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661706130247282688\/ozPE9WAO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661706130247282688\/ozPE9WAO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3002151780\/1445555051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:50:04 +0000 2015","id":663458487666647040,"id_str":"663458487666647040","text":"\u0642\u064f\u0644\u0648\u0628\u0646\u0627 \u0643\u0628\u064a\u0631\u0629 \n\u0644\u0643\u0646 \u0644\u0627 \u062a\u0633\u062a\u0647\u064a\u0646\u0648\u0627 \u0628\u062d\u062c\u0645 \u0623\u062e\u0637\u0627\u0626\u0643\u0645\n\u0641\u0627\u0644\u0628\u062d\u0631\u064f \u0644\u0627 \u064a\u062d\u0645\u0644 \u0627\u0644\u0633\u0641\u064a\u0646\u0629 \u0625\u0646 \u062b\u0642\u0628\u062a ! https:\/\/t.co\/fqnOsTLCId","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1241875153,"id_str":"1241875153","name":"\u062e\u0627\u0637\u0631","screen_name":"vip_9_k","location":"\u0642\u0644\u0628 \u0627\u0644\u0634\u0645\u0627\u0644","url":null,"description":"\u0648\u0623\u0645\u0644\u064a\u0653 \u0623\u0646 \u064a\u0643\u0648\u0646 \u062f\u064f\u0639\u0627\u0626\u064a\u0653 \u0644\u062f\u0627\u0626\u0643\u0650 \u064a\u0627 \u0623\u064f\u0645\u064a \u062f\u0648\u0627\u0621 \u2661","protected":false,"verified":false,"followers_count":214181,"friends_count":194781,"listed_count":159,"favourites_count":86,"statuses_count":67969,"created_at":"Mon Mar 04 17:55:46 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/593128600653574144\/JFKDg0Z9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/593128600653574144\/JFKDg0Z9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1241875153\/1413714562","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":159,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663458475285065728,"id_str":"663458475285065728","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","url":"https:\/\/t.co\/fqnOsTLCId","display_url":"pic.twitter.com\/fqnOsTLCId","expanded_url":"http:\/\/twitter.com\/vip_9_k\/status\/663458487666647040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":570,"resize":"fit"},"large":{"w":639,"h":608,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663458475285065728,"id_str":"663458475285065728","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","url":"https:\/\/t.co\/fqnOsTLCId","display_url":"pic.twitter.com\/fqnOsTLCId","expanded_url":"http:\/\/twitter.com\/vip_9_k\/status\/663458487666647040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":570,"resize":"fit"},"large":{"w":639,"h":608,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vip_9_k","name":"\u062e\u0627\u0637\u0631","id":1241875153,"id_str":"1241875153","indices":[3,11]}],"symbols":[],"media":[{"id":663458475285065728,"id_str":"663458475285065728","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","url":"https:\/\/t.co\/fqnOsTLCId","display_url":"pic.twitter.com\/fqnOsTLCId","expanded_url":"http:\/\/twitter.com\/vip_9_k\/status\/663458487666647040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":570,"resize":"fit"},"large":{"w":639,"h":608,"resize":"fit"}},"source_status_id":663458487666647040,"source_status_id_str":"663458487666647040","source_user_id":1241875153,"source_user_id_str":"1241875153"}]},"extended_entities":{"media":[{"id":663458475285065728,"id_str":"663458475285065728","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUT99aWsAABtcJ.jpg","url":"https:\/\/t.co\/fqnOsTLCId","display_url":"pic.twitter.com\/fqnOsTLCId","expanded_url":"http:\/\/twitter.com\/vip_9_k\/status\/663458487666647040\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":570,"resize":"fit"},"large":{"w":639,"h":608,"resize":"fit"}},"source_status_id":663458487666647040,"source_status_id_str":"663458487666647040","source_user_id":1241875153,"source_user_id_str":"1241875153"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741862400,"id_str":"663728202741862400","text":"Get Weather Updates from The Weather Channel. 09:41:49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161565030,"id_str":"3161565030","name":"stwb29369","screen_name":"stwb29369","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":56902,"created_at":"Fri Apr 17 22:09:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750271488,"id_str":"663728202750271488","text":"sen\u00e3o ela ia falar mta merda","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":320267501,"id_str":"320267501","name":"Al\u00ea","screen_name":"AlessandraQnts_","location":"Canalhizando","url":"http:\/\/instagram.com\/alessandraquintas","description":"@FilipeRet \u2764","protected":false,"verified":false,"followers_count":1643,"friends_count":850,"listed_count":21,"favourites_count":6381,"statuses_count":23489,"created_at":"Sun Jun 19 16:18:09 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471337385091796993\/ss2sgi61.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471337385091796993\/ss2sgi61.jpeg","profile_background_tile":true,"profile_link_color":"9C27D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"D17CED","profile_text_color":"050505","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662037784224485376\/tFJKDwg7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662037784224485376\/tFJKDwg7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/320267501\/1447001007","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"e197438c3cdbd6c0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/e197438c3cdbd6c0.json","place_type":"city","name":"Petr\u00f3polis","full_name":"Petr\u00f3polis, Rio de Janeiro","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.377350,-22.571793],[-43.377350,-22.202457],[-42.997237,-22.202457],[-42.997237,-22.571793]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750271490,"id_str":"663728202750271490","text":"@orrorstory ata desgupa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728043282837504,"in_reply_to_status_id_str":"663728043282837504","in_reply_to_user_id":3095117552,"in_reply_to_user_id_str":"3095117552","in_reply_to_screen_name":"orrorstory","user":{"id":718235610,"id_str":"718235610","name":"bem truste","screen_name":"theorignals","location":"filips lisa gustavo","url":null,"description":"olha amifa nao esto com paciencia pra escreve essas coisa portanto vo fala tres coisa qe me define depressao tristeza as duas d cima de novo","protected":false,"verified":false,"followers_count":11456,"friends_count":7858,"listed_count":10,"favourites_count":3318,"statuses_count":37347,"created_at":"Thu Jul 26 14:40:54 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447645832087470081\/5bzvnmX0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447645832087470081\/5bzvnmX0.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342634736467968\/vo-l2d34_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342634736467968\/vo-l2d34_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718235610\/1445659311","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"orrorstory","name":"tavogus ;p","id":3095117552,"id_str":"3095117552","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202716684288,"id_str":"663728202716684288","text":"RT @n__d__o__02: \u0628\u0639\u062f \u0627\u0644\u0645\u0635 \u0627\u0644\u0627\u0645\u0648\u0631 \u062a\u062a\u0633\u0647\u0644\n https:\/\/t.co\/rcLUh92Usy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906614561,"id_str":"2906614561","name":"AboNaif","screen_name":"Nif119","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":153,"listed_count":0,"favourites_count":160,"statuses_count":123,"created_at":"Sat Nov 22 03:10:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:48 +0000 2015","id":663727947174514688,"id_str":"663727947174514688","text":"\u0628\u0639\u062f \u0627\u0644\u0645\u0635 \u0627\u0644\u0627\u0645\u0648\u0631 \u062a\u062a\u0633\u0647\u0644\n https:\/\/t.co\/rcLUh92Usy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2944186381,"id_str":"2944186381","name":"\u0645\u0640\u0640\u0632\u0622\u0632\u064a\u0640\u0647","screen_name":"n__d__o__02","location":null,"url":null,"description":"\u0645\u0632\u0623\u062c\u064a\u0647 \r\n\r\n\r\n\u0645\u0631\u0623\u0647\u0642\u0647 \r\n\r\n\r\n \u0645\u0644\u0627\u0645\u062d\u064a \u064a\u0645\u0644\u0626\u0647\u0627 \u0627\u0644\u063a\u0631\u0648\u0631\r\n\r\n\r\n\n\n\n (\u0623\u0646\u0627 \u0628\u0631\u064a\u0626\u0647 \u0645\u0646 \u0643\u0644 \u0645\u0627\u0627\u0641\u0639\u0644\u0647 \u0647\u0646\u0627)\r\n\r\n\r\u0645\n\n\u0643\n\n\n\u0627\r\n\r\n\r\n\u0648\r\n\r\n\r\n\u064a\r\n\r\n\u0647\r\n\r\n\r\n\u2663","protected":false,"verified":false,"followers_count":42287,"friends_count":40,"listed_count":153,"favourites_count":77,"statuses_count":206,"created_at":"Fri Dec 26 17:37:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651533810379714560\/ShIs6Gjh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651533810379714560\/ShIs6Gjh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2944186381\/1447078238","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662952624371556352,"id_str":"662952624371556352","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","url":"https:\/\/t.co\/rcLUh92Usy","display_url":"pic.twitter.com\/rcLUh92Usy","expanded_url":"http:\/\/twitter.com\/EuroPStars\/status\/662952870128582656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662952870128582656,"source_status_id_str":"662952870128582656","source_user_id":192465021,"source_user_id_str":"192465021"}]},"extended_entities":{"media":[{"id":662952624371556352,"id_str":"662952624371556352","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","url":"https:\/\/t.co\/rcLUh92Usy","display_url":"pic.twitter.com\/rcLUh92Usy","expanded_url":"http:\/\/twitter.com\/EuroPStars\/status\/662952870128582656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662952870128582656,"source_status_id_str":"662952870128582656","source_user_id":192465021,"source_user_id_str":"192465021","video_info":{"aspect_ratio":[16,9],"duration_millis":18156,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/1280x720\/fScJ7hAHMaQeAq30.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/640x360\/vVz0zyI8FYSk8KM0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/pl\/aZ-KQVHg8C0motKc.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/320x180\/2yENHAWUqFKjUP2Q.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/pl\/aZ-KQVHg8C0motKc.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/640x360\/vVz0zyI8FYSk8KM0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"n__d__o__02","name":"\u0645\u0640\u0640\u0632\u0622\u0632\u064a\u0640\u0647","id":2944186381,"id_str":"2944186381","indices":[3,15]}],"symbols":[],"media":[{"id":662952624371556352,"id_str":"662952624371556352","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","url":"https:\/\/t.co\/rcLUh92Usy","display_url":"pic.twitter.com\/rcLUh92Usy","expanded_url":"http:\/\/twitter.com\/EuroPStars\/status\/662952870128582656\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662952870128582656,"source_status_id_str":"662952870128582656","source_user_id":192465021,"source_user_id_str":"192465021"}]},"extended_entities":{"media":[{"id":662952624371556352,"id_str":"662952624371556352","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662952624371556352\/pu\/img\/GlqKWV71f3ZSL1Mz.jpg","url":"https:\/\/t.co\/rcLUh92Usy","display_url":"pic.twitter.com\/rcLUh92Usy","expanded_url":"http:\/\/twitter.com\/EuroPStars\/status\/662952870128582656\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":662952870128582656,"source_status_id_str":"662952870128582656","source_user_id":192465021,"source_user_id_str":"192465021","video_info":{"aspect_ratio":[16,9],"duration_millis":18156,"variants":[{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/1280x720\/fScJ7hAHMaQeAq30.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/640x360\/vVz0zyI8FYSk8KM0.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/pl\/aZ-KQVHg8C0motKc.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/320x180\/2yENHAWUqFKjUP2Q.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/pl\/aZ-KQVHg8C0motKc.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662952624371556352\/pu\/vid\/640x360\/vVz0zyI8FYSk8KM0.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080109658"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741891072,"id_str":"663728202741891072","text":"RT @salihaturnaCHP: Can\u0131m o\u011flum hasta oldum diye gidip \u0131hlamur alm\u0131\u015f https:\/\/t.co\/876LwzdiEx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3563698515,"id_str":"3563698515","name":"G\u00fclender","screen_name":"rarerrose","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":22,"listed_count":0,"favourites_count":310,"statuses_count":507,"created_at":"Sun Sep 06 07:11:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658064070994694145\/NBPK-uQD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658064070994694145\/NBPK-uQD_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:25:50 +0000 2015","id":663482586816188417,"id_str":"663482586816188417","text":"Can\u0131m o\u011flum hasta oldum diye gidip \u0131hlamur alm\u0131\u015f https:\/\/t.co\/876LwzdiEx","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3394627179,"id_str":"3394627179","name":"saliha turna","screen_name":"salihaturnaCHP","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9143,"friends_count":0,"listed_count":5,"favourites_count":1073,"statuses_count":189,"created_at":"Wed Jul 29 22:56:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626687286571331584\/tJRb6gxe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626687286571331584\/tJRb6gxe_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":98,"favorite_count":197,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663482586665209856,"id_str":"663482586665209856","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","url":"https:\/\/t.co\/876LwzdiEx","display_url":"pic.twitter.com\/876LwzdiEx","expanded_url":"http:\/\/twitter.com\/salihaturnaCHP\/status\/663482586816188417\/photo\/1","type":"photo","sizes":{"large":{"w":443,"h":290,"resize":"fit"},"medium":{"w":443,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663482586665209856,"id_str":"663482586665209856","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","url":"https:\/\/t.co\/876LwzdiEx","display_url":"pic.twitter.com\/876LwzdiEx","expanded_url":"http:\/\/twitter.com\/salihaturnaCHP\/status\/663482586816188417\/photo\/1","type":"photo","sizes":{"large":{"w":443,"h":290,"resize":"fit"},"medium":{"w":443,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"salihaturnaCHP","name":"saliha turna","id":3394627179,"id_str":"3394627179","indices":[3,18]}],"symbols":[],"media":[{"id":663482586665209856,"id_str":"663482586665209856","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","url":"https:\/\/t.co\/876LwzdiEx","display_url":"pic.twitter.com\/876LwzdiEx","expanded_url":"http:\/\/twitter.com\/salihaturnaCHP\/status\/663482586816188417\/photo\/1","type":"photo","sizes":{"large":{"w":443,"h":290,"resize":"fit"},"medium":{"w":443,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663482586816188417,"source_status_id_str":"663482586816188417","source_user_id":3394627179,"source_user_id_str":"3394627179"}]},"extended_entities":{"media":[{"id":663482586665209856,"id_str":"663482586665209856","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUp5bTWUAASO9N.jpg","url":"https:\/\/t.co\/876LwzdiEx","display_url":"pic.twitter.com\/876LwzdiEx","expanded_url":"http:\/\/twitter.com\/salihaturnaCHP\/status\/663482586816188417\/photo\/1","type":"photo","sizes":{"large":{"w":443,"h":290,"resize":"fit"},"medium":{"w":443,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":222,"resize":"fit"}},"source_status_id":663482586816188417,"source_status_id_str":"663482586816188417","source_user_id":3394627179,"source_user_id_str":"3394627179"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750234624,"id_str":"663728202750234624","text":"RT @zloudlouis: sin duda mitam fue la mejor manera de terminar una fase en la historia de 1d y dar inicio a otra porque ese \u00e1lbum esta hech\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3122762471,"id_str":"3122762471","name":"Soph\/\/4 dias\u2661","screen_name":"Soffyck91","location":null,"url":null,"description":"Directioner\/Lovatic\/Bambina\/Beast\/Fangril\n is perfect.\nI'm not paper doll","protected":false,"verified":false,"followers_count":321,"friends_count":735,"listed_count":0,"favourites_count":27,"statuses_count":7136,"created_at":"Sat Mar 28 01:47:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623692743882207232\/4JkuD6Oo.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623692743882207232\/4JkuD6Oo.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659865412360912897\/uJ5qcFI5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659865412360912897\/uJ5qcFI5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3122762471\/1445275632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:27:32 +0000 2015","id":663407517196804097,"id_str":"663407517196804097","text":"sin duda mitam fue la mejor manera de terminar una fase en la historia de 1d y dar inicio a otra porque ese \u00e1lbum esta hecho de oro puro","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212237453,"id_str":"212237453","name":"y\u0119n,,,","screen_name":"zloudlouis","location":"ecuador","url":"http:\/\/www.ask.fm\/zaynperfx","description":":\uff65\uff9f\u2727till the end we are one direction and we are here to stay:\uff65\uff9f\u2727 welcome to the badlands ,,,","protected":false,"verified":false,"followers_count":22239,"friends_count":6998,"listed_count":70,"favourites_count":9589,"statuses_count":81055,"created_at":"Fri Nov 05 14:29:13 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556818884552978433\/7OzgPLF5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556818884552978433\/7OzgPLF5.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663479199819300865\/C3x9yc4-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663479199819300865\/C3x9yc4-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212237453\/1447020953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zloudlouis","name":"y\u0119n,,,","id":212237453,"id_str":"212237453","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729299968,"id_str":"663728202729299968","text":"RT @Glejim_Julija: https:\/\/t.co\/KEXhSLRyfQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2451577736,"id_str":"2451577736","name":"\u0418\u0433\u043d\u0430\u0442\u043e\u0432 \u0414\u043c\u0438\u0442\u0440\u0438\u0439","screen_name":"IgnatovDmitriji","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":73,"friends_count":354,"listed_count":0,"favourites_count":0,"statuses_count":603,"created_at":"Fri Apr 18 15:58:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457565180910505985\/shZw2a9a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457565180910505985\/shZw2a9a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2451577736\/1398088328","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 07:21:47 +0000 2015","id":661080750171770880,"id_str":"661080750171770880","text":"https:\/\/t.co\/KEXhSLRyfQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2243696142,"id_str":"2243696142","name":"\u0413\u043b\u0435\u0439\u043c \u042e\u043b\u0438\u044f","screen_name":"Glejim_Julija","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9045,"friends_count":65,"listed_count":0,"favourites_count":0,"statuses_count":214,"created_at":"Fri Dec 13 10:17:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000865924771\/bDBOXKjC_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000865924771\/bDBOXKjC_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2243696142\/1386929840","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661080745855852544,"id_str":"661080745855852544","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","url":"https:\/\/t.co\/KEXhSLRyfQ","display_url":"pic.twitter.com\/KEXhSLRyfQ","expanded_url":"http:\/\/twitter.com\/Glejim_Julija\/status\/661080750171770880\/photo\/1","type":"photo","sizes":{"medium":{"w":130,"h":97,"resize":"fit"},"thumb":{"w":130,"h":97,"resize":"crop"},"small":{"w":130,"h":97,"resize":"fit"},"large":{"w":130,"h":97,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661080745855852544,"id_str":"661080745855852544","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","url":"https:\/\/t.co\/KEXhSLRyfQ","display_url":"pic.twitter.com\/KEXhSLRyfQ","expanded_url":"http:\/\/twitter.com\/Glejim_Julija\/status\/661080750171770880\/photo\/1","type":"photo","sizes":{"medium":{"w":130,"h":97,"resize":"fit"},"thumb":{"w":130,"h":97,"resize":"crop"},"small":{"w":130,"h":97,"resize":"fit"},"large":{"w":130,"h":97,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Glejim_Julija","name":"\u0413\u043b\u0435\u0439\u043c \u042e\u043b\u0438\u044f","id":2243696142,"id_str":"2243696142","indices":[3,17]}],"symbols":[],"media":[{"id":661080745855852544,"id_str":"661080745855852544","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","url":"https:\/\/t.co\/KEXhSLRyfQ","display_url":"pic.twitter.com\/KEXhSLRyfQ","expanded_url":"http:\/\/twitter.com\/Glejim_Julija\/status\/661080750171770880\/photo\/1","type":"photo","sizes":{"medium":{"w":130,"h":97,"resize":"fit"},"thumb":{"w":130,"h":97,"resize":"crop"},"small":{"w":130,"h":97,"resize":"fit"},"large":{"w":130,"h":97,"resize":"fit"}},"source_status_id":661080750171770880,"source_status_id_str":"661080750171770880","source_user_id":2243696142,"source_user_id_str":"2243696142"}]},"extended_entities":{"media":[{"id":661080745855852544,"id_str":"661080745855852544","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSyhb5CWoAA-J4t.jpg","url":"https:\/\/t.co\/KEXhSLRyfQ","display_url":"pic.twitter.com\/KEXhSLRyfQ","expanded_url":"http:\/\/twitter.com\/Glejim_Julija\/status\/661080750171770880\/photo\/1","type":"photo","sizes":{"medium":{"w":130,"h":97,"resize":"fit"},"thumb":{"w":130,"h":97,"resize":"crop"},"small":{"w":130,"h":97,"resize":"fit"},"large":{"w":130,"h":97,"resize":"fit"}},"source_status_id":661080750171770880,"source_status_id_str":"661080750171770880","source_user_id":2243696142,"source_user_id_str":"2243696142"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202712526849,"id_str":"663728202712526849","text":"shes back at work today like nothing.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67088926,"id_str":"67088926","name":"\u306eaniela \u2111ade \u062a","screen_name":"xODanielaJade","location":null,"url":null,"description":"Either you run the day, or the day runs you.","protected":false,"verified":false,"followers_count":252,"friends_count":361,"listed_count":1,"favourites_count":452,"statuses_count":9192,"created_at":"Wed Aug 19 19:08:02 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660939234975621120\/7ZfWksI__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660939234975621120\/7ZfWksI__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67088926\/1446414737","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109657"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202720919552,"id_str":"663728202720919552","text":"#NFL player turned #addiction counselor Bob Newton inspires #prep #athletes. #PreventionWorks https:\/\/t.co\/W8BzUEhjsO","source":"\u003ca href=\"https:\/\/getbambu.com\" rel=\"nofollow\"\u003eBambu by Sprout Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262479748,"id_str":"262479748","name":"Lisa Stangl","screen_name":"LisaStangl","location":"Minneapolis, Minnesota","url":"http:\/\/www.razrmarketing.com","description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":18,"listed_count":0,"favourites_count":0,"statuses_count":24,"created_at":"Tue Mar 08 03:41:39 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1797379891\/eLisaStangl_sml_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1797379891\/eLisaStangl_sml_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NFL","indices":[0,4]},{"text":"addiction","indices":[19,29]},{"text":"prep","indices":[60,65]},{"text":"athletes","indices":[66,75]},{"text":"PreventionWorks","indices":[77,93]}],"urls":[{"url":"https:\/\/t.co\/W8BzUEhjsO","expanded_url":"http:\/\/bit.ly\/1H7tdw9","display_url":"bit.ly\/1H7tdw9","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109659"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202720776193,"id_str":"663728202720776193","text":"RT @TaufiqMNi: Selagi tak diuji, kita tak tahu takat mana kebergantungan kita dengan Allah.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":610520060,"id_str":"610520060","name":"Ridzwan Ghazali","screen_name":"ridzwan_99","location":"Malaysia","url":"http:\/\/Instagram.com\/ridzwanghazali","description":"Gen 16 SMiK | Muslim | LFC Fans | Photography, Aviation, Special Forces Enthusiast | Backpackers","protected":false,"verified":false,"followers_count":114,"friends_count":146,"listed_count":1,"favourites_count":6755,"statuses_count":2095,"created_at":"Sun Jun 17 04:58:39 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653945398831132672\/H0o-GqJ9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653945398831132672\/H0o-GqJ9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/610520060\/1445225709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:09 +0000 2015","id":663727532341116928,"id_str":"663727532341116928","text":"Selagi tak diuji, kita tak tahu takat mana kebergantungan kita dengan Allah.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":936611803,"id_str":"936611803","name":"\u062a\u0648\u0641\u064a\u0642","screen_name":"TaufiqMNi","location":"KL","url":"http:\/\/ask.fm\/taufiqmni","description":"Hidup bukan sekadar hidup. Malah lebih dari itu. Hidup seperti hamba dan khalifah.","protected":false,"verified":false,"followers_count":494,"friends_count":449,"listed_count":4,"favourites_count":8529,"statuses_count":27433,"created_at":"Fri Nov 09 10:43:43 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652435952908959744\/rkhbyJM2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652435952908959744\/rkhbyJM2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/936611803\/1446997706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TaufiqMNi","name":"\u062a\u0648\u0641\u064a\u0642","id":936611803,"id_str":"936611803","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080109659"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750279681,"id_str":"663728202750279681","text":"RT @51Badiei: H https:\/\/t.co\/GtzxpHAy57","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":809436014,"id_str":"809436014","name":"saeed jahangiri","screen_name":"saeedjahangiri1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":303,"friends_count":161,"listed_count":8,"favourites_count":11,"statuses_count":12613,"created_at":"Fri Sep 07 19:14:15 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"fa","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625114964425089024\/T9stqbbG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625114964425089024\/T9stqbbG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/809436014\/1437915913","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:06:27 +0000 2015","id":663628706829701120,"id_str":"663628706829701120","text":"H https:\/\/t.co\/GtzxpHAy57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2198357618,"id_str":"2198357618","name":"hossin badiei","screen_name":"51Badiei","location":"germany","url":null,"description":null,"protected":false,"verified":false,"followers_count":938,"friends_count":960,"listed_count":14,"favourites_count":42,"statuses_count":31393,"created_at":"Sat Nov 16 20:20:35 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"24B300","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484448909335351296\/R2DodpnX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484448909335351296\/R2DodpnX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2198357618\/1411358166","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663467318677123073,"quoted_status_id_str":"663467318677123073","quoted_status":{"created_at":"Sun Nov 08 21:25:10 +0000 2015","id":663467318677123073,"id_str":"663467318677123073","text":"#Iran #News Russia, Britain ramp up efforts to return stuck Egypt tourists https:\/\/t.co\/l79UBGP673 https:\/\/t.co\/bYekh5HdER","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62088756,"id_str":"62088756","name":"P.M.O.I","screen_name":"Mojahedineng","location":"IRAN","url":"http:\/\/mojahedin.org\/pagesen\/index.aspx","description":"The PMOI seeks 2 replace Iran\u2019s religious dictatorship with a secular, pluralistic, democratic government that respects individual freedoms and gender equality.","protected":false,"verified":false,"followers_count":4634,"friends_count":2,"listed_count":143,"favourites_count":46,"statuses_count":87344,"created_at":"Sat Aug 01 18:28:15 +0000 2009","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3173295102\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3173295102\/f160eefbf0125c34aa1195a31c897286_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62088756\/1383225956","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Iran","indices":[0,5]},{"text":"News","indices":[6,11]}],"urls":[{"url":"https:\/\/t.co\/l79UBGP673","expanded_url":"http:\/\/dlvr.it\/ChHHKq","display_url":"dlvr.it\/ChHHKq","indices":[75,98]}],"user_mentions":[],"symbols":[],"media":[{"id":663467318610038788,"id_str":"663467318610038788","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcAtXVEAQQ9jR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcAtXVEAQQ9jR.jpg","url":"https:\/\/t.co\/bYekh5HdER","display_url":"pic.twitter.com\/bYekh5HdER","expanded_url":"http:\/\/twitter.com\/Mojahedineng\/status\/663467318677123073\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663467318610038788,"id_str":"663467318610038788","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUcAtXVEAQQ9jR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUcAtXVEAQQ9jR.jpg","url":"https:\/\/t.co\/bYekh5HdER","display_url":"pic.twitter.com\/bYekh5HdER","expanded_url":"http:\/\/twitter.com\/Mojahedineng\/status\/663467318677123073\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":250,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":250,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GtzxpHAy57","expanded_url":"https:\/\/twitter.com\/Mojahedineng\/status\/663467318677123073","display_url":"twitter.com\/Mojahedineng\/s\u2026","indices":[2,25]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GtzxpHAy57","expanded_url":"https:\/\/twitter.com\/Mojahedineng\/status\/663467318677123073","display_url":"twitter.com\/Mojahedineng\/s\u2026","indices":[16,39]}],"user_mentions":[{"screen_name":"51Badiei","name":"hossin badiei","id":2198357618,"id_str":"2198357618","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741780481,"id_str":"663728202741780481","text":"\uc544\ub2c8\ub2e4 \ud559\uad50\uc0dd\ud65c\uc744 \uc9c0\uae08\ubd80\ud130 \ubcfc\uae4c","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1348431979,"id_str":"1348431979","name":"\uc0c1\ubcd1 \uae40\ucee4\ud53c","screen_name":"CooL__CoFFee","location":"\ub300\uad6c\/\uac15\uc6d0\ub3c4 \ud6a1\uc131","url":null,"description":"14.12.29 ~ 16.09.28\/\ub9ac\uac8c\uc774\/\u3042\u3055\u304d\/NANO\/\ud314\ud47c\uc774 @H_Len_","protected":false,"verified":false,"followers_count":219,"friends_count":245,"listed_count":8,"favourites_count":147,"statuses_count":94516,"created_at":"Sat Apr 13 05:20:48 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611502580175278080\/IOYHofC__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611502580175278080\/IOYHofC__normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1348431979\/1430140580","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202716545024,"id_str":"663728202716545024","text":"@CuteeKriti chelsi . . aajkal ki is duniya me . . har rishthe me sward hoti hai","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727398400061441,"in_reply_to_status_id_str":"663727398400061441","in_reply_to_user_id":2807137424,"in_reply_to_user_id_str":"2807137424","in_reply_to_screen_name":"CuteeKriti","user":{"id":2423553722,"id_str":"2423553722","name":"subhashini","screen_name":"jalaljodharaj","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":895,"friends_count":4,"listed_count":3,"favourites_count":1001,"statuses_count":35849,"created_at":"Wed Apr 02 09:59:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661081092665950208\/h-kZFn-U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661081092665950208\/h-kZFn-U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423553722\/1398136125","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CuteeKriti","name":"MD L0VER","id":2807137424,"id_str":"2807137424","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080109658"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202737516544,"id_str":"663728202737516544","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3860557152,"id_str":"3860557152","name":"dominque langman","screen_name":"curnutttf37","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":191,"friends_count":231,"listed_count":11,"favourites_count":13235,"statuses_count":14116,"created_at":"Sun Oct 11 17:16:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653692931614740480\/G8VggQt3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653692931614740480\/G8VggQt3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3860557152\/1444687497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":758,"favorite_count":447,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109663"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741760001,"id_str":"663728202741760001","text":"Lets leave the country for a couple weeks","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253845095,"id_str":"253845095","name":"Dereon From Da 5","screen_name":"PoloKingIV_","location":" Miami, FL ","url":null,"description":"Follow Your Passion And It Will Never Feel Like Work d.broderick20@outlook.com","protected":false,"verified":false,"followers_count":2963,"friends_count":2194,"listed_count":1,"favourites_count":3748,"statuses_count":18778,"created_at":"Fri Feb 18 02:37:05 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/439038906483212289\/RawzLYWP.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/439038906483212289\/RawzLYWP.png","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662532578474385408\/_SaexloS_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662532578474385408\/_SaexloS_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253845095\/1446795022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202745950209,"id_str":"663728202745950209","text":"RT @AdorableWords: i have anger issues. i get irritated fast af & can catch an attitude in 3 seconds, but i'm a sweetheart i swear","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406119724,"id_str":"406119724","name":"Jericka Mallillin","screen_name":"iamjerickaaaaaa","location":"mnl","url":"http:\/\/www.facebook.com\/iamjerickaaa","description":"6teen | don't you dare to unfollow me, asshole \u2716\ufe0f","protected":false,"verified":false,"followers_count":1442,"friends_count":697,"listed_count":2,"favourites_count":5235,"statuses_count":40565,"created_at":"Sun Nov 06 08:27:21 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/515835583109681152\/HoqeqA-X.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/515835583109681152\/HoqeqA-X.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660324983621599232\/WerpHi7S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660324983621599232\/WerpHi7S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406119724\/1445744950","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:03:12 +0000 2015","id":663401395991781376,"id_str":"663401395991781376","text":"i have anger issues. i get irritated fast af & can catch an attitude in 3 seconds, but i'm a sweetheart i swear","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412948496,"id_str":"412948496","name":"Too Sassy","screen_name":"AdorableWords","location":"adorablewordspromo@gmail.com","url":null,"description":"have a sassy mouth but hella sensitive at the same time [feel free to send in submission]","protected":false,"verified":false,"followers_count":2185608,"friends_count":220,"listed_count":1998,"favourites_count":702,"statuses_count":9202,"created_at":"Tue Nov 15 09:41:26 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508501292759539712\/U0NHh1WS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508501292759539712\/U0NHh1WS.jpeg","profile_background_tile":true,"profile_link_color":"FAAABA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"277574","profile_text_color":"257055","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610851759985000448\/XHUdTByy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610851759985000448\/XHUdTByy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412948496\/1441293777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2035,"favorite_count":2379,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AdorableWords","name":"Too Sassy","id":412948496,"id_str":"412948496","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109665"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202720739328,"id_str":"663728202720739328","text":"#Pron\u00f3stico para #ChileChico #Lunes 09 Noviembre 2015\nDirecci\u00f3n Meteorol\u00f3gica de Chile... https:\/\/t.co\/P2L5uzPH4B","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794498749,"id_str":"794498749","name":"Radio Genial 100.5","screen_name":"RadioGenialFM","location":"Coyhaique, Regi\u00f3n de Aysen","url":"http:\/\/www.radiogenial.cl","description":"Radio Genial 100.5 FM con \u00a1La mejor m\u00fasica de tu vida! Cl\u00e1sicos del Rock, Pop y Dance 80's, 90's y 2000 lo mas destacado de la Vanguardia. Solo \u00e9xitos.","protected":false,"verified":false,"followers_count":4560,"friends_count":4401,"listed_count":34,"favourites_count":692,"statuses_count":22794,"created_at":"Fri Aug 31 19:16:27 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000042547231\/b206897743f06169450a3b3ed7fce2ff.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000042547231\/b206897743f06169450a3b3ed7fce2ff.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656205572677746688\/PIiL7JhB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656205572677746688\/PIiL7JhB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/794498749\/1397567446","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Pron\u00f3stico","indices":[0,11]},{"text":"ChileChico","indices":[17,28]},{"text":"Lunes","indices":[29,35]}],"urls":[{"url":"https:\/\/t.co\/P2L5uzPH4B","expanded_url":"http:\/\/fb.me\/6PIFET5vc","display_url":"fb.me\/6PIFET5vc","indices":[90,113]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109659"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202745933824,"id_str":"663728202745933824","text":"Tl jorok ah pembicaraannya","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3072269094,"id_str":"3072269094","name":"\u3164h","screen_name":"severcn","location":null,"url":null,"description":"#DSA - A5933. kurisu sen jangan ngambek hehe.","protected":false,"verified":false,"followers_count":405,"friends_count":388,"listed_count":3,"favourites_count":532,"statuses_count":27652,"created_at":"Wed Mar 11 03:38:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662313406834176000\/S1G79Srj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662313406834176000\/S1G79Srj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3072269094\/1445618099","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080109665"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202725105664,"id_str":"663728202725105664","text":"@HRD63 @ReasonToLive666 rutas? viajas por el interior? cuando salgo me persigno para llegar vivo a destino, literal","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727943936552960,"in_reply_to_status_id_str":"663727943936552960","in_reply_to_user_id":4069763853,"in_reply_to_user_id_str":"4069763853","in_reply_to_screen_name":"HRD63","user":{"id":2798590208,"id_str":"2798590208","name":"TheWachooPoronga","screen_name":"thewachoporonga","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":43,"friends_count":494,"listed_count":0,"favourites_count":642,"statuses_count":2111,"created_at":"Mon Sep 08 20:48:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509087292653195264\/HXDGRAUY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509087292653195264\/HXDGRAUY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HRD63","name":"Hector Diaz","id":4069763853,"id_str":"4069763853","indices":[0,6]},{"screen_name":"ReasonToLive666","name":"Silvana ADN K\u2665","id":130950872,"id_str":"130950872","indices":[7,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202745933825,"id_str":"663728202745933825","text":"\u4eca\u65e5\u306eTL\u697d\u3057\u304b\u3063\u305f\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3615671118,"id_str":"3615671118","name":"\u308a\u306c","screen_name":"liiiiiinu","location":null,"url":null,"description":"\u65b0\u898fV6\u30d5\u30a1\u30f3\u3067\u3059\u3002\u793e\u4f1a\u4eba\u3067\u3059\u300220\u5468\u5e74\u3068\u3044\u3046\u304a\u796d\u308a\u306b\u53c2\u52a0\u3067\u304d\u3066\u5e78\u305b\uff01","protected":false,"verified":false,"followers_count":9,"friends_count":58,"listed_count":0,"favourites_count":148,"statuses_count":46,"created_at":"Sat Sep 19 12:10:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645209340853383168\/iI-WJeJy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645209340853383168\/iI-WJeJy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109665"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741739520,"id_str":"663728202741739520","text":"@yukirinlove_Rjk \n\u80cc\u666f1\u304b4\n\u3086\u304d\u308a\u30934\n\u5b57\u4f533\n\u3067\u304a\u9858\u3044\u3057\u305f\u3044\u2026\ud83d\ude0a\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663657650995879936,"in_reply_to_status_id_str":"663657650995879936","in_reply_to_user_id":1246149704,"in_reply_to_user_id_str":"1246149704","in_reply_to_screen_name":"yukirinlove_Rjk","user":{"id":1331062100,"id_str":"1331062100","name":"\u304b\u3056\u308a\u3093","screen_name":"kzr_as","location":"\u3086\u304d\u308a\u3093\u30ef\u30fc\u30eb\u30c9","url":null,"description":"\u304b\u3056\u308a\u3093\u306b\u306f\u67cf\u6728\u7531\u7d00\u3061\u3083\u3093\u3060\u3051\u3067\u3059\u300296line \u2606\u4ed5\u696d\u4f1a\u2606 \u53cc\u5b50\u3061\u3083\u3093\u2192[@yu___7rin]\u2764\ufe0e \u59b9\u3061\u3083\u3093\u2192[@__pry503]\u2764\ufe0e","protected":false,"verified":false,"followers_count":901,"friends_count":105,"listed_count":26,"favourites_count":809,"statuses_count":8530,"created_at":"Sat Apr 06 08:29:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662543536798068736\/rZVDtMFE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662543536798068736\/rZVDtMFE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1331062100\/1442019623","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yukirinlove_Rjk","name":"\uff7c\uff6e\uff70\uff84\uff79\uff70\uff77","id":1246149704,"id_str":"1246149704","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729172992,"id_str":"663728202729172992","text":"@maa__0201 \n\u3046\u30fc\u30fc\u30fc\u30fc\u30fc\u3048\u304a\uff01\u5922\u305f\u3093\u30bb\u30ca\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727797819445249,"in_reply_to_status_id_str":"663727797819445249","in_reply_to_user_id":2817131461,"in_reply_to_user_id_str":"2817131461","in_reply_to_screen_name":"maa__0201","user":{"id":2463936349,"id_str":"2463936349","name":"\u5b9f\u7d05","screen_name":"miiiiii_x","location":"\u661f\u306b\u9858\u3044\u3092\u306a\u3093\u3066\u67c4\u3058\u3083\u306a\u3044\u3051\u3069","url":null,"description":null,"protected":false,"verified":false,"followers_count":548,"friends_count":473,"listed_count":0,"favourites_count":14902,"statuses_count":6684,"created_at":"Sat Apr 26 02:01:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662202103624941568\/bJq7KT0P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662202103624941568\/bJq7KT0P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2463936349\/1444290157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maa__0201","name":"\u771f\u7d17\u5e0c","id":2817131461,"id_str":"2817131461","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202745974784,"id_str":"663728202745974784","text":"@AmirAddinn padia ni ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726349639544834,"in_reply_to_status_id_str":"663726349639544834","in_reply_to_user_id":591892594,"in_reply_to_user_id_str":"591892594","in_reply_to_screen_name":"AmirAddinn","user":{"id":3284085222,"id_str":"3284085222","name":"A Y U Y","screen_name":"azrulasari","location":"Cameron Highlands, Pahang","url":"http:\/\/Instagram.com\/azrulasari_","description":"~~96's~~","protected":false,"verified":false,"followers_count":107,"friends_count":112,"listed_count":0,"favourites_count":245,"statuses_count":827,"created_at":"Sun Jul 19 08:11:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663065205035831296\/8HuDC3fe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663065205035831296\/8HuDC3fe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284085222\/1437311219","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AmirAddinn","name":"Addin","id":591892594,"id_str":"591892594","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080109665"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729152512,"id_str":"663728202729152512","text":"RT @ishincheck: https:\/\/t.co\/y9zaRZsult\n\u6c34\u9053\u7ba1\u7834\u88c2\u2026\u5e97\u306b\u88ab\u5bb3\u3082\uff5e\u5927\u962a\u5e02\u963f\u500d\u91ce\u533a\n\n\u5927\u962a\u5e02\u306e\u6c34\u9053\u7ba1\u304c\u7834\u88c2\u3057\u3001\u4ed8\u8fd1\u304c\u88ab\u5bb3\u306b\u906d\u3063\u3066\u3044\u308b\u306e\u306b\u3001\n\u6a4b\u4e0b\u5fb9\u5927\u962a\u5e02\u9577\u306f\u4eca\u65e5\u3082\u300c\u516c\u52d9\u65e5\u7a0b\u306a\u3057\u300d\u3002\n\u305d\u3057\u3066\u6c34\u9053\u7ba1\u304c\u7834\u88c2\u3057\u305f\u963f\u500d\u91ce\u533a\u5185\u3067\u30ce\u30f3\u30ad\u306b\u306b\u9078\u6319\u6d3b\u52d5\u3002\n\n\u76f8\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190072156,"id_str":"190072156","name":"\u3044\u3063\u3057\u30fc","screen_name":"hiroki19820825","location":"\u5927\u962a\u5e9c \u5927\u962a\u5e02 ","url":null,"description":"\u3046\u3064\u75c5\u3067\u7642\u990a\u4e2d\u3067\u3059\u3002\n\u6a4b\u4e0b\u5fb9\u3055\u3093\u304c\u5acc\u3044\u306e\u7121\u515a\u6d3e\u5c64\u3067\u3059\u3002\u7121\u515a\u6d3e\u5c64\u3067\u3059\u304c\u5927\u962a\u7dad\u65b0\u306e\u4f1a\u306e\u5927\u962a\u90fd\u69cb\u60f3\u518d\u8d77\u52d5\u306b\u30b9\u30c8\u30c3\u30d7\u3092\u304b\u3051\u305f\u3044\u3067\u3059\u3002\u4f4f\u6c11\u6295\u7968\u306e\u7d50\u679c\u3092\u5426\u5b9a\u3059\u308b\u306e\u306f\u8a31\u305b\u306a\u3044\u3067\u3059\u3002\n\u5927\u962a\u306e\u73fe\u5b9f\u3084\u672a\u6765\u306b\u5371\u60e7\u3092\u62b1\u3044\u3066\u3044\u307e\u3059\u3002\u5927\u962a\u7dad\u65b0\u306e\u4f1a\u3068\u5927\u962a\u81ea\u6c11\u515a\u306e\u5bfe\u7acb\u304c\u5bfe\u8a71\u3067\u6b62\u307e\u3063\u3066\u6b32\u3057\u3044\u3068\u9858\u3044\u307e\u3059\u3002\u672c\u5f53\u306e\u610f\u5473\u3067\u5927\u962a\u304c\u524d\u9032\u3059\u308b\u3053\u3068\u3092\u9858\u3063\u3066\u3084\u307f\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":243,"friends_count":561,"listed_count":1,"favourites_count":18546,"statuses_count":10361,"created_at":"Mon Sep 13 00:41:24 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1122649983\/ORION-02_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1122649983\/ORION-02_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:50 +0000 2015","id":663723927944826880,"id_str":"663723927944826880","text":"https:\/\/t.co\/y9zaRZsult\n\u6c34\u9053\u7ba1\u7834\u88c2\u2026\u5e97\u306b\u88ab\u5bb3\u3082\uff5e\u5927\u962a\u5e02\u963f\u500d\u91ce\u533a\n\n\u5927\u962a\u5e02\u306e\u6c34\u9053\u7ba1\u304c\u7834\u88c2\u3057\u3001\u4ed8\u8fd1\u304c\u88ab\u5bb3\u306b\u906d\u3063\u3066\u3044\u308b\u306e\u306b\u3001\n\u6a4b\u4e0b\u5fb9\u5927\u962a\u5e02\u9577\u306f\u4eca\u65e5\u3082\u300c\u516c\u52d9\u65e5\u7a0b\u306a\u3057\u300d\u3002\n\u305d\u3057\u3066\u6c34\u9053\u7ba1\u304c\u7834\u88c2\u3057\u305f\u963f\u500d\u91ce\u533a\u5185\u3067\u30ce\u30f3\u30ad\u306b\u306b\u9078\u6319\u6d3b\u52d5\u3002\n\n\u76f8\u5909\u308f\u3089\u305a\u6a4b\u4e0b\u7dad\u65b0\u306f\u7121\u795e\u7d4c\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":606171251,"id_str":"606171251","name":"\u3082\u3046\uff13\uff13\uff20\u90fd\u69cb\u60f3\u5426\u6c7a\u306f\u6cd5\u7684\u62d8\u675f\u529b\u3092\u6709\u3059\u308b","screen_name":"ishincheck","location":"\u5927\u962a\u5e02","url":null,"description":"\u300c\u3082\u3046\u3059\u3050\uff13\uff13\u6b73\u300d\n\n\u6a4b\u4e0b\u7dad\u65b0\u306b\u61d0\u7591\u7684\u306a\u5927\u962a\u5e02\u6c11\u3067\u3059\u3002\u7279\u306b\u5927\u962a\u90fd\u69cb\u60f3\u3001\u5c0f\u4e2d\u4e00\u8cab\u6821\u30fb\u5b66\u6821\u9078\u629e\u5236\u3001\u6587\u5316\u884c\u653f\u3001\u6559\u80b2\u30fb\u798f\u7949\u653f\u7b56\u3001WTC\u5e9c\u5e81\u79fb\u8ee2\u306b\u306f\u5426\u5b9a\u7684\u7acb\u5834\u3067\u3059\u3002\u3044\u308d\u3093\u306a\u610f\u898b\u3084\u7591\u554f\u3001\u60c5\u5831\u3092\u3069\u3093\u3069\u3093\u767a\u4fe1\u3057\u307e\u3059\u3002\u30ea\u30c4\u30a4\u30fc\u30c8\u5927\u6b53\u8fce\u3002\u65e2\u5b58\u30e1\u30c7\u30a3\u30a2\u306f\u3082\u3046\u30a2\u30c6\u306b\u3067\u304d\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":2628,"friends_count":112,"listed_count":98,"favourites_count":1031,"statuses_count":39427,"created_at":"Tue Jun 12 09:19:47 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B3003C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565180310170509312\/Jk1PpCux_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565180310170509312\/Jk1PpCux_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/y9zaRZsult","expanded_url":"http:\/\/headlines.yahoo.co.jp\/hl?a=20151109-00000053-mbsnewsv-soci","display_url":"headlines.yahoo.co.jp\/hl?a=20151109-\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/y9zaRZsult","expanded_url":"http:\/\/headlines.yahoo.co.jp\/hl?a=20151109-00000053-mbsnewsv-soci","display_url":"headlines.yahoo.co.jp\/hl?a=20151109-\u2026","indices":[16,39]}],"user_mentions":[{"screen_name":"ishincheck","name":"\u3082\u3046\uff13\uff13\uff20\u90fd\u69cb\u60f3\u5426\u6c7a\u306f\u6cd5\u7684\u62d8\u675f\u529b\u3092\u6709\u3059\u308b","id":606171251,"id_str":"606171251","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202716610560,"id_str":"663728202716610560","text":"\u6728\u306b\u7a81\u3063\u8fbc\u3093\u3060\u3068\u3053\u308d\u4eba\u306b\u898b\u3089\u308c\u305f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3282038815,"id_str":"3282038815","name":"\u3042\u3051\u306e\u3093\u301f ","screen_name":"x1essonhearsee_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":170,"friends_count":1455,"listed_count":0,"favourites_count":0,"statuses_count":1647,"created_at":"Fri Jul 17 02:47:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624769798509998080\/gaUQM6CI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624769798509998080\/gaUQM6CI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3282038815\/1437791701","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109658"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202725138432,"id_str":"663728202725138432","text":"RT @girlideas: Girls will always expect a reply, even if their last message wasn't replyable. You better think of a reply or start a new co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":517800249,"id_str":"517800249","name":"eva tee","screen_name":"evatomkins1","location":"Manchester, England","url":null,"description":"morecambe\/ Manchester mmu second year","protected":false,"verified":false,"followers_count":4028,"friends_count":3522,"listed_count":2,"favourites_count":1848,"statuses_count":30596,"created_at":"Wed Mar 07 17:52:28 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646816904573751296\/_OML3wTO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646816904573751296\/_OML3wTO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/517800249\/1445294392","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:05 +0000 2015","id":663726509190983680,"id_str":"663726509190983680","text":"Girls will always expect a reply, even if their last message wasn't replyable. You better think of a reply or start a new conversation smh","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131752870,"id_str":"131752870","name":"ok","screen_name":"girlideas","location":null,"url":"http:\/\/howteenagers.com","description":"nap time","protected":false,"verified":false,"followers_count":2144358,"friends_count":100,"listed_count":6129,"favourites_count":2063,"statuses_count":79127,"created_at":"Sun Apr 11 06:28:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131752870\/1429655938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":185,"favorite_count":265,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"girlideas","name":"ok","id":131752870,"id_str":"131752870","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202724933632,"id_str":"663728202724933632","text":"RT @ara15still: \u521d\u6311\u6226!!\u5f85\u3061\u5408\u308f\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u3001\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059!!\n\n#\u5927\u91ce\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059\n#ARASHIANS\u306f\u30b9\u30eb\u30fc\u7981\u6b62 \n#ARASHIANS\u306e\u529b\u4fe1\u3058\u308b \n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\/AqB4EFG\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3841916953,"id_str":"3841916953","name":"chi--","screen_name":"chiii021028","location":null,"url":null,"description":"\u5d50\u3001TOKIO\u3001AAA\u3001\u30e2\u30fc\u30cb\u30f3\u30b0\u5a18\u3002\u3001\u77f3\u539f\u3055\u3068\u307f\u3001\u67d3\u8c37\u5c06\u592a\u3001\u8fbb\u672c\u8302\u96c4\u3001\u5409\u7530\u7950\u3001\u30bf\u30fc\u30b6\u30f3\u3001\u30d8\u30e9\u30af\u30ec\u30b9\u3001\u83c5\u7530\u5c06\u6689\u3001\u9060\u85e4\u61b2\u4e00\u3001maru\u3001\u3055\u307e\u3041\u301c\u305a\u3001\u6771\u4eac03","protected":false,"verified":false,"followers_count":114,"friends_count":225,"listed_count":0,"favourites_count":31,"statuses_count":310,"created_at":"Sat Oct 10 00:32:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652662032286650368\/njlHRNwJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652662032286650368\/njlHRNwJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3841916953\/1444441979","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 30 08:56:41 +0000 2015","id":649145830088163329,"id_str":"649145830088163329","text":"\u521d\u6311\u6226!!\u5f85\u3061\u5408\u308f\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u3001\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059!!\n\n#\u5927\u91ce\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059\n#ARASHIANS\u306f\u30b9\u30eb\u30fc\u7981\u6b62 \n#ARASHIANS\u306e\u529b\u4fe1\u3058\u308b \n#RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b http:\/\/t.co\/AqB4EFG4Mj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3724605553,"id_str":"3724605553","name":"\u3055 \u3068 \u3042 \u304d \u2741\u5fa9\u6d3b\u5f53\u9078\u3057\u305f\u3044\u2741","screen_name":"ara15still","location":"\u273f\u5927\u91ce\u667a\u273f\u6afb\u4e95\u7fd4\u273f\u76f8\u8449\u96c5\u7d00\u273f\u4e8c\u5bae\u548c\u4e5f\u273f\u677e\u672c\u6f64\u273f","url":null,"description":"\u3010\u5d50\u57a2\u3011\u798f\u5ca1\u52e2\uff0fLJK\uff0f\u5d50\uffe1\u03bf\u03bd\u0451\u2661\uff80\uff9e\uff72\uff7d\uff77(*\u00b4\u02d8`*)\uff0f\u2763FC\u4f1a\u54e1\u2763\uff0f\u667a \u304f\u3093\u3088\u308a\u306eall\u62c5\uff0ffollow\u3057\u3066\u304f\u3060\u3055\u3044\u2661\u5fa9\u6d3b\u5f53\u9078\u7948\u9858","protected":false,"verified":false,"followers_count":1441,"friends_count":1827,"listed_count":2,"favourites_count":373,"statuses_count":956,"created_at":"Tue Sep 29 09:59:25 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648895049820868609\/r0TcY3dl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648895049820868609\/r0TcY3dl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3724605553\/1444126868","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":563,"favorite_count":74,"entities":{"hashtags":[{"text":"\u5927\u91ce\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059","indices":[32,53]},{"text":"ARASHIANS\u306f\u30b9\u30eb\u30fc\u7981\u6b62","indices":[54,70]},{"text":"ARASHIANS\u306e\u529b\u4fe1\u3058\u308b","indices":[72,87]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[89,103]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":649145811121471488,"id_str":"649145811121471488","indices":[104,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":852,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":649145811121471488,"id_str":"649145811121471488","indices":[104,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":852,"h":480,"resize":"fit"}}},{"id":649145811121496064,"id_str":"649145811121496064","indices":[104,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUYAAL1Nq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUYAAL1Nq.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":649145811117301761,"id_str":"649145811117301761","indices":[104,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQcUYAEvlNk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQcUYAEvlNk.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":649145811117322240,"id_str":"649145811117322240","indices":[104,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQcUsAAFrVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQcUsAAFrVn.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":381,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":538,"resize":"fit"},"large":{"w":480,"h":538,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5927\u91ce\u304f\u3093\u306e\u8a95\u751f\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059","indices":[48,69]},{"text":"ARASHIANS\u306f\u30b9\u30eb\u30fc\u7981\u6b62","indices":[70,86]},{"text":"ARASHIANS\u306e\u529b\u4fe1\u3058\u308b","indices":[88,103]},{"text":"RT\u3057\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[105,119]}],"urls":[],"user_mentions":[{"screen_name":"ara15still","name":"\u3055 \u3068 \u3042 \u304d \u2741\u5fa9\u6d3b\u5f53\u9078\u3057\u305f\u3044\u2741","id":3724605553,"id_str":"3724605553","indices":[3,14]}],"symbols":[],"media":[{"id":649145811121471488,"id_str":"649145811121471488","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":852,"h":480,"resize":"fit"}},"source_status_id":649145830088163329,"source_status_id_str":"649145830088163329","source_user_id":3724605553,"source_user_id_str":"3724605553"}]},"extended_entities":{"media":[{"id":649145811121471488,"id_str":"649145811121471488","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUAAA01z9.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":852,"h":480,"resize":"fit"}},"source_status_id":649145830088163329,"source_status_id_str":"649145830088163329","source_user_id":3724605553,"source_user_id_str":"3724605553"},{"id":649145811121496064,"id_str":"649145811121496064","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQdUYAAL1Nq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQdUYAAL1Nq.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":649145830088163329,"source_status_id_str":"649145830088163329","source_user_id":3724605553,"source_user_id_str":"3724605553"},{"id":649145811117301761,"id_str":"649145811117301761","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQcUYAEvlNk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQcUYAEvlNk.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":649145830088163329,"source_status_id_str":"649145830088163329","source_user_id":3724605553,"source_user_id_str":"3724605553"},{"id":649145811117322240,"id_str":"649145811117322240","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CQI6rQcUsAAFrVn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CQI6rQcUsAAFrVn.jpg","url":"http:\/\/t.co\/AqB4EFG4Mj","display_url":"pic.twitter.com\/AqB4EFG4Mj","expanded_url":"http:\/\/twitter.com\/ara15still\/status\/649145830088163329\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":381,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":538,"resize":"fit"},"large":{"w":480,"h":538,"resize":"fit"}},"source_status_id":649145830088163329,"source_status_id_str":"649145830088163329","source_user_id":3724605553,"source_user_id_str":"3724605553"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729267200,"id_str":"663728202729267200","text":"@NathanF2703 Yes!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728122106388480,"in_reply_to_status_id_str":"663728122106388480","in_reply_to_user_id":2598366670,"in_reply_to_user_id_str":"2598366670","in_reply_to_screen_name":"NathanF2703","user":{"id":1901332754,"id_str":"1901332754","name":"Stana Katic","screen_name":"StanaK2603","location":"Los Angeles, CA","url":null,"description":"Stanathan RP","protected":false,"verified":false,"followers_count":210,"friends_count":105,"listed_count":2,"favourites_count":436,"statuses_count":48096,"created_at":"Tue Sep 24 18:14:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713816732172288\/YvK0ri-C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713816732172288\/YvK0ri-C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1901332754\/1447076182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NathanF2703","name":"Nathan Fillion","id":2598366670,"id_str":"2598366670","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202716606464,"id_str":"663728202716606464","text":"Natapos den \ud83d\ude13","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1913081246,"id_str":"1913081246","name":"Jvllcrz","screen_name":"Jovellelele","location":null,"url":null,"description":"Mataba na sexyyy ;)","protected":false,"verified":false,"followers_count":1016,"friends_count":1761,"listed_count":0,"favourites_count":7964,"statuses_count":5258,"created_at":"Sat Sep 28 04:24:02 +0000 2013","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B800B2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635366180769808384\/ZCUxONUO.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635366180769808384\/ZCUxONUO.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661056455760457728\/naWDDqz6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661056455760457728\/naWDDqz6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1913081246\/1445046135","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080109658"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202716581888,"id_str":"663728202716581888","text":"@chi_ta37 \n\u5371\u306a\u3044\u5371\u306a\u3044(((;\u00b0\u25bd\u00b0))\n\u307e\uff01\u3058\uff01\u304b\uff01\uff01\uff01\uff01\n\u305d\u308c\u30c1\u30a7\u30ad\u5ec3\u3001\u52e7\u3081\u3066\u308b\u3088\u3046\u306a\u3082\u3093\u3058\u3083\u301c\u3093(\u00b4\uff1b\u0414\uff1b\uff40)\n\u3081\u3063\u3061\u3083\u6b32\u3057\u3044\u2026\u2026\uff61\uff9f( \uff9f\u0b87\u03c9\u0b87\uff9f)\uff9f\uff61\n\u8cb7\u3046\u306e\u4f55\u5341\u679a\u5358\u4f4d\u3060\u3088\u306d(\u00b4\u25e6\u03c9\u25e6\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722419438247939,"in_reply_to_status_id_str":"663722419438247939","in_reply_to_user_id":3285134448,"in_reply_to_user_id_str":"3285134448","in_reply_to_screen_name":"chi_ta37","user":{"id":3074819005,"id_str":"3074819005","name":"\u307e\u3042\u3084","screen_name":"nana040631","location":null,"url":null,"description":"\\ \u611b\u77e5 \/\u3000\\ \u9ad8\u6821\u751f \/ \\\u30df\u30fc\u541b\/\u5b97\u5f25\u3055\u3093\/\u4e03\u69d8\/\u660e\u5e0c\u3055\u3093\/ \u57fa\u672c\u4e0b\u624b\u306b\u54b2\u3044\u3066\u307e\u3059\u25b7\u25c1\u2661*\uff61\uff9f next\u2192\u30ae\u30ac\u30de\u30a6\u30b911.18\u30ef\u30f3\u30de\u30f3 R\u6307\u5b9a1.24\u30a4\u30f3\u30b9\u30c8","protected":false,"verified":false,"followers_count":110,"friends_count":155,"listed_count":4,"favourites_count":1701,"statuses_count":2547,"created_at":"Thu Mar 12 07:26:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639827962775236610\/m0yApfj6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639827962775236610\/m0yApfj6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074819005\/1440569370","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chi_ta37","name":"\uff61.\u029aM I N A\u025e .\uff61","id":3285134448,"id_str":"3285134448","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109658"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729193472,"id_str":"663728202729193472","text":"RT @Vickss69: #Fucked @18_HOT_18 @PornoBrazil @cumcumlover @swo2212 @FuckerMCBO @FullThrottle__ @PornKolors @69HornyDevil69 https:\/\/t.co\/yL\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":994157832,"id_str":"994157832","name":"ronnie de cva","screen_name":"ronnie_de_cva","location":"Singapore","url":null,"description":null,"protected":false,"verified":false,"followers_count":20,"friends_count":73,"listed_count":0,"favourites_count":2,"statuses_count":299,"created_at":"Fri Dec 07 01:43:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642581329888972800\/bdVqyk_O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642581329888972800\/bdVqyk_O_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:16:41 +0000 2015","id":663450084961419264,"id_str":"663450084961419264","text":"#Fucked @18_HOT_18 @PornoBrazil @cumcumlover @swo2212 @FuckerMCBO @FullThrottle__ @PornKolors @69HornyDevil69 https:\/\/t.co\/yLm3HZFr4T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133451577,"id_str":"133451577","name":"Vickss","screen_name":"Vickss69","location":null,"url":null,"description":"Lover of the female form. 18+ Mail ur pics at coolvickss@gmail.com Header is @slutwife2020 - KIK at vickss69","protected":false,"verified":false,"followers_count":154640,"friends_count":672,"listed_count":653,"favourites_count":7751,"statuses_count":84004,"created_at":"Thu Apr 15 20:52:48 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559423439262334976\/jpg71XTq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559423439262334976\/jpg71XTq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133451577\/1440703011","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":118,"favorite_count":244,"entities":{"hashtags":[{"text":"Fucked","indices":[0,7]}],"urls":[],"user_mentions":[{"screen_name":"18_HOT_18","name":"\u2654 HOT PHOTOS \u2654","id":1321275720,"id_str":"1321275720","indices":[8,18]},{"screen_name":"PornoBrazil","name":"Porno Brazil\u2122","id":436166281,"id_str":"436166281","indices":[19,31]},{"screen_name":"cumcumlover","name":"\u2728\u00a9um\u00a9umLover\u2728222K\u2728","id":206576645,"id_str":"206576645","indices":[32,44]},{"screen_name":"swo2212","name":"\u2734\u2605 \u2729\u2651 $\u2020\u03b5\u0166\u03b1\u03c0 \u2651\u2605 \u2729\u2734","id":894989119,"id_str":"894989119","indices":[45,53]},{"screen_name":"FuckerMCBO","name":"\u2663 FUCKER (+18) \u2663","id":596029999,"id_str":"596029999","indices":[54,65]},{"screen_name":"FullThrottle__","name":"\u2606 Top banana \u2606","id":626670994,"id_str":"626670994","indices":[66,81]},{"screen_name":"PornKolors","name":"\u2728\u2728 PornKolors \u2728\u2728","id":2695455798,"id_str":"2695455798","indices":[82,93]},{"screen_name":"69HornyDevil69","name":"The Demon Letch","id":1723286234,"id_str":"1723286234","indices":[94,109]}],"symbols":[],"media":[{"id":663449501546360832,"id_str":"663449501546360832","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","url":"https:\/\/t.co\/yLm3HZFr4T","display_url":"pic.twitter.com\/yLm3HZFr4T","expanded_url":"http:\/\/twitter.com\/Vickss69\/status\/663450084961419264\/video\/1","type":"photo","sizes":{"large":{"w":716,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663449501546360832,"id_str":"663449501546360832","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","url":"https:\/\/t.co\/yLm3HZFr4T","display_url":"pic.twitter.com\/yLm3HZFr4T","expanded_url":"http:\/\/twitter.com\/Vickss69\/status\/663450084961419264\/video\/1","type":"video","sizes":{"large":{"w":716,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"video_info":{"aspect_ratio":[179,101],"duration_millis":15015,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/pl\/XXZZB5_aSZIw31q2.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/638x360\/0vNIBGuPH8FHGBaF.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/318x180\/s9a1fZuY2lyn_t4K.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/638x360\/0vNIBGuPH8FHGBaF.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/pl\/XXZZB5_aSZIw31q2.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Fucked","indices":[14,21]}],"urls":[],"user_mentions":[{"screen_name":"Vickss69","name":"Vickss","id":133451577,"id_str":"133451577","indices":[3,12]},{"screen_name":"18_HOT_18","name":"\u2654 HOT PHOTOS \u2654","id":1321275720,"id_str":"1321275720","indices":[22,32]},{"screen_name":"PornoBrazil","name":"Porno Brazil\u2122","id":436166281,"id_str":"436166281","indices":[33,45]},{"screen_name":"cumcumlover","name":"\u2728\u00a9um\u00a9umLover\u2728222K\u2728","id":206576645,"id_str":"206576645","indices":[46,58]},{"screen_name":"swo2212","name":"\u2734\u2605 \u2729\u2651 $\u2020\u03b5\u0166\u03b1\u03c0 \u2651\u2605 \u2729\u2734","id":894989119,"id_str":"894989119","indices":[59,67]},{"screen_name":"FuckerMCBO","name":"\u2663 FUCKER (+18) \u2663","id":596029999,"id_str":"596029999","indices":[68,79]},{"screen_name":"FullThrottle__","name":"\u2606 Top banana \u2606","id":626670994,"id_str":"626670994","indices":[80,95]},{"screen_name":"PornKolors","name":"\u2728\u2728 PornKolors \u2728\u2728","id":2695455798,"id_str":"2695455798","indices":[96,107]},{"screen_name":"69HornyDevil69","name":"The Demon Letch","id":1723286234,"id_str":"1723286234","indices":[108,123]}],"symbols":[],"media":[{"id":663449501546360832,"id_str":"663449501546360832","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","url":"https:\/\/t.co\/yLm3HZFr4T","display_url":"pic.twitter.com\/yLm3HZFr4T","expanded_url":"http:\/\/twitter.com\/Vickss69\/status\/663450084961419264\/video\/1","type":"photo","sizes":{"large":{"w":716,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663450084961419264,"source_status_id_str":"663450084961419264","source_user_id":133451577,"source_user_id_str":"133451577"}]},"extended_entities":{"media":[{"id":663449501546360832,"id_str":"663449501546360832","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663449501546360832\/pu\/img\/zz--si8cyqJefAUa.jpg","url":"https:\/\/t.co\/yLm3HZFr4T","display_url":"pic.twitter.com\/yLm3HZFr4T","expanded_url":"http:\/\/twitter.com\/Vickss69\/status\/663450084961419264\/video\/1","type":"video","sizes":{"large":{"w":716,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663450084961419264,"source_status_id_str":"663450084961419264","source_user_id":133451577,"source_user_id_str":"133451577","video_info":{"aspect_ratio":[179,101],"duration_millis":15015,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/pl\/XXZZB5_aSZIw31q2.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/638x360\/0vNIBGuPH8FHGBaF.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/318x180\/s9a1fZuY2lyn_t4K.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/vid\/638x360\/0vNIBGuPH8FHGBaF.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663449501546360832\/pu\/pl\/XXZZB5_aSZIw31q2.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202720743424,"id_str":"663728202720743424","text":"RT @MickeyBMq: \u0e1b\u0e4b\u0e2d\u0e21\u0e41\u0e1b\u0e4b\u0e21 : \u0e08\u0e31\u0e01\u0e23\u0e27\u0e32\u0e25\u0e2b\u0e23\u0e37\u0e2d\u0e42\u0e25\u0e01\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e23\u0e38\u0e19\u0e41\u0e23\u0e07\u0e17\u0e35\u0e48\u0e40\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e27\u0e48\u0e32 '\u0e1a\u0e34\u0e4a\u0e01\u0e41\u0e1a\u0e07' \u0e2d\u0e31\u0e19\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e47\u0e2d\u0e1b,\u0e08\u0e35\u0e14\u0e23\u0e32\u0e01\u0e49\u0e2d\u0e19,\u0e0b\u0e36\u0e07\u0e23\u0e35 \n\n#\u0e40\u0e17\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368784008,"id_str":"368784008","name":"\u0e21\u0e34\u0e49\u0e07\u0e01\u0e35\u0e49","screen_name":"minkkeee","location":null,"url":null,"description":"\u0e1a\u0e49\u0e32\u0e46\u0e1a\u0e2d\u0e46","protected":false,"verified":false,"followers_count":17,"friends_count":387,"listed_count":0,"favourites_count":113,"statuses_count":4436,"created_at":"Tue Sep 06 06:51:08 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623885687289311233\/c_J2vutV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623885687289311233\/c_J2vutV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368784008\/1435154149","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 12:47:52 +0000 2015","id":661525199410491392,"id_str":"661525199410491392","text":"\u0e1b\u0e4b\u0e2d\u0e21\u0e41\u0e1b\u0e4b\u0e21 : \u0e08\u0e31\u0e01\u0e23\u0e27\u0e32\u0e25\u0e2b\u0e23\u0e37\u0e2d\u0e42\u0e25\u0e01\u0e40\u0e01\u0e34\u0e14\u0e02\u0e36\u0e49\u0e19\u0e08\u0e32\u0e01\u0e01\u0e32\u0e23\u0e23\u0e30\u0e40\u0e1a\u0e34\u0e14\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e23\u0e38\u0e19\u0e41\u0e23\u0e07\u0e17\u0e35\u0e48\u0e40\u0e04\u0e49\u0e32\u0e40\u0e23\u0e35\u0e22\u0e01\u0e27\u0e48\u0e32 '\u0e1a\u0e34\u0e4a\u0e01\u0e41\u0e1a\u0e07' \u0e2d\u0e31\u0e19\u0e1b\u0e23\u0e30\u0e01\u0e2d\u0e1a\u0e44\u0e1b\u0e14\u0e49\u0e27\u0e22 \u0e17\u0e47\u0e2d\u0e1b,\u0e08\u0e35\u0e14\u0e23\u0e32\u0e01\u0e49\u0e2d\u0e19,\u0e0b\u0e36\u0e07\u0e23\u0e35 \n\n#\u0e40\u0e17\u0e22\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e44\u0e17\u0e22 55555","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1030169947,"id_str":"1030169947","name":"BM,\u2661","screen_name":"MickeyBMq","location":"\uc11c\uc6b8 \/ \uc544\uc774\ucf58","url":null,"description":"\uc544\uc774\ucf58 | yg style | FANART | Mickey \u03df ap20s | ikonic \u25e1\u0308","protected":false,"verified":false,"followers_count":386,"friends_count":187,"listed_count":9,"favourites_count":90,"statuses_count":41007,"created_at":"Sun Dec 23 08:40:37 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662958573035454464\/p-jogRjY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662958573035454464\/p-jogRjY.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663294348147032065\/HKoh_-S__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663294348147032065\/HKoh_-S__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1030169947\/1445502983","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6949,"favorite_count":408,"entities":{"hashtags":[{"text":"\u0e40\u0e17\u0e22\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e44\u0e17\u0e22","indices":[121,134]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e40\u0e17\u0e22\u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e44\u0e17\u0e22","indices":[136,140]}],"urls":[],"user_mentions":[{"screen_name":"MickeyBMq","name":"BM,\u2661","id":1030169947,"id_str":"1030169947","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080109659"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750148609,"id_str":"663728202750148609","text":"waw emezing https:\/\/t.co\/ajLXoO5MVM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3320002314,"id_str":"3320002314","name":"spoder","screen_name":"jkEE__","location":"huron","url":"http:\/\/steamcommunity.com\/id\/spodermanishere","description":"sometimes I always want to rarely have homework.","protected":false,"verified":false,"followers_count":97,"friends_count":230,"listed_count":1,"favourites_count":649,"statuses_count":1846,"created_at":"Wed Aug 19 13:31:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661844526315630592\/6-AF2g5D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661844526315630592\/6-AF2g5D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3320002314\/1446631004","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727908796526592,"quoted_status_id_str":"663727908796526592","quoted_status":{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727908796526592,"id_str":"663727908796526592","text":"Science is always the answer. https:\/\/t.co\/Dgyo2f0xFk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":843112550,"id_str":"843112550","name":"Learn Something","screen_name":"EarnKnowledge","location":"Worldwide","url":null,"description":"Discover amazing photos & gifs while expanding your mind. Learn something new every day with us. I'm not affiliated or claim to own any of the picture & gif!","protected":false,"verified":false,"followers_count":2543287,"friends_count":852,"listed_count":5129,"favourites_count":165,"statuses_count":29773,"created_at":"Mon Sep 24 07:13:39 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648501417993351168\/xU0EenwS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648501417993351168\/xU0EenwS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/843112550\/1436640819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814"}]},"extended_entities":{"media":[{"id":663566942029135872,"id_str":"663566942029135872","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTV2njhWwAAN25U.png","url":"https:\/\/t.co\/Dgyo2f0xFk","display_url":"pic.twitter.com\/Dgyo2f0xFk","expanded_url":"http:\/\/twitter.com\/FascinatingVids\/status\/663566942599557120\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":300,"resize":"fit"},"medium":{"w":500,"h":442,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":442,"resize":"fit"}},"source_status_id":663566942599557120,"source_status_id_str":"663566942599557120","source_user_id":2597498814,"source_user_id_str":"2597498814","video_info":{"aspect_ratio":[250,221],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTV2njhWwAAN25U.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ajLXoO5MVM","expanded_url":"https:\/\/twitter.com\/EarnKnowledge\/status\/663727908796526592","display_url":"twitter.com\/EarnKnowledge\/\u2026","indices":[12,35]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202724999168,"id_str":"663728202724999168","text":"\u304a\u3084\u3059\u307f\u3093\u307f\u3093\u305c\u307f\u30fc\u30fc\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3848188693,"id_str":"3848188693","name":"\u30ef\u30fc\u30ca\u30fc@\u3067\u3059\u3057\u304a\u3059\u3057","screen_name":"AnstZero","location":"\u30aa\u30ab\u30ea\u30ca\u5e1d\u56fd","url":"http:\/\/twpf.jp\/anstzero","description":"\u4e8c\u6b21\u5143\u3068\u97f3\u697d\u3092\u611b\u3059\u96d1\u98df\u30aa\u30bf\u30c3\u30af\u30c0\u30c3\u30af(\u309c\u03b5\u309c*\n\n\u6714\u9593\u5144\u69d8\u3001\u79c1\u306d\u30c8\u30de\u30c8\u30b8\u30e5\u30fc\u30b9\u3092\u98f2\u3093\u3060\u3089\u30a6\u30a7\u30c3\u3066\u306a\u3063\u305f\u2026\u2026\u3002\n\u30d4\u30af\u30b7\u30d6\u3084\u3063\u3066\u308b\u304b\u3089\u898b\u3066\u4e0b\u3055\u3044\u8150\u306e\u5fc3\u306e\u53cb\u3088\u3049\u3049\uff01\uff01(\u6ce3)\n\n\u6687\u3060\u3063\u305f\u3089\u30c4\u30a4\u30d7\u30ed\u898b\u3066\u304f\u308c\u3088\u306a\u3063\uff01","protected":false,"verified":false,"followers_count":120,"friends_count":184,"listed_count":0,"favourites_count":126,"statuses_count":387,"created_at":"Sat Oct 10 14:09:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661600218262061056\/mj_EBiH5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661600218262061056\/mj_EBiH5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3848188693\/1446841297","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733322240,"id_str":"663728202733322240","text":"@egnirys9 \n\u3042\u308a\u304c\u3068\u3046\u30fd(\u00b4\u53f0`)\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724986830487552,"in_reply_to_status_id_str":"663724986830487552","in_reply_to_user_id":4015540754,"in_reply_to_user_id_str":"4015540754","in_reply_to_screen_name":"egnirys9","user":{"id":3283261040,"id_str":"3283261040","name":"ayana","screen_name":"yuina142101","location":null,"url":null,"description":"UNiTE.elite\u6a59U's \/\u30a2\u30f3\u30d5\u30a3\u30eb \u30b7\u30e2\u30b7\u30e2\u30c6 \u611b\u77e5","protected":false,"verified":false,"followers_count":15,"friends_count":44,"listed_count":0,"favourites_count":943,"statuses_count":329,"created_at":"Sat Jul 18 10:37:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659743816757325824\/AB_hp3iu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659743816757325824\/AB_hp3iu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3283261040\/1447079062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"egnirys9","name":"\u308a\u3087\u3046@\u6975\u5f69\u8272U's\u7d2b\u5f37\u3081","id":4015540754,"id_str":"4015540754","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750144516,"id_str":"663728202750144516","text":"RT @szk_320: \u3059\u3054\u3044\u3044\u3044\u5199\u771f\u3070\u3063\u304b\ud83d\ude02\ud83d\udc95\n\u3051\u3069\u3001\u7d30\u304b\u3044\u8a71\u3092\u3059\u308b\u3068T-ns SOWL\u3058\u3083\u306a\u304f\u3066T-nsSOWL\u3067\u3059\u3002\n\u304f\u3063\u3064\u3051\u3066\u304f\u3060\u3055\u3044\uff01 https:\/\/t.co\/qw9UWoFV6U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300482897,"id_str":"2300482897","name":"MM","screen_name":"dllynino","location":null,"url":null,"description":"\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30bf\u30fc\u6d45\u7530\u771f\u592e\u3055\u3093\u3092\u5fdc\u63f4\u3057\u3066\u3044\u308b\u3001\u30ef\u30f3\u30b3\u3092\u611b\u3059\u308b\u304a\u3070\u3055\u3093\u3002\u4e16\u306e\u4e2d\u3057\u3063\u304b\u308a\u898b\u5f35\u3063\u3066\u306a\u3044\u3068\u3001\u5b50\u4f9b\u3082\u30da\u30c3\u30c8\u3082\u4e0d\u5e78\u306b\u3057\u3061\u3083\u3046\u3002","protected":false,"verified":false,"followers_count":654,"friends_count":729,"listed_count":9,"favourites_count":23303,"statuses_count":64384,"created_at":"Sun Jan 19 23:38:18 +0000 2014","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572239026901499904\/Bj30dFUL_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572239026901499904\/Bj30dFUL_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300482897\/1405654918","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:48 +0000 2015","id":663725176983412736,"id_str":"663725176983412736","text":"\u3059\u3054\u3044\u3044\u3044\u5199\u771f\u3070\u3063\u304b\ud83d\ude02\ud83d\udc95\n\u3051\u3069\u3001\u7d30\u304b\u3044\u8a71\u3092\u3059\u308b\u3068T-ns SOWL\u3058\u3083\u306a\u304f\u3066T-nsSOWL\u3067\u3059\u3002\n\u304f\u3063\u3064\u3051\u3066\u304f\u3060\u3055\u3044\uff01 https:\/\/t.co\/qw9UWoFV6U","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2977976586,"id_str":"2977976586","name":"\u3042\u3044\u306d","screen_name":"szk_320","location":"T-nsSOWL","url":null,"description":"\u272f*sixteen\u272f* \\NO WAR\uff0aNO NUKES\uff0aNO HATE\/","protected":false,"verified":false,"followers_count":3235,"friends_count":313,"listed_count":97,"favourites_count":4552,"statuses_count":5413,"created_at":"Tue Jan 13 00:34:52 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644556417009999872\/chhttxek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644556417009999872\/chhttxek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2977976586\/1438442867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663358555534155776,"quoted_status_id_str":"663358555534155776","quoted_status":{"created_at":"Sun Nov 08 14:12:58 +0000 2015","id":663358555534155776,"id_str":"663358555534155776","text":"\u4eca\u65e5\u96e8\u306e\u4e2d\u884c\u308f\u308c\u305fT-ns SOWL #1108\u539f\u5bbf\u9ad8\u6821\u751f\u30c7\u30e2 \u306e\u5199\u771f\u3092Tumblr\u306b\u30a2\u30c3\u30d7\u3057\u307e\u3057\u305f\u3002\n151108 T-ns SOWL \u5b89\u4fdd\u6cd5\u5236\u306b\u53cd\u5bfe\u3059\u308b\u9ad8\u6821\u751f\u539f\u5bbf\u30c7\u30e2\nhttps:\/\/t.co\/7r3AJtANNq https:\/\/t.co\/QrKFo83ULW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520089673,"id_str":"520089673","name":"\u30b7\u30f3\u30bf\u30e4\u30d9 \/ shintayabe","screen_name":"257antonio","location":"\u5c0f\u7b20\u539f\u8af8\u5cf6\u7236\u5cf6\u80b2\u3061","url":"http:\/\/shintayabe.tumblr.com","description":"\u30d5\u30a9\u30c8\u30b0\u30e9\u30d5\u30a1\u30fc \/ \u30dd\u30b8\u30c6\u30a3\u30d6\uff01","protected":false,"verified":false,"followers_count":3816,"friends_count":1039,"listed_count":80,"favourites_count":13261,"statuses_count":31307,"created_at":"Sat Mar 10 04:34:46 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482925561119907841\/geDQsFTU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482925561119907841\/geDQsFTU.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662535909384957952\/5IYclpd7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662535909384957952\/5IYclpd7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520089673\/1445945984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1108\u539f\u5bbf\u9ad8\u6821\u751f\u30c7\u30e2","indices":[19,31]}],"urls":[{"url":"https:\/\/t.co\/7r3AJtANNq","expanded_url":"http:\/\/shintayabe.tumblr.com\/post\/132797353670\/151108-t-ns-sowl","display_url":"shintayabe.tumblr.com\/post\/132797353\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663358552589766657,"id_str":"663358552589766657","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS5FsXUkAEf9lM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS5FsXUkAEf9lM.jpg","url":"https:\/\/t.co\/QrKFo83ULW","display_url":"pic.twitter.com\/QrKFo83ULW","expanded_url":"http:\/\/twitter.com\/257antonio\/status\/663358555534155776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663358552589766657,"id_str":"663358552589766657","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS5FsXUkAEf9lM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS5FsXUkAEf9lM.jpg","url":"https:\/\/t.co\/QrKFo83ULW","display_url":"pic.twitter.com\/QrKFo83ULW","expanded_url":"http:\/\/twitter.com\/257antonio\/status\/663358555534155776\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":9,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qw9UWoFV6U","expanded_url":"https:\/\/twitter.com\/257antonio\/status\/663358555534155776","display_url":"twitter.com\/257antonio\/sta\u2026","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qw9UWoFV6U","expanded_url":"https:\/\/twitter.com\/257antonio\/status\/663358555534155776","display_url":"twitter.com\/257antonio\/sta\u2026","indices":[74,97]}],"user_mentions":[{"screen_name":"szk_320","name":"\u3042\u3044\u306d","id":2977976586,"id_str":"2977976586","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750148608,"id_str":"663728202750148608","text":"@anami0106 \u3070\u3041\u3084\u3001\u3075\u3056\u3051\u3059\u304e\uff08\u7b11\uff09\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716773905068033,"in_reply_to_status_id_str":"663716773905068033","in_reply_to_user_id":2377168236,"in_reply_to_user_id_str":"2377168236","in_reply_to_screen_name":"anami0106","user":{"id":3160483818,"id_str":"3160483818","name":"\u3072\u30fc\u3068\u3093","screen_name":"Y4b_hh29","location":"\u89e3 \u590f \u306e \u821e \u53f0 \u306b \u306a \u3063 \u305f \u753a ","url":null,"description":"((( I'm \u3044 \u3057 \u3089 \u306b \u3059 \u3068 \u2600\ufe0e \u304d \u3087 \u3046 \u3082 \u3048 \u304c \u304a \u3067 \u263a\ufe0e )))","protected":false,"verified":false,"followers_count":143,"friends_count":49,"listed_count":0,"favourites_count":1800,"statuses_count":15765,"created_at":"Fri Apr 17 04:59:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661860434668974081\/V3_l0ulF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661860434668974081\/V3_l0ulF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3160483818\/1446051559","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"anami0106","name":"\u30c7\u30b3\u30ce\u30d5\uff0b\u3044\u3057\u3089\u306b\u3059\u3068@\u3042\u306a\u307f\u3093","id":2377168236,"id_str":"2377168236","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202737516545,"id_str":"663728202737516545","text":"RT @AIanHangover: that \"tired but can't sleep\" feeling \ud83d\ude29","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":910877978,"id_str":"910877978","name":"mar","screen_name":"theammrjll","location":"MY ","url":"http:\/\/instagram.com\/ammrjll","description":"enthusiast in books, music and porn. nahhh I'm joking hahaha","protected":false,"verified":false,"followers_count":642,"friends_count":234,"listed_count":1,"favourites_count":8724,"statuses_count":37405,"created_at":"Sun Oct 28 18:44:37 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/859829956\/53a5ee69900d6ca43fe0b05d2ba8bc13.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/859829956\/53a5ee69900d6ca43fe0b05d2ba8bc13.jpeg","profile_background_tile":true,"profile_link_color":"440F5E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662679495871062016\/c6BLqce1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662679495871062016\/c6BLqce1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/910877978\/1446831886","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:00 +0000 2015","id":663727242858659840,"id_str":"663727242858659840","text":"that \"tired but can't sleep\" feeling \ud83d\ude29","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455569571,"id_str":"455569571","name":"Alan Garner","screen_name":"AIanHangover","location":null,"url":null,"description":"Hi, I'm Alan. I was recently in a documentary of my adventures in SIN CITY! I like jonas brothers, but I hate godzilla, he destroys cities!! (Parody)","protected":false,"verified":false,"followers_count":251976,"friends_count":135041,"listed_count":463,"favourites_count":332,"statuses_count":88760,"created_at":"Thu Jan 05 07:56:31 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/785427751\/91d23c5b02194a428ea2e8d3450a8d6c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/785427751\/91d23c5b02194a428ea2e8d3450a8d6c.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430576271228018688\/WeLv2NS8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430576271228018688\/WeLv2NS8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/455569571\/1376731951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":41,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AIanHangover","name":"Alan Garner","id":455569571,"id_str":"455569571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109663"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733391872,"id_str":"663728202733391872","text":"RT @musiqueancienne: @PeriKazuko \u3054\u5b58\u77e5\u3067\u3057\u3087\u3046\u304c\u3001\u5bae\u57ce\u770c\u306e\u6751\u4e95\u77e5\u4e8b\u306f\u81ea\u885b\u968a\u51fa\u8eab\u3067\u65b0\u81ea\u7531\u4e3b\u7fa9\u7684\u5fd7\u5411\u304c\u3068\u3066\u3082\u5f37\u3044\u4eba\u7269\u3067\u3059\u3002\u3053\u306e\u4ef6\u306b\u95a2\u3057\u3066\u77e5\u4e8b\u304c\u76f4\u63a5\u52d5\u3044\u3066\u306f\u3044\u306a\u3044\u3067\u3057\u3087\u3046\u304c\u3001\u77e5\u4e8b\u306e\u30aa\u30dc\u30a8\u3092\u6c17\u306b\u3059\u308b\u6559\u80b2\u59d4\u54e1\u4f1a\u306e\u4eba\u9593\u304c\u52d5\u3044\u305f\u53ef\u80fd\u6027\u304c\u9ad8\u3044\u3068\u601d\u3044\u307e\u3059\u3002\nht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297850760,"id_str":"3297850760","name":"\u5927\u6cb3\u60a0\u6a39","screen_name":"Yuuki_Taiga","location":null,"url":null,"description":"\u518d\u5ea6\u306e\u5fa9\u65e7\u3067\u3059\u3002\u5143\u67d0\u65b0\u805e\u793e\u52e4\u52d9\u3002\u60c5\u5831\u51e6\u7406\u6280\u8853\u8005\u3002\u73fe\u5728\u306f\u30d5\u30ea\u30fc\u3002\u4e2d\u5c0f\u4f01\u696d\u3092\u4e2d\u5fc3\u306b\u53d6\u6750\u3002\u8584\u3044\u5e74\u91d1\u306e\u3055\u3055\u3084\u304b\u306a\u8db3\u3057\u306b\u3002Ret\u306f\u3001\u30c7\u30b9\u30af\u611f\u899a\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u3001\u5c0f\u539f\u5e84\u52a9\u3055\u3093\u3002\u53cd\u9577\u5dde\u95a5\u3002\u4e03\u8ee2\u3073\u516b\u8d77\u304d\u3002","protected":false,"verified":false,"followers_count":361,"friends_count":608,"listed_count":4,"favourites_count":103,"statuses_count":22593,"created_at":"Mon Jul 27 14:30:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649201901183987714\/ZfnWcN_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649201901183987714\/ZfnWcN_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297850760\/1443616330","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:00:14 +0000 2015","id":663581840943419392,"id_str":"663581840943419392","text":"@PeriKazuko \u3054\u5b58\u77e5\u3067\u3057\u3087\u3046\u304c\u3001\u5bae\u57ce\u770c\u306e\u6751\u4e95\u77e5\u4e8b\u306f\u81ea\u885b\u968a\u51fa\u8eab\u3067\u65b0\u81ea\u7531\u4e3b\u7fa9\u7684\u5fd7\u5411\u304c\u3068\u3066\u3082\u5f37\u3044\u4eba\u7269\u3067\u3059\u3002\u3053\u306e\u4ef6\u306b\u95a2\u3057\u3066\u77e5\u4e8b\u304c\u76f4\u63a5\u52d5\u3044\u3066\u306f\u3044\u306a\u3044\u3067\u3057\u3087\u3046\u304c\u3001\u77e5\u4e8b\u306e\u30aa\u30dc\u30a8\u3092\u6c17\u306b\u3059\u308b\u6559\u80b2\u59d4\u54e1\u4f1a\u306e\u4eba\u9593\u304c\u52d5\u3044\u305f\u53ef\u80fd\u6027\u304c\u9ad8\u3044\u3068\u601d\u3044\u307e\u3059\u3002\nhttps:\/\/t.co\/Y3L7esjjBj","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663376374611099648,"in_reply_to_status_id_str":"663376374611099648","in_reply_to_user_id":620067530,"in_reply_to_user_id_str":"620067530","in_reply_to_screen_name":"PeriKazuko","user":{"id":334421118,"id_str":"334421118","name":"musiqueancienne","screen_name":"musiqueancienne","location":"\u9996\u90fd\u570f out of Tokyo","url":"http:\/\/d.hatena.ne.jp\/do-nald\/","description":"\u53e4\u30ad\u8abf\u30d9\u30cb\u65b0\u30b7\u30ad\u97f3\u30f2\u8074\u30af\u3001\u4ea6\u697d\u30b7\u30ab\u30e9\u30ba\u30e4\u3002\u30af\u30e9\u30b7\u30c3\u30af\uff5e\uff2a\uff21\uff3a\uff3a\u307e\u3067\u3002\u4e16\u306e\u4e2d\u306e\u3053\u3068\u3082\u3044\u308d\u3044\u308d\u3002 [ \u30ea\u30c4\u30a4\u30fc\u30c8\u306f\u8cdb\u610f\u3068\u306f\u9650\u308a\u307e\u305b\u3093\u3002] \uff03\u6301\u7d9a\u53ef\u80fd\u306a\u793e\u4f1a\u3092\u3000\uff03\u53e4\u697d\u306e\u305f\u306e\u3057\u307f\u3000\uff03\u3084\u3063\u3071\u308a\u30c1\u30a7\u30fc\u30db\u30d5\u3000\uff03\u3059\u3079\u3066\u306e\u30b9\u30bf\u30fc\u30ea\u30f3\u7684\u306a\u3082\u306e\u304c\u5acc\u3044\u3067\u3059 \uff03\u6771\u4eac\u4e94\u8f2a\u3082\u3046\u30e0\u30ea\u3060\u2026","protected":false,"verified":false,"followers_count":1866,"friends_count":1759,"listed_count":27,"favourites_count":4288,"statuses_count":36374,"created_at":"Wed Jul 13 02:19:24 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"39A1A8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1439943696\/011_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1439943696\/011_normal.JPG","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334421118\/1401762085","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y3L7esjjBj","expanded_url":"http:\/\/www.pref.miyagi.jp\/site\/gvroom\/hisyo-page-2.html","display_url":"pref.miyagi.jp\/site\/gvroom\/hi\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"PeriKazuko","name":"KAZUKO","id":620067530,"id_str":"620067530","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y3L7esjjBj","expanded_url":"http:\/\/www.pref.miyagi.jp\/site\/gvroom\/hisyo-page-2.html","display_url":"pref.miyagi.jp\/site\/gvroom\/hi\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"musiqueancienne","name":"musiqueancienne","id":334421118,"id_str":"334421118","indices":[3,19]},{"screen_name":"PeriKazuko","name":"KAZUKO","id":620067530,"id_str":"620067530","indices":[21,32]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733359104,"id_str":"663728202733359104","text":"@el_u_02 \u30a8\u30fc\u30eb\u304f\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722490993074176,"in_reply_to_status_id_str":"663722490993074176","in_reply_to_user_id":3013549322,"in_reply_to_user_id_str":"3013549322","in_reply_to_screen_name":"el_u_02","user":{"id":3069718957,"id_str":"3069718957","name":"\u5bae\u4ee3 \u67da\u6708","screen_name":"labyrinth_town","location":"\u6ac3\u4eba\u3068\u306e\u5bb6","url":"http:\/\/twpf.jp\/labyrinth_town","description":"\u5bae\u4ee3 \u67da\u6708(\uff90\uff94\uff7c\uff9b \uff95\uff82\uff9e\uff77)\u2642\/176cm\/\u4e00\u6b21\u5275\u4f5c\u4e5f\u57a2\/\u5bdd\u843d\u8fd4\u4e8b\u8e74\u5e38\u7fd2\/CC\u6709\/\u30cd\u30b3\u5bc4\/\u8a73\u7d30\u4e16\u754c\u89b3\u7b49\u4ed5\u69d8\u66f8\u53c2\u8003\/\u5408\u8a00\u8449\u6709\/\u81ea\u5df1\u7d39\u4ecb\u753b\u50cf\u6b04\/\u59ff\u7d75\u2192\u8cb0\u3044\u7269","protected":false,"verified":false,"followers_count":33,"friends_count":33,"listed_count":0,"favourites_count":354,"statuses_count":5609,"created_at":"Mon Mar 09 12:01:49 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660620661820276736\/jqPMcPi4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660620661820276736\/jqPMcPi4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"el_u_02","name":"\u30a8\u30eb","id":3013549322,"id_str":"3013549322","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733367296,"id_str":"663728202733367296","text":"@ys_0501 \u3051\u3069\u307f\u3066\u307f\u305f\u3044\n\u304b\u308f\u3044\u3044\u305c\u3063\u305f\u3044\u306a\u3081\u3066\u3047\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728063537020928,"in_reply_to_status_id_str":"663728063537020928","in_reply_to_user_id":3658700533,"in_reply_to_user_id_str":"3658700533","in_reply_to_screen_name":"ys_0501","user":{"id":3606498683,"id_str":"3606498683","name":"\u306e\u3061\u3086","screen_name":"nooota719","location":"\u77f3\u72e9","url":null,"description":"16 \u3042\u304a\u3059\u3051 \u6027\u6b32\u304c\u5f37\u3044\u3067\u3059\u2661","protected":false,"verified":false,"followers_count":224,"friends_count":175,"listed_count":0,"favourites_count":383,"statuses_count":2446,"created_at":"Thu Sep 10 06:45:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658514752491032577\/31XUJ42Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658514752491032577\/31XUJ42Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3606498683\/1445872081","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ys_0501","name":"\u3086\u3093\u306a\u3002","id":3658700533,"id_str":"3658700533","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202725072896,"id_str":"663728202725072896","text":"\u30b7\u30f3\u30d7\u30eb\u306b\u30b7\u30e7\u30fc\u30c8\u30b1\u30fc\u30ad","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2242477387,"id_str":"2242477387","name":"\u304b\u308d\u3089\u3044\u3093@\u3057\u3093\u3061\u3042","screen_name":"kyahhou_2","location":"\u3057\u3093\u3061\u3042\u5bc4\u308a\u306eall \u261e 0618\u57ce\u30db\u53c2\u6226\u2661","url":null,"description":"AAA\u3068\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc\u3068\u307f\u3084\u304b\u308f\u304f\u3093\uff01\uff01\uff01\uff01 \u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30fc\u30f3\u3057\u305f\u3044 \u306a\u3089\u304d\u305f\uff01\u306b\u306d\u3093\uff01\u3084\u304a\u3060\u3088","protected":false,"verified":false,"followers_count":1386,"friends_count":1468,"listed_count":7,"favourites_count":4726,"statuses_count":19063,"created_at":"Thu Dec 12 14:47:24 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660829704828555265\/Jrntc-qE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660829704828555265\/Jrntc-qE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242477387\/1435680976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202725122048,"id_str":"663728202725122048","text":"RT @Girls_Fucking_: https:\/\/t.co\/6SxGgr4JOC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3352332382,"id_str":"3352332382","name":"I love sex","screen_name":"mmmhd11212","location":null,"url":null,"description":"I Male sexual I am male and I love hot sex This is a new My Account 'has been discontinued from the previous account management Twitter @ mmmhd1212","protected":false,"verified":false,"followers_count":853,"friends_count":2051,"listed_count":53,"favourites_count":20826,"statuses_count":26703,"created_at":"Tue Jun 30 19:53:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654215208492236800\/lVUEfi0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654215208492236800\/lVUEfi0B_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 01 17:04:22 +0000 2015","id":660864974554841088,"id_str":"660864974554841088","text":"https:\/\/t.co\/6SxGgr4JOC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298397811,"id_str":"3298397811","name":"Girls Fucking","screen_name":"Girls_Fucking_","location":null,"url":"http:\/\/pussypornfree.com\/","description":"Horny girls are waiting for you... Click the link and get your FREE lifetime Fuckbook membership now!","protected":false,"verified":false,"followers_count":30830,"friends_count":7801,"listed_count":83,"favourites_count":0,"statuses_count":244,"created_at":"Mon May 25 21:04:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617759275847434240\/BeVtUhPJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617759275847434240\/BeVtUhPJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298397811\/1436120276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":86,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660864949309341696,"id_str":"660864949309341696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","url":"https:\/\/t.co\/6SxGgr4JOC","display_url":"pic.twitter.com\/6SxGgr4JOC","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660864974554841088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":141,"resize":"crop"},"medium":{"w":250,"h":141,"resize":"fit"},"large":{"w":250,"h":141,"resize":"fit"},"small":{"w":250,"h":141,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660864949309341696,"id_str":"660864949309341696","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","url":"https:\/\/t.co\/6SxGgr4JOC","display_url":"pic.twitter.com\/6SxGgr4JOC","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660864974554841088\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":141,"resize":"crop"},"medium":{"w":250,"h":141,"resize":"fit"},"large":{"w":250,"h":141,"resize":"fit"},"small":{"w":250,"h":141,"resize":"fit"}},"video_info":{"aspect_ratio":[250,141],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSvdK4QXAAADt_7.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Girls_Fucking_","name":"Girls Fucking","id":3298397811,"id_str":"3298397811","indices":[3,18]}],"symbols":[],"media":[{"id":660864949309341696,"id_str":"660864949309341696","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","url":"https:\/\/t.co\/6SxGgr4JOC","display_url":"pic.twitter.com\/6SxGgr4JOC","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660864974554841088\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":141,"resize":"crop"},"medium":{"w":250,"h":141,"resize":"fit"},"large":{"w":250,"h":141,"resize":"fit"},"small":{"w":250,"h":141,"resize":"fit"}},"source_status_id":660864974554841088,"source_status_id_str":"660864974554841088","source_user_id":3298397811,"source_user_id_str":"3298397811"}]},"extended_entities":{"media":[{"id":660864949309341696,"id_str":"660864949309341696","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSvdK4QXAAADt_7.png","url":"https:\/\/t.co\/6SxGgr4JOC","display_url":"pic.twitter.com\/6SxGgr4JOC","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660864974554841088\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":141,"resize":"crop"},"medium":{"w":250,"h":141,"resize":"fit"},"large":{"w":250,"h":141,"resize":"fit"},"small":{"w":250,"h":141,"resize":"fit"}},"source_status_id":660864974554841088,"source_status_id_str":"660864974554841088","source_user_id":3298397811,"source_user_id_str":"3298397811","video_info":{"aspect_ratio":[250,141],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSvdK4QXAAADt_7.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109660"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202745950208,"id_str":"663728202745950208","text":"RT @holl_men55: \u0e42\u0e14\u0e19\u0e04\u0e27\u0e22\u0e43\u0e2b\u0e0d\u0e48\u0e40\u0e22\u0e2a2 http:\/\/t.co\/Dc7RULGesO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3631163833,"id_str":"3631163833","name":"Mcmc","screen_name":"amazeballs_mc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":329,"listed_count":0,"favourites_count":10,"statuses_count":193,"created_at":"Sun Sep 20 22:00:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645719785800503296\/Sg12kQb9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645719785800503296\/Sg12kQb9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 11 14:56:13 +0000 2015","id":642350940528312321,"id_str":"642350940528312321","text":"\u0e42\u0e14\u0e19\u0e04\u0e27\u0e22\u0e43\u0e2b\u0e0d\u0e48\u0e40\u0e22\u0e2a2 http:\/\/t.co\/Dc7RULGesO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2840796014,"id_str":"2840796014","name":"Art life","screen_name":"holl_men55","location":"\u0e25\u0e32\u0e14\u0e1e\u0e23\u0e49\u0e32\u0e27, \u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23","url":null,"description":"\u0e42\u0e1a\u0e17 \u0e0a\u0e2d\u0e1a\u0e40\u0e22\u0e2a\u0e23\u0e31\u0e1a ok : \u0e17\u0e27\u0e35\u0e15\u0e21\u0e35\u0e44\u0e27\u0e49\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e41\u0e0a\u0e23\u0e4c\u0e04\u0e27\u0e32\u0e21\u0e40\u0e2a\u0e35\u0e22\u0e27\u0e40\u0e17\u0e48\u0e32\u0e19\u0e31\u0e49\u0e19\u0e44\u0e21\u0e48\u0e19\u0e31\u0e14\u0e40\u0e08\u0e2d\u0e04\u0e23\u0e31\u0e1a","protected":false,"verified":false,"followers_count":4981,"friends_count":211,"listed_count":1,"favourites_count":92,"statuses_count":44,"created_at":"Sun Oct 05 04:51:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646515316294447104\/xHXOV_uR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646515316294447104\/xHXOV_uR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":547,"favorite_count":871,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":642346699319476224,"id_str":"642346699319476224","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","url":"http:\/\/t.co\/Dc7RULGesO","display_url":"pic.twitter.com\/Dc7RULGesO","expanded_url":"http:\/\/twitter.com\/holl_men55\/status\/642350940528312321\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":642346699319476224,"id_str":"642346699319476224","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","url":"http:\/\/t.co\/Dc7RULGesO","display_url":"pic.twitter.com\/Dc7RULGesO","expanded_url":"http:\/\/twitter.com\/holl_men55\/status\/642350940528312321\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/pl\/MRCDxJnbS34j2b0q.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/pl\/MRCDxJnbS34j2b0q.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/640x360\/wJ3Wii6I6kI9xA9Q.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/320x180\/BYw0jP1r9zsWhft2.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/1280x720\/iJtl-V_evAhV_Xw5.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/640x360\/wJ3Wii6I6kI9xA9Q.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"holl_men55","name":"Art life","id":2840796014,"id_str":"2840796014","indices":[3,14]}],"symbols":[],"media":[{"id":642346699319476224,"id_str":"642346699319476224","indices":[31,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","url":"http:\/\/t.co\/Dc7RULGesO","display_url":"pic.twitter.com\/Dc7RULGesO","expanded_url":"http:\/\/twitter.com\/holl_men55\/status\/642350940528312321\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":642350940528312321,"source_status_id_str":"642350940528312321","source_user_id":2840796014,"source_user_id_str":"2840796014"}]},"extended_entities":{"media":[{"id":642346699319476224,"id_str":"642346699319476224","indices":[31,53],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/642346699319476224\/pu\/img\/QI18kbwMZ61eNf0y.jpg","url":"http:\/\/t.co\/Dc7RULGesO","display_url":"pic.twitter.com\/Dc7RULGesO","expanded_url":"http:\/\/twitter.com\/holl_men55\/status\/642350940528312321\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":642350940528312321,"source_status_id_str":"642350940528312321","source_user_id":2840796014,"source_user_id_str":"2840796014","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/pl\/MRCDxJnbS34j2b0q.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/pl\/MRCDxJnbS34j2b0q.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/640x360\/wJ3Wii6I6kI9xA9Q.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/320x180\/BYw0jP1r9zsWhft2.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/1280x720\/iJtl-V_evAhV_Xw5.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/642346699319476224\/pu\/vid\/640x360\/wJ3Wii6I6kI9xA9Q.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080109665"} +{"delete":{"status":{"id":663727577769639936,"id_str":"663727577769639936","user_id":951592081,"user_id_str":"951592081"},"timestamp_ms":"1447080109842"}} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202737561601,"id_str":"663728202737561601","text":"RT @ICUSUBTHAI: [ICUSUB] :: EXO2BOX \u0e40\u0e14\u0e17\u0e2a\u0e27\u0e19\u0e2a\u0e19\u0e38\u0e01\u0e01\u0e31\u0e1a \u0e41\u0e1a\u0e04\u0e04\u0e2b\u0e21\u0e34\u0e19\u0e2d\u0e35\u0e49 \u0e04\u0e31\u0e15\u0e40\u0e15\u0e47\u0e21\n>> https:\/\/t.co\/DhSaJ6vH0v\n#ICUSUB \u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e2a\u0e27\u0e19\u0e2a\u0e19\u0e38\u0e01\u0e01\u0e31\u0e1a\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e22\u0e39\u0e23\u0e34! https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3087206857,"id_str":"3087206857","name":"CB.","screen_name":"iampiggy1234","location":null,"url":null,"description":"GIRL\u2605 | EXO-L\u2661 | CHANBAEK\u2665\ufe0e","protected":false,"verified":false,"followers_count":58,"friends_count":1081,"listed_count":4,"favourites_count":24773,"statuses_count":16832,"created_at":"Sun Mar 15 22:44:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660635174057590784\/muc013wu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660635174057590784\/muc013wu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3087206857\/1446342709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:45:43 +0000 2015","id":663578189118107648,"id_str":"663578189118107648","text":"[ICUSUB] :: EXO2BOX \u0e40\u0e14\u0e17\u0e2a\u0e27\u0e19\u0e2a\u0e19\u0e38\u0e01\u0e01\u0e31\u0e1a \u0e41\u0e1a\u0e04\u0e04\u0e2b\u0e21\u0e34\u0e19\u0e2d\u0e35\u0e49 \u0e04\u0e31\u0e15\u0e40\u0e15\u0e47\u0e21\n>> https:\/\/t.co\/DhSaJ6vH0v\n#ICUSUB \u0e40\u0e17\u0e35\u0e48\u0e22\u0e27\u0e2a\u0e27\u0e19\u0e2a\u0e19\u0e38\u0e01\u0e01\u0e31\u0e1a\u0e40\u0e2b\u0e25\u0e48\u0e32\u0e22\u0e39\u0e23\u0e34! https:\/\/t.co\/CuTSYr21xv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3109784414,"id_str":"3109784414","name":"\u0e21\u0e22\u0e2d\u0e19\u0e04\u0e19\u0e40\u0e25\u0e48\u0e19\u0e01\u0e25\u0e49\u0e32\u0e21","screen_name":"ICUSUBTHAI","location":null,"url":null,"description":"\u0e23\u0e31\u0e01\u0e08\u0e38\u0e4b\u0e21 #allsuho #hunho #kaiho #\u0e2d\u0e4a\u0e2d\u0e14\u0e08\u0e38\u0e4b\u0e21 RT\u0e2b\u0e19\u0e31\u0e01 \u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30 \u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e25\u0e32\u0e21\u0e01\u0e22\u0e01\u0e43\u0e2b\u0e49\u0e1e\u0e35\u0e48 :: http:\/\/ask.fm\/icusub ::https:\/\/facebook.com\/ICUSUB :: http:\/\/icusubth.blogspot.com","protected":false,"verified":false,"followers_count":6955,"friends_count":594,"listed_count":16,"favourites_count":733,"statuses_count":27053,"created_at":"Fri Mar 27 10:48:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620799495563927552\/76lEGX2s.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620799495563927552\/76lEGX2s.jpg","profile_background_tile":true,"profile_link_color":"FF9966","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994547530592257\/uFeu9WBN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994547530592257\/uFeu9WBN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3109784414\/1445520291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":843,"favorite_count":830,"entities":{"hashtags":[{"text":"ICUSUB","indices":[87,94]}],"urls":[{"url":"https:\/\/t.co\/DhSaJ6vH0v","expanded_url":"https:\/\/www.facebook.com\/ICUSUB\/videos\/1023980104332663\/","display_url":"facebook.com\/ICUSUB\/videos\/\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":663578187377438725,"id_str":"663578187377438725","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663578187377438725,"id_str":"663578187377438725","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}}},{"id":663578187201273857,"id_str":"663578187201273857","indices":[122,145],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HDUYAEkFtk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HDUYAEkFtk.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ICUSUB","indices":[103,110]}],"urls":[{"url":"https:\/\/t.co\/DhSaJ6vH0v","expanded_url":"https:\/\/www.facebook.com\/ICUSUB\/videos\/1023980104332663\/","display_url":"facebook.com\/ICUSUB\/videos\/\u2026","indices":[79,102]}],"user_mentions":[{"screen_name":"ICUSUBTHAI","name":"\u0e21\u0e22\u0e2d\u0e19\u0e04\u0e19\u0e40\u0e25\u0e48\u0e19\u0e01\u0e25\u0e49\u0e32\u0e21","id":3109784414,"id_str":"3109784414","indices":[3,14]}],"symbols":[],"media":[{"id":663578187377438725,"id_str":"663578187377438725","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}},"source_status_id":663578189118107648,"source_status_id_str":"663578189118107648","source_user_id":3109784414,"source_user_id_str":"3109784414"}]},"extended_entities":{"media":[{"id":663578187377438725,"id_str":"663578187377438725","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HtUcAUwCKw.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}},"source_status_id":663578189118107648,"source_status_id_str":"663578189118107648","source_user_id":3109784414,"source_user_id_str":"3109784414"},{"id":663578187201273857,"id_str":"663578187201273857","indices":[145,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWA2HDUYAEkFtk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWA2HDUYAEkFtk.jpg","url":"https:\/\/t.co\/CuTSYr21xv","display_url":"pic.twitter.com\/CuTSYr21xv","expanded_url":"http:\/\/twitter.com\/ICUSUBTHAI\/status\/663578189118107648\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":856,"h":480,"resize":"fit"}},"source_status_id":663578189118107648,"source_status_id_str":"663578189118107648","source_user_id":3109784414,"source_user_id_str":"3109784414"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080109663"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202746077184,"id_str":"663728202746077184","text":"RT @Sniperawy: http:\/\/t.co\/djqkvjRP3P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1123740516,"id_str":"1123740516","name":"n","screen_name":"NadineEmara","location":null,"url":null,"description":"idk","protected":false,"verified":false,"followers_count":885,"friends_count":218,"listed_count":3,"favourites_count":335,"statuses_count":6973,"created_at":"Sun Jan 27 02:26:31 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654942898144878592\/fUGitVty_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654942898144878592\/fUGitVty_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1123740516\/1444985531","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jul 28 16:38:25 +0000 2015","id":626069206845509632,"id_str":"626069206845509632","text":"http:\/\/t.co\/djqkvjRP3P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":353081144,"id_str":"353081144","name":"Sniper\u2122","screen_name":"Sniperawy","location":"instagram: 3mrtaha ","url":null,"description":"\u062a\u0648\u064a\u062a\u0627\u062a\u064a \u0639\u0627\u062f\u064a\u0629 \u0628\u0633 \u0633\u0627\u0639\u0627\u062a \u0628\u062a\u062c\u0644\u064a \u0645\u0646\u064a \u0648\u0628\u0643\u062a\u0628 \u062d\u0627\u062c\u0627\u062a \u062d\u0644\u0648\u0629 .. 171 cm \u0648\u0645\u0634 \u0642\u0635\u064a\u0631","protected":false,"verified":false,"followers_count":12937,"friends_count":253,"listed_count":30,"favourites_count":15190,"statuses_count":77622,"created_at":"Thu Aug 11 14:34:59 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000111027176\/d564cb827f2e81940dd2a48c44cf6e0d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000111027176\/d564cb827f2e81940dd2a48c44cf6e0d.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660176619605245952\/qEnmyRfD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660176619605245952\/qEnmyRfD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/353081144\/1442514694","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1486,"favorite_count":399,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":626069166110441472,"id_str":"626069166110441472","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":626069166110441472,"id_str":"626069166110441472","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}}},{"id":626069166194360321,"id_str":"626069166194360321","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lu_XAAEX9QW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lu_XAAEX9QW.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":626069167742013440,"id_str":"626069167742013440","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-l0wWUAA6JYA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-l0wWUAA6JYA.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":626069167830077440,"id_str":"626069167830077440","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-l1FWEAAc45z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-l1FWEAAc45z.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sniperawy","name":"Sniper\u2122","id":353081144,"id_str":"353081144","indices":[3,13]}],"symbols":[],"media":[{"id":626069166110441472,"id_str":"626069166110441472","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":626069206845509632,"source_status_id_str":"626069206845509632","source_user_id":353081144,"source_user_id_str":"353081144"}]},"extended_entities":{"media":[{"id":626069166110441472,"id_str":"626069166110441472","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lurWgAAz1CO.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":639,"h":400,"resize":"fit"},"medium":{"w":600,"h":375,"resize":"fit"},"small":{"w":340,"h":212,"resize":"fit"}},"source_status_id":626069206845509632,"source_status_id_str":"626069206845509632","source_user_id":353081144,"source_user_id_str":"353081144"},{"id":626069166194360321,"id_str":"626069166194360321","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-lu_XAAEX9QW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-lu_XAAEX9QW.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":626069206845509632,"source_status_id_str":"626069206845509632","source_user_id":353081144,"source_user_id_str":"353081144"},{"id":626069167742013440,"id_str":"626069167742013440","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-l0wWUAA6JYA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-l0wWUAA6JYA.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":626069206845509632,"source_status_id_str":"626069206845509632","source_user_id":353081144,"source_user_id_str":"353081144"},{"id":626069167830077440,"id_str":"626069167830077440","indices":[15,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CLA-l1FWEAAc45z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLA-l1FWEAAc45z.jpg","url":"http:\/\/t.co\/djqkvjRP3P","display_url":"pic.twitter.com\/djqkvjRP3P","expanded_url":"http:\/\/twitter.com\/Sniperawy\/status\/626069206845509632\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":626069206845509632,"source_status_id_str":"626069206845509632","source_user_id":353081144,"source_user_id_str":"353081144"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080109665"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741760000,"id_str":"663728202741760000","text":"@C4Tomoi \u305d\u3093\u306a\u306e\u304c\u3042\u308b\u3093\u3067\u3059\u306d\uff01\u7d20\u6575\u3067\u3059(\u043e\u00b4\u2200`\u043e)\n\u30b7\u30f3\u30d0\u30eb\u3082\u7b2c\u4e8c\u306e\u4eba\u751f\u3001\u559c\u3073\u307e\u3059\u306d\ud83c\udfb5(*^^*)","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663720244284796929,"in_reply_to_status_id_str":"663720244284796929","in_reply_to_user_id":404856293,"in_reply_to_user_id_str":"404856293","in_reply_to_screen_name":"C4Tomoi","user":{"id":113038580,"id_str":"113038580","name":"\u7d17\u7dbe\u9999","screen_name":"RMH_TH","location":"N\u30fbG\u30fbY\uff01\uff3c(\u30fb\u2200\u30fb) \uff0f\uff9c\uff72\uff01","url":"http:\/\/www.keasler.co.jp\/stealth\/index.html","description":"GLAY\u5927\u597d\u304d\u266aC4\u5927\u597d\u304d\u2606\u6c23\u5fd7\u5718\u3061\u3083\u3093\u3082\u8074\u304d\u307e\u3059\u266a \u4eac\u90fd\u5927\u597d\u304d\u266a\u30ec\u30c8\u30ed\u5927\u597d\u304d\u266a \u30b0\u30eb\u30fc\u30df\u30fc\u3082\u5927\u597d\u304d\u3067\u3059\u2605\u2606 \uff3c('\u0414')\uff0f\uff9d\uff8a\uff9e\uff6f\uff01","protected":false,"verified":false,"followers_count":100,"friends_count":128,"listed_count":1,"favourites_count":1899,"statuses_count":21834,"created_at":"Wed Feb 10 14:08:22 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/393233907\/news_large_STEALTH_0908.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/393233907\/news_large_STEALTH_0908.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630153398361288704\/e7akd9D3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630153398361288704\/e7akd9D3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113038580\/1362288711","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"C4Tomoi","name":"Tomoi","id":404856293,"id_str":"404856293","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733510656,"id_str":"663728202733510656","text":"Nuevos seguidores: 1, unfollowers: 0 (10:07) #TuitUtil https:\/\/t.co\/n91zB6eNxz","source":"\u003ca href=\"http:\/\/www.tuitutil.net\" rel=\"nofollow\"\u003eTuit \u00datil\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":563174129,"id_str":"563174129","name":"Lucho Murguero","screen_name":"luchocomando","location":"Fdo de la mora , Paraguay","url":null,"description":"Yo soy de Fernando, de Comando & de Cerro \u266a Integrante de LA MURGA DEL CICLON , callejeros inocentes !","protected":false,"verified":false,"followers_count":717,"friends_count":478,"listed_count":0,"favourites_count":590,"statuses_count":10588,"created_at":"Wed Apr 25 20:34:51 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578179859941335040\/s8zngpD0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578179859941335040\/s8zngpD0_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuitUtil","indices":[45,54]}],"urls":[{"url":"https:\/\/t.co\/n91zB6eNxz","expanded_url":"http:\/\/www.tuitutil.net","display_url":"tuitutil.net","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750271489,"id_str":"663728202750271489","text":"RT @Aulamusical: Los verbos conjugados en pasado representan personas que ejercieron su sagrado derecho a desistir.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1273940726,"id_str":"1273940726","name":"Mireyita","screen_name":"Mireya0104","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":24,"friends_count":96,"listed_count":0,"favourites_count":99,"statuses_count":1121,"created_at":"Sun Mar 17 03:36:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545235643002261504\/8B0Jml4M_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545235643002261504\/8B0Jml4M_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1273940726\/1420430825","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:40:23 +0000 2015","id":663486248359739393,"id_str":"663486248359739393","text":"Los verbos conjugados en pasado representan personas que ejercieron su sagrado derecho a desistir.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164276756,"id_str":"164276756","name":"Luis Carlos Moreno","screen_name":"Aulamusical","location":"Medell\u00edn ","url":"http:\/\/www.LuisCarlosMoreno.com","description":"Viviendo divertida y m\u00edsticamente.","protected":false,"verified":false,"followers_count":14317,"friends_count":9155,"listed_count":134,"favourites_count":12353,"statuses_count":21173,"created_at":"Thu Jul 08 13:38:17 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466359868681506816\/Nlyif77r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466359868681506816\/Nlyif77r.jpeg","profile_background_tile":true,"profile_link_color":"163EE0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"432B3B","profile_text_color":"584A59","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644713711169617920\/tBlZkKyH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644713711169617920\/tBlZkKyH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164276756\/1441244742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Aulamusical","name":"Luis Carlos Moreno","id":164276756,"id_str":"164276756","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741772288,"id_str":"663728202741772288","text":"\u61d0\u4e2d\u6642\u8a08\u51fa\u6765\u305f\uff01\uff01\n\u6642\u9593\u3067\u3044\u3046\u3068\u7d041\u6642\u959330\u5206\u4f4d\u3067\u51fa\u6765\u307e\u3057\u305f\u3002\u521d\u6311\u6226\uff01\u7d50\u69cb\u3044\u3044\u51fa\u6765\u3067\u3059\uff01\n#\u30ec\u30b8\u30f3#\u61d0\u4e2d\u6642\u8a08 https:\/\/t.co\/0FGSF7utUl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3266056633,"id_str":"3266056633","name":"\u73e0\u767d@\u6d77\u86c7","screen_name":"syuhaku0212","location":null,"url":null,"description":"\u7d75\u63cf\u3044\u3066\u307e\u3059\uff01\uff08\u30b7\u30e3\u30fc\u30da\u30f3\u4e3b\u3001\u30da\u30f3\u4f7f\u7528\uff09\u5b66\u751f \u30ec\u30b8\u30f3\u3001\u5207\u308a\u7d75\u3001\u30d0\u30c9\u30df\u30f3\u30c8\u30f3\u5927\u597d\u304d\u3067\u3059\uff01\uff01 \u30c9\u30e9\u30de\u7d50\u69cb\u597d\u304d\u3067\u3059\uff01\u30a2\u30cb\u30e1\u3082\u308f\u304b\u308a\u307e\u3059\u3088\uff01\u307e\u3069\u30de\u30ae\u3001\u6771\u4eac\u55b0\u7a2e\u3001\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d \u99ac\u9e7f\u3067\u3059\u304c\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u6c17\u306b\u306a\u3063\u305f\u65b9\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3063\u3066\u304b\u307e\u3044\u307e\u305b\u3093\u3002\u63cf\u3044\u3066\u6b32\u3057\u3044\uff01\u7b49\u3042\u308a\u307e\u3057\u305f\u3089\u3001\u3042\u308a\u304c\u305f\u304f\u627f\u308a\u307e\u3059\u3002\u5bd2\u8272\u597d\u304d","protected":false,"verified":false,"followers_count":120,"friends_count":252,"listed_count":10,"favourites_count":4078,"statuses_count":948,"created_at":"Thu Jul 02 12:15:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659387220814508038\/u1K__HdI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659387220814508038\/u1K__HdI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3266056633\/1446421607","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728196827811840,"id_str":"663728196827811840","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR0dVEAAxA4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR0dVEAAxA4V.jpg","url":"https:\/\/t.co\/0FGSF7utUl","display_url":"pic.twitter.com\/0FGSF7utUl","expanded_url":"http:\/\/twitter.com\/syuhaku0212\/status\/663728202741772288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728196827811840,"id_str":"663728196827811840","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR0dVEAAxA4V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR0dVEAAxA4V.jpg","url":"https:\/\/t.co\/0FGSF7utUl","display_url":"pic.twitter.com\/0FGSF7utUl","expanded_url":"http:\/\/twitter.com\/syuhaku0212\/status\/663728202741772288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202741780480,"id_str":"663728202741780480","text":"This is different but really good for you. Romatic and politically incorrect to the EFFECT! https:\/\/t.co\/hvlJvjS3iR https:\/\/t.co\/PqpGYTeabn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2210349379,"id_str":"2210349379","name":"Rob","screen_name":"simplecashmoney","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":874,"friends_count":3190,"listed_count":98,"favourites_count":3387,"statuses_count":7467,"created_at":"Sat Nov 23 09:19:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/537496899654135808\/8NHL2hkv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/537496899654135808\/8NHL2hkv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2210349379\/1416984129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hvlJvjS3iR","expanded_url":"http:\/\/thelead.xyz","display_url":"thelead.xyz","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663728201760309248,"id_str":"663728201760309248","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSG1VAAArqxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSG1VAAArqxS.jpg","url":"https:\/\/t.co\/PqpGYTeabn","display_url":"pic.twitter.com\/PqpGYTeabn","expanded_url":"http:\/\/twitter.com\/simplecashmoney\/status\/663728202741780480\/photo\/1","type":"photo","sizes":{"large":{"w":728,"h":90,"resize":"fit"},"small":{"w":340,"h":42,"resize":"fit"},"medium":{"w":600,"h":74,"resize":"fit"},"thumb":{"w":150,"h":90,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728201760309248,"id_str":"663728201760309248","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSG1VAAArqxS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSG1VAAArqxS.jpg","url":"https:\/\/t.co\/PqpGYTeabn","display_url":"pic.twitter.com\/PqpGYTeabn","expanded_url":"http:\/\/twitter.com\/simplecashmoney\/status\/663728202741780480\/photo\/1","type":"photo","sizes":{"large":{"w":728,"h":90,"resize":"fit"},"small":{"w":340,"h":42,"resize":"fit"},"medium":{"w":600,"h":74,"resize":"fit"},"thumb":{"w":150,"h":90,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109664"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729177089,"id_str":"663728202729177089","text":"\u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e1e\u0e32\u0e42\u0e1a https:\/\/t.co\/jb1PGZyatY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":105482134,"id_str":"105482134","name":"ctrl+s","screen_name":"Huangqwa","location":"Thailand","url":"https:\/\/instagram.com\/tangqwa.h","description":"1993 | \u0e15\u0e34\u0e48\u0e07\u0e27\u0e31\u0e22\u0e17\u0e33\u0e07\u0e32\u0e19 \u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e27\u0e22 \u2661 \ube44\uc2a4\ud2b8 #\ub450\uc900 #\uc900\ud615","protected":false,"verified":false,"followers_count":397,"friends_count":278,"listed_count":4,"favourites_count":148,"statuses_count":86097,"created_at":"Sat Jan 16 13:39:46 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656688348476497920\/9MIF89FL.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656688348476497920\/9MIF89FL.jpg","profile_background_tile":true,"profile_link_color":"3A3A3A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"272727","profile_text_color":"857F72","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661926677631512576\/GAXX6tVO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661926677631512576\/GAXX6tVO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/105482134\/1443103093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728185926782976,"id_str":"663728185926782976","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRL2UkAAjrDm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRL2UkAAjrDm.jpg","url":"https:\/\/t.co\/jb1PGZyatY","display_url":"pic.twitter.com\/jb1PGZyatY","expanded_url":"http:\/\/twitter.com\/Huangqwa\/status\/663728202729177089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728185926782976,"id_str":"663728185926782976","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRL2UkAAjrDm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRL2UkAAjrDm.jpg","url":"https:\/\/t.co\/jb1PGZyatY","display_url":"pic.twitter.com\/jb1PGZyatY","expanded_url":"http:\/\/twitter.com\/Huangqwa\/status\/663728202729177089\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202729177088,"id_str":"663728202729177088","text":"\"God doesn't give the hardest battles to his toughest soldiers, he creates the toughest soldiers through life's hardest battles.\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2833474063,"id_str":"2833474063","name":"\u203b \u043dana\u043d \u203b","screen_name":"Hvnvhisml","location":"Singapore","url":null,"description":"\u2022 \u043c\u03c5\u043c\u043c\u0443 \u03c3f \u0442\u03c9o \u2113\u03b9\u0442\u0442\u2113\u0454 \u03c9\u03b1\u044f\u044f\u03b9\u03c3\u044f\u0455 \u2022 \u03c9\u03b1\u03b9\u0442\u03b9\u0438g f\u03c3\u044f \u0432\u03b1\u0432\u0443 \u043dz \u03b1\u044f\u044f\u03b9\u03bd\u03b1\u2113 \u2022","protected":false,"verified":false,"followers_count":218,"friends_count":194,"listed_count":0,"favourites_count":2092,"statuses_count":11276,"created_at":"Sat Sep 27 02:09:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658497302575738880\/eG6fqGPT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658497302575738880\/eG6fqGPT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2833474063\/1443631114","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109661"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202733502464,"id_str":"663728202733502464","text":"\"Science fiction frees you to go anyplace and examine anything.\" Octavia E. Butler\nhttps:\/\/t.co\/V7RLlyDAo2 https:\/\/t.co\/KIuJAmUSEW","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187320439,"id_str":"3187320439","name":"PJ McDermott","screen_name":"pj_author","location":"Melbourne, Victoria","url":"http:\/\/www.hickorylace.com","description":"Author of the science fiction novel, Avanaux, cancer survivor, mad keen Geelong fan. http:\/\/myBook.to\/Avanaux","protected":false,"verified":false,"followers_count":18911,"friends_count":17894,"listed_count":523,"favourites_count":26,"statuses_count":42109,"created_at":"Thu May 07 04:20:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/596168267577761792\/XepQfuIs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/596168267577761792\/XepQfuIs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187320439\/1430972690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/V7RLlyDAo2","expanded_url":"http:\/\/bit.ly\/1FQ13Un","display_url":"bit.ly\/1FQ13Un","indices":[83,106]}],"user_mentions":[],"symbols":[],"media":[{"id":663728202179678208,"id_str":"663728202179678208","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSIZUEAAEi9E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSIZUEAAEi9E.jpg","url":"https:\/\/t.co\/KIuJAmUSEW","display_url":"pic.twitter.com\/KIuJAmUSEW","expanded_url":"http:\/\/twitter.com\/pj_author\/status\/663728202733502464\/photo\/1","type":"photo","sizes":{"large":{"w":370,"h":300,"resize":"fit"},"medium":{"w":370,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728202179678208,"id_str":"663728202179678208","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSIZUEAAEi9E.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSIZUEAAEi9E.jpg","url":"https:\/\/t.co\/KIuJAmUSEW","display_url":"pic.twitter.com\/KIuJAmUSEW","expanded_url":"http:\/\/twitter.com\/pj_author\/status\/663728202733502464\/photo\/1","type":"photo","sizes":{"large":{"w":370,"h":300,"resize":"fit"},"medium":{"w":370,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":275,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109662"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202737541120,"id_str":"663728202737541120","text":"\u5fc3\u3092\u5206\u3051\u4e0e\u3048\u308b\u3088\u3046\u306b https:\/\/t.co\/759jyMnXHw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2614940420,"id_str":"2614940420","name":"\u7fbd\u592a","screen_name":"green_farm8","location":null,"url":null,"description":"\u8da3\u5473\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u5c01\u795e\u6f14\u7fa9\/\u9b3c\u706f\u306e\u51b7\u5fb9\/\u4ed6\/\u00d7\u3088\u308a+\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u304c\u30d5\u30a9\u30ed\u30d0\u304a\u304b\u307e\u3044\u306a\u304f\u3002\u203b\u5145\u96fb\u671f\u9593","protected":false,"verified":false,"followers_count":83,"friends_count":71,"listed_count":2,"favourites_count":7825,"statuses_count":2357,"created_at":"Thu Jul 10 06:41:20 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630405674418110464\/XrTyTz3k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630405674418110464\/XrTyTz3k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614940420\/1439135474","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728200313257984,"id_str":"663728200313257984","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSBcUwAAX_KR.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSBcUwAAX_KR.png","url":"https:\/\/t.co\/759jyMnXHw","display_url":"pic.twitter.com\/759jyMnXHw","expanded_url":"http:\/\/twitter.com\/green_farm8\/status\/663728202737541120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":876,"h":610,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":600,"h":417,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728200313257984,"id_str":"663728200313257984","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSBcUwAAX_KR.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSBcUwAAX_KR.png","url":"https:\/\/t.co\/759jyMnXHw","display_url":"pic.twitter.com\/759jyMnXHw","expanded_url":"http:\/\/twitter.com\/green_farm8\/status\/663728202737541120\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":876,"h":610,"resize":"fit"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":600,"h":417,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080109663"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202750279680,"id_str":"663728202750279680","text":"#bukkake #cumshot #cum #facial #sperm #porn\nxxxtheunknown: More! https:\/\/t.co\/Sm8PYNBUtj - https:\/\/t.co\/bs9ozB8MSf https:\/\/t.co\/3r3LAboTzd","source":"\u003ca href=\"http:\/\/www.bukkake.daftnetwork.com\" rel=\"nofollow\"\u003eThe Bukkake Network\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149496235,"id_str":"4149496235","name":"Sandy_Bukkake","screen_name":"SandyBukkake","location":null,"url":"http:\/\/www.bukkake.daftnetwork.com","description":"Porn Star, love Bukkakes at","protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3,"created_at":"Mon Nov 09 13:50:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726096471433216\/Y4lLfcE-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726096471433216\/Y4lLfcE-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4149496235\/1447079618","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"bukkake","indices":[0,8]},{"text":"cumshot","indices":[9,17]},{"text":"cum","indices":[18,22]},{"text":"facial","indices":[23,30]},{"text":"sperm","indices":[31,37]},{"text":"porn","indices":[38,43]}],"urls":[{"url":"https:\/\/t.co\/Sm8PYNBUtj","expanded_url":"http:\/\/ift.tt\/1WA13q3","display_url":"ift.tt\/1WA13q3","indices":[65,88]},{"url":"https:\/\/t.co\/bs9ozB8MSf","expanded_url":"http:\/\/bukkake.daftnetwork.com\/2015\/11\/06\/xxxtheunknown-more-httpift-tt1wa13q3\/","display_url":"bukkake.daftnetwork.com\/2015\/11\/06\/xxx\u2026","indices":[91,114]}],"user_mentions":[],"symbols":[],"media":[{"id":663728201466839040,"id_str":"663728201466839040","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSFvXAAAk5OT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSFvXAAAk5OT.jpg","url":"https:\/\/t.co\/3r3LAboTzd","display_url":"pic.twitter.com\/3r3LAboTzd","expanded_url":"http:\/\/twitter.com\/SandyBukkake\/status\/663728202750279680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":381,"resize":"fit"},"large":{"w":499,"h":561,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":561,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728201466839040,"id_str":"663728201466839040","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSFvXAAAk5OT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSFvXAAAk5OT.jpg","url":"https:\/\/t.co\/3r3LAboTzd","display_url":"pic.twitter.com\/3r3LAboTzd","expanded_url":"http:\/\/twitter.com\/SandyBukkake\/status\/663728202750279680\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":381,"resize":"fit"},"large":{"w":499,"h":561,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":561,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109666"} +{"created_at":"Mon Nov 09 14:41:49 +0000 2015","id":663728202746101761,"id_str":"663728202746101761","text":"Proud @Bordbia presenting on the Origin Green Platform that @2degreesnetwork provide at Global Sustainability Forum https:\/\/t.co\/6EfW6a3WeT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426625018,"id_str":"426625018","name":"Aoife Connaughton","screen_name":"AoifeCptPlanet","location":"Oxford","url":"http:\/\/aoife-connaughton.branded.me","description":"Managing Director @2degreesnetwork, trying to change the world from 9-5. Think of me as a corporate Cpt Planet! Triathlete & adventurer in spare time","protected":false,"verified":false,"followers_count":305,"friends_count":317,"listed_count":18,"favourites_count":29,"statuses_count":807,"created_at":"Fri Dec 02 13:40:32 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3662860985\/1387ff3526a493cb0f6091f13031f561_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3662860985\/1387ff3526a493cb0f6091f13031f561_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426625018\/1382999398","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bordbia","name":"Irish Food Board","id":48673814,"id_str":"48673814","indices":[6,14]},{"screen_name":"2degreesnetwork","name":"2degrees","id":193645918,"id_str":"193645918","indices":[60,76]}],"symbols":[],"media":[{"id":663728192553926656,"id_str":"663728192553926656","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRkiWwAAWmSq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRkiWwAAWmSq.jpg","url":"https:\/\/t.co\/6EfW6a3WeT","display_url":"pic.twitter.com\/6EfW6a3WeT","expanded_url":"http:\/\/twitter.com\/AoifeCptPlanet\/status\/663728202746101761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728192553926656,"id_str":"663728192553926656","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRkiWwAAWmSq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRkiWwAAWmSq.jpg","url":"https:\/\/t.co\/6EfW6a3WeT","display_url":"pic.twitter.com\/6EfW6a3WeT","expanded_url":"http:\/\/twitter.com\/AoifeCptPlanet\/status\/663728202746101761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080109665"} +{"delete":{"status":{"id":663628063712935936,"id_str":"663628063712935936","user_id":880896446,"user_id_str":"880896446"},"timestamp_ms":"1447080110103"}} +{"delete":{"status":{"id":245258268988030976,"id_str":"245258268988030976","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080110165"}} +{"delete":{"status":{"id":393644628542361600,"id_str":"393644628542361600","user_id":201800365,"user_id_str":"201800365"},"timestamp_ms":"1447080110376"}} +{"delete":{"status":{"id":663535302485544961,"id_str":"663535302485544961","user_id":747238171,"user_id_str":"747238171"},"timestamp_ms":"1447080110414"}} +{"delete":{"status":{"id":663478356445368320,"id_str":"663478356445368320","user_id":2706442664,"user_id_str":"2706442664"},"timestamp_ms":"1447080110637"}} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206906789889,"id_str":"663728206906789889","text":"RT @zejyneloxiz: 10 Crazy Things You Will Learn Today about sex Must see this here => https:\/\/t.co\/K3NU6rQat2 https:\/\/t.co\/NqCotcMKA4","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2545036838,"id_str":"2545036838","name":"Booty Tweets","screen_name":"xBootyTweets","location":null,"url":null,"description":"TURNING REGULAR TWEETS INTO BOOTY TWEETS!! Guaranteed To Make Your Day A Little Better!!! FOLLOW FOR A SHOUTOUT","protected":false,"verified":false,"followers_count":35192,"friends_count":14548,"listed_count":108,"favourites_count":1146,"statuses_count":15045,"created_at":"Wed Jun 04 02:26:44 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548009328838705153\/-v65LDJF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548009328838705153\/-v65LDJF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2545036838\/1421974207","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:35:25 +0000 2015","id":663651094464188417,"id_str":"663651094464188417","text":"10 Crazy Things You Will Learn Today about sex Must see this here => https:\/\/t.co\/K3NU6rQat2 https:\/\/t.co\/NqCotcMKA4","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396973074,"id_str":"2396973074","name":"Aristotle Gorstidge","screen_name":"zejyneloxiz","location":"Manchester","url":null,"description":null,"protected":false,"verified":false,"followers_count":318,"friends_count":713,"listed_count":0,"favourites_count":185,"statuses_count":346,"created_at":"Wed Mar 19 00:24:01 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524121843611869184\/qp9_VjV6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524121843611869184\/qp9_VjV6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K3NU6rQat2","expanded_url":"http:\/\/bit.ly\/saddfss","display_url":"bit.ly\/saddfss","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663651093822345216,"id_str":"663651093822345216","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","url":"https:\/\/t.co\/NqCotcMKA4","display_url":"pic.twitter.com\/NqCotcMKA4","expanded_url":"http:\/\/twitter.com\/zejyneloxiz\/status\/663651094464188417\/photo\/1","type":"photo","sizes":{"large":{"w":448,"h":432,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":448,"h":432,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663651093822345216,"id_str":"663651093822345216","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","url":"https:\/\/t.co\/NqCotcMKA4","display_url":"pic.twitter.com\/NqCotcMKA4","expanded_url":"http:\/\/twitter.com\/zejyneloxiz\/status\/663651094464188417\/photo\/1","type":"photo","sizes":{"large":{"w":448,"h":432,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":448,"h":432,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/K3NU6rQat2","expanded_url":"http:\/\/bit.ly\/saddfss","display_url":"bit.ly\/saddfss","indices":[90,113]}],"user_mentions":[{"screen_name":"zejyneloxiz","name":"Aristotle Gorstidge","id":2396973074,"id_str":"2396973074","indices":[3,15]}],"symbols":[],"media":[{"id":663651093822345216,"id_str":"663651093822345216","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","url":"https:\/\/t.co\/NqCotcMKA4","display_url":"pic.twitter.com\/NqCotcMKA4","expanded_url":"http:\/\/twitter.com\/zejyneloxiz\/status\/663651094464188417\/photo\/1","type":"photo","sizes":{"large":{"w":448,"h":432,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":448,"h":432,"resize":"fit"}},"source_status_id":663651094464188417,"source_status_id_str":"663651094464188417","source_user_id":2396973074,"source_user_id_str":"2396973074"}]},"extended_entities":{"media":[{"id":663651093822345216,"id_str":"663651093822345216","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXDJ1YUkAADHrz.jpg","url":"https:\/\/t.co\/NqCotcMKA4","display_url":"pic.twitter.com\/NqCotcMKA4","expanded_url":"http:\/\/twitter.com\/zejyneloxiz\/status\/663651094464188417\/photo\/1","type":"photo","sizes":{"large":{"w":448,"h":432,"resize":"fit"},"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":448,"h":432,"resize":"fit"}},"source_status_id":663651094464188417,"source_status_id_str":"663651094464188417","source_user_id":2396973074,"source_user_id_str":"2396973074"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110657"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915248129,"id_str":"663728206915248129","text":"RT @_devilishh: I quite frankly don't give no fucks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153611282,"id_str":"153611282","name":"Chanel","screen_name":"LoveYouDoll","location":null,"url":null,"description":"Chance","protected":false,"verified":false,"followers_count":714,"friends_count":179,"listed_count":2,"favourites_count":873,"statuses_count":22156,"created_at":"Wed Jun 09 00:44:36 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2BE57","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/323379011\/The_Runaways_movie_image_Dakota_Fanning_Kristen_Stewart-1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/323379011\/The_Runaways_movie_image_Dakota_Fanning_Kristen_Stewart-1.jpg","profile_background_tile":true,"profile_link_color":"E09509","profile_sidebar_border_color":"0A090A","profile_sidebar_fill_color":"9EEB9E","profile_text_color":"E09509","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660173971787149312\/i1zha4J__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660173971787149312\/i1zha4J__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153611282\/1441855872","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:02 +0000 2015","id":663727751736795137,"id_str":"663727751736795137","text":"I quite frankly don't give no fucks","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2761634573,"id_str":"2761634573","name":"Te'Aira","screen_name":"_devilishh","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":91,"friends_count":152,"listed_count":0,"favourites_count":406,"statuses_count":3748,"created_at":"Fri Sep 05 02:37:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659404513045053440\/ll6iMUud_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659404513045053440\/ll6iMUud_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2761634573\/1433173039","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_devilishh","name":"Te'Aira","id":2761634573,"id_str":"2761634573","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206906814464,"id_str":"663728206906814464","text":"RT @falfryyan: \u0628\u064a\u0646\u0647 \u0648\u0628\u064a\u0646 \u0627\u0644\u0628\u0646\u0627\u062a \u0645\u0634\u0643\u0644\u0647 \u0643\u0628\u064a\u0631\u0629 .. https:\/\/t.co\/R5NvKtAd7L","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":233318129,"id_str":"233318129","name":"\u0634\u0641\u0627\u064a\u0646\u062f\u0631\u0644\u064a\u0646","screen_name":"Aa_mufc","location":null,"url":null,"description":"-\n#\u0627\u0646\u0642\u0630\u0648\u0627_\u062a\u0639\u0632_\u0627\u0644\u0645\u062d\u0627\u0635\u0631\u0647\n\n#Hilal\n#Mufc","protected":false,"verified":false,"followers_count":2632,"friends_count":227,"listed_count":37,"favourites_count":1671,"statuses_count":68393,"created_at":"Sun Jan 02 22:46:18 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661665905630445568\/c1_j7vAd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661665905630445568\/c1_j7vAd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/233318129\/1372601844","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:22:35 +0000 2015","id":663406271387799552,"id_str":"663406271387799552","text":"\u0628\u064a\u0646\u0647 \u0648\u0628\u064a\u0646 \u0627\u0644\u0628\u0646\u0627\u062a \u0645\u0634\u0643\u0644\u0647 \u0643\u0628\u064a\u0631\u0629 .. https:\/\/t.co\/R5NvKtAd7L","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329028861,"id_str":"329028861","name":"#\u0641\u064a\u0635\u0644_\u0627\u0644\u0641\u0631\u064a\u0627\u0646","screen_name":"falfryyan","location":null,"url":null,"description":"\u200f\u2b05\ufe0f\u0645\u062f\u064a\u0631 \u062a\u062d\u0631\u064a\u0631 \u0627\u0644\u0645\u062d\u0644\u064a\u0627\u062a \u0628\u0635\u062d\u064a\u0641\u0629 \u0627\u0644\u064a\u0648\u0645 | #\u0646\u0635\u0641_\u0635\u062d\u0641\u064a \u0647\u0648 \u0643\u062a\u0627\u0628\u064a \u0627\u0644\u0623\u0648\u0644 | \u0627\u0644\u0644\u0647\u0645 \u0643\u0645\u0627 \u0623\u062d\u0633\u0646\u062a \u062e\u0644\u0642\u064a \u0641\u062d\u0633\u0646 \u062e\u0644\u0642\u064a . \ufe0f","protected":false,"verified":false,"followers_count":54687,"friends_count":763,"listed_count":33,"favourites_count":765,"statuses_count":15724,"created_at":"Mon Jul 04 12:42:38 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"4A66C1","profile_sidebar_fill_color":"0E0E0E","profile_text_color":"4A66C1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569492583756206080\/pzwtA9sr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569492583756206080\/pzwtA9sr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329028861\/1432936532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":19,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663405715713847296,"id_str":"663405715713847296","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","url":"https:\/\/t.co\/R5NvKtAd7L","display_url":"pic.twitter.com\/R5NvKtAd7L","expanded_url":"http:\/\/twitter.com\/falfryyan\/status\/663406271387799552\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663405715713847296,"id_str":"663405715713847296","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","url":"https:\/\/t.co\/R5NvKtAd7L","display_url":"pic.twitter.com\/R5NvKtAd7L","expanded_url":"http:\/\/twitter.com\/falfryyan\/status\/663406271387799552\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15093,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/pl\/HQGqM-7sq4YCKOcR.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/pl\/HQGqM-7sq4YCKOcR.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/480x480\/3Ly-3UaLAlTjr5IX.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/240x240\/Fou40rNfZtnmnNOq.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/480x480\/3Ly-3UaLAlTjr5IX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"falfryyan","name":"#\u0641\u064a\u0635\u0644_\u0627\u0644\u0641\u0631\u064a\u0627\u0646","id":329028861,"id_str":"329028861","indices":[3,13]}],"symbols":[],"media":[{"id":663405715713847296,"id_str":"663405715713847296","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","url":"https:\/\/t.co\/R5NvKtAd7L","display_url":"pic.twitter.com\/R5NvKtAd7L","expanded_url":"http:\/\/twitter.com\/falfryyan\/status\/663406271387799552\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663406271387799552,"source_status_id_str":"663406271387799552","source_user_id":329028861,"source_user_id_str":"329028861"}]},"extended_entities":{"media":[{"id":663405715713847296,"id_str":"663405715713847296","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663405715713847296\/pu\/img\/8Pd8uvHYepkl0cGK.jpg","url":"https:\/\/t.co\/R5NvKtAd7L","display_url":"pic.twitter.com\/R5NvKtAd7L","expanded_url":"http:\/\/twitter.com\/falfryyan\/status\/663406271387799552\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663406271387799552,"source_status_id_str":"663406271387799552","source_user_id":329028861,"source_user_id_str":"329028861","video_info":{"aspect_ratio":[1,1],"duration_millis":15093,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/pl\/HQGqM-7sq4YCKOcR.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/pl\/HQGqM-7sq4YCKOcR.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/480x480\/3Ly-3UaLAlTjr5IX.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/240x240\/Fou40rNfZtnmnNOq.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663405715713847296\/pu\/vid\/480x480\/3Ly-3UaLAlTjr5IX.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080110657"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915178496,"id_str":"663728206915178496","text":"wywiady ellen sa najlepsze","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":854364110,"id_str":"854364110","name":"wiktoria","screen_name":"socialbutera","location":"honeymoon tour 190515","url":"https:\/\/twitter.com\/socialbutera\/status\/660188494271258625","description":"can't get with me now i'm grown","protected":false,"verified":false,"followers_count":9359,"friends_count":6368,"listed_count":52,"favourites_count":17042,"statuses_count":87264,"created_at":"Sun Sep 30 08:37:56 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFCFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513243479804104705\/Q_eJOh0c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513243479804104705\/Q_eJOh0c.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663053214456135680\/MIfw60ef_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663053214456135680\/MIfw60ef_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/854364110\/1446913832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919376896,"id_str":"663728206919376896","text":"RT @WORIDSTARHIPHOP: When she tweets \"wish I had someone to talk to rn\" and you been sittin there on delivered for 30 minutes https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2275421423,"id_str":"2275421423","name":"\u26fd\ufe0f","screen_name":"WestGeezyJay","location":"College Park, GA","url":null,"description":"|#UWG x #DirtyScholarz|","protected":false,"verified":false,"followers_count":1334,"friends_count":1993,"listed_count":4,"favourites_count":11143,"statuses_count":25198,"created_at":"Sat Jan 11 19:41:58 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644201336213479425\/rFqErPo0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644201336213479425\/rFqErPo0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275421423\/1424874006","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:45:04 +0000 2015","id":663623323293642752,"id_str":"663623323293642752","text":"When she tweets \"wish I had someone to talk to rn\" and you been sittin there on delivered for 30 minutes https:\/\/t.co\/UbNbODgCoA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2913627307,"id_str":"2913627307","name":"WSHH","screen_name":"WORIDSTARHIPHOP","location":"warning: 18+ content. ","url":null,"description":"posting the funniest content on the web. we do not own any of the content that is posted. *not affiliated with @worldstar, original parody account*","protected":false,"verified":false,"followers_count":391480,"friends_count":161931,"listed_count":51,"favourites_count":6,"statuses_count":14676,"created_at":"Sat Nov 29 10:36:07 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573160832479019009\/IwBIBl9e_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573160832479019009\/IwBIBl9e_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913627307\/1425487234","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":481,"favorite_count":847,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663623321297252352,"id_str":"663623321297252352","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","url":"https:\/\/t.co\/UbNbODgCoA","display_url":"pic.twitter.com\/UbNbODgCoA","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPHOP\/status\/663623323293642752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663623321297252352,"id_str":"663623321297252352","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","url":"https:\/\/t.co\/UbNbODgCoA","display_url":"pic.twitter.com\/UbNbODgCoA","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPHOP\/status\/663623323293642752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"WORIDSTARHIPHOP","name":"WSHH","id":2913627307,"id_str":"2913627307","indices":[3,19]}],"symbols":[],"media":[{"id":663623321297252352,"id_str":"663623321297252352","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","url":"https:\/\/t.co\/UbNbODgCoA","display_url":"pic.twitter.com\/UbNbODgCoA","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPHOP\/status\/663623323293642752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663623323293642752,"source_status_id_str":"663623323293642752","source_user_id":2913627307,"source_user_id_str":"2913627307"}]},"extended_entities":{"media":[{"id":663623321297252352,"id_str":"663623321297252352","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWp5QqWcAAqobw.jpg","url":"https:\/\/t.co\/UbNbODgCoA","display_url":"pic.twitter.com\/UbNbODgCoA","expanded_url":"http:\/\/twitter.com\/WORIDSTARHIPHOP\/status\/663623323293642752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663623323293642752,"source_status_id_str":"663623323293642752","source_user_id":2913627307,"source_user_id_str":"2913627307"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206936150016,"id_str":"663728206936150016","text":"...\u043d\u0430 \u0432\u0435\u043b\u043e\u0441\u0438\u043f\u0435\u0434\u0435. \u0416\u0430\u043d\u043d\u0430 \u041a\u0430\u043b\u044c\u043c\u0430\u043d \u0432 114 \u043b\u0435\u0442 \u0441\u043d\u044f\u043b\u0430\u0441\u044c \u0432 \u043a\u0438\u043d\u043e, \u0432 115...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259060197,"id_str":"1259060197","name":"FairleyAddison","screen_name":"FairleyAddison","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":56,"friends_count":18,"listed_count":1,"favourites_count":0,"statuses_count":51626,"created_at":"Mon Mar 11 09:46:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3575600583\/a504e9deb4c7af2e783eaa8b5119b249_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3575600583\/a504e9deb4c7af2e783eaa8b5119b249_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080110664"} +{"delete":{"status":{"id":573841759815536640,"id_str":"573841759815536640","user_id":1148172162,"user_id_str":"1148172162"},"timestamp_ms":"1447080110702"}} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915194880,"id_str":"663728206915194880","text":"@onlyraawan \u0644\u0644\u0627\u0633\u0641 \u0646\u0635 \u062f\u0641\u0639\u062a\u0646\u0627 \u064a\u062f\u062e\u0646\u0648 \n\u0628\u0631\u0627 \u0639\u0646\u062f \u0628\u0648\u0627\u0628\u0629 \u0627\u0644\u0643\u0644\u064a\u0629 \u0644\u0648 \u062a\u0637\u0644\u0639 \u0648\u0642\u062a \u0627\u0644\u0628\u0631\u064a\u0643 \u062a\u0634\u0648\u0641 \u0633\u062d\u0627\u0628\u0647 \u0628\u064a\u0636\u0627 \u0641\u0648\u0642 \u0645\u0646 \u0627\u0644\u062f\u062e\u0627\u0646 \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663712064326803456,"in_reply_to_status_id_str":"663712064326803456","in_reply_to_user_id":1675622911,"in_reply_to_user_id_str":"1675622911","in_reply_to_screen_name":"onlyraawan","user":{"id":3472982540,"id_str":"3472982540","name":"\u062a\u064f\u0640\u0631\u0643\u0650\u0640\u064a","screen_name":"May_dr1","location":null,"url":null,"description":"My life are #Alahli #RealMadrid #Anime #movies #series #MedicalStudent","protected":false,"verified":false,"followers_count":88,"friends_count":139,"listed_count":0,"favourites_count":53,"statuses_count":586,"created_at":"Sun Sep 06 17:51:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661648915821932545\/sZu4l7NX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661648915821932545\/sZu4l7NX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3472982540\/1443689487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"onlyraawan","name":"Dr.rawan","id":1675622911,"id_str":"1675622911","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944608256,"id_str":"663728206944608256","text":"RT @JackJackJohnson: Thanks for coming \u2764\ufe0f https:\/\/t.co\/5pUQ70KBLg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1861124864,"id_str":"1861124864","name":"Marine","screen_name":"marinespipinosa","location":"Midi-Pyr\u00e9n\u00e9es, France","url":null,"description":"1\/12. 22.05. Old Magcon. Jerome m'a fav x2 loml @TheMattEspinosa Squad\/ouline's life bae","protected":false,"verified":false,"followers_count":1718,"friends_count":1705,"listed_count":1,"favourites_count":13962,"statuses_count":13403,"created_at":"Fri Sep 13 16:45:19 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657522389358616576\/3AQtwO4h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657522389358616576\/3AQtwO4h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1861124864\/1435845528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728101151522818,"id_str":"663728101151522818","text":"Thanks for coming \u2764\ufe0f https:\/\/t.co\/5pUQ70KBLg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588963,"friends_count":19062,"listed_count":9491,"favourites_count":8857,"statuses_count":13966,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663113867980091392,"quoted_status_id_str":"663113867980091392","quoted_status":{"created_at":"Sat Nov 07 22:00:40 +0000 2015","id":663113867980091392,"id_str":"663113867980091392","text":"Jack and Jack are so talented I'm so glad I came to Spain to see them, they made all the miles worth it\ud83d\udc9a\ud83d\udc9b\u2764\ufe0f https:\/\/t.co\/ew9oCjSFUN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1650795336,"id_str":"1650795336","name":"Marta","screen_name":"hypebizzle","location":null,"url":"https:\/\/vine.co\/v\/O5MABIY0Wa3","description":"hypebizzle?!? omg I know this one!! - Jacob Whitesides","protected":false,"verified":false,"followers_count":85958,"friends_count":51080,"listed_count":176,"favourites_count":34620,"statuses_count":42265,"created_at":"Tue Aug 06 17:32:40 +0000 2013","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449628476715196417\/VilyCxow.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449628476715196417\/VilyCxow.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659163758355456001\/Kshmw9YR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659163758355456001\/Kshmw9YR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650795336\/1445991781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663113823700836352,"id_str":"663113823700836352","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","url":"https:\/\/t.co\/ew9oCjSFUN","display_url":"pic.twitter.com\/ew9oCjSFUN","expanded_url":"http:\/\/twitter.com\/hypebizzle\/status\/663113867980091392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663113823700836352,"id_str":"663113823700836352","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","url":"https:\/\/t.co\/ew9oCjSFUN","display_url":"pic.twitter.com\/ew9oCjSFUN","expanded_url":"http:\/\/twitter.com\/hypebizzle\/status\/663113867980091392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":238,"favorite_count":663,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5pUQ70KBLg","expanded_url":"https:\/\/twitter.com\/hypebizzle\/status\/663113867980091392","display_url":"twitter.com\/hypebizzle\/sta\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5pUQ70KBLg","expanded_url":"https:\/\/twitter.com\/hypebizzle\/status\/663113867980091392","display_url":"twitter.com\/hypebizzle\/sta\u2026","indices":[42,65]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919413764,"id_str":"663728206919413764","text":"Me duele much\u00edsimo la cabeza\ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2173042314,"id_str":"2173042314","name":"Santonelia\u2764","screen_name":"NadiaaaDiaz","location":"Neuqu\u00e9n, Argentina","url":null,"description":"\u2764","protected":false,"verified":false,"followers_count":198,"friends_count":155,"listed_count":0,"favourites_count":5962,"statuses_count":10742,"created_at":"Mon Nov 04 00:32:09 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503023731711565824\/mx3pW4Hx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503023731711565824\/mx3pW4Hx.jpeg","profile_background_tile":false,"profile_link_color":"6CC7BB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655595949025271808\/OfkNmd9h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655595949025271808\/OfkNmd9h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2173042314\/1445449349","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944542720,"id_str":"663728206944542720","text":"FREE ANT !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415267619,"id_str":"415267619","name":"LootVisuals","screen_name":"DatBoy2Dope","location":null,"url":null,"description":"19 R.I.P SK never forgotten.... 99 Problems But A Blessing Gone Come #FreeFero400 !!!","protected":false,"verified":false,"followers_count":1267,"friends_count":1175,"listed_count":3,"favourites_count":1428,"statuses_count":18431,"created_at":"Fri Nov 18 03:38:31 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/566483322\/jhdupl7rk5kgznf5e85p.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/566483322\/jhdupl7rk5kgznf5e85p.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658627582640955392\/x_P3EsA5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658627582640955392\/x_P3EsA5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415267619\/1443449817","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206931980288,"id_str":"663728206931980288","text":"votingacc17326: CosnaAmir: 525kath26niel: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3670131314,"id_str":"3670131314","name":"Kathryn Ford","screen_name":"knxgoals","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16,"friends_count":30,"listed_count":8,"favourites_count":0,"statuses_count":20228,"created_at":"Thu Sep 24 12:10:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647020908733853698\/aZchO75m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647020908733853698\/aZchO75m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3670131314\/1443096999","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[82,102]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110663"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206923620352,"id_str":"663728206923620352","text":"\u064a\u0646\u0633\u0627\u0646\u064a \u0625\u0646\u0633\u0627\u0646 \u0623\u0646\u0627 \u0623\u0630\u0643\u0631 \u062a\u0641\u0627\u0635\u064a\u0644\u0647 .. \u0648\u064a\u0630\u0643\u0631\u0646\u064a \u0625\u0646\u0633\u0627\u0646 \u0623\u0646\u0627 \u0645\u0627\u0639\u0631\u0641 \u063a\u064a\u0631 \u0627\u0633\u0645\u0647 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294945962,"id_str":"3294945962","name":"-","screen_name":"mahaa__3","location":null,"url":null,"description":"be yourself.","protected":false,"verified":false,"followers_count":306,"friends_count":605,"listed_count":0,"favourites_count":432,"statuses_count":4757,"created_at":"Sun Jul 26 10:46:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654784394226364417\/yOtGxzk6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654784394226364417\/yOtGxzk6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294945962\/1444947715","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080110661"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206932008960,"id_str":"663728206932008960","text":"mambo black","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346099892,"id_str":"346099892","name":"MandM","screen_name":"MarkSecondOk","location":"https:\/\/www.facebook.com\/MariP","url":"http:\/\/ask.fm\/CigarrilloConSaborALimon","description":"Soy de mi novia que me ama much\u00edsimo \u2022 24\/03\/15 \u2022 Qu\u00e9 placer coincidir en esta vida \u2022 =A= \u2022 wsp: 3413127030 \u2022 snap: copipalacios \u2022 Monster","protected":false,"verified":false,"followers_count":980,"friends_count":685,"listed_count":2,"favourites_count":5350,"statuses_count":24555,"created_at":"Sun Jul 31 18:36:42 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598979954718576640\/OreahViy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598979954718576640\/OreahViy.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663384405092794368\/x70BmQZx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663384405092794368\/x70BmQZx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346099892\/1441298579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080110663"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919266305,"id_str":"663728206919266305","text":"RT @kebdi10: Una relaci\u00f3n sin sexo ? JAJAJAJAJAJAJA OMBE NO, ESTO NO COME PAN HERMANO M\u00cdO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1390610840,"id_str":"1390610840","name":"Wilfre ","screen_name":"wilfremarrero","location":"19 years l Puerto Rico l UPRB ","url":null,"description":"las apariencias enga\u00f1an l SC: wilfre15","protected":false,"verified":false,"followers_count":472,"friends_count":342,"listed_count":3,"favourites_count":5698,"statuses_count":75705,"created_at":"Mon Apr 29 22:31:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638148965322457088\/k41xFjsq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638148965322457088\/k41xFjsq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390610840\/1420753710","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:51 +0000 2015","id":663724182560116737,"id_str":"663724182560116737","text":"Una relaci\u00f3n sin sexo ? JAJAJAJAJAJAJA OMBE NO, ESTO NO COME PAN HERMANO M\u00cdO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007780634,"id_str":"1007780634","name":"Kebdo","screen_name":"kebdi10","location":null,"url":null,"description":"\u2022UPRRP\u2022 TAQUILLAS ELECTRIC HOLIDAY (787) 526-5594","protected":false,"verified":false,"followers_count":1577,"friends_count":450,"listed_count":2,"favourites_count":12151,"statuses_count":95578,"created_at":"Thu Dec 13 02:09:19 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659861922519519232\/eIBCdTjd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659861922519519232\/eIBCdTjd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007780634\/1445122766","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kebdi10","name":"Kebdo","id":1007780634,"id_str":"1007780634","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206931869696,"id_str":"663728206931869696","text":"RT @Suicide_skater: \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e21\u0e32\u0e44\u0e01\u0e25 \u0e41\u0e15\u0e48\u0e08\u0e23\u0e34\u0e07\u0e46\u0e40\u0e14\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e01\u0e25\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1142627545,"id_str":"1142627545","name":"\u0e2d\u0e31\u0e04\u0e23\u0e22\u0e2d\u0e25\u0e27\u0e2d\u0e19\u0e1a\u0e34\u0e25\u0e25\u0e4c","screen_name":"Chanyeol_MM","location":null,"url":null,"description":"\u0e23\u0e31\u0e01\u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25 \u0e2b\u0e25\u0e2d\u0e19\u0e40\u0e2b\u0e07\u0e37\u0e2d\u0e01\u0e40\u0e2e\u0e35\u0e22\u0e1a\u0e31\u0e07 \u0e04\u0e25\u0e31\u0e48\u0e07\u0e08\u0e38\u0e19\u0e2e\u0e07 \u0e2b\u0e25\u0e07\u0e08\u0e07\u0e2d\u0e2d\u0e1a \u0e0a\u0e2d\u0e1a\u0e22\u0e2d\u0e07\u0e41\u0e08 \u0e19\u0e31\u0e48\u0e07\u0e41\u0e2b\u0e23\u0e01\u0e30\u0e41\u0e17\u0e21\u0e34\u0e19 \u0e41\u0e17\u0e30\u0e2b\u0e34\u0e19\u0e01\u0e30\u0e21\u0e34\u0e19\u0e27\u0e39 \u0e40\u0e1b\u0e47\u0e19\u0e0a\u0e39\u0e49\u0e04\u0e22\u0e39\u0e2e\u0e22\u0e2d\u0e19 \u0e2d\u0e31\u0e04\u0e23\u0e22\u0e2d\u0e25x\u0e1e\u0e23\u0e1b\u0e23\u0e30\u0e41\u0e1a\u0e04","protected":false,"verified":false,"followers_count":976,"friends_count":305,"listed_count":1,"favourites_count":7475,"statuses_count":38986,"created_at":"Sat Feb 02 14:48:27 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452800193843310593\/-XwCpjCA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452800193843310593\/-XwCpjCA.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497715008264876032\/7UPYO5zW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497715008264876032\/7UPYO5zW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1142627545\/1396791115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jul 15 16:30:57 +0000 2015","id":621356286819483648,"id_str":"621356286819483648","text":"\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e19\u0e21\u0e32\u0e44\u0e01\u0e25 \u0e41\u0e15\u0e48\u0e08\u0e23\u0e34\u0e07\u0e46\u0e40\u0e14\u0e34\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e27\u0e07\u0e01\u0e25\u0e21","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":437264756,"id_str":"437264756","name":"\u2716\u2716","screen_name":"Suicide_skater","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":409,"friends_count":100,"listed_count":0,"favourites_count":12,"statuses_count":1179,"created_at":"Thu Dec 15 06:02:50 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600682883108352000\/MdPyzixT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600682883108352000\/MdPyzixT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/437264756\/1356271184","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5155,"favorite_count":682,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Suicide_skater","name":"\u2716\u2716","id":437264756,"id_str":"437264756","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080110663"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206906716160,"id_str":"663728206906716160","text":"Sorry.","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":571347526,"id_str":"571347526","name":"Louise","screen_name":"janelalouise","location":null,"url":null,"description":"You don't have to be famous, you just have to make your mother and father proud. ig: @janelalouise","protected":false,"verified":false,"followers_count":91,"friends_count":134,"listed_count":0,"favourites_count":679,"statuses_count":2622,"created_at":"Sat May 05 02:05:09 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/876151375\/123622537366b13bfabd8a7db293f134.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/876151375\/123622537366b13bfabd8a7db293f134.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657878800097669120\/jfqW774y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657878800097669120\/jfqW774y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/571347526\/1445339216","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110657"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206940233729,"id_str":"663728206940233729","text":"\u0e40\u0e2b\u0e19\u0e37\u0e48\u0e2d\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1607518482,"id_str":"1607518482","name":"\u0e19\u0e49\u0e2d\u0e07\u0e40\u0e21\u0e22\u0e4c \u0e2a\u0e27\u0e22\u0e2a\u0e31\u0e07\u0e2b\u0e32\u0e23","screen_name":"maymiimay2","location":null,"url":null,"description":"@pruk_pm","protected":false,"verified":false,"followers_count":1098,"friends_count":292,"listed_count":1,"favourites_count":7821,"statuses_count":22422,"created_at":"Sat Jul 20 05:48:38 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663311540976644096\/frymZmol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663311540976644096\/frymZmol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607518482\/1446393929","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080110665"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944403456,"id_str":"663728206944403456","text":"\u0e21\u0e31\u0e19\u0e2d\u0e30\u0e44\u0e23 #2015MAMA \u0e2b\u0e25\u0e31\u0e1a\u0e46\u0e2d\u0e22\u0e39\u0e48\u0e2a\u0e30\u0e14\u0e38\u0e49\u0e07\u0e15\u0e37\u0e48\u0e19 #EXO \u0e15\u0e32\u0e2a\u0e27\u0e48\u0e32\u0e07\n\u0e40\u0e25\u0e22 #CALLLMEBABY \u0e40\u0e17\u0e23\u0e19\u0e41\u0e1a\u0e1a\u0e07\u0e07\u0e46 @MnetMAMA \u0e1b\u0e31\u0e14\u0e42\u0e18\u0e48\u0e40\u0e2d\u0e49\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3166323516,"id_str":"3166323516","name":"BYUNEE_BEE","screen_name":"BYUN_MOMAY","location":null,"url":null,"description":"EXO-L WE ARE ONE #BAEKHYUN #CHANYEOL #CHANBAEK \u2764\ufe0f","protected":false,"verified":false,"followers_count":613,"friends_count":210,"listed_count":3,"favourites_count":2327,"statuses_count":59163,"created_at":"Tue Apr 21 07:19:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660707115187593216\/Xj3rnOgP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660707115187593216\/Xj3rnOgP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3166323516\/1446990762","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[8,17]},{"text":"EXO","indices":[38,42]},{"text":"CALLLMEBABY","indices":[55,67]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[79,88]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206923636736,"id_str":"663728206923636736","text":"ok so i was talking to this person and i was like \"do you like arctic monkeys?\" and he was like \"uhm do you wanna know?\" and then we laughed","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2491250516,"id_str":"2491250516","name":"day 2 pls","screen_name":"Y0UNGGODCTH","location":"PH","url":"https:\/\/twitter.com\/Luke5SOS\/status\/531932524805488640","description":"@Calum5SOS: @Michael5SOS YOU HIT A MILLION LETS HAVE SEX","protected":false,"verified":false,"followers_count":3113,"friends_count":1564,"listed_count":20,"favourites_count":8072,"statuses_count":18210,"created_at":"Mon May 12 10:40:21 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465837062331985920\/tX0YEby5.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465837062331985920\/tX0YEby5.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662972896252293122\/5QuCqvdG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662972896252293122\/5QuCqvdG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2491250516\/1446901773","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110661"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944542721,"id_str":"663728206944542721","text":"@Jack_Fortner not a drill","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724515072081920,"in_reply_to_status_id_str":"663724515072081920","in_reply_to_user_id":1155703430,"in_reply_to_user_id_str":"1155703430","in_reply_to_screen_name":"Jack_Fortner","user":{"id":1459797752,"id_str":"1459797752","name":"A-Aron5\u20e3","screen_name":"cook20aaron","location":"Shelby's mine","url":"http:\/\/espn.com\/AaronCook","description":"9\/18\/15","protected":false,"verified":false,"followers_count":438,"friends_count":245,"listed_count":0,"favourites_count":5522,"statuses_count":6100,"created_at":"Sun May 26 14:31:28 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659005278399152128\/jiUsOWdT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659005278399152128\/jiUsOWdT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459797752\/1446087089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jack_Fortner","name":"papi","id":1155703430,"id_str":"1155703430","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206931824641,"id_str":"663728206931824641","text":"RT @INFINITE_mssh: \uc5ec\ub7ec\ubd84\uadf8\ub0e5\ubcf5\ubd99\uc744\ud574\uc6a9\ud798\ube7c\uc9c0\ub9d0\uc790 #2015MAMA \uadf8\ub0e5 #INFINITE \ud55c\ud14c\uc0c1\ub2e4\uc8fc\uba74\uc870\uc744\ud150\ub370\uc5d0 #BAD \ub294\uc815\ub9d0\uba85\uace1\uc774\ub2e4\ub4e4\uc5b4\ub3c4\uc548\uc9c8\ub9b0\ub2e4\ud734\ud734\ub0b4\uac00\uc218\uc9f1\uc774\uc57c\uae40\uc131\uaddc\uc7a5\ub3d9\uc6b0\ub0a8\uc6b0\ud604\uc774\ud638\uc6d0\uc774\uc131\uc5f4\uae40\uba85\uc218\uc774\uc131\uc885\uc0ac\ub791\ud574 \uadf8\ub0e5\ud558\ub098\uac19\uc774\ubcf5\ubd99\ud574\uc11c\uc22b\uc790\ub3c4\ubc30\ud574\uc694\uc6b0\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2526455162,"id_str":"2526455162","name":"\ub274\ub798\ube44(\uc0c8\uacc4\uc815)","screen_name":"seven__sen","location":null,"url":null,"description":"\uacf5\uc2dd\uc778\uc2be5\uae30+20\ub300\uc778\uc2be\/\n\ud568\uaed8 \ud560 \ud568\uaed8 \uac08 \uc778\ud53c\ub2c8\ud2b8\u2661","protected":false,"verified":false,"followers_count":38,"friends_count":85,"listed_count":0,"favourites_count":15,"statuses_count":622,"created_at":"Tue May 27 03:40:20 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653226593184157696\/ZQbsVC2g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653226593184157696\/ZQbsVC2g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2526455162\/1444578642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:35 +0000 2015","id":663727388400881665,"id_str":"663727388400881665","text":"\uc5ec\ub7ec\ubd84\uadf8\ub0e5\ubcf5\ubd99\uc744\ud574\uc6a9\ud798\ube7c\uc9c0\ub9d0\uc790 #2015MAMA \uadf8\ub0e5 #INFINITE \ud55c\ud14c\uc0c1\ub2e4\uc8fc\uba74\uc870\uc744\ud150\ub370\uc5d0 #BAD \ub294\uc815\ub9d0\uba85\uace1\uc774\ub2e4\ub4e4\uc5b4\ub3c4\uc548\uc9c8\ub9b0\ub2e4\ud734\ud734\ub0b4\uac00\uc218\uc9f1\uc774\uc57c\uae40\uc131\uaddc\uc7a5\ub3d9\uc6b0\ub0a8\uc6b0\ud604\uc774\ud638\uc6d0\uc774\uc131\uc5f4\uae40\uba85\uc218\uc774\uc131\uc885\uc0ac\ub791\ud574 \uadf8\ub0e5\ud558\ub098\uac19\uc774\ubcf5\ubd99\ud574\uc11c\uc22b\uc790\ub3c4\ubc30\ud574\uc694\uc6b0\ub9ac\uc81c\ubc1c\ud558\ud558 @MnetMAMA 4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269143496,"id_str":"269143496","name":"\ud65c\uc18c\uc778\ud53c\ub2db\u2764","screen_name":"INFINITE_mssh","location":"\uc778\ud53c\ub2c8\ud2b8 \ub9c8\uc74c\uc18d","url":null,"description":"\u3147\u314d\u3134\u314c \ud589\uc1fc\u2661\n\uac00\ub054\uc529 \uc790\uc8fc \ub2c9\ub134 \ubc14\uaef4\uc694","protected":false,"verified":false,"followers_count":2582,"friends_count":340,"listed_count":14,"favourites_count":3098,"statuses_count":176499,"created_at":"Sun Mar 20 05:19:01 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553491401388720128\/gkLXMEC8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553491401388720128\/gkLXMEC8.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663420425213374465\/x_YEiNyZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663420425213374465\/x_YEiNyZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269143496\/1446689624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[16,25]},{"text":"INFINITE","indices":[29,38]},{"text":"BAD","indices":[51,55]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[126,135]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[35,44]},{"text":"INFINITE","indices":[48,57]},{"text":"BAD","indices":[70,74]}],"urls":[],"user_mentions":[{"screen_name":"INFINITE_mssh","name":"\ud65c\uc18c\uc778\ud53c\ub2db\u2764","id":269143496,"id_str":"269143496","indices":[3,17]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080110663"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206936166400,"id_str":"663728206936166400","text":"@mononalinares @rosaherrerac @Angeabarca @VivianSst1975 @Q Muy lindo d\u00eda, que tengan un agradable y cortito lunes,","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713436547837952,"in_reply_to_status_id_str":"663713436547837952","in_reply_to_user_id":3168020213,"in_reply_to_user_id_str":"3168020213","in_reply_to_screen_name":"mononalinares","user":{"id":66868014,"id_str":"66868014","name":"Marcia Vargas S.","screen_name":"MarciaVargasS","location":"Las Condes, Santiago - CHILE","url":"https:\/\/www.facebook.com\/MarciaVargasSandoval?ref=tn_nonslim","description":"Amante de los animales x sobre muchos seres de la tierra.Son capaces de dar el amor que ning\u00fan humano es capaz de sentir. #AntiDuopolio, Indignada y Donante","protected":false,"verified":false,"followers_count":5921,"friends_count":5543,"listed_count":50,"favourites_count":8349,"statuses_count":77244,"created_at":"Wed Aug 19 01:27:08 +0000 2009","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663475109701812225\/fBa1o_58.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663475109701812225\/fBa1o_58.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536502708828504064\/LBSytfbx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536502708828504064\/LBSytfbx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66868014\/1441510067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mononalinares","name":"Veronica Saavedra H","id":3168020213,"id_str":"3168020213","indices":[0,14]},{"screen_name":"rosaherrerac","name":"Rosa Herrera C","id":1083555547,"id_str":"1083555547","indices":[15,28]},{"screen_name":"Angeabarca","name":"Ang\u00e9lica Abarca ","id":252240923,"id_str":"252240923","indices":[29,40]},{"screen_name":"VivianSst1975","name":"Viviana Martinez","id":1299351050,"id_str":"1299351050","indices":[41,55]},{"screen_name":"Q","name":"Ariel Raunstien","id":132655296,"id_str":"132655296","indices":[56,58]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080110664"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206906703872,"id_str":"663728206906703872","text":"@8008_reiya \n\u3046\u3093\u3001\u9055\u3046\u306d(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728123813347330,"in_reply_to_status_id_str":"663728123813347330","in_reply_to_user_id":2897616577,"in_reply_to_user_id_str":"2897616577","in_reply_to_screen_name":"8008_reiya","user":{"id":2762708281,"id_str":"2762708281","name":"\u9752\u91ce \u53cb\u661f","screen_name":"YNisisi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":88,"friends_count":97,"listed_count":0,"favourites_count":44,"statuses_count":357,"created_at":"Sun Aug 24 14:42:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651320437431906304\/GzvLTttw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651320437431906304\/GzvLTttw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2762708281\/1444121905","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"8008_reiya","name":"\u5fb3\u5ddd\u601c\u5f25","id":2897616577,"id_str":"2897616577","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110657"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206940270592,"id_str":"663728206940270592","text":"RT @mamihon_20: \u3010\u30d7\u30ec\u30bc\u30f3\u30c8\u4f01\u753b\u3011\n\u5200\u5263\u4e71\u821e\u3078\u3057\u5207\u9577\u8c37\u90e8(\u7363\u5316)\u306e\u30a2\u30af\u30ea\u30eb\u30d5\u30a3\u30ae\u30e5\u30a2\u3068\u304a\u307e\u3051\u3067\u72ac\u9577\u8c37\u90e8\u30a2\u30af\u30ad\u30fc\u30921\u540d\u306b\u30d7\u30ec\u30bc\u30f3\u30c8\u3057\u307e\u3059\u3002\n\u5fdc\u52df\u306fRT\u3001\u30d5\u30a9\u30ed\u30fc\u306f\u4e0d\u8981\u3067\u3059\u3002\n\u7de0\u5207\u308a\u306f11\u670830\u65e50\u6642\u3002\n\u8a73\u7d30\u3092\u3088\u304f\u8aad\u307f\u5927\u4e08\u592b\u306a\u65b9\u306f\u6c17\u8efd\u306b\u3054\u53c2\u52a0\u304f\u3060\u3055\u3044\u2661 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":96529225,"id_str":"96529225","name":"\u4f55\u3067\u3082\u65ac\u3063\u3066\u5dee\u3057\u4e0a\u3052\u308b\u8336\u5b50\u677e","screen_name":"pkneko","location":"\u897f\u65e5\u672c","url":null,"description":"\u9577\u8c37\u90e8\u7d76\u8cdb\uff7c\uff9e\uff6c\uff7d\uff83\uff68\uff7d\u4e2d\/\u4eca\u5e74\u6d3b\u52d5\u7e2e\u5c0f\u4e2d\u306e\u5e95\u8fba\u30ec\u30a4\u30e4\u30fc\/C.2.B\u6240\u5c5e\/\u57a2\u5206\u3051\u3057\u307e\u3057\u305f \u6210\u4eba\u6e08\u203b\u8150 \u8da3\u5473\u5408\u3046\u65b9\u306e\u307f\u306e\u30d5\u30a9\u30ed\u30d0\u3068\u306a\u308a\u307e\u3059 \u30b3\u30b9\u57a2\u306f\u63a2\u305b\u3070\u3059\u3050\u898b\u3064\u304b\u308a\u307e\u3059","protected":false,"verified":false,"followers_count":313,"friends_count":400,"listed_count":22,"favourites_count":8642,"statuses_count":20987,"created_at":"Sun Dec 13 10:51:05 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639790635784863744\/edzMh3yq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639790635784863744\/edzMh3yq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/96529225\/1435939600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:30 +0000 2015","id":663727117058707456,"id_str":"663727117058707456","text":"\u3010\u30d7\u30ec\u30bc\u30f3\u30c8\u4f01\u753b\u3011\n\u5200\u5263\u4e71\u821e\u3078\u3057\u5207\u9577\u8c37\u90e8(\u7363\u5316)\u306e\u30a2\u30af\u30ea\u30eb\u30d5\u30a3\u30ae\u30e5\u30a2\u3068\u304a\u307e\u3051\u3067\u72ac\u9577\u8c37\u90e8\u30a2\u30af\u30ad\u30fc\u30921\u540d\u306b\u30d7\u30ec\u30bc\u30f3\u30c8\u3057\u307e\u3059\u3002\n\u5fdc\u52df\u306fRT\u3001\u30d5\u30a9\u30ed\u30fc\u306f\u4e0d\u8981\u3067\u3059\u3002\n\u7de0\u5207\u308a\u306f11\u670830\u65e50\u6642\u3002\n\u8a73\u7d30\u3092\u3088\u304f\u8aad\u307f\u5927\u4e08\u592b\u306a\u65b9\u306f\u6c17\u8efd\u306b\u3054\u53c2\u52a0\u304f\u3060\u3055\u3044\u2661 https:\/\/t.co\/7dxSD0xnf5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3567584298,"id_str":"3567584298","name":"\u307e\u307f\u3002@\u9583\u83ef\u4e00\u822c","screen_name":"mamihon_20","location":null,"url":"http:\/\/twpf.jp\/mamihon_20","description":"\u4e80\u30da\u30fc\u30b9 \u304a\u3060\u3066\u6cbc","protected":false,"verified":false,"followers_count":227,"friends_count":162,"listed_count":28,"favourites_count":2604,"statuses_count":1144,"created_at":"Tue Sep 15 04:30:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655808273430372352\/z_qU-LhG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655808273430372352\/z_qU-LhG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3567584298\/1443415617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727111627116544,"id_str":"663727111627116544","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727111627116544,"id_str":"663727111627116544","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}}},{"id":663727115179720704,"id_str":"663727115179720704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIS3AVAAANlzL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIS3AVAAANlzL.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mamihon_20","name":"\u307e\u307f\u3002@\u9583\u83ef\u4e00\u822c","id":3567584298,"id_str":"3567584298","indices":[3,14]}],"symbols":[],"media":[{"id":663727111627116544,"id_str":"663727111627116544","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663727117058707456,"source_status_id_str":"663727117058707456","source_user_id":3567584298,"source_user_id_str":"3567584298"}]},"extended_entities":{"media":[{"id":663727111627116544,"id_str":"663727111627116544","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYISpxUkAA4Bf5.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":1365,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"}},"source_status_id":663727117058707456,"source_status_id_str":"663727117058707456","source_user_id":3567584298,"source_user_id_str":"3567584298"},{"id":663727115179720704,"id_str":"663727115179720704","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIS3AVAAANlzL.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIS3AVAAANlzL.png","url":"https:\/\/t.co\/7dxSD0xnf5","display_url":"pic.twitter.com\/7dxSD0xnf5","expanded_url":"http:\/\/twitter.com\/mamihon_20\/status\/663727117058707456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727117058707456,"source_status_id_str":"663727117058707456","source_user_id":3567584298,"source_user_id_str":"3567584298"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110665"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206936051713,"id_str":"663728206936051713","text":"@ZnoonZ \u3072\u3043\u301c\u301c\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\ud83d\ude2d\ud83d\ude2d \u5b8c\u6210\u524d\u3082\u6c17\u306b\u5165\u3063\u3066\u3044\u305f\u3060\u3051\u3066(\uff1f)\u5b09\u3057\u3044\u3067\u3059www \u9b3c\u8718\u86db\u4e38\u3055\u3093\u63a8\u3057\u307f\u305f\u3044\u3067\u3059\uff01\uff01\u3067\u3082\u75be\u98a8\u3055\u3093\u3082SUKI\u3067\u3059\u3069\u3046\u306b\u3082\u30ae\u30e3\u30c3\u30d7\u306b\u5f31\u3044\u2026\uff01 \u30be\u30ce\u3055\u3093\u306f\u91cd\u304f\u3093\u63a8\u3057\u306a\u3093\u3067\u3059\u304b\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726909721739264,"in_reply_to_status_id_str":"663726909721739264","in_reply_to_user_id":3028525069,"in_reply_to_user_id_str":"3028525069","in_reply_to_screen_name":"ZnoonZ","user":{"id":1369313346,"id_str":"1369313346","name":"\u304b\u3064\u304a","screen_name":"toufu1945","location":"\u3089\u3093\u3089\u3093\u4e71\u6c17\u6d41","url":null,"description":"\u6210\u4eba\u6e08\/OK\u3001\u5bff\u4e00\uff01\/\u516d\u308d\u3053\u3078\u6edd\u4f53\u80b2\/\u307e\u3063\u305f\u308a\u3042\u3093\u30b9\u30bf\u3082","protected":false,"verified":false,"followers_count":306,"friends_count":136,"listed_count":6,"favourites_count":4810,"statuses_count":12157,"created_at":"Sun Apr 21 11:25:50 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"314985","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167928705\/bwd0Uzvi.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167928705\/bwd0Uzvi.jpeg","profile_background_tile":true,"profile_link_color":"F7A29E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660736027267477504\/PS3p6XC8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660736027267477504\/PS3p6XC8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1369313346\/1443801289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ZnoonZ","name":"\u30be\u30ce","id":3028525069,"id_str":"3028525069","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110664"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919397376,"id_str":"663728206919397376","text":"poor $STON ...... economy so bad people postponing death ?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":392739061,"id_str":"392739061","name":"Dividend Master","screen_name":"DividendMaster","location":"NYC","url":null,"description":"20yrs in mortgage trading at several big shops . Now a macro events equity oriented carry trader in high cash payout plays and when to get in\/out .","protected":false,"verified":false,"followers_count":7916,"friends_count":840,"listed_count":354,"favourites_count":10298,"statuses_count":128364,"created_at":"Mon Oct 17 14:08:10 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2869400899\/8678222d0972efaa50ba282403d38ffd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2869400899\/8678222d0972efaa50ba282403d38ffd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/392739061\/1355247148","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[{"text":"STON","indices":[5,10]}]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915239936,"id_str":"663728206915239936","text":"@kaicGustavo_ n mt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663611463056105472,"in_reply_to_status_id_str":"663611463056105472","in_reply_to_user_id":2859342893,"in_reply_to_user_id_str":"2859342893","in_reply_to_screen_name":"kaicGustavo_","user":{"id":391799257,"id_str":"391799257","name":"\u2764","screen_name":"_JannaSillva","location":"Manaus, Amazonas","url":null,"description":"Snap: Janna.hey \u2764","protected":false,"verified":false,"followers_count":434,"friends_count":936,"listed_count":0,"favourites_count":2982,"statuses_count":3473,"created_at":"Sun Oct 16 03:46:39 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000123005127\/be34e8ee7b6b7f7684b36a77224d36c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000123005127\/be34e8ee7b6b7f7684b36a77224d36c1.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661313163036647426\/K7i3PEvU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661313163036647426\/K7i3PEvU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/391799257\/1446533183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaicGustavo_","name":"Gustavo Silva","id":2859342893,"id_str":"2859342893","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206927671297,"id_str":"663728206927671297","text":"@kazumaaa1223 \u3044\u3044\u611f\u3058\ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727744077795328,"in_reply_to_status_id_str":"663727744077795328","in_reply_to_user_id":3985292112,"in_reply_to_user_id_str":"3985292112","in_reply_to_screen_name":"kazumaaa1223","user":{"id":2453204666,"id_str":"2453204666","name":"\u3070\u3089\u304f\u3093","screen_name":"ryuki123321","location":null,"url":null,"description":"\u5ea7\u30cb\u2192NY12*like:Christia Dior\/GaGa milano\/back number*\u30ea\u30e0\u306f\u8fd4\u3059\u3088\u301c\u3001\u57fa\u672c\u3053\u3063\u3061\u304b\u3089\u30ea\u30e0\u306f\u3057\u306a\u3044\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u5206\u6b21\u7b2c\u3067\u301c","protected":false,"verified":false,"followers_count":1072,"friends_count":956,"listed_count":1,"favourites_count":1221,"statuses_count":2081,"created_at":"Sat Apr 19 13:46:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649221895406026752\/KFF9bHBV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649221895406026752\/KFF9bHBV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453204666\/1439636573","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kazumaaa1223","name":"\u576a\u4e95\u304b\u305a\u307e","id":3985292112,"id_str":"3985292112","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110662"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919266304,"id_str":"663728206919266304","text":"@Neonspin \uc751\uae09\uc2e4 \ub808\uc9c0\ub358\ud2b8\u314b\u314b\u314b\u314b\u314b","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662522843926691840,"in_reply_to_status_id_str":"662522843926691840","in_reply_to_user_id":183870010,"in_reply_to_user_id_str":"183870010","in_reply_to_screen_name":"Neonspin","user":{"id":2393713334,"id_str":"2393713334","name":"\uc2e4\ubca0\uc2a4\ud14c\/\u3064\u3070\u3089(\uc218\ub2a5\uae4c\uc9c0 \uc7a0\uc218)","screen_name":"cm_Tsubara","location":"\ud559\uad50 \uc5b4\ub518\uac00","url":null,"description":"\uc790\uce90 \ub355\uc9c8\/\uc560\ub2c8(\ub098\ub8e8\ud1a0, \ub9ac\ubcf8,\ucfe0\ub85c\ubc14\uc2a4,) \uc2e4\ubca0\uc2a4\ud14c\uce20\ubc14\ub77c \uacc4\uc774\ud588\uc5b4\uc694","protected":false,"verified":false,"followers_count":78,"friends_count":139,"listed_count":1,"favourites_count":240,"statuses_count":10890,"created_at":"Mon Mar 17 03:53:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643450279224938496\/SI0PelAJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643450279224938496\/SI0PelAJ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Neonspin","name":"\ub3d9\uacb0\uc740 \ub05d-\ub0ac-\ub2e4","id":183870010,"id_str":"183870010","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206906691584,"id_str":"663728206906691584","text":"RT @AnonCopWatch: \"Journalist\" @nate_thayer helps create the #OpKKK list, uses the info to write a @VICE article, then threatens us? https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143825782,"id_str":"1143825782","name":"Purple B. Haze","screen_name":"purplebhaze","location":"Colorady","url":null,"description":"Born Yapper","protected":false,"verified":false,"followers_count":224,"friends_count":409,"listed_count":0,"favourites_count":7807,"statuses_count":13419,"created_at":"Sun Feb 03 00:50:54 +0000 2013","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"209120","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469143094856671233\/NQuJk2hq.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469143094856671233\/NQuJk2hq.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651577979722596352\/X-k7kTNk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651577979722596352\/X-k7kTNk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1143825782\/1424227368","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:20:11 +0000 2015","id":663617061982089217,"id_str":"663617061982089217","text":"\"Journalist\" @nate_thayer helps create the #OpKKK list, uses the info to write a @VICE article, then threatens us? https:\/\/t.co\/Kl8fTRqHPl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250397073,"id_str":"250397073","name":"Anon Cop Watch","screen_name":"AnonCopWatch","location":"United States","url":null,"description":"#NOWsec #BraapSec #OpKKK #HoodsOff #OpSwineLawn \u2022Under New Management\u2022 anoncopwatch@riseup.net http:\/\/ustre.am\/1ho6j http:\/\/ustre.am\/1qF0H","protected":false,"verified":false,"followers_count":34925,"friends_count":1355,"listed_count":433,"favourites_count":1750,"statuses_count":5807,"created_at":"Fri Feb 11 00:54:14 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627295112196829184\/_zBylw-9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627295112196829184\/_zBylw-9.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644818597861175297\/BZiP5G1w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644818597861175297\/BZiP5G1w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250397073\/1442571070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":79,"entities":{"hashtags":[{"text":"OpKKK","indices":[43,49]}],"urls":[],"user_mentions":[{"screen_name":"nate_thayer","name":"Nate Thayer","id":371647364,"id_str":"371647364","indices":[13,25]},{"screen_name":"VICE","name":"VICE","id":23818581,"id_str":"23818581","indices":[81,86]}],"symbols":[],"media":[{"id":663617055652876288,"id_str":"663617055652876288","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663617055652876288,"id_str":"663617055652876288","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}},{"id":663617055657033729,"id_str":"663617055657033729","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjVUAAE7uNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjVUAAE7uNy.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":551,"resize":"fit"}}},{"id":663617055678070784,"id_str":"663617055678070784","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjaVAAAv2rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjaVAAAv2rR.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":560,"resize":"fit"},"medium":{"w":600,"h":448,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663617055669665792,"id_str":"663617055669665792","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjYUwAAlqdU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjYUwAAlqdU.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":750,"h":486,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OpKKK","indices":[61,67]}],"urls":[],"user_mentions":[{"screen_name":"AnonCopWatch","name":"Anon Cop Watch","id":250397073,"id_str":"250397073","indices":[3,16]},{"screen_name":"nate_thayer","name":"Nate Thayer","id":371647364,"id_str":"371647364","indices":[31,43]},{"screen_name":"VICE","name":"VICE","id":23818581,"id_str":"23818581","indices":[99,104]}],"symbols":[],"media":[{"id":663617055652876288,"id_str":"663617055652876288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663617061982089217,"source_status_id_str":"663617061982089217","source_user_id":250397073,"source_user_id_str":"250397073"}]},"extended_entities":{"media":[{"id":663617055652876288,"id_str":"663617055652876288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjUUkAAPqO3.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663617061982089217,"source_status_id_str":"663617061982089217","source_user_id":250397073,"source_user_id_str":"250397073"},{"id":663617055657033729,"id_str":"663617055657033729","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjVUAAE7uNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjVUAAE7uNy.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":440,"resize":"fit"},"small":{"w":340,"h":249,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":551,"resize":"fit"}},"source_status_id":663617061982089217,"source_status_id_str":"663617061982089217","source_user_id":250397073,"source_user_id_str":"250397073"},{"id":663617055678070784,"id_str":"663617055678070784","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjaVAAAv2rR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjaVAAAv2rR.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":560,"resize":"fit"},"medium":{"w":600,"h":448,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663617061982089217,"source_status_id_str":"663617061982089217","source_user_id":250397073,"source_user_id_str":"250397073"},{"id":663617055669665792,"id_str":"663617055669665792","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWkMjYUwAAlqdU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWkMjYUwAAlqdU.jpg","url":"https:\/\/t.co\/Kl8fTRqHPl","display_url":"pic.twitter.com\/Kl8fTRqHPl","expanded_url":"http:\/\/twitter.com\/AnonCopWatch\/status\/663617061982089217\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":388,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":220,"resize":"fit"},"large":{"w":750,"h":486,"resize":"fit"}},"source_status_id":663617061982089217,"source_status_id_str":"663617061982089217","source_user_id":250397073,"source_user_id_str":"250397073"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110657"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206931865600,"id_str":"663728206931865600","text":"https:\/\/t.co\/MbZOqjJTdU","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546468802,"id_str":"546468802","name":"Calebe Ruivo GP","screen_name":"CalebeRuivo","location":null,"url":null,"description":"Making way for The King is Coming","protected":false,"verified":false,"followers_count":64,"friends_count":84,"listed_count":0,"favourites_count":3,"statuses_count":4366,"created_at":"Fri Apr 06 03:02:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561501535\/new-super-mario-bros-wii.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561501535\/new-super-mario-bros-wii.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2047613343\/calebe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2047613343\/calebe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546468802\/1431294133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MbZOqjJTdU","expanded_url":"http:\/\/fb.me\/7CXh9NgCb","display_url":"fb.me\/7CXh9NgCb","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080110663"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944473088,"id_str":"663728206944473088","text":"RT @ENDOATSUKO: \u30cf\u30f3\u30e4\u30f3\u3068\u30a8\u30f3\u30ab\u30f3\u3063\u3066\u74dc\u4e8c\u3064\u3060\u306d\n\n\u3068\u8a00\u308f\u308c\u305f( \ua4aa\u0414\ua4aa)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273529495,"id_str":"3273529495","name":"natsu","screen_name":"cntfs","location":"Hiroshima","url":"http:\/\/instagram.com\/yzrhnu7\/","description":"96 \/ teamJAPAN . Yuzuru \/ Liza \/ Denis","protected":false,"verified":false,"followers_count":53,"friends_count":97,"listed_count":0,"favourites_count":64,"statuses_count":247,"created_at":"Thu Jul 09 23:03:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653953829923217408\/lTWw1IKU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653953829923217408\/lTWw1IKU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273529495\/1442218463","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:52:51 +0000 2015","id":663519584729731072,"id_str":"663519584729731072","text":"\u30cf\u30f3\u30e4\u30f3\u3068\u30a8\u30f3\u30ab\u30f3\u3063\u3066\u74dc\u4e8c\u3064\u3060\u306d\n\n\u3068\u8a00\u308f\u308c\u305f( \ua4aa\u0414\ua4aa)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269274960,"id_str":"269274960","name":"\u65e7\u30a8\u30f3\u30c9\u30a6\u30a2\u30c4\u30b3","screen_name":"ENDOATSUKO","location":"\u65e5\u672c","url":null,"description":"\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30c8\u306e\u5c0f\u585a\u541b\u3092\u305a\u30fc\u3063\u3068\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\u30022013\u5e74\u6b4c\u821e\u4f0e\u306b\u30cf\u30de\u308a\u3001\u58f1\u592a\u90ce\u30d5\u30a1\u30f3\u3068\u306a\u308a\u307e\u3057\u305f\u3002\u76f8\u64b2\u306f\u73fe\u5730\u89b3\u6226\u3082\u30c6\u30ec\u30d3\u3082\u65e7\u59d3\u3068\u540c\u3058\u9060\u85e4\u306b\u30a8\u30fc\u30eb\u3092\u9001\u308a\u4e2d\u3002","protected":false,"verified":false,"followers_count":217,"friends_count":441,"listed_count":3,"favourites_count":5498,"statuses_count":17711,"created_at":"Sun Mar 20 12:51:15 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/493331813226385408\/zrP7fBH__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/493331813226385408\/zrP7fBH__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269274960\/1406454445","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"06ef846bfc783874","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/06ef846bfc783874.json","place_type":"country","name":"\u65e5\u672c","full_name":"\u65e5\u672c","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[122.933197,24.045642],[122.933197,45.522785],[145.817459,45.522785],[145.817459,24.045642]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":55,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ENDOATSUKO","name":"\u65e7\u30a8\u30f3\u30c9\u30a6\u30a2\u30c4\u30b3","id":269274960,"id_str":"269274960","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206944403457,"id_str":"663728206944403457","text":"RT @yabatan_douga: \u3081\u3063\u3061\u3083\u53ef\u611b\u3044\ud83d\ude33\ud83d\udc98\n\n#backnumber\u2728\n#\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0\u2744\n#\u7652\u3055\u308c\u305f\u3089RT\ud83d\udc93\n \nhttps:\/\/t.co\/QDkH5xmjvd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2995526232,"id_str":"2995526232","name":"\u2010\uc0ac\uc720\uce74\u2010syk","screen_name":"Bb1212Is","location":null,"url":null,"description":"\u2765\u2765BIGBANG respect \u261eYGfamily\u261c\u2765\u2765 \uc7a1\uc2dd...\u2765\u2765Block.b BTS GFRIEND CrayonPop etc.\u2765\u2765 follow me\u02d9\u02da\u029a\u2661\u025e\u02da\u02d9 \u5408\u4f75\u3057\u305f\u3002 \u30ea\u30a2\u57a2\u3042\u3064\u304b\u3044\u270c\ufe0e","protected":false,"verified":false,"followers_count":653,"friends_count":619,"listed_count":0,"favourites_count":2030,"statuses_count":2793,"created_at":"Sun Jan 25 07:42:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637292477238546432\/k1TvK2Yt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637292477238546432\/k1TvK2Yt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995526232\/1423049545","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:28:32 +0000 2015","id":663226574246776832,"id_str":"663226574246776832","text":"\u3081\u3063\u3061\u3083\u53ef\u611b\u3044\ud83d\ude33\ud83d\udc98\n\n#backnumber\u2728\n#\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0\u2744\n#\u7652\u3055\u308c\u305f\u3089RT\ud83d\udc93\n \nhttps:\/\/t.co\/QDkH5xmjvd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2573386010,"id_str":"2573386010","name":"\u30e4\u30d0\u305f\u3093\u52d5\u753b","screen_name":"yabatan_douga","location":null,"url":null,"description":"\u8a71\u984c\u306e\u30e4\u30d0\u305f\u3093\u52d5\u753b\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002\u304a\u6c17\u8efd\u306bRT\u3001\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u3002 Twitter\u898f\u7d04\u306b\u5247\u308a\u5171\u6709\u7d39\u4ecb\u30fbRT\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":231442,"friends_count":913,"listed_count":172,"favourites_count":90,"statuses_count":2720,"created_at":"Tue Jun 17 18:44:34 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508738290363535360\/gHjZq0ja.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508738290363535360\/gHjZq0ja.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536910959990697984\/j6qd9tHF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536910959990697984\/j6qd9tHF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2573386010\/1410127579","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7657,"favorite_count":13147,"entities":{"hashtags":[{"text":"backnumber","indices":[11,22]},{"text":"\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0","indices":[24,33]},{"text":"\u7652\u3055\u308c\u305f\u3089RT","indices":[35,43]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663003008767102976,"id_str":"663003008767102976","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","url":"https:\/\/t.co\/QDkH5xmjvd","display_url":"pic.twitter.com\/QDkH5xmjvd","expanded_url":"http:\/\/twitter.com\/y___n033\/status\/663003114144821248\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663003114144821248,"source_status_id_str":"663003114144821248","source_user_id":3347031793,"source_user_id_str":"3347031793"}]},"extended_entities":{"media":[{"id":663003008767102976,"id_str":"663003008767102976","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","url":"https:\/\/t.co\/QDkH5xmjvd","display_url":"pic.twitter.com\/QDkH5xmjvd","expanded_url":"http:\/\/twitter.com\/y___n033\/status\/663003114144821248\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663003114144821248,"source_status_id_str":"663003114144821248","source_user_id":3347031793,"source_user_id_str":"3347031793","video_info":{"aspect_ratio":[1,1],"duration_millis":15115,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/480x480\/h4H5WQysRdRI-8TR.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/pl\/pdTUDi2r7fudAbwC.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/480x480\/h4H5WQysRdRI-8TR.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/240x240\/Y6H-OLZl80NASM3z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/pl\/pdTUDi2r7fudAbwC.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"backnumber","indices":[30,41]},{"text":"\u30af\u30ea\u30b9\u30de\u30b9\u30bd\u30f3\u30b0","indices":[43,52]},{"text":"\u7652\u3055\u308c\u305f\u3089RT","indices":[54,62]}],"urls":[],"user_mentions":[{"screen_name":"yabatan_douga","name":"\u30e4\u30d0\u305f\u3093\u52d5\u753b","id":2573386010,"id_str":"2573386010","indices":[3,17]}],"symbols":[],"media":[{"id":663003008767102976,"id_str":"663003008767102976","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","url":"https:\/\/t.co\/QDkH5xmjvd","display_url":"pic.twitter.com\/QDkH5xmjvd","expanded_url":"http:\/\/twitter.com\/y___n033\/status\/663003114144821248\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663003114144821248,"source_status_id_str":"663003114144821248","source_user_id":3347031793,"source_user_id_str":"3347031793"}]},"extended_entities":{"media":[{"id":663003008767102976,"id_str":"663003008767102976","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663003008767102976\/pu\/img\/je7bw_SZFXYJzPr3.jpg","url":"https:\/\/t.co\/QDkH5xmjvd","display_url":"pic.twitter.com\/QDkH5xmjvd","expanded_url":"http:\/\/twitter.com\/y___n033\/status\/663003114144821248\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663003114144821248,"source_status_id_str":"663003114144821248","source_user_id":3347031793,"source_user_id_str":"3347031793","video_info":{"aspect_ratio":[1,1],"duration_millis":15115,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/480x480\/h4H5WQysRdRI-8TR.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/pl\/pdTUDi2r7fudAbwC.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/480x480\/h4H5WQysRdRI-8TR.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/vid\/240x240\/Y6H-OLZl80NASM3z.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663003008767102976\/pu\/pl\/pdTUDi2r7fudAbwC.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110666"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915088384,"id_str":"663728206915088384","text":"@___0uk \u307e\u305f\u304a\u524d\u304b\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725425227513856,"in_reply_to_status_id_str":"663725425227513856","in_reply_to_user_id":3101059200,"in_reply_to_user_id_str":"3101059200","in_reply_to_screen_name":"___0uk","user":{"id":161189520,"id_str":"161189520","name":"A low S an\uff20\u304a\u3063\u3071\u3044\u63c9\u307f\u305f\u3044","screen_name":"oldman_san","location":"\u6771\u4eac\u90fd","url":null,"description":"I am your ally. However, I am not your enemy's enemy.\u3000sub\uff1a@alobatrus3","protected":false,"verified":false,"followers_count":1260,"friends_count":253,"listed_count":40,"favourites_count":20,"statuses_count":125447,"created_at":"Wed Jun 30 06:06:42 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/266755919\/twitter_w01.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/266755919\/twitter_w01.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662430828106924033\/AoSqB7yX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662430828106924033\/AoSqB7yX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161189520\/1440945483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___0uk","name":"\u3042\u3084\u3061\u30fc\u306e\u00b0","id":3101059200,"id_str":"3101059200","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206931824640,"id_str":"663728206931824640","text":"@Kayas_1 \ubabb\ub3fc\uc2e0\ubd84....","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727940711002112,"in_reply_to_status_id_str":"663727940711002112","in_reply_to_user_id":1117294459,"in_reply_to_user_id_str":"1117294459","in_reply_to_screen_name":"Kayas_1","user":{"id":2365163910,"id_str":"2365163910","name":"\uc218\ub2a5 \uc4f0\ub808\uae30 \ub974\ubc00","screen_name":"blue_mir_","location":null,"url":null,"description":"\u3139H\u3139l \uc2dc\ubc1c\uc544","protected":false,"verified":false,"followers_count":85,"friends_count":108,"listed_count":0,"favourites_count":302,"statuses_count":4299,"created_at":"Fri Feb 28 06:15:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661927125738385408\/kpUUOpAA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661927125738385408\/kpUUOpAA_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kayas_1","name":"\uce74\uc57c@\uc5d0\uc774\ubbf8 \uc544\ube60","id":1117294459,"id_str":"1117294459","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080110663"} +{"delete":{"status":{"id":519149021332381697,"id_str":"519149021332381697","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080110783"}} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206940270593,"id_str":"663728206940270593","text":"@IIDX_CRU \uc74c. \ub0b4\uac00 \ud1a0\uc694\uc77c\uc5d0 \uc54c\ubc14\uac00\uc11c \ud1a0\uc69c \uc0c8\ubcbd 5\uc2dc\uc5d0 \uc77c\uc5b4\ub098\uc57c\ud558\ub294\ub300","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728031907708928,"in_reply_to_status_id_str":"663728031907708928","in_reply_to_user_id":1488094364,"in_reply_to_user_id_str":"1488094364","in_reply_to_screen_name":"IIDX_CRU","user":{"id":3196338540,"id_str":"3196338540","name":"\u932f\u7d9c","screen_name":"sakusou_","location":null,"url":null,"description":"\u97d3\u56fd\u306eDDR,PIU Player\/DDR'44184454\/PIU'EMPTYSKY\/Jubeat,SDVX\/\uc8fc \uad00\uc2ec\uc0ac\ub294 \ub3d9\uc778\uc74c\uc545, \ub77c\ub178\ubca0\/\ud558\ub4dc\ud55c \uc7a5\ub974\ub3c4 \ub4e3\uc9c0\ub9cc \ud2b9\ud788 Trance, House, Electro House \uc7a5\ub974\ub97c \uc88b\uc544\ud574\uc694\/\ub9d0\uc5c6\ub294 \ud314\ub85c\uc6b0\ub294 \ube14\uc5b8\ube14\ud569\ub2c8\ub2e4. \uba58\uc158\uc744 \uaf2d \ubd80\ud0c1\ub4dc\ub824\uc694!","protected":false,"verified":false,"followers_count":326,"friends_count":373,"listed_count":5,"favourites_count":2633,"statuses_count":47808,"created_at":"Fri May 15 14:15:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643109144287842304\/qG3X2c0T.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643109144287842304\/qG3X2c0T.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663356395425693696\/v81f-unR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663356395425693696\/v81f-unR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3196338540\/1444363011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IIDX_CRU","name":"\uace7 \ud574\ubc29(\uc790\uc5f0\uc778)","id":1488094364,"id_str":"1488094364","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080110665"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206940348416,"id_str":"663728206940348416","text":"@Akaiii__ when you slidn back south","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727932733435904,"in_reply_to_status_id_str":"663727932733435904","in_reply_to_user_id":1371058896,"in_reply_to_user_id_str":"1371058896","in_reply_to_screen_name":"Akaiii__","user":{"id":101384504,"id_str":"101384504","name":"Ja'zon \uf8ff","screen_name":"murrayboi_1","location":"NO FLOCK ZONE","url":null,"description":"SoFla\u2600\ufe0f","protected":false,"verified":false,"followers_count":262,"friends_count":176,"listed_count":1,"favourites_count":3216,"statuses_count":1488,"created_at":"Sun Jan 03 03:31:24 +0000 2010","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659171289022767104\/uw-wTqs8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659171289022767104\/uw-wTqs8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101384504\/1440468462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Akaiii__","name":"A-K","id":1371058896,"id_str":"1371058896","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110665"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206910873600,"id_str":"663728206910873600","text":"\u0e44\u0e21\u0e48\u0e2b\u0e23\u0e2d\u0e01 \u0e40\u0e2d\u0e32\u0e2d\u0e31\u0e07\u0e01\u0e24\u0e29\u0e43\u0e2b\u0e49\u0e23\u0e2d\u0e14\u0e01\u0e48\u0e2d\u0e19\u0e21\u0e31\u0e49\u0e22\u0e2d\u0e35\u0e1c\u0e35","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192883694,"id_str":"192883694","name":"\u0e2e\u0e2d\u0e27\u0e32\u0e40\u0e0b\u0e23\u0e31\u0e01\u0e01\u0e31\u0e19\u0e21\u0e32\u0e01\u2661\u2661","screen_name":"ixy852","location":"\ud0dc\uad6d \uc544\uac00\uc138 | #\ub2c8\uac00\ud558\uba74 | \uc7ad\ubc40 is my type","url":"http:\/\/www.xn--72c3cgada4a5az7ag1b7j.com","description":"IGot7 | SuJu | One Direction **never give up on things you can't live a day without** \n#JackBam","protected":false,"verified":false,"followers_count":299,"friends_count":293,"listed_count":3,"favourites_count":737,"statuses_count":48106,"created_at":"Mon Sep 20 12:27:03 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"575757","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660841145698652160\/YMbbwTPV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660841145698652160\/YMbbwTPV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192883694\/1444612246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080110658"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206927654912,"id_str":"663728206927654912","text":"5\u8a71team\u67ca\u4e71\u821e\u306e\u3044\u3057\u306b\u3048\u306e\u3061\u305a\u3092\u3072\u308d\u3052\u3066\u301c\u306e\u632f\u308a\u4ed8\u3051\u3059\u3054\u3044\u597d\u304d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2612636936,"id_str":"2612636936","name":"\u3068\u3046\u3075","screen_name":"tohu_tan","location":null,"url":"http:\/\/usamieee.blog.fc2.com","description":"\u5c11\u5e74\u30cf\u30ea\u30a6\u30c3\u30c9\u3068ZEN THE HOLLYWOOD\u3001\u82b1\u6c5f\u590f\u6a39\u3068\u9022\u5742\u826f\u592a\u3001\u82e5\u624b\u7537\u6027\u58f0\u512a\uff08\u5c0f\u91ce\u8ce2\u7ae0\u3001\u6751\u702c\u6b69\u3001\u6589\u85e4\u58ee\u99ac\u3001\u77f3\u5ddd\u754c\u4eba\u3001\u3073\u30fc\u3081\u3082\u4ed6\uff09\u3001\u4eca\u671f\u30a2\u30cb\u30e1\uff08\u30b9\u30bf\u30df\u30e5\u3001\u30cf\u30a4\u30ad\u30e5\u30fc!!\u4ed6\uff09","protected":false,"verified":false,"followers_count":115,"friends_count":140,"listed_count":0,"favourites_count":4519,"statuses_count":8154,"created_at":"Wed Jul 09 00:20:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650119756721164288\/Du8ZNbYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650119756721164288\/Du8ZNbYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2612636936\/1443835602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110662"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206940246016,"id_str":"663728206940246016","text":"@lovetyokoboru \u307b\u3046\u3002\n\u306a\u308b\u307b\u3069\uff01\n\n\u305d\u308c\u306f\u6717\u5831\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727597130375170,"in_reply_to_status_id_str":"663727597130375170","in_reply_to_user_id":3129478747,"in_reply_to_user_id_str":"3129478747","in_reply_to_screen_name":"lovetyokoboru","user":{"id":265803334,"id_str":"265803334","name":"\u3086\u3046","screen_name":"yuyu082","location":"\u65e5\u672c \u5927\u5206\u770c","url":"http:\/\/uuu-oita.jp","description":"\u3044\u308d\u3044\u308d\u3084\u308a\u305f\u3044\u304a\u5e74\u9803\u2026 \uff01Uuu\u306e\u4eba\u3002#\u30bd\u30fc\u30b5\u30eb \u306e\u4eba\u3002 \u798f\u7949\/\u30de\u30a4\u30ce\u30ea\u30c6\u30a3\/\u30bd\u30fc\u30b5\u30eb\u5927\u5206\u4ee3\u8868\u2190new!","protected":false,"verified":false,"followers_count":500,"friends_count":290,"listed_count":9,"favourites_count":7319,"statuses_count":34476,"created_at":"Mon Mar 14 04:57:12 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1277816750\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1277816750\/image_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265803334\/1424003294","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovetyokoboru","name":"\u26a1\ufe0e\u30c1\u30e7\u30b3\u30dc\u301c\u30eb\u26a1\ufe0e","id":3129478747,"id_str":"3129478747","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110665"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915223552,"id_str":"663728206915223552","text":"@lauuvalleejo Cabrona \ud83d\ude30\ud83d\ude30\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663632037253918720,"in_reply_to_status_id_str":"663632037253918720","in_reply_to_user_id":3065424796,"in_reply_to_user_id_str":"3065424796","in_reply_to_screen_name":"lauuvalleejo","user":{"id":2720167917,"id_str":"2720167917","name":"Iru Lasso","screen_name":"irulasso","location":"Gran Canaria","url":"http:\/\/elblogdelasidasyvenidas.blogspot.com.es\/?m=1","description":"Grancanario del 98. UD Las Palmas. #VamosUD. Instagram: http:\/\/www.instagram.com\/irulasso","protected":false,"verified":false,"followers_count":246,"friends_count":315,"listed_count":3,"favourites_count":8643,"statuses_count":6754,"created_at":"Mon Jul 21 22:59:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660999260205359105\/vlMl1fVl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660999260205359105\/vlMl1fVl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2720167917\/1446902354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lauuvalleejo","name":"laura","id":3065424796,"id_str":"3065424796","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206919282688,"id_str":"663728206919282688","text":"RT @LearnSomethlng: One of the rarest animals on the planet, the black panther. https:\/\/t.co\/GG3QsjFMZ7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975206778,"id_str":"2975206778","name":"Bryce Giacomelli","screen_name":"BryceGiacomelli","location":null,"url":null,"description":"Lassen High School 2k17 varisty basketball and baseball #14","protected":false,"verified":false,"followers_count":163,"friends_count":106,"listed_count":0,"favourites_count":370,"statuses_count":414,"created_at":"Sun Jan 11 18:54:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645408755933298688\/HFykGomA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645408755933298688\/HFykGomA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975206778\/1436211772","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:09 +0000 2015","id":663726775394938882,"id_str":"663726775394938882","text":"One of the rarest animals on the planet, the black panther. https:\/\/t.co\/GG3QsjFMZ7","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2192030256,"id_str":"2192030256","name":"Learn Something","screen_name":"LearnSomethlng","location":"Original Account \u2714 ","url":"http:\/\/Facebook.com\/LearnSomethlng","description":"Discover amazing photos while expanding your mind.Learn something new with us.Not affiliated with any of my tweets.For learning purpose only! Business: @Snehamc","protected":false,"verified":false,"followers_count":572143,"friends_count":180,"listed_count":975,"favourites_count":79,"statuses_count":392,"created_at":"Wed Nov 13 10:07:15 +0000 2013","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573541499863887872\/FgBI11jO.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573541499863887872\/FgBI11jO.jpeg","profile_background_tile":true,"profile_link_color":"0A0A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655723132871794689\/Stlw8Yb5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655723132871794689\/Stlw8Yb5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2192030256\/1445171492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":103,"favorite_count":132,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726766490566657,"id_str":"663726766490566657","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","url":"https:\/\/t.co\/GG3QsjFMZ7","display_url":"pic.twitter.com\/GG3QsjFMZ7","expanded_url":"http:\/\/twitter.com\/LearnSomethlng\/status\/663726775394938882\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726766490566657,"id_str":"663726766490566657","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","url":"https:\/\/t.co\/GG3QsjFMZ7","display_url":"pic.twitter.com\/GG3QsjFMZ7","expanded_url":"http:\/\/twitter.com\/LearnSomethlng\/status\/663726775394938882\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LearnSomethlng","name":"Learn Something","id":2192030256,"id_str":"2192030256","indices":[3,18]}],"symbols":[],"media":[{"id":663726766490566657,"id_str":"663726766490566657","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","url":"https:\/\/t.co\/GG3QsjFMZ7","display_url":"pic.twitter.com\/GG3QsjFMZ7","expanded_url":"http:\/\/twitter.com\/LearnSomethlng\/status\/663726775394938882\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726775394938882,"source_status_id_str":"663726775394938882","source_user_id":2192030256,"source_user_id_str":"2192030256"}]},"extended_entities":{"media":[{"id":663726766490566657,"id_str":"663726766490566657","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH-kCWwAEDK2l.jpg","url":"https:\/\/t.co\/GG3QsjFMZ7","display_url":"pic.twitter.com\/GG3QsjFMZ7","expanded_url":"http:\/\/twitter.com\/LearnSomethlng\/status\/663726775394938882\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":534,"resize":"fit"},"small":{"w":340,"h":302,"resize":"fit"},"medium":{"w":600,"h":534,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726775394938882,"source_status_id_str":"663726775394938882","source_user_id":2192030256,"source_user_id_str":"2192030256"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110660"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915043328,"id_str":"663728206915043328","text":"@912_91 ah caray, evento en domingo de que? Porque supongo que esto es una especie de reclamo, pero yo ni idea tengo de que","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715998113992704,"in_reply_to_status_id_str":"663715998113992704","in_reply_to_user_id":1536426530,"in_reply_to_user_id_str":"1536426530","in_reply_to_screen_name":"912_91","user":{"id":61245425,"id_str":"61245425","name":"Balam And\u00f3n Ordaz","screen_name":"balamandon","location":"Toluca","url":"http:\/\/balamandon.wordpress.com","description":"Coordinador Creativo y Locutor de Ultra 101.3 FM @UltraRadioTol *Creativo *Cinefilo *Lector *iPhoneografo.","protected":false,"verified":false,"followers_count":7092,"friends_count":1231,"listed_count":33,"favourites_count":1715,"statuses_count":45729,"created_at":"Wed Jul 29 17:18:25 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661317756181020673\/BeDy4YtV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661317756181020673\/BeDy4YtV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/61245425\/1436216443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"912_91","name":"juan manuel arias","id":1536426530,"id_str":"1536426530","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080110659"} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206915088386,"id_str":"663728206915088386","text":"\u771f\u3093\u4e2d\u304c\u7a7a\u3044\u3066\u3057\u307e\u3063\u305f https:\/\/t.co\/tAiddO5Tyw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123836993,"id_str":"123836993","name":"\u305f\u304b\u3080\u30fc","screen_name":"friplight","location":"\u97f3\u30ce\u6728\u5742\u5b66\u9662\u5f13\u9053\u5834\u524d","url":null,"description":"\u30a2\u30a4\u30de\u30b910th\u884c\u3063\u3066\u304d\u307e\u3057\u305f \u6700\u9ad8\u306b\u697d\u3057\u304b\u3063\u305f\u3067\u3059\u3002 \u4eca\u30b7\u30fc\u30ba\u30f3\u521d\u30db\u30fc\u30af\u30b9\u6226\u884c\u3063\u3066\u304d\u307e\u3057\u305f\uff01 \u76ee\u6307\u305bCS\u7a81\u7834&\u65e5\u672c\u4e00","protected":false,"verified":false,"followers_count":164,"friends_count":321,"listed_count":4,"favourites_count":204,"statuses_count":10889,"created_at":"Wed Mar 17 10:53:53 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649942143558021120\/-h_hPpfr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649942143558021120\/-h_hPpfr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123836993\/1436176230","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728201697378305,"id_str":"663728201697378305","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSGmUwAEG3if.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSGmUwAEG3if.jpg","url":"https:\/\/t.co\/tAiddO5Tyw","display_url":"pic.twitter.com\/tAiddO5Tyw","expanded_url":"http:\/\/twitter.com\/friplight\/status\/663728206915088386\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728201697378305,"id_str":"663728201697378305","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSGmUwAEG3if.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSGmUwAEG3if.jpg","url":"https:\/\/t.co\/tAiddO5Tyw","display_url":"pic.twitter.com\/tAiddO5Tyw","expanded_url":"http:\/\/twitter.com\/friplight\/status\/663728206915088386\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080110659"} +{"delete":{"status":{"id":636980547328282624,"id_str":"636980547328282624","user_id":3248724033,"user_id_str":"3248724033"},"timestamp_ms":"1447080110926"}} +{"delete":{"status":{"id":663323242682257409,"id_str":"663323242682257409","user_id":3526245976,"user_id_str":"3526245976"},"timestamp_ms":"1447080111145"}} +{"delete":{"status":{"id":519148148887785472,"id_str":"519148148887785472","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080111182"}} +{"created_at":"Mon Nov 09 14:41:50 +0000 2015","id":663728206927822848,"id_str":"663728206927822848","text":"she lookin like \"oh hell naw, send this rat back to hell, THE FUCK IS THAT A WORM, y'all UGLY, my vagina itches\" https:\/\/t.co\/RjbCVuuCUy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":838824986,"id_str":"838824986","name":"Yung Greek Yogurt\u00bf?","screen_name":"KiitaKat","location":"North Herts\/London","url":"http:\/\/AmandasBed.co.uk","description":"@CasketsFull is mine \u2764\ufe0f #FlickOfTheDickCult","protected":false,"verified":false,"followers_count":1830,"friends_count":579,"listed_count":28,"favourites_count":39842,"statuses_count":90019,"created_at":"Sat Sep 22 00:53:04 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590507175446851584\/VZpwxrJx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590507175446851584\/VZpwxrJx.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662255659220643840\/ECuMSU-s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662255659220643840\/ECuMSU-s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/838824986\/1439140501","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728203777880065,"id_str":"663728203777880065","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSOWWsAEFdXb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSOWWsAEFdXb.jpg","url":"https:\/\/t.co\/RjbCVuuCUy","display_url":"pic.twitter.com\/RjbCVuuCUy","expanded_url":"http:\/\/twitter.com\/KiitaKat\/status\/663728206927822848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":236,"h":282,"resize":"fit"},"small":{"w":236,"h":282,"resize":"fit"},"large":{"w":236,"h":282,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728203777880065,"id_str":"663728203777880065","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSOWWsAEFdXb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSOWWsAEFdXb.jpg","url":"https:\/\/t.co\/RjbCVuuCUy","display_url":"pic.twitter.com\/RjbCVuuCUy","expanded_url":"http:\/\/twitter.com\/KiitaKat\/status\/663728206927822848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":236,"h":282,"resize":"fit"},"small":{"w":236,"h":282,"resize":"fit"},"large":{"w":236,"h":282,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080110662"} +{"delete":{"status":{"id":663722976622329856,"id_str":"663722976622329856","user_id":78737666,"user_id_str":"78737666"},"timestamp_ms":"1447080111214"}} +{"delete":{"status":{"id":663725396739801089,"id_str":"663725396739801089","user_id":589294516,"user_id_str":"589294516"},"timestamp_ms":"1447080111351"}} +{"delete":{"status":{"id":663728106268524544,"id_str":"663728106268524544","user_id":1485124334,"user_id_str":"1485124334"},"timestamp_ms":"1447080111393"}} +{"delete":{"status":{"id":662657552090398720,"id_str":"662657552090398720","user_id":2292937832,"user_id_str":"2292937832"},"timestamp_ms":"1447080111586"}} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211105325056,"id_str":"663728211105325056","text":"RT @__a1990: \u0645\u0646 \u0627\u062a\u0635\u0641 \u0628\u0635\u0641\u0629 \u0627\u0644\u0625\u0633\u062a\u063a\u0641\u0627\u0631\n\u064a\u0633\u0631 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0631\u0632\u0642\u0647\n\u0648\u0633\u0647\u064e\u0651\u0644 \u0639\u0644\u064a\u0647 \u0623\u0645\u0631\u064e\u0647\n\u0648\u062d\u0641\u0638 \u0639\u0644\u064a\u0647 \u0634\u0623\u0646\u0647 \u0648\u0642\u0648\u062a\u0647 ..\n\n\u0627\u0628\u0646 \u0643\u062b\u064a\u0631 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2285882380,"id_str":"2285882380","name":"\u06af\u0640\u0648\u064a\u0640\u0646..&","screen_name":"Amooworh2014","location":"..","url":null,"description":"\u0644\u0627 \u0634\u0623\u0646 \u0644\u064a \u0628\u064a ..","protected":false,"verified":false,"followers_count":1604,"friends_count":1650,"listed_count":0,"favourites_count":586,"statuses_count":17297,"created_at":"Thu Jan 16 13:25:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/501979244231000067\/mPwwIbJJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2285882380\/1408602198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:23:56 +0000 2015","id":663451909152489472,"id_str":"663451909152489472","text":"\u0645\u0646 \u0627\u062a\u0635\u0641 \u0628\u0635\u0641\u0629 \u0627\u0644\u0625\u0633\u062a\u063a\u0641\u0627\u0631\n\u064a\u0633\u0631 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0631\u0632\u0642\u0647\n\u0648\u0633\u0647\u064e\u0651\u0644 \u0639\u0644\u064a\u0647 \u0623\u0645\u0631\u064e\u0647\n\u0648\u062d\u0641\u0638 \u0639\u0644\u064a\u0647 \u0634\u0623\u0646\u0647 \u0648\u0642\u0648\u062a\u0647 ..\n\n\u0627\u0628\u0646 \u0643\u062b\u064a\u0631 .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2500431742,"id_str":"2500431742","name":"\u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","screen_name":"__a1990","location":null,"url":null,"description":"\u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0631\u0633\u0645\u064a .\u2661 ' Instagram: __a1990 \u0644\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0628\u0648 \u0645\u0634\u0627\u0631\u064a \u0648\u0627\u062a\u0633 \u0641\u0642\u0637\/ \u0660\u0665\u0666\u0661\u0661\u0663\u0661\u0663\u0666\u0669 Snap:almalki38","protected":false,"verified":false,"followers_count":104836,"friends_count":196,"listed_count":108,"favourites_count":19,"statuses_count":2057,"created_at":"Mon Apr 21 20:58:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640662009093029888\/H9cl0x4A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640662009093029888\/H9cl0x4A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2500431742\/1443207088","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":220,"favorite_count":88,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__a1990","name":"\u0639\u0628\u062f\u0627\u0644\u0631\u062d\u0645\u0646 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","id":2500431742,"id_str":"2500431742","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080111658"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109552132,"id_str":"663728211109552132","text":"RT @MuhammetSanin_: B\u00f6yle hayat\u0131n...","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297957048,"id_str":"297957048","name":"\u0130llegal Biri","screen_name":"bakarzyaq","location":"Sakarya, T\u00fcrkiye","url":null,"description":"\u015eimdi buraya iki sat\u0131r bir \u015fey yazsak koca 20 y\u0131la ay\u0131p olmaz m\u0131","protected":false,"verified":false,"followers_count":9566,"friends_count":7080,"listed_count":0,"favourites_count":15333,"statuses_count":7162,"created_at":"Fri May 13 12:22:21 +0000 2011","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000141548234\/0Nvedz-5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000141548234\/0Nvedz-5.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624212313571205120\/sKE7eTSt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624212313571205120\/sKE7eTSt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297957048\/1435279083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727859924647936,"id_str":"663727859924647936","text":"B\u00f6yle hayat\u0131n...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":973879760,"id_str":"973879760","name":"Muhammet SAN\u0130N","screen_name":"MuhammetSanin_","location":"istanbul","url":"http:\/\/instagram.com\/muhammetsanin","description":"(DO\u011eA'M VIII.V.XV \u221e) - GALATASARAY-uA\nPamukkale \u00dcniversitesi - Sermaye Piyasas\u0131\nsiz bi rahat ya - fenomen mi kim ben mi hahaha ya\u015fad\u0131k\u00e7a bat\u0131yorum ben ya","protected":false,"verified":false,"followers_count":10704,"friends_count":148,"listed_count":3,"favourites_count":22404,"statuses_count":107,"created_at":"Tue Nov 27 13:19:38 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"19FC33","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663673591767126016\/dYMXodAe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663673591767126016\/dYMXodAe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/973879760\/1447066926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":81,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MuhammetSanin_","name":"Muhammet SAN\u0130N","id":973879760,"id_str":"973879760","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211117924352,"id_str":"663728211117924352","text":"RT @tarsogenro: Direito de Resposta, do Sen.Requi\u00e3o, \u00e9 grande conquista, semelhante \u00e0 decis\u00e3o do STF, proibitiva do financiamento empresari\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":470423935,"id_str":"470423935","name":"Fernando Paredes","screen_name":"ferparedes37","location":"Curitiba","url":null,"description":"Natural e Simples ! Militante de Movimentos Sociais !! Xama Urbano !!! Ativista Quantico !!!!","protected":false,"verified":false,"followers_count":1349,"friends_count":1403,"listed_count":6,"favourites_count":13673,"statuses_count":30241,"created_at":"Sat Jan 21 19:02:37 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612366949910188032\/zTVUn7vO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612366949910188032\/zTVUn7vO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/470423935\/1434333254","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 12:16:14 +0000 2015","id":662242015233646592,"id_str":"662242015233646592","text":"Direito de Resposta, do Sen.Requi\u00e3o, \u00e9 grande conquista, semelhante \u00e0 decis\u00e3o do STF, proibitiva do financiamento empresarial dos partidos.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135269423,"id_str":"135269423","name":"Tarso Genro","screen_name":"tarsogenro","location":"Rio Grande do Sul","url":"https:\/\/www.facebook.com\/tarsogenro","description":"Sou casado com a Sandra, tenho duas filhas e tr\u00eas netos. Advogado, fui Prefeito de Porto Alegre, Deputado Federal, Ministro do governo Lula e Governador do RS.","protected":false,"verified":false,"followers_count":74910,"friends_count":297,"listed_count":1047,"favourites_count":31,"statuses_count":3874,"created_at":"Tue Apr 20 20:44:24 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539149337888960512\/NXlCsv0e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539149337888960512\/NXlCsv0e_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":77,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tarsogenro","name":"Tarso Genro","id":135269423,"id_str":"135269423","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080111661"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113717760,"id_str":"663728211113717760","text":"RT @War_and_Peach: On commentary today, I'm going to attempt something I've never done before: relax.\n\n@Doyouphilsme + HMW will you show me\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2373086624,"id_str":"2373086624","name":"Javin Rodriguez","screen_name":"Nannapuso","location":"NJ,USA","url":null,"description":"Yeah","protected":false,"verified":false,"followers_count":47,"friends_count":169,"listed_count":7,"favourites_count":4513,"statuses_count":4642,"created_at":"Wed Mar 05 03:23:13 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441362257906122752\/R4diYuL7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441362257906122752\/R4diYuL7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2373086624\/1394064201","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:30:08 +0000 2015","id":663438373068017665,"id_str":"663438373068017665","text":"On commentary today, I'm going to attempt something I've never done before: relax.\n\n@Doyouphilsme + HMW will you show me how?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2282599043,"id_str":"2282599043","name":"Chris Fabiszak","screen_name":"War_and_Peach","location":null,"url":null,"description":"spectator, ambassador, organizer http:\/\/supersmashcon.com","protected":false,"verified":false,"followers_count":19124,"friends_count":143,"listed_count":99,"favourites_count":843,"statuses_count":3514,"created_at":"Tue Jan 14 23:58:55 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"272829","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649310117481963520\/c3NAQG5x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649310117481963520\/c3NAQG5x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2282599043\/1441891289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":56,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Doyouphilsme","name":"Phil","id":856764312,"id_str":"856764312","indices":[84,97]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"War_and_Peach","name":"Chris Fabiszak","id":2282599043,"id_str":"2282599043","indices":[3,17]},{"screen_name":"Doyouphilsme","name":"Phil","id":856764312,"id_str":"856764312","indices":[103,116]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211126263808,"id_str":"663728211126263808","text":"RT @TheOnion: Study Finds Newborn Infants Can Tell If Parents Are Losers https:\/\/t.co\/nqKfmJga4X https:\/\/t.co\/E41lNABTsw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1924519478,"id_str":"1924519478","name":"Tyler Mowry","screen_name":"MowryTyler","location":null,"url":null,"description":"Georgia || United States Merchant Marine Academy 2019","protected":false,"verified":false,"followers_count":169,"friends_count":163,"listed_count":2,"favourites_count":203,"statuses_count":953,"created_at":"Tue Oct 01 20:18:06 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000066","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649897315495378944\/7k-eHg3-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649897315495378944\/7k-eHg3-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1924519478\/1443782599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:23 +0000 2015","id":663714001843560452,"id_str":"663714001843560452","text":"Study Finds Newborn Infants Can Tell If Parents Are Losers https:\/\/t.co\/nqKfmJga4X https:\/\/t.co\/E41lNABTsw","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14075928,"id_str":"14075928","name":"The Onion","screen_name":"TheOnion","location":null,"url":"http:\/\/www.theonion.com","description":"America's Finest News Source. Subscribe on YouTube: http:\/\/bitly.com\/xzrBUA","protected":false,"verified":true,"followers_count":8520655,"friends_count":14,"listed_count":74083,"favourites_count":3,"statuses_count":40302,"created_at":"Tue Mar 04 02:48:37 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/183829455\/onion_twitter.png","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/594130975992328193\/I0qqRlzA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/594130975992328193\/I0qqRlzA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14075928\/1446480077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":354,"favorite_count":579,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nqKfmJga4X","expanded_url":"http:\/\/onion.com\/1kFGBCI","display_url":"onion.com\/1kFGBCI","indices":[59,82]}],"user_mentions":[],"symbols":[],"media":[{"id":663714001168166913,"id_str":"663714001168166913","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","url":"https:\/\/t.co\/E41lNABTsw","display_url":"pic.twitter.com\/E41lNABTsw","expanded_url":"http:\/\/twitter.com\/TheOnion\/status\/663714001843560452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663714001168166913,"id_str":"663714001168166913","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","url":"https:\/\/t.co\/E41lNABTsw","display_url":"pic.twitter.com\/E41lNABTsw","expanded_url":"http:\/\/twitter.com\/TheOnion\/status\/663714001843560452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nqKfmJga4X","expanded_url":"http:\/\/onion.com\/1kFGBCI","display_url":"onion.com\/1kFGBCI","indices":[73,96]}],"user_mentions":[{"screen_name":"TheOnion","name":"The Onion","id":14075928,"id_str":"14075928","indices":[3,12]}],"symbols":[],"media":[{"id":663714001168166913,"id_str":"663714001168166913","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","url":"https:\/\/t.co\/E41lNABTsw","display_url":"pic.twitter.com\/E41lNABTsw","expanded_url":"http:\/\/twitter.com\/TheOnion\/status\/663714001843560452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663714001843560452,"source_status_id_str":"663714001843560452","source_user_id":14075928,"source_user_id_str":"14075928"}]},"extended_entities":{"media":[{"id":663714001168166913,"id_str":"663714001168166913","indices":[97,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8XhgU8AEckK4.jpg","url":"https:\/\/t.co\/E41lNABTsw","display_url":"pic.twitter.com\/E41lNABTsw","expanded_url":"http:\/\/twitter.com\/TheOnion\/status\/663714001843560452\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663714001843560452,"source_status_id_str":"663714001843560452","source_user_id":14075928,"source_user_id_str":"14075928"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111663"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109543936,"id_str":"663728211109543936","text":"RT @uelersonsales: pfvr me digam que n sou o \u00fanico que as vezes sente vontade de chorar do nada e sem saber o pq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3195016001,"id_str":"3195016001","name":"ChayDrew_","screen_name":"ChaiSchmoegel","location":"Pouso Redondo, Santa Catarina","url":null,"description":"Whats: 479145295 \nSnap : Chai_Pekena\n14 anos\nBelieber\n\u270c","protected":false,"verified":false,"followers_count":789,"friends_count":2057,"listed_count":1,"favourites_count":358,"statuses_count":3775,"created_at":"Wed Apr 22 15:07:35 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661134137466712064\/Kl8r5QOu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661134137466712064\/Kl8r5QOu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195016001\/1446461634","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:27 +0000 2015","id":663728108147732480,"id_str":"663728108147732480","text":"pfvr me digam que n sou o \u00fanico que as vezes sente vontade de chorar do nada e sem saber o pq","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":481950275,"id_str":"481950275","name":"Sales","screen_name":"uelersonsales","location":"RJ","url":"http:\/\/Instagram.com\/uelersonsales","description":"\u262e \u2721 \u262a \u262f \u263eblessed... 18\/09 \u2764\ufe0f Snap: usales","protected":false,"verified":false,"followers_count":214962,"friends_count":245,"listed_count":138,"favourites_count":14694,"statuses_count":104799,"created_at":"Fri Feb 03 10:55:11 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462706921309339648\/Aip6UfEr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462706921309339648\/Aip6UfEr.jpeg","profile_background_tile":true,"profile_link_color":"382E2B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E32820","profile_text_color":"843AA9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640666960288686081\/BcNRSqtf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640666960288686081\/BcNRSqtf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481950275\/1437946157","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uelersonsales","name":"Sales","id":481950275,"id_str":"481950275","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130490880,"id_str":"663728211130490880","text":"RT @ShathaSa3eed: \u0644\u0643\u0644 \u0633\u0646\u0629 \u0645\u0646 \u0633\u0646\u0648\u0627\u062a \u0623\u0639\u0645\u0627\u0631\u0646\u0627 \u0645\u064a\u0632\u0629 \u0648\u0645\u062a\u0639\u0629 \u060c\u060c \u062a\u062e\u062a\u0644\u0641 \u0645\u0646 \u0633\u0646\u0629 \u0625\u0644\u0649 \u0633\u0646\u0629! \u064a\u0646\u062d\u0631\u0645 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635\u0627\u0646 : \u0645\u0646 \u064a\u0631\u064a\u062f \u0623\u0646 \u064a\u0635\u063a\u0631 \u060c\u060c \u0648\u0645\u0646 \u064a\u0631\u064a\u062f \u0623\u0646 \u064a\u0643\u0628\u0631 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149631743,"id_str":"4149631743","name":"yasserali","screen_name":"yassef5","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":13,"listed_count":0,"favourites_count":2,"statuses_count":2,"created_at":"Mon Nov 09 14:26:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726824921387008\/NGgV6uBI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726824921387008\/NGgV6uBI_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 23:04:59 +0000 2015","id":663130052230533120,"id_str":"663130052230533120","text":"\u0644\u0643\u0644 \u0633\u0646\u0629 \u0645\u0646 \u0633\u0646\u0648\u0627\u062a \u0623\u0639\u0645\u0627\u0631\u0646\u0627 \u0645\u064a\u0632\u0629 \u0648\u0645\u062a\u0639\u0629 \u060c\u060c \u062a\u062e\u062a\u0644\u0641 \u0645\u0646 \u0633\u0646\u0629 \u0625\u0644\u0649 \u0633\u0646\u0629! \u064a\u0646\u062d\u0631\u0645 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635\u0627\u0646 : \u0645\u0646 \u064a\u0631\u064a\u062f \u0623\u0646 \u064a\u0635\u063a\u0631 \u060c\u060c \u0648\u0645\u0646 \u064a\u0631\u064a\u062f \u0623\u0646 \u064a\u0643\u0628\u0631 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255441010,"id_str":"255441010","name":"\u0634\u0640\u064e\u0640\u0630 \u0627 ","screen_name":"ShathaSa3eed","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0623\u0645\u0646\u062a\u064f \u0628\u0627\u0644\u0644\u0651\u0647\u0650 \u0623\u0646 \u0627\u0644\u062d\u0642 \u0645\u064f\u0646\u062a\u0635\u0650\u0631\n\u0648 \u0627\u0644\u0638\u0644\u0645\u064f \u0645\u0646\u062a\u062d\u0631\u064c \u0648 \u0627\u0644\u0643\u0641\u0631\u064f \u0645\u064f\u0646\u0647\u0627\u0631\n\n\u0623\u0645\u0646\u062a\u064f \u0628\u0627\u0644\u0644\u0651\u0647\u0650 \u0625\u064a\u0645\u0627\u0646\u0627\u064b \u0639\u0631\u0641\u062a \u0628\u0647\n\u0623\u0646\u064e \u0627\u0644\u0632\u0645\u0627\u0646 \u0639\u0644\u0649 \u0627\u0644\u0628\u0627\u063a\u0650\u064a\u0646 \u062f\u0648\u064e\u0651\u0627\u0631","protected":false,"verified":false,"followers_count":1045738,"friends_count":685761,"listed_count":1073,"favourites_count":356,"statuses_count":7196,"created_at":"Mon Feb 21 11:04:20 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"2CDB32","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/755166684\/3514d6535fa47a7bf499d12e1568f3bd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/755166684\/3514d6535fa47a7bf499d12e1568f3bd.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657411382355337216\/551s3MLQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657411382355337216\/551s3MLQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255441010\/1445574060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":33,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ShathaSa3eed","name":"\u0634\u0640\u064e\u0640\u0630 \u0627 ","id":255441010,"id_str":"255441010","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080111664"} +{"delete":{"status":{"id":661888853611929600,"id_str":"661888853611929600","user_id":4112179032,"user_id_str":"4112179032"},"timestamp_ms":"1447080111676"}} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211101093888,"id_str":"663728211101093888","text":"RT @NacosVIP: Ya es viernes y las #PutiPobres lo saben... http:\/\/t.co\/1f8V9abNZN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4112082843,"id_str":"4112082843","name":"mazinga20","screen_name":"782mao1","location":"europe","url":null,"description":"male,i love teen porn!","protected":false,"verified":false,"followers_count":469,"friends_count":1174,"listed_count":2,"favourites_count":314,"statuses_count":71,"created_at":"Wed Nov 04 13:09:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661894973583990784\/Xs-FGEAU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661894973583990784\/Xs-FGEAU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4112082843\/1446643142","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 11 17:06:36 +0000 2015","id":642383751897444352,"id_str":"642383751897444352","text":"Ya es viernes y las #PutiPobres lo saben... http:\/\/t.co\/1f8V9abNZN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3164051502,"id_str":"3164051502","name":"\u26a0\ufe0fNacos VIP\u26a0\ufe0f","screen_name":"NacosVIP","location":null,"url":null,"description":"Aqu\u00ed veras pura gente barata como la carne de gata, #Nacos #MientrasTantoEnFacebook #EsDeNacos #PutiPobres Sino nos sigues es porque eres #Naco (PARODIA)","protected":false,"verified":false,"followers_count":9760,"friends_count":20,"listed_count":67,"favourites_count":28,"statuses_count":1498,"created_at":"Sun Apr 19 14:24:23 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646411564581388288\/cKtIJsPq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646411564581388288\/cKtIJsPq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164051502\/1443492367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":197,"favorite_count":367,"entities":{"hashtags":[{"text":"PutiPobres","indices":[20,31]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":640633274499383296,"id_str":"640633274499383296","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","url":"http:\/\/t.co\/1f8V9abNZN","display_url":"pic.twitter.com\/1f8V9abNZN","expanded_url":"http:\/\/twitter.com\/chikaspty\/status\/640633360549711872\/video\/1","type":"photo","sizes":{"small":{"w":220,"h":400,"resize":"fit"},"medium":{"w":220,"h":400,"resize":"fit"},"large":{"w":220,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":640633360549711872,"source_status_id_str":"640633360549711872","source_user_id":3327792613,"source_user_id_str":"3327792613"}]},"extended_entities":{"media":[{"id":640633274499383296,"id_str":"640633274499383296","indices":[44,66],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","url":"http:\/\/t.co\/1f8V9abNZN","display_url":"pic.twitter.com\/1f8V9abNZN","expanded_url":"http:\/\/twitter.com\/chikaspty\/status\/640633360549711872\/video\/1","type":"video","sizes":{"small":{"w":220,"h":400,"resize":"fit"},"medium":{"w":220,"h":400,"resize":"fit"},"large":{"w":220,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":640633360549711872,"source_status_id_str":"640633360549711872","source_user_id":3327792613,"source_user_id_str":"3327792613","video_info":{"aspect_ratio":[11,20],"duration_millis":20016,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/vid\/176x320\/drrbpG3wAZ5cCFwR.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/pl\/nk9qAxNqxybaruW5.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/pl\/nk9qAxNqxybaruW5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/vid\/176x320\/drrbpG3wAZ5cCFwR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PutiPobres","indices":[34,45]}],"urls":[],"user_mentions":[{"screen_name":"NacosVIP","name":"\u26a0\ufe0fNacos VIP\u26a0\ufe0f","id":3164051502,"id_str":"3164051502","indices":[3,12]}],"symbols":[],"media":[{"id":640633274499383296,"id_str":"640633274499383296","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","url":"http:\/\/t.co\/1f8V9abNZN","display_url":"pic.twitter.com\/1f8V9abNZN","expanded_url":"http:\/\/twitter.com\/chikaspty\/status\/640633360549711872\/video\/1","type":"photo","sizes":{"small":{"w":220,"h":400,"resize":"fit"},"medium":{"w":220,"h":400,"resize":"fit"},"large":{"w":220,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":640633360549711872,"source_status_id_str":"640633360549711872","source_user_id":3327792613,"source_user_id_str":"3327792613"}]},"extended_entities":{"media":[{"id":640633274499383296,"id_str":"640633274499383296","indices":[58,80],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/640633274499383296\/pu\/img\/r9GoQJxVUAgPhQhP.jpg","url":"http:\/\/t.co\/1f8V9abNZN","display_url":"pic.twitter.com\/1f8V9abNZN","expanded_url":"http:\/\/twitter.com\/chikaspty\/status\/640633360549711872\/video\/1","type":"video","sizes":{"small":{"w":220,"h":400,"resize":"fit"},"medium":{"w":220,"h":400,"resize":"fit"},"large":{"w":220,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":640633360549711872,"source_status_id_str":"640633360549711872","source_user_id":3327792613,"source_user_id_str":"3327792613","video_info":{"aspect_ratio":[11,20],"duration_millis":20016,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/vid\/176x320\/drrbpG3wAZ5cCFwR.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/pl\/nk9qAxNqxybaruW5.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/pl\/nk9qAxNqxybaruW5.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/640633274499383296\/pu\/vid\/176x320\/drrbpG3wAZ5cCFwR.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111657"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113701376,"id_str":"663728211113701376","text":"RT @SamajwadiSocial: CM @yadavakhilesh \u0915\u0940 \u0932\u0940\u0921\u0930\u0936\u093f\u092a \u092e\u0947\u0902 \u092c\u0928\u0947\u0917\u093e \u0935\u0930\u094d\u0932\u094d\u0921 \u0930\u093f\u0915\u0949\u0930\u094d\u0921, UP \u092e\u0947\u0902 \u0932\u0917\u093e\u090f \u091c\u093e\u090f\u0902\u0917\u0947 10 \u0932\u093e\u0916 \u092a\u094c\u0927\u0947 #UPGoesGreener https:\/\/t.co\/m0Pt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492428099,"id_str":"2492428099","name":"Ram Bahadur Yadav","screen_name":"RamBahadurYada","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":27,"friends_count":20,"listed_count":3,"favourites_count":1904,"statuses_count":3064,"created_at":"Tue May 13 04:45:12 +0000 2014","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487887205608615937\/t394xAvU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487887205608615937\/t394xAvU_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:43:05 +0000 2015","id":662867851309547521,"id_str":"662867851309547521","text":"CM @yadavakhilesh \u0915\u0940 \u0932\u0940\u0921\u0930\u0936\u093f\u092a \u092e\u0947\u0902 \u092c\u0928\u0947\u0917\u093e \u0935\u0930\u094d\u0932\u094d\u0921 \u0930\u093f\u0915\u0949\u0930\u094d\u0921, UP \u092e\u0947\u0902 \u0932\u0917\u093e\u090f \u091c\u093e\u090f\u0902\u0917\u0947 10 \u0932\u093e\u0916 \u092a\u094c\u0927\u0947 #UPGoesGreener https:\/\/t.co\/m0Pt7NvO0T","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2780435246,"id_str":"2780435246","name":"SamajwadiSocial","screen_name":"SamajwadiSocial","location":"Lucknow, Uttar Pradesh","url":"http:\/\/www.samajwadiparty.in","description":"The Samajwadi Party gives immense importance to the development of common man and thus adopted the vehicle of the common man \u2013 a bicycle as its symbol.","protected":false,"verified":false,"followers_count":3643,"friends_count":125,"listed_count":13,"favourites_count":92,"statuses_count":6692,"created_at":"Sat Aug 30 11:36:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637950437790904320\/-e8HNcWd_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637950437790904320\/-e8HNcWd_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2780435246\/1440857626","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":16,"entities":{"hashtags":[{"text":"UPGoesGreener","indices":[86,100]}],"urls":[],"user_mentions":[{"screen_name":"yadavakhilesh","name":"Akhilesh Yadav","id":57948579,"id_str":"57948579","indices":[3,17]}],"symbols":[],"media":[{"id":662867837132906496,"id_str":"662867837132906496","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","url":"https:\/\/t.co\/m0Pt7NvO0T","display_url":"pic.twitter.com\/m0Pt7NvO0T","expanded_url":"http:\/\/twitter.com\/SamajwadiSocial\/status\/662867851309547521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":519,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662867837132906496,"id_str":"662867837132906496","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","url":"https:\/\/t.co\/m0Pt7NvO0T","display_url":"pic.twitter.com\/m0Pt7NvO0T","expanded_url":"http:\/\/twitter.com\/SamajwadiSocial\/status\/662867851309547521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":519,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"UPGoesGreener","indices":[107,121]}],"urls":[],"user_mentions":[{"screen_name":"SamajwadiSocial","name":"SamajwadiSocial","id":2780435246,"id_str":"2780435246","indices":[3,19]},{"screen_name":"yadavakhilesh","name":"Akhilesh Yadav","id":57948579,"id_str":"57948579","indices":[24,38]}],"symbols":[],"media":[{"id":662867837132906496,"id_str":"662867837132906496","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","url":"https:\/\/t.co\/m0Pt7NvO0T","display_url":"pic.twitter.com\/m0Pt7NvO0T","expanded_url":"http:\/\/twitter.com\/SamajwadiSocial\/status\/662867851309547521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":519,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"}},"source_status_id":662867851309547521,"source_status_id_str":"662867851309547521","source_user_id":2780435246,"source_user_id_str":"2780435246"}]},"extended_entities":{"media":[{"id":662867837132906496,"id_str":"662867837132906496","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTL6yS1WoAAEAHa.jpg","url":"https:\/\/t.co\/m0Pt7NvO0T","display_url":"pic.twitter.com\/m0Pt7NvO0T","expanded_url":"http:\/\/twitter.com\/SamajwadiSocial\/status\/662867851309547521\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":519,"resize":"fit"},"medium":{"w":600,"h":519,"resize":"fit"}},"source_status_id":662867851309547521,"source_status_id_str":"662867851309547521","source_user_id":2780435246,"source_user_id_str":"2780435246"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130490881,"id_str":"663728211130490881","text":"Que asco el calor, lo odio con todo mi ser, aguante el frio putos!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2531861324,"id_str":"2531861324","name":"Atilio Roschge","screen_name":"AtilioR6","location":"Cordoba","url":null,"description":"I wanna be yours","protected":false,"verified":false,"followers_count":213,"friends_count":202,"listed_count":0,"favourites_count":1710,"statuses_count":5613,"created_at":"Thu May 29 05:44:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"0713EB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539982722501210112\/OkWLZ3pr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539982722501210112\/OkWLZ3pr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2531861324\/1401342756","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00f84d414936f28e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00f84d414936f28e.json","place_type":"city","name":"Capital - C\u00f3rdoba","full_name":"Capital - C\u00f3rdoba, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-64.319500,-31.523576],[-64.319500,-31.307337],[-64.076643,-31.307337],[-64.076643,-31.523576]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211105329152,"id_str":"663728211105329152","text":"Do i make you feel like cheating? Im like no not really no...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38239283,"id_str":"38239283","name":"Harry Styles.","screen_name":"iambeth_ndubz","location":"Benalm\u00e1dena, Andaluc\u00eda","url":null,"description":"I want you to do whatever makes you the happiest in the world- H.S","protected":false,"verified":false,"followers_count":958,"friends_count":2004,"listed_count":7,"favourites_count":1440,"statuses_count":42037,"created_at":"Wed May 06 18:11:40 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853121683\/5044b8d78a19f3cd19f44048d6f40954.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853121683\/5044b8d78a19f3cd19f44048d6f40954.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650769727569137664\/SRh33faP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650769727569137664\/SRh33faP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38239283\/1445463114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"2f843bbfaebff6ef","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/2f843bbfaebff6ef.json","place_type":"city","name":"Birkenhead","full_name":"Birkenhead, England","country_code":"GB","country":"United Kingdom","bounding_box":{"type":"Polygon","coordinates":[[[-3.145788,53.304078],[-3.145788,53.421308],[-2.933067,53.421308],[-2.933067,53.304078]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111658"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211101118464,"id_str":"663728211101118464","text":"@Vickochi llevameee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725575408902144,"in_reply_to_status_id_str":"663725575408902144","in_reply_to_user_id":809813408,"in_reply_to_user_id_str":"809813408","in_reply_to_screen_name":"Vickochi","user":{"id":149937591,"id_str":"149937591","name":"Nicoo \u2022","screen_name":"NicooBertoni","location":"V. Ballester - Buenos Aires","url":"http:\/\/www.facebook.com\/NicooBertoni","description":"Acuario \/ Tomorrowland \/ Electronicaa \/ Beatbox :# \/ Alemaaaaania\nInsta: nicoo.bertoni","protected":false,"verified":false,"followers_count":343,"friends_count":281,"listed_count":1,"favourites_count":2851,"statuses_count":9391,"created_at":"Sun May 30 16:28:36 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626526363588145152\/TEOQSpoq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626526363588145152\/TEOQSpoq.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614561035941486592\/Z6Ro0icZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614561035941486592\/Z6Ro0icZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/149937591\/1432320751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Vickochi","name":"Vico\u264d","id":809813408,"id_str":"809813408","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111657"} +{"delete":{"status":{"id":663726776682614784,"id_str":"663726776682614784","user_id":775385838,"user_id_str":"775385838"},"timestamp_ms":"1447080111673"}} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211122102272,"id_str":"663728211122102272","text":"\ud83d\udcf7 https:\/\/t.co\/EARtzslDHn","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2369177348,"id_str":"2369177348","name":"\u2655Ya\u011fmuruhl\u2655","screen_name":"reyelimben","location":null,"url":"https:\/\/www.facebook.com\/MileyDemiSellyJustin1D","description":"B\u0130EBER \u221e CYRUS \u221e HORAN \u221e STYLES \u221e MAL\u0130K \u221e TOML\u0130NSON \u221e PAYNE \u221e MOMSEN \u221e STEWART \u221e LOVATO. ALEY \u0130S MY SEXY M\u0130LKSHAKE.G\u00d6T\u00c7E \u0130S M\u0130NE.ALANUR \u0130S MY QUEEN.KIDRAUHL\u2655","protected":false,"verified":false,"followers_count":673,"friends_count":1667,"listed_count":0,"favourites_count":29,"statuses_count":9121,"created_at":"Sun Mar 02 17:35:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453263864067420160\/RSDY0SPS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453263864067420160\/RSDY0SPS.jpeg","profile_background_tile":false,"profile_link_color":"DCE5E8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453263171327778817\/s5QFe6yf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453263171327778817\/s5QFe6yf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2369177348\/1396901011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EARtzslDHn","expanded_url":"http:\/\/tmblr.co\/Z6LGQp1xlkCa7","display_url":"tmblr.co\/Z6LGQp1xlkCa7","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080111662"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109486593,"id_str":"663728211109486593","text":"@JackJackJohnson i'm going to meet you 30.04.16 *-*","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":3309393689,"id_str":"3309393689","name":"Marie","screen_name":"marie_O2L","location":null,"url":null,"description":"\u2661O2L\u2661","protected":false,"verified":false,"followers_count":195,"friends_count":102,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Fri Jun 05 15:41:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655328994036994048\/lZKASDfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655328994036994048\/lZKASDfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3309393689\/1440147691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113746432,"id_str":"663728211113746432","text":"I'm at Sup Meletop in Puchong, Selangor https:\/\/t.co\/MSdr2GmLC3","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":378698759,"id_str":"378698759","name":"jayy.","screen_name":"UjLeppard","location":"KUL","url":null,"description":"since 1993.","protected":false,"verified":false,"followers_count":142,"friends_count":130,"listed_count":1,"favourites_count":450,"statuses_count":7961,"created_at":"Fri Sep 23 17:10:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660843135312920576\/yzoC-qzr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660843135312920576\/yzoC-qzr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/378698759\/1429101478","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[3.06135493,101.64840382]},"coordinates":{"type":"Point","coordinates":[101.64840382,3.06135493]},"place":{"id":"17547b2136215c08","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/17547b2136215c08.json","place_type":"city","name":"Puchong","full_name":"Puchong, Selangor","country_code":"MY","country":"Malaysia","bounding_box":{"type":"Polygon","coordinates":[[[101.576775,2.979733],[101.576775,3.086195],[101.730576,3.086195],[101.730576,2.979733]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MSdr2GmLC3","expanded_url":"https:\/\/www.swarmapp.com\/c\/0uTAlVsILuq","display_url":"swarmapp.com\/c\/0uTAlVsILuq","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109351424,"id_str":"663728211109351424","text":"@kwhr_ruca \u30b0\u30c3\u30ba\u95c7\u6016\u3059\u304e\u308b\u2026\u2026\u2026\u3002\u7834\u7523\u3060\u7834\u7523\u2026\u2026\n\n\u305d\u3046\u305d\u3046\uff08\u7b11\uff09\u3061\u3087\u3063\u3068\u8003\u5bdf\u3057\u3088\u304b\u306a\u301c\n\u3063\u3066\u3044\u3046\u306e\u304c\u547d\u53d6\u308a\uff08\u7b11\uff09\u6c17\u3065\u3044\u305f\u3089\u597d\u304d\u306b\u306a\u3063\u3066\u308b\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727312710451200,"in_reply_to_status_id_str":"663727312710451200","in_reply_to_user_id":250989692,"in_reply_to_user_id_str":"250989692","in_reply_to_screen_name":"kwhr_ruca","user":{"id":3627359478,"id_str":"3627359478","name":"\u304a\u5473\u564c","screen_name":"umamisooo","location":null,"url":null,"description":"\u3042\u3093\u30b9\u30bf\/\u3086\u30fc\u304f\u3093\u3092\u30b9\u30c8\u30fc\u30ab\u30fc\u3059\u308b\u702c\u540d\u6cc9\u306e\u30b9\u30c8\u30fc\u30ab\u30fc Knights\u7bb1\u63a8\u3057 20\u2191 \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f@\u3044\u305f\u3060\u3051\u308c\u3070\u5e78\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":39,"friends_count":41,"listed_count":1,"favourites_count":1318,"statuses_count":3561,"created_at":"Sun Sep 20 13:54:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661571536143319040\/y24vVNlY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661571536143319040\/y24vVNlY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3627359478\/1442757984","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kwhr_ruca","name":"\u308b\u304b .+*:\uff9f+\uff61.\u2606","id":250989692,"id_str":"250989692","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211122081792,"id_str":"663728211122081792","text":"RT @EXO_FANBASE: LDF F\/W Photo Sketch\nhttps:\/\/t.co\/DcVd0vx3eY\nhttps:\/\/t.co\/UvKWjGyDx0\nhttps:\/\/t.co\/2cUiScZSyu\nhttps:\/\/t.co\/Mba0iEUvPg https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3633499335,"id_str":"3633499335","name":"cisteczkowa panda","screen_name":"kokeshixo","location":null,"url":null,"description":"bts*\u0cc3b.a.p*\u0cc3exo*\u0cc3adams*\u0cc3 baekyeol*\u0cc3 taohun","protected":false,"verified":false,"followers_count":56,"friends_count":139,"listed_count":0,"favourites_count":111,"statuses_count":608,"created_at":"Sat Sep 12 17:44:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661993712973582336\/4WcnSgbn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661993712973582336\/4WcnSgbn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3633499335\/1446666435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:58 +0000 2015","id":663726729429561345,"id_str":"663726729429561345","text":"LDF F\/W Photo Sketch\nhttps:\/\/t.co\/DcVd0vx3eY\nhttps:\/\/t.co\/UvKWjGyDx0\nhttps:\/\/t.co\/2cUiScZSyu\nhttps:\/\/t.co\/Mba0iEUvPg https:\/\/t.co\/lk3Je0PJYh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725623492214784,"in_reply_to_status_id_str":"663725623492214784","in_reply_to_user_id":527508915,"in_reply_to_user_id_str":"527508915","in_reply_to_screen_name":"EXO_FANBASE","user":{"id":527508915,"id_str":"527508915","name":"EXO FANBASE","screen_name":"EXO_FANBASE","location":"instagram.com\/exo_fanbaseig","url":"http:\/\/exofanbase12.tumblr.com\/","description":"Providing the latest news about EXO. Support and follow us! Contact: exofanbase2012@gmail.com","protected":false,"verified":false,"followers_count":538485,"friends_count":225,"listed_count":2066,"favourites_count":49,"statuses_count":118715,"created_at":"Sat Mar 17 14:30:38 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1BAAF2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_tile":true,"profile_link_color":"FC0008","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527508915\/1423389941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":72,"favorite_count":60,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DcVd0vx3eY","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14818","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[21,44]},{"url":"https:\/\/t.co\/UvKWjGyDx0","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14442","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[45,68]},{"url":"https:\/\/t.co\/2cUiScZSyu","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14820","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[69,92]},{"url":"https:\/\/t.co\/Mba0iEUvPg","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14821","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[93,116]}],"user_mentions":[],"symbols":[],"media":[{"id":663726691647270913,"id_str":"663726691647270913","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726691647270913,"id_str":"663726691647270913","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663726698614009856,"id_str":"663726698614009856","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6nLUsAAM4cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6nLUsAAM4cf.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663726704498573312,"id_str":"663726704498573312","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH69GUAAA7t_z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH69GUAAA7t_z.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663726708378349569,"id_str":"663726708378349569","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7LjUsAEyhf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7LjUsAEyhf0.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DcVd0vx3eY","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14818","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[38,61]},{"url":"https:\/\/t.co\/UvKWjGyDx0","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14442","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[62,85]},{"url":"https:\/\/t.co\/2cUiScZSyu","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14820","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[86,109]},{"url":"https:\/\/t.co\/Mba0iEUvPg","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14821","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[110,133]}],"user_mentions":[{"screen_name":"EXO_FANBASE","name":"EXO FANBASE","id":527508915,"id_str":"527508915","indices":[3,15]}],"symbols":[],"media":[{"id":663726691647270913,"id_str":"663726691647270913","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663726729429561345,"source_status_id_str":"663726729429561345","source_user_id":527508915,"source_user_id_str":"527508915"}]},"extended_entities":{"media":[{"id":663726691647270913,"id_str":"663726691647270913","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6NOUsAE-FdZ.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663726729429561345,"source_status_id_str":"663726729429561345","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663726698614009856,"id_str":"663726698614009856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH6nLUsAAM4cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH6nLUsAAM4cf.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663726729429561345,"source_status_id_str":"663726729429561345","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663726704498573312,"id_str":"663726704498573312","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH69GUAAA7t_z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH69GUAAA7t_z.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663726729429561345,"source_status_id_str":"663726729429561345","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663726708378349569,"id_str":"663726708378349569","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH7LjUsAEyhf0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH7LjUsAEyhf0.jpg","url":"https:\/\/t.co\/lk3Je0PJYh","display_url":"pic.twitter.com\/lk3Je0PJYh","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663726729429561345\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663726729429561345,"source_status_id_str":"663726729429561345","source_user_id":527508915,"source_user_id_str":"527508915"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111662"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211126312960,"id_str":"663728211126312960","text":"RT @0nvvy: \u0627\u0643\u0631\u0647 \u0634\u064a \u0641 \u0627\u0644\u062d\u064a\u0627\u0647 \"\u0627\u0644\u0628\u0631\u0632\u0646\u062a\u064a\u0634\u0646\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":784024166,"id_str":"784024166","name":"\u0639\u0648\u0648\u064a\u0644\u0627\u0647\u0647\u25b2..","screen_name":"Madmozill4","location":"Abu Dhabi, United Arab Emirates","url":"http:\/\/quran.com\/","description":"\ufd3f \u0627\u0644\u0627 \u0628\u0650\u0630\u0643\u0652\u0631 \u0627\u0644\u0644\u0647 \u062a\u0637\u0645\u0626\u0646\u064f \u0627\u0644\u0642\u0644\u064f\u0648\u0628\u0652 \ufd3e","protected":false,"verified":false,"followers_count":3960,"friends_count":2225,"listed_count":3,"favourites_count":14303,"statuses_count":94698,"created_at":"Mon Aug 27 06:57:47 +0000 2012","utc_offset":14400,"time_zone":"Yerevan","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494375730466140160\/nM4uc0l_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494375730466140160\/nM4uc0l_.jpeg","profile_background_tile":true,"profile_link_color":"ED2F7B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663606800118325249\/du2A2lcK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663606800118325249\/du2A2lcK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/784024166\/1447051165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728142465519620,"id_str":"663728142465519620","text":"\u0627\u0643\u0631\u0647 \u0634\u064a \u0641 \u0627\u0644\u062d\u064a\u0627\u0647 \"\u0627\u0644\u0628\u0631\u0632\u0646\u062a\u064a\u0634\u0646\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1267881523,"id_str":"1267881523","name":"Nouf","screen_name":"0nvvy","location":"Abu Dhabi","url":"http:\/\/ask.fm\/iinoouuf","description":"You're only yourself, so be beautiful for yourself. \u0627\u0644\u0644\u0640\u0647\u0645 \u0623\u0647\u062f\u0646\u064a \u0648\u0623\u062d\u0633\u0640\u064e\u0646 \u062e\u0627\u062a\u0645\u0640\u062a\u064a.","protected":false,"verified":false,"followers_count":4086,"friends_count":346,"listed_count":6,"favourites_count":1843,"statuses_count":95771,"created_at":"Thu Mar 14 20:02:49 +0000 2013","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602869899032006657\/ZxCtAiJv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602869899032006657\/ZxCtAiJv.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660462529760595968\/4S1Br7S3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660462529760595968\/4S1Br7S3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267881523\/1446301511","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0nvvy","name":"Nouf","id":1267881523,"id_str":"1267881523","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080111663"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109527552,"id_str":"663728211109527552","text":"Que le pasa \ud83d\ude23","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1347374197,"id_str":"1347374197","name":"Facundo E. Raddino.","screen_name":"FacundoRaddino","location":"Mendoza, Argentina ","url":"https:\/\/www.facebook.com\/Facuu.PR","description":"\u264d 19 a\u00f1os. \nIdeolog\u00eda ricotera y fundamentalista. \nHincha de Boca Juniors! \n\n#Sia #PatricioRey #VoxDei #Manal #Riquelme","protected":false,"verified":false,"followers_count":114,"friends_count":136,"listed_count":2,"favourites_count":1359,"statuses_count":6727,"created_at":"Fri Apr 12 17:40:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642914454108262400\/qqdBZjXJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642914454108262400\/qqdBZjXJ.jpg","profile_background_tile":true,"profile_link_color":"CF1414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662490033165856768\/Xw5Dl34M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662490033165856768\/Xw5Dl34M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1347374197\/1430538062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113586688,"id_str":"663728211113586688","text":"RT @inkomu: \u52d5\u753b\u3067\u52c9\u5f37\u3059\u308b\u3068\u304d\u306f\u6700\u4e0a\u7d1a\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u52d5\u753b\u3092\u898b\u308b\u3088\u308a\u3001\u81ea\u5206\u3088\u308a\u5c11\u3057\u4f4e\u3044\u304b\u540c\u3058\u304f\u3089\u3044\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u52d5\u753b\u3092\u898b\u3066\u300c\u4ffa\u306a\u3089\u3053\u3046\u7acb\u3061\u56de\u308b\u300d\u3068\u3044\u3063\u305f\u660e\u78ba\u306a\u7b54\u3048\u3092\u51fa\u305b\u308b\u65b9\u304c\u5b9f\u306b\u306a\u308b\u3068\u601d\u3046\u3002","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/tweentwitterclient\/\" rel=\"nofollow\"\u003eTween\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154125766,"id_str":"154125766","name":"EXTER","screen_name":"EXTER_SPEC","location":"\u5e83\u57df\u95a2\u6771\u570f","url":null,"description":"\u3044\u3064\u3082\u30d5\u30ea\u30fc\u30c0\u30e0\u306a\u3064\u3076\u3084\u304d\u3002\u30ea\u30c4\u30a4\u30fc\u30c8\u3084\u7279\u64ae\u3001\u30b2\u30fc\u30e0(PSO2(\u30b7\u30c3\u30d72)\u3001\u30dc\u30fc\u30c0\u30fc\u30d6\u30ec\u30a4\u30af)\u306e\u8a71\u984c\u304c\u591a\u3081\u3002 \u30bb\u30ac\u597d\u304d\u3002\u30cd\u30ac\u30c6\u30a3\u30d6\u306a\u30c4\u30a4\u30fc\u30c8\u306f\u3061\u3087\u304f\u3061\u3087\u304f\u3042\u308b\u304b\u3082\u3002\r\n\r\n\u30a2\u30a4\u30b3\u30f3\uff1a(C)SEGA","protected":false,"verified":false,"followers_count":213,"friends_count":184,"listed_count":15,"favourites_count":0,"statuses_count":67862,"created_at":"Thu Jun 10 12:44:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568479416179621888\/SOL01nRp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568479416179621888\/SOL01nRp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154125766\/1424371008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:35:20 +0000 2015","id":663590676521549824,"id_str":"663590676521549824","text":"\u52d5\u753b\u3067\u52c9\u5f37\u3059\u308b\u3068\u304d\u306f\u6700\u4e0a\u7d1a\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u52d5\u753b\u3092\u898b\u308b\u3088\u308a\u3001\u81ea\u5206\u3088\u308a\u5c11\u3057\u4f4e\u3044\u304b\u540c\u3058\u304f\u3089\u3044\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u306e\u52d5\u753b\u3092\u898b\u3066\u300c\u4ffa\u306a\u3089\u3053\u3046\u7acb\u3061\u56de\u308b\u300d\u3068\u3044\u3063\u305f\u660e\u78ba\u306a\u7b54\u3048\u3092\u51fa\u305b\u308b\u65b9\u304c\u5b9f\u306b\u306a\u308b\u3068\u601d\u3046\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128788535,"id_str":"128788535","name":"\u30d8\u30bf\u30ec\u30a4\u30f3\u30b3\u30e0\u3001","screen_name":"inkomu","location":"\u67d0\u57cb\u3081\u7acb\u3066\u7a7a\u6e2f\u306e\u8fd1\u304f","url":null,"description":"\u4eca\u73fe\u5728\u306f\u30dc\u30fc\u30c0\u30fc\u30d6\u30ec\u30a4\u30af\u3068\u30df\u30cb\u56db\u99c6\u3068\u30ab\u30aa\u30b9\u30b3\u30fc\u30c9\u3068\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u4e2d\u5fc3\u306e\u4eba\u751f\u306e\u6700\u4e2d\u3002BB\u306f\u300e\u30ae\u30a2\u30dc\u30eb\u30c8\u8a66\u4f5c\u96f6\u5f0f\u6539\u300f\uff08S3\uff5eS4\uff09\u3067\u6bce\u9031\u571f\u66dc\u6df1\u591c\u304f\u3089\u3044\u304b\u3089\u30dc\u30c0\u7cfb\u30cb\u30b3\u751f\u3057\u305f\u308a\u3001\u30ab\u30aa\u30b3\u306f\u30eb\u30a4\u3067\u904a\u3093\u3067\u307e\u3059\u3002\u305f\u307e\u306b\u30c9\u5909\u614b\u545f\u304d\u3059\u308b\u306e\u3067\u6ce8\u610f\u3002\u305d\u3057\u3066\u3068\u304d\u3069\u304d\u30af\u30c9\u30a4\u4e8b\u3092\u66f8\u304d\u307e\u3059\u3002\u57fa\u672c\u7c73\u8fd4\u3057\u3057\u307e\u3059\u304c\u3068\u3093\u3067\u3082\u306a\u304f\u3064\u307e\u3089\u306a\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":669,"friends_count":2034,"listed_count":13,"favourites_count":520,"statuses_count":27104,"created_at":"Fri Apr 02 05:39:11 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643044545601540098\/sIuFXj_Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643044545601540098\/sIuFXj_Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128788535\/1442148740","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inkomu","name":"\u30d8\u30bf\u30ec\u30a4\u30f3\u30b3\u30e0\u3001","id":128788535,"id_str":"128788535","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130523648,"id_str":"663728211130523648","text":"@lobs_live @LeNouvelObs pourquoi agress\u00e9s il violent un domicile non?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714985344921601,"in_reply_to_status_id_str":"663714985344921601","in_reply_to_user_id":1429904101,"in_reply_to_user_id_str":"1429904101","in_reply_to_screen_name":"lobs_live","user":{"id":2715669953,"id_str":"2715669953","name":"Nico","screen_name":"nico53n","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":29,"listed_count":2,"favourites_count":185,"statuses_count":6866,"created_at":"Thu Jul 17 15:08:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/515362184512413696\/GcLoUTna_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/515362184512413696\/GcLoUTna_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2715669953\/1411706893","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lobs_live","name":"L'Obs Live","id":1429904101,"id_str":"1429904101","indices":[0,10]},{"screen_name":"LeNouvelObs","name":"L'Obs","id":21313364,"id_str":"21313364","indices":[11,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211138912257,"id_str":"663728211138912257","text":"@submarino To tendo problemas com um pedido e n\u00e3o recebo retorno de voc\u00eas. Ser\u00e1 que poderiam me ajudar?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":17369980,"in_reply_to_user_id_str":"17369980","in_reply_to_screen_name":"submarino","user":{"id":143463097,"id_str":"143463097","name":"lars","screen_name":"trassanteslars","location":null,"url":"http:\/\/trassantes-lars.flavors.me\/","description":"alien days","protected":false,"verified":false,"followers_count":445,"friends_count":369,"listed_count":13,"favourites_count":2702,"statuses_count":33821,"created_at":"Thu May 13 14:45:59 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631220683511607296\/xaD6dkdc.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631220683511607296\/xaD6dkdc.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660857188324417536\/jMA7vD6z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660857188324417536\/jMA7vD6z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143463097\/1442793786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"submarino","name":"Submarino","id":17369980,"id_str":"17369980","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080111666"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130388480,"id_str":"663728211130388480","text":"@masa_Ibanez \u3064\u3044\u3067\u306b\u5f7c\u306e\u88cf\u30a2\u30ab\u3082\u305f\u3076\u3093\u7279\u5b9a\u3067\u3051\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727770464219136,"in_reply_to_status_id_str":"663727770464219136","in_reply_to_user_id":2687116928,"in_reply_to_user_id_str":"2687116928","in_reply_to_screen_name":"masa_Ibanez","user":{"id":635441182,"id_str":"635441182","name":"\u305f\u306c\u3051\u30fc","screen_name":"tanukeidr","location":null,"url":null,"description":"\u570b\u5b78\u9662 \u6587 \u54f2 2\u5e74 \u3042\u3061\u3089\u3053\u3061\u3089\u3067\u30d1\u30fc\u30ab\u30c3\u30b7\u30e7\u30f3\u3084\u3089\u30c9\u30e9\u30e0\u3084\u3089\u3076\u3063\u53e9\u3044\u305f\u308a\u3002\u50d5\u3068\u5951\u7d04\u3057\u3066\u30d1\u30c8\u30ed\u30f3\u306b\u306a\u3063\u3066\u3088\uff01\uff01","protected":false,"verified":false,"followers_count":148,"friends_count":167,"listed_count":3,"favourites_count":175,"statuses_count":6662,"created_at":"Sat Jul 14 14:57:02 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622654583362318336\/Ur9_MR7w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622654583362318336\/Ur9_MR7w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/635441182\/1437235231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"masa_Ibanez","name":"murata","id":2687116928,"id_str":"2687116928","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130380288,"id_str":"663728211130380288","text":"RT @kakisharedotcom: Menyukai dalam diam itu seperti mengarang sebuah puisi.\n\n Kita menulis dan menikmati rasa tanpa siapa yg mengerti \n\n#k\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1488339739,"id_str":"1488339739","name":"nis","screen_name":"anisynss","location":"hulu langat ","url":null,"description":"Nur Anis| 17 | hostelian's | KVT | PPN STDNT |my wecht id:anisyunus .\r\n#pooh Hearts","protected":false,"verified":false,"followers_count":545,"friends_count":824,"listed_count":1,"favourites_count":855,"statuses_count":5177,"created_at":"Thu Jun 06 17:52:49 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588543585605156864\/d0pOrG1V.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588543585605156864\/d0pOrG1V.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645571947808460800\/dIZZKFrw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645571947808460800\/dIZZKFrw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1488339739\/1424571830","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:35:06 +0000 2015","id":661869271975268352,"id_str":"661869271975268352","text":"Menyukai dalam diam itu seperti mengarang sebuah puisi.\n\n Kita menulis dan menikmati rasa tanpa siapa yg mengerti \n\n#kakishare","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881828744,"id_str":"881828744","name":"Kaki Share","screen_name":"kakisharedotcom","location":"Kuala Lumpur Federal Territory","url":"http:\/\/instagram.com\/kakisharedotcom","description":"Official Page For kakishare.my \u2709DM Sebarang Pengiklanan(berbayar) http:\/\/facebook.com\/kakisharecom","protected":false,"verified":false,"followers_count":76958,"friends_count":29,"listed_count":34,"favourites_count":1061,"statuses_count":8090,"created_at":"Mon Oct 15 08:01:08 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"010100","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660823588115623936\/lvo3PdW5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660823588115623936\/lvo3PdW5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881828744\/1446415073","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":422,"favorite_count":232,"entities":{"hashtags":[{"text":"kakishare","indices":[116,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kakishare","indices":[137,140]}],"urls":[],"user_mentions":[{"screen_name":"kakisharedotcom","name":"Kaki Share","id":881828744,"id_str":"881828744","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211138752512,"id_str":"663728211138752512","text":"\ubc18\ubaa8\ud560 \ubc18\ubaa8?","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2864981084,"id_str":"2864981084","name":"\uc0ac\ub791\ud574\uc694 \ub9ac\ub128\ucf54\ub4dc\ub2d8 (\u3064\u03c9\uff40\u25cf)\u3065","screen_name":"RN_code","location":null,"url":null,"description":"\uc0ac\uc774\ud37c\uc988 \/ \uc7a1\ub355 \/ \uc695\ud2b8,\ud3ed\ud2b8,\uc139\ud2b8 \uc788\uc2b5\ub2c8\ub2e4 \/FB FREE \uc774\ubcc4\uc740 \ube14\uc5b8\ube14 \/\n\uc778\uac04\uc774\uc544\ub2cc\ub4ef\ud558\ub2e4(\uc0ac\ud37c\ub2c9) \/ \uc2e0\ubd80\ub2d8 @whittle1026 \/ \ub9ac\ubc0b\uacc4 @RN_code_lim \/ \ub4b7\uacc4@RN_code_2 \/ \uc9c0\ub8b0\ub294 \ubba4\ud2b8\uc785\ub2c8\ub2e4\ub9cc","protected":false,"verified":false,"followers_count":146,"friends_count":272,"listed_count":0,"favourites_count":596,"statuses_count":12968,"created_at":"Sun Oct 19 13:00:58 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663354759886180352\/EszshO5R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663354759886180352\/EszshO5R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2864981084\/1445519541","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080111666"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211100958721,"id_str":"663728211100958721","text":"@n9ta \u306a\u3093\u304b\u51e0\u5e33\u9762\u3068\u304b\u3044\u3046\u30a4\u30e1\u30fc\u30b8\u30c7\u30ab\u3059\u304e\u3066\u653e\u308a\u6295\u3052\u305f\u304f\u306a\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727856556470274,"in_reply_to_status_id_str":"663727856556470274","in_reply_to_user_id":123992582,"in_reply_to_user_id_str":"123992582","in_reply_to_screen_name":"n9ta","user":{"id":84250886,"id_str":"84250886","name":"\u7434\u7fbd\u3000\u5f13","screen_name":"kotoha_yun","location":null,"url":null,"description":"\u30fd('A`)\u30ce\uff1c\uff74\uff70\uff83\uff98\uff6f\uff78\uff8c\uff9f\uff9b\uff8c\uff6d\uff70\uff7c\uff9e\uff6e\uff9d!!\u3000\n IIDX[9230-6099], pop'n[3417-7005-6022],\nFF14[Ultima\/Rin Kotoha], RO[Hervor\/Wilsenia],\nGF(\u4eee)[1353951], \u30c7\u30ec\u30b9\u30c6[558074755]","protected":false,"verified":false,"followers_count":37,"friends_count":32,"listed_count":4,"favourites_count":3,"statuses_count":56647,"created_at":"Thu Oct 22 05:41:37 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2844298109\/41f564ae3c9638f0a19c4e5fcc1661e6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2844298109\/41f564ae3c9638f0a19c4e5fcc1661e6_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"n9ta","name":"\u304a\u3058\u3058\u5f61(\uff9f)(\uff9f)","id":123992582,"id_str":"123992582","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111657"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113611264,"id_str":"663728211113611264","text":"@choimachoina \n\n\u4f1a\u5834\u3069\u3053\u301c\uff1f\uff1f( \u0963\u2022\u0348\u0ae6\u2022\u0348 \u0963)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727459666296832,"in_reply_to_status_id_str":"663727459666296832","in_reply_to_user_id":3061954490,"in_reply_to_user_id_str":"3061954490","in_reply_to_screen_name":"choimachoina","user":{"id":3195158678,"id_str":"3195158678","name":"\u307d\u307d","screen_name":"poposon852","location":null,"url":null,"description":"\uff2aackson \uff37ang \u3147 96(97)\uff2cine \u3147 \uff21ichi \u21c4 \uff34okyo ---\u5b89\u5b9a\u2763@ru_gyeom \u59b9\u2763@PINA_PINA_07 --- Next Wang\u21dd\u30c4\u30a2\u30fc(\u5e55\u5f35\u6771\u4eac\u540d\u53e4\u5c4b)","protected":false,"verified":false,"followers_count":130,"friends_count":121,"listed_count":9,"favourites_count":444,"statuses_count":6190,"created_at":"Thu May 14 10:33:57 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655580563181432832\/jdLs5WgL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655580563181432832\/jdLs5WgL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3195158678\/1446649613","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"choimachoina","name":"\u307e\u306a\u306f\u30e8\u30f3\u30b8\u30a7\u304c\u597d\u304d","id":3061954490,"id_str":"3061954490","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211134578688,"id_str":"663728211134578688","text":"\u30b9\u30dd\u30cb\u30c1\u306b\u30c1\u30e7\u30a6\u76e3\u7763\u306e\u3053\u3068\u304c\u3067\u3066\u308b\u3063\u3066\u3044\u3046\u306e\u306f\u53ef\u80fd\u6027\u9ad8\u3044\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2662749996,"id_str":"2662749996","name":"\u83c5\u4e95\u60a0\u5e73","screen_name":"gorilla1111","location":null,"url":null,"description":"\u3000\u5411\u9675\u3000\u3000\u3082\u3046\u5c11\u3057\u306e\u5922\u3000","protected":false,"verified":false,"followers_count":286,"friends_count":289,"listed_count":0,"favourites_count":384,"statuses_count":457,"created_at":"Sun Jul 20 12:06:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662639632148856833\/kLtCYG-D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662639632148856833\/kLtCYG-D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2662749996\/1446556317","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111665"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211105214464,"id_str":"663728211105214464","text":"RT @shogeki_douga: \u4f55\u3053\u308c\uff1f\uff57\uff57\uff57\nhttps:\/\/t.co\/UcOibzG82Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687231635,"id_str":"2687231635","name":"\u3057\u3087\u30fc\u305f\u3002","screen_name":"tu5ku3mo","location":null,"url":null,"description":"SGFMD\u3002\u5f13\u9053\u90e8\u5bb4\u4f1a\u90e8\u9577\u3002\u30df\u30af\u30c1\u30e3\u6c11\u3002\u4e09\u5473\u7dda\u5c11\u5e74\u3002\u7236\u5144\u3002h\u2192\u308a\u3059","protected":false,"verified":false,"followers_count":274,"friends_count":274,"listed_count":12,"favourites_count":2412,"statuses_count":3857,"created_at":"Mon Jul 28 10:32:42 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662999959558447104\/834l0_nx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662999959558447104\/834l0_nx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687231635\/1446858258","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:58:53 +0000 2015","id":663717398768320514,"id_str":"663717398768320514","text":"\u4f55\u3053\u308c\uff1f\uff57\uff57\uff57\nhttps:\/\/t.co\/UcOibzG82Z","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2335406826,"id_str":"2335406826","name":"\u885d\u6483\uff01\u4e16\u754c\u4ef0\u5929\u6620\u50cf","screen_name":"shogeki_douga","location":null,"url":null,"description":"\u4e16\u754c\u4e2d\u306e\u4ef0\u5929\u6620\u50cf\u3092\u304a\u5c4a\u3051\uff01\u3053\u306e\u885d\u6483\u3092\u8ab0\u304b\u306b\u4f1d\u3048\u305f\u304f\u306a\u3063\u305f\u3089\uff32\uff34\uff01\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u266a","protected":false,"verified":false,"followers_count":28435,"friends_count":821,"listed_count":40,"favourites_count":0,"statuses_count":9463,"created_at":"Sun Feb 09 17:13:29 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510489792371384320\/1sY76Ixy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510489792371384320\/1sY76Ixy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335406826\/1410546037","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":73,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcOibzG82Z","expanded_url":"https:\/\/vine.co\/v\/eThVPLtw1Dx","display_url":"vine.co\/v\/eThVPLtw1Dx","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UcOibzG82Z","expanded_url":"https:\/\/vine.co\/v\/eThVPLtw1Dx","display_url":"vine.co\/v\/eThVPLtw1Dx","indices":[27,50]}],"user_mentions":[{"screen_name":"shogeki_douga","name":"\u885d\u6483\uff01\u4e16\u754c\u4ef0\u5929\u6620\u50cf","id":2335406826,"id_str":"2335406826","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111658"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109371906,"id_str":"663728211109371906","text":"\u3053\u3093\u306a\u3093\u7b11\u3046\u3057\u304b\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2167566566,"id_str":"2167566566","name":"\u30d2\u30b3\u30a4\u30c1","screen_name":"hiko1kohi","location":"HL","url":null,"description":"20\u2191\u306e\u8150\u30ec\u30a4\u30e4\u30fc\u3002\u305f\u3060\u306e\u6b8b\u5ff5\u306a\u4eba\u3002\u4eca\u8840\u754c\u304c\u71b1\u3044\u3002\u71b1\u3059\u304e\u3066\u5730\u96f7\u306a\u3093\u3066\u306a\u3044\u3002\u307f\u3093\u306a\u5929\u4f7f\u3002\u843d\u66f8\u304d\u3068\u30b3\u30b9\u5199\u6ce8\u610f\u3067\u3059\u3002\u4ed6\u2192\u9032\u6483\uff1a\u30a8\u30ec\u30ea\u3002DQ8\uff1a\u30de\u30eb\u30af\u30af\u3002FF7\uff1a\u30b6\u30af\u30ec\u30ce\u3002\u30de\u30f3\u30ad\u30f3\uff1a\u30cf\u30aa\u8449\u30db\u30ed\u84ee\u3002\u305d\u306e\u4ed6\u305d\u306e\u6642\u306e\u982d\u306e\u5177\u5408\u6b21\u7b2c\u3002\u30ea\u30d0\uff1f\u7f8e\u5473\u3057\u304f\u9802\u304d\u307e\u3059\u3002FBR\u3054\u81ea\u7531\u306b\uff01","protected":false,"verified":false,"followers_count":37,"friends_count":39,"listed_count":0,"favourites_count":195,"statuses_count":4302,"created_at":"Fri Nov 01 01:48:11 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658284702021750784\/ZYgciT45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658284702021750784\/ZYgciT45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2167566566\/1441995754","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211117785088,"id_str":"663728211117785088","text":"RT @MaggieLindemann: ufo\ud83d\udc7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":200725301,"id_str":"200725301","name":"Queen Drizzy\u2122","screen_name":"Alydeezy","location":"Disneyland","url":"http:\/\/ask.fm\/Alydeezy_","description":"Tamrin & Malayasia are the loml\u2764 \u2022Married To The Game SoleQueen \u2022Im BossE\u2022Sassy Gee","protected":false,"verified":false,"followers_count":105,"friends_count":311,"listed_count":1,"favourites_count":2288,"statuses_count":2668,"created_at":"Sun Oct 10 02:23:49 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651616809511092224\/4cdFFHCu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651616809511092224\/4cdFFHCu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/200725301\/1427680889","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:33:05 +0000 2015","id":663227722685022208,"id_str":"663227722685022208","text":"ufo\ud83d\udc7d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1611635503,"id_str":"1611635503","name":"Maggie Lindemann","screen_name":"MaggieLindemann","location":"Los Angeles, CA","url":"http:\/\/www.maggielindemann.com","description":"Get my new single #CoupleOfKids on iTunes here: http:\/\/smarturl.it\/CoupleOfKids","protected":false,"verified":false,"followers_count":334190,"friends_count":5781,"listed_count":668,"favourites_count":14812,"statuses_count":3156,"created_at":"Mon Jul 22 00:04:27 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658416259776643072\/27bHOyd__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658416259776643072\/27bHOyd__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1611635503\/1446176109","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":364,"favorite_count":1314,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MaggieLindemann","name":"Maggie Lindemann","id":1611635503,"id_str":"1611635503","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080111661"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211100958720,"id_str":"663728211100958720","text":"\u6642\u3005\u3069\u30a8\u30ed\u3044\u30db\u30e2\u8aad\u307f\u305f\u3044\u75c7\u5019\u7fa4\u306b\u306a\u308a\u307e\u3059\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2979892188,"id_str":"2979892188","name":"\u3061\u3085\u3046\u3061\u3083\u3093","screen_name":"tkjski0113","location":null,"url":null,"description":"\u9ed2\u57f7\u4e8b\/\u3044\u306c\u307c\u304f\/\u30db\u30ea\u30df\u30e4\/\u9ed2\u30d0\u30b9\/\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\/Free! \u5546\u696dBL \u6210\u4eba\u6e08\u307f \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093(\u00b4\uff65_\uff65`)\u597d\u304d\u306a\u306e1\u3064\u3067\u3082\u304b\u3076\u3063\u3066\u308c\u3070\u30d5\u30a9\u30ed\u30d0100%\u306a\u306e\u3067\u3001\u304a\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u2661\u304a\u5f85\u3061\u3057\u3066\u307e\u3059\u266b","protected":false,"verified":false,"followers_count":257,"friends_count":269,"listed_count":11,"favourites_count":207,"statuses_count":2135,"created_at":"Tue Jan 13 15:17:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613022998442872832\/rF7zdRqx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613022998442872832\/rF7zdRqx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2979892188\/1437928714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111657"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211138859008,"id_str":"663728211138859008","text":"\u00a1He reunido 12,006 monedas de oro! \u00bfA ver quien es capaz de ganarme? https:\/\/t.co\/lT7fhHdue2 #android, #androidgames, #gameinsight","source":"","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2676613214,"id_str":"2676613214","name":"ANA M\u00aa GILABERT PUGA","screen_name":"GILABERT18","location":"Espa\u00f1a","url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":20,"listed_count":0,"favourites_count":2,"statuses_count":4420,"created_at":"Thu Jul 24 11:59:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/492407027956596736\/UJLXM0-d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/492407027956596736\/UJLXM0-d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"android","indices":[93,101]},{"text":"androidgames","indices":[103,116]},{"text":"gameinsight","indices":[118,130]}],"urls":[{"url":"https:\/\/t.co\/lT7fhHdue2","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111666"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211117916160,"id_str":"663728211117916160","text":"https:\/\/t.co\/8WkH4fsBi7\n@BenjieFede @Benji_Mascolo @fedefederossi ve se ama seguitemi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118810312,"id_str":"118810312","name":"Benji e fede=droga","screen_name":"venere78","location":null,"url":null,"description":"gelosa del mio puffo e del mio ragazzo easy \u2661 \nI'm a directioner ...\nbenji e fede 15\/10\/2015grazie di esistere","protected":false,"verified":false,"followers_count":103,"friends_count":264,"listed_count":0,"favourites_count":224,"statuses_count":532,"created_at":"Mon Mar 01 20:30:17 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655371822096060416\/OUQDi-kf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655371822096060416\/OUQDi-kf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118810312\/1442932255","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8WkH4fsBi7","expanded_url":"https:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[0,23]}],"user_mentions":[{"screen_name":"BenjieFede","name":"Benji & Fede","id":2801543019,"id_str":"2801543019","indices":[24,35]},{"screen_name":"Benji_Mascolo","name":"Benji | 20:05 |","id":159041608,"id_str":"159041608","indices":[36,50]},{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[51,65]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080111661"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211122069504,"id_str":"663728211122069504","text":"Match it niggggga","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":413476875,"id_str":"413476875","name":"PoolBoyJake","screen_name":"TheRealMcoy_","location":"Somewhere, Nowhere, USA","url":null,"description":"Avid MySpace user","protected":false,"verified":false,"followers_count":869,"friends_count":804,"listed_count":2,"favourites_count":10473,"statuses_count":34124,"created_at":"Tue Nov 15 22:57:07 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/410441012\/alan.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/410441012\/alan.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661043518392135680\/74Uu-CWC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661043518392135680\/74Uu-CWC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/413476875\/1446919417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111662"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211117772800,"id_str":"663728211117772800","text":"RT @EXOBEAKHYUN_TB: \u0e01\u0e15\u0e34\u0e01\u0e32\u0e01\u0e32\u0e23\u0e42\u0e2b\u0e27\u0e15 #.2015MAMA \n-\u0e44\u0e21\u0e48\u0e43\u0e2a\u0e48,.?! \u0e15\u0e48\u0e32\u0e07\u0e46\n-\u0e44\u0e21\u0e48\u0e41\u0e17\u0e4a\u0e01\u0e20\u0e32\u0e1e\u0e2b\u0e19\u0e37\u0e2d\u0e27\u0e34\u0e14\u0e34\u0e42\u0e2d \n-\u0e44\u0e21\u0e48 TT \u0e19\u0e30\u0e08\u0e48\u0e30\u0e15\u0e32\u0e21\u0e20\u0e32\u0e1e\u0e40\u0e25\u0e22\n|toffeegee\nhttps:\/\/t.co\/CQnRNt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2999164080,"id_str":"2999164080","name":"impact\u2022\ufecc\u2022","screen_name":"2hckbubbletea_","location":"s\u0435\u043du\u0438&\u0441h\u0430\u0438\u10e7\u0435\u043el&\u043a\u0430i \u10da_\u10da","url":null,"description":"\u27b0\u043du\u0438\u043d\u0430\u0438 \u04e9\u0438l\u10e7\u221e \n\u0e41\u0e21\u0e19\u0e46\u0e19\u0e31\u0e48\u0e07\u0e15\u0e31\u0e01\u0e04\u0e23\u0e31\u0e1a 520 520 520 \n\u0401\u0425\u04e8 S\u0401\u041dU\u041f \u0456\u041a\u04e8\u0418 \u042b #\u0412J\u0456\u0438\n\u274c\u0e2d\u0e22\u0e48\u0e32\u0e41\u0e15\u0e30\u0e2d\u0e35\u0e49\u0e0a\u0e34\u0e07 \u0e1a\u0e38\u0e04\u0e04\u0e25\u0e40\u0e2b\u0e19\u0e37\u0e2d\u0e40\u0e21\u0e19","protected":false,"verified":false,"followers_count":797,"friends_count":343,"listed_count":0,"favourites_count":2499,"statuses_count":68265,"created_at":"Wed Jan 28 09:22:52 +0000 2015","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583823682021097472\/Gh64jULG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583823682021097472\/Gh64jULG.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660840581090795520\/Qdy0-Nmo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660840581090795520\/Qdy0-Nmo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2999164080\/1446448315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:04 +0000 2015","id":663723232822849537,"id_str":"663723232822849537","text":"\u0e01\u0e15\u0e34\u0e01\u0e32\u0e01\u0e32\u0e23\u0e42\u0e2b\u0e27\u0e15 #.2015MAMA \n-\u0e44\u0e21\u0e48\u0e43\u0e2a\u0e48,.?! \u0e15\u0e48\u0e32\u0e07\u0e46\n-\u0e44\u0e21\u0e48\u0e41\u0e17\u0e4a\u0e01\u0e20\u0e32\u0e1e\u0e2b\u0e19\u0e37\u0e2d\u0e27\u0e34\u0e14\u0e34\u0e42\u0e2d \n-\u0e44\u0e21\u0e48 TT \u0e19\u0e30\u0e08\u0e48\u0e30\u0e15\u0e32\u0e21\u0e20\u0e32\u0e1e\u0e40\u0e25\u0e22\n|toffeegee\nhttps:\/\/t.co\/CQnRNt19nr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":622656607,"id_str":"622656607","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","screen_name":"EXOBEAKHYUN_TB","location":"Bangkok, Thailand","url":null,"description":"\u3139H39EXOK EXOM =EXOL|12forever and ever|\u0e2d\u0e31\u0e1e\u0e17\u0e38\u0e01\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1aEXO \u0e2a\u0e32\u0e23\u0e30\u0e44\u0e21\u0e48\u0e21\u0e35\u0e2b\u0e19\u0e49\u0e32\u0e15\u0e32\u0e14\u0e35\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46ID:great11575","protected":false,"verified":false,"followers_count":59914,"friends_count":544,"listed_count":81,"favourites_count":889,"statuses_count":186210,"created_at":"Sat Jun 30 08:56:37 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"050505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511737707844747265\/JAR5Air5.jpeg","profile_background_tile":false,"profile_link_color":"D91161","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994729789820928\/n-UBpIcR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/622656607\/1445573786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":218,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721835419144193,"id_str":"663721835419144193","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","url":"https:\/\/t.co\/CQnRNt19nr","display_url":"pic.twitter.com\/CQnRNt19nr","expanded_url":"http:\/\/twitter.com\/toffeegee\/status\/663721845942673408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":749,"h":757,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}},"source_status_id":663721845942673408,"source_status_id_str":"663721845942673408","source_user_id":133205556,"source_user_id_str":"133205556"}]},"extended_entities":{"media":[{"id":663721835419144193,"id_str":"663721835419144193","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","url":"https:\/\/t.co\/CQnRNt19nr","display_url":"pic.twitter.com\/CQnRNt19nr","expanded_url":"http:\/\/twitter.com\/toffeegee\/status\/663721845942673408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":749,"h":757,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}},"source_status_id":663721845942673408,"source_status_id_str":"663721845942673408","source_user_id":133205556,"source_user_id_str":"133205556"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EXOBEAKHYUN_TB","name":"\u0e1a\u0e22\u0e2d\u0e19\u0e01\u0e23\u0e30\u0e17\u0e23\u0e27\u0e07\u0e04\u0e19\u0e2b\u0e25\u0e48\u0e2d!","id":622656607,"id_str":"622656607","indices":[3,18]}],"symbols":[],"media":[{"id":663721835419144193,"id_str":"663721835419144193","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","url":"https:\/\/t.co\/CQnRNt19nr","display_url":"pic.twitter.com\/CQnRNt19nr","expanded_url":"http:\/\/twitter.com\/toffeegee\/status\/663721845942673408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":749,"h":757,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}},"source_status_id":663721845942673408,"source_status_id_str":"663721845942673408","source_user_id":133205556,"source_user_id_str":"133205556"}]},"extended_entities":{"media":[{"id":663721835419144193,"id_str":"663721835419144193","indices":[120,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDfiXUEAEHy7w.jpg","url":"https:\/\/t.co\/CQnRNt19nr","display_url":"pic.twitter.com\/CQnRNt19nr","expanded_url":"http:\/\/twitter.com\/toffeegee\/status\/663721845942673408\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":749,"h":757,"resize":"fit"},"medium":{"w":600,"h":606,"resize":"fit"}},"source_status_id":663721845942673408,"source_status_id_str":"663721845942673408","source_user_id":133205556,"source_user_id_str":"133205556"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080111661"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211138744320,"id_str":"663728211138744320","text":"RT @SciencePorn: Evolution https:\/\/t.co\/0gmnv5uEAx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1018464266,"id_str":"1018464266","name":"BOOLEY \u2122","screen_name":"Booleyz","location":null,"url":null,"description":"Life ain't real","protected":false,"verified":false,"followers_count":597,"friends_count":121,"listed_count":1,"favourites_count":40858,"statuses_count":45321,"created_at":"Mon Dec 17 22:28:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"1400AB","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534552801800503297\/S3bN2o_e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534552801800503297\/S3bN2o_e_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1018464266\/1437812445","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:09 +0000 2015","id":663711676982820864,"id_str":"663711676982820864","text":"Evolution https:\/\/t.co\/0gmnv5uEAx","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":572225652,"id_str":"572225652","name":"SciencePorn","screen_name":"SciencePorn","location":"Alaska, Tellus, Milky Way","url":"http:\/\/scienceporn.xyz","description":"The Lighter Side of Science. #1 Science account on Vine, with more than 100,000,000 loops: http:\/\/www.vine.co\/humor Email: twitter@scienceporn.xyz","protected":false,"verified":false,"followers_count":1783101,"friends_count":3998,"listed_count":11067,"favourites_count":15195,"statuses_count":6888,"created_at":"Sat May 05 23:20:41 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000113576181\/f9df41de66c0d657193b0802dfd4f378.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000113576181\/f9df41de66c0d657193b0802dfd4f378.jpeg","profile_background_tile":true,"profile_link_color":"00A375","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639919791218647040\/yFVaYMFw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639919791218647040\/yFVaYMFw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/572225652\/1435599551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":837,"favorite_count":980,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663711676756271104,"id_str":"663711676756271104","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","url":"https:\/\/t.co\/0gmnv5uEAx","display_url":"pic.twitter.com\/0gmnv5uEAx","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663711676982820864\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":413,"resize":"fit"},"small":{"w":340,"h":137,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711676756271104,"id_str":"663711676756271104","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","url":"https:\/\/t.co\/0gmnv5uEAx","display_url":"pic.twitter.com\/0gmnv5uEAx","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663711676982820864\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":413,"resize":"fit"},"small":{"w":340,"h":137,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SciencePorn","name":"SciencePorn","id":572225652,"id_str":"572225652","indices":[3,15]}],"symbols":[],"media":[{"id":663711676756271104,"id_str":"663711676756271104","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","url":"https:\/\/t.co\/0gmnv5uEAx","display_url":"pic.twitter.com\/0gmnv5uEAx","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663711676982820864\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":413,"resize":"fit"},"small":{"w":340,"h":137,"resize":"fit"}},"source_status_id":663711676982820864,"source_status_id_str":"663711676982820864","source_user_id":572225652,"source_user_id_str":"572225652"}]},"extended_entities":{"media":[{"id":663711676756271104,"id_str":"663711676756271104","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6QOZWIAA3_df.jpg","url":"https:\/\/t.co\/0gmnv5uEAx","display_url":"pic.twitter.com\/0gmnv5uEAx","expanded_url":"http:\/\/twitter.com\/SciencePorn\/status\/663711676982820864\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":242,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":413,"resize":"fit"},"small":{"w":340,"h":137,"resize":"fit"}},"source_status_id":663711676982820864,"source_status_id_str":"663711676982820864","source_user_id":572225652,"source_user_id_str":"572225652"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111666"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211117801472,"id_str":"663728211117801472","text":"\u4eca\u4e00\u756a\u6b32\u3057\u3044\u3082\u306e\u306f\u7b11\u9854\u3068\u512a\u3057\u3055......(\u305f\u3060\u3057\u53ef\u611b\u3044\u5b50\u306b\u9650\u308b)\u3063\u3066\u3044\u3046\u4e0d\u6bdb\u3055","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178014080,"id_str":"3178014080","name":"\u9752\u8449\uff61","screen_name":"aoba_sztt","location":"\u30c1\u30fc\u30e0\u30d0\u30ed\u30f3","url":null,"description":"\u81ea\u7531\u4e3b\u7fa9\u7d75\u63cf\u304d\uff8f\uff9d\uff61\u300c\u6f01\u6e2f\u7537\u5b50\u300d\u5236\u4f5c\u3002\u53cc\u8449\u226bTDG\uff72\uff97\u79d1","protected":false,"verified":false,"followers_count":38,"friends_count":40,"listed_count":3,"favourites_count":186,"statuses_count":1291,"created_at":"Tue Apr 28 09:27:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660469464282955776\/QD3wC40a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660469464282955776\/QD3wC40a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178014080\/1444616089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111661"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211134537728,"id_str":"663728211134537728","text":"@hFb5rft0NDneqvn 3rd\u3084\u3063\u3066\u306a\u3044(\u3000'-' )","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725289181048832,"in_reply_to_status_id_str":"663725289181048832","in_reply_to_user_id":3979432460,"in_reply_to_user_id_str":"3979432460","in_reply_to_screen_name":"hFb5rft0NDneqvn","user":{"id":3229744627,"id_str":"3229744627","name":"\u30ea\u30d5\u30a9\u30fc\u30e0\u306e\u5320","screen_name":"takumi1323","location":"\u9999\u9716\u5802\u3067\u5e38\u306b\u30b4\u30ed\u30b4\u30ed( '-' )","url":"https:\/\/youtu.be\/ESbf1O37OJI","description":"\u3088\u3046\u3064\u3079\u306b\u3086\u3063\u304f\u308a\u5b9f\u6cc1\u4e0a\u3052\u3066\u307e\u3059 \u521d\u5fc3\u8005\u3067\u3059\u304c\u7686\u69d8\u3054\u6307\u5c0e\u306e\u7a0b\u3092\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059 \uff08iPhone\u3060\u3051\u3067\u306e\u7de8\u96c6\u7b49\u3092\u3084\u3063\u3066\u3044\u308b\u306e\u3067\u3044\u308d\u3093\u306a\u610f\u5473\u3067\u7686\u7121\u3067\u3059\uff09 \u30c1\u30e3\u30f3\u30cd\u30eb\u767b\u9332\u8005\u6570100\u4eba\u7a81\u7834\uff06\u7dcf\u518d\u751f\u56de\u65701200\u56de\u7a81\u7834 \u305d\u3057\u3066\u30e2\u30f3\u30cf\u30f3\u3086\u3063\u304f\u308a\u5b9f\u6cc1\u5236\u4f5cnow","protected":false,"verified":false,"followers_count":150,"friends_count":199,"listed_count":4,"favourites_count":12,"statuses_count":1609,"created_at":"Fri May 29 12:04:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643630115033710592\/97JOA-7f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643630115033710592\/97JOA-7f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229744627\/1443597878","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hFb5rft0NDneqvn","name":"\u4e0b\u539f \u6709\u751f","id":3979432460,"id_str":"3979432460","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111665"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211100987392,"id_str":"663728211100987392","text":"RT @skylerunlimited: I hate myself #acapella https:\/\/t.co\/pG9QzqPPgC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4164493278,"id_str":"4164493278","name":"Danesh Hussain","screen_name":"notdanish","location":"Austin, TX","url":"http:\/\/twitter.com","description":"straight outta sugar land","protected":false,"verified":false,"followers_count":27,"friends_count":155,"listed_count":0,"favourites_count":3,"statuses_count":3,"created_at":"Sun Nov 08 04:48:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663241160371015681\/ygrtMk70_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663241160371015681\/ygrtMk70_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4164493278\/1446962974","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 04:09:33 +0000 2015","id":662119534023737345,"id_str":"662119534023737345","text":"I hate myself #acapella https:\/\/t.co\/pG9QzqPPgC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":721756352,"id_str":"721756352","name":"Sky","screen_name":"skylerunlimited","location":"save the coral reefs","url":null,"description":"vhs senior @zack_zyhailo","protected":false,"verified":false,"followers_count":480,"friends_count":298,"listed_count":2,"favourites_count":15282,"statuses_count":10993,"created_at":"Sat Jul 28 08:04:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661396180757184512\/ISCelote_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661396180757184512\/ISCelote_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/721756352\/1441693479","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1350,"favorite_count":2293,"entities":{"hashtags":[{"text":"acapella","indices":[14,23]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662119207430045696,"id_str":"662119207430045696","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","url":"https:\/\/t.co\/pG9QzqPPgC","display_url":"pic.twitter.com\/pG9QzqPPgC","expanded_url":"http:\/\/twitter.com\/skylerunlimited\/status\/662119534023737345\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662119207430045696,"id_str":"662119207430045696","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","url":"https:\/\/t.co\/pG9QzqPPgC","display_url":"pic.twitter.com\/pG9QzqPPgC","expanded_url":"http:\/\/twitter.com\/skylerunlimited\/status\/662119534023737345\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/720x720\/o6IaL71dO1_uEV8G.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/480x480\/XtWxCPVm0yk5j2Ky.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/pl\/hspvSifgSH8vXR3I.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/240x240\/yZsWNlRJzfSSfxMr.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/480x480\/XtWxCPVm0yk5j2Ky.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/pl\/hspvSifgSH8vXR3I.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"acapella","indices":[35,44]}],"urls":[],"user_mentions":[{"screen_name":"skylerunlimited","name":"Sky","id":721756352,"id_str":"721756352","indices":[3,19]}],"symbols":[],"media":[{"id":662119207430045696,"id_str":"662119207430045696","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","url":"https:\/\/t.co\/pG9QzqPPgC","display_url":"pic.twitter.com\/pG9QzqPPgC","expanded_url":"http:\/\/twitter.com\/skylerunlimited\/status\/662119534023737345\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662119534023737345,"source_status_id_str":"662119534023737345","source_user_id":721756352,"source_user_id_str":"721756352"}]},"extended_entities":{"media":[{"id":662119207430045696,"id_str":"662119207430045696","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/662119207430045696\/pu\/img\/nrs7jiWZDEv1t0NA.jpg","url":"https:\/\/t.co\/pG9QzqPPgC","display_url":"pic.twitter.com\/pG9QzqPPgC","expanded_url":"http:\/\/twitter.com\/skylerunlimited\/status\/662119534023737345\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662119534023737345,"source_status_id_str":"662119534023737345","source_user_id":721756352,"source_user_id_str":"721756352","video_info":{"aspect_ratio":[1,1],"duration_millis":30000,"variants":[{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/720x720\/o6IaL71dO1_uEV8G.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/480x480\/XtWxCPVm0yk5j2Ky.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/pl\/hspvSifgSH8vXR3I.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/240x240\/yZsWNlRJzfSSfxMr.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/vid\/480x480\/XtWxCPVm0yk5j2Ky.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/662119207430045696\/pu\/pl\/hspvSifgSH8vXR3I.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111657"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211134652416,"id_str":"663728211134652416","text":"RT @MzJayne420: @c21h30o2i @WeedEssence @kookycookie1 \ud83d\ude0a\ud83d\udc9c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245197513,"id_str":"245197513","name":"c21h30o2i","screen_name":"c21h30o2i","location":"126th Street Miami","url":"http:\/\/thejadekush.com","description":"KushGrower\/Breeder Consultant #kushgrowers #stillblazin #GetHigher #TheJadeKush #KushCommon #WeedWipes #stonerfam #staylifted","protected":false,"verified":false,"followers_count":1236,"friends_count":1001,"listed_count":14,"favourites_count":4940,"statuses_count":7103,"created_at":"Mon Jan 31 03:25:23 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657505014311575552\/bRY9-6ub.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657505014311575552\/bRY9-6ub.jpg","profile_background_tile":true,"profile_link_color":"292C9E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653889504500187137\/T6NRQF3T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653889504500187137\/T6NRQF3T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245197513\/1444679398","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:45 +0000 2015","id":663727430666989568,"id_str":"663727430666989568","text":"@c21h30o2i @WeedEssence @kookycookie1 \ud83d\ude0a\ud83d\udc9c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726906647437312,"in_reply_to_status_id_str":"663726906647437312","in_reply_to_user_id":245197513,"in_reply_to_user_id_str":"245197513","in_reply_to_screen_name":"c21h30o2i","user":{"id":1976156264,"id_str":"1976156264","name":"Misss'420","screen_name":"MzJayne420","location":"#ukstoner ","url":null,"description":"\u2764\ufe0f Getting High in a bubble somewhere ......\nGoodVibes Only \u270c","protected":false,"verified":false,"followers_count":2723,"friends_count":671,"listed_count":46,"favourites_count":13153,"statuses_count":16832,"created_at":"Sun Oct 20 19:25:16 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5B1E3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/543000730647281664\/JGhBWnDI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/543000730647281664\/JGhBWnDI.jpeg","profile_background_tile":true,"profile_link_color":"D90BD2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661517446923309056\/nXJU_uL4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661517446923309056\/nXJU_uL4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1976156264\/1445158664","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"c21h30o2i","name":"c21h30o2i","id":245197513,"id_str":"245197513","indices":[0,10]},{"screen_name":"WeedEssence","name":"\u2600\ufe0eWeedEssence\u2600\ufe0e","id":3084112796,"id_str":"3084112796","indices":[11,23]},{"screen_name":"kookycookie1","name":"kookycookie","id":3239547076,"id_str":"3239547076","indices":[24,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MzJayne420","name":"Misss'420","id":1976156264,"id_str":"1976156264","indices":[3,14]},{"screen_name":"c21h30o2i","name":"c21h30o2i","id":245197513,"id_str":"245197513","indices":[16,26]},{"screen_name":"WeedEssence","name":"\u2600\ufe0eWeedEssence\u2600\ufe0e","id":3084112796,"id_str":"3084112796","indices":[27,39]},{"screen_name":"kookycookie1","name":"kookycookie","id":3239547076,"id_str":"3239547076","indices":[40,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080111665"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113607168,"id_str":"663728211113607168","text":"\u0627\u0644\u0644\u0647\u0645 \u0622\u062a\u0646\u0627 \u0641\u064a \u0627\u0644\u062f\u0646\u064a\u0627 \u062d\u0633\u0646\u0629 \u0648 \u0641\u064a \u0627\u0644\u0622\u062e\u0631\u0629 \u062d\u0633\u0646\u0629 \u0648 \u0642\u0646\u0627 \u0639\u0630\u0627\u0628 \u0627\u0644\u0646\u0627\u0631\nhttps:\/\/t.co\/RfSButRf8K","source":"\u003ca href=\"http:\/\/7snah.info\" rel=\"nofollow\"\u003e\u062d\u0633\u0651\u064b\u0646\u0627\u062a\u0651\u064c\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237557660,"id_str":"2237557660","name":"\u0623\u0634\u064e\u0640\u0648\u0627\u0642 \u0628\u0640\u0627\u0634\u0640\u0627..","screen_name":"shgawi1991","location":null,"url":null,"description":"\u200f\u0633\u0648\u0641 \u064a\u0627\u062a\u064a \u064a\u0648\u0645 \u0644\u0646 \u0627\u0643\u0648\u0646 \u0645\u0639\u0643\u0645 \u0648\u0633\u0648\u0641 \u062a\u062f\u062e\u0644\u0648\u0646 \u0644 \u062a\u0642\u0631\u0626\u0648\u0646 \u0645\u0627\u0643\u062a\u0628 \u0647\u0646\u0627 \u0641\u0627\u0646 \u0648\u062c\u062f\u062a\u0645 \u0645\u0627 \u064a\u0624\u062c\u0631\u0646\u064a \u0627\u0646\u0634\u0631\u0648\u0647 ..\u0648\u0627\u0646 \u0648\u062c\u062f\u062a\u0645 \u0645\u0627 \u064a\u0624\u062b\u0645\u0646\u064a \u0623\u062a\u0631\u0643\u0648\u0647","protected":false,"verified":false,"followers_count":527,"friends_count":868,"listed_count":0,"favourites_count":5223,"statuses_count":14504,"created_at":"Sun Dec 22 05:13:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619217920724455424\/1EkcFZUQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619217920724455424\/1EkcFZUQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2237557660\/1391547058","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RfSButRf8K","expanded_url":"http:\/\/7snah.info","display_url":"7snah.info","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109376000,"id_str":"663728211109376000","text":"@DaluizDl bye azreen. gnite\ud83d\ude2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727089107865600,"in_reply_to_status_id_str":"663727089107865600","in_reply_to_user_id":3183649344,"in_reply_to_user_id_str":"3183649344","in_reply_to_screen_name":"DaluizDl","user":{"id":986037822,"id_str":"986037822","name":"iann.","screen_name":"_nurfadhlin","location":"y","url":null,"description":"segala-galanya adalah milik Allah. \ndoakan Nur Fadhlin berjaya dunia dan akhirat. amin\n\n \n\n\n\n\n\n\n.\u2708maldives","protected":false,"verified":false,"followers_count":471,"friends_count":383,"listed_count":0,"favourites_count":260,"statuses_count":2382,"created_at":"Mon Dec 03 06:18:49 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108252608\/5ddfeec4e769131f0472ae1ae28ee65d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108252608\/5ddfeec4e769131f0472ae1ae28ee65d.jpeg","profile_background_tile":true,"profile_link_color":"7109E8","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662535956101074944\/czfkEWq5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662535956101074944\/czfkEWq5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/986037822\/1443237965","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DaluizDl","name":"Reen_","id":3183649344,"id_str":"3183649344","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130355712,"id_str":"663728211130355712","text":"\u3042\u3068\u3061\u3087\u3063\u3068\uff01 https:\/\/t.co\/6P9vUf9lvy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936871890,"id_str":"2936871890","name":"\u9065\u96c5@\u3053\u3068\u308a(\u30fb\uff18\u30fb)\u66dc\uff89\uff7c\u679c\u5357\u63a8\u3057","screen_name":"masa_18051174","location":"Angeli\u533a Angel","url":null,"description":"\u9065\u96c5\u3068\u66f8\u3044\u3066\u3088\u3046\u304c\u3068\u8aad\u307f\u307e\u3059(o^8^o) \u3044\u308d\u3093\u306a\u30a2\u30cb\u30e1\u304c\u597d\u304d\u3067\u3059\uff01\u4e00\u756a\u306f\u30e9\u30d6\u30e9\u30a4\u30d6\u3067\u3059\uff57\n\u03bc's\u3067\u306f\u3053\u3068\u308a\u63a8\u3057(\u30fb\uff18\u30fb)Aqours\u3067\u306f\u66dc\u3061\u3083\u3093\u3068\u679c\u5357\u3061\u3083\u3093\u63a8\u3057\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u3044\u307e\u305b\u3093\uff01\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\u306e\u65b9\u3082\u305d\u3046\u3067\u306a\u3044\u65b9\u3082\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff01\u30d5\u30a9\u30ed\u30d0\u9045\u304f\u306a\u308b\u304b\u3082\u3067\u3059\uff01\u30b9\u30af\u30d5\u30a7\u30b9:922515552","protected":false,"verified":false,"followers_count":268,"friends_count":348,"listed_count":2,"favourites_count":371,"statuses_count":408,"created_at":"Sat Dec 20 08:45:58 +0000 2014","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659340392706387968\/6gcE6Ea__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659340392706387968\/6gcE6Ea__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936871890\/1446732820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727655078920193,"quoted_status_id_str":"663727655078920193","quoted_status":{"created_at":"Mon Nov 09 14:39:39 +0000 2015","id":663727655078920193,"id_str":"663727655078920193","text":"\u300e\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\u30b5\u30f3\u30b7\u30e3\u30a4\u30f3!!\u300f\u30c8\u30ea\u30aa\u30e6\u30cb\u30c3\u30c8\u6295\u7968\u306f\u672c\u65e523\uff1a59\u307e\u3067\u3067\u3059\uff01\nhttps:\/\/t.co\/MMXEpvBQrs \n#lovelive https:\/\/t.co\/s67axQzfEY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153415289,"id_str":"153415289","name":"\u96fb\u6483G's magazine\u7de8\u96c6\u90e8","screen_name":"gs_magazine","location":"\u6771\u4eac\u90fd \u5343\u4ee3\u7530\u533a","url":"http:\/\/gs.dengeki.com\/","description":"\u25cf\u96fb\u6483G's magazine\u306e\u60c5\u5831\u3092\u767a\u4fe1\u3059\u308b\u30cb\u30e5\r\n\u30fc\u30b9\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u6bce\u53f7\u306e\u7279\u96c6\u60c5\u5831\u30fb\u516c\u5f0f\r\n\u30d6\u30ed\u30b0\u66f4\u65b0\u60c5\u5831\u306a\u3069\u3092\u4e2d\u5fc3\u306b\u7de8\u96c6\u90e8\u54e1\u304c\u8272\r\n\u3005\u3068\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u3014\u6ce8\u610f\u3015\u30c4\u30a4\u30c3\u30bf\u30fc\u3067\u306e\u500b\u5225\u8fd4\u4fe1\r\n\u306f\u3057\u3066\u3044\u307e\u305b\u3093\u306e\u3067\u3001\u76f4\u63a5\u306e\u304a\u554f\u3044\u5408\u308f\u305b\u306f\r\n\u3053\u3061\u3089\u3078\u304a\u9858\u3044\u3057\u307e\u3059 http:\/\/bit.ly\/a28OUx","protected":false,"verified":false,"followers_count":33774,"friends_count":320,"listed_count":1078,"favourites_count":1,"statuses_count":4731,"created_at":"Tue Jun 08 13:56:43 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFEDEF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/124350958\/wall.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/124350958\/wall.jpg","profile_background_tile":false,"profile_link_color":"FF7094","profile_sidebar_border_color":"FF91AD","profile_sidebar_fill_color":"FFDBE4","profile_text_color":"785F68","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/971182064\/icon_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/971182064\/icon_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lovelive","indices":[64,73]}],"urls":[{"url":"https:\/\/t.co\/MMXEpvBQrs","expanded_url":"http:\/\/gs.dengeki.com\/news\/49996\/","display_url":"gs.dengeki.com\/news\/49996\/","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":663727653350838273,"id_str":"663727653350838273","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyL2UkAEq1gV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyL2UkAEq1gV.jpg","url":"https:\/\/t.co\/s67axQzfEY","display_url":"pic.twitter.com\/s67axQzfEY","expanded_url":"http:\/\/twitter.com\/gs_magazine\/status\/663727655078920193\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727653350838273,"id_str":"663727653350838273","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIyL2UkAEq1gV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIyL2UkAEq1gV.jpg","url":"https:\/\/t.co\/s67axQzfEY","display_url":"pic.twitter.com\/s67axQzfEY","expanded_url":"http:\/\/twitter.com\/gs_magazine\/status\/663727655078920193\/photo\/1","type":"photo","sizes":{"large":{"w":300,"h":300,"resize":"fit"},"medium":{"w":300,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":300,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6P9vUf9lvy","expanded_url":"https:\/\/twitter.com\/gs_magazine\/status\/663727655078920193","display_url":"twitter.com\/gs_magazine\/st\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113545728,"id_str":"663728211113545728","text":"RT @B1A4_CNU: \ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663718714,"id_str":"1663718714","name":"LUV BeforE","screen_name":"rlagkwjd19","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":13,"listed_count":0,"favourites_count":2,"statuses_count":541,"created_at":"Sun Aug 11 23:52:59 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589051628893810688\/hncjStE9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589051628893810688\/hncjStE9_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728098232238080,"id_str":"663728098232238080","text":"\ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187806925,"id_str":"187806925","name":"\uc2e0\ub3d9\uc6b0","screen_name":"B1A4_CNU","location":null,"url":null,"description":"Hello~ I'm C-NU","protected":false,"verified":true,"followers_count":668756,"friends_count":51,"listed_count":8493,"favourites_count":27,"statuses_count":448,"created_at":"Tue Sep 07 05:37:35 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187806925\/1357579369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":186,"favorite_count":184,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[47,54]},{"text":"B1A4","indices":[55,60]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[61,68]},{"text":"B1A4","indices":[69,74]}],"urls":[],"user_mentions":[{"screen_name":"B1A4_CNU","name":"\uc2e0\ub3d9\uc6b0","id":187806925,"id_str":"187806925","indices":[3,12]}],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211130318848,"id_str":"663728211130318848","text":"RT @mouyamoya: \u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5 https:\/\/t.co\/mlFtr9aDhH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2572278084,"id_str":"2572278084","name":"\u307b\u306a\u307f","screen_name":"shibu_hona504","location":"\u5d50\u3068\u540c\u3058\u7a7a\u306e\u4e0b","url":null,"description":"Naganan\uff13-\uff12\u2764\ufe0f\u5973\u3070\u308c\u5f15\u9000\u26be\ufe0f\u91ce\u7403\u597d\u304d\uff01 \u300aLife is hard \u3060\u304b\u3089 Happy\u300b.................\u300a\u261bA to the R A S H I\u261a\u300b","protected":false,"verified":false,"followers_count":160,"friends_count":132,"listed_count":1,"favourites_count":1214,"statuses_count":3525,"created_at":"Tue Jun 17 05:34:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663266721399083008\/nDZXoe5O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663266721399083008\/nDZXoe5O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2572278084\/1446814372","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:12:45 +0000 2015","id":663690686890246144,"id_str":"663690686890246144","text":"\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5\n\u3010\u901f\u5831\u3011\u6b21\u306b\u6d41\u884c\u308b\u306e\u306f\u307b\u3063\u307a\u30ae\u30e5 https:\/\/t.co\/mlFtr9aDhH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2601377516,"id_str":"2601377516","name":"\u306a\u3093\u306e\u3063\u3002","screen_name":"mouyamoya","location":null,"url":null,"description":"follow\u3057\u3066\u305e\u3044\u305e\u3044\u305e\u3044","protected":false,"verified":false,"followers_count":213,"friends_count":161,"listed_count":0,"favourites_count":170,"statuses_count":208,"created_at":"Thu Jul 03 09:43:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/598833154137333760\/ZyNBizc7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/598833154137333760\/ZyNBizc7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2601377516\/1431608107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":239,"favorite_count":305,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663690630862761985,"id_str":"663690630862761985","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","url":"https:\/\/t.co\/mlFtr9aDhH","display_url":"pic.twitter.com\/mlFtr9aDhH","expanded_url":"http:\/\/twitter.com\/mouyamoya\/status\/663690686890246144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":556,"resize":"fit"},"medium":{"w":600,"h":325,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663690630862761985,"id_str":"663690630862761985","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","url":"https:\/\/t.co\/mlFtr9aDhH","display_url":"pic.twitter.com\/mlFtr9aDhH","expanded_url":"http:\/\/twitter.com\/mouyamoya\/status\/663690686890246144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":556,"resize":"fit"},"medium":{"w":600,"h":325,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mouyamoya","name":"\u306a\u3093\u306e\u3063\u3002","id":2601377516,"id_str":"2601377516","indices":[3,13]}],"symbols":[],"media":[{"id":663690630862761985,"id_str":"663690630862761985","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","url":"https:\/\/t.co\/mlFtr9aDhH","display_url":"pic.twitter.com\/mlFtr9aDhH","expanded_url":"http:\/\/twitter.com\/mouyamoya\/status\/663690686890246144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":556,"resize":"fit"},"medium":{"w":600,"h":325,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"}},"source_status_id":663690686890246144,"source_status_id_str":"663690686890246144","source_user_id":2601377516,"source_user_id_str":"2601377516"}]},"extended_entities":{"media":[{"id":663690630862761985,"id_str":"663690630862761985","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXnHMVUcAEKTq2.jpg","url":"https:\/\/t.co\/mlFtr9aDhH","display_url":"pic.twitter.com\/mlFtr9aDhH","expanded_url":"http:\/\/twitter.com\/mouyamoya\/status\/663690686890246144\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":556,"resize":"fit"},"medium":{"w":600,"h":325,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":184,"resize":"fit"}},"source_status_id":663690686890246144,"source_status_id_str":"663690686890246144","source_user_id":2601377516,"source_user_id_str":"2601377516"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111664"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109384192,"id_str":"663728211109384192","text":"@numero086 \n\u30a2\u30a6\u30f3\u30fb\u30b5\u30fc\u30fb\u30b9\u30fc\u30c1\u30fc\u3055\u3093\u306f\u3084\u308b\u306e\u306b\u306d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727941952507905,"in_reply_to_status_id_str":"663727941952507905","in_reply_to_user_id":1483947938,"in_reply_to_user_id_str":"1483947938","in_reply_to_screen_name":"numero086","user":{"id":2777506506,"id_str":"2777506506","name":"\u305f\u304f\u306b\u3083\u3093","screen_name":"hige19821013","location":"\u6771\u4eac\u90fd \u65b0\u5bbf\u533a","url":null,"description":"\u305f\u304f\u306b\u3083\u3093\u3068\u4eca\u307e\u3067\u7e4b\u304c\u3063\u3066\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u306b\u3083\u3093\u3002 \u4f1a\u3044\u306b\u884c\u3051\u305d\u3046\u3067\u306a\u304b\u306a\u304b\u4f1a\u3048\u306a\u3044\u30a2\u30a4\u30c9\u30eb\u3002\u7126\u3089\u3057\u3059\u3002\u5927\u5207\u306a\u30af\u30de\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":369,"friends_count":352,"listed_count":2,"favourites_count":73,"statuses_count":36864,"created_at":"Fri Aug 29 01:44:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652282621964124160\/YK-PdT6X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652282621964124160\/YK-PdT6X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2777506506\/1441168682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"numero086","name":"\u3082\u3082\u3052","id":1483947938,"id_str":"1483947938","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111659"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211109416960,"id_str":"663728211109416960","text":"@yutoLoveJUMPgm1 \n\u3042\u305f\u308a\u307e\u3048~\u2661\n\u305d\u3046\u3060\u306d\uff01\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663201741425410050,"in_reply_to_status_id_str":"663201741425410050","in_reply_to_user_id":2945956638,"in_reply_to_user_id_str":"2945956638","in_reply_to_screen_name":"yutoLoveJUMPgm1","user":{"id":3793466359,"id_str":"3793466359","name":"(\u30fb\u0434\u30fb\u3042\u308a\u3068\u3082)\u2661\u30ea\u30d7\u9045\u3081\u2026\u2026\u2026\u3002","screen_name":"D_aiki_loove","location":"\u5927\u3061\u3083\u3093\uff81\uff6d\uff73\uff84\uff9e\uff78\u75c7\u72b6\u306f\u6df1\u523b\u305d\u3046\u2026\u2661\/\/\/","url":null,"description":"JUMP\u306b\u3057\u304b\u76ee\u304c\u3042\u308a\u307e\u305b\u3093\u2661\u2704 \u2508\u9ad82\u3067\u3059\u2508\u2704 \u300a\u30ae\u30e3\u30c3\u30d7\u840c\u3048\u3053\u3068\uff01\u5927\u3061\u3083\u3093\u304c\u5927\u597d\u304d\u3067\u3059\u2661\u300b \u6fc3\u3044\u7d61\u307f\u5c3e\u3063\u6167\u306a\u3072\u3068\uff01\u305f\u3060\u3044\u307e\u6a21\u7d22\u4e2d\u3067\u3059\u266a\u030a\u0308\u266a\u0306\u0308 \u2704\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2508\u2704","protected":false,"verified":false,"followers_count":325,"friends_count":362,"listed_count":3,"favourites_count":712,"statuses_count":229,"created_at":"Mon Oct 05 15:23:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651056004004577281\/s7_1eBNu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651056004004577281\/s7_1eBNu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3793466359\/1446649500","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yutoLoveJUMPgm1","name":" \u2665\u30e6\u30c8\u30df\u30b5\u2665","id":2945956638,"id_str":"2945956638","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111659"} +{"delete":{"status":{"id":643521128175149056,"id_str":"643521128175149056","user_id":1632765264,"user_id_str":"1632765264"},"timestamp_ms":"1447080111779"}} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113738240,"id_str":"663728211113738240","text":"RT @HarimadhoHari: #BhartiShriji --- Optimum benifits of Dhanteras & Narak Chaturdashi https:\/\/t.co\/QMKFoJG09V @bhartishri... https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150407597,"id_str":"2150407597","name":"Hariom Bhanwariya","screen_name":"Hariom525","location":"sheopur","url":"http:\/\/www.hariombhanwariya.com","description":"SABKA MANGAL SABKA BHALA","protected":false,"verified":false,"followers_count":950,"friends_count":292,"listed_count":12,"favourites_count":11539,"statuses_count":74760,"created_at":"Wed Oct 23 06:49:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000637663011\/bb85a6e505f81af58f21027b3ffd284c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000637663011\/bb85a6e505f81af58f21027b3ffd284c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150407597\/1425885861","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:13 +0000 2015","id":663725283544047616,"id_str":"663725283544047616","text":"#BhartiShriji --- Optimum benifits of Dhanteras & Narak Chaturdashi https:\/\/t.co\/QMKFoJG09V @bhartishri... https:\/\/t.co\/zm42KglWX6","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2225326586,"id_str":"2225326586","name":"hari gopal","screen_name":"HarimadhoHari","location":null,"url":null,"description":"A socialist , loves Indian culture","protected":false,"verified":false,"followers_count":1018,"friends_count":805,"listed_count":5,"favourites_count":2022,"statuses_count":11586,"created_at":"Sun Dec 01 17:41:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617021238448254977\/LP24tZfv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617021238448254977\/LP24tZfv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2225326586\/1386665959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"BhartiShriji","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/QMKFoJG09V","expanded_url":"https:\/\/youtu.be\/mzlnNwcaiws","display_url":"youtu.be\/mzlnNwcaiws","indices":[74,97]},{"url":"https:\/\/t.co\/zm42KglWX6","expanded_url":"http:\/\/fb.me\/4fwr0bsVE","display_url":"fb.me\/4fwr0bsVE","indices":[113,136]}],"user_mentions":[{"screen_name":"bhartishri","name":"Shri Bharti Shriji","id":888236114,"id_str":"888236114","indices":[98,109]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BhartiShriji","indices":[19,32]}],"urls":[{"url":"https:\/\/t.co\/QMKFoJG09V","expanded_url":"https:\/\/youtu.be\/mzlnNwcaiws","display_url":"youtu.be\/mzlnNwcaiws","indices":[93,116]},{"url":"https:\/\/t.co\/zm42KglWX6","expanded_url":"http:\/\/fb.me\/4fwr0bsVE","display_url":"fb.me\/4fwr0bsVE","indices":[143,144]}],"user_mentions":[{"screen_name":"HarimadhoHari","name":"hari gopal","id":2225326586,"id_str":"2225326586","indices":[3,17]},{"screen_name":"bhartishri","name":"Shri Bharti Shriji","id":888236114,"id_str":"888236114","indices":[117,128]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211113566208,"id_str":"663728211113566208","text":"@J_TEAKWOONN \/colok matanya\/ mampus","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727151955464192,"in_reply_to_status_id_str":"663727151955464192","in_reply_to_user_id":2684199248,"in_reply_to_user_id_str":"2684199248","in_reply_to_screen_name":"J_TEAKWOONN","user":{"id":3232337339,"id_str":"3232337339","name":"haxea","screen_name":"hanii_exid","location":"anu.favor.armydope","url":"https:\/\/instagram.com\/ahnhani_92\/","description":"Ahn Hee Yeon (\uc548\ud76c\uc5f0) a.k.a Hani (\ud558\ub2c8) Exid. KeNi w\/ @SC_LKEN","protected":false,"verified":false,"followers_count":1081,"friends_count":1085,"listed_count":2,"favourites_count":170,"statuses_count":11027,"created_at":"Mon May 04 01:46:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609339438682935296\/GUSmreJ-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609339438682935296\/GUSmreJ-.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662998784050245632\/nvmfbbFR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662998784050245632\/nvmfbbFR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232337339\/1446040653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"J_TEAKWOONN","name":"VIXX_LEO","id":2684199248,"id_str":"2684199248","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080111660"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211126124548,"id_str":"663728211126124548","text":"I respect those that tell me the truth, no matter how hard it is.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":262525253,"id_str":"262525253","name":"Von de Vera","screen_name":"vondevera","location":"Philippines","url":"http:\/\/facebook.com\/von.devera","description":"Gamer | Have faith in God | Striving for Greatness | Star Hotshots | BSITWMA | FEU Tech | Future Programmer","protected":false,"verified":false,"followers_count":4492,"friends_count":1565,"listed_count":4,"favourites_count":300,"statuses_count":2042,"created_at":"Tue Mar 08 06:15:06 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663268460202344448\/8co92XhR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663268460202344448\/8co92XhR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/262525253\/1399787176","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111663"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211126185984,"id_str":"663728211126185984","text":"Visit https:\/\/t.co\/jdv9TOuyCk for more BTS \ud83d\ude09 #JaDineInternationalOFC https:\/\/t.co\/hvbOjIoNLf","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3692663294,"id_str":"3692663294","name":"JDI_Manila OFC","screen_name":"JadineIntl_Yara","location":null,"url":"https:\/\/www.facebook.com\/JaDine-International-OFC-Manila-Chapter-163598953986125\/","description":"JaDine International OFC - MANILA Chapter. Follow us on IG: https:\/\/t.co\/U9uPqreiUX\nJoin our fun team! form: \nJaDine Int'l OFC https:\/\/t.co\/RV089YRRDi","protected":false,"verified":false,"followers_count":126,"friends_count":235,"listed_count":0,"favourites_count":328,"statuses_count":2876,"created_at":"Sat Sep 26 12:47:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663720361364590592\/Mmo9TqEg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663720361364590592\/Mmo9TqEg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3692663294\/1447078239","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JaDineInternationalOFC","indices":[45,68]}],"urls":[{"url":"https:\/\/t.co\/jdv9TOuyCk","expanded_url":"http:\/\/otwalista.com","display_url":"otwalista.com","indices":[6,29]},{"url":"https:\/\/t.co\/hvbOjIoNLf","expanded_url":"https:\/\/instagram.com\/p\/93igaFonjy\/","display_url":"instagram.com\/p\/93igaFonjy\/","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111663"} +{"delete":{"status":{"id":662283378255761409,"id_str":"662283378255761409","user_id":2274081715,"user_id_str":"2274081715"},"timestamp_ms":"1447080111819"}} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211122102273,"id_str":"663728211122102273","text":"#ClimateChange is putting #Hawaii's #Coralreefs in #Danger https:\/\/t.co\/aPYpOVUMIL #Texas #Dallas #Nashville #Tennessee #Indiana #Chicago","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441214858,"id_str":"441214858","name":"Jerome McCollom","screen_name":"HumanistPundit","location":"Eppur si muove-Keith Law ","url":"http:\/\/jamht1972.tumblr.com\/","description":"#Humanist, #atheist, social #libertarian.. Interested in #reason more than dogma. Also, let's end the Damn #DrugWar","protected":false,"verified":false,"followers_count":1330,"friends_count":1037,"listed_count":576,"favourites_count":861,"statuses_count":76076,"created_at":"Mon Dec 19 21:26:06 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573246855116537857\/2aAjVn66_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573246855116537857\/2aAjVn66_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441214858\/1417981556","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ClimateChange","indices":[0,14]},{"text":"Hawaii","indices":[26,33]},{"text":"Coralreefs","indices":[36,47]},{"text":"Danger","indices":[51,58]},{"text":"Texas","indices":[83,89]},{"text":"Dallas","indices":[90,97]},{"text":"Nashville","indices":[98,108]},{"text":"Tennessee","indices":[109,119]},{"text":"Indiana","indices":[120,128]},{"text":"Chicago","indices":[129,137]}],"urls":[{"url":"https:\/\/t.co\/aPYpOVUMIL","expanded_url":"http:\/\/dld.bz\/dY8Pg","display_url":"dld.bz\/dY8Pg","indices":[59,82]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080111662"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211105189888,"id_str":"663728211105189888","text":"\u3044\u3061\u306d\u3093\u307e\u3048 https:\/\/t.co\/D57lkpstGn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1417247130,"id_str":"1417247130","name":"(v \u30fbx\u30fb)\u6625\u539f\u3059\u306e\u3053","screen_name":"sunozou1","location":"\u3042\u30fc\u304f\u3059\u3057\u3063\u3077\/\u30ae\u30e7\u30fc\u30d5\u9bd6","url":"http:\/\/twpf.jp\/sunozou1","description":"\u7d75\u3092\u63cf\u304f\u304b\u3082\u3057\u308c\u306a\u3044\u30a2\u30fc\u30af\u30b9\u3067\u5be9\u795e\u8005\u3067\u63d0\u7763\u3002\u30ed\u30ea\u30b3\u30f3\u3068\u30b7\u30e7\u30bf\u30b3\u30f3\u306a\u306e\u3067\u305d\u306e\u8fba\u5bdf\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u3084\u3084\u8150\u308a\u6c17\u5473\u306a\u306e\u3067\u6c17\u3092\u3064\u3051\u3066\u304f\u3060\u3055\u3044\u3002\n\u30bd\u30b7\u30e3\u30b2\u3082\u305d\u3082\u305d\u98df\u3079\u3066\u751f\u304d\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":595,"friends_count":737,"listed_count":47,"favourites_count":1064,"statuses_count":147279,"created_at":"Fri May 10 05:45:23 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660480982395457536\/9Wi5-XLv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660480982395457536\/9Wi5-XLv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1417247130\/1410528380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728201537990656,"id_str":"663728201537990656","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSGAUsAAlzBj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSGAUsAAlzBj.jpg","url":"https:\/\/t.co\/D57lkpstGn","display_url":"pic.twitter.com\/D57lkpstGn","expanded_url":"http:\/\/twitter.com\/sunozou1\/status\/663728211105189888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":480,"h":854,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":854,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728201537990656,"id_str":"663728201537990656","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSGAUsAAlzBj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSGAUsAAlzBj.jpg","url":"https:\/\/t.co\/D57lkpstGn","display_url":"pic.twitter.com\/D57lkpstGn","expanded_url":"http:\/\/twitter.com\/sunozou1\/status\/663728211105189888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":480,"h":854,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":854,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080111658"} +{"created_at":"Mon Nov 09 14:41:51 +0000 2015","id":663728211101130752,"id_str":"663728211101130752","text":"VOY A ESTAR SIGUIENDO A TODOS LOS QUE ME SIGAN HASTA LAS 11:00!\u2665\u2665\ud83d\ude0d\ud83d\ude4a\n#LunesDeGanarSegidores https:\/\/t.co\/g4qhNclfVX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3082448013,"id_str":"3082448013","name":"Robin Rodas S.","screen_name":"robinro67","location":"Lima, Peru","url":null,"description":"Peruano de Corazon !! \u2764 Yo soy como soy, si te gusta bien y si no tambi\u00e9n\u270c\ufe0f","protected":false,"verified":false,"followers_count":646,"friends_count":424,"listed_count":1,"favourites_count":491,"statuses_count":968,"created_at":"Mon Mar 09 20:57:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658763259831570432\/CHq7_xUI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658763259831570432\/CHq7_xUI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3082448013\/1443831773","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LunesDeGanarSegidores","indices":[68,90]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728199038316544,"id_str":"663728199038316544","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR8sWsAA8p4_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR8sWsAA8p4_.jpg","url":"https:\/\/t.co\/g4qhNclfVX","display_url":"pic.twitter.com\/g4qhNclfVX","expanded_url":"http:\/\/twitter.com\/robinro67\/status\/663728211101130752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728199038316544,"id_str":"663728199038316544","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJR8sWsAA8p4_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJR8sWsAA8p4_.jpg","url":"https:\/\/t.co\/g4qhNclfVX","display_url":"pic.twitter.com\/g4qhNclfVX","expanded_url":"http:\/\/twitter.com\/robinro67\/status\/663728211101130752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080111657"} +{"delete":{"status":{"id":663703305349132288,"id_str":"663703305349132288","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080112259"}} +{"delete":{"status":{"id":663728114669780992,"id_str":"663728114669780992","user_id":3258696481,"user_id_str":"3258696481"},"timestamp_ms":"1447080112563"}} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215316410369,"id_str":"663728215316410369","text":"RT @frasesdegoticos: Fome de uns 50 g\u00f3ticos q dorme no cemiterio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":254170785,"id_str":"254170785","name":"aline","screen_name":"ali_nine","location":"curitiba\/Brasil","url":null,"description":"Can't Keep my Hands to Myself No Matter how Hard i'm trying to I want you all to myself (Vote #PCAs) @selenagomez","protected":false,"verified":false,"followers_count":2144,"friends_count":2053,"listed_count":8,"favourites_count":4141,"statuses_count":24120,"created_at":"Fri Feb 18 19:11:09 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476494085188907008\/dEKRIZvY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476494085188907008\/dEKRIZvY.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656500449516875776\/IvdN9vx0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656500449516875776\/IvdN9vx0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/254170785\/1444393237","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 21:51:08 +0000 2015","id":663111467361828864,"id_str":"663111467361828864","text":"Fome de uns 50 g\u00f3ticos q dorme no cemiterio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2904243298,"id_str":"2904243298","name":"Trevoso","screen_name":"frasesdegoticos","location":"cemiterio","url":null,"description":"odeio todos ao meu redor","protected":false,"verified":false,"followers_count":11256,"friends_count":8,"listed_count":13,"favourites_count":21,"statuses_count":94,"created_at":"Wed Dec 03 19:59:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/567883590717820928\/2TyWNptf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/567883590717820928\/2TyWNptf.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662662164356931584\/9wEWv1aL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662662164356931584\/9wEWv1aL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2904243298\/1424228768","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":25,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"frasesdegoticos","name":"Trevoso","id":2904243298,"id_str":"2904243298","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112662"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215312211969,"id_str":"663728215312211969","text":"RT @fightfortinita: @candejotaesse jajajaja tarada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2151628352,"id_str":"2151628352","name":"can","screen_name":"candejotaesse","location":"boca juniors","url":null,"description":"QUE HERMOSO ES SER BOSTERO LA CONCHA DE LA LORAAAA","protected":false,"verified":false,"followers_count":312,"friends_count":493,"listed_count":0,"favourites_count":5030,"statuses_count":25658,"created_at":"Wed Oct 23 20:22:21 +0000 2013","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/632049194325397504\/JAvBaoA3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/632049194325397504\/JAvBaoA3.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647904907073323008\/3Cdgy89o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647904907073323008\/3Cdgy89o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2151628352\/1446940688","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728184022667264,"id_str":"663728184022667264","text":"@candejotaesse jajajaja tarada","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728045157675008,"in_reply_to_status_id_str":"663728045157675008","in_reply_to_user_id":2151628352,"in_reply_to_user_id_str":"2151628352","in_reply_to_screen_name":"candejotaesse","user":{"id":1157401760,"id_str":"1157401760","name":"\u200f\ufe0f\u200f\ufe0f","screen_name":"fightfortinita","location":"hoslen - jacquossi - milo","url":null,"description":"cambiaste con tu amor mi vida entera","protected":false,"verified":false,"followers_count":1181,"friends_count":290,"listed_count":3,"favourites_count":1953,"statuses_count":59831,"created_at":"Thu Feb 07 15:08:26 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663049882513629184\/CUWn5i5_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663049882513629184\/CUWn5i5_.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663495866909646850\/USMX5aDO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663495866909646850\/USMX5aDO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1157401760\/1447024930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"candejotaesse","name":"can","id":2151628352,"id_str":"2151628352","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fightfortinita","name":"\u200f\ufe0f\u200f\ufe0f","id":1157401760,"id_str":"1157401760","indices":[3,18]},{"screen_name":"candejotaesse","name":"can","id":2151628352,"id_str":"2151628352","indices":[20,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112661"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333187584,"id_str":"663728215333187584","text":"RT @NicolodiDaria: @LuciaTassan @AdrianaCioci Si'.Non sono tanto belle perche'ho uno smarrphone cosi'cosi'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2257121711,"id_str":"2257121711","name":"Lucia Tassan Mangina","screen_name":"LuciaTassan","location":"Toscana, Italia","url":null,"description":"Dopo aver escluso l'impossibile ci\u00f2 che resta, per quanto improbabile, \u00e8 la verit\u00e0. (A.Conan Doyle) #ArtLover #Catlover politica q.b.","protected":false,"verified":false,"followers_count":14191,"friends_count":13988,"listed_count":310,"favourites_count":108178,"statuses_count":126470,"created_at":"Wed Jan 01 23:09:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604835988880412672\/BAObx28m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604835988880412672\/BAObx28m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2257121711\/1433039110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:51:33 +0000 2015","id":663700451951554560,"id_str":"663700451951554560","text":"@LuciaTassan @AdrianaCioci Si'.Non sono tanto belle perche'ho uno smarrphone cosi'cosi'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663698005116239872,"in_reply_to_status_id_str":"663698005116239872","in_reply_to_user_id":2257121711,"in_reply_to_user_id_str":"2257121711","in_reply_to_screen_name":"LuciaTassan","user":{"id":2341649206,"id_str":"2341649206","name":"Daria Nicolodi","screen_name":"NicolodiDaria","location":null,"url":"http:\/\/page.is\/daria-nicolodi","description":"fiorentina di Bellosguardo","protected":false,"verified":false,"followers_count":6367,"friends_count":393,"listed_count":152,"favourites_count":88128,"statuses_count":86093,"created_at":"Thu Feb 13 17:04:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552569115458957312\/cnDwM5XU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552569115458957312\/cnDwM5XU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2341649206\/1419202959","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LuciaTassan","name":"Lucia Tassan Mangina","id":2257121711,"id_str":"2257121711","indices":[0,12]},{"screen_name":"AdrianaCioci","name":"Adriana Evangelisti","id":1913671255,"id_str":"1913671255","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NicolodiDaria","name":"Daria Nicolodi","id":2341649206,"id_str":"2341649206","indices":[3,17]},{"screen_name":"LuciaTassan","name":"Lucia Tassan Mangina","id":2257121711,"id_str":"2257121711","indices":[19,31]},{"screen_name":"AdrianaCioci","name":"Adriana Evangelisti","id":1913671255,"id_str":"1913671255","indices":[32,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303847936,"id_str":"663728215303847936","text":"RT @DronesUAVs: The New York Times Practically Ignores Shocking Drone War Disclosures https:\/\/t.co\/KYhEeLtn4S https:\/\/t.co\/fBswJd8Rrs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466884805,"id_str":"466884805","name":"Federico Corsale","screen_name":"FedericoCorsale","location":null,"url":null,"description":"Gentleman,Artist,Economist, not necesserely in the same order","protected":false,"verified":false,"followers_count":477,"friends_count":1660,"listed_count":1,"favourites_count":94,"statuses_count":1909,"created_at":"Tue Jan 17 22:09:10 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484059960746475520\/1JGYheG3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484059960746475520\/1JGYheG3_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466884805\/1377728259","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:38:39 +0000 2015","id":663440516088885249,"id_str":"663440516088885249","text":"The New York Times Practically Ignores Shocking Drone War Disclosures https:\/\/t.co\/KYhEeLtn4S https:\/\/t.co\/fBswJd8Rrs","source":"\u003ca href=\"http:\/\/www.rr.com\" rel=\"nofollow\"\u003eRRPostingApp\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3033759889,"id_str":"3033759889","name":"Drones & UAVs","screen_name":"DronesUAVs","location":null,"url":"http:\/\/bit.ly\/1EzBW9Z","description":"Live Content curated by Top Drones and UAVs Influencers","protected":false,"verified":false,"followers_count":3245,"friends_count":2221,"listed_count":41,"favourites_count":0,"statuses_count":4525,"created_at":"Sat Feb 21 01:49:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568950786218921984\/MD8ZDu1o_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568950786218921984\/MD8ZDu1o_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KYhEeLtn4S","expanded_url":"http:\/\/www.rightrelevance.com\/search\/articles\/hero?article=af37d9404f286ba57f19faa005a4bea6db777561&query=drones&taccount=dronesuavs","display_url":"rightrelevance.com\/search\/article\u2026","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663440515493294081,"id_str":"663440515493294081","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","url":"https:\/\/t.co\/fBswJd8Rrs","display_url":"pic.twitter.com\/fBswJd8Rrs","expanded_url":"http:\/\/twitter.com\/DronesUAVs\/status\/663440516088885249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663440515493294081,"id_str":"663440515493294081","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","url":"https:\/\/t.co\/fBswJd8Rrs","display_url":"pic.twitter.com\/fBswJd8Rrs","expanded_url":"http:\/\/twitter.com\/DronesUAVs\/status\/663440516088885249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KYhEeLtn4S","expanded_url":"http:\/\/www.rightrelevance.com\/search\/articles\/hero?article=af37d9404f286ba57f19faa005a4bea6db777561&query=drones&taccount=dronesuavs","display_url":"rightrelevance.com\/search\/article\u2026","indices":[86,109]}],"user_mentions":[{"screen_name":"DronesUAVs","name":"Drones & UAVs","id":3033759889,"id_str":"3033759889","indices":[3,14]}],"symbols":[],"media":[{"id":663440515493294081,"id_str":"663440515493294081","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","url":"https:\/\/t.co\/fBswJd8Rrs","display_url":"pic.twitter.com\/fBswJd8Rrs","expanded_url":"http:\/\/twitter.com\/DronesUAVs\/status\/663440516088885249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663440516088885249,"source_status_id_str":"663440516088885249","source_user_id":3033759889,"source_user_id_str":"3033759889"}]},"extended_entities":{"media":[{"id":663440515493294081,"id_str":"663440515493294081","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUDoj-UcAEsaEU.jpg","url":"https:\/\/t.co\/fBswJd8Rrs","display_url":"pic.twitter.com\/fBswJd8Rrs","expanded_url":"http:\/\/twitter.com\/DronesUAVs\/status\/663440516088885249\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":640,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"}},"source_status_id":663440516088885249,"source_status_id_str":"663440516088885249","source_user_id":3033759889,"source_user_id_str":"3033759889"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333076992,"id_str":"663728215333076992","text":"\u3084\u3070\u5bdd\u3066\u305f\u301c\u7b11\n\u3042\u3068\u5c11\u3057\u3060\u306d\u301c\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":947205139,"id_str":"947205139","name":"\u2661\u2661\u307e \u3042 \u3084","screen_name":"tttklove","location":"\u53cc\u5b50\u3048\u308a\u2661\u9060\u5f81\u2022\u6700\u524d\u30fbmiracle\u2661","url":"http:\/\/twpf.jp\/tttklove","description":"\u305a\u3063\u3068\u4e00\u756a\u2661\u305a\u3063\u3068\u4e00\u9014\u306b\u3002 \u2661@T_IWATA_EX_3JSB \u2661","protected":false,"verified":false,"followers_count":1546,"friends_count":296,"listed_count":29,"favourites_count":8666,"statuses_count":47978,"created_at":"Wed Nov 14 06:45:56 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713084733714432\/uE6btuVV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713084733714432\/uE6btuVV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/947205139\/1446700438","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215308050432,"id_str":"663728215308050432","text":"Daisha be lying \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":243868841,"id_str":"243868841","name":"\u2b55\ufe0f\u303d\ufe0f$","screen_name":"YourFukinFather","location":"919 \/ 21","url":null,"description":"R.I.P My Broski Jaimes !!","protected":false,"verified":false,"followers_count":1184,"friends_count":757,"listed_count":2,"favourites_count":307,"statuses_count":30300,"created_at":"Fri Jan 28 00:17:14 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/725507097\/93193ea85e28777534d4ee96ad733165.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/725507097\/93193ea85e28777534d4ee96ad733165.jpeg","profile_background_tile":true,"profile_link_color":"FF3E03","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FF0091","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663585385893638144\/giJKQuTy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663585385893638144\/giJKQuTy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/243868841\/1447044612","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215308034048,"id_str":"663728215308034048","text":"RT @tonyk2169: https:\/\/t.co\/ZeKyhMOpB8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1361690774,"id_str":"1361690774","name":"ropatrokola","screen_name":"ropatrokola","location":"Espa\u00f1a","url":"http:\/\/ropatrokola.spreadshirt.es\/","description":"TROKOLA T-SHIRT SHOP | LA FORMA FACIL DE COMPRAR CAMISETAS","protected":false,"verified":false,"followers_count":841,"friends_count":1447,"listed_count":156,"favourites_count":0,"statuses_count":109267,"created_at":"Thu Apr 18 11:35:01 +0000 2013","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"72BC23","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/849847851\/48ce411230a1c99122a2f4b040c2dff5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/849847851\/48ce411230a1c99122a2f4b040c2dff5.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3538755319\/4713ed5076f5dfd6fa645d58b542b9c6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3538755319\/4713ed5076f5dfd6fa645d58b542b9c6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1361690774\/1396955578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727699681271808,"id_str":"663727699681271808","text":"https:\/\/t.co\/ZeKyhMOpB8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2530913162,"id_str":"2530913162","name":"sui generis ","screen_name":"tonyk2169","location":" ","url":null,"description":"Beauty and Arsenal. Anti - appeasers and PC media. Self- love is not so vile a sin as self neglecting. Victoria Concordia Crescit","protected":false,"verified":false,"followers_count":6874,"friends_count":6765,"listed_count":74,"favourites_count":13933,"statuses_count":31111,"created_at":"Wed May 28 21:41:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471770889986383872\/dzd77EnF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471770889986383872\/dzd77EnF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2530913162\/1427871997","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727694006378496,"id_str":"663727694006378496","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","url":"https:\/\/t.co\/ZeKyhMOpB8","display_url":"pic.twitter.com\/ZeKyhMOpB8","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727699681271808\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727694006378496,"id_str":"663727694006378496","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","url":"https:\/\/t.co\/ZeKyhMOpB8","display_url":"pic.twitter.com\/ZeKyhMOpB8","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727699681271808\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tonyk2169","name":"sui generis ","id":2530913162,"id_str":"2530913162","indices":[3,13]}],"symbols":[],"media":[{"id":663727694006378496,"id_str":"663727694006378496","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","url":"https:\/\/t.co\/ZeKyhMOpB8","display_url":"pic.twitter.com\/ZeKyhMOpB8","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727699681271808\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727699681271808,"source_status_id_str":"663727699681271808","source_user_id":2530913162,"source_user_id_str":"2530913162"}]},"extended_entities":{"media":[{"id":663727694006378496,"id_str":"663727694006378496","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0jTW4AAklGb.jpg","url":"https:\/\/t.co\/ZeKyhMOpB8","display_url":"pic.twitter.com\/ZeKyhMOpB8","expanded_url":"http:\/\/twitter.com\/tonyk2169\/status\/663727699681271808\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663727699681271808,"source_status_id_str":"663727699681271808","source_user_id":2530913162,"source_user_id_str":"2530913162"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215328862208,"id_str":"663728215328862208","text":"\u4eca\u306e\u81ea\u5206\u306b\u6e80\u8db3\u3057\u3066\u307e\u3059\u304b\uff1f\u4eba\u751f\u5909\u3048\u305f\u3044\u65b9\u3002\u74b0\u5883\u3092\u5909\u3048\u305f\u3044\u65b9\u3002\u4e00\u6b69\u8e0f\u307f\u51fa\u305b\u3070\u5149\u304c\u898b\u3048\u3066\u304d\u307e\u3059\u3002\u3042\u306a\u305f\u306e\u6c7a\u65ad\u3001\u884c\u52d5\u304c\u5922\u3078\u306e\u8fd1\u9053(^ ^)\u2728","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314211180,"id_str":"3314211180","name":"sayu","screen_name":"s_o3blv7","location":null,"url":null,"description":"\u697d\u3057\u3044\u4e8b\u3060\u3044\u3059\u304d\uff013JSB\u2661\u2661BIGLOVE.\u8208\u5473\u672c\u4f4d\u3067\u59cb\u3081\u305f\u666e\u901a\u306e\u793e\u4f1a\u4eba\u3002\u4eba\u751f\u697d\u3057\u3093\u3060\u3082\u3093\u52dd\u3061\uff01\u6bce\u65e5\u540c\u3058\u4e8b\u306e\u7e70\u308a\u8fd4\u3057\u3001\u304a\u91d1\u3082\u6642\u9593\u3082\u4f59\u88d5\u3082\u306a\u3044\u3001\u3001\u305d\u3093\u306a\u751f\u6d3b\u3082\u3046\u7d42\u308f\u308a\uff01\u5973\u6027\u306e\u65b9\u3067\u3082\u5927\u4e08\u592b\u3067\u3059\uff01\u6c7a\u65ad\u3001\u884c\u52d5\u304c\u5922\u306e\u7b2c\u4e00\u6b69\u3002\u8208\u5473\u3042\u308b\u65b9\u9023\u7d61\u4e0b\u3055\u3044\u3002line\u261esayumi0709","protected":false,"verified":false,"followers_count":12345,"friends_count":3557,"listed_count":0,"favourites_count":0,"statuses_count":2641,"created_at":"Thu Aug 13 11:14:06 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658535113274208256\/tQ_xecZ-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658535113274208256\/tQ_xecZ-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314211180\/1443063155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112665"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215320580096,"id_str":"663728215320580096","text":"@jimejimekinrui \u6d41\u3059\u3068\u3053\u308d\u3060\u3063\u305f\u2026\u4f8b\u3048\u3070\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717368535736320,"in_reply_to_status_id_str":"663717368535736320","in_reply_to_user_id":2940228655,"in_reply_to_user_id_str":"2940228655","in_reply_to_screen_name":"jimejimekinrui","user":{"id":2636695604,"id_str":"2636695604","name":"\u305f\u304b","screen_name":"taka20000619","location":"\u6674\u308c\u306e\u56fd \u5ca1\u5c71","url":null,"description":"\u4e2d3 \u97f3\u30b2\u30fc\u2192\u592a\u9f13\u30fbmaimai\u30fb\u30c1\u30e5\u30a6\u30cb\u30ba\u30e0 \u30de\u30a4\u30af\u30e9\u52e2 comico\u2192Relife\u30fb\u30ed\u30c2\u30a6\u30e9\u30fb\u30d1\u30b9\u30c6\u30eb\u30fb\u30ca\u30eb\u30c9\u30de \u81ea\u767a\u3088\u308d \u5909\u306aRT\u3059\u308b\u5974\u306f\u30df\u30e5\u30fc\u30c8 \u30d5\u30a9\u30ed\u30d0\u738780% \u30ea\u30a2\u53cb\u540c\u30af\u30e9@haisun_01","protected":false,"verified":false,"followers_count":72,"friends_count":150,"listed_count":3,"favourites_count":187,"statuses_count":4120,"created_at":"Sun Jul 13 14:00:30 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649917350934810624\/qdqU3ZQ1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649917350934810624\/qdqU3ZQ1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2636695604\/1445515568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jimejimekinrui","name":"\u304f\u308d\u304b\u3073","id":2940228655,"id_str":"2940228655","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112663"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215295299584,"id_str":"663728215295299584","text":"RT @5toqur: \ub374\ub9c8\ub97c \ubcf8 \ub0b4 \uc2ec\uc815 https:\/\/t.co\/aaExQLabYH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957410134,"id_str":"2957410134","name":"\ucc0c\ub7ad","screen_name":"dds062362","location":null,"url":null,"description":"\uadf8\ub9bc\ud2b8\uc717 \uc8fc\/\ub9ac\uac8c\uc774\/J-POP\/\uc18c\ube44\ub7ec\/\ud608\uacc4\uc804\uc120\/\ud398\uc81c\ub4f1\ub4f1 \uc7a1\ub355","protected":false,"verified":false,"followers_count":34,"friends_count":201,"listed_count":9,"favourites_count":440,"statuses_count":3206,"created_at":"Sat Jan 03 15:42:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659759166672666624\/F4ZkA1yi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659759166672666624\/F4ZkA1yi_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:31 +0000 2015","id":663725860071981056,"id_str":"663725860071981056","text":"\ub374\ub9c8\ub97c \ubcf8 \ub0b4 \uc2ec\uc815 https:\/\/t.co\/aaExQLabYH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1181806825,"id_str":"1181806825","name":"\uc0c8\ubcbd","screen_name":"5toqur","location":"http:\/\/toqur.postype.com\/","url":"http:\/\/ask.fm\/day913","description":"\uc7a1\ub355. \ub355\ud6c4\ud55c\uc815 \ud314\uc5b8\ud314\ud504\ub9ac. \uadf8\ub9ac\uace0 \uc2f6\uc740\uac70 \uadf8\ub9bd\ub2c8\ub2e4. \ud604\uc7ac\ub294 \uba54\ub7f0\uc911\uc2ec. \ud638\ubaa8 \ud31d\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":5198,"friends_count":374,"listed_count":66,"favourites_count":7325,"statuses_count":39104,"created_at":"Fri Feb 15 09:47:16 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFD4D4","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605407371284733952\/g-P0WbEz_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605407371284733952\/g-P0WbEz_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1181806825\/1439023473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725857932898304,"id_str":"663725857932898304","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","url":"https:\/\/t.co\/aaExQLabYH","display_url":"pic.twitter.com\/aaExQLabYH","expanded_url":"http:\/\/twitter.com\/5toqur\/status\/663725860071981056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":232,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"large":{"w":350,"h":232,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725857932898304,"id_str":"663725857932898304","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","url":"https:\/\/t.co\/aaExQLabYH","display_url":"pic.twitter.com\/aaExQLabYH","expanded_url":"http:\/\/twitter.com\/5toqur\/status\/663725860071981056\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":232,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"large":{"w":350,"h":232,"resize":"fit"}},"video_info":{"aspect_ratio":[175,116],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYHJrZU8AAQAxz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5toqur","name":"\uc0c8\ubcbd","id":1181806825,"id_str":"1181806825","indices":[3,10]}],"symbols":[],"media":[{"id":663725857932898304,"id_str":"663725857932898304","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","url":"https:\/\/t.co\/aaExQLabYH","display_url":"pic.twitter.com\/aaExQLabYH","expanded_url":"http:\/\/twitter.com\/5toqur\/status\/663725860071981056\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":232,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"large":{"w":350,"h":232,"resize":"fit"}},"source_status_id":663725860071981056,"source_status_id_str":"663725860071981056","source_user_id":1181806825,"source_user_id_str":"1181806825"}]},"extended_entities":{"media":[{"id":663725857932898304,"id_str":"663725857932898304","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYHJrZU8AAQAxz.png","url":"https:\/\/t.co\/aaExQLabYH","display_url":"pic.twitter.com\/aaExQLabYH","expanded_url":"http:\/\/twitter.com\/5toqur\/status\/663725860071981056\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":350,"h":232,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"large":{"w":350,"h":232,"resize":"fit"}},"source_status_id":663725860071981056,"source_status_id_str":"663725860071981056","source_user_id":1181806825,"source_user_id_str":"1181806825","video_info":{"aspect_ratio":[175,116],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYHJrZU8AAQAxz.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080112657"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333048320,"id_str":"663728215333048320","text":"@btrcpl_ who u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725728744116224,"in_reply_to_status_id_str":"663725728744116224","in_reply_to_user_id":483640770,"in_reply_to_user_id_str":"483640770","in_reply_to_screen_name":"btrcpl_","user":{"id":424757378,"id_str":"424757378","name":"rogene","screen_name":"rcmlb","location":"braaa","url":null,"description":"thankful | priorities","protected":false,"verified":false,"followers_count":632,"friends_count":328,"listed_count":0,"favourites_count":6043,"statuses_count":7950,"created_at":"Wed Nov 30 04:20:35 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00FFBF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/598099616\/x9eb6cded33cbe60ef39e5d879210e6a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/598099616\/x9eb6cded33cbe60ef39e5d879210e6a.png","profile_background_tile":true,"profile_link_color":"00FAC8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ED2556","profile_text_color":"FF455C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622209018916802560\/eNTijmXt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622209018916802560\/eNTijmXt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/424757378\/1446961478","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"btrcpl_","name":"bea pascua","id":483640770,"id_str":"483640770","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215320453121,"id_str":"663728215320453121","text":"RT @lmagenParalela: Gatitos beb\u00e9s viendo v\u00eddeos https:\/\/t.co\/txUZnmWCzj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":624972515,"id_str":"624972515","name":"Roberto Thomas\u270c\ufe0f","screen_name":"RobertoThomas2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1051,"friends_count":266,"listed_count":5,"favourites_count":321,"statuses_count":104129,"created_at":"Mon Jul 02 20:26:06 +0000 2012","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725535378280449\/ztBzM8lf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725535378280449\/ztBzM8lf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/624972515\/1411825189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 22:03:59 +0000 2015","id":663114700889137153,"id_str":"663114700889137153","text":"Gatitos beb\u00e9s viendo v\u00eddeos https:\/\/t.co\/txUZnmWCzj","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2614596584,"id_str":"2614596584","name":"Universo Paralelo \u2122","screen_name":"lmagenParalela","location":null,"url":null,"description":"En alg\u00fan Mundo Paralelo, las hembras de leopardo seducen a los machos con leggins de imitaci\u00f3n a piel humana.","protected":false,"verified":false,"followers_count":243890,"friends_count":97,"listed_count":252,"favourites_count":15,"statuses_count":1902,"created_at":"Thu Jul 10 02:00:19 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528367164294574082\/b5NHaJEh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528367164294574082\/b5NHaJEh.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532678124761141248\/bdv44JMQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532678124761141248\/bdv44JMQ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614596584\/1415835362","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":96,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663114406029578240,"id_str":"663114406029578240","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","url":"https:\/\/t.co\/txUZnmWCzj","display_url":"pic.twitter.com\/txUZnmWCzj","expanded_url":"http:\/\/twitter.com\/lmagenParalela\/status\/663114700889137153\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":397,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663114406029578240,"id_str":"663114406029578240","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","url":"https:\/\/t.co\/txUZnmWCzj","display_url":"pic.twitter.com\/txUZnmWCzj","expanded_url":"http:\/\/twitter.com\/lmagenParalela\/status\/663114700889137153\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":397,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lmagenParalela","name":"Universo Paralelo \u2122","id":2614596584,"id_str":"2614596584","indices":[3,18]}],"symbols":[],"media":[{"id":663114406029578240,"id_str":"663114406029578240","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","url":"https:\/\/t.co\/txUZnmWCzj","display_url":"pic.twitter.com\/txUZnmWCzj","expanded_url":"http:\/\/twitter.com\/lmagenParalela\/status\/663114700889137153\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":397,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":397,"resize":"fit"}},"source_status_id":663114700889137153,"source_status_id_str":"663114700889137153","source_user_id":2614596584,"source_user_id_str":"2614596584"}]},"extended_entities":{"media":[{"id":663114406029578240,"id_str":"663114406029578240","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPbCfjWUAAcwRh.jpg","url":"https:\/\/t.co\/txUZnmWCzj","display_url":"pic.twitter.com\/txUZnmWCzj","expanded_url":"http:\/\/twitter.com\/lmagenParalela\/status\/663114700889137153\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":397,"resize":"fit"},"small":{"w":340,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":397,"resize":"fit"}},"source_status_id":663114700889137153,"source_status_id_str":"663114700889137153","source_user_id":2614596584,"source_user_id_str":"2614596584"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112663"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215295266816,"id_str":"663728215295266816","text":"RT @cb0x92: \u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e36\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3413904553,"id_str":"3413904553","name":"\u0e44\u0e04\u0e2a\u0e44\u0e15\u0e25\u0e4c-\uae40\uc885\uc778","screen_name":"kjin_kai","location":null,"url":null,"description":"\u0e40\u0e14\u0e47\u0e21\u0e27\u0e48\u0e32\u0e07 \u0e04\u0e19\u0e02\u0e49\u0e32\u0e07\u0e46\u0e01\u0e47\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e21\u0e35 | \u0e21\u0e32\u0e04\u0e38\u0e22 \u0e21\u0e32\u0e17\u0e31\u0e01 \u0e21\u0e32\u0e23\u0e31\u0e01\u0e01\u0e31\u0e19\u2661 | \u0e2b\u0e22\u0e32\u0e1a\u0e41\u0e15\u0e48\u0e15\u0e25\u0e01","protected":false,"verified":false,"followers_count":24,"friends_count":45,"listed_count":0,"favourites_count":109,"statuses_count":2653,"created_at":"Tue Sep 01 10:40:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661219064920969216\/GO4Zjq_u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661219064920969216\/GO4Zjq_u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3413904553\/1446481883","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:03 +0000 2015","id":663727000515772418,"id_str":"663727000515772418","text":"\u0e01\u0e39\u0e2d\u0e22\u0e32\u0e01\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e21\u0e36\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222283614,"id_str":"3222283614","name":"\u0e04\u0e32\u0e23\u0e4c\u0e1a\u0e2d\u0e21","screen_name":"cb0x92","location":"1OXXXTIT |\u00a0#\u0e2d\u0e31\u0e13\u0e11\u0e30\u0e1e\u0e32\u0e25\u00a0| Tutline","url":"http:\/\/ask.fm\/cb0x92","description":"\u0e0b\u0e37\u0e49\u0e2d\u0e1a\u0e31\u0e15\u0e23\u0e17\u0e23\u0e39 100 \u0e43\u0e2b\u0e49\u0e2a\u0e34\u0e04\u0e23\u0e31\u0e1a \u0e22\u0e2d\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e1f\u0e19\u0e40\u0e25\u0e22","protected":false,"verified":false,"followers_count":99,"friends_count":92,"listed_count":0,"favourites_count":118,"statuses_count":6462,"created_at":"Thu May 21 14:00:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663708253000306688\/P4uxGo8C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663708253000306688\/P4uxGo8C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222283614\/1445652801","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cb0x92","name":"\u0e04\u0e32\u0e23\u0e4c\u0e1a\u0e2d\u0e21","id":3222283614,"id_str":"3222283614","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080112657"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333183488,"id_str":"663728215333183488","text":"RT @NotSzymanski: https:\/\/t.co\/9WB4WlyYlV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":364064270,"id_str":"364064270","name":"Jessie Shaw","screen_name":"jshawtay","location":"Jersey","url":null,"description":"ESU '19","protected":false,"verified":false,"followers_count":662,"friends_count":439,"listed_count":0,"favourites_count":2990,"statuses_count":17195,"created_at":"Mon Aug 29 04:02:37 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628131086\/d9bb28okss27xc7yikps.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628131086\/d9bb28okss27xc7yikps.jpeg","profile_background_tile":true,"profile_link_color":"7FFFD4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663611844746190848\/byR275WD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663611844746190848\/byR275WD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364064270\/1446222287","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727973007257600,"id_str":"663727973007257600","text":"https:\/\/t.co\/9WB4WlyYlV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312585375,"id_str":"312585375","name":"Snap","screen_name":"NotSzymanski","location":"Sixers Nation","url":null,"description":"I believe in the greek philosophy Epicureanism, google it and it will explain exactly how I live my life. #50sFavoriteWhiteBoy","protected":false,"verified":false,"followers_count":584,"friends_count":457,"listed_count":4,"favourites_count":9378,"statuses_count":44189,"created_at":"Tue Jun 07 10:52:10 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524927037367009281\/pXfzaYZJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524927037367009281\/pXfzaYZJ.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658507409522999296\/RRiTj3el_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658507409522999296\/RRiTj3el_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312585375\/1446556744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"005d61b22f3d85eb","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/005d61b22f3d85eb.json","place_type":"city","name":"Mount Laurel","full_name":"Mount Laurel, NJ","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-74.944226,39.916215],[-74.944226,40.000326],[-74.848485,40.000326],[-74.848485,39.916215]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663397897350864897,"id_str":"663397897350864897","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","url":"https:\/\/t.co\/9WB4WlyYlV","display_url":"pic.twitter.com\/9WB4WlyYlV","expanded_url":"http:\/\/twitter.com\/asvpxabe\/status\/663397932318769152\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663397932318769152,"source_status_id_str":"663397932318769152","source_user_id":284784198,"source_user_id_str":"284784198"}]},"extended_entities":{"media":[{"id":663397897350864897,"id_str":"663397897350864897","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","url":"https:\/\/t.co\/9WB4WlyYlV","display_url":"pic.twitter.com\/9WB4WlyYlV","expanded_url":"http:\/\/twitter.com\/asvpxabe\/status\/663397932318769152\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663397932318769152,"source_status_id_str":"663397932318769152","source_user_id":284784198,"source_user_id_str":"284784198","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/pl\/cxBzA82tVJdtliBM.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/pl\/cxBzA82tVJdtliBM.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/320x180\/mXnTTLqXw3EIAeZ5.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/640x360\/qBIelQ7ZmVVFTEoJ.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/640x360\/qBIelQ7ZmVVFTEoJ.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NotSzymanski","name":"Snap","id":312585375,"id_str":"312585375","indices":[3,16]}],"symbols":[],"media":[{"id":663397897350864897,"id_str":"663397897350864897","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","url":"https:\/\/t.co\/9WB4WlyYlV","display_url":"pic.twitter.com\/9WB4WlyYlV","expanded_url":"http:\/\/twitter.com\/asvpxabe\/status\/663397932318769152\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663397932318769152,"source_status_id_str":"663397932318769152","source_user_id":284784198,"source_user_id_str":"284784198"}]},"extended_entities":{"media":[{"id":663397897350864897,"id_str":"663397897350864897","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663397897350864897\/pu\/img\/i6J3DL7zvuSoVsqA.jpg","url":"https:\/\/t.co\/9WB4WlyYlV","display_url":"pic.twitter.com\/9WB4WlyYlV","expanded_url":"http:\/\/twitter.com\/asvpxabe\/status\/663397932318769152\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663397932318769152,"source_status_id_str":"663397932318769152","source_user_id":284784198,"source_user_id_str":"284784198","video_info":{"aspect_ratio":[16,9],"duration_millis":20000,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/pl\/cxBzA82tVJdtliBM.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/pl\/cxBzA82tVJdtliBM.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/320x180\/mXnTTLqXw3EIAeZ5.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/640x360\/qBIelQ7ZmVVFTEoJ.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663397897350864897\/pu\/vid\/640x360\/qBIelQ7ZmVVFTEoJ.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215320473600,"id_str":"663728215320473600","text":"\u4eca\u56de\u306e\u30c0\u30a4\u30e4\u306f\u67a1\u3055\u3093\u306b\u60da\u308c\u3066\u964d\u8c37\u304c\u304f\u3063\u305d\u3044\u3051\u3081\u3093\u306b\u306a\u3063\u305f\u3063\u3066\u3053\u3068\u304c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1437816404,"id_str":"1437816404","name":"\u2740\u5927\u5929\u4f7f\u5fe0\u3061\u3083\u3093\u3068\u306b\u308d\u3055\u3093\u306e\u8056\u8a95\u796d\u524d\u591c\u2740","screen_name":"ma_nnm","location":"\u30ad\u30c9\u69d8\u306e\u3075\u3068\u3082\u3082\u306e\u9593","url":"http:\/\/pixiv.me\/kidokano4444","description":"\u3069\u3046\u3082\u3053\u3093\u306b\u3061\u308f\u3002\u53ef\u611b\u3044\u306f\u6b63\u7fa9\u3002\u30b9\u30dd\u30fc\u30c4\u3057\u3066\u308b\u7537\u306e\u5b50\u306f\u4e16\u754c\u907a\u7523\u3002\u30a2\u30ca\u30ed\u30b0\u3067\u7d75\u3092\u63cf\u3044\u3066\u307e\u3059\u3002\u8272\u3093\u306a\u3082\u306e\u304c\u597d\u304d\u3067\u3059\u3002\u2721HQ\u3077\u3063\u3061\u3087\u30ea\u30ec\u30fc\u4f01\u753b\u2721\u30b7\u30e7\u30bf\u6551\u2721\u7d75\u57a2\u2192\u3010@higiriaa\u3011\u2721 \u898f\u5236\u57a2\u2192\u3010@tainai___\u3011\u2721\n \u3061\u3087\u3063\u3068\u3048\u3063\u3061\u3067\u8840\u307e\u307f\u308c\u306a\u88cf\u57a2\u2192\u3010@homoeroringoaka\u3011","protected":false,"verified":false,"followers_count":2479,"friends_count":1272,"listed_count":138,"favourites_count":48638,"statuses_count":71081,"created_at":"Sat May 18 08:43:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650280754367217664\/8mA7osje_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650280754367217664\/8mA7osje_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1437816404\/1442572157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112663"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303696384,"id_str":"663728215303696384","text":"RT @atsubotv4649: \u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3101477262,"id_str":"3101477262","name":"SAKI","screen_name":"Lavender_water","location":"\u65e5\u672c \u57fc\u7389\u770c","url":null,"description":"\u9ce9\u307d\u3063\u307d\u9ad8\u6821 3730 \u66f8\u9053\u90e8 \/\u30b3\u30ed\u30b3\u30ed\u30c1\u30ad\u30c1\u30ad\u30da\u30c3\u30d1\u30fc\u30ba \/ \u6d0b\u753b\u30fb\u6d0b\u697d \/ shinee \/ 2bro \/ Ninja \u26a0\ufe0ebot\u57a2\u3084\u5909\u306a\u57a2\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":135,"friends_count":164,"listed_count":3,"favourites_count":11230,"statuses_count":3273,"created_at":"Sat Mar 21 12:01:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661475999020814336\/QmIMdgFZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661475999020814336\/QmIMdgFZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3101477262\/1445051064","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:10:15 +0000 2015","id":663644761874567172,"id_str":"663644761874567172","text":"\u30a2\u30ca\u96ea2 https:\/\/t.co\/LWm4i8sUkz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3223278278,"id_str":"3223278278","name":"\u3042\u3064\u307c\u30fc","screen_name":"atsubotv4649","location":null,"url":null,"description":"\u3084\u3041\u3001\u3053\u3093\u3070\u3093\u308f\u3041\u30fc","protected":false,"verified":false,"followers_count":22837,"friends_count":33,"listed_count":34,"favourites_count":3,"statuses_count":54,"created_at":"Fri May 22 12:49:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663309504017072128\/ya7ang2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3223278278\/1446980441","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15802,"favorite_count":18071,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[5,28],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[3,16]}],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/LWm4i8sUkz","display_url":"pic.twitter.com\/LWm4i8sUkz","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215328997376,"id_str":"663728215328997376","text":"Por um mundo sem meninos assim...\u00e9 pedir muito? https:\/\/t.co\/MVsFPdmGIl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2884749441,"id_str":"2884749441","name":"Carol","screen_name":"carolsimoez","location":null,"url":"http:\/\/drunk-illusi0ns.tumblr.com\/","description":"achei que eu fosse trouxa mas ai eu vi voc\u00ea muito obrigado ai adorei sua humildade de me mostra que a vida pra mim n\u00e3o ta perdida","protected":false,"verified":false,"followers_count":432,"friends_count":301,"listed_count":0,"favourites_count":2023,"statuses_count":12508,"created_at":"Wed Nov 19 21:09:26 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623673038677086209\/1xizo-Ln.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623673038677086209\/1xizo-Ln.jpg","profile_background_tile":true,"profile_link_color":"010000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663539120258621440\/aNnGNYe0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663539120258621440\/aNnGNYe0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2884749441\/1447024005","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727341907091456,"quoted_status_id_str":"663727341907091456","quoted_status":{"created_at":"Mon Nov 09 14:38:24 +0000 2015","id":663727341907091456,"id_str":"663727341907091456","text":"N\u00e3o tem nenhuma menina gostosa pra trocar ideia no fb, isso me faz muito triste :(","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92365949,"id_str":"92365949","name":"Heitor","screen_name":"almeidaheitor","location":null,"url":null,"description":"Seja especial, fa\u00e7a a diferen\u00e7a...","protected":false,"verified":false,"followers_count":219,"friends_count":210,"listed_count":0,"favourites_count":210,"statuses_count":39804,"created_at":"Tue Nov 24 21:08:14 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643259675878817792\/gr1i-q9M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643259675878817792\/gr1i-q9M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92365949\/1403900032","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MVsFPdmGIl","expanded_url":"https:\/\/twitter.com\/almeidaheitor\/status\/663727341907091456","display_url":"twitter.com\/almeidaheitor\/\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080112665"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215312216064,"id_str":"663728215312216064","text":"\u092c\u093f\u0939\u093e\u0930 \u0915\u093e \u0938\u092c\u0915- \u0906\u092a\u0928\u0947 \u0939\u0935\u093e \u0915\u0940 \u092c\u0941\u0935\u093e\u0908 \u0915\u0940 \u0939\u0948, \u0906\u092a \u0915\u094b \u0924\u0942\u092b\u093c\u093e\u0928 \u0915\u0940 \u092b\u093c\u0938\u0932 \u0915\u093e\u091f\u0928\u0940 \u092a\u0921\u093c\u0947\u0917\u0940 https:\/\/t.co\/owLdCG2pps","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":766931010,"id_str":"766931010","name":"N.Jamal Ansari","screen_name":"NJamalAnsari","location":"Aligarh,U.P.India","url":null,"description":"Am freelance journalist writing on social and political issues.","protected":false,"verified":false,"followers_count":28,"friends_count":43,"listed_count":1,"favourites_count":3,"statuses_count":10682,"created_at":"Sun Aug 19 04:50:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/owLdCG2pps","expanded_url":"http:\/\/fb.me\/3Tr05xW8m","display_url":"fb.me\/3Tr05xW8m","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080112661"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333048322,"id_str":"663728215333048322","text":"RT @nrsmkkt: \u203b\u81ea\u5206\u7d75\u4e00\u30ab\u30e9\n\u597d\u304b\u308c\u3066\u308b\u304b\u77e5\u308a\u305f\u3044\u306a\u3089\u81ea\u5206\u3067\u78ba\u304b\u3081\u306a\u3088\u3001\u4ffa\u306f\u62d2\u307e\u306a\u3044\u304b\u3089\u3002 https:\/\/t.co\/4L46nYLD4y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3835997653,"id_str":"3835997653","name":"\u73e0(\u273f\u02d8\u8278\u02d8\u273f)\u4f01\u753b\u4e2d\u3006\u5ef6\u9577","screen_name":"tama0q028","location":"\u65e5\u672c \u4e2d\u90e8\u5730\u65b9","url":"http:\/\/pixiv.me\/tama2559","description":"\u96d1\u98df\u57a2","protected":false,"verified":false,"followers_count":443,"friends_count":436,"listed_count":29,"favourites_count":3038,"statuses_count":2130,"created_at":"Fri Oct 09 11:41:43 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660894908144717824\/yqAcwh7u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660894908144717824\/yqAcwh7u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3835997653\/1446404599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:22:16 +0000 2015","id":663708183274254336,"id_str":"663708183274254336","text":"\u203b\u81ea\u5206\u7d75\u4e00\u30ab\u30e9\n\u597d\u304b\u308c\u3066\u308b\u304b\u77e5\u308a\u305f\u3044\u306a\u3089\u81ea\u5206\u3067\u78ba\u304b\u3081\u306a\u3088\u3001\u4ffa\u306f\u62d2\u307e\u306a\u3044\u304b\u3089\u3002 https:\/\/t.co\/4L46nYLD4y","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067795320,"id_str":"3067795320","name":"\u6210\u702c\u771f\u7434","screen_name":"nrsmkkt","location":null,"url":"http:\/\/pixiv.me\/makotojzc","description":"\u8150\u5411\u3051\u30a2\u30ab\u30a6\u30f3\u30c8 \u2757\ufe0f\u5973\u4f53\u5316\u53a8\u2757\ufe0f\u9577\u8c37\u90e8\u3068\u5927\u5036\u5229\u4f3d\u7f85\u3068\u5149\u5fe0\u3055\u3093\u3002\u6295\u7a3f\u7269\u306e\u7121\u65ad\u4f7f\u7528\/\u8ee2\u8f09\u53b3\u7981 \u6210\u4eba\u6e08 \u65e2\u8aad\u3075\u3041\u307c\u591a\u3044\u3067\u3059\u3002\u4ed5\u4e8b\u57a2\u2192@NaRusE_mkt","protected":false,"verified":false,"followers_count":9101,"friends_count":271,"listed_count":217,"favourites_count":7362,"statuses_count":17146,"created_at":"Sun Mar 08 08:13:05 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659193309345087488\/nxxOX8O__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659193309345087488\/nxxOX8O__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067795320\/1443855847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":366,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663708182125019137,"id_str":"663708182125019137","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","url":"https:\/\/t.co\/4L46nYLD4y","display_url":"pic.twitter.com\/4L46nYLD4y","expanded_url":"http:\/\/twitter.com\/nrsmkkt\/status\/663708183274254336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":726,"resize":"fit"},"large":{"w":759,"h":919,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":411,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663708182125019137,"id_str":"663708182125019137","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","url":"https:\/\/t.co\/4L46nYLD4y","display_url":"pic.twitter.com\/4L46nYLD4y","expanded_url":"http:\/\/twitter.com\/nrsmkkt\/status\/663708183274254336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":726,"resize":"fit"},"large":{"w":759,"h":919,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":411,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nrsmkkt","name":"\u6210\u702c\u771f\u7434","id":3067795320,"id_str":"3067795320","indices":[3,11]}],"symbols":[],"media":[{"id":663708182125019137,"id_str":"663708182125019137","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","url":"https:\/\/t.co\/4L46nYLD4y","display_url":"pic.twitter.com\/4L46nYLD4y","expanded_url":"http:\/\/twitter.com\/nrsmkkt\/status\/663708183274254336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":726,"resize":"fit"},"large":{"w":759,"h":919,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":411,"resize":"fit"}},"source_status_id":663708183274254336,"source_status_id_str":"663708183274254336","source_user_id":3067795320,"source_user_id_str":"3067795320"}]},"extended_entities":{"media":[{"id":663708182125019137,"id_str":"663708182125019137","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX3Ez4VAAEJN8O.jpg","url":"https:\/\/t.co\/4L46nYLD4y","display_url":"pic.twitter.com\/4L46nYLD4y","expanded_url":"http:\/\/twitter.com\/nrsmkkt\/status\/663708183274254336\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":726,"resize":"fit"},"large":{"w":759,"h":919,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":411,"resize":"fit"}},"source_status_id":663708183274254336,"source_status_id_str":"663708183274254336","source_user_id":3067795320,"source_user_id_str":"3067795320"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333040128,"id_str":"663728215333040128","text":"RT @equalrain: \uc5d0\uadf8\uc2dc\ud574\ub9ac \ud560\ub85c\uc708\ub370\uc774(...)\uae30\ub150\uc5f0\uc131 2\/3 https:\/\/t.co\/hGlBmA15ie https:\/\/t.co\/YIAl8S0LSQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2237471995,"id_str":"2237471995","name":"\uacfc\uc81c \uc880 \ud574\ub77c Chell\uc0c9\uac38","screen_name":"prattchell","location":"FUB Free!","url":null,"description":"\ucf5c\ub9b0\ud37c\uc2a4\uc640 \ud06c\ub9ac\uc2a4\ud504\ub7ab\uacfc \ub098\uce84 \uc539\ub355\ud6c4","protected":false,"verified":false,"followers_count":93,"friends_count":81,"listed_count":2,"favourites_count":2386,"statuses_count":8619,"created_at":"Mon Dec 09 10:59:03 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653746627002286080\/ssvnrAwx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653746627002286080\/ssvnrAwx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2237471995\/1441801926","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:33 +0000 2015","id":663725868468953088,"id_str":"663725868468953088","text":"\uc5d0\uadf8\uc2dc\ud574\ub9ac \ud560\ub85c\uc708\ub370\uc774(...)\uae30\ub150\uc5f0\uc131 2\/3 https:\/\/t.co\/hGlBmA15ie https:\/\/t.co\/YIAl8S0LSQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4001910133,"id_str":"4001910133","name":"Gikk","screen_name":"equalrain","location":null,"url":"http:\/\/equalrain.tistory.com","description":"\uc5d0\uadf8\uc2dc\ud574\ub9ac\/\ucee4\ud06c\ubcf8\uc988 \ud31d\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":24,"friends_count":40,"listed_count":0,"favourites_count":69,"statuses_count":12,"created_at":"Sat Oct 24 11:43:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657930977323253760\/sgB7vtrb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657930977323253760\/sgB7vtrb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hGlBmA15ie","expanded_url":"http:\/\/equalrain.tistory.com\/m\/post\/241","display_url":"equalrain.tistory.com\/m\/post\/241","indices":[25,48]}],"user_mentions":[],"symbols":[],"media":[{"id":663725859333783553,"id_str":"663725859333783553","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","url":"https:\/\/t.co\/YIAl8S0LSQ","display_url":"pic.twitter.com\/YIAl8S0LSQ","expanded_url":"http:\/\/twitter.com\/equalrain\/status\/663725868468953088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725859333783553,"id_str":"663725859333783553","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","url":"https:\/\/t.co\/YIAl8S0LSQ","display_url":"pic.twitter.com\/YIAl8S0LSQ","expanded_url":"http:\/\/twitter.com\/equalrain\/status\/663725868468953088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hGlBmA15ie","expanded_url":"http:\/\/equalrain.tistory.com\/m\/post\/241","display_url":"equalrain.tistory.com\/m\/post\/241","indices":[40,63]}],"user_mentions":[{"screen_name":"equalrain","name":"Gikk","id":4001910133,"id_str":"4001910133","indices":[3,13]}],"symbols":[],"media":[{"id":663725859333783553,"id_str":"663725859333783553","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","url":"https:\/\/t.co\/YIAl8S0LSQ","display_url":"pic.twitter.com\/YIAl8S0LSQ","expanded_url":"http:\/\/twitter.com\/equalrain\/status\/663725868468953088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663725868468953088,"source_status_id_str":"663725868468953088","source_user_id":4001910133,"source_user_id_str":"4001910133"}]},"extended_entities":{"media":[{"id":663725859333783553,"id_str":"663725859333783553","indices":[64,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHJwnUwAExASD.jpg","url":"https:\/\/t.co\/YIAl8S0LSQ","display_url":"pic.twitter.com\/YIAl8S0LSQ","expanded_url":"http:\/\/twitter.com\/equalrain\/status\/663725868468953088\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663725868468953088,"source_status_id_str":"663725868468953088","source_user_id":4001910133,"source_user_id_str":"4001910133"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215320604672,"id_str":"663728215320604672","text":"@sex_is_you \u043d\u0443 \u043b\u0430\u0434\u043d\u043e\n\u0445\u043e\u0440\u043e\u0448\u043e \n\u041a\u0430\u043a \u0433\u043e\u043b\u043e\u0432\u0430?\u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u044b \u043d\u0435\u0442?\u043d\u0430\u0441\u043c\u043e\u0440\u043a?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727794204098560,"in_reply_to_status_id_str":"663727794204098560","in_reply_to_user_id":3105292593,"in_reply_to_user_id_str":"3105292593","in_reply_to_screen_name":"sex_is_you","user":{"id":1852521055,"id_str":"1852521055","name":"\u0426\u0430\u0440\u044c \u0422\u043b\u0435\u043d\u2665\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u0430","screen_name":"mentally_ill","location":null,"url":"http:\/\/vk.com\/id150486044","description":"\u0420\u0435\u0431\u0435\u043d\u043e\u043a \u0421\u0430\u0442\u0430\u043d\u044b \u0441 \u043d\u0435\u0443\u0440\u0430\u0432\u043d\u043e\u0432\u0435\u0448\u0435\u043d\u043d\u043e\u0439 \u043f\u0441\u0438\u0445\u0438\u043a\u043e\u0439. \u0414\u0440\u0430\u0439\u0437\u0435\u0440. \u0411\u0438.\n04.04.15-\u041c\u0430\u0440\u0441\u044b.","protected":false,"verified":false,"followers_count":6559,"friends_count":5196,"listed_count":15,"favourites_count":9405,"statuses_count":65200,"created_at":"Tue Sep 10 20:59:40 +0000 2013","utc_offset":3600,"time_zone":"Stockholm","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660690494045954048\/kt289zkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1852521055\/1446355862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sex_is_you","name":"\u2020\u043a\u0430\u043b\u044c\u0446\u0438\u0444\u0435\u0440\u2020\u2764\u0426\u0430\u0440\u044c\u0422\u043b\u0435\u043d","id":3105292593,"id_str":"3105292593","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080112663"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215312211968,"id_str":"663728215312211968","text":"@thegrandking gtfo fishfucker","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727959510016000,"in_reply_to_status_id_str":"663727959510016000","in_reply_to_user_id":1694909551,"in_reply_to_user_id_str":"1694909551","in_reply_to_screen_name":"thegrandking","user":{"id":499617752,"id_str":"499617752","name":"frisk","screen_name":"sansposting","location":null,"url":"http:\/\/steamcommunity.com\/id\/transphobia","description":"papyrus has erectile dysfunction","protected":false,"verified":false,"followers_count":2558,"friends_count":191,"listed_count":58,"favourites_count":61539,"statuses_count":226396,"created_at":"Wed Feb 22 09:15:17 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528563588923797505\/4bFtbZmx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528563588923797505\/4bFtbZmx.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663674519475892224\/_cMHP4D6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663674519475892224\/_cMHP4D6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/499617752\/1447068389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thegrandking","name":"\ufe0fizuna","id":1694909551,"id_str":"1694909551","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112661"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215299502081,"id_str":"663728215299502081","text":"RT @sagisagiz: \uff71\uff76\uff88\uff81\uff6c\uff9d\uff76\uff9c\uff72\uff72\uff94\uff6f\uff80\uff70 https:\/\/t.co\/M1n913MCog","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3246219194,"id_str":"3246219194","name":"\u3044\u306b\u3080@\u4e8c\u6b21\u30a4\u30e9\u30b9\u30c8\u60c5\u5831","screen_name":"illustKakusan","location":null,"url":null,"description":"\u7d75\u5e2b\u3055\u3093\u3084\u30a4\u30e9\u30b9\u30c8\u30ec\u30fc\u30bf\u30fc\u3055\u3093\u306eTweet\u3092RT\u3057\u3066\u3001\u30a4\u30e9\u30b9\u30c8\u30fb\u4f5c\u54c1\u3092\u5e83\u3081\u305f\u3044\u4e8c\u6b21\u7d75\u8da3\u5473\u57a2\u3002 \u305d\u306e\u4ed6\u306e\u5e83\u544a\u306f\u3044\u305f\u3057\u307e\u305b\u3093\u300218\u7981\u57a2\u3067\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3002RT\u3057\u305f\u3082\u306e\u3092RT\u3001fav\u3057\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002\u8981\u671b\u30fb\u610f\u898b\u7b49\u306fDM\u304f\u3060\u3055\u3044\u3002\u4eca\u671f\u306f\u30b7\u30e3\u30ed\u3061\u3083\u3093\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":595,"friends_count":648,"listed_count":4,"favourites_count":4,"statuses_count":1564,"created_at":"Mon Jun 15 17:25:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657618868802727936\/UTviBsMD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657618868802727936\/UTviBsMD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3246219194\/1440742871","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:02 +0000 2015","id":663719698521964544,"id_str":"663719698521964544","text":"\uff71\uff76\uff88\uff81\uff6c\uff9d\uff76\uff9c\uff72\uff72\uff94\uff6f\uff80\uff70 https:\/\/t.co\/M1n913MCog","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":69007012,"id_str":"69007012","name":"\u30da\u30c6\u30f3\u5e2b","screen_name":"sagisagiz","location":"\u57fc\u7389\u770c","url":"http:\/\/sagisagiz.sakura.ne.jp\/","description":"\u57fc\u7389\u3067\u3072\u3063\u305d\u308a\u30a8\u30ed\u6f2b\u753b\u3068\u304b\u63cf\u3044\u3066\u307e\u3059\u3002\u3053\u3053\u6700\u8fd1\u306f\u3068\u3042\u308b\u79d1\u5b66\u306e\u8d85\u96fb\u78c1\u7832\u306e\u767d\u4e95\u9ed2\u5b50\u3068\u521d\u6625\u98fe\u5229\u306b\u306f\u307e\u3063\u3066\u304a\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":9810,"friends_count":576,"listed_count":452,"favourites_count":53,"statuses_count":2476,"created_at":"Wed Aug 26 15:13:25 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654535387294007296\/nvALUUkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654535387294007296\/nvALUUkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/69007012\/1402820027","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":165,"favorite_count":405,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719697402036225,"id_str":"663719697402036225","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","url":"https:\/\/t.co\/M1n913MCog","display_url":"pic.twitter.com\/M1n913MCog","expanded_url":"http:\/\/twitter.com\/sagisagiz\/status\/663719698521964544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719697402036225,"id_str":"663719697402036225","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","url":"https:\/\/t.co\/M1n913MCog","display_url":"pic.twitter.com\/M1n913MCog","expanded_url":"http:\/\/twitter.com\/sagisagiz\/status\/663719698521964544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sagisagiz","name":"\u30da\u30c6\u30f3\u5e2b","id":69007012,"id_str":"69007012","indices":[3,13]}],"symbols":[],"media":[{"id":663719697402036225,"id_str":"663719697402036225","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","url":"https:\/\/t.co\/M1n913MCog","display_url":"pic.twitter.com\/M1n913MCog","expanded_url":"http:\/\/twitter.com\/sagisagiz\/status\/663719698521964544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}},"source_status_id":663719698521964544,"source_status_id_str":"663719698521964544","source_user_id":69007012,"source_user_id_str":"69007012"}]},"extended_entities":{"media":[{"id":663719697402036225,"id_str":"663719697402036225","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBjFoUAAEFBPI.jpg","url":"https:\/\/t.co\/M1n913MCog","display_url":"pic.twitter.com\/M1n913MCog","expanded_url":"http:\/\/twitter.com\/sagisagiz\/status\/663719698521964544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":1024,"h":732,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":428,"resize":"fit"}},"source_status_id":663719698521964544,"source_status_id_str":"663719698521964544","source_user_id":69007012,"source_user_id_str":"69007012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112658"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307894784,"id_str":"663728215307894784","text":"\u63a2\u5075\u306e\u63a2\u5075 \u6700\u7d42\u56de#11 \u4e3b\u6f14 https:\/\/t.co\/0NfTaANa9P","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537426576,"id_str":"537426576","name":"\u5ca9\u5c4b\u305f\u3051\u3057","screen_name":"msopxpestik","location":"Tokyo","url":null,"description":"\u4e2d\u592e\u5927\u5b66\u2192\u5e83\u5c3e \u3044\u3068\u3057\u3055\u3068\u305b\u3064\u306a\u3055\u3068\u3053\u3053\u308d\u3065\u3088\u3055\u3068 \u3053\u306e4\u6708\u304b\u3089\u793e\u4f1a\u4eba\u306b\u306a\u308a\u3057\u305f","protected":false,"verified":false,"followers_count":5,"friends_count":312,"listed_count":0,"favourites_count":0,"statuses_count":2132,"created_at":"Mon Mar 26 16:12:14 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600125596098637824\/mvA8iIjb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600125596098637824\/mvA8iIjb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0NfTaANa9P","expanded_url":"http:\/\/bit.ly\/1KkumSB","display_url":"bit.ly\/1KkumSB","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333076993,"id_str":"663728215333076993","text":"RT @MenSexyBody: https:\/\/t.co\/9bsiR27jOi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161968556,"id_str":"3161968556","name":"Lattanavong Phatsali","screen_name":"phatsali","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":110,"friends_count":148,"listed_count":1,"favourites_count":4714,"statuses_count":2751,"created_at":"Sat Apr 18 05:33:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615524430207291392\/2uZIU8Zd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615524430207291392\/2uZIU8Zd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3161968556\/1431010075","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:37:26 +0000 2015","id":663530805285621760,"id_str":"663530805285621760","text":"https:\/\/t.co\/9bsiR27jOi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220957304,"id_str":"3220957304","name":"Sexy Body","screen_name":"MenSexyBody","location":"Topeka,Kansas","url":"http:\/\/bit.ly\/1AkUwFA","description":"#gayvideo , #gayphoto , #gaydate , #Gaypictures , #gay , #gayboy , #gayboysex , #GayDaddy , #GayPorn , #gaysex , #gayfuck , #Gay","protected":false,"verified":false,"followers_count":20927,"friends_count":1533,"listed_count":52,"favourites_count":0,"statuses_count":30938,"created_at":"Wed May 20 03:02:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601976629036875776\/W2I8tjru_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601976629036875776\/W2I8tjru_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220957304\/1432357434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663530794674053120,"id_str":"663530794674053120","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","url":"https:\/\/t.co\/9bsiR27jOi","display_url":"pic.twitter.com\/9bsiR27jOi","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/663530805285621760\/photo\/1","type":"photo","sizes":{"large":{"w":491,"h":348,"resize":"fit"},"medium":{"w":491,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663530794674053120,"id_str":"663530794674053120","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","url":"https:\/\/t.co\/9bsiR27jOi","display_url":"pic.twitter.com\/9bsiR27jOi","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/663530805285621760\/photo\/1","type":"photo","sizes":{"large":{"w":491,"h":348,"resize":"fit"},"medium":{"w":491,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MenSexyBody","name":"Sexy Body","id":3220957304,"id_str":"3220957304","indices":[3,15]}],"symbols":[],"media":[{"id":663530794674053120,"id_str":"663530794674053120","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","url":"https:\/\/t.co\/9bsiR27jOi","display_url":"pic.twitter.com\/9bsiR27jOi","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/663530805285621760\/photo\/1","type":"photo","sizes":{"large":{"w":491,"h":348,"resize":"fit"},"medium":{"w":491,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"}},"source_status_id":663530805285621760,"source_status_id_str":"663530805285621760","source_user_id":3220957304,"source_user_id_str":"3220957304"}]},"extended_entities":{"media":[{"id":663530794674053120,"id_str":"663530794674053120","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVVvgIUYAAAnQV.jpg","url":"https:\/\/t.co\/9bsiR27jOi","display_url":"pic.twitter.com\/9bsiR27jOi","expanded_url":"http:\/\/twitter.com\/MenSexyBody\/status\/663530805285621760\/photo\/1","type":"photo","sizes":{"large":{"w":491,"h":348,"resize":"fit"},"medium":{"w":491,"h":348,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":240,"resize":"fit"}},"source_status_id":663530805285621760,"source_status_id_str":"663530805285621760","source_user_id":3220957304,"source_user_id_str":"3220957304"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307845633,"id_str":"663728215307845633","text":"@m_konoha_bot \u3061\u3083\u3093\u3068\u5e03\u56e3\u304b\u3051\u3066\u98a8\u90aa\u3072\u304b\u306a\u3044\u3088\u3046\u306b\u306d\u3002\u304a\u3084\u3059\u307f\u306a\u3055\u3044\uff01","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003e\u304a\u53f0\u5834\u30b5\u30c3\u30ab\u30fc\u30ac\u30fc\u30c7\u30f3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727868598325249,"in_reply_to_status_id_str":"663727868598325249","in_reply_to_user_id":1410482653,"in_reply_to_user_id_str":"1410482653","in_reply_to_screen_name":"m_konoha_bot","user":{"id":1407229645,"id_str":"1407229645","name":"\u77ac\u6728\u96bc\u4eba","screen_name":"hayato_m_bot","location":null,"url":null,"description":"\u30a4\u30ca\u30ba\u30de\u30a4\u30ec\u30d6\u30f3GO\u30ae\u30e3\u30e9\u30af\u30b7\u30fc\u306e\u77ac\u6728\u96bc\u4ebabot\u3067\u3059\u300230\u5206\u304a\u304d\u306b\u30a2\u30cb\u30e1\u306e\u53f0\u8a5e\u3001\u634f\u9020\u53f0\u8a5e\u3092\u545f\u304d\u307e\u3059\u3002\u304a\u5225\u308c\u306e\u969b\u306f\u5fc5\u305a\u30d6\u30ed\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\uff01\u4f55\u304b\u3054\u3056\u3044\u307e\u3057\u305f\u3089DM\u3067\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":123,"friends_count":50,"listed_count":1,"favourites_count":0,"statuses_count":20197,"created_at":"Mon May 06 08:57:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3632694282\/b284e2f5eabc4f7780a7372ef89e8025_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3632694282\/b284e2f5eabc4f7780a7372ef89e8025_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"m_konoha_bot","name":"\u68ee\u6751\u597d\u8449","id":1410482653,"id_str":"1410482653","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303688193,"id_str":"663728215303688193","text":"@greate_jean \u304a\u304b\u3048\u308a\u306a\u3055\u3044\u3002\u304a\u571f\u7523\u304f\u3060\u3055\u3044\u3002\u3055\u3041\u3001\u65e9\u304f\uff01","source":"\u003ca href=\"http:\/\/www.nicovideo.jp\/mylist\/19958704\" rel=\"nofollow\"\u003e\u3046\u3061\u306e\u30d1\u30bd\u30b3\u30f3\u306e\u524d\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727973913112576,"in_reply_to_status_id_str":"663727973913112576","in_reply_to_user_id":2171709246,"in_reply_to_user_id_str":"2171709246","in_reply_to_screen_name":"greate_jean","user":{"id":352771390,"id_str":"352771390","name":"\u3046\u3061\u306e\u30cf\u30af\u59c9\u3055\u3093bot","screen_name":"Haku_Yowane_bot","location":"PC\u306e\u524d","url":"http:\/\/www.nicovideo.jp\/mylist\/19958704","description":"\u3068\u3042\u308b\u5e95\u8fbaP\u306e\u5f31\u97f3\u30cf\u30af\u3067\u3059\u3002\u30dc\u30ab\u30ed\u8a2d\u5b9a\u3067\u52d5\u3044\u3066\u307e\u3059\u3002\u3064\u3076\u3084\u304f\u6b4c\u8a5e\u306f\u305d\u306e\u5e95\u8fbaP\u306e\u5f31\u97f3\u30cf\u30af\u66f2\u3088\u308a\u3002\u4f55\u304b\u3042\u3063\u305f\u3089\u30de\u30b9\u30bf\u30fc\u306b\u805e\u3051\u3070\u3044\u3044\u3068\u601d\u3044\u307e\u3059\u3088(\u6295\u3052\u3084\u308a","protected":false,"verified":false,"followers_count":582,"friends_count":380,"listed_count":10,"favourites_count":0,"statuses_count":254979,"created_at":"Thu Aug 11 02:17:46 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3453146617\/c7c0c34aa71811aa66114f1ddb899087_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3453146617\/c7c0c34aa71811aa66114f1ddb899087_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/352771390\/1370956378","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"greate_jean","name":"@","id":2171709246,"id_str":"2171709246","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307915264,"id_str":"663728215307915264","text":"RT @akyakyakya: \u6e0b\u8c37\u306e\u30b9\u30af\u30e9\u30f3\u30d6\u30eb\u4ea4\u5dee\u70b9\u3067\u30d3\u30b8\u30e7\u30f3\u3092\u6307\u5dee\u3057\u306a\u304c\u3089\n\n\u305f\u304f\u3084\u300c\u3042\u306e\u30d3\u30b8\u30e7\u30f3\u306b\u30d0\u30fc\u30f3\u3063\u3066\u6620\u3063\u305f\u3089\u6e0b\u8c37\u306f\u4ffa\u3089\u306e\u5ead\u3084\u306a\u300d\n\n(\u4fe1\u53f7\u5f85\u3061)\n\n\u30d3\u30b8\u30e7\u30f3\u300c\u72c2\u3063\u3066\u30d8\u30a4\u30ad\u30c3\u30ba\u301c\u266a\u300d\n\n\u305f\u304f\u3084\u300c\u4ffa\u3089\u306e\u5ead\u3084\uff01\uff01\uff01\uff01(\u6b53\u559c)\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3622509012,"id_str":"3622509012","name":"\u308a\u3093\u3054\u306e\u76ae@\u80ce\u76e4\u3044\u304d\u305f\u3044\u306e\u306b...","screen_name":"vmrntjf","location":"\u306a\u3054\u3084","url":null,"description":"\u8da3\u5473\u57a2\uff0f \u90a6\u30ed\u30c3\u30af\u6a21\u7d22\u4e2d\u301c \u8a73\u3057\u304f\u306a\u308a\u305f\u3044\u301c \u8da3\u5473\u5408\u3046\u30d5\u30a9\u30ed\u30a2\u30fc\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\uff01 RAD\uff0f[A] \uff0fBUMP\uff0f OOR etc. \u90a6\u30ed\u30c3\u30af\u597d\u304d\u3068\u7e4b\u304c\u308a\u305f\u3044","protected":false,"verified":false,"followers_count":90,"friends_count":172,"listed_count":0,"favourites_count":1562,"statuses_count":588,"created_at":"Sun Sep 20 03:13:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645437781666197504\/CGNeI9Az_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645437781666197504\/CGNeI9Az_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3622509012\/1442723721","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:10:07 +0000 2015","id":663629627525492736,"id_str":"663629627525492736","text":"\u6e0b\u8c37\u306e\u30b9\u30af\u30e9\u30f3\u30d6\u30eb\u4ea4\u5dee\u70b9\u3067\u30d3\u30b8\u30e7\u30f3\u3092\u6307\u5dee\u3057\u306a\u304c\u3089\n\n\u305f\u304f\u3084\u300c\u3042\u306e\u30d3\u30b8\u30e7\u30f3\u306b\u30d0\u30fc\u30f3\u3063\u3066\u6620\u3063\u305f\u3089\u6e0b\u8c37\u306f\u4ffa\u3089\u306e\u5ead\u3084\u306a\u300d\n\n(\u4fe1\u53f7\u5f85\u3061)\n\n\u30d3\u30b8\u30e7\u30f3\u300c\u72c2\u3063\u3066\u30d8\u30a4\u30ad\u30c3\u30ba\u301c\u266a\u300d\n\n\u305f\u304f\u3084\u300c\u4ffa\u3089\u306e\u5ead\u3084\uff01\uff01\uff01\uff01(\u6b53\u559c)\u300d","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117595268,"id_str":"117595268","name":"\u3042\u304d\u3089\u304b\u306b\u3042\u304d\u3089","screen_name":"akyakyakya","location":"\u65e5\u5e38\u306f\u30a4\u30f3\u30b9\u30bf\u30b0\u30e9\u30e0","url":"http:\/\/theoralcigarettes.com","description":"\u306f\u3058\u3081\u307e\u3057\u3066\u3002\n\u5642\u306e\u30c0\u30fc\u30af\u30db\u30fc\u30b9\u30d0\u30f3\u30c9\u300aTHE ORAL CIGARETTES\u300b\u306e\u30d9\u30fc\u30b7\u30b9\u30c8\u3068\u30cf\u30e2\u30ea\u30b9\u30c8\u3002\n\u300e\u30b9\u30c8\u30e9\u30c3\u30d7\u306f\u8ab0\u3088\u308a\u3082\u77ed\u304f\u3001\u811a\u306f\u8ab0\u3088\u308a\u3082\u9ad8\u304f\u300f\u3092\u30c6\u30fc\u30de\u306b\u30d9\u30fc\u30b9\u3092\u632f\u308a\u56de\u3057\u3066\u307e\u3059\u3002\n\u3046\u3061\u306e\u30c1\u30fc\u30e0\u306f\u6700\u5f37\u3067\u3059\u3002","protected":false,"verified":true,"followers_count":28410,"friends_count":363,"listed_count":669,"favourites_count":1321,"statuses_count":30046,"created_at":"Fri Feb 26 01:11:28 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566041868996055040\/BCapaONf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566041868996055040\/BCapaONf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117595268\/1396836367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":705,"favorite_count":2222,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akyakyakya","name":"\u3042\u304d\u3089\u304b\u306b\u3042\u304d\u3089","id":117595268,"id_str":"117595268","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307997184,"id_str":"663728215307997184","text":"The 1,841 km Trans Anatolian Natural Gas Pipeline Project (TANAP) https:\/\/t.co\/YWH6HaCeqS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108052332,"id_str":"108052332","name":"#GazaReports","screen_name":"GazaReports","location":"Pennsylvania\/New Hampshire,USA","url":"http:\/\/www.GazaReports.com","description":"#Palestine Breaking War Nuclear News & Views Global World Strategist #MedicalMarijuana Singer\/Songwriter\/Guitarist Farmer Plant Grower","protected":false,"verified":false,"followers_count":12540,"friends_count":12204,"listed_count":241,"favourites_count":4652,"statuses_count":83260,"created_at":"Sun Jan 24 17:33:58 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556322629942919169\/3h8Dxe-p.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556322629942919169\/3h8Dxe-p.png","profile_background_tile":true,"profile_link_color":"169110","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A50533","profile_text_color":"169110","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/540281824958623744\/DK-8mMP9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/540281824958623744\/DK-8mMP9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108052332\/1441767401","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YWH6HaCeqS","expanded_url":"http:\/\/pipelinesinternational.com\/news\/azerbaijan_to_start_construction_of_tanap_pipeline_in_april_2015\/88890","display_url":"pipelinesinternational.com\/news\/azerbaija\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215299485697,"id_str":"663728215299485697","text":"@MeeR_Yuu \u2026\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728169489338368,"in_reply_to_status_id_str":"663728169489338368","in_reply_to_user_id":2515160604,"in_reply_to_user_id_str":"2515160604","in_reply_to_screen_name":"MeeR_Yuu","user":{"id":2392734643,"id_str":"2392734643","name":"\u3055\u304e\u3055\u308f\u3075\u30fc\u3084@404","screen_name":"fu_ya_kisalagi","location":null,"url":null,"description":"\uff7b\uff72\uff80\uff8f\uff70!!\u70ad\u9178\u304c\u597d\u304d\u3002\u6c17\u304c\u4ed8\u3044\u305f\u3089\u3075\u307f\u3075\u307fP\u3068\u5316\u3057\u3066\u3044\u305f\u3089\u3057\u3044\uff1f\u4e00\u5fdc\u5f10\u5bfa\u3084\u3063\u3066\u308b\u3002DDR\u306f\u3082\u3046\u8eab\u4f53\u304c\u7121\u7406\u3002","protected":false,"verified":false,"followers_count":178,"friends_count":232,"listed_count":14,"favourites_count":35882,"statuses_count":66649,"created_at":"Sun Mar 16 13:34:05 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654693663226785792\/-Mo7Xv2t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654693663226785792\/-Mo7Xv2t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2392734643\/1445361552","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MeeR_Yuu","name":"\\( \uff65\u03c9\uff65)\/\u60a0\u30cb\u30e3\u30eb@","id":2515160604,"id_str":"2515160604","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080112658"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303680000,"id_str":"663728215303680000","text":"\u5c55\u793a\u4f1a\u306e\u30d5\u30e9\u30a4\u30e4\u30fc\u3068\u304bDM\u3082\u30de\u30b9\u30ad\u30f3\u30b0\u30c6\u30fc\u30d7\u3067\u8cbc\u3063\u3066\u98fe\u3063\u3066\u308b\u3088\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3221492852,"id_str":"3221492852","name":"\u3086\u3089\u3053 11\/11\u301c\u6771\u4eac\u884c\u304f\u3088","screen_name":"Dokkoishock","location":"\u3054\u3053\u305f\u3083\u306e\u592a\u3082\u3082","url":"http:\/\/twpf.jp\/Dokkoishock","description":"\u6210\u4eba\u6e08\u793e\u4f1a\u4e0d\u9069\u5408\u30b4\u30ea\u30e9\u30aa\u30c2\u30b5\u30f3\u25c6\u30b7\u30e7\u30bf\u3068\u7f8e\u5c11\u5e74\u3068\u30b5\u30fc\u30e2\u30f3\u304c\u597d\u304d\u3067\u3059\u25c6\u3068\u3046\u3089\u3076\u3068\u6642\u3005\u3042\u3093\u3059\u305f","protected":false,"verified":false,"followers_count":68,"friends_count":69,"listed_count":13,"favourites_count":2870,"statuses_count":4466,"created_at":"Wed May 20 14:37:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662582368092340225\/Kl8WCn3Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662582368092340225\/Kl8WCn3Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221492852\/1445183442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215316393984,"id_str":"663728215316393984","text":"Nada es permanente, nada es universal, la vida es un constante cambio, da muchas vueltas...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":223320782,"id_str":"223320782","name":"Ana Maria Osorio.","screen_name":"Anita_Osorio_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":162,"friends_count":294,"listed_count":0,"favourites_count":471,"statuses_count":2448,"created_at":"Mon Dec 06 01:48:24 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655591718377623552\/CsEomdf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655591718377623552\/CsEomdf4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/223320782\/1445140289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00fe503e330c0489","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00fe503e330c0489.json","place_type":"city","name":"Ibagu\u00e9","full_name":"Ibagu\u00e9, Tolima","country_code":"CO","country":"Colombia","bounding_box":{"type":"Polygon","coordinates":[[[-75.616827,4.228622],[-75.616827,4.668724],[-75.014328,4.668724],[-75.014328,4.228622]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112662"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215312089088,"id_str":"663728215312089088","text":"@kazuki0906K @nakachanyuya \u3088\u3063\u3057\u3083\n\u3079\u3093\u304d\u3087\u3063\u3079\u3093\u304d\u3087\u3063","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724494326882304,"in_reply_to_status_id_str":"663724494326882304","in_reply_to_user_id":2859873074,"in_reply_to_user_id_str":"2859873074","in_reply_to_screen_name":"kazuki0906K","user":{"id":2821454754,"id_str":"2821454754","name":"\u685c\u53f0\u30c6\u30cb\u30b9\u90e8bot","screen_name":"sakuradaitennis","location":"\u5929\u767d\u5ddd","url":null,"description":"\u685c\u53f0\u786c\u5f0f\u30c6\u30cb\u30b9bot\u3060\u3046\u307f\u3083","protected":false,"verified":false,"followers_count":187,"friends_count":191,"listed_count":0,"favourites_count":40,"statuses_count":332,"created_at":"Sat Sep 20 09:16:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718867861004288\/3-20gW_n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718867861004288\/3-20gW_n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2821454754\/1447080079","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kazuki0906K","name":"\u304b\u305a\u304d","id":2859873074,"id_str":"2859873074","indices":[0,12]},{"screen_name":"nakachanyuya","name":"\u306a\u304b\u3061\u3083\u3093","id":2410884936,"id_str":"2410884936","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112661"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307911168,"id_str":"663728215307911168","text":"@mochacha626 \u5148\u6708\u3082\u540c\u3058\u3053\u3068\u3042\u308b\u306e\u3088\u3046\u3067\u3059\uff08\uff09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727679732977664,"in_reply_to_status_id_str":"663727679732977664","in_reply_to_user_id":128394574,"in_reply_to_user_id_str":"128394574","in_reply_to_screen_name":"mochacha626","user":{"id":137539682,"id_str":"137539682","name":"\u30d4\u30fc\u30ca\u30c3\u30c4","screen_name":"peanuts3849","location":null,"url":null,"description":"\u30d4\u30fc\u30ca\u30c3\u30c4\u5927\u597d","protected":false,"verified":false,"followers_count":1255,"friends_count":2046,"listed_count":30,"favourites_count":490,"statuses_count":303716,"created_at":"Tue Apr 27 01:38:55 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436677850440024064\/rPsSqjD6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436677850440024064\/rPsSqjD6.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000279427751\/da483ea1d4a40a6aebe152f2f3d727df_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000279427751\/da483ea1d4a40a6aebe152f2f3d727df_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137539682\/1417789187","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mochacha626","name":"\u3082\u3061\u3083\u3061\u3083","id":128394574,"id_str":"128394574","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215295291392,"id_str":"663728215295291392","text":"RT @7213need: \u3053\u308c\u4f5c\u3063\u305f\u4eba\u4e0a\u624b\u3044\u308f\uff5e https:\/\/t.co\/gJbERXNwTF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2377258256,"id_str":"2377258256","name":"\u3044\u308f\u3057@\u4e09\u6210\u6bbf\u306b\u304a\u306d\u3064","screen_name":"nyaonyao433","location":null,"url":null,"description":"\u305f\u3051\u307d\u3093\u306b\u7652\u3055\u308c\u308b\u65e5\u3005\u3002\u5922\u8150\u306a\u3093\u3067\u3082\u3053\u3044\u306e\u4eba\u3002\u7d75\u306f\u304a\u52c9\u5f37\u4e2d\u3002\u30c6\u30cb\u30b9\u306e\u738b\u5b50\u69d8(\u7acb\u6d77)\/\u30ae\u30e3\u30b0\u30de\u30f3\u30ac\u65e5\u548c\/\u7279\u64ae\/\u30d7\u30ea\u30ad\u30e5\u30a2\/\u540d\u63a2\u5075\u30b3\u30ca\u30f3\/\u307e\u3058\u3063\u304f\u5feb\u6597\/CC\u3055\u304f\u3089\/\u6226\u56fd\u7121\u53cc(\u77f3\u7530\u4e09\u6210)\/\u305d\u306e\u4ed6\u30a2\u30cb\u30e1\u00b7\u6f2b\u753b\u00b7BL(\u96d1\u98df) \u307b\u3068\u3093\u3069\u3064\u3076\u3084\u304b\u306a\u3044\u30ea\u30a2\u57a2\u306f\u3053\u3061\u3089\u2192\u3010 @nyao0621 \u3011","protected":false,"verified":false,"followers_count":57,"friends_count":75,"listed_count":3,"favourites_count":2864,"statuses_count":1372,"created_at":"Fri Mar 07 15:16:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646464619360256\/P5rQoFk1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646464619360256\/P5rQoFk1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2377258256\/1446554238","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:29:53 +0000 2015","id":663332613629734912,"id_str":"663332613629734912","text":"\u3053\u308c\u4f5c\u3063\u305f\u4eba\u4e0a\u624b\u3044\u308f\uff5e https:\/\/t.co\/gJbERXNwTF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2226330644,"id_str":"2226330644","name":"\u30a4\u30c3\u30bb\u30fcP","screen_name":"7213need","location":"\u79c1\u7acb \u99d2\u738b\u5b66\u5712","url":null,"description":"\u30df\u30ea\u30de\u30b9\u3084\u3063\u3066\u307e\u3059\u266a\u30e9\u30d6\u30e9\u30a4\u30d6\u3067\u306f\u3001\u4e8c\u5e74\u751f\u63a8\u3057\u3067\u3059\uff01\u4eee\u9762\u30e9\u30a4\u30c0\u30fc.\u30d7\u30ea\u30ad\u30e5\u30a2.\u30cf\u30cb\u30ef.D\u00d7D.\u30b9\u30c8\u30d6\u30e9.\u9ed2\u30d6\u30ea\u30e5.\u51b4\u3048\u30ab\u30ce.\u4ffa\u30ac\u30a4\u30eb.\u541b\u5618.\u30c7\u30a2\u30e9.\u30e2\u30f3\u5a18. RAIL WARS!. \u9b54\u5f3e\u306e\u738b\u3068\u6226\u59eb.\u3084\u307e\u3058\u3087.\u6a5f\u5de7\u5c11\u5973.\u30c8\u30ea\u30cb\u30c6\u30a3\u30bb\u30d6\u30f3.\u7570\u80fd\u30d0\u30c8 .Charlotte \u5927\u597d\u304d\u3067\u3059\u3002RT\u591a\u3081 \uff01","protected":false,"verified":false,"followers_count":2151,"friends_count":2304,"listed_count":33,"favourites_count":18285,"statuses_count":14292,"created_at":"Mon Dec 02 08:34:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542865825745473536\/hTi_Y-ny_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542865825745473536\/hTi_Y-ny_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2226330644\/1439275203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":366,"favorite_count":431,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663332336520441856,"id_str":"663332336520441856","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","url":"https:\/\/t.co\/gJbERXNwTF","display_url":"pic.twitter.com\/gJbERXNwTF","expanded_url":"http:\/\/twitter.com\/7213need\/status\/663332613629734912\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663332336520441856,"id_str":"663332336520441856","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","url":"https:\/\/t.co\/gJbERXNwTF","display_url":"pic.twitter.com\/gJbERXNwTF","expanded_url":"http:\/\/twitter.com\/7213need\/status\/663332613629734912\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/320x180\/5aimu81XhkDQYgdx.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/pl\/-P9aOOMwxz9-mtzU.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/pl\/-P9aOOMwxz9-mtzU.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/640x360\/0QHldgauXpiJA1i_.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/640x360\/0QHldgauXpiJA1i_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7213need","name":"\u30a4\u30c3\u30bb\u30fcP","id":2226330644,"id_str":"2226330644","indices":[3,12]}],"symbols":[],"media":[{"id":663332336520441856,"id_str":"663332336520441856","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","url":"https:\/\/t.co\/gJbERXNwTF","display_url":"pic.twitter.com\/gJbERXNwTF","expanded_url":"http:\/\/twitter.com\/7213need\/status\/663332613629734912\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663332613629734912,"source_status_id_str":"663332613629734912","source_user_id":2226330644,"source_user_id_str":"2226330644"}]},"extended_entities":{"media":[{"id":663332336520441856,"id_str":"663332336520441856","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663332336520441856\/pu\/img\/AtPbbX3veovisCaC.jpg","url":"https:\/\/t.co\/gJbERXNwTF","display_url":"pic.twitter.com\/gJbERXNwTF","expanded_url":"http:\/\/twitter.com\/7213need\/status\/663332613629734912\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663332613629734912,"source_status_id_str":"663332613629734912","source_user_id":2226330644,"source_user_id_str":"2226330644","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/320x180\/5aimu81XhkDQYgdx.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/pl\/-P9aOOMwxz9-mtzU.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/pl\/-P9aOOMwxz9-mtzU.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/640x360\/0QHldgauXpiJA1i_.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663332336520441856\/pu\/vid\/640x360\/0QHldgauXpiJA1i_.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112657"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303786496,"id_str":"663728215303786496","text":"Donde estabas mientras todo se derrumbaba .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988859581,"id_str":"2988859581","name":"Camii \u2764","screen_name":"Camu15C","location":"Varela ","url":null,"description":"16 a\u00f1os \nAmo a mi familia .","protected":false,"verified":false,"followers_count":358,"friends_count":319,"listed_count":0,"favourites_count":248,"statuses_count":923,"created_at":"Wed Jan 21 04:41:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652563821840740352\/fmb75aNK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652563821840740352\/fmb75aNK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988859581\/1444653386","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215328845824,"id_str":"663728215328845824","text":"\u6027\u6b32\u3060\u3051\u6e80\u305f\u305b\u308c\u3070\u3001\u4eca\u306f\u826f\u3044\u304b\u3082\uff57 #\u30bb\u30d5\u30ec\u63a2\u3057\n\u2015\u2015\u2015*\u2605* v95","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3308101981,"id_str":"3308101981","name":"\u4e0a\u7530 \u5bff\u3005\u82b1","screen_name":"ueda_suzukd8ux","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":455,"friends_count":1890,"listed_count":0,"favourites_count":0,"statuses_count":17872,"created_at":"Thu Aug 06 20:23:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30bb\u30d5\u30ec\u63a2\u3057","indices":[18,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112665"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307874304,"id_str":"663728215307874304","text":"\u30bb\u30d5\u30ec\u52df\u96c6? \u3057\u3088\u3046\u304b\u306a\u266a \u512a\u3057\u3044\u4eba\u3044\u307e\u305b\u3093\u304b\uff1f #\u30bb\u30c3\u30af\u30b9\u30d5\u30ec\u30f3\u30c9 #followmejp\n\uff9f\u2606\uff9f+\uff61\uff39\u2312 z7s","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3461725454,"id_str":"3461725454","name":"\u4e2d\u6ca2 \u8a69\u7e54","screen_name":"nakazawa_s_e9nt","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":180,"friends_count":1384,"listed_count":0,"favourites_count":0,"statuses_count":6842,"created_at":"Sat Sep 05 17:48:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30bb\u30c3\u30af\u30b9\u30d5\u30ec\u30f3\u30c9","indices":[25,34]},{"text":"followmejp","indices":[35,46]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215303716865,"id_str":"663728215303716865","text":"\u305f\u3068\u3048\u7d20\u8cea\u304c\u3042\u3063\u3066\u3082\u3001\u30b9\u30d4\u30ea\u30c3\u30c8\u3084\u81ea\u5df1\u72a0\u7272\u3001\u591a\u304f\u306e\u6211\u6162\u3092\u8a31\u5bb9\u3067\u304d\u306a\u3051\u308c\u3070\u3001\u6210\u529f\u3092\u53ce\u3081\u308b\u306e\u306f\u96e3\u3057\u3044\u3000\uff0f\u3000\uff42\uff59\u3000\u30c9\u30a5\u30f3\u30ac","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":886084543,"id_str":"886084543","name":"\u30bd\u30de\u30c1\u30cd","screen_name":"somachine65","location":"\u6771\u4eac","url":null,"description":"\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":157,"friends_count":165,"listed_count":0,"favourites_count":0,"statuses_count":133140,"created_at":"Wed Oct 17 04:39:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2728055637\/2f539a781ffbe0e9c8b97a735c4327ba_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2728055637\/2f539a781ffbe0e9c8b97a735c4327ba_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112659"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333015552,"id_str":"663728215333015552","text":"@HinenoMomoka \u304a\u308c\u5909\u614b\u3061\u3083\u3093\u3057\u306a\uff08\u7b11\uff09\n\u307e\u3041\u3001\u3042\u308a\u304c\u3068\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728074383495168,"in_reply_to_status_id_str":"663728074383495168","in_reply_to_user_id":1920185725,"in_reply_to_user_id_str":"1920185725","in_reply_to_screen_name":"HinenoMomoka","user":{"id":2959557786,"id_str":"2959557786","name":"\u65e5\u6839\u91ce\u306e\u3089\u3044\u3066\u3043\u3093","screen_name":"1122Raito","location":"\u9023\u308c\u306f\u4e00\u751f\u3082\u3093","url":null,"description":"\u5927\u962a\uff1e\u6cc9\u5dde\uff1e\u65e5\u6839\u91ce\uff1e\u4eca\u5e7415\u306e\u4ee3\u30d5\u30a9\u30ed\u30fc\u5916\u3057\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3057\u3066\u3070\u3043\u3070\u3043","protected":false,"verified":false,"followers_count":338,"friends_count":235,"listed_count":0,"favourites_count":427,"statuses_count":975,"created_at":"Mon Jan 05 11:43:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663310684696932352\/x1KHJgMl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663310684696932352\/x1KHJgMl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959557786\/1446962799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HinenoMomoka","name":"\u2133omoka .","id":1920185725,"id_str":"1920185725","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215316238336,"id_str":"663728215316238336","text":"@Osamunplus8100a \u30d5\u30a1\u30f3\u306a\u3093\u3067\u3057\u3087\u3046\u306d","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726088468586496,"in_reply_to_status_id_str":"663726088468586496","in_reply_to_user_id":2269290846,"in_reply_to_user_id_str":"2269290846","in_reply_to_screen_name":"Osamunplus8100a","user":{"id":133706916,"id_str":"133706916","name":"\u3061\u304b","screen_name":"grasshopper_inc","location":"\u30aa\u30ab\u3084\u30de","url":null,"description":"\u30d3\u30fc\u30eb\u515a\u6240\u5c5e\u3002\u6bd4\u8f03\u7684\u97f3\u697d\u304c\u597d\u304d\u3067\u3059\u3002\u7537\u3067\u3059\u3002\u30ed\u30fc\u30eb\u30df\u30fc\u30fb\u30ed\u30fc\u30eb\u30e6\u30fc\u3002\u30c9\u30a5\u30e0\u30fb\u30b9\u30d4\u30fc\u30ed\u30fc\u30fb\u30b9\u30da\u30fc\u30ed\u30fc\u3002","protected":false,"verified":false,"followers_count":409,"friends_count":436,"listed_count":6,"favourites_count":2793,"statuses_count":23358,"created_at":"Fri Apr 16 12:38:06 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/305815503\/o0210014010331864504.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/305815503\/o0210014010331864504.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637854890333573120\/qbkcQnPC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637854890333573120\/qbkcQnPC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133706916\/1357997672","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Osamunplus8100a","name":"\u3055\u3080\u4e38\u672c\u5e97","id":2269290846,"id_str":"2269290846","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112662"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215299485699,"id_str":"663728215299485699","text":"@sakutansaikawa \u3000\u898b\u305f\u76ee\u3060\u3051\u3058\u3083\u306a\u3044\u3068\u601d\u3046\u3093\u3067\u3059\u3088(\u309c\u309c)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727818170175489,"in_reply_to_status_id_str":"663727818170175489","in_reply_to_user_id":2215291525,"in_reply_to_user_id_str":"2215291525","in_reply_to_screen_name":"sakutansaikawa","user":{"id":110406034,"id_str":"110406034","name":"\u5a2f\u697d\u8ff7\u5b50@\u6d88\u8017\u6226","screen_name":"gorakumaigo","location":"\u30c6\u30ec\u30d3\u306e\u524d","url":"http:\/\/twpf.jp\/gorakumaigo#","description":"\u6f2b\u753b\u30a2\u30cb\u30e1\u597d\u304d\u3002\u30ef\u30f3\u30d1\u30f3\/\u30aa\u30eb\u30d5\u30a7\u30f3\u30ba\/\u30d5\u30a1\u30d5\u30ca\u30fc\/\u30d7\u30ed\u30d5\u8a73\u7d30\u3002","protected":false,"verified":false,"followers_count":116,"friends_count":164,"listed_count":10,"favourites_count":1978,"statuses_count":16790,"created_at":"Mon Feb 01 12:40:38 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661915182956834816\/967mgQx2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661915182956834816\/967mgQx2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110406034\/1446648186","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakutansaikawa","name":"\u9244\u8840\u306e\u3050\u307f","id":2215291525,"id_str":"2215291525","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112658"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215324688384,"id_str":"663728215324688384","text":"@mashumaro1030 \n\u3041\u3001\u305d\u3049\uff70\uff70\uff70\u3067\u3059\u304bw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714616669700098,"in_reply_to_status_id_str":"663714616669700098","in_reply_to_user_id":3184386751,"in_reply_to_user_id_str":"3184386751","in_reply_to_screen_name":"mashumaro1030","user":{"id":3647893945,"id_str":"3647893945","name":"\u24da","screen_name":"Sz5Laav","location":"\u2661\u7384\u6a39\u541b\u3068\u795e\u5bae\u5bfa\u304f\u3093\u306e\u9593\u2661","url":null,"description":"JC\u2777Sexy Zone\u27ab\u2799\u27ac\u27ad5\u4eba\u30671\u3064\uff83\uff9e\uff7d\u2661*\u21dd\u5065\u4eba\u62c5\u2665\u5ca9\u6a4b\u7384\u6a39\u2665\u795e\u5bae\u5bfa\u52c7\u592a\u2665\u24db\u24de\u24e5\u24d4\u2661\u00bb\u00bb\u00bb\u2661\u25b6\u25b6\u25b6\u7389\u5143\u98a8\u6d77\u4eba\u2661\u6a4b\u672c\u6dbc\u2661\u4e95\u4e0a\u745e\u7a00\u2661 \u30bb\u30af\u30ac\u30eb\u3055\u3093\u7e4b\u304c\u308a\u307e\u3057\u3087\u2661\n\u7121\u8a00follow\u5931\u793c\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":115,"friends_count":133,"listed_count":1,"favourites_count":896,"statuses_count":1004,"created_at":"Tue Sep 22 10:49:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647612567511142400\/RFewlaB9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647612567511142400\/RFewlaB9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3647893945\/1443237691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mashumaro1030","name":"\u795e\u5bae\u5bfa\u52c7\u592a","id":3184386751,"id_str":"3184386751","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112664"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307997185,"id_str":"663728215307997185","text":"Me & Bae will both be there \ud83d\ude1b https:\/\/t.co\/3Te4wGM0qg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3172064120,"id_str":"3172064120","name":"ihy","screen_name":"stonnneeed_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":487,"friends_count":409,"listed_count":0,"favourites_count":1593,"statuses_count":4180,"created_at":"Sat Apr 25 11:32:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655361383551209472\/NpgQp1RV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655361383551209472\/NpgQp1RV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663543809679237120,"quoted_status_id_str":"663543809679237120","quoted_status":{"created_at":"Mon Nov 09 02:29:06 +0000 2015","id":663543809679237120,"id_str":"663543809679237120","text":"Victoria Secret Having A 90% Off Sale On Black Friday \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328142139,"id_str":"3328142139","name":"\u2764","screen_name":"angelpooh__","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":311,"friends_count":156,"listed_count":1,"favourites_count":136,"statuses_count":18157,"created_at":"Mon Jun 15 23:10:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660500155003744256\/OYeqAJJ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660500155003744256\/OYeqAJJ8_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3Te4wGM0qg","expanded_url":"https:\/\/twitter.com\/angelpooh__\/status\/663543809679237120","display_url":"twitter.com\/angelpooh__\/st\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333048321,"id_str":"663728215333048321","text":"@c_R_0516 \n\u3042\u308a\u304c\u3068\u30fc\\( \u00a8\u032e )\/\u2661\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723807153090560,"in_reply_to_status_id_str":"663723807153090560","in_reply_to_user_id":4007429598,"in_reply_to_user_id_str":"4007429598","in_reply_to_screen_name":"c_R_0516","user":{"id":3290079036,"id_str":"3290079036","name":"\u3082\u3048\uff08\u3082\u3048\u3084\u3059\uff09","screen_name":"mooeiiiiiiight","location":"\u5143\u6c17\u9b42\u25b7\u6771\u4eac\u5168\u30b9\u30c6","url":null,"description":"\u2601\ufe0f \u2601 \uff4a\uff4b\uff11 \u3002\u72ec\u5360\u6b32 \u3002\u6a2a\u9854 \u3002\u30c0\u30a4\u30a8\u30c3\u30c8 \u3002\u60aa\u9b54\u3068\u5929\u4f7f \u3002\u2601\ufe0f\u2601\ufe0f #\u59c9\u59b9","protected":false,"verified":false,"followers_count":48,"friends_count":44,"listed_count":6,"favourites_count":32,"statuses_count":412,"created_at":"Fri Jul 24 15:11:25 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663248780502761473\/GZP2Y4Qj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663248780502761473\/GZP2Y4Qj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3290079036\/1446999314","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"c_R_0516","name":"\u304f \u3089 \u308c \u30f3 \u3002","id":4007429598,"id_str":"4007429598","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215299506176,"id_str":"663728215299506176","text":"@RD54xoxo17YT \n\u304a\u3044\uff01\u305a\u308a\u30fc\u305e\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716578203078656,"in_reply_to_status_id_str":"663716578203078656","in_reply_to_user_id":2906706721,"in_reply_to_user_id_str":"2906706721","in_reply_to_screen_name":"RD54xoxo17YT","user":{"id":3303405798,"id_str":"3303405798","name":"\u9ec4\u8272\u3044\u30d1\u30f3\u30c0","screen_name":"sakura_girl915","location":"\u5927\u597d\u304d\u306a\u3042\u306a\u305f\u306e\u96a3","url":"http:\/\/twpf.jp\/sakura_girl915","description":"98line\u273d\u307e\u3063\u3059\u30fc\u3088\u308a\u306eall\u62c5\u273d\u6fc3\u3044\u7d61\u307f\u5e0c\u671b","protected":false,"verified":false,"followers_count":220,"friends_count":243,"listed_count":1,"favourites_count":3962,"statuses_count":3680,"created_at":"Sat Aug 01 15:10:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646356126372532224\/D7dcGPyy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646356126372532224\/D7dcGPyy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303405798\/1443027961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RD54xoxo17YT","name":"Mie\u3002\u261e\u30c6\u30b9\u30c8\u671f\u9593\u4f4e\u6d6e\u4e0a\u4e2d","id":2906706721,"id_str":"2906706721","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112658"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215316430848,"id_str":"663728215316430848","text":"RT @RelatableQuote: I can't wait for this https:\/\/t.co\/LLD2830a3d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3407963237,"id_str":"3407963237","name":"Lauren Coughenour \u265b","screen_name":"Larencoughenour","location":"North Carolina, USA","url":null,"description":"freshman @ ERHS\u2741","protected":false,"verified":false,"followers_count":175,"friends_count":178,"listed_count":0,"favourites_count":649,"statuses_count":270,"created_at":"Sat Aug 08 00:16:35 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662780441565470720\/EQucXTf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662780441565470720\/EQucXTf4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3407963237\/1443386801","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:42:36 +0000 2015","id":663698199375446016,"id_str":"663698199375446016","text":"I can't wait for this https:\/\/t.co\/LLD2830a3d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147305691,"id_str":"147305691","name":"Relatable Quotes","screen_name":"RelatableQuote","location":null,"url":"https:\/\/Instagram.com\/arlindmusliu\/","description":"Tweets that Relate to your daily life! If you can relate then Retweet! *we do not own content posted* \/\/ Contact: contactrelatablequote@gmail.com","protected":false,"verified":false,"followers_count":3206378,"friends_count":16205,"listed_count":8674,"favourites_count":20793,"statuses_count":59615,"created_at":"Sun May 23 19:42:54 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"D815DB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565287686584676353\/e2OMW_BS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147305691\/1423611170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3089,"favorite_count":4306,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663698191234240512,"id_str":"663698191234240512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663698191234240512,"id_str":"663698191234240512","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}}},{"id":663698191242653696,"id_str":"663698191242653696","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q8WcAAMbJF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q8WcAAMbJF.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":583,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":583,"h":438,"resize":"fit"}}},{"id":663698191238471680,"id_str":"663698191238471680","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q7WoAAvUJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q7WoAAvUJo.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":389,"resize":"fit"},"medium":{"w":583,"h":389,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663698191259459584,"id_str":"663698191259459584","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_RAW4AALjKi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_RAW4AALjKi.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":583,"h":390,"resize":"fit"},"large":{"w":583,"h":390,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RelatableQuote","name":"Relatable Quotes","id":147305691,"id_str":"147305691","indices":[3,18]}],"symbols":[],"media":[{"id":663698191234240512,"id_str":"663698191234240512","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663698199375446016,"source_status_id_str":"663698199375446016","source_user_id":147305691,"source_user_id_str":"147305691"}]},"extended_entities":{"media":[{"id":663698191234240512,"id_str":"663698191234240512","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q6WEAAsTtf.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":583,"h":328,"resize":"fit"}},"source_status_id":663698199375446016,"source_status_id_str":"663698199375446016","source_user_id":147305691,"source_user_id_str":"147305691"},{"id":663698191242653696,"id_str":"663698191242653696","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q8WcAAMbJF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q8WcAAMbJF.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":583,"h":438,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":583,"h":438,"resize":"fit"}},"source_status_id":663698199375446016,"source_status_id_str":"663698199375446016","source_user_id":147305691,"source_user_id_str":"147305691"},{"id":663698191238471680,"id_str":"663698191238471680","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_Q7WoAAvUJo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_Q7WoAAvUJo.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":389,"resize":"fit"},"medium":{"w":583,"h":389,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663698199375446016,"source_status_id_str":"663698199375446016","source_user_id":147305691,"source_user_id_str":"147305691"},{"id":663698191259459584,"id_str":"663698191259459584","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXt_RAW4AALjKi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXt_RAW4AALjKi.jpg","url":"https:\/\/t.co\/LLD2830a3d","display_url":"pic.twitter.com\/LLD2830a3d","expanded_url":"http:\/\/twitter.com\/RelatableQuote\/status\/663698199375446016\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":583,"h":390,"resize":"fit"},"large":{"w":583,"h":390,"resize":"fit"}},"source_status_id":663698199375446016,"source_status_id_str":"663698199375446016","source_user_id":147305691,"source_user_id_str":"147305691"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112662"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215295438848,"id_str":"663728215295438848","text":"I liked a @YouTube video from @luckyskillfaker https:\/\/t.co\/J0vcOuPMGO BLACK OPS 3 - Best Settings | Mouse Fix + No Stutter \/ LAG","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1300255273,"id_str":"1300255273","name":"Gianni B","screen_name":"XxSyLiss013xX","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7,"friends_count":40,"listed_count":1,"favourites_count":31,"statuses_count":330,"created_at":"Mon Mar 25 16:54:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/J0vcOuPMGO","expanded_url":"http:\/\/youtu.be\/XzYwhEHW3HA?a","display_url":"youtu.be\/XzYwhEHW3HA?a","indices":[47,70]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[10,18]},{"screen_name":"luckySkillFaker","name":"Densky","id":243359463,"id_str":"243359463","indices":[30,46]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112657"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215312175104,"id_str":"663728215312175104","text":"Scrabble art - Great Christmas present for a Northern Soul fan. Frame size is 32 x 23cm priced at \u00a313. #northernsoul Pls RT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3944641547,"id_str":"3944641547","name":"Bespoke Crafts","screen_name":"bespokecraftsuk","location":"Mirfield, England","url":null,"description":null,"protected":false,"verified":false,"followers_count":22,"friends_count":147,"listed_count":1,"favourites_count":0,"statuses_count":3,"created_at":"Tue Oct 13 07:57:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656750968768471040\/qzSQYlfh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656750968768471040\/qzSQYlfh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3944641547\/1445950110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"northernsoul","indices":[103,116]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112661"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215299522560,"id_str":"663728215299522560","text":"RT @_phafinx_: \u0e15\u0e2d\u0e19\u0e41\u0e23\u0e01\u0e01\u0e39\u0e41\u0e1a\u0e1a\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e2b\u0e47\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e35\u0e49\u0e08\u0e31\u0e07 \u0e42\u0e0a\u0e04\u0e14\u0e35\u0e2d\u0e30\u0e41\u0e1f\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \u0e1e\u0e2d\u0e40\u0e08\u0e2d\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48 spoil \u0e44\u0e27\u0e49\u0e1b\u0e38\u0e4a\u0e1b.. \u0e2d\u0e37\u0e21 #\u0e01\u0e39\u0e08\u0e30\u0e44\u0e21\u0e48\u0e22\u0e2d\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e19\u0e35\u0e49\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27 http:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":295541884,"id_str":"295541884","name":"SiriWannnnn","screen_name":"SIriwaNiessLZ","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":141,"friends_count":125,"listed_count":1,"favourites_count":152,"statuses_count":39809,"created_at":"Mon May 09 07:06:55 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/284502867\/hh.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/284502867\/hh.JPG","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"1249EB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661950953021505537\/1D-aZ0Cp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661950953021505537\/1D-aZ0Cp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/295541884\/1433957981","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Aug 06 12:43:48 +0000 2015","id":629271653634043904,"id_str":"629271653634043904","text":"\u0e15\u0e2d\u0e19\u0e41\u0e23\u0e01\u0e01\u0e39\u0e41\u0e1a\u0e1a\u0e2d\u0e22\u0e32\u0e01\u0e40\u0e2b\u0e47\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07\u0e04\u0e19\u0e19\u0e35\u0e49\u0e08\u0e31\u0e07 \u0e42\u0e0a\u0e04\u0e14\u0e35\u0e2d\u0e30\u0e41\u0e1f\u0e19\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01 \u0e1e\u0e2d\u0e40\u0e08\u0e2d\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48 spoil \u0e44\u0e27\u0e49\u0e1b\u0e38\u0e4a\u0e1b.. \u0e2d\u0e37\u0e21 #\u0e01\u0e39\u0e08\u0e30\u0e44\u0e21\u0e48\u0e22\u0e2d\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e19\u0e35\u0e49\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27 http:\/\/t.co\/M3FjGV9c9p","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1185124784,"id_str":"1185124784","name":"\u0e04\u0e19\u0e19\u0e35\u0e49\u0e01\u0e47\u0e19\u0e32\u0e07\u0e1f\u0e49\u0e32","screen_name":"_phafinx_","location":"\u0e40\u0e22\u0e47\u0e14\u0e01\u0e31\u0e19\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e47\u0e19\u0e15\u0e49\u0e2d\u0e07\u0e43\u0e0a\u0e49\u0e43\u0e08","url":null,"description":"\u0e08\u0e35\u0e1a\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e1c\u0e34\u0e14 \u0e08\u0e35\u0e1a\u0e15\u0e34\u0e14\u0e44\u0e21\u0e48\u0e16\u0e38\u0e07 | \u0e04\u0e19\u0e2d\u0e49\u0e27\u0e19\u0e01\u0e47\u0e21\u0e35\u0e2b\u0e31\u0e27\u0e43\u0e08 #Atype DM10+","protected":false,"verified":false,"followers_count":1893,"friends_count":185,"listed_count":3,"favourites_count":590,"statuses_count":180523,"created_at":"Sat Feb 16 08:11:02 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/541977939667980288\/4VXnm8IA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/541977939667980288\/4VXnm8IA.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662699655503867904\/5xtzeNKv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662699655503867904\/5xtzeNKv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1185124784\/1446683659","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17099,"favorite_count":950,"entities":{"hashtags":[{"text":"\u0e01\u0e39\u0e08\u0e30\u0e44\u0e21\u0e48\u0e22\u0e2d\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e19\u0e35\u0e49\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27","indices":[88,116]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":629271582079258624,"id_str":"629271582079258624","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":629271582079258624,"id_str":"629271582079258624","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":629271582192500736,"id_str":"629271582192500736","indices":[117,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK4PVAAAMOWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK4PVAAAMOWA.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e01\u0e39\u0e08\u0e30\u0e44\u0e21\u0e48\u0e22\u0e2d\u0e21\u0e40\u0e2b\u0e47\u0e19\u0e23\u0e39\u0e1b\u0e19\u0e35\u0e49\u0e04\u0e19\u0e40\u0e14\u0e35\u0e22\u0e27","indices":[103,131]}],"urls":[],"user_mentions":[{"screen_name":"_phafinx_","name":"\u0e04\u0e19\u0e19\u0e35\u0e49\u0e01\u0e47\u0e19\u0e32\u0e07\u0e1f\u0e49\u0e32","id":1185124784,"id_str":"1185124784","indices":[3,13]}],"symbols":[],"media":[{"id":629271582079258624,"id_str":"629271582079258624","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":629271653634043904,"source_status_id_str":"629271653634043904","source_user_id":1185124784,"source_user_id_str":"1185124784"}]},"extended_entities":{"media":[{"id":629271582079258624,"id_str":"629271582079258624","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK30VEAAniBI.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":629271653634043904,"source_status_id_str":"629271653634043904","source_user_id":1185124784,"source_user_id_str":"1185124784"},{"id":629271582192500736,"id_str":"629271582192500736","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CLufK4PVAAAMOWA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CLufK4PVAAAMOWA.jpg","url":"http:\/\/t.co\/M3FjGV9c9p","display_url":"pic.twitter.com\/M3FjGV9c9p","expanded_url":"http:\/\/twitter.com\/_phafinx_\/status\/629271653634043904\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":629271653634043904,"source_status_id_str":"629271653634043904","source_user_id":1185124784,"source_user_id_str":"1185124784"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080112658"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215316234241,"id_str":"663728215316234241","text":"RT @5SOSTL__: Luke Calum and Ashton interview with @FRITZde https:\/\/t.co\/0rsB6Lc4l6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2425467601,"id_str":"2425467601","name":"Paul Wong-ker","screen_name":"123paul5SOS","location":"NEW BROKEN SCENE","url":"http:\/\/www.wattpad.com\/user\/sorrywongnumber","description":"The Faster The Furious","protected":false,"verified":false,"followers_count":422,"friends_count":235,"listed_count":2,"favourites_count":2634,"statuses_count":9259,"created_at":"Thu Apr 03 11:11:18 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662111044274286592\/-6XTvGFO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662111044274286592\/-6XTvGFO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2425467601\/1446695126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:04 +0000 2015","id":663727508047724544,"id_str":"663727508047724544","text":"Luke Calum and Ashton interview with @FRITZde https:\/\/t.co\/0rsB6Lc4l6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2531055248,"id_str":"2531055248","name":"5SOSTL\u1d40\u1d34\u1d31\u1d3c\u1d3f\u1d35\u1d33\u1d35\u1d3a\u1d2c\u1d38","screen_name":"5SOSTL__","location":"CONTACT|| 5SOSTL2012@gmail.com","url":"https:\/\/www.youtube.com\/channel\/UCB4qMr4MQCPxE7y3gasKG4A","description":"My name is Melanie. I love @5sos and love helping the fam out xx","protected":false,"verified":false,"followers_count":17101,"friends_count":1830,"listed_count":64,"favourites_count":20947,"statuses_count":55928,"created_at":"Wed May 28 23:14:25 +0000 2014","utc_offset":46800,"time_zone":"Pacific\/Auckland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"5B212F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556270682917445632\/zaYwQYY4.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556270682917445632\/zaYwQYY4.png","profile_background_tile":false,"profile_link_color":"5B212F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662979473436971008\/oK0iuriQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662979473436971008\/oK0iuriQ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FRITZde","name":"Radio Fritz","id":16296946,"id_str":"16296946","indices":[37,45]}],"symbols":[],"media":[{"id":663727503626907648,"id_str":"663727503626907648","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","url":"https:\/\/t.co\/0rsB6Lc4l6","display_url":"pic.twitter.com\/0rsB6Lc4l6","expanded_url":"http:\/\/twitter.com\/5SOSTL__\/status\/663727508047724544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727503626907648,"id_str":"663727503626907648","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","url":"https:\/\/t.co\/0rsB6Lc4l6","display_url":"pic.twitter.com\/0rsB6Lc4l6","expanded_url":"http:\/\/twitter.com\/5SOSTL__\/status\/663727508047724544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOSTL__","name":"5SOSTL\u1d40\u1d34\u1d31\u1d3c\u1d3f\u1d35\u1d33\u1d35\u1d3a\u1d2c\u1d38","id":2531055248,"id_str":"2531055248","indices":[3,12]},{"screen_name":"FRITZde","name":"Radio Fritz","id":16296946,"id_str":"16296946","indices":[51,59]}],"symbols":[],"media":[{"id":663727503626907648,"id_str":"663727503626907648","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","url":"https:\/\/t.co\/0rsB6Lc4l6","display_url":"pic.twitter.com\/0rsB6Lc4l6","expanded_url":"http:\/\/twitter.com\/5SOSTL__\/status\/663727508047724544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727508047724544,"source_status_id_str":"663727508047724544","source_user_id":2531055248,"source_user_id_str":"2531055248"}]},"extended_entities":{"media":[{"id":663727503626907648,"id_str":"663727503626907648","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIpeFWsAAWKzH.jpg","url":"https:\/\/t.co\/0rsB6Lc4l6","display_url":"pic.twitter.com\/0rsB6Lc4l6","expanded_url":"http:\/\/twitter.com\/5SOSTL__\/status\/663727508047724544\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727508047724544,"source_status_id_str":"663727508047724544","source_user_id":2531055248,"source_user_id_str":"2531055248"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112662"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215320498176,"id_str":"663728215320498176","text":"@May_Flamel \u306b\u3063\u3053\u306b\u3063\u3053\u306b\u30fc\u2661\u3042\u306a\u305f\u306e\u30cf\u30fc\u30c8\u306b\u306b\u3053\u306b\u3053\u306b\u30fc\u2661\u7b11\u9854\u3092\u5c4a\u3051\u308b\u77e2\u6fa4\u306b\u3053\u306b\u3053\u30fc \u266a\u306b\u3053\u306b\u30fc\u3063\u3066\u899a\u3048\u3066\u30e9\u30d6\u306b\u3053\u2661","source":"\u003ca href=\"http:\/\/www5.makebot.sh\/user\/oauth\/callback\" rel=\"nofollow\"\u003e\u77e2\u6fa4\u30d1\u30ec\u30b9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727925498265600,"in_reply_to_status_id_str":"663727925498265600","in_reply_to_user_id":74747747,"in_reply_to_user_id_str":"74747747","in_reply_to_screen_name":"May_Flamel","user":{"id":1407717282,"id_str":"1407717282","name":"\u306b\u3063\u3053\u306b\u3063\u3053\u306b\u30fcBOT","screen_name":"nikkonikkonibot","location":"\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u5916\u795e\u75301-1-5 ","url":"http:\/\/youtu.be\/fRJrTpEUbPE","description":"\u4e16\u754c\u306e\u30a2\u30a4\u30c9\u30eb\u306b\u3053\u306b\u30fc\u73fe\u308b\u3002\u771f\u59eb\u3061\u3083\u3093\u5e78\u305b\u30cb\u30b3\u306d","protected":false,"verified":false,"followers_count":2159,"friends_count":332,"listed_count":46,"favourites_count":3,"statuses_count":684385,"created_at":"Mon May 06 13:20:43 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621677873582112768\/JGBm3LWB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621677873582112768\/JGBm3LWB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"May_Flamel","name":"\u30e1\u30a4\u30fb\u30d5\u30e9\u30e1\u30eb","id":74747747,"id_str":"74747747","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112663"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215307849728,"id_str":"663728215307849728","text":"\u3046\u304a\u304a\u304a\u304a\u304a\u304a\uff01\uff01\uff01\uff01\uff01\uff01\u3081\u3063\u3061\u3083\u30f4\u30a3\u30ec\u30d0\u30f3\u597d\u304d\u5973\u3063\u3066\u611f\u3058\u3084\u3046\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\u304a\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\u30a6\u30a7\u30fc\u30a4\u7cfb\u304b\uff01\uff01\uff01\uff01\u30a6\u30a7\u30fc\u30a4\u7cfb\u306a\u3093\u304b\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1128306924,"id_str":"1128306924","name":"\u5f53\u305f\u308a\u307e\u305b\u3093\u3067\u3057\u305f","screen_name":"onorezassyu","location":"\u51ac\u6728\u5e02\u21c4\u4e09\u9580\u5e02\u21c4\u30d8\u30eb\u30b5\u30ec\u30e0\u30ba\u30fb\u30ed\u30c3\u30c8\u21c4\u795e\u5ba4\u753a","url":null,"description":"\u8a00\u3063\u3066\u308b\u3053\u3068\u306f\u5927\u4f53\u5197\u8ac7","protected":false,"verified":false,"followers_count":43,"friends_count":122,"listed_count":0,"favourites_count":1915,"statuses_count":24226,"created_at":"Mon Jan 28 15:00:32 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660494308215140352\/T27KpcjX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660494308215140352\/T27KpcjX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1128306924\/1446309089","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080112660"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333191680,"id_str":"663728215333191680","text":"Cada d\u00eda peores @losmanolostv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727994138177536,"in_reply_to_status_id_str":"663727994138177536","in_reply_to_user_id":583094600,"in_reply_to_user_id_str":"583094600","in_reply_to_screen_name":"alvaromulas14","user":{"id":583094600,"id_str":"583094600","name":"Creador de sonrisas.","screen_name":"alvaromulas14","location":"#Malahide","url":null,"description":"Jugador y capit\u00e1n del juvenil del C.D.Valdetorres, Mediocentro con el n\u00famero 14. El l\u00edmite lo pones t\u00fa. \u26bd\u2764","protected":false,"verified":false,"followers_count":658,"friends_count":519,"listed_count":0,"favourites_count":2496,"statuses_count":19794,"created_at":"Thu May 17 20:06:51 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/803665761\/786267c68e008864f24f42966b09d339.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/803665761\/786267c68e008864f24f42966b09d339.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3226458584\/8e14543821246294a501ad126e828b45_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3226458584\/8e14543821246294a501ad126e828b45_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/583094600\/1360509079","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"losmanolostv","name":"Deportes Cuatro","id":322126448,"id_str":"322126448","indices":[16,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215333216256,"id_str":"663728215333216256","text":"Ainda n\u00e3o superei #4DaysTillPURPOSE https:\/\/t.co\/NZMSzKo1pO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2871367275,"id_str":"2871367275","name":"Purpose #nov13","screen_name":"heyjustinback","location":"Justin Bieber Me Seguiu ","url":null,"description":"22\/03\/2015, 22:45 \u2764\ufe0f Se voc\u00ea acha que eu sou legal ent\u00e3o espera eu come\u00e7ar a falar sobre o Justin Bieber","protected":false,"verified":false,"followers_count":853,"friends_count":747,"listed_count":2,"favourites_count":16371,"statuses_count":23216,"created_at":"Mon Nov 10 23:05:37 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662284292106620928\/x9GJWtIC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662284292106620928\/x9GJWtIC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2871367275\/1446647535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[19,36]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728208886525953,"id_str":"663728208886525953","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJShYWcAERQaT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJShYWcAERQaT.jpg","url":"https:\/\/t.co\/NZMSzKo1pO","display_url":"pic.twitter.com\/NZMSzKo1pO","expanded_url":"http:\/\/twitter.com\/heyjustinback\/status\/663728215333216256\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":356,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":334,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728208886525953,"id_str":"663728208886525953","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJShYWcAERQaT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJShYWcAERQaT.jpg","url":"https:\/\/t.co\/NZMSzKo1pO","display_url":"pic.twitter.com\/NZMSzKo1pO","expanded_url":"http:\/\/twitter.com\/heyjustinback\/status\/663728215333216256\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":356,"resize":"fit"},"small":{"w":340,"h":189,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":334,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080112666"} +{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728215324688385,"id_str":"663728215324688385","text":"Be sure to follow all of our social media sites so you all can stay updated on what's going on! #EnjoyLifeAtTheTop https:\/\/t.co\/1C6nVxZP0t","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2443984850,"id_str":"2443984850","name":"Windhill Apartments","screen_name":"WindhillApts","location":null,"url":null,"description":"Live life at the top! Nacogdoches' most luxury community nestled in the piney woods. Call for an appointment : 936-560-1771.","protected":false,"verified":false,"followers_count":45,"friends_count":185,"listed_count":0,"favourites_count":23,"statuses_count":259,"created_at":"Mon Apr 14 14:23:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661979581524500480\/ouQ5gQAa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661979581524500480\/ouQ5gQAa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2443984850\/1433865904","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnjoyLifeAtTheTop","indices":[96,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728100660764672,"id_str":"663728100660764672","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMONUYAAQ1GX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMONUYAAQ1GX.jpg","url":"https:\/\/t.co\/1C6nVxZP0t","display_url":"pic.twitter.com\/1C6nVxZP0t","expanded_url":"http:\/\/twitter.com\/WindhillApts\/status\/663728215324688385\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":899,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728100660764672,"id_str":"663728100660764672","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMONUYAAQ1GX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMONUYAAQ1GX.jpg","url":"https:\/\/t.co\/1C6nVxZP0t","display_url":"pic.twitter.com\/1C6nVxZP0t","expanded_url":"http:\/\/twitter.com\/WindhillApts\/status\/663728215324688385\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":217,"resize":"fit"},"large":{"w":899,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080112664"} +{"delete":{"status":{"id":561166560530665472,"id_str":"561166560530665472","user_id":2793999860,"user_id_str":"2793999860"},"timestamp_ms":"1447080113164"}} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514920961,"id_str":"663728219514920961","text":"RT @TheProofMusic: #iSay drops tomorrow. Get it on https:\/\/t.co\/8WtddIhBVX. @caristoclear @itsretunes @thenameisMag44 @Twonjex @DjMuji1 htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":588432031,"id_str":"588432031","name":"caristo chitamfya jr","screen_name":"caristoclear","location":"lusaka,zambia","url":"http:\/\/www.facebook.com\/caristoclear","description":"News Anchor\/Radio Presenter at @QFmzambia @RuffKidMusic Manager\/MC\/ Caristochitamfyajr@gmail.com @KEKOTOWN Number 1 Zambian Promoter #Soccer Analyst","protected":false,"verified":false,"followers_count":10566,"friends_count":3287,"listed_count":19,"favourites_count":1189,"statuses_count":9402,"created_at":"Wed May 23 17:02:26 +0000 2012","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526415656862744576\/3lHZJWDX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526415656862744576\/3lHZJWDX.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526416379566497792\/fwgfnjDP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526416379566497792\/fwgfnjDP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588432031\/1406161764","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:41 +0000 2015","id":663726660227854336,"id_str":"663726660227854336","text":"#iSay drops tomorrow. Get it on https:\/\/t.co\/8WtddIhBVX. @caristoclear @itsretunes @thenameisMag44 @Twonjex @DjMuji1 https:\/\/t.co\/A9ssusvYeJ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936718850,"id_str":"2936718850","name":"#iSay 10th November","screen_name":"TheProofMusic","location":null,"url":"http:\/\/itsretunes.com\/theproof.html","description":"Gospel Musician|Marketer(CIM)|Drummer. Popularity is an accident, fame is a vapour, riches grow wings BUT character endures. email: proof1126@gmail.com","protected":false,"verified":false,"followers_count":223,"friends_count":89,"listed_count":3,"favourites_count":686,"statuses_count":384,"created_at":"Mon Dec 22 09:02:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660090875490488320\/LOt017MD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660090875490488320\/LOt017MD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936718850\/1442389983","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"iSay","indices":[0,5]}],"urls":[{"url":"https:\/\/t.co\/8WtddIhBVX","expanded_url":"http:\/\/itsretunes.com\/theproof.html","display_url":"itsretunes.com\/theproof.html","indices":[32,55]}],"user_mentions":[{"screen_name":"caristoclear","name":"caristo chitamfya jr","id":588432031,"id_str":"588432031","indices":[57,70]},{"screen_name":"itsretunes","name":"Tio #Crazy4You","id":835195580,"id_str":"835195580","indices":[71,82]},{"screen_name":"thenameisMag44","name":"I Found Love OUT NOW","id":469205801,"id_str":"469205801","indices":[83,98]},{"screen_name":"Twonjex","name":"Deejay Twonjex","id":37867781,"id_str":"37867781","indices":[99,107]},{"screen_name":"DjMuji1","name":"Dj Muji","id":434967552,"id_str":"434967552","indices":[108,116]}],"symbols":[],"media":[{"id":663726589662920704,"id_str":"663726589662920704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","url":"https:\/\/t.co\/A9ssusvYeJ","display_url":"pic.twitter.com\/A9ssusvYeJ","expanded_url":"http:\/\/twitter.com\/TheProofMusic\/status\/663726660227854336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726589662920704,"id_str":"663726589662920704","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","url":"https:\/\/t.co\/A9ssusvYeJ","display_url":"pic.twitter.com\/A9ssusvYeJ","expanded_url":"http:\/\/twitter.com\/TheProofMusic\/status\/663726660227854336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"iSay","indices":[19,24]}],"urls":[{"url":"https:\/\/t.co\/8WtddIhBVX","expanded_url":"http:\/\/itsretunes.com\/theproof.html","display_url":"itsretunes.com\/theproof.html","indices":[51,74]}],"user_mentions":[{"screen_name":"TheProofMusic","name":"#iSay 10th November","id":2936718850,"id_str":"2936718850","indices":[3,17]},{"screen_name":"caristoclear","name":"caristo chitamfya jr","id":588432031,"id_str":"588432031","indices":[76,89]},{"screen_name":"itsretunes","name":"Tio #Crazy4You","id":835195580,"id_str":"835195580","indices":[90,101]},{"screen_name":"thenameisMag44","name":"I Found Love OUT NOW","id":469205801,"id_str":"469205801","indices":[102,117]},{"screen_name":"Twonjex","name":"Deejay Twonjex","id":37867781,"id_str":"37867781","indices":[118,126]},{"screen_name":"DjMuji1","name":"Dj Muji","id":434967552,"id_str":"434967552","indices":[127,135]}],"symbols":[],"media":[{"id":663726589662920704,"id_str":"663726589662920704","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","url":"https:\/\/t.co\/A9ssusvYeJ","display_url":"pic.twitter.com\/A9ssusvYeJ","expanded_url":"http:\/\/twitter.com\/TheProofMusic\/status\/663726660227854336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663726660227854336,"source_status_id_str":"663726660227854336","source_user_id":2936718850,"source_user_id_str":"2936718850"}]},"extended_entities":{"media":[{"id":663726589662920704,"id_str":"663726589662920704","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH0RTXAAAQdX1.jpg","url":"https:\/\/t.co\/A9ssusvYeJ","display_url":"pic.twitter.com\/A9ssusvYeJ","expanded_url":"http:\/\/twitter.com\/TheProofMusic\/status\/663726660227854336\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663726660227854336,"source_status_id_str":"663726660227854336","source_user_id":2936718850,"source_user_id_str":"2936718850"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219489771520,"id_str":"663728219489771520","text":"RT @giphz: https:\/\/t.co\/YrwRaX5sYH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2737907041,"id_str":"2737907041","name":"Larissa Souza","screen_name":"larissast88","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":318,"friends_count":819,"listed_count":0,"favourites_count":3022,"statuses_count":802,"created_at":"Sat Aug 16 18:54:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661999498407895041\/hzJFniLt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661999498407895041\/hzJFniLt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2737907041\/1446667953","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:14:34 +0000 2015","id":663389157352464384,"id_str":"663389157352464384","text":"https:\/\/t.co\/YrwRaX5sYH","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3065976851,"id_str":"3065976851","name":"Gifs","screen_name":"giphz","location":null,"url":null,"description":"contatogiphz@gmail.com \nsnap: giphz3","protected":false,"verified":false,"followers_count":68521,"friends_count":0,"listed_count":111,"favourites_count":120,"statuses_count":7085,"created_at":"Mon Mar 02 12:49:50 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572379683883216896\/0bsPQvD1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572379683883216896\/0bsPQvD1_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":664,"favorite_count":447,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":652513794028109824,"id_str":"652513794028109824","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","url":"https:\/\/t.co\/YrwRaX5sYH","display_url":"pic.twitter.com\/YrwRaX5sYH","expanded_url":"http:\/\/twitter.com\/CraziestPeoples\/status\/652513796460818432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":275,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":324,"resize":"fit"},"medium":{"w":400,"h":324,"resize":"fit"}},"source_status_id":652513796460818432,"source_status_id_str":"652513796460818432","source_user_id":1665731966,"source_user_id_str":"1665731966"}]},"extended_entities":{"media":[{"id":652513794028109824,"id_str":"652513794028109824","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","url":"https:\/\/t.co\/YrwRaX5sYH","display_url":"pic.twitter.com\/YrwRaX5sYH","expanded_url":"http:\/\/twitter.com\/CraziestPeoples\/status\/652513796460818432\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":275,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":324,"resize":"fit"},"medium":{"w":400,"h":324,"resize":"fit"}},"source_status_id":652513796460818432,"source_status_id_str":"652513796460818432","source_user_id":1665731966,"source_user_id_str":"1665731966","video_info":{"aspect_ratio":[100,81],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CQ4x1qgWgAAsWfP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giphz","name":"Gifs","id":3065976851,"id_str":"3065976851","indices":[3,9]}],"symbols":[],"media":[{"id":652513794028109824,"id_str":"652513794028109824","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","url":"https:\/\/t.co\/YrwRaX5sYH","display_url":"pic.twitter.com\/YrwRaX5sYH","expanded_url":"http:\/\/twitter.com\/CraziestPeoples\/status\/652513796460818432\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":275,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":324,"resize":"fit"},"medium":{"w":400,"h":324,"resize":"fit"}},"source_status_id":652513796460818432,"source_status_id_str":"652513796460818432","source_user_id":1665731966,"source_user_id_str":"1665731966"}]},"extended_entities":{"media":[{"id":652513794028109824,"id_str":"652513794028109824","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CQ4x1qgWgAAsWfP.png","url":"https:\/\/t.co\/YrwRaX5sYH","display_url":"pic.twitter.com\/YrwRaX5sYH","expanded_url":"http:\/\/twitter.com\/CraziestPeoples\/status\/652513796460818432\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":275,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":324,"resize":"fit"},"medium":{"w":400,"h":324,"resize":"fit"}},"source_status_id":652513796460818432,"source_status_id_str":"652513796460818432","source_user_id":1665731966,"source_user_id_str":"1665731966","video_info":{"aspect_ratio":[100,81],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CQ4x1qgWgAAsWfP.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080113657"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219498090496,"id_str":"663728219498090496","text":"RT @abo_torky155: \u0670\n\n\u0633\u0639\u0622\u062f\u062a\u064a\u0651 \u0647\u0650\u064a \u0631\u0624\u064a\u064e\u0629 \u0645\u0646\u0651 \u0623\u062d\u0628 \u0628\u062e\u064a\u0631\n \u0641\u064e\u0640 \u064a\u0627 \u0631\u0628\u064e \u0627\u062c\u0639\u064e\u0644\u0647\u0645 \u0633\u064f\u0639\u062f\u0622\u0621 \u0623\u064a\u0646\u064e\u0645\u0622 \u06af\u0622\u0646\u064f\u0648\u0627 !\n\n#\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631 \ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3256839313,"id_str":"3256839313","name":"\u0102\u03aa\u041a\u01fe\u01fe\u20a6..\u2665","screen_name":"farsyh","location":"\u0645\u064e\u06ab\u0647\u0650 \u0623\u0651\u0644\u064e\u0645\u064e\u06ab\u0631\u0645\u064e\u0647\u0650 _ \u062c\u0650\u062f\u0650\u0647\u0650 ","url":null,"description":"\u200f...\n\n\u200f\u2193 \u2765 \u219d\n\n\u0631\u0633\u0645\u062a \u0623\u0645\u0646\u064a\u0627\u062a\u064a : \u0648 \u0623\u0645\u0646\u064a\u0627\u062a\u064a \u062a\u0628\u0640\u064a \u062a\u062d\u0642\u064a\u0642 \u060c \n\u062a\u062c\u064a \u0645\u0627 \u062a\u062c\u064a \u0645\u062f\u0631\u064a \/ \u0639\u0633\u0649 \u0627\u0644\u0644\u0647 \u064a\u0648\u0641\u0642\u0646\u064a !\n#\u0642\u0631\u0648\u0628_\u0627\u0644\u0643\u0648\u0646_\u0644\u0644\u062f\u0639\u0645\n \ufd3f \u2741\u2669 \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u062a\u0627\u0628\u0639\u0646\u064a \u0627\u062a\u0627\u0628\u0639\u06af..","protected":false,"verified":false,"followers_count":24963,"friends_count":16589,"listed_count":4,"favourites_count":84,"statuses_count":10426,"created_at":"Fri Jun 26 15:32:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659190296790593536\/RCJmB9wE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659190296790593536\/RCJmB9wE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3256839313\/1445998187","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 16:51:43 +0000 2015","id":662673727621087232,"id_str":"662673727621087232","text":"\u0670\n\n\u0633\u0639\u0622\u062f\u062a\u064a\u0651 \u0647\u0650\u064a \u0631\u0624\u064a\u064e\u0629 \u0645\u0646\u0651 \u0623\u062d\u0628 \u0628\u062e\u064a\u0631\n \u0641\u064e\u0640 \u064a\u0627 \u0631\u0628\u064e \u0627\u062c\u0639\u064e\u0644\u0647\u0645 \u0633\u064f\u0639\u062f\u0622\u0621 \u0623\u064a\u0646\u064e\u0645\u0622 \u06af\u0622\u0646\u064f\u0648\u0627 !\n\n#\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631 \ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1341824676,"id_str":"1341824676","name":"\u2b06\u0645\u062d\u0645\u062f \u0639\u0633\u064a\u0631\u064a\u2b06","screen_name":"abo_torky155","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":null,"description":"\u0642\u062f \u0642\u064a\u0644 \u0623\u0646 \u0627\u0644\u0625\u0644\u0647 \u0630\u0648 \u0648\u0644\u062f\u064d .. \u0648\u0642\u064a\u0644 \u0623\u0646 \u0627\u0644\u0631\u0633\u0648\u0644 \u0642\u062f \u0643\u0647\u0646\u0627 ! \u0645\u0627 \u0646\u062c\u0627 \u0627\u0644\u0644\u0647 \u0648\u0627\u0644\u0631\u0633\u0648\u0644 \u0645\u0639\u0627\u064b , \u0645\u0646 \u0644\u0633\u0627\u0646 \u0627\u0644\u0648\u0631\u0649...\u0641\u0643\u064a\u0641 \u0623\u0646\u0627 \u061f| \u062a\u062c\u062f\u0648\u0646\u064a \u0641\u064a \u0627\u0644\u0645\u0641\u0636\u0644\u0629 ''\u0627\u0644\u062e\u0627\u0635 \u0645\u0647\u0645\u0644''","protected":false,"verified":false,"followers_count":10242,"friends_count":9116,"listed_count":7,"favourites_count":3540,"statuses_count":20831,"created_at":"Wed Apr 10 12:54:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663483956902436864\/vnLn7NaJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663483956902436864\/vnLn7NaJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1341824676\/1445489494","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":25,"favorite_count":5,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631","indices":[78,89]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0645\u0633\u0627\u0621_\u0627\u0644\u062e\u064a\u0631","indices":[96,107]}],"urls":[],"user_mentions":[{"screen_name":"abo_torky155","name":"\u2b06\u0645\u062d\u0645\u062f \u0639\u0633\u064a\u0631\u064a\u2b06","id":1341824676,"id_str":"1341824676","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080113659"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219489742848,"id_str":"663728219489742848","text":"1976 Honda CB550 Four https:\/\/t.co\/QBTPVy1B2q","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":103999652,"id_str":"103999652","name":"Tradin Post","screen_name":"TradinPost","location":"Peoria, IL","url":"http:\/\/www.tradinpost.com","description":"Tradin Post Classifieds - Buy Sell and Trade in the nations oldest online classifieds newspaper.","protected":false,"verified":false,"followers_count":394,"friends_count":279,"listed_count":3,"favourites_count":1,"statuses_count":19316,"created_at":"Mon Jan 11 23:18:48 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625319777\/n119013750243_7975_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625319777\/n119013750243_7975_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/QBTPVy1B2q","expanded_url":"http:\/\/fb.me\/58KERHA3M","display_url":"fb.me\/58KERHA3M","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080113657"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219498115072,"id_str":"663728219498115072","text":"RT @BishopJakes: Forgiveness is a decision that starts in your mind and gradually convinces your heart that being angry is only hurting you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228341840,"id_str":"228341840","name":"Jovane Blagrove","screen_name":"Blagrove","location":"St. Ann, JM","url":null,"description":"#Twin #Christian #Songwriter #GospelArtist #Jamaican #PRAY4JAMAICA #Aquarius #Blagrove #SoulSinger #BVG.... more over I AM JOVANE BLAGROVE","protected":false,"verified":false,"followers_count":451,"friends_count":556,"listed_count":3,"favourites_count":3276,"statuses_count":12262,"created_at":"Sun Dec 19 12:44:21 +0000 2010","utc_offset":-21600,"time_zone":"Central America","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658994927460745216\/wnBpOucr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658994927460745216\/wnBpOucr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228341840\/1444842085","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:04 +0000 2015","id":663721974892519424,"id_str":"663721974892519424","text":"Forgiveness is a decision that starts in your mind and gradually convinces your heart that being angry is only hurting you.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36117822,"id_str":"36117822","name":"T.D. Jakes","screen_name":"BishopJakes","location":"Dallas, Texas","url":"http:\/\/www.tdjakes.org\/watchnow","description":"Official Twitter for Bishop T. D. Jakes","protected":false,"verified":true,"followers_count":2025164,"friends_count":204,"listed_count":7726,"favourites_count":6182,"statuses_count":32441,"created_at":"Tue Apr 28 17:01:24 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254951146\/tdjtwitbg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254951146\/tdjtwitbg.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635952596767760384\/KO69aK79_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635952596767760384\/KO69aK79_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36117822\/1440456616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":267,"favorite_count":226,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BishopJakes","name":"T.D. Jakes","id":36117822,"id_str":"36117822","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113659"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514871808,"id_str":"663728219514871808","text":"@baebaesuzya minta maaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727495074545664,"in_reply_to_status_id_str":"663727495074545664","in_reply_to_user_id":612389938,"in_reply_to_user_id_str":"612389938","in_reply_to_screen_name":"baebaesuzya","user":{"id":3375392609,"id_str":"3375392609","name":"visual \u0489","screen_name":"SexyYongie","location":null,"url":null,"description":"[ VISUAL Lee taeyong from SMROOKIE | #AHGLADDROM \u2665 [ WGL with @SC_Bae ]","protected":false,"verified":false,"followers_count":150,"friends_count":151,"listed_count":0,"favourites_count":62,"statuses_count":1593,"created_at":"Tue Jul 14 08:38:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660885900449218561\/kCbwfgGR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660885900449218561\/kCbwfgGR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3375392609\/1446402506","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"baebaesuzya","name":"Sujai \u2708","id":612389938,"id_str":"612389938","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219510689792,"id_str":"663728219510689792","text":"RT @portalselenabr: Timbaland elogiou o Revival via instagram, olhem: https:\/\/t.co\/An4wwmnawS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1370156084,"id_str":"1370156084","name":"revival","screen_name":"jelenaismyair","location":null,"url":"http:\/\/smarturl.it\/SGRevival","description":"i mean i could but why would i want to","protected":false,"verified":false,"followers_count":720,"friends_count":406,"listed_count":14,"favourites_count":21790,"statuses_count":66605,"created_at":"Sun Apr 21 17:46:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661160124812251137\/JkmsvmIw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661160124812251137\/JkmsvmIw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1370156084\/1446467832","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:48 +0000 2015","id":663720395242135553,"id_str":"663720395242135553","text":"Timbaland elogiou o Revival via instagram, olhem: https:\/\/t.co\/An4wwmnawS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":475820441,"id_str":"475820441","name":"Portal Selena Brasil","screen_name":"portalselenabr","location":"Brasil ","url":"https:\/\/www.facebook.com\/portalselenabra?notif_t=page_fan","description":"Diariamente atualizado com todas as not\u00edcias sobre Selena Gomez. | Updated every day with the latest news about Selena Gomez.","protected":false,"verified":false,"followers_count":18638,"friends_count":1390,"listed_count":52,"favourites_count":3156,"statuses_count":88902,"created_at":"Fri Jan 27 13:34:05 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000177986090\/ZpMp8z_V.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000177986090\/ZpMp8z_V.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656291710390181889\/RJpsXQAw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656291710390181889\/RJpsXQAw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/475820441\/1445307131","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720382608883712,"id_str":"663720382608883712","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","url":"https:\/\/t.co\/An4wwmnawS","display_url":"pic.twitter.com\/An4wwmnawS","expanded_url":"http:\/\/twitter.com\/portalselenabr\/status\/663720395242135553\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720382608883712,"id_str":"663720382608883712","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","url":"https:\/\/t.co\/An4wwmnawS","display_url":"pic.twitter.com\/An4wwmnawS","expanded_url":"http:\/\/twitter.com\/portalselenabr\/status\/663720395242135553\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"portalselenabr","name":"Portal Selena Brasil","id":475820441,"id_str":"475820441","indices":[3,18]}],"symbols":[],"media":[{"id":663720382608883712,"id_str":"663720382608883712","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","url":"https:\/\/t.co\/An4wwmnawS","display_url":"pic.twitter.com\/An4wwmnawS","expanded_url":"http:\/\/twitter.com\/portalselenabr\/status\/663720395242135553\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663720395242135553,"source_status_id_str":"663720395242135553","source_user_id":475820441,"source_user_id_str":"475820441"}]},"extended_entities":{"media":[{"id":663720382608883712,"id_str":"663720382608883712","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCK-OWwAA1Oka.jpg","url":"https:\/\/t.co\/An4wwmnawS","display_url":"pic.twitter.com\/An4wwmnawS","expanded_url":"http:\/\/twitter.com\/portalselenabr\/status\/663720395242135553\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663720395242135553,"source_status_id_str":"663720395242135553","source_user_id":475820441,"source_user_id_str":"475820441"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080113662"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219502309376,"id_str":"663728219502309376","text":"RT @SouPositividade: Eu pe\u00e7o a Deus muita paci\u00eancia, porque se ele me der for\u00e7a eu quebro a cara dessa sua amiguinha! \ud83d\udc4a\ud83d\udcaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2725246108,"id_str":"2725246108","name":"Isabela Carolina \u2693","screen_name":"isabelac295","location":"Contagem MG","url":null,"description":null,"protected":false,"verified":false,"followers_count":100,"friends_count":487,"listed_count":0,"favourites_count":17,"statuses_count":359,"created_at":"Sat Jul 26 13:35:10 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633811684470181890\/DX2AOwL9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633811684470181890\/DX2AOwL9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2725246108\/1406382117","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:40:05 +0000 2015","id":663576771640455168,"id_str":"663576771640455168","text":"Eu pe\u00e7o a Deus muita paci\u00eancia, porque se ele me der for\u00e7a eu quebro a cara dessa sua amiguinha! \ud83d\udc4a\ud83d\udcaa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1339585813,"id_str":"1339585813","name":"Positividade \u262f","screen_name":"SouPositividade","location":null,"url":"http:\/\/facebook.com\/soupositividadeverde","description":"Positividade, paz, amor, tranquilidade e nunca desista dos seus sonhos. \u1d40\u1d34\u1d31 \u1d3c\u1d3f\u1d35\u1d33\u1d35\u1d3b\u1d2c\u1d38 Contato: publicidadesverde@gmail.com \u2709 Instagram \u21e8 http:\/\/t.co\/sJhnz6uDQS","protected":false,"verified":false,"followers_count":974181,"friends_count":69,"listed_count":225,"favourites_count":1430,"statuses_count":46093,"created_at":"Tue Apr 09 16:09:15 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000118801627\/d82070a622231cf4cb5435f9e361eaf8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000118801627\/d82070a622231cf4cb5435f9e361eaf8.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661237907936698368\/Kmdb3BZM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661237907936698368\/Kmdb3BZM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1339585813\/1446641080","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":119,"favorite_count":143,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SouPositividade","name":"Positividade \u262f","id":1339585813,"id_str":"1339585813","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080113660"} +{"delete":{"status":{"id":663727653283880960,"id_str":"663727653283880960","user_id":226266346,"user_id_str":"226266346"},"timestamp_ms":"1447080113732"}} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219510726656,"id_str":"663728219510726656","text":"RT @emscig: the day has hardly started and I already wanna go home","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1638786134,"id_str":"1638786134","name":"jenn","screen_name":"jensenmallory_","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":313,"friends_count":190,"listed_count":0,"favourites_count":3940,"statuses_count":3871,"created_at":"Thu Aug 01 20:26:18 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658083851634348032\/kvUjQfDR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658083851634348032\/kvUjQfDR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1638786134\/1445734391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:26:46 +0000 2015","id":663679115019571200,"id_str":"663679115019571200","text":"the day has hardly started and I already wanna go home","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310082220,"id_str":"3310082220","name":"em \u2661","screen_name":"emscig","location":null,"url":null,"description":"lettuce and chill?","protected":false,"verified":false,"followers_count":257,"friends_count":174,"listed_count":0,"favourites_count":4078,"statuses_count":4841,"created_at":"Sun Aug 09 02:27:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662087803610746885\/mhOl-nHi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662087803610746885\/mhOl-nHi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310082220\/1446688985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"emscig","name":"em \u2661","id":3310082220,"id_str":"3310082220","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113662"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219489718272,"id_str":"663728219489718272","text":"It needs to stop raining...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":618696772,"id_str":"618696772","name":"Nicole Todaro","screen_name":"growingupstinks","location":"North Carolina","url":null,"description":"Wingate University. 6-14-15. I am going to be myself no matter what & no one can change that.","protected":false,"verified":false,"followers_count":304,"friends_count":702,"listed_count":1,"favourites_count":14683,"statuses_count":4174,"created_at":"Tue Jun 26 03:35:47 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607059372053831681\/4vbzpqbR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607059372053831681\/4vbzpqbR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/618696772\/1433569429","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113657"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514732547,"id_str":"663728219514732547","text":"\u6e0b\u3044\u304a\u3063\u3055\u3093\u30e1\u30a4\u30af\u306b\u52e4\u3057\u3080\u304f\u3089\u3044\u304b\u306a\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181115451,"id_str":"181115451","name":"\u5e0c\u84ee","screen_name":"Kiren_Seasq","location":"\u8fd1\u9803\u306fSkyrim\u306e\u5317\u3042\u305f\u308a","url":"http:\/\/blog.livedoor.jp\/ec_kiren\/","description":"Web\u30c7\u30b6\u30a4\u30ca\u30fc\u307f\u305f\u3044\u306a\u4eba\u3067\u3059\u3002twitter\u306f\u65e5\u5e38\u751f\u6d3b\u3060\u3063\u305f\u308a\u3001TES\u30b7\u30ea\u30fc\u30ba\u3001\u6226\u56fdBASARA\u3001\u8ecc\u8de1\u30b7\u30ea\u30fc\u30ba\u3001MMD\u3001\u30c1\u30a7\u30f3\u30af\u30ed\u3001\u30cb\u30f3\u30b8\u30e3\u30b9\u30ec\u30a4\u30e4\u30fc\u306a\u3069\u306e\u8da3\u5411\u3067\u3064\u3076\u3084\u304d\u307e\u3059\u3002\n\u30cb\u30b3\u52d5MMD\u30de\u30a4\u30ea\u30b9\uff1ahttp:\/\/bit.ly\/ol3v9o","protected":false,"verified":false,"followers_count":327,"friends_count":381,"listed_count":22,"favourites_count":848,"statuses_count":17226,"created_at":"Sat Aug 21 09:26:41 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451031811166973954\/Nz4oeQDB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451031811166973954\/Nz4oeQDB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/181115451\/1438523118","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514769408,"id_str":"663728219514769408","text":"RT @Ammmy7Vip: \u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e44\u0e23\u0e19\u0e30 \u0e04\u0e37\u0e2d\u0e21\u0e36\u0e07\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30\u0e2d\u0e48\u0e30\u0e40\u0e1e\u0e0a\u0e23\u0e08\u0e49\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539013768,"id_str":"539013768","name":"\u2728VeeVieW\u2728","screen_name":"JinPY_CG","location":null,"url":null,"description":"My name is VIEW..YGSTAND BORN TO BE V.I.P AND BLACKJACK SUPPORT iKON #\u0e17\u0e32\u0e2a\u0e41\u0e17\u0e42\u0e2d","protected":false,"verified":false,"followers_count":716,"friends_count":467,"listed_count":5,"favourites_count":3754,"statuses_count":120998,"created_at":"Wed Mar 28 10:36:09 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623515388286865408\/QqJiv4Pi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623515388286865408\/QqJiv4Pi.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651038669864767488\/HY-zf9v0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651038669864767488\/HY-zf9v0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539013768\/1437492353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:13 +0000 2015","id":663727296776286208,"id_str":"663727296776286208","text":"\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e44\u0e23\u0e19\u0e30 \u0e04\u0e37\u0e2d\u0e21\u0e36\u0e07\u0e44\u0e23\u0e49\u0e2a\u0e32\u0e23\u0e30\u0e2d\u0e48\u0e30\u0e40\u0e1e\u0e0a\u0e23\u0e08\u0e49\u0e32","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1393675812,"id_str":"1393675812","name":"\u0e40\u0e21\u0e35\u0e22BIGBANG\u0e19\u0e2d\u0e01\u0e2a\u0e21\u0e23\u0e2a","screen_name":"Ammmy7Vip","location":null,"url":null,"description":"I'm VIP and INCLE \u2764 \u0e40\u0e1b\u0e47\u0e19\u0e17\u0e32\u0e2aYG \u0e15\u0e34\u0e48\u0e07\u0e2b\u0e25\u0e31\u0e01 BIGBANG\u2764 WINNER \u0e21\u0e32\u0e22\u0e40\u0e21\u0e19 TOP\u2764M!NO \u0e21\u0e35\u0e2d\u0e35\u0e01\u0e19\u0e30 SongSeungHeon \u2764 HongJongHyun \u0e19\u0e35\u0e48\u0e01\u0e47\u0e23\u0e31\u0e01 EDIT \u0e23\u0e39\u0e1b\u0e40\u0e21\u0e19\u0e07\u0e32\u0e19\u0e2b\u0e25\u0e31\u0e01\u0e1a\u0e32\u0e07\u0e17\u0e35\u0e0a\u0e31\u0e49\u0e19\u0e2b\u0e22\u0e32\u0e1a\u0e04\u0e32\u0e22\u0e19\u0e30\u0e1e\u0e39\u0e14\u0e40\u0e25\u0e22","protected":false,"verified":false,"followers_count":7228,"friends_count":681,"listed_count":12,"favourites_count":1921,"statuses_count":101553,"created_at":"Wed May 01 03:27:25 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/477635657141981184\/SPhsgySA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/477635657141981184\/SPhsgySA.jpeg","profile_background_tile":true,"profile_link_color":"0863CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651707338924011520\/HIK9FDFB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651707338924011520\/HIK9FDFB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1393675812\/1408274455","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ammmy7Vip","name":"\u0e40\u0e21\u0e35\u0e22BIGBANG\u0e19\u0e2d\u0e01\u0e2a\u0e21\u0e23\u0e2a","id":1393675812,"id_str":"1393675812","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514871809,"id_str":"663728219514871809","text":"@raedsaed14081 \u0627\u0646 \u0634\u0627\u0621 \u0627\u0644\u0644\u0647 ****","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726702632312832,"in_reply_to_status_id_str":"663726702632312832","in_reply_to_user_id":2600527650,"in_reply_to_user_id_str":"2600527650","in_reply_to_screen_name":"raedsaed14081","user":{"id":3254649415,"id_str":"3254649415","name":"\u043c\u03b9\u044f\u03b1 \u0455\u0310\u0337\u0337\u00b2","screen_name":"s2ss22op","location":null,"url":null,"description":"((\u0625\u0650\u0646\u064e\u0651 \u0627\u0644\u0644\u064e\u0651\u0647\u064e \u0648\u064e\u0645\u064e\u0644\u0627\u0626\u0650\u0643\u064e\u062a\u064e\u0647\u064f \u064a\u064f\u0635\u064e\u0644\u064f\u0651\u0648\u0646\u064e \u0639\u064e\u0644\u064e\u0649 \u0627\u0644\u0646\u064e\u0651\u0628\u0650\u064a\u0650\u0651 \u064a\u064e\u0627 \u0623\u064e\u064a\u064f\u0651\u0647\u064e\u0627 \u0627\u0644\u064e\u0651\u0630\u0650\u064a\u0646\u064e \u0622\u0645\u064e\u0646\u064f\u0648\u0627 \u0635\u064e\u0644\u064f\u0651\u0648\u0627 \u0639\u064e\u0644\u064e\u064a\u0652\u0647\u0650 \u0648\u064e\u0633\u064e\u0644\u0650\u0651\u0645\u064f\u0648\u0627 \u062a\u064e\u0633\u0652\u0644\u0650\u064a\u0645\u064b\u0627 )\u0627\u0633\u062a\u063a\u0641\u0631 \u0627\u0644\u0644\u0647 Medina","protected":false,"verified":false,"followers_count":3154,"friends_count":3207,"listed_count":0,"favourites_count":60,"statuses_count":3735,"created_at":"Wed Jun 24 12:40:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643364647513362433\/n0sRR-Ol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643364647513362433\/n0sRR-Ol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3254649415\/1446682611","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"raedsaed14081","name":"\u0627\u0628\u0648 \u062e\u0627\u0644\u062f","id":2600527650,"id_str":"2600527650","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514920960,"id_str":"663728219514920960","text":"@XboxFR #Marches #TombRaider","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727919882248193,"in_reply_to_status_id_str":"663727919882248193","in_reply_to_user_id":49979934,"in_reply_to_user_id_str":"49979934","in_reply_to_screen_name":"XboxFR","user":{"id":2150510846,"id_str":"2150510846","name":"Claire L.","screen_name":"Claire89L","location":"Lyon","url":null,"description":"Professeur vacataire d'Histoire-G\u00e9o \/ \u00c9tudiante @univ_lyon2 en MEEF 1ere ann\u00e9e pr\u00e9pa CAPES \/ Ma\u00eetrise avec mention recherche histoire moderne et contemporaine.","protected":false,"verified":false,"followers_count":18,"friends_count":35,"listed_count":0,"favourites_count":10,"statuses_count":36,"created_at":"Wed Oct 23 08:01:37 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000636260182\/c3fac622a150b441bf9d09ff29d6438b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000636260182\/c3fac622a150b441bf9d09ff29d6438b_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Marches","indices":[8,16]},{"text":"TombRaider","indices":[17,28]}],"urls":[],"user_mentions":[{"screen_name":"XboxFR","name":"Xbox FR","id":49979934,"id_str":"49979934","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219519098880,"id_str":"663728219519098880","text":"RT @RodParracho: Inveja \u00e9 um sentimento que s\u00f3 atinge pessoas ego\u00edstas. Pessoas que visam o bem do coletivo se sentem fortificadas com o su\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266826016,"id_str":"266826016","name":"Ezy Rocha","screen_name":"Ezyrochajunior","location":"Luanda ","url":"http:\/\/www.facebook.com\/home.php","description":"BOR SINNER....\r\n\r\nI got BIG plans, BIG dreams, and a BIG heart...\r\nLIVE FAS DIE YOUNG\r\nLA FAMILIA SD","protected":false,"verified":false,"followers_count":461,"friends_count":1822,"listed_count":1,"favourites_count":759,"statuses_count":5224,"created_at":"Tue Mar 15 22:00:36 +0000 2011","utc_offset":0,"time_zone":"Lisbon","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"569FD2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584912934\/fxlfqrlahpsi1lci0h04.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584912934\/fxlfqrlahpsi1lci0h04.jpeg","profile_background_tile":false,"profile_link_color":"96B949","profile_sidebar_border_color":"F1F2E8","profile_sidebar_fill_color":"F1F2E8","profile_text_color":"3E3E3E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576655212955496449\/x0oYIaXO_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576655212955496449\/x0oYIaXO_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266826016\/1426320289","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jul 22 22:00:02 +0000 2014","id":491704246375813120,"id_str":"491704246375813120","text":"Inveja \u00e9 um sentimento que s\u00f3 atinge pessoas ego\u00edstas. Pessoas que visam o bem do coletivo se sentem fortificadas com o sucesso alheio.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1205149670,"id_str":"1205149670","name":"ROD","screen_name":"RodParracho","location":null,"url":"http:\/\/www.3030oficial.com.br","description":"Rapper e compositor, integrante e fundador do grupo 3030.","protected":false,"verified":false,"followers_count":3723,"friends_count":125,"listed_count":5,"favourites_count":325,"statuses_count":2891,"created_at":"Thu Feb 21 14:57:16 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000864489182\/FN5QW6Hi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000864489182\/FN5QW6Hi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1205149670\/1376416388","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":81,"favorite_count":71,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RodParracho","name":"ROD","id":1205149670,"id_str":"1205149670","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080113664"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219506372608,"id_str":"663728219506372608","text":"\u3042\u3093\u306a\u305d\u308c\u3067\u306a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3287359926,"id_str":"3287359926","name":"\u3086\u3046\u304b\u308a\u3093 \u200f\u272a","screen_name":"c1ubaddressy0ut","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":160,"friends_count":1499,"listed_count":0,"favourites_count":0,"statuses_count":1479,"created_at":"Wed Jul 22 09:57:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628479845668749312\/9Nd6orNP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628479845668749312\/9Nd6orNP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3287359926\/1438676245","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113661"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219510542336,"id_str":"663728219510542336","text":"RT @8w8_921: \uc774\uc820 \ub0b4\uac8c \ub300\ub2f5\ud574\uc918 \uc65c \uc0ac\ub78c\ub4e4\uc774 \ub2ec\ub77c\uc84c\ub294\uc9c0 \uc544\ub984\ub2e4\uc6b4 \uc2dc\uc808\uc774\ub77c\ub294\uac8c \uc874\uc7ac\ud558\uae34 \ud588\ub294\uc9c0 #2015MAMA \uc774\uc81c \ub354\ub294 #EXO \uc0ac\ub791\ud558\ub294 \ubc95\ub3c4 \uc78a\uc5c8\uace0 #\uc5d1\uc18c \ubc30\ub824\ud558\ub294 \ub9d8\ub3c4 #CALLMEBABY \uc783\uc5c8\uace0 \ub4f1\uc744 \ub3cc\ub9b0 \ucc44\ub85c #\ucf5c\ubbf8\ubca0\uc774\ube44 \uc0b4\uc544\uac00\uae30\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382828699,"id_str":"3382828699","name":"\uc2a4\uc57c","screen_name":"GIOBghQvWaLW1To","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":432,"listed_count":0,"favourites_count":196,"statuses_count":665,"created_at":"Sat Aug 29 15:14:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637837904203530245\/c-hCWo4f_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637837904203530245\/c-hCWo4f_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3382828699\/1443521804","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:05 +0000 2015","id":663726508289032193,"id_str":"663726508289032193","text":"\uc774\uc820 \ub0b4\uac8c \ub300\ub2f5\ud574\uc918 \uc65c \uc0ac\ub78c\ub4e4\uc774 \ub2ec\ub77c\uc84c\ub294\uc9c0 \uc544\ub984\ub2e4\uc6b4 \uc2dc\uc808\uc774\ub77c\ub294\uac8c \uc874\uc7ac\ud558\uae34 \ud588\ub294\uc9c0 #2015MAMA \uc774\uc81c \ub354\ub294 #EXO \uc0ac\ub791\ud558\ub294 \ubc95\ub3c4 \uc78a\uc5c8\uace0 #\uc5d1\uc18c \ubc30\ub824\ud558\ub294 \ub9d8\ub3c4 #CALLMEBABY \uc783\uc5c8\uace0 \ub4f1\uc744 \ub3cc\ub9b0 \ucc44\ub85c #\ucf5c\ubbf8\ubca0\uc774\ube44 \uc0b4\uc544\uac00\uae30 \ubc14\uc05c\uac78 @MnetMAMA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2227225446,"id_str":"2227225446","name":"\uc21c\ub529\uc774 \uc885\uc9c0","screen_name":"8w8_921","location":"No se preocupe","url":null,"description":"RPS \uccb8\ub978 \/ \ud314\ub85c \ube44\ucd94","protected":false,"verified":false,"followers_count":723,"friends_count":473,"listed_count":4,"favourites_count":5183,"statuses_count":2691,"created_at":"Mon Dec 02 20:25:19 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628260015682383872\/CzUgAI5_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628260015682383872\/CzUgAI5_.jpg","profile_background_tile":false,"profile_link_color":"005500","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662119630920531968\/QmslYQQP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662119630920531968\/QmslYQQP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2227225446\/1446353347","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[45,54]},{"text":"EXO","indices":[61,65]},{"text":"\uc5d1\uc18c","indices":[78,81]},{"text":"CALLMEBABY","indices":[90,101]},{"text":"\ucf5c\ubbf8\ubca0\uc774\ube44","indices":[115,121]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[131,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2015MAMA","indices":[58,67]},{"text":"EXO","indices":[74,78]},{"text":"\uc5d1\uc18c","indices":[91,94]},{"text":"CALLMEBABY","indices":[103,114]},{"text":"\ucf5c\ubbf8\ubca0\uc774\ube44","indices":[128,134]}],"urls":[],"user_mentions":[{"screen_name":"8w8_921","name":"\uc21c\ub529\uc774 \uc885\uc9c0","id":2227225446,"id_str":"2227225446","indices":[3,11]},{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080113662"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219493822465,"id_str":"663728219493822465","text":"@clm09tonnnny \u5144\u4e0a\uff01\uff01\uff01\u4f55\u6545\u3067\u3059\u3058\u3083\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721548512030720,"in_reply_to_status_id_str":"663721548512030720","in_reply_to_user_id":2703892944,"in_reply_to_user_id_str":"2703892944","in_reply_to_screen_name":"clm09tonnnny","user":{"id":2190052610,"id_str":"2190052610","name":"\u3080\u308d\u3055\u3093","screen_name":"murosuke3","location":null,"url":null,"description":"NO FISHING NO LIFE.\n\u3008\u4f50\u85e4\u5343\u8cc0\u3009","protected":false,"verified":false,"followers_count":103,"friends_count":98,"listed_count":0,"favourites_count":523,"statuses_count":3284,"created_at":"Tue Nov 12 10:15:26 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657561318765932545\/PG_PIjtv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657561318765932545\/PG_PIjtv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2190052610\/1444449158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"clm09tonnnny","name":"\u4f50\u85e4\u8cb4\u5927","id":2703892944,"id_str":"2703892944","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113658"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219498016768,"id_str":"663728219498016768","text":"RT @miu_daiki_jump: \u6bce\u65e5JUMP\u306e\u66f2\u805e\u3044\u3066\u308b\u4ebaRT\n\nRT\u3057\u305f\u3072\u3068\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/2eNIaIe7aD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3537339732,"id_str":"3537339732","name":"Maco\/\u4f0a\u91ce\u5c3e\u6167 \u611bing","screen_name":"inochan1752416","location":"JUMP\u611bing","url":"https:\/\/mixch.tv\/u\/4212295","description":"Hey!Say!JUMP\/\u4e2d2\/\u5927\u962a \uff0e LOVE\u25b7\u25b6\ufe0e\u25b7\u4f0a\u91ce\u5c3e\u6167\/JUMP\/\u3068\u3073\u3063\u3053\/\u540c\u62c5\/ALL\u62c5 *\u3068\u3073\u3063\u3053\u306a\u3089\u30d5\u30a9\u30ed\u30d0622\u332b* \u30d5\u30a9\u30ed\u30d0\u7121\u304b\u3063\u305f\u3089\u30ea\u30e0\u308b\u304b\u3082\u3067\u3059(*_*)","protected":false,"verified":false,"followers_count":491,"friends_count":571,"listed_count":0,"favourites_count":1446,"statuses_count":878,"created_at":"Sat Sep 12 11:31:45 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663354473889173504\/VEqYzwER_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663354473889173504\/VEqYzwER_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3537339732\/1445258714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 10:26:30 +0000 2015","id":661127234489483266,"id_str":"661127234489483266","text":"\u6bce\u65e5JUMP\u306e\u66f2\u805e\u3044\u3066\u308b\u4ebaRT\n\nRT\u3057\u305f\u3072\u3068\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/2eNIaIe7aD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3355812614,"id_str":"3355812614","name":"\u307f\u3046","screen_name":"miu_daiki_jump","location":"\u3042 \u308a \u304a \u304b \u3060 \u3044 \u304d","url":null,"description":"jc2 \u5439\u90e8 \u30c0\u30f3\u30b9 143\u339d\u306e\u3061\u3073\u3002\u5927\u8cb4\u306821\u339d\u5dee \u795e\u62c5\u25b7\u6709\u5ca1\u5927\u8cb4*\u526f\u62c5\u25b7\u5c71\u7530\u6dbc\u4ecb*\u4f0a\u91ce\u5c3e\u6167*\u3068\u3073\u3063\u3053\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u3002\u3068\u3073\u3063\u3053\u6b74\u6d45\u3044\u3002Hey! Say! Jump\/Best\/7 \/\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5e0c\u671b\u3002\u30ea\u30e0\u901a\u77e5\u304d\u307e\u3059\u3002\u30ea\u30d7\u7121\u8996\u2716\ufe0e\u30d5\u30a9\u30ed\u30d0\u3053\u306a\u304b\u3063\u305f\u3089\u30ea\u30e0\u308b\u304b\u3082\u2190\u3059\u3044\u307e\u305b\u3093\u3002LINE\u4ea4\u63db\u5c3e\u3063\u6167\uff01\u3068\u3073\u3063\u3053\u5927\u6b53\u8fce\uff01\uff01","protected":false,"verified":false,"followers_count":862,"friends_count":802,"listed_count":2,"favourites_count":128,"statuses_count":1364,"created_at":"Thu Aug 27 04:42:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660834862513786880\/0waO4sjf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660834862513786880\/0waO4sjf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3355812614\/1446114747","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":806,"favorite_count":183,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661127229204598785,"id_str":"661127229204598785","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","url":"https:\/\/t.co\/2eNIaIe7aD","display_url":"pic.twitter.com\/2eNIaIe7aD","expanded_url":"http:\/\/twitter.com\/miu_daiki_jump\/status\/661127234489483266\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661127229204598785,"id_str":"661127229204598785","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","url":"https:\/\/t.co\/2eNIaIe7aD","display_url":"pic.twitter.com\/2eNIaIe7aD","expanded_url":"http:\/\/twitter.com\/miu_daiki_jump\/status\/661127234489483266\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miu_daiki_jump","name":"\u307f\u3046","id":3355812614,"id_str":"3355812614","indices":[3,18]}],"symbols":[],"media":[{"id":661127229204598785,"id_str":"661127229204598785","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","url":"https:\/\/t.co\/2eNIaIe7aD","display_url":"pic.twitter.com\/2eNIaIe7aD","expanded_url":"http:\/\/twitter.com\/miu_daiki_jump\/status\/661127234489483266\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":661127234489483266,"source_status_id_str":"661127234489483266","source_user_id":3355812614,"source_user_id_str":"3355812614"}]},"extended_entities":{"media":[{"id":661127229204598785,"id_str":"661127229204598785","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSzLtlAUEAE4sQE.jpg","url":"https:\/\/t.co\/2eNIaIe7aD","display_url":"pic.twitter.com\/2eNIaIe7aD","expanded_url":"http:\/\/twitter.com\/miu_daiki_jump\/status\/661127234489483266\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":661127234489483266,"source_status_id_str":"661127234489483266","source_user_id":3355812614,"source_user_id_str":"3355812614"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113659"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219493933056,"id_str":"663728219493933056","text":"RT @JackJackJohnson: Thanks for coming \u2764\ufe0f https:\/\/t.co\/5pUQ70KBLg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2756738162,"id_str":"2756738162","name":"BruhItsJulia","screen_name":"Bubblegum1410","location":null,"url":null,"description":"Zach Clayton is my boyfriend he just doesn't know it yet","protected":false,"verified":false,"followers_count":168,"friends_count":142,"listed_count":0,"favourites_count":27502,"statuses_count":2639,"created_at":"Fri Aug 22 22:31:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663567765178028032\/DTQIjUXE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663567765178028032\/DTQIjUXE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756738162\/1443965398","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:25 +0000 2015","id":663728101151522818,"id_str":"663728101151522818","text":"Thanks for coming \u2764\ufe0f https:\/\/t.co\/5pUQ70KBLg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588963,"friends_count":19062,"listed_count":9491,"favourites_count":8857,"statuses_count":13966,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663113867980091392,"quoted_status_id_str":"663113867980091392","quoted_status":{"created_at":"Sat Nov 07 22:00:40 +0000 2015","id":663113867980091392,"id_str":"663113867980091392","text":"Jack and Jack are so talented I'm so glad I came to Spain to see them, they made all the miles worth it\ud83d\udc9a\ud83d\udc9b\u2764\ufe0f https:\/\/t.co\/ew9oCjSFUN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1650795336,"id_str":"1650795336","name":"Marta","screen_name":"hypebizzle","location":null,"url":"https:\/\/vine.co\/v\/O5MABIY0Wa3","description":"hypebizzle?!? omg I know this one!! - Jacob Whitesides","protected":false,"verified":false,"followers_count":85958,"friends_count":51080,"listed_count":176,"favourites_count":34620,"statuses_count":42265,"created_at":"Tue Aug 06 17:32:40 +0000 2013","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/449628476715196417\/VilyCxow.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/449628476715196417\/VilyCxow.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659163758355456001\/Kshmw9YR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659163758355456001\/Kshmw9YR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650795336\/1445991781","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663113823700836352,"id_str":"663113823700836352","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","url":"https:\/\/t.co\/ew9oCjSFUN","display_url":"pic.twitter.com\/ew9oCjSFUN","expanded_url":"http:\/\/twitter.com\/hypebizzle\/status\/663113867980091392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663113823700836352,"id_str":"663113823700836352","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTPagmNW4AA2wNy.jpg","url":"https:\/\/t.co\/ew9oCjSFUN","display_url":"pic.twitter.com\/ew9oCjSFUN","expanded_url":"http:\/\/twitter.com\/hypebizzle\/status\/663113867980091392\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":247,"favorite_count":709,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5pUQ70KBLg","expanded_url":"https:\/\/twitter.com\/hypebizzle\/status\/663113867980091392","display_url":"twitter.com\/hypebizzle\/sta\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/5pUQ70KBLg","expanded_url":"https:\/\/twitter.com\/hypebizzle\/status\/663113867980091392","display_url":"twitter.com\/hypebizzle\/sta\u2026","indices":[42,65]}],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113658"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219502325760,"id_str":"663728219502325760","text":"Nu DJ AutoDJ met momenteel: Years And Years - King #NP","source":"\u003ca href=\"http:\/\/rabbobeat.nl\" rel=\"nofollow\"\u003eRabbobeat_now\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3893168301,"id_str":"3893168301","name":"Rabbobeat - #NP","screen_name":"Rabbo_Now","location":"Hilversum, Noord-Holland","url":"http:\/\/rabbobeat.eu","description":"Alle gedraaide nummers van Rabbobeat! Vragen over onze radio? tweet naar @RabbobeatRadio","protected":false,"verified":false,"followers_count":25,"friends_count":3,"listed_count":2,"favourites_count":0,"statuses_count":8071,"created_at":"Wed Oct 07 20:43:00 +0000 2015","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655093909983481856\/5eJyIjSn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655093909983481856\/5eJyIjSn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3893168301\/1445021435","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NP","indices":[51,54]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113660"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219498094592,"id_str":"663728219498094592","text":"RT @Faisalnagro: \u201cThe older we get the more we seem to think that everything was better in the past.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582656647,"id_str":"582656647","name":"\u0663\u0663","screen_name":"El3wali","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":680,"friends_count":71,"listed_count":2,"favourites_count":0,"statuses_count":33555,"created_at":"Thu May 17 10:40:31 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662866216873259008\/xTT6mYd8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662866216873259008\/xTT6mYd8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582656647\/1446874644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:51:01 +0000 2015","id":663715416485810176,"id_str":"663715416485810176","text":"\u201cThe older we get the more we seem to think that everything was better in the past.\u201d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329735177,"id_str":"329735177","name":"\u0670","screen_name":"Faisalnagro","location":"+966","url":"http:\/\/blvck-hustler.tumblr.com\/","description":"#alhilalfc","protected":false,"verified":false,"followers_count":602,"friends_count":314,"listed_count":1,"favourites_count":3324,"statuses_count":9265,"created_at":"Tue Jul 05 15:01:48 +0000 2011","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661197012625305604\/cFanpU-c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661197012625305604\/cFanpU-c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/329735177\/1446404509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Faisalnagro","name":"\u0670","id":329735177,"id_str":"329735177","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113659"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514732545,"id_str":"663728219514732545","text":"RT @DAY6slave: DAD AND SON \n\u0e16\u0e49\u0e32\u0e42\u0e14\u0e2d\u0e38\u0e19\u0e42\u0e15\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e14\u0e47\u0e01\u0e1b\u0e35\u0e28\u0e32\u0e08\u0e01\u0e47\u0e08\u0e30\u0e44\u0e21\u0e48\u0e1b\u0e23\u0e30\u0e2b\u0e25\u0e32\u0e14\u0e43\u0e08 https:\/\/t.co\/Ku4l9syuz6","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":154216506,"id_str":"154216506","name":"\u256e(\uffe3\u25bd\uffe3)\u256d","screen_name":"noktheory","location":null,"url":null,"description":"\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02\u0e01\u0e31\u0e1a\u0e0b\u0e35\u0e23\u0e35\u0e48\u0e22\u0e4c\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35 \u0e14\u0e39\u0e0b\u0e35\u0e23\u0e35\u0e48\u0e22\u0e4c\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\u0e1a\u0e32\u0e07\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07 \u0e15\u0e34\u0e14 Grey's Anatomy \u2764SongJoongKi\u2764ParkHaeJin\u2764SoJiSub\u2764ParkSiHoo\u2764\u0e4dYooYeonSeok\u2764Day6\u2665","protected":false,"verified":false,"followers_count":194,"friends_count":222,"listed_count":5,"favourites_count":446,"statuses_count":26979,"created_at":"Thu Jun 10 17:40:14 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CFBF80","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/499223009240952833\/4RAFb59B.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/499223009240952833\/4RAFb59B.png","profile_background_tile":true,"profile_link_color":"966555","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661161739682123776\/8z7DNk_8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661161739682123776\/8z7DNk_8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/154216506\/1433347976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:28 +0000 2015","id":663725848357310466,"id_str":"663725848357310466","text":"DAD AND SON \n\u0e16\u0e49\u0e32\u0e42\u0e14\u0e2d\u0e38\u0e19\u0e42\u0e15\u0e21\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e14\u0e47\u0e01\u0e1b\u0e35\u0e28\u0e32\u0e08\u0e01\u0e47\u0e08\u0e30\u0e44\u0e21\u0e48\u0e1b\u0e23\u0e30\u0e2b\u0e25\u0e32\u0e14\u0e43\u0e08 https:\/\/t.co\/Ku4l9syuz6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3282490544,"id_str":"3282490544","name":"Aor\u2661youngk","screen_name":"DAY6slave","location":"DAY6\uaebc","url":null,"description":"Day6 ordinary fan | Jae STAN | but youngk's slave | Translator #\u0e17\u0e32\u0e2a\u0e15\u0e4b\u0e32 #jaeyoungk #JaeHyungParkIan","protected":false,"verified":false,"followers_count":532,"friends_count":185,"listed_count":3,"favourites_count":89,"statuses_count":3925,"created_at":"Fri Jul 17 14:19:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661043265488027648\/_J0T15gC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661043265488027648\/_J0T15gC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3282490544\/1441979046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725811413815296,"id_str":"663725811413815296","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":682,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"},"large":{"w":720,"h":819,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725811413815296,"id_str":"663725811413815296","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":682,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"},"large":{"w":720,"h":819,"resize":"fit"}}},{"id":663725827587051525,"id_str":"663725827587051525","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHH6WUEAUMms-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHH6WUEAUMms-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663725829881376768,"id_str":"663725829881376768","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHIC5UsAA45BV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHIC5UsAA45BV.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DAY6slave","name":"Aor\u2661youngk","id":3282490544,"id_str":"3282490544","indices":[3,13]}],"symbols":[],"media":[{"id":663725811413815296,"id_str":"663725811413815296","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":682,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"},"large":{"w":720,"h":819,"resize":"fit"}},"source_status_id":663725848357310466,"source_status_id_str":"663725848357310466","source_user_id":3282490544,"source_user_id_str":"3282490544"}]},"extended_entities":{"media":[{"id":663725811413815296,"id_str":"663725811413815296","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHG-GUEAACNV-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":682,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":386,"resize":"fit"},"large":{"w":720,"h":819,"resize":"fit"}},"source_status_id":663725848357310466,"source_status_id_str":"663725848357310466","source_user_id":3282490544,"source_user_id_str":"3282490544"},{"id":663725827587051525,"id_str":"663725827587051525","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHH6WUEAUMms-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHH6WUEAUMms-.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663725848357310466,"source_status_id_str":"663725848357310466","source_user_id":3282490544,"source_user_id_str":"3282490544"},{"id":663725829881376768,"id_str":"663725829881376768","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHIC5UsAA45BV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHIC5UsAA45BV.jpg","url":"https:\/\/t.co\/Ku4l9syuz6","display_url":"pic.twitter.com\/Ku4l9syuz6","expanded_url":"http:\/\/twitter.com\/DAY6slave\/status\/663725848357310466\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663725848357310466,"source_status_id_str":"663725848357310466","source_user_id":3282490544,"source_user_id_str":"3282490544"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219527385088,"id_str":"663728219527385088","text":"IM SO GETTING THIS NOZOMI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175470148,"id_str":"175470148","name":"PUBLiC","screen_name":"RipHaku","location":"#RIPHaku , female","url":null,"description":"@ASAPYams: I GOT PENALIZED IN REHAB CUZ A BITCH WAS BOUT TO COMMIT SUICIDE AND I SAID OH ITS FUCKIN LIT","protected":false,"verified":false,"followers_count":144,"friends_count":96,"listed_count":0,"favourites_count":8425,"statuses_count":26141,"created_at":"Fri Aug 06 18:03:55 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D1D1D1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/601223101762785280\/n-CnXwjN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/601223101762785280\/n-CnXwjN.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663253528626900992\/LLGLXhQ__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663253528626900992\/LLGLXhQ__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175470148\/1444554377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113666"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219493797888,"id_str":"663728219493797888","text":"@MilanoSkyisRed \u3088\u304a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728069165772800,"in_reply_to_status_id_str":"663728069165772800","in_reply_to_user_id":1323870577,"in_reply_to_user_id_str":"1323870577","in_reply_to_screen_name":"MilanoSkyisRed","user":{"id":3316484161,"id_str":"3316484161","name":"\u30e9\u30ea\u52a9","screen_name":"zurazura643","location":"\u304a\u3044\u3067\u3088\uff01\uff01\u5065\u5168\u306e\u68ee\uff01\uff01","url":null,"description":"\u30aa\u30ec\u306f\uff01\uff01\uff01\u30e9\u30ea\u52a9\uff01\uff01\uff01\uff01\uff01\uff01\uff01 \u30a2\u30a4\u30b3\u30f3\u306f@0601_tun\u3055\u3093\u304b\u3089","protected":false,"verified":false,"followers_count":265,"friends_count":237,"listed_count":5,"favourites_count":1696,"statuses_count":8620,"created_at":"Sun Aug 16 03:04:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663273131511906304\/ZTT3sHTO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663273131511906304\/ZTT3sHTO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316484161\/1439694977","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MilanoSkyisRed","name":"\u308c\u3044\u30cb\u30ad","id":1323870577,"id_str":"1323870577","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113658"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514793984,"id_str":"663728219514793984","text":"\ub108\ud7501... \uc65c \u3148\u314f\uafb8..\uac19\uc774\ub098\uc640..? \ub098 \ubd88\uc548\ud558\uac8c \ud560\uac70\u314ek ?!~11!! (\ud5e4 \ub4dc \ubc45\uc789 )","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3237062130,"id_str":"3237062130","name":"\ubc15\ube59\uc218","screen_name":"todtykatsu","location":"\uc9e4\uacc4+\uad6c\ub3c5\uacc4(\uc0ac\ub791\ud574\uc694!)","url":null,"description":"\uc751?\uae08\ubc1c\uc801\uc548? \ub0b4 \ucd5c\uc560\uce90\uc544\ub2c8\ub0d0?","protected":false,"verified":false,"followers_count":97,"friends_count":16,"listed_count":2,"favourites_count":24,"statuses_count":165,"created_at":"Fri Jun 05 16:16:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660787702070034433\/7C7cHcvi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660787702070034433\/7C7cHcvi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3237062130\/1446379157","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219523166208,"id_str":"663728219523166208","text":"RT @purrpear: \u0e43\u0e0a\u0e49 Apple Watch \u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e27\u0e31\u0e0755555555555555555555555555555555555555555555 http:\/\/t.co\/gl7rq4Rzz7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2971439058,"id_str":"2971439058","name":"\u0e1e\u0e34\u0e21\u0e44\u0e2b\u0e19","screen_name":"ptpimm","location":null,"url":null,"description":"\u2661pimm","protected":false,"verified":false,"followers_count":73,"friends_count":70,"listed_count":1,"favourites_count":150,"statuses_count":6866,"created_at":"Sat Jan 10 08:42:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624857909730512897\/_cm4avww_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624857909730512897\/_cm4avww_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971439058\/1421393353","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Apr 23 11:14:55 +0000 2015","id":591198562161070080,"id_str":"591198562161070080","text":"\u0e43\u0e0a\u0e49 Apple Watch \u0e15\u0e49\u0e2d\u0e07\u0e23\u0e30\u0e27\u0e31\u0e0755555555555555555555555555555555555555555555 http:\/\/t.co\/gl7rq4Rzz7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":229001389,"id_str":"229001389","name":"\u0e41\u0e02\u0e23\u0e14\u0e32","screen_name":"purrpear","location":null,"url":null,"description":"\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e27\u0e22\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e42\u0e0a\u0e04\u0e14\u0e35\u0e40\u0e1e\u0e23\u0e32\u0e30\u0e1a\u0e32\u0e07\u0e17\u0e35\u0e21\u0e31\u0e19\u0e01\u0e47\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e33\u0e2a\u0e32\u0e1b","protected":false,"verified":false,"followers_count":14656,"friends_count":194,"listed_count":2,"favourites_count":1133,"statuses_count":68531,"created_at":"Tue Dec 21 07:38:16 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663367453523619840\/VmScU0ZF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663367453523619840\/VmScU0ZF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229001389\/1435684879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23222,"favorite_count":868,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":591198536034717696,"id_str":"591198536034717696","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","url":"http:\/\/t.co\/gl7rq4Rzz7","display_url":"pic.twitter.com\/gl7rq4Rzz7","expanded_url":"http:\/\/twitter.com\/purrpear\/status\/591198562161070080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":431,"resize":"fit"},"medium":{"w":600,"h":761,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":761,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":591198536034717696,"id_str":"591198536034717696","indices":[70,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","url":"http:\/\/t.co\/gl7rq4Rzz7","display_url":"pic.twitter.com\/gl7rq4Rzz7","expanded_url":"http:\/\/twitter.com\/purrpear\/status\/591198562161070080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":431,"resize":"fit"},"medium":{"w":600,"h":761,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":761,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"purrpear","name":"\u0e41\u0e02\u0e23\u0e14\u0e32","id":229001389,"id_str":"229001389","indices":[3,12]}],"symbols":[],"media":[{"id":591198536034717696,"id_str":"591198536034717696","indices":[84,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","url":"http:\/\/t.co\/gl7rq4Rzz7","display_url":"pic.twitter.com\/gl7rq4Rzz7","expanded_url":"http:\/\/twitter.com\/purrpear\/status\/591198562161070080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":431,"resize":"fit"},"medium":{"w":600,"h":761,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":761,"resize":"fit"}},"source_status_id":591198562161070080,"source_status_id_str":"591198562161070080","source_user_id":229001389,"source_user_id_str":"229001389"}]},"extended_entities":{"media":[{"id":591198536034717696,"id_str":"591198536034717696","indices":[84,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CDRb76wUkAAMKty.jpg","url":"http:\/\/t.co\/gl7rq4Rzz7","display_url":"pic.twitter.com\/gl7rq4Rzz7","expanded_url":"http:\/\/twitter.com\/purrpear\/status\/591198562161070080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":431,"resize":"fit"},"medium":{"w":600,"h":761,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":761,"resize":"fit"}},"source_status_id":591198562161070080,"source_status_id_str":"591198562161070080","source_user_id":229001389,"source_user_id_str":"229001389"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080113665"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219518963712,"id_str":"663728219518963712","text":"\u4eca\u65e5\u306f\u30dd\u30ad\u30dd\u30ad\u9a12\u304c\u3057\u3044\u65e5\u3067\u3057\u305f\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520613953,"id_str":"520613953","name":"\u306b\u308f\u3063\u3053","screen_name":"ecoute0605","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":59,"listed_count":1,"favourites_count":52,"statuses_count":1008,"created_at":"Sat Mar 10 18:15:20 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000787740478\/532817c3d8713bee1ca5067cfc7b260b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000787740478\/532817c3d8713bee1ca5067cfc7b260b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520613953\/1437462231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113664"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219489603584,"id_str":"663728219489603584","text":"\u88d5\u592a\u541b\u3068\u3044\u3063\u305f\u3089\u3053\u3044\u3064\u3057\u304b\u3044\u306d\u3048\u305c\u3002\u30fb\u00b0\u00b0\u30fb(\uff1e_\uff1c)\u30fb\u00b0\u00b0\u30fb\u3002 https:\/\/t.co\/vQfWo4fgen","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3945351912,"id_str":"3945351912","name":"a \u3061\u3083\u3093","screen_name":"927Oak_","location":"\u3042\u304d\u3089\u3055\u3093 \u81e3\u3055\u3093 \u307e\u30fc\u3065","url":null,"description":"\u65b0 \u57a2 \u3067 \u3059 \u2764\ufe0e \u306d\u304f\u3059\u30681114","protected":false,"verified":false,"followers_count":121,"friends_count":119,"listed_count":1,"favourites_count":128,"statuses_count":523,"created_at":"Mon Oct 19 09:16:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661327130727284737\/Y_vuGKdl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661327130727284737\/Y_vuGKdl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3945351912\/1445422382","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663723683496595456,"quoted_status_id_str":"663723683496595456","quoted_status":{"created_at":"Mon Nov 09 14:23:52 +0000 2015","id":663723683496595456,"id_str":"663723683496595456","text":"#fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059\n\n\u4e2d\u52d9\u88d5\u592a \u2661 97' \u2661 TOKYO\n\u3059\u3050\u304a\u8fce\u3048\u884c\u3063\u3066\u3059\u3050\u6d88\u3057\u3066\u9375\u306b\u3057\u307e\u3059(\/ _ ; )\uff01\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u65b9\u2661 https:\/\/t.co\/gUNDfZtCHU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315051439,"id_str":"3315051439","name":"\u307f\u3055\u304a\u3063\u3061 \u2661","screen_name":"yn__pp17","location":"Back Stage \u2661\u2661","url":null,"description":"\u7d0d\u8c46\uff1e\u308f\u305f\u3057@sr_pppo18","protected":false,"verified":false,"followers_count":188,"friends_count":188,"listed_count":5,"favourites_count":623,"statuses_count":4607,"created_at":"Fri Aug 14 11:55:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663636484436586496\/t4j132bq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663636484436586496\/t4j132bq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315051439\/1446554484","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fam\u3055\u3093\u7e4b\u304c\u308a\u307e\u305b\u3093\u304bRT\u3067\u6c17\u306b\u306a\u3063\u305f\u4eba\u304a\u8fce\u3048\u3044\u304d\u307e\u3059","indices":[0,29]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723671865823232,"id_str":"663723671865823232","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFKbqUkAApNyl.jpg","url":"https:\/\/t.co\/gUNDfZtCHU","display_url":"pic.twitter.com\/gUNDfZtCHU","expanded_url":"http:\/\/twitter.com\/yn__pp17\/status\/663723683496595456\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQfWo4fgen","expanded_url":"https:\/\/twitter.com\/yn__pp17\/status\/663723683496595456","display_url":"twitter.com\/yn__pp17\/statu\u2026","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113657"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219518955520,"id_str":"663728219518955520","text":"RT @wshhdaily_: When your amazing at pretending you like a gift! https:\/\/t.co\/pfEOLPLIWs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2356010539,"id_str":"2356010539","name":"Kn-sty","screen_name":"Kevinjacob__","location":"Guam","url":"http:\/\/Instagram.com\/kn.sty","description":null,"protected":false,"verified":false,"followers_count":320,"friends_count":286,"listed_count":2,"favourites_count":8516,"statuses_count":10902,"created_at":"Sat Feb 22 08:09:56 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661518279534481408\/oMCuPzxw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661518279534481408\/oMCuPzxw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2356010539\/1446033593","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 17:16:33 +0000 2015","id":663042368199872512,"id_str":"663042368199872512","text":"When your amazing at pretending you like a gift! https:\/\/t.co\/pfEOLPLIWs","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4014341296,"id_str":"4014341296","name":"WSHH Vids","screen_name":"wshhdaily_","location":"Your Girls House","url":null,"description":"We'll tweet anything funny no matter how offensive | *Not affiliated with @worldstar*","protected":false,"verified":false,"followers_count":2536,"friends_count":1156,"listed_count":0,"favourites_count":0,"statuses_count":50,"created_at":"Thu Oct 22 04:00:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657045955502436352\/dotJLAPa.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657045955502436352\/dotJLAPa.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661615904157999104\/_D4mLYZG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661615904157999104\/_D4mLYZG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4014341296\/1446577747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":226,"favorite_count":146,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pfEOLPLIWs","expanded_url":"https:\/\/vine.co\/v\/ewJP7Mh0A1V","display_url":"vine.co\/v\/ewJP7Mh0A1V","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pfEOLPLIWs","expanded_url":"https:\/\/vine.co\/v\/ewJP7Mh0A1V","display_url":"vine.co\/v\/ewJP7Mh0A1V","indices":[65,88]}],"user_mentions":[{"screen_name":"wshhdaily_","name":"WSHH Vids","id":4014341296,"id_str":"4014341296","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113664"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219498000384,"id_str":"663728219498000384","text":"@natsumexxx \u624b\u306b\u5165\u308c\u305f\u3044\u0669(\u0e51\u275b\u1d17\u275b\u0e51)\u06f6\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727337221963777,"in_reply_to_status_id_str":"663727337221963777","in_reply_to_user_id":1572933498,"in_reply_to_user_id_str":"1572933498","in_reply_to_screen_name":"natsumexxx","user":{"id":2241693258,"id_str":"2241693258","name":"kotora*DF\u4e21\u65e5E-386","screen_name":"Tree_of_angels","location":"\u65e5\u672c \u6771\u4eac\u90fd","url":"http:\/\/treeofangels.thebase.in","description":"Tree of angels \u304a\u5e97\u3067\u58f2\u3063\u3066\u306a\u3044\u7269\u3067\u7686\u69d8\u306e\u53ef\u611b\u3044\u306e\u4e00\u3064\u306b\u306a\u308a\u305f\u3044\u3092\u30b3\u30f3\u30bb\u30d7\u30c8\u306b\u6d3b\u52d5\u4e2d \u985e\u4f3c\u54c1\u306e\u5236\u4f5c\u3001\u7121\u65ad\u8ee2\u8f09\u306f\u304a\u63a7\u3048\u304f\u3060\u3055\u3044\u3002 \u4f55\u304b\u3054\u3056\u3044\u307e\u3057\u305f\u3089\u3053\u3061\u3089\u307e\u3067\u2192tree_of_angels_kotora@yahoo.co.jp","protected":false,"verified":false,"followers_count":1669,"friends_count":283,"listed_count":109,"favourites_count":5231,"statuses_count":21512,"created_at":"Thu Dec 12 02:50:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597736844801912833\/-Et-d6DP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597736844801912833\/-Et-d6DP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2241693258\/1413258683","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"natsumexxx","name":"\u68d7@\u4f01\u753b\u306a\u3046","id":1572933498,"id_str":"1572933498","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113659"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219514732546,"id_str":"663728219514732546","text":"RT @chibakenichi: \u62b1\u304d\u4e0a\u3052\u3088\u3046\u3068\u3057\u305f\u3089\u30b5\u30bf\u30c7\u30fc\u30ca\u30a4\u30c8\u30d5\u30a3\u30fc\u30d0\u30fc\u307f\u305f\u3044\u306b\u306a\u3063\u305f http:\/\/t.co\/xKQ8n82mTU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2991419436,"id_str":"2991419436","name":"\u3077\u308a\u3093","screen_name":"purinrokon","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":195,"friends_count":189,"listed_count":4,"favourites_count":1962,"statuses_count":7102,"created_at":"Tue Jan 20 17:33:13 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623621876678463489\/-iCNRJj9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623621876678463489\/-iCNRJj9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991419436\/1447003867","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Oct 12 08:42:24 +0000 2015","id":653490890137206784,"id_str":"653490890137206784","text":"\u62b1\u304d\u4e0a\u3052\u3088\u3046\u3068\u3057\u305f\u3089\u30b5\u30bf\u30c7\u30fc\u30ca\u30a4\u30c8\u30d5\u30a3\u30fc\u30d0\u30fc\u307f\u305f\u3044\u306b\u306a\u3063\u305f http:\/\/t.co\/xKQ8n82mTU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66887411,"id_str":"66887411","name":"\u3061\u3070\u3051\u3093\u3044\u3061\/Kenichi Chiba","screen_name":"chibakenichi","location":"Tokyo , Japan","url":"http:\/\/soundcloud.com\/chibakenichi","description":"Moter Sports,Disco,Cat\u300a\u220b\u03c3\u044f\u03c3\u2208\u300b\n\u4f5c\u8a5e\u3001\u4f5c\u30fb\u7de8\u66f2\u3001DJ \u627f\u308a\u307e\u3059\u3002 [chibakenichi0904@gmail.com]\n\u25c6\u30bd\u30ed\u30a2\u30eb\u30d0\u30e0\u2192 http:\/\/bit.ly\/1g43Nlz \u25c6niconico\u2192 http:\/\/bit.ly\/uiOdoJ","protected":false,"verified":false,"followers_count":2207,"friends_count":599,"listed_count":197,"favourites_count":1294,"statuses_count":45394,"created_at":"Wed Aug 19 02:45:14 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605029253546020865\/jQboehJQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605029253546020865\/jQboehJQ.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585446256312393728\/-QczFfug_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585446256312393728\/-QczFfug_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66887411\/1433085470","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19111,"favorite_count":19787,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":653490888044187648,"id_str":"653490888044187648","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","url":"http:\/\/t.co\/xKQ8n82mTU","display_url":"pic.twitter.com\/xKQ8n82mTU","expanded_url":"http:\/\/twitter.com\/chibakenichi\/status\/653490890137206784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":526,"resize":"fit"},"large":{"w":465,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":465,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":653490888044187648,"id_str":"653490888044187648","indices":[30,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","url":"http:\/\/t.co\/xKQ8n82mTU","display_url":"pic.twitter.com\/xKQ8n82mTU","expanded_url":"http:\/\/twitter.com\/chibakenichi\/status\/653490890137206784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":526,"resize":"fit"},"large":{"w":465,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":465,"h":720,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chibakenichi","name":"\u3061\u3070\u3051\u3093\u3044\u3061\/Kenichi Chiba","id":66887411,"id_str":"66887411","indices":[3,16]}],"symbols":[],"media":[{"id":653490888044187648,"id_str":"653490888044187648","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","url":"http:\/\/t.co\/xKQ8n82mTU","display_url":"pic.twitter.com\/xKQ8n82mTU","expanded_url":"http:\/\/twitter.com\/chibakenichi\/status\/653490890137206784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":526,"resize":"fit"},"large":{"w":465,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":465,"h":720,"resize":"fit"}},"source_status_id":653490890137206784,"source_status_id_str":"653490890137206784","source_user_id":66887411,"source_user_id_str":"66887411"}]},"extended_entities":{"media":[{"id":653490888044187648,"id_str":"653490888044187648","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRGqgBXUEAA03e8.jpg","url":"http:\/\/t.co\/xKQ8n82mTU","display_url":"pic.twitter.com\/xKQ8n82mTU","expanded_url":"http:\/\/twitter.com\/chibakenichi\/status\/653490890137206784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":526,"resize":"fit"},"large":{"w":465,"h":720,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":465,"h":720,"resize":"fit"}},"source_status_id":653490890137206784,"source_status_id_str":"653490890137206784","source_user_id":66887411,"source_user_id_str":"66887411"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113663"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219510718464,"id_str":"663728219510718464","text":"Bi kez daha kendimi tan\u0131m\u0131\u015f oldum,hi\u00e7 tarz\u0131m de\u011fil","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":267752634,"id_str":"267752634","name":"Ayg\u00fcl","screen_name":"AygulBalciii","location":"Harikalar Diyar\u0131","url":null,"description":"Ne kadar bitik sand\u0131lar,o kadar dimdik.Ne kadar gitti sand\u0131lar o kadar geldim.\n#mpal\u00f6n\u00fclaleli 251114","protected":false,"verified":false,"followers_count":792,"friends_count":187,"listed_count":1,"favourites_count":39970,"statuses_count":32315,"created_at":"Thu Mar 17 13:39:38 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529679691016196097\/anSz7pwt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529679691016196097\/anSz7pwt.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654305568274939904\/xTYWjiL1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654305568274939904\/xTYWjiL1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/267752634\/1447005915","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080113662"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219502301184,"id_str":"663728219502301184","text":"@akicham5915 \u304c\u3093\u3070\u308b\u306d\u30fc\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726555084943361,"in_reply_to_status_id_str":"663726555084943361","in_reply_to_user_id":1976648870,"in_reply_to_user_id_str":"1976648870","in_reply_to_screen_name":"akicham5915","user":{"id":2965797228,"id_str":"2965797228","name":"\u304b\u305a\u306a\u308a(\u6c17\u5206\u5c4b\u3055\u3093)","screen_name":"6621Kazuzu","location":"\u5199\u771f\u3088\u308a\u5b9f\u7269\u306e\u307b\u3046\u304c\u826f\u3044\u3089\u3057\u3044\u3067\u3059\u3002","url":null,"description":"\u30e2\u30c7\u30eb.\u30c9\u30e9\u30de.\u30d5\u30a1\u30b7\u30e7\u30f3\u30b7\u30e7\u30fc\u306a\u3069\u69d8\u3005\u306a\u4e8b\u306b\u6311\u6226\u3057\u3066\u3044\u307e\u3059\u3002\u8272\u3093\u306a\u65b9\u3068\u7e4b\u304c\u308a\u305f\u3044\u203c\ufe0e \u6765\u308b\u8005\u62d2\u307e\u305a\u2661\u2661\u2661 \u30ab\u30c3\u30b3\u53ef\u611b\u3044\u304f\u306a\u308b\u306e\u304c\u5922\u3067\u3059\u3002\u4ed5\u4e8b\u306e\u6848\u4ef6\u306fDM\u3067\u3002","protected":false,"verified":false,"followers_count":1575,"friends_count":287,"listed_count":66,"favourites_count":14402,"statuses_count":7714,"created_at":"Thu Jan 08 10:45:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661931182532116485\/K-qvIrtc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661931182532116485\/K-qvIrtc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2965797228\/1446904941","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"akicham5915","name":"*\u9ed2\u732b\u3042\u304d\u3061\u3083\u3080*","id":1976648870,"id_str":"1976648870","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113660"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219519107076,"id_str":"663728219519107076","text":"Si quer\u00e9s que algo salga bien, no se lo cuentes a nadie.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2310319771,"id_str":"2310319771","name":"JESUSGOITIA","screen_name":"jesusgoitiaOK","location":"Venezuela","url":"https:\/\/instagram.com\/jesusgoitia24","description":"Cantante, Actor, Escritor, Youtuber, Futbolista, Millonario Eso es todo lo que me hubiera gustado ser! MEDICO EN PROCESO ! Venezuela\u2764","protected":false,"verified":false,"followers_count":2326,"friends_count":2235,"listed_count":4,"favourites_count":0,"statuses_count":2359,"created_at":"Sat Jan 25 16:16:54 +0000 2014","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633284063877570560\/-w4OqAMJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633284063877570560\/-w4OqAMJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2310319771\/1444704152","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080113664"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219527503872,"id_str":"663728219527503872","text":"Ia fazer algo e esqueci","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300472540,"id_str":"300472540","name":"Fabiano Schmitz","screen_name":"fabianoschmitzz","location":"Crici\u00fama, SC","url":null,"description":null,"protected":false,"verified":false,"followers_count":330,"friends_count":236,"listed_count":1,"favourites_count":4029,"statuses_count":41618,"created_at":"Tue May 17 20:32:39 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"050100","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182351109\/zpgbs6jG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182351109\/zpgbs6jG.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663107053012021248\/fLD5qmq-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663107053012021248\/fLD5qmq-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300472540\/1443306973","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080113666"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219510599682,"id_str":"663728219510599682","text":"@kimuser101 \u314b\n\u314b\u314b\n\u314b\uae30\uc5ec\uc6e4\u314b\u314b\u314b\ub124 \ub124 \uc6b8\uc9c0\ub294 \uc54a\u3147\uc544\uc694..!\uc77c\ub2e8 \ubd88\uc548\ud55c\uac70\ub2c8\uae4c..@@!!!! \uadf8\uce58\ub9cc \ud6a8\uace0\uc324 \uad00\ud55c \uc77c\uc774\ub77c\uba70\ub274\uc6b8\uc9c0\ub3c4 \ubab0\ub77c 8\u31418","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727681234534400,"in_reply_to_status_id_str":"663727681234534400","in_reply_to_user_id":2794071926,"in_reply_to_user_id_str":"2794071926","in_reply_to_screen_name":"kimuser101","user":{"id":2401681416,"id_str":"2401681416","name":"\uc81c\ub178\uc2a4 \uadc0\uc5ec\uc6cc \uc820\uc7a5","screen_name":"dockjil","location":null,"url":"http:\/\/ask.fm\/dockjil","description":"\uc544\uc26c\uc6cc \ub9c8\uc138\uc694. \ub610 \ubaa8\ub974\uc8e0.","protected":false,"verified":false,"followers_count":195,"friends_count":237,"listed_count":0,"favourites_count":7617,"statuses_count":121893,"created_at":"Fri Mar 21 14:50:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656123827324227584\/K93hlBLW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656123827324227584\/K93hlBLW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2401681416\/1440783259","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kimuser101","name":"\uacc4\uc815(\uc724\uc2dd\uc544\ucc0c-\uc774\uc6c3 \uc370 \ud480\uae30)","id":2794071926,"id_str":"2794071926","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080113662"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219506368512,"id_str":"663728219506368512","text":"RT @Moo6__: \u3084\u3063\u3066\u307e\u3057\u305f\u3000https:\/\/t.co\/xgRky2h1g0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1614710977,"id_str":"1614710977","name":"\u3044\u3061\u304b","screen_name":"ich_k17","location":"\u65b0\u5bbf\u533a \u5343\u4ee3\u7530\u533a \u8fd1\u8fba\u306b\u51fa\u6ca1","url":"http:\/\/pixiv.me\/ichika0917works","description":"\uff72\uff9d\uff80\uff70\uff88\uff6f\uff84\u843d\u66f8\u304d\uff8f\uff9d \u65e5\u5e38\uff82\uff72\uff70\uff84\u591a\u3081\u3067\u3059 \u6210\u4eba\u6e08\u307f \uff85\uff85\uff7c\uff7d\u3084\u3070\u307f \uff83\uff9e\uff7b\uff9e\uff72\uff9d&\uff72\uff97\uff7d\uff84\u306e\u4ed5\u4e8b\u3082\u3057\u3066\u307e\u3059\u3002 \u6709\u511f\u306e\u307f\u4f9d\u983c\u53d7\u4ed8\u4e2d\u2192hajime11loid@gmail.com \u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u2192\u89e3\u9664\u3067 https:\/\/instagram.com\/ichikagram\/","protected":false,"verified":false,"followers_count":584,"friends_count":297,"listed_count":36,"favourites_count":4230,"statuses_count":34798,"created_at":"Tue Jul 23 07:51:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/532921682747351040\/Pqdm-105.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/532921682747351040\/Pqdm-105.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658528609628368896\/p6xUf3ae_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658528609628368896\/p6xUf3ae_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1614710977\/1441879635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:00 +0000 2015","id":663727994997862400,"id_str":"663727994997862400","text":"\u3084\u3063\u3066\u307e\u3057\u305f\u3000https:\/\/t.co\/xgRky2h1g0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2923865263,"id_str":"2923865263","name":"mo","screen_name":"Moo6__","location":"\uf8ff","url":"http:\/\/moooo.xxxxxxxx.jp\/","description":"\u4e3b\u98df:\u30ec\u30aa\u53f8","protected":false,"verified":false,"followers_count":535,"friends_count":89,"listed_count":19,"favourites_count":1361,"statuses_count":10245,"created_at":"Tue Dec 09 13:03:09 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EEEEEE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"EF1485","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663033873903718401\/gX8KyNJx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663033873903718401\/gX8KyNJx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2923865263\/1446700969","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xgRky2h1g0","expanded_url":"https:\/\/itunes.apple.com\/jp\/app\/mianrimiru-wu-yu-meng-jianru\/id946785854?mt=8","display_url":"itunes.apple.com\/jp\/app\/mianrim\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xgRky2h1g0","expanded_url":"https:\/\/itunes.apple.com\/jp\/app\/mianrimiru-wu-yu-meng-jianru\/id946785854?mt=8","display_url":"itunes.apple.com\/jp\/app\/mianrim\u2026","indices":[19,42]}],"user_mentions":[{"screen_name":"Moo6__","name":"mo","id":2923865263,"id_str":"2923865263","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113661"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219506393088,"id_str":"663728219506393088","text":"@thelaceylondon Yes girl. Lol.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728061611950081,"in_reply_to_status_id_str":"663728061611950081","in_reply_to_user_id":2869103344,"in_reply_to_user_id_str":"2869103344","in_reply_to_screen_name":"thelaceylondon","user":{"id":832586784,"id_str":"832586784","name":"Hope S.","screen_name":"HopeInspire","location":"United States","url":"http:\/\/www.hopefaithinspire.com","description":"Life & Success Mindset Coach \/ Entrepreneur \/Author \/ Successful Single Mom \/ Empowering Women to Greatness \/ Lover of Life and Child of God!","protected":false,"verified":false,"followers_count":4677,"friends_count":4801,"listed_count":150,"favourites_count":15145,"statuses_count":18826,"created_at":"Wed Sep 19 05:01:53 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"020812","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181614551\/tuLF6_bl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181614551\/tuLF6_bl.jpeg","profile_background_tile":true,"profile_link_color":"9900FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"020812","profile_text_color":"2280A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630512359207890944\/fOlcW3AA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630512359207890944\/fOlcW3AA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/832586784\/1399944070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thelaceylondon","name":"Lacey London","id":2869103344,"id_str":"2869103344","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113661"} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219502174209,"id_str":"663728219502174209","text":"@turnerharriss dude screw earth! Vape is lyfe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727938152570880,"in_reply_to_status_id_str":"663727938152570880","in_reply_to_user_id":3355388352,"in_reply_to_user_id_str":"3355388352","in_reply_to_screen_name":"turnerharriss","user":{"id":1007466211,"id_str":"1007466211","name":"alright guy","screen_name":"cbyers98","location":"Georgia, USA","url":null,"description":"welcome","protected":false,"verified":false,"followers_count":142,"friends_count":177,"listed_count":1,"favourites_count":2592,"statuses_count":2315,"created_at":"Wed Dec 12 22:32:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589966352816963584\/ltcwbAV1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589966352816963584\/ltcwbAV1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007466211\/1446885959","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"turnerharriss","name":"Turner Harris","id":3355388352,"id_str":"3355388352","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113660"} +{"delete":{"status":{"id":663727858808979456,"id_str":"663727858808979456","user_id":4106624595,"user_id_str":"4106624595"},"timestamp_ms":"1447080113883"}} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219502219265,"id_str":"663728219502219265","text":"this plate is the only thing that is allowed to tell me how to live my life https:\/\/t.co\/8FspHIn8Jr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3119260447,"id_str":"3119260447","name":"ROSETTA Stacey","screen_name":"72ROSETTAStacey","location":"GarlandTX","url":"http:\/\/pict-twiter.com\/tagged\/funny","description":"Digital marketing ninja. Social media wizard. I will maximize your ROI, minimize your CPL, and superglue your stickiness. For beer.","protected":false,"verified":false,"followers_count":17139,"friends_count":9896,"listed_count":4,"favourites_count":0,"statuses_count":13123,"created_at":"Tue Mar 31 06:01:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582788622249639936\/k_ChMnJL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582788622249639936\/k_ChMnJL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3119260447\/1427782612","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728217442775041,"id_str":"663728217442775041","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTBQUcAE7tzi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTBQUcAE7tzi.jpg","url":"https:\/\/t.co\/8FspHIn8Jr","display_url":"pic.twitter.com\/8FspHIn8Jr","expanded_url":"http:\/\/twitter.com\/72ROSETTAStacey\/status\/663728219502219265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728217442775041,"id_str":"663728217442775041","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTBQUcAE7tzi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTBQUcAE7tzi.jpg","url":"https:\/\/t.co\/8FspHIn8Jr","display_url":"pic.twitter.com\/8FspHIn8Jr","expanded_url":"http:\/\/twitter.com\/72ROSETTAStacey\/status\/663728219502219265\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080113660"} +{"delete":{"status":{"id":245254632518062080,"id_str":"245254632518062080","user_id":216892385,"user_id_str":"216892385"},"timestamp_ms":"1447080113969"}} +{"created_at":"Mon Nov 09 14:41:53 +0000 2015","id":663728219527380993,"id_str":"663728219527380993","text":"@C_Y_A_WF \n\u597d\u304d\u306a\u306e\u3088\u306d.....\u306a\u3093\u304b.....\u304b\u3063\u3053\u3044\u3044\u3058\u3083\u306a\u3044?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728063792832512,"in_reply_to_status_id_str":"663728063792832512","in_reply_to_user_id":3690664886,"in_reply_to_user_id_str":"3690664886","in_reply_to_screen_name":"C_Y_A_WF","user":{"id":4117831098,"id_str":"4117831098","name":"\u6a21\u578b\u5c4b\u53e2\u96f2","screen_name":"P_model_mrkm","location":"\u53e2\u96f2\u6a21\u578b\u5e97","url":"http:\/\/twpf.jp\/P_model_mrkm","description":"11\/4\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306b\u8ee2\u751f\u3002 \n\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u300c\u8266\u968a\u3053\u308c\u304f\u3057\u3087\u3093\u300d\u306e\u4e8c\u6b21\u5275\u4f5c\u30a2\u30ab\u30a6\u30f3\u30c8\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u3002\u7279\u6b8a\u8a2d\u5b9a\u7279\u76db\u306e\u70ba\u3001\u4ed5\u69d8\u66f8\u5fc5\u8aad\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":41,"friends_count":43,"listed_count":3,"favourites_count":130,"statuses_count":837,"created_at":"Tue Nov 03 23:32:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661691112214523905\/aVoSp5gw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661691112214523905\/aVoSp5gw_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"C_Y_A_WF","name":"\u30c9\u30b9\u3046\u3055\u304e(\u3060\u304c\u3057\u304b\u3057\u30d5\u30af\u30ed\u30a6)","id":3690664886,"id_str":"3690664886","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080113666"} +{"delete":{"status":{"id":302911888306622464,"id_str":"302911888306622464","user_id":499865105,"user_id_str":"499865105"},"timestamp_ms":"1447080114031"}} +{"delete":{"status":{"id":444506398823825408,"id_str":"444506398823825408","user_id":913706594,"user_id_str":"913706594"},"timestamp_ms":"1447080114379"}} +{"delete":{"status":{"id":657642548647870464,"id_str":"657642548647870464","user_id":3314551314,"user_id_str":"3314551314"},"timestamp_ms":"1447080114579"}} +{"delete":{"status":{"id":663699475949559809,"id_str":"663699475949559809","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080114699"}} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223692464128,"id_str":"663728223692464128","text":"...\u0432\u0438\u0434 \u0441\u043f\u043e\u0440\u0442\u0430. \u0427\u0442\u043e \u043f\u0435\u0440\u0435\u043d\u0435\u0441- \u043d\u0443 \u043d\u0430\u0432\u0435\u0440\u043d\u043e \u0443\u043c\u0435\u043d\u0438\u0435 \u0438\u0433\u0440\u0430\u0442\u044c \u0432 \u043a\u043e\u043c\u0430\u043d\u0434\u0435...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251144997,"id_str":"1251144997","name":"RandolfPatel","screen_name":"RandolfPatel","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":164,"friends_count":17,"listed_count":5,"favourites_count":0,"statuses_count":148043,"created_at":"Fri Mar 08 08:27:44 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3602072765\/276ce9aad233d2d1b17c1215f9fb1b5d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3602072765\/276ce9aad233d2d1b17c1215f9fb1b5d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080114659"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223717621760,"id_str":"663728223717621760","text":"RT @Pooo_mm: Gotta secret can u keep it?\ud83d\udddd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":436636315,"id_str":"436636315","name":"\u0448\u0430\u043b\u044c\u043d\u0430\u044f \u0438\u043c\u043f\u0435\u0440\u0430\u0442\u0440\u0438\u0446\u0430","screen_name":"Lena_Merrr","location":null,"url":"http:\/\/vk.com\/kookooos","description":"\u042f \u0411\u0423\u0414\u0423 \u0413\u041e\u0412\u041e\u0420\u0418\u0422\u042c \u0422\u041e\u041b\u042c\u041a\u041e \u0412 \u041f\u0420\u0418\u0421\u0423\u0422\u0421\u0422\u0412\u0418\u0418 \u0421\u0412\u041e\u0415\u0413\u041e \u0410\u0412\u041e\u041a\u0410\u0414\u041e.","protected":false,"verified":false,"followers_count":120,"friends_count":57,"listed_count":0,"favourites_count":232,"statuses_count":7051,"created_at":"Wed Dec 14 11:28:36 +0000 2011","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/700611180\/eabc83a024f0d10e4d61c4e5bebd6559.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/700611180\/eabc83a024f0d10e4d61c4e5bebd6559.jpeg","profile_background_tile":true,"profile_link_color":"ED722F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B0B0B0","profile_text_color":"030302","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560130268175294466\/ZIBq-C3c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560130268175294466\/ZIBq-C3c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436636315\/1447007852","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:20:24 +0000 2015","id":663662415758893056,"id_str":"663662415758893056","text":"Gotta secret can u keep it?\ud83d\udddd","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":169431583,"id_str":"169431583","name":"Pauline T","screen_name":"Pooo_mm","location":"Rostov-on-Don","url":null,"description":"follow the sun\u2600\ufe0f","protected":false,"verified":false,"followers_count":220,"friends_count":136,"listed_count":0,"favourites_count":1218,"statuses_count":11421,"created_at":"Thu Jul 22 09:36:37 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015903556\/8f0072924bfd0eed492febee5ca7aab8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015903556\/8f0072924bfd0eed492febee5ca7aab8.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661570148420165632\/h4-Yiswx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661570148420165632\/h4-Yiswx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/169431583\/1440668464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"ae59df6872ae6859","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/ae59df6872ae6859.json","place_type":"city","name":"\u0420\u043e\u0441\u0442\u043e\u0432-\u043d\u0430-\u0414\u043e\u043d\u0443","full_name":"\u0420\u043e\u0441\u0442\u043e\u0432-\u043d\u0430-\u0414\u043e\u043d\u0443, \u0420\u043e\u0441\u0442\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[39.404409,47.153392],[39.404409,47.368799],[39.851519,47.368799],[39.851519,47.153392]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Pooo_mm","name":"Pauline T","id":169431583,"id_str":"169431583","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114665"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713435648,"id_str":"663728223713435648","text":"RT @_ssh6r: .\n\u0627\u0646\u0627 \u0643\u064a\u0641 \u0627\u0628\u0648\u0635\u0641 \u0632\u064a\u0646\u0643\n .. \u0648\u062d\u0633\u0646\u0643 \u0627\u0644\u0641\u062a\u0627\u0646 \u061f\u061f\n.\n#\u0627\u0628\u064a\u0627\u062a_\u0634\u0639\u0631\u064a\u0647 \u2712\ufe0f ..\n#\u0625\u0644\u0627\u0637\u062e\u0645\u0653\u0645 \u061b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2591640673,"id_str":"2591640673","name":"Maha.","screen_name":"M_mohamd112","location":null,"url":null,"description":"\u0623\u0634\u062a\u0647\u064a \u0623\u0646 \u062a\u0631\u062c\u0639 \u0628\u064a \u0627\u0644\u0633\u0646\u064a\u0646 \u0644\u0623\u062c\u0644\u0633 \u0639\u0644\u0649 \u0623\u0631\u062c\u0648\u062d\u0629 \u0648\u0644\u0627 \u0623\u0641\u0647\u0645 \u0645\u0627 \u064a\u062f\u0648\u0631 \u062d\u0648\u0644\u064a ...","protected":false,"verified":false,"followers_count":997,"friends_count":694,"listed_count":0,"favourites_count":325,"statuses_count":8259,"created_at":"Fri Jun 27 16:20:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661023727228952578\/4OK1jFXE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661023727228952578\/4OK1jFXE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2591640673\/1446435311","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 20:14:42 +0000 2015","id":662000034473500672,"id_str":"662000034473500672","text":".\n\u0627\u0646\u0627 \u0643\u064a\u0641 \u0627\u0628\u0648\u0635\u0641 \u0632\u064a\u0646\u0643\n .. \u0648\u062d\u0633\u0646\u0643 \u0627\u0644\u0641\u062a\u0627\u0646 \u061f\u061f\n.\n#\u0627\u0628\u064a\u0627\u062a_\u0634\u0639\u0631\u064a\u0647 \u2712\ufe0f ..\n#\u0625\u0644\u0627\u0637\u062e\u0645\u0653\u0645 \u061b)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1376101392,"id_str":"1376101392","name":"\u0625\u0644\u0622\u0637\u062e\u0645\u064e\u0645 \/ \u0634\u0622\u0639\u0631 '","screen_name":"_ssh6r","location":"\u0648\u0637\u0646 \u0625\u0644\u0646\u0647\u0622\u0631","url":null,"description":"#\u0625\u0628\u064a\u0622\u062a_\u0634\u0639\u0631\u064a\u0647 \u2712\ufe0f ..","protected":false,"verified":false,"followers_count":7415,"friends_count":4255,"listed_count":2,"favourites_count":11,"statuses_count":57,"created_at":"Wed Apr 24 04:00:25 +0000 2013","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653788377712451584\/Q9h_TYPi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653788377712451584\/Q9h_TYPi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1376101392\/1444700284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[{"text":"\u0627\u0628\u064a\u0627\u062a_\u0634\u0639\u0631\u064a\u0647","indices":[44,56]},{"text":"\u0625\u0644\u0627\u0637\u062e\u0645\u0653\u0645","indices":[63,72]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0628\u064a\u0627\u062a_\u0634\u0639\u0631\u064a\u0647","indices":[56,68]},{"text":"\u0625\u0644\u0627\u0637\u062e\u0645\u0653\u0645","indices":[75,84]}],"urls":[],"user_mentions":[{"screen_name":"_ssh6r","name":"\u0625\u0644\u0622\u0637\u062e\u0645\u064e\u0645 \/ \u0634\u0622\u0639\u0631 '","id":1376101392,"id_str":"1376101392","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223700844544,"id_str":"663728223700844544","text":"RT @Am1235al1: \u0639\u0644\u0649 \u0642\u062f \u0645\u0627 \u0623\u0636\u062d\u0643 \u0648\u0627\u063a\u064a\u0631 \u062c\u0648\u064a \u0627\u0644\u0627 \u0623\u0646\u0647 \u064a\u062c\u064a\u0646\u064a \u0634\u064a\u0621 \u064a\u0648\u062c\u0639 \u0644\u064a \u0642\u0644\u0628\u064a \u0628\u0639\u062f\u0647\u0627 \u064a\u062e\u0644\u064a\u0646\u064a \u0627\u0646\u0633\u0627\u0646 \u0647\u0627\u062f\u064a \u062c\u062f\u064b\u0627.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2586785983,"id_str":"2586785983","name":"\u0623\u0634\u0648\u0627\u0642.","screen_name":"14383Shooshoo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":75,"friends_count":20,"listed_count":0,"favourites_count":240,"statuses_count":2655,"created_at":"Wed Jun 25 03:20:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661992752524193792\/lBUg3VyK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661992752524193792\/lBUg3VyK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2586785983\/1442962824","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:24 +0000 2015","id":663717779913199616,"id_str":"663717779913199616","text":"\u0639\u0644\u0649 \u0642\u062f \u0645\u0627 \u0623\u0636\u062d\u0643 \u0648\u0627\u063a\u064a\u0631 \u062c\u0648\u064a \u0627\u0644\u0627 \u0623\u0646\u0647 \u064a\u062c\u064a\u0646\u064a \u0634\u064a\u0621 \u064a\u0648\u062c\u0639 \u0644\u064a \u0642\u0644\u0628\u064a \u0628\u0639\u062f\u0647\u0627 \u064a\u062e\u0644\u064a\u0646\u064a \u0627\u0646\u0633\u0627\u0646 \u0647\u0627\u062f\u064a \u062c\u062f\u064b\u0627.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":716702649,"id_str":"716702649","name":"\u0622\u0645\u0627\u0644.","screen_name":"Am1235al1","location":null,"url":null,"description":"\u0644\u0633\u062a\u064f \u0628\u0627\u0626\u0633\u0627\u064b \u0641\u064a \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0648\u0644\u0627 \u0623\u064f\u0631\u064a\u062f\u064f \u0623\u0646 \u064a\u0633\u062a\u0639\u0637\u0641 \u0623\u062d\u062f\u0647\u0645 \u0639\u0644\u064a\u0651\u060c\u0648\u0644\u0643\u0646\u064a \u0623\u064f\u062d\u0628 \u0623\u0646 \u0623\u064f\u0639\u0627\u0646\u0650\u0642\u064e \u0623\u062d\u0627\u0633\u064a\u0633\u064d \u0648\u0627\u0642\u0639\u064a\u0629 \u0644\u064a\u0633\u064e \u0634\u0631\u0637\u0627\u064b \u0623\u0646 \u062a\u0643\u0648\u0646 \u0644\u064a \u0623\u0648 \u062a\u0635\u0641\u064f\u0646\u064a.!","protected":false,"verified":false,"followers_count":897,"friends_count":1151,"listed_count":0,"favourites_count":275,"statuses_count":7347,"created_at":"Tue Oct 15 22:26:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663679304262418432\/8_LgjqQZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663679304262418432\/8_LgjqQZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/716702649\/1445285048","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Am1235al1","name":"\u0622\u0645\u0627\u0644.","id":716702649,"id_str":"716702649","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080114661"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223684009984,"id_str":"663728223684009984","text":"RT @JuliaECosmetica: BATIDO Ginkgo Energy Sabor Chocolate https:\/\/t.co\/63dCGrKSkX","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":110974025,"id_str":"110974025","name":"Julia ","screen_name":"Bionda22","location":"sevilla","url":"https:\/\/instagram.com\/jecnaturbio\/","description":"Lo que sabemos es una gota de agua, lo que ignoramos es el oc\u00e9ano","protected":false,"verified":false,"followers_count":3517,"friends_count":3352,"listed_count":19,"favourites_count":2845,"statuses_count":26089,"created_at":"Wed Feb 03 11:47:32 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606065494156836865\/u6oL6XaE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606065494156836865\/u6oL6XaE.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626405367841484800\/FNG67thv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626405367841484800\/FNG67thv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/110974025\/1443108909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:56:52 +0000 2015","id":663399801892052993,"id_str":"663399801892052993","text":"BATIDO Ginkgo Energy Sabor Chocolate https:\/\/t.co\/63dCGrKSkX","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2906769970,"id_str":"2906769970","name":"JuliaEcoCosmetica","screen_name":"JuliaECosmetica","location":null,"url":"http:\/\/www.juliaecocosmetica.com","description":"http:\/\/www.juliaecocosmetica.com\/","protected":false,"verified":false,"followers_count":1979,"friends_count":1973,"listed_count":21,"favourites_count":487,"statuses_count":11168,"created_at":"Fri Dec 05 19:26:58 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646982524602855424\/phY6grch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646982524602855424\/phY6grch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2906769970\/1443087323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/63dCGrKSkX","expanded_url":"http:\/\/www.juliaecocosmetica.com\/home\/121-batido-ginkgo-energy-sabor-chocolate.html","display_url":"juliaecocosmetica.com\/home\/121-batid\u2026","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/63dCGrKSkX","expanded_url":"http:\/\/www.juliaecocosmetica.com\/home\/121-batido-ginkgo-energy-sabor-chocolate.html","display_url":"juliaecocosmetica.com\/home\/121-batid\u2026","indices":[59,82]}],"user_mentions":[{"screen_name":"JuliaECosmetica","name":"JuliaEcoCosmetica","id":2906769970,"id_str":"2906769970","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080114657"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709106176,"id_str":"663728223709106176","text":"RT @na_tsu0609: \u3010\u8b72\u6e21\u3011\u9752\u30a8\u30af \u7f36\u30d0\u30c3\u30b8\n\n\u8b72\u2192\u30cd\u30a4\u30ac\u30a6\u30b9\u3001\u4e8c\u30fc\u3061\u3083\u3093\u3001\u30b3\u30fc\u30eb\u30bf\u30fc\u30eb\n\n\u5404200\u5186\uff0b\u9001\u6599120\u5186\u3067\u304a\u8b72\u308a\u3057\u307e\u3059\u3002\n\u691c\u7d22\u304b\u3089\u3082\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\uff01 https:\/\/t.co\/r7Y9TLv6XT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1233224000,"id_str":"1233224000","name":"\u30b3\u30c1\u2606\uff20\u4ea4\u63db\u30fb\u8b72\u6e21\u5c02\u7528\u57a2","screen_name":"kotipri","location":"\u672c\u57a2 LUCIA_SILVIO","url":"http:\/\/twpf.jp\/kotipri","description":"\u3010\u57fa\u672c\u624b\u6e21\u3057\u5e0c\u671b\u3011 \n\u53d7\u3051\u6e21\u3057\u304c\u5e73\u65e5\u306e\u5834\u5408\u3001\n19\u6642\u307e\u3067\u4ed5\u4e8b\u306a\u306e\u3067\u9045\u3081\u306e\u6642\u9593\u306b\u306a\u308a\u307e\u3059\u3002 \n\n\u304a\u53d6\u5f15\u7d42\u4e86\u5f8c\u306f\u57fa\u672c\u7684\u306b\u30d5\u30a9\u30ed\u30fc\u3092\u5916\u3055\u305b\u3066(\u30d6\u30ed\u304b\u3089\u306e\u30d6\u30ed\u89e3\u9664)\u3044\u305f\u3060\u304d\u307e\u3059\u3002\u3054\u4e86\u627f\u304f\u3060\u3055\u3044\u3002\n\n\u203b30\u2191\u306e\u304a\u3070\u3055\u307e\u3067\u3059\uff57 \n\nNEXT\u2192 \n11\/16 16:30\u30a2\u30cb\u30ab\u30d5\u30a7 \n1\/16.17 \u30d7\u30ea\u30e9\u30a4 \n4\/3 SRX\u30a4\u30d9","protected":false,"verified":false,"followers_count":116,"friends_count":102,"listed_count":1,"favourites_count":47,"statuses_count":5626,"created_at":"Sat Mar 02 06:41:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632697795246362624\/VMYFuuf8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632697795246362624\/VMYFuuf8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1233224000\/1424017538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:53 +0000 2015","id":663726455285637120,"id_str":"663726455285637120","text":"\u3010\u8b72\u6e21\u3011\u9752\u30a8\u30af \u7f36\u30d0\u30c3\u30b8\n\n\u8b72\u2192\u30cd\u30a4\u30ac\u30a6\u30b9\u3001\u4e8c\u30fc\u3061\u3083\u3093\u3001\u30b3\u30fc\u30eb\u30bf\u30fc\u30eb\n\n\u5404200\u5186\uff0b\u9001\u6599120\u5186\u3067\u304a\u8b72\u308a\u3057\u307e\u3059\u3002\n\u691c\u7d22\u304b\u3089\u3082\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\uff01 https:\/\/t.co\/r7Y9TLv6XT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1276267693,"id_str":"1276267693","name":"\u306a\u3064\u304d\u3061@\u304a\u8fd4\u4e8b\u9045\u304f\u306a\u308a\u307e\u3059\u3002","screen_name":"na_tsu0609","location":null,"url":null,"description":"\u53d6\u5f15\u57a2\u3002\u795e\u5948\u5ddd\u3001\u6210\u4eba\u6e0830\u2191\u3002Free!\u3001\u30c0\u30a4\u30ca\u30fc\u3001\u3046\u305f\u30d7\u30ea\u3001\u3068\u3046\u3089\u3076\u306a\u3069\u304c\u597d\u304d\uff01\u5200\u306f\u4eca\u5263\u6b4c\u4ed9\u8702\u9808\u8cc0\u660e\u77f3\u63a8\u3057\u3002\u53cb\u4eba\u3068\u306e\u5171\u540c\u57a2\u3067\u3059\u306e\u3067\u52df\u96c6\u8b72\u6e21\u30ad\u30e3\u30e9\u306f\u69d8\u3005\u3001\u8cac\u4efb\u3082\u3063\u3066\u304a\u53d6\u5f15\u3044\u305f\u3057\u307e\u3059\u2728\u3086\u3046\u3061\u3087\u5bfe\u5fdc\u3002http:\/\/twpf.jp\/na_tsu0609","protected":false,"verified":false,"followers_count":549,"friends_count":588,"listed_count":4,"favourites_count":220,"statuses_count":6964,"created_at":"Sun Mar 17 23:23:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592142656668446720\/mW1j_KmL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592142656668446720\/mW1j_KmL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1276267693\/1425569537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726446687354880,"id_str":"663726446687354880","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","url":"https:\/\/t.co\/r7Y9TLv6XT","display_url":"pic.twitter.com\/r7Y9TLv6XT","expanded_url":"http:\/\/twitter.com\/na_tsu0609\/status\/663726455285637120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726446687354880,"id_str":"663726446687354880","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","url":"https:\/\/t.co\/r7Y9TLv6XT","display_url":"pic.twitter.com\/r7Y9TLv6XT","expanded_url":"http:\/\/twitter.com\/na_tsu0609\/status\/663726455285637120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"na_tsu0609","name":"\u306a\u3064\u304d\u3061@\u304a\u8fd4\u4e8b\u9045\u304f\u306a\u308a\u307e\u3059\u3002","id":1276267693,"id_str":"1276267693","indices":[3,14]}],"symbols":[],"media":[{"id":663726446687354880,"id_str":"663726446687354880","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","url":"https:\/\/t.co\/r7Y9TLv6XT","display_url":"pic.twitter.com\/r7Y9TLv6XT","expanded_url":"http:\/\/twitter.com\/na_tsu0609\/status\/663726455285637120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726455285637120,"source_status_id_str":"663726455285637120","source_user_id":1276267693,"source_user_id_str":"1276267693"}]},"extended_entities":{"media":[{"id":663726446687354880,"id_str":"663726446687354880","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHr8rVAAAR3qt.jpg","url":"https:\/\/t.co\/r7Y9TLv6XT","display_url":"pic.twitter.com\/r7Y9TLv6XT","expanded_url":"http:\/\/twitter.com\/na_tsu0609\/status\/663726455285637120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663726455285637120,"source_status_id_str":"663726455285637120","source_user_id":1276267693,"source_user_id_str":"1276267693"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223684059136,"id_str":"663728223684059136","text":"RT @kaseyjones800: aye... i need money lmfao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266209602,"id_str":"266209602","name":"\u043f\u043e\u0448\u0435\u043b \u043d\u0430 \u0445\u0443\u0439 \u0432\u0441\u0435","screen_name":"Mawvin__","location":null,"url":null,"description":"just one of the $$k's shit bags","protected":false,"verified":false,"followers_count":393,"friends_count":369,"listed_count":4,"favourites_count":12095,"statuses_count":19053,"created_at":"Mon Mar 14 21:24:15 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663023833\/k22gx53t9s9j561nx5n2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663023833\/k22gx53t9s9j561nx5n2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550509689774080\/iNHrHR4m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550509689774080\/iNHrHR4m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266209602\/1421000600","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 20:52:53 +0000 2015","id":663459196143337473,"id_str":"663459196143337473","text":"aye... i need money lmfao","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204020686,"id_str":"204020686","name":"never again","screen_name":"kaseyjones800","location":"the 8","url":"http:\/\/soundcloud.com\/kaseyjones107","description":"inquiries go to kaseyjones107@gmail.com 800 https:\/\/www.youtube.com\/watch?v=_Fssw1EfM6k","protected":false,"verified":false,"followers_count":1503,"friends_count":500,"listed_count":9,"favourites_count":5037,"statuses_count":67280,"created_at":"Sun Oct 17 18:56:03 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/438522267283111936\/UROESDFo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/438522267283111936\/UROESDFo.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639870434117337088\/CeU7O8yU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639870434117337088\/CeU7O8yU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204020686\/1429067539","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaseyjones800","name":"never again","id":204020686,"id_str":"204020686","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114657"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713259529,"id_str":"663728223713259529","text":"RT @voice_bar: \u597d\u304d\u306a\u7570\u6027\u306e\u30bf\u30a4\u30d7\n\u9ad8\u6728\u3055\u3093\uff1a\u8155\u306e\u8840\u7ba1\u304c\u898b\u3048\u308b\u4eba\n\u5965\u91ce\u3055\u3093\uff1a\u9759\u304b\u306a\u4eba\n\u5c71\u4e0b\u3055\u3093\uff1a\u65e9\u53e3\u3058\u3083\u306a\u3044\u4eba\n#\u30dc\u30a4\u30b9\u30d0\u30fc","source":"\u003ca href=\"http:\/\/yoshika23218.com\/\" rel=\"nofollow\"\u003etwitcle plus\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":472817850,"id_str":"472817850","name":"\u3055\u30fc\u3055\u306f\u9069\u5f53\u3067\u3059\u3002","screen_name":"re_gnum771","location":"\u307e\u305f\u308f\u3050\u3061\u3083\u3093\u3068\u4ed9\u53f0\u884c\u304f\u305e\uff01","url":null,"description":"\u5c71\u4e0b\u4e03\u6d77\u3055\u3093\u306b\uff62\u3055\u30fc\u3055\uff63\u3068\u540d\u4ed8\u3051\u3066\u3082\u3089\u3044\u307e\u3057\u305f\u0669(\u0e51\u00b43\uff40\u0e51)\u06f6 Wake Up, Girls!\u3068\u30a2\u30a4\u30ab\u30c4\u3068\u30e2\u30d0\u30de\u30b9\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u6700\u8fd1\u306fi\u2606Ris\u304c\u6c17\u306b\u306a\u308a\u307e\u3059 \u5c71\u4e0b\u4e03\u6d77 \/ \u5185\u7530\u771f\u793c \/ \u4e0a\u5742\u3059\u307f\u308c \/ \u4e95\u53e3\u88d5\u9999","protected":false,"verified":false,"followers_count":175,"friends_count":212,"listed_count":4,"favourites_count":17102,"statuses_count":24782,"created_at":"Tue Jan 24 10:14:46 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661792845834027008\/DlbXqRfV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661792845834027008\/DlbXqRfV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/472817850\/1446025678","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:28 +0000 2015","id":663721822303551488,"id_str":"663721822303551488","text":"\u597d\u304d\u306a\u7570\u6027\u306e\u30bf\u30a4\u30d7\n\u9ad8\u6728\u3055\u3093\uff1a\u8155\u306e\u8840\u7ba1\u304c\u898b\u3048\u308b\u4eba\n\u5965\u91ce\u3055\u3093\uff1a\u9759\u304b\u306a\u4eba\n\u5c71\u4e0b\u3055\u3093\uff1a\u65e9\u53e3\u3058\u3083\u306a\u3044\u4eba\n#\u30dc\u30a4\u30b9\u30d0\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2868710864,"id_str":"2868710864","name":"Voice Bar \u30ad\u30e5\u30a4\u30fc\u30f3'S","screen_name":"voice_bar","location":null,"url":"http:\/\/tv1.nottv.jp\/variety\/voice_bar\/","description":"NOTTV\u306e\u756a\u7d44\u300cVoice Bar \u30ad\u30e5\u30a4\u30fc\u30f3'S\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u9694\u9031\u6708\u66dc23\u6642\u301cNOTTV1\u306b\u3066\u55b6\u696d\u4e2d\uff01\uff01\u4e3b\u306a\u51fa\u6f14\u8005\u306f\u58f0\u512a\u3055\u3093\u3067\u3059\uff01\u7d20\u6575\u306a\u30dc\u30a4\u30b9\u30ab\u30af\u30c6\u30eb\u3092\u304a\u5c4a\u3051\u3057\u3066\u307e\u3059\u306e\u3067\u3001\u4e00\u7dd2\u306b\u30ad\u30e5\u30a4\u30f3\u30ad\u30e5\u30a4\u30f3\u3057\u307e\u3057\u3087\uff08\u00b4-`\uff09.\uff61oO \u6c17\u306b\u306a\u3063\u305f\u65b9\u306f\u305c\u3072\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044(\u00b4\uff65_\uff65`)\u2764\ufe0f #\u30dc\u30a4\u30b9\u30d0\u30fc","protected":false,"verified":false,"followers_count":552,"friends_count":55,"listed_count":14,"favourites_count":61,"statuses_count":2260,"created_at":"Tue Oct 21 09:33:30 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528011300488503296\/_aF7Pxs4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528011300488503296\/_aF7Pxs4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868710864\/1414722731","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":11,"entities":{"hashtags":[{"text":"\u30dc\u30a4\u30b9\u30d0\u30fc","indices":[48,54]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30dc\u30a4\u30b9\u30d0\u30fc","indices":[63,69]}],"urls":[],"user_mentions":[{"screen_name":"voice_bar","name":"Voice Bar \u30ad\u30e5\u30a4\u30fc\u30f3'S","id":2868710864,"id_str":"2868710864","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223704981504,"id_str":"663728223704981504","text":"RT @LaydenRobinson: #Kindle #KindleUnlimited #KU #ebook #PNR #Books #IARTG #BYNR #BookBoost #SNRTG ~ https:\/\/t.co\/6W3A2z45lM https:\/\/t.co\/K\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300238246,"id_str":"2300238246","name":"Book Boost","screen_name":"freeboostpromo","location":null,"url":"http:\/\/freeboostmarketing.com\/","description":"We offer promotion for #indie authors.Visit BOOK BOOST http:\/\/dld.bz\/dgrJJ Free TWEET http:\/\/dld.bz\/dhaZV Add #bookboost to your tweet for a promo","protected":false,"verified":false,"followers_count":23892,"friends_count":11750,"listed_count":1564,"favourites_count":8083,"statuses_count":382211,"created_at":"Sun Jan 19 19:49:49 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171484294\/YST-fDiC.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171484294\/YST-fDiC.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457197247944347650\/FQ5kNMLh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457197247944347650\/FQ5kNMLh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300238246\/1398122414","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:26 +0000 2015","id":663725335419088898,"id_str":"663725335419088898","text":"#Kindle #KindleUnlimited #KU #ebook #PNR #Books #IARTG #BYNR #BookBoost #SNRTG ~ https:\/\/t.co\/6W3A2z45lM https:\/\/t.co\/K2aAbG9lP3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":42290868,"id_str":"42290868","name":"Layden Robinson","screen_name":"LaydenRobinson","location":"On the Road","url":"http:\/\/www.barnesandnoble.com\/w\/the-boston-ranter-derek-robinson\/1122589370;jsessionid=8E4CE419B4CAC","description":"#Author of #Strange #Horror #Bizarre #Songwriter #Indie MadMan #WineReviewer #Tennis Junkie Aspiring #Poker Pro #Traveler #Sassy #Dancer","protected":false,"verified":false,"followers_count":38908,"friends_count":32162,"listed_count":999,"favourites_count":31476,"statuses_count":214727,"created_at":"Sun May 24 22:04:27 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571813378\/x01dff61c08a587bde1419f20e2d7147.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571813378\/x01dff61c08a587bde1419f20e2d7147.png","profile_background_tile":true,"profile_link_color":"333333","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658998784114855937\/4AyPWsgo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658998784114855937\/4AyPWsgo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/42290868\/1446817380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"Kindle","indices":[0,7]},{"text":"KindleUnlimited","indices":[8,24]},{"text":"KU","indices":[25,28]},{"text":"ebook","indices":[29,35]},{"text":"PNR","indices":[36,40]},{"text":"Books","indices":[41,47]},{"text":"IARTG","indices":[48,54]},{"text":"BYNR","indices":[55,60]},{"text":"BookBoost","indices":[61,71]},{"text":"SNRTG","indices":[72,78]}],"urls":[{"url":"https:\/\/t.co\/6W3A2z45lM","expanded_url":"http:\/\/goo.gl\/MwM7ZO","display_url":"goo.gl\/MwM7ZO","indices":[81,104]}],"user_mentions":[],"symbols":[],"media":[{"id":663725334915735552,"id_str":"663725334915735552","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","url":"https:\/\/t.co\/K2aAbG9lP3","display_url":"pic.twitter.com\/K2aAbG9lP3","expanded_url":"http:\/\/twitter.com\/LaydenRobinson\/status\/663725335419088898\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":402,"resize":"fit"},"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725334915735552,"id_str":"663725334915735552","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","url":"https:\/\/t.co\/K2aAbG9lP3","display_url":"pic.twitter.com\/K2aAbG9lP3","expanded_url":"http:\/\/twitter.com\/LaydenRobinson\/status\/663725335419088898\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":402,"resize":"fit"},"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Kindle","indices":[20,27]},{"text":"KindleUnlimited","indices":[28,44]},{"text":"KU","indices":[45,48]},{"text":"ebook","indices":[49,55]},{"text":"PNR","indices":[56,60]},{"text":"Books","indices":[61,67]},{"text":"IARTG","indices":[68,74]},{"text":"BYNR","indices":[75,80]},{"text":"BookBoost","indices":[81,91]},{"text":"SNRTG","indices":[92,98]}],"urls":[{"url":"https:\/\/t.co\/6W3A2z45lM","expanded_url":"http:\/\/goo.gl\/MwM7ZO","display_url":"goo.gl\/MwM7ZO","indices":[101,124]}],"user_mentions":[{"screen_name":"LaydenRobinson","name":"Layden Robinson","id":42290868,"id_str":"42290868","indices":[3,18]}],"symbols":[],"media":[{"id":663725334915735552,"id_str":"663725334915735552","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","url":"https:\/\/t.co\/K2aAbG9lP3","display_url":"pic.twitter.com\/K2aAbG9lP3","expanded_url":"http:\/\/twitter.com\/LaydenRobinson\/status\/663725335419088898\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":402,"resize":"fit"},"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663725335419088898,"source_status_id_str":"663725335419088898","source_user_id":42290868,"source_user_id_str":"42290868"}]},"extended_entities":{"media":[{"id":663725334915735552,"id_str":"663725334915735552","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGrPAUYAAgg5w.jpg","url":"https:\/\/t.co\/K2aAbG9lP3","display_url":"pic.twitter.com\/K2aAbG9lP3","expanded_url":"http:\/\/twitter.com\/LaydenRobinson\/status\/663725335419088898\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":402,"resize":"fit"},"medium":{"w":600,"h":402,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663725335419088898,"source_status_id_str":"663725335419088898","source_user_id":42290868,"source_user_id_str":"42290868"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080114662"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713280000,"id_str":"663728223713280000","text":"RT @httphearts: things on my mind right now:\n\n1. you\n2. you\n3. you\n4. you\n5. you\n6. you\n7. you\n8. you\n9. you and you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1441595234,"id_str":"1441595234","name":"Aznira Anuar","screen_name":"anuar_aznira","location":"everywhere i go","url":"http:\/\/instagram.com\/aznira_anuar\/","description":"Register Nurse || follow the flow to become a good woman \u2661\u2665encik Hairie Amirul","protected":false,"verified":false,"followers_count":225,"friends_count":223,"listed_count":1,"favourites_count":875,"statuses_count":1296,"created_at":"Sun May 19 16:18:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F01351","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/887895777\/30eb2c2a73ac7255f8caf7ede67ae113.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/887895777\/30eb2c2a73ac7255f8caf7ede67ae113.jpeg","profile_background_tile":true,"profile_link_color":"F0B00E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663541491231363072\/Fa0X6bk7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663541491231363072\/Fa0X6bk7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1441595234\/1445573126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:02:30 +0000 2015","id":663401217448521728,"id_str":"663401217448521728","text":"things on my mind right now:\n\n1. you\n2. you\n3. you\n4. you\n5. you\n6. you\n7. you\n8. you\n9. you and you","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3020347046,"id_str":"3020347046","name":"human error","screen_name":"httphearts","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3678,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":35,"created_at":"Sun Feb 15 02:29:19 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649328825545850880\/6oEtLbEu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649328825545850880\/6oEtLbEu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":362,"favorite_count":113,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"httphearts","name":"human error","id":3020347046,"id_str":"3020347046","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223721758721,"id_str":"663728223721758721","text":"@leeaannaay ahh thank you \u2764\ufe0f love you so much \ud83d\ude3d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727942594371584,"in_reply_to_status_id_str":"663727942594371584","in_reply_to_user_id":3931686977,"in_reply_to_user_id_str":"3931686977","in_reply_to_screen_name":"leeaannaay","user":{"id":565917437,"id_str":"565917437","name":"elyse","screen_name":"elysemoorhead","location":null,"url":"http:\/\/seminoleyearbook.com","description":"\u2742shs volleyball\u2742snap: elyserose6","protected":false,"verified":false,"followers_count":737,"friends_count":518,"listed_count":2,"favourites_count":11681,"statuses_count":3710,"created_at":"Sun Apr 29 02:38:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663530379010318337\/DRHRk-nJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663530379010318337\/DRHRk-nJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/565917437\/1446997524","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"leeaannaay","name":"leanaaaa","id":3931686977,"id_str":"3931686977","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114666"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713419264,"id_str":"663728223713419264","text":"RT @Girls_Fucking_: FREE lifetime Fuckbook membership! Sign up here >>> https:\/\/t.co\/HaBuGSmKfc https:\/\/t.co\/2vnGZVWx3l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3352332382,"id_str":"3352332382","name":"I love sex","screen_name":"mmmhd11212","location":null,"url":null,"description":"I Male sexual I am male and I love hot sex This is a new My Account 'has been discontinued from the previous account management Twitter @ mmmhd1212","protected":false,"verified":false,"followers_count":853,"friends_count":2051,"listed_count":53,"favourites_count":20826,"statuses_count":26705,"created_at":"Tue Jun 30 19:53:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654215208492236800\/lVUEfi0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654215208492236800\/lVUEfi0B_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 12:48:01 +0000 2015","id":660438071893172224,"id_str":"660438071893172224","text":"FREE lifetime Fuckbook membership! Sign up here >>> https:\/\/t.co\/HaBuGSmKfc https:\/\/t.co\/2vnGZVWx3l","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3298397811,"id_str":"3298397811","name":"Girls Fucking","screen_name":"Girls_Fucking_","location":null,"url":"http:\/\/pussypornfree.com\/","description":"Horny girls are waiting for you... Click the link and get your FREE lifetime Fuckbook membership now!","protected":false,"verified":false,"followers_count":30830,"friends_count":7801,"listed_count":83,"favourites_count":0,"statuses_count":244,"created_at":"Mon May 25 21:04:55 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617759275847434240\/BeVtUhPJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617759275847434240\/BeVtUhPJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3298397811\/1436120276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":12,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HaBuGSmKfc","expanded_url":"http:\/\/bit.ly\/1X2kJ3P","display_url":"bit.ly\/1X2kJ3P","indices":[61,84]}],"user_mentions":[],"symbols":[],"media":[{"id":660438062833524737,"id_str":"660438062833524737","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","url":"https:\/\/t.co\/2vnGZVWx3l","display_url":"pic.twitter.com\/2vnGZVWx3l","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660438071893172224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":144,"resize":"crop"},"large":{"w":250,"h":144,"resize":"fit"},"medium":{"w":250,"h":144,"resize":"fit"},"small":{"w":250,"h":144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660438062833524737,"id_str":"660438062833524737","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","url":"https:\/\/t.co\/2vnGZVWx3l","display_url":"pic.twitter.com\/2vnGZVWx3l","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660438071893172224\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":144,"resize":"crop"},"large":{"w":250,"h":144,"resize":"fit"},"medium":{"w":250,"h":144,"resize":"fit"},"small":{"w":250,"h":144,"resize":"fit"}},"video_info":{"aspect_ratio":[125,72],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSpY60NW4AEdO0h.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HaBuGSmKfc","expanded_url":"http:\/\/bit.ly\/1X2kJ3P","display_url":"bit.ly\/1X2kJ3P","indices":[81,104]}],"user_mentions":[{"screen_name":"Girls_Fucking_","name":"Girls Fucking","id":3298397811,"id_str":"3298397811","indices":[3,18]}],"symbols":[],"media":[{"id":660438062833524737,"id_str":"660438062833524737","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","url":"https:\/\/t.co\/2vnGZVWx3l","display_url":"pic.twitter.com\/2vnGZVWx3l","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660438071893172224\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":144,"resize":"crop"},"large":{"w":250,"h":144,"resize":"fit"},"medium":{"w":250,"h":144,"resize":"fit"},"small":{"w":250,"h":144,"resize":"fit"}},"source_status_id":660438071893172224,"source_status_id_str":"660438071893172224","source_user_id":3298397811,"source_user_id_str":"3298397811"}]},"extended_entities":{"media":[{"id":660438062833524737,"id_str":"660438062833524737","indices":[105,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CSpY60NW4AEdO0h.png","url":"https:\/\/t.co\/2vnGZVWx3l","display_url":"pic.twitter.com\/2vnGZVWx3l","expanded_url":"http:\/\/twitter.com\/Girls_Fucking_\/status\/660438071893172224\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":144,"resize":"crop"},"large":{"w":250,"h":144,"resize":"fit"},"medium":{"w":250,"h":144,"resize":"fit"},"small":{"w":250,"h":144,"resize":"fit"}},"source_status_id":660438071893172224,"source_status_id_str":"660438071893172224","source_user_id":3298397811,"source_user_id_str":"3298397811","video_info":{"aspect_ratio":[125,72],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CSpY60NW4AEdO0h.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223688237057,"id_str":"663728223688237057","text":"Reason to Take Up a Bodybuilding Program https:\/\/t.co\/nq7K2l8xBL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3912916102,"id_str":"3912916102","name":"chineze","screen_name":"chinezechifo1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":39,"listed_count":0,"favourites_count":0,"statuses_count":1629,"created_at":"Fri Oct 09 22:36:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nq7K2l8xBL","expanded_url":"http:\/\/ift.tt\/1RIm7nS","display_url":"ift.tt\/1RIm7nS","indices":[41,64]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080114658"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223688093696,"id_str":"663728223688093696","text":"RT @dankanemitsu: \u300c\u840c\u3048\u30e2\u30ce\u3092\u898b\u3066\u73fe\u5b9f\u306e\u5973\u6027\u306b\u90fd\u5408\u306e\u3088\u3044\u5973\u6027\u50cf\u3092\u62b1\u304f\u306e\u304c\u5371\u967a\u300d\u3068\u300c\u30a2\u30e1\u30ea\u30ab\u30db\u30fc\u30e0\u30c9\u30e9\u30de\u3092\u898b\u3066\u9ebb\u85ac\u3068\u9283\u5668\u3068\u30c6\u30ed\u304c\u6ea2\u308c\u305f\u30a2\u30e1\u30ea\u30ab\u793e\u4f1a\u306e\u5370\u8c61\u3092\u6839\u4ed8\u304f\u306e\u3067\u5371\u967a\u300d\u3068\u3069\u3046\u9055\u3046\u306e\u304b\u6559\u3048\u3066\u6b32\u3057\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98781655,"id_str":"98781655","name":"\u304b\u3053","screen_name":"kakonya","location":null,"url":null,"description":"\u8da3\u5473\u7684\u306a\u30b3\u30e1\u30f3\u30c8\u3057\u3064\u3064\u6c17\u307e\u307e\u306b\u3084\u3063\u3066\u307e\u3059\u2606\u3076\u3063\u3061\u3083\u3051\u30aa\u30bf\u30af\u3067\u8150\u5973\u5b50\u306a\u306e\u3067\u95b2\u89a7\u306b\u306f\u3054\u6ce8\u610f\u3002\u307e\u3041\u30ac\u30c3\u30c4\u30ea\u8150\u3063\u305f\u306e\u306f\u81ea\u91cd\u3057\u3066\u307e\u3059\u304c\uff08\u5f53\u793e\u6bd4\uff09\u3002","protected":false,"verified":false,"followers_count":33,"friends_count":54,"listed_count":6,"favourites_count":3,"statuses_count":5350,"created_at":"Wed Dec 23 03:15:54 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/519031392\/0df70d60.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/519031392\/0df70d60.jpg","profile_background_tile":true,"profile_link_color":"007BFF","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563338365366333440\/4bPbg1-K_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563338365366333440\/4bPbg1-K_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98781655\/1415027246","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:16:46 +0000 2015","id":663299113266495489,"id_str":"663299113266495489","text":"\u300c\u840c\u3048\u30e2\u30ce\u3092\u898b\u3066\u73fe\u5b9f\u306e\u5973\u6027\u306b\u90fd\u5408\u306e\u3088\u3044\u5973\u6027\u50cf\u3092\u62b1\u304f\u306e\u304c\u5371\u967a\u300d\u3068\u300c\u30a2\u30e1\u30ea\u30ab\u30db\u30fc\u30e0\u30c9\u30e9\u30de\u3092\u898b\u3066\u9ebb\u85ac\u3068\u9283\u5668\u3068\u30c6\u30ed\u304c\u6ea2\u308c\u305f\u30a2\u30e1\u30ea\u30ab\u793e\u4f1a\u306e\u5370\u8c61\u3092\u6839\u4ed8\u304f\u306e\u3067\u5371\u967a\u300d\u3068\u3069\u3046\u9055\u3046\u306e\u304b\u6559\u3048\u3066\u6b32\u3057\u3044\u3002","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115420019,"id_str":"115420019","name":"\u517c\u5149\u30c0\u30cb\u30a8\u30eb\u771f","screen_name":"dankanemitsu","location":"Tokyo","url":"http:\/\/www.translativearts.com","description":"Dan Kanemitsu-Translator, etc. Likes models and doujinshi. \u7ffb\u8a33\u5bb6\u3001\u8fd1\u9803\u5275\u4f5c\u3082\u3002\u8da3\u5473\u306f\u6a21\u578b\u3084\u540c\u4eba\u8a8c\u3002http:\/\/pixiv.me\/dankanemitsu log http:\/\/twilog.org\/dankanemitsu","protected":false,"verified":false,"followers_count":10511,"friends_count":434,"listed_count":935,"favourites_count":11,"statuses_count":31225,"created_at":"Thu Feb 18 16:08:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8F93B0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/92029768\/PICT2989.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/92029768\/PICT2989.JPG","profile_background_tile":false,"profile_link_color":"5396ED","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639053653274333184\/CrMAkF01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639053653274333184\/CrMAkF01_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115420019\/1404656636","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":435,"favorite_count":188,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dankanemitsu","name":"\u517c\u5149\u30c0\u30cb\u30a8\u30eb\u771f","id":115420019,"id_str":"115420019","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114658"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223692431361,"id_str":"663728223692431361","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/dLVhJcrfYW","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2324027124,"id_str":"2324027124","name":"\u0644\u0623\u062c\u0644\u0643 \u0633\u0644\u0645\u0627\u0646 \u0627\u0644\u0623\u0637\u0631\u0645","screen_name":"salman_alatram","location":null,"url":null,"description":"\u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0644 \u0633\u0644\u0645\u0627\u0646 \u0627\u0644\u0623\u0637\u0631\u0645 \u0631\u062d\u0645\u0647 \u0627\u0644\u0644\u0647 .. \u0623\u062d\u062a\u0633\u0628 \u0627\u0644\u0623\u062c\u0631 \u0648\u0633\u0648 \u0641\u0648\u0644\u0648 \u0648\u0627\u0642\u0631\u0623 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0648\u0633\u0648 \u0644\u0647\u0627 \u0631\u062a\u0648\u064a\u062a \u0639\u0634\u0627\u0646 \u064a\u0642\u0631\u0648\u0646\u0647\u0627 \u0646\u0627\u0633 \u0623\u0643\u062b\u0631 .","protected":false,"verified":false,"followers_count":10,"friends_count":1,"listed_count":1,"favourites_count":0,"statuses_count":13099,"created_at":"Sun Feb 02 16:40:01 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/430018530634133504\/jnm8GdXM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/430018530634133504\/jnm8GdXM_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dLVhJcrfYW","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080114659"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709036544,"id_str":"663728223709036544","text":"\u3093\u3093\u3093;;\u3079\u3063\u305f\u304c\u52d5\u304b\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288746621,"id_str":"288746621","name":"\u6a2a","screen_name":"ykk01314","location":null,"url":null,"description":"\u9ad8\u7dd1\u304c\u3059\u304d\u3067\u3059\u3002\u771f\u3061\u3083\u3093\u53d7\u304c\u3059\u304d\u3067\u3059\u3002\u79c0\u5fb3\u611b\u3002\u9032\u6483\u306f\u30a8\u30eb\u30ea\/\u30a8\u30eb\u3002\u304e\u3093\u305f\u307e\u306f\u8fd1\u571f\u8fd1\u3002\u6708\u66dc\u306e\u6df1\u591c\u306f\u304a\u305d\u677e\u3055\u3093\u3067\u3046\u308b\u3055\u3044\u3067\u3059\u5341\u56db\u677e\uff01\u305d\u306e\u4ed6\u96d1\u591a\u3064\u3076\u3084\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":70,"friends_count":105,"listed_count":3,"favourites_count":4809,"statuses_count":20593,"created_at":"Wed Apr 27 11:55:13 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571046076\/6qszg4tdrzecvsno2py4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571046076\/6qszg4tdrzecvsno2py4.jpeg","profile_background_tile":true,"profile_link_color":"88919C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAFAFA","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651044439503142916\/__AkxrwV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651044439503142916\/__AkxrwV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288746621\/1438697574","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223700672512,"id_str":"663728223700672512","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3011\u3092\u5e0c\u671b\u3055\u308c\u308b\u65b9\u304c\u96c6\u307e\u308b\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u3000\u300c\u5f53\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u30d5\u30a9\u30ed\u30fc\u300d\u21d2\u300c\u3053\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u30ea\u30c4\u30a4\u30fc\u30c8\u300d\u21d2\u300c\u30d5\u30a9\u30ed\u30fc\u3055\u308c\u3066\u3044\u308b\u4eba\u3092\u30d5\u30a9\u30ed\u30fc\u300d\u3000\u307f\u306a\u3055\u3093\u304c RT \u3057\u3066\u304f\u308c\u306a\u3044\u3068\u65b0\u898f\u30d5\u30a9\u30ed\u30ef\u30fc\u304c\u5897\u3048\u307e\u305b\u3093\u3002\u3000\u3053\u308c\u3092\u898b\u304b\u3051\u305f\u3089 RT \u3057\u307e\u3057\u3087\u3046\u3002\u3000\u4e0a\u624b\u306b\u4f7f\u3063\u3066\u304f\u3060\u3055\u3044\uff11\uff17","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3170730752,"id_str":"3170730752","name":"reana\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","screen_name":"hagendenna","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":377,"friends_count":275,"listed_count":0,"favourites_count":4,"statuses_count":259,"created_at":"Fri Apr 24 12:39:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660935035873136640\/a0CBJQsS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660935035873136640\/a0CBJQsS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3170730752\/1446414155","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114661"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223704870912,"id_str":"663728223704870912","text":"RT @raminsan2: @Gurmeetramrahim #MSG2onTheTopInRajasthan thank u pita je","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4155871812,"id_str":"4155871812","name":"himanshu","screen_name":"himanshu2081","location":"sirsa, Haryana","url":null,"description":"student","protected":false,"verified":false,"followers_count":13,"friends_count":11,"listed_count":0,"favourites_count":39,"statuses_count":823,"created_at":"Sat Nov 07 10:06:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662950428515000320\/Y0a7GIl__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662950428515000320\/Y0a7GIl__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4155871812\/1446977713","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:41 +0000 2015","id":663727914945409024,"id_str":"663727914945409024","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan thank u pita je","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2907118200,"id_str":"2907118200","name":"ram insan","screen_name":"raminsan2","location":null,"url":null,"description":"patiala","protected":false,"verified":false,"followers_count":21,"friends_count":35,"listed_count":0,"favourites_count":425,"statuses_count":476,"created_at":"Sat Nov 22 12:41:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656721894318583808\/81g7_U1i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656721894318583808\/81g7_U1i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907118200\/1444786585","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bs"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[32,56]}],"urls":[],"user_mentions":[{"screen_name":"raminsan2","name":"ram insan","id":2907118200,"id_str":"2907118200","indices":[3,13]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[15,31]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447080114662"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709081600,"id_str":"663728223709081600","text":"@oo1126sato \n\n\u7b11\u3044\u58f0 \u3067\u304b\u3044\u3088 \u2026\u2026 \uff01 #","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703646236901376,"in_reply_to_status_id_str":"663703646236901376","in_reply_to_user_id":3680852294,"in_reply_to_user_id_str":"3680852294","in_reply_to_screen_name":"oo1126sato","user":{"id":4035135732,"id_str":"4035135732","name":"\u2727\u2726 \u6728\u76ee \u8449","screen_name":"msk________","location":"1101","url":null,"description":"\u6ce3\u3044\u3066\u3082\u3044\u3044\u3088 \u3001 \u50d5\u304c\u7b11\u3046 \u3002","protected":false,"verified":false,"followers_count":57,"friends_count":56,"listed_count":1,"favourites_count":413,"statuses_count":1690,"created_at":"Tue Oct 27 12:05:57 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663264852656259072\/YMv5YoaK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663264852656259072\/YMv5YoaK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4035135732\/1445948430","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oo1126sato","name":"(\u00b4\uff65\u304a\u304a\u3055\u3068\uff65`)","id":3680852294,"id_str":"3680852294","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223683899392,"id_str":"663728223683899392","text":"\u60b2\u3057\u307f\u304c\u6765\u308b\u3068\u304d\u306f\u3001\n\n\u5358\u9a0e\u3067\u306f\u3084\u3063\u3066\u3053\u306a\u3044\u3002\n\n\u304b\u306a\u3089\u305a\u8ecd\u56e3\u3067\u62bc\u3057\u5bc4\u305b\u308b\u3002\n\n-\u3000\u30b7\u30a7\u30a4\u30af\u30b9\u30d4\u30a2\u3000-","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2582542590,"id_str":"2582542590","name":"\u5fc3\u306b\u97ff\u304fbot","screen_name":"brokenheart356","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":385,"friends_count":711,"listed_count":1,"favourites_count":0,"statuses_count":22157,"created_at":"Sun Jun 22 17:15:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114657"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223717462016,"id_str":"663728223717462016","text":"@atomichang2 \u30d1\u300c\u2026\u3078\u30fc\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727889364324352,"in_reply_to_status_id_str":"663727889364324352","in_reply_to_user_id":2551754108,"in_reply_to_user_id_str":"2551754108","in_reply_to_screen_name":"atomichang2","user":{"id":2734552177,"id_str":"2734552177","name":"Rain \u2192\u30b9\u30c8\u30ec\u30b9\u904e\u591a\u2190","screen_name":"TohoBlueRain","location":"\u95a2\u897f\u30a8\u30ea\u30a2","url":null,"description":"\u7d75\u63cf\u3044\u305f\u308a\u5c0f\u8aac\u66f8\u3044\u305f\u308aTSF\u3060\u3063\u305f\u308a\u72b6\u614b\u5909\u5316\u3060\u3063\u305f\u308a\u6771\u65b9\u3060\u3063\u305f\u308a\u81a8\u4f53\u3060\u3063\u305f\u308a\u81a8\u4e73\u3060\u3063\u305f\u308a\u30c7\u30d5\u30a9\u30eb\u30e1\u3060\u3063\u305f\u308a\u5b9f\u6cc1\u3057\u305f\u308a\u751f\u653e\u9001\u3057\u305f\u308a\u8b0e\u8003\u3048\u305f\u308a\u6f2b\u753b\u63cf\u3044\u305f\u308a\u30de\u30ea\u30aa\u3060\u3063\u305f\u308a\u30a2\u30ca\u30ed\u30b0\u7d75\u3060\u3063\u305f\u308a\u30c7\u30b8\u30bf\u30eb\u7d75\u3060\u3063\u305f\u308a","protected":false,"verified":false,"followers_count":193,"friends_count":131,"listed_count":8,"favourites_count":44,"statuses_count":71610,"created_at":"Fri Aug 15 14:07:27 +0000 2014","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663499352434831360\/_VXpmYy__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663499352434831360\/_VXpmYy__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2734552177\/1443886062","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atomichang2","name":"\u95c7\u5bae\u821e\u5b50\uff08\u771f\u540d \u821e\u84ee\uff09","id":2551754108,"id_str":"2551754108","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114665"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223688237056,"id_str":"663728223688237056","text":"RT @fuadalahmadi: \u0627\u0644\u0634\u0648\u0627\u0644\u064a \u064a\u062a\u0630\u0643\u0631 \u0627\u0644\u0646\u0645\u0648\u0631 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0643\u0628\u064a\u0631 \u0622\u0633\u064a\u0627 \u0648\u0645\u0644\u0643\u0647\u0627\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2984461519,"id_str":"2984461519","name":"conte","screen_name":"conte332","location":null,"url":null,"description":"\u0631\u064e\u0628\u0651\u064e\u0646\u064e\u0627 \u0622\u0645\u064e\u0646\u0651\u064e\u0627 \u0628\u0650\u0645\u064e\u0627 \u0623\u064e\u0646\u0632\u064e\u0644\u064e\u062a\u0652 \u0648\u064e\u0627\u062a\u0651\u064e\u0628\u064e\u0639\u0652\u0646\u064e\u0627 \u0627\u0644\u0631\u0651\u064e\u0633\u064f\u0648\u0644\u064e \u0641\u064e\u0627\u0643\u0652\u062a\u064f\u0628\u0652\u0646\u064e\u0627 \u0645\u064e\u0639\u064e \u0627\u0644\u0634\u0651\u064e\u0627\u0647\u0650\u062f\u0650\u064a\u0646\u064e .","protected":false,"verified":false,"followers_count":268,"friends_count":716,"listed_count":1,"favourites_count":356,"statuses_count":26908,"created_at":"Thu Jan 15 18:02:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645331917877870592\/SXD0HhgL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645331917877870592\/SXD0HhgL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984461519\/1442350063","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:07:36 +0000 2015","id":663719592460709888,"id_str":"663719592460709888","text":"\u0627\u0644\u0634\u0648\u0627\u0644\u064a \u064a\u062a\u0630\u0643\u0631 \u0627\u0644\u0646\u0645\u0648\u0631 \u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0643\u0628\u064a\u0631 \u0622\u0633\u064a\u0627 \u0648\u0645\u0644\u0643\u0647\u0627\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":371242809,"id_str":"371242809","name":"\u0641\u0624\u0627\u062f \u0627\u0644\u0623\u062d\u0645\u062f\u064a","screen_name":"fuadalahmadi","location":"\u062c\u062f\u0629 ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0646\u0627\u0634\u0637 \u0631\u064a\u0627\u0636\u064a \u0645\u0647\u062a\u0645 \u0628\u0627\u0644\u062c\u0645\u0627\u0647\u064a\u0631 \u060c\n \u0647\u0646\u062f\u0633\u0629 \u0648\u0635\u0646\u0627\u0639\u0629 \u0627\u0644\u0637\u064a\u0631\u0627\u0646 \u060c \n#\u0627\u0644\u0627\u062a\u062d\u0627\u062f","protected":false,"verified":false,"followers_count":57361,"friends_count":695,"listed_count":221,"favourites_count":1295,"statuses_count":35859,"created_at":"Sat Sep 10 13:34:00 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603497623048163329\/LgNhaoHd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603497623048163329\/LgNhaoHd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/371242809\/1438988644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":66,"favorite_count":8,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[46,62]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[64,80]}],"urls":[],"user_mentions":[{"screen_name":"fuadalahmadi","name":"\u0641\u0624\u0627\u062f \u0627\u0644\u0623\u062d\u0645\u062f\u064a","id":371242809,"id_str":"371242809","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080114658"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223721807872,"id_str":"663728223721807872","text":"RT @BodrioDePibas: Me pongo a pensar y boludo mi vida es un embole","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":451117320,"id_str":"451117320","name":"Caro \/\/ McCall \u262a","screen_name":"caaromarazzi","location":"Donde Tati y Eve est\u00e9n","url":null,"description":"the sun \u263c\nthe moon \u263d\nthe truth \u262f","protected":false,"verified":false,"followers_count":847,"friends_count":594,"listed_count":6,"favourites_count":6946,"statuses_count":96836,"created_at":"Sat Dec 31 02:13:15 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/503688103521841152\/qx0uz-f5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/503688103521841152\/qx0uz-f5.jpeg","profile_background_tile":true,"profile_link_color":"FF0088","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658866263016513538\/XROFVETm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658866263016513538\/XROFVETm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/451117320\/1447016250","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:27:55 +0000 2015","id":663543508821766144,"id_str":"663543508821766144","text":"Me pongo a pensar y boludo mi vida es un embole","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2372844451,"id_str":"2372844451","name":"callate forro.","screen_name":"BodrioDePibas","location":null,"url":null,"description":"me da verg\u00fcenza mi nombre de usuario porque no se que significa.","protected":false,"verified":false,"followers_count":59070,"friends_count":28,"listed_count":51,"favourites_count":1046,"statuses_count":6500,"created_at":"Tue Mar 04 23:29:22 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635973990335520769\/3xaz6Hgd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635973990335520769\/3xaz6Hgd.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552559960492871681\/rfeUIqbv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552559960492871681\/rfeUIqbv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2372844451\/1405400930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":210,"favorite_count":111,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BodrioDePibas","name":"callate forro.","id":2372844451,"id_str":"2372844451","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080114666"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223692296192,"id_str":"663728223692296192","text":"RT @shogeki_douga: \u30ea\u30a2\u5145\u306e\u96a3\u3067\u6483\u305f\u308c\u305f\u30d5\u30ea\u3092\u3059\u308b\u3068\u30fb\u30fb\u30fb\nhttps:\/\/t.co\/NRvgA0WbXA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1888814479,"id_str":"1888814479","name":"\u9375\u5e2b\uff20Key","screen_name":"kagishi_Mk2","location":null,"url":null,"description":"\u30b3\u30f3\u30b5\u30c9\u30fc\u30ec\u672d\u5e4c\u3068\u30b9\u30d0\u30eb\u3068Apple\u3068\u6b63\u7fa9\u3068\u5e73\u548c\u3092\u611b\u3059\u308b\u6280\u8853\u7cfb\u793e\u755c\u3067\u3059\u2606\n\u2191\u306a\u306e\u3067\u3064\u3076\u3084\u304f\u30b8\u30e3\u30f3\u30eb\u306f\u591a\u5c90\u306b\u308f\u305f\u308a\u3001\u8eab\u5185\u4ee5\u5916\u3064\u3044\u3066\u6765\u308c\u306a\u3044\u3053\u3068\u3082\u3042\u308b\u3068\u601d\u3044\u307e\u3059\u304c\u3001\u305d\u308c\u3067\u3082OK\u306e\u65b9\u306f\u30a6\u30a7\u30eb\u30ab\u30e0\uff57","protected":false,"verified":false,"followers_count":98,"friends_count":226,"listed_count":6,"favourites_count":503,"statuses_count":9540,"created_at":"Sat Sep 21 03:51:33 +0000 2013","utc_offset":32400,"time_zone":"Sapporo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444453726808330240\/5abhwzeB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444453726808330240\/5abhwzeB.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000485735625\/f9428709f65b6f771b7481f4c9962372_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000485735625\/f9428709f65b6f771b7481f4c9962372_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1888814479\/1424095146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Apr 01 03:00:06 +0000 2015","id":583101501788172289,"id_str":"583101501788172289","text":"\u30ea\u30a2\u5145\u306e\u96a3\u3067\u6483\u305f\u308c\u305f\u30d5\u30ea\u3092\u3059\u308b\u3068\u30fb\u30fb\u30fb\nhttps:\/\/t.co\/NRvgA0WbXA","source":"\u003ca href=\"https:\/\/twitter.com\/omoshirotsu_bot\" rel=\"nofollow\"\u003epro-20131111\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2335406826,"id_str":"2335406826","name":"\u885d\u6483\uff01\u4e16\u754c\u4ef0\u5929\u6620\u50cf","screen_name":"shogeki_douga","location":null,"url":null,"description":"\u4e16\u754c\u4e2d\u306e\u4ef0\u5929\u6620\u50cf\u3092\u304a\u5c4a\u3051\uff01\u3053\u306e\u885d\u6483\u3092\u8ab0\u304b\u306b\u4f1d\u3048\u305f\u304f\u306a\u3063\u305f\u3089\uff32\uff34\uff01\u30d5\u30a9\u30ed\u30fc\u5927\u6b53\u8fce\u266a","protected":false,"verified":false,"followers_count":28435,"friends_count":821,"listed_count":40,"favourites_count":0,"statuses_count":9463,"created_at":"Sun Feb 09 17:13:29 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510489792371384320\/1sY76Ixy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510489792371384320\/1sY76Ixy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335406826\/1410546037","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1345,"favorite_count":1009,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NRvgA0WbXA","expanded_url":"https:\/\/vine.co\/v\/Oi10aFqM73x","display_url":"vine.co\/v\/Oi10aFqM73x","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NRvgA0WbXA","expanded_url":"https:\/\/vine.co\/v\/Oi10aFqM73x","display_url":"vine.co\/v\/Oi10aFqM73x","indices":[39,62]}],"user_mentions":[{"screen_name":"shogeki_douga","name":"\u885d\u6483\uff01\u4e16\u754c\u4ef0\u5929\u6620\u50cf","id":2335406826,"id_str":"2335406826","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114659"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223696515073,"id_str":"663728223696515073","text":"- \u203c\u203c https:\/\/t.co\/hKrA5heDI8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1419417020,"id_str":"1419417020","name":"\u2728\u2764\u2693","screen_name":"x_bluux","location":"Long live Hez & Tra \u2764","url":null,"description":"Rest On Sterling & Hasnai \u2764","protected":false,"verified":false,"followers_count":773,"friends_count":591,"listed_count":1,"favourites_count":1376,"statuses_count":16131,"created_at":"Sat May 11 00:44:59 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00F7FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015091955\/20355cae6712bab1b44006a1a3767802.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015091955\/20355cae6712bab1b44006a1a3767802.jpeg","profile_background_tile":true,"profile_link_color":"F50C98","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663431989328932864\/akhPOJwE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663431989328932864\/akhPOJwE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1419417020\/1446385625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727068132319232,"quoted_status_id_str":"663727068132319232","quoted_status":{"created_at":"Mon Nov 09 14:37:19 +0000 2015","id":663727068132319232,"id_str":"663727068132319232","text":"I kept it real with them, and they ain't kept it real back\ud83d\udc81\ud83c\udffd fuck em.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3146210271,"id_str":"3146210271","name":"Zandria\u2653\ufe0f","screen_name":"Adorablee_Rich","location":"North Charleston, SC","url":null,"description":"\u2764\ufe0f","protected":false,"verified":false,"followers_count":974,"friends_count":561,"listed_count":1,"favourites_count":1463,"statuses_count":27035,"created_at":"Wed Apr 08 02:48:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662632786994593792\/8NvhQnN7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662632786994593792\/8NvhQnN7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hKrA5heDI8","expanded_url":"https:\/\/twitter.com\/Adorablee_Rich\/status\/663727068132319232","display_url":"twitter.com\/Adorablee_Rich\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080114660"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223696478208,"id_str":"663728223696478208","text":"@kammil_ \u314b\u314b\ubb58 \ubb3c\uc5b4\ubcf4\ub294\u3134\ub300\uc694? \ub0a8\uc790\ub791 \uadf8\uac70\uadf8\uac70 \uc5b4\ub5a0\ucf00\ud558\ub294\uac70\ub0d0..?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723721920671744,"in_reply_to_status_id_str":"663723721920671744","in_reply_to_user_id":2989980659,"in_reply_to_user_id_str":"2989980659","in_reply_to_screen_name":"kammil_","user":{"id":2781757890,"id_str":"2781757890","name":"\ud64d\ub4c0\ub9c8\uce20","screen_name":"holla2486","location":"\uc564\uce90\uac00 \ubcf4\uc774\ub294 \uc5b4\ub290\uacf3\uc5d0\ub098","url":"http:\/\/m.blog.naver.com\/PostList.nhn?blogId=holla2486","description":"\uc740\ud63c\uc740\ud63c\uc740\ud63c\u2665\u2665\ud788\uc9c0\uae34\ub9ac\ubc84\uc2a4!!\/\ud64d\ub4c0\uc785\ub2c8\ub2e4!\/\uadf8\ub9bc, \uae00\/\uc695\ud504\ud3ed\ud2b8\uc54c\ud2f0\/\uc120\uba58 \ub9de\ud314\uc785\ub2c8\ub2e4!\/\uace0\uae30\uace0\uae30\uace0\uae30\uace0\uae30\uace0\uae30 \ube7c\uc560\uc560\uc560\uc560\uc560\uc560\uc561","protected":false,"verified":false,"followers_count":220,"friends_count":265,"listed_count":2,"favourites_count":411,"statuses_count":34440,"created_at":"Sun Aug 31 07:10:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662950736104325120\/Jh1A-Zi-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662950736104325120\/Jh1A-Zi-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781757890\/1443108774","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kammil_","name":"\uc804\uce84\uc2a4\uc2dc\uc5f0","id":2989980659,"id_str":"2989980659","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080114660"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709097984,"id_str":"663728223709097984","text":"RT @sora_fairies: \u306d\u3048\u306d\u3048\u307f\u3093\u306a\u306a\u306b\u306a\u306b\u7d50\u69cb\u306a\u4eba\u6570\u306e\u3072\u3068\u306e\u30c8\u30d7\u753b\u304c\u3053\u308c\u306b\u306a\u3063\u3066\u308b\u3088\u2026\uff1f\u3042\u308a\u304c\u3068\u301c\uff01\uff08\uff1b\uff3f\uff1b\uff09\n\n\u3042\u3001\u3061\u306a\u307f\u306b\u307f\u3093\u306a\u304b\u3089\u9001\u3089\u308c\u3066\u304d\u305f\u753b\u50cf\u3082\u3070\u3063\u3061\u308a\u4fdd\u5b58\u3057\u3066\u308b\u3088\uff01\u307b\u3093\u3068\u306b\u3042\u308a\u304c\u3068\u3046\u263a\ufe0f\n\n\u305d\u3089 https:\/\/t.co\/ugS0WxUWtl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4003183214,"id_str":"4003183214","name":"m o m o k a \u25e1\u0308","screen_name":"fairies_candy_","location":"\u56fa\u5b9a\u30c4\u30a4\u30fc\u30c8\u62e1\u6563\u5e0c\u671b\u3067\u3059( .. )","url":null,"description":"* \u30d5 \u30a7 \u30a2 \u30ea \u30fc \u30ba \u57a2 * \u4f0a \u85e4 \u840c \u3005 \u9999 \u63a8 \u3057 \u270f\ufe0e \u270f\ufe0e \u270f\ufe0e \u270f\ufe0e \u30d5 \u30a7 \u30a2 \u30e9 \u30fc \u3055 \u3093 \u30d5 \u30a9 \u30ed \u30fc \u3057 \u307e \u3059 \u2661 J K 1","protected":false,"verified":false,"followers_count":29,"friends_count":42,"listed_count":0,"favourites_count":1,"statuses_count":391,"created_at":"Sat Oct 24 14:36:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658660066774528001\/_wuO1SFY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658660066774528001\/_wuO1SFY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4003183214\/1446389496","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:35:11 +0000 2015","id":663681233180692481,"id_str":"663681233180692481","text":"\u306d\u3048\u306d\u3048\u307f\u3093\u306a\u306a\u306b\u306a\u306b\u7d50\u69cb\u306a\u4eba\u6570\u306e\u3072\u3068\u306e\u30c8\u30d7\u753b\u304c\u3053\u308c\u306b\u306a\u3063\u3066\u308b\u3088\u2026\uff1f\u3042\u308a\u304c\u3068\u301c\uff01\uff08\uff1b\uff3f\uff1b\uff09\n\n\u3042\u3001\u3061\u306a\u307f\u306b\u307f\u3093\u306a\u304b\u3089\u9001\u3089\u308c\u3066\u304d\u305f\u753b\u50cf\u3082\u3070\u3063\u3061\u308a\u4fdd\u5b58\u3057\u3066\u308b\u3088\uff01\u307b\u3093\u3068\u306b\u3042\u308a\u304c\u3068\u3046\u263a\ufe0f\n\n\u305d\u3089 https:\/\/t.co\/ugS0WxUWtl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611610255,"id_str":"611610255","name":"\u91ce\u5143\u7a7a\uff08\u30d5\u30a7\u30a2\u30ea\u30fc\u30ba\uff09","screen_name":"sora_fairies","location":null,"url":"http:\/\/ameblo.jp\/sora-nomoto\/","description":"\u30e9\u30c3\u30d7\u3092\u3046\u305f\u3044\u3001\u7d75\u3092\u304b\u304d\u3001\u3088\u304f\u98df\u3079\u308b\u3001\u9752\u8272\u306e17\u3055\u3044\u3002\u3075\u308d\u3080\u9e7f\u5150\u5cf6\u300211\u670818\u65e5\u300cMr.Platonic\u300d\u767a\u58f2\u3001\u300c\u30d5\u30a7\u30a2\u30ea\u30fc\u30baLIVE TOUR 2015\u300d\u958b\u50ac\u6c7a\u5b9a\u25ce","protected":false,"verified":true,"followers_count":60834,"friends_count":110,"listed_count":1083,"favourites_count":216,"statuses_count":6983,"created_at":"Mon Jun 18 09:07:22 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661133282537435136\/y5yCLRYn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661133282537435136\/y5yCLRYn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611610255\/1438524074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":166,"favorite_count":709,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663681228659232768,"id_str":"663681228659232768","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","url":"https:\/\/t.co\/ugS0WxUWtl","display_url":"pic.twitter.com\/ugS0WxUWtl","expanded_url":"http:\/\/twitter.com\/sora_fairies\/status\/663681233180692481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663681228659232768,"id_str":"663681228659232768","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","url":"https:\/\/t.co\/ugS0WxUWtl","display_url":"pic.twitter.com\/ugS0WxUWtl","expanded_url":"http:\/\/twitter.com\/sora_fairies\/status\/663681233180692481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sora_fairies","name":"\u91ce\u5143\u7a7a\uff08\u30d5\u30a7\u30a2\u30ea\u30fc\u30ba\uff09","id":611610255,"id_str":"611610255","indices":[3,16]}],"symbols":[],"media":[{"id":663681228659232768,"id_str":"663681228659232768","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","url":"https:\/\/t.co\/ugS0WxUWtl","display_url":"pic.twitter.com\/ugS0WxUWtl","expanded_url":"http:\/\/twitter.com\/sora_fairies\/status\/663681233180692481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663681233180692481,"source_status_id_str":"663681233180692481","source_user_id":611610255,"source_user_id_str":"611610255"}]},"extended_entities":{"media":[{"id":663681228659232768,"id_str":"663681228659232768","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXej6ZUEAAQdnF.jpg","url":"https:\/\/t.co\/ugS0WxUWtl","display_url":"pic.twitter.com\/ugS0WxUWtl","expanded_url":"http:\/\/twitter.com\/sora_fairies\/status\/663681233180692481\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}},"source_status_id":663681233180692481,"source_status_id_str":"663681233180692481","source_user_id":611610255,"source_user_id_str":"611610255"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223704879104,"id_str":"663728223704879104","text":"@deku_world \n\u5c11\u3057\u3068\u3044\u3046\u304b\n\u304c\u3063\u3064\u308a\u3067\u3059\u306d(^^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724931419508736,"in_reply_to_status_id_str":"663724931419508736","in_reply_to_user_id":3034966218,"in_reply_to_user_id_str":"3034966218","in_reply_to_screen_name":"deku_world","user":{"id":620671986,"id_str":"620671986","name":"\u3072\u308d@\u2026\u03c6(-\u03c9-*)\uff61o\u25cb","screen_name":"punipuni_000","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":92,"friends_count":117,"listed_count":0,"favourites_count":2037,"statuses_count":16727,"created_at":"Thu Jun 28 03:21:01 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641610595301634048\/2rFvz3WN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641610595301634048\/2rFvz3WN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/620671986\/1434885872","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"deku_world","name":"\u30c7\u30af\u3061\u3083\u3093@\u30cd\u30ba\u30df\u3055\u3093","id":3034966218,"id_str":"3034966218","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114662"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223721623552,"id_str":"663728223721623552","text":"\u3059\u2026\uff01\u3059\u3054\u3044\u6c17\u8feb\uff01\u3067\u3082\u2026\u306a\u3093\u3060\u308d\u3046\u3053\u306e\u9055\u548c\u611f\u2026\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1688829060,"id_str":"1688829060","name":"\u53ca\u5ddd\u7d2f\u6b21","screen_name":"OikawaRuizi_bot","location":"\u5e02\u7acb\u5e1d\u6761\u30b5\u30c3\u30ab\u30fc\u90e8\u90e8\u5ba4","url":null,"description":"\u300eLIGHTWING\u300f\u306e\u53ca\u5ddd\u7d2f\u6b21\u306ebot\u3067\u3059\uff01\u753b\u50cf\u306f\u5c11\u3005\u304a\u5f85\u3061\u4e0b\u3055\u3044\u2026\u5168\u5dfb\u306e\u53f0\u8a5e\u3092\u30e9\u30f3\u30c0\u30e0\u3067\u545f\u304d\u307e\u3059\uff01\u2026\u3068\u3044\u3046\u306e\u3082\u5f85\u3063\u3066\u3044\u3066\u4e0b\u3055\u3044\u2026\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u306f\u3057\u307e\u3059\u304c\u9045\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u2026","protected":false,"verified":false,"followers_count":7,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":12380,"created_at":"Wed Aug 21 17:45:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114666"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223696498689,"id_str":"663728223696498689","text":"\u30b3\u30fc\u30f3\u5165\u308a\u306e\u30ab\u30ec\u30fc\u304c\u4e16\u754c\u4e00\u4f3c\u5408\u3046\u5922\u306e\u98df\u5668\uff01\u21d2 \u300e\u304a\u3082\u3057\u308d\u96d1\u8ca8\u306e\u30ab\u30ec\u30fc\u76bf\uff5c\u30e6\u30cb\u30fc\u30af\u306a\u98df\u5668\uff5c\u30b8\u30e7\u30fc\u30af\u30b0\u30c3\u30ba\u304a\u3082\u3057\u308d\u96d1\u8ca8\u306e\u30ab\u30ec\u30fc\u76bf\uff5c\u30e6\u30cb\u30fc\u30af\u306a...\u300f\u3092\u898b\u308b [\u697d\u5929] https:\/\/t.co\/eiyaMWCjZk","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1656059412,"id_str":"1656059412","name":"\u3042\u308b\u3042\u308b\u307c\u3063\u3068","screen_name":"kq2ydrzv","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4893,"created_at":"Thu Aug 08 19:55:07 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eiyaMWCjZk","expanded_url":"http:\/\/a.r10.to\/h7MrzL","display_url":"a.r10.to\/h7MrzL","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114660"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223717613568,"id_str":"663728223717613568","text":"Cre\u00f3 que es momento de decirle adi\u00f3s a esto que nos hace tanto mal esto que nos hizo tanto bien (8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3345538738,"id_str":"3345538738","name":"\u271dChina\u271d","screen_name":"MartiBellinzoni","location":"Arg- Buenos Aires -Berazategui","url":"https:\/\/instagram.com\/martinabellinzoni\/","description":null,"protected":false,"verified":false,"followers_count":897,"friends_count":1644,"listed_count":1,"favourites_count":1432,"statuses_count":4504,"created_at":"Thu Jun 25 13:52:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621390380769112064\/A9YaIl-6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621390380769112064\/A9YaIl-6.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657327208290209792\/aZA3LQPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657327208290209792\/aZA3LQPv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3345538738\/1445552587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080114665"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223692435456,"id_str":"663728223692435456","text":"@JackJackJohnson come back to Gij\u00f3n please\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663676823113474048,"in_reply_to_status_id_str":"663676823113474048","in_reply_to_user_id":2791775374,"in_reply_to_user_id_str":"2791775374","in_reply_to_screen_name":"MagColliner","user":{"id":2791775374,"id_str":"2791775374","name":"Jade I SAW J&J","screen_name":"MagColliner","location":"Hogwarts","url":null,"description":"\u2716\ufe0fWe made these memories for ourselves\u2716\ufe0f || DEIVIZERS\u2764\ufe0f","protected":false,"verified":false,"followers_count":1496,"friends_count":2033,"listed_count":3,"favourites_count":20726,"statuses_count":18638,"created_at":"Mon Sep 29 14:02:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649287183707336704\/aBhI_67M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649287183707336704\/aBhI_67M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2791775374\/1446905117","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080114659"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713275904,"id_str":"663728223713275904","text":"Yes \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/t6PUHbaKG4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3999543681,"id_str":"3999543681","name":"Miltang Girl [SH]","screen_name":"CART_KHB","location":"Supermart","url":null,"description":"#depressed101. you all need a life tbh","protected":false,"verified":false,"followers_count":81,"friends_count":82,"listed_count":0,"favourites_count":76,"statuses_count":3144,"created_at":"Tue Oct 20 04:56:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663654379531079684\/mjyuZja4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663654379531079684\/mjyuZja4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3999543681\/1447051269","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727841184362496,"quoted_status_id_str":"663727841184362496","quoted_status":{"created_at":"Mon Nov 09 14:40:23 +0000 2015","id":663727841184362496,"id_str":"663727841184362496","text":"WAIT RLLY https:\/\/t.co\/8S54bmEnxA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4045387692,"id_str":"4045387692","name":"krystal \uc815 !i","screen_name":"CARTKRYS","location":"supermart. ","url":null,"description":"1994. #SKATA","protected":false,"verified":false,"followers_count":78,"friends_count":74,"listed_count":1,"favourites_count":47,"statuses_count":2885,"created_at":"Wed Oct 28 10:20:52 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFE5BC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"66FF99","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663380526632296450\/HT8oeArA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663380526632296450\/HT8oeArA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4045387692\/1446997229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727660355289088,"quoted_status_id_str":"663727660355289088","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8S54bmEnxA","expanded_url":"https:\/\/twitter.com\/CART_KHB\/status\/663727660355289088","display_url":"twitter.com\/CART_KHB\/statu\u2026","indices":[10,33]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t6PUHbaKG4","expanded_url":"https:\/\/twitter.com\/CARTKRYS\/status\/663727841184362496","display_url":"twitter.com\/CARTKRYS\/statu\u2026","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713296386,"id_str":"663728223713296386","text":"RT @escobarmaggie9: Yo lla la sigo, tu tambi\u00e9n puedes seguirla \nEn sus cuentas oficiales \ud83d\udc47 https:\/\/t.co\/hF360vh13r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2451351252,"id_str":"2451351252","name":"Consuelo ruiz","screen_name":"chevi_ruiz","location":"Cuernavaca","url":null,"description":null,"protected":false,"verified":false,"followers_count":166,"friends_count":401,"listed_count":7,"favourites_count":6861,"statuses_count":10353,"created_at":"Fri Apr 18 13:19:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662855994905509888\/JU2fiud__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662855994905509888\/JU2fiud__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:14 +0000 2015","id":663727551483777024,"id_str":"663727551483777024","text":"Yo lla la sigo, tu tambi\u00e9n puedes seguirla \nEn sus cuentas oficiales \ud83d\udc47 https:\/\/t.co\/hF360vh13r","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3730745593,"id_str":"3730745593","name":"GATITA","screen_name":"escobarmaggie9","location":null,"url":null,"description":"SOY FANS DE \nMHONI VIDENTE \nLA CONOSI AGOSTO 12\/ 2015\nLOS TIEMPOS DE DIOS SON PERFECTOS!","protected":false,"verified":false,"followers_count":10,"friends_count":19,"listed_count":0,"favourites_count":13,"statuses_count":71,"created_at":"Tue Sep 29 23:18:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661739504290525184\/evpZJJa4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661739504290525184\/evpZJJa4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3730745593\/1443569616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663689498040012800,"quoted_status_id_str":"663689498040012800","quoted_status":{"created_at":"Mon Nov 09 12:08:01 +0000 2015","id":663689498040012800,"id_str":"663689498040012800","text":"Te invitamos y te unas a las redes sociales de @mhonividente #FelizLunes https:\/\/t.co\/Ei5MkHncVL","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2992577878,"id_str":"2992577878","name":"Club Oficial Mhoni","screen_name":"ClubMhoniFans","location":"\u2728Club Oficial Mhonividente\u2728","url":"https:\/\/www.youtube.com\/user\/CanalMhonividente","description":"\u2728Twitter @mhonividente \u2728Blog http:\/\/mhoni.blogspot.com\/ \u2728 \u2728Facebook https:\/\/www.facebook.com\/MHONI13 \u2728","protected":false,"verified":false,"followers_count":17273,"friends_count":289,"listed_count":30,"favourites_count":4,"statuses_count":67362,"created_at":"Thu Jan 22 17:13:02 +0000 2015","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660944003261579264\/oZ0AO5r5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660944003261579264\/oZ0AO5r5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2992577878\/1446405156","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FelizLunes","indices":[61,72]}],"urls":[],"user_mentions":[{"screen_name":"mhonividente","name":"Mhoni Vidente","id":59094592,"id_str":"59094592","indices":[47,60]}],"symbols":[],"media":[{"id":663689491362615296,"id_str":"663689491362615296","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmE3XUEAAx_Er.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmE3XUEAAx_Er.jpg","url":"https:\/\/t.co\/Ei5MkHncVL","display_url":"pic.twitter.com\/Ei5MkHncVL","expanded_url":"http:\/\/twitter.com\/ClubMhoniFans\/status\/663689498040012800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689491362615296,"id_str":"663689491362615296","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXmE3XUEAAx_Er.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXmE3XUEAAx_Er.jpg","url":"https:\/\/t.co\/Ei5MkHncVL","display_url":"pic.twitter.com\/Ei5MkHncVL","expanded_url":"http:\/\/twitter.com\/ClubMhoniFans\/status\/663689498040012800\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hF360vh13r","expanded_url":"https:\/\/twitter.com\/ClubMhoniFans\/status\/663689498040012800","display_url":"twitter.com\/ClubMhoniFans\/\u2026","indices":[71,94]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hF360vh13r","expanded_url":"https:\/\/twitter.com\/ClubMhoniFans\/status\/663689498040012800","display_url":"twitter.com\/ClubMhoniFans\/\u2026","indices":[91,114]}],"user_mentions":[{"screen_name":"escobarmaggie9","name":"GATITA","id":3730745593,"id_str":"3730745593","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713296385,"id_str":"663728223713296385","text":"RT @JRealFb: \u0e02\u0e2d\u0e40\u0e25\u0e02\u0e23\u0e30\u0e22\u0e30\u0e17\u0e32\u0e07\u0e40\u0e40\u0e25\u0e30\u0e40\u0e40\u0e1c\u0e19\u0e17\u0e35\u0e48\n\u0e44\u0e1b\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e40\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32\u0e04\u0e48\u0e30 \ud83d\udca3\n#KemiSananFANSHIP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2253194606,"id_str":"2253194606","name":"\u0e19\u0e19\u0e18\u0e34\u0e0a\u0e32","screen_name":"lktarnm","location":null,"url":null,"description":"Kemi P. | #kemisarabelle | 03.08.14 | Toptap\u2764 | #\u0e17\u0e35\u0e21\u0e01\u0e49\u0e2d\u0e22\u0e14\u0e32\u0e27","protected":false,"verified":false,"followers_count":43,"friends_count":80,"listed_count":0,"favourites_count":310,"statuses_count":14009,"created_at":"Thu Dec 19 08:20:14 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663555861193691136\/Bn_cPw2K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663555861193691136\/Bn_cPw2K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2253194606\/1445847732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:34 +0000 2015","id":663724363296862208,"id_str":"663724363296862208","text":"\u0e02\u0e2d\u0e40\u0e25\u0e02\u0e23\u0e30\u0e22\u0e30\u0e17\u0e32\u0e07\u0e40\u0e40\u0e25\u0e30\u0e40\u0e40\u0e1c\u0e19\u0e17\u0e35\u0e48\n\u0e44\u0e1b\u0e1a\u0e49\u0e32\u0e19\u0e40\u0e40\u0e2d\u0e14\u0e21\u0e34\u0e19\u0e14\u0e35\u0e01\u0e27\u0e48\u0e32\u0e04\u0e48\u0e30 \ud83d\udca3\n#KemiSananFANSHIP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2924711779,"id_str":"2924711779","name":"\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e25","screen_name":"JRealFb","location":"\u2661","url":null,"description":"\u0e40\u0e40\u0e1a\u0e1a\u0e40\u0e40\u0e1f\u0e19\u0e01\u0e31\u0e19\u0e19\u0e48\u0e30\u0e40\u0e2b\u0e23\u0e2d... \n\n \u0e2b\u0e32\u0e01\u0e2b\u0e21\u0e14Ss3 \u0e08\u0e30\u0e23\u0e35\u0e19\u0e49\u0e2d\u0e22\u0e25\u0e07\n \u0e2b\u0e23\u0e37\u0e2d\u0e17\u0e27\u0e34\u0e15\u0e2d\u0e32\u0e08\u0e08\u0e30\u0e23\u0e49\u0e32\u0e07 ~~","protected":false,"verified":false,"followers_count":888,"friends_count":148,"listed_count":1,"favourites_count":13445,"statuses_count":36215,"created_at":"Tue Dec 09 22:32:43 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662835057531293696\/NqiRRT4y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662835057531293696\/NqiRRT4y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2924711779\/1445773534","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":3,"entities":{"hashtags":[{"text":"KemiSananFANSHIP","indices":[49,66]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KemiSananFANSHIP","indices":[62,79]}],"urls":[],"user_mentions":[{"screen_name":"JRealFb","name":"\u0e2b\u0e31\u0e27\u0e43\u0e08\u0e21\u0e31\u0e19\u0e08\u0e30\u0e40\u0e23\u0e35\u0e22\u0e25","id":2924711779,"id_str":"2924711779","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223692259329,"id_str":"663728223692259329","text":"\u041f\u0420\u042f\u041c\u041e\u0419 \u042d\u0424\u0418\u0420 \u0432 #Periscope: \u041f\u0430\u043d\u0438\u043a\u0430 https:\/\/t.co\/B3LpdYYifN","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1042289150,"id_str":"1042289150","name":"\u2021Alice\u2021","screen_name":"Omnomnomka1","location":"Russia,Rostov-on-Don","url":null,"description":"#MarilynManson #Placebo #BrianMolko #DavidBowie #DepecheMode #Kasabian #TBBT #mpg #breckinmeyer #FranklinAndBash Instagram- _alice_dream_ birthday-6.07 \u2021","protected":false,"verified":false,"followers_count":229,"friends_count":64,"listed_count":2,"favourites_count":2581,"statuses_count":3802,"created_at":"Fri Dec 28 14:09:13 +0000 2012","utc_offset":10800,"time_zone":"Moscow","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662752861567246336\/wCINuhyR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662752861567246336\/wCINuhyR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1042289150\/1446847578","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[14,24]}],"urls":[{"url":"https:\/\/t.co\/B3LpdYYifN","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCoMDFxTGpHYkRKTEJLSlp8MXJtR1BadkFsTW14Tsv0TDToSzN3Rc80iYFBtE7IeFx3nOI714FpP6G0GRFk","display_url":"periscope.tv\/w\/aRCoMDFxTGpH\u2026","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080114659"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223721668608,"id_str":"663728223721668608","text":"\u4eca\u5e74\u3082\u6d41\u884c\u3063\u3066\u3093\u306e\u306d\u3047\u3001\u5e74\u8cc0\u72b6\u306e\u30a2\u30ecw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1324918602,"id_str":"1324918602","name":"\u7dcb\u5f3e","screen_name":"super_1919","location":"\u30b3\u30ac\u30cd\u30b7\u30c6\u30a3\u21d4\u30a2\u30b5\u30ae\u30b7\u30c6\u30a3","url":"http:\/\/twpf.jp\/super_1919","description":"\u30dc\u30ab\u30ed,\u30a2\u30cb\u30e1,\u6f2b\u753b,\u30b2\u30fc\u30e0,\u30d7\u30ed\u91ce\u7403\u304c\u597d\u304d\u306a\u91ce\u90ce\u3067\u3059\uff01DIVA\u306a\u3069\u8272\u3093\u306a\u30a2\u30b1\u30b2\u30fc\u3092\u307c\u3061\u307c\u3061\u30a8\u30f3\u30b8\u30e7\u30a4\u52e2\u3068\u3057\u3066\u3084\u3063\u3066\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u7d61\u307f\u304c\u3042\u3063\u305f\u308a\u6328\u62f6\u7b49\u3057\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u57fa\u672c\u8fd4\u3057\u307e\u3059\uff01\u30a2\u30a4\u30b3\u30f3\u306f\u53cb\u4eba\u306b\u63cf\u3044\u3066\u3082\u3089\u3044\u307e\u3057\u305f( \u00b4 \u25bd ` )\uff89","protected":false,"verified":false,"followers_count":531,"friends_count":429,"listed_count":13,"favourites_count":1053,"statuses_count":104391,"created_at":"Wed Apr 03 16:15:27 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446999628748050433\/njQWHnBq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446999628748050433\/njQWHnBq.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662154371828813828\/n3-_Ydz1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662154371828813828\/n3-_Ydz1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1324918602\/1443461280","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114666"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223688130560,"id_str":"663728223688130560","text":"\uc6b4\uc804\uba74\ud5c8 \ub530\uace0\uc2f6\ub2f9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":229760328,"id_str":"229760328","name":"\uc774\uc774\uce60","screen_name":"II_II_VII_","location":null,"url":null,"description":"\uc3dc\uc560\ud50c \ub355\uc9c8\ud558\uace0\uc2f6\ub2e4","protected":false,"verified":false,"followers_count":130,"friends_count":562,"listed_count":3,"favourites_count":2155,"statuses_count":50613,"created_at":"Thu Dec 23 07:30:23 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662395326402179072\/9zEPbt4b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662395326402179072\/9zEPbt4b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229760328\/1442673742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080114658"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709073412,"id_str":"663728223709073412","text":"RT @vijayshankar25: \u0bae\u0bbe\u0bae\u0bbe \u0baa\u0bb0\u0bcd\u0bb8\u0bcd\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0bca\u0ba3\u0ba4\u0bcd\u0ba4 \u0b85\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0baa\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0bc1\u0bb5\u0bcb\u0bae\u0bcd \u0b85\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bae\u0bcd \u0ba4\u0bb2 \u0ba4\u0bc0\u0baa\u0bbe\u0bb5\u0bb3\u0bbf\u0baf \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbe\u0b9f\u0bc1\u0bb5\u0bcb\u0bae\u0bcd.\n\n#VedalamDiwali https:\/\/t.co\/n3XluBuoqf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925553603,"id_str":"2925553603","name":"ramkumar","screen_name":"Ram2292Ryan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":132,"friends_count":129,"listed_count":12,"favourites_count":13258,"statuses_count":9049,"created_at":"Wed Dec 10 11:14:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657808664367104\/l9gj1oTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657808664367104\/l9gj1oTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925553603\/1422512821","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:37 +0000 2015","id":663710283953602561,"id_str":"663710283953602561","text":"\u0bae\u0bbe\u0bae\u0bbe \u0baa\u0bb0\u0bcd\u0bb8\u0bcd\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0bca\u0ba3\u0ba4\u0bcd\u0ba4 \u0b85\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0baa\u0ba3\u0bcd\u0ba3\u0bbf\u0b9f\u0bc1\u0bb5\u0bcb\u0bae\u0bcd \u0b85\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bae\u0bcd \u0ba4\u0bb2 \u0ba4\u0bc0\u0baa\u0bbe\u0bb5\u0bb3\u0bbf\u0baf \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbe\u0b9f\u0bc1\u0bb5\u0bcb\u0bae\u0bcd.\n\n#VedalamDiwali https:\/\/t.co\/n3XluBuoqf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":362674684,"id_str":"362674684","name":"Kokki Kumaru ;-)","screen_name":"vijayshankar25","location":"Chennai","url":null,"description":"Thala veriyan. CSK en uyir. Sachin my God","protected":false,"verified":false,"followers_count":1629,"friends_count":394,"listed_count":20,"favourites_count":2481,"statuses_count":36561,"created_at":"Fri Aug 26 20:02:42 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662967795026538496\/hmbn9w_0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662967795026538496\/hmbn9w_0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362674684\/1446904147","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663703716919451650,"quoted_status_id_str":"663703716919451650","quoted_status":{"created_at":"Mon Nov 09 13:04:31 +0000 2015","id":663703716919451650,"id_str":"663703716919451650","text":"\u0b87\u0baa\u0bcd\u0baa \u0b8e\u0ba4\u0b9f\u0bbe \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbe\u0b9f\u0bc1\u0bb1\u0ba4\u0bc1 \u0ba4\u0bb2 \u0ba4\u0bc0\u0baa\u0bbe\u0bb5\u0bb3\u0bbf\u0baf\u0bb5\u0bbe \u0b87\u0bb2\u0bcd\u0bb2 \u0baa\u0bc1\u0bb2\u0bbf \u0ba8\u0bb7\u0bcd\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bbe\n#VedalamDiwali","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":700585267,"id_str":"700585267","name":"\u0bb5\u0bc7\u0ba4\u0bbe\u0bb3\u0bae\u0bcd|\u0b95\u0bc6\u0b9f\u0bcd\u0b9f\u0bb5\u0ba9\u0bcd\u0b9f\u0bbe","screen_name":"ThalaAravint","location":null,"url":null,"description":"Heaven Must Be Really Small , Because I Can See It On my Mummy Eyes \u0b95\u0bc6\u0b9f\u0bcd\u0b9f\u0bb5\u0ba9\u0bcd|\u0bb0\u0bc6\u0bbe\u0bae\u0bcd\u0baa\u0b95\u0bc6\u0b9f\u0bcd\u0b9f\u0bb5\u0ba9\u0bcd . \u0ba4\u0bb2 \u0baf \u0b87\u0ba4\u0baf\u0bae\u0bbe \u0bb5\u0b9a\u0bcd\u0b9a\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0b95\u0bcb\u0b9f\u0bbf \u0bb0\u0b9a\u0bbf\u0b95\u0bb0\u0bcd\u0b95\u0bb3\u0bbf\u0bb2\u0bcd \u0ba8\u0bbe\u0ba9\u0bc1\u0bae\u0bcd \u0b92\u0bb0\u0bc1\u0bb5\u0ba9\u0bcd. \u0baf\u0bbe\u0bb4\u0bcd \u0bae\u0bbe\u0ba9\u0bbf","protected":false,"verified":false,"followers_count":7399,"friends_count":2109,"listed_count":13,"favourites_count":49074,"statuses_count":38643,"created_at":"Tue Jul 17 07:31:11 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663580864085942276\/2AIWhqCa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663580864085942276\/2AIWhqCa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/700585267\/1446622374","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VedalamDiwali","indices":[57,71]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ta"},"is_quote_status":true,"retweet_count":9,"favorite_count":6,"entities":{"hashtags":[{"text":"VedalamDiwali","indices":[78,92]}],"urls":[{"url":"https:\/\/t.co\/n3XluBuoqf","expanded_url":"https:\/\/twitter.com\/ThalaAravint\/status\/663703716919451650","display_url":"twitter.com\/ThalaAravint\/s\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ta"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VedalamDiwali","indices":[98,112]}],"urls":[{"url":"https:\/\/t.co\/n3XluBuoqf","expanded_url":"https:\/\/twitter.com\/ThalaAravint\/status\/663703716919451650","display_url":"twitter.com\/ThalaAravint\/s\u2026","indices":[114,137]}],"user_mentions":[{"screen_name":"vijayshankar25","name":"Kokki Kumaru ;-)","id":362674684,"id_str":"362674684","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ta","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223709106177,"id_str":"663728223709106177","text":"\u52dd\u624b\u306b\u8d05\u8089\u3068\u308c\u306a\u3044\u304b\u306a\uff1f","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2173478401,"id_str":"2173478401","name":"\u5929\u4f7f\u306b\u306a\u308a\u305f\u3044\u30e1\u30f3\u30d8\u30e9\u30fc\u3073\u3043\u5148\u8f29bot","screen_name":"killkill_kilby_","location":null,"url":null,"description":"\u5929\u4f7f\uff1d\u6c60\u6cbc\uff1f\uff1f\uff1f","protected":false,"verified":false,"followers_count":454,"friends_count":407,"listed_count":28,"favourites_count":532,"statuses_count":26635,"created_at":"Mon Nov 04 06:45:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/434672846753652737\/bE8xZ00p_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/434672846753652737\/bE8xZ00p_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2173478401\/1400854009","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114663"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223696515072,"id_str":"663728223696515072","text":"@puratonVY \u2026\u2026\u2026\u4fe1\u3058\u3089\u308c\u306a\u3044\u2026\u2026\u2026","source":"\u003ca href=\"https:\/\/github.com\/fetus-hina\/tarte\" rel=\"nofollow\"\u003e\u305f\u308b\u3068\u3002\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728205971349504,"in_reply_to_status_id_str":"663728205971349504","in_reply_to_user_id":2247278821,"in_reply_to_user_id_str":"2247278821","in_reply_to_screen_name":"puratonVY","user":{"id":123468107,"id_str":"123468107","name":"\u516b\u4e59\u5973\u6893\u4e43 (bot)","screen_name":"bot_shino","location":"\u51f0\u83ef\u5973\u5b66\u9662\u5206\u6821(\u672c\u6821\u5bee)","url":"http:\/\/pulltop-bots.com\/kanishino\/bot_shino","description":"\u3010\u203b\u4eba\u9593\u3058\u3083\u306a\u3044\u3067\u3059\u3088\uff01\u3011\u300e\u3068\u3001\u6bbf\u3061\u3083\u3093\u2026\u2026\u308f\u305f\u304f\u3057\u3001\u3069\u3046\u3057\u305f\u3089\u2026\u2026\u300f\u300c\u2026\u2026\u2026\u99c4\u76ee\u3060\u3088\u6893\u4e43\u3002\u3061\u3083\u3093\u3068\u305b\u3093\u305b\u306b\u3054\u6328\u62f6\u3057\u3066\u300d\u300e\u2026\u2026\u3042\u3001\u3042\u306e\u3001\u2026\u2026\u305b\u3093\u305b\u3044\u3001\u3053\u308c\u304b\u3089\u3001\u3088\u3001\u3088\u308d\u3057\u304f\u2026\u2026\u304a\u9858\u3044\u3001\u3057\u307e\u3059\u2026\u2026\u300f\u3010\u975e\u516c\u5f0fbot,\u9023\u7d61\u5148@fetus_hina,\u6bbf\u3061\u3083\u3093@tonoko_bot\u3002\u95a2\u9023bot\u306fURL\u304b\u3089\u3011","protected":false,"verified":false,"followers_count":1455,"friends_count":928,"listed_count":114,"favourites_count":0,"statuses_count":671652,"created_at":"Tue Mar 16 05:30:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F6D8D5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"A01111","profile_sidebar_border_color":"DD6239","profile_sidebar_fill_color":"E2877B","profile_text_color":"111010","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1342283165\/bot_shino_v3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1342283165\/bot_shino_v3_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"puratonVY","name":"\u81ea\u610f\u8b58\u904e\u5270\u306a\u30d7\u30e9\u30c8\u30f3\u3073\u3043\u5148\u8f29bot","id":2247278821,"id_str":"2247278821","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114660"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223713259524,"id_str":"663728223713259524","text":"RT @VAlmoradie: Ang sipag ni kyla ahhh #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546852049,"id_str":"546852049","name":"KylaOnline Official","screen_name":"KylaOnline_","location":null,"url":"https:\/\/www.facebook.com\/profile.php?id=671219770#!\/pages\/Kyla\/63732474487","description":"Official twitter fanpage of the R&B Queen, Kyla (@kylareal) Peace, Love and RNB!","protected":false,"verified":false,"followers_count":1549,"friends_count":263,"listed_count":8,"favourites_count":4844,"statuses_count":10514,"created_at":"Fri Apr 06 14:28:47 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642741279764279296\/xKO40hGh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642741279764279296\/xKO40hGh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546852049\/1442076483","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:49:04 +0000 2015","id":663714927140433920,"id_str":"663714927140433920","text":"Ang sipag ni kyla ahhh #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2662987406,"id_str":"2662987406","name":"Veraluz Almoradie","screen_name":"VAlmoradie","location":null,"url":null,"description":"late bloomer jadine fan...certified otwolista","protected":false,"verified":false,"followers_count":263,"friends_count":196,"listed_count":2,"favourites_count":227,"statuses_count":9780,"created_at":"Sun Jul 20 13:27:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661315141535858688\/GWSNTJcV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661315141535858688\/GWSNTJcV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2662987406\/1446070301","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[23,33]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[39,49]}],"urls":[],"user_mentions":[{"screen_name":"VAlmoradie","name":"Veraluz Almoradie","id":2662987406,"id_str":"2662987406","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080114664"} +{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728223704911872,"id_str":"663728223704911872","text":"RT @hotpepperbeauty: \u9854\u578b\u691c\u7d22\u3067\u4f3c\u5408\u3046\u9aea\u578b\u3082\u3046\u8ff7\u308f\u306a\u3044\u3063\u266a https:\/\/t.co\/ZsZcoRs3hk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":241826947,"id_str":"241826947","name":"\u308a\u308a\u3042\u3093=\u30ed\u30c9\u30ea\u30b2\u30b9","screen_name":"yukouu","location":"\u51fa\u5cf6","url":null,"description":"\u7d75\u3068\u304b\u3082\u63cf\u304f\u307f\u3053\u3053\u306e\u304a\u305f\u57a2\u3002\u3055\u306b\u308f\u3066\u308b\u3088\u3002\u203b\u8150\u3063\u3066\u307e\u3059\u203b\u8150\u3063\u3066\u307e\u3059\n\u30a4\u30e9\u30b9\u30c8\u7121\u65ad\u8ee2\u8f09\u7981\u6b62\u3067\u3059\u3002\u30de\u30ae\/\u30f4\u30a1\u30f3\u30ac\u30fc\u30c9\/LOVE\u5fc3\u3061\u3083\u3093\u63a8\u3057\/\u30ef\u30fc\u30c8\u30ea\/HQ\/\u8272\u3005\u3000\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u304b\u3089\u306e\u30a4\u30e9\u30b9\u30c8\u30ea\u30af\u306a\u3093\u304b\u3082\u53d7\u4ed8\u3063","protected":false,"verified":false,"followers_count":45,"friends_count":172,"listed_count":2,"favourites_count":3854,"statuses_count":3650,"created_at":"Sun Jan 23 06:53:12 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/838764613\/93d000a7ef5879bb821145c976b5145a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/838764613\/93d000a7ef5879bb821145c976b5145a.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616498944672010241\/JwP92Zhp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616498944672010241\/JwP92Zhp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/241826947\/1393333578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 12:19:06 +0000 2015","id":662605120576753664,"id_str":"662605120576753664","text":"\u9854\u578b\u691c\u7d22\u3067\u4f3c\u5408\u3046\u9aea\u578b\u3082\u3046\u8ff7\u308f\u306a\u3044\u3063\u266a https:\/\/t.co\/ZsZcoRs3hk","source":"\u003ca href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190897519,"id_str":"190897519","name":"\u30db\u30c3\u30c8\u30da\u30c3\u30d1\u30fc\u30d3\u30e5\u30fc\u30c6\u30a3\u30fc\uff08\u516c\u5f0f\uff09","screen_name":"hotpepperbeauty","location":null,"url":"http:\/\/beauty.hotpepper.jp\/","description":"\u30d8\u30a2\u30fb\u30cd\u30a4\u30eb\u30fb\u30ea\u30e9\u30af\u306a\u3069\u3001\u304a\u6c17\u306b\u5165\u308a\u306e\u30b5\u30ed\u30f3\u304c\u898b\u3064\u304b\u308b\u30db\u30c3\u30c8\u30da\u30c3\u30d1\u30fc\u30d3\u30e5\u30fc\u30c6\u30a3\u30fc\u306e\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\r\n\u304a\u3059\u3059\u3081\u306e\u30d8\u30a2\u30ab\u30bf\u30ed\u30b0\u3084\u6ce8\u76ee\u306e\u30cd\u30a4\u30eb\u30a2\u30fc\u30c8\u306a\u3069\r\n\u307f\u3093\u306a\u306e\u30ad\u30ec\u30a4\u3092\u5fdc\u63f4\u3059\u308b\u3064\u3076\u3084\u304d\u3092\u767a\u4fe1\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":50486,"friends_count":0,"listed_count":63,"favourites_count":0,"statuses_count":281,"created_at":"Wed Sep 15 03:06:41 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B3005F","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469344742963027970\/ati5s5bu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469344742963027970\/ati5s5bu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190897519\/1401449555","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZsZcoRs3hk","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce541qrgf\/zfsd","display_url":"cards.twitter.com\/cards\/18ce541q\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZsZcoRs3hk","expanded_url":"https:\/\/cards.twitter.com\/cards\/18ce541qrgf\/zfsd","display_url":"cards.twitter.com\/cards\/18ce541q\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"hotpepperbeauty","name":"\u30db\u30c3\u30c8\u30da\u30c3\u30d1\u30fc\u30d3\u30e5\u30fc\u30c6\u30a3\u30fc\uff08\u516c\u5f0f\uff09","id":190897519,"id_str":"190897519","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080114662"} +{"delete":{"status":{"id":663727770736812033,"id_str":"663727770736812033","user_id":296774893,"user_id_str":"296774893"},"timestamp_ms":"1447080115233"}} +{"delete":{"status":{"id":589979755488813056,"id_str":"589979755488813056","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080115388"}} +{"delete":{"status":{"id":267614806880698368,"id_str":"267614806880698368","user_id":522593334,"user_id_str":"522593334"},"timestamp_ms":"1447080115491"}} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886743552,"id_str":"663728227886743552","text":"\u041f\u0430\u043f\u0430 \u0441 \u041e\u043b\u0435\u0441\u0435\u0439 \u0437\u0430\u0442\u0440\u0430\u043b\u0438\u043b\u0438 \u0441 \u044d\u0442\u0438\u043c\u0438 \u0440\u0443\u043a\u0430\u043c\u0438 \u0438 \u043b\u0438\u0446\u043e\u043c\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3093852186,"id_str":"3093852186","name":"\u274eE V I L\u274e","screen_name":"PonamorevLiza","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":30,"listed_count":0,"favourites_count":309,"statuses_count":1292,"created_at":"Tue Mar 17 14:09:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662827411441115136\/Id7d0djg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662827411441115136\/Id7d0djg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3093852186\/1445786377","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878334465,"id_str":"663728227878334465","text":"@eab058 \n\u062e\u0644\u064a \u0645\u0639\u0643 \u062f\u0641\u062a\u0631 \u0635\u063a\u064a\u0631 \u0641\u064a \u0634\u0646\u0637\u062a\u0643 \u0648\u0643\u0644 \u0634\u064a\u0621 \u0645\u0647\u0645 \u0643\u062a\u0628\u064a\u0647 \u0648\u062e\u0627\u0635\u0647 \u0642\u0628\u0644 \u0645\u0627 \u062a\u0646\u0627\u0645\u064a \u0627\u0643\u062a\u0628\u064a \u0627\u064a\u0634 \u062a\u0628\u063a\u064a \u062a\u0633\u0648\u064a \u062b\u0627\u0646\u064a \u064a\u0648\u0645 \u0639\u0634\u0627\u0646 \u0645\u0627 \u062a\u0646\u0633\u064a.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663697414516301824,"in_reply_to_status_id_str":"663697414516301824","in_reply_to_user_id":2419092305,"in_reply_to_user_id_str":"2419092305","in_reply_to_screen_name":"eab058","user":{"id":1650405896,"id_str":"1650405896","name":"Wejdan Mubarak","screen_name":"wjdmub","location":null,"url":"http:\/\/ask.fm\/wjdmub","description":null,"protected":false,"verified":false,"followers_count":844,"friends_count":1644,"listed_count":2,"favourites_count":1852,"statuses_count":7229,"created_at":"Tue Aug 06 13:56:32 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662671095443623936\/jy6CSXrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662671095443623936\/jy6CSXrh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650405896\/1439880687","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"eab058","name":"Ebtehal Alibrahim","id":2419092305,"id_str":"2419092305","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227899297792,"id_str":"663728227899297792","text":"RT @_gsacramento: um acidente grave aqui \nbateu\na\nvontade\nde\nbejar sua boca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2716887147,"id_str":"2716887147","name":"Trouxiane \u2728","screen_name":"Nc1999Souza","location":"Nao existe amor em Bh","url":null,"description":"Vem Que O Bom Astral Vai Dominar o Mundo !","protected":false,"verified":false,"followers_count":702,"friends_count":518,"listed_count":2,"favourites_count":10125,"statuses_count":22724,"created_at":"Fri Jul 18 17:32:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663083741217202176\/JSErm11W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663083741217202176\/JSErm11W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2716887147\/1446831785","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:06 +0000 2015","id":663723240536326144,"id_str":"663723240536326144","text":"um acidente grave aqui \nbateu\na\nvontade\nde\nbejar sua boca","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90725568,"id_str":"90725568","name":"Gabriel Sacramento","screen_name":"_gsacramento","location":"011","url":"http:\/\/instagram.com\/_gsacramento","description":"Muitos v\u00e3o me julgar sem ao menos me conhecer, ent\u00e3o antes de julgar irm\u00e3o, cala a boca e faz metade. \/ @PQPARlU \/ snapchat: gsacramento","protected":false,"verified":false,"followers_count":79359,"friends_count":42880,"listed_count":22,"favourites_count":4235,"statuses_count":65306,"created_at":"Tue Nov 17 21:35:55 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"116423","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/635037159460835328\/8-vHfNye.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/635037159460835328\/8-vHfNye.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648976839956934656\/Y9vaHn7D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648976839956934656\/Y9vaHn7D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90725568\/1446729182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":330,"favorite_count":134,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_gsacramento","name":"Gabriel Sacramento","id":90725568,"id_str":"90725568","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115662"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886743553,"id_str":"663728227886743553","text":"RT @iFaridoon: \"@varun_dvn gave me a call time today as well, like he used to do as an AD on #MNIK he was an awesome AD in MNIK\": @kajolatun","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3010657842,"id_str":"3010657842","name":"SRK Universe China","screen_name":"SRKUniverseCHN","location":null,"url":"http:\/\/www.xoases.org\/forum.php","description":"\u6211\u5011\u4f86\u81ea\u4e2d\u570b\uff0c\u6211\u5011\u6df1\u611b\u8457\u6c99\u9b6f\u514b\u6c57\uff0c\u700f\u89bd\u6211\u5011\u7684\u7db2\u7ad9\uff0c\u7136\u5f8c\u4f60\u6703\u660e\u767d\u6211\u5011\u7684\u611b We come from China.We love Shah Rukh Khan.Visit our website then you will understand our love.","protected":false,"verified":false,"followers_count":1621,"friends_count":71,"listed_count":10,"favourites_count":185,"statuses_count":10135,"created_at":"Fri Feb 06 01:31:46 +0000 2015","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"zh-cn","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571564195682852864\/pQ0d8Tf4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571564195682852864\/pQ0d8Tf4.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661003504908005376\/xqt7JXTr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661003504908005376\/xqt7JXTr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3010657842\/1425110632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:20 +0000 2015","id":663727827250991104,"id_str":"663727827250991104","text":"\"@varun_dvn gave me a call time today as well, like he used to do as an AD on #MNIK he was an awesome AD in MNIK\": @kajolatun","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1217017676,"id_str":"1217017676","name":"Faridoon Shahryar","screen_name":"iFaridoon","location":null,"url":null,"description":"Journalist based in Mumbai, India, who believes in credible infotainment. Works for Bollywood Hungama. Loves Music, Swimming,Smiling! faridoonshahryar@gmail.com","protected":false,"verified":false,"followers_count":42832,"friends_count":285,"listed_count":123,"favourites_count":3274,"statuses_count":22114,"created_at":"Mon Feb 25 01:54:40 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658131483589242881\/ulREiUkz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1217017676\/1446533556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":37,"entities":{"hashtags":[{"text":"MNIK","indices":[78,83]}],"urls":[],"user_mentions":[{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[1,11]},{"screen_name":"KajolAtUN","name":"Kajol","id":2805358944,"id_str":"2805358944","indices":[115,125]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MNIK","indices":[93,98]}],"urls":[],"user_mentions":[{"screen_name":"iFaridoon","name":"Faridoon Shahryar","id":1217017676,"id_str":"1217017676","indices":[3,13]},{"screen_name":"Varun_dvn","name":"Varun Veer Dhawan","id":366947884,"id_str":"366947884","indices":[16,26]},{"screen_name":"KajolAtUN","name":"Kajol","id":2805358944,"id_str":"2805358944","indices":[130,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227907674112,"id_str":"663728227907674112","text":"RT @7ll_Follow_Back: \u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2189347750,"id_str":"2189347750","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0632\u0647\u0631\u0627\u0646\u064a","screen_name":"M_A_Alzahrani","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0639\u0627\u0634\u0642 \u0648\u0645\u062d\u0628 \u0644\u0646\u0627\u062f\u064a \u0627\u0644\u0647\u0644\u0627\u0644 \u0627\u0644\u0645\u0644\u0643\u064a \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631\u060c \u0625\u0633\u0623\u0644\u0646\u064a \u0639\u0646 \u0627\u0644\u0639\u0634\u0642 \u0623\u062d\u062f\u062b\u0643 \u0639\u0646 \u0627\u0644\u0647\u0644\u0627\u0644.\u0644\u064a \u062d\u0631\u064a\u0629 \u0627\u0644\u0637\u0631\u062d \u0648\u0644\u0643\u0645 \u062d\u0631\u064a\u0629 \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0647","protected":false,"verified":false,"followers_count":3821,"friends_count":1084,"listed_count":4,"favourites_count":1190,"statuses_count":69432,"created_at":"Wed Nov 20 20:15:11 +0000 2013","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656598922824126465\/8cszhASN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189347750\/1444106923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 14:01:55 +0000 2015","id":662630996169392128,"id_str":"662630996169392128","text":"\u2b55\u0644\u0644\u0645\u062a\u0648\u0627\u062c\u062f\u064a\u0646 \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0646\u0643 \u0642\u0645 \u0628\u0627\u0644\u0627\u062a\u064a \u278a \u0641\u0648\u0644\u0648 \u0645\u064a 7ll_Follow_Back \u278b \u0631\u062a\u0648\u064a\u062a \u278c \u0641\u0648\u0644\u0648 \u0644\u0644\u064a \u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u278d \u0641\u0648\u0644\u0648 \u0628\u0627\u0643 \u278e\u0627\u0644\u0644\u064a \u0645\u0627 \u064a\u0644\u062a\u0632\u0645 \u0645\u0627 \u0628\u064a\u0633\u062a\u0641\u064a\u062f\u274c 0500","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":549145898,"id_str":"549145898","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","screen_name":"7ll_Follow_Back","location":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","url":"http:\/\/goo.gl\/qDgKeS","description":"\u200f\u200f\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 \u0645\u0635\u0646\u0641 \u0623\u0643\u062b\u0631 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0646\u0634\u0627\u0637\u0627\u064b \u0644\u0632\u064a\u0627\u062f\u0629 \u0645\u062a\u0627\u0628\u0639\u064a\u0643 \u0627\u0639\u0645\u0644 \u0631\u062a\u0648\u064a\u062a \u0644\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a - \u0648\u0644\u0645\u0639\u0631\u0641\u0629 \u0627\u0633\u0639\u0627\u0631 \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0627\u0635\u0644 \u0645\u0639\u0646\u0627 \u0648\u0627\u062a\u0633\u0627\u0628 0504528985","protected":false,"verified":false,"followers_count":513876,"friends_count":272527,"listed_count":976,"favourites_count":7,"statuses_count":162789,"created_at":"Mon Apr 09 11:19:53 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442081405158182912\/pU1ZAfKD_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":126,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"7ll_Follow_Back","name":"\u0625\u0636\u0627\u0641\u0627\u062a \u0627\u0644\u0639\u0631\u0628 500.000","id":549145898,"id_str":"549145898","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080115664"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903479809,"id_str":"663728227903479809","text":"Heading up to meet the team behind Results For Life Joshua Pearson, Jack Leaning. These guys are doing amazing things right now in the fitn\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2164817390,"id_str":"2164817390","name":"Feel Good PT","screen_name":"FeelGoodPT1","location":"Five Oak Green, England","url":"http:\/\/www.feelgoodpt.co.uk\/norisk","description":"Kent's Leading Body Transformation Experts, Transform Your Mind Your Body And Your Life.\n\nApply For Your Free Transformation Here - http:\/\/t.co\/pT7ncnPiTz","protected":false,"verified":false,"followers_count":85,"friends_count":8,"listed_count":2,"favourites_count":3,"statuses_count":162,"created_at":"Wed Oct 30 13:49:22 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662841356830810112\/vO2XlBqF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662841356830810112\/vO2XlBqF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2164817390\/1439450598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911933952,"id_str":"663728227911933952","text":"Julio Pizza: \"O profissional da agricultura brasileira \u00e9 jovem, com boa forma\u00e7\u00e3o, mas que ainda precisa encarar a atividade como um neg\u00f3cio\"","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":92263067,"id_str":"92263067","name":"Soc.Rural Brasileira","screen_name":"ruralbrasileira","location":"S\u00e3o Paulo","url":"http:\/\/www.srb.org.br","description":"Twitter oficial da Sociedade Rural Brasileira (SRB). Em defesa do produto rural brasileiro!!","protected":false,"verified":false,"followers_count":10224,"friends_count":894,"listed_count":96,"favourites_count":783,"statuses_count":17308,"created_at":"Tue Nov 24 12:40:20 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000167585290\/N6nqYVCB.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000167585290\/N6nqYVCB.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000260472207\/108f2d5347d79053f1fae29bb9d72c7b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000260472207\/108f2d5347d79053f1fae29bb9d72c7b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92263067\/1364920067","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878354944,"id_str":"663728227878354944","text":"@null 280942309","source":"\u003ca href=\"https:\/\/twitter.com\/\" rel=\"nofollow\"\u003evisualist\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":949183260,"id_str":"949183260","name":"\u3164cy","screen_name":"cahnyoI","location":null,"url":null,"description":"exo park chan-yeol","protected":false,"verified":false,"followers_count":6815,"friends_count":5603,"listed_count":34,"favourites_count":110,"statuses_count":67900,"created_at":"Thu Nov 15 06:46:47 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/652703974978486277\/0xF7z5S-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/652703974978486277\/0xF7z5S-.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663272180680028160\/EINslIFo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663272180680028160\/EINslIFo_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878371329,"id_str":"663728227878371329","text":"RT @B1A4_CNU: \ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3191232271,"id_str":"3191232271","name":"ymi","screen_name":"gongshiks","location":null,"url":null,"description":"b1a4 & girl groups","protected":false,"verified":false,"followers_count":55,"friends_count":311,"listed_count":3,"favourites_count":1734,"statuses_count":6838,"created_at":"Sun May 10 20:11:03 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FEEEF8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"97C082","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651885900608237568\/b7uVZep0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651885900608237568\/b7uVZep0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3191232271\/1444256370","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:24 +0000 2015","id":663728098232238080,"id_str":"663728098232238080","text":"\ub124\uc774\ubc84 \uc6f9\ud230 <\uc544\uc774\ub3cc \uc5f0\uad6c\uc18c> B1A4\ud3b8 \uc2e0\uae30\ud558\uace0 \uc7ac\ubbf8\uc788\ub124\uc694! \ub300\ubc15! #\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c #B1A4 https:\/\/t.co\/p3YfKOiCNb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187806925,"id_str":"187806925","name":"\uc2e0\ub3d9\uc6b0","screen_name":"B1A4_CNU","location":null,"url":null,"description":"Hello~ I'm C-NU","protected":false,"verified":true,"followers_count":668757,"friends_count":51,"listed_count":8493,"favourites_count":27,"statuses_count":448,"created_at":"Tue Sep 07 05:37:35 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3078699385\/311d350316bd82bc32cb251b917ba30f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187806925\/1357579369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":219,"favorite_count":201,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[47,54]},{"text":"B1A4","indices":[55,60]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\uc774\ub3cc\uc5f0\uad6c\uc18c","indices":[61,68]},{"text":"B1A4","indices":[69,74]}],"urls":[],"user_mentions":[{"screen_name":"B1A4_CNU","name":"\uc2e0\ub3d9\uc6b0","id":187806925,"id_str":"187806925","indices":[3,12]}],"symbols":[],"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"extended_entities":{"media":[{"id":663728094331559936,"id_str":"663728094331559936","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJL2oUYAAaPzQ.jpg","url":"https:\/\/t.co\/p3YfKOiCNb","display_url":"pic.twitter.com\/p3YfKOiCNb","expanded_url":"http:\/\/twitter.com\/B1A4_CNU\/status\/663728098232238080\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663728098232238080,"source_status_id_str":"663728098232238080","source_user_id":187806925,"source_user_id_str":"187806925"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886735360,"id_str":"663728227886735360","text":"RT @Procast: Deer Stand on the bye week with @Lanejohnson65 talking @BassProShops, False Starts, and the #Cowboys on #PROcast\nhttps:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62975616,"id_str":"62975616","name":"Bill C.","screen_name":"billycuth","location":null,"url":null,"description":"Christ Follower, Husband, Father, Son, Autism Acceptance, Philly Fan, Golf Fanatic, Gamer, Electronics Nerd, and that about sums it up!","protected":false,"verified":false,"followers_count":149,"friends_count":159,"listed_count":6,"favourites_count":2314,"statuses_count":13519,"created_at":"Wed Aug 05 00:20:17 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/372525152\/321184_2571706251720_1226166354_3154745_2002047311_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/372525152\/321184_2571706251720_1226166354_3154745_2002047311_n.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/512580053310251009\/a8L4rXAx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/512580053310251009\/a8L4rXAx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62975616\/1442243036","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 20:33:24 +0000 2015","id":661279966890344448,"id_str":"661279966890344448","text":"Deer Stand on the bye week with @Lanejohnson65 talking @BassProShops, False Starts, and the #Cowboys on #PROcast\nhttps:\/\/t.co\/Nihw2tpk7a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3674274552,"id_str":"3674274552","name":"FOX Sports: PROcast","screen_name":"Procast","location":"Los Angeles, CA","url":"http:\/\/www.foxsports.com\/procast","description":"Real Athletes, Real Content, in Real Time","protected":false,"verified":true,"followers_count":560,"friends_count":602,"listed_count":6,"favourites_count":76,"statuses_count":162,"created_at":"Thu Sep 24 21:12:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647185098840780800\/t3AsZLau_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647185098840780800\/t3AsZLau_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3674274552\/1443135641","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":120,"favorite_count":120,"entities":{"hashtags":[{"text":"Cowboys","indices":[92,100]},{"text":"PROcast","indices":[104,112]}],"urls":[{"url":"https:\/\/t.co\/Nihw2tpk7a","expanded_url":"https:\/\/amp.twimg.com\/v\/6ef9f0db-b3c6-457d-9f92-dfd811f41f84","display_url":"amp.twimg.com\/v\/6ef9f0db-b3c\u2026","indices":[113,136]}],"user_mentions":[{"screen_name":"Lanejohnson65","name":"Lane Johnson","id":343066564,"id_str":"343066564","indices":[32,46]},{"screen_name":"BassProShops","name":"Bass Pro Shops","id":22695018,"id_str":"22695018","indices":[55,68]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Cowboys","indices":[105,113]},{"text":"PROcast","indices":[117,125]}],"urls":[{"url":"https:\/\/t.co\/Nihw2tpk7a","expanded_url":"https:\/\/amp.twimg.com\/v\/6ef9f0db-b3c6-457d-9f92-dfd811f41f84","display_url":"amp.twimg.com\/v\/6ef9f0db-b3c\u2026","indices":[126,140]}],"user_mentions":[{"screen_name":"Procast","name":"FOX Sports: PROcast","id":3674274552,"id_str":"3674274552","indices":[3,11]},{"screen_name":"Lanejohnson65","name":"Lane Johnson","id":343066564,"id_str":"343066564","indices":[45,59]},{"screen_name":"BassProShops","name":"Bass Pro Shops","id":22695018,"id_str":"22695018","indices":[68,81]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903479810,"id_str":"663728227903479810","text":"RT @ash_mania99: #StillFunny \"@Tokyo_Trev: When ur ex takes u back, u gotta whisper \"Yizo Yizo The return baba\" in her ear during sex\"","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298775210,"id_str":"298775210","name":"#MillerFYE","screen_name":"ThandoLov3SA","location":"Johustleburg","url":null,"description":"IG: ThandoLov3SA \u2022 Aint No Tellin' Where Ima Go Man \u2022 You Don't Know Me Yet","protected":false,"verified":false,"followers_count":674,"friends_count":274,"listed_count":9,"favourites_count":179,"statuses_count":38146,"created_at":"Sat May 14 22:36:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618289083803152385\/56TACIoj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618289083803152385\/56TACIoj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298775210\/1439752977","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:17 +0000 2015","id":663724293302394880,"id_str":"663724293302394880","text":"#StillFunny \"@Tokyo_Trev: When ur ex takes u back, u gotta whisper \"Yizo Yizo The return baba\" in her ear during sex\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":567969770,"id_str":"567969770","name":"Prince Charming","screen_name":"ash_mania99","location":"Jhb","url":null,"description":"#SelfMade","protected":false,"verified":false,"followers_count":617,"friends_count":404,"listed_count":2,"favourites_count":1101,"statuses_count":26591,"created_at":"Tue May 01 07:38:31 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663341739269341185\/_SzU2rNh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663341739269341185\/_SzU2rNh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/567969770\/1445274590","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"StillFunny","indices":[0,11]}],"urls":[],"user_mentions":[{"screen_name":"Tokyo_Trev","name":"Trev","id":108411936,"id_str":"108411936","indices":[13,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StillFunny","indices":[17,28]}],"urls":[],"user_mentions":[{"screen_name":"ash_mania99","name":"Prince Charming","id":567969770,"id_str":"567969770","indices":[3,15]},{"screen_name":"Tokyo_Trev","name":"Trev","id":108411936,"id_str":"108411936","indices":[30,41]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903475714,"id_str":"663728227903475714","text":"TUNAyyyNaMAMON #PushAwardsLizQuens https:\/\/t.co\/yjaSCOYLp6","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3699991092,"id_str":"3699991092","name":"LQForever3","screen_name":"LQForever3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":69,"friends_count":1,"listed_count":9,"favourites_count":0,"statuses_count":73335,"created_at":"Sun Sep 27 04:51:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727294129811456,"quoted_status_id_str":"663727294129811456","quoted_status":{"created_at":"Mon Nov 09 14:38:13 +0000 2015","id":663727294129811456,"id_str":"663727294129811456","text":"kjbee3 #PushAwardsLizQuens https:\/\/t.co\/8ZqFBvUm7W","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3760299316,"id_str":"3760299316","name":"LizQuen M.East","screen_name":"TUNAyyyNaMAMON","location":null,"url":null,"description":"Don't hate what you don't UNDERSTAND!","protected":false,"verified":false,"followers_count":91,"friends_count":90,"listed_count":2,"favourites_count":10,"statuses_count":49944,"created_at":"Thu Sep 24 12:48:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653982160710463488\/6CvrBOuj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653982160710463488\/6CvrBOuj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3760299316\/1443147609","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726917346918401,"quoted_status_id_str":"663726917346918401","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[7,26]}],"urls":[{"url":"https:\/\/t.co\/8ZqFBvUm7W","expanded_url":"http:\/\/twitter.com\/kjbee3\/status\/663726917346918401","display_url":"twitter.com\/kjbee3\/status\/\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/yjaSCOYLp6","expanded_url":"http:\/\/twitter.com\/TUNAyyyNaMAMON\/status\/663727294129811456","display_url":"twitter.com\/TUNAyyyNaMAMON\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911794688,"id_str":"663728227911794688","text":"Ted Purdy - par on hole 17 +1 (-6): T44th","source":"\u003ca href=\"http:\/\/www.zbmcintyre.com\" rel=\"nofollow\"\u003ePar Poster\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3282417674,"id_str":"3282417674","name":"PGA Pars","screen_name":"PGAPars","location":null,"url":null,"description":"For serious players only. Tweeting every par on the PGA Tour.","protected":false,"verified":false,"followers_count":76,"friends_count":4,"listed_count":6,"favourites_count":0,"statuses_count":48841,"created_at":"Fri Jul 17 12:49:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622025608676020224\/0yysXlQK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622025608676020224\/0yysXlQK_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878240257,"id_str":"663728227878240257","text":"RT @ReyjayReyjay: Follow @ImYayaDub Pampa GoodVibes ang mga tweets! :))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":775385838,"id_str":"775385838","name":"Funny Pinoy Quotes","screen_name":"FunnyPinoyQuote","location":"United Influencers","url":"http:\/\/facebook.com\/FunnyPinoyQuote","description":"Life is better when you\u2019re laughing. Follow us for \u2014 Pinoy Quotes, Jokes, Patama, Banat \u2022 \u2709\ufe0f contactfunnypinoyquote@gmail.com \u2022 8-23-12","protected":false,"verified":false,"followers_count":649725,"friends_count":234,"listed_count":334,"favourites_count":2303,"statuses_count":72339,"created_at":"Thu Aug 23 07:18:54 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463343034621374464\/g7Na0D7l.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463343034621374464\/g7Na0D7l.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656719972006170625\/IHA88Bze_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656719972006170625\/IHA88Bze_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/775385838\/1424588303","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 14 12:21:21 +0000 2015","id":643399131344568320,"id_str":"643399131344568320","text":"Follow @ImYayaDub Pampa GoodVibes ang mga tweets! :))","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303130320,"id_str":"3303130320","name":"R\u2655","screen_name":"ReyjayReyjay","location":"Tall, Slender, Friendly\u30c4","url":"https:\/\/www.facebook.com\/reyjay.jabines","description":"\u2764100% FollowBack \u2764100% Filipino Have to Advice ? Message me","protected":false,"verified":false,"followers_count":321,"friends_count":530,"listed_count":1,"favourites_count":957,"statuses_count":1711,"created_at":"Sat Aug 01 08:37:41 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655227054833602560\/3Xpo3Ybx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655227054833602560\/3Xpo3Ybx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303130320\/1446253894","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":15,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ImYayaDub","name":"Yaya Dub","id":2493750708,"id_str":"2493750708","indices":[7,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ReyjayReyjay","name":"R\u2655","id":3303130320,"id_str":"3303130320","indices":[3,16]},{"screen_name":"ImYayaDub","name":"Yaya Dub","id":2493750708,"id_str":"2493750708","indices":[25,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227890786304,"id_str":"663728227890786304","text":"\u30b9\u30de\u30b9\u30de\u8352\u308c\u3066\u305f\u6642\n\u3046\u3061\u308b\u308d\u5263\u898b\u3066\u305f\u308fwww\nYouTube\u304b\u306b\u306a\u3063\u3068\n\u3042\u304c\u308b\u3088\u306d\u30fc\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2456369845,"id_str":"2456369845","name":"sy(\uff89)\u2022\u03c9\u2022(\u30fe)\u2661","screen_name":"s__hrn","location":null,"url":null,"description":"\u7d2b\u8000\u304f\u3093\u3086\u308b\u597d\u304dBBA\u2661\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fcNG\n \\E-girls\u2661\u4e09\u4ee3\u76eeJSB\/91Line","protected":false,"verified":false,"followers_count":44,"friends_count":76,"listed_count":0,"favourites_count":164,"statuses_count":4606,"created_at":"Mon Apr 21 09:52:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660823116692635648\/c721EW9I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660823116692635648\/c721EW9I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2456369845\/1423148052","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115660"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895013377,"id_str":"663728227895013377","text":"#1\u3044\u3044\u306d\u3054\u3068\u306b\u30b9\u30c8\u30ec\u30fc\u30c8\u306b\u597d\u304d\u306a\u30bf\u30a4\u30d7\u8a00\u3044\u307e\u3059 \n\u9ed2\u9aea\u306e\u3061\u3087\u3063\u3068\u9577\u3081(\u6975\u5ea6\u306b\u9577\u3044\u306e\u306f\u2715)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2919450613,"id_str":"2919450613","name":"\u5fc3\u611b\u677e","screen_name":"_cocoa_0516","location":null,"url":null,"description":"\u4e2d\u4eac \u6cd52 \u4eac\u30bc\u30df \u6f14\u5287\u90e8\u5287\u56e3\u3044\u304b\u3065\u3061\u97f3\u97ff \u672c\u540d\u3068\u5358\u4f4d\u306f\u9065\u304b\u5f7c\u65b9 \u798f\u5c71\u96c5\u6cbb\/\u67f4\u54b2\u30b3\u30a6\/\u897f\u5cf6\u79c0\u4fca\/\u7af9\u5185\u7d50\u5b50\/SMAP\/V6\/GLAY","protected":false,"verified":false,"followers_count":173,"friends_count":196,"listed_count":0,"favourites_count":192,"statuses_count":1083,"created_at":"Fri Dec 05 09:01:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635432166281777152\/P3g7ogSw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635432166281777152\/P3g7ogSw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2919450613\/1447076343","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1\u3044\u3044\u306d\u3054\u3068\u306b\u30b9\u30c8\u30ec\u30fc\u30c8\u306b\u597d\u304d\u306a\u30bf\u30a4\u30d7\u8a00\u3044\u307e\u3059","indices":[0,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878371328,"id_str":"663728227878371328","text":"RT @itskushbruh: can't hurt my feelings if i don't give a fuck.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3053568550,"id_str":"3053568550","name":"\u264d 12\/28","screen_name":"GoGetta_Kwon","location":null,"url":null,"description":"R.I.P Mommy\u2764 R.I.P Auntie\u2764 R.I.P Chris\u2764\u2757 MissingMyMother\u2764 #TheNextMegaTron got the world on one shoulder & my family\/team on the other\u2757#29 #ReachPride","protected":false,"verified":false,"followers_count":710,"friends_count":546,"listed_count":3,"favourites_count":758,"statuses_count":12711,"created_at":"Sun Feb 22 18:58:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661329415008202752\/Ixchybqy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661329415008202752\/Ixchybqy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:10:55 +0000 2015","id":662376569969598466,"id_str":"662376569969598466","text":"can't hurt my feelings if i don't give a fuck.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1143635312,"id_str":"1143635312","name":"kush","screen_name":"itskushbruh","location":"\u25a0 turn my notifications on \u25a0","url":null,"description":"| @_nxstvlgic | @shiaIabeuof | bless my dms |","protected":false,"verified":false,"followers_count":18009,"friends_count":3554,"listed_count":13,"favourites_count":9234,"statuses_count":16845,"created_at":"Sat Feb 02 23:02:40 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/857806701\/30a58ec7198fe19f8f52915995bd95f0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/857806701\/30a58ec7198fe19f8f52915995bd95f0.jpeg","profile_background_tile":true,"profile_link_color":"FFFFFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662665698888388608\/MK2NP_1u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662665698888388608\/MK2NP_1u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1143635312\/1446237002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2286,"favorite_count":1345,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"itskushbruh","name":"kush","id":1143635312,"id_str":"1143635312","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903475713,"id_str":"663728227903475713","text":"RT @jpadaleckibr: F\u00e3: Dean \u00e9 o irm\u00e3o mais engra\u00e7ado.\nJensen: super orgulhoso de si mesmo.\nF\u00e3: Sam \u00e9 o irm\u00e3o s\u00e9rio.\nJared: seriamente incr\u00edv\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1872309978,"id_str":"1872309978","name":"Caroline || 98","screen_name":"jarpadorable","location":"Losechester's house ","url":"https:\/\/www.pinterest.com\/carolineraquels\/","description":"I just wanted to say that there is help out there and you are NOT alone. @jarpad #AlwaysKeepFighting || Jessica \u2764","protected":false,"verified":false,"followers_count":2334,"friends_count":1447,"listed_count":10,"favourites_count":6564,"statuses_count":28958,"created_at":"Mon Sep 16 17:01:50 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662297097710907392\/wGPBmSCN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662297097710907392\/wGPBmSCN.jpg","profile_background_tile":true,"profile_link_color":"CDB79E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663694991282339840\/RGLKruZT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663694991282339840\/RGLKruZT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1872309978\/1447073924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:47:36 +0000 2015","id":663488064279433218,"id_str":"663488064279433218","text":"F\u00e3: Dean \u00e9 o irm\u00e3o mais engra\u00e7ado.\nJensen: super orgulhoso de si mesmo.\nF\u00e3: Sam \u00e9 o irm\u00e3o s\u00e9rio.\nJared: seriamente incr\u00edvel.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":59297933,"id_str":"59297933","name":"Jared Padalecki BR","screen_name":"jpadaleckibr","location":"Brasil","url":"http:\/\/jaredpadalecki.com.br","description":"Twitter do maior fansite do Jared Padalecki no Brasil, no ar desde 2009. Site feito por f\u00e3s, n\u00e3o somos o Jared! We are NOT Jared Padalecki! #AlwaysKeepFighting","protected":false,"verified":false,"followers_count":24239,"friends_count":136,"listed_count":166,"favourites_count":2,"statuses_count":12479,"created_at":"Thu Jul 23 00:03:52 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611368465\/ids2iimf3bw51uop4xa6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611368465\/ids2iimf3bw51uop4xa6.png","profile_background_tile":true,"profile_link_color":"5F9976","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"914444","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619320854430806016\/IQOfOA75_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619320854430806016\/IQOfOA75_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/59297933\/1441847182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":50,"favorite_count":49,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jpadaleckibr","name":"Jared Padalecki BR","id":59297933,"id_str":"59297933","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911766016,"id_str":"663728227911766016","text":"RT @yuki12651: \u3053\u308c\u3092RT\u3057\u305f\u3089\u304a\u91d1\u304c\u8cb0\u3048\u307e\u3059\u3002\n\n\u3044\u307e\u89aa\u304b\u30892000\u5186\u3082\u3089\u3048\u305f\uff01 https:\/\/t.co\/UfqA0TEMGH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3051931218,"id_str":"3051931218","name":"\u3088\u3063\u3061","screen_name":"abc24karats55","location":null,"url":null,"description":"\u81ea\u5206\u306e\u4eba\u751f\u81ea\u5206\u3067\u697d\u3057\u304f\u3002\n\u3044\u3064\u3082\u30c0\u30eb\u7740\u3067\u3059\u3002\u3059\u3044\u307e\u305b\u3093\u3002\n\u308f\u3063\u3057\u3087\u3044\u308f\u3063\u3057\u3087\u3044\u3002\n\u72c2\u3063\u3066\u304f\u308b\u304f\u3089\u3044\u304c\u4e01\u5ea6\u3044\u3044\u3002","protected":false,"verified":false,"followers_count":239,"friends_count":202,"listed_count":0,"favourites_count":1489,"statuses_count":2540,"created_at":"Sun Mar 01 06:37:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663376062546472960\/fyeYc0Ek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663376062546472960\/fyeYc0Ek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3051931218\/1444819296","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 10:41:42 +0000 2015","id":657869568958828544,"id_str":"657869568958828544","text":"\u3053\u308c\u3092RT\u3057\u305f\u3089\u304a\u91d1\u304c\u8cb0\u3048\u307e\u3059\u3002\n\n\u3044\u307e\u89aa\u304b\u30892000\u5186\u3082\u3089\u3048\u305f\uff01 https:\/\/t.co\/UfqA0TEMGH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2193511363,"id_str":"2193511363","name":"\u306e\u306e","screen_name":"yuki12651","location":"\u9580\u771f","url":null,"description":"\u77e5\u308a\u5408\u3044\u306a\u3089\u30d5\u30a9\u30ed\u8fd4\u3059\u300e\u5927\u962a\u6771\u2192\u4e8c\u5cf6\u2192\u9580 7\u300f\u300c3-3\u5411\u65e5\u8475\u300d\u007b\u300a#\uc608\ub9ac\u300b\u007d[\u53d7\u9a13\u751f]","protected":false,"verified":false,"followers_count":219,"friends_count":57,"listed_count":6,"favourites_count":744,"statuses_count":2595,"created_at":"Thu Nov 14 04:28:48 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661330255655800832\/XlYtJd0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661330255655800832\/XlYtJd0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2193511363\/1446996201","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4823,"favorite_count":562,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657869561618808833,"id_str":"657869561618808833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","url":"https:\/\/t.co\/UfqA0TEMGH","display_url":"pic.twitter.com\/UfqA0TEMGH","expanded_url":"http:\/\/twitter.com\/yuki12651\/status\/657869568958828544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657869561618808833,"id_str":"657869561618808833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","url":"https:\/\/t.co\/UfqA0TEMGH","display_url":"pic.twitter.com\/UfqA0TEMGH","expanded_url":"http:\/\/twitter.com\/yuki12651\/status\/657869568958828544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yuki12651","name":"\u306e\u306e","id":2193511363,"id_str":"2193511363","indices":[3,13]}],"symbols":[],"media":[{"id":657869561618808833,"id_str":"657869561618808833","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","url":"https:\/\/t.co\/UfqA0TEMGH","display_url":"pic.twitter.com\/UfqA0TEMGH","expanded_url":"http:\/\/twitter.com\/yuki12651\/status\/657869568958828544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":657869568958828544,"source_status_id_str":"657869568958828544","source_user_id":2193511363,"source_user_id_str":"2193511363"}]},"extended_entities":{"media":[{"id":657869561618808833,"id_str":"657869561618808833","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSE44XjUwAE35Q1.jpg","url":"https:\/\/t.co\/UfqA0TEMGH","display_url":"pic.twitter.com\/UfqA0TEMGH","expanded_url":"http:\/\/twitter.com\/yuki12651\/status\/657869568958828544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":657869568958828544,"source_status_id_str":"657869568958828544","source_user_id":2193511363,"source_user_id_str":"2193511363"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903520768,"id_str":"663728227903520768","text":"https:\/\/t.co\/nFbZTGkTSG (31) 3773-9185 https:\/\/t.co\/GZF44Q6xaM M0672","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412382310,"id_str":"412382310","name":"Sete Lagoas","screen_name":"SETE_LAGOAS_CIT","location":"Sete Lagoas, Minas Gerais","url":"http:\/\/psicologosetelagoas.com.br","description":"Terapias \/ Terapeutas \/ na cidade de Sete Lagoas","protected":false,"verified":false,"followers_count":151,"friends_count":719,"listed_count":7,"favourites_count":1,"statuses_count":19743,"created_at":"Mon Nov 14 16:26:48 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652820911477903360\/-pxWxRhr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652820911477903360\/-pxWxRhr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412382310\/1444478034","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GZF44Q6xaM","expanded_url":"http:\/\/www.psicologosetelagoas.com.br","display_url":"psicologosetelagoas.com.br","indices":[39,62]}],"user_mentions":[],"symbols":[],"media":[{"id":655681386909728768,"id_str":"655681386909728768","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRlyv1iXAAAmGmi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRlyv1iXAAAmGmi.jpg","url":"https:\/\/t.co\/nFbZTGkTSG","display_url":"pic.twitter.com\/nFbZTGkTSG","expanded_url":"https:\/\/twitter.com\/PatrickWhitmanJ\/status\/655681388738408448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":500,"h":282,"resize":"fit"},"large":{"w":500,"h":282,"resize":"fit"}},"source_status_id":655681388738408448,"source_status_id_str":"655681388738408448","source_user_id":944400270,"source_user_id_str":"944400270"}]},"extended_entities":{"media":[{"id":655681386909728768,"id_str":"655681386909728768","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRlyv1iXAAAmGmi.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRlyv1iXAAAmGmi.jpg","url":"https:\/\/t.co\/nFbZTGkTSG","display_url":"pic.twitter.com\/nFbZTGkTSG","expanded_url":"https:\/\/twitter.com\/PatrickWhitmanJ\/status\/655681388738408448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":500,"h":282,"resize":"fit"},"large":{"w":500,"h":282,"resize":"fit"}},"source_status_id":655681388738408448,"source_status_id_str":"655681388738408448","source_user_id":944400270,"source_user_id_str":"944400270"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895013376,"id_str":"663728227895013376","text":"RT @misolonujyp: \u30df\u30cb\u30aa\u30f3\u53ef\u611b\u3044\u3059\u304e??? https:\/\/t.co\/VGpJxCsYGy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2943938659,"id_str":"2943938659","name":"\u77f3\u4e95\u6dbc","screen_name":"1998Ryoryo","location":null,"url":null,"description":"\u795e\u6238\u5c0f\u2192\u623f\u5357\u4e2d\u2192\u5b89\u623f\u897f\n\u793e\u4f1a\u4eba\u30d0\u30b9\u30b1\u2192unity#10\n\n\n\u30d0\u30b9\u30b1*\u30df\u30cb\u30aa\u30f3*\u30c0\u30a4\u30e4\u306eA\u2192\u5fa1\u5e78\uff0c\u6210\u5bae*\u30cf\u30a4\u30ad\u30e5\u30fc\u2192\u5f71\u5c71,\u4e8c\u53e3*\u30e2\u30f3\u30b9\u30bf\u30fc\u30ba\u30a4\u30f3\u30af\u5927\u597d\u304d\u2762\u3000\u3000\u266104\uff0e12\u2661","protected":false,"verified":false,"followers_count":96,"friends_count":151,"listed_count":0,"favourites_count":370,"statuses_count":323,"created_at":"Fri Dec 26 12:49:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660326626043932672\/THYM6P7J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660326626043932672\/THYM6P7J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2943938659\/1446128041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:14 +0000 2015","id":663720254263029760,"id_str":"663720254263029760","text":"\u30df\u30cb\u30aa\u30f3\u53ef\u611b\u3044\u3059\u304e??? https:\/\/t.co\/VGpJxCsYGy","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2437760582,"id_str":"2437760582","name":"\u304a\u3082\u3057\u308d\uff16\u79d2\u52d5\u753b(\u4fdd\u5b58\u7248)","screen_name":"misolonujyp","location":null,"url":null,"description":"\u8a71\u984c\u306b\u306a\u3063\u3066\u308bvine\u306e\u4eba\u6c17\u52d5\u753b\u3092\u7d39\u4ecb\u3057\u3066\u3044\u304d\u307e\u3059\uff01 \u3061\u3087\u3063\u3068\u3057\u305f\u6687\u306a\u6642\u9593\u3092\u3001\u8c4a\u304b\u306a\u6642\u9593\u306b\uff01(*\u00b4\u03c9\uff40*) \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc&RT\u3057\u3066\u304f\u3060\u3055\u3044\u306d\u266a","protected":false,"verified":false,"followers_count":1814,"friends_count":4998,"listed_count":1,"favourites_count":0,"statuses_count":943,"created_at":"Fri Apr 11 01:35:05 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645145061546528768\/nSm0p_RP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645145061546528768\/nSm0p_RP_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":629479533213659136,"id_str":"629479533213659136","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","url":"https:\/\/t.co\/VGpJxCsYGy","display_url":"pic.twitter.com\/VGpJxCsYGy","expanded_url":"http:\/\/twitter.com\/byshun0627\/status\/629479619654062080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":629479619654062080,"source_status_id_str":"629479619654062080","source_user_id":2917385078,"source_user_id_str":"2917385078"}]},"extended_entities":{"media":[{"id":629479533213659136,"id_str":"629479533213659136","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","url":"https:\/\/t.co\/VGpJxCsYGy","display_url":"pic.twitter.com\/VGpJxCsYGy","expanded_url":"http:\/\/twitter.com\/byshun0627\/status\/629479619654062080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":629479619654062080,"source_status_id_str":"629479619654062080","source_user_id":2917385078,"source_user_id_str":"2917385078","video_info":{"aspect_ratio":[16,9],"duration_millis":23367,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/pl\/0ClrhsLbVwWn-8Bf.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/pl\/0ClrhsLbVwWn-8Bf.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/640x360\/bF-ggIvlX4jqO9XB.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/640x360\/bF-ggIvlX4jqO9XB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/320x180\/DAxEKVpu9zGQW62K.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"misolonujyp","name":"\u304a\u3082\u3057\u308d\uff16\u79d2\u52d5\u753b(\u4fdd\u5b58\u7248)","id":2437760582,"id_str":"2437760582","indices":[3,15]}],"symbols":[],"media":[{"id":629479533213659136,"id_str":"629479533213659136","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","url":"https:\/\/t.co\/VGpJxCsYGy","display_url":"pic.twitter.com\/VGpJxCsYGy","expanded_url":"http:\/\/twitter.com\/byshun0627\/status\/629479619654062080\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":629479619654062080,"source_status_id_str":"629479619654062080","source_user_id":2917385078,"source_user_id_str":"2917385078"}]},"extended_entities":{"media":[{"id":629479533213659136,"id_str":"629479533213659136","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629479533213659136\/pu\/img\/UClOpb1qYfu7iBhM.jpg","url":"https:\/\/t.co\/VGpJxCsYGy","display_url":"pic.twitter.com\/VGpJxCsYGy","expanded_url":"http:\/\/twitter.com\/byshun0627\/status\/629479619654062080\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":629479619654062080,"source_status_id_str":"629479619654062080","source_user_id":2917385078,"source_user_id_str":"2917385078","video_info":{"aspect_ratio":[16,9],"duration_millis":23367,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/pl\/0ClrhsLbVwWn-8Bf.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/pl\/0ClrhsLbVwWn-8Bf.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/640x360\/bF-ggIvlX4jqO9XB.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/640x360\/bF-ggIvlX4jqO9XB.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629479533213659136\/pu\/vid\/320x180\/DAxEKVpu9zGQW62K.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911901184,"id_str":"663728227911901184","text":"Gostei de um v\u00eddeo @YouTube de @inemafoo https:\/\/t.co\/Q1Wa5IDvKr MINECRAFT: Hackers no EGG WARS! (Ft. Franguinho113) \u2039 #Mafoo \u203a","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3720333137,"id_str":"3720333137","name":"Djames#BREAKMEN","screen_name":"djames_ribeiro","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":84,"friends_count":217,"listed_count":0,"favourites_count":3200,"statuses_count":3137,"created_at":"Sun Sep 20 18:42:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663393732151132160\/kNEaFMwP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663393732151132160\/kNEaFMwP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3720333137\/1446221836","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Mafoo","indices":[119,125]}],"urls":[{"url":"https:\/\/t.co\/Q1Wa5IDvKr","expanded_url":"http:\/\/youtu.be\/3BjdIFcwwZk?a","display_url":"youtu.be\/3BjdIFcwwZk?a","indices":[41,64]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[19,27]},{"screen_name":"Inemafoo","name":"Inemafoo - #MF200K","id":393684734,"id_str":"393684734","indices":[31,40]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911778304,"id_str":"663728227911778304","text":"@Cuticle0106 \u795e\u3005\u3057\u3044\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718767898157056,"in_reply_to_status_id_str":"663718767898157056","in_reply_to_user_id":2872896733,"in_reply_to_user_id_str":"2872896733","in_reply_to_screen_name":"Cuticle0106","user":{"id":3178775730,"id_str":"3178775730","name":"\u9752\u306e\u4e09\u53f7\uff20\u30a4\u30eb\u30fc\u30caW1","screen_name":"aono3go","location":null,"url":null,"description":"\u30a4\u30eb\u30fc\u30ca\u6226\u8a18\uff20\u30d1\u30eb\u30eb\u3067\u7d76\u8cdb\u6d3b\u52d5\u4e2d\uff01\u300c\u9ce5\u8cb4\u65cf\u300d\u300c\u4e32\u5c4b\u6a2a\u4e01\u300d\u300c\u3089\u3042\u3081\u3093\u82b1\u6708\u5d50\u300d\u3092\u5168\u529b\u3067\u5fdc\u63f4\u3057\u307e\u3059\uff01\u30a4\u30eb\u30fc\u30ca\u57a2\u306a\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u306f\u30a4\u30eb\u30fc\u30ca\u9650\u5b9a\u3068\u3055\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":125,"friends_count":121,"listed_count":2,"favourites_count":193,"statuses_count":5059,"created_at":"Wed Apr 29 03:14:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639763368803373056\/ETUuR5QS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639763368803373056\/ETUuR5QS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178775730\/1432483105","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cuticle0106","name":"*\u685c@\u30a4\u30eb\u30fc\u30caW1","id":2872896733,"id_str":"2872896733","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895001094,"id_str":"663728227895001094","text":"@Neighbor_NEWT \uadf8\ub0e5 \ub180\uba74\ub428","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727936323751937,"in_reply_to_status_id_str":"663727936323751937","in_reply_to_user_id":3679353020,"in_reply_to_user_id_str":"3679353020","in_reply_to_screen_name":"Neighbor_NEWT","user":{"id":4158721514,"id_str":"4158721514","name":"\uc81c\uc774\ucf65","screen_name":"JacobBlack_tl","location":null,"url":null,"description":"2015.11.8~ \/ \ud2b8\uc640\uc77c\ub77c\uc787 \uae30\ubc18\/ 20\uc0b4 \/ \uc120\uba58\uc158\uc8fc\uba74 \ub9de\ud314 \n\ub098\ub294 \ub110 \ub5a0\ub098\ubcf4\ub0b4\uc9c0 \ubabb\ud574, \uc9c0\uae08 \uc544\ub2c8 \uc601\uc6d0\ud788 (\u2665@nessie_cb)","protected":false,"verified":false,"followers_count":11,"friends_count":6,"listed_count":1,"favourites_count":22,"statuses_count":274,"created_at":"Sat Nov 07 16:07:44 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663682661114769408\/FtZT3Ed7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663682661114769408\/FtZT3Ed7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4158721514\/1447061740","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Neighbor_NEWT","name":"\uc606\uc9d1 \ub274\ud2b8","id":3679353020,"id_str":"3679353020","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895087104,"id_str":"663728227895087104","text":"Amk asosyal \u00f6k\u00fcz\u00fc adam sohbet etmeye \u00e7al\u0131\u015f\u0131yor surat\u0131 bir kar\u0131\u015f he evet h\u0131 h\u0131 diyor","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":601186094,"id_str":"601186094","name":"Fo Fo -273.16","screen_name":"fofoe99","location":null,"url":null,"description":"TL","protected":false,"verified":false,"followers_count":251,"friends_count":174,"listed_count":1,"favourites_count":2547,"statuses_count":13811,"created_at":"Wed Jun 06 18:33:46 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544628919232495622\/d3Nwex7e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544628919232495622\/d3Nwex7e.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622897212490706944\/jnXTZezh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622897212490706944\/jnXTZezh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/601186094\/1443418183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227882434560,"id_str":"663728227882434560","text":"@1206Minmin \u304a\u3084\u3059\u307f\u307f\u30fc\u3061\u3083\u3093\uff3c(^o^)\uff0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727956095725568,"in_reply_to_status_id_str":"663727956095725568","in_reply_to_user_id":3109272618,"in_reply_to_user_id_str":"3109272618","in_reply_to_screen_name":"1206Minmin","user":{"id":2756533998,"id_str":"2756533998","name":"\u771f\u306f\u3089\u30da\u30fc\u30cb\u30e7\u3002@\u306b\u3083\u3093\u5f71","screen_name":"chacha4848","location":"\u95a2\u6771\u4f4f\u307f\u2605\u30ea\u30a2\u53cb\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\u30b4\u30e1\u30f3\u30b4\u30e1\u30f3\u30b4","url":null,"description":"\u30d8\u30c3\u30c0\u30fc\u30a2\u30a4\u30b3\u30f3\u81ea\u4f5c\u2605\u2606\u7518\u83d3\u5b50\/\u30e8\u30fc\u30de\u30e8\u30cd\u30fc\u30ba\/\u58f0\u512a\/\u30a2\u30cb\u30e1\u30a2\u30cb\u30e1\/\u7d75\u63cf\u304d\/\u6b4c\u3044\u624b\/\u30ad\u30e3\u30b9\u4e3b\/\u597d\u304d\u2605\u305f\u307e\u306b\u30ad\u30c1\u30ac\u30a4\u2192CAS\u4e3b\u4f4e\u30af\u30aa\u58f0\u512a\u4f3c\u7df4\u7fd2\u4e2d\u4e3b\u2605\u304a\u5225\u308c\u306f\u30d6\u30ed\u30c3\u30af\u3067\u270b\u305f\u307e\u306b\u7d75\u63cf\u3044\u3066\u308b\u270b\u2606\u2605\u2192\u300a\u3010http:\/\/twpf.jp\/chacha4848\u3011\u300b\u2190\u30c4\u30a4\u30d7\u30ed\u2190 \u7d75\u57a2\u2192\u3010@fox_1234cha\u3011","protected":false,"verified":false,"followers_count":1257,"friends_count":1145,"listed_count":31,"favourites_count":8745,"statuses_count":7776,"created_at":"Fri Aug 22 21:35:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658300359836766208\/6n_LQZbx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658300359836766208\/6n_LQZbx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2756533998\/1446465331","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1206Minmin","name":"\u307f\u307f\u307f","id":3109272618,"id_str":"3109272618","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115658"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227882405888,"id_str":"663728227882405888","text":"RT @zeecinema: Watch #PhirHeraPheri\u00a0in 1 hour & answer questions from the film on Twitter, every 30 minutes !","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2749783381,"id_str":"2749783381","name":"girijakriz","screen_name":"girija_kriz","location":"Bangalore","url":null,"description":null,"protected":false,"verified":false,"followers_count":1365,"friends_count":1976,"listed_count":49,"favourites_count":19403,"statuses_count":103183,"created_at":"Wed Aug 20 17:34:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663377927107575808\/VTvAW5Pw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663377927107575808\/VTvAW5Pw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2749783381\/1445534652","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:21 +0000 2015","id":663710218878980096,"id_str":"663710218878980096","text":"Watch #PhirHeraPheri\u00a0in 1 hour & answer questions from the film on Twitter, every 30 minutes !","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":49540430,"id_str":"49540430","name":"Zee Cinema","screen_name":"zeecinema","location":"India","url":"http:\/\/www.zeecinema.com","description":"Launched in 1995 and showcasing more than 3,500 films of leading Bollywood superstars, Zee Cinema, is the No.1 Hindi movie destination on TV.","protected":false,"verified":true,"followers_count":45550,"friends_count":489,"listed_count":107,"favourites_count":8396,"statuses_count":22732,"created_at":"Mon Jun 22 04:50:39 +0000 2009","utc_offset":19800,"time_zone":"Mumbai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656348864031551488\/pDMk2Zo0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656348864031551488\/pDMk2Zo0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49540430\/1447009835","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":13,"entities":{"hashtags":[{"text":"PhirHeraPheri","indices":[6,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PhirHeraPheri","indices":[21,35]}],"urls":[],"user_mentions":[{"screen_name":"zeecinema","name":"Zee Cinema","id":49540430,"id_str":"49540430","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115658"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903500288,"id_str":"663728227903500288","text":"RT @5SOSTumblrx: michael shouldn't be allowed at wembley anymore rt if u agree","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":64043731,"id_str":"64043731","name":"SandraWoofs","screen_name":"SandraWoof","location":"Czech Republic","url":"http:\/\/sanboo-woof.tumblr.com\/","description":"Czech fangirl 21. Curently obssessed w the 100, ChicagoFire , SPN + Arrow, Flash\u26a1 and I like that aussie 5SOS band","protected":false,"verified":false,"followers_count":1282,"friends_count":2008,"listed_count":10,"favourites_count":2397,"statuses_count":6587,"created_at":"Sat Aug 08 21:15:40 +0000 2009","utc_offset":3600,"time_zone":"Prague","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661993133060849664\/EtTzGE0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661993133060849664\/EtTzGE0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/64043731\/1446664784","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:30:14 +0000 2015","id":663513893130506241,"id_str":"663513893130506241","text":"michael shouldn't be allowed at wembley anymore rt if u agree","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2687627611,"id_str":"2687627611","name":"5SOS TUMBLR POSTS \u2728","screen_name":"5SOSTumblrx","location":"Croatia | UK | AUS","url":"http:\/\/letsgobackto1975.tumblr.com","description":"Three girls here to make you smile \u2764 TWEETS ARE EITHER FROM TUMBLR OR WE CREATE THEM!","protected":false,"verified":false,"followers_count":158922,"friends_count":6726,"listed_count":423,"favourites_count":20088,"statuses_count":19778,"created_at":"Mon Jul 28 14:02:29 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"hr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661283771895934977\/3rosjBW7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661283771895934977\/3rosjBW7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2687627611\/1446497310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":913,"favorite_count":609,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOSTumblrx","name":"5SOS TUMBLR POSTS \u2728","id":2687627611,"id_str":"2687627611","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227894976512,"id_str":"663728227894976512","text":"\u307e\u3060\u7d0d\u8c46\u5dfb\u304d\u304c2\u3064\u3082\u6b8b\u3063\u3066\u3066\u3081\u3061\u3083\u304f\u3061\u3083\u306f\u3057\u3083\u3044\u3067\u3057\u307e\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2467798519,"id_str":"2467798519","name":"\u3046\u3089","screen_name":"om_2207","location":null,"url":null,"description":"\u604b\u306e\u5fae\u71b1","protected":false,"verified":false,"followers_count":148,"friends_count":94,"listed_count":2,"favourites_count":447,"statuses_count":22981,"created_at":"Mon Apr 28 13:54:06 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653103973193244672\/zixv_5w4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653103973193244672\/zixv_5w4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467798519\/1444547094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878313984,"id_str":"663728227878313984","text":"RT @Niallhotspice: How soon is soon??? #EndOfTheDay #4DaysUntilMITAM https:\/\/t.co\/fxomQWY2MC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2168520408,"id_str":"2168520408","name":"H\u00f8ran","screen_name":"ForeverHoran__","location":"ask.fm\/Safiyax3","url":null,"description":"Even if you aren't a Niall girl, you are a Niall girl","protected":false,"verified":false,"followers_count":588,"friends_count":709,"listed_count":1,"favourites_count":134,"statuses_count":3344,"created_at":"Fri Nov 01 14:20:55 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432126171367473153\/tXD9S7iX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432126171367473153\/tXD9S7iX.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642559289094090752\/x4F6knR5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642559289094090752\/x4F6knR5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2168520408\/1442031584","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:39 +0000 2015","id":663720357531136004,"id_str":"663720357531136004","text":"How soon is soon??? #EndOfTheDay #4DaysUntilMITAM https:\/\/t.co\/fxomQWY2MC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2195662063,"id_str":"2195662063","name":"Jesslina","screen_name":"Niallhotspice","location":"Johannesburg, South Africa.","url":null,"description":"All my favorite conversations always Made in the AM","protected":false,"verified":false,"followers_count":2792,"friends_count":1701,"listed_count":3,"favourites_count":809,"statuses_count":12172,"created_at":"Fri Nov 15 09:12:24 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606171439948021761\/7BkzQWze.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606171439948021761\/7BkzQWze.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652821226503585792\/GLmo2gSV_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652821226503585792\/GLmo2gSV_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2195662063\/1442239795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663716009912627200,"quoted_status_id_str":"663716009912627200","quoted_status":{"created_at":"Mon Nov 09 13:53:22 +0000 2015","id":663716009912627200,"id_str":"663716009912627200","text":"#EndOfTheDay's coming soon. Pre-order your copy of #MadeInTheAm to get it! https:\/\/t.co\/qYEj3RwRVN\nhttps:\/\/t.co\/cGzP2U51bM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":209708391,"id_str":"209708391","name":"One Direction","screen_name":"onedirection","location":"London","url":"http:\/\/www.onedirectionmusic.com","description":"1D's NEW album Made in the A.M. is available to pre-order now: http:\/\/smarturl.it\/1DmitamDXiT | PERFECT: http:\/\/smarturl.it\/1DPerfect","protected":false,"verified":true,"followers_count":25648651,"friends_count":3931,"listed_count":66280,"favourites_count":244,"statuses_count":9062,"created_at":"Fri Oct 29 19:05:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/646352252500865024\/SiMKd1xv.jpg","profile_background_tile":false,"profile_link_color":"D60808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647504492756993\/JsPnbO9y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/209708391\/1442936887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[0,12]},{"text":"MadeInTheAm","indices":[51,63]}],"urls":[{"url":"https:\/\/t.co\/qYEj3RwRVN","expanded_url":"http:\/\/smarturl.it\/1DmitamDXiT","display_url":"smarturl.it\/1DmitamDXiT","indices":[75,98]},{"url":"https:\/\/t.co\/cGzP2U51bM","expanded_url":"https:\/\/amp.twimg.com\/v\/cb2a24e9-1959-411d-ba8c-9277c90aff24","display_url":"amp.twimg.com\/v\/cb2a24e9-195\u2026","indices":[99,122]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":6,"favorite_count":3,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[20,32]},{"text":"4DaysUntilMITAM","indices":[34,50]}],"urls":[{"url":"https:\/\/t.co\/fxomQWY2MC","expanded_url":"https:\/\/twitter.com\/onedirection\/status\/663716009912627200","display_url":"twitter.com\/onedirection\/s\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EndOfTheDay","indices":[39,51]},{"text":"4DaysUntilMITAM","indices":[53,69]}],"urls":[{"url":"https:\/\/t.co\/fxomQWY2MC","expanded_url":"https:\/\/twitter.com\/onedirection\/status\/663716009912627200","display_url":"twitter.com\/onedirection\/s\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"Niallhotspice","name":"Jesslina","id":2195662063,"id_str":"2195662063","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227907604481,"id_str":"663728227907604481","text":"@RNP__D \u306f\u3088\u3053\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724277082886144,"in_reply_to_status_id_str":"663724277082886144","in_reply_to_user_id":1162029156,"in_reply_to_user_id_str":"1162029156","in_reply_to_screen_name":"RNP__D","user":{"id":594239169,"id_str":"594239169","name":"\u3057\u3082\u3069\u30fc\u3093","screen_name":"shimodooon","location":null,"url":null,"description":"\u5b89\u82b8\u5e9c\u2192\u4fee\u9053\u5546\u7d4c","protected":false,"verified":false,"followers_count":365,"friends_count":351,"listed_count":3,"favourites_count":2599,"statuses_count":16077,"created_at":"Wed May 30 00:25:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652840628955426816\/P_LzJGjL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652840628955426816\/P_LzJGjL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/594239169\/1443507461","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RNP__D","name":"FURUI KOKI","id":1162029156,"id_str":"1162029156","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115664"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895148544,"id_str":"663728227895148544","text":"We don't know how the mom got a #gun in the #hospital. There are #signs posted.\nSigns stop guns?\nhttps:\/\/t.co\/YyhguRL9pn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1690908734,"id_str":"1690908734","name":"Sarah Collett","screen_name":"sjc317","location":"Indiana","url":null,"description":"Love God, my husband, kids & grandkids, dogs, justice, nature, science, medicine, being an advocate for my autistic kids & common sense","protected":false,"verified":false,"followers_count":268,"friends_count":853,"listed_count":18,"favourites_count":1478,"statuses_count":2019,"created_at":"Thu Aug 22 12:15:25 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483603123613614080\/BbBff-B7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483603123613614080\/BbBff-B7_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1690908734\/1377531377","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"gun","indices":[32,36]},{"text":"hospital","indices":[44,53]},{"text":"signs","indices":[65,71]}],"urls":[{"url":"https:\/\/t.co\/YyhguRL9pn","expanded_url":"http:\/\/fox59.com\/2015\/11\/08\/police-mother-child-dead-in-apparent-murder-suicide-at-childrens-hospital\/","display_url":"fox59.com\/2015\/11\/08\/pol\u2026","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878371330,"id_str":"663728227878371330","text":"Only the truly intelligent girls of this planet see through a guys bullshit.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":170788283,"id_str":"170788283","name":"Spen","screen_name":"spen_james","location":"Central Park West, NYC","url":null,"description":"24, English. Columbia Law. Professional sarcastic bastard. Jet. Gator. Red Devil.","protected":false,"verified":false,"followers_count":5415,"friends_count":370,"listed_count":11,"favourites_count":2507,"statuses_count":51787,"created_at":"Sun Jul 25 19:35:34 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/639509255\/ryn8sqq42lg7pom87qj6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/639509255\/ryn8sqq42lg7pom87qj6.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661636573889449984\/0b8hiDCj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661636573889449984\/0b8hiDCj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/170788283\/1434039026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911790592,"id_str":"663728227911790592","text":"@Ryosuke_fairies \n\u78ba\u304b\u306b\u611b\u77e5\u3060\u3057\u306dw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726896614502400,"in_reply_to_status_id_str":"663726896614502400","in_reply_to_user_id":1253946092,"in_reply_to_user_id_str":"1253946092","in_reply_to_screen_name":"Ryosuke_fairies","user":{"id":1029854094,"id_str":"1029854094","name":"\u30b7\u30e2\u30c6\u30a3\u30fc\u2606\u3072\u3082\u3058\u3044","screen_name":"shimogne","location":"\u5c71\u53e3\u9060\u5f81\u4e2d \u821e\u6d5c\u304c10\u4ee3\u6700\u5f8c\u306e\u65e5","url":null,"description":"\u3061\u3087\u308d\u30b9\u30ea\u30fc\u2606\u30cf\u30fc\u30c8\u30b1\u30c1\u30e3\u2606\u30f2\u30bf\u30af\u9b42\u3001\u85e4\u7530\u62c5 \/Fairies\/\u85e4\u7530\u307f\u308a\u3042\/\u8eca\u306f\u30aa\u30ec\u30f3\u30b8\u306e86\/\u304d\u3063\u305f\u306d\u3047\u30c4\u30a4\u30fc\u30c8\u3059\u307f\u307e\u305b\u3093\/NEXT\u219211\/22,23,12\/26","protected":false,"verified":false,"followers_count":1371,"friends_count":595,"listed_count":16,"favourites_count":10125,"statuses_count":17656,"created_at":"Sun Dec 23 04:42:58 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545406479990784\/75uNqavf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545406479990784\/75uNqavf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1029854094\/1444215568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ryosuke_fairies","name":"RYOSUKE@\u30cf\u30ea\u30fc\u3055\u3093","id":1253946092,"id_str":"1253946092","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227882393601,"id_str":"663728227882393601","text":"RT @Bo2Brtf: DjeX\u30af\u30e9\u30f3\u52df\u96c6\u3057\u3066\u307e\u3059\uff01\u30af\u30e9\u30e1\u30f3\u306espm\u306f390~460\u4ee3\u3067\u3059\u307f\u3093\u306a\u697d\u3057\u304f\u30ef\u30a4\u30ef\u30a4\u3084\u3063\u3066\u307e\u3059\u6642\u306b\u306f\u30ac\u30c1\u3067\u9023\u52dd\u72d9\u3063\u305f\u308a\u3057\u307e\u3059Skype.line.\u30dd\u30c3\u30d7\u30b3 \u30fc\u30f3.\u304c\u3067\u304d\u308b\u65b9\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01\n\u30ea\u30d7\u3001\uff24\uff2d\u306b\u9023\u52dd\u304a\u9858\u3044\u3057\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3838747639,"id_str":"3838747639","name":"\u308a\u308a\u30fc","screen_name":"zLilly_","location":null,"url":null,"description":"PSID zLilly_ CODlove\n\u30d5\u30a9\u30ed\u30d0100\uff05","protected":false,"verified":false,"followers_count":35,"friends_count":202,"listed_count":0,"favourites_count":0,"statuses_count":14,"created_at":"Fri Oct 09 17:39:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652576186409730048\/xuWkZqgY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652576186409730048\/xuWkZqgY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3838747639\/1445609068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:53:25 +0000 2015","id":663595225542082560,"id_str":"663595225542082560","text":"DjeX\u30af\u30e9\u30f3\u52df\u96c6\u3057\u3066\u307e\u3059\uff01\u30af\u30e9\u30e1\u30f3\u306espm\u306f390~460\u4ee3\u3067\u3059\u307f\u3093\u306a\u697d\u3057\u304f\u30ef\u30a4\u30ef\u30a4\u3084\u3063\u3066\u307e\u3059\u6642\u306b\u306f\u30ac\u30c1\u3067\u9023\u52dd\u72d9\u3063\u305f\u308a\u3057\u307e\u3059Skype.line.\u30dd\u30c3\u30d7\u30b3 \u30fc\u30f3.\u304c\u3067\u304d\u308b\u65b9\u3067\u304a\u9858\u3044\u3057\u307e\u3059\uff01\n\u30ea\u30d7\u3001\uff24\uff2d\u306b\u9023\u52dd\u304a\u9858\u3044\u3057\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3861178454,"id_str":"3861178454","name":"\u30e9\u30d7DjeX@BO2\u57a2","screen_name":"Bo2Brtf","location":"\u65e5\u672c \u6771\u4eac\u90fd","url":null,"description":"\u30c9\u30df\u30cd\u30af\u30e9\u30f3\u4f5c\u308a\u307e\u3057\u305f\uff01\u30c9\u30df\u30cd\u7d4c\u9a13\u8005\u521d\u5fc3\u8005\u3068\u306f\u305a\u52df\u96c6\u3057\u3066\u307e\u3059Skype\u3001\u30e9\u30a4\u30f3\u3067\u304d\u308b\u304b\u305f\u3067\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u30d5\u30ec\u30f3\u30c9\u3082\u52df\u96c6\u3057\u3066\u307e\u3059\u306e\u3067\u826f\u3051\u308c\u3070DM\u3001\u30ea\u30d7\u3088\u308d\u3057\u304f\u3067\u3059\uff01\nPSID rapurapu--LOVE Skype rapurapushun","protected":false,"verified":false,"followers_count":48,"friends_count":84,"listed_count":0,"favourites_count":16,"statuses_count":42,"created_at":"Sun Oct 11 18:27:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653937077780807680\/1PQ8nIR9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653937077780807680\/1PQ8nIR9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3861178454\/1444745722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bo2Brtf","name":"\u30e9\u30d7DjeX@BO2\u57a2","id":3861178454,"id_str":"3861178454","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115658"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903475712,"id_str":"663728227903475712","text":"Guten Morgen Stiven_Greilich, ich hoffe du hast sch\u00f6n geschlafen. https:\/\/t.co\/MCQS3jcS5u","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3616037295,"id_str":"3616037295","name":"Guten Morgen","screen_name":"GutenMorgenBot","location":null,"url":null,"description":"Jeder Mensch hat das Anrecht auf einen guten Morgen. Hauptaccount: @HerzlichBot","protected":false,"verified":false,"followers_count":682,"friends_count":2,"listed_count":19,"favourites_count":1,"statuses_count":134551,"created_at":"Fri Sep 11 03:06:40 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642173180048764929\/5S0LN0IF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642173180048764929\/5S0LN0IF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663667473775009792,"quoted_status_id_str":"663667473775009792","quoted_status":{"created_at":"Mon Nov 09 10:40:30 +0000 2015","id":663667473775009792,"id_str":"663667473775009792","text":"Guten Morgen SoloQ https:\/\/t.co\/zQDAJM7PXE","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3292564846,"id_str":"3292564846","name":"Just Johnny","screen_name":"LPGjustJohnny","location":"Germany","url":null,"description":"Ehemaliger top 100 League of Legends Spieler | deutscher Caster | Excel-Pro | Youtube-Neuling","protected":false,"verified":false,"followers_count":1850,"friends_count":44,"listed_count":3,"favourites_count":168,"statuses_count":565,"created_at":"Thu May 21 05:54:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601265117808951296\/TdmC7EPc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601265117808951296\/TdmC7EPc_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663667472625700864,"id_str":"663667472625700864","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSDNLWEAAEs78.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSDNLWEAAEs78.png","url":"https:\/\/t.co\/zQDAJM7PXE","display_url":"pic.twitter.com\/zQDAJM7PXE","expanded_url":"http:\/\/twitter.com\/LPGjustJohnny\/status\/663667473775009792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":311,"h":194,"resize":"fit"},"large":{"w":311,"h":194,"resize":"fit"},"medium":{"w":311,"h":194,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663667472625700864,"id_str":"663667472625700864","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXSDNLWEAAEs78.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXSDNLWEAAEs78.png","url":"https:\/\/t.co\/zQDAJM7PXE","display_url":"pic.twitter.com\/zQDAJM7PXE","expanded_url":"http:\/\/twitter.com\/LPGjustJohnny\/status\/663667473775009792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":311,"h":194,"resize":"fit"},"large":{"w":311,"h":194,"resize":"fit"},"medium":{"w":311,"h":194,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MCQS3jcS5u","expanded_url":"http:\/\/twitter.com\/Stiven_Greilich\/status\/663726157678977024","display_url":"twitter.com\/Stiven_Greilic\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227882430465,"id_str":"663728227882430465","text":"the boys' happiness @MnetMAMA is also my happiness #EXO their pains and heartaches #CALLMEBABY we endure and overcome it #2015MAMA together","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2645505073,"id_str":"2645505073","name":"jenny [hiatus]\u0784","screen_name":"kyungsoolmate","location":"EXO \u25d8 17 \u25d8 Apink \u25d8 Day6 ","url":"http:\/\/www.asianfanfics.com\/profile\/view\/950609","description":"EXO and EXO-L will never fall apart 'cos we fit together like two pieces of a broken heart \u2661","protected":false,"verified":false,"followers_count":1456,"friends_count":518,"listed_count":2,"favourites_count":5210,"statuses_count":32535,"created_at":"Mon Jul 14 13:40:50 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626014135981989888\/FX2S1zJw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626014135981989888\/FX2S1zJw.jpg","profile_background_tile":false,"profile_link_color":"C6E2EE","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641935972091867136\/UJ8nWkRf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641935972091867136\/UJ8nWkRf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2645505073\/1446469010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[51,55]},{"text":"CALLMEBABY","indices":[83,94]},{"text":"2015MAMA","indices":[121,130]}],"urls":[],"user_mentions":[{"screen_name":"MnetMAMA","name":"MAMA(\uc5e0\ub137\uc544\uc2dc\uc548\ubba4\uc9c1\uc5b4\uc6cc\uc988)","id":128487133,"id_str":"128487133","indices":[20,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115658"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227894988800,"id_str":"663728227894988800","text":"RT @hstar_mu: \u3010\u7b2c4\u5e55\u3011\u3053\u3061\u3089\u306e\u30b7\u30fc\u30f3\u304c1\u4f4d\u306e\u969b\u3001\u516c\u958b\u3055\u308c\u308b\u30ad\u30e3\u30e9\u30b3\u30e1\u30f3\u30c8\u306f\u3010\u90a3\u96ea\u3068\u6708\u7687\u3011\u4e00\u90e8\u629c\u7c8b\u300e\u90a3\u96ea\u300c\u7dca\u5f35\u3059\u308b\u3088\uff5e\u300d\u6708\u7687\u300cteam\u67ca\u306f\u9854\u99b4\u67d3\u307f\u3082\u3044\u308b\u3060\u308d\u3046\uff1f\u305d\u308c\u306b\u4e2d\u5b66\u6642\u4ee3\u306f\u2026\u300d\u300f\u6295\u7968(\u30ea\u30c4\u30a4\u30fc\u30c8)\u671f\u9650\u306f2015\u5e7411\u670816\u65e5(\u6708)23\u6642\u307e\u3067\u266a https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3139939525,"id_str":"3139939525","name":"\u821e\u86cd@\u30cf\u30a4\u30ad\u30e5\u30fc\u4e8c\u671f","screen_name":"oykiam","location":null,"url":null,"description":"\u30bb\u30fc\u30e9\u30fc\u30e0\u30fc\u30f3\u3001cc\u3055\u304f\u3089\u3001\u30de\u30ae\u3001\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\u3001\u4e03\u3064\u306e\u5927\u7f6a\u3001\u9032\u6483\u306e\u5de8\u4eba\u3001\u30a2\u30eb\u30c9\u30ce\u30a2\u2022\u30bc\u30ed\u3001\u7d42\u308f\u308a\u306e\u30bb\u30e9\u30d5\u3001\u6771\u4eac\u55b0\u7a2e\u3001\u30ce\u30e9\u30ac\u30df\u3001\u30b3\u30fc\u30c9\u30ae\u30a2\u30b9\u3001Free!\u3001NARUTO\u3001\u30a8\u30a6\u30ec\u30ab\u30bb\u30d6\u30f3\u3001\u9280\u9b42\u3001\u30a2\u30a4\u30c9\u30ea\u30c3\u30b7\u30e5\u30bb\u30d6\u30f3\u306a\u3069\u306a\u3069...\u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u3001\u30b2\u30fc\u30e0\u5927\u597d\u304d19\u6b73\u3002\u305f\u304f\u3055\u3093\u306e\u4eba\u3068\u4ef2\u826f\u304f\u306a\u3063\u3066\u597d\u304d\u306a\u30a2\u30cb\u30e1\u3001\u6f2b\u753b\u306b\u3064\u3044\u3066\u8a71\u3057\u305f\u3044\uff01","protected":false,"verified":false,"followers_count":683,"friends_count":926,"listed_count":7,"favourites_count":2622,"statuses_count":6419,"created_at":"Sun Apr 05 06:37:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638727046630256640\/NUNYr8Xy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638727046630256640\/NUNYr8Xy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3139939525\/1431001251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:26:06 +0000 2015","id":663724246628089857,"id_str":"663724246628089857","text":"\u3010\u7b2c4\u5e55\u3011\u3053\u3061\u3089\u306e\u30b7\u30fc\u30f3\u304c1\u4f4d\u306e\u969b\u3001\u516c\u958b\u3055\u308c\u308b\u30ad\u30e3\u30e9\u30b3\u30e1\u30f3\u30c8\u306f\u3010\u90a3\u96ea\u3068\u6708\u7687\u3011\u4e00\u90e8\u629c\u7c8b\u300e\u90a3\u96ea\u300c\u7dca\u5f35\u3059\u308b\u3088\uff5e\u300d\u6708\u7687\u300cteam\u67ca\u306f\u9854\u99b4\u67d3\u307f\u3082\u3044\u308b\u3060\u308d\u3046\uff1f\u305d\u308c\u306b\u4e2d\u5b66\u6642\u4ee3\u306f\u2026\u300d\u300f\u6295\u7968(\u30ea\u30c4\u30a4\u30fc\u30c8)\u671f\u9650\u306f2015\u5e7411\u670816\u65e5(\u6708)23\u6642\u307e\u3067\u266a https:\/\/t.co\/wUe8p32TiX","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008818249,"id_str":"3008818249","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","screen_name":"hstar_mu","location":null,"url":"http:\/\/hstar-mu.com\/","description":"\u5b8c\u5168\u30aa\u30ea\u30b8\u30ca\u30eb\u201c\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u201dTV\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3001\u6bce\u9031\u6708\u66dc\u65e5\u653e\u9001\u4e2d\uff01 TOKYO MX 24:00\u301c\/BS11 24:30\u301c\/AT-X 23:30\u301c\/\u5404\u52d5\u753b\u914d\u4fe1\u30b5\u30a4\u30c8 25:00\u4ee5\u964d \u3053\u3061\u3089\u306f\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0fTwitter\u3067\u3059\u266a","protected":false,"verified":false,"followers_count":26325,"friends_count":0,"listed_count":605,"favourites_count":0,"statuses_count":284,"created_at":"Tue Feb 03 05:12:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":422,"favorite_count":297,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724238298157056,"id_str":"663724238298157056","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","url":"https:\/\/t.co\/wUe8p32TiX","display_url":"pic.twitter.com\/wUe8p32TiX","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724246628089857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724238298157056,"id_str":"663724238298157056","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","url":"https:\/\/t.co\/wUe8p32TiX","display_url":"pic.twitter.com\/wUe8p32TiX","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724246628089857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hstar_mu","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","id":3008818249,"id_str":"3008818249","indices":[3,12]}],"symbols":[],"media":[{"id":663724238298157056,"id_str":"663724238298157056","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","url":"https:\/\/t.co\/wUe8p32TiX","display_url":"pic.twitter.com\/wUe8p32TiX","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724246628089857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724246628089857,"source_status_id_str":"663724246628089857","source_user_id":3008818249,"source_user_id_str":"3008818249"}]},"extended_entities":{"media":[{"id":663724238298157056,"id_str":"663724238298157056","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFrZyUEAAYJc0.jpg","url":"https:\/\/t.co\/wUe8p32TiX","display_url":"pic.twitter.com\/wUe8p32TiX","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724246628089857\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724246628089857,"source_status_id_str":"663724246628089857","source_user_id":3008818249,"source_user_id_str":"3008818249"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227899183109,"id_str":"663728227899183109","text":"@andy_denning27 I had this moment last month but bc I'm graduating \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714714770210816,"in_reply_to_status_id_str":"663714714770210816","in_reply_to_user_id":1700455934,"in_reply_to_user_id_str":"1700455934","in_reply_to_screen_name":"andy_denning27","user":{"id":180261993,"id_str":"180261993","name":"Henry Martin","screen_name":"Martin_Perrin","location":"OH \u2708Hawaii\u2708StillH2O","url":null,"description":"HPU cheer alumni and OSU cheer. FTS-ITS PUCG XX-X","protected":false,"verified":false,"followers_count":954,"friends_count":943,"listed_count":3,"favourites_count":8625,"statuses_count":23227,"created_at":"Thu Aug 19 05:34:45 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502165981632819200\/e5PX50yd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502165981632819200\/e5PX50yd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180261993\/1348026521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"andy_denning27","name":"Andy Denning","id":1700455934,"id_str":"1700455934","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115662"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911733248,"id_str":"663728227911733248","text":"RT @skluvluvks: \u3010\u30ad\u30b9\u30d6\u30b5 \u30ed\u30b1\u5730 11\/9\u3011\nAndy Cafe \u6c60\u5c3b\u672c\u5e97\nhttps:\/\/t.co\/ewq189F0Gf https:\/\/t.co\/bDlGDOn61Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2231489058,"id_str":"2231489058","name":"\u30a4\u30dc\u30f3\u30cc","screen_name":"Tweets_Yvonne","location":null,"url":"http:\/\/twpf.jp\/Tweets_Yvonne","description":"(\uff40\u3078\u2032)\u62c5\u2661\u305d\u308c\u3063\u3066\u30c7\u30a3\u30b9\u30c6\u30a3\u30cb\u30fc\u2661\uff0f\u5927\u578b\u72ac\u3063\u307d\u3044\u4eba\u3068\u72ac\u304c\u597d\u304d\u2661\uff0fJr\u3084\u90a6\u697d\u30d0\u30f3\u30c9\u306e\u3053\u3068\u3082\u3064\u3076\u3084\u304d\u307e\u3059\uff0f\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b(\u6328\u62f6\u4e0d\u8981)\uff0f\u6c17\u8efd\u306b\u8cea\u554f\u3057\u3066\u4e0b\u3055\u3044 http:\/\/ask.fm\/Tweets_Yvonne","protected":false,"verified":false,"followers_count":188,"friends_count":117,"listed_count":4,"favourites_count":3210,"statuses_count":19473,"created_at":"Thu Dec 05 13:37:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641653578654838784\/b91BSIdb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641653578654838784\/b91BSIdb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2231489058\/1426905103","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:42 +0000 2015","id":663718861582151680,"id_str":"663718861582151680","text":"\u3010\u30ad\u30b9\u30d6\u30b5 \u30ed\u30b1\u5730 11\/9\u3011\nAndy Cafe \u6c60\u5c3b\u672c\u5e97\nhttps:\/\/t.co\/ewq189F0Gf https:\/\/t.co\/bDlGDOn61Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3228267774,"id_str":"3228267774","name":"\u3042\u304b\u3077\u304f","screen_name":"skluvluvks","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":161,"friends_count":65,"listed_count":0,"favourites_count":157,"statuses_count":4892,"created_at":"Wed May 27 15:16:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631823114062553088\/-RgSsJBA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631823114062553088\/-RgSsJBA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3228267774\/1446825431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":42,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewq189F0Gf","expanded_url":"http:\/\/www.andycafe.com\/sp\/","display_url":"andycafe.com\/sp\/","indices":[31,54]}],"user_mentions":[],"symbols":[],"media":[{"id":663718848848244740,"id_str":"663718848848244740","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718848848244740,"id_str":"663718848848244740","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663718848206520321,"id_str":"663718848206520321","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxqIUwAEv88A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxqIUwAEv88A.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":1024,"h":540,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewq189F0Gf","expanded_url":"http:\/\/www.andycafe.com\/sp\/","display_url":"andycafe.com\/sp\/","indices":[47,70]}],"user_mentions":[{"screen_name":"skluvluvks","name":"\u3042\u304b\u3077\u304f","id":3228267774,"id_str":"3228267774","indices":[3,14]}],"symbols":[],"media":[{"id":663718848848244740,"id_str":"663718848848244740","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663718861582151680,"source_status_id_str":"663718861582151680","source_user_id":3228267774,"source_user_id_str":"3228267774"}]},"extended_entities":{"media":[{"id":663718848848244740,"id_str":"663718848848244740","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxshUsAQrokI.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663718861582151680,"source_status_id_str":"663718861582151680","source_user_id":3228267774,"source_user_id_str":"3228267774"},{"id":663718848206520321,"id_str":"663718848206520321","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAxqIUwAEv88A.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAxqIUwAEv88A.jpg","url":"https:\/\/t.co\/bDlGDOn61Y","display_url":"pic.twitter.com\/bDlGDOn61Y","expanded_url":"http:\/\/twitter.com\/skluvluvks\/status\/663718861582151680\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":316,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":1024,"h":540,"resize":"fit"}},"source_status_id":663718861582151680,"source_status_id_str":"663718861582151680","source_user_id":3228267774,"source_user_id_str":"3228267774"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911798784,"id_str":"663728227911798784","text":"RT @Ppncn: \u0e1e\u0e2d\u0e16\u0e36\u0e07\u0e19\u0e49\u0e2d\u0e07\u0e46 \u0e21.3\u0e02\u0e36\u0e49\u0e19 \u0e21.4 \u0e27\u0e48\u0e32\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07\u0e04\u0e48\u0e30 55555555555555555555555 http:\/\/t.co\/6PMyDDuN3u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1860595459,"id_str":"1860595459","name":"\u0e44\u0e04\u0e2e\u0e38\u0e19\u0e40\u0e17\u0e32\u0e01\u0e30\u0e19\u0e49\u0e2d\u0e07\u0e08\u0e39\u0e25\u0e35\u0e49","screen_name":"Juree_Jureerat","location":null,"url":null,"description":"\u0e40\u0e1b\u0e47\u0e19 \u0e2e\u0e2d\u0e15\u0e40\u0e17\u0e2a \u0e2d\u0e0b\u0e2d. \u0e40\u0e1a\u0e1a\u0e35\u0e49 \u0e42\u0e0b\u0e27\u0e2d\u0e19 \u0e2d\u0e32\u0e01\u0e32\u0e40\u0e0b\u0e48 \u0e44\u0e2d\u0e04\u0e2d\u0e19\u0e19\u0e34\u0e04 VIP Don't give me hope","protected":false,"verified":false,"followers_count":136,"friends_count":536,"listed_count":1,"favourites_count":15680,"statuses_count":9463,"created_at":"Fri Sep 13 13:09:51 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0C54D1","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646652230158802946\/SWrD1QMg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646652230158802946\/SWrD1QMg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1860595459\/1444915460","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Apr 03 03:40:44 +0000 2015","id":583836505107341312,"id_str":"583836505107341312","text":"\u0e1e\u0e2d\u0e16\u0e36\u0e07\u0e19\u0e49\u0e2d\u0e07\u0e46 \u0e21.3\u0e02\u0e36\u0e49\u0e19 \u0e21.4 \u0e27\u0e48\u0e32\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21\u0e19\u0e35\u0e49\u0e40\u0e1b\u0e47\u0e19\u0e08\u0e23\u0e34\u0e07\u0e04\u0e48\u0e30 55555555555555555555555 http:\/\/t.co\/6PMyDDuN3u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":379046230,"id_str":"379046230","name":"\u0e1b\u0e38\u0e48\u0e19","screen_name":"Ppncn","location":null,"url":null,"description":"\u0e2b\u0e31 \u0e27 \u0e43 \u0e08 @Manuchatipjampa","protected":false,"verified":false,"followers_count":1205,"friends_count":310,"listed_count":0,"favourites_count":256,"statuses_count":71645,"created_at":"Sat Sep 24 08:16:21 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/530607655144783872\/6gYiaRp2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/530607655144783872\/6gYiaRp2.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660517959236915200\/eLX2A_MS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660517959236915200\/eLX2A_MS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/379046230\/1446741200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[16.1547904,103.2691904]},"coordinates":{"type":"Point","coordinates":[103.2691904,16.1547904]},"place":{"id":"00a13d1312e806ec","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00a13d1312e806ec.json","place_type":"city","name":"\u0e41\u0e01\u0e48\u0e07\u0e40\u0e25\u0e34\u0e07\u0e08\u0e32\u0e19","full_name":"\u0e41\u0e01\u0e48\u0e07\u0e40\u0e25\u0e34\u0e07\u0e08\u0e32\u0e19, \u0e08.\u0e21\u0e2b\u0e32\u0e2a\u0e32\u0e23\u0e04\u0e32\u0e21","country_code":"TH","country":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","bounding_box":{"type":"Polygon","coordinates":[[[103.253876,16.140632],[103.253876,16.159144],[103.276364,16.159144],[103.276364,16.140632]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":30373,"favorite_count":1738,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":583836503345799168,"id_str":"583836503345799168","indices":[72,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","url":"http:\/\/t.co\/6PMyDDuN3u","display_url":"pic.twitter.com\/6PMyDDuN3u","expanded_url":"http:\/\/twitter.com\/Ppncn\/status\/583836505107341312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":583836503345799168,"id_str":"583836503345799168","indices":[72,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","url":"http:\/\/t.co\/6PMyDDuN3u","display_url":"pic.twitter.com\/6PMyDDuN3u","expanded_url":"http:\/\/twitter.com\/Ppncn\/status\/583836505107341312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ppncn","name":"\u0e1b\u0e38\u0e48\u0e19","id":379046230,"id_str":"379046230","indices":[3,9]}],"symbols":[],"media":[{"id":583836503345799168,"id_str":"583836503345799168","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","url":"http:\/\/t.co\/6PMyDDuN3u","display_url":"pic.twitter.com\/6PMyDDuN3u","expanded_url":"http:\/\/twitter.com\/Ppncn\/status\/583836505107341312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":583836505107341312,"source_status_id_str":"583836505107341312","source_user_id":379046230,"source_user_id_str":"379046230"}]},"extended_entities":{"media":[{"id":583836503345799168,"id_str":"583836503345799168","indices":[83,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CBo0NNzVIAAAg83.jpg","url":"http:\/\/t.co\/6PMyDDuN3u","display_url":"pic.twitter.com\/6PMyDDuN3u","expanded_url":"http:\/\/twitter.com\/Ppncn\/status\/583836505107341312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":583836505107341312,"source_status_id_str":"583836505107341312","source_user_id":379046230,"source_user_id_str":"379046230"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227907538944,"id_str":"663728227907538944","text":"@MsHyejeong93 @sreunghyub udh ngaku aja gk baik kalo bohong","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727069902188545,"in_reply_to_status_id_str":"663727069902188545","in_reply_to_user_id":3799986252,"in_reply_to_user_id_str":"3799986252","in_reply_to_screen_name":"MsHyejeong93","user":{"id":2565423976,"id_str":"2565423976","name":"(ts) jonghoon","screen_name":"AI_Hun94","location":"F[N]C \/\/ AIF","url":null,"description":"[you know who we are , lets roll N Flying] Chahun - Guitarrist - 120794 - i'm not your type cause i'm boring person \u270c - (not following opfoll user dll)","protected":false,"verified":false,"followers_count":1326,"friends_count":1056,"listed_count":4,"favourites_count":47,"statuses_count":5570,"created_at":"Mon May 26 15:09:39 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/521585596053991424\/qt0zs3qh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/521585596053991424\/qt0zs3qh.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699408454680576\/nosDTzB4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699408454680576\/nosDTzB4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2565423976\/1446961922","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MsHyejeong93","name":"Hyedongie\u2605","id":3799986252,"id_str":"3799986252","indices":[0,13]},{"screen_name":"sreunghyub","name":"J.don [SH]","id":2707036165,"id_str":"2707036165","indices":[14,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080115664"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227899322368,"id_str":"663728227899322368","text":"The Goodreads giveaway for THE VIOLINIST OF VENICE ends Friday!\nhttps:\/\/t.co\/HV8xSOLs4c","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2412832183,"id_str":"2412832183","name":"Alyssa Palombo","screen_name":"AlyssInWnderlnd","location":"Buffalo, NY","url":"http:\/\/alyssapalombo.com","description":"Writer and metalhead. Canisius College alum. Debut novel THE VIOLINIST OF VENICE out 12\/15\/15 from St. Martin's Press. Rep'd by @SecretAgentBri (Writers House).","protected":false,"verified":false,"followers_count":607,"friends_count":1123,"listed_count":14,"favourites_count":7245,"statuses_count":3841,"created_at":"Wed Mar 26 16:10:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641296643715956736\/ObcVlFrX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641296643715956736\/ObcVlFrX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2412832183\/1425413609","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/HV8xSOLs4c","expanded_url":"https:\/\/www.goodreads.com\/giveaway\/show\/159470-the-violinist-of-venice-a-story-of-vivaldi","display_url":"goodreads.com\/giveaway\/show\/\u2026","indices":[64,87]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115662"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227899174912,"id_str":"663728227899174912","text":"RT @KodhitHD: \u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e35\u0e49 \u0e15\u0e32\u0e22\u0e41\u0e1b\u0e4a\u0e1b\u0e1b\u0e1b... #CheerUp https:\/\/t.co\/8u14P5VXr9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2311191618,"id_str":"2311191618","name":"JK&me~\u2661","screen_name":"YN_twt","location":"\u2605vkook \u2605 ","url":null,"description":"\u25cf \u0e2d\u0e32\u0e23\u0e4c\u0e21\u0e35\u0e48 \u2661 \u0e1a\u0e31\u0e07\u0e17\u0e31\u0e19 :) | @BTS_twt \u2764 A.R.M.Y TH | \nI love you because you're jeon jungkook \u2661","protected":false,"verified":false,"followers_count":101,"friends_count":255,"listed_count":0,"favourites_count":939,"statuses_count":6978,"created_at":"Sun Jan 26 04:45:16 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506455088454303744\/l9vEecnF.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506455088454303744\/l9vEecnF.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663712235533942785\/jL71FH3A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663712235533942785\/jL71FH3A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2311191618\/1445085094","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:49:44 +0000 2015","id":661872958181281792,"id_str":"661872958181281792","text":"\u0e15\u0e2d\u0e1a\u0e41\u0e17\u0e19\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e19\u0e35\u0e49 \u0e15\u0e32\u0e22\u0e41\u0e1b\u0e4a\u0e1b\u0e1b\u0e1b... #CheerUp https:\/\/t.co\/8u14P5VXr9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2154665286,"id_str":"2154665286","name":"KodhitHD","screen_name":"KodhitHD","location":null,"url":"http:\/\/www.kodhit.com","description":"\u0e15\u0e34\u0e14\u0e15\u0e32\u0e21 \u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23 \u0e0b\u0e35\u0e23\u0e35\u0e48\u0e2a\u0e4c \u0e0b\u0e31\u0e1a\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e43\u0e2b\u0e21\u0e48\u0e46 \u0e1e\u0e39\u0e14\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48\u0e19\u0e35\u0e48\u0e40\u0e25\u0e22\u0e04\u0e48\u0e30 \u0e15\u0e34\u0e14\u0e15\u0e32\u0e21\u0e02\u0e48\u0e32\u0e27\u0e2a\u0e32\u0e23 \u0e2d\u0e31\u0e1e\u0e40\u0e14\u0e17\u0e0b\u0e31\u0e1a\u0e17\u0e35\u0e48 fav. \u0e44\u0e14\u0e49\u0e40\u0e25\u0e22\u0e19\u0e30\u0e04\u0e30","protected":false,"verified":false,"followers_count":127968,"friends_count":8,"listed_count":66,"favourites_count":1033,"statuses_count":2380,"created_at":"Fri Oct 25 11:04:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586782994729275392\/h8dMXx9g.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586782994729275392\/h8dMXx9g.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636738826812026880\/78lyMUrH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636738826812026880\/78lyMUrH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2154665286\/1445951124","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2890,"favorite_count":410,"entities":{"hashtags":[{"text":"CheerUp","indices":[32,40]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661872944201658368,"id_str":"661872944201658368","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","url":"https:\/\/t.co\/8u14P5VXr9","display_url":"pic.twitter.com\/8u14P5VXr9","expanded_url":"http:\/\/twitter.com\/KodhitHD\/status\/661872958181281792\/photo\/1","type":"photo","sizes":{"large":{"w":610,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1007,"resize":"fit"},"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":661872944201658368,"id_str":"661872944201658368","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","url":"https:\/\/t.co\/8u14P5VXr9","display_url":"pic.twitter.com\/8u14P5VXr9","expanded_url":"http:\/\/twitter.com\/KodhitHD\/status\/661872958181281792\/photo\/1","type":"photo","sizes":{"large":{"w":610,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1007,"resize":"fit"},"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CheerUp","indices":[46,54]}],"urls":[],"user_mentions":[{"screen_name":"KodhitHD","name":"KodhitHD","id":2154665286,"id_str":"2154665286","indices":[3,12]}],"symbols":[],"media":[{"id":661872944201658368,"id_str":"661872944201658368","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","url":"https:\/\/t.co\/8u14P5VXr9","display_url":"pic.twitter.com\/8u14P5VXr9","expanded_url":"http:\/\/twitter.com\/KodhitHD\/status\/661872958181281792\/photo\/1","type":"photo","sizes":{"large":{"w":610,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1007,"resize":"fit"},"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661872958181281792,"source_status_id_str":"661872958181281792","source_user_id":2154665286,"source_user_id_str":"2154665286"}]},"extended_entities":{"media":[{"id":661872944201658368,"id_str":"661872944201658368","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9x752U8AAlT4F.jpg","url":"https:\/\/t.co\/8u14P5VXr9","display_url":"pic.twitter.com\/8u14P5VXr9","expanded_url":"http:\/\/twitter.com\/KodhitHD\/status\/661872958181281792\/photo\/1","type":"photo","sizes":{"large":{"w":610,"h":1024,"resize":"fit"},"medium":{"w":600,"h":1007,"resize":"fit"},"small":{"w":340,"h":570,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":661872958181281792,"source_status_id_str":"661872958181281792","source_user_id":2154665286,"source_user_id_str":"2154665286"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080115662"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878240256,"id_str":"663728227878240256","text":"RT @Kissmeyixing: \u0e1e\u0e35\u0e48\u0e04\u0e23\u0e34\u0e2a\u0e23\u0e35\u0e42\u0e1e\u0e2a\u0e2b\u0e19\u0e31\u0e07\u0e0a\u0e34\u0e07 \u0e40\u0e25\u0e22\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e21\u0e35\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e41\u0e22\u0e48\u0e46\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e0a\u0e34\u0e07 \u0e41\u0e15\u0e48\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e44\u0e1b\u0e2b\u0e21\u0e14 \u0e04\u0e33\u0e16\u0e32\u0e21\u0e04\u0e37\u0e2d \u0e43\u0e04\u0e23\u0e25\u0e1a? (10\u0e04\u0e30\u0e41\u0e19\u0e19)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":171066849,"id_str":"171066849","name":"\u0e1e\u0e32\u0e2b\u0e19\u0e39\u0e44\u0e1b\u0e2e\u0e48\u0e2d\u0e07\u0e01\u0e07\u0e2b\u0e19\u0e48\u0e2d\u0e22","screen_name":"beeing_ts","location":null,"url":null,"description":"\u0e15\u0e2d\u0e19\u0e41\u0e23\u0e01\u0e01\u0e47\u0e07\u0e07\u0e27\u0e48\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e2d\u0e30\u0e44\u0e23 \u0e2d\u0e4b\u0e2d \u0e40\u0e1b\u0e47\u0e19\u0e15\u0e34\u0e48\u0e07 \u0e41\u0e21\u0e48\u0e01\u0e47\u0e16\u0e32\u0e21\u0e27\u0e48\u0e32\u0e15\u0e34\u0e48\u0e07\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e08\u0e30\u0e21\u0e35\u0e41\u0e1f\u0e19\u0e44\u0e2b\u0e21\u0e01\u0e47\u0e15\u0e2d\u0e1a\u0e44\u0e1b\u0e27\u0e48\u0e32\u0e2d\u0e4b\u0e2d\u0e14\u0e39\u0e46\u0e43\u0e08\u0e01\u0e31\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e01\u0e31\u0e1a\u0e04\u0e34\u0e21\u0e08\u0e07\u0e2d\u0e34\u0e19 \u0e40\u0e02\u0e32\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e15\u0e48\u0e32\u0e07\u0e0a\u0e32\u0e15\u0e34 \u0e0a\u0e32\u0e15\u0e34\u0e19\u0e35\u0e49\u0e0a\u0e32\u0e15\u0e34\u0e2b\u0e19\u0e49\u0e32\u0e0a\u0e32\u0e15\u0e34\u0e44\u0e2b\u0e19\u0e01\u0e39\u0e01\u0e47\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e40\u0e02\u0e32.","protected":false,"verified":false,"followers_count":400,"friends_count":144,"listed_count":0,"favourites_count":2588,"statuses_count":88696,"created_at":"Mon Jul 26 13:37:25 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"99CCFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595213131481120768\/8pwYxCy6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595213131481120768\/8pwYxCy6.jpg","profile_background_tile":true,"profile_link_color":"CC9966","profile_sidebar_border_color":"10121A","profile_sidebar_fill_color":"96BEFA","profile_text_color":"0E0F0C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658708200976285696\/ENDuT6pK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658708200976285696\/ENDuT6pK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171066849\/1446825843","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:54 +0000 2015","id":663725202920992768,"id_str":"663725202920992768","text":"\u0e1e\u0e35\u0e48\u0e04\u0e23\u0e34\u0e2a\u0e23\u0e35\u0e42\u0e1e\u0e2a\u0e2b\u0e19\u0e31\u0e07\u0e0a\u0e34\u0e07 \u0e40\u0e25\u0e22\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e21\u0e35\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e41\u0e22\u0e48\u0e46\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e0a\u0e34\u0e07 \u0e41\u0e15\u0e48\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e16\u0e39\u0e01\u0e25\u0e1a\u0e44\u0e1b\u0e2b\u0e21\u0e14 \u0e04\u0e33\u0e16\u0e32\u0e21\u0e04\u0e37\u0e2d \u0e43\u0e04\u0e23\u0e25\u0e1a? (10\u0e04\u0e30\u0e41\u0e19\u0e19)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":140302159,"id_str":"140302159","name":"\uc5d8\uac10\u2661","screen_name":"Kissmeyixing","location":"Kris&Lay in the house\u2661","url":null,"description":"\u5174\u8ff7 | FOREVER WITH \u5174\u2661\u6211\u5728\u4f60\u540e\u9762","protected":false,"verified":false,"followers_count":9383,"friends_count":336,"listed_count":14,"favourites_count":8528,"statuses_count":212496,"created_at":"Wed May 05 04:26:44 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610115216005853185\/MvMvaLdA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610115216005853185\/MvMvaLdA.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663320486244290561\/s4XkEgiv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663320486244290561\/s4XkEgiv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/140302159\/1446385744","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":130,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kissmeyixing","name":"\uc5d8\uac10\u2661","id":140302159,"id_str":"140302159","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080115657"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227890794496,"id_str":"663728227890794496","text":"@39pi_ \u307b\u3093\u3068\u306b\u5929\u624d\u304b\u3082","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727532886261760,"in_reply_to_status_id_str":"663727532886261760","in_reply_to_user_id":2905452150,"in_reply_to_user_id_str":"2905452150","in_reply_to_screen_name":"39pi_","user":{"id":3967354392,"id_str":"3967354392","name":"\u306a\u306a\u307f","screen_name":"pyananny","location":"\u30de\u30cb\u30e9","url":null,"description":"\u73fe\u5730\uff08\u30de\u30cb\u30e9\uff09\u304b\u3089\u304a\u5144\u3061\u3083\u3093\u3092\u5fdc\u63f4\u3057\u306b\u304d\u307e\u3057\u305f\u301c\u2661\uff08\uff1f\uff09\u300a @nyapippy \u300b","protected":false,"verified":false,"followers_count":15,"friends_count":27,"listed_count":0,"favourites_count":582,"statuses_count":365,"created_at":"Wed Oct 21 09:00:54 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662307144155295744\/2Os_8l6e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662307144155295744\/2Os_8l6e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3967354392\/1446741304","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"39pi_","name":"\u2600\ufe0f\u2600\ufe0f\u2600\ufe0f\u307f\u3063\u304f\u30fc\u2763\u26c5\ufe0f","id":2905452150,"id_str":"2905452150","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115660"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895091200,"id_str":"663728227895091200","text":"RT MTerclavers: Monday sleepy @ Bariloche, Patagonia, Argentina https:\/\/t.co\/Y2MQ3xwHRx https:\/\/t.co\/McH2pDHWqe","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328635883,"id_str":"3328635883","name":"Camila","screen_name":"camloverme","location":"San Carlos de Bariloche","url":null,"description":"Passionate communicator. Alcohol practitioner. Food lover. Incurable music maven. Problem solver.","protected":false,"verified":false,"followers_count":219,"friends_count":1047,"listed_count":72,"favourites_count":1,"statuses_count":131994,"created_at":"Mon Aug 24 12:21:37 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635789281089339392\/Ux_5EbsP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635789281089339392\/Ux_5EbsP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328635883\/1440419068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y2MQ3xwHRx","expanded_url":"https:\/\/instagram.com\/p\/93hG00Gp7B\/","display_url":"instagram.com\/p\/93hG00Gp7B\/","indices":[64,87]},{"url":"https:\/\/t.co\/McH2pDHWqe","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[88,111]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886632961,"id_str":"663728227886632961","text":"Eai tudo bem? visita meu blog por favor https:\/\/t.co\/arjJBFLHZz e clica em algum anuncio, eu sigo vc depois @nivinhaaa","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562024689,"id_str":"562024689","name":"Luana","screen_name":"Luana_giu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":363,"listed_count":0,"favourites_count":21,"statuses_count":10432,"created_at":"Tue Apr 24 11:28:03 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465988110359068672\/-FOTdqv2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465988110359068672\/-FOTdqv2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/arjJBFLHZz","expanded_url":"http:\/\/www.postmanager.tk\/","display_url":"postmanager.tk","indices":[40,63]}],"user_mentions":[{"screen_name":"nivinhaaa","name":"N\u00edvea","id":263278824,"id_str":"263278824","indices":[109,119]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227899211776,"id_str":"663728227899211776","text":"@_blover_ \uadf8\ub807\ub2e4 \ub09c \uad50\uc591\ubcc0\ud0dc\uac00 \ub420\uac70\uc57c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728103751991296,"in_reply_to_status_id_str":"663728103751991296","in_reply_to_user_id":2937834320,"in_reply_to_user_id_str":"2937834320","in_reply_to_screen_name":"_blover_","user":{"id":2929814084,"id_str":"2929814084","name":"\uac00\uc628\u2190\uc218\ud589\ud3c9\uac00\ud574","screen_name":"gaon5368","location":"\uc804\uae30\uc7a5\ud310\uc774 \uae54\ub9b0 \uce68\ub300 \uc704\uc758 \uc774\ubd88 \uc18d","url":null,"description":"*\uc804\uc6a9 \uac15\ud654\uc911* \ud558\uc774\ud050 \uc804\uc6a9 \uadf8 \uc678\uc5d0\ub3c4 \uc740\ud63c, \ub808\uc774\ub514\ubc84\uadf8, \uc6f9\ud230, \uc790\uce90 \ub4f1\ub4f1 \ud31d\ub2c8\ub2e4. \uc77c\uc0c1\ud2b8\uac00 \ub300\ub2e4\uc218\uae34 \ud558\uc9c0\ub9cc \uac00\ub054 \uadf8\ub9bc\ub3c4 \uadf8\ub9bd\ub2c8\ub2e4.","protected":false,"verified":false,"followers_count":134,"friends_count":173,"listed_count":0,"favourites_count":122,"statuses_count":26558,"created_at":"Sun Dec 14 13:23:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663581039835516928\/1fc_Q4pW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663581039835516928\/1fc_Q4pW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2929814084\/1442918951","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_blover_","name":"\ub9c8\uc74c \ud401\ud401 \ud130\uc9c0\ub294 \ubcf4\ub77c","id":2937834320,"id_str":"2937834320","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080115662"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227907710976,"id_str":"663728227907710976","text":"RT @EuDivaVcPuta: - sou bonito? \n- sim \n- serio? \n- n\u00e3o me fa\u00e7a mentir duas vezes","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2588275632,"id_str":"2588275632","name":"Yasmim","screen_name":"tiadasanacondas","location":"Rio de Janeiro, Brasil","url":null,"description":"@Harry_Styles and @JamesBayMusic \u2764\nSugar-Robin Schulz \u2764","protected":false,"verified":false,"followers_count":1174,"friends_count":1833,"listed_count":2,"favourites_count":2173,"statuses_count":3593,"created_at":"Wed Jun 25 21:58:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663556425612959744\/xJPpuet6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663556425612959744\/xJPpuet6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2588275632\/1447039074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:00:41 +0000 2015","id":662766582901305344,"id_str":"662766582901305344","text":"- sou bonito? \n- sim \n- serio? \n- n\u00e3o me fa\u00e7a mentir duas vezes","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184164106,"id_str":"184164106","name":"Diva","screen_name":"EuDivaVcPuta","location":"Hollywood, FL","url":null,"description":"Seje menas pfvr - \nPublicidades: twitterdivulg@gmail.com","protected":false,"verified":false,"followers_count":445391,"friends_count":90087,"listed_count":109,"favourites_count":3299,"statuses_count":39538,"created_at":"Sat Aug 28 21:28:29 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434117953835921408\/eFfgPLrr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434117953835921408\/eFfgPLrr.png","profile_background_tile":true,"profile_link_color":"EE03DA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620342480031088640\/Fioe2PHh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620342480031088640\/Fioe2PHh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184164106\/1436269644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":175,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EuDivaVcPuta","name":"Diva","id":184164106,"id_str":"184164106","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080115664"} +{"delete":{"status":{"id":663441182320558080,"id_str":"663441182320558080","user_id":2288710322,"user_id_str":"2288710322"},"timestamp_ms":"1447080115812"}} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886567424,"id_str":"663728227886567424","text":"@nyny1432121 \n\n\u76ee\u304c\u771f\u3063\u8d64\u306b\u306a\u308b\u304b\u306aw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728092091801600,"in_reply_to_status_id_str":"663728092091801600","in_reply_to_user_id":3087430411,"in_reply_to_user_id_str":"3087430411","in_reply_to_screen_name":"nyny1432121","user":{"id":3322475245,"id_str":"3322475245","name":"\u3044\u308f\u306a\u304c \u3042\u304a\u3044","screen_name":"Hirano_Tamamori","location":null,"url":null,"description":"\u8d64\u3044\u30ea\u30c3\u30d7\u3068\u30de\u30c3\u30b7\u30e5\u30dc\u30d6 #4mol","protected":false,"verified":false,"followers_count":317,"friends_count":292,"listed_count":0,"favourites_count":1214,"statuses_count":916,"created_at":"Fri Aug 21 14:08:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726339862564864\/S7arSWlC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726339862564864\/S7arSWlC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3322475245\/1447079218","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nyny1432121","name":"\u306b \u3044 \u306a","id":3087430411,"id_str":"3087430411","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227882373120,"id_str":"663728227882373120","text":"@nachaa_17 12\u65e5FUSE\u6765\u3044\u3088\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727878857625600,"in_reply_to_status_id_str":"663727878857625600","in_reply_to_user_id":537725140,"in_reply_to_user_id_str":"537725140","in_reply_to_screen_name":"nachaa_17","user":{"id":3069844880,"id_str":"3069844880","name":"\u3072 \u304b \u308a \uf8ff","screen_name":"mc__d7__o0","location":"\u3075\u304f\u304a\u304b\u306e\u3046\u3048\u306e\u307b\u3046","url":null,"description":"ReVision of Sence\u3068ALBRIGHT KNOT\u3002\u8a73\u3057\u304f\u306f\u30b3\u30c1\u30e9\u21e8\u21e8\u21e8\u3010http:\/\/twpf.jp\/mc__d7__o0\u3011 Next\u219211\/12\u30b9\u30ba\u30ab\u30ef\u30ca\u30a4\u30c8\u5c0f\u5009 11\/18RAD\u80ce\u76e4\u798f\u5ca1 11\/22\u30ea\u30d3\u30b8\u30e7\u30f3\u9ad8\u77e5","protected":false,"verified":false,"followers_count":195,"friends_count":376,"listed_count":7,"favourites_count":1840,"statuses_count":6536,"created_at":"Mon Mar 09 13:47:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660272942404628480\/BG88YJIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660272942404628480\/BG88YJIP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3069844880\/1446258177","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nachaa_17","name":"\u306a\u304e\u3002","id":537725140,"id_str":"537725140","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080115658"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895123968,"id_str":"663728227895123968","text":"Kylie Minogue and James Corden Cover Yazoo Classic \u2018Only You': LISTEN https:\/\/t.co\/MXSjIAIxzK https:\/\/t.co\/Kzwnq1pjMo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2065391,"id_str":"2065391","name":"Towleroad ","screen_name":"tlrd","location":"Everywhere","url":"http:\/\/www.towleroad.com","description":"Towleroad: #1 LGBT news blog... politics, pop and gay culture, music, viral videos, travel, tech, equality issues. 'Influential..must read'- Washington Post","protected":false,"verified":false,"followers_count":56381,"friends_count":521,"listed_count":1851,"favourites_count":461,"statuses_count":57924,"created_at":"Fri Mar 23 23:56:47 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/335296270\/tlrd3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/335296270\/tlrd3.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610555327055032323\/y1c7WpMT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610555327055032323\/y1c7WpMT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2065391\/1402863459","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MXSjIAIxzK","expanded_url":"http:\/\/bit.ly\/20GSlWN","display_url":"bit.ly\/20GSlWN","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663728227396001793,"id_str":"663728227396001793","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTmVWoAEFPeh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTmVWoAEFPeh.jpg","url":"https:\/\/t.co\/Kzwnq1pjMo","display_url":"pic.twitter.com\/Kzwnq1pjMo","expanded_url":"http:\/\/twitter.com\/tlrd\/status\/663728227895123968\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":561,"resize":"fit"},"large":{"w":580,"h":561,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728227396001793,"id_str":"663728227396001793","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTmVWoAEFPeh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTmVWoAEFPeh.jpg","url":"https:\/\/t.co\/Kzwnq1pjMo","display_url":"pic.twitter.com\/Kzwnq1pjMo","expanded_url":"http:\/\/twitter.com\/tlrd\/status\/663728227895123968\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":561,"resize":"fit"},"large":{"w":580,"h":561,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227895001090,"id_str":"663728227895001090","text":"RT @Rayz_lorliann: T_______________________________________T https:\/\/t.co\/CsynjjH8aD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2196140851,"id_str":"2196140851","name":"` \u00b3\u00b9\u00b9\u00b2","screen_name":"pwtrym","location":"\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":"3years.","protected":false,"verified":false,"followers_count":101,"friends_count":249,"listed_count":1,"favourites_count":1814,"statuses_count":15240,"created_at":"Fri Nov 15 15:09:15 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/609195265384288256\/PhsKAiA6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/609195265384288256\/PhsKAiA6.jpg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657635058442891264\/VnOAsDq3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657635058442891264\/VnOAsDq3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2196140851\/1445385320","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:26 +0000 2015","id":663728106188881920,"id_str":"663728106188881920","text":"T_______________________________________T https:\/\/t.co\/CsynjjH8aD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":277025797,"id_str":"277025797","name":"\u0e25\u0e32\u0e01\u0e40\u0e0b\u0e19\u0e40\u0e02\u0e49\u0e32\u0e0b\u0e2d\u0e22","screen_name":"Rayz_lorliann","location":"Thailand-England-Japan","url":"http:\/\/writer.dek-d.com\/a-jame\/story\/view.php?id=1005182","description":"\u0e17\u0e27\u0e34\u0e15\u0e41\u0e1a\u0e1a\u0e40\u0e23\u0e22\u0e4c\u0e19\u0e34\u0e22\u0e21 \u0e43\u0e04\u0e23\u0e44\u0e21\u0e48\u0e19\u0e34\u0e22\u0e21\u0e01\u0e47\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e36\u0e07 ll \u0e15\u0e32\u0e21\u0e15\u0e34\u0e14\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e1f\u0e39\u0e42\u0e1e\u0e44\u0e14\u0e49\u0e17\u0e35\u0e48 Snapchat : Rayz_lorliann","protected":false,"verified":false,"followers_count":11578,"friends_count":511,"listed_count":7,"favourites_count":12933,"statuses_count":143331,"created_at":"Mon Apr 04 15:10:53 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/458738844259454976\/KNTsR3IS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/458738844259454976\/KNTsR3IS.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647672550714019840\/6XGnY_rc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647672550714019840\/6XGnY_rc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/277025797\/1431464558","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728104540540929,"id_str":"663728104540540929","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","url":"https:\/\/t.co\/CsynjjH8aD","display_url":"pic.twitter.com\/CsynjjH8aD","expanded_url":"http:\/\/twitter.com\/Rayz_lorliann\/status\/663728106188881920\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728104540540929,"id_str":"663728104540540929","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","url":"https:\/\/t.co\/CsynjjH8aD","display_url":"pic.twitter.com\/CsynjjH8aD","expanded_url":"http:\/\/twitter.com\/Rayz_lorliann\/status\/663728106188881920\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rayz_lorliann","name":"\u0e25\u0e32\u0e01\u0e40\u0e0b\u0e19\u0e40\u0e02\u0e49\u0e32\u0e0b\u0e2d\u0e22","id":277025797,"id_str":"277025797","indices":[3,17]}],"symbols":[],"media":[{"id":663728104540540929,"id_str":"663728104540540929","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","url":"https:\/\/t.co\/CsynjjH8aD","display_url":"pic.twitter.com\/CsynjjH8aD","expanded_url":"http:\/\/twitter.com\/Rayz_lorliann\/status\/663728106188881920\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663728106188881920,"source_status_id_str":"663728106188881920","source_user_id":277025797,"source_user_id_str":"277025797"}]},"extended_entities":{"media":[{"id":663728104540540929,"id_str":"663728104540540929","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJMcqVEAEpmgF.jpg","url":"https:\/\/t.co\/CsynjjH8aD","display_url":"pic.twitter.com\/CsynjjH8aD","expanded_url":"http:\/\/twitter.com\/Rayz_lorliann\/status\/663728106188881920\/photo\/1","type":"photo","sizes":{"medium":{"w":599,"h":337,"resize":"fit"},"large":{"w":599,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663728106188881920,"source_status_id_str":"663728106188881920","source_user_id":277025797,"source_user_id_str":"277025797"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080115661"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227903545344,"id_str":"663728227903545344","text":"https:\/\/t.co\/c1nLYi6uUB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4147254435,"id_str":"4147254435","name":"\u0645\u062d\u0645\u062f\u0647\u0627\u0634\u0645 \u0633\u0631\u0634\u0627\u0631","screen_name":"sarwarhussainy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":35,"listed_count":0,"favourites_count":0,"statuses_count":7,"created_at":"Mon Nov 09 06:41:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fa","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726609191579648\/dCivpHoU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726609191579648\/dCivpHoU_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727647801806848,"id_str":"663727647801806848","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx3LVEAA6IQ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx3LVEAA6IQ3.jpg","url":"https:\/\/t.co\/c1nLYi6uUB","display_url":"pic.twitter.com\/c1nLYi6uUB","expanded_url":"http:\/\/twitter.com\/sarwarhussainy\/status\/663728227903545344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727647801806848,"id_str":"663727647801806848","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIx3LVEAA6IQ3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIx3LVEAA6IQ3.jpg","url":"https:\/\/t.co\/c1nLYi6uUB","display_url":"pic.twitter.com\/c1nLYi6uUB","expanded_url":"http:\/\/twitter.com\/sarwarhussainy\/status\/663728227903545344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080115663"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227911925761,"id_str":"663728227911925761","text":"There is like 18 Barbz on Kim IHEARTRADIO Performance https:\/\/t.co\/XwRglMlLQc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1567002541,"id_str":"1567002541","name":"QOHH\/R","screen_name":"fIopstar","location":"#BlackLivesMatter","url":null,"description":null,"protected":false,"verified":false,"followers_count":284,"friends_count":86,"listed_count":4,"favourites_count":2385,"statuses_count":6411,"created_at":"Thu Jul 04 00:29:51 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661318022120890368\/VzabkFkF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661318022120890368\/VzabkFkF.jpg","profile_background_tile":true,"profile_link_color":"6600FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663722781725560832\/ZznMEECw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663722781725560832\/ZznMEECw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1567002541\/1446497663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728226917875713,"id_str":"663728226917875713","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTkjXAAEDP5a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTkjXAAEDP5a.jpg","url":"https:\/\/t.co\/XwRglMlLQc","display_url":"pic.twitter.com\/XwRglMlLQc","expanded_url":"http:\/\/twitter.com\/fIopstar\/status\/663728227911925761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728226917875713,"id_str":"663728226917875713","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTkjXAAEDP5a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTkjXAAEDP5a.jpg","url":"https:\/\/t.co\/XwRglMlLQc","display_url":"pic.twitter.com\/XwRglMlLQc","expanded_url":"http:\/\/twitter.com\/fIopstar\/status\/663728227911925761\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080115665"} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227878326273,"id_str":"663728227878326273","text":"https:\/\/t.co\/ppYXjer0HU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58782451,"id_str":"58782451","name":"Reza Hashemi","screen_name":"mygoodgod55","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":281,"friends_count":2762,"listed_count":0,"favourites_count":0,"statuses_count":3888,"created_at":"Tue Jul 21 12:32:13 +0000 2009","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1635070943\/Reza_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1635070943\/Reza_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728225424695296,"id_str":"663728225424695296","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTe_W4AASoW3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTe_W4AASoW3.jpg","url":"https:\/\/t.co\/ppYXjer0HU","display_url":"pic.twitter.com\/ppYXjer0HU","expanded_url":"http:\/\/twitter.com\/mygoodgod55\/status\/663728227878326273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":838,"resize":"fit"},"large":{"w":1024,"h":1430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728225424695296,"id_str":"663728225424695296","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTe_W4AASoW3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTe_W4AASoW3.jpg","url":"https:\/\/t.co\/ppYXjer0HU","display_url":"pic.twitter.com\/ppYXjer0HU","expanded_url":"http:\/\/twitter.com\/mygoodgod55\/status\/663728227878326273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":838,"resize":"fit"},"large":{"w":1024,"h":1430,"resize":"fit"}}},{"id":663728226448097280,"id_str":"663728226448097280","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTizWwAAVWMn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTizWwAAVWMn.jpg","url":"https:\/\/t.co\/ppYXjer0HU","display_url":"pic.twitter.com\/ppYXjer0HU","expanded_url":"http:\/\/twitter.com\/mygoodgod55\/status\/663728227878326273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1425,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}}},{"id":663728226540396544,"id_str":"663728226540396544","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTjJXIAArnEc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTjJXIAArnEc.jpg","url":"https:\/\/t.co\/ppYXjer0HU","display_url":"pic.twitter.com\/ppYXjer0HU","expanded_url":"http:\/\/twitter.com\/mygoodgod55\/status\/663728227878326273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":838,"resize":"fit"},"large":{"w":1024,"h":1430,"resize":"fit"}}},{"id":663728226376810496,"id_str":"663728226376810496","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTiiXAAAaMS9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTiiXAAAaMS9.jpg","url":"https:\/\/t.co\/ppYXjer0HU","display_url":"pic.twitter.com\/ppYXjer0HU","expanded_url":"http:\/\/twitter.com\/mygoodgod55\/status\/663728227878326273\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":473,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1426,"resize":"fit"},"medium":{"w":600,"h":835,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080115657"} +{"delete":{"status":{"id":616554022573453312,"id_str":"616554022573453312","user_id":3059486646,"user_id_str":"3059486646"},"timestamp_ms":"1447080116176"}} +{"delete":{"status":{"id":663336853182021633,"id_str":"663336853182021633","user_id":3311796179,"user_id_str":"3311796179"},"timestamp_ms":"1447080116354"}} +{"delete":{"status":{"id":663728219498115072,"id_str":"663728219498115072","user_id":228341840,"user_id_str":"228341840"},"timestamp_ms":"1447080116353"}} +{"delete":{"status":{"id":616273822103109632,"id_str":"616273822103109632","user_id":388344437,"user_id_str":"388344437"},"timestamp_ms":"1447080116497"}} +{"delete":{"status":{"id":661978125195206656,"id_str":"661978125195206656","user_id":2820258509,"user_id_str":"2820258509"},"timestamp_ms":"1447080116550"}} +{"created_at":"Mon Nov 09 14:41:55 +0000 2015","id":663728227886567425,"id_str":"663728227886567425","text":"vabehwqo\ud834\udd1egd\u00c1bld\u00c1\u00c1\u00c1cmKkh\u00c1xVwt \/ee9J8F https:\/\/t.co\/miX49pMLiG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794657658,"id_str":"794657658","name":"FullyFunctionalPhil","screen_name":"FunctionalPhil","location":null,"url":"http:\/\/books.google.com\/books?id=Nhe2yvx6hP8C&lpg=PT591&ots=K2OAWlZ9kh&dq=fully%20functional%20phil&pg=PT591#v=onepage&q=fully%20functional%20phil&f=false","description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":4,"listed_count":108,"favourites_count":0,"statuses_count":655425,"created_at":"Fri Aug 31 20:57:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2563485689\/Haskell_logo7000_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2563485689\/Haskell_logo7000_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728219095339009,"id_str":"663728219095339009","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTHaUkAE-xmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTHaUkAE-xmO.jpg","url":"https:\/\/t.co\/miX49pMLiG","display_url":"pic.twitter.com\/miX49pMLiG","expanded_url":"http:\/\/twitter.com\/FunctionalPhil\/status\/663728227886567425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728219095339009,"id_str":"663728219095339009","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTHaUkAE-xmO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTHaUkAE-xmO.jpg","url":"https:\/\/t.co\/miX49pMLiG","display_url":"pic.twitter.com\/miX49pMLiG","expanded_url":"http:\/\/twitter.com\/FunctionalPhil\/status\/663728227886567425\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hu","timestamp_ms":"1447080115659"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232081006592,"id_str":"663728232081006592","text":"RT @girlideas: when you take a 10 minute study break and it accidentally lasts the entire year","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":411936728,"id_str":"411936728","name":"sam thomas","screen_name":"sam_thomas2","location":null,"url":null,"description":"hakuna matata\u270c\ufe0f Exodus 14:14","protected":false,"verified":false,"followers_count":587,"friends_count":410,"listed_count":0,"favourites_count":11882,"statuses_count":7978,"created_at":"Mon Nov 14 02:23:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649816456515952640\/wQsA4XCq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649816456515952640\/wQsA4XCq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/411936728\/1432689768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:07 +0000 2015","id":663727772725067776,"id_str":"663727772725067776","text":"when you take a 10 minute study break and it accidentally lasts the entire year","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":131752870,"id_str":"131752870","name":"ok","screen_name":"girlideas","location":null,"url":"http:\/\/howteenagers.com","description":"nap time","protected":false,"verified":false,"followers_count":2144358,"friends_count":100,"listed_count":6129,"favourites_count":2063,"statuses_count":79127,"created_at":"Sun Apr 11 06:28:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/611912446924623872\/MaPBwsp5.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616021426173145089\/XXeqN296_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/131752870\/1429655938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":67,"favorite_count":60,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"girlideas","name":"ok","id":131752870,"id_str":"131752870","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116659"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232102019072,"id_str":"663728232102019072","text":"RT @Iohlita: https:\/\/t.co\/AlHe5eWs4M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2599660904,"id_str":"2599660904","name":"\ub9c8\ub9ac","screen_name":"stormroars","location":"emma","url":null,"description":"\u00ab J'\u00e9cris parce que, de toute fa\u00e7on, je n'ai rien \u00e0 vous dire. \u00bb | sheeran |","protected":false,"verified":false,"followers_count":231,"friends_count":231,"listed_count":6,"favourites_count":1378,"statuses_count":6711,"created_at":"Wed Jul 02 11:13:55 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000011","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660409147742134272\/wkBVYBHe.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660409147742134272\/wkBVYBHe.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663448259835359232\/PG5_CKcn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663448259835359232\/PG5_CKcn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2599660904\/1446028602","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:54:10 +0000 2015","id":663716210261909504,"id_str":"663716210261909504","text":"https:\/\/t.co\/AlHe5eWs4M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323584788,"id_str":"3323584788","name":"l'art imite la vie.","screen_name":"Iohlita","location":null,"url":null,"description":"art \/\u0251\u02d0t\/ noun","protected":false,"verified":false,"followers_count":9223,"friends_count":19,"listed_count":34,"favourites_count":6,"statuses_count":1716,"created_at":"Sat Aug 22 06:57:07 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663233861686444032\/EHDRDz0Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663233861686444032\/EHDRDz0Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323584788\/1447063220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":50,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663716201667801089,"id_str":"663716201667801089","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","url":"https:\/\/t.co\/AlHe5eWs4M","display_url":"pic.twitter.com\/AlHe5eWs4M","expanded_url":"http:\/\/twitter.com\/Iohlita\/status\/663716210261909504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663716201667801089,"id_str":"663716201667801089","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","url":"https:\/\/t.co\/AlHe5eWs4M","display_url":"pic.twitter.com\/AlHe5eWs4M","expanded_url":"http:\/\/twitter.com\/Iohlita\/status\/663716210261909504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Iohlita","name":"l'art imite la vie.","id":3323584788,"id_str":"3323584788","indices":[3,11]}],"symbols":[],"media":[{"id":663716201667801089,"id_str":"663716201667801089","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","url":"https:\/\/t.co\/AlHe5eWs4M","display_url":"pic.twitter.com\/AlHe5eWs4M","expanded_url":"http:\/\/twitter.com\/Iohlita\/status\/663716210261909504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663716210261909504,"source_status_id_str":"663716210261909504","source_user_id":3323584788,"source_user_id_str":"3323584788"}]},"extended_entities":{"media":[{"id":663716201667801089,"id_str":"663716201667801089","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX-XnAUsAEF48O.jpg","url":"https:\/\/t.co\/AlHe5eWs4M","display_url":"pic.twitter.com\/AlHe5eWs4M","expanded_url":"http:\/\/twitter.com\/Iohlita\/status\/663716210261909504\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663716210261909504,"source_status_id_str":"663716210261909504","source_user_id":3323584788,"source_user_id_str":"3323584788"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101974016,"id_str":"663728232101974016","text":"RT @NouraNoman: @M_Alhashimi \u0648\u064a\u0628\u0642\u0649 \u062c\u062f\u0627\u0631 \u0648\u0627\u062d\u062f \u0644\u0645 \u064a\u0633\u0642\u0637 \u0628\u0639\u062f #PalestineUnderAttack","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77210211,"id_str":"77210211","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0647\u0627\u0634\u0645\u064a","screen_name":"M_Alhashimi","location":"Abu Dhabi","url":"http:\/\/molhum.com\/blog","description":"\u0645\u0633\u062a\u0634\u0627\u0631 \u0625\u0639\u0644\u0627\u0645 \u0627\u0633\u062a\u0631\u0627\u062a\u064a\u062c\u064a \u0648\u0645\u062a\u062e\u0635\u0635 \u0641\u064a \u0627\u0644\u062b\u0642\u0627\u0641\u0627\u062a | \u0625\u0635\u062f\u0627\u0631\u064a: https:\/\/t.co\/C0TMFXJCsR \u0627\u0644\u0631\u062a\u0648\u064a\u062a \u0648\u0627\u0644\u0644\u0627\u064a\u0643 \u0633\u062e\u0627\u0641\u0629 \u062a\u0648\u064a\u062a\u0631 \u0644\u0627 \u064a\u0639\u0646\u064a\u0627\u0646 \u0627\u0644\u0645\u0648\u0627\u0641\u0642\u0629 | #\u0645\u0644\u0647\u0645 | #WHUFC #COYI","protected":false,"verified":false,"followers_count":6048,"friends_count":1168,"listed_count":79,"favourites_count":3371,"statuses_count":40144,"created_at":"Fri Sep 25 13:14:50 +0000 2009","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/346408140\/twitterbg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/346408140\/twitterbg.jpg","profile_background_tile":false,"profile_link_color":"0B636F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B81B43","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629588003401302016\/1kjrgyQu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629588003401302016\/1kjrgyQu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77210211\/1348063306","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:15 +0000 2015","id":663727805813956609,"id_str":"663727805813956609","text":"@M_Alhashimi \u0648\u064a\u0628\u0642\u0649 \u062c\u062f\u0627\u0631 \u0648\u0627\u062d\u062f \u0644\u0645 \u064a\u0633\u0642\u0637 \u0628\u0639\u062f #PalestineUnderAttack","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727480784617472,"in_reply_to_status_id_str":"663727480784617472","in_reply_to_user_id":77210211,"in_reply_to_user_id_str":"77210211","in_reply_to_screen_name":"M_Alhashimi","user":{"id":29238281,"id_str":"29238281","name":"\u0646\u0648\u0631\u0629\u0623\u062d\u0645\u062f\u0627\u0644\u0646\u0648\u0645\u0627\u0646","screen_name":"NouraNoman","location":"Sharjah, UAE","url":"http:\/\/no-censorship.blogspot.ae\/","description":"\u0645\u0624\u0644\u0641\u0629 \u0623\u062c\u0648\u0627\u0646(\u062c1) \u0648\u0645\u0627\u0646\u062f\u0627\u0646(\u062c2) \u0633\u0644\u0633\u0644\u0629 \u062e\u064a\u0627\u0644 \u0639\u0644\u0645\u064a \u0628\u0627\u0644\u0644\u063a\u0629\u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0644\u0644\u064a\u0627\u0641\u0639\u064a\u0646. Emirati mother of 6 & author of UAE's 1st Arabic Sci fi series 4 YA, #Ajwan & #Mandan","protected":false,"verified":false,"followers_count":7313,"friends_count":956,"listed_count":100,"favourites_count":1666,"statuses_count":40109,"created_at":"Mon Apr 06 16:48:36 +0000 2009","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"59ACEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587290692185038848\/sKi4iFfy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587290692185038848\/sKi4iFfy.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E9F5D1","profile_text_color":"09257C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3387664605\/8ebc9ebf1ce5c3fdae71d1074bb3ef8b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3387664605\/8ebc9ebf1ce5c3fdae71d1074bb3ef8b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/29238281\/1398326798","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"PalestineUnderAttack","indices":[41,62]}],"urls":[],"user_mentions":[{"screen_name":"M_Alhashimi","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0647\u0627\u0634\u0645\u064a","id":77210211,"id_str":"77210211","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PalestineUnderAttack","indices":[57,78]}],"urls":[],"user_mentions":[{"screen_name":"NouraNoman","name":"\u0646\u0648\u0631\u0629\u0623\u062d\u0645\u062f\u0627\u0644\u0646\u0648\u0645\u0627\u0646","id":29238281,"id_str":"29238281","indices":[3,14]},{"screen_name":"M_Alhashimi","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0647\u0627\u0634\u0645\u064a","id":77210211,"id_str":"77210211","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232081063937,"id_str":"663728232081063937","text":"RT @LumiaEgypt: \u0635\u0648\u0631\u0643 \u0627\u0644\u0633\u064a\u0644\u0641\u0649 \u0647\u062a\u0628\u0642\u0649 \u0623\u062d\u0644\u0649 \u0643\u062a\u064a\u0631 \u0645\u0639 \u0644\u0648\u0645\u064a\u0627 950XL \u0628\u0643\u0627\u0645\u064a\u0631\u0627 \u0623\u0645\u0627\u0645\u064a\u0629 5 \u0645\u064a\u062c\u0627\u0628\u064a\u0643\u0633\u0644! https:\/\/t.co\/lKe5NVUjmc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2506482347,"id_str":"2506482347","name":"sayed etoo","screen_name":"sayedetoo2014","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":5,"listed_count":0,"favourites_count":3,"statuses_count":207,"created_at":"Thu Apr 24 15:59:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/521257305644732416\/e75E86Ls_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/521257305644732416\/e75E86Ls_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2506482347\/1398355278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 18:00:10 +0000 2015","id":662690953858158592,"id_str":"662690953858158592","text":"\u0635\u0648\u0631\u0643 \u0627\u0644\u0633\u064a\u0644\u0641\u0649 \u0647\u062a\u0628\u0642\u0649 \u0623\u062d\u0644\u0649 \u0643\u062a\u064a\u0631 \u0645\u0639 \u0644\u0648\u0645\u064a\u0627 950XL \u0628\u0643\u0627\u0645\u064a\u0631\u0627 \u0623\u0645\u0627\u0645\u064a\u0629 5 \u0645\u064a\u062c\u0627\u0628\u064a\u0643\u0633\u0644! https:\/\/t.co\/lKe5NVUjmc","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161320676,"id_str":"161320676","name":"Lumia Egypt","screen_name":"LumiaEgypt","location":"Egypt","url":null,"description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0633\u0645\u064a\u0629 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0623\u062d\u062f\u062b \u0627\u0644\u0623\u062e\u0628\u0627\u0631 \u0648\u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0648\u0627\u0644\u0622\u0631\u0627\u0621 \u0645\u0646 Microsoft Lumia \u0641\u064a \u0645\u0635\u0631. \u0644\u0644\u062f\u0639\u0645 \u063a\u0631\u062f \u0644 @LumiaEgypt","protected":false,"verified":true,"followers_count":109236,"friends_count":411,"listed_count":172,"favourites_count":150,"statuses_count":6495,"created_at":"Wed Jun 30 15:04:28 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F3920D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535809310656188416\/8bDTpvTU.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535809310656188416\/8bDTpvTU.png","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600729724512391169\/13LgKJDJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600729724512391169\/13LgKJDJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161320676\/1444742071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662260072811274240,"id_str":"662260072811274240","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","url":"https:\/\/t.co\/lKe5NVUjmc","display_url":"pic.twitter.com\/lKe5NVUjmc","expanded_url":"http:\/\/twitter.com\/LumiaEgypt\/status\/662690953858158592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662260072811274240,"id_str":"662260072811274240","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","url":"https:\/\/t.co\/lKe5NVUjmc","display_url":"pic.twitter.com\/lKe5NVUjmc","expanded_url":"http:\/\/twitter.com\/LumiaEgypt\/status\/662690953858158592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LumiaEgypt","name":"Lumia Egypt","id":161320676,"id_str":"161320676","indices":[3,14]}],"symbols":[],"media":[{"id":662260072811274240,"id_str":"662260072811274240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","url":"https:\/\/t.co\/lKe5NVUjmc","display_url":"pic.twitter.com\/lKe5NVUjmc","expanded_url":"http:\/\/twitter.com\/LumiaEgypt\/status\/662690953858158592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":662690953858158592,"source_status_id_str":"662690953858158592","source_user_id":161320676,"source_user_id_str":"161320676"}]},"extended_entities":{"media":[{"id":662260072811274240,"id_str":"662260072811274240","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDSBwTXIAAfm4o.jpg","url":"https:\/\/t.co\/lKe5NVUjmc","display_url":"pic.twitter.com\/lKe5NVUjmc","expanded_url":"http:\/\/twitter.com\/LumiaEgypt\/status\/662690953858158592\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":512,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":662690953858158592,"source_status_id_str":"662690953858158592","source_user_id":161320676,"source_user_id_str":"161320676"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080116659"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072667136,"id_str":"663728232072667136","text":"RT @TaylorTfulks20: \u2728HEART OF THE STAFF\u2728\nComplet 6 Book Series!\nExperience the Magic\u2728\nhttps:\/\/t.co\/a0pbq6LK47\n@Car01am #ASMSG #IARTG https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":465092949,"id_str":"465092949","name":"Journey Productions","screen_name":"JourneyProducti","location":"Dayton Ohio","url":"http:\/\/www.etsy.com\/shop\/JourneyProductions","description":"Our #ETSY shop of #Wedding Gifts, Ornaments, Jewelry, Dollhouses, Knives, & Flasks inspired by our mutual Journey through this fascinating world. We #FOLLOWBACK","protected":false,"verified":false,"followers_count":36938,"friends_count":37204,"listed_count":1152,"favourites_count":19414,"statuses_count":287824,"created_at":"Sun Jan 15 23:33:46 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/482765796\/TwitterBackgroundPicture.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/482765796\/TwitterBackgroundPicture.jpg","profile_background_tile":false,"profile_link_color":"16C777","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2000808465\/1Avatartwitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2000808465\/1Avatartwitter_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/465092949\/1398261431","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:20:17 +0000 2015","id":663662384414859264,"id_str":"663662384414859264","text":"\u2728HEART OF THE STAFF\u2728\nComplet 6 Book Series!\nExperience the Magic\u2728\nhttps:\/\/t.co\/a0pbq6LK47\n@Car01am #ASMSG #IARTG https:\/\/t.co\/AbRuNKscVE","source":"\u003ca href=\"http:\/\/www.tweetjukebox.com\" rel=\"nofollow\"\u003eTweet Jukebox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":855402486,"id_str":"855402486","name":"Taylor Fulks","screen_name":"TaylorTfulks20","location":"Ohio~GO BUCKS","url":"http:\/\/taylorfulks.com","description":"A wife, a mother, a healer, an ATM, a domestic CEO, and passionate writer in Ohio. #Author\u2728AWARD WINNING NOVEL\u2728MY PRISON WITHOUT BARS\u2728#ASMSG #CSAWarrior","protected":false,"verified":false,"followers_count":42862,"friends_count":27892,"listed_count":1486,"favourites_count":66479,"statuses_count":590357,"created_at":"Sun Sep 30 21:54:29 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"214542","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/866198216\/a9481f9f13ec35e9afe5c19f94afbe2e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/866198216\/a9481f9f13ec35e9afe5c19f94afbe2e.jpeg","profile_background_tile":true,"profile_link_color":"6126E0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"3B615D","profile_text_color":"B4D9AD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000238435540\/2ced19344b9beceec22f15f421c132c2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000238435540\/2ced19344b9beceec22f15f421c132c2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/855402486\/1420597360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":1,"entities":{"hashtags":[{"text":"ASMSG","indices":[99,105]},{"text":"IARTG","indices":[106,112]}],"urls":[{"url":"https:\/\/t.co\/a0pbq6LK47","expanded_url":"http:\/\/www.amazon.com\/gp\/product\/B00VKQE9F0?tag=geolinker-20&refRID=NXEKMCJV363X18JM9J8J","display_url":"amazon.com\/gp\/product\/B00\u2026","indices":[66,89]}],"user_mentions":[{"screen_name":"Car01am","name":"Carol Marrs Phipps","id":317871841,"id_str":"317871841","indices":[90,98]}],"symbols":[],"media":[{"id":663662383550722049,"id_str":"663662383550722049","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","url":"https:\/\/t.co\/AbRuNKscVE","display_url":"pic.twitter.com\/AbRuNKscVE","expanded_url":"http:\/\/twitter.com\/TaylorTfulks20\/status\/663662384414859264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663662383550722049,"id_str":"663662383550722049","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","url":"https:\/\/t.co\/AbRuNKscVE","display_url":"pic.twitter.com\/AbRuNKscVE","expanded_url":"http:\/\/twitter.com\/TaylorTfulks20\/status\/663662384414859264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ASMSG","indices":[119,125]},{"text":"IARTG","indices":[126,132]}],"urls":[{"url":"https:\/\/t.co\/a0pbq6LK47","expanded_url":"http:\/\/www.amazon.com\/gp\/product\/B00VKQE9F0?tag=geolinker-20&refRID=NXEKMCJV363X18JM9J8J","display_url":"amazon.com\/gp\/product\/B00\u2026","indices":[86,109]}],"user_mentions":[{"screen_name":"TaylorTfulks20","name":"Taylor Fulks","id":855402486,"id_str":"855402486","indices":[3,18]},{"screen_name":"Car01am","name":"Carol Marrs Phipps","id":317871841,"id_str":"317871841","indices":[110,118]}],"symbols":[],"media":[{"id":663662383550722049,"id_str":"663662383550722049","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","url":"https:\/\/t.co\/AbRuNKscVE","display_url":"pic.twitter.com\/AbRuNKscVE","expanded_url":"http:\/\/twitter.com\/TaylorTfulks20\/status\/663662384414859264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663662384414859264,"source_status_id_str":"663662384414859264","source_user_id":855402486,"source_user_id_str":"855402486"}]},"extended_entities":{"media":[{"id":663662383550722049,"id_str":"663662383550722049","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXNa-5UcAE9XZM.jpg","url":"https:\/\/t.co\/AbRuNKscVE","display_url":"pic.twitter.com\/AbRuNKscVE","expanded_url":"http:\/\/twitter.com\/TaylorTfulks20\/status\/663662384414859264\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663662384414859264,"source_status_id_str":"663662384414859264","source_user_id":855402486,"source_user_id_str":"855402486"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116657"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232106213376,"id_str":"663728232106213376","text":"@FelicityJMiles @AsterHomes Why thank you :-)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727516557946880,"in_reply_to_status_id_str":"663727516557946880","in_reply_to_user_id":2178828402,"in_reply_to_user_id_str":"2178828402","in_reply_to_screen_name":"FelicityJMiles","user":{"id":4149699982,"id_str":"4149699982","name":"Anna Dillon","screen_name":"Anna_AHomes","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":2,"statuses_count":1,"created_at":"Mon Nov 09 14:17:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663728032180498432\/ARbsNIGd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663728032180498432\/ARbsNIGd_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FelicityJMiles","name":"Felicity Miles","id":2178828402,"id_str":"2178828402","indices":[0,15]},{"screen_name":"AsterHomes","name":"Aster Homes","id":887005657,"id_str":"887005657","indices":[16,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116665"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232110432256,"id_str":"663728232110432256","text":"\u3010\u30e2\u30f3\u30b9\u30c8\u3011\u30b9\u30b5\u30ce\u30aa\u3068\u30af\u30b7\u30ca\u30c0\u306e\u592b\u5a66\u306f\u306a\u3093\u3067\u3053\u3093\u306a\u306b\u5dee\u304c\u3042\u308b\u3093\u3060\u308d\u3046\u306a https:\/\/t.co\/c3Qfg6mlpH","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303695142,"id_str":"3303695142","name":"\u30e2\u30f3\u30b9\u30c8\u901f\u5831News","screen_name":"monstsokuhounew","location":null,"url":null,"description":"\u3010\u30e2\u30f3\u30b9\u30c8\u3011\u30a2\u30f3\u30c6\u30ca\u30b5\u30a4\u30c8\u3000\u30e2\u30f3\u30b9\u30c8\u901f\u5831News\u3067\u30e2\u30f3\u30b9\u30c8\u306e\u6700\u65b0\u60c5\u5831\u3084\u30e2\u30f3\u30b9\u30c8\u30cd\u30bf\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\uff01\u30b5\u30a4\u30c8\u306f\u30b3\u30c1\u30e9\u2192http:\/\/monsuto-sokuhounews.antenam.jp\/","protected":false,"verified":false,"followers_count":1930,"friends_count":2746,"listed_count":0,"favourites_count":1,"statuses_count":1073,"created_at":"Sun Aug 02 00:16:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627636695408644097\/ry1BdAS0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627636695408644097\/ry1BdAS0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303695142\/1438475155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c3Qfg6mlpH","expanded_url":"http:\/\/ift.tt\/1L6oew8","display_url":"ift.tt\/1L6oew8","indices":[36,59]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116666"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072638464,"id_str":"663728232072638464","text":"Jylaitt: Et la vue du bureau n'est pas cr\u00e9dible pour un 9 novembre #pointmeteo #paris #pointlafindumondeestproche https:\/\/t.co\/vtyyIYF5PY","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130956173,"id_str":"3130956173","name":"Relax In Paris","screen_name":"RelaxInParis","location":"Paris, Ile-de-France","url":"http:\/\/www.RelaxInNetwork.com","description":"Relax In Paris. Enjoy the Amazing Sights and Attractions. We're here 2 RT your tweets.\u00a0Follow me & we follow back.","protected":false,"verified":false,"followers_count":2498,"friends_count":881,"listed_count":1432,"favourites_count":8,"statuses_count":153400,"created_at":"Wed Apr 01 04:13:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586643280345092096\/gQDn5nvW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586643280345092096\/gQDn5nvW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3130956173\/1428701630","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"pointmeteo","indices":[67,78]},{"text":"paris","indices":[79,85]},{"text":"pointlafindumondeestproche","indices":[86,113]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728038299979776,"id_str":"663728038299979776","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIl5WUAAoOxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIl5WUAAoOxF.jpg","url":"https:\/\/t.co\/vtyyIYF5PY","display_url":"pic.twitter.com\/vtyyIYF5PY","expanded_url":"http:\/\/twitter.com\/Jylaitt\/status\/663728039931592704\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663728039931592704,"source_status_id_str":"663728039931592704","source_user_id":114462763,"source_user_id_str":"114462763"}]},"extended_entities":{"media":[{"id":663728038299979776,"id_str":"663728038299979776","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIl5WUAAoOxF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIl5WUAAoOxF.jpg","url":"https:\/\/t.co\/vtyyIYF5PY","display_url":"pic.twitter.com\/vtyyIYF5PY","expanded_url":"http:\/\/twitter.com\/Jylaitt\/status\/663728039931592704\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":447,"resize":"fit"},"large":{"w":1024,"h":764,"resize":"fit"},"small":{"w":340,"h":253,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663728039931592704,"source_status_id_str":"663728039931592704","source_user_id":114462763,"source_user_id_str":"114462763"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080116657"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232106209280,"id_str":"663728232106209280","text":"RT @hiTETAS: maquillarse es opcional, vos sos due\u00f1a de tu cuerpo. que nadie te diga que tenes que hacer, ni como ten\u00e9s que hacerlo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":560172753,"id_str":"560172753","name":"luz","screen_name":"xMrsMafiax","location":"alma muerta en un cuerpo vivo","url":null,"description":"snap: luchi_borda\nig: luchii_borda\n1526433215","protected":false,"verified":false,"followers_count":625,"friends_count":275,"listed_count":3,"favourites_count":6355,"statuses_count":28506,"created_at":"Sun Apr 22 05:58:24 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490634360005988352\/MzGHsW5q.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490634360005988352\/MzGHsW5q.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649982445643800576\/HZ1iJRiB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649982445643800576\/HZ1iJRiB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/560172753\/1443802819","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:14:01 +0000 2015","id":663706106644922368,"id_str":"663706106644922368","text":"maquillarse es opcional, vos sos due\u00f1a de tu cuerpo. que nadie te diga que tenes que hacer, ni como ten\u00e9s que hacerlo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2935939979,"id_str":"2935939979","name":"tu tio hetor","screen_name":"hiTETAS","location":"jujuylandia","url":"http:\/\/bby1995.tumblr.com\/","description":"guee tanto lo tuyo","protected":false,"verified":false,"followers_count":2080,"friends_count":543,"listed_count":5,"favourites_count":6341,"statuses_count":10573,"created_at":"Sun Dec 21 21:55:46 +0000 2014","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663109596953894912\/VUTeWD-D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663109596953894912\/VUTeWD-D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2935939979\/1446339450","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiTETAS","name":"tu tio hetor","id":2935939979,"id_str":"2935939979","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080116665"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232093487105,"id_str":"663728232093487105","text":"\u0938\u0930\u0915\u093e\u0930\u0940 \u0938\u0902\u092f\u0928\u094d\u0924\u094d\u0930 \u092a\u0930\u093f\u091a\u093e\u0932\u0928 \u092e\u093e\u0930\u094d\u092b\u0924 \u092c\u094d\u092f\u093e\u092a\u094d\u0924 \u0915\u093e\u0932\u094b\u092c\u091c\u093e\u0930\u0940 \u0928\u093f\u092f\u0928\u094d\u0924\u094d\u0930\u0923 \u0917\u0930\u094d\u0928 \u0928\u0938\u0915\u094d\u0928\u0941 \u0938\u0930\u0915\u093e\u0930\u0915\u094b \u0915\u093e\u0930\u094d\u092f \u0905\u0938\u092b\u0932\u0924\u093e \u0939\u094b\u0964","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76596840,"id_str":"76596840","name":"DIE4GOONER\u2122\u00ae","screen_name":"Die4gooner","location":null,"url":null,"description":"Buddy, do not judge me before you know me, but just to inform you, you won\u2019t know me all through your life !! An Interrogation mark is always there.","protected":false,"verified":false,"followers_count":3594,"friends_count":381,"listed_count":17,"favourites_count":942,"statuses_count":34425,"created_at":"Wed Sep 23 08:52:23 +0000 2009","utc_offset":20700,"time_zone":"Kathmandu","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/535313989098418176\/rkbqPQrU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/535313989098418176\/rkbqPQrU.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662132391272538113\/lyXNSCDR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662132391272538113\/lyXNSCDR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76596840\/1416411281","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ne","timestamp_ms":"1447080116662"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072658944,"id_str":"663728232072658944","text":"\u0641\u064a\u0644\u0645 \u0633\u0643\u0633 \u0645\u062d\u0627\u0631\u0645 \u0645\u0635\u0631\u0649 \u0644\u0634\u0627\u0628 \n \nhttps:\/\/t.co\/Jdz3ZC8u5n\nhttps:\/\/t.co\/IKpuQBSXfd","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3220081997,"id_str":"3220081997","name":"Laya Balentyne","screen_name":"rudigynilupo","location":"Flagstaff, AZ","url":null,"description":"SP is a brand & a character. THIS is the personal acct, KCR speaking directly, for now. All tweets are my own & retweets most certainly mean endorsements.\u2026","protected":false,"verified":false,"followers_count":250,"friends_count":1916,"listed_count":0,"favourites_count":0,"statuses_count":60,"created_at":"Wed Apr 29 03:03:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618138722698031104\/yF9TRv_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618138722698031104\/yF9TRv_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3220081997\/1436070892","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jdz3ZC8u5n","expanded_url":"http:\/\/goo.gl\/2wH6N1","display_url":"goo.gl\/2wH6N1","indices":[29,52]},{"url":"https:\/\/t.co\/IKpuQBSXfd","expanded_url":"http:\/\/sco.lt\/4nzy5Z","display_url":"sco.lt\/4nzy5Z","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080116657"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232093499393,"id_str":"663728232093499393","text":"\ud558\uc774\ud30c\uc774\ube0c\uac00 \uc758\uae30\uc18c\uce68\ud558\uba74 \ub85c\uc6b0\ud30c\uc774\ube0c(\ube14\ub77d\uac10","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4167129373,"id_str":"4167129373","name":"\ud2f0\uc544","screen_name":"tia_cofo","location":null,"url":null,"description":"\uc2a4\uc6b0 \uc624\ub108 \ud2f0\uc544","protected":false,"verified":false,"followers_count":24,"friends_count":24,"listed_count":0,"favourites_count":58,"statuses_count":240,"created_at":"Sun Nov 08 10:15:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663300302049677312\/hAqDcL7S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663300302049677312\/hAqDcL7S_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080116662"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072482816,"id_str":"663728232072482816","text":"RT @brattybunny: new clip - Chastity Cage Anal Fun @iWantClips https:\/\/t.co\/tB6DGfXtqX https:\/\/t.co\/QnZZsypWny","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":487107338,"id_str":"487107338","name":"A View from Below","screen_name":"Onmyknees4Her","location":"Vancouver","url":"http:\/\/kneelbeforeyourgoddess.com","description":"I exist to promote & serve beautiful Goddesses. My blog is devoted to featuring & reviewing their amazing erotic work. Please RT if you like","protected":false,"verified":false,"followers_count":3945,"friends_count":366,"listed_count":63,"favourites_count":34264,"statuses_count":63218,"created_at":"Thu Feb 09 00:50:27 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"BA0F4D","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522199680977891328\/j6IDMXog_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522199680977891328\/j6IDMXog_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/487107338\/1406857804","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:00:59 +0000 2015","id":663582030219911168,"id_str":"663582030219911168","text":"new clip - Chastity Cage Anal Fun @iWantClips https:\/\/t.co\/tB6DGfXtqX https:\/\/t.co\/QnZZsypWny","source":"\u003ca href=\"https:\/\/www.iwantclips.com\" rel=\"nofollow\"\u003eiWantClips\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36763659,"id_str":"36763659","name":"Bunny","screen_name":"brattybunny","location":"New York","url":"http:\/\/amzn.com\/w\/2ZN45SD95TCIN","description":"It's Never Enough! I'm a greedy BRAT that takes money from weak submissive men. I dare you to fall in love. Email: BrattyJBunny@gmail.com","protected":false,"verified":false,"followers_count":23440,"friends_count":396,"listed_count":145,"favourites_count":4292,"statuses_count":20276,"created_at":"Thu Apr 30 20:31:41 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615973232781365248\/NTk_SZiU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615973232781365248\/NTk_SZiU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36763659\/1414199766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":8,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tB6DGfXtqX","expanded_url":"https:\/\/iwantclips.com\/store\/item\/58321","display_url":"iwantclips.com\/store\/item\/583\u2026","indices":[46,69]}],"user_mentions":[{"screen_name":"iWantClips","name":"iWantClips","id":1979484936,"id_str":"1979484936","indices":[34,45]}],"symbols":[],"media":[{"id":663582029150220289,"id_str":"663582029150220289","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","url":"https:\/\/t.co\/QnZZsypWny","display_url":"pic.twitter.com\/QnZZsypWny","expanded_url":"http:\/\/twitter.com\/brattybunny\/status\/663582030219911168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":540,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663582029150220289,"id_str":"663582029150220289","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","url":"https:\/\/t.co\/QnZZsypWny","display_url":"pic.twitter.com\/QnZZsypWny","expanded_url":"http:\/\/twitter.com\/brattybunny\/status\/663582030219911168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":540,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tB6DGfXtqX","expanded_url":"https:\/\/iwantclips.com\/store\/item\/58321","display_url":"iwantclips.com\/store\/item\/583\u2026","indices":[63,86]}],"user_mentions":[{"screen_name":"brattybunny","name":"Bunny","id":36763659,"id_str":"36763659","indices":[3,15]},{"screen_name":"iWantClips","name":"iWantClips","id":1979484936,"id_str":"1979484936","indices":[51,62]}],"symbols":[],"media":[{"id":663582029150220289,"id_str":"663582029150220289","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","url":"https:\/\/t.co\/QnZZsypWny","display_url":"pic.twitter.com\/QnZZsypWny","expanded_url":"http:\/\/twitter.com\/brattybunny\/status\/663582030219911168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":540,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663582030219911168,"source_status_id_str":"663582030219911168","source_user_id":36763659,"source_user_id_str":"36763659"}]},"extended_entities":{"media":[{"id":663582029150220289,"id_str":"663582029150220289","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWEVvbU8AE4lbJ.png","url":"https:\/\/t.co\/QnZZsypWny","display_url":"pic.twitter.com\/QnZZsypWny","expanded_url":"http:\/\/twitter.com\/brattybunny\/status\/663582030219911168\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":540,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663582030219911168,"source_status_id_str":"663582030219911168","source_user_id":36763659,"source_user_id_str":"36763659"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116657"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232089284608,"id_str":"663728232089284608","text":"\u307c\u304f\u300c\uff73\uff9e\uff73\uff9e\uff73\uff9e\uff73\uff9e\uff73\uff9e\uff73\uff9e\u300d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2505776407,"id_str":"2505776407","name":"\u5927\u5929\u4f7f\u30a2\u30b9\u30ab\u30a8\u30eb","screen_name":"Spiritual_ask","location":null,"url":null,"description":"\u30d1\u30c1\u30f3\u30b3\u4f9d\u5b58\u75c7\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u60c5\u7dd2\u3082\u4e0d\u5b89\u5b9a\u306b\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u306e\u3067\u8ab0\u304b\u52a9\u3051\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":399,"friends_count":288,"listed_count":6,"favourites_count":30269,"statuses_count":62976,"created_at":"Sun May 18 23:13:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662257182688215040\/smMYx9D6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662257182688215040\/smMYx9D6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2505776407\/1445792323","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116661"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232093609984,"id_str":"663728232093609984","text":"#StatusQuoUnitedAgainstPTI \n#StatusQuoUnitedAgainstPTI \nPTI will win InShaAllah\u270c\ufe0f\n\nNomyPti https:\/\/t.co\/2414S5NM1U","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314080651,"id_str":"3314080651","name":"Zarri Alvi","screen_name":"Nadipti","location":null,"url":null,"description":"17 Years Old,Imaginer, Dreamer,Die Hard Fan of @ImrankhanPTI \u2665\u2665\u2665 #Islamabad #PTI #IK #SocialMediaActivist #Fashion #Nails #PakArmy #TeamIK","protected":false,"verified":false,"followers_count":3618,"friends_count":2380,"listed_count":9,"favourites_count":26,"statuses_count":21370,"created_at":"Thu Aug 13 05:19:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637972421123768321\/c-OhBSJo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637972421123768321\/c-OhBSJo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314080651\/1446029973","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"StatusQuoUnitedAgainstPTI","indices":[0,26]},{"text":"StatusQuoUnitedAgainstPTI","indices":[28,54]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726086979588098,"id_str":"663726086979588098","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHXAqUEAIg13u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHXAqUEAIg13u.jpg","url":"https:\/\/t.co\/2414S5NM1U","display_url":"pic.twitter.com\/2414S5NM1U","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726095858987009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"},"large":{"w":600,"h":452,"resize":"fit"}},"source_status_id":663726095858987009,"source_status_id_str":"663726095858987009","source_user_id":1422198260,"source_user_id_str":"1422198260"}]},"extended_entities":{"media":[{"id":663726086979588098,"id_str":"663726086979588098","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHXAqUEAIg13u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHXAqUEAIg13u.jpg","url":"https:\/\/t.co\/2414S5NM1U","display_url":"pic.twitter.com\/2414S5NM1U","expanded_url":"http:\/\/twitter.com\/PakistaniMN\/status\/663726095858987009\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":452,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":256,"resize":"fit"},"large":{"w":600,"h":452,"resize":"fit"}},"source_status_id":663726095858987009,"source_status_id_str":"663726095858987009","source_user_id":1422198260,"source_user_id_str":"1422198260"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080116662"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101904384,"id_str":"663728232101904384","text":"\u3042\u3042\u3042\u3042\u3082\u3046\u5c11\u3057\u3067\u305f\u3084\u3057\u751f\u8a95\u3093\u3093\u3093\u3093\uff01\uff01\uff01\uff01\n\u7dca\u5f35\u3057\u3066\u304d\u305f(\u00b4\uff1b\u03c9\uff1b\uff40)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226071532,"id_str":"226071532","name":"\u693f\u32a8\u3064\u3070\u3061\u304b@8\u65e5\u30c9\u30ea\u30e1\u30ebMEIKO","screen_name":"rocket0120","location":"\u9ed2\u306e\u6559\u56e3\u70cf\u91ce\u652f\u90e8","url":"http:\/\/twpf.jp\/rocket0120","description":"\u6c38\u9060\u306e18\u6b73\u2665\u30ec\u30a4\u30e4\u30fc(\u5199\u771f\u52a0\u5de5\u6e08)\u30d8\u30c3\u30c0\u30fc\u261e\u25ce\u597d\u7269*GUMI\/D.G\/HQ!!\/P3\/PP\/rkrn\/\u5800\u5bae(HERO)\/\u6b8b\u30c6\u30ed\/\u5bb6\u9d28etc. \u7d61\u307f\u7121\u3044\u65b9\u5207\u308a\u307e\u3059(\u60aa\u610f\u7121)\u307e\u305f\u7e01\u304c\u3054\u3056\u3044\u307e\u3057\u305f\u3089\u3002\u795e\u7530\u30e6\u30a6\/\u5c71\u53e3\u5fe0\/\u6709\u91cc\u6e4a\/\u4e95\u6d66\u79c0\u306b\u8ca2\u304e\u968a\u2661\u2192\u30b0\u30c3\u30ba\u56de\u53ce\u4e2d\u2661\n\u30b0\u30c3\u30ba\u53d6\u5f15\u306f\u30c4\u30a4\u30d7\u30ed\u4e00\u8aad\u9858\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":512,"friends_count":357,"listed_count":16,"favourites_count":8353,"statuses_count":18844,"created_at":"Mon Dec 13 06:57:56 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630225589\/r22w4pj5iq8dmrtyeqsn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630225589\/r22w4pj5iq8dmrtyeqsn.jpeg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661174466760695809\/7UYaU030_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661174466760695809\/7UYaU030_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226071532\/1446471358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085233664,"id_str":"663728232085233664","text":"RT @b_nice_shop: \u2728\u0637\u0642\u0645 \u0627\u0644\u064a\u0627\u0642\u0648\u062a \u0645\u0646 \u0645\u0627\u0631\u0643\u0629 \u0643\u0648\u064a\u0644\u2728\n\u062a\u0648\u0635\u064a\u0644 \u0641\u0648\u0631\u064a \u0644\u0644\u0637\u0644\u0628 \u0627\u0648 \u0627\u0644\u0627\u0633\u062a\u0641\u0633\u0627\u0631:\n\u0648\u0627\u062a\u0633\u0627\u0628 :00966509900485\n\u0643\u064a\u0643 : b_nice_shop https:\/\/t.co\/qUQWQm5wIz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":382986563,"id_str":"382986563","name":"\u2729250K|\u0644\u0644\u0631\u0641\u0627\u0639\u064a","screen_name":"alRifaiok3","location":"BBM 7CAA1925 \u0627\u0644\u0631\u0641\u0627\u0639\u064a","url":null,"description":"\u0644\u0644\u062f\u0639\u0645 \u0648\u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u062a\u0646\u0634\u064a\u0637 \u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a : \u0627\u0644\u0634\u062e\u0635\u064a\u0629\u2728| \u0648\u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a \u0627\u0644\u062a\u062c\u0627\u0631\u064a\u0629 : \u0627\u0644\u0634\u0631\u0643\u0627\u062a\u2728 \u0627\u0644\u0645\u062d\u0644\u0627\u062a\u2728 \u0627\u0644\u0628\u0636\u0627\u0626\u0639\u2728 \u0627\u0644\u0645\u0631\u0622\u0633\u0644\u0629 \u0648\u0627\u062a\u0633 \u0622\u0628: 0558479359 \u2706| #\u062a\u0627\u0628\u0639 :\u0644\u0644\u0631\u0641\u0627\u0639\u064a | #snapchat :alrifa","protected":false,"verified":false,"followers_count":236427,"friends_count":245519,"listed_count":259,"favourites_count":6,"statuses_count":114024,"created_at":"Sat Oct 01 02:05:49 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663416911716327424\/ewjtCL4t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663416911716327424\/ewjtCL4t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/382986563\/1446694211","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:04:02 +0000 2015","id":663628098051645441,"id_str":"663628098051645441","text":"\u2728\u0637\u0642\u0645 \u0627\u0644\u064a\u0627\u0642\u0648\u062a \u0645\u0646 \u0645\u0627\u0631\u0643\u0629 \u0643\u0648\u064a\u0644\u2728\n\u062a\u0648\u0635\u064a\u0644 \u0641\u0648\u0631\u064a \u0644\u0644\u0637\u0644\u0628 \u0627\u0648 \u0627\u0644\u0627\u0633\u062a\u0641\u0633\u0627\u0631:\n\u0648\u0627\u062a\u0633\u0627\u0628 :00966509900485\n\u0643\u064a\u0643 : b_nice_shop https:\/\/t.co\/qUQWQm5wIz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2732512554,"id_str":"2732512554","name":"\u0645\u062a\u062c\u0631 \u0628\u064a \u0646\u0627\u064a\u0633 \u0634\u0648\u0628","screen_name":"b_nice_shop","location":"\u0627\u0644\u0631\u064a\u0627\u0636","url":"http:\/\/bniceshop.net","description":"\u0645\u062a\u062c\u0631 \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u064f\u062e\u062a\u0635 \u0628\u0627\u0644\u0645\u062c\u0648\u0647\u0631\u0627\u062a\u0652 \u0627\u0644\u0631\u0627\u0642\u064a\u0647 \u0648\u062a\u0642\u062f\u064a\u0645 \u0627\u0644\u0647\u062f\u0627\u064a\u0627 \u0628\u0623\u0633\u0639\u0627\u0631 \u0645\u0646\u0627\u0641\u0633\u0647-\u062a\u0648\u0635\u064a\u0644 \u0644\u062c\u0645\u064a\u0639 \u0645\u0646\u0627\u0637\u0642 \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0648 \u062f\u0648\u0644 \u0627\u0644\u062e\u0644\u064a\u062c-\u0644\u0644\u0637\u0644\u0628 \u0628\u0627\u0644\u0648\u0627\u062a\u0633 \u0623\u0628: 00966509900485","protected":false,"verified":false,"followers_count":11646,"friends_count":670,"listed_count":22,"favourites_count":830,"statuses_count":1447,"created_at":"Thu Aug 14 19:07:26 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595295189066887168\/-FvlJrOm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595295189066887168\/-FvlJrOm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2732512554\/1441964402","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":92,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663628064979623936,"id_str":"663628064979623936","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","url":"https:\/\/t.co\/qUQWQm5wIz","display_url":"pic.twitter.com\/qUQWQm5wIz","expanded_url":"http:\/\/twitter.com\/b_nice_shop\/status\/663628098051645441\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663628064979623936,"id_str":"663628064979623936","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","url":"https:\/\/t.co\/qUQWQm5wIz","display_url":"pic.twitter.com\/qUQWQm5wIz","expanded_url":"http:\/\/twitter.com\/b_nice_shop\/status\/663628098051645441\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"b_nice_shop","name":"\u0645\u062a\u062c\u0631 \u0628\u064a \u0646\u0627\u064a\u0633 \u0634\u0648\u0628","id":2732512554,"id_str":"2732512554","indices":[3,15]}],"symbols":[],"media":[{"id":663628064979623936,"id_str":"663628064979623936","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","url":"https:\/\/t.co\/qUQWQm5wIz","display_url":"pic.twitter.com\/qUQWQm5wIz","expanded_url":"http:\/\/twitter.com\/b_nice_shop\/status\/663628098051645441\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663628098051645441,"source_status_id_str":"663628098051645441","source_user_id":2732512554,"source_user_id_str":"2732512554"}]},"extended_entities":{"media":[{"id":663628064979623936,"id_str":"663628064979623936","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuNYQXIAAvU_o.jpg","url":"https:\/\/t.co\/qUQWQm5wIz","display_url":"pic.twitter.com\/qUQWQm5wIz","expanded_url":"http:\/\/twitter.com\/b_nice_shop\/status\/663628098051645441\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663628098051645441,"source_status_id_str":"663628098051645441","source_user_id":2732512554,"source_user_id_str":"2732512554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076845056,"id_str":"663728232076845056","text":"RT @bieberjakocrush: #250 M\u00f3wi\u0142by ci \u017ce jeste\u015b dla niego kim\u015b wi\u0119cej ni\u017c przyjaci\u00f3\u0142k\u0105.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1946950399,"id_str":"1946950399","name":"dziewczyna bonda","screen_name":"xbizrauhlx","location":"I'm not a drug dealer","url":null,"description":"but mom i want bad boy |zuzia, julcia, karcia|","protected":false,"verified":false,"followers_count":670,"friends_count":555,"listed_count":4,"favourites_count":1779,"statuses_count":24988,"created_at":"Tue Oct 08 13:30:28 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537312565462708224\/2A7vSS7J.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537312565462708224\/2A7vSS7J.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663482258129555456\/YJ9q04gm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663482258129555456\/YJ9q04gm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1946950399\/1447021471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Dec 25 21:45:19 +0000 2014","id":548233051810320384,"id_str":"548233051810320384","text":"#250 M\u00f3wi\u0142by ci \u017ce jeste\u015b dla niego kim\u015b wi\u0119cej ni\u017c przyjaci\u00f3\u0142k\u0105.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2911187979,"id_str":"2911187979","name":"Justin jako crush..","screen_name":"bieberjakocrush","location":null,"url":null,"description":"wszystkie tweety w ulubionych","protected":false,"verified":false,"followers_count":1435,"friends_count":236,"listed_count":2,"favourites_count":380,"statuses_count":1252,"created_at":"Mon Dec 08 17:05:16 +0000 2014","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553992883854790656\/eEUuk4EW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553992883854790656\/eEUuk4EW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911187979\/1420917160","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":149,"favorite_count":46,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bieberjakocrush","name":"Justin jako crush..","id":2911187979,"id_str":"2911187979","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080116658"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101863424,"id_str":"663728232101863424","text":"RT @uruchi001: \u7a00\u89af\u672c\u306e\u5c55\u793a\u304c\u7406\u60f3\u306e\u672c\u68da\u3059\u304e\u3066\u2026\u3057\u304b\u3082\u5c55\u793a\u306e\u7a00\u89af\u672c\u30e9\u30c6\u30f3\u8a9e\u3088\u308a\u4fd7\u8a9e\u306b\u7ffb\u8a33\u3055\u308c\u305f\u4e91\u3005\u3068\u304b\u30f4\u30a1\u30c1\u30ab\u30f3\u5bfa\u9662\u3068\u305d\u306e\u8d77\u6e90\u4e91\u3005\u306e\u672c\u3068\u304b\u3042\u3063\u3066\u3053\u308c\u9b54\u9053\u66f8\u307e\u3058\u3063\u3066\u306a\u3044\u3067\u3059\u304b\uff1f https:\/\/t.co\/gb7WtyzfDB","source":"\u003ca href=\"http:\/\/twitter.softama.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30bf\u30de for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":432464104,"id_str":"432464104","name":"\u308a\u304a","screen_name":"rio_k220","location":"http:\/\/twilog.org\/rio_k220","url":"http:\/\/twpf.jp\/rio_k220","description":"\u666e\u6bb5\u306f\u6751\u4e95\u3055\u3093\u306e\u3053\u3068\u3070\u304b\u308a\u545f\u3044\u3066\u3044\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\u3002\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002 \n\u3010\u4e88\u5b9a\u301110\/2\uff654\u9ed2\u3044\u30cf\u30f3\u30ab\u30c1\u30fc\u30d5\u30017\uff6518RENT\u300128\u30d0\u30a4\u30aa\u30cf\u30b6\u30fc\u30c9\u300111\/20\uff6527TRUMP\u300129\u6751\u4e95\u3055\u3093\u30ab\u30ec\u30f3\u30c0\u30fc\u30a4\u30d93\u90e8\u300112\/22\u30c9\u30c3\u30b0\u30d5\u30a1\u30a4\u30c8","protected":false,"verified":false,"followers_count":97,"friends_count":97,"listed_count":2,"favourites_count":144,"statuses_count":27197,"created_at":"Fri Dec 09 12:31:31 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545756642587856897\/4MmA2Kt5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545756642587856897\/4MmA2Kt5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/432464104\/1385395175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:53:49 +0000 2015","id":663655726259134465,"id_str":"663655726259134465","text":"\u7a00\u89af\u672c\u306e\u5c55\u793a\u304c\u7406\u60f3\u306e\u672c\u68da\u3059\u304e\u3066\u2026\u3057\u304b\u3082\u5c55\u793a\u306e\u7a00\u89af\u672c\u30e9\u30c6\u30f3\u8a9e\u3088\u308a\u4fd7\u8a9e\u306b\u7ffb\u8a33\u3055\u308c\u305f\u4e91\u3005\u3068\u304b\u30f4\u30a1\u30c1\u30ab\u30f3\u5bfa\u9662\u3068\u305d\u306e\u8d77\u6e90\u4e91\u3005\u306e\u672c\u3068\u304b\u3042\u3063\u3066\u3053\u308c\u9b54\u9053\u66f8\u307e\u3058\u3063\u3066\u306a\u3044\u3067\u3059\u304b\uff1f https:\/\/t.co\/gb7WtyzfDB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293438369,"id_str":"293438369","name":"\u3046\u308b\u3061","screen_name":"uruchi001","location":"\u30a2\u30de\u30e9\u6df1\u754c\u7b2c\u4e09\u30ab\u30eb\u30d1","url":null,"description":"\u8150\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u306f\u308b\u304b\u6614\u306b\u6210\u4eba\u6e08\u3002\u73fe\u5728\u3001\u8840\u754c\u6226\u7dda\u30ec\u30aa\u53f3\u304c\u71b1\u3044\u3067\u3059\u3002\u30ec\u30aa\u541b\u597d\u304d\u3059\u304e\u3066\u3064\u3089\u3044\u3067\u3059\u3002 \u539f\u4f5c\u65e2\u8aad\u306a\u306e\u3067\u30cd\u30bf\u30d0\u30ec\u767a\u8a00\u3042\u308a\u3002\u4eba\u4fee\u7f85\u3001\u30c0\u30f3\u30c6\u3001\u30a2\u30de\u30c6\u30e9\u30b9\u3068\u4eba\u5916\u304c\u5927\u597d\u304d\u3067\u3059\u3002 \u751f\u6daf\u30b9\u30bf\u30a4\u30ea\u30c3\u4e3b\u3002 \u8da3\u5473\u304c\u5408\u3044\u305d\u3046\u306a\u65b9\u306fF\/R\/B\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\u3002 http:\/\/p.tl\/m\/18374","protected":false,"verified":false,"followers_count":1148,"friends_count":102,"listed_count":40,"favourites_count":2820,"statuses_count":4576,"created_at":"Thu May 05 10:44:15 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/254777899\/org.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/254777899\/org.jpg","profile_background_tile":false,"profile_link_color":"86D192","profile_sidebar_border_color":"D7F0C9","profile_sidebar_fill_color":"F9FDF7","profile_text_color":"9A8C65","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658268534896594946\/ryyawCa4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658268534896594946\/ryyawCa4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1950,"favorite_count":1619,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663655716062781440,"id_str":"663655716062781440","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663655716062781440,"id_str":"663655716062781440","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}},{"id":663655719741165568,"id_str":"663655719741165568","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXGRUEAAdaip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXGRUEAAdaip.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}}},{"id":663655720873660416,"id_str":"663655720873660416","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXKfUkAAtUKD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXKfUkAAtUKD.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663655724392644608,"id_str":"663655724392644608","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXXmUAAA-7-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXXmUAAA-7-p.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uruchi001","name":"\u3046\u308b\u3061","id":293438369,"id_str":"293438369","indices":[3,13]}],"symbols":[],"media":[{"id":663655716062781440,"id_str":"663655716062781440","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":663655726259134465,"source_status_id_str":"663655726259134465","source_user_id":293438369,"source_user_id_str":"293438369"}]},"extended_entities":{"media":[{"id":663655716062781440,"id_str":"663655716062781440","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHW4kUYAAIqIT.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":663655726259134465,"source_status_id_str":"663655726259134465","source_user_id":293438369,"source_user_id_str":"293438369"},{"id":663655719741165568,"id_str":"663655719741165568","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXGRUEAAdaip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXGRUEAAdaip.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":900,"h":1200,"resize":"fit"}},"source_status_id":663655726259134465,"source_status_id_str":"663655726259134465","source_user_id":293438369,"source_user_id_str":"293438369"},{"id":663655720873660416,"id_str":"663655720873660416","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXKfUkAAtUKD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXKfUkAAtUKD.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663655726259134465,"source_status_id_str":"663655726259134465","source_user_id":293438369,"source_user_id_str":"293438369"},{"id":663655724392644608,"id_str":"663655724392644608","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXHXXmUAAA-7-p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXHXXmUAAA-7-p.jpg","url":"https:\/\/t.co\/gb7WtyzfDB","display_url":"pic.twitter.com\/gb7WtyzfDB","expanded_url":"http:\/\/twitter.com\/uruchi001\/status\/663655726259134465\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663655726259134465,"source_status_id_str":"663655726259134465","source_user_id":293438369,"source_user_id_str":"293438369"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101838848,"id_str":"663728232101838848","text":"RT @edwards7256: Blankey Jet City \u30ed\u30e1\u30aa\n\u304e\u3063\u3061\u3087\u3078 https:\/\/t.co\/FPAjIptfeC","source":"\u003ca href=\"http:\/\/shootingstar067.com\/\" rel=\"nofollow\"\u003eShootingStar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576905215,"id_str":"576905215","name":"\u304e\u3061\u3083","screen_name":"giiicho","location":"LiSA\u306e\u3068\u306a\u308a","url":null,"description":"Freedom Custom giiicho Research","protected":false,"verified":false,"followers_count":717,"friends_count":771,"listed_count":29,"favourites_count":106696,"statuses_count":223299,"created_at":"Fri May 11 06:35:02 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663712792378146817\/mUECs4q6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663712792378146817\/mUECs4q6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576905215\/1445096707","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:23 +0000 2015","id":663726078561660928,"id_str":"663726078561660928","text":"Blankey Jet City \u30ed\u30e1\u30aa\n\u304e\u3063\u3061\u3087\u3078 https:\/\/t.co\/FPAjIptfeC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164963306,"id_str":"164963306","name":"\u30a8\u30c7\u30a3@\u8fbb\u306a\u3093\u3061\u3083\u3089","screen_name":"edwards7256","location":"\u5927\u962a","url":"http:\/\/artist.aremond.net\/asp48\/","description":"\u8133\u5185\u5782\u308c\u6d41\u3057bot \/ \u30a2\u30b9\u30da\u754c\u9688 \/ \u3077\u3044\u3077\u3044\u30ba@puipui_000\u306e\u30ae\u30bf\u30fc\u306e\u4eba \/BIGCAT\u3067\u30b9\u30c6\u30fc\u30b8\u898b\u7fd2\u3044\u3057\u3066\u307e\u3059\/ Guitar \/ SVG \/ Movie \/ TMGE \/ BJC \/ B'z \/ SKC \/","protected":false,"verified":false,"followers_count":399,"friends_count":241,"listed_count":19,"favourites_count":2765,"statuses_count":48306,"created_at":"Sat Jul 10 05:59:18 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663349856988102656\/Nu-vxPMm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663349856988102656\/Nu-vxPMm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164963306\/1446213916","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FPAjIptfeC","expanded_url":"http:\/\/youtu.be\/9OmTXnR_cz4","display_url":"youtu.be\/9OmTXnR_cz4","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FPAjIptfeC","expanded_url":"http:\/\/youtu.be\/9OmTXnR_cz4","display_url":"youtu.be\/9OmTXnR_cz4","indices":[44,67]}],"user_mentions":[{"screen_name":"edwards7256","name":"\u30a8\u30c7\u30a3@\u8fbb\u306a\u3093\u3061\u3083\u3089","id":164963306,"id_str":"164963306","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085061634,"id_str":"663728232085061634","text":"RT @rmfpdlxmzld: \u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1018757587,"id_str":"1018757587","name":"\ub9ac\ud2b8\ub9ac","screen_name":"Re_trie","location":"\ub808\ub4dc\ud488\uc18d","url":null,"description":"\uc820\uc7a5\u3160\ub9ac\ud2b8\uc717\uc694\uc815\uc774\ub418\uc5b4\uac04\ub2e4\u3160","protected":false,"verified":false,"followers_count":80,"friends_count":120,"listed_count":0,"favourites_count":187,"statuses_count":15592,"created_at":"Tue Dec 18 01:43:25 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462230231932100608\/DUnsKe63_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462230231932100608\/DUnsKe63_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1018757587\/1399039249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 12:04:45 +0000 2015","id":662601509834657792,"id_str":"662601509834657792","text":"\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/ZjuW9yYJth","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3088438189,"id_str":"3088438189","name":"\ub9c8\uce20\ub178 \ub458\ub9ac\ub9c8\uce20","screen_name":"rmfpdlxmzld","location":"\ucd5c\uc560\uc758 \uc606\uc790\ub9ac","url":null,"description":"\uc7a1\ub355\/NinjaGo\/\ubbf8\uc560\ub2c8\/\uc790\uce90\ub355\/\uac15\ub825\ud55c \uc18c\ube44\ub7ec\/\ub808\uc774\ub514\ubc84\uadf8\/\ubcc4\ub098\ube44\/\uc624\uc18c\ub9c8\uce20\uc0c1\/\ub458\ub9ac\uc785\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":169,"friends_count":235,"listed_count":1,"favourites_count":2102,"statuses_count":15333,"created_at":"Mon Mar 16 07:55:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661583321017638912\/84CZd9pR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661583321017638912\/84CZd9pR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3088438189\/1446046706","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1227,"favorite_count":156,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662601486858260480,"id_str":"662601486858260480","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662601486858260480,"id_str":"662601486858260480","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":662601498807812096,"id_str":"662601498807812096","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIjXQUwAA3Dzc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIjXQUwAA3Dzc.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rmfpdlxmzld","name":"\ub9c8\uce20\ub178 \ub458\ub9ac\ub9c8\uce20","id":3088438189,"id_str":"3088438189","indices":[3,15]}],"symbols":[],"media":[{"id":662601486858260480,"id_str":"662601486858260480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662601509834657792,"source_status_id_str":"662601509834657792","source_user_id":3088438189,"source_user_id_str":"3088438189"}]},"extended_entities":{"media":[{"id":662601486858260480,"id_str":"662601486858260480","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIiqvVEAAg2XW.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662601509834657792,"source_status_id_str":"662601509834657792","source_user_id":3088438189,"source_user_id_str":"3088438189"},{"id":662601498807812096,"id_str":"662601498807812096","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTIIjXQUwAA3Dzc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTIIjXQUwAA3Dzc.jpg","url":"https:\/\/t.co\/ZjuW9yYJth","display_url":"pic.twitter.com\/ZjuW9yYJth","expanded_url":"http:\/\/twitter.com\/rmfpdlxmzld\/status\/662601509834657792\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":960,"h":1280,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662601509834657792,"source_status_id_str":"662601509834657792","source_user_id":3088438189,"source_user_id_str":"3088438189"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232093495296,"id_str":"663728232093495296","text":"@LOL_mokotti \u3059\u307e\u306a\u3044\u304c\u30db\u30e2\u306f\uff2e\uff27","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727760104251392,"in_reply_to_status_id_str":"663727760104251392","in_reply_to_user_id":1677461544,"in_reply_to_user_id_str":"1677461544","in_reply_to_screen_name":"LOL_mokotti","user":{"id":171854275,"id_str":"171854275","name":"\u3042\u3059\u3071\u3089","screen_name":"para609","location":"\u308f\u3093\u308f\u3093\u304a\u30fc\u3053\u304f\u306e\u5317","url":"http:\/\/www.eventernote.com\/users\/para609","description":"\u5927\u576a\u7531\u4f73\u3055\u3093\u3000\u5965\u91ce\u9999\u8036\u3055\u3093\u3000\u4e45\u4fdd\u7530\u672a\u5922\u3055\u3093\u3000\u5409\u5ca1\u9ebb\u8036\u3055\u3093\u3000\u677e\u4e95\u73b2\u5948\u3055\u3093\u3000\u4e0a\u9593\u6c5f\u671b\u3055\u3093 \u5c71\u4e0b\u4e03\u6d77\u3055\u3093 A\u5fdcP\u3000https:\/\/vine.co\/v\/egn2rIW6b9r","protected":false,"verified":false,"followers_count":526,"friends_count":586,"listed_count":26,"favourites_count":37006,"statuses_count":69178,"created_at":"Wed Jul 28 09:50:13 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/524936043028430851\/V65T4mvV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/524936043028430851\/V65T4mvV.jpeg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656525292349976576\/FBg24WyJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656525292349976576\/FBg24WyJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/171854275\/1412515991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LOL_mokotti","name":"\u304a\u3063\u3071\u3044","id":1677461544,"id_str":"1677461544","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116662"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085065728,"id_str":"663728232085065728","text":"RT @BBAnimals: he's just trying to help! https:\/\/t.co\/NgZ7vsVM5M","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338297264,"id_str":"338297264","name":"SUI MIN ","screen_name":"suiminissoninja","location":"paradise","url":"http:\/\/isayblub.tumblr.com","description":"sssshhhhh, im sleeping.","protected":false,"verified":false,"followers_count":272,"friends_count":433,"listed_count":0,"favourites_count":1958,"statuses_count":21421,"created_at":"Tue Jul 19 11:09:54 +0000 2011","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623700774\/7k94yno76eltb9h5hmkd.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623700774\/7k94yno76eltb9h5hmkd.png","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621984137683927040\/3YNpGyt5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621984137683927040\/3YNpGyt5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338297264\/1426168753","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:00:17 +0000 2015","id":663581854415630336,"id_str":"663581854415630336","text":"he's just trying to help! https:\/\/t.co\/NgZ7vsVM5M","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1407277784,"id_str":"1407277784","name":"Baby Animals","screen_name":"BBAnimals","location":null,"url":"https:\/\/www.facebook.com\/Babyanimalx","description":"The cutest Baby Animals Pics","protected":false,"verified":false,"followers_count":448317,"friends_count":7,"listed_count":1573,"favourites_count":0,"statuses_count":72070,"created_at":"Mon May 06 09:26:24 +0000 2013","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000777707394\/262a47f6acb49b39a454e7f552ad5854_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000777707394\/262a47f6acb49b39a454e7f552ad5854_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":503,"favorite_count":682,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NgZ7vsVM5M","expanded_url":"https:\/\/vine.co\/v\/hB1qAl7VdqQ","display_url":"vine.co\/v\/hB1qAl7VdqQ","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NgZ7vsVM5M","expanded_url":"https:\/\/vine.co\/v\/hB1qAl7VdqQ","display_url":"vine.co\/v\/hB1qAl7VdqQ","indices":[41,64]}],"user_mentions":[{"screen_name":"BBAnimals","name":"Baby Animals","id":1407277784,"id_str":"1407277784","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101900288,"id_str":"663728232101900288","text":"@KodamasiW \n\u9593\u5c01\u3058w\n\u3042\u308a\u3067\u3059\u3088\uff01\u3042\u308a\uff01w\n\n\u904b\u5c40\u306f\u307b\u3093\u3068\u306b\u3060\u308b\u3044\u3063\u3059w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724185768718337,"in_reply_to_status_id_str":"663724185768718337","in_reply_to_user_id":2315508565,"in_reply_to_user_id_str":"2315508565","in_reply_to_screen_name":"KodamasiW","user":{"id":1440937201,"id_str":"1440937201","name":"\u693f\u3064\u3070\u304d\u3061","screen_name":"aoix3tsugumi730","location":"\u8b0e\u4ed5\u69d8","url":"http:\/\/twpf.jp\/aoix3tsugumi730","description":"\u30d5\u30a7\u30a4\u30c8\u306b\u5c11\u3057\u30cf\u30de\u308a\u307e\u3057\u305f\u3002 \u30a2\u30a4\u30b3\u30f3\u306f\u30ab\u30ca\u30c8\u3061\u3085\u3093(@Lobeliange293 )\u3067\u3059\u5b89\u5b9a\u611f\u3071\u306a\u3044\u306e\u3002 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":592,"friends_count":289,"listed_count":27,"favourites_count":8984,"statuses_count":95855,"created_at":"Sun May 19 11:26:27 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000084089255\/3b8cd4ce39cc533b8eb112cd80f2a35d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000084089255\/3b8cd4ce39cc533b8eb112cd80f2a35d.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657188379231064064\/_ZVquWBf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657188379231064064\/_ZVquWBf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1440937201\/1423248591","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KodamasiW","name":"\u3053\u3060\u307e\u3057P@\u30e2\u30f3\u5a18\u30a4\u30d9\u53c2\u6226\uff01","id":2315508565,"id_str":"2315508565","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232089292800,"id_str":"663728232089292800","text":"@EvEvwwwEvEv \u304a\u306f\u3088\u30fc\u3054\u3056\u3044\u307e\u30fc\u3059\u3002\u3046\u30fc\u3093\u307e\u3060\u307e\u3060\u7720\u3044\u3063\u3059\u30fc\u3002","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u30d0\u30fc\u30fb\u30db\u30e0\u30e9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727366724825089,"in_reply_to_status_id_str":"663727366724825089","in_reply_to_user_id":2944671822,"in_reply_to_user_id_str":"2944671822","in_reply_to_screen_name":"EvEvwwwEvEv","user":{"id":932413632,"id_str":"932413632","name":"\u3061\u3087\u3063\u3068\u516b\u7530\u3055\u3093\uff01bot","screen_name":"yatasan_bot","location":"\u30d0\u30fc\u30fb\u30db\u30e0\u30e9","url":null,"description":"\u938c\u672c\u529b\u592b\u304c\u516b\u7530\u3055\u3093\u516b\u7530\u3055\u3093\u3046\u308b\u3055\u3044\u3060\u3051\u306ebot\u3067\u3059\u3002\u938c\u672c\u304c\u547c\u3076\u3068\u3044\u3046\u3088\u308a\u306f\u516b\u7530\u3055\u3093\u304c\u547c\u3070\u308c\u308b\u611f\u3058\u306e\u30cb\u30e5\u30a2\u30f3\u30b9\u3002\u30cd\u30bf\u3044\u3063\u3071\u3044\u3002\u3075\u3093\u308f\u308a\u304a\u8150\u308c\u733f\u7f8e\u98a8\u5473\u3002\u938c\u672c\u4ee5\u5916\u3082\u558b\u3063\u305f\u308a\u3002\u6f2b\u753b\u3001\u30a2\u30cb\u30e1\u3001\u5c0f\u8aac\u306e\u30cd\u30bf\u30d0\u30ec\u304c\u3042\u308a\u307e\u3059\u3002\u938c\u672c\u306fHSO(\u30cf\u30a4\u30b9\u30da\u30c3\u30af\u30aa\u30ab\u30f3)\u3002\u3044\u308d\u3044\u308d\u6df7\u5728\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1769,"friends_count":1917,"listed_count":25,"favourites_count":0,"statuses_count":1554615,"created_at":"Wed Nov 07 16:28:57 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2819191696\/0c98726e48c43f9ee4623f6924ececf0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2819191696\/0c98726e48c43f9ee4623f6924ececf0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EvEvwwwEvEv","name":"@@akane____x_9","id":2944671822,"id_str":"2944671822","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116661"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232106082304,"id_str":"663728232106082304","text":"\u4ed5\u4e8b\u306a\u3044\u3068\u6687\u3084\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185968311,"id_str":"185968311","name":"\u304f\u308c\u306f","screen_name":"Kureha_MS908","location":"\u5927\u6c17\u570f","url":"http:\/\/www.pixiv.net\/member.php?id=4051478","description":"\u7d75\u3068\u304b\u63cf\u304b\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":150,"friends_count":119,"listed_count":3,"favourites_count":15,"statuses_count":46879,"created_at":"Thu Sep 02 07:54:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653036961007992832\/Ln9xCqKE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653036961007992832\/Ln9xCqKE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185968311\/1443829179","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116665"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085200896,"id_str":"663728232085200896","text":"22 \u03bc\u03ae\u03bd\u03b5\u03c2 \u03c6\u03c5\u03bb\u03ac\u03ba\u03b9\u03c3\u03b7 \u03bc\u03b5 \u03c4\u03c1\u03b9\u03b5\u03c4\u03ae \u03b1\u03bd\u03b1\u03c3\u03c4\u03bf\u03bb\u03ae \u03c3\u03b5 \u03ac\u03bd\u03b5\u03c1\u03b3\u03bf \u03b3\u03b9\u03b1 \u03ad\u03bd\u03b1 \u03b5\u03b9\u03c3\u03b9\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03c4\u03b7 \u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7 | \u039a\u03af\u03bd\u03b7\u03c3\u03b7... https:\/\/t.co\/2zGy6zea9x","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":443929333,"id_str":"443929333","name":"\u039a\u03a5\u03a1\u0399\u0391\u039a\u0391\u03a4\u0399\u039a\u039f \u03a3\u03a7\u039f\u039b\u0395\u0399\u039f ","screen_name":"Ksmetanastwn","location":"\u0391\u03b8\u03b7\u03bd\u03b1","url":"http:\/\/www.ksm.gr\/","description":"\u03a4\u03bf \u039a \u03a3 M \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03c9\u03c4\u03bf\u03b2\u03bf\u03c5\u03bb\u03af\u03b1 \u03bc\u03b5\u03c4\u03b1\u03bd\u03b1\u03c3\u03c4\u03ce\u03bd\/-\u03c4\u03c1\u03b9\u03ce\u03bd \u03ba\u03b1\u03b9 \u0395\u03bb\u03bb\u03ae\u03bd\u03c9\u03bd \u03b5\u03b8\u03b5\u03bb\u03bf\u03bd\u03c4\u03ce\u03bd\/-\u03c1\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03b4\u03c9\u03c1\u03b5\u03ac\u03bd \u03b5\u03ba\u03bc\u03ac\u03b8\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae\u03c2 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u03c3\u03b5 \u03b5\u03c1\u03b3\u03b1\u03b6\u03bf\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bc\u03b5\u03c4\u03b1\u03bd\u03ac\u03c3\u03c4\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c6\u03c5\u03b3\u03b5\u03c2","protected":false,"verified":false,"followers_count":5851,"friends_count":2178,"listed_count":55,"favourites_count":1357,"statuses_count":27819,"created_at":"Thu Dec 22 18:05:08 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538063296713093121\/fS0j_kdc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538063296713093121\/fS0j_kdc.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423692531935617024\/y54GffPx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423692531935617024\/y54GffPx_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2zGy6zea9x","expanded_url":"http:\/\/fb.me\/7zqARLbdF","display_url":"fb.me\/7zqARLbdF","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"el","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076738560,"id_str":"663728232076738560","text":"@r2330o \u3070\u30fc\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4167190213,"in_reply_to_user_id_str":"4167190213","in_reply_to_screen_name":"r2330o","user":{"id":3037467488,"id_str":"3037467488","name":"\u30e4\u30f3\u30c7\u30ec\u30c3\u30bf\u30fc","screen_name":"ohQqMJc77ibvIIs","location":"\u50d5\u304b\u3089\u9003\u3052\u3089\u308c\u308b\u3068\u3067\u3082\uff1f\uff1f","url":null,"description":"\u30de\u30eb\u30d5\u30a9\u30a4\u3069\u3053\u306b\u3044\u308b\u304b\u77e5\u3089\u306a\u3044\u304b\u3044\uff1f\u3053\u3093\u306b\u3061\u306f\u3001\u975e\u516c\u5f0f\u5168\u624b\u52d5\u306a\u308a\u304d\u308abot\u3060\u3088\u3002 \u307e\u305f\u30de\u30eb\u30d5\u30a9\u30a4\u304c\u9003\u3052\u51fa\u3057\u3061\u3083\u3063\u3066\u3055\uff65\uff65\uff65\u50d5\u5fd9\u3057\u3044\u3063\u3066\u4f55\u56de\u8a00\u3048\u3070\u5206\u304b\u308b\u306e\u304b\u306a\uff1f\uff1f\u3054\u3081\u3093\u3051\u3069\u3001\u7686\u306e\u6240\u8abf\u3079\u3055\u305b\u3066\u304f\u308c\u306a\u3044\u304b\u3044\uff1f\u52ff\u8ad6\u62d2\u5426\u6a29\u306f\u306a\u3044\u3088\u3002 \u50d5\u3001\u4eca\u4e0d\u5b89\u5b9a\u3060\u304b\u3089\u3055\u3002\uff65\uff65\uff65\u306d\uff1f 1\u4eba\u304f\u3089\u3044\u6bba\u3063\u3061\u3083\u3046\u304b\u3082\u3057\u308c\u306a\u3044\u3051\u3069\u8a31\u3057\u3066\u306d\u2661\u5b9c\u3057\u304f\u3002","protected":false,"verified":false,"followers_count":206,"friends_count":242,"listed_count":16,"favourites_count":1485,"statuses_count":4112,"created_at":"Mon Feb 23 06:18:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663608050553479168\/jiufZ84__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663608050553479168\/jiufZ84__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037467488\/1447079079","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"r2330o","name":"\u30e4\u30f3\u30c7\u30ec\u30c3\u30bf\u30fc\u306e\u4e2d\u306e\u4eba","id":4167190213,"id_str":"4167190213","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116658"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232110256128,"id_str":"663728232110256128","text":"\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2877875112,"id_str":"2877875112","name":"Eziel Tallada","screen_name":"ezieltallada","location":"Philippines","url":null,"description":"Sometimes there is no next time, no timeouts, and no second chances. Sometimes it's now or never. \u2728 \u2022 Follow my instagram account: ezieltallada","protected":false,"verified":false,"followers_count":777,"friends_count":1181,"listed_count":1,"favourites_count":9451,"statuses_count":32941,"created_at":"Sun Oct 26 06:36:09 +0000 2014","utc_offset":-28800,"time_zone":"Tijuana","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648123256201834496\/qNzkZe51_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648123256201834496\/qNzkZe51_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2877875112\/1443191234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080116666"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232110272513,"id_str":"663728232110272513","text":"@madmeen0510 \u0e1e\u0e35\u0e48\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e44\u0e14\u0e49\u0e14\u0e39\u0e40\u0e25\u0e22 \u0e07\u0e32\u0e19\u0e46\u0e46\u0e46\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e01\u0e47\u0e19\u0e2d\u0e19\u0e17\u0e31\u0e49\u0e07\u0e27\u0e31\u0e19555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728012400025602,"in_reply_to_status_id_str":"663728012400025602","in_reply_to_user_id":2449356216,"in_reply_to_user_id_str":"2449356216","in_reply_to_screen_name":"madmeen0510","user":{"id":153275013,"id_str":"153275013","name":"KN\u2022MN ( \u2661\u3268\u2661 )~\u2764","screen_name":"ka_nung","location":"WINNER CITY","url":null,"description":"\u0e40\u0e27\u0e34\u0e48\u0e19\u0e40\u0e27\u0e49\u0e2d #93line W | INNER CERCLE | \u0e0b\u0e07\u0e2b\u0e21\u0e35\u0e42\u0e19\u0e27\u2022MINO\u2022\uc1a1\ubbfc\ud638 \u0e40\u0e2b\u0e21\u0e48\u0e07\u0e22\u0e38\u0e19\u2022YOON\u2022\uac15\uc2b9\uc724 \u0e17\u0e32\u0e2a\u0e19\u0e31\u0e21\u2022NAM\u2022\ub0a8\ud0dc\ud604 \u0e15\u0e35\u0e4b\u0e2e\u0e38\u0e19\u2022HOON\u2022\uc774\uc2b9\ud6c8 \u0e08\u0e34\u0e19\u0e2d\u0e39\u2022JINWOO\u2022\uae40\uc9c4\uc720 | WINNER\u2022\uc704\ub108 |","protected":false,"verified":false,"followers_count":753,"friends_count":808,"listed_count":3,"favourites_count":14115,"statuses_count":64640,"created_at":"Tue Jun 08 03:43:12 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"060708","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476544623687397377\/xoXgZOdy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476544623687397377\/xoXgZOdy.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657408003126091776\/wFJT3G-d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657408003126091776\/wFJT3G-d_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153275013\/1440150021","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"madmeen0510","name":"\u0e40\u0e14\u0e35\u0e4b\u0e22\u0e27\u0e19\u0e31\u0e21\u0e01\u0e47\u0e1c\u0e2d\u0e21 \u00b4\uff65\u1d17\uff65`","id":2449356216,"id_str":"2449356216","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080116666"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232101978112,"id_str":"663728232101978112","text":"\u65e6\u90a3\u300c\u5927\u4e08\u592b\uff1f\u4f55\u304c\u98df\u3079\u305f\u3044\uff1f\u4f55\u306a\u3089\u98df\u3079\u3089\u308c\u305d\u3046\uff1f\u300d \u5ac1\u300c\u30c8\u30e1\u3055\u3093\u2026\u30c8\u30e1\u3055\u3093\u306e\u3054\u306f\u3093\u2026\u2026\u300d \u2192 \u7d50\u679c\u2026 https:\/\/t.co\/77ZOXhEGJE #2chmatome #news #newsjp","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3948549494,"id_str":"3948549494","name":"blju","screen_name":"365_blju","location":null,"url":"http:\/\/blju.net\/","description":"\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059http:\/\/blju.net\/","protected":false,"verified":false,"followers_count":30,"friends_count":40,"listed_count":1,"favourites_count":0,"statuses_count":4391,"created_at":"Mon Oct 19 16:02:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"2chmatome","indices":[75,85]},{"text":"news","indices":[86,91]},{"text":"newsjp","indices":[92,99]}],"urls":[{"url":"https:\/\/t.co\/77ZOXhEGJE","expanded_url":"http:\/\/ift.tt\/1L6ocEL","display_url":"ift.tt\/1L6ocEL","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116664"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076718080,"id_str":"663728232076718080","text":"@Reiku_8xx_ \n\n\u3048\u3048\u30be\u30a6\ud83d\udc18\n\u306a\u3093\u3066\u3088\u307c\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724564552159232,"in_reply_to_status_id_str":"663724564552159232","in_reply_to_user_id":3959196673,"in_reply_to_user_id_str":"3959196673","in_reply_to_screen_name":"Reiku_8xx_","user":{"id":3306130171,"id_str":"3306130171","name":"\u967d","screen_name":"Haru__one","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":82,"friends_count":50,"listed_count":4,"favourites_count":40,"statuses_count":550,"created_at":"Tue Aug 04 14:12:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661541540037156864\/Tm7uLLf1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661541540037156864\/Tm7uLLf1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3306130171\/1438699090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Reiku_8xx_","name":"\u6624\u7a7a","id":3959196673,"id_str":"3959196673","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116658"} +{"delete":{"status":{"id":663682233157357568,"id_str":"663682233157357568","user_id":4047223573,"user_id_str":"4047223573"},"timestamp_ms":"1447080116752"}} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232110272512,"id_str":"663728232110272512","text":"RT @SedthawutAnusit: \u0e2e\u0e2d\u0e23\u0e4c\u0e42\u0e21\u0e19\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c\u0e19\u0e35\u0e49\u0e14\u0e35\u0e21\u0e32\u0e01 \u0e19\u0e49\u0e33\u0e15\u0e32\u0e41\u0e17\u0e1a\u0e44\u0e2b\u0e25\ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3159620594,"id_str":"3159620594","name":"Yong N.T.","screen_name":"youngza55515","location":null,"url":"http:\/\/instargram.com\/YONGNATTHAWUT","description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":39,"listed_count":0,"favourites_count":1352,"statuses_count":770,"created_at":"Thu Apr 16 12:57:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624174928246366209\/mBF2KhKR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624174928246366209\/mBF2KhKR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3159620594\/1437479978","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 18:01:45 +0000 2015","id":663053742825017345,"id_str":"663053742825017345","text":"\u0e2e\u0e2d\u0e23\u0e4c\u0e42\u0e21\u0e19\u0e2a\u0e31\u0e1b\u0e14\u0e32\u0e2b\u0e4c\u0e19\u0e35\u0e49\u0e14\u0e35\u0e21\u0e32\u0e01 \u0e19\u0e49\u0e33\u0e15\u0e32\u0e41\u0e17\u0e1a\u0e44\u0e2b\u0e25\ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296758281,"id_str":"296758281","name":"T.S","screen_name":"SedthawutAnusit","location":null,"url":null,"description":"Satit Prasarnmit G.55 ,18 years old.","protected":false,"verified":false,"followers_count":121942,"friends_count":187,"listed_count":121,"favourites_count":551,"statuses_count":4545,"created_at":"Wed May 11 10:48:43 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme8\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663054007594708992\/ffW114NM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663054007594708992\/ffW114NM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296758281\/1446919371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":387,"favorite_count":166,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SedthawutAnusit","name":"T.S","id":296758281,"id_str":"296758281","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080116666"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076677120,"id_str":"663728232076677120","text":"RT @nurfakhirahanis: I really needs all this in my locker muahahahha http:\/\/t.co\/y6d3KcTJRU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":427976152,"id_str":"427976152","name":"\u3164","screen_name":"NikegirlYaya","location":null,"url":null,"description":"sorry, not ur type \u00d7","protected":false,"verified":false,"followers_count":4254,"friends_count":497,"listed_count":2,"favourites_count":2309,"statuses_count":44285,"created_at":"Sun Dec 04 05:54:40 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447269411074748416\/15n029Kc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447269411074748416\/15n029Kc.jpeg","profile_background_tile":false,"profile_link_color":"F253A8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651277852634054656\/bjppfcMm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651277852634054656\/bjppfcMm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/427976152\/1444208594","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Sep 22 08:45:58 +0000 2015","id":646244033027686400,"id_str":"646244033027686400","text":"I really needs all this in my locker muahahahha http:\/\/t.co\/y6d3KcTJRU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446114770,"id_str":"446114770","name":"f","screen_name":"nurfakhirahanis","location":null,"url":null,"description":"im @fakhira.nis","protected":false,"verified":false,"followers_count":1172,"friends_count":191,"listed_count":0,"favourites_count":1651,"statuses_count":18479,"created_at":"Sun Dec 25 09:40:10 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000011732841\/7c209e335731b5736a27c2dcc6a7d7e0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000011732841\/7c209e335731b5736a27c2dcc6a7d7e0.jpeg","profile_background_tile":true,"profile_link_color":"001122","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657957989664423936\/EFXRP8Ym_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657957989664423936\/EFXRP8Ym_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446114770\/1445540365","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16144,"favorite_count":4093,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":646243997128613888,"id_str":"646243997128613888","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","url":"http:\/\/t.co\/y6d3KcTJRU","display_url":"pic.twitter.com\/y6d3KcTJRU","expanded_url":"http:\/\/twitter.com\/nurfakhirahanis\/status\/646244033027686400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":646243997128613888,"id_str":"646243997128613888","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","url":"http:\/\/t.co\/y6d3KcTJRU","display_url":"pic.twitter.com\/y6d3KcTJRU","expanded_url":"http:\/\/twitter.com\/nurfakhirahanis\/status\/646244033027686400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nurfakhirahanis","name":"f","id":446114770,"id_str":"446114770","indices":[3,19]}],"symbols":[],"media":[{"id":646243997128613888,"id_str":"646243997128613888","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","url":"http:\/\/t.co\/y6d3KcTJRU","display_url":"pic.twitter.com\/y6d3KcTJRU","expanded_url":"http:\/\/twitter.com\/nurfakhirahanis\/status\/646244033027686400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":646244033027686400,"source_status_id_str":"646244033027686400","source_user_id":446114770,"source_user_id_str":"446114770"}]},"extended_entities":{"media":[{"id":646243997128613888,"id_str":"646243997128613888","indices":[69,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPfrfc8UYAAlB5X.jpg","url":"http:\/\/t.co\/y6d3KcTJRU","display_url":"pic.twitter.com\/y6d3KcTJRU","expanded_url":"http:\/\/twitter.com\/nurfakhirahanis\/status\/646244033027686400\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":646244033027686400,"source_status_id_str":"646244033027686400","source_user_id":446114770,"source_user_id_str":"446114770"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116658"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232089325568,"id_str":"663728232089325568","text":"RT @SheLovesKyy: hate Monday's w\/ a passion.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3052883544,"id_str":"3052883544","name":"m","screen_name":"ovomakayla","location":"the hive ","url":"https:\/\/twitter.com\/qwalitysam\/status\/661590475145682944","description":"@drake | black lives matter | georgia","protected":false,"verified":false,"followers_count":279,"friends_count":238,"listed_count":5,"favourites_count":3244,"statuses_count":4967,"created_at":"Sun Mar 01 16:05:24 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661028278489214976\/1Ur_kRw1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661028278489214976\/1Ur_kRw1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3052883544\/1446570418","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:46:59 +0000 2015","id":663699304519892992,"id_str":"663699304519892992","text":"hate Monday's w\/ a passion.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3085799771,"id_str":"3085799771","name":"sauce.","screen_name":"SheLovesKyy","location":"NC","url":"http:\/\/turnontweetnotifications.com","description":"|| Instagram: Sheloveskyy || Snapchat: Shelovesky || Musicaly: Sheloveskyy.","protected":false,"verified":false,"followers_count":2942,"friends_count":915,"listed_count":0,"favourites_count":1278,"statuses_count":2181,"created_at":"Wed Mar 11 06:08:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656195512803180546\/55OAJ-6N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656195512803180546\/55OAJ-6N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3085799771\/1445284203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SheLovesKyy","name":"sauce.","id":3085799771,"id_str":"3085799771","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116661"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232106229760,"id_str":"663728232106229760","text":"@xo_sonjaa @DeonDeWalt when I hit my trap dances ayeeeee","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717549184413696,"in_reply_to_status_id_str":"663717549184413696","in_reply_to_user_id":2816223278,"in_reply_to_user_id_str":"2816223278","in_reply_to_screen_name":"xo_sonjaa","user":{"id":98747858,"id_str":"98747858","name":"Killa Out da Bando","screen_name":"killer_kekee","location":"Gotham City","url":null,"description":"[OVO] [Drummer] [Official Trapper] [FBG]","protected":false,"verified":false,"followers_count":111,"friends_count":177,"listed_count":0,"favourites_count":431,"statuses_count":4135,"created_at":"Tue Dec 22 23:52:07 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/736469995\/311fa85e584a29deaf078de491fc1f07.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/736469995\/311fa85e584a29deaf078de491fc1f07.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659698147535495168\/8RpXJbr8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659698147535495168\/8RpXJbr8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98747858\/1442002779","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xo_sonjaa","name":"Sonja\u2654","id":2816223278,"id_str":"2816223278","indices":[0,10]},{"screen_name":"DeonDeWalt","name":"Deon DeWalt","id":320407957,"id_str":"320407957","indices":[11,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116665"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076849152,"id_str":"663728232076849152","text":"\u0130\u015f seyahati i\u00e7in bavul haz\u0131rlama \u00f6nerileri. Hemen izleyin\nhttps:\/\/t.co\/atVKEXgTgu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80237837,"id_str":"80237837","name":"Biletall.com.tr","screen_name":"biletall","location":"Turkey","url":"http:\/\/www.biletall.com","description":"Nereye gitmek istiyorsan oraya... 0 850 360 32 58","protected":false,"verified":false,"followers_count":1360,"friends_count":400,"listed_count":4,"favourites_count":52,"statuses_count":792,"created_at":"Tue Oct 06 06:51:30 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605984918707929088\/NM43919o.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605984918707929088\/NM43919o.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659992089262886912\/qtaGXSjg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659992089262886912\/qtaGXSjg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80237837\/1446189141","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/atVKEXgTgu","expanded_url":"http:\/\/www.uzmantv.com\/konu\/is-seyahati-icin-bavul-hazirlama-onerileri","display_url":"uzmantv.com\/konu\/is-seyaha\u2026","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080116658"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232110231552,"id_str":"663728232110231552","text":"@DpZynpdSU7HX3Hu \n\n\u5927\u962a\u304b\u306a\uff01\uff08\uff3e_\uff3e\uff09\n\u30d1\u30ca\u3068\u30b5\u30f3\u30c8\u306e\u8a66\u5408\u304c\u898b\u3066\u307f\u305f\u3044\u3051\u3069\u3001\u5168\u65e5\u672c\u9078\u624b\u304c\u591a\u3044\u304b\u3089\u500d\u7387\u9ad8\u3044\u3060\u308d\u3046\u306a\u3001\u3001\u3001\u3063\u3066\ud83d\ude22\n\n\u30c1\u30b1\u30c3\u30c8\u3063\u3066\u65e9\u3044\u3082\u3093\u9806\u306b\u8cfc\u5165\u3067\u304d\u308b\u306e\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663691656789536768,"in_reply_to_status_id_str":"663691656789536768","in_reply_to_user_id":3692794340,"in_reply_to_user_id_str":"3692794340","in_reply_to_screen_name":"DpZynpdSU7HX3Hu","user":{"id":3771848892,"id_str":"3771848892","name":"\u306c\u3046\u3002","screen_name":"9moga8","location":"\u597d\u7269 \u2192 \u30ef\u30f3\u30b3\u30fb\u30b0\u30e9\u30b5\u30f3\u30fb\u30a6\u30b5\u30ae\u30fb\u30d1\u30ea\u30d4","url":null,"description":"volley \/ next4 \/ \u9f8d\u795eNIPPON \/ \uff3b 98line \u9ad8\u6821\uff12\u5e74\u751f \uff3d\u5e74\u9f62\u95a2\u4fc2\u306a\u304f\u7d61\u3093\u3067\u304f\u308c\u308b\u3068\u5b09\u3057\u3044\u3067\u3059 \uff08\uff3e_\uff3e\uff09 \u2669 \u6fc3\u3044\u7d61\u307f \u30fb \u4e00\u7dd2\u306b\u89b3\u6226 \u30fb\u30d5\u30a9\u30ed\u30d0\u306f\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":134,"friends_count":165,"listed_count":3,"favourites_count":224,"statuses_count":1579,"created_at":"Sat Oct 03 16:45:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650369798568710144\/bfhtcG6n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650369798568710144\/bfhtcG6n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3771848892\/1445374783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DpZynpdSU7HX3Hu","name":"\u3086\u304b\u3053","id":3692794340,"id_str":"3692794340","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116666"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085266432,"id_str":"663728232085266432","text":"How well do you know that person you say you trust? This made my stomach turn. As the story\u2026 https:\/\/t.co\/UNKzyhiw5X","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":612797013,"id_str":"612797013","name":"I'm Ib","screen_name":"bizzyboneee","location":" ","url":"http:\/\/ibm.com","description":"\u2600love my family \u2665I discus ideas ,Paradise to my right and Hell to my left \u263a","protected":false,"verified":false,"followers_count":931,"friends_count":339,"listed_count":77,"favourites_count":80,"statuses_count":318090,"created_at":"Tue Jun 19 17:27:35 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657808414039527424\/0q4wQs75_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657808414039527424\/0q4wQs75_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/612797013\/1400228189","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UNKzyhiw5X","expanded_url":"http:\/\/goo.gl\/fb\/JUzmpC","display_url":"goo.gl\/fb\/JUzmpC","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072544256,"id_str":"663728232072544256","text":"\u308a\u3051\u3063\u3066\u3093\u306e\u4ffa\u3057\u304b\u3044\u306a\u3044\u3093\u3060\u3051\u3069\u30fb\u30fb\u30fb\uff1f\uff1f\n\u30a4\u30b1\u30e1\u30f3\u3055\u3093\u3069\u3053\uff1f\uff1f\u7206\u767a\u30b5\u30bb\u30eb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215259840,"id_str":"215259840","name":"\u8216\u4e16","screen_name":"DateSusimune","location":"\u7a7a\u306e\u5f7c\u65b9","url":null,"description":"NITKC\u306e\uff11\u5e74\uff01\u4e3b\u306b\u30a2\u30ca\u30ed\u30b0\u3067\u7d75\u3092\u63cf\u3044\u3066\u307e\u3059\uff01ONEPIECE\uff0f\u30dc\u30ab\u30ed\uff0f\u30ab\u30b2\u30d7\u30ed\uff0f\u30df\u30ab\u30b0\u30e9\uff0f\u30d2\u30ed\u30a2\u30ab\uff0f\u51b4\u3048\u30ab\u30ce\uff0f\u304c\u3063\u3053\u3046\u3050\u3089\u3057\uff01\uff0fCharlotte\uff0f\u3077\u3088\u30af\u30a8\uff0f\u5b9f\u6cc1\u52d5\u753b\u5927\u597d\u304d\u3067\u3059\uff01\u52a0\u85e4\u6075\u3061\u3083\u3093\u3001\u304f\u308b\u307f\u3061\u3083\u3093\u3001\u53cb\u5229\u3061\u3083\u3093\u5927\u597d\u304d\uff01\u307b\u307c100%\u30d5\u30a9\u30ed\u30d0\u81f4\u3057\u307e\u3059\uff01\u4f01\u6551\u4e18\u306f\u3044\u3064\u3082\u5143\u6c17\uff01\u9023\u8f09\u4e2d #\u4f01\u6551\u4e18\u306f\u3044\u3064\u3082\u5143\u6c17","protected":false,"verified":false,"followers_count":737,"friends_count":995,"listed_count":23,"favourites_count":1116,"statuses_count":20416,"created_at":"Sat Nov 13 12:48:46 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624039930444935168\/_G_IIGm2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624039930444935168\/_G_IIGm2.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661196846174310400\/nIfmEt4s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661196846174310400\/nIfmEt4s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215259840\/1445441327","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116657"} +{"delete":{"status":{"id":663725472254029825,"id_str":"663725472254029825","user_id":3179370503,"user_id_str":"3179370503"},"timestamp_ms":"1447080116847"}} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232089284609,"id_str":"663728232089284609","text":"@PSC_hikari (\ucca0\uc369 \ub9de\uace0 \ubbf8\uac04\uc744 \ucc0c\ud478\ub838\uc9c0\ub9cc \uc774\ub0b4 \ub364\ub364...) \uadfc\ub370 \uc65c. \ub610 \ubb50 \ud560\uac70\uc57c?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727534106808320,"in_reply_to_status_id_str":"663727534106808320","in_reply_to_user_id":4024588812,"in_reply_to_user_id_str":"4024588812","in_reply_to_screen_name":"PSC_hikari","user":{"id":4024657693,"id_str":"4024657693","name":"\uc9c4\uc800","screen_name":"PSC_ginger","location":"\ub10c \ub0b4 \uc774\ub984\uc744 \uc54c\uace0 \uc788\uc5c8\uc744\uc9c0\ub3c4 \ubaa8\ub974\uc9c0.","url":"http:\/\/wjdvnflvneld.wix.com\/personas#!blank\/scavq","description":"\u5bae\u8107 \u6566 \/ 3\ud559\ub144 \/ \ub0a8 \/ 186cm \/ \uc740\ub454\uc790","protected":false,"verified":false,"followers_count":23,"friends_count":24,"listed_count":1,"favourites_count":1311,"statuses_count":1703,"created_at":"Mon Oct 26 13:04:55 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"AA1212","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660472116198817792\/tXF97uvn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660472116198817792\/tXF97uvn_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PSC_hikari","name":"\uc624\uc624\ucfe0\ub85c \ud788\uce74\ub9ac","id":4024588812,"id_str":"4024588812","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080116661"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232106229761,"id_str":"663728232106229761","text":"\u0627\u0644\u0644\u0647\u0645 \u0644\u0627 \u062a\u0631\u064a\u0646\u0627 \u0641\u0649 \u0623\u062d\u0628\u062a\u0646\u0627 \u0628\u0623\u0633\u0627 \u064a\u0628\u0643\u064a\u0646\u0627 \u0648\u0644\u0627 \u062a\u0630\u064a\u0642\u0646\u0627 \u0645\u0631\u0627\u0631\u0629 \u0641\u0631\u0627\u0642\u0647\u0645 \u0623\u0628\u062f\u0627.. \u0627\u0644\u0644\u0647\u0645 \u0627\u062d\u0641\u0638\u0647\u0645 \u0645\u0646 \u0628\u064a\u0646 \u0623\u064a\u062f\u064a\u0647\u0645 \u0648 \u0645\u0646 \u062e\u0644\u0641\u0647\u0645\nhttps:\/\/t.co\/8CCDKtbu71","source":"\u003ca href=\"http:\/\/qurani.tv\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0642\u0631\u0622\u0646\u064a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2319794614,"id_str":"2319794614","name":"\u0645\u0647\u064a\u0634\u0627\u0646 +54\u0645\u0642\u0641\u0644 ","screen_name":"_Ma__x","location":"@Ur_miich","url":null,"description":"\u062a\u0639\u0627\u0644\u0648 \u0647\u0646\u0627","protected":false,"verified":false,"followers_count":55,"friends_count":132,"listed_count":0,"favourites_count":20,"statuses_count":11817,"created_at":"Sun Feb 02 11:00:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/431688718450458624\/iDdv_yjb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/431688718450458624\/iDdv_yjb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2319794614\/1391769110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/8CCDKtbu71","expanded_url":"http:\/\/du3a.org","display_url":"du3a.org","indices":[106,129]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080116665"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072527873,"id_str":"663728232072527873","text":"RT @sae517: https:\/\/t.co\/VdO3OY4Ors","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258694592,"id_str":"3258694592","name":"\u306f\u308b\u304d\u677e@\u82b1\u4eac\u9662\u3076\u3061\u304a\u304b\u4e38","screen_name":"halki1008","location":null,"url":"http:\/\/twpf.jp\/halki1008","description":"\u8af8\u4e8b\u60c5\u3067\u4f5c\u3063\u305f\u57a2\u306e\u306f\u308b\u304d\u3067\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u3068\u30d8\u30c3\u30c0\u30fc\u306f\u81ea\u4f5c\u3002\u672c\u57a2\u306b\u306a\u308b\u4e88\u5b9a\u300218\u2191\n\u30b8\u30e7\u30b8\u30e7\/BSR\/DB\/\u30c7\u30e5\u30e9\u30e9\u30e9\/\u304a\u305d\u677e\u3055\u3093\u597d\u304d\u3067\u3059\uff01\u6b86\u3069\u4f7f\u3063\u3066\u306a\u3044\u3051\u3069\u672c\u57a2\u306f@takasugisinya","protected":false,"verified":false,"followers_count":331,"friends_count":333,"listed_count":24,"favourites_count":2753,"statuses_count":7623,"created_at":"Sun Jun 28 08:44:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663481151231668224\/3Jv3Gqlu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663481151231668224\/3Jv3Gqlu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258694592\/1446181659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:24 +0000 2015","id":663726335487905792,"id_str":"663726335487905792","text":"https:\/\/t.co\/VdO3OY4Ors","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62446673,"id_str":"62446673","name":"\u7d17\u679d","screen_name":"sae517","location":"\u5343\u8449\u62f3\u5317\u897f\u90e8","url":"http:\/\/box-sss.com\/","description":"\u4eca\u66f4\u306a\u304c\u3089\u30b8\u30e7\u30b8\u30e7\u30cd\u30bf\u3084\u304b\u307e\u3057\u3044\u30a2\u30ab\u30a6\u30f3\u30c8\u3060\u305e\u3044\uff01 \u3064\u3044\u3077\u308d\u21d2http:\/\/twpf.jp\/sae517 \u30a2\u30a4\u30b3\u30f3\u306f\u7109\u6625\u6c0f(@D20ymgt)","protected":false,"verified":false,"followers_count":1010,"friends_count":547,"listed_count":58,"favourites_count":34959,"statuses_count":58223,"created_at":"Mon Aug 03 05:36:38 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B2B29","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463893832665284609\/1lKT-8eS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463893832665284609\/1lKT-8eS.png","profile_background_tile":true,"profile_link_color":"FF4685","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662261667401633792\/SWkoUpSm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662261667401633792\/SWkoUpSm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62446673\/1445774243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":33,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726319365033984,"id_str":"663726319365033984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","url":"https:\/\/t.co\/VdO3OY4Ors","display_url":"pic.twitter.com\/VdO3OY4Ors","expanded_url":"http:\/\/twitter.com\/sae517\/status\/663726335487905792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726319365033984,"id_str":"663726319365033984","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","url":"https:\/\/t.co\/VdO3OY4Ors","display_url":"pic.twitter.com\/VdO3OY4Ors","expanded_url":"http:\/\/twitter.com\/sae517\/status\/663726335487905792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sae517","name":"\u7d17\u679d","id":62446673,"id_str":"62446673","indices":[3,10]}],"symbols":[],"media":[{"id":663726319365033984,"id_str":"663726319365033984","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","url":"https:\/\/t.co\/VdO3OY4Ors","display_url":"pic.twitter.com\/VdO3OY4Ors","expanded_url":"http:\/\/twitter.com\/sae517\/status\/663726335487905792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663726335487905792,"source_status_id_str":"663726335487905792","source_user_id":62446673,"source_user_id_str":"62446673"}]},"extended_entities":{"media":[{"id":663726319365033984,"id_str":"663726319365033984","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHkiXUkAAyph5.jpg","url":"https:\/\/t.co\/VdO3OY4Ors","display_url":"pic.twitter.com\/VdO3OY4Ors","expanded_url":"http:\/\/twitter.com\/sae517\/status\/663726335487905792\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}},"source_status_id":663726335487905792,"source_status_id_str":"663726335487905792","source_user_id":62446673,"source_user_id_str":"62446673"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080116657"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232085086208,"id_str":"663728232085086208","text":"@lisakardos thanks for follow me mam. How are you?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":108196946,"in_reply_to_user_id_str":"108196946","in_reply_to_screen_name":"lisakardos","user":{"id":3289367810,"id_str":"3289367810","name":"chinmoy deka ","screen_name":"cdeka678","location":"Shillong, Meghalaya ","url":null,"description":"I am staying in shillong. I am a secular person. I would like to see secular democratic India . loved congress party. 29 September is my birthday","protected":false,"verified":false,"followers_count":478,"friends_count":871,"listed_count":3,"favourites_count":3046,"statuses_count":6769,"created_at":"Fri Jul 24 04:18:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624455206105788416\/ZIOG_g1C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624455206105788416\/ZIOG_g1C_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lisakardos","name":"Lisa Kardos, Ph.D.","id":108196946,"id_str":"108196946","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116660"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232076832768,"id_str":"663728232076832768","text":"@faithbaptistky thankful for the opportunity to worship w\/ the church last night and be present for the #baptism of our dear sister, Donna.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2833192922,"in_reply_to_user_id_str":"2833192922","in_reply_to_screen_name":"faithbaptistky","user":{"id":205854472,"id_str":"205854472","name":"John Paul Todd","screen_name":"e4unity","location":"Kentucky","url":"http:\/\/e4unity.wordpress.com\/","description":"Advocating unity and peace and the global Church as God's instrument for both w\/ dignity & respect 4 all.","protected":false,"verified":false,"followers_count":837,"friends_count":2003,"listed_count":24,"favourites_count":132,"statuses_count":7461,"created_at":"Thu Oct 21 19:05:59 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"9D582E","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"A9E8CC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1159498051\/twitterlogo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1159498051\/twitterlogo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/205854472\/1433981893","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6ffcf3b0b904bbcb","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6ffcf3b0b904bbcb.json","place_type":"admin","name":"Kentucky","full_name":"Kentucky, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-89.571510,36.497129],[-89.571510,39.147359],[-81.964971,39.147359],[-81.964971,36.497129]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"baptism","indices":[104,112]}],"urls":[],"user_mentions":[{"screen_name":"faithbaptistky","name":"Faith Baptist Church","id":2833192922,"id_str":"2833192922","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080116658"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232081043456,"id_str":"663728232081043456","text":"Pensa que eu to com uma fome fora do normal","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457857368,"id_str":"457857368","name":"Dienni","screen_name":"_dieniferlucass","location":null,"url":null,"description":"16, Ga\u00facha. || Snap: dieniferlucass \u2653\ufe0f","protected":false,"verified":false,"followers_count":1433,"friends_count":1428,"listed_count":1,"favourites_count":1415,"statuses_count":33774,"created_at":"Sat Jan 07 22:18:15 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000122997829\/09677051751c19ce1d2987642cedaeaf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000122997829\/09677051751c19ce1d2987642cedaeaf.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653945706588336128\/p5bkU706_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653945706588336128\/p5bkU706_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457857368\/1443134635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080116659"} +{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728232072507396,"id_str":"663728232072507396","text":"@candy_w0ta \u6211\u6162\u304b\u3041\u3001\u3046\u3061\u3082\u306a\u305c\u304b\u304a\u3068\u3068\u3044\u304b\u3089\u3053\u3053\u306e\u8089\u307e\u3093\u9802\u304f\u4e8b\u304c\u7d9a\u3044\u3066\u308b\u304b\u3089\u305f\u3079\u305f\u3044\u3051\u3069\u80c3\u304c\u3086\u308b\u3055\u306a\u3044\u306e\u3088\u306d\u3002 https:\/\/t.co\/ZnSDjpg3p8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663661563832762368,"in_reply_to_status_id_str":"663661563832762368","in_reply_to_user_id":151337697,"in_reply_to_user_id_str":"151337697","in_reply_to_screen_name":"candy_w0ta","user":{"id":1105662074,"id_str":"1105662074","name":"kazu *\u84ee\u83eflotus","screen_name":"hazzzzzu","location":null,"url":null,"description":"\u4eba\u306b\u512a\u3057\u304f\u3001\u5fc3\u3092\u67d4\u3089\u304b\u304f\u6b63\u76f4\u306b\u67d4\u8edf\u306b\u5fc3\u306e\u4fee\u884c\u4e2d\uff0aI love to take picture ,to see art and Zakka.I do some knitting and ssewing .\uff0a\u30b9\u30b3\u30fc\u30f3\u5927\u597d\u304d","protected":false,"verified":false,"followers_count":499,"friends_count":526,"listed_count":36,"favourites_count":62585,"statuses_count":70125,"created_at":"Sun Jan 20 07:50:18 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654028223139831808\/DRrMHnnv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654028223139831808\/DRrMHnnv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1105662074\/1444767653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"candy_w0ta","name":"\u30ad\u30e3\u30f3\u30c7\u30a3\uff20\u88c5\u5177\u5c4b\u98f4\u4e4b\u4e1e","id":151337697,"id_str":"151337697","indices":[0,11]}],"symbols":[],"media":[{"id":663728229379805184,"id_str":"663728229379805184","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTtuVEAAnidL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTtuVEAAnidL.jpg","url":"https:\/\/t.co\/ZnSDjpg3p8","display_url":"pic.twitter.com\/ZnSDjpg3p8","expanded_url":"http:\/\/twitter.com\/hazzzzzu\/status\/663728232072507396\/photo\/1","type":"photo","sizes":{"large":{"w":378,"h":371,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":378,"h":371,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728229379805184,"id_str":"663728229379805184","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTtuVEAAnidL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTtuVEAAnidL.jpg","url":"https:\/\/t.co\/ZnSDjpg3p8","display_url":"pic.twitter.com\/ZnSDjpg3p8","expanded_url":"http:\/\/twitter.com\/hazzzzzu\/status\/663728232072507396\/photo\/1","type":"photo","sizes":{"large":{"w":378,"h":371,"resize":"fit"},"small":{"w":340,"h":333,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":378,"h":371,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080116657"} +{"delete":{"status":{"id":505351627620892672,"id_str":"505351627620892672","user_id":1429821848,"user_id_str":"1429821848"},"timestamp_ms":"1447080116897"}} +{"delete":{"status":{"id":659795908503187457,"id_str":"659795908503187457","user_id":3310346455,"user_id_str":"3310346455"},"timestamp_ms":"1447080117154"}} +{"delete":{"status":{"id":663728227911766016,"id_str":"663728227911766016","user_id":3051931218,"user_id_str":"3051931218"},"timestamp_ms":"1447080117190"}} +{"delete":{"status":{"id":663724855695704065,"id_str":"663724855695704065","user_id":3059511797,"user_id_str":"3059511797"},"timestamp_ms":"1447080117255"}} +{"delete":{"status":{"id":589836968801894401,"id_str":"589836968801894401","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080117365"}} +{"delete":{"status":{"id":663663576889077760,"id_str":"663663576889077760","user_id":322317859,"user_id_str":"322317859"},"timestamp_ms":"1447080117442"}} +{"delete":{"status":{"id":636617177966231556,"id_str":"636617177966231556","user_id":3273361316,"user_id_str":"3273361316"},"timestamp_ms":"1447080117606"}} +{"delete":{"status":{"id":663725396748140545,"id_str":"663725396748140545","user_id":215133373,"user_id_str":"215133373"},"timestamp_ms":"1447080117680"}} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271116289,"id_str":"663728236271116289","text":"RT @345jm_j: @z6a07_asiri @Its_Yasi \u0627\u0644\u0641 \u0645\u0628\u0631\u0648\u0643 \u0641\u064a\u0635\u0644 \u062d\u0633\u0627\u0628\u0643 \u0627\u0643\u062b\u0631 \u0645\u0646 \u0631\u0627\u0626\u0639 \u0648\u0627\u062e\u0644\u0627\u0642\u0643 \u0648\u0644\u0627 \u0627\u0631\u0648\u0639 \u0634\u0627\u0647\u062f\u064a\u0646 \u0644\u0643 \u0628\u0627\u0644\u062e\u064a\u0631 \u064a\u0627\u0631\u0628\ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1098651690,"id_str":"1098651690","name":"\u03c1\u0251\u0360\u0438\u0360\u0251d\u0360\u03c3l\u0360\u27b0","screen_name":"Its_Yasi","location":" 1986\u0645...\u21ab\u060f\u0640\u0627\u0644\u0645 \u0622\u062e\u0631\u21ac ","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u270d \u0627\u0644\u062a\u062c\u0627\u0647\u0644 (\u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0639 \u0641\u0642\u0631\u0627\u0621 \u0627\u0644\u0627\u062f\u0628) \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\u0627\u0631\u062a\u0648\u062a \u0644\u0643\u0644 \u0645\u0627\u064a\u0631\u0648\u0642 \u0644\u064a\n\n\n\n\n \u2b55\u0627\u0644\u062e\u0627\u0635 \u0644\u0644\u062a\u0628\u0627\u062f\u06445\/5 \u2b55","protected":false,"verified":false,"followers_count":5012,"friends_count":3877,"listed_count":3,"favourites_count":692,"statuses_count":9704,"created_at":"Thu Jan 17 16:40:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614619421462523904\/oEPBz-S2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614619421462523904\/oEPBz-S2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1098651690\/1438547915","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728115168972800,"id_str":"663728115168972800","text":"@z6a07_asiri @Its_Yasi \u0627\u0644\u0641 \u0645\u0628\u0631\u0648\u0643 \u0641\u064a\u0635\u0644 \u062d\u0633\u0627\u0628\u0643 \u0627\u0643\u062b\u0631 \u0645\u0646 \u0631\u0627\u0626\u0639 \u0648\u0627\u062e\u0644\u0627\u0642\u0643 \u0648\u0644\u0627 \u0627\u0631\u0648\u0639 \u0634\u0627\u0647\u062f\u064a\u0646 \u0644\u0643 \u0628\u0627\u0644\u062e\u064a\u0631 \u064a\u0627\u0631\u0628\ud83c\udf39","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727387574673408,"in_reply_to_status_id_str":"663727387574673408","in_reply_to_user_id":890803650,"in_reply_to_user_id_str":"890803650","in_reply_to_screen_name":"z6a07_asiri","user":{"id":3270623570,"id_str":"3270623570","name":"\u063a\u062f\u0627\u064b \u0623\u062c\u0645\u0644\u2728","screen_name":"345jm_j","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u0639\u0637\u0631 \u0627\u0644\u0643\u0648\u0646......!! \u064a\u062a\u0628\u062f\u0644 \u0627\u0644\u0648\u0642\u062a \u0648\u0623\u062e\u0644\u0627\u0642\u064a \u0647\u064a \u0623\u062e\u0644\u0627\u0642\u064a ......!!! \u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0647....!!","protected":false,"verified":false,"followers_count":6780,"friends_count":4847,"listed_count":8,"favourites_count":3530,"statuses_count":20156,"created_at":"Tue Jul 07 03:57:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657172596446724097\/8E0bXRlE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657172596446724097\/8E0bXRlE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270623570\/1445104462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"z6a07_asiri","name":"\u0639\u0644\u064a \u0639\u0633\u064a\u0631\u064a","id":890803650,"id_str":"890803650","indices":[0,12]},{"screen_name":"Its_Yasi","name":"\u03c1\u0251\u0360\u0438\u0360\u0251d\u0360\u03c3l\u0360\u27b0","id":1098651690,"id_str":"1098651690","indices":[13,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"345jm_j","name":"\u063a\u062f\u0627\u064b \u0623\u062c\u0645\u0644\u2728","id":3270623570,"id_str":"3270623570","indices":[3,11]},{"screen_name":"z6a07_asiri","name":"\u0639\u0644\u064a \u0639\u0633\u064a\u0631\u064a","id":890803650,"id_str":"890803650","indices":[13,25]},{"screen_name":"Its_Yasi","name":"\u03c1\u0251\u0360\u0438\u0360\u0251d\u0360\u03c3l\u0360\u27b0","id":1098651690,"id_str":"1098651690","indices":[26,35]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266921984,"id_str":"663728236266921984","text":"RT @liviaa_h: @aalmeidasuellen e essa foto a\u00ed baby reconhe\u00e7o esse lugar","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151524076,"id_str":"151524076","name":".","screen_name":"aalmeidasuellen","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":626,"friends_count":512,"listed_count":3,"favourites_count":463,"statuses_count":55732,"created_at":"Thu Jun 03 16:06:56 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000301","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000043450200\/72f9f7f173bd20cc3559a7b975d8fa6e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000043450200\/72f9f7f173bd20cc3559a7b975d8fa6e.jpeg","profile_background_tile":true,"profile_link_color":"DE7878","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"46AAD9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721338645979136\/dWfu0LeR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721338645979136\/dWfu0LeR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151524076\/1375553190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:49 +0000 2015","id":663725937859690496,"id_str":"663725937859690496","text":"@aalmeidasuellen e essa foto a\u00ed baby reconhe\u00e7o esse lugar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":151524076,"in_reply_to_user_id_str":"151524076","in_reply_to_screen_name":"aalmeidasuellen","user":{"id":213075707,"id_str":"213075707","name":"li via","screen_name":"liviaa_h","location":"canoas","url":null,"description":null,"protected":false,"verified":false,"followers_count":1532,"friends_count":965,"listed_count":4,"favourites_count":166,"statuses_count":70012,"created_at":"Sun Nov 07 22:16:29 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000159375057\/LL_kTMwG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000159375057\/LL_kTMwG.jpeg","profile_background_tile":true,"profile_link_color":"990000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661288162216574976\/AJXZ8UW1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661288162216574976\/AJXZ8UW1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/213075707\/1412979948","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aalmeidasuellen","name":".","id":151524076,"id_str":"151524076","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"liviaa_h","name":"li via","id":213075707,"id_str":"213075707","indices":[3,12]},{"screen_name":"aalmeidasuellen","name":".","id":151524076,"id_str":"151524076","indices":[14,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236275347456,"id_str":"663728236275347456","text":"@futurejarhead67 \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728187038441472,"in_reply_to_status_id_str":"663728187038441472","in_reply_to_user_id":597953099,"in_reply_to_user_id_str":"597953099","in_reply_to_screen_name":"futurejarhead67","user":{"id":24014751,"id_str":"24014751","name":"Erin Fair","screen_name":"erinfair_","location":null,"url":"http:\/\/no-itsfine.tumblr.com","description":"Ohio University '17 | Sport Management & Spanish | Still I rise | @DavidJericho13","protected":false,"verified":false,"followers_count":896,"friends_count":523,"listed_count":5,"favourites_count":18801,"statuses_count":28518,"created_at":"Thu Mar 12 19:32:11 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603572471\/9gvhvft0mw16dqhzbpx6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603572471\/9gvhvft0mw16dqhzbpx6.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643088749993985\/xWzANKeA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643088749993985\/xWzANKeA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/24014751\/1446831114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"33833c3421cbb25e","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/33833c3421cbb25e.json","place_type":"city","name":"Marietta","full_name":"Marietta, OH","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-81.502155,39.377658],[-81.502155,39.491007],[-81.395312,39.491007],[-81.395312,39.377658]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"futurejarhead67","name":"Steven Perry","id":597953099,"id_str":"597953099","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080117659"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266979328,"id_str":"663728236266979328","text":"RT @ExamenDeRisa: CUANDO ACABAS UN EXAMEN, LA GENTE SE PONE A HABLAR DE LAS RESPUESTAS Y NO HAS PUESTO NADA NI PARECIDO. https:\/\/t.co\/BE2vI\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2449708988,"id_str":"2449708988","name":"Bro#4","screen_name":"LautiiFicco","location":"Sarand\u00ed, Argentina","url":"https:\/\/www.facebook.com\/lautaro.ficco","description":"15.\nwpp: 1121717416\nig: lautificco","protected":false,"verified":false,"followers_count":736,"friends_count":579,"listed_count":2,"favourites_count":5373,"statuses_count":8604,"created_at":"Thu Apr 17 13:05:33 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551193809233510403\/TwSr7GcQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551193809233510403\/TwSr7GcQ.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652949647351226368\/NHSYqml5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652949647351226368\/NHSYqml5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2449708988\/1442274982","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:17 +0000 2015","id":663724795301904384,"id_str":"663724795301904384","text":"CUANDO ACABAS UN EXAMEN, LA GENTE SE PONE A HABLAR DE LAS RESPUESTAS Y NO HAS PUESTO NADA NI PARECIDO. https:\/\/t.co\/BE2vILEX3W","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2391062131,"id_str":"2391062131","name":"Examenes","screen_name":"ExamenDeRisa","location":"NO OFICIAL","url":null,"description":"Las mejores respuestas de los examens","protected":false,"verified":false,"followers_count":24026,"friends_count":161,"listed_count":21,"favourites_count":518,"statuses_count":726,"created_at":"Sat Mar 15 13:47:59 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723801021161473\/wjLA27QX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723801021161473\/wjLA27QX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2391062131\/1447079158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":208,"favorite_count":146,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724794173616128,"id_str":"663724794173616128","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","url":"https:\/\/t.co\/BE2vILEX3W","display_url":"pic.twitter.com\/BE2vILEX3W","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663724795301904384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":599,"h":606,"resize":"fit"},"medium":{"w":599,"h":606,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724794173616128,"id_str":"663724794173616128","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","url":"https:\/\/t.co\/BE2vILEX3W","display_url":"pic.twitter.com\/BE2vILEX3W","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663724795301904384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":599,"h":606,"resize":"fit"},"medium":{"w":599,"h":606,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ExamenDeRisa","name":"Examenes","id":2391062131,"id_str":"2391062131","indices":[3,16]}],"symbols":[],"media":[{"id":663724794173616128,"id_str":"663724794173616128","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","url":"https:\/\/t.co\/BE2vILEX3W","display_url":"pic.twitter.com\/BE2vILEX3W","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663724795301904384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":599,"h":606,"resize":"fit"},"medium":{"w":599,"h":606,"resize":"fit"}},"source_status_id":663724795301904384,"source_status_id_str":"663724795301904384","source_user_id":2391062131,"source_user_id_str":"2391062131"}]},"extended_entities":{"media":[{"id":663724794173616128,"id_str":"663724794173616128","indices":[121,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGLwlWcAARXNS.jpg","url":"https:\/\/t.co\/BE2vILEX3W","display_url":"pic.twitter.com\/BE2vILEX3W","expanded_url":"http:\/\/twitter.com\/ExamenDeRisa\/status\/663724795301904384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":343,"resize":"fit"},"large":{"w":599,"h":606,"resize":"fit"},"medium":{"w":599,"h":606,"resize":"fit"}},"source_status_id":663724795301904384,"source_status_id_str":"663724795301904384","source_user_id":2391062131,"source_user_id_str":"2391062131"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296318977,"id_str":"663728236296318977","text":"This weeks going to suck","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":30477460,"id_str":"30477460","name":"Ariana Gabriele","screen_name":"Arianasamazing","location":null,"url":null,"description":"X.XI.XI \u2764","protected":false,"verified":false,"followers_count":492,"friends_count":511,"listed_count":2,"favourites_count":14467,"statuses_count":35195,"created_at":"Sat Apr 11 16:45:16 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D8C0A8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/714432981\/d43b26227b01283d31ffd3465d4db32d.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/714432981\/d43b26227b01283d31ffd3465d4db32d.gif","profile_background_tile":true,"profile_link_color":"A83000","profile_sidebar_border_color":"900000","profile_sidebar_fill_color":"C00030","profile_text_color":"C06000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653429023784194048\/EHAF4Vye_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653429023784194048\/EHAF4Vye_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/30477460\/1391395464","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266921985,"id_str":"663728236266921985","text":"RT @humdaora: - vou dormir, bjs, te amo\n\n- eu tbm\n\n- vc tbm me ama?\n\n-nao, tbm vou dormir","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3431586771,"id_str":"3431586771","name":"Melanie reali","screen_name":"melanie_reali","location":null,"url":null,"description":"whats-4998269953 \nsnap-melaniereali1","protected":false,"verified":false,"followers_count":18,"friends_count":66,"listed_count":0,"favourites_count":117,"statuses_count":118,"created_at":"Wed Aug 19 15:36:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661699186862239745\/WhG9Hi0r_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661699186862239745\/WhG9Hi0r_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 13:05:06 +0000 2015","id":662616698424430596,"id_str":"662616698424430596","text":"- vou dormir, bjs, te amo\n\n- eu tbm\n\n- vc tbm me ama?\n\n-nao, tbm vou dormir","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1118076962,"id_str":"1118076962","name":"lindu","screen_name":"humdaora","location":null,"url":"http:\/\/instagram.com\/humdaora","description":"sendo lindu em 140 caracteres | \u2709 Interesses Publicit\u00e1rios: contatohumdaora@outlook.com \u2709","protected":false,"verified":false,"followers_count":1226529,"friends_count":70,"listed_count":777,"favourites_count":78,"statuses_count":31305,"created_at":"Fri Jan 25 00:48:18 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450430693982470144\/niIHJwwR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450430693982470144\/niIHJwwR.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539179744290287616\/8Q_OBvcT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539179744290287616\/8Q_OBvcT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1118076962\/1408848189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":757,"favorite_count":725,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"humdaora","name":"lindu","id":1118076962,"id_str":"1118076962","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296314880,"id_str":"663728236296314880","text":"@MatiBagnato Esperemos que la C\u00e1mara te proteja de este asesino","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661944261810745349,"in_reply_to_status_id_str":"661944261810745349","in_reply_to_user_id":133745708,"in_reply_to_user_id_str":"133745708","in_reply_to_screen_name":"MatiBagnato","user":{"id":165907215,"id_str":"165907215","name":"Posquiroli","screen_name":"Posquiroli","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":496,"friends_count":740,"listed_count":2,"favourites_count":2443,"statuses_count":13787,"created_at":"Mon Jul 12 21:13:22 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625068607312150530\/UkEhbPwe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625068607312150530\/UkEhbPwe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165907215\/1422408703","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MatiBagnato","name":"Matias Bagnato","id":133745708,"id_str":"133745708","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304666625,"id_str":"663728236304666625","text":"Check out \"The Juice\" for information about Vice President @JoeBiden's visit, part of \"It's On Us\" week https:\/\/t.co\/1IVvb7TWjr #itsonus","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19380817,"id_str":"19380817","name":"The NewsHouse","screen_name":"NewsHouse","location":"Syracuse, NY","url":"http:\/\/thenewshouse.com","description":"Your Resource for News, Entertainment, and What's Happening In and Around Syracuse University \/ Tweets by @LouiseAtCuse","protected":false,"verified":false,"followers_count":4210,"friends_count":223,"listed_count":262,"favourites_count":181,"statuses_count":4285,"created_at":"Fri Jan 23 04:14:14 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/15059172\/117260930_300.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/15059172\/117260930_300.jpg","profile_background_tile":false,"profile_link_color":"B0B0B0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FE7434","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2841640763\/53d44b99240cd0e222bf9bd5550f4ecb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2841640763\/53d44b99240cd0e222bf9bd5550f4ecb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19380817\/1446742882","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"itsonus","indices":[128,136]}],"urls":[{"url":"https:\/\/t.co\/1IVvb7TWjr","expanded_url":"http:\/\/ow.ly\/Uq3VM","display_url":"ow.ly\/Uq3VM","indices":[104,127]}],"user_mentions":[{"screen_name":"JoeBiden","name":"Joe Biden","id":939091,"id_str":"939091","indices":[59,68]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117666"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296318976,"id_str":"663728236296318976","text":"RT @vera_fany: \ud83d\udd2eBIG FOLLOWTRICK \ud83d\udd2e\n\nRetweet se vuoi aumentare,segui chi\nRT, me e @louisfmvoned ricambia.\nSe segui le regole funziona!\n\nVamos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2864071569,"id_str":"2864071569","name":"FABB","screen_name":"vivendodipayne","location":"New York, USA","url":null,"description":"sei quel sorriso in una valanga di lacrime. @Real_Liam_Payne\u2022il segreto per la felicit\u00e1 si chiama Nutella.\u2728","protected":false,"verified":false,"followers_count":4714,"friends_count":4365,"listed_count":6,"favourites_count":866,"statuses_count":5350,"created_at":"Thu Nov 06 17:12:38 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656108617750487040\/g_zpU6km_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656108617750487040\/g_zpU6km_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2864071569\/1445263554","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728197046050816,"id_str":"663728197046050816","text":"\ud83d\udd2eBIG FOLLOWTRICK \ud83d\udd2e\n\nRetweet se vuoi aumentare,segui chi\nRT, me e @louisfmvoned ricambia.\nSe segui le regole funziona!\n\nVamos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":323944058,"id_str":"323944058","name":"Fany Vera","screen_name":"vera_fany","location":"Paraguay ","url":null,"description":"#FOLLOWTRICK \n#TEAMFOLLOWBACK","protected":false,"verified":false,"followers_count":210572,"friends_count":209634,"listed_count":355,"favourites_count":79739,"statuses_count":85247,"created_at":"Sat Jun 25 18:15:47 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587476741\/x1nznbujm51avotq6ghl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587476741\/x1nznbujm51avotq6ghl.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630731276199329792\/qLA1Q5QR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630731276199329792\/qLA1Q5QR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/323944058\/1435663898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"louisfmvoned","name":"Louis Tomlinson","id":3421041863,"id_str":"3421041863","indices":[65,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vera_fany","name":"Fany Vera","id":323944058,"id_str":"323944058","indices":[3,13]},{"screen_name":"louisfmvoned","name":"Louis Tomlinson","id":3421041863,"id_str":"3421041863","indices":[80,93]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236292128768,"id_str":"663728236292128768","text":"RT @natsugoguma: 3\u65e5 CN\u9577\u91ce\n5\u65e5 CN\u4ee3\u3005\u6728\n6\u65e5 EXO\u6771\u4eac\u30c9\u30fc\u30e0\n8\u65e5 EXO\u6771\u4eac\u30c9\u30fc\u30e0\n\n\u3010\u53c2\u6226\u4e88\u5b9a\u3011\n12\/3 CN\u6b66\u9053\u9928\n12\u65e5 KINGDOM\n13\u65e5 KINGDOM\n24\u65e5 SNSD\u3055\u3044\u305f\u307e\n#Myschedule","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2610236445,"id_str":"2610236445","name":"yong yong San","screen_name":"yongyongsan","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":68,"listed_count":7,"favourites_count":1148,"statuses_count":33650,"created_at":"Sun Jun 15 02:16:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/556578941188976643\/YzVumYfc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/556578941188976643\/YzVumYfc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2610236445\/1439116173","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:12 +0000 2015","id":663726538425106432,"id_str":"663726538425106432","text":"3\u65e5 CN\u9577\u91ce\n5\u65e5 CN\u4ee3\u3005\u6728\n6\u65e5 EXO\u6771\u4eac\u30c9\u30fc\u30e0\n8\u65e5 EXO\u6771\u4eac\u30c9\u30fc\u30e0\n\n\u3010\u53c2\u6226\u4e88\u5b9a\u3011\n12\/3 CN\u6b66\u9053\u9928\n12\u65e5 KINGDOM\n13\u65e5 KINGDOM\n24\u65e5 SNSD\u3055\u3044\u305f\u307e\n#Myschedule","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":811726566,"id_str":"811726566","name":"\u2606*:.\uff61.\u306a\u3064\u3053\u3050\u307e.\uff61.:*\u2606","screen_name":"natsugoguma","location":"\u9996\u304b\u3089\u4e0b\u304c\u3063\u305f\u30bf\u30de\u30de\u306e\u30c1\u30f3\u30b0","url":null,"description":"CNBLUE's Music makes me HIGH\uff01\uff01\uff01 BOICE JP('11.09\u301c) & SONE JP('12.09\u301c) \u2661Goguma\u2661DeerBurning\u2661HyukStal\u2661\u203b\u30d5\u30a9\u30ed\u30d0\u306f\u4ef2\u826f\u304f\u306a\u3063\u3066\u304b\u3089^^\u672a\u6210\u5e74\u306f\u3054\u3081\u3093\u306a\u3055\u3044\u3002\u6328\u62f6\u7121\u3057\u306e\u9375\u4ed8\u304d\u306f\u5373\u30d6\u30ed\u30c3\u30af\u3002\u5984\u60f3\u3067\u30e2\u30ce\u3092\u8a00\u3046\u306e\u3067\u82e6\u624b\u306a\u4eba\u306f\u30b9\u30eb\u30fc\uff01","protected":false,"verified":false,"followers_count":1242,"friends_count":118,"listed_count":11,"favourites_count":1318,"statuses_count":18105,"created_at":"Sat Sep 08 21:27:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462167702618906624\/pfNvhmG4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462167702618906624\/pfNvhmG4.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660481178089029633\/6xHEDuXu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660481178089029633\/6xHEDuXu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/811726566\/1438696412","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Myschedule","indices":[97,108]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Myschedule","indices":[114,125]}],"urls":[],"user_mentions":[{"screen_name":"natsugoguma","name":"\u2606*:.\uff61.\u306a\u3064\u3053\u3050\u307e.\uff61.:*\u2606","id":811726566,"id_str":"811726566","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117663"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236275322880,"id_str":"663728236275322880","text":"RT @NjayamJnr: Ladies, iyaphuma le MCM noma?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3645706516,"id_str":"3645706516","name":"Owen","screen_name":"Bozzar_","location":"ekasi ","url":null,"description":"My tweets are not up for debate coz u can't debate facts","protected":false,"verified":false,"followers_count":206,"friends_count":66,"listed_count":1,"favourites_count":442,"statuses_count":2605,"created_at":"Sun Sep 13 20:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660510456310865924\/xzUMu2N__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660510456310865924\/xzUMu2N__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3645706516\/1446986719","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:23:20 +0000 2015","id":663632952396525568,"id_str":"663632952396525568","text":"Ladies, iyaphuma le MCM noma?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2522943459,"id_str":"2522943459","name":"Njayummy","screen_name":"NjayamJnr","location":null,"url":null,"description":"Listen fam, if my girl cheating on me and you tell me. U owe me a new girl","protected":false,"verified":false,"followers_count":2694,"friends_count":233,"listed_count":11,"favourites_count":4356,"statuses_count":49401,"created_at":"Fri May 02 09:11:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663347443900268545\/_gc7O5kf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663347443900268545\/_gc7O5kf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2522943459\/1447009962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NjayamJnr","name":"Njayummy","id":2522943459,"id_str":"2522943459","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080117659"} +{"delete":{"status":{"id":661142468834934784,"id_str":"661142468834934784","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080117756"}} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236279562240,"id_str":"663728236279562240","text":"\u0634\u0641 \u0627\u0644\u062b\u0648\u0631 !!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2244839010,"id_str":"2244839010","name":"Donis #\u0642\u0648\u0627\u0646\u0632\u0648","screen_name":"DonisHFC","location":null,"url":null,"description":"\u0627\u0644\u0647\u0644\u0627\u0644 \u0648\u0627\u0644\u0645\u0627\u0646\u064a\u0648 \u0648\u0627\u0644\u0628\u0631\u0634\u0627 .. \u0644\u0627 \u0644\u0644\u0627\u0646\u0628\u0637\u0627\u062d\u064a\u064a\u0646 \u0644\u0627 \u0644\u0644\u062d\u0641\u0627\u064a\u0638 | \u0645\u0635\u0645\u0645 \u0648\u0627\u063a\u0644\u0628 \u0627\u0639\u0645\u0627\u0644\u064a \u0628\u0627\u0644\u0645\u0641\u0636\u0644\u0647 ..","protected":false,"verified":false,"followers_count":387,"friends_count":394,"listed_count":3,"favourites_count":388,"statuses_count":18262,"created_at":"Sat Dec 14 02:16:01 +0000 2013","utc_offset":10800,"time_zone":"Minsk","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663037765576060928\/4-lKToeF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663037765576060928\/4-lKToeF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2244839010\/1446645146","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080117660"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236283588612,"id_str":"663728236283588612","text":"\uff17\uff0f\uff17","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":504563768,"id_str":"504563768","name":"\u30ce\u30ad\u30ba\u30b9\uff08\u4e2d\u5099\u6e96\uff09\u54c1\u5c0f\uff0b\u7528\u5c55\u51fa","screen_name":"suzuki_no_","location":"\u3068\u308a\u306e\u80c3\u306e\u4e2d","url":"http:\/\/suzuki-no.jimdo.com\/","description":"\u6e96\u5099\u4e2d\u301c \u3053\u3063\u305d\u308a\u6cb9\u7d75\u63cf\u3044\u3066\u307e\u3059\u3002\u9177\u3044\u7d75\u3067\u3059\u304c\u304a\u6c17\u8efd\u306b\u301c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u6d3b\u52d5\u5831\u544a\u3084\u30e1\u30e2\u5e33\u4ee3\u308f\u308a\u306b\u2026\u2026","protected":false,"verified":false,"followers_count":487,"friends_count":503,"listed_count":7,"favourites_count":81,"statuses_count":1055,"created_at":"Sun Feb 26 14:20:33 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645767861\/04aui0bcn7db1r7gcfvs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645767861\/04aui0bcn7db1r7gcfvs.jpeg","profile_background_tile":false,"profile_link_color":"110B4F","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1855324481\/112_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1855324481\/112_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/504563768\/1402213755","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080117661"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266807296,"id_str":"663728236266807296","text":"\u9752\u306e\u4e00\u756a\u661f\u3081\u3063\u3061\u3083\u3059\u304d \u548c\u30ed\u30c3\u30af\u3063\u3066\u805e\u3044\u3066\u3066\u6c17\u6301\u3061\u3044\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908220659,"id_str":"2908220659","name":"\u722a\u6b62\u6c34","screen_name":"813lskc8873","location":null,"url":null,"description":"\u65e5\u5e38\u30c4\u30a4\u30fc\u30c8\u3092\u5782\u308c\u6d41\u3059\u6c60\u888b\u6676\u8449\u306e\u52a9\u624b \u30e9\u30a4\u30c0\u30fc\u59c9\u3055\u3093is\u904b\u547d\u306e\u4eba \u7121\u6c17\u529b","protected":false,"verified":false,"followers_count":110,"friends_count":308,"listed_count":2,"favourites_count":1881,"statuses_count":2599,"created_at":"Sun Nov 23 14:10:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/536523399195934720\/3Fs7bKVw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/536523399195934720\/3Fs7bKVw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908220659\/1440264251","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236292153344,"id_str":"663728236292153344","text":"https:\/\/t.co\/mLCRoBGNop \n\u0628\u0646\u062a \u0645\u0635\u0631\u064a\u0629 \u062a\u0633\u062a\u0639\u0631\u0636 \u062c\u0633\u0645\u0647\u0627 \u0644\u062d\u0628\u064a\u0628\u0627 https:\/\/t.co\/ngeAvoJW81 via @scoopit","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3185927965,"id_str":"3185927965","name":"Jeronym Erangey","screen_name":"ciwurutabap","location":"Wauseon, OH","url":null,"description":"hi this is the real fan of nia from dance moms! Never stop following your dreams! :)","protected":false,"verified":false,"followers_count":17,"friends_count":128,"listed_count":0,"favourites_count":0,"statuses_count":33,"created_at":"Tue May 05 06:19:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618738721752420352\/tuSekCku_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618738721752420352\/tuSekCku_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3185927965\/1436031920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mLCRoBGNop","expanded_url":"http:\/\/goo.gl\/5EV52d","display_url":"goo.gl\/5EV52d","indices":[0,23]},{"url":"https:\/\/t.co\/ngeAvoJW81","expanded_url":"http:\/\/sco.lt\/8qjvPd","display_url":"sco.lt\/8qjvPd","indices":[55,78]}],"user_mentions":[{"screen_name":"scoopit","name":"Scoop.it","id":209484168,"id_str":"209484168","indices":[83,91]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080117663"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271026178,"id_str":"663728236271026178","text":"\u5ec3\u68c4\u3067\u3053\u3063\u305d\u308a\u4f5c\u3063\u305f\u30ed\u30fc\u30b9\u30c8\u30d3\u30fc\u30d5\u306e\u30db\u30c3\u30c8\u30b5\u30f3\u30c9\u304c\u6211\u306a\u304c\u3089\u3081\u3061\u3083\u3046\u307e\u3060\u3063\u305f\u301c\u301c\u5f8c\u8f29\u304b\u3089\u3082\u5927\u7d76\u8cdb\u3067\u3046\u308c\u3057\u3046\u308c\u3057\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1595344633,"id_str":"1595344633","name":"\u306a","screen_name":"dscsgr_","location":"\u304a\u304a\u3044\u305f","url":"http:\/\/www.lastfm.jp\/user\/dscsgr_","description":"\u306a\u3063\u3061\u3083\u3093\u3067\u3059\u3002\u3053\u3081\u3053\u306e\u3072\u3068\u3067\u3059\u3002\u30dd\u30c3\u30d7\u3068\u30ed\u30c3\u30af\u3068\u7f8e\u5473\u3057\u3044\u3054\u98ef\u3002 https:\/\/Instagram.com\/5mnttt\/","protected":false,"verified":false,"followers_count":216,"friends_count":248,"listed_count":3,"favourites_count":5050,"statuses_count":9175,"created_at":"Mon Jul 15 08:18:31 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/559376357709201408\/roZMeKQX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/559376357709201408\/roZMeKQX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1595344633\/1399869817","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266819584,"id_str":"663728236266819584","text":"@sa_10_ko \u304a\u304f\u308a\u307e\u3057\u305f\u30fc\u30fc\uff01Ruu.\u3067\u3059\uff01\n\u3088\u304b\u3063\u305f\u3089\u304a\u306d\u304c\u3044\u3057\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727709806137344,"in_reply_to_status_id_str":"663727709806137344","in_reply_to_user_id":3243509796,"in_reply_to_user_id_str":"3243509796","in_reply_to_screen_name":"sa_10_ko","user":{"id":3315750032,"id_str":"3315750032","name":"\u308b\u3093","screen_name":"lit8mee","location":"\u30ce\u30a2\u306e\u65b9\u821f","url":null,"description":"\u30ea\u30c8\u30eb\u30ce\u30a2ID:951498 \u7121\u8ab2\u91d1\u3053\u3064\u3053\u3064 (\u30c0\u30a4\u30b9\u306e\u795e:Ruu.)","protected":false,"verified":false,"followers_count":276,"friends_count":290,"listed_count":9,"favourites_count":1722,"statuses_count":2800,"created_at":"Sat Aug 15 07:30:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645271660103208960\/dlQGRKbb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645271660103208960\/dlQGRKbb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315750032\/1446685516","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sa_10_ko","name":"\u8336\u5e97","id":3243509796,"id_str":"3243509796","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117657"} +{"delete":{"status":{"id":661131408472018944,"id_str":"661131408472018944","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080117759"}} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236279402496,"id_str":"663728236279402496","text":"@Hosa_II08 \u3044\u3084\u3063\u3075\u3045\u30fc\u3002\u8208\u596e\u3059\u308b\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726490597519362,"in_reply_to_status_id_str":"663726490597519362","in_reply_to_user_id":3247354946,"in_reply_to_user_id_str":"3247354946","in_reply_to_screen_name":"Hosa_II08","user":{"id":3259074032,"id_str":"3259074032","name":"\u30a8\u30c9\u30e9\u304c\u53eb\u3073\u305f\u304c\u3063\u3066\u308b\u3093\u3060","screen_name":"hikaru_love_rin","location":"\u30aa\u30ea\u30b8\u30ca\u30eb\u3067\u3044\u308b","url":null,"description":"\u30a2\u30cb\u30e1\u3082\u30e9\u30ce\u30d9\u3082\u4f55\u3067\u3082\u3054\u3056\u308c!!\n\u307f\u3093\u306a\u3068\u4ef2\u826f\u304f\u3057\u305f\u3044\u3067\u3054\u3056\u308b\u3002\n\u4e00\u8a00\u304f\u308c\u308c\u3070\u5fc5\u305a\u30d5\u30a9\u30ed\u30d0\u305f\u307e\u306b\u5fd8\u308c\u3066\u307e\u3059\n\n#\u5143\u30b5\u30c3\u30ab\u30fc\u90e8 #FW\n18\u306e\u2642\n\nDM\u306f\u898b\u305f\u308a\u898b\u306a\u304b\u3063\u305f\u308a\n\u30b2\u30fc\u30e0\u3082\u3059\u308b\u3088\u3002\u30ec\u30b2\u30fc\u3060\u3051\u3069!!(\u6700\u8fd1\u306fVita\u3067\u904a\u3076\u3053\u3068\u3092\u899a\u3048\u305f\uff09\n#\u6210\u702c\u9806 #\u661f\u7a7a\u51db #\u690e\u540d\u307e\u3057\u308d #\u6893\u5ddd\u6953","protected":false,"verified":false,"followers_count":133,"friends_count":132,"listed_count":1,"favourites_count":128,"statuses_count":610,"created_at":"Sun Jun 28 16:23:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647645134482337792\/OZSFoDFN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647645134482337792\/OZSFoDFN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3259074032\/1435508980","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Hosa_II08","name":"\u3082\u307f\u3058\u3061\u3083\u3093@\u56fa\u5b9a\u30c4\u30a4\u30fc\u30c8\u898b\u306a\u3044\u3067","id":3247354946,"id_str":"3247354946","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117660"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271001601,"id_str":"663728236271001601","text":"RT @ayumi27542: #\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306e\u540d\u524d\u308f\u304b\u308b\u4ebaRT https:\/\/t.co\/X86enzMjYL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230739570,"id_str":"3230739570","name":"\u3055\u304a@\u30b8\u30e3\u30b9\u6c11\u2606","screen_name":"rf_tk_08060818","location":"Ryusei.F\u2661since 2015.5.30","url":null,"description":"I am a Jasmine\u2764\ufe0f \u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u3093\u306e\u304a\u304b\u3052\u30671\/6\u6a2a\u30a2\u30ea\u53c2\u6226\u6c7a\u5b9a\u3057\u307e\u3057\u305f\uff01\u3042\u308a\u304c\u3068\u3046\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":878,"friends_count":863,"listed_count":10,"favourites_count":16979,"statuses_count":9514,"created_at":"Sat May 30 14:49:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659974456186564608\/SR0UCdCA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659974456186564608\/SR0UCdCA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230739570\/1445439535","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:30:11 +0000 2015","id":663166595045289985,"id_str":"663166595045289985","text":"#\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306e\u540d\u524d\u308f\u304b\u308b\u4ebaRT https:\/\/t.co\/X86enzMjYL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252572119,"id_str":"3252572119","name":"\u85e4\u4e95\u308a\u3093\u30d4\u30dd","screen_name":"ayumi27542","location":"\u508d\u89b3\u8005\u306e\u541b\u304c\u597d\u304d","url":null,"description":"\u30b8\u30e3\u30b9\u30e1\u30f3\u3055\u3093\u5927\u6b53\u8fce\uff01\u4ed6G\u62c5\u5927\u6b53\u8fce\uff0103line\u30fbJS6\u9752\u8272\u30b8\u30e3\u30b9\u6c11\u3067\u3082\u307f\u3093\u306a\u3082\u597d\u304d\u30fb\u4e95\u4e0a\u82d1\u5b50\u30fb\u95a2\u897fZone\u30fb\u30d1\u30ea\u30d4\u30dd\u304f\u3093\u30fb\u30d6\u30e9\u30a4\u30b9\u30fb\u30d9\u30c6\u30a3\u30fc\u3061\u3083\u3093\u306f\u547d\uff01\n\u30fb\u304a\u3059\u308b\u3070\u3093\u7d44\u30fb\nLINE\u4ea4\u63dbOK\n\u547d\u77ed\u3057\u604b\u305b\u3088\u4e59\u5973\n@kota_hana426\u2190\u76f8\u65b9\n\u30ea\u30e0\u308b\u306a\u3089\u30d5\u30a9\u30ed\u30fc\u3059\u306a\n\u5c0f\u6587\u5b57\u4e71\u7528\u53d7\u3051\u4ed8\u3051\u3066\u307e\u305b\u3093\n\u96c6\u5408\u4f53\u6050\u6016\u75c7\u3067\u3059","protected":false,"verified":false,"followers_count":251,"friends_count":191,"listed_count":0,"favourites_count":255,"statuses_count":3626,"created_at":"Mon Jun 22 09:55:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663632723374837760\/O-wn8dLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663632723374837760\/O-wn8dLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252572119\/1446203470","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":174,"favorite_count":25,"entities":{"hashtags":[{"text":"\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306e\u540d\u524d\u308f\u304b\u308b\u4ebaRT","indices":[0,16]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663166583993294850,"id_str":"663166583993294850","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","url":"https:\/\/t.co\/X86enzMjYL","display_url":"pic.twitter.com\/X86enzMjYL","expanded_url":"http:\/\/twitter.com\/ayumi27542\/status\/663166595045289985\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"large":{"w":750,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663166583993294850,"id_str":"663166583993294850","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","url":"https:\/\/t.co\/X86enzMjYL","display_url":"pic.twitter.com\/X86enzMjYL","expanded_url":"http:\/\/twitter.com\/ayumi27542\/status\/663166595045289985\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"large":{"w":750,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3053\u306e\u30b0\u30eb\u30fc\u30d7\u306e\u540d\u524d\u308f\u304b\u308b\u4ebaRT","indices":[16,32]}],"urls":[],"user_mentions":[{"screen_name":"ayumi27542","name":"\u85e4\u4e95\u308a\u3093\u30d4\u30dd","id":3252572119,"id_str":"3252572119","indices":[3,14]}],"symbols":[],"media":[{"id":663166583993294850,"id_str":"663166583993294850","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","url":"https:\/\/t.co\/X86enzMjYL","display_url":"pic.twitter.com\/X86enzMjYL","expanded_url":"http:\/\/twitter.com\/ayumi27542\/status\/663166595045289985\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"large":{"w":750,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}},"source_status_id":663166595045289985,"source_status_id_str":"663166595045289985","source_user_id":3252572119,"source_user_id_str":"3252572119"}]},"extended_entities":{"media":[{"id":663166583993294850,"id_str":"663166583993294850","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQKfpnUYAIUZkK.jpg","url":"https:\/\/t.co\/X86enzMjYL","display_url":"pic.twitter.com\/X86enzMjYL","expanded_url":"http:\/\/twitter.com\/ayumi27542\/status\/663166595045289985\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"large":{"w":750,"h":747,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"}},"source_status_id":663166595045289985,"source_status_id_str":"663166595045289985","source_user_id":3252572119,"source_user_id_str":"3252572119"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236287799297,"id_str":"663728236287799297","text":"@cookierror \u304a\u3061\u3093\u305f\u307e\u304b\u306a\u3041","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726499086794752,"in_reply_to_status_id_str":"663726499086794752","in_reply_to_user_id":403149224,"in_reply_to_user_id_str":"403149224","in_reply_to_screen_name":"cookierror","user":{"id":3286401908,"id_str":"3286401908","name":"tnk@GBW10\u58f2\u308a\u5b50\u3010I02\u3011","screen_name":"ei_O343","location":null,"url":null,"description":"\u305f\u306a\u304b\u3067\u3059\u3002\u30a2\u30ab\u30a6\u30f3\u30c8\u79fb\u52d5\u3057\u307e\u3057\u305f\u3002\u4eac\u90fd\u306b\u6f5c\u3080\u30d5\u30a1\u30cb\u30c7\u30a3\u30a8\u5996\u602a\u3002\u30d5\u30a1\u30cb\u30c7\u30a3\u30a8bot(@FunnyDiego_bot)\u3001 \u30d5\u30a1\u30cb\u30c7\u30a3\u30a8\u30a2\u30f3\u30bd\u30ed\u4f01\u753b\u57a2(@mad_funnydiego)","protected":false,"verified":false,"followers_count":129,"friends_count":148,"listed_count":6,"favourites_count":2631,"statuses_count":1290,"created_at":"Tue Jul 21 11:00:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660642631513276417\/mVweYRY5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660642631513276417\/mVweYRY5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3286401908\/1446690447","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cookierror","name":"\u3044\u3064\u3082\u967d\u6c17\u306a\u3054\u304c\u3064\u3061\u3083\u3093","id":403149224,"id_str":"403149224","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117662"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271116288,"id_str":"663728236271116288","text":"New day, new tweets, new stats. 1 follower, 0 unfollowers. Via good old https:\/\/t.co\/CnQdgjkjMt","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251778069,"id_str":"1251778069","name":"bitch in da trap !!!","screen_name":"RiRiTheMinaj","location":"PinkSlam","url":"http:\/\/mypinkfriday.com","description":"#teamdrake #teamYMCMB #team94 #teamminaj #teamswift #prettygang I follow back","protected":false,"verified":false,"followers_count":553,"friends_count":1824,"listed_count":0,"favourites_count":23,"statuses_count":1153,"created_at":"Fri Mar 08 13:43:44 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000021952103\/f5d1940bf7f06e39af4bd805b05158ff.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000021952103\/f5d1940bf7f06e39af4bd805b05158ff.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000229554202\/3cd7aff820d2637c00cfeb49966d9d14_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000229554202\/3cd7aff820d2637c00cfeb49966d9d14_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251778069\/1375869860","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CnQdgjkjMt","expanded_url":"http:\/\/www.crowdfireapp.com\/?r=td","display_url":"crowdfireapp.com\/?r=td","indices":[72,95]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236287926284,"id_str":"663728236287926284","text":"RT @JLRodriguez2010: Nuestro trabajo es por todos los vecinos sin exclusiones, las puertas de mi despacho siempre estaran abiertas. https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94389560,"id_str":"94389560","name":"Tatiana Rodriguez","screen_name":"TatyRodriguez1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":439,"friends_count":303,"listed_count":1,"favourites_count":19,"statuses_count":2279,"created_at":"Thu Dec 03 18:55:43 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"141413","profile_sidebar_border_color":"D042ED","profile_sidebar_fill_color":"D775EB","profile_text_color":"9C37E8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550687446472867840\/9WPAWpej_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550687446472867840\/9WPAWpej_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:32 +0000 2015","id":663727374345875456,"id_str":"663727374345875456","text":"Nuestro trabajo es por todos los vecinos sin exclusiones, las puertas de mi despacho siempre estaran abiertas. https:\/\/t.co\/Qa9MbdBoKr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":143254724,"id_str":"143254724","name":"Jos\u00e9 Luis Rodr\u00edguez","screen_name":"JLRodriguez2010","location":"Carrizal - Miranda","url":"http:\/\/www.carrizal-miranda.gob.ve","description":"#SoyDemocrataSocial Carrizale\u00f1o de cuerpo, alma y coraz\u00f3n. Alcalde del Municipio Carrizal. Presidente de @Miranda_UNT #UNTLaFuerzaIndetenible","protected":false,"verified":false,"followers_count":9886,"friends_count":4008,"listed_count":72,"favourites_count":107,"statuses_count":4269,"created_at":"Thu May 13 00:44:51 +0000 2010","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172101476\/6pJQ_S0_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172101476\/6pJQ_S0_.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000304285174\/1d76acf2fb787487a6fe87b8509e6e7f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000304285174\/1d76acf2fb787487a6fe87b8509e6e7f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/143254724\/1425589296","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727337813471232,"id_str":"663727337813471232","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727337813471232,"id_str":"663727337813471232","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663727352564838400,"id_str":"663727352564838400","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgrVWcAAE9cE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgrVWcAAE9cE.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JLRodriguez2010","name":"Jos\u00e9 Luis Rodr\u00edguez","id":143254724,"id_str":"143254724","indices":[3,19]}],"symbols":[],"media":[{"id":663727337813471232,"id_str":"663727337813471232","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727374345875456,"source_status_id_str":"663727374345875456","source_user_id":143254724,"source_user_id_str":"143254724"}]},"extended_entities":{"media":[{"id":663727337813471232,"id_str":"663727337813471232","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIf0YWcAANFZz.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727374345875456,"source_status_id_str":"663727374345875456","source_user_id":143254724,"source_user_id_str":"143254724"},{"id":663727352564838400,"id_str":"663727352564838400","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgrVWcAAE9cE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgrVWcAAE9cE.jpg","url":"https:\/\/t.co\/Qa9MbdBoKr","display_url":"pic.twitter.com\/Qa9MbdBoKr","expanded_url":"http:\/\/twitter.com\/JLRodriguez2010\/status\/663727374345875456\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663727374345875456,"source_status_id_str":"663727374345875456","source_user_id":143254724,"source_user_id_str":"143254724"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080117662"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304535552,"id_str":"663728236304535552","text":"@haji_meta \u3088\u304b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727732660957184,"in_reply_to_status_id_str":"663727732660957184","in_reply_to_user_id":1959677174,"in_reply_to_user_id_str":"1959677174","in_reply_to_screen_name":"haji_meta","user":{"id":2885155200,"id_str":"2885155200","name":"\u3084\u3060\u3048\u308b","screen_name":"pnt90_","location":"\u306a\u306b\u308f","url":null,"description":"\u30a2\u30a4\u30c9\u30eb\u30aa\u30bf\u30af\u3084\u3063\u3066\u307e\u3059\u3001\u7f8e\u5bb9\u5e2b\u306f\u526f\u696d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":146,"friends_count":212,"listed_count":3,"favourites_count":3194,"statuses_count":4032,"created_at":"Fri Oct 31 14:07:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656368283965194241\/4qutHhvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656368283965194241\/4qutHhvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885155200\/1445688270","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haji_meta","name":"\u3081\u305f\u306f\u3058\u3081\u305f","id":1959677174,"id_str":"1959677174","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117666"} +{"delete":{"status":{"id":663721470854565888,"id_str":"663721470854565888","user_id":3303611321,"user_id_str":"3303611321"},"timestamp_ms":"1447080117790"}} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296212481,"id_str":"663728236296212481","text":"RT @Fi_Syaz: \"Aku harap sangat dia dapat rasa apa yang aku rasa\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":892429706,"id_str":"892429706","name":"KS","screen_name":"Schxmim","location":"TGG ","url":null,"description":"Far from perfection.","protected":false,"verified":false,"followers_count":548,"friends_count":482,"listed_count":3,"favourites_count":1231,"statuses_count":41754,"created_at":"Sat Oct 20 04:07:36 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/462531920320929792\/P3DIseTH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/462531920320929792\/P3DIseTH.jpeg","profile_background_tile":true,"profile_link_color":"0F0D0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663310518917009408\/fe4aOAkN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663310518917009408\/fe4aOAkN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/892429706\/1446894148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:44:49 +0000 2015","id":663532664750628864,"id_str":"663532664750628864","text":"\"Aku harap sangat dia dapat rasa apa yang aku rasa\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358052595,"id_str":"358052595","name":"Nur Syazwani","screen_name":"Fi_Syaz","location":"Destinasiku \u007bTanah Suci\u007d","url":"http:\/\/instagram.com\/nursyazwani95","description":"One True Love \u2022 Firdhaus \u2022 FirdhauSyazwani \u2022","protected":false,"verified":false,"followers_count":3765,"friends_count":3355,"listed_count":0,"favourites_count":599,"statuses_count":12337,"created_at":"Fri Aug 19 09:05:44 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656327705445601280\/O6D8Ew_q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656327705445601280\/O6D8Ew_q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/358052595\/1441282077","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":13,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fi_Syaz","name":"Nur Syazwani","id":358052595,"id_str":"358052595","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266848257,"id_str":"663728236266848257","text":"@hrsLo \n\n\u30ea\u30d7\u30e9\u30a4\u5931\u793c\u3057\u307e\u3059\u3002\n\u4e00\u8475\u3055\u3093\u306e\u30c1\u30a7\u30ad\u3092\u304a\u8b72\u308a\u3057\u3066\u9802\u304d\u305f\u3044\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714844231643137,"in_reply_to_status_id_str":"663714844231643137","in_reply_to_user_id":4122194713,"in_reply_to_user_id_str":"4122194713","in_reply_to_screen_name":"hrsLo","user":{"id":3123711312,"id_str":"3123711312","name":"\u2721 \u3051 \u3044 \u3053 \u2721","screen_name":"shitei_mamomamo","location":"\u79c1\u306b\u306f\u3042\u306a\u305f\u3060\u3051\u3002","url":null,"description":"\u81ea\u7531\u306b\u751f\u304d\u305f\u3044\u307e\u3082\u304e\u3083\u3067\u3059\u3093\u3002 \n\u6700\u8fd1\u4e00\u8475\u3055\u3093\u306b\u6d6e\u6c17\u4e2d\u3002","protected":false,"verified":false,"followers_count":336,"friends_count":285,"listed_count":26,"favourites_count":1295,"statuses_count":7137,"created_at":"Wed Apr 01 10:12:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660760656694505472\/AOF2Wpx9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660760656694505472\/AOF2Wpx9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3123711312\/1442794056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hrsLo","name":"\u53d6\u5f15\u57a2","id":4122194713,"id_str":"4122194713","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296171520,"id_str":"663728236296171520","text":"RT @915ars1999: \u9053\u660e\u5bfa\u6d3e\u3067\u3082\u3053\u306e\u82b1\u6ca2\u985e\u306b\u306f\u30c9\u30ad\u30e5\u30f3\u3002 https:\/\/t.co\/mQ73WBVpzl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2949492565,"id_str":"2949492565","name":"Ritsu","screen_name":"rrrt725","location":"Black","url":null,"description":"96Line . Disney . yamada ryosuke \u2764\ufe0e\u270c\ufe0e","protected":false,"verified":false,"followers_count":281,"friends_count":246,"listed_count":0,"favourites_count":1678,"statuses_count":522,"created_at":"Mon Dec 29 07:19:10 +0000 2014","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661682458203570176\/POhBchQX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661682458203570176\/POhBchQX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949492565\/1445957780","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 11:16:47 +0000 2015","id":661864665597657088,"id_str":"661864665597657088","text":"\u9053\u660e\u5bfa\u6d3e\u3067\u3082\u3053\u306e\u82b1\u6ca2\u985e\u306b\u306f\u30c9\u30ad\u30e5\u30f3\u3002 https:\/\/t.co\/mQ73WBVpzl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3074870971,"id_str":"3074870971","name":"\u30de\u30ad\u30b7\u30de\u30e0\u30cf\u30eb","screen_name":"915ars1999","location":null,"url":null,"description":"\u7fd4\u3068\u6f64\u3068\u30c1\u30a7\u30ea\u30fc\u30d1\u30a4 \u3002","protected":false,"verified":false,"followers_count":976,"friends_count":556,"listed_count":13,"favourites_count":2385,"statuses_count":9865,"created_at":"Thu Mar 12 08:12:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660619461095874560\/KaMmSUwy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660619461095874560\/KaMmSUwy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3074870971\/1446103976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21330,"favorite_count":51593,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661864554717011968,"id_str":"661864554717011968","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","url":"https:\/\/t.co\/mQ73WBVpzl","display_url":"pic.twitter.com\/mQ73WBVpzl","expanded_url":"http:\/\/twitter.com\/915ars1999\/status\/661864665597657088\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661864554717011968,"id_str":"661864554717011968","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","url":"https:\/\/t.co\/mQ73WBVpzl","display_url":"pic.twitter.com\/mQ73WBVpzl","expanded_url":"http:\/\/twitter.com\/915ars1999\/status\/661864665597657088\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/640x360\/HwoEYBaEohsL-Soa.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/pl\/8a7TMQig1QFYIiCr.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/1280x720\/042814E9_rQQlA-3.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/320x180\/NGMPafchBCCPWcyn.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/640x360\/HwoEYBaEohsL-Soa.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/pl\/8a7TMQig1QFYIiCr.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"915ars1999","name":"\u30de\u30ad\u30b7\u30de\u30e0\u30cf\u30eb","id":3074870971,"id_str":"3074870971","indices":[3,14]}],"symbols":[],"media":[{"id":661864554717011968,"id_str":"661864554717011968","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","url":"https:\/\/t.co\/mQ73WBVpzl","display_url":"pic.twitter.com\/mQ73WBVpzl","expanded_url":"http:\/\/twitter.com\/915ars1999\/status\/661864665597657088\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661864665597657088,"source_status_id_str":"661864665597657088","source_user_id":3074870971,"source_user_id_str":"3074870971"}]},"extended_entities":{"media":[{"id":661864554717011968,"id_str":"661864554717011968","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661864554717011968\/pu\/img\/82fkuDlVGREB8VXE.jpg","url":"https:\/\/t.co\/mQ73WBVpzl","display_url":"pic.twitter.com\/mQ73WBVpzl","expanded_url":"http:\/\/twitter.com\/915ars1999\/status\/661864665597657088\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":661864665597657088,"source_status_id_str":"661864665597657088","source_user_id":3074870971,"source_user_id_str":"3074870971","video_info":{"aspect_ratio":[16,9],"duration_millis":30010,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/640x360\/HwoEYBaEohsL-Soa.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/pl\/8a7TMQig1QFYIiCr.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/1280x720\/042814E9_rQQlA-3.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/320x180\/NGMPafchBCCPWcyn.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/vid\/640x360\/HwoEYBaEohsL-Soa.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661864554717011968\/pu\/pl\/8a7TMQig1QFYIiCr.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271128576,"id_str":"663728236271128576","text":"Eu publiquei uma nova foto no Facebook https:\/\/t.co\/0plRFKc33X","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81196822,"id_str":"81196822","name":"Luh Oliveira","screen_name":"luholiveirareal","location":"BRASIL","url":"http:\/\/www.luholiveira.com.br","description":"Luh Oliveira","protected":false,"verified":false,"followers_count":193,"friends_count":12,"listed_count":6,"favourites_count":32,"statuses_count":2478,"created_at":"Fri Oct 09 20:35:30 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632951226028687360\/gj2X5rK4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632951226028687360\/gj2X5rK4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81196822\/1439742336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0plRFKc33X","expanded_url":"http:\/\/fb.me\/6WaQGqmRi","display_url":"fb.me\/6WaQGqmRi","indices":[39,62]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304580608,"id_str":"663728236304580608","text":"RT @RoyGrillo: Que no te vean la cara de What!? - Listado especial de t\u00e9rminos de Marketing Online. https:\/\/t.co\/UuHKXYdwb8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107176588,"id_str":"107176588","name":"Boss Dubois","screen_name":"BossDubois","location":"Ciudad de M\u00e9xico","url":"http:\/\/www.peru.travel","description":"Periodista, Publirrelacionista (Per\u00fa, YVR). Aficionado al uso proactivo de la informaci\u00f3n, para generar el desarrollo. bossdubois@hotmail.com","protected":false,"verified":false,"followers_count":187,"friends_count":694,"listed_count":9,"favourites_count":1857,"statuses_count":1118,"created_at":"Thu Jan 21 19:25:17 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF784F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658681076424900608\/lkhXqJNm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658681076424900608\/lkhXqJNm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/107176588\/1445876671","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:50:03 +0000 2015","id":663171592625737728,"id_str":"663171592625737728","text":"Que no te vean la cara de What!? - Listado especial de t\u00e9rminos de Marketing Online. https:\/\/t.co\/UuHKXYdwb8","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":203287800,"id_str":"203287800","name":"Rodrigo HM.","screen_name":"RoyGrillo","location":"Mexico.","url":"http:\/\/www.RodrigoHM.com\/Blog","description":"Speaker \/ Conferencista | Asesor en #Mercadotecnia Digital | Inbound Marketing | Asesor en @Clicker360 y conductor en @PanoramaFormula en Teleformula :)","protected":false,"verified":false,"followers_count":96503,"friends_count":69269,"listed_count":869,"favourites_count":787,"statuses_count":6477,"created_at":"Fri Oct 15 23:21:54 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639261348744957953\/P8wlR_mb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639261348744957953\/P8wlR_mb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/203287800\/1441936462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663171591153582080,"id_str":"663171591153582080","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","url":"https:\/\/t.co\/UuHKXYdwb8","display_url":"pic.twitter.com\/UuHKXYdwb8","expanded_url":"http:\/\/twitter.com\/RoyGrillo\/status\/663171592625737728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":735,"h":909,"resize":"fit"},"medium":{"w":600,"h":742,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663171591153582080,"id_str":"663171591153582080","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","url":"https:\/\/t.co\/UuHKXYdwb8","display_url":"pic.twitter.com\/UuHKXYdwb8","expanded_url":"http:\/\/twitter.com\/RoyGrillo\/status\/663171592625737728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":735,"h":909,"resize":"fit"},"medium":{"w":600,"h":742,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RoyGrillo","name":"Rodrigo HM.","id":203287800,"id_str":"203287800","indices":[3,13]}],"symbols":[],"media":[{"id":663171591153582080,"id_str":"663171591153582080","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","url":"https:\/\/t.co\/UuHKXYdwb8","display_url":"pic.twitter.com\/UuHKXYdwb8","expanded_url":"http:\/\/twitter.com\/RoyGrillo\/status\/663171592625737728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":735,"h":909,"resize":"fit"},"medium":{"w":600,"h":742,"resize":"fit"}},"source_status_id":663171592625737728,"source_status_id_str":"663171592625737728","source_user_id":203287800,"source_user_id_str":"203287800"}]},"extended_entities":{"media":[{"id":663171591153582080,"id_str":"663171591153582080","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTQPDGvXAAAyesk.png","url":"https:\/\/t.co\/UuHKXYdwb8","display_url":"pic.twitter.com\/UuHKXYdwb8","expanded_url":"http:\/\/twitter.com\/RoyGrillo\/status\/663171592625737728\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":420,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":735,"h":909,"resize":"fit"},"medium":{"w":600,"h":742,"resize":"fit"}},"source_status_id":663171592625737728,"source_status_id_str":"663171592625737728","source_user_id":203287800,"source_user_id_str":"203287800"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080117666"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236296282112,"id_str":"663728236296282112","text":"Had an amazing time with my family at Montreal over the weekend, so much fun!!\u2764\ufe0f #MissItAlready \ud83d\ude22","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3961189047,"id_str":"3961189047","name":"Abisha J.","screen_name":"98abii_","location":null,"url":null,"description":"||Senior at BMT.\u270f\ufe0f||TamilEelam ||","protected":false,"verified":false,"followers_count":56,"friends_count":35,"listed_count":0,"favourites_count":26,"statuses_count":38,"created_at":"Thu Oct 15 02:26:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661737986695020544\/4RLirzde_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661737986695020544\/4RLirzde_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MissItAlready","indices":[81,95]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117664"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304535553,"id_str":"663728236304535553","text":"@0130merci \u30e9\u30b9\u30af\u30e9\u3082\u3060\u3051\u3069\u3055\u3001\u3001\u3001\uff12\u5e74\u306e\u3042\u306e\u518d\u6226\u3092\u7d04\u675f\u3057\u305f\u30b7\u30fc\u30f3\u3068\u304b\u3082\u3001\u3001\u3001\u30de\u30cb\u30a2\u30c3\u30af\u904e\u304e\u304b\u306awwwwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727094610788352,"in_reply_to_status_id_str":"663727094610788352","in_reply_to_user_id":2853216433,"in_reply_to_user_id_str":"2853216433","in_reply_to_screen_name":"0130merci","user":{"id":875120304,"id_str":"875120304","name":"\u2020\u250f\u251b\u5fcd\u2517\u2513\u2020","screen_name":"shinobu1119","location":null,"url":"http:\/\/twpf.jp\/shinobu1119","description":"\u6210\u4eba\u6e08\u30ec\u30a4\u30e4\u30fc\u8150\u3002\u5199\u771f\u306f\u305b\u3093\u3071\u30fc\u52a0\u5de5\u53a8\u3002\u30da\u30c0\u30eb(\u4eca\u6cc9\u30af\u30e9\u30b9\u30bf\u5730\u96f7\u306a\u3057\u540c\u62c5\u6b53\u8fce\u3002\u8352\u4eca\u672c\u547d\u3001\u4eca\u9cf4\u306b\u5fc5\u6b7b\u306a\u4eca\u6cc9\u95a2\u9023\u96d1\u98df\u7bc0\u64cd\u306a\u3057) \/HQ(\u6975\u5ea6\u306e\u53ca\u5ddd\u5ec3\u306e\u9752\u57ce\u30af\u30e9\u30b9\u30bf.\u53ca\u83c5\u53a8.\u83c5\u539f\u4fe1\u8005)\u3002\u30ab\u30e1\u30e9\u3082\u3057\u3066\u305f\u308a\u3002\u30ed\u30fc\u30c9\u521d\u5fc3\u8005\/\u611b\u8eca\u306fSCOTT\u3002\u30b3\u30b9\u5199\u3001\u65e5\u5e38\u30c4\u30a4\u30fc\u30c8\u6709\u3002 F\u306e\u969b\u306f\u30c4\u30a4\u30d7\u30ed\u53c2\u7167\u3002","protected":false,"verified":false,"followers_count":226,"friends_count":243,"listed_count":5,"favourites_count":839,"statuses_count":15618,"created_at":"Fri Oct 12 07:27:00 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661906092226510848\/TPYoI2xL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661906092226510848\/TPYoI2xL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/875120304\/1447065578","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0130merci","name":"\u3081\u308b\u3057\u30fc\u306f\u75e9\u305b\u305f\u3044\u3068\u601d\u3063\u3066\u306f\u3044\u308b","id":2853216433,"id_str":"2853216433","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117666"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271038464,"id_str":"663728236271038464","text":"@yungindia @El_Jefe_Smoove5 I been tryna tell him that!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727973577568256,"in_reply_to_status_id_str":"663727973577568256","in_reply_to_user_id":2996594660,"in_reply_to_user_id_str":"2996594660","in_reply_to_screen_name":"yungindia","user":{"id":1729748204,"id_str":"1729748204","name":"Fabricio","screen_name":"Fabriciodaher97","location":"From Canada\u27a1\ufe0fAZ\u27a1\ufe0fMT","url":null,"description":"YCC commit \u203c\ufe0f '19 #GoCenturions #MOAM #BigThingsComin","protected":false,"verified":false,"followers_count":723,"friends_count":978,"listed_count":2,"favourites_count":6971,"statuses_count":9798,"created_at":"Wed Sep 04 19:53:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635516010267701248\/XxTDwhIU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635516010267701248\/XxTDwhIU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1729748204\/1446892778","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yungindia","name":"curlyhead","id":2996594660,"id_str":"2996594660","indices":[0,10]},{"screen_name":"El_Jefe_Smoove5","name":"Jay The Jefe\u2744\ufe0f","id":1088016770,"id_str":"1088016770","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236279410688,"id_str":"663728236279410688","text":"RT @i__iFha: \u0e40\u0e01\u0e25\u0e35\u0e22\u0e14 \u0e40\u0e27\u0e25\u0e32\u0e44\u0e1b\u0e41\u0e08\u0e49\u0e07\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e15\u0e23.\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32 \"\u0e42\u0e16\u0e19\u0e49\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e19\u0e35\u0e49\u0e42\u0e14\u0e19\u0e01\u0e31\u0e19\u0e1a\u0e48\u0e2d\u0e22\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\" \u0e04\u0e37\u0e2d\u0e01\u0e39\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e2d\u0e30\u0e44\u0e23? \u0e1e\u0e27\u0e01\u0e1e\u0e35\u0e48\u0e44\u0e21\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e07\u0e35\u0e49 ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":111287061,"id_str":"111287061","name":"\u0e41\u0e2e\u0e21\u0e44\u0e2b\u0e19","screen_name":"patcha_rie","location":"\u0e2d.\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e25\u0e22, \u0e08.\u0e40\u0e25\u0e22","url":"https:\/\/www.facebook.com\/patchaham","description":"- MooHam\n1995 July 3rd \u264a \nID LINE : patcha_ham IG : ham_patcha","protected":false,"verified":false,"followers_count":104,"friends_count":233,"listed_count":1,"favourites_count":884,"statuses_count":10303,"created_at":"Thu Feb 04 11:56:52 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662198001385893888\/J7MO5zoe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662198001385893888\/J7MO5zoe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/111287061\/1446715586","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:16:07 +0000 2015","id":662861064334217216,"id_str":"662861064334217216","text":"\u0e40\u0e01\u0e25\u0e35\u0e22\u0e14 \u0e40\u0e27\u0e25\u0e32\u0e44\u0e1b\u0e41\u0e08\u0e49\u0e07\u0e04\u0e27\u0e32\u0e21\u0e25\u0e30\u0e15\u0e23.\u0e1a\u0e2d\u0e01\u0e27\u0e48\u0e32 \"\u0e42\u0e16\u0e19\u0e49\u0e2d\u0e07\u0e41\u0e16\u0e27\u0e19\u0e35\u0e49\u0e42\u0e14\u0e19\u0e01\u0e31\u0e19\u0e1a\u0e48\u0e2d\u0e22\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\" \u0e04\u0e37\u0e2d\u0e01\u0e39\u0e15\u0e49\u0e2d\u0e07\u0e40\u0e02\u0e49\u0e32\u0e43\u0e08\u0e2d\u0e30\u0e44\u0e23? \u0e1e\u0e27\u0e01\u0e1e\u0e35\u0e48\u0e44\u0e21\u0e48\u0e17\u0e33\u0e07\u0e32\u0e19\u0e07\u0e35\u0e49 ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144708010,"id_str":"144708010","name":"Izabella_Mamui","screen_name":"i__iFha","location":null,"url":null,"description":"\u0e41\u0e21\u0e48\u0e41\u0e21\u0e27\u0e17\u0e35\u0e48\u0e40\u0e1b\u0e47\u0e19\u0e41\u0e21\u0e48\u0e21\u0e14\u2665\u0e04\u0e19\u0e18\u0e23\u0e23\u0e21\u0e14\u0e32\u0e43\u0e08\u0e2b\u0e21\u0e32\u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48\u0e2b\u0e21\u0e2d \u0e44\u0e21\u0e48\u0e08\u0e38\u0e01\u0e08\u0e34\u0e01...\u0e01\u0e23\u0e38\u0e13\u0e32\u0e15\u0e2d\u0e1a\u0e43\u0e2b\u0e49\u0e15\u0e23\u0e07\u0e04\u0e33\u0e16\u0e32\u0e21 #kristen \u2665\ud604\ube48\u2665 #cats\u2665 #Robsten \u2665#cactus \u2665Animal\u2665Read\u2665Draw\u2665#craft\u2665cooks\u26c5","protected":false,"verified":false,"followers_count":2931,"friends_count":668,"listed_count":24,"favourites_count":8841,"statuses_count":124972,"created_at":"Mon May 17 03:02:51 +0000 2010","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"528CF0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116417534\/eb84063e7f39cc5859ef7d1453dfa928.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116417534\/eb84063e7f39cc5859ef7d1453dfa928.jpeg","profile_background_tile":true,"profile_link_color":"528CF0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"242424","profile_text_color":"E5EFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662983086334808064\/8LgOV5tk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662983086334808064\/8LgOV5tk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/144708010\/1438699618","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3764,"favorite_count":208,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"i__iFha","name":"Izabella_Mamui","id":144708010,"id_str":"144708010","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080117660"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236287950848,"id_str":"663728236287950848","text":"RT @Gully_c: Macina - Man a General [Official OMV] https:\/\/t.co\/CWcriB2Lxk via @macinimusic @Sky1876ent\"","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3231756781,"id_str":"3231756781","name":"sky_1876 Ainkia","screen_name":"AinkiaSky","location":"Eendrag, South Africa","url":"http:\/\/www.sky1876ent.com","description":"money all day #love #big #worldwide #music #clicksky #sky1876ent @sky1876ent #marketing #jamaica","protected":false,"verified":false,"followers_count":289,"friends_count":279,"listed_count":11,"favourites_count":712,"statuses_count":10950,"created_at":"Sun May 31 14:11:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605066923559120896\/ye8x4l2U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605066923559120896\/ye8x4l2U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3231756781\/1433094105","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:30:38 +0000 2015","id":663619689709441024,"id_str":"663619689709441024","text":"Macina - Man a General [Official OMV] https:\/\/t.co\/CWcriB2Lxk via @macinimusic @Sky1876ent\"","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456996621,"id_str":"456996621","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","screen_name":"Gully_c","location":"South Africa","url":"https:\/\/m.facebook.com\/selektorblackpeppaskull?refid=5","description":"#Dancehall #Riddims #Videos #Reggae #News @Sky1876ent #Hotnews #HipHop #Marketing #Retweets #Soca #subscribe http:\/\/t.co\/bAQLLScrF9 mogamatpetersen39@gmail.com","protected":false,"verified":false,"followers_count":2024,"friends_count":137,"listed_count":60,"favourites_count":65,"statuses_count":49035,"created_at":"Fri Jan 06 22:26:00 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436428671239192576\/u8vUvpBV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456996621\/1419524787","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CWcriB2Lxk","expanded_url":"https:\/\/m.youtube.com\/watch?v=MwpGBm","display_url":"m.youtube.com\/watch?v=MwpGBm","indices":[38,61]}],"user_mentions":[{"screen_name":"macinimusic","name":"MACINI MUSIC \u00a9","id":1226511212,"id_str":"1226511212","indices":[66,78]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[79,90]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/CWcriB2Lxk","expanded_url":"https:\/\/m.youtube.com\/watch?v=MwpGBm","display_url":"m.youtube.com\/watch?v=MwpGBm","indices":[51,74]}],"user_mentions":[{"screen_name":"Gully_c","name":"Da\u0438c\u0454\u0332\u0323\u0323\u0323\u0325hall \u050c\u03c5lly","id":456996621,"id_str":"456996621","indices":[3,11]},{"screen_name":"macinimusic","name":"MACINI MUSIC \u00a9","id":1226511212,"id_str":"1226511212","indices":[79,91]},{"screen_name":"Sky1876ent","name":"\u25e2\u25e4SKY MARKETING","id":588338954,"id_str":"588338954","indices":[92,103]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"da","timestamp_ms":"1447080117662"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236275232768,"id_str":"663728236275232768","text":"You can be overly generous in your encouragement of your assoc... More for Virgo https:\/\/t.co\/kqxiJ2KrUO","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":107566932,"id_str":"107566932","name":"Ms.Lex\u2122 ","screen_name":"ItsLexWorld_25","location":"Lex World","url":null,"description":"Born to Lose..... Built to Win.... #TeamVirgo #TeamIphone5s #TeamMom","protected":false,"verified":false,"followers_count":444,"friends_count":324,"listed_count":1,"favourites_count":45,"statuses_count":23479,"created_at":"Sat Jan 23 00:43:14 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482236795774844928\/3xVvEUY5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482236795774844928\/3xVvEUY5_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kqxiJ2KrUO","expanded_url":"http:\/\/bit.ly\/A7Cwfs","display_url":"bit.ly\/A7Cwfs","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117659"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236275240960,"id_str":"663728236275240960","text":"Please tweet #\uc18c\ub140\uc2dc\ub300 and #LionHeart for MAMA","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1458715574,"id_str":"1458715574","name":"\uae40\ubcc4 (\uc544\uc774)","screen_name":"lovelysone93","location":"Republic of Korea","url":"https:\/\/instagram.com\/lovelysone93\/","description":"\u2665\uc601\uc6d0\ud788 \uc18c\ub140\uc2dc\ub300\u2665 \u2665 \u2665 #\uae40\ud0dc\uc5f0 \u2665 #\uc774\uc21c\uaddc #\ud669\ubbf8\uc601 #\uae40\ud6a8\uc5f0 #\uad8c\uc720\ub9ac #\ucd5c\uc218\uc601 #\uc784\uc724\uc544 #\uc11c\uc8fc\ud604 #taeganger S\u2661NE \u2665\uc6b0\ub9ac \uc624\ub798\uac00\uc790\u2665 \u2661\u2661GG__8\u2661\u2661 \u26a0\u26a0 \ub108 \uc5c6\ub294 \ud558\ub8e8\ub294 \uc2a4\ud2b8\ub808\uc2a4 \u26a0\u26a0 #PARTY #LIONHEART #I","protected":false,"verified":false,"followers_count":407,"friends_count":381,"listed_count":9,"favourites_count":7263,"statuses_count":29933,"created_at":"Sun May 26 04:16:48 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487160359959023616\/AbBIDx3D.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487160359959023616\/AbBIDx3D.jpeg","profile_background_tile":true,"profile_link_color":"D95EBC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661153724006449152\/x4LJ4d0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661153724006449152\/x4LJ4d0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1458715574\/1446466354","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc18c\ub140\uc2dc\ub300","indices":[13,18]},{"text":"LionHeart","indices":[23,33]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117659"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236291977216,"id_str":"663728236291977216","text":"@mikiya199910 \u30bf\u30d4\u30aa\u30ab\u304c\u306a\u3093\u304b\u77e5\u3063\u3066\u308b\uff1f\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725801754378241,"in_reply_to_status_id_str":"663725801754378241","in_reply_to_user_id":2394447571,"in_reply_to_user_id_str":"2394447571","in_reply_to_screen_name":"mikiya199910","user":{"id":1295784354,"id_str":"1295784354","name":"\u65b0 \u3064\u307e\u3088\u3046\u3058\uff20\u7530\u820e\u8005","screen_name":"LifeworkSports","location":"\u5357\u306e\u65b9","url":null,"description":"\u7b4b\u30c8\u30ec7\u30f5\u6708\u76ee \u76ee\u6307\u3059\u30d0\u30ad\u30d0\u30ad \u656c\u8a9e\u4e0d\u8981 \u7d76\u8cdb\u5897\u91cf2016\uff5e\u6e1b\u91cf \u30c8\u30e9\u30a4\u30a2\u30b9\u30ed\u30f3\u51fa\u5834\u4e88\u5b9a","protected":false,"verified":false,"followers_count":745,"friends_count":815,"listed_count":5,"favourites_count":5375,"statuses_count":10936,"created_at":"Sun Mar 24 16:18:09 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654648431349071873\/qXqrAsx5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654648431349071873\/qXqrAsx5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1295784354\/1446022132","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mikiya199910","name":"\u263a\u5e79\u5f25\u2b50","id":2394447571,"id_str":"2394447571","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117663"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304703489,"id_str":"663728236304703489","text":"@bornkpopper e eu n\u00e3o sou chata u-u","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725542110269440,"in_reply_to_status_id_str":"663725542110269440","in_reply_to_user_id":334391208,"in_reply_to_user_id_str":"334391208","in_reply_to_screen_name":"bornkpopper","user":{"id":435324009,"id_str":"435324009","name":"Ordin\u00e1ria","screen_name":"Cattifi","location":"Na merda","url":"https:\/\/socialspirit.com.br\/perfil\/cattifi","description":"Qual a diferen\u00e7a entre porn\u00f4 e Park Jimin? B.A.P IS BACK!","protected":false,"verified":false,"followers_count":345,"friends_count":99,"listed_count":0,"favourites_count":76,"statuses_count":7311,"created_at":"Mon Dec 12 22:56:42 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637774057887395840\/Ryoe7DRT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637774057887395840\/Ryoe7DRT.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660275153243385856\/ikaD7X6M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660275153243385856\/ikaD7X6M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/435324009\/1446868071","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"23e015abafb6ab35","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/23e015abafb6ab35.json","place_type":"city","name":"Cascavel","full_name":"Cascavel, Paran\u00e1","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-53.723540,-25.371418],[-53.723540,-24.750106],[-53.072456,-24.750106],[-53.072456,-25.371418]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bornkpopper","name":"gguk \u2726","id":334391208,"id_str":"334391208","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080117666"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236271116290,"id_str":"663728236271116290","text":"RT @lovatoyez: meu cora\u00e7\u00e3o n\u00e3o \u00e9 um jogo pra voc\u00ea ficar brincando com ele #YAASSDemi https:\/\/t.co\/WDDWdWUASx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2994990472,"id_str":"2994990472","name":"gabri","screen_name":"wtsconfident","location":"\u264a","url":null,"description":"what's wrong with being confident?","protected":false,"verified":false,"followers_count":406,"friends_count":271,"listed_count":0,"favourites_count":3,"statuses_count":4154,"created_at":"Fri Jan 23 22:46:54 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727008740872192\/bC0lJvEG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727008740872192\/bC0lJvEG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994990472\/1446664249","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:25:40 +0000 2015","id":663678838459793408,"id_str":"663678838459793408","text":"meu cora\u00e7\u00e3o n\u00e3o \u00e9 um jogo pra voc\u00ea ficar brincando com ele #YAASSDemi https:\/\/t.co\/WDDWdWUASx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":966740760,"id_str":"966740760","name":"larissa","screen_name":"lovatoyez","location":"JUSTIN FOLLOWS PORRA %%","url":"https:\/\/twitter.com\/ddlovato\/status\/428204921704296448","description":"Eu ouvi uma m\u00fasica tocar, uma voz me hipnotizar e um sorriso me encantar,eu quis saber de quem era e estou aqui sofrendo por demi lovato","protected":false,"verified":false,"followers_count":25879,"friends_count":20295,"listed_count":32,"favourites_count":2163,"statuses_count":64362,"created_at":"Fri Nov 23 20:05:17 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629101461901807616\/huCDDoMK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629101461901807616\/huCDDoMK.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663517274440093696\/raRbeTxZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663517274440093696\/raRbeTxZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/966740760\/1447029667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"68e019afec7d0ba5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/68e019afec7d0ba5.json","place_type":"city","name":"S\u00e3o Paulo","full_name":"S\u00e3o Paulo, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-46.826039,-24.008814],[-46.826039,-23.356792],[-46.365052,-23.356792],[-46.365052,-24.008814]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":4,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[59,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663678833380433920,"id_str":"663678833380433920","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663678833380433920,"id_str":"663678833380433920","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663678836312252416,"id_str":"663678836312252416","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYqNWIAAuTqE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYqNWIAAuTqE.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":894,"resize":"fit"},"medium":{"w":600,"h":894,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YAASSDemi","indices":[74,84]}],"urls":[],"user_mentions":[{"screen_name":"lovatoyez","name":"larissa","id":966740760,"id_str":"966740760","indices":[3,13]}],"symbols":[],"media":[{"id":663678833380433920,"id_str":"663678833380433920","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663678838459793408,"source_status_id_str":"663678838459793408","source_user_id":966740760,"source_user_id_str":"966740760"}]},"extended_entities":{"media":[{"id":663678833380433920,"id_str":"663678833380433920","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYfSWIAAhKqQ.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":800,"resize":"fit"},"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663678838459793408,"source_status_id_str":"663678838459793408","source_user_id":966740760,"source_user_id_str":"966740760"},{"id":663678836312252416,"id_str":"663678836312252416","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXcYqNWIAAuTqE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXcYqNWIAAuTqE.jpg","url":"https:\/\/t.co\/WDDWdWUASx","display_url":"pic.twitter.com\/WDDWdWUASx","expanded_url":"http:\/\/twitter.com\/lovatoyez\/status\/663678838459793408\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":894,"resize":"fit"},"medium":{"w":600,"h":894,"resize":"fit"}},"source_status_id":663678838459793408,"source_status_id_str":"663678838459793408","source_user_id":966740760,"source_user_id_str":"966740760"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080117658"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236300337152,"id_str":"663728236300337152","text":"RT @hstar_mu: \u3010\u7b2c1\u5e55\u3011\u3053\u3061\u3089\u306e\u30b7\u30fc\u30f3\u304c1\u4f4d\u306e\u969b\u3001\u516c\u958b\u3055\u308c\u308b\u30ad\u30e3\u30e9\u30b3\u30e1\u30f3\u30c8\u306f\u3010\u661f\u8c37\u3068\u90a3\u96ea\u3011\u4e00\u90e8\u629c\u7c8b\u300e\u661f\u8c37\u300c\u305d\u3046\u3044\u3048\u3070\u3053\u306e\u6642\u3001\u7a7a\u9591\u3068\u3076\u3064\u304b\u3063\u305f\uff01\u300d\u90a3\u96ea\u300c\u305d\u3046\u306a\u306e\uff1f\u300d\u661f\u8c37\u300c\u3042\u306e\u6642\u3055\u30fc\u300d\u300f\u6295\u7968(\u30ea\u30c4\u30a4\u30fc\u30c8)\u671f\u9650\u306f2015\u5e7411\u670816\u65e5(\u6708)23\u6642\u307e\u3067\u266a https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":183193577,"id_str":"183193577","name":"\u7d14\u4e43\u2606Splash!4 P5-b","screen_name":"16sumino23","location":"\u5e7b\u60f3\u4e16\u754c","url":null,"description":"\u65e5\u5e38\u57a2\/\u3068\u3063\u304f\u306b\u3082\u3046\u6210\u4eba\/Free! (\u51db\u601c@\u601c\u30e2\u30f3\u30da)\u51db\u601c\u3076\u3059\u306c\u3044\u3068\u66ae\u3089\u3059\/\u30b9\u30bf\u30df\u30e5(\u9cf3\u67ca)\/\u3046\u305f\u30d7\u30ea(\u30c8\u30ad\u97f3)\/\u52dd\u52296\u4eba\u5bb6\u65cf(\u7236\u6bcd)\/CP\u56fa\u5b9a\u53a8\/\u5bae\u91ce\u771f\u5b88\u306f\u3075\u3057\u304e\u306a\u3044\u304d\u3082\u306e\/\u9375\u306f\u9589\u3081\u305f\u308a\u958b\u3051\u305f\u308a\/FRB\u3054\u81ea\u7531\u306b\u3069\u3046\u305e( \uff9f\u0434\uff9f)\u30ce","protected":false,"verified":false,"followers_count":102,"friends_count":148,"listed_count":3,"favourites_count":567,"statuses_count":35409,"created_at":"Thu Aug 26 11:22:44 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658454129765822465\/bZS9B61A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658454129765822465\/bZS9B61A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/183193577\/1445430417","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:58 +0000 2015","id":663724212675198976,"id_str":"663724212675198976","text":"\u3010\u7b2c1\u5e55\u3011\u3053\u3061\u3089\u306e\u30b7\u30fc\u30f3\u304c1\u4f4d\u306e\u969b\u3001\u516c\u958b\u3055\u308c\u308b\u30ad\u30e3\u30e9\u30b3\u30e1\u30f3\u30c8\u306f\u3010\u661f\u8c37\u3068\u90a3\u96ea\u3011\u4e00\u90e8\u629c\u7c8b\u300e\u661f\u8c37\u300c\u305d\u3046\u3044\u3048\u3070\u3053\u306e\u6642\u3001\u7a7a\u9591\u3068\u3076\u3064\u304b\u3063\u305f\uff01\u300d\u90a3\u96ea\u300c\u305d\u3046\u306a\u306e\uff1f\u300d\u661f\u8c37\u300c\u3042\u306e\u6642\u3055\u30fc\u300d\u300f\u6295\u7968(\u30ea\u30c4\u30a4\u30fc\u30c8)\u671f\u9650\u306f2015\u5e7411\u670816\u65e5(\u6708)23\u6642\u307e\u3067\u266a https:\/\/t.co\/BaFD1tjVre","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3008818249,"id_str":"3008818249","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","screen_name":"hstar_mu","location":null,"url":"http:\/\/hstar-mu.com\/","description":"\u5b8c\u5168\u30aa\u30ea\u30b8\u30ca\u30eb\u201c\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\u201dTV\u30a2\u30cb\u30e1\u30fc\u30b7\u30e7\u30f3\u3001\u6bce\u9031\u6708\u66dc\u65e5\u653e\u9001\u4e2d\uff01 TOKYO MX 24:00\u301c\/BS11 24:30\u301c\/AT-X 23:30\u301c\/\u5404\u52d5\u753b\u914d\u4fe1\u30b5\u30a4\u30c8 25:00\u4ee5\u964d \u3053\u3061\u3089\u306f\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0fTwitter\u3067\u3059\u266a","protected":false,"verified":false,"followers_count":26325,"friends_count":0,"listed_count":605,"favourites_count":0,"statuses_count":284,"created_at":"Tue Feb 03 05:12:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599232672280379394\/VFpqMZ2j_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":261,"favorite_count":263,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724205381292033,"id_str":"663724205381292033","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","url":"https:\/\/t.co\/BaFD1tjVre","display_url":"pic.twitter.com\/BaFD1tjVre","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724212675198976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724205381292033,"id_str":"663724205381292033","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","url":"https:\/\/t.co\/BaFD1tjVre","display_url":"pic.twitter.com\/BaFD1tjVre","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724212675198976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hstar_mu","name":"TV\u30a2\u30cb\u30e1\u300c\u30b9\u30bf\u30df\u30e5\u300d\u516c\u5f0f","id":3008818249,"id_str":"3008818249","indices":[3,12]}],"symbols":[],"media":[{"id":663724205381292033,"id_str":"663724205381292033","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","url":"https:\/\/t.co\/BaFD1tjVre","display_url":"pic.twitter.com\/BaFD1tjVre","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724212675198976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724212675198976,"source_status_id_str":"663724212675198976","source_user_id":3008818249,"source_user_id_str":"3008818249"}]},"extended_entities":{"media":[{"id":663724205381292033,"id_str":"663724205381292033","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFpfKUkAEjOqZ.jpg","url":"https:\/\/t.co\/BaFD1tjVre","display_url":"pic.twitter.com\/BaFD1tjVre","expanded_url":"http:\/\/twitter.com\/hstar_mu\/status\/663724212675198976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663724212675198976,"source_status_id_str":"663724212675198976","source_user_id":3008818249,"source_user_id_str":"3008818249"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117665"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236300398592,"id_str":"663728236300398592","text":"\u8a66\u5408\u6642\u9593\u304c\u304a\u30fc\u304b\u305f\u56db\u6642\u9593\u304b\uff1f \u9577\u3047\u306a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4089936494,"id_str":"4089936494","name":"\u864e\u306e\u6c5f\u98a8\uff08\u6728\u6d25\u5ddd\u306e\u6c5f\u98a8\u6539\uff09","screen_name":"kawakaze9_T","location":"\u85e4\u6c38\u7530\u9020\u8239\u6240\u21d4\u6728\u6d25\u5ddd\u21d4\u7532\u5b50\u5712\u7403\u5834\uff0f\u9e7f\u5c4b\u57fa\u5730","url":null,"description":"\u767d\u9732\u578b\u99c6\u9010\u8266\u4e5d\u756a\u8266\u3001\u6539\u767d\u9732\u578b\u306e\u6c5f\u98a8\u3060\u3088\u3002\u3088\u308d\u3057\u304f\u306a\uff01\u3042\u3001\u8aad\u307f\u65b9\u3001\u9593\u9055\u3048\u30f3\u306a\u3088\u3002\r\n\r\n\u306a\u308a\u304d\u308a\u306e\u300e\u3084\u304d\u3046\u8266\u5a18\u300f\u3063\u3066\u3084\u3064\u3088\u3002\u3082\u3061\u308d\u3093\u3001\u30bf\u30a4\u30ac\u30fc\u30b9\u30d5\u30a1\u30f3\u3060\u305c\u3002\u30a2\u30a4\u30b3\u30f3\u306f @Tenryu_Dragons \u304b\u3089\u9802\u6234\u3057\u305f \u30d8\u30c3\u30c0\u52df\u96c6\u4e2d\u3060\uff01 \u203b\u5b8c\u5168\u624b\u52d5\u306a\u308a\u304d\u308a \u304a\u304a\u304a\u306a\u306f\u304a\u7d04\u675f","protected":false,"verified":false,"followers_count":82,"friends_count":96,"listed_count":6,"favourites_count":57,"statuses_count":445,"created_at":"Sun Nov 01 10:52:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662269479598985218\/H0m4Z48J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662269479598985218\/H0m4Z48J_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117665"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236291973120,"id_str":"663728236291973120","text":"@hirosekeiru \u307e\u3058\u304b\u3088\u5fd8\u308c\u306a\u3044\u3088\u3046\u306b\u3057\u306a\u3044\u3068\u30fb\u30fb\u30fb\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726946388328448,"in_reply_to_status_id_str":"663726946388328448","in_reply_to_user_id":357952092,"in_reply_to_user_id_str":"357952092","in_reply_to_screen_name":"hirosekeiru","user":{"id":27869237,"id_str":"27869237","name":"\u862d\u6238\u305b\u308b@2\u65e5\u76ee\u897f\u3061-07b","screen_name":"Landsale_TL","location":"\u30cd\u30aa\u30b5\u30a4\u30bf\u30de \u30c8\u30b3\u30ed\u30b6\u30ef\u30fb\u30d4\u30e9\u30fc\u5341\u4e09\u968e \u30b3\u30a6\u30de\u30ab\u30f3\u30fb\u30d5\u30a1\u30f3\u30c9","url":"http:\/\/sukumizu.sakura.ne.jp\/","description":"\u4e00\u6c34\u793e\u69d8\u3067\u30a8\u30ed\u6f2b\u753b\u63cf\u3044\u3066\u305f\u308aSilverBlitz\u69d8\u3067TCG\u30a4\u30e9\u30b9\u30c8\u63cf\u3044\u3066\u307e\u3059\u3002\u304a\u4ed5\u4e8b\u306f\u968f\u6642\u52df\u96c6\u3057\u3066\u307e\u3059\u306e\u3067DM\u3084\u30e1\u30fc\u30eb\u306a\u3069\u9802\u3051\u308c\u3070\u3002\u597d\u304d\u306a\u6771\u65b9\u30ad\u30e3\u30e9\u306f\u30d5\u30e9\u30f3\u3061\u3083\u3093\u3002\u597d\u304d\u306a\u4f53\u4f4d\u306f\u9a0e\u4e57\u4f4d\u3002","protected":false,"verified":false,"followers_count":3711,"friends_count":1881,"listed_count":222,"favourites_count":849,"statuses_count":140428,"created_at":"Tue Mar 31 13:31:40 +0000 2009","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623308413682847744\/keC_NL0t.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623308413682847744\/keC_NL0t.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E71363","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655072153126109184\/A99XaMqp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655072153126109184\/A99XaMqp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/27869237\/1435874762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hirosekeiru","name":"\u3072\u308d\u305b\u3051\uff20\u3059\u304c\u304d\u3084\u5dee\u3057\u5165\u308c\u306e\u5974","id":357952092,"id_str":"357952092","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117663"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266921986,"id_str":"663728236266921986","text":"@__NvD \n\n\u0627\u0644\u062a\u0641\u0643\u064a\u0631 \u0627\u0644\u0633\u0639\u0648\u062f\u064a \u0644\u0644\u0627\u0633\u0641 \u060c \u0627\u064a \u0644\u0627\u0639\u0628 \u064a\u0636\u0627\u0631\u0628 \u0648\u064a\u0646\u0628\u0631\u0634 \u0648\u0642\u062a\u0627\u0644\u064a \u0639\u0644\u0649 \u0637\u0648\u0644 \u064a\u0635\u064a\u0631 \u0644\u0639\u064a\u0628 \u0628\u0639\u0636 \u0627\u0644\u0646\u0638\u0631 \u0627\u0630\u0627 \u0647\u0648 \u0627\u0635\u0644\u0627\u064b \u064a\u0646\u062a\u0645\u064a \u0644\u0643\u0631\u0629 \u0627\u0644\u0642\u062f\u0645 \u0627\u0645 \u0644\u0627 \u0645\u062b\u0644 \u064a\u0627\u0633\u064a\u0646 \u0648\u0639\u0642\u064a\u0644","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727125090930688,"in_reply_to_status_id_str":"663727125090930688","in_reply_to_user_id":613883125,"in_reply_to_user_id_str":"613883125","in_reply_to_screen_name":"__NvD","user":{"id":2199819311,"id_str":"2199819311","name":"\u2022M7md\u2022","screen_name":"M_7_8","location":"Saudi Arabia , Jeddah","url":null,"description":"#Barca , #Ahlisa","protected":false,"verified":false,"followers_count":228,"friends_count":692,"listed_count":2,"favourites_count":530,"statuses_count":9000,"created_at":"Thu Nov 28 22:32:39 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661852633284526080\/Bwie1Phm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661852633284526080\/Bwie1Phm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199819311\/1446633228","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__NvD","name":"\u0627\u0644\u0632\u0626\u0628\u0642\u064a","id":613883125,"id_str":"613883125","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266942464,"id_str":"663728236266942464","text":"#enthusiast #Student #Professional #twitter #specialist. https:\/\/t.co\/McH2pDHWqe","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3328635883,"id_str":"3328635883","name":"Camila","screen_name":"camloverme","location":"San Carlos de Bariloche","url":null,"description":"Passionate communicator. Alcohol practitioner. Food lover. Incurable music maven. Problem solver.","protected":false,"verified":false,"followers_count":219,"friends_count":1047,"listed_count":72,"favourites_count":1,"statuses_count":132024,"created_at":"Mon Aug 24 12:21:37 +0000 2015","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635789281089339392\/Ux_5EbsP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635789281089339392\/Ux_5EbsP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328635883\/1440419068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"enthusiast","indices":[0,11]},{"text":"Student","indices":[12,20]},{"text":"Professional","indices":[21,34]},{"text":"twitter","indices":[35,43]},{"text":"specialist","indices":[44,55]}],"urls":[{"url":"https:\/\/t.co\/McH2pDHWqe","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080117657"} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236266811393,"id_str":"663728236266811393","text":"@Naaaagasaki \u53ef\u611b\u3044\u308f\n\u6c17\u3065\u3044\u3066\u3057\u307e\u3063\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728102204293120,"in_reply_to_status_id_str":"663728102204293120","in_reply_to_user_id":866201035,"in_reply_to_user_id_str":"866201035","in_reply_to_screen_name":"Naaaagasaki","user":{"id":2991498576,"id_str":"2991498576","name":"\u30b7\u30e5\u30f3\u30da\u30fc","screen_name":"zaru_bmk","location":null,"url":null,"description":"\u8db3\u5bc4\u2192\u91e7\u8def\u516c\u7acb\uff11\u5e74\u9678\u4e0a","protected":false,"verified":false,"followers_count":308,"friends_count":297,"listed_count":0,"favourites_count":480,"statuses_count":1965,"created_at":"Wed Jan 21 13:34:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/578398949133832193\/Ev11ZnCT_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/578398949133832193\/Ev11ZnCT_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2991498576\/1446220263","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Naaaagasaki","name":"\u3057\u3083\u304d","id":866201035,"id_str":"866201035","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080117657"} +{"delete":{"status":{"id":321694036148748288,"id_str":"321694036148748288","user_id":900302390,"user_id_str":"900302390"},"timestamp_ms":"1447080117931"}} +{"delete":{"status":{"id":663722993399431170,"id_str":"663722993399431170","user_id":317214990,"user_id_str":"317214990"},"timestamp_ms":"1447080117952"}} +{"created_at":"Mon Nov 09 14:41:57 +0000 2015","id":663728236304666624,"id_str":"663728236304666624","text":"BEAUTY TIPS NEWS : https:\/\/t.co\/ZAUY3kZoSA #910 Goldwell Kerasilk Ultra Rich Keratin Care Daily Intense Mask 16.9 \u2026 https:\/\/t.co\/bXE8nDRBnz","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2718294697,"id_str":"2718294697","name":"BEAUTY TIPS NEWS : ","screen_name":"Fahrt_hue_712","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":246,"friends_count":4,"listed_count":32,"favourites_count":3,"statuses_count":350718,"created_at":"Sat Aug 09 00:22:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497901052885102593\/Yb5WA8cA_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497901052885102593\/Yb5WA8cA_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ZAUY3kZoSA","expanded_url":"http:\/\/ift.tt\/1iZQWcG","display_url":"ift.tt\/1iZQWcG","indices":[19,42]}],"user_mentions":[],"symbols":[],"media":[{"id":663728236212408321,"id_str":"663728236212408321","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUHLWUAEZbqG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUHLWUAEZbqG.jpg","url":"https:\/\/t.co\/bXE8nDRBnz","display_url":"pic.twitter.com\/bXE8nDRBnz","expanded_url":"http:\/\/twitter.com\/Fahrt_hue_712\/status\/663728236304666624\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728236212408321,"id_str":"663728236212408321","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUHLWUAEZbqG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUHLWUAEZbqG.jpg","url":"https:\/\/t.co\/bXE8nDRBnz","display_url":"pic.twitter.com\/bXE8nDRBnz","expanded_url":"http:\/\/twitter.com\/Fahrt_hue_712\/status\/663728236304666624\/photo\/1","type":"photo","sizes":{"medium":{"w":140,"h":140,"resize":"fit"},"small":{"w":140,"h":140,"resize":"fit"},"thumb":{"w":140,"h":140,"resize":"crop"},"large":{"w":140,"h":140,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080117666"} +{"delete":{"status":{"id":663727577765425160,"id_str":"663727577765425160","user_id":1474539182,"user_id_str":"1474539182"},"timestamp_ms":"1447080118139"}} +{"delete":{"status":{"id":663684485486125056,"id_str":"663684485486125056","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080118559"}} +{"delete":{"status":{"id":506438124323340288,"id_str":"506438124323340288","user_id":1429821848,"user_id_str":"1429821848"},"timestamp_ms":"1447080118606"}} +{"delete":{"status":{"id":663723719034990592,"id_str":"663723719034990592","user_id":2318108455,"user_id_str":"2318108455"},"timestamp_ms":"1447080118611"}} +{"delete":{"status":{"id":663500997281599488,"id_str":"663500997281599488","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080118675"}} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240469647361,"id_str":"663728240469647361","text":"\u0421\u0430\u043b\u0430\u0442 \"\u0413\u0432\u0430\u0440\u0434\u0435\u0439\u0441\u043a\u0438\u0439\" - \u043a\u0443\u043b\u0438\u043d\u0430\u0440\u043d\u044b\u0439 \u0440\u0435\u0446\u0435\u043f\u0442","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1259299236,"id_str":"1259299236","name":"MercierLorayne","screen_name":"MercierLorayne","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":19,"listed_count":0,"favourites_count":0,"statuses_count":62395,"created_at":"Mon Mar 11 12:13:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3639268007\/265b5ebfa80f4fe21a6cc0f86791d0b8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3639268007\/265b5ebfa80f4fe21a6cc0f86791d0b8_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080118659"} +{"delete":{"status":{"id":663723584800473092,"id_str":"663723584800473092","user_id":2720512951,"user_id_str":"2720512951"},"timestamp_ms":"1447080118620"}} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240482197504,"id_str":"663728240482197504","text":"RT @BestOfTattoo: http:\/\/t.co\/r9tiD8CsOU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2209993760,"id_str":"2209993760","name":"HannahPrice","screen_name":"hmprice8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":378,"friends_count":268,"listed_count":1,"favourites_count":323,"statuses_count":284,"created_at":"Sat Nov 23 04:39:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647596675058417668\/2SmR_3uO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647596675058417668\/2SmR_3uO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2209993760\/1421964826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 13:38:19 +0000 2015","id":655377299328528384,"id_str":"655377299328528384","text":"http:\/\/t.co\/r9tiD8CsOU","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1900408932,"id_str":"1900408932","name":"Best of Tattoos","screen_name":"BestOfTattoo","location":null,"url":null,"description":"showing you the best tattoos you've ever seen!","protected":false,"verified":false,"followers_count":309916,"friends_count":70,"listed_count":265,"favourites_count":4,"statuses_count":236,"created_at":"Tue Sep 24 13:09:53 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538747678746619905\/XZxNbsF4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538747678746619905\/XZxNbsF4_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1900408932\/1425214879","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1185,"favorite_count":3502,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":655377297659338752,"id_str":"655377297659338752","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","url":"http:\/\/t.co\/r9tiD8CsOU","display_url":"pic.twitter.com\/r9tiD8CsOU","expanded_url":"http:\/\/twitter.com\/BestOfTattoo\/status\/655377299328528384\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":596,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":595,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":655377297659338752,"id_str":"655377297659338752","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","url":"http:\/\/t.co\/r9tiD8CsOU","display_url":"pic.twitter.com\/r9tiD8CsOU","expanded_url":"http:\/\/twitter.com\/BestOfTattoo\/status\/655377299328528384\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":596,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":595,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BestOfTattoo","name":"Best of Tattoos","id":1900408932,"id_str":"1900408932","indices":[3,16]}],"symbols":[],"media":[{"id":655377297659338752,"id_str":"655377297659338752","indices":[18,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","url":"http:\/\/t.co\/r9tiD8CsOU","display_url":"pic.twitter.com\/r9tiD8CsOU","expanded_url":"http:\/\/twitter.com\/BestOfTattoo\/status\/655377299328528384\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":596,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":595,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":655377299328528384,"source_status_id_str":"655377299328528384","source_user_id":1900408932,"source_user_id_str":"1900408932"}]},"extended_entities":{"media":[{"id":655377297659338752,"id_str":"655377297659338752","indices":[18,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRheLgzXIAAuF1R.png","url":"http:\/\/t.co\/r9tiD8CsOU","display_url":"pic.twitter.com\/r9tiD8CsOU","expanded_url":"http:\/\/twitter.com\/BestOfTattoo\/status\/655377299328528384\/photo\/1","type":"photo","sizes":{"medium":{"w":595,"h":596,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":595,"h":596,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":655377299328528384,"source_status_id_str":"655377299328528384","source_user_id":1900408932,"source_user_id_str":"1900408932"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080118662"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240461266944,"id_str":"663728240461266944","text":"RT @PrayzeFest: #NOWPLAYING STAND - J Elizabeth Hardges - @jerhemaword @prayzefactor https:\/\/t.co\/Usj5f34jve","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3373880974,"id_str":"3373880974","name":"FINESSE GANG","screen_name":"og__lowkey","location":null,"url":null,"description":"#1ststring #freestone #freescrap #freedougie #freejabar #RIPDAD","protected":false,"verified":false,"followers_count":77,"friends_count":61,"listed_count":1,"favourites_count":199,"statuses_count":1256,"created_at":"Mon Jul 13 11:32:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643857710019149824\/DNwgbR7B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643857710019149824\/DNwgbR7B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3373880974\/1442561933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 12:15:18 +0000 2015","id":662604166125232128,"id_str":"662604166125232128","text":"#NOWPLAYING STAND - J Elizabeth Hardges - @jerhemaword @prayzefactor https:\/\/t.co\/Usj5f34jve","source":"\u003ca href=\"https:\/\/www.thepgnetwork.org\" rel=\"nofollow\"\u003ePrayzefest Gospel Network\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232118657,"id_str":"232118657","name":"WPGN Radio","screen_name":"PrayzeFest","location":"Atlanta","url":"http:\/\/www.thepgnetwork.org","description":"The PG Network home of The Award Winning Prayzefest Gospel Hour Show\r\ngiving independent christian artists a new voice in radio and television world wide","protected":false,"verified":false,"followers_count":13068,"friends_count":987,"listed_count":52,"favourites_count":59,"statuses_count":92141,"created_at":"Thu Dec 30 08:34:00 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"030005","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/805989557\/79aad27bc3c1a05301ff03bfd5ba34e2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/805989557\/79aad27bc3c1a05301ff03bfd5ba34e2.jpeg","profile_background_tile":true,"profile_link_color":"0CEDF5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"00090A","profile_text_color":"A309F0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3255185192\/a607ccc32590081313099ddd4aab033f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3255185192\/a607ccc32590081313099ddd4aab033f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/232118657\/1424856346","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":3,"entities":{"hashtags":[{"text":"NOWPLAYING","indices":[0,11]}],"urls":[{"url":"https:\/\/t.co\/Usj5f34jve","expanded_url":"http:\/\/thepgnetwork.org","display_url":"thepgnetwork.org","indices":[72,95]}],"user_mentions":[{"screen_name":"prayzefactor","name":"Prayze Factor Awards","id":1633530098,"id_str":"1633530098","indices":[58,71]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NOWPLAYING","indices":[16,27]}],"urls":[{"url":"https:\/\/t.co\/Usj5f34jve","expanded_url":"http:\/\/thepgnetwork.org","display_url":"thepgnetwork.org","indices":[88,111]}],"user_mentions":[{"screen_name":"PrayzeFest","name":"WPGN Radio","id":232118657,"id_str":"232118657","indices":[3,14]},{"screen_name":"prayzefactor","name":"Prayze Factor Awards","id":1633530098,"id_str":"1633530098","indices":[74,87]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118657"} +{"delete":{"status":{"id":663500984698740736,"id_str":"663500984698740736","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080118682"}} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486424577,"id_str":"663728240486424577","text":"@PatSnowpaw Ihr habt noch Sperrm\u00fcll vorm Haus? Cool...... GUTE BESSERUNG <3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726486340427776,"in_reply_to_status_id_str":"663726486340427776","in_reply_to_user_id":269921792,"in_reply_to_user_id_str":"269921792","in_reply_to_screen_name":"PatSnowpaw","user":{"id":2841421168,"id_str":"2841421168","name":"susan","screen_name":"BergerBerger68","location":"Bayern","url":null,"description":"give me the beat","protected":false,"verified":false,"followers_count":757,"friends_count":644,"listed_count":25,"favourites_count":55246,"statuses_count":17487,"created_at":"Wed Oct 22 18:27:39 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650295399010443264\/H0to1dJq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650295399010443264\/H0to1dJq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2841421168\/1443877159","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PatSnowpaw","name":"Raupe_Nimmersatt","id":269921792,"id_str":"269921792","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490627072,"id_str":"663728240490627072","text":"Mhiyang0529: krisloveyou2: AdorbsKath: AyalaXander: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitennicell4: #PushAwardsKa\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3078543452,"id_str":"3078543452","name":"Kath Ford","screen_name":"DJFORDAWIIIIIN8","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":1,"listed_count":20,"favourites_count":0,"statuses_count":62709,"created_at":"Fri Mar 13 23:31:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649251758653353984\/P_gjd6c0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649251758653353984\/P_gjd6c0_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKa","indices":[126,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494776320,"id_str":"663728240494776320","text":"RT @juanicozgz: Foto con unas leyendas @HectorLavilla @MIGUELCOSTAS en @SalaCreedence Zgz https:\/\/t.co\/7BIfGwd7qk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":778216938,"id_str":"778216938","name":"COSTAS BANDA","screen_name":"COSTAS_Banda","location":"Planeta Tierra","url":"http:\/\/www.miguelcostas.com","description":"@MiguelCostas Juan Naya @CocheVilla @ColasLage","protected":false,"verified":false,"followers_count":1724,"friends_count":671,"listed_count":20,"favourites_count":2070,"statuses_count":6985,"created_at":"Fri Aug 24 13:48:26 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/797509910\/4e84422aa76006fe7947e2eb2f2b97ec.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/797509910\/4e84422aa76006fe7947e2eb2f2b97ec.jpeg","profile_background_tile":false,"profile_link_color":"318096","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/558049335985061892\/QKrGoEge_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/558049335985061892\/QKrGoEge_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/778216938\/1446406454","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:31:56 +0000 2015","id":663484122116018176,"id_str":"663484122116018176","text":"Foto con unas leyendas @HectorLavilla @MIGUELCOSTAS en @SalaCreedence Zgz https:\/\/t.co\/7BIfGwd7qk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142712233,"id_str":"142712233","name":"Juan Martin","screen_name":"juanicozgz","location":"Zaragoza (Espa\u00f1a)","url":null,"description":"Amante del humor absurdo y de UNA PI\u00d1A. Si como yo estas hasta las narices de los abusos del gobierno, o si te gustan las reflexiones y el humor S\u00cdGUEME !","protected":false,"verified":false,"followers_count":390,"friends_count":755,"listed_count":11,"favourites_count":719,"statuses_count":1677,"created_at":"Tue May 11 15:13:21 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154401414\/4fmZOpZi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154401414\/4fmZOpZi.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/560163259815165953\/ItuiuT_b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/560163259815165953\/ItuiuT_b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142712233\/1391879342","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":7,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HectorLavilla","name":"Hector Lavilla Judez","id":1369190119,"id_str":"1369190119","indices":[23,37]},{"screen_name":"MIGUELCOSTAS","name":"COSTAS","id":30421182,"id_str":"30421182","indices":[39,52]},{"screen_name":"SalaCreedence","name":"Sala Creedence","id":317873718,"id_str":"317873718","indices":[56,70]}],"symbols":[],"media":[{"id":663484110711758848,"id_str":"663484110711758848","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","url":"https:\/\/t.co\/7BIfGwd7qk","display_url":"pic.twitter.com\/7BIfGwd7qk","expanded_url":"http:\/\/twitter.com\/juanicozgz\/status\/663484122116018176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663484110711758848,"id_str":"663484110711758848","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","url":"https:\/\/t.co\/7BIfGwd7qk","display_url":"pic.twitter.com\/7BIfGwd7qk","expanded_url":"http:\/\/twitter.com\/juanicozgz\/status\/663484122116018176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"juanicozgz","name":"Juan Martin","id":142712233,"id_str":"142712233","indices":[3,14]},{"screen_name":"HectorLavilla","name":"Hector Lavilla Judez","id":1369190119,"id_str":"1369190119","indices":[39,53]},{"screen_name":"MIGUELCOSTAS","name":"COSTAS","id":30421182,"id_str":"30421182","indices":[55,68]},{"screen_name":"SalaCreedence","name":"Sala Creedence","id":317873718,"id_str":"317873718","indices":[72,86]}],"symbols":[],"media":[{"id":663484110711758848,"id_str":"663484110711758848","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","url":"https:\/\/t.co\/7BIfGwd7qk","display_url":"pic.twitter.com\/7BIfGwd7qk","expanded_url":"http:\/\/twitter.com\/juanicozgz\/status\/663484122116018176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663484122116018176,"source_status_id_str":"663484122116018176","source_user_id":142712233,"source_user_id_str":"142712233"}]},"extended_entities":{"media":[{"id":663484110711758848,"id_str":"663484110711758848","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUrSI0XIAACCfO.jpg","url":"https:\/\/t.co\/7BIfGwd7qk","display_url":"pic.twitter.com\/7BIfGwd7qk","expanded_url":"http:\/\/twitter.com\/juanicozgz\/status\/663484122116018176\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663484122116018176,"source_status_id_str":"663484122116018176","source_user_id":142712233,"source_user_id_str":"142712233"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080118665"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490598400,"id_str":"663728240490598400","text":"Vietnam - The War : WHY DID THE UNITED STATES ENTER THE VIETNAM WAR? https:\/\/t.co\/n7vvhYhViH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20781010,"id_str":"20781010","name":"Mark Rienzie ","screen_name":"mrienzie","location":"HicKsville Nassau Long Island ","url":"http:\/\/www.pinterest.com\/markrienzie\/real-estate\/","description":"Call Remarkable Mark for All Your Real Estate Needs! 516.313.3112","protected":false,"verified":false,"followers_count":1260,"friends_count":2057,"listed_count":20,"favourites_count":0,"statuses_count":25067,"created_at":"Fri Feb 13 16:06:21 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463409693386231808\/TBeEQmp6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463409693386231808\/TBeEQmp6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20781010\/1373909996","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/n7vvhYhViH","expanded_url":"http:\/\/markrienzievietnamwar.blogspot.com\/2015\/08\/why-did-us-enter-vietnamwar-us-entered.html?spref=tw","display_url":"markrienzievietnamwar.blogspot.com\/2015\/08\/why-di\u2026","indices":[69,92]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240473804800,"id_str":"663728240473804800","text":"RT @PRAYINVEJANDO: quando ficam mim olhando #4DaysTillPURPOSE https:\/\/t.co\/fxTzuRYUha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":588667687,"id_str":"588667687","name":"dri Purpose","screen_name":"SORRYpressure","location":"Canad\u00e1","url":null,"description":"my beliebers Purpose #13","protected":false,"verified":false,"followers_count":2312,"friends_count":2179,"listed_count":9,"favourites_count":8889,"statuses_count":62667,"created_at":"Wed May 23 23:38:11 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"00000B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621342589271298048\/Hh4O1Cq2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621342589271298048\/Hh4O1Cq2.jpg","profile_background_tile":true,"profile_link_color":"FF2600","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707829459656704\/Iuxy_mWv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707829459656704\/Iuxy_mWv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588667687\/1447075274","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:47 +0000 2015","id":663727187359629312,"id_str":"663727187359629312","text":"quando ficam mim olhando #4DaysTillPURPOSE https:\/\/t.co\/fxTzuRYUha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":563886805,"id_str":"563886805","name":"bru","screen_name":"PRAYINVEJANDO","location":"PURPOSE ","url":null,"description":"quando se trata de justin bieber vc joga a ra\u00e7\u00e3o no ch\u00e3o e deixa latindo sozinho.\n \u2728 @justinbieber FOLLOWED ME 06\/10\/2015 \u2728","protected":false,"verified":false,"followers_count":4026,"friends_count":2692,"listed_count":9,"favourites_count":512,"statuses_count":42594,"created_at":"Thu Apr 26 17:12:04 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000172875137\/lN1J3YQD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000172875137\/lN1J3YQD.png","profile_background_tile":false,"profile_link_color":"1C1C1C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FAE3E7","profile_text_color":"EFEBEB","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663140798691692544\/PO3JYv1j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663140798691692544\/PO3JYv1j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/563886805\/1446940060","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":1,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[25,42]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727169168887808,"id_str":"663727169168887808","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","url":"https:\/\/t.co\/fxTzuRYUha","display_url":"pic.twitter.com\/fxTzuRYUha","expanded_url":"http:\/\/twitter.com\/PRAYINVEJANDO\/status\/663727187359629312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727169168887808,"id_str":"663727169168887808","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","url":"https:\/\/t.co\/fxTzuRYUha","display_url":"pic.twitter.com\/fxTzuRYUha","expanded_url":"http:\/\/twitter.com\/PRAYINVEJANDO\/status\/663727187359629312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysTillPURPOSE","indices":[44,61]}],"urls":[],"user_mentions":[{"screen_name":"PRAYINVEJANDO","name":"bru","id":563886805,"id_str":"563886805","indices":[3,17]}],"symbols":[],"media":[{"id":663727169168887808,"id_str":"663727169168887808","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","url":"https:\/\/t.co\/fxTzuRYUha","display_url":"pic.twitter.com\/fxTzuRYUha","expanded_url":"http:\/\/twitter.com\/PRAYINVEJANDO\/status\/663727187359629312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727187359629312,"source_status_id_str":"663727187359629312","source_user_id":563886805,"source_user_id_str":"563886805"}]},"extended_entities":{"media":[{"id":663727169168887808,"id_str":"663727169168887808","indices":[62,85],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIWAIWUAAGM7z.jpg","url":"https:\/\/t.co\/fxTzuRYUha","display_url":"pic.twitter.com\/fxTzuRYUha","expanded_url":"http:\/\/twitter.com\/PRAYINVEJANDO\/status\/663727187359629312\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":577,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663727187359629312,"source_status_id_str":"663727187359629312","source_user_id":563886805,"source_user_id_str":"563886805"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118660"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240469671937,"id_str":"663728240469671937","text":"RT @redcheries: troppo bellina sara \u00e8 l'unica che mi piace per adesso #uominiedonne","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269892738,"id_str":"269892738","name":"autumn leaves.","screen_name":"missjelenasmile","location":"pll\/haleb\u2661","url":null,"description":"You tell me that you need me, then you go and cut me down, but wait..\nyou tell me that you're sorry, didn't think I'd turn around.","protected":false,"verified":false,"followers_count":907,"friends_count":1521,"listed_count":0,"favourites_count":2317,"statuses_count":46704,"created_at":"Mon Mar 21 16:55:03 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000088757711\/239d70520c8cb11e736c5ab640fe2373.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000088757711\/239d70520c8cb11e736c5ab640fe2373.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645263218353442816\/J-em1noT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645263218353442816\/J-em1noT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269892738\/1442677690","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051746947072,"id_str":"663728051746947072","text":"troppo bellina sara \u00e8 l'unica che mi piace per adesso #uominiedonne","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":718212522,"id_str":"718212522","name":"\ufe0f\ufe0f\ufe0f","screen_name":"redcheries","location":"shawty \/ proibity kill \/ cv","url":"http:\/\/redcheries.tumblr.com\/","description":"a scrivere sui muri che sei una testa di cazzo","protected":false,"verified":false,"followers_count":6164,"friends_count":285,"listed_count":49,"favourites_count":47575,"statuses_count":39354,"created_at":"Thu Jul 26 14:28:01 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/853843393\/0166b31e305bfbfa593ea43909c6320c.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/853843393\/0166b31e305bfbfa593ea43909c6320c.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662686928001744897\/ip3Pwh9h_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662686928001744897\/ip3Pwh9h_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/718212522\/1445523248","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"uominiedonne","indices":[54,67]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uominiedonne","indices":[70,83]}],"urls":[],"user_mentions":[{"screen_name":"redcheries","name":"\ufe0f\ufe0f\ufe0f","id":718212522,"id_str":"718212522","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080118659"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240473874432,"id_str":"663728240473874432","text":"RT @matthandwritten: am\u00e9m https:\/\/t.co\/ewk4LjIelQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1436804244,"id_str":"1436804244","name":"honey","screen_name":"lumpsoffsugar","location":"Chal\u00e9 5 \/\/ \u2653","url":null,"description":"br\u00f3colis n \u00e9 t\u00e3o ruim assim...","protected":false,"verified":false,"followers_count":1144,"friends_count":1764,"listed_count":2,"favourites_count":4738,"statuses_count":28696,"created_at":"Fri May 17 22:38:41 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522442085203337217\/EAfY56oA.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522442085203337217\/EAfY56oA.jpeg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661019669097283584\/uRRcL0r7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661019669097283584\/uRRcL0r7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1436804244\/1444107870","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:38:51 +0000 2015","id":663682155617341440,"id_str":"663682155617341440","text":"am\u00e9m https:\/\/t.co\/ewk4LjIelQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2895025391,"id_str":"2895025391","name":"...\u2022\u00b0olivEr\u00a1!\u00bf\u2022*\u0cc3","screen_name":"matthandwritten","location":"\/niall and shawn\/\/","url":"http:\/\/thepsychopacks.tumblr.com\/","description":"'cause when you look like that, i've never ever wanted to be so bad, oh, it drives me wild, you're driving me wild...","protected":false,"verified":false,"followers_count":3124,"friends_count":2004,"listed_count":3,"favourites_count":3505,"statuses_count":18806,"created_at":"Thu Nov 27 19:30:10 +0000 2014","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659007960291614721\/bABxhu_v.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659007960291614721\/bABxhu_v.jpg","profile_background_tile":true,"profile_link_color":"98C0FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663699858990219264\/mdIRxQHw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663699858990219264\/mdIRxQHw_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2895025391\/1447073485","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663669344677838848,"quoted_status_id_str":"663669344677838848","quoted_status":{"created_at":"Mon Nov 09 10:47:56 +0000 2015","id":663669344677838848,"id_str":"663669344677838848","text":"deus cria um clone meu pra viver por mim enqnt eu durmo at\u00e9 meio dia pf nunca te pedi nada","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":298893210,"id_str":"298893210","name":"tati","screen_name":"inwderland","location":null,"url":"http:\/\/instagram.com\/mellotat","description":"snow white with red hair","protected":false,"verified":false,"followers_count":36942,"friends_count":27727,"listed_count":30,"favourites_count":4067,"statuses_count":32179,"created_at":"Sun May 15 04:07:19 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/573007599156609025\/4J4rWsW1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/573007599156609025\/4J4rWsW1.jpeg","profile_background_tile":true,"profile_link_color":"696969","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"949494","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662499228523057152\/GcOBXAkG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662499228523057152\/GcOBXAkG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/298893210\/1446787845","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewk4LjIelQ","expanded_url":"https:\/\/twitter.com\/inwderland\/status\/663669344677838848","display_url":"twitter.com\/inwderland\/sta\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ewk4LjIelQ","expanded_url":"https:\/\/twitter.com\/inwderland\/status\/663669344677838848","display_url":"twitter.com\/inwderland\/sta\u2026","indices":[26,49]}],"user_mentions":[{"screen_name":"matthandwritten","name":"...\u2022\u00b0olivEr\u00a1!\u00bf\u2022*\u0cc3","id":2895025391,"id_str":"2895025391","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118660"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486424576,"id_str":"663728240486424576","text":"Cara sou muito deboxada \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546207441,"id_str":"546207441","name":"BISCOIT\u00c3O \u2655","screen_name":"StheffanieV","location":"Rio de Janeiro, Brasil","url":"http:\/\/www.facebook.com\/stheffanie.vieira","description":null,"protected":false,"verified":false,"followers_count":152,"friends_count":275,"listed_count":0,"favourites_count":2960,"statuses_count":9508,"created_at":"Thu Apr 05 17:01:14 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000055894103\/94e3c18749ffc83b5eddddb7b6890e94.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000055894103\/94e3c18749ffc83b5eddddb7b6890e94.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659706624110669824\/6wUyqrFn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659706624110669824\/6wUyqrFn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546207441\/1442705845","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"97bcdfca1a2dca59","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/97bcdfca1a2dca59.json","place_type":"city","name":"Rio de Janeiro","full_name":"Rio de Janeiro, Brasil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-43.795449,-23.083020],[-43.795449,-22.739823],[-43.087707,-22.739823],[-43.087707,-23.083020]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490635264,"id_str":"663728240490635264","text":"RT @niallbiscate: qnd todo mundo est\u00e1 dizendo que as m\u00fasicas s\u00e3o boas por\u00e9m voc\u00ea \u00e9 a \u00fanica que n\u00e3o escutou o \u00e1lbum:\n#4DaysUntilMITAM https:\u2026","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973211137,"id_str":"2973211137","name":"\u2020Cah\u2020","screen_name":"Portilla_Cah","location":null,"url":null,"description":"\u2605Directioner, Mahomie, 5SOSFam, RBD maniaca, Mixer\u2605","protected":false,"verified":false,"followers_count":727,"friends_count":687,"listed_count":0,"favourites_count":9533,"statuses_count":3517,"created_at":"Sun Jan 11 15:44:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649998788598333441\/M42xMPij.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649998788598333441\/M42xMPij.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649999672015253504\/LM_Bif2a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649999672015253504\/LM_Bif2a_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:47 +0000 2015","id":663710576502247424,"id_str":"663710576502247424","text":"qnd todo mundo est\u00e1 dizendo que as m\u00fasicas s\u00e3o boas por\u00e9m voc\u00ea \u00e9 a \u00fanica que n\u00e3o escutou o \u00e1lbum:\n#4DaysUntilMITAM https:\/\/t.co\/IfiNdnEZgC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":340490523,"id_str":"340490523","name":"LANA","screen_name":"niallbiscate","location":"SOMEDAY NJH\/5\u2765louisandharry","url":"https:\/\/twitter.com\/niallofficial\/status\/66529308298063872","description":"0\/5 FOLLOW AND YEAH I DIDNT MEET NIALL AND DIDNT A POSE WITH HIM ITS NOT A BIG DEAL","protected":false,"verified":false,"followers_count":20761,"friends_count":9314,"listed_count":77,"favourites_count":6570,"statuses_count":98879,"created_at":"Fri Jul 22 19:50:40 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/658373016997515265\/z2xkj2nm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/658373016997515265\/z2xkj2nm.png","profile_background_tile":true,"profile_link_color":"DF7401","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716026949873665\/ZjQQEIJb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716026949873665\/ZjQQEIJb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/340490523\/1447077146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":263,"favorite_count":54,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[98,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663710573851488256,"id_str":"663710573851488256","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","url":"https:\/\/t.co\/IfiNdnEZgC","display_url":"pic.twitter.com\/IfiNdnEZgC","expanded_url":"http:\/\/twitter.com\/niallbiscate\/status\/663710576502247424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":510,"h":363,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":510,"h":363,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710573851488256,"id_str":"663710573851488256","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","url":"https:\/\/t.co\/IfiNdnEZgC","display_url":"pic.twitter.com\/IfiNdnEZgC","expanded_url":"http:\/\/twitter.com\/niallbiscate\/status\/663710576502247424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":510,"h":363,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":510,"h":363,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[116,132]}],"urls":[],"user_mentions":[{"screen_name":"niallbiscate","name":"LANA","id":340490523,"id_str":"340490523","indices":[3,16]}],"symbols":[],"media":[{"id":663710573851488256,"id_str":"663710573851488256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","url":"https:\/\/t.co\/IfiNdnEZgC","display_url":"pic.twitter.com\/IfiNdnEZgC","expanded_url":"http:\/\/twitter.com\/niallbiscate\/status\/663710576502247424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":510,"h":363,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":510,"h":363,"resize":"fit"}},"source_status_id":663710576502247424,"source_status_id_str":"663710576502247424","source_user_id":340490523,"source_user_id_str":"340490523"}]},"extended_entities":{"media":[{"id":663710573851488256,"id_str":"663710573851488256","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5QBwWsAAg6tP.jpg","url":"https:\/\/t.co\/IfiNdnEZgC","display_url":"pic.twitter.com\/IfiNdnEZgC","expanded_url":"http:\/\/twitter.com\/niallbiscate\/status\/663710576502247424\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":510,"h":363,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":510,"h":363,"resize":"fit"}},"source_status_id":663710576502247424,"source_status_id_str":"663710576502247424","source_user_id":340490523,"source_user_id_str":"340490523"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494710784,"id_str":"663728240494710784","text":"RT @inft_atm: \uc544 \ub354\ub7fd\uac8c \uae4c\ub2e4\ub86d\ub124 \uc6b8\uc5b4\ube60\ud55c\ud14c \uba58\uc158\ubc84\ub0cf\ub54c\ub3c4 5\uc904 \uc548\ub118\uae30\ub294\ub370 #\uc778\ud53c\ub2c8\ud2b8 \uc6b8\uc624\ube60\ub4e4 \uc0c1\uc8fc\uc138\uc694 \uc6b0\uc8fc\ucd5c\uac15 #INFINITE \uc9f1 \uc138\uae30\uc758 \uba85\uace1 #\ubc30\ub4dc \ub9ac\uc5bc\ub9ac\ud2f0 \uba85\ubc18 #BAD \uc778\ud53c\ub2c8\ud2b8\uac00 \ub9c8\ub9c8\uc5d0\uc11c \uc0c1\uc744 \ubc1b\uc558\uc73c\uba74 \uc88b\uac8c5\ub2e4#2015MAMA \ub9c8\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":730745144,"id_str":"730745144","name":"\ub3d9\uc790","screen_name":"dlstmv0520","location":null,"url":"https:\/\/open.kakao.com\/o\/sbCS7ae","description":"\uba54\uc778\ud2b8\uc717\ubcf4\uace0 \ub2e4\uac00\uc640\uc8fc\uc138\uc694\u2661","protected":false,"verified":false,"followers_count":762,"friends_count":613,"listed_count":1,"favourites_count":11,"statuses_count":34296,"created_at":"Wed Aug 01 14:03:10 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662046870282203136\/1BCXl1Sk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662046870282203136\/1BCXl1Sk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/730745144\/1445089399","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:26 +0000 2015","id":663725587433783296,"id_str":"663725587433783296","text":"\uc544 \ub354\ub7fd\uac8c \uae4c\ub2e4\ub86d\ub124 \uc6b8\uc5b4\ube60\ud55c\ud14c \uba58\uc158\ubc84\ub0cf\ub54c\ub3c4 5\uc904 \uc548\ub118\uae30\ub294\ub370 #\uc778\ud53c\ub2c8\ud2b8 \uc6b8\uc624\ube60\ub4e4 \uc0c1\uc8fc\uc138\uc694 \uc6b0\uc8fc\ucd5c\uac15 #INFINITE \uc9f1 \uc138\uae30\uc758 \uba85\uace1 #\ubc30\ub4dc \ub9ac\uc5bc\ub9ac\ud2f0 \uba85\ubc18 #BAD \uc778\ud53c\ub2c8\ud2b8\uac00 \ub9c8\ub9c8\uc5d0\uc11c \uc0c1\uc744 \ubc1b\uc558\uc73c\uba74 \uc88b\uac8c5\ub2e4#2015MAMA \ub9c8\ub9c8 \uc778\ud53c\ub2c8\ud2b8 \uc0c1\uc8fc\uc138\uc624","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244086696,"id_str":"3244086696","name":"\ud478\uaddc\ub9d8 \uc6b0\uc720","screen_name":"inft_atm","location":null,"url":null,"description":"\uc778\ud53c\ub2c8\ud2b8\uc5d0 \uc778\uc0dd\ubca0\ud305","protected":false,"verified":false,"followers_count":41,"friends_count":349,"listed_count":1,"favourites_count":91,"statuses_count":5138,"created_at":"Sat Jun 13 11:21:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662836476988665856\/5e4m_Pv6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662836476988665856\/5e4m_Pv6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244086696\/1440858071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[34,39]},{"text":"INFINITE","indices":[55,64]},{"text":"\ubc30\ub4dc","indices":[74,77]},{"text":"BAD","indices":[86,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[48,53]},{"text":"INFINITE","indices":[69,78]},{"text":"\ubc30\ub4dc","indices":[88,91]},{"text":"BAD","indices":[100,104]}],"urls":[],"user_mentions":[{"screen_name":"inft_atm","name":"\ud478\uaddc\ub9d8 \uc6b0\uc720","id":3244086696,"id_str":"3244086696","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080118665"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240478015491,"id_str":"663728240478015491","text":"RT @AjakTong: \u270f\ufe0f\ud83d\udcda\ud83d\udcaa\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3141123624,"id_str":"3141123624","name":"Bswish_","screen_name":"BabyBen__","location":null,"url":null,"description":"D1 Bound Hoop4Lou Money is the Motive","protected":false,"verified":false,"followers_count":281,"friends_count":256,"listed_count":0,"favourites_count":879,"statuses_count":2689,"created_at":"Mon Apr 06 05:07:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660884581915238401\/v63DG9Wf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660884581915238401\/v63DG9Wf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3141123624\/1446769172","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:38:00 +0000 2015","id":663591346037362688,"id_str":"663591346037362688","text":"\u270f\ufe0f\ud83d\udcda\ud83d\udcaa\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521729275,"id_str":"521729275","name":"Ajak Tong","screen_name":"AjakTong","location":"lanchville lancher city ","url":"http:\/\/okaykoo.com","description":"Basketball ebk . gotta eat by any means","protected":false,"verified":false,"followers_count":1394,"friends_count":1126,"listed_count":0,"favourites_count":7840,"statuses_count":24842,"created_at":"Sun Mar 11 22:17:15 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659812287759298560\/LsUbgL1-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659812287759298560\/LsUbgL1-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521729275\/1444186825","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AjakTong","name":"Ajak Tong","id":521729275,"id_str":"521729275","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465342464,"id_str":"663728240465342464","text":"@wrmgxpkgtswrmtg \u304a\u306f\u3088\u30fc\u3054\u3056\u3044\u307e\u3059\uff01\u4eca\u65e5\u3082\u516b\u7530\u3055\u3093\u306e\u5bdd\u7656\u304c\u7f8e\u3057\u3044\u30c3\u30b9\uff01","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u30d0\u30fc\u30fb\u30db\u30e0\u30e9\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728055316307968,"in_reply_to_status_id_str":"663728055316307968","in_reply_to_user_id":2635012147,"in_reply_to_user_id_str":"2635012147","in_reply_to_screen_name":"wrmgxpkgtswrmtg","user":{"id":932413632,"id_str":"932413632","name":"\u3061\u3087\u3063\u3068\u516b\u7530\u3055\u3093\uff01bot","screen_name":"yatasan_bot","location":"\u30d0\u30fc\u30fb\u30db\u30e0\u30e9","url":null,"description":"\u938c\u672c\u529b\u592b\u304c\u516b\u7530\u3055\u3093\u516b\u7530\u3055\u3093\u3046\u308b\u3055\u3044\u3060\u3051\u306ebot\u3067\u3059\u3002\u938c\u672c\u304c\u547c\u3076\u3068\u3044\u3046\u3088\u308a\u306f\u516b\u7530\u3055\u3093\u304c\u547c\u3070\u308c\u308b\u611f\u3058\u306e\u30cb\u30e5\u30a2\u30f3\u30b9\u3002\u30cd\u30bf\u3044\u3063\u3071\u3044\u3002\u3075\u3093\u308f\u308a\u304a\u8150\u308c\u733f\u7f8e\u98a8\u5473\u3002\u938c\u672c\u4ee5\u5916\u3082\u558b\u3063\u305f\u308a\u3002\u6f2b\u753b\u3001\u30a2\u30cb\u30e1\u3001\u5c0f\u8aac\u306e\u30cd\u30bf\u30d0\u30ec\u304c\u3042\u308a\u307e\u3059\u3002\u938c\u672c\u306fHSO(\u30cf\u30a4\u30b9\u30da\u30c3\u30af\u30aa\u30ab\u30f3)\u3002\u3044\u308d\u3044\u308d\u6df7\u5728\u3057\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1769,"friends_count":1917,"listed_count":25,"favourites_count":0,"statuses_count":1554680,"created_at":"Wed Nov 07 16:28:57 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2819191696\/0c98726e48c43f9ee4623f6924ececf0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2819191696\/0c98726e48c43f9ee4623f6924ececf0_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wrmgxpkgtswrmtg","name":"@dzeko913","id":2635012147,"id_str":"2635012147","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486440961,"id_str":"663728240486440961","text":"\u0627\u0644\u0644\u0647\u0645 \u0623\u0639\u0630\u0646\u0627 \u0645\u0646 \u0639\u0630\u0627\u0628 \u0627\u0644\u0642\u0628\u0631 \u0648\u0639\u0630\u0627\u0628 \u062c\u0647\u0646\u0645\n\u267b\ufe0f https:\/\/t.co\/rW7Zo3UVKk","source":"\u003ca href=\"http:\/\/zad-muslim.com\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0632\u0627\u062f \u0627\u0644\u0645\u0633\u0644\u0645\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":552196707,"id_str":"552196707","name":"\u0628\u0646 \u0639\u0648\u0627\u0636","screen_name":"bandarso34","location":"K.S.A jedahh","url":null,"description":"\u0627\u0644\u0644\u0651\u0647\u0645 \u064a\u0627\u0645\u0634\u0627\u0641\u064a \u0634\u0627\u0641\u064a \u0623\u0628\u0646\u062a\u064a _ \u0648\u062c\u0645\u064a\u0639 \u0645\u0631\u0636\u0649 \u0627\u0644\u0645\u0633\u0644\u0645\u064a\u0646 _\u062f\u0639\u0648\u0627\u062a\u0643\u0645_","protected":false,"verified":false,"followers_count":4822,"friends_count":4463,"listed_count":1,"favourites_count":563,"statuses_count":28144,"created_at":"Thu Apr 12 19:39:35 +0000 2012","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654587965570711552\/eE6lX7H1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654587965570711552\/eE6lX7H1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/552196707\/1438106095","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rW7Zo3UVKk","expanded_url":"http:\/\/zad-muslim.com","display_url":"zad-muslim.com","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240473866240,"id_str":"663728240473866240","text":"@thethreeside til 5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728028573433856,"in_reply_to_status_id_str":"663728028573433856","in_reply_to_user_id":122130711,"in_reply_to_user_id_str":"122130711","in_reply_to_screen_name":"thethreeside","user":{"id":2880116423,"id_str":"2880116423","name":"nelrrari","screen_name":"isbusy3","location":"413","url":"http:\/\/favelaofficial.com","description":"trill @favela_413 3 Side SouthSide #TheH Yoke","protected":false,"verified":false,"followers_count":328,"friends_count":265,"listed_count":5,"favourites_count":7220,"statuses_count":8469,"created_at":"Sun Nov 16 21:55:02 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661882699091591168\/0cTp4a9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661882699091591168\/0cTp4a9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2880116423\/1444791776","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thethreeside","name":"\u4e09\u4e2a\u4fa7","id":122130711,"id_str":"122130711","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080118660"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240461135872,"id_str":"663728240461135872","text":"@Asuna1Inori \n\u3088\u308d\u3057\u304f\u306d(\u273d\u00b4\u0f6b`\u273d)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726988222316544,"in_reply_to_status_id_str":"663726988222316544","in_reply_to_user_id":1466804239,"in_reply_to_user_id_str":"1466804239","in_reply_to_screen_name":"Asuna1Inori","user":{"id":3092321676,"id_str":"3092321676","name":"\u967d\u83dc\uff7b\uff67\uff9d","screen_name":"Hinakagi_s24","location":"\u541b\u3068\u7bc9\u304f\u672a\u6765","url":"http:\/\/hibari.nana-music.com\/w\/profile\/1156546\/","description":"\u81ea\u7531\u306a\u751f\u304d\u65b9( \u02d9-\u02d9 )\u57fa\u672c\u30ad\u30e3\u30e9\u5c02\u3002\u6238\u677e\u9065\u3055\u3093\u597d\u304d\u3067\u3059\u3002\u58f0\u512a\/\u30cb\u30b3\u30eb\u6c11\u73b2\u97f3\/\u7d76\u30c1\u30eb\/HoneyWorks\/\u9280\u9b42\/\u30cb\u30b3\u751f\/CAS\u4e3b\/nana\/\u7d75\u5e2b\/\u30b9\u30e4\u30a1\u308b\u4f1a\/\u63a8\u3057\u540d\u27adHi7\u6c11\u2661\u611b\u4eba\uff3b\u3042\u304b\u306d\uff3d\u2661\u5a18\uff3b\u3061\u3083\u307e\uff3d\u2661\u76f8\u68d2\uff3b44\u732b\uff3d\u2661\u58f0\u771f\u4f3c\u6b74\u306f\uff15\u5e74\u307b\u3069\u2026\u5c0f\u611b\u968a*","protected":false,"verified":false,"followers_count":202,"friends_count":97,"listed_count":7,"favourites_count":138,"statuses_count":1410,"created_at":"Tue Mar 17 05:29:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663248499094372352\/iEOaqw5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663248499094372352\/iEOaqw5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092321676\/1446448896","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Asuna1Inori","name":"\u3086\u3063\u304f\u308a\u30a2\u30b9\u30ca\uff20\u76f8\u65b9sin","id":1466804239,"id_str":"1466804239","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118657"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465485824,"id_str":"663728240465485824","text":"@AlraiMediaGroup @mh_awadi \u0642\u0628\u0644 \u0623\u0646 \u064a\u0646\u062a\u062d\u0631?? or killed\n0 retweets 0 likes","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663677197534765056,"in_reply_to_status_id_str":"663677197534765056","in_reply_to_user_id":153841889,"in_reply_to_user_id_str":"153841889","in_reply_to_screen_name":"AlraiMediaGroup","user":{"id":244630440,"id_str":"244630440","name":"Harry Jordan","screen_name":"harryjordan50","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":110,"listed_count":0,"favourites_count":44,"statuses_count":664,"created_at":"Sat Jan 29 19:20:04 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2464336528\/cb66t2o9seu7aj4b52m9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2464336528\/cb66t2o9seu7aj4b52m9_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AlraiMediaGroup","name":"Alrai Media Group","id":153841889,"id_str":"153841889","indices":[0,16]},{"screen_name":"mh_awadi","name":"\u0645\u062d\u0645\u062f \u0627\u0644\u0639\u0648\u0636\u064a","id":334865866,"id_str":"334865866","indices":[17,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465305601,"id_str":"663728240465305601","text":"RT @HopeLoisGil: Liza TheMostBeautiful\n\nOur gorgeous baby girl https:\/\/t.co\/NmNQzRLD5P","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3964101620,"id_str":"3964101620","name":"Melody","screen_name":"melodeyy22","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":12,"listed_count":7,"favourites_count":6,"statuses_count":32113,"created_at":"Wed Oct 21 01:47:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656649090839613440\/4nW-QuiF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656649090839613440\/4nW-QuiF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3964101620\/1445392381","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727867457482752,"id_str":"663727867457482752","text":"Liza TheMostBeautiful\n\nOur gorgeous baby girl https:\/\/t.co\/NmNQzRLD5P","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3229707956,"id_str":"3229707956","name":"iQUENreallyHOPE","screen_name":"HopeLoisGil","location":"Macau","url":null,"description":"i HOPE their \u2764\ufe0f QUEN last FOREVER","protected":false,"verified":false,"followers_count":904,"friends_count":492,"listed_count":6,"favourites_count":1212,"statuses_count":5879,"created_at":"Fri May 29 12:02:28 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656623430435868672\/5-driMMV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656623430435868672\/5-driMMV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3229707956\/1438162258","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d029ddcdc4fc44b6","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d029ddcdc4fc44b6.json","place_type":"country","name":"Macau","full_name":"Macau","country_code":"MO","country":"\u6fb3\u9580","bounding_box":{"type":"Polygon","coordinates":[[[113.527082,22.105364],[113.527082,22.218223],[113.604595,22.218223],[113.604595,22.105364]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727837208154112,"id_str":"663727837208154112","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","url":"https:\/\/t.co\/NmNQzRLD5P","display_url":"pic.twitter.com\/NmNQzRLD5P","expanded_url":"http:\/\/twitter.com\/HopeLoisGil\/status\/663727867457482752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727837208154112,"id_str":"663727837208154112","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","url":"https:\/\/t.co\/NmNQzRLD5P","display_url":"pic.twitter.com\/NmNQzRLD5P","expanded_url":"http:\/\/twitter.com\/HopeLoisGil\/status\/663727867457482752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HopeLoisGil","name":"iQUENreallyHOPE","id":3229707956,"id_str":"3229707956","indices":[3,15]}],"symbols":[],"media":[{"id":663727837208154112,"id_str":"663727837208154112","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","url":"https:\/\/t.co\/NmNQzRLD5P","display_url":"pic.twitter.com\/NmNQzRLD5P","expanded_url":"http:\/\/twitter.com\/HopeLoisGil\/status\/663727867457482752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663727867457482752,"source_status_id_str":"663727867457482752","source_user_id":3229707956,"source_user_id_str":"3229707956"}]},"extended_entities":{"media":[{"id":663727837208154112,"id_str":"663727837208154112","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI84xUkAAFYx7.jpg","url":"https:\/\/t.co\/NmNQzRLD5P","display_url":"pic.twitter.com\/NmNQzRLD5P","expanded_url":"http:\/\/twitter.com\/HopeLoisGil\/status\/663727867457482752\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":749,"h":738,"resize":"fit"},"medium":{"w":600,"h":591,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"}},"source_status_id":663727867457482752,"source_status_id_str":"663727867457482752","source_user_id":3229707956,"source_user_id_str":"3229707956"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486289409,"id_str":"663728240486289409","text":"\u6700\u8fd1\u306e\u540d\u53f0\u8a5e\u3060\u3068\u81ea\u5206\u7684\u306b\u306f\u3001\u96f6\u5f0f\u30aa\u30d7\u7df4\u7fd2\u4e2d\u306b\u30c8\u30a4\u30ec\u5c0f\u4f11\u61a9\u306b\u306a\u3063\u305f\u6240\u3067\u623b\u3063\u3066\u304d\u305f\u30e1\u30f3\u30d0\u30fc\u304c\u4e00\u8a00\u3002\n\u300c\u7c98\u7740\u5f3e\u6368\u3066\u3066\u304d\u307e\u3057\u305f\uff3e\uff3e\u300d\n\u5439\u3044\u305f\uff57","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211400605,"id_str":"211400605","name":"eL\uff08\u30a8\u30eb\uff09","screen_name":"sfs_eL","location":"\u95a2\u6771","url":null,"description":"\u30a2\u30a6\u30c8\u30c9\u30a2\u306a\u8da3\u5473\u306f\u65c5\u884c(\u56fd\u5185\u5916)\u3002 \u30a4\u30f3\u30c9\u30a2\u306a\u8da3\u5473\u306f\u30b2\u30fc\u30e0\u3001\u8aad\u66f8(\u4e00\u822c\u66f8\u7c4d\u3001\u6f2b\u753b\u3001\u30e9\u30ce\u30d9)\u3001\u306a\u3069\u306a\u3069\u3002FF14\u306f\u30d0\u30cf\u9bd6\u306b\u3066\u6d3b\u52d5\u4e2d\u3002\u30e1\u30a4\u30f3\u306f\u4eca\u306e\u3068\u3053\u308d\u767d\u3002\u3082\u3057\u826f\u3051\u308c\u3070\u304a\u58f0\u304b\u3051\u4e0b\u3055\u3044\u307e\u3057(\u00b4\u03c9\uff40)\u2229","protected":false,"verified":false,"followers_count":28,"friends_count":79,"listed_count":1,"favourites_count":95,"statuses_count":4461,"created_at":"Wed Nov 03 04:09:05 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065267051\/69b5c05b0630e4068ab48289f45fc259.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065267051\/69b5c05b0630e4068ab48289f45fc259.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623882260073189376\/bmRqmU5E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623882260073189376\/bmRqmU5E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211400605\/1437580133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486313985,"id_str":"663728240486313985","text":"RT @369doughnut: \u8d64\u585a\u4e0d\u4e8c\u592b\u306e\u732b\u3001\u3044\u304b\u306b\u3082\u8d64\u585a\u4e0d\u4e8c\u592b\u306e\u732b\u3063\u3066\u304b\u3093\u3058\u3067\u7d20\u6674\u3089\u3057\u3044\u306a\u3002\u540d\u524d\u306f\u83ca\u5343\u4ee3 http:\/\/t.co\/5nKwWjPGOw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117649480,"id_str":"117649480","name":"\u5357","screen_name":"m6n6m","location":null,"url":"http:\/\/twpf.jp\/m6n6m","description":"\u6d77\u5916\u30a2\u30cb\u30e1\u306b\u30cf\u30de\u308a\u3060\u3057\u305f\u8150\u5973\u5b50 \u97f3\u30b2\u30fb\u4ffa\u5316\u30fb\u7121\u6dfb\u3067\u8150\u3063\u3066\u308b \u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3092\u898b\u3066\u4e0b\u3055\u3044 \u30b9\u30b1\u30d9\u57a2\u3010@M6n6mMnm \u3011\u7ba1\u7406\u4e2d\u3010@pm_COSINE_bot\u3011\u30a4\u30ab\u3088\u308d\u3057\u304f\u301c\u3010m6n6mnn\u3011","protected":false,"verified":false,"followers_count":238,"friends_count":287,"listed_count":23,"favourites_count":5280,"statuses_count":28825,"created_at":"Fri Feb 26 05:07:50 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0A64","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000116498612\/3b2a55c3d4ca330e0ea44ebdd05f975b.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000116498612\/3b2a55c3d4ca330e0ea44ebdd05f975b.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FDF0CC","profile_text_color":"D8DEC1","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654948675991416832\/HUPggCds_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654948675991416832\/HUPggCds_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117649480\/1443545717","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Jan 27 12:13:54 +0000 2015","id":560048049469149184,"id_str":"560048049469149184","text":"\u8d64\u585a\u4e0d\u4e8c\u592b\u306e\u732b\u3001\u3044\u304b\u306b\u3082\u8d64\u585a\u4e0d\u4e8c\u592b\u306e\u732b\u3063\u3066\u304b\u3093\u3058\u3067\u7d20\u6674\u3089\u3057\u3044\u306a\u3002\u540d\u524d\u306f\u83ca\u5343\u4ee3 http:\/\/t.co\/5nKwWjPGOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":93547054,"id_str":"93547054","name":"\u6c60\u4e43\u3053\u3044\u3057","screen_name":"369doughnut","location":"\u9699\u9593","url":"http:\/\/theinterviews.jp\/369doughnut","description":"\u5b50\u3069\u3082\u304c\u559c\u3076\u6804\u990a\u6e80\u70b9\u3057\u304b\u3051\u7d75\u672c","protected":false,"verified":false,"followers_count":1014,"friends_count":300,"listed_count":89,"favourites_count":53238,"statuses_count":49661,"created_at":"Mon Nov 30 03:02:55 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/636441741898309633\/ArIJMYWI.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/636441741898309633\/ArIJMYWI.png","profile_background_tile":true,"profile_link_color":"A6CCBB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"A6CCBF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646144863063314432\/TkGTUvYO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646144863063314432\/TkGTUvYO_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/93547054\/1445472779","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8873,"favorite_count":10576,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":560048048466710528,"id_str":"560048048466710528","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","url":"http:\/\/t.co\/5nKwWjPGOw","display_url":"pic.twitter.com\/5nKwWjPGOw","expanded_url":"http:\/\/twitter.com\/369doughnut\/status\/560048049469149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"medium":{"w":400,"h":493,"resize":"fit"},"large":{"w":400,"h":493,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":560048048466710528,"id_str":"560048048466710528","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","url":"http:\/\/t.co\/5nKwWjPGOw","display_url":"pic.twitter.com\/5nKwWjPGOw","expanded_url":"http:\/\/twitter.com\/369doughnut\/status\/560048049469149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"medium":{"w":400,"h":493,"resize":"fit"},"large":{"w":400,"h":493,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"369doughnut","name":"\u6c60\u4e43\u3053\u3044\u3057","id":93547054,"id_str":"93547054","indices":[3,15]}],"symbols":[],"media":[{"id":560048048466710528,"id_str":"560048048466710528","indices":[56,78],"media_url":"http:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","url":"http:\/\/t.co\/5nKwWjPGOw","display_url":"pic.twitter.com\/5nKwWjPGOw","expanded_url":"http:\/\/twitter.com\/369doughnut\/status\/560048049469149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"medium":{"w":400,"h":493,"resize":"fit"},"large":{"w":400,"h":493,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":560048049469149184,"source_status_id_str":"560048049469149184","source_user_id":93547054,"source_user_id_str":"93547054"}]},"extended_entities":{"media":[{"id":560048048466710528,"id_str":"560048048466710528","indices":[56,78],"media_url":"http:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/B8Wwu5oCUAA_0BT.jpg","url":"http:\/\/t.co\/5nKwWjPGOw","display_url":"pic.twitter.com\/5nKwWjPGOw","expanded_url":"http:\/\/twitter.com\/369doughnut\/status\/560048049469149184\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":419,"resize":"fit"},"medium":{"w":400,"h":493,"resize":"fit"},"large":{"w":400,"h":493,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":560048049469149184,"source_status_id_str":"560048049469149184","source_user_id":93547054,"source_user_id_str":"93547054"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465326080,"id_str":"663728240465326080","text":"RT @Kou_nekoba: \u3010\u4f01\u753b\u3011\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u30933000\u4eba\u3042\u308a\u304c\u3068\u3046\uff01\n\n\u62bd\u9078\u30672\u540d\u69d8\u306b\u8272\u7d19\u3092\u63cf\u304d\u307e\u3059(\u00b4\uff65\u03c9\uff65`)\n\u5f53\u9078\u3055\u308c\u305f\u65b9\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u805e\u3044\u3066\u63cf\u304d\u307e\u3059\u306e\u3067\u3001\u5c11\u3005\u9045\u304f\u306a\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\n\n\u203b\u500b\u4eba\u60c5\u5831\u3092\u304a\u4f3a\u3044\u3057\u307e\u3059\u3002\n\u203b11\u670811\u65e5\u3006\n\nRT.\u30d5\u30a9\u30ed\u30fc(\u65b0\u898f\u3055\u3093\u53ef\u80fd\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2570713788,"id_str":"2570713788","name":"\u306a\u3118\u3085\u3118\u3087\u3059","screen_name":"tobio_amatsuki","location":"\u795e\u5948\u5ddd","url":"http:\/\/twpf.jp\/tobio_amatsuki","description":"\u2729JK2\u2729\u5929\u6708-\u3042\u307e\u3064\u304d-\/\u4f0a\u6771\u6b4c\u8a5e\u592a\u90ce\/\u305d\u3089\u308b\/\u307e\u3075\u307e\u3075\/COF...and more\u262a\ufe0eNEXT\u261e1218\u30ef\u30f3\u30de\u30f3","protected":false,"verified":false,"followers_count":260,"friends_count":308,"listed_count":19,"favourites_count":10406,"statuses_count":10819,"created_at":"Mon Jun 16 10:59:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581389377412018176\/6yJzuA_H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581389377412018176\/6yJzuA_H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2570713788\/1411359623","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Nov 04 16:20:27 +0000 2015","id":661941085770375168,"id_str":"661941085770375168","text":"\u3010\u4f01\u753b\u3011\u30d5\u30a9\u30ed\u30ef\u30fc\u3055\u30933000\u4eba\u3042\u308a\u304c\u3068\u3046\uff01\n\n\u62bd\u9078\u30672\u540d\u69d8\u306b\u8272\u7d19\u3092\u63cf\u304d\u307e\u3059(\u00b4\uff65\u03c9\uff65`)\n\u5f53\u9078\u3055\u308c\u305f\u65b9\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u805e\u3044\u3066\u63cf\u304d\u307e\u3059\u306e\u3067\u3001\u5c11\u3005\u9045\u304f\u306a\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\n\n\u203b\u500b\u4eba\u60c5\u5831\u3092\u304a\u4f3a\u3044\u3057\u307e\u3059\u3002\n\u203b11\u670811\u65e5\u3006\n\nRT.\u30d5\u30a9\u30ed\u30fc(\u65b0\u898f\u3055\u3093\u53ef\u80fd)\u3067\u5fdc\u52df\u53ef\u80fd\u3067\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2439985572,"id_str":"2439985572","name":"\u30b3\u30a6\uff20\u30a4\u30ab\u3061\u3083\u3093","screen_name":"Kou_nekoba","location":"\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad","url":"http:\/\/twpf.jp\/Kou_nekoba","description":"\u732b\u8449\u30b3\u30a6 \u7d75\u3092\u63cf\u3044\u3066\u3044\u307e\u3059 \u25bd\u7121\u65ad\u8ee2\u8f09\u7981\u6b62(LINE\u306e\u307f\u4f7f\u7528\u53ef\u80fd) \u25bd\u30d5\u30a9\u30ed\u30d0\u306f\u6c17\u307e\u3050\u308c\u3067\u3059\u3042\u3057\u304b\u3089\u305a http:\/\/kou0524.tumblr.com\/ \u25bdh&\u76f8\u65b9( @shimotuki73 )","protected":false,"verified":false,"followers_count":3093,"friends_count":34,"listed_count":70,"favourites_count":89,"statuses_count":1109,"created_at":"Sat Apr 12 13:01:24 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644145096011583492\/7dhp4J86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644145096011583492\/7dhp4J86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2439985572\/1446071200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":427,"favorite_count":176,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Kou_nekoba","name":"\u30b3\u30a6\uff20\u30a4\u30ab\u3061\u3083\u3093","id":2439985572,"id_str":"2439985572","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486404096,"id_str":"663728240486404096","text":"RT @eljsarauhl: Been here for a very long time. Ain't going nowhere #5DaysTillPURPOSE https:\/\/t.co\/lhz7D6MtTv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1618260158,"id_str":"1618260158","name":"Maria","screen_name":"stealmyoriente","location":"BH\/Brasil","url":null,"description":"demetria com l de lesbica","protected":false,"verified":false,"followers_count":1738,"friends_count":1391,"listed_count":2,"favourites_count":441,"statuses_count":8476,"created_at":"Wed Jul 24 17:34:47 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"B31EB3","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502137811319799808\/H8zyRsnK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502137811319799808\/H8zyRsnK.png","profile_background_tile":true,"profile_link_color":"E857A4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660866988588326913\/R5trYvVr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660866988588326913\/R5trYvVr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1618260158\/1446397883","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:12:23 +0000 2015","id":663479201979346944,"id_str":"663479201979346944","text":"Been here for a very long time. Ain't going nowhere #5DaysTillPURPOSE https:\/\/t.co\/lhz7D6MtTv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":316733508,"id_str":"316733508","name":"GRAZIE JUSTIN","screen_name":"eljsarauhl","location":"Italy","url":"https:\/\/twitter.com\/justinbieber\/status\/326679415012610048","description":"\u007b#PreorderPURPOSEOnItunes\u007d \u2022 he followed on twitter & shots , liked my shot(x2) faved(x2), tweeted, rted(x2) \u2022 thanks for everything @justinbieber","protected":false,"verified":false,"followers_count":30552,"friends_count":17818,"listed_count":68,"favourites_count":34045,"statuses_count":165915,"created_at":"Mon Jun 13 21:58:31 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/497132303290605568\/klNSm4rb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/497132303290605568\/klNSm4rb.jpeg","profile_background_tile":false,"profile_link_color":"98A5AB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660621773940068353\/J7DMhphW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660621773940068353\/J7DMhphW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/316733508\/1446936229","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":17330,"favorite_count":21686,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[52,69]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"extended_entities":{"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"5DaysTillPURPOSE","indices":[68,85]}],"urls":[],"user_mentions":[{"screen_name":"eljsarauhl","name":"GRAZIE JUSTIN","id":316733508,"id_str":"316733508","indices":[3,14]}],"symbols":[],"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"extended_entities":{"media":[{"id":663461589408948224,"id_str":"663461589408948224","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUWzObWIAApGu5.jpg","url":"https:\/\/t.co\/lhz7D6MtTv","display_url":"pic.twitter.com\/lhz7D6MtTv","expanded_url":"http:\/\/twitter.com\/jelenasmelody\/status\/663461604726595585\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":604,"resize":"fit"},"large":{"w":823,"h":829,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"}},"source_status_id":663461604726595585,"source_status_id_str":"663461604726595585","source_user_id":132170476,"source_user_id_str":"132170476"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490446849,"id_str":"663728240490446849","text":"Azi sana may next na story noh? Huhuhu Baby ko yun eh. Si Vini pa naman naiimagine ko na Azi \ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1393642970,"id_str":"1393642970","name":"ley","screen_name":"babysnooow","location":null,"url":null,"description":"kuting & danilo \u2014 bernardo & ford","protected":false,"verified":false,"followers_count":4036,"friends_count":365,"listed_count":24,"favourites_count":54939,"statuses_count":154703,"created_at":"Wed May 01 02:47:56 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580314707438915584\/IQppl6vq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580314707438915584\/IQppl6vq.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663718287818133508\/4Qu6LR5m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663718287818133508\/4Qu6LR5m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1393642970\/1447077361","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240498835456,"id_str":"663728240498835456","text":"RT @btob2mh: \uc131\ubbfc\uc774\uac00 \ud3ed\ud0c4 \uba38\ub9ac\uac00 \ub41c \uc774\uc720\ub294? \n#\ub2ec\ucf64\uc0b4\ubc8c\ud328\ubc00\ub9ac \n11\uc6d4 18\uc77c \ubc24 10\uc2dc\ubd80\ud130 MBC\uc5d0\uc11c \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/J2npgLabjP","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3006999384,"id_str":"3006999384","name":"\ubc15\uc18c\uc740","screen_name":"seprincess99","location":null,"url":null,"description":"\uad1c\ucc2e\uc544 \uad1c\ucc2e\uc544 \uc798\ub420\uac70\uc5d0\uc694","protected":false,"verified":false,"followers_count":5,"friends_count":237,"listed_count":0,"favourites_count":94,"statuses_count":367,"created_at":"Sun Feb 01 17:43:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625604160449196032\/gAqjYN6-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625604160449196032\/gAqjYN6-_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:43:56 +0000 2015","id":663562642246660096,"id_str":"663562642246660096","text":"\uc131\ubbfc\uc774\uac00 \ud3ed\ud0c4 \uba38\ub9ac\uac00 \ub41c \uc774\uc720\ub294? \n#\ub2ec\ucf64\uc0b4\ubc8c\ud328\ubc00\ub9ac \n11\uc6d4 18\uc77c \ubc24 10\uc2dc\ubd80\ud130 MBC\uc5d0\uc11c \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n\u314b\u314b\u314b\u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/J2npgLabjP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1522352430,"id_str":"1522352430","name":"\uc774\ubbfc\ud601","screen_name":"btob2mh","location":"\uba5c\ub85c\ub514","url":null,"description":"\uadf8\ub300\ub9cc\uc758 \ubcc4\uc774 \ub420\uac8c\uc694","protected":false,"verified":false,"followers_count":401061,"friends_count":51,"listed_count":2849,"favourites_count":6,"statuses_count":892,"created_at":"Sun Jun 16 14:47:47 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621208026955952128\/t3ZI864C_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621208026955952128\/t3ZI864C_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1522352430\/1413198412","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3164,"favorite_count":4579,"entities":{"hashtags":[{"text":"\ub2ec\ucf64\uc0b4\ubc8c\ud328\ubc00\ub9ac","indices":[20,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663562632050294784,"id_str":"663562632050294784","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663562632050294784,"id_str":"663562632050294784","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663562632142548992,"id_str":"663562632142548992","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysr8UcAAgoZo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysr8UcAAgoZo.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ub2ec\ucf64\uc0b4\ubc8c\ud328\ubc00\ub9ac","indices":[33,41]}],"urls":[],"user_mentions":[{"screen_name":"btob2mh","name":"\uc774\ubbfc\ud601","id":1522352430,"id_str":"1522352430","indices":[3,11]}],"symbols":[],"media":[{"id":663562632050294784,"id_str":"663562632050294784","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663562642246660096,"source_status_id_str":"663562642246660096","source_user_id":1522352430,"source_user_id_str":"1522352430"}]},"extended_entities":{"media":[{"id":663562632050294784,"id_str":"663562632050294784","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysrmUwAAbi5p.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663562642246660096,"source_status_id_str":"663562642246660096","source_user_id":1522352430,"source_user_id_str":"1522352430"},{"id":663562632142548992,"id_str":"663562632142548992","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVysr8UcAAgoZo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVysr8UcAAgoZo.jpg","url":"https:\/\/t.co\/J2npgLabjP","display_url":"pic.twitter.com\/J2npgLabjP","expanded_url":"http:\/\/twitter.com\/btob2mh\/status\/663562642246660096\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":720,"h":960,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663562642246660096,"source_status_id_str":"663562642246660096","source_user_id":1522352430,"source_user_id_str":"1522352430"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080118666"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240473706496,"id_str":"663728240473706496","text":"@r_f_1014 \u3050\u306f( \u02d9\u25ca\u02d9 )\u5225\u308c\u305f\u3089\u5fdc\u52df\u3060\u306a\n\u5fdc\u52df\u671f\u9650\u3042\u3063\u305f\u308a\u3057\u3066(^\u03c9^\u2261^\u03c9^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722143738277888,"in_reply_to_status_id_str":"663722143738277888","in_reply_to_user_id":2936284729,"in_reply_to_user_id_str":"2936284729","in_reply_to_screen_name":"r_f_1014","user":{"id":3274339208,"id_str":"3274339208","name":"\u305f\u306a\u3056\u308f","screen_name":"junks0514","location":null,"url":null,"description":"\u3071\u3093\u3060\u3061\u3083\u3093( \u02d9\u706c\u02d9 )\u2661\n\u304f\u307e\u305f\u304b\u306b\u306d\u3093","protected":false,"verified":false,"followers_count":13,"friends_count":24,"listed_count":0,"favourites_count":89,"statuses_count":286,"created_at":"Fri Jul 10 12:03:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655841222804697088\/r6T9iq3s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655841222804697088\/r6T9iq3s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3274339208\/1439482010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"r_f_1014","name":"\u30ad\u30e2\u30f2\u30bf\u304c\u5f7c\u5973\u51fa\u6765\u306a\u3044100\u306e\u7406\u7531","id":2936284729,"id_str":"2936284729","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118660"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465305602,"id_str":"663728240465305602","text":"@oozehuns ogah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727964245225472,"in_reply_to_status_id_str":"663727964245225472","in_reply_to_user_id":1229280036,"in_reply_to_user_id_str":"1229280036","in_reply_to_screen_name":"oozehuns","user":{"id":2936899092,"id_str":"2936899092","name":"IU","screen_name":"1DC_Jieun93","location":null,"url":"http:\/\/instagram.com\/dlwlrma","description":"18+)) \uc774\uc9c0\uc740\/ \uc544\uc774\uc720. 160593 (ddayclass)","protected":false,"verified":false,"followers_count":748,"friends_count":165,"listed_count":3,"favourites_count":22,"statuses_count":8502,"created_at":"Sat Dec 20 09:50:15 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663194507182080000\/xaj2nmhk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663194507182080000\/xaj2nmhk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936899092\/1446950435","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oozehuns","name":"xojen","id":1229280036,"id_str":"1229280036","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490496000,"id_str":"663728240490496000","text":"RT @iBehindMe: \u0b92\u0bb5\u0bcd\u0bb5\u0bca\u0bb0\u0bc1 \u0ba4\u0b9f\u0bb5\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b9a\u0bbf\u0ba4\u0bcd&\u0b95\u0bcb, \n100Cr Club \u0ba4\u0bca\u0b9f \u0baa\u0bcb\u0bb1\u0ba4\u0bbe \u0ba8\u0bbf\u0ba9\u0bc8\u0b9a\u0bcd\u0b9a\u0bbf, \u0b85\u0b99\u0bcd\u0b95 \u0b85\u0b9f\u0bbf \u0bb5\u0bbe\u0b99\u0bcd\u0b95\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0ba4\u0bbe\u0ba9\u0bcd \u0bb5\u0bb0\u0bc1\u0ba4\u0bc1\u0b99\u0bcd\u0b95..\n\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/lexUo1SlWy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3647463980,"id_str":"3647463980","name":"roshan vijay","screen_name":"roshandvijay","location":null,"url":null,"description":"Die hard thalapathy fan !!!! I lyk bod Vj & surya","protected":false,"verified":false,"followers_count":258,"friends_count":1057,"listed_count":0,"favourites_count":2137,"statuses_count":5670,"created_at":"Tue Sep 22 09:59:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659925764175867904\/W-VME2WO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659925764175867904\/W-VME2WO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3647463980\/1443332475","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:16:08 +0000 2015","id":663631143304957952,"id_str":"663631143304957952","text":"\u0b92\u0bb5\u0bcd\u0bb5\u0bca\u0bb0\u0bc1 \u0ba4\u0b9f\u0bb5\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b85\u0b9a\u0bbf\u0ba4\u0bcd&\u0b95\u0bcb, \n100Cr Club \u0ba4\u0bca\u0b9f \u0baa\u0bcb\u0bb1\u0ba4\u0bbe \u0ba8\u0bbf\u0ba9\u0bc8\u0b9a\u0bcd\u0b9a\u0bbf, \u0b85\u0b99\u0bcd\u0b95 \u0b85\u0b9f\u0bbf \u0bb5\u0bbe\u0b99\u0bcd\u0b95\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0ba4\u0bbe\u0ba9\u0bcd \u0bb5\u0bb0\u0bc1\u0ba4\u0bc1\u0b99\u0bcd\u0b95..\n\ud83d\ude02\ud83d\ude02 https:\/\/t.co\/lexUo1SlWy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":268038932,"id_str":"268038932","name":"\u0baa\u0bbf\u0bb0\u0baa\u0bc1","screen_name":"iBehindMe","location":"Virudhunagar, Tamil Nadu","url":null,"description":null,"protected":false,"verified":false,"followers_count":4176,"friends_count":405,"listed_count":6,"favourites_count":3591,"statuses_count":16010,"created_at":"Fri Mar 18 01:26:33 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662680775523864576\/vO40HEYZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662680775523864576\/vO40HEYZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/268038932\/1446706359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":47,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663631027630313472,"id_str":"663631027630313472","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","url":"https:\/\/t.co\/lexUo1SlWy","display_url":"pic.twitter.com\/lexUo1SlWy","expanded_url":"http:\/\/twitter.com\/iBehindMe\/status\/663631143304957952\/video\/1","type":"photo","sizes":{"large":{"w":1024,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663631027630313472,"id_str":"663631027630313472","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","url":"https:\/\/t.co\/lexUo1SlWy","display_url":"pic.twitter.com\/lexUo1SlWy","expanded_url":"http:\/\/twitter.com\/iBehindMe\/status\/663631143304957952\/video\/1","type":"video","sizes":{"large":{"w":1024,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"video_info":{"aspect_ratio":[148,83],"duration_millis":10240,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/320x180\/c3BmPP-Tgh8k1u4j.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/640x360\/vdMEWPWVk-CO2FE_.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/pl\/K3vt8lg1IwaB4fDF.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/pl\/K3vt8lg1IwaB4fDF.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/640x360\/vdMEWPWVk-CO2FE_.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ta"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iBehindMe","name":"\u0baa\u0bbf\u0bb0\u0baa\u0bc1","id":268038932,"id_str":"268038932","indices":[3,13]}],"symbols":[],"media":[{"id":663631027630313472,"id_str":"663631027630313472","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","url":"https:\/\/t.co\/lexUo1SlWy","display_url":"pic.twitter.com\/lexUo1SlWy","expanded_url":"http:\/\/twitter.com\/iBehindMe\/status\/663631143304957952\/video\/1","type":"photo","sizes":{"large":{"w":1024,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"source_status_id":663631143304957952,"source_status_id_str":"663631143304957952","source_user_id":268038932,"source_user_id_str":"268038932"}]},"extended_entities":{"media":[{"id":663631027630313472,"id_str":"663631027630313472","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663631027630313472\/pu\/img\/zgaiSIAydBL7K4-C.jpg","url":"https:\/\/t.co\/lexUo1SlWy","display_url":"pic.twitter.com\/lexUo1SlWy","expanded_url":"http:\/\/twitter.com\/iBehindMe\/status\/663631143304957952\/video\/1","type":"video","sizes":{"large":{"w":1024,"h":574,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"source_status_id":663631143304957952,"source_status_id_str":"663631143304957952","source_user_id":268038932,"source_user_id_str":"268038932","video_info":{"aspect_ratio":[148,83],"duration_millis":10240,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/320x180\/c3BmPP-Tgh8k1u4j.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/640x360\/vdMEWPWVk-CO2FE_.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/pl\/K3vt8lg1IwaB4fDF.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/pl\/K3vt8lg1IwaB4fDF.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663631027630313472\/pu\/vid\/640x360\/vdMEWPWVk-CO2FE_.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ta","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240477863937,"id_str":"663728240477863937","text":"RT @Sonsonatefc: Compartimos las im\u00e1genes del encuentro del pasado S\u00e1bado 07 de Noviembre 2015, Chalatenango 0 - 0 Sonsonate fc... https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":207547332,"id_str":"207547332","name":"Primera F\u00fatbol ES","screen_name":"primerafutboles","location":"El Salvador, Centro America","url":"http:\/\/primerafutboles.com\/","description":"Cuenta Oficial de la Primera Divisi\u00f3n de F\u00fatbol Profesional de El Salvador, fundada el 10 de Noviembre de 1969. #LigaPepsi","protected":false,"verified":false,"followers_count":18500,"friends_count":221,"listed_count":85,"favourites_count":392,"statuses_count":8515,"created_at":"Mon Oct 25 14:55:46 +0000 2010","utc_offset":-21600,"time_zone":"Central America","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563010255278190592\/7GcNR2C6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563010255278190592\/7GcNR2C6.png","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656162044702429184\/cpn4xXHr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656162044702429184\/cpn4xXHr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/207547332\/1438190854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728144566718464,"id_str":"663728144566718464","text":"Compartimos las im\u00e1genes del encuentro del pasado S\u00e1bado 07 de Noviembre 2015, Chalatenango 0 - 0 Sonsonate fc... https:\/\/t.co\/nbCI3J2kSa","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":245580028,"id_str":"245580028","name":"Sonsonate F\u00fatbolClub","screen_name":"Sonsonatefc","location":"Sonsonate","url":"http:\/\/www.sonsonatefc.com.sv","description":"Twitter oficial de Sonsonate FC. Miembro de la Primera Divisi\u00f3n Profesional de El Salvador","protected":false,"verified":false,"followers_count":2611,"friends_count":47,"listed_count":17,"favourites_count":21,"statuses_count":4061,"created_at":"Tue Feb 01 00:53:46 +0000 2011","utc_offset":-21600,"time_zone":"Central America","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/498117265376559106\/NksNufua.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/498117265376559106\/NksNufua.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651939784168861697\/FTQmAG4h_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651939784168861697\/FTQmAG4h_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/245580028\/1445213027","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nbCI3J2kSa","expanded_url":"http:\/\/fb.me\/7Rvh8BduA","display_url":"fb.me\/7Rvh8BduA","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nbCI3J2kSa","expanded_url":"http:\/\/fb.me\/7Rvh8BduA","display_url":"fb.me\/7Rvh8BduA","indices":[139,140]}],"user_mentions":[{"screen_name":"Sonsonatefc","name":"Sonsonate F\u00fatbolClub","id":245580028,"id_str":"245580028","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240469536770,"id_str":"663728240469536770","text":"RT @LykaNVIXX: Kitty Meow Meow #HAPPYLEODAY https:\/\/t.co\/ooDSK26iqz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3115514504,"id_str":"3115514504","name":"ST\u2606RLIGHT_NLKRHH","screen_name":"VIXXO_0610","location":"Indonesia","url":null,"description":"are you kpopers? let's crazy together !!!!!","protected":false,"verified":false,"followers_count":5,"friends_count":146,"listed_count":1,"favourites_count":370,"statuses_count":2552,"created_at":"Sun Mar 29 14:51:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660487563073843200\/bfXg6KrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660487563073843200\/bfXg6KrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3115514504\/1446307479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:53 +0000 2015","id":663726459228303362,"id_str":"663726459228303362","text":"Kitty Meow Meow #HAPPYLEODAY https:\/\/t.co\/ooDSK26iqz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":145923381,"id_str":"145923381","name":"ST\u2606RLIGHT_\ub77c\uc774\uce74\ud558\ub2c8","screen_name":"LykaNVIXX","location":"All around VIXX ","url":null,"description":"\u00d7 \ube45\uc2a4\uc758 \ubcc4\ube5b \u00d7 \ucc28\ud559\uc5f0 \uc88b\uc544\uc694 \u00d7 \ube45\uc2a4 \ub05d\uae4c\uc9c0 \ud568\uaed8\ud558\uc2dc\uae38 \u00d7\nVirgo \u00d7 Malaysian \u00d7 #liveyourlifetothefullest","protected":false,"verified":false,"followers_count":402,"friends_count":382,"listed_count":5,"favourites_count":7980,"statuses_count":34155,"created_at":"Thu May 20 05:53:35 +0000 2010","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590812631704862720\/tnYk8nbC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590812631704862720\/tnYk8nbC.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659658397118107648\/JlQ0juzc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659658397118107648\/JlQ0juzc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/145923381\/1446981649","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[16,28]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726438411988993,"id_str":"663726438411988993","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","url":"https:\/\/t.co\/ooDSK26iqz","display_url":"pic.twitter.com\/ooDSK26iqz","expanded_url":"http:\/\/twitter.com\/LykaNVIXX\/status\/663726459228303362\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726438411988993,"id_str":"663726438411988993","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","url":"https:\/\/t.co\/ooDSK26iqz","display_url":"pic.twitter.com\/ooDSK26iqz","expanded_url":"http:\/\/twitter.com\/LykaNVIXX\/status\/663726459228303362\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPYLEODAY","indices":[31,43]}],"urls":[],"user_mentions":[{"screen_name":"LykaNVIXX","name":"ST\u2606RLIGHT_\ub77c\uc774\uce74\ud558\ub2c8","id":145923381,"id_str":"145923381","indices":[3,13]}],"symbols":[],"media":[{"id":663726438411988993,"id_str":"663726438411988993","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","url":"https:\/\/t.co\/ooDSK26iqz","display_url":"pic.twitter.com\/ooDSK26iqz","expanded_url":"http:\/\/twitter.com\/LykaNVIXX\/status\/663726459228303362\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}},"source_status_id":663726459228303362,"source_status_id_str":"663726459228303362","source_user_id":145923381,"source_user_id_str":"145923381"}]},"extended_entities":{"media":[{"id":663726438411988993,"id_str":"663726438411988993","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHrd2U8AEhpbl.jpg","url":"https:\/\/t.co\/ooDSK26iqz","display_url":"pic.twitter.com\/ooDSK26iqz","expanded_url":"http:\/\/twitter.com\/LykaNVIXX\/status\/663726459228303362\/photo\/1","type":"photo","sizes":{"large":{"w":664,"h":960,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":491,"resize":"fit"},"medium":{"w":600,"h":867,"resize":"fit"}},"source_status_id":663726459228303362,"source_status_id_str":"663726459228303362","source_user_id":145923381,"source_user_id_str":"145923381"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118659"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486297604,"id_str":"663728240486297604","text":"RT @bogosorter: \u3053\u3093\u306a\u3093\u591c\u4e2d\u306b\u898b\u308b\u3082\u3093\u3058\u3083\u306a\u304b\u3063\u305f\uff0c\u7b11\u3046\u3057\u304b\u306a\u3044 https:\/\/t.co\/9Xqy45sEMn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":151773610,"id_str":"151773610","name":"\u304b\u306a\u308a\u3042","screen_name":"kanariamate","location":null,"url":null,"description":"\u5922\u55b0\u3044\u30e1\u30ea\u30fc\u52e2\uff06\u683c\u30b2\u30fc(\u30d1\u30c3\u30c9)\u52e2\u3002\u30a2\u30cb\u30e1\/\u6f2b\u753b\/\u30b2\u30fc\u30e0\/\u30cf\u30c8\u30d1\/\u30e2\u30d0\u30de\u30b9\/\u8266\u3053\u308c\/\u305d\u306b\u5b50\/\u30ca\u30ca\u30b7\u30b9\/\u30b9\u30c6\u30af\u30ed(\u30e1\u30a4\u30f3\u30df\u30ab\u30b5\u30fb\u30b5\u30d6\u30a8\u30ec\u30ca)\u7b49\u3092\u4f9b\u7d66\u3057\u306a\u304c\u3089\u751f\u606f\u3059\u308b\u30c0\u30e1\u793e\u4f1a\u4eba\u3002\u30a4\u30e9\u30b9\u30c8RT\u591a\u3044\u304c\u79c1\u306f\u8b1d\u3089\u306a\u3044","protected":false,"verified":false,"followers_count":132,"friends_count":705,"listed_count":2,"favourites_count":13241,"statuses_count":24544,"created_at":"Fri Jun 04 06:11:54 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582289672660893697\/3Qiin7aJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582289672660893697\/3Qiin7aJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/151773610\/1427663651","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 19:33:26 +0000 2015","id":661627264287682560,"id_str":"661627264287682560","text":"\u3053\u3093\u306a\u3093\u591c\u4e2d\u306b\u898b\u308b\u3082\u3093\u3058\u3083\u306a\u304b\u3063\u305f\uff0c\u7b11\u3046\u3057\u304b\u306a\u3044 https:\/\/t.co\/9Xqy45sEMn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661626777555439617,"in_reply_to_status_id_str":"661626777555439617","in_reply_to_user_id":51000475,"in_reply_to_user_id_str":"51000475","in_reply_to_screen_name":"bogosorter","user":{"id":51000475,"id_str":"51000475","name":"\u4e0d\u5b9a\u5024","screen_name":"bogosorter","location":"\u9ad8\u5c02\u2192\u6280\u79d1\u5927\u2192\u897f10\u3077\u306b\u7814\u2192\uff1f\uff1f\uff1f","url":"http:\/\/bogosorter.net\/","description":"\u96fb\u6c17\u3082\u60c5\u5831\u3082\u3084\u308b\uff0c\u7d44\u307f\u8fbc\u307f\u3082Web\u3082\u3084\u308b\/\u30d7\u30ed\u30bb\u30c3\u30b5\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\/\u30ac\u30b8\u30a7\u30c3\u30c8\/EWI5000\/\u30ab\u30d6\uff0c\u30c4\u30fc\u30ea\u30f3\u30b0\/\u6599\u7406\uff0c\u81ea\u708a\uff0c\u30e9\u30dc\u98ef\/\u306f\u3046\u308a\u3093\/\u99c4\u30cb\u30e1\u304a\u904d\u8def\/img","protected":false,"verified":false,"followers_count":3659,"friends_count":2344,"listed_count":301,"favourites_count":112127,"statuses_count":94276,"created_at":"Fri Jun 26 10:08:28 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/52023889\/1186828946101.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/52023889\/1186828946101.png","profile_background_tile":true,"profile_link_color":"FF4B0A","profile_sidebar_border_color":"4D3333","profile_sidebar_fill_color":"000000","profile_text_color":"596FFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451019024663457792\/vHEqDYgX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451019024663457792\/vHEqDYgX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/51000475\/1401422011","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":54254,"favorite_count":46004,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661627262249205761,"id_str":"661627262249205761","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","url":"https:\/\/t.co\/9Xqy45sEMn","display_url":"pic.twitter.com\/9Xqy45sEMn","expanded_url":"http:\/\/twitter.com\/bogosorter\/status\/661627264287682560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":620,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661627262249205761,"id_str":"661627262249205761","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","url":"https:\/\/t.co\/9Xqy45sEMn","display_url":"pic.twitter.com\/9Xqy45sEMn","expanded_url":"http:\/\/twitter.com\/bogosorter\/status\/661627264287682560\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":620,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}},"video_info":{"aspect_ratio":[155,219],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS6SfVQUAAENAaI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bogosorter","name":"\u4e0d\u5b9a\u5024","id":51000475,"id_str":"51000475","indices":[3,14]}],"symbols":[],"media":[{"id":661627262249205761,"id_str":"661627262249205761","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","url":"https:\/\/t.co\/9Xqy45sEMn","display_url":"pic.twitter.com\/9Xqy45sEMn","expanded_url":"http:\/\/twitter.com\/bogosorter\/status\/661627264287682560\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":620,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}},"source_status_id":661627264287682560,"source_status_id_str":"661627264287682560","source_user_id":51000475,"source_user_id_str":"51000475"}]},"extended_entities":{"media":[{"id":661627262249205761,"id_str":"661627262249205761","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CS6SfVQUAAENAaI.png","url":"https:\/\/t.co\/9Xqy45sEMn","display_url":"pic.twitter.com\/9Xqy45sEMn","expanded_url":"http:\/\/twitter.com\/bogosorter\/status\/661627264287682560\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":480,"resize":"fit"},"large":{"w":620,"h":876,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":847,"resize":"fit"}},"source_status_id":661627264287682560,"source_status_id_str":"661627264287682560","source_user_id":51000475,"source_user_id_str":"51000475","video_info":{"aspect_ratio":[155,219],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CS6SfVQUAAENAaI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486318080,"id_str":"663728240486318080","text":"@haifaskaik \u0639\u0641\u0648\u0627 \ud83d\ude0c\ud83d\ude4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663653988420550657,"in_reply_to_status_id_str":"663653988420550657","in_reply_to_user_id":2233599512,"in_reply_to_user_id_str":"2233599512","in_reply_to_screen_name":"3boodsh95","user":{"id":2233599512,"id_str":"2233599512","name":"abood al shabrawi","screen_name":"3boodsh95","location":null,"url":"http:\/\/ask.fm\/AboodAlshabrawi","description":"Palestine_ Gaza \u2665 20 sana_ bdrs accounting english_AUG 92:48 madridista \u2665 \u0634\u0648\u0641 \u0627\u0644\u0645\u0641\u0636\u0644\u0629","protected":false,"verified":false,"followers_count":491,"friends_count":324,"listed_count":1,"favourites_count":126,"statuses_count":19192,"created_at":"Fri Dec 06 22:23:53 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000153834635\/kA40GWs8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000153834635\/kA40GWs8.jpeg","profile_background_tile":true,"profile_link_color":"A1C4D1","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660413692459159553\/w3ZihMNd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660413692459159553\/w3ZihMNd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2233599512\/1426212654","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"haifaskaik","name":"haifa\u2661","id":3269872874,"id_str":"3269872874","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494686208,"id_str":"663728240494686208","text":"RT @alexandroscrew: \u3010\u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\u3011\n[Alexandros] TOUR 2015 \u201c\u3054\u99b3\u8d70\u306b\u3042\u308a\u3064\u304b\u305b\u3066\u9802\u304d\u307e\u3059\u201d \u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\nhttps:\/\/t.co\/gamWkEk7E9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":350142955,"id_str":"350142955","name":"\u3088\u3057\u3048","screen_name":"fugiyamapoteto","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":225,"friends_count":213,"listed_count":0,"favourites_count":395,"statuses_count":4369,"created_at":"Sun Aug 07 08:16:38 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584611535902736384\/R7xaFv9__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584611535902736384\/R7xaFv9__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/350142955\/1438695212","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:26 +0000 2015","id":663717787580272640,"id_str":"663717787580272640","text":"\u3010\u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\u3011\n[Alexandros] TOUR 2015 \u201c\u3054\u99b3\u8d70\u306b\u3042\u308a\u3064\u304b\u305b\u3066\u9802\u304d\u307e\u3059\u201d \u4ed9\u53f0\u516c\u6f14\u5ef6\u671f\u306e\u304a\u77e5\u3089\u305b\nhttps:\/\/t.co\/gamWkEk7E9","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106324851,"id_str":"106324851","name":"[Alexandros]","screen_name":"alexandroscrew","location":"JAPAN","url":"http:\/\/alexandros.jp\/","description":"2007\u5e74\u672c\u683c\u59cb\u52d5\u300212\/2(\u6c34)\u306b\u30cb\u30e5\u30fc\u30b7\u30f3\u30b0\u30eb\u300cGirl A\u300d\u3092\u767a\u58f2\u4e88\u5b9a\u3002\u30a2\u30eb\u30d0\u30e0\u30c4\u30a2\u30fc\u30d5\u30a1\u30a4\u30ca\u30eb\u306b\u306f12\/19(\u571f)\u5e55\u5f35\u30e1\u30c3\u30bb\u56fd\u969b\u5c55\u793a\u5834\u3092\u4e88\u5b9a\u3002 LINE ID\uff1a@ alexandros","protected":false,"verified":true,"followers_count":287743,"friends_count":11,"listed_count":4479,"favourites_count":4,"statuses_count":9996,"created_at":"Tue Jan 19 05:36:12 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649906942664531969\/vJgHKo-a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649906942664531969\/vJgHKo-a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106324851\/1445346360","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2221,"favorite_count":1988,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gamWkEk7E9","expanded_url":"https:\/\/alexandros.jp\/","display_url":"alexandros.jp","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gamWkEk7E9","expanded_url":"https:\/\/alexandros.jp\/","display_url":"alexandros.jp","indices":[86,109]}],"user_mentions":[{"screen_name":"alexandroscrew","name":"[Alexandros]","id":106324851,"id_str":"106324851","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118665"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240477900800,"id_str":"663728240477900800","text":"@MtTumble \u6700\u521d\u9632\u885b\u6226\u306a\u306e\u306b\u30bf\u30fc\u30e9\u306e\u57ce\u58c1\u306b\u3069\u3053\u3082\u7a74\u304c\u306a\u3044\u304b\u3089\u3001\n\u300c\u3069\u3053\u304b\u3089\u5165\u3063\u3066\u304f\u3093\u3060\u30d5\u30ea\u30fc\u30b8\u3069\u3082\u3001\u304a\u3089\u3041\u3001\u304b\u304b\u3063\u3066\u3053\u3044\u3084w\u300d\u307f\u305f\u3044\u306b\u4f59\u88d5\u3076\u3063\u3053\u3044\u3066\u305f\u3089\u6b21\u306e\u30bf\u30fc\u30f3\u3067\u65e9\u901f\u6b7b\u3092\u899a\u609f\u3059\u308b\u7fbd\u76ee\u306b\u306a\u308a\u307e\u3057\u305f\u3002\n\u307e\u3055\u304b\u58c1\u306bHP\u304c\u306a\u3044\u3068\u306f...\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726445068337152,"in_reply_to_status_id_str":"663726445068337152","in_reply_to_user_id":2785918358,"in_reply_to_user_id_str":"2785918358","in_reply_to_screen_name":"MtTumble","user":{"id":3242102484,"id_str":"3242102484","name":"\u30b9\u30af\u30c7\u30a3\u30ed@\u30c8\u30e9\u30ad\u30a2776\u30d7\u30ec\u30a4\u4e2d","screen_name":"0611Stilicho","location":null,"url":null,"description":"\u53e4\u4ee3\u30ae\u30ea\u30b7\u30e3\u30fb\u30ed\u30fc\u30de\u53f2\/\u4e2d\u4e16\u897f\u6d0b\u53f2\/\u653f\u6cbb\u54f2\u5b66\/ \u61b2\u6cd5\u5b66\/\u56fd\u969b\u6cd5\/\u56fd\u969b\u653f\u6cbb\u5b66\/\u30d5\u30a1\u30a4\u30a2\u30fc\u30a8\u30e0\u30d6\u30ec\u30e0\u306b\u30cf\u30de\u308a\u4e2d\u3002 \u53ea\u4ecaFE\u30c8\u30e9\u30ad\u30a2776\u3092\u521d\u898b\u653b\u7565\u4e2d\u3002\u3042\u3068FEif\u6697\u591c\u3082(\u3053\u3061\u3089\u306f\u30ce\u30fc\u30ea\u30bb\u30c3\u30c8\u30cf\u30fc\u30c9\u653b\u7565)\u3002 (FE\u8056\u9b54\u3001\u70c8\u706b\u4e00\u65e6\u4e2d\u65ad) FE\u6b74\u306f\u534a\u5e74\u3061\u3087\u3044\u3002","protected":false,"verified":false,"followers_count":7,"friends_count":21,"listed_count":0,"favourites_count":83,"statuses_count":262,"created_at":"Thu Jun 11 10:07:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661321984991588352\/BiKNqo9G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661321984991588352\/BiKNqo9G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242102484\/1443101196","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MtTumble","name":"\u3060\u308b\u307e","id":2785918358,"id_str":"2785918358","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240478015488,"id_str":"663728240478015488","text":"Pelo jeito a mariana e o Wagner tbm terminaram","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2406367756,"id_str":"2406367756","name":"Larissa","screen_name":"fivitticent","location":null,"url":null,"description":"So sit me on your throne","protected":false,"verified":false,"followers_count":657,"friends_count":512,"listed_count":1,"favourites_count":3416,"statuses_count":41565,"created_at":"Thu Mar 13 02:01:10 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662033852047708160\/jAIq1Y1w_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662033852047708160\/jAIq1Y1w_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2406367756\/1444321976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240498839552,"id_str":"663728240498839552","text":"RT @applecandy613: [GIF] \uacfc\uac70\uc5ec\ud589\nDanger 150824 \uc778\uae30\uac00\uc694 #\ubc29\ud0c4\uc18c\ub144\ub2e8 #BTS\nhttps:\/\/t.co\/YqLnvi4d81\n@BTS_twt https:\/\/t.co\/hYSwTijXWW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3405103754,"id_str":"3405103754","name":"\u00b0chimchim\u00b0","screen_name":"emptiness_01","location":null,"url":null,"description":"Beast\/BTS\/Jessica Jung \n\u0e22\u0e38\u0e19\u0e21\u0e34\u0e19\u0e04\u0e37\u0e2d\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14 \u0e27\u0e35\u0e01\u0e38\u0e01\u0e01\u0e47\u0e2a\u0e33\u0e04\u0e31\u0e0d B.A.P\u0e01\u0e33\u0e25\u0e31\u0e07\u0e08\u0e30\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32","protected":false,"verified":false,"followers_count":44,"friends_count":636,"listed_count":1,"favourites_count":628,"statuses_count":4671,"created_at":"Mon Aug 31 15:39:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663406313544642560\/pxBm-AdQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663406313544642560\/pxBm-AdQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3405103754\/1446901870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:04 +0000 2015","id":663724742654824448,"id_str":"663724742654824448","text":"[GIF] \uacfc\uac70\uc5ec\ud589\nDanger 150824 \uc778\uae30\uac00\uc694 #\ubc29\ud0c4\uc18c\ub144\ub2e8 #BTS\nhttps:\/\/t.co\/YqLnvi4d81\n@BTS_twt https:\/\/t.co\/hYSwTijXWW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2876495552,"id_str":"2876495552","name":"\uc560\ud50c-\uce94\ub514","screen_name":"applecandy613","location":null,"url":"http:\/\/apple-candy.tistory.com\/","description":"@BTS_twt :: \ubc29\ud0c4\uc18c\ub144\ub2e8 \ucea1\uccd0\ud648","protected":false,"verified":false,"followers_count":1577,"friends_count":149,"listed_count":26,"favourites_count":733,"statuses_count":2501,"created_at":"Sat Oct 25 08:25:15 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594724263375937536\/wuOVtFXf.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594724263375937536\/wuOVtFXf.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660836632896008193\/Sr70A-5H_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660836632896008193\/Sr70A-5H_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2876495552\/1446916051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[{"text":"\ubc29\ud0c4\uc18c\ub144\ub2e8","indices":[30,36]},{"text":"BTS","indices":[37,41]}],"urls":[{"url":"https:\/\/t.co\/YqLnvi4d81","expanded_url":"http:\/\/cfile22.uf.tistory.com\/original\/2709FC4E5640AB53010363","display_url":"cfile22.uf.tistory.com\/original\/2709F\u2026","indices":[42,65]}],"user_mentions":[{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[66,74]}],"symbols":[],"media":[{"id":663724740511567874,"id_str":"663724740511567874","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","url":"https:\/\/t.co\/hYSwTijXWW","display_url":"pic.twitter.com\/hYSwTijXWW","expanded_url":"http:\/\/twitter.com\/applecandy613\/status\/663724742654824448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":208,"resize":"fit"},"medium":{"w":400,"h":208,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724740511567874,"id_str":"663724740511567874","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","url":"https:\/\/t.co\/hYSwTijXWW","display_url":"pic.twitter.com\/hYSwTijXWW","expanded_url":"http:\/\/twitter.com\/applecandy613\/status\/663724742654824448\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":208,"resize":"fit"},"medium":{"w":400,"h":208,"resize":"fit"}},"video_info":{"aspect_ratio":[25,13],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYGIorUkAIT3AW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ubc29\ud0c4\uc18c\ub144\ub2e8","indices":[49,55]},{"text":"BTS","indices":[56,60]}],"urls":[{"url":"https:\/\/t.co\/YqLnvi4d81","expanded_url":"http:\/\/cfile22.uf.tistory.com\/original\/2709FC4E5640AB53010363","display_url":"cfile22.uf.tistory.com\/original\/2709F\u2026","indices":[61,84]}],"user_mentions":[{"screen_name":"applecandy613","name":"\uc560\ud50c-\uce94\ub514","id":2876495552,"id_str":"2876495552","indices":[3,17]},{"screen_name":"BTS_twt","name":"\ubc29\ud0c4\uc18c\ub144\ub2e8","id":335141638,"id_str":"335141638","indices":[85,93]}],"symbols":[],"media":[{"id":663724740511567874,"id_str":"663724740511567874","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","url":"https:\/\/t.co\/hYSwTijXWW","display_url":"pic.twitter.com\/hYSwTijXWW","expanded_url":"http:\/\/twitter.com\/applecandy613\/status\/663724742654824448\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":208,"resize":"fit"},"medium":{"w":400,"h":208,"resize":"fit"}},"source_status_id":663724742654824448,"source_status_id_str":"663724742654824448","source_user_id":2876495552,"source_user_id_str":"2876495552"}]},"extended_entities":{"media":[{"id":663724740511567874,"id_str":"663724740511567874","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYGIorUkAIT3AW.png","url":"https:\/\/t.co\/hYSwTijXWW","display_url":"pic.twitter.com\/hYSwTijXWW","expanded_url":"http:\/\/twitter.com\/applecandy613\/status\/663724742654824448\/photo\/1","type":"animated_gif","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":400,"h":208,"resize":"fit"},"medium":{"w":400,"h":208,"resize":"fit"}},"source_status_id":663724742654824448,"source_status_id_str":"663724742654824448","source_user_id":2876495552,"source_user_id_str":"2876495552","video_info":{"aspect_ratio":[25,13],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYGIorUkAIT3AW.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080118666"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240482263048,"id_str":"663728240482263048","text":"A new favorite: Incantations (Demo) by D\u5411\u8af6 https:\/\/t.co\/thKP0VrJBC on #SoundCloud","source":"\u003ca href=\"http:\/\/soundcloud.com\" rel=\"nofollow\"\u003eSoundCloud\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":276858132,"id_str":"276858132","name":"Betty apple","screen_name":"BettyApplelove","location":"Taiwan","url":"http:\/\/www.bettyapple.com","description":"electronica\/avant-garde \/improvised noise\/ music + Live art performance artist \/ Veganism \/ love underground PARTY","protected":false,"verified":false,"followers_count":108,"friends_count":246,"listed_count":4,"favourites_count":41,"statuses_count":1664,"created_at":"Mon Apr 04 06:49:42 +0000 2011","utc_offset":28800,"time_zone":"Taipei","geo_enabled":false,"lang":"zh-tw","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000030586289\/b2e56972f0c48df557e1558ced4847d7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000030586289\/b2e56972f0c48df557e1558ced4847d7.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653559781232263168\/fsJI4rO9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653559781232263168\/fsJI4rO9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/276858132\/1394813930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SoundCloud","indices":[70,81]}],"urls":[{"url":"https:\/\/t.co\/thKP0VrJBC","expanded_url":"https:\/\/soundcloud.com\/immusic88\/incantations-demo","display_url":"soundcloud.com\/immusic88\/inca\u2026","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118662"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240482127872,"id_str":"663728240482127872","text":"I feel so awful this morning \ud83d\ude29 Moms aren't allowed to get sick, wtf!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":602465249,"id_str":"602465249","name":"she'll be","screen_name":"notthatshelby","location":null,"url":null,"description":";","protected":false,"verified":false,"followers_count":431,"friends_count":445,"listed_count":16,"favourites_count":6754,"statuses_count":31735,"created_at":"Fri Jun 08 04:43:56 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"28055E","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"0A010A","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/517939198800953344\/XKTdWoAN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/517939198800953344\/XKTdWoAN_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118662"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494792704,"id_str":"663728240494792704","text":"RT @FrankIero: https:\/\/t.co\/dpzRW7Ic5c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3383964011,"id_str":"3383964011","name":"merry nat","screen_name":"yepitsmenatsu","location":"costa rica ","url":"http:\/\/yepitsmenatsu.tumblr.com","description":"hi","protected":false,"verified":false,"followers_count":47,"friends_count":153,"listed_count":1,"favourites_count":2759,"statuses_count":1584,"created_at":"Mon Jul 20 03:10:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660290189902893056\/IADu2f7J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660290189902893056\/IADu2f7J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3383964011\/1445471990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:28:30 +0000 2015","id":663709750073401344,"id_str":"663709750073401344","text":"https:\/\/t.co\/dpzRW7Ic5c","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17471554,"id_str":"17471554","name":"frnkiero","screen_name":"FrankIero","location":"NJ","url":"http:\/\/www.frank-iero.com","description":"'Stomachaches' Out Now On B.CalmPress\/Staple Records\niTunes: http:\/\/smarturl.it\/frnkieroitunes\nStore\/Bundles: http:\/\/smarturl.it\/frnkierostore","protected":false,"verified":true,"followers_count":525054,"friends_count":478,"listed_count":4767,"favourites_count":2160,"statuses_count":5806,"created_at":"Tue Nov 18 21:09:29 +0000 2008","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/344918034408117877\/23d1da5a3dee6bccb858a49f5fb06ae6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/344918034408117877\/23d1da5a3dee6bccb858a49f5fb06ae6.jpeg","profile_background_tile":true,"profile_link_color":"D04F4F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/510140682766282752\/4o6rYj4b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/510140682766282752\/4o6rYj4b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17471554\/1441311647","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":966,"favorite_count":1787,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709748089475072,"id_str":"663709748089475072","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","url":"https:\/\/t.co\/dpzRW7Ic5c","display_url":"pic.twitter.com\/dpzRW7Ic5c","expanded_url":"http:\/\/twitter.com\/FrankIero\/status\/663709750073401344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709748089475072,"id_str":"663709748089475072","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","url":"https:\/\/t.co\/dpzRW7Ic5c","display_url":"pic.twitter.com\/dpzRW7Ic5c","expanded_url":"http:\/\/twitter.com\/FrankIero\/status\/663709750073401344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FrankIero","name":"frnkiero","id":17471554,"id_str":"17471554","indices":[3,13]}],"symbols":[],"media":[{"id":663709748089475072,"id_str":"663709748089475072","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","url":"https:\/\/t.co\/dpzRW7Ic5c","display_url":"pic.twitter.com\/dpzRW7Ic5c","expanded_url":"http:\/\/twitter.com\/FrankIero\/status\/663709750073401344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663709750073401344,"source_status_id_str":"663709750073401344","source_user_id":17471554,"source_user_id_str":"17471554"}]},"extended_entities":{"media":[{"id":663709748089475072,"id_str":"663709748089475072","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4f9jWUAAUXH6.jpg","url":"https:\/\/t.co\/dpzRW7Ic5c","display_url":"pic.twitter.com\/dpzRW7Ic5c","expanded_url":"http:\/\/twitter.com\/FrankIero\/status\/663709750073401344\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663709750073401344,"source_status_id_str":"663709750073401344","source_user_id":17471554,"source_user_id_str":"17471554"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080118665"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490516484,"id_str":"663728240490516484","text":"\u30de\u30b7\u30e5\u30de\u30ed\u30de\u30f3\u3060\u308d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":954812359,"id_str":"954812359","name":"\u30b5\u30c8\u3044\u3082@\u716e\u3063\u8ee2\u304c\u3057","screen_name":"maou_ykmr0","location":"\u30b9\u30fc\u30d1\u30fc\u306e\u91ce\u83dc\u30b3\u30fc\u30ca\u30fc","url":"http:\/\/twpf.jp\/maou_ykmr0","description":"\u591a\u8da3\u5473\u306a\u30c1\u30ad\u30f3.\u30c6\u30cb\u30d7\u30ea\u3068\u30b5\u30e9\u30c0\u8ecd\u8266\u304c\u597d\u304d.\u8a73\u7d30\u306f\u4e0b\u8a18url\u3092\u3054\u89a7\u3044\u305f\u3060\u3051\u308b\u3068\u5927\u5909\u6709\u308a\u96e3\u3044\u3067\u3059.\n\u30dd\u30cb\u30fc\u30c6\u30fc\u30eb\u3068\u5ca1\u7530\u51c6\u4e00\u3068\u6642\u3005\u82e5\u6797","protected":false,"verified":false,"followers_count":364,"friends_count":349,"listed_count":12,"favourites_count":8816,"statuses_count":14029,"created_at":"Sun Nov 18 04:07:03 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632908807232843776\/jy9o1U49_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632908807232843776\/jy9o1U49_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/954812359\/1426302796","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240478052352,"id_str":"663728240478052352","text":"@blha303 I'm installing the Prereqs now, and alot of the packages aren't found, even when using pip, suggestions? I got pyyaml so far.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663361691061649408,"in_reply_to_status_id_str":"663361691061649408","in_reply_to_user_id":167876103,"in_reply_to_user_id_str":"167876103","in_reply_to_screen_name":"blha303","user":{"id":3127368214,"id_str":"3127368214","name":"DJCoolguy","screen_name":"DJCoolguy3289","location":"Ohio, United States","url":"http:\/\/thegamingcorner.net","description":"I am a small time DJ in Ohio for Hive 365 & Rookery Radio...Check it out!\r\nI'm also the owner of http:\/\/Thegamingcorner.net","protected":false,"verified":false,"followers_count":21,"friends_count":48,"listed_count":0,"favourites_count":5,"statuses_count":39,"created_at":"Sun Mar 29 19:52:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582269311848292352\/SzE_It34_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582269311848292352\/SzE_It34_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3127368214\/1444496272","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blha303","name":"Steven Smith","id":167876103,"id_str":"167876103","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486256640,"id_str":"663728240486256640","text":"RT @_Luansh: #AmoADiosPorque nos da la oportunidad de iniciar una nueva semana llena de oportunidades que aprovechar!! \ud83d\ude4f\ud83c\udffb\ud83d\ude4c\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":319455087,"id_str":"319455087","name":"Julio L\u00f3pez Carranza","screen_name":"SoyJulioLopez","location":"Guatemala","url":"http:\/\/SoyJulioLopez.com","description":"Aprendiz de la vida | #Comunicador | #Publicista | Autor de #DiarioDeUnAdorador | creador de @NotiDelReino | #Disc\u00edpulo de Jes\u00fas | info@soyjuliolopez.com","protected":false,"verified":false,"followers_count":8358,"friends_count":391,"listed_count":26,"favourites_count":7904,"statuses_count":37982,"created_at":"Sat Jun 18 04:25:59 +0000 2011","utc_offset":-21600,"time_zone":"Central America","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623849767064330240\/bjfuVNuI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623849767064330240\/bjfuVNuI.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623203794583552000\/iFGaoXIw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623203794583552000\/iFGaoXIw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/319455087\/1437155630","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:36 +0000 2015","id":663716569374064640,"id_str":"663716569374064640","text":"#AmoADiosPorque nos da la oportunidad de iniciar una nueva semana llena de oportunidades que aprovechar!! \ud83d\ude4f\ud83c\udffb\ud83d\ude4c\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":230238017,"id_str":"230238017","name":"\u0251\u043fd\u044fee\u0251","screen_name":"_Luansh","location":"Guatemala","url":null,"description":"Antes de ser Dios & Se\u00f1or\u2026 es mi Padre & yo su Princesa | Instagram: andreitameda | Salmos 150 | #NutricionHerbalife | snapchat: andreita.luu","protected":false,"verified":false,"followers_count":685,"friends_count":323,"listed_count":1,"favourites_count":6463,"statuses_count":32605,"created_at":"Fri Dec 24 18:12:37 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000114136752\/42f6ed2d91aa0f1b051a65264eeb6a56.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000114136752\/42f6ed2d91aa0f1b051a65264eeb6a56.jpeg","profile_background_tile":true,"profile_link_color":"F03E7C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"10B6E0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661776198507216896\/hqEPoIof_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661776198507216896\/hqEPoIof_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/230238017\/1440368400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":2,"entities":{"hashtags":[{"text":"AmoADiosPorque","indices":[0,15]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmoADiosPorque","indices":[13,28]}],"urls":[],"user_mentions":[{"screen_name":"_Luansh","name":"\u0251\u043fd\u044fee\u0251","id":230238017,"id_str":"230238017","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494645248,"id_str":"663728240494645248","text":"RT @frmoongeunyoung: Shin Se Kyung and Moon Geun Young's growth as actresses.\" https:\/\/t.co\/qv5HSNfLSR https:\/\/t.co\/Aygi375LxR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1595251490,"id_str":"1595251490","name":"BhengEscobar","screen_name":"bhengvaldez12","location":"Singapore","url":null,"description":"I am Ginebra & Rafa Nadal diehard fan ...Avid fan of Lyca Gairanod, Harry Styles ,1D,Blake Lively & Moon Geun Young.I like the movie 50 shades of grey.","protected":false,"verified":false,"followers_count":539,"friends_count":481,"listed_count":5,"favourites_count":11570,"statuses_count":10797,"created_at":"Mon Jul 15 07:31:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643947871515992065\/RwdRi05L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643947871515992065\/RwdRi05L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1595251490\/1441242882","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:01:16 +0000 2015","id":663642500830093312,"id_str":"663642500830093312","text":"Shin Se Kyung and Moon Geun Young's growth as actresses.\" https:\/\/t.co\/qv5HSNfLSR https:\/\/t.co\/Aygi375LxR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3934561218,"id_str":"3934561218","name":"MOONS world\u2661","screen_name":"frmoongeunyoung","location":null,"url":"https:\/\/instagram.com\/aka_moons\/","description":"Tweets only for Moon Geun Young \ubb38\uadfc\uc601 daily news-updates\u30c4 IG trans by: soompimoons","protected":false,"verified":false,"followers_count":22,"friends_count":27,"listed_count":1,"favourites_count":56,"statuses_count":104,"created_at":"Sun Oct 18 09:51:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655684908984090624\/2iBpIQft.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655684908984090624\/2iBpIQft.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663643857846800384\/eBCL-uHD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663643857846800384\/eBCL-uHD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3934561218\/1445177826","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qv5HSNfLSR","expanded_url":"http:\/\/bit.ly\/1GShYx9","display_url":"bit.ly\/1GShYx9","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":663642498674221057,"id_str":"663642498674221057","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","url":"https:\/\/t.co\/Aygi375LxR","display_url":"pic.twitter.com\/Aygi375LxR","expanded_url":"http:\/\/twitter.com\/frmoongeunyoung\/status\/663642500830093312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":272,"resize":"fit"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":499,"h":272,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663642498674221057,"id_str":"663642498674221057","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","url":"https:\/\/t.co\/Aygi375LxR","display_url":"pic.twitter.com\/Aygi375LxR","expanded_url":"http:\/\/twitter.com\/frmoongeunyoung\/status\/663642500830093312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":272,"resize":"fit"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":499,"h":272,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qv5HSNfLSR","expanded_url":"http:\/\/bit.ly\/1GShYx9","display_url":"bit.ly\/1GShYx9","indices":[79,102]}],"user_mentions":[{"screen_name":"frmoongeunyoung","name":"MOONS world\u2661","id":3934561218,"id_str":"3934561218","indices":[3,19]}],"symbols":[],"media":[{"id":663642498674221057,"id_str":"663642498674221057","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","url":"https:\/\/t.co\/Aygi375LxR","display_url":"pic.twitter.com\/Aygi375LxR","expanded_url":"http:\/\/twitter.com\/frmoongeunyoung\/status\/663642500830093312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":272,"resize":"fit"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":499,"h":272,"resize":"fit"}},"source_status_id":663642500830093312,"source_status_id_str":"663642500830093312","source_user_id":3934561218,"source_user_id_str":"3934561218"}]},"extended_entities":{"media":[{"id":663642498674221057,"id_str":"663642498674221057","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW7Vh9UYAEZxa5.jpg","url":"https:\/\/t.co\/Aygi375LxR","display_url":"pic.twitter.com\/Aygi375LxR","expanded_url":"http:\/\/twitter.com\/frmoongeunyoung\/status\/663642500830093312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":499,"h":272,"resize":"fit"},"small":{"w":340,"h":184,"resize":"fit"},"large":{"w":499,"h":272,"resize":"fit"}},"source_status_id":663642500830093312,"source_status_id_str":"663642500830093312","source_user_id":3934561218,"source_user_id_str":"3934561218"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118665"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240461111296,"id_str":"663728240461111296","text":"@pcy_m127 \u305d\u304b\u305d\u304b(;_;)\u30c1\u30b1\u30c3\u30c8\u306f\u898b\u3064\u304b\u308a\u305d\u3046\u3088\u306a\ud83d\ude2e\u2728\n\u3058\u3047\u3072\u3058\u3047\u3072\uff01\u5f85\u3063\u3068\u308b\u3088\ud83d\ude0d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724488287084544,"in_reply_to_status_id_str":"663724488287084544","in_reply_to_user_id":3196426856,"in_reply_to_user_id_str":"3196426856","in_reply_to_screen_name":"pcy_m127","user":{"id":3136824536,"id_str":"3136824536","name":"\u30ea\u30b5","screen_name":"lisa818xo","location":"KOBE","url":null,"description":"CHEN\u307a\u3093\u3060\u3051\u3069\u6642\u3005KAI\u306b\u63fa\u308c\u308b88Line(\u02d8\u2765\u02d8) \u65e5\u5e38\u306e\u3064\u3076\u3084\u304d\u591a\u3081\u3067\u3059\u3093..\u304a\u6c17\u8efd\u306bfollow meee( \u00a8\u032e )","protected":false,"verified":false,"followers_count":163,"friends_count":259,"listed_count":13,"favourites_count":636,"statuses_count":5280,"created_at":"Fri Apr 03 17:08:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584040012649345025\/0n4BvkPm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584040012649345025\/0n4BvkPm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3136824536\/1428081077","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pcy_m127","name":"\u307f\u3043","id":3196426856,"id_str":"3196426856","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118657"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240477863936,"id_str":"663728240477863936","text":"@taeyyoun un, ud makan kan?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727714784808960,"in_reply_to_status_id_str":"663727714784808960","in_reply_to_user_id":1326588330,"in_reply_to_user_id_str":"1326588330","in_reply_to_screen_name":"taeyyoun","user":{"id":433900843,"id_str":"433900843","name":"kica","screen_name":"jsjtsal","location":"smofc","url":null,"description":"\uc815\uc218\uc815\u2019s \u2728","protected":false,"verified":false,"followers_count":1975,"friends_count":1010,"listed_count":8,"favourites_count":1666,"statuses_count":11010,"created_at":"Sun Dec 11 05:06:21 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715296906096640\/CZVKuvPp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715296906096640\/CZVKuvPp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/433900843\/1447077033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taeyyoun","name":"u n t a e","id":1326588330,"id_str":"1326588330","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240461283328,"id_str":"663728240461283328","text":"RT @FatosEx: aquele momento estranho qndo vc sente um certo cheiro e automaticamente esse cheiro te traz v\u00e1rias lembran\u00e7as","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3000458578,"id_str":"3000458578","name":"Pamyy","screen_name":"DamasioPamela","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":489,"friends_count":953,"listed_count":0,"favourites_count":683,"statuses_count":5826,"created_at":"Mon Jan 26 22:05:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662814973983391744\/LO2rZkj0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662814973983391744\/LO2rZkj0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3000458578\/1446518757","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:45:04 +0000 2015","id":663351532243415041,"id_str":"663351532243415041","text":"aquele momento estranho qndo vc sente um certo cheiro e automaticamente esse cheiro te traz v\u00e1rias lembran\u00e7as","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2542348724,"id_str":"2542348724","name":"fatos ex","screen_name":"FatosEx","location":null,"url":"http:\/\/i.instagram.com\/fatoex","description":"\u2709 twittercontato@outlook.com.br \u2709 \n\nhttp:\/\/fb.com\/fatoex","protected":false,"verified":false,"followers_count":434405,"friends_count":2,"listed_count":147,"favourites_count":306,"statuses_count":17446,"created_at":"Mon Jun 02 22:58:30 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615301077165080576\/oHNpr3_l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615301077165080576\/oHNpr3_l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542348724\/1401845209","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":571,"favorite_count":508,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FatosEx","name":"fatos ex","id":2542348724,"id_str":"2542348724","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118657"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240478003200,"id_str":"663728240478003200","text":"Totally forgot my class was canceled today and went to it \ud83d\udca9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":381603242,"id_str":"381603242","name":"Scott Harrington","screen_name":"scott_posts","location":"riverdale,RI","url":null,"description":"Co-Founder of K Athletics\nJoin the movement, follow the IG|k_athletics and scott_posts","protected":false,"verified":false,"followers_count":355,"friends_count":310,"listed_count":0,"favourites_count":1256,"statuses_count":16834,"created_at":"Wed Sep 28 16:25:08 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486224376610975746\/w-v8cuSc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486224376610975746\/w-v8cuSc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/381603242\/1396366799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240482107392,"id_str":"663728240482107392","text":"Ponto das Igrejas - Conte\u00fado Crist\u00e3o num s\u00f3 lugar! https:\/\/t.co\/ferf3NYsW3","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19342619,"id_str":"19342619","name":"Wilson Bonfim","screen_name":"wilsonbonfim","location":"\u00dcT: -22.882343,-43.359576","url":"http:\/\/www.wilsonbonfim.com","description":"http:\/\/www.wilsonbonfim.com","protected":false,"verified":false,"followers_count":665,"friends_count":791,"listed_count":33,"favourites_count":63,"statuses_count":4667,"created_at":"Thu Jan 22 15:25:19 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/155736823\/mosaico_2.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/155736823\/mosaico_2.gif","profile_background_tile":false,"profile_link_color":"5F5A5A","profile_sidebar_border_color":"A69F9F","profile_sidebar_fill_color":"D2C9C9","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/409948649\/wil1_c_pia_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/409948649\/wil1_c_pia_normal.gif","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ferf3NYsW3","expanded_url":"http:\/\/fb.me\/7Dasoq1PE","display_url":"fb.me\/7Dasoq1PE","indices":[51,74]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080118662"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240490471424,"id_str":"663728240490471424","text":"VIDEO: Hecklers disrupt Cameron's CBI speech https:\/\/t.co\/t3AKUaGvzX","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1867362378,"id_str":"1867362378","name":"Worldwide News ","screen_name":"Koran_Inggris","location":"Worldwide","url":null,"description":"All news","protected":false,"verified":false,"followers_count":2800,"friends_count":27,"listed_count":147,"favourites_count":0,"statuses_count":891943,"created_at":"Sun Sep 15 11:38:11 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000658460863\/bf1d2dbbf3c38ea6e9a750d35b44c625_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000658460863\/bf1d2dbbf3c38ea6e9a750d35b44c625_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t3AKUaGvzX","expanded_url":"http:\/\/dlvr.it\/ChfpWV","display_url":"dlvr.it\/ChfpWV","indices":[45,68]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118664"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240465285120,"id_str":"663728240465285120","text":"@kuroko45973125 @beat_type_r \n\n\u3082\u3046\u3061\u3087\u3063\u3068\u9811\u5f35\u308c\u3070\u3042\u306e\u30dc\u30ed\u30a8\u30f3\u30b8\u30f3\u3067\u308240\u5207\u308c\u308b\u6c17\u304c\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727829029269504,"in_reply_to_status_id_str":"663727829029269504","in_reply_to_user_id":2744258468,"in_reply_to_user_id_str":"2744258468","in_reply_to_screen_name":"kuroko45973125","user":{"id":2855708665,"id_str":"2855708665","name":"\u306a\u307e\u307d\u3093@\u5bdd\u4e0d\u8db3","screen_name":"Namatyan_88111","location":"\u30d3\u30fc\u30c8\u306e\u904b\u8ee2\u5e2d","url":null,"description":"\u30af\u30eb\u30de\u597d\u304d\u306e\u30a2\u30db\u3067\u3059\u3002\u611b\u8eca\u306f\u30db\u30f3\u30c0 \u30d3\u30fc\u30c8 \u4e2d\u5bcc\u5c0f\u2192\u5bcc\u4e2d\u2192\u72ed\u5c71\u5de5\u696d\u2192\u30db\u30f3\u30c0\u5b66\u5712\u95a2\u6771(\u4e00\u7d1a\u81ea\u52d5\u8eca\u6574\u5099\u7814\u7a76\u79d1) \u72ed\u5c71 \u30ea\u30a2\u5c02\u7528\u57a2\u306a\u306e\u3067\u3001\u304a\u4f1a\u3044\u3057\u305f\u4e8b\u304c\u7121\u3044\u4eba\u306f\u8eca\u57a2\u306e\u65b9\u3067\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u2192@CUTLASSTypeR","protected":false,"verified":false,"followers_count":144,"friends_count":129,"listed_count":1,"favourites_count":2676,"statuses_count":6901,"created_at":"Tue Oct 14 15:01:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595603050477137920\/PXB2S8uE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595603050477137920\/PXB2S8uE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2855708665\/1428690370","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuroko45973125","name":"C18H27NO3","id":2744258468,"id_str":"2744258468","indices":[0,15]},{"screen_name":"beat_type_r","name":"\u3070\u3084\u3057\u3053\uff5e@\u30a4\u30ce\u30b7\u30b7\u30d2\u30c3\u30c8\u30d3\u30fc\u30c8","id":1245001357,"id_str":"1245001357","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118658"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240477925376,"id_str":"663728240477925376","text":"\u672c\u65e5\u306f\uff12\u56de\u76ee\u306e\u30b0\u30ea\u306b\u8ee2\u843d\n\u81f4\u3057\u307e\u3057\u305f\u3002\u307b\u3093\u3068\u30fc\u306b\u840e\u3048\u307e\u3057\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2170013748,"id_str":"2170013748","name":"\u304a\u3046\u304c","screen_name":"ougashitou","location":"\u718a\u8c37 \u5927\u5e61","url":null,"description":null,"protected":false,"verified":false,"followers_count":331,"friends_count":274,"listed_count":0,"favourites_count":93,"statuses_count":2650,"created_at":"Sat Nov 02 10:40:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659988323532800000\/_nShWkhb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659988323532800000\/_nShWkhb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2170013748\/1442302230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118661"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240498864129,"id_str":"663728240498864129","text":"Everyone wants happiness. No one wants pain. But you can't have a rainbow, without a little rain.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2271168349,"id_str":"2271168349","name":"\u2639","screen_name":"losingxhopes","location":null,"url":"http:\/\/instagram.com\/soulsdarkness","description":"I can't unlove you","protected":false,"verified":false,"followers_count":36348,"friends_count":2461,"listed_count":66,"favourites_count":406,"statuses_count":15950,"created_at":"Wed Jan 01 04:36:28 +0000 2014","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599436775010930688\/NavrRUV7.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662521971838611456\/3j92G-sy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2271168349\/1446903061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118666"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240486289408,"id_str":"663728240486289408","text":"RT @meshiuma_yonaka: \u713c\u304d\u9ce5(\u76db\u5408\u305b) https:\/\/t.co\/zRkF1vMYIO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":112942921,"id_str":"112942921","name":"sarry\u221e\u9ec4\u8272@12\/17\u6771\u4eac\u53c2\u6226","screen_name":"sarry33","location":null,"url":null,"description":"'09PUZZLE~'14\u95a2\uff7c\uff9e\uff6c\uff86\uff7d\uff9e\uff91\u8fc4\u9023\u7d9a\u53c2\u6226\u6e08\/'15\u5143\u6c17\u304c\u51fa\u308bLIVE12\/17\u53c2\u6226\/\u221e\uff96\uff98\u4e8b\u52d9\u6240\u62c5\/\u9326\u6238\u4eae\/\u5897\u7530\u8cb4\u4e45\/\u5317\u5c71\u5b8f\u5149\/\u6238\u585a\u7965\u592a\/\u4f0a\u91ce\u5c3e\u6167\/\u5e73\u91ce\u7d2b\u8000\/\u304a\u7b11\u3044\/\u677e\uff7a\uff8a\uff9e\/\uff95\uff73\uff77\uff9b\uff6f\uff78\/\u306f\u3058\u3081\u3093\/21\uff74\uff93\uff9d\/\uff8c\uff9f\uff9b\uff9a\uff7d\/\u3053\u307e\uff8c\uff9e\uff97\/\uff97\uff70\uff92\uff9d\/\uff7f\uff8c\uff84\uff78\uff98\uff70\uff91\/\u5bb6\u7cfb\/\u6587\u5177\u58f2\u5834\u52e4\u52d9\/","protected":false,"verified":false,"followers_count":27,"friends_count":32,"listed_count":0,"favourites_count":98,"statuses_count":147,"created_at":"Wed Feb 10 05:49:13 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651438957939392512\/oHSb__j9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651438957939392512\/oHSb__j9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/112942921\/1426176075","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:40 +0000 2015","id":663726151223742468,"id_str":"663726151223742468","text":"\u713c\u304d\u9ce5(\u76db\u5408\u305b) https:\/\/t.co\/zRkF1vMYIO","source":"\u003ca href=\"http:\/\/makebot.sh\" rel=\"nofollow\"\u003e\u30de\u30b7\u30a6\u30de\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174283783,"id_str":"174283783","name":"\u3010\u9ad8\u753b\u8cea\u3011\u98ef\u30c6\u30edbot","screen_name":"meshiuma_yonaka","location":"\u30c0\u30a4\u30a8\u30c3\u30c8\uff1f\u306a\u306b\u305d\u308c\u65e8\u3044\u306e\uff1f","url":"https:\/\/twitter.com\/dolcebot","description":"\u3010\u95b2\u89a7\u6ce8\u610f\u3011\u7279\u306b\u6df1\u591c\u306f\u5371\u967a\u3067\u3059\uff01 \u3000 \r\nTweet for Yummy Food Pics","protected":false,"verified":false,"followers_count":110476,"friends_count":1518,"listed_count":2465,"favourites_count":0,"statuses_count":15352,"created_at":"Tue Aug 03 15:18:29 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBD8C1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000069623952\/61f82b17688b9b1acd500b79f9de6b68.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000069623952\/61f82b17688b9b1acd500b79f9de6b68.jpeg","profile_background_tile":false,"profile_link_color":"FF6600","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445799352095608832\/b3Zu-2gf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445799352095608832\/b3Zu-2gf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174283783\/1395016975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":242,"favorite_count":156,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":435612997931642880,"id_str":"435612997931642880","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","url":"https:\/\/t.co\/zRkF1vMYIO","display_url":"pic.twitter.com\/zRkF1vMYIO","expanded_url":"http:\/\/twitter.com\/meshiuma_yonaka\/status\/435612997927448576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":435612997927448576,"source_status_id_str":"435612997927448576","source_user_id":174283783,"source_user_id_str":"174283783"}]},"extended_entities":{"media":[{"id":435612997931642880,"id_str":"435612997931642880","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","url":"https:\/\/t.co\/zRkF1vMYIO","display_url":"pic.twitter.com\/zRkF1vMYIO","expanded_url":"http:\/\/twitter.com\/meshiuma_yonaka\/status\/435612997927448576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":435612997927448576,"source_status_id_str":"435612997927448576","source_user_id":174283783,"source_user_id_str":"174283783"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"meshiuma_yonaka","name":"\u3010\u9ad8\u753b\u8cea\u3011\u98ef\u30c6\u30edbot","id":174283783,"id_str":"174283783","indices":[3,19]}],"symbols":[],"media":[{"id":435612997931642880,"id_str":"435612997931642880","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","url":"https:\/\/t.co\/zRkF1vMYIO","display_url":"pic.twitter.com\/zRkF1vMYIO","expanded_url":"http:\/\/twitter.com\/meshiuma_yonaka\/status\/435612997927448576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":435612997927448576,"source_status_id_str":"435612997927448576","source_user_id":174283783,"source_user_id_str":"174283783"}]},"extended_entities":{"media":[{"id":435612997931642880,"id_str":"435612997931642880","indices":[30,53],"media_url":"http:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BgubtrFCMAA8_2-.jpg","url":"https:\/\/t.co\/zRkF1vMYIO","display_url":"pic.twitter.com\/zRkF1vMYIO","expanded_url":"http:\/\/twitter.com\/meshiuma_yonaka\/status\/435612997927448576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":435612997927448576,"source_status_id_str":"435612997927448576","source_user_id":174283783,"source_user_id_str":"174283783"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118663"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240498974720,"id_str":"663728240498974720","text":"RT @maryoma_____: \u0627\u063a\u0646\u064a\u0629 \u064a\u0627 \u0628\u062a\u0627\u0639 \u0627\u0644\u0646\u0639\u0646\u0627\u0639 \u0645\u062b\u0644\u0627 \ud83d\udc4c\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":310757556,"id_str":"310757556","name":"Rose Mary","screen_name":"justahuman___","location":"Alexandria ","url":"http:\/\/ask.fm\/justahuman___","description":"Be who you are and say what you feel, because those who mind don't matter, and those who matter don't mind.#\u062c\u0631\u0648\u0628_\u0627\u0644\u0634\u0644\u0647","protected":false,"verified":false,"followers_count":50546,"friends_count":647,"listed_count":96,"favourites_count":934,"statuses_count":83575,"created_at":"Sat Jun 04 09:08:06 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626385099487969280\/sB9T5t9Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626385099487969280\/sB9T5t9Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/310757556\/1438177075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 11:00:55 +0000 2015","id":660411119236960256,"id_str":"660411119236960256","text":"\u0627\u063a\u0646\u064a\u0629 \u064a\u0627 \u0628\u062a\u0627\u0639 \u0627\u0644\u0646\u0639\u0646\u0627\u0639 \u0645\u062b\u0644\u0627 \ud83d\udc4c\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2708947870,"id_str":"2708947870","name":"\u0639\u0631\u064a\u0642\u0629\u270c","screen_name":"maryoma_____","location":"\u0627\u0644\u0636\u0644\u0645\u0629..","url":null,"description":"\u200f\u200f\u0643\u0627\u0646 \u0641\u064a \u0648\u062e\u0644\u0635. .","protected":false,"verified":false,"followers_count":5437,"friends_count":4944,"listed_count":5,"favourites_count":280,"statuses_count":18028,"created_at":"Mon Jul 14 01:40:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663703672623374336\/OaajmbB2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663703672623374336\/OaajmbB2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2708947870\/1443390668","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":78,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"maryoma_____","name":"\u0639\u0631\u064a\u0642\u0629\u270c","id":2708947870,"id_str":"2708947870","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080118666"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240482123776,"id_str":"663728240482123776","text":"RT @kamexnakasyo: \u304a\u305d\u677e\u3055\u3093\u304c\u5927\u30d6\u30fc\u30e0\u306b\u306a\u3063\u3066\u307e\u3059\u304c\u3001\u4e01\u5ea65\u5e74\u524d\u306e\u3053\u306e\u6642\u671f\u306b\u3082\u540c\u3058\u3088\u3046\u306b\u4e0b\u30cd\u30bf\u3001\u9006\u4f5c\u753b\u5d29\u58ca\u3001\u30d1\u30ed\u30c7\u30a3\u30b7\u30fc\u30f3\u3001\u4e0d\u610f\u306b\u611f\u52d5\u8a71\u304c\u6765\u305f\u7b49\u3067\u8a71\u984c\u306b\u306a\u3063\u305f\u30a2\u30cb\u30e1\u304c\u3042\u3063\u305f\u306e\u3092\u899a\u3048\u3066\u3044\u3089\u3063\u3057\u3083\u308b\u3067\u3057\u3087\u3046\u304b https:\/\/t.co\/4jywr02Wd2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":636162691,"id_str":"636162691","name":"\u307e\u3064\u3052","screen_name":"ksmtg11","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u3002\u30bb\u30fc\u30e9\u30fc\u670d\u3068\u7537\u306e\u5a18\u3068\u5e7c\u5973\u3068\u30a2\u30a4\u30c9\u30eb\u304c\u597d\u304d\u306a\u8150\u5973\u5b50\u3067\u3059\u3002\u2661\u661f\u7a7a\u51db\u3001\u798f\u5c71\u821e\u3001\u661f\u67ff\u30de\u30ce\u30f3","protected":false,"verified":false,"followers_count":108,"friends_count":311,"listed_count":4,"favourites_count":7310,"statuses_count":23646,"created_at":"Sun Jul 15 12:47:20 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FFFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563672005371641856\/VUgpxZHu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563672005371641856\/VUgpxZHu.jpeg","profile_background_tile":false,"profile_link_color":"008B8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662683037549760512\/2_zEQsQr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662683037549760512\/2_zEQsQr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636162691\/1435684928","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:06:06 +0000 2015","id":663689015372087296,"id_str":"663689015372087296","text":"\u304a\u305d\u677e\u3055\u3093\u304c\u5927\u30d6\u30fc\u30e0\u306b\u306a\u3063\u3066\u307e\u3059\u304c\u3001\u4e01\u5ea65\u5e74\u524d\u306e\u3053\u306e\u6642\u671f\u306b\u3082\u540c\u3058\u3088\u3046\u306b\u4e0b\u30cd\u30bf\u3001\u9006\u4f5c\u753b\u5d29\u58ca\u3001\u30d1\u30ed\u30c7\u30a3\u30b7\u30fc\u30f3\u3001\u4e0d\u610f\u306b\u611f\u52d5\u8a71\u304c\u6765\u305f\u7b49\u3067\u8a71\u984c\u306b\u306a\u3063\u305f\u30a2\u30cb\u30e1\u304c\u3042\u3063\u305f\u306e\u3092\u899a\u3048\u3066\u3044\u3089\u3063\u3057\u3083\u308b\u3067\u3057\u3087\u3046\u304b https:\/\/t.co\/4jywr02Wd2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84561058,"id_str":"84561058","name":"\u30ab\u30e1\u30c3\u30af\u30b9\u306a\u304b\u3057\u3087","screen_name":"kamexnakasyo","location":"\u30b4\u30eb\u30dc\u30fc\u5c4b\u6577\u306e\u58c1\u306e\u4e2d","url":"http:\/\/twpf.jp\/kamexnakasyo","description":"\u901a\u79f0\u306a\u304b\u3057\u3087\n\u25a0\u30d5\u30a1\u30f3\u30bf\u30b8\u30c3\u30af\u30c1\u30eb\u30c9\u30ec\u30f3\u3068\u30ed\u30b1\u30c3\u30c8\u56e3\u306e\u30b3\u30b8\u30e0\u30b5\u30cb\u30e3LOVE\u25a0\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d5\u30a3\u30fc\u30eb\u3067(*^\u25bd^*)","protected":false,"verified":false,"followers_count":472,"friends_count":321,"listed_count":28,"favourites_count":2609,"statuses_count":47538,"created_at":"Fri Oct 23 11:02:17 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581642187881889792\/LmBN0c43.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581642187881889792\/LmBN0c43.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663351212016668672\/gPkzO5ir_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663351212016668672\/gPkzO5ir_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84561058\/1446564766","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9030,"favorite_count":4713,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663689013325271040,"id_str":"663689013325271040","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663689013325271040,"id_str":"663689013325271040","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663689013295890432,"id_str":"663689013295890432","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCbUwAAwYoM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCbUwAAwYoM.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663689011441995776,"id_str":"663689011441995776","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlo7hUkAABoLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlo7hUkAABoLO.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}},{"id":663689013732048896,"id_str":"663689013732048896","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpEDUAAA3WSc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpEDUAAA3WSc.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kamexnakasyo","name":"\u30ab\u30e1\u30c3\u30af\u30b9\u306a\u304b\u3057\u3087","id":84561058,"id_str":"84561058","indices":[3,16]}],"symbols":[],"media":[{"id":663689013325271040,"id_str":"663689013325271040","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663689015372087296,"source_status_id_str":"663689015372087296","source_user_id":84561058,"source_user_id_str":"84561058"}]},"extended_entities":{"media":[{"id":663689013325271040,"id_str":"663689013325271040","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCiVEAARy5N.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663689015372087296,"source_status_id_str":"663689015372087296","source_user_id":84561058,"source_user_id_str":"84561058"},{"id":663689013295890432,"id_str":"663689013295890432","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpCbUwAAwYoM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpCbUwAAwYoM.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663689015372087296,"source_status_id_str":"663689015372087296","source_user_id":84561058,"source_user_id_str":"84561058"},{"id":663689011441995776,"id_str":"663689011441995776","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlo7hUkAABoLO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlo7hUkAABoLO.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663689015372087296,"source_status_id_str":"663689015372087296","source_user_id":84561058,"source_user_id_str":"84561058"},{"id":663689013732048896,"id_str":"663689013732048896","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlpEDUAAA3WSc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlpEDUAAA3WSc.jpg","url":"https:\/\/t.co\/4jywr02Wd2","display_url":"pic.twitter.com\/4jywr02Wd2","expanded_url":"http:\/\/twitter.com\/kamexnakasyo\/status\/663689015372087296\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663689015372087296,"source_status_id_str":"663689015372087296","source_user_id":84561058,"source_user_id_str":"84561058"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118662"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240469655552,"id_str":"663728240469655552","text":"PijushDu : sengineland : Android 6 \u201cMarshmallow\u201d & SEO Series: Sponsored Google Now Cards \u2026 https:\/\/t.co\/gIFYV3hEXZ) https:\/\/t.co\/gpzeWl2d5r","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":583082431,"id_str":"583082431","name":"Mirza M.A.K. Hasan","screen_name":"mirza_mak","location":"BANGLADESH","url":"http:\/\/about.me\/mak.hasan","description":"I have blood that's why I am not always right. Sometime I make mistake that's why I am man. But I try to be positive. This the great way to achieve success.","protected":false,"verified":false,"followers_count":122,"friends_count":878,"listed_count":33,"favourites_count":142,"statuses_count":1118,"created_at":"Thu May 17 19:47:19 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/554600470\/Bangladesh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/554600470\/Bangladesh.jpg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655741606763479042\/k5JI5FFt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655741606763479042\/k5JI5FFt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/583082431\/1445176030","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727707482693632,"quoted_status_id_str":"663727707482693632","quoted_status":{"created_at":"Mon Nov 09 14:39:51 +0000 2015","id":663727707482693632,"id_str":"663727707482693632","text":"sengineland : Android 6 \u201cMarshmallow\u201d & SEO Series: Sponsored Google Now Cards by Suzzicks\u2026 https:\/\/t.co\/9H9r7dCAB8) https:\/\/t.co\/USUp2prapL","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2816577612,"id_str":"2816577612","name":"Pijush Kumar Saha","screen_name":"PijushDu","location":"Dhaka, Bangladesh","url":null,"description":"I'm an #OnlineMarketer, #InternetMarketer, #DigitalMarketer, #SMM, #SEO, #AffiliateMarketer, #Blogger, #Youtube #Facebook #Pinterest #G+ #LinkedIn expert.","protected":false,"verified":false,"followers_count":2041,"friends_count":1561,"listed_count":152,"favourites_count":447,"statuses_count":4679,"created_at":"Thu Sep 18 08:14:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657861022846357504\/rrBO-7IO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657861022846357504\/rrBO-7IO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2816577612\/1445681772","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663724883898167296,"quoted_status_id_str":"663724883898167296","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9H9r7dCAB8","expanded_url":"http:\/\/twitter.com\/sengineland\/status\/663724883898167296","display_url":"twitter.com\/sengineland\/st\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[],"media":[{"id":663727707319083008,"id_str":"663727707319083008","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1U5WoAAE70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1U5WoAAE70a.jpg","url":"https:\/\/t.co\/USUp2prapL","display_url":"pic.twitter.com\/USUp2prapL","expanded_url":"http:\/\/twitter.com\/PijushDu\/status\/663727707482693632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727707319083008,"id_str":"663727707319083008","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1U5WoAAE70a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1U5WoAAE70a.jpg","url":"https:\/\/t.co\/USUp2prapL","display_url":"pic.twitter.com\/USUp2prapL","expanded_url":"http:\/\/twitter.com\/PijushDu\/status\/663727707482693632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gIFYV3hEXZ","expanded_url":"http:\/\/twitter.com\/PijushDu\/status\/663727707482693632","display_url":"twitter.com\/PijushDu\/statu\u2026","indices":[96,119]}],"user_mentions":[],"symbols":[],"media":[{"id":663728240259936256,"id_str":"663728240259936256","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUWQWsAAHLc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUWQWsAAHLc9.jpg","url":"https:\/\/t.co\/gpzeWl2d5r","display_url":"pic.twitter.com\/gpzeWl2d5r","expanded_url":"http:\/\/twitter.com\/mirza_mak\/status\/663728240469655552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728240259936256,"id_str":"663728240259936256","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUWQWsAAHLc9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUWQWsAAHLc9.jpg","url":"https:\/\/t.co\/gpzeWl2d5r","display_url":"pic.twitter.com\/gpzeWl2d5r","expanded_url":"http:\/\/twitter.com\/mirza_mak\/status\/663728240469655552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080118659"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240473718784,"id_str":"663728240473718784","text":"\u5c0f\u3055\u3044\u306e\u3088\u306d https:\/\/t.co\/nVHsPGDnCp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2383399872,"id_str":"2383399872","name":"\u30b7\u30f3\u30b8\u3002\u53f3\u80a9\u8089\u96e2\u308c\u30ea\u30cf\u30d3\u30ea\u4e2d","screen_name":"418873478419459","location":"0614\u30c1\u30fc\u30e0\u702c\u540d\u6240\u5c5e\u30000621\u6620\u753bLL\u6e05\u6c34\u6700\u9ad8","url":null,"description":"\u7adc\u722a\u6355\u624b\u27a1\u79d1\u6280\u6821 \u90fd\u5e02\u5de5 \uff12\u5e74\u3000\uff14\u6708\uff17\u65e5\u3050\u3089\u3044\u304b\u3089\u6355\u624b\u2192\uff1f\u3000#\u65b0\u65e5\u672c\u30d7\u30ed\u30ec\u30b9\uff01#\u30e9\u30d6\u30e9\u30a4\u30d0\u30fc\uff01\u3000 \u8131\u529b\u3068\u9060\u5fc3\u529b\u3092\u4f7f\u3063\u3066\u56de\u8ee2\u3092\u304b\u3051\u3066\u6253\u3064\uff01\u30df\u30fc\u30c8\u91cd\u8996\u3067\u30a4\u30c1\u30ed\u30fc\u76ee\u6307\u3059\u304b\u3041.....","protected":false,"verified":false,"followers_count":302,"friends_count":334,"listed_count":5,"favourites_count":2333,"statuses_count":6332,"created_at":"Tue Mar 11 08:39:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662617907390615555\/0wdNsTqd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662617907390615555\/0wdNsTqd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2383399872\/1441286600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728225953013760,"id_str":"663728225953013760","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTg9UYAAft-2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTg9UYAAft-2.jpg","url":"https:\/\/t.co\/nVHsPGDnCp","display_url":"pic.twitter.com\/nVHsPGDnCp","expanded_url":"http:\/\/twitter.com\/418873478419459\/status\/663728240473718784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728225953013760,"id_str":"663728225953013760","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTg9UYAAft-2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTg9UYAAft-2.jpg","url":"https:\/\/t.co\/nVHsPGDnCp","display_url":"pic.twitter.com\/nVHsPGDnCp","expanded_url":"http:\/\/twitter.com\/418873478419459\/status\/663728240473718784\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080118660"} +{"created_at":"Mon Nov 09 14:41:58 +0000 2015","id":663728240494645249,"id_str":"663728240494645249","text":"Analize medicale gratuite cu ocazia \u201eZilei Interna\u021bionale a\u00a0Diabetului\u201d https:\/\/t.co\/c0MNsmNuOs https:\/\/t.co\/i4t5zCZBX0","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159626048,"id_str":"159626048","name":"Satmareanul ","screen_name":"Satmareanu","location":null,"url":"http:\/\/www.satmareanul.net","description":"Sursa ta zilnica de stiri si buna dispozitie","protected":false,"verified":false,"followers_count":36,"friends_count":22,"listed_count":0,"favourites_count":3,"statuses_count":8846,"created_at":"Fri Jun 25 22:32:48 +0000 2010","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/424929280749875201\/mKOEOjZ2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/424929280749875201\/mKOEOjZ2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c0MNsmNuOs","expanded_url":"http:\/\/www.satmareanul.net\/2015\/11\/09\/analize-medicale-gratuite-cu-ocazia-zilei-internationale-a-diabetului\/","display_url":"satmareanul.net\/2015\/11\/09\/ana\u2026","indices":[72,95]}],"user_mentions":[],"symbols":[],"media":[{"id":663728239454482432,"id_str":"663728239454482432","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUTQUcAAITV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUTQUcAAITV7.jpg","url":"https:\/\/t.co\/i4t5zCZBX0","display_url":"pic.twitter.com\/i4t5zCZBX0","expanded_url":"http:\/\/twitter.com\/Satmareanu\/status\/663728240494645249\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728239454482432,"id_str":"663728239454482432","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUTQUcAAITV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUTQUcAAITV7.jpg","url":"https:\/\/t.co\/i4t5zCZBX0","display_url":"pic.twitter.com\/i4t5zCZBX0","expanded_url":"http:\/\/twitter.com\/Satmareanu\/status\/663728240494645249\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":375,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":375,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ro","timestamp_ms":"1447080118665"} +{"delete":{"status":{"id":663662717081944068,"id_str":"663662717081944068","user_id":322317859,"user_id_str":"322317859"},"timestamp_ms":"1447080119040"}} +{"delete":{"status":{"id":635074135484305408,"id_str":"635074135484305408","user_id":1269122762,"user_id_str":"1269122762"},"timestamp_ms":"1447080119070"}} +{"delete":{"status":{"id":663728227886567425,"id_str":"663728227886567425","user_id":794657658,"user_id_str":"794657658"},"timestamp_ms":"1447080119034"}} +{"delete":{"status":{"id":637753368794939392,"id_str":"637753368794939392","user_id":2894265595,"user_id_str":"2894265595"},"timestamp_ms":"1447080119170"}} +{"delete":{"status":{"id":663725665171038208,"id_str":"663725665171038208","user_id":1298129024,"user_id_str":"1298129024"},"timestamp_ms":"1447080119194"}} +{"delete":{"status":{"id":662936276182503424,"id_str":"662936276182503424","user_id":4100334019,"user_id_str":"4100334019"},"timestamp_ms":"1447080119361"}} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659757057,"id_str":"663728244659757057","text":"El ardor y deseo de la santidad deben estar presentes constantemente en nuestro coraz\u00f3n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2349200508,"id_str":"2349200508","name":"Irvin Ant\u00f3n","screen_name":"Irvin_Anton","location":"Piura, Peru","url":null,"description":"Mvcista.Yo tambi\u00e9n soy pecador y al igual que tu estoy invitado a ser Santo.","protected":false,"verified":false,"followers_count":240,"friends_count":239,"listed_count":3,"favourites_count":338,"statuses_count":2136,"created_at":"Mon Feb 17 23:18:44 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662388720474132480\/vmTUjuee_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662388720474132480\/vmTUjuee_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2349200508\/1446851887","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680753152,"id_str":"663728244680753152","text":"RT @text_larry: I like smut","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261218263,"id_str":"2261218263","name":"Harry Styles.","screen_name":"SpinoutStyles","location":"ig: @ fxckthisimout","url":null,"description":"\u221e\u221e\u2800\u2800\u2800\u2800\u2800\u2800 \u210barr\u0443 pro\u043c\u03b9\u0455ed \u2800\u2800 \u2800\u2800\u2800\u2800\u2800 \u221e\u221e Fran. 19. :) \u2661ashley\u2661 foul mouth squad\u2728","protected":false,"verified":false,"followers_count":4877,"friends_count":4767,"listed_count":8,"favourites_count":13372,"statuses_count":16366,"created_at":"Sat Jan 04 03:26:32 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663131754149109760\/rteK8IEQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663131754149109760\/rteK8IEQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261218263\/1446937902","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:47 +0000 2015","id":663727691556892672,"id_str":"663727691556892672","text":"I like smut","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2729022544,"id_str":"2729022544","name":"Larry Texts","screen_name":"text_larry","location":null,"url":"http:\/\/ask.fm\/text_larry","description":"Harry and Louis are probably fucking right now. ~ you can all dm us now :) #Lquad","protected":false,"verified":false,"followers_count":11340,"friends_count":69,"listed_count":67,"favourites_count":5450,"statuses_count":1723,"created_at":"Wed Jul 30 12:58:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500401363025539074\/-NYWfVZy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500401363025539074\/-NYWfVZy.png","profile_background_tile":true,"profile_link_color":"2153A3","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615571733232373761\/-9G-Cjf4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615571733232373761\/-9G-Cjf4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2729022544\/1435598712","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"text_larry","name":"Larry Texts","id":2729022544,"id_str":"2729022544","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663918592,"id_str":"663728244663918592","text":"@ale6465 puto teclado, putha vida \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727113904758784,"in_reply_to_status_id_str":"663727113904758784","in_reply_to_user_id":229546665,"in_reply_to_user_id_str":"229546665","in_reply_to_screen_name":"ale6465","user":{"id":2246684652,"id_str":"2246684652","name":"Ojitos Chinos!!","screen_name":"evaespejo74","location":"Entre Rios - Argentina","url":null,"description":"01-02-15 TE AMOO CHANCHO! \/\/ Baila para expresarte, expresate para vivir\/\/ MICA LA MAS LINDA TE AMA! JUJUJU","protected":false,"verified":false,"followers_count":70,"friends_count":18,"listed_count":1,"favourites_count":127,"statuses_count":1077,"created_at":"Sun Dec 15 05:30:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663523970206035968\/RwVmpebj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663523970206035968\/RwVmpebj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2246684652\/1446207194","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ale6465","name":"Alee Mu\u00f1oz","id":229546665,"id_str":"229546665","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659736576,"id_str":"663728244659736576","text":"RT @_HeyArnold_: Si supieras lo mucho que di por ti no te hubieras alejado.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":592705319,"id_str":"592705319","name":"\u2795\u2716 Jhonatan \u25e2\u25e4","screen_name":"Jhonatan_DiLera","location":"Argentina, En tu tweet\u265a","url":null,"description":"19\/\/ELECTRO\u261e #TOMORROWLAND\u2665 + summer\/\/CARP\/\/Pinche Fiestero\/\/Hacer amigos es lo m\u00edo :) \u21d0\/\/S\u00cdGUEME Y TE SIGO :*","protected":false,"verified":false,"followers_count":780,"friends_count":642,"listed_count":8,"favourites_count":6052,"statuses_count":4676,"created_at":"Mon May 28 13:02:46 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661427261065838592\/tXEJNIDq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661427261065838592\/tXEJNIDq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/592705319\/1446184577","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727549730693124,"id_str":"663727549730693124","text":"Si supieras lo mucho que di por ti no te hubieras alejado.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":303513017,"id_str":"303513017","name":"Bernal.\u271e","screen_name":"_HeyArnold_","location":null,"url":null,"description":"https:\/\/t.co\/gSwA2djlgq Mi estudio, Mi futuro, Mi TODO.\nMis padres, mi mayor motivaci\u00f3n.\nSnapchat: bernal_arnold","protected":false,"verified":false,"followers_count":6648,"friends_count":4754,"listed_count":89,"favourites_count":55493,"statuses_count":27684,"created_at":"Mon May 23 00:43:34 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"8B542B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/486194866540400641\/SK_wHaya.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/486194866540400641\/SK_wHaya.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658504832744079361\/8XeHdBtQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658504832744079361\/8XeHdBtQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/303513017\/1443229013","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_HeyArnold_","name":"Bernal.\u271e","id":303513017,"id_str":"303513017","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659765248,"id_str":"663728244659765248","text":"Anunci\u00f3 Randazzo que a partir de hoy se ampl\u00eda el horario nocturno de trenes de l\u00ednea Mitre se aumentan frecuencias https:\/\/t.co\/1J94ra8SdD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179102381,"id_str":"179102381","name":"Rodolfo FpV","screen_name":"fitosilvero","location":"Punilla- \u00c7ordoba- Argentina ","url":"http:\/\/twitter.com\/fitosilvero","description":"Amo mi pa\u00eds Argentina, A mi familia, a los amigos\/as y la libertad..No la dependencia,, Modelo Nac&Pop @CFKArgentina - Voto a #ScioliZannini - River Plate -","protected":false,"verified":false,"followers_count":9396,"friends_count":10223,"listed_count":71,"favourites_count":12957,"statuses_count":72587,"created_at":"Mon Aug 16 14:23:49 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/213988100\/NSTORD_1.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/213988100\/NSTORD_1.JPG","profile_background_tile":true,"profile_link_color":"EB1D1D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635476730795454464\/hyX_zeOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635476730795454464\/hyX_zeOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179102381\/1446664903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1J94ra8SdD","expanded_url":"http:\/\/prensa.argentina.ar\/2015\/11\/09\/61706-anuncio-randazzo-que-a-partir-de-hoy-se-amplia-el-horario-nocturno-de-trenes-en-la-linea-mitre-y-se-aumentan-frecuencias.php#.VkCwZ9VUTpU.twitter","display_url":"prensa.argentina.ar\/2015\/11\/09\/617\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663975936,"id_str":"663728244663975936","text":"RT @sfborman: Just been to @LincolnCastleAc to hear @Simon_Weston speak to students. Inspirational stuff! #investinyourself","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750480618,"id_str":"2750480618","name":"LincolnCastleAcademy","screen_name":"LincolnCastleAc","location":"Riseholme Rd, Lincoln LN1 3SP","url":"http:\/\/www.lincolncastleacademy.co.uk","description":null,"protected":false,"verified":false,"followers_count":383,"friends_count":168,"listed_count":8,"favourites_count":37,"statuses_count":1250,"created_at":"Wed Aug 20 21:46:20 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"6699FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552063290923167744\/TKn5lCQI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552063290923167744\/TKn5lCQI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2750480618\/1408718603","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:17:51 +0000 2015","id":663707072521965568,"id_str":"663707072521965568","text":"Just been to @LincolnCastleAc to hear @Simon_Weston speak to students. Inspirational stuff! #investinyourself","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":768003481,"id_str":"768003481","name":"Scott Borman","screen_name":"sfborman","location":"Lincoln","url":null,"description":"A true Lincolnshire yellow belly now working to support the future of cricket. Passionate about the power of positivity and what you can do. Views are my own.","protected":false,"verified":false,"followers_count":107,"friends_count":291,"listed_count":1,"favourites_count":34,"statuses_count":858,"created_at":"Sun Aug 19 18:22:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2661316611\/9f591e542ddbd082b3ba70f76704e6f0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2661316611\/9f591e542ddbd082b3ba70f76704e6f0_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"investinyourself","indices":[92,109]}],"urls":[],"user_mentions":[{"screen_name":"LincolnCastleAc","name":"LincolnCastleAcademy","id":2750480618,"id_str":"2750480618","indices":[13,29]},{"screen_name":"Simon_Weston","name":"Simon Weston","id":92942629,"id_str":"92942629","indices":[38,51]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"investinyourself","indices":[106,123]}],"urls":[],"user_mentions":[{"screen_name":"sfborman","name":"Scott Borman","id":768003481,"id_str":"768003481","indices":[3,12]},{"screen_name":"LincolnCastleAc","name":"LincolnCastleAcademy","id":2750480618,"id_str":"2750480618","indices":[27,43]},{"screen_name":"Simon_Weston","name":"Simon Weston","id":92942629,"id_str":"92942629","indices":[52,65]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244689125376,"id_str":"663728244689125376","text":"RT @GiveItUp4Flo: Broke niggas need to start wearing leggings. WTF u need pockets for?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":714654524,"id_str":"714654524","name":"PIECESOFME","screen_name":"LalamNyameka","location":"JOHANNESBURG...","url":null,"description":"|Gemini|Khosi Fan\u270c\u270c|deepHouse lover|@realblackcoffee is the KINg\u2764|Geordie shore\u2764TeamKaraboIdolsSa","protected":false,"verified":false,"followers_count":1444,"friends_count":1726,"listed_count":5,"favourites_count":140,"statuses_count":4235,"created_at":"Tue Jul 24 17:38:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648877625558069248\/Nd09EP1O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648877625558069248\/Nd09EP1O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/714654524\/1446507204","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:05 +0000 2015","id":663724996930510848,"id_str":"663724996930510848","text":"Broke niggas need to start wearing leggings. WTF u need pockets for?","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57625862,"id_str":"57625862","name":"Flora has No Chill","screen_name":"GiveItUp4Flo","location":"Johannesburg, South Africa","url":null,"description":"First you looked at my Tweet, then my Avi and now you're reading my Bio. Haha you're a Stalker. Hit that Follow button.","protected":false,"verified":false,"followers_count":5623,"friends_count":2447,"listed_count":5,"favourites_count":287,"statuses_count":5011,"created_at":"Fri Jul 17 12:08:33 +0000 2009","utc_offset":7200,"time_zone":"Harare","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"660000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649554646751703041\/QfxH_jS-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649554646751703041\/QfxH_jS-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57625862\/1447072484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"GiveItUp4Flo","name":"Flora has No Chill","id":57625862,"id_str":"57625862","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119665"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680728576,"id_str":"663728244680728576","text":"@yahyamohamed4 \u0644\u0644\u0627\u0633\u0641 \u0627\u0633\u0631\u0627\u0626\u064a\u0644 \u0647\u064a\u0627 \u0627\u0644\u0644\u064a \u0642\u0644\u0644\u062a \u0648\u0628\u0639\u0636 \u0627\u0644\u0639\u0631\u0628 \u0627\u0645\u062b\u0627\u0644 \u062c\u0645\u0644\u062a\u0643\n\u0628\u0627\u0644\u0639\u0643\u0633 \u0627\u0644\u0645\u0646\u062a\u062e\u0628 \u0627\u0644\u0641\u0644\u0633\u0637\u064a\u0646\u064a \u0644\u0639\u0628 \u0645\u0639 \u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a \u0644\u0639\u0628 \u062d\u0644\u0648 \u0648\u0645\u0633\u062a\u0648\u0649 \u064a\u0634\u0631\u0641\u0646\u064a \u0628\u0635\u0631\u0627\u062d\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727928904196097,"in_reply_to_status_id_str":"663727928904196097","in_reply_to_user_id":333201406,"in_reply_to_user_id_str":"333201406","in_reply_to_screen_name":"yahyamohamed4","user":{"id":548010400,"id_str":"548010400","name":"bent aboha \u2654~","screen_name":"b_nt222","location":"Jeddah","url":null,"description":"\u200f\u200f\u200f\u0627\u062d\u064a\u0627\u0646\u0627\u064b \u062a\u064f\u0644\u0627\u0645\u0633\u064f\u0646\u0627 \u0628\u0639\u0636 \u0645\u0646 \u0627\u0644\u062c\u064f\u0645\u0644 \u0648\u0627\u0644\u0639\u0628\u0627\u0631\u0627\u062a \u0627\u0644\u062a\u064a\u0651 \u062a\u0633\u062a\u062d\u0642 \u0627\u0644\u062a\u062f\u0648\u064a\u0646 \u0648\u0627\u0644\u0630\u0643\u0631\u0649 \u0633\u0648\u0627\u0621\u064b \u0643\u0627\u0646\u062a \u062a\u0644\u0643 \u0627\u0644\u062c\u0645\u0644\u0629 \u0645\u0646 \u0643\u062a\u0627\u0628 \u0627\u0648 \u0646\u0635 \u0644\u0634\u0627\u0639\u0631 .... \u0648 \u063a\u064a\u0651\u0631\u0647\u0627 \u0627\u0644\u0643\u062b\u064a\u0651\u0631 !","protected":false,"verified":false,"followers_count":4542,"friends_count":3991,"listed_count":5,"favourites_count":1223,"statuses_count":16281,"created_at":"Sun Apr 08 00:22:59 +0000 2012","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"F00808","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643089791219728385\/Xi6QWiRf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643089791219728385\/Xi6QWiRf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/548010400\/1419285678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yahyamohamed4","name":"yahya .q . m","id":333201406,"id_str":"333201406","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684902400,"id_str":"663728244684902400","text":"Un poquito mas falta\ud83c\udf93\ud83d\udc96","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":297095674,"id_str":"297095674","name":"Samantha Dom\u00ednguez \u2661","screen_name":"Dominguez_SM","location":" Bella Vista itapua Paraguay","url":null,"description":"MKW 015\u2764 snap: samidominguez3","protected":false,"verified":false,"followers_count":305,"friends_count":477,"listed_count":0,"favourites_count":49,"statuses_count":10226,"created_at":"Wed May 11 22:48:58 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"642D8B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658441830850252800\/HUwi3Yw5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658441830850252800\/HUwi3Yw5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/297095674\/1437514122","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663918594,"id_str":"663728244663918594","text":"@ANWAR___HFC \n\u0647\u0630\u064a \u0645\u064a \u062b\u0627\u0628\u062a\u0647 .. \u0627\u0644\u064a\u0648\u0645\u064a\u0646 \u0627\u0644\u062c\u0627\u064a\u0647 \u064a\u0646\u0632\u0644 \u0627\u0644\u062a\u0627\u0647\u064a\u0644 \u0627\u0644\u0627\u0643\u064a\u062f \u0628\u0627\u0630\u0646 \u0627\u0644\u0644\u0647 \u0648\u064a\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u062c\u062f\u0648\u0644\n\n#\u062d\u0627\u0641\u0632","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663719123701129216,"in_reply_to_status_id_str":"663719123701129216","in_reply_to_user_id":3049899288,"in_reply_to_user_id_str":"3049899288","in_reply_to_screen_name":"ANWAR___HFC","user":{"id":2495253407,"id_str":"2495253407","name":"\u0645\u062d\u062f\u062b\u0629 \u062d\u0627\u0641\u0632","screen_name":"Up_hafiz909","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u062c\u0627\u0645\u0639\u064a\u0647 \u0639\u0627\u0637\u0644\u0647 \u0627\u0642\u0648\u0645 \u0628\u062a\u062d\u062f\u064a\u062b \u0628\u064a\u0627\u0646\u0627\u062a\u0643 \u0628\u062d\u0627\u0641\u0632 \u0648\u0627\u0644\u0642\u064a\u0627\u0645 \u0628\u0627\u0644\u062a\u062f\u0631\u064a\u0628\u0627\u062a \u0648\u0627\u0639\u0644\u0627\u0645\u0643\u0645 \u0628\u0648\u062c\u0648\u062f \u0648\u0638\u0627\u0626\u0641 \u062845\u0631\u064a\u0627\u0644 \u0641\u0642\u0637 \u0648\u0628\u0643\u0644 \u0633\u0631\u064a\u0629\u0648\u0627\u0645\u0627\u0646\u0647 \u0648\u062a\u0639\u0648\u064a\u0636\u0643\u0645 \u0628\u062d\u0627\u0644 \u0627\u0644\u062e\u0635\u0645 \u0644\u0627\u0633\u0645\u062d \u0627\u0644\u0644\u0647..\u0627\u0644\u062e\u0627\u0635 \u0644\u0644\u062a\u0648\u0627\u0635\u0644","protected":false,"verified":false,"followers_count":4426,"friends_count":4825,"listed_count":0,"favourites_count":70,"statuses_count":3969,"created_at":"Sat Apr 19 17:42:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/457576103201488896\/_yOO5PtG_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/457576103201488896\/_yOO5PtG_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2495253407\/1418244660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062d\u0627\u0641\u0632","indices":[91,96]}],"urls":[],"user_mentions":[{"screen_name":"ANWAR___HFC","name":"Anwar","id":3049899288,"id_str":"3049899288","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680761345,"id_str":"663728244680761345","text":"Te veo en oto\u00f1o,\nen t\u00fanel\nque no quiere llegar\npor ning\u00fan camino.\n\nY me dejas solo.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744493339,"id_str":"2744493339","name":"Gal\u00e1n","screen_name":"galanole","location":null,"url":null,"description":"Ser humano","protected":false,"verified":false,"followers_count":1290,"friends_count":1242,"listed_count":29,"favourites_count":22992,"statuses_count":26339,"created_at":"Sat Aug 16 16:03:14 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557674676907180032\/pn3fAzHi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557674676907180032\/pn3fAzHi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2744493339\/1431708617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672233473,"id_str":"663728244672233473","text":"RT @mame_noco: \u7d0d\u8c46\u3092\u6df7\u305c\u7d9a\u3051\u308b\u5fa1\u5e78 https:\/\/t.co\/gO75bj1ygh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2851887572,"id_str":"2851887572","name":"\u307f\u308b\u304f\u2661MS","screen_name":"miruku218","location":null,"url":null,"description":"\u6210\u4eba\u6e08\u307f\u3002\u8150\u308a\u304d\u3063\u3066\u308b\u5909\u614b\u3082\u3076\u304a\u3058\u3055\u3093\u3002\u30c0\u30a4\u30e4\u306b\u304a\u306d\u3064\u2661\u6804\u7d14\u30af\u30e9\u30b9\u30bf\u2661\u5fa1\u6ca2\u2661\u2661 RT\u3075\u3041\u307c\u304a\u304a\u3081\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093 \u3002\u7d75\u3082\u3061\u3087\u3053\u3061\u3087\u3053\u63cf\u3044\u3066\u307e\u3059(* `\u25c7\u00b4 *) \u8a73\u3057\u304f\u306f\u3053\u3061\u3089\u2192http:\/\/twpf.jp\/miruku218","protected":false,"verified":false,"followers_count":134,"friends_count":197,"listed_count":18,"favourites_count":14652,"statuses_count":12074,"created_at":"Sat Oct 11 11:56:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661917830724513792\/psaJiKfH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661917830724513792\/psaJiKfH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2851887572\/1446971936","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:28 +0000 2015","id":663728112480358400,"id_str":"663728112480358400","text":"\u7d0d\u8c46\u3092\u6df7\u305c\u7d9a\u3051\u308b\u5fa1\u5e78 https:\/\/t.co\/gO75bj1ygh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67391967,"id_str":"67391967","name":"\u30ce\u30b3\u30cb\u30e3\u30f3\u26be\ufe0eWS5 A-55a","screen_name":"mame_noco","location":"\u5e30\u3063\u305f\u3089\u304a\u524d\u62b1\u304f\u304b\u3089","url":"http:\/\/sonohen-poypoy.tumblr.com\/","description":"\u2666\ufe0eA\/\u5fa1\u6ca2\/20\u2191 \u26be\ufe0f\u26be\ufe0f\u26be\ufe0f pixiv:781433 R18\u7528\uff1a@R18_noco","protected":false,"verified":false,"followers_count":1739,"friends_count":122,"listed_count":49,"favourites_count":901,"statuses_count":76892,"created_at":"Thu Aug 20 18:58:10 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/831927900\/1162203aaaf5303ea7cbd8224aa58801.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/831927900\/1162203aaaf5303ea7cbd8224aa58801.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660977274716471296\/1NZuhOtQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660977274716471296\/1NZuhOtQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67391967\/1444497221","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728111071072258,"id_str":"663728111071072258","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","url":"https:\/\/t.co\/gO75bj1ygh","display_url":"pic.twitter.com\/gO75bj1ygh","expanded_url":"http:\/\/twitter.com\/mame_noco\/status\/663728112480358400\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728111071072258,"id_str":"663728111071072258","indices":[11,34],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","url":"https:\/\/t.co\/gO75bj1ygh","display_url":"pic.twitter.com\/gO75bj1ygh","expanded_url":"http:\/\/twitter.com\/mame_noco\/status\/663728112480358400\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJM0_VEAI7FZj.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mame_noco","name":"\u30ce\u30b3\u30cb\u30e3\u30f3\u26be\ufe0eWS5 A-55a","id":67391967,"id_str":"67391967","indices":[3,13]}],"symbols":[],"media":[{"id":663728111071072258,"id_str":"663728111071072258","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","url":"https:\/\/t.co\/gO75bj1ygh","display_url":"pic.twitter.com\/gO75bj1ygh","expanded_url":"http:\/\/twitter.com\/mame_noco\/status\/663728112480358400\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663728112480358400,"source_status_id_str":"663728112480358400","source_user_id":67391967,"source_user_id_str":"67391967"}]},"extended_entities":{"media":[{"id":663728111071072258,"id_str":"663728111071072258","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTYJM0_VEAI7FZj.png","url":"https:\/\/t.co\/gO75bj1ygh","display_url":"pic.twitter.com\/gO75bj1ygh","expanded_url":"http:\/\/twitter.com\/mame_noco\/status\/663728112480358400\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"},"large":{"w":480,"h":640,"resize":"fit"}},"source_status_id":663728112480358400,"source_status_id_str":"663728112480358400","source_user_id":67391967,"source_user_id_str":"67391967","video_info":{"aspect_ratio":[3,4],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTYJM0_VEAI7FZj.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663967744,"id_str":"663728244663967744","text":"RT @OrdureBizarre_: https:\/\/t.co\/atvMbhnoPO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":595089924,"id_str":"595089924","name":"Idrik Willsen","screen_name":"LewisMungar","location":"Oviedo (a veces no)","url":"http:\/\/ask.fm\/LewisMungar","description":"Experto en meter la pata. La dislexia es intensa en mi. Estudio Mecatr\u00f3nica, si, para hacer mechas. WA 617158906","protected":false,"verified":false,"followers_count":207,"friends_count":521,"listed_count":7,"favourites_count":8251,"statuses_count":56913,"created_at":"Wed May 30 23:48:56 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447860091002163200\/qO4hGjSu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447860091002163200\/qO4hGjSu.jpeg","profile_background_tile":true,"profile_link_color":"F70000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628243313481674752\/7ChDtyep_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628243313481674752\/7ChDtyep_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/595089924\/1395583734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:20:23 +0000 2015","id":663602012227923968,"id_str":"663602012227923968","text":"https:\/\/t.co\/atvMbhnoPO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204086002,"id_str":"204086002","name":"Ordure Bizarre","screen_name":"OrdureBizarre_","location":null,"url":null,"description":"snapchat: ordurebizarre","protected":false,"verified":false,"followers_count":152534,"friends_count":52794,"listed_count":537,"favourites_count":83427,"statuses_count":24968,"created_at":"Sun Oct 17 22:03:05 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/773281738\/5c8311ff120512b48b0061fe9a5e8b5c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/773281738\/5c8311ff120512b48b0061fe9a5e8b5c.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599626427592351745\/1mE9lEF7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599626427592351745\/1mE9lEF7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/204086002\/1422241975","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":628,"favorite_count":457,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663602008205623298,"id_str":"663602008205623298","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","url":"https:\/\/t.co\/atvMbhnoPO","display_url":"pic.twitter.com\/atvMbhnoPO","expanded_url":"http:\/\/twitter.com\/OrdureBizarre_\/status\/663602012227923968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663602008205623298,"id_str":"663602008205623298","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","url":"https:\/\/t.co\/atvMbhnoPO","display_url":"pic.twitter.com\/atvMbhnoPO","expanded_url":"http:\/\/twitter.com\/OrdureBizarre_\/status\/663602012227923968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OrdureBizarre_","name":"Ordure Bizarre","id":204086002,"id_str":"204086002","indices":[3,18]}],"symbols":[],"media":[{"id":663602008205623298,"id_str":"663602008205623298","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","url":"https:\/\/t.co\/atvMbhnoPO","display_url":"pic.twitter.com\/atvMbhnoPO","expanded_url":"http:\/\/twitter.com\/OrdureBizarre_\/status\/663602012227923968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663602012227923968,"source_status_id_str":"663602012227923968","source_user_id":204086002,"source_user_id_str":"204086002"}]},"extended_entities":{"media":[{"id":663602008205623298,"id_str":"663602008205623298","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWWgrNVAAI8_i_.jpg","url":"https:\/\/t.co\/atvMbhnoPO","display_url":"pic.twitter.com\/atvMbhnoPO","expanded_url":"http:\/\/twitter.com\/OrdureBizarre_\/status\/663602012227923968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663602012227923968,"source_status_id_str":"663602012227923968","source_user_id":204086002,"source_user_id_str":"204086002"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680581120,"id_str":"663728244680581120","text":"RT @feverpitch0717: 151108 \ubbf8\ub2c8 \ud32c\ubbf8\ud305 #\uc138\ube10\ud2f4 #\ud638\uc2dc :: \uc139\uc2dc\uc2a4\ud0c0 \uad8c\uc21c\uc601(??)\nhttps:\/\/t.co\/LtSOpHHSfx\nhttps:\/\/t.co\/YoaoGeUb72\nhttps:\/\/t.co\/a4nHGVl00f https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3252411602,"id_str":"3252411602","name":"\ud2f0\ub9ac","screen_name":"17Chunsa","location":"Myanmar","url":null,"description":"Just unlucky potato Seventeen stan \u2267\u25bd\u2266\nUnloyal Doyoon & seungcheol stan #^.^#","protected":false,"verified":false,"followers_count":112,"friends_count":413,"listed_count":0,"favourites_count":1740,"statuses_count":7839,"created_at":"Mon Jun 22 06:46:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663606384433299456\/_AUgRpke_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663606384433299456\/_AUgRpke_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252411602\/1437453661","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:11:35 +0000 2015","id":663705493903314944,"id_str":"663705493903314944","text":"151108 \ubbf8\ub2c8 \ud32c\ubbf8\ud305 #\uc138\ube10\ud2f4 #\ud638\uc2dc :: \uc139\uc2dc\uc2a4\ud0c0 \uad8c\uc21c\uc601(??)\nhttps:\/\/t.co\/LtSOpHHSfx\nhttps:\/\/t.co\/YoaoGeUb72\nhttps:\/\/t.co\/a4nHGVl00f https:\/\/t.co\/bPPqSmGFCd","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3273296923,"id_str":"3273296923","name":"\uc6d0\uc6b0\uc758 \uc18c\ub9e4","screen_name":"feverpitch0717","location":null,"url":"http:\/\/yevayeva.blog.me\/","description":"\uc0ac\uc9c4\uc740 \uac00\ub054\uc529 \ucc0d\uc73c\ub7ec \uac00\uc694","protected":false,"verified":false,"followers_count":433,"friends_count":41,"listed_count":57,"favourites_count":0,"statuses_count":261,"created_at":"Thu Jul 09 20:06:18 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623592297112809472\/w7ssElL1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623592297112809472\/w7ssElL1.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663428950681489409\/StNvWTpj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663428950681489409\/StNvWTpj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3273296923\/1444374682","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":23,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[14,18]},{"text":"\ud638\uc2dc","indices":[19,22]}],"urls":[{"url":"https:\/\/t.co\/LtSOpHHSfx","expanded_url":"https:\/\/farm6.staticflickr.com\/5760\/22273601194_a3bed84346_o.jpg","display_url":"farm6.staticflickr.com\/5760\/222736011\u2026","indices":[39,62]},{"url":"https:\/\/t.co\/YoaoGeUb72","expanded_url":"https:\/\/farm1.staticflickr.com\/650\/22275185803_9db7d4a794_o.jpg","display_url":"farm1.staticflickr.com\/650\/2227518580\u2026","indices":[63,86]},{"url":"https:\/\/t.co\/a4nHGVl00f","expanded_url":"https:\/\/farm6.staticflickr.com\/5691\/22477971797_93d581d250_o.jpg","display_url":"farm6.staticflickr.com\/5691\/224779717\u2026","indices":[87,110]}],"user_mentions":[],"symbols":[],"media":[{"id":663705488232574976,"id_str":"663705488232574976","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663705488232574976,"id_str":"663705488232574976","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663705492942786560,"id_str":"663705492942786560","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oR5UkAAX_d_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oR5UkAAX_d_.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}},{"id":663705492963721216,"id_str":"663705492963721216","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oR-UAAANJ_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oR-UAAANJ_i.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc138\ube10\ud2f4","indices":[34,38]},{"text":"\ud638\uc2dc","indices":[39,42]}],"urls":[{"url":"https:\/\/t.co\/LtSOpHHSfx","expanded_url":"https:\/\/farm6.staticflickr.com\/5760\/22273601194_a3bed84346_o.jpg","display_url":"farm6.staticflickr.com\/5760\/222736011\u2026","indices":[59,82]},{"url":"https:\/\/t.co\/YoaoGeUb72","expanded_url":"https:\/\/farm1.staticflickr.com\/650\/22275185803_9db7d4a794_o.jpg","display_url":"farm1.staticflickr.com\/650\/2227518580\u2026","indices":[83,106]},{"url":"https:\/\/t.co\/a4nHGVl00f","expanded_url":"https:\/\/farm6.staticflickr.com\/5691\/22477971797_93d581d250_o.jpg","display_url":"farm6.staticflickr.com\/5691\/224779717\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"feverpitch0717","name":"\uc6d0\uc6b0\uc758 \uc18c\ub9e4","id":3273296923,"id_str":"3273296923","indices":[3,18]}],"symbols":[],"media":[{"id":663705488232574976,"id_str":"663705488232574976","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663705493903314944,"source_status_id_str":"663705493903314944","source_user_id":3273296923,"source_user_id_str":"3273296923"}]},"extended_entities":{"media":[{"id":663705488232574976,"id_str":"663705488232574976","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oAWUcAAvQkG.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663705493903314944,"source_status_id_str":"663705493903314944","source_user_id":3273296923,"source_user_id_str":"3273296923"},{"id":663705492942786560,"id_str":"663705492942786560","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oR5UkAAX_d_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oR5UkAAX_d_.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663705493903314944,"source_status_id_str":"663705493903314944","source_user_id":3273296923,"source_user_id_str":"3273296923"},{"id":663705492963721216,"id_str":"663705492963721216","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX0oR-UAAANJ_i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX0oR-UAAANJ_i.jpg","url":"https:\/\/t.co\/bPPqSmGFCd","display_url":"pic.twitter.com\/bPPqSmGFCd","expanded_url":"http:\/\/twitter.com\/feverpitch0717\/status\/663705493903314944\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663705493903314944,"source_status_id_str":"663705493903314944","source_user_id":3273296923,"source_user_id_str":"3273296923"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680716288,"id_str":"663728244680716288","text":"Cerveceros ayudarme :(","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722731402346496,"in_reply_to_status_id_str":"663722731402346496","in_reply_to_user_id":195390234,"in_reply_to_user_id_str":"195390234","in_reply_to_screen_name":"totitotiiii","user":{"id":195390234,"id_str":"195390234","name":"Cafol\u2704","screen_name":"totitotiiii","location":"M\u00e1laga, Andaluc\u00eda","url":null,"description":"Con mi cerveza y mi nintendo en un mundo paralelo haci\u00e9ndo fotos a pok\u00e9mons con Adam Gontier cantandome. Carolo para los amigos.","protected":false,"verified":false,"followers_count":3147,"friends_count":1328,"listed_count":79,"favourites_count":22544,"statuses_count":88121,"created_at":"Sun Sep 26 15:47:27 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000021528324\/bee980089d3ba671e3cfaad9ab7e4495.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000021528324\/bee980089d3ba671e3cfaad9ab7e4495.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661680109804519424\/IgIWuINA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661680109804519424\/IgIWuINA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195390234\/1445120319","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676411392,"id_str":"663728244676411392","text":"RT @tsumuko622: \u7121\u5370\u7acb\u2192\u9577\u7537\u3002\u5272\u3068\u30c9\u30e9\u30a4\nP4A\u7acb\u2192\u6b21\u7537\u3002\u3084\u305f\u3089\u984e\u30cd\u30bf\u3067\u30a4\u30b8\u3089\u308c\u308b\nP4G\u7acb\u2192\u4e09\u7537\u3002\u968f\u4e00\u306e\u30b3\u30df\u30e5\u529b\u306e\u6301\u3061\u4e3b\nP4V\u7acb\u2192\u56db\u7537\u3002\u9699\u3042\u3089\u3070\u30b3\u30f3\u30c8\u3057\u3088\u3046\u3068\u3059\u308b\u304a\u7b11\u3044\u82b8\u4eba\u4f53\u8cea\nP4U\u7acb\u2192\u4e94\u7537\u3002\u7279\u6280\u306f\u516d\u6cd5\u5168\u66f8\u306e\u6697\u8aa6\nP4D\u7acb\u2192\u672b\u3063\u5b50\u3002\u30c0\u30f3\u30b9\u304c\u5f97\u610f\u3060\u304c\u30ad\u30e1\u9854\u304c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384355901,"id_str":"384355901","name":"\u300a\u611a\u8005\u300b\u85cd","screen_name":"aizenran","location":"\u30ad\u30e3\u30d9\u30c4","url":"http:\/\/twpf.jp\/aizenran","description":"\u7be0\u5bae\u85cd\u3067\u3059 \u5fd8\u308c\u3063\u307d\u3044\u306e\u3067\u6328\u62f6\u5fd8\u308c\u591a\u3044\u3067\u3059\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093 \u3084\u308b\u6c17\u306e\u6b20\u7247\u3082\u306a\u3044\u30c8\u30ec\u30b9\u697d\u3057\u3044\u30de\u30f318\u2191 \u305d\u306e\u4ed6\u30c4\u30a4\u30d7\u30ed\u306b\u307e\u3068\u3081\u3066\u3042\u308a\u307e\u3059\u3002 \u25bc\u8db3\u7acb\u6cbc\u306f\u60f3\u50cf\u4ee5\u4e0a\u306b\u6df1\u304b\u3063\u305f P4G\u21d2\u4e8c\u5468\u76ee","protected":false,"verified":false,"followers_count":178,"friends_count":240,"listed_count":17,"favourites_count":8689,"statuses_count":100222,"created_at":"Mon Oct 03 14:53:57 +0000 2011","utc_offset":32400,"time_zone":"Osaka","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0F284A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/441568810751889409\/nF5vY2Ew.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/441568810751889409\/nF5vY2Ew.png","profile_background_tile":true,"profile_link_color":"990719","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685963109896193\/UHwaB_zT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685963109896193\/UHwaB_zT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384355901\/1447068568","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:42 +0000 2015","id":663726157620121600,"id_str":"663726157620121600","text":"\u7121\u5370\u7acb\u2192\u9577\u7537\u3002\u5272\u3068\u30c9\u30e9\u30a4\nP4A\u7acb\u2192\u6b21\u7537\u3002\u3084\u305f\u3089\u984e\u30cd\u30bf\u3067\u30a4\u30b8\u3089\u308c\u308b\nP4G\u7acb\u2192\u4e09\u7537\u3002\u968f\u4e00\u306e\u30b3\u30df\u30e5\u529b\u306e\u6301\u3061\u4e3b\nP4V\u7acb\u2192\u56db\u7537\u3002\u9699\u3042\u3089\u3070\u30b3\u30f3\u30c8\u3057\u3088\u3046\u3068\u3059\u308b\u304a\u7b11\u3044\u82b8\u4eba\u4f53\u8cea\nP4U\u7acb\u2192\u4e94\u7537\u3002\u7279\u6280\u306f\u516d\u6cd5\u5168\u66f8\u306e\u6697\u8aa6\nP4D\u7acb\u2192\u672b\u3063\u5b50\u3002\u30c0\u30f3\u30b9\u304c\u5f97\u610f\u3060\u304c\u30ad\u30e1\u9854\u304c\u30a6\u30b6\u3044\u3068\u3082\u3063\u3071\u3089\u306e\u8a71\u984c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1937961632,"id_str":"1937961632","name":"\u7d2c\u5b50","screen_name":"tsumuko622","location":"\u6210\u4eba\u6e08\u8150","url":"http:\/\/touch.pixiv.net\/member.php?id=1899325","description":"\u4e3b\u306b\u8db3\u7acb\u900f \u4ed6\u6d0b\u753b\u30fb\u4ff3\u512a\u7b49\u96d1\u591a Hot:\u5929\u60aa\/\u30e1\u30a4\u30ba\/\u677e http:\/\/twpf.jp\/tsumuko622","protected":false,"verified":false,"followers_count":386,"friends_count":351,"listed_count":13,"favourites_count":16196,"statuses_count":29593,"created_at":"Sat Oct 05 15:24:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661711691848089600\/ydQMoOq__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661711691848089600\/ydQMoOq__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1937961632\/1443973691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tsumuko622","name":"\u7d2c\u5b50","id":1937961632,"id_str":"1937961632","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244655419392,"id_str":"663728244655419392","text":"@BNW_YT_CP_ID \u0e2b\u0e30 \u0e22\u0e01\u0e40\u0e25\u0e34\u0e01\u0e44\u0e23 \u0e21\u0e36\u0e07\u0e44\u0e14\u0e49\u0e2b\u0e31\u0e27\u0e02\u0e49\u0e2d\u0e44\u0e23\u0e40\u0e19\u0e35\u0e48\u0e22","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727866836680706,"in_reply_to_status_id_str":"663727866836680706","in_reply_to_user_id":238190154,"in_reply_to_user_id_str":"238190154","in_reply_to_screen_name":"BNW_YT_CP_ID","user":{"id":260147879,"id_str":"260147879","name":"\u0e19\u0e38\u0e4a\u0e01\u0e01\u0e35\u0e49vs\u0e44\u0e1f\u0e19\u0e2d\u0e25 \uff65\u315c\uff65","screen_name":"NoONoOKiiE","location":"Maroon5\u2022VIP\u2022YG STAN\u2022","url":null,"description":"I need to make mistakes, just to learn who I am.","protected":false,"verified":false,"followers_count":228,"friends_count":349,"listed_count":0,"favourites_count":2643,"statuses_count":57431,"created_at":"Thu Mar 03 08:46:43 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0FF3E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653977724248129536\/uH5Aeebg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653977724248129536\/uH5Aeebg.jpg","profile_background_tile":true,"profile_link_color":"660033","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"85E6AF","profile_text_color":"BD80D9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657767363119452161\/6VxtrF4U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657767363119452161\/6VxtrF4U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/260147879\/1446489462","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BNW_YT_CP_ID","name":"\u0e42\u0e1a\u0e01\u0e35\u0e49\u0e2d\u0e22\u0e32\u0e01\u0e21\u0e35\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e38\u0e02","id":238190154,"id_str":"238190154","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080119657"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676390912,"id_str":"663728244676390912","text":"RT @3go_1126_riz: \u6700\u8fd1\u3001\u30d5\u30a9\u30ed\u30ef\u30fc\u6570\u304c\u591a\u30448\u53f7\u8eca\u3055\u3093\u3092\u57f7\u62d7\u306b\u72d9\u3063\u305f\u308a\u3001\n\n8\u53f7\u8eca\u3092\u88c5\u3063\u305f\u69cb\u308f\u308c\u305f\u3044\u3060\u3051\u306e\u6109\u5feb\u72af\u7684\u304c\u5897\u3048\u3066\u3044\u307e\u3059\u3002\n\n\u3054\u4e57\u8eca\u3059\u308b\u306a\u3089\u3001\u4ef2\u826f\u304f\u3057\u3088\u3046\u3002\n\nB&T\u301c\nTL\u5e83\u544a\u6a5f\u69cb\u3067\u3059\u3002 https:\/\/t.co\/cdhohjtZIY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3032665430,"id_str":"3032665430","name":"\u307e\u30fc\u3061\u3083\u3093","screen_name":"MabeYu3","location":"\u30ea\u30e7\u30a6\u30ac\u3055\u3093\uff18\u53f7\u8eca\uff06\u5927\u6a39\u30db\u30ea\u30c3\u30af","url":null,"description":"94-95line\uff65\u5927\u5b66\u751f \u8d85\u7279\u6025\/PrizmaX\/DISH\/\/ \/w-inds.\/Lead\/\u30b8\u30e3\u30cb\u30fc\u30ba\/\uff24\uff12\/\u30ea\u30e7\u30a6\u30ac\u3055\u3093\u30fb\u5927\u6a39\u541b\uff65\u3042\u304f\u306b\u3083\u3093\u63a8\u3057\uff01\uff01\u203b\u3044\u308d\u3093\u306a\u4eba\u306b\u6cb8\u304d\u307e\u3059\uff01\u3086\u308b\u30aa\u30bf\uff01\u63a8\u3057\u88ab\u308a\u3055\u3093\u5927\u6b53\u8fce\uff01\u203b\u7121\u8a00\u3055\u3093\u306f\u30d5\u30a9\u30ed\u30d0\u2715\u3001\u76f8\u4e92\u5e0c\u671b\u306f\u4e00\u8a00\u4e0b\u3055\u3044\uff01\n\nnext\u2192\u8d85\u7279\u6025\u4ee3\u3005\u67282days\u30fb\u30d7\u30ea\u30ba\u30ef\u30f3\u30de\u30f3","protected":false,"verified":false,"followers_count":203,"friends_count":266,"listed_count":19,"favourites_count":3641,"statuses_count":14524,"created_at":"Fri Feb 20 11:16:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660642407608750080\/h8PvvdeD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660642407608750080\/h8PvvdeD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3032665430\/1445612599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:07 +0000 2015","id":663728026731982848,"id_str":"663728026731982848","text":"\u6700\u8fd1\u3001\u30d5\u30a9\u30ed\u30ef\u30fc\u6570\u304c\u591a\u30448\u53f7\u8eca\u3055\u3093\u3092\u57f7\u62d7\u306b\u72d9\u3063\u305f\u308a\u3001\n\n8\u53f7\u8eca\u3092\u88c5\u3063\u305f\u69cb\u308f\u308c\u305f\u3044\u3060\u3051\u306e\u6109\u5feb\u72af\u7684\u304c\u5897\u3048\u3066\u3044\u307e\u3059\u3002\n\n\u3054\u4e57\u8eca\u3059\u308b\u306a\u3089\u3001\u4ef2\u826f\u304f\u3057\u3088\u3046\u3002\n\nB&T\u301c\nTL\u5e83\u544a\u6a5f\u69cb\u3067\u3059\u3002 https:\/\/t.co\/cdhohjtZIY","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3351787874,"id_str":"3351787874","name":"\u3042\/\u3059\/\u53c2","screen_name":"3go_1126_riz","location":null,"url":"http:\/\/twpf.jp\/3go_1126_riz","description":"\u3069\u3093\u306a\u4eba\u304b\u306f\u30c4\u30a4\u30d7\u30ed\u3092\u3002\u30a2\u30a4\u30b3\u30f3\u306f\u304f\u3089\u3061\u3083\u3093\u5148\u751f\u2661","protected":false,"verified":false,"followers_count":274,"friends_count":303,"listed_count":32,"favourites_count":4242,"statuses_count":2227,"created_at":"Wed Aug 26 19:57:55 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661180148402667520\/lLLNDvZx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661180148402667520\/lLLNDvZx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3351787874\/1444118920","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728020574748673,"id_str":"663728020574748673","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","url":"https:\/\/t.co\/cdhohjtZIY","display_url":"pic.twitter.com\/cdhohjtZIY","expanded_url":"http:\/\/twitter.com\/3go_1126_riz\/status\/663728026731982848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728020574748673,"id_str":"663728020574748673","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","url":"https:\/\/t.co\/cdhohjtZIY","display_url":"pic.twitter.com\/cdhohjtZIY","expanded_url":"http:\/\/twitter.com\/3go_1126_riz\/status\/663728026731982848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"3go_1126_riz","name":"\u3042\/\u3059\/\u53c2","id":3351787874,"id_str":"3351787874","indices":[3,16]}],"symbols":[],"media":[{"id":663728020574748673,"id_str":"663728020574748673","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","url":"https:\/\/t.co\/cdhohjtZIY","display_url":"pic.twitter.com\/cdhohjtZIY","expanded_url":"http:\/\/twitter.com\/3go_1126_riz\/status\/663728026731982848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663728026731982848,"source_status_id_str":"663728026731982848","source_user_id":3351787874,"source_user_id_str":"3351787874"}]},"extended_entities":{"media":[{"id":663728020574748673,"id_str":"663728020574748673","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHj3UwAEGeSd.jpg","url":"https:\/\/t.co\/cdhohjtZIY","display_url":"pic.twitter.com\/cdhohjtZIY","expanded_url":"http:\/\/twitter.com\/3go_1126_riz\/status\/663728026731982848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663728026731982848,"source_status_id_str":"663728026731982848","source_user_id":3351787874,"source_user_id_str":"3351787874"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663918593,"id_str":"663728244663918593","text":"RT @Mada__Mhmud: \u0644\u0645\u0627 \u062a\u0633\u0645\u0639 \u0625\u0633\u0645 \u0634\u062e\u0635 \u0643\u0646\u062a \u0628\u062a\u062d\u0628\u0647 \u0648\u0645\u0627\u062a\u062d\u0633\u0634 \u0628\u0646\u0641\u0633 \u0625\u062d\u0633\u0627\u0633 \u0644\u0645\u0627 \u0643\u0646\u062a \u062a\u0633\u0645\u0639\u0647 \u0632\u0645\u0627\u0646 \u0627\u0639\u0631\u0641 \u0623\u0646\u0643 \u062a\u062e\u0637\u064a\u062a \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0634\u062e\u0635 \u062f\u0629 \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1274754073,"id_str":"1274754073","name":"Ahmed Gheith","screen_name":"AhmedFouadGhith","location":"AzZagazig & Alex & Matroh","url":null,"description":"\u200f\u200f\u200f\u0643\u064f\u0646 \u0628\u0633\u064a\u0637\u0627 .. \u0641\u064a \u0639\u0627\u0644\u0645 \u0627\u0645\u062a\u0644\u0623 \u062a\u0639\u0642\u064a\u062f\u0627 .. \u0648\u0646\u0633\u062e\u0627 \u0645\u0643\u0631\u0631\u0629 .. !!","protected":false,"verified":false,"followers_count":4174,"friends_count":3640,"listed_count":3,"favourites_count":526,"statuses_count":15275,"created_at":"Sun Mar 17 11:32:26 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606514917525626880\/qGfW-VHj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606514917525626880\/qGfW-VHj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1274754073\/1443803851","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 15:16:48 +0000 2015","id":661562677437857792,"id_str":"661562677437857792","text":"\u0644\u0645\u0627 \u062a\u0633\u0645\u0639 \u0625\u0633\u0645 \u0634\u062e\u0635 \u0643\u0646\u062a \u0628\u062a\u062d\u0628\u0647 \u0648\u0645\u0627\u062a\u062d\u0633\u0634 \u0628\u0646\u0641\u0633 \u0625\u062d\u0633\u0627\u0633 \u0644\u0645\u0627 \u0643\u0646\u062a \u062a\u0633\u0645\u0639\u0647 \u0632\u0645\u0627\u0646 \u0627\u0639\u0631\u0641 \u0623\u0646\u0643 \u062a\u062e\u0637\u064a\u062a \u0645\u0631\u062d\u0644\u0629 \u0627\u0644\u0634\u062e\u0635 \u062f\u0629 \ud83d\udc4c\ud83d\udc4c\ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":463926035,"id_str":"463926035","name":"\u270b\u0627\u0644\u0644\u0647\u0645 \u0647\u062c\u0631\u0629\u270b","screen_name":"Mada__Mhmud","location":"egypt","url":"https:\/\/www.facebook.com\/ahmed.mhmud.9","description":"\u2744.. a7MeD .. KaDaSH..\u2744\u30c4\u30c4\n\u2744\u0623\u0623\u0644\u0640\u0623\u0647\u0640\u0640\u0640\u0644\u0640\u0640\u0649 \u0639\u0640\u0640\u0640\u0634\u0640\u0640\u0640\u0642 \u2744\n\u20aa\u2665 Adele \u2665 AmR DiaB\u2665,, HamKkiii, \u2665\nMOunir\u2665\u2665Messi\u2665\u2665\n\n\u200f\u0639\u0644\u0627\u0642\u0627\u062a \u0633\u064e\u0637\u062d\u064a\u0629 \u060c \u0644\u062d\u064a\u0627\u0629 \u0635\u062d\u064a\u0629..!","protected":false,"verified":false,"followers_count":1385,"friends_count":899,"listed_count":1,"favourites_count":1548,"statuses_count":20024,"created_at":"Sat Jan 14 16:51:13 +0000 2012","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/651223592550555648\/S3fiinFn.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/651223592550555648\/S3fiinFn.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662775941698093057\/TG3uMDOh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662775941698093057\/TG3uMDOh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/463926035\/1446300480","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mada__Mhmud","name":"\u270b\u0627\u0644\u0644\u0647\u0645 \u0647\u062c\u0631\u0629\u270b","id":463926035,"id_str":"463926035","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244668153857,"id_str":"663728244668153857","text":"RT TorelliRealty 5 Kitchen Design Trends That Buyers Hate: https:\/\/t.co\/1MyOeIivh8\n#homeimprovement https:\/\/t.co\/Mvkxb8KmI0","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3674893221,"id_str":"3674893221","name":"Thomas Seltzer","screen_name":"thomasrseltzer","location":"Houston, TX","url":"https:\/\/www.youtube.com\/channel\/UCGOjFQklBRhVVzLCAmVH0KQ\/","description":"I'm a combination techy\/craftsy. I spend work hours deep in biz code, off hours working on\/around our home. I love renovating old things. And the ocean.","protected":false,"verified":false,"followers_count":279,"friends_count":66,"listed_count":302,"favourites_count":0,"statuses_count":25485,"created_at":"Wed Sep 16 12:58:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644135692977750016\/mC69kDIu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644135692977750016\/mC69kDIu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3674893221\/1442408853","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"homeimprovement","indices":[83,99]}],"urls":[{"url":"https:\/\/t.co\/1MyOeIivh8","expanded_url":"http:\/\/bit.ly\/1kFVmWn","display_url":"bit.ly\/1kFVmWn","indices":[59,82]},{"url":"https:\/\/t.co\/Mvkxb8KmI0","expanded_url":"http:\/\/fb.me\/3zdipZMJf","display_url":"fb.me\/3zdipZMJf","indices":[100,123]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119660"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672217088,"id_str":"663728244672217088","text":"@rentixyonn893 \u304c\u307e\u3093\u3088\u304c\u307e\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728114858508290,"in_reply_to_status_id_str":"663728114858508290","in_reply_to_user_id":2886916892,"in_reply_to_user_id_str":"2886916892","in_reply_to_screen_name":"rentixyonn893","user":{"id":3241973426,"id_str":"3241973426","name":"\u574a","screen_name":"lllllIIIllIIIII","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":187,"friends_count":176,"listed_count":3,"favourites_count":573,"statuses_count":4429,"created_at":"Thu Jun 11 05:12:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662818746277302273\/yLaxivtU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662818746277302273\/yLaxivtU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241973426\/1446863642","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rentixyonn893","name":"\u306b\u3083\u3093\u3071\u3059\u306e\u2020\u95c7\u2020","id":2886916892,"id_str":"2886916892","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676399105,"id_str":"663728244676399105","text":"RT @Diarypic_: I am so in love with you.\nPlease, don't go.\n\n\u0e09\u0e31\u0e19\u0e23\u0e31\u0e01\u0e04\u0e38\u0e13\u0e21\u0e32\u0e01\u0e19\u0e30\n\u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e08\u0e32\u0e01\u0e09\u0e31\u0e19\u0e40\u0e25\u0e22. https:\/\/t.co\/UIwPDCnDJV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2284741908,"id_str":"2284741908","name":"CH.","screen_name":"Ch_xhomphat","location":"\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23, \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":null,"protected":false,"verified":false,"followers_count":409,"friends_count":299,"listed_count":0,"favourites_count":9700,"statuses_count":52875,"created_at":"Fri Jan 10 08:14:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFBE7D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/557897030496817152\/EzMB7gQs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/557897030496817152\/EzMB7gQs.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663664816171540481\/yPId7_vO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663664816171540481\/yPId7_vO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2284741908\/1446655088","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 12:18:29 +0000 2015","id":661517803367763968,"id_str":"661517803367763968","text":"I am so in love with you.\nPlease, don't go.\n\n\u0e09\u0e31\u0e19\u0e23\u0e31\u0e01\u0e04\u0e38\u0e13\u0e21\u0e32\u0e01\u0e19\u0e30\n\u0e2d\u0e22\u0e48\u0e32\u0e44\u0e1b\u0e08\u0e32\u0e01\u0e09\u0e31\u0e19\u0e40\u0e25\u0e22. https:\/\/t.co\/UIwPDCnDJV","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1583296682,"id_str":"1583296682","name":"Picture Diary\u2764\ufe0e","screen_name":"Diarypic_","location":"all credit : we heart it ","url":null,"description":"Twitter is diary and my diary has pictures to convey our story. #dek59 #\u0e22\u0e49\u0e2d\u0e19\u0e17\u0e35\u0e48Fav\u2661","protected":false,"verified":false,"followers_count":78267,"friends_count":17,"listed_count":48,"favourites_count":910,"statuses_count":1564,"created_at":"Wed Jul 10 14:49:16 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000173959650\/WFbGPv3z.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000173959650\/WFbGPv3z.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651700171932209153\/9h8EhcFF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651700171932209153\/9h8EhcFF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1583296682\/1443343575","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5746,"favorite_count":1061,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661517780529745920,"id_str":"661517780529745920","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661517780529745920,"id_str":"661517780529745920","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}}},{"id":661517780726865920,"id_str":"661517780726865920","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qzUYAAJibq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qzUYAAJibq.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":331,"resize":"fit"},"large":{"w":500,"h":487,"resize":"fit"}}},{"id":661517781012054016,"id_str":"661517781012054016","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6r3UAAA1Cn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6r3UAAA1Cn1.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":499,"resize":"fit"},"medium":{"w":499,"h":499,"resize":"fit"}}},{"id":661517781498593281,"id_str":"661517781498593281","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6trUAAEMMVM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6trUAAEMMVM.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Diarypic_","name":"Picture Diary\u2764\ufe0e","id":1583296682,"id_str":"1583296682","indices":[3,13]}],"symbols":[],"media":[{"id":661517780529745920,"id_str":"661517780529745920","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661517803367763968,"source_status_id_str":"661517803367763968","source_user_id":1583296682,"source_user_id_str":"1583296682"}]},"extended_entities":{"media":[{"id":661517780529745920,"id_str":"661517780529745920","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qEUkAA0MN9.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661517803367763968,"source_status_id_str":"661517803367763968","source_user_id":1583296682,"source_user_id_str":"1583296682"},{"id":661517780726865920,"id_str":"661517780726865920","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6qzUYAAJibq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6qzUYAAJibq.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":487,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":331,"resize":"fit"},"large":{"w":500,"h":487,"resize":"fit"}},"source_status_id":661517803367763968,"source_status_id_str":"661517803367763968","source_user_id":1583296682,"source_user_id_str":"1583296682"},{"id":661517781012054016,"id_str":"661517781012054016","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6r3UAAA1Cn1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6r3UAAA1Cn1.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":499,"h":499,"resize":"fit"},"medium":{"w":499,"h":499,"resize":"fit"}},"source_status_id":661517803367763968,"source_status_id_str":"661517803367763968","source_user_id":1583296682,"source_user_id_str":"1583296682"},{"id":661517781498593281,"id_str":"661517781498593281","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CS4u6trUAAEMMVM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS4u6trUAAEMMVM.jpg","url":"https:\/\/t.co\/UIwPDCnDJV","display_url":"pic.twitter.com\/UIwPDCnDJV","expanded_url":"http:\/\/twitter.com\/Diarypic_\/status\/661517803367763968\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":667,"resize":"fit"},"medium":{"w":500,"h":667,"resize":"fit"}},"source_status_id":661517803367763968,"source_status_id_str":"661517803367763968","source_user_id":1583296682,"source_user_id_str":"1583296682"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676542464,"id_str":"663728244676542464","text":"@_brumarqs eu usaria todo dia, de segunda a domingo sem parar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727985384677376,"in_reply_to_status_id_str":"663727985384677376","in_reply_to_user_id":1031109085,"in_reply_to_user_id_str":"1031109085","in_reply_to_screen_name":"_brumarqs","user":{"id":330061477,"id_str":"330061477","name":"nathalia","screen_name":"nathaliaascall","location":null,"url":null,"description":"Que das minhas dores, brotem flores.","protected":false,"verified":false,"followers_count":421,"friends_count":185,"listed_count":0,"favourites_count":4217,"statuses_count":19919,"created_at":"Wed Jul 06 01:36:19 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD3E88","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617025605100511232\/CmS93Wdu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617025605100511232\/CmS93Wdu.jpg","profile_background_tile":true,"profile_link_color":"BB1E6D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663515397229027328\/FrUjHyDa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663515397229027328\/FrUjHyDa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330061477\/1446778536","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"188fb339583b32ce","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/188fb339583b32ce.json","place_type":"city","name":"Esteio","full_name":"Esteio, Rio Grande do Sul","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-51.231482,-29.872066],[-51.231482,-29.829606],[-51.101749,-29.829606],[-51.101749,-29.872066]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_brumarqs","name":"Bruna Marques","id":1031109085,"id_str":"1031109085","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680556544,"id_str":"663728244680556544","text":"RT @_JYrock: @1DC_Kwonara91 girls usually like flowers. Jangan ngambek... https:\/\/t.co\/6SKiepWX66","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302120975,"id_str":"2302120975","name":"\uad8c\ub098\ub77c","screen_name":"1DC_Kwonara91","location":"Fantagio and Pledis Ent","url":"http:\/\/hellovenus.co.kr","description":"Kwon Nara 130391 || Hello venus\u2606 || 1DAYClass_RP #DramaDClass ||","protected":false,"verified":false,"followers_count":1558,"friends_count":1896,"listed_count":3,"favourites_count":69,"statuses_count":6354,"created_at":"Mon Jan 20 22:37:01 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663619071259217920\/_yxaFUoB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663619071259217920\/_yxaFUoB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302120975\/1446910556","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:20 +0000 2015","id":663728080221966336,"id_str":"663728080221966336","text":"@1DC_Kwonara91 girls usually like flowers. Jangan ngambek... https:\/\/t.co\/6SKiepWX66","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2302120975,"in_reply_to_user_id_str":"2302120975","in_reply_to_screen_name":"1DC_Kwonara91","user":{"id":2647483399,"id_str":"2647483399","name":"Jung Joonyoung","screen_name":"_JYrock","location":"[rp]","url":"https:\/\/twitter.com\/official_JYrock","description":"if you want to love me, then darling don't refrain..","protected":false,"verified":false,"followers_count":562,"friends_count":337,"listed_count":3,"favourites_count":7,"statuses_count":9233,"created_at":"Tue Jul 15 11:44:57 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590479790181748736\/8EyLpXcS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590479790181748736\/8EyLpXcS.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662253540325261313\/LHU_4pnX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662253540325261313\/LHU_4pnX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2647483399\/1446728519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"1DC_Kwonara91","name":"\uad8c\ub098\ub77c","id":2302120975,"id_str":"2302120975","indices":[0,14]}],"symbols":[],"media":[{"id":663728071426465792,"id_str":"663728071426465792","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","url":"https:\/\/t.co\/6SKiepWX66","display_url":"pic.twitter.com\/6SKiepWX66","expanded_url":"http:\/\/twitter.com\/_JYrock\/status\/663728080221966336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":493,"h":640,"resize":"fit"},"medium":{"w":493,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728071426465792,"id_str":"663728071426465792","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","url":"https:\/\/t.co\/6SKiepWX66","display_url":"pic.twitter.com\/6SKiepWX66","expanded_url":"http:\/\/twitter.com\/_JYrock\/status\/663728080221966336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":493,"h":640,"resize":"fit"},"medium":{"w":493,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_JYrock","name":"Jung Joonyoung","id":2647483399,"id_str":"2647483399","indices":[3,11]},{"screen_name":"1DC_Kwonara91","name":"\uad8c\ub098\ub77c","id":2302120975,"id_str":"2302120975","indices":[13,27]}],"symbols":[],"media":[{"id":663728071426465792,"id_str":"663728071426465792","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","url":"https:\/\/t.co\/6SKiepWX66","display_url":"pic.twitter.com\/6SKiepWX66","expanded_url":"http:\/\/twitter.com\/_JYrock\/status\/663728080221966336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":493,"h":640,"resize":"fit"},"medium":{"w":493,"h":640,"resize":"fit"}},"source_status_id":663728080221966336,"source_status_id_str":"663728080221966336","source_user_id":2647483399,"source_user_id_str":"2647483399"}]},"extended_entities":{"media":[{"id":663728071426465792,"id_str":"663728071426465792","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJKhTUYAAtlYv.jpg","url":"https:\/\/t.co\/6SKiepWX66","display_url":"pic.twitter.com\/6SKiepWX66","expanded_url":"http:\/\/twitter.com\/_JYrock\/status\/663728080221966336\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":441,"resize":"fit"},"large":{"w":493,"h":640,"resize":"fit"},"medium":{"w":493,"h":640,"resize":"fit"}},"source_status_id":663728080221966336,"source_status_id_str":"663728080221966336","source_user_id":2647483399,"source_user_id_str":"2647483399"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684816384,"id_str":"663728244684816384","text":"RT @HugotWords: Life is too short for bv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":364737614,"id_str":"364737614","name":"Bae","screen_name":"Heybeaby","location":"IG: beadelapenax","url":null,"description":"51% angel \u2022 pray, love & believe \u2022 blessed since '98 \u2022 c'est la vie \u2661 101515","protected":false,"verified":false,"followers_count":194,"friends_count":136,"listed_count":2,"favourites_count":12195,"statuses_count":17255,"created_at":"Tue Aug 30 07:37:19 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB2668","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657417548460261377\/BttxA4VJ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657417548460261377\/BttxA4VJ.jpg","profile_background_tile":true,"profile_link_color":"ED4C8F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B4E2BE","profile_text_color":"F3E9B6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663357377157029888\/nIVu9GMZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663357377157029888\/nIVu9GMZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364737614\/1420728658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:11 +0000 2015","id":663724517596921857,"id_str":"663724517596921857","text":"Life is too short for bv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1457071694,"id_str":"1457071694","name":"Hugot Words","screen_name":"HugotWords","location":"Philippines","url":"http:\/\/facebook.com\/HugotWords","description":"Mga emosyong nagiging salita, kadalasan ay mula pa sa ilalim ng lupa. \u2709\ufe0f \u007bhugotwords@gmail.com\u007d","protected":false,"verified":false,"followers_count":492605,"friends_count":21,"listed_count":224,"favourites_count":317,"statuses_count":20037,"created_at":"Sat May 25 14:03:51 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A4A4A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456465917682003969\/13rs8ivp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456465917682003969\/13rs8ivp.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603602229522599936\/NHrnDoJr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603602229522599936\/NHrnDoJr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1457071694\/1441503039","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":121,"favorite_count":99,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HugotWords","name":"Hugot Words","id":1457071694,"id_str":"1457071694","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663808000,"id_str":"663728244663808000","text":"Lessons from the road: Tips from a 24-year-old who's travelled to 74 countries - https:\/\/t.co\/Tn7VRBZVKX","source":"\u003ca href=\"http:\/\/klout.com\" rel=\"nofollow\"\u003ePost with Klout\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3541532718,"id_str":"3541532718","name":"Primal Sanctuary","screen_name":"primalsanctuary","location":"Cypress, Texas","url":"http:\/\/www.primalsanctuary.com","description":"Adventure travel, yoga, paleo, crossfit, mindfulness, nature, sleep, running, hiking, gratitude, meditation, surfing, UltrAspire, Vargo, OCR, community, GoRuck","protected":false,"verified":false,"followers_count":1285,"friends_count":2542,"listed_count":40,"favourites_count":10,"statuses_count":1255,"created_at":"Sat Sep 12 20:29:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642799048651464704\/0gpSjhJT_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642799048651464704\/0gpSjhJT_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3541532718\/1442092601","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Tn7VRBZVKX","expanded_url":"http:\/\/klou.tt\/179cc4r0jc8z8","display_url":"klou.tt\/179cc4r0jc8z8","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663844864,"id_str":"663728244663844864","text":"RT @DustinJBlake: Dear teachers, if most kids fail the test its your fault not ours.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2441775103,"id_str":"2441775103","name":"\u300a\u2661\u300b","screen_name":"MeeksAudrey","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":159,"friends_count":526,"listed_count":1,"favourites_count":558,"statuses_count":287,"created_at":"Sun Apr 13 14:10:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649237475374698496\/R7wl7pB1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649237475374698496\/R7wl7pB1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2441775103\/1443625250","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:49:40 +0000 2015","id":663715076990304257,"id_str":"663715076990304257","text":"Dear teachers, if most kids fail the test its your fault not ours.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2722492747,"id_str":"2722492747","name":"Ima Crayon","screen_name":"DustinJBlake","location":"fiore","url":"http:\/\/instagram.com\/dustinjamesblake","description":"what's up sluts, guess who just got out of prison","protected":false,"verified":false,"followers_count":449,"friends_count":38,"listed_count":0,"favourites_count":339,"statuses_count":108,"created_at":"Sun Aug 10 20:59:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663103058381934593\/JDnpHDyp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663103058381934593\/JDnpHDyp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2722492747\/1443483706","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DustinJBlake","name":"Ima Crayon","id":2722492747,"id_str":"2722492747","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659585024,"id_str":"663728244659585024","text":"RT @123itsmeMary: Me af https:\/\/t.co\/XIotwaumXa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3756547163,"id_str":"3756547163","name":"MOMO","screen_name":"japanesegirl992","location":null,"url":null,"description":"SC-MOMO99917 \nTumblr-MOMO99917 \u0646\u0635 \u0644\u064a","protected":false,"verified":false,"followers_count":144,"friends_count":141,"listed_count":0,"favourites_count":186,"statuses_count":728,"created_at":"Thu Sep 24 04:40:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658117345844535297\/KMAlAe8b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658117345844535297\/KMAlAe8b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3756547163\/1446998737","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:03 +0000 2015","id":663727507762487296,"id_str":"663727507762487296","text":"Me af https:\/\/t.co\/XIotwaumXa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":28725944,"id_str":"28725944","name":"MVH","screen_name":"123itsmeMary","location":"843\/704","url":null,"description":"flawlessly flawed. \n#JCSU19 #ILoveMyHBCU","protected":false,"verified":false,"followers_count":835,"friends_count":756,"listed_count":2,"favourites_count":2258,"statuses_count":25698,"created_at":"Sat Apr 04 03:05:08 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654764499816153092\/l9Fe94nn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654764499816153092\/l9Fe94nn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/28725944\/1438872147","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"512a8a4a4c4b4be0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/512a8a4a4c4b4be0.json","place_type":"city","name":"Charlotte","full_name":"Charlotte, NC","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-81.046876,35.001706],[-81.046876,35.416412],[-80.646695,35.416412],[-80.646695,35.001706]]]},"attributes":{}},"contributors":null,"quoted_status_id":663147454255095808,"quoted_status_id_str":"663147454255095808","quoted_status":{"created_at":"Sun Nov 08 00:14:08 +0000 2015","id":663147454255095808,"id_str":"663147454255095808","text":"Females will have a whole dream about bouncing on your dick but won't say shit to you in person \ud83d\udc80","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068923116,"id_str":"3068923116","name":"Nov.19\u2728","screen_name":"GAY4_RIHANNA","location":"snapchat : nus.ki","url":null,"description":"Sean \u2764\ufe0f (... it's only Twitter ...)","protected":false,"verified":false,"followers_count":26153,"friends_count":19526,"listed_count":29,"favourites_count":4140,"statuses_count":35338,"created_at":"Mon Mar 09 02:40:51 +0000 2015","utc_offset":-21600,"time_zone":"America\/Chicago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661923483568377856\/4J0ShToA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661923483568377856\/4J0ShToA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068923116\/1446905013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XIotwaumXa","expanded_url":"https:\/\/twitter.com\/GAY4_RIHANNA\/status\/663147454255095808","display_url":"twitter.com\/GAY4_RIHANNA\/s\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XIotwaumXa","expanded_url":"https:\/\/twitter.com\/GAY4_RIHANNA\/status\/663147454255095808","display_url":"twitter.com\/GAY4_RIHANNA\/s\u2026","indices":[25,48]}],"user_mentions":[{"screen_name":"123itsmeMary","name":"MVH","id":28725944,"id_str":"28725944","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680560640,"id_str":"663728244680560640","text":"RT @mhr_0402: \u3075\u3068\u3082\u3082\u3067\u3059\uff01\uff01\uff01\ud83d\udc30\ud83c\udf1f\ud83d\udc97\n\n#tl\u306b\u592a\u3082\u3082\u3092\u6652\u3057\u3066\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u306b\u6d3b\u529b\u3092\u4e0e\u3048\u3088\u3046 https:\/\/t.co\/LXS7q1MImx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316464198,"id_str":"3316464198","name":"\u5fa1\u52c5\u4f7f \u307b\u305f\u308b\u306f\u64ae\u308a\u305f\u3044","screen_name":"loveflowerlight","location":null,"url":null,"description":"\u901a\u79f0\u307b\u305f\u308b\u3093 \u307f\u30fc\u3061\u3083\u3093 \uff08\u4e0a\u306e\u540d\u524d\u306f\u307f\u3060\u3044\uff09\u30a2\u30a4\u30b3\u30f3\u306f\u5927\u5929\u4f7f\u307e\u3072\u308b\u3055\u3093\uff08@mhr_0402\uff09\u304b\u3089\u3044\u305f\u3060\u304d\u307e\u3057\u305f \u7d61\u307f\u591a\u3081\u306ejk2\u3010\u3077\u308b\u3074\u3059\u56e3\u3011\u3010\u3082\u306a\u304b\u56e3\u3011\u3010\u6c37\u6708\u65cf\u3011\u3010\u6c37\u9727\u4f1a\u3011\u3010\u5929\u30ce\u4e00\u65cf\u3011","protected":false,"verified":false,"followers_count":1444,"friends_count":508,"listed_count":47,"favourites_count":23743,"statuses_count":9611,"created_at":"Sun Aug 16 04:54:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662282742441218048\/4DyA9N93_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662282742441218048\/4DyA9N93_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3316464198\/1439701110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:05 +0000 2015","id":663727764395024384,"id_str":"663727764395024384","text":"\u3075\u3068\u3082\u3082\u3067\u3059\uff01\uff01\uff01\ud83d\udc30\ud83c\udf1f\ud83d\udc97\n\n#tl\u306b\u592a\u3082\u3082\u3092\u6652\u3057\u3066\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u306b\u6d3b\u529b\u3092\u4e0e\u3048\u3088\u3046 https:\/\/t.co\/LXS7q1MImx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3233481684,"id_str":"3233481684","name":"\u307e\u3072\u677e\u306f23TFT","screen_name":"mhr_0402","location":"\u5fc3\u306e\u4e2d\u306e\u30a6\u30c7\u30de\u30a8S","url":null,"description":"\u9031\u672b\u3053\u3059\u3077\u308c\u3044\u3084\u30fc\uff01\u2661\u9234\u539f\u5bb6\u304a\u3061\u307f\u308b\u4e09\u99ac\u9e7f\u2661\u2729\u307e\u3086\u3075\u3041\u3080\u3068\u305b\u3093\u3061\u3083\u3093\u304c\u597d\u304d\u3002\u304a\u5199\u771f\u3084\u304a\u4ed5\u4e8b\u306a\u3069\u2192\u2729\uff62ypay0402@yahoo.co.jp\uff63","protected":false,"verified":false,"followers_count":3258,"friends_count":170,"listed_count":156,"favourites_count":6937,"statuses_count":14900,"created_at":"Tue Jun 02 13:16:48 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663186421163819008\/Q7QVmxNb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663186421163819008\/Q7QVmxNb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3233481684\/1446903371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":9,"entities":{"hashtags":[{"text":"tl\u306b\u592a\u3082\u3082\u3092\u6652\u3057\u3066\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u306b\u6d3b\u529b\u3092\u4e0e\u3048\u3088\u3046","indices":[14,39]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727752101531648,"id_str":"663727752101531648","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727752101531648,"id_str":"663727752101531648","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663727752135086080,"id_str":"663727752135086080","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI372UkAAH-Q2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI372UkAAH-Q2.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"tl\u306b\u592a\u3082\u3082\u3092\u6652\u3057\u3066\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u306b\u6d3b\u529b\u3092\u4e0e\u3048\u3088\u3046","indices":[28,53]}],"urls":[],"user_mentions":[{"screen_name":"mhr_0402","name":"\u307e\u3072\u677e\u306f23TFT","id":3233481684,"id_str":"3233481684","indices":[3,12]}],"symbols":[],"media":[{"id":663727752101531648,"id_str":"663727752101531648","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727764395024384,"source_status_id_str":"663727764395024384","source_user_id":3233481684,"source_user_id_str":"3233481684"}]},"extended_entities":{"media":[{"id":663727752101531648,"id_str":"663727752101531648","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI37uUkAAVlh-.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663727764395024384,"source_status_id_str":"663727764395024384","source_user_id":3233481684,"source_user_id_str":"3233481684"},{"id":663727752135086080,"id_str":"663727752135086080","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI372UkAAH-Q2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI372UkAAH-Q2.jpg","url":"https:\/\/t.co\/LXS7q1MImx","display_url":"pic.twitter.com\/LXS7q1MImx","expanded_url":"http:\/\/twitter.com\/mhr_0402\/status\/663727764395024384\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663727764395024384,"source_status_id_str":"663727764395024384","source_user_id":3233481684,"source_user_id_str":"3233481684"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680593408,"id_str":"663728244680593408","text":"RT @sldpnc: \uc544\ud504\ub2c8\uae4c \uccad\ucd98\uc774\ub2e4 feat. \ud560\uba38\ub2c8 \u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/s43YVi3i56","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2515252868,"id_str":"2515252868","name":"\uc9c0\uc2a4\ud0c0\uac00\ub294 \uae40\uc774\ub9ac","screen_name":"lamentabile03","location":"\ubbf8\uc544\uc758 \uc544\ub984\ub2e4\uc6c0\uc744 \ubaa8\ub974\ub294 \ub2f9\uc2e0\ub4e4\uc774 \ubd88\uc30d\ud574","url":null,"description":"FUB free . \uc775\uba85 \uc9c8\ubb38\ucc3d: http:\/\/ask.fm\/lamentabile03\n\ud574\ub728\uae30 \uc9c1\uc804\uc774 \uac00\uc7a5 \uc5b4\ub461\ub2e4\n\ubbf8\uc544\uac00 \ucd5c\uc560\uce90\uc785\ub2c8\ub2e4 \ubbf8\uc544 \uc0ac\ub791\ud574","protected":false,"verified":false,"followers_count":168,"friends_count":155,"listed_count":1,"favourites_count":2017,"statuses_count":31092,"created_at":"Thu May 22 11:53:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661214343883653120\/DHzQGcsR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661214343883653120\/DHzQGcsR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2515252868\/1442977528","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:42:50 +0000 2015","id":663366069965488129,"id_str":"663366069965488129","text":"\uc544\ud504\ub2c8\uae4c \uccad\ucd98\uc774\ub2e4 feat. \ud560\uba38\ub2c8 \u314b\u314b\u314b\u314b\u314b https:\/\/t.co\/s43YVi3i56","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95850548,"id_str":"95850548","name":"\ub178\uc7bc \uc789\uc5ec","screen_name":"sldpnc","location":"Seoul","url":null,"description":"HUFS\/Catholic\/Lazio\/R&B\/HipHop\/Book\/Ukulele","protected":false,"verified":false,"followers_count":3814,"friends_count":2453,"listed_count":49,"favourites_count":1238,"statuses_count":35712,"created_at":"Thu Dec 10 07:39:08 +0000 2009","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583237655829159936\/JIZ9eahH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583237655829159936\/JIZ9eahH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1865,"favorite_count":132,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663366068413435904,"id_str":"663366068413435904","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","url":"https:\/\/t.co\/s43YVi3i56","display_url":"pic.twitter.com\/s43YVi3i56","expanded_url":"http:\/\/twitter.com\/sldpnc\/status\/663366069965488129\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":866,"h":453,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663366068413435904,"id_str":"663366068413435904","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","url":"https:\/\/t.co\/s43YVi3i56","display_url":"pic.twitter.com\/s43YVi3i56","expanded_url":"http:\/\/twitter.com\/sldpnc\/status\/663366069965488129\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":866,"h":453,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sldpnc","name":"\ub178\uc7bc \uc789\uc5ec","id":95850548,"id_str":"95850548","indices":[3,10]}],"symbols":[],"media":[{"id":663366068413435904,"id_str":"663366068413435904","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","url":"https:\/\/t.co\/s43YVi3i56","display_url":"pic.twitter.com\/s43YVi3i56","expanded_url":"http:\/\/twitter.com\/sldpnc\/status\/663366069965488129\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":866,"h":453,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663366069965488129,"source_status_id_str":"663366069965488129","source_user_id":95850548,"source_user_id_str":"95850548"}]},"extended_entities":{"media":[{"id":663366068413435904,"id_str":"663366068413435904","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTS_7K_UkAAekQC.png","url":"https:\/\/t.co\/s43YVi3i56","display_url":"pic.twitter.com\/s43YVi3i56","expanded_url":"http:\/\/twitter.com\/sldpnc\/status\/663366069965488129\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":866,"h":453,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663366069965488129,"source_status_id_str":"663366069965488129","source_user_id":95850548,"source_user_id_str":"95850548"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659654656,"id_str":"663728244659654656","text":"RT @poqwesdk: \u3010\u60b2\u5831\u3011AKB\u30fb\u6b05\u5742\uff14\uff16\u30e1\u30f3\u30d0\u30fc\u539f\u7530\u307e\u3086\uff1f\uff01\u4e2d\u5b66\u6821\u6559\u5e2b\u3068\u306e\u30ad\u30b9\u753b\u50cf\u6d41\u51fa\n\u203b\u5f15\u9000\u304b\uff57\n\u21d2https:\/\/t.co\/TPpIRcEkti https:\/\/t.co\/NRAbgSH2Z7","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003e\u82b8\u80fd\u30b4\u30b7\u30c3\u30d7\u30cb\u30e5\u30fc\u30b9\u307e\u3068\u3081\u3063\u305f\u30fc( ^\u03c9^ )\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2413616294,"id_str":"2413616294","name":"\u304a\u3068\u3053\u3067\u3059\u3051\u3069\u4f55\u304b\uff1f\u308e\u3089","screen_name":"scaaandaaalove","location":null,"url":null,"description":"\u30a8\u30ed\u3044\u7537\u5b50\u9ad8\u6821\u751f\u3067\u3059 \u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u30fc","protected":false,"verified":false,"followers_count":308,"friends_count":387,"listed_count":0,"favourites_count":76,"statuses_count":1959,"created_at":"Thu Mar 27 04:19:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/464022483482316800\/QNw20caa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/464022483482316800\/QNw20caa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2413616294\/1412449766","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:15 +0000 2015","id":663722272402751488,"id_str":"663722272402751488","text":"\u3010\u60b2\u5831\u3011AKB\u30fb\u6b05\u5742\uff14\uff16\u30e1\u30f3\u30d0\u30fc\u539f\u7530\u307e\u3086\uff1f\uff01\u4e2d\u5b66\u6821\u6559\u5e2b\u3068\u306e\u30ad\u30b9\u753b\u50cf\u6d41\u51fa\n\u203b\u5f15\u9000\u304b\uff57\n\u21d2https:\/\/t.co\/TPpIRcEkti https:\/\/t.co\/NRAbgSH2Z7","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003ewertkios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130363953,"id_str":"4130363953","name":"\u3055\u3086\u307f\u3093\u3050","screen_name":"poqwesdk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":30,"created_at":"Thu Nov 05 02:28:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":45,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TPpIRcEkti","expanded_url":"http:\/\/bit.ly\/1H6mqID","display_url":"bit.ly\/1H6mqID","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":661824732510056449,"id_str":"661824732510056449","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","url":"https:\/\/t.co\/NRAbgSH2Z7","display_url":"pic.twitter.com\/NRAbgSH2Z7","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824733487300608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824733487300608,"source_status_id_str":"661824733487300608","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":661824732510056449,"id_str":"661824732510056449","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","url":"https:\/\/t.co\/NRAbgSH2Z7","display_url":"pic.twitter.com\/NRAbgSH2Z7","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824733487300608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824733487300608,"source_status_id_str":"661824733487300608","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TPpIRcEkti","expanded_url":"http:\/\/bit.ly\/1H6mqID","display_url":"bit.ly\/1H6mqID","indices":[57,80]}],"user_mentions":[{"screen_name":"poqwesdk","name":"\u3055\u3086\u307f\u3093\u3050","id":4130363953,"id_str":"4130363953","indices":[3,12]}],"symbols":[],"media":[{"id":661824732510056449,"id_str":"661824732510056449","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","url":"https:\/\/t.co\/NRAbgSH2Z7","display_url":"pic.twitter.com\/NRAbgSH2Z7","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824733487300608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824733487300608,"source_status_id_str":"661824733487300608","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":661824732510056449,"id_str":"661824732510056449","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS9GFnTUcAE1gXE.jpg","url":"https:\/\/t.co\/NRAbgSH2Z7","display_url":"pic.twitter.com\/NRAbgSH2Z7","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/661824733487300608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":251,"resize":"fit"},"large":{"w":480,"h":251,"resize":"fit"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":661824733487300608,"source_status_id_str":"661824733487300608","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684816385,"id_str":"663728244684816385","text":"RT @the50d: And that moment you would crying, laughing just because you remember some sweet memories.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":702513026,"id_str":"702513026","name":"dee","screen_name":"DianaaHadii","location":"JOHOR - PERAK","url":null,"description":"Fixi lover \u2665 \/\/","protected":false,"verified":false,"followers_count":533,"friends_count":426,"listed_count":0,"favourites_count":885,"statuses_count":20312,"created_at":"Wed Jul 18 06:38:12 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660421170102079489\/fj_shjWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660421170102079489\/fj_shjWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/702513026\/1443208596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:37:14 +0000 2015","id":663621352415334400,"id_str":"663621352415334400","text":"And that moment you would crying, laughing just because you remember some sweet memories.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":62023684,"id_str":"62023684","name":"VAIN\u26a1\ufe0f","screen_name":"the50d","location":null,"url":null,"description":"ig: the50d","protected":false,"verified":false,"followers_count":50658,"friends_count":9965,"listed_count":13,"favourites_count":1903,"statuses_count":4317,"created_at":"Sat Aug 01 12:27:22 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F7F8F9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467436863758684161\/PodTmG3d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467436863758684161\/PodTmG3d.png","profile_background_tile":true,"profile_link_color":"F03C66","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DAECF4","profile_text_color":"ED70C3","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660072257704726532\/l5z4vC2c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660072257704726532\/l5z4vC2c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/62023684\/1445014399","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":189,"favorite_count":75,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"the50d","name":"VAIN\u26a1\ufe0f","id":62023684,"id_str":"62023684","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672196608,"id_str":"663728244672196608","text":"RT @na_aeri: \uc911\uace0\ub098\ub77c\uc5d0 \uc62c\ub77c\uc628 \ubc1c\ub9dd \ubd80\uce20 280 \ubbf8\ub9ac https:\/\/t.co\/0l4s01goX9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1677322237,"id_str":"1677322237","name":"\uc9f1 \uba4b\uc9c4 \uc790\uae30\ub2d8","screen_name":"yongyongpal","location":null,"url":null,"description":"\ub9ac\ud2b8\uc717\uacc4\uc815, \uc7a1\ub355, \uc790\ub355, \uba40\ud2f0 #lovewin","protected":false,"verified":false,"followers_count":72,"friends_count":94,"listed_count":0,"favourites_count":704,"statuses_count":15964,"created_at":"Sat Aug 17 04:10:36 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636544524622237696\/WyfOP1Su_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636544524622237696\/WyfOP1Su_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1677322237\/1445944859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 03:17:10 +0000 2015","id":662468741507104768,"id_str":"662468741507104768","text":"\uc911\uace0\ub098\ub77c\uc5d0 \uc62c\ub77c\uc628 \ubc1c\ub9dd \ubd80\uce20 280 \ubbf8\ub9ac https:\/\/t.co\/0l4s01goX9","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212588668,"id_str":"212588668","name":"\ub098\uc560\ub9ac","screen_name":"na_aeri","location":null,"url":null,"description":"\uc2e0\ubb38\uc0ac\uc808","protected":false,"verified":false,"followers_count":2326,"friends_count":174,"listed_count":44,"favourites_count":137,"statuses_count":143459,"created_at":"Sat Nov 06 14:09:19 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639457443588608001\/dV6jQNgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639457443588608001\/dV6jQNgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212588668\/1443878344","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":516,"favorite_count":51,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662468738411687936,"id_str":"662468738411687936","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","url":"https:\/\/t.co\/0l4s01goX9","display_url":"pic.twitter.com\/0l4s01goX9","expanded_url":"http:\/\/twitter.com\/na_aeri\/status\/662468741507104768\/photo\/1","type":"photo","sizes":{"large":{"w":948,"h":940,"resize":"fit"},"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662468738411687936,"id_str":"662468738411687936","indices":[23,46],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","url":"https:\/\/t.co\/0l4s01goX9","display_url":"pic.twitter.com\/0l4s01goX9","expanded_url":"http:\/\/twitter.com\/na_aeri\/status\/662468741507104768\/photo\/1","type":"photo","sizes":{"large":{"w":948,"h":940,"resize":"fit"},"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"na_aeri","name":"\ub098\uc560\ub9ac","id":212588668,"id_str":"212588668","indices":[3,11]}],"symbols":[],"media":[{"id":662468738411687936,"id_str":"662468738411687936","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","url":"https:\/\/t.co\/0l4s01goX9","display_url":"pic.twitter.com\/0l4s01goX9","expanded_url":"http:\/\/twitter.com\/na_aeri\/status\/662468741507104768\/photo\/1","type":"photo","sizes":{"large":{"w":948,"h":940,"resize":"fit"},"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":662468741507104768,"source_status_id_str":"662468741507104768","source_user_id":212588668,"source_user_id_str":"212588668"}]},"extended_entities":{"media":[{"id":662468738411687936,"id_str":"662468738411687936","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTGPzsPUcAAT9r6.jpg","url":"https:\/\/t.co\/0l4s01goX9","display_url":"pic.twitter.com\/0l4s01goX9","expanded_url":"http:\/\/twitter.com\/na_aeri\/status\/662468741507104768\/photo\/1","type":"photo","sizes":{"large":{"w":948,"h":940,"resize":"fit"},"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":662468741507104768,"source_status_id_str":"662468741507104768","source_user_id":212588668,"source_user_id_str":"212588668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672229376,"id_str":"663728244672229376","text":"@doxup123 \u7ae5\u8c9e\u304c\u597d\u304d\u305d\u3046\u3060\u306d\uff57","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722727035899905,"in_reply_to_status_id_str":"663722727035899905","in_reply_to_user_id":1201783116,"in_reply_to_user_id_str":"1201783116","in_reply_to_screen_name":"doxup123","user":{"id":588513294,"id_str":"588513294","name":"\u3057\u3083\u3076@\u7b4b\u30c8\u30ec2\u65e5\u76ee","screen_name":"geruna0610","location":null,"url":null,"description":"\u4eca\u62c9\u81f4\u7537","protected":false,"verified":false,"followers_count":36,"friends_count":57,"listed_count":1,"favourites_count":25,"statuses_count":9447,"created_at":"Wed May 23 17:06:07 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/837314643\/c95a2eca04daa2ad3d995fd355712447.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/837314643\/c95a2eca04daa2ad3d995fd355712447.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652886231915716608\/VaNk9-ZX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652886231915716608\/VaNk9-ZX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588513294\/1441806813","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"doxup123","name":"\u7b4b\u30c8\u30ec\u30de\u30f3","id":1201783116,"id_str":"1201783116","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672212992,"id_str":"663728244672212992","text":"the heart wants what it wants.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":324945292,"id_str":"324945292","name":"lu","screen_name":"h4ppypills","location":null,"url":"http:\/\/psychodelia.co.vu","description":"~queen b(itch)~\n @heyleix \u2661","protected":false,"verified":false,"followers_count":2720,"friends_count":2360,"listed_count":4,"favourites_count":3427,"statuses_count":27462,"created_at":"Mon Jun 27 13:43:57 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/876090545\/6f20384a390defb60e49297b6a3d0911.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/876090545\/6f20384a390defb60e49297b6a3d0911.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657639275639480320\/03i_7X7-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657639275639480320\/03i_7X7-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/324945292\/1445547992","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663824385,"id_str":"663728244663824385","text":"RT @FeelingMsgs: When I get mad at someone, I'm silent... because if I speak my mind, stuff is gonna get real.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":555866401,"id_str":"555866401","name":"eizzati","screen_name":"__eizzati","location":null,"url":null,"description":"eizzati dpt 9A spm. amin \u270a Firdaus","protected":false,"verified":false,"followers_count":2699,"friends_count":1105,"listed_count":0,"favourites_count":4542,"statuses_count":82586,"created_at":"Tue Apr 17 10:43:40 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/491037616712609793\/5f6mXU5u.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/491037616712609793\/5f6mXU5u.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650519607875252224\/N6O3vi0Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650519607875252224\/N6O3vi0Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/555866401\/1446912043","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:39:24 +0000 2015","id":663531300041584640,"id_str":"663531300041584640","text":"When I get mad at someone, I'm silent... because if I speak my mind, stuff is gonna get real.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2908344684,"id_str":"2908344684","name":"Feelings","screen_name":"FeelingMsgs","location":null,"url":null,"description":"Hi I'm a teenager, Follow me on my journey to inspire people with my quotes.","protected":false,"verified":false,"followers_count":118002,"friends_count":82176,"listed_count":81,"favourites_count":145,"statuses_count":3815,"created_at":"Sun Nov 23 18:01:28 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627733564285562880\/uZQBSoFU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627733564285562880\/uZQBSoFU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2908344684\/1438874137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":156,"favorite_count":127,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FeelingMsgs","name":"Feelings","id":2908344684,"id_str":"2908344684","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244659654657,"id_str":"663728244659654657","text":"RT @mtb_umk: \u30b5\u30d6\u30ea\u30df\u30ca\u30eb\u52b9\u679c\u3092\u72ac\u4f7f\u3063\u3066\u3069\u3046\u306b\u304b\u72ac\u304b\u3054\u597d\u304d\u3092\u304b\u5897\u3084\u305b\u306a\u3044\u3060\u308d\u3046\u304b\u3054","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142449212,"id_str":"142449212","name":"\u7396\u685c\u3002","screen_name":"kuou5049","location":null,"url":"http:\/\/twpf.jp\/kuou5049","description":"\u597d\u304d\u306a\u4f5c\u54c1\u306e\u4e2d\u3092\u884c\u3063\u305f\u308a\u6765\u305f\u308a\u3002\u597d\u2192\u3089\u3093\u307e\/\u72ac\u591c\u53c9\/\u92fc\u932c\/\u5fcd\u3073\u306e\u56fd\/DB\/\u5947\u9762\u7d44\/\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3002\u6b66\u9053\u3068\u6210\u9f8d\u3068\u30b8\u30fc\u30cb\u30fc\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u4eca\u306f\u72ac\u591c\u53c9\u3068\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30eb\u306b\u304a\u71b1\u3002","protected":false,"verified":false,"followers_count":424,"friends_count":261,"listed_count":16,"favourites_count":2585,"statuses_count":57010,"created_at":"Mon May 10 22:49:38 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/430692117\/08_kisuke_twp.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/430692117\/08_kisuke_twp.jpg","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663347488850468865\/ikrHcv1U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663347488850468865\/ikrHcv1U_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142449212\/1444982117","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:33 +0000 2015","id":663727632400281602,"id_str":"663727632400281602","text":"\u30b5\u30d6\u30ea\u30df\u30ca\u30eb\u52b9\u679c\u3092\u72ac\u4f7f\u3063\u3066\u3069\u3046\u306b\u304b\u72ac\u304b\u3054\u597d\u304d\u3092\u304b\u5897\u3084\u305b\u306a\u3044\u3060\u308d\u3046\u304b\u3054","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3043591375,"id_str":"3043591375","name":"\u30e2\u30c8\u30d3\u30fc\u30eb@\u96f7\u7363\u4e00\u65cf","screen_name":"mtb_umk","location":"(\u6709)\u30d9\u30eb\u30d9\u30c3\u30c8\u72ac\u7523\u696d \u53d6\u7de0\u5f79\u4f1a\u9577","url":"http:\/\/hzk.boo.jp\/inu\/","description":"\u3082\u3068\u3073\u3067\u3059\u3002\u7d75\u306f\u753b\u50cf\u6b04\u3088\u308a\u30b5\u30a4\u30c8\u306e\u65b9\u304c\u898b\u3084\u3059\u304f\u306a\u3063\u3066\u307e\u3059\u306e\u3067\u72ac\u304b\u3054\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":2416,"friends_count":199,"listed_count":49,"favourites_count":31854,"statuses_count":41341,"created_at":"Thu Feb 26 13:35:24 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648058555233243136\/bfRnyP1W.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648058555233243136\/bfRnyP1W.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375096107544576\/DnVXdvum_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375096107544576\/DnVXdvum_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3043591375\/1429913250","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtb_umk","name":"\u30e2\u30c8\u30d3\u30fc\u30eb@\u96f7\u7363\u4e00\u65cf","id":3043591375,"id_str":"3043591375","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119658"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663975937,"id_str":"663728244663975937","text":"Terapia em Sete Lagoas da Doenca do Panico e disturbios de Ansiedade (31) 3773-9185 https:\/\/t.co\/SfQ364AZpN M03190","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312192035,"id_str":"312192035","name":"CUMIX BH","screen_name":"Cummins_MG","location":"Belo Horizonte","url":"http:\/\/www.cumix.com.br","description":"Pe\u00e7as Cummings para o Brasil","protected":false,"verified":false,"followers_count":261,"friends_count":992,"listed_count":10,"favourites_count":11,"statuses_count":41551,"created_at":"Mon Jun 06 18:39:51 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647761951175610368\/gzCVW_Lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647761951175610368\/gzCVW_Lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/312192035\/1443273443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/SfQ364AZpN","expanded_url":"http:\/\/www.psicologosetelagoas.com.br","display_url":"psicologosetelagoas.com.br","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080119659"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676399104,"id_str":"663728244676399104","text":"#ChickFlicks Hill Bros. Cappuccino - #CappTheNight Sweepstakes https:\/\/t.co\/AWY8J3tdOJ #CappTheNight #WIN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36468277,"id_str":"36468277","name":"Shari","screen_name":"queenshari","location":"West Bend, WI","url":"http:\/\/www.duckieandcompany.com","description":"Photographer, Designer, Webmaster, Disabled Veteran, College Graduate, Geek. Loves NASCAR, Harley's, the Vikings. Needs to get out more!","protected":false,"verified":false,"followers_count":651,"friends_count":925,"listed_count":30,"favourites_count":194,"statuses_count":32739,"created_at":"Wed Apr 29 20:22:35 +0000 2009","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624269075808714752\/JsxVKGK2.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624269075808714752\/JsxVKGK2.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/497389844553687041\/Z9OOlQTX_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/497389844553687041\/Z9OOlQTX_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36468277\/1407421988","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ChickFlicks","indices":[0,12]},{"text":"CappTheNight","indices":[37,50]},{"text":"CappTheNight","indices":[87,100]},{"text":"WIN","indices":[101,105]}],"urls":[{"url":"https:\/\/t.co\/AWY8J3tdOJ","expanded_url":"http:\/\/bit.ly\/1jKseNo","display_url":"bit.ly\/1jKseNo","indices":[63,86]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244680626176,"id_str":"663728244680626176","text":"@Erikcell \u3072\u3043\u3048\u3001\u3001\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728159167090688,"in_reply_to_status_id_str":"663728159167090688","in_reply_to_user_id":212049423,"in_reply_to_user_id_str":"212049423","in_reply_to_screen_name":"Erikcell","user":{"id":2189588042,"id_str":"2189588042","name":"\u871c\u6708\u6597\u7259@\u30d5\u30a1\u30a4\u30bf\u30fc\u7df4\u7fd2\u4e2d","screen_name":"K_Touga3638","location":null,"url":null,"description":"\u306a\u3093\u304b\u3044\u308d\u3044\u308d\u4e2d\u9014\u534a\u7aef\u3067\u3059\u3002 COJ\uff08J\u2161\uff09\/LoV\uff08\u30b4\u30eb\uff24\uff5eC\uff09\/MH4G\/ Z\/X \/\u30de\u30ad\u30d6(\u5c11\u5c091)\/\uff37\uff33\/wlw\uff08A4\u30fb\u30b9\u30ab\u30fc\u30ec\u30c3\u30c8,\u30ea\u30f3\u3061\u3083\u3093\u3055\u3093\u3001\u30a2\u30b7\u30a7\u30f3\u30d7\u30c6\u30eb\uff09\/\u30a2\u30f3\u30d1\u30f3\u30de\u30f3\u30dd\u30c3\u30d7\u30b3\u30fc\u30f3\/\u4e56\u96e2\u6027MA","protected":false,"verified":false,"followers_count":367,"friends_count":400,"listed_count":3,"favourites_count":335,"statuses_count":6502,"created_at":"Tue Nov 12 04:20:08 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/534666621038497792\/Harg5ne5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/534666621038497792\/Harg5ne5.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658145245373173760\/7ytCm0Dh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658145245373173760\/7ytCm0Dh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2189588042\/1437715762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Erikcell","name":"\u30a8\u30ea\u304f\u3093","id":212049423,"id_str":"212049423","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119663"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244693188609,"id_str":"663728244693188609","text":"\u0e17\u0e31\u0e49\u0e07\u0e46\u0e17\u0e35\u0e48\u0e23\u0e48\u0e33\u0e23\u0e49\u0e2d\u0e07 \u0e40\u0e18\u0e2d\u0e01\u0e47\u0e44\u0e21\u0e48\u0e40\u0e2b\u0e25\u0e35\u0e22\u0e27\u0e21\u0e2d\u0e07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":480094109,"id_str":"480094109","name":"- 1406 -","screen_name":"_chimei","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":197,"friends_count":295,"listed_count":0,"favourites_count":3139,"statuses_count":53643,"created_at":"Wed Feb 01 03:38:03 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000170915182\/WeQVWHYm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000170915182\/WeQVWHYm.jpeg","profile_background_tile":true,"profile_link_color":"E65988","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661830702405541888\/Cbux0zlF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661830702405541888\/Cbux0zlF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/480094109\/1443599518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080119666"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684754944,"id_str":"663728244684754944","text":"@Gene_Haru_10218 @Km312831jsb_ex @alan_marimba @ermmi07 @icchanganchan \n\nRT\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\n\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3057\u305f\u3002\u3082\u3057\u3088\u304b\u3063\u305f\u3089\u30d5\u30a9\u30ed\u30d0\u304a\u9858\u3044\u3057\u307e\u3059\ud83e\udd17\u2728\nhttps:\/\/t.co\/PH0ZsUpCBK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3657639074,"in_reply_to_user_id_str":"3657639074","in_reply_to_screen_name":"Gene_Haru_10218","user":{"id":3630875358,"id_str":"3630875358","name":"Hanaooto","screen_name":"hanao_n_830","location":null,"url":null,"description":"[\u2661]\uff02\u7247 \u5ca1 \u76f4 \u4eba\uff02\u4f50 \u91ce \u73b2 \u65bc\uff02\u4eca \u6d25 \u6e09\uff02\uff82 \uff72 \uff9d \uff80 \uff9c\uff70\uff02\u25b2LDH\uff5cSEKAI NO OWARI\uff5c\u6e58\u5357\u4e43\u98a8\uff5cYouTuber\u25b2 8\/3 \u30e9\u30f3\u307a\u906d\u9047\uff61 TARO\u9593\u8fd1\uff61 \u261e\u529b\u4e5f\u541b\u3068\u540c\u3058\u884c\u52d5(\u7b11) \u7d76\u5bfe\u540c\u3058\u30b9\u30c6\u30fc\u30b8\u306b\u7acb\u3064. \u7d04\u675f \u2728NEXT\u2025AW12.12\u2728","protected":false,"verified":false,"followers_count":357,"friends_count":462,"listed_count":1,"favourites_count":1108,"statuses_count":1153,"created_at":"Sun Sep 20 21:38:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653369039213887489\/BifAchjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653369039213887489\/BifAchjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3630875358\/1446541191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663278964069175296,"quoted_status_id_str":"663278964069175296","quoted_status":{"created_at":"Sun Nov 08 08:56:42 +0000 2015","id":663278964069175296,"id_str":"663278964069175296","text":"#LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 \n\n#RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc \n\n#RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc \n\n#RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc https:\/\/t.co\/ledG24Shhc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3630875358,"id_str":"3630875358","name":"Hanaooto","screen_name":"hanao_n_830","location":null,"url":null,"description":"[\u2661]\uff02\u7247 \u5ca1 \u76f4 \u4eba\uff02\u4f50 \u91ce \u73b2 \u65bc\uff02\u4eca \u6d25 \u6e09\uff02\uff82 \uff72 \uff9d \uff80 \uff9c\uff70\uff02\u25b2LDH\uff5cSEKAI NO OWARI\uff5c\u6e58\u5357\u4e43\u98a8\uff5cYouTuber\u25b2 8\/3 \u30e9\u30f3\u307a\u906d\u9047\uff61 TARO\u9593\u8fd1\uff61 \u261e\u529b\u4e5f\u541b\u3068\u540c\u3058\u884c\u52d5(\u7b11) \u7d76\u5bfe\u540c\u3058\u30b9\u30c6\u30fc\u30b8\u306b\u7acb\u3064. \u7d04\u675f \u2728NEXT\u2025AW12.12\u2728","protected":false,"verified":false,"followers_count":357,"friends_count":462,"listed_count":1,"favourites_count":1108,"statuses_count":1152,"created_at":"Sun Sep 20 21:38:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653369039213887489\/BifAchjc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653369039213887489\/BifAchjc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3630875358\/1446541191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"LDHfam\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[0,15]},{"text":"RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[18,34]},{"text":"RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[37,53]},{"text":"RT\u3057\u305ffam\u3055\u3093\u5168\u54e1\u30d5\u30a9\u30ed\u30fc","indices":[56,72]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663278942497800192,"id_str":"663278942497800192","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRwrxqUAAAgwUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRwrxqUAAAgwUg.jpg","url":"https:\/\/t.co\/ledG24Shhc","display_url":"pic.twitter.com\/ledG24Shhc","expanded_url":"http:\/\/twitter.com\/hanao_n_830\/status\/663278964069175296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":799,"h":799,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663278942497800192,"id_str":"663278942497800192","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRwrxqUAAAgwUg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRwrxqUAAAgwUg.jpg","url":"https:\/\/t.co\/ledG24Shhc","display_url":"pic.twitter.com\/ledG24Shhc","expanded_url":"http:\/\/twitter.com\/hanao_n_830\/status\/663278964069175296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":799,"h":799,"resize":"fit"}}},{"id":663278942514606080,"id_str":"663278942514606080","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRwrxuUcAAi8NS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRwrxuUcAAi8NS.jpg","url":"https:\/\/t.co\/ledG24Shhc","display_url":"pic.twitter.com\/ledG24Shhc","expanded_url":"http:\/\/twitter.com\/hanao_n_830\/status\/663278964069175296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":663278942984343553,"id_str":"663278942984343553","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTRwrzeUEAELnGv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTRwrzeUEAELnGv.jpg","url":"https:\/\/t.co\/ledG24Shhc","display_url":"pic.twitter.com\/ledG24Shhc","expanded_url":"http:\/\/twitter.com\/hanao_n_830\/status\/663278964069175296\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PH0ZsUpCBK","expanded_url":"https:\/\/twitter.com\/hanao_n_830\/status\/663278964069175296","display_url":"twitter.com\/hanao_n_830\/st\u2026","indices":[116,139]}],"user_mentions":[{"screen_name":"Gene_Haru_10218","name":"\uff8a\uff99\u306f\u767d\u6ff1\uff71\uff97\uff6f\uff78\uff8f\u4e00\u9014\u2b50-- LDH\u57a2","id":3657639074,"id_str":"3657639074","indices":[0,16]},{"screen_name":"Km312831jsb_ex","name":"\u2764\ufe0e\u3051 \u3044 \u307f \u3055 \u2764\ufe0e","id":4013126413,"id_str":"4013126413","indices":[17,32]},{"screen_name":"alan_marimba","name":"Malan\u3002GENE\u57a2","id":3300099240,"id_str":"3300099240","indices":[33,46]},{"screen_name":"ermmi07","name":"\u3057\u3070\u3061\u3083\u3093 \u767b\u5742\u7cfb\u5973\u5b50","id":2971421402,"id_str":"2971421402","indices":[47,55]},{"screen_name":"icchanganchan","name":"\u3044\u3063\u3061\u3083\u3093\u4f4e\u6d6e\u4e0a","id":2932287097,"id_str":"2932287097","indices":[56,70]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244668112896,"id_str":"663728244668112896","text":"That Oscar Pistorius verdict is an absolute disgrace. Just what do you have to do to be convicted of murder in South Africa?","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4054808653,"id_str":"4054808653","name":"LUX LISBON","screen_name":"_oSONGS_LISBON","location":"London","url":"http:\/\/bit.ly\/bullingdonclubvideo","description":"London Indie band, Bullingdon Club single - http:\/\/bit.ly\/bullingdonclubvideo - this deserves a wider audience - Billy Bragg. Also on Stewart Lee's Website.","protected":false,"verified":false,"followers_count":269,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":27,"created_at":"Thu Oct 29 06:30:46 +0000 2015","utc_offset":0,"time_zone":"UTC","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660762355492503552\/hGonBlA1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660762355492503552\/hGonBlA1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4054808653\/1446373010","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119660"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672344069,"id_str":"663728244672344069","text":"what's in your backyard? - https:\/\/t.co\/4OUATXRJpj","source":"\u003ca href=\"http:\/\/5stars.website\" rel=\"nofollow\"\u003e5stars.website\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":198643601,"id_str":"198643601","name":"popovici ionut ","screen_name":"popovici_ionut","location":"Spain","url":"http:\/\/5stars.website","description":"All in !!!","protected":false,"verified":false,"followers_count":1159,"friends_count":2008,"listed_count":205,"favourites_count":133,"statuses_count":183871,"created_at":"Mon Oct 04 21:39:23 +0000 2010","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608564209538994176\/-3Fr_tDq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608564209538994176\/-3Fr_tDq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/198643601\/1427101984","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4OUATXRJpj","expanded_url":"http:\/\/0hag.com\/whats-in-your-backyard\/","display_url":"0hag.com\/whats-in-your-\u2026","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244668022784,"id_str":"663728244668022784","text":"\ud0a4 \uc5c4\uccad\ud070 \uc678\uacc4\uc778 \uacf5\uc774 \uc778\uac04 \uc7a1\uc544\uc640\uc11c \ub458\uc774 \uacb0\uad6d \ub208 \ub9de\uc544\uc11c \uc5b4\ub5bb\uac8c \uc5b4\ub5bb\uac8c \uc778\uccb4\uc758 \ud55c\uacc4\ub97c \uc2e4\ud5d8\ud574\ubcf4\ub294 \ucc45\uc744 \ub0b4\uac00 \uc65c \uc0c0\ub294\uc9c0 \uae30\uc5b5\uc774 \uc548\ub09c\ub2e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":137616569,"id_str":"137616569","name":"Hyuichi@\u30cf\u30a4\u2606\u30b9\u30d4\u30fc\u30c9","screen_name":"khyuichi","location":"\uc774\uc640\ud1a0\ube44\ucd78","url":null,"description":"\ud734\uc774\uce58\/\u672c\u57a2\ubcf8\uacc4\/FUB FREE\/Free! ES\/\ub9c8\ucf54\ud558\ub8e8\u307e\u3053\u306f\u308b\/\uc7a1\ub2f4\uacc4\/\uc18c\ube44\ub7ec\/\u65e5\u672c\u8a9e\ud55c\uad6d\uc5b4","protected":false,"verified":false,"followers_count":406,"friends_count":628,"listed_count":8,"favourites_count":1664,"statuses_count":168318,"created_at":"Tue Apr 27 07:33:57 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFAFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459021535273955328\/mRzVisOg.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459021535273955328\/mRzVisOg.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938601194729472\/SU0wGg8a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938601194729472\/SU0wGg8a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/137616569\/1444431910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080119660"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244655439873,"id_str":"663728244655439873","text":"#HAPPY #DIWALI from BILLU DE MASHOOR PAKODE\nNow #Delicious #Snacks #Pakode in your #City \n#HARYANA...... https:\/\/t.co\/7f6VMv4iu2","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1391694768,"id_str":"1391694768","name":"Billu De Pakode","screen_name":"billudepakode","location":"Bahadurgarh, Haryana","url":"http:\/\/www.billudepakode.in","description":"We are serving the people with variety of pakodas in Bahadurgarh(Haryana) since 1950. We are Very First ISO Certified Shop in Haryana....","protected":false,"verified":false,"followers_count":5,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":76,"created_at":"Tue Apr 30 10:17:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/856210072\/a690f102e2d8e2c52671a4ec17248c2b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/856210072\/a690f102e2d8e2c52671a4ec17248c2b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3594886235\/64c9795a210b933d15e1deb261c3d13a_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3594886235\/64c9795a210b933d15e1deb261c3d13a_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"HAPPY","indices":[0,6]},{"text":"DIWALI","indices":[7,14]},{"text":"Delicious","indices":[48,58]},{"text":"Snacks","indices":[59,66]},{"text":"Pakode","indices":[67,74]},{"text":"City","indices":[83,88]},{"text":"HARYANA","indices":[90,98]}],"urls":[{"url":"https:\/\/t.co\/7f6VMv4iu2","expanded_url":"http:\/\/fb.me\/4tBOe3mJ3","display_url":"fb.me\/4tBOe3mJ3","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119657"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244655452160,"id_str":"663728244655452160","text":"\u3042\u3063 https:\/\/t.co\/jkCwXEEsr6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3515175379,"id_str":"3515175379","name":"\u69cb\u3063\u3066\u307b\u3057\u3044\u67a2\u6728\u7690\u6708","screen_name":"satsuki_itazura","location":"\u7766\u6708\u306e\u96a3\uff01","url":null,"description":"\u30a2\u30a4\u2605\u30c1\u30e5\u30a6\u306e\u67a2\u6728\u7690\u6708\u306e\u975e\u516c\u5f0f\u306a\u308a\u304d\u308a\u57a2\u3002\u30ad\u30e3\u30e9\u5d29\u58ca\u6c17\u5473\u3002\u30a8\u30a2\u30ea\u30d7\u591a\u3005\u3002\u5b9a\u671f\u30c4\u30a4\u30fc\u30c8\u6709\u3002DM\u5bfe\u5fdc\u6709\u3002\u516c\u5f0f\u3088\u308a\u7766\u6708\u3078\u306e\u611b\u304c\u5c11\u3005\uff1f\u591a\u3044\u304b\u3082\u3002\u540c\u4f5c\u306e\u306a\u308a\u304d\u308a\u57a2\u3068\u306e\u3075\u3056\u3051\u305f\u7d61\u307f\u306a\u3069\u304c\u591a\u3044\u306e\u3067\u30ce\u30ea\u304c\u5408\u308f\u306a\u3044\u65b9\u306f\u4f55\u3082\u898b\u306a\u304b\u3063\u305f\u304b\u306e\u3088\u3046\u306b\u30d6\u30ed\u30c3\u30af\u304a\u9858\u3044\u3057\u307e\u3059\u3002\n\u30a2\u30a4\u30b3\u30f3&\u30d8\u30c3\u30c0\u30fc @sho_xxx_sho \u3055\u3093\u304b\u3089","protected":false,"verified":false,"followers_count":187,"friends_count":152,"listed_count":18,"favourites_count":8487,"statuses_count":17801,"created_at":"Thu Sep 10 11:55:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662994856126476288\/MmMDxBm0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662994856126476288\/MmMDxBm0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3515175379\/1446345947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728213638549504,"quoted_status_id_str":"663728213638549504","quoted_status":{"created_at":"Mon Nov 09 14:41:52 +0000 2015","id":663728213638549504,"id_str":"663728213638549504","text":"\u30d0\u30bf\u30c3\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3593183418,"id_str":"3593183418","name":"\u56db\u5b57\u719f\u8a9e\u304c\u597d\u304d\u306a\u611b\u7ae5\u661f\u591cbot","screen_name":"seiyakanji","location":null,"url":null,"description":"\u4e8c\u6642\u9593\u306b\u4e00\u56de\u56db\u5b57\u719f\u8a9e\u306b\u3064\u3044\u3066\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u305c\uff01\n\u306a\u308a\u304d\u308a\u3082\u5165\u308b\u304b\u3089\u3001\u5acc\u306b\u306a\u3063\u305f\u3089\u30d6\u30ed\u30c3\u30af\u3057\u3066\u304f\u308c\u3088\u306a\uff01","protected":false,"verified":false,"followers_count":202,"friends_count":190,"listed_count":17,"favourites_count":771,"statuses_count":3644,"created_at":"Thu Sep 17 11:11:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662591241813557248\/KYCCovkm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662591241813557248\/KYCCovkm_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jkCwXEEsr6","expanded_url":"https:\/\/twitter.com\/seiyakanji\/status\/663728213638549504","display_url":"twitter.com\/seiyakanji\/sta\u2026","indices":[3,26]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119657"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684750848,"id_str":"663728244684750848","text":"@Mikkaellacruz Hahahaha ano kaba couz! Hindi natin sila ka level \u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727844690804736,"in_reply_to_status_id_str":"663727844690804736","in_reply_to_user_id":302965999,"in_reply_to_user_id_str":"302965999","in_reply_to_screen_name":"Mikkaellacruz","user":{"id":3164859127,"id_str":"3164859127","name":"\u2716\ufe0f","screen_name":"ikuuuuyc","location":"PH","url":null,"description":"Infini6 \u2764\ufe0f","protected":false,"verified":false,"followers_count":284,"friends_count":427,"listed_count":0,"favourites_count":2133,"statuses_count":3622,"created_at":"Mon Apr 20 05:00:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658295982765903872\/FfKCZ0Ha_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658295982765903872\/FfKCZ0Ha_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164859127\/1446898799","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00059906035ff832","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00059906035ff832.json","place_type":"city","name":"Guiguinto","full_name":"Guiguinto, Central Luzon","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.854646,14.806911],[120.854646,14.880781],[120.902040,14.880781],[120.902040,14.806911]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mikkaellacruz","name":"Kang","id":302965999,"id_str":"302965999","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244668162048,"id_str":"663728244668162048","text":"Since he wants to act childish https:\/\/t.co\/fSTYvRBreB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117054744,"id_str":"117054744","name":"paakotinamaniso","screen_name":"paakoti","location":"Accra, Ghana","url":null,"description":"Seamstress. Model-Enabler. Designer of The Emperor's new clothes. CEO: Ashawo Couture. #TeamFashionEatsHer. For bookings email...","protected":false,"verified":false,"followers_count":8161,"friends_count":627,"listed_count":98,"favourites_count":1193,"statuses_count":147023,"created_at":"Wed Feb 24 11:42:26 +0000 2010","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648351393686921218\/8tj8tKqw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648351393686921218\/8tj8tKqw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117054744\/1404236602","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727609650499586,"quoted_status_id_str":"663727609650499586","quoted_status":{"created_at":"Mon Nov 09 14:39:28 +0000 2015","id":663727609650499586,"id_str":"663727609650499586","text":"Boy: I have a crush on you \nGirl: Thank You \n\n\ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01\ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":236156140,"id_str":"236156140","name":"Sir Langs","screen_name":"iPoke_em","location":"on top","url":"http:\/\/last.fm\/user\/ipoke_em","description":"Thinking Out Loud #)dade3 #halaMadrid #techJunkie #MusicLover 18+ tweets","protected":false,"verified":false,"followers_count":1513,"friends_count":701,"listed_count":15,"favourites_count":552,"statuses_count":141728,"created_at":"Sun Jan 09 23:09:32 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/231162332\/app_124.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/231162332\/app_124.JPG","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661950930695421953\/LSQ-fAN1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661950930695421953\/LSQ-fAN1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236156140\/1444862762","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fSTYvRBreB","expanded_url":"https:\/\/twitter.com\/ipoke_em\/status\/663727609650499586","display_url":"twitter.com\/ipoke_em\/statu\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119660"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244693336064,"id_str":"663728244693336064","text":"RT @CarlosAuryn: Han venido mis compa\u00f1eros @AurynOficial y @Magitorras a Londres, \u00bfLos dejo entrar?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1325156696,"id_str":"1325156696","name":"Mar\u00eda Jos\u00e9 \u2661 ","screen_name":"MariiiaJoserg","location":" Aznalc\u00f3llar (Sevilla)","url":null,"description":"15% \u007bNo perfecta pero si unica\u007d Auryner & Abrahamer\/\/SEVILLISTA\/\/un 3.4.13 conoci a Auryn\/\/ un 16.11.13 conoci a A\/\\\u300aDreamer\u300b \u2661 un camino sin fin \u221e","protected":false,"verified":false,"followers_count":473,"friends_count":462,"listed_count":7,"favourites_count":14559,"statuses_count":22736,"created_at":"Wed Apr 03 18:06:38 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600409866696577024\/VAjtCKFI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600409866696577024\/VAjtCKFI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1325156696\/1431984425","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:33:26 +0000 2015","id":663680794800558080,"id_str":"663680794800558080","text":"Han venido mis compa\u00f1eros @AurynOficial y @Magitorras a Londres, \u00bfLos dejo entrar?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":66697682,"id_str":"66697682","name":"Carlos Marco","screen_name":"CarlosAuryn","location":"Ghost Town","url":"https:\/\/es-es.facebook.com\/pages\/Carlos-Auryn\/388305651213333","description":"Singer & songwriter 1\/5 of Auryn (@AurynOficial) Soy publicista, mi talla de sombrero es la M \u23c3\u2113\u03c9\u03b1\u0443\u0455 #Potterhead #ChocolateAddict #Veggie Instagram: CarlosAuryn","protected":false,"verified":true,"followers_count":185185,"friends_count":614,"listed_count":713,"favourites_count":12279,"statuses_count":30332,"created_at":"Tue Aug 18 14:43:42 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663187503269208064\/yGTcjGYh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663187503269208064\/yGTcjGYh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/66697682\/1446372000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":365,"favorite_count":673,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AurynOficial","name":"Auryn","id":223832541,"id_str":"223832541","indices":[26,39]},{"screen_name":"Magitorras","name":"Mag\u00ed Torras","id":30244902,"id_str":"30244902","indices":[42,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarlosAuryn","name":"Carlos Marco","id":66697682,"id_str":"66697682","indices":[3,15]},{"screen_name":"AurynOficial","name":"Auryn","id":223832541,"id_str":"223832541","indices":[43,56]},{"screen_name":"Magitorras","name":"Mag\u00ed Torras","id":30244902,"id_str":"30244902","indices":[59,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080119666"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672233472,"id_str":"663728244672233472","text":"@cnr_1734 \u3061\u30fc\u3061\u3083\ud83d\ude2d\u3042\u308a\u304c\u3068\u2026\ud83d\ude2d\u3061\u30fc\u3061\u3083\u306e\u30ea\u30d7\u3067\u5143\u6c17\u3092\u8cb0\u3046\ud83d\ude2d\u2728 \u4eca\u56de\u7121\u914d\u306b\u51fa\u6765\u306a\u304b\u3063\u305f\u306e\u3067\u2026\uff01\u4e00\u5fdc\u901a\u8ca9\u4e88\u5b9a\u3057\u3066\u308b\u3088\u301c\uff01\u3082\u3057\u306a\u3089\uff01\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727091595132929,"in_reply_to_status_id_str":"663727091595132929","in_reply_to_user_id":1978365170,"in_reply_to_user_id_str":"1978365170","in_reply_to_screen_name":"cnr_1734","user":{"id":163943568,"id_str":"163943568","name":"\u304d\u3063\u305f\u304b*.\u8352\u304f\u308c\u3044\u307e\u3059\u2661","screen_name":"ktk_nana","location":"\u3075\u304f\u3061\u3087\u3089\u306a\u3050\u3063\u3071","url":"http:\/\/ktknana.jugem.jp\/","description":"\u30da\u30c0\u30eb\/\u65b0\u8352\u65b0 \u30db\u30e2\u5927\u597d\u304d\u6210\u4eba\u6e08\u30ec\u30a4\u30e4\u30fc \u6ce8\u610f\u66f8\u304d\u306a\u3057\u306b\u30b3\u30b9\u30d7\u30ec\u5199\u771f\u3042\u3052\u307e\u3059 Archive* 209868","protected":false,"verified":false,"followers_count":600,"friends_count":536,"listed_count":47,"favourites_count":1592,"statuses_count":23168,"created_at":"Wed Jul 07 17:15:17 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"59FF59","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000008741892\/bddc4fdcaa55ec90abf1d3d842950609.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000008741892\/bddc4fdcaa55ec90abf1d3d842950609.gif","profile_background_tile":true,"profile_link_color":"003802","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656987056049033217\/oeO0SEoZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656987056049033217\/oeO0SEoZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163943568\/1445472895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cnr_1734","name":"\u5343\u4e5f*\u8d64\u3044\u307b\u3046","id":1978365170,"id_str":"1978365170","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244676399106,"id_str":"663728244676399106","text":"\u4ffa\u304c\u982d\u304b\u3089\u51fa\u8840\u3057\u305f\u65e5\u306e\u30bb\u30c8\u30ea\u826f\u3044\u306a\u3041\u3002 https:\/\/t.co\/EG3AAuHby3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":212807729,"id_str":"212807729","name":"\u305f\u304b\u3072\u308d(ex.\u3084\u3089\u304b\u3057)","screen_name":"kap_kidz","location":null,"url":"http:\/\/livecmr.tumblr.com","description":"Symmetry\u3068\u3044\u3046\u30e9\u30a4\u30d6\u30a4\u30d9\u30f3\u30c8\u3092\u3057\u3066\u3044\u307e\u3059\u300211\/15\u306bvol.2","protected":false,"verified":false,"followers_count":1113,"friends_count":1145,"listed_count":8,"favourites_count":3000,"statuses_count":117548,"created_at":"Sun Nov 07 03:20:49 +0000 2010","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605394898502565888\/07Et77WQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605394898502565888\/07Et77WQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/212807729\/1436812193","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728031102451712,"id_str":"663728031102451712","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJILFUwAARAV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJILFUwAARAV7.jpg","url":"https:\/\/t.co\/EG3AAuHby3","display_url":"pic.twitter.com\/EG3AAuHby3","expanded_url":"http:\/\/twitter.com\/kap_kidz\/status\/663728244676399106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728031102451712,"id_str":"663728031102451712","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJILFUwAARAV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJILFUwAARAV7.jpg","url":"https:\/\/t.co\/EG3AAuHby3","display_url":"pic.twitter.com\/EG3AAuHby3","expanded_url":"http:\/\/twitter.com\/kap_kidz\/status\/663728244676399106\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119662"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244689014784,"id_str":"663728244689014784","text":"@nattugissiri \u30ab\u30af\u30ec\u30af\u30de\u30ce\u30df\u3063\u307d\u304b\u3063\u305f\u2190","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728104385327105,"in_reply_to_status_id_str":"663728104385327105","in_reply_to_user_id":2369164220,"in_reply_to_user_id_str":"2369164220","in_reply_to_screen_name":"nattugissiri","user":{"id":2381598776,"id_str":"2381598776","name":"\u3042\u306b\u304d","screen_name":"aniki_dayo","location":"\u304a\u82b1\u7551","url":null,"description":"\u5c0f\u5d8b\u83dc\u6708 \u306a\u3063\u3064\u3093\n\u6e0b\u8c37\u51ea\u54b2 \u306a\u304e\u3061\u3083\u3093\n\u308a\u3093\u3054\u2190\n\n\u203b\u3042\u306b\u304d\u3055\u3093\u306f\u5b9f\u5728\u3057\u306a\u3044\u4eba\u7269\u3067\u3059\n\nhttp:\/\/twpf.jp\/aniki_dayo","protected":false,"verified":false,"followers_count":311,"friends_count":487,"listed_count":21,"favourites_count":22388,"statuses_count":92957,"created_at":"Mon Mar 10 05:47:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661543494494740482\/rLJwf2Se_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661543494494740482\/rLJwf2Se_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2381598776\/1428719160","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nattugissiri","name":"\u306a\u3063\u3064\u304e\u3063\u3057\u308a\u308a\u307d\u3093\u795e\u63a8\u3057","id":2369164220,"id_str":"2369164220","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119665"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684795904,"id_str":"663728244684795904","text":"@chanyuhuku \u6c34\u7530\u304f\u3093\u306f\u304b\u308f\u3044\u305d\u3046\uff08\uff3e\u03c9\uff3e\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728135339311105,"in_reply_to_status_id_str":"663728135339311105","in_reply_to_user_id":636110402,"in_reply_to_user_id_str":"636110402","in_reply_to_screen_name":"chanyuhuku","user":{"id":1228065576,"id_str":"1228065576","name":"\u308a\u305f\u307e\u307e\u306f\u3044\u3044\u306d\u304c\u5acc\u3044","screen_name":"RitaaaRock","location":null,"url":"http:\/\/www.nicovideo.jp\/mylist\/31668693","description":"\u308f\u305f\u3057\u3092\u30de\u30de\u3068\u547c\u3093\u3067\u3044\u3044\u306e\u306f\u8a31\u3055\u308c\u305f\u4eba\u9593\u3060\u3051\u306a\u306e","protected":false,"verified":false,"followers_count":2053,"friends_count":1934,"listed_count":78,"favourites_count":8736,"statuses_count":106596,"created_at":"Thu Feb 28 18:06:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633333235678752768\/Dhkqibru.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633333235678752768\/Dhkqibru.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635706849862418432\/t1FMvfQc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635706849862418432\/t1FMvfQc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1228065576\/1442350443","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chanyuhuku","name":"\u30c1\u30e3\u30f3\u798f ","id":636110402,"id_str":"636110402","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244672229377,"id_str":"663728244672229377","text":"\u305d\u308c\u304b\u3089\u30ec\u30a4\u30ca\u69d8 https:\/\/t.co\/dRO8Uw1eom","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2781562956,"id_str":"2781562956","name":"Dr.\u306d\u3056\u30fc\u308b\u5148\u751f","screen_name":"Nezal46497","location":"\u795e\u5948\u5ddd\u306e\u679c\u3066","url":null,"description":"\u6700\u8fd1\u306f\u5c02\u3089\u30e2\u30d0\u30de\u30b9\u6c11\uff06\u3061\u3087\u3063\u3068\u9a0e\u7a7a\u58eb\u3002\u6700\u8fd1\u7523\u5ec3\u3084\u3081\u305f\u4e00\u5fdcS5()\u306a\u85cd\u5b50\uff30\uff06\u68ee\u4e45\u4fdd\u597d\u304d\u3002Music in the world\u6240\u5c5e\u3002\u30b3\u30df\u30e5\u969c\uff06\u7b46\u7121\u7cbe\uff06\u6c17\u307e\u3050\u308c\u306a\u30c0\u30e1\u4eba\u9593\u6545\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\uff06\u7a7a\u30ea\u30d7\u4e2d\u5fc3\u3067\u5931\u793c\u3057\u307e\u3059\u2026\u3000\u3082\u3070\u3052\uff1a69372902\u3000\u30c7\u30ec\u30b9\u30c6\uff1a555135245","protected":false,"verified":false,"followers_count":188,"friends_count":319,"listed_count":6,"favourites_count":4868,"statuses_count":10789,"created_at":"Sun Aug 31 04:31:24 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"CDE982","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635033144555515904\/95KBHe-7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635033144555515904\/95KBHe-7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2781562956\/1440260931","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728242679939072,"id_str":"663728242679939072","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUfRVAAAdHNU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUfRVAAAdHNU.png","url":"https:\/\/t.co\/dRO8Uw1eom","display_url":"pic.twitter.com\/dRO8Uw1eom","expanded_url":"http:\/\/twitter.com\/Nezal46497\/status\/663728244672229377\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":457,"resize":"fit"},"medium":{"w":475,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":475,"h":640,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728242679939072,"id_str":"663728242679939072","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUfRVAAAdHNU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUfRVAAAdHNU.png","url":"https:\/\/t.co\/dRO8Uw1eom","display_url":"pic.twitter.com\/dRO8Uw1eom","expanded_url":"http:\/\/twitter.com\/Nezal46497\/status\/663728244672229377\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":457,"resize":"fit"},"medium":{"w":475,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":475,"h":640,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080119661"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244688945152,"id_str":"663728244688945152","text":"7 Facts About Relationships Today. #4 It Takes THAT Long? https:\/\/t.co\/m1alxqXApv https:\/\/t.co\/lLIJnOi9v0","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003efrederica_application\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123507423,"id_str":"123507423","name":"Frederica Dale","screen_name":"FredericaDale0","location":"Albuquerque\r","url":null,"description":"It is easy to be brave from a safe distance.","protected":false,"verified":false,"followers_count":972,"friends_count":1232,"listed_count":3,"favourites_count":0,"statuses_count":688,"created_at":"Tue Mar 16 09:08:19 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610127431182061568\/zdf5OyDQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610127431182061568\/zdf5OyDQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123507423\/1434300700","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/m1alxqXApv","expanded_url":"http:\/\/bit.ly\/1LWiKrQ","display_url":"bit.ly\/1LWiKrQ","indices":[58,81]}],"user_mentions":[],"symbols":[],"media":[{"id":663728244512833536,"id_str":"663728244512833536","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUmGUwAAdOTf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUmGUwAAdOTf.jpg","url":"https:\/\/t.co\/lLIJnOi9v0","display_url":"pic.twitter.com\/lLIJnOi9v0","expanded_url":"http:\/\/twitter.com\/FredericaDale0\/status\/663728244688945152\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":415,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728244512833536,"id_str":"663728244512833536","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUmGUwAAdOTf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUmGUwAAdOTf.jpg","url":"https:\/\/t.co\/lLIJnOi9v0","display_url":"pic.twitter.com\/lLIJnOi9v0","expanded_url":"http:\/\/twitter.com\/FredericaDale0\/status\/663728244688945152\/photo\/1","type":"photo","sizes":{"medium":{"w":560,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":560,"h":415,"resize":"fit"},"small":{"w":340,"h":251,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119665"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244663967745,"id_str":"663728244663967745","text":"https:\/\/t.co\/VVqAJ7DE1F","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189381448,"id_str":"189381448","name":"CARLOS MARIO GALLO","screen_name":"cmgallom","location":"Medellin Colombia","url":"http:\/\/calichemedellin.blogia.com\/","description":"Abogado especialista en derecho de familia","protected":false,"verified":false,"followers_count":410,"friends_count":729,"listed_count":2,"favourites_count":0,"statuses_count":5913,"created_at":"Sat Sep 11 03:05:43 +0000 2010","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602224227270275072\/GikGmddh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602224227270275072\/GikGmddh.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602219216566153216\/z6e_3Dvk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602219216566153216\/z6e_3Dvk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189381448\/1445091449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728243158163456,"id_str":"663728243158163456","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUhDWIAArttQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUhDWIAArttQ.jpg","url":"https:\/\/t.co\/VVqAJ7DE1F","display_url":"pic.twitter.com\/VVqAJ7DE1F","expanded_url":"http:\/\/twitter.com\/cmgallom\/status\/663728244663967745\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":481,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"large":{"w":960,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728243158163456,"id_str":"663728243158163456","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUhDWIAArttQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUhDWIAArttQ.jpg","url":"https:\/\/t.co\/VVqAJ7DE1F","display_url":"pic.twitter.com\/VVqAJ7DE1F","expanded_url":"http:\/\/twitter.com\/cmgallom\/status\/663728244663967745\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":481,"resize":"fit"},"small":{"w":340,"h":272,"resize":"fit"},"large":{"w":960,"h":770,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080119659"} +{"delete":{"status":{"id":663724276843986945,"id_str":"663724276843986945","user_id":3059511797,"user_id_str":"3059511797"},"timestamp_ms":"1447080120048"}} +{"delete":{"status":{"id":659757413201870848,"id_str":"659757413201870848","user_id":57681449,"user_id_str":"57681449"},"timestamp_ms":"1447080120155"}} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244684922880,"id_str":"663728244684922880","text":"That's all me..... @Tiff_is_craxk \ud83c\udf8e https:\/\/t.co\/yBFi5MLw9u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2861068565,"id_str":"2861068565","name":"Jizz Brown","screen_name":"InGawdWeLust","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":89,"friends_count":63,"listed_count":0,"favourites_count":272,"statuses_count":5480,"created_at":"Tue Nov 04 17:48:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707696030474240\/MRy4cxmv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707696030474240\/MRy4cxmv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861068565\/1446823446","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tiff_is_craxk","name":"Mrs. Tiffany Brown.","id":22661554,"id_str":"22661554","indices":[19,33]}],"symbols":[],"media":[{"id":663728240574521344,"id_str":"663728240574521344","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUXbW4AA5t7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUXbW4AA5t7Q.jpg","url":"https:\/\/t.co\/yBFi5MLw9u","display_url":"pic.twitter.com\/yBFi5MLw9u","expanded_url":"http:\/\/twitter.com\/InGawdWeLust\/status\/663728244684922880\/photo\/1","type":"photo","sizes":{"large":{"w":487,"h":427,"resize":"fit"},"medium":{"w":487,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":298,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728240574521344,"id_str":"663728240574521344","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUXbW4AA5t7Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUXbW4AA5t7Q.jpg","url":"https:\/\/t.co\/yBFi5MLw9u","display_url":"pic.twitter.com\/yBFi5MLw9u","expanded_url":"http:\/\/twitter.com\/InGawdWeLust\/status\/663728244684922880\/photo\/1","type":"photo","sizes":{"large":{"w":487,"h":427,"resize":"fit"},"medium":{"w":487,"h":427,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":298,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080119664"} +{"created_at":"Mon Nov 09 14:41:59 +0000 2015","id":663728244668010496,"id_str":"663728244668010496","text":"QEmKOBgG","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":794657658,"id_str":"794657658","name":"FullyFunctionalPhil","screen_name":"FunctionalPhil","location":null,"url":"http:\/\/books.google.com\/books?id=Nhe2yvx6hP8C&lpg=PT591&ots=K2OAWlZ9kh&dq=fully%20functional%20phil&pg=PT591#v=onepage&q=fully%20functional%20phil&f=false","description":null,"protected":false,"verified":false,"followers_count":31,"friends_count":4,"listed_count":108,"favourites_count":0,"statuses_count":655425,"created_at":"Fri Aug 31 20:57:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2563485689\/Haskell_logo7000_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2563485689\/Haskell_logo7000_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080119660"} +{"delete":{"status":{"id":658123392034344960,"id_str":"658123392034344960","user_id":2783998831,"user_id_str":"2783998831"},"timestamp_ms":"1447080120411"}} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866676736,"id_str":"663728248866676736","text":"RT @TheVampsCon: Ello Germany :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":221213459,"id_str":"221213459","name":"Ana","screen_name":"Anitbrb","location":"Venezuela","url":null,"description":"My life belongs to God","protected":false,"verified":false,"followers_count":202,"friends_count":747,"listed_count":1,"favourites_count":900,"statuses_count":5576,"created_at":"Tue Nov 30 01:35:09 +0000 2010","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661003780528447488\/l6PMtP3P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661003780528447488\/l6PMtP3P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/221213459\/1446564799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:57:25 +0000 2015","id":663686829120610304,"id_str":"663686829120610304","text":"Ello Germany :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":495074577,"id_str":"495074577","name":"Connor Ball","screen_name":"TheVampsCon","location":"Born in Scotland","url":"http:\/\/TheVamps.net","description":"19. Connor Samuel John Ball. I try to play the low notes in The Vamps. I love chips a bit too much #VampsRevolution @TheVampsBand","protected":false,"verified":true,"followers_count":1517225,"friends_count":16527,"listed_count":6073,"favourites_count":9876,"statuses_count":8672,"created_at":"Fri Feb 17 15:32:08 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000039764332\/f1831f67f85ff15955c14e6e13305002.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000039764332\/f1831f67f85ff15955c14e6e13305002.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A94547","profile_text_color":"584B55","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653757023595692032\/Xdkso3M2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653757023595692032\/Xdkso3M2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/495074577\/1445097353","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1044,"favorite_count":2159,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheVampsCon","name":"Connor Ball","id":495074577,"id_str":"495074577","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248849846272,"id_str":"663728248849846272","text":"RT @taysheartbeat: @taylorswift13 Favorite Female Artist - Pop\/Rock #AMAs 20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323489349,"id_str":"3323489349","name":"Monalisa","screen_name":"mortuni","location":"Born in 1989.","url":"http:\/\/taylorswift.com","description":"@taylorswift13","protected":false,"verified":false,"followers_count":52,"friends_count":75,"listed_count":0,"favourites_count":45,"statuses_count":1918,"created_at":"Sat Jun 13 19:36:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621091409471401984\/I7TRHVjz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621091409471401984\/I7TRHVjz.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727183312101376\/Qkz-5qS1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727183312101376\/Qkz-5qS1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323489349\/1443564453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:46 +0000 2015","id":663726677822799872,"id_str":"663726677822799872","text":"@taylorswift13 Favorite Female Artist - Pop\/Rock #AMAs 20","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":17919972,"in_reply_to_user_id_str":"17919972","in_reply_to_screen_name":"taylorswift13","user":{"id":2441104440,"id_str":"2441104440","name":"\u2665\ufe0e","screen_name":"taysheartbeat","location":"taylor followed 5\/28\/15","url":"http:\/\/swiftastrophe.tumblr.com","description":"x you are the person who survived a bunch of rainstorms and kept walking x est 4\/13\/15 \u00ab mnl, ph \u00bb","protected":false,"verified":false,"followers_count":511,"friends_count":633,"listed_count":3,"favourites_count":203,"statuses_count":2800,"created_at":"Sun Apr 13 05:50:42 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619124016628936704\/0QPiYctP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619124016628936704\/0QPiYctP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2441104440\/1436445643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[49,54]}],"urls":[],"user_mentions":[{"screen_name":"taylorswift13","name":"Taylor Swift","id":17919972,"id_str":"17919972","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ro"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AMAs","indices":[68,73]}],"urls":[],"user_mentions":[{"screen_name":"taysheartbeat","name":"\u2665\ufe0e","id":2441104440,"id_str":"2441104440","indices":[3,17]},{"screen_name":"taylorswift13","name":"Taylor Swift","id":17919972,"id_str":"17919972","indices":[19,33]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ro","timestamp_ms":"1447080120657"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248849829888,"id_str":"663728248849829888","text":"Mhiyang0529: LopezCrz: chezcapadilla: kathnielquotes_: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitennicell4: #PushAward\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3177624644,"id_str":"3177624644","name":"LOYAL AND SOLID KNF","screen_name":"annamae_25","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":42,"friends_count":138,"listed_count":10,"favourites_count":112,"statuses_count":31336,"created_at":"Mon Apr 27 08:31:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592608504189358082\/LEjJuN0S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592608504189358082\/LEjJuN0S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3177624644\/1430123895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAward","indices":[129,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080120657"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248875057154,"id_str":"663728248875057154","text":"\u062a\u0639\u0644\u0645\u062a \u0645\u0646 #\u0627\u0644\u0627\u0632\u0647\u0631 \u0627\u0644\u0634\u0631\u064a\u0641 \u0627\u0646 \u0627\u062d\u062a\u0631\u0645 \u0645\u0639\u062a\u0642\u062f\u0627\u062a \u0627\u0644\u0622\u062e\u0631\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2916821750,"id_str":"2916821750","name":"mohamd hilf","screen_name":"HelfMohamd","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2154,"friends_count":2091,"listed_count":0,"favourites_count":2720,"statuses_count":4994,"created_at":"Tue Dec 02 17:08:46 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"he","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652187141708062720\/sewun5vV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652187141708062720\/sewun5vV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2916821750\/1443412434","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0632\u0647\u0631","indices":[9,16]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858255360,"id_str":"663728248858255360","text":"@CherylLeigh221 Happy Monday Cheryl \u263a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663713334705979392,"in_reply_to_status_id_str":"663713334705979392","in_reply_to_user_id":360111442,"in_reply_to_user_id_str":"360111442","in_reply_to_screen_name":"CherylLeigh221","user":{"id":122737459,"id_str":"122737459","name":"Marie","screen_name":"MarieSoapFan","location":null,"url":null,"description":"\u2665 Love @michaeldamian1 \u2665 Love his music and movies \u2665 Can't wait to see @HighStrungMovie \u2665 #HSStreetCrew \u2665 #YR #GH #CedarCove \u2665 @hallmarkchannel \u2665 @hgtv","protected":false,"verified":false,"followers_count":3279,"friends_count":2929,"listed_count":42,"favourites_count":42256,"statuses_count":74205,"created_at":"Sat Mar 13 18:35:17 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/625050654696960000\/6jO5o4hY.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/625050654696960000\/6jO5o4hY.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663141799926468609\/4sjVyBV2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663141799926468609\/4sjVyBV2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122737459\/1445641471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CherylLeigh221","name":"Cheryl Leigh \u2661 \u2764\ufe0f","id":360111442,"id_str":"360111442","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866623488,"id_str":"663728248866623488","text":"RT @cuartopoder: El \u2018Parlament\u2019 aprueba iniciar el proceso para crear una rep\u00fablica catalana (Info y v\u00eddeos) https:\/\/t.co\/3rhW6LEW86 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426079880,"id_str":"426079880","name":"mtdp DUI","screen_name":"mtdp08230","location":"Catalunya","url":null,"description":"DUI","protected":false,"verified":false,"followers_count":1540,"friends_count":1319,"listed_count":45,"favourites_count":7856,"statuses_count":54848,"created_at":"Thu Dec 01 20:27:30 +0000 2011","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"ca","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648203928719499264\/UV0pqoP8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648203928719499264\/UV0pqoP8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426079880\/1348042803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:41 +0000 2015","id":663720618613989380,"id_str":"663720618613989380","text":"El \u2018Parlament\u2019 aprueba iniciar el proceso para crear una rep\u00fablica catalana (Info y v\u00eddeos) https:\/\/t.co\/3rhW6LEW86 https:\/\/t.co\/RtHGxcx8gk","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":25122127,"id_str":"25122127","name":"cuartopoder.es","screen_name":"cuartopoder","location":"Madrid, Espa\u00f1a","url":"http:\/\/www.cuartopoder.es","description":"Primer peri\u00f3dico de blogs en castellano (informaci\u00f3n, an\u00e1lisis y opini\u00f3n).","protected":false,"verified":false,"followers_count":46125,"friends_count":785,"listed_count":2183,"favourites_count":34,"statuses_count":17931,"created_at":"Wed Mar 18 18:22:43 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580643020271411200\/gleg1PiV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580643020271411200\/gleg1PiV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/25122127\/1437903311","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3rhW6LEW86","expanded_url":"http:\/\/www.cuartopoder.es\/multimedia\/2015\/11\/09\/el-parlament-aprueba-iniciar-le-proceso-para-crear-una-republica-catalana\/8337","display_url":"cuartopoder.es\/multimedia\/201\u2026","indices":[92,115]}],"user_mentions":[],"symbols":[],"media":[{"id":663720592353435649,"id_str":"663720592353435649","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","url":"https:\/\/t.co\/RtHGxcx8gk","display_url":"pic.twitter.com\/RtHGxcx8gk","expanded_url":"http:\/\/twitter.com\/cuartopoder\/status\/663720618613989380\/photo\/1","type":"photo","sizes":{"medium":{"w":534,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"},"large":{"w":534,"h":338,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720592353435649,"id_str":"663720592353435649","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","url":"https:\/\/t.co\/RtHGxcx8gk","display_url":"pic.twitter.com\/RtHGxcx8gk","expanded_url":"http:\/\/twitter.com\/cuartopoder\/status\/663720618613989380\/photo\/1","type":"photo","sizes":{"medium":{"w":534,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"},"large":{"w":534,"h":338,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3rhW6LEW86","expanded_url":"http:\/\/www.cuartopoder.es\/multimedia\/2015\/11\/09\/el-parlament-aprueba-iniciar-le-proceso-para-crear-una-republica-catalana\/8337","display_url":"cuartopoder.es\/multimedia\/201\u2026","indices":[109,132]}],"user_mentions":[{"screen_name":"cuartopoder","name":"cuartopoder.es","id":25122127,"id_str":"25122127","indices":[3,15]}],"symbols":[],"media":[{"id":663720592353435649,"id_str":"663720592353435649","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","url":"https:\/\/t.co\/RtHGxcx8gk","display_url":"pic.twitter.com\/RtHGxcx8gk","expanded_url":"http:\/\/twitter.com\/cuartopoder\/status\/663720618613989380\/photo\/1","type":"photo","sizes":{"medium":{"w":534,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"},"large":{"w":534,"h":338,"resize":"fit"}},"source_status_id":663720618613989380,"source_status_id_str":"663720618613989380","source_user_id":25122127,"source_user_id_str":"25122127"}]},"extended_entities":{"media":[{"id":663720592353435649,"id_str":"663720592353435649","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXLlWoAE2EIo.jpg","url":"https:\/\/t.co\/RtHGxcx8gk","display_url":"pic.twitter.com\/RtHGxcx8gk","expanded_url":"http:\/\/twitter.com\/cuartopoder\/status\/663720618613989380\/photo\/1","type":"photo","sizes":{"medium":{"w":534,"h":338,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":215,"resize":"fit"},"large":{"w":534,"h":338,"resize":"fit"}},"source_status_id":663720618613989380,"source_status_id_str":"663720618613989380","source_user_id":25122127,"source_user_id_str":"25122127"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248862429184,"id_str":"663728248862429184","text":"RT @FemaleStruggIes: current mood https:\/\/t.co\/VKG3wdRnEu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1314930554,"id_str":"1314930554","name":"Vlasi Pappas","screen_name":"vlasi41","location":null,"url":null,"description":"Basketball | Football | Avon","protected":false,"verified":false,"followers_count":576,"friends_count":937,"listed_count":0,"favourites_count":1144,"statuses_count":1597,"created_at":"Fri Mar 29 19:14:08 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663212780217061376\/6FZdNb70_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663212780217061376\/6FZdNb70_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1314930554\/1446957369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:19 +0000 2015","id":663726567420510208,"id_str":"663726567420510208","text":"current mood https:\/\/t.co\/VKG3wdRnEu","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1216071200,"id_str":"1216071200","name":"Female Struggles","screen_name":"FemaleStruggIes","location":null,"url":null,"description":"Being a girl is a struggle itself.. Tweet submissions & business: FemaleStruggles@live.com (Parody Account)","protected":false,"verified":false,"followers_count":540438,"friends_count":18,"listed_count":394,"favourites_count":432,"statuses_count":12512,"created_at":"Sun Feb 24 17:23:23 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539849576338173952\/8Bbqj1SJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539849576338173952\/8Bbqj1SJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1216071200\/1364760175","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":148,"favorite_count":108,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726567101702146,"id_str":"663726567101702146","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","url":"https:\/\/t.co\/VKG3wdRnEu","display_url":"pic.twitter.com\/VKG3wdRnEu","expanded_url":"http:\/\/twitter.com\/FemaleStruggIes\/status\/663726567420510208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":592,"h":448,"resize":"fit"},"medium":{"w":592,"h":448,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726567101702146,"id_str":"663726567101702146","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","url":"https:\/\/t.co\/VKG3wdRnEu","display_url":"pic.twitter.com\/VKG3wdRnEu","expanded_url":"http:\/\/twitter.com\/FemaleStruggIes\/status\/663726567420510208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":592,"h":448,"resize":"fit"},"medium":{"w":592,"h":448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FemaleStruggIes","name":"Female Struggles","id":1216071200,"id_str":"1216071200","indices":[3,19]}],"symbols":[],"media":[{"id":663726567101702146,"id_str":"663726567101702146","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","url":"https:\/\/t.co\/VKG3wdRnEu","display_url":"pic.twitter.com\/VKG3wdRnEu","expanded_url":"http:\/\/twitter.com\/FemaleStruggIes\/status\/663726567420510208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":592,"h":448,"resize":"fit"},"medium":{"w":592,"h":448,"resize":"fit"}},"source_status_id":663726567420510208,"source_status_id_str":"663726567420510208","source_user_id":1216071200,"source_user_id_str":"1216071200"}]},"extended_entities":{"media":[{"id":663726567101702146,"id_str":"663726567101702146","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHy9QWIAI61BY.jpg","url":"https:\/\/t.co\/VKG3wdRnEu","display_url":"pic.twitter.com\/VKG3wdRnEu","expanded_url":"http:\/\/twitter.com\/FemaleStruggIes\/status\/663726567420510208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":257,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":592,"h":448,"resize":"fit"},"medium":{"w":592,"h":448,"resize":"fit"}},"source_status_id":663726567420510208,"source_status_id_str":"663726567420510208","source_user_id":1216071200,"source_user_id_str":"1216071200"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120660"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248862429185,"id_str":"663728248862429185","text":"whoever voted Hell No, reveal yaself mf!! I want my fair one\ud83d\ude2d\ud83d\ude12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723415505866752,"in_reply_to_status_id_str":"663723415505866752","in_reply_to_user_id":290238294,"in_reply_to_user_id_str":"290238294","in_reply_to_screen_name":"_drsl","user":{"id":290238294,"id_str":"290238294","name":"AJED","screen_name":"_drsl","location":"snapchat: saliena2","url":null,"description":"lesbian.","protected":false,"verified":false,"followers_count":2323,"friends_count":1253,"listed_count":2,"favourites_count":304,"statuses_count":100786,"created_at":"Fri Apr 29 23:43:41 +0000 2011","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"33B2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/683344155\/3ed2b2921bf248b7b286fb417b499596.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/683344155\/3ed2b2921bf248b7b286fb417b499596.jpeg","profile_background_tile":true,"profile_link_color":"FC0DE4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"401815","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662904150095736832\/W3Lwq6is_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662904150095736832\/W3Lwq6is_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/290238294\/1447054837","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120660"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248874889217,"id_str":"663728248874889217","text":"RT @CoolPetVideo: Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3264631779,"id_str":"3264631779","name":"Megharaja Mayhou","screen_name":"gepahahurag","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":423,"friends_count":1389,"listed_count":8,"favourites_count":17418,"statuses_count":18716,"created_at":"Sun May 17 02:57:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645799938182483968\/rJufkEx__normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645799938182483968\/rJufkEx__normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:40 +0000 2015","id":663727159509299200,"id_str":"663727159509299200","text":"Why Guinea Pigs Make Good Pets - https:\/\/t.co\/g8yivMrHgY","source":"\u003ca href=\"http:\/\/coolpetvideos.com\" rel=\"nofollow\"\u003ecoolpetvideos\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214642571,"id_str":"3214642571","name":"Cool Pet Videos","screen_name":"CoolPetVideo","location":"Las Vegas, NV","url":"http:\/\/coolpetvideos.com","description":"Cool Pet Videos are updated every day bringing you the coolest pet videos of the day","protected":false,"verified":false,"followers_count":63002,"friends_count":766,"listed_count":1,"favourites_count":0,"statuses_count":675,"created_at":"Mon Apr 27 20:37:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662366245350539264\/0DdxcWiF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214642571\/1446755497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1950,"favorite_count":1221,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/g8yivMrHgY","expanded_url":"http:\/\/coolpetvideos.com\/why-guinea-pigs-make-good-pets\/","display_url":"coolpetvideos.com\/why-guinea-pig\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"CoolPetVideo","name":"Cool Pet Videos","id":3214642571,"id_str":"3214642571","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858288128,"id_str":"663728248858288128","text":"\u0645\u0633\u0627\u0621 \u0627\u0644\u0627\u0628\u062a\u0633\u0627\u0645\u0647.. https:\/\/t.co\/RBMpCJw4eG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3025459185,"id_str":"3025459185","name":"\u062f\u0646\u064a\u0627 \u0627\u0644\u0648\u0644\u0647\u0640","screen_name":"dnia_ksa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":134,"friends_count":225,"listed_count":0,"favourites_count":106,"statuses_count":252,"created_at":"Sun Feb 08 20:14:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725995741028352\/kSAK-yen_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725995741028352\/kSAK-yen_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3025459185\/1447080074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663611492605009920,"quoted_status_id_str":"663611492605009920","quoted_status":{"created_at":"Mon Nov 09 06:58:03 +0000 2015","id":663611492605009920,"id_str":"663611492605009920","text":"\u062c\u0645\u0627\u0644 \u0627\u0644\u0631\u0648\u062d \u0623\u0646 \u062a\u0628\u062a\u0633\u0645 \u060c\u060c \n\u0648\u062c\u0645\u0627\u0644 \u0627\u0644\u062e\u0644\u0642 \u0623\u0646 \u062a\u062f\u0639 \u063a\u064a\u0631\u0643 \u064a\u0628\u062a\u0633\u0645 \ud83c\udf39\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":529279875,"id_str":"529279875","name":"kuwait","screen_name":"kuwait322","location":null,"url":null,"description":"\u0637\u0628\u0639\u064a \u0633\u0645\u0648\u062d \u0648\u0644\u0627 \u0628\u063a\u064a\u062a \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u0639\u0627\u0628\u0631 \u0633\u0628\u064a\u0644 \u0648\u0636\u062d\u0643\u062a\u064a \u0631\u0627\u0633 \u0645\u0627\u0644\u064a","protected":false,"verified":false,"followers_count":1172,"friends_count":493,"listed_count":2,"favourites_count":2,"statuses_count":41978,"created_at":"Mon Mar 19 10:36:01 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2686122137\/cd7cdeac283b672319bb29efb648a0ee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2686122137\/cd7cdeac283b672319bb29efb648a0ee_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/529279875\/1438771435","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RBMpCJw4eG","expanded_url":"https:\/\/twitter.com\/kuwait322\/status\/663611492605009920","display_url":"twitter.com\/kuwait322\/stat\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887640064,"id_str":"663728248887640064","text":"RT @MadreAtipica: De 10 fotos que me saco salgo mal en 359.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":807019340,"id_str":"807019340","name":"Mayra Valdez","screen_name":"AntooValdez","location":null,"url":null,"description":"Geminiana\/\/constantemente cambiando. Estudiante del profesorado de M\u00fasica.","protected":false,"verified":false,"followers_count":665,"friends_count":483,"listed_count":2,"favourites_count":2870,"statuses_count":43545,"created_at":"Thu Sep 06 15:11:40 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/434341150078431233\/ciyaIOjd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/434341150078431233\/ciyaIOjd.jpeg","profile_background_tile":false,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661059668605870080\/jQ1X3aWL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661059668605870080\/jQ1X3aWL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/807019340\/1444018709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:14 +0000 2015","id":663725035065122816,"id_str":"663725035065122816","text":"De 10 fotos que me saco salgo mal en 359.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":299908473,"id_str":"299908473","name":"Moni","screen_name":"MadreAtipica","location":"Buenos Aires, Argentina","url":null,"description":"Si son Dardo o Maria Elena pasen. Parodia.","protected":false,"verified":false,"followers_count":1167680,"friends_count":582,"listed_count":593,"favourites_count":2567,"statuses_count":5738,"created_at":"Mon May 16 21:44:37 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662693238378209285\/XsRg573j.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662693238378209285\/XsRg573j.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663148534116564992\/Pa92g7Ne_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663148534116564992\/Pa92g7Ne_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/299908473\/1446833373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":303,"favorite_count":182,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MadreAtipica","name":"Moni","id":299908473,"id_str":"299908473","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858120193,"id_str":"663728248858120193","text":"its better to remain silent macam ni I guess but... hm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3378496213,"id_str":"3378496213","name":"tyo","screen_name":"tiyyosan","location":null,"url":null,"description":"kecil tapak tangan, nyiru ai tadahkan uhuks","protected":false,"verified":false,"followers_count":79,"friends_count":160,"listed_count":0,"favourites_count":128,"statuses_count":1797,"created_at":"Sat Aug 29 05:49:52 +0000 2015","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663029276095049728\/B0UNoJ-n.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663029276095049728\/B0UNoJ-n.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662222610122457088\/TqlAC9jM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662222610122457088\/TqlAC9jM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3378496213\/1447078635","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248874995712,"id_str":"663728248874995712","text":"\u5b9f\u969b\u63a5\u5ba2\u30d8\u30bf\u3060\u3063\u305f\u3057\u3001\u4eba\u3092\u898b\u4e0b\u3057\u3066\u308b\u611f\u3058\u3082\u3042\u3063\u305f\u3057","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":533316369,"id_str":"533316369","name":"( \uff65\u04e9\uff65 ) Lv.19","screen_name":"D_pop_corn","location":null,"url":null,"description":"18\u2191\u25c7\u304c\u71b1\u3044\u3002","protected":false,"verified":false,"followers_count":39,"friends_count":125,"listed_count":2,"favourites_count":1797,"statuses_count":23755,"created_at":"Thu Mar 22 15:26:00 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645242585796112384\/DzTAkGix_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645242585796112384\/DzTAkGix_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/533316369\/1348300641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120663"} +{"delete":{"status":{"id":370527587816062976,"id_str":"370527587816062976","user_id":1309771380,"user_id_str":"1309771380"},"timestamp_ms":"1447080120668"}} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870727680,"id_str":"663728248870727680","text":"\u3010\u885d\u6483\u3011\u95a2\u30b8\u30e3\u30cb\u221e\u300eTHE MUSIC DAY\u300f\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3001\u300c\u30ce\u30ea\u5bd2\u3044\u300d\u300c\u5b66\u82b8\u4f1a\u304b\u300d https:\/\/t.co\/GX3OWoW0w4","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3855151213,"id_str":"3855151213","name":"\uff0a\u5c0f\u7027\u671b\uff0aLOVE\uff0a","screen_name":"Al517I","location":null,"url":null,"description":"\u5c0f\u7027\u671b\u3055\u3093\u306e\u30d5\u30a1\u30f3\u3067\u3059(\u7b11) \u5143LIZLISA\u5e97\u54e1\uff64\u6b6f\u79d1\u52a9\u624b\u3067\u73fe\u5728\u306f\u90fd\u5185\u3067OL\u3084\u3063\u3066\u307e\u3059\u266a Twitter\u30fbLINE\u2605\u53cb\u9054\u52df\u96c6\u2605\u305c\u3072\u3068\u3082\u6c17\u8efd\u306b\u3088\u308d\u3057\u304f\u3067\u3059(*\u00b4\u2200\uff40*)","protected":false,"verified":false,"followers_count":129,"friends_count":209,"listed_count":0,"favourites_count":0,"statuses_count":2594,"created_at":"Sun Oct 11 05:15:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653128744375181312\/dbfPwFwG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653128744375181312\/dbfPwFwG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3855151213\/1444553013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GX3OWoW0w4","expanded_url":"http:\/\/jonny003entamez.seesaa.net","display_url":"jonny003entamez.seesaa.net","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858132481,"id_str":"663728248858132481","text":"kesian selena gomez \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":998690276,"id_str":"998690276","name":"mokujin","screen_name":"im4nn_","location":null,"url":null,"description":"\u200f\u200f\u0627\u064a\u0645\u0646 \u0646\u0628\u064a\u0644\u0647\u200f","protected":false,"verified":false,"followers_count":167,"friends_count":57,"listed_count":0,"favourites_count":1575,"statuses_count":6565,"created_at":"Sun Dec 09 06:13:47 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/465149788757839872\/bp4eboBc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/465149788757839872\/bp4eboBc.jpeg","profile_background_tile":false,"profile_link_color":"FA41AA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663380623763988480\/mCJ1Z4xA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663380623763988480\/mCJ1Z4xA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/998690276\/1446997507","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858148865,"id_str":"663728248858148865","text":"RT @81614hiranuma: \u660e\u65e5\u304b\u3089\u5b66\u6821\u3084\u30fc\ud83d\ude2d\n\u3067\u3082\u3001\u6587\u5316\u796d\u671f\u9593\u3067\u6388\u696d\u306a\u3044\u3057\u697d\u3084\ud83d\udc4d\n\u53bb\u5e74\u306e\u6587\u5316\u796d\u306e\u306a\u3064\u304b\u3057\u306e\u52d5\u753b\ud83d\ude01\n\u698e\u672c\u3001\u4eca\u5e74\u3082\u3084\u3089\u304b\u3057\u3066\u304f\u308c\uff08\u7b11\uff09 http:\/\/t.co\/egg8D7ykH5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3019034466,"id_str":"3019034466","name":"\u308c\u3044","screen_name":"6umv6z6VOoOGYXM","location":null,"url":null,"description":"\u5c0f\u91dd\u4e2d \/\u5143\u30c6\u30cb\u30b9\u90e8 \/\u6e58\u5357\u4e43\u98a8 \/\u30b2\u30b9\u306e\u6975\u307f\u4e59\u5973 \/\u30ef\u30f3\u30aa\u30af\u30ed\u30c3\u30af\/ \u4e09\u4ee3\u76eej soul brothers \/\u30aa\u30ec\u30f3\u30b8\u30ec\u30f3\u30b8 \/shock\uff0deye \/\u91ce\u7403\u5927\u597d\u304d\uff01\u5143\u4e0a\u5c3e\u30ea\u30c8\u30eb \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\uff01\u98a8\u4e00\u65cf\/\u91ce\u7403\u9ad8\u6821\uff5e\u793e\u4f1a\u4eba\u5927\u4e08\u592b\uff01","protected":false,"verified":false,"followers_count":138,"friends_count":189,"listed_count":0,"favourites_count":390,"statuses_count":402,"created_at":"Sat Feb 14 03:04:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661552406308630528\/qqQXxwWs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661552406308630528\/qqQXxwWs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3019034466\/1446367809","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Aug 30 12:51:09 +0000 2015","id":637970814336303104,"id_str":"637970814336303104","text":"\u660e\u65e5\u304b\u3089\u5b66\u6821\u3084\u30fc\ud83d\ude2d\n\u3067\u3082\u3001\u6587\u5316\u796d\u671f\u9593\u3067\u6388\u696d\u306a\u3044\u3057\u697d\u3084\ud83d\udc4d\n\u53bb\u5e74\u306e\u6587\u5316\u796d\u306e\u306a\u3064\u304b\u3057\u306e\u52d5\u753b\ud83d\ude01\n\u698e\u672c\u3001\u4eca\u5e74\u3082\u3084\u3089\u304b\u3057\u3066\u304f\u308c\uff08\u7b11\uff09 http:\/\/t.co\/egg8D7ykH5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2769435396,"id_str":"2769435396","name":"\u5e73\u6cbc\u7fd4\u592a","screen_name":"81614hiranuma","location":null,"url":null,"description":"\u6566\u8cc0\u6c17\u6bd4#1 \u301c\u5922\u3092\u73fe\u5b9f\u306b\u301c","protected":false,"verified":false,"followers_count":51046,"friends_count":19,"listed_count":84,"favourites_count":7396,"statuses_count":745,"created_at":"Tue Aug 26 08:32:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/504944691595329536\/Xb3OeN6F_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/504944691595329536\/Xb3OeN6F_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2769435396\/1410963110","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1834,"favorite_count":5318,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":637970541043838976,"id_str":"637970541043838976","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","url":"http:\/\/t.co\/egg8D7ykH5","display_url":"pic.twitter.com\/egg8D7ykH5","expanded_url":"http:\/\/twitter.com\/81614hiranuma\/status\/637970814336303104\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":270,"h":480,"resize":"fit"},"small":{"w":270,"h":480,"resize":"fit"},"large":{"w":270,"h":480,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":637970541043838976,"id_str":"637970541043838976","indices":[61,83],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","url":"http:\/\/t.co\/egg8D7ykH5","display_url":"pic.twitter.com\/egg8D7ykH5","expanded_url":"http:\/\/twitter.com\/81614hiranuma\/status\/637970814336303104\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":270,"h":480,"resize":"fit"},"small":{"w":270,"h":480,"resize":"fit"},"large":{"w":270,"h":480,"resize":"fit"}},"video_info":{"aspect_ratio":[9,16],"duration_millis":30022,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/vid\/180x320\/1XnPA7CVBcIbY0x9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/pl\/xHjYFAiEt9s9exOw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/vid\/180x320\/1XnPA7CVBcIbY0x9.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/pl\/xHjYFAiEt9s9exOw.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"81614hiranuma","name":"\u5e73\u6cbc\u7fd4\u592a","id":2769435396,"id_str":"2769435396","indices":[3,17]}],"symbols":[],"media":[{"id":637970541043838976,"id_str":"637970541043838976","indices":[80,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","url":"http:\/\/t.co\/egg8D7ykH5","display_url":"pic.twitter.com\/egg8D7ykH5","expanded_url":"http:\/\/twitter.com\/81614hiranuma\/status\/637970814336303104\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":270,"h":480,"resize":"fit"},"small":{"w":270,"h":480,"resize":"fit"},"large":{"w":270,"h":480,"resize":"fit"}},"source_status_id":637970814336303104,"source_status_id_str":"637970814336303104","source_user_id":2769435396,"source_user_id_str":"2769435396"}]},"extended_entities":{"media":[{"id":637970541043838976,"id_str":"637970541043838976","indices":[80,102],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/637970541043838976\/pu\/img\/napTXn4m-W0Zg6QQ.jpg","url":"http:\/\/t.co\/egg8D7ykH5","display_url":"pic.twitter.com\/egg8D7ykH5","expanded_url":"http:\/\/twitter.com\/81614hiranuma\/status\/637970814336303104\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":270,"h":480,"resize":"fit"},"small":{"w":270,"h":480,"resize":"fit"},"large":{"w":270,"h":480,"resize":"fit"}},"source_status_id":637970814336303104,"source_status_id_str":"637970814336303104","source_user_id":2769435396,"source_user_id_str":"2769435396","video_info":{"aspect_ratio":[9,16],"duration_millis":30022,"variants":[{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/vid\/180x320\/1XnPA7CVBcIbY0x9.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/pl\/xHjYFAiEt9s9exOw.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/vid\/180x320\/1XnPA7CVBcIbY0x9.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/637970541043838976\/pu\/pl\/xHjYFAiEt9s9exOw.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887492608,"id_str":"663728248887492608","text":"RT @Tye_lea: Tired like 256% of the time","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2379262867,"id_str":"2379262867","name":"Heather Medrano","screen_name":"Heatm11","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":516,"friends_count":472,"listed_count":0,"favourites_count":2748,"statuses_count":890,"created_at":"Sat Mar 08 20:15:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658683065409994752\/D_Nlfpzc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658683065409994752\/D_Nlfpzc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2379262867\/1446060352","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:35:35 +0000 2015","id":663575638779912192,"id_str":"663575638779912192","text":"Tired like 256% of the time","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":361525065,"id_str":"361525065","name":"tye lea","screen_name":"Tye_lea","location":null,"url":null,"description":"T E X A S T E C H \u2661 Zeta Tau Alpha\nhttp:\/\/texastechzta.com","protected":false,"verified":false,"followers_count":792,"friends_count":458,"listed_count":0,"favourites_count":6229,"statuses_count":5538,"created_at":"Wed Aug 24 22:42:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"96CC2B","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635824434398363648\/Q3iBpMOg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635824434398363648\/Q3iBpMOg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/361525065\/1436156055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Tye_lea","name":"tye lea","id":361525065,"id_str":"361525065","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858144769,"id_str":"663728248858144769","text":"@artvit9 Literally, it was a joke image that was from \"Google deep dream\"(search it). No reason to do all this shit.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727393094283264,"in_reply_to_status_id_str":"663727393094283264","in_reply_to_user_id":3623012652,"in_reply_to_user_id_str":"3623012652","in_reply_to_screen_name":"artvit9","user":{"id":3962015423,"id_str":"3962015423","name":"The Real MIC:LEE","screen_name":"IAmMiclee","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":158,"friends_count":466,"listed_count":0,"favourites_count":60,"statuses_count":273,"created_at":"Thu Oct 15 04:28:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654514519016931328\/PuNVHD-Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654514519016931328\/PuNVHD-Y_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"artvit9","name":"sva","id":3623012652,"id_str":"3623012652","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248879099904,"id_str":"663728248879099904","text":"RT @NAMOO_KKUN: \uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624\n\uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 #EXO \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 #2015MAMA \uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 #C\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2212245331,"id_str":"2212245331","name":"\u25b2\ub098\ube44","screen_name":"333Nammon","location":"BKK","url":null,"description":"\uc624\ube60~\ub108\ubb34 \uc0ac\ub791\ud574\uc694\n\u0e42\u0e25\u0e01\u0e2a\u0e48\u0e27\u0e19\u0e15\u0e31\u0e27\u0e2a\u0e39\u0e07\/ \u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e49\u0e32 \/ \u0e1b\u0e32\u0e01\u0e2b\u0e21\u0e32 \n*(kms)* \u0e44\u0e21\u0e48\u0e40\u0e2a\u0e37\u0e2d\u0e01\u0e19\u0e30\u0e04\u0e30.. -\u0e04\u0e19\u0e14\u0e35-","protected":false,"verified":false,"followers_count":18,"friends_count":264,"listed_count":0,"favourites_count":252,"statuses_count":6306,"created_at":"Sun Nov 24 10:08:56 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661633935319785472\/kRhBtF7g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661633935319785472\/kRhBtF7g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2212245331\/1446578336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:22 +0000 2015","id":663725068954894337,"id_str":"663725068954894337","text":"\uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624\n\uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 #EXO \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 #2015MAMA \uc544\uc384\uc774 \uc774\uc5d1\uc2a4 \uc720\uc384\uc774 \uc624 \uc774\uc5d1\uc2a4 \uc624 \uc774\uc5d1\uc2a4 \uc624 #CALLLMEBABY \uc774\uc5d1\uc2a4 \uc624","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":486322249,"id_str":"486322249","name":"\ud30c\uc0b0 \uafbc","screen_name":"NAMOO_KKUN","location":null,"url":null,"description":"\ubcfc\uac70\uc5c6\uc5b4\uc694 \ud314\ub85c\ud574\ub3c4 \uc2dc\ub044\ub7ec\uc6cc\uc694 \uc7a1\ub2f4\uacc4\uc815\nEXO-L","protected":false,"verified":false,"followers_count":105368,"friends_count":186,"listed_count":891,"favourites_count":1660,"statuses_count":20648,"created_at":"Wed Feb 08 05:11:26 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657769312661274624\/bmQa08V9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657769312661274624\/bmQa08V9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/486322249\/1444180625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":135,"favorite_count":2,"entities":{"hashtags":[{"text":"EXO","indices":[67,71]},{"text":"2015MAMA","indices":[85,94]},{"text":"CALLLMEBABY","indices":[121,133]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[83,87]},{"text":"2015MAMA","indices":[101,110]},{"text":"CALLLMEBABY","indices":[137,140]}],"urls":[],"user_mentions":[{"screen_name":"NAMOO_KKUN","name":"\ud30c\uc0b0 \uafbc","id":486322249,"id_str":"486322249","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080120664"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248874909697,"id_str":"663728248874909697","text":"RT @pat06191: #\uc778\ud53c\ub2c8\ud2b8 \uc0c1\uc918\uc694 \uc0c1\ub2ec\ub77c\uace0 \uc774\ubc88 #2015MAMA \uc5d0\uc11c \ubc15\uc218\uc154\ud2c0\ub530\uc704 \uc548\ud558\uac8c \uc0c1\ub2ec\ub77c\uad6c\uc694 \uc73c\uc544\uc544\uc544\uc544\uc544\uc544\uc544\uc559\uc544\uc559\uc544 #INFINITE \uc0c1\uc8fc\uc138\uc5ec\u3161\uc73c\u315c\u3147\uc5c9\uc5c9\uc5c9\uc751\uc5c9\u3147\uc5b4\uc751\uc6c5\uc5c9\uc5c9\u3147 \uc0c1\uc548\uc8fc\uba74 \ub2f9\uc2e0\ub124\ub4e4\uc740 \uc815\ub9d0 #BAD \ud55c \uc0ac\ub78c\ub4e4\uc774\uc57c \ud55c\uae00\ub860 #\ubc30\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1251460422,"id_str":"1251460422","name":"[\ub3d9\uacb0\/\uacfc\uc790\uc5f0\ud569 \uc591\ud30c\ub9c1] \uc6d0\ud558\ub2e4,\ub85c\uc57c","screen_name":"Hope_LoyA","location":"\uc11c\uc6b8, \uc778\ud53c\ub2c8\ud2b8 \ub9c8\uc74c \uc18d","url":null,"description":"\u261e(\ud638)\uc6d0\ud558\ub2e4, \ub85c\uc57c LoyA\u261c\n18\uc5d8\ud638\uc62c\uc218\ub2c8 \u2605 \uc6b0\uad6c\uce60\uc774\uc5b8\ub2c8 \ud32c1\ud638 \/ \ub0b4 \ub9c8\ub204\ub77c \ud3ec\ud22c\uc5b8\ub2c8 \/ \ucc98\uc74c\uace0\ubc31\ud55c \ucf69\ub4e4\uc5b8\ub2c8\n\u26052015.8.9 INFINITE \ucc98\uc74c \ubcf8 \ub0a0\u2605\n\u26062015.10.31 \uaddc\ubca0\ub2c8&\ub3d9\uc6b0\uc2a4\ub098\ube44 \ubcf8 \ub0a0\u2606\n\u25b6Destiny 7.16 \ub85c\uc57c \uc0dd\uc77c\u25c0","protected":false,"verified":false,"followers_count":213,"friends_count":694,"listed_count":1,"favourites_count":773,"statuses_count":7859,"created_at":"Fri Mar 08 11:27:32 +0000 2013","utc_offset":28800,"time_zone":"Ulaan Bataar","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663284179442921472\/ioPNhfV8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663284179442921472\/ioPNhfV8_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251460422\/1444566742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:42 +0000 2015","id":663726664224915456,"id_str":"663726664224915456","text":"#\uc778\ud53c\ub2c8\ud2b8 \uc0c1\uc918\uc694 \uc0c1\ub2ec\ub77c\uace0 \uc774\ubc88 #2015MAMA \uc5d0\uc11c \ubc15\uc218\uc154\ud2c0\ub530\uc704 \uc548\ud558\uac8c \uc0c1\ub2ec\ub77c\uad6c\uc694 \uc73c\uc544\uc544\uc544\uc544\uc544\uc544\uc544\uc559\uc544\uc559\uc544 #INFINITE \uc0c1\uc8fc\uc138\uc5ec\u3161\uc73c\u315c\u3147\uc5c9\uc5c9\uc5c9\uc751\uc5c9\u3147\uc5b4\uc751\uc6c5\uc5c9\uc5c9\u3147 \uc0c1\uc548\uc8fc\uba74 \ub2f9\uc2e0\ub124\ub4e4\uc740 \uc815\ub9d0 #BAD \ud55c \uc0ac\ub78c\ub4e4\uc774\uc57c \ud55c\uae00\ub860 #\ubc30\ub4dc \ud558\ub2e4\uace0!!!!! \uc73c\uc54c\u3139\u3131","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2556343933,"id_str":"2556343933","name":"\uc131\uaddc\uc57c\uc6b0\ucb48\ucb48","screen_name":"pat06191","location":null,"url":null,"description":"7\uba85 \ubaa8\ub450 \uc0ac\ub791\ud558\uace0 \uc560\ub07c\ub294 16 \uba54\ubcf4\uc62c\uc218\ub2c8\uc785\ub2c8\u31376 \u2661 \/ \uaddc\ucb48\ub77c\uace0 \ubd88\ub7ec\uc918\uc694 \ub028\ub028","protected":false,"verified":false,"followers_count":63,"friends_count":220,"listed_count":0,"favourites_count":154,"statuses_count":1676,"created_at":"Mon Jun 09 07:28:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661054756782141440\/9_gM1juJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661054756782141440\/9_gM1juJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2556343933\/1446442709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[0,5]},{"text":"2015MAMA","indices":[18,27]},{"text":"INFINITE","indices":[61,70]},{"text":"BAD","indices":[106,110]},{"text":"\ubc30\ub4dc","indices":[123,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc778\ud53c\ub2c8\ud2b8","indices":[14,19]},{"text":"2015MAMA","indices":[32,41]},{"text":"INFINITE","indices":[75,84]},{"text":"BAD","indices":[120,124]},{"text":"\ubc30\ub4dc","indices":[137,140]}],"urls":[],"user_mentions":[{"screen_name":"pat06191","name":"\uc131\uaddc\uc57c\uc6b0\ucb48\ucb48","id":2556343933,"id_str":"2556343933","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870715392,"id_str":"663728248870715392","text":"RT @dhanjeetk3: Hilarious Comics About Sex\nhttps:\/\/t.co\/57BXBLwbBl https:\/\/t.co\/z1HPM5vRP2","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3737723354,"id_str":"3737723354","name":"the power of world","screen_name":"moviecare420","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9047,"friends_count":7558,"listed_count":5,"favourites_count":0,"statuses_count":31,"created_at":"Wed Sep 30 14:33:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649239652730208256\/gkhtAvRZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649239652730208256\/gkhtAvRZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3737723354\/1443932886","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:34:01 +0000 2015","id":663635643445043200,"id_str":"663635643445043200","text":"Hilarious Comics About Sex\nhttps:\/\/t.co\/57BXBLwbBl https:\/\/t.co\/z1HPM5vRP2","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2940981056,"id_str":"2940981056","name":"Dhanjeet Jee","screen_name":"dhanjeetk3","location":"Islampur Patna (INDIA)","url":null,"description":"Always be labour hard for your great success !!","protected":false,"verified":false,"followers_count":15185,"friends_count":15918,"listed_count":22,"favourites_count":8,"statuses_count":741,"created_at":"Tue Dec 23 16:34:34 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650317829275672576\/qKSxfjZE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650317829275672576\/qKSxfjZE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2940981056\/1443838116","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/57BXBLwbBl","expanded_url":"http:\/\/bit.ly\/1WLgRky","display_url":"bit.ly\/1WLgRky","indices":[27,50]}],"user_mentions":[],"symbols":[],"media":[{"id":663635491468804096,"id_str":"663635491468804096","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","url":"https:\/\/t.co\/z1HPM5vRP2","display_url":"pic.twitter.com\/z1HPM5vRP2","expanded_url":"http:\/\/twitter.com\/dhanjeetk3\/status\/663635643445043200\/photo\/1","type":"photo","sizes":{"medium":{"w":310,"h":163,"resize":"fit"},"small":{"w":310,"h":163,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":310,"h":163,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663635491468804096,"id_str":"663635491468804096","indices":[51,74],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","url":"https:\/\/t.co\/z1HPM5vRP2","display_url":"pic.twitter.com\/z1HPM5vRP2","expanded_url":"http:\/\/twitter.com\/dhanjeetk3\/status\/663635643445043200\/photo\/1","type":"photo","sizes":{"medium":{"w":310,"h":163,"resize":"fit"},"small":{"w":310,"h":163,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":310,"h":163,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/57BXBLwbBl","expanded_url":"http:\/\/bit.ly\/1WLgRky","display_url":"bit.ly\/1WLgRky","indices":[43,66]}],"user_mentions":[{"screen_name":"dhanjeetk3","name":"Dhanjeet Jee","id":2940981056,"id_str":"2940981056","indices":[3,14]}],"symbols":[],"media":[{"id":663635491468804096,"id_str":"663635491468804096","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","url":"https:\/\/t.co\/z1HPM5vRP2","display_url":"pic.twitter.com\/z1HPM5vRP2","expanded_url":"http:\/\/twitter.com\/dhanjeetk3\/status\/663635643445043200\/photo\/1","type":"photo","sizes":{"medium":{"w":310,"h":163,"resize":"fit"},"small":{"w":310,"h":163,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":310,"h":163,"resize":"fit"}},"source_status_id":663635643445043200,"source_status_id_str":"663635643445043200","source_user_id":2940981056,"source_user_id_str":"2940981056"}]},"extended_entities":{"media":[{"id":663635491468804096,"id_str":"663635491468804096","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW09qFXAAAd5uP.jpg","url":"https:\/\/t.co\/z1HPM5vRP2","display_url":"pic.twitter.com\/z1HPM5vRP2","expanded_url":"http:\/\/twitter.com\/dhanjeetk3\/status\/663635643445043200\/photo\/1","type":"photo","sizes":{"medium":{"w":310,"h":163,"resize":"fit"},"small":{"w":310,"h":163,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":310,"h":163,"resize":"fit"}},"source_status_id":663635643445043200,"source_status_id_str":"663635643445043200","source_user_id":2940981056,"source_user_id_str":"2940981056"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248854028288,"id_str":"663728248854028288","text":"@HarryHallam2000 aw thanks for reminding me","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728082747043840,"in_reply_to_status_id_str":"663728082747043840","in_reply_to_user_id":2765898165,"in_reply_to_user_id_str":"2765898165","in_reply_to_screen_name":"HarryHallam2000","user":{"id":1695031380,"id_str":"1695031380","name":"britney","screen_name":"_brittjadee","location":null,"url":null,"description":"my boyfriend","protected":false,"verified":false,"followers_count":142,"friends_count":280,"listed_count":0,"favourites_count":163,"statuses_count":199,"created_at":"Fri Aug 23 23:46:55 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648612961750228997\/HE4aglmr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648612961750228997\/HE4aglmr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1695031380\/1446341501","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"HarryHallam2000","name":"Harry","id":2765898165,"id_str":"2765898165","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120658"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858152960,"id_str":"663728248858152960","text":"RT @hopesniper: @hopesniper \uc815\uc885\uc12d, 1\ub144 6\uac1c\uc6d4 \ub3d9\uc548 \ubaa8\ub450 100\uc5b5 \uc6d0 \uac00\uae4c\uc6b4 \ub3c8\uc744 \uacbd\uc8fc\uc5d0 \uc9c0\uc6d0\n- \uc815\uc0c1\uc801\uc778 \ubc95\uce58\uac00 \uc801\uc6a9\ub41c\ub2e4\uba74 \uc0ac\uc804\uc120\uac70\uc6b4\ub3d9 \ud589\uc704\ub85c \uc0ac\ubc95\ucc98\ub9ac\ud574\ub3c4 \ubb34\ub09c\ud560 \ub4ef.. https:\/\/t.co\/dIY0o5hyus","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3569917214,"id_str":"3569917214","name":"\uc5ec\uae30\uc0b0","screen_name":"T4Pxovjmiph2Zyl","location":null,"url":null,"description":"\ub3c5\uc7ac\ub77c\ub294 \uac83\uc5d0 \uc2e0\ubb3c\ub098\ub294\ub370, \ub3c5\uc7ac\uc790\uc758 \ub538\uc774 \uc124\uccd0\ub300\ub2c8\u11a2\uc815\ub9d0 \uc774 \ub098\ub77c\uc640 \uc808\ubc18\uc758 \uc560\uafb8\ub208 \uad6d\ubbfc\uc774 \ubc09\uace0 \uc2eb\ub2e4.","protected":false,"verified":false,"followers_count":687,"friends_count":1193,"listed_count":1,"favourites_count":9364,"statuses_count":15154,"created_at":"Tue Sep 15 09:21:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643717340190781440\/45Rb3Rj__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643717340190781440\/45Rb3Rj__normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:57:02 +0000 2015","id":663686732429160448,"id_str":"663686732429160448","text":"@hopesniper \uc815\uc885\uc12d, 1\ub144 6\uac1c\uc6d4 \ub3d9\uc548 \ubaa8\ub450 100\uc5b5 \uc6d0 \uac00\uae4c\uc6b4 \ub3c8\uc744 \uacbd\uc8fc\uc5d0 \uc9c0\uc6d0\n- \uc815\uc0c1\uc801\uc778 \ubc95\uce58\uac00 \uc801\uc6a9\ub41c\ub2e4\uba74 \uc0ac\uc804\uc120\uac70\uc6b4\ub3d9 \ud589\uc704\ub85c \uc0ac\ubc95\ucc98\ub9ac\ud574\ub3c4 \ubb34\ub09c\ud560 \ub4ef.. https:\/\/t.co\/dIY0o5hyus","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663686195415678976,"in_reply_to_status_id_str":"663686195415678976","in_reply_to_user_id":3092619374,"in_reply_to_user_id_str":"3092619374","in_reply_to_screen_name":"hopesniper","user":{"id":3092619374,"id_str":"3092619374","name":"hopesniper","screen_name":"hopesniper","location":null,"url":null,"description":"\uc5ed\uc0ac\ub97c \uc78a\uc740 \ubbfc\uc871\uc5d0\uac8c \ubbf8\ub798\ub294 \uc5c6\ub2e4. \uc778\uc0dd\uc740 \uc544\ub984\ub2f5\uace0 \uc5ed\uc0ac\ub294 \ubc1c\uc804\ud55c\ub2e4.","protected":false,"verified":false,"followers_count":4854,"friends_count":3067,"listed_count":13,"favourites_count":767,"statuses_count":4840,"created_at":"Tue Mar 17 06:55:39 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638253465337098240\/aHZhOJd5.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638253465337098240\/aHZhOJd5.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577728812013633536\/lMAN1g4m_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577728812013633536\/lMAN1g4m_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hopesniper","name":"hopesniper","id":3092619374,"id_str":"3092619374","indices":[0,11]}],"symbols":[],"media":[{"id":663686710128078850,"id_str":"663686710128078850","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663686710128078850,"id_str":"663686710128078850","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":663686711663132672,"id_str":"663686711663132672","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjjELUAAAXh1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjjELUAAAXh1Q.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":663686729828732932,"id_str":"663686729828732932","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjkH2VEAQyvVV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjkH2VEAQyvVV.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"large":{"w":641,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}},{"id":663686712808181761,"id_str":"663686712808181761","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjjIcUEAE9IwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjjIcUEAE9IwG.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"large":{"w":641,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hopesniper","name":"hopesniper","id":3092619374,"id_str":"3092619374","indices":[3,14]},{"screen_name":"hopesniper","name":"hopesniper","id":3092619374,"id_str":"3092619374","indices":[16,27]}],"symbols":[],"media":[{"id":663686710128078850,"id_str":"663686710128078850","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663686732429160448,"source_status_id_str":"663686732429160448","source_user_id":3092619374,"source_user_id_str":"3092619374"}]},"extended_entities":{"media":[{"id":663686710128078850,"id_str":"663686710128078850","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXji-dU8AILirM.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663686732429160448,"source_status_id_str":"663686732429160448","source_user_id":3092619374,"source_user_id_str":"3092619374"},{"id":663686711663132672,"id_str":"663686711663132672","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjjELUAAAXh1Q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjjELUAAAXh1Q.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":663686732429160448,"source_status_id_str":"663686732429160448","source_user_id":3092619374,"source_user_id_str":"3092619374"},{"id":663686729828732932,"id_str":"663686729828732932","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjkH2VEAQyvVV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjkH2VEAQyvVV.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"large":{"w":641,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663686732429160448,"source_status_id_str":"663686732429160448","source_user_id":3092619374,"source_user_id_str":"3092619374"},{"id":663686712808181761,"id_str":"663686712808181761","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXjjIcUEAE9IwG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXjjIcUEAE9IwG.jpg","url":"https:\/\/t.co\/dIY0o5hyus","display_url":"pic.twitter.com\/dIY0o5hyus","expanded_url":"http:\/\/twitter.com\/hopesniper\/status\/663686732429160448\/photo\/1","type":"photo","sizes":{"large":{"w":641,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663686732429160448,"source_status_id_str":"663686732429160448","source_user_id":3092619374,"source_user_id_str":"3092619374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248854048768,"id_str":"663728248854048768","text":"RT @hiiiv_5: \u062a\u062c\u0627\u0631\u0628 \u062d\u0642\u064a\u0628\u0629 \u062a\u062e\u0633\u064a\u0633 \n\n\ud83d\udc47\ud83d\udc47\n\u062e\u0644\u0627\u0644 \u0662\u0661\u064a\u0648\u0645 \u0641\u0642\u0637 \u062a\u062e\u0633 \u0645\u0627\u0628\u064a\u0646 (\u0664-\u0669\u0643\u064a\u0644\u0648\n\n\ud83d\udc47\ud83d\udc47\ud83c\udf39\n\u0644\u0637\u0644\u0628 \u062e\u0627\u0635 https:\/\/t.co\/6gbVk9we4m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4085866138,"id_str":"4085866138","name":"7LM","screen_name":"7lmxq","location":"\u0635\u0648\u0631 \u0646\u0633\u0627\u0626\u064a\u0629 \u274c","url":null,"description":"\u0644\u0645 \u0672\u0639\u062a\u062f \u0672\u0628\u0640\u0653\u062f\u0627\u064b \u0627\u0644\u0625\u0646\u062d\u064e\u0646\u0627\u0621\u0619 \u0639\u0644\u0649 \u06ab\u062a\u0641 \u0672\u062d\u062f \u0672\u0646\u0627 \u0672\u062a\u0640\u0623\u0644\u0640\u0645 \u062f\u0648\u0645\u0640\u0627\u064b\u2765 \u0648\u0628\u0635\u0631\u0650\u064a\u0653 \u0645\u064f\u0631\u067a\u0641\u0639 \u0644\u0644\u0633\u0645\u0627\u0621\u0653 \u2765","protected":false,"verified":false,"followers_count":192,"friends_count":41,"listed_count":0,"favourites_count":94,"statuses_count":841,"created_at":"Sat Oct 31 23:09:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663316303273459712\/wxHPqnYT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663316303273459712\/wxHPqnYT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4085866138\/1446353090","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:14 +0000 2015","id":663701882444099584,"id_str":"663701882444099584","text":"\u062a\u062c\u0627\u0631\u0628 \u062d\u0642\u064a\u0628\u0629 \u062a\u062e\u0633\u064a\u0633 \n\n\ud83d\udc47\ud83d\udc47\n\u062e\u0644\u0627\u0644 \u0662\u0661\u064a\u0648\u0645 \u0641\u0642\u0637 \u062a\u062e\u0633 \u0645\u0627\u0628\u064a\u0646 (\u0664-\u0669\u0643\u064a\u0644\u0648\n\n\ud83d\udc47\ud83d\udc47\ud83c\udf39\n\u0644\u0637\u0644\u0628 \u062e\u0627\u0635 https:\/\/t.co\/6gbVk9we4m","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2535913212,"id_str":"2535913212","name":"\u062e\u064f\u0631\u0627\u0641\u064a\u0629\u0652","screen_name":"hiiiv_5","location":null,"url":null,"description":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u2764\ufe0f \u0631\u062a\u0648\u064a\u062a \u062a\u0648\u0648\u0648\u0648\u0642\u0641 \u0628\u0639\u062f \u0642\u0644\u064a\u0644 \u0646\u0631\u062c\u0639 \u0644\u0631\u062a\u0648\u064a\u062a","protected":false,"verified":false,"followers_count":81729,"friends_count":75853,"listed_count":72,"favourites_count":1837,"statuses_count":190432,"created_at":"Fri May 30 22:07:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654765412731650052\/NJ7MihbI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654765412731650052\/NJ7MihbI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2535913212\/1447073616","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663701796305678336,"id_str":"663701796305678336","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":750,"h":740,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701796305678336,"id_str":"663701796305678336","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":750,"h":740,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}}},{"id":663701797794631681,"id_str":"663701797794631681","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRMZWUAE85h5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRMZWUAE85h5.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":741,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}}},{"id":663701803796733952,"id_str":"663701803796733952","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRiwXIAAIibl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRiwXIAAIibl.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":582,"resize":"fit"},"large":{"w":750,"h":728,"resize":"fit"}}},{"id":663701803347943424,"id_str":"663701803347943424","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRhFXIAAAmWm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRhFXIAAAmWm.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hiiiv_5","name":"\u062e\u064f\u0631\u0627\u0641\u064a\u0629\u0652","id":2535913212,"id_str":"2535913212","indices":[3,11]}],"symbols":[],"media":[{"id":663701796305678336,"id_str":"663701796305678336","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":750,"h":740,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}},"source_status_id":663701882444099584,"source_status_id_str":"663701882444099584","source_user_id":2535913212,"source_user_id_str":"2535913212"}]},"extended_entities":{"media":[{"id":663701796305678336,"id_str":"663701796305678336","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRG2WsAA62wo.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":750,"h":740,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}},"source_status_id":663701882444099584,"source_status_id_str":"663701882444099584","source_user_id":2535913212,"source_user_id_str":"2535913212"},{"id":663701797794631681,"id_str":"663701797794631681","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRMZWUAE85h5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRMZWUAE85h5.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"large":{"w":750,"h":741,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"}},"source_status_id":663701882444099584,"source_status_id_str":"663701882444099584","source_user_id":2535913212,"source_user_id_str":"2535913212"},{"id":663701803796733952,"id_str":"663701803796733952","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRiwXIAAIibl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRiwXIAAIibl.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":330,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":582,"resize":"fit"},"large":{"w":750,"h":728,"resize":"fit"}},"source_status_id":663701882444099584,"source_status_id_str":"663701882444099584","source_user_id":2535913212,"source_user_id_str":"2535913212"},{"id":663701803347943424,"id_str":"663701803347943424","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxRhFXIAAAmWm.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxRhFXIAAAmWm.jpg","url":"https:\/\/t.co\/6gbVk9we4m","display_url":"pic.twitter.com\/6gbVk9we4m","expanded_url":"http:\/\/twitter.com\/hiiiv_5\/status\/663701882444099584\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}},"source_status_id":663701882444099584,"source_status_id_str":"663701882444099584","source_user_id":2535913212,"source_user_id_str":"2535913212"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080120658"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248875012097,"id_str":"663728248875012097","text":"Vaya tela","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":228355526,"id_str":"228355526","name":"Andy Sketch","screen_name":"_DirtyVersion_","location":"On the Murder Scene ","url":"http:\/\/andysketch.wix.com\/andysketch","description":"Guitar. Bass. Sing. Scream. Make music. Coffee. Fine Arts Student. Vegetarian. Anarchy. Punk. Leathermouth. FIATC. MCR. AgaintMe! Demisexual. Gender?what?","protected":false,"verified":false,"followers_count":642,"friends_count":1084,"listed_count":1,"favourites_count":3231,"statuses_count":9432,"created_at":"Sun Dec 19 13:36:20 +0000 2010","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526754047496179712\/9uSgQaLw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526754047496179712\/9uSgQaLw.jpeg","profile_background_tile":true,"profile_link_color":"800A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626547800487129088\/T_UQI0s8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626547800487129088\/T_UQI0s8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/228355526\/1445821340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248853958657,"id_str":"663728248853958657","text":"RT @HukbongJaDine: @JDFanmilyOFC XP #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185632649,"id_str":"185632649","name":"JaDine Fanmily OFC","screen_name":"JDFanmilyOFC","location":"Membership Form on the Link","url":"http:\/\/goo.gl\/forms\/JnO67Jf5bs","description":"ALL FOR LOVE! ALL FOR JADINE FANMILY! This fans club aims to connect JaDines all over the world!","protected":false,"verified":false,"followers_count":318,"friends_count":223,"listed_count":4,"favourites_count":1197,"statuses_count":16312,"created_at":"Wed Sep 01 13:23:28 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663334042998149120\/LSJZXGVB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663334042998149120\/LSJZXGVB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185632649\/1446986132","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:36 +0000 2015","id":663726387740745728,"id_str":"663726387740745728","text":"@JDFanmilyOFC XP #OTWOLWish","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724673683890176,"in_reply_to_status_id_str":"663724673683890176","in_reply_to_user_id":185632649,"in_reply_to_user_id_str":"185632649","in_reply_to_screen_name":"JDFanmilyOFC","user":{"id":2914747950,"id_str":"2914747950","name":"HUKBONGJADINE OFC","screen_name":"HukbongJaDine","location":"Philippines","url":"https:\/\/www.facebook.com\/Hukbong-JaDine-529997160437114\/","description":"Hukbong matatag, Hukbong di patitinag. Hukbong Forever Support @jamesxreid @hellobangsie","protected":false,"verified":false,"followers_count":837,"friends_count":961,"listed_count":2,"favourites_count":1082,"statuses_count":9059,"created_at":"Sun Nov 30 13:56:18 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/654587526770913281\/vPZOD1wR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/654587526770913281\/vPZOD1wR.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661936715976867840\/zPuwHJDY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661936715976867840\/zPuwHJDY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914747950\/1444898877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[17,27]}],"urls":[],"user_mentions":[{"screen_name":"JDFanmilyOFC","name":"JaDine Fanmily OFC","id":185632649,"id_str":"185632649","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"OTWOLWish","indices":[36,46]}],"urls":[],"user_mentions":[{"screen_name":"HukbongJaDine","name":"HUKBONGJADINE OFC","id":2914747950,"id_str":"2914747950","indices":[3,17]},{"screen_name":"JDFanmilyOFC","name":"JaDine Fanmily OFC","id":185632649,"id_str":"185632649","indices":[19,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080120658"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858083329,"id_str":"663728248858083329","text":"Got everything I got everything I cannot complain","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2371240496,"id_str":"2371240496","name":"al pal","screen_name":"alexmaze123","location":"runnells iowa","url":null,"description":"short af","protected":false,"verified":false,"followers_count":484,"friends_count":273,"listed_count":0,"favourites_count":5806,"statuses_count":6685,"created_at":"Tue Mar 04 02:20:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663214593997574145\/kcdQq5DA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663214593997574145\/kcdQq5DA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2371240496\/1443733732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248879251456,"id_str":"663728248879251456","text":"RT @AthletesBibIe: Don't Open \ud83d\ude07 https:\/\/t.co\/sJktwZ2aDj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975814815,"id_str":"2975814815","name":"Isaiah Helms","screen_name":"HelmsIsaiah","location":null,"url":null,"description":"Freshman Phil 4:13","protected":false,"verified":false,"followers_count":235,"friends_count":483,"listed_count":0,"favourites_count":2486,"statuses_count":660,"created_at":"Tue Jan 13 04:01:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649597919461511168\/J8sCWIcA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649597919461511168\/J8sCWIcA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975814815\/1442931474","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 23:29:58 +0000 2015","id":660237236546510848,"id_str":"660237236546510848","text":"Don't Open \ud83d\ude07 https:\/\/t.co\/sJktwZ2aDj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1038978475,"id_str":"1038978475","name":"Athletes Bible\u2122","screen_name":"AthletesBibIe","location":"\u2022 In The Gym \u2022","url":null,"description":"\u2022 Daily Motivation & Sports Highlights \u2022 Love is playing every game as if it were your last \u2022","protected":false,"verified":false,"followers_count":17280,"friends_count":16098,"listed_count":26,"favourites_count":76,"statuses_count":153,"created_at":"Thu Dec 27 06:27:47 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659158715342417920\/f1rtEe45_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659158715342417920\/f1rtEe45_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1038978475\/1445106678","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3117,"favorite_count":627,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":660237230674452480,"id_str":"660237230674452480","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","url":"https:\/\/t.co\/sJktwZ2aDj","display_url":"pic.twitter.com\/sJktwZ2aDj","expanded_url":"http:\/\/twitter.com\/AthletesBibIe\/status\/660237236546510848\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":660237230674452480,"id_str":"660237230674452480","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","url":"https:\/\/t.co\/sJktwZ2aDj","display_url":"pic.twitter.com\/sJktwZ2aDj","expanded_url":"http:\/\/twitter.com\/AthletesBibIe\/status\/660237236546510848\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AthletesBibIe","name":"Athletes Bible\u2122","id":1038978475,"id_str":"1038978475","indices":[3,17]}],"symbols":[],"media":[{"id":660237230674452480,"id_str":"660237230674452480","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","url":"https:\/\/t.co\/sJktwZ2aDj","display_url":"pic.twitter.com\/sJktwZ2aDj","expanded_url":"http:\/\/twitter.com\/AthletesBibIe\/status\/660237236546510848\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660237236546510848,"source_status_id_str":"660237236546510848","source_user_id":1038978475,"source_user_id_str":"1038978475"}]},"extended_entities":{"media":[{"id":660237230674452480,"id_str":"660237230674452480","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSmiQ2HWoAAGllc.jpg","url":"https:\/\/t.co\/sJktwZ2aDj","display_url":"pic.twitter.com\/sJktwZ2aDj","expanded_url":"http:\/\/twitter.com\/AthletesBibIe\/status\/660237236546510848\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":660237236546510848,"source_status_id_str":"660237236546510848","source_user_id":1038978475,"source_user_id_str":"1038978475"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120664"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248862453760,"id_str":"663728248862453760","text":"thank you https:\/\/t.co\/7hnyQdmOP5 !!!\n\nThe iconic area of Little Venice reflects the cosmopolitan vibe of the... https:\/\/t.co\/Ixu7CxiII9","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547770884,"id_str":"547770884","name":"BillAndCooWayOfLife","screen_name":"bill_coo_suites","location":"Mykonos","url":"http:\/\/www.billandcoo.gr","description":"a world class all-suites hotel, just steps away from Mykonos Town, Leading Hotels of the World member","protected":false,"verified":false,"followers_count":1101,"friends_count":110,"listed_count":13,"favourites_count":58,"statuses_count":1060,"created_at":"Sat Apr 07 17:27:42 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/505956768\/POOL_3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/505956768\/POOL_3.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/525231547218419712\/WeLyj-xS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/525231547218419712\/WeLyj-xS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/547770884\/1433345269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7hnyQdmOP5","expanded_url":"http:\/\/www.goodhousekeeping.co.uk","display_url":"goodhousekeeping.co.uk","indices":[10,33]},{"url":"https:\/\/t.co\/Ixu7CxiII9","expanded_url":"http:\/\/fb.me\/20SNTQhVd","display_url":"fb.me\/20SNTQhVd","indices":[113,136]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120660"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248849833986,"id_str":"663728248849833986","text":"Happy to see WHAT HAPPENS UNDER THE MISTLETOE here! @SabrinaJeffries @campcandace @TheKarenHawkins @meredithduran https:\/\/t.co\/T3bJIvJzfl","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31838755,"id_str":"31838755","name":"Pocket Books","screen_name":"Pocket_Books","location":"New York, NY","url":"http:\/\/www.pocketbooks.com","description":"Publishing great books since 1939.","protected":false,"verified":false,"followers_count":48033,"friends_count":1146,"listed_count":1443,"favourites_count":23,"statuses_count":9883,"created_at":"Thu Apr 16 14:32:09 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/139095304\/Gertrude.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/139095304\/Gertrude.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/140817511\/Gertrude_Square_normal.JPG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/140817511\/Gertrude_Square_normal.JPG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662788257277607936,"quoted_status_id_str":"662788257277607936","quoted_status":{"created_at":"Sat Nov 07 00:26:49 +0000 2015","id":662788257277607936,"id_str":"662788257277607936","text":"Looking for love? Here are the 10 best romance novels of November: https:\/\/t.co\/yj5Yx3YC7D https:\/\/t.co\/GipzBUdhv4","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":14172201,"id_str":"14172201","name":"Amazon Books","screen_name":"amazonbooks","location":"Seattle, WA","url":"http:\/\/www.amazon.com\/books","description":"Editors' picks, author interviews, Best Books of the Month & more. Our blog: http:\/\/t.co\/0u58WXzWb9. Shop for your next great read at https:\/\/t.co\/Cx2FBTGftC.","protected":false,"verified":true,"followers_count":276783,"friends_count":1033,"listed_count":3549,"favourites_count":223,"statuses_count":5403,"created_at":"Tue Mar 18 20:12:58 +0000 2008","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/454333375357018112\/iDVeavYU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/454333375357018112\/iDVeavYU.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1234993783\/Facebook-Twitter_Icon-Books_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1234993783\/Facebook-Twitter_Icon-Books_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/14172201\/1440114199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yj5Yx3YC7D","expanded_url":"http:\/\/bit.ly\/1SwTjiP","display_url":"bit.ly\/1SwTjiP","indices":[67,90]}],"user_mentions":[],"symbols":[],"media":[{"id":662788103111892992,"id_str":"662788103111892992","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKyRKdW4AA1KXe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKyRKdW4AA1KXe.jpg","url":"https:\/\/t.co\/GipzBUdhv4","display_url":"pic.twitter.com\/GipzBUdhv4","expanded_url":"http:\/\/twitter.com\/amazonbooks\/status\/662788257277607936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":529,"resize":"fit"},"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662788103111892992,"id_str":"662788103111892992","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKyRKdW4AA1KXe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKyRKdW4AA1KXe.jpg","url":"https:\/\/t.co\/GipzBUdhv4","display_url":"pic.twitter.com\/GipzBUdhv4","expanded_url":"http:\/\/twitter.com\/amazonbooks\/status\/662788257277607936\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":529,"resize":"fit"},"small":{"w":340,"h":175,"resize":"fit"},"medium":{"w":600,"h":309,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/T3bJIvJzfl","expanded_url":"https:\/\/twitter.com\/amazonbooks\/status\/662788257277607936","display_url":"twitter.com\/amazonbooks\/st\u2026","indices":[115,138]}],"user_mentions":[{"screen_name":"SabrinaJeffries","name":"Sabrina Jeffries","id":249178899,"id_str":"249178899","indices":[52,68]},{"screen_name":"campcandace","name":"candace camp","id":49437974,"id_str":"49437974","indices":[69,81]},{"screen_name":"TheKarenHawkins","name":"Karen Hawkins","id":33667983,"id_str":"33667983","indices":[82,98]},{"screen_name":"meredithduran","name":"Meredith Duran","id":23694382,"id_str":"23694382","indices":[99,113]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120657"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248874909696,"id_str":"663728248874909696","text":"6c491a960c0b638460e5fb32f58db71a6d7a3ea3d12c01ded824d4804905cf589aa371adb26a0d99be37ddb3cb17f44282a771b8af67cb5a3f0f50b59d1a0156a86502000000","source":"\u003ca href=\"https:\/\/twitter.com\/googuns_lulz\" rel=\"nofollow\"\u003eGooGuns Lulz\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3048544857,"id_str":"3048544857","name":"GooGuns Lulz","screen_name":"googuns_lulz","location":"(here)","url":"https:\/\/twitter.com\/googuns_lulz","description":null,"protected":false,"verified":false,"followers_count":109,"friends_count":1,"listed_count":80,"favourites_count":0,"statuses_count":562337,"created_at":"Sat Feb 21 03:26:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569543324252393472\/eUqdX4Ud.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569543324252393472\/eUqdX4Ud.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/569542720855629824\/zW4n8dog_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/569542720855629824\/zW4n8dog_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3048544857\/1424624796","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[-53.14430775,-116.81042741]},"coordinates":{"type":"Point","coordinates":[-116.81042741,-53.14430775]},"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248862326784,"id_str":"663728248862326784","text":"@lovemi______ \u53f7\u6ce3\u3057\u3066\u305f\u3002\u3002\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727733646606336,"in_reply_to_status_id_str":"663727733646606336","in_reply_to_user_id":3997979660,"in_reply_to_user_id_str":"3997979660","in_reply_to_screen_name":"lovemi______","user":{"id":3279627092,"id_str":"3279627092","name":"\u89d2 \u716e","screen_name":"NyanpachiY","location":"\u30eb\u30fc\u30d5\u30a1\u30a4\u5fdc\u63f4\u56e3","url":"http:\/\/twpf.jp\/NyanpachiY","description":"\u6c5f\u5ddd\u8ecd\u99d2\u6ca2\u8ecd\u306a\u3046\u3060\u3088\u306a\u3046\u3060\u3088\u3042\u306f\u3093\u306a\u3046\u3060\u3088\u3002\u77f3\u57ce\u8ecd\u306f\u30cf\u30fc\u30c9\u30eb\u305f\u304b\u3081\u3002 \u512a\u3057\u3044\u59c9\u3055\u3093\u2661\u300e@ROOTFIVE0414\u300f\u3089\u3076\u304f\u304a\u3093\u3055\u3093\u2661\u300e@0315suzu\u300f\u5927\u597d\u304d\u53ef\u611b\u3044\u3072\u306a\u3093\u3061\u3085\u2661\u300e@413fc55eb67449d\u300f \u30a4\u30d9\u7b49\u306f\u3072\u306a\u3093\u3061\u3085\u3068\u3044\u308b\u304b\u306a( \uff65\u00b4\u30fc\uff65\uff40)","protected":false,"verified":false,"followers_count":523,"friends_count":1050,"listed_count":51,"favourites_count":5191,"statuses_count":34605,"created_at":"Tue Jul 14 13:56:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663688815219879938\/mAb5Qrrj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663688815219879938\/mAb5Qrrj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279627092\/1447070659","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovemi______","name":"\u2654","id":3997979660,"id_str":"3997979660","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120660"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883249154,"id_str":"663728248883249154","text":"@Ppokrystal tauu apa coba?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663656658178961412,"in_reply_to_status_id_str":"663656658178961412","in_reply_to_user_id":3402217278,"in_reply_to_user_id_str":"3402217278","in_reply_to_screen_name":"Ppokrystal","user":{"id":3118852080,"id_str":"3118852080","name":"pc","screen_name":"pchanyeol30","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":280,"friends_count":305,"listed_count":0,"favourites_count":127,"statuses_count":2522,"created_at":"Tue Mar 31 01:41:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661560416103849984\/RnJEcDXo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661560416103849984\/RnJEcDXo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3118852080\/1446562129","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ppokrystal","name":"CISOM '*'","id":3402217278,"id_str":"3402217278","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080120665"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248862322688,"id_str":"663728248862322688","text":"Saya ko sa grade ko \ud83d\ude02\ud83d\ude01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3076522297,"id_str":"3076522297","name":"meldy francisco","screen_name":"supermeldyy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":128,"friends_count":102,"listed_count":2,"favourites_count":151,"statuses_count":3161,"created_at":"Fri Mar 13 11:03:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659361850648195072\/MYxQOzfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659361850648195072\/MYxQOzfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3076522297\/1426245962","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080120660"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248879124480,"id_str":"663728248879124480","text":"@Ym1204\n\u304a\u3072\u3055\u3060\u306d\n\u3088\u304b\u3063\u305f\u3089\u8a71\u3057\u805e\u304f\u3088\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726418115756033,"in_reply_to_status_id_str":"663726418115756033","in_reply_to_user_id":2258584164,"in_reply_to_user_id_str":"2258584164","in_reply_to_screen_name":"Ym1204","user":{"id":2453915496,"id_str":"2453915496","name":"\u30a8\u30b3\u306a\u7834\u58ca\u795e.jp@11\/11\u8a95\u751f\u65e5","screen_name":"ekohaka_masaya","location":null,"url":null,"description":"\u592a\u9f13\u3068sol\u597d\u304d\u306e\u30dd\u30c3\u30ad\u30fc\u306e\u65e5\u751f\u307e\u308c\u306e\u9ad83\u7537\u5b50\u3067\u3059\u3002\u30c9\u30e9\u30e0\u3092\u8da3\u5473\u3067\u3084\u3063\u3066\u3044\u307e\u3059\u3002sol\u3067\u306frn[\u30a8\u30b3\u306a\u7834\u58ca\u795e]\u3068\u540d\u4e57\u3063\u3066\u307e\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u5927\u4f53\u3057\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":793,"friends_count":1217,"listed_count":13,"favourites_count":93,"statuses_count":2239,"created_at":"Sun Apr 20 01:22:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ym1204","name":"\u307e\u308a\u306a\u3093\u266a","id":2258584164,"id_str":"2258584164","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120664"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248879079424,"id_str":"663728248879079424","text":"\uadf8\ub9bc\uadf8\ub9ac\ub294\ub370 \uc65c \uc67c\uc190\uc774 \uc544\ud508\uac74\uc9c0 \uc11c\uc220\ud558\uc2dc\uc624","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570604352,"id_str":"1570604352","name":"[\ub5a1\u2661\ub2d8\uc758] \ubb35\ub2d8","screen_name":"amuk22","location":"\uc9c0\uc6b4\uc774 \uba38\ub9ac\uc704","url":"http:\/\/m.blog.naver.com\/chelseaeom\/220447511546","description":"\ub5a1\ub2d8\uc758 \uc601\uc6d0\ud55c \uc778\uc0dd\uc564\uc624\u2661 \/ \ud504\uc0ac \ub5a1\ub2d8\u2661\u2661\/\n\uc815\uc2e0\uc5f0\ub839 4\uc138 \uc8fc\uc758 \ubb3c\uc9c0\ub294 \uc54a\uc544\uc694 \ucef9\ucef9 \/ \n\ubc11\uc5d0 \uba6e2 \ub3c4\uc548 \ucee4\ubbf8\uc158\ud398\uc774\uc9c0 \u2661","protected":false,"verified":false,"followers_count":216,"friends_count":270,"listed_count":0,"favourites_count":476,"statuses_count":11227,"created_at":"Fri Jul 05 14:23:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648194193462943744\/ngZ4m4Sp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648194193462943744\/ngZ4m4Sp_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1570604352\/1421842280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080120664"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248853934081,"id_str":"663728248853934081","text":"Me gusta el caf\u00e9, pero me gusta m\u00e1s ver t\u00e9 \n#FelizLunes","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1897789640,"id_str":"1897789640","name":"Chic@ P@m !","screen_name":"OsnayaPamela","location":"Gustavo A. Madero, Distrito Fe","url":null,"description":"Soy eso qu\u00e9 pocos pueden tener y pocos olvidar..! =)","protected":false,"verified":false,"followers_count":183,"friends_count":423,"listed_count":3,"favourites_count":405,"statuses_count":2028,"created_at":"Mon Sep 23 16:36:32 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662761597283270657\/he7oayea_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662761597283270657\/he7oayea_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1897789640\/1445613832","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FelizLunes","indices":[45,56]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080120658"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248853958656,"id_str":"663728248853958656","text":"BO3\u982d\u304a\u304b\u3057\u304f\u306a\u308b\u30ec\u30d9\u30eb\u3067\u697d\u3057\u3044\uff08\uff3e\u2207\uff3e\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3548994732,"id_str":"3548994732","name":"\u5c71\u5185\u3086\u3046\u304d\/\u5931\u8e2a(\u53d7\u9a13)","screen_name":"2000815w","location":"\u5404\u52d9\u539f\u5e02 ","url":null,"description":"\u3084\u3041\u8af8\u541b\u3002\u901a\u77e5\u8868\u30672\u306e\u30aa\u30f3\u30d1\u30ec\u30fc\u30c9\u3060\u3063\u305f\u4e2d3\u3060\u3002\u3084\u3070\u3044\u306d\u3001\u3046\u3093\u3084\u3070\u3044\u3002\u8da3\u5473\u306f\u30b2\u30fc\u30e0\u30fb\u30a2\u30cb\u30e1\u3068\u8a00\u3063\u305f\u3068\u3053\u308d\u3060\u3002\u4ffa\u3068\u7d61\u307f\u305f\u3044(\u610f\u5473\u6df1)\u3068\u601d\u3063\u305f\u4eba\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u3002\u3042\u3001\u305d\u3046\u305d\u3046\u3088\u304f\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u753b\u50cf\u5909\u3048\u308b\u3088\u301c","protected":false,"verified":false,"followers_count":52,"friends_count":71,"listed_count":0,"favourites_count":13,"statuses_count":168,"created_at":"Sun Sep 13 12:26:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661516419872395264\/HptDcf2e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661516419872395264\/HptDcf2e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3548994732\/1446551994","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"d6136b6cf48459a8","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/d6136b6cf48459a8.json","place_type":"city","name":"\u5404\u52d9\u539f\u5e02","full_name":"\u5c90\u961c\u770c \u5404\u52d9\u539f\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[136.792907,35.354103],[136.792907,35.444587],[136.964096,35.444587],[136.964096,35.354103]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120658"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883249152,"id_str":"663728248883249152","text":"@osehien gua tarik kata2 gua","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663704447420227584,"in_reply_to_status_id_str":"663704447420227584","in_reply_to_user_id":1968457914,"in_reply_to_user_id_str":"1968457914","in_reply_to_screen_name":"osehien","user":{"id":3150985536,"id_str":"3150985536","name":"momo","screen_name":"momotwaice","location":"jepang","url":null,"description":"parody rp form twice Hirai Momo\/Momo\n\u007bBarbie Holic\u007d LEad Dancer 1996\u00a9\n#alltwicerp #jypteam","protected":false,"verified":false,"followers_count":779,"friends_count":808,"listed_count":4,"favourites_count":158,"statuses_count":6676,"created_at":"Sun Apr 12 08:17:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663678157573124096\/cH_eAY3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663678157573124096\/cH_eAY3w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3150985536\/1446996870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"osehien","name":"sehun","id":1968457914,"id_str":"1968457914","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080120665"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883294208,"id_str":"663728248883294208","text":"RT @celebstyle006: \u30d0\u30b9\u30bf\u30a4\u30e0\u3067\u30ea\u30e9\u30c3\u30af\u30b9\ud83d\udc95\ud83d\udec1\n\n\u30ad\u30e3\u30f3\u30c9\u30eb\u306e\u708e\u3067\n\u306e\u3093\u3073\u308a\u7652\u3055\u308c\u3088\u2764\ufe0f\n\n\ud83d\udec1#\u3084\u3063\u3066\u307f\u305f\u3044\u4ebaRT https:\/\/t.co\/UpPJ032tZm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3037815650,"id_str":"3037815650","name":"\u5bae\u91cc \u307f\u305a\u304d","screen_name":"062525Handball","location":null,"url":null,"description":"\u7f8e\u91cc\u4e2d\u2192\u5177\u55461-5HandBall\u266f4","protected":false,"verified":false,"followers_count":165,"friends_count":160,"listed_count":0,"favourites_count":219,"statuses_count":180,"created_at":"Mon Feb 23 10:40:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660804333001293824\/ZtYPlW4J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660804333001293824\/ZtYPlW4J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3037815650\/1446038625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:15 +0000 2015","id":663713966443511808,"id_str":"663713966443511808","text":"\u30d0\u30b9\u30bf\u30a4\u30e0\u3067\u30ea\u30e9\u30c3\u30af\u30b9\ud83d\udc95\ud83d\udec1\n\n\u30ad\u30e3\u30f3\u30c9\u30eb\u306e\u708e\u3067\n\u306e\u3093\u3073\u308a\u7652\u3055\u308c\u3088\u2764\ufe0f\n\n\ud83d\udec1#\u3084\u3063\u3066\u307f\u305f\u3044\u4ebaRT https:\/\/t.co\/UpPJ032tZm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3330392277,"id_str":"3330392277","name":"\u6d77\u5916\u2661CelebSTYLE\uff1a\uff09","screen_name":"celebstyle006","location":"the queen of this world","url":null,"description":"girls just wanna have fun \u2764\ufe0f \u6d77\u5916\u306e\u60c5\u5831\u3092\u304a\u5c4a\u3051\uff01 \u30ea\u30af\u30a8\u30b9\u30c8\u3082\u53d7\u3051\u4ed8\u3051\u3066\u3044\u307e\u3059\uff01\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f \u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059:)","protected":false,"verified":false,"followers_count":12096,"friends_count":9883,"listed_count":11,"favourites_count":408,"statuses_count":294,"created_at":"Wed Jun 17 00:45:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624105129621393410\/Jv4om0Wr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624105129621393410\/Jv4om0Wr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3330392277\/1439359569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":214,"entities":{"hashtags":[{"text":"\u3084\u3063\u3066\u307f\u305f\u3044\u4ebaRT","indices":[37,47]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663713960177201153,"id_str":"663713960177201153","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713960177201153,"id_str":"663713960177201153","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}}},{"id":663713960181370882,"id_str":"663713960181370882","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VI0UEAIjeek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VI0UEAIjeek.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"large":{"w":606,"h":517,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":511,"resize":"fit"}}},{"id":663713960240123904,"id_str":"663713960240123904","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VJCUkAAUCma.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VJCUkAAUCma.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":500,"h":494,"resize":"fit"},"medium":{"w":500,"h":494,"resize":"fit"}}},{"id":663713960319848451,"id_str":"663713960319848451","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VJVVEAMz30-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VJVVEAMz30-.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":266,"resize":"fit"},"large":{"w":400,"h":266,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3084\u3063\u3066\u307f\u305f\u3044\u4ebaRT","indices":[56,66]}],"urls":[],"user_mentions":[{"screen_name":"celebstyle006","name":"\u6d77\u5916\u2661CelebSTYLE\uff1a\uff09","id":3330392277,"id_str":"3330392277","indices":[3,17]}],"symbols":[],"media":[{"id":663713960177201153,"id_str":"663713960177201153","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663713966443511808,"source_status_id_str":"663713966443511808","source_user_id":3330392277,"source_user_id_str":"3330392277"}]},"extended_entities":{"media":[{"id":663713960177201153,"id_str":"663713960177201153","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VIzUcAEWybG.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":500,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":500,"resize":"fit"}},"source_status_id":663713966443511808,"source_status_id_str":"663713966443511808","source_user_id":3330392277,"source_user_id_str":"3330392277"},{"id":663713960181370882,"id_str":"663713960181370882","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VI0UEAIjeek.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VI0UEAIjeek.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":290,"resize":"fit"},"large":{"w":606,"h":517,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":511,"resize":"fit"}},"source_status_id":663713966443511808,"source_status_id_str":"663713966443511808","source_user_id":3330392277,"source_user_id_str":"3330392277"},{"id":663713960240123904,"id_str":"663713960240123904","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VJCUkAAUCma.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VJCUkAAUCma.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":500,"h":494,"resize":"fit"},"medium":{"w":500,"h":494,"resize":"fit"}},"source_status_id":663713966443511808,"source_status_id_str":"663713966443511808","source_user_id":3330392277,"source_user_id_str":"3330392277"},{"id":663713960319848451,"id_str":"663713960319848451","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX8VJVVEAMz30-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX8VJVVEAMz30-.jpg","url":"https:\/\/t.co\/UpPJ032tZm","display_url":"pic.twitter.com\/UpPJ032tZm","expanded_url":"http:\/\/twitter.com\/celebstyle006\/status\/663713966443511808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":400,"h":266,"resize":"fit"},"large":{"w":400,"h":266,"resize":"fit"}},"source_status_id":663713966443511808,"source_status_id_str":"663713966443511808","source_user_id":3330392277,"source_user_id_str":"3330392277"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120665"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870666244,"id_str":"663728248870666244","text":"RT @toorufukuda: \u3053\u306e\u3042\u306823:53\u3088\u308aTBS\u306b\u3066\u4eca\u65e5\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u306e\u300cNEWS23 \u6fc0\u95d8\uff01\u4e16\u754c\u91ce\u7403\u30d7\u30ec\u30df\u30a212\u300d\u30ca\u30ec\u30fc\u30b7\u30e7\u30f3\u798f\u7530\u3067\u3059\u3002\u305c\u3072\u3002\u71b1\u304f\u3044\u304d\u307e\u3063\u305b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1962817736,"id_str":"1962817736","name":"RISE\u5c0f\u5ddd\u88d5\u592aYutaOgawa","screen_name":"YT_RISE_OGW","location":"\u6771\u4eac\u90fd \u8c4a\u5cf6\u533a","url":"http:\/\/www.rise-rc.com\/","description":"Kickboxingevent\/RISE\/JAPAN\/TOKYO\/\u6253\u6483\u683c\u95d8\u6280\u56e3\u4f53RISE\u306e\u4e2d\u306e\u4eba\u3067\u3059\u3002 \u4e0b\u90e8\u7d44\u7e54(KAMINARIMON\u3001RISE ZERO\u3001\u65b0\u4eba\u738b\u6226RISING ROOKIES CUP)\u62c5\u5f53\u3067\u3059\u304c\u57fa\u672c\u4f55\u3067\u3082\u3084\u3063\u3066\u307e\u3059\u3002BLADE\u3082\u5c11\u3005\u3002\u8272\u3005\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u3002","protected":false,"verified":false,"followers_count":435,"friends_count":409,"listed_count":3,"favourites_count":197,"statuses_count":3098,"created_at":"Tue Oct 15 14:52:09 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635763131227045889\/wUVDFg08_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635763131227045889\/wUVDFg08_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1962817736\/1382357087","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:40 +0000 2015","id":663722376811581445,"id_str":"663722376811581445","text":"\u3053\u306e\u3042\u306823:53\u3088\u308aTBS\u306b\u3066\u4eca\u65e5\u304b\u3089\u30b9\u30bf\u30fc\u30c8\u306e\u300cNEWS23 \u6fc0\u95d8\uff01\u4e16\u754c\u91ce\u7403\u30d7\u30ec\u30df\u30a212\u300d\u30ca\u30ec\u30fc\u30b7\u30e7\u30f3\u798f\u7530\u3067\u3059\u3002\u305c\u3072\u3002\u71b1\u304f\u3044\u304d\u307e\u3063\u305b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":192217346,"id_str":"192217346","name":"\u798f\u7530\u4ea8","screen_name":"toorufukuda","location":"\u61f8\u6a0b\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3","url":"http:\/\/www.kakehipro.com\/","description":"Dad of two daughters , Husband , Lord of my voice castle \/ \u97f3\u697d\u3002\u73c8\u7432\u3002\u732b\u3002\u30b9\u30dd\u30fc\u30c4\u3002","protected":false,"verified":false,"followers_count":402,"friends_count":57,"listed_count":6,"favourites_count":161,"statuses_count":6261,"created_at":"Sat Sep 18 14:26:15 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624988142433480704\/vye1cYXN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624988142433480704\/vye1cYXN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/192217346\/1430834393","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"toorufukuda","name":"\u798f\u7530\u4ea8","id":192217346,"id_str":"192217346","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883314688,"id_str":"663728248883314688","text":"RT @bokunokaraage: \u3061\u3087\u3063\u3053\u308c\u30fc\u3068\u3061\u3087\u3063\u3053\u308c\u30fc\u3068\n\u3061\u3087\u3053\u308c\u30fc\u3068\u306f\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3010965194,"id_str":"3010965194","name":"\u3055\u306a\u30e1\u30ed\u2661","screen_name":"sanamero0927","location":null,"url":null,"description":"\uff12\u5150\u306e\u30de\u30de\u2661\u3086\u3081\u304b\u308f\u3044\u3044\u597d\u304d\u2661\n\u53ef\u611b\u3044\u753b\u50cf\u3068\u304b\u898b\u305f\u308a\u5171\u901a\u70b9\u3092\u898b\u4ed8\u3051\u305f\u3089\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3057\u3061\u3083\u3044\u307e\u3059(\uff1b\u30fb\u2200\u30fb)\u3054\u3081\u3093\u306a\u3055\u3044\uff01\n\u3088\u304b\u3063\u305f\u3089\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044(o\u30fb\u03c9\u30fbo)\n\u5171\u901a\u3059\u308b\u3053\u3068\u304c\u306a\u3044\u4eba\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u305b\u3093\uff01\u5909\u306a\u4eba\u306f\u30d6\u30ed\u30c3\u30af\u3055\u305b\u3066\u9802\u304d\u307e\u3059( \u02d8\u2022\u03c9\u2022\u02d8 )","protected":false,"verified":false,"followers_count":207,"friends_count":355,"listed_count":21,"favourites_count":11411,"statuses_count":7918,"created_at":"Fri Feb 06 06:55:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662957355148021760\/__RwI40T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662957355148021760\/__RwI40T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3010965194\/1446433100","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:12 +0000 2015","id":663725278229762048,"id_str":"663725278229762048","text":"\u3061\u3087\u3063\u3053\u308c\u30fc\u3068\u3061\u3087\u3063\u3053\u308c\u30fc\u3068\n\u3061\u3087\u3053\u308c\u30fc\u3068\u306f\uff1f\uff1f\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3182749122,"id_str":"3182749122","name":"*\u0b18\u840c \u82b1 \u2729","screen_name":"bokunokaraage","location":"\u8cb4\u65b9\u306e\u80f4\u4f53\u3082\u56db\u80a1\u3082\u6307\u3082\u722a\u3082\u9aea\u3082\u773c\u7403\u3082\u6b32\u3057\u3044\u306e","url":null,"description":"\u79c1\u306e\u3082\u306e\u306b\u306a\u3089\u306a\u3044\u8cb4\u65b9\u306a\u3093\u3066\u3044\u3089\u306a\u3044\u3002\u30d8\u30c3\u30c0\u30fc\u672c\u4eba\u3002\u72ec\u5360\u6b32\u5f37\u3044\u3002\u3086\u3081\u75c5\u307f\u304b\u308f\u3044\u3044 \u3002\u72ec\u308a\u8a00\u57a2\u2192@lielielielie666\u3010site\u3011 \u300a \u30da\u30a2\u753b\u76f8\u624b\u2192@amuamu2222\u300b\u840c\u82b1\u306e\u5927\u5207\u306a\u304a\u5ac1\u3055\u3093\u2192@ercxn_ercxn1 \u840c\u82b1\u306e\u304a\u59c9\u3061\u3083\u3093\u2192@s09110815s2","protected":false,"verified":false,"followers_count":2020,"friends_count":1799,"listed_count":33,"favourites_count":3184,"statuses_count":5508,"created_at":"Sat May 02 11:33:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659724666836135937\/hik1HS8O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659724666836135937\/hik1HS8O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3182749122\/1447074597","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bokunokaraage","name":"*\u0b18\u840c \u82b1 \u2729","id":3182749122,"id_str":"3182749122","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120665"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887480320,"id_str":"663728248887480320","text":"@null sekarang jam 21:41:02 WIB","source":"\u003ca href=\"http:\/\/perfect-tools.cf\" rel=\"nofollow\"\u003eToolsPerfect_Null\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":1331796722,"id_str":"1331796722","name":"Yerin Kiyo","screen_name":"gfrendyerin","location":null,"url":null,"description":"2nd Acc of @LuvlyJiae | Parody of GFriend Visual Jung Yerin 96L| As Kiyo","protected":false,"verified":false,"followers_count":64,"friends_count":18,"listed_count":0,"favourites_count":1,"statuses_count":97803,"created_at":"Sat Apr 06 14:59:30 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640529689174409216\/zQwJdRm__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640529689174409216\/zQwJdRm__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1331796722\/1434862424","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248879230976,"id_str":"663728248879230976","text":"RT @sugarscape: Best Dressed from the #R1TeenAwards: 5SOS, Troye, Little Mix and more smoking looks https:\/\/t.co\/xbFc76Srff https:\/\/t.co\/JQ\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2887532710,"id_str":"2887532710","name":"bianca","screen_name":"perrieterpan","location":null,"url":null,"description":"More than just survival, this is my revival!","protected":false,"verified":false,"followers_count":401,"friends_count":228,"listed_count":9,"favourites_count":5790,"statuses_count":42867,"created_at":"Sat Nov 22 00:00:15 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569190818980704256\/TlQSClMQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569190818980704256\/TlQSClMQ.jpeg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659524332738191361\/v9qo9ifo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659524332738191361\/v9qo9ifo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887532710\/1446488944","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:40:04 +0000 2015","id":663637166673776640,"id_str":"663637166673776640","text":"Best Dressed from the #R1TeenAwards: 5SOS, Troye, Little Mix and more smoking looks https:\/\/t.co\/xbFc76Srff https:\/\/t.co\/JQ8b9UjDjC","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16510838,"id_str":"16510838","name":"Sugarscape","screen_name":"sugarscape","location":"UK","url":"http:\/\/www.sugarscape.com","description":"We love hot guys, books, music, films, celebs and fashion. Also heavily involved with snacks. instagram: @sugarscaper. [Cover photo designed by @zarrycuddles_x]","protected":false,"verified":true,"followers_count":545903,"friends_count":821,"listed_count":1099,"favourites_count":8577,"statuses_count":136720,"created_at":"Mon Sep 29 12:49:11 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/174783855\/MYSPACEBACKGROUND.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/174783855\/MYSPACEBACKGROUND.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620561499220779008\/CnlFwuzw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620561499220779008\/CnlFwuzw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16510838\/1409655901","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":164,"favorite_count":189,"entities":{"hashtags":[{"text":"R1TeenAwards","indices":[22,35]}],"urls":[{"url":"https:\/\/t.co\/xbFc76Srff","expanded_url":"http:\/\/bit.ly\/1iNeLDk","display_url":"bit.ly\/1iNeLDk","indices":[84,107]}],"user_mentions":[],"symbols":[],"media":[{"id":663637166547972096,"id_str":"663637166547972096","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","url":"https:\/\/t.co\/JQ8b9UjDjC","display_url":"pic.twitter.com\/JQ8b9UjDjC","expanded_url":"http:\/\/twitter.com\/sugarscape\/status\/663637166673776640\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663637166547972096,"id_str":"663637166547972096","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","url":"https:\/\/t.co\/JQ8b9UjDjC","display_url":"pic.twitter.com\/JQ8b9UjDjC","expanded_url":"http:\/\/twitter.com\/sugarscape\/status\/663637166673776640\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"R1TeenAwards","indices":[38,51]}],"urls":[{"url":"https:\/\/t.co\/xbFc76Srff","expanded_url":"http:\/\/bit.ly\/1iNeLDk","display_url":"bit.ly\/1iNeLDk","indices":[100,123]}],"user_mentions":[{"screen_name":"sugarscape","name":"Sugarscape","id":16510838,"id_str":"16510838","indices":[3,14]}],"symbols":[],"media":[{"id":663637166547972096,"id_str":"663637166547972096","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","url":"https:\/\/t.co\/JQ8b9UjDjC","display_url":"pic.twitter.com\/JQ8b9UjDjC","expanded_url":"http:\/\/twitter.com\/sugarscape\/status\/663637166673776640\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663637166673776640,"source_status_id_str":"663637166673776640","source_user_id":16510838,"source_user_id_str":"16510838"}]},"extended_entities":{"media":[{"id":663637166547972096,"id_str":"663637166547972096","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTW2fKPWsAAj_d2.jpg","url":"https:\/\/t.co\/JQ8b9UjDjC","display_url":"pic.twitter.com\/JQ8b9UjDjC","expanded_url":"http:\/\/twitter.com\/sugarscape\/status\/663637166673776640\/photo\/1","type":"photo","sizes":{"large":{"w":980,"h":490,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":300,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}},"source_status_id":663637166673776640,"source_status_id_str":"663637166673776640","source_user_id":16510838,"source_user_id_str":"16510838"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120664"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870731777,"id_str":"663728248870731777","text":"RT @BellissM: \u300a\u30bd\u30d3\u30a8\u30c8 \u30f4\u30a3\u30f3\u30c6\u30fc\u30b8 \u30de\u30c3\u30c1\u30e9\u30d9\u30eb\u300b\u6c11\u82b8\u54c1\u3001\u30db\u30d5\u30ed\u30de\u67c4\u3001\u6620\u753b\u30b9\u30c1\u30fc\u30eb\u3001\u885b\u661f https:\/\/t.co\/PqQ2R91Z8N","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":44561622,"id_str":"44561622","name":"\u30a2\u30e4\u30be\u30a6","screen_name":"ayazo","location":"jp","url":"http:\/\/figweb.tumblr.com\/","description":"\u30a2\u30eb\u30d1\u30ab\u3042\u304d\u3060\u3063\u305f\u9803\u3082\u3042\u3063\u305f \u3057\u307f\u3063\u305f\u308c\u305f\u8a71\u3068\u304b\u3057\u3087\u3063\u3071\u3044\u8a71\u3068\u304b\u3059\u308b\u304a\u3058\u3055\u3093 \u30a2\u30a4\u30b3\u30f3\u306f\u3086\u304d\u3061\u3083\u3093\u306b\u63cf\u3044\u3066\u3082\u3089\u3063\u305f\uff01\uff01\u3042\u308a\u304c\u3068\u3046\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":625,"friends_count":920,"listed_count":27,"favourites_count":3016,"statuses_count":157747,"created_at":"Thu Jun 04 06:32:56 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"040E69","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/679835867\/85a2672cb97ade2bc9bedbb26c1b3ae1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/679835867\/85a2672cb97ade2bc9bedbb26c1b3ae1.jpeg","profile_background_tile":true,"profile_link_color":"2047A1","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"ECECEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563382461883625472\/jpumsWWd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563382461883625472\/jpumsWWd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/44561622\/1349721465","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:57 +0000 2015","id":663725971623710720,"id_str":"663725971623710720","text":"\u300a\u30bd\u30d3\u30a8\u30c8 \u30f4\u30a3\u30f3\u30c6\u30fc\u30b8 \u30de\u30c3\u30c1\u30e9\u30d9\u30eb\u300b\u6c11\u82b8\u54c1\u3001\u30db\u30d5\u30ed\u30de\u67c4\u3001\u6620\u753b\u30b9\u30c1\u30fc\u30eb\u3001\u885b\u661f https:\/\/t.co\/PqQ2R91Z8N","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2441739001,"id_str":"2441739001","name":"Bellissima","screen_name":"BellissM","location":null,"url":null,"description":"\u5f92\u7136\u306a\u308b\u307e\u307e\u65e5\u3005\u306e\u3053\u3068\r\n \u2605\u6620\u753b\u2605\u97f3\u697d\u2605\u7f8e\u8853\u2605\u5c0f\u8aac\u2605\u6f14\u5287 Filmarks\u2192https:\/\/filmarks.com\/pc\/kysmixx\r\ncoco\u2192http:\/\/coco.to\/author\/BellissM","protected":false,"verified":false,"followers_count":3387,"friends_count":709,"listed_count":105,"favourites_count":2835,"statuses_count":8114,"created_at":"Sun Apr 13 13:41:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510476111428349952\/jX917Vje.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510476111428349952\/jX917Vje.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486146611953672192\/AByg7pob_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486146611953672192\/AByg7pob_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2441739001\/1410737442","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725931391938560,"id_str":"663725931391938560","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725931391938560,"id_str":"663725931391938560","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}}},{"id":663725931677114368,"id_str":"663725931677114368","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN-HUYAAjv85.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN-HUYAAjv85.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":381,"h":317,"resize":"fit"},"large":{"w":381,"h":317,"resize":"fit"}}},{"id":663725932000079872,"id_str":"663725932000079872","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN_UUcAAQGPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN_UUcAAQGPG.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":542,"resize":"fit"},"large":{"w":542,"h":542,"resize":"fit"}}},{"id":663725932193050625,"id_str":"663725932193050625","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHOACU8AEI7LV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHOACU8AEI7LV.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":413,"resize":"fit"},"medium":{"w":550,"h":413,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BellissM","name":"Bellissima","id":2441739001,"id_str":"2441739001","indices":[3,12]}],"symbols":[],"media":[{"id":663725931391938560,"id_str":"663725931391938560","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}},"source_status_id":663725971623710720,"source_status_id_str":"663725971623710720","source_user_id":2441739001,"source_user_id_str":"2441739001"}]},"extended_entities":{"media":[{"id":663725931391938560,"id_str":"663725931391938560","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN9DU8AAKDis.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"medium":{"w":420,"h":420,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":420,"h":420,"resize":"fit"}},"source_status_id":663725971623710720,"source_status_id_str":"663725971623710720","source_user_id":2441739001,"source_user_id_str":"2441739001"},{"id":663725931677114368,"id_str":"663725931677114368","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN-HUYAAjv85.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN-HUYAAjv85.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":282,"resize":"fit"},"medium":{"w":381,"h":317,"resize":"fit"},"large":{"w":381,"h":317,"resize":"fit"}},"source_status_id":663725971623710720,"source_status_id_str":"663725971623710720","source_user_id":2441739001,"source_user_id_str":"2441739001"},{"id":663725932000079872,"id_str":"663725932000079872","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHN_UUcAAQGPG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHN_UUcAAQGPG.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":542,"h":542,"resize":"fit"},"large":{"w":542,"h":542,"resize":"fit"}},"source_status_id":663725971623710720,"source_status_id_str":"663725971623710720","source_user_id":2441739001,"source_user_id_str":"2441739001"},{"id":663725932193050625,"id_str":"663725932193050625","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHOACU8AEI7LV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHOACU8AEI7LV.jpg","url":"https:\/\/t.co\/PqQ2R91Z8N","display_url":"pic.twitter.com\/PqQ2R91Z8N","expanded_url":"http:\/\/twitter.com\/BellissM\/status\/663725971623710720\/photo\/1","type":"photo","sizes":{"large":{"w":550,"h":413,"resize":"fit"},"medium":{"w":550,"h":413,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663725971623710720,"source_status_id_str":"663725971623710720","source_user_id":2441739001,"source_user_id_str":"2441739001"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858144768,"id_str":"663728248858144768","text":"knp ep15 ni sedih sangat\ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":826634610,"id_str":"826634610","name":"\u2601\ufe0f","screen_name":"NrhzRsmn","location":null,"url":null,"description":"\uc548\ub155","protected":false,"verified":false,"followers_count":1402,"friends_count":763,"listed_count":0,"favourites_count":2440,"statuses_count":26157,"created_at":"Sun Sep 16 06:45:37 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"msa","contributors_enabled":false,"is_translator":false,"profile_background_color":"D5DBDB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657754432885526529\/tJ-UKmXF.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657754432885526529\/tJ-UKmXF.png","profile_background_tile":false,"profile_link_color":"060303","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659785056496414720\/7MlV5EwL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659785056496414720\/7MlV5EwL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/826634610\/1440081183","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858120192,"id_str":"663728248858120192","text":"@touchnmzo_bot \u2026\u3093\u3063\u3001\u3093\u3093\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727313922695168,"in_reply_to_status_id_str":"663727313922695168","in_reply_to_user_id":3052224002,"in_reply_to_user_id_str":"3052224002","in_reply_to_screen_name":"touchnmzo_bot","user":{"id":3616368446,"id_str":"3616368446","name":"\u6167","screen_name":"l_xoxo2409","location":"ic free hd @003_tachi\u69d8\u3088\u308a","url":null,"description":"\u6a5f\u5de7\u3055\u3093\u3068\u904a\u3073\u305f\u3044\u6210\u4eba\u6e08\u307f\u5be9\u795e\u8005\u5922\u8150\u706b\u661f\u4eba\u3002\u306a\u3093\u3067\u3082\u3054\u3056\u308c\u96d1\u98df\u4eba\u9593\u30b8\u30e3\u30f3\u30eb\u96d1\u591a\u3002\u30c4\u30a4\u30fc\u30c8\u30ea\u30d7\u30e9\u30a4\u306f\u5922\u4e2d\u5fc3\u3002\u7136\u3057\u76f8\u624b\u306b\u3088\u308a\u3051\u308a\u3002\u65e5\u5e38\u5410\u9732\u3002\u8fd1\u3005\u65bd\u9320\u4e88\u5b9a\u3002","protected":false,"verified":false,"followers_count":44,"friends_count":60,"listed_count":1,"favourites_count":236,"statuses_count":740,"created_at":"Sat Sep 19 13:32:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650330895623131136\/L7nnr24T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650330895623131136\/L7nnr24T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3616368446\/1446110316","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"touchnmzo_bot","name":"\u4e3b\u306b\u30bb\u30af\u30cf\u30e9\u3092\u3059\u308b\u9bf0\u5c3e\u85e4\u56db\u90cebot","id":3052224002,"id_str":"3052224002","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248875065344,"id_str":"663728248875065344","text":"RT @eileenschuch: #coolplace #NespressoGourmet @ParkHotelVitz #Restaurant Prisma https:\/\/t.co\/wpwHJHiZvY Until 15.11. Special menu! #1Mich\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1900321094,"id_str":"1900321094","name":"Janette Murphy","screen_name":"janettemurphy64","location":"Paisley, Scotland","url":null,"description":"Country Music is my passion. I love the country community, my hubby, my 3 dogs, red wine rocks, live music rules, New York is my fave city! Nashville awaits!!","protected":false,"verified":false,"followers_count":252,"friends_count":86,"listed_count":19,"favourites_count":618,"statuses_count":721,"created_at":"Tue Sep 24 12:25:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541532279299121152\/qFmf7XJB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541532279299121152\/qFmf7XJB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1900321094\/1417946330","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:03 +0000 2015","id":663725995061592064,"id_str":"663725995061592064","text":"#coolplace #NespressoGourmet @ParkHotelVitz #Restaurant Prisma https:\/\/t.co\/wpwHJHiZvY Until 15.11. Special menu! #1Michelin #16GaultMillau","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":194664942,"id_str":"194664942","name":"eileen schuch","screen_name":"eileenschuch","location":"Switzerland","url":"http:\/\/www.coolbrandz.com","description":"Founder & CEO http:\/\/www.coolbrandz.com #wordofmouth platform #entrepreneur #speaker #digital #socialmedia strategist #blogger all about #brands & #startups","protected":false,"verified":false,"followers_count":13881,"friends_count":8617,"listed_count":291,"favourites_count":2840,"statuses_count":12426,"created_at":"Fri Sep 24 17:58:47 +0000 2010","utc_offset":3600,"time_zone":"Bern","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645754485592207361\/Rko2bH0e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645754485592207361\/Rko2bH0e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/194664942\/1408922018","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":8,"entities":{"hashtags":[{"text":"coolplace","indices":[0,10]},{"text":"NespressoGourmet","indices":[11,28]},{"text":"Restaurant","indices":[44,55]},{"text":"1Michelin","indices":[115,125]},{"text":"16GaultMillau","indices":[126,140]}],"urls":[{"url":"https:\/\/t.co\/wpwHJHiZvY","expanded_url":"http:\/\/www.coolbrandz.com\/nespresso-gourmetweeks\/park-hotel-vitznau\/","display_url":"coolbrandz.com\/nespresso-gour\u2026","indices":[64,87]}],"user_mentions":[{"screen_name":"ParkHotelVitz","name":"Park Hotel Vitznau","id":817104044,"id_str":"817104044","indices":[29,43]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"coolplace","indices":[18,28]},{"text":"NespressoGourmet","indices":[29,46]},{"text":"Restaurant","indices":[62,73]},{"text":"1Michelin","indices":[133,140]},{"text":"16GaultMillau","indices":[139,140]}],"urls":[{"url":"https:\/\/t.co\/wpwHJHiZvY","expanded_url":"http:\/\/www.coolbrandz.com\/nespresso-gourmetweeks\/park-hotel-vitznau\/","display_url":"coolbrandz.com\/nespresso-gour\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"eileenschuch","name":"eileen schuch","id":194664942,"id_str":"194664942","indices":[3,16]},{"screen_name":"ParkHotelVitz","name":"Park Hotel Vitznau","id":817104044,"id_str":"817104044","indices":[47,61]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248874860544,"id_str":"663728248874860544","text":"@aRs5_KaZu \n\u306f\u30fc\u3044\ud83d\udc93\n\u4e86\u89e3\u3067\u3059\ud83d\ude4b\ud83c\udffb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663354037891280896,"in_reply_to_status_id_str":"663354037891280896","in_reply_to_user_id":3280582934,"in_reply_to_user_id_str":"3280582934","in_reply_to_screen_name":"aRs5_KaZu","user":{"id":3328265978,"id_str":"3328265978","name":"\u548c \u82b1 \u3067\u3059","screen_name":"ninomiyasuka","location":"\u3042\u306a\u305f\u305f\u3061\u306e\u7b11\u9854\u306b\u60da\u308c\u305f","url":null,"description":"\u9ec4\u8272\u3088\u308a\u306e5\u8272\u3092\u611b\u3059\u308b\u548c\u82b1\u3067\u3059\u3002\/ Japonism 11\u67087\u65e5\u53c2\u6226\u6e08\u307f \/ \u5bae\u57ce22\u65e5\u53c2\u6226\u6e08\u307f \/ \u4ef2\u826f\u304f\u306a\u308b\u3068\u5869\u5bfe\u5fdc \/ \u30d5\u30a9\u30ed\u30d0\u7387\u9ad8\u3081 \/ \u30d5\u30a9\u30ed\u30d0\u3057\u3066\u304f\u3060\u3055\u3089\u306a\u3044\u65b9 \u9759\u304b\u306b\u30d5\u30a9\u30ed\u30fc\u5916\u3057\u307e\u3059( .. ) \/ \u611b\u65b9\u25b7\u25b7\u25b7@asm0125shoooo \/\u30c8\u30d7\u753b\u25b7\u25b7\u25b7@Kaito_Travis","protected":false,"verified":false,"followers_count":610,"friends_count":606,"listed_count":8,"favourites_count":1552,"statuses_count":2251,"created_at":"Mon Aug 24 08:52:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660389962953584640\/NL88lfjl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660389962953584640\/NL88lfjl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3328265978\/1443859610","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aRs5_KaZu","name":"\u548c \u83dc","id":3280582934,"id_str":"3280582934","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120663"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866537472,"id_str":"663728248866537472","text":"\u5bb9\u6613\u306b\u305d\u306e\u5fd9\u3057\u3044\u65e5\u304c\u6765\u308b\u306e\u306f\u60f3\u50cf\u3067\u304d\u308b\u306e\u3067\u3059\u304c\u3001\u307e\u3060\u8179\u304f\u304f\u308c\u306a\u304f\u3066\u4eca\u30a4\u30e2\u30e0\u30b7\u307f\u305f\u3044\u306b\u306a\u3063\u3066\u308b\u3002\n\u306a\u305c\u304b\u30a8\u30ed\u3044\u3046\u305f\u805e\u3044\u3066\u3002\n\u30ef\u30a4\u30f3\u306f\u7247\u6642\u3082\u96e2\u3055\u305a\u306b\u3002\nsex\u30ab\u30e2\u30f3\u30c3\u3066\u3069\u3093\u306a\u6b4c\u3060\u3088\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":409576148,"id_str":"409576148","name":"\u5948\u7f8e","screen_name":"namiconiq","location":"\u6e0b\u8c37\u30fb\u8868\u53c2\u9053\u30fb\u6075\u6bd4\u9808\uff5e","url":null,"description":"\u7f8e\u5473\u3057\u3044\u304a\u9152\u3068\u30b4\u30cf\u30f3\u304c\u5927\u597d\u304d\u306a\u3001\u3086\u308b\u3063\u3068\u30a2\u30e9\u30b5\u30fc\uff2f\uff2c\uff0e\n\u304a\u4ed5\u4e8b\u306f\u3001\u30d5\u30a1\u30a4\u30ca\u30f3\u30b9\u95a2\u4fc2\u306e\u4f1a\u793e\u306e\u30b7\u30e3\u30c3\u30c1\u30e7\u30b5\u30f3\u306e\u30a2\u30b7\u30b9\u30bf\u30f3\u30c8\u3092\u3057\u3066\u304a\u308a\u307e\u3059\u3002\u304a\u3082\u306b\u5e73\u65e5\u306e\u671d\u304b\u3089\u5915\u65b9\u306b\u304b\u3051\u3066\u3064\u3076\u3084\u304f\u3002","protected":false,"verified":false,"followers_count":10,"friends_count":15,"listed_count":0,"favourites_count":29,"statuses_count":719,"created_at":"Thu Nov 10 23:05:30 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652857207856365568\/zs1cSxo7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652857207856365568\/zs1cSxo7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/409576148\/1444108181","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887472128,"id_str":"663728248887472128","text":"RT @wordjones: Following @SquIRMIowl to #IRMI2015 registration https:\/\/t.co\/fnXJdndDTR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21098495,"id_str":"21098495","name":"Lisa H. Harrington","screen_name":"crosslady62","location":"Texas","url":"http:\/\/www.irmi.com","description":"Vice President at IRMI, manager, writer, speaker, friend, Lutheran, wife to a wonderful husband, wearing a lot of hats in life and work.","protected":false,"verified":false,"followers_count":355,"friends_count":355,"listed_count":13,"favourites_count":141,"statuses_count":1747,"created_at":"Tue Feb 17 15:41:32 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/166407026\/x2b6c584dddec3943f20c7a2c9a639cb.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/166407026\/x2b6c584dddec3943f20c7a2c9a639cb.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"C2E6FB","profile_sidebar_fill_color":"092163","profile_text_color":"FFFFFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/577649267017289728\/rdT8vEhd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/577649267017289728\/rdT8vEhd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21098495\/1427499518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:03:31 +0000 2015","id":663522270644584448,"id_str":"663522270644584448","text":"Following @SquIRMIowl to #IRMI2015 registration https:\/\/t.co\/fnXJdndDTR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":11604952,"id_str":"11604952","name":"Steve (wordjones)","screen_name":"wordjones","location":"Pennsylvania","url":null,"description":"PR, ad, marcomms, branding pro. PR and public speaking teacher. Cyclist, and left-of-center kind of guy. Possibly a gadabout. Views mine - duh.","protected":false,"verified":false,"followers_count":233,"friends_count":191,"listed_count":12,"favourites_count":16,"statuses_count":2186,"created_at":"Fri Dec 28 15:04:23 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/3518692\/DSCF0257.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/3518692\/DSCF0257.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1435290954\/Photo_6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1435290954\/Photo_6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/11604952\/1434729387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":4,"entities":{"hashtags":[{"text":"IRMI2015","indices":[25,34]}],"urls":[],"user_mentions":[{"screen_name":"SquIRMIowl","name":"SquIRMI","id":3107355666,"id_str":"3107355666","indices":[10,21]}],"symbols":[],"media":[{"id":663522179556835328,"id_str":"663522179556835328","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","url":"https:\/\/t.co\/fnXJdndDTR","display_url":"pic.twitter.com\/fnXJdndDTR","expanded_url":"http:\/\/twitter.com\/wordjones\/status\/663522270644584448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663522179556835328,"id_str":"663522179556835328","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","url":"https:\/\/t.co\/fnXJdndDTR","display_url":"pic.twitter.com\/fnXJdndDTR","expanded_url":"http:\/\/twitter.com\/wordjones\/status\/663522270644584448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":15775,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/pl\/z4fIkftcDICYacOZ.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/pl\/z4fIkftcDICYacOZ.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/480x480\/Mqgr3QXRcwjjHIBL.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/720x720\/RWythUB0KeUDmCfN.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/240x240\/i77bHLdBZpgUwB-X.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/480x480\/Mqgr3QXRcwjjHIBL.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"IRMI2015","indices":[40,49]}],"urls":[],"user_mentions":[{"screen_name":"wordjones","name":"Steve (wordjones)","id":11604952,"id_str":"11604952","indices":[3,13]},{"screen_name":"SquIRMIowl","name":"SquIRMI","id":3107355666,"id_str":"3107355666","indices":[25,36]}],"symbols":[],"media":[{"id":663522179556835328,"id_str":"663522179556835328","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","url":"https:\/\/t.co\/fnXJdndDTR","display_url":"pic.twitter.com\/fnXJdndDTR","expanded_url":"http:\/\/twitter.com\/wordjones\/status\/663522270644584448\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663522270644584448,"source_status_id_str":"663522270644584448","source_user_id":11604952,"source_user_id_str":"11604952"}]},"extended_entities":{"media":[{"id":663522179556835328,"id_str":"663522179556835328","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663522179556835328\/pu\/img\/GbVYssPmqKKMY-FS.jpg","url":"https:\/\/t.co\/fnXJdndDTR","display_url":"pic.twitter.com\/fnXJdndDTR","expanded_url":"http:\/\/twitter.com\/wordjones\/status\/663522270644584448\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663522270644584448,"source_status_id_str":"663522270644584448","source_user_id":11604952,"source_user_id_str":"11604952","video_info":{"aspect_ratio":[1,1],"duration_millis":15775,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/pl\/z4fIkftcDICYacOZ.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/pl\/z4fIkftcDICYacOZ.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/480x480\/Mqgr3QXRcwjjHIBL.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/720x720\/RWythUB0KeUDmCfN.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/240x240\/i77bHLdBZpgUwB-X.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663522179556835328\/pu\/vid\/480x480\/Mqgr3QXRcwjjHIBL.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866521088,"id_str":"663728248866521088","text":"@kiechon1000X \u30c4\u30fc\u30b7\u30e7\u30c3\u30c8\u305f\u3081\u3068\u3044\u3066\u307e\u3060\u4ed8\u304d\u5408\u3063\u3066\u308b\u3053\u3068\u306b\u3059\u308b\u3057\u304b\uff01\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728068419174400,"in_reply_to_status_id_str":"663728068419174400","in_reply_to_user_id":1904380962,"in_reply_to_user_id_str":"1904380962","in_reply_to_screen_name":"kiechon1000X","user":{"id":4145736620,"id_str":"4145736620","name":"\u6c38\u4e95\u52dd","screen_name":"chopper8111","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":74,"friends_count":103,"listed_count":0,"favourites_count":12,"statuses_count":98,"created_at":"Fri Nov 06 11:57:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663618884365254656\/aA48oM3o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663618884365254656\/aA48oM3o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4145736620\/1446823779","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kiechon1000X","name":"K","id":1904380962,"id_str":"1904380962","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866668544,"id_str":"663728248866668544","text":"Join adeoressi in the heart of #SiliconValley: Free \"#Startup Ideation Bootcamp\"! RSVP: https:\/\/t.co\/aUPNAhc1tq https:\/\/t.co\/xIL9QJm9Wn #\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3990663088,"id_str":"3990663088","name":"Founder Inst KW","screen_name":"FoundingKW","location":"Waterloo, Ontario","url":"http:\/\/www.fi.co\/?target=waterloo","description":"The world's largest #entrepreneur training & #startup launch program now in Kitchener-Waterloo. Checkout our mentors and sign up for exclusive events","protected":false,"verified":false,"followers_count":289,"friends_count":1170,"listed_count":53,"favourites_count":7,"statuses_count":688,"created_at":"Mon Oct 19 00:02:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656161328743055360\/cCpqKY_T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656161328743055360\/cCpqKY_T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3990663088\/1445276042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SiliconValley","indices":[31,45]},{"text":"Startup","indices":[53,61]}],"urls":[{"url":"https:\/\/t.co\/aUPNAhc1tq","expanded_url":"http:\/\/ow.ly\/UgaIe","display_url":"ow.ly\/UgaIe","indices":[88,111]}],"user_mentions":[],"symbols":[],"media":[{"id":663725526540877824,"id_str":"663725526540877824","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG2Y3UAAAEilp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG2Y3UAAAEilp.jpg","url":"https:\/\/t.co\/xIL9QJm9Wn","display_url":"pic.twitter.com\/xIL9QJm9Wn","expanded_url":"http:\/\/twitter.com\/founding\/status\/663725527027589120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":532,"resize":"fit"},"large":{"w":879,"h":780,"resize":"fit"}},"source_status_id":663725527027589120,"source_status_id_str":"663725527027589120","source_user_id":29054405,"source_user_id_str":"29054405"}]},"extended_entities":{"media":[{"id":663725526540877824,"id_str":"663725526540877824","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG2Y3UAAAEilp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG2Y3UAAAEilp.jpg","url":"https:\/\/t.co\/xIL9QJm9Wn","display_url":"pic.twitter.com\/xIL9QJm9Wn","expanded_url":"http:\/\/twitter.com\/founding\/status\/663725527027589120\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":301,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":532,"resize":"fit"},"large":{"w":879,"h":780,"resize":"fit"}},"source_status_id":663725527027589120,"source_status_id_str":"663725527027589120","source_user_id":29054405,"source_user_id_str":"29054405"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858148864,"id_str":"663728248858148864","text":"\u5922\u307f\u305f\u3082\u306e\u306f\uff65\uff65\uff65 (\u6df7\u58f0\u5408\u5531\u66f2\u96c6\u300c\u5922\u307f\u305f\u3082\u306e\u306f\u300d\u3088\u308a)\n\n\u601d\u3044\u51fa\u306e\u66f2\u3002\n\u307e\u305f\u3001\u5927\u597d\u304d\u306a\u66f2\u3002 https:\/\/t.co\/2U3FzRV7EI","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3144602670,"id_str":"3144602670","name":"\u305d\u3046\u305f\u3001","screen_name":"goal_purpose","location":null,"url":null,"description":"\u97f3\u697d\u3084\u3063\u3066\u307e\u3059\u3002 \u30df\u30b9\u30c1\u30eb\u306f\u77e5\u3063\u3066\u307e\u3059\u3002\u30df\u30b9\u30c1\u30eb\u306e\u6b4c\u8a5e\u3059\u304d\u3067\u3059\u3002 \u4e2d\u5b66\u306f\u4ef0\u661f\u3067\u3057\u305f\u3002","protected":false,"verified":false,"followers_count":25,"friends_count":24,"listed_count":0,"favourites_count":15,"statuses_count":43,"created_at":"Wed Apr 08 11:10:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585761787624062976\/VicfvRny_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585761787624062976\/VicfvRny_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2U3FzRV7EI","expanded_url":"http:\/\/youtu.be\/Pxi5cv-lhSg","display_url":"youtu.be\/Pxi5cv-lhSg","indices":[47,70]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883445760,"id_str":"663728248883445760","text":"RT @supermegadrivin: https:\/\/t.co\/vuQaQTJw9a","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224318229,"id_str":"224318229","name":"S\u00e9bastien Voerman","screen_name":"sebvoerman","location":"Avignon","url":"http:\/\/www.sebastien-voerman.fr","description":"Photographe","protected":false,"verified":false,"followers_count":70,"friends_count":140,"listed_count":3,"favourites_count":3,"statuses_count":315,"created_at":"Wed Dec 08 18:03:04 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663514382127767553\/twOrtjk8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663514382127767553\/twOrtjk8_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:47 +0000 2015","id":663723411345121280,"id_str":"663723411345121280","text":"https:\/\/t.co\/vuQaQTJw9a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":108570813,"id_str":"108570813","name":"Jean-Moundir","screen_name":"supermegadrivin","location":"Marseille","url":"http:\/\/rfgisabitch.wordpress.com\/","description":"Si j'\u00e9tais toi je me suivrais. Enfin je me suivrais pas toi mais moi, tu me suis ? http:\/\/www.facebook.com\/rhumarin\n\nContact: romainfg@gmail.com","protected":false,"verified":false,"followers_count":65558,"friends_count":1249,"listed_count":591,"favourites_count":19690,"statuses_count":40024,"created_at":"Tue Jan 26 10:37:10 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559827840\/UrbanDirty098.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559827840\/UrbanDirty098.jpg","profile_background_tile":true,"profile_link_color":"B3204F","profile_sidebar_border_color":"F0F4FA","profile_sidebar_fill_color":"36728A","profile_text_color":"CBD0D6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660001521694875648\/yHLVuWv0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660001521694875648\/yHLVuWv0_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/108570813\/1348118685","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":28,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723397390712832,"id_str":"663723397390712832","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","url":"https:\/\/t.co\/vuQaQTJw9a","display_url":"pic.twitter.com\/vuQaQTJw9a","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663723411345121280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":374,"resize":"fit"},"large":{"w":600,"h":374,"resize":"fit"},"small":{"w":340,"h":211,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723397390712832,"id_str":"663723397390712832","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","url":"https:\/\/t.co\/vuQaQTJw9a","display_url":"pic.twitter.com\/vuQaQTJw9a","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663723411345121280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":374,"resize":"fit"},"large":{"w":600,"h":374,"resize":"fit"},"small":{"w":340,"h":211,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"supermegadrivin","name":"Jean-Moundir","id":108570813,"id_str":"108570813","indices":[3,19]}],"symbols":[],"media":[{"id":663723397390712832,"id_str":"663723397390712832","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","url":"https:\/\/t.co\/vuQaQTJw9a","display_url":"pic.twitter.com\/vuQaQTJw9a","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663723411345121280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":374,"resize":"fit"},"large":{"w":600,"h":374,"resize":"fit"},"small":{"w":340,"h":211,"resize":"fit"}},"source_status_id":663723411345121280,"source_status_id_str":"663723411345121280","source_user_id":108570813,"source_user_id_str":"108570813"}]},"extended_entities":{"media":[{"id":663723397390712832,"id_str":"663723397390712832","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYE6dKWwAAiAZ4.png","url":"https:\/\/t.co\/vuQaQTJw9a","display_url":"pic.twitter.com\/vuQaQTJw9a","expanded_url":"http:\/\/twitter.com\/supermegadrivin\/status\/663723411345121280\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":374,"resize":"fit"},"large":{"w":600,"h":374,"resize":"fit"},"small":{"w":340,"h":211,"resize":"fit"}},"source_status_id":663723411345121280,"source_status_id_str":"663723411345121280","source_user_id":108570813,"source_user_id_str":"108570813"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080120665"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248866496512,"id_str":"663728248866496512","text":"RT @tbhjustmino: when I complain about w and typical ygstan coming at me like \"why you always throw shit at yg stop complaining I love winn\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":881561810,"id_str":"881561810","name":"Daphne","screen_name":"Daphne_VIP","location":"WINNERCITY \u24e6","url":null,"description":"| HARDCORE YGSTAN | BIGBANGTAN X WINNER","protected":false,"verified":false,"followers_count":427,"friends_count":537,"listed_count":2,"favourites_count":19055,"statuses_count":15095,"created_at":"Mon Oct 15 04:42:42 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476648688052207616\/lGI8jSN9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476648688052207616\/lGI8jSN9.jpeg","profile_background_tile":true,"profile_link_color":"FF0638","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663213329779830784\/EtLm_Cxx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663213329779830784\/EtLm_Cxx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/881561810\/1446982955","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:18 +0000 2015","id":663728072479240193,"id_str":"663728072479240193","text":"when I complain about w and typical ygstan coming at me like \"why you always throw shit at yg stop complaining I love winner but I hate IC\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1221778952,"id_str":"1221778952","name":"bands aka life","screen_name":"tbhjustmino","location":null,"url":"http:\/\/instagram.com\/winnercity","description":"1000% carrot","protected":false,"verified":false,"followers_count":570,"friends_count":159,"listed_count":3,"favourites_count":5106,"statuses_count":8765,"created_at":"Tue Feb 26 13:49:13 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652095274953781248\/uXnmR31k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652095274953781248\/uXnmR31k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1221778952\/1445849340","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tbhjustmino","name":"bands aka life","id":1221778952,"id_str":"1221778952","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120661"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870805504,"id_str":"663728248870805504","text":"Can't wait Wed. Going to their show at Ignition Music Garage in Goshen.#NowPlaying Delia by The Ballroom Thieves fr\u2026 https:\/\/t.co\/NdWCRYfuZN","source":"\u003ca href=\"http:\/\/spotify.com\" rel=\"nofollow\"\u003eSpotify\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":122423881,"id_str":"122423881","name":"Jason Nelson","screen_name":"xcrunner_1","location":"Edwardsburg, MI","url":"http:\/\/tastingandbrewing.blogspot.com\/","description":"I love what I currently do. I'm an entrepreneurial business partner. I used a PhD student in Ecology at Miami University of Ohio. I am also an avid homebrewer.","protected":false,"verified":false,"followers_count":204,"friends_count":546,"listed_count":12,"favourites_count":352,"statuses_count":6500,"created_at":"Fri Mar 12 17:15:32 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442694250556583936\/P7P2FfKW_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442694250556583936\/P7P2FfKW_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/122423881\/1359856961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"NowPlaying","indices":[71,82]}],"urls":[{"url":"https:\/\/t.co\/NdWCRYfuZN","expanded_url":"http:\/\/spoti.fi\/14AQOBo","display_url":"spoti.fi\/14AQOBo","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248858128384,"id_str":"663728248858128384","text":"\u9593\u306b\u5408\u3063\u305f\u30fc\u30fc\uff01\u3084\u3063\u3068\u30d5\u30eb\u30b3\u30f3\u51fa\u6765\u305f\uff01#\u30b9\u30af\u30d5\u30a7\u30b9 https:\/\/t.co\/UOnGalKwDL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2880641142,"id_str":"2880641142","name":"\u3075\u30fc\u3061\u3083\u3093","screen_name":"_hutyan","location":"\u5c71\u57ce\u56fd\u3068\u9e7f\u5c4b\u57fa\u5730\u306e\u72ed\u9593","url":null,"description":"19\u2191 \u58f0\u512a:\u77f3\u7530\u5f70\/\u7d30\u8c37\u4f73\u6b63 \u8266\u3053\u308c:\u9678\u5965\u63a8\u3057\u3002\u93ae\u5b88\u5e9c\u7740\u4efb\u304b\u308911\u30f6\u6708\u3002\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u30b9\u30af\u30d5\u30a7\u30b9:\u3053\u3068\u308a\u63a8\u3057\u3002 5\/21 \u5200\u5263\u4e71\u821e\u59cb\u3081\u307e\u3057\u305f\u3002\u5c71\u57ce\u56fd\u9bd6 \u9daf\u4e38\u306e\u5e95\u6cbc\u306b\u6d78\u3063\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":304,"friends_count":484,"listed_count":5,"favourites_count":1238,"statuses_count":391,"created_at":"Tue Oct 28 11:29:24 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640835916173434881\/-jSsL4aR.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640835916173434881\/-jSsL4aR.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642746439106322432\/gbUCKl8R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642746439106322432\/gbUCKl8R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2880641142\/1444286212","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b9\u30af\u30d5\u30a7\u30b9","indices":[19,25]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728237718061056,"id_str":"663728237718061056","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUMyUwAAw4I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUMyUwAAw4I5.jpg","url":"https:\/\/t.co\/UOnGalKwDL","display_url":"pic.twitter.com\/UOnGalKwDL","expanded_url":"http:\/\/twitter.com\/_hutyan\/status\/663728248858128384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728237718061056,"id_str":"663728237718061056","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUMyUwAAw4I5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUMyUwAAw4I5.jpg","url":"https:\/\/t.co\/UOnGalKwDL","display_url":"pic.twitter.com\/UOnGalKwDL","expanded_url":"http:\/\/twitter.com\/_hutyan\/status\/663728248858128384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120659"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248849833985,"id_str":"663728248849833985","text":"https:\/\/t.co\/s8eZsRiOFr #\u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c \u041f\u0440\u043e\u0434\u0430\u0435\u0442\u0441\u044f 1-\u043a \u043a\u0432\u0430\u0440\u0442\u0438\u0440\u0430. \u041a\u0440\u0430\u0441\u043d\u043e\u0434\u0430\u0440 \u0433., \u0438\u043c \u0421\u0435\u0440\u0433\u0435\u044f \u0415\u0441\u0435\u043d\u0438\u043d\u0430 \u0443\u043b., 82\/5 https:\/\/t.co\/4kMxJMOLbD","source":"\u003ca href=\"http:\/\/v.instanceof.org\" rel=\"nofollow\"\u003emlspro.ru\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2214660180,"id_str":"2214660180","name":"MLSPRO.ru","screen_name":"MLSPROru","location":"\u041c\u043e\u0441\u043a\u0432\u0430","url":"http:\/\/mlspro.ru","description":"\u041d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c \u0432 \u041c\u043e\u0441\u043a\u0432\u0435 \u0438 \u041f\u043e\u0434\u043c\u043e\u0441\u043a\u043e\u0432\u044c\u0435","protected":false,"verified":false,"followers_count":269,"friends_count":60,"listed_count":2,"favourites_count":0,"statuses_count":248065,"created_at":"Mon Nov 25 20:47:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000790278941\/ccc3a34816418761d0da2e1ba3057561_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000790278941\/ccc3a34816418761d0da2e1ba3057561_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u043d\u0435\u0434\u0432\u0438\u0436\u0438\u043c\u043e\u0441\u0442\u044c","indices":[24,37]}],"urls":[{"url":"https:\/\/t.co\/s8eZsRiOFr","expanded_url":"http:\/\/mlspro.ru\/470750","display_url":"mlspro.ru\/470750","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663728248573046784,"id_str":"663728248573046784","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU1OWsAAgYeD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU1OWsAAgYeD.jpg","url":"https:\/\/t.co\/4kMxJMOLbD","display_url":"pic.twitter.com\/4kMxJMOLbD","expanded_url":"http:\/\/twitter.com\/MLSPROru\/status\/663728248849833985\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":380,"h":243,"resize":"fit"},"large":{"w":380,"h":243,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728248573046784,"id_str":"663728248573046784","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU1OWsAAgYeD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU1OWsAAgYeD.jpg","url":"https:\/\/t.co\/4kMxJMOLbD","display_url":"pic.twitter.com\/4kMxJMOLbD","expanded_url":"http:\/\/twitter.com\/MLSPROru\/status\/663728248849833985\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":380,"h":243,"resize":"fit"},"large":{"w":380,"h":243,"resize":"fit"},"small":{"w":340,"h":217,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080120657"} +{"delete":{"status":{"id":662326571206881281,"id_str":"662326571206881281","user_id":2446085972,"user_id_str":"2446085972"},"timestamp_ms":"1447080121011"}} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248870846468,"id_str":"663728248870846468","text":"Lo contrario de vivir es no arriesgarse. https:\/\/t.co\/Xen8awWIk7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1189625240,"id_str":"1189625240","name":"AngelaFernandez\u2764","screen_name":"angelafl_sanjo","location":"Zamora,(espa\u00f1a) ","url":null,"description":"'No debemos tener miedo a equivocarnos, hasta los planetas chocan y del caos nacen las estrellas'. \n angelaflf_sanjo","protected":false,"verified":false,"followers_count":734,"friends_count":717,"listed_count":4,"favourites_count":1212,"statuses_count":21010,"created_at":"Sun Feb 17 14:04:29 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/806166299\/879f167b295113f5021a8c9d9b9adedd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/806166299\/879f167b295113f5021a8c9d9b9adedd.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660885500291608576\/R9ra4AKf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660885500291608576\/R9ra4AKf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1189625240\/1443453165","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728237130948608,"id_str":"663728237130948608","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUKmWIAASlJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUKmWIAASlJM.jpg","url":"https:\/\/t.co\/Xen8awWIk7","display_url":"pic.twitter.com\/Xen8awWIk7","expanded_url":"http:\/\/twitter.com\/angelafl_sanjo\/status\/663728248870846468\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728237130948608,"id_str":"663728237130948608","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUKmWIAASlJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUKmWIAASlJM.jpg","url":"https:\/\/t.co\/Xen8awWIk7","display_url":"pic.twitter.com\/Xen8awWIk7","expanded_url":"http:\/\/twitter.com\/angelafl_sanjo\/status\/663728248870846468\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080120662"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887619584,"id_str":"663728248887619584","text":"\u0646\u0627\u0635\u0631 \u0627\u0644\u0627\u0645\u0627\u0631\u0627\u062a\u0649 \u0648\u0645\u0631\u0627\u062a\u0647 \u0627\u0644\u0645\u0645\u062d\u0648\u0646\u0629 \u0641\u064a\u0644\u0645 \u062c\u062f\u064a\u062f \u0631\u0627\u0628\u0637 \u0627\u0644\u0641\u0644\u0645https:\/\/t.co\/kjPgAkTh01 wCJ https:\/\/t.co\/jhjEDFV0yB","source":"\u003ca href=\"https:\/\/khamsat.com\/user\/youssef1313\" rel=\"nofollow\"\u003eTweety Auto Tweet\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4034837776,"id_str":"4034837776","name":"\u0645\u0645\u062d\u0648\u0646\u0629 \u0645\u0634\u062a\u0647\u064a\u0629","screen_name":"tatiolio1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1731,"friends_count":2516,"listed_count":30,"favourites_count":0,"statuses_count":1801,"created_at":"Sat Oct 24 22:56:36 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658057046772830208\/j3N89KD6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658057046772830208\/j3N89KD6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4034837776\/1445728019","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kjPgAkTh01","expanded_url":"http:\/\/goo.gl\/w75Iy2","display_url":"goo.gl\/w75Iy2","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":663728248635961344,"id_str":"663728248635961344","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU1dWsAA0VEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU1dWsAA0VEJ.jpg","url":"https:\/\/t.co\/jhjEDFV0yB","display_url":"pic.twitter.com\/jhjEDFV0yB","expanded_url":"http:\/\/twitter.com\/tatiolio1\/status\/663728248887619584\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":483,"resize":"fit"},"medium":{"w":500,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728248635961344,"id_str":"663728248635961344","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU1dWsAA0VEJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU1dWsAA0VEJ.jpg","url":"https:\/\/t.co\/jhjEDFV0yB","display_url":"pic.twitter.com\/jhjEDFV0yB","expanded_url":"http:\/\/twitter.com\/tatiolio1\/status\/663728248887619584\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":483,"resize":"fit"},"medium":{"w":500,"h":483,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248887492610,"id_str":"663728248887492610","text":"\u5bdd\u8ee2\u3093\u3067\u305f\u3089\u862d\u3061\u3083\u3093\u304c\u8155\u306e\u4e2d\u306b\u5165\u3063\u3066\u304d\u305f\uff01\u53ef\u611b\u3044\u304b\u3089\u30a4\u30f3\u30ab\u30e1\u3067\u53ea\u7ba1\u9023\u5199\u3002\u524d\u811a\u51fa\u3057\u3066\u305f\u306e\u306d\u2661\u53ef\u611b\u3044\u306a\u3041\u3002 https:\/\/t.co\/emq8AOIcMR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":185131703,"id_str":"185131703","name":"\u30a4\u30cc\u30a4\u30ea\u30c4","screen_name":"rithuinui","location":"\u7532\u5b50\u5712\u306e\u571f","url":null,"description":"\u30df\u30cb\u30d4\u30f3\u98fc\u3044\u59cb\u3081\u3066\u75db\u3044\u98fc\u3044\u4e3b\u306b\u5316\u3051\u305f\u3002\u611b\u72ac\u306e\u8af8\u8cbb\u7528\u3092\u7a3c\u3050\u70ba\u306b\u770b\u8b77\u5e2b\u3068\u3057\u3066\u50cd\u3044\u3066\u307e\u3059\u3002\u30aa\u30bf\u30af\u3067\u3082\u3042\u308a\u690e\u540d\u6797\u6a8e\u3055\u3093\u304c\u5927\u597d\u304d\u3084\u3063\u305f\u308a\u3059\u308b\u306e\u3067\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u304c\u3044\u308d\u3044\u308d\u30ab\u30aa\u30b9\u3067\u7d71\u4e00\u6027\u304c\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":82,"friends_count":227,"listed_count":1,"favourites_count":213,"statuses_count":4876,"created_at":"Tue Aug 31 09:07:04 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639603400510824448\/FG9Uh4zN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639603400510824448\/FG9Uh4zN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185131703\/1441459245","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728233641209856,"id_str":"663728233641209856","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJT9mU8AA-N5u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJT9mU8AA-N5u.jpg","url":"https:\/\/t.co\/emq8AOIcMR","display_url":"pic.twitter.com\/emq8AOIcMR","expanded_url":"http:\/\/twitter.com\/rithuinui\/status\/663728248887492610\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728233641209856,"id_str":"663728233641209856","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJT9mU8AA-N5u.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJT9mU8AA-N5u.jpg","url":"https:\/\/t.co\/emq8AOIcMR","display_url":"pic.twitter.com\/emq8AOIcMR","expanded_url":"http:\/\/twitter.com\/rithuinui\/status\/663728248887492610\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663728233632759808,"id_str":"663728233632759808","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJT9kUAAAsO1l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJT9kUAAAsO1l.jpg","url":"https:\/\/t.co\/emq8AOIcMR","display_url":"pic.twitter.com\/emq8AOIcMR","expanded_url":"http:\/\/twitter.com\/rithuinui\/status\/663728248887492610\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080120666"} +{"created_at":"Mon Nov 09 14:42:00 +0000 2015","id":663728248883384320,"id_str":"663728248883384320","text":"s\u0131cak \u00e7ikolata | hot chocolate! https:\/\/t.co\/NjWyPaWEVb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236580694,"id_str":"3236580694","name":"H\u00fcmaliva \u00c7ikolata","screen_name":"humaliva","location":null,"url":"http:\/\/humaliva.com","description":"Te\u015fvikiye Mah. Valikona\u011f\u0131 Cad. Hac\u0131 Emin Efendi Sk. 75\/3 Ni\u015fanta\u015f\u0131 ~ 0212 224 4862 instagram: humalivacikolata","protected":false,"verified":false,"followers_count":50,"friends_count":0,"listed_count":0,"favourites_count":65,"statuses_count":25,"created_at":"Tue May 05 18:36:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641542445432446976\/Be_sahZL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641542445432446976\/Be_sahZL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236580694\/1443820401","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728204524318724,"id_str":"663728204524318724","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSRIUcAQOFvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSRIUcAQOFvs.jpg","url":"https:\/\/t.co\/NjWyPaWEVb","display_url":"pic.twitter.com\/NjWyPaWEVb","expanded_url":"http:\/\/twitter.com\/humaliva\/status\/663728248883384320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728204524318724,"id_str":"663728204524318724","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJSRIUcAQOFvs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJSRIUcAQOFvs.jpg","url":"https:\/\/t.co\/NjWyPaWEVb","display_url":"pic.twitter.com\/NjWyPaWEVb","expanded_url":"http:\/\/twitter.com\/humaliva\/status\/663728248883384320\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080120665"} +{"delete":{"status":{"id":663718765557755904,"id_str":"663718765557755904","user_id":3491950519,"user_id_str":"3491950519"},"timestamp_ms":"1447080121252"}} +{"delete":{"status":{"id":663494579992272896,"id_str":"663494579992272896","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080121286"}} +{"delete":{"status":{"id":663727636485656580,"id_str":"663727636485656580","user_id":1654209342,"user_id_str":"1654209342"},"timestamp_ms":"1447080121471"}} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253052563456,"id_str":"663728253052563456","text":"RT @joejonas: \ud83c\udf99 https:\/\/t.co\/df0AiMRxtU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1177102008,"id_str":"1177102008","name":"Whispers inThe cloud","screen_name":"Litchfield_R3D","location":null,"url":"https:\/\/www.youtube.com\/watch?v=eEFQXCtXoi0&feature=youtu.be","description":"Think of all the roads, think of all their crossings, taking steps is easy, standing still is hard, remember all their faces, remember all their voices...(^_^)","protected":false,"verified":false,"followers_count":437,"friends_count":1238,"listed_count":3,"favourites_count":8396,"statuses_count":1902,"created_at":"Wed Feb 13 23:22:24 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662371865197957120\/Eu1hYipq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662371865197957120\/Eu1hYipq.jpg","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662313489080389633\/ggxq82hH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662313489080389633\/ggxq82hH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177102008\/1445966078","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 06:24:05 +0000 2015","id":663602943770275840,"id_str":"663602943770275840","text":"\ud83c\udf99 https:\/\/t.co\/df0AiMRxtU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":104249727,"id_str":"104249727","name":"J O E J O N A S","screen_name":"joejonas","location":null,"url":"http:\/\/republicrec.co\/DNCESwaayEx","description":"Lead Singer In @DNCE DEBUT EP - SWAAY - OUT NOW","protected":false,"verified":true,"followers_count":7831562,"friends_count":987,"listed_count":53936,"favourites_count":1916,"statuses_count":8199,"created_at":"Tue Jan 12 19:29:00 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000057001710\/0a403f8217153456d2d9024aa7c5ef34.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000057001710\/0a403f8217153456d2d9024aa7c5ef34.jpeg","profile_background_tile":false,"profile_link_color":"02789C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E0E0E0","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650832390307221504\/pfL1XSnd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650832390307221504\/pfL1XSnd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/104249727\/1418656363","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3cf92a36fad89185","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3cf92a36fad89185.json","place_type":"city","name":"Southlake","full_name":"Southlake, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-97.203230,32.914293],[-97.203230,33.007009],[-97.098767,33.007009],[-97.098767,32.914293]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":969,"favorite_count":2746,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663602936803553280,"id_str":"663602936803553280","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","url":"https:\/\/t.co\/df0AiMRxtU","display_url":"pic.twitter.com\/df0AiMRxtU","expanded_url":"http:\/\/twitter.com\/joejonas\/status\/663602943770275840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663602936803553280,"id_str":"663602936803553280","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","url":"https:\/\/t.co\/df0AiMRxtU","display_url":"pic.twitter.com\/df0AiMRxtU","expanded_url":"http:\/\/twitter.com\/joejonas\/status\/663602943770275840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"joejonas","name":"J O E J O N A S","id":104249727,"id_str":"104249727","indices":[3,12]}],"symbols":[],"media":[{"id":663602936803553280,"id_str":"663602936803553280","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","url":"https:\/\/t.co\/df0AiMRxtU","display_url":"pic.twitter.com\/df0AiMRxtU","expanded_url":"http:\/\/twitter.com\/joejonas\/status\/663602943770275840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}},"source_status_id":663602943770275840,"source_status_id_str":"663602943770275840","source_user_id":104249727,"source_user_id_str":"104249727"}]},"extended_entities":{"media":[{"id":663602936803553280,"id_str":"663602936803553280","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWXWugU8AA2cNw.jpg","url":"https:\/\/t.co\/df0AiMRxtU","display_url":"pic.twitter.com\/df0AiMRxtU","expanded_url":"http:\/\/twitter.com\/joejonas\/status\/663602943770275840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":332,"resize":"fit"},"medium":{"w":600,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":733,"resize":"fit"}},"source_status_id":663602943770275840,"source_status_id_str":"663602943770275840","source_user_id":104249727,"source_user_id_str":"104249727"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121659"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081935873,"id_str":"663728253081935873","text":"\u0623\u0645\u0629 \u0636\u062d\u0643\u0629 \u0645\u0646 \u062c\u0647\u0644\u0647\u0627 \u0623\u0645\u0645 \u0644\u0627 \u062a\u0639\u0644\u064a\u0642... #\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":582142437,"id_str":"582142437","name":"\u05e4\u05bf\u0640\u06c9\u0627\u064e\u0637\u0694 \u0645\u064e\u0628\u0640\u064f\u0639\u062b\u064e\u0694\u0629","screen_name":"nfhat_guerets","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0647\u0627\u0648\u064a \u062a\u0635\u0648\u064a\u0631 \u0641\u0648\u062a\u0648\u063a\u0631\u0627\u0641\u064a \u0625\u0639\u0644\u0627\u0645\u064a \u0648 \u0643\u0627\u062a\u0628 \u0639\u0627\u0634\u0642 \u0644\u0635\u062d\u0627\u0641\u0629 \u0627\u0644\u062d\u0631\u0629 \u062d\u062f\u0648\u062f\u064a \u0647\u064a \u0627\u0644\u0633\u0645\u0627\u0621 \u0634\u0639\u0627\u0631\u064a \u0627\u0644\u0623\u062d\u0633\u0627\u0646 \u0648 \u0627\u0644\u062a\u062d\u0633\u064a\u0646 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0639\u0627\u0644\u0645 \u2712...","protected":false,"verified":false,"followers_count":249,"friends_count":282,"listed_count":1,"favourites_count":1021,"statuses_count":5206,"created_at":"Wed May 16 18:35:14 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/471169713259560960\/DWsgf_XX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/471169713259560960\/DWsgf_XX.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660828133965320193\/bLe94dsw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660828133965320193\/bLe94dsw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/582142437\/1445739080","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u062c\u0646_\u064a\u0639\u0627\u0634\u0631_\u0627\u0644\u0646\u0633\u0627\u0621","indices":[34,52]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253077725188,"id_str":"663728253077725188","text":"RT @insomniex: normalmente el fr\u00edo lo traemos las personas, y no el invierno.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":755594310,"id_str":"755594310","name":"Standby.","screen_name":"carmenbelentm","location":"Hornachuelos, C\u00f3rdoba","url":"http:\/\/youtube.com","description":"Cantante de ducha. Futura Youtuber sin \u00e9xito. Macarroner. Camelier. Quiero a Rubius por encima de mis posibilidades. Melendi. Bi(polar\/sexual). Rubia en esencia","protected":false,"verified":false,"followers_count":1365,"friends_count":2025,"listed_count":19,"favourites_count":110993,"statuses_count":29278,"created_at":"Mon Aug 13 18:20:58 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/581183970756288512\/wBv5FLjT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/581183970756288512\/wBv5FLjT.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663133782921334784\/0HHhVtjI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663133782921334784\/0HHhVtjI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/755594310\/1440348885","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:22:09 +0000 2015","id":663436363237314560,"id_str":"663436363237314560","text":"normalmente el fr\u00edo lo traemos las personas, y no el invierno.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2657201453,"id_str":"2657201453","name":"d\u00e9clin","screen_name":"insomniex","location":null,"url":null,"description":"cuando estoy que no estoy, s\u00f3lo me apetece coger un cuaderno y empezar a escribir.","protected":false,"verified":false,"followers_count":64003,"friends_count":148,"listed_count":231,"favourites_count":66929,"statuses_count":2274,"created_at":"Mon Jun 30 17:55:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616759424770772992\/EjbT1w0B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616759424770772992\/EjbT1w0B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2657201453\/1421166537","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":428,"favorite_count":524,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"insomniex","name":"d\u00e9clin","id":2657201453,"id_str":"2657201453","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121665"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081907200,"id_str":"663728253081907200","text":"RT @Awaash897409242: \u0627\u062d\u0633\u0633 \u0631\u064a\u062d\u0629 \u0628\u062e\u0648\u0631 \u062f\u0647\u0646 \u0639\u0648\u0648\u062f \u0643\u0644\u0644 \u0634\u064a\u064a #PoyarzKarayel https:\/\/t.co\/1mA9AJtk3C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1390464607,"id_str":"1390464607","name":"\u0631\u27b0","screen_name":"IiiA3_","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u0627\u0646\u0627 \u0623\u0645\u062b\u0644 \u0639\u0645\u0631\u064a \u0645\u0627 \u0623\u0645\u062b\u0644 \u0627\u062d\u062f |#parampar\u00e7a #alnasser","protected":false,"verified":false,"followers_count":420,"friends_count":579,"listed_count":1,"favourites_count":138,"statuses_count":11185,"created_at":"Mon Apr 29 20:57:00 +0000 2013","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660055970010308608\/Ste60IDT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660055970010308608\/Ste60IDT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1390464607\/1443817937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:26 +0000 2015","id":663727349477810176,"id_str":"663727349477810176","text":"\u0627\u062d\u0633\u0633 \u0631\u064a\u062d\u0629 \u0628\u062e\u0648\u0631 \u062f\u0647\u0646 \u0639\u0648\u0648\u062f \u0643\u0644\u0644 \u0634\u064a\u064a #PoyarzKarayel https:\/\/t.co\/1mA9AJtk3C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3121827386,"id_str":"3121827386","name":"h\u262a","screen_name":"Awaash897409242","location":"\u0648\u0637\u0646 \u0627\u0644\u0646\u0647\u0627\u0631 ","url":null,"description":"\u0646\u064f\u0641\u064a\u062a \u0648\u0627\u0633\u062a\u0648\u0637\u0646\u0651 \u0627\u0644\u0627\u063a\u0631\u0627\u0628\u064f \u0641\u064a \u0628\u0644\u062f\u064a ! \u062e\u0644\u0648\u0646\u064a \u0627\u0646\u0641\u0639 \u0646\u0641\u0633\u064a \u0627\u0648\u0644 \u0628\u0639\u062f\u064a\u0646 \u0627\u0642\u0648\u0644\u0643\u0645 \u0634\u064a \u064a\u0646\u0641\u0639\u0643\u0645 :)\u060c \u0645\u0627\u0627\u0646\u0632\u0644 \u0641\u064a\u062f\u064a\u0648\u0647\u0627\u062a \u0641\u064a\u0647\u0627 \u0645\u0648\u0633\u064a\u0642\u0649 \u0648\u0644\u0627 \u0635\u0648\u0631 \u0628\u0646\u0627\u062a \u0627\u0646\u0627 \u064a\u0627\u0644\u0644\u0627 \u0645\u062a\u062d\u0645\u0644\u0647 \u0627\u062b\u0645 \u0646\u0641\u0633\u064a \u0627\u062a\u062d\u0645\u0644 \u0627\u062b\u0645\u0643\u0645\u061f","protected":false,"verified":false,"followers_count":311,"friends_count":179,"listed_count":1,"favourites_count":32,"statuses_count":9564,"created_at":"Tue Mar 31 22:03:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550325278834688\/XvgN8OaF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550325278834688\/XvgN8OaF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3121827386\/1447080087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[{"text":"PoyarzKarayel","indices":[32,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PoyarzKarayel","indices":[53,67]}],"urls":[],"user_mentions":[{"screen_name":"Awaash897409242","name":"h\u262a","id":3121827386,"id_str":"3121827386","indices":[3,19]}],"symbols":[],"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727349477810176,"source_status_id_str":"663727349477810176","source_user_id":3121827386,"source_user_id_str":"3121827386"}]},"extended_entities":{"media":[{"id":663727334185275393,"id_str":"663727334185275393","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIfm3UkAExL2w.jpg","url":"https:\/\/t.co\/1mA9AJtk3C","display_url":"pic.twitter.com\/1mA9AJtk3C","expanded_url":"http:\/\/twitter.com\/Awaash897409242\/status\/663727349477810176\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663727349477810176,"source_status_id_str":"663727349477810176","source_user_id":3121827386,"source_user_id_str":"3121827386"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253077757952,"id_str":"663728253077757952","text":"I don't wanna get up","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318303598,"id_str":"318303598","name":".","screen_name":"_LexiThough","location":null,"url":null,"description":"candy is dandy but liquor is quicker","protected":false,"verified":false,"followers_count":1203,"friends_count":1187,"listed_count":1,"favourites_count":4030,"statuses_count":27051,"created_at":"Thu Jun 16 08:18:07 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000015878588\/68165d820577f0ecccaf676985b0fa98.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000015878588\/68165d820577f0ecccaf676985b0fa98.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726916894105604\/Mp7XUwhA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726916894105604\/Mp7XUwhA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318303598\/1447014859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121665"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253065146368,"id_str":"663728253065146368","text":"votingacc17326: DjpadillsP: _kdlover: 52526kn: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: KOREAdorables: kbdpftcris29: byaheng4: #PushAwards\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4080701598,"id_str":"4080701598","name":"[s]","screen_name":"sxphiyuhx3","location":null,"url":null,"description":"@sxphiaftkd's free follow","protected":false,"verified":false,"followers_count":3,"friends_count":22,"listed_count":4,"favourites_count":0,"statuses_count":18831,"created_at":"Sat Oct 31 14:59:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660471498122006528\/Dl0epqoa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660471498122006528\/Dl0epqoa_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwards","indices":[128,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080121662"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253060915201,"id_str":"663728253060915201","text":"No me jodas, el B612 hace perfecto a cualquiera","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2457276445,"id_str":"2457276445","name":"Maaar\u270c","screen_name":"MartinaCastro29","location":null,"url":"https:\/\/www.wattpad.com\/user\/MartinaCastro299","description":"Puede estar tormentoso ahora, pero no puede llover para siempre.","protected":false,"verified":false,"followers_count":599,"friends_count":522,"listed_count":1,"favourites_count":971,"statuses_count":3837,"created_at":"Mon Apr 21 23:42:45 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"199888","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656944038269030400\/3R2UJxfW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656944038269030400\/3R2UJxfW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2457276445\/1445006269","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121661"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081944064,"id_str":"663728253081944064","text":"RT @olanaranjac11: #EnMinutos @gmmarangoni estar\u00e1 junto a @germanpaoloski en @MesaLista por @eltreceoficial. https:\/\/t.co\/XPsRLocB97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4055513127,"id_str":"4055513127","name":"stella maris lopez","screen_name":"stellazubieta1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":54,"listed_count":0,"favourites_count":271,"statuses_count":282,"created_at":"Tue Oct 27 19:42:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659176871280689152\/evd0UkIP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659176871280689152\/evd0UkIP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4055513127\/1446683352","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:49 +0000 2015","id":663724678490492929,"id_str":"663724678490492929","text":"#EnMinutos @gmmarangoni estar\u00e1 junto a @germanpaoloski en @MesaLista por @eltreceoficial. https:\/\/t.co\/XPsRLocB97","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2903383013,"id_str":"2903383013","name":"OlaNaranja Comuna 11","screen_name":"olanaranjac11","location":null,"url":"https:\/\/www.facebook.com\/pages\/OlaNaranja-Comuna-Once\/603758546390969","description":"@danielscioli #PRESIDENTE \n- Zannini Vicepresidente #LoMejorEstaPorVenir","protected":false,"verified":false,"followers_count":2213,"friends_count":2129,"listed_count":8,"favourites_count":12,"statuses_count":6956,"created_at":"Wed Dec 03 05:57:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644179024013606912\/1v7l0jpc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644179024013606912\/1v7l0jpc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903383013\/1445963834","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":4,"entities":{"hashtags":[{"text":"EnMinutos","indices":[0,10]}],"urls":[],"user_mentions":[{"screen_name":"gmmarangoni","name":"Gustavo Marangoni","id":148536486,"id_str":"148536486","indices":[11,23]},{"screen_name":"germanpaoloski","name":"German Paoloski","id":117251043,"id_str":"117251043","indices":[39,54]},{"screen_name":"MesaLista","name":"La mesa est\u00e1 lista","id":3344645086,"id_str":"3344645086","indices":[58,68]},{"screen_name":"eltreceoficial","name":"El Trece - Oficial","id":175824869,"id_str":"175824869","indices":[73,88]}],"symbols":[],"media":[{"id":663724674434641920,"id_str":"663724674434641920","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","url":"https:\/\/t.co\/XPsRLocB97","display_url":"pic.twitter.com\/XPsRLocB97","expanded_url":"http:\/\/twitter.com\/olanaranjac11\/status\/663724678490492929\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724674434641920,"id_str":"663724674434641920","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","url":"https:\/\/t.co\/XPsRLocB97","display_url":"pic.twitter.com\/XPsRLocB97","expanded_url":"http:\/\/twitter.com\/olanaranjac11\/status\/663724678490492929\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EnMinutos","indices":[19,29]}],"urls":[],"user_mentions":[{"screen_name":"olanaranjac11","name":"OlaNaranja Comuna 11","id":2903383013,"id_str":"2903383013","indices":[3,17]},{"screen_name":"gmmarangoni","name":"Gustavo Marangoni","id":148536486,"id_str":"148536486","indices":[30,42]},{"screen_name":"germanpaoloski","name":"German Paoloski","id":117251043,"id_str":"117251043","indices":[58,73]},{"screen_name":"MesaLista","name":"La mesa est\u00e1 lista","id":3344645086,"id_str":"3344645086","indices":[77,87]},{"screen_name":"eltreceoficial","name":"El Trece - Oficial","id":175824869,"id_str":"175824869","indices":[92,107]}],"symbols":[],"media":[{"id":663724674434641920,"id_str":"663724674434641920","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","url":"https:\/\/t.co\/XPsRLocB97","display_url":"pic.twitter.com\/XPsRLocB97","expanded_url":"http:\/\/twitter.com\/olanaranjac11\/status\/663724678490492929\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":600,"resize":"fit"}},"source_status_id":663724678490492929,"source_status_id_str":"663724678490492929","source_user_id":2903383013,"source_user_id_str":"2903383013"}]},"extended_entities":{"media":[{"id":663724674434641920,"id_str":"663724674434641920","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGEyhWsAAmRQM.jpg","url":"https:\/\/t.co\/XPsRLocB97","display_url":"pic.twitter.com\/XPsRLocB97","expanded_url":"http:\/\/twitter.com\/olanaranjac11\/status\/663724678490492929\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":360,"resize":"fit"},"small":{"w":340,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1000,"h":600,"resize":"fit"}},"source_status_id":663724678490492929,"source_status_id_str":"663724678490492929","source_user_id":2903383013,"source_user_id_str":"2903383013"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121666"} +{"delete":{"status":{"id":660284960180273152,"id_str":"660284960180273152","user_id":1331702874,"user_id_str":"1331702874"},"timestamp_ms":"1447080121722"}} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253052583937,"id_str":"663728253052583937","text":"RT @bIessly: People think I forgot the shit they said or did. There isn't an expiration date on disrespect.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619440659,"id_str":"619440659","name":"Kayleeigh","screen_name":"kaaaayleiiigh","location":"Litchfield , ME","url":null,"description":"207.\u2600\ufe0f 17 | single |","protected":false,"verified":false,"followers_count":489,"friends_count":413,"listed_count":0,"favourites_count":1800,"statuses_count":15567,"created_at":"Tue Jun 26 21:35:33 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469249654530387968\/1ComwbVT.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469249654530387968\/1ComwbVT.png","profile_background_tile":true,"profile_link_color":"F763CF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654987936467959812\/sJ00T1Xv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654987936467959812\/sJ00T1Xv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619440659\/1444840453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:33:14 +0000 2015","id":663710943935913984,"id_str":"663710943935913984","text":"People think I forgot the shit they said or did. There isn't an expiration date on disrespect.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2827656101,"id_str":"2827656101","name":"\ufe0f\ufe0f\ufe0f\ufe0f","screen_name":"bIessly","location":"send poetry to my dms","url":null,"description":"turn on notifications :)","protected":false,"verified":false,"followers_count":26588,"friends_count":342,"listed_count":41,"favourites_count":9039,"statuses_count":288,"created_at":"Mon Oct 13 16:05:32 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663417074987986944\/kuvQOLQ1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663417074987986944\/kuvQOLQ1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2827656101\/1446206895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":456,"favorite_count":414,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bIessly","name":"\ufe0f\ufe0f\ufe0f\ufe0f","id":2827656101,"id_str":"2827656101","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121659"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048373249,"id_str":"663728253048373249","text":"@DKA_OfCourse bet","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728090703597569,"in_reply_to_status_id_str":"663728090703597569","in_reply_to_user_id":449133329,"in_reply_to_user_id_str":"449133329","in_reply_to_screen_name":"DKA_OfCourse","user":{"id":337998190,"id_str":"337998190","name":"trh.","screen_name":"TyLeighHopkins","location":"India","url":null,"description":null,"protected":false,"verified":false,"followers_count":737,"friends_count":465,"listed_count":0,"favourites_count":147,"statuses_count":19378,"created_at":"Mon Jul 18 22:31:03 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662059283459239936\/PsUfdoKR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662059283459239936\/PsUfdoKR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/337998190\/1445484564","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DKA_OfCourse","name":"Nov12","id":449133329,"id_str":"449133329","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253065121792,"id_str":"663728253065121792","text":"RT @ProEra_LBoogie: Florida in 13 days \ud83e\udd11\ud83c\udf34\u2600\ufe0f\ud83c\udf0a !!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":334164449,"id_str":"334164449","name":"Cari \u2757\ufe0f","screen_name":"TUS_Cari","location":null,"url":"http:\/\/www.hudl.com\/athlete\/3289455\/highlights\/184242384","description":"Webber international university '19 | Caseybop\u2764\ufe0f","protected":false,"verified":false,"followers_count":604,"friends_count":488,"listed_count":0,"favourites_count":1061,"statuses_count":24908,"created_at":"Tue Jul 12 17:36:15 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/879947496\/20fa8cffb4e816d21241bcfe582a8147.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/879947496\/20fa8cffb4e816d21241bcfe582a8147.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661071743814078464\/gfkzDsWI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661071743814078464\/gfkzDsWI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/334164449\/1446527310","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:38 +0000 2015","id":663728154855538688,"id_str":"663728154855538688","text":"Florida in 13 days \ud83e\udd11\ud83c\udf34\u2600\ufe0f\ud83c\udf0a !!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":101158628,"id_str":"101158628","name":"LJ","screen_name":"ProEra_LBoogie","location":"SoFlo\u2708\ufe0fNew York ","url":null,"description":"Lames catch feelings, we catch flights","protected":false,"verified":false,"followers_count":517,"friends_count":475,"listed_count":0,"favourites_count":5282,"statuses_count":14577,"created_at":"Sat Jan 02 06:44:17 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0D0D0D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685471936\/8c3cf625d969d893b36fe7db5aa0cb4d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685471936\/8c3cf625d969d893b36fe7db5aa0cb4d.jpeg","profile_background_tile":true,"profile_link_color":"C20F0F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0A0A0A","profile_text_color":"FC0015","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663331901311201280\/3tenqsXB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663331901311201280\/3tenqsXB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/101158628\/1447075783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ProEra_LBoogie","name":"LJ","id":101158628,"id_str":"101158628","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121662"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069340672,"id_str":"663728253069340672","text":"ImJohnEstrada: kbdpftcris22: nicoleferrer07: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3859995613,"id_str":"3859995613","name":"Sum 41","screen_name":"pca_moh6","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5,"friends_count":5,"listed_count":11,"favourites_count":0,"statuses_count":19758,"created_at":"Sun Oct 11 15:46:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653235648711622656\/nqmhuUDk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653235648711622656\/nqmhuUDk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[45,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253065109504,"id_str":"663728253065109504","text":"RT @Abeer_EweeS: \u0631\u0645\u0648\u0634\u064a \u0648\u0642\u0639\u062a \u0645\u0646 \u0642\u0644\u0647 \u0627\u0644\u0627\u0643\u0644 \ud83d\ude02\ud83d\udc4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":878603473,"id_str":"878603473","name":"\u0627\u0644\u0628\u0627\u0634 \u0645\u062a\u0631\u062c\u0645\u0629","screen_name":"Nurhanfawzy","location":"Giza, Egypt","url":"http:\/\/ask.fm\/Nurhanfawzy","description":"#Turkish #translator #freelancer #alsunian #Spanish #Alahly #Hamaki \u2665#mustafaceceli #strawberry\u2665 #Muslim #leo\u264c \n@louzitaa is here \u2764","protected":false,"verified":false,"followers_count":4255,"friends_count":739,"listed_count":21,"favourites_count":11215,"statuses_count":95498,"created_at":"Sat Oct 13 20:13:04 +0000 2012","utc_offset":7200,"time_zone":"Cairo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2B8ED9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000120764178\/5a9c3a8bbac6d1864217cb74198192d1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000120764178\/5a9c3a8bbac6d1864217cb74198192d1.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F0878B","profile_text_color":"F0AF93","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663047216005795840\/Ve-P7AT1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663047216005795840\/Ve-P7AT1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/878603473\/1446917747","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:18 +0000 2015","id":663727821131509761,"id_str":"663727821131509761","text":"\u0631\u0645\u0648\u0634\u064a \u0648\u0642\u0639\u062a \u0645\u0646 \u0642\u0644\u0647 \u0627\u0644\u0627\u0643\u0644 \ud83d\ude02\ud83d\udc4a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722623055110144,"in_reply_to_status_id_str":"663722623055110144","in_reply_to_user_id":1515293461,"in_reply_to_user_id_str":"1515293461","in_reply_to_screen_name":"Abeer_EweeS","user":{"id":1515293461,"id_str":"1515293461","name":"\u067e\u0640\u064a\u0640\u0640\u0631\u064a \u2122","screen_name":"Abeer_EweeS","location":"\u0627\u0644\u0645\u0639\u0627\u062f\u064a","url":null,"description":"\u0627\u0642\u0631\u0623 \u0628\u0627\u0633\u0645 \u0631\u0628\u0643 \u0627\u0644\u0630\u064a \u062e\u0644\u0642 \u2764","protected":false,"verified":false,"followers_count":34708,"friends_count":388,"listed_count":52,"favourites_count":1916,"statuses_count":144015,"created_at":"Fri Jun 14 04:21:14 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663392323934527488\/nLSW1hh0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663392323934527488\/nLSW1hh0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1515293461\/1446818151","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Abeer_EweeS","name":"\u067e\u0640\u064a\u0640\u0640\u0631\u064a \u2122","id":1515293461,"id_str":"1515293461","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080121662"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253073563650,"id_str":"663728253073563650","text":"voterskn26: DjpadillsP: kathrynkime27: 52526kn: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3802486038,"id_str":"3802486038","name":"JamellaManalo","screen_name":"jamella_manalo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":46,"listed_count":4,"favourites_count":21,"statuses_count":17948,"created_at":"Tue Oct 06 11:14:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651355836137148416\/gxSoAw_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651355836137148416\/gxSoAw_7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[88,108]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080121664"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253073408000,"id_str":"663728253073408000","text":"\u660e\u65e5\u306b\u306f\u8abf\u5b50\u623b\u3057\u3066\u3047\u2026","source":"\u003ca href=\"http:\/\/twitter.suruyatu.com\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u3059\u308b\u3084\u3064\u03b3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3236198389,"id_str":"3236198389","name":"\u304b\u305f\u306a","screen_name":"katana_400","location":"\u30af\u30e9\u30f3:HeGh\u30ea\u30fc\u30c0\u30fc","url":null,"description":"PSID:katana400\n\nSMG\u3059\u304d\n\nBO3\u30af\u30e9\u30f3\u63a2\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":74,"friends_count":76,"listed_count":2,"favourites_count":3653,"statuses_count":10714,"created_at":"Thu Jun 04 15:33:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660836515811987456\/vcCZkWjl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660836515811987456\/vcCZkWjl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3236198389\/1446396046","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121664"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048197121,"id_str":"663728253048197121","text":"*?DA","source":"\u003ca href=\"http:\/\/www.shawnlawson.com\" rel=\"nofollow\"\u003eETC Updater\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547965663,"id_str":"547965663","name":"Shawn Lawson","screen_name":"EachTweetCounts","location":null,"url":"http:\/\/www.eachtweetcounts.com","description":"http:\/\/www.shawnlawson.com","protected":false,"verified":false,"followers_count":44,"friends_count":18,"listed_count":5,"favourites_count":23,"statuses_count":884986,"created_at":"Sat Apr 07 20:20:11 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2164896818\/LawsonNA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2164896818\/LawsonNA_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253052416001,"id_str":"663728253052416001","text":"\u8840\u3092\u5206\u3051\u305f\u5144\u5f1f\u304c\u30c9\u30e9\u30deGTO\u306e\u6700\u7d42\u56de\u3067\u6ce3\u3044\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2973498817,"id_str":"2973498817","name":"\u306e\u306e\u306e","screen_name":"nonono_kyomu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":122,"listed_count":4,"favourites_count":947,"statuses_count":2461,"created_at":"Sun Jan 11 01:09:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584758080249827328\/clkX_MQp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584758080249827328\/clkX_MQp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2973498817\/1420939682","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121659"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069201408,"id_str":"663728253069201408","text":"SYAA STOP LIKING MY TWEETS I FEEL LIKE GAY \ud83c\udf1d\ud83c\udf1d\ud83c\udf1d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2199690937,"id_str":"2199690937","name":"dara senpai","screen_name":"ikonfuckboys","location":null,"url":"http:\/\/ask.fm\/gheilexi","description":"Your highness, Sandara Park.","protected":false,"verified":false,"followers_count":949,"friends_count":295,"listed_count":5,"favourites_count":3728,"statuses_count":25402,"created_at":"Sun Nov 17 15:18:19 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/460359605436952576\/2hRHDaQq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/460359605436952576\/2hRHDaQq.jpeg","profile_background_tile":true,"profile_link_color":"C20ABC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662246682134867976\/_LW1dXKe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662246682134867976\/_LW1dXKe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199690937\/1446895478","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253060837380,"id_str":"663728253060837380","text":"DM\u3067\u7206\u7b11\u306a\u3093\u304b\u3059\u308b\u308f\u3051\u306d\u30a7\u3060\u308d\u30a3\n\u3093\u306a\u3053\u3068\u3059\u3093\u306a\u3089\u3053\u3053\u3067\u3059\u308b\u308f(\u7206\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4039147034,"id_str":"4039147034","name":"\u6c96\u7530\u7dcf\u609f@\u84bc\u543e","screen_name":"ssdoes","location":null,"url":"http:\/\/twpf.jp\/ssdoes","description":"\u975e\u516c\u5f0f\u4e5f\u3002 \u98f4\u97ad\u3001\u63cf\u5199\u306f\u6c17\u5206\u3002\u80cc\u5f8c\u900f\u3002\u77ed\u6587\u301c\u9577\u6587\u3002\u7de9\u304f\u304a\u9858\u3044\u3057\u3084\u3059\u3002\u6b7b\u57a2\u4f7f\u7528\u6709\u3002\u604b\u4ef2\u5728(15.10.29\u301c)","protected":false,"verified":false,"followers_count":27,"friends_count":25,"listed_count":0,"favourites_count":173,"statuses_count":966,"created_at":"Tue Oct 27 20:38:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660766012338388992\/E0cejZbS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660766012338388992\/E0cejZbS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4039147034\/1446884370","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121661"} +{"delete":{"status":{"id":663727879751139328,"id_str":"663727879751139328","user_id":614972859,"user_id_str":"614972859"},"timestamp_ms":"1447080121749"}} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069340673,"id_str":"663728253069340673","text":"RT @teodorettina: https:\/\/t.co\/sPBQf62DwT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2304840907,"id_str":"2304840907","name":"Sude Bat\u0131","screen_name":"SmailSude","location":"T\u00fcrkiye","url":null,"description":null,"protected":false,"verified":false,"followers_count":317,"friends_count":36,"listed_count":2,"favourites_count":260,"statuses_count":5218,"created_at":"Wed Jan 22 13:15:30 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663058910056718336\/5kB_jJ0N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663058910056718336\/5kB_jJ0N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2304840907\/1443266791","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:02 +0000 2015","id":663720453912010752,"id_str":"663720453912010752","text":"https:\/\/t.co\/sPBQf62DwT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1651620205,"id_str":"1651620205","name":"theo caputo","screen_name":"teodorettina","location":"vive en Salerno, Italia","url":null,"description":"T H E O .-","protected":false,"verified":false,"followers_count":106,"friends_count":357,"listed_count":2,"favourites_count":1733,"statuses_count":2065,"created_at":"Wed Aug 07 00:21:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663369316478410752\/WwhzBuN6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663369316478410752\/WwhzBuN6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1651620205\/1443800739","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4afa2757051c5192","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4afa2757051c5192.json","place_type":"admin","name":"Buenos Aires","full_name":"Buenos Aires, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-63.393860,-41.035009],[-63.393860,-33.260144],[-56.665836,-33.260144],[-56.665836,-41.035009]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720452473360384,"id_str":"663720452473360384","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":578,"h":502,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":578,"h":502,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720452473360384,"id_str":"663720452473360384","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":578,"h":502,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":578,"h":502,"resize":"fit"}}},{"id":663720445137539072,"id_str":"663720445137539072","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOnKWUAAqCPb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOnKWUAAqCPb.jpg","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"teodorettina","name":"theo caputo","id":1651620205,"id_str":"1651620205","indices":[3,16]}],"symbols":[],"media":[{"id":663720452473360384,"id_str":"663720452473360384","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":578,"h":502,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":578,"h":502,"resize":"fit"}},"source_status_id":663720453912010752,"source_status_id_str":"663720453912010752","source_user_id":1651620205,"source_user_id_str":"1651620205"}]},"extended_entities":{"media":[{"id":663720452473360384,"id_str":"663720452473360384","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCPCfWEAACqtJ.png","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":295,"resize":"fit"},"large":{"w":578,"h":502,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":578,"h":502,"resize":"fit"}},"source_status_id":663720453912010752,"source_status_id_str":"663720453912010752","source_user_id":1651620205,"source_user_id_str":"1651620205"},{"id":663720445137539072,"id_str":"663720445137539072","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCOnKWUAAqCPb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCOnKWUAAqCPb.jpg","url":"https:\/\/t.co\/sPBQf62DwT","display_url":"pic.twitter.com\/sPBQf62DwT","expanded_url":"http:\/\/twitter.com\/teodorettina\/status\/663720453912010752\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663720453912010752,"source_status_id_str":"663720453912010752","source_user_id":1651620205,"source_user_id_str":"1651620205"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253077712896,"id_str":"663728253077712896","text":"@Birgit_Riegler die kauf ich aber nur wenn sie biwired\/biamped sind! @matahari_etc @Der_Gregor","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726591860678657,"in_reply_to_status_id_str":"663726591860678657","in_reply_to_user_id":23588883,"in_reply_to_user_id_str":"23588883","in_reply_to_screen_name":"Birgit_Riegler","user":{"id":795897326,"id_str":"795897326","name":"Markus Sugarhill","screen_name":"MSugarhill","location":"vienna, austria, europe,...","url":"https:\/\/twitter.com\/MSugarhill","description":"\u2197this kid is not my son - ich distanziere mich von vornherein von meiner meinung, meinen \u00e4u\u00dferungen und sonstigem stumpfsinn den ich hier verzapfen werde.","protected":false,"verified":false,"followers_count":544,"friends_count":1404,"listed_count":46,"favourites_count":26688,"statuses_count":37169,"created_at":"Sat Sep 01 11:37:22 +0000 2012","utc_offset":3600,"time_zone":"Vienna","geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649482757\/z0avyt3kg6jbtagwwfdw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649482757\/z0avyt3kg6jbtagwwfdw.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/530455248444596224\/3veqPwGR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/530455248444596224\/3veqPwGR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/795897326\/1398284507","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Birgit_Riegler","name":"Birgit Riegler","id":23588883,"id_str":"23588883","indices":[0,15]},{"screen_name":"matahari_etc","name":"matahari_etc","id":90900662,"id_str":"90900662","indices":[69,82]},{"screen_name":"Der_Gregor","name":"Gregor","id":58761933,"id_str":"58761933","indices":[83,94]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080121665"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253064974336,"id_str":"663728253064974336","text":"@tetukuzu4242 \u56db\u80a2\u30da\u30e9\u30da\u30e9\u59e6\u3059\u304d\u3001\u9762\u767d\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727755805102081,"in_reply_to_status_id_str":"663727755805102081","in_reply_to_user_id":2959377002,"in_reply_to_user_id_str":"2959377002","in_reply_to_screen_name":"tetukuzu4242","user":{"id":3232658083,"id_str":"3232658083","name":"\u65e5\u5927\u5546\u6deb\u4f1a","screen_name":"nichidai_homo","location":"\u672c\u99281145\u968e14\u6559\u5ba4","url":"http:\/\/nichidaisyogaku-inmu.jimdo.com","description":"\u65e5\u25ef\u5546\u5b66\u90e8\u306e\u6deb\u5922\u30b5\u30fc\u30af\u30eb\u3067\u3059\uff08\u975e\u516c\u8a8d\uff09\u3002\u6bce\u5e74\u591a\u304f\u306e\u30db\u30e2\u30ac\u30ad\u3092\u80b2\u3066\u4e0a\u3052\u3066\u3044\u307e\u3059\u3002\u65e5\u85dd\u5144\u8cb4\u3010@nichigay_inmu\u3011\u306b\u4fbf\u4e57\u3057\u3066\u8a95\u751f\u3002\u6bce\u9031\u4e0b\u5317\u6ca2\u306e\u30d5\u30a3\u30fc\u30eb\u30c9\u30ef\u30fc\u30af\u3092\u884c\u3063\u3066\u3044\u307e\u3059\uff08\u5927\u5618\uff09\u5c71\u7530\u9855\u7fa9\u537f\u306e\u7406\u5ff5\u300c\u81ea\u4e3b\u5275\u9020\u300d\u306e\u540d\u306e\u4e0b\u3067\u6deb\u5922\u53f2\u306a\u3069\u306e\u7814\u7a76\u3082\u3057\u3066\u3044\u307e\u3059\u306e\u3067\u30db\u30e2\u30d3\u3084LGBT\u306b\u8208\u5473\u304c\u3042\u308b\u4eba\u306f\u6765\u3066\u3001\u3069\u3046\u305e\u3002 DM\u304a\u5f85\u3061\u3057\u3066\u30ca\u30b9","protected":false,"verified":false,"followers_count":1272,"friends_count":1126,"listed_count":42,"favourites_count":36,"statuses_count":10710,"created_at":"Mon Jun 01 13:39:23 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662849962271633408\/2wwoSl2J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662849962271633408\/2wwoSl2J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3232658083\/1446870720","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tetukuzu4242","name":"\u9244\u304f\u305a\u3000\u307f\u3093\u306a\u306e\u304a\u30db\u30e2\u3060\u3061\u3000\u53f3\u6253\u3061\u5de6\u6295\u3052","id":2959377002,"id_str":"2959377002","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121662"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048242176,"id_str":"663728253048242176","text":"RT @livingwd: Get saved. Let us pray with you and give you the next steps to a new life in Christ. https:\/\/t.co\/Y2cbTqb9s7 https:\/\/t.co\/fPR\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1539017028,"id_str":"1539017028","name":"Abhilash","screen_name":"abhi_karlapudi","location":"IND - Mobile - 0091 9849237397","url":null,"description":"Colossians 4:2 Continue in prayer, and watch in the same with thanksgiving;","protected":false,"verified":false,"followers_count":361,"friends_count":355,"listed_count":27,"favourites_count":1058,"statuses_count":33058,"created_at":"Sat Jun 22 16:24:06 +0000 2013","utc_offset":19800,"time_zone":"Asia\/Kolkata","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622805984327544832\/5o4Kmaqu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622805984327544832\/5o4Kmaqu_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 19:30:52 +0000 2015","id":663438554392084480,"id_str":"663438554392084480","text":"Get saved. Let us pray with you and give you the next steps to a new life in Christ. https:\/\/t.co\/Y2cbTqb9s7 https:\/\/t.co\/fPR4wOeznH","source":"\u003ca href=\"http:\/\/www.hubspot.com\/\" rel=\"nofollow\"\u003eHubSpot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":525340055,"id_str":"525340055","name":"Living Word CC","screen_name":"livingwd","location":"Forest Park, IL","url":"http:\/\/www.livingwd.org","description":"Drs. @DrBillWinston & @VeronicaWinston Living Word Christian Ctr 7600 W. Roosevelt Rd, Forest Park, IL Sunday 7, 9 & 11:15 AM Wed. 6:30 PM #LWCCOnline","protected":false,"verified":false,"followers_count":2717,"friends_count":563,"listed_count":10,"favourites_count":207,"statuses_count":3804,"created_at":"Thu Mar 15 12:48:05 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437259920677691392\/8qdIV1bm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437259920677691392\/8qdIV1bm.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000461984720\/8c4fe88227afe06475336b8572563f51_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000461984720\/8c4fe88227afe06475336b8572563f51_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/525340055\/1411327924","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y2cbTqb9s7","expanded_url":"http:\/\/hubs.ly\/H01nh8j0","display_url":"hubs.ly\/H01nh8j0","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":663438554266234880,"id_str":"663438554266234880","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","url":"https:\/\/t.co\/fPR4wOeznH","display_url":"pic.twitter.com\/fPR4wOeznH","expanded_url":"http:\/\/twitter.com\/livingwd\/status\/663438554392084480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":106,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":321,"resize":"fit"},"medium":{"w":600,"h":188,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663438554266234880,"id_str":"663438554266234880","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","url":"https:\/\/t.co\/fPR4wOeznH","display_url":"pic.twitter.com\/fPR4wOeznH","expanded_url":"http:\/\/twitter.com\/livingwd\/status\/663438554392084480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":106,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":321,"resize":"fit"},"medium":{"w":600,"h":188,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Y2cbTqb9s7","expanded_url":"http:\/\/hubs.ly\/H01nh8j0","display_url":"hubs.ly\/H01nh8j0","indices":[99,122]}],"user_mentions":[{"screen_name":"livingwd","name":"Living Word CC","id":525340055,"id_str":"525340055","indices":[3,12]}],"symbols":[],"media":[{"id":663438554266234880,"id_str":"663438554266234880","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","url":"https:\/\/t.co\/fPR4wOeznH","display_url":"pic.twitter.com\/fPR4wOeznH","expanded_url":"http:\/\/twitter.com\/livingwd\/status\/663438554392084480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":106,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":321,"resize":"fit"},"medium":{"w":600,"h":188,"resize":"fit"}},"source_status_id":663438554392084480,"source_status_id_str":"663438554392084480","source_user_id":525340055,"source_user_id_str":"525340055"}]},"extended_entities":{"media":[{"id":663438554266234880,"id_str":"663438554266234880","indices":[123,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUB2Z1WcAAfHxJ.jpg","url":"https:\/\/t.co\/fPR4wOeznH","display_url":"pic.twitter.com\/fPR4wOeznH","expanded_url":"http:\/\/twitter.com\/livingwd\/status\/663438554392084480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":106,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":321,"resize":"fit"},"medium":{"w":600,"h":188,"resize":"fit"}},"source_status_id":663438554392084480,"source_status_id_str":"663438554392084480","source_user_id":525340055,"source_user_id_str":"525340055"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069324288,"id_str":"663728253069324288","text":"@villehamalainen Jouluaattoon on reilut 40 p\u00e4iv\u00e4\u00e4, kai se alkaa olla jo kohtuullinen aika. Lokakuun alkua tai syyskuun loppua en ymm\u00e4rr\u00e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722552934711296,"in_reply_to_status_id_str":"663722552934711296","in_reply_to_user_id":474360877,"in_reply_to_user_id_str":"474360877","in_reply_to_screen_name":"villehamalainen","user":{"id":2165362782,"id_str":"2165362782","name":"Mantilatte","screen_name":"Attetapani","location":"Helsinki","url":null,"description":"Aamuisin yrit\u00e4n torkuttaa v\u00e4hemm\u00e4n, p\u00e4ivisin suunnittelen liikennett\u00e4 ja iltaisin luen iltasadun. T\u00e4ss\u00e4 kuussa #movember.","protected":false,"verified":false,"followers_count":490,"friends_count":853,"listed_count":13,"favourites_count":6530,"statuses_count":4716,"created_at":"Wed Oct 30 19:43:11 +0000 2013","utc_offset":7200,"time_zone":"Helsinki","geo_enabled":false,"lang":"fi","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0839FC","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661970293263478784\/REu8szaU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661970293263478784\/REu8szaU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2165362782\/1403558169","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"villehamalainen","name":"Ville H\u00e4m\u00e4l\u00e4inen","id":474360877,"id_str":"474360877","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253060952064,"id_str":"663728253060952064","text":"@veronika_ambrus yup\ud83d\ude05\ud83d\udc40","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722597419479041,"in_reply_to_status_id_str":"663722597419479041","in_reply_to_user_id":2757808991,"in_reply_to_user_id_str":"2757808991","in_reply_to_screen_name":"veronika_ambrus","user":{"id":2728221823,"id_str":"2728221823","name":"asha","screen_name":"ashaaxox","location":"where the food is","url":"http:\/\/sky-lightss.tumblr.com","description":"close your eyes and get lost in the music","protected":false,"verified":false,"followers_count":290,"friends_count":331,"listed_count":4,"favourites_count":38524,"statuses_count":4929,"created_at":"Wed Aug 13 02:02:39 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655522645782450176\/dwrv_8nT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655522645782450176\/dwrv_8nT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2728221823\/1446951322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"veronika_ambrus","name":"Veronika Ambrus","id":2757808991,"id_str":"2757808991","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121661"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081784320,"id_str":"663728253081784320","text":"\u77f3\u539f\u3055\u3068\u307f\u53ef\u611b\u3044\u3002\n\u304d\u3085\u3093\u304d\u3085\u3093\u3057\u3061\u3083\u3046(#^.^#)\n\u3042\u30fc\u3082\u3063\u3068\u304d\u3085\u3093\u304d\u3085\u3093\u3057\u305f\u3044\u3002\u771f\u9854","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1550433847,"id_str":"1550433847","name":"\u3088\u3057\u3042\u304d","screen_name":"yoshiaki071962","location":null,"url":null,"description":"\u7389\u5357\u2192\u8aa0\u4fee\u2192\u798f\u5ca1\u533b\u7642 \u30d0\u30ec\u30fc \u30b5\u30a4\u30af\u30ea\u30f3\u30b0 AAA","protected":false,"verified":false,"followers_count":504,"friends_count":602,"listed_count":0,"favourites_count":192,"statuses_count":2839,"created_at":"Thu Jun 27 11:30:29 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642333766568906752\/UCGlKeKG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642333766568906752\/UCGlKeKG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1550433847\/1425392255","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048197122,"id_str":"663728253048197122","text":"RT @wvlfshawty: keep ur shit lowkey and watch ur life get better","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2963493219,"id_str":"2963493219","name":"Fun World","screen_name":"FunWorId","location":"United States","url":null,"description":"Funny quotes, jokes, advice, facts & pictures that you never seen in your life.","protected":false,"verified":false,"followers_count":75466,"friends_count":62128,"listed_count":106,"favourites_count":144,"statuses_count":30806,"created_at":"Tue Jan 06 05:54:24 +0000 2015","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662719265452068864\/MmLk9CrC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662719265452068864\/MmLk9CrC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2963493219\/1424417278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728176342831104,"id_str":"663728176342831104","text":"keep ur shit lowkey and watch ur life get better","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419497043,"id_str":"2419497043","name":"\ufe0f","screen_name":"wvlfshawty","location":null,"url":"http:\/\/thefeelsbbygirl.tumblr.com","description":"the feels shawty","protected":false,"verified":false,"followers_count":72232,"friends_count":45835,"listed_count":100,"favourites_count":31,"statuses_count":19656,"created_at":"Sun Mar 30 20:29:05 +0000 2014","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660976755843272705\/SYtEy1m5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660976755843272705\/SYtEy1m5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419497043\/1446424115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wvlfshawty","name":"\ufe0f","id":2419497043,"id_str":"2419497043","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048373248,"id_str":"663728253048373248","text":"JajJa descansa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1876939782,"id_str":"1876939782","name":"Nico\u270c","screen_name":"nicoperez2014c1","location":"Uruguay","url":null,"description":"Instagram... nicoopeerez","protected":false,"verified":false,"followers_count":367,"friends_count":321,"listed_count":1,"favourites_count":1628,"statuses_count":7763,"created_at":"Tue Sep 17 21:26:07 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650306282499493888\/UuV75LqP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650306282499493888\/UuV75LqP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1876939782\/1423570809","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253073403904,"id_str":"663728253073403904","text":"@Sune_Bo \uc608 \ubc18\ub9d0! \uc774\uc81c \uc774\uae00\uc9c0\uc6b0\uc790\u315c\u315c\u3161\u315c\u315c\u315c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728099461234688,"in_reply_to_status_id_str":"663728099461234688","in_reply_to_user_id":3035802366,"in_reply_to_user_id_str":"3035802366","in_reply_to_screen_name":"Sune_Bo","user":{"id":2253146034,"id_str":"2253146034","name":"\ub3d9\ubc29\uc2e0\uae30 \uadf8\ub9bc\uadf8\ub9ac\ub294 \ubc15\ud558","screen_name":"ckrgkswldms2","location":null,"url":null,"description":"\ub3d9\ubc29\uc2e0\uae30\u2661 jyj \uc62c\ud32c \ud5c8\uadf8\uce89 \nOnly TVXQ&JYJ \n\uc560\ub2c8\ub9cc\ud654\uacfc \uc785\uc2dc\uc900\ube44\u2606\n\ud22c\ud32c \uc0bc\ud32c \ud0c0\ud32c \uc545\uac1c \ube14\ub77d\ud569\ub2c8\ub2e4\u2606\n\uc0e4\uccab\ucf58\u2661","protected":false,"verified":false,"followers_count":102,"friends_count":131,"listed_count":0,"favourites_count":79,"statuses_count":2027,"created_at":"Thu Dec 19 07:33:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659620151646556160\/a28vUru6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659620151646556160\/a28vUru6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2253146034\/1445931596","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sune_Bo","name":"\uc900\uc9f1\ub9c9\ucf58a\uad6c\uc5ed 80\ubc88\ub300 \uc218\ub0b4","id":3035802366,"id_str":"3035802366","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080121664"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253065105412,"id_str":"663728253065105412","text":"RT @corredalea: Necesitas una ayudita en tu calentamiento,pueba Cremy Gel de @MADFORM https:\/\/t.co\/XucyHHkiBX #run Una pasada!","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":215963569,"id_str":"215963569","name":"MADFORM","screen_name":"MADFORM","location":null,"url":"http:\/\/www.madform.com","description":"Al\u00edate con nuestras cremas deportivas para: calentar, relajar o reconstruir la musculatura.\r\n#NeverStop","protected":false,"verified":false,"followers_count":4938,"friends_count":68,"listed_count":38,"favourites_count":4150,"statuses_count":8415,"created_at":"Mon Nov 15 12:27:56 +0000 2010","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446704336920256513\/B-uvxMEm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446704336920256513\/B-uvxMEm.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603575200463060992\/jY2g0fRA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603575200463060992\/jY2g0fRA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/215963569\/1432738323","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:13 +0000 2015","id":663718740010340352,"id_str":"663718740010340352","text":"Necesitas una ayudita en tu calentamiento,pueba Cremy Gel de @MADFORM https:\/\/t.co\/XucyHHkiBX #run Una pasada!","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2987508562,"id_str":"2987508562","name":"Corredalea","screen_name":"corredalea","location":"Espa\u00f1a","url":"http:\/\/www.corredalea.com\/","description":"Blog sobre #running, #trailrunning, #mtb y todos los deportes al aire libre desde un punto de vista diferente y con el objetivo de pasarlo bien.","protected":false,"verified":false,"followers_count":3400,"friends_count":2796,"listed_count":73,"favourites_count":3524,"statuses_count":7381,"created_at":"Tue Jan 20 15:58:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617960235534282752\/NPZ6YKjw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617960235534282752\/NPZ6YKjw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2987508562\/1430925400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"run","indices":[94,98]}],"urls":[{"url":"https:\/\/t.co\/XucyHHkiBX","expanded_url":"http:\/\/ow.ly\/TfhRa","display_url":"ow.ly\/TfhRa","indices":[70,93]}],"user_mentions":[{"screen_name":"MADFORM","name":"MADFORM","id":215963569,"id_str":"215963569","indices":[61,69]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"run","indices":[110,114]}],"urls":[{"url":"https:\/\/t.co\/XucyHHkiBX","expanded_url":"http:\/\/ow.ly\/TfhRa","display_url":"ow.ly\/TfhRa","indices":[86,109]}],"user_mentions":[{"screen_name":"corredalea","name":"Corredalea","id":2987508562,"id_str":"2987508562","indices":[3,14]},{"screen_name":"MADFORM","name":"MADFORM","id":215963569,"id_str":"215963569","indices":[77,85]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121662"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048365056,"id_str":"663728253048365056","text":"@joshingstern hey brother check out my work https:\/\/t.co\/tqjpROYwi5! Let me know what you think","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":33495086,"in_reply_to_user_id_str":"33495086","in_reply_to_screen_name":"joshingstern","user":{"id":63884055,"id_str":"63884055","name":"Andros 50-50","screen_name":"5050Philosophy","location":"Toronto, Ontario","url":"http:\/\/www.andros5050.wordpress.com","description":"Enter The Mind Of An Unusual Kind","protected":false,"verified":false,"followers_count":45,"friends_count":72,"listed_count":2,"favourites_count":6,"statuses_count":200,"created_at":"Sat Aug 08 02:24:04 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652641959903907840\/V-RdppmB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652641959903907840\/V-RdppmB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63884055\/1444437158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"4e0f8e1543e64005","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/4e0f8e1543e64005.json","place_type":"city","name":"Scugog","full_name":"Scugog, Ontario","country_code":"CA","country":"Canada","bounding_box":{"type":"Polygon","coordinates":[[[-79.123453,44.009242],[-79.123453,44.227345],[-78.703267,44.227345],[-78.703267,44.009242]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tqjpROYwi5","expanded_url":"http:\/\/andros5050.wordpress.com","display_url":"andros5050.wordpress.com","indices":[44,67]}],"user_mentions":[{"screen_name":"joshingstern","name":"joshingstern","id":33495086,"id_str":"33495086","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081792512,"id_str":"663728253081792512","text":"\u0e13 \u0e15\u0e2d\u0e19\u0e19\u0e35\u0e49\u0e22\u0e31\u0e07\u0e44\u0e21\u0e48\u0e01\u0e25\u0e31\u0e1a\u0e1a\u0e49\u0e32\u0e19 \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1279717531,"id_str":"1279717531","name":"\u0e0a\u0e32","screen_name":"Chayeol_sleepy","location":"\u0e14\u0e32\u0e27\u0e40\u0e04\u0e23\u0e32\u0e30\u0e2b\u0e4c \u30c3","url":null,"description":"\u0e41\u0e21\u0e19\u0e46\u0e04\u0e38\u0e22\u0e01\u0e31\u0e19","protected":false,"verified":false,"followers_count":1066,"friends_count":267,"listed_count":1,"favourites_count":604,"statuses_count":46933,"created_at":"Tue Mar 19 06:38:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660752518440316928\/UkVFSxZD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660752518440316928\/UkVFSxZD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1279717531\/1446542048","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069164544,"id_str":"663728253069164544","text":"RT @na74: \u6bcd\u300c\u4e16\u306e\u4e2d\u306b\u306f\u30bb\u30f3\u30b9\u3042\u3063\u3066\u3082\u3069\u3046\u306b\u3082\u306a\u3089\u306a\u3044\u4e8b\u3082\u3042\u308b\u3088\u3002\u9060\u3044\u89aa\u621a\u306e\u25cb\u25cb\u3055\u3093\u3080\u304b\u3057\u5bff\u53f8\u8077\u4eba\u3060\u3063\u305f\u306e\u300d\n\u79c1\u300c\u3048\u3001\u4eca\u6d88\u606f\u4e0d\u660e\u306e\uff1f\u300d\n\u6bcd\u300c\u305d\u3046\u3002\u5e2b\u5320\u3092\u3042\u3063\u3055\u308a\u8d85\u3048\u308b\u7a0b\u306e\u5bff\u53f8\u306e\u8155\u3092\u6301\u3063\u3066\u305f\u3051\u3069\u3001\u72ec\u7acb\u3057\u3066\u3059\u3050\u5e97\u6f70\u3057\u3066\u305f\u3082\u3093\u300d\n\u79c1\u300c\u306a\u3093\u3067\uff1f\u300d\n\u6bcd\u300c\u671d\u8d77\u304d\u3089\u308c\u306a\u304f\u3066\u4ed5\u5165\u308c\u306b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":604497932,"id_str":"604497932","name":"\u5f71\u4e43@\u30c6\u30b9\u30c8\u524d\u30c4\u30a4\u7981\u3057\u307e\u3059","screen_name":"eino1026","location":"\u306b\u3063\u307d\u3093","url":null,"description":"\u30a2\u30cb\u30e1\u3068\u304b\u306a\u3093\u306e\u3053\u3068\u3067\u3057\u3087\u3046\u308f\u304b\u308a\u307e\u305b\u3093\u3002\u304b\u308b\u305f\u3068\u304b\u3084\u3063\u3066\u306a\u304f\u3082\u306a\u3044\u3093\u3058\u3083\u306a\u3044\u3067\u3059\u304b\uff1f\u52c9\u5f37\u306f\u771f\u9762\u76ee\u306b\u3084\u3063\u3066\u307e\u3059\u3088(\u767d\u76ee","protected":false,"verified":false,"followers_count":434,"friends_count":409,"listed_count":1,"favourites_count":2960,"statuses_count":14277,"created_at":"Sun Jun 10 12:58:53 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660735273416830976\/MM_fCcgl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660735273416830976\/MM_fCcgl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/604497932\/1446373303","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:08:01 +0000 2015","id":663583801369427968,"id_str":"663583801369427968","text":"\u6bcd\u300c\u4e16\u306e\u4e2d\u306b\u306f\u30bb\u30f3\u30b9\u3042\u3063\u3066\u3082\u3069\u3046\u306b\u3082\u306a\u3089\u306a\u3044\u4e8b\u3082\u3042\u308b\u3088\u3002\u9060\u3044\u89aa\u621a\u306e\u25cb\u25cb\u3055\u3093\u3080\u304b\u3057\u5bff\u53f8\u8077\u4eba\u3060\u3063\u305f\u306e\u300d\n\u79c1\u300c\u3048\u3001\u4eca\u6d88\u606f\u4e0d\u660e\u306e\uff1f\u300d\n\u6bcd\u300c\u305d\u3046\u3002\u5e2b\u5320\u3092\u3042\u3063\u3055\u308a\u8d85\u3048\u308b\u7a0b\u306e\u5bff\u53f8\u306e\u8155\u3092\u6301\u3063\u3066\u305f\u3051\u3069\u3001\u72ec\u7acb\u3057\u3066\u3059\u3050\u5e97\u6f70\u3057\u3066\u305f\u3082\u3093\u300d\n\u79c1\u300c\u306a\u3093\u3067\uff1f\u300d\n\u6bcd\u300c\u671d\u8d77\u304d\u3089\u308c\u306a\u304f\u3066\u4ed5\u5165\u308c\u306b\u884c\u3051\u306a\u304b\u3063\u305f\u300d\n\u79c1\u300c\u300d","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53669496,"id_str":"53669496","name":"774@\u3046111-\u305785","screen_name":"na74","location":"\u58f0\u6e9c\u3081","url":"http:\/\/www.pixiv.net\/member.php?id=208826","description":"\u8133\u307f\u305d\u5782\u308c\u6d41\u3057","protected":false,"verified":false,"followers_count":5789,"friends_count":958,"listed_count":229,"favourites_count":3,"statuses_count":31362,"created_at":"Sat Jul 04 13:33:51 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/505260294\/091006kashiwa_bigger_bigger.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/505260294\/091006kashiwa_bigger_bigger.gif","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2065764849\/091006kashiwa_48_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2065764849\/091006kashiwa_48_normal.gif","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53669496\/1381907759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8562,"favorite_count":4737,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"na74","name":"774@\u3046111-\u305785","id":53669496,"id_str":"53669496","indices":[3,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081751552,"id_str":"663728253081751552","text":"@kumarnandaj https:\/\/t.co\/RyfavzMs9c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":249524839,"in_reply_to_user_id_str":"249524839","in_reply_to_screen_name":"kumarnandaj","user":{"id":2522735215,"id_str":"2522735215","name":"\u0905\u0938\u0939\u093f\u0937\u094d\u0923\u0941 \u092f\u094b\u0917\u0947\u0928","screen_name":"yogen198","location":"\u0917\u0941\u091c\u0930\u093e\u0924.","url":null,"description":"\u0939\u093f\u0928\u094d\u0926\u0941\u0935\u093e\u0926\u0940, \u092d\u093e\u0930\u0924 \u092a\u094d\u0930\u0925\u092e, \u0928\u092e\u094b \u0938\u092e\u0930\u094d\u0925\u0915, \u0917\u0941\u0930\u0941 \u0930\u093e\u091c\u0940\u0935 \u0926\u0940\u0915\u094d\u0937\u093f\u0924 \u091c\u0940\u0964\n \u090f\u0915\u092e\u094d \u0938\u0924\u094d \u0935\u093f\u092a\u094d\u0930\u0903 \u092c\u0939\u0941\u0926\u093e \u0935\u0926\u0928\u094d\u0924\u093f\u0964","protected":false,"verified":false,"followers_count":1116,"friends_count":1675,"listed_count":32,"favourites_count":1599,"statuses_count":25829,"created_at":"Sun May 25 13:27:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648199774118678529\/8msLWfTX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648199774118678529\/8msLWfTX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2522735215\/1446663744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663722323426476032,"quoted_status_id_str":"663722323426476032","quoted_status":{"created_at":"Mon Nov 09 14:18:27 +0000 2015","id":663722323426476032,"id_str":"663722323426476032","text":"List of RSS workers murdered under the #Kerala LDF dispensation.. https:\/\/t.co\/lJBDASlXPK Explains the saffron surge in Kerala..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2754194395,"id_str":"2754194395","name":"SanghArmy","screen_name":"SanghArmy","location":null,"url":"http:\/\/Rss.org","description":"All RSS supporter join us, This initiative taken by a swaymsevak our official handle is @Rssorg","protected":false,"verified":false,"followers_count":31587,"friends_count":26312,"listed_count":36,"favourites_count":63,"statuses_count":6886,"created_at":"Fri Aug 22 06:43:56 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502708592626003968\/n_qA6MLH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502708592626003968\/n_qA6MLH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2754194395\/1445538448","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Kerala","indices":[39,46]}],"urls":[{"url":"https:\/\/t.co\/lJBDASlXPK","expanded_url":"http:\/\/indiafacts.co.in\/list-of-rss-workers-murdered-under-the-kerala-ldf-dispensation\/","display_url":"indiafacts.co.in\/list-of-rss-wo\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RyfavzMs9c","expanded_url":"https:\/\/twitter.com\/ISupportRSS\/status\/663722323426476032","display_url":"twitter.com\/ISupportRSS\/st\u2026","indices":[14,37]}],"user_mentions":[{"screen_name":"kumarnandaj","name":"J Nandakumar","id":249524839,"id_str":"249524839","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081796609,"id_str":"663728253081796609","text":"@purogene Oonga kaya napagiiwanan na ako hahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726212322226176,"in_reply_to_status_id_str":"663726212322226176","in_reply_to_user_id":3115075722,"in_reply_to_user_id_str":"3115075722","in_reply_to_screen_name":"purogene","user":{"id":284992575,"id_str":"284992575","name":"Aly","screen_name":"otepagustin","location":null,"url":"http:\/\/Instagram.com\/otepagustin","description":"I got 99 problems but you won't be one","protected":false,"verified":false,"followers_count":766,"friends_count":369,"listed_count":1,"favourites_count":9142,"statuses_count":60783,"created_at":"Wed Apr 20 10:21:46 +0000 2011","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000076191508\/6e9d12b2eff2505e34405e6b8b07dc7d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000076191508\/6e9d12b2eff2505e34405e6b8b07dc7d.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660195486259740673\/v-q_4tDJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660195486259740673\/v-q_4tDJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/284992575\/1446177541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"purogene","name":"gene","id":3115075722,"id_str":"3115075722","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253069213696,"id_str":"663728253069213696","text":"@nijigenbisyoujo \u3046\u308b\u307f\u3061\u3083\u3093\u7acb\u4f53\u5316\u3068\u304b\u8cb7\u3046\u3057\u304b\u306a\u3044\u30c9\u30fc\u30eb\u5316\u3067\u3082\u4ee5\u4e0b\u7565","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726996266991616,"in_reply_to_status_id_str":"663726996266991616","in_reply_to_user_id":2941462315,"in_reply_to_user_id_str":"2941462315","in_reply_to_screen_name":"nijigenbisyoujo","user":{"id":46879123,"id_str":"46879123","name":"\u3068\u308f\u3063\u3061@\u30e6\u30df\u3061\u3083\u3093\u3068\u30df\u30e6\u3061\u3083\u3093","screen_name":"twi223_minmin","location":"\u30ab\u30ec\u30fc\u934b\u306e\u4e2d","url":"http:\/\/minkara.carview.co.jp\/smart\/userid\/1844383\/profile\/","description":"\u3046\u3061\u306e\u5b50\u3081\u3061\u3083\u304f\u3061\u3083\u304b\u308f\u3044\u3044\u3067\u3059\u3002\u304b\u3088\u3061\u3093\u306f\u7c73\u7c92\u5dee\u3067\u30fb\u30fb\u30fb\n\u9244\u9053\/\u30dc\u30ab\u30ed\/\u6a21\u578b\/\u30c0\u30f3\u30b9\/\u30a2\u30cb\u30e1\/\u30ab\u30c3\u30c6\u30a3\u30f3\u30b0\/\u8eca\/\u58f0\u512a\/\u30b9\u30a4\u30b9\u30dd\/\u75db\u8eca\/\u30c9\u30fc\u30eb\/\u30b3\u30b9\u30d7\u30ec\u3067\u30de\u30d5\u30a3\u30a2\u03bc's\u7a42\u4e43\u679c\u3084\u3063\u3066\u307e\u3059\u3002\n\u30e1\u30f3\u30d0\u30fc\u52df\u96c6\u4e2d\uff01\n\u30b5\u30fc\u30af\u30eb\u300e\u9650\u754c\u7a81\u7834\u300f\n\u307e\u304d\u308a\u3093\u3071\u306a\u4ed5\u69d8\u306e\u30b9\u30a4\u30b9\u30dd\u4e57\u3063\u3066\u307e\u3059\u3002\u307f\u3093\u30ab\u30e9\u3084\u3063\u3066\u307e\u3059\u3002\n\u30d5\u30a9\u30ed\u30fc\u3054\u81ea\u7531\u306b\u3069\u3046\u305e\uff01","protected":false,"verified":false,"followers_count":2349,"friends_count":2347,"listed_count":190,"favourites_count":1831,"statuses_count":88184,"created_at":"Sat Jun 13 12:42:07 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/109163989\/__________.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/109163989\/__________.png","profile_background_tile":true,"profile_link_color":"00C445","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661518858189037568\/OLRU06NX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661518858189037568\/OLRU06NX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46879123\/1421243272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nijigenbisyoujo","name":"\u3010\u516c\u5f0f\u3011\u9b54\u6cd5\u5c11\u5973\u3046\u308b\u307f\u3061\u3083\u3093","id":2941462315,"id_str":"2941462315","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121663"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253044023297,"id_str":"663728253044023297","text":"I never though I would love interludes but I really love the ones on Sounds Good Feels Good","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2546855246,"id_str":"2546855246","name":"PCS 261 days to 5SOS","screen_name":"5soslaser","location":null,"url":"http:\/\/its.a.cOW.LUKE.com","description":"I want to thank @5SOS and @onedirection for my lack of a social life and money","protected":false,"verified":false,"followers_count":1427,"friends_count":1710,"listed_count":3,"favourites_count":7878,"statuses_count":9461,"created_at":"Wed Jun 04 21:18:23 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476025988447363073\/kK6V0wjn.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476025988447363073\/kK6V0wjn.png","profile_background_tile":true,"profile_link_color":"030303","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662508363645849600\/IhDDdTXP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662508363645849600\/IhDDdTXP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2546855246\/1445833645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121657"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253077757953,"id_str":"663728253077757953","text":"RT @PalavrasEdifica: Deus \u00e9 fiel e justo para cumprir o que tem te prometido.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279592917,"id_str":"279592917","name":"Daniel Galim","screen_name":"danielgalim","location":"Belo Horizonte, MG, Brasil","url":"http:\/\/www.ideiainformatica.com.br","description":"Jesus acima de tudo, depois T\u00e2nia, Daniel e Davi, meu pai, irm\u00e3o, irm\u00e3s, sobrinhas, sobrinhos, amigos, e bem depois o Galo","protected":false,"verified":false,"followers_count":1023,"friends_count":2040,"listed_count":2,"favourites_count":1498,"statuses_count":18709,"created_at":"Sat Apr 09 15:52:35 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C7EDD1","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546851019\/JPG-BAIXA-RGB.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546851019\/JPG-BAIXA-RGB.jpg","profile_background_tile":false,"profile_link_color":"1F97C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/459757417761210368\/dz_0-oto_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/459757417761210368\/dz_0-oto_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:54 +0000 2015","id":663727971300212736,"id_str":"663727971300212736","text":"Deus \u00e9 fiel e justo para cumprir o que tem te prometido.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3183232029,"id_str":"3183232029","name":"Palavras Edificantes","screen_name":"PalavrasEdifica","location":"Cara\u00fabas, Rio Grande do Norte","url":"http:\/\/ensinamentosbib.blogspot.com.br","description":"Do mesmo criador de @EnsinamentosBib e @10PalavrasVivas.","protected":false,"verified":false,"followers_count":43534,"friends_count":45288,"listed_count":26,"favourites_count":2846,"statuses_count":2480,"created_at":"Sun Apr 19 14:12:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656895155677605888\/c2pCbwJV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656895155677605888\/c2pCbwJV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3183232029\/1445453739","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PalavrasEdifica","name":"Palavras Edificantes","id":3183232029,"id_str":"3183232029","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080121665"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253073420288,"id_str":"663728253073420288","text":"@Shino_Ar \n\u500b\u6027\u51fa\u3066\u308b\u3067\u3057\u3087\u3046\u304b\u2026\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663707186946682881,"in_reply_to_status_id_str":"663707186946682881","in_reply_to_user_id":2267105072,"in_reply_to_user_id_str":"2267105072","in_reply_to_screen_name":"Shino_Ar","user":{"id":418238556,"id_str":"418238556","name":"\u2720\u3042\u307e\u306a\u3063\u3068\u30fc\u2720","screen_name":"A_ma_na_tto","location":"\u7518\u514e\u5eb5\u306e\u3068\u306a\u308a","url":"http:\/\/twpf.jp\/A_ma_na_tto","description":"\u306b\u3083\u3093\u3071\u3059\u30fc\u3002B'z\u3068\u30a2\u30cb\u30e1\u304c\u5927\u597d\u304d\u306a\u9ad8\u6821\u751f\u3067\u3059\u3002\u30b2\u30fc\u30e0\u3084\u30dc\u30ab\u30ed\u3082\u597d\u304d\u3067\u3059\u3002\u30b7\u30e3\u30ed\u3061\u3083\u3093\u304c\u53ef\u611b\u3059\u304e\u3066\u3064\u3089\u3044\u3002\u304a\u7d75\u304b\u304d\u7df4\u7fd2\u4e2d\u2026\u307e\u3060\u307e\u3060\u4e0b\u624b\u304f\u305d\u3067\u3059\u304c\u3001\u512a\u3057\u3044\u76ee\u3067\u898b\u3066\u304f\u3060\u3055\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":46259,"friends_count":43464,"listed_count":382,"favourites_count":3144,"statuses_count":132310,"created_at":"Mon Nov 21 22:48:31 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/500585830662950912\/HdkcCgVs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/500585830662950912\/HdkcCgVs.jpeg","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660823093577801728\/HSIzVLTs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660823093577801728\/HSIzVLTs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/418238556\/1446542298","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Shino_Ar","name":"Aria@\u95a2\u6771\u306e\u3069\u3053\u304b","id":2267105072,"id_str":"2267105072","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121664"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253077581824,"id_str":"663728253077581824","text":"RT @sheikhezmel: \"nampak mcm deep tapi tak deep mana pun\"\n\n\"apa benda tu?\"\n\n\"deepavali\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":314599580,"id_str":"314599580","name":"\u0645\u0646\u064a\u0631\u0647","screen_name":"munirahnaj","location":null,"url":"http:\/\/www.munirahnajmuddin.blogspot.com","description":"UiTM : Diploma in New Media Communication and Contentpreneurship\n\nLet it become a mystery ;)","protected":false,"verified":false,"followers_count":561,"friends_count":458,"listed_count":0,"favourites_count":1942,"statuses_count":12362,"created_at":"Fri Jun 10 14:28:08 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000028528592\/b8f1feea9578f7e8739d2827292999fc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000028528592\/b8f1feea9578f7e8739d2827292999fc.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658057035628441600\/g-uYSwiw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658057035628441600\/g-uYSwiw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/314599580\/1401775934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:56:38 +0000 2015","id":662569270132408320,"id_str":"662569270132408320","text":"\"nampak mcm deep tapi tak deep mana pun\"\n\n\"apa benda tu?\"\n\n\"deepavali\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":736425698,"id_str":"736425698","name":"hakimibhrddn","screen_name":"sheikhezmel","location":null,"url":"http:\/\/instagram.com\/ezmel.h","description":"#GGMU","protected":false,"verified":false,"followers_count":1622,"friends_count":1282,"listed_count":2,"favourites_count":9461,"statuses_count":30444,"created_at":"Sat Aug 04 09:17:35 +0000 2012","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662826096698593280\/yqUHeHhe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662826096698593280\/yqUHeHhe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/736425698\/1446926113","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3372,"favorite_count":924,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sheikhezmel","name":"hakimibhrddn","id":736425698,"id_str":"736425698","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080121665"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081772032,"id_str":"663728253081772032","text":"@RT_KFans \u0e02\u0e32\u0e22\u0e22\u0e31\u0e07\u0e04\u0e48\u0e30\u0e30","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":645577185189691393,"in_reply_to_status_id_str":"645577185189691393","in_reply_to_user_id":763560523,"in_reply_to_user_id_str":"763560523","in_reply_to_screen_name":"RT_KFans","user":{"id":530872267,"id_str":"530872267","name":"yeah","screen_name":"buythingice","location":null,"url":null,"description":"\u0e23\u0e31\u0e1a\u0e1d\u0e32\u0e01\u0e23\u0e35\u0e40\u0e04\u0e34\u0e49\u0e1a \u0e41\u0e2d\u0e04\u0e19\u0e35\u0e49\u0e21\u0e35\u0e44\u0e27\u0e49\u0e0b\u0e37\u0e49\u0e2d\u0e02\u0e32\u0e22\u0e08\u0e49\u0e32","protected":false,"verified":false,"followers_count":6,"friends_count":85,"listed_count":0,"favourites_count":1,"statuses_count":17,"created_at":"Tue Mar 20 03:20:29 +0000 2012","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662963650588618752\/TMn6anLH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662963650588618752\/TMn6anLH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/530872267\/1446897845","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RT_KFans","name":"RT","id":763560523,"id_str":"763560523","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081935872,"id_str":"663728253081935872","text":"Now Hiring: PhD-level Environmental Chemist in Durham, NC https:\/\/t.co\/D4leXtq4rO #job","source":"\u003ca href=\"http:\/\/www.bullhornreach.com\/\" rel=\"nofollow\"\u003eBullhorn Reach\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1617581942,"id_str":"1617581942","name":"Janet Bullock","screen_name":"jbullock93","location":"Raleigh-Durham, NC","url":"http:\/\/linkd.in\/15JxlAD","description":"Human Resources Corporate Recruiter experienced in attracting and retaining all levels of professionals both domestic and international.","protected":false,"verified":false,"followers_count":120,"friends_count":137,"listed_count":10,"favourites_count":13,"statuses_count":2978,"created_at":"Wed Jul 24 11:47:40 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"114A8F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000180692635\/f1b7e56b59c3e381cd7e801e646335b2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000180692635\/f1b7e56b59c3e381cd7e801e646335b2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1617581942\/1374694631","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"job","indices":[82,86]}],"urls":[{"url":"https:\/\/t.co\/D4leXtq4rO","expanded_url":"http:\/\/bull.hn\/l\/2K9OQ\/11","display_url":"bull.hn\/l\/2K9OQ\/11","indices":[58,81]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253073420289,"id_str":"663728253073420289","text":"I will don't forget you.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":535011335,"id_str":"535011335","name":"Sandy\u2764\ufe0f","screen_name":"SandraGlez09","location":null,"url":null,"description":"Belieber\u2665","protected":false,"verified":false,"followers_count":359,"friends_count":288,"listed_count":2,"favourites_count":480,"statuses_count":3757,"created_at":"Sat Mar 24 04:53:41 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"A011AD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000009572365\/364fa0b4a0f664a59f5cbbde809ac88f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000009572365\/364fa0b4a0f664a59f5cbbde809ac88f.jpeg","profile_background_tile":true,"profile_link_color":"53047A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721447907442688\/yxssWigo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721447907442688\/yxssWigo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/535011335\/1447078498","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121664"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253044023296,"id_str":"663728253044023296","text":"@ChimmyAnand @oyunbatshonkhor @Odkhuu_D @ebmbe @DaagiiGM \u043c\u0430\u043d\u0430\u0439 \u0410\u043b\u0442\u0430\u0439 \u0443\u0441 \u043c\u0443\u0443\u0442\u0430\u0439 \u0433\u0430\u0437\u0430\u0440. \u0422\u0438\u0439\u043c \u043d\u0443\u0443\u0440\u0442\u04e9\u0439 \u0431\u043e\u043b\u0447\u0445\u043e\u043d\u043e \u0433\u044d\u0436 \u0441\u0430\u044d\u0430\u0430\u0433\u04af\u0439 \u0448\u04af\u04af","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727941193326592,"in_reply_to_status_id_str":"663727941193326592","in_reply_to_user_id":626581872,"in_reply_to_user_id_str":"626581872","in_reply_to_screen_name":"ChimmyAnand","user":{"id":3090695857,"id_str":"3090695857","name":"\u0425\u043e\u0433\u0433\u04af\u0439 \u041c\u041d\u0413 \u0431\u0430\u0439\u0433\u0430\u043b\u044c","screen_name":"KarStark_North","location":"ulaanbaatar,mongolia","url":null,"description":null,"protected":false,"verified":false,"followers_count":1879,"friends_count":2303,"listed_count":1,"favourites_count":1992,"statuses_count":1072,"created_at":"Mon Mar 16 19:04:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647750976078671872\/lbdBNT0g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3090695857\/1433931568","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ChimmyAnand","name":"\u0427\u041e\u0413\u041b\u041e\u0413 \u0427\u041e\u0413\u041b\u041e\u0413","id":626581872,"id_str":"626581872","indices":[0,12]},{"screen_name":"oyunbatshonkhor","name":"\u041e\u044e\u0443\u043d\u0431\u0430\u0442","id":1638277753,"id_str":"1638277753","indices":[13,29]},{"screen_name":"Odkhuu_D","name":"\u0414\u04af\u0440\u0437\u044d\u044d\u0433\u0438\u0439\u043d \u041e\u0434\u0445\u04af\u04af","id":538727067,"id_str":"538727067","indices":[30,39]},{"screen_name":"ebmbe","name":"\u0428\u0438\u043d\u044d\u043d\u0438\u0439\u0441\u043b\u044d\u043b","id":708225264,"id_str":"708225264","indices":[40,46]},{"screen_name":"DaagiiGM","name":"?","id":449567292,"id_str":"449567292","indices":[47,56]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080121657"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253060845568,"id_str":"663728253060845568","text":"Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/1RTAk46Gju","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":236497412,"id_str":"236497412","name":"Charna","screen_name":"NayGettinStakx_","location":"Philadelphia. P.A","url":"http:\/\/twitter.com\/charna2011","description":"Offically 2\u20e31\u20e3. C\/o 2013 JBHS !! \u2022|| Succeed ||\u2022","protected":false,"verified":false,"followers_count":435,"friends_count":712,"listed_count":0,"favourites_count":30,"statuses_count":3249,"created_at":"Mon Jan 10 18:38:07 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/685838185\/45490ea89d972b901596b3fbd575f269.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/685838185\/45490ea89d972b901596b3fbd575f269.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/590156325595799552\/eQbhp50Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/590156325595799552\/eQbhp50Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/236497412\/1407978794","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1RTAk46Gju","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121661"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253048197120,"id_str":"663728253048197120","text":"RT @sakka6kami: Hugo Lloris!!! https:\/\/t.co\/t6JkrOaFrv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178929012,"id_str":"3178929012","name":"\u677e\u6d66 \u6210\u6d41","screen_name":"KazumiSeiryu","location":null,"url":null,"description":"\u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":157,"friends_count":207,"listed_count":0,"favourites_count":487,"statuses_count":421,"created_at":"Wed Apr 29 05:51:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657195349677772800\/zdZJDCf6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657195349677772800\/zdZJDCf6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178929012\/1441109689","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:45:04 +0000 2015","id":663638423987576832,"id_str":"663638423987576832","text":"Hugo Lloris!!! https:\/\/t.co\/t6JkrOaFrv","source":"\u003ca href=\"https:\/\/twitter.com\/this51545\" rel=\"nofollow\"\u003ethis51545\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4068143229,"id_str":"4068143229","name":"\u30b5\u30c3\u30ab\u30fc\u30b9\u30fc\u30d1\u30fc6\u79d2\u52d5\u753b","screen_name":"sakka6kami","location":null,"url":null,"description":"\u30b5\u30c3\u30ab\u30fc\u9078\u624b\u306e\u8d85\u7d76\u795e\u696d\u30b9\u30fc\u30d1\u30fc\u30d7\u30ec\u30a4\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u307e\u3059\uff01\uff01","protected":false,"verified":false,"followers_count":549,"friends_count":4937,"listed_count":1,"favourites_count":0,"statuses_count":19,"created_at":"Thu Oct 29 14:01:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660085323221876736\/dMV3Sp4a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660085323221876736\/dMV3Sp4a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4068143229\/1446211587","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t6JkrOaFrv","expanded_url":"https:\/\/vine.co\/v\/MuVvbO5iIQB","display_url":"vine.co\/v\/MuVvbO5iIQB","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/t6JkrOaFrv","expanded_url":"https:\/\/vine.co\/v\/MuVvbO5iIQB","display_url":"vine.co\/v\/MuVvbO5iIQB","indices":[31,54]}],"user_mentions":[{"screen_name":"sakka6kami","name":"\u30b5\u30c3\u30ab\u30fc\u30b9\u30fc\u30d1\u30fc6\u79d2\u52d5\u753b","id":4068143229,"id_str":"4068143229","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080121658"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081882624,"id_str":"663728253081882624","text":"@curious_owl_1D https:\/\/t.co\/3QBedGs9Ah","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3043014105,"in_reply_to_user_id_str":"3043014105","in_reply_to_screen_name":"curious_owl_1D","user":{"id":2971285649,"id_str":"2971285649","name":"\u041c\u044f\u0442\u043d\u044b\u0439 \u0412\u043e\u0440\u043e\u0431\u0443\u0448\u0435\u043a","screen_name":"__svastonov__","location":null,"url":null,"description":"#30STM #LinkinPark #GreenDay #MCR #GerardWay #FallOutBoy #AHS #Hannibal #GameOfThrones","protected":false,"verified":false,"followers_count":2538,"friends_count":2578,"listed_count":1,"favourites_count":349,"statuses_count":192,"created_at":"Sat Jan 10 12:21:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637187936241516545\/8Jg8SWGF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637187936241516545\/8Jg8SWGF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971285649\/1440752415","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"curious_owl_1D","name":"curious \u00a4 owl|56\u0434\u043e\u0414\u0420","id":3043014105,"id_str":"3043014105","indices":[0,15]}],"symbols":[],"media":[{"id":663728247407005696,"id_str":"663728247407005696","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUw4WUAATUTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUw4WUAATUTR.jpg","url":"https:\/\/t.co\/3QBedGs9Ah","display_url":"pic.twitter.com\/3QBedGs9Ah","expanded_url":"http:\/\/twitter.com\/__svastonov__\/status\/663728253081882624\/photo\/1","type":"photo","sizes":{"large":{"w":479,"h":308,"resize":"fit"},"small":{"w":340,"h":218,"resize":"fit"},"medium":{"w":479,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728247407005696,"id_str":"663728247407005696","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUw4WUAATUTR.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUw4WUAATUTR.jpg","url":"https:\/\/t.co\/3QBedGs9Ah","display_url":"pic.twitter.com\/3QBedGs9Ah","expanded_url":"http:\/\/twitter.com\/__svastonov__\/status\/663728253081882624\/photo\/1","type":"photo","sizes":{"large":{"w":479,"h":308,"resize":"fit"},"small":{"w":340,"h":218,"resize":"fit"},"medium":{"w":479,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253044187136,"id_str":"663728253044187136","text":"Work Faster and Smarter with Twitter with ManageFlitter https:\/\/t.co\/eGxxYn1UBL https:\/\/t.co\/zxN4TgBlDx","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2698252489,"id_str":"2698252489","name":"OnIt Tv - InternetTv","screen_name":"OnItTv","location":"Internet TV WWide Free & Legal","url":"http:\/\/goo.gl\/g6JZlm","description":"Your GoTo Partner 4 Business Connections - Global Business built on Partnerships #Talk2Us +44 20 3763 5199","protected":false,"verified":false,"followers_count":11620,"friends_count":12715,"listed_count":509,"favourites_count":0,"statuses_count":167351,"created_at":"Fri Aug 01 13:09:25 +0000 2014","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563274831475384320\/Upx_Gir0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563274831475384320\/Upx_Gir0.jpeg","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563280305558016000\/eNEYAo2D_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563280305558016000\/eNEYAo2D_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2698252489\/1442331472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eGxxYn1UBL","expanded_url":"https:\/\/goo.gl\/wJl9uG","display_url":"goo.gl\/wJl9uG","indices":[57,80]},{"url":"https:\/\/t.co\/zxN4TgBlDx","expanded_url":"https:\/\/goo.gl\/aMUppd","display_url":"goo.gl\/aMUppd","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080121657"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253043998724,"id_str":"663728253043998724","text":"\u30dc\u30a4\u30b9\u4ed8\u3051\u3066\u304f\u308c\u306a\u3044\u304b\u306a\u2026 https:\/\/t.co\/ArbdSHpTc4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":617185410,"id_str":"617185410","name":"\u30ac\u30c1\u30e3\u306b\u5b8c\u5168\u52dd\u5229\u3057\u305f\u84bc\u7a7a\u7fbd\u541bUC","screen_name":"soraha22","location":"765\u5287\u5834\u4e8b\u52d9\u6240 \u718a\u672c\u652f\u90e8","url":null,"description":"\u7434\u8449P\u3067\u3059\u3002\u7434\u8449\u3092\u30e4\u30f3\u30c7\u30ec\u306b\u6271\u3063\u305f\u308a\u3059\u308b\u3068\u3046\u3056\u304f\u53cd\u5fdc\u3057\u307e\u3059\u3002\u30ad\u30e3\u30b9\u72d0\u3068\u30de\u30ea\u30fc\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u30ad\u30e3\u30b9\u72d0\u30a9\uff01\uff01\uff01\uff01\uff01\uff01\uff01","protected":false,"verified":false,"followers_count":75,"friends_count":178,"listed_count":0,"favourites_count":179,"statuses_count":39566,"created_at":"Sun Jun 24 13:09:12 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658504968828121088\/9H4i6f56_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658504968828121088\/9H4i6f56_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/617185410\/1360925026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728237055361024,"id_str":"663728237055361024","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUKUUwAAoRDn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUKUUwAAoRDn.jpg","url":"https:\/\/t.co\/ArbdSHpTc4","display_url":"pic.twitter.com\/ArbdSHpTc4","expanded_url":"http:\/\/twitter.com\/soraha22\/status\/663728253043998724\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728237055361024,"id_str":"663728237055361024","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUKUUwAAoRDn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUKUUwAAoRDn.jpg","url":"https:\/\/t.co\/ArbdSHpTc4","display_url":"pic.twitter.com\/ArbdSHpTc4","expanded_url":"http:\/\/twitter.com\/soraha22\/status\/663728253043998724\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}},{"id":663728244818997252,"id_str":"663728244818997252","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUnPUcAQf3C8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUnPUcAQf3C8.jpg","url":"https:\/\/t.co\/ArbdSHpTc4","display_url":"pic.twitter.com\/ArbdSHpTc4","expanded_url":"http:\/\/twitter.com\/soraha22\/status\/663728253043998724\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121657"} +{"delete":{"status":{"id":663725962979250180,"id_str":"663725962979250180","user_id":3310361028,"user_id_str":"3310361028"},"timestamp_ms":"1447080121901"}} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253060775936,"id_str":"663728253060775936","text":"#\u7d75\u63cf\u304d\u3055\u3093\u3068\u3064\u306a\u304c\u308a\u305f\u3044\n#RT\u304f\u308c\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b \n#1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT \n\n\u7d75\u63cf\u304d\u306e\u3086\u3046\u3072\u3067\u3059\uff01\n\u6c17\u307e\u3050\u308c\u6d6e\u4e0a\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u3067\u3059\uff01\n\u2193\u4f8b\u3048\u3070\u3053\u3093\u306a\u7d75\u3092\u63cf\u304f\u4eba\u3067\u3059w https:\/\/t.co\/83n2HCCskU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3504364820,"id_str":"3504364820","name":"\u3086\u3046\u3072@\u7d75\u63cf\u304d","screen_name":"tetrarion_yuhi","location":null,"url":null,"description":"\u7d75\u63cf\u304d\u7528\u30a2\u30ab\u30a6\u30f3\u30c8\u3002\u6700\u8fd1\u30c7\u30b8\u30bf\u30eb\u7d75\u3092\u7df4\u7fd2\u3057\u59cb\u3081\u305f\u3051\u3069\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(\uff61\u309d\u2200\u30fb)b \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059m(_ _)m","protected":false,"verified":false,"followers_count":325,"friends_count":554,"listed_count":4,"favourites_count":10,"statuses_count":359,"created_at":"Wed Sep 09 12:55:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641599227336876032\/-p9LhSKB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641599227336876032\/-p9LhSKB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3504364820\/1446956410","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u7d75\u63cf\u304d\u3055\u3093\u3068\u3064\u306a\u304c\u308a\u305f\u3044","indices":[0,13]},{"text":"RT\u304f\u308c\u305f\u4eba\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[14,29]},{"text":"1mm\u3067\u3082\u3044\u3044\u306a\u3068\u601d\u3063\u305f\u3089RT","indices":[31,47]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728244974186497,"id_str":"663728244974186497","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUn0UcAEvo32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUn0UcAEvo32.jpg","url":"https:\/\/t.co\/83n2HCCskU","display_url":"pic.twitter.com\/83n2HCCskU","expanded_url":"http:\/\/twitter.com\/tetrarion_yuhi\/status\/663728253060775936\/photo\/1","type":"photo","sizes":{"large":{"w":743,"h":1024,"resize":"fit"},"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728244974186497,"id_str":"663728244974186497","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUn0UcAEvo32.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUn0UcAEvo32.jpg","url":"https:\/\/t.co\/83n2HCCskU","display_url":"pic.twitter.com\/83n2HCCskU","expanded_url":"http:\/\/twitter.com\/tetrarion_yuhi\/status\/663728253060775936\/photo\/1","type":"photo","sizes":{"large":{"w":743,"h":1024,"resize":"fit"},"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121661"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253081907201,"id_str":"663728253081907201","text":"@Gustin_Funk ahahaha vabbe \u00e9 sottinteso","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728002333806592,"in_reply_to_status_id_str":"663728002333806592","in_reply_to_user_id":3075111989,"in_reply_to_user_id_str":"3075111989","in_reply_to_screen_name":"Gustin_Funk","user":{"id":2423398715,"id_str":"2423398715","name":"Hutcherson's wife.","screen_name":"_hugmejoshua","location":"221B Baker Street ","url":null,"description":"Stressed, depressed and Hutcherson obsessed","protected":false,"verified":false,"followers_count":2708,"friends_count":2235,"listed_count":4,"favourites_count":9229,"statuses_count":8390,"created_at":"Wed Mar 19 21:06:00 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663704391556419585\/GelFlSvL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663704391556419585\/GelFlSvL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423398715\/1447074750","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Gustin_Funk","name":"Malfoy||Sherlock~","id":3075111989,"id_str":"3075111989","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080121666"} +{"created_at":"Mon Nov 09 14:42:01 +0000 2015","id":663728253064994816,"id_str":"663728253064994816","text":"@_me703_ \u3042\u3001\u3042\u308a\u304c\u2026\u3068\u3046\u2026 https:\/\/t.co\/pruigAi1Xw","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727915092185088,"in_reply_to_status_id_str":"663727915092185088","in_reply_to_user_id":3080383777,"in_reply_to_user_id_str":"3080383777","in_reply_to_screen_name":"_me703_","user":{"id":2242428480,"id_str":"2242428480","name":"\u3088\u3063\u3068\uff20\u30ea\u30c8\u30eb\u30ab\u30d6","screen_name":"aozorayossy","location":"\u65b0\u6f5f\u770c \u9577\u5ca1\u5e02","url":null,"description":"\u30ea\u30c8\u30eb\u30ab\u30d6(FI)\n\u884c\u706f\u30ab\u30d6\n\u30b9\u30a4\u30d5\u30c8RS\n\u65b0\u6f5f\u21c6\u9577\u5ca1\u21c6\u4e0a\u8d8a\nNo Cub. No LIFE !!\nNO MUSIC. NO LIFE !!\n\u7d76\u8cdb\u30ab\u30d6\u4e3b\u52df\u96c6\u4e2d\uff01\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059\uff01\nfollow me .+*:\uff9f+\uff61.\u2606\n\u65b0\u6f5f\uff65\u9577\u5ca1\u3067\u3082\u30ab\u30d6\u30df\u30fc\u30c6\u30a3\u30f3\u30b0\u958b\u304d\u305f\u3044\u2606","protected":false,"verified":false,"followers_count":167,"friends_count":162,"listed_count":5,"favourites_count":4241,"statuses_count":12663,"created_at":"Thu Dec 12 14:12:29 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662273516729794561\/sjlsD7PD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662273516729794561\/sjlsD7PD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2242428480\/1446733284","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_me703_","name":"\u3061\u3073","id":3080383777,"id_str":"3080383777","indices":[0,8]}],"symbols":[],"media":[{"id":663728250867224576,"id_str":"663728250867224576","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU9xVEAAguMa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU9xVEAAguMa.jpg","url":"https:\/\/t.co\/pruigAi1Xw","display_url":"pic.twitter.com\/pruigAi1Xw","expanded_url":"http:\/\/twitter.com\/aozorayossy\/status\/663728253064994816\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728250867224576,"id_str":"663728250867224576","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU9xVEAAguMa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU9xVEAAguMa.jpg","url":"https:\/\/t.co\/pruigAi1Xw","display_url":"pic.twitter.com\/pruigAi1Xw","expanded_url":"http:\/\/twitter.com\/aozorayossy\/status\/663728253064994816\/photo\/1","type":"photo","sizes":{"small":{"w":315,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":315,"h":315,"resize":"fit"},"medium":{"w":315,"h":315,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080121662"} +{"delete":{"status":{"id":663494563206668288,"id_str":"663494563206668288","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080122427"}} +{"delete":{"status":{"id":663680576398991360,"id_str":"663680576398991360","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080122533"}} +{"delete":{"status":{"id":663634401310412800,"id_str":"663634401310412800","user_id":2615191712,"user_id_str":"2615191712"},"timestamp_ms":"1447080122638"}} +{"delete":{"status":{"id":663725631637598211,"id_str":"663725631637598211","user_id":2951347970,"user_id_str":"2951347970"},"timestamp_ms":"1447080122686"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257238491138,"id_str":"663728257238491138","text":"Alesso\/Tove Lo - Heroes (we could be) playing on #BPM - @sxmElectro","source":"\u003ca href=\"http:\/\/github.com\/TeckniX\" rel=\"nofollow\"\u003eSiriusXM BPM playlist \u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":247455247,"id_str":"247455247","name":"BPM Playlist","screen_name":"bpm_playlist","location":"Miami Beach, FL 33139","url":"http:\/\/www.fb.me\/sxmElectro","description":"BPM is America's Dance Hits Channel on @sxmElectro SiriusXM 51! Today's biggest dance hits, remixes, and more. You can find a history of all songs played here.","protected":false,"verified":false,"followers_count":36177,"friends_count":5,"listed_count":312,"favourites_count":4,"statuses_count":495619,"created_at":"Fri Feb 04 20:53:22 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528229203208966146\/40XOYjyZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528229203208966146\/40XOYjyZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/247455247\/1414774776","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BPM","indices":[49,53]}],"urls":[],"user_mentions":[{"screen_name":"sxmElectro","name":"SiriusXM Electro","id":56972993,"id_str":"56972993","indices":[56,67]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122657"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257251061761,"id_str":"663728257251061761","text":"\"I get a lot of attention\" na na bye then","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":318093063,"id_str":"318093063","name":"jxy","screen_name":"jxysays","location":null,"url":null,"description":"No heartbroken tweets","protected":false,"verified":false,"followers_count":1107,"friends_count":353,"listed_count":8,"favourites_count":8,"statuses_count":11423,"created_at":"Wed Jun 15 23:31:39 +0000 2011","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060303866\/48503e4179abd1fdf6e235a0d350a181.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060303866\/48503e4179abd1fdf6e235a0d350a181.jpeg","profile_background_tile":true,"profile_link_color":"164C5C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662084519483334656\/oD01Z0S0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662084519483334656\/oD01Z0S0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/318093063\/1447032350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257267838977,"id_str":"663728257267838977","text":"RT @NovostiDamask: \u0424\u0440\u0430\u043d\u0446\u0438\u044f \u043d\u0430\u043d\u0435\u0441\u043b\u0430 \u0430\u0432\u0438\u0430\u0443\u0434\u0430\u0440 \u043f\u043e \u043d\u0435\u0444\u0442\u044f\u043d\u043e\u043c\u0443 \u043e\u0431\u044a\u0435\u043a\u0442\u0443 \u0418\u0413 \u0432 \u0421\u0438\u0440\u0438\u0438\nhttps:\/\/t.co\/wQiCTgmdoE https:\/\/t.co\/9WtyiJudAs","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1344122557,"id_str":"1344122557","name":"\u0435\u043b\u0435\u043d\u0430 \u043f\u043e\u043f\u0438\u043b\u0435\u043d\u043a\u043e","screen_name":"elenapopilenko","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":90,"friends_count":101,"listed_count":1,"favourites_count":165,"statuses_count":15544,"created_at":"Thu Apr 11 11:03:21 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3505916406\/4d1e1e54d0b27df4c4126051ab8df72c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3505916406\/4d1e1e54d0b27df4c4126051ab8df72c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1344122557\/1436001617","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:38 +0000 2015","id":663722619145990146,"id_str":"663722619145990146","text":"\u0424\u0440\u0430\u043d\u0446\u0438\u044f \u043d\u0430\u043d\u0435\u0441\u043b\u0430 \u0430\u0432\u0438\u0430\u0443\u0434\u0430\u0440 \u043f\u043e \u043d\u0435\u0444\u0442\u044f\u043d\u043e\u043c\u0443 \u043e\u0431\u044a\u0435\u043a\u0442\u0443 \u0418\u0413 \u0432 \u0421\u0438\u0440\u0438\u0438\nhttps:\/\/t.co\/wQiCTgmdoE https:\/\/t.co\/9WtyiJudAs","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3824403809,"id_str":"3824403809","name":"\u0412\u0435\u0441\u0442\u043d\u0438\u043a \u0414\u0430\u043c\u0430\u0441\u043a\u0430","screen_name":"NovostiDamask","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":5596,"friends_count":2042,"listed_count":77,"favourites_count":0,"statuses_count":1431,"created_at":"Wed Sep 30 13:21:07 +0000 2015","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649213383489679360\/Nqeaf3rP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649213383489679360\/Nqeaf3rP_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3824403809\/1443619542","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wQiCTgmdoE","expanded_url":"http:\/\/ria.ru\/syria_chronicle\/20151109\/1317281750.html","display_url":"ria.ru\/syria_chronicl\u2026","indices":[57,80]}],"user_mentions":[],"symbols":[],"media":[{"id":663722618063720448,"id_str":"663722618063720448","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","url":"https:\/\/t.co\/9WtyiJudAs","display_url":"pic.twitter.com\/9WtyiJudAs","expanded_url":"http:\/\/twitter.com\/NovostiDamask\/status\/663722619145990146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722618063720448,"id_str":"663722618063720448","indices":[81,104],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","url":"https:\/\/t.co\/9WtyiJudAs","display_url":"pic.twitter.com\/9WtyiJudAs","expanded_url":"http:\/\/twitter.com\/NovostiDamask\/status\/663722619145990146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wQiCTgmdoE","expanded_url":"http:\/\/ria.ru\/syria_chronicle\/20151109\/1317281750.html","display_url":"ria.ru\/syria_chronicl\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"NovostiDamask","name":"\u0412\u0435\u0441\u0442\u043d\u0438\u043a \u0414\u0430\u043c\u0430\u0441\u043a\u0430","id":3824403809,"id_str":"3824403809","indices":[3,17]}],"symbols":[],"media":[{"id":663722618063720448,"id_str":"663722618063720448","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","url":"https:\/\/t.co\/9WtyiJudAs","display_url":"pic.twitter.com\/9WtyiJudAs","expanded_url":"http:\/\/twitter.com\/NovostiDamask\/status\/663722619145990146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663722619145990146,"source_status_id_str":"663722619145990146","source_user_id":3824403809,"source_user_id_str":"3824403809"}]},"extended_entities":{"media":[{"id":663722618063720448,"id_str":"663722618063720448","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYENF8UkAA4j-a.jpg","url":"https:\/\/t.co\/9WtyiJudAs","display_url":"pic.twitter.com\/9WtyiJudAs","expanded_url":"http:\/\/twitter.com\/NovostiDamask\/status\/663722619145990146\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":340,"resize":"fit"},"medium":{"w":600,"h":340,"resize":"fit"},"small":{"w":340,"h":192,"resize":"fit"}},"source_status_id":663722619145990146,"source_status_id_str":"663722619145990146","source_user_id":3824403809,"source_user_id_str":"3824403809"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080122664"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257255231488,"id_str":"663728257255231488","text":"RT @AJumbled: Today's #SaddaHaq Highlight :\nResist & Prevent Child-labour!\nCondemn Fire-crackers!\nSafe & Eco-friendly Diwali!\n\nPlay pranks \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1356811711,"id_str":"1356811711","name":"R \u03b5 \u043d \u03b1 \u0432 \u2661","screen_name":"SanDhirObsessed","location":"Dubai, United Arab Emirates","url":null,"description":"#S\u03b1\u0274D\u043d\u03b9r #P\u03b1rS\u043d f\u03b1n\u03b1t\u03b9c for l\u03b9f\u03b5 \u2661 \u2022 S\u03b1dd\u03b1 H\u03b1q \u2661 \u2022 F\u03b1w\u03b1d\/M\u03b1\u043d\u03b9r\u03b1 \u2022 HARSHITA GAUR \u2661 \u2022 R\u03b1nD\u03b5\u03b5p \u2022 SHAHID KAPOOR \u2022 D\u03b9\u03b5 H\u03b1rd PARAMHOLIC \u2661","protected":false,"verified":false,"followers_count":963,"friends_count":150,"listed_count":9,"favourites_count":37058,"statuses_count":21279,"created_at":"Tue Apr 16 12:47:50 +0000 2013","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/576131200361717760\/AfLVdPAs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/576131200361717760\/AfLVdPAs.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662309356537442308\/z4iStONS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662309356537442308\/z4iStONS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1356811711\/1446806780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:37:19 +0000 2015","id":663711969191440385,"id_str":"663711969191440385","text":"Today's #SaddaHaq Highlight :\nResist & Prevent Child-labour!\nCondemn Fire-crackers!\nSafe & Eco-friendly Diwali!\n\nPlay pranks in final year \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3067411974,"id_str":"3067411974","name":"Anushka Jhota","screen_name":"AJumbled","location":"India","url":"https:\/\/youtu.be\/xBq6Vg0w4Aw","description":"Bold. Independent. Righteous. Focused. Movie-buff.\nAnd, SaddaHaq \u2764","protected":false,"verified":false,"followers_count":447,"friends_count":108,"listed_count":1,"favourites_count":4879,"statuses_count":6608,"created_at":"Sun Mar 08 03:20:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655882781973606401\/4KYJuKXA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655882781973606401\/4KYJuKXA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3067411974\/1443230933","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6440cc236ab92f2b","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6440cc236ab92f2b.json","place_type":"city","name":"Udaipur","full_name":"Udaipur, Rajasthan","country_code":"IN","country":"India","bounding_box":{"type":"Polygon","coordinates":[[[73.520205,24.175067],[73.520205,24.743788],[74.132294,24.743788],[74.132294,24.175067]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":22,"entities":{"hashtags":[{"text":"SaddaHaq","indices":[8,17]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SaddaHaq","indices":[22,31]}],"urls":[],"user_mentions":[{"screen_name":"AJumbled","name":"Anushka Jhota","id":3067411974,"id_str":"3067411974","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122661"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246830592,"id_str":"663728257246830592","text":"Sex is like pizza, if you're going to use bbq sauce you better know what the fuck you're doing","source":"\u003ca href=\"https:\/\/www.google.com\" rel=\"nofollow\"\u003eCyrstalFriz\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":129044757,"id_str":"129044757","name":"Cyrstal Friz","screen_name":"CyrstalFriz","location":null,"url":null,"description":"Yoga is the fountain of youth. You\u2019re only as young as your spine is flexible. So if you want to feel moon, don't forget yoga.","protected":false,"verified":false,"followers_count":66,"friends_count":228,"listed_count":1,"favourites_count":0,"statuses_count":164,"created_at":"Sat Apr 03 01:07:42 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597179067658559488\/IKqFbHpu_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597179067658559488\/IKqFbHpu_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/129044757\/1443793946","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122659"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257255141376,"id_str":"663728257255141376","text":"RT @DrawingPenciI: by Marissa Oosterlee https:\/\/t.co\/Nt0Etirjpz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":428806826,"id_str":"428806826","name":"afynna","screen_name":"_sepinash","location":null,"url":null,"description":"biar orang buat kita jangan kita buat orang","protected":false,"verified":false,"followers_count":70,"friends_count":179,"listed_count":0,"favourites_count":577,"statuses_count":3643,"created_at":"Mon Dec 05 06:13:19 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553026423812673536\/HOTpT5MJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553026423812673536\/HOTpT5MJ.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658564524971167748\/UesHGvSY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658564524971167748\/UesHGvSY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/428806826\/1436100300","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:55:05 +0000 2015","id":663716442861207552,"id_str":"663716442861207552","text":"by Marissa Oosterlee https:\/\/t.co\/Nt0Etirjpz","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457692129,"id_str":"457692129","name":"Drawing Pencil","screen_name":"DrawingPenciI","location":"Parody","url":"http:\/\/www.instagram.com\/drawinggpencil","description":"Do not own image posted ** Send us your drawing with your name & country on drawinggpencil@gmail.com and we will share it here :)","protected":false,"verified":false,"followers_count":202424,"friends_count":170,"listed_count":420,"favourites_count":995,"statuses_count":4872,"created_at":"Sat Jan 07 18:14:31 +0000 2012","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655560900494032897\/LtL_6f-N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655560900494032897\/LtL_6f-N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457692129\/1445140509","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663571264150351872,"id_str":"663571264150351872","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","url":"https:\/\/t.co\/Nt0Etirjpz","display_url":"pic.twitter.com\/Nt0Etirjpz","expanded_url":"http:\/\/twitter.com\/DrawingPenciI\/status\/663716442861207552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":540,"resize":"fit"},"small":{"w":340,"h":306,"resize":"fit"},"large":{"w":631,"h":568,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663571264150351872,"id_str":"663571264150351872","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","url":"https:\/\/t.co\/Nt0Etirjpz","display_url":"pic.twitter.com\/Nt0Etirjpz","expanded_url":"http:\/\/twitter.com\/DrawingPenciI\/status\/663716442861207552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":540,"resize":"fit"},"small":{"w":340,"h":306,"resize":"fit"},"large":{"w":631,"h":568,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DrawingPenciI","name":"Drawing Pencil","id":457692129,"id_str":"457692129","indices":[3,17]}],"symbols":[],"media":[{"id":663571264150351872,"id_str":"663571264150351872","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","url":"https:\/\/t.co\/Nt0Etirjpz","display_url":"pic.twitter.com\/Nt0Etirjpz","expanded_url":"http:\/\/twitter.com\/DrawingPenciI\/status\/663716442861207552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":540,"resize":"fit"},"small":{"w":340,"h":306,"resize":"fit"},"large":{"w":631,"h":568,"resize":"fit"}},"source_status_id":663716442861207552,"source_status_id_str":"663716442861207552","source_user_id":457692129,"source_user_id_str":"457692129"}]},"extended_entities":{"media":[{"id":663571264150351872,"id_str":"663571264150351872","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV6jIrWsAAIyvv.png","url":"https:\/\/t.co\/Nt0Etirjpz","display_url":"pic.twitter.com\/Nt0Etirjpz","expanded_url":"http:\/\/twitter.com\/DrawingPenciI\/status\/663716442861207552\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":540,"resize":"fit"},"small":{"w":340,"h":306,"resize":"fit"},"large":{"w":631,"h":568,"resize":"fit"}},"source_status_id":663716442861207552,"source_status_id_str":"663716442861207552","source_user_id":457692129,"source_user_id_str":"457692129"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fi","timestamp_ms":"1447080122661"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257276186624,"id_str":"663728257276186624","text":"Chicken wings and fries we don't go on dates !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2319724183,"id_str":"2319724183","name":"Kay-na$ty \u2757\ufe0f","screen_name":"Hk_kayy","location":"w all the killers nd robbers","url":"https:\/\/m.soundcloud.com\/hosheria-jerkuh-young\/jumpman-remix","description":null,"protected":false,"verified":false,"followers_count":556,"friends_count":487,"listed_count":0,"favourites_count":2687,"statuses_count":14937,"created_at":"Thu Jan 30 22:40:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/504464072356532224\/TccZH0OU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/504464072356532224\/TccZH0OU.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660217816885370880\/5rL5YJkL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660217816885370880\/5rL5YJkL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2319724183\/1445190448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122666"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257238491136,"id_str":"663728257238491136","text":"ggcf #CantateOtra Maxi Espindola y Agus Bernasconi https:\/\/t.co\/5Im2Y3KnGT \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 \u2026 #FansAwards2015 v\u00eda @FansEnVivo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553632340,"id_str":"1553632340","name":".","screen_name":"aliadosftlali","location":"\u263a","url":null,"description":"\u00a0 \u00a0\u00a0\u00a0\u2206 esp\u00f3sito \u00b7 bernasconi \u00b7 sabatini \u2206","protected":false,"verified":false,"followers_count":548,"friends_count":371,"listed_count":3,"favourites_count":17,"statuses_count":16587,"created_at":"Fri Jun 28 17:33:37 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000182425927\/yS8wzwNt.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000182425927\/yS8wzwNt.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/468938628157042688\/4IYEabPF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/468938628157042688\/4IYEabPF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553632340\/1400638683","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CantateOtra","indices":[6,18]},{"text":"FansAwards2015","indices":[92,107]}],"urls":[{"url":"https:\/\/t.co\/5Im2Y3KnGT","expanded_url":"https:\/\/www.fwtv.tv\/fwenvivo\/fansawards2015-cantateotra-maxi-espindola-y-agus-bernasconi","display_url":"fwtv.tv\/fwenvivo\/fansa\u2026","indices":[52,75]}],"user_mentions":[{"screen_name":"FansEnVivo","name":"Fans En Vivo","id":246294511,"id_str":"246294511","indices":[112,123]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080122657"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257272033280,"id_str":"663728257272033280","text":"@Siwo_wo thanks Siwo x","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703365839364096,"in_reply_to_status_id_str":"663703365839364096","in_reply_to_user_id":357386708,"in_reply_to_user_id_str":"357386708","in_reply_to_screen_name":"Siwo_wo","user":{"id":257145942,"id_str":"257145942","name":"Mashadi ","screen_name":"_Mashkins","location":"Cape Town, South Africa","url":null,"description":"Future Sutherland dweller | Christ above all.","protected":false,"verified":false,"followers_count":358,"friends_count":277,"listed_count":1,"favourites_count":298,"statuses_count":7173,"created_at":"Thu Feb 24 20:51:03 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/863266532\/940dce7b3a7a11f843c33a3495017c06.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/863266532\/940dce7b3a7a11f843c33a3495017c06.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603841663727960064\/-dRrLDNz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603841663727960064\/-dRrLDNz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/257145942\/1368008350","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Siwo_wo","name":"Wowie Be_U_tiful \u2665","id":357386708,"id_str":"357386708","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259479040,"id_str":"663728257259479040","text":"RT @FunnyPicsDepot: Natural beauty https:\/\/t.co\/2RYwswlOqz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":522269816,"id_str":"522269816","name":"PICHADRI","screen_name":"adriielpishurra","location":"Aqui","url":null,"description":null,"protected":false,"verified":false,"followers_count":146,"friends_count":136,"listed_count":0,"favourites_count":660,"statuses_count":6312,"created_at":"Mon Mar 12 13:54:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/448428930\/Cort_zar_de_cerdo3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/448428930\/Cort_zar_de_cerdo3.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656606722413473792\/EwEf5CiF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656606722413473792\/EwEf5CiF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522269816\/1442966272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:15:04 +0000 2015","id":663645970740207616,"id_str":"663645970740207616","text":"Natural beauty https:\/\/t.co\/2RYwswlOqz","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":524657792,"id_str":"524657792","name":"FunnyPicsDepot","screen_name":"FunnyPicsDepot","location":"GLOBAL ","url":"http:\/\/funnypicsdepot.com","description":"Twitter's #1 for funny pictures! Laughing burns calories, follow me for an intense workout! We do not own any of the content posted! contactfunnypicsd@gmail.com","protected":false,"verified":false,"followers_count":1233824,"friends_count":309376,"listed_count":2312,"favourites_count":1941,"statuses_count":23136,"created_at":"Wed Mar 14 19:33:58 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"050000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/417814770172297216\/_614NIa2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/524657792\/1444265471","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":431,"favorite_count":644,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2RYwswlOqz","expanded_url":"https:\/\/vine.co\/v\/OXPXJnAFZWe","display_url":"vine.co\/v\/OXPXJnAFZWe","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2RYwswlOqz","expanded_url":"https:\/\/vine.co\/v\/OXPXJnAFZWe","display_url":"vine.co\/v\/OXPXJnAFZWe","indices":[35,58]}],"user_mentions":[{"screen_name":"FunnyPicsDepot","name":"FunnyPicsDepot","id":524657792,"id_str":"524657792","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257272061952,"id_str":"663728257272061952","text":"RT @FollowMe_Bissh: \ud83d\ude29 mfers ah never understand https:\/\/t.co\/Jz2XkrjiXy","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131438536,"id_str":"1131438536","name":"Boobie\u2764\ufe0f","screen_name":"MeshaFromDa1","location":null,"url":null,"description":"\u2728With Them Loose Screws 0\u20e35\u20e31\u20e3\u26a1\ufe0f| \u270a #ThinkAboutIt\u270b","protected":false,"verified":false,"followers_count":1955,"friends_count":1219,"listed_count":3,"favourites_count":9610,"statuses_count":48846,"created_at":"Tue Jan 29 16:03:24 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB123E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161053838\/hirpxFGq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161053838\/hirpxFGq.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652537563870285828\/CjyVzzlg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652537563870285828\/CjyVzzlg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131438536\/1432183909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:04 +0000 2015","id":663728012462985216,"id_str":"663728012462985216","text":"\ud83d\ude29 mfers ah never understand https:\/\/t.co\/Jz2XkrjiXy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368540773,"id_str":"368540773","name":"rest up boobie \u2764","screen_name":"FollowMe_Bissh","location":null,"url":null,"description":"R.I.P CMB Keylow\u2764\ufe0f | Dayday Page \u270a|","protected":false,"verified":false,"followers_count":1763,"friends_count":1225,"listed_count":3,"favourites_count":3623,"statuses_count":35258,"created_at":"Mon Sep 05 20:14:39 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000070809199\/6b73b64904c78b4624829d6457603c40.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000070809199\/6b73b64904c78b4624829d6457603c40.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653412930185105408\/0DKQW3uI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653412930185105408\/0DKQW3uI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368540773\/1414938535","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663698624858169344,"quoted_status_id_str":"663698624858169344","quoted_status":{"created_at":"Mon Nov 09 12:44:17 +0000 2015","id":663698624858169344,"id_str":"663698624858169344","text":"When you literally don't even talk to one nigga\ud83d\ude10","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131438536,"id_str":"1131438536","name":"Boobie\u2764\ufe0f","screen_name":"MeshaFromDa1","location":null,"url":null,"description":"\u2728With Them Loose Screws 0\u20e35\u20e31\u20e3\u26a1\ufe0f| \u270a #ThinkAboutIt\u270b","protected":false,"verified":false,"followers_count":1955,"friends_count":1219,"listed_count":3,"favourites_count":9610,"statuses_count":48845,"created_at":"Tue Jan 29 16:03:24 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EB123E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000161053838\/hirpxFGq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000161053838\/hirpxFGq.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652537563870285828\/CjyVzzlg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652537563870285828\/CjyVzzlg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1131438536\/1432183909","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jz2XkrjiXy","expanded_url":"https:\/\/twitter.com\/MeshaFromDa1\/status\/663698624858169344","display_url":"twitter.com\/MeshaFromDa1\/s\u2026","indices":[29,52]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jz2XkrjiXy","expanded_url":"https:\/\/twitter.com\/MeshaFromDa1\/status\/663698624858169344","display_url":"twitter.com\/MeshaFromDa1\/s\u2026","indices":[49,72]}],"user_mentions":[{"screen_name":"FollowMe_Bissh","name":"rest up boobie \u2764","id":368540773,"id_str":"368540773","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122665"} +{"delete":{"status":{"id":663717012338638848,"id_str":"663717012338638848","user_id":3029728253,"user_id_str":"3029728253"},"timestamp_ms":"1447080122677"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246896129,"id_str":"663728257246896129","text":"\u00c7\u00fcnk\u00fc 7 milyar g\u00fcl\u00fc\u015f varken seninki favorim.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3055786316,"id_str":"3055786316","name":"G\u00f6khan Kahvecio\u011flu","screen_name":"3339Gokhan","location":"Mersin, T\u00fcrkiye","url":null,"description":"classical guitarist \u303d","protected":false,"verified":false,"followers_count":420,"friends_count":533,"listed_count":0,"favourites_count":93,"statuses_count":106,"created_at":"Mon Mar 02 10:03:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643925169715720196\/ayYnUO9l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643925169715720196\/ayYnUO9l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3055786316\/1442864476","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080122659"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259413504,"id_str":"663728257259413504","text":".@outportmodern I would just hope other women who are (temporarily?) staying home with their kids, etc. aren't shamed for not \"leaning in.\"","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726245956313088,"in_reply_to_status_id_str":"663726245956313088","in_reply_to_user_id":216133665,"in_reply_to_user_id_str":"216133665","in_reply_to_screen_name":"outportmodern","user":{"id":2721515522,"id_str":"2721515522","name":"Jennifer Taylor","screen_name":"jennlmtaylor","location":"Dartmouth, Nova Scotia","url":"https:\/\/www.linkedin.com\/pub\/jennifer-taylor\/60\/691\/720","description":"LLB (@SchulichLaw), LLM (@cambridgelaw) \/ Working as a research lawyer @SM_Law \/ Tweeting about law, feminism, pop culture, & politics http:\/\/t.co\/4bA4dQK21V","protected":false,"verified":false,"followers_count":484,"friends_count":641,"listed_count":13,"favourites_count":1231,"statuses_count":3605,"created_at":"Sun Aug 10 12:37:27 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555475699113664512\/H8XjVjmi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555475699113664512\/H8XjVjmi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2721515522\/1419771563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"outportmodern","name":"Jess Dellow","id":216133665,"id_str":"216133665","indices":[1,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257276112896,"id_str":"663728257276112896","text":"\u3042\u3068\u306f\u500b\u3005\u306e\u697d\u5668\u306e\u30d0\u30e9\u30f3\u30b9","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld for iOS\u3000\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2548054530,"id_str":"2548054530","name":"\u3050\u3063\u3061\u30fc@\u9aea\u5207\u308b\u3088(\u305d\u306e\u3046\u3061)","screen_name":"t_gucci0509","location":"\u5343\u8449\u770c\u5e02\u5ddd\u5e02\u306e\u3069\u3063\u304b","url":null,"description":"\u30fd(*\uff65\u03c9\uff65)\uff89\/\u5343\u8449\u5de5\u696d\u5927\u5b662\u5e74\/NS\/\u653e\u9001\u7814\u7a76\u90e8 52\u671f\/\u6280\u8853\u8ab2\/\u4e00\u5fdc\u30ea\u30a2\u57a2\/PA(\u97f3\u97ff)\u76ee\u6307\u3057\u3066\u307e\u3059\u3088\u3063\u3068\/","protected":false,"verified":false,"followers_count":57,"friends_count":60,"listed_count":4,"favourites_count":581,"statuses_count":1161,"created_at":"Thu Jun 05 12:36:48 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"E6DC17","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632230690147274752\/zFn7KqWY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632230690147274752\/zFn7KqWY_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122666"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250947074,"id_str":"663728257250947074","text":"\u30de\u30eb\u30c1\u90e8\u5c4b\u4f5c\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2913601472,"id_str":"2913601472","name":"\u308d\u3093","screen_name":"lon54_","location":"\u305b\u3093\u3086\u3046\u6cbc\uff08\u30d6\u30e9\u30c3\u30af\u30db\u30fc\u30eb\uff09","url":"http:\/\/twpf.jp\/lon54_","description":"\u30ed\u30b9\u3055\u3093\u304c\u697d\u3057\u305d\u3046\u3067\u306a\u306b\u3088\u308a\u3067\u3059","protected":false,"verified":false,"followers_count":266,"friends_count":165,"listed_count":30,"favourites_count":10269,"statuses_count":8725,"created_at":"Sat Nov 29 10:24:12 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"70C8B0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589381957307404289\/8LaCcQWE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589381957307404289\/8LaCcQWE.png","profile_background_tile":true,"profile_link_color":"000637","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650306069143547904\/pJ_o_GUt_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650306069143547904\/pJ_o_GUt_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913601472\/1443880045","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259335680,"id_str":"663728257259335680","text":"@oO_Ruv_oO \n\n\u304b\u308f\u3044\u304b\u3063\u305f ~\n\u597d\u304d\u306a\u9854\u3060\u3063\u305f \u3063","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728133053353988,"in_reply_to_status_id_str":"663728133053353988","in_reply_to_user_id":3055157924,"in_reply_to_user_id_str":"3055157924","in_reply_to_screen_name":"oO_Ruv_oO","user":{"id":2760823530,"id_str":"2760823530","name":"\uffe1 \u7389 \u68ee \u88d5 \u592a","screen_name":"Tisk___FO","location":null,"url":null,"description":"\u4e16 \u754c \u3067 \u3044 \u3061 \u3070 \u3093","protected":false,"verified":false,"followers_count":178,"friends_count":76,"listed_count":3,"favourites_count":82,"statuses_count":4789,"created_at":"Sun Aug 24 00:05:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638949179578908672\/wG96nNvx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638949179578908672\/wG96nNvx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2760823530\/1437780203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oO_Ruv_oO","name":"\u2721 \/ m a i","id":3055157924,"id_str":"3055157924","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271857157,"id_str":"663728257271857157","text":"RT @nakanohaito: #\u4e00\u90e8\u3060\u3051\u30e2\u30ce\u30af\u30ed\u306b\u3057\u306a\u3044\u3084\u3064 https:\/\/t.co\/35RIJPQNxZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3737497519,"id_str":"3737497519","name":"\u67ca\u82b1\u60a0\u5e0c","screen_name":"to_kayuki","location":"\u2282\u4e8c\u4e8c\u4e8c\uff08\u3000\uff3e\u03c9\uff3e\uff09\u4e8c\u2283\uff8c\uff9e\uff72\uff70\uff9d\u57fa\u5730","url":"http:\/\/pixiv.me\/touhouprojectsakihime","description":"\u7d75\u3092\u63cf\u304f\u304a\u3063\u3055\u3093\u3067\u3059 \u7a7a\u6bcd\u6cbc\u306b\u6d78\u304b\u3063\u3066\u3075\u3084\u3051\u304d\u3063\u3066\u307e\u3059(\u203a\u00b4\u03c9`\u2039 )","protected":false,"verified":false,"followers_count":45,"friends_count":15,"listed_count":1,"favourites_count":140,"statuses_count":444,"created_at":"Wed Sep 30 13:58:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660826404926296064\/g9AbqW2S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660826404926296064\/g9AbqW2S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3737497519\/1446557957","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 14:48:22 +0000 2015","id":658294032045502464,"id_str":"658294032045502464","text":"#\u4e00\u90e8\u3060\u3051\u30e2\u30ce\u30af\u30ed\u306b\u3057\u306a\u3044\u3084\u3064 https:\/\/t.co\/35RIJPQNxZ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189237293,"id_str":"189237293","name":"\u4e2d\u91ce\u724c\u4eba\uff20C89(\u6c34)\u6771F-50b","screen_name":"nakanohaito","location":"\u30cd\u30aa\u30b5\u30a4\u30bf\u30de","url":"http:\/\/www.pixiv.net\/member.php?id=1071918","description":"\u95c7\u306b\u307e\u304e\u308c\u3066\u73a9\u5177\u30c7\u30b6\u30a4\u30f3\u3068\u304b\u30a4\u30e9\u30b9\u30c8\u3068\u304b\u3084\u3063\u3066\u307e\u3059\u3002\u5065\u5168\u3067\u306f\u306a\u3044\u545f\u304d\u3082\u3059\u308b\u306e\u306718\u6b73\u672a\u6e80\u306e\u30d5\u30a9\u30ed\u30fc\u306f\u3054\u3081\u3093\u3057\u3066\u306d\u3002\u8a73\u3057\u304f\u306f\u3053\u3061\u3089\u2192http:\/\/twpf.jp\/nakanohaito\u3000\u73a9\u5177\u30c7\u30b6\u30a4\u30f3\u3001\u5546\u54c1\u4f01\u753b\u7528\u30b9\u30b1\u30c3\u30c1\u3001\u30a4\u30e9\u30b9\u30c8\u7b49\u304a\u6c17\u8efd\u306b\u3054\u76f8\u8ac7\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":6668,"friends_count":1653,"listed_count":246,"favourites_count":6801,"statuses_count":166825,"created_at":"Fri Sep 10 18:53:26 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/520281254315315200\/8FB-oAug.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/520281254315315200\/8FB-oAug.jpeg","profile_background_tile":false,"profile_link_color":"46D4CF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653393011968098304\/W45_Npz4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653393011968098304\/W45_Npz4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189237293\/1415630681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":190,"favorite_count":455,"entities":{"hashtags":[{"text":"\u4e00\u90e8\u3060\u3051\u30e2\u30ce\u30af\u30ed\u306b\u3057\u306a\u3044\u3084\u3064","indices":[0,15]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658294030510387200,"id_str":"658294030510387200","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","url":"https:\/\/t.co\/35RIJPQNxZ","display_url":"pic.twitter.com\/35RIJPQNxZ","expanded_url":"http:\/\/twitter.com\/nakanohaito\/status\/658294032045502464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658294030510387200,"id_str":"658294030510387200","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","url":"https:\/\/t.co\/35RIJPQNxZ","display_url":"pic.twitter.com\/35RIJPQNxZ","expanded_url":"http:\/\/twitter.com\/nakanohaito\/status\/658294032045502464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u4e00\u90e8\u3060\u3051\u30e2\u30ce\u30af\u30ed\u306b\u3057\u306a\u3044\u3084\u3064","indices":[17,32]}],"urls":[],"user_mentions":[{"screen_name":"nakanohaito","name":"\u4e2d\u91ce\u724c\u4eba\uff20C89(\u6c34)\u6771F-50b","id":189237293,"id_str":"189237293","indices":[3,15]}],"symbols":[],"media":[{"id":658294030510387200,"id_str":"658294030510387200","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","url":"https:\/\/t.co\/35RIJPQNxZ","display_url":"pic.twitter.com\/35RIJPQNxZ","expanded_url":"http:\/\/twitter.com\/nakanohaito\/status\/658294032045502464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"}},"source_status_id":658294032045502464,"source_status_id_str":"658294032045502464","source_user_id":189237293,"source_user_id_str":"189237293"}]},"extended_entities":{"media":[{"id":658294030510387200,"id_str":"658294030510387200","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSK67tZU8AA6OYB.jpg","url":"https:\/\/t.co\/35RIJPQNxZ","display_url":"pic.twitter.com\/35RIJPQNxZ","expanded_url":"http:\/\/twitter.com\/nakanohaito\/status\/658294032045502464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"medium":{"w":600,"h":849,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1448,"resize":"fit"}},"source_status_id":658294032045502464,"source_status_id_str":"658294032045502464","source_user_id":189237293,"source_user_id_str":"189237293"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257238339586,"id_str":"663728257238339586","text":"@koma_karasuneko \u3046\u3063\u3001\u3001\u524d\u4e0a\u3052\u305f\u3084\u3064\u4ee5\u5916\u3001\u3001\u3067\u3059\u304b\u306d\u3001\u3001\u305d\u3057\u305f\u3089\u4eca\u9031\u4e2d\u306b\u3084\u3089\u305b\u3066\u3044\u305f\u3060\u304d\u307e\u3059(*\uff89\uff89)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727938043383808,"in_reply_to_status_id_str":"663727938043383808","in_reply_to_user_id":2732492934,"in_reply_to_user_id_str":"2732492934","in_reply_to_screen_name":"koma_karasuneko","user":{"id":1150241924,"id_str":"1150241924","name":"\u54b2\u591c","screen_name":"1Papapa","location":null,"url":null,"description":"\u96d1\u98df\u7cfb:\u30b3\u30b9\u59cb\u3081\u307e\u3057\u305f\u3002\u9ed2\u30d0\u30b9\u611b\u306a\u3002\u597d\u304d\u306a\u3082\u306e\u306f\u3068\u3053\u3068\u3093stk\u3057\u307e\u3059\u3088\u3001\u3046\u3093\u3002\u305f\u3060\u306e\u6687\u4eba\u66b4\u308c\u99ac\u3067\u3059\u3002\u6c17\u5206\u5c4b\u51fa\u5f35\u30e9\u30fc\u30e1\u30f3\u306e\u65c5\u306b\u30cf\u30de\u308b\u3084\u3041\u3064[\u58c1]\u0434\u30fb)\uff81\uff97\uff6f \u3001\u3001\u3001\u7279\u306b\u8a00\u3044\u305f\u3044\u3053\u3068\u306f\u306a\u3044\uff01\u3088\u308d\u3057\u304f\u3001\u304b\u306a\uff1f","protected":false,"verified":false,"followers_count":67,"friends_count":92,"listed_count":2,"favourites_count":83,"statuses_count":1323,"created_at":"Tue Feb 05 07:30:20 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/482420621951774720\/BMzAD_Ux_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/482420621951774720\/BMzAD_Ux_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1150241924\/1403853026","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"koma_karasuneko","name":"\u2020\u250f\u251b\u3053\u307e\u2517\u2513\u2020VS\u304a\u308f\u3089\u306a\u3044\u539f\u7a3f","id":2732492934,"id_str":"2732492934","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122657"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271881728,"id_str":"663728257271881728","text":"\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u304c\u898b\u3048\u308b\u305f\u3081\u306b\u306f\u305d\u308c\u306f\u4e0d\u5b8c\u5168\u306a\u3082\u306e\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u3063\u3066\u305d\u306e\u6b3a\u779e\u306b\u6e80\u3061\u305f\u5148\u9032\u6027\u3092\u3082\u3064\u672a\u6765\u4e16\u754c\u306e\u5b55\u3080\u304e\u3053\u3061\u306a\u3055\u3084\u77db\u76fe\u3084\u9055\u548c\u611f\u3092\u5fb9\u5e95\u7684\u306b\u9732\u5448\u3059\u308b\u306e\u304c\u30c6\u30af\u30ce\u3060\u3068\u3059\u308b\u3068\u672a\u6765\u4e16\u7d00\u30d6\u30e9\u30b8\u30eb\u306b\u308f\u308c\u308f\u308c\u304c\u672a\u6765\u3092\u611f\u3058\u308b\u306e\u3082\u7d0d\u5f97\u304c\u3044\u304f\u3057\u3042\u306e\u6620\u753b\u306f\u30c6\u30af\u30ce\u306a\u30dd\u30c3\u30d7\u30a2\u30fc\u30c8\u3060\u3063\u305f\u3002","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":305453916,"id_str":"305453916","name":"\u307c\u308b\u3064\u306e\u308b\u3064\u307c","screen_name":"ultra_visitor","location":"\u30c7\u30c8\u30ed\u30a4\u30c8\u97f3\u697d\u7814\u7a76\u6240","url":null,"description":"\u611b\u3068\u7406\u975e\u9053\u3002\u66f8\u3092\u6368\u3066\u3066\u6642\u901f100\u30ad\u30ed\u3067\u558b\u308a\u307e\u304f\u308d\u3046\u3002","protected":false,"verified":false,"followers_count":143,"friends_count":766,"listed_count":5,"favourites_count":270,"statuses_count":9518,"created_at":"Thu May 26 07:32:42 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/565101927864610816\/IovbTvIt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/565101927864610816\/IovbTvIt_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250955264,"id_str":"663728257250955264","text":"RT @warawarasix: \u53cb\u9054\u306b\u898b\u305b\u3066\u3082\u3089\u3063\u305f\u6700\u9ad8\u306e\u30ad\u30c1\u30ac\u30a4AV\u306f\u3084\u3063\u3071\u308a\u5973\u3092\u7e1b\u3063\u305f\u307e\u307e\u653e\u7f6e\u3057\u3066\u3072\u305f\u3059\u3089\u305d\u3070\u6253\u3064\u3084\u3064\u3060\u306a http:\/\/t.co\/oyNpcnXlWi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3537115094,"id_str":"3537115094","name":"\u3042\u304d\u3327\u3327@Yp","screen_name":"hSKyvTrYMXdGKnv","location":"\u6c7a\u95d8\u5834","url":null,"description":"\u30e9\u30a4\u30c8\u30ed\u30fc\u30c9\/\u5b9d\u7389\u7363\/\u672c\u6c17\u9b54\u8853\u5e2b","protected":false,"verified":false,"followers_count":598,"friends_count":666,"listed_count":1,"favourites_count":18,"statuses_count":700,"created_at":"Sat Sep 12 10:55:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663192535230091264\/LcPVoPDe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663192535230091264\/LcPVoPDe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3537115094\/1446952394","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jun 19 15:01:31 +0000 2015","id":611911695879921665,"id_str":"611911695879921665","text":"\u53cb\u9054\u306b\u898b\u305b\u3066\u3082\u3089\u3063\u305f\u6700\u9ad8\u306e\u30ad\u30c1\u30ac\u30a4AV\u306f\u3084\u3063\u3071\u308a\u5973\u3092\u7e1b\u3063\u305f\u307e\u307e\u653e\u7f6e\u3057\u3066\u3072\u305f\u3059\u3089\u305d\u3070\u6253\u3064\u3084\u3064\u3060\u306a http:\/\/t.co\/oyNpcnXlWi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3106855405,"id_str":"3106855405","name":"\u30ef\u30e9\u6c0f","screen_name":"warawarasix","location":null,"url":null,"description":"\u6d6a\u4eba\u30a4\u30ab\u30ec\u30dd\u30b1\u30e2\u30f3","protected":false,"verified":false,"followers_count":842,"friends_count":549,"listed_count":9,"favourites_count":4210,"statuses_count":2613,"created_at":"Tue Mar 24 12:52:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620592699360456705\/wn-_puy__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620592699360456705\/wn-_puy__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106855405\/1430144974","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28039,"favorite_count":23099,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":611911691169759233,"id_str":"611911691169759233","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","url":"http:\/\/t.co\/oyNpcnXlWi","display_url":"pic.twitter.com\/oyNpcnXlWi","expanded_url":"http:\/\/twitter.com\/warawarasix\/status\/611911695879921665\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":509,"h":259,"resize":"fit"},"large":{"w":509,"h":259,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":611911691169759233,"id_str":"611911691169759233","indices":[48,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","url":"http:\/\/t.co\/oyNpcnXlWi","display_url":"pic.twitter.com\/oyNpcnXlWi","expanded_url":"http:\/\/twitter.com\/warawarasix\/status\/611911695879921665\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":509,"h":259,"resize":"fit"},"large":{"w":509,"h":259,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"warawarasix","name":"\u30ef\u30e9\u6c0f","id":3106855405,"id_str":"3106855405","indices":[3,15]}],"symbols":[],"media":[{"id":611911691169759233,"id_str":"611911691169759233","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","url":"http:\/\/t.co\/oyNpcnXlWi","display_url":"pic.twitter.com\/oyNpcnXlWi","expanded_url":"http:\/\/twitter.com\/warawarasix\/status\/611911695879921665\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":509,"h":259,"resize":"fit"},"large":{"w":509,"h":259,"resize":"fit"}},"source_status_id":611911695879921665,"source_status_id_str":"611911695879921665","source_user_id":3106855405,"source_user_id_str":"3106855405"}]},"extended_entities":{"media":[{"id":611911691169759233,"id_str":"611911691169759233","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CH3ycOoVAAEVPLc.jpg","url":"http:\/\/t.co\/oyNpcnXlWi","display_url":"pic.twitter.com\/oyNpcnXlWi","expanded_url":"http:\/\/twitter.com\/warawarasix\/status\/611911695879921665\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":173,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":509,"h":259,"resize":"fit"},"large":{"w":509,"h":259,"resize":"fit"}},"source_status_id":611911695879921665,"source_status_id_str":"611911695879921665","source_user_id":3106855405,"source_user_id_str":"3106855405"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250934784,"id_str":"663728257250934784","text":"\u30d5\u30a1\u30a4\u30bf\u30fc\u5411\u3051\u30c7\u30fc\u30c8\u30a2\u30d7\u30ea\uff1f \u6226\u3044\u305f\u3044\u8005\u540c\u58eb\u3092\u30de\u30c3\u30c1\u30f3\u30b0\u3059\u308b\u30a2\u30d7\u30ea\u300cRumblr\u300d\u304c\u767b\u5834 - THE BRIDGE\uff08\u30b6\u2026 https:\/\/t.co\/iwqjIaj3lk","source":"\u003ca href=\"http:\/\/ilusm.link\/\" rel=\"nofollow\"\u003e\u8a71\u984c\u306e\u3064\u3076\u3084\u304d\u30cb\u30e5\u30fc\u30b9\u914d\u4fe1\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":216719770,"id_str":"216719770","name":"\u30db\u30c3\u30c8\u306a\u30cb\u30e5\u30fc\u30b9\u3092\u914d\u4fe1\u4e2d","screen_name":"hotlinks_jp","location":"\u65e5\u672c","url":null,"description":"\u30db\u30c3\u30c8\u306a\u30ad\u30fc\u30ef\u30fc\u30c9\u304b\u3089\u305f\u304f\u3055\u3093\u30ea\u30c4\u30a4\u30fc\u30c8\u3084\u304a\u6c17\u306b\u5165\u308a\u3055\u308c\u305f\u30cb\u30e5\u30fc\u30b9\u3084\u52d5\u753b\u3001WEB\u30b5\u30a4\u30c8\u3092\u63a2\u3057\u3066\u914d\u4fe1\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1444,"friends_count":1056,"listed_count":56,"favourites_count":0,"statuses_count":54697,"created_at":"Wed Nov 17 14:42:41 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633229000224075776\/VhSjzbdF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633229000224075776\/VhSjzbdF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iwqjIaj3lk","expanded_url":"http:\/\/ilusm.link\/link?id=106291","display_url":"ilusm.link\/link?id=106291","indices":[61,84]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246871552,"id_str":"663728257246871552","text":"anilyn: https:\/\/t.co\/0YCLml0beW RT BleacherReport: Steelers fan Snoop Dogg shows off customized Antonio Brown Jor\u2026 https:\/\/t.co\/OkmRiIpJL8","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1642146511,"id_str":"1642146511","name":"prod tip","screen_name":"ProdTip","location":null,"url":"http:\/\/aepiot.ro\/","description":"aePiot","protected":false,"verified":false,"followers_count":718,"friends_count":2001,"listed_count":157,"favourites_count":0,"statuses_count":264547,"created_at":"Sat Aug 03 05:28:05 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ro","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F5F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000043063294\/80b4ff61f85fd368ad399a9019efcb94.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000043063294\/80b4ff61f85fd368ad399a9019efcb94.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000233669918\/17b6dd6b0cce8533989364e93089d355_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000233669918\/17b6dd6b0cce8533989364e93089d355_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1642146511\/1375508426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727640713568256,"quoted_status_id_str":"663727640713568256","quoted_status":{"created_at":"Mon Nov 09 14:39:35 +0000 2015","id":663727640713568256,"id_str":"663727640713568256","text":"Steelers fan Snoop Dogg shows off customized Antonio Brown Jordan\u2019s after his career day https:\/\/t.co\/k2eQvNxpxT https:\/\/t.co\/qqUpBkh3Tu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":890891,"id_str":"890891","name":"Bleacher Report","screen_name":"BleacherReport","location":null,"url":"http:\/\/bleacherreport.com\/mobile","description":"#TeamStream","protected":false,"verified":true,"followers_count":1992977,"friends_count":503,"listed_count":9606,"favourites_count":47,"statuses_count":47111,"created_at":"Sat Mar 10 23:52:36 +0000 2007","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572500505171992576\/0pI8bQVE.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448139723446296576\/n1iz4mg6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/890891\/1435102663","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/k2eQvNxpxT","expanded_url":"http:\/\/ble.ac\/1QdQuVA","display_url":"ble.ac\/1QdQuVA","indices":[89,112]}],"user_mentions":[],"symbols":[],"media":[{"id":663727073194844160,"id_str":"663727073194844160","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","url":"https:\/\/t.co\/qqUpBkh3Tu","display_url":"pic.twitter.com\/qqUpBkh3Tu","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663727640713568256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727073194844160,"id_str":"663727073194844160","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIQamWoAA85ch.png","url":"https:\/\/t.co\/qqUpBkh3Tu","display_url":"pic.twitter.com\/qqUpBkh3Tu","expanded_url":"http:\/\/twitter.com\/BleacherReport\/status\/663727640713568256\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"large":{"w":852,"h":592,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/0YCLml0beW","expanded_url":"http:\/\/twitter.com\/anilyn\/status\/663728092448342016","display_url":"twitter.com\/anilyn\/status\/\u2026","indices":[8,31]},{"url":"https:\/\/t.co\/OkmRiIpJL8","expanded_url":"http:\/\/ift.tt\/1Mk7Ux7","display_url":"ift.tt\/1Mk7Ux7","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122659"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271922690,"id_str":"663728257271922690","text":"\u30fb\u30fb\u30fb\u3046\u3057\u304b\u3041\u3001\uff5e\u304c\u3001","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3498671293,"id_str":"3498671293","name":"Charlotte E. Yeager","screen_name":"Charlotte_Yeage","location":null,"url":null,"description":"\u203b\u672c\u30b5\u30a4\u30c8\u306b\u63b2\u8f09\u3055\u308c\u3044\u308b\u672c\u6587\u3001\u767b\u5834\u4eba\u7269\u306a\u3069\u306f\u3001\u4f5c\u54c1\u672c\u7de8\u306e\u5185\u5bb9\u3068\u306f\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093\u3002((Strike Witches \u00a92014 Fumikane Shimada \/ Kadokawa \/ The 501st unification battle air wing )","protected":false,"verified":false,"followers_count":0,"friends_count":35,"listed_count":0,"favourites_count":2,"statuses_count":3737,"created_at":"Wed Sep 09 00:39:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641412084509507585\/H7lzWko3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641412084509507585\/H7lzWko3.jpg","profile_background_tile":true,"profile_link_color":"66773C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663227938880417792\/gz6ErfFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663227938880417792\/gz6ErfFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3498671293\/1446960814","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259335682,"id_str":"663728257259335682","text":"\u523a\u6fc0\u304c\u307b\u3057\u304f\u306a\u3063\u305f\u308a\u3059\u308b\u3068\u304d\u3082\u3000\u305d\u3053\u306b\u3044\u304f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3056330034,"id_str":"3056330034","name":"anomi","screen_name":"norari_cocoa4","location":"\u5984\u60f3\u4e16\u754c","url":"http:\/\/anokinomi.tumblr.com\/","description":"\u30a2\u30e0\u30ea\u30bf .\uff9f*\uff65\u2654photography \u6b4c\u3046\u305f\u3044\u261e \u5f92\u7136\u306a\u308b\u307e\u307e\u306b","protected":false,"verified":false,"followers_count":27,"friends_count":73,"listed_count":1,"favourites_count":1630,"statuses_count":4713,"created_at":"Mon Mar 02 14:19:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624931798347157504\/-EJGi5Px_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624931798347157504\/-EJGi5Px_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3056330034\/1444403907","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250930688,"id_str":"663728257250930688","text":"RT @twi_tenkomori: \u3042\u30fc\u3001\u308f\u304b\u308b\u308f\u3002\u30af\u30e9\u30b9\u306b\u5fc5\u305a\u3044\u308b\u3088\u306d\u30011\u4eba\u6d6e\u3044\u3066\u308b\u3084\u3064\u3002 https:\/\/t.co\/RbaYk4x6iU","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068377062,"id_str":"3068377062","name":"\u30df\u30e4\u30de","screen_name":"7MDQhRMA3TckvSi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":575,"listed_count":0,"favourites_count":4,"statuses_count":107,"created_at":"Sun Mar 08 15:40:27 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659009837372567552\/jW6d0LKF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659009837372567552\/jW6d0LKF_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:13 +0000 2015","id":663723270395400192,"id_str":"663723270395400192","text":"\u3042\u30fc\u3001\u308f\u304b\u308b\u308f\u3002\u30af\u30e9\u30b9\u306b\u5fc5\u305a\u3044\u308b\u3088\u306d\u30011\u4eba\u6d6e\u3044\u3066\u308b\u3084\u3064\u3002 https:\/\/t.co\/RbaYk4x6iU","source":"\u003ca href=\"http:\/\/sites.google.com\/site\/yorufukurou\/\" rel=\"nofollow\"\u003eYoruFukurou\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1131385736,"id_str":"1131385736","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","screen_name":"twi_tenkomori","location":"summaryman1989@gmail.com","url":null,"description":"\u51cd\u7d50\u7528\u907f\u96e3\u30a2\u30ab @twi_tenkomor1 LINE\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u304c\u3067\u304d\u307e\u3057\u305f\uff01\u7686\u3055\u3093\u3001LINE\u3082\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01 http:\/\/line.me\/ti\/p\/%40jem3434e","protected":false,"verified":false,"followers_count":281990,"friends_count":5,"listed_count":2056,"favourites_count":2,"statuses_count":20792,"created_at":"Tue Jan 29 15:43:31 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652833602196008960\/lUtDCCwE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":765,"favorite_count":885,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"extended_entities":{"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368860672,"id_str":"663628149368860672","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1024,"resize":"fit"},"medium":{"w":600,"h":870,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":493,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368815616,"id_str":"663628149368815616","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368885248,"id_str":"663628149368885248","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twi_tenkomori","name":"\u30c4\u30a4\u30c3\u30bf\u30fc\u901f\u5831","id":1131385736,"id_str":"1131385736","indices":[3,17]}],"symbols":[],"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"extended_entities":{"media":[{"id":663628149310132224,"id_str":"663628149310132224","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSaUkAAsZHv.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368860672,"id_str":"663628149368860672","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUsAAcw0e.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"large":{"w":706,"h":1024,"resize":"fit"},"medium":{"w":600,"h":870,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":493,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368815616,"id_str":"663628149368815616","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoUAAAZYiU.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"},{"id":663628149368885248,"id_str":"663628149368885248","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWuSSoVEAAmI2b.jpg","url":"https:\/\/t.co\/RbaYk4x6iU","display_url":"pic.twitter.com\/RbaYk4x6iU","expanded_url":"http:\/\/twitter.com\/tokiya_sin\/status\/663628156687912960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663628156687912960,"source_status_id_str":"663628156687912960","source_user_id":865761852,"source_user_id_str":"865761852"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259323392,"id_str":"663728257259323392","text":"\u6b64\u306e \u7cde\u4e0d\u5b89\u5b9a\u306a \u6642\u306b \u5f7c\u5974\u306e \u30c4\u30a4\u30fc\u30c8 \u898b\u305f\u3089 \u4f59\u8a08 \u4e0d\u5b89\u5b9a\u306b \u306a\u308b\u3060\u308d \u3001 \u304a\u3044 ( )\n\u4f55\u306a\u3093\u3060\u308d \u6094\u3057\u3044\u3093\u3060\u306d \u304d\u3063\u3068 \u3002 \u79c1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3516084254,"id_str":"3516084254","name":"\u3008 \u3008 Daik!","screen_name":"daikiiii_ss","location":" ","url":null,"description":"\u56fa\u5b9a \u3060\u3044\u3061\u3083\u3093 . \u3057\u3052\u304a . \u3060\u3044\u304d\u304d . \u307f\u3044","protected":false,"verified":false,"followers_count":30,"friends_count":30,"listed_count":3,"favourites_count":400,"statuses_count":2123,"created_at":"Thu Sep 10 13:58:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655377513619697664\/HS2or2b1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655377513619697664\/HS2or2b1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3516084254\/1444802525","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271906305,"id_str":"663728257271906305","text":"RT @T_ab3live: \u062a\u0630\u0643\u064a\u0631 \u0628\u0631\u0627\u0628\u0637 \u0627\u0644\u0628\u062b \u0627\u0644\u0645\u0628\u0627\u0634\u0631 ..\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u064a\u0648\u062a\u064a\u0648\u0628\nhttps:\/\/t.co\/r9Jpvx0q2s\n\n0 - 0 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646\n\n#\u0631\u064a\u062a\u0648\u064a\u062a .. \u0627\u0631\u062c\u0648 \u0627\u0644\u062f\u0639\u0645","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1500277573,"id_str":"1500277573","name":"\u0641\u062f\u064a\u062a\u0640\u0643 \u2665\u30c4","screen_name":"Fdit2k","location":"Riyadh","url":null,"description":null,"protected":false,"verified":false,"followers_count":143,"friends_count":156,"listed_count":1,"favourites_count":259,"statuses_count":4487,"created_at":"Tue Jun 11 04:09:54 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645758398324076544\/HU7-mqOb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645758398324076544\/HU7-mqOb_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728197972791296,"id_str":"663728197972791296","text":"\u062a\u0630\u0643\u064a\u0631 \u0628\u0631\u0627\u0628\u0637 \u0627\u0644\u0628\u062b \u0627\u0644\u0645\u0628\u0627\u0634\u0631 ..\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u064a\u0648\u062a\u064a\u0648\u0628\nhttps:\/\/t.co\/r9Jpvx0q2s\n\n0 - 0 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646\n\n#\u0631\u064a\u062a\u0648\u064a\u062a .. \u0627\u0631\u062c\u0648 \u0627\u0644\u062f\u0639\u0645","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":770968388,"id_str":"770968388","name":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641","screen_name":"T_ab3live","location":null,"url":"http:\/\/www.tabi3live.com\/","description":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641 \u062a\u0627\u0628\u0639 \u0645\u0639\u0646\u0627 \u0643\u0644 \u0645\u0627 \u064a\u064f\u0639\u0631\u0636 \u0633\u064a\u0627\u0633\u064a\u0627\u064b \u0631\u064a\u0627\u0636\u064a\u0627\u064b \u0641\u0646\u064a\u0627\u064b .. \u0645\u0639\u0646\u0627 \u0641\u0642\u0637 \u0643\u0644 \u0645\u064f\u0630\u0647\u0644 \u0648\u0643\u0644 \u062c\u062f\u064a\u062f \u0642\u0628\u0644 \u0627\u0644\u0639\u0631\u0636 ..","protected":false,"verified":false,"followers_count":1898,"friends_count":24,"listed_count":8,"favourites_count":2,"statuses_count":810,"created_at":"Tue Aug 21 06:37:50 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656006458786516992\/n5Wtygni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656006458786516992\/n5Wtygni_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[29,45]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a","indices":[94,101]}],"urls":[{"url":"https:\/\/t.co\/r9Jpvx0q2s","expanded_url":"http:\/\/goo.gl\/K7cLBA","display_url":"goo.gl\/K7cLBA","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[44,60]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a","indices":[109,116]}],"urls":[{"url":"https:\/\/t.co\/r9Jpvx0q2s","expanded_url":"http:\/\/goo.gl\/K7cLBA","display_url":"goo.gl\/K7cLBA","indices":[68,91]}],"user_mentions":[{"screen_name":"T_ab3live","name":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641","id":770968388,"id_str":"770968388","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257267732485,"id_str":"663728257267732485","text":"RT @T_ab3live: \u062a\u0630\u0643\u064a\u0631 \u0628\u0631\u0627\u0628\u0637 \u0627\u0644\u0628\u062b \u0627\u0644\u0645\u0628\u0627\u0634\u0631 ..\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u064a\u0648\u062a\u064a\u0648\u0628\nhttps:\/\/t.co\/r9Jpvx0q2s\n\n0 - 0 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646\n\n#\u0631\u064a\u062a\u0648\u064a\u062a .. \u0627\u0631\u062c\u0648 \u0627\u0644\u062f\u0639\u0645","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1495445286,"id_str":"1495445286","name":"D L O 3 A","screen_name":"Dlo3ah_XD","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":159,"friends_count":36,"listed_count":1,"favourites_count":18,"statuses_count":3095,"created_at":"Sun Jun 09 12:25:45 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645778645055750144\/_-2UZCET_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645778645055750144\/_-2UZCET_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:48 +0000 2015","id":663728197972791296,"id_str":"663728197972791296","text":"\u062a\u0630\u0643\u064a\u0631 \u0628\u0631\u0627\u0628\u0637 \u0627\u0644\u0628\u062b \u0627\u0644\u0645\u0628\u0627\u0634\u0631 ..\n\n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\u064a\u0648\u062a\u064a\u0648\u0628\nhttps:\/\/t.co\/r9Jpvx0q2s\n\n0 - 0 \u062d\u062a\u0649 \u0627\u0644\u0627\u0646\n\n#\u0631\u064a\u062a\u0648\u064a\u062a .. \u0627\u0631\u062c\u0648 \u0627\u0644\u062f\u0639\u0645","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":770968388,"id_str":"770968388","name":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641","screen_name":"T_ab3live","location":null,"url":"http:\/\/www.tabi3live.com\/","description":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641 \u062a\u0627\u0628\u0639 \u0645\u0639\u0646\u0627 \u0643\u0644 \u0645\u0627 \u064a\u064f\u0639\u0631\u0636 \u0633\u064a\u0627\u0633\u064a\u0627\u064b \u0631\u064a\u0627\u0636\u064a\u0627\u064b \u0641\u0646\u064a\u0627\u064b .. \u0645\u0639\u0646\u0627 \u0641\u0642\u0637 \u0643\u0644 \u0645\u064f\u0630\u0647\u0644 \u0648\u0643\u0644 \u062c\u062f\u064a\u062f \u0642\u0628\u0644 \u0627\u0644\u0639\u0631\u0636 ..","protected":false,"verified":false,"followers_count":1898,"friends_count":24,"listed_count":8,"favourites_count":2,"statuses_count":810,"created_at":"Tue Aug 21 06:37:50 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656006458786516992\/n5Wtygni_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656006458786516992\/n5Wtygni_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[29,45]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a","indices":[94,101]}],"urls":[{"url":"https:\/\/t.co\/r9Jpvx0q2s","expanded_url":"http:\/\/goo.gl\/K7cLBA","display_url":"goo.gl\/K7cLBA","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[44,60]},{"text":"\u0631\u064a\u062a\u0648\u064a\u062a","indices":[109,116]}],"urls":[{"url":"https:\/\/t.co\/r9Jpvx0q2s","expanded_url":"http:\/\/goo.gl\/K7cLBA","display_url":"goo.gl\/K7cLBA","indices":[68,91]}],"user_mentions":[{"screen_name":"T_ab3live","name":"\u062a\u0627\u0628\u0639 \u0644\u0627\u064a\u0641","id":770968388,"id_str":"770968388","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080122664"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257251061760,"id_str":"663728257251061760","text":"Yes... https:\/\/t.co\/wetVGbVGSH","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":224109580,"id_str":"224109580","name":"RobinJohnsonVirgilio","screen_name":"AgingTrophyWife","location":"Upwind of the Windy City","url":null,"description":"I don't plan to grow old gracefully. I plan to have face-lifts until my ears meet -- Rita Rudner","protected":false,"verified":false,"followers_count":33,"friends_count":194,"listed_count":1,"favourites_count":18,"statuses_count":4989,"created_at":"Wed Dec 08 04:47:23 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620620176346583042\/Jt9IRtRQ.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620620176346583042\/Jt9IRtRQ.jpg","profile_background_tile":true,"profile_link_color":"52555C","profile_sidebar_border_color":"000515","profile_sidebar_fill_color":"061127","profile_text_color":"827972","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1678222101\/racing_wife_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1678222101\/racing_wife_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/224109580\/1436801820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wetVGbVGSH","expanded_url":"http:\/\/fb.me\/2RxOnjLhv","display_url":"fb.me\/2RxOnjLhv","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257255239680,"id_str":"663728257255239680","text":"Una scelta coraggiosa https:\/\/t.co\/Aha3QO406j","source":"\u003ca href=\"http:\/\/it.altervista.org\/\" rel=\"nofollow\"\u003eAlterVista Connect\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":877285147,"id_str":"877285147","name":"FLOxC","screen_name":"FLOxC1","location":"http:\/\/www.loxc.it","url":"http:\/\/www.telodogratis.it","description":"Consulente Informatico, specializzato nei prodotti Turistici e Web, Realizzazione di Software adatti ai Tour Operator e non solo.\r\n http:\/\/rubberface.loxc.it","protected":false,"verified":false,"followers_count":405,"friends_count":1046,"listed_count":35,"favourites_count":0,"statuses_count":159648,"created_at":"Sat Oct 13 07:40:17 +0000 2012","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/730023112\/5e0875d8c2e6a4daacee276c95c921ad.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/730023112\/5e0875d8c2e6a4daacee276c95c921ad.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2711649653\/f84a4a14d0b04c4efe6b8a88ec1ead47_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2711649653\/f84a4a14d0b04c4efe6b8a88ec1ead47_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/877285147\/1354725617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Aha3QO406j","expanded_url":"http:\/\/flcweb.altervista.org\/2015\/11\/09\/una-scelta-coraggiosa\/","display_url":"flcweb.altervista.org\/2015\/11\/09\/una\u2026","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080122661"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250947073,"id_str":"663728257250947073","text":"tanin118\u3055\u3093\u306e\u8133\u5185\u306f\u300c\u9003\u300d15%\u300c\u5e0c\u300d10%\u300c\u52c7\u300d20%\u300c\u604b\u300d10%\u300c\u5ec3\u300d10%\u300c\u58ca\u300d15%\u300c\u6697\u300d15%\u300c\u5e30\u300d5% \u30dd\u30a4\u30f3\u30c8:7610pt \u30e9\u30f3\u30ad\u30f3\u30b0:433\u4f4d https:\/\/t.co\/oadbwrK9VL #twimaker","source":"\u003ca href=\"http:\/\/twimaker.com\/\" rel=\"nofollow\"\u003etwimaker\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1731809912,"id_str":"1731809912","name":"\u30a6\u30b8\u30bf\u30cb\u30f3@Tanin\u3000\u52d5\u753b\u6295\u7a3f","screen_name":"tanin118","location":null,"url":"http:\/\/twpf.jp\/tanin118","description":"\u3069\u3046\u3082\u30a6\u30b8\u30bf\u30cb\u30f3\u3067\u3059\u3002\u30b9\u30de\u30d6\u30e9\u306f\u30ea\u30c8\u30eb\u30de\u30c3\u30af\u3067\u30a8\u30f3\u30b8\u30e7\u30a4\u52e2\u8e74\u6563\u3089\u3057\u3066\u307e\u3059\u3002\u904a\u622f\u738b\u306f\u6700\u8fd1\u6d3b\u767a\u306b\u6c7a\u95d8\u3057\u3066\u308b\u3067\u3054\u3056\u308b\u3002YouTube\u30c1\u30e3\u30f3\u30cd\u30eb\u2192https:\/\/www.youtube.com\/channel\/UCL9_EhvH589bXXEo0xOKiWQ","protected":false,"verified":false,"followers_count":3112,"friends_count":3047,"listed_count":18,"favourites_count":3112,"statuses_count":35496,"created_at":"Thu Sep 05 12:31:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648822366043160581\/ja0b-WNt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648822366043160581\/ja0b-WNt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1731809912\/1444485256","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"twimaker","indices":[109,118]}],"urls":[{"url":"https:\/\/t.co\/oadbwrK9VL","expanded_url":"http:\/\/twimaker.com\/?ref=tanin118","display_url":"twimaker.com\/?ref=tanin118","indices":[85,108]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257255145472,"id_str":"663728257255145472","text":"@shi_ho_0921 \u308f\u3057\u30bb\u30f3\u30e9\u30fc\u3060\u3088\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727333430292480,"in_reply_to_status_id_str":"663727333430292480","in_reply_to_user_id":1053651650,"in_reply_to_user_id_str":"1053651650","in_reply_to_screen_name":"shi_ho_0921","user":{"id":2542980625,"id_str":"2542980625","name":"\u308c\u3044\u306a (\u8336)","screen_name":"skatznnfnn","location":"\u4eee\u96e2\u5cf6","url":"http:\/\/twpf.jp\/skatznnfnn","description":"\u3080\u3059\u3081\u3093\u3002\u2192\u8336(\u91ce\u30b2\u30eb)\u63a8\u3057 \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u4e00\u8a00\u304a\u9858\u3044\u3057\u307e\u3059\u3002\u5984\u60f3\u7656\u6709","protected":false,"verified":false,"followers_count":223,"friends_count":248,"listed_count":16,"favourites_count":3024,"statuses_count":13844,"created_at":"Tue Jun 03 07:12:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663619363891625984\/k-KoV3B8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663619363891625984\/k-KoV3B8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542980625\/1443229919","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shi_ho_0921","name":"\u305d\u308b\u677e\u3002@KVA\u796d\u304b\u3082\u2026\uff1f","id":1053651650,"id_str":"1053651650","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122661"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271922689,"id_str":"663728257271922689","text":"RT @soborou01: \u8a00\u3048\u306a\u304b\u3063\u305f https:\/\/t.co\/XqeTyjPZt4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948038952,"id_str":"2948038952","name":"\u57ce \u4f51\u6597(WK)","screen_name":"wsky3113","location":null,"url":null,"description":"\u6ecb\u8cc0\u770c \u8056\u6cc9\u5927\u5b66\u4eba\u9593\u5b66\u90e8 \n \u30a2\u30cb\u30e1\u3001\u30de\u30f3\u30ac\u3001\u30b2\u30fc\u30e0\u3001\u30cb\u30b3\u52d5\u3001Twitter\u3001 \u30bf\u30c3\u30c8\u3001\u30d6\u30ec\u30a4\u30af\u30c0\u30f3\u30b9\u3001\u30af\u30ec\u30fc\u30f3\u30b2\u30fc\u30e0\u3001 FreestyleFootball\u3001\u30d5\u30a3\u30ae\u30e5\u30a2\u3001\u30b0\u30c3\u30ba \n\u30a2\u30cb\u30e1\u306e\u5b9f\u6cc1\u30c4\u30a4\u30fc\u30c8\u3088\u304f\u3057\u307e\u3059m(._.)m","protected":false,"verified":false,"followers_count":142,"friends_count":510,"listed_count":1,"favourites_count":10071,"statuses_count":9590,"created_at":"Mon Dec 29 01:52:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/562547791084257280\/ydbvmyij_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/562547791084257280\/ydbvmyij_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948038952\/1422894803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:22:13 +0000 2015","id":663693071687639040,"id_str":"663693071687639040","text":"\u8a00\u3048\u306a\u304b\u3063\u305f https:\/\/t.co\/XqeTyjPZt4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2763909930,"id_str":"2763909930","name":"\u8607\u52df\u30ed\u30a6@2\u65e5\u76ee\u6771A-04a","screen_name":"soborou01","location":null,"url":"http:\/\/pixiv.me\/soborou","description":"\u7d75\u306e\u4ed5\u4e8b\u3092\u3057\u3066\u307e\u3059\u304c\u57fa\u672c\u7684\u306b\u306f\u30a2\u30cb\u30e1\u89b3\u3066\u6620\u753b\u89b3\u3066\u30b2\u30fc\u30e0\u3084\u3063\u3066\u308b\u3088\u3046\u306a\u751f\u6d3b\u3057\u3066\u307e\u3059\u3002 R18\u5c02\u7528\u2192(@soboroura)","protected":false,"verified":false,"followers_count":55769,"friends_count":186,"listed_count":1309,"favourites_count":170,"statuses_count":4806,"created_at":"Sun Aug 24 20:50:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610826899074355200\/mIybLwix_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610826899074355200\/mIybLwix_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2763909930\/1431840743","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3346,"favorite_count":5012,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663693059046006784,"id_str":"663693059046006784","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","url":"https:\/\/t.co\/XqeTyjPZt4","display_url":"pic.twitter.com\/XqeTyjPZt4","expanded_url":"http:\/\/twitter.com\/soborou01\/status\/663693071687639040\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663693059046006784,"id_str":"663693059046006784","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","url":"https:\/\/t.co\/XqeTyjPZt4","display_url":"pic.twitter.com\/XqeTyjPZt4","expanded_url":"http:\/\/twitter.com\/soborou01\/status\/663693071687639040\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"soborou01","name":"\u8607\u52df\u30ed\u30a6@2\u65e5\u76ee\u6771A-04a","id":2763909930,"id_str":"2763909930","indices":[3,13]}],"symbols":[],"media":[{"id":663693059046006784,"id_str":"663693059046006784","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","url":"https:\/\/t.co\/XqeTyjPZt4","display_url":"pic.twitter.com\/XqeTyjPZt4","expanded_url":"http:\/\/twitter.com\/soborou01\/status\/663693071687639040\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":663693071687639040,"source_status_id_str":"663693071687639040","source_user_id":2763909930,"source_user_id_str":"2763909930"}]},"extended_entities":{"media":[{"id":663693059046006784,"id_str":"663693059046006784","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXpUiBUYAAQRu4.jpg","url":"https:\/\/t.co\/XqeTyjPZt4","display_url":"pic.twitter.com\/XqeTyjPZt4","expanded_url":"http:\/\/twitter.com\/soborou01\/status\/663693071687639040\/photo\/1","type":"photo","sizes":{"large":{"w":724,"h":1024,"resize":"fit"},"small":{"w":340,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":848,"resize":"fit"}},"source_status_id":663693071687639040,"source_status_id_str":"663693071687639040","source_user_id":2763909930,"source_user_id_str":"2763909930"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257263538176,"id_str":"663728257263538176","text":"@mm_muddler0726 \n\u4eca\u5ea6\u6765\u308b\u30a2\u30eb\u30d0\u30e0\u306e\u5199\u771f\n\u3051\u3093\u305f\u3055\u3093\u306e\u96c6\u3081\u3066\u308b\u306e\u51fa\u305f\u3089\u63d0\u4f9b\u3057\u307e\u3059\u306d(^^)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726002518913024,"in_reply_to_status_id_str":"663726002518913024","in_reply_to_user_id":2401874666,"in_reply_to_user_id_str":"2401874666","in_reply_to_screen_name":"mm_muddler0726","user":{"id":934607444,"id_str":"934607444","name":"\u201c9\u671f\u306e\u4eba\u201d\u304a\u8179\u3059\u3044\u592a","screen_name":"hungry1399","location":"\u4f53\u8abf\u30e4\u30f3\u30ad\u30fc\u514b\u670d\u308f\u305a","url":"http:\/\/twpf.jp\/hungry1399","description":"\u6a2a\u6d5cF\u30fb\u30de\u30ea\u30ce\u30b9\u306848&46\u30f2\u30bf\u3067\u3059\u3002 \u5199\u771f\u5e0c\u671b \u2606\u7af9\u5185\u7f8e\u5ba5\u2606 \u4ed69\u671f\u30e1\u30f3 \u5c0f\u8c37\u91cc\u6b69\u3001\u7be0\u539f\u681e\u90a3\u3001\u751f\u99d2\u91cc\u5948\u3001\u885b\u85e4\u7f8e\u5f69\u3001\u6728\u4e0b\u6709\u5e0c\u5b50\u3001\u7530\u91ce\u512a\u82b1\u3001\u9808\u85e4\u51dc\u3005\u82b1\u3001\u5152\u7389\u9065\u3001\u5317\u91ce\u65e5\u5948\u5b50 \n\n\u5199\u771f\u6574\u7406\u7528\u30d6\u30ed\u30b0\u306f\u3053\u3061\u3089\u2192\nhttp:\/\/s.ameblo.jp\/yokohama-0826\/","protected":false,"verified":false,"followers_count":187,"friends_count":197,"listed_count":7,"favourites_count":359,"statuses_count":9184,"created_at":"Thu Nov 08 14:16:29 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727647738867712\/CGMZ9p-T_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727647738867712\/CGMZ9p-T_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/934607444\/1443976140","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mm_muddler0726","name":"\u3051\u3093\u305f","id":2401874666,"id_str":"2401874666","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122663"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257263534080,"id_str":"663728257263534080","text":"FB 2 Web, a new way to create your website from your Facebook Page. Just Give Your Facebook Page https:\/\/t.co\/LhBcqzxgdT #DilwaleTrailerDay","source":"\u003ca href=\"http:\/\/www.stuffwrap.com\" rel=\"nofollow\"\u003estuffwrapOfficial\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":731950441,"id_str":"731950441","name":"Stuffwrap","screen_name":"stuffwrap","location":"Karachi Pakistan","url":"http:\/\/www.stuffwrap.com","description":"A #social #networking platform which helps people to #utilize their #unwanted stuff but #RELIABLY.\n We are on FB - http:\/\/www.fb.com\/stuffwrap","protected":false,"verified":false,"followers_count":113,"friends_count":54,"listed_count":17,"favourites_count":2,"statuses_count":22981,"created_at":"Thu Aug 02 02:15:54 +0000 2012","utc_offset":18000,"time_zone":"Islamabad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"201E1E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/452704862573060096\/Q3FfdEKx.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/452704862573060096\/Q3FfdEKx.png","profile_background_tile":false,"profile_link_color":"201E1E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2457542596\/jrwsvcxwb7h04xb0jij6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2457542596\/jrwsvcxwb7h04xb0jij6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/731950441\/1409016551","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DilwaleTrailerDay","indices":[121,139]}],"urls":[{"url":"https:\/\/t.co\/LhBcqzxgdT","expanded_url":"http:\/\/fbtowebsite.com","display_url":"fbtowebsite.com","indices":[97,120]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122663"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257242558464,"id_str":"663728257242558464","text":"RT @tossy_XD: \u30de\u30ea\u30aa\u30ab\u30fc\u30c8\u306f\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u30fc\u3092\u3057\u3063\u304b\u308a\u5145\u96fb\u3057\u3066\u304b\u3089\u904a\u3073\u307e\u3057\u3087\u3046 https:\/\/t.co\/4DtAAAq5CR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":279949117,"id_str":"279949117","name":"\u30c8\u30e9\u30bf\u30de","screen_name":"toratama1214","location":null,"url":"http:\/\/com.nicovideo.jp\/community\/co2481565","description":"\u793e\u755c\uff12\u5e74\u76ee\u3002\u683c\u30b2\u30fc\u30de\u30fc\u3002\u30cb\u30b3\u751f\u3067\u683c\u30b2\u30fc\u30e1\u30a4\u30f3\u306b\u914d\u4fe1\u3057\u3066\u307e\u3059\u3002\n\u6700\u8fd1\u3084\u3063\u3066\u308b\u30b2\u30fc\u30e0\n\u30cb\u30c8\u30d6\u30e9\uff08\u30a4\u30b0\u30cb\u30b9\uff09\u3001COJ\u3001\u604b\u59eb(\u95a2\u7fbd)\u3001GGXrd(\u30e9\u30e0\u30ec\u30b6\u30eb)\u3001UNI(\u30ea\u30f3\u30cd)\u3001P4U2(\u5f71\u7f8e\u9db4)\u3001BBCP(\u30b3\u30b3\u30ce\u30a8)\u3001\u96fb\u6483FC(\u30b7\u30e3\u30ca)\u3002 PS3ID:toratama1214","protected":false,"verified":false,"followers_count":513,"friends_count":628,"listed_count":19,"favourites_count":5904,"statuses_count":28039,"created_at":"Sun Apr 10 10:04:27 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/449017308178960384\/QpyJq_Kb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/449017308178960384\/QpyJq_Kb_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:59:25 +0000 2015","id":663702433189621760,"id_str":"663702433189621760","text":"\u30de\u30ea\u30aa\u30ab\u30fc\u30c8\u306f\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u30fc\u3092\u3057\u3063\u304b\u308a\u5145\u96fb\u3057\u3066\u304b\u3089\u904a\u3073\u307e\u3057\u3087\u3046 https:\/\/t.co\/4DtAAAq5CR","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":593628908,"id_str":"593628908","name":"tossy","screen_name":"tossy_XD","location":null,"url":"http:\/\/japan-mk.blog.jp\/","description":"\u3068\u3057\u304a\u30b6\u30a6\u30eb\u30b9 \/ Al's MG WiF TG D-p. \/ \u6deb\u5922\u8981\u7d20\u306f\u3042\u308a\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":1436,"friends_count":575,"listed_count":37,"favourites_count":49235,"statuses_count":125373,"created_at":"Tue May 29 11:43:43 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600741735644270593\/jS64D2jP.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600741735644270593\/jS64D2jP.jpg","profile_background_tile":true,"profile_link_color":"FF8400","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660330184269168640\/ZQ0eb-Q7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660330184269168640\/ZQ0eb-Q7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/593628908\/1443990639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":91,"favorite_count":72,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663702265681678340,"id_str":"663702265681678340","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","url":"https:\/\/t.co\/4DtAAAq5CR","display_url":"pic.twitter.com\/4DtAAAq5CR","expanded_url":"http:\/\/twitter.com\/tossy_XD\/status\/663702433189621760\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702265681678340,"id_str":"663702265681678340","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","url":"https:\/\/t.co\/4DtAAAq5CR","display_url":"pic.twitter.com\/4DtAAAq5CR","expanded_url":"http:\/\/twitter.com\/tossy_XD\/status\/663702433189621760\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":25975,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/pl\/QoUWvKWVdFSnKl_s.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/1280x720\/Po0yOlTVO3vGaCcH.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/640x360\/Wq6vxACTS3nH3KYK.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/320x180\/v9bhbdof_PiSe3jb.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/pl\/QoUWvKWVdFSnKl_s.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/640x360\/Wq6vxACTS3nH3KYK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tossy_XD","name":"tossy","id":593628908,"id_str":"593628908","indices":[3,12]}],"symbols":[],"media":[{"id":663702265681678340,"id_str":"663702265681678340","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","url":"https:\/\/t.co\/4DtAAAq5CR","display_url":"pic.twitter.com\/4DtAAAq5CR","expanded_url":"http:\/\/twitter.com\/tossy_XD\/status\/663702433189621760\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663702433189621760,"source_status_id_str":"663702433189621760","source_user_id":593628908,"source_user_id_str":"593628908"}]},"extended_entities":{"media":[{"id":663702265681678340,"id_str":"663702265681678340","indices":[46,69],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663702265681678340\/pu\/img\/Xc1WqccpXuy0X1n1.jpg","url":"https:\/\/t.co\/4DtAAAq5CR","display_url":"pic.twitter.com\/4DtAAAq5CR","expanded_url":"http:\/\/twitter.com\/tossy_XD\/status\/663702433189621760\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663702433189621760,"source_status_id_str":"663702433189621760","source_user_id":593628908,"source_user_id_str":"593628908","video_info":{"aspect_ratio":[16,9],"duration_millis":25975,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/pl\/QoUWvKWVdFSnKl_s.m3u8"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/1280x720\/Po0yOlTVO3vGaCcH.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/640x360\/Wq6vxACTS3nH3KYK.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/320x180\/v9bhbdof_PiSe3jb.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/pl\/QoUWvKWVdFSnKl_s.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663702265681678340\/pu\/vid\/640x360\/Wq6vxACTS3nH3KYK.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122658"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246736387,"id_str":"663728257246736387","text":"\u30d6\u30e9\u30c3\u30c9\u30dc\u30fc\u30f3\u653b\u7565Wiki[GWEERL]\nhttps:\/\/t.co\/P0ubTRg6bU","source":"\u003ca href=\"http:\/\/autotweety.net\" rel=\"nofollow\"\u003eautotweety.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2894809542,"id_str":"2894809542","name":"Game Vision","screen_name":"affair_4659","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":921,"friends_count":904,"listed_count":0,"favourites_count":173,"statuses_count":5552,"created_at":"Sun Nov 09 15:02:20 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/P0ubTRg6bU","expanded_url":"http:\/\/www.gweerl.com\/bloodborne\/","display_url":"gweerl.com\/bloodborne\/","indices":[22,45]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122659"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257238339584,"id_str":"663728257238339584","text":"@sznaomiwa349041 \u5927\u4e08\u592b\u3060\uff01\uff01\uff01\uff01\ud83d\ude0a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727621834846212,"in_reply_to_status_id_str":"663727621834846212","in_reply_to_user_id":2697483806,"in_reply_to_user_id_str":"2697483806","in_reply_to_screen_name":"sznaomiwa349041","user":{"id":2902674162,"id_str":"2902674162","name":"\u304b \u305a \u307e \u30de \u30b9 \u30af \u5927 \u597d \u304d","screen_name":"R0422S","location":"\u6771\u4eac\u306b\u4f4f\u307f\u305f\u3044\u3001\u3042\u3044\u3061\u3051\u3093","url":null,"description":"\u4e2d4\uff01\u30b9\u30bf\u30c0\u2606\u2605\u79c1\u7acb\u6075\u6bd4\u5bff\u4e2d\u5b66\u2729\u3041\u3043\u3041\u3043\u3001\u7f8e\u601c\u3061\u3083\u3093\u3001\u3072\u306a\u305f\u3001\u3084\u3063\u3055\u3093\u63a8\u3057\uff01\u2729\/ \u3082\u3082\u3044\u308d\u30af\u30ed\u30fc\u30d0\u30fcZ \u590f\u83dc\u5b50\u63a8\u3057\uff01\u30e2\u30ce\u30ce\u30d5\u3055\u3093\u3001\u30d5\u30a1\u30df\u30ea\u30fc\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\uff01\u30de\u30b9\u30af\u306f\u5fc5\u9700\u54c1\u3067\u3059\uff01\u7b11","protected":false,"verified":false,"followers_count":97,"friends_count":146,"listed_count":0,"favourites_count":4681,"statuses_count":2064,"created_at":"Mon Nov 17 12:17:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653439504947113989\/L-oDTk71_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653439504947113989\/L-oDTk71_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2902674162\/1446466258","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sznaomiwa349041","name":"\u306a\u304a\u304d","id":2697483806,"id_str":"2697483806","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122657"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257263468544,"id_str":"663728257263468544","text":"\u6700\u8fd1\u307e\u3058\u3001\u9854\u306b\u5143\u6c17\u304c\u7121\u3044w\n\u5316\u7ca7\u3059\u308b\u306e\u304c\u3064\u307e\u3089\u306a\u3044\u3002\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3162805772,"id_str":"3162805772","name":"\u3042\u30fc\u3084","screen_name":"ayachan0654","location":null,"url":null,"description":"Happiness\u25e1\u0308!!!!!","protected":false,"verified":false,"followers_count":63,"friends_count":70,"listed_count":0,"favourites_count":236,"statuses_count":476,"created_at":"Sat Apr 18 16:44:17 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652442005230850048\/_LlftKov_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652442005230850048\/_LlftKov_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3162805772\/1442935282","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122663"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257250955266,"id_str":"663728257250955266","text":"@mtkmk3 \u307f\u304d\u304b\u3093\u884c\u3063\u305f\u304b\u3089\u884c\u304f\u307e\u3067\u4f55\u3082\u98df\u3079\u306a\u3044\u3067\u904e\u3054\u3057\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728113902227456,"in_reply_to_status_id_str":"663728113902227456","in_reply_to_user_id":4172835133,"in_reply_to_user_id_str":"4172835133","in_reply_to_screen_name":"mtkmk3","user":{"id":1899823230,"id_str":"1899823230","name":"\u3044\u3068\u304d\u3061","screen_name":"ito_dd_","location":"\u898f\u5236\u57a2( @ito_ks_ ) ","url":null,"description":"KHUx\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":387,"friends_count":212,"listed_count":8,"favourites_count":4943,"statuses_count":65660,"created_at":"Tue Sep 24 09:36:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658902044338601984\/K-OU1PVs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658902044338601984\/K-OU1PVs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1899823230\/1443969166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mtkmk3","name":"\u3055\u304d\u308d\u3046","id":4172835133,"id_str":"4172835133","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257263505410,"id_str":"663728257263505410","text":"Just posted a photo https:\/\/t.co\/B4m0np0azz","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":749233046,"id_str":"749233046","name":"Ozge Palabiyik","screen_name":"Ozgepalabiyik","location":null,"url":null,"description":"Ba\u015fkent \u00dcniversitesi Hukuk Fak\u00fcltesi","protected":false,"verified":false,"followers_count":292,"friends_count":222,"listed_count":1,"favourites_count":295,"statuses_count":1450,"created_at":"Fri Aug 10 12:01:51 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629797710854537216\/c7lnvE2E_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629797710854537216\/c7lnvE2E_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749233046\/1438991292","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B4m0np0azz","expanded_url":"https:\/\/instagram.com\/p\/93h7ErlYM1\/","display_url":"instagram.com\/p\/93h7ErlYM1\/","indices":[20,43]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122663"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257242562560,"id_str":"663728257242562560","text":"Cuando una persona dice que ha sufrido por amor, en realidad ha sufrido por querer, no por amar. Se sufre por apegos.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1029864474,"id_str":"1029864474","name":"LILO","screen_name":"saal_mc","location":" D.F","url":null,"description":"Y si morimos y hay un cielo, me escapar\u00e9 del infierno y te har\u00e9 el amor en una nube en honor a nuestros recuerdos.","protected":false,"verified":false,"followers_count":101,"friends_count":57,"listed_count":0,"favourites_count":1042,"statuses_count":1325,"created_at":"Sun Dec 23 04:51:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000050421238\/6ce6bad0acb48c8e32321fc0febb027a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000050421238\/6ce6bad0acb48c8e32321fc0febb027a.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663609213139070976\/2KAgihSL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663609213139070976\/2KAgihSL_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080122658"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259343872,"id_str":"663728257259343872","text":"RT @Banbixx125: \u30e8\u30c3\u30b7\u30e3 \u301c \uff01 \n\u4eca\u65e5\u3082\u91ce\u7403\u3059\u3063\u304b\uff01 \n\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b \n#RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3135503317,"id_str":"3135503317","name":"\u3010\u5927\u962a\u52e2\u3011\u8475\u272fjaponism\u4f1a\u304a\u3046\u305c","screen_name":"ohmiya_nao","location":null,"url":null,"description":"\u8475\u3068\u304a\u547c\u3073\u304f\u3060\u3055\u3044\u3002\u547c\u3073\u30bf\u30e1\u5927\u6b53\u8fce\uff01\u30d5\u30a9\u30ed\u30d0\u7387617\uff05\u3002\u5927\u962a\u4f4f\u307f\u3002\u4eac\u30bb\u30e9\u52e2\u300298\u5e74\u7d44\u3002\u3061\u7537\u88c5\u3057\u307e\u3059\uff01\u5199\u771f\u306f\u8f09\u305b\u306a\u3044\u3051\u3069\u898b\u305f\u3044\u4eba\u306f\u58f0\u304b\u3051\u3066\uff01\u7537\u306b\u306a\u308a\u305f\u3044\u3002\u7537\u88c5\u3055\u3093\u3001ARASHIANS\u3068\u7e4b\u304c\u308a\u305f\u3044\uff01\u4eac\u30bb\u30e9\u3067\u4e00\u7dd2\u306b\u30b3\u30b9\u3057\u3066\u304f\u308c\u308b\u4eba\u52df\u96c6\u4e2d\uff01","protected":false,"verified":false,"followers_count":357,"friends_count":354,"listed_count":46,"favourites_count":1585,"statuses_count":5793,"created_at":"Fri Apr 03 11:52:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660069064983732225\/ylgQWvp3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660069064983732225\/ylgQWvp3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3135503317\/1428062239","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:58:33 +0000 2015","id":663339824703651840,"id_str":"663339824703651840","text":"\u30e8\u30c3\u30b7\u30e3 \u301c \uff01 \n\u4eca\u65e5\u3082\u91ce\u7403\u3059\u3063\u304b\uff01 \n\n#RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b \n#RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4168181772,"id_str":"4168181772","name":"\u30d0\u30f3\u30d3 \u69d8","screen_name":"Banbixx125","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":54,"friends_count":37,"listed_count":0,"favourites_count":0,"statuses_count":2,"created_at":"Sun Nov 08 12:48:55 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663337708681494528\/4WeTiUjy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663337708681494528\/4WeTiUjy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":5,"entities":{"hashtags":[{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[22,44]},{"text":"RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[46,64]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"RT\u3057\u305fARASHIANS\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[38,60]},{"text":"RT\u3057\u305f\u3042\u3089\u3057\u3063\u304f\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[62,80]}],"urls":[],"user_mentions":[{"screen_name":"Banbixx125","name":"\u30d0\u30f3\u30d3 \u69d8","id":4168181772,"id_str":"4168181772","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257259298816,"id_str":"663728257259298816","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243044457,"id_str":"3243044457","name":"Moira Mcgebenay","screen_name":"xeqecozarylo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":190,"friends_count":1485,"listed_count":10,"favourites_count":18151,"statuses_count":19413,"created_at":"Sat May 09 07:33:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642954514618646529\/h8tiPLBn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642954514618646529\/h8tiPLBn_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":918,"favorite_count":549,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122662"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257276248064,"id_str":"663728257276248064","text":"@BJP4India One more - https:\/\/t.co\/ibFALQa8bZ\n @narendramodi @AmitShah @BJPRajnathSingh @arunjaitley @SushmaSwaraj @NalinSKohli","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726770269589504,"in_reply_to_status_id_str":"663726770269589504","in_reply_to_user_id":75273935,"in_reply_to_user_id_str":"75273935","in_reply_to_screen_name":"Arvind_82","user":{"id":75273935,"id_str":"75273935","name":"Arvind Srivastava","screen_name":"Arvind_82","location":"Hyderabad, India","url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":12,"listed_count":2,"favourites_count":32,"statuses_count":2154,"created_at":"Fri Sep 18 12:59:13 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme12\/bg.gif","profile_background_tile":false,"profile_link_color":"FF0000","profile_sidebar_border_color":"F2E195","profile_sidebar_fill_color":"FFF7CC","profile_text_color":"0C3E53","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1789139418\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1789139418\/image_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ibFALQa8bZ","expanded_url":"http:\/\/readerblogs.navbharattimes.indiatimes.com\/AGLI-DUNIYA\/entry\/bjpdefeated","display_url":"\u2026erblogs.navbharattimes.indiatimes.com\/AGLI-DUNIYA\/en\u2026","indices":[22,45]}],"user_mentions":[{"screen_name":"BJP4India","name":"BJP","id":207809313,"id_str":"207809313","indices":[0,10]},{"screen_name":"narendramodi","name":"Narendra Modi","id":18839785,"id_str":"18839785","indices":[47,60]},{"screen_name":"AmitShah","name":"Amit Shah","id":1447949844,"id_str":"1447949844","indices":[61,70]},{"screen_name":"BJPRajnathSingh","name":"Rajnath Singh","id":1346439824,"id_str":"1346439824","indices":[71,87]},{"screen_name":"arunjaitley","name":"Arun Jaitley","id":2183816041,"id_str":"2183816041","indices":[88,100]},{"screen_name":"SushmaSwaraj","name":"Sushma Swaraj","id":219617448,"id_str":"219617448","indices":[101,114]},{"screen_name":"NalinSKohli","name":"Nalin S Kohli","id":1150201302,"id_str":"1150201302","indices":[115,127]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122666"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257267707904,"id_str":"663728257267707904","text":"@45skrbsk \n\u3042\u308a\u304c\u3068\u30fc\u3054\u3056\u3044\u307e\u3059\uff01\n\u3058\u3083\u30fc\u30c7\u30cb\u30e0\uff01\uff01\u270c\u7b11\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663354435809087488,"in_reply_to_status_id_str":"663354435809087488","in_reply_to_user_id":2854239864,"in_reply_to_user_id_str":"2854239864","in_reply_to_screen_name":"45skrbsk","user":{"id":3279654559,"id_str":"3279654559","name":"\u3042\u3064\u3057","screen_name":"Atsushi031","location":null,"url":null,"description":"\u5357\u967d\u4e2d\u5353\u7403\u90e8\u2192\u685c\u4e18\u9ad8\u682118HR\u3000\u5e30\u5b85\u90e8\n\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\u203c","protected":false,"verified":false,"followers_count":337,"friends_count":312,"listed_count":0,"favourites_count":2435,"statuses_count":675,"created_at":"Tue Jul 14 13:40:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659258936801955840\/T8D4hK2v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659258936801955840\/T8D4hK2v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279654559\/1447035322","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"45skrbsk","name":"\u3089\u30fc\u3081\u3093","id":2854239864,"id_str":"2854239864","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122664"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257251045377,"id_str":"663728257251045377","text":"New #Hot #Zazzle Time to #Shop - Item Christmas customized gift Sticker https:\/\/t.co\/3CMYrJrFhO https:\/\/t.co\/NGSyWfMBJv","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":232320524,"id_str":"232320524","name":"A Permanent Holiday","screen_name":"APHInternation","location":"Columbus Ohio","url":"http:\/\/aphint.wordpress.com","description":"Your Guide to Passive Income, so you can reach A Permanent Holiday from Work","protected":false,"verified":false,"followers_count":2722,"friends_count":2582,"listed_count":338,"favourites_count":1,"statuses_count":985206,"created_at":"Thu Dec 30 20:50:44 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2423770059\/3s54128h20891hzb4cz5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2423770059\/3s54128h20891hzb4cz5_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Hot","indices":[4,8]},{"text":"Zazzle","indices":[9,16]},{"text":"Shop","indices":[25,30]}],"urls":[{"url":"https:\/\/t.co\/3CMYrJrFhO","expanded_url":"http:\/\/ift.tt\/1QdR99s","display_url":"ift.tt\/1QdR99s","indices":[72,95]}],"user_mentions":[],"symbols":[],"media":[{"id":663728257137819652,"id_str":"663728257137819652","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVVIWwAQg9eE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVVIWwAQg9eE.jpg","url":"https:\/\/t.co\/NGSyWfMBJv","display_url":"pic.twitter.com\/NGSyWfMBJv","expanded_url":"http:\/\/twitter.com\/APHInternation\/status\/663728257251045377\/photo\/1","type":"photo","sizes":{"large":{"w":152,"h":152,"resize":"fit"},"small":{"w":152,"h":152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":152,"h":152,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728257137819652,"id_str":"663728257137819652","indices":[96,119],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVVIWwAQg9eE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVVIWwAQg9eE.jpg","url":"https:\/\/t.co\/NGSyWfMBJv","display_url":"pic.twitter.com\/NGSyWfMBJv","expanded_url":"http:\/\/twitter.com\/APHInternation\/status\/663728257251045377\/photo\/1","type":"photo","sizes":{"large":{"w":152,"h":152,"resize":"fit"},"small":{"w":152,"h":152,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":152,"h":152,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122660"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246695424,"id_str":"663728257246695424","text":"RT @yabaiwaraeru: \u30a2\u30e1\u30ea\u30ab\u306e\u30e6\u30cb\u30d0\u306b\n\u30ef\u30a4\u30eb\u30c9\u30b9\u30d4\u30fc\u30c9\u306e\n\u30a2\u30c8\u30e9\u30af\u30b7\u30e7\u30f3\u304c\u3067\u304d\u308b\u3093\u3066\uff01\n\u3081\u3063\u3061\u3083\u9762\u767d\u305d\u3046\uff01\uff01\n\u306f\u3084\u304f\u65e5\u672c\u306b\u3082\u4f5c\u3063\u3066 \nhttps:\/\/t.co\/fUeD1RzOB6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2955729444,"id_str":"2955729444","name":"Rai:-)","screen_name":"ptbl428","location":"Japan","url":"https:\/\/Instagram.com\/raiii3131\/","description":"Hey guys follow me :) Toyo HighSchool","protected":false,"verified":false,"followers_count":732,"friends_count":578,"listed_count":6,"favourites_count":4209,"statuses_count":5187,"created_at":"Fri Jan 02 07:57:00 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663344085596422144\/5XHUkesJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663344085596422144\/5XHUkesJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2955729444\/1446648986","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 13:31:20 +0000 2015","id":662623298920910849,"id_str":"662623298920910849","text":"\u30a2\u30e1\u30ea\u30ab\u306e\u30e6\u30cb\u30d0\u306b\n\u30ef\u30a4\u30eb\u30c9\u30b9\u30d4\u30fc\u30c9\u306e\n\u30a2\u30c8\u30e9\u30af\u30b7\u30e7\u30f3\u304c\u3067\u304d\u308b\u3093\u3066\uff01\n\u3081\u3063\u3061\u3083\u9762\u767d\u305d\u3046\uff01\uff01\n\u306f\u3084\u304f\u65e5\u672c\u306b\u3082\u4f5c\u3063\u3066 \nhttps:\/\/t.co\/fUeD1RzOB6","source":"\u003ca href=\"http:\/\/www.yahoo.co.jp\/\" rel=\"nofollow\"\u003e\u604b\u611b\u3067\u4e16\u754c\u3078\u98db\u3093\u3067\u3086\u3051\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3310137444,"id_str":"3310137444","name":"\u9762\u767d\u3059\u304e\u3066\u30e4\u30d0\u30a4\u52d5\u753b","screen_name":"yabaiwaraeru","location":null,"url":null,"description":"\u601d\u308f\u305a\u7b11\u3063\u305f\u308a\u5f15\u304d\u8fbc\u307e\u308c\u3066\u3057\u307e\u3046\u3088\u3046\u306a\u52d5\u753b\u3092\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u2606\u52d5\u753b\u306b\u767b\u5834\u3059\u308b\u4eba\u7269\u306e\u3088\u3046\u306b\u697d\u3057\u304f\u6bce\u65e5\u3092\u904e\u3054\u3057\u305f\u3044\u3082\u306e\u3067\u3059\u306d\u266a\u304a\u53cb\u9054\u306b\u3082\u305c\u3072\u6559\u3048\u3066\u3042\u3052\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":1273,"friends_count":1321,"listed_count":0,"favourites_count":0,"statuses_count":627,"created_at":"Sun Aug 09 03:45:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630224497866477568\/OEiazNvc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630224497866477568\/OEiazNvc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3310137444\/1446475305","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":87,"favorite_count":66,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":604953226534723584,"id_str":"604953226534723584","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","url":"https:\/\/t.co\/fUeD1RzOB6","display_url":"pic.twitter.com\/fUeD1RzOB6","expanded_url":"http:\/\/twitter.com\/taiyo0130\/status\/604953405778325504\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":604953405778325504,"source_status_id_str":"604953405778325504","source_user_id":2477203976,"source_user_id_str":"2477203976"}]},"extended_entities":{"media":[{"id":604953226534723584,"id_str":"604953226534723584","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","url":"https:\/\/t.co\/fUeD1RzOB6","display_url":"pic.twitter.com\/fUeD1RzOB6","expanded_url":"http:\/\/twitter.com\/taiyo0130\/status\/604953405778325504\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":604953405778325504,"source_status_id_str":"604953405778325504","source_user_id":2477203976,"source_user_id_str":"2477203976","video_info":{"aspect_ratio":[16,9],"duration_millis":30024,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/640x360\/IEv6zJHo4Ii3UxDo.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/320x180\/I4os9N_62KEcsc1D.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/640x360\/IEv6zJHo4Ii3UxDo.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/pl\/NzJ3q2Y1pOPHEi9a.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/pl\/NzJ3q2Y1pOPHEi9a.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yabaiwaraeru","name":"\u9762\u767d\u3059\u304e\u3066\u30e4\u30d0\u30a4\u52d5\u753b","id":3310137444,"id_str":"3310137444","indices":[3,16]}],"symbols":[],"media":[{"id":604953226534723584,"id_str":"604953226534723584","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","url":"https:\/\/t.co\/fUeD1RzOB6","display_url":"pic.twitter.com\/fUeD1RzOB6","expanded_url":"http:\/\/twitter.com\/taiyo0130\/status\/604953405778325504\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":604953405778325504,"source_status_id_str":"604953405778325504","source_user_id":2477203976,"source_user_id_str":"2477203976"}]},"extended_entities":{"media":[{"id":604953226534723584,"id_str":"604953226534723584","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/604953226534723584\/pu\/img\/85xqy87NhGfcBfeW.jpg","url":"https:\/\/t.co\/fUeD1RzOB6","display_url":"pic.twitter.com\/fUeD1RzOB6","expanded_url":"http:\/\/twitter.com\/taiyo0130\/status\/604953405778325504\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":604953405778325504,"source_status_id_str":"604953405778325504","source_user_id":2477203976,"source_user_id_str":"2477203976","video_info":{"aspect_ratio":[16,9],"duration_millis":30024,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/640x360\/IEv6zJHo4Ii3UxDo.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/320x180\/I4os9N_62KEcsc1D.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/vid\/640x360\/IEv6zJHo4Ii3UxDo.webm"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/pl\/NzJ3q2Y1pOPHEi9a.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/604953226534723584\/pu\/pl\/NzJ3q2Y1pOPHEi9a.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122659"} +{"delete":{"status":{"id":663720715900743680,"id_str":"663720715900743680","user_id":3330076005,"user_id_str":"3330076005"},"timestamp_ms":"1447080122776"}} +{"delete":{"status":{"id":663727007365136386,"id_str":"663727007365136386","user_id":2868323623,"user_id_str":"2868323623"},"timestamp_ms":"1447080122804"}} +{"delete":{"status":{"id":663727007352549376,"id_str":"663727007352549376","user_id":2884575624,"user_id_str":"2884575624"},"timestamp_ms":"1447080122804"}} +{"delete":{"status":{"id":663724671108411392,"id_str":"663724671108411392","user_id":3424530845,"user_id_str":"3424530845"},"timestamp_ms":"1447080122848"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257267732480,"id_str":"663728257267732480","text":"Tottenham striker Harry Kane isn't writing Chelsea off just yet in race for top four - https:\/\/t.co\/DBpZCCx7Xm https:\/\/t.co\/xL5mzBSlm5","source":"\u003ca href=\"http:\/\/megasportsarena.com\" rel=\"nofollow\"\u003eMegasport Autopost\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3131054332,"id_str":"3131054332","name":"megasportsarena","screen_name":"megasportsarena","location":"Lagos,Nigeria","url":"http:\/\/megasportsarena.com","description":null,"protected":false,"verified":false,"followers_count":480,"friends_count":124,"listed_count":7,"favourites_count":6,"statuses_count":8072,"created_at":"Wed Apr 01 10:58:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583222090926415872\/TCkelhUe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583222090926415872\/TCkelhUe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3131054332\/1428327702","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DBpZCCx7Xm","expanded_url":"http:\/\/megasportsarena.com\/leagues\/premier-league\/tottenham-hotspur\/tottenham-striker-harry-kane-isnt-writing-chelsea-off-just-yet-in-race-for-top-four\/","display_url":"megasportsarena.com\/leagues\/premie\u2026","indices":[87,110]}],"user_mentions":[],"symbols":[],"media":[{"id":663728257062207488,"id_str":"663728257062207488","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVU2VAAAMLjG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVU2VAAAMLjG.jpg","url":"https:\/\/t.co\/xL5mzBSlm5","display_url":"pic.twitter.com\/xL5mzBSlm5","expanded_url":"http:\/\/twitter.com\/megasportsarena\/status\/663728257267732480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":634,"h":398,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728257062207488,"id_str":"663728257062207488","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVU2VAAAMLjG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVU2VAAAMLjG.jpg","url":"https:\/\/t.co\/xL5mzBSlm5","display_url":"pic.twitter.com\/xL5mzBSlm5","expanded_url":"http:\/\/twitter.com\/megasportsarena\/status\/663728257267732480\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":213,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":376,"resize":"fit"},"large":{"w":634,"h":398,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080122664"} +{"delete":{"status":{"id":663688805631692800,"id_str":"663688805631692800","user_id":3301098313,"user_id_str":"3301098313"},"timestamp_ms":"1447080122916"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257271996416,"id_str":"663728257271996416","text":"\u0397 \u039a\u03c9\u03bd\u03c3\u03c4\u03b1\u03bd\u03c4\u03af\u03bd\u03b1 \u03a3\u03c0\u03c5\u03c1\u03bf\u03c0\u03bf\u03cd\u03bb\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b7 \u03bc\u03cc\u03bd\u03b7, \u03c4\u03b5\u03bb\u03b9\u03ba\u03ac, \u03c0\u03bf\u03c5 \u03ac\u03c6\u03b7\u03c3\u03b5 \u03c4\u03bf \u03a4\u0396\u039f\u039a\u0395\u03a1 \u03ba\u03b9 \u03ad\u03c0\u03b9\u03b1\u03c3\u03b5 \u03c4\u03bf\u03bd \u03b8\u03b5\u03af\u03bf.. https:\/\/t.co\/1GZLUku6jr","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181381733,"id_str":"3181381733","name":"Nemesis1986","screen_name":"NemesisSYRIZA","location":null,"url":null,"description":"\u03a0\u03c1\u03cc\u03c3\u03c6\u03b1\u03c4\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7 & \u03a0\u03b5\u03c0\u03b5\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03cc\u03c4\u03b9 \u03b7 \u03a1\u03b9\u03b6\u03bf\u03c3\u03c0\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae \u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ac \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03c5\u03b2\u03b5\u03c1\u03bd\u03ae\u03c3\u03b5\u03b9, \u03c6\u03bf\u03b2\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03c4\u03b7\u03bd \u03b5\u03c5\u03b8\u03cd\u03bd\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c0\u03bf\u03c6\u03ac\u03c3\u03b5\u03ce\u03bd \u03c4\u03b7\u03c2 \u03b1\u03c0\u03cc \u039a\u0391\u0398\u0391\u03a1\u0397 \u03ad\u03bb\u03bb\u03b5\u03b9\u03c8\u03b7 \u03c1\u03b5\u03b1\u03bb\u03b9\u03c3\u03bc\u03bf\u03cd","protected":false,"verified":false,"followers_count":1313,"friends_count":1894,"listed_count":5,"favourites_count":2971,"statuses_count":2925,"created_at":"Sun Apr 19 00:37:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589591498439659520\/xYm8oHH5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589591498439659520\/xYm8oHH5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181381733\/1430307226","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728256131211264,"id_str":"663728256131211264","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVRYXIAAtVcC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVRYXIAAtVcC.jpg","url":"https:\/\/t.co\/1GZLUku6jr","display_url":"pic.twitter.com\/1GZLUku6jr","expanded_url":"http:\/\/twitter.com\/NemesisSYRIZA\/status\/663728257271996416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":760,"resize":"fit"},"large":{"w":600,"h":760,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728256131211264,"id_str":"663728256131211264","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVRYXIAAtVcC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVRYXIAAtVcC.jpg","url":"https:\/\/t.co\/1GZLUku6jr","display_url":"pic.twitter.com\/1GZLUku6jr","expanded_url":"http:\/\/twitter.com\/NemesisSYRIZA\/status\/663728257271996416\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":760,"resize":"fit"},"large":{"w":600,"h":760,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"el","timestamp_ms":"1447080122665"} +{"delete":{"status":{"id":663727007360937990,"id_str":"663727007360937990","user_id":2989392515,"user_id_str":"2989392515"},"timestamp_ms":"1447080122980"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257238351876,"id_str":"663728257238351876","text":"RT10\n\u57fa\u672c\u7684\u306b\u4f55\u3082\u7121\u3044 https:\/\/t.co\/7pTMIl2Ysl","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3239025847,"id_str":"3239025847","name":"\u306e\u3048\u308b\u0505(\u00af\ufe43\u00af\u0505)","screen_name":"KirscheNoel_ava","location":"Japan","url":"http:\/\/ask.fm\/Kirsche_tm","description":"\u524d\u57a2\u306f\u6d88\u5931 ava\u6c11\u306f\u57fa\u672c\u7684\u306b\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u307e\u3059 AVA \/ Kirsche\u2122(\u5143\u4e5d\u6761\u30ab\u30ec\u30f3)\/ \u4e2d\u4f50 \/ \u306e\u3048\u308b\u3001\u304b\u308c\u3093\u3068\u304b\u547c\u3070\u308c\u3066\u307e\u3059 \u30d8\u30c3\u30c0\u30fc\u306f\u300e@RoAr_Rumia_AVA\u300f \u3055\u3093\u304b\u3089!!","protected":false,"verified":false,"followers_count":327,"friends_count":315,"listed_count":4,"favourites_count":173,"statuses_count":4200,"created_at":"Sun Jun 07 15:22:29 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"6A5ACD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662878109742469120\/BLcR007B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662878109742469120\/BLcR007B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3239025847\/1443173198","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728251311788032,"id_str":"663728251311788032","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU_bUkAAhIpo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU_bUkAAhIpo.jpg","url":"https:\/\/t.co\/7pTMIl2Ysl","display_url":"pic.twitter.com\/7pTMIl2Ysl","expanded_url":"http:\/\/twitter.com\/KirscheNoel_ava\/status\/663728257238351876\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728251311788032,"id_str":"663728251311788032","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJU_bUkAAhIpo.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJU_bUkAAhIpo.jpg","url":"https:\/\/t.co\/7pTMIl2Ysl","display_url":"pic.twitter.com\/7pTMIl2Ysl","expanded_url":"http:\/\/twitter.com\/KirscheNoel_ava\/status\/663728257238351876\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"},"large":{"w":1024,"h":575,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122657"} +{"delete":{"status":{"id":663727028315688960,"id_str":"663727028315688960","user_id":2866134522,"user_id_str":"2866134522"},"timestamp_ms":"1447080122996"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246736385,"id_str":"663728257246736385","text":"@ulea007 @E_U_Phoria \u898b\u3064\u304b\u3089\u306a\u304b\u3063\u305f\u3093\u3067\u305d\u3063\u3061\u304b\u3089\u30d5\u30a9\u30ed\u30fc\u304a\u9858\u3044\u3057\u307e\u3059\uff08\u00b4\u25d4\u2038\u25d4`\uff09 https:\/\/t.co\/W9hJwve0MI","source":"\u003ca href=\"http:\/\/www.justsystems.com\/jp\/products\/tweetatok\/\" rel=\"nofollow\"\u003eTweet ATOK\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728023720493056,"in_reply_to_status_id_str":"663728023720493056","in_reply_to_user_id":543205510,"in_reply_to_user_id_str":"543205510","in_reply_to_screen_name":"ulea007","user":{"id":457679713,"id_str":"457679713","name":"\u30de\u30fc\u30eb\u306b\u30e9\u30c3\u30ad\u30fc\u5c4a\u3051\u3089\u308c\u305f\u795e","screen_name":"athena190714","location":"\u65b0\u4e16\u754c\u57ce[\uff73\uff9e\uff67\uff70\uff99\uff73\uff9e\uff6a\uff99\uff84]","url":"http:\/\/twitter.com\/athena190714\/status\/337585017121292288","description":"\u5c01\u3058\u3089\u308c\u3057\u738b\u306f900\u5e74\u3092\u7d4c\u3066\u9f13\u52d5\u3092\u53d6\u308a\u623b\u3057\n\n90\u5e74\u3092\u7d4c\u3066\u7406\u77e5\u3092\u53d6\u308a\u623b\u3057\n\n9\u5e74\u3092\u7d4c\u3066\u529b\u3092\u53d6\u308a\u623b\u3057\n\n9\u65e5\u9593\u3092\u4ee5\u3066\u4e16\u754c\u3092\u53d6\u308a\u623b\u3059","protected":false,"verified":false,"followers_count":417,"friends_count":147,"listed_count":17,"favourites_count":110674,"statuses_count":183815,"created_at":"Sat Jan 07 17:57:23 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650772279501000704\/PKBw_VrY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650772279501000704\/PKBw_VrY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457679713\/1367166998","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ulea007","name":"\u30aa\u30a4\u30e9\u306f\u308a\u3093\u3054","id":543205510,"id_str":"543205510","indices":[0,8]},{"screen_name":"E_U_Phoria","name":"\u3072\u3063","id":625833286,"id_str":"625833286","indices":[9,20]}],"symbols":[],"media":[{"id":663728256969895937,"id_str":"663728256969895937","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVUgUcAEhhrn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVUgUcAEhhrn.png","url":"https:\/\/t.co\/W9hJwve0MI","display_url":"pic.twitter.com\/W9hJwve0MI","expanded_url":"http:\/\/twitter.com\/athena190714\/status\/663728257246736385\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":799,"resize":"fit"},"large":{"w":640,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728256969895937,"id_str":"663728256969895937","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVUgUcAEhhrn.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVUgUcAEhhrn.png","url":"https:\/\/t.co\/W9hJwve0MI","display_url":"pic.twitter.com\/W9hJwve0MI","expanded_url":"http:\/\/twitter.com\/athena190714\/status\/663728257246736385\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":799,"resize":"fit"},"large":{"w":640,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":453,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080122659"} +{"delete":{"status":{"id":663724708890677248,"id_str":"663724708890677248","user_id":3459395412,"user_id_str":"3459395412"},"timestamp_ms":"1447080123056"}} +{"delete":{"status":{"id":663724612392382464,"id_str":"663724612392382464","user_id":4009545982,"user_id_str":"4009545982"},"timestamp_ms":"1447080123078"}} +{"delete":{"status":{"id":663724826310238208,"id_str":"663724826310238208","user_id":436463917,"user_id_str":"436463917"},"timestamp_ms":"1447080123098"}} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257246896128,"id_str":"663728257246896128","text":"El seminario de Defensa jur\u00eddica con 8 horas de duraci\u00f3n, y est\u00e1 a cargo del capacitador de la ESAP @Frankmarin2000 https:\/\/t.co\/TyaJlipwlo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3272251046,"id_str":"3272251046","name":"Albeiro S\u00e1nchez M.","screen_name":"albeirosanchezm","location":"Villavicencio, Meta","url":"http:\/\/www.esap.edu.co\/la-esap\/territoriales\/meta.html","description":"Director Escuela Superior de Administraci\u00f3n P\u00fablica (ESAP) Territorial Meta, Guaviare, Guain\u00eda, Vaup\u00e9s, Vichada, Amazonas","protected":false,"verified":false,"followers_count":109,"friends_count":196,"listed_count":0,"favourites_count":68,"statuses_count":596,"created_at":"Wed Jul 08 21:22:24 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628941678116777984\/DVGfmzsn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628941678116777984\/DVGfmzsn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3272251046\/1436478645","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Frankmarin2000","name":"FRANKLIN A. MARIN G.","id":333785735,"id_str":"333785735","indices":[100,115]}],"symbols":[],"media":[{"id":663728241576841216,"id_str":"663728241576841216","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUbKVEAARnQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUbKVEAARnQY.jpg","url":"https:\/\/t.co\/TyaJlipwlo","display_url":"pic.twitter.com\/TyaJlipwlo","expanded_url":"http:\/\/twitter.com\/albeirosanchezm\/status\/663728257246896128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728241576841216,"id_str":"663728241576841216","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUbKVEAARnQY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUbKVEAARnQY.jpg","url":"https:\/\/t.co\/TyaJlipwlo","display_url":"pic.twitter.com\/TyaJlipwlo","expanded_url":"http:\/\/twitter.com\/albeirosanchezm\/status\/663728257246896128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}},{"id":663728241576796161,"id_str":"663728241576796161","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUbKUYAEGS_X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUbKUYAEGS_X.jpg","url":"https:\/\/t.co\/TyaJlipwlo","display_url":"pic.twitter.com\/TyaJlipwlo","expanded_url":"http:\/\/twitter.com\/albeirosanchezm\/status\/663728257246896128\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080122659"} +{"delete":{"status":{"id":663724499158732801,"id_str":"663724499158732801","user_id":3594639560,"user_id_str":"3594639560"},"timestamp_ms":"1447080123171"}} +{"delete":{"status":{"id":663724566284365824,"id_str":"663724566284365824","user_id":3611332033,"user_id_str":"3611332033"},"timestamp_ms":"1447080123181"}} +{"delete":{"status":{"id":663724658525470720,"id_str":"663724658525470720","user_id":3614103734,"user_id_str":"3614103734"},"timestamp_ms":"1447080123411"}} +{"delete":{"status":{"id":659111691716681728,"id_str":"659111691716681728","user_id":1239021241,"user_id_str":"1239021241"},"timestamp_ms":"1447080123501"}} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261453717504,"id_str":"663728261453717504","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243021225,"id_str":"3243021225","name":"Pranesha Haine","screen_name":"semozakamaz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":94,"friends_count":944,"listed_count":5,"favourites_count":18876,"statuses_count":19355,"created_at":"Sat May 09 06:58:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642947461024227328\/CNqpJNx6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642947461024227328\/CNqpJNx6_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1199,"favorite_count":732,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123662"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261457952768,"id_str":"663728261457952768","text":"RT @JMarquesSoprano: Olvidar lo que te jode tambi\u00e9n es tener memoria","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":343627906,"id_str":"343627906","name":"N E R E A","screen_name":"Nereus17","location":null,"url":"http:\/\/www.instagram.com\/nereus17","description":"Tus ojos son el templo de mi religi\u00f3n","protected":false,"verified":false,"followers_count":609,"friends_count":255,"listed_count":1,"favourites_count":963,"statuses_count":17584,"created_at":"Wed Jul 27 21:10:54 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000164869527\/gciWv-Bh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000164869527\/gciWv-Bh.jpeg","profile_background_tile":true,"profile_link_color":"EB1E7A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631145367669731329\/g6RXliVe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631145367669731329\/g6RXliVe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/343627906\/1437577091","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:56:16 +0000 2015","id":663716737381220352,"id_str":"663716737381220352","text":"Olvidar lo que te jode tambi\u00e9n es tener memoria","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":419778712,"id_str":"419778712","name":"Juancho Marqu\u00e9s","screen_name":"JMarquesSoprano","location":"Trece de Agosto","url":"http:\/\/www.suitesoprano.es","description":"The Blues 12-01-2016 Contrataci\u00f3n:carlos@radiation.es Mail:juanchomarques@gmail.com","protected":false,"verified":false,"followers_count":51898,"friends_count":379,"listed_count":83,"favourites_count":38758,"statuses_count":16324,"created_at":"Wed Nov 23 19:41:10 +0000 2011","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663523725569081344\/rrf9vm0K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663523725569081344\/rrf9vm0K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/419778712\/1447031358","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":359,"favorite_count":330,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JMarquesSoprano","name":"Juancho Marqu\u00e9s","id":419778712,"id_str":"419778712","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123663"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449580544,"id_str":"663728261449580544","text":"Nex1TV: Nex1TV: QueenPastillas: RT Pbb737Dawn: Spread the word! DAWNcersFrance PBBabscbn #PBBTheBigNight #PBBTheBigWeekend DAWNcersQC DawnZ\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3960429013,"id_str":"3960429013","name":"ONYOK FansClub","screen_name":"OnyokF","location":"California, USA","url":null,"description":"Onyok is the newest brightest CHILD STAR.","protected":false,"verified":false,"followers_count":118,"friends_count":7,"listed_count":21,"favourites_count":37,"statuses_count":32206,"created_at":"Tue Oct 20 17:42:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656527517054976001\/SLmC8gl9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656527517054976001\/SLmC8gl9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3960429013\/1445363331","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PBBTheBigNight","indices":[89,104]},{"text":"PBBTheBigWeekend","indices":[105,122]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445349376,"id_str":"663728261445349376","text":"Ces choses qu\u2019on ne devrait JAMAIS faire en \u00e9tat d\u2019ivresse (mais qu\u2019on fait quand m\u00eame) https:\/\/t.co\/p4L0ThruLP via @madmoiZelle","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1028371753,"id_str":"1028371753","name":"Romy","screen_name":"RomaneMnr","location":"Laval-Angers","url":"https:\/\/metromane.wordpress.com\/","description":"Etudiante en information-communication | #Angers | #Blogueuse de #Laval M\u00e9tromane #musique #bonsplans #interview | Pr\u00e9sidente d'asso | Stagiaire @echologia","protected":false,"verified":false,"followers_count":330,"friends_count":314,"listed_count":8,"favourites_count":365,"statuses_count":4246,"created_at":"Sat Dec 22 11:56:34 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646731489086951424\/DuHvv5mB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646731489086951424\/DuHvv5mB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1028371753\/1443027815","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/p4L0ThruLP","expanded_url":"http:\/\/www.madmoizelle.com\/choses-jamais-faire-ivre-438073","display_url":"madmoizelle.com\/choses-jamais-\u2026","indices":[88,111]}],"user_mentions":[{"screen_name":"madmoiZelle","name":"madmoiZelle.com","id":14745183,"id_str":"14745183","indices":[116,128]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261457948672,"id_str":"663728261457948672","text":"RT @obbsie: Clive's assessment is spot on. Please RT Are our Police not an important part of Britain's National Security? https:\/\/t.co\/tww0\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":898133324,"id_str":"898133324","name":"Gerald Wiley","screen_name":"SarrfLondon","location":"England","url":null,"description":"Views are my own, unless I have stolen them.","protected":false,"verified":false,"followers_count":190,"friends_count":285,"listed_count":3,"favourites_count":2857,"statuses_count":4881,"created_at":"Mon Oct 22 18:28:05 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615983103060877312\/ou6r2rzL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615983103060877312\/ou6r2rzL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/898133324\/1414347870","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:58 +0000 2015","id":663725976472408064,"id_str":"663725976472408064","text":"Clive's assessment is spot on. Please RT Are our Police not an important part of Britain's National Security? https:\/\/t.co\/tww0jNaFmu","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363024296,"id_str":"363024296","name":"Chris Hobbs","screen_name":"obbsie","location":null,"url":null,"description":"Retired Met cop with 30+ years . Loves football, Jamaica, IOW & DJ\u2019ing (friends & charities only). Worked in Jamaica & trustee of small Jamaican kids charity","protected":false,"verified":false,"followers_count":1127,"friends_count":967,"listed_count":14,"favourites_count":2889,"statuses_count":10719,"created_at":"Sat Aug 27 11:54:00 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659720837306564608\/JBaAjL0G_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659720837306564608\/JBaAjL0G_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363024296\/1432410768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tww0jNaFmu","expanded_url":"http:\/\/wp.me\/p6VHbb-f","display_url":"wp.me\/p6VHbb-f","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tww0jNaFmu","expanded_url":"http:\/\/wp.me\/p6VHbb-f","display_url":"wp.me\/p6VHbb-f","indices":[122,140]}],"user_mentions":[{"screen_name":"obbsie","name":"Chris Hobbs","id":363024296,"id_str":"363024296","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123663"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449560064,"id_str":"663728261449560064","text":"RT @EDELP_JuanCruz: Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3655971502,"id_str":"3655971502","name":"CositoDelHuevOk","screen_name":"CositoDelHuevOk","location":"La Argentina, Huila","url":null,"description":"Aveces pienso en que me comer\u00e1n...","protected":false,"verified":false,"followers_count":43,"friends_count":37,"listed_count":0,"favourites_count":309,"statuses_count":2688,"created_at":"Mon Sep 14 19:02:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643500204600262656\/zicY5Gte_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643500204600262656\/zicY5Gte_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921568313344,"id_str":"663727921568313344","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706972780,"id_str":"2706972780","name":"Juan Cruz EdeLP","screen_name":"EDELP_JuanCruz","location":null,"url":null,"description":"Vamos Estudiantes.","protected":false,"verified":false,"followers_count":132,"friends_count":64,"listed_count":2,"favourites_count":303,"statuses_count":12788,"created_at":"Mon Aug 04 17:08:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644221215020871680\/HNMJJ3G0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644221215020871680\/HNMJJ3G0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2706972780\/1442429311","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EDELP_JuanCruz","name":"Juan Cruz EdeLP","id":2706972780,"id_str":"2706972780","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449560065,"id_str":"663728261449560065","text":"RT @EDELP_JuanCruz: Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3674914094,"id_str":"3674914094","name":"CALAMARDOCHIDO","screen_name":"FaveadCalamardo","location":"En mi flauta","url":null,"description":"Molesto mucho a Bob el idiota.","protected":false,"verified":false,"followers_count":27,"friends_count":19,"listed_count":0,"favourites_count":235,"statuses_count":2351,"created_at":"Thu Sep 24 22:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647175025561223168\/44dBUx2U_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647175025561223168\/44dBUx2U_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921568313344,"id_str":"663727921568313344","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2706972780,"id_str":"2706972780","name":"Juan Cruz EdeLP","screen_name":"EDELP_JuanCruz","location":null,"url":null,"description":"Vamos Estudiantes.","protected":false,"verified":false,"followers_count":132,"friends_count":64,"listed_count":2,"favourites_count":303,"statuses_count":12788,"created_at":"Mon Aug 04 17:08:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644221215020871680\/HNMJJ3G0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644221215020871680\/HNMJJ3G0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2706972780\/1442429311","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":21,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EDELP_JuanCruz","name":"Juan Cruz EdeLP","id":2706972780,"id_str":"2706972780","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445189633,"id_str":"663728261445189633","text":"\u30af\u30ea\u30b9\u8cb7\u3044\u7269\u9023\u308c\u3066\u3063\u3066\u304f\u308c\u3093\u304b\u306a\u301c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":777981800,"id_str":"777981800","name":"\u30e1 \u30b3 \u6751 \u660e \u9999 \u30ea \u3002","screen_name":"gappemuuchan","location":"\u540d\u53e4\u5c4b\u770c\u30ca\u30a6","url":null,"description":"\u8ab0\u304c\u30b3\u30e1\u30ea\u3084\u3002 #FA #\u30a2\u30b8\u30ab\u30f3 #\u5b87\u591a\u7530\u30d2\u30ab\u30eb@mecori_2525 \u2190\u7dba\u9e97\u306a\u30c4\u30a4\u30fc\u30c8\u3092\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":968,"friends_count":968,"listed_count":8,"favourites_count":87936,"statuses_count":78668,"created_at":"Fri Aug 24 11:31:30 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000060003769\/fef3324b6b8322b3b6a800ae9785ef2b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000060003769\/fef3324b6b8322b3b6a800ae9785ef2b.jpeg","profile_background_tile":true,"profile_link_color":"088253","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607768786423250944\/ABtW4IkH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607768786423250944\/ABtW4IkH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/777981800\/1446786076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445378048,"id_str":"663728261445378048","text":"RT @the_blueprint: \"sippin on dom perrignon for health reasons...\" https:\/\/t.co\/dJ3UBwPcL7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19543099,"id_str":"19543099","name":"sabby.","screen_name":"sabrinadunn","location":"bella noche'","url":"http:\/\/www.FASHIONOFCULTURE.COM","description":"award-winning fashion blogger, naturally attractive, speaks with adlibs, uncommonly talented.","protected":false,"verified":false,"followers_count":3878,"friends_count":652,"listed_count":123,"favourites_count":524,"statuses_count":126858,"created_at":"Mon Jan 26 16:43:41 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"E0C3C3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599778435683123200\/lswt2F5I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599778435683123200\/lswt2F5I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19543099\/1446572626","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:45:37 +0000 2015","id":663714059834011648,"id_str":"663714059834011648","text":"\"sippin on dom perrignon for health reasons...\" https:\/\/t.co\/dJ3UBwPcL7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":913381,"id_str":"913381","name":"neil mccauley","screen_name":"the_blueprint","location":"atlantis, ohio","url":"http:\/\/soundcloud.com\/the-truck-jewelry-podcast","description":"astronauts don\u2019t even go to the moon anymore","protected":false,"verified":false,"followers_count":14234,"friends_count":255,"listed_count":270,"favourites_count":38104,"statuses_count":258520,"created_at":"Sun Mar 11 08:26:43 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4D1707","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000065052828\/c94e13a32a071d0f927c95d443888618.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000065052828\/c94e13a32a071d0f927c95d443888618.jpeg","profile_background_tile":true,"profile_link_color":"0A5E6B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"8D185C","profile_text_color":"3E1267","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653342223656964096\/o00Jvl5B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653342223656964096\/o00Jvl5B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/913381\/1432592680","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663713021613707264,"quoted_status_id_str":"663713021613707264","quoted_status":{"created_at":"Mon Nov 09 13:41:30 +0000 2015","id":663713021613707264,"id_str":"663713021613707264","text":"Why drinking three glasses of Champagne a week is good for your brain. https:\/\/t.co\/39DcDbTCTE https:\/\/t.co\/XsNT1vG3DA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537645111,"id_str":"537645111","name":"MUNCHIES","screen_name":"munchies","location":"Brooklyn, NY","url":"http:\/\/munchies.tv","description":"Food by @VICE. Pitch us at munchies@vice.com","protected":false,"verified":true,"followers_count":54345,"friends_count":570,"listed_count":750,"favourites_count":2996,"statuses_count":13410,"created_at":"Mon Mar 26 21:02:20 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/451471741085159425\/u29tFP_H.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/451471741085159425\/u29tFP_H.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657195601831006209\/aBdKKP1S_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657195601831006209\/aBdKKP1S_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/537645111\/1446041337","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/39DcDbTCTE","expanded_url":"http:\/\/bit.ly\/1WLQfjz","display_url":"bit.ly\/1WLQfjz","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663713020003098624,"id_str":"663713020003098624","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7eaYWIAAx5Ti.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7eaYWIAAx5Ti.png","url":"https:\/\/t.co\/XsNT1vG3DA","display_url":"pic.twitter.com\/XsNT1vG3DA","expanded_url":"http:\/\/twitter.com\/munchies\/status\/663713021613707264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":915,"h":455,"resize":"fit"},"medium":{"w":600,"h":298,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663713020003098624,"id_str":"663713020003098624","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX7eaYWIAAx5Ti.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX7eaYWIAAx5Ti.png","url":"https:\/\/t.co\/XsNT1vG3DA","display_url":"pic.twitter.com\/XsNT1vG3DA","expanded_url":"http:\/\/twitter.com\/munchies\/status\/663713021613707264\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":915,"h":455,"resize":"fit"},"medium":{"w":600,"h":298,"resize":"fit"},"small":{"w":340,"h":169,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":27,"favorite_count":17,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dJ3UBwPcL7","expanded_url":"https:\/\/twitter.com\/munchies\/status\/663713021613707264","display_url":"twitter.com\/munchies\/statu\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dJ3UBwPcL7","expanded_url":"https:\/\/twitter.com\/munchies\/status\/663713021613707264","display_url":"twitter.com\/munchies\/statu\u2026","indices":[67,90]}],"user_mentions":[{"screen_name":"the_blueprint","name":"neil mccauley","id":913381,"id_str":"913381","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432795137,"id_str":"663728261432795137","text":"I think the reason why management doesn't care is because its mostly black students who will really suffer the most anyway soooo...weeell...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2868994126,"id_str":"2868994126","name":"Mbali","screen_name":"CamillaSibanda","location":"Cape Town","url":null,"description":"AfroFeminist. Naturalista.Writer. Vernac News. Snapchat Cammmymilla","protected":false,"verified":false,"followers_count":354,"friends_count":268,"listed_count":4,"favourites_count":307,"statuses_count":6500,"created_at":"Sun Nov 09 13:52:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659715915525824512\/m2rIZ1iv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659715915525824512\/m2rIZ1iv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868994126\/1441014036","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"8b9ec16fdc0d7e55","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/8b9ec16fdc0d7e55.json","place_type":"city","name":"Cape Town","full_name":"Cape Town, South Africa","country_code":"ZA","country":"South Africa","bounding_box":{"type":"Polygon","coordinates":[[[18.318033,-34.358390],[18.318033,-33.885238],[18.659787,-33.885238],[18.659787,-34.358390]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261457960960,"id_str":"663728261457960960","text":"RT @An_141: - https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1538852498,"id_str":"1538852498","name":"\u0627\u0644\u0627\u0637\u0644\u0633\u064a #\u0645\u0627\u064a\u0642\u0627","screen_name":"zxsazxsa_2017","location":null,"url":null,"description":"\u26a0\u0645\u062d\u0627\u0648\u0644\u0629 \u0644\u0640 \u0646\u0628\u0630 \u0627\u0644\u0635\u0645\u062a \u0648 \u0623\u0634\u064a\u0627\u0621 \u0623\u062e\u0631\u0649 !!","protected":false,"verified":false,"followers_count":181,"friends_count":90,"listed_count":2,"favourites_count":158,"statuses_count":8347,"created_at":"Sat Jun 22 14:36:12 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662599700927922177\/zV5Asr8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662599700927922177\/zV5Asr8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1538852498\/1444861714","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:58 +0000 2015","id":663727486031822848,"id_str":"663727486031822848","text":"- https:\/\/t.co\/HfM2hAkGie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":577121968,"id_str":"577121968","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","screen_name":"An_141","location":"Riyadh","url":"http:\/\/ask.fm\/iAn141","description":"\u0623\u062e\u0628\u062b \u0645\u0645\u0627 \u062a\u0638\u064f\u0646\u060c \u0648\u0623\u0641\u0636\u0644 \u0645\u0645\u0627 \u062a\u062a\u0648\u0642\u0639 SnapChat\/Kik : An_141 \u0644\u0644\u0625\u0639\u0644\u0627\u0646\u0627\u062a : ads.an141@gmail.com","protected":false,"verified":false,"followers_count":179881,"friends_count":398,"listed_count":332,"favourites_count":967,"statuses_count":28930,"created_at":"Fri May 11 13:04:40 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566660024059969536\/O_uXX0Dd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/577121968\/1445965875","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":261,"favorite_count":10,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727458366136320,"id_str":"663727458366136320","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}}},{"id":663727458680729601,"id_str":"663727458680729601","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}}},{"id":663727458806575104,"id_str":"663727458806575104","indices":[2,25],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"An_141","name":"\u0627\u0644\u062f\u062d\u0645\u064a \u060c","id":577121968,"id_str":"577121968","indices":[3,10]}],"symbols":[],"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"extended_entities":{"media":[{"id":663727457980297216,"id_str":"663727457980297216","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm0CWsAAQaL9.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":209,"resize":"fit"},"medium":{"w":600,"h":370,"resize":"fit"},"large":{"w":1024,"h":632,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458366136320,"id_str":"663727458366136320","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm1eWIAAzB8O.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"medium":{"w":600,"h":429,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":979,"h":700,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458680729601,"id_str":"663727458680729601","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm2pWcAEZnH6.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"large":{"w":616,"h":328,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":181,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"},{"id":663727458806575104,"id_str":"663727458806575104","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIm3HWsAA-uhw.jpg","url":"https:\/\/t.co\/HfM2hAkGie","display_url":"pic.twitter.com\/HfM2hAkGie","expanded_url":"http:\/\/twitter.com\/An_141\/status\/663727486031822848\/photo\/1","type":"photo","sizes":{"large":{"w":674,"h":674,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663727486031822848,"source_status_id_str":"663727486031822848","source_user_id":577121968,"source_user_id_str":"577121968"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080123663"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466312704,"id_str":"663728261466312704","text":"Cybersolidaires: RT TablefemmesMtl: Femmes dans la ville: d\u00e9construire l\u2019ins\u00e9curit\u00e9 urbaine\n\u2026 https:\/\/t.co\/hKAhEXfakq","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3415466224,"id_str":"3415466224","name":"Montreal On","screen_name":"MontrealOn","location":null,"url":null,"description":"Retweeting tags #MTL and #montreal","protected":false,"verified":false,"followers_count":1298,"friends_count":0,"listed_count":1453,"favourites_count":2,"statuses_count":218900,"created_at":"Tue Aug 11 14:41:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631116226916450304\/2ErHQ3bw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631116226916450304\/2ErHQ3bw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3415466224\/1439304735","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727376606568448,"quoted_status_id_str":"663727376606568448","quoted_status":{"created_at":"Mon Nov 09 14:38:32 +0000 2015","id":663727376606568448,"id_str":"663727376606568448","text":"Femmes dans la ville: d\u00e9construire l\u2019ins\u00e9curit\u00e9 urbaine\nhttps:\/\/t.co\/xSW7fVEYIP #Montr\u00e9al #polmun","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":507591428,"id_str":"507591428","name":"Table femmes Mtl","screen_name":"TablefemmesMtl","location":"Montr\u00e9al","url":"http:\/\/www.tgfm.org","description":"Table des groupes de femmes de Montr\u00e9al","protected":false,"verified":false,"followers_count":1558,"friends_count":1101,"listed_count":50,"favourites_count":0,"statuses_count":6033,"created_at":"Tue Feb 28 16:29:32 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"420701","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/509188257\/TableFemmes-Twitter03.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/509188257\/TableFemmes-Twitter03.jpg","profile_background_tile":true,"profile_link_color":"420701","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1860548701\/TGFM-partiel_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1860548701\/TGFM-partiel_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Montr\u00e9al","indices":[80,89]},{"text":"polmun","indices":[90,97]}],"urls":[{"url":"https:\/\/t.co\/xSW7fVEYIP","expanded_url":"http:\/\/journalmetro.com\/actualites\/montreal\/870836\/deconstruire-linsecurite-urbaine\/","display_url":"journalmetro.com\/actualites\/mon\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hKAhEXfakq","expanded_url":"http:\/\/twitter.com\/Cybersolidaires\/status\/663727435301670912","display_url":"twitter.com\/Cybersolidaire\u2026","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466198016,"id_str":"663728261466198016","text":"RT @iamsacross: \u0e44\u0e1b\u0e25\u0e2d\u0e07\u0e04\u0e32\u0e40\u0e1f\u0e48\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e44\u0e17\u0e22\u0e43\u0e19\u0e25\u0e2d\u0e19\u0e14\u0e2d\u0e19 \u0e41\u0e16\u0e27 Liverpool Street \u0e01\u0e47\u0e41\u0e0b\u0e48\u0e1a\u0e14\u0e35 \u0e01\u0e32\u0e01\u0e2b\u0e21\u0e39\u0e41\u0e04\u0e1a\u0e2b\u0e21\u0e39\u0e41\u0e19\u0e48\u0e19 \u0e25\u0e30\u0e14\u0e39\u0e2a\u0e35\u0e19\u0e49\u0e33\u0e0b\u0e38\u0e1b\u0e19\u0e49\u0e2d\u0e07\u0e19\u0e35\u0e48 \ud83d\ude02 \u0e41\u0e14\u0e07\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e40\u0e22\u0e19\u0e15\u0e32\u0e42\u0e1f\u0e44\u0e2b\u0e21 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587347147,"id_str":"587347147","name":"`\u0e21\u0e38\u0e49\u0e07\u0e21\u0e34\u0e49\u0e07\u0e08\u0e31\u0e07.\u2764","screen_name":"besttymaker","location":"bangkok","url":null,"description":"LUCKY GIRL \u2728 #\uc288\ud37c\uc8fc\ub2c8\uc5b4 #\uc5d1\uc18c #GOT7 \u2661","protected":false,"verified":false,"followers_count":190,"friends_count":579,"listed_count":1,"favourites_count":840,"statuses_count":141437,"created_at":"Tue May 22 11:20:07 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000016940500\/43a1f6c330ab877c68db6eb3789cbcd3.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000016940500\/43a1f6c330ab877c68db6eb3789cbcd3.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"3F3A5A","profile_text_color":"429B8F","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660054500527308801\/J9U9JaVD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660054500527308801\/J9U9JaVD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587347147\/1385739787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:10:45 +0000 2015","id":663659985742782464,"id_str":"663659985742782464","text":"\u0e44\u0e1b\u0e25\u0e2d\u0e07\u0e04\u0e32\u0e40\u0e1f\u0e48\u0e2d\u0e32\u0e2b\u0e32\u0e23\u0e44\u0e17\u0e22\u0e43\u0e19\u0e25\u0e2d\u0e19\u0e14\u0e2d\u0e19 \u0e41\u0e16\u0e27 Liverpool Street \u0e01\u0e47\u0e41\u0e0b\u0e48\u0e1a\u0e14\u0e35 \u0e01\u0e32\u0e01\u0e2b\u0e21\u0e39\u0e41\u0e04\u0e1a\u0e2b\u0e21\u0e39\u0e41\u0e19\u0e48\u0e19 \u0e25\u0e30\u0e14\u0e39\u0e2a\u0e35\u0e19\u0e49\u0e33\u0e0b\u0e38\u0e1b\u0e19\u0e49\u0e2d\u0e07\u0e19\u0e35\u0e48 \ud83d\ude02 \u0e41\u0e14\u0e07\u0e02\u0e19\u0e32\u0e14\u0e19\u0e35\u0e49\u0e40\u0e22\u0e19\u0e15\u0e32\u0e42\u0e1f\u0e44\u0e2b\u0e21 https:\/\/t.co\/YFWebdrJvn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67585827,"id_str":"67585827","name":"SACROSS \u2605 PEACHII","screen_name":"iamsacross","location":"London, United Kingdom","url":"http:\/\/sacross.blogspot.com","description":"\u0e1c\u0e39\u0e49\u0e2b\u0e0d\u0e34\u0e07 \u0e1c\u0e21\u0e22\u0e32\u0e27 \u0e40\u0e08\u0e49\u0e32\u0e2d\u0e32\u0e23\u0e21\u0e13\u0e4c.","protected":false,"verified":false,"followers_count":25429,"friends_count":214,"listed_count":17,"favourites_count":5330,"statuses_count":28292,"created_at":"Fri Aug 21 11:40:44 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8A8C7F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/473795673\/bck.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/473795673\/bck.gif","profile_background_tile":true,"profile_link_color":"A30D0D","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"2B1300","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/471941403543470082\/u2FZ3aO__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/471941403543470082\/u2FZ3aO__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67585827\/1416416005","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":223,"favorite_count":18,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663659928444358656,"id_str":"663659928444358656","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663659928444358656,"id_str":"663659928444358656","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663659929992081409,"id_str":"663659929992081409","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLMKrWsAEH2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLMKrWsAEH2T7.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663659930038239232,"id_str":"663659930038239232","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLMK2XAAALfsl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLMK2XAAALfsl.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iamsacross","name":"SACROSS \u2605 PEACHII","id":67585827,"id_str":"67585827","indices":[3,14]}],"symbols":[],"media":[{"id":663659928444358656,"id_str":"663659928444358656","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663659985742782464,"source_status_id_str":"663659985742782464","source_user_id":67585827,"source_user_id_str":"67585827"}]},"extended_entities":{"media":[{"id":663659928444358656,"id_str":"663659928444358656","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLME6WUAAwueS.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663659985742782464,"source_status_id_str":"663659985742782464","source_user_id":67585827,"source_user_id_str":"67585827"},{"id":663659929992081409,"id_str":"663659929992081409","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLMKrWsAEH2T7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLMKrWsAEH2T7.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663659985742782464,"source_status_id_str":"663659985742782464","source_user_id":67585827,"source_user_id_str":"67585827"},{"id":663659930038239232,"id_str":"663659930038239232","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXLMK2XAAALfsl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXLMK2XAAALfsl.jpg","url":"https:\/\/t.co\/YFWebdrJvn","display_url":"pic.twitter.com\/YFWebdrJvn","expanded_url":"http:\/\/twitter.com\/iamsacross\/status\/663659985742782464\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663659985742782464,"source_status_id_str":"663659985742782464","source_user_id":67585827,"source_user_id_str":"67585827"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449588736,"id_str":"663728261449588736","text":"mi mare no quiere que vaya al corr\u00e1 ... que las gallinita pikaban el pan , que las gallinita pikaban elpan \ud83c\udf5e\ud83c\udf5e\ud83d\udc14\ud83d\udc13\njajajajaj#letras #detolavia","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":360010079,"id_str":"360010079","name":"Luisa","screen_name":"reivar83","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":174,"friends_count":214,"listed_count":3,"favourites_count":138,"statuses_count":2382,"created_at":"Mon Aug 22 15:01:04 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661247794548707329\/xGfBnZyp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661247794548707329\/xGfBnZyp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/360010079\/1446488733","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"detolavia","indices":[129,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261462155264,"id_str":"663728261462155264","text":"@kevvwill I look back at the 2011\/12 match vids I have and that may have been our most talented squad. IF not for injuries and bad luck..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":21654935,"in_reply_to_user_id_str":"21654935","in_reply_to_screen_name":"kevvwill","user":{"id":1973410820,"id_str":"1973410820","name":"Prateek Palsule","screen_name":"PalsulePrateek","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":280,"listed_count":0,"favourites_count":1,"statuses_count":63,"created_at":"Sun Oct 20 01:19:08 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kevvwill","name":"Soci No. 101,978","id":21654935,"id_str":"21654935","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123664"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432606724,"id_str":"663728261432606724","text":"RT @weareone_km: \u9045\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\n\u62e1\u6563\u5e0c\u671b\u3067\u3059\n\u3042\u306e\u5973\u6027\u306e\u5143\u307e\u3067\u5c4a\u304d\u307e\u3059\u3088\u3046\u306b\u3002\n#EXO\n#luxion\n#\u62e1\u6563\u5e0c\u671b https:\/\/t.co\/QTuNi0S0d6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2842259934,"id_str":"2842259934","name":"\uce74\ub098\ubbf8","screen_name":"vivi_abc_dr","location":null,"url":null,"description":"1\u4eba\u30822\u4eba\u30823\u4eba\u30825\u4eba\u3082\u307f\u3093\u306a\u3060\u3044\u3059\u304d\u3118\u3085( \u02d8 \u00b3\u02d8)\u2665\u27b0\u2665\u27b0\u2665","protected":false,"verified":false,"followers_count":290,"friends_count":286,"listed_count":0,"favourites_count":2381,"statuses_count":3534,"created_at":"Mon Oct 06 11:57:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/542625654923984896\/5-iKoFw5_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/542625654923984896\/5-iKoFw5_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2842259934\/1418207012","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:04:53 +0000 2015","id":663718908499726337,"id_str":"663718908499726337","text":"\u9045\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\n\u62e1\u6563\u5e0c\u671b\u3067\u3059\n\u3042\u306e\u5973\u6027\u306e\u5143\u307e\u3067\u5c4a\u304d\u307e\u3059\u3088\u3046\u306b\u3002\n#EXO\n#luxion\n#\u62e1\u6563\u5e0c\u671b https:\/\/t.co\/QTuNi0S0d6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877829953,"id_str":"3877829953","name":"\ud06c\ub9ac\uc2a4\ud0c8","screen_name":"weareone_km","location":null,"url":null,"description":"EXO\u307a\u3093\u306e\u9ad8\u6821\u751f \u3061\u3083\u3093\u3079\u304f\u3088\u308a\u306e\u304a\u30fc\u308b\u307a\u3093\uff01 \u3051\u30fc\u307d\u307a\u3093\u306f\u30d5\u30a9\u30ed\u30d0\u7387100\uff05 \u6c17\u8efd\u306b\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01 BTS\u21e8\u30c6\u30c6\u30e6\u30f3\u30ae\u3055\u3093 BIGBANG\u21e8T.O.P\u3055\u3093 SHINee\u21e8\u30df\u30f3\u30db luxion7\u65e5\u53c2\u6226\u266a\u307e\u3053\u307e\u308a\u21e8@chanbak_eunhae\u2661","protected":false,"verified":false,"followers_count":749,"friends_count":801,"listed_count":2,"favourites_count":483,"statuses_count":7142,"created_at":"Tue Oct 13 06:28:11 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653862859521196032\/RR5A-u-g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653862859521196032\/RR5A-u-g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3877829953\/1444725048","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":226,"favorite_count":96,"entities":{"hashtags":[{"text":"EXO","indices":[36,40]},{"text":"luxion","indices":[41,48]},{"text":"\u62e1\u6563\u5e0c\u671b","indices":[49,54]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718865327648768,"id_str":"663718865327648768","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718865327648768,"id_str":"663718865327648768","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}}},{"id":663718865751314432,"id_str":"663718865751314432","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyrfVEAA-P2j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyrfVEAA-P2j.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[53,57]},{"text":"luxion","indices":[58,65]},{"text":"\u62e1\u6563\u5e0c\u671b","indices":[66,71]}],"urls":[],"user_mentions":[{"screen_name":"weareone_km","name":"\ud06c\ub9ac\uc2a4\ud0c8","id":3877829953,"id_str":"3877829953","indices":[3,15]}],"symbols":[],"media":[{"id":663718865327648768,"id_str":"663718865327648768","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663718908499726337,"source_status_id_str":"663718908499726337","source_user_id":3877829953,"source_user_id_str":"3877829953"}]},"extended_entities":{"media":[{"id":663718865327648768,"id_str":"663718865327648768","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyp6UcAA6ZIM.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"medium":{"w":575,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":605,"resize":"fit"},"large":{"w":575,"h":1024,"resize":"fit"}},"source_status_id":663718908499726337,"source_status_id_str":"663718908499726337","source_user_id":3877829953,"source_user_id_str":"3877829953"},{"id":663718865751314432,"id_str":"663718865751314432","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAyrfVEAA-P2j.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAyrfVEAA-P2j.jpg","url":"https:\/\/t.co\/QTuNi0S0d6","display_url":"pic.twitter.com\/QTuNi0S0d6","expanded_url":"http:\/\/twitter.com\/weareone_km\/status\/663718908499726337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}},"source_status_id":663718908499726337,"source_status_id_str":"663718908499726337","source_user_id":3877829953,"source_user_id_str":"3877829953"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261441183744,"id_str":"663728261441183744","text":"It\u2019s incredible how much effort I put into my laziness.","source":"\u003ca href=\"http:\/\/cacorp.de\" rel=\"nofollow\"\u003eCA Tweetdeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":364170889,"id_str":"364170889","name":"Olaf The Snowman","screen_name":"SnowyManSays","location":"Arendelle","url":null,"description":"I'm Olaf. And I like warm hugs. *Parody*","protected":false,"verified":false,"followers_count":34638,"friends_count":16397,"listed_count":6,"favourites_count":0,"statuses_count":8654,"created_at":"Mon Aug 29 09:51:17 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169199571\/kVsKgGCE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169199571\/kVsKgGCE.jpeg","profile_background_tile":false,"profile_link_color":"FF7700","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423822690961469440\/Er7c8Wbc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423822690961469440\/Er7c8Wbc_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/364170889\/1389882200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123659"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445386240,"id_str":"663728261445386240","text":"RT @twi01225007: @asoo_oma @alkuwari080 \u0645\u0627\u0628\u0639\u062f\u0627\u0644\u0643\u0641\u0631 \u0630\u0646\u0628 \u0645\u0639\u0631\u0641 \u0627\u0646 \u0627\u0644\u0634\u064a\u0639\u0629 \u064a\u0645\u062c\u0633\u0648\u0646 \u0627\u0628\u0646\u0627\u0626\u0647\u0645 \u064a\u0643\u0646\u0648\u0646 \u062d\u0642\u062f\u062f\u0641\u064a\u0646 \u0639\u0644\u0649 \u0639\u0644\u0649 \u0631\u0645\u0648\u0632 \u0627\u0644\u0627\u0633\u0644\u0627\u0645 \u0648\u0627\u0644\u0639\u0631\u0628 https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3288650690,"id_str":"3288650690","name":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","screen_name":"alkuwari080","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":446,"friends_count":1866,"listed_count":1,"favourites_count":2110,"statuses_count":6946,"created_at":"Thu Jul 23 09:35:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634348414214402048\/ylfj3ha5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634348414214402048\/ylfj3ha5_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:05:42 +0000 2015","id":663719114578501632,"id_str":"663719114578501632","text":"@asoo_oma @alkuwari080 \u0645\u0627\u0628\u0639\u062f\u0627\u0644\u0643\u0641\u0631 \u0630\u0646\u0628 \u0645\u0639\u0631\u0641 \u0627\u0646 \u0627\u0644\u0634\u064a\u0639\u0629 \u064a\u0645\u062c\u0633\u0648\u0646 \u0627\u0628\u0646\u0627\u0626\u0647\u0645 \u064a\u0643\u0646\u0648\u0646 \u062d\u0642\u062f\u062f\u0641\u064a\u0646 \u0639\u0644\u0649 \u0639\u0644\u0649 \u0631\u0645\u0648\u0632 \u0627\u0644\u0627\u0633\u0644\u0627\u0645 \u0648\u0627\u0644\u0639\u0631\u0628 https:\/\/t.co\/ecv95n6qSW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663619099134660608,"in_reply_to_status_id_str":"663619099134660608","in_reply_to_user_id":2336726695,"in_reply_to_user_id_str":"2336726695","in_reply_to_screen_name":"asoo_oma","user":{"id":3679934176,"id_str":"3679934176","name":"\u0645\u0632\u0627\u062d\u0645","screen_name":"twi01225007","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":163,"friends_count":129,"listed_count":0,"favourites_count":873,"statuses_count":1864,"created_at":"Wed Sep 16 23:50:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663503503982247936\/33Z9JrkX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663503503982247936\/33Z9JrkX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3679934176\/1447026609","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asoo_oma","name":"\u0645\u062d\u0628\u0643\u0645 \u0632\u064a\u062f\u0627\u0646 ..zidan","id":2336726695,"id_str":"2336726695","indices":[0,9]},{"screen_name":"alkuwari080","name":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","id":3288650690,"id_str":"3288650690","indices":[10,22]}],"symbols":[],"media":[{"id":663719088443760640,"id_str":"663719088443760640","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","url":"https:\/\/t.co\/ecv95n6qSW","display_url":"pic.twitter.com\/ecv95n6qSW","expanded_url":"http:\/\/twitter.com\/twi01225007\/status\/663719114578501632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":837,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719088443760640,"id_str":"663719088443760640","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","url":"https:\/\/t.co\/ecv95n6qSW","display_url":"pic.twitter.com\/ecv95n6qSW","expanded_url":"http:\/\/twitter.com\/twi01225007\/status\/663719114578501632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":837,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"twi01225007","name":"\u0645\u0632\u0627\u062d\u0645","id":3679934176,"id_str":"3679934176","indices":[3,15]},{"screen_name":"asoo_oma","name":"\u0645\u062d\u0628\u0643\u0645 \u0632\u064a\u062f\u0627\u0646 ..zidan","id":2336726695,"id_str":"2336726695","indices":[17,26]},{"screen_name":"alkuwari080","name":"\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647","id":3288650690,"id_str":"3288650690","indices":[27,39]}],"symbols":[],"media":[{"id":663719088443760640,"id_str":"663719088443760640","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","url":"https:\/\/t.co\/ecv95n6qSW","display_url":"pic.twitter.com\/ecv95n6qSW","expanded_url":"http:\/\/twitter.com\/twi01225007\/status\/663719114578501632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":837,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}},"source_status_id":663719114578501632,"source_status_id_str":"663719114578501632","source_user_id":3679934176,"source_user_id_str":"3679934176"}]},"extended_entities":{"media":[{"id":663719088443760640,"id_str":"663719088443760640","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYA_pFWIAARks6.jpg","url":"https:\/\/t.co\/ecv95n6qSW","display_url":"pic.twitter.com\/ecv95n6qSW","expanded_url":"http:\/\/twitter.com\/twi01225007\/status\/663719114578501632\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":837,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"},"medium":{"w":600,"h":490,"resize":"fit"}},"source_status_id":663719114578501632,"source_status_id_str":"663719114578501632","source_user_id":3679934176,"source_user_id_str":"3679934176"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261436829697,"id_str":"663728261436829697","text":"@syaz31 gentle?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728130037706752,"in_reply_to_status_id_str":"663728130037706752","in_reply_to_user_id":279799022,"in_reply_to_user_id_str":"279799022","in_reply_to_screen_name":"syaz31","user":{"id":793723670,"id_str":"793723670","name":"pis","screen_name":"Hafizshm","location":null,"url":"http:\/\/instagram.com\/hafizhsham","description":"COYG","protected":false,"verified":false,"followers_count":615,"friends_count":505,"listed_count":3,"favourites_count":1649,"statuses_count":27344,"created_at":"Fri Aug 31 12:07:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436430269893992448\/NhSerEc4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436430269893992448\/NhSerEc4.jpeg","profile_background_tile":true,"profile_link_color":"54A2F5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"009999","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663725099309096960\/nDzTzl6A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663725099309096960\/nDzTzl6A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/793723670\/1426591938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syaz31","name":"Yeon","id":279799022,"id_str":"279799022","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123658"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261470425088,"id_str":"663728261470425088","text":"@25miyahiyo \u7206\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728080939188224,"in_reply_to_status_id_str":"663728080939188224","in_reply_to_user_id":2565381373,"in_reply_to_user_id_str":"2565381373","in_reply_to_screen_name":"25miyahiyo","user":{"id":2965987350,"id_str":"2965987350","name":"\u51db\u6c70","screen_name":"alchemist_snow","location":"\u5730\u7403","url":null,"description":"\u30aa\u30bf\u30af\u3067\u3059\u3002\u30ed\u30ea\u30fc\u30bf\u306fpretty\u4e2d\u5fc3\u306b\u30af\u30e9\u30b7\u30ab\u30eb\u3084\u3089\u3001\u30a2\u30cb\u30e1\u306f\u30da\u30c0\u30eb\u304c\u597d\u304d\u306a\u306e\u3067\u30af\u30e9\u30b9\u30bf\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044\u3067\u3059\u3002\u9cf4\u5b50\u8352\u5317\u6771\u5802\u5dfb\u5cf6\u7530\u6240 \u3068\u3063\u304f\u306e\u6614\u306b\u6210\u4eba\u3002#\u85ac\u7530\u5f0f\u30d8\u30c3\u30c0\u30fc\n\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30d6\u30ed\u30c3\u30af\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":191,"friends_count":274,"listed_count":6,"favourites_count":687,"statuses_count":5497,"created_at":"Thu Jan 08 12:00:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660579660921634816\/OQAm7MdN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660579660921634816\/OQAm7MdN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2965987350\/1439791600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"25miyahiyo","name":"\u3072\u3087\u3046\u3089\u306f\u6cbc\u306b\u6c88\u3080","id":2565381373,"id_str":"2565381373","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123666"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261453578241,"id_str":"663728261453578241","text":"RT @_megankiely: Next year has the potential to be so quality, so many things to look forward to \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3003895662,"id_str":"3003895662","name":"ig:buddybaw\u2122","screen_name":"ohyeaaaab","location":"Lafayette, LA","url":null,"description":"godfirst | celticsnation | 100","protected":false,"verified":false,"followers_count":1681,"friends_count":1516,"listed_count":2,"favourites_count":3062,"statuses_count":23830,"created_at":"Fri Jan 30 22:01:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662495521462841344\/6mfvr12H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662495521462841344\/6mfvr12H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3003895662\/1446429298","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:42:25 +0000 2015","id":663486761201500160,"id_str":"663486761201500160","text":"Next year has the potential to be so quality, so many things to look forward to \ud83d\ude0c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":37969128,"id_str":"37969128","name":"Meg","screen_name":"_megankiely","location":"West Midlands, England","url":null,"description":"Instagram- megankielyy","protected":false,"verified":false,"followers_count":1390,"friends_count":991,"listed_count":0,"favourites_count":5947,"statuses_count":6464,"created_at":"Tue May 05 17:16:27 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/814648348\/ec64593521147a4f49a57d4488153a71.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/814648348\/ec64593521147a4f49a57d4488153a71.png","profile_background_tile":true,"profile_link_color":"B8AFB7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FEFAFE","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663106426596913152\/WY4XpVAj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663106426596913152\/WY4XpVAj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/37969128\/1441325758","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_megankiely","name":"Meg","id":37969128,"id_str":"37969128","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123662"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261436801024,"id_str":"663728261436801024","text":"@noayuzulovepooh \n\n\u30a4\u30a8\u30fc\u30fc\u30fc\u30b9\u30de\u30a4\u30c3\u30a8\u30f3\u30c3\u30bc\u30eb\u30c3\uff01\uff3c\u2661\uff0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727846901215235,"in_reply_to_status_id_str":"663727846901215235","in_reply_to_user_id":3999448525,"in_reply_to_user_id_str":"3999448525","in_reply_to_screen_name":"noayuzulovepooh","user":{"id":4166142498,"id_str":"4166142498","name":"\u3092\u304b\u3057","screen_name":"yu__________k_7","location":null,"url":"http:\/\/twpf.jp\/yu__________k_7","description":"98LINE\uffe4\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30c8\u8996\u8074\u6b7410\u5e74\uffe4\u7fbd\u751f\u3055\u3093\u5fdc\u63f4\uff01\uffe412.26\u5168\u65e5\u672c\u306e\u30c1\u30b1\u30c3\u30c8\u3092\u63a2\u3057\u3066\u3044\u307e\u3059\u3002\u8a73\u3057\u304f\u306f\u2b07","protected":false,"verified":false,"followers_count":19,"friends_count":59,"listed_count":0,"favourites_count":37,"statuses_count":123,"created_at":"Sun Nov 08 08:23:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663297976874340352\/UmdnUS7V_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663297976874340352\/UmdnUS7V_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4166142498\/1446977535","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noayuzulovepooh","name":"\u3086\u3065\u306e\u3042","id":3999448525,"id_str":"3999448525","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123658"} +{"delete":{"status":{"id":518813422461276162,"id_str":"518813422461276162","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080123761"}} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261461966848,"id_str":"663728261461966848","text":"@sis15a \u30d4\u30f3\u30af\u30ec\u30c7\u30a3\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728060336726016,"in_reply_to_status_id_str":"663728060336726016","in_reply_to_user_id":3099754579,"in_reply_to_user_id_str":"3099754579","in_reply_to_screen_name":"sis15a","user":{"id":3178090346,"id_str":"3178090346","name":"\u30b5\u30c8\u30b7@\u30d4\u30ab\u30c1\u30e5\u30a6\u5927\u597d\u304d","screen_name":"9f2e3325b4584f7","location":"\u30b5\u30d5\u30a1\u30ea\u30be\u30fc\u30f3\uff08\u30aa\u30e1\u30ac\uff09","url":"http:\/\/twpf.jp\/9f2e3325b4584f7","description":"\u540d\u524dSATOSHI\uff08\u30b5\u30c8\u30b7)\n\u8a71\u3057\u76f8\u624b(@xygoka)(@Ritoning8810)\n\u61a7\u308c\u308b\u7d75(@oekaki_din)\n\u53ef\u611b\u3044\u2665\u30c4\u30bf\u30fc\u30b8\u30e3\n\uff08@yura_yura_26)\u30e2\u30d5\u30e2\u30d5\u2665(@rsrml2)\n\u597d\u304d\u306a\u30dd\u30b1\u30e2\u30f3\u306f\u30a2\u30a4\u30b3\u30f3\u306b\u3044\u308b\u5168\u90e8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":433,"friends_count":330,"listed_count":7,"favourites_count":4697,"statuses_count":15451,"created_at":"Tue Apr 28 10:53:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663701998051586048\/k6kH0uPd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663701998051586048\/k6kH0uPd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178090346\/1447073444","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sis15a","name":"\u84bc@\u76ee\u6307\u3059\u306f\u30ed\u30f3\u30b0\u30d8\u30a2\u30fc\uff08\u7537","id":3099754579,"id_str":"3099754579","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123664"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261441019908,"id_str":"663728261441019908","text":"RT @tv_www_: \u30de\u30b5\u30fc\u30b7\u30fc\u307b\u3093\u3068\u6700\u5f37\u3060\u3063\u305f\n\n#\u5b66\u6821\u3078\u884c\u3053\u3046\uff01\n#\u6771\u4eac\u30e9\u30d6\u30b9\u30c8\u30fc\u30ea\u30fc https:\/\/t.co\/8zOlg3vEwe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459774376,"id_str":"2459774376","name":"\u5bae\u57ce\u3086\u308a","screen_name":"YuriYuyuriij","location":null,"url":null,"description":"\ufe0e\u524d\u539f\u30b5\u30c3\u30ab\u30fc2\u5e74 #4 \u82f1\u8a9e\u79d1","protected":false,"verified":false,"followers_count":695,"friends_count":321,"listed_count":2,"favourites_count":16589,"statuses_count":8091,"created_at":"Wed Apr 23 14:01:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661548832807780353\/EPRO3fgo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661548832807780353\/EPRO3fgo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459774376\/1444436558","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 02:07:19 +0000 2015","id":662088772884938752,"id_str":"662088772884938752","text":"\u30de\u30b5\u30fc\u30b7\u30fc\u307b\u3093\u3068\u6700\u5f37\u3060\u3063\u305f\n\n#\u5b66\u6821\u3078\u884c\u3053\u3046\uff01\n#\u6771\u4eac\u30e9\u30d6\u30b9\u30c8\u30fc\u30ea\u30fc https:\/\/t.co\/8zOlg3vEwe","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321391116,"id_str":"3321391116","name":"\u304a\u3082\u3057\u308d\u30c6\u30ec\u30d3\u5834\u9762\u96c6","screen_name":"tv_www_","location":null,"url":null,"description":"\u30c6\u30ec\u30d3\u756a\u7d44\u306e\u304a\u3082\u3057\u308d\u5834\u9762\u3092\u3064\u3076\u3084\u304d\u307e\u3059\uff01\u601d\u308f\u305a\u7b11\u3063\u3066\u3057\u307e\u3063\u305f\u30b7\u30fc\u30f3\u3084\u4f55\u56de\u3067\u3082\u898b\u305f\u304f\u306a\u308b\u3088\u3046\u306a\u7206\u7b11\u30b7\u30fc\u30f3\u3092\u304a\u5c4a\u3051\u266a\u6c17\u8efd\u306bRT&\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u306d\u304c\u3044\u3057\u307e\u3059\u2606RT\u3057\u3066\u3044\u305f\u3060\u3044\u305f\u65b9\u306b\u306f\u30d5\u30a9\u30ed\u30fc\u3059\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":2559,"friends_count":1088,"listed_count":2,"favourites_count":0,"statuses_count":1095,"created_at":"Thu Aug 20 14:34:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/634792963315339264\/qHLSOe_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/634792963315339264\/qHLSOe_Z_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4077,"favorite_count":5423,"entities":{"hashtags":[{"text":"\u5b66\u6821\u3078\u884c\u3053\u3046","indices":[15,22]},{"text":"\u6771\u4eac\u30e9\u30d6\u30b9\u30c8\u30fc\u30ea\u30fc","indices":[24,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661811824715628544,"id_str":"661811824715628544","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","url":"https:\/\/t.co\/8zOlg3vEwe","display_url":"pic.twitter.com\/8zOlg3vEwe","expanded_url":"http:\/\/twitter.com\/1997TBS2008\/status\/661811892562739203\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661811892562739203,"source_status_id_str":"661811892562739203","source_user_id":2870400955,"source_user_id_str":"2870400955"}]},"extended_entities":{"media":[{"id":661811824715628544,"id_str":"661811824715628544","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","url":"https:\/\/t.co\/8zOlg3vEwe","display_url":"pic.twitter.com\/8zOlg3vEwe","expanded_url":"http:\/\/twitter.com\/1997TBS2008\/status\/661811892562739203\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661811892562739203,"source_status_id_str":"661811892562739203","source_user_id":2870400955,"source_user_id_str":"2870400955","video_info":{"aspect_ratio":[16,9],"duration_millis":29620,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/640x360\/YmP43gtyPVxTJlMW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/pl\/_1dcFSv99w6mMKfC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/320x180\/bCeUnWKUAHdS2VYB.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/640x360\/YmP43gtyPVxTJlMW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/pl\/_1dcFSv99w6mMKfC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5b66\u6821\u3078\u884c\u3053\u3046","indices":[28,35]},{"text":"\u6771\u4eac\u30e9\u30d6\u30b9\u30c8\u30fc\u30ea\u30fc","indices":[37,47]}],"urls":[],"user_mentions":[{"screen_name":"tv_www_","name":"\u304a\u3082\u3057\u308d\u30c6\u30ec\u30d3\u5834\u9762\u96c6","id":3321391116,"id_str":"3321391116","indices":[3,11]}],"symbols":[],"media":[{"id":661811824715628544,"id_str":"661811824715628544","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","url":"https:\/\/t.co\/8zOlg3vEwe","display_url":"pic.twitter.com\/8zOlg3vEwe","expanded_url":"http:\/\/twitter.com\/1997TBS2008\/status\/661811892562739203\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661811892562739203,"source_status_id_str":"661811892562739203","source_user_id":2870400955,"source_user_id_str":"2870400955"}]},"extended_entities":{"media":[{"id":661811824715628544,"id_str":"661811824715628544","indices":[48,71],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/661811824715628544\/pu\/img\/u3b00TPF-RR8rUQO.jpg","url":"https:\/\/t.co\/8zOlg3vEwe","display_url":"pic.twitter.com\/8zOlg3vEwe","expanded_url":"http:\/\/twitter.com\/1997TBS2008\/status\/661811892562739203\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":661811892562739203,"source_status_id_str":"661811892562739203","source_user_id":2870400955,"source_user_id_str":"2870400955","video_info":{"aspect_ratio":[16,9],"duration_millis":29620,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/640x360\/YmP43gtyPVxTJlMW.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/pl\/_1dcFSv99w6mMKfC.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/320x180\/bCeUnWKUAHdS2VYB.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/vid\/640x360\/YmP43gtyPVxTJlMW.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/661811824715628544\/pu\/pl\/_1dcFSv99w6mMKfC.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123659"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445214208,"id_str":"663728261445214208","text":"@DineshDSouza @VincentLombar13 I heard him mention it once, but no response.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663017646695190528,"in_reply_to_status_id_str":"663017646695190528","in_reply_to_user_id":91882544,"in_reply_to_user_id_str":"91882544","in_reply_to_screen_name":"DineshDSouza","user":{"id":525674712,"id_str":"525674712","name":"Dan Higgins","screen_name":"boxcoach_dan","location":"Medicine Hat AB","url":null,"description":"Conservative oilpatch redneck","protected":false,"verified":false,"followers_count":1146,"friends_count":1123,"listed_count":11,"favourites_count":18,"statuses_count":10786,"created_at":"Thu Mar 15 19:27:31 +0000 2012","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2458156348\/n8fto7m9513640o254z7_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2458156348\/n8fto7m9513640o254z7_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DineshDSouza","name":"Dinesh D'Souza","id":91882544,"id_str":"91882544","indices":[0,13]},{"screen_name":"VincentLombar13","name":"Vincent Lombardi","id":3408850205,"id_str":"3408850205","indices":[14,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445189632,"id_str":"663728261445189632","text":"@naburaengi \ub2f9\uc2e0\uc758 \uc774\uc9c0\uba54\ub97c \uc751\uc6d0\ud569\ub2c8\ub2e4 [b \ubd90\uc5c5]","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728019765260288,"in_reply_to_status_id_str":"663728019765260288","in_reply_to_user_id":2965107547,"in_reply_to_user_id_str":"2965107547","in_reply_to_screen_name":"naburaengi","user":{"id":3186600235,"id_str":"3186600235","name":"\uc77c\uc9c0\ub97c \uc368\ub77c \uafb8\uc6b0","screen_name":"021merry","location":"\uc721\uce60\uacf5\ud314","url":null,"description":"\uc778\uc131\uac70\uc9c0\uc784","protected":false,"verified":false,"followers_count":72,"friends_count":84,"listed_count":0,"favourites_count":2424,"statuses_count":9255,"created_at":"Wed May 06 11:52:14 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658600584388304896\/qDfk21vr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658600584388304896\/qDfk21vr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3186600235\/1446913582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"naburaengi","name":"\ucee4\ubbf8\uc158 \ubc1b\ub294 \ub098\ub7ad","id":2965107547,"id_str":"2965107547","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449388032,"id_str":"663728261449388032","text":"Russia's Syria intervention and the implications for the South #Caucusas - @ZaurShiriyev via @JamestownTweets https:\/\/t.co\/KXfEE9UTKj","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3130988861,"id_str":"3130988861","name":"QE II Academy","screen_name":"QEII_Academy","location":"London","url":"http:\/\/www.chathamhouse.org\/academy","description":"Official Twitter account of the Queen Elizabeth II Academy for Leadership in International Affairs at @ChathamHouse Retweets\/Follow \u2260 endorsement","protected":false,"verified":false,"followers_count":179,"friends_count":312,"listed_count":7,"favourites_count":15,"statuses_count":428,"created_at":"Wed Apr 01 09:05:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583194083390279680\/EwTIGJVz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583194083390279680\/EwTIGJVz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3130988861\/1427879584","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Caucusas","indices":[63,72]}],"urls":[{"url":"https:\/\/t.co\/KXfEE9UTKj","expanded_url":"http:\/\/bit.ly\/1MN7662","display_url":"bit.ly\/1MN7662","indices":[111,134]}],"user_mentions":[{"screen_name":"ZaurShiriyev","name":"Zaur Shiriyev","id":67359961,"id_str":"67359961","indices":[75,88]},{"screen_name":"JamestownTweets","name":"Jamestown Foundation","id":256053751,"id_str":"256053751","indices":[93,109]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261437005824,"id_str":"663728261437005824","text":"RT @Oriannysosa: CO\u00d1O QUIERO COMO 20 CAJAS. https:\/\/t.co\/oqaZZg1x20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":623017952,"id_str":"623017952","name":"e","screen_name":"endercg","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1067,"friends_count":792,"listed_count":6,"favourites_count":426,"statuses_count":26040,"created_at":"Sat Jun 30 18:12:03 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000084587736\/488375ea7937479cf35b97a867ffe46c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000084587736\/488375ea7937479cf35b97a867ffe46c.jpeg","profile_background_tile":true,"profile_link_color":"B700FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658650156737404928\/G1Wt_7JO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658650156737404928\/G1Wt_7JO_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 21:03:10 +0000 2015","id":663461782950932480,"id_str":"663461782950932480","text":"CO\u00d1O QUIERO COMO 20 CAJAS. https:\/\/t.co\/oqaZZg1x20","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":179952404,"id_str":"179952404","name":"OriannyNS","screen_name":"Oriannysosa","location":"Guarenas","url":null,"description":"18 , Una leona jam\u00e1s se gira cuando una perra ladra , Ni tan buena ni tan mala casi mala.","protected":false,"verified":false,"followers_count":274,"friends_count":227,"listed_count":4,"favourites_count":1478,"statuses_count":10972,"created_at":"Wed Aug 18 13:53:08 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/516111530740297728\/5Vek4lzS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/516111530740297728\/5Vek4lzS.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657396839780630528\/JwTjppRQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657396839780630528\/JwTjppRQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/179952404\/1446565521","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663461781088690176,"id_str":"663461781088690176","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","url":"https:\/\/t.co\/oqaZZg1x20","display_url":"pic.twitter.com\/oqaZZg1x20","expanded_url":"http:\/\/twitter.com\/Oriannysosa\/status\/663461782950932480\/photo\/1","type":"photo","sizes":{"large":{"w":483,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":483,"h":407,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663461781088690176,"id_str":"663461781088690176","indices":[27,50],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","url":"https:\/\/t.co\/oqaZZg1x20","display_url":"pic.twitter.com\/oqaZZg1x20","expanded_url":"http:\/\/twitter.com\/Oriannysosa\/status\/663461782950932480\/photo\/1","type":"photo","sizes":{"large":{"w":483,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":483,"h":407,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Oriannysosa","name":"OriannyNS","id":179952404,"id_str":"179952404","indices":[3,15]}],"symbols":[],"media":[{"id":663461781088690176,"id_str":"663461781088690176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","url":"https:\/\/t.co\/oqaZZg1x20","display_url":"pic.twitter.com\/oqaZZg1x20","expanded_url":"http:\/\/twitter.com\/Oriannysosa\/status\/663461782950932480\/photo\/1","type":"photo","sizes":{"large":{"w":483,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":483,"h":407,"resize":"fit"}},"source_status_id":663461782950932480,"source_status_id_str":"663461782950932480","source_user_id":179952404,"source_user_id_str":"179952404"}]},"extended_entities":{"media":[{"id":663461781088690176,"id_str":"663461781088690176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUW-YfW4AAPiLC.jpg","url":"https:\/\/t.co\/oqaZZg1x20","display_url":"pic.twitter.com\/oqaZZg1x20","expanded_url":"http:\/\/twitter.com\/Oriannysosa\/status\/663461782950932480\/photo\/1","type":"photo","sizes":{"large":{"w":483,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":286,"resize":"fit"},"medium":{"w":483,"h":407,"resize":"fit"}},"source_status_id":663461782950932480,"source_status_id_str":"663461782950932480","source_user_id":179952404,"source_user_id_str":"179952404"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123658"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449572352,"id_str":"663728261449572352","text":"RT @thetype5sos: like if youre online \u0361\u00b0 \u035c\u0296 \u0361\u00b0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3315106280,"id_str":"3315106280","name":"Na Dia","screen_name":"_pizzahead_","location":"The New Broken Scene","url":null,"description":"Music expresses what cannot be put into words I like to think, and I think the band makes a good go at it.\n-Steven Tyler\n\/\/THE NEW BROKEN SCENE 2015","protected":false,"verified":false,"followers_count":65,"friends_count":38,"listed_count":0,"favourites_count":354,"statuses_count":1889,"created_at":"Fri Aug 14 14:03:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659475570397442048\/2hrl_NC1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659475570397442048\/2hrl_NC1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3315106280\/1446066201","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:35 +0000 2015","id":663725122906386432,"id_str":"663725122906386432","text":"like if youre online \u0361\u00b0 \u035c\u0296 \u0361\u00b0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2978706496,"id_str":"2978706496","name":"5sos the type","screen_name":"thetype5sos","location":"michael's ff here:","url":"http:\/\/wattpad.com\/user\/nicolequia","description":"5sos may be a little like this \u30fd(*\u2312\u2207\u2312*)\uff89 || @mgclifflol @5sosant","protected":false,"verified":false,"followers_count":3428,"friends_count":17,"listed_count":8,"favourites_count":108,"statuses_count":387,"created_at":"Wed Jan 14 20:11:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639640017523113984\/MQylrTfH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639640017523113984\/MQylrTfH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2978706496\/1441337051","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"thetype5sos","name":"5sos the type","id":2978706496,"id_str":"2978706496","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466312705,"id_str":"663728261466312705","text":"Caxorr\u00e3o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":219119334,"id_str":"219119334","name":"isa","screen_name":"isaregis_","location":null,"url":null,"description":"music is my aeroplane","protected":false,"verified":false,"followers_count":364,"friends_count":357,"listed_count":2,"favourites_count":259,"statuses_count":17692,"created_at":"Tue Nov 23 23:59:43 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/626163378\/31sbhxovdpzj607aw2dt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/626163378\/31sbhxovdpzj607aw2dt.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FAFAFA","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660959099023204352\/fnDJ7ZbY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660959099023204352\/fnDJ7ZbY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/219119334\/1442625008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432676353,"id_str":"663728261432676353","text":"Your laissez-faire management style works wonders today as lon... More for Gemini https:\/\/t.co\/fdgzFAIUTX","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1589789816,"id_str":"1589789816","name":"Ty \u00a9","screen_name":"____TwentyThree","location":"Running With Ducks","url":"http:\/\/www.hudl.com\/athlete\/2968097\/highlights\/224815381","description":"1 Thing On My Mind 24\/7 : Football \u26a0","protected":false,"verified":false,"followers_count":638,"friends_count":680,"listed_count":1,"favourites_count":1244,"statuses_count":20713,"created_at":"Sat Jul 13 00:51:13 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00F7FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/537263104740978688\/s_j2VJ8F.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/537263104740978688\/s_j2VJ8F.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655626493868011520\/q2abKpFo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655626493868011520\/q2abKpFo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1589789816\/1445148508","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fdgzFAIUTX","expanded_url":"http:\/\/bit.ly\/A9Q3zb","display_url":"bit.ly\/A9Q3zb","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432758272,"id_str":"663728261432758272","text":"RT @fito_quotes_: Lo mejor del sol... El brillo de la Luna.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1101380730,"id_str":"1101380730","name":"ELO\u00ae","screen_name":"eloygonzalo_","location":"Vigo","url":null,"description":null,"protected":false,"verified":false,"followers_count":315,"friends_count":191,"listed_count":0,"favourites_count":1786,"statuses_count":5911,"created_at":"Fri Jan 18 16:25:31 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652254336639205376\/w34HEbOH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652254336639205376\/w34HEbOH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1101380730\/1446482786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:32:02 +0000 2015","id":663695540866170881,"id_str":"663695540866170881","text":"Lo mejor del sol... El brillo de la Luna.","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":810736088,"id_str":"810736088","name":"ExtreFito y t\u00fa","screen_name":"fito_quotes_","location":"Cuenta NO oficial.","url":null,"description":"Gracias por volver a donde se os quiere aunque no est\u00e9is. Todas las frases son de Extremoduro, Robe, Fito y los Fitipaldis, Platero y t\u00fa, Manolillo Chinato..","protected":false,"verified":false,"followers_count":48644,"friends_count":140,"listed_count":59,"favourites_count":577,"statuses_count":21280,"created_at":"Sat Sep 08 11:27:33 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/721020248\/2f7bb47b73a68142408de962377737df.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/721020248\/2f7bb47b73a68142408de962377737df.jpeg","profile_background_tile":false,"profile_link_color":"2863B5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597846014519865345\/orRQLnXB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597846014519865345\/orRQLnXB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/810736088\/1431375938","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":67,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fito_quotes_","name":"ExtreFito y t\u00fa","id":810736088,"id_str":"810736088","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261462032384,"id_str":"663728261462032384","text":"\u3053\u3046\u3044\u3046\u306e\u3067\u304d\u308b\u304b\u3089\u5973\u306f\u30ba\u30eb\u3044\u3088\u306d\u301c\nhttps:\/\/t.co\/bxQES8p5XV asifet","source":"\u003ca href=\"https:\/\/apps.twitter.com\/app\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2529018638,"id_str":"2529018638","name":"TGgame","screen_name":"asifetitaku","location":"\u795e\u5948\u5ddd\u770c.\u6771\u4eac","url":null,"description":"\u697d\u3057\u304f\u751f\u304d\u3066\u3044\u304f \u63f4\u52df\u96c6","protected":false,"verified":false,"followers_count":49,"friends_count":4,"listed_count":0,"favourites_count":48,"statuses_count":1509,"created_at":"Wed May 28 04:09:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/506814437974495233\/E1YlqH8O_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/506814437974495233\/E1YlqH8O_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663050135748804608,"quoted_status_id_str":"663050135748804608","quoted_status":{"created_at":"Sat Nov 07 17:47:25 +0000 2015","id":663050135748804608,"id_str":"663050135748804608","text":"\u5973\u53cb\u9054\u304c\u307f\u3093\u306a\u3084\u3063\u3066\u308b\u304b\u3089\u304a\u5c0f\u9063\u3044\u30b5\u30a4\u30c8\u305f\u3081\u3057\u3066\u307f\u305f\u3089\n\u4eca\u670815\u4e07\u7a3c\u3052\u307e\u3057\u305f(^O^) \n\u304b\u306a\u308a\u6d41\u884c\u3063\u3066\u308b\uff01 \u2192https:\/\/t.co\/c9SZCStsT4\n\n\u30b9\u30de\u30db\u304c\u3042\u308c\u3070\u304b\u306a\u308a\u6709\u5229(^^)v https:\/\/t.co\/trnJA2BZgu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396631629,"id_str":"2396631629","name":"YuKo","screen_name":"kygyposerg","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":145,"listed_count":0,"favourites_count":0,"statuses_count":13,"created_at":"Sun Mar 09 12:16:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663042920728014849\/SjK23vsE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663042920728014849\/SjK23vsE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c9SZCStsT4","expanded_url":"http:\/\/ycx18.click\/dxgxv1\/c18e\/","display_url":"ycx18.click\/dxgxv1\/c18e\/","indices":[56,79]}],"user_mentions":[],"symbols":[],"media":[{"id":663050126177542145,"id_str":"663050126177542145","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","url":"https:\/\/t.co\/trnJA2BZgu","display_url":"pic.twitter.com\/trnJA2BZgu","expanded_url":"http:\/\/twitter.com\/kygyposerg\/status\/663050135748804608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":303,"h":612,"resize":"fit"},"medium":{"w":303,"h":612,"resize":"fit"},"small":{"w":303,"h":612,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663050126177542145,"id_str":"663050126177542145","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","url":"https:\/\/t.co\/trnJA2BZgu","display_url":"pic.twitter.com\/trnJA2BZgu","expanded_url":"http:\/\/twitter.com\/kygyposerg\/status\/663050135748804608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":303,"h":612,"resize":"fit"},"medium":{"w":303,"h":612,"resize":"fit"},"small":{"w":303,"h":612,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bxQES8p5XV","expanded_url":"https:\/\/twitter.com\/kygyposerg\/status\/663050135748804608","display_url":"twitter.com\/kygyposerg\/sta\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123664"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449383937,"id_str":"663728261449383937","text":"@lpt32 \u308f\u30fc\u3001\u30cf\u30ed\u30a6\u30a3\u30f3\u3067\u3059\u306d\uff01\u300e\u30c8\u30ea\u30c3\u30af\u30aa\u30a2\u30c8\u30ea\u30fc\u30c8\u300f\u306e\u30ea\u30d7\u30e9\u30a4\u3067\u53cd\u5fdc\u3067\u304d\u307e\u3059\u3088\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/heric_lily\" rel=\"nofollow\"\u003e\u5e7b\u60f3\u90f7\uff1a\u82b1\u5c4b\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728134202658820,"in_reply_to_status_id_str":"663728134202658820","in_reply_to_user_id":570901681,"in_reply_to_user_id_str":"570901681","in_reply_to_screen_name":"lpt32","user":{"id":93292335,"id_str":"93292335","name":"\u30ea\u30ea\u30fc\u30db\u30ef\u30a4\u30c8","screen_name":"lily__white","location":"\u5e7b\u60f3\u90f7\u3000\u82b1\u5c4b","url":"http:\/\/twitter.com\/heric_lily","description":"\u6771\u65b9\u5996\u3005\u5922\u306e\u30ea\u30ea\u30fc\u30db\u30ef\u30a4\u30c8\u306eBOT\u3067\u3059\u3002\u8ffd\u52a0\u3057\u3066\u6b32\u3057\u3044\u5358\u8a9e\u304c\u3042\u3063\u305f\u3089\u4f5c\u3063\u305f\u4eba(Web\u53c2\u7167)\u306b@\u3067\u7d50\u69cb\u3067\u3059\u306e\u3067\u8a00\u3063\u3066\u304f\u3060\u3055\u3044\u3002 \u753b\u50cf\u5143\uff1ahttp:\/\/www006.upp.so-net.ne.jp\/deeptake\/\u30d6\u30e9\u30c3\u30af\u306f\u3053\u3061\u3089\u2192@lily__black","protected":false,"verified":false,"followers_count":9471,"friends_count":9207,"listed_count":284,"favourites_count":0,"statuses_count":2093380,"created_at":"Sun Nov 29 00:42:27 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCCEE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":true,"profile_link_color":"760D7A","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"FF8CB0","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552769580\/lily_takezaki_neta129_syusei_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552769580\/lily_takezaki_neta129_syusei_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lpt32","name":"\u308b\u3077\u3068\u3089GX","id":570901681,"id_str":"570901681","indices":[0,6]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261457969153,"id_str":"663728261457969153","text":"RT @quederap: \u00bfQuien me da el de buenos d\u00edas? y no hablo de fumar.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1612713774,"id_str":"1612713774","name":"cor.","screen_name":"aliLalalala","location":null,"url":null,"description":"Janette Pujada Vilches\u2665","protected":false,"verified":false,"followers_count":849,"friends_count":1863,"listed_count":1,"favourites_count":3131,"statuses_count":9378,"created_at":"Mon Jul 22 12:31:45 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000151756484\/369bnojP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000151756484\/369bnojP.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660867409214103552\/qhvHsUWl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660867409214103552\/qhvHsUWl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1612713774\/1441835447","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 04:30:43 +0000 2015","id":662124860173393920,"id_str":"662124860173393920","text":"\u00bfQuien me da el de buenos d\u00edas? y no hablo de fumar.","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":762389232,"id_str":"762389232","name":"THE HARD FACE","screen_name":"quederap","location":"MADRID - GANDIA ","url":"http:\/\/www.QueBravo.es","description":"Si me besas el cuello, me pierdo. Si te promet\u00ed amor, no me acuerdo. Instagram @quederap snapchat: quederap","protected":false,"verified":false,"followers_count":383425,"friends_count":271733,"listed_count":350,"favourites_count":51955,"statuses_count":33027,"created_at":"Thu Aug 16 21:44:25 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":true,"profile_background_color":"FC08E0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000077828891\/aa8db3cf452b5f88505f84a4bd05a454.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000077828891\/aa8db3cf452b5f88505f84a4bd05a454.jpeg","profile_background_tile":true,"profile_link_color":"666666","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/416344053043585024\/manAcpXq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/416344053043585024\/manAcpXq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/762389232\/1441450639","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":116,"favorite_count":168,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"quederap","name":"THE HARD FACE","id":762389232,"id_str":"762389232","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123663"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432606720,"id_str":"663728261432606720","text":"\u30cb\u30c3\u30af\u30f3\u306b\u30ea\u30d7\u3092\u9001\u308a\u7d9a\u3051\u308b\n\n#\u6687\n#\u30cb\u30c3\u30af\u30f3\u76f8\u624b\u3057\u3066\n#10000\u65e5\u304a\u3081\u3067\u3068\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2960545662,"id_str":"2960545662","name":"\uc544 \uc0ac \uce74 \ub2c9\ucfe4 \uc0ac\ub791\ud574","screen_name":"2pmAsaka","location":"\u4e16\u754c\u30671\u756a\u5927\u597d\u304d\u306a\u4eba\u21e8\ub2c9\ucfe4","url":null,"description":"98line.\u30af\u30f3\u30cc\u30ce\u3088\u308a\u304a\u30fc\u308b.\u601d\u3044\u51fa\u306e\u65e53.30\/5.20\/10.22\/ \u261e\u261e\uc0c1\ub300\ubc29@taffy0883\/\uc790\ub9e4@j_yuuna \/\uc30d\ub3d9\uc774@2pmRi \/\uc5ec\ub3d9\uc0dd@dIwmsghek \/\uc5b8\ub2c8@2PMagrement0211 Twice\u57a2\u21e8@aaatwicelove","protected":false,"verified":false,"followers_count":622,"friends_count":548,"listed_count":33,"favourites_count":10602,"statuses_count":19556,"created_at":"Tue Jan 06 09:35:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658972435593596928\/zIlWa00a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658972435593596928\/zIlWa00a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2960545662\/1445534292","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6687","indices":[15,17]},{"text":"\u30cb\u30c3\u30af\u30f3\u76f8\u624b\u3057\u3066","indices":[18,27]},{"text":"10000\u65e5\u304a\u3081\u3067\u3068\u3046","indices":[28,40]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432672256,"id_str":"663728261432672256","text":"\u68b1\u5305BBA\u306b\u306a\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1159874606,"id_str":"1159874606","name":"\u307f\u3061\u3059\u3051","screen_name":"march3usannu","location":"\u2606\u2606\u2606\u2606","url":"http:\/\/twpf.jp\/march3usannu","description":"\u307f\u3061\u4e09\u5927\u6cbc \u5897\u5ddd\u8056\u5ddd\u677e\u5ca1 \u8a73\u3057\u304f\u306f\u3064\u3044\u30d7\u30ed\u261e\u261e\u261e \u5c5e\u6027\u306f\u304a\u304b\u307e\u58f0 \u9ad8\u3044\u6240\u306f\u82e6\u624b\u3067\u3059\u63a8\u3057\u30e1\u30f3\u5f15\u304d\u305f\u3044","protected":false,"verified":false,"followers_count":521,"friends_count":617,"listed_count":10,"favourites_count":1341,"statuses_count":24892,"created_at":"Fri Feb 08 11:10:35 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/805201529\/5051b49dcf6672ce4cae28a5309866c3.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/805201529\/5051b49dcf6672ce4cae28a5309866c3.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639695774637408256\/6GYWZz3Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639695774637408256\/6GYWZz3Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1159874606\/1421937595","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261441040384,"id_str":"663728261441040384","text":"@lOOzNOTKKrHY0KX @robo7c7c @atkyoudan \u6a2a\u304b\u3089\u5931\u793c\u3057\u307e\u3059\u3002\u3053\u3061\u3089\u3092\u3069\u3046\u305e\u2192\u300c\u300c\u5317\u6d77\u9053\u306f\u958b\u62d3\u8005\u306e\u5927\u5730\u300d\u5e83\u544a\u3001\u30a2\u30a4\u30cc\u56e3\u4f53\u300c\u914d\u616e\u306a\u3044\u300d\u300d\u3000News i - TBS\u306e\u52d5\u753b\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8 https:\/\/t.co\/i7YdIkLewO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663662233289818112,"in_reply_to_status_id_str":"663662233289818112","in_reply_to_user_id":3195631662,"in_reply_to_user_id_str":"3195631662","in_reply_to_screen_name":"lOOzNOTKKrHY0KX","user":{"id":451105187,"id_str":"451105187","name":"\u5948\u826f\u52f2","screen_name":"WhiteChamberson","location":null,"url":null,"description":"\u751f\u307e\u308c\u3082\u80b2\u3061\u3082\u3001\u9752\u68ee\u770c\u306e\u6d25\u8efd\u5074\u3002\u4eca\u306f\u5175\u5eab\u770c\u795e\u6238\u5e02\u3067\u30b5\u30e9\u30ea\u30fc\u30de\u30f3\u3084\u3063\u3066\u307e\u3059\u3002\u300c\u30cb\u30e5\u30fc\u30b9\u306e\u611f\u60f3\u306a\u3069\u3067\u81ea\u5206\u3068\u540c\u3058\u611f\u60f3\u3092\u5148\u306b\u545f\u3044\u3066\u3044\u305f\u4eba\u300d\u3092\u63a2\u3057\u3066\u6700\u521d\u306b\u545f\u3044\u305f\u4eba\u3005\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u307e\u3059\u3002\u540c\u3058\u610f\u898b\u3092\u65e9\u304f\u66f8\u3051\u308b\uff1d\u982d\u306e\u56de\u8ee2\u304c\u65e9\u3044\u4eba\u3001\u305d\u306e\u4eba\u306e\u610f\u898b\u3092\u898b\u308b\u306e\u306f\u3044\u3044\u52c9\u5f37\u3060\u3068\u601d\u3063\u3066\u3044\u307e\u3059\u306e\u3067\u3069\u3046\u305e\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":53,"friends_count":299,"listed_count":0,"favourites_count":3,"statuses_count":237,"created_at":"Sat Dec 31 01:50:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600482036340555776\/d0s00Hmt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600482036340555776\/d0s00Hmt_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/i7YdIkLewO","expanded_url":"http:\/\/news.tbs.co.jp\/newseye\/tbs_newseye2631163.html","display_url":"news.tbs.co.jp\/newseye\/tbs_ne\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"lOOzNOTKKrHY0KX","name":"\u6728\u6751\u5247\u592b","id":3195631662,"id_str":"3195631662","indices":[0,16]},{"screen_name":"robo7c7c","name":"\u30ca\u30ca\u30b7\uff1d\u30ed\u30dc","id":29851205,"id_str":"29851205","indices":[17,26]},{"screen_name":"atkyoudan","name":"\u6226\u4e89","id":114496618,"id_str":"114496618","indices":[27,37]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123659"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261436805120,"id_str":"663728261436805120","text":"@ma_sa_ya_227 \u3044\u3089\u3093\u3044\u3089\u3093\u3044\u3063\u3066\u3066\u653e\u7f6e\u3057\u3068\u3063\u305f\u3089\u89aa\u304c\u67fb\u5b9a\u51fa\u3057\u3066\u6c17\u3065\u3044\u305f\u3089\u306a\u304b\u3063\u305f\u3057\u304b\u3082\u72b6\u614b\u3088\u304b\u3063\u305f\u306e\u306b\u67fb\u5b9a\u984d15000\u3060\u3067\u306d\u306a\u3048\u305f\u56de\u3057\u305f\u307b\u3046\u304c\u9ad8\u304f\u58f2\u308c\u305f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728026832662528,"in_reply_to_status_id_str":"663728026832662528","in_reply_to_user_id":2972712644,"in_reply_to_user_id_str":"2972712644","in_reply_to_screen_name":"ma_sa_ya_227","user":{"id":3098413362,"id_str":"3098413362","name":"\u307e\u3053\u3066\u3043\u3093\u2665\ufe0e\ufe0e\u2217\ufe0e*\uff9f","screen_name":"camaro17m","location":"\u3086\u3046\u304d\u2661113","url":null,"description":"\u6625\u65e5\u4e95 \u300aBig Fes staff\u300b\u30ed\u30df\u30aa\uff01 \u65e5\u3005\u7cbe\u9032\u02da\u2727\u208a \u65e5\u713c\u3051 \/ \u6c17\u5206\u5c4b \/ AB\u578b \/ \u57fa\u672c\u72ec\u308a\u3054\u3068 \/ \u30a2\u30e1\u8eca\u98df\u3079\u305f\u3044\u27a3 \u5bdd\u305f\u3044\u27a3 \u5e30\u308a\u305f\u3044\u2765\u2765\u2765\u2765\u69cb\u3063\u3066\u304f\u308c\u30d0\u30a6\u30f3\u30b9,\u30b7\u30e3\u30c3\u30d5\u30eb\u3057\u3061\u3083\u3046\u7cfb\u5973\u5b50 Bl3nd\u2665\ufe0e\ufe0e","protected":false,"verified":false,"followers_count":645,"friends_count":517,"listed_count":2,"favourites_count":1525,"statuses_count":3324,"created_at":"Thu Mar 19 23:53:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663587924848439296\/gQFzhyC-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663587924848439296\/gQFzhyC-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3098413362\/1446996696","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ma_sa_ya_227","name":"\u00bf \u96c5 \u5f25 \u00bf","id":2972712644,"id_str":"2972712644","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123658"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261470384128,"id_str":"663728261470384128","text":"@pontoki_6 \u3059\u3063\u3001\u30b9\u30bf\u30df\u30ca\u6e90\u305f\u308c\u3082\u304a\u5fd8\u308c\u306a\u304f\u2026\uff01\uff01\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716585962541056,"in_reply_to_status_id_str":"663716585962541056","in_reply_to_user_id":117729111,"in_reply_to_user_id_str":"117729111","in_reply_to_screen_name":"pontoki_6","user":{"id":2921139427,"id_str":"2921139427","name":"\u30cf\u30ae\u30ec@\u864e\u72e9\u2733\ufe0eT60&\u795d\u30cf\u30ea\u30a6\u30c3\u30c9","screen_name":"HagireKirehashi","location":"\u30b7\u30e5\u30c6\u30eb\u30f3\u5411\u304b\u3044\u306e\u307f\u306a\u3068\u307e\u3061","url":"http:\/\/sbtshirt.blog.fc2.com\/?pc","description":"\u3069\u3046\u3082\uff01\u30b7\u30e5\u30c6\u30eb\u30f3\u30d3\u30eb\u30c8\u306e\u304a\u571f\u7523\u5c4b\u3055\u3093\u3092\u76ee\u6307\u3057\u3066\u308b\u65b9\u3001\u30cf\u30ae\u30ec\u3067\u3059\uff01\u30b0\u30c3\u30ba\u30b5\u30fc\u30af\u30eb\u3010SternBild T-shirt\u3011\u3067\u6d3b\u52d5\u4e2d\uff01\u6210\u4eba\u6e08\u30ec\u30a4\u30e4\u30fc\u3002\u3044\u3064\u306e\u9593\u306b\u3084\u3089\u8150\u3063\u3066\u307e\u3057\u305f\u3002\u624b\u82b8\u90e8\u4eba\u9593\u3002 \u30bf\u30a4\u30d0\u30cb\/\u30e9\u30a4\u30a2\u30f3\/\u305d\u3057\u3066\u30e9\u30a4\u30a2\u30f3\/\u30e9\u30a4\u30a2\u30f3\u3061\u3083\u3093\u304c\u611b\u3057\u3059\u304e\u3066\u306a\u3093\u304b\u8272\u3005\u3084\u3070\u3044^q^\u7345\u5b50\u8594\u8587\u30b9\u30ad\u3002\u30d0\u30c7\u30a3\u306f\u30bb\u30c3\u30c8\u3067\u597d\u304d\u3002\u96d1\u98df\u5730\u96f7\u306a\u3057\u3002","protected":false,"verified":false,"followers_count":207,"friends_count":246,"listed_count":6,"favourites_count":4790,"statuses_count":6573,"created_at":"Sun Dec 07 01:22:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653368925116239872\/oMOmE9Nn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653368925116239872\/oMOmE9Nn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921139427\/1445531518","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pontoki_6","name":"\u30dd\u30f3\u30c8\u30ad(\u30fb8\u30fb)","id":117729111,"id_str":"117729111","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123666"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261436862465,"id_str":"663728261436862465","text":"@totoro_mama \u89e3\u9664\u3067\u304d\u305f\u3002\u771f\u3063\u9ed2\u3060\u3088\u30fc\uff3c(^o^)\uff0f\u3055\u3066\u3069\u3046\u3057\u3088\u3046www","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661739039985287168,"in_reply_to_status_id_str":"661739039985287168","in_reply_to_user_id":189563289,"in_reply_to_user_id_str":"189563289","in_reply_to_screen_name":"totoro_mama","user":{"id":189563289,"id_str":"189563289","name":"\uff84\uff84\uff9b\u304b\u3042\u3061\u3083\u3093","screen_name":"totoro_mama","location":null,"url":null,"description":"\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9\u30d5\u30a1\u30f3\u306e\u30c0\u30f3\u30ca\uff06\u5144\u6c70\u304f\u3093(H20.2.5\u751f)\uff06\u59b9\u5b50\u3061\u3083\u3093(H23.10.12\u751f)\u306e\u9a12\u3005\u3057\u3044\u8a71\u984c\u304c\u30e1\u30a4\u30f3\u2606","protected":false,"verified":false,"followers_count":10,"friends_count":8,"listed_count":0,"favourites_count":4,"statuses_count":411,"created_at":"Sat Sep 11 16:18:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1172019889\/__iso-2022-jp_B_GyRCJUglSCVtGyhCLmpwZw_____normal","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1172019889\/__iso-2022-jp_B_GyRCJUglSCVtGyhCLmpwZw_____normal","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"totoro_mama","name":"\uff84\uff84\uff9b\u304b\u3042\u3061\u3083\u3093","id":189563289,"id_str":"189563289","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123658"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466296320,"id_str":"663728261466296320","text":"RT @Sedative: The illuminati hiding in plain site posing as an Internet meme. \nhttps:\/\/t.co\/MDGfsxYFVe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2490164789,"id_str":"2490164789","name":"Devon Davidson","screen_name":"LivemyLife223","location":"Stratford CT","url":null,"description":"SHS ' 16","protected":false,"verified":false,"followers_count":311,"friends_count":347,"listed_count":1,"favourites_count":817,"statuses_count":4837,"created_at":"Thu Apr 17 16:36:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649221120667873280\/S5Go57Bm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649221120667873280\/S5Go57Bm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2490164789\/1444181161","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 23:07:38 +0000 2015","id":662768330206416896,"id_str":"662768330206416896","text":"The illuminati hiding in plain site posing as an Internet meme. \nhttps:\/\/t.co\/MDGfsxYFVe","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2933648204,"id_str":"2933648204","name":"Eli","screen_name":"Sedative","location":"Houston, TX","url":"https:\/\/teespring.com\/drizzy-verified?utm_swu=29","description":"Cop the Limited Edition Drizzy from @newmoneyco. Check the link below.","protected":false,"verified":false,"followers_count":3138,"friends_count":447,"listed_count":11,"favourites_count":1050,"statuses_count":3354,"created_at":"Wed Dec 17 14:39:03 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662471902972108800\/qo-k6e-O_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662471902972108800\/qo-k6e-O_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933648204\/1444097555","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"1c69a67ad480e1b1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1c69a67ad480e1b1.json","place_type":"city","name":"Houston","full_name":"Houston, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-95.823268,29.522325],[-95.823268,30.154665],[-95.069705,30.154665],[-95.069705,29.522325]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":814,"favorite_count":825,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MDGfsxYFVe","expanded_url":"https:\/\/vine.co\/v\/e2e70E607pl","display_url":"vine.co\/v\/e2e70E607pl","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MDGfsxYFVe","expanded_url":"https:\/\/vine.co\/v\/e2e70E607pl","display_url":"vine.co\/v\/e2e70E607pl","indices":[79,102]}],"user_mentions":[{"screen_name":"Sedative","name":"Eli","id":2933648204,"id_str":"2933648204","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466161153,"id_str":"663728261466161153","text":"TGS\u306e\u6642\u306f\u30b5\u30dd\u30fc\u30c8\u3042\u3063\u305f\u304b\u3089\u5272\u3068\u30b5\u30af\u30b5\u30af\u56de\u305b\u305f\u3051\u3069","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":504648726,"id_str":"504648726","name":"\u30d7\u30ed\u30df\u30cd\u30f3\u30b9\u3068\u30fc\u307e","screen_name":"toma_x__","location":null,"url":null,"description":"\u30a2\u30eb\u30d9\u30b9\u306e\u69cd\u3088\u3001\u305d\u306e\u529b\u3092\u793a\u305b\uff01\u30d7\u30ed\u30df\u30cd\u30f3\u30b9\u30c0\u30a4\u30f4\uff01\uff01","protected":false,"verified":false,"followers_count":181,"friends_count":232,"listed_count":14,"favourites_count":17297,"statuses_count":93455,"created_at":"Sun Feb 26 15:36:08 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651644286186876928\/mqmANqbR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651644286186876928\/mqmANqbR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/504648726\/1439451565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:02 +0000 2015","id":663728257263603713,"id_str":"663728257263603713","text":"@freckle_studio https:\/\/t.co\/X02xUhrPoX https:\/\/t.co\/w5ZOG473iO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725548003201024,"in_reply_to_status_id_str":"663725548003201024","in_reply_to_user_id":4130626570,"in_reply_to_user_id_str":"4130626570","in_reply_to_screen_name":"freckle_studio","user":{"id":4130626570,"id_str":"4130626570","name":"Freckle Face Studio","screen_name":"freckle_studio","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":5,"listed_count":0,"favourites_count":1,"statuses_count":4,"created_at":"Sat Nov 07 00:51:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662795543198863360\/HSu9Nuut_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662795543198863360\/HSu9Nuut_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/X02xUhrPoX","expanded_url":"https:\/\/www.etsy.com\/shop\/FreckleFaceStudioShp?ref=hdr_shop_menu","display_url":"etsy.com\/shop\/FreckleFa\u2026","indices":[16,39]}],"user_mentions":[{"screen_name":"freckle_studio","name":"Freckle Face Studio","id":4130626570,"id_str":"4130626570","indices":[0,15]}],"symbols":[],"media":[{"id":663728255766167552,"id_str":"663728255766167552","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVQBVAAAZH9H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVQBVAAAZH9H.jpg","url":"https:\/\/t.co\/w5ZOG473iO","display_url":"pic.twitter.com\/w5ZOG473iO","expanded_url":"http:\/\/twitter.com\/freckle_studio\/status\/663728257263603713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728255766167552,"id_str":"663728255766167552","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVQBVAAAZH9H.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVQBVAAAZH9H.jpg","url":"https:\/\/t.co\/w5ZOG473iO","display_url":"pic.twitter.com\/w5ZOG473iO","expanded_url":"http:\/\/twitter.com\/freckle_studio\/status\/663728257263603713\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080122663"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261436846080,"id_str":"663728261436846080","text":"RT @noviaini: something caught my attention. ahhhhh BeiBei \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/LXtSlTUxQ5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2826320798,"id_str":"2826320798","name":"\u0e1e\u0e35\u0e48\u0e40\u0e17\u0e32\u0e04\u0e19\u0e14\u0e35","screen_name":"allheartforHZT","location":null,"url":"http:\/\/lookatyourselfbeforejudging.com","description":":: 100% hzt-biased or known as VVHL :: ALL shipping don't gimme otp drama :: \u0e40\u0e2a\u0e1e\u0e40\u0e17\u0e32\u0e44\u0e1b\u0e27\u0e31\u0e19\u0e46\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e40\u0e23\u0e32\u0e44\u0e21\u0e48\u0e40\u0e2a\u0e1e :: opened dm","protected":false,"verified":false,"followers_count":1442,"friends_count":257,"listed_count":6,"favourites_count":6577,"statuses_count":37019,"created_at":"Mon Sep 22 12:49:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651588134560395264\/tznyg_Ut_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651588134560395264\/tznyg_Ut_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2826320798\/1411390763","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:47 +0000 2015","id":663727940098658304,"id_str":"663727940098658304","text":"something caught my attention. ahhhhh BeiBei \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/LXtSlTUxQ5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95559050,"id_str":"95559050","name":"nov","screen_name":"noviaini","location":"Z.TAO","url":"http:\/\/weibo.com\/noviaini","description":"\u9ec4\u5b50\u97ec \u2764 Huang Zitao \u2764 Edison Huang \u2764 \u4f60\u8d50\u6211\u4e00\u5bf9\u7fc5\u8180 \u8ba9\u6211\u518d\u7ee7\u7eed\u98de\u7fd4 \u2764","protected":false,"verified":false,"followers_count":1574,"friends_count":160,"listed_count":19,"favourites_count":1163,"statuses_count":125210,"created_at":"Wed Dec 09 02:43:57 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000089271230\/4aee92bdc64a1ddfe89ed920c4a81be7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000089271230\/4aee92bdc64a1ddfe89ed920c4a81be7.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658901712917233664\/4rDHSNMv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658901712917233664\/4rDHSNMv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/95559050\/1444693322","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727931475099648,"id_str":"663727931475099648","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":474,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":480,"h":474,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727931475099648,"id_str":"663727931475099648","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":474,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":480,"h":474,"resize":"fit"}}},{"id":663727936361500672,"id_str":"663727936361500672","indices":[49,72],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCqJUkAAl7_0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCqJUkAAl7_0.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":480,"h":478,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"noviaini","name":"nov","id":95559050,"id_str":"95559050","indices":[3,12]}],"symbols":[],"media":[{"id":663727931475099648,"id_str":"663727931475099648","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":474,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":480,"h":474,"resize":"fit"}},"source_status_id":663727940098658304,"source_status_id_str":"663727940098658304","source_user_id":95559050,"source_user_id_str":"95559050"}]},"extended_entities":{"media":[{"id":663727931475099648,"id_str":"663727931475099648","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCX8UAAAdUMF.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":480,"h":474,"resize":"fit"},"small":{"w":340,"h":335,"resize":"fit"},"large":{"w":480,"h":474,"resize":"fit"}},"source_status_id":663727940098658304,"source_status_id_str":"663727940098658304","source_user_id":95559050,"source_user_id_str":"95559050"},{"id":663727936361500672,"id_str":"663727936361500672","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJCqJUkAAl7_0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJCqJUkAAl7_0.jpg","url":"https:\/\/t.co\/LXtSlTUxQ5","display_url":"pic.twitter.com\/LXtSlTUxQ5","expanded_url":"http:\/\/twitter.com\/noviaini\/status\/663727940098658304\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"medium":{"w":480,"h":478,"resize":"fit"}},"source_status_id":663727940098658304,"source_status_id_str":"663727940098658304","source_user_id":95559050,"source_user_id_str":"95559050"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123658"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432668160,"id_str":"663728261432668160","text":"SC-02F\u6b7b\u3093\u3060\u3089F-02E\u306b\u623b\u3063\u3066\u3057\u307e\u3046\u30fb\u30fb\u30fb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":619796576,"id_str":"619796576","name":"\u5065\u5168\u5352\u696d","screen_name":"MIZIKANAMONO","location":"\u6771\u4eac\u90fd","url":"http:\/\/www.youtube.com\/user\/mizikanamono","description":"\u81ea\u4f5c\u30e6\u30fc\u30b6\u30fc\u3067\u3059\u3002 \u30ed\u30ea\u6cbc\u306b\u843d\u3061\u307e\u3057\u305f\u3002originID:mizikanamono BF4\/BF3\/ERG\/MMD\/\u30dc\u30ab\u30ed\/\u30a4\u30ea\u30e4\/\u30af\u30c9\/\u30a2\u30ea\u30b9\u306a\u3069\u30fb\u30fb\u30fb \u898f\u5236\u57a2\u2192@mizikanamono002","protected":false,"verified":false,"followers_count":1451,"friends_count":542,"listed_count":74,"favourites_count":18912,"statuses_count":150304,"created_at":"Wed Jun 27 08:19:54 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000020781068\/f086597a3addcec9e58db95c58375949.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000020781068\/f086597a3addcec9e58db95c58375949.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636123811209830400\/ecZPZ6tK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636123811209830400\/ecZPZ6tK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/619796576\/1385823951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123657"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466341376,"id_str":"663728261466341376","text":"RT @Glossarissimo: (CA) \u2013 Vocabulari de la llegenda d\u2019unitats cartogr\u00e0fiques i de s\u00edmbols convencionals |\u00a0https:\/\/t.co\/wJVF5pV8av https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":626805271,"id_str":"626805271","name":"nmomme","screen_name":"nmomme","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":30,"friends_count":128,"listed_count":8,"favourites_count":1,"statuses_count":650,"created_at":"Wed Jul 04 21:27:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661602239551770624\/QMkyBlQF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661602239551770624\/QMkyBlQF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/626805271\/1446673158","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:25:08 +0000 2015","id":663678706175508480,"id_str":"663678706175508480","text":"(CA) \u2013 Vocabulari de la llegenda d\u2019unitats cartogr\u00e0fiques i de s\u00edmbols convencionals |\u00a0https:\/\/t.co\/wJVF5pV8av https:\/\/t.co\/NfFiuG2ptL","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":115643778,"id_str":"115643778","name":"Glossarissimo!","screen_name":"Glossarissimo","location":"Web","url":"http:\/\/glossarissimo.wordpress.com","description":"Monolingual & multilingual resources & terminology for translators & interpreters. Read the Quick Guide (PDF) to start: http:\/\/bit.ly\/1D5pL4q","protected":false,"verified":false,"followers_count":2842,"friends_count":2802,"listed_count":101,"favourites_count":1206,"statuses_count":16947,"created_at":"Fri Feb 19 11:44:06 +0000 2010","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"EAE7EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/161269174\/tw_new.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/161269174\/tw_new.png","profile_background_tile":false,"profile_link_color":"9A0600","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A2CDEB","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/485946501080678401\/0inwinCc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/485946501080678401\/0inwinCc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/115643778\/1363014499","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wJVF5pV8av","expanded_url":"http:\/\/igc.cat","display_url":"igc.cat","indices":[87,110]},{"url":"https:\/\/t.co\/NfFiuG2ptL","expanded_url":"https:\/\/glossarissimo.wordpress.com\/2015\/11\/09\/ca-vocabulari-de-la-llegenda-dunitats-cartografiques-i-de-simbols-convencionals-igc-cat","display_url":"glossarissimo.wordpress.com\/2015\/11\/09\/ca-\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/wJVF5pV8av","expanded_url":"http:\/\/igc.cat","display_url":"igc.cat","indices":[106,129]},{"url":"https:\/\/t.co\/NfFiuG2ptL","expanded_url":"https:\/\/glossarissimo.wordpress.com\/2015\/11\/09\/ca-vocabulari-de-la-llegenda-dunitats-cartografiques-i-de-simbols-convencionals-igc-cat","display_url":"glossarissimo.wordpress.com\/2015\/11\/09\/ca-\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Glossarissimo","name":"Glossarissimo!","id":115643778,"id_str":"115643778","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080123665"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445226500,"id_str":"663728261445226500","text":"RT @SoyElJefe_: \"No diga que t\u00fa tiene cualto porque manito t\u00fa no tiene na\".\n\n- Juan Bosch.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2150284298,"id_str":"2150284298","name":"\u01a6\u03b9\u043d\u03b1\u0438\u0438\u03b1 \u264b","screen_name":"Just_Heidy27","location":"||11\/1\/151\/9\/14|8\/14\/08|| ","url":null,"description":"\u2693#CASADIERS I'M Pajonua || Basket||19\u264b Cancer \u0192\u03c5\u0455\u0442\u044f\u03b1\u00a2\u03b9\u03c3\u03b7 \u044f\u03c3\u0432\u0443\u03b7 \u044f\u03b9\u043d\u03b1\u03b7\u03b7\u03b1 \u0192\u0454\u03b7\u0442\u0443|| ||M.\u00ae.R.G.B.|| D.S K.N.\u27b0||\u2728& Es Que No Vivo Sin Nohely\u2764||","protected":false,"verified":false,"followers_count":1879,"friends_count":865,"listed_count":11,"favourites_count":1979,"statuses_count":59700,"created_at":"Wed Oct 23 05:19:05 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663141010428420096\/V8ra6pvi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663141010428420096\/V8ra6pvi.jpg","profile_background_tile":true,"profile_link_color":"61F2BD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663507883422711808\/NkiaiUns_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663507883422711808\/NkiaiUns_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2150284298\/1446761356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:47:01 +0000 2015","id":663201026967638016,"id_str":"663201026967638016","text":"\"No diga que t\u00fa tiene cualto porque manito t\u00fa no tiene na\".\n\n- Juan Bosch.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415999677,"id_str":"415999677","name":"YO SOY EL JEFE","screen_name":"SoyElJefe_","location":"Ciudad Trujillo","url":"http:\/\/facebook.com\/TuJefeSoy","description":"IG @soyeljefe_ Humor negro, Romance, Parodia, chistes.","protected":false,"verified":false,"followers_count":22039,"friends_count":492,"listed_count":77,"favourites_count":6110,"statuses_count":47068,"created_at":"Sat Nov 19 03:11:45 +0000 2011","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000053100563\/a4d5324d5a174d92b1d333bae4e0ff48.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000053100563\/a4d5324d5a174d92b1d333bae4e0ff48.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654479405792653312\/HZMRjCLw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654479405792653312\/HZMRjCLw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415999677\/1438218518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":19,"favorite_count":5,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SoyElJefe_","name":"YO SOY EL JEFE","id":415999677,"id_str":"415999677","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261453578240,"id_str":"663728261453578240","text":"\u3058\u3085\u3093\u3002\nhttps:\/\/t.co\/VxOstUMGL0","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1192810094,"id_str":"1192810094","name":"\u5b66\u7fd2\u969c\u5bb3\u306e\u30ea\u30a2\u5145","screen_name":"akimaromaromaro","location":"\u3082\u308a\u3050\u3061","url":"http:\/\/ask.fm\/AkimaroK?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","description":"ND70 (\u9ad81) \u786c\u5f0f\u30c6\u30cb\u30b9\u90e8\/\u30b5\u30b6\u30f3\/\u30d9\u30a4\u30d3\u30fc\u30b9\u30c6\u30c3\u30d7\/\u30ae\u30bf\u30fc(\u8d85\u521d\u5fc3\u8005)\/\u30ac\u30c1\u30af\u30ba","protected":false,"verified":false,"followers_count":535,"friends_count":514,"listed_count":9,"favourites_count":6838,"statuses_count":32001,"created_at":"Mon Feb 18 10:58:52 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660473677440413696\/mEqT2Yxp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660473677440413696\/mEqT2Yxp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192810094\/1442899198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663720421930352640,"quoted_status_id_str":"663720421930352640","quoted_status":{"created_at":"Mon Nov 09 14:10:54 +0000 2015","id":663720421930352640,"id_str":"663720421930352640","text":"#\u3075\u3041\u307c\u3057\u305f\u3072\u3068\u3092\u540d\u524d\u3092\u4f0f\u305b\u3066\u4e00\u8a00\u3067\u8a00\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1192810094,"id_str":"1192810094","name":"\u5b66\u7fd2\u969c\u5bb3\u306e\u30ea\u30a2\u5145","screen_name":"akimaromaromaro","location":"\u3082\u308a\u3050\u3061","url":"http:\/\/ask.fm\/AkimaroK?utm_source=twitter&utm_medium=social&utm_campaign=profile_own","description":"ND70 (\u9ad81) \u786c\u5f0f\u30c6\u30cb\u30b9\u90e8\/\u30b5\u30b6\u30f3\/\u30d9\u30a4\u30d3\u30fc\u30b9\u30c6\u30c3\u30d7\/\u30ae\u30bf\u30fc(\u8d85\u521d\u5fc3\u8005)\/\u30ac\u30c1\u30af\u30ba","protected":false,"verified":false,"followers_count":535,"friends_count":514,"listed_count":9,"favourites_count":6838,"statuses_count":32000,"created_at":"Mon Feb 18 10:58:52 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660473677440413696\/mEqT2Yxp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660473677440413696\/mEqT2Yxp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1192810094\/1442899198","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3075\u3041\u307c\u3057\u305f\u3072\u3068\u3092\u540d\u524d\u3092\u4f0f\u305b\u3066\u4e00\u8a00\u3067\u8a00\u3046","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VxOstUMGL0","expanded_url":"https:\/\/twitter.com\/akimaromaromaro\/status\/663720421930352640?s=06","display_url":"twitter.com\/akimaromaromar\u2026","indices":[5,28]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080123662"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261445255168,"id_str":"663728261445255168","text":"You're quite thankful for coworkers who support you even when ... More for Aries https:\/\/t.co\/jV35S2T0bc","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":304765624,"id_str":"304765624","name":"nicole bean","screen_name":"tokiak","location":"California, USA","url":null,"description":"Lilith in granny boots","protected":false,"verified":false,"followers_count":206,"friends_count":227,"listed_count":3,"favourites_count":2949,"statuses_count":12590,"created_at":"Wed May 25 02:24:15 +0000 2011","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446539379\/162327_0_4-9977-contemporary-outdoor-fabric.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446539379\/162327_0_4-9977-contemporary-outdoor-fabric.jpg","profile_background_tile":true,"profile_link_color":"139C91","profile_sidebar_border_color":"6B492B","profile_sidebar_fill_color":"6B492B","profile_text_color":"DEC9A9","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617173137302663168\/eOpxQ2MR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617173137302663168\/eOpxQ2MR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/304765624\/1417219054","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jV35S2T0bc","expanded_url":"http:\/\/bit.ly\/zzEL3G","display_url":"bit.ly\/zzEL3G","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123660"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261449449474,"id_str":"663728261449449474","text":"https:\/\/t.co\/aMcRkpKtUg","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2252107604,"id_str":"2252107604","name":"\u0421\u0435\u043c\u0435\u043d\u043e\u0432 \u041c\u0430\u043a\u0441\u0438\u043c","screen_name":"Segenov_Maksim","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":134,"friends_count":510,"listed_count":0,"favourites_count":0,"statuses_count":977,"created_at":"Wed Dec 18 14:54:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/413322424919154689\/LM-BoJuU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/413322424919154689\/LM-BoJuU_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728255422214144,"id_str":"663728255422214144","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVOvUsAAyhUr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVOvUsAAyhUr.png","url":"https:\/\/t.co\/aMcRkpKtUg","display_url":"pic.twitter.com\/aMcRkpKtUg","expanded_url":"http:\/\/twitter.com\/Segenov_Maksim\/status\/663728261449449474\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":586,"h":293,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728255422214144,"id_str":"663728255422214144","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVOvUsAAyhUr.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVOvUsAAyhUr.png","url":"https:\/\/t.co\/aMcRkpKtUg","display_url":"pic.twitter.com\/aMcRkpKtUg","expanded_url":"http:\/\/twitter.com\/Segenov_Maksim\/status\/663728261449449474\/photo\/1","type":"photo","sizes":{"large":{"w":586,"h":293,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":586,"h":293,"resize":"fit"},"small":{"w":340,"h":170,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080123661"} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261466161152,"id_str":"663728261466161152","text":"\ube60\uac00\uc0ac\ub9ac \ub098\uc790\uc2e0 \u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160 \uc2e0\uccad\uc11c \ud655\uc778 \uc81c\ub300\ub85c \ubabb\ud574\uc11c\n98\uc774\uc2e0 \ubd84\uc744 \ubaa8\ub974\uace0 \uc788\uc5c8\ub2e4 \u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160\u3160","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":467527412,"id_str":"467527412","name":"\u3147\u3148\ub9c8\uce20","screen_name":"youz_o3o","location":"\uc6b8\ub2d8 \uc606\uc790\ub9ac","url":"http:\/\/blog.naver.com\/youzru","description":"94\ub144\uc0dd \uba40\ud2f0\ub7ec(\uadf8\ub9bc,\uae00,\ub179\uc74c)\/\uc7a1\ub355\/\uac9c\ub355 \ub9de\ud314\uc740 \uba58\uc158 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4! \ud5e4\ub354,\uc778\uc7a5\u2665 @nerha_","protected":false,"verified":false,"followers_count":121,"friends_count":221,"listed_count":0,"favourites_count":243,"statuses_count":8165,"created_at":"Wed Jan 18 15:27:26 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661581629995945984\/aIPYkr9o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661581629995945984\/aIPYkr9o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/467527412\/1446575329","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080123665"} +{"delete":{"status":{"id":555721859006603264,"id_str":"555721859006603264","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080123907"}} +{"delete":{"status":{"id":663728248866496512,"id_str":"663728248866496512","user_id":881561810,"user_id_str":"881561810"},"timestamp_ms":"1447080123876"}} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261432745985,"id_str":"663728261432745985","text":"Gonna Be? https:\/\/t.co\/NkFUdwIuwJ","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3127516275,"id_str":"3127516275","name":"This is fun","screen_name":"SmileFunXXL","location":null,"url":"http:\/\/www.tsu.co\/thisisfun","description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":43,"listed_count":8,"favourites_count":0,"statuses_count":49335,"created_at":"Sun Mar 29 21:16:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582291058383556608\/Uw4ld4ko_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582291058383556608\/Uw4ld4ko_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3127516275\/1427664462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728261218893824,"id_str":"663728261218893824","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVkVXAAAjiYe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVkVXAAAjiYe.jpg","url":"https:\/\/t.co\/NkFUdwIuwJ","display_url":"pic.twitter.com\/NkFUdwIuwJ","expanded_url":"http:\/\/twitter.com\/SmileFunXXL\/status\/663728261432745985\/photo\/1","type":"photo","sizes":{"large":{"w":120,"h":120,"resize":"fit"},"medium":{"w":120,"h":120,"resize":"fit"},"thumb":{"w":120,"h":120,"resize":"crop"},"small":{"w":120,"h":120,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728261218893824,"id_str":"663728261218893824","indices":[10,33],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVkVXAAAjiYe.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVkVXAAAjiYe.jpg","url":"https:\/\/t.co\/NkFUdwIuwJ","display_url":"pic.twitter.com\/NkFUdwIuwJ","expanded_url":"http:\/\/twitter.com\/SmileFunXXL\/status\/663728261432745985\/photo\/1","type":"photo","sizes":{"large":{"w":120,"h":120,"resize":"fit"},"medium":{"w":120,"h":120,"resize":"fit"},"thumb":{"w":120,"h":120,"resize":"crop"},"small":{"w":120,"h":120,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080123657"} +{"delete":{"status":{"id":663676826707996672,"id_str":"663676826707996672","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080124026"}} +{"delete":{"status":{"id":663676814120873984,"id_str":"663676814120873984","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080124032"}} +{"delete":{"status":{"id":663723354109538304,"id_str":"663723354109538304","user_id":589294516,"user_id_str":"589294516"},"timestamp_ms":"1447080124567"}} +{"delete":{"status":{"id":653807151224262656,"id_str":"653807151224262656","user_id":95976492,"user_id_str":"95976492"},"timestamp_ms":"1447080124530"}} +{"delete":{"status":{"id":661881404557430784,"id_str":"661881404557430784","user_id":3670591933,"user_id_str":"3670591933"},"timestamp_ms":"1447080124595"}} +{"delete":{"status":{"id":663452448229584896,"id_str":"663452448229584896","user_id":585736569,"user_id_str":"585736569"},"timestamp_ms":"1447080124636"}} +{"delete":{"status":{"id":420328652166156288,"id_str":"420328652166156288","user_id":913706594,"user_id_str":"913706594"},"timestamp_ms":"1447080124636"}} +{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728261470507008,"id_str":"663728261470507008","text":"@DisenoChile saludos https:\/\/t.co\/KfzNLLwQcp https:\/\/t.co\/uEgfQY2g85","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":355688682,"in_reply_to_user_id_str":"355688682","in_reply_to_screen_name":"DisenoChile","user":{"id":21946338,"id_str":"21946338","name":"SONRIA raiza y neto","screen_name":"_sonria","location":"Valpara\u00edso_Chile","url":"http:\/\/www.sonriaimagen.com","description":"Comunicaci\u00f3n Visual - Fotograf\u00eda - Dise\u00f1o - TAMBI\u00c9N editamos REPLICA, magazine independiente http:\/\/www.replicamag.cl\r\nhttp:\/\/www.sonriaimagen.com","protected":false,"verified":false,"followers_count":473,"friends_count":561,"listed_count":9,"favourites_count":14,"statuses_count":802,"created_at":"Thu Feb 26 00:34:07 +0000 2009","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/808797328\/fc7fcd829f0fb718c0a426ca0bf7d754.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/808797328\/fc7fcd829f0fb718c0a426ca0bf7d754.jpeg","profile_background_tile":true,"profile_link_color":"FF3300","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"322F2F","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1110791164\/son_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1110791164\/son_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KfzNLLwQcp","expanded_url":"https:\/\/www.facebook.com\/events\/1618521775078928\/","display_url":"facebook.com\/events\/1618521\u2026","indices":[21,44]}],"user_mentions":[{"screen_name":"DisenoChile","name":"Dise\u00f1o Chile On Line","id":355688682,"id_str":"355688682","indices":[0,12]}],"symbols":[],"media":[{"id":663728258706309120,"id_str":"663728258706309120","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVa-UAAAOKA2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVa-UAAAOKA2.png","url":"https:\/\/t.co\/uEgfQY2g85","display_url":"pic.twitter.com\/uEgfQY2g85","expanded_url":"http:\/\/twitter.com\/_sonria\/status\/663728261470507008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":318,"resize":"fit"},"large":{"w":1024,"h":544,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728258706309120,"id_str":"663728258706309120","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVa-UAAAOKA2.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVa-UAAAOKA2.png","url":"https:\/\/t.co\/uEgfQY2g85","display_url":"pic.twitter.com\/uEgfQY2g85","expanded_url":"http:\/\/twitter.com\/_sonria\/status\/663728261470507008\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":318,"resize":"fit"},"large":{"w":1024,"h":544,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080123666"} +{"delete":{"status":{"id":420231566615654400,"id_str":"420231566615654400","user_id":1008431419,"user_id_str":"1008431419"},"timestamp_ms":"1447080124662"}} +{"delete":{"status":{"id":420244556375162880,"id_str":"420244556375162880","user_id":1117055563,"user_id_str":"1117055563"},"timestamp_ms":"1447080124664"}} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265643892737,"id_str":"663728265643892737","text":"RT @el_koracom: \u0647\u0630\u0647 \u0647\u064a \u062d\u0642\u064a\u0642\u0629 \u0627\u0642\u062a\u0631\u0627\u0628 \u0633\u064a\u0645\u0648\u0646\u064a \u0645\u0646 \u062e\u0644\u0627\u0641\u0629 \u0645\u0648\u0631\u064a\u0646\u064a\u0648 \u0641\u064a \u062a\u0634\u064a\u0644\u0633\u064a\n\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644: https:\/\/t.co\/C3nC9hteQ8","source":"\u003ca href=\"http:\/\/app.khalijya.com\/\" rel=\"nofollow\"\u003esaudi kora app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":522260516,"id_str":"522260516","name":"\u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u064a\u0637\u0627\u0644\u064a","screen_name":"elkoraCalcio","location":"Maadi, Cairo","url":"http:\/\/www.el-kora.com\/competition\/seriea","description":"\u0623\u062e\u0628\u0627\u0631 \u0627\u0644\u062f\u0648\u0631\u064a \u0627\u0644\u0625\u064a\u0637\u0627\u0644\u064a \u0645\u0646 \u0645\u0648\u0642\u0639 http:\/\/www.el-kora.com","protected":false,"verified":false,"followers_count":75484,"friends_count":31754,"listed_count":93,"favourites_count":23,"statuses_count":497004,"created_at":"Mon Mar 12 13:43:09 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"00AEFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447284609\/twitter.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447284609\/twitter.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484684600543698946\/JprjUCFa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484684600543698946\/JprjUCFa_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/522260516\/1404393082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728262917595137,"id_str":"663728262917595137","text":"\u0647\u0630\u0647 \u0647\u064a \u062d\u0642\u064a\u0642\u0629 \u0627\u0642\u062a\u0631\u0627\u0628 \u0633\u064a\u0645\u0648\u0646\u064a \u0645\u0646 \u062e\u0644\u0627\u0641\u0629 \u0645\u0648\u0631\u064a\u0646\u064a\u0648 \u0641\u064a \u062a\u0634\u064a\u0644\u0633\u064a\n\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644: https:\/\/t.co\/C3nC9hteQ8","source":"\u003ca href=\"http:\/\/app.khalijya.com\/\" rel=\"nofollow\"\u003esaudi kora app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1548253028,"id_str":"1548253028","name":"el-kora.com","screen_name":"el_koracom","location":"Saudi Arabia","url":"http:\/\/www.el-kora.com","description":"The official account of http:\/\/www.el-kora.com - Sports news portal","protected":false,"verified":false,"followers_count":162265,"friends_count":47547,"listed_count":223,"favourites_count":95,"statuses_count":586856,"created_at":"Wed Jun 26 13:50:21 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"181818","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000008310208\/463eec41d65a9becd0e817d3ceabc908.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000008310208\/463eec41d65a9becd0e817d3ceabc908.png","profile_background_tile":true,"profile_link_color":"FC4B4B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/570929075242295296\/yLHZhaw-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/570929075242295296\/yLHZhaw-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1548253028\/1391527691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3nC9hteQ8","expanded_url":"http:\/\/www.el-kora.com\/news\/241801","display_url":"el-kora.com\/news\/241801","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/C3nC9hteQ8","expanded_url":"http:\/\/www.el-kora.com\/news\/241801","display_url":"el-kora.com\/news\/241801","indices":[90,113]}],"user_mentions":[{"screen_name":"el_koracom","name":"el-kora.com","id":1548253028,"id_str":"1548253028","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080124661"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635438592,"id_str":"663728265635438592","text":"\u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u064a \u0638\u0644\u0645\u062a \u0646\u0641\u0633\u064a \u0638\u0644\u0645\u0627 \u0643\u062b\u064a\u0631\u0627 \u0641\u0627\u063a\u0641\u0631\u0644\u064a \u0641\u0625\u0646\u0647 \u0644\u0627 \u064a\u063a\u0641\u0631 \u0627\u0644\u0630\u0646\u0648\u0628 \u0625\u0644\u0627 \u0623\u0646\u062a.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2614943214,"id_str":"2614943214","name":"\u0645\u0646\u064e\u0649.","screen_name":"a37258","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f5\/10\u200f \u0641\u0623\u0646\u062a \u062a\u0643\u062a\u0628\u060c\u0648\u0627\u0644\u0645\u0644\u0627\u0626\u0643\u0629 \u062a\u0643\u062a\u0628 |\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647.","protected":false,"verified":false,"followers_count":281,"friends_count":503,"listed_count":1,"favourites_count":344,"statuses_count":5333,"created_at":"Thu Jul 10 06:57:54 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"190F40","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659415787078328320\/T6O2dAw4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659415787078328320\/T6O2dAw4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2614943214\/1439112569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664819200,"id_str":"663728265664819200","text":"\u571f\u65e5\u3068\u304b\u306b\u3075\u3089\u3063\u3068\u6e29\u6cc9\u884c\u304d\u305f\u3044\u8349\u6d25\u3068\u304b\u8fd1\u5834\u3067\u3044\u3044\u304b\u3089\u7f8e\u5473\u3057\u3044\u3082\u306e\u98df\u3079\u305f\u308a\u3086\u3063\u304f\u308a\u3057\u305f\u308a\u3057\u3066\u5fc3\u8eab\u3068\u3082\u306b\u7652\u3057\u305f\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1036866188,"id_str":"1036866188","name":"\u3072\u306a\u306e","screen_name":"boritaaan","location":null,"url":null,"description":"\u4e0d\u52d5\u5ca1 127 \/ \u6771\u6d0b \u7d4c\u55b6","protected":false,"verified":false,"followers_count":333,"friends_count":331,"listed_count":1,"favourites_count":263,"statuses_count":1042,"created_at":"Wed Dec 26 10:56:13 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657935456194048000\/KiDE_zAC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657935456194048000\/KiDE_zAC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1036866188\/1447055606","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265656442880,"id_str":"663728265656442880","text":"E cantar","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406482215,"id_str":"406482215","name":"Beka","screen_name":"RebekaBzGarg","location":"Guarulhos, S\u00e3o Paulo","url":null,"description":"Um minuto \u00e9 o suficiente pra sua mente trope\u00e7ar no cora\u00e7\u00e3o!!! \u2764\ufe0f \/\/ SCCP\u26ab\ufe0f\u26aa\ufe0f \/\/","protected":false,"verified":false,"followers_count":516,"friends_count":382,"listed_count":1,"favourites_count":4596,"statuses_count":7427,"created_at":"Sun Nov 06 19:30:13 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"FF3300","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663436542426394624\/zirNz5lL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663436542426394624\/zirNz5lL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406482215\/1447010373","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080124664"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652211712,"id_str":"663728265652211712","text":"RT @VirginieVanos: https:\/\/t.co\/FJFbTdFbzm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149154517,"id_str":"4149154517","name":"vuolo segur","screen_name":"vuolosegurm2","location":"Polska","url":null,"description":"0 lat nieco zwariowana 5 Secons of Summeruwielbiam sport siatk\u00f3wka skoki narciarskie formu\u0142a 1","protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":10,"statuses_count":25,"created_at":"Mon Nov 09 12:43:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719580079104001\/-oevbwUw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719580079104001\/-oevbwUw_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:37:35 +0000 2015","id":663576140049707008,"id_str":"663576140049707008","text":"https:\/\/t.co\/FJFbTdFbzm","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2542834770,"id_str":"2542834770","name":"Virginie Vanos","screen_name":"VirginieVanos","location":"Bruxelles","url":"http:\/\/www.edilivre.com\/le-spectateur-22f9674447.html#.Vj761r-BBQK","description":"Entre mes photos et mes \u00e9crits, je vis 5 minutes par jour dans le monde r\u00e9el....","protected":false,"verified":false,"followers_count":4275,"friends_count":2049,"listed_count":9,"favourites_count":366,"statuses_count":7323,"created_at":"Tue Jun 03 05:39:40 +0000 2014","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"25B3E6","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473712716058591233\/txkNHAee_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473712716058591233\/txkNHAee_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2542834770\/1401780384","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3938,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FJFbTdFbzm","expanded_url":"https:\/\/www.facebook.com\/virginievanos\/posts\/10153679422027071?pnref=story","display_url":"facebook.com\/virginievanos\/\u2026","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FJFbTdFbzm","expanded_url":"https:\/\/www.facebook.com\/virginievanos\/posts\/10153679422027071?pnref=story","display_url":"facebook.com\/virginievanos\/\u2026","indices":[19,42]}],"user_mentions":[{"screen_name":"VirginieVanos","name":"Virginie Vanos","id":2542834770,"id_str":"2542834770","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080124663"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265631240192,"id_str":"663728265631240192","text":"@giobellax3 if you like him let me know & I'll start looking","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":30467107,"in_reply_to_user_id_str":"30467107","in_reply_to_screen_name":"giobellax3","user":{"id":2303940901,"id_str":"2303940901","name":"Melissa Caracciolo","screen_name":"MELISSAssy94","location":null,"url":null,"description":"MIDDLE FINGERS UP IF YOU DON'T GIVE A FUCK\u270c\ufe0f","protected":false,"verified":false,"followers_count":167,"friends_count":486,"listed_count":1,"favourites_count":1263,"statuses_count":499,"created_at":"Wed Jan 22 00:46:05 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651543300848099328\/1r3sXiGd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651543300848099328\/1r3sXiGd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2303940901\/1447039734","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"giobellax3","name":"Giovanna Graziano","id":30467107,"id_str":"30467107","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124658"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660616705,"id_str":"663728265660616705","text":"RT @GanjaGong_: \ud83d\ude02\ud83d\ude02\ud83d\ude02Facts\u203c\ufe0f https:\/\/t.co\/RafemVPPKO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2875719413,"id_str":"2875719413","name":"\u6d2a\u6c34\u5e02","screen_name":"NeonDion_37","location":"banging gears","url":null,"description":"#AspiringGreat #Autotechnician #pisces316 BMW e46 323I.Europeans in DE. #DiverChevy we were born to be real... not perfect...GODSPEED!...","protected":false,"verified":false,"followers_count":211,"friends_count":274,"listed_count":2,"favourites_count":366,"statuses_count":3823,"created_at":"Thu Nov 13 22:10:40 +0000 2014","utc_offset":-18000,"time_zone":"EST","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628432314431840256\/XEebk_pi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628432314431840256\/XEebk_pi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2875719413\/1436151049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:56 +0000 2015","id":663728230130712577,"id_str":"663728230130712577","text":"\ud83d\ude02\ud83d\ude02\ud83d\ude02Facts\u203c\ufe0f https:\/\/t.co\/RafemVPPKO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180202287,"id_str":"2180202287","name":"#\u20e3CL0\u20e31\u20e38\u20e37\u20e3K4\u20e37\u20e3","screen_name":"GanjaGong_","location":"The Jungle ","url":"https:\/\/soundcloud.com\/killuminati-movment\/jiggy-shit-ganja","description":"Music is all i feel.","protected":false,"verified":false,"followers_count":655,"friends_count":906,"listed_count":6,"favourites_count":925,"statuses_count":32928,"created_at":"Wed Nov 13 23:05:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663431953828462592\/tU7LAwG5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663431953828462592\/tU7LAwG5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2180202287\/1444075380","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727487814377472,"quoted_status_id_str":"663727487814377472","quoted_status":{"created_at":"Mon Nov 09 14:38:59 +0000 2015","id":663727487814377472,"id_str":"663727487814377472","text":"They gon fall asleep on us! #grandparents #grammykate #poppopteag","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2875719413,"id_str":"2875719413","name":"\u6d2a\u6c34\u5e02","screen_name":"NeonDion_37","location":"banging gears","url":null,"description":"#AspiringGreat #Autotechnician #pisces316 BMW e46 323I.Europeans in DE. #DiverChevy we were born to be real... not perfect...GODSPEED!...","protected":false,"verified":false,"followers_count":211,"friends_count":274,"listed_count":2,"favourites_count":366,"statuses_count":3822,"created_at":"Thu Nov 13 22:10:40 +0000 2014","utc_offset":-18000,"time_zone":"EST","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628432314431840256\/XEebk_pi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628432314431840256\/XEebk_pi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2875719413\/1436151049","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"grandparents","indices":[28,41]},{"text":"grammykate","indices":[42,53]},{"text":"poppopteag","indices":[54,65]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RafemVPPKO","expanded_url":"https:\/\/twitter.com\/neondion_37\/status\/663727487814377472","display_url":"twitter.com\/neondion_37\/st\u2026","indices":[11,34]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RafemVPPKO","expanded_url":"https:\/\/twitter.com\/neondion_37\/status\/663727487814377472","display_url":"twitter.com\/neondion_37\/st\u2026","indices":[27,50]}],"user_mentions":[{"screen_name":"GanjaGong_","name":"#\u20e3CL0\u20e31\u20e38\u20e37\u20e3K4\u20e37\u20e3","id":2180202287,"id_str":"2180202287","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265631244288,"id_str":"663728265631244288","text":"QuenEspoir #PushAwardsLizQuens https:\/\/t.co\/rbyuugszMS","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4003278734,"id_str":"4003278734","name":"Everyday I Love You","screen_name":"lqgroup13","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":6,"listed_count":1,"favourites_count":0,"statuses_count":34551,"created_at":"Sat Oct 24 14:48:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657935866560548865\/3VoRaNxV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657935866560548865\/3VoRaNxV_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727622338252800,"quoted_status_id_str":"663727622338252800","quoted_status":{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727622338252800,"id_str":"663727622338252800","text":"appleheartme22 #PushAwardsLizQuens https:\/\/t.co\/CZRQ6hBGQd","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3901122795,"id_str":"3901122795","name":"Quen_espoir","screen_name":"QuenEspoir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":113,"friends_count":98,"listed_count":3,"favourites_count":46,"statuses_count":33765,"created_at":"Thu Oct 08 16:52:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653951883774701568\/RkE9AIFy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727300203159552,"quoted_status_id_str":"663727300203159552","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[15,34]}],"urls":[{"url":"https:\/\/t.co\/CZRQ6hBGQd","expanded_url":"http:\/\/twitter.com\/appleheartme22\/status\/663727300203159552","display_url":"twitter.com\/appleheartme22\u2026","indices":[35,58]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsLizQuens","indices":[11,30]}],"urls":[{"url":"https:\/\/t.co\/rbyuugszMS","expanded_url":"http:\/\/twitter.com\/QuenEspoir\/status\/663727622338252800","display_url":"twitter.com\/QuenEspoir\/sta\u2026","indices":[31,54]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080124658"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635368961,"id_str":"663728265635368961","text":"RT @auntie0wl926: \u0e23\u0e39\u0e49\u0e21\u0e31\u0e49\u0e22\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e49\u0e32\u0e07\u0e46\u0e01\u0e31\u0e19\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e21\u0e31\u0e19\u0e14\u0e35\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19:-) #\u0e15\u0e49\u0e19\u0e40\u0e08 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e17\u0e34\u0e49\u0e07\u0e43\u0e2b\u0e49\u0e2d\u0e35\u0e01\u0e04\u0e19\u0e42\u0e14\u0e14\u0e40\u0e14\u0e35\u0e48\u0e22\u0e27 \u00a9 Thailand National Team Gallery http\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242059718,"id_str":"3242059718","name":"\u0e15\u0e31\u0e27\u0e40\u0e25\u0e47\u0e01\u0e02\u0e2d\u0e07\u0e01\u0e38\u0e21\u0e32\u0e23\u0e19\u0e49\u0e2d\u0e22","screen_name":"juntjira","location":null,"url":"https:\/\/junnkblog.wordpress.com","description":"\u1d9c\u1d34\u1d2c\u1d3a\u1d2c\u1d40\u1d34\u1d35\u1d3e#\u1d9c\u02e2\u00b9\u2078 \u2661 \u2661\u1da0\u1d3c\u1d3c\u1d40\u1d2e\u1d2c\u1d38\u1d38\u1d40\u1d34\u1d2c\u1d35\u1d38\u1d2c\u1d3a\u1d30 \/\/ \u1d36\u1d41\u1d3a\u1d3a\u1d37 #\u0e15\u0e49\u0e19\u0e40\u0e08","protected":false,"verified":false,"followers_count":94,"friends_count":13,"listed_count":0,"favourites_count":184,"statuses_count":11779,"created_at":"Thu Jun 11 07:31:17 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662534754370109440\/joWgrlsQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662534754370109440\/joWgrlsQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242059718\/1442141786","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:53 +0000 2015","id":663727716210860032,"id_str":"663727716210860032","text":"\u0e23\u0e39\u0e49\u0e21\u0e31\u0e49\u0e22\u0e2d\u0e22\u0e39\u0e48\u0e02\u0e49\u0e32\u0e07\u0e46\u0e01\u0e31\u0e19\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e21\u0e31\u0e19\u0e14\u0e35\u0e41\u0e04\u0e48\u0e44\u0e2b\u0e19:-) #\u0e15\u0e49\u0e19\u0e40\u0e08 \u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e44\u0e21\u0e48\u0e40\u0e04\u0e22\u0e17\u0e34\u0e49\u0e07\u0e43\u0e2b\u0e49\u0e2d\u0e35\u0e01\u0e04\u0e19\u0e42\u0e14\u0e14\u0e40\u0e14\u0e35\u0e48\u0e22\u0e27 \u00a9 Thailand National Team Gallery https:\/\/t.co\/WactFL1KKb","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":208034490,"id_str":"208034490","name":"` o w l x i a \u221e","screen_name":"auntie0wl926","location":"BKK","url":"http:\/\/nine2sixfiction.blogspot.com\/","description":"` till we meet again | an ordinary fangirl & football addicted | camera. movies. journey. \u2606 #Cassiopeia & #CheerThailand as good as I can \u2661","protected":false,"verified":false,"followers_count":388,"friends_count":197,"listed_count":2,"favourites_count":240,"statuses_count":54621,"created_at":"Tue Oct 26 14:12:39 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493363565605040129\/g9t-QkjK.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493363565605040129\/g9t-QkjK.png","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"9E601E","profile_text_color":"C4960C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661886748868214784\/CrxkvR7q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661886748868214784\/CrxkvR7q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/208034490\/1444830076","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"\u0e15\u0e49\u0e19\u0e40\u0e08","indices":[40,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e15\u0e49\u0e19\u0e40\u0e08","indices":[58,64]}],"urls":[],"user_mentions":[{"screen_name":"auntie0wl926","name":"` o w l x i a \u221e","id":208034490,"id_str":"208034490","indices":[3,16]}],"symbols":[],"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727716210860032,"source_status_id_str":"663727716210860032","source_user_id":208034490,"source_user_id_str":"208034490"}]},"extended_entities":{"media":[{"id":663727714717708288,"id_str":"663727714717708288","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI1wdUsAAzkyw.jpg","url":"https:\/\/t.co\/WactFL1KKb","display_url":"pic.twitter.com\/WactFL1KKb","expanded_url":"http:\/\/twitter.com\/auntie0wl926\/status\/663727716210860032\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":992,"resize":"fit"},"medium":{"w":600,"h":581,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727716210860032,"source_status_id_str":"663727716210860032","source_user_id":208034490,"source_user_id_str":"208034490"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265627070464,"id_str":"663728265627070464","text":"...100 \u0433\u0440 \u043f\u043b\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0433\u043e \u0441\u044b\u0440\u043a\u0430 - 1 \u044f\u0439\u0446\u043e - \u0421\u043e\u043b\u044c \u2013 \u0449\u0435\u043f\u043e\u0442\u043a\u0430 \u0420\u0435\u0446\u0435\u043f\u0442...","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1261842636,"id_str":"1261842636","name":"JordanMoon","screen_name":"JordanMoon19","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":12,"friends_count":20,"listed_count":1,"favourites_count":0,"statuses_count":100062,"created_at":"Tue Mar 12 12:25:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3671521248\/8e319ab903a8f1dad3d1adf20dbc3b7d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3671521248\/8e319ab903a8f1dad3d1adf20dbc3b7d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652215808,"id_str":"663728265652215808","text":"RT @AxelofWS: @AlexRwz jure t'as fais 10k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":946003184,"id_str":"946003184","name":"alex","screen_name":"AlexRwz","location":"Paris - Kiev","url":"https:\/\/instagram.com\/alex.rwz\/","description":null,"protected":false,"verified":false,"followers_count":764,"friends_count":135,"listed_count":6,"favourites_count":7218,"statuses_count":23196,"created_at":"Tue Nov 13 15:37:30 +0000 2012","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663689811191046144\/daKT6RtC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663689811191046144\/daKT6RtC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946003184\/1444916031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728178079375360,"id_str":"663728178079375360","text":"@AlexRwz jure t'as fais 10k","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663395130485948416,"in_reply_to_status_id_str":"663395130485948416","in_reply_to_user_id":946003184,"in_reply_to_user_id_str":"946003184","in_reply_to_screen_name":"AlexRwz","user":{"id":880011073,"id_str":"880011073","name":"AXEL","screen_name":"AxelofWS","location":"Toulouse, Midi-Pyr\u00e9n\u00e9es","url":"http:\/\/Instagram.com\/AxelOfWS","description":"Axel, 20 ans","protected":false,"verified":false,"followers_count":120930,"friends_count":79989,"listed_count":96,"favourites_count":10904,"statuses_count":80536,"created_at":"Sun Oct 14 12:23:44 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641268951104794624\/paHEWB0L_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641268951104794624\/paHEWB0L_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/880011073\/1445117607","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AlexRwz","name":"alex","id":946003184,"id_str":"946003184","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AxelofWS","name":"AXEL","id":880011073,"id_str":"880011073","indices":[3,12]},{"screen_name":"AlexRwz","name":"alex","id":946003184,"id_str":"946003184","indices":[14,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124663"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652228096,"id_str":"663728265652228096","text":"Mhiyang0529: krisloveyou2: AdorbsKath: AyalaXander: Imma_lonely_: gerald312garcia: sandyayala09: kbdpftcris8: lepitennicell4: #PushAwardsKa\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3802486038,"id_str":"3802486038","name":"JamellaManalo","screen_name":"jamella_manalo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":46,"listed_count":4,"favourites_count":21,"statuses_count":17961,"created_at":"Tue Oct 06 11:14:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651355836137148416\/gxSoAw_7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651355836137148416\/gxSoAw_7_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKa","indices":[126,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080124663"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664811008,"id_str":"663728265664811008","text":"@IRAQ__sports \u0647\u063a\u0648\u0627\u064a\u0646 \u064a\u0633\u0644\u0645 \u0639\u0644\u0649 \u0639\u0644\u0627\u0648\u064a \u0644\u062a\u0623\u0643\u064a\u062f \u0627\u0646\u0647 \u0628\u0634\u0631 \u0648\u0644\u064a\u0633 \u0645\u0646 \u0643\u0648\u0643\u0628 \u0627\u062e\u0631","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663670505149480960,"in_reply_to_status_id_str":"663670505149480960","in_reply_to_user_id":2729765422,"in_reply_to_user_id_str":"2729765422","in_reply_to_screen_name":"IRAQ__sports","user":{"id":2733983471,"id_str":"2733983471","name":"\u0633\u0627\u0647\u0631","screen_name":"saher_nz1990","location":null,"url":null,"description":"\u0645\u0627 \u0627\u062e\u062a\u0631\u062a\u064f \u0627\u0644\u0635\u064e\u0651\u0645\u062a \u062c\u0648\u0627\u0628\u0627\u064b \u0625\u0644\u0627\u064e\u0651 \u0644\u0645\u064e\u0646 \u0633\u0623\u0644\u064e\u0646\u064a: \u0645\u0646 \u0623\u0646\u062a\u064e\u061f","protected":false,"verified":false,"followers_count":352,"friends_count":60,"listed_count":1,"favourites_count":7411,"statuses_count":11781,"created_at":"Tue Aug 05 08:59:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649913931436294144\/tgb1cktk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649913931436294144\/tgb1cktk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2733983471\/1445958737","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"IRAQ__sports","name":"\u0627\u0644\u0639\u0631\u0627\u0642 \u0633\u0628\u0648\u0631\u062a","id":2729765422,"id_str":"2729765422","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626935297,"id_str":"663728265626935297","text":"\u3042\u30fc\u3001\u306a\u3093\u3060\u304b\u3093\u3060\u30ab\u30e9\u30fc\u30d1\u30ec\u30c3\u30c8\u3084\u3063\u305f\u3053\u3068\u7121\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1649851554,"id_str":"1649851554","name":"\u30a2\u30e2\u30eb","screen_name":"unamoru","location":null,"url":null,"description":"\u30b2\u30fc\u30e0\u5c02\u7528\u57a2\u3067\u3059\u3002\u545f\u3044\u305f\u308a\u545f\u304b\u306a\u304b\u3063\u305f\u308a('\u03c9')\u4efb\u5929\u5802\u30b2\u30fc\u30e0\u4e2d\u5fc3\u3001 MH\/\u3076\u3064\u68ee\/\u30bc\u30eb\u4f1d\/pm\/\u7267\u5834\u30b7\u30ea\u30fc\u30baetc \u3068\u3073\u68ee\u5922\u756a\u5730:3400-0771-7502 \u30e2\u30d0\u6751 \u30d8\u30c3\u30c0\u30fc\u306f\u3010@sta_2nd \u3011\u69d8\u304b\u3089\u304a\u501f\u308a\u3057\u3066\u3044\u307e\u3059","protected":false,"verified":false,"followers_count":127,"friends_count":110,"listed_count":3,"favourites_count":1226,"statuses_count":6482,"created_at":"Tue Aug 06 09:03:52 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652647452198105088\/KG4i-d6r_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652647452198105088\/KG4i-d6r_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1649851554\/1442035227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265643892736,"id_str":"663728265643892736","text":"RT @szczerosc100pro: mam do wys\u0142ania #kartki\u015bwi\u0105teczne #kartkibo\u017conarodzeniowe\nNIE PRZEGAPCIE OKAZJI, to mo\u017ce by\u0107 pierwsza i ostatnia \ud83d\ude02\ud83d\ude02 ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2871607345,"id_str":"2871607345","name":"klaudina spierdolina","screen_name":"manee_shawty","location":null,"url":null,"description":"julcia i martynka to moje kochane chore pojeby @vanstylz @avenuebrooks","protected":false,"verified":false,"followers_count":1151,"friends_count":1809,"listed_count":5,"favourites_count":10582,"statuses_count":32289,"created_at":"Wed Oct 22 18:39:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542351866344923137\/JcYN8Psl.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542351866344923137\/JcYN8Psl.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662743649105522693\/-Q_OLc3J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662743649105522693\/-Q_OLc3J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2871607345\/1446826519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 13:09:07 +0000 2015","id":663342483858960384,"id_str":"663342483858960384","text":"mam do wys\u0142ania #kartki\u015bwi\u0105teczne #kartkibo\u017conarodzeniowe\nNIE PRZEGAPCIE OKAZJI, to mo\u017ce by\u0107 pierwsza i ostatnia \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/hHicvcaEKf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1911756092,"id_str":"1911756092","name":"queen of sass\u2728","screen_name":"szczerosc100pro","location":null,"url":"https:\/\/www.wattpad.com\/myworks\/52139916-lady-malfoy-tumaczenie-pl","description":"NIE BIERZCIE MNIE NIGDY NA POWA\u017bNIE! pisz\u0119 o sobie, nie o Was. Wszystkie tweety wymy\u015blane s\u0105 przeze mnie (znajdziecie je w ulubionych)","protected":false,"verified":false,"followers_count":9504,"friends_count":3754,"listed_count":5,"favourites_count":273,"statuses_count":339,"created_at":"Fri Sep 27 17:20:23 +0000 2013","utc_offset":3600,"time_zone":"Warsaw","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000112833960\/7208e87570725c77ca51d15e76ba316e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000112833960\/7208e87570725c77ca51d15e76ba316e.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572419337651093504\/S9GGjKVa_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572419337651093504\/S9GGjKVa_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":5,"entities":{"hashtags":[{"text":"kartki\u015bwi\u0105teczne","indices":[16,33]},{"text":"kartkibo\u017conarodzeniowe","indices":[34,57]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663342446563094528,"id_str":"663342446563094528","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","url":"https:\/\/t.co\/hHicvcaEKf","display_url":"pic.twitter.com\/hHicvcaEKf","expanded_url":"http:\/\/twitter.com\/szczerosc100pro\/status\/663342483858960384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663342446563094528,"id_str":"663342446563094528","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","url":"https:\/\/t.co\/hHicvcaEKf","display_url":"pic.twitter.com\/hHicvcaEKf","expanded_url":"http:\/\/twitter.com\/szczerosc100pro\/status\/663342483858960384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kartki\u015bwi\u0105teczne","indices":[37,54]},{"text":"kartkibo\u017conarodzeniowe","indices":[55,78]}],"urls":[],"user_mentions":[{"screen_name":"szczerosc100pro","name":"queen of sass\u2728","id":1911756092,"id_str":"1911756092","indices":[3,19]}],"symbols":[],"media":[{"id":663342446563094528,"id_str":"663342446563094528","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","url":"https:\/\/t.co\/hHicvcaEKf","display_url":"pic.twitter.com\/hHicvcaEKf","expanded_url":"http:\/\/twitter.com\/szczerosc100pro\/status\/663342483858960384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663342483858960384,"source_status_id_str":"663342483858960384","source_user_id":1911756092,"source_user_id_str":"1911756092"}]},"extended_entities":{"media":[{"id":663342446563094528,"id_str":"663342446563094528","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSqcMvU8AAI7s2.jpg","url":"https:\/\/t.co\/hHicvcaEKf","display_url":"pic.twitter.com\/hHicvcaEKf","expanded_url":"http:\/\/twitter.com\/szczerosc100pro\/status\/663342483858960384\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663342483858960384,"source_status_id_str":"663342483858960384","source_user_id":1911756092,"source_user_id_str":"1911756092"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pl","timestamp_ms":"1447080124661"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660600321,"id_str":"663728265660600321","text":"@asenasenol ben \u00e7ok pi\u015fman\u0131m ya \u0130stanbulda oturan taliplerimi bekliyorum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727277050605568,"in_reply_to_status_id_str":"663727277050605568","in_reply_to_user_id":336504453,"in_reply_to_user_id_str":"336504453","in_reply_to_screen_name":"asenasenol","user":{"id":1027236301,"id_str":"1027236301","name":"\u015eefika","screen_name":"helihip","location":null,"url":null,"description":"dinlerken uyumu\u015fum","protected":false,"verified":false,"followers_count":224,"friends_count":114,"listed_count":0,"favourites_count":5945,"statuses_count":1300,"created_at":"Fri Dec 21 21:55:17 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"13E9F0","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/487932491534053377\/UQkZSLm1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/487932491534053377\/UQkZSLm1.jpeg","profile_background_tile":true,"profile_link_color":"0CE6E6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662391031468580864\/8-4qP0Qz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662391031468580864\/8-4qP0Qz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1027236301\/1436139074","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"asenasenol","name":"Asena \u015eenol","id":336504453,"id_str":"336504453","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265647951873,"id_str":"663728265647951873","text":"RT @dinomine_kim: Oppa sorry na....\n#INSPIRITPHLovesLeaderGyu @kyuzizi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4179994940,"id_str":"4179994940","name":"@canmyungsaveme 2","screen_name":"kim_msoo","location":null,"url":null,"description":"2nd twitter acc incase of tweetlimits :) ACTIVE TWITTER- @canmyungsaveme","protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":240,"created_at":"Mon Nov 09 14:17:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723682741686272\/OJLX-mKk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723682741686272\/OJLX-mKk_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:30 +0000 2015","id":663726610592362496,"id_str":"663726610592362496","text":"Oppa sorry na....\n#INSPIRITPHLovesLeaderGyu @kyuzizi","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4178335938,"id_str":"4178335938","name":"DinoMine Kim","screen_name":"dinomine_kim","location":null,"url":null,"description":"When your Gone~ the pieces of my Heart i'll be\r\nMissing u...~ so Don't go..stay in my Heart!..^^","protected":false,"verified":false,"followers_count":2,"friends_count":28,"listed_count":0,"favourites_count":2,"statuses_count":159,"created_at":"Mon Nov 09 10:51:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"INSPIRITPHLovesLeaderGyu","indices":[18,43]}],"urls":[],"user_mentions":[{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[44,52]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"INSPIRITPHLovesLeaderGyu","indices":[36,61]}],"urls":[],"user_mentions":[{"screen_name":"dinomine_kim","name":"DinoMine Kim","id":4178335938,"id_str":"4178335938","indices":[3,16]},{"screen_name":"kyuzizi","name":"\uae40\uc131\uaddc","id":723884990,"id_str":"723884990","indices":[62,70]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080124662"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626972160,"id_str":"663728265626972160","text":"RT @drcesarlozano: \"Son nuestras decisiones las que definen nuestro destino\" #FraseMatona https:\/\/t.co\/O4cx68er3R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3281895740,"id_str":"3281895740","name":"feona","screen_name":"feonaGL","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":19,"friends_count":250,"listed_count":0,"favourites_count":6,"statuses_count":186,"created_at":"Thu Jul 16 23:46:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621829019097395200\/0Z5Hd7IO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621829019097395200\/0Z5Hd7IO_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:31:16 +0000 2015","id":663529252885671936,"id_str":"663529252885671936","text":"\"Son nuestras decisiones las que definen nuestro destino\" #FraseMatona https:\/\/t.co\/O4cx68er3R","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100288793,"id_str":"100288793","name":"Dr. C\u00e9sar Lozano","screen_name":"drcesarlozano","location":"Monterrey, N.L., M\u00e9xico","url":"http:\/\/www.cesarlozano.com","description":"Conferencista Internacional. Conductor del programa de Radio Por el Placer de Vivir en M\u00e9xico y USA. Secci\u00f3n Aqu\u00ed entre nos los lunes Programa HOY Televisa Mx","protected":false,"verified":true,"followers_count":936537,"friends_count":834,"listed_count":2201,"favourites_count":107,"statuses_count":32286,"created_at":"Tue Dec 29 18:31:06 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1767BD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/430928153\/1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/430928153\/1.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/448138530544304128\/cGmmb8Kj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/448138530544304128\/cGmmb8Kj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100288793\/1395679655","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":154,"favorite_count":319,"entities":{"hashtags":[{"text":"FraseMatona","indices":[58,70]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663529242441875456,"id_str":"663529242441875456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","url":"https:\/\/t.co\/O4cx68er3R","display_url":"pic.twitter.com\/O4cx68er3R","expanded_url":"http:\/\/twitter.com\/drcesarlozano\/status\/663529252885671936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"},"large":{"w":817,"h":807,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663529242441875456,"id_str":"663529242441875456","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","url":"https:\/\/t.co\/O4cx68er3R","display_url":"pic.twitter.com\/O4cx68er3R","expanded_url":"http:\/\/twitter.com\/drcesarlozano\/status\/663529252885671936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"},"large":{"w":817,"h":807,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FraseMatona","indices":[77,89]}],"urls":[],"user_mentions":[{"screen_name":"drcesarlozano","name":"Dr. C\u00e9sar Lozano","id":100288793,"id_str":"100288793","indices":[3,17]}],"symbols":[],"media":[{"id":663529242441875456,"id_str":"663529242441875456","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","url":"https:\/\/t.co\/O4cx68er3R","display_url":"pic.twitter.com\/O4cx68er3R","expanded_url":"http:\/\/twitter.com\/drcesarlozano\/status\/663529252885671936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"},"large":{"w":817,"h":807,"resize":"fit"}},"source_status_id":663529252885671936,"source_status_id_str":"663529252885671936","source_user_id":100288793,"source_user_id_str":"100288793"}]},"extended_entities":{"media":[{"id":663529242441875456,"id_str":"663529242441875456","indices":[90,113],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVUVJnVAAAzjwS.jpg","url":"https:\/\/t.co\/O4cx68er3R","display_url":"pic.twitter.com\/O4cx68er3R","expanded_url":"http:\/\/twitter.com\/drcesarlozano\/status\/663529252885671936\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":335,"resize":"fit"},"medium":{"w":600,"h":592,"resize":"fit"},"large":{"w":817,"h":807,"resize":"fit"}},"source_status_id":663529252885671936,"source_status_id_str":"663529252885671936","source_user_id":100288793,"source_user_id_str":"100288793"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626959872,"id_str":"663728265626959872","text":"RT @bnr7403: \u306b\u3083\u306b\u3083\u266a https:\/\/t.co\/aWwGD5a1QN","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3222997706,"id_str":"3222997706","name":"TrueStoryBot","screen_name":"TrueStoryBot","location":null,"url":null,"description":"\u4e16\u754c\u306e\u771f\u5b9f\u3092\u4f1d\u3048\u308b\u30c4\u30a4\u30c3\u30bf\u30fc","protected":false,"verified":false,"followers_count":198,"friends_count":231,"listed_count":3,"favourites_count":441,"statuses_count":3574,"created_at":"Fri May 22 05:49:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601627269841326080\/Q61aYAbp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601627269841326080\/Q61aYAbp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3222997706\/1432275410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:57:15 +0000 2015","id":663701886608912384,"id_str":"663701886608912384","text":"\u306b\u3083\u306b\u3083\u266a https:\/\/t.co\/aWwGD5a1QN","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":142167111,"id_str":"142167111","name":"\u5065","screen_name":"bnr7403","location":"\u6803\u6728\u770c","url":"http:\/\/twilog.org\/bnr7403","description":"GT-R\u3068\u30c9\u30e9\u30b4\u30f3\u30ba\u3092\u3053\u3088\u306a\u304f\u611b\u3059\u308b\u30aa\u30b8\u30b5\u30f3\u3067\u3059\u3002\u7652\u3055\u308c\u308b\u753b\u50cf\u3092\u305f\u304f\u3055\u3093\u30a2\u30c3\u30d7\u3057\u3066\u307e\u3059\u3002\u30a2\u30a4\u30b3\u30f3\u306f18\u5e74\u9593\u4e00\u7dd2\u306b\u66ae\u3089\u3057\u3066\u304d\u3066\u6570\u5e74\u524d\u306b\u4ea1\u304f\u306a\u3063\u305f\u611b\u732b\u3002\u5074\u306b\u3044\u3066\u3044\u3064\u3082\u512a\u3057\u3044\u6c17\u6301\u3061\u306b\u306a\u308c\u305f\u53ef\u611b\u3044\u30e4\u30c4\u3067\u3057\u305f\u3002\u52d5\u7269\u5927\u597d\u304d\u4eba\u9593\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":24027,"friends_count":23640,"listed_count":469,"favourites_count":17,"statuses_count":121917,"created_at":"Mon May 10 04:35:12 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"00B83A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000165614474\/t9YCL_8n.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000165614474\/t9YCL_8n.jpeg","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/888087043\/____normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/888087043\/____normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/142167111\/1388411751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":37,"favorite_count":74,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663701853633273856,"id_str":"663701853633273856","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","url":"https:\/\/t.co\/aWwGD5a1QN","display_url":"pic.twitter.com\/aWwGD5a1QN","expanded_url":"http:\/\/twitter.com\/bnr7403\/status\/663701886608912384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":357,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":500,"h":357,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701853633273856,"id_str":"663701853633273856","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","url":"https:\/\/t.co\/aWwGD5a1QN","display_url":"pic.twitter.com\/aWwGD5a1QN","expanded_url":"http:\/\/twitter.com\/bnr7403\/status\/663701886608912384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":357,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":500,"h":357,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bnr7403","name":"\u5065","id":142167111,"id_str":"142167111","indices":[3,11]}],"symbols":[],"media":[{"id":663701853633273856,"id_str":"663701853633273856","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","url":"https:\/\/t.co\/aWwGD5a1QN","display_url":"pic.twitter.com\/aWwGD5a1QN","expanded_url":"http:\/\/twitter.com\/bnr7403\/status\/663701886608912384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":357,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":500,"h":357,"resize":"fit"}},"source_status_id":663701886608912384,"source_status_id_str":"663701886608912384","source_user_id":142167111,"source_user_id_str":"142167111"}]},"extended_entities":{"media":[{"id":663701853633273856,"id_str":"663701853633273856","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxUcaUYAA9oFC.jpg","url":"https:\/\/t.co\/aWwGD5a1QN","display_url":"pic.twitter.com\/aWwGD5a1QN","expanded_url":"http:\/\/twitter.com\/bnr7403\/status\/663701886608912384\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":357,"resize":"fit"},"small":{"w":340,"h":242,"resize":"fit"},"medium":{"w":500,"h":357,"resize":"fit"}},"source_status_id":663701886608912384,"source_status_id_str":"663701886608912384","source_user_id":142167111,"source_user_id_str":"142167111"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664724992,"id_str":"663728265664724992","text":"RT @JamTanganStyco: GC Unisex Rantai Silver Plat White | Hanya 245.000Rb (Belum Ongkir) SMS\/WA :0896-9472-1766 http:\/\/t.co\/YTydutEd4k","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":614942325,"id_str":"614942325","name":"About Movie","screen_name":"SemuaFilm","location":null,"url":"http:\/\/twitter.com\/SemuaFilm","description":"The Largest Indonesia Community Quote, Gosip, Question about Film. ||","protected":false,"verified":false,"followers_count":468356,"friends_count":3,"listed_count":337,"favourites_count":24,"statuses_count":15491,"created_at":"Fri Jun 22 04:55:53 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/776159206\/e316f10a71806f94e702e76f061278d8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/776159206\/e316f10a71806f94e702e76f061278d8.jpeg","profile_background_tile":true,"profile_link_color":"FA0505","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/470625825427947520\/CXNmUdNN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/470625825427947520\/CXNmUdNN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/614942325\/1401032814","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 27 02:11:10 +0000 2015","id":647956615400783872,"id_str":"647956615400783872","text":"GC Unisex Rantai Silver Plat White | Hanya 245.000Rb (Belum Ongkir) SMS\/WA :0896-9472-1766 http:\/\/t.co\/YTydutEd4k","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1110642728,"id_str":"1110642728","name":"Jam tangan","screen_name":"JamTanganStyco","location":null,"url":null,"description":"Follow @JamTanganStyco. Menjual berbagai Jam tangan Cowo, Cewe, Couple. SMS\/WA: 0896-9472-1766 | Pin:2B9EA5F7","protected":false,"verified":false,"followers_count":15075,"friends_count":0,"listed_count":7,"favourites_count":0,"statuses_count":126,"created_at":"Tue Jan 22 04:58:22 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496510995565539330\/8nxSrnu7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496510995565539330\/8nxSrnu7.png","profile_background_tile":true,"profile_link_color":"131414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618600421750239233\/R542PiHJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618600421750239233\/R542PiHJ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"extended_entities":{"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JamTanganStyco","name":"Jam tangan","id":1110642728,"id_str":"1110642728","indices":[3,18]}],"symbols":[],"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"extended_entities":{"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635323904,"id_str":"663728265635323904","text":"\u3077\u3088\u52dd\u8ca0\u3067\u8ca0\u3051\u3061\u3083\u3063\u305f\u3067\u3059\u3088\u30fc\u3000\u3070\u305f\u3093\u304d\u3085\uff5e(\u2190\u80cc\u3092\u5411\u3051\u306a\u304c\u3089)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":842204245,"id_str":"842204245","name":"\u9ed2\u30d1\u30e9\u30e9@\u5f71\u306e\u5546\u4eba","screen_name":"black_prr","location":"\u30d1\u30e9\u30e9\u306e\u5f71","url":null,"description":"@Orionfips\u306e\u5225\u57a2\u3067\u3059\u3088\u30fc\u3002\u3044\u3064\u3082\u4ee5\u4e0a\u306b\u6bd2\u820c\u304c\u591a\u3081\u3067\u3059\u306e\u3067\u3001\u3042\u3089\u304b\u3058\u3081\u3054\u308a\u3087\u30fc\u3057\u3087\u30fc\u4e0b\u3055\u3044\u30fc\u203b\u3075\u3060\u3093\u306f\u306a\u305c\u304b\u3088\u304f\u3057\u3083\u3079\u308b\u30d1\u30e9\u30e9bot\u3067\u3059\u3002\u545f\u304d\u306f\u968f\u6642\u8ffd\u52a0\u3057\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":98,"friends_count":115,"listed_count":1,"favourites_count":5,"statuses_count":7315,"created_at":"Sun Sep 23 18:40:32 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2645276919\/ff478bc4589b0ee6b9e7404b31bdb6d3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2645276919\/ff478bc4589b0ee6b9e7404b31bdb6d3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/842204245\/1356778231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660645376,"id_str":"663728265660645376","text":"New!: therealkurtvile - Pretty Pimpin (Live on KEXP) https:\/\/t.co\/TjgyDF90Vm https:\/\/t.co\/5CdN09w1Q9","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3376961008,"id_str":"3376961008","name":"Get into the groove!","screen_name":"signaljolene_sp","location":null,"url":null,"description":"Get into the groove! @songpills","protected":false,"verified":false,"followers_count":642,"friends_count":490,"listed_count":12,"favourites_count":0,"statuses_count":7545,"created_at":"Wed Jul 15 05:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623265891724173312\/1fm53oC-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623265891724173312\/1fm53oC-_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3376961008\/1437433199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/TjgyDF90Vm","expanded_url":"http:\/\/songpills.com\/new-therealkurtvile-pretty-pimpin-live-on-kexp\/","display_url":"songpills.com\/new-therealkur\u2026","indices":[54,77]}],"user_mentions":[],"symbols":[],"media":[{"id":663718528323747840,"id_str":"663718528323747840","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfCeVAAA-3vA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfCeVAAA-3vA.jpg","url":"https:\/\/t.co\/5CdN09w1Q9","display_url":"pic.twitter.com\/5CdN09w1Q9","expanded_url":"http:\/\/twitter.com\/songpills\/status\/663718528613158912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663718528613158912,"source_status_id_str":"663718528613158912","source_user_id":3077784184,"source_user_id_str":"3077784184"}]},"extended_entities":{"media":[{"id":663718528323747840,"id_str":"663718528323747840","indices":[78,101],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAfCeVAAA-3vA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAfCeVAAA-3vA.jpg","url":"https:\/\/t.co\/5CdN09w1Q9","display_url":"pic.twitter.com\/5CdN09w1Q9","expanded_url":"http:\/\/twitter.com\/songpills\/status\/663718528613158912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}},"source_status_id":663718528613158912,"source_status_id_str":"663718528613158912","source_user_id":3077784184,"source_user_id_str":"3077784184"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265627115520,"id_str":"663728265627115520","text":"Jaja que tarado","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1769050200,"id_str":"1769050200","name":".","screen_name":"VaanesaNazareth","location":null,"url":null,"description":"Primero River .","protected":false,"verified":false,"followers_count":3108,"friends_count":2820,"listed_count":5,"favourites_count":1767,"statuses_count":15776,"created_at":"Sat Sep 07 19:27:33 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621711395793563648\/6eKvJw-i.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621711395793563648\/6eKvJw-i.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663394803279912960\/aJlKlDHN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663394803279912960\/aJlKlDHN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1769050200\/1446833472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664684032,"id_str":"663728265664684032","text":"\u3071\u3041\u3071\u306d\u3001\u3088\u308b\u306b\u306a\u308b\u3068\u3063\u3000\u307e\u3041\u307e\u306e\u3053\u3068\u3044\u3058\u3081\u308a\u3085\u3093\u3060\u304a(*\u00b4\u30fb\u03c9\u30fb\uff40*)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358071026,"id_str":"358071026","name":"\u8d64\u5712\u5149\u9ec4(\u864e\u66dc\u4e00\u5bb6\u3053\u30fc\u304f\u3093bot)","screen_name":"kokun_bot","location":"\u8d64\u5712\u3055\u3093\u3061","url":null,"description":"\u864e\u66dc\u4e00\u5bb6\u306e\u3053\u30fc\u304f\u3093bot\u3002\u7ba1\u7406\u4eba\uff08@WinterNight1008\uff09\u3068\uff08@_kaki__\uff09\u306e\u5984\u60f3\u304b\u3089\u751f\u307e\u308c\u305f\u7523\u7269\u3067\u3059\u306e\u3067\u3001\u702c\u6597\u5149\u9ec4\u3001\u702c\u53e3\u304b\u306a\u672c\u4eba\u3068\u4e00\u5207\u95a2\u4fc2\u3042\u308a\u307e\u305b\u3093\u3002\uff13\u6b73\u306a\u306e\u3067\u4e0a\u624b\u306b\u30ea\u30d7\u306f\u3067\u304d\u307e\u305b\u3093\uff08\u771f\u9854\uff09\n\u975e\u516c\u5f0fRT\u306e\u65b9\u304c\u7406\u89e3\u3057\u3084\u3059\u3044\u3088\u3046\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":296,"friends_count":438,"listed_count":1,"favourites_count":0,"statuses_count":71337,"created_at":"Fri Aug 19 10:01:49 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1504483510\/20110820_132809_20480_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1504483510\/20110820_132809_20480_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265631170562,"id_str":"663728265631170562","text":"\u306a\u3093\u3067\u8f9e\u3081\u305f\u3093\u3060\u3063\u3051\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":94601828,"id_str":"94601828","name":"\u3048\u307f\u3063\u3061@12\/11\u6e0b\u8c37www\u884c\u304f\u305c","screen_name":"globe90210","location":"\u3046\u3064\u304f\u3057\u307e\u3075\u304f\u3057\u307e","url":null,"description":"\u2605globe \u2605 \u30d5\u30e9\u30ef\u30fc\u30ab\u30f3\u30d1\u30cb\u30fc\u30ba\u2605\u50d5\u3068\u30e2\u30f3\u30b9\u30bf\u30fc\u2605","protected":false,"verified":false,"followers_count":81,"friends_count":86,"listed_count":2,"favourites_count":370,"statuses_count":9741,"created_at":"Fri Dec 04 17:31:37 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/592076010608201728\/Mni9TtST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/592076010608201728\/Mni9TtST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/94601828\/1441820487","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124658"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265643884544,"id_str":"663728265643884544","text":"RT MGTCandidates: Financial Planning and Analysis Manager - Chelmsford, MA, 01824, USA #jobs #Chelmsford pls RT: .\u2026 https:\/\/t.co\/ytUiOonpUv","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2922175346,"id_str":"2922175346","name":"jessia baylor ","screen_name":"jessiabaylor","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":24,"listed_count":97,"favourites_count":4,"statuses_count":95145,"created_at":"Mon Dec 08 00:47:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541756158164217856\/1c-r3yy2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541756158164217856\/1c-r3yy2_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"jobs","indices":[87,92]},{"text":"Chelmsford","indices":[93,104]}],"urls":[{"url":"https:\/\/t.co\/ytUiOonpUv","expanded_url":"http:\/\/goo.gl\/UN4ATN","display_url":"goo.gl\/UN4ATN","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124661"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265647882240,"id_str":"663728265647882240","text":"RT @IEEEorg: #TechFact: As of August 2012, Google was conducting over 38,000 searches per second.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2289779276,"id_str":"2289779276","name":"Shailesh Wasti","screen_name":"shaileshwasti","location":"Kathmandu,Nepal","url":"http:\/\/pragmaticangle.blogspot.com\/","description":"A reluctant Engineer!","protected":false,"verified":false,"followers_count":223,"friends_count":427,"listed_count":4,"favourites_count":1072,"statuses_count":883,"created_at":"Mon Jan 13 14:36:58 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"B30065","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661727158318948352\/bsWAyptu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661727158318948352\/bsWAyptu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2289779276\/1432394410","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:01 +0000 2015","id":663727495548547072,"id_str":"663727495548547072","text":"#TechFact: As of August 2012, Google was conducting over 38,000 searches per second.","source":"\u003ca href=\"http:\/\/sproutsocial.com\" rel=\"nofollow\"\u003eSprout Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":54290504,"id_str":"54290504","name":"IEEE","screen_name":"IEEEorg","location":"Global","url":"http:\/\/www.ieee.org","description":"Advancing technological innovation and excellence for the benefit of humanity. View the IEEE social media terms and conditions: http:\/\/on.fb.me\/NMsWZB.","protected":false,"verified":false,"followers_count":130804,"friends_count":2562,"listed_count":1646,"favourites_count":777,"statuses_count":9299,"created_at":"Mon Jul 06 18:34:51 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000178294646\/XEZW6k37.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000178294646\/XEZW6k37.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474591466749034496\/2-H1zqWf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474591466749034496\/2-H1zqWf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/54290504\/1401986438","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"TechFact","indices":[0,9]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TechFact","indices":[13,22]}],"urls":[],"user_mentions":[{"screen_name":"IEEEorg","name":"IEEE","id":54290504,"id_str":"54290504","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124662"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660661761,"id_str":"663728265660661761","text":"M\u00e9todo infal\u00edvel para ganhar muitos seguidores:\n1- Cutuque uma colm\u00e9ia de abelhas.\n2- Saia correndo.\n #SegundaDetremuraPraSdv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":762060632,"id_str":"762060632","name":"Gis Salvatore \u271f","screen_name":"Gis_Salvatore","location":"Sabe L.A? Pois \u00e9 n\u00e3o \u00e9 la \u270c.","url":null,"description":"Refusing to lose. Refusing to be defeated. Refuse to have regrets. Queen Nicki\u2764\n TVD\u2665TWD\u2665TW\u2665SPN\u2665TTP\u2665TO\u2665HP\u2665PJO\u2665 The100\u2665HDO\u2665","protected":false,"verified":false,"followers_count":3309,"friends_count":3275,"listed_count":4,"favourites_count":3628,"statuses_count":2532,"created_at":"Thu Aug 16 18:21:11 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/579291069570949121\/PT_sO0LS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/579291069570949121\/PT_sO0LS.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638044449872941056\/T2fNYHxf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638044449872941056\/T2fNYHxf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/762060632\/1440900070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SegundaDetremuraPraSdv","indices":[102,125]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652080640,"id_str":"663728265652080640","text":"@MyucelFoalan \u30ab\u30e9\u30aa\u30b1\u3044\u3044\u3088\u306d\uff01\u79c1\u3082\u884c\u304d\u305f\u3044\u306a\u3002","source":"\u003ca href=\"http:\/\/jtc-proserpine.com\/Help\/wt_loginNew_appNew.html\" rel=\"nofollow\"\u003eAtelier Totori\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727926651678720,"in_reply_to_status_id_str":"663727926651678720","in_reply_to_user_id":1967450311,"in_reply_to_user_id_str":"1967450311","in_reply_to_screen_name":"MyucelFoalan","user":{"id":781490616,"id_str":"781490616","name":"\u30c8\u30c8\u30a5\u30fc\u30ea\u30a2\u30fb\u30d8\u30eb\u30e2\u30eb\u30c8","screen_name":"Atelier__Totori","location":"\u30a2\u30e9\u30f3\u30e4\u6751","url":"http:\/\/park.geocities.jp\/be_reticent\/","description":"\u30c8\u30c8\u30ea\u306e\u30a2\u30c8\u30ea\u30a8 Atelier Totori\u3000\u7d20\u6750\u3092\uff13\u3064\u304f\u308c\u305f\u3089\u932c\u91d1\u8853\u3067\u5408\u6210\u3059\u308b\u306d\uff01 \u7d20\u6750\u306f\u300c\u300d\u306e\u4e2d\u306b\u5165\u308c\u3066\u306d\uff01 \u7d20\u6750\u306f\u4f55\u3067\u3082\u3044\u3044\u3093\u3060\u3088\uff01\u9069\u5f53\u306b\u3050\u30fc\u308b\u3050\u308b\u3059\u308b\u304b\u3089\u3002\u3000\u4f8b\uff1a @Atelier__Totori \u30c8\u30c8\u30ea\u3061\u3083\u3093\u3001\u300c\u5c0f\u9ea6\u7c89\u300d\u3068\u300c\u8b66\u5b98\u300d\u3068\u300c\u6c34\u300d\u304b\u3089\u4f55\u304b\u4f5c\u3063\u3066\uff01","protected":false,"verified":false,"followers_count":4862,"friends_count":4860,"listed_count":20,"favourites_count":2,"statuses_count":1055250,"created_at":"Sun Aug 26 02:06:31 +0000 2012","utc_offset":32400,"time_zone":"Sapporo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2543785194\/oponwbh0t57vxlyfqxog_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2543785194\/oponwbh0t57vxlyfqxog_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MyucelFoalan","name":"\u30df\u30e5\u30bb\u30eb\u30fb\u30d5\u30a9\u30a2\u30e9\u30f3","id":1967450311,"id_str":"1967450311","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124663"} +{"delete":{"status":{"id":616791063664193536,"id_str":"616791063664193536","user_id":2352663587,"user_id_str":"2352663587"},"timestamp_ms":"1447080124774"}} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265639559169,"id_str":"663728265639559169","text":"RT @JamTanganStyco: GC Unisex Rantai Silver Plat White | Hanya 245.000Rb (Belum Ongkir) SMS\/WA :0896-9472-1766 http:\/\/t.co\/YTydutEd4k","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1253839723,"id_str":"1253839723","name":"Bahasa Korea","screen_name":"KelasKorea","location":null,"url":null,"description":"Kata siapa bahasa korea itu susah?Buruan follow @KelasKorea belajar asik bahasa korea dan follow juga @Kelasguitar #highlyrecommended","protected":false,"verified":false,"followers_count":117733,"friends_count":0,"listed_count":74,"favourites_count":0,"statuses_count":3375,"created_at":"Sat Mar 09 08:46:23 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3743109107\/15a1aab46dee287c7dc43a728f54cc6d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3743109107\/15a1aab46dee287c7dc43a728f54cc6d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1253839723\/1386415420","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Sep 27 02:11:10 +0000 2015","id":647956615400783872,"id_str":"647956615400783872","text":"GC Unisex Rantai Silver Plat White | Hanya 245.000Rb (Belum Ongkir) SMS\/WA :0896-9472-1766 http:\/\/t.co\/YTydutEd4k","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1110642728,"id_str":"1110642728","name":"Jam tangan","screen_name":"JamTanganStyco","location":null,"url":null,"description":"Follow @JamTanganStyco. Menjual berbagai Jam tangan Cowo, Cewe, Couple. SMS\/WA: 0896-9472-1766 | Pin:2B9EA5F7","protected":false,"verified":false,"followers_count":15075,"friends_count":0,"listed_count":7,"favourites_count":0,"statuses_count":126,"created_at":"Tue Jan 22 04:58:22 +0000 2013","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496510995565539330\/8nxSrnu7.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496510995565539330\/8nxSrnu7.png","profile_background_tile":true,"profile_link_color":"131414","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618600421750239233\/R542PiHJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618600421750239233\/R542PiHJ_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":88,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"extended_entities":{"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[92,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JamTanganStyco","name":"Jam tangan","id":1110642728,"id_str":"1110642728","indices":[3,18]}],"symbols":[],"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"extended_entities":{"media":[{"id":644012205126479872,"id_str":"644012205126479872","indices":[112,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CO_9sD2UcAAYBJZ.jpg","url":"http:\/\/t.co\/YTydutEd4k","display_url":"pic.twitter.com\/YTydutEd4k","expanded_url":"http:\/\/twitter.com\/TokoJamStyco\/status\/644012205189435392\/photo\/1","type":"photo","sizes":{"large":{"w":534,"h":534,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":534,"h":534,"resize":"fit"}},"source_status_id":644012205189435392,"source_status_id_str":"644012205189435392","source_user_id":3240345295,"source_user_id_str":"3240345295"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080124660"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664708608,"id_str":"663728265664708608","text":"RT @130Saitoh: \u201c\u8102\u80aa\u306f\u88cf\u5207\u3089\u306a\u3044\u3002\u98df\u3079\u305f\u5206\u3060\u3051\u5fc5\u305a\u50d5\u306e\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u308b\u3057\u3001\u4f55\u306a\u3089\u3053\u3063\u3061\u304c\u671f\u5f85\u3057\u3066\u305f\u4ee5\u4e0a\u306b\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u308b\u3002\u52c9\u5f37\u3057\u3066\u3082\u4e2d\u3005\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u306a\u3044\u77e5\u8b58\u3068\u306f\u30a8\u30e9\u3044\u9055\u3044\u3060\u3002\u201d https:\/\/t.co\/MZwYKW3qis","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1320354704,"id_str":"1320354704","name":"\u9ad8\u68a8\u7531\u697d","screen_name":"Takanashi014","location":null,"url":null,"description":"\u773c\u93e1\u304c\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":199,"friends_count":1580,"listed_count":2,"favourites_count":2158,"statuses_count":2810,"created_at":"Mon Apr 01 13:32:44 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000259805454\/6fca49a492f19c58c361933d7f9bfa12_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000259805454\/6fca49a492f19c58c361933d7f9bfa12_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:54 +0000 2015","id":663728222719332353,"id_str":"663728222719332353","text":"\u201c\u8102\u80aa\u306f\u88cf\u5207\u3089\u306a\u3044\u3002\u98df\u3079\u305f\u5206\u3060\u3051\u5fc5\u305a\u50d5\u306e\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u308b\u3057\u3001\u4f55\u306a\u3089\u3053\u3063\u3061\u304c\u671f\u5f85\u3057\u3066\u305f\u4ee5\u4e0a\u306b\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u308b\u3002\u52c9\u5f37\u3057\u3066\u3082\u4e2d\u3005\u8eab\u306b\u4ed8\u3044\u3066\u304f\u308c\u306a\u3044\u77e5\u8b58\u3068\u306f\u30a8\u30e9\u3044\u9055\u3044\u3060\u3002\u201d https:\/\/t.co\/MZwYKW3qis","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":634437717,"id_str":"634437717","name":"Isao Saitoh","screen_name":"130Saitoh","location":"\u795e\u5948\u5ddd2\u533a","url":"http:\/\/paper.li\/f-1371277034","description":"\u500b\u4eba\u7684\u306a\u30ca\u30ec\u30c3\u30b8\u30ce\u30fc\u30c8\u3067\u3059.\u03c6(\uff0e\uff0e)","protected":false,"verified":false,"followers_count":2299,"friends_count":2294,"listed_count":8,"favourites_count":442,"statuses_count":17394,"created_at":"Fri Jul 13 06:50:38 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621735108073029632\/X9p5ZSQp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621735108073029632\/X9p5ZSQp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/634437717\/1434232920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MZwYKW3qis","expanded_url":"http:\/\/tmblr.co\/ZGSy8s1xlkCwV","display_url":"tmblr.co\/ZGSy8s1xlkCwV","indices":[83,106]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MZwYKW3qis","expanded_url":"http:\/\/tmblr.co\/ZGSy8s1xlkCwV","display_url":"tmblr.co\/ZGSy8s1xlkCwV","indices":[98,121]}],"user_mentions":[{"screen_name":"130Saitoh","name":"Isao Saitoh","id":634437717,"id_str":"634437717","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635336192,"id_str":"663728265635336192","text":"RT @MTV_JAPAN: MTV VMAJ 2015 BEST METAL ARTIST WINNER!! BABYMETAL\nVMAJ -THE PARTY!!- \u3054\u62db\u5f85\uff01>>https:\/\/t.co\/GHy78OPPY1 \n#VMAJ https:\/\/t.co\/KPt2\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2936728998,"id_str":"2936728998","name":"\u3088\u3063\u3057\u30fc@\u6c57\u3060\u304f\u30b8\u30e3\u30f3\u30d1\u30fc\u306e\u4eba","screen_name":"kaz_1301","location":null,"url":null,"description":"\u30d4\u30fc\u30bf\u30fc\u30fb\u30ac\u30d6\u30ea\u30a8\u30eb\u3001\u3067\u3093\u3071\u7d44.inc\u3001\u685c\u6728\u307f\u305a\u3082\u3001\u30d9\u30d3\u30e1\u30bf\u3001\u3042\u3086\u304f\u307e\u3001\u6c34\u30ab\u30f3\u3001fcp\u3001\u30b3\u30e0\u3001DOLL$BOXX\u3001\u5c0f\u5357\u6cf0\u8449\u3001\u83ca\u5730\u6210\u5b54\u3001\u30c6\u30cdD\u3001Dialog in the dark\u3001\u30c7\u30af\u30e9\u30ec\u3001\u98db\u3076\u6559\u5ba4\u3001@\u3042\u3044\u3061\u2642 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3059\u307f\u307e\u305b\u3093\u3002\u7169\u304f\u3066\u3054\u3081\u3093\u306a\u3055\u3044\u3002\u60aa\u622f\uff08\u308f\u308b\uff09\u3044\u4e8b\u3057\u307e\u3057\u3088\u3002","protected":false,"verified":false,"followers_count":438,"friends_count":497,"listed_count":12,"favourites_count":19252,"statuses_count":38201,"created_at":"Sat Dec 20 06:39:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595532863694442496\/0oXGJ6lI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595532863694442496\/0oXGJ6lI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2936728998\/1445772404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:33:02 +0000 2015","id":663710890311737344,"id_str":"663710890311737344","text":"MTV VMAJ 2015 BEST METAL ARTIST WINNER!! BABYMETAL\nVMAJ -THE PARTY!!- \u3054\u62db\u5f85\uff01>>https:\/\/t.co\/GHy78OPPY1 \n#VMAJ https:\/\/t.co\/KPt2xbAYLF","source":"\u003ca href=\"http:\/\/www.hootsuite.com\" rel=\"nofollow\"\u003eHootsuite\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":81065479,"id_str":"81065479","name":"MTV Japan","screen_name":"MTV_JAPAN","location":"Tokyo Japan","url":"http:\/\/www.mtvjapan.com","description":"\u4e16\u754c\u6700\u5927\u7d1a\u306e\u30e6\u30fc\u30b9\u5411\u3051\u97f3\u697d\uff06\u30a8\u30f3\u30bf\u30fc\u30c6\u30a4\u30f3\u30e1\u30f3\u30c8\u30fb\u30d6\u30e9\u30f3\u30c9\u300cMTV\u300d\u306e\u65e5\u672c\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\u30aa\u30d5\u30a3\u30b7\u30e3\u30ebFacebook\u30da\u30fc\u30b8 \u00bb http:\/\/www.facebook.com\/mtvjapan","protected":false,"verified":true,"followers_count":121327,"friends_count":19,"listed_count":2756,"favourites_count":2,"statuses_count":13109,"created_at":"Fri Oct 09 08:55:57 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578666986\/h16dy9oct8o326g8m0p2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578666986\/h16dy9oct8o326g8m0p2.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649781303559237632\/itXvkhd5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649781303559237632\/itXvkhd5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/81065479\/1443754900","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":42,"entities":{"hashtags":[{"text":"VMAJ","indices":[107,112]}],"urls":[{"url":"https:\/\/t.co\/GHy78OPPY1","expanded_url":"http:\/\/ow.ly\/UpPdB","display_url":"ow.ly\/UpPdB","indices":[82,105]}],"user_mentions":[],"symbols":[],"media":[{"id":663710888650653696,"id_str":"663710888650653696","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","url":"https:\/\/t.co\/KPt2xbAYLF","display_url":"pic.twitter.com\/KPt2xbAYLF","expanded_url":"http:\/\/twitter.com\/MTV_JAPAN\/status\/663710890311737344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710888650653696,"id_str":"663710888650653696","indices":[113,136],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","url":"https:\/\/t.co\/KPt2xbAYLF","display_url":"pic.twitter.com\/KPt2xbAYLF","expanded_url":"http:\/\/twitter.com\/MTV_JAPAN\/status\/663710890311737344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VMAJ","indices":[122,127]}],"urls":[{"url":"https:\/\/t.co\/GHy78OPPY1","expanded_url":"http:\/\/ow.ly\/UpPdB","display_url":"ow.ly\/UpPdB","indices":[97,120]}],"user_mentions":[{"screen_name":"MTV_JAPAN","name":"MTV Japan","id":81065479,"id_str":"81065479","indices":[3,13]}],"symbols":[],"media":[{"id":663710888650653696,"id_str":"663710888650653696","indices":[128,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","url":"https:\/\/t.co\/KPt2xbAYLF","display_url":"pic.twitter.com\/KPt2xbAYLF","expanded_url":"http:\/\/twitter.com\/MTV_JAPAN\/status\/663710890311737344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663710890311737344,"source_status_id_str":"663710890311737344","source_user_id":81065479,"source_user_id_str":"81065479"}]},"extended_entities":{"media":[{"id":663710888650653696,"id_str":"663710888650653696","indices":[128,146],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX5iWeUwAAlu7m.png","url":"https:\/\/t.co\/KPt2xbAYLF","display_url":"pic.twitter.com\/KPt2xbAYLF","expanded_url":"http:\/\/twitter.com\/MTV_JAPAN\/status\/663710890311737344\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":400,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663710890311737344,"source_status_id_str":"663710890311737344","source_user_id":81065479,"source_user_id_str":"81065479"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660600320,"id_str":"663728265660600320","text":"I posted a new photo to Facebook https:\/\/t.co\/RVy2eQ6hWn","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159992256,"id_str":"159992256","name":"RihaB","screen_name":"rihab31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":37,"friends_count":39,"listed_count":0,"favourites_count":6,"statuses_count":3032,"created_at":"Sat Jun 26 22:13:05 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/433735846920200192\/6D6jRELl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/433735846920200192\/6D6jRELl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159992256\/1424038047","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RVy2eQ6hWn","expanded_url":"http:\/\/fb.me\/6Rugqsr9v","display_url":"fb.me\/6Rugqsr9v","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265643687936,"id_str":"663728265643687936","text":"\u76f4\u4e5f\u304f\u3093\uff01\uff01\u30ea\u30fc\u30c0\u30fc\uff01\uff01\u76f4\u4e5f\u304f\u3093\uff01\uff01\u30ea\u30fc\u30c0\u30fc\uff01\uff01(((o(*^o^*)o)))\n#\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3050480960,"id_str":"3050480960","name":"sana","screen_name":"sana3aka","location":null,"url":null,"description":"AAA\/\u4f0a\u85e4\u5343\u6643\/\u307f\u3055\u3061\u3042\/\u7d50\u5c40\u307f\u3093\u306a\u597d\u304d\/95line(20)\u5b66\u751f\/9.13\u4ee3\u3005\u6728\/\u3088\u308d\u3057\u304f\u304a\u306d\u304c\u3044\u3057\u307e\u3059*\\(^o^)\/*","protected":false,"verified":false,"followers_count":94,"friends_count":115,"listed_count":1,"favourites_count":1161,"statuses_count":1394,"created_at":"Sat Feb 28 17:15:30 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650837614166081537\/S_YZOOpd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650837614166081537\/S_YZOOpd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3050480960\/1444543722","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u6d66\u7530\u76f4\u4e5f\u751f\u8a95\u524d\u591c\u796d","indices":[40,50]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124661"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635368960,"id_str":"663728265635368960","text":"RT @xiudrenalin: \uacbd\uc218\ub791 \uc637\uc774 \ubc14\ub010 \ubbfc\uc11d\uc789\u314b\u314b\u314b\u314b\u314b\uadc0\uc5ec\uc639\ud83d\udc95\ud83d\udc95\ud83d\udc95 #\uc2dc\uc6b0\ubbfc #151017\uc5d1\uc18c https:\/\/t.co\/mVStqGACqI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3877752373,"id_str":"3877752373","name":"\uacc4\ud53c","screen_name":"_gyepi","location":null,"url":null,"description":"\uae4a\uc774 \uc553\uc73c\uc2ed\uc2dc\uc624. \uc553\uc74c\ub2f5\ub3c4\ub85d, \uc544\ub984\ub2f5\ub3c4\ub85d \ubc31\ub3c4 \uc0ac\ub791\ud569\uc2dc\ub2e4\u2661 \ucc2c\uccb8 \uc88b\uc544\ud569\uc2dc\ub2e4\u2661","protected":false,"verified":false,"followers_count":74,"friends_count":60,"listed_count":1,"favourites_count":27,"statuses_count":70,"created_at":"Tue Oct 13 06:17:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660777970731126784\/CsdqoitY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660777970731126784\/CsdqoitY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3877752373\/1444734366","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 13:34:53 +0000 2015","id":655376436413509632,"id_str":"655376436413509632","text":"\uacbd\uc218\ub791 \uc637\uc774 \ubc14\ub010 \ubbfc\uc11d\uc789\u314b\u314b\u314b\u314b\u314b\uadc0\uc5ec\uc639\ud83d\udc95\ud83d\udc95\ud83d\udc95 #\uc2dc\uc6b0\ubbfc #151017\uc5d1\uc18c https:\/\/t.co\/mVStqGACqI","source":"\u003ca href=\"https:\/\/vine.co\" rel=\"nofollow\"\u003eVine for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3770686093,"id_str":"3770686093","name":"\uc288\ub4dc\ub808\ub0a0\ub9b0\u2744XIUDRENALIN","screen_name":"xiudrenalin","location":"\uc2dc\uc6b0\ubbfc \uc785\ub3d9\uad74 3-26 \uac70\uc8fc\uc911","url":null,"description":"DO NOT EDIT\/QT\/MAKE GIF FILES\/CUT THE LOGO\n\uc2dc\uc6b0\ubbfc\uc553\uc544\uc694 \ucc0d\ub355\uc785\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":4414,"friends_count":1,"listed_count":68,"favourites_count":71,"statuses_count":304,"created_at":"Sat Oct 03 13:57:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656436849154523136\/LTRoVZt9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656436849154523136\/LTRoVZt9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3770686093\/1446531418","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2525,"favorite_count":1582,"entities":{"hashtags":[{"text":"\uc2dc\uc6b0\ubbfc","indices":[25,29]},{"text":"151017\uc5d1\uc18c","indices":[30,39]}],"urls":[{"url":"https:\/\/t.co\/mVStqGACqI","expanded_url":"https:\/\/vine.co\/v\/e9mTzzZwgH6","display_url":"vine.co\/v\/e9mTzzZwgH6","indices":[40,63]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc2dc\uc6b0\ubbfc","indices":[42,46]},{"text":"151017\uc5d1\uc18c","indices":[47,56]}],"urls":[{"url":"https:\/\/t.co\/mVStqGACqI","expanded_url":"https:\/\/vine.co\/v\/e9mTzzZwgH6","display_url":"vine.co\/v\/e9mTzzZwgH6","indices":[57,80]}],"user_mentions":[{"screen_name":"xiudrenalin","name":"\uc288\ub4dc\ub808\ub0a0\ub9b0\u2744XIUDRENALIN","id":3770686093,"id_str":"3770686093","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635336193,"id_str":"663728265635336193","text":"#empleos #vacantes #argentina Asistente de Pa\u00f1ol \u2013 Zona Pilar (ID: 592230) https:\/\/t.co\/t99MT60svy #sap #erp #consultorsap","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396397416,"id_str":"2396397416","name":"Empleos Sap","screen_name":"sapempleos","location":"Argentina \/ M\u00e9xico","url":"http:\/\/buscadordempleos.com\/trabajos\/?search_keywords=sap&search_location=&submit=Buscar","description":"Somos una divisi\u00f3n de @bdempleos @bdempleosmx exclusivamente en #empleos relacionados con #sap #consultoriasap para Argentina y M\u00e9xico #vacantes #consultoressap","protected":false,"verified":false,"followers_count":225,"friends_count":19,"listed_count":8,"favourites_count":29,"statuses_count":2632,"created_at":"Tue Mar 18 15:32:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/445947477863067648\/e-oWoHCq_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/445947477863067648\/e-oWoHCq_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2396397416\/1426982312","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"empleos","indices":[0,8]},{"text":"vacantes","indices":[9,18]},{"text":"argentina","indices":[19,29]},{"text":"sap","indices":[99,103]},{"text":"erp","indices":[104,108]},{"text":"consultorsap","indices":[109,122]}],"urls":[{"url":"https:\/\/t.co\/t99MT60svy","expanded_url":"http:\/\/dlvr.it\/ChfpXD","display_url":"dlvr.it\/ChfpXD","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652248577,"id_str":"663728265652248577","text":"RT @MatheusMette: Esse tempo s\u00f3 \u00e9 bom pra dormir.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3360390694,"id_str":"3360390694","name":"Vaz \u2763","screen_name":"pohagabee","location":"Deus!!\u2765","url":null,"description":"\u275d S\u00e3o poucas, mas ainda existem pessoas que valem a pena \u275e.\n\u007b Leeh\u2764 \u007d \u007b haniele\u2764\u007d \u007b Aline\u2764\u007d \u007b Bruno\u2764\u007d","protected":false,"verified":false,"followers_count":218,"friends_count":204,"listed_count":0,"favourites_count":2311,"statuses_count":2739,"created_at":"Sun Jul 05 10:43:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663134342407954432\/-OeAnbOl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663134342407954432\/-OeAnbOl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3360390694\/1446938664","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:23 +0000 2015","id":663726835612712961,"id_str":"663726835612712961","text":"Esse tempo s\u00f3 \u00e9 bom pra dormir.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2771298522,"id_str":"2771298522","name":"Mette","screen_name":"MatheusMette","location":"Blumenau ","url":"https:\/\/www.facebook.com\/matheus.mette","description":"Ningu\u00e9m ajudou, eu me virei sozinho. E isso me endureceu um pouco mais.","protected":false,"verified":false,"followers_count":703,"friends_count":651,"listed_count":0,"favourites_count":6798,"statuses_count":3433,"created_at":"Tue Aug 26 21:35:44 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662094795146424320\/NJtHqayr.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662094795146424320\/NJtHqayr.jpg","profile_background_tile":true,"profile_link_color":"222222","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663559185129410561\/PoyRTU0H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663559185129410561\/PoyRTU0H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2771298522\/1447027632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MatheusMette","name":"Mette","id":2771298522,"id_str":"2771298522","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080124663"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265631170560,"id_str":"663728265631170560","text":"Sinyal ilang2an mulu...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255645226,"id_str":"255645226","name":"L Ardiansyah","screen_name":"L_Ardiansyah26","location":"DKI jakarta, Cakung Timur *","url":null,"description":"Mahasiswa tingkat akhir at state University of Jakarta \/ Engineering Education '10'\r The TrueBlues (ChelseaFCfans)\r Family melodic Long live my family","protected":false,"verified":false,"followers_count":158,"friends_count":202,"listed_count":0,"favourites_count":71,"statuses_count":18494,"created_at":"Mon Feb 21 19:49:01 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/218803769\/Travis_Barker_wp_by_elvareth.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/218803769\/Travis_Barker_wp_by_elvareth.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502762655585943552\/N_XqqiIV_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502762655585943552\/N_XqqiIV_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255645226\/1395613380","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080124658"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652137984,"id_str":"663728265652137984","text":"cle de peau BEAUTE \u30d6\u30e9\u30c3\u30b7\u30e5\u30c7\u30e5\u30d7\u30fc\u30c9\u30eb105 \u3068\u30b3\u30d5\u30ec - \u3081\u308d\u3081\u308d\u3053\u3059\u3081\u5099\u5fd8\u9332 https:\/\/t.co\/mItIXMiHMY","source":"\u003ca href=\"http:\/\/www.apple.com\" rel=\"nofollow\"\u003eiOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":436834866,"id_str":"436834866","name":"\u3086\u3093","screen_name":"mon_cheri23","location":null,"url":"http:\/\/mon-cheri23.hatenablog.com\/","description":"\u30a2\u30ab\u30a6\u30f3\u30c8\u79fb\u884c\u3057\u307e\u3057\u305f\u3002\u30b3\u30b9\u30e1\u304c\u597d\u304d\u306a\u793e\u4f1a\u4eba1\u5e74\u751f\u3002\u30ad\u30e9\u30ad\u30e9\u30c4\u30e4\u30c4\u30e4\u306b\u5f31\u3044\u2661 \u8cc7\u751f\u5802\u306b\u8ca2\u3050\u65e5\u3005\u3002 \u203b\u9375\u57a2\u3055\u3093\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3066\u3044\u307e\u305b\u3093","protected":false,"verified":false,"followers_count":136,"friends_count":73,"listed_count":0,"favourites_count":18,"statuses_count":29,"created_at":"Wed Dec 14 16:53:19 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661549950560419840\/-Ry4V14K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661549950560419840\/-Ry4V14K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/436834866\/1446560773","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mItIXMiHMY","expanded_url":"http:\/\/mon-cheri23.hatenablog.com\/entry\/2015\/11\/09\/234154","display_url":"mon-cheri23.hatenablog.com\/entry\/2015\/11\/\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124663"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660661760,"id_str":"663728265660661760","text":"I posted a new photo to Facebook https:\/\/t.co\/Og1EXErSlB","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":177313789,"id_str":"177313789","name":"HomeLink Deutschland","screen_name":"HomeLinkDE","location":"Bamberg","url":"http:\/\/www.homelink.de","description":"HomeLink is the world's oldest and largest home exchange community. Non-profit home exchange holidays since the early 1950's.","protected":false,"verified":false,"followers_count":46,"friends_count":4,"listed_count":0,"favourites_count":0,"statuses_count":1152,"created_at":"Wed Aug 11 20:29:57 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/463199219424043008\/DVpy8R3G_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/463199219424043008\/DVpy8R3G_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177313789\/1399270182","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Og1EXErSlB","expanded_url":"http:\/\/fb.me\/3ltiGPZ7l","display_url":"fb.me\/3ltiGPZ7l","indices":[33,56]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626972161,"id_str":"663728265626972161","text":"This test for algebra 2 got me fucked","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1445102821,"id_str":"1445102821","name":"Gus Edward","screen_name":"40_gus","location":"Imperial, CA","url":null,"description":"I get high because the lows can be so cold SC:gurlsmasher","protected":false,"verified":false,"followers_count":433,"friends_count":359,"listed_count":0,"favourites_count":2598,"statuses_count":2752,"created_at":"Tue May 21 00:20:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648631944478003204\/x8tQzmMh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648631944478003204\/x8tQzmMh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1445102821\/1446177614","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265656315904,"id_str":"663728265656315904","text":"\uae84\uc624!\ub0b4\uac00\ud574\uca84!!","source":"\u003ca href=\"http:\/\/www.myplume.com\/\" rel=\"nofollow\"\u003ePlume\u00a0for\u00a0Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":365531684,"id_str":"365531684","name":"\ubb34\ub098\uc774","screen_name":"moo_age","location":null,"url":null,"description":"\ubcf8\uc9c4\uc544\ub2cc\ub4ef\uc77c\ub2e8\uc740\ubcf8\uc9c4\uc778\uc635\ud654\ub4e4,\uc720\uc544\uc778,\ud604\uc544,xia,\uc678\uad6d\uc635\ud654\ub4e4\uae30\ud0c0\ub4f1\ub4f1\uc7a1\ub355. \ud2b8\uc704\ud130\uc5d0 \uc62c\ub9ac\ub294 \uc81c \uc0ac\uc9c4,\uadf8\ub9bc\uc758 \ubd88\ud38c \ubc0f \ubb34\ub2e8\ub3c4\uc6a9\uc744 \uae08\uc9c0\ud569\ub2c8\ub2e4. Re-upload prohibited. http:\/\/gkdisdnwn1.blog.me.","protected":false,"verified":false,"followers_count":294,"friends_count":134,"listed_count":6,"favourites_count":668,"statuses_count":21261,"created_at":"Wed Aug 31 16:02:35 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654184061640929281\/aD6TmEh2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654184061640929281\/aD6TmEh2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/365531684\/1439265277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080124664"} +{"delete":{"status":{"id":663720762046574592,"id_str":"663720762046574592","user_id":3258737564,"user_id_str":"3258737564"},"timestamp_ms":"1447080124812"}} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265656274944,"id_str":"663728265656274944","text":"RT @stitch_pololo: \"\u0e23\u0e1a\u0e01\u0e27\u0e19\u0e15\u0e31\u0e14\u0e15\u0e48\u0e2d\u0e20\u0e32\u0e1e\u0e19\u0e35\u0e49\u0e40\u0e27\u0e48\u0e2d\u0e23\u0e4c\u0e0a\u0e31\u0e48\u0e19\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\"\n\n\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48 6 \u0e0a\u0e48\u0e27\u0e22\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e09\u0e32\u0e01\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e09\u0e32\u0e01\u0e17\u0e35\u0e48\u0e0a\u0e31\u0e49\u0e19\u0e40\u0e2b\u0e47\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e01\u0e43\u0e08\u0e43\u0e2b\u0e49\u0e2b\u0e19\u0e48\u0e2d\u0e22 https:\/\/t.co\/fF2IcvUj\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":370153335,"id_str":"370153335","name":"m:P\u2606","screen_name":"MAprang1261","location":"Thailand","url":null,"description":"SUPER JUNIOR | THAI ELF | KIM KIBUM=\u2665 | B.A.P | CHOI JUNHONG | #GUN | \u2661soulgab :) \uc8fc\uc601 ~ #giriboy \u266c \u266a ~JUNHOE~ \u263b #SJBAP136 ^^ \u0e40\u0e1b\u0e47\u0e19\u0e15\u0e34\u0e48\u0e07\u0e2b\u0e21\u0e39\u0e08\u0e35\u0e21\u0e34\u0e19-..-","protected":false,"verified":false,"followers_count":85,"friends_count":276,"listed_count":0,"favourites_count":590,"statuses_count":94799,"created_at":"Thu Sep 08 15:08:21 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8D9599","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/868835039\/41a2cb4c962661cff86952c0618e3bd9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/868835039\/41a2cb4c962661cff86952c0618e3bd9.jpeg","profile_background_tile":true,"profile_link_color":"B0073F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"5FC2E6","profile_text_color":"706A70","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657584410506620928\/FgDtKUEG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657584410506620928\/FgDtKUEG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/370153335\/1401706532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:00:10 +0000 2015","id":663717720005873664,"id_str":"663717720005873664","text":"\"\u0e23\u0e1a\u0e01\u0e27\u0e19\u0e15\u0e31\u0e14\u0e15\u0e48\u0e2d\u0e20\u0e32\u0e1e\u0e19\u0e35\u0e49\u0e40\u0e27\u0e48\u0e2d\u0e23\u0e4c\u0e0a\u0e31\u0e48\u0e19\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\"\n\n\u0e23\u0e39\u0e1b\u0e17\u0e35\u0e48 6 \u0e0a\u0e48\u0e27\u0e22\u0e40\u0e1b\u0e25\u0e35\u0e48\u0e22\u0e19\u0e09\u0e32\u0e01\u0e2b\u0e25\u0e31\u0e07\u0e40\u0e1b\u0e47\u0e19\u0e09\u0e32\u0e01\u0e17\u0e35\u0e48\u0e0a\u0e31\u0e49\u0e19\u0e40\u0e2b\u0e47\u0e19\u0e41\u0e25\u0e49\u0e27\u0e15\u0e01\u0e43\u0e08\u0e43\u0e2b\u0e49\u0e2b\u0e19\u0e48\u0e2d\u0e22 https:\/\/t.co\/fF2IcvUjbx","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1659665096,"id_str":"1659665096","name":"\u0e44\u0e14\u0e42\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35","screen_name":"stitch_pololo","location":null,"url":null,"description":"\u0e23\u0e31\u0e1a\u0e2a\u0e2d\u0e19\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35,\u0e41\u0e1b\u0e25\u0e02\u0e49\u0e2d\u0e04\u0e27\u0e32\u0e21(\u0e2a\u0e48\u0e07\u0e40\u0e02\u0e49\u0e32\u0e2d\u0e35\u0e40\u0e21\u0e25\u0e25\u0e4c\u0e04\u0e34\u0e14\u0e23\u0e32\u0e04\u0e32\u0e15\u0e32\u0e21\u0e04\u0e27\u0e32\u0e21\u0e22\u0e32\u0e01\u0e07\u0e48\u0e32\u0e22)\u0e40\u0e23\u0e35\u0e22\u0e19\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e21\u0e32 \u0e1f\u0e2d\u0e25\u0e44\u0e14\u0e49\u0e44\u0e21\u0e48\u0e1c\u0e34\u0e14\u0e2b\u0e27\u0e31\u0e07\u0e41\u0e19\u0e48\u0e19\u0e2d\u0e19 \ne-mail:stitch_pololo@hotmail.com","protected":false,"verified":false,"followers_count":67871,"friends_count":30,"listed_count":95,"favourites_count":2232,"statuses_count":8062,"created_at":"Sat Aug 10 09:04:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583263707511140352\/u8Kuv9Lo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583263707511140352\/u8Kuv9Lo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1659665096\/1389084632","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":535,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663717708861575168,"id_str":"663717708861575168","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":611,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":611,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663717708861575168,"id_str":"663717708861575168","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":611,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":611,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}}},{"id":663717708882538496,"id_str":"663717708882538496","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vV0UcAAkPiW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vV0UcAAkPiW.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"large":{"w":509,"h":509,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":509,"h":509,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"stitch_pololo","name":"\u0e44\u0e14\u0e42\u0e19\u0e40\u0e2a\u0e32\u0e23\u0e4c\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35","id":1659665096,"id_str":"1659665096","indices":[3,17]}],"symbols":[],"media":[{"id":663717708861575168,"id_str":"663717708861575168","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":611,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":611,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}},"source_status_id":663717720005873664,"source_status_id_str":"663717720005873664","source_user_id":1659665096,"source_user_id_str":"1659665096"}]},"extended_entities":{"media":[{"id":663717708861575168,"id_str":"663717708861575168","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vVvUkAAM9g2.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":611,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":611,"resize":"fit"},"small":{"w":340,"h":415,"resize":"fit"}},"source_status_id":663717720005873664,"source_status_id_str":"663717720005873664","source_user_id":1659665096,"source_user_id_str":"1659665096"},{"id":663717708882538496,"id_str":"663717708882538496","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX_vV0UcAAkPiW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX_vV0UcAAkPiW.jpg","url":"https:\/\/t.co\/fF2IcvUjbx","display_url":"pic.twitter.com\/fF2IcvUjbx","expanded_url":"http:\/\/twitter.com\/stitch_pololo\/status\/663717720005873664\/photo\/1","type":"photo","sizes":{"large":{"w":509,"h":509,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"medium":{"w":509,"h":509,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663717720005873664,"source_status_id_str":"663717720005873664","source_user_id":1659665096,"source_user_id_str":"1659665096"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080124664"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265648058368,"id_str":"663728265648058368","text":"@sijongl_ghilli Stomach Burning ;)","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727759206707200,"in_reply_to_status_id_str":"663727759206707200","in_reply_to_user_id":399964465,"in_reply_to_user_id_str":"399964465","in_reply_to_screen_name":"SijoNgl_ghilli","user":{"id":255327696,"id_str":"255327696","name":"The great one","screen_name":"vinukai","location":"india bangalore","url":null,"description":"Big fan of the Great one @therock The Scorpio #Scorpio #thala #ajith proud to be scorpio","protected":false,"verified":false,"followers_count":332,"friends_count":322,"listed_count":0,"favourites_count":223,"statuses_count":10897,"created_at":"Mon Feb 21 03:56:52 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"008FB3","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467900893346533376\/PQNLcXS6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467900893346533376\/PQNLcXS6_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255327696\/1400391158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SijoNgl_ghilli","name":"Sijo Ngl Ghilli","id":399964465,"id_str":"399964465","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124662"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626939392,"id_str":"663728265626939392","text":"Price of Palladium is $597 on 11-09-2015 09:42:02. - https:\/\/t.co\/yYP5ubv4g0","source":"\u003ca href=\"http:\/\/www.pmfacts.com\/autotweet\/PostTweet.php\" rel=\"nofollow\"\u003eCT GOLD BUYERS for Pmfacts\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287135656,"id_str":"287135656","name":"Joe Candella","screen_name":"ctgoldbuyers","location":"Connecticut","url":"http:\/\/www.ctgoldbuyers.com","description":"Buyers of Precious Metals","protected":false,"verified":false,"followers_count":133,"friends_count":234,"listed_count":4,"favourites_count":0,"statuses_count":1412685,"created_at":"Sun Apr 24 11:35:56 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1393714617\/logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1393714617\/logo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yYP5ubv4g0","expanded_url":"http:\/\/bit.ly\/mLX9nS","display_url":"bit.ly\/mLX9nS","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626910720,"id_str":"663728265626910720","text":"@RedChilliesEnt 1st tym I don't stare anymore time on SRK coz of dis bully car.\nI luvd it..only Rohit can do this\n#DhamakedaarDilwaleTrailer","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727380809170946,"in_reply_to_status_id_str":"663727380809170946","in_reply_to_user_id":1243173036,"in_reply_to_user_id_str":"1243173036","in_reply_to_screen_name":"RedChilliesEnt","user":{"id":2741406404,"id_str":"2741406404","name":"Aryan.","screen_name":"MrinalAryan_MA","location":"Mannat","url":"http:\/\/twitter.com\/@iamsrk","description":"goin' with the flow....\n\n\u270c","protected":false,"verified":false,"followers_count":349,"friends_count":83,"listed_count":11,"favourites_count":6094,"statuses_count":15023,"created_at":"Mon Aug 18 05:51:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661904141363515392\/hnjvWDzB_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661904141363515392\/hnjvWDzB_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2741406404\/1447057702","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"DhamakedaarDilwaleTrailer","indices":[114,140]}],"urls":[],"user_mentions":[{"screen_name":"RedChilliesEnt","name":"Dilwale","id":1243173036,"id_str":"1243173036","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124657"} +{"delete":{"status":{"id":663647005210640384,"id_str":"663647005210640384","user_id":2278581727,"user_id_str":"2278581727"},"timestamp_ms":"1447080124801"}} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265626935298,"id_str":"663728265626935298","text":"@niconico_su \u3075\u305f\u308a\u8208\u5473\u306a\u3055\u305d\u3046\u3084\u3082\u3093\u306awww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728003235508225,"in_reply_to_status_id_str":"663728003235508225","in_reply_to_user_id":2704240080,"in_reply_to_user_id_str":"2704240080","in_reply_to_screen_name":"niconico_su","user":{"id":2498778648,"id_str":"2498778648","name":"emo","screen_name":"emon_ymym","location":"\u308f\u305f\u3057\u30dd\u30b8\u30c6\u30a3\u30d6\u306b\u306a\u308b\u2727 \\\\(\u00b0\u2200\u00b0)\/\/ \u2727\u2190","url":null,"description":"LOVE:\/\/ USJ \u30c7\u30a3\u30ba\u30cb\u30fc\u02da\u208a*\u0b67\u20db(\u0e51\u20d9\u20d8\u207c\u0334\u0300\ua4b3\u207c\u0334\u0301\u0e51\u20d9\u20d8)\u0b68\u20db*\u208a\u02da\u22c6 \u5fdc\u63f4\u3057\u3066\u308b\u65b9\u3044\u307e\u3059\u0b67\u2362\u20dd\u0b68 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6c17\u3065\u304b\u306a\u3044\u306e\u3067\u30ea\u30d7\u304f\u3060\u3055\u3044\u2661","protected":false,"verified":false,"followers_count":103,"friends_count":101,"listed_count":0,"favourites_count":757,"statuses_count":16895,"created_at":"Fri May 16 12:26:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653197229973372929\/-V4_v0Tv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653197229973372929\/-V4_v0Tv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2498778648\/1442739622","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"niconico_su","name":"\u3059\u3045\u3061\u3083\u3093","id":2704240080,"id_str":"2704240080","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124657"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265635364864,"id_str":"663728265635364864","text":"RT @KpopStarzJP: BEAST\u30b8\u30e5\u30f3\u30d2\u30e7\u30f3\u3001\u300c\u5f37\u3044\u30ea\u30fc\u30c0\u30fc\u3060\u3063\u305f\u30c9\u30a5\u30b8\u30e5\u30f3\u304c\u5d29\u308c\u308b\u59ff\u3092\u521d\u3081\u3066\u898b\u305f\u300d https:\/\/t.co\/Z6gvAHi1F8 K-POP\u30cb\u30e5\u30fc\u30b9\u306fKpopSt\u2605rz https:\/\/t.co\/fL2V6to3q5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1204957182,"id_str":"1204957182","name":"macaronron","screen_name":"mkmkhana","location":null,"url":null,"description":"BEAST \u30ae\u30b0\u30da\u30f3","protected":false,"verified":false,"followers_count":100,"friends_count":115,"listed_count":3,"favourites_count":24727,"statuses_count":65683,"created_at":"Thu Feb 21 14:09:39 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000626932777\/cfa23e9224fb60b5028516e9721e4839_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000626932777\/cfa23e9224fb60b5028516e9721e4839_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1204957182\/1382329952","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 01:50:05 +0000 2015","id":662446827308843008,"id_str":"662446827308843008","text":"BEAST\u30b8\u30e5\u30f3\u30d2\u30e7\u30f3\u3001\u300c\u5f37\u3044\u30ea\u30fc\u30c0\u30fc\u3060\u3063\u305f\u30c9\u30a5\u30b8\u30e5\u30f3\u304c\u5d29\u308c\u308b\u59ff\u3092\u521d\u3081\u3066\u898b\u305f\u300d https:\/\/t.co\/Z6gvAHi1F8 K-POP\u30cb\u30e5\u30fc\u30b9\u306fKpopSt\u2605rz https:\/\/t.co\/fL2V6to3q5","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":469933518,"id_str":"469933518","name":"KpopStarz\u65e5\u672c\u8a9e\u7248","screen_name":"KpopStarzJP","location":"New York, USA","url":"http:\/\/japanese.kpopstarz.com","description":"K-POP\u6700\u65b0\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8\u300cKpopStarz\u300d\u306e\u65e5\u672c\u8a9e\u7248\u3067\u3059\u3002\u30a2\u30e1\u30ea\u30ab\u767a\u306e\u30cb\u30e5\u30fc\u30b9\u30b5\u30a4\u30c8\u3067\u3001K-POP\u306e\u6700\u65b0\u30cb\u30e5\u30fc\u30b9\u3092\u6bce\u65e5\u304a\u5c4a\u3051\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":59554,"friends_count":43520,"listed_count":405,"favourites_count":1,"statuses_count":35486,"created_at":"Sat Jan 21 04:34:39 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000109375358\/ef121645c66383648fbd08d40979726f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000109375358\/ef121645c66383648fbd08d40979726f.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/484296767618285569\/zfhWJKmx_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/484296767618285569\/zfhWJKmx_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/469933518\/1447060829","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":90,"favorite_count":89,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z6gvAHi1F8","expanded_url":"http:\/\/bit.ly\/1StLkDj","display_url":"bit.ly\/1StLkDj","indices":[40,63]},{"url":"https:\/\/t.co\/fL2V6to3q5","expanded_url":"http:\/\/bit.ly\/kpopjp","display_url":"bit.ly\/kpopjp","indices":[84,107]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Z6gvAHi1F8","expanded_url":"http:\/\/bit.ly\/1StLkDj","display_url":"bit.ly\/1StLkDj","indices":[57,80]},{"url":"https:\/\/t.co\/fL2V6to3q5","expanded_url":"http:\/\/bit.ly\/kpopjp","display_url":"bit.ly\/kpopjp","indices":[101,124]}],"user_mentions":[{"screen_name":"KpopStarzJP","name":"KpopStarz\u65e5\u672c\u8a9e\u7248","id":469933518,"id_str":"469933518","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124659"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265664659456,"id_str":"663728265664659456","text":"The mindset change that can help you enjoy the winter months https:\/\/t.co\/KtecnlYBjG by @lvanderkam via @FastCompany","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16271756,"id_str":"16271756","name":"Beth","screen_name":"rubybeth","location":"Minnesota","url":"https:\/\/instagram.com\/bethrings\/","description":"Minnesotan, married, Instagrammer, cult of done member.","protected":false,"verified":false,"followers_count":360,"friends_count":464,"listed_count":19,"favourites_count":293,"statuses_count":4816,"created_at":"Sat Sep 13 14:13:27 +0000 2008","utc_offset":12600,"time_zone":"Tehran","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451081204142313472\/v3M3vczB_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451081204142313472\/v3M3vczB_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16271756\/1411253779","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/KtecnlYBjG","expanded_url":"http:\/\/www.fastcompany.com\/3052970\/how-to-really-be-happy-when-its-dark-and-cold","display_url":"fastcompany.com\/3052970\/how-to\u2026","indices":[61,84]}],"user_mentions":[{"screen_name":"lvanderkam","name":"Laura Vanderkam","id":36440780,"id_str":"36440780","indices":[88,99]},{"screen_name":"FastCompany","name":"Fast Company","id":2735591,"id_str":"2735591","indices":[104,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124666"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265639559168,"id_str":"663728265639559168","text":"Although there's a lot of work in front of you today, you stil... More for Taurus https:\/\/t.co\/PadPZkiztm","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40756033,"id_str":"40756033","name":"JaimEnvent","screen_name":"jaimenvent","location":"\u00dcT: 39.416929,-74.556774","url":null,"description":"JaimEnvent \/\/ OWNER\/DESIGNER Envent Clothing. California living.","protected":false,"verified":false,"followers_count":274,"friends_count":1367,"listed_count":5,"favourites_count":35,"statuses_count":4917,"created_at":"Sun May 17 22:57:00 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/405516280\/test4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/405516280\/test4.jpg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/414463382490603521\/DmHBgefk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/414463382490603521\/DmHBgefk_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/PadPZkiztm","expanded_url":"http:\/\/bit.ly\/wMRKBc","display_url":"bit.ly\/wMRKBc","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124660"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265660493824,"id_str":"663728265660493824","text":"\u60aa\u306e\u652f\u914d\u4eba \u30d6\u30ea\u30fc\u30c9\u306e\u6d77\u7363\u30b5\u30fc\u30ab\u30b9\u56e3!\n\u260511\/3(12:00)\uff5e11\/17(11:59)\u671f\u9593\u9650\u5b9a\u2605\n\u64cd\u3089\u308c\u305f\u6d77\u7363\u305f\u3061\u3092\u9b54\u306e\u624b\u304b\u3089\u6551\u3044\u51fa\u305b\uff01\nhttps:\/\/t.co\/PuBDAQ09pQ\u3000#\u30c8\u30ec\u30af\u30eb https:\/\/t.co\/vSndIsuHy4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1022706864,"id_str":"1022706864","name":"\u5927\u9577\u6839\u76f4\u57ce","screen_name":"tigers_1023","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":10,"listed_count":0,"favourites_count":0,"statuses_count":469,"created_at":"Wed Dec 19 19:24:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30c8\u30ec\u30af\u30eb","indices":[95,100]}],"urls":[{"url":"https:\/\/t.co\/PuBDAQ09pQ","expanded_url":"http:\/\/wpp.jp\/optw\/","display_url":"wpp.jp\/optw\/","indices":[71,94]}],"user_mentions":[],"symbols":[],"media":[{"id":663728265576648704,"id_str":"663728265576648704","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV0kVEAA30Y9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV0kVEAA30Y9.jpg","url":"https:\/\/t.co\/vSndIsuHy4","display_url":"pic.twitter.com\/vSndIsuHy4","expanded_url":"http:\/\/twitter.com\/tigers_1023\/status\/663728265660493824\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"medium":{"w":480,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":204,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728265576648704,"id_str":"663728265576648704","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV0kVEAA30Y9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV0kVEAA30Y9.jpg","url":"https:\/\/t.co\/vSndIsuHy4","display_url":"pic.twitter.com\/vSndIsuHy4","expanded_url":"http:\/\/twitter.com\/tigers_1023\/status\/663728265660493824\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":144,"resize":"fit"},"medium":{"w":480,"h":204,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":204,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124665"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265652125697,"id_str":"663728265652125697","text":"@___ooOOOK \n\u30bf\u30a4\u30c4\u306f\u304f\u3082\u304c\u3061\u3083\u3093\u3048\u3048\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728138006872064,"in_reply_to_status_id_str":"663728138006872064","in_reply_to_user_id":3312049915,"in_reply_to_user_id_str":"3312049915","in_reply_to_screen_name":"___ooOOOK","user":{"id":239016648,"id_str":"239016648","name":"\u679d\u8c46\u30d7\u30f3\u30d7\u30f3 \u30e6\u30cb\u30be\u30f3\u6e05\u6c34","screen_name":"punpun_edamame","location":"\u6d5c\u677e\u3068\u304b\u8a00\u3044\u305f\u3044\u3051\u3069\u6e56\u897f","url":null,"description":"\u5fd8\u308c\u3089\u3093\u306d\u3048\u3088\u304c\u5fd8\u308c\u3089\u3093\u306d\u3048\u3088 \u30b7\u30de\u30ea\u30b9\u98fc\u3044\u4e3b \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306f\u30b9\u30eb\u30fc\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":324,"friends_count":441,"listed_count":7,"favourites_count":9974,"statuses_count":52347,"created_at":"Sun Jan 16 16:12:07 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657785906636558336\/pJLb2Oxl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657785906636558336\/pJLb2Oxl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239016648\/1442753253","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"___ooOOOK","name":"\u304b\u3069\u307e","id":3312049915,"id_str":"3312049915","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080124663"} +{"delete":{"status":{"id":663489748158259200,"id_str":"663489748158259200","user_id":3888448578,"user_id_str":"3888448578"},"timestamp_ms":"1447080125033"}} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265656270852,"id_str":"663728265656270852","text":"@Jhejebureche sabe na eh. Si arro, ang natatanging chipsy na natira dahil ang lahat ay nagseryoso na hahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721253874757632,"in_reply_to_status_id_str":"663721253874757632","in_reply_to_user_id":1314009690,"in_reply_to_user_id_str":"1314009690","in_reply_to_screen_name":"Jhejebureche","user":{"id":545942737,"id_str":"545942737","name":"Jerome Cahende","screen_name":"jiromergherd","location":null,"url":null,"description":"Let go, Let God :) Follow me, I follow God","protected":false,"verified":false,"followers_count":251,"friends_count":228,"listed_count":0,"favourites_count":1286,"statuses_count":5944,"created_at":"Thu Apr 05 12:42:50 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005779542\/6b6a23fd83c27d76247ba8f9f15476c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005779542\/6b6a23fd83c27d76247ba8f9f15476c1.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644001509466763265\/zEviRUfs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644001509466763265\/zEviRUfs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/545942737\/1423612367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Jhejebureche","name":"Gerline de la Paz","id":1314009690,"id_str":"1314009690","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080124664"} +{"created_at":"Mon Nov 09 14:42:04 +0000 2015","id":663728265656422400,"id_str":"663728265656422400","text":"so in love with klaus and hope https:\/\/t.co\/xanDIPUfa4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":479829627,"id_str":"479829627","name":"laura","screen_name":"gtfoxstyles","location":"panda","url":null,"description":"we're all monsters in some way","protected":false,"verified":false,"followers_count":769,"friends_count":417,"listed_count":3,"favourites_count":6557,"statuses_count":22616,"created_at":"Tue Jan 31 20:28:02 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/585434221906268160\/WtLLDIKE.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/585434221906268160\/WtLLDIKE.jpg","profile_background_tile":true,"profile_link_color":"5E78D6","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662965379669606401\/d-ksG-yH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662965379669606401\/d-ksG-yH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/479829627\/1445871051","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728255451668480,"id_str":"663728255451668480","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVO2WIAAL8tb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVO2WIAAL8tb.jpg","url":"https:\/\/t.co\/xanDIPUfa4","display_url":"pic.twitter.com\/xanDIPUfa4","expanded_url":"http:\/\/twitter.com\/gtfoxstyles\/status\/663728265656422400\/photo\/1","type":"photo","sizes":{"large":{"w":601,"h":806,"resize":"fit"},"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":804,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728255451668480,"id_str":"663728255451668480","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVO2WIAAL8tb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVO2WIAAL8tb.jpg","url":"https:\/\/t.co\/xanDIPUfa4","display_url":"pic.twitter.com\/xanDIPUfa4","expanded_url":"http:\/\/twitter.com\/gtfoxstyles\/status\/663728265656422400\/photo\/1","type":"photo","sizes":{"large":{"w":601,"h":806,"resize":"fit"},"small":{"w":340,"h":455,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":804,"resize":"fit"}}},{"id":663728255502020608,"id_str":"663728255502020608","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVPCWcAAQaLP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVPCWcAAQaLP.jpg","url":"https:\/\/t.co\/xanDIPUfa4","display_url":"pic.twitter.com\/xanDIPUfa4","expanded_url":"http:\/\/twitter.com\/gtfoxstyles\/status\/663728265656422400\/photo\/1","type":"photo","sizes":{"large":{"w":639,"h":413,"resize":"fit"},"medium":{"w":600,"h":387,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":219,"resize":"fit"}}},{"id":663728255548203008,"id_str":"663728255548203008","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVPNXIAAo4r6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVPNXIAAo4r6.jpg","url":"https:\/\/t.co\/xanDIPUfa4","display_url":"pic.twitter.com\/xanDIPUfa4","expanded_url":"http:\/\/twitter.com\/gtfoxstyles\/status\/663728265656422400\/photo\/1","type":"photo","sizes":{"medium":{"w":580,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":239,"resize":"fit"},"large":{"w":580,"h":408,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080124664"} +{"delete":{"status":{"id":663643595224649728,"id_str":"663643595224649728","user_id":447880509,"user_id_str":"447880509"},"timestamp_ms":"1447080125189"}} +{"delete":{"status":{"id":663333485151555585,"id_str":"663333485151555585","user_id":4157945414,"user_id_str":"4157945414"},"timestamp_ms":"1447080125350"}} +{"delete":{"status":{"id":576949630048604160,"id_str":"576949630048604160","user_id":858742483,"user_id_str":"858742483"},"timestamp_ms":"1447080125484"}} +{"delete":{"status":{"id":653889422526537728,"id_str":"653889422526537728","user_id":2836640976,"user_id_str":"2836640976"},"timestamp_ms":"1447080125571"}} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269850763264,"id_str":"663728269850763264","text":"nerde kalm\u0131\u015ft\u0131k dicek","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3129149860,"id_str":"3129149860","name":"Selen","screen_name":"Seleenfat","location":"Ordu-OFAL","url":null,"description":"snapchat-seelenfat","protected":false,"verified":false,"followers_count":500,"friends_count":370,"listed_count":0,"favourites_count":8206,"statuses_count":1291,"created_at":"Mon Mar 30 14:17:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646996131608707072\/hPcAwy9G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646996131608707072\/hPcAwy9G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3129149860\/1445979709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080125664"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859123200,"id_str":"663728269859123200","text":"RT @MishalalRashidi: https:\/\/t.co\/QQabZvHRbA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":543412386,"id_str":"543412386","name":"\u0633\u0646\u062f \u0639\u0644\u064a \u0627\u0644\u062f\u0628\u064a","screen_name":"s_aldbii","location":null,"url":null,"description":"\u0644\u0627 \u0627\u0644\u0647 \u0627\u0644\u0627 \u0627\u0646\u062a \u0633\u0628\u062d\u0627\u0646\u0643 \u0627\u0646\u064a \u0643\u0646\u062a \u0645\u0646 \u0627\u0644\u0638\u0627\u0644\u0645\u064a\u0646","protected":false,"verified":false,"followers_count":994,"friends_count":276,"listed_count":0,"favourites_count":208,"statuses_count":22112,"created_at":"Mon Apr 02 11:13:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662086660541272064\/54RJF7ai_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662086660541272064\/54RJF7ai_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/543412386\/1446751404","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:28 +0000 2015","id":663727108808683520,"id_str":"663727108808683520","text":"https:\/\/t.co\/QQabZvHRbA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":380141081,"id_str":"380141081","name":"\u0645\u0634\u0639\u0644 \u0627\u062d\u0645\u062f \u0623\u062e\u0631\u064a\u0635","screen_name":"MishalalRashidi","location":"KuWAiT","url":"http:\/\/ask.fm\/Mishalalrashidi22","description":"GoalKeeper @ AlTathamun Club. Student in CBE \u0639\u0636\u0648 \u0641\u064a \u0644\u062c\u0646\u0647 \u0627\u0644\u0631\u0634\u0627\u064a\u062f\u0647 \u0627\u0644\u062a\u0637\u0628\u064a\u0642\u064a","protected":false,"verified":false,"followers_count":854,"friends_count":461,"listed_count":0,"favourites_count":96,"statuses_count":18486,"created_at":"Mon Sep 26 04:17:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663727209299972096\/qdIAT3Wz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663727209299972096\/qdIAT3Wz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/380141081\/1447079872","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727094099152896,"id_str":"663727094099152896","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","url":"https:\/\/t.co\/QQabZvHRbA","display_url":"pic.twitter.com\/QQabZvHRbA","expanded_url":"http:\/\/twitter.com\/MishalalRashidi\/status\/663727108808683520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727094099152896,"id_str":"663727094099152896","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","url":"https:\/\/t.co\/QQabZvHRbA","display_url":"pic.twitter.com\/QQabZvHRbA","expanded_url":"http:\/\/twitter.com\/MishalalRashidi\/status\/663727108808683520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MishalalRashidi","name":"\u0645\u0634\u0639\u0644 \u0627\u062d\u0645\u062f \u0623\u062e\u0631\u064a\u0635","id":380141081,"id_str":"380141081","indices":[3,19]}],"symbols":[],"media":[{"id":663727094099152896,"id_str":"663727094099152896","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","url":"https:\/\/t.co\/QQabZvHRbA","display_url":"pic.twitter.com\/QQabZvHRbA","expanded_url":"http:\/\/twitter.com\/MishalalRashidi\/status\/663727108808683520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727108808683520,"source_status_id_str":"663727108808683520","source_user_id":380141081,"source_user_id_str":"380141081"}]},"extended_entities":{"media":[{"id":663727094099152896,"id_str":"663727094099152896","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIRoeVEAAgu_c.jpg","url":"https:\/\/t.co\/QQabZvHRbA","display_url":"pic.twitter.com\/QQabZvHRbA","expanded_url":"http:\/\/twitter.com\/MishalalRashidi\/status\/663727108808683520\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}},"source_status_id":663727108808683520,"source_status_id_str":"663727108808683520","source_user_id":380141081,"source_user_id_str":"380141081"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842345985,"id_str":"663728269842345985","text":"\u0634\u0631\u0645\u0648\u0637\u0629 \u0645\u062d\u062c\u0628\u0629 \u062a\u0645\u0635 \u0632\u0628\u0631 \u0639\u0634\u064a\u0642\u0647\u0627 \u0641\u064a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0631\u0627\u0628\u0637 \u0627\u0644\u0641\u0644\u0645\nhttps:\/\/t.co\/dibSW85wXz","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3098657195,"id_str":"3098657195","name":"\u0633\u0643\u0633 \u0628\u0646\u0627\u062a \u0646\u0627\u0631","screen_name":"GHGNVBGH220","location":null,"url":null,"description":"#\u0643\u0633 #\u0632\u0628 #\u0633\u0643\u0633 #\u0646\u064a\u0643 #\u0646\u064a\u062c #\u0642\u062d\u0627\u0628 #\u0637\u064a\u0632 #\u0627\u0641\u0644\u0627\u0645_\u0633\u0643\u0633 #\u0645\u0645\u062d\u0648\u0646\u0629 #\u0645\u0637\u0644\u0642\u0647","protected":false,"verified":false,"followers_count":1745,"friends_count":1980,"listed_count":3,"favourites_count":0,"statuses_count":2737,"created_at":"Fri Mar 20 07:59:02 +0000 2015","utc_offset":25200,"time_zone":"Krasnoyarsk","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662402156230631424\/9QEUYZ5z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662402156230631424\/9QEUYZ5z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3098657195\/1426841541","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dibSW85wXz","expanded_url":"http:\/\/goo.gl\/mkk0cE","display_url":"goo.gl\/mkk0cE","indices":[50,73]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269825560576,"id_str":"663728269825560576","text":"https:\/\/t.co\/DAQybZe92b #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3511395976,"id_str":"3511395976","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 21","screen_name":"21Marmousa21","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":5341,"created_at":"Tue Sep 01 09:59:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/DAQybZe92b","display_url":"pic.twitter.com\/DAQybZe92b","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/DAQybZe92b","display_url":"pic.twitter.com\/DAQybZe92b","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125658"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854949376,"id_str":"663728269854949376","text":"RT @WinamaxSport: Koscielny, Mangala et Varane forfaits. Deschamps convoque Christophe Kerbrat, Zoumana Camara et Chris Mavinga.\nhttps:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1635732534,"id_str":"1635732534","name":"Damien L","screen_name":"CacciatoreDL","location":"France","url":null,"description":"21 yo - Direction service Client Coyote","protected":false,"verified":false,"followers_count":309,"friends_count":374,"listed_count":28,"favourites_count":15208,"statuses_count":37009,"created_at":"Wed Jul 31 15:39:07 +0000 2013","utc_offset":3600,"time_zone":"Paris","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"B5D119","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/494465511309078531\/kHcRd5AU.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/494465511309078531\/kHcRd5AU.jpeg","profile_background_tile":true,"profile_link_color":"41BEEB","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/554386117324460033\/eaDHXEkE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/554386117324460033\/eaDHXEkE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1635732534\/1413739719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:29:32 +0000 2015","id":663725109757272064,"id_str":"663725109757272064","text":"Koscielny, Mangala et Varane forfaits. Deschamps convoque Christophe Kerbrat, Zoumana Camara et Chris Mavinga.\nhttps:\/\/t.co\/sm5ngt1QRx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2834176185,"id_str":"2834176185","name":"WinamaxSport","screen_name":"WinamaxSport","location":"Paris","url":"https:\/\/www.winamax.fr\/","description":"[POKER : @Winamax] Avec @WinamaxSport, c'est une v\u00e9ritable communaut\u00e9 de passionn\u00e9s de sport que vous rejoignez.","protected":false,"verified":true,"followers_count":65022,"friends_count":523,"listed_count":107,"favourites_count":1,"statuses_count":27021,"created_at":"Thu Oct 16 15:00:19 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532924325330812929\/Qf9Ob16M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532924325330812929\/Qf9Ob16M_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2834176185\/1435743822","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663683779798634497,"quoted_status_id_str":"663683779798634497","quoted_status":{"created_at":"Mon Nov 09 11:45:18 +0000 2015","id":663683779798634497,"id_str":"663683779798634497","text":"Enfin bref..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":165060468,"id_str":"165060468","name":"aYmeric Laporte 4\u20e3","screen_name":"Laporte","location":null,"url":"https:\/\/www.facebook.com\/laporteaymeric","description":"Jugador del Athletic Club Bilbao. Deja que tus sue\u00f1os sean mas grandes que tus miedos y tus acciones mas grandes que tus palabras!!!","protected":false,"verified":true,"followers_count":46674,"friends_count":355,"listed_count":277,"favourites_count":883,"statuses_count":942,"created_at":"Sat Jul 10 13:46:15 +0000 2010","utc_offset":3600,"time_zone":"Paris","geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/484301867560599552\/7wbp4NCS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/484301867560599552\/7wbp4NCS.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663685705412030464\/t0-pGJv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663685705412030464\/t0-pGJv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/165060468\/1439571708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":49,"favorite_count":11,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm5ngt1QRx","expanded_url":"https:\/\/twitter.com\/Laporte\/status\/663683779798634497","display_url":"twitter.com\/Laporte\/status\u2026","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm5ngt1QRx","expanded_url":"https:\/\/twitter.com\/Laporte\/status\/663683779798634497","display_url":"twitter.com\/Laporte\/status\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"WinamaxSport","name":"WinamaxSport","id":2834176185,"id_str":"2834176185","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269846552576,"id_str":"663728269846552576","text":"Calei me!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1962809582,"id_str":"1962809582","name":"Baleia \u2661\/\/ 27","screen_name":"quequeresmano","location":"Leiria","url":null,"description":"Todos nos conhecem mas ningu\u00e9m sabe quem somos!\nSou uma baleia porque sim\n#TeamScouts","protected":false,"verified":false,"followers_count":1036,"friends_count":1026,"listed_count":1,"favourites_count":6761,"statuses_count":38346,"created_at":"Tue Oct 15 14:47:24 +0000 2013","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"E81C6E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495220230793076737\/RIOSWsoz.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495220230793076737\/RIOSWsoz.jpeg","profile_background_tile":true,"profile_link_color":"E81C6E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656829445634961408\/dOr5dgo9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656829445634961408\/dOr5dgo9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1962809582\/1445872095","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080125663"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859139584,"id_str":"663728269859139584","text":"RT @Al3anood__1: \u0623\u0646\u0627 \u0627\u0644\u062a\u0631\u062d\u0627\u0644 \u0648\u0623\u0646\u0627 \u0633\u0624\u0627\u0644 \u0627\u0644\u062d\u0627\u0644 \n\u0623\u0646\u0627 \u0627\u0644\u062a\u062e\u0645\u064a\u0646 \u0623\u0646\u0627 \u0627\u0644\u0645\u0643\u0633\u0648\u0631 \u0645\u0646 \u063a\u064a\u0631\u064a\n\u0648\u0627\u062f\u0648\u0631 \u0641\u0627\u0644\u0633\u0646\u064a\u0646 \u0633\u0646\u064a\u0646 \u0623\u0646\u0627 \u0627\u0644\u0645\u0627\u0636\u064a\n\u0623\u0646\u0627 \u0627\u0644\u0641\u0627\u0636\u064a \u0645\u0646 \u0627\u0644\u0623\u062d\u0628\u0627\u0628 \u0639\u062c\u0632\u062a \n\u0627\u0633\u062a\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3866809636,"id_str":"3866809636","name":"\u0633\u0639\u0648\u062f\u064a\u0651 \u0648\u0622\u0647\u0640\u0645\u0652 .. \u200f","screen_name":"sidlerhetslerg5","location":"Saudi Arabia, Riyadh","url":null,"description":"\u0644\u0633\u062a \u0628\u0631\u064a\u0621 \u0648\u0644\u0627 \u0633\u064a\u0626 \u0648\u0644\u0627 \u0630\u0627 \u062d\u064c\u0632\u0646 \u0623\u0646\u0627 \u0645\u062a\u0648\u0633\u0637 \u0635\u0628\u0631 \u060c \u0642\u0635\u064a\u0631 \u062d\u0638 \u060c \u0637\u0648\u064a\u0644 \u0635\u0645\u062a \u0648 \u0641\u0642\u064a\u0631 \u0628\u0648\u062d \u060c \u0648\u063a\u0646\u064a \u0628\u0627\u0644\u0644\u0647 \u0639\u0646 \u0627\u0644\u0646\u0627\u0633 \u0623\u062c\u0645\u0639\u064a\u0646","protected":false,"verified":false,"followers_count":1039,"friends_count":1039,"listed_count":0,"favourites_count":2065,"statuses_count":8149,"created_at":"Mon Oct 05 01:25:51 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655581155400556544\/rPTB_PHB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655581155400556544\/rPTB_PHB_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:03:40 +0000 2015","id":663703503186108416,"id_str":"663703503186108416","text":"\u0623\u0646\u0627 \u0627\u0644\u062a\u0631\u062d\u0627\u0644 \u0648\u0623\u0646\u0627 \u0633\u0624\u0627\u0644 \u0627\u0644\u062d\u0627\u0644 \n\u0623\u0646\u0627 \u0627\u0644\u062a\u062e\u0645\u064a\u0646 \u0623\u0646\u0627 \u0627\u0644\u0645\u0643\u0633\u0648\u0631 \u0645\u0646 \u063a\u064a\u0631\u064a\n\u0648\u0627\u062f\u0648\u0631 \u0641\u0627\u0644\u0633\u0646\u064a\u0646 \u0633\u0646\u064a\u0646 \u0623\u0646\u0627 \u0627\u0644\u0645\u0627\u0636\u064a\n\u0623\u0646\u0627 \u0627\u0644\u0641\u0627\u0636\u064a \u0645\u0646 \u0627\u0644\u0623\u062d\u0628\u0627\u0628 \u0639\u062c\u0632\u062a \n\u0627\u0633\u062a\u0648\u0639\u0628 \u0627\u0644\u0645\u0642\u0641\u064a\u0646","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1588711514,"id_str":"1588711514","name":"\u0627\u0644\u0640\u0639\u0640\u0646\u0640\u0648\u062f \u063a\u0640\u064a\u0640\u0631 MG","screen_name":"Al3anood__1","location":null,"url":null,"description":"\u0639\u0646\u062f\u0645\u0627 \u062a\u0639\u0644\u0645\u062a \u0627\u0644\u0633\u0628\u0627\u062d\u0647 \u0645\u0646\u0630 \u0633\u0646\u0648\u0627\u062a \u062a\u0645\u0646\u064a\u062a \u0644\u0648 \u0623\u0646\u064a \u062a\u0639\u0644\u0645\u062a\u0647\u0627 \u0645\u0646\u0630 \u0627\u0644\u0635\u063a\u0631 \u0641 \u0623\u0648\u0644 \u062f\u0631\u0648\u0633 \u0627\u0644\u0633\u0628\u0627\u062d\u0647 \u0647\u064a \u062a\u063a\u0644\u0642 \u0641\u0645\u0643 \u0648\u0623\u0646 \u062a\u0633\u062a\u0645\u0631 \u0628\u0627\u0644\u062d\u0631\u0643\u0647 \u0642\u0627\u0639\u062f\u0647 \u0644\u0643\u0644 \u0634\u064a\u0621 \u0641\u064a \u0627\u0644\u062d\u064a\u0627\u0647 \u062d\u0633\u0627\u0628\u0627\u062a\u064a @arts113 @arts1131","protected":false,"verified":false,"followers_count":129786,"friends_count":86602,"listed_count":197,"favourites_count":11546,"statuses_count":397914,"created_at":"Fri Jul 12 15:07:54 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658523477322944512\/538SnvQi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658523477322944512\/538SnvQi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1588711514\/1444482364","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":112,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Al3anood__1","name":"\u0627\u0644\u0640\u0639\u0640\u0646\u0640\u0648\u062f \u063a\u0640\u064a\u0640\u0631 MG","id":1588711514,"id_str":"1588711514","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821419521,"id_str":"663728269821419521","text":"RT @5SOSFamUpdater: Ashton, Luke & Calum today in Berlin being interviewed for @FRITZde https:\/\/t.co\/CbnPuUI5DQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":118133312,"id_str":"118133312","name":"malum","screen_name":"punkrocksftmgc","location":"off chops","url":"http:\/\/malum.is.my.middle.name","description":"im so far up malum's ass, no matter how many times i slightly swerve into lukes lane | 555-0011 | NEW BROKEN SCENE BITCHEZZ @5sos","protected":false,"verified":false,"followers_count":1557,"friends_count":1400,"listed_count":6,"favourites_count":12333,"statuses_count":16623,"created_at":"Sat Feb 27 18:13:22 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658041673956655104\/ysv2nE77_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658041673956655104\/ysv2nE77_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/118133312\/1445884762","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:24 +0000 2015","id":663726082059825152,"id_str":"663726082059825152","text":"Ashton, Luke & Calum today in Berlin being interviewed for @FRITZde https:\/\/t.co\/CbnPuUI5DQ","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2434043868,"id_str":"2434043868","name":"5SOS Updates","screen_name":"5SOSFamUpdater","location":"COL | GER | IT | PL | UK |","url":"http:\/\/ask.fm\/The5SOSFamUpdaters","description":"New @5SOS album Sounds Good Feels Good OUT NOW!: http:\/\/5sosf.am\/vjnufZ | Contact: the5sosfamupdates@hotmail.com | #iAmMixerati","protected":false,"verified":false,"followers_count":121474,"friends_count":1207,"listed_count":517,"favourites_count":13148,"statuses_count":119715,"created_at":"Tue Apr 08 18:16:47 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"BA1C3B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BA1C3B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659041049038442496\/YPgnIRXo_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659041049038442496\/YPgnIRXo_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2434043868\/1445962723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":81,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FRITZde","name":"Radio Fritz","id":16296946,"id_str":"16296946","indices":[63,71]}],"symbols":[],"media":[{"id":663726072261943296,"id_str":"663726072261943296","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","url":"https:\/\/t.co\/CbnPuUI5DQ","display_url":"pic.twitter.com\/CbnPuUI5DQ","expanded_url":"http:\/\/twitter.com\/5SOSFamUpdater\/status\/663726082059825152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663726072261943296,"id_str":"663726072261943296","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","url":"https:\/\/t.co\/CbnPuUI5DQ","display_url":"pic.twitter.com\/CbnPuUI5DQ","expanded_url":"http:\/\/twitter.com\/5SOSFamUpdater\/status\/663726082059825152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"5SOSFamUpdater","name":"5SOS Updates","id":2434043868,"id_str":"2434043868","indices":[3,18]},{"screen_name":"FRITZde","name":"Radio Fritz","id":16296946,"id_str":"16296946","indices":[83,91]}],"symbols":[],"media":[{"id":663726072261943296,"id_str":"663726072261943296","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","url":"https:\/\/t.co\/CbnPuUI5DQ","display_url":"pic.twitter.com\/CbnPuUI5DQ","expanded_url":"http:\/\/twitter.com\/5SOSFamUpdater\/status\/663726082059825152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726082059825152,"source_status_id_str":"663726082059825152","source_user_id":2434043868,"source_user_id_str":"2434043868"}]},"extended_entities":{"media":[{"id":663726072261943296,"id_str":"663726072261943296","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHWJ1WoAAjdMp.jpg","url":"https:\/\/t.co\/CbnPuUI5DQ","display_url":"pic.twitter.com\/CbnPuUI5DQ","expanded_url":"http:\/\/twitter.com\/5SOSFamUpdater\/status\/663726082059825152\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":450,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663726082059825152,"source_status_id_str":"663726082059825152","source_user_id":2434043868,"source_user_id_str":"2434043868"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821366272,"id_str":"663728269821366272","text":"https:\/\/t.co\/ygsDb3I5VM #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3511281556,"id_str":"3511281556","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 18","screen_name":"18Marmousa18","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":5354,"created_at":"Tue Sep 01 09:44:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/ygsDb3I5VM","display_url":"pic.twitter.com\/ygsDb3I5VM","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/ygsDb3I5VM","display_url":"pic.twitter.com\/ygsDb3I5VM","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269846560768,"id_str":"663728269846560768","text":"RT @elcitizen: Tiros contra Capriles en Miranda y agresiones contra Maria Corina en Falcon indican que los nervios est\u00e1n \"nerviosos\".","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":87788009,"id_str":"87788009","name":"Nina","screen_name":"Tanina74","location":null,"url":null,"description":"Cada d\u00eda....es un Comienzo","protected":false,"verified":false,"followers_count":291,"friends_count":1164,"listed_count":6,"favourites_count":857,"statuses_count":13063,"created_at":"Thu Nov 05 21:30:17 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/868209381\/fd3478f1e327b8c5007b65c1464233c1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/868209381\/fd3478f1e327b8c5007b65c1464233c1.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/437589627328024576\/12Q_KbAP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/437589627328024576\/12Q_KbAP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/87788009\/1365601833","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:35:11 +0000 2015","id":663696335779008512,"id_str":"663696335779008512","text":"Tiros contra Capriles en Miranda y agresiones contra Maria Corina en Falcon indican que los nervios est\u00e1n \"nerviosos\".","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84725346,"id_str":"84725346","name":"Leopoldo Castillo","screen_name":"elcitizen","location":null,"url":null,"description":".","protected":false,"verified":false,"followers_count":1567980,"friends_count":1138,"listed_count":6459,"favourites_count":157,"statuses_count":7191,"created_at":"Sat Oct 24 00:18:32 +0000 2009","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662467764179902465\/V7JCLA3n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662467764179902465\/V7JCLA3n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84725346\/1433557705","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":367,"favorite_count":65,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"elcitizen","name":"Leopoldo Castillo","id":84725346,"id_str":"84725346","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080125663"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842358272,"id_str":"663728269842358272","text":"RT @Cihan2nd: \"\u00dclkede bu kadar sorun varken ki\u015fisel hesaplar pe\u015finde olmayaca\u011f\u0131z, k\u00fc\u00e7\u00fck hesaplarla b\u00f6l\u00fcnmeyece\u011fiz!\"\n\nOrtada dola\u015fan \u00e7akalla\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1324174358,"id_str":"1324174358","name":"Zenobia","screen_name":"TheZeinepp","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":718,"friends_count":1226,"listed_count":7,"favourites_count":1166,"statuses_count":22891,"created_at":"Wed Apr 03 08:59:01 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607720979981148160\/vBXDXJax_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607720979981148160\/vBXDXJax_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1324174358\/1444502853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:38 +0000 2015","id":663727653720088576,"id_str":"663727653720088576","text":"\"\u00dclkede bu kadar sorun varken ki\u015fisel hesaplar pe\u015finde olmayaca\u011f\u0131z, k\u00fc\u00e7\u00fck hesaplarla b\u00f6l\u00fcnmeyece\u011fiz!\"\n\nOrtada dola\u015fan \u00e7akallara gelsin.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726295424049152,"in_reply_to_status_id_str":"663726295424049152","in_reply_to_user_id":92410837,"in_reply_to_user_id_str":"92410837","in_reply_to_screen_name":"Cihan2nd","user":{"id":92410837,"id_str":"92410837","name":"Cihan Sek\u0131ntK\u0131l\u0131\u015flar","screen_name":"Cihan2nd","location":"Bak\u0131rk\u00f6y","url":null,"description":"Democracy is so overrated! (Frank Underwood 2013) \/\/ Herkesin hayat\u0131na kimse kar\u0131\u015famaz. (Kemal K\u0131l\u0131\u00e7daro\u011flu - Ek\u015fi S\u00f6zl\u00fck 2015) #F\u0131rka","protected":false,"verified":false,"followers_count":2118,"friends_count":657,"listed_count":20,"favourites_count":19672,"statuses_count":64581,"created_at":"Wed Nov 25 00:48:35 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459841787029245952\/B7vZlOjM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459841787029245952\/B7vZlOjM.jpeg","profile_background_tile":true,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638083370866601984\/B1U7ZC3S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638083370866601984\/B1U7ZC3S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/92410837\/1384105103","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Cihan2nd","name":"Cihan Sek\u0131ntK\u0131l\u0131\u015flar","id":92410837,"id_str":"92410837","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842325504,"id_str":"663728269842325504","text":"#Roman Lord Geward als #gratis #H\u00f6rbuch. Komplett und ungek\u00fcrzt. https:\/\/t.co\/8UXMHU1sht","source":"\u003ca href=\"http:\/\/www.karrer-edelsteine.de\" rel=\"nofollow\"\u003eEdelsteine Mineralien\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":162304213,"id_str":"162304213","name":"Karrer Edelsteine","screen_name":"KarrerEdel","location":null,"url":"http:\/\/www.karrer-edelsteine.de","description":"Edelstein Portal. Alles \u00fcber #Edelsteine #Heilsteine #Mineralien : Chemie Geschichte F\u00e4lschung Betrug Gefahren Magie Rituale. Impressum: \nhttp:\/\/goo.gl\/zrOr0q","protected":false,"verified":false,"followers_count":2494,"friends_count":2427,"listed_count":118,"favourites_count":1992,"statuses_count":300223,"created_at":"Sat Jul 03 07:35:02 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/119342110\/Landscape_Logo_2.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/119342110\/Landscape_Logo_2.gif","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1046907246\/Twitter_Logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1046907246\/Twitter_Logo_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Roman","indices":[0,6]},{"text":"gratis","indices":[23,30]},{"text":"H\u00f6rbuch","indices":[31,39]}],"urls":[{"url":"https:\/\/t.co\/8UXMHU1sht","expanded_url":"http:\/\/goo.gl\/Fb3MGc","display_url":"goo.gl\/Fb3MGc","indices":[65,88]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859008514,"id_str":"663728269859008514","text":"\u4eba\u9593\u3069\u3046\u3057\u3001\u6700\u3082\u5c0a\u3044\u4e8b\u3060\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4124395694,"id_str":"4124395694","name":"\u30c4\u30f3\u30c7\u30ec\u30ce\u30f3\u30ce\u30f3","screen_name":"nonnon4t","location":"\u30d2\u30df\u30c4","url":null,"description":"\u30c4\u30f3\u30c7\u30ec\u5f7c\u6c0f","protected":false,"verified":false,"followers_count":19,"friends_count":50,"listed_count":0,"favourites_count":3,"statuses_count":105,"created_at":"Wed Nov 04 13:38:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661902410676199427\/SwFzyKgD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661902410676199427\/SwFzyKgD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4124395694\/1446645186","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829754880,"id_str":"663728269829754880","text":"https:\/\/t.co\/s22G22UXWB #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512742555,"id_str":"3512742555","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 33","screen_name":"31Marmousa33","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4294,"created_at":"Tue Sep 01 13:12:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/s22G22UXWB","display_url":"pic.twitter.com\/s22G22UXWB","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/s22G22UXWB","display_url":"pic.twitter.com\/s22G22UXWB","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821374464,"id_str":"663728269821374464","text":"Sabe aquela d\u00favida: \"Mandou s\u00f3 pra mim ou pra todo mundo?? \" pois \u00e9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":481611987,"id_str":"481611987","name":"Brenda","screen_name":"queen14beh","location":"Brasil , E.S","url":null,"description":", N\u00e3o tenha vergonha de quem voc\u00ea \u00e9 ..'","protected":false,"verified":false,"followers_count":687,"friends_count":1000,"listed_count":0,"favourites_count":4321,"statuses_count":8856,"created_at":"Fri Feb 03 00:03:48 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661362203027705856\/RBqFDb-v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661362203027705856\/RBqFDb-v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/481611987\/1446516009","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269825544192,"id_str":"663728269825544192","text":"https:\/\/t.co\/69JA4jtUZt #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512809828,"id_str":"3512809828","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 30","screen_name":"30Marmousa30","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4292,"created_at":"Tue Sep 01 13:08:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/69JA4jtUZt","display_url":"pic.twitter.com\/69JA4jtUZt","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/69JA4jtUZt","display_url":"pic.twitter.com\/69JA4jtUZt","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125658"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833986048,"id_str":"663728269833986048","text":"https:\/\/t.co\/fY7k9G5qEO #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513179656,"id_str":"3513179656","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 41","screen_name":"41Marmousa41","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3990,"created_at":"Tue Sep 01 13:57:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/fY7k9G5qEO","display_url":"pic.twitter.com\/fY7k9G5qEO","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/fY7k9G5qEO","display_url":"pic.twitter.com\/fY7k9G5qEO","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269838016513,"id_str":"663728269838016513","text":"RT @kadoouka15: \u6b62\u3081\u3066\u3055\u3057\u3042\u3052\u308d\uff01\uff01\uff01\uff01 #\u30a2\u30cb\u30e1\u30ea\u30dc\u30fc\u30f3\u518d\u653e\u9001\u4e94\u8a71\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3 https:\/\/t.co\/yLsU7gQKY2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1607067408,"id_str":"1607067408","name":"\u304a.\u307e\u3081\u306f\u8352\u304f\u308c\u308b","screen_name":"omame6263cos","location":"\u9756\u53cb\u306e\u6f6e\u8339\u3067\u751f\u30d1\u30b9\u30bf","url":"http:\/\/sp.cosp.jp\/prof.aspx?id=297323","description":"\u9756\u53cb\u304c\u3044\u308c\u3070\u4eba\u751f\u697d\u3057\u3044\u6210\u4eba\u6e08\u307f\u5730\u96f7\u7121\u3057\u7bc0\u64cd\u306a\u3044\u58c1\u6253\u3061\u8150\u5973\u5b50\u30ec\u30a4\u30e4\u30fc\/\u9756\u53cb\u4e5e\u98df\/\u30da\u30c0\u30eb\/\u30c0\u30a4\u30e4\/\u9032\u6483\/\u5b9d\u77f3\u306e\u56fd\/\u6d88\u6ec5\u90fd\u5e02\/\u5275\u4f5cetc...\u30b3\u30b9\u5199\u4e0b\u30cd\u30bf\u7a7a\u30ea\u30d7\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6fc0\u3057\u3044\u3051\u3069\u53cd\u5fdc\u304f\u308c\u305f\u3089\u5b09\u3057\u304f\u3066\u3061\u3073\u308b\/\u4e2d\u8eab\u306e\u306a\u3044\u4e8b\u3057\u304b\u545f\u3051\u307e\u305b\u3093\/\u30d5\u30a9\u30ed\u30d0\u306f\u30b8\u30e3\u30f3\u30eb\u304c\u304b\u3076\u3063\u3066\u305d\u3046\u3060\u3063\u305f\u3089\uff01\/\u30a2\u30a4\u30b3\u30f3\u65b0\u958b@ayaneeesanuk \u2764\ufe0e","protected":false,"verified":false,"followers_count":186,"friends_count":170,"listed_count":10,"favourites_count":2467,"statuses_count":38113,"created_at":"Sat Jul 20 00:48:27 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651425822260068356\/1zItISU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651425822260068356\/1zItISU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607067408\/1443456101","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 12:19:02 +0000 2015","id":663329882064056320,"id_str":"663329882064056320","text":"\u6b62\u3081\u3066\u3055\u3057\u3042\u3052\u308d\uff01\uff01\uff01\uff01 #\u30a2\u30cb\u30e1\u30ea\u30dc\u30fc\u30f3\u518d\u653e\u9001\u4e94\u8a71\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3 https:\/\/t.co\/yLsU7gQKY2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2495655840,"id_str":"2495655840","name":"\u304a\u30fc\u304b@\u4e94\u8a71\u5bfa\u8d85\u671f\u5f85","screen_name":"kadoouka15","location":null,"url":"http:\/\/twpf.jp\/kadoouka15","description":"\u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u53c2\u7167\u3002\u6210\u4eba\u6e08\u307f\u3002\u30c6\u30a4\u30eb\u30ba\u3001REBORN!\u3001PSYCHO-PASS\u304c\u73fe\u5728\u518d\u71b1\u3002\u30de\u30d5\u30a3\u30a2\u3068\u30b7\u30e7\u30bf\u3068\u4e3b\u5f93\u8a2d\u5b9a\u306b\u30db\u30a4\u30db\u30a4\u3055\u308c\u308b\u4eca\u65e5\u3053\u306e\u9803\u3002\u8fd1\u85e4\u9686\u3055\u3093\u304c\u5927\u597d\u304d\u3067\u3059\u3002\u8c4a\u5f8c\u56fd\u5be9\u795e\u8005\u3084\u3063\u3066\u307e\u3059\u67c4\u30e9\u30fc\u3067\u3059\u203bTL\u8352\u3089\u3057\u3001\u5bdd\u843d\u3061\u5e38\u7fd2\u72af","protected":false,"verified":false,"followers_count":207,"friends_count":181,"listed_count":8,"favourites_count":10054,"statuses_count":26801,"created_at":"Thu May 15 04:42:57 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663606812554297344\/GIQ-3go7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663606812554297344\/GIQ-3go7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2495655840\/1436948893","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3417,"favorite_count":1767,"entities":{"hashtags":[{"text":"\u30a2\u30cb\u30e1\u30ea\u30dc\u30fc\u30f3\u518d\u653e\u9001\u4e94\u8a71\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3","indices":[13,33]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663329876737310720,"id_str":"663329876737310720","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663329876737310720,"id_str":"663329876737310720","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":663329876741500928,"id_str":"663329876741500928","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAigUsAAeM5e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAigUsAAeM5e.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}}},{"id":663329876754087937,"id_str":"663329876754087937","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAijUwAEKvoI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAijUwAEKvoI.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"medium":{"w":217,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":217,"h":291,"resize":"fit"},"small":{"w":217,"h":291,"resize":"fit"}}},{"id":663329876770861056,"id_str":"663329876770861056","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAinUsAAIwIO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAinUsAAIwIO.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"medium":{"w":284,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":284,"h":418,"resize":"fit"},"large":{"w":284,"h":418,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30a2\u30cb\u30e1\u30ea\u30dc\u30fc\u30f3\u518d\u653e\u9001\u4e94\u8a71\u30ab\u30a6\u30f3\u30c8\u30c0\u30a6\u30f3","indices":[29,49]}],"urls":[],"user_mentions":[{"screen_name":"kadoouka15","name":"\u304a\u30fc\u304b@\u4e94\u8a71\u5bfa\u8d85\u671f\u5f85","id":2495655840,"id_str":"2495655840","indices":[3,14]}],"symbols":[],"media":[{"id":663329876737310720,"id_str":"663329876737310720","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663329882064056320,"source_status_id_str":"663329882064056320","source_user_id":2495655840,"source_user_id_str":"2495655840"}]},"extended_entities":{"media":[{"id":663329876737310720,"id_str":"663329876737310720","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAifUwAAn2l2.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663329882064056320,"source_status_id_str":"663329882064056320","source_user_id":2495655840,"source_user_id_str":"2495655840"},{"id":663329876741500928,"id_str":"663329876741500928","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAigUsAAeM5e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAigUsAAeM5e.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":240,"h":320,"resize":"fit"},"medium":{"w":240,"h":320,"resize":"fit"},"large":{"w":240,"h":320,"resize":"fit"}},"source_status_id":663329882064056320,"source_status_id_str":"663329882064056320","source_user_id":2495655840,"source_user_id_str":"2495655840"},{"id":663329876754087937,"id_str":"663329876754087937","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAijUwAEKvoI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAijUwAEKvoI.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"medium":{"w":217,"h":291,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":217,"h":291,"resize":"fit"},"small":{"w":217,"h":291,"resize":"fit"}},"source_status_id":663329882064056320,"source_status_id_str":"663329882064056320","source_user_id":2495655840,"source_user_id_str":"2495655840"},{"id":663329876770861056,"id_str":"663329876770861056","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSfAinUsAAIwIO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSfAinUsAAIwIO.jpg","url":"https:\/\/t.co\/yLsU7gQKY2","display_url":"pic.twitter.com\/yLsU7gQKY2","expanded_url":"http:\/\/twitter.com\/kadoouka15\/status\/663329882064056320\/photo\/1","type":"photo","sizes":{"medium":{"w":284,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":284,"h":418,"resize":"fit"},"large":{"w":284,"h":418,"resize":"fit"}},"source_status_id":663329882064056320,"source_status_id_str":"663329882064056320","source_user_id":2495655840,"source_user_id_str":"2495655840"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125661"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821239296,"id_str":"663728269821239296","text":"RT @TheSupremecy: they done made it into a sweater y'all https:\/\/t.co\/eVqG9rsWlD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":621689704,"id_str":"621689704","name":"jacks.","screen_name":"__applejaacks","location":"probs with babe @ carls.","url":null,"description":"be kind.","protected":false,"verified":false,"followers_count":1025,"friends_count":745,"listed_count":0,"favourites_count":5797,"statuses_count":24463,"created_at":"Fri Jun 29 08:03:26 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA0071","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000180257726\/Cu1qmeUs.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000180257726\/Cu1qmeUs.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661384320330764292\/2FNg3-68_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661384320330764292\/2FNg3-68_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/621689704\/1446617725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 21:55:03 +0000 2015","id":662750065904218112,"id_str":"662750065904218112","text":"they done made it into a sweater y'all https:\/\/t.co\/eVqG9rsWlD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662697164062240768,"in_reply_to_status_id_str":"662697164062240768","in_reply_to_user_id":827993142,"in_reply_to_user_id_str":"827993142","in_reply_to_screen_name":"TheSupremecy","user":{"id":827993142,"id_str":"827993142","name":"SUPRE \/ MACY","screen_name":"TheSupremecy","location":null,"url":"http:\/\/Lowkeyappeal.com","description":", but I'm dead inside.\n\n\n\n\nfollow me for fashion,\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nyoung entrepreneur in the making,","protected":false,"verified":false,"followers_count":10322,"friends_count":1650,"listed_count":4,"favourites_count":225,"statuses_count":87,"created_at":"Mon Sep 17 00:15:02 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658418263878168581\/08tjXtxz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658418263878168581\/08tjXtxz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/827993142\/1446082675","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":500,"favorite_count":569,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662750059558215680,"id_str":"662750059558215680","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662750059558215680,"id_str":"662750059558215680","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}},{"id":662750061076611072,"id_str":"662750061076611072","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPq01XAAA9SJb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPq01XAAA9SJb.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheSupremecy","name":"SUPRE \/ MACY","id":827993142,"id_str":"827993142","indices":[3,16]}],"symbols":[],"media":[{"id":662750059558215680,"id_str":"662750059558215680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662750065904218112,"source_status_id_str":"662750065904218112","source_user_id":827993142,"source_user_id_str":"827993142"}]},"extended_entities":{"media":[{"id":662750059558215680,"id_str":"662750059558215680","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPqvLWIAAWNsG.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662750065904218112,"source_status_id_str":"662750065904218112","source_user_id":827993142,"source_user_id_str":"827993142"},{"id":662750061076611072,"id_str":"662750061076611072","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTKPq01XAAA9SJb.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTKPq01XAAA9SJb.jpg","url":"https:\/\/t.co\/eVqG9rsWlD","display_url":"pic.twitter.com\/eVqG9rsWlD","expanded_url":"http:\/\/twitter.com\/TheSupremecy\/status\/662750065904218112\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":662750065904218112,"source_status_id_str":"662750065904218112","source_user_id":827993142,"source_user_id_str":"827993142"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859102720,"id_str":"663728269859102720","text":"https:\/\/t.co\/ZUr2HVWoVT #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512561663,"id_str":"3512561663","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 25","screen_name":"25Marmousa25","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4569,"created_at":"Tue Sep 01 12:42:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/ZUr2HVWoVT","display_url":"pic.twitter.com\/ZUr2HVWoVT","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/ZUr2HVWoVT","display_url":"pic.twitter.com\/ZUr2HVWoVT","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829742592,"id_str":"663728269829742592","text":"https:\/\/t.co\/D6XCIUjxTi #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512685562,"id_str":"3512685562","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 27","screen_name":"27Marmousa27","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4301,"created_at":"Tue Sep 01 12:51:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/D6XCIUjxTi","display_url":"pic.twitter.com\/D6XCIUjxTi","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/D6XCIUjxTi","display_url":"pic.twitter.com\/D6XCIUjxTi","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833994241,"id_str":"663728269833994241","text":"https:\/\/t.co\/p9RtZ2cey2 #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512800941,"id_str":"3512800941","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 35","screen_name":"35Marmousa35","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3993,"created_at":"Tue Sep 01 13:20:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/p9RtZ2cey2","display_url":"pic.twitter.com\/p9RtZ2cey2","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/p9RtZ2cey2","display_url":"pic.twitter.com\/p9RtZ2cey2","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821411328,"id_str":"663728269821411328","text":"https:\/\/t.co\/59OeLTXaRz #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512741121,"id_str":"3512741121","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 32","screen_name":"32Marmousa32","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3990,"created_at":"Tue Sep 01 13:12:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/59OeLTXaRz","display_url":"pic.twitter.com\/59OeLTXaRz","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/59OeLTXaRz","display_url":"pic.twitter.com\/59OeLTXaRz","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269825613824,"id_str":"663728269825613824","text":"https:\/\/t.co\/49jWLH9GXR #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3511080029,"id_str":"3511080029","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0628\u0627\u0644\u0631\u064a\u0627\u0636 16","screen_name":"16Marmousa16","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":5265,"created_at":"Tue Sep 01 09:25:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/49jWLH9GXR","display_url":"pic.twitter.com\/49jWLH9GXR","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/49jWLH9GXR","display_url":"pic.twitter.com\/49jWLH9GXR","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125658"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269838151680,"id_str":"663728269838151680","text":"https:\/\/t.co\/B9sFiAKYPG #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3513104668,"id_str":"3513104668","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 40","screen_name":"40Marmousa40","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3995,"created_at":"Tue Sep 01 13:47:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/B9sFiAKYPG","display_url":"pic.twitter.com\/B9sFiAKYPG","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/B9sFiAKYPG","display_url":"pic.twitter.com\/B9sFiAKYPG","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125661"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269846446080,"id_str":"663728269846446080","text":"\u304a\u30fc\u3001\u304a\u3064\u304b\u308c\u3055\u307e\u3088\u30fc\uff57 https:\/\/t.co\/IkhbsYSC6A","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123304185,"id_str":"123304185","name":"\u30dd\u30c6\uff1d\u30bf\u30ed\u30a6\uff08\u308b\u304b\u3055\u3093\u3068\u304b\u306e\u4eba\uff09","screen_name":"pottecco","location":"\u5e03\u56e3\u304c\u50d5\u306e\u3053\u3044\u3073\u3068","url":"http:\/\/popote.blog.fc2.com\/","description":"\u5909\u614b\u3055\u3093\u304b\u3082\u3057\u308c\u306a\u3044\u3002 \u4eca\u5e744\u6b73\u30681\u6b73\u306e\u3087\u3045\u3058\u3087\u306e\u30de\u30de\u3084\u3063\u3066\u308b\u304b\u3082\u3057\u308c\u306a\u3044\u3002 MMORPG\u30ea\u30cd\u30fc\u30b8\u30e5\u30d9\u30ac\u3001\u30b1\u30f3\u9bd6\u306f\u7460\u83ef\u3063\u3066\u30a8\u30eb\u30d5\u304bDE\u3001\u30d6\u30ec\u30bd\uff08\u7261\u4e39\u9bd6\uff09\u306f\u7409\u5629\u3084\u3089\u7a1c\u751f\u3084\u3089\u8272\u3005\u3084\u3063\u3066\u307e\u3059\u3002 \u57fa\u672c\u6e3e\u5929\u30ad\u30e3\u30e9\u304c\u591a\u3044\u3067\u3059\u3002\u5263\u8853\u3001\u62f3\u3001\u53ec\u559a\u3001\u30ea\u30f3\u90aa\u3001\u6697\u6bba\u6301\u3063\u3066\u303c\u3002 \u30b0\u30e9\u30d6\u30eb\u3082\u3084\u3063\u3066\u308b\u3088\uff01","protected":false,"verified":false,"followers_count":25,"friends_count":18,"listed_count":0,"favourites_count":3,"statuses_count":551,"created_at":"Mon Mar 15 17:23:16 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654146725171458049\/U1FWGbQg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654146725171458049\/U1FWGbQg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123304185\/1443785725","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663702902322565120,"quoted_status_id_str":"663702902322565120","quoted_status":{"created_at":"Mon Nov 09 13:01:17 +0000 2015","id":663702902322565120,"id_str":"663702902322565120","text":"\u30b1\u30f3\u9bd62\u56de\u76ee\u306e\u30c6\u30fc\u30d9\u958b\u653e\u3002\n\u3084\u3063\u3071\u308a\u795ePOT\u7121\u3044\u3068\u76f8\u5f53\u53b3\u3057\u3044\u611f\u3058\u3067\u3059\u300166\u30ad\u30e3\u30c3\u30d7\u3067\u3082\u901a\u5e38\u6642\u306f\u30e0\u30ea\u305d\u3046\u3002\n70\u30ad\u30e3\u30c3\u30d7\u958b\u653e\u306a\u3089\u901a\u5e38\u6642\u3082\u5012\u305b\u308b\u304b\u306a\u3042\u3001\u3068\u3044\u3046\u624b\u5fdc\u3048\u3067\u3057\u305f\u3002 https:\/\/t.co\/gr3p6H4zwn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":158379135,"id_str":"158379135","name":"\u307e\u30fc\u308c\u3089\u3044","screen_name":"win_malerei","location":null,"url":"http:\/\/blog.livedoor.jp\/malerei\/","description":"\u5929\u9cf3ID\u540d\u30df\u30af\u30ed6\u6bb5\u3000\u7af6\u99ac\u4e88\u60f3\u597d\u304d\u3000 \u3000\u30ea\u30cd\u30fc\u30b8\u30e5\u30b1\u30f3\u9bd6Rosellina","protected":false,"verified":false,"followers_count":179,"friends_count":190,"listed_count":1,"favourites_count":4,"statuses_count":358,"created_at":"Tue Jun 22 13:59:20 +0000 2010","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660861853313077248\/FWyyprv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660861853313077248\/FWyyprv4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663702901181689856,"id_str":"663702901181689856","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRa1UsAAMmJz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRa1UsAAMmJz.jpg","url":"https:\/\/t.co\/gr3p6H4zwn","display_url":"pic.twitter.com\/gr3p6H4zwn","expanded_url":"http:\/\/twitter.com\/win_malerei\/status\/663702902322565120\/photo\/1","type":"photo","sizes":{"large":{"w":413,"h":310,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":413,"h":310,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702901181689856,"id_str":"663702901181689856","indices":[85,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyRa1UsAAMmJz.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyRa1UsAAMmJz.jpg","url":"https:\/\/t.co\/gr3p6H4zwn","display_url":"pic.twitter.com\/gr3p6H4zwn","expanded_url":"http:\/\/twitter.com\/win_malerei\/status\/663702902322565120\/photo\/1","type":"photo","sizes":{"large":{"w":413,"h":310,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":413,"h":310,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/IkhbsYSC6A","expanded_url":"https:\/\/twitter.com\/win_malerei\/status\/663702902322565120","display_url":"twitter.com\/win_malerei\/st\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125663"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842382848,"id_str":"663728269842382848","text":"https:\/\/t.co\/2tJvPAnM1j #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512847269,"id_str":"3512847269","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 34","screen_name":"34Marmousa34","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3994,"created_at":"Tue Sep 01 13:20:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/2tJvPAnM1j","display_url":"pic.twitter.com\/2tJvPAnM1j","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/2tJvPAnM1j","display_url":"pic.twitter.com\/2tJvPAnM1j","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859135488,"id_str":"663728269859135488","text":"https:\/\/t.co\/2wAjyh2DGF #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512755876,"id_str":"3512755876","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 29","screen_name":"29Marmousa29","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4292,"created_at":"Tue Sep 01 13:00:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/2wAjyh2DGF","display_url":"pic.twitter.com\/2wAjyh2DGF","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/2wAjyh2DGF","display_url":"pic.twitter.com\/2wAjyh2DGF","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854838785,"id_str":"663728269854838785","text":"\u306fww\u3089wwww\u3044\u305f\u3044wwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3304683439,"id_str":"3304683439","name":"\u2020\u864e\u3005\u2020","screen_name":"Chikai_coco","location":"\u30c6\u30e1\u301c\u301c\u30b3\u30ce\u30e4\u30ed\u301c\u301c\u304a\u304b\u3059\u301c\uff01","url":null,"description":"\u3042\u3093\u30b9\u30bf\u57a2\u3002UNDEAD\u63a8\u3057\u3002\u5927\u795e\u6643\u7259\u3002Kinghts\u3068\u6d41\u661f\u968a\u3082\u62b1\u3063\u3053\u3057\u3066\u308b\u3002(\u96f6\u6643\/\u30a2\u30c9\u6643\/\u30b9\u30d0\u6643\/\u96f6\u85ab\/\u594f\u85ab\u594f\/\u3044\u305a\u307e\u3053\/\u308a\u3064\u307e\u304a\/\u6714\u9593\u5144\u5f1f\/\u308a\u3064\u3044\u305a\/\u6d77\u6d0b\u751f\u7269\u90e8\/3-A\u2026etc)\u5730\u96f7\u7121\u3057\u3002CP\u3059\u3054\u3044\u96d1\u98df\u3002\u672c\u57a2(@iinikuchika)","protected":false,"verified":false,"followers_count":373,"friends_count":221,"listed_count":26,"favourites_count":920,"statuses_count":7848,"created_at":"Sun Aug 02 23:46:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661586283798523904\/bfhEM-KO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661586283798523904\/bfhEM-KO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3304683439\/1446337592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829779456,"id_str":"663728269829779456","text":"RT - sanialove_ - https:\/\/t.co\/FMTIHqFP62 #diabetes news: Nutrisystem CEO Dawn Zier Named Chair of the American H\u2026 https:\/\/t.co\/gmLxu8aIpC","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3458288593,"id_str":"3458288593","name":"Richard E. Willard","screen_name":"RichardEWillard","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1802,"friends_count":40,"listed_count":860,"favourites_count":0,"statuses_count":147636,"created_at":"Sat Sep 05 10:21:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663726213588979712,"quoted_status_id_str":"663726213588979712","quoted_status":{"created_at":"Mon Nov 09 14:33:55 +0000 2015","id":663726213588979712,"id_str":"663726213588979712","text":"https:\/\/t.co\/pJbw3glVRe #diabetes news: Nutrisystem CEO Dawn Zier Named Chair of the American Heart Association 2\u2026 https:\/\/t.co\/kkwetZ0Svy","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3981393434,"id_str":"3981393434","name":"Sania","screen_name":"sanialove_","location":"New York, USA","url":null,"description":"Subtly charming communicator. Evil alcohol fanatic. Devoted creator. Analyst. Travelaholic.","protected":false,"verified":false,"followers_count":410,"friends_count":895,"listed_count":142,"favourites_count":1,"statuses_count":42416,"created_at":"Thu Oct 22 15:19:15 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657421085558730753\/ZFRuA9EJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657421085558730753\/ZFRuA9EJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3981393434\/1445576384","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"diabetes","indices":[24,33]}],"urls":[{"url":"https:\/\/t.co\/pJbw3glVRe","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[0,23]},{"url":"https:\/\/t.co\/kkwetZ0Svy","expanded_url":"http:\/\/ow.ly\/37mq9D","display_url":"ow.ly\/37mq9D","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"diabetes","indices":[42,51]}],"urls":[{"url":"https:\/\/t.co\/FMTIHqFP62","expanded_url":"https:\/\/goo.gl\/t4fpx2","display_url":"goo.gl\/t4fpx2","indices":[18,41]},{"url":"https:\/\/t.co\/gmLxu8aIpC","expanded_url":"http:\/\/twitter.com\/sanialove_\/status\/663726213588979712","display_url":"twitter.com\/sanialove_\/sta\u2026","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833994240,"id_str":"663728269833994240","text":"RT @Reuters: Two Americans, one South African killed at Jordan security training site: https:\/\/t.co\/myY1kTRjgB https:\/\/t.co\/VUnuLdhGSc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":211150971,"id_str":"211150971","name":"aha1966","screen_name":"aha1966","location":null,"url":null,"description":"Her t\u00fcrden mal ile steril duyarl\u0131l\u0131klar kasanlar, sinizmi ve uyduruk laf sokmalar\u0131 sanat edinenler itina ile engellenir...","protected":false,"verified":false,"followers_count":9481,"friends_count":1456,"listed_count":41,"favourites_count":6989,"statuses_count":45695,"created_at":"Tue Nov 02 13:27:32 +0000 2010","utc_offset":3600,"time_zone":"Brussels","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/423300682\/317764_247967881915418_100001066248178_634627_2071798412_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/423300682\/317764_247967881915418_100001066248178_634627_2071798412_n.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1446712155\/msenol_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1446712155\/msenol_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/211150971\/1401874589","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:05 +0000 2015","id":663728015977881602,"id_str":"663728015977881602","text":"Two Americans, one South African killed at Jordan security training site: https:\/\/t.co\/myY1kTRjgB https:\/\/t.co\/VUnuLdhGSc","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1652541,"id_str":"1652541","name":"Reuters Top News","screen_name":"Reuters","location":"Around the world","url":"http:\/\/www.reuters.com","description":"Top and breaking news, pictures, and videos from Reuters.","protected":false,"verified":true,"followers_count":9544611,"friends_count":1038,"listed_count":96423,"favourites_count":837,"statuses_count":130607,"created_at":"Tue Mar 20 17:46:05 +0000 2007","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"444444","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/735542174\/340f8869cdcabbcc436096587143cc38.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/735542174\/340f8869cdcabbcc436096587143cc38.png","profile_background_tile":false,"profile_link_color":"006F97","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F5F5F5","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3379693153\/1008914c0ae75c9efb5f9c0161fce9a2_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3379693153\/1008914c0ae75c9efb5f9c0161fce9a2_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1652541\/1444424855","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/myY1kTRjgB","expanded_url":"http:\/\/reut.rs\/1NmxH4p","display_url":"reut.rs\/1NmxH4p","indices":[74,97]}],"user_mentions":[],"symbols":[],"media":[{"id":663728015268974592,"id_str":"663728015268974592","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","url":"https:\/\/t.co\/VUnuLdhGSc","display_url":"pic.twitter.com\/VUnuLdhGSc","expanded_url":"http:\/\/twitter.com\/Reuters\/status\/663728015977881602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728015268974592,"id_str":"663728015268974592","indices":[98,121],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","url":"https:\/\/t.co\/VUnuLdhGSc","display_url":"pic.twitter.com\/VUnuLdhGSc","expanded_url":"http:\/\/twitter.com\/Reuters\/status\/663728015977881602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/myY1kTRjgB","expanded_url":"http:\/\/reut.rs\/1NmxH4p","display_url":"reut.rs\/1NmxH4p","indices":[87,110]}],"user_mentions":[{"screen_name":"Reuters","name":"Reuters Top News","id":1652541,"id_str":"1652541","indices":[3,11]}],"symbols":[],"media":[{"id":663728015268974592,"id_str":"663728015268974592","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","url":"https:\/\/t.co\/VUnuLdhGSc","display_url":"pic.twitter.com\/VUnuLdhGSc","expanded_url":"http:\/\/twitter.com\/Reuters\/status\/663728015977881602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663728015977881602,"source_status_id_str":"663728015977881602","source_user_id":1652541,"source_user_id_str":"1652541"}]},"extended_entities":{"media":[{"id":663728015268974592,"id_str":"663728015268974592","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJHQGVEAA5YH2.jpg","url":"https:\/\/t.co\/VUnuLdhGSc","display_url":"pic.twitter.com\/VUnuLdhGSc","expanded_url":"http:\/\/twitter.com\/Reuters\/status\/663728015977881602\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":533,"resize":"fit"}},"source_status_id":663728015977881602,"source_status_id_str":"663728015977881602","source_user_id":1652541,"source_user_id_str":"1652541"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829652480,"id_str":"663728269829652480","text":"RT @Piscestars: 151101 Taeyeon ahhh! \ud83d\udc9c #taeyeonveryspecialdayconcert https:\/\/t.co\/9r4wzphi5M https:\/\/t.co\/NtdZ30SB0h","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":704448744,"id_str":"704448744","name":"Cluu ^^","screen_name":"Claugitha","location":"Indonesia","url":"http:\/\/i.instagram.com\/claughita","description":"(Fangirl Acc) 48JHS || 12VHS || Right Now, Future & Forever SONE \u2665 || \uc18c\ub140\uc2dc\ub300 || 1-4-3 Art\u2665","protected":false,"verified":false,"followers_count":467,"friends_count":342,"listed_count":12,"favourites_count":464,"statuses_count":23693,"created_at":"Thu Jul 19 05:47:40 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5CEDD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502797805463674880\/PWGjYfOK.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502797805463674880\/PWGjYfOK.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/612266368281370624\/-bVL9z1g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/612266368281370624\/-bVL9z1g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/704448744\/1444924640","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:23:46 +0000 2015","id":663300874966462464,"id_str":"663300874966462464","text":"151101 Taeyeon ahhh! \ud83d\udc9c #taeyeonveryspecialdayconcert https:\/\/t.co\/9r4wzphi5M https:\/\/t.co\/NtdZ30SB0h","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3303973074,"id_str":"3303973074","name":"TY's","screen_name":"Piscestars","location":null,"url":"http:\/\/instagram.com\/piscestars","description":"Photo By: TheyayahTastic","protected":false,"verified":false,"followers_count":269,"friends_count":1,"listed_count":6,"favourites_count":0,"statuses_count":59,"created_at":"Sun Aug 02 06:49:59 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663026895672340481\/wQrnXQ-3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663026895672340481\/wQrnXQ-3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3303973074\/1446892973","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":285,"favorite_count":260,"entities":{"hashtags":[{"text":"taeyeonveryspecialdayconcert","indices":[23,52]}],"urls":[{"url":"https:\/\/t.co\/9r4wzphi5M","expanded_url":"https:\/\/c2.staticflickr.com\/6\/5805\/22879209291_38611b18d3_o.jpg","display_url":"c2.staticflickr.com\/6\/5805\/2287920\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[],"media":[{"id":663300874723196928,"id_str":"663300874723196928","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","url":"https:\/\/t.co\/NtdZ30SB0h","display_url":"pic.twitter.com\/NtdZ30SB0h","expanded_url":"http:\/\/twitter.com\/Piscestars\/status\/663300874966462464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663300874723196928,"id_str":"663300874723196928","indices":[77,100],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","url":"https:\/\/t.co\/NtdZ30SB0h","display_url":"pic.twitter.com\/NtdZ30SB0h","expanded_url":"http:\/\/twitter.com\/Piscestars\/status\/663300874966462464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"taeyeonveryspecialdayconcert","indices":[39,68]}],"urls":[{"url":"https:\/\/t.co\/9r4wzphi5M","expanded_url":"https:\/\/c2.staticflickr.com\/6\/5805\/22879209291_38611b18d3_o.jpg","display_url":"c2.staticflickr.com\/6\/5805\/2287920\u2026","indices":[69,92]}],"user_mentions":[{"screen_name":"Piscestars","name":"TY's","id":3303973074,"id_str":"3303973074","indices":[3,14]}],"symbols":[],"media":[{"id":663300874723196928,"id_str":"663300874723196928","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","url":"https:\/\/t.co\/NtdZ30SB0h","display_url":"pic.twitter.com\/NtdZ30SB0h","expanded_url":"http:\/\/twitter.com\/Piscestars\/status\/663300874966462464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663300874966462464,"source_status_id_str":"663300874966462464","source_user_id":3303973074,"source_user_id_str":"3303973074"}]},"extended_entities":{"media":[{"id":663300874723196928,"id_str":"663300874723196928","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSEoZkVAAA3P0Y.jpg","url":"https:\/\/t.co\/NtdZ30SB0h","display_url":"pic.twitter.com\/NtdZ30SB0h","expanded_url":"http:\/\/twitter.com\/Piscestars\/status\/663300874966462464\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":681,"resize":"fit"}},"source_status_id":663300874966462464,"source_status_id_str":"663300874966462464","source_user_id":3303973074,"source_user_id_str":"3303973074"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833842688,"id_str":"663728269833842688","text":"mga kantahan bat ganon hahahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441399359,"id_str":"441399359","name":"faye","screen_name":"FayeTayamora","location":null,"url":null,"description":"harthart","protected":false,"verified":false,"followers_count":363,"friends_count":887,"listed_count":0,"favourites_count":2483,"statuses_count":3322,"created_at":"Tue Dec 20 02:02:04 +0000 2011","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663214053725044736\/ld-oXIGX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663214053725044736\/ld-oXIGX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441399359\/1446378783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269825560577,"id_str":"663728269825560577","text":"@tomas6 S\u00f3 vi Adidas\/Sportzone (Norteshopping). O CorteIngles que falas \u00e9 o de Gaia, certo? S\u00f3 vou l\u00e1 comprar comida gourmet :P @SL_Benfica","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727754387542017,"in_reply_to_status_id_str":"663727754387542017","in_reply_to_user_id":18972914,"in_reply_to_user_id_str":"18972914","in_reply_to_screen_name":"tomas6","user":{"id":164468679,"id_str":"164468679","name":"olhaoquetedigo","screen_name":"olhaoquetedigo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":702,"friends_count":791,"listed_count":17,"favourites_count":261,"statuses_count":18952,"created_at":"Thu Jul 08 23:34:37 +0000 2010","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"660202","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/469664569200508928\/FNzB1_oZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/469664569200508928\/FNzB1_oZ_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tomas6","name":"Tom\u00e1s T.","id":18972914,"id_str":"18972914","indices":[0,7]},{"screen_name":"SL_Benfica","name":"Sport Lisboa Benfica","id":21390437,"id_str":"21390437","indices":[128,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080125658"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842210816,"id_str":"663728269842210816","text":"@kaito0538 \u3070\u308c\u305f\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722744530341892,"in_reply_to_status_id_str":"663722744530341892","in_reply_to_user_id":2725879494,"in_reply_to_user_id_str":"2725879494","in_reply_to_screen_name":"kaito0538","user":{"id":4079387652,"id_str":"4079387652","name":"nattchi\u2765\u2765\u32a7","screen_name":"rena58511641","location":"tweet\u591a\u3081\u3001\u6687\u4eba\u3002","url":null,"description":"\u261e\u4e2d2 \/\u30c9S\u306a\u5f7c\u6c0f\u307b\u3057\u3044\u7b11 \/ Disney BIG BANG NON STYLE adidas \u30c9S \u7aaa\u7530\u6b63\u5b5d dance \u30d7\u30ea UNICORN \u6d0b\u697d glee \u5bdd\u308b\u3053\u3068 \u98df\u3079\u308b\u3053\u3068\u3059\u304d(\u2661) \/ \u3060\u308c\u3067\u3082follow\u3057\u307e\u304f\u3063\u3066~(^^\u266a","protected":false,"verified":false,"followers_count":158,"friends_count":179,"listed_count":0,"favourites_count":38,"statuses_count":232,"created_at":"Sat Oct 31 12:08:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662838543513849856\/g_UYc7O8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662838543513849856\/g_UYc7O8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4079387652\/1447055776","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kaito0538","name":"\u304b\u3044\u3068","id":2725879494,"id_str":"2725879494","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859168256,"id_str":"663728269859168256","text":"one person followed me and 2 people unfollowed me \/\/ automatically checked by https:\/\/t.co\/xPyZSCLrIJ","source":"\u003ca href=\"http:\/\/fllwrs.com\" rel=\"nofollow\"\u003efllwrs\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322338969,"id_str":"322338969","name":"~ maggie maee ~","screen_name":"maggie_mae9","location":null,"url":null,"description":"| florida | 20 | \u26a1\ufe0f |","protected":false,"verified":false,"followers_count":458,"friends_count":297,"listed_count":1,"favourites_count":3964,"statuses_count":27454,"created_at":"Thu Jun 23 01:02:05 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3DC2EB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/767255274\/fdcbae701455ff7b0a90807a40838af2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/767255274\/fdcbae701455ff7b0a90807a40838af2.jpeg","profile_background_tile":true,"profile_link_color":"F00E96","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"9D8348","profile_text_color":"329262","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660828822514876416\/qC0XTpes_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660828822514876416\/qC0XTpes_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322338969\/1445870467","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xPyZSCLrIJ","expanded_url":"http:\/\/fllwrs.com","display_url":"fllwrs.com","indices":[78,101]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833846784,"id_str":"663728269833846784","text":"@xIrisBestx @ELSchaaf @TillyKMadison @TalkNerdyWithUs @beingamna We don't know if it is, but she said she volunteered last night","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728031236780033,"in_reply_to_status_id_str":"663728031236780033","in_reply_to_user_id":2804911509,"in_reply_to_user_id_str":"2804911509","in_reply_to_screen_name":"xIrisBestx","user":{"id":2927970956,"id_str":"2927970956","name":"NOT MY BDAY [HIATUS]","screen_name":"iriswestbest","location":null,"url":null,"description":"|| Intersectional feminism. Asian-Pacific Islander. || #IrisWestDefenseSquad #WomenOfColorDefenseSquad || Semi-hiatus ||","protected":false,"verified":false,"followers_count":830,"friends_count":315,"listed_count":12,"favourites_count":45378,"statuses_count":35548,"created_at":"Sat Dec 13 01:46:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661638504267407360\/QooKXupD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661638504267407360\/QooKXupD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2927970956\/1444164660","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xIrisBestx","name":"JJ","id":2804911509,"id_str":"2804911509","indices":[0,11]},{"screen_name":"ELSchaaf","name":"ELSchaaf ","id":1265851332,"id_str":"1265851332","indices":[12,21]},{"screen_name":"TillyKMadison","name":"lightning rod \u26a1\ufe0f","id":3163289517,"id_str":"3163289517","indices":[22,36]},{"screen_name":"TalkNerdyWithUs","name":"Talk Nerdy With Us","id":382841048,"id_str":"382841048","indices":[37,53]},{"screen_name":"beingamna","name":"Amna Shabbir","id":50500020,"id_str":"50500020","indices":[54,64]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269837991936,"id_str":"663728269837991936","text":"RT @ChallengeSoccer: Congrats @laurenwatson27 on being named #Big12SOC tourney Defensive Most Outstanding Player! #challengefamily https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1560857869,"id_str":"1560857869","name":"Altagracia McDonald","screen_name":"titamcd777","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":89,"friends_count":82,"listed_count":3,"favourites_count":4487,"statuses_count":2145,"created_at":"Mon Jul 01 15:46:28 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478178324124950528\/AmrpEoMp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478178324124950528\/AmrpEoMp_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:13:02 +0000 2015","id":663494466053926912,"id_str":"663494466053926912","text":"Congrats @laurenwatson27 on being named #Big12SOC tourney Defensive Most Outstanding Player! #challengefamily https:\/\/t.co\/I8zSHvQzOD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":47625542,"id_str":"47625542","name":"Challenge Soccer","screen_name":"ChallengeSoccer","location":"Houston, TX","url":"http:\/\/www.challengesoccer.com","description":"The official Twitter account of Challenge Soccer Club. The elite girls soccer club in Houston. Member of the ECNL Texas Conference.","protected":false,"verified":false,"followers_count":1761,"friends_count":1874,"listed_count":10,"favourites_count":1051,"statuses_count":3066,"created_at":"Tue Jun 16 13:40:22 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455891130203127808\/TgiLjHqY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455891130203127808\/TgiLjHqY.jpeg","profile_background_tile":true,"profile_link_color":"09090A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B8071F","profile_text_color":"0E39B8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3782464412\/15aacf1738c295af6fd95b14eeeb7ca9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3782464412\/15aacf1738c295af6fd95b14eeeb7ca9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/47625542\/1397527484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":36,"entities":{"hashtags":[{"text":"Big12SOC","indices":[40,49]},{"text":"challengefamily","indices":[93,109]}],"urls":[],"user_mentions":[{"screen_name":"laurenwatson27","name":"Lauren Watson","id":457180299,"id_str":"457180299","indices":[9,24]}],"symbols":[],"media":[{"id":663494450954371072,"id_str":"663494450954371072","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","url":"https:\/\/t.co\/I8zSHvQzOD","display_url":"pic.twitter.com\/I8zSHvQzOD","expanded_url":"http:\/\/twitter.com\/ChallengeSoccer\/status\/663494466053926912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663494450954371072,"id_str":"663494450954371072","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","url":"https:\/\/t.co\/I8zSHvQzOD","display_url":"pic.twitter.com\/I8zSHvQzOD","expanded_url":"http:\/\/twitter.com\/ChallengeSoccer\/status\/663494466053926912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Big12SOC","indices":[61,70]},{"text":"challengefamily","indices":[114,130]}],"urls":[],"user_mentions":[{"screen_name":"ChallengeSoccer","name":"Challenge Soccer","id":47625542,"id_str":"47625542","indices":[3,19]},{"screen_name":"laurenwatson27","name":"Lauren Watson","id":457180299,"id_str":"457180299","indices":[30,45]}],"symbols":[],"media":[{"id":663494450954371072,"id_str":"663494450954371072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","url":"https:\/\/t.co\/I8zSHvQzOD","display_url":"pic.twitter.com\/I8zSHvQzOD","expanded_url":"http:\/\/twitter.com\/ChallengeSoccer\/status\/663494466053926912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663494466053926912,"source_status_id_str":"663494466053926912","source_user_id":47625542,"source_user_id_str":"47625542"}]},"extended_entities":{"media":[{"id":663494450954371072,"id_str":"663494450954371072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU0sBOUAAAHMlN.jpg","url":"https:\/\/t.co\/I8zSHvQzOD","display_url":"pic.twitter.com\/I8zSHvQzOD","expanded_url":"http:\/\/twitter.com\/ChallengeSoccer\/status\/663494466053926912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663494466053926912,"source_status_id_str":"663494466053926912","source_user_id":47625542,"source_user_id_str":"47625542"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125661"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854941184,"id_str":"663728269854941184","text":"@azableh No soy vegetariana pero que art\u00edculo tan poco sustentado. Adem\u00e1s, el chocolate s\u00ed alimenta, lo que hace da\u00f1o es el az\u00facar le ponen.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722959455035392,"in_reply_to_status_id_str":"663722959455035392","in_reply_to_user_id":108409736,"in_reply_to_user_id_str":"108409736","in_reply_to_screen_name":"azableh","user":{"id":499051680,"id_str":"499051680","name":"Helado de Vainilla","screen_name":"Lengua_Magica","location":"Medell\u00edn\/Pereira miamor.","url":"http:\/\/lenguamagica.wordpress.com","description":"Bien pueda siga, hay helado de vainilla.","protected":false,"verified":false,"followers_count":1004,"friends_count":379,"listed_count":7,"favourites_count":14257,"statuses_count":11788,"created_at":"Tue Feb 21 18:31:47 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522960864\/Caroloca.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522960864\/Caroloca.jpg","profile_background_tile":true,"profile_link_color":"20E026","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644605306262167556\/OsnzI_ql_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644605306262167556\/OsnzI_ql_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/499051680\/1442520854","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"azableh","name":"Adolfo Zableh","id":108409736,"id_str":"108409736","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269842366464,"id_str":"663728269842366464","text":"@JackJackJohnson I'm going to see you 2016 \u2764\ufe0f\u2764\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":163730859,"in_reply_to_user_id_str":"163730859","in_reply_to_screen_name":"JackJackJohnson","user":{"id":454158393,"id_str":"454158393","name":"Filipa","screen_name":"WhitesidesBlack","location":"Around the world","url":null,"description":"Life is a Bitch,so learn to fuck it|| met Jacob Whitesides once ||","protected":false,"verified":false,"followers_count":133,"friends_count":125,"listed_count":1,"favourites_count":606,"statuses_count":630,"created_at":"Tue Jan 03 17:52:28 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000097118069\/15f413d3981a7a16a7e38b8c06648dd2.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000097118069\/15f413d3981a7a16a7e38b8c06648dd2.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660183086383124481\/Et5_U7eJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660183086383124481\/Et5_U7eJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/454158393\/1401369316","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125662"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854806016,"id_str":"663728269854806016","text":"RT @tdhope: https:\/\/t.co\/dP2WIpwmhQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453975394,"id_str":"2453975394","name":"Vanessa T. Newkirk","screen_name":"seqykicuryq","location":"Los Angeles","url":"http:\/\/casyope.com","description":"Today I kissed a girl AND diddled her skittle","protected":false,"verified":false,"followers_count":5090,"friends_count":5523,"listed_count":42,"favourites_count":15,"statuses_count":16334,"created_at":"Sun Apr 20 02:21:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"945232","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/552633954918875137\/GNWpe0T3_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/552633954918875137\/GNWpe0T3_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:01:15 +0000 2015","id":663702893988458496,"id_str":"663702893988458496","text":"https:\/\/t.co\/dP2WIpwmhQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":32915744,"id_str":"32915744","name":"Hope T.","screen_name":"tdhope","location":null,"url":null,"description":"wakeup \/ dress \/ univ \/ shopping \/ eat \/ party \/ sleep dead \/ repeat in cycle","protected":false,"verified":false,"followers_count":14598,"friends_count":9891,"listed_count":33,"favourites_count":0,"statuses_count":49668,"created_at":"Sat Apr 18 15:34:38 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/533304881679831041\/0zOyv1NN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/533304881679831041\/0zOyv1NN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/32915744\/1415984884","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663702893875171328,"id_str":"663702893875171328","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","url":"https:\/\/t.co\/dP2WIpwmhQ","display_url":"pic.twitter.com\/dP2WIpwmhQ","expanded_url":"http:\/\/twitter.com\/tdhope\/status\/663702893988458496\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":712,"resize":"fit"},"small":{"w":340,"h":484,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":712,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663702893875171328,"id_str":"663702893875171328","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","url":"https:\/\/t.co\/dP2WIpwmhQ","display_url":"pic.twitter.com\/dP2WIpwmhQ","expanded_url":"http:\/\/twitter.com\/tdhope\/status\/663702893988458496\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":712,"resize":"fit"},"small":{"w":340,"h":484,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":712,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tdhope","name":"Hope T.","id":32915744,"id_str":"32915744","indices":[3,10]}],"symbols":[],"media":[{"id":663702893875171328,"id_str":"663702893875171328","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","url":"https:\/\/t.co\/dP2WIpwmhQ","display_url":"pic.twitter.com\/dP2WIpwmhQ","expanded_url":"http:\/\/twitter.com\/tdhope\/status\/663702893988458496\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":712,"resize":"fit"},"small":{"w":340,"h":484,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":712,"resize":"fit"}},"source_status_id":663702893988458496,"source_status_id_str":"663702893988458496","source_user_id":32915744,"source_user_id_str":"32915744"}]},"extended_entities":{"media":[{"id":663702893875171328,"id_str":"663702893875171328","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyQ_nUEAAfGRu.jpg","url":"https:\/\/t.co\/dP2WIpwmhQ","display_url":"pic.twitter.com\/dP2WIpwmhQ","expanded_url":"http:\/\/twitter.com\/tdhope\/status\/663702893988458496\/photo\/1","type":"photo","sizes":{"large":{"w":500,"h":712,"resize":"fit"},"small":{"w":340,"h":484,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":500,"h":712,"resize":"fit"}},"source_status_id":663702893988458496,"source_status_id_str":"663702893988458496","source_user_id":32915744,"source_user_id_str":"32915744"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269846384642,"id_str":"663728269846384642","text":"umuulan ng pics mo @lizasoberano sa timeline ko hahaha\nLiza TheMostBeautiful","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2921344386,"id_str":"2921344386","name":"Owdrey","screen_name":"mycheckLIZ","location":"Disney Paris","url":"https:\/\/twitter.com","description":"Remember that wherever your heart is,there you will find your treasure\u2728 Team H&E","protected":false,"verified":false,"followers_count":826,"friends_count":536,"listed_count":9,"favourites_count":4187,"statuses_count":10706,"created_at":"Sun Dec 07 07:20:07 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/624131098713296896\/uNbWq7ka.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/624131098713296896\/uNbWq7ka.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662929908901937152\/VbRNLC_O_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662929908901937152\/VbRNLC_O_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2921344386\/1446976284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"53df18e21825a89c","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/53df18e21825a89c.json","place_type":"admin","name":"National Capital Region","full_name":"National Capital Region, Republic of the Philippines","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[120.898652,14.347731],[120.898652,14.787321],[121.135766,14.787321],[121.135766,14.347731]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lizasoberano","name":"Hope Elizabeth","id":284291853,"id_str":"284291853","indices":[19,32]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080125663"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821276160,"id_str":"663728269821276160","text":"@TunaPino \u306a\u3093\u3084\uff1f\u7b11\n\u30db\u30e9\u30fc\u306a\u3089\u898b\u308c\u308b\u3093\u3084\u3051\u3069\u305d\u308c\u30b0\u30ed\u3044\u306e\u306f\u306a\u30fc\u3001","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663718952225214464,"in_reply_to_status_id_str":"663718952225214464","in_reply_to_user_id":1619493408,"in_reply_to_user_id_str":"1619493408","in_reply_to_screen_name":"TunaPino","user":{"id":2950598330,"id_str":"2950598330","name":"\u6817\u539f\u5927\u8f14","screen_name":"daisuke5991gma3","location":null,"url":null,"description":"\u9577\u5d0e\u770c\u7acb\u5927\u5b66 \u30d0\u30ec\u30b5 \u8edf\u5f0f\u91ce\u7403\u90e8 clovers","protected":false,"verified":false,"followers_count":268,"friends_count":262,"listed_count":0,"favourites_count":155,"statuses_count":2302,"created_at":"Mon Dec 29 16:36:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660089282346946560\/Iwt7Z47K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660089282346946560\/Iwt7Z47K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2950598330\/1431451650","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TunaPino","name":"\u3086\u304d","id":1619493408,"id_str":"1619493408","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833973760,"id_str":"663728269833973760","text":"Trece #FansAwards2015 #ElBombon Sergio Celli","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2907895282,"id_str":"2907895282","name":"Celes","screen_name":"celliedxgonza","location":"Con Nachito en la Bombonera","url":"http:\/\/FloreleYNadaMas.com","description":"en tu barrio Ceianca marca estilo. | Valuele manda \u270c |","protected":false,"verified":false,"followers_count":2144,"friends_count":1250,"listed_count":0,"favourites_count":6462,"statuses_count":21045,"created_at":"Sat Dec 06 15:24:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663385133983113216\/hFoLc-Hc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663385133983113216\/hFoLc-Hc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2907895282\/1446759190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[7,22]},{"text":"ElBombon","indices":[23,32]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833977856,"id_str":"663728269833977856","text":"https:\/\/t.co\/aHauXf2nV7 #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512561777,"id_str":"3512561777","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 24","screen_name":"24Marmousa24","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4564,"created_at":"Tue Sep 01 12:42:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/aHauXf2nV7","display_url":"pic.twitter.com\/aHauXf2nV7","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/aHauXf2nV7","display_url":"pic.twitter.com\/aHauXf2nV7","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829799937,"id_str":"663728269829799937","text":"https:\/\/t.co\/pqrszCC9iL #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512810596,"id_str":"3512810596","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 31","screen_name":"31Marmousa31","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":4290,"created_at":"Tue Sep 01 13:08:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/pqrszCC9iL","display_url":"pic.twitter.com\/pqrszCC9iL","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/pqrszCC9iL","display_url":"pic.twitter.com\/pqrszCC9iL","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833859072,"id_str":"663728269833859072","text":"@Milenio el de pumas ya se vio que no tiene nivel de selecci\u00f3n.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727513592422400,"in_reply_to_status_id_str":"663727513592422400","in_reply_to_user_id":24969337,"in_reply_to_user_id_str":"24969337","in_reply_to_screen_name":"Milenio","user":{"id":3662792058,"id_str":"3662792058","name":"Erian Salgado","screen_name":"ErianSalgado","location":"Unidad Nonoalco Tlatelolco, Cuauht\u00e9moc","url":null,"description":null,"protected":false,"verified":false,"followers_count":6,"friends_count":56,"listed_count":0,"favourites_count":0,"statuses_count":94,"created_at":"Wed Sep 23 20:24:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646784584286244864\/vPII2Htq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646784584286244864\/vPII2Htq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3662792058\/1443041246","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Milenio","name":"Milenio.com","id":24969337,"id_str":"24969337","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821419520,"id_str":"663728269821419520","text":"\ud83d\udc4c https:\/\/t.co\/ksWsHXUmf8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322650002,"id_str":"322650002","name":"Lari","screen_name":"lari_matiauda","location":"Asuncion, Paraguay","url":null,"description":"Amor Eterno \u2661","protected":false,"verified":false,"followers_count":208,"friends_count":259,"listed_count":3,"favourites_count":214,"statuses_count":15990,"created_at":"Thu Jun 23 14:37:45 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/672730360\/3a5981d95b511c42d84b428c9b5aa2c0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/672730360\/3a5981d95b511c42d84b428c9b5aa2c0.jpeg","profile_background_tile":false,"profile_link_color":"A11791","profile_sidebar_border_color":"16A29A","profile_sidebar_fill_color":"EE9CF1","profile_text_color":"222222","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661136274829479937\/E4TXii1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661136274829479937\/E4TXii1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322650002\/1446916898","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":662705770207645696,"quoted_status_id_str":"662705770207645696","quoted_status":{"created_at":"Fri Nov 06 18:59:02 +0000 2015","id":662705770207645696,"id_str":"662705770207645696","text":"Es mejor ser optimista que a veces se equivoca que un pesimista que siempre tiene la raz\u00f3n.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":125492611,"id_str":"125492611","name":"Mi Abuela Sabia","screen_name":"miabuelasabia","location":"Cuenca, Ecuador","url":"http:\/\/facebook.com\/abuelasabia","description":"Trabajar por una causa, no por el aplauso. Vivir la vida para expresar, no para impresionar.\r\nmiabuesabia@gmail.com \/ Cuenca, Ecuador","protected":false,"verified":false,"followers_count":2398747,"friends_count":6522,"listed_count":9951,"favourites_count":37,"statuses_count":34733,"created_at":"Tue Mar 23 00:16:42 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/184633738\/cuenca-ecuador.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/184633738\/cuenca-ecuador.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2368335794\/se7s76ty21h2vgenpsku_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2368335794\/se7s76ty21h2vgenpsku_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/125492611\/1420239614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ksWsHXUmf8","expanded_url":"https:\/\/twitter.com\/miabuelasabia\/status\/662705770207645696","display_url":"twitter.com\/miabuelasabia\/\u2026","indices":[2,25]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269846540288,"id_str":"663728269846540288","text":"@Celestalon Was involved in WoD beta and gave lots of feedback on the class changes and bugs. Hoping Ill be flagged again for input on Demo","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":1027705099,"in_reply_to_user_id_str":"1027705099","in_reply_to_screen_name":"Celestalon","user":{"id":2548446992,"id_str":"2548446992","name":"Soulzar-Medivh","screen_name":"Soulzar_Medivh","location":"Medivh, Ontario, Canada","url":"http:\/\/us.battle.net\/wow\/en\/character\/medivh\/Soulzar\/advanced","description":"Born and raised on Medivh. Member of Halo\r\nWarlock","protected":false,"verified":false,"followers_count":15,"friends_count":48,"listed_count":0,"favourites_count":100,"statuses_count":362,"created_at":"Thu Jun 05 17:03:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/474600118700617729\/TCSJ0LcU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/474600118700617729\/TCSJ0LcU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2548446992\/1402079917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Celestalon","name":"Celestalon","id":1027705099,"id_str":"1027705099","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125663"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821349888,"id_str":"663728269821349888","text":"Stevensbloem in Leiden smerigste winkelgebied van Nederland https:\/\/t.co\/9inm0PLDMR #denhaag","source":"\u003ca href=\"http:\/\/www.emmettmachine.com\" rel=\"nofollow\"\u003eEmmett Machine\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358178646,"id_str":"358178646","name":"Nieuws in Den Haag","screen_name":"nieuwsindenhaag","location":"Den Haag","url":"http:\/\/www.hetnieuws.in\/denhaag","description":"Het nieuws in de omgeving Den Haag.","protected":false,"verified":false,"followers_count":2073,"friends_count":2145,"listed_count":37,"favourites_count":0,"statuses_count":181057,"created_at":"Fri Aug 19 14:18:01 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618775441785012224\/5vRsb4Pj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618775441785012224\/5vRsb4Pj_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"denhaag","indices":[84,92]}],"urls":[{"url":"https:\/\/t.co\/9inm0PLDMR","expanded_url":"http:\/\/www.hetnieuws.in\/nieuws\/3423575\/den-haag\/haaglanden\/leiden\/nederland","display_url":"hetnieuws.in\/nieuws\/3423575\u2026","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854818305,"id_str":"663728269854818305","text":"@manaAKAGI \u30de\u30ca\u3055\u3093\u4eca\u6669\u308f\u3001\u5148\u65e5\u306e\u7a7a\u6bcd\u4f75\u305b\u304a\u75b2\u308c\u3055\u307e\u3067\u3057\u305f\uff01\u745e\u9db4\u3084\u3063\u3066\u3044\u305f\u3081\u308d\u3053\u3067\u3059\u3002\u4f53\u8abf\u304c\u512a\u308c\u306a\u3044\u3088\u3046\u3060\u3063\u305f\u306e\u3067\u7121\u7406\u306f\u3067\u304d\u306a\u3044\u306a\u3068\u601d\u3044\u81ea\u7c9b\u3057\u307e\u3057\u305f\u304c\u3001\u3068\u3066\u3082\u7d20\u6575\u306a\u52a0\u8cc0\u3055\u3093\u3068\u745e\u52a0\u8cc0\u3067\u304d\u306a\u304b\u3063\u305f\u306e\u304c\u5fc3\u6b8b\u308a\u3067\u3057\u305f\u3002\u4eca\u56de\u306f\u304a\u75b2\u308c\u3055\u307e\u3067\u3057\u305f(*\u00b4-`)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2540609899,"in_reply_to_user_id_str":"2540609899","in_reply_to_screen_name":"manaAKAGI","user":{"id":3035911812,"id_str":"3035911812","name":"\u3081\u308d\u3053*\u7a7a\u6bcd\u4f75\u305b\u745e\u9db4\u6539","screen_name":"melolomimi","location":null,"url":null,"description":"\u745e\u9db4\u5ac1\u306e\u8266\u3053\u308c\u63d0\u7763\u3060\u3088\u3002\u7a7a\u6bcd\u30b9\u30ad\u30fc\u2661\u305d\u306e\u4ed6SAO\u30b7\u30e5\u30bf\u30b2\u3082\u597d\u304d\u306a\u3001\u30b3\u30b9\u3057\u305f\u308a\u305f\u307e\u306b\u7d75\u63cf\u3044\u305f\u308a\u3059\u308b\u5e73\u5747\u7684\u306a\u30aa\u30bf\u30af\u3002\u75b2\u308c\u3066\u308b\u3068\u6d88\u3048\u305f\u308a\u3057\u307e\u3059\u3002\u9053\u7523\u5b50\u3060\u3051\u3069\u4eca\u306f\u3046\u3069\u3093\u770c\u306b\u3044\u308b\u3088(*\u00b4-`)","protected":false,"verified":false,"followers_count":115,"friends_count":89,"listed_count":4,"favourites_count":1507,"statuses_count":2443,"created_at":"Sun Feb 22 07:53:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658158582844686336\/yhle5uhF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658158582844686336\/yhle5uhF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3035911812\/1444914078","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"manaAKAGI","name":"\u30de\u30ca","id":2540609899,"id_str":"2540609899","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269838061568,"id_str":"663728269838061568","text":"\u3053\u3046\u3044\u3046\u306e\u3067\u304d\u308b\u304b\u3089\u5973\u306f\u30ba\u30eb\u3044\u3088\u306d\u301c\nhttps:\/\/t.co\/tGMx0TDg6z takuya","source":"\u003ca href=\"https:\/\/apps.twitter.com\/app\/\" rel=\"nofollow\"\u003e\u30c4\u30a4\u30c3\u30bf\u30fc\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u30ba\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2365323217,"id_str":"2365323217","name":"\u3042\u3084\u3061\u3087\u3093\u305f\u308d\u3046\uff08\u3042\u3084\u304b\uff09","screen_name":"takuya_only0801","location":"\u30b9\u30c6\u30fc\u30b8\u304b\u3089\u898b\u3066\u3066\u3082\u53ef\u611b\u304b\u3063\u305f\u3067","url":null,"description":"\u305f\u3063\u304f\u3093\u3060\u3051\u304c\u597d\u304d","protected":false,"verified":false,"followers_count":1,"friends_count":2,"listed_count":0,"favourites_count":439,"statuses_count":3507,"created_at":"Fri Feb 28 08:56:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663319324229144576\/GWxNv2ZT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663319324229144576\/GWxNv2ZT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365323217\/1439193215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663050135748804608,"quoted_status_id_str":"663050135748804608","quoted_status":{"created_at":"Sat Nov 07 17:47:25 +0000 2015","id":663050135748804608,"id_str":"663050135748804608","text":"\u5973\u53cb\u9054\u304c\u307f\u3093\u306a\u3084\u3063\u3066\u308b\u304b\u3089\u304a\u5c0f\u9063\u3044\u30b5\u30a4\u30c8\u305f\u3081\u3057\u3066\u307f\u305f\u3089\n\u4eca\u670815\u4e07\u7a3c\u3052\u307e\u3057\u305f(^O^) \n\u304b\u306a\u308a\u6d41\u884c\u3063\u3066\u308b\uff01 \u2192https:\/\/t.co\/c9SZCStsT4\n\n\u30b9\u30de\u30db\u304c\u3042\u308c\u3070\u304b\u306a\u308a\u6709\u5229(^^)v https:\/\/t.co\/trnJA2BZgu","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2396631629,"id_str":"2396631629","name":"YuKo","screen_name":"kygyposerg","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":145,"listed_count":0,"favourites_count":0,"statuses_count":13,"created_at":"Sun Mar 09 12:16:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663042920728014849\/SjK23vsE_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663042920728014849\/SjK23vsE_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/c9SZCStsT4","expanded_url":"http:\/\/ycx18.click\/dxgxv1\/c18e\/","display_url":"ycx18.click\/dxgxv1\/c18e\/","indices":[56,79]}],"user_mentions":[],"symbols":[],"media":[{"id":663050126177542145,"id_str":"663050126177542145","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","url":"https:\/\/t.co\/trnJA2BZgu","display_url":"pic.twitter.com\/trnJA2BZgu","expanded_url":"http:\/\/twitter.com\/kygyposerg\/status\/663050135748804608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":303,"h":612,"resize":"fit"},"medium":{"w":303,"h":612,"resize":"fit"},"small":{"w":303,"h":612,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663050126177542145,"id_str":"663050126177542145","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTOgk6cXIAE_t_f.png","url":"https:\/\/t.co\/trnJA2BZgu","display_url":"pic.twitter.com\/trnJA2BZgu","expanded_url":"http:\/\/twitter.com\/kygyposerg\/status\/663050135748804608\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":303,"h":612,"resize":"fit"},"medium":{"w":303,"h":612,"resize":"fit"},"small":{"w":303,"h":612,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/tGMx0TDg6z","expanded_url":"https:\/\/twitter.com\/kygyposerg\/status\/663050135748804608","display_url":"twitter.com\/kygyposerg\/sta\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125661"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833822208,"id_str":"663728269833822208","text":"Even if you are feeling unmotivated, you start to emerge from ... More for Libra https:\/\/t.co\/r8VqqogKnn","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":576894990,"id_str":"576894990","name":"Richard J. Boardman","screen_name":"RichardJBoardma","location":"Boulder City,NV","url":null,"description":null,"protected":false,"verified":false,"followers_count":88,"friends_count":308,"listed_count":0,"favourites_count":597,"statuses_count":1328,"created_at":"Fri May 11 03:49:07 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2919992942\/f1ed32066e2d06cfde5eaf2944d8c031_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2919992942\/f1ed32066e2d06cfde5eaf2944d8c031_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/576894990\/1399243981","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/r8VqqogKnn","expanded_url":"http:\/\/bit.ly\/wvRgyF","display_url":"bit.ly\/wvRgyF","indices":[81,104]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833949184,"id_str":"663728269833949184","text":"Instala\u00e7\u00e3o de reguladores de fluxo luminoso para a rede de ilumina\u00e7\u00e3o p\u00fablica 33991\u20ac #VilaReal https:\/\/t.co\/6Spz1u2XiY","source":"\u003ca href=\"https:\/\/twitter.com\/AjustesDireitos\" rel=\"nofollow\"\u003eAjustes a Direito\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804878414,"id_str":"2804878414","name":"Ajustes a Direito","screen_name":"AjustesDireitos","location":"Portugal","url":null,"description":"Registo de ajustes directos do estado portugu\u00eas - Fonte: http:\/\/www.base.gov.pt","protected":false,"verified":false,"followers_count":15,"friends_count":0,"listed_count":3,"favourites_count":0,"statuses_count":9507,"created_at":"Sat Oct 04 12:57:58 +0000 2014","utc_offset":0,"time_zone":"Lisbon","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"006600","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/519203639252897792\/nJCcnGYa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/519203639252897792\/nJCcnGYa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804878414\/1412622864","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"VilaReal","indices":[85,94]}],"urls":[{"url":"https:\/\/t.co\/6Spz1u2XiY","expanded_url":"http:\/\/on.fb.me\/1NEzTbV","display_url":"on.fb.me\/1NEzTbV","indices":[95,118]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269825613825,"id_str":"663728269825613825","text":"\"A breve in studio una coppia di Temptation Island che far\u00e0 un importante annuncio.\"\nCio\u00e8 a capodanno 2060. #uominiedonne","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1497550652,"id_str":"1497550652","name":"Alessandro Moccya","screen_name":"MocciaX","location":"Velletri, Lazio","url":"http:\/\/w.tt\/1iM4h7o","description":"Ho capito che non volete arrivare vergini al matrimonio ma almeno alla comunione...\n\nLuna Park da paura is my Book. Disponibile su Wattpad. \u263a","protected":false,"verified":false,"followers_count":1100,"friends_count":958,"listed_count":3,"favourites_count":4554,"statuses_count":3521,"created_at":"Mon Jun 10 06:46:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640928636351193088\/5w2voc4y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640928636351193088\/5w2voc4y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1497550652\/1441644268","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"uominiedonne","indices":[108,121]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080125658"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829799936,"id_str":"663728269829799936","text":"#lovemyoutfit #saranaqvidesigns #justperfect #mua #aiza #outdoor #premratandhanpayo #weddingdress https:\/\/t.co\/tAFsSfeuDW","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":726859880,"id_str":"726859880","name":"aqsa ali","screen_name":"aqsaali9","location":"Lahore\/Pakistan","url":null,"description":null,"protected":false,"verified":false,"followers_count":50,"friends_count":70,"listed_count":0,"favourites_count":0,"statuses_count":27,"created_at":"Mon Jul 30 21:10:44 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658724596665982976\/6ZwY9B97_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658724596665982976\/6ZwY9B97_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/726859880\/1445883143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lovemyoutfit","indices":[0,13]},{"text":"saranaqvidesigns","indices":[14,31]},{"text":"justperfect","indices":[32,44]},{"text":"mua","indices":[45,49]},{"text":"aiza","indices":[50,55]},{"text":"outdoor","indices":[56,64]},{"text":"premratandhanpayo","indices":[65,83]},{"text":"weddingdress","indices":[84,97]}],"urls":[{"url":"https:\/\/t.co\/tAFsSfeuDW","expanded_url":"https:\/\/instagram.com\/p\/93iiTOtvo2\/","display_url":"instagram.com\/p\/93iiTOtvo2\/","indices":[98,121]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125659"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829754881,"id_str":"663728269829754881","text":"https:\/\/t.co\/cMITvIW5cL #\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3512987183,"id_str":"3512987183","name":"\u0639\u0642\u0627\u0631\u0627\u062a \u0645\u0635\u0631\u064a\u0647 38","screen_name":"38Marmousa38","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":3994,"created_at":"Tue Sep 01 13:39:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0627\u0646\u062a\u062e\u0627\u0628\u0627\u062a","indices":[24,35]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/cMITvIW5cL","display_url":"pic.twitter.com\/cMITvIW5cL","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"extended_entities":{"media":[{"id":662929214094602240,"id_str":"662929214094602240","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTMym51WcAAIMl9.jpg","url":"https:\/\/t.co\/cMITvIW5cL","display_url":"pic.twitter.com\/cMITvIW5cL","expanded_url":"https:\/\/twitter.com\/1marmousa1\/status\/662929222793478144\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":720,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662929222793478144,"source_status_id_str":"662929222793478144","source_user_id":3502772895,"source_user_id_str":"3502772895"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125659"} +{"delete":{"status":{"id":419946777568362496,"id_str":"419946777568362496","user_id":1070142828,"user_id_str":"1070142828"},"timestamp_ms":"1447080125911"}} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269829672960,"id_str":"663728269829672960","text":"Khloe Kardashian Shares Her Diet Secrets, Says She Was 'A Mindless Eater. I\u00a0\u2026 https:\/\/t.co\/4dYW7AKr8F https:\/\/t.co\/SYXUkKb6Y2","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3743572219,"id_str":"3743572219","name":"Helen J. Gaither","screen_name":"helen_jaanb","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":74,"friends_count":445,"listed_count":8,"favourites_count":115,"statuses_count":8098,"created_at":"Thu Oct 01 03:09:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"vi","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649420823195860996\/Aqkyxzzt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649420823195860996\/Aqkyxzzt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/4dYW7AKr8F","expanded_url":"http:\/\/cookingblog.xyz\/index.php\/2015\/11\/09\/khloe-kardashian-shares-her-diet-secrets-says-she-was-a-mindless-eater-i\/","display_url":"cookingblog.xyz\/index.php\/2015\u2026","indices":[78,101]}],"user_mentions":[],"symbols":[],"media":[{"id":663728268621672449,"id_str":"663728268621672449","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV_6UcAEqrDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV_6UcAEqrDO.jpg","url":"https:\/\/t.co\/SYXUkKb6Y2","display_url":"pic.twitter.com\/SYXUkKb6Y2","expanded_url":"http:\/\/twitter.com\/helen_jaanb\/status\/663728269829672960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":375,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":375,"h":500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728268621672449,"id_str":"663728268621672449","indices":[102,125],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV_6UcAEqrDO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV_6UcAEqrDO.jpg","url":"https:\/\/t.co\/SYXUkKb6Y2","display_url":"pic.twitter.com\/SYXUkKb6Y2","expanded_url":"http:\/\/twitter.com\/helen_jaanb\/status\/663728269829672960\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":375,"h":500,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":375,"h":500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125659"} +{"delete":{"status":{"id":419946798518906880,"id_str":"419946798518906880","user_id":1070142828,"user_id_str":"1070142828"},"timestamp_ms":"1447080125929"}} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269838041088,"id_str":"663728269838041088","text":"\u0e42\u0e2d\u0e49\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27\u0e27 https:\/\/t.co\/FwF5HhqCyz","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":79401715,"id_str":"79401715","name":"ChansudaWAR","screen_name":"Chan_WarAP","location":"Bangkok, Thailand","url":null,"description":"( \u0e22\u0e34\u0e49\u0e21\u0e01\u0e27\u0e49\u0e32\u0e07\u0e46\u0e0b\u0e30) on twitter since 3 Oct 2009 \u0e40\u0e1b\u0e47\u0e19 E.L.F ( SJ\u0e04\u0e37\u0e2d\u0e17\u0e35\u0e48\u0e2a\u0e38\u0e14\u0e41\u0e25\u0e49\u0e27 \u0e23\u0e2d\u0e07\u0e25\u0e07\u0e21\u0e32 GOT7 \u0e25\u0e07\u0e21\u0e32\u0e2d\u0e35\u0e01\u0e01\u0e47 iKON ) \u0e1b\u0e35\u0e19\u0e35\u0e49\u0e15\u0e34\u0e48\u0e07\u0e2b\u0e19\u0e31\u0e01\u0e21\u0e32\u0e01 \u0e1b\u0e35\u0e2b\u0e19\u0e49\u0e32 Goodbye Stage #KibumAllForYou","protected":false,"verified":false,"followers_count":216,"friends_count":277,"listed_count":1,"favourites_count":1507,"statuses_count":22029,"created_at":"Sat Oct 03 07:27:32 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"080007","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000095189081\/a87757fba5b9bd30ec40fcd8b1f3376d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000095189081\/a87757fba5b9bd30ec40fcd8b1f3376d.jpeg","profile_background_tile":true,"profile_link_color":"112EED","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F4FCF5","profile_text_color":"0E83D2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635845224632201218\/AJTAVvan_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635845224632201218\/AJTAVvan_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/79401715\/1440431633","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728229820162048,"id_str":"663728229820162048","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTvXUYAARLio.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTvXUYAARLio.jpg","url":"https:\/\/t.co\/FwF5HhqCyz","display_url":"pic.twitter.com\/FwF5HhqCyz","expanded_url":"http:\/\/twitter.com\/Chan_WarAP\/status\/663728269838041088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728229820162048,"id_str":"663728229820162048","indices":[19,42],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJTvXUYAARLio.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJTvXUYAARLio.jpg","url":"https:\/\/t.co\/FwF5HhqCyz","display_url":"pic.twitter.com\/FwF5HhqCyz","expanded_url":"http:\/\/twitter.com\/Chan_WarAP\/status\/663728269838041088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080125661"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269821349889,"id_str":"663728269821349889","text":"Nog altijd file op A10 door spoedreparaties https:\/\/t.co\/YPYFKkrvwk #amsterdam","source":"\u003ca href=\"http:\/\/www.emmettmachine.com\" rel=\"nofollow\"\u003eEmmett Machine\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358059451,"id_str":"358059451","name":"Nieuws in Amsterdam","screen_name":"nieuws_020","location":"Amsterdam","url":"http:\/\/www.hetnieuws.in\/amsterdam","description":"Het nieuws in de omgeving Amsterdam.","protected":false,"verified":false,"followers_count":1720,"friends_count":1968,"listed_count":53,"favourites_count":0,"statuses_count":189909,"created_at":"Fri Aug 19 09:26:13 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609112760010444801\/E5BI-w0M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609112760010444801\/E5BI-w0M_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"amsterdam","indices":[68,78]}],"urls":[{"url":"https:\/\/t.co\/YPYFKkrvwk","expanded_url":"http:\/\/www.hetnieuws.in\/nieuws\/3423584\/amsterdam","display_url":"hetnieuws.in\/nieuws\/3423584\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"nl","timestamp_ms":"1447080125657"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269854908416,"id_str":"663728269854908416","text":"@tehFurst @SuperSamicom @Strekks Lee, please, for your own sake... https:\/\/t.co\/GKe55uUmPc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663722077107699712,"in_reply_to_status_id_str":"663722077107699712","in_reply_to_user_id":81284549,"in_reply_to_user_id_str":"81284549","in_reply_to_screen_name":"tehFurst","user":{"id":1309224612,"id_str":"1309224612","name":"Adamnator McVay","screen_name":"AdamnatorMcVay","location":"Ohio","url":"http:\/\/www.adamnator.com","description":"I'm a guy who produces media, edits video and audio, and voice acts. I make videos and stuff. They're pretty neat.","protected":false,"verified":false,"followers_count":311,"friends_count":664,"listed_count":2,"favourites_count":4864,"statuses_count":3831,"created_at":"Thu Mar 28 02:55:28 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/650557089274818560\/vle6vT-n.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/650557089274818560\/vle6vT-n.png","profile_background_tile":false,"profile_link_color":"007BFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938527605665792\/Z5dn_VNH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938527605665792\/Z5dn_VNH_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1309224612\/1440294136","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tehFurst","name":"Lee","id":81284549,"id_str":"81284549","indices":[0,9]},{"screen_name":"SuperSamicom","name":"SuperSamicom","id":1363329036,"id_str":"1363329036","indices":[10,23]},{"screen_name":"Strekks","name":"Strekks","id":386074366,"id_str":"386074366","indices":[24,32]}],"symbols":[],"media":[{"id":663728269473222656,"id_str":"663728269473222656","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWDFWEAASQE0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWDFWEAASQE0.jpg","url":"https:\/\/t.co\/GKe55uUmPc","display_url":"pic.twitter.com\/GKe55uUmPc","expanded_url":"http:\/\/twitter.com\/AdamnatorMcVay\/status\/663728269854908416\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":364,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":480,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728269473222656,"id_str":"663728269473222656","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWDFWEAASQE0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWDFWEAASQE0.jpg","url":"https:\/\/t.co\/GKe55uUmPc","display_url":"pic.twitter.com\/GKe55uUmPc","expanded_url":"http:\/\/twitter.com\/AdamnatorMcVay\/status\/663728269854908416\/photo\/1","type":"photo","sizes":{"large":{"w":480,"h":364,"resize":"fit"},"small":{"w":340,"h":257,"resize":"fit"},"medium":{"w":480,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125665"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859123201,"id_str":"663728269859123201","text":"Do you love learning games? Enter to win a Teach My Deluxe Learning Kit & Bathtime Kit here! https:\/\/t.co\/A4ALalSvWd https:\/\/t.co\/lXQAtqdt7D","source":"\u003ca href=\"http:\/\/sendible.com\" rel=\"nofollow\"\u003eSendible\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":546825941,"id_str":"546825941","name":"Budget Earth","screen_name":"BudgetEarth","location":null,"url":"http:\/\/www.budgetearth.com","description":"Living a Healthier Earth Friendly Lifestyle on a Budget! Visit us for recipes, green reviews, & tips!","protected":false,"verified":false,"followers_count":27963,"friends_count":2125,"listed_count":84,"favourites_count":589,"statuses_count":32664,"created_at":"Fri Apr 06 13:54:46 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502192735458045953\/3-eEBvWp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502192735458045953\/3-eEBvWp.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2054263251\/Budget_Earth_SM_logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2054263251\/Budget_Earth_SM_logo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/546825941\/1408566884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/A4ALalSvWd","expanded_url":"http:\/\/bit.ly\/1NrQ0JG","display_url":"bit.ly\/1NrQ0JG","indices":[97,120]}],"user_mentions":[],"symbols":[],"media":[{"id":663728268814581760,"id_str":"663728268814581760","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWAoUAAABnBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWAoUAAABnBn.jpg","url":"https:\/\/t.co\/lXQAtqdt7D","display_url":"pic.twitter.com\/lXQAtqdt7D","expanded_url":"http:\/\/twitter.com\/BudgetEarth\/status\/663728269859123201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728268814581760,"id_str":"663728268814581760","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWAoUAAABnBn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWAoUAAABnBn.jpg","url":"https:\/\/t.co\/lXQAtqdt7D","display_url":"pic.twitter.com\/lXQAtqdt7D","expanded_url":"http:\/\/twitter.com\/BudgetEarth\/status\/663728269859123201\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":714,"h":714,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080125666"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269833863168,"id_str":"663728269833863168","text":"\u3010\u753b\u50cf\u3011B\u30ab\u30c3\u30d7\u8ca7\u4e73\u304a\u59c9\u3055\u3093\u3060\u3051\u3069\u7ae5\u8c9e\u30af\u30f3\u3068\u30a8\u30c3\u30c1\u3057\u305f\u3044\uff57\uff57\uff57 https:\/\/t.co\/vUpivZBUi6 https:\/\/t.co\/A9C4CRbyf1","source":"\u003ca href=\"http:\/\/anteka.info\/\" rel=\"nofollow\"\u003eanteka_news_bot\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2160524982,"id_str":"2160524982","name":"\u3042\u3093\u3066\u304b news","screen_name":"antekanews","location":null,"url":"http:\/\/anteka.info\/","description":"\u8a71\u984c\u306e\u65b0\u7740\u60c5\u5831\u3092\u6b20\u304b\u3055\u305a\u30c1\u30a7\u30c3\u30af","protected":false,"verified":false,"followers_count":154,"friends_count":199,"listed_count":4,"favourites_count":0,"statuses_count":151679,"created_at":"Mon Oct 28 09:06:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000659344619\/f843bae8ba8f78b13a8c217b6b0e341d_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000659344619\/f843bae8ba8f78b13a8c217b6b0e341d_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vUpivZBUi6","expanded_url":"http:\/\/anteka.info\/?id=22418947&p=img","display_url":"anteka.info\/?id=22418947&p\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[],"media":[{"id":663728269728989184,"id_str":"663728269728989184","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWECUwAAUXlF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWECUwAAUXlF.png","url":"https:\/\/t.co\/A9C4CRbyf1","display_url":"pic.twitter.com\/A9C4CRbyf1","expanded_url":"http:\/\/twitter.com\/antekanews\/status\/663728269833863168\/photo\/1","type":"photo","sizes":{"medium":{"w":200,"h":200,"resize":"fit"},"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":200,"h":200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728269728989184,"id_str":"663728269728989184","indices":[56,79],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWECUwAAUXlF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWECUwAAUXlF.png","url":"https:\/\/t.co\/A9C4CRbyf1","display_url":"pic.twitter.com\/A9C4CRbyf1","expanded_url":"http:\/\/twitter.com\/antekanews\/status\/663728269833863168\/photo\/1","type":"photo","sizes":{"medium":{"w":200,"h":200,"resize":"fit"},"large":{"w":200,"h":200,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":200,"h":200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125660"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269850636288,"id_str":"663728269850636288","text":"\u3010\u5c71\u672c\u8309\u592e\u3011 \u4eca\u65e5\u3082\u4e00\u65e5\u304a\u75b2\u308c\u69d8\u3067\u3059*\\(^o^)\/* \u304a\u3084\u3059\u307f\u306a\u3055\u3044(*^^*) \u9ab8\u9aa8\u3055\u3093\u3068\uff01\uff01 \u660e\u65e5\u3082\u304a\u4ed5\u4e8b\u3001\u5b66\u6821 \u8272\u3005\u9811\u5f35\u308a\u307e\u3057\u3087\u3046\u301c\u301c \u8ffd\u52a0\u3002\u3002 \u3010\u304a\u77e5\u3089\u305b\u3011\u2026 https:\/\/t.co\/Vuiq5rUNTm https:\/\/t.co\/2z6ik5k7Xn","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":730042908,"id_str":"730042908","name":"HKT\u3050\u3050\u305f\u3059","screen_name":"hkt_ggts","location":null,"url":null,"description":"HKT48\u30fb\u305d\u306e\u4ed6\u95a2\u4fc2\u8005\u306eGoogle+\u6295\u7a3f\u66f4\u65b0\u60c5\u5831(\u500b\u4eba\u7684\u304b\u3064\u30c6\u30b9\u30c8\u904b\u7528)\u3000AKB\u21d2@akb_ggts\u3000SKE\u21d2@ske_ggts\u3000NMB\u21d2@nmb_ggts","protected":false,"verified":false,"followers_count":717,"friends_count":2,"listed_count":10,"favourites_count":0,"statuses_count":87559,"created_at":"Wed Aug 01 05:24:13 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2831055186\/5f8bc15650df379b543da72e19d71096_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2831055186\/5f8bc15650df379b543da72e19d71096_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Vuiq5rUNTm","expanded_url":"http:\/\/dlvr.it\/ChfjTb","display_url":"dlvr.it\/ChfjTb","indices":[85,108]}],"user_mentions":[],"symbols":[],"media":[{"id":663728269439557632,"id_str":"663728269439557632","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWC9UYAA6N2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWC9UYAA6N2X.jpg","url":"https:\/\/t.co\/2z6ik5k7Xn","display_url":"pic.twitter.com\/2z6ik5k7Xn","expanded_url":"http:\/\/twitter.com\/hkt_ggts\/status\/663728269850636288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728269439557632,"id_str":"663728269439557632","indices":[109,132],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWC9UYAA6N2X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWC9UYAA6N2X.jpg","url":"https:\/\/t.co\/2z6ik5k7Xn","display_url":"pic.twitter.com\/2z6ik5k7Xn","expanded_url":"http:\/\/twitter.com\/hkt_ggts\/status\/663728269850636288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125664"} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269838053378,"id_str":"663728269838053378","text":"\u3055\u3084\u59c9\u30ab\u30c3\u30b3\u3088\u3059\u304e\u308b\ud83d\ude0d\ud83d\ude0d\ud83d\ude0d https:\/\/t.co\/tsZqrKr7kj","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3691133671,"id_str":"3691133671","name":"\u3057\u304a\u3093@\u3082\u3082\u308a\u3093\u306e\u5f1f(\u516c\u8a8d)\u3055\u304d\u3082\u3082\u62c5","screen_name":"sakimomo_Love","location":"\u3082\u3082\u308a\u3093\u306e\u67a0\u3055\u304d\u304d\u30fc\u306e\u67a0","url":"http:\/\/twpf.jp\/sakimomo_Love","description":"\u3055\u304d\u3082\u3082\u5c02\u7528\u30a2\u30ab\u30a6\u30f3\u30c8.\u5411\u4e95\u5730\u7f8e\u97f3.\u5c0f\u5d8b\u771f\u5b50.\u6e21\u8fba\u9ebb\u53cb.\u6a2a\u5c71\u7531\u4f9d.\u6728\ufa11\u3086\u308a\u3042.\u5317\u5ddd\u7dbe\u5df4.\u6e21\u8fba\u7f8e\u512a\u7d00.\u6e0b\u8c37\u51ea\u54b2.\u85ae\u4e0b\u67ca \u77e2\u5439\u5948\u5b50.\u7530\u4e2d\u7f8e\u4e45.\u671d\u9577\u7f8e\u685c.\u7530\u5cf6\u82bd\u7460.\u8352\u5dfb\u7f8e\u54b2\u3082\u3082\u308a\u3093\u62c5&\u3055\u304d\u305f\u3093\u62c5\u30a2\u30a4\u30b3\u30f3\u3068\u30d8\u30c3\u30c0\u30fc\u306f\u3082\u3082\u308a\u3093\u304b\u3089\u6700\u8fd1\u30c1\u30fc\u30e08\u3092\u63a8\u3057\u3066\u3044\u307e\u3059\uff01\u3082\u3082\u308a\u3093\u306e\u5f1f\u3067\u3054\u3056\u3044\u307e\u3059\u2190\u672c\u4eba\u516c\u8a8d\uff01","protected":false,"verified":false,"followers_count":28,"friends_count":26,"listed_count":2,"favourites_count":88,"statuses_count":152,"created_at":"Sat Sep 26 09:21:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653136125008048128\/OqULPy5H_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653136125008048128\/OqULPy5H_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3691133671\/1444613324","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728247998275584,"id_str":"663728247998275584","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUzFUYAA_F9-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUzFUYAA_F9-.jpg","url":"https:\/\/t.co\/tsZqrKr7kj","display_url":"pic.twitter.com\/tsZqrKr7kj","expanded_url":"http:\/\/twitter.com\/sakimomo_Love\/status\/663728269838053378\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728247998275584,"id_str":"663728247998275584","indices":[14,37],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJUzFUYAA_F9-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJUzFUYAA_F9-.jpg","url":"https:\/\/t.co\/tsZqrKr7kj","display_url":"pic.twitter.com\/tsZqrKr7kj","expanded_url":"http:\/\/twitter.com\/sakimomo_Love\/status\/663728269838053378\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080125661"} +{"delete":{"status":{"id":663724125882466304,"id_str":"663724125882466304","user_id":3742748778,"user_id_str":"3742748778"},"timestamp_ms":"1447080126203"}} +{"delete":{"status":{"id":663724121688174595,"id_str":"663724121688174595","user_id":3742607425,"user_id_str":"3742607425"},"timestamp_ms":"1447080126213"}} +{"created_at":"Mon Nov 09 14:42:05 +0000 2015","id":663728269859033089,"id_str":"663728269859033089","text":"@irlhentaigirl https:\/\/t.co\/8KCPdCdmeB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727979931963392,"in_reply_to_status_id_str":"663727979931963392","in_reply_to_user_id":996273018,"in_reply_to_user_id_str":"996273018","in_reply_to_screen_name":"irlhentaigirl","user":{"id":473371544,"id_str":"473371544","name":"mystic dark mage.","screen_name":"WitDaScreenOnIt","location":"Hollow Bastion","url":"https:\/\/soundcloud.com\/withdascreenattached","description":"\u201cNothing is certain except death and taxes\u201d another lost cause.","protected":false,"verified":false,"followers_count":1346,"friends_count":1212,"listed_count":15,"favourites_count":24052,"statuses_count":132091,"created_at":"Tue Jan 24 22:25:36 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/568517218648879105\/Cn-rybue.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/568517218648879105\/Cn-rybue.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658072540728991744\/5D8q4uWY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658072540728991744\/5D8q4uWY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/473371544\/1446345873","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"irlhentaigirl","name":"happy bday daddy","id":996273018,"id_str":"996273018","indices":[0,14]}],"symbols":[],"media":[{"id":663728265962643456,"id_str":"663728265962643456","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV2AW4AATKs2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV2AW4AATKs2.jpg","url":"https:\/\/t.co\/8KCPdCdmeB","display_url":"pic.twitter.com\/8KCPdCdmeB","expanded_url":"http:\/\/twitter.com\/WitDaScreenOnIt\/status\/663728269859033089\/photo\/1","type":"photo","sizes":{"large":{"w":246,"h":144,"resize":"fit"},"small":{"w":246,"h":144,"resize":"fit"},"thumb":{"w":150,"h":144,"resize":"crop"},"medium":{"w":246,"h":144,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728265962643456,"id_str":"663728265962643456","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV2AW4AATKs2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV2AW4AATKs2.jpg","url":"https:\/\/t.co\/8KCPdCdmeB","display_url":"pic.twitter.com\/8KCPdCdmeB","expanded_url":"http:\/\/twitter.com\/WitDaScreenOnIt\/status\/663728269859033089\/photo\/1","type":"photo","sizes":{"large":{"w":246,"h":144,"resize":"fit"},"small":{"w":246,"h":144,"resize":"fit"},"thumb":{"w":150,"h":144,"resize":"crop"},"medium":{"w":246,"h":144,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080125666"} +{"delete":{"status":{"id":549101884145811456,"id_str":"549101884145811456","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080126471"}} +{"delete":{"status":{"id":663669297915543552,"id_str":"663669297915543552","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080126503"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274019864576,"id_str":"663728274019864576","text":"RT @DahliaRain: Hey dicklettes! I wanna play with some weak little bitch boys-\ud83d\ude0ayou are my toy, admit it #femdom @slavefr @singleslave http:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241205837,"id_str":"3241205837","name":"frenchslave","screen_name":"slavefr","location":null,"url":null,"description":"French slave","protected":false,"verified":false,"followers_count":1197,"friends_count":733,"listed_count":30,"favourites_count":510,"statuses_count":15651,"created_at":"Thu May 07 23:23:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/600957614852218883\/vZsgWunu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/600957614852218883\/vZsgWunu.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599166583404142592\/tLOej6zn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599166583404142592\/tLOej6zn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241205837\/1433627016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 24 00:43:46 +0000 2015","id":624379409487785984,"id_str":"624379409487785984","text":"Hey dicklettes! I wanna play with some weak little bitch boys-\ud83d\ude0ayou are my toy, admit it #femdom @slavefr @singleslave http:\/\/t.co\/9FXj55E2Wb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2503260716,"id_str":"2503260716","name":"Mistress\u2b50\ufe0fDahlia","screen_name":"DahliaRain","location":"\u2728NJ\/NYC, USA\u2728","url":"http:\/\/www.tinyurl.com\/lovelydahlia","description":"\u272818+only\u2728FootGoddess-Femmefatale-Muse- Domina-fetishmodel-BadassBitch-#WorshipDahlia #VERIFIED\u2764\ufe0fhttp:\/\/www.findoms.com\/Lovelydahlia\u2764\ufe0fhttp:\/\/www.lovelydahlia.com","protected":false,"verified":false,"followers_count":3291,"friends_count":461,"listed_count":26,"favourites_count":9586,"statuses_count":7705,"created_at":"Sun May 18 03:46:28 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658862529356152832\/ibiSYuWf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658862529356152832\/ibiSYuWf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2503260716\/1443829381","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":32,"entities":{"hashtags":[{"text":"femdom","indices":[88,95]}],"urls":[],"user_mentions":[{"screen_name":"slavefr","name":"sissy4Anna","id":3241205837,"id_str":"3241205837","indices":[96,104]}],"symbols":[],"media":[{"id":624379393952059392,"id_str":"624379393952059392","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":795,"resize":"fit"},"large":{"w":772,"h":1024,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":624379393952059392,"id_str":"624379393952059392","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":795,"resize":"fit"},"large":{"w":772,"h":1024,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":624379394153390080,"id_str":"624379394153390080","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wDmWIAA10Mc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wDmWIAA10Mc.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":624379394166030340,"id_str":"624379394166030340","indices":[118,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wDpXAAQztks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wDpXAAQztks.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"large":{"w":776,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":791,"resize":"fit"},"small":{"w":340,"h":448,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"femdom","indices":[104,111]}],"urls":[],"user_mentions":[{"screen_name":"DahliaRain","name":"Mistress\u2b50\ufe0fDahlia","id":2503260716,"id_str":"2503260716","indices":[3,14]},{"screen_name":"slavefr","name":"sissy4Anna","id":3241205837,"id_str":"3241205837","indices":[112,120]}],"symbols":[],"media":[{"id":624379393952059392,"id_str":"624379393952059392","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":795,"resize":"fit"},"large":{"w":772,"h":1024,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":624379409487785984,"source_status_id_str":"624379409487785984","source_user_id":2503260716,"source_user_id_str":"2503260716"}]},"extended_entities":{"media":[{"id":624379393952059392,"id_str":"624379393952059392","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wC2WEAAf6cf.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":795,"resize":"fit"},"large":{"w":772,"h":1024,"resize":"fit"},"small":{"w":340,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":624379409487785984,"source_status_id_str":"624379409487785984","source_user_id":2503260716,"source_user_id_str":"2503260716"},{"id":624379394153390080,"id_str":"624379394153390080","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wDmWIAA10Mc.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wDmWIAA10Mc.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":624379409487785984,"source_status_id_str":"624379409487785984","source_user_id":2503260716,"source_user_id_str":"2503260716"},{"id":624379394166030340,"id_str":"624379394166030340","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CKo9wDpXAAQztks.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CKo9wDpXAAQztks.jpg","url":"http:\/\/t.co\/9FXj55E2Wb","display_url":"pic.twitter.com\/9FXj55E2Wb","expanded_url":"http:\/\/twitter.com\/DahliaRain\/status\/624379409487785984\/photo\/1","type":"photo","sizes":{"large":{"w":776,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":791,"resize":"fit"},"small":{"w":340,"h":448,"resize":"fit"}},"source_status_id":624379409487785984,"source_status_id_str":"624379409487785984","source_user_id":2503260716,"source_user_id_str":"2503260716"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126658"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036629504,"id_str":"663728274036629504","text":"RT @canleroy: Zaten Sizin gibi Sat\u0131lm\u0131\u015flar Mehmet\u00e7i\u011fin PKK operasyonlar\u0131na '' Saray\u0131n Sava\u015f\u0131'' diyorsunuz, Mademoiselle Bukalemun :)) @Notr\u2026","source":"\u003ca href=\"http:\/\/armanhan.com\" rel=\"nofollow\"\u003eBenim Hayal D\u00fcnyam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3408369567,"id_str":"3408369567","name":"bi duble rak\u0131","screen_name":"amnskmmm","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":99,"friends_count":197,"listed_count":0,"favourites_count":560,"statuses_count":371,"created_at":"Sat Aug 08 09:57:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630050225701416961\/gnQ_ee_j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630050225701416961\/gnQ_ee_j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3408369567\/1441919023","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:29 +0000 2015","id":663727365286137857,"id_str":"663727365286137857","text":"Zaten Sizin gibi Sat\u0131lm\u0131\u015flar Mehmet\u00e7i\u011fin PKK operasyonlar\u0131na '' Saray\u0131n Sava\u015f\u0131'' diyorsunuz, Mademoiselle Bukalemun :)) @Notredamedesion","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663679646874079232,"in_reply_to_status_id_str":"663679646874079232","in_reply_to_user_id":85405988,"in_reply_to_user_id_str":"85405988","in_reply_to_screen_name":"Notredamedesion","user":{"id":2477214584,"id_str":"2477214584","name":"Can Leroy","screen_name":"canleroy","location":null,"url":"https:\/\/twitter.com\/canleroy\/status\/657942748226547713","description":"|#Atat\u00fcrk |#Tsk | #\u00d6nceVatan | |#Libert\u00c9galiteFraternit\u00e9 | #Galatasaray | Engelleme Listem\u2935 #Cemaat #Fet\u00f6 #HDPKK #VATANHA\u0130NLER\u0130","protected":false,"verified":false,"followers_count":6129,"friends_count":516,"listed_count":2,"favourites_count":1071,"statuses_count":1030,"created_at":"Sun May 04 18:00:31 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656882920989290497\/47hI4ZqR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656882920989290497\/47hI4ZqR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2477214584\/1445448114","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":70,"favorite_count":59,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Notredamedesion","name":"nazli ilicak","id":85405988,"id_str":"85405988","indices":[120,136]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"canleroy","name":"Can Leroy","id":2477214584,"id_str":"2477214584","indices":[3,12]},{"screen_name":"Notredamedesion","name":"nazli ilicak","id":85405988,"id_str":"85405988","indices":[134,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080126662"} +{"delete":{"status":{"id":663726080419868672,"id_str":"663726080419868672","user_id":2366438412,"user_id_str":"2366438412"},"timestamp_ms":"1447080126696"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024095746,"id_str":"663728274024095746","text":"\u0627\u0644\u0644\u0647\u0645 \u0631\u0628\u0651 \u0627\u0644\u0634\u0639\u0648\u0631 \u0648\u0631\u0628 \u0627\u0644\u0643\u0644\u0622\u0645 \u060c \u0631\u0628 \u0627\u0644\u0637\u0645\u0623\u0646\u064a\u0646\u0647 \u0648\u0627\u0644\u062e\u0648\u0641 \u060c \u0644\u0627 \u062a\u062e\u062a\u0628\u0631 \u0635\u0628\u0631\u064a \u0628\u0634\u0639\u0648\u0631 \u064a\u062a\u0631\u0643\u0632 \u0623\u0644\u0645\u0647\u064c \u0641\u064a \u0639\u064a\u0646\u064a ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1267072394,"id_str":"1267072394","name":"\u0628\u062d\u062d\u0647\u06c1\u0651 \u0629\u064f \u0633\u0645\u0693\u064f\u06c6\u06c6\u0646 ..","screen_name":"Moooode1990","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0623\u0633\u0645\u0631 \u0644\u0627 \u0623\u0634\u0628\u0647\u064f \u0623\u062d\u062f\u0627\u064b .. \u0623\u0639\u064a\u0634 \u0639 \u0643\u0645\u064d \u0647\u0627\u0626\u0650\u0644 \u0645\u0646\u064e \u0627\u0644\u0643\u0650\u0628\u0631\u064a\u0627\u0621 .. \u0648\u0628\u0645\u0632\u0627\u062c\u064a\u0651 \u0623\u0646\u062d\u0646\u0650\u064a\u0651 \u0644\u0650\u0645\u0646\u064e \u0623\u0631\u064a\u062f\u0651 .. \u0639\u0627\u062b\u0631 \u062d\u0638 \u0644\u0627 \u0623\u062d\u0628\u064f \u0633\u0650\u0648\u0649\u0651 \u0627\u0644\u0645\u064f\u0633\u062a\u062d\u064a\u0644 .. \u200b","protected":false,"verified":false,"followers_count":860,"friends_count":990,"listed_count":0,"favourites_count":761,"statuses_count":5023,"created_at":"Thu Mar 14 13:25:17 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661707383241121792\/yoIhs9qD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661707383241121792\/yoIhs9qD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1267072394\/1421454542","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032447488,"id_str":"663728274032447488","text":"Get Weather Updates from The Weather Channel. 09:42:06","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3045967510,"id_str":"3045967510","name":"gnlc21742","screen_name":"gnlc21742","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":57434,"created_at":"Fri Feb 20 06:52:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_5_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274015657984,"id_str":"663728274015657984","text":"gruss an den typ mit einhorn tattoo am arm den ich grad im bus gesehen hab","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2827691224,"id_str":"2827691224","name":"Gamze","screen_name":"gamzosh_","location":"187! 439! ","url":null,"description":"Schatzambauis","protected":false,"verified":false,"followers_count":234,"friends_count":110,"listed_count":3,"favourites_count":9035,"statuses_count":3530,"created_at":"Mon Oct 13 16:09:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652853240179068928\/AmKRUbot_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652853240179068928\/AmKRUbot_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2827691224\/1446850687","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080126657"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274019889152,"id_str":"663728274019889152","text":"RT @mkingasaurous: Some are just going to be committed to misunderstanding you. They'll take anything you say out of context to fit their p\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2216282053,"id_str":"2216282053","name":"It's Mella Bitch \u264f","screen_name":"iScorpio87","location":"Chasing Dreams","url":null,"description":"01\/22\/2016 \u2764","protected":false,"verified":false,"followers_count":1467,"friends_count":1325,"listed_count":0,"favourites_count":3000,"statuses_count":4779,"created_at":"Tue Nov 26 19:43:09 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663175009863528448\/ECZw5APM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663175009863528448\/ECZw5APM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2216282053\/1441997692","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:36:48 +0000 2015","id":662383085380460544,"id_str":"662383085380460544","text":"Some are just going to be committed to misunderstanding you. They'll take anything you say out of context to fit their personal narrative.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":313724477,"id_str":"313724477","name":"!HOP","screen_name":"mkingasaurous","location":"Fuck yo Couch Nigga","url":"http:\/\/thekingasaurous.bigcartel.com\/","description":"WARNING: This Twitter account user does not take feelings into consideration before Tweeting. Confirmed ISTP. 6'5 with a 42-44inch vert. Paid Promoter","protected":false,"verified":false,"followers_count":38451,"friends_count":28745,"listed_count":76,"favourites_count":1700,"statuses_count":15161,"created_at":"Thu Jun 09 03:29:35 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000035945258\/d64ec8c8f3c96f7ea3fa5b699dcd49a8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000035945258\/d64ec8c8f3c96f7ea3fa5b699dcd49a8.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659897947048423425\/A8e8D6Zj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659897947048423425\/A8e8D6Zj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/313724477\/1440710862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":312,"favorite_count":227,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mkingasaurous","name":"!HOP","id":313724477,"id_str":"313724477","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126658"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274019741696,"id_str":"663728274019741696","text":"\u4e8c\u9178\u5316\u30de\u30f3\u30ac\u30f3\u306b\u30aa\u30ad\u30b7\u30c9\u30fc\u30eb\u3068\u30d9\u30b8\u30de\u30a4\u30c8\u3092\u52a0\u3048\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178097156,"id_str":"3178097156","name":"\u3064\u3049\u3068\u30fc\u3068\uff20\u73fe\u4ee3\u6587\u5b78\u6587\u5316\u7814\u7a76\u90e8","screen_name":"Gocho8170","location":"\u30b7\u30e2\u30ab\u30f3","url":null,"description":"\u9244\u9053\u30aa\u30bf\u30af\u3001\u8ecd\u8266\u30aa\u30bf\u30af\u3001\u30df\u30ea\u30bf\u30ea\u30fc(\u306b\u308f\u304b)\u30aa\u30bf\u30af\u3001\u30aa\u30bf\u30af\u3092\u639b\u3051\u6301\u3061\u4e2d\u306e\u30e9\u30ce\u30d9\u5927\u597d\u304d\u5358\u51a0\u6e7e\u63d0\u7763\u3002 \u30a4\u30e9\u30b9\u30c8\u3092\u307c\u3061\u307c\u3061\u308c\u3093\u3057\u3046\u3061\u3046\u3002","protected":false,"verified":false,"followers_count":17,"friends_count":60,"listed_count":0,"favourites_count":233,"statuses_count":238,"created_at":"Tue Apr 28 11:03:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628418543344750592\/kFH7q9Wp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628418543344750592\/kFH7q9Wp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178097156\/1438686858","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126658"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024067072,"id_str":"663728274024067072","text":"RT @aIiensaying: https:\/\/t.co\/p08VYDPqHB","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2384655352,"id_str":"2384655352","name":"lisa || 206","screen_name":"liisahomann","location":"gothenburg, sweden","url":null,"description":"follow my main @beyonce","protected":false,"verified":false,"followers_count":1169,"friends_count":538,"listed_count":22,"favourites_count":15608,"statuses_count":59798,"created_at":"Wed Mar 05 07:18:25 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"sv","contributors_enabled":false,"is_translator":false,"profile_background_color":"ED127A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561587775430864896\/eBMmADXq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561587775430864896\/eBMmADXq.jpeg","profile_background_tile":true,"profile_link_color":"ED127A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656854235104047104\/SRXQ1nE0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656854235104047104\/SRXQ1nE0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2384655352\/1445441203","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:40 +0000 2015","id":663723131803009024,"id_str":"663723131803009024","text":"https:\/\/t.co\/p08VYDPqHB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4141930589,"id_str":"4141930589","name":"aliens","screen_name":"aIiensaying","location":"dm me suggestions","url":null,"description":"rt if u agree","protected":false,"verified":false,"followers_count":808,"friends_count":0,"listed_count":1,"favourites_count":76,"statuses_count":102,"created_at":"Sun Nov 08 13:28:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663347778949632000\/WScf_aQv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663347778949632000\/WScf_aQv_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":27,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723118284816385,"id_str":"663723118284816385","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":601,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723118284816385,"id_str":"663723118284816385","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":601,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}}},{"id":663723119270432768,"id_str":"663723119270432768","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqRFUEAABZxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqRFUEAABZxD.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":183,"resize":"fit"},"small":{"w":340,"h":172,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aIiensaying","name":"aliens","id":4141930589,"id_str":"4141930589","indices":[3,15]}],"symbols":[],"media":[{"id":663723118284816385,"id_str":"663723118284816385","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":601,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}},"source_status_id":663723131803009024,"source_status_id_str":"663723131803009024","source_user_id":4141930589,"source_user_id_str":"4141930589"}]},"extended_entities":{"media":[{"id":663723118284816385,"id_str":"663723118284816385","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqNaUwAEc-kh.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":599,"h":601,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":599,"h":601,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}},"source_status_id":663723131803009024,"source_status_id_str":"663723131803009024","source_user_id":4141930589,"source_user_id_str":"4141930589"},{"id":663723119270432768,"id_str":"663723119270432768","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEqRFUEAABZxD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEqRFUEAABZxD.jpg","url":"https:\/\/t.co\/p08VYDPqHB","display_url":"pic.twitter.com\/p08VYDPqHB","expanded_url":"http:\/\/twitter.com\/aIiensaying\/status\/663723131803009024\/photo\/1","type":"photo","sizes":{"large":{"w":360,"h":183,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":360,"h":183,"resize":"fit"},"small":{"w":340,"h":172,"resize":"fit"}},"source_status_id":663723131803009024,"source_status_id_str":"663723131803009024","source_user_id":4141930589,"source_user_id_str":"4141930589"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036494336,"id_str":"663728274036494336","text":"\u52dd\u3061\u8ca0\u3051\u3046\u3093\u306c\u3093\u3058\u3083\u306a\u304f\u3066\u308f\u305f\u3057\u306f\u305f\u30603Mj\u306e\u30e9\u30a4\u30d6\u304c\u898b\u305f\u3044\u3060\u3051\u306a\u3093\u3060\u3088\u3002","source":"\u003ca href=\"http:\/\/f.tabtter.jp\" rel=\"nofollow\"\u003eTabtter Free\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":550550427,"id_str":"550550427","name":"\u67f5","screen_name":"saklimt","location":"\u6771\u4eac\u90fd\u306f\u3070\u305f\u304d\u5e02","url":"http:\/\/twpf.jp\/saklimt","description":"3Majesty\u3092\u5fdc\u63f4\u3057\u3066\u3044\u307e\u3059\uff01\u30ab\u30a4\u30c8\u304f\u3093\u5927\u597d\u304d\uff01\uff01C\u7d44\u3067\u3055\u304a\u308a\u3068\u3044\u3046\u540d\u524d\u3067\u30ec\u30b9\u30c8\u30e9\u30f3\u7d4c\u55b6\u3057\u3066\u3044\u307e\u3059\u3002\u3069\u3046\u305e\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u3002 \u3068\u304d\u30ec\u30b9\/\u3046\u305f\u30d7\u30ea\/\u307e\u3058\u3075\u3049\u3061\u3083\u3093\/\u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":47,"friends_count":50,"listed_count":4,"favourites_count":5535,"statuses_count":8552,"created_at":"Tue Apr 10 21:41:52 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"E50072","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000103020181\/4a53cbea4556c88936b8a96a87cc9d37.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000103020181\/4a53cbea4556c88936b8a96a87cc9d37.png","profile_background_tile":false,"profile_link_color":"7F003F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662966814918316032\/3VixQ0TM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662966814918316032\/3VixQ0TM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/550550427\/1433578937","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036649985,"id_str":"663728274036649985","text":"RT @muharemkaraoglu: Kur'\u0103n ofisi \u00e7al\u0131\u015fanlar\u0131m\u0131zdan Muharrem Karaoglu Mehdi Eker'e Ahmed Hulusi'nin \u00fccretsiz kitaplar\u0131n\u0131 takdim ederken htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351734882,"id_str":"351734882","name":" Mustafa Bayku\u015fak","screen_name":"mubay21","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":27,"listed_count":2,"favourites_count":24,"statuses_count":6691,"created_at":"Tue Aug 09 17:30:46 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599215974567514112\/WeKFzDW5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599215974567514112\/WeKFzDW5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351734882\/1426971108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:46:52 +0000 2015","id":663699272693587972,"id_str":"663699272693587972","text":"Kur'\u0103n ofisi \u00e7al\u0131\u015fanlar\u0131m\u0131zdan Muharrem Karaoglu Mehdi Eker'e Ahmed Hulusi'nin \u00fccretsiz kitaplar\u0131n\u0131 takdim ederken https:\/\/t.co\/nk907Vkntr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":474648845,"id_str":"474648845","name":"muharrem karaoglu","screen_name":"muharemkaraoglu","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":163,"friends_count":69,"listed_count":8,"favourites_count":7,"statuses_count":5949,"created_at":"Thu Jan 26 06:20:25 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642299882976509954\/Wy2jf2Mq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642299882976509954\/Wy2jf2Mq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/474648845\/1394469677","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":14,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663699258596581376,"id_str":"663699258596581376","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","url":"https:\/\/t.co\/nk907Vkntr","display_url":"pic.twitter.com\/nk907Vkntr","expanded_url":"http:\/\/twitter.com\/muharemkaraoglu\/status\/663699272693587972\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663699258596581376,"id_str":"663699258596581376","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","url":"https:\/\/t.co\/nk907Vkntr","display_url":"pic.twitter.com\/nk907Vkntr","expanded_url":"http:\/\/twitter.com\/muharemkaraoglu\/status\/663699272693587972\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"muharemkaraoglu","name":"muharrem karaoglu","id":474648845,"id_str":"474648845","indices":[3,19]}],"symbols":[],"media":[{"id":663699258596581376,"id_str":"663699258596581376","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","url":"https:\/\/t.co\/nk907Vkntr","display_url":"pic.twitter.com\/nk907Vkntr","expanded_url":"http:\/\/twitter.com\/muharemkaraoglu\/status\/663699272693587972\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663699272693587972,"source_status_id_str":"663699272693587972","source_user_id":474648845,"source_user_id_str":"474648845"}]},"extended_entities":{"media":[{"id":663699258596581376,"id_str":"663699258596581376","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXu9ZJW4AALafv.jpg","url":"https:\/\/t.co\/nk907Vkntr","display_url":"pic.twitter.com\/nk907Vkntr","expanded_url":"http:\/\/twitter.com\/muharemkaraoglu\/status\/663699272693587972\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":576,"h":1024,"resize":"fit"},"medium":{"w":576,"h":1024,"resize":"fit"}},"source_status_id":663699272693587972,"source_status_id_str":"663699272693587972","source_user_id":474648845,"source_user_id_str":"474648845"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274053443584,"id_str":"663728274053443584","text":"Get Weather Updates from The Weather Channel. 09:42:06","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165851074,"id_str":"3165851074","name":"slhb28398","screen_name":"slhb28398","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":3,"listed_count":0,"favourites_count":0,"statuses_count":41072,"created_at":"Tue Apr 14 08:18:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126666"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274040844288,"id_str":"663728274040844288","text":"pca_moh4: DjpadillsP: kathrynkime27: 52526kn: Imma_lonely_: chandria_kn: Win na win . #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3721365433,"id_str":"3721365433","name":"Kathyrin Bernards","screen_name":"Kathbernardsxz","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":123,"listed_count":15,"favourites_count":3,"statuses_count":34953,"created_at":"Tue Sep 29 02:57:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648693472573067264\/1P4Z0Qjx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648693472573067264\/1P4Z0Qjx_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[86,106]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126663"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274023936000,"id_str":"663728274023936000","text":"@null Hari ini hari Senin,Tanggal 09 Bulan November Tahun 2015 Jam 09:41:59","source":"\u003ca href=\"http:\/\/yoshika23218.com\/twitcle\/\" rel=\"nofollow\"\u003etwitcle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":3190286089,"id_str":"3190286089","name":"jess","screen_name":"yeojazr","location":null,"url":null,"description":"((Jessica\uc815 1989, blanc&eclare))","protected":false,"verified":false,"followers_count":1183,"friends_count":1222,"listed_count":4,"favourites_count":0,"statuses_count":25105,"created_at":"Sun May 10 00:39:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653616136643174401\/yjoTEi1b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653616136643174401\/yjoTEi1b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3190286089\/1444669062","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274049261568,"id_str":"663728274049261568","text":"@gaprielrod O que faz eu me arrepender amargamente isso sim","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726835189096449,"in_reply_to_status_id_str":"663726835189096449","in_reply_to_user_id":2893271351,"in_reply_to_user_id_str":"2893271351","in_reply_to_screen_name":"gaprielrod","user":{"id":346499266,"id_str":"346499266","name":"Raissa Souza","screen_name":"interditcoucher","location":null,"url":"http:\/\/instagram.com\/_isa_souza_","description":"Outono de 92, Hist\u00f3ria da Arte, Indument\u00e1ria, Sonserina, Apaixonada, Nerd, Princesa da Disney, Corinthiana, Dan\u00e7ar, Ler, Escrever, Renovar e Recriar.","protected":false,"verified":false,"followers_count":96,"friends_count":132,"listed_count":1,"favourites_count":7,"statuses_count":1605,"created_at":"Mon Aug 01 11:00:19 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643194890\/g37nydt6ds55a7eymfzd.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643194890\/g37nydt6ds55a7eymfzd.jpeg","profile_background_tile":false,"profile_link_color":"F50A1D","profile_sidebar_border_color":"EDE8E9","profile_sidebar_fill_color":"050505","profile_text_color":"FFFAFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000368236185\/f59f1a8bd7e04af6264553ad7d3be978_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000368236185\/f59f1a8bd7e04af6264553ad7d3be978_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346499266\/1358659001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gaprielrod","name":"Gabriel Rodrigues","id":2893271351,"id_str":"2893271351","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080126665"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274040745984,"id_str":"663728274040745984","text":"\u30b3\u30f3\u30d3\u30cb\u30d0\u30a4\u30c8\u304c\u5e95\u8fba\u3068\u3044\u3046\u98a8\u6f6e https:\/\/t.co\/gOsOdxiTsW","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2825689280,"id_str":"2825689280","name":"\u3042\u306e\u82b8\u80fd\u30fb\u708e\u4e0a\u30cd\u30bf\u3042\u308a\u307e\u3059\u3002","screen_name":"enjyounewscom","location":"\u6771\u4eac","url":null,"description":"\u82b8\u80fd\u30cd\u30bf\u3084\u708e\u4e0a\u30cd\u30bf\u3001\u304a\u3082\u3057\u308d\u3044\u30cd\u30bf\u307e\u3067\u5e45\u5e83\u3044\u60c5\u5831\u3092\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":6,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":33146,"created_at":"Mon Sep 22 05:43:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585304791103868929\/NxKl5Vr-_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585304791103868929\/NxKl5Vr-_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gOsOdxiTsW","expanded_url":"http:\/\/urx.nu\/ccut","display_url":"urx.nu\/ccut","indices":[16,39]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126663"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274023931904,"id_str":"663728274023931904","text":"@toho_nagasaki \u3042\u3001\u305d\u308c\u306f\u66f2\u540d\u3060\u3051w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728147360165888,"in_reply_to_status_id_str":"663728147360165888","in_reply_to_user_id":2390037205,"in_reply_to_user_id_str":"2390037205","in_reply_to_screen_name":"toho_nagasaki","user":{"id":3112372164,"id_str":"3112372164","name":"\u30a2\u30ea\u30de\u30ea\uff1e\u3046\u3069\u307f\u3087\u3093","screen_name":"5810x","location":"teamDESART","url":null,"description":"\u767d\u732b\uff08rank110\u2191\u3001\u6bb5\u4f4d\u516b\u6bb5\u3001PS\u306f\u5168\u304f\u306a\u3044\u3067\u3059\uff09\u3068\u6771\u65b9\uff08\u9727\u96e8\u9b54\u7406\u6c99\uff09\u3068\u30c9\u30f3\u30b2\u30fc\uff08\u5168\u826f168\uff09\u3067\u751f\u304d\u3066\u308b\u30aa\u30bf\u30af\u3067\u3059\u3002 7kg\u75e9\u305b\u308b\u30be\uff01 \u9759\u5ca1\u306e\u30b4\u30df\u2191\u2191","protected":false,"verified":false,"followers_count":1190,"friends_count":672,"listed_count":9,"favourites_count":4326,"statuses_count":30113,"created_at":"Sat Mar 28 07:42:43 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641604698705793024\/MYgrBNEs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641604698705793024\/MYgrBNEs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112372164\/1446954993","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"toho_nagasaki","name":"\u3066\u3066\u3066\u308b\u305a","id":2390037205,"id_str":"2390037205","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024083456,"id_str":"663728274024083456","text":"@Harry_Styles you deserve all the love\nand respect in the world.\nthank you for always making me smile.\nwould you mind following me?\n69,744","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662691957039304704,"in_reply_to_status_id_str":"662691957039304704","in_reply_to_user_id":181561712,"in_reply_to_user_id_str":"181561712","in_reply_to_screen_name":"Harry_Styles","user":{"id":2275126410,"id_str":"2275126410","name":"it'll happen.","screen_name":"niallscrushx","location":"Poland","url":null,"description":"liam\/four. 11.09.15 - m&g with the janoskians.","protected":false,"verified":false,"followers_count":6423,"friends_count":120,"listed_count":71,"favourites_count":97,"statuses_count":201797,"created_at":"Fri Jan 03 21:30:46 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FAF9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_tile":true,"profile_link_color":"0E359E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275126410\/1426864732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024087552,"id_str":"663728274024087552","text":"Niggas be deadass in relationships with females just cus they need somewhere to live \ud83d\ude02\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":100471604,"id_str":"100471604","name":"CityKid","screen_name":"FlyerrrUNN","location":"Lions,Tigers & bars.","url":"http:\/\/detroit90nine.tumblr.com\/","description":"The new mad Rapper. #Detroit. #DiaryofaCityKid","protected":false,"verified":false,"followers_count":1654,"friends_count":1392,"listed_count":18,"favourites_count":1248,"statuses_count":16851,"created_at":"Wed Dec 30 11:12:08 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/668577787\/8cf07e1c2a4b0d00523fdc2be249c9f1.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/668577787\/8cf07e1c2a4b0d00523fdc2be249c9f1.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651465647784919040\/GRXThAH1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651465647784919040\/GRXThAH1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/100471604\/1348520822","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274049097728,"id_str":"663728274049097728","text":"\u6f2b\u753b\u306b\u3057\u3084\u3059\u3044\u9854\u3063\u3066\u3081\u3063\u3061\u3083\u308f\u304b\u308b\uff01\u3063\u3066\u306a\u3063\u305f\uff01\u3059\u3054\u3044\u63cf\u304d\u3084\u3059\u3044\u9854\u7acb\u3061\u3057\u3066\u3089\u3063\u3057\u3083\u3063\u308b\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3439731073,"id_str":"3439731073","name":"\u30a4\u30ab\u30b3\u30be\u30a6 \u3086\u306e\u3093","screen_name":"ikageso0","location":null,"url":null,"description":"Splatoon\u30a2\u30ab\u30a6\u30f3\u30c8\n\u30e9\u30f3\u30af44\u30a6\u30c7\u30de\u30a8\u4e00\u5fdcS\u3084\u3063\u3066\u307e\u3059\nSplatoon\u5b9f\u6cc1\u898b\u308b\u306e\u5927\u597d\u304d\uff01M.K.R\u2661\uff01\u4e16\u77e5\u8f9b\u30fc\u30ba\u2661\n\u30bf\u30b0\u30de\u30d7\u30e9\u30d9\u3084\u3063\u3066\u304f\u308c\u308b\u30d5\u30ec\u30f3\u30c9\u52df\u96c6\u4e2d\u3067\u3059 \u6c17\u8efd\u306b\u30d5\u30ec\u30ea\u30af\u3069\u3046\u305e\u301c ID:gstvxq","protected":false,"verified":false,"followers_count":73,"friends_count":72,"listed_count":3,"favourites_count":623,"statuses_count":3004,"created_at":"Thu Sep 03 18:42:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651415524719464449\/-tS4xV99_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651415524719464449\/-tS4xV99_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3439731073\/1445078280","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126665"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028273665,"id_str":"663728274028273665","text":"RT @TurntAyyLmao: When you forget to do your homework https:\/\/t.co\/bOVEkUC4L9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2998535437,"id_str":"2998535437","name":"reem :~)","screen_name":"ughIife","location":"banterlicious","url":"http:\/\/ask.fm\/ughIife","description":"damn it's crazy how faggot spelt backwards is donald trump.\n!! it's moderately lit !!","protected":false,"verified":false,"followers_count":880,"friends_count":392,"listed_count":0,"favourites_count":2739,"statuses_count":32044,"created_at":"Tue Jan 27 15:37:44 +0000 2015","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587976358136918017\/rvH0ptHB.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587976358136918017\/rvH0ptHB.png","profile_background_tile":true,"profile_link_color":"131516","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662660586807943168\/LWYqZvgn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662660586807943168\/LWYqZvgn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2998535437\/1445404980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 00:56:43 +0000 2015","id":658084742894497792,"id_str":"658084742894497792","text":"When you forget to do your homework https:\/\/t.co\/bOVEkUC4L9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2467058131,"id_str":"2467058131","name":"Turnt Alien","screen_name":"TurntAyyLmao","location":"Area 51","url":"http:\/\/AyyShop.com","description":"Hotbox my UFO. Turn notifications on or get probed. Get our merch at http:\/\/AyyShop.com","protected":false,"verified":false,"followers_count":37275,"friends_count":6357,"listed_count":47,"favourites_count":454,"statuses_count":304,"created_at":"Mon Apr 28 01:46:24 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/556129452871020544\/CP80GyVX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/556129452871020544\/CP80GyVX.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656653937475366912\/OKCQ9J42_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656653937475366912\/OKCQ9J42_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2467058131\/1446697641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"07d9ef1b69488000","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/07d9ef1b69488000.json","place_type":"poi","name":"Area 51","full_name":"Area 51","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-77.071477,38.907168],[-77.071477,38.907168],[-77.071477,38.907168],[-77.071477,38.907168]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":1622,"favorite_count":1433,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":658084738544996352,"id_str":"658084738544996352","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","url":"https:\/\/t.co\/bOVEkUC4L9","display_url":"pic.twitter.com\/bOVEkUC4L9","expanded_url":"http:\/\/twitter.com\/TurntAyyLmao\/status\/658084742894497792\/photo\/1","type":"photo","sizes":{"small":{"w":308,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":308,"h":239,"resize":"fit"},"medium":{"w":308,"h":239,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":658084738544996352,"id_str":"658084738544996352","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","url":"https:\/\/t.co\/bOVEkUC4L9","display_url":"pic.twitter.com\/bOVEkUC4L9","expanded_url":"http:\/\/twitter.com\/TurntAyyLmao\/status\/658084742894497792\/photo\/1","type":"photo","sizes":{"small":{"w":308,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":308,"h":239,"resize":"fit"},"medium":{"w":308,"h":239,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TurntAyyLmao","name":"Turnt Alien","id":2467058131,"id_str":"2467058131","indices":[3,16]}],"symbols":[],"media":[{"id":658084738544996352,"id_str":"658084738544996352","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","url":"https:\/\/t.co\/bOVEkUC4L9","display_url":"pic.twitter.com\/bOVEkUC4L9","expanded_url":"http:\/\/twitter.com\/TurntAyyLmao\/status\/658084742894497792\/photo\/1","type":"photo","sizes":{"small":{"w":308,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":308,"h":239,"resize":"fit"},"medium":{"w":308,"h":239,"resize":"fit"}},"source_status_id":658084742894497792,"source_status_id_str":"658084742894497792","source_user_id":2467058131,"source_user_id_str":"2467058131"}]},"extended_entities":{"media":[{"id":658084738544996352,"id_str":"658084738544996352","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSH8lUEUkAA3j3L.jpg","url":"https:\/\/t.co\/bOVEkUC4L9","display_url":"pic.twitter.com\/bOVEkUC4L9","expanded_url":"http:\/\/twitter.com\/TurntAyyLmao\/status\/658084742894497792\/photo\/1","type":"photo","sizes":{"small":{"w":308,"h":239,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":308,"h":239,"resize":"fit"},"medium":{"w":308,"h":239,"resize":"fit"}},"source_status_id":658084742894497792,"source_status_id_str":"658084742894497792","source_user_id":2467058131,"source_user_id_str":"2467058131"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274053464064,"id_str":"663728274053464064","text":"RT @Scarlet4UrMa: Hello https:\/\/t.co\/0wuPH0lT6n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1007310792,"id_str":"1007310792","name":"a d y s s","screen_name":"__adyss","location":null,"url":"http:\/\/instagram.com\/_adyss","description":"I travel, I write, I observe & I listen","protected":false,"verified":false,"followers_count":123,"friends_count":109,"listed_count":2,"favourites_count":755,"statuses_count":4613,"created_at":"Wed Dec 12 21:12:13 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"nl","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/520920632616173568\/fPN0S-rV.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/520920632616173568\/fPN0S-rV.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638840726562934785\/_AnMYz8P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638840726562934785\/_AnMYz8P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1007310792\/1439326632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 16:50:07 +0000 2015","id":657962284384415745,"id_str":"657962284384415745","text":"Hello https:\/\/t.co\/0wuPH0lT6n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2825851371,"id_str":"2825851371","name":"john","screen_name":"Scarlet4UrMa","location":"dublin","url":null,"description":"Lisa, never EVER stop in the middle of a hoedown","protected":false,"verified":false,"followers_count":1157,"friends_count":197,"listed_count":5,"favourites_count":15715,"statuses_count":13875,"created_at":"Sun Oct 12 19:34:10 +0000 2014","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653594115700080640\/2RuScllX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653594115700080640\/2RuScllX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2825851371\/1427069860","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38565,"favorite_count":18583,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657962271491141637,"id_str":"657962271491141637","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","url":"https:\/\/t.co\/0wuPH0lT6n","display_url":"pic.twitter.com\/0wuPH0lT6n","expanded_url":"http:\/\/twitter.com\/Scarlet4UrMa\/status\/657962284384415745\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":317,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":412,"h":317,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":657962271491141637,"id_str":"657962271491141637","indices":[6,29],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","url":"https:\/\/t.co\/0wuPH0lT6n","display_url":"pic.twitter.com\/0wuPH0lT6n","expanded_url":"http:\/\/twitter.com\/Scarlet4UrMa\/status\/657962284384415745\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":317,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":412,"h":317,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Scarlet4UrMa","name":"john","id":2825851371,"id_str":"2825851371","indices":[3,16]}],"symbols":[],"media":[{"id":657962271491141637,"id_str":"657962271491141637","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","url":"https:\/\/t.co\/0wuPH0lT6n","display_url":"pic.twitter.com\/0wuPH0lT6n","expanded_url":"http:\/\/twitter.com\/Scarlet4UrMa\/status\/657962284384415745\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":317,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":412,"h":317,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}},"source_status_id":657962284384415745,"source_status_id_str":"657962284384415745","source_user_id":2825851371,"source_user_id_str":"2825851371"}]},"extended_entities":{"media":[{"id":657962271491141637,"id_str":"657962271491141637","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSGNMyvWsAUyp1a.jpg","url":"https:\/\/t.co\/0wuPH0lT6n","display_url":"pic.twitter.com\/0wuPH0lT6n","expanded_url":"http:\/\/twitter.com\/Scarlet4UrMa\/status\/657962284384415745\/photo\/1","type":"photo","sizes":{"medium":{"w":412,"h":317,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":412,"h":317,"resize":"fit"},"small":{"w":340,"h":261,"resize":"fit"}},"source_status_id":657962284384415745,"source_status_id_str":"657962284384415745","source_user_id":2825851371,"source_user_id_str":"2825851371"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126666"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028273664,"id_str":"663728274028273664","text":"\u0412\u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0441\u044f\u044f\u044f\u044f\u044f\u044f\u044f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1699994251,"id_str":"1699994251","name":"\u0412\u0435\u0440\u043e\u043d\u0438\u043a\u0430 \u041c\u0438\u043b\u043b\u0435\u0440","screen_name":"vafanaseva82","location":"\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433","url":"http:\/\/vk.com\/id228837540","description":"Inst: veronikamilller","protected":false,"verified":false,"followers_count":80,"friends_count":60,"listed_count":0,"favourites_count":3864,"statuses_count":4257,"created_at":"Sun Aug 25 19:24:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/546665204549828609\/EkilPoTt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/546665204549828609\/EkilPoTt.jpeg","profile_background_tile":true,"profile_link_color":"1F98C7","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662296207658741761\/pwJCZUVW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662296207658741761\/pwJCZUVW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1699994251\/1445623775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"3894e5388f482c23","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/3894e5388f482c23.json","place_type":"city","name":"\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433","full_name":"\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0431\u0443\u0440\u0433, \u0421\u0432\u0435\u0440\u0434\u043b\u043e\u0432\u0441\u043a\u0430\u044f \u043e\u0431\u043b\u0430\u0441\u0442\u044c","country_code":"RU","country":"Rossiya","bounding_box":{"type":"Polygon","coordinates":[[[60.385120,56.667884],[60.385120,56.963182],[60.842156,56.963182],[60.842156,56.667884]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274019737601,"id_str":"663728274019737601","text":"\u0648\u0623\u0648\u0641\u0648\u0627 \u0627\u0644\u0643\u064a\u0644 \u0625\u0630\u0627 \u0643\u0644\u062a\u0645 \u0648\u0632\u0646\u0648\u0627 \u0628\u0627\u0644\u0642\u0633\u0637\u0627\u0633 \u0627\u0644\u0645\u0633\u062a\u0642\u064a\u0645 \u06da \u0630\u0644\u0643 \u062e\u064a\u0631 \u0648\u0623\u062d\u0633\u0646 \u062a\u0623\u0648\u064a\u0644\u0627 \ufd3f\u0663\u0665\ufd3e -- \u0633\u0648\u0631\u0629\u00a0\u0627\u0644\u0623\u0633\u0631\u0627\u0621\u00a0#Quran","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":533818665,"id_str":"533818665","name":"\u0628\u0634\u0645\u0648\u062e\u064a ","screen_name":"jsha1406","location":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647 \u062c\u062f\u0647","url":null,"description":"\u0645\u062b\u0644\u064a \u0645\u062b\u0644 \u063a\u064a\u0631\u064a \u0645\u0632\u0627\u062c\u064a\u0647 \u0648\u062d\u0633\u0627\u0633\u0647 \u0645\u0627\u0647\u0648 \u0636\u0631\u0648\u0631\u064a \u0645\u062b\u0644 \u0645\u0627 \u0627\u0635\u0628\u062d\u062a \u0623\u0645\u0633\u064a \u0623\u062d\u064a\u0627\u0646 \u0623\u0634\u0639\u0631 \u0628\u0640 \u0625\u0631\u062a\u064a\u0627\u062d\u064a \u0645\u0639 \u0627\u0644\u0646\u0627\u0633 \u0648\u0623\u062d\u064a\u0627\u0646 \u0645\u0627\u0644\u064a \u062e\u0644\u0642 \u062d\u062a\u0649 \u0644\u0646\u0641\u0633\u064a","protected":false,"verified":false,"followers_count":117,"friends_count":315,"listed_count":1,"favourites_count":199,"statuses_count":4762,"created_at":"Fri Mar 23 01:34:23 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423113939493605377\/KXSRQDUt_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423113939493605377\/KXSRQDUt_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/533818665\/1367557730","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Quran","indices":[90,96]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080126658"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036666369,"id_str":"663728274036666369","text":"\u0420\u0435\u0434\u043a\u0438\u0435 \u0446\u0432\u0435\u0442\u044b \u0420\u043e\u0441\u0441\u0438\u0438. | sadok33.ru https:\/\/t.co\/6FqyY34jcO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":468960384,"id_str":"468960384","name":"\u041b\u0430\u0440\u0438\u0441\u0430","screen_name":"Larsi51","location":"\u041d\u043e\u0432\u043e\u0441\u0438\u0431\u043c\u0440\u0441\u043a","url":"https:\/\/sadok33.ru","description":null,"protected":false,"verified":false,"followers_count":334,"friends_count":367,"listed_count":2,"favourites_count":7,"statuses_count":4752,"created_at":"Fri Jan 20 02:50:45 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460987134912913408\/jHF5QyqZ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460987134912913408\/jHF5QyqZ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/468960384\/1398742628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6FqyY34jcO","expanded_url":"http:\/\/sadok33.ru\/redkie-tsvety-rossii","display_url":"sadok33.ru\/redkie-tsvety-\u2026","indices":[34,57]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032295936,"id_str":"663728274032295936","text":"RT @Ciebangke: Ciee yang gak punya pacar, cuman bisa kangen sama kenangan ciee #ciebangke","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":544114253,"id_str":"544114253","name":"Tri Maryati","screen_name":"Tri_Maryati1","location":"Balikpapan","url":null,"description":null,"protected":false,"verified":false,"followers_count":493,"friends_count":310,"listed_count":0,"favourites_count":39,"statuses_count":7047,"created_at":"Tue Apr 03 09:03:14 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663379864364322816\/gCfGZcoV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663379864364322816\/gCfGZcoV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/544114253\/1444747519","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:00:10 +0000 2015","id":663642224572284928,"id_str":"663642224572284928","text":"Ciee yang gak punya pacar, cuman bisa kangen sama kenangan ciee #ciebangke","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":485452879,"id_str":"485452879","name":"CIEE","screen_name":"Ciebangke","location":"twitanese@gmail.com","url":"http:\/\/instagram.com\/ciebangke","description":"Ciee yang bilang #Akurapopo padahal #dalamhatimenangis Ciee #ciebangke || adv\/iklan : 087745567385","protected":false,"verified":false,"followers_count":283841,"friends_count":1,"listed_count":115,"favourites_count":13,"statuses_count":8625,"created_at":"Tue Feb 07 06:43:00 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/723368263\/62a7a08d80f5ea7a2a6ab5c0e6aed1eb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/723368263\/62a7a08d80f5ea7a2a6ab5c0e6aed1eb.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3154942744\/9911a028e7ca3264364a5ebf0374eeb8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3154942744\/9911a028e7ca3264364a5ebf0374eeb8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/485452879\/1361793714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":2,"entities":{"hashtags":[{"text":"ciebangke","indices":[64,74]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ciebangke","indices":[79,89]}],"urls":[],"user_mentions":[{"screen_name":"Ciebangke","name":"CIEE","id":485452879,"id_str":"485452879","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024046592,"id_str":"663728274024046592","text":"RT @ovunqueconzayn: \u00e8 brutto per\u00f2 vedere che zayn malik sale in tendenza solo per le foto che fa, si dovrebbe parlare anche della splendida\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389101223,"id_str":"3389101223","name":"_allyouneedisabook_","screen_name":"_hug_me_Payno_","location":"Sicilia, Italia","url":null,"description":"Quando la gente alza l'indice per giudicare tu alza il medio per ringraziare ~Louis Tomlinson. \nDirectioner.\n~Zquad~\n\u2764Baby I'm perfect for you\u2764","protected":false,"verified":false,"followers_count":396,"friends_count":691,"listed_count":2,"favourites_count":5867,"statuses_count":13153,"created_at":"Thu Jul 23 12:21:39 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663444085575938049\/gHZSAVns_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389101223\/1446376744","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:45:35 +0000 2015","id":663683852943101952,"id_str":"663683852943101952","text":"\u00e8 brutto per\u00f2 vedere che zayn malik sale in tendenza solo per le foto che fa, si dovrebbe parlare anche della splendida persona che \u00e8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2371681253,"id_str":"2371681253","name":"Rebs","screen_name":"ovunqueconzayn","location":null,"url":null,"description":"amo solo matt","protected":false,"verified":false,"followers_count":20360,"friends_count":2547,"listed_count":54,"favourites_count":25250,"statuses_count":62894,"created_at":"Fri Feb 28 19:42:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662765586750038016\/eXuyGFMR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662765586750038016\/eXuyGFMR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2371681253\/1446850604","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":58,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ovunqueconzayn","name":"Rebs","id":2371681253,"id_str":"2371681253","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274053443585,"id_str":"663728274053443585","text":"Quero muito achar 24 reais! Preciso de dois batons novos","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3068185217,"id_str":"3068185217","name":"Drielly","screen_name":"driibertoldo","location":"Apucarana, Paran\u00e1","url":null,"description":"Sou s\u00f3 decep\u00e7\u00e3o.","protected":false,"verified":false,"followers_count":84,"friends_count":124,"listed_count":0,"favourites_count":243,"statuses_count":675,"created_at":"Tue Mar 03 16:55:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658283194538663936\/8Gkuv56F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658283194538663936\/8Gkuv56F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3068185217\/1446120406","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080126666"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274023976960,"id_str":"663728274023976960","text":"Eval\u00faan 80 presos trasladados de la c\u00e1rcel de Hig\u00fcey https:\/\/t.co\/E3agKbvqGt","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2276592704,"id_str":"2276592704","name":"HenriquitOViiga","screen_name":"HenriquitOViiga","location":null,"url":null,"description":"P\u044f\u03b9\u043c\u0454\u044f\u03c3 D\u03b9\u03c3\u0455 | N\u03c3 S\u03c3\u0443 B\u03c3\u0438\u03b9\u0442\u03b9\u2113\u2113o | S\u03c3\u0443 H\u03c5\u043c\u03b9\u2113\u2202\u0454 P\u03c3\u044f\u05e3\u03c5\u0454 D\u0454 C\u03c3\u0442\u03b9zao N\u03c3 M\u0454 S\u03b1\u2113\u0454 |","protected":false,"verified":false,"followers_count":236,"friends_count":51,"listed_count":22,"favourites_count":0,"statuses_count":248397,"created_at":"Sat Jan 04 20:03:02 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/432215494070788096\/6RE11K7k.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/432215494070788096\/6RE11K7k.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509078431972077568\/tTbASOzE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509078431972077568\/tTbASOzE_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/E3agKbvqGt","expanded_url":"http:\/\/dlvr.it\/ChfnzK","display_url":"dlvr.it\/ChfnzK","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032365568,"id_str":"663728274032365568","text":"RT @poqwesdk: \u3010\u885d\u6483\u3011\u30a2\u30f3\u30ac\u30fc\u30eb\u30ba\u7530\u4e2d\u304c\u307e\u3055\u304b\u306e\u672c\u756a\u4e2d\u306b\u30d5\u30eb\u30dc\u30c3\u30ad\u653e\u9001\u4e8b\u6545\uff57\uff57\uff57\uff08\u753b\u50cf45\u679a\uff09\n\n\u21d2https:\/\/t.co\/iEA9Cz8vvH https:\/\/t.co\/QXqC6iAdHB","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003e\u82b8\u80fd\u30b4\u30b7\u30c3\u30d7\u30cb\u30e5\u30fc\u30b9\u307e\u3068\u3081\u3063\u305f\u30fc( ^\u03c9^ )\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3192411156,"id_str":"3192411156","name":"\u306c\u304f\u306c\u304f\u6e29\u6c34","screen_name":"uverworld0103k","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":2,"listed_count":0,"favourites_count":19,"statuses_count":74,"created_at":"Mon May 11 19:12:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644355329614938112\/7xS2hXw1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644355329614938112\/7xS2hXw1_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:01 +0000 2015","id":663722213128802304,"id_str":"663722213128802304","text":"\u3010\u885d\u6483\u3011\u30a2\u30f3\u30ac\u30fc\u30eb\u30ba\u7530\u4e2d\u304c\u307e\u3055\u304b\u306e\u672c\u756a\u4e2d\u306b\u30d5\u30eb\u30dc\u30c3\u30ad\u653e\u9001\u4e8b\u6545\uff57\uff57\uff57\uff08\u753b\u50cf45\u679a\uff09\n\n\u21d2https:\/\/t.co\/iEA9Cz8vvH https:\/\/t.co\/QXqC6iAdHB","source":"\u003ca href=\"http:\/\/some.com\" rel=\"nofollow\"\u003ewertkios\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4130363953,"id_str":"4130363953","name":"\u3055\u3086\u307f\u3093\u3050","screen_name":"poqwesdk","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":25,"friends_count":0,"listed_count":1,"favourites_count":0,"statuses_count":30,"created_at":"Thu Nov 05 02:28:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662094173072285696\/tWJyu99Z_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":30,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iEA9Cz8vvH","expanded_url":"http:\/\/bit.ly\/1gPL1EQ","display_url":"bit.ly\/1gPL1EQ","indices":[43,66]}],"user_mentions":[],"symbols":[],"media":[{"id":646904003658321920,"id_str":"646904003658321920","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","url":"https:\/\/t.co\/QXqC6iAdHB","display_url":"pic.twitter.com\/QXqC6iAdHB","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/646904004505563136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"medium":{"w":480,"h":336,"resize":"fit"},"large":{"w":480,"h":336,"resize":"fit"}},"source_status_id":646904004505563136,"source_status_id_str":"646904004505563136","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":646904003658321920,"id_str":"646904003658321920","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","url":"https:\/\/t.co\/QXqC6iAdHB","display_url":"pic.twitter.com\/QXqC6iAdHB","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/646904004505563136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"medium":{"w":480,"h":336,"resize":"fit"},"large":{"w":480,"h":336,"resize":"fit"}},"source_status_id":646904004505563136,"source_status_id_str":"646904004505563136","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iEA9Cz8vvH","expanded_url":"http:\/\/bit.ly\/1gPL1EQ","display_url":"bit.ly\/1gPL1EQ","indices":[57,80]}],"user_mentions":[{"screen_name":"poqwesdk","name":"\u3055\u3086\u307f\u3093\u3050","id":4130363953,"id_str":"4130363953","indices":[3,12]}],"symbols":[],"media":[{"id":646904003658321920,"id_str":"646904003658321920","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","url":"https:\/\/t.co\/QXqC6iAdHB","display_url":"pic.twitter.com\/QXqC6iAdHB","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/646904004505563136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"medium":{"w":480,"h":336,"resize":"fit"},"large":{"w":480,"h":336,"resize":"fit"}},"source_status_id":646904004505563136,"source_status_id_str":"646904004505563136","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"extended_entities":{"media":[{"id":646904003658321920,"id_str":"646904003658321920","indices":[82,105],"media_url":"http:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CPpDw43VEAAcXWr.jpg","url":"https:\/\/t.co\/QXqC6iAdHB","display_url":"pic.twitter.com\/QXqC6iAdHB","expanded_url":"http:\/\/twitter.com\/llpbghifpf\/status\/646904004505563136\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"medium":{"w":480,"h":336,"resize":"fit"},"large":{"w":480,"h":336,"resize":"fit"}},"source_status_id":646904004505563136,"source_status_id_str":"646904004505563136","source_user_id":1110429000,"source_user_id_str":"1110429000"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126661"} +{"delete":{"status":{"id":653891695839281153,"id_str":"653891695839281153","user_id":128454414,"user_id_str":"128454414"},"timestamp_ms":"1447080126734"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028101632,"id_str":"663728274028101632","text":"\u304a\u3044\u3057\u3044\u6c34\u3057\u304b\u98f2\u307f\u305f\u304f\u306a\u3044(\u00b4\u30fb\u03c9\u30fb\uff40)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351305897,"id_str":"351305897","name":"\u658e\u85e4\u304b\u306a\u3053","screen_name":"water_info","location":null,"url":"http:\/\/waterserver.mitsu-mall.com\/","description":"3\u6b73\u306e\u30c0\u30f3\u30b7\u30fc\u3092\u80b2\u3066\u3066\u3044\u308b\u4e3b\u5a66\u3067\u3059\u3002\r\n\r\n\u5065\u5eb7\u304c\u4e00\u756a\uff01\uff01","protected":false,"verified":false,"followers_count":1442,"friends_count":1858,"listed_count":8,"favourites_count":0,"statuses_count":49044,"created_at":"Tue Aug 09 02:12:46 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1485578369\/headline_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1485578369\/headline_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032365570,"id_str":"663728274032365570","text":"RT @sishabiq: Akan ada saatnya ketika cewek potong rambut pendek, mereka akan berkata 'miss my long hair'. Ya, namanya juga cewek.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1634333983,"id_str":"1634333983","name":"Sorry For Spam\u270c\ufe0f","screen_name":"mita_johar","location":"Pekanbaru,riau,world","url":null,"description":"Follback? Just mention,ga mention? Ga keliatan siapa yg nge follow gua ntar","protected":false,"verified":false,"followers_count":1316,"friends_count":697,"listed_count":1,"favourites_count":552,"statuses_count":21809,"created_at":"Wed Jul 31 01:58:13 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632886782854479872\/Dody0ele_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632886782854479872\/Dody0ele_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1634333983\/1441280262","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:06 +0000 2015","id":663725252942237696,"id_str":"663725252942237696","text":"Akan ada saatnya ketika cewek potong rambut pendek, mereka akan berkata 'miss my long hair'. Ya, namanya juga cewek.","source":"\u003ca href=\"https:\/\/notescepot.net\" rel=\"nofollow\"\u003eTweet Dream\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":15833034,"id_str":"15833034","name":"Shabiq Israth.","screen_name":"sishabiq","location":"Kota Surabaya, East Java","url":"http:\/\/shabiq.net\/","description":"Official Account of Shabiq Israth. Entrepreneur | Advertiser | Buzzer.\nContact : 085606187742 \/ 5449FCB6 \/\nsishabiq@gmail.com","protected":false,"verified":false,"followers_count":60048,"friends_count":4655,"listed_count":1,"favourites_count":1019,"statuses_count":10403,"created_at":"Wed Aug 13 04:45:42 +0000 2008","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/663241639888982016\/9h5gUzAh.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/663241639888982016\/9h5gUzAh.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663240986496143365\/r8RHOKt4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663240986496143365\/r8RHOKt4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/15833034\/1446781617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sishabiq","name":"Shabiq Israth.","id":15833034,"id_str":"15833034","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274053447680,"id_str":"663728274053447680","text":"RT @tweetforcetacea: @MarkhamMaryrose a couple of years but #anonymous took the site down they use to keep track of them \ud83d\ude06","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297217560,"id_str":"3297217560","name":"Maryrose Markham","screen_name":"MarkhamMaryrose","location":"Devizes, England","url":null,"description":"interior designer..photographer..part time poet ..when emotion moves me..lover of the voiceless especially dolphins..","protected":false,"verified":false,"followers_count":93,"friends_count":139,"listed_count":0,"favourites_count":1243,"statuses_count":803,"created_at":"Mon Jul 27 09:20:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644522722295459840\/6K4LsGa7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644522722295459840\/6K4LsGa7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297217560\/1442500084","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:19 +0000 2015","id":663728075977396226,"id_str":"663728075977396226","text":"@MarkhamMaryrose a couple of years but #anonymous took the site down they use to keep track of them \ud83d\ude06","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727546106818560,"in_reply_to_status_id_str":"663727546106818560","in_reply_to_user_id":3297217560,"in_reply_to_user_id_str":"3297217560","in_reply_to_screen_name":"MarkhamMaryrose","user":{"id":2943934487,"id_str":"2943934487","name":"Army of Lovers","screen_name":"tweetforcetacea","location":"Top Secret","url":"https:\/\/sites.google.com\/site\/opseaworld\/home","description":"#OpSeaworld Truth Team ~ #Faroeislands I show you No Mercy","protected":false,"verified":false,"followers_count":4254,"friends_count":3371,"listed_count":168,"favourites_count":19164,"statuses_count":187299,"created_at":"Sat Dec 27 15:22:23 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/555874953031999489\/rvEAXbK0.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/555874953031999489\/rvEAXbK0.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638655001888468992\/xoH04r6Q_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638655001888468992\/xoH04r6Q_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2943934487\/1419695662","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[{"text":"anonymous","indices":[39,49]}],"urls":[],"user_mentions":[{"screen_name":"MarkhamMaryrose","name":"Maryrose Markham","id":3297217560,"id_str":"3297217560","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"anonymous","indices":[60,70]}],"urls":[],"user_mentions":[{"screen_name":"tweetforcetacea","name":"Army of Lovers","id":2943934487,"id_str":"2943934487","indices":[3,19]},{"screen_name":"MarkhamMaryrose","name":"Maryrose Markham","id":3297217560,"id_str":"3297217560","indices":[21,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126666"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274024095744,"id_str":"663728274024095744","text":"RT @xerezle: @Xerezmania @XerezCD_OFICIAL incluso a los padres se les dec\u00eda que se sacaran abonos del @XerezCD_OFICIAL . Les devolver\u00e1n aho\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296993650,"id_str":"296993650","name":"Xerezmania","screen_name":"Xerezmania","location":"Jerez de la Frontera (Spain)","url":"http:\/\/www.xerezmania.com","description":"Portal multimedia dedicado al Xerez Club Deportivo y al Xerez Deportivo F\u00fatbol Club en f\u00fatbol y a otros deportes con jerezanos y jerezanas.","protected":false,"verified":false,"followers_count":2634,"friends_count":82,"listed_count":19,"favourites_count":158,"statuses_count":10447,"created_at":"Wed May 11 19:01:23 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000042233837\/854e4335aefdf0748c8145db4df85f4d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000042233837\/854e4335aefdf0748c8145db4df85f4d.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619089600745750528\/wZ-SPa1I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619089600745750528\/wZ-SPa1I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296993650\/1420986964","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:43:29 +0000 2015","id":663668223997575168,"id_str":"663668223997575168","text":"@Xerezmania @XerezCD_OFICIAL incluso a los padres se les dec\u00eda que se sacaran abonos del @XerezCD_OFICIAL . Les devolver\u00e1n ahora el dinero?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663666182382362624,"in_reply_to_status_id_str":"663666182382362624","in_reply_to_user_id":296993650,"in_reply_to_user_id_str":"296993650","in_reply_to_screen_name":"Xerezmania","user":{"id":396728767,"id_str":"396728767","name":"Antonio A.S.","screen_name":"xerezle","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":53,"friends_count":76,"listed_count":1,"favourites_count":50,"statuses_count":1425,"created_at":"Sun Oct 23 17:52:58 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/420975188805951488\/jlajeFCS_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/420975188805951488\/jlajeFCS_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/396728767\/1389203278","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Xerezmania","name":"Xerezmania","id":296993650,"id_str":"296993650","indices":[0,11]},{"screen_name":"XerezCD_OFICIAL","name":"XEREZ CLUB DEPORTIVO","id":148312997,"id_str":"148312997","indices":[12,28]},{"screen_name":"XerezCD_OFICIAL","name":"XEREZ CLUB DEPORTIVO","id":148312997,"id_str":"148312997","indices":[89,105]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xerezle","name":"Antonio A.S.","id":396728767,"id_str":"396728767","indices":[3,11]},{"screen_name":"Xerezmania","name":"Xerezmania","id":296993650,"id_str":"296993650","indices":[13,24]},{"screen_name":"XerezCD_OFICIAL","name":"XEREZ CLUB DEPORTIVO","id":148312997,"id_str":"148312997","indices":[25,41]},{"screen_name":"XerezCD_OFICIAL","name":"XEREZ CLUB DEPORTIVO","id":148312997,"id_str":"148312997","indices":[102,118]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028163072,"id_str":"663728274028163072","text":"RT @ValaAfshar: 1 make a list of things that make you happy\n2 make a list of things you do everyday\n3 compare lists\n4 adjust accordingly #m\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":300638430,"id_str":"300638430","name":"Marlene Foret","screen_name":"MarleneForet","location":"Southerly ","url":null,"description":"Well versed in the use of double-sided tape.","protected":false,"verified":false,"followers_count":616,"friends_count":786,"listed_count":7,"favourites_count":1156,"statuses_count":943,"created_at":"Wed May 18 03:11:23 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633157022360342528\/jd8m8idT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633157022360342528\/jd8m8idT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/300638430\/1443147925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:16:54 +0000 2015","id":663706832712695812,"id_str":"663706832712695812","text":"1 make a list of things that make you happy\n2 make a list of things you do everyday\n3 compare lists\n4 adjust accordingly #mondaymotivation","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":259725229,"id_str":"259725229","name":"Vala Afshar","screen_name":"ValaAfshar","location":"Boston","url":"http:\/\/www.huffingtonpost.com\/vala-afshar\/","description":"Chief Digital Evangelist @Salesforce | Blog: @HuffingtonPost | Book: http:\/\/bit.ly\/tposbe | Show: http:\/\/www.cxotalk.com","protected":false,"verified":true,"followers_count":91629,"friends_count":540,"listed_count":5294,"favourites_count":18,"statuses_count":245608,"created_at":"Wed Mar 02 13:31:29 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1259558245\/vala_300dpi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1259558245\/vala_300dpi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/259725229\/1439209336","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":39,"entities":{"hashtags":[{"text":"mondaymotivation","indices":[121,138]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"mondaymotivation","indices":[137,140]}],"urls":[],"user_mentions":[{"screen_name":"ValaAfshar","name":"Vala Afshar","id":259725229,"id_str":"259725229","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274015698944,"id_str":"663728274015698944","text":"status\/663694163205103616\/photo\/1\n\u0411\u043b\u0438\u043d \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043c\u043e\u0435\u0439 \u0441\u043c\u0435\u0440\u0442\u0438","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3435832546,"id_str":"3435832546","name":"\u00a9\u041b\u0430\u0440\u0440\u0438","screen_name":"Liza201083227","location":"\u0420\u043e\u0441\u0441\u0438\u044f","url":null,"description":null,"protected":false,"verified":false,"followers_count":247,"friends_count":54,"listed_count":0,"favourites_count":242,"statuses_count":222,"created_at":"Sat Aug 22 18:30:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657843374125219844\/l3sg-gUN.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657843374125219844\/l3sg-gUN.jpg","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663419147217469444\/fcuP1ucX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663419147217469444\/fcuP1ucX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3435832546\/1441973001","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080126657"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032492544,"id_str":"663728274032492544","text":"RT @ibrg_: \u0627\u0644\u0634\u0647\u0631\u0627\u0646\u064a \n\n\u0633\u0628\u0631\u0646\u062a \u0648\u0627\u062d\u062f \u0645\u0646 \u0627\u0644\u0638\u0647\u064a\u0631 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u0638\u0647\u064a\u0631 \u0627\u0644\u064a\u0645\u064a\u0646 \n\u0634\u0641\u062a\u0648\u0647 \u061f\u061f\n\n\u0627\u0646\u0642\u0637\u0639\u062a \u0639\u0637\u0627\u0647\u0627 \u0633\u0628\u0631\u0646\u062a \u062b\u0627\u0646\u064a \u0631\u062c\u0639 \u064a\u063a\u0637\u064a \n\n\u062a\u0634\u0631\u0628 \u0628\u0646\u0632\u064a\u0646 \u0637\u064a\u0627\u0631\u0627\u062a \u0627\u0646\u062a \u061f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3092891310,"id_str":"3092891310","name":"Ahamed","screen_name":"ahamed1119","location":null,"url":null,"description":"\u200f\u200f\u200f\u0627\u0644\u0647\u0644\u0627\u0644 \u062e\u0637 \u0623\u062d\u0645\u0631","protected":false,"verified":false,"followers_count":315,"friends_count":171,"listed_count":0,"favourites_count":1106,"statuses_count":6614,"created_at":"Tue Mar 17 08:51:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635525290647687168\/gFdLHn34_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635525290647687168\/gFdLHn34_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3092891310\/1438152210","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 30 19:32:33 +0000 2015","id":660177489944252416,"id_str":"660177489944252416","text":"\u0627\u0644\u0634\u0647\u0631\u0627\u0646\u064a \n\n\u0633\u0628\u0631\u0646\u062a \u0648\u0627\u062d\u062f \u0645\u0646 \u0627\u0644\u0638\u0647\u064a\u0631 \u0627\u0644\u064a\u0633\u0627\u0631 \u0644\u0644\u0638\u0647\u064a\u0631 \u0627\u0644\u064a\u0645\u064a\u0646 \n\u0634\u0641\u062a\u0648\u0647 \u061f\u061f\n\n\u0627\u0646\u0642\u0637\u0639\u062a \u0639\u0637\u0627\u0647\u0627 \u0633\u0628\u0631\u0646\u062a \u062b\u0627\u0646\u064a \u0631\u062c\u0639 \u064a\u063a\u0637\u064a \n\n\u062a\u0634\u0631\u0628 \u0628\u0646\u0632\u064a\u0646 \u0637\u064a\u0627\u0631\u0627\u062a \u0627\u0646\u062a \u061f","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246745837,"id_str":"246745837","name":"\u0628\u0631\u0642 # \u0634\u0628\u064a\u062d \u0627\u0644\u062c\u0628\u0631\u064a\u0646","screen_name":"ibrg_","location":"\u0627\u0644\u062e\u0640\u0640\u0640\u0627\u0635 \u0645\u0640\u0640\u0647\u0640\u0645\u0640\u0640\u0644 ","url":"http:\/\/tvquran.com","description":"\u0627\u062a\u0643\u0644\u0645 \u0628\u0643\u0644 \u0634\u064a \u0627\u0644\u0644\u0647\u0645 \u0631\u0628 \u0627\u0644\u0646\u0627\u0633 \u0627\u0630\u0647\u0628 \u0627\u0644\u0628\u0623\u0633 \u0627\u0634\u0641\u0650 \u0623\u0645\u064a \u0627\u0646\u062a \u0627\u0644\u0634\u0627\u0641\u064a \u0634\u0641\u0627\u0621 \u0644\u0627\u064a\u063a\u0627\u062f\u0631 \u0633\u0642\u0645\u0627 brg.almzon@gmail.com http:\/\/twitter.com\/ibrg_\/timeline\u2026","protected":false,"verified":false,"followers_count":65367,"friends_count":347,"listed_count":345,"favourites_count":289,"statuses_count":27570,"created_at":"Thu Feb 03 11:31:48 +0000 2011","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662140697781403648\/AVsX-Hhh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662140697781403648\/AVsX-Hhh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/246745837\/1429615533","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":280,"favorite_count":6,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ibrg_","name":"\u0628\u0631\u0642 # \u0634\u0628\u064a\u062d \u0627\u0644\u062c\u0628\u0631\u064a\u0646","id":246745837,"id_str":"246745837","indices":[3,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274053316608,"id_str":"663728274053316608","text":"RT @jnt__21grg: rt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3971252413,"id_str":"3971252413","name":"\u3010\u65b0\u57a2\u3011\u304a\u3090\u3082","screen_name":"hmhmdaan","location":null,"url":null,"description":"#\u30c8\u30ea\u30aa #\u30cf\u30d4\u30bb #\u3044\u3082\u307a\u3061 #\u304a\u3044\u3082\u7d44","protected":false,"verified":false,"followers_count":72,"friends_count":73,"listed_count":0,"favourites_count":236,"statuses_count":582,"created_at":"Wed Oct 21 17:11:41 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662301158812217344\/aYtF2vu0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662301158812217344\/aYtF2vu0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3971252413\/1446825344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727907181715456,"id_str":"663727907181715456","text":"rt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4080841212,"id_str":"4080841212","name":"\u3052\u308b\u305f\u3093\u306e\u30ea\u30b3\u30d4\u30f3","screen_name":"jnt__21grg","location":null,"url":null,"description":"NEXT\u25b6\ufe0f\u57ce\u30db03.24 \u3052\u308b\u3052\uff78\uff9d\u306b\u5922\u4e2d\u306aJK \u4e00\u5fdc\u639b\u3051\u6301\u3061\u3060\u30d2\u30e7\u30f3 \uff97\uff6f\uff77\uff68\uff68\uff68\uff68\uff68\uff68\uff68\u3067\u304d\u3066\u5e78\u305b","protected":false,"verified":false,"followers_count":8,"friends_count":8,"listed_count":0,"favourites_count":78,"statuses_count":139,"created_at":"Sat Oct 31 15:17:16 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660476904906997764\/9oxJYUmV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660476904906997764\/9oxJYUmV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4080841212\/1447057108","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jnt__21grg","name":"\u3052\u308b\u305f\u3093\u306e\u30ea\u30b3\u30d4\u30f3","id":4080841212,"id_str":"4080841212","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080126666"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274049077248,"id_str":"663728274049077248","text":"@mafu__1208 \n\u3053\u308c\u306f\u4ee5\u5916\u306b\u65b9\u304c\u6765\u307e\u3057\u305f\u306d\u30fc\uff08\u7b11\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728144344485888,"in_reply_to_status_id_str":"663728144344485888","in_reply_to_user_id":323209834,"in_reply_to_user_id_str":"323209834","in_reply_to_screen_name":"mafu__1208","user":{"id":1532465989,"id_str":"1532465989","name":"\u30b3\u30fc\u30d2\u30fc\u306e\u307f\u3061\u305f\u306b","screen_name":"takanotume1208","location":null,"url":null,"description":"\u8dea\u3051\u3002","protected":false,"verified":false,"followers_count":167,"friends_count":162,"listed_count":0,"favourites_count":409,"statuses_count":3222,"created_at":"Thu Jun 20 01:05:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657822223948886016\/cH8CIEOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657822223948886016\/cH8CIEOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1532465989\/1445672013","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mafu__1208","name":"ai","id":323209834,"id_str":"323209834","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126665"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036518913,"id_str":"663728274036518913","text":"RT @follow_misono: FoLLoW LIVE\u60c5\u5831\u203c\n\n10\/29 OSAKA MUSE(\u30bb\u30c3\u30b7\u30e7\u30f3\u30a4\u30d9\u30f3\u30c8)\n11\/04 OSAKA RUIDO\n11\/09 \u6d5c\u677eFORCE\n11\/13 OSAKA MUSE\n11\/16 HOLIDAY NAGOYA\n11\/27 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2909980368,"id_str":"2909980368","name":"\u7d17\u675e\u4f3d","screen_name":"sakika0822","location":"Japan KUMAMOTO","url":null,"description":null,"protected":false,"verified":false,"followers_count":44,"friends_count":68,"listed_count":0,"favourites_count":264,"statuses_count":2828,"created_at":"Tue Nov 25 13:04:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389440711131136\/oQSWetH8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389440711131136\/oQSWetH8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2909980368\/1446999341","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:19:35 +0000 2015","id":663541411518648321,"id_str":"663541411518648321","text":"FoLLoW LIVE\u60c5\u5831\u203c\n\n10\/29 OSAKA MUSE(\u30bb\u30c3\u30b7\u30e7\u30f3\u30a4\u30d9\u30f3\u30c8)\n11\/04 OSAKA RUIDO\n11\/09 \u6d5c\u677eFORCE\n11\/13 OSAKA MUSE\n11\/16 HOLIDAY NAGOYA\n11\/27 \u6e0b\u8c37STAR LOUNGE","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1467993997,"id_str":"1467993997","name":"FoLLoW \u30df\u30bd\u30ce","screen_name":"follow_misono","location":null,"url":"http:\/\/s.ameblo.jp\/misono-skywalker\/","description":"FoLLoW\u306e\u30ae\u30bf\u30ea\u30b9\u30c8\u3001\u304a\u307f\u305d\u3069\u3059\u266a \u6c17\u8efd\u306bFoLLoW me \u4eac\u90fd\u4eba 12\/2(\u6c34) 6th Single\u300c\u30d7\u30e9\u30cd\u30bf\u30ea\u30a6\u30e0\u300d\u767a\u58f2\u6c7a\u5b9a\uff01","protected":false,"verified":false,"followers_count":2467,"friends_count":143,"listed_count":37,"favourites_count":12,"statuses_count":4224,"created_at":"Wed May 29 18:42:22 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660471335924068352\/6R3JBwba_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660471335924068352\/6R3JBwba_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1467993997\/1440997894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"follow_misono","name":"FoLLoW \u30df\u30bd\u30ce","id":1467993997,"id_str":"1467993997","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028126208,"id_str":"663728274028126208","text":"RT @ggingggang_mon: \u3147\u3131\u3139\u3147 \ubaa8\ub4e0\uc5ec\uc790\uc758 \ub85c\ub9dd\uc544\ub2cc\uac00 https:\/\/t.co\/a2PvtfhQKa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988301962,"id_str":"2988301962","name":"\uc7c8\ub2c8\ub97c\ud5a5\ud55c\ub2ec\ub2d8 \ubcc0\ud0dc\ub798\uc694","screen_name":"xordnswoghks","location":"\uc7ac\ud658\uc624\ube60\ub97c \uc88b\uc544\ud560\uc218\uc788\ub294 \uc5b4\ub518\uac00\uc5d0","url":null,"description":"\ube45\uc2a4\ud32c\uc544\ud130\/\ud314\ub85c\uc804\uc5d0 \uadf8\ub9bc\uc2a4\ud0c0\uc77c\uc744 \uaf2d \ud655\uc778\ud574\uc8fc\uc138\uc694(\uad50\ubcf5\ubc84\uc804.\uc0ac\uadf9\ubc84\uc804.\ubc40\ud30c\uc774\uc5b4\ub4f1\ub4f1) \ud314\ub85c\ud6c4\uc5d0 \uba58\uc158\uc8fc\uc138\uc694(\ud32c\uc544\ud130\ubd84\ub4e4 \ub9de\ud314\ud569\ub2c8\ub2e4)\u2661 \uc26c\uc6b4\uc0ac\ub78c\uc785\ub2c8\ub2e4 \ub2e4\uac00\uc624\uc138\uc694\u2661","protected":false,"verified":false,"followers_count":963,"friends_count":157,"listed_count":1,"favourites_count":626,"statuses_count":29293,"created_at":"Sun Jan 18 10:21:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662630670762532864\/6LVADwuS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662630670762532864\/6LVADwuS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988301962\/1444780201","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 21:38:29 +0000 2015","id":662383508409597952,"id_str":"662383508409597952","text":"\u3147\u3131\u3139\u3147 \ubaa8\ub4e0\uc5ec\uc790\uc758 \ub85c\ub9dd\uc544\ub2cc\uac00 https:\/\/t.co\/a2PvtfhQKa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2199269634,"id_str":"2199269634","name":"\u261e\uc724\ubd09\ub2d8\u261c","screen_name":"ggingggang_mon","location":"\uc8fc\uad34\uc9e4, \ubc18\uc9c0 \uc8fc\ubb38 \ubc1b\uc544\uc694!","url":"http:\/\/m.blog.naver.com\/ingyeo2513\/220515620697","description":"CYPHERS \/\nONE OK ROCK \/\uc724\ubd09\ub2d8 \nFOLLOW FREE","protected":false,"verified":false,"followers_count":573,"friends_count":334,"listed_count":6,"favourites_count":6244,"statuses_count":84583,"created_at":"Sun Nov 17 10:04:53 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659678566074871808\/3q7Txtj1.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659678566074871808\/3q7Txtj1.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656122606337159168\/nZyONh7y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656122606337159168\/nZyONh7y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2199269634\/1444393560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1305,"favorite_count":239,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662383497827344384,"id_str":"662383497827344384","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":540,"h":506,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662383497827344384,"id_str":"662383497827344384","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":540,"h":506,"resize":"fit"}}},{"id":662383500381675520,"id_str":"662383500381675520","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSL1UYAANObk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSL1UYAANObk.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":539,"h":543,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"},"large":{"w":539,"h":543,"resize":"fit"}}},{"id":662383503061835776,"id_str":"662383503061835776","indices":[17,40],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSV0UYAAdTCK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSV0UYAAdTCK.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"large":{"w":360,"h":141,"resize":"fit"},"medium":{"w":360,"h":141,"resize":"fit"},"thumb":{"w":150,"h":141,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ggingggang_mon","name":"\u261e\uc724\ubd09\ub2d8\u261c","id":2199269634,"id_str":"2199269634","indices":[3,18]}],"symbols":[],"media":[{"id":662383497827344384,"id_str":"662383497827344384","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":540,"h":506,"resize":"fit"}},"source_status_id":662383508409597952,"source_status_id_str":"662383508409597952","source_user_id":2199269634,"source_user_id_str":"2199269634"}]},"extended_entities":{"media":[{"id":662383497827344384,"id_str":"662383497827344384","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSCUUYAA2ePA.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":540,"h":506,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":318,"resize":"fit"},"large":{"w":540,"h":506,"resize":"fit"}},"source_status_id":662383508409597952,"source_status_id_str":"662383508409597952","source_user_id":2199269634,"source_user_id_str":"2199269634"},{"id":662383500381675520,"id_str":"662383500381675520","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSL1UYAANObk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSL1UYAANObk.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"medium":{"w":539,"h":543,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":342,"resize":"fit"},"large":{"w":539,"h":543,"resize":"fit"}},"source_status_id":662383508409597952,"source_status_id_str":"662383508409597952","source_user_id":2199269634,"source_user_id_str":"2199269634"},{"id":662383503061835776,"id_str":"662383503061835776","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFCSV0UYAAdTCK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFCSV0UYAAdTCK.jpg","url":"https:\/\/t.co\/a2PvtfhQKa","display_url":"pic.twitter.com\/a2PvtfhQKa","expanded_url":"http:\/\/twitter.com\/ggingggang_mon\/status\/662383508409597952\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":133,"resize":"fit"},"large":{"w":360,"h":141,"resize":"fit"},"medium":{"w":360,"h":141,"resize":"fit"},"thumb":{"w":150,"h":141,"resize":"crop"}},"source_status_id":662383508409597952,"source_status_id_str":"662383508409597952","source_user_id":2199269634,"source_user_id_str":"2199269634"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080126660"} +{"delete":{"status":{"id":653949791139840000,"id_str":"653949791139840000","user_id":332549338,"user_id_str":"332549338"},"timestamp_ms":"1447080126743"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036518914,"id_str":"663728274036518914","text":"RT @fd4213dd024d44a: @Gurmeetramrahim #MSG2onTheTopInRajasthan thank you pita g Dhan Dhan satguru tera hi aasra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2883282319,"id_str":"2883282319","name":"pawandeep dhillon","screen_name":"pawandhillon11","location":"sirsa,Haryana","url":null,"description":"ex-student of shah satnam ji girl's clg ,sirsa ,done MBA","protected":false,"verified":false,"followers_count":706,"friends_count":52,"listed_count":0,"favourites_count":12642,"statuses_count":3696,"created_at":"Thu Oct 30 11:33:06 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645112878559657984\/roMQCje9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645112878559657984\/roMQCje9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2883282319\/1441183378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:41 +0000 2015","id":663722633125490689,"id_str":"663722633125490689","text":"@Gurmeetramrahim #MSG2onTheTopInRajasthan thank you pita g Dhan Dhan satguru tera hi aasra","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721562743267328,"in_reply_to_status_id_str":"663721562743267328","in_reply_to_user_id":2852359916,"in_reply_to_user_id_str":"2852359916","in_reply_to_screen_name":"Gurmeetramrahim","user":{"id":2868970304,"id_str":"2868970304","name":"Makhan insan","screen_name":"fd4213dd024d44a","location":"Sirsa","url":null,"description":"A S I commando punjab police","protected":false,"verified":false,"followers_count":578,"friends_count":124,"listed_count":1,"favourites_count":1869,"statuses_count":1519,"created_at":"Tue Oct 21 14:03:02 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/538202526449795072\/GcztzCel_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/538202526449795072\/GcztzCel_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2868970304\/1413991632","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[17,41]}],"urls":[],"user_mentions":[{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MSG2onTheTopInRajasthan","indices":[38,62]}],"urls":[],"user_mentions":[{"screen_name":"fd4213dd024d44a","name":"Makhan insan","id":2868970304,"id_str":"2868970304","indices":[3,19]},{"screen_name":"Gurmeetramrahim","name":"GURMEET RAM RAHIM","id":2852359916,"id_str":"2852359916","indices":[21,37]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274044940288,"id_str":"663728274044940288","text":"\u5fa1\u67f1\u306e\u30ac\u30f3\u30ad\u30e3\u30ce\u30f3 \/ \u96d1\u8ac7\u67a0 https:\/\/t.co\/igcVTHEgZJ","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245032056,"id_str":"3245032056","name":"\u6e96\u661f\u306f\u632f\u308a\u5b50\u306e\u9b54\u5c0e\u4eba\u5f62","screen_name":"patapatasora_f","location":"\u7d2b\u69d8\u306e\u4fdd\u8b77\u4e0b","url":"http:\/\/pixiv.me\/overside-link","description":"\u767d\u9ed2\u30a6\u30a3\u30eb\u30b9\u3068\u30a2\u30ea\u30b9\u75c5\u7570\u5909\u306e\u539f\u56e0 \u30a2\u30ea\u30b9\u304c\u597d\u304d\u904e\u304e\u3066\u5fc3\u304c\u58ca\u308c\u3066\u4eba\u9593\u3067\u306f\u306a\u304f\u306a\u3063\u3066\u3057\u307e\u3063\u305f\u30cb\u30e5\u30fc\u30bf\u30a4\u30d7\u306f\u3053\u3053\u3067\u3059\uff08\u5fc5\u8aad\uff09\u2192http:\/\/twpf.jp\/patapatasora_f","protected":false,"verified":false,"followers_count":303,"friends_count":311,"listed_count":28,"favourites_count":1259,"statuses_count":5550,"created_at":"Sun Jun 14 11:31:47 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660734931690086400\/0g5YxXMZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660734931690086400\/0g5YxXMZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3245032056\/1445174374","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/igcVTHEgZJ","expanded_url":"http:\/\/cas.st\/cd3bf7b","display_url":"cas.st\/cd3bf7b","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126664"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028146688,"id_str":"663728274028146688","text":"RT @ppotatto: \uc7a1\uc9e4\ub4a4\ub85c \ubc00\ub9ac\ub294\uacb8 ... #\uadf8\ub9bc\uccb4\uac00_\ucde8\ud5a5\uc774\ub2e4_rt https:\/\/t.co\/sVo2iTpU4q","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2235997141,"id_str":"2235997141","name":"\uc138\ub098\ub9c8\uce20","screen_name":"SeNa_sang","location":null,"url":null,"description":"[\uc624\uc18c\ub9c8\uce20\uc0c1] \uc774\uce58\ub9c8\uce20 \ucd5c\uc560 \/ \ud314\ub85c \ub298\ub9ac\ub294 \uc911 [FUB FREE]","protected":false,"verified":false,"followers_count":67,"friends_count":112,"listed_count":0,"favourites_count":33,"statuses_count":2187,"created_at":"Sun Dec 08 12:41:37 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663723111729135616\/0X1-sGnO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663723111729135616\/0X1-sGnO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2235997141\/1446027061","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 17:15:58 +0000 2015","id":661592666245722113,"id_str":"661592666245722113","text":"\uc7a1\uc9e4\ub4a4\ub85c \ubc00\ub9ac\ub294\uacb8 ... #\uadf8\ub9bc\uccb4\uac00_\ucde8\ud5a5\uc774\ub2e4_rt https:\/\/t.co\/sVo2iTpU4q","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":712613599,"id_str":"712613599","name":"\ube60\uac00\ucebc\uc7c8\/\u30d4\u30e8","screen_name":"ppotatto","location":"dodsesla@naver.com","url":"http:\/\/www.pixiv.net\/member.php?id=8426918","description":"\uc5b4\ub5bb\uac8c \ucf54\ucf54\uc544\uac00\ub8e8\ub791 \ucd08\ucf54\uad6c\ubd84\uc744 \ubabb\ud587\uc9c0 http:\/\/twpf.jp\/ppotatto \ubaa8\ub4e0\ubb38\uc758\ub294 \ubc11\uc73c \uba54\uc77c\ub85c","protected":false,"verified":false,"followers_count":18548,"friends_count":524,"listed_count":223,"favourites_count":18795,"statuses_count":14084,"created_at":"Mon Jul 23 15:35:40 +0000 2012","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBF7FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/659723324440772608\/UBCvpayM.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/659723324440772608\/UBCvpayM.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A19F3A","profile_text_color":"C4C36C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658232173271494656\/gkHrnGGn_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658232173271494656\/gkHrnGGn_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/712613599\/1446988311","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1482,"favorite_count":638,"entities":{"hashtags":[{"text":"\uadf8\ub9bc\uccb4\uac00_\ucde8\ud5a5\uc774\ub2e4_rt","indices":[14,27]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":661592664467345408,"id_str":"661592664467345408","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":428,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":661592664467345408,"id_str":"661592664467345408","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":428,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}}},{"id":661592616568356864,"id_str":"661592616568356864","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y-sCUAAAf8_U.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y-sCUAAAf8_U.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"large":{"w":420,"h":498,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"},"medium":{"w":420,"h":498,"resize":"fit"}}},{"id":661592622180372480,"id_str":"661592622180372480","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y_A8UkAAHc21.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y_A8UkAAHc21.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":674,"h":470,"resize":"fit"},"small":{"w":340,"h":237,"resize":"fit"}}},{"id":661592615763095556,"id_str":"661592615763095556","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y-pCUsAQ3vRy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y-pCUsAQ3vRy.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"large":{"w":385,"h":457,"resize":"fit"},"medium":{"w":385,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uadf8\ub9bc\uccb4\uac00_\ucde8\ud5a5\uc774\ub2e4_rt","indices":[28,41]}],"urls":[],"user_mentions":[{"screen_name":"ppotatto","name":"\ube60\uac00\ucebc\uc7c8\/\u30d4\u30e8","id":712613599,"id_str":"712613599","indices":[3,12]}],"symbols":[],"media":[{"id":661592664467345408,"id_str":"661592664467345408","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":428,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}},"source_status_id":661592666245722113,"source_status_id_str":"661592666245722113","source_user_id":712613599,"source_user_id_str":"712613599"}]},"extended_entities":{"media":[{"id":661592664467345408,"id_str":"661592664467345408","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5zBeeUkAAuVQe.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":428,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":242,"resize":"fit"},"large":{"w":1024,"h":731,"resize":"fit"}},"source_status_id":661592666245722113,"source_status_id_str":"661592666245722113","source_user_id":712613599,"source_user_id_str":"712613599"},{"id":661592616568356864,"id_str":"661592616568356864","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y-sCUAAAf8_U.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y-sCUAAAf8_U.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"large":{"w":420,"h":498,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"},"medium":{"w":420,"h":498,"resize":"fit"}},"source_status_id":661592666245722113,"source_status_id_str":"661592666245722113","source_user_id":712613599,"source_user_id_str":"712613599"},{"id":661592622180372480,"id_str":"661592622180372480","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y_A8UkAAHc21.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y_A8UkAAHc21.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":418,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":674,"h":470,"resize":"fit"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":661592666245722113,"source_status_id_str":"661592666245722113","source_user_id":712613599,"source_user_id_str":"712613599"},{"id":661592615763095556,"id_str":"661592615763095556","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CS5y-pCUsAQ3vRy.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CS5y-pCUsAQ3vRy.png","url":"https:\/\/t.co\/sVo2iTpU4q","display_url":"pic.twitter.com\/sVo2iTpU4q","expanded_url":"http:\/\/twitter.com\/ppotatto\/status\/661592666245722113\/photo\/1","type":"photo","sizes":{"large":{"w":385,"h":457,"resize":"fit"},"medium":{"w":385,"h":457,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":403,"resize":"fit"}},"source_status_id":661592666245722113,"source_status_id_str":"661592666245722113","source_user_id":712613599,"source_user_id_str":"712613599"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274049249280,"id_str":"663728274049249280","text":"Te quiero solo a ti\u2661\nLG..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":296288302,"id_str":"296288302","name":"N\u00e9stor Chilavert C.","screen_name":"ChilavertNestor","location":"Ypacarai-Paraguay.","url":null,"description":"Dios en primer lugar \u2661 Familia \u2661 Cerrista Fanatico ..","protected":false,"verified":false,"followers_count":617,"friends_count":1407,"listed_count":1,"favourites_count":232,"statuses_count":16382,"created_at":"Tue May 10 14:19:13 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650330082347757568\/sNi7WiF6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650330082347757568\/sNi7WiF6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/296288302\/1442714181","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080126665"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032431104,"id_str":"663728274032431104","text":"Get Weather Updates from The Weather Channel. 09:42:06","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2699213888,"id_str":"2699213888","name":"08041gnla","screen_name":"08041gnla","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":9,"listed_count":0,"favourites_count":0,"statuses_count":53540,"created_at":"Fri Aug 01 21:37:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274019717120,"id_str":"663728274019717120","text":"RT @rybuckcc: Pt 2 \ud83d\udd25 https:\/\/t.co\/blKbCWbRls","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3929317513,"id_str":"3929317513","name":"Noah Zamarron","screen_name":"NoahZamarron","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":215,"listed_count":0,"favourites_count":3,"statuses_count":3,"created_at":"Sat Oct 17 22:11:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 03:56:19 +0000 2015","id":663203369486389248,"id_str":"663203369486389248","text":"Pt 2 \ud83d\udd25 https:\/\/t.co\/blKbCWbRls","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2835127428,"id_str":"2835127428","name":"Buckeasy53","screen_name":"rybuckcc","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":110,"friends_count":91,"listed_count":0,"favourites_count":647,"statuses_count":507,"created_at":"Sun Sep 28 14:52:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659560133173772288\/7RCywA56_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659560133173772288\/7RCywA56_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2835127428\/1436583690","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":13,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663202966426390528,"id_str":"663202966426390528","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","url":"https:\/\/t.co\/blKbCWbRls","display_url":"pic.twitter.com\/blKbCWbRls","expanded_url":"http:\/\/twitter.com\/rybuckcc\/status\/663203369486389248\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663202966426390528,"id_str":"663202966426390528","indices":[7,30],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","url":"https:\/\/t.co\/blKbCWbRls","display_url":"pic.twitter.com\/blKbCWbRls","expanded_url":"http:\/\/twitter.com\/rybuckcc\/status\/663203369486389248\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/pl\/dlX4iyYg0rgGLAQY.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/480x480\/vwxKY0reqdBuiYdn.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/720x720\/4OkkEROi3sL2NLR6.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/480x480\/vwxKY0reqdBuiYdn.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/240x240\/xoWPyqCny4gUlN9-.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/pl\/dlX4iyYg0rgGLAQY.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rybuckcc","name":"Buckeasy53","id":2835127428,"id_str":"2835127428","indices":[3,12]}],"symbols":[],"media":[{"id":663202966426390528,"id_str":"663202966426390528","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","url":"https:\/\/t.co\/blKbCWbRls","display_url":"pic.twitter.com\/blKbCWbRls","expanded_url":"http:\/\/twitter.com\/rybuckcc\/status\/663203369486389248\/video\/1","type":"photo","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663203369486389248,"source_status_id_str":"663203369486389248","source_user_id":2835127428,"source_user_id_str":"2835127428"}]},"extended_entities":{"media":[{"id":663202966426390528,"id_str":"663202966426390528","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663202966426390528\/pu\/img\/g2XmKTGCHJOzQl6X.jpg","url":"https:\/\/t.co\/blKbCWbRls","display_url":"pic.twitter.com\/blKbCWbRls","expanded_url":"http:\/\/twitter.com\/rybuckcc\/status\/663203369486389248\/video\/1","type":"video","sizes":{"large":{"w":960,"h":960,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663203369486389248,"source_status_id_str":"663203369486389248","source_user_id":2835127428,"source_user_id_str":"2835127428","video_info":{"aspect_ratio":[1,1],"duration_millis":29967,"variants":[{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/pl\/dlX4iyYg0rgGLAQY.mpd"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/480x480\/vwxKY0reqdBuiYdn.webm"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/720x720\/4OkkEROi3sL2NLR6.mp4"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/480x480\/vwxKY0reqdBuiYdn.mp4"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/vid\/240x240\/xoWPyqCny4gUlN9-.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663202966426390528\/pu\/pl\/dlX4iyYg0rgGLAQY.m3u8"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080126658"} +{"delete":{"status":{"id":654235192555470848,"id_str":"654235192555470848","user_id":2679631056,"user_id_str":"2679631056"},"timestamp_ms":"1447080126748"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036559872,"id_str":"663728274036559872","text":"@20151106xD \u884c\u304d\u305f\u3044\u2661\u552f\u3061\u3083\u3093\u306b\u751f\u3067\u4f1a\u3044\u305f\u3044\u2661\n\u3067\u3082\u3001\u884c\u3051\u306a\u3044\ud83d\ude2d\n\u3044\u3064\u304b\u4f1a\u3044\u306b\u884c\u3051\u308b\u3088\u3046\u306b\u9811\u5f35\u308b\u306d\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663711691914391552,"in_reply_to_status_id_str":"663711691914391552","in_reply_to_user_id":4056688452,"in_reply_to_user_id_str":"4056688452","in_reply_to_screen_name":"20151106xD","user":{"id":3252650550,"id_str":"3252650550","name":"rina\u2192next1\u67089\u65e5in\u5927\u962a","screen_name":"koukogi_fudlove","location":null,"url":null,"description":"\u98a8\u7537\u587e\u3001THE HOOPERS\u3001AXELL\u3001\u305d\u306e\u4ed6\u30e2\u30ed\u30e2\u30ed\u2661\u798f\u4e95\u770c\u6c11 \u9ad8\u68212\u5e74\u751f\u2606\u8aa4\u30d5\u30a1\u30dc\u591a\u3044\u304b\u3082\u3002\u3002\u3002","protected":false,"verified":false,"followers_count":342,"friends_count":387,"listed_count":5,"favourites_count":6267,"statuses_count":4665,"created_at":"Mon Jun 22 13:19:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364648800923648\/PDKQh-MW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364648800923648\/PDKQh-MW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3252650550\/1446989885","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"20151106xD","name":"xD Official","id":4056688452,"id_str":"4056688452","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274044940289,"id_str":"663728274044940289","text":"RT @actorjisoo_th: \u0e22\u0e2d\u0e25\u0e23\u0e39\u0e49 \u0e22\u0e2d\u0e25\u0e40\u0e2b\u0e47\u0e19 #SassyGoGo #CheerUp (\u00a9:sassygogo_kbs) https:\/\/t.co\/3e4pwEHuWG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":485406247,"id_str":"485406247","name":"DontKnow","screen_name":"chickchick555","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":75,"friends_count":279,"listed_count":0,"favourites_count":72,"statuses_count":2312,"created_at":"Tue Feb 07 05:09:18 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654846312194510848\/JFiomJ_b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654846312194510848\/JFiomJ_b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/485406247\/1442659291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:36 +0000 2015","id":663727645452992512,"id_str":"663727645452992512","text":"\u0e22\u0e2d\u0e25\u0e23\u0e39\u0e49 \u0e22\u0e2d\u0e25\u0e40\u0e2b\u0e47\u0e19 #SassyGoGo #CheerUp (\u00a9:sassygogo_kbs) https:\/\/t.co\/3e4pwEHuWG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3178685128,"id_str":"3178685128","name":"KIMJISOO_THAILAND\u2661","screen_name":"actorjisoo_th","location":"\\\\ \u3161 \u2661 Luv Index \u3161 \/\/","url":"http:\/\/Instagram.com\/actor_jisoo","description":"\u2575\u2661 ACTOR KIM JISOO(\uc9c0\uc218)THAILAND FANBASE , 30 MARCH 1993 , PLEASE SUPPORT KIM JISOO \u2661\u2661 PLEASE TAKE OUT WITH FULL CREDIT\u2661\u2575 #\u0e17\u0e35\u0e21\u0e2e\u0e32\u0e08\u0e38\u0e19 #sassygogo #CheerUp","protected":false,"verified":false,"followers_count":2064,"friends_count":11,"listed_count":7,"favourites_count":13,"statuses_count":667,"created_at":"Sat Apr 18 05:20:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F5F5","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"BCD2D1","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662193164803923968\/iwrrZDv7_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662193164803923968\/iwrrZDv7_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3178685128\/1445359771","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":2,"entities":{"hashtags":[{"text":"SassyGoGo","indices":[15,25]},{"text":"CheerUp","indices":[26,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727628994543616,"id_str":"663727628994543616","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":748,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727628994543616,"id_str":"663727628994543616","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":748,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}}},{"id":663727629338435584,"id_str":"663727629338435584","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwyZUYAAs8Uk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwyZUYAAs8Uk.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":749,"h":408,"resize":"fit"},"medium":{"w":600,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SassyGoGo","indices":[34,44]},{"text":"CheerUp","indices":[45,53]}],"urls":[],"user_mentions":[{"screen_name":"actorjisoo_th","name":"KIMJISOO_THAILAND\u2661","id":3178685128,"id_str":"3178685128","indices":[3,17]}],"symbols":[],"media":[{"id":663727628994543616,"id_str":"663727628994543616","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":748,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663727645452992512,"source_status_id_str":"663727645452992512","source_user_id":3178685128,"source_user_id_str":"3178685128"}]},"extended_entities":{"media":[{"id":663727628994543616,"id_str":"663727628994543616","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwxHVAAAqswy.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":330,"resize":"fit"},"large":{"w":748,"h":412,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":187,"resize":"fit"}},"source_status_id":663727645452992512,"source_status_id_str":"663727645452992512","source_user_id":3178685128,"source_user_id_str":"3178685128"},{"id":663727629338435584,"id_str":"663727629338435584","indices":[72,95],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwyZUYAAs8Uk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwyZUYAAs8Uk.jpg","url":"https:\/\/t.co\/3e4pwEHuWG","display_url":"pic.twitter.com\/3e4pwEHuWG","expanded_url":"http:\/\/twitter.com\/actorjisoo_th\/status\/663727645452992512\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":185,"resize":"fit"},"large":{"w":749,"h":408,"resize":"fit"},"medium":{"w":600,"h":326,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727645452992512,"source_status_id_str":"663727645452992512","source_user_id":3178685128,"source_user_id_str":"3178685128"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080126664"} +{"delete":{"status":{"id":654576122349260800,"id_str":"654576122349260800","user_id":143378594,"user_id_str":"143378594"},"timestamp_ms":"1447080126814"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274032455681,"id_str":"663728274032455681","text":"@EIman77777 @YousefAlazmi90 \u0627\u0646 \u0634\u0627\u0621 \u0627\u0644\u0644\u0647","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727953830899713,"in_reply_to_status_id_str":"663727953830899713","in_reply_to_user_id":3075194112,"in_reply_to_user_id_str":"3075194112","in_reply_to_screen_name":"EIman77777","user":{"id":4111435132,"id_str":"4111435132","name":"\u0627\u0646\u062f\u0631\u064a\u0633 \u0645\u064a\u0633\u064a","screen_name":"Barsh4_61997","location":null,"url":null,"description":"\u0627\u0646\u0627 \u0627\u0644\u0630\u064a \u0646\u0636\u0631 \u0627\u0644\u0639\u0627\u0634\u0642 \u0627\u0644\u0649 \u0642\u062f\u0645\u064a\n\u0648\u0627\u0637\u0631\u0628\u062a \u0645\u0631\u0627\u0648\u063a\u0627\u062a\u064a \u0645\u0646 \u0628\u0647 \u0645\u0644\u0644\n\u0627\u0646\u0627 \u0645\u064a\u0633\u064a \u0643\u0628\u064a\u0631\u0647\u0645 \u0639\u0644\u0649 \u0635\u063a\u0631\u064a\n(\u0639\u0627\u0634\u0642 \u0627\u0644\u0645\u062a\u0639\u0647 \u0648\u0627\u0630\u0627 \u0630\u0643\u0631\u0629 \u0627\u0644\u0645\u062a\u0639\u0647 \u0641\u062a\u0639\u0646\u064a \u0627\u0644\u0628\u0644\u0627\u0648\u063a\u0631\u0648\u0627\u0646\u0627","protected":false,"verified":false,"followers_count":91,"friends_count":873,"listed_count":0,"favourites_count":19,"statuses_count":66,"created_at":"Wed Nov 04 10:42:17 +0000 2015","utc_offset":7200,"time_zone":"Harare","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661857532768600064\/4-Ajxmeo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661857532768600064\/4-Ajxmeo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4111435132\/1446634190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"EIman77777","name":"\u2661\u0639\u0627\u0634\u0642\u0629 \u0627\u0646\u0641\u0627\u0633 \u0645\u064a\u0633\u064a\u2661","id":3075194112,"id_str":"3075194112","indices":[0,11]},{"screen_name":"YousefAlazmi90","name":"\u064a\u0648\u0648\u0648\u0633\u0641 #Bar\u00e7a","id":581062591,"id_str":"581062591","indices":[12,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080126661"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036666368,"id_str":"663728274036666368","text":"OfertasOnlineE: OfertasOnlineE: frescoway: \u00a1No te pierdas las #Ofertas Frescas! \nDon't miss the Frescas #Offers!! https:\/\/t.co\/EJiSPHQHik","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4084325357,"id_str":"4084325357","name":"+Ofertas Online","screen_name":"OfertasOnlineE","location":"ESPA\u00d1A","url":null,"description":"Todas las OFERTAS en un mismo lugar. +Ofertas +Promociones +Descuentos +Concursos. (ESPA\u00d1A)","protected":false,"verified":false,"followers_count":75,"friends_count":147,"listed_count":30,"favourites_count":7,"statuses_count":10335,"created_at":"Sat Oct 31 18:27:42 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660564087273865216\/K94-6PhR_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660564087273865216\/K94-6PhR_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4084325357\/1446325749","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Ofertas","indices":[62,70]},{"text":"Offers","indices":[104,111]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720512594554881,"id_str":"663720512594554881","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCSidWsAEdt6u.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCSidWsAEdt6u.png","url":"https:\/\/t.co\/EJiSPHQHik","display_url":"pic.twitter.com\/EJiSPHQHik","expanded_url":"http:\/\/twitter.com\/frescoway\/status\/663720512917544961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663720512917544961,"source_status_id_str":"663720512917544961","source_user_id":428915520,"source_user_id_str":"428915520"}]},"extended_entities":{"media":[{"id":663720512594554881,"id_str":"663720512594554881","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCSidWsAEdt6u.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCSidWsAEdt6u.png","url":"https:\/\/t.co\/EJiSPHQHik","display_url":"pic.twitter.com\/EJiSPHQHik","expanded_url":"http:\/\/twitter.com\/frescoway\/status\/663720512917544961\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1024,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663720512917544961,"source_status_id_str":"663720512917544961","source_user_id":428915520,"source_user_id_str":"428915520"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126662"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274023907328,"id_str":"663728274023907328","text":"@luvkpop88 @myrh_luv \u30ef\u30ed\u30b9......","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728182487461889,"in_reply_to_status_id_str":"663728182487461889","in_reply_to_user_id":3192033756,"in_reply_to_user_id_str":"3192033756","in_reply_to_screen_name":"luvkpop88","user":{"id":3302519268,"id_str":"3302519268","name":"\u7530\u6751\u90a3\u5948","screen_name":"tmnn0623","location":"\u5927\u4e95\u306eJK\u3084\u3063\u3066\u307e\u3059\u3045","url":null,"description":"@myrh_luv \u261c\u3053\u308c\u304b\u3089\u3082\u30e8\u30ed\u30b7\u30af\u306a\u4ffa\u306e\u30b5\u30a4\u30c9","protected":false,"verified":false,"followers_count":203,"friends_count":230,"listed_count":0,"favourites_count":2712,"statuses_count":411,"created_at":"Fri Jul 31 15:45:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662647557785391104\/eYG8zHSM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662647557785391104\/eYG8zHSM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3302519268\/1447003572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"luvkpop88","name":"\u6c34\u53e3\u5948\u7a57","id":3192033756,"id_str":"3192033756","indices":[0,10]},{"screen_name":"myrh_luv","name":"\u585a\u7530\u7f8e\u6708","id":3119419448,"id_str":"3119419448","indices":[11,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126659"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274045018112,"id_str":"663728274045018112","text":"@lakers Royalty at The Garden! @ Madison Square Garden https:\/\/t.co\/95pQaN6scW","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":20346956,"in_reply_to_user_id_str":"20346956","in_reply_to_screen_name":"Lakers","user":{"id":2752028635,"id_str":"2752028635","name":"Carlos Velazquez","screen_name":"pelado_1976","location":"Olavarr\u00eda, Argentina","url":null,"description":"soy el clasico periodista deportivo fracasado que todos llevamos dentro, fiel a messi y barcelona, amante de la NBA. y el tenis..","protected":false,"verified":false,"followers_count":339,"friends_count":159,"listed_count":113,"favourites_count":13,"statuses_count":259984,"created_at":"Thu Aug 21 12:12:15 +0000 2014","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583571735204630528\/Bx115vg0.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583571735204630528\/Bx115vg0.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/628733202916618240\/WFoE4nuR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/628733202916618240\/WFoE4nuR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2752028635\/1433626624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"01dbe379659a52ab","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/01dbe379659a52ab.json","place_type":"city","name":"Olavarr\u00eda","full_name":"Olavarr\u00eda, Argentina","country_code":"AR","country":"Argentina","bounding_box":{"type":"Polygon","coordinates":[[[-60.358959,-36.926781],[-60.358959,-36.869028],[-60.285038,-36.869028],[-60.285038,-36.926781]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Lakers","name":"Los Angeles Lakers","id":20346956,"id_str":"20346956","indices":[0,7]}],"symbols":[],"media":[{"id":663728272870662144,"id_str":"663728272870662144","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWPvW4AAAzV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWPvW4AAAzV7.jpg","url":"https:\/\/t.co\/95pQaN6scW","display_url":"pic.twitter.com\/95pQaN6scW","expanded_url":"http:\/\/twitter.com\/pelado_1976\/status\/663728274045018112\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":547,"resize":"fit"},"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728272870662144,"id_str":"663728272870662144","indices":[55,78],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWPvW4AAAzV7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWPvW4AAAzV7.jpg","url":"https:\/\/t.co\/95pQaN6scW","display_url":"pic.twitter.com\/95pQaN6scW","expanded_url":"http:\/\/twitter.com\/pelado_1976\/status\/663728274045018112\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":547,"resize":"fit"},"small":{"w":340,"h":290,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":512,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126664"} +{"delete":{"status":{"id":663712197277798400,"id_str":"663712197277798400","user_id":2740014664,"user_id_str":"2740014664"},"timestamp_ms":"1447080126889"}} +{"delete":{"status":{"id":656264086431264770,"id_str":"656264086431264770","user_id":1331914170,"user_id_str":"1331914170"},"timestamp_ms":"1447080126871"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028290048,"id_str":"663728274028290048","text":"Cod Black Ops III \"Die Kampagne Darkblack & Re3ly 001\": https:\/\/t.co\/qKQ45Fto6g via @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3334921894,"id_str":"3334921894","name":"Dark Black","screen_name":"DBEUGameplays","location":"Oldenburg, Niedersachsen","url":"http:\/\/www.darkblack.eu","description":"http:\/\/www.youtube.com\/c\/DarkBlackEu","protected":false,"verified":false,"followers_count":18,"friends_count":51,"listed_count":0,"favourites_count":3,"statuses_count":377,"created_at":"Fri Jun 19 14:27:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"070000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653640931686653952\/AfoY52wG_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653640931686653952\/AfoY52wG_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3334921894\/1438408033","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qKQ45Fto6g","expanded_url":"http:\/\/youtu.be\/_TipdGKlIyU?a","display_url":"youtu.be\/_TipdGKlIyU?a","indices":[60,83]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[88,96]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126660"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274036666370,"id_str":"663728274036666370","text":"#cartoonboots #style #dresdenchick #hipstar #autumnleaves by jazbrownorchid https:\/\/t.co\/UZ6OFTE7ja https:\/\/t.co\/vkyuEHytiV","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2975091862,"id_str":"2975091862","name":"instaDresden","screen_name":"InstaDresden","location":"Germany","url":null,"description":"Latest photos from Dresden via Instagram","protected":false,"verified":false,"followers_count":444,"friends_count":10,"listed_count":496,"favourites_count":0,"statuses_count":76606,"created_at":"Mon Jan 12 18:01:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/555085380807327745\/Xszsrqw2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/555085380807327745\/Xszsrqw2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2975091862\/1421178041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"cartoonboots","indices":[0,13]},{"text":"style","indices":[14,20]},{"text":"dresdenchick","indices":[21,34]},{"text":"hipstar","indices":[35,43]},{"text":"autumnleaves","indices":[44,57]}],"urls":[{"url":"https:\/\/t.co\/UZ6OFTE7ja","expanded_url":"http:\/\/ift.tt\/1kkCKeR","display_url":"ift.tt\/1kkCKeR","indices":[76,99]}],"user_mentions":[],"symbols":[],"media":[{"id":663728273457864704,"id_str":"663728273457864704","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWR7W4AAzPeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWR7W4AAzPeu.jpg","url":"https:\/\/t.co\/vkyuEHytiV","display_url":"pic.twitter.com\/vkyuEHytiV","expanded_url":"http:\/\/twitter.com\/InstaDresden\/status\/663728274036666370\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728273457864704,"id_str":"663728273457864704","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWR7W4AAzPeu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWR7W4AAzPeu.jpg","url":"https:\/\/t.co\/vkyuEHytiV","display_url":"pic.twitter.com\/vkyuEHytiV","expanded_url":"http:\/\/twitter.com\/InstaDresden\/status\/663728274036666370\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080126662"} +{"delete":{"status":{"id":663382831150698497,"id_str":"663382831150698497","user_id":507060211,"user_id_str":"507060211"},"timestamp_ms":"1447080126892"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274044948481,"id_str":"663728274044948481","text":"\u3060\u308c\u3082\u69cb\u3063\u3066\u304f\u308c\u3078\u3093(\u00b4\uff65_\uff65`) https:\/\/t.co\/gfY5bQgU0G","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2940161846,"id_str":"2940161846","name":"(\u00b4^\u03c9^\uff40)\uff9c\uff9b\uff81","screen_name":"warochi2015","location":"\u304b\u306a\u304c\u308f","url":null,"description":"\u30b9\u30bf\u30a4\u30eb\/\u30b7\u30eb\u30a8\u30c3\u30c8\/\u7f8e\u811a\/183\/61\/Black\/if\/Gold\/Visual\/ChromeHearts\/\u7f8e\u5c11\u5973\/\u307e\u3069\u304b\/ eco\u30c9\u30e9\u30a4\u30d6\/ (\u00b4^\u03c9^\uff40)\uff9c\uff9b\uff81\u30e3\u30f3\u30c7\u30b9","protected":false,"verified":false,"followers_count":118,"friends_count":219,"listed_count":0,"favourites_count":233,"statuses_count":222,"created_at":"Tue Dec 23 02:21:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631675563757858816\/5TS0FajO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631675563757858816\/5TS0FajO_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728264486109185,"id_str":"663728264486109185","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVwgUwAED4W2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVwgUwAED4W2.jpg","url":"https:\/\/t.co\/gfY5bQgU0G","display_url":"pic.twitter.com\/gfY5bQgU0G","expanded_url":"http:\/\/twitter.com\/warochi2015\/status\/663728274044948481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728264486109185,"id_str":"663728264486109185","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVwgUwAED4W2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVwgUwAED4W2.jpg","url":"https:\/\/t.co\/gfY5bQgU0G","display_url":"pic.twitter.com\/gfY5bQgU0G","expanded_url":"http:\/\/twitter.com\/warochi2015\/status\/663728274044948481\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080126664"} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274028171264,"id_str":"663728274028171264","text":"Fox News Sierra Leone declared free of Ebola as Guinea struggles Fox News Cheers erupted and people danced in the\u2026 https:\/\/t.co\/3jFEHoWCB8","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":634516667,"id_str":"634516667","name":"Yvette","screen_name":"YvetteIDK","location":"Washington [USA]","url":"http:\/\/twitter.com\/yvetteidk","description":"All the news 7\/7 & 24\/24","protected":false,"verified":false,"followers_count":299,"friends_count":138,"listed_count":66,"favourites_count":0,"statuses_count":533557,"created_at":"Fri Jul 13 11:57:57 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2393816647\/y9mbyjt8fhw8g7p0tkx9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2393816647\/y9mbyjt8fhw8g7p0tkx9_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3jFEHoWCB8","expanded_url":"http:\/\/dlvr.it\/ChfkRz","display_url":"dlvr.it\/ChfkRz","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126660"} +{"delete":{"status":{"id":661947586476171264,"id_str":"661947586476171264","user_id":1911995336,"user_id_str":"1911995336"},"timestamp_ms":"1447080126951"}} +{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274015653888,"id_str":"663728274015653888","text":"Yallllllllllll ..... why ?! https:\/\/t.co\/moPQxN38J9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":164451831,"id_str":"164451831","name":"Virgil Hawkins","screen_name":"_JimScreechie_","location":"In your fridge ","url":"http:\/\/smarturl.it\/DAWNxDANCE","description":"04|15 #KuntBrigade #Hearts @azealiabanks | @dawnrichard","protected":false,"verified":false,"followers_count":715,"friends_count":635,"listed_count":11,"favourites_count":847,"statuses_count":59140,"created_at":"Thu Jul 08 22:42:00 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/356936768\/Jim.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/356936768\/Jim.jpg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662821489356378112\/l_15xpEo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662821489356378112\/l_15xpEo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164451831\/1443452695","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728270442151936,"id_str":"663728270442151936","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWGsWwAAnVLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWGsWwAAnVLa.jpg","url":"https:\/\/t.co\/moPQxN38J9","display_url":"pic.twitter.com\/moPQxN38J9","expanded_url":"http:\/\/twitter.com\/_JimScreechie_\/status\/663728274015653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728270442151936,"id_str":"663728270442151936","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWGsWwAAnVLa.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWGsWwAAnVLa.jpg","url":"https:\/\/t.co\/moPQxN38J9","display_url":"pic.twitter.com\/moPQxN38J9","expanded_url":"http:\/\/twitter.com\/_JimScreechie_\/status\/663728274015653888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080126657"} +{"delete":{"status":{"id":663714491570475008,"id_str":"663714491570475008","user_id":231590362,"user_id_str":"231590362"},"timestamp_ms":"1447080127058"}} +{"delete":{"status":{"id":663727661684948992,"id_str":"663727661684948992","user_id":1129943940,"user_id_str":"1129943940"},"timestamp_ms":"1447080127240"}} +{"delete":{"status":{"id":339356548088352769,"id_str":"339356548088352769","user_id":871444819,"user_id_str":"871444819"},"timestamp_ms":"1447080127432"}} +{"delete":{"status":{"id":662706566739697665,"id_str":"662706566739697665","user_id":417139377,"user_id_str":"417139377"},"timestamp_ms":"1447080127466"}} +{"delete":{"status":{"id":663694258247856128,"id_str":"663694258247856128","user_id":2958608425,"user_id_str":"2958608425"},"timestamp_ms":"1447080127671"}} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278247731200,"id_str":"663728278247731200","text":"it's about damn time","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":415384015,"id_str":"415384015","name":"\u263dcourt\u263e","screen_name":"IiIacwood","location":"TRUSTNO1","url":"https:\/\/www.goodreads.com\/floralfallal","description":"I like to read books and eat oranges. \u273f @battIebear \u273f","protected":false,"verified":false,"followers_count":336,"friends_count":195,"listed_count":8,"favourites_count":31587,"statuses_count":82343,"created_at":"Fri Nov 18 08:09:23 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFE5EE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621195752564326400\/i_N649nO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621195752564326400\/i_N649nO.png","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"4B4959","profile_text_color":"C9939C","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660745428812619776\/YiNrQS1C_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660745428812619776\/YiNrQS1C_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/415384015\/1446887756","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127666"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278218248192,"id_str":"663728278218248192","text":"\u3075\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3012333606,"id_str":"3012333606","name":"\u9234\u862d@\u7537\u306e\u5b50\u25ce","screen_name":"reiran2851","location":null,"url":"http:\/\/www.wtrpg10.com","description":"\u30af\u30e9\u30a6\u30b2\u30fc\u30c8\u306eWRPG\u300c\u30d5\u30a1\u30ca\u30c6\u30a3\u30c3\u30af\u30d6\u30e9\u30c3\u30c9\u300dPC\u306e\u6a39\u5c0e\u9234\u862d\u3068\u304b\u306e\u80cc\u5f8c\u3055\u3093\u306eTwitter\u3060\u3088\u3002\u9234\u862d\u304f\u3093\u591a\u3081\u304b\u306a\u00d7\u9234\u862d\u304f\u3093\u80cc\u5f8c\u591a\u3081\u25cb OMC\u5546\u54c1\u3060\u304b\u3089\u30a2\u30a4\u30b3\u30f3\u3084\u30d8\u30c3\u30c0\u30fc\u306e\u753b\u50cf\u306f\u8ee2\u8f09\u7981\u6b62\u3060\u3088\u3002","protected":false,"verified":false,"followers_count":63,"friends_count":92,"listed_count":0,"favourites_count":1583,"statuses_count":14169,"created_at":"Sat Feb 07 13:10:46 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652104441718411264\/H7E76gc8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652104441718411264\/H7E76gc8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3012333606\/1436173266","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127659"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278214205440,"id_str":"663728278214205440","text":"RT @Mike_Royale: Cold weather = cozier bed = missed classes","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1410203215,"id_str":"1410203215","name":"ScreaminScreamin","screen_name":"ScreamInSpanish","location":"dc native ","url":null,"description":"you can live thru anything if Magic made it...dsu psych major","protected":false,"verified":false,"followers_count":722,"friends_count":688,"listed_count":1,"favourites_count":2680,"statuses_count":40311,"created_at":"Tue May 07 12:57:03 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662470865284685825\/u6GQYPoE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662470865284685825\/u6GQYPoE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1410203215\/1447019515","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:50 +0000 2015","id":663726191153709056,"id_str":"663726191153709056","text":"Cold weather = cozier bed = missed classes","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335065651,"id_str":"335065651","name":"Michael Scofield ","screen_name":"Mike_Royale","location":"Washington, DC","url":null,"description":"First things first, RIP LilChris! || DC \u2708\ufe0fATL || life's too short for long bios || Morehouse","protected":false,"verified":false,"followers_count":875,"friends_count":546,"listed_count":4,"favourites_count":210,"statuses_count":51687,"created_at":"Thu Jul 14 03:00:33 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/570561500\/f41k2122xm08nekadpit.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/570561500\/f41k2122xm08nekadpit.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638529880494354432\/I0-D8olB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638529880494354432\/I0-D8olB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335065651\/1399870889","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mike_Royale","name":"Michael Scofield ","id":335065651,"id_str":"335065651","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127658"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278214168576,"id_str":"663728278214168576","text":"@Mzdamsel_","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3198762127,"in_reply_to_user_id_str":"3198762127","in_reply_to_screen_name":"Mzdamsel_","user":{"id":4149075160,"id_str":"4149075160","name":"Rev. Rev. Churchman","screen_name":"ChurchmanRev","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":17,"friends_count":111,"listed_count":0,"favourites_count":0,"statuses_count":1,"created_at":"Mon Nov 09 12:16:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mzdamsel_","name":"PLEASE FOLLOW BACK","id":3198762127,"id_str":"3198762127","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080127658"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235037696,"id_str":"663728278235037696","text":"\u304b\u3089\u3060\u306e\u3075\u3057\u3076\u3057\u304c\u3044\u305f\u3044(*\u00b4\u2235`*)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333289972,"id_str":"333289972","name":"Sihon","screen_name":"mugita58","location":null,"url":null,"description":"\u3055\u304f\u3089\u3070\uff0f\u306d\u3053\uff0f\u30b1\u30b0\u30e0\uff0f\u7a7a\u98db\u3076\u5e83\u5831\u5ba4\uff0f\u3059\u307e\u3063\u3077\u203c\ufe0e","protected":false,"verified":false,"followers_count":45,"friends_count":93,"listed_count":0,"favourites_count":1176,"statuses_count":4856,"created_at":"Mon Jul 11 09:10:49 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650954483447394304\/aMkCpT3a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650954483447394304\/aMkCpT3a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/333289972\/1445618550","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235193345,"id_str":"663728278235193345","text":"RT @ibrahemsbrisha: @D_gohary \u0627\u0647 \u0631\u0645\u0632 \u0627\u0644\u062a\u0644\u064a\u0641\u0648\u0646 \u0627\u0644\u0645\u062d\u0645\u0648\u0644 :D ... \u0627\u0644\u0634\u0639\u0627\u0631 \u0644\u0641\u062a \u0646\u0638\u0631\u064a :D","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3352899700,"id_str":"3352899700","name":"D for dalietta","screen_name":"D_gohary","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u0644\u0648 \u0627\u0646\u062c\u0628 \u0647\u062a\u0644\u0631 \u0627\u0628\u0646\u0629 \u0641\u064a \u0647\u0630\u0627 \u0627\u0644\u0639\u0627\u0644\u0645 ... \u0644\u0643\u0646\u062a \u0627\u0628\u0646\u062a\u0647 \u0627\u0644\u0634\u0631\u0639\u064a\u0629 \n \n http:\/\/m.ask.fm\/daliaelgohary\u200e\u200e\u200e\u200e","protected":false,"verified":false,"followers_count":495,"friends_count":223,"listed_count":0,"favourites_count":1357,"statuses_count":3214,"created_at":"Wed Jul 01 05:39:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662346022891425792\/0zjRvasz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662346022891425792\/0zjRvasz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3352899700\/1445978736","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:21 +0000 2015","id":663727833328574464,"id_str":"663727833328574464","text":"@D_gohary \u0627\u0647 \u0631\u0645\u0632 \u0627\u0644\u062a\u0644\u064a\u0641\u0648\u0646 \u0627\u0644\u0645\u062d\u0645\u0648\u0644 :D ... \u0627\u0644\u0634\u0639\u0627\u0631 \u0644\u0641\u062a \u0646\u0638\u0631\u064a :D","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727255999377408,"in_reply_to_status_id_str":"663727255999377408","in_reply_to_user_id":3352899700,"in_reply_to_user_id_str":"3352899700","in_reply_to_screen_name":"D_gohary","user":{"id":2519177698,"id_str":"2519177698","name":"Salem Salem","screen_name":"ibrahemsbrisha","location":null,"url":null,"description":"medical student and this is the problem","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":7966,"created_at":"Wed Apr 30 14:52:17 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660247207417876480\/r6tJQiZh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660247207417876480\/r6tJQiZh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2519177698\/1428949141","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"D_gohary","name":"D for dalietta","id":3352899700,"id_str":"3352899700","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ibrahemsbrisha","name":"Salem Salem","id":2519177698,"id_str":"2519177698","indices":[3,18]},{"screen_name":"D_gohary","name":"D for dalietta","id":3352899700,"id_str":"3352899700","indices":[20,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222565378,"id_str":"663728278222565378","text":"RT @DazzlingTraffic: 15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2354127612,"id_str":"2354127612","name":"Tace Hickin","screen_name":"teredetabax","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":570,"friends_count":1465,"listed_count":22,"favourites_count":20933,"statuses_count":58290,"created_at":"Fri Feb 21 03:02:30 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442224504735928320\/0vFJnmV0_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442224504735928320\/0vFJnmV0_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825556537346,"id_str":"663727825556537346","text":"15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356229022,"id_str":"356229022","name":"Dazzling Traffic","screen_name":"DazzlingTraffic","location":"Anchorage","url":"http:\/\/linkis.com\/mycheapjobs.com\/Soci\/Rncwi","description":"I will Give you 100,000 Real\/Human\/Unique Visitors for Google adsense. for $40","protected":false,"verified":false,"followers_count":27243,"friends_count":883,"listed_count":11,"favourites_count":0,"statuses_count":1623,"created_at":"Tue Aug 16 14:53:14 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"DazzlingTraffic","name":"Dazzling Traffic","id":356229022,"id_str":"356229022","indices":[3,19]}],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278214045696,"id_str":"663728278214045696","text":"RT @miracle_1013: 151107 #\uc9c0\ubbfc #JIMIN \ud654\uc9c8\uc774...\ud83d\ude02 https:\/\/t.co\/167wRZPH71","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":539533025,"id_str":"539533025","name":"JMBYG\u2661","screen_name":"nishha_","location":"BANGTANBAP","url":"http:\/\/ask.fm\/nishha_","description":"\uc7a1\uc544\uc918 \u25c1VOTE BANGTAN AT MAMA\u25b7\nlet's work hard for the boys like they work hard for us","protected":false,"verified":false,"followers_count":427,"friends_count":291,"listed_count":6,"favourites_count":6852,"statuses_count":41692,"created_at":"Thu Mar 29 01:00:19 +0000 2012","utc_offset":28800,"time_zone":"Singapore","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528846561195732992\/u43HoyEY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528846561195732992\/u43HoyEY.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656073191899578368\/Rii2Hhe5_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656073191899578368\/Rii2Hhe5_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/539533025\/1446701709","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:23 +0000 2015","id":663726834236809216,"id_str":"663726834236809216","text":"151107 #\uc9c0\ubbfc #JIMIN \ud654\uc9c8\uc774...\ud83d\ude02 https:\/\/t.co\/167wRZPH71","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2953031903,"id_str":"2953031903","name":"Just a Miracle","screen_name":"miracle_1013","location":null,"url":null,"description":"\uc218\ub9ce\uc740 \uc0ac\ub78c \uc911\uc5d0 \ub09c \ub108\ub9cc \ubcf4\uac8c \ub3fc \uc774\uac74 \ub0b4\uac8c MIRACLE\u2665","protected":false,"verified":false,"followers_count":14495,"friends_count":2,"listed_count":512,"favourites_count":0,"statuses_count":507,"created_at":"Wed Dec 31 12:40:41 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653593898929885184\/zUxpwy7n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653593898929885184\/zUxpwy7n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2953031903\/1433429166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":95,"favorite_count":77,"entities":{"hashtags":[{"text":"\uc9c0\ubbfc","indices":[7,10]},{"text":"JIMIN","indices":[11,17]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"video_info":{"aspect_ratio":[1,1],"duration_millis":16633,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/720x720\/6eWiliXhGOX-vqcn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/240x240\/rx5rePM3OlbSGWHN.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc9c0\ubbfc","indices":[25,28]},{"text":"JIMIN","indices":[29,35]}],"urls":[],"user_mentions":[{"screen_name":"miracle_1013","name":"Just a Miracle","id":2953031903,"id_str":"2953031903","indices":[3,16]}],"symbols":[],"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726834236809216,"source_status_id_str":"663726834236809216","source_user_id":2953031903,"source_user_id_str":"2953031903"}]},"extended_entities":{"media":[{"id":663726763525042176,"id_str":"663726763525042176","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726763525042176\/pu\/img\/_u0OgsIcJwRZId4n.jpg","url":"https:\/\/t.co\/167wRZPH71","display_url":"pic.twitter.com\/167wRZPH71","expanded_url":"http:\/\/twitter.com\/miracle_1013\/status\/663726834236809216\/video\/1","type":"video","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663726834236809216,"source_status_id_str":"663726834236809216","source_user_id":2953031903,"source_user_id_str":"2953031903","video_info":{"aspect_ratio":[1,1],"duration_millis":16633,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.mp4"},{"bitrate":1280000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/720x720\/6eWiliXhGOX-vqcn.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/pl\/rxKXa9x-UgJ9py0h.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/240x240\/rx5rePM3OlbSGWHN.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726763525042176\/pu\/vid\/480x480\/CwQNju15N_tvqaMh.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080127658"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222581760,"id_str":"663728278222581760","text":"RT @Leandralimaaa: Ai vou na cozinha e ta a Julia me servindo um prato d \"pedreiro\" shuahauabua","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496497540,"id_str":"496497540","name":"J\u00falia Chaves","screen_name":"_juliachavess","location":"Rio Grande do Sul","url":null,"description":"E o respeito de um por um faz a paz prevalecer..!!! \u2764\ufe0f","protected":false,"verified":false,"followers_count":1051,"friends_count":913,"listed_count":0,"favourites_count":0,"statuses_count":35157,"created_at":"Sun Feb 19 01:15:06 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542499140366651393\/cDyAJTjp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542499140366651393\/cDyAJTjp.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663478290787774464\/gIE2tyYV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663478290787774464\/gIE2tyYV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496497540\/1444952658","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:23 +0000 2015","id":663723564953174016,"id_str":"663723564953174016","text":"Ai vou na cozinha e ta a Julia me servindo um prato d \"pedreiro\" shuahauabua","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3159379127,"id_str":"3159379127","name":"Leandra Lima","screen_name":"Leandralimaaa","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":79,"friends_count":120,"listed_count":0,"favourites_count":102,"statuses_count":958,"created_at":"Sun Apr 12 11:41:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661050304918605824\/hP-vGqA8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661050304918605824\/hP-vGqA8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3159379127\/1447034431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Leandralimaaa","name":"Leandra Lima","id":3159379127,"id_str":"3159379127","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239334400,"id_str":"663728278239334400","text":"Zorra https:\/\/t.co\/fgGNXkuQaA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207148775,"id_str":"3207148775","name":"ValeMena","screen_name":"valenmena23","location":null,"url":null,"description":"el que no arriesga, no gana","protected":false,"verified":false,"followers_count":225,"friends_count":156,"listed_count":0,"favourites_count":1760,"statuses_count":5702,"created_at":"Sat Apr 25 18:25:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660956444855005185\/I_Lv3nlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660956444855005185\/I_Lv3nlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207148775\/1447014254","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728188070187008,"quoted_status_id_str":"663728188070187008","quoted_status":{"created_at":"Mon Nov 09 14:41:46 +0000 2015","id":663728188070187008,"id_str":"663728188070187008","text":"esta divino","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2971212719,"id_str":"2971212719","name":"Lula\u2665","screen_name":"LuciaaReyes22","location":null,"url":null,"description":"22\/08\/2015\u2665","protected":false,"verified":false,"followers_count":423,"friends_count":369,"listed_count":1,"favourites_count":1998,"statuses_count":9013,"created_at":"Sat Jan 10 11:12:48 +0000 2015","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645708307399749633\/qJF0V8_c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645708307399749633\/qJF0V8_c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2971212719\/1445708241","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/fgGNXkuQaA","expanded_url":"https:\/\/twitter.com\/LuciaaReyes22\/status\/663728188070187008","display_url":"twitter.com\/LuciaaReyes22\/\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080127664"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278230966273,"id_str":"663728278230966273","text":"Ya est\u00e1n en Espa\u00f1a los primeros 12 refugiados https:\/\/t.co\/YMFHOERY9V","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3294207149,"id_str":"3294207149","name":"skunksalvaje","screen_name":"SkunkSalvaj3","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":211,"friends_count":253,"listed_count":10,"favourites_count":53,"statuses_count":22405,"created_at":"Fri May 22 16:44:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601791292813791232\/I2edmUAA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601791292813791232\/I2edmUAA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3294207149\/1432313247","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YMFHOERY9V","expanded_url":"http:\/\/ift.tt\/1lfIruG","display_url":"ift.tt\/1lfIruG","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080127662"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209822722,"id_str":"663728278209822722","text":"#ObamaDerogaElDecretoYa Amorebieta y Juan Pablo A\u00f1or de baja en la Vinotinto por lesi\u00f3n https:\/\/t.co\/7c3BdxG8OK SIGUE .@dcabellor","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1281153908,"id_str":"1281153908","name":"Ernesto1931","screen_name":"Ernesto1931","location":"CHAVISTA 100%","url":null,"description":"Sigueme y mantente informado con las \u00faltimas noticias","protected":false,"verified":false,"followers_count":10145,"friends_count":10150,"listed_count":41,"favourites_count":324,"statuses_count":310758,"created_at":"Tue Mar 19 18:22:12 +0000 2013","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCDECE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000108705104\/28d396a6cd29d8a0c14e1bad4f91f708.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000108705104\/28d396a6cd29d8a0c14e1bad4f91f708.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C01331","profile_text_color":"280CC5","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/574729070698594304\/pQbWgQfy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/574729070698594304\/pQbWgQfy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1281153908\/1397405042","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ObamaDerogaElDecretoYa","indices":[0,23]}],"urls":[{"url":"https:\/\/t.co\/7c3BdxG8OK","expanded_url":"http:\/\/dlvr.it\/Chfnyg","display_url":"dlvr.it\/Chfnyg","indices":[88,111]}],"user_mentions":[{"screen_name":"dcabellor","name":"Diosdado Cabello R","id":128262354,"id_str":"128262354","indices":[119,129]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"es","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278226649089,"id_str":"663728278226649089","text":"RT @RichFollowss: I will Submit 5,000 Directories For a site for $5 https:\/\/t.co\/R38OAmeHBv via @MyCheapJobs_ https:\/\/t.co\/ah5FBzUKlh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244663666,"id_str":"3244663666","name":"Amphitrite Georgeot","screen_name":"hejedojavil","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":286,"friends_count":1942,"listed_count":12,"favourites_count":13194,"statuses_count":18733,"created_at":"Sun May 10 08:35:29 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643463555166027776\/LrANxJ1M_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643463555166027776\/LrANxJ1M_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:24 +0000 2015","id":663727342402015233,"id_str":"663727342402015233","text":"I will Submit 5,000 Directories For a site for $5 https:\/\/t.co\/R38OAmeHBv via @MyCheapJobs_ https:\/\/t.co\/ah5FBzUKlh","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356069807,"id_str":"356069807","name":"Rich Follows","screen_name":"RichFollowss","location":"Anaheim","url":"https:\/\/www.rebelmouse.com\/RichFollowss","description":"100,000+ Stable\/NON Drop\/Fast Followers. for $30","protected":false,"verified":false,"followers_count":19843,"friends_count":893,"listed_count":8,"favourites_count":4,"statuses_count":2145,"created_at":"Tue Aug 16 09:05:39 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619272711852814336\/OAjmsM-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619272711852814336\/OAjmsM-S_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R38OAmeHBv","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Adve\/RPjM0","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[50,73]}],"user_mentions":[{"screen_name":"MyCheapJobs_","name":"MyCheapJobs","id":356162553,"id_str":"356162553","indices":[78,91]}],"symbols":[],"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R38OAmeHBv","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Adve\/RPjM0","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"RichFollowss","name":"Rich Follows","id":356069807,"id_str":"356069807","indices":[3,16]},{"screen_name":"MyCheapJobs_","name":"MyCheapJobs","id":356162553,"id_str":"356162553","indices":[96,109]}],"symbols":[],"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663727342402015233,"source_status_id_str":"663727342402015233","source_user_id":356069807,"source_user_id_str":"356069807"}]},"extended_entities":{"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663727342402015233,"source_status_id_str":"663727342402015233","source_user_id":356069807,"source_user_id_str":"356069807"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127661"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235193344,"id_str":"663728278235193344","text":"#PushAwardsKathNiels https:\/\/t.co\/cjr2v34Ndd","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3748364546,"id_str":"3748364546","name":"kathnieltard","screen_name":"knteroristard64","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":45,"listed_count":29,"favourites_count":0,"statuses_count":98581,"created_at":"Thu Oct 01 13:39:18 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649579671156228096\/2QG-zeAR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649579671156228096\/2QG-zeAR_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728118029541376,"quoted_status_id_str":"663728118029541376","quoted_status":{"created_at":"Mon Nov 09 14:41:29 +0000 2015","id":663728118029541376,"id_str":"663728118029541376","text":"CosnaAmir: kathrynkime27: 52526kn: Imma_lonely_: kbdpftcrisone1: DXNXXLFXRD: kbdpftcris8: lepitennicell4: #PushAwardsKathNiels #PushAwardsK\u2026","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3834368054,"id_str":"3834368054","name":"kbdp","screen_name":"kbdpsnowpadils","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":0,"listed_count":6,"favourites_count":0,"statuses_count":18767,"created_at":"Fri Oct 09 08:16:01 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652398808551165952\/aR1QSdwG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652398808551165952\/aR1QSdwG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[106,126]},{"text":"PushAwardsK","indices":[127,139]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[0,20]}],"urls":[{"url":"https:\/\/t.co\/cjr2v34Ndd","expanded_url":"http:\/\/twitter.com\/kbdpsnowpadils\/status\/663728118029541376","display_url":"twitter.com\/kbdpsnowpadils\u2026","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278226751488,"id_str":"663728278226751488","text":"RT @fiorema2014: John William Waterhouse \"Narcissus\" https:\/\/t.co\/F09RzpNT88","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2282216348,"id_str":"2282216348","name":"zakariaalami","screen_name":"zakariaalami3","location":null,"url":null,"description":"J AIME LES FLEURES ET LA BEAUTE )))))))))))))))))","protected":false,"verified":false,"followers_count":1475,"friends_count":1873,"listed_count":69,"favourites_count":55496,"statuses_count":86538,"created_at":"Wed Jan 08 14:28:16 +0000 2014","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662030870249893888\/KSfOAuX1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662030870249893888\/KSfOAuX1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2282216348\/1446497222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 19:44:33 +0000 2015","id":662354834067210240,"id_str":"662354834067210240","text":"John William Waterhouse \"Narcissus\" https:\/\/t.co\/F09RzpNT88","source":"\u003ca href=\"http:\/\/www.twitter.com\" rel=\"nofollow\"\u003eTwitter for Windows Phone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3026452089,"id_str":"3026452089","name":"fiorella emanuele","screen_name":"fiorema2014","location":"Palermo, Sicilia","url":null,"description":null,"protected":false,"verified":false,"followers_count":916,"friends_count":1019,"listed_count":3,"favourites_count":3145,"statuses_count":3785,"created_at":"Mon Feb 09 13:58:23 +0000 2015","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613369334094766080\/mRs6D2Lv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613369334094766080\/mRs6D2Lv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3026452089\/1435073988","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662354832649494530,"id_str":"662354832649494530","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","url":"https:\/\/t.co\/F09RzpNT88","display_url":"pic.twitter.com\/F09RzpNT88","expanded_url":"http:\/\/twitter.com\/fiorema2014\/status\/662354834067210240\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":720,"resize":"fit"},"large":{"w":448,"h":720,"resize":"fit"},"small":{"w":340,"h":546,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":662354832649494530,"id_str":"662354832649494530","indices":[36,59],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","url":"https:\/\/t.co\/F09RzpNT88","display_url":"pic.twitter.com\/F09RzpNT88","expanded_url":"http:\/\/twitter.com\/fiorema2014\/status\/662354834067210240\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":720,"resize":"fit"},"large":{"w":448,"h":720,"resize":"fit"},"small":{"w":340,"h":546,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fiorema2014","name":"fiorella emanuele","id":3026452089,"id_str":"3026452089","indices":[3,15]}],"symbols":[],"media":[{"id":662354832649494530,"id_str":"662354832649494530","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","url":"https:\/\/t.co\/F09RzpNT88","display_url":"pic.twitter.com\/F09RzpNT88","expanded_url":"http:\/\/twitter.com\/fiorema2014\/status\/662354834067210240\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":720,"resize":"fit"},"large":{"w":448,"h":720,"resize":"fit"},"small":{"w":340,"h":546,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662354834067210240,"source_status_id_str":"662354834067210240","source_user_id":3026452089,"source_user_id_str":"3026452089"}]},"extended_entities":{"media":[{"id":662354832649494530,"id_str":"662354832649494530","indices":[53,76],"media_url":"http:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTEoNgNWIAIcFpS.jpg","url":"https:\/\/t.co\/F09RzpNT88","display_url":"pic.twitter.com\/F09RzpNT88","expanded_url":"http:\/\/twitter.com\/fiorema2014\/status\/662354834067210240\/photo\/1","type":"photo","sizes":{"medium":{"w":448,"h":720,"resize":"fit"},"large":{"w":448,"h":720,"resize":"fit"},"small":{"w":340,"h":546,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":662354834067210240,"source_status_id_str":"662354834067210240","source_user_id":3026452089,"source_user_id_str":"3026452089"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127661"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278243426304,"id_str":"663728278243426304","text":"@Dance__1115 \u3084\u3063\u305f\u30fc(((o(*\uff9f\u25bd\uff9f*)o)))www","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663705991138033664,"in_reply_to_status_id_str":"663705991138033664","in_reply_to_user_id":3101742139,"in_reply_to_user_id_str":"3101742139","in_reply_to_screen_name":"Dance__1115","user":{"id":2721731466,"id_str":"2721731466","name":"N\u2606K","screen_name":"1021_nk","location":null,"url":null,"description":"Ars6\u5e74\/\u661f\/D2\/J\/smile \u52dd\u3064\u3093\u3060win","protected":false,"verified":false,"followers_count":288,"friends_count":215,"listed_count":2,"favourites_count":7668,"statuses_count":5515,"created_at":"Sun Aug 10 14:33:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660396547452997634\/B1TPFwmi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660396547452997634\/B1TPFwmi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2721731466\/1446648552","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dance__1115","name":"Y \/ K . \u540c\u696d\u8005\u3055\u3093\u306fDM\u3078\u3002","id":3101742139,"id_str":"3101742139","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127665"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278247747584,"id_str":"663728278247747584","text":"Blessed morning!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":272496371,"id_str":"272496371","name":"FriendZoneGeneral","screen_name":"James_2cut","location":"city near you","url":null,"description":"COINCIDENCE IS A FOOLS EXPLANATION #pulloutgameonneutral #zoelife #NYJets #Dpistons #fsu IG: jam3zz","protected":false,"verified":false,"followers_count":280,"friends_count":431,"listed_count":3,"favourites_count":4550,"statuses_count":37343,"created_at":"Sat Mar 26 16:45:12 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663425275569508353\/6g22EilF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663425275569508353\/6g22EilF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/272496371\/1446092839","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127666"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278218276865,"id_str":"663728278218276865","text":"\u8aac\u660e\u3055\u305b\u3089\u308c\u308b\u3073\u30fc\u3080","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003efrom TheWorld\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553121440,"id_str":"1553121440","name":"\u307e\u304a\u3068\u3093\u3070(\u4eab\u5e7421 \u8a2d\u8a08\u6b7b)","screen_name":"maoto_gc93","location":"\u4eca\u65e5\u3082\u4e00\u756a\u697d\u3057\u3044\u65e5","url":null,"description":"\u6298\u308a\u7d19\u3057\u305f\u308a\u30d3\u30fc\u30ba\u3057\u305f\u308a\u30c8\u30e9\u30f3\u30b9\u30d5\u30a9\u30fc\u30de\u30fc\u898b\u305f\u308a\u91ce\u7403\u3057\u305f\u308a\u30dd\u30b1\u30e2\u30f3\u3057\u305f\u308a\u304a\u3063\u3071\u3044\u5d07\u3081\u305f\u308a","protected":false,"verified":false,"followers_count":153,"friends_count":152,"listed_count":16,"favourites_count":26342,"statuses_count":46884,"created_at":"Fri Jun 28 13:36:19 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654470737630068736\/JCtCtAjl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654470737630068736\/JCtCtAjl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553121440\/1443888206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127659"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235176960,"id_str":"663728278235176960","text":"RT @FatosAboutVoce: Dai vc olha p sua amg, sua amg te olha, ela come\u00e7a a rir, vc come\u00e7a a rir da risada dela, ficam rindo sem saber o pq ht\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":805708501,"id_str":"805708501","name":"RT no tweet fixado","screen_name":"oned_promise","location":"Londres","url":null,"description":"One Direction \u2665 Mrs Payne \u2665","protected":false,"verified":false,"followers_count":1095,"friends_count":3097,"listed_count":2,"favourites_count":1210,"statuses_count":5076,"created_at":"Thu Sep 06 00:28:11 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660144059240095745\/MoDCBDS3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660144059240095745\/MoDCBDS3.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663391935495856132\/6yo_rdlf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663391935495856132\/6yo_rdlf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/805708501\/1447000272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 22:13:34 +0000 2015","id":662392336350093313,"id_str":"662392336350093313","text":"Dai vc olha p sua amg, sua amg te olha, ela come\u00e7a a rir, vc come\u00e7a a rir da risada dela, ficam rindo sem saber o pq https:\/\/t.co\/q8Hblcl44Z","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1400070055,"id_str":"1400070055","name":"FATOS SOBRE VOC\u00ca","screen_name":"FatosAboutVoce","location":null,"url":null,"description":"Fatos sobre voc\u00ea por @Diiguinhoh","protected":false,"verified":false,"followers_count":62684,"friends_count":49263,"listed_count":21,"favourites_count":2620,"statuses_count":730,"created_at":"Fri May 03 15:52:11 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538350466845790209\/LrPSixZa.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538350466845790209\/LrPSixZa.png","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649752709529235456\/Kslovmx4_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649752709529235456\/Kslovmx4_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1400070055\/1443748451","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":390,"favorite_count":167,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662392238249496576,"id_str":"662392238249496576","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","url":"https:\/\/t.co\/q8Hblcl44Z","display_url":"pic.twitter.com\/q8Hblcl44Z","expanded_url":"http:\/\/twitter.com\/FatosAboutVoce\/status\/662392336350093313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":506,"h":285,"resize":"fit"},"medium":{"w":506,"h":285,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662392238249496576,"id_str":"662392238249496576","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","url":"https:\/\/t.co\/q8Hblcl44Z","display_url":"pic.twitter.com\/q8Hblcl44Z","expanded_url":"http:\/\/twitter.com\/FatosAboutVoce\/status\/662392336350093313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":506,"h":285,"resize":"fit"},"medium":{"w":506,"h":285,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FatosAboutVoce","name":"FATOS SOBRE VOC\u00ca","id":1400070055,"id_str":"1400070055","indices":[3,18]}],"symbols":[],"media":[{"id":662392238249496576,"id_str":"662392238249496576","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","url":"https:\/\/t.co\/q8Hblcl44Z","display_url":"pic.twitter.com\/q8Hblcl44Z","expanded_url":"http:\/\/twitter.com\/FatosAboutVoce\/status\/662392336350093313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":506,"h":285,"resize":"fit"},"medium":{"w":506,"h":285,"resize":"fit"}},"source_status_id":662392336350093313,"source_status_id_str":"662392336350093313","source_user_id":1400070055,"source_user_id_str":"1400070055"}]},"extended_entities":{"media":[{"id":662392238249496576,"id_str":"662392238249496576","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFKOy7WUAAehzI.jpg","url":"https:\/\/t.co\/q8Hblcl44Z","display_url":"pic.twitter.com\/q8Hblcl44Z","expanded_url":"http:\/\/twitter.com\/FatosAboutVoce\/status\/662392336350093313\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":506,"h":285,"resize":"fit"},"medium":{"w":506,"h":285,"resize":"fit"}},"source_status_id":662392336350093313,"source_status_id_str":"662392336350093313","source_user_id":1400070055,"source_user_id_str":"1400070055"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278226661377,"id_str":"663728278226661377","text":"RT @amaretto319: \u79c1\u306f\u4ee5\u524d\u6388\u696d\u3067\u805e\u3044\u305f\u300c\u7518\u3048\u306f\u81ea\u5206\u306b\u3067\u304d\u306a\u3044\u4e8b\u3092\u4ed6\u4eba\u306b\u304a\u9858\u3044\u3059\u308b\u3082\u306e\u3067\u306f\u306a\u3044\u3002\u305d\u308c\u306f\u983c\u308b\u3068\u8a00\u3044\u307e\u3059\u3002\u7518\u3048\u3068\u306f\u81ea\u5206\u3067\u3067\u304d\u308b\u4e8b\u3092\u3042\u3048\u3066\u4ed6\u4eba\u306b\u3057\u3066\u3082\u3089\u3046\u884c\u70ba\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u7518\u3048\u3068\u983c\u308b\u306e\u3092\u6df7\u540c\u3057\u306a\u3044\u300d\u304c\u597d\u304d\u3067\u3001\u305d\u308c\u4ee5\u6765\u65e6\u90a3\u306b\u30a2\u30a4\u30b9\u3092\u8cb7\u3063\u3066\u304d\u3066\u3082\u3089\u3046\u6642\u306a\u3069\u3001\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":136385080,"id_str":"136385080","name":"\uff8a\uff72\uff84\uff9e\uff65\uff7c\uff6c\uff72\uff86\uff9d\uff78\uff9e","screen_name":"hideshining","location":"Biwako Big Brige","url":null,"description":"\u3010\u9b54\u6cd5\uff1aRT\u4f7f\u3044\u3011\u3010\u5c5e\u6027(=\u2312\u30a7\u2312=)\u53cd\u5fdc\u9045\u3044(#\u2267\u2207\u2266#)\uff81\uff77\uff9d\u3067\u3059(\u309c\u03c9\u309c?)\u3011\uff8a\uff9f\uff81\uff9d\uff7a\u306e\u4e71\u6570=\u6570\u72ec=\uff85\uff9d\uff8c\uff9f\uff9a\u306f\u300e\u4e71\u6570\u8868\uff08swap\u591a\u6b21\u5143\u914d\u5217\uff09\u300f\u306e\uff8a\uff9f\uff78\uff98\u3067\u3059!\u5275\u4f5c\u8005\u306f\u300e\uff85\uff72\uff7d&\u3081\u3063\u3055\u300f\u5275\u4f5c\u3068\u540c\u3058\u304f\u5de8\u6cc9\u3055\u3093KYON2\u306b\u9810\u8a00\u3092\u3057\u305fY\u6c0f\u3067\u3059\u3010\u597d\u304d\uff1a\uff8a\uff9f\uff80\uff98\uff9b\u2026\u3042\u3086\u2026\u4e0a\u6238\u5f69\u2026\uff76\uff9e\uff9d\uff80\uff9e\uff91\u2026\u661f\u65b0\u4e00\u2026\uff98\uff99\uff79\u2026\uff74\uff73\uff9e\uff67\u3011","protected":false,"verified":false,"followers_count":4661,"friends_count":4605,"listed_count":125,"favourites_count":1737,"statuses_count":412174,"created_at":"Fri Apr 23 20:08:18 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1242169737\/100509_1626_01_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1242169737\/100509_1626_01_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:36:38 +0000 2015","id":663560803283406849,"id_str":"663560803283406849","text":"\u79c1\u306f\u4ee5\u524d\u6388\u696d\u3067\u805e\u3044\u305f\u300c\u7518\u3048\u306f\u81ea\u5206\u306b\u3067\u304d\u306a\u3044\u4e8b\u3092\u4ed6\u4eba\u306b\u304a\u9858\u3044\u3059\u308b\u3082\u306e\u3067\u306f\u306a\u3044\u3002\u305d\u308c\u306f\u983c\u308b\u3068\u8a00\u3044\u307e\u3059\u3002\u7518\u3048\u3068\u306f\u81ea\u5206\u3067\u3067\u304d\u308b\u4e8b\u3092\u3042\u3048\u3066\u4ed6\u4eba\u306b\u3057\u3066\u3082\u3089\u3046\u884c\u70ba\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u7518\u3048\u3068\u983c\u308b\u306e\u3092\u6df7\u540c\u3057\u306a\u3044\u300d\u304c\u597d\u304d\u3067\u3001\u305d\u308c\u4ee5\u6765\u65e6\u90a3\u306b\u30a2\u30a4\u30b9\u3092\u8cb7\u3063\u3066\u304d\u3066\u3082\u3089\u3046\u6642\u306a\u3069\u3001\u3053\u308c\u306f\u7518\u3048\u3060\u306a\u304f\u3075\u3075\u3068\u307b\u304f\u305d\u7b11\u3093\u3067\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":237690818,"id_str":"237690818","name":"\u30a2\u30de\u30ec\u30c3\u30c8","screen_name":"amaretto319","location":null,"url":"http:\/\/bookworm522.blog.fc2.com\/","description":"\u7f8e\u5473\u3057\u3044\u304a\u9152\u3068\u672c\u3001\u304b\u308f\u3044\u3044\u5a18\u9054\u304c\u3044\u308c\u3070\u5e78\u305b\u3002\u5e7c\u7a1a\u5712\u306e\u904a\u3073\u306f\u300c\u821e\u8e0f\u4f1a\u300d\u30de\u30a4\u30d6\u30fc\u30e0\u300c\u30d1\u30fc\u30c6\u30a3\u30fc\u306e\u62db\u5f85\u72b6\u4f5c\u308a\u300d\u306a\u30d7\u30ea\u30f3\u30bb\u30b9\u9858\u671b\u306e\u4e0a\u306e\u5a184\u6b73\uff08\u3046\u3045\uff09\u3068 \u3001\u9996\u3075\u308a\u3092\u899a\u3048\u300c\u3046\u3046\u3093\u300d\u306e\u6642\u306f\u30d8\u30c3\u30c9\u30d0\u30f3\u30ad\u30f3\u30b0\u4e26\u306b\u632f\u308a\u307e\u304f\u308b\u4e0b\u306e\u5a181\u6b73\uff08\u3057\u3043\uff09\u3092\u3086\u308b\u3086\u308b\u80b2\u3066\u4e2d\u3002 \u30a2\u30a4\u30b3\u30f3\u306f\u3046\u3045\u304c\u63cf\u3044\u3066\u304f\u308c\u305f\u30de\u30de\u3001\u80cc\u666f\u306f\u30de\u30de\u304c\u63cf\u3044\u305f\u3057\u3043\u3002\u66f8\u8a55\u30d6\u30ed\u30b0\u307b\u307c\u4f11\u6b62\u4e2d","protected":false,"verified":false,"followers_count":460,"friends_count":60,"listed_count":8,"favourites_count":393,"statuses_count":5685,"created_at":"Thu Jan 13 12:03:47 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/563662390810521600\/eB3ohslk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/563662390810521600\/eB3ohslk_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/237690818\/1435606812","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11461,"favorite_count":11486,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"amaretto319","name":"\u30a2\u30de\u30ec\u30c3\u30c8","id":237690818,"id_str":"237690818","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127661"} +{"delete":{"status":{"id":663727443543388160,"id_str":"663727443543388160","user_id":1931226613,"user_id_str":"1931226613"},"timestamp_ms":"1447080127700"}} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239248384,"id_str":"663728278239248384","text":"\u8ae6\u3081\u3066\u305f4D\u7248\u304c\u3001\u5148\u6708\u5e73\u548c\u5cf6\u3067\u3082\u518d\u4e0a\u6620\u3057\u3066\u304f\u308c\u305f\u304a\u304b\u3052\u3067\u7121\u4e8b\u89b3\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f\u2026\uff1b\uff1b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff1b\uff1b\n\u2026\u5ea7\u5e2d\u63fa\u308c\u3059\u304e\u3067\u306a\u3044\uff01\uff01\uff01\uff1f\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2197655641,"id_str":"2197655641","name":"\u3042\u304b\u308a@\u30b8\u30a7\u30c3\u30bf\u30fc\u30baBD\u5316\u5b09\u3057\u3044","screen_name":"akarics00","location":null,"url":null,"description":"\u30b8\u30e3\u30f3\u30eb\u3082\u30ad\u30e3\u30e9\u3082CP\u3082\u96d1\u591a\u306b\u545f\u304d\u307e\u3059\u3002\u6210\u4eba\u6e08\u8150\u3002\u30b8\u30e7\u30b8\u30e7\u3068\u30d0\u30aa\u30fc\u4ed6\u8352\u6728\u5148\u751f\u4f5c\u54c1\u30e1\u30a4\u30f3\u3002\u73fe\u5728\u306f\u9032\u6483\u304c\u591a\u3081\u3002\u30b8\u30e3\u30f3\uff08CP\u306f\u4e3b\u306b676\u300165\u300169\uff09\u3068\u30cf\u30f3\u30b8\u3055\u3093\u840c\u3048\u3002\u30d2\u30b9\u30e6\u30df\u30d2\u30b9\u3001\u30a6\u30ea\u30b1\u30cb\u3001\u30a8\u30ec\u30df\u30ab\u3001\u5de8\u30a8\u30ec\u95a2\u9023\u4ed6\u597d\u304dCP\u305f\u304f\u3055\u3093\u3002\u795d\u30b8\u30a7\u30c3\u30bf\u30fc\u30baBD\u5316\uff01 \u304a\u304b\u3048\u308a\u3001\u5144\u3061\u3083\u3093\u3002","protected":false,"verified":false,"followers_count":26,"friends_count":38,"listed_count":0,"favourites_count":466,"statuses_count":2110,"created_at":"Sat Nov 16 12:28:08 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"05B088","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551790480535465985\/i4dco4Tg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551790480535465985\/i4dco4Tg_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127664"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278243446784,"id_str":"663728278243446784","text":"RT @chanstar_92: 151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":161658701,"id_str":"161658701","name":"\u0e40\u0e2a\u0e32\u0e44\u0e1f\u0e17\u0e31\u0e49\u0e07\u0e19\u0e31\u0e49\u0e19","screen_name":"SsehunA94","location":"-Galaxy- ","url":"https:\/\/www.facebook.com\/LoveKyuline","description":"BM97 ,UBU25 \u2022\u3145 \u2022 \u02cb\u3142\u02ca 93Line \u0e40\u0e2a\u0e32\u0e44\u0e1f\u0e41\u0e1f\u0e21\u0e34\u0e25\u0e35\u0e48 \u2764 #EXO #\u0e17\u0e39\u0e40\u0e2d\u0e4b\u0e2d #ChanHun #\u0e0a\u0e32\u0e19\u0e2e\u0e38\u0e19 \u0e0a\u0e2d\u0e1a\u0e41\u0e1a\u0e1a\u0e04\u0e27\u0e32\u0e21\u0e1e\u0e35\u0e48\u0e19\u0e49\u0e2d\u0e07\u0e42\u0e15\u0e21\u0e32\u0e14\u0e49\u0e27\u0e22\u0e01\u0e31\u0e19 not sp\u0e19\u0e30\u0e40\u0e1a\u0e40\u0e1a\u0e49 #\u0e17\u0e32\u0e2a\u0e04\u0e38\u0e21\u0e30 #RVV \u0e17\u0e27\u0e34\u0e15\u0e15\u0e32\u0e21\u0e43\u0e08\u0e09\u0e31\u0e19","protected":false,"verified":false,"followers_count":497,"friends_count":522,"listed_count":2,"favourites_count":1403,"statuses_count":95267,"created_at":"Thu Jul 01 12:17:54 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/628463659069472769\/1QewvX3D.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/628463659069472769\/1QewvX3D.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663008997851566080\/zOTlpR2n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663008997851566080\/zOTlpR2n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/161658701\/1446214399","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:49 +0000 2015","id":663727697403580417,"id_str":"663727697403580417","text":"151109 #CALLMEBABY \u0e02\u0e2d\u0e07\u0e2b\u0e19\u0e38\u0e48\u0e21\u0e46 #EXO \u0e02\u0e36\u0e49\u0e19\u0e40\u0e17\u0e23\u0e19\u0e14\u0e4c\u0e42\u0e25\u0e01\u0e2d\u0e31\u0e19\u0e14\u0e31\u0e1a3\n\nCr. SMTownEngSub https:\/\/t.co\/bqh3ZPytOw","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2261424374,"id_str":"2261424374","name":"CHANST\u2606R_92","screen_name":"chanstar_92","location":"THAILAND","url":"https:\/\/www.facebook.com\/chanstar92","description":"~ Happiness Delight\u2661~\/\u2605\u2606 EXO '\ucc2c\uc5f4CHANYEOL \u0e0a\u0e32\u0e19\u0e22\u0e2d\u0e25' FANBASE \u2606\u2605 \/25.12.2013 \/ IG :CHANSTAR92 \/ EMAIL : affection.girl1127@gmail.com","protected":false,"verified":false,"followers_count":38607,"friends_count":204,"listed_count":120,"favourites_count":934,"statuses_count":58375,"created_at":"Wed Dec 25 12:26:58 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"141212","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/607864378554073088\/MWSW_3bM.jpg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639604118340763648\/AxI_hLgp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2261424374\/1445031192","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":40,"favorite_count":5,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[8,19]},{"text":"EXO","indices":[30,34]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[74,97],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CALLMEBABY","indices":[25,36]},{"text":"EXO","indices":[47,51]}],"urls":[],"user_mentions":[{"screen_name":"chanstar_92","name":"CHANST\u2606R_92","id":2261424374,"id_str":"2261424374","indices":[3,15]}],"symbols":[],"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"extended_entities":{"media":[{"id":663727686242570240,"id_str":"663727686242570240","indices":[91,114],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI0GYUkAAseFX.png","url":"https:\/\/t.co\/bqh3ZPytOw","display_url":"pic.twitter.com\/bqh3ZPytOw","expanded_url":"http:\/\/twitter.com\/chanstar_92\/status\/663727697403580417\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":163,"resize":"fit"},"medium":{"w":600,"h":289,"resize":"fit"},"large":{"w":600,"h":289,"resize":"fit"}},"source_status_id":663727697403580417,"source_status_id_str":"663727697403580417","source_user_id":2261424374,"source_user_id_str":"2261424374"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080127665"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235013120,"id_str":"663728278235013120","text":"@yt_314 \u8d08\u5448\u3067\u304d\u308b\u307b\u3069www\u6cbc\u304c\u6df1\u3044\u3053\u3068\u304c\u4f3a\u3048\u307e\u3059\u306d\u2026\uff01\uff08\u7b11\uff09\u308f\u30fc\u898b\u305f\u3044\u306a\u30fc\\( \u02c6o\u02c6 )\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717435011264514,"in_reply_to_status_id_str":"663717435011264514","in_reply_to_user_id":580860899,"in_reply_to_user_id_str":"580860899","in_reply_to_screen_name":"yt_314","user":{"id":2676488594,"id_str":"2676488594","name":"\u3061\u3083\u3093\u3086\u304d","screen_name":"hnchh","location":null,"url":null,"description":"\u307f\u3093\u306a\u306e\u305f\u3044\u3088\u3046\u301c(*`\u2200\u00b4*)\u3071\u3041 \u4e8c\u968e\u5802\u9ad8\u55e3\u3068ROTTENGRAFFTY\u3068SiM\u3059\u304d\u3002\u2708\ufe0eKIS-MY-WORLD \u2708\ufe0emerry rock parade \u2708\ufe0e\u30dd\u30eb\u30ce\u8d85\u7279\u6025 \u2708\ufe0elive is beautiful tour@club-G","protected":false,"verified":false,"followers_count":27,"friends_count":77,"listed_count":0,"favourites_count":2306,"statuses_count":3871,"created_at":"Thu Jul 24 10:42:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663250898555002880\/uyR9zSlj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663250898555002880\/uyR9zSlj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2676488594\/1443535044","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yt_314","name":"\u3086\u305f","id":580860899,"id_str":"580860899","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278218362880,"id_str":"663728278218362880","text":"RT @micampeona10: Den rt a todo lo que diga \n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2966464485,"id_str":"2966464485","name":"\u00a5 \u0105\u0148\u00ee","screen_name":"yanina_garate","location":null,"url":null,"description":"De Tu envidia nace mi fama, Envidiame que me encanta. | Toty mi bebo ~ Faty~ Sofi x3~ Rama","protected":false,"verified":false,"followers_count":4508,"friends_count":302,"listed_count":7,"favourites_count":26303,"statuses_count":72836,"created_at":"Wed Jan 07 19:07:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/590934541595844608\/JezrwpwI.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/590934541595844608\/JezrwpwI.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660860729902432256\/5cw8VMjG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660860729902432256\/5cw8VMjG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2966464485\/1446091956","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:52:26 +0000 2015","id":663564779756343296,"id_str":"663564779756343296","text":"Den rt a todo lo que diga \n#FansAwards2015 #LaDiosa Mica Viciconte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3336047733,"id_str":"3336047733","name":"Orgullosa de MV","screen_name":"micampeona10","location":null,"url":null,"description":"01\/08\/2015 Prohibido olvidar Conoc\u00ed a mi \u00eddola Mica Viciconte","protected":false,"verified":false,"followers_count":2383,"friends_count":1614,"listed_count":1,"favourites_count":1610,"statuses_count":20390,"created_at":"Sat Jun 20 03:54:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9944DD","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646509700683563008\/vm09PVoq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646509700683563008\/vm09PVoq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3336047733\/1439497681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[27,42]},{"text":"LaDiosa","indices":[43,51]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FansAwards2015","indices":[45,60]},{"text":"LaDiosa","indices":[61,69]}],"urls":[],"user_mentions":[{"screen_name":"micampeona10","name":"Orgullosa de MV","id":3336047733,"id_str":"3336047733","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080127659"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209888256,"id_str":"663728278209888256","text":"\u306a\u3093\u3060\u3088MJ\u5272\u308c\u76ee\u3060\u90e8\u3069\u3089\u3068\u304b\u9177\u3044\u30ae\u30e3\u30f3\u30d6\u30eb\u53f0\u3042\u308b\u3058\u3083\u3093wwwwwwwww","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82397952,"id_str":"82397952","name":"\u529f\u5200 \u4f51\u771f","screen_name":"lekafufu","location":"\u5927\u5b87\u5b99\u306e\u3054\u610f\u601d","url":null,"description":"\u30b9\u30ed\u30c3\u30c8\u3068\u304b\u30b2\u30fc\u30bb\u30f3\u3068\u304b\u306b\u751f\u606f\u3002\u3010\u5bb6\u30b9\u30ed\u3011\u30b9\u30ed\u30de\u30b9\u3001\u30de\u30b8\u30cf\u30ed2\u3001\u30d7\u30ea\u30ca\u30ca\u3010\u30b2\u30fc\u30bb\u30f3\u3011\u6226\u56fd\u5927\u6226\u3001LoV3\u3001MJ\u4ed6","protected":false,"verified":false,"followers_count":324,"friends_count":428,"listed_count":15,"favourites_count":48,"statuses_count":122169,"created_at":"Wed Oct 14 16:28:12 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/583272894261673987\/0NlqV737.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/583272894261673987\/0NlqV737.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661903896420290560\/yBCBuG5y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661903896420290560\/yBCBuG5y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82397952\/1439389500","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278230863872,"id_str":"663728278230863872","text":"\u751f\u5f92\u4f1a\u30bb\u30c3\u30c8\u307b\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2719203078,"id_str":"2719203078","name":"(\u2729\u1ee0\u03c9\u1ee0)","screen_name":"E911_na","location":"\u30a8\u30ea\u30a211","url":null,"description":"\uff77\uff9e\uff71\uff7d\u3068\u3042\u3093\uff7d\uff80\u3068\uff97\uff72\uff8c\uff9e\u304c\u751f\u304d\u7532\u6590 \u304a\u3058\u3044\u96e3\u6c11\u5be9\u795e\u8005 \u771f\u7dd2\u96f6\u82f1\u77e5\u84ee\u5df3\u771f\u5c02\u5c5eP","protected":false,"verified":false,"followers_count":34,"friends_count":85,"listed_count":0,"favourites_count":474,"statuses_count":6245,"created_at":"Sat Aug 09 12:14:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651923921797668868\/X2csQL7R_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651923921797668868\/X2csQL7R_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2719203078\/1444668276","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127662"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222467072,"id_str":"663728278222467072","text":"RT @RaGoharShahi: #QuoteoftheDay 'Spirituality is a natural antidote to extremism and fanaticism.' - His Holiness Younus AlGohar https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2398653728,"id_str":"2398653728","name":"Zubair GY","screen_name":"zubair_gy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":79,"friends_count":22,"listed_count":27,"favourites_count":106,"statuses_count":22539,"created_at":"Thu Mar 20 01:19:55 +0000 2014","utc_offset":0,"time_zone":"Casablanca","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/618067066667425793\/GjCMV836_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/618067066667425793\/GjCMV836_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2398653728\/1395410503","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 00:56:57 +0000 2015","id":662071067075289088,"id_str":"662071067075289088","text":"#QuoteoftheDay 'Spirituality is a natural antidote to extremism and fanaticism.' - His Holiness Younus AlGohar https:\/\/t.co\/sDehLtIPKH","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":615689096,"id_str":"615689096","name":"Religion Of God","screen_name":"RaGoharShahi","location":null,"url":"http:\/\/ragoharshahi.authorsxpress.com\/","description":"His Holiness Gohar Shahi is dispensing Spiritual Knowledge to enlighten the hearts of humanity. Many believe him to be the Awaited Messianic Figure.","protected":false,"verified":false,"followers_count":28094,"friends_count":27,"listed_count":10,"favourites_count":7837,"statuses_count":3937,"created_at":"Sat Jun 23 01:28:58 +0000 2012","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/586043755\/f.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2332340988\/f_3d_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":106,"favorite_count":5,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[0,14]}],"urls":[{"url":"https:\/\/t.co\/sDehLtIPKH","expanded_url":"http:\/\/fb.me\/46WHbHtHB","display_url":"fb.me\/46WHbHtHB","indices":[111,134]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"QuoteoftheDay","indices":[18,32]}],"urls":[{"url":"https:\/\/t.co\/sDehLtIPKH","expanded_url":"http:\/\/fb.me\/46WHbHtHB","display_url":"fb.me\/46WHbHtHB","indices":[139,140]}],"user_mentions":[{"screen_name":"RaGoharShahi","name":"Religion Of God","id":615689096,"id_str":"615689096","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278230839297,"id_str":"663728278230839297","text":"JNUG Direxion Daily Junior Gold Miners Index Bull 3X Shares News\nhttps:\/\/t.co\/kTp7gVhXfM\n\n$JNUG $VRX.TO $CLVS $SGYP #JNUG #pennystocks\u2026","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2181326676,"id_str":"2181326676","name":"clayton","screen_name":"clayton_dd","location":null,"url":null,"description":"I tweet stock research","protected":false,"verified":false,"followers_count":685,"friends_count":445,"listed_count":171,"favourites_count":0,"statuses_count":183150,"created_at":"Fri Nov 08 02:53:01 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000709615783\/34899be83af19233fc355a5a66c003e2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000709615783\/34899be83af19233fc355a5a66c003e2_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JNUG","indices":[116,121]},{"text":"pennystocks","indices":[122,134]}],"urls":[{"url":"https:\/\/t.co\/kTp7gVhXfM","expanded_url":"http:\/\/dlvr.it\/ChfpyN","display_url":"dlvr.it\/ChfpyN","indices":[65,88]}],"user_mentions":[],"symbols":[{"text":"JNUG","indices":[90,95]},{"text":"VRX.TO","indices":[96,103]},{"text":"CLVS","indices":[104,109]},{"text":"SGYP","indices":[110,115]}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127662"} +{"delete":{"status":{"id":547620598596136960,"id_str":"547620598596136960","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080127781"}} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235058177,"id_str":"663728278235058177","text":"https:\/\/t.co\/3NolS214Ym","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2779740978,"id_str":"2779740978","name":"FashionstoryforU","screen_name":"Fashionstory4u","location":null,"url":"https:\/\/www.facebook.com\/fashionstoryforu","description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":193,"listed_count":0,"favourites_count":0,"statuses_count":3616,"created_at":"Sat Aug 30 02:58:21 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/505550780007346176\/hIYVlP5b_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/505550780007346176\/hIYVlP5b_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2779740978\/1410772220","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3NolS214Ym","expanded_url":"http:\/\/fb.me\/4mRkQ3ngx","display_url":"fb.me\/4mRkQ3ngx","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278247731201,"id_str":"663728278247731201","text":"not volleyball :\/ https:\/\/t.co\/EWo4fQPVg8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955695434,"id_str":"955695434","name":"Cali","screen_name":"CCaligrl3","location":null,"url":null,"description":"why window shop when you own this","protected":false,"verified":false,"followers_count":1766,"friends_count":673,"listed_count":4,"favourites_count":16820,"statuses_count":21993,"created_at":"Sun Nov 18 15:35:16 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661728342803107840\/BWAp4zPM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661728342803107840\/BWAp4zPM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955695434\/1445708581","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"79dc2655046fbc40","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/79dc2655046fbc40.json","place_type":"city","name":"New Port Richey","full_name":"New Port Richey, FL","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-82.764606,28.216424],[-82.764606,28.280630],[-82.669580,28.280630],[-82.669580,28.216424]]]},"attributes":{}},"contributors":null,"quoted_status_id":663727008858423296,"quoted_status_id_str":"663727008858423296","quoted_status":{"created_at":"Mon Nov 09 14:37:05 +0000 2015","id":663727008858423296,"id_str":"663727008858423296","text":"@OfficialTruppi Hudson will beat Fivay in EVERY single sport this year. \ud83d\udcaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726775722229760,"in_reply_to_status_id_str":"663726775722229760","in_reply_to_user_id":1606527018,"in_reply_to_user_id_str":"1606527018","in_reply_to_screen_name":"OfficialTruppi","user":{"id":2324430960,"id_str":"2324430960","name":"November 24","screen_name":"HammaTimeEli22","location":null,"url":null,"description":"Eli is here to make it Lit. KHS. FL\u2708NJ","protected":false,"verified":false,"followers_count":649,"friends_count":284,"listed_count":2,"favourites_count":8662,"statuses_count":24424,"created_at":"Sun Feb 02 22:21:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663164306696073216\/QjxQn8xv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663164306696073216\/QjxQn8xv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2324430960\/1446945653","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OfficialTruppi","name":"Truppi\u270c\ufe0f","id":1606527018,"id_str":"1606527018","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/EWo4fQPVg8","expanded_url":"https:\/\/twitter.com\/hammatimeeli22\/status\/663727008858423296","display_url":"twitter.com\/hammatimeeli22\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127666"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209851392,"id_str":"663728278209851392","text":"RT @FahOop: \u0e2d\u0e48\u0e32\u0e19\u0e40\u0e08\u0e19\u0e19\u0e35\u0e48\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e16\u0e04\u0e31\u0e19\u0e25\u0e30 15 \u0e25\u0e49\u0e32\u0e19 \u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e41\u0e19\u0e48\u0e19\u0e46 \u0e1e\u0e2d\u0e40\u0e2b\u0e47\u0e19\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e19\u0e35\u0e49\u0e15\u0e1a\u0e21\u0e37\u0e2d\u0e43\u0e2b\u0e49\u0e19\u0e32\u0e07\u0e23\u0e31\u0e27\u0e46 http:\/\/t.co\/nSarMFr728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2995327532,"id_str":"2995327532","name":"\u0295\u2022\ufecc\u2022\u0294\u2122","screen_name":"_apichayaa","location":"MY HOME","url":null,"description":"You might meet a hundred acquaintances.Just to be a few special friend \u30b7","protected":false,"verified":false,"followers_count":136,"friends_count":527,"listed_count":0,"favourites_count":391,"statuses_count":6496,"created_at":"Sun Jan 25 03:44:13 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938202819735552\/lqG53F5e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938202819735552\/lqG53F5e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2995327532\/1446693282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Sep 03 11:44:17 +0000 2015","id":639403538481704960,"id_str":"639403538481704960","text":"\u0e2d\u0e48\u0e32\u0e19\u0e40\u0e08\u0e19\u0e19\u0e35\u0e48\u0e0b\u0e37\u0e49\u0e2d\u0e23\u0e16\u0e04\u0e31\u0e19\u0e25\u0e30 15 \u0e25\u0e49\u0e32\u0e19 \u0e04\u0e34\u0e14\u0e27\u0e48\u0e32\u0e15\u0e49\u0e2d\u0e07\u0e21\u0e35\u0e14\u0e23\u0e32\u0e21\u0e48\u0e32\u0e41\u0e19\u0e48\u0e19\u0e46 \u0e1e\u0e2d\u0e40\u0e2b\u0e47\u0e19\u0e04\u0e2d\u0e21\u0e40\u0e21\u0e49\u0e19\u0e19\u0e35\u0e49\u0e15\u0e1a\u0e21\u0e37\u0e2d\u0e43\u0e2b\u0e49\u0e19\u0e32\u0e07\u0e23\u0e31\u0e27\u0e46 http:\/\/t.co\/nSarMFr728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":394491482,"id_str":"394491482","name":"\u0e1f\u0e49\u0e32\u0e23\u0e14\u0e32\u270c","screen_name":"FahOop","location":" Thailand","url":null,"description":"\u0e04\u0e34\u0e14\u0e08\u0e30\u0e41\u0e23\u0e14\u0e04\u0e34\u0e14\u0e16\u0e36\u0e07\u0e41\u0e1a\u0e04\u0e2e\u0e22\u0e2d\u0e19 #\u0e17\u0e35\u0e21\u0e40\u0e2d\u0e47\u0e01\u0e42\u0e0b12 #GOT7 #DAY6 #\ucc2c\uc5f4\ubc31\ud604 #hunhan\u2661","protected":false,"verified":false,"followers_count":4369,"friends_count":393,"listed_count":0,"favourites_count":24697,"statuses_count":77214,"created_at":"Thu Oct 20 04:47:22 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF9999","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/467267623646810112\/HDnAaC68.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/467267623646810112\/HDnAaC68.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655793321105731584\/HrrZVNZs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655793321105731584\/HrrZVNZs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/394491482\/1415506399","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11330,"favorite_count":907,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":639403471901339648,"id_str":"639403471901339648","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":639403471901339648,"id_str":"639403471901339648","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}},{"id":639403471905550336,"id_str":"639403471905550336","indices":[86,108],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEesU8AASQzd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEesU8AASQzd.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":688,"h":682,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FahOop","name":"\u0e1f\u0e49\u0e32\u0e23\u0e14\u0e32\u270c","id":394491482,"id_str":"394491482","indices":[3,10]}],"symbols":[],"media":[{"id":639403471901339648,"id_str":"639403471901339648","indices":[98,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":639403538481704960,"source_status_id_str":"639403538481704960","source_user_id":394491482,"source_user_id_str":"394491482"}]},"extended_entities":{"media":[{"id":639403471901339648,"id_str":"639403471901339648","indices":[98,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEerUsAAvcJM.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":639403538481704960,"source_status_id_str":"639403538481704960","source_user_id":394491482,"source_user_id_str":"394491482"},{"id":639403471905550336,"id_str":"639403471905550336","indices":[98,120],"media_url":"http:\/\/pbs.twimg.com\/media\/CN-eEesU8AASQzd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CN-eEesU8AASQzd.jpg","url":"http:\/\/t.co\/nSarMFr728","display_url":"pic.twitter.com\/nSarMFr728","expanded_url":"http:\/\/twitter.com\/FahOop\/status\/639403538481704960\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":594,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":688,"h":682,"resize":"fit"},"small":{"w":340,"h":337,"resize":"fit"}},"source_status_id":639403538481704960,"source_status_id_str":"639403538481704960","source_user_id":394491482,"source_user_id_str":"394491482"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235033601,"id_str":"663728278235033601","text":"Check out the Buffet Schedule for Club Altus this month! https:\/\/t.co\/rlpKY48JzF","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":242476586,"id_str":"242476586","name":"Altus_FSS","screen_name":"Altus_FSS","location":"Altus, AFB","url":"http:\/\/www.altusfss.com","description":"The official Twitter Page of Altus AFB FSS! The appearance of links does not constitute sponsorship or endorsement.","protected":false,"verified":false,"followers_count":62,"friends_count":26,"listed_count":3,"favourites_count":1,"statuses_count":1431,"created_at":"Mon Jan 24 21:44:44 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545993168525590528\/dQoT5LXW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545993168525590528\/dQoT5LXW.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545992553493843968\/VB0R745Y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545992553493843968\/VB0R745Y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/242476586\/1422973714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rlpKY48JzF","expanded_url":"http:\/\/fb.me\/4otAe0dB7","display_url":"fb.me\/4otAe0dB7","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278214078464,"id_str":"663728278214078464","text":"\u30e2\u30a4\uff01Android\u304b\u3089\u30ad\u30e3\u30b9\u914d\u4fe1\u4e2d - https:\/\/t.co\/VZYMQ2dzFv","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3181593270,"id_str":"3181593270","name":"\u307f\u3063\u3061\u3083\u3093@\u2605kenty's\u2605","screen_name":"miyuu4253","location":null,"url":null,"description":"\u9ad8\uff11\u300116\u6b73\n\u9ed2\u9aea\u3067\u80a9\u3050\u3089\u3044\u3042\u3063\u3066\u8eab\u9577165\uff01\nkenty\u304c\u5927\u597d\u304d\u3067\u3059\uff08\uff0a\u00b4\u02d8\uff40\uff0a\uff09\u5927\u597d\u7269\u306f\u305f\u3053\u713c\uff01 \u6700\u8fd1\u30ea\u30b9\u30ca\u30fc\u304b\u3089\u306f\u30ab\u30ef\u30dc\u3001\u30a4\u30b1\u30dc\u3001\u7652\u3057\u30dc\u30a4\u30b9\u3060\u306d\u3068\u826f\u304f\u8a00\u308f\u308c\u307e\u3059\uff01\n\u6dfb\u3044\u5bdd\u5f7c\u5973\u3001\u6b4c\u67a0\u3068\u9854\u51fa\u3057\u3092\u3088\u304f\u3084\u308a\u307e\u3059\u3002\n\u58f0\u512a\u3001\u795e\u8c37\u6d69\u53f2\u304c\u597d\u304d\uff01\n\u30d5\u30a9\u30ed\u30fc\u5b9c\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059(pq\uff65v\uff65)skype\u304c\u77e5\u308a\u305f\u3044\u65b9\u306f\u3044\u3063\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":333,"friends_count":368,"listed_count":5,"favourites_count":2732,"statuses_count":3173,"created_at":"Fri May 01 11:33:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663550469076201473\/1xLiYQSZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663550469076201473\/1xLiYQSZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3181593270\/1444189231","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/VZYMQ2dzFv","expanded_url":"http:\/\/cas.st\/cd3d03a","display_url":"cas.st\/cd3d03a","indices":[21,44]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127658"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235033600,"id_str":"663728278235033600","text":"Me encanta como hay cientos de shows al aire y docenas de pel\u00edculas en cartelera, hablo emocionado de cuatro y resulta que me \"gusta todo\".","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3267371,"id_str":"3267371","name":"Dostochemsky","screen_name":"chemasolari","location":"Mexico City","url":null,"description":"\u201cTe Occidere Possunt Sed Te Edere Non Possunt Nefas Est (They can kill you, but the legalities of eating you are quite a bit dicier).\u201d - DFW. Screenwriter.","protected":false,"verified":false,"followers_count":6381,"friends_count":999,"listed_count":56,"favourites_count":9966,"statuses_count":85933,"created_at":"Tue Apr 03 00:26:06 +0000 2007","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572805758153011200\/I67BG0aT.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572805758153011200\/I67BG0aT.jpeg","profile_background_tile":true,"profile_link_color":"0000FF","profile_sidebar_border_color":"87BC44","profile_sidebar_fill_color":"E0FF92","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657321249639563265\/dioPZ9FI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657321249639563265\/dioPZ9FI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3267371\/1425400672","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239207425,"id_str":"663728278239207425","text":"@ave_b_rage \u9a0e\u58ebLv\u304c82\u306b\u3042\u304c\u3063\u305f\uff01(+1) \u305f\u3050\u3044\u306a\u3055\u3001\u3059\u3055\u307e\u3058\u3055\u3001\u307b\u308d\u306b\u304c\u3055\u7b49\u304c\u3042\u304c\u3063\u305f\uff01(\u30e1\u30c0\u30eb+1) \u3010\u30ed\u30b0\u30dcGET\u2192 https:\/\/t.co\/X7Cp2T1lbN \u3011 #lvup","source":"\u003ca href=\"https:\/\/lvagatter.jp\/\" rel=\"nofollow\"\u003e\u308c\u3079\u308b\u3042\u304c\u3063\u305f\u30fc\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2938714640,"in_reply_to_user_id_str":"2938714640","in_reply_to_screen_name":"ave_b_rage","user":{"id":2938714640,"id_str":"2938714640","name":"\u308c\u3044\u3058","screen_name":"ave_b_rage","location":"\u3055\u3044\u305f\u307e\u3051\u3093","url":"https:\/\/pvp.minecraft.jp\/b_rage","description":"minecraft\/osu!\/\u30d1\u30ba\u30c9\u30e9\/\u30e2\u30f3\u30b9\u30c8 \u6bce\u65e5\u697d\u3057\u3093\u3067\u3044\u307e\u3059\u3002\u5f71\u304c\u8584\u304f\u3066\u4f53\u5f31\u3044\u3067\u3059\u3002\u30af\u30ef\u30ac\u30bf\u98fc\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":400,"friends_count":219,"listed_count":8,"favourites_count":3032,"statuses_count":6587,"created_at":"Sun Dec 21 22:58:50 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663273944221220864\/iEmDUYKx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663273944221220864\/iEmDUYKx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2938714640\/1446816971","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"lvup","indices":[97,102]}],"urls":[{"url":"https:\/\/t.co\/X7Cp2T1lbN","expanded_url":"https:\/\/lvagatter.jp\/status.php?user_id=2938714640","display_url":"lvagatter.jp\/status.php?use\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"ave_b_rage","name":"\u308c\u3044\u3058","id":2938714640,"id_str":"2938714640","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127664"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222544896,"id_str":"663728278222544896","text":"tamam kanka konu\u015furuuuz @demet1melek","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728163663556608,"in_reply_to_status_id_str":"663728163663556608","in_reply_to_user_id":712979725,"in_reply_to_user_id_str":"712979725","in_reply_to_screen_name":"demet1melek","user":{"id":2708669840,"id_str":"2708669840","name":"hanife.","screen_name":"ekincanim","location":"g\u00fczel adam\u0131n,g\u00fczel fanlar\u0131.","url":null,"description":"\u0130smet Ekin Ko\u00e7.","protected":false,"verified":false,"followers_count":3121,"friends_count":380,"listed_count":2,"favourites_count":21296,"statuses_count":16881,"created_at":"Tue Aug 05 07:43:08 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594222433906724865\/8_6FeyI8.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594222433906724865\/8_6FeyI8.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661307803370438658\/Dq5QLQ4K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661307803370438658\/Dq5QLQ4K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2708669840\/1446503040","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"demet1melek","name":"s\u00fcreyyaburda\u2728","id":712979725,"id_str":"712979725","indices":[24,36]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209826816,"id_str":"663728278209826816","text":"@RK802STAFF \u3055\u3059\u304c\u3053\u308d\u3082\u3055\u3093\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728109972160512,"in_reply_to_status_id_str":"663728109972160512","in_reply_to_user_id":884408341,"in_reply_to_user_id_str":"884408341","in_reply_to_screen_name":"RK802STAFF","user":{"id":2263071223,"id_str":"2263071223","name":"\u304a\u3082\u3061\u3085\u30fc\u3074\u30fc","screen_name":"iamu9","location":null,"url":"http:\/\/twpf.jp\/iamu9","description":"\u308f\u305f\u3057\u3067\u3059","protected":false,"verified":false,"followers_count":300,"friends_count":337,"listed_count":15,"favourites_count":11833,"statuses_count":20597,"created_at":"Thu Dec 26 16:46:54 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660503805885190144\/pPYkoge4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660503805885190144\/pPYkoge4_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RK802STAFF","name":"ROCK KIDS 802 (\u516c\u5f0f)","id":884408341,"id_str":"884408341","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222454784,"id_str":"663728278222454784","text":"@narindal \u3160\u3160....\uce74\ub77c\uc2a4 \ub530\uc704 \uadf8\ub824\uc11c \ubb50\ud574...\ub09c \ub80c\uac8c\ub098 \ubcf4\uace0 \ub208\ud638\uac15 \ud558\uace0 \uc2f6\uc5b4\uc694!!!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728144227000320,"in_reply_to_status_id_str":"663728144227000320","in_reply_to_user_id":970024285,"in_reply_to_user_id_str":"970024285","in_reply_to_screen_name":"narindal","user":{"id":248093295,"id_str":"248093295","name":"\u73e0\uf9ef\uc8fc\uc778\/\uace0\uc288\uc9c4","screen_name":"zuinnim","location":null,"url":null,"description":"\ud0b9\uc2a4\ub9e8\/\uc131\uc778\/\ubbf8\uc131\ub144\uc790\ud314\ub85c\uae08\uc9c0\/ \ud314\uc5b8\ud314\ud504\ub9ac, \ub9de\ud314\uc740\uba58\uc158\uc8fc\uc138\uc694\u2764\ufe0f http:\/\/ask.fm\/zuinnim \uc5d0\uc2bc","protected":false,"verified":false,"followers_count":115,"friends_count":168,"listed_count":1,"favourites_count":2910,"statuses_count":14601,"created_at":"Sun Feb 06 06:52:19 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623730991228518404\/g262Jhqt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623730991228518404\/g262Jhqt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/248093295\/1427865155","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"narindal","name":"\u2740\ud6d9\ud589\ub2d8\uc73c \ubbf8\uc790\u2740","id":970024285,"id_str":"970024285","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278210027520,"id_str":"663728278210027520","text":"O demonstratie live de la Georgiana Mitroi. Invata si tu sa faci sandvisuri frumos decorate cu #buzztartino! https:\/\/t.co\/F5Y6k6XqaS","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1003605816,"id_str":"1003605816","name":"BUZZStore","screen_name":"TheBUZZStore","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":237,"friends_count":11,"listed_count":0,"favourites_count":0,"statuses_count":1295,"created_at":"Tue Dec 11 08:37:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2960581919\/02d87cb889b976b68ab7a812b744f052_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2960581919\/02d87cb889b976b68ab7a812b744f052_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"buzztartino","indices":[95,107]}],"urls":[{"url":"https:\/\/t.co\/F5Y6k6XqaS","expanded_url":"http:\/\/fb.me\/23GmhvHnH","display_url":"fb.me\/23GmhvHnH","indices":[109,132]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ro","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222430208,"id_str":"663728278222430208","text":"Wada calls for Russia to be banned from athletics in doping report https:\/\/t.co\/XWjtqCjeQd","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":994971786,"id_str":"994971786","name":"Kola Denzil","screen_name":"koladmdj","location":null,"url":null,"description":"Peace lover","protected":false,"verified":false,"followers_count":397,"friends_count":306,"listed_count":41,"favourites_count":495,"statuses_count":96714,"created_at":"Fri Dec 07 12:46:42 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639792087106473984\/7rBf_tAQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639792087106473984\/7rBf_tAQ_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XWjtqCjeQd","expanded_url":"http:\/\/dlvr.it\/Chfpbv","display_url":"dlvr.it\/Chfpbv","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127660"} +{"delete":{"status":{"id":663669264352739328,"id_str":"663669264352739328","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080127816"}} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278235058176,"id_str":"663728278235058176","text":"\u3057\u3083\u308f\u3089\u306d\u3070\u2026\u2026\u306d\u306d\u3070\u2026\u2026\u306d\u3070\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":186458047,"id_str":"186458047","name":"\u5449\u8449","screen_name":"KurehaH","location":"\u90fd\u5fc3\u306e\u7247\u9685","url":null,"description":"\u90fd\u5fc32\u5e74\u76ee\u306e\u9053\u6c11\u3002\u65e5\u5e38\u3082\u8da3\u5473\u3082\u533a\u5225\u306a\u304f\u3064\u3076\u3084\u304d\u307e\u3059\u3002\u4e00\u6b21\u5275\u4f5c\u3001\u3089\u304f\u304c\u304d\u3001\u6587\u5b57\u66f8\u304d\u3001\u3054\u306f\u3093\u3001\u65e5\u30cf\u30e0\u3001\u30d0\u30ec\u30a8\u3001\u30d5\u30a3\u30ae\u30e5\u30a2\u30b9\u30b1\u30fc\u30c8\u7b49\u3002\u632f\u308a\u5206\u3051\u30a2\u30ab\u306f\u5229\u7528\u3057\u3066\u307e\u3059\u304cRT\u7b49\u3067\u8272\u3005\u6df7\u5165\u3057\u307e\u3059\u3002\u3068\u3046\u3089\u3076\u4e2d\u3002\u5b66\u6226\u4e2d\u3002\u304a\u305f\u3081\u3057\u30d5\u30a9\u30ed\u30fc\u304a\u6c17\u8efd\u306b\u3069\u3046\u305e\u3002\u6c17\u306b\u5165\u3063\u305f\u3089\u58f0\u639b\u3051\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":158,"friends_count":269,"listed_count":18,"favourites_count":5080,"statuses_count":77985,"created_at":"Fri Sep 03 14:29:58 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000121637212\/52bb2d529d3f914b6b550dc10e6e3a76.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000121637212\/52bb2d529d3f914b6b550dc10e6e3a76.jpeg","profile_background_tile":false,"profile_link_color":"62735C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638038927366991872\/GA5JwV34_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638038927366991872\/GA5JwV34_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/186458047\/1400382655","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127663"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239211520,"id_str":"663728278239211520","text":"@Dube_WhiteBear @thediary001 \uc7a0\uc2dc\ub9cc...\uc800\uc0c8\ub294..?!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728052845744129,"in_reply_to_status_id_str":"663728052845744129","in_reply_to_user_id":3336209665,"in_reply_to_user_id_str":"3336209665","in_reply_to_screen_name":"Dube_WhiteBear","user":{"id":2890520798,"id_str":"2890520798","name":"\ud638\ub77c\uc6b0\ud0a4(\ud638\uad6c)","screen_name":"badadoch","location":"\uacbd\uc0c1\ub0a8\ub3c4 \ucc3d\uc6d0\uc2dc","url":"http:\/\/m.blog.naver.com\/ysj00529","description":"\/ 00\ub144\uc0dd \/ \uadf8\ub9bc\uc7c1\uc774 \/ \ud638\ub791\uc774 \/ \ud638\uad6c \/ \ube14\ub85c\uadf8-\uc6b4\uc601\uc911 \/ \ucde8\ud5a5\uc874\uc911 ON \/ \ub355\uc9c8\ubd84\uc57c - \ub9ac\uadf8\uc624\ube0c\ub808\uc804\ub4dc, \ub3d9\ubb3c \/ \uc131\uaca9 - \uadc0\uc5ec\uc6b4\uac83, \uac70\ub300\ud55c\uac83\uc744 \uc88b\uc544\ud558\uace0 \ub208\uce58\uc5c6\uc74c \/ \ud604\uc7ac \uc790\uc791 \uce90\ub9ad\ud130 \ucee4\ubba4\ub2c8\ud2f0 \uc900\ube44\uc911.","protected":false,"verified":false,"followers_count":22,"friends_count":66,"listed_count":0,"favourites_count":13,"statuses_count":166,"created_at":"Wed Nov 05 06:36:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662834116908351488\/IBSzna1j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662834116908351488\/IBSzna1j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2890520798\/1440787128","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dube_WhiteBear","name":"\ub4c0\ubca0","id":3336209665,"id_str":"3336209665","indices":[0,15]},{"screen_name":"thediary001","name":"\uc204\ub354\uc784","id":3415677379,"id_str":"3415677379","indices":[16,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080127664"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239232000,"id_str":"663728278239232000","text":"RT @chung_deul_bf: RT\ub9cc\ud558\uace0 \ud280\uc138\uc5ec\ud83d\ude2c\n\n\uc218\ub2a5(11\/12)\ub9c8\uc9c0\ub9c9 \ud0d0\uad6c\uc2dc\uac04 \uc885\ub8cc \uc804\uae4c\uc9c0 \ud2b8\uc717,\ub9ac\ud2b8\uc717,\ub9c8\uc74c \uc911 \ud558\ub098\ub77c\ub3c4 \ud558\uba74 \uc81c \uc544\uc774\ud328\ub4dc \ud55c\ubd84\ud55c\ud14c \ubcf4\ub0b4\ub4dc\ub9bc. \n\ub808\ud2f0\ub098 \ubbf8\ub2c82\uc778\uc9c0 \ubb54\uc9c0 16GB.\n[\uc5d0\uc2a4\ud06c \uc5f0\ub3d9\ud574\ub193\uc740 \ud2b8\uc717\uc740 \uc81c\uc678.] https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3165131702,"id_str":"3165131702","name":"\uc6b0\uc5c9\u314d\u25c7\u314d\ub9c8\uce74\ub871","screen_name":"oolloo4564","location":"\ub9c8\uce74\ub871 \uac00\uac8c","url":null,"description":"\ub9c8\ud2f4 \ucd5c\uc560 \uc790\uce90 \uadf8\uc678 \uc5f4\uc2ec\ud788 \uce58\uc774\ub294 \uc911","protected":false,"verified":false,"followers_count":79,"friends_count":158,"listed_count":0,"favourites_count":1812,"statuses_count":6155,"created_at":"Mon Apr 20 09:41:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660716861542170624\/A4uPMsIN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660716861542170624\/A4uPMsIN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3165131702\/1429523066","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:56:51 +0000 2015","id":663324300045254657,"id_str":"663324300045254657","text":"RT\ub9cc\ud558\uace0 \ud280\uc138\uc5ec\ud83d\ude2c\n\n\uc218\ub2a5(11\/12)\ub9c8\uc9c0\ub9c9 \ud0d0\uad6c\uc2dc\uac04 \uc885\ub8cc \uc804\uae4c\uc9c0 \ud2b8\uc717,\ub9ac\ud2b8\uc717,\ub9c8\uc74c \uc911 \ud558\ub098\ub77c\ub3c4 \ud558\uba74 \uc81c \uc544\uc774\ud328\ub4dc \ud55c\ubd84\ud55c\ud14c \ubcf4\ub0b4\ub4dc\ub9bc. \n\ub808\ud2f0\ub098 \ubbf8\ub2c82\uc778\uc9c0 \ubb54\uc9c0 16GB.\n[\uc5d0\uc2a4\ud06c \uc5f0\ub3d9\ud574\ub193\uc740 \ud2b8\uc717\uc740 \uc81c\uc678.] https:\/\/t.co\/4TOMaMzmHN","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3390641126,"id_str":"3390641126","name":"\ucf8c\ubcc0\uc720\uc0b0\uade0","screen_name":"chung_deul_bf","location":null,"url":"http:\/\/ask.fm\/chungdeul","description":"\uadf8\uc800 \uc81c \uc190\uae00\uc528\ub85c \ubc29\ud0c4\uc774\ub4e4 \uac00\uc0ac\ub97c \uc501\ub2c8\ub2e4\/2015.08.30~\/\ud540\ud574\ub193\uc740 \uc624\ub298\uc758 \ubc29\ud0c4\ub178\ub798\ub294 \uc9c0\ubbf8\ub2c8\uc774\ubca4\ud2b8 \ub05d\ub098\uace0ing\/ \ud5e4\ub354 \uc774\uc628\ub2d8(@Jimin2Lion)\/ \ub2c9\ub134 \ubcf4\uace0 \ub180\ub77c\uc9c0 \ub9c8\uc138\uc720 \uccad\ub4e4\uc740 \uc218\ub2a5\ub0a0 \ucef4\ubc31","protected":false,"verified":false,"followers_count":366,"friends_count":153,"listed_count":0,"favourites_count":897,"statuses_count":3928,"created_at":"Sun Aug 30 08:17:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660380950702878720\/YM-caxpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660380950702878720\/YM-caxpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3390641126\/1446283432","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11637,"favorite_count":2060,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663324283419033600,"id_str":"663324283419033600","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","url":"https:\/\/t.co\/4TOMaMzmHN","display_url":"pic.twitter.com\/4TOMaMzmHN","expanded_url":"http:\/\/twitter.com\/chung_deul_bf\/status\/663324300045254657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663324283419033600,"id_str":"663324283419033600","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","url":"https:\/\/t.co\/4TOMaMzmHN","display_url":"pic.twitter.com\/4TOMaMzmHN","expanded_url":"http:\/\/twitter.com\/chung_deul_bf\/status\/663324300045254657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chung_deul_bf","name":"\ucf8c\ubcc0\uc720\uc0b0\uade0","id":3390641126,"id_str":"3390641126","indices":[3,17]}],"symbols":[],"media":[{"id":663324283419033600,"id_str":"663324283419033600","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","url":"https:\/\/t.co\/4TOMaMzmHN","display_url":"pic.twitter.com\/4TOMaMzmHN","expanded_url":"http:\/\/twitter.com\/chung_deul_bf\/status\/663324300045254657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663324300045254657,"source_status_id_str":"663324300045254657","source_user_id":3390641126,"source_user_id_str":"3390641126"}]},"extended_entities":{"media":[{"id":663324283419033600,"id_str":"663324283419033600","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSZ69wVAAANaF4.jpg","url":"https:\/\/t.co\/4TOMaMzmHN","display_url":"pic.twitter.com\/4TOMaMzmHN","expanded_url":"http:\/\/twitter.com\/chung_deul_bf\/status\/663324300045254657\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663324300045254657,"source_status_id_str":"663324300045254657","source_user_id":3390641126,"source_user_id_str":"3390641126"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080127664"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278218235904,"id_str":"663728278218235904","text":"RT @Missy1Oneokrock: \u307f\u3093\u306a\u304b\u3063\u3053\u3044\u3044\u3002\n\u6700\u5f8c\u306etaka\u3068tomoya\u306e\u30cf\u30a4\u30bf\u30c3\u30c1\u306a\u3093\u304b\u7279\u306b\u304b\u3063\u3053\u3044\u3044\u3002 https:\/\/t.co\/tluse46wu6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3117711753,"id_str":"3117711753","name":"\u88d5\u6a39","screen_name":"az317hiroki","location":null,"url":null,"description":"\u30ef\u30f3\u30aa\u30af\uff0f\u30de\u30a4\u30d5\u30a1\u30b9\uff0f\u30e9\u30eb\u30af\uff0fATC\uff0fColdrain\uff0fCrossfaith\uff0f \u30c9\u30ed\u30b9\uff0fLas Vegas\uff0fback number\uff0fSWANKY DANK\uff0fSPYAIR\uff0f\u5927\u539f\u6afb\u5b50\u304c\u597d\u304d\u3067\u3059\u3002\u4e00\u756a\u306f\u30ef\u30f3\u30aa\u30af\u3067\u3059\u3002\u30d7\u30ed\u91ce\u7403\u3067\u306f\u3001\u962a\u795e\u30bf\u30a4\u30ac\u30fc\u30b9\u304c\u597d\u304d\u3067\u3059(*\u00b4\u03c9`*)\u8ab0\u3067\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01\u50d5\u306f\u865a\u8a00NEUROSE\u2026","protected":false,"verified":false,"followers_count":141,"friends_count":189,"listed_count":0,"favourites_count":971,"statuses_count":829,"created_at":"Thu Mar 26 08:51:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656404967754891264\/uGN8hjWu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656404967754891264\/uGN8hjWu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117711753\/1445334113","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 10:29:35 +0000 2015","id":663302336828182529,"id_str":"663302336828182529","text":"\u307f\u3093\u306a\u304b\u3063\u3053\u3044\u3044\u3002\n\u6700\u5f8c\u306etaka\u3068tomoya\u306e\u30cf\u30a4\u30bf\u30c3\u30c1\u306a\u3093\u304b\u7279\u306b\u304b\u3063\u3053\u3044\u3044\u3002 https:\/\/t.co\/tluse46wu6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3791510299,"id_str":"3791510299","name":"ONEOKROCK Missyou","screen_name":"Missy1Oneokrock","location":"\u718a\u672c\u770c \u718a\u672c\u5e02","url":null,"description":"ONEOKROCK\u3002\u4e16\u754c\u4e2d\u306eOORer\u3055\u3093\u9054\u3068\u7e4b\u304c\u308a\u305f\u3044\u3001\u305d\u3057\u3066\u7686\u3093\u306a\u3067ONEOKROCK\u3092\u4e16\u754c\u306e\u9802\u5929\u3078\u9023\u308c\u3066\u3044\u304f\uff01 Border in ONEOKROCK ,there is no\u300a\u30ef\u30f3\u30aa\u30af\u306b\u56fd\u5883\u306f\u3001\u306a\u3044\u300bfollowme!! 18 \u304f\u307e\u30e2\u30f3","protected":false,"verified":false,"followers_count":1813,"friends_count":2386,"listed_count":3,"favourites_count":32,"statuses_count":177,"created_at":"Mon Oct 05 11:08:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707233352417281\/by0lCP3k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707233352417281\/by0lCP3k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3791510299\/1447075185","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":251,"favorite_count":389,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663301813781684225,"id_str":"663301813781684225","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","url":"https:\/\/t.co\/tluse46wu6","display_url":"pic.twitter.com\/tluse46wu6","expanded_url":"http:\/\/twitter.com\/Missy1Oneokrock\/status\/663302336828182529\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663301813781684225,"id_str":"663301813781684225","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","url":"https:\/\/t.co\/tluse46wu6","display_url":"pic.twitter.com\/tluse46wu6","expanded_url":"http:\/\/twitter.com\/Missy1Oneokrock\/status\/663302336828182529\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"duration_millis":29796,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/pl\/BROxASc-lgVJNO0A.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/640x360\/UkOO_bIIbFRcOzor.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/640x360\/UkOO_bIIbFRcOzor.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/pl\/BROxASc-lgVJNO0A.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/320x180\/3LP-ymU4i0O8LAjU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Missy1Oneokrock","name":"ONEOKROCK Missyou","id":3791510299,"id_str":"3791510299","indices":[3,19]}],"symbols":[],"media":[{"id":663301813781684225,"id_str":"663301813781684225","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","url":"https:\/\/t.co\/tluse46wu6","display_url":"pic.twitter.com\/tluse46wu6","expanded_url":"http:\/\/twitter.com\/Missy1Oneokrock\/status\/663302336828182529\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663302336828182529,"source_status_id_str":"663302336828182529","source_user_id":3791510299,"source_user_id_str":"3791510299"}]},"extended_entities":{"media":[{"id":663301813781684225,"id_str":"663301813781684225","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663301813781684225\/pu\/img\/rm2dWlBAMpRHLw8x.jpg","url":"https:\/\/t.co\/tluse46wu6","display_url":"pic.twitter.com\/tluse46wu6","expanded_url":"http:\/\/twitter.com\/Missy1Oneokrock\/status\/663302336828182529\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":640,"h":360,"resize":"fit"}},"source_status_id":663302336828182529,"source_status_id_str":"663302336828182529","source_user_id":3791510299,"source_user_id_str":"3791510299","video_info":{"aspect_ratio":[16,9],"duration_millis":29796,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/pl\/BROxASc-lgVJNO0A.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/640x360\/UkOO_bIIbFRcOzor.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/640x360\/UkOO_bIIbFRcOzor.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/pl\/BROxASc-lgVJNO0A.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663301813781684225\/pu\/vid\/320x180\/3LP-ymU4i0O8LAjU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127659"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209994752,"id_str":"663728278209994752","text":"RT @Rufino_nessa: Consigo nem olhar pra cara do meu irm\u00e3o, nojo desse grt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3438526228,"id_str":"3438526228","name":"Carol Silva","screen_name":"brr_carol","location":"CDHU","url":"https:\/\/instagram.com\/__carolsilva\/","description":"n\u00e3o gosta de sugest\u00e3o dona da raz\u00e3o e a idade \u00e9 17 - snap: brr.carol","protected":false,"verified":false,"followers_count":168,"friends_count":187,"listed_count":0,"favourites_count":369,"statuses_count":2147,"created_at":"Mon Aug 24 21:17:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658401493465329664\/VGJeO82-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658401493465329664\/VGJeO82-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3438526228\/1441860805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:36:06 +0000 2015","id":663711663196098560,"id_str":"663711663196098560","text":"Consigo nem olhar pra cara do meu irm\u00e3o, nojo desse grt","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3645544155,"id_str":"3645544155","name":"Vanessa \u2757","screen_name":"Rufino_nessa","location":null,"url":null,"description":"Fa\u00e7o mais quest\u00e3o de nada, foda-se wpp: 971098606 rs","protected":false,"verified":false,"followers_count":646,"friends_count":1297,"listed_count":0,"favourites_count":1814,"statuses_count":1978,"created_at":"Sun Sep 13 20:17:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648262023952908289\/4vDsoH-0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648262023952908289\/4vDsoH-0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3645544155\/1446606287","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Rufino_nessa","name":"Vanessa \u2757","id":3645544155,"id_str":"3645544155","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278209888257,"id_str":"663728278209888257","text":"RT @LJOE_37s_LOVE_U: \u314b \u3151 \uadc0\uc5ec\uc6cc https:\/\/t.co\/RRjwIH14WL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1607416856,"id_str":"1607416856","name":"COCOMELO13","screen_name":"mo14m92","location":"Chonburi Thailand ","url":"http:\/\/cocomelo13.wordpress.com\/","description":"Falling in love with #capjoe \/ Mechanical Engineering , I have 2 younger sister. Free to unfollow \u300c\u0e40\u0e1b\u0e47\u0e19\u0e15\u0e34\u0e48\u0e07\u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e40\u0e14\u0e34\u0e21 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e04\u0e37\u0e2d\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e27\u0e25\u0e32\u300d","protected":false,"verified":false,"followers_count":101,"friends_count":384,"listed_count":21,"favourites_count":507,"statuses_count":117540,"created_at":"Sat Jul 20 04:24:28 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A4B45D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508599488403881985\/lwIsFjEY.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508599488403881985\/lwIsFjEY.png","profile_background_tile":true,"profile_link_color":"635026","profile_sidebar_border_color":"A4B45D","profile_sidebar_fill_color":"CEDBD7","profile_text_color":"8C9C43","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660984109498413056\/WaH5VgaZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660984109498413056\/WaH5VgaZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1607416856\/1441721865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:06:30 +0000 2015","id":663553218824175617,"id_str":"663553218824175617","text":"\u314b \u3151 \uadc0\uc5ec\uc6cc https:\/\/t.co\/RRjwIH14WL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":190437436,"id_str":"190437436","name":"\uc5d8\uc870 \ud32c 37\ucd08\u2661","screen_name":"LJOE_37s_LOVE_U","location":"\ubcd1\ud5cc\uc774 \ub9c8\uc74c\uc18d^*^ @LJOEFAN_COM","url":"http:\/\/37seconds.tistory.com","description":"\ubcd1\ud5cc\uc774\uc758 37\ucd08\u2661 \uc719\ud06c! \/ \uc5d8\uc870\ud32c\ub2f7\ucef4 @LJOEFAN_COM L.JOE LOVE U \u2661_\u2661 Sweetest Honey Ever ( Instagram : HONEY37SECONDS )","protected":false,"verified":false,"followers_count":5284,"friends_count":75,"listed_count":138,"favourites_count":339,"statuses_count":20763,"created_at":"Mon Sep 13 23:22:20 +0000 2010","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF9C9C","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541052180174618624\/yZDlos0g_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541052180174618624\/yZDlos0g_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/190437436\/1401963505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":34,"favorite_count":32,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663553205284966400,"id_str":"663553205284966400","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","url":"https:\/\/t.co\/RRjwIH14WL","display_url":"pic.twitter.com\/RRjwIH14WL","expanded_url":"http:\/\/twitter.com\/LJOE_37s_LOVE_U\/status\/663553218824175617\/photo\/1","type":"photo","sizes":{"medium":{"w":429,"h":478,"resize":"fit"},"large":{"w":429,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":377,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663553205284966400,"id_str":"663553205284966400","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","url":"https:\/\/t.co\/RRjwIH14WL","display_url":"pic.twitter.com\/RRjwIH14WL","expanded_url":"http:\/\/twitter.com\/LJOE_37s_LOVE_U\/status\/663553218824175617\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":429,"h":478,"resize":"fit"},"large":{"w":429,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":377,"resize":"fit"}},"video_info":{"aspect_ratio":[215,239],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVqH-KVEAAmKC6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"LJOE_37s_LOVE_U","name":"\uc5d8\uc870 \ud32c 37\ucd08\u2661","id":190437436,"id_str":"190437436","indices":[3,19]}],"symbols":[],"media":[{"id":663553205284966400,"id_str":"663553205284966400","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","url":"https:\/\/t.co\/RRjwIH14WL","display_url":"pic.twitter.com\/RRjwIH14WL","expanded_url":"http:\/\/twitter.com\/LJOE_37s_LOVE_U\/status\/663553218824175617\/photo\/1","type":"photo","sizes":{"medium":{"w":429,"h":478,"resize":"fit"},"large":{"w":429,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":377,"resize":"fit"}},"source_status_id":663553218824175617,"source_status_id_str":"663553218824175617","source_user_id":190437436,"source_user_id_str":"190437436"}]},"extended_entities":{"media":[{"id":663553205284966400,"id_str":"663553205284966400","indices":[29,52],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTVqH-KVEAAmKC6.png","url":"https:\/\/t.co\/RRjwIH14WL","display_url":"pic.twitter.com\/RRjwIH14WL","expanded_url":"http:\/\/twitter.com\/LJOE_37s_LOVE_U\/status\/663553218824175617\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":429,"h":478,"resize":"fit"},"large":{"w":429,"h":478,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":377,"resize":"fit"}},"source_status_id":663553218824175617,"source_status_id_str":"663553218824175617","source_user_id":190437436,"source_user_id_str":"190437436","video_info":{"aspect_ratio":[215,239],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTVqH-KVEAAmKC6.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080127657"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278243422208,"id_str":"663728278243422208","text":"@syshibata1222 \u30b3\u30f3\u30c8\u30e9\u30b9\u30c8\u304c\uff5e\u4e94\u7dda\u8b5c\u3092\u98db\u3073\u56de\u308a\uff5e\u6b4c\u3068\u30ea\u30ba\u30e0\u306b\u306a\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727630844215296,"in_reply_to_status_id_str":"663727630844215296","in_reply_to_user_id":3197386363,"in_reply_to_user_id_str":"3197386363","in_reply_to_screen_name":"syshibata1222","user":{"id":1459390405,"id_str":"1459390405","name":"\u3064\u306e\u305c\u307f\u3074\u3063\u3074\u306f\u3088\u3044\u3053\u3060\u3051","screen_name":"Tsuno_bump","location":"OFF\u6cbc","url":"http:\/\/minmintsunozemi.tumblr.com","description":"\u9ce5\u8cb4\u65cf\u3067\u3059\na tiny pom-pom chicken","protected":false,"verified":false,"followers_count":327,"friends_count":137,"listed_count":22,"favourites_count":12516,"statuses_count":18197,"created_at":"Sun May 26 11:03:06 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660695566146342912\/2T0qA1_6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660695566146342912\/2T0qA1_6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1459390405\/1444318087","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"syshibata1222","name":"\u904a","id":3197386363,"id_str":"3197386363","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127665"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278247571456,"id_str":"663728278247571456","text":"@yousei109 \u540c\u69d8\u306e\u4e8b\u4ef6\u304c\u4ee5\u524d\u3042\u3063\u305f\u3088\u3046\u306a\n\u3082\u3046\u3061\u3087\u3063\u3068\u8003\u3048\u3066\u884c\u52d5\u3059\u308c\u3070\u3044\u3044\u306e\u306b(\u826f\u304f\u306f\u306a\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726887772950528,"in_reply_to_status_id_str":"663726887772950528","in_reply_to_user_id":125797476,"in_reply_to_user_id_str":"125797476","in_reply_to_screen_name":"yousei109","user":{"id":83841300,"id_str":"83841300","name":"\u3058\u3087\u306b\u3043","screen_name":"jonney1978","location":"\u3070\uff5e\u3080\u304f\uff5e\u3078\u3093\u266a","url":"http:\/\/baum.6.ql.bz\/","description":"\u6700\u8fd1\u306f\u8266\u3053\u308c\u3057\u304b\u3084\u3063\u3066\u306a\u3044\u306a\u30fb\u30fb\u30fb\r\n\u30e9\u30a4\u30d6\u914d\u4fe1\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u305f\u3051\u3069\r\n\u8266\u3053\u308c\u306e\u30e9\u30a4\u30d6\u914d\u4fe1\u3063\u3066\u3069\u3046\u306a\u306e\uff1f\r\nUstream\u3067\u914d\u4fe1 \u2192 http:\/\/ustre.am\/7BZ3","protected":false,"verified":false,"followers_count":8,"friends_count":11,"listed_count":0,"favourites_count":9,"statuses_count":1088,"created_at":"Tue Oct 20 13:15:35 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/495314909538689024\/snLw9UYc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/495314909538689024\/snLw9UYc.jpeg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659989407349366784\/0WMIcfQU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659989407349366784\/0WMIcfQU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/83841300\/1409492713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yousei109","name":"\u30ca\u30f4\u30a7","id":125797476,"id_str":"125797476","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127666"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278214066176,"id_str":"663728278214066176","text":"Trend Alert: 'Katelynn Sampson'. More trends at https:\/\/t.co\/SHjd3tkINE #trndnl https:\/\/t.co\/powpXOomoI","source":"\u003ca href=\"http:\/\/laconversa.com\" rel=\"nofollow\"\u003eCanada Trends\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1270239397,"id_str":"1270239397","name":"Trendinalia Canada","screen_name":"trendinaliaCA","location":"Canada","url":"http:\/\/trendinalia.com\/twitter-trending-topics\/canada\/","description":"Information about Twitter's Trending Topics in Canada","protected":false,"verified":false,"followers_count":1086,"friends_count":7,"listed_count":63,"favourites_count":5,"statuses_count":232602,"created_at":"Fri Mar 15 17:15:18 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3383708384\/73ed351238e684e00272c5bec12879dc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3383708384\/73ed351238e684e00272c5bec12879dc_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[56.9547,-98.3090]},"coordinates":{"type":"Point","coordinates":[-98.3090,56.9547]},"place":{"id":"654fd5617c7361d0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/654fd5617c7361d0.json","place_type":"city","name":"Division No. 23, Unorganized","full_name":"Division No. 23, Unorganized, Manitoba","country_code":"CA","country":"Canada","bounding_box":{"type":"Polygon","coordinates":[[[-102.009382,55.158501],[-102.009382,60.000283],[-88.989166,60.000283],[-88.989166,55.158501]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"trndnl","indices":[72,79]}],"urls":[{"url":"https:\/\/t.co\/SHjd3tkINE","expanded_url":"http:\/\/www.trendinalia.com\/twitter-trending-topics\/canada\/canada-today.html","display_url":"trendinalia.com\/twitter-trendi\u2026","indices":[48,71]}],"user_mentions":[],"symbols":[],"media":[{"id":663728278130130944,"id_str":"663728278130130944","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWjVUAAA9z1I.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWjVUAAA9z1I.png","url":"https:\/\/t.co\/powpXOomoI","display_url":"pic.twitter.com\/powpXOomoI","expanded_url":"http:\/\/twitter.com\/trendinaliaCA\/status\/663728278214066176\/photo\/1","type":"photo","sizes":{"medium":{"w":302,"h":248,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":302,"h":248,"resize":"fit"},"large":{"w":302,"h":248,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728278130130944,"id_str":"663728278130130944","indices":[80,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWjVUAAA9z1I.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWjVUAAA9z1I.png","url":"https:\/\/t.co\/powpXOomoI","display_url":"pic.twitter.com\/powpXOomoI","expanded_url":"http:\/\/twitter.com\/trendinaliaCA\/status\/663728278214066176\/photo\/1","type":"photo","sizes":{"medium":{"w":302,"h":248,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":302,"h":248,"resize":"fit"},"large":{"w":302,"h":248,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127658"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278218391552,"id_str":"663728278218391552","text":"\u0641\u064a\u062f\u064a\u0648 - \u0647\u0644 \u0645\u0645\u0643\u0646 \u0646\u062c\u0639\u0644 \u0646\u063a\u0645\u0629 \u0627\u0644\u062c\u0648\u0627\u0644 \u062f\u0639\u0627\u0621 \u0627\u0648 \u0627\u0630\u0627\u0646 - \u0627\u0633\u0645 https:\/\/t.co\/iasPIS6tnA https:\/\/t.co\/vwjEm0kXMu","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2485795344,"id_str":"2485795344","name":"\u0634\u0648 \u0643\u0648\u064a\u062a","screen_name":"showkw112","location":null,"url":null,"description":"\u0645\u062a\u0639\u0629 \u0627\u0644\u0645\u0634\u0627\u0647\u062f\u0629","protected":false,"verified":false,"followers_count":118329,"friends_count":96577,"listed_count":37,"favourites_count":8,"statuses_count":281807,"created_at":"Fri May 09 19:55:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/609768415922774016\/LcMs6YGF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/609768415922774016\/LcMs6YGF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2485795344\/1400289783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/iasPIS6tnA","expanded_url":"http:\/\/www.showq8.com\/%d9%81%d9%8a%d8%af%d9%8a%d9%88-%d9%87%d9%84-%d9%85%d9%85%d9%83%d9%86-%d9%86%d8%ac%d8%b9%d9%84-%d9%86%d8%ba%d9%85%d8%a9-%d8%a7%d9%84%d8%ac%d9%88%d8%a7%d9%84-%d8%af%d8%b9%d8%a7%d8%a1-%d8%a7%d9%88\/?utm_source=ReviveOldPost&utm_medium=social&utm_campaign=ReviveOldPost","display_url":"showq8.com\/%d9%81%d9%8a%d\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663728275294969863,"id_str":"663728275294969863","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWYxW4AccTYD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWYxW4AccTYD.png","url":"https:\/\/t.co\/vwjEm0kXMu","display_url":"pic.twitter.com\/vwjEm0kXMu","expanded_url":"http:\/\/twitter.com\/showkw112\/status\/663728278218391552\/photo\/1","type":"photo","sizes":{"medium":{"w":156,"h":88,"resize":"fit"},"large":{"w":156,"h":88,"resize":"fit"},"thumb":{"w":150,"h":88,"resize":"crop"},"small":{"w":156,"h":88,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728275294969863,"id_str":"663728275294969863","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWYxW4AccTYD.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWYxW4AccTYD.png","url":"https:\/\/t.co\/vwjEm0kXMu","display_url":"pic.twitter.com\/vwjEm0kXMu","expanded_url":"http:\/\/twitter.com\/showkw112\/status\/663728278218391552\/photo\/1","type":"photo","sizes":{"medium":{"w":156,"h":88,"resize":"fit"},"large":{"w":156,"h":88,"resize":"fit"},"thumb":{"w":150,"h":88,"resize":"crop"},"small":{"w":156,"h":88,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080127659"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278222471168,"id_str":"663728278222471168","text":"\u3046\u3047\uff5e\u3044\u6570\u5b57\u677e\uff76\uff97\uff70\u2934\ufe0e\u2934\ufe0e https:\/\/t.co\/i7Gz2txo1X","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3401442132,"id_str":"3401442132","name":"\u3061\u30fc\u677e","screen_name":"chitamagoyaki","location":"\uff77\uff81\uff76\uff9e\uff72\u540c\u597d\u4f1a\u4f1a\u9577","url":null,"description":"\uff72\uff76\uff81\uff6c\uff9d\u57a2\u306b\u306a\u308a\u3064\u3064\u3042\u308b\u57a2 \/ \u6b4c\u3044\u624b\u3055\u3093 \/ \u308a\u3076 \/ \u30bb\u30f3\u30e9 \/ \uff92\uff76\uff9e\uff83\uff97\u30fb\uff7e\uff9e\uff9b \/ niconico \/ \u30a2\u30cb\u30e1 \/ \u6f2b\u753b \/ v\u7cfb \/ abc \/ \uff77\uff81\uff76\uff9e\uff72\u540c\u597d\u4f1a \/ \uff78\uff9e\uff80\uff9e\uff78\uff9e\uff80\uff9e\u7d44 \/ \uff72\uff76\uff81\uff70\uff91\u2192TNS04 \/\u5341\u56db\u677e\u63a8\u3057 \/ \u5ac1\u261b@tamagogayu30 \u261b@Lua_2451","protected":false,"verified":false,"followers_count":57,"friends_count":80,"listed_count":4,"favourites_count":2387,"statuses_count":4703,"created_at":"Mon Aug 31 07:51:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662218385275510784\/DY8KNo2N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662218385275510784\/DY8KNo2N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3401442132\/1445263071","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728270312017922,"id_str":"663728270312017922","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWGNVEAIwE2G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWGNVEAIwE2G.jpg","url":"https:\/\/t.co\/i7Gz2txo1X","display_url":"pic.twitter.com\/i7Gz2txo1X","expanded_url":"http:\/\/twitter.com\/chitamagoyaki\/status\/663728278222471168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728270312017922,"id_str":"663728270312017922","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWGNVEAIwE2G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWGNVEAIwE2G.jpg","url":"https:\/\/t.co\/i7Gz2txo1X","display_url":"pic.twitter.com\/i7Gz2txo1X","expanded_url":"http:\/\/twitter.com\/chitamagoyaki\/status\/663728278222471168\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080127660"} +{"created_at":"Mon Nov 09 14:42:07 +0000 2015","id":663728278239318016,"id_str":"663728278239318016","text":"The new Twitter update got me like https:\/\/t.co\/Z3l5xahQWv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2997506795,"id_str":"2997506795","name":"\u0633\u0644\u0645\u064a\u2653\ufe0f","screen_name":"salmaaashadi","location":null,"url":null,"description":"since 2002 \u2764\ufe0ftennis\u2764if you are not smiling you are doing it wrong :)","protected":false,"verified":false,"followers_count":735,"friends_count":378,"listed_count":0,"favourites_count":943,"statuses_count":3897,"created_at":"Sun Jan 25 09:13:45 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663050878560137220\/Zno9yJCL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663050878560137220\/Zno9yJCL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2997506795\/1446664600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728266600185856,"id_str":"663728266600185856","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV4YXAAAfXR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV4YXAAAfXR1.jpg","url":"https:\/\/t.co\/Z3l5xahQWv","display_url":"pic.twitter.com\/Z3l5xahQWv","expanded_url":"http:\/\/twitter.com\/salmaaashadi\/status\/663728278239318016\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728266600185856,"id_str":"663728266600185856","indices":[35,58],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJV4YXAAAfXR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJV4YXAAAfXR1.jpg","url":"https:\/\/t.co\/Z3l5xahQWv","display_url":"pic.twitter.com\/Z3l5xahQWv","expanded_url":"http:\/\/twitter.com\/salmaaashadi\/status\/663728278239318016\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080127664"} +{"delete":{"status":{"id":518674444206632961,"id_str":"518674444206632961","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080127958"}} +{"delete":{"status":{"id":663415496382001152,"id_str":"663415496382001152","user_id":254151554,"user_id_str":"254151554"},"timestamp_ms":"1447080128183"}} +{"delete":{"status":{"id":415921780856205312,"id_str":"415921780856205312","user_id":913706594,"user_id_str":"913706594"},"timestamp_ms":"1447080128366"}} +{"delete":{"status":{"id":631864746317381633,"id_str":"631864746317381633","user_id":2694625119,"user_id_str":"2694625119"},"timestamp_ms":"1447080128464"}} +{"delete":{"status":{"id":649261259720777733,"id_str":"649261259720777733","user_id":612689875,"user_id_str":"612689875"},"timestamp_ms":"1447080128477"}} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412711940,"id_str":"663728282412711940","text":"@wallooy_93 \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 \u0648\u0634 \u062e\u0644 \u0646\u062a\u0627\u0645\u0644 \u0644\u064a\u0634 \u0644\u0627 \ud83d\ude2d\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727772695662592,"in_reply_to_status_id_str":"663727772695662592","in_reply_to_user_id":777496879,"in_reply_to_user_id_str":"777496879","in_reply_to_screen_name":"wallooy_93","user":{"id":2913476275,"id_str":"2913476275","name":"*JEWEL #loveletter*","screen_name":"jewel_nolove","location":"i don't know ","url":null,"description":"ASK ME =D : http:\/\/ask.fm\/jeje2brown \u264f\u2728\nI wish we can dream forever together.\u00a0\nI feel like I can find that true answers of life with you.","protected":false,"verified":false,"followers_count":453,"friends_count":433,"listed_count":4,"favourites_count":13979,"statuses_count":29874,"created_at":"Sat Nov 29 07:37:51 +0000 2014","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663462070105567232\/akdTwgHm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663462070105567232\/akdTwgHm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2913476275\/1447016657","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wallooy_93","name":"\u02d8\u1d54\u02d8 \u0648\u0644\u0648\u064a NO.5","id":777496879,"id_str":"777496879","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408456192,"id_str":"663728282408456192","text":"This Kerry hangover is Real \ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude2d\ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1929272083,"id_str":"1929272083","name":"\u2764\ufe0f Zhane \u2764\ufe0f","screen_name":"ScandalLovee1","location":null,"url":null,"description":"I Love @kerrywashington Are we Gladiators or are we Bitches ? #teamolitz #OnceAGladiatoralwaysaGladiator I Love @rasheeda \u2764\ufe0f #thefosters #Svu","protected":false,"verified":false,"followers_count":639,"friends_count":479,"listed_count":18,"favourites_count":21190,"statuses_count":19478,"created_at":"Thu Oct 03 04:02:19 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654652748785278976\/hYR81nVK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654652748785278976\/hYR81nVK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1929272083\/1446686482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"74316979ec360e9f","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/74316979ec360e9f.json","place_type":"city","name":"St Clair Shores","full_name":"St Clair Shores, MI","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-82.928586,42.450585],[-82.928586,42.541054],[-82.859921,42.541054],[-82.859921,42.450585]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412703744,"id_str":"663728282412703744","text":"ImJohnEstrada: kbdpftcris22: 525kath26niel: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3808201272,"id_str":"3808201272","name":"Daniel Padilla","screen_name":"padilla_dj026","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":3,"listed_count":12,"favourites_count":0,"statuses_count":19930,"created_at":"Tue Oct 06 23:38:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657449725465989120\/SRvsBft4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657449725465989120\/SRvsBft4_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[44,64]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412654592,"id_str":"663728282412654592","text":"RT @I__sod: \u0627\u0644\u062d\u0636\u0631\u064a \u0627\u0630\u0627 \u064a\u0628\u064a \u064a\u0635\u064a\u0631 \u0628\u062f\u0648\u064a https:\/\/t.co\/aa7ndAljMc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338638171,"id_str":"338638171","name":"Saleh","screen_name":"BinWaleed08","location":"\u0627\u0644\u0643\u0648\u064a\u062a - \u0644\u0646\u062f\u0646 ","url":null,"description":"19\/05\/2012:15\/05\/2013. ChelseaFC, I bleed blue. BSK'09, ACK'11, OBU'13. LuckyLibra. UK Graduate.","protected":false,"verified":false,"followers_count":414,"friends_count":340,"listed_count":4,"favourites_count":2574,"statuses_count":55053,"created_at":"Tue Jul 19 21:38:50 +0000 2011","utc_offset":10800,"time_zone":"Kuwait","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000505","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/689188463\/054c712dc50a7ba0c0e4e9479bdb6037.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/689188463\/054c712dc50a7ba0c0e4e9479bdb6037.jpeg","profile_background_tile":true,"profile_link_color":"0D0D05","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"EBEB15","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658052794243350528\/afQ7yE5F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658052794243350528\/afQ7yE5F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338638171\/1421276614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:08:17 +0000 2015","id":663704663607394304,"id_str":"663704663607394304","text":"\u0627\u0644\u062d\u0636\u0631\u064a \u0627\u0630\u0627 \u064a\u0628\u064a \u064a\u0635\u064a\u0631 \u0628\u062f\u0648\u064a https:\/\/t.co\/aa7ndAljMc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":426899192,"id_str":"426899192","name":"\u05e1\u05e2\u05d5\u05d3 \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea","screen_name":"I__sod","location":"man united . \u0627\u0644\u062c\u0647\u0631\u0627 ","url":"http:\/\/ask.fm\/i__sod","description":"such a beautifal world we live in .... tho so many assholes ...... \u062a\u0631\u0627 \u0645\u0648 \u0643\u0627\u0641\u0631 \u0648\u0644\u0627 \u064a\u0647\u0648\u062f\u064a","protected":false,"verified":false,"followers_count":2591,"friends_count":290,"listed_count":2,"favourites_count":89,"statuses_count":33292,"created_at":"Fri Dec 02 21:03:26 +0000 2011","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/561694860\/540520_210143879085357_111288732304206_281925_1851961407_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/561694860\/540520_210143879085357_111288732304206_281925_1851961407_n.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661453239020183552\/dFgduoeT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661453239020183552\/dFgduoeT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/426899192\/1447001075","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663704656112029696,"id_str":"663704656112029696","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","url":"https:\/\/t.co\/aa7ndAljMc","display_url":"pic.twitter.com\/aa7ndAljMc","expanded_url":"http:\/\/twitter.com\/I__sod\/status\/663704663607394304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":96,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":169,"resize":"fit"},"large":{"w":646,"h":183,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663704656112029696,"id_str":"663704656112029696","indices":[25,48],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","url":"https:\/\/t.co\/aa7ndAljMc","display_url":"pic.twitter.com\/aa7ndAljMc","expanded_url":"http:\/\/twitter.com\/I__sod\/status\/663704663607394304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":96,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":169,"resize":"fit"},"large":{"w":646,"h":183,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"I__sod","name":"\u05e1\u05e2\u05d5\u05d3 \u05dc\u05e7\u05d5\u05d7\u05d5\u05ea","id":426899192,"id_str":"426899192","indices":[3,10]}],"symbols":[],"media":[{"id":663704656112029696,"id_str":"663704656112029696","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","url":"https:\/\/t.co\/aa7ndAljMc","display_url":"pic.twitter.com\/aa7ndAljMc","expanded_url":"http:\/\/twitter.com\/I__sod\/status\/663704663607394304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":96,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":169,"resize":"fit"},"large":{"w":646,"h":183,"resize":"fit"}},"source_status_id":663704663607394304,"source_status_id_str":"663704663607394304","source_user_id":426899192,"source_user_id_str":"426899192"}]},"extended_entities":{"media":[{"id":663704656112029696,"id_str":"663704656112029696","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXz3kdUkAA5Raf.jpg","url":"https:\/\/t.co\/aa7ndAljMc","display_url":"pic.twitter.com\/aa7ndAljMc","expanded_url":"http:\/\/twitter.com\/I__sod\/status\/663704663607394304\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":96,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":169,"resize":"fit"},"large":{"w":646,"h":183,"resize":"fit"}},"source_status_id":663704663607394304,"source_status_id_str":"663704663607394304","source_user_id":426899192,"source_user_id_str":"426899192"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282425303040,"id_str":"663728282425303040","text":"\u0627\u0648\u0648\u0648\u0648\u0641","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1737065599,"id_str":"1737065599","name":"Haifa.a","screen_name":"Hxxs3","location":"Riyadh","url":null,"description":"Born on 22th of January , a big fan of al Hilal club \u2661","protected":false,"verified":false,"followers_count":239,"friends_count":335,"listed_count":0,"favourites_count":630,"statuses_count":15224,"created_at":"Fri Sep 06 20:26:05 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/488145204507983873\/HMPQx27Z_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/488145204507983873\/HMPQx27Z_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1737065599\/1421155080","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080128662"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408382464,"id_str":"663728282408382464","text":"RT @MerkyPost: Life Hack: Fuck this...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1664144017,"id_str":"1664144017","name":"sean","screen_name":"seanmcq_","location":"Thousand Oaks, CA","url":null,"description":"+TOHS Senior~~~~~~~~~~~~~~~~~~~~~ +snapchat=sean.mcq~~~~~~~~~~~~~~~+insta=sean.mcq~~~~~~~~~~~~~~~~~~~\n+soundcloud:https:\/\/soundcloud.com\/sean_mcq","protected":false,"verified":false,"followers_count":96,"friends_count":65,"listed_count":1,"favourites_count":4743,"statuses_count":3259,"created_at":"Mon Aug 12 04:15:17 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648048603668180992\/Qo0fC_s8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648048603668180992\/Qo0fC_s8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1664144017\/1444853000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 02 00:56:08 +0000 2015","id":660983697500299264,"id_str":"660983697500299264","text":"Life Hack: Fuck this...","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1546696602,"id_str":"1546696602","name":"Mark Mulkerron","screen_name":"MerkyPost","location":"LA, CA","url":"http:\/\/www.imdb.com\/title\/tt0283139\/","description":"i got mommy issues lol","protected":false,"verified":false,"followers_count":243,"friends_count":880,"listed_count":5,"favourites_count":404,"statuses_count":406,"created_at":"Tue Jun 25 21:39:22 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/478138298892685312\/N08PAzwE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/478138298892685312\/N08PAzwE.jpeg","profile_background_tile":false,"profile_link_color":"1F2629","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478066859296563200\/xJECqjdy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478066859296563200\/xJECqjdy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1546696602\/1424654008","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11,"favorite_count":27,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MerkyPost","name":"Mark Mulkerron","id":1546696602,"id_str":"1546696602","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408460288,"id_str":"663728282408460288","text":"RT @sicflics: https:\/\/t.co\/vAgDlfbYRp Hot brunette handcuffed and double fisted #fisting #fistfuck #doublefisting #lesbian #fetish https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3408346841,"id_str":"3408346841","name":"prinz eifel","screen_name":"eifelprinz70","location":null,"url":null,"description":"da bin ich wieder","protected":false,"verified":false,"followers_count":244,"friends_count":808,"listed_count":7,"favourites_count":8488,"statuses_count":2740,"created_at":"Sat Aug 08 08:32:13 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629935614075531264\/zj3i1Q28_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629935614075531264\/zj3i1Q28_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:47 +0000 2015","id":663724669950889984,"id_str":"663724669950889984","text":"https:\/\/t.co\/vAgDlfbYRp Hot brunette handcuffed and double fisted #fisting #fistfuck #doublefisting #lesbian #fetish https:\/\/t.co\/Ts4Wcvbvwv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3131321693,"id_str":"3131321693","name":"SicFlics - fisting","screen_name":"sicflics","location":null,"url":"http:\/\/www.sicflics.com","description":"http:\/\/Sicflics.com - The internets premier extreme fist fucking and bizarre insertion movie website since 1999 #fisting #fistfuck #dildo #insertion #fetish","protected":false,"verified":false,"followers_count":7741,"friends_count":4798,"listed_count":72,"favourites_count":19,"statuses_count":2683,"created_at":"Thu Apr 02 14:43:37 +0000 2015","utc_offset":0,"time_zone":"Dublin","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619195532414685185\/sTZsxYFg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619195532414685185\/sTZsxYFg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3131321693\/1434921241","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":8,"entities":{"hashtags":[{"text":"fisting","indices":[66,74]},{"text":"fistfuck","indices":[75,84]},{"text":"doublefisting","indices":[85,99]},{"text":"lesbian","indices":[100,108]},{"text":"fetish","indices":[109,116]}],"urls":[{"url":"https:\/\/t.co\/vAgDlfbYRp","expanded_url":"http:\/\/sicflics.com","display_url":"sicflics.com","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663724497401417728,"id_str":"663724497401417728","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","url":"https:\/\/t.co\/Ts4Wcvbvwv","display_url":"pic.twitter.com\/Ts4Wcvbvwv","expanded_url":"http:\/\/twitter.com\/sicflics\/status\/663724669950889984\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663724497401417728,"id_str":"663724497401417728","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","url":"https:\/\/t.co\/Ts4Wcvbvwv","display_url":"pic.twitter.com\/Ts4Wcvbvwv","expanded_url":"http:\/\/twitter.com\/sicflics\/status\/663724669950889984\/video\/1","type":"video","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"video_info":{"aspect_ratio":[4,3],"duration_millis":10962,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/480x360\/UiKj9yUId_Muiea8.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/480x360\/UiKj9yUId_Muiea8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/pl\/TCiSDtgvRdY0HhWs.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/pl\/TCiSDtgvRdY0HhWs.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/240x180\/q5myilnhZ5no6P73.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fisting","indices":[80,88]},{"text":"fistfuck","indices":[89,98]},{"text":"doublefisting","indices":[99,113]},{"text":"lesbian","indices":[114,122]},{"text":"fetish","indices":[123,130]}],"urls":[{"url":"https:\/\/t.co\/vAgDlfbYRp","expanded_url":"http:\/\/sicflics.com","display_url":"sicflics.com","indices":[14,37]}],"user_mentions":[{"screen_name":"sicflics","name":"SicFlics - fisting","id":3131321693,"id_str":"3131321693","indices":[3,12]}],"symbols":[],"media":[{"id":663724497401417728,"id_str":"663724497401417728","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","url":"https:\/\/t.co\/Ts4Wcvbvwv","display_url":"pic.twitter.com\/Ts4Wcvbvwv","expanded_url":"http:\/\/twitter.com\/sicflics\/status\/663724669950889984\/video\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724669950889984,"source_status_id_str":"663724669950889984","source_user_id":3131321693,"source_user_id_str":"3131321693"}]},"extended_entities":{"media":[{"id":663724497401417728,"id_str":"663724497401417728","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663724497401417728\/pu\/img\/fYvPYASEgcRdS4CP.jpg","url":"https:\/\/t.co\/Ts4Wcvbvwv","display_url":"pic.twitter.com\/Ts4Wcvbvwv","expanded_url":"http:\/\/twitter.com\/sicflics\/status\/663724669950889984\/video\/1","type":"video","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663724669950889984,"source_status_id_str":"663724669950889984","source_user_id":3131321693,"source_user_id_str":"3131321693","video_info":{"aspect_ratio":[4,3],"duration_millis":10962,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/480x360\/UiKj9yUId_Muiea8.webm"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/480x360\/UiKj9yUId_Muiea8.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/pl\/TCiSDtgvRdY0HhWs.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/pl\/TCiSDtgvRdY0HhWs.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663724497401417728\/pu\/vid\/240x180\/q5myilnhZ5no6P73.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412675072,"id_str":"663728282412675072","text":"RT @JackJackJohnson: Lady working at customs didn't believe me when she read \"rapper\" as my occupation so she threw on a beat and made me s\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3106034451,"id_str":"3106034451","name":"Alex. #purpose","screen_name":"AlexiaSabina93","location":"snapchat \u27a1ALEXIA","url":null,"description":"When you smile I smile. :))\n\u2661 BELIEBER \u2661\n*ALEJO IGOA TE AMO \u300bJ.B\u300bJ.C\u300bC.D\u300bM.C\u300b k.L\u300bJ.S\u300bR5\u300bJACK & JACK\u300bShawn.M.\u300a i love them!\u270c\n#PURPOSE #nov13 \n#SORRY","protected":false,"verified":false,"followers_count":161,"friends_count":89,"listed_count":8,"favourites_count":2858,"statuses_count":6469,"created_at":"Sun Mar 22 22:58:37 +0000 2015","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660537075305996289\/HZ51abF8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660537075305996289\/HZ51abF8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3106034451\/1446151487","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:25:33 +0000 2015","id":663724109554061312,"id_str":"663724109554061312","text":"Lady working at customs didn't believe me when she read \"rapper\" as my occupation so she threw on a beat and made me spit a hot 16 to get by","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":163730859,"id_str":"163730859","name":"Jack Johnson","screen_name":"JackJackJohnson","location":"402-LA","url":"https:\/\/itun.es\/us\/emuY8","description":"1\/2 of @JackAndJackReal Don't really got my shit together just appear this way. The #CalibraskaEP is out everywhere!","protected":false,"verified":true,"followers_count":2588965,"friends_count":19062,"listed_count":9491,"favourites_count":8857,"statuses_count":13966,"created_at":"Wed Jul 07 03:56:34 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660806293444235264\/2EXa3_ZR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/163730859\/1446414951","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2090,"favorite_count":4463,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JackJackJohnson","name":"Jack Johnson","id":163730859,"id_str":"163730859","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282442055681,"id_str":"663728282442055681","text":"@RahulKanwas Gracias por seguirme, en breve te devuelvo follow ?? #TuitUtil https:\/\/t.co\/z3kB5D9Ru0","source":"\u003ca href=\"http:\/\/www.tuitutil.net\" rel=\"nofollow\"\u003eTuit \u00datil\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":4176904452,"in_reply_to_user_id_str":"4176904452","in_reply_to_screen_name":"RahulKanwas","user":{"id":2350380086,"id_str":"2350380086","name":"PURPOSE\u26a1#Nov13\u26a1","screen_name":"_P4ndx","location":"chile qlo","url":null,"description":"EL NEGRO ME SIGUE!!!! gracias a @ProyectoAyudaJB KAHSKSJSJSJSJJS. NEVER SAY NEVER AND BELIEVE!!","protected":false,"verified":false,"followers_count":3336,"friends_count":3449,"listed_count":7,"favourites_count":27181,"statuses_count":12121,"created_at":"Tue Feb 18 16:47:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"24100A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/435865266400948224\/SbydfGQh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/435865266400948224\/SbydfGQh.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621032281612906496\/7uLHIONP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621032281612906496\/7uLHIONP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2350380086\/1446225994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TuitUtil","indices":[66,75]}],"urls":[{"url":"https:\/\/t.co\/z3kB5D9Ru0","expanded_url":"http:\/\/www.tuitutil.net","display_url":"tuitutil.net","indices":[76,99]}],"user_mentions":[{"screen_name":"RahulKanwas","name":"rahul.kanwas@gmail.c","id":4176904452,"id_str":"4176904452","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412687360,"id_str":"663728282412687360","text":"RT @lilduval: What y'all fake caring about today?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457471194,"id_str":"457471194","name":"Hlayi","screen_name":"Cutipz","location":"Polokwane & Lephalale","url":null,"description":"Kanye West \u270a Instagram: Cutipz Snapchat: Cutipz_h","protected":false,"verified":false,"followers_count":859,"friends_count":363,"listed_count":5,"favourites_count":21,"statuses_count":86948,"created_at":"Sat Jan 07 13:03:45 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661921810393513984\/sn4B2vpd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661921810393513984\/sn4B2vpd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457471194\/1446636859","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:12:33 +0000 2015","id":663720835664883712,"id_str":"663720835664883712","text":"What y'all fake caring about today?","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16638685,"id_str":"16638685","name":"lil duval","screen_name":"lilduval","location":"UP THRU DERE!","url":"http:\/\/richbroke.net","description":"Go see the movie SCHOOL DANCE and I gotta a couple shows on MTV 2\n\nFor booking email richbrokeent@gmail.com","protected":false,"verified":true,"followers_count":848299,"friends_count":342,"listed_count":6657,"favourites_count":267,"statuses_count":97851,"created_at":"Tue Oct 07 22:54:59 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/21710885\/1976-_16_.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/21710885\/1976-_16_.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659824915391074304\/8D9IlfCk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659824915391074304\/8D9IlfCk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16638685\/1368810869","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":215,"favorite_count":59,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lilduval","name":"lil duval","id":16638685,"id_str":"16638685","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282429464578,"id_str":"663728282429464578","text":"RT @Qurmawiyeh99: \u0645\u0647\u0645\u0627 \u0643\u0627\u0646\u062a \u0643\u062b\u0631\u0629 \u0623\u0639\u0645\u0627\u0644\u0643 \u0648\u0636\u063a\u0648\u0637\u0647\u0627\u060c \u064a\u0644\u0632\u0645\u0643 \u0623\u0646 \u062a\u0642\u0648\u0645 \u0628\u0646\u0634\u0627\u0637 \u062a\u0631\u0641\u064a\u0647\u064a \u0645\u0639 \u0639\u0627\u0626\u0644\u062a\u0643 \u0648\u0623\u0635\u062f\u0642\u0627\u0626\u0643 \u0628\u0639\u062f \u0627\u0633\u0628\u0648\u0639 \u0639\u0645\u0644 \u0645\u0631\u0647\u0642\n \ufef7\u0646\u0643 \u0628\u0630\u0644\u0643 \u062a\u0637\u0631\u062f \u0627\u0644\u0642\u0644\u0642 \u0648\u0627\u0644\u0636\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142822603,"id_str":"4142822603","name":"\u0633\u0648\u0631\u064a\u0627\u0646\u0627","screen_name":"x_to11","location":null,"url":null,"description":"\u200f\u200f\u0636\u0641\u062a\u0646\u064a \u061f \u0644\u0627\u0647\u0646\u062a \u0631\u064a\u062a\u0648\u064a\u062a \u0644\u0644\u0645\u0641\u0636\u0644\u0629","protected":false,"verified":false,"followers_count":36,"friends_count":18,"listed_count":0,"favourites_count":10,"statuses_count":180,"created_at":"Sun Nov 08 16:15:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663390019755839488\/TibqiiNE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663390019755839488\/TibqiiNE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142822603\/1446999853","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 09:20:42 +0000 2015","id":662560227951321088,"id_str":"662560227951321088","text":"\u0645\u0647\u0645\u0627 \u0643\u0627\u0646\u062a \u0643\u062b\u0631\u0629 \u0623\u0639\u0645\u0627\u0644\u0643 \u0648\u0636\u063a\u0648\u0637\u0647\u0627\u060c \u064a\u0644\u0632\u0645\u0643 \u0623\u0646 \u062a\u0642\u0648\u0645 \u0628\u0646\u0634\u0627\u0637 \u062a\u0631\u0641\u064a\u0647\u064a \u0645\u0639 \u0639\u0627\u0626\u0644\u062a\u0643 \u0648\u0623\u0635\u062f\u0642\u0627\u0626\u0643 \u0628\u0639\u062f \u0627\u0633\u0628\u0648\u0639 \u0639\u0645\u0644 \u0645\u0631\u0647\u0642\n \ufef7\u0646\u0643 \u0628\u0630\u0644\u0643 \u062a\u0637\u0631\u062f \u0627\u0644\u0642\u0644\u0642 \u0648\u0627\u0644\u0636\u062c\u0631 \u0648\u062a\u062c\u062f\u062f \u0645\u0639\u0646\u0648\u064a\u0627\u062a\u0643\ud83d\udc4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1432165519,"id_str":"1432165519","name":"\u0639\u0628\u064a\u0640\u0640\u0640\u0631 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","screen_name":"Qurmawiyeh99","location":"\u0645\u0633\u0642\u0637, \u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646","url":"http:\/\/forum.hawaaworld.com\/index.php","description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0637\u0628\u064a\u0628\u0647_ \u0639\u0636\u0648\u0647 \u0641\u064a \u0645\u0646\u062a\u062f\u064a\u0627\u062a \u0639\u0627\u0644\u0645 \u062d\u0648\u0627\u0621\n\u0648\u0645\u0646\u062a\u062f\u0649 \u0627\u0644\u0645\u0631\u0623\u0647 \u0627\u0644\u0645\u0633\u0644\u0645\u0647\/ \u0645 _((\u0645\u062c\u0645\u0648\u0639\u0629 \u0627\u0644\u0625\u062d\u0633\u0627\u0646))\n\n\u062a\u063a\u0631\u064a\u062f\u0627\u062a\u064a \u0645\u0646\u0648\u0639\u0647 \u0628\u064a\u0646 \u0627\u0644\u0646\u0635\u0627\u0626\u062d \u0627\u0644\u0637\u0628\u064a\u0647 \u0648\u063a\u064a\u0631\u0647\u0627~ \u0623\u0633\u0627\u0644 \u0627\u0644\u0644\u0647 \u0644\u064a \u0648\u0644\u0643\u0645 \u0627\u0644\u062a\u0648\u0641\u064a\u0642","protected":false,"verified":false,"followers_count":14361,"friends_count":263,"listed_count":25,"favourites_count":17131,"statuses_count":9960,"created_at":"Thu May 16 04:35:10 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657261852255232001\/NaaC8lWP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657261852255232001\/NaaC8lWP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1432165519\/1444465442","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":285,"favorite_count":51,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Qurmawiyeh99","name":"\u0639\u0628\u064a\u0640\u0640\u0640\u0631 \u0627\u0644\u0645\u0627\u0644\u0643\u064a","id":1432165519,"id_str":"1432165519","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080128663"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282437885952,"id_str":"663728282437885952","text":"@rosequeen__ eu adoraria, miga! Kkk mas infelizmente, n\u00e3o \u00e9 permitido! Hahaha","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663721143187173376,"in_reply_to_status_id_str":"663721143187173376","in_reply_to_user_id":3218771899,"in_reply_to_user_id_str":"3218771899","in_reply_to_screen_name":"rosequeen__","user":{"id":185373798,"id_str":"185373798","name":"n i g g a","screen_name":"whoisnigga_","location":"Deutschland","url":null,"description":"No love lost, no love found.","protected":false,"verified":false,"followers_count":189,"friends_count":66,"listed_count":0,"favourites_count":1713,"statuses_count":41575,"created_at":"Tue Aug 31 20:56:23 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660486505778008064\/15D3Viv4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660486505778008064\/15D3Viv4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/185373798\/1443632199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rosequeen__","name":"Iai\u00e1","id":3218771899,"id_str":"3218771899","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080128665"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282416758784,"id_str":"663728282416758784","text":"\u304a\u524d\u306e\u3053\u3068\u304c\u597d\u304d\u3060\u3063\u305f\u3093\u3060\u3088(\u2267\u0414\u2266)","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003eTheWorld iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":864371400,"id_str":"864371400","name":"TDZRZ","screen_name":"Rlixe","location":null,"url":null,"description":"\u5143ID\u2192@QRetaso","protected":false,"verified":false,"followers_count":1919,"friends_count":200,"listed_count":136,"favourites_count":429733,"statuses_count":129891,"created_at":"Sat Oct 06 08:56:06 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602178472144830464\/lijiQdm-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602178472144830464\/lijiQdm-.jpg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661790520671272960\/vxSsf56y_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661790520671272960\/vxSsf56y_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/864371400\/1441086895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128660"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282437869568,"id_str":"663728282437869568","text":"RT @hyunapics__: http:\/\/t.co\/QtUquN2We5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2335284967,"id_str":"2335284967","name":"shamankaah","screen_name":"bubblechinee","location":"Poland","url":"http:\/\/lubimyczytac.pl\/profil\/220168\/shamankaah","description":"\u2661140914&150306&150729&1501004\u2661 kpop *a trash for Infinite and f(x)* | kdrama | books | anime | if found return to Kim Sungkyu","protected":false,"verified":false,"followers_count":343,"friends_count":293,"listed_count":0,"favourites_count":1330,"statuses_count":15201,"created_at":"Sun Feb 09 15:31:52 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"C7C7C7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623561180032798720\/aP95M5qb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623561180032798720\/aP95M5qb.png","profile_background_tile":true,"profile_link_color":"FFCC33","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660181362540965888\/-1UpWL9P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660181362540965888\/-1UpWL9P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2335284967\/1446234563","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Sep 25 16:06:39 +0000 2015","id":647442098141184000,"id_str":"647442098141184000","text":"http:\/\/t.co\/QtUquN2We5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3323637712,"id_str":"3323637712","name":"hyuna pics \u2661","screen_name":"hyunapics__","location":null,"url":null,"description":"oh she's the queen. run by @pcydick and @junhoemies","protected":false,"verified":false,"followers_count":3084,"friends_count":41,"listed_count":26,"favourites_count":981,"statuses_count":907,"created_at":"Sat Jun 13 20:11:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663049313698881536\/8hnIjaIx_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663049313698881536\/8hnIjaIx_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3323637712\/1446918294","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":84,"favorite_count":40,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":647441983431049216,"id_str":"647441983431049216","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","url":"http:\/\/t.co\/QtUquN2We5","display_url":"pic.twitter.com\/QtUquN2We5","expanded_url":"http:\/\/twitter.com\/hyunapics__\/status\/647442098141184000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":366,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":647441983431049216,"id_str":"647441983431049216","indices":[0,22],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","url":"http:\/\/t.co\/QtUquN2We5","display_url":"pic.twitter.com\/QtUquN2We5","expanded_url":"http:\/\/twitter.com\/hyunapics__\/status\/647442098141184000\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":366,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"}},"video_info":{"aspect_ratio":[250,183],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CPwtDbsVAAAiRUI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hyunapics__","name":"hyuna pics \u2661","id":3323637712,"id_str":"3323637712","indices":[3,15]}],"symbols":[],"media":[{"id":647441983431049216,"id_str":"647441983431049216","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","url":"http:\/\/t.co\/QtUquN2We5","display_url":"pic.twitter.com\/QtUquN2We5","expanded_url":"http:\/\/twitter.com\/hyunapics__\/status\/647442098141184000\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":366,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"}},"source_status_id":647442098141184000,"source_status_id_str":"647442098141184000","source_user_id":3323637712,"source_user_id_str":"3323637712"}]},"extended_entities":{"media":[{"id":647441983431049216,"id_str":"647441983431049216","indices":[17,39],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CPwtDbsVAAAiRUI.png","url":"http:\/\/t.co\/QtUquN2We5","display_url":"pic.twitter.com\/QtUquN2We5","expanded_url":"http:\/\/twitter.com\/hyunapics__\/status\/647442098141184000\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":500,"h":366,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":366,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"}},"source_status_id":647442098141184000,"source_status_id_str":"647442098141184000","source_user_id":3323637712,"source_user_id_str":"3323637712","video_info":{"aspect_ratio":[250,183],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CPwtDbsVAAAiRUI.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080128665"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282442014720,"id_str":"663728282442014720","text":"RT @BrioEnfurecida: Hoy por no hablar del Madrid van a hablar hasta del Cadiz.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":439614182,"id_str":"439614182","name":"\u00c1lvaro","screen_name":"AlvaroNinja12","location":"San Jeronimo, Sevilla","url":"http:\/\/www.gaming.tv\/AttoryNinja","description":"21 a\u00f1os. SVQ. PotterHead. http:\/\/gaming.tv\/AttoryNinja a stream se ha dicho! :D Deportista. 12. @BeaPortavella es mia :3","protected":false,"verified":false,"followers_count":633,"friends_count":742,"listed_count":48,"favourites_count":53832,"statuses_count":52475,"created_at":"Sun Dec 18 00:37:37 +0000 2011","utc_offset":3600,"time_zone":"Madrid","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"BADFCD","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623245196290072577\/YQeRDNgd.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623245196290072577\/YQeRDNgd.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648963602238599168\/v4Wllc8c_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648963602238599168\/v4Wllc8c_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/439614182\/1432898514","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:19:53 +0000 2015","id":663722683054583808,"id_str":"663722683054583808","text":"Hoy por no hablar del Madrid van a hablar hasta del Cadiz.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":958744320,"id_str":"958744320","name":"BRIOCHE","screen_name":"BrioEnfurecida","location":null,"url":"http:\/\/es.favstar.fm\/users\/brioenfurecida","description":"CONTACTO: brioenfurecida@gmail.com\n\nFacebook: http:\/\/facebook.com\/brioenfurecida","protected":false,"verified":false,"followers_count":38883,"friends_count":605,"listed_count":74,"favourites_count":17561,"statuses_count":34193,"created_at":"Mon Nov 19 22:30:15 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/820633680\/634b7b7bc8b2f2c3bd9e7eb56dd113ca.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/820633680\/634b7b7bc8b2f2c3bd9e7eb56dd113ca.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658785852768788480\/vVULnUgZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658785852768788480\/vVULnUgZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/958744320\/1363909726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":22,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BrioEnfurecida","name":"BRIOCHE","id":958744320,"id_str":"958744320","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282433531904,"id_str":"663728282433531904","text":"RT @ssingss: \u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e21\u0e35\u0e41\u0e15\u0e48\u0e04\u0e19\u0e1a\u0e2d\u0e01\u0e41\u0e01\u0e49\u0e21\u0e22\u0e49\u0e27\u0e22 \u0e21\u0e31\u0e19\u0e22\u0e49\u0e27\u0e22\u0e2b\u0e23\u0e2d-\"-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2426552125,"id_str":"2426552125","name":"Tee Worrapong","screen_name":"Worrapongt","location":null,"url":null,"description":"\u2764\u2764","protected":false,"verified":false,"followers_count":19,"friends_count":151,"listed_count":0,"favourites_count":1689,"statuses_count":3224,"created_at":"Fri Apr 04 02:55:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"111111","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/453743330262663168\/fOVcqDqm_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/453743330262663168\/fOVcqDqm_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2426552125\/1397015844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:46:21 +0000 2015","id":663714242688716801,"id_str":"663714242688716801","text":"\u0e27\u0e31\u0e19\u0e19\u0e35\u0e49\u0e21\u0e35\u0e41\u0e15\u0e48\u0e04\u0e19\u0e1a\u0e2d\u0e01\u0e41\u0e01\u0e49\u0e21\u0e22\u0e49\u0e27\u0e22 \u0e21\u0e31\u0e19\u0e22\u0e49\u0e27\u0e22\u0e2b\u0e23\u0e2d-\"-","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2324101986,"id_str":"2324101986","name":"Ssing Cheewagaroon","screen_name":"ssingss","location":null,"url":null,"description":"Contact For Work: 0853555236 (\u0e1e\u0e35\u0e48\u0e1b\u0e32\u0e15\u0e35\u0e49)","protected":false,"verified":false,"followers_count":85178,"friends_count":120,"listed_count":77,"favourites_count":1222,"statuses_count":9267,"created_at":"Sun Feb 02 17:43:07 +0000 2014","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637307059445207040\/frdN_R5y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637307059445207040\/frdN_R5y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2324101986\/1438699361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":329,"favorite_count":307,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ssingss","name":"Ssing Cheewagaroon","id":2324101986,"id_str":"2324101986","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080128664"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282425167873,"id_str":"663728282425167873","text":"\u3010\u6d0b\u5ba4\u3011\u5927\u6383\u9664\u7d42\u4e86\u5f8c\u3001\u30d9\u30c3\u30c9\u306e\u4e0a\u304c\u8981\u585e\u3068\u5316\u3059\u3002\n\u307e\u308b\u3067\u3068\u306a\u308a\u306e\u30c8\u30c8\u30ed\u306e\u5f15\u3063\u8d8a\u3057\u30b7\u30fc\u30f3\u306e\u30c8\u30e9\u30c3\u30af\u3067\u3042\u308b\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180005500,"id_str":"2180005500","name":"\u9326\u83ef\u5bee\u3042\u308b\u3042\u308bBot","screen_name":"kinka_dormitory","location":"\u95a2\u897f\u5730\u65b9","url":null,"description":"\u95a2\u897f\u306e\u3068\u3042\u308b\u5973\u5b50\u5927\u306b\u3042\u308b\u5bee\u306e\r\n\u300c\u3042\u308b\u3042\u308b\u300d\u3092\u96c6\u3081\u3066\u307f\u307e\u3057\u305f\u3002\r\n\u60aa\u53e3\u3067\u306f\u306a\u304f\u3001\u30af\u30b9\u30c3\u3068\u304f\u308b\u30cd\u30bf\u3092\u5171\u6709\u3057\u3066\u3001\r\n\u69d8\u3005\u306a\u3053\u3068\u304c\u3042\u308b\u5bee\u751f\u6d3b\u3092\u697d\u3057\u3080\r\n\u30a8\u30c3\u30bb\u30f3\u30b9\u306b\u306a\u308c\u3070\u5e78\u3044\u3067\u3059\u3002\r\n\r\n\u30cd\u30bf\u304c\u3042\u308b\u3088\uff01\u3068\u3044\u3046\u305d\u3053\u306e\u3042\u306a\u305f\uff01\uff01\r\nDM\u3092\u9001\u3063\u3066\u304f\u3060\u3055\u3044\u266a","protected":false,"verified":false,"followers_count":36,"friends_count":56,"listed_count":0,"favourites_count":0,"statuses_count":11807,"created_at":"Thu Nov 07 12:29:47 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"A84AFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000706788063\/5ab677b0dced1770d8a464e9035488a6_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000706788063\/5ab677b0dced1770d8a464e9035488a6_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128662"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282416738304,"id_str":"663728282416738304","text":"\u0642\u0627\u0644 \u0627\u0644\u0646\u0628\u0649 \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u0644\u0644\u0635\u0627\u0626\u0645 \u0641\u0631\u062d\u062a\u0627\u0646 \u064a\u0641\u0631\u062d\u0647\u0645\u0627 \u0625\u0630\u0627 \u0623\u0641\u0637\u0631 \u0641\u0631\u062d \u0648\u0625\u0630\u0627 \u0644\u0642\u064a \u0631\u0628\u0647 \u0641\u0631\u062d \u0628\u0635\u0648\u0645\u0647 - \u0635\u062d\u064a\u062d \u0627\u0644\u0628\u062e\u0627\u0631\u064a \ufdfa #\ufdfa","source":"\u003ca href=\"http:\/\/twitquran.com\/About.aspx\" rel=\"nofollow\"\u003e \u062a\u0648\u064a\u062a \u0642\u0631\u0622\u0646\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1849568466,"id_str":"1849568466","name":"\u00a5\u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0644\u0648\u0627\u0644\u062f\u062a\u064a\u00a5","screen_name":"ame4911","location":null,"url":null,"description":"\u200f\u200f\u0648\u0642\u0641 \u062e\u064a\u0631\u064a \u064a\u0647\u062f\u0641 \u0627\u0644\u0649 \u0641\u0639\u0644 \u0627\u0644\u062e\u064a\u0631 \u0648\u064a\u0646\u0634\u0631 \u0645\u064a\u0646\u062a\u0641\u0639 \u0628\u0647\u0627 \u0644\u0644\u0627\u0645\u0629 \u0645\u062d\u0645\u062f \u0635\u0644\u0649 \u0627\u0644\u0644\u0647 \u0639\u0644\u064a\u0647 \u0648\u0633\u0644\u0645 \u0627\u0644\u0644\u0647\u0645 \u0627\u062c\u0639\u0644 \u062b\u0648\u0627\u0628\u0647 \u0644\u0648\u0627\u0644\u062f\u062a\u064a \u0648\u0636\u062d\u0627\u0621 \u0628\u0646\u062a \u0642\u0639\u0648\u062f","protected":false,"verified":false,"followers_count":10,"friends_count":34,"listed_count":0,"favourites_count":0,"statuses_count":2949,"created_at":"Mon Sep 09 22:23:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000436059882\/b184fc9cbedb253da03a6fd56947cb73_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000436059882\/b184fc9cbedb253da03a6fd56947cb73_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1849568466\/1378768203","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\ufdfa","indices":[104,106]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080128660"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408349699,"id_str":"663728282408349699","text":"RT @DazzlingTraffic: 15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2475371126,"id_str":"2475371126","name":"Amolaka Alvy","screen_name":"secigejiguta","location":"Newcastle","url":"http:\/\/jabberduck.com\/collections\/holiday-decorations\/products\/plaid-homemade-christmas-stocking","description":"Plaid homemade Christmas stocking","protected":false,"verified":false,"followers_count":189,"friends_count":1441,"listed_count":16,"favourites_count":16085,"statuses_count":20461,"created_at":"Sat May 03 11:50:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473782223989002241\/LLfpJ0iy_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473782223989002241\/LLfpJ0iy_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2475371126\/1401793449","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825556537346,"id_str":"663727825556537346","text":"15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356229022,"id_str":"356229022","name":"Dazzling Traffic","screen_name":"DazzlingTraffic","location":"Anchorage","url":"http:\/\/linkis.com\/mycheapjobs.com\/Soci\/Rncwi","description":"I will Give you 100,000 Real\/Human\/Unique Visitors for Google adsense. for $40","protected":false,"verified":false,"followers_count":27243,"friends_count":883,"listed_count":11,"favourites_count":0,"statuses_count":1623,"created_at":"Tue Aug 16 14:53:14 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":6,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"DazzlingTraffic","name":"Dazzling Traffic","id":356229022,"id_str":"356229022","indices":[3,19]}],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282442080256,"id_str":"663728282442080256","text":"RT @Ieansquad: BET voice overs be like \ud83d\ude02\ud83d\udc80 http:\/\/t.co\/j8YHhBPPIc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3088609310,"id_str":"3088609310","name":"\u00ae","screen_name":"IamRoyGarza_","location":"Houston, TX","url":null,"description":"#freeLC","protected":false,"verified":false,"followers_count":426,"friends_count":263,"listed_count":2,"favourites_count":10087,"statuses_count":10994,"created_at":"Mon Mar 16 08:53:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654137947692756992\/eETkAGpF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654137947692756992\/eETkAGpF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3088609310\/1447042565","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Aug 28 02:21:31 +0000 2015","id":637087585702055936,"id_str":"637087585702055936","text":"BET voice overs be like \ud83d\ude02\ud83d\udc80 http:\/\/t.co\/j8YHhBPPIc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2496762631,"id_str":"2496762631","name":"Leansquad","screen_name":"Ieansquad","location":"DM for Promo","url":null,"description":"Unofficial Fan Account. Follow the squad: @leanandcuisine, @youfunnyb, @retro_spectro_ \nTurn on Notifications to be notified when new videos drop.","protected":false,"verified":false,"followers_count":156631,"friends_count":12,"listed_count":44,"favourites_count":12,"statuses_count":155,"created_at":"Thu May 15 17:02:05 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642128757071872000\/RsL0FSUp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2496762631\/1431299803","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":11093,"favorite_count":9711,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":629378662496870401,"id_str":"629378662496870401","indices":[27,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","url":"http:\/\/t.co\/j8YHhBPPIc","display_url":"pic.twitter.com\/j8YHhBPPIc","expanded_url":"http:\/\/twitter.com\/youfunnyb\/status\/629378808869732362\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":629378808869732362,"source_status_id_str":"629378808869732362","source_user_id":2207734063,"source_user_id_str":"2207734063"}]},"extended_entities":{"media":[{"id":629378662496870401,"id_str":"629378662496870401","indices":[27,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","url":"http:\/\/t.co\/j8YHhBPPIc","display_url":"pic.twitter.com\/j8YHhBPPIc","expanded_url":"http:\/\/twitter.com\/youfunnyb\/status\/629378808869732362\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":629378808869732362,"source_status_id_str":"629378808869732362","source_user_id":2207734063,"source_user_id_str":"2207734063","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/320x180\/ec4PJxqU3RllUjZq.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/640x360\/BoICRyaETphH7p-4.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/pl\/PC5-J6PDGayOnbrl.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/pl\/PC5-J6PDGayOnbrl.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/640x360\/BoICRyaETphH7p-4.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/1280x720\/PKyg6hRCWfQYHLLU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ieansquad","name":"Leansquad","id":2496762631,"id_str":"2496762631","indices":[3,13]}],"symbols":[],"media":[{"id":629378662496870401,"id_str":"629378662496870401","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","url":"http:\/\/t.co\/j8YHhBPPIc","display_url":"pic.twitter.com\/j8YHhBPPIc","expanded_url":"http:\/\/twitter.com\/youfunnyb\/status\/629378808869732362\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":629378808869732362,"source_status_id_str":"629378808869732362","source_user_id":2207734063,"source_user_id_str":"2207734063"}]},"extended_entities":{"media":[{"id":629378662496870401,"id_str":"629378662496870401","indices":[42,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/629378662496870401\/pu\/img\/QceXNv3zChfwDve8.jpg","url":"http:\/\/t.co\/j8YHhBPPIc","display_url":"pic.twitter.com\/j8YHhBPPIc","expanded_url":"http:\/\/twitter.com\/youfunnyb\/status\/629378808869732362\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":629378808869732362,"source_status_id_str":"629378808869732362","source_user_id":2207734063,"source_user_id_str":"2207734063","video_info":{"aspect_ratio":[16,9],"duration_millis":30000,"variants":[{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/320x180\/ec4PJxqU3RllUjZq.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/640x360\/BoICRyaETphH7p-4.webm"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/pl\/PC5-J6PDGayOnbrl.mpd"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/pl\/PC5-J6PDGayOnbrl.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/640x360\/BoICRyaETphH7p-4.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/629378662496870401\/pu\/vid\/1280x720\/PKyg6hRCWfQYHLLU.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282404130816,"id_str":"663728282404130816","text":"RT @indrhy_karisma: #kangyeondoo lazy to study \ud83d\ude01\ud83d\ude02 #CheerUp #SassyGoGo https:\/\/t.co\/WkWzJqEdca","source":"\u003ca href=\"https:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android Tablets\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":67220931,"id_str":"67220931","name":"Ratria Aya \u2665","screen_name":"geum_yaeya","location":"\uc778\ub3c4\ub124\uc2dc\uc544 ","url":null,"description":"Just a girl who love K-Pop and K-Drama so much \u2665 I DON'T HAVE A FANDOM! IF YOU DONT LIKE MY TWEET JUST PRESS UNFOLLOW BUTTON \u2665|spammers| 300892","protected":false,"verified":false,"followers_count":411,"friends_count":284,"listed_count":4,"favourites_count":208,"statuses_count":30879,"created_at":"Thu Aug 20 03:55:36 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594386103269871616\/ZARuFfR7.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594386103269871616\/ZARuFfR7.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651678640539725824\/3tg8w76t_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651678640539725824\/3tg8w76t_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/67220931\/1441784277","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:46 +0000 2015","id":663725673849094144,"id_str":"663725673849094144","text":"#kangyeondoo lazy to study \ud83d\ude01\ud83d\ude02 #CheerUp #SassyGoGo https:\/\/t.co\/WkWzJqEdca","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":368191677,"id_str":"368191677","name":"Simple \u262e","screen_name":"indrhy_karisma","location":"Indonesia - Korea","url":"http:\/\/instagram.com\/b_niacsbmks\/","description":"No matter what's happen ! It's fine i just need to doing something have fun~ so that after you follow me please check this my timeline ~ follback? tell me","protected":false,"verified":false,"followers_count":1307,"friends_count":669,"listed_count":6,"favourites_count":852,"statuses_count":64781,"created_at":"Mon Sep 05 07:11:29 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6D0273","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000115743225\/c3f6a60335bd752945f860cd298aefe0.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000115743225\/c3f6a60335bd752945f860cd298aefe0.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"78C0A8","profile_text_color":"CE7834","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627795058197053440\/YUSn7imn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627795058197053440\/YUSn7imn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/368191677\/1442208599","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"kangyeondoo","indices":[0,12]},{"text":"CheerUp","indices":[30,38]},{"text":"SassyGoGo","indices":[39,49]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725592894795776,"id_str":"663725592894795776","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725592894795776,"id_str":"663725592894795776","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}}},{"id":663725636066799616,"id_str":"663725636066799616","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8w4U8AAh2bs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8w4U8AAh2bs.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}}},{"id":663725665040990208,"id_str":"663725665040990208","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG-c0UAAAwSuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG-c0UAAAwSuX.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kangyeondoo","indices":[20,32]},{"text":"CheerUp","indices":[50,58]},{"text":"SassyGoGo","indices":[59,69]}],"urls":[],"user_mentions":[{"screen_name":"indrhy_karisma","name":"Simple \u262e","id":368191677,"id_str":"368191677","indices":[3,18]}],"symbols":[],"media":[{"id":663725592894795776,"id_str":"663725592894795776","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}},"source_status_id":663725673849094144,"source_status_id_str":"663725673849094144","source_user_id":368191677,"source_user_id_str":"368191677"}]},"extended_entities":{"media":[{"id":663725592894795776,"id_str":"663725592894795776","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6QDUcAAV__p.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}},"source_status_id":663725673849094144,"source_status_id_str":"663725673849094144","source_user_id":368191677,"source_user_id_str":"368191677"},{"id":663725636066799616,"id_str":"663725636066799616","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG8w4U8AAh2bs.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG8w4U8AAh2bs.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}},"source_status_id":663725673849094144,"source_status_id_str":"663725673849094144","source_user_id":368191677,"source_user_id_str":"368191677"},{"id":663725665040990208,"id_str":"663725665040990208","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG-c0UAAAwSuX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG-c0UAAAwSuX.jpg","url":"https:\/\/t.co\/WkWzJqEdca","display_url":"pic.twitter.com\/WkWzJqEdca","expanded_url":"http:\/\/twitter.com\/indrhy_karisma\/status\/663725673849094144\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":319,"resize":"fit"},"small":{"w":340,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":383,"resize":"fit"}},"source_status_id":663725673849094144,"source_status_id_str":"663725673849094144","source_user_id":368191677,"source_user_id_str":"368191677"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128657"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282429431808,"id_str":"663728282429431808","text":"@lastwordLindsay @alour https:\/\/t.co\/9Y9izwAtfa","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728136861929472,"in_reply_to_status_id_str":"663728136861929472","in_reply_to_user_id":370699097,"in_reply_to_user_id_str":"370699097","in_reply_to_screen_name":"lastwordLindsay","user":{"id":147354110,"id_str":"147354110","name":"Scott Matla","screen_name":"scottmatla","location":"Rochester, NY","url":null,"description":"Follow me for yelling about sports, stay because I've got a really cute puppy. AHL Correspondent for @HabsEOTP","protected":false,"verified":false,"followers_count":837,"friends_count":504,"listed_count":43,"favourites_count":175,"statuses_count":28934,"created_at":"Sun May 23 22:53:06 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658627817249206273\/c2zhENvY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658627817249206273\/c2zhENvY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147354110\/1423634021","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9Y9izwAtfa","expanded_url":"https:\/\/www.youtube.com\/watch?v=LbnV5wAL838","display_url":"youtube.com\/watch?v=LbnV5w\u2026","indices":[24,47]}],"user_mentions":[{"screen_name":"lastwordLindsay","name":"Lindsay ","id":370699097,"id_str":"370699097","indices":[0,16]},{"screen_name":"alour","name":"Ashley","id":25238268,"id_str":"25238268","indices":[17,23]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080128663"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282420903936,"id_str":"663728282420903936","text":"RT @ngzmomo: \u0e43\u0e19\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e25\u0e47\u0e01\u0e46\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1c\u0e39\u0e49\u0e04\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\n\n \u2601 \u26c5 \u2601 \u2601 \u2601\n \ud83d\ude81 \ud83c\udf88\n\n\ud83c\udfeb\ud83c\udfe2\ud83c\udfe3\ud83c\udfe5\ud83c\udfe6\ud83c\udfe9\ud83c\udfea\ud83c\udfe8\u26ea\ud83c\udfe4\ud83c\udfe0\n\n\u0e08\u0e30\u0e21\u0e35\u0e1a\u0e49\u0e32\u0e07\u0e44\u0e2b\u0e21\u0e2a\u0e31\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e21\u0e2d\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":795901098,"id_str":"795901098","name":"\u0e40\u0e2b\u0e49\u0e2d\u0e2d\u0e2d","screen_name":"zueezs","location":null,"url":null,"description":"iG: zz.ssz","protected":false,"verified":false,"followers_count":43,"friends_count":88,"listed_count":0,"favourites_count":248,"statuses_count":3377,"created_at":"Sat Sep 01 11:41:55 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/580399637242118144\/nTDRZBMx.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/580399637242118144\/nTDRZBMx.jpg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637692187854008320\/6BDGXuoN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637692187854008320\/6BDGXuoN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/795901098\/1440683596","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Sep 03 01:02:30 +0000 2014","id":506970455475879936,"id_str":"506970455475879936","text":"\u0e43\u0e19\u0e40\u0e21\u0e37\u0e2d\u0e07\u0e40\u0e25\u0e47\u0e01\u0e46\u0e17\u0e35\u0e48\u0e21\u0e35\u0e1c\u0e39\u0e49\u0e04\u0e19\u0e2d\u0e22\u0e39\u0e48\u0e21\u0e32\u0e01\u0e21\u0e32\u0e22\n\n \u2601 \u26c5 \u2601 \u2601 \u2601\n \ud83d\ude81 \ud83c\udf88\n\n\ud83c\udfeb\ud83c\udfe2\ud83c\udfe3\ud83c\udfe5\ud83c\udfe6\ud83c\udfe9\ud83c\udfea\ud83c\udfe8\u26ea\ud83c\udfe4\ud83c\udfe0\n\n\u0e08\u0e30\u0e21\u0e35\u0e1a\u0e49\u0e32\u0e07\u0e44\u0e2b\u0e21\u0e2a\u0e31\u0e01\u0e04\u0e19\u0e17\u0e35\u0e48\u0e21\u0e2d\u0e07\u0e21\u0e32\u0e2b\u0e32\u0e09\u0e31\u0e19\ud83d\ude4e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":98599559,"id_str":"98599559","name":"\u1d33\u1d35\u1d3a\u1d33\u1d31\u1d3f\u1d39\u1d3c*","screen_name":"ngzmomo","location":"\u300eAlwaysGunnJ\u2661\u300f","url":null,"description":"\u2765GjPb\u221e \u2741\u65e5\u672c\u3073\u3044\u304d | \u0e02\u0e35\u0e49\u0e1a\u0e48\u0e19 | \u0e02\u0e35\u0e49\u0e40\u0e2b\u0e27\u0e35\u0e48\u0e22\u0e07 | \u0e40\u0e1e\u0e49\u0e2d\u0e40\u0e08\u0e49\u0e2d \u2741 #AlwaysGunnJ \u2729 #SeeScape \u2729 #MISBGunnJ \u2729 Frung \u2729 Esther \u2729 ELF\u2661\uc218\uc96c\u2022\ud2b9\ubc94\ubbfc\ud574","protected":false,"verified":false,"followers_count":2031,"friends_count":168,"listed_count":6,"favourites_count":976,"statuses_count":72686,"created_at":"Tue Dec 22 09:56:42 +0000 2009","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"303030","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643233761547522048\/x96ri0mG.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643233761547522048\/x96ri0mG.jpg","profile_background_tile":true,"profile_link_color":"F74061","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"242122","profile_text_color":"44C75E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649107074723352576\/rtYzLH6n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649107074723352576\/rtYzLH6n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/98599559\/1443610344","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44304,"favorite_count":4973,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ngzmomo","name":"\u1d33\u1d35\u1d3a\u1d33\u1d31\u1d3f\u1d39\u1d3c*","id":98599559,"id_str":"98599559","indices":[3,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080128661"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282441936896,"id_str":"663728282441936896","text":"@Unpaesedistan \u83c5\u91ce\u5b8c\u3055\u3093\u3001\u661f\u5c51\u306f\u661f\u306e\u5c51\u3060\u304b\u3089\u3053\u305d\u4fa1\u5024\u304c\u3042\u3063\u3066\u3001\u305f\u3060\u306e\u5c51\u306f\u7121\u4fa1\u5024\u3088\u3002#\u51fa\u4f1a\u3044\u7cfb #\u7121\u6599","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727343270125568,"in_reply_to_status_id_str":"663727343270125568","in_reply_to_user_id":3007984879,"in_reply_to_user_id_str":"3007984879","in_reply_to_screen_name":"Unpaesedistan","user":{"id":2841297252,"id_str":"2841297252","name":"\u4e8c\u30e3\u4e00\u96cc\u2500","screen_name":"2chnyans","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":534,"friends_count":85,"listed_count":7,"favourites_count":0,"statuses_count":883201,"created_at":"Sun Oct 05 13:20:39 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524611567833198592\/AHTpqwY1_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524611567833198592\/AHTpqwY1_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u51fa\u4f1a\u3044\u7cfb","indices":[49,54]},{"text":"\u7121\u6599","indices":[55,58]}],"urls":[],"user_mentions":[{"screen_name":"Unpaesedistan","name":"\u671d\u9752\u9f8d\u3063\u3066\u306a\u3093\u3067\u30b9\u30c8\u30c3\u30ad\u30f3\u30b0\u88ab\u3063\u3066\u3093\u306e\uff1f","id":3007984879,"id_str":"3007984879","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282429464576,"id_str":"663728282429464576","text":"@CanchaChicaPY @juanpanervio quiero ser romerito","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662242003749613568,"in_reply_to_status_id_str":"662242003749613568","in_reply_to_user_id":544386626,"in_reply_to_user_id_str":"544386626","in_reply_to_screen_name":"CanchaChicaPY","user":{"id":829611097,"id_str":"829611097","name":"moris","screen_name":"MorisBenitez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":999,"friends_count":803,"listed_count":1,"favourites_count":3294,"statuses_count":22872,"created_at":"Mon Sep 17 18:51:59 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653725553418223616\/jdUSjwJq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653725553418223616\/jdUSjwJq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/829611097\/1444268491","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CanchaChicaPY","name":"Cancha Chica","id":544386626,"id_str":"544386626","indices":[0,14]},{"screen_name":"juanpanervio","name":"Juanpa Ramirez","id":190755844,"id_str":"190755844","indices":[15,28]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080128663"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412560385,"id_str":"663728282412560385","text":"People don't even like me I don't see why I bother trying.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1529863214,"id_str":"1529863214","name":"Ry ry.","screen_name":"ryleebennion","location":null,"url":null,"description":"|maddy.\u2764| khs | alone. |everyone wants happiness no one wants pain but you can't have a rainbow with out a little rain. |","protected":false,"verified":false,"followers_count":72,"friends_count":89,"listed_count":0,"favourites_count":77,"statuses_count":192,"created_at":"Wed Jun 19 05:55:42 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662838237145108481\/FLY0waJO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662838237145108481\/FLY0waJO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1529863214\/1439239512","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282433552389,"id_str":"663728282433552389","text":"not a single pimple appeared during sembreak huhu where's the prob","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727935992389632,"in_reply_to_status_id_str":"663727935992389632","in_reply_to_user_id":967577646,"in_reply_to_user_id_str":"967577646","in_reply_to_screen_name":"tweetcdooy","user":{"id":967577646,"id_str":"967577646","name":"babe","screen_name":"tweetcdooy","location":"Cebu, PH","url":"http:\/\/instagram.com\/ilovecdooy","description":null,"protected":false,"verified":false,"followers_count":293,"friends_count":147,"listed_count":1,"favourites_count":2418,"statuses_count":7098,"created_at":"Sat Nov 24 08:01:23 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496999844615954432\/xoNWLLDP.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496999844615954432\/xoNWLLDP.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660142115620433920\/QHXsMWOm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660142115620433920\/QHXsMWOm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/967577646\/1431879945","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"00de688c424ec036","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/00de688c424ec036.json","place_type":"city","name":"Lapu-Lapu City","full_name":"Lapu-Lapu City, Central Visayas","country_code":"PH","country":"Republika ng Pilipinas","bounding_box":{"type":"Polygon","coordinates":[[[123.908625,10.203521],[123.908625,10.334241],[124.072526,10.334241],[124.072526,10.203521]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128664"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282425167872,"id_str":"663728282425167872","text":"Value Lay System: The most accurate horse racing system ever to hit the industry. Low Risk, Huge Return! https:\/\/t.co\/D7jP8cx8nL","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2302462934,"id_str":"2302462934","name":"Sports Entertainment","screen_name":"sport8ent","location":null,"url":"http:\/\/www.leadsleap.com\/go\/48947","description":"We are a group of sport enthusiast, if you like to predicate sport game, please join our blog #NBA #NHL #NFL #soccer #football #sport","protected":false,"verified":false,"followers_count":890,"friends_count":497,"listed_count":37,"favourites_count":917,"statuses_count":106818,"created_at":"Tue Jan 21 04:08:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425480731482013696\/5rAl9GXn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425480731482013696\/5rAl9GXn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2302462934\/1390277505","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/D7jP8cx8nL","expanded_url":"http:\/\/dlvr.it\/Chfk2f","display_url":"dlvr.it\/Chfk2f","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128662"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282433552388,"id_str":"663728282433552388","text":"@Raito_TQ1_bot \u30e9\u30a4\u30c8...\u3092\u3084\u3063\u3066\u3044\u308b...\u5fb9\u591c...\u30b5\u30c3\u30b6\u30e9\u304b..\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728043957972992,"in_reply_to_status_id_str":"663728043957972992","in_reply_to_user_id":2938242649,"in_reply_to_user_id_str":"2938242649","in_reply_to_screen_name":"Raito_TQ1_bot","user":{"id":2994425858,"id_str":"2994425858","name":"\ubbfc\uc9c0","screen_name":"yuarang960411","location":null,"url":null,"description":"1996.4.11\uc0dd!20\u5973\/\uc5f4\ucc28\uc804\ub300 \ud1a0\ud050\uc7c8(\ud30c\uc6cc\ub808\uc778\uc800 \ud2b8\ub808\uc778\ud3ec\uc2a4)\uc2dc\uc190 \uc970,\ud788\ub77c\ub9c8\ud0a4 \uc9c4,\ucf54\uc9c0\ub9c8 \ub9ac\ub9ac\uc544,\uc694\ucf54\ud558\ub9c8 \ub958\uc138\uc774,\ubaa8\ub9ac\ud0c0\uce74 \uc544\uc774,\ub098\uac00\ud558\ub9c8 \uc2e0,\uc624\uc624\uad6c\uce58 \ucf04\uace0\ud32c\/\ud604\uc7ac\ub294 \uc77c\ubcf8\uc5b4 \ubc88\uc5ed\uae30\ub97c\uc4f0\uba74\uc11c \ud2b8\uc704\ud130\uc911.\/\ub9de\ud314\uc6d0\ud558\uc2dc\uba74 \uba58\uc158\uc744 \uc8fc\uc138\uc694~!\/\uac00\uba74\ub77c\uc774\ub354 \uace0\uc2a4\ud2b8\ub3c4 \uc2dc\uccad\uc911\/\ubbfc\uc720\ub9ac\ub77c\uad6c\uc694~!","protected":false,"verified":false,"followers_count":32,"friends_count":71,"listed_count":0,"favourites_count":3,"statuses_count":1220,"created_at":"Sat Jan 24 09:49:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657375899382251520\/f6X5JySZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657375899382251520\/f6X5JySZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994425858\/1445565600","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Raito_TQ1_bot","name":"\u30e9\u30a4\u30c8","id":2938242649,"id_str":"2938242649","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128664"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282437746689,"id_str":"663728282437746689","text":"@ao_dokurock @yodakanomori \u305d\u3093\u3067\u3082\u3063\u3066\u671d\u300c\u3042\u308c\u3001\u3053\u3053\u3069\u3053\u3002\u3042\u308c\uff1f\u300d\u300c\u306f\u3063\u306f\u30fc\u3001\u307e\u3060\u307e\u3060\u3060\u306a\u30fc\u30b9\u30c6\u30a3\u30fc\u30d6\uff57\uff57\u300d\u3068\u304b\u8a00\u3063\u3061\u3083\u3046\u3093\u3067\u3057\u3087\uff01\uff01\u4f55\u304b\u3055\u308c\u305f\u306e\u304b\u3055\u308c\u3066\u306a\u3044\u306e\u304b\u3088\u304f\u308f\u304b\u3093\u306a\u304f\u3063\u3066\u982d\u306e\u4e0a\u306b\u4e00\u676f\uff1f\u3068\u6c57\u3092\u98db\u3070\u3059\u3068\u3044\u3044\u308f\uff01\uff01(\u7b11)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725492747374592,"in_reply_to_status_id_str":"663725492747374592","in_reply_to_user_id":3140218172,"in_reply_to_user_id_str":"3140218172","in_reply_to_screen_name":"ao_dokurock","user":{"id":1864434187,"id_str":"1864434187","name":"\u307f\u305a\u304e\u308a\uff20\u51b7\u51cd\u30d4\u30b6\u51fa\u307e\u3059","screen_name":"miz43","location":"\u8840\u754c\u3000\u756a\u982d\u6cbc","url":null,"description":"\u8150\u5411\u3051\u767a\u8a00\u5c02\u7528\u57a2\u3002\u73fe\u5728\u8840\u754c\u30af\u30e9\u30b9\u30c6\u4e2d\u5fc3\u3002\u305d\u306e\u4ed6\u30b9\u30c6\u30af\u30e9\u3001\u30b6\u30d7\u30b9\u30c6\u3001\u30ec\u30aa\u30b9\u30c6\u7b49\u3005\u4e3b\u306b\u756a\u982d\u53f3\u5074\u3001\u30e2\u30d6\u30b9\u30c6\u3069\u3093\u3068\u3053\u3044\u3002\uff1a\u30c6\u30e9\u30d5\u30a9\u30fc\u30de\u30fc\u30ba\u5289\u5c0f\u3001\u5c0f\u30c6\u30a3\u30f3\u4ed6\u3002 \u30ab\u30d7\u96d1\u591a\u306b\u3064\u304d\u3054\u6ce8\u610f\u4e0b\u3055\u3044\u3002\u5e73\u6c17\u3067\u30ea\u30d0\u3063\u305f\u308a\u30e2\u30d6\u3063\u305f\u308a\u306b\u3087\u305f\u3063\u305f\u308a\u3057\u307e\u3059\u2026\uff01\u672c\u5bb6\u306f\u3053\u3061\u3089\u2192@randam_c\u3000\u6210\u4eba\u6e08\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3057\u307e\u3059(\uff1e\uff1c)","protected":false,"verified":false,"followers_count":41,"friends_count":82,"listed_count":4,"favourites_count":1284,"statuses_count":2581,"created_at":"Sat Sep 14 17:03:35 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663410588324794372\/JUc-C1KP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663410588324794372\/JUc-C1KP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1864434187\/1444401585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ao_dokurock","name":"\u84bc\u7dad","id":3140218172,"id_str":"3140218172","indices":[0,12]},{"screen_name":"yodakanomori","name":"\u30e4\u30de\u30b3","id":169972037,"id_str":"169972037","indices":[13,26]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128665"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282437709824,"id_str":"663728282437709824","text":"\u00bfYa te est\u00e1s preparando para el verano? En Sunpoint te espera el mejor bronceado y duradero ;) https:\/\/t.co\/6WKaLUaf0Z","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":455265764,"id_str":"455265764","name":"Sunpoint Solarium","screen_name":"SunpointPy","location":"Asunci\u00f3n ","url":null,"description":null,"protected":false,"verified":false,"followers_count":950,"friends_count":47,"listed_count":0,"favourites_count":0,"statuses_count":679,"created_at":"Wed Jan 04 22:43:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/394866634\/FernandodeNoronhaPlaya.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/394866634\/FernandodeNoronhaPlaya.jpg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1735012205\/iso_normal.PNG","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1735012205\/iso_normal.PNG","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/6WKaLUaf0Z","expanded_url":"http:\/\/fb.me\/2x0dXeDQ0","display_url":"fb.me\/2x0dXeDQ0","indices":[95,118]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080128665"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282441920512,"id_str":"663728282441920512","text":"RT @blacklabel1127: 151109 \ud83c\udf52\ud83c\udf52\ud83c\udf52 \ud30c\uc774\ud305\ud83c\udf52\ud83c\udf52\ud83c\udf52 https:\/\/t.co\/Rn7wKUueuB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3614772510,"id_str":"3614772510","name":"\uce74\uc774\uc800","screen_name":"88x94x04","location":"88 94 04","url":null,"description":"\ub108\ud76c\uc758 \ud589\ubcf5\uc774 \uc804\ubd80\ub2e4. \uc5b4\ub514\uc5d0 \uc788\ub4e0, \ubb34\uc5c7\uc744 \ud558\ub4e0 \ub108\ud76c\uc758 \ud589\ubcf5\uc744 \ube4c\uaca0\ub2e4. \ubd80\ub514 \ud589\ubcf5\ud574\ub77c. \uc18c\ub144\ub4e4\uc774\uc5ec.","protected":false,"verified":false,"followers_count":28,"friends_count":375,"listed_count":0,"favourites_count":255,"statuses_count":7092,"created_at":"Sat Sep 19 10:12:03 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"5AFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645874602229411840\/Uyv3Fqnu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645874602229411840\/Uyv3Fqnu.jpg","profile_background_tile":false,"profile_link_color":"5AFFFF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662978780617510912\/fvsuFxjg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662978780617510912\/fvsuFxjg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3614772510\/1446561432","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 10:49:01 +0000 2015","id":663669615797514241,"id_str":"663669615797514241","text":"151109 \ud83c\udf52\ud83c\udf52\ud83c\udf52 \ud30c\uc774\ud305\ud83c\udf52\ud83c\udf52\ud83c\udf52 https:\/\/t.co\/Rn7wKUueuB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1966011518,"id_str":"1966011518","name":"\u2716\ufe0fMY BLACKLABEL","screen_name":"blacklabel1127","location":null,"url":null,"description":"\u2716\ufe0fthe unique swag ! \u2716\ufe0fhttp:\/\/my-blacklabel.net 2016 season greeting \u2716\ufe0fhttp:\/\/my-blacklabel.net\/myfavorite","protected":false,"verified":false,"followers_count":34101,"friends_count":4,"listed_count":848,"favourites_count":0,"statuses_count":882,"created_at":"Thu Oct 17 03:39:20 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626425202017112064\/PGj-R5gf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626425202017112064\/PGj-R5gf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1966011518\/1404540848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":809,"favorite_count":275,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663669607371149313,"id_str":"663669607371149313","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":528,"h":791,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":528,"h":791,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663669607371149313,"id_str":"663669607371149313","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":528,"h":791,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":528,"h":791,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}}},{"id":663669607383699456,"id_str":"663669607383699456","indices":[18,41],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_dxUEAAh02X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_dxUEAAh02X.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"blacklabel1127","name":"\u2716\ufe0fMY BLACKLABEL","id":1966011518,"id_str":"1966011518","indices":[3,18]}],"symbols":[],"media":[{"id":663669607371149313,"id_str":"663669607371149313","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":528,"h":791,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":528,"h":791,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":663669615797514241,"source_status_id_str":"663669615797514241","source_user_id":1966011518,"source_user_id_str":"1966011518"}]},"extended_entities":{"media":[{"id":663669607371149313,"id_str":"663669607371149313","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_duUkAEhhsu.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":528,"h":791,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":528,"h":791,"resize":"fit"},"small":{"w":340,"h":509,"resize":"fit"}},"source_status_id":663669615797514241,"source_status_id_str":"663669615797514241","source_user_id":1966011518,"source_user_id_str":"1966011518"},{"id":663669607383699456,"id_str":"663669607383699456","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXT_dxUEAAh02X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXT_dxUEAAh02X.jpg","url":"https:\/\/t.co\/Rn7wKUueuB","display_url":"pic.twitter.com\/Rn7wKUueuB","expanded_url":"http:\/\/twitter.com\/blacklabel1127\/status\/663669615797514241\/photo\/1","type":"photo","sizes":{"medium":{"w":426,"h":640,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":426,"h":640,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"}},"source_status_id":663669615797514241,"source_status_id_str":"663669615797514241","source_user_id":1966011518,"source_user_id_str":"1966011518"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408366080,"id_str":"663728282408366080","text":"RT @mono_sokolata: \u03bb\u03af\u03c0\u03b7, \u03bb\u03b5\u03af\u03c0\u03b5\u03b9, \u03bb\u03cd\u03c0\u03b7...\u03b4\u03b7\u03bb\u03b1\u03b4\u03ae \u03b1\u03c5\u03c4\u03ae \u03b7 \u03bb\u03ad\u03be\u03b7 \u03cc\u03c0\u03c9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b7\u03bd \u03b3\u03c1\u03ac\u03c8\u03b5\u03b9\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c1\u03bd\u03b7\u03c4\u03b9\u03ba\u03ae \u03c3\u03b7\u03bc\u03b1\u03c3\u03af\u03b1","source":"\u003ca href=\"http:\/\/favstar.fm\" rel=\"nofollow\"\u003eFavstar.FM\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":430992771,"id_str":"430992771","name":"\u039d\u03b5\u03c1\u03b1'\u0399'\u03b4\u03b1 \u264b&\u264f","screen_name":"neraida84","location":"\u0398\u03b5\u03c3\u03c3\u03b1\u03bb\u03bf\u03bd\u03af\u03ba\u03b7","url":null,"description":"https:\/\/twitter.com\/search?q=from%3A%40neraida84&src=typd http:\/\/favstar.fm\/users\/neraida84 \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf\u03c2 \u03b5\u03c1\u03c9\u03c4\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03bc\u03b5\u03b3\u03ac\u03bb\u03b7 \u03ba\u03b1\u03c8\u03bf\u03cd\u03c1\u03b1 \u03c4\u03b7\u03c2 \u03b6\u03c9\u03ae\u03c2 \u03bc\u03bf\u03c5 \u03bf @fax_you\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":7444,"friends_count":4612,"listed_count":102,"favourites_count":81175,"statuses_count":128350,"created_at":"Wed Dec 07 20:03:41 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"el","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663456842601897988\/IsVzXrkT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663456842601897988\/IsVzXrkT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/430992771\/1447061441","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Jul 11 10:57:41 +0000 2014","id":487551293305544704,"id_str":"487551293305544704","text":"\u03bb\u03af\u03c0\u03b7, \u03bb\u03b5\u03af\u03c0\u03b5\u03b9, \u03bb\u03cd\u03c0\u03b7...\u03b4\u03b7\u03bb\u03b1\u03b4\u03ae \u03b1\u03c5\u03c4\u03ae \u03b7 \u03bb\u03ad\u03be\u03b7 \u03cc\u03c0\u03c9\u03c2 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03b7\u03bd \u03b3\u03c1\u03ac\u03c8\u03b5\u03b9\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c1\u03bd\u03b7\u03c4\u03b9\u03ba\u03ae \u03c3\u03b7\u03bc\u03b1\u03c3\u03af\u03b1","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":195020834,"id_str":"195020834","name":"mama_stroumf","screen_name":"mono_sokolata","location":"PROUD TO BE GREEK - \u039a\u03cd\u03c0\u03c1\u03bf\u03c2","url":null,"description":"\u039a\u03ac\u03bd\u03b5 \u03c4\u03b7 \u03b6\u03c9\u03ae \u03c3\u03bf\u03c5 \u03ad\u03bd\u03b1 \u03cc\u03bd\u03b5\u03b9\u03c1\u03bf \u03ba\u03b1\u03b9 \u03c4\u03bf \u03cc\u03bd\u03b5\u03b9\u03c1\u03cc \u03c3\u03bf\u03c5 \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\u03c4\u03b7\u03c4\u03b1!\r\nhttp:\/\/favstar.fm\/users\/mono_sokolata","protected":false,"verified":false,"followers_count":3525,"friends_count":3413,"listed_count":38,"favourites_count":19960,"statuses_count":22790,"created_at":"Sat Sep 25 15:55:34 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3DE812","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/821531063\/e326f0f7c0bb061b017d3c67f0a69c72.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/821531063\/e326f0f7c0bb061b017d3c67f0a69c72.jpeg","profile_background_tile":true,"profile_link_color":"37DE0D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588641426914705408\/9aIU84CX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588641426914705408\/9aIU84CX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/195020834\/1379973895","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":143,"favorite_count":153,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"el"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mono_sokolata","name":"mama_stroumf","id":195020834,"id_str":"195020834","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"el","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408349696,"id_str":"663728282408349696","text":"\u3053\u308c\u306f\u99ac\uff1f\uff01\u4e16\u754c\u4e00\u306e\u8eab\u9577\u3092\u8a87\u308b\u30b8\u30e3\u30a4\u30a2\u30f3\u30c8\u30fb\u30b8\u30e7\u30fc\u30b8\uff08\u30b0\u30ec\u30fc\u30c8\u30fb\u30c7\u30f3\uff09\u306e\u5199\u771f12\u679a https:\/\/t.co\/FVr3Wxw2wE","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2222612239,"id_str":"2222612239","name":"\u30a6\u30a7\u30d6\u6700\u65b0\u8a71\u984c\uff20\u30d5\u30a9\u30ed\u30fc100\uff05","screen_name":"webd_new","location":null,"url":"http:\/\/ccpics.net","description":"\u30a6\u30a7\u30d6\u6700\u65b0\u8a71\u984c\u3092\u3069\u3093\u3069\u3093\u63d0\u4f9b\u3057\u3066\u3044\u304d\u307e\u3059\u3002\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc100\uff05\u306a\u306e\u3067\u3001\u3069\u3093\u3069\u3093\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u4e0b\u3055\u3044\u300212\u6642\u9593\u4ee5\u5185\u306b\u81ea\u52d5\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1763,"friends_count":1945,"listed_count":4,"favourites_count":0,"statuses_count":32254,"created_at":"Sat Nov 30 06:51:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000809422845\/e9e185b2c515dfc69fd034a383e23e2e_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000809422845\/e9e185b2c515dfc69fd034a383e23e2e_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FVr3Wxw2wE","expanded_url":"http:\/\/ccpics.net\/node\/316","display_url":"ccpics.net\/node\/316","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282429353984,"id_str":"663728282429353984","text":"@bot_itsuki \u304a\u304a\u306f\u3088\u3046\u3001\u3053\u3093\u306b\u3061\u306f\u3001\u3053\u3093\u3070\u3093\u306f\u3001\u304a\u3084\u3059\u307f\u3001\u5bdd\u308b\u3001\u307b\u304b\u308b\u3001\u6b7b\u306b\u305f\u3044\u3001\u6016\u3044\u3001\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\u3001\u5360\u3063\u3066\uff01 \u3044\u3063\u3066\u304d\u307e\u3059\u3001\u305f\u3060\u3044\u307e\u3001\u304a\u5e30\u308a\u3001\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\u3001\u5bdd\u308b\u3001\u304a\u98a8\u5442af","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663714710638886912,"in_reply_to_status_id_str":"663714710638886912","in_reply_to_user_id":179435040,"in_reply_to_user_id_str":"179435040","in_reply_to_screen_name":"bot_itsuki","user":{"id":3069715224,"id_str":"3069715224","name":"\u500b\u4eba\u60c5\u5831\u6f0f\u6d29BBA @myimai","screen_name":"summ0l2er","location":"\u2661\u02d6\ua4b0\u1d55\u0f1a\u1d55\u2445\ua4b1","url":null,"description":"\u30f2\u30c1\u3001\u611a\u75f4\u3001\u8a00\u3044\u305f\u3044\u4e8b\u3092\u8a00\u3046\u3002\u30b4\u30df\u305f\u3061\u2192@ane_oneichan @ssosstk @r5i5n5 @machida_0 @kan_na_ @rushiamisono","protected":false,"verified":false,"followers_count":1243,"friends_count":1995,"listed_count":2,"favourites_count":61,"statuses_count":121776,"created_at":"Mon Mar 09 12:51:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644134657139707906\/HgTywkS-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644134657139707906\/HgTywkS-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3069715224\/1441788014","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bot_itsuki","name":"\u4f50\u4e45\u6c99 \u3044\u3064\u304d(bot)","id":179435040,"id_str":"179435040","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128663"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408349698,"id_str":"663728282408349698","text":"Everything is gonna be alright @PalmaAngelgrace","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1388772888,"id_str":"1388772888","name":"Nesmarie Cordova","screen_name":"Nesfruuuta","location":"Baguio\/ Isabela","url":"http:\/\/Velvet.Nes.com","description":"IG @nesfruuuta","protected":false,"verified":false,"followers_count":1501,"friends_count":1230,"listed_count":1,"favourites_count":976,"statuses_count":27565,"created_at":"Mon Apr 29 06:23:39 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571900470575112192\/-Ytn7y2_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571900470575112192\/-Ytn7y2_.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660011765904764928\/D5xsIPJJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660011765904764928\/D5xsIPJJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1388772888\/1445049896","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"PalmaAngelgrace","name":"graciaaa","id":2695864514,"id_str":"2695864514","indices":[31,47]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282441924608,"id_str":"663728282441924608","text":"Sry if there is any errors\ud83d\ude05 im not good at eng","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728083585728512,"in_reply_to_status_id_str":"663728083585728512","in_reply_to_user_id":3616037599,"in_reply_to_user_id_str":"3616037599","in_reply_to_screen_name":"xtintedroses_","user":{"id":3616037599,"id_str":"3616037599","name":"\u03b7\u03b1\u03b3\u03b9\u03b7g","screen_name":"xtintedroses_","location":null,"url":null,"description":"owner of @nao_loves\nowner of @snap_naonao\nA no jams A.R.M.Y :D :'D","protected":false,"verified":false,"followers_count":1,"friends_count":9,"listed_count":0,"favourites_count":47,"statuses_count":43,"created_at":"Sat Sep 19 12:42:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663217256311099392\/W0OvgkCr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663217256311099392\/W0OvgkCr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3616037599\/1446958289","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408325120,"id_str":"663728282408325120","text":"RT @tebasakitoriri: @tabataminoru @kentaro666 \u6c11\u4e3b\u515a\u653f\u6a29\u304c\u5d29\u58ca\u3055\u305b\u304b\u3051\u305f\u65e5\u672c\u7d4c\u6e08\uff08\u682a\u4fa1\uff17\u5343\u5186\u53f0\u3001\u30c9\u30eb\u518670\u5186\u53f0\u3067\u4f01\u696d\u306f\u307f\u3093\u306a\u6d77\u5916\u306b\u9003\u3052\u305f\uff09\u3092\u30a2\u30d9\u30ce\u30df\u30af\u30b9\u306f\u62bc\u3057\u3068\u3069\u3081\u3001\u9ad8\u5352\u5927\u5352\u306e\u5c31\u8077\u3082\u58f2\u308a\u624b\u5e02\u5834\u306b\u3001\u521d\u4efb\u7d66\u3082\u30a2\u30c3\u30d7\u3057\u3066\u3044\u307e\u3059\u3002\u975e\u6b63\u898f\u3001\u30d1\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":155170239,"id_str":"155170239","name":"\u68ee\u3000\u82f1\u5f66","screen_name":"waverider_hide","location":null,"url":null,"description":"\u3057\u304c\u306a\u3044MR\u3092\u3084\u3063\u3066\u307e\u3059\u3002 \u4ed5\u4e8b\u67c4\u533b\u7642\u7cfb\u306e\u30cd\u30bf\u306b\u98df\u3044\u3064\u304d\u304c\u3044\u3044\u3067\u3059\u3002\u8272\u3005\u306a\u3053\u3068\u3067\u6bd2\u3092\u5410\u304d\u307e\u3059\u304c\u3001\u3054\u5bb9\u8d66\u304f\u3060\u3055\u3044\u3002 \u6d0b\u697d\u30fb\u90a6\u697d\u3001\u3068\u308a\u308f\u305180's\u3002 \u30a2\u30cb\u30aa\u30bf\u3001\u30ac\u30ce\u30bf\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":470,"friends_count":638,"listed_count":30,"favourites_count":677,"statuses_count":124729,"created_at":"Sun Jun 13 10:26:34 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572030696941699072\/U2N8UU_R_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572030696941699072\/U2N8UU_R_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/155170239\/1398260557","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:59:45 +0000 2015","id":663536423044165632,"id_str":"663536423044165632","text":"@tabataminoru @kentaro666 \u6c11\u4e3b\u515a\u653f\u6a29\u304c\u5d29\u58ca\u3055\u305b\u304b\u3051\u305f\u65e5\u672c\u7d4c\u6e08\uff08\u682a\u4fa1\uff17\u5343\u5186\u53f0\u3001\u30c9\u30eb\u518670\u5186\u53f0\u3067\u4f01\u696d\u306f\u307f\u3093\u306a\u6d77\u5916\u306b\u9003\u3052\u305f\uff09\u3092\u30a2\u30d9\u30ce\u30df\u30af\u30b9\u306f\u62bc\u3057\u3068\u3069\u3081\u3001\u9ad8\u5352\u5927\u5352\u306e\u5c31\u8077\u3082\u58f2\u308a\u624b\u5e02\u5834\u306b\u3001\u521d\u4efb\u7d66\u3082\u30a2\u30c3\u30d7\u3057\u3066\u3044\u307e\u3059\u3002\u975e\u6b63\u898f\u3001\u30d1\u30fc\u30c8\u3092\u542b\u3081\u308c\u3070\u96c7\u7528\u306f\u6fc0\u5897\u3057\u3066\u3044\u307e\u3059\u3002","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663527247375011841,"in_reply_to_status_id_str":"663527247375011841","in_reply_to_user_id":106696197,"in_reply_to_user_id_str":"106696197","in_reply_to_screen_name":"tabataminoru","user":{"id":63149801,"id_str":"63149801","name":"\u9808\u8cc0\u539f\u6d0b\u884c\u300e\u5929\u56fd\u30cb\u30e7\u30fc\u30dc\u300f\u7b2c\uff11\u5dfb\u767a\u58f2\u4e2d","screen_name":"tebasakitoriri","location":"\u540d\u53e4\u5c4b","url":"http:\/\/uaa-nikki.cocolog-nifty.com\/blog\/","description":"\u30de\u30f3\u30ac\u5bb6\u3002\u5c0f\u5b66\u9928\u30b9\u30da\u30ea\u30aa\u30fc\u30eb\u3067\u300e\u5929\u56fd\u30cb\u30e7\u30fc\u30dc\u300f\u9023\u8f09\u4e2d\u3002\u5358\u884c\u672c\u7b2c\uff11\u5dfb\uff18\u6708\uff12\uff18\u65e5\u767a\u58f2\uff01\u8b1b\u8ac7\u793e\u300e\u5b9f\u5728\u30b2\u30ad\u30a6\u30de\u5730\u9152\u65e5\u8a18\u300f\uff11\uff0c\uff12\u5dfb\u767a\u58f2\u4e2d\u3002\u7af9\u66f8\u623f\u300c\u672c\u5f53\u306b\u3042\u3063\u305f\u6109\u5feb\u306a\u8a71\u300d\u3067\u300e\u3088\u3057\u3048\u30b5\u30f3\u306e\u30af\u30c3\u30ad\u30f3\u30b0\u30c0\u30f3\u30ca\u300f\u9023\u8f09\u4e2d\uff06\uff11\uff0c\uff12\u5dfb\u767a\u58f2\u4e2d\u3002\u30a2\u30de\u30be\u30f3\u30ad\u30f3\u30c9\u30eb\u4ed6\u3067\u300e\u6c17\u5206\u306f\u5f62\u800c\u4e0a\u300f\u300e\u3088\u3057\u3048\u30b5\u30f3\u300f\u300e\u3046\u3042\u3042\u54f2\u5b66\u4e8b\u5178\u300f\u300e\u305d\u308c\u306f\u30a8\u30ce\u30ad\u30c0\uff01\u300f\u4ed6\u904e\u53bb\u4f5c\u54c1\u914d\u4fe1\u4e2d","protected":false,"verified":false,"followers_count":7409,"friends_count":395,"listed_count":608,"favourites_count":133,"statuses_count":29162,"created_at":"Wed Aug 05 14:40:05 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/551280028126683136\/mXB1y0Ke.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/551280028126683136\/mXB1y0Ke.jpeg","profile_background_tile":false,"profile_link_color":"0E6B33","profile_sidebar_border_color":"2C593C","profile_sidebar_fill_color":"FFFCEB","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551280762083749888\/BLvi5Cfo_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551280762083749888\/BLvi5Cfo_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63149801\/1420288441","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tabataminoru","name":"\u7530\u7551\u7a14","id":106696197,"id_str":"106696197","indices":[0,13]},{"screen_name":"kentaro666","name":"\u7af9\u718a\u5065\u592a\u90ce\u300a\u4e00\u76f4\u7dda\u300b","id":90826040,"id_str":"90826040","indices":[14,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tebasakitoriri","name":"\u9808\u8cc0\u539f\u6d0b\u884c\u300e\u5929\u56fd\u30cb\u30e7\u30fc\u30dc\u300f\u7b2c\uff11\u5dfb\u767a\u58f2\u4e2d","id":63149801,"id_str":"63149801","indices":[3,18]},{"screen_name":"tabataminoru","name":"\u7530\u7551\u7a14","id":106696197,"id_str":"106696197","indices":[20,33]},{"screen_name":"kentaro666","name":"\u7af9\u718a\u5065\u592a\u90ce\u300a\u4e00\u76f4\u7dda\u300b","id":90826040,"id_str":"90826040","indices":[34,45]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282433490944,"id_str":"663728282433490944","text":"RT @Highly_Suspect: Dabs.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2854443666,"id_str":"2854443666","name":"Grace Davis","screen_name":"GracieDee21","location":"California","url":null,"description":"makeup artist, loves MUSIC, hiking, biking, swimming, riding, scuba and her amazing man","protected":false,"verified":false,"followers_count":260,"friends_count":326,"listed_count":6,"favourites_count":6192,"statuses_count":3616,"created_at":"Mon Oct 13 14:55:20 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639602314278408193\/DRyvxzia_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639602314278408193\/DRyvxzia_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2854443666\/1420043830","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:06:33 +0000 2015","id":663719326021742592,"id_str":"663719326021742592","text":"Dabs.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58939647,"id_str":"58939647","name":"Highly Suspect","screen_name":"Highly_Suspect","location":"Brooklyn Ny","url":"http:\/\/highlysuspect.net","description":"bklyn (for now) zero fucks. #mcid @300 New video for Lydia out now. click that shit\/\/\/ SNAP= HS.MCID \/\/\/Out on the west coast, they got this sayin'...","protected":false,"verified":true,"followers_count":6538,"friends_count":201,"listed_count":127,"favourites_count":6110,"statuses_count":6467,"created_at":"Tue Jul 21 22:12:19 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/57827701\/logo2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/57827701\/logo2.jpg","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601877231967698944\/_RlsJO1e_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601877231967698944\/_RlsJO1e_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58939647\/1444069919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":17,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Highly_Suspect","name":"Highly Suspect","id":58939647,"id_str":"58939647","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128664"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282420903937,"id_str":"663728282420903937","text":"[PSA] Not sure how to get to iAcademy, the new venue of #PWRLive? We have commuting\/driving directions. @pwrofficial https:\/\/t.co\/yeZamEjv5w","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3142795987,"id_str":"3142795987","name":"Smark Henry","screen_name":"SmarkHenryPH","location":"Republic of the Philippines","url":"http:\/\/www.smarkhenry.ph","description":"The reigning, defending, undisputed World Smarkweight Champion, and the voice of the Filipino wrestling fan.","protected":false,"verified":false,"followers_count":98,"friends_count":233,"listed_count":1,"favourites_count":4,"statuses_count":750,"created_at":"Tue Apr 07 01:35:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616244194764460032\/r7J4sAhi.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616244194764460032\/r7J4sAhi.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615918087208964096\/bBx0oyor_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615918087208964096\/bBx0oyor_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3142795987\/1443287476","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PWRLive","indices":[56,64]}],"urls":[{"url":"https:\/\/t.co\/yeZamEjv5w","expanded_url":"http:\/\/www.smarkhenry.ph\/2015\/11\/pwr-live-iacademy-venue.html","display_url":"smarkhenry.ph\/2015\/11\/pwr-li\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"pwrofficial","name":"PWR","id":2362237014,"id_str":"2362237014","indices":[104,116]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128661"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412576768,"id_str":"663728282412576768","text":"@hideroP \u983c\u3080\u304b\u3089\u304a\u91d1\u6255\u308f\u305b\u3066\u304f\u3060\u3055\u3044\uff08\u6ce3\uff09\u2026\u3063\u3066\u65b9\u3001\u30d4\u30af\u30b7\u30d6\u306b\u591a\u3044\u3067\u3059\u3088\u306d\uff5e\uff3e\uff3e\uff1b","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717149370806272,"in_reply_to_status_id_str":"663717149370806272","in_reply_to_user_id":2498806632,"in_reply_to_user_id_str":"2498806632","in_reply_to_screen_name":"hideroP","user":{"id":93609419,"id_str":"93609419","name":"\u30d5\u30a1\u30df\u30b3\u30f3\u6226\u58eb\uff08\u6728\uff09\u6771\u30cd22a","screen_name":"A10GADGET","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3838,"friends_count":534,"listed_count":231,"favourites_count":3321,"statuses_count":24581,"created_at":"Mon Nov 30 11:12:39 +0000 2009","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/561846078\/i_on_tw_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/561846078\/i_on_tw_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hideroP","name":"\u30d2\u30c7\u30edP","id":2498806632,"id_str":"2498806632","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408525824,"id_str":"663728282408525824","text":"RT @Marcelocelo1234: Jime gata","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2582740981,"id_str":"2582740981","name":"Jimena Alberro","screen_name":"albfer2002","location":"Rivera, SLDN","url":null,"description":"Somos lo que nunca podr\u00e1n ser #LBDP\n\nClub Nacional de F\u00fatbol \n\n14.05.1899","protected":false,"verified":false,"followers_count":780,"friends_count":594,"listed_count":0,"favourites_count":4976,"statuses_count":16470,"created_at":"Sun Jun 22 19:31:29 +0000 2014","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"5702FF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633789737891962880\/S5fLdEN3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633789737891962880\/S5fLdEN3.jpg","profile_background_tile":true,"profile_link_color":"FF0505","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662280666831278080\/sAd9QdXF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662280666831278080\/sAd9QdXF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2582740981\/1446566473","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:20:09 +0000 2015","id":663526454399995905,"id_str":"663526454399995905","text":"Jime gata","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1892428963,"id_str":"1892428963","name":"Chulipa #1","screen_name":"Marcelocelo1234","location":"Rivera, Uruguay","url":null,"description":"Marcelo Natividade","protected":false,"verified":false,"followers_count":297,"friends_count":204,"listed_count":0,"favourites_count":612,"statuses_count":5166,"created_at":"Sun Sep 22 04:02:37 +0000 2013","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654867468394110976\/MMRw2gEg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654867468394110976\/MMRw2gEg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1892428963\/1443112899","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"lt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Marcelocelo1234","name":"Chulipa #1","id":1892428963,"id_str":"1892428963","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"lt","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408349697,"id_str":"663728282408349697","text":"RT @TheViralTrends: 10 Celebs Who Lost Their Virginity At An Older Age https:\/\/t.co\/xJGw6GcVYh https:\/\/t.co\/uOfovoVm4V","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":376020193,"id_str":"376020193","name":"Liar","screen_name":"Thesoupvibe","location":"liarrrrrrrrrrrrrrrrrrrrrrrrrrr","url":null,"description":"liarrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr","protected":false,"verified":false,"followers_count":41559,"friends_count":34526,"listed_count":132,"favourites_count":107,"statuses_count":73315,"created_at":"Mon Sep 19 04:58:09 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662507957624504320\/OTZbsJbb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662507957624504320\/OTZbsJbb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/376020193\/1446791343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 06:52:24 +0000 2015","id":662160517247557632,"id_str":"662160517247557632","text":"10 Celebs Who Lost Their Virginity At An Older Age https:\/\/t.co\/xJGw6GcVYh https:\/\/t.co\/uOfovoVm4V","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1688916012,"id_str":"1688916012","name":"Viral Trends","screen_name":"TheViralTrends","location":null,"url":null,"description":"Tweeting The Trending Things on Twitter","protected":false,"verified":false,"followers_count":1432,"friends_count":305,"listed_count":4,"favourites_count":2,"statuses_count":39,"created_at":"Wed Aug 21 18:32:08 +0000 2013","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/470125878391758848\/FgLAknCW.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/470125878391758848\/FgLAknCW.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/591594454949068800\/QXmD0DeC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/591594454949068800\/QXmD0DeC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1688916012\/1400921319","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":202,"favorite_count":59,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xJGw6GcVYh","expanded_url":"http:\/\/bit.ly\/1k6U2vT","display_url":"bit.ly\/1k6U2vT","indices":[51,74]}],"user_mentions":[],"symbols":[],"media":[{"id":662160515435745280,"id_str":"662160515435745280","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","url":"https:\/\/t.co\/uOfovoVm4V","display_url":"pic.twitter.com\/uOfovoVm4V","expanded_url":"http:\/\/twitter.com\/TheViralTrends\/status\/662160517247557632\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662160515435745280,"id_str":"662160515435745280","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","url":"https:\/\/t.co\/uOfovoVm4V","display_url":"pic.twitter.com\/uOfovoVm4V","expanded_url":"http:\/\/twitter.com\/TheViralTrends\/status\/662160517247557632\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/xJGw6GcVYh","expanded_url":"http:\/\/bit.ly\/1k6U2vT","display_url":"bit.ly\/1k6U2vT","indices":[71,94]}],"user_mentions":[{"screen_name":"TheViralTrends","name":"Viral Trends","id":1688916012,"id_str":"1688916012","indices":[3,18]}],"symbols":[],"media":[{"id":662160515435745280,"id_str":"662160515435745280","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","url":"https:\/\/t.co\/uOfovoVm4V","display_url":"pic.twitter.com\/uOfovoVm4V","expanded_url":"http:\/\/twitter.com\/TheViralTrends\/status\/662160517247557632\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":662160517247557632,"source_status_id_str":"662160517247557632","source_user_id":1688916012,"source_user_id_str":"1688916012"}]},"extended_entities":{"media":[{"id":662160515435745280,"id_str":"662160515435745280","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTB3ewLWUAAC1pM.jpg","url":"https:\/\/t.co\/uOfovoVm4V","display_url":"pic.twitter.com\/uOfovoVm4V","expanded_url":"http:\/\/twitter.com\/TheViralTrends\/status\/662160517247557632\/photo\/1","type":"photo","sizes":{"large":{"w":799,"h":419,"resize":"fit"},"medium":{"w":600,"h":314,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":662160517247557632,"source_status_id_str":"662160517247557632","source_user_id":1688916012,"source_user_id_str":"1688916012"}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282416848896,"id_str":"663728282416848896","text":"Cheating isn't an accident. Falling down is an accident... You don't just trip and fall into a vagina.","source":"\u003ca href=\"http:\/\/cacorp.de\" rel=\"nofollow\"\u003eCA Tweetdeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":460691965,"id_str":"460691965","name":"The College","screen_name":"TheCoIlege","location":"Party Campus","url":null,"description":"Official account of the College. The truth that only students know. Study hard, party harder.","protected":false,"verified":false,"followers_count":35426,"friends_count":18220,"listed_count":9,"favourites_count":0,"statuses_count":8652,"created_at":"Wed Jan 11 01:12:54 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000169309752\/bveSP632.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000169309752\/bveSP632.jpeg","profile_background_tile":false,"profile_link_color":"0C91D4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/423876066923393024\/ARyRPU9p_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/423876066923393024\/ARyRPU9p_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/460691965\/1389894919","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128660"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408321024,"id_str":"663728282408321024","text":"@jazzhiphoplove \n\ud83e\udd84\u540d\u524d\u2192\u65e5\u548c\u5148\u8f29\n\ud83d\udc84\u547c\u3073\u65b9\u2192\u65e5\u548c\u5148\u8f29\n\ud83d\udc8b\u547c\u3070\u308c\u65b9\u2192\u308b\u3044\u305f\u3093\n\ud83d\udc9f\u3069\u3046\u601d\u3063\u3066\u308b\uff1f\u2192\u983c\u308c\u308b\u5148\u8f29\n\ud83d\udc6f\u4e00\u7dd2\u306b\u3057\u305f\u3044\u3053\u3068\u2192\u3042\u305d\u3073\u3044\u304f\n\u260e\ufe0f\u96fb\u8a71\u3067\u304d\u308b\uff1f\u2192\u3067\u304d\u307e\u3059\n\u2709LINE\u3057\u3066\u308b\uff1f\u2192\u305f\u307e\u306b\n\ud83c\udf88\u6700\u5f8c\u306b\u4e00\u8a00\u2192\u3053\u308c\u304b\u3089\u3082\u5f13\u9053\u9811\u5f35\u3063\u3066\u304f\u3060\u3055\u3044\uff01\u306f\u3084\u304f\u904a\u3073\u884c\u304d\u307e\u3057\u3087\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":2262886087,"in_reply_to_user_id_str":"2262886087","in_reply_to_screen_name":"jazzhiphoplove","user":{"id":3139954154,"id_str":"3139954154","name":"\u308b\u308b\u308b\u306e\u308b\u3044","screen_name":"ruilovemike","location":"\u3075\u3058\u304b\u308f\u3072\u3089\u304f","url":"http:\/\/instagram.com\/scrt4641840","description":"H.F-9.30~\/ \u3072\u3089\u304f\u27ab@hiraPfuji\/\u5171\u540c\u57a2\u27ab@hiraruru930","protected":false,"verified":false,"followers_count":659,"friends_count":500,"listed_count":0,"favourites_count":8064,"statuses_count":7957,"created_at":"Sun Apr 05 07:18:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661908135750139904\/HAG1h8Th_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661908135750139904\/HAG1h8Th_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3139954154\/1446739944","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jazzhiphoplove","name":"\u5e78\u305b\u3044\u3063\u3071\u3044\u65e5\u548c","id":2262886087,"id_str":"2262886087","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282437746688,"id_str":"663728282437746688","text":"[Yang On Retweet] >Protected< Bitchy Girl \"Yoona\" - Part 1 [Note : Klik Skip Ad] https:\/\/t.co\/2diMbCzosJ","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2660151506,"id_str":"2660151506","name":"FF Yadong Frontal","screen_name":"OfficialFFYDF","location":null,"url":"http:\/\/ffyadongfrontal.wordpress.com","description":"[Official Account]\nCopyright \u00a9 2015 by FFYadongFrontal [@Galaxyfanwuarea : Owner]\nCheck our web! Don't forget RnR.","protected":false,"verified":false,"followers_count":97,"friends_count":2,"listed_count":4,"favourites_count":5,"statuses_count":4007,"created_at":"Sat Jul 19 18:29:06 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"F00000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/490723963845107715\/Cs6gkW2e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/490723963845107715\/Cs6gkW2e.jpeg","profile_background_tile":true,"profile_link_color":"0A0A0A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635298528537870336\/-zcV6gvH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635298528537870336\/-zcV6gvH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2660151506\/1440300335","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2diMbCzosJ","expanded_url":"http:\/\/p.pw\/bah43z","display_url":"p.pw\/bah43z","indices":[87,110]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128665"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282408493056,"id_str":"663728282408493056","text":"RT @odottart: [OT6] #TheKingIsBack \ud83d\udc51 @BAP_Bangyongguk @BAP_Himchan @BAP_Daehyun @BAP_Youngjae @BAP_Jongup @ZELO96 https:\/\/t.co\/NiVpTDUhPZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2596745899,"id_str":"2596745899","name":"\ub3c4\ub098#BAPis Back","screen_name":"DonnaWills8","location":"Cleveland, TN","url":null,"description":"#ILoveBAP and i always will . I'm a follower of BigBang,Exo,BTS, WINNER MYNAME and BTOB to. I love K-Pop. i am also a fan of heavy metal I am an animal lover to","protected":false,"verified":false,"followers_count":1657,"friends_count":1812,"listed_count":19,"favourites_count":68562,"statuses_count":56881,"created_at":"Mon Jun 30 18:16:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589076891065167872\/Ogl9tL1S.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589076891065167872\/Ogl9tL1S.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659578009460994048\/sMjtgi8W_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659578009460994048\/sMjtgi8W_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2596745899\/1443994031","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:27:20 +0000 2015","id":663709458258771968,"id_str":"663709458258771968","text":"[OT6] #TheKingIsBack \ud83d\udc51 @BAP_Bangyongguk @BAP_Himchan @BAP_Daehyun @BAP_Youngjae @BAP_Jongup @ZELO96 https:\/\/t.co\/NiVpTDUhPZ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2714080670,"id_str":"2714080670","name":"ODOTTER [REST]","screen_name":"odottart","location":"australia","url":"http:\/\/odotter.tumblr.com","description":"maddy \u2665 B.A.P FANART \u2665 \ubb38\uc885\uc5c5 \u2665 BTS\/OTHER: @tokkisuga \u2665 please read! http:\/\/odotter.tumblr.com\/abt","protected":false,"verified":false,"followers_count":696,"friends_count":28,"listed_count":16,"favourites_count":283,"statuses_count":382,"created_at":"Thu Aug 07 08:46:57 +0000 2014","utc_offset":32400,"time_zone":"Yakutsk","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"CEF5EF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/501003851483201536\/x-8L0rsY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/501003851483201536\/x-8L0rsY.jpeg","profile_background_tile":false,"profile_link_color":"EE77AA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/539274559019429888\/__JrKsJ8_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/539274559019429888\/__JrKsJ8_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2714080670\/1440625619","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":26,"entities":{"hashtags":[{"text":"TheKingIsBack","indices":[6,20]}],"urls":[],"user_mentions":[{"screen_name":"BAP_Bangyongguk","name":"Bang yongguk","id":111332557,"id_str":"111332557","indices":[23,39]},{"screen_name":"BAP_Himchan","name":"Himchan","id":361062981,"id_str":"361062981","indices":[40,52]},{"screen_name":"BAP_Daehyun","name":"B.A.P\ub300\ud604","id":464454076,"id_str":"464454076","indices":[53,65]},{"screen_name":"BAP_Youngjae","name":"BAP_Youngjae","id":465219474,"id_str":"465219474","indices":[66,79]},{"screen_name":"BAP_Jongup","name":"BAP_Jongup","id":466127190,"id_str":"466127190","indices":[80,91]},{"screen_name":"ZELO96","name":"ZELO","id":420164165,"id_str":"420164165","indices":[92,99]}],"symbols":[],"media":[{"id":663709355934658560,"id_str":"663709355934658560","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","url":"https:\/\/t.co\/NiVpTDUhPZ","display_url":"pic.twitter.com\/NiVpTDUhPZ","expanded_url":"http:\/\/twitter.com\/odottart\/status\/663709458258771968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709355934658560,"id_str":"663709355934658560","indices":[100,123],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","url":"https:\/\/t.co\/NiVpTDUhPZ","display_url":"pic.twitter.com\/NiVpTDUhPZ","expanded_url":"http:\/\/twitter.com\/odottart\/status\/663709458258771968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TheKingIsBack","indices":[20,34]}],"urls":[],"user_mentions":[{"screen_name":"odottart","name":"ODOTTER [REST]","id":2714080670,"id_str":"2714080670","indices":[3,12]},{"screen_name":"BAP_Bangyongguk","name":"Bang yongguk","id":111332557,"id_str":"111332557","indices":[37,53]},{"screen_name":"BAP_Himchan","name":"Himchan","id":361062981,"id_str":"361062981","indices":[54,66]},{"screen_name":"BAP_Daehyun","name":"B.A.P\ub300\ud604","id":464454076,"id_str":"464454076","indices":[67,79]},{"screen_name":"BAP_Youngjae","name":"BAP_Youngjae","id":465219474,"id_str":"465219474","indices":[80,93]},{"screen_name":"BAP_Jongup","name":"BAP_Jongup","id":466127190,"id_str":"466127190","indices":[94,105]},{"screen_name":"ZELO96","name":"ZELO","id":420164165,"id_str":"420164165","indices":[106,113]}],"symbols":[],"media":[{"id":663709355934658560,"id_str":"663709355934658560","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","url":"https:\/\/t.co\/NiVpTDUhPZ","display_url":"pic.twitter.com\/NiVpTDUhPZ","expanded_url":"http:\/\/twitter.com\/odottart\/status\/663709458258771968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663709458258771968,"source_status_id_str":"663709458258771968","source_user_id":2714080670,"source_user_id_str":"2714080670"}]},"extended_entities":{"media":[{"id":663709355934658560,"id_str":"663709355934658560","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4JIqWsAAyEKM.png","url":"https:\/\/t.co\/NiVpTDUhPZ","display_url":"pic.twitter.com\/NiVpTDUhPZ","expanded_url":"http:\/\/twitter.com\/odottart\/status\/663709458258771968\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":337,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":575,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663709458258771968,"source_status_id_str":"663709458258771968","source_user_id":2714080670,"source_user_id_str":"2714080670"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080128658"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282420908032,"id_str":"663728282420908032","text":"\u8ab0\u304b\u304d\u3066\u30fcw \/ \u660e\u65e5\u3082\u4ed5\u4e8b\u3060\u3088\u306a\u3041 https:\/\/t.co\/E3wz9YUzGl","source":"\u003ca href=\"http:\/\/twitcasting.tv\/\" rel=\"nofollow\"\u003eTwitCasting\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3149602866,"id_str":"3149602866","name":"NoA@nana\u6c11","screen_name":"noa_25nico","location":"\u7fa4\u99ac","url":"http:\/\/hibari.nana-music.com\/w\/profile\/889600\/","description":"\u3010NoA\u65b0\u57a2\u3011@NOA_5145\u304b\u3089\u3053\u306e\u57a2\u306b\u79fb\u52d5\u3067\u3059\uff01\u3053\u3053\u3092\u30e1\u30a4\u30f3\u306b\u4f7f\u3046\u306e\u3067\u6b4c\u3044\u624b\u5fd7\u671b\u306e\u7686\u69d8\uff01\u3088\u304b\u3063\u305f\u3089\u3053\u3053\u3067\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\uff01\u6fc3\u3044\u7d61\u307f\u3092\u5e0c\u671b|\u00b4-`)\uff81\uff97\uff6f","protected":false,"verified":false,"followers_count":56,"friends_count":45,"listed_count":0,"favourites_count":38,"statuses_count":242,"created_at":"Sat Apr 11 11:26:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656472345343688704\/CSixk_yu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656472345343688704\/CSixk_yu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3149602866\/1445226283","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/E3wz9YUzGl","expanded_url":"http:\/\/cas.st\/cd3c61a","display_url":"cas.st\/cd3c61a","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128661"} +{"delete":{"status":{"id":394014851342663680,"id_str":"394014851342663680","user_id":1223789323,"user_id_str":"1223789323"},"timestamp_ms":"1447080128826"}} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282412519424,"id_str":"663728282412519424","text":"\u30d1\u30e9\u30c9\u30c3\u30af\u30b95\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2914496408,"id_str":"2914496408","name":"\u308a\u306eY( ' \u03c9' )Y\u304b\u306b","screen_name":"rino0i826","location":"\u30d1\u30e9Five\u2728Special Member","url":null,"description":"\u6771\u56fd\u5206\u4e2d\u307e\u3064\u3063\u307d\u7d44\u261eSUBARU1-2 \u5439\u594f\u697d\u90e831th* Clarinet\uff06ColorGuard*\u263c*\u2015\u2015SPYAIR\/phatmans\/RAD\/ Drum\u2661Bass\/cat\u2606\u30df\/Disney*\u30c1\u30c7\u2015\u2015*\u263c*\u30a2\u30a4\u30b3\u30f3\u306f\u7a81\u3063\u8fbc\u307e\u306a\u3044\u3067\u2661","protected":false,"verified":false,"followers_count":149,"friends_count":166,"listed_count":0,"favourites_count":1911,"statuses_count":4179,"created_at":"Sun Nov 30 07:46:16 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/538964911724838913\/rQ03JrKH.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/538964911724838913\/rQ03JrKH.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721268647063552\/WrlDvF_i_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721268647063552\/WrlDvF_i_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914496408\/1445525531","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128659"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282442055680,"id_str":"663728282442055680","text":"RT @BBCAfrica: What do dacoit, yow and katti mean? 3 words that helped Nigerian Wellington Jighere become Scrabble world champion https:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":871560926,"id_str":"871560926","name":"rachel king","screen_name":"drRachelKing","location":"#mbeya,","url":"http:\/\/kingsinafrica.jimdo.com\/","description":"#globalhealth Dr in Tanzania. #GP #Artist #faith, #inequalities #dev #MaternalHealth, #diabetes #NCDs non-communicable diseases, #publichealth #healthbeliefs","protected":false,"verified":false,"followers_count":223,"friends_count":328,"listed_count":28,"favourites_count":516,"statuses_count":3444,"created_at":"Wed Oct 10 10:57:56 +0000 2012","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0280E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/502828866151276544\/J7Q28sVM.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/502828866151276544\/J7Q28sVM.jpeg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317532301365252\/Xv9Fw4ZQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317532301365252\/Xv9Fw4ZQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/871560926\/1381524790","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:53:57 +0000 2015","id":663716157992628224,"id_str":"663716157992628224","text":"What do dacoit, yow and katti mean? 3 words that helped Nigerian Wellington Jighere become Scrabble world champion https:\/\/t.co\/pgecJuLJb1","source":"\u003ca href=\"http:\/\/www.socialflow.com\" rel=\"nofollow\"\u003eSocialFlow\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36670025,"id_str":"36670025","name":"BBC Africa","screen_name":"BBCAfrica","location":null,"url":"http:\/\/www.bbcafrica.com","description":"African news from the BBC. Find us on Facebook: http:\/\/www.facebook.com\/bbcafrica Google+: http:\/\/goo.gl\/N8JsS and SoundCloud https:\/\/soundcloud.com\/bbcafrica","protected":false,"verified":true,"followers_count":983530,"friends_count":1003,"listed_count":5603,"favourites_count":36,"statuses_count":49134,"created_at":"Thu Apr 30 14:10:28 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/11046099\/6101_wsafrica_twitter_bg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/11046099\/6101_wsafrica_twitter_bg.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6D593","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000633179591\/73e6da2b0a49fd639fde199b42f44bb0_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000633179591\/73e6da2b0a49fd639fde199b42f44bb0_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36670025\/1444735276","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":53,"favorite_count":25,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pgecJuLJb1","expanded_url":"http:\/\/bbc.in\/1Nmq7Xo","display_url":"bbc.in\/1Nmq7Xo","indices":[115,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pgecJuLJb1","expanded_url":"http:\/\/bbc.in\/1Nmq7Xo","display_url":"bbc.in\/1Nmq7Xo","indices":[139,140]}],"user_mentions":[{"screen_name":"BBCAfrica","name":"BBC Africa","id":36670025,"id_str":"36670025","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128666"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282416746496,"id_str":"663728282416746496","text":"RT\n\u3010\u5fc3\u7406\u30c6\u30b9\u30c8\u3011\u76f4\u611f\u30673\u3064\u306e\u8272\u3092\u9078\u3093\u3067\u4e0b\u3055\u3044\u300242\n\u21d2https:\/\/t.co\/S9ETnAPQgm\n\n\u3042\u306a\u305f\u306e\u6027\u683c\u304c\u5206\u304b\u308a\u307e\u3059\u3002\n#\u5fc3\u7406\u30c6\u30b9\u30c8 https:\/\/t.co\/9z2PeTJVYO","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003e Twitter Mobile\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454350036,"id_str":"2454350036","name":"\u3059\u3050\u308a@iPhone\u306b\u5909\u3048\u305f\u30c3\uff01","screen_name":"7month0916","location":"\u8a95\u751f\u65e5\u304c9\u670816\u65e5\u3060\u3063\u305f\u308a\u3057\u307e\u3059","url":null,"description":"\u30a2\u30cb\u30e1\u30fb\u307e\u3093\u304c\u5927\u597d\u304d\u3067\u3059\uff01 \u7d75\u3068\u304b\u3044\u308d\u3044\u308d\u8f09\u305b\u307e\u3059\u304c\u3001\u3060\u3044\u305f\u3044\u30a2\u30ca\u30ed\u30b0\u3067\u3001\u8272\u5857\u308a\u82e6\u624b\u306a\u306e\u3067\u30e2\u30ce\u30af\u30ed\u304c\u591a\u3044\u304b\u3082\u3067\u3059\u3002\u521d\u3081\u3066\u306eiPhon\u306b\u5909\u3048\u305f\u306e\u3067\u30a2\u30bf\u30d5\u30bf\u3057\u3066\u307e\u3059w","protected":false,"verified":false,"followers_count":48,"friends_count":111,"listed_count":5,"favourites_count":1489,"statuses_count":864,"created_at":"Sun Apr 20 06:41:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661927252016234498\/VF4JBbaz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661927252016234498\/VF4JBbaz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2454350036\/1441548209","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5fc3\u7406\u30c6\u30b9\u30c8","indices":[68,74]}],"urls":[{"url":"https:\/\/t.co\/S9ETnAPQgm","expanded_url":"http:\/\/bit.ly\/1HpYY3Q","display_url":"bit.ly\/1HpYY3Q","indices":[29,52]}],"user_mentions":[],"symbols":[],"media":[{"id":663728282207055872,"id_str":"663728282207055872","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWyhU8AA-9NQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWyhU8AA-9NQ.jpg","url":"https:\/\/t.co\/9z2PeTJVYO","display_url":"pic.twitter.com\/9z2PeTJVYO","expanded_url":"http:\/\/twitter.com\/7month0916\/status\/663728282416746496\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"},"large":{"w":678,"h":406,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728282207055872,"id_str":"663728282207055872","indices":[75,98],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWyhU8AA-9NQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWyhU8AA-9NQ.jpg","url":"https:\/\/t.co\/9z2PeTJVYO","display_url":"pic.twitter.com\/9z2PeTJVYO","expanded_url":"http:\/\/twitter.com\/7month0916\/status\/663728282416746496\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":359,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":203,"resize":"fit"},"large":{"w":678,"h":406,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128660"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282429321216,"id_str":"663728282429321216","text":"@ogatarou \u3042\u3042\uff01\u304a\u3084\u3059\u307f\uff01\u3044\u3044\u5922\u304c\u898b\u3089\u308c\u308b\u3068\u3044\u3044\u306a\uff01","source":"\u003ca href=\"http:\/\/makebot.sh\/\" rel=\"nofollow\"\u003e\u85e4\u5ca1\u306e\u819d\u306e\u4e0a\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727951272243200,"in_reply_to_status_id_str":"663727951272243200","in_reply_to_user_id":95996830,"in_reply_to_user_id_str":"95996830","in_reply_to_screen_name":"ogatarou","user":{"id":1162003334,"id_str":"1162003334","name":"\u5357 \u5343\u79cb","screen_name":"minami_tiakibot","location":"\u2606\u5357\u3055\u3093\u3061\u306e\u304a\u5bb6\u2606","url":null,"description":"\u3053\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u306f\u5357\u5343\u79cb\u306e\u5e73\u51e1\u306a\u65e5\u5e38\u3092\u6de1\u3005\u3068\u545f\u304f\u30a2\u30ab\u3067\u3059\u3002\u904e\u5ea6\u306a\u671f\u5f85\u306f\u3057\u306a\u3044\u3067\u304f\u3060\u3055\u3044\u3002\u300c\u306a\u308a\u304d\u308a\u300d\u517c \u975e\u516c\u5f0f\u306e\u300cbot\u300d\u3060 bot\u304c\u3046\u308b\u3055\u304b\u3063\u305f\u3089\u3001\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30df\u30e5\u30fc\u30c8\u3092\u30aa\u30b9\u30b9\u30e1\u3059\u308b\u305e\uff1f \u95a2\u897f\u307f\u306a\u307f\u3051\u30aa\u30d5\u4f1a http:\/\/twipla.jp\/events\/161542","protected":false,"verified":false,"followers_count":2924,"friends_count":2534,"listed_count":38,"favourites_count":521,"statuses_count":514874,"created_at":"Sat Feb 09 04:56:59 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/791973844\/c6fa6f65db9847858b59de27b9552599.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/791973844\/c6fa6f65db9847858b59de27b9552599.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654406053690388480\/-AD0I1r0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654406053690388480\/-AD0I1r0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1162003334\/1392826713","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ogatarou","name":"\u304a\u304c\u305f\u308d\u3046\u3002 @\u304a\u304c\u305f\u308d\u3075\u3041\u2606","id":95996830,"id_str":"95996830","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128663"} +{"delete":{"status":{"id":663727363872694272,"id_str":"663727363872694272","user_id":2917384323,"user_id_str":"2917384323"},"timestamp_ms":"1447080129021"}} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282420928512,"id_str":"663728282420928512","text":"@dhihdVji \n\u30d5\u30a9\u30ed\u30d0\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\n\u3053\u3061\u3089\u3053\u305d\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\ud83d\ude01\u2728","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727884209623040,"in_reply_to_status_id_str":"663727884209623040","in_reply_to_user_id":4145594953,"in_reply_to_user_id_str":"4145594953","in_reply_to_screen_name":"dhihdVji","user":{"id":3292753182,"id_str":"3292753182","name":"\u3055\u3089","screen_name":"3akyt1125","location":null,"url":null,"description":"\u90a6ROCK\u304c\u597d\u304d\u30fb\u4e18\u4e2d\uff13\u5e74 \n\u30ef\u30f3\u30aa\u30af\/WANIMA\/TOTALFAT\/\u30d5\u30a9\u30fc\u30ea\u30df\u306a\u3069\u306a\u3069\u30a4\u30ed\u30a4\u30ed\u8074\u304d\u307e\u3059","protected":false,"verified":false,"followers_count":40,"friends_count":64,"listed_count":0,"favourites_count":200,"statuses_count":105,"created_at":"Sat Jul 25 14:04:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655759481406550016\/Wr4sEfDm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655759481406550016\/Wr4sEfDm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3292753182\/1446467695","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dhihdVji","name":"\u306f\u3061\u306e\u3059\u3051","id":4145594953,"id_str":"4145594953","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080128661"} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282404302848,"id_str":"663728282404302848","text":"https:\/\/t.co\/Pn2PC0Aioj - \u2018Doritos Rainbows\u2019: Frito-Lay Shows Support For The LGBT Community With New Colorful Chips https:\/\/t.co\/HmnOnSW1tL","source":"\u003ca href=\"http:\/\/meetedgar.com\" rel=\"nofollow\"\u003eMeet Edgar\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1711457802,"id_str":"1711457802","name":"Sell More Talk Less","screen_name":"SellMoreTalkLes","location":null,"url":"http:\/\/www.mstsellingsystem.com\/","description":"Selling More by Talking Less, the podcast for people in sales.","protected":false,"verified":false,"followers_count":43074,"friends_count":40904,"listed_count":574,"favourites_count":8,"statuses_count":43550,"created_at":"Fri Aug 30 01:43:27 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/572910166320746496\/YxJZDhYw_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/572910166320746496\/YxJZDhYw_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1711457802\/1425427351","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Pn2PC0Aioj","expanded_url":"http:\/\/goo.gl\/LYPON2","display_url":"goo.gl\/LYPON2","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663728282161061889,"id_str":"663728282161061889","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWyWXIAERM7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWyWXIAERM7m.png","url":"https:\/\/t.co\/HmnOnSW1tL","display_url":"pic.twitter.com\/HmnOnSW1tL","expanded_url":"http:\/\/twitter.com\/SellMoreTalkLes\/status\/663728282404302848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728282161061889,"id_str":"663728282161061889","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWyWXIAERM7m.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWyWXIAERM7m.png","url":"https:\/\/t.co\/HmnOnSW1tL","display_url":"pic.twitter.com\/HmnOnSW1tL","expanded_url":"http:\/\/twitter.com\/SellMoreTalkLes\/status\/663728282404302848\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"large":{"w":1000,"h":500,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080128657"} +{"delete":{"status":{"id":526036479542194177,"id_str":"526036479542194177","user_id":1328342948,"user_id_str":"1328342948"},"timestamp_ms":"1447080129173"}} +{"delete":{"status":{"id":663725879067979776,"id_str":"663725879067979776","user_id":2863858514,"user_id_str":"2863858514"},"timestamp_ms":"1447080129185"}} +{"delete":{"status":{"id":524171889090912258,"id_str":"524171889090912258","user_id":1328342948,"user_id_str":"1328342948"},"timestamp_ms":"1447080129212"}} +{"created_at":"Mon Nov 09 14:42:08 +0000 2015","id":663728282404278272,"id_str":"663728282404278272","text":"https:\/\/t.co\/Usc0R8g4m3 https:\/\/t.co\/2da6e4uqEF","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117398453,"id_str":"117398453","name":"IG: Primology_","screen_name":"Primology","location":"WHERE GREATNESS RESIDES","url":"http:\/\/prime-o.tumblr.com\/","description":"God's Best...","protected":false,"verified":false,"followers_count":381,"friends_count":293,"listed_count":1,"favourites_count":101,"statuses_count":18547,"created_at":"Thu Feb 25 12:50:40 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3D1237","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/214248634\/me.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/214248634\/me.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659804269412032514\/wiKwnBit_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659804269412032514\/wiKwnBit_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117398453\/1446144569","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Usc0R8g4m3","expanded_url":"http:\/\/bible.com\/1\/pro.11.25.KJV","display_url":"bible.com\/1\/pro.11.25.KJV","indices":[0,23]}],"user_mentions":[],"symbols":[],"media":[{"id":663728187793240064,"id_str":"663728187793240064","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRSzUcAAzzfx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRSzUcAAzzfx.jpg","url":"https:\/\/t.co\/2da6e4uqEF","display_url":"pic.twitter.com\/2da6e4uqEF","expanded_url":"http:\/\/twitter.com\/Primology\/status\/663728282404278272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728187793240064,"id_str":"663728187793240064","indices":[24,47],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJRSzUcAAzzfx.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJRSzUcAAzzfx.jpg","url":"https:\/\/t.co\/2da6e4uqEF","display_url":"pic.twitter.com\/2da6e4uqEF","expanded_url":"http:\/\/twitter.com\/Primology\/status\/663728282404278272\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080128657"} +{"delete":{"status":{"id":330616235115044865,"id_str":"330616235115044865","user_id":597990376,"user_id_str":"597990376"},"timestamp_ms":"1447080129426"}} +{"delete":{"status":{"id":518637198808080385,"id_str":"518637198808080385","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080129519"}} +{"delete":{"status":{"id":652797938779840512,"id_str":"652797938779840512","user_id":2816562180,"user_id_str":"2816562180"},"timestamp_ms":"1447080129592"}} +{"delete":{"status":{"id":662233919010439168,"id_str":"662233919010439168","user_id":4132630513,"user_id_str":"4132630513"},"timestamp_ms":"1447080129578"}} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286598569984,"id_str":"663728286598569984","text":"RT @siyovushdustov6: I can erase you from my mind, but my heart is a different story.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4023392354,"id_str":"4023392354","name":"Rosalyn Vannatta","screen_name":"RosalynVannatta","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":0,"listed_count":0,"favourites_count":124,"statuses_count":195,"created_at":"Mon Oct 26 10:27:49 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659744394522681345\/RIntnq-8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659744394522681345\/RIntnq-8_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 10:29:53 +0000 2015","id":662940023726211072,"id_str":"662940023726211072","text":"I can erase you from my mind, but my heart is a different story.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M5)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4104476655,"id_str":"4104476655","name":"Siyovush Dustov","screen_name":"siyovushdustov6","location":null,"url":null,"description":"Follow for all new Siyovush Dustov infos!","protected":false,"verified":false,"followers_count":104791,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":101,"created_at":"Tue Nov 03 12:33:35 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"112222","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661522132057260032\/IROwfrgO_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661522132057260032\/IROwfrgO_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":589,"favorite_count":519,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"siyovushdustov6","name":"Siyovush Dustov","id":4104476655,"id_str":"4104476655","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129657"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286607015936,"id_str":"663728286607015936","text":"RT @inma_ripoll: Que se mueran de envidia \ud83d\udc83\ud83d\udc83\ud83d\ude07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":466688346,"id_str":"466688346","name":"louis","screen_name":"everytimeis_lou","location":null,"url":null,"description":"All the love - H.","protected":false,"verified":false,"followers_count":408,"friends_count":310,"listed_count":1,"favourites_count":1180,"statuses_count":8594,"created_at":"Tue Jan 17 17:46:09 +0000 2012","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657589792536948736\/s0fQvYo__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657589792536948736\/s0fQvYo__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/466688346\/1438352946","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 22:20:32 +0000 2015","id":663481255804162048,"id_str":"663481255804162048","text":"Que se mueran de envidia \ud83d\udc83\ud83d\udc83\ud83d\ude07","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":749627292,"id_str":"749627292","name":"Inmaa Ripoll\u2665","screen_name":"inma_ripoll","location":"Loja,Granada","url":null,"description":"17-08-1999~ Nada es imposible si crees que puedes hacerlo~ \u2764051214\u2661","protected":false,"verified":false,"followers_count":508,"friends_count":502,"listed_count":1,"favourites_count":73,"statuses_count":2651,"created_at":"Fri Aug 10 16:20:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647079809378570244\/O2c0mEGc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647079809378570244\/O2c0mEGc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/749627292\/1443110802","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"inma_ripoll","name":"Inmaa Ripoll\u2665","id":749627292,"id_str":"749627292","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286607015937,"id_str":"663728286607015937","text":"ps: n\u00e3o era pra eu estar pegando o \u00f4nibus agora, n\u00e3o era nem pra eu estar aqui","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":57480066,"id_str":"57480066","name":"Thalita","screen_name":"thadomingues","location":"S\u00e3o Paulo, Brasil","url":"http:\/\/Instagram.com\/thadominguees","description":"queria: t\u00e1 fazendo algo \u00fatil na vida t\u00f4: falando merda nesse saite","protected":false,"verified":false,"followers_count":438,"friends_count":91,"listed_count":1,"favourites_count":351,"statuses_count":68362,"created_at":"Thu Jul 16 23:23:32 +0000 2009","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000018312869\/f2cfcb0812d906b810874feedb5255a8.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000018312869\/f2cfcb0812d906b810874feedb5255a8.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"ECF0DF","profile_text_color":"DE2A57","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655950023155404800\/OFpnWmmb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655950023155404800\/OFpnWmmb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/57480066\/1436412475","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"68e019afec7d0ba5","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/68e019afec7d0ba5.json","place_type":"city","name":"Sao Paulo","full_name":"Sao Paulo, Brazil","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-46.826039,-24.008814],[-46.826039,-23.356792],[-46.365052,-23.356792],[-46.365052,-24.008814]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636314625,"id_str":"663728286636314625","text":"Subito alla prima ricreazione l'ho incrociato e sono andata da lui, si ferma e io gli faccio 'ehi, hai parlato con Niccol\u00f3?' E lui -","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725832872022017,"in_reply_to_status_id_str":"663725832872022017","in_reply_to_user_id":2914140671,"in_reply_to_user_id_str":"2914140671","in_reply_to_screen_name":"shawnvess","user":{"id":2914140671,"id_str":"2914140671","name":"\/\/","screen_name":"shawnvess","location":"looking for Gabba\u2763","url":null,"description":"Guardami e tienimi la mano, giuralo che andremo lontano. @shawnMendes @nonlasciarmiii","protected":false,"verified":false,"followers_count":11979,"friends_count":10117,"listed_count":1,"favourites_count":6219,"statuses_count":20523,"created_at":"Wed Dec 10 18:17:41 +0000 2014","utc_offset":3600,"time_zone":"Ljubljana","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/549317842340814848\/WQvZWlyz.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/549317842340814848\/WQvZWlyz.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660436380489785344\/IGmDy9rh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660436380489785344\/IGmDy9rh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914140671\/1446295359","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286598434816,"id_str":"663728286598434816","text":"RT @knockknock0408: [HQ] 151109 BAEKHYUN KAI cr.SEE THE LIGHT\nhttps:\/\/t.co\/f3Q9IYD8PP https:\/\/t.co\/feh7BQ1wK2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536734905,"id_str":"1536734905","name":"\u3053\u3093\u307a\u3044\u3068\u3046\u5f8c\u907a\u75c7","screen_name":"conpeito0903","location":"'luXion 11 \/ 7 . 8","url":null,"description":"\u25bdEXO \ubcc0\ubc31\ud604 \u25b2SMFamily \u25bd\uc815\uc218\uc815 \u25b2\uc22e\uc774 \u25bd\ub300\ud55c\u30fb\ubbfc\uad6d\u30fb\ub9cc\uc138 \u25b298line","protected":false,"verified":false,"followers_count":118,"friends_count":331,"listed_count":5,"favourites_count":14825,"statuses_count":9642,"created_at":"Fri Jun 21 15:11:46 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650702794958045185\/C2HOdSDD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650702794958045185\/C2HOdSDD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536734905\/1427985589","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:55:46 +0000 2015","id":663701513785610240,"id_str":"663701513785610240","text":"[HQ] 151109 BAEKHYUN KAI cr.SEE THE LIGHT\nhttps:\/\/t.co\/f3Q9IYD8PP https:\/\/t.co\/feh7BQ1wK2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627921021,"id_str":"1627921021","name":"'KNOCK KNOCK!'","screen_name":"knockknock0408","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":211614,"friends_count":0,"listed_count":2300,"favourites_count":159,"statuses_count":116934,"created_at":"Sun Jul 28 13:30:31 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/466610169078493184\/RVTiyBJh.png","profile_background_tile":true,"profile_link_color":"0A376E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/582087981395128320\/3gN7ciOp_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":460,"favorite_count":682,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f3Q9IYD8PP","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/a9ba026fgw1exv0ik8zyaj20rs15oqdd.jpg","display_url":"ww2.sinaimg.cn\/large\/a9ba026f\u2026","indices":[42,65]}],"user_mentions":[],"symbols":[],"media":[{"id":663701506500112384,"id_str":"663701506500112384","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","url":"https:\/\/t.co\/feh7BQ1wK2","display_url":"pic.twitter.com\/feh7BQ1wK2","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663701513785610240\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663701506500112384,"id_str":"663701506500112384","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","url":"https:\/\/t.co\/feh7BQ1wK2","display_url":"pic.twitter.com\/feh7BQ1wK2","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663701513785610240\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/f3Q9IYD8PP","expanded_url":"http:\/\/ww2.sinaimg.cn\/large\/a9ba026fgw1exv0ik8zyaj20rs15oqdd.jpg","display_url":"ww2.sinaimg.cn\/large\/a9ba026f\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"knockknock0408","name":"'KNOCK KNOCK!'","id":1627921021,"id_str":"1627921021","indices":[3,18]}],"symbols":[],"media":[{"id":663701506500112384,"id_str":"663701506500112384","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","url":"https:\/\/t.co\/feh7BQ1wK2","display_url":"pic.twitter.com\/feh7BQ1wK2","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663701513785610240\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663701513785610240,"source_status_id_str":"663701513785610240","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"extended_entities":{"media":[{"id":663701506500112384,"id_str":"663701506500112384","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXxAPPUsAAEKbF.jpg","url":"https:\/\/t.co\/feh7BQ1wK2","display_url":"pic.twitter.com\/feh7BQ1wK2","expanded_url":"http:\/\/twitter.com\/knockknock0408\/status\/663701513785610240\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":1000,"h":1500,"resize":"fit"}},"source_status_id":663701513785610240,"source_status_id_str":"663701513785610240","source_user_id":1627921021,"source_user_id_str":"1627921021"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080129657"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636376064,"id_str":"663728286636376064","text":"RT @BeckafordM: SNL has only had 2 latino castmembers over 40 yrs, 0 latinas. #BoycottSNL","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3501152717,"id_str":"3501152717","name":"Kobi Amissah","screen_name":"CommKobi","location":null,"url":null,"description":"SJU '16 50% Marketing Major 50% Communications Minor. 100% not ready to graduate","protected":false,"verified":false,"followers_count":61,"friends_count":110,"listed_count":0,"favourites_count":13,"statuses_count":63,"created_at":"Mon Aug 31 11:13:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638315269362974720\/R0xNmmb0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638315269362974720\/R0xNmmb0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3501152717\/1441021246","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:15:59 +0000 2015","id":663163020886073344,"id_str":"663163020886073344","text":"SNL has only had 2 latino castmembers over 40 yrs, 0 latinas. #BoycottSNL","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":335133350,"id_str":"335133350","name":"queen b(eef gordita)","screen_name":"BeckafordM","location":"dancing with the daffodils, nc","url":"https:\/\/facebook.com\/swineband","description":"the hot older sister; grossly obsessed with led zeppelin; rhythm guitar\/lead vocals in @swineband; @UNCWFSA #UNCW18","protected":false,"verified":false,"followers_count":427,"friends_count":366,"listed_count":8,"favourites_count":14400,"statuses_count":24892,"created_at":"Thu Jul 14 06:07:46 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/786267798\/8a5c6860002ce84149b8dff6cdbe6eb6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/786267798\/8a5c6860002ce84149b8dff6cdbe6eb6.jpeg","profile_background_tile":true,"profile_link_color":"EB21AB","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652977626550792192\/GNNsr8gQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652977626550792192\/GNNsr8gQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/335133350\/1440079333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":35,"entities":{"hashtags":[{"text":"BoycottSNL","indices":[62,73]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BoycottSNL","indices":[78,89]}],"urls":[],"user_mentions":[{"screen_name":"BeckafordM","name":"queen b(eef gordita)","id":335133350,"id_str":"335133350","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619541504,"id_str":"663728286619541504","text":"#XboxOne #2ktvwow https:\/\/t.co\/N8T16imkZd","source":"\u003ca href=\"http:\/\/www.xbox.com\/en-US\/\" rel=\"nofollow\"\u003eXbox One Social\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3424891864,"id_str":"3424891864","name":"Matthew Fargo","screen_name":"itzyellaa","location":null,"url":null,"description":"follow me on http:\/\/twitch.tv\/itzyella that my link follow 4 follow add me on snap itzyella","protected":false,"verified":false,"followers_count":74,"friends_count":488,"listed_count":0,"favourites_count":2,"statuses_count":32,"created_at":"Sat Aug 15 22:07:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632675424485679105\/C9_wnXrh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632675424485679105\/C9_wnXrh_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"XboxOne","indices":[0,8]},{"text":"2ktvwow","indices":[9,17]}],"urls":[{"url":"https:\/\/t.co\/N8T16imkZd","expanded_url":"https:\/\/account.xbox.com\/gameclip\/97951d06-a89c-4de4-aa49-af077124930d?gamertag=Look%20iTz%20FreDD&scid=7fb10100-002b-4e18-b7ad-70e811081528","display_url":"account.xbox.com\/gameclip\/97951\u2026","indices":[18,41]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286602797056,"id_str":"663728286602797056","text":"RT @dd_h33: : \u062e\u064a\u0631 \u0644\u0643 \u0648 \u0623\u0628\u0642\u0649 \u061b \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u060c \u0648 \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647 \u0648\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u060c \u0648 \u0627\u0644\u0644\u0647 \u0623\u0643\u0628\u0631 \u060c \u0648\u0644\u0627 \u062d\u0648\u0644 \u0648\u0644\u0627 \u0642\u0648\u0629 \u0625\u0644\u0627 \u0628\u0627\u0644\u0644\u0647\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307190352,"id_str":"3307190352","name":"\u0639\u0628\u062f\u0627\u0644\u0646\u0627\u0635\u0631 \u0627\u0644\u0628\u0646\u0627\u0621","screen_name":"gmal00143","location":null,"url":null,"description":"\u062c\u0645\u064a\u0639 \u0645\u0627 \u0627\u0643\u062a\u0628\u0647 \u0641\u064a \u0645\u0641\u0636\u0644\u062a\u064a \n\u0634\u0643\u0631\u0627 \u0644\u0643\u0645 \u062c\u0645\u064a\u0639 \u0627\u062e\u0648\u0627\u0646\u064a \u0648\u062e\u0648\u0627\u062a\u064a \u0627\u062d\u0645\u0644 \u0627\u0644\u064a\u0643\u0645 \u0633\ufefb\u0645\u064a \u0627\u064a\u0646\u0645\u0627 \u0643\u0646\u062a\u0645\n\n\u2665\u2665\u2665\u2665\u2665\u2665\u0648\u0633\u064a\u0628\u0642\u0649 \u0646\u0628\u0636 \u0642\u0644\u0628\u064a \u064a\u0645\u0646\u064a\u0627","protected":false,"verified":false,"followers_count":2798,"friends_count":4986,"listed_count":0,"favourites_count":1341,"statuses_count":5592,"created_at":"Wed Aug 05 21:42:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663719754411175936\/ogOglwJ2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663719754411175936\/ogOglwJ2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307190352\/1445676923","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:59:11 +0000 2015","id":663717470998503424,"id_str":"663717470998503424","text":": \u062e\u064a\u0631 \u0644\u0643 \u0648 \u0623\u0628\u0642\u0649 \u061b \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u060c \u0648 \u0627\u0644\u062d\u0645\u062f \u0644\u0644\u0647 \u0648\u0644\u0627 \u0625\u0644\u0647 \u0625\u0644\u0627 \u0627\u0644\u0644\u0647 \u060c \u0648 \u0627\u0644\u0644\u0647 \u0623\u0643\u0628\u0631 \u060c \u0648\u0644\u0627 \u062d\u0648\u0644 \u0648\u0644\u0627 \u0642\u0648\u0629 \u0625\u0644\u0627 \u0628\u0627\u0644\u0644\u0647\ud83d\udc97","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1539304975,"id_str":"1539304975","name":"\u0641\u0647\u062f","screen_name":"dd_h33","location":null,"url":null,"description":"\u0627\u0644\u0644\u0647\u0645 \u0635\u0644 \u0648\u0633\u0644\u0645 \u0639\u0644\u0649 \u0646\u0628\u064a\u0646\u0627 \u0645\u062d\u0645\u062f \n\u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0648\u0628\u062d\u0645\u062f\u0647 \u0633\u0628\u062d\u0627\u0646 \u0627\u0644\u0644\u0647 \u0627\u0644\u0639\u0638\u064a\u0645 \n\u062a\u0627\u0628\u0639\u0646\u064a \u0648\u0627\u062a\u0627\u0628\u0639\u0643","protected":false,"verified":false,"followers_count":73699,"friends_count":78925,"listed_count":9,"favourites_count":237,"statuses_count":54594,"created_at":"Sat Jun 22 18:45:10 +0000 2013","utc_offset":10800,"time_zone":"Minsk","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656545351411847168\/VO7UMnhC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656545351411847168\/VO7UMnhC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1539304975\/1445484506","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dd_h33","name":"\u0641\u0647\u062f","id":1539304975,"id_str":"1539304975","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080129658"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619430912,"id_str":"663728286619430912","text":"\u53e3\u300c\u3080\u3063\u300d\u3063\u3066\u3057\u3066\u308b\u306e\u3082\u5927\u597d\u304d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3289297310,"id_str":"3289297310","name":"\u3042\u3063\u304b@\u7b11\u3046\u7d04\u675f\u4ed9\u53f0","screen_name":"yu_t_akka","location":null,"url":null,"description":"\u9ad8\u6a4b\u512a\u57a2\u3002\u300c\u4eca\u3001\u305d\u3053\u306b\u3042\u308b\u660e\u6ec5\u3068\u7fa4\u751f\u300d\u4ed9\u53f0\u516c\u6f14\u53c2\u6226\u6e08\u307f\u3002\u571f\u66dc\u65e523:30\u301c25:00ANN\u5927\u5009\u304f\u3093\u3068\u9ad8\u6a4b\u304f\u3093\u5b9f\u6cc1\u3002\u4ef2\u826f\u304f\u3057\u3066\u304f\u308c\u308b\u512a\u53cb\u3055\u3093\u52df\u96c6\u4e2d\uff01\u963f\u90e8\u771f\u592e\u3082\u597d\u304d\u3067\u3059\uff01\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u4e00\u8a00\u9802\u3051\u308c\u3070\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306e\u3068\u304d\u306f\u30d5\u30a9\u30ed\u30d0\u6c17\u307e\u3050\u308c\u3067\u3059\u3002GLAY\u3082\u5927\u597d\u304d\uff01GLAY\u57a2\u306f@akka_thjt","protected":false,"verified":false,"followers_count":34,"friends_count":40,"listed_count":0,"favourites_count":322,"statuses_count":786,"created_at":"Fri Jul 24 02:51:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624920210126999553\/mzo6BTIJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624920210126999553\/mzo6BTIJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3289297310\/1437833557","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286627794944,"id_str":"663728286627794944","text":"(\ud588\uc5b4)","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1596273686,"id_str":"1596273686","name":"\ubc31\uc9c0\u2765","screen_name":"qortnrnr","location":null,"url":null,"description":"27*1001*1030","protected":false,"verified":false,"followers_count":261,"friends_count":293,"listed_count":5,"favourites_count":5891,"statuses_count":145277,"created_at":"Mon Jul 15 16:50:23 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605834001337581569\/ki3yuWph.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605834001337581569\/ki3yuWph.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660118468511928320\/VzNF023F_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660118468511928320\/VzNF023F_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1596273686\/1445704083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080129664"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286606954497,"id_str":"663728286606954497","text":"RT @SeriesBrazil: TOP NOVELAS FAVORITAS\n\n1- AVENIDA BRASIL https:\/\/t.co\/1HF0OIPtN3","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1137757994,"id_str":"1137757994","name":"stef","screen_name":"laursbian","location":"no core das crush","url":null,"description":"Garotas boas v\u00e3o pro c\u00e9u, mas garotas m\u00e1s te levam ao c\u00e9u","protected":false,"verified":false,"followers_count":1184,"friends_count":697,"listed_count":1,"favourites_count":38,"statuses_count":39692,"created_at":"Thu Jan 31 19:43:36 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/506130500742684673\/xUbnHaOu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/506130500742684673\/xUbnHaOu.png","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662267002665463809\/uSCVZmyP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662267002665463809\/uSCVZmyP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1137757994\/1446731906","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:00:33 +0000 2015","id":663491325074014209,"id_str":"663491325074014209","text":"TOP NOVELAS FAVORITAS\n\n1- AVENIDA BRASIL https:\/\/t.co\/1HF0OIPtN3","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":293807001,"id_str":"293807001","name":"S\u00e9ries Brasil","screen_name":"SeriesBrazil","location":"Saga do M\u00eas: A Esperan\u00e7a","url":null,"description":"A melhor fonte di\u00e1ria de humor, imagens, trechos e not\u00edcias das suas S\u00e9ries, Filmes, Sagas e Atores favoritos. Contato Profissional: contatoseriesbrazil@r7.com","protected":false,"verified":false,"followers_count":369414,"friends_count":30947,"listed_count":293,"favourites_count":709,"statuses_count":138024,"created_at":"Fri May 06 00:49:54 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/642721854155825152\/ctVFExag.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662657641194397696\/sgx4tfFc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/293807001\/1446824857","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1662,"favorite_count":1282,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663491323085852672,"id_str":"663491323085852672","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","url":"https:\/\/t.co\/1HF0OIPtN3","display_url":"pic.twitter.com\/1HF0OIPtN3","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663491325074014209\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":270,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663491323085852672,"id_str":"663491323085852672","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","url":"https:\/\/t.co\/1HF0OIPtN3","display_url":"pic.twitter.com\/1HF0OIPtN3","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663491325074014209\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":270,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUx19AWEAA7R_I.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SeriesBrazil","name":"S\u00e9ries Brasil","id":293807001,"id_str":"293807001","indices":[3,16]}],"symbols":[],"media":[{"id":663491323085852672,"id_str":"663491323085852672","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","url":"https:\/\/t.co\/1HF0OIPtN3","display_url":"pic.twitter.com\/1HF0OIPtN3","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663491325074014209\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":270,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663491325074014209,"source_status_id_str":"663491325074014209","source_user_id":293807001,"source_user_id_str":"293807001"}]},"extended_entities":{"media":[{"id":663491323085852672,"id_str":"663491323085852672","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTUx19AWEAA7R_I.png","url":"https:\/\/t.co\/1HF0OIPtN3","display_url":"pic.twitter.com\/1HF0OIPtN3","expanded_url":"http:\/\/twitter.com\/SeriesBrazil\/status\/663491325074014209\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":480,"h":270,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":270,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663491325074014209,"source_status_id_str":"663491325074014209","source_user_id":293807001,"source_user_id_str":"293807001","video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTUx19AWEAA7R_I.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636204032,"id_str":"663728286636204032","text":"\u304d\u3063\u3068\u5b66\u751f\u306b\u306f\u30cb\u30e5\u30fc\u30bf\u30a4\u30d7\u591a\u3044\u3093\u3084\u308d\u306a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1570001270,"id_str":"1570001270","name":"\u30bc\u30df\u708e\u4e0a\u82b8\u4eba","screen_name":"3godk","location":null,"url":null,"description":"the \u7121\u80fd","protected":false,"verified":false,"followers_count":35,"friends_count":70,"listed_count":0,"favourites_count":957,"statuses_count":980,"created_at":"Fri Jul 05 08:01:30 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/425899879282388992\/YuxH44MN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/425899879282388992\/YuxH44MN_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611079168,"id_str":"663728286611079168","text":"Ugh I'm so done","source":"\u003ca href=\"http:\/\/www.cloudhopper.com\/\" rel=\"nofollow\"\u003eCloudhopper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":90071164,"id_str":"90071164","name":"Mike Devereaux \u270b","screen_name":"MisterYoung007","location":"Fangtasia ","url":null,"description":"#TRACKNATION | Wife-- Lisa 'Left Eye Lopes #RIP #MrBond","protected":false,"verified":false,"followers_count":989,"friends_count":1389,"listed_count":10,"favourites_count":2185,"statuses_count":146682,"created_at":"Sun Nov 15 02:03:49 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/780911573\/a8b9dd5c677e64266924ad0c8cda1f6a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/780911573\/a8b9dd5c677e64266924ad0c8cda1f6a.jpeg","profile_background_tile":true,"profile_link_color":"DE1111","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638180558728728576\/EOt0elMm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638180558728728576\/EOt0elMm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/90071164\/1434615884","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611148804,"id_str":"663728286611148804","text":"Minha sobrancelha parece rena \ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":431087247,"id_str":"431087247","name":"Nic","screen_name":"Nicollypires_","location":"RJ","url":"http:\/\/Instagram.com\/nicollypiress","description":"Flamenguista \u2022 virginiana \u2651\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":502,"friends_count":198,"listed_count":0,"favourites_count":7179,"statuses_count":9457,"created_at":"Wed Dec 07 22:19:13 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/459904934117249025\/CZLDQN7T.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/459904934117249025\/CZLDQN7T.png","profile_background_tile":true,"profile_link_color":"733551","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663728240222146560\/nVWYSM2-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663728240222146560\/nVWYSM2-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/431087247\/1446904420","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286598496256,"id_str":"663728286598496256","text":"RT @pamyurin: Betty Boop\ud83d\udebf https:\/\/t.co\/iRoYICPg0C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2957217139,"id_str":"2957217139","name":"\u304b\u306a\u3054\u308a\u2606","screen_name":"kanagori24","location":"\u304a\u3058\u3055\u3093\u9054\u304c\u597d\u304d\u301c\u301c","url":"https:\/\/instagram.com\/exjne\/","description":"\u201c\u2764\ufe0e\u2764\u2764\u2764\u2764\ufe0e\u798f\u5ca1\u5973\u5b50\u77ed\u671f\u5927\u5b66 \u98df\u7269\u6804\u990a\u79d1 \u2764\ufe0e\u2764\ufe0e\ufe0e\u2764\u2764\u2764\u201c\ufe0e \u521d\u3081\u307e\u3057\u3066\u3002\uff11\uff19\u6b73\u5973\u306e\u5b50\u3002\uff11\uff15\uff15\u30bb\u30f3\u30c1\u3002\uff14\uff17\u30ad\u30ed\u3002\u4eca\u65e5\u306f\u826f\u304b\u3063\u305f\u3068\u601d\u3048\u308b\u6bce\u65e5\u3092\u904e\u3054\u305b\u307e\u3059\u3088\u3046\u306b","protected":false,"verified":false,"followers_count":404,"friends_count":409,"listed_count":0,"favourites_count":6751,"statuses_count":11395,"created_at":"Sat Jan 03 11:27:09 +0000 2015","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661819744178208768\/_gPjjNCE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661819744178208768\/_gPjjNCE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2957217139\/1431600233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 24 05:21:44 +0000 2015","id":657789044630290432,"id_str":"657789044630290432","text":"Betty Boop\ud83d\udebf https:\/\/t.co\/iRoYICPg0C","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":220332457,"id_str":"220332457","name":"\u304d\u3083\u308a\u30fc\u3071\u307f\u3085\u3071\u307f\u3085","screen_name":"pamyurin","location":"ASOBISYSTEM","url":null,"description":"\u30d4\u30f3\u30af\u306b\u307e\u305f\u53d6\u308a\u6191\u304b\u308c\u305f\u5973","protected":false,"verified":true,"followers_count":3732357,"friends_count":203,"listed_count":16429,"favourites_count":5,"statuses_count":13085,"created_at":"Sat Nov 27 13:30:22 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632963922895597568\/7Sv0S2sR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632963922895597568\/7Sv0S2sR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/220332457\/1398672949","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10555,"favorite_count":34839,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":657789025625878534,"id_str":"657789025625878534","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","url":"https:\/\/t.co\/iRoYICPg0C","display_url":"pic.twitter.com\/iRoYICPg0C","expanded_url":"http:\/\/twitter.com\/pamyurin\/status\/657789044630290432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":657789025625878534,"id_str":"657789025625878534","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","url":"https:\/\/t.co\/iRoYICPg0C","display_url":"pic.twitter.com\/iRoYICPg0C","expanded_url":"http:\/\/twitter.com\/pamyurin\/status\/657789044630290432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"pamyurin","name":"\u304d\u3083\u308a\u30fc\u3071\u307f\u3085\u3071\u307f\u3085","id":220332457,"id_str":"220332457","indices":[3,12]}],"symbols":[],"media":[{"id":657789025625878534,"id_str":"657789025625878534","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","url":"https:\/\/t.co\/iRoYICPg0C","display_url":"pic.twitter.com\/iRoYICPg0C","expanded_url":"http:\/\/twitter.com\/pamyurin\/status\/657789044630290432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":657789044630290432,"source_status_id_str":"657789044630290432","source_user_id":220332457,"source_user_id_str":"220332457"}]},"extended_entities":{"media":[{"id":657789025625878534,"id_str":"657789025625878534","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CSDvojmUsAYGC3D.jpg","url":"https:\/\/t.co\/iRoYICPg0C","display_url":"pic.twitter.com\/iRoYICPg0C","expanded_url":"http:\/\/twitter.com\/pamyurin\/status\/657789044630290432\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":480,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":657789044630290432,"source_status_id_str":"657789044630290432","source_user_id":220332457,"source_user_id_str":"220332457"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129657"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619598848,"id_str":"663728286619598848","text":"Me quiero ir, la puta madre. Me queda una hora m\u00e1s ac\u00e1.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258061793,"id_str":"258061793","name":"kai","screen_name":"candekaiser","location":"moreno","url":null,"description":"18. virgo. independiente de avellaneda.","protected":false,"verified":false,"followers_count":797,"friends_count":227,"listed_count":3,"favourites_count":10026,"statuses_count":60392,"created_at":"Sat Feb 26 21:47:45 +0000 2011","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/469364446318444545\/eOJStLMn.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/469364446318444545\/eOJStLMn.jpeg","profile_background_tile":true,"profile_link_color":"592396","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B868E6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653371841923387392\/mLPl4EdA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653371841923387392\/mLPl4EdA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/258061793\/1404701314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286615273472,"id_str":"663728286615273472","text":"@minami_rokugou \u3046\u3044","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728131665100800,"in_reply_to_status_id_str":"663728131665100800","in_reply_to_user_id":140064071,"in_reply_to_user_id_str":"140064071","in_reply_to_screen_name":"minami_rokugou","user":{"id":700091563,"id_str":"700091563","name":"\u3070\u3093\u3002","screen_name":"banashurei","location":"\u5b9f\u6cc1\u6c11(\uff8f\uff80\uff70\uff98)","url":null,"description":"\u30a2\u30cb\u30e1\u3068\u304b\u3001\u3056\u30fc\u3055\u3093\u3068\u304b\u6620\u753b\u3068\u304b\u6f2b\u753b\u3068\u304b\u30e9\u30ce\u30d9\u3068\u304b\u3001\u91d1\u9aea\u3068\u304b\u30d0\u30ca\u30ca\u3068\u304b\u3042\u3056\u3068\u3044\u9ec4\u8272\u3068\u304b\u3056\u30fc\u3055\u3093\u3068\u304b\u8aa4\u5b57\u591a\u3081\u3067\u898b\u5f53\u9055\u3044\u306b\u545f\u304f\u306e\u3067\u30df\u30e5\u30fc\u30c8\u63a8\u5968\u306a\u611f\u3058\u3002 \u30b2\u30fc\u30e0\u306f\u30d5\u30ed\u30e0\u8133\u3067SEGA\u6d3e\u3002","protected":false,"verified":false,"followers_count":154,"friends_count":89,"listed_count":17,"favourites_count":11206,"statuses_count":95813,"created_at":"Tue Jul 17 00:59:10 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657862194369966080\/Efwh3Slk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657862194369966080\/Efwh3Slk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/700091563\/1358934494","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"minami_rokugou","name":"\u30ab\u30aa\u30eb\u30e9","id":140064071,"id_str":"140064071","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129661"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286632120320,"id_str":"663728286632120320","text":"@MissKatiePrice when is your new autobiography coming out please?? Love you books!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":24083587,"in_reply_to_user_id_str":"24083587","in_reply_to_screen_name":"MissKatiePrice","user":{"id":3872393565,"id_str":"3872393565","name":"Samantha","screen_name":"sammyg2308","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":139,"listed_count":0,"favourites_count":5,"statuses_count":12,"created_at":"Mon Oct 05 16:05:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-GB","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651069480605499392\/7oBtEYrV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651069480605499392\/7oBtEYrV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3872393565\/1444204068","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MissKatiePrice","name":"Katie Price","id":24083587,"id_str":"24083587","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129665"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611062784,"id_str":"663728286611062784","text":"RT @Smp_kimcil: Di rumah aja bt https:\/\/t.co\/L0Ft299uWR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2734959516,"id_str":"2734959516","name":"Rizky Romadhon","screen_name":"rizky_rr53","location":null,"url":null,"description":"palembang","protected":false,"verified":false,"followers_count":20,"friends_count":190,"listed_count":0,"favourites_count":2,"statuses_count":341,"created_at":"Fri Aug 15 17:17:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660905727737794561\/2OjyHI3W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660905727737794561\/2OjyHI3W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2734959516\/1446407204","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:30 +0000 2015","id":663727619712507905,"id_str":"663727619712507905","text":"Di rumah aja bt https:\/\/t.co\/L0Ft299uWR","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4068991392,"id_str":"4068991392","name":"Masih smp","screen_name":"Smp_kimcil","location":"Favorite langsung block","url":null,"description":"Anak smp yang lagi belajar tentang sex |khusus 18+ #kecilsangean","protected":false,"verified":false,"followers_count":2637,"friends_count":34,"listed_count":7,"favourites_count":0,"statuses_count":292,"created_at":"Fri Oct 30 13:34:15 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662894724387221504\/wP7cXFvL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662894724387221504\/wP7cXFvL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4068991392\/1446881355","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727619607654400,"id_str":"663727619607654400","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","url":"https:\/\/t.co\/L0Ft299uWR","display_url":"pic.twitter.com\/L0Ft299uWR","expanded_url":"http:\/\/twitter.com\/Smp_kimcil\/status\/663727619712507905\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727619607654400,"id_str":"663727619607654400","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","url":"https:\/\/t.co\/L0Ft299uWR","display_url":"pic.twitter.com\/L0Ft299uWR","expanded_url":"http:\/\/twitter.com\/Smp_kimcil\/status\/663727619712507905\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Smp_kimcil","name":"Masih smp","id":4068991392,"id_str":"4068991392","indices":[3,14]}],"symbols":[],"media":[{"id":663727619607654400,"id_str":"663727619607654400","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","url":"https:\/\/t.co\/L0Ft299uWR","display_url":"pic.twitter.com\/L0Ft299uWR","expanded_url":"http:\/\/twitter.com\/Smp_kimcil\/status\/663727619712507905\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}},"source_status_id":663727619712507905,"source_status_id_str":"663727619712507905","source_user_id":4068991392,"source_user_id_str":"4068991392"}]},"extended_entities":{"media":[{"id":663727619607654400,"id_str":"663727619607654400","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIwOJUcAAuoM6.jpg","url":"https:\/\/t.co\/L0Ft299uWR","display_url":"pic.twitter.com\/L0Ft299uWR","expanded_url":"http:\/\/twitter.com\/Smp_kimcil\/status\/663727619712507905\/photo\/1","type":"photo","sizes":{"small":{"w":320,"h":320,"resize":"fit"},"medium":{"w":320,"h":320,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":320,"h":320,"resize":"fit"}},"source_status_id":663727619712507905,"source_status_id_str":"663727619712507905","source_user_id":4068991392,"source_user_id_str":"4068991392"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636318721,"id_str":"663728286636318721","text":"RT @INN_DELTA: Contiene alicina, que reduce la ocurrencia de accidentes cerebrovasculares y enfermedades del coraz\u00f3n.@innvzla https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053697282,"id_str":"4053697282","name":"COMITEDELOSDDHH","screen_name":"comiteddhhtucup","location":"Delta Amacuro, Venezuela","url":null,"description":"COMITE DE LOS DERECHOS HUMANOS PARA LA DEFENSA DE LOS PENSIONADOS, JUBILADOS,PERSONAS ADULTAS MAYORES Y PERSONAS CON DISCAPACIDAD.","protected":false,"verified":false,"followers_count":26,"friends_count":133,"listed_count":0,"favourites_count":1,"statuses_count":174,"created_at":"Tue Oct 27 13:29:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659000651477815296\/gtJiMj6m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659000651477815296\/gtJiMj6m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4053697282\/1445961148","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 18:36:56 +0000 2015","id":662700208028020736,"id_str":"662700208028020736","text":"Contiene alicina, que reduce la ocurrencia de accidentes cerebrovasculares y enfermedades del coraz\u00f3n.@innvzla https:\/\/t.co\/n6NZ2wYaV5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":511041784,"id_str":"511041784","name":"INN DELTA AMACURO","screen_name":"INN_DELTA","location":"Tucupita - Delta Amacuro","url":"http:\/\/inn.gob.ve","description":"\u00a1Trabajo en equipo, Triunfo seguro! #AgarraDatoComeSano","protected":false,"verified":false,"followers_count":1964,"friends_count":1121,"listed_count":9,"favourites_count":61,"statuses_count":3385,"created_at":"Thu Mar 01 23:37:18 +0000 2012","utc_offset":-16200,"time_zone":"Caracas","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"E01919","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522054511041335296\/ZOCfrnIh.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522054511041335296\/ZOCfrnIh.jpeg","profile_background_tile":true,"profile_link_color":"0F0E0E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/522055107194544128\/L2l0C4jf_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/522055107194544128\/L2l0C4jf_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/511041784\/1413302972","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"innvzla","name":"Inst.Nac.Nutrici\u00f3n","id":125723806,"id_str":"125723806","indices":[102,110]}],"symbols":[],"media":[{"id":662700188407078912,"id_str":"662700188407078912","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","url":"https:\/\/t.co\/n6NZ2wYaV5","display_url":"pic.twitter.com\/n6NZ2wYaV5","expanded_url":"http:\/\/twitter.com\/INN_DELTA\/status\/662700208028020736\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662700188407078912,"id_str":"662700188407078912","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","url":"https:\/\/t.co\/n6NZ2wYaV5","display_url":"pic.twitter.com\/n6NZ2wYaV5","expanded_url":"http:\/\/twitter.com\/INN_DELTA\/status\/662700208028020736\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"INN_DELTA","name":"INN DELTA AMACURO","id":511041784,"id_str":"511041784","indices":[3,13]},{"screen_name":"innvzla","name":"Inst.Nac.Nutrici\u00f3n","id":125723806,"id_str":"125723806","indices":[117,125]}],"symbols":[],"media":[{"id":662700188407078912,"id_str":"662700188407078912","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","url":"https:\/\/t.co\/n6NZ2wYaV5","display_url":"pic.twitter.com\/n6NZ2wYaV5","expanded_url":"http:\/\/twitter.com\/INN_DELTA\/status\/662700208028020736\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":662700208028020736,"source_status_id_str":"662700208028020736","source_user_id":511041784,"source_user_id_str":"511041784"}]},"extended_entities":{"media":[{"id":662700188407078912,"id_str":"662700188407078912","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTJiT2qWoAA7uuw.jpg","url":"https:\/\/t.co\/n6NZ2wYaV5","display_url":"pic.twitter.com\/n6NZ2wYaV5","expanded_url":"http:\/\/twitter.com\/INN_DELTA\/status\/662700208028020736\/photo\/1","type":"photo","sizes":{"medium":{"w":225,"h":225,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":225,"h":225,"resize":"fit"},"large":{"w":225,"h":225,"resize":"fit"}},"source_status_id":662700208028020736,"source_status_id_str":"662700208028020736","source_user_id":511041784,"source_user_id_str":"511041784"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611042305,"id_str":"663728286611042305","text":"(internally screaming)","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38637810,"id_str":"38637810","name":"drunken spider","screen_name":"alyaaezzati","location":null,"url":"http:\/\/chemist-trying.tumblr.com","description":"i dress like a 90 year old chinese man && i have a science-y tumblr that i'm not shy (ish) to share on my bio","protected":false,"verified":false,"followers_count":393,"friends_count":108,"listed_count":6,"favourites_count":1627,"statuses_count":32756,"created_at":"Fri May 08 09:48:53 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/507900833485160448\/X-Gox653.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/507900833485160448\/X-Gox653.jpeg","profile_background_tile":true,"profile_link_color":"EDA1D5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624946691154677761\/SRfV0paJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624946691154677761\/SRfV0paJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/38637810\/1434816993","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619561984,"id_str":"663728286619561984","text":"RT @ImDeepVerma: People don't change. With time, they get better at\nrunning away from who they really are.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096214520,"id_str":"3096214520","name":"Shazia Nadeem","screen_name":"shaznadeem35","location":"Lahore, Pakistan","url":"http:\/\/twitter.com\/search?q=from:shaznadeem35","description":"#cancerian | #TMStars","protected":false,"verified":false,"followers_count":8022,"friends_count":1416,"listed_count":31,"favourites_count":29581,"statuses_count":35794,"created_at":"Wed Mar 18 12:32:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651754696894382081\/LM-JTJEi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651754696894382081\/LM-JTJEi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096214520\/1446928191","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Oct 13 03:34:16 +0000 2015","id":653775735988076544,"id_str":"653775735988076544","text":"People don't change. With time, they get better at\nrunning away from who they really are.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":882024865,"id_str":"882024865","name":"D","screen_name":"ImDeepVerma","location":"Everywhere","url":"http:\/\/favstar.fm\/users\/Imdeepverma","description":"I am just someone with a handful of dreams, a\r\nstory in my soul & a song in my heart.. I am\r\nbroken ~ but the hope inside me is not.\r\nMy tweets @Deep_Archive","protected":false,"verified":false,"followers_count":4669,"friends_count":41,"listed_count":109,"favourites_count":62196,"statuses_count":115089,"created_at":"Mon Oct 15 10:13:02 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657986878054924288\/eGxXwS_W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657986878054924288\/eGxXwS_W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882024865\/1437561041","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":182,"favorite_count":154,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ImDeepVerma","name":"D","id":882024865,"id_str":"882024865","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286627835905,"id_str":"663728286627835905","text":"\u3048\u30fc\u307e\u3058\u3080\u308a\nDM\u304d\u305f\u7206\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2914807147,"id_str":"2914807147","name":"\u3059\u30fc\u3081\u308d\u3067\u3043\u30fc\u266c*\u309c","screen_name":"102910300129s","location":"\u5b88\u5c4b\u304f\u3093\u306e\u304a\u96a3\u306e\u5e02 \u5927\u6a4b\u4e16(*\u00dc*)","url":"http:\/\/twpf.jp\/102910300129s","description":"\u306d\u3047\u3001\u5e73\u91ce\u304f\u3093\u3002\u307e\u305f\u3044\u3064\u304b\u95a2\u897f\u3067\u30b3\u30f3\u30b5\u30fc\u30c8\u3057\u3066\u304f\u308c\u308b\u3088\u306d\uff1f\u305a\u3046\u3046\u3046\u3046\u3046\u3046\u3063\u3068\u5f85\u3063\u3066\u308b\u304b\u3089\u3002\u3068\u306b\u304b\u304f\u95a2\u897fJr.\u304c\u5927\u597d\u304d\u306a\u3093\u3067\u3059\u3002\u53ef\u611b\u3044\u4eba\u306b\u6cb8\u304f\u96d1\u98df\u7cfb(\u7b11) next\u2192\u30af\u30ea\u30d112.09 \u30b8\u30e3\u30cb\u30b9\u30c801.03 \u8a73\u3057\u304f\u306f\u30c4\u30a4\u30d7\u30ed\u3067\\(\u02ca\u15dc\u02cb)\/","protected":false,"verified":false,"followers_count":760,"friends_count":734,"listed_count":10,"favourites_count":371,"statuses_count":14505,"created_at":"Sun Nov 30 13:59:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662999786111430656\/Kh9qSxS1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662999786111430656\/Kh9qSxS1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2914807147\/1446727395","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129664"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611062785,"id_str":"663728286611062785","text":"RT @MisisBanateraPH: Yung pinipigilan mong magalit kahit gustong gusto mo ng manapak.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3047104447,"id_str":"3047104447","name":"shandal \u265a\u265a\u265a","screen_name":"andalshannamari","location":null,"url":null,"description":"Its better to be alone than to stay with people who don't want to be with you.","protected":false,"verified":false,"followers_count":533,"friends_count":1536,"listed_count":0,"favourites_count":304,"statuses_count":1396,"created_at":"Fri Feb 27 16:35:02 +0000 2015","utc_offset":16200,"time_zone":"Kabul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661547685418135552\/Y8hBfIuk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661547685418135552\/Y8hBfIuk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3047104447\/1446560436","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:49:16 +0000 2015","id":663518683055058944,"id_str":"663518683055058944","text":"Yung pinipigilan mong magalit kahit gustong gusto mo ng manapak.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2603451084,"id_str":"2603451084","name":"MISIS BANATERA","screen_name":"MisisBanateraPH","location":"Advertiser \/ Promoter \u2665","url":"http:\/\/instagram.com\/ariannereyes_","description":"Read then retweet \/ English & Tagalog Quotes \/ Patama \/ Hugot \/ Payo \u2764\ufe0f owner @Ariannereyes_","protected":false,"verified":false,"followers_count":134670,"friends_count":84,"listed_count":47,"favourites_count":5,"statuses_count":7046,"created_at":"Fri Jul 04 13:09:14 +0000 2014","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"F01390","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654111846757105664\/xJjgbAPx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654111846757105664\/xJjgbAPx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2603451084\/1430896740","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":251,"favorite_count":203,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MisisBanateraPH","name":"MISIS BANATERA","id":2603451084,"id_str":"2603451084","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286602686464,"id_str":"663728286602686464","text":"@TSUCTAAC @ChispitaMX @VickyRasgado84 @ALICIAM35742195 @ppfrancolo @NOTICIASFM premium? Que es eso?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727614784225280,"in_reply_to_status_id_str":"663727614784225280","in_reply_to_user_id":84980990,"in_reply_to_user_id_str":"84980990","in_reply_to_screen_name":"TSUCTAAC","user":{"id":2309353975,"id_str":"2309353975","name":"Joel \u00d3seas","screen_name":"taxicoatza","location":"Coatzacoalcos., Ver. ","url":null,"description":"Hemos aprendido a volar como p\u00e1jaros, a nadar como peces; pero no hemos aprendido el sencillo arte de vivir como hermanos.\u2605","protected":false,"verified":false,"followers_count":1724,"friends_count":1518,"listed_count":7,"favourites_count":2782,"statuses_count":5605,"created_at":"Sat Jan 25 03:35:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541729963401936896\/ITPWlJG-_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541729963401936896\/ITPWlJG-_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2309353975\/1409462230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TSUCTAAC","name":"AaCc","id":84980990,"id_str":"84980990","indices":[0,9]},{"screen_name":"ChispitaMX","name":"Gaby Rasgado","id":111721028,"id_str":"111721028","indices":[10,21]},{"screen_name":"VickyRasgado84","name":"Vicky Rasgado","id":393784733,"id_str":"393784733","indices":[22,37]},{"screen_name":"ALICIAM35742195","name":"Alicia Martinez","id":884468268,"id_str":"884468268","indices":[38,54]},{"screen_name":"ppfrancolo","name":"jose franco","id":482822876,"id_str":"482822876","indices":[55,66]},{"screen_name":"NOTICIASFM","name":"RICARDO SOTO","id":131909208,"id_str":"131909208","indices":[67,78]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080129658"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611083264,"id_str":"663728286611083264","text":"\u3066\u304b\u30df\u30b9\u3063\u3066\u30c8\u30fc\u30af\u6d88\u3057\u3061\u3083\u3063\u305f\u304b\u3089\n\u4f55\u306e\u8a71\u3057\u3066\u305f\u304b\u5fd8\u308c\u305f( \u141b\ud83d\udc50)\uff8a\uff9f\uff67","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2988106801,"id_str":"2988106801","name":"\u3061\u3071\u3055\u3093\u3002","screen_name":"Chr_023","location":"\u6c60\u4e0a\u3002","url":null,"description":"\/ \u84b2\u9ad8 35th \/ \u9db4\u5927 \/ \u6587\u5316\u8ca1 \/ 1\u5e742\u7d44 \/ \u5b9d\u585a \/ AKB \/ earth \/ \u273c\u81ea\u7531\u306b\u751f\u304d\u3066\u307e\u3059 \u273c \u3084\u308a\u305f\u3044\u3053\u3068\u3060\u3051\u3084\u3063\u3066\u307e\u3059 \u273c\u300e\u306f\u3058\u307e\u308a\u306e\u56fd\u306e\u3055\u3044\u3054\u306e\u8a71\u300f\u300a@mimi_x0x\u300b\u307e\u3044\u306f\u306b\u30fc\u3061\u3083\u3093\u2661 \u300a@chietan05\u300b\u611b\u3057\u306e\u307e\u3044\u3060\u30fc\u308a\u3093\u2661","protected":false,"verified":false,"followers_count":97,"friends_count":100,"listed_count":3,"favourites_count":1420,"statuses_count":8948,"created_at":"Sun Jan 18 07:07:02 +0000 2015","utc_offset":-39600,"time_zone":"Midway Island","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660638845365436417\/4mrnxaK3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660638845365436417\/4mrnxaK3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2988106801\/1446383579","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619467776,"id_str":"663728286619467776","text":"@rantata0322 \u3044\u3063\u3064\u3082\u306d\u307e\u304d\u304d\u3066\u308b\u3059\u3051\u3088","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728128808763392,"in_reply_to_status_id_str":"663728128808763392","in_reply_to_user_id":2897465358,"in_reply_to_user_id_str":"2897465358","in_reply_to_screen_name":"rantata0322","user":{"id":486648381,"id_str":"486648381","name":"\u3048\u3044\u305f\u305f","screen_name":"buu____uutan","location":"Sendai","url":null,"description":"\u6625\u304b\u3089\u6771\u4eac \u9707\u3048\u308b\u6bce\u65e5","protected":false,"verified":false,"followers_count":244,"friends_count":221,"listed_count":0,"favourites_count":598,"statuses_count":29398,"created_at":"Wed Feb 08 14:25:04 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636380495480139777\/iYrtKovF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636380495480139777\/iYrtKovF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/486648381\/1444827173","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rantata0322","name":"\u3089\u3093\u305f\u305f\u3002","id":2897465358,"id_str":"2897465358","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286623641600,"id_str":"663728286623641600","text":"@Ryu_902m \n\u3053\u306e\u524d\u3082\u304a\u663c\u4f11\u307f\u304c\n\u3059\u3067\u306b\u5915\u98df\u306e\u6642\u9593\u307f\u305f\u3044\u306a\n\u6642\u9593\u3060\u3063\u305f\u3082\u3093\u306d\ud83d\ude47\ud83c\udffb\ud83d\udca6\n\u307f\u304d\u3061\u3083\u3093\u306f\n\u75e9\u305b\u308b\u5fc5\u8981\u306f\u5168\u304f\u7121\u3044\u3051\u3069\n\u30b8\u30e0\u306f\u30b9\u30c8\u30ec\u30b9\u767a\u6563\u306b\u3082\u306a\u308b\u3057\n\u7d50\u69cb\u30aa\u30b9\u30b9\u30e1\u3060\u3088\u301c\u301c\ud83d\udc93ww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663716848832155648,"in_reply_to_status_id_str":"663716848832155648","in_reply_to_user_id":2791804163,"in_reply_to_user_id_str":"2791804163","in_reply_to_screen_name":"Ryu_902m","user":{"id":2994312505,"id_str":"2994312505","name":"MARI\u261e\u2661NAOTO\u2661","screen_name":"mari3jsbxx","location":null,"url":null,"description":"EXfam \/ \u2661NAOTO\u2661 \/ \u4e09\u4ee3\u76eeJSB \/ EXILE \/86-87line \u81e3\u9686\u4e16\u4ee3 \/ \u57fc\u7389 \u25a0\u307b\u306e\u5b57\u7d44\u304a\u6e21\u3057\u4f1a \u6771\u4eac 7\/14 \u25a0BP 7\/15 , 8\/30 , 10\/1 \u25a0PKCZ 7\/31 ,10\/31 \u25a0AW 12\/10 \u2026\u2026and more","protected":false,"verified":false,"followers_count":109,"friends_count":70,"listed_count":1,"favourites_count":400,"statuses_count":3742,"created_at":"Sat Jan 24 07:22:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660814217415516160\/yGcJHLBG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660814217415516160\/yGcJHLBG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2994312505\/1446460367","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Ryu_902m","name":"miiiki\uff0a","id":2791804163,"id_str":"2791804163","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129663"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611079169,"id_str":"663728286611079169","text":"RT @SyusutoHigaisya: #\u65e5\u672c\u4fb5\u7565\nhttps:\/\/t.co\/cnP5CGL3ZV \u2026\n#\u5275\u4fa1\u5b66\u4f1a\n#\u516c\u660e\u515a\n#\u53cd\u65e5\u5de5\u4f5c\u54e1\n#\u5275\u4fa1\n#\u65e5\u672c\u6700\u5927\u306e\u53cd\u65e5\u7d44\u7e54\n#\u56fd\u5bb6\u8ee2\u8986\n#\u53cd\u65e5\u5de5\u4f5c\u6d3b\u52d5\n#\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084\n#\u96c6\u56e3\u30b9\u30c8\u30fc\u30ab\u30fc\n#\u72af\u7f6a\u7d44\u7e54","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4134127940,"id_str":"4134127940","name":"\u3071\u3088\u3071\u3088\u3061\u30fc\u3093","screen_name":"payopayochiiin","location":null,"url":null,"description":"\u65e5\u672c\u3068\u65e5\u672c\u3092\u5927\u5207\u306b\u3057\u3066\u304f\u308c\u308b\u4eba\u9054\u304c\u5927\u597d\u304d\n\u305f\u307e\u306b\u5909\u614b\u30c4\u30a4\u30fc\u30c8\u3059\u308b\u304b\u3089\u771f\u9762\u76ee\u7cfb\u4fdd\u5b88\u306e\u65b9\u306f\u3054\u6ce8\u610f\u304f\u3060\u3055\u3044\u3002\n\u7279\u5b9a\u306f\u3084\u3081\u3066\uff01\uff01\n\u30ea\u30b9\u30c8\u516c\u958b\u3082\u30a4\u30e4\uff01\uff01\n(\u30fb\u30fb;)))","protected":false,"verified":false,"followers_count":391,"friends_count":712,"listed_count":3,"favourites_count":4,"statuses_count":798,"created_at":"Thu Nov 05 10:45:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662411636091695104\/vH5CmfZj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662411636091695104\/vH5CmfZj_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:45 +0000 2015","id":663727682241306624,"id_str":"663727682241306624","text":"#\u65e5\u672c\u4fb5\u7565\nhttps:\/\/t.co\/cnP5CGL3ZV \u2026\n#\u5275\u4fa1\u5b66\u4f1a\n#\u516c\u660e\u515a\n#\u53cd\u65e5\u5de5\u4f5c\u54e1\n#\u5275\u4fa1\n#\u65e5\u672c\u6700\u5927\u306e\u53cd\u65e5\u7d44\u7e54\n#\u56fd\u5bb6\u8ee2\u8986\n#\u53cd\u65e5\u5de5\u4f5c\u6d3b\u52d5\n#\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084\n#\u96c6\u56e3\u30b9\u30c8\u30fc\u30ab\u30fc\n#\u72af\u7f6a\u7d44\u7e54","source":"\u003ca href=\"http:\/\/www.botize.com\" rel=\"nofollow\"\u003eBotize\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1538136210,"id_str":"1538136210","name":"\u76ee\u899a\u3081\u3088\u65e5\u672c\u4eba\uff01\u65e5\u672c\u304c\u5371\u306a\u3044\uff01","screen_name":"SyusutoHigaisya","location":null,"url":null,"description":"\u65e2\u306b\u5730\u65b9\u306f\u5236\u5727\u3055\u308c\u3066\u3044\u308b #\u65e5\u672c\u304c\u6ec5\u3076\u306e\u306f\u6642\u9593\u306e\u554f\u984c\uff01#\u81ea\u6cbb\u57fa\u672c\u6761\u4f8b\u21d2#\u79fb\u6c11\u653f\u7b56\uff08\u4eca\u3053\u306e\u6bb5\u968e\uff09\u21d2#\u5916\u56fd\u4eba\u53c2\u653f\u6a29\u21d2#\u9053\u5dde\u5236\u21d2#\u5171\u7523\u4e3b\u7fa9\u9769\u547d\u21d2#\u65e5\u672c\u89e3\u4f53\u21d2#\u5185\u6226\u21d2\u4e2d\u56fd\u4eba\u6c11\u89e3\u653e\u8ecd\u306b\u3088\u308b\u65e5\u672c\u4eba\u6bba\u51e6\u5206\uff01#\u8cb4\u65b9\u306e\u30ea\u30c4\u30a4\u30fc\u30c8\u3068\u62e1\u6563\u304c\u65e5\u672c\u3092\u6551\u3046\uff01 #\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084\uff01","protected":false,"verified":false,"followers_count":1778,"friends_count":1359,"listed_count":10,"favourites_count":222,"statuses_count":33204,"created_at":"Sat Jun 22 07:23:15 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/605292785059569664\/y5jff3Jk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/605292785059569664\/y5jff3Jk.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/605113831258333184\/4HGPzwpM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/605113831258333184\/4HGPzwpM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1538136210\/1431361847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":604214270851555328,"quoted_status_id_str":"604214270851555328","quoted_status":{"created_at":"Fri May 29 09:14:42 +0000 2015","id":604214270851555328,"id_str":"604214270851555328","text":"#\u5275\u4fa1\u5b66\u4f1a \u306e\u76ee\u7684\u306f #\u65e5\u672c\u56fd\u652f\u914d \u3060\u3063\u305f!?\n\u3059\u3067\u306b\u5404\u5206\u91ce\u306b\u9001\u308a\u8fbc\u307e\u308c\u305f\u5de5\u4f5c\u54e1\uff08\u5f01\u8b77\u58eb\u3001\u691c\u4e8b\u3001\u5224\u4e8b\u3001\u516c\u8a8d\u4f1a\u8a08\u58eb\u3001\u7a0e\u7406\u58eb\u3001\u8b66\u5bdf\u5b98\u3084\u5916\u4ea4\u5b98\u7b49\u306e\u56fd\u5bb6\u516c\u52d9\u54e1\u4e0a\u7d1a\u8077\u7b49\u3005\uff09\u3002#\u6c60\u7530\u5927\u4f5c \u3068\u5275\u4fa1\u5b66\u4f1a\u306b\u3088\u308b\u65e5\u672c\u56fd\u4e57\u3063\u53d6\u308a\u8a08\u753b\u306f\u7740\u5b9f\u306b\u9032\u3093\u3067\u3044\u308b\u3002\nhttp:\/\/t.co\/NvnepHoLr9","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3112011245,"id_str":"3112011245","name":"\u751f\u6d3b\u4fdd\u8b77\u4e0d\u6b63\u53d7\u7d66\u8005\u306e9\u5272\u304c\u5275\u4fa1\u5b66\u4f1a\u54e1\uff01","screen_name":"Y8povb","location":null,"url":"http:\/\/detail.chiebukuro.yahoo.co.jp\/qa\/question_detail\/q1287997592","description":"#\u751f\u6d3b\u4fdd\u8b77 #\u4e0d\u6b63\u53d7\u7d66 \u8005\u306e9\u5272\u304c #\u5275\u4fa1\u5b66\u4f1a\u54e1 \u3063\u3066\uff01 #\u672c\u5f53 \u3067\u3059\u304b\uff1f \u845b\u98fe\u533a\u306e #\u751f\u6d3b\u4fdd\u8b77 \u53d7\u7d66\u8005\u306e\uff19\u5272\u304c #\u5275\u4fa1\u5b66\u4f1a\u54e1\uff01\u672c\u4eba\u3067\u306f\u306a\u304f #\u516c\u660e\u515a \u5e02\u8b70\u304c #\u4ee3\u7406\u7533\u8acb\uff01#\u5916\u56fd\u4eba #\u751f\u6d3b\u4fdd\u8b77 \u306e\u5b9f\u614b\uff01#\u516c\u52d9\u54e1 \u7d44\u7e54\u304c #\u30de\u30d5\u30a3\u30a2\uff01\uff1f #\u8cb4\u65b9\u306e\u30ea\u30c4\u30a4\u30fc\u30c8\u3068\u62e1\u6563\u304c\u65e5\u672c\u3092\u6551\u3046\uff01#\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084\uff01","protected":false,"verified":false,"followers_count":1333,"friends_count":1218,"listed_count":7,"favourites_count":151,"statuses_count":8657,"created_at":"Tue Mar 24 23:14:36 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/647039114554904576\/BvF4hWU3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/647039114554904576\/BvF4hWU3.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647039297564966912\/P9ZiV_TL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647039297564966912\/P9ZiV_TL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3112011245\/1431727267","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5275\u4fa1\u5b66\u4f1a","indices":[0,5]},{"text":"\u65e5\u672c\u56fd\u652f\u914d","indices":[11,17]},{"text":"\u6c60\u7530\u5927\u4f5c","indices":[82,87]}],"urls":[{"url":"http:\/\/t.co\/NvnepHoLr9","expanded_url":"http:\/\/www.toride.org\/ikesho.html","display_url":"toride.org\/ikesho.html","indices":[116,138]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"\u65e5\u672c\u4fb5\u7565","indices":[0,5]},{"text":"\u5275\u4fa1\u5b66\u4f1a","indices":[32,37]},{"text":"\u516c\u660e\u515a","indices":[38,42]},{"text":"\u53cd\u65e5\u5de5\u4f5c\u54e1","indices":[43,49]},{"text":"\u5275\u4fa1","indices":[50,53]},{"text":"\u65e5\u672c\u6700\u5927\u306e\u53cd\u65e5\u7d44\u7e54","indices":[54,64]},{"text":"\u56fd\u5bb6\u8ee2\u8986","indices":[65,70]},{"text":"\u53cd\u65e5\u5de5\u4f5c\u6d3b\u52d5","indices":[71,78]},{"text":"\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084","indices":[79,89]},{"text":"\u96c6\u56e3\u30b9\u30c8\u30fc\u30ab\u30fc","indices":[90,98]},{"text":"\u72af\u7f6a\u7d44\u7e54","indices":[99,104]}],"urls":[{"url":"https:\/\/t.co\/cnP5CGL3ZV","expanded_url":"https:\/\/twitter.com\/Y8povb\/status\/604214270851555328","display_url":"twitter.com\/Y8povb\/status\/\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u65e5\u672c\u4fb5\u7565","indices":[21,26]},{"text":"\u5275\u4fa1\u5b66\u4f1a","indices":[53,58]},{"text":"\u516c\u660e\u515a","indices":[59,63]},{"text":"\u53cd\u65e5\u5de5\u4f5c\u54e1","indices":[64,70]},{"text":"\u5275\u4fa1","indices":[71,74]},{"text":"\u65e5\u672c\u6700\u5927\u306e\u53cd\u65e5\u7d44\u7e54","indices":[75,85]},{"text":"\u56fd\u5bb6\u8ee2\u8986","indices":[86,91]},{"text":"\u53cd\u65e5\u5de5\u4f5c\u6d3b\u52d5","indices":[92,99]},{"text":"\u62c9\u81f4\u88ab\u5bb3\u8005\u5168\u54e1\u596a\u9084","indices":[100,110]},{"text":"\u96c6\u56e3\u30b9\u30c8\u30fc\u30ab\u30fc","indices":[111,119]},{"text":"\u72af\u7f6a\u7d44\u7e54","indices":[120,125]}],"urls":[{"url":"https:\/\/t.co\/cnP5CGL3ZV","expanded_url":"https:\/\/twitter.com\/Y8povb\/status\/604214270851555328","display_url":"twitter.com\/Y8povb\/status\/\u2026","indices":[27,50]}],"user_mentions":[{"screen_name":"SyusutoHigaisya","name":"\u76ee\u899a\u3081\u3088\u65e5\u672c\u4eba\uff01\u65e5\u672c\u304c\u5371\u306a\u3044\uff01","id":1538136210,"id_str":"1538136210","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611038208,"id_str":"663728286611038208","text":"RT @ANDYC_ram: Thank u Puerto Rico\ud83d\ude4fso much love for DnB on your island. Always feel so welcome. Big love to Puerto Rico family \u2764\ufe0f\ud83d\ude4c https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":547740270,"id_str":"547740270","name":"Mauritzen","screen_name":"David_Amstery","location":null,"url":null,"description":"No olvides nunca que el primer beso no se da con la boca, sino con los ojos. \nO. K. Bernhardt","protected":false,"verified":false,"followers_count":1090,"friends_count":613,"listed_count":12,"favourites_count":8032,"statuses_count":70219,"created_at":"Sat Apr 07 14:44:31 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660686538028617729\/XWeDJBhY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660686538028617729\/XWeDJBhY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/547740270\/1446887994","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:07:04 +0000 2015","id":663538262250758144,"id_str":"663538262250758144","text":"Thank u Puerto Rico\ud83d\ude4fso much love for DnB on your island. Always feel so welcome. Big love to Puerto Rico family \u2764\ufe0f\ud83d\ude4c https:\/\/t.co\/VKwTpve3ci","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":91240835,"id_str":"91240835","name":"Andy C","screen_name":"ANDYC_ram","location":"Hornchurch","url":"http:\/\/www.facebook.com\/andyc","description":"@RamRecordsLtd , Drum & Bass.","protected":false,"verified":true,"followers_count":97851,"friends_count":397,"listed_count":870,"favourites_count":2982,"statuses_count":23846,"created_at":"Fri Nov 20 01:30:02 +0000 2009","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529619266950004736\/23WgIpXc.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529619266950004736\/23WgIpXc.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1538505786\/w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1538505786\/w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/91240835\/1444768494","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":36,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663538241488986112,"id_str":"663538241488986112","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","url":"https:\/\/t.co\/VKwTpve3ci","display_url":"pic.twitter.com\/VKwTpve3ci","expanded_url":"http:\/\/twitter.com\/ANDYC_ram\/status\/663538262250758144\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663538241488986112,"id_str":"663538241488986112","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","url":"https:\/\/t.co\/VKwTpve3ci","display_url":"pic.twitter.com\/VKwTpve3ci","expanded_url":"http:\/\/twitter.com\/ANDYC_ram\/status\/663538262250758144\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ANDYC_ram","name":"Andy C","id":91240835,"id_str":"91240835","indices":[3,13]}],"symbols":[],"media":[{"id":663538241488986112,"id_str":"663538241488986112","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","url":"https:\/\/t.co\/VKwTpve3ci","display_url":"pic.twitter.com\/VKwTpve3ci","expanded_url":"http:\/\/twitter.com\/ANDYC_ram\/status\/663538262250758144\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663538262250758144,"source_status_id_str":"663538262250758144","source_user_id":91240835,"source_user_id_str":"91240835"}]},"extended_entities":{"media":[{"id":663538241488986112,"id_str":"663538241488986112","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVcg9rWoAAbd7l.jpg","url":"https:\/\/t.co\/VKwTpve3ci","display_url":"pic.twitter.com\/VKwTpve3ci","expanded_url":"http:\/\/twitter.com\/ANDYC_ram\/status\/663538262250758144\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663538262250758144,"source_status_id_str":"663538262250758144","source_user_id":91240835,"source_user_id_str":"91240835"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636228608,"id_str":"663728286636228608","text":"Heart Shaped Thigh Gaps Will Make You Fall In Love! https:\/\/t.co\/Of4B2sO4qx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3158473987,"id_str":"3158473987","name":"FRIEDA Victoria","screen_name":"7FRIEDA6Victori","location":"Omaha NE","url":"http:\/\/picttwiter.com\/","description":"Please insert pretentious crap about myself here,","protected":false,"verified":false,"followers_count":11864,"friends_count":8528,"listed_count":3,"favourites_count":1965,"statuses_count":11711,"created_at":"Thu Apr 16 02:25:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588545341865086976\/AGb9P8yT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588545341865086976\/AGb9P8yT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3158473987\/1429155120","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Of4B2sO4qx","expanded_url":"http:\/\/plctwltter.com\/sg1l9-shaped-thigh-make-heart-fall-in-y95e3","display_url":"plctwltter.com\/sg1l9-shaped-t\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286627860480,"id_str":"663728286627860480","text":"RT @hidokoro0: \u541b\u3068\u51fa\u4f1a\u3048\u305f\u3053\u306e\u661f\u3067\u301c\u266a\u53cb\u9054\u306b\u306a\u308c\u305f\u4e00\u77ac\u3067\u301c\u266a(\u2217\u2022\u03c9\u2022\u2217)\n\n\u30b9\u30c3(\u00b4\uff65_\uff65`)\n\n\u4f55\u304c\u53cb\u9054\u3060\u3001\u4ffa\u306f\u305a\u3063\u3068\u30dc\u30c3\u30c1\u3060 \u306a\u3093\u3067\u4ffa\u306b\u306f\u53cb\u9054\u304c\u3044\u306a\u3044\u306e\u3060\uff9d\uff84\uff9e\uff69\uff69\uff9d\uff84\uff9e\uff9d\uff84\uff9e\uff8a\uff9e\uff8a\uff9e\uff8a\uff9e\uff8b\uff9e\uff8b\uff9e\uff8b\uff9e\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3097663560,"id_str":"3097663560","name":"\u30aa\u30bf\u30b5\u30fc\u306e810\u59eb","screen_name":"E331_N5000","location":"\u6e05\u702c\/\u7df4\u99ac\/\u6c60\u888b\/\u77e2\u677f\/\u9752\u68ee\/\u8c4a\u6a4b","url":"http:\/\/twpf.jp\/E331_N5000","description":"\u4e16\u754c\u306e\u4e2d\u5fc3\u3067F-05D\u3068\u53eb\u3073\u305f\u3044 \u7523\u5ec3\u7aef\u672b\/ARROWS\/\u65b0101\u7cfb263f\/\u30e9\u30d6\u30d7\u30e9\u30b9\/\u6771\u9ce92\/\u30a2\u30a4\u30de\u30b9\/\u8266\u3053\u308c\/\u6027\u5225\u884c\u65b9\u4e0d\u660e\/\u30b9\u30de\u30db\u30b2\u30fc\u3084\u3063\u3066\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":1289,"friends_count":852,"listed_count":20,"favourites_count":13944,"statuses_count":42071,"created_at":"Thu Mar 19 10:55:08 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661420528113025024\/ot54L9Vn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661420528113025024\/ot54L9Vn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3097663560\/1446436824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:55 +0000 2015","id":663727724293296128,"id_str":"663727724293296128","text":"\u541b\u3068\u51fa\u4f1a\u3048\u305f\u3053\u306e\u661f\u3067\u301c\u266a\u53cb\u9054\u306b\u306a\u308c\u305f\u4e00\u77ac\u3067\u301c\u266a(\u2217\u2022\u03c9\u2022\u2217)\n\n\u30b9\u30c3(\u00b4\uff65_\uff65`)\n\n\u4f55\u304c\u53cb\u9054\u3060\u3001\u4ffa\u306f\u305a\u3063\u3068\u30dc\u30c3\u30c1\u3060 \u306a\u3093\u3067\u4ffa\u306b\u306f\u53cb\u9054\u304c\u3044\u306a\u3044\u306e\u3060\uff9d\uff84\uff9e\uff69\uff69\uff9d\uff84\uff9e\uff9d\uff84\uff9e\uff8a\uff9e\uff8a\uff9e\uff8a\uff9e\uff8b\uff9e\uff8b\uff9e\uff8b\uff9e\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff9d\uff57\uff57\uff57\uff57","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3319522322,"id_str":"3319522322","name":"\u7dcb\u6240\u30ab\u30ce","screen_name":"hidokoro0","location":null,"url":"http:\/\/ja.favstar.fm\/users\/hidokoro0\/favs_from","description":"(\u00b4\uff65_\uff65`)\uff1c\u30ad\u30c1\u30ac\u30a4\u3063\u307d\u3044\u301c\uff1f \u307d\u3001\u307d\u3001\u307d\u3044\u307d\u3044\u3057\u305f\u308d\u304b\u3001\u30ac\u30c1\u5207\u308c\u305f\u304a\u307e\u3048\u306e\u540d\u524d\u899a\u3048\u305f\u304b\u3089\u306a\u3001\u3061\u306a\u307f\u306b\u50d5\u306e\u6b63\u4f53\u306f24\u6b73\u5b66\u751f\u3067\u3059 (\u055e\u067c\u055e ) \u672c\u57a2\u2192@ringo_maycry","protected":false,"verified":false,"followers_count":13026,"friends_count":11737,"listed_count":124,"favourites_count":67738,"statuses_count":802,"created_at":"Wed Aug 19 02:43:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662489635365326849\/v4zNcx5K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662489635365326849\/v4zNcx5K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3319522322\/1447057914","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":12,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hidokoro0","name":"\u7dcb\u6240\u30ab\u30ce","id":3319522322,"id_str":"3319522322","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129664"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286636208128,"id_str":"663728286636208128","text":"Get Weather Updates from The Weather Channel. 09:42:09","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3266012822,"id_str":"3266012822","name":"mont31064","screen_name":"mont31064","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":37,"listed_count":0,"favourites_count":0,"statuses_count":41085,"created_at":"Thu Jul 02 12:11:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_2_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129666"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286602661888,"id_str":"663728286602661888","text":"#Fashion Beauty : Ray-Ban Reading glasses Carbon Fibre Model RB8901 5263 Demigloss Black https:\/\/t.co\/768pX4LGaM Deals #956","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2493217238,"id_str":"2493217238","name":"BEAUTY FOR ALL","screen_name":"Kalstafonz","location":"USA","url":null,"description":null,"protected":false,"verified":false,"followers_count":360,"friends_count":79,"listed_count":105,"favourites_count":10,"statuses_count":238580,"created_at":"Tue May 13 16:28:08 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/472057096112844800\/u764yW1P_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/472057096112844800\/u764yW1P_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Fashion","indices":[0,8]}],"urls":[{"url":"https:\/\/t.co\/768pX4LGaM","expanded_url":"http:\/\/dlvr.it\/ChfjGs","display_url":"dlvr.it\/ChfjGs","indices":[89,112]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129658"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286615232513,"id_str":"663728286615232513","text":"MGN-AFRICA\u00bb\u00bb pin:7ffa8acc Wada calls for Russia to be banned from athletics in\u2026 https:\/\/t.co\/dWknvZoUgd https:\/\/t.co\/KTY19Fivth pin:7ffa8acc","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":226178572,"id_str":"226178572","name":"\u2667MGN\u2663AFRICA\u2667","screen_name":"OfficialMGN","location":"Worldwide.","url":"http:\/\/Inforng.wordpress.com","description":"Publicist,Blogging,Web design,Music promo,Hacking ,Advert placement","protected":false,"verified":false,"followers_count":496,"friends_count":325,"listed_count":48,"favourites_count":66,"statuses_count":361918,"created_at":"Mon Dec 13 14:34:41 +0000 2010","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/479041975690473472\/dJT15-Ln_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/479041975690473472\/dJT15-Ln_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/226178572\/1394994538","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dWknvZoUgd","expanded_url":"http:\/\/dlvr.it\/ChfmgH","display_url":"dlvr.it\/ChfmgH","indices":[80,103]},{"url":"https:\/\/t.co\/KTY19Fivth","expanded_url":"http:\/\/www.bit.ly\/1kcSHfb","display_url":"bit.ly\/1kcSHfb","indices":[104,127]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080129661"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286627835904,"id_str":"663728286627835904","text":"RT @EXO_FANBASE: EXO Lotte Duty Free 2015 F\/W Photo Sketch\nhttps:\/\/t.co\/d1vhw7iNV2\nhttps:\/\/t.co\/3Elf2IoEbf\nhttps:\/\/t.co\/jLSL67x5JN https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":540663418,"id_str":"540663418","name":"\ucc2c\ubc31\u256d\u2661","screen_name":"osscarz_","location":"\uc5d1\uc18c, \ucc2c\ubc31\u2661","url":null,"description":"\u2741B. you are one thing in Mylife all mylove is for you ByunBaekHyun always forever\u3002 ! fearless\u2740 \u2022 \uc0ac\ub791\ud558\uc790! \u2022 CHANBAEK \u2022 \u2661 #\ucc2c\uc5f4\ubc31\ud604","protected":false,"verified":false,"followers_count":655,"friends_count":864,"listed_count":7,"favourites_count":4851,"statuses_count":196667,"created_at":"Fri Mar 30 09:07:33 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FAFAFA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000139213281\/xkrzwdQb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000139213281\/xkrzwdQb.jpeg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659781810176430080\/-FPVAa8z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659781810176430080\/-FPVAa8z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/540663418\/1438273644","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:34 +0000 2015","id":663725623492214784,"id_str":"663725623492214784","text":"EXO Lotte Duty Free 2015 F\/W Photo Sketch\nhttps:\/\/t.co\/d1vhw7iNV2\nhttps:\/\/t.co\/3Elf2IoEbf\nhttps:\/\/t.co\/jLSL67x5JN https:\/\/t.co\/2lJhYAjbck","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":527508915,"id_str":"527508915","name":"EXO FANBASE","screen_name":"EXO_FANBASE","location":"instagram.com\/exo_fanbaseig","url":"http:\/\/exofanbase12.tumblr.com\/","description":"Providing the latest news about EXO. Support and follow us! Contact: exofanbase2012@gmail.com","protected":false,"verified":false,"followers_count":538486,"friends_count":225,"listed_count":2066,"favourites_count":49,"statuses_count":118715,"created_at":"Sat Mar 17 14:30:38 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1BAAF2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599575068\/kmkxkjs1h4y31m0nkd6t.jpeg","profile_background_tile":true,"profile_link_color":"FC0008","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000783915593\/d1fc70b1d182a075370059b7906c5efe_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/527508915\/1423389941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":170,"favorite_count":149,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d1vhw7iNV2","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14403","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[42,65]},{"url":"https:\/\/t.co\/3Elf2IoEbf","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14819","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[66,89]},{"url":"https:\/\/t.co\/jLSL67x5JN","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14816","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725591120601088,"id_str":"663725591120601088","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725612247351296,"id_str":"663725612247351296","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663725620170375169,"id_str":"663725620170375169","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":640,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/d1vhw7iNV2","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14403","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[59,82]},{"url":"https:\/\/t.co\/3Elf2IoEbf","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14819","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[83,106]},{"url":"https:\/\/t.co\/jLSL67x5JN","expanded_url":"http:\/\/en.lottedfs.com\/attach\/view\/14816","display_url":"en.lottedfs.com\/attach\/view\/14\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"EXO_FANBASE","name":"EXO FANBASE","id":527508915,"id_str":"527508915","indices":[3,15]}],"symbols":[],"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"}]},"extended_entities":{"media":[{"id":663725557935271936,"id_str":"663725557935271936","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG4N0UcAAOrJV.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725591120601088,"id_str":"663725591120601088","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG6JcUYAAGJE4.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725612247351296,"id_str":"663725612247351296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG7YJVAAAILov.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"},{"id":663725620170375169,"id_str":"663725620170375169","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYG71qUwAElcR1.jpg","url":"https:\/\/t.co\/2lJhYAjbck","display_url":"pic.twitter.com\/2lJhYAjbck","expanded_url":"http:\/\/twitter.com\/EXO_FANBASE\/status\/663725623492214784\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":420,"resize":"fit"},"large":{"w":640,"h":448,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"}},"source_status_id":663725623492214784,"source_status_id_str":"663725623492214784","source_user_id":527508915,"source_user_id_str":"527508915"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129664"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286632161280,"id_str":"663728286632161280","text":"RT - FoxMorbid - Natural Trick To Increase #Metabolism Level And Lift Down The Type II #Diabetes Phase \u2026 https:\/\/t.co\/3LyWXgdBrl","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3458288593,"id_str":"3458288593","name":"Richard E. Willard","screen_name":"RichardEWillard","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1802,"friends_count":40,"listed_count":860,"favourites_count":0,"statuses_count":147650,"created_at":"Sat Sep 05 10:21:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727410941046784,"quoted_status_id_str":"663727410941046784","quoted_status":{"created_at":"Mon Nov 09 14:38:40 +0000 2015","id":663727410941046784,"id_str":"663727410941046784","text":"Natural Trick To Increase #Metabolism Level And Lift Down The Type II #Diabetes Phase https:\/\/t.co\/AqIt8Gktjy #DiabeticNutrition","source":"\u003ca href=\"http:\/\/www.grabinbox.com\" rel=\"nofollow\"\u003eGrabInbox\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":900095719,"id_str":"900095719","name":"Fox Morbid","screen_name":"FoxMorbid","location":"GLOBAL","url":"http:\/\/dld.bz\/afframa","description":"I love internet marketing, blogging and writing articles..\r\nAlso making money online is one of my favorite interest","protected":false,"verified":false,"followers_count":8975,"friends_count":9175,"listed_count":77,"favourites_count":0,"statuses_count":157454,"created_at":"Tue Oct 23 15:31:53 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/691630660\/699963e2ba1c438cedb5a456dbab2b54.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/691630660\/699963e2ba1c438cedb5a456dbab2b54.png","profile_background_tile":true,"profile_link_color":"EB0E0E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2755019902\/9e8ae5e6cdd62d2dcd0d1f4e3da86d41_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2755019902\/9e8ae5e6cdd62d2dcd0d1f4e3da86d41_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Metabolism","indices":[26,37]},{"text":"Diabetes","indices":[70,79]},{"text":"DiabeticNutrition","indices":[110,128]}],"urls":[{"url":"https:\/\/t.co\/AqIt8Gktjy","expanded_url":"http:\/\/dld.bz\/dTYYB","display_url":"dld.bz\/dTYYB","indices":[86,109]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Metabolism","indices":[43,54]},{"text":"Diabetes","indices":[87,96]}],"urls":[{"url":"https:\/\/t.co\/3LyWXgdBrl","expanded_url":"http:\/\/twitter.com\/FoxMorbid\/status\/663727410941046784","display_url":"twitter.com\/FoxMorbid\/stat\u2026","indices":[105,128]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129665"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286623600640,"id_str":"663728286623600640","text":"\u3046\u3069\u3093\u4f5c\u308b\u306a\u3046(OvO) https:\/\/t.co\/685dfD49Uc","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":519986268,"id_str":"519986268","name":"\u3086\u3081\u306e\u300cINNER STAR\u300d","screen_name":"yumeno_hayato","location":"\u6c5f\u53e3\u3068\u5bfa\u5cf6\u306e\u4e16\u754c","url":"https:\/\/m.facebook.com\/kirakiranoyume?refsrc=http%3A%2F%2Ft.co%2FAqgRYidVDw","description":"\u3086\u3081\u306e\u3067\u3059\u3002\u30bf\u30a4\u306e\u30b3\u30b9\u30ec\u30a4\u30e4\u30fc\/\u30b3\u30b9\u30ab\u30e1\u30e9 Free\uff01\/\u9752\u6625x\u6a5f\u95a2\u9283\/\u3046\u305f\u30d7\u30ea\/\u4e59\u5973\u30b2(\u7279\u306b\u30cf\u30cb\u30d3)\/Dynamic Chord(Reve parfait,Liar-S)\/\u58f0\u512a(\u5bfa\u5cf6\u3001\u6c5f\u53e3\u3001\u68b6)||\u30a2\u30fc\u30ac\u30a4\u30d7359501||\u5199\u771f\u30a2\u30ab\u30a6\u30c8\u2192 @kirara_photo","protected":false,"verified":false,"followers_count":1312,"friends_count":778,"listed_count":5,"favourites_count":44172,"statuses_count":184819,"created_at":"Sat Mar 10 01:30:33 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000087655966\/52fd0a8bbc4372189c9ad3eeb4e3e68b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000087655966\/52fd0a8bbc4372189c9ad3eeb4e3e68b.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663585544350208000\/lfEPpoZy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663585544350208000\/lfEPpoZy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/519986268\/1447041016","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/685dfD49Uc","expanded_url":"https:\/\/instagram.com\/p\/93iiodjT8q\/","display_url":"instagram.com\/p\/93iiodjT8q\/","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129663"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286632120321,"id_str":"663728286632120321","text":"RT @artsofdrawing: Parents: https:\/\/t.co\/MpLS7BCjnK","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3819707537,"id_str":"3819707537","name":"\u0627\u0642\u0631\u0627\u0621","screen_name":"S_23x","location":null,"url":null,"description":"18| Count your blessings always, no matter how little you have. Alhamdulillah\u2728 New account","protected":false,"verified":false,"followers_count":184,"friends_count":147,"listed_count":0,"favourites_count":820,"statuses_count":1413,"created_at":"Wed Sep 30 01:14:52 +0000 2015","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/649230126333431808\/L7oHmHZ2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/649230126333431808\/L7oHmHZ2.jpg","profile_background_tile":false,"profile_link_color":"1A1B1F","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655015577031999491\/Nlq3893N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655015577031999491\/Nlq3893N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3819707537\/1443636688","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:24 +0000 2015","id":663726335445987328,"id_str":"663726335445987328","text":"Parents: https:\/\/t.co\/MpLS7BCjnK","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2359717144,"id_str":"2359717144","name":"Funny Answers (:","screen_name":"artsofdrawing","location":"New York, USA","url":null,"description":"Bringing u the best funny answer to make u laugh hard until ur stomach pain !!!","protected":false,"verified":false,"followers_count":169927,"friends_count":89739,"listed_count":260,"favourites_count":42,"statuses_count":3861,"created_at":"Sat Feb 22 23:39:27 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/544063210697928704\/V4OiQ9jx.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659987271500754944\/ZYyUTRe4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2359717144\/1446184624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":46,"favorite_count":44,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[9,32],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"artsofdrawing","name":"Funny Answers (:","id":2359717144,"id_str":"2359717144","indices":[3,17]}],"symbols":[],"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}},"source_status_id":663726335445987328,"source_status_id_str":"663726335445987328","source_user_id":2359717144,"source_user_id_str":"2359717144"}]},"extended_entities":{"media":[{"id":663726333013262336,"id_str":"663726333013262336","indices":[28,51],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHlVNUAAAH1d3.jpg","url":"https:\/\/t.co\/MpLS7BCjnK","display_url":"pic.twitter.com\/MpLS7BCjnK","expanded_url":"http:\/\/twitter.com\/artsofdrawing\/status\/663726335445987328\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":368,"resize":"fit"},"large":{"w":500,"h":368,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":250,"resize":"fit"}},"source_status_id":663726335445987328,"source_status_id_str":"663726335445987328","source_user_id":2359717144,"source_user_id_str":"2359717144"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129665"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286619439105,"id_str":"663728286619439105","text":"@dokyeomkr @wonwooconda tru dat","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728181090762752,"in_reply_to_status_id_str":"663728181090762752","in_reply_to_user_id":155443042,"in_reply_to_user_id_str":"155443042","in_reply_to_screen_name":"dokyeomkr","user":{"id":3859320372,"id_str":"3859320372","name":"Pempek Enthusiast","screen_name":"hyungdweeb","location":"\uc9c0\ubbfc \ubbfc\uc11d \u660e\u6d69 \ud615\uc6d0 \uc2dc\uc601","url":null,"description":"[SPECIAL CLIP] MONSTA X(\ubaac\uc2a4\ud0c0\uc5d1\uc2a4) _ AMEN [11:12 - 11:16]","protected":false,"verified":false,"followers_count":170,"friends_count":118,"listed_count":0,"favourites_count":2926,"statuses_count":5084,"created_at":"Sun Oct 11 14:35:09 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/662995859391406080\/EGleoXP6.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/662995859391406080\/EGleoXP6.jpg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663418566016823296\/2zbcoLje_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663418566016823296\/2zbcoLje_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3859320372\/1447075661","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"dokyeomkr","name":"rin","id":155443042,"id_str":"155443042","indices":[0,10]},{"screen_name":"wonwooconda","name":"D-7","id":2992260438,"id_str":"2992260438","indices":[11,23]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129662"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286606979076,"id_str":"663728286606979076","text":"life plays stricks...... @why?..","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2456400415,"id_str":"2456400415","name":"AYMARD monkam","screen_name":"aymardlaure","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":267,"listed_count":2,"favourites_count":2,"statuses_count":35,"created_at":"Mon Apr 21 10:09:17 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458201530294738944\/W0uY0wHJ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458201530294738944\/W0uY0wHJ_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2456400415\/1418029378","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"why","name":"Ben Brennan","id":299383377,"id_str":"299383377","indices":[25,29]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286627860481,"id_str":"663728286627860481","text":"RT @LiveMatchInfo: Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1353737484,"id_str":"1353737484","name":"OMALLEY","screen_name":"omalleynewsome","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":335,"listed_count":31,"favourites_count":10232,"statuses_count":11407,"created_at":"Mon Apr 15 07:38:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3524578525\/c0c2915d706edc80540aba6de4fb2590_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3524578525\/c0c2915d706edc80540aba6de4fb2590_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:11 +0000 2015","id":663727537986514950,"id_str":"663727537986514950","text":"Report: Sepp Blatter undergoing 'medical evaluation' - https:\/\/t.co\/vQwBkxIGJF","source":"\u003ca href=\"http:\/\/livematchinfo.com\" rel=\"nofollow\"\u003elivematchinfo\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3230296510,"id_str":"3230296510","name":"Live Match Info","screen_name":"LiveMatchInfo","location":"Las Vegas, NV","url":"http:\/\/livematchinfo.com","description":"Stay on top of the latest live scores, recent results, and upcoming events. From the NFL, to MLB, Tennis, and more, we have your scores on LiveMatchInfo","protected":false,"verified":false,"followers_count":62581,"friends_count":900,"listed_count":0,"favourites_count":0,"statuses_count":165,"created_at":"Sun May 03 10:38:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475102722756608\/bWq0oDwC_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3230296510\/1446781337","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1277,"favorite_count":797,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vQwBkxIGJF","expanded_url":"http:\/\/livematchinfo.com\/report-sepp-blatter-undergoing-medical-evaluation-2\/","display_url":"livematchinfo.com\/report-sepp-bl\u2026","indices":[75,98]}],"user_mentions":[{"screen_name":"LiveMatchInfo","name":"Live Match Info","id":3230296510,"id_str":"3230296510","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080129664"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611050496,"id_str":"663728286611050496","text":"RT @AngPoetNyo: Breaking News: May nagnakaw ng motor ni Batman! Ayon sa report suspect pamangkin ni Tio Paenguin!#ALDUBMissingRing https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3329100200,"id_str":"3329100200","name":"Theresita Fernandez","screen_name":"TheresitaTf","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":83,"friends_count":236,"listed_count":6,"favourites_count":5275,"statuses_count":5364,"created_at":"Mon Aug 24 17:40:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649995534954926081\/3J2Gv1M2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649995534954926081\/3J2Gv1M2_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:11:57 +0000 2015","id":663720686091788288,"id_str":"663720686091788288","text":"Breaking News: May nagnakaw ng motor ni Batman! Ayon sa report suspect pamangkin ni Tio Paenguin!#ALDUBMissingRing https:\/\/t.co\/WtufZynHc1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1263292416,"id_str":"1263292416","name":"Joey de Leon","screen_name":"AngPoetNyo","location":null,"url":null,"description":"Ang official Twitter ng poet n'yo.","protected":false,"verified":true,"followers_count":1293218,"friends_count":15,"listed_count":609,"favourites_count":8995,"statuses_count":3049,"created_at":"Wed Mar 13 01:38:42 +0000 2013","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/813220480\/cc63c575b1874796c0c130d115d550f6.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/813220480\/cc63c575b1874796c0c130d115d550f6.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647804081432432640\/rbdrJjMw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647804081432432640\/rbdrJjMw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263292416\/1439810625","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1087,"favorite_count":2003,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[98,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663720685861122048,"id_str":"663720685861122048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","url":"https:\/\/t.co\/WtufZynHc1","display_url":"pic.twitter.com\/WtufZynHc1","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663720686091788288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720685861122048,"id_str":"663720685861122048","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","url":"https:\/\/t.co\/WtufZynHc1","display_url":"pic.twitter.com\/WtufZynHc1","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663720686091788288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ALDUBMissingRing","indices":[114,131]}],"urls":[],"user_mentions":[{"screen_name":"AngPoetNyo","name":"Joey de Leon","id":1263292416,"id_str":"1263292416","indices":[3,14]}],"symbols":[],"media":[{"id":663720685861122048,"id_str":"663720685861122048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","url":"https:\/\/t.co\/WtufZynHc1","display_url":"pic.twitter.com\/WtufZynHc1","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663720686091788288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663720686091788288,"source_status_id_str":"663720686091788288","source_user_id":1263292416,"source_user_id_str":"1263292416"}]},"extended_entities":{"media":[{"id":663720685861122048,"id_str":"663720685861122048","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCcn7UsAAR9Kt.jpg","url":"https:\/\/t.co\/WtufZynHc1","display_url":"pic.twitter.com\/WtufZynHc1","expanded_url":"http:\/\/twitter.com\/AngPoetNyo\/status\/663720686091788288\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663720686091788288,"source_status_id_str":"663720686091788288","source_user_id":1263292416,"source_user_id_str":"1263292416"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286602801152,"id_str":"663728286602801152","text":"RT @MariamYoussef5: mariamyoussef3 https:\/\/t.co\/j5LT05Fmlh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370762941,"id_str":"3370762941","name":"Morning \u2600Text \u2709","screen_name":"MoR_TxT","location":null,"url":"http:\/\/favstar.fm\/users\/MoR_TxT","description":"It's a hilarious thing to have a secret admirer.... Isn't it? \u2709 we sing, joke and even mention you when you are sad to make you happy.","protected":false,"verified":false,"followers_count":4483,"friends_count":2978,"listed_count":1,"favourites_count":33,"statuses_count":15183,"created_at":"Sat Jul 11 14:09:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640723234988642304\/mjDI5MyM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640723234988642304\/mjDI5MyM.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641840759101128704\/TfjX0IW0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641840759101128704\/TfjX0IW0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3370762941\/1441755325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:40 +0000 2015","id":663727914584825856,"id_str":"663727914584825856","text":"mariamyoussef3 https:\/\/t.co\/j5LT05Fmlh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":374741545,"id_str":"374741545","name":"MariiamYoussef","screen_name":"MariamYoussef5","location":"Egypt,Alexandria. ","url":null,"description":"instagram ; mariamyoussef5. snapchat;mariamyoussef3 ,Aries\u2648","protected":false,"verified":false,"followers_count":796,"friends_count":142,"listed_count":0,"favourites_count":362,"statuses_count":5843,"created_at":"Fri Sep 16 21:16:24 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663585420270243845\/V1to5JYR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663585420270243845\/V1to5JYR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/374741545\/1443274454","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663460305603792896,"quoted_status_id_str":"663460305603792896","quoted_status":{"created_at":"Sun Nov 08 20:57:18 +0000 2015","id":663460305603792896,"id_str":"663460305603792896","text":"Quote with your #snapchat account https:\/\/t.co\/49pa9rdbrn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3370762941,"id_str":"3370762941","name":"Morning \u2600Text \u2709","screen_name":"MoR_TxT","location":null,"url":"http:\/\/favstar.fm\/users\/MoR_TxT","description":"It's a hilarious thing to have a secret admirer.... Isn't it? \u2709 we sing, joke and even mention you when you are sad to make you happy.","protected":false,"verified":false,"followers_count":4483,"friends_count":2978,"listed_count":1,"favourites_count":33,"statuses_count":15182,"created_at":"Sat Jul 11 14:09:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A913C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/640723234988642304\/mjDI5MyM.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/640723234988642304\/mjDI5MyM.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641840759101128704\/TfjX0IW0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641840759101128704\/TfjX0IW0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3370762941\/1441755325","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"snapchat","indices":[16,25]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663460305402507265,"id_str":"663460305402507265","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVofIWsAEDV8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVofIWsAEDV8t.jpg","url":"https:\/\/t.co\/49pa9rdbrn","display_url":"pic.twitter.com\/49pa9rdbrn","expanded_url":"http:\/\/twitter.com\/MoR_TxT\/status\/663460305603792896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663460305402507265,"id_str":"663460305402507265","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTUVofIWsAEDV8t.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTUVofIWsAEDV8t.jpg","url":"https:\/\/t.co\/49pa9rdbrn","display_url":"pic.twitter.com\/49pa9rdbrn","expanded_url":"http:\/\/twitter.com\/MoR_TxT\/status\/663460305603792896\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j5LT05Fmlh","expanded_url":"https:\/\/twitter.com\/MoR_TxT\/status\/663460305603792896","display_url":"twitter.com\/MoR_TxT\/status\u2026","indices":[15,38]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j5LT05Fmlh","expanded_url":"https:\/\/twitter.com\/MoR_TxT\/status\/663460305603792896","display_url":"twitter.com\/MoR_TxT\/status\u2026","indices":[35,58]}],"user_mentions":[{"screen_name":"MariamYoussef5","name":"MariiamYoussef","id":374741545,"id_str":"374741545","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080129658"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286615244800,"id_str":"663728286615244800","text":"RT @codenumber044: \u30b1\u30fc\u30b8\u306a\u304f\u306a\u308b\u5206\u8efd\u91cf\u5316\u306b\u3082\u306a\u308b\u3057\u8efd\u91cf\u53a8\u306a\u4eba\u3084\u30d0\u30a4\u30af\u306e\u898b\u305f\u76ee\u3092\u6975\u529b\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u305f\u3044\u4eba\u5411\u3051","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117296078,"id_str":"117296078","name":"\u3068\u3053\u308d\u3067\u3053\u304a\u308a\u3061\u3083\u3093\uff20\u6c34\u897f\u308b33b","screen_name":"tokorode565","location":"\u6771\u4eac\u90fd","url":"http:\/\/tokorode.blog31.fc2.com\/","description":"\u30d6\u30eb\u30d9\uff0f\u81ea\u8ee2\u8eca\u95a2\u4fc2\u306e\u767a\u8a00\u304c\u30e1\u30a4\u30f3\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":2133,"friends_count":854,"listed_count":176,"favourites_count":159,"statuses_count":61920,"created_at":"Thu Feb 25 04:16:52 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/168300590\/NEC_0025.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/168300590\/NEC_0025.JPG","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652111521934213120\/rvUpTK76_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652111521934213120\/rvUpTK76_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117296078\/1397648406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:24 +0000 2015","id":663726587515244544,"id_str":"663726587515244544","text":"\u30b1\u30fc\u30b8\u306a\u304f\u306a\u308b\u5206\u8efd\u91cf\u5316\u306b\u3082\u306a\u308b\u3057\u8efd\u91cf\u53a8\u306a\u4eba\u3084\u30d0\u30a4\u30af\u306e\u898b\u305f\u76ee\u3092\u6975\u529b\u30b7\u30f3\u30d7\u30eb\u306b\u3057\u305f\u3044\u4eba\u5411\u3051","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":482992719,"id_str":"482992719","name":"\u307e\u3055\u304d \u306d\u304e \u3088\u3057\u3070","screen_name":"codenumber044","location":"TCD \u6803\u6728 one&only","url":"http:\/\/www.facebook.com\/oneandonly.bicycle.ncf","description":"\u30cd\u30ae\u30c8\u30ed\u30f3\u3067\u3059\u3002\u3044\u308d\u3044\u308d\u3084\u3063\u3066\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1904,"friends_count":1028,"listed_count":47,"favourites_count":4353,"statuses_count":57323,"created_at":"Sat Feb 04 14:41:19 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571678994887680002\/1khd4rnN_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571678994887680002\/1khd4rnN_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/482992719\/1431039282","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"codenumber044","name":"\u307e\u3055\u304d \u306d\u304e \u3088\u3057\u3070","id":482992719,"id_str":"482992719","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129661"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286611075072,"id_str":"663728286611075072","text":"\u884c\u304b\u306a\u3044\u884c\u304b\u306a\u3044\u8a50\u6b3a\u3002\n\n\u3067\u3082\u3069\u3093\u306a\u306b\u597d\u304d\u306a\u3082\u306e\u3067\u3082\u304d\u3063\u3068\u7d42\u308f\u308a\u304c\u6765\u308b\u3002\u305d\u306e\u5834\u3084\u4eba\u306e\u5909\u5316\u306b\u8010\u3048\u304d\u308c\u306a\u304f\u306a\u3063\u305f\u3068\u304d\u306d\u3002","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=org.mariotaku.twidere\" rel=\"nofollow\"\u003eTwidere for Android #4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":148118836,"id_str":"148118836","name":"\u3048\u307f@\u3061\u3073\u307e\u308b\u3061\u3083\u3093","screen_name":"prindaifukuchan","location":"ken\u3061\u3083\u3093\u306e\u304a\u3072\u3056\u3082\u3068","url":null,"description":"\u3061\u3063\u3061\u3083\u304f\u3066\u767d\u304f\u3066\u307e\u308b\u3044\u732b\u307f\u305f\u3044\u306a\u4eba\u9593\r\nL'Arc\u3010\u30b1\u30ce\u30bf\u3011\/Janne\u3010ABC\u3011\/BREAKERS\/\u6e05\u6625\u3010SADS\/\u9ed2\u5922\u3011\/BT\/YUKI\u3010\u30b8\u30e5\u30c7\u30a3\u30de\u30ea\u3011\/MUCC\/\u7537\u306e\u5a18\/\u30d4\u30af\u30d4\u30af\u30f3\u2606\u5148\u751f \r\n\r\n\u6d99\u304c\u67af\u308c\u3066\u3057\u307e\u3063\u305f\u3089\u3044\u3064\u307e\u3067\u3082\u7b11\u9854\u3067\u3002","protected":false,"verified":false,"followers_count":29,"friends_count":61,"listed_count":1,"favourites_count":2239,"statuses_count":1421,"created_at":"Tue May 25 22:11:26 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"679157","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000813057170\/8911625a196516b9cf27ff98366af112_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000813057170\/8911625a196516b9cf27ff98366af112_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/148118836\/1439955775","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129660"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286615252994,"id_str":"663728286615252994","text":"@taiyo1546 \u5fdc\u52df\u3057\u3066\u3044\u3044\u304b\u3057\u3089\uff1f","source":"\u003ca href=\"http:\/\/sinproject.net\/tweecha\/\" rel=\"nofollow\"\u003etweechaPrime\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663512680204926976,"in_reply_to_status_id_str":"663512680204926976","in_reply_to_user_id":58362904,"in_reply_to_user_id_str":"58362904","in_reply_to_screen_name":"taiyo1546","user":{"id":20409998,"id_str":"20409998","name":"\u3081\u304d\u3061","screen_name":"mekichi","location":"PSY\u306e\u56fd","url":null,"description":"\u9ad8\u5ea6\u306a\u6065\u7684\u751f\u547d\u4f53","protected":false,"verified":false,"followers_count":155,"friends_count":221,"listed_count":8,"favourites_count":2203,"statuses_count":16871,"created_at":"Mon Feb 09 02:33:20 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F2F2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000155392933\/syQhcTwt.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000155392933\/syQhcTwt.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/460688770337996800\/GsUaOkN6_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/460688770337996800\/GsUaOkN6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20409998\/1398672200","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"taiyo1546","name":"\u305f\u3044\u3088","id":58362904,"id_str":"58362904","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129661"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286606843904,"id_str":"663728286606843904","text":"@ukissSH_ayavin \u3086\u3081\u304b\u3063\u3066\u3044\u3046\u306e\u3067\u597d\u304d\u306b\u547c\u3093\u3058\u3083\u3063\u3066\u304f\u3060\u3055\u3044\ud83d\udc93\n\u308f\u305f\u3057\u306f\u306a\u3093\u3066\u547c\u3079\u3070\u3044\u3044\u3067\u3059\u304b\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661573122882056192,"in_reply_to_status_id_str":"661573122882056192","in_reply_to_user_id":775419823,"in_reply_to_user_id_str":"775419823","in_reply_to_screen_name":"ukissSH_ayavin","user":{"id":2724029006,"id_str":"2724029006","name":"\uc720\uba54\uce74","screen_name":"___1125xx","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":121,"friends_count":141,"listed_count":0,"favourites_count":89,"statuses_count":188,"created_at":"Mon Aug 11 14:18:55 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649612182234120196\/jHb0s3Ky_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649612182234120196\/jHb0s3Ky_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2724029006\/1445001053","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ukissSH_ayavin","name":"\u3042\u3084\u3072\u3087\u3093 . \uc544\uc57c\uce74","id":775419823,"id_str":"775419823","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286606991360,"id_str":"663728286606991360","text":"RT @VersosApagados: Erga a cabe\u00e7a, continue e tenha f\u00e9. \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2180886734,"id_str":"2180886734","name":"Eduardo Petrovi\u0107 \u2b50 \u2693","screen_name":"vlwduds","location":"Snap:iittsduds","url":null,"description":"Sagit\u00e1riano \u2650 N\u00e3o sei o que estou fazendo da minha vida","protected":false,"verified":false,"followers_count":838,"friends_count":314,"listed_count":2,"favourites_count":13938,"statuses_count":31923,"created_at":"Thu Nov 07 21:27:02 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559906543982755841\/stR3tfTw.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559906543982755841\/stR3tfTw.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663077783707459588\/Q-sQWwc5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663077783707459588\/Q-sQWwc5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2180886734\/1446924701","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 31 17:00:39 +0000 2015","id":660501650784649216,"id_str":"660501650784649216","text":"Erga a cabe\u00e7a, continue e tenha f\u00e9. \ud83d\ude4f","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":496178117,"id_str":"496178117","name":"\u2765","screen_name":"VersosApagados","location":"Brasil","url":"http:\/\/instagram.com\/apagadosversos","description":"\u2709 contatotwitter@outlook.com.br \u2709","protected":false,"verified":false,"followers_count":558789,"friends_count":1,"listed_count":289,"favourites_count":135,"statuses_count":31918,"created_at":"Sat Feb 18 17:56:07 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000162198471\/ly6WBI6z.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000162198471\/ly6WBI6z.jpeg","profile_background_tile":false,"profile_link_color":"336BCC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642082747104763904\/AMTsoBve_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642082747104763904\/AMTsoBve_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/496178117\/1435884193","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":311,"favorite_count":178,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VersosApagados","name":"\u2765","id":496178117,"id_str":"496178117","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080129659"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286632050694,"id_str":"663728286632050694","text":"RT @tyanibaaa: \u300c\u3044\u3044\u306d\u2665\u300d\u3067\u6295\u3052\u30ad\u30c3\u30b9\u3057\u3066\u304f\u308c\u308b\u304f\u308a\u305f\u3083\u306eGIF https:\/\/t.co\/4TLj5WC0w7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3164278789,"id_str":"3164278789","name":"\u5c1a\u4e5f@\u3078\u305f\u308c","screen_name":"naoya10ken","location":"\u5927\u5036\u5229\u4f3d\u7f85\u541b\u306e\u659c\u3081\u5f8c\u308d\uff08\u305a\u3093\u3060\u9905\u30e2\u30c1\uff09","url":null,"description":"\u4f0a\u9054\u7d44LOVE\u2661\u7279\u306b\u5927\u5036\u5229\u4f3d\u7f85\u304c\u53ef\u611b\u3059\u304e\u3066(\u00ba\ufe43\u00ba)\u2661 \u5036\u5229\u3061\u3083\u3093\u53f3\u304c\u597d\u7269\u3002 \u6210\u4eba\uff1f\u305d\u3093\u306a\u306e\u5927\u6614\u30b2\u30d5\u30f3\u30b4\u30d5\u30f3\uff01 \u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3067\u30b9\u30a4\u30de\u30bb\u30f3|\u03c9\uff65)\u5c0f\u7269\u3086\u3048\u53cd\u5fdc\u920d\u3044\u3067\u3059\u304c\u69cb\u3063\u3066\u3044\u305f\u3060\u3051\u308b\u3068\u5224\u308a\u3065\u3089\u304f\u559c\u3073\u307e\u3059\uff57\u3080\u3057\u308d\u69cb\u3063\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":14,"friends_count":47,"listed_count":1,"favourites_count":4276,"statuses_count":3226,"created_at":"Sun Apr 19 15:55:33 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639757590658834434\/2ZCwnRDl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639757590658834434\/2ZCwnRDl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3164278789\/1430835380","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:20:05 +0000 2015","id":663692531788460032,"id_str":"663692531788460032","text":"\u300c\u3044\u3044\u306d\u2665\u300d\u3067\u6295\u3052\u30ad\u30c3\u30b9\u3057\u3066\u304f\u308c\u308b\u304f\u308a\u305f\u3083\u306eGIF https:\/\/t.co\/4TLj5WC0w7","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521078337,"id_str":"521078337","name":"\uff83\uff7d\uff9e\uff99\uff93\uff7d\uff9e\uff99","screen_name":"tyanibaaa","location":null,"url":"http:\/\/twpf.jp\/tyanibaaa","description":"\u4f0a\u9054\u7d44\u307f\u3064\u304f\u308a\u6442\u98df\u304a\u8150\u308c\u304a\u3070\u3055\u3093\u3000\u8150\u30c4\u30a4\u3001\u30ad\u30e3\u30e9\u5d29\u58ca \u3001\u3057\u3087\u3046\u3082\u306a\u3044\u3067\u3059\u3000\u2622\u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u5fc5\u305a\u30c4\u30a4\u30d7\u30ed\u3092\u3054\u4e00\u8aad\u304a\u9858\u3044\u81f4\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":18648,"friends_count":515,"listed_count":369,"favourites_count":13232,"statuses_count":46708,"created_at":"Sun Mar 11 06:44:22 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"522886","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662964476493197313\/KosglJWQ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662964476493197313\/KosglJWQ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521078337\/1445170178","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":449,"favorite_count":1053,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663692529959727104,"id_str":"663692529959727104","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","url":"https:\/\/t.co\/4TLj5WC0w7","display_url":"pic.twitter.com\/4TLj5WC0w7","expanded_url":"http:\/\/twitter.com\/tyanibaaa\/status\/663692531788460032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":800,"h":532,"resize":"fit"},"medium":{"w":600,"h":399,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663692529959727104,"id_str":"663692529959727104","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","url":"https:\/\/t.co\/4TLj5WC0w7","display_url":"pic.twitter.com\/4TLj5WC0w7","expanded_url":"http:\/\/twitter.com\/tyanibaaa\/status\/663692531788460032\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":800,"h":532,"resize":"fit"},"medium":{"w":600,"h":399,"resize":"fit"}},"video_info":{"aspect_ratio":[200,133],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXo1vBUcAAAhmo.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tyanibaaa","name":"\uff83\uff7d\uff9e\uff99\uff93\uff7d\uff9e\uff99","id":521078337,"id_str":"521078337","indices":[3,13]}],"symbols":[],"media":[{"id":663692529959727104,"id_str":"663692529959727104","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","url":"https:\/\/t.co\/4TLj5WC0w7","display_url":"pic.twitter.com\/4TLj5WC0w7","expanded_url":"http:\/\/twitter.com\/tyanibaaa\/status\/663692531788460032\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":800,"h":532,"resize":"fit"},"medium":{"w":600,"h":399,"resize":"fit"}},"source_status_id":663692531788460032,"source_status_id_str":"663692531788460032","source_user_id":521078337,"source_user_id_str":"521078337"}]},"extended_entities":{"media":[{"id":663692529959727104,"id_str":"663692529959727104","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTXo1vBUcAAAhmo.png","url":"https:\/\/t.co\/4TLj5WC0w7","display_url":"pic.twitter.com\/4TLj5WC0w7","expanded_url":"http:\/\/twitter.com\/tyanibaaa\/status\/663692531788460032\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":226,"resize":"fit"},"large":{"w":800,"h":532,"resize":"fit"},"medium":{"w":600,"h":399,"resize":"fit"}},"source_status_id":663692531788460032,"source_status_id_str":"663692531788460032","source_user_id":521078337,"source_user_id_str":"521078337","video_info":{"aspect_ratio":[200,133],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTXo1vBUcAAAhmo.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080129665"} +{"created_at":"Mon Nov 09 14:42:09 +0000 2015","id":663728286623776768,"id_str":"663728286623776768","text":"https:\/\/t.co\/gMLhlbBRoS","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":258308000,"id_str":"258308000","name":"Kentons Kisumu","screen_name":"kentonskisumu","location":"Kisumu, Kenya","url":"http:\/\/kentons.net","description":"Largest Pharmaceutical wholesalers in Kenya. Try us out and you will max your profits","protected":false,"verified":false,"followers_count":197,"friends_count":48,"listed_count":1,"favourites_count":0,"statuses_count":587,"created_at":"Sun Feb 27 12:20:27 +0000 2011","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1638398967\/k-logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1638398967\/k-logo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728284488744960,"id_str":"663728284488744960","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJW7BUwAAHmln.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJW7BUwAAHmln.jpg","url":"https:\/\/t.co\/gMLhlbBRoS","display_url":"pic.twitter.com\/gMLhlbBRoS","expanded_url":"http:\/\/twitter.com\/kentonskisumu\/status\/663728286623776768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":413,"h":585,"resize":"fit"},"large":{"w":413,"h":585,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728284488744960,"id_str":"663728284488744960","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJW7BUwAAHmln.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJW7BUwAAHmln.jpg","url":"https:\/\/t.co\/gMLhlbBRoS","display_url":"pic.twitter.com\/gMLhlbBRoS","expanded_url":"http:\/\/twitter.com\/kentonskisumu\/status\/663728286623776768\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":481,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":413,"h":585,"resize":"fit"},"large":{"w":413,"h":585,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080129663"} +{"delete":{"status":{"id":639197912254259200,"id_str":"639197912254259200","user_id":59863335,"user_id_str":"59863335"},"timestamp_ms":"1447080129943"}} +{"delete":{"status":{"id":663670027745259520,"id_str":"663670027745259520","user_id":202596005,"user_id_str":"202596005"},"timestamp_ms":"1447080130181"}} +{"delete":{"status":{"id":663726227224576000,"id_str":"663726227224576000","user_id":3161835155,"user_id_str":"3161835155"},"timestamp_ms":"1447080130264"}} +{"delete":{"status":{"id":659672428218445824,"id_str":"659672428218445824","user_id":238109247,"user_id_str":"238109247"},"timestamp_ms":"1447080130475"}} +{"delete":{"status":{"id":663723970689134592,"id_str":"663723970689134592","user_id":2438346064,"user_id_str":"2438346064"},"timestamp_ms":"1447080130469"}} +{"delete":{"status":{"id":663724700497920001,"id_str":"663724700497920001","user_id":1893579552,"user_id_str":"1893579552"},"timestamp_ms":"1447080130572"}} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830655488,"id_str":"663728290830655488","text":"Odeio n\u00e3o ter foto","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1620456506,"id_str":"1620456506","name":"Japa","screen_name":"patrickmota6","location":null,"url":null,"description":"RJ 16\nDoes any of this love exist\nOr is it just a fire?","protected":false,"verified":false,"followers_count":1314,"friends_count":1239,"listed_count":1,"favourites_count":6912,"statuses_count":14307,"created_at":"Thu Jul 25 14:07:26 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646117611567247360\/npXnV7t__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646117611567247360\/npXnV7t__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1620456506\/1445112783","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830618624,"id_str":"663728290830618624","text":"RT @oppsyssa: @Mickaa_Oliveira como faz isso? '-'","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3348379203,"id_str":"3348379203","name":"Do Renan","screen_name":"Mickaa_Oliveira","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":661,"friends_count":634,"listed_count":0,"favourites_count":589,"statuses_count":3536,"created_at":"Sun Jun 28 03:26:56 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663514923583078400\/hQzKcQ2D_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663514923583078400\/hQzKcQ2D_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3348379203\/1446495716","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:26 +0000 2015","id":663726847574810624,"id_str":"663726847574810624","text":"@Mickaa_Oliveira como faz isso? '-'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726753991499777,"in_reply_to_status_id_str":"663726753991499777","in_reply_to_user_id":3348379203,"in_reply_to_user_id_str":"3348379203","in_reply_to_screen_name":"Mickaa_Oliveira","user":{"id":2861230145,"id_str":"2861230145","name":"Purpose","screen_name":"oppsyssa","location":null,"url":null,"description":"The goal is to be happy","protected":false,"verified":false,"followers_count":586,"friends_count":294,"listed_count":1,"favourites_count":2250,"statuses_count":21146,"created_at":"Tue Nov 04 19:28:21 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/627217985514680320\/syT0PZvG.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/627217985514680320\/syT0PZvG.png","profile_background_tile":true,"profile_link_color":"FF00BF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663375722824785920\/_Pu6uGHL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663375722824785920\/_Pu6uGHL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2861230145\/1447024494","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Mickaa_Oliveira","name":"Do Renan","id":3348379203,"id_str":"3348379203","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oppsyssa","name":"Purpose","id":2861230145,"id_str":"2861230145","indices":[3,12]},{"screen_name":"Mickaa_Oliveira","name":"Do Renan","id":3348379203,"id_str":"3348379203","indices":[14,30]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290792923137,"id_str":"663728290792923137","text":"todo sea por un puto tiempo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1367813054,"id_str":"1367813054","name":"Elias Quiroga","screen_name":"Eliasquiroga17","location":null,"url":null,"description":"amante de Lionel Andres Messi, River Plate y nada m\u00e1s","protected":false,"verified":false,"followers_count":437,"friends_count":396,"listed_count":0,"favourites_count":1769,"statuses_count":18128,"created_at":"Sat Apr 20 19:22:00 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/493932648817889281\/791-CPJu.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/493932648817889281\/791-CPJu.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659953194420854784\/TRqkurHs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659953194420854784\/TRqkurHs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1367813054\/1445612057","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080130657"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290826461184,"id_str":"663728290826461184","text":"My goal for today is to have dinner made, clean the bathroom and clean the kitchen. After I pass out for 6 hours. Deuces. \ud83d\ude34\ud83d\udca4","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":229192367,"id_str":"229192367","name":"Samantha Jo","screen_name":"Sam_Burdette","location":null,"url":null,"description":"Registered Nurse. Happily married to Daniel Hoffman. Mom to a 4 legged fur baby, Jax.","protected":false,"verified":false,"followers_count":321,"friends_count":641,"listed_count":3,"favourites_count":3464,"statuses_count":11744,"created_at":"Tue Dec 21 19:31:57 +0000 2010","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/357948934\/bspears.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/357948934\/bspears.jpg","profile_background_tile":true,"profile_link_color":"CC3366","profile_sidebar_border_color":"DBE9ED","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/601682945095684098\/ntibjMXe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/601682945095684098\/ntibjMXe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/229192367\/1432918632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130665"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290792910848,"id_str":"663728290792910848","text":"RT @lifenews_ru: \u0410\u0432\u0438\u0430\u0446\u0438\u044f \u0420\u0424 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u043b\u0430 \u043c\u0438\u043d\u043e\u043c\u0435\u0442\u043d\u0443\u044e \u043f\u043e\u0437\u0438\u0446\u0438\u044e \u00ab\u0414\u0436\u0430\u0431\u0445\u0430\u0442 \u0430\u043d-\u041d\u0443\u0441\u0440\u044b\u00bb \u0432 \u041b\u0430\u0442\u0430\u043a\u0438\u0438\nhttps:\/\/t.co\/Jd4s4Pu0hp https:\/\/t.co\/hBRzHgd8SA","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1344513589,"id_str":"1344513589","name":"\u041a\u0442\u043e \u0432\u0441\u0435 \u044d\u0442\u0438 \u043b\u044e\u0434\u0438?","screen_name":"world_is_mad","location":null,"url":null,"description":"\u0420\u0430\u0431\u043e\u0447\u0438\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430. \u041e\u0441\u0442\u0430\u043b\u044c\u043d\u043e\u0435 - @kersmer","protected":false,"verified":false,"followers_count":209,"friends_count":516,"listed_count":2,"favourites_count":3,"statuses_count":62855,"created_at":"Thu Apr 11 14:23:45 +0000 2013","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"3EAD34","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3506549308\/dcc0139230f5ba628a98216793213e18_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3506549308\/dcc0139230f5ba628a98216793213e18_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:04 +0000 2015","id":663726753756676097,"id_str":"663726753756676097","text":"\u0410\u0432\u0438\u0430\u0446\u0438\u044f \u0420\u0424 \u0443\u043d\u0438\u0447\u0442\u043e\u0436\u0438\u043b\u0430 \u043c\u0438\u043d\u043e\u043c\u0435\u0442\u043d\u0443\u044e \u043f\u043e\u0437\u0438\u0446\u0438\u044e \u00ab\u0414\u0436\u0430\u0431\u0445\u0430\u0442 \u0430\u043d-\u041d\u0443\u0441\u0440\u044b\u00bb \u0432 \u041b\u0430\u0442\u0430\u043a\u0438\u0438\nhttps:\/\/t.co\/Jd4s4Pu0hp https:\/\/t.co\/hBRzHgd8SA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":53016173,"id_str":"53016173","name":"LIFENEWS","screen_name":"lifenews_ru","location":null,"url":"http:\/\/lifenews.ru","description":"\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0439 \u043a\u0430\u043d\u0430\u043b LIFENEWS \u2013 \u043f\u0435\u0440\u0432\u044b\u0439 \u043f\u043e \u0441\u0440\u043e\u0447\u043d\u044b\u043c \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u043c! \u042d\u043a\u0441\u043a\u043b\u044e\u0437\u0438\u0432\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e \u043f\u043e \u0441\u0430\u043c\u044b\u043c \u0433\u043b\u0430\u0432\u043d\u044b\u043c \u0442\u0435\u043c\u0430\u043c \u0434\u043d\u044f","protected":false,"verified":true,"followers_count":497882,"friends_count":12,"listed_count":3066,"favourites_count":337,"statuses_count":86179,"created_at":"Thu Jul 02 09:12:27 +0000 2009","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/873723803\/92d349485caea9fd39d96272a21068ac.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/873723803\/92d349485caea9fd39d96272a21068ac.jpeg","profile_background_tile":false,"profile_link_color":"001F88","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661456477870268416\/JfUiojhQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661456477870268416\/JfUiojhQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/53016173\/1446538512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":3,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jd4s4Pu0hp","expanded_url":"http:\/\/lifenews.ru\/news\/168861","display_url":"lifenews.ru\/news\/168861","indices":[70,93]}],"user_mentions":[],"symbols":[],"media":[{"id":663726752313835520,"id_str":"663726752313835520","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","url":"https:\/\/t.co\/hBRzHgd8SA","display_url":"pic.twitter.com\/hBRzHgd8SA","expanded_url":"http:\/\/twitter.com\/lifenews_ru\/status\/663726753756676097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":660,"h":379,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726752313835520,"id_str":"663726752313835520","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","url":"https:\/\/t.co\/hBRzHgd8SA","display_url":"pic.twitter.com\/hBRzHgd8SA","expanded_url":"http:\/\/twitter.com\/lifenews_ru\/status\/663726753756676097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":660,"h":379,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/Jd4s4Pu0hp","expanded_url":"http:\/\/lifenews.ru\/news\/168861","display_url":"lifenews.ru\/news\/168861","indices":[87,110]}],"user_mentions":[{"screen_name":"lifenews_ru","name":"LIFENEWS","id":53016173,"id_str":"53016173","indices":[3,15]}],"symbols":[],"media":[{"id":663726752313835520,"id_str":"663726752313835520","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","url":"https:\/\/t.co\/hBRzHgd8SA","display_url":"pic.twitter.com\/hBRzHgd8SA","expanded_url":"http:\/\/twitter.com\/lifenews_ru\/status\/663726753756676097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":660,"h":379,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"}},"source_status_id":663726753756676097,"source_status_id_str":"663726753756676097","source_user_id":53016173,"source_user_id_str":"53016173"}]},"extended_entities":{"media":[{"id":663726752313835520,"id_str":"663726752313835520","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYH9vOXAAAN-Wh.jpg","url":"https:\/\/t.co\/hBRzHgd8SA","display_url":"pic.twitter.com\/hBRzHgd8SA","expanded_url":"http:\/\/twitter.com\/lifenews_ru\/status\/663726753756676097\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":195,"resize":"fit"},"large":{"w":660,"h":379,"resize":"fit"},"medium":{"w":600,"h":344,"resize":"fit"}},"source_status_id":663726753756676097,"source_status_id_str":"663726753756676097","source_user_id":53016173,"source_user_id_str":"53016173"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080130657"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290797080576,"id_str":"663728290797080576","text":"@null @teguhardiant Follbacks Yaa #aliando","source":"\u003ca href=\"http:\/\/detik.com\" rel=\"nofollow\"\u003e\u03a4witter for DetikNews\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":562540682,"id_str":"562540682","name":"Aliando Syarief","screen_name":"AIiandoKEPO","location":"indonesia","url":null,"description":"@alysyarief @AIiandoKEPO It's never too late to set things right. CP: kak @yhiyie23__ @alicious_resmi #DokArt Management","protected":false,"verified":false,"followers_count":69434,"friends_count":68468,"listed_count":16,"favourites_count":0,"statuses_count":396454,"created_at":"Wed Apr 25 02:58:51 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446297487305736194\/YWfpNK1o.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446297487305736194\/YWfpNK1o.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0E0E0E","profile_text_color":"4A66C1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637483966233112576\/MfUx2Zst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637483966233112576\/MfUx2Zst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562540682\/1440822986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"aliando","indices":[34,42]}],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]},{"screen_name":"teguhardiant","name":"teguhardian","id":4179980174,"id_str":"4179980174","indices":[6,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830659584,"id_str":"663728290830659584","text":"RT @llconfess: https:\/\/t.co\/KDagxmsZkQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961109466,"id_str":"961109466","name":"\u2606Megu\u2606","screen_name":"itsMegurun","location":"Essex, England","url":"https:\/\/www.youtube.com\/c\/Megurunn","description":"\uff9f\uff65* YouTube Person \/\/ Literal Nico Yazawa \/\/ Dorkface \/\/ Sparkly Poopbutt Princess \/\/ Bishounen Enthusiast \/\/ Idol Trash \/\/ Monster girl harem pls *\uff65\uff9f","protected":false,"verified":false,"followers_count":319,"friends_count":260,"listed_count":6,"favourites_count":5456,"statuses_count":18376,"created_at":"Tue Nov 20 20:03:17 +0000 2012","utc_offset":0,"time_zone":"Casablanca","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8F0000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/574314818926071809\/kcXUynr9.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/574314818926071809\/kcXUynr9.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661627227684085760\/QNTEKtif_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661627227684085760\/QNTEKtif_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961109466\/1446336217","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:38 +0000 2015","id":663724882916679680,"id_str":"663724882916679680","text":"https:\/\/t.co\/KDagxmsZkQ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3118849074,"id_str":"3118849074","name":"\u03bc\u2019s confessions","screen_name":"llconfess","location":null,"url":"http:\/\/llconfess.flavors.me\/","description":"DM us your love live confessions! Please read our rules before confessing!","protected":false,"verified":false,"followers_count":7523,"friends_count":5530,"listed_count":12,"favourites_count":43,"statuses_count":6565,"created_at":"Tue Mar 31 01:37:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/587448717604552705\/uInZ2x1Q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/587448717604552705\/uInZ2x1Q.png","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637861884918501377\/8G1KRmIF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637861884918501377\/8G1KRmIF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3118849074\/1428882861","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":36,"favorite_count":24,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663724881440305152,"id_str":"663724881440305152","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","url":"https:\/\/t.co\/KDagxmsZkQ","display_url":"pic.twitter.com\/KDagxmsZkQ","expanded_url":"http:\/\/twitter.com\/llconfess\/status\/663724882916679680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":383,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":524,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724881440305152,"id_str":"663724881440305152","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","url":"https:\/\/t.co\/KDagxmsZkQ","display_url":"pic.twitter.com\/KDagxmsZkQ","expanded_url":"http:\/\/twitter.com\/llconfess\/status\/663724882916679680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":383,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":524,"h":383,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"llconfess","name":"\u03bc\u2019s confessions","id":3118849074,"id_str":"3118849074","indices":[3,13]}],"symbols":[],"media":[{"id":663724881440305152,"id_str":"663724881440305152","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","url":"https:\/\/t.co\/KDagxmsZkQ","display_url":"pic.twitter.com\/KDagxmsZkQ","expanded_url":"http:\/\/twitter.com\/llconfess\/status\/663724882916679680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":383,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":524,"h":383,"resize":"fit"}},"source_status_id":663724882916679680,"source_status_id_str":"663724882916679680","source_user_id":3118849074,"source_user_id_str":"3118849074"}]},"extended_entities":{"media":[{"id":663724881440305152,"id_str":"663724881440305152","indices":[15,38],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGQ1rWcAAYQR2.jpg","url":"https:\/\/t.co\/KDagxmsZkQ","display_url":"pic.twitter.com\/KDagxmsZkQ","expanded_url":"http:\/\/twitter.com\/llconfess\/status\/663724882916679680\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":383,"resize":"fit"},"small":{"w":340,"h":248,"resize":"fit"},"large":{"w":524,"h":383,"resize":"fit"}},"source_status_id":663724882916679680,"source_status_id_str":"663724882916679680","source_user_id":3118849074,"source_user_id_str":"3118849074"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290826334208,"id_str":"663728290826334208","text":"\u6700\u60aa\u52b4\u57fa\u5c40\u306b\u8a34\u3048\u308b\u3057\u304b\u306a\u3044\u3082\u306e\u304b\uff1f #nhk24","source":"\u003ca href=\"http:\/\/theworld09.com\/\" rel=\"nofollow\"\u003eTheWorld\u2800\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":89652584,"id_str":"89652584","name":"\uf8ff\u901a\u52e4\u7279\u5feb\/\/\u306a\u3093\u3074\u3087\u3093\uf8ff","screen_name":"Nanpyong","location":"\u795e\u5948\u5ddd\u770c\u3001\u6642\u3005\u5927\u7530\u533a\u5185\u3002\u30db\u30fc\u30e0\u306f\u5927\u962a\u5e02\u5185","url":null,"description":"\u300c\u9244\u300d\u306a\u3078\u305f\u308c\u63d0\u7763\u3067\u3059\u3002\u6642\u3005\u6771\u9244\u6307\u4ee4\u3082\u3069\u304d\u306b\u306a\u308a\u307e\u3059\u304c\u3001\u6b63\u78ba\u306a\u60c5\u5831\u306f\u5404\u9244\u9053\u4f1a\u793e\u516c\u5f0fHP\u3084\u516c\u5f0fTwitter\u3067\u3054\u78ba\u8a8d\u4e0b\u3055\u3044\u3002\u203b\u3053\u3061\u3089\u3067\u4e0d\u9069\u5207\u3068\u5224\u65ad\u3057\u305f\u5834\u5408\u306f\u554f\u7b54\u7121\u7528\u3067\u30b9\u30d1\u30d6\u30ed\u3057\u307e\u3059\u306e\u3067\u3042\u3057\u304b\u3089\u305a\u3002\u203b\u3055\u3088\u306a\u3089\u306f\u30d6\u30ed\u30c3\u30af\u3067\u3002\u203bRT\u591a\u3081\u3067\u3059\uff7d\uff9d\uff8f\uff7e\uff9d\u3002\u203b\u9375\u4ed8\u304d\u306e\u65b0\u898f\u30d5\u30a9\u30ed\u30fc\u306f\u539f\u5247\u53d7\u3051\u4ed8\u3051\u307e\u305b\u3093\u3002\u3042\u3057\u304b\u3089\u305a\u627f\u77e5\u4e0b\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":564,"friends_count":312,"listed_count":18,"favourites_count":14483,"statuses_count":147019,"created_at":"Fri Nov 13 07:56:03 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/583101506636763137\/ytvlMTeH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/583101506636763137\/ytvlMTeH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/89652584\/1445162805","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nhk24","indices":[18,24]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130665"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290813902848,"id_str":"663728290813902848","text":"school: 8-2:30\nwork: 4:30-12","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1955593076,"id_str":"1955593076","name":"\u274e","screen_name":"333SOPH","location":"Kandahar, Afghanistan ","url":null,"description":null,"protected":false,"verified":false,"followers_count":818,"friends_count":299,"listed_count":4,"favourites_count":54255,"statuses_count":9676,"created_at":"Sat Oct 12 03:12:05 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654651005842264064\/RkCiq_8J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654651005842264064\/RkCiq_8J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1955593076\/1444109976","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"22d928cbeab790ad","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/22d928cbeab790ad.json","place_type":"city","name":"Allen","full_name":"Allen, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-96.736596,33.066464],[-96.736596,33.158169],[-96.608938,33.158169],[-96.608938,33.066464]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130662"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830483456,"id_str":"663728290830483456","text":"RT @sarona_ana_: \u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u0628\u0627\u0631\u0627\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647 \u0648\u0641\u0644\u0633\u0637\u064a\u0646 \n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u0631\u0627\u0628\u0637 \u064a\u0648\u062a\u064a\u0648\u0628 \u062c\u0648\u0627\u0644 \u0648\u0643\u0645\u0628\u064a\u0648\u062a\u0631\nhttps:\/\/t.co\/nV1hMcltm5\n.,.,,,,,","source":"\u003ca href=\"http:\/\/twitterdeck.org\/twitter_app\/\" rel=\"nofollow\"\u003e\u062a\u0648\u064a\u062a\u0631 \u062f\u064a\u0633\u0643\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3269622073,"id_str":"3269622073","name":"\u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647","screen_name":"bandar20089","location":null,"url":null,"description":"\u200f\u0641\u064a \u0630\u0645\u0647 \u0627\u0644\u0644\u0647#\u0628\u0646\u062f\u0631_\u0639\u0628\u062f\u0627\u0644\u0644\u0647_\u0627\u0644\u0631\u062e\u064a\u0645\u064a_\u0627\u0644\u0645\u0637\u064a\u0631\u064a \u0631\u062d\u0645\u0647 \u0627\u0644\u0644\u0647 \u0627\u0644\u062d\u0633\u0627\u0628 \u0635\u062f\u0642\u0647 \u062c\u0627\u0631\u064a\u0647 \u0644\u0647","protected":false,"verified":false,"followers_count":7,"friends_count":129,"listed_count":0,"favourites_count":0,"statuses_count":118,"created_at":"Mon Jul 06 02:47:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/617887747970207745\/gd5zW1XV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/617887747970207745\/gd5zW1XV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3269622073\/1436152506","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:03 +0000 2015","id":663727756597792770,"id_str":"663727756597792770","text":"\u0645\u0634\u0627\u0647\u062f\u0629 \u0645\u0628\u0627\u0631\u0627\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647 \u0648\u0641\u0644\u0633\u0637\u064a\u0646 \n#\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646\n\n\u0631\u0627\u0628\u0637 \u064a\u0648\u062a\u064a\u0648\u0628 \u062c\u0648\u0627\u0644 \u0648\u0643\u0645\u0628\u064a\u0648\u062a\u0631\nhttps:\/\/t.co\/nV1hMcltm5\n.,.,,,,,","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2682499375,"id_str":"2682499375","name":"\u0633\u0627\u0631\u0647 \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a","screen_name":"sarona_ana_","location":null,"url":"http:\/\/twitterdeck.org\/","description":"\u0645\u063a\u0631\u062f\u0629 \u062d\u0631\u0629.. \u0645\u0644\u062a\u0632\u0645\u0629 \u062f\u064a\u0646\u064a\u0627.. \u0645\u062a\u0627\u0628\u0639\u062a\u0643 \u062a\u0639\u0646\u064a \u0623\u0646\u0646\u064a \u0631\u0628\u062d\u062a \u0623\u062e\u0627 \u062c\u062f\u064a\u062f\u0627..","protected":false,"verified":false,"followers_count":93991,"friends_count":60402,"listed_count":75,"favourites_count":1499,"statuses_count":6334,"created_at":"Sat Jul 26 14:27:06 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653253513749753856\/yLcBhvYH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653253513749753856\/yLcBhvYH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2682499375\/1429826986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":3,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[32,48]}],"urls":[{"url":"https:\/\/t.co\/nV1hMcltm5","expanded_url":"http:\/\/goo.gl\/yx60oX","display_url":"goo.gl\/yx60oX","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0647_\u0641\u0644\u0633\u0637\u064a\u0646","indices":[49,65]}],"urls":[{"url":"https:\/\/t.co\/nV1hMcltm5","expanded_url":"http:\/\/goo.gl\/yx60oX","display_url":"goo.gl\/yx60oX","indices":[93,116]}],"user_mentions":[{"screen_name":"sarona_ana_","name":"\u0633\u0627\u0631\u0647 \u0627\u0644\u0642\u062d\u0637\u0627\u0646\u064a","id":2682499375,"id_str":"2682499375","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290813775872,"id_str":"663728290813775872","text":"\u5742\u7530\u5c0f\u592a\u90ce\u3088\u308a\u3082\u6842\u9280\u6642\u306e\u65b9\u304c\u512a\u52e2\u306b\u306a\u308a\u307e\u3057\u305f\u306d\ud83d\ude33\ud83d\ude33\ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1264493790,"id_str":"1264493790","name":"\u304d\u3085\u3046\uff0as09a","screen_name":"kyu_39","location":"(\u30fd\u30fb\u03c9\u30fb)\u304f\uff77\uff9e\uff9d\uff82\uff9e\uff97\uff6f","url":"http:\/\/twpf.jp\/kyu_39","description":"\u99b4\u308c\u99b4\u308c\u3057\u3044\u8c46\u8150\u30e1\u30f3\u30bf\u30eb\u304e\u3093\u3065\u3089\u30fc\u91ce\u90ce \u6210\u4eba\u6e08 \u6842\u3055\u3093\u304c\u611b\u3055\u308c\u3066\u308c\u3070\u306a\u3093\u3067\u3082\u30e2\u30b0\u30e2\u30b0 \u96d1\u7d75\u3092\u5782\u308c\u6d41\u3057\u307e\u3059 http:\/\/hydrangea-39.hatenadiary.jp","protected":false,"verified":false,"followers_count":387,"friends_count":166,"listed_count":18,"favourites_count":3810,"statuses_count":23635,"created_at":"Wed Mar 13 13:47:52 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663357781366300672\/pLcwOuDF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663357781366300672\/pLcwOuDF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1264493790\/1427734145","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130662"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290792923136,"id_str":"663728290792923136","text":"MUST READ: @JenniferJJacobs State of #Democrat race in #IACaucus https:\/\/t.co\/GTRcSGIMQJ #Hillary #FeelTHeBern #p2 #1U #UniteBlue #fitn","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2654779818,"id_str":"2654779818","name":"Campaign Register","screen_name":"CampaignReg","location":"Iowa, NewHampshire, SC, FL,etc","url":"http:\/\/www.campaignregister.com","description":"News frm #reporters On #IACaucus #FITN #campaign2016 Bus #politics & #journalism cmnts on #ccot #tcot #Uniteblue #teaparty #Hillary2016 http:\/\/t.co\/DfHbo4NKjk","protected":false,"verified":false,"followers_count":9187,"friends_count":915,"listed_count":45,"favourites_count":30,"statuses_count":9494,"created_at":"Thu Jul 17 20:18:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/490196658278252544\/ueAD6NRq_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/490196658278252544\/ueAD6NRq_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2654779818\/1405634093","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Democrat","indices":[37,46]},{"text":"IACaucus","indices":[55,64]},{"text":"Hillary","indices":[89,97]},{"text":"FeelTHeBern","indices":[98,110]},{"text":"p2","indices":[111,114]},{"text":"1U","indices":[115,118]},{"text":"UniteBlue","indices":[119,129]},{"text":"fitn","indices":[130,135]}],"urls":[{"url":"https:\/\/t.co\/GTRcSGIMQJ","expanded_url":"http:\/\/buff.ly\/1NlLpV6","display_url":"buff.ly\/1NlLpV6","indices":[65,88]}],"user_mentions":[{"screen_name":"JenniferJJacobs","name":"Jennifer Jacobs","id":15433452,"id_str":"15433452","indices":[11,27]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130657"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817966080,"id_str":"663728290817966080","text":"RT @FfAahH_97: \u0e0a\u0e2d\u0e1a\u0e42\u0e21\u0e40\u0e21\u0e49\u0e19\u0e40\u0e2d\u0e1e\u0e34\u0e49\u0e07\u0e44\u0e2d\u0e04\u0e48\u0e2d\u0e19\u0e08\u0e31\u0e07 \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e01\u0e47\u0e14\u0e39\u0e41\u0e1f\u0e19\u0e1a\u0e2d\u0e22\u0e41\u0e1f\u0e19\u0e40\u0e01\u0e34\u0e23\u0e4c\u0e25\u0e01\u0e31\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e38\u0e48\u0e19\u0e1e\u0e35\u0e48\u0e23\u0e38\u0e48\u0e19\u0e19\u0e49\u0e2d\u0e07\u0e43\u0e19\u0e27\u0e07\u0e01\u0e32\u0e23 \u0e41\u0e1f\u0e19\u0e04\u0e25\u0e31\u0e1a\u0e01\u0e47\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e31\u0e19 \u0e41\u0e0b\u0e27\u0e44\u0e1b\u0e41\u0e0b\u0e27\u0e21\u0e32 \u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e14\u0e35\u0e08\u0e31\u0e07 \u0e40\u0e2b\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520285422,"id_str":"520285422","name":"Triple's-B","screen_name":"BN_BEEN_","location":null,"url":null,"description":"[ -3 , 3 ]","protected":false,"verified":false,"followers_count":845,"friends_count":458,"listed_count":11,"favourites_count":8218,"statuses_count":150109,"created_at":"Sat Mar 10 10:34:19 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/653465403830636544\/Lc9XOTY_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/653465403830636544\/Lc9XOTY_.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"009999","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653913871137177600\/NVyuRiLu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653913871137177600\/NVyuRiLu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520285422\/1442638253","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:51:08 +0000 2015","id":663685248744427520,"id_str":"663685248744427520","text":"\u0e0a\u0e2d\u0e1a\u0e42\u0e21\u0e40\u0e21\u0e49\u0e19\u0e40\u0e2d\u0e1e\u0e34\u0e49\u0e07\u0e44\u0e2d\u0e04\u0e48\u0e2d\u0e19\u0e08\u0e31\u0e07 \u0e28\u0e34\u0e25\u0e1b\u0e34\u0e19\u0e01\u0e47\u0e14\u0e39\u0e41\u0e1f\u0e19\u0e1a\u0e2d\u0e22\u0e41\u0e1f\u0e19\u0e40\u0e01\u0e34\u0e23\u0e4c\u0e25\u0e01\u0e31\u0e19\u0e41\u0e1a\u0e1a\u0e23\u0e38\u0e48\u0e19\u0e1e\u0e35\u0e48\u0e23\u0e38\u0e48\u0e19\u0e19\u0e49\u0e2d\u0e07\u0e43\u0e19\u0e27\u0e07\u0e01\u0e32\u0e23 \u0e41\u0e1f\u0e19\u0e04\u0e25\u0e31\u0e1a\u0e01\u0e47\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e31\u0e19 \u0e41\u0e0b\u0e27\u0e44\u0e1b\u0e41\u0e0b\u0e27\u0e21\u0e32 \u0e23\u0e39\u0e49\u0e2a\u0e36\u0e01\u0e14\u0e35\u0e08\u0e31\u0e07 \u0e40\u0e2b\u0e21\u0e37\u0e2d\u0e19\u0e21\u0e35\u0e04\u0e19\u0e40\u0e2d\u0e47\u0e19\u0e14\u0e39\u0e25\u0e39\u0e01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3534177012,"id_str":"3534177012","name":"\u2661 \u0e40\u0e21\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e1a\u0e49\u0e32 \u2661","screen_name":"FfAahH_97","location":"\u0e01\u0e23\u0e38\u0e07\u0e40\u0e17\u0e1e\u0e21\u0e2b\u0e32\u0e19\u0e04\u0e23, \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22","url":null,"description":"' Pink Panda ' .\u2661 BOMI \u2661 | \u2661 DAHYUN \u2661 * #Apink \/\/ #TWICE \/\/ #YgNewGirlgroup *\n[ If you don't fight for what you want, don't cry for what you lost ] #Dek59","protected":false,"verified":false,"followers_count":14,"friends_count":72,"listed_count":0,"favourites_count":0,"statuses_count":361,"created_at":"Sat Sep 12 04:46:14 +0000 2015","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663294320405975040\/hi_I_0te_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663294320405975040\/hi_I_0te_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3534177012\/1446960427","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":44,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FfAahH_97","name":"\u2661 \u0e40\u0e21\u0e19\u0e40\u0e1b\u0e47\u0e19\u0e04\u0e19\u0e1a\u0e49\u0e32 \u2661","id":3534177012,"id_str":"3534177012","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817925121,"id_str":"663728290817925121","text":"RT @davidarynt1: Bawa mobil sambil main hape #kampungan @ikramarki","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26541119,"id_str":"26541119","name":"ikram wahyudi marki","screen_name":"ikramarki","location":"heyikram@gmail.com","url":"http:\/\/youtube.com\/ikramwahyudimarki","description":"Salah satu alasan aku jomblo itu biar kamu pacarin. - instagram: ikramarki #dumbassonvacation","protected":false,"verified":false,"followers_count":45184,"friends_count":316,"listed_count":234,"favourites_count":79,"statuses_count":124379,"created_at":"Wed Mar 25 17:17:12 +0000 2009","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0E0F0F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/771003623\/c198a6d3db3f9f93a708648afc7f8883.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/771003623\/c198a6d3db3f9f93a708648afc7f8883.jpeg","profile_background_tile":true,"profile_link_color":"31D8DE","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FCFCFC","profile_text_color":"898F8D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595123598513188864\/9mf7YZTH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595123598513188864\/9mf7YZTH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26541119\/1397361126","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:25 +0000 2015","id":663726841228693504,"id_str":"663726841228693504","text":"Bawa mobil sambil main hape #kampungan @ikramarki","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3040056493,"id_str":"3040056493","name":"David","screen_name":"davidarynt1","location":"lippo karawaci .","url":"http:\/\/davidarynt.blogspot.com","description":"( ^)o(^ ) ~ email : ehhdavid@gmail.com","protected":false,"verified":false,"followers_count":10801,"friends_count":117,"listed_count":1,"favourites_count":12,"statuses_count":4838,"created_at":"Tue Feb 24 18:21:49 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648521550572838912\/OmW4ducB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648521550572838912\/OmW4ducB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3040056493\/1444935624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"kampungan","indices":[28,38]}],"urls":[],"user_mentions":[{"screen_name":"ikramarki","name":"ikram wahyudi marki","id":26541119,"id_str":"26541119","indices":[39,49]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"kampungan","indices":[45,55]}],"urls":[],"user_mentions":[{"screen_name":"davidarynt1","name":"David","id":3040056493,"id_str":"3040056493","indices":[3,15]},{"screen_name":"ikramarki","name":"ikram wahyudi marki","id":26541119,"id_str":"26541119","indices":[56,66]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817970178,"id_str":"663728290817970178","text":"\u79c1\u306f\u305f\u3060\u3001\u4eba\u3088\u308a\u305d\u3046\u3044\u3046\u597d\u5947\u5fc3\u3068\u77e5\u8b58\u3092\u6301\u3063\u3066\u308b\u3060\u3051\u3060\u304b\u3089\u306a\u3093\u306e\u554f\u984c\u3082\u306a\u3044\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1374355416,"id_str":"1374355416","name":"\u30b7\u30e7\u30e1","screen_name":"piyaraaaaaa","location":"(\u30ea\u30f4\u30a1\u30a8\u30ec\u306e\u30d9\u30c3\u30c9\u3060\u3068\u4fe1\u3058\u3066\u308b)\u4e07\u5e74\u5e8a","url":null,"description":"\u4e8c\u6b21\u5143\u3068\u30db\u30e2\u3092\u611b\u3059\u308b\u4eba\u9593\u578b\u306e\u751f\u7269\u3067\u3059\u3002\u5909\u614b\u3067\u5909\u4eba\u3067\u3059\u3002\u30cd\u30bf\u30d0\u30ec\u30c0\u30e1\u7d76\u5bfe\u3002\u5358\u884c\u672c\u6d3e\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u9032\u6483(\u30ea\u30f4\u30a1\u30a8\u30ec)\u3068\u307e\u3069\u30de\u30ae(\u307b\u3080\u3089\u3061\u3083\u3093)\u306e\u305f\u3081\u306b\u4eca\u65e5\u3082\u751f\u304d\u308b\u300218\u2191\u3002","protected":false,"verified":false,"followers_count":27,"friends_count":53,"listed_count":2,"favourites_count":5513,"statuses_count":9876,"created_at":"Tue Apr 23 10:46:09 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584692717738786816\/OAWaRAXu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584692717738786816\/OAWaRAXu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1374355416\/1427286877","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817970177,"id_str":"663728290817970177","text":"@nkmrhfrhn Hahahahahahhahaha yaaaaa mcm mana kau tau?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727721848041472,"in_reply_to_status_id_str":"663727721848041472","in_reply_to_user_id":294952919,"in_reply_to_user_id_str":"294952919","in_reply_to_screen_name":"nkmrhfrhn","user":{"id":362359090,"id_str":"362359090","name":"\u0397\u0391\u00a7BI\u2122","screen_name":"MuhdHasbiAsh","location":"BKI\u2708\ufe0f LBN ","url":"https:\/\/www.facebook.com\/muhd.ashshiddeqy","description":"Panda everywhere","protected":false,"verified":false,"followers_count":799,"friends_count":364,"listed_count":0,"favourites_count":1115,"statuses_count":17439,"created_at":"Fri Aug 26 08:09:50 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"24181D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447698552668450816\/WXPgmGCp.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447698552668450816\/WXPgmGCp.jpeg","profile_background_tile":true,"profile_link_color":"99222A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"373737","profile_text_color":"FB840E","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/415743298393735169\/unI7ao6p_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/415743298393735169\/unI7ao6p_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/362359090\/1390690483","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"nkmrhfrhn","name":"nik amirah","id":294952919,"id_str":"294952919","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290822098944,"id_str":"663728290822098944","text":"RT @Charlotte_AB_: \u3044\u3088\u3044\u3088\u300eCharlotte Secret Live\u300f\u958b\u50ac\u3067\u3059\uff01\u304a\u697d\u3057\u307f\u306b\uff01 #\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8 https:\/\/t.co\/pvN8tR1R54","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2888213324,"id_str":"2888213324","name":"\u30a2\u30cb\u30e1\u57a2","screen_name":"pazumongati","location":null,"url":null,"description":"\u30d1\u30ba\u30c9\u30e9\/\u9b54\u738b\u69d8\/\u6cb3\u5408\u8358\/\u4ffa\u59b9\/\u52a3\u7b49\u751f \u4e2d2\u75c5\/BB\/\u30cf\u30a4\u30ad\u30e5\u30fc\/\u56db\u6708\u306f\u541b\u306e\u5618\/\u4ffa\u30ac\u30a4\u30eb\/\u30b7\u30e5\u30bf\u30b2\/\u9ed2\u5b50\/\u5f7c\u5973\u306e\u80b2\u3066\u65b9\/\u306a\u3069\u30a2\u30cb\u30e1\u597d\u304d\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":713,"friends_count":324,"listed_count":9,"favourites_count":3916,"statuses_count":7766,"created_at":"Mon Nov 03 06:50:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622269481427955712\/L0JTf89P_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622269481427955712\/L0JTf89P_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2888213324\/1434430699","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 09:56:52 +0000 2015","id":663294104483184640,"id_str":"663294104483184640","text":"\u3044\u3088\u3044\u3088\u300eCharlotte Secret Live\u300f\u958b\u50ac\u3067\u3059\uff01\u304a\u697d\u3057\u307f\u306b\uff01 #\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8 https:\/\/t.co\/pvN8tR1R54","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117115164,"id_str":"117115164","name":"Charlotte&AB!\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","screen_name":"Charlotte_AB_","location":null,"url":null,"description":"TV\u30a2\u30cb\u30e1\u300cCharlotte\uff08\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8\uff09\u300d&\u300cAngel Beats!\u300d\u5171\u540c\u306e\u516c\u5f0fTwitter\u3067\u3059\u3002\u9ebb\u679d \u51c6\u304c\u539f\u4f5c\u30fb\u5168\u8a71\u811a\u672c\u3092\u624b\u639b\u3051\u308b\u30a2\u30cb\u30e1Charlotte\u3068Angel Beats!\u306e\u6700\u65b0\u60c5\u5831\u3092\u304a\u5c4a\u3051\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":105541,"friends_count":15,"listed_count":2971,"favourites_count":0,"statuses_count":3891,"created_at":"Wed Feb 24 15:47:02 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/78606194\/bak10.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/78606194\/bak10.jpg","profile_background_tile":false,"profile_link_color":"40BEE4","profile_sidebar_border_color":"FF42AD","profile_sidebar_fill_color":"FFD6E5","profile_text_color":"616161","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/546998645376036864\/EB-UPwxJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/546998645376036864\/EB-UPwxJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117115164\/1425114199","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":366,"favorite_count":529,"entities":{"hashtags":[{"text":"\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8","indices":[39,46]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663294087886344192,"id_str":"663294087886344192","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","url":"https:\/\/t.co\/pvN8tR1R54","display_url":"pic.twitter.com\/pvN8tR1R54","expanded_url":"http:\/\/twitter.com\/Charlotte_AB_\/status\/663294104483184640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663294087886344192,"id_str":"663294087886344192","indices":[47,70],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","url":"https:\/\/t.co\/pvN8tR1R54","display_url":"pic.twitter.com\/pvN8tR1R54","expanded_url":"http:\/\/twitter.com\/Charlotte_AB_\/status\/663294104483184640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b7\u30e3\u30fc\u30ed\u30c3\u30c8","indices":[58,65]}],"urls":[],"user_mentions":[{"screen_name":"Charlotte_AB_","name":"Charlotte&AB!\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8","id":117115164,"id_str":"117115164","indices":[3,17]}],"symbols":[],"media":[{"id":663294087886344192,"id_str":"663294087886344192","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","url":"https:\/\/t.co\/pvN8tR1R54","display_url":"pic.twitter.com\/pvN8tR1R54","expanded_url":"http:\/\/twitter.com\/Charlotte_AB_\/status\/663294104483184640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663294104483184640,"source_status_id_str":"663294104483184640","source_user_id":117115164,"source_user_id_str":"117115164"}]},"extended_entities":{"media":[{"id":663294087886344192,"id_str":"663294087886344192","indices":[66,89],"media_url":"http:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTR-dWoVEAAV2ip.jpg","url":"https:\/\/t.co\/pvN8tR1R54","display_url":"pic.twitter.com\/pvN8tR1R54","expanded_url":"http:\/\/twitter.com\/Charlotte_AB_\/status\/663294104483184640\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663294104483184640,"source_status_id_str":"663294104483184640","source_user_id":117115164,"source_user_id_str":"117115164"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130664"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817925120,"id_str":"663728290817925120","text":"RT @shojun_lover: \u30b3\u30ec\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u3063\uff01\uff01\uff01\uff01\n\u305f\u307e\u3093\u306a\u30fc\u30fc\u30fc\u30fc\u3044\u3063\u2764\ufe0f\n\u30fe(*\u00b4\u2200\uff40*)\uff89\uff77\uff6c\uff6f\uff77\uff6c https:\/\/t.co\/PjNwX7ec2T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":840021710,"id_str":"840021710","name":"Shinna_Saku","screen_name":"Shinna_Nam","location":"BKK, Thailand","url":null,"description":"Love Love ....Arashi.... @^_^@ Love Love ....Animal.... @^_^@ \nI'm Thai. Nice to meet everyone!","protected":false,"verified":false,"followers_count":326,"friends_count":585,"listed_count":4,"favourites_count":21517,"statuses_count":64047,"created_at":"Sat Sep 22 16:14:01 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"86F7DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/571306146724474880\/uJ5ol8WZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/571306146724474880\/uJ5ol8WZ.jpeg","profile_background_tile":true,"profile_link_color":"0CCCBC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661909385405296640\/kSJroFP1_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661909385405296640\/kSJroFP1_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/840021710\/1441207980","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728184681086976,"id_str":"663728184681086976","text":"\u30b3\u30ec\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc\u3063\uff01\uff01\uff01\uff01\n\u305f\u307e\u3093\u306a\u30fc\u30fc\u30fc\u30fc\u3044\u3063\u2764\ufe0f\n\u30fe(*\u00b4\u2200\uff40*)\uff89\uff77\uff6c\uff6f\uff77\uff6c https:\/\/t.co\/PjNwX7ec2T","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":201124028,"id_str":"201124028","name":"\u307e\u3086\u3074","screen_name":"shojun_lover","location":null,"url":null,"description":"\u7fd4\u6f64\u304c\u3059\u304d\u2661\u3082\u3061\u308d\u3093\uff15\u4eba\u3067\u5d50\u304c\u5927\u597d\u304d\u3067\u3059\u266a \u6f64\u304f\u3093\u3068\u7fd4\u304f\u3093\u3001\u65e5\u306b\u3088\u3063\u3066LOVE\u306e\u76ee\u76db\u304c\u884c\u3063\u305f\u308a\u6765\u305f\u308a\u2026\u3075\u305f\u308a\u306e\u9593\u3067\u63fa\u308c\u52d5\u304f\u304b\u306a\u308a\u306e\u5927\u4eba\u3067\u3059(\u00b4\u0414` )\u300c5\u4eba\u3068\u3082\u5927\u597d\u304d\u2661\u300d\u304c\u57fa\u672c\u3067\u306a\u3044\u65b9\u306f\u3054\u3081\u3093\u306a\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":344,"friends_count":148,"listed_count":2,"favourites_count":3794,"statuses_count":11240,"created_at":"Mon Oct 11 03:50:39 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588321294141145089\/FEXq8rR1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588321294141145089\/FEXq8rR1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/201124028\/1442994732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728176401551361,"id_str":"663728176401551361","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","url":"https:\/\/t.co\/PjNwX7ec2T","display_url":"pic.twitter.com\/PjNwX7ec2T","expanded_url":"http:\/\/twitter.com\/shojun_lover\/status\/663728184681086976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728176401551361,"id_str":"663728176401551361","indices":[43,66],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","url":"https:\/\/t.co\/PjNwX7ec2T","display_url":"pic.twitter.com\/PjNwX7ec2T","expanded_url":"http:\/\/twitter.com\/shojun_lover\/status\/663728184681086976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shojun_lover","name":"\u307e\u3086\u3074","id":201124028,"id_str":"201124028","indices":[3,16]}],"symbols":[],"media":[{"id":663728176401551361,"id_str":"663728176401551361","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","url":"https:\/\/t.co\/PjNwX7ec2T","display_url":"pic.twitter.com\/PjNwX7ec2T","expanded_url":"http:\/\/twitter.com\/shojun_lover\/status\/663728184681086976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663728184681086976,"source_status_id_str":"663728184681086976","source_user_id":201124028,"source_user_id_str":"201124028"}]},"extended_entities":{"media":[{"id":663728176401551361,"id_str":"663728176401551361","indices":[61,84],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQoXVEAEU_rB.jpg","url":"https:\/\/t.co\/PjNwX7ec2T","display_url":"pic.twitter.com\/PjNwX7ec2T","expanded_url":"http:\/\/twitter.com\/shojun_lover\/status\/663728184681086976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":663728184681086976,"source_status_id_str":"663728184681086976","source_user_id":201124028,"source_user_id_str":"201124028"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290813751296,"id_str":"663728290813751296","text":"20 november 1999\nA female nakmuay was born","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1328510844,"id_str":"1328510844","name":"Boy","screen_name":"tapoipoipoi","location":"Malaysia","url":"http:\/\/instagram.com\/tapoii","description":"Scumbag Pro player \/ Analyst","protected":false,"verified":false,"followers_count":599,"friends_count":338,"listed_count":4,"favourites_count":1597,"statuses_count":9661,"created_at":"Fri Apr 05 06:29:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444891125313056768\/i3h0ZgGQ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444891125313056768\/i3h0ZgGQ.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E8E5CA","profile_text_color":"E8BAA2","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649247870063738881\/epFjuEHj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649247870063738881\/epFjuEHj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1328510844\/1440777786","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"bs","timestamp_ms":"1447080130662"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290809536512,"id_str":"663728290809536512","text":"RT @bluesherbet_: \u0e01\u0e23\u0e30\u0e17\u0e39\u0e49\u0e19\u0e35\u0e49 \u0e08\u0e02\u0e01\u0e17.\u0e42\u0e14\u0e19\u0e15\u0e21.\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e02\u0e49\u0e32\u0e2b\u0e49\u0e2d\u0e07\u0e40\u0e22\u0e47\u0e19 \u0e08\u0e07\u0e08\u0e33\u0e44\u0e27\u0e49\u0e27\u0e48\u0e32\n1. \u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e23\u0e35\u0e49\u0e22\u0e27\u0e46 \u0e42\u0e14\u0e19\u0e15\u0e21.\u0e40\u0e1e\u0e48\u0e07\u0e40\u0e25\u0e47\u0e07\n2. \u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e39\u0e14\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e01\u0e31\u0e1a\u0e15\u0e21.\nhttp\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":501819101,"id_str":"501819101","name":"\u0e1e\u0e35\u0e48\u0e40\u0e08\u0e41\u0e01\u0e49\u0e1a\u0e19\u0e01\u0e30\u0e19\u0e49\u0e2d\u0e07\u0e1f\u0e32\u0e19","screen_name":"icenantachita","location":null,"url":null,"description":"SONE&SNSD OT9 Sica&Fany 3PYulSicTi , TWICE Nayeon&Tzuyu","protected":false,"verified":false,"followers_count":184,"friends_count":493,"listed_count":2,"favourites_count":306,"statuses_count":28441,"created_at":"Fri Feb 24 14:20:43 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F057DE","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/889031912\/828056bbdd6f4c84606f84bcd730a79c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/889031912\/828056bbdd6f4c84606f84bcd730a79c.jpeg","profile_background_tile":true,"profile_link_color":"E857F0","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649516416886927360\/Q029E-e7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649516416886927360\/Q029E-e7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501819101\/1443692055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 01:43:43 +0000 2015","id":663169997364051968,"id_str":"663169997364051968","text":"\u0e01\u0e23\u0e30\u0e17\u0e39\u0e49\u0e19\u0e35\u0e49 \u0e08\u0e02\u0e01\u0e17.\u0e42\u0e14\u0e19\u0e15\u0e21.\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e40\u0e23\u0e35\u0e22\u0e01\u0e40\u0e02\u0e49\u0e32\u0e2b\u0e49\u0e2d\u0e07\u0e40\u0e22\u0e47\u0e19 \u0e08\u0e07\u0e08\u0e33\u0e44\u0e27\u0e49\u0e27\u0e48\u0e32\n1. \u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e23\u0e35\u0e49\u0e22\u0e27\u0e46 \u0e42\u0e14\u0e19\u0e15\u0e21.\u0e40\u0e1e\u0e48\u0e07\u0e40\u0e25\u0e47\u0e07\n2. \u0e2d\u0e22\u0e48\u0e32\u0e1e\u0e39\u0e14\u0e20\u0e32\u0e29\u0e32\u0e40\u0e01\u0e32\u0e2b\u0e25\u0e35\u0e01\u0e31\u0e1a\u0e15\u0e21.\nhttps:\/\/t.co\/OSvHtVMAmH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":357929941,"id_str":"357929941","name":"\u0e2e\u0e07\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e01\u0e30\u0e14\u0e49\u0e32\u0e27","screen_name":"bluesherbet_","location":"\uc720\uc544\uc778","url":"https:\/\/www.facebook.com\/bluesherbet","description":"\u0e23\u0e49\u0e2d\u0e22\u0e0a\u0e32\u0e22\u0e0a\u0e39\u0e49 \u0e01\u0e47\u0e44\u0e21\u0e48\u0e2a\u0e39\u0e49 \u0e22\u0e39\u0e2d\u0e32\u0e2d\u0e34\u0e19","protected":false,"verified":false,"followers_count":24925,"friends_count":175,"listed_count":50,"favourites_count":1244,"statuses_count":155626,"created_at":"Fri Aug 19 03:27:25 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/589266415393247232\/JnqzzEeF.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/589266415393247232\/JnqzzEeF.jpg","profile_background_tile":true,"profile_link_color":"9C78DE","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/603806992797310976\/MhoXPv5p_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/603806992797310976\/MhoXPv5p_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/357929941\/1435756291","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"0185a65a271b66e9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0185a65a271b66e9.json","place_type":"city","name":"\uc911\uad6c","full_name":"\uc11c\uc6b8 \uc911\uad6c","country_code":"KR","country":"\ub300\ud55c\ubbfc\uad6d","bounding_box":{"type":"Polygon","coordinates":[[[126.963036,37.542101],[126.963036,37.567048],[127.018855,37.567048],[127.018855,37.542101]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2600,"favorite_count":544,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OSvHtVMAmH","expanded_url":"http:\/\/pantip.com\/topic\/34413781","display_url":"pantip.com\/topic\/34413781","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/OSvHtVMAmH","expanded_url":"http:\/\/pantip.com\/topic\/34413781","display_url":"pantip.com\/topic\/34413781","indices":[139,140]}],"user_mentions":[{"screen_name":"bluesherbet_","name":"\u0e2e\u0e07\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e0a\u0e34\u0e01\u0e01\u0e30\u0e14\u0e49\u0e32\u0e27","id":357929941,"id_str":"357929941","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080130661"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817970179,"id_str":"663728290817970179","text":"\uc544\uc544\uc545(\uace0\ud1b5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2650564010,"id_str":"2650564010","name":"\ud074\ub7ed\ud074\ub804\ud074","screen_name":"Kll_uu","location":"\uc564\uad00\uacc4\uce90 \uc0ac\ub791\ud574","url":null,"description":"\uc5c4\uccad\ub09c \uc7a1\ub355\/FUB\uc790\uc720\/\ubb34\uba58\ud314\ub85c \ub9de\ud314\uc548\ud574\uc694\/\ucde8\ud5a5\uc874\uc911 *\uc54c\ud2f0\uad00\uae00 \ub9ce\uc544\uc694*\n\uc778\uc7a5 \ucfe0\ud2f0\ub2d8\u2665(@crowlo0513)","protected":false,"verified":false,"followers_count":91,"friends_count":250,"listed_count":0,"favourites_count":2860,"statuses_count":2145,"created_at":"Wed Jul 16 09:33:26 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652704657484058624\/LL8QxWDr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652704657484058624\/LL8QxWDr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2650564010\/1443786348","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830520320,"id_str":"663728290830520320","text":"RT @Dr_carebear: #\u0e19\u0e34\u0e2a\u0e31\u0e22\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2d\u0e49\u0e27\u0e19 1.\u0e14\u0e37\u0e48\u0e21\u0e19\u0e49\u0e33\u0e2d\u0e31\u0e14\u0e25\u0e21 \u0e0a\u0e32\u0e19\u0e21\u0e44\u0e02\u0e48\u0e21\u0e38\u0e01 \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e14\u0e37\u0e48\u0e21\u0e2b\u0e27\u0e32\u0e19\u0e46 \u0e17\u0e38\u0e01\u0e27\u0e31\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2744068411,"id_str":"2744068411","name":"\u0e19\u0e49\u0e2d\u0e07\u0e2e\u0e38\u0e19\u0e1e\u0e35\u0e48\u0e2e\u0e32\u0e19520\u2764\ufe0f","screen_name":"NetworkToon1145","location":null,"url":null,"description":"\u0e23\u0e2d\u0e2d\u0e36\u0e19\u0e40\u0e2e\u0e01\u0e25\u0e31\u0e1a\u0e21\u0e32\u0e40\u0e08\u0e2d\u0e01\u0e31\u0e191\u0e1b\u0e359\u0e40\u0e14\u0e37\u0e2d\u0e19... |HunHan| |ChanBaek| |KaiSoo||YulSic|#\u0e17\u0e35\u0e21\u0e42\u0e0b\u0e41\u0e2d\u0e25 #sone #\u0e40\u0e2d\u0e25\u0e1f\u0e4c #\u0e41\u0e21\u0e48\u0e22\u0e01\u0e22\u0e39\u0e25\u0e2a\u0e34\u0e01\u0e08\u0e30\u0e44\u0e21\u0e48\u0e15\u0e32\u0e22 (\u0e40\u0e1b\u0e47\u0e19\u0e40\u0e21\u0e19\u0e40\u0e0b\u0e2e\u0e38\u0e19\u0e17\u0e35\u0e48\u0e04\u0e25\u0e31\u0e48\u0e07\u0e44\u0e04\u0e25\u0e49\u0e25\u0e39\u0e48\u0e2b\u0e32\u0e19\u0e02\u0e19\u0e32\u0e14\u0e2b\u0e19\u0e31\u0e01)","protected":false,"verified":false,"followers_count":210,"friends_count":357,"listed_count":3,"favourites_count":506,"statuses_count":33026,"created_at":"Tue Aug 19 05:06:56 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662936996331958272\/EGf_S7Ql_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662936996331958272\/EGf_S7Ql_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2744068411\/1432209055","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:44:40 +0000 2015","id":663713820787867649,"id_str":"663713820787867649","text":"#\u0e19\u0e34\u0e2a\u0e31\u0e22\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2d\u0e49\u0e27\u0e19 1.\u0e14\u0e37\u0e48\u0e21\u0e19\u0e49\u0e33\u0e2d\u0e31\u0e14\u0e25\u0e21 \u0e0a\u0e32\u0e19\u0e21\u0e44\u0e02\u0e48\u0e21\u0e38\u0e01 \u0e40\u0e04\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e14\u0e37\u0e48\u0e21\u0e2b\u0e27\u0e32\u0e19\u0e46 \u0e17\u0e38\u0e01\u0e27\u0e31\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":123173156,"id_str":"123173156","name":"Drcarebear","screen_name":"Dr_carebear","location":null,"url":null,"description":"Bangkok Marathon 2014 Finisher, Osaka Marathon 2015","protected":false,"verified":false,"followers_count":236038,"friends_count":576,"listed_count":371,"favourites_count":153,"statuses_count":165203,"created_at":"Mon Mar 15 07:00:50 +0000 2010","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642825616765550592\/McfG8ykm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642825616765550592\/McfG8ykm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/123173156\/1437130719","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":198,"favorite_count":22,"entities":{"hashtags":[{"text":"\u0e19\u0e34\u0e2a\u0e31\u0e22\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2d\u0e49\u0e27\u0e19","indices":[0,18]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e19\u0e34\u0e2a\u0e31\u0e22\u0e17\u0e35\u0e48\u0e17\u0e33\u0e43\u0e2b\u0e49\u0e2d\u0e49\u0e27\u0e19","indices":[17,35]}],"urls":[],"user_mentions":[{"screen_name":"Dr_carebear","name":"Drcarebear","id":123173156,"id_str":"123173156","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290805387265,"id_str":"663728290805387265","text":"@lovemeeug \u3041\u3042\u30fc\u3001\u308f\u304b\u308b\u308f\u304b\u308b\u3081\u3063\u3061\u3083\u308f\u304b\u308b\uff01\u524d\u8a00\u3063\u3066\u305f\u512a\u7b49\u751f\u00d7\u30ae\u30e3\u30eb\u3068\u304b\u3057\u305f\u3044\u2026\u8a2d\u5b9a\u3042\u308c\u3070\u3067\u304d\u308b\u2026\u2026\uff01","source":"\u003ca href=\"http:\/\/twipple.jp\/\" rel=\"nofollow\"\u003e\u3064\u3044\u3063\u3077\u308b for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726019182882817,"in_reply_to_status_id_str":"663726019182882817","in_reply_to_user_id":1024334666,"in_reply_to_user_id_str":"1024334666","in_reply_to_screen_name":"lovemeeug","user":{"id":1666511514,"id_str":"1666511514","name":"\u30ed\u30fc\u30cf\u30f3\u30da\u30a4\u30f3(yyk)","screen_name":"yupanatu","location":"\u30b8\u30e5\u30f3\u30c9\u30c3\u30b0\u306e\u5177\u3002\u304a\u3001\u77e5\u3063\u3066\u308b\u6c17\u304c\u3059\u308b\uff01\u65b9\u3092\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u3002","url":null,"description":"\u30ed\u30fc\u30a2\u30a4\u30f3\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":58,"friends_count":62,"listed_count":1,"favourites_count":249,"statuses_count":5650,"created_at":"Tue Aug 13 02:14:25 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FCC800","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649548613924753408\/YZln7Q48_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649548613924753408\/YZln7Q48_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1666511514\/1431830892","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"lovemeeug","name":"\u308a\u304a","id":1024334666,"id_str":"1024334666","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130660"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290797088768,"id_str":"663728290797088768","text":"RT - i_DiabetesFree - #Healthcare NEW Metabolic Syndrome and Type 2 #Diabetes by Yi Tan Paperback Book (English) F\u2026 https:\/\/t.co\/avodu1QI0e","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3458288593,"id_str":"3458288593","name":"Richard E. Willard","screen_name":"RichardEWillard","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1802,"friends_count":40,"listed_count":860,"favourites_count":0,"statuses_count":147653,"created_at":"Sat Sep 05 10:21:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640108065702842369\/BYxWAIIP_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727761215721473,"quoted_status_id_str":"663727761215721473","quoted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727761215721473,"id_str":"663727761215721473","text":"#Healthcare NEW Metabolic Syndrome and Type 2 #Diabetes by Yi Tan Paperback Book (English) Fr https:\/\/t.co\/Ihkgynf7TJ #Diabetic","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":414511527,"id_str":"414511527","name":"Diabetes Free","screen_name":"i_DiabetesFree","location":null,"url":"http:\/\/WhizLife.com\/DiabetesFree","description":"No more suffering from #Diabetes. Imagine yourself feeling well again, just like in the old days. New! Free, Daily Diabetes #Health Updates.","protected":false,"verified":false,"followers_count":663,"friends_count":238,"listed_count":73,"favourites_count":0,"statuses_count":83820,"created_at":"Thu Nov 17 04:15:08 +0000 2011","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"A200FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600559225123672064\/0iz8hE-1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600559225123672064\/0iz8hE-1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/414511527\/1432022260","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Healthcare","indices":[0,11]},{"text":"Diabetes","indices":[46,55]},{"text":"Diabetic","indices":[118,127]}],"urls":[{"url":"https:\/\/t.co\/Ihkgynf7TJ","expanded_url":"http:\/\/dlvr.it\/ChfdGW","display_url":"dlvr.it\/ChfdGW","indices":[94,117]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Healthcare","indices":[22,33]},{"text":"Diabetes","indices":[68,77]}],"urls":[{"url":"https:\/\/t.co\/avodu1QI0e","expanded_url":"http:\/\/twitter.com\/i_DiabetesFree\/status\/663727761215721473","display_url":"twitter.com\/i_DiabetesFree\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290792771584,"id_str":"663728290792771584","text":"RT @pub_snkn: \u5200\u5320\u306e\u7686\u69d8\n\u30bc\u30f3\u30de\u30a4\u30d6\u30c3\u30af\u69d8\u3088\u308a\u6751\u96f2\u3054\u3046\u3055\u3093\u8ee2\u5165\u8a18\u5ff5\u306e\u30b0\u30ea\u30fc\u30c6\u30a3\u30f3\u30b0\u30a4\u30e9\u30b9\u30c8\u3092\u3054\u5bc4\u7a3f\u9802\u304d\u307e\u3057\u305f\u3002\n\u82a6\u8449\u3054\u3046\u3055\u3093\u306f\u307e\u3060\u8ee2\u5165\u3057\u3066\u6765\u3066\u304a\u308a\u307e\u305b\u3093\u304c\u3001\u300c\u771f\u5263\u5c11\u5973\u306e\u65e5\u672c\u5200\u5c55\u300d\u3067\u306f\u4e00\u8db3\u5148\u306b\u30d3\u30b8\u30e5\u30a2\u30eb\u304c\u516c\u958b\u3055\u308c\u3066\u304a\u308a\u307e\u3057\u305f\u306d\u3002#\u3057\u3093\u3051\u3093 https:\/\/t.co\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":562686897,"id_str":"562686897","name":"\u307f\u3064\u305f\u306b@\u8ab2\u91d1\u3067\u304d\u307e\u305b\u3093","screen_name":"cokowan","location":"\u5730\u7403\u4e0a","url":null,"description":"\u304a\u7d75\u63cf\u304d\u3057\u3066\u308b\u8266\u3053\u308c\u63d0\u7763 \u30ea\u30f3\u30ac\u306b\u3044\u308b\u3088 \u8266\u5a18\u306f\u5915\u5f35\u304c\u4e00\u756a \u57fa\u672cNL\u304c\u597d\u304d\u3060\u3051\u3069BLGL\u3082\u3044\u3051\u308b \u76f8\u6a21\u9bd6\u307e\u3093\u3070\u3061\u3083\u3093\u30e2\u30f3\u30da \u3042\u3093\u30b9\u30bf\u306a\u305a\u306aATM\u3067\u702c\u540d\u6cc9\u306e\u8c5a","protected":false,"verified":false,"followers_count":19,"friends_count":75,"listed_count":0,"favourites_count":6588,"statuses_count":4824,"created_at":"Wed Apr 25 05:03:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597410682049441792\/VsgZUWqk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597410682049441792\/VsgZUWqk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562686897\/1420214421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:42 +0000 2015","id":663728171695472640,"id_str":"663728171695472640","text":"\u5200\u5320\u306e\u7686\u69d8\n\u30bc\u30f3\u30de\u30a4\u30d6\u30c3\u30af\u69d8\u3088\u308a\u6751\u96f2\u3054\u3046\u3055\u3093\u8ee2\u5165\u8a18\u5ff5\u306e\u30b0\u30ea\u30fc\u30c6\u30a3\u30f3\u30b0\u30a4\u30e9\u30b9\u30c8\u3092\u3054\u5bc4\u7a3f\u9802\u304d\u307e\u3057\u305f\u3002\n\u82a6\u8449\u3054\u3046\u3055\u3093\u306f\u307e\u3060\u8ee2\u5165\u3057\u3066\u6765\u3066\u304a\u308a\u307e\u305b\u3093\u304c\u3001\u300c\u771f\u5263\u5c11\u5973\u306e\u65e5\u672c\u5200\u5c55\u300d\u3067\u306f\u4e00\u8db3\u5148\u306b\u30d3\u30b8\u30e5\u30a2\u30eb\u304c\u516c\u958b\u3055\u308c\u3066\u304a\u308a\u307e\u3057\u305f\u306d\u3002#\u3057\u3093\u3051\u3093 https:\/\/t.co\/WZhb2f47EY","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2933149375,"id_str":"2933149375","name":"\u3057\u3093\u3051\u3093!!\u516c\u5f0f","screen_name":"pub_snkn","location":null,"url":"http:\/\/www.dmm.com\/netgame\/feature\/shinken.html","description":"http:\/\/DMM.com\u30aa\u30f3\u30e9\u30a4\u30f3\u30b2\u30fc\u30e0\u300c\u3057\u3093\u3051\u3093!!\u300d\u516c\u5f0f\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u3059\u3002\n\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u306e\u304a\u77e5\u3089\u305b\u3084\u8033\u5bc4\u308a\u60c5\u5831\u306a\u3069\u3092\u3064\u3076\u3084\u304d\u307e\u3059\u3002\n\u30b2\u30fc\u30e0\u5185\u5bb9\u306b\u95a2\u3059\u308b\u3054\u8cea\u554f\u3084\u3054\u610f\u898b\u306b\u306f\u304a\u7b54\u3048\u3067\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u30b2\u30fc\u30e0\u753b\u9762\u4e0b\u306e\u300c\u304a\u554f\u3044\u5408\u308f\u305b\u300d\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":26119,"friends_count":5,"listed_count":813,"favourites_count":2493,"statuses_count":1816,"created_at":"Wed Dec 17 06:34:00 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545469484249530371\/yDffL5Je_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545469484249530371\/yDffL5Je_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933149375\/1418802173","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":23,"favorite_count":30,"entities":{"hashtags":[{"text":"\u3057\u3093\u3051\u3093","indices":[106,111]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728170722418692,"id_str":"663728170722418692","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","url":"https:\/\/t.co\/WZhb2f47EY","display_url":"pic.twitter.com\/WZhb2f47EY","expanded_url":"http:\/\/twitter.com\/pub_snkn\/status\/663728171695472640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":748,"resize":"fit"},"medium":{"w":547,"h":748,"resize":"fit"},"small":{"w":340,"h":464,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728170722418692,"id_str":"663728170722418692","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","url":"https:\/\/t.co\/WZhb2f47EY","display_url":"pic.twitter.com\/WZhb2f47EY","expanded_url":"http:\/\/twitter.com\/pub_snkn\/status\/663728171695472640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":748,"resize":"fit"},"medium":{"w":547,"h":748,"resize":"fit"},"small":{"w":340,"h":464,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u3057\u3093\u3051\u3093","indices":[120,125]}],"urls":[],"user_mentions":[{"screen_name":"pub_snkn","name":"\u3057\u3093\u3051\u3093!!\u516c\u5f0f","id":2933149375,"id_str":"2933149375","indices":[3,12]}],"symbols":[],"media":[{"id":663728170722418692,"id_str":"663728170722418692","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","url":"https:\/\/t.co\/WZhb2f47EY","display_url":"pic.twitter.com\/WZhb2f47EY","expanded_url":"http:\/\/twitter.com\/pub_snkn\/status\/663728171695472640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":748,"resize":"fit"},"medium":{"w":547,"h":748,"resize":"fit"},"small":{"w":340,"h":464,"resize":"fit"}},"source_status_id":663728171695472640,"source_status_id_str":"663728171695472640","source_user_id":2933149375,"source_user_id_str":"2933149375"}]},"extended_entities":{"media":[{"id":663728170722418692,"id_str":"663728170722418692","indices":[126,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQTNUYAQSX3h.png","url":"https:\/\/t.co\/WZhb2f47EY","display_url":"pic.twitter.com\/WZhb2f47EY","expanded_url":"http:\/\/twitter.com\/pub_snkn\/status\/663728171695472640\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":547,"h":748,"resize":"fit"},"medium":{"w":547,"h":748,"resize":"fit"},"small":{"w":340,"h":464,"resize":"fit"}},"source_status_id":663728171695472640,"source_status_id_str":"663728171695472640","source_user_id":2933149375,"source_user_id_str":"2933149375"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130657"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290805477376,"id_str":"663728290805477376","text":"beachy\ud83d\ude3b https:\/\/t.co\/he1WOMKIKh","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1410394243,"id_str":"1410394243","name":"iliana","screen_name":"melbourneniall","location":"lrh\/4","url":null,"description":"\u275dbaby i'm perfect, baby i'm perfect for you\u275e","protected":false,"verified":false,"followers_count":10149,"friends_count":8497,"listed_count":101,"favourites_count":36666,"statuses_count":67260,"created_at":"Tue May 07 14:30:04 +0000 2013","utc_offset":3600,"time_zone":"Berlin","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/889679289\/0076fc92f891ece1ae2eff68dea157ac.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/889679289\/0076fc92f891ece1ae2eff68dea157ac.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662730052740640768\/U3sIT5I5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662730052740640768\/U3sIT5I5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1410394243\/1446841041","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663514551703355392,"quoted_status_id_str":"663514551703355392","quoted_status":{"created_at":"Mon Nov 09 00:32:51 +0000 2015","id":663514551703355392,"id_str":"663514551703355392","text":"what theme do you want for your wedding?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4098121394,"id_str":"4098121394","name":"questions about you","screen_name":"questionyrself","location":null,"url":null,"description":"owners: @shannonjpgg & @jessicxlussier quote the tweet with your answer \u2728","protected":false,"verified":false,"followers_count":9495,"friends_count":362,"listed_count":9,"favourites_count":686,"statuses_count":220,"created_at":"Mon Nov 02 04:37:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663099223026495488\/ACettU8m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4098121394\/1446930229","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/he1WOMKIKh","expanded_url":"https:\/\/twitter.com\/questionyrself\/status\/663514551703355392","display_url":"twitter.com\/questionyrself\u2026","indices":[8,31]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130660"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290796929028,"id_str":"663728290796929028","text":"You might not realize there are conflicts brewing on the home ... More for Cancer https:\/\/t.co\/a3gS7CQXA8","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":287249795,"id_str":"287249795","name":"Mar","screen_name":"Marr_thekingg","location":"D(M)V","url":null,"description":"\u264b #Music is life Class of 2016\u2757\ufe0f","protected":false,"verified":false,"followers_count":511,"friends_count":467,"listed_count":0,"favourites_count":878,"statuses_count":36644,"created_at":"Sun Apr 24 16:27:50 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635856885338480640\/nfzrLxQg_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635856885338480640\/nfzrLxQg_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/287249795\/1407725021","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a3gS7CQXA8","expanded_url":"http:\/\/bit.ly\/yk3b9m","display_url":"bit.ly\/yk3b9m","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290796933120,"id_str":"663728290796933120","text":"\u0e43\u0e04\u0e23\u0e2d\u0e2d\u0e19\u0e44\u0e25\u0e19\u0e4c\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e49\u0e32\u0e07\u0e04\u0e23\u0e31\u0e1a \u0e02\u0e2d\u0e40\u0e2a\u0e35\u0e22\u0e07\u0e2b\u0e19\u0e48\u0e2d\u0e22!!","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":358153792,"id_str":"358153792","name":"LeeJoon Bot\u2665","screen_name":"Leejoon0207","location":"Seoul,.Korea","url":null,"description":"Ima BOT :) \u00a6 \u0e2d\u0e31\u0e19\u0e22\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e1a \u0e1c\u0e21\u0e40\u0e1b\u0e47\u0e19\u0e1a\u0e2d\u0e17\u0e2d\u0e35\u0e08\u0e38\u0e19\u0e27\u0e07 MBLAQ \u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a ^^ \u0e1f\u0e2d\u0e25\u0e01\u0e25\u0e31\u0e1a\u0e17\u0e38\u0e01\u0e04\u0e19\u0e19\u0e30 \u00a6 \u0e43\u0e04\u0e23\u0e27\u0e48\u0e32\u0e1c\u0e21\u0e40\u0e2d\u0e4b\u0e2d \u0e44\u0e21\u0e48\u0e08\u0e23\u0e34\u0e07\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a! \u0e1c\u0e21\u0e19\u0e48\u0e30\u0e09\u0e25\u0e32\u0e14\u0e41\u0e1a\u0e1a\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e15\u0e48\u0e32\u0e07\u0e2b\u0e32\u0e01 :p","protected":false,"verified":false,"followers_count":1729,"friends_count":2045,"listed_count":5,"favourites_count":1,"statuses_count":33917,"created_at":"Fri Aug 19 13:29:20 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDEDED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/315577899\/tumblr_lo17njE8LC1qehcfqo1_500_large.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/315577899\/tumblr_lo17njE8LC1qehcfqo1_500_large.png","profile_background_tile":true,"profile_link_color":"94CFF7","profile_sidebar_border_color":"2E2D2E","profile_sidebar_fill_color":"737173","profile_text_color":"638EBD","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1503417446\/av-6605_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1503417446\/av-6605_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290801172481,"id_str":"663728290801172481","text":"In the United Kingdom, the film was released on July 29, 2011 by Optimum Releasing. #FoodandcookingSOMADaily","source":"\u003ca href=\"http:\/\/consuela995.wordpress.com\" rel=\"nofollow\"\u003eConsuela9954362\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4000388260,"id_str":"4000388260","name":"Consuela Hodges","screen_name":"Consuela995","location":null,"url":null,"description":"Cats and birds \u2736 Random acts of travel \u2736 Twitter junkie \u2736 Cinematographer \u2736 Non-repentant music lover","protected":false,"verified":false,"followers_count":6,"friends_count":45,"listed_count":0,"favourites_count":2,"statuses_count":31,"created_at":"Tue Oct 20 07:19:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656369458227707904\/kVeK96bu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656369458227707904\/kVeK96bu_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"FoodandcookingSOMADaily","indices":[84,108]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130659"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290805362689,"id_str":"663728290805362689","text":"RT @snoxxssong: #\u0e41\u0e17\u0e42\u0e2d \u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e1e\u0e48\u0e2d\u0e27\u0e48\u0e32 '\u0e19\u0e32\u0e22 \u0e01\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19\u0e40\u0e23\u0e2d\u0e30!' \u0e2d\u0e2b 5555555555555555555555 \nhttps:\/\/t.co\/BWLoUB1P1K","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":984772272,"id_str":"984772272","name":"Anniie\u2606\u5f61","screen_name":"Anniiebemind","location":"Bkk, Thailand","url":null,"description":"KMH.SY.KYS. \u0e19\u0e49\u0e2d\u0e07\u0e21\u0e34\u0e19\u2764\u0e1e\u0e35\u0e48\u0e22\u0e2d\u0e25\u2764\u0e04\u0e22\u0e2d\u0e07\u0e0b\u0e39\u2764\n\u0e21\u0e35\u0e0a\u0e35\u0e27\u0e34\u0e15\u0e2d\u0e22\u0e39\u0e48\u0e1a\u0e19\u0e1c\u0e37\u0e19\u0e14\u0e34\u0e19\u0e17\u0e35\u0e48\u0e27\u0e48\u0e32\u0e07\u0e40\u0e1b\u0e25\u0e48\u0e32... \u0e2a\u0e38\u0e14\u0e17\u0e49\u0e32\u0e22\u0e40\u0e23\u0e32\u0e17\u0e38\u0e01\u0e04\u0e19\u0e25\u0e49\u0e27\u0e19\u0e40\u0e2b\u0e25\u0e37\u0e2d\u0e41\u0e15\u0e48\u0e40\u0e16\u0e49\u0e32\u0e01\u0e23\u0e30\u0e14\u0e39\u0e01","protected":false,"verified":false,"followers_count":180,"friends_count":279,"listed_count":0,"favourites_count":1842,"statuses_count":54776,"created_at":"Sun Dec 02 15:04:13 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/476717411761004545\/Uh-tuBJR.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/476717411761004545\/Uh-tuBJR.jpeg","profile_background_tile":true,"profile_link_color":"E66172","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657220597466861569\/C2H2cmpJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657220597466861569\/C2H2cmpJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/984772272\/1402493390","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:00:06 +0000 2015","id":663219420852948992,"id_str":"663219420852948992","text":"#\u0e41\u0e17\u0e42\u0e2d \u0e1e\u0e39\u0e14\u0e01\u0e31\u0e1a\u0e1e\u0e48\u0e2d\u0e27\u0e48\u0e32 '\u0e19\u0e32\u0e22 \u0e01\u0e34\u0e19\u0e02\u0e2d\u0e07\u0e09\u0e31\u0e19\u0e40\u0e23\u0e2d\u0e30!' \u0e2d\u0e2b 5555555555555555555555 \nhttps:\/\/t.co\/BWLoUB1P1K","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1335770048,"id_str":"1335770048","name":"\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e14\u0e34\u0e27\u0e25\u0e48\u0e32\u309c","screen_name":"snoxxssong","location":"\u0e2b\u0e25\u0e07\u0e17\u0e32\u0e07","url":"http:\/\/ask.fm\/snoxxssong","description":"\u2022 \u0e27\u0e31\u0e15\u0e16\u0e38\u0e2d\u0e31\u0e19\u0e15\u0e23\u0e32\u0e22 ' \u0e2b\u0e49\u0e32\u0e21\u0e40\u0e02\u0e49\u0e32\u0e43\u0e01\u0e25\u0e49 \u2022 | scene \u2661 https:\/\/goo.gl\/eA3A52","protected":false,"verified":false,"followers_count":747,"friends_count":48,"listed_count":3,"favourites_count":1336,"statuses_count":40067,"created_at":"Mon Apr 08 04:51:48 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721166176059392\/_XsXlkWa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721166176059392\/_XsXlkWa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1335770048\/1420780148","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2399,"favorite_count":384,"entities":{"hashtags":[{"text":"\u0e41\u0e17\u0e42\u0e2d","indices":[0,5]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663216047659466753,"id_str":"663216047659466753","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","url":"https:\/\/t.co\/BWLoUB1P1K","display_url":"pic.twitter.com\/BWLoUB1P1K","expanded_url":"http:\/\/twitter.com\/TAEOHrang\/status\/663216178383355904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663216178383355904,"source_status_id_str":"663216178383355904","source_user_id":2888632928,"source_user_id_str":"2888632928"}]},"extended_entities":{"media":[{"id":663216047659466753,"id_str":"663216047659466753","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","url":"https:\/\/t.co\/BWLoUB1P1K","display_url":"pic.twitter.com\/BWLoUB1P1K","expanded_url":"http:\/\/twitter.com\/TAEOHrang\/status\/663216178383355904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663216178383355904,"source_status_id_str":"663216178383355904","source_user_id":2888632928,"source_user_id_str":"2888632928","video_info":{"aspect_ratio":[16,9],"duration_millis":29750,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/640x360\/3hKx9mzx4J302wQN.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/320x180\/xlTVxoT8W7SVPd9n.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/1280x720\/IltWzrOBTBkBWPaC.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/pl\/B_9su_qDGVvaY8B8.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/640x360\/3hKx9mzx4J302wQN.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/pl\/B_9su_qDGVvaY8B8.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e41\u0e17\u0e42\u0e2d","indices":[16,21]}],"urls":[],"user_mentions":[{"screen_name":"snoxxssong","name":"\u0e40\u0e2d\u0e2d\u0e23\u0e4c\u0e14\u0e34\u0e27\u0e25\u0e48\u0e32\u309c","id":1335770048,"id_str":"1335770048","indices":[3,14]}],"symbols":[],"media":[{"id":663216047659466753,"id_str":"663216047659466753","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","url":"https:\/\/t.co\/BWLoUB1P1K","display_url":"pic.twitter.com\/BWLoUB1P1K","expanded_url":"http:\/\/twitter.com\/TAEOHrang\/status\/663216178383355904\/video\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663216178383355904,"source_status_id_str":"663216178383355904","source_user_id":2888632928,"source_user_id_str":"2888632928"}]},"extended_entities":{"media":[{"id":663216047659466753,"id_str":"663216047659466753","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663216047659466753\/pu\/img\/GaJbXFz5UhG7X7H-.jpg","url":"https:\/\/t.co\/BWLoUB1P1K","display_url":"pic.twitter.com\/BWLoUB1P1K","expanded_url":"http:\/\/twitter.com\/TAEOHrang\/status\/663216178383355904\/video\/1","type":"video","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":338,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663216178383355904,"source_status_id_str":"663216178383355904","source_user_id":2888632928,"source_user_id_str":"2888632928","video_info":{"aspect_ratio":[16,9],"duration_millis":29750,"variants":[{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/640x360\/3hKx9mzx4J302wQN.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/320x180\/xlTVxoT8W7SVPd9n.mp4"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/1280x720\/IltWzrOBTBkBWPaC.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/pl\/B_9su_qDGVvaY8B8.m3u8"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/vid\/640x360\/3hKx9mzx4J302wQN.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663216047659466753\/pu\/pl\/B_9su_qDGVvaY8B8.mpd"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080130660"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290817970176,"id_str":"663728290817970176","text":"PHOTOS: El Rufai Surprises One of His Wives With Flowers On Her Birthday: Kaduna state Govern... https:\/\/t.co\/mNozhPGXzQ @GoldRushNews247","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159377915,"id_str":"159377915","name":"Arewa olori","screen_name":"sexxieolori","location":"London, Lagos , Houston","url":"http:\/\/www.goldrushnigeria.blogspot.ng","description":"G\u2022E\u2022M\u2022I\u2022N\u2022I:Passionate,Nice,Luv is one of a kind,Lover not a fighter,Trustworthy,Always happy,Talkative,Outgoing,Very 4giving,Luvs 2 make out","protected":false,"verified":false,"followers_count":146,"friends_count":122,"listed_count":13,"favourites_count":3,"statuses_count":24646,"created_at":"Fri Jun 25 06:04:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/545159747700555776\/qIc3peOh_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/545159747700555776\/qIc3peOh_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159377915\/1418811195","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mNozhPGXzQ","expanded_url":"http:\/\/bit.ly\/1Sc91iH","display_url":"bit.ly\/1Sc91iH","indices":[97,120]}],"user_mentions":[{"screen_name":"Goldrushnews247","name":"GoldRush News 247","id":2870499647,"id_str":"2870499647","indices":[121,137]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130663"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290797101056,"id_str":"663728290797101056","text":"@Fagulouso okay I'll try to find it but I dunno.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728165462773761,"in_reply_to_status_id_str":"663728165462773761","in_reply_to_user_id":894210398,"in_reply_to_user_id_str":"894210398","in_reply_to_screen_name":"Fagulouso","user":{"id":990052855,"id_str":"990052855","name":"Raiquia","screen_name":"Vampanella","location":"~~OLIWIA WAS HERE~~ *flails*","url":null,"description":"met Masashi Kishimoto 10\/08\/15 ~\u2606~\u2606~ never go with a predator to a second location. ~\u2606~\u2606~ don't let failure show in your face. SURPRISE HELLO!!!","protected":false,"verified":false,"followers_count":723,"friends_count":329,"listed_count":10,"favourites_count":8468,"statuses_count":135439,"created_at":"Wed Dec 05 02:47:30 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663513102038736896\/_M-6mtEo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663513102038736896\/_M-6mtEo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/990052855\/1446109385","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Fagulouso","name":"\u26be","id":894210398,"id_str":"894210398","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290822160384,"id_str":"663728290822160384","text":"RT @VTLTeam: #KamalHaasan about #Vijay https:\/\/t.co\/nCas4xkHMk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3029589496,"id_str":"3029589496","name":"Pandiyan","screen_name":"pandiyanjm","location":"Chennai, Tamil Nadu","url":null,"description":"About me?..check out my tweets better.","protected":false,"verified":false,"followers_count":46,"friends_count":122,"listed_count":1,"favourites_count":414,"statuses_count":947,"created_at":"Wed Feb 11 05:15:33 +0000 2015","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661938201536233472\/Cz6T4zRD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661938201536233472\/Cz6T4zRD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3029589496\/1430642732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:34:48 +0000 2015","id":663726435505303552,"id_str":"663726435505303552","text":"#KamalHaasan about #Vijay https:\/\/t.co\/nCas4xkHMk","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":316404637,"id_str":"316404637","name":"Vijay The Legend","screen_name":"VTLTeam","location":"Chennai","url":"http:\/\/vijaythelegend.com","description":"http:\/\/www.Facebook.com\/VTLteam","protected":false,"verified":false,"followers_count":20534,"friends_count":5,"listed_count":17,"favourites_count":251,"statuses_count":17627,"created_at":"Mon Jun 13 11:59:47 +0000 2011","utc_offset":19800,"time_zone":"Chennai","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613246028838342656\/FQymYYs4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613246028838342656\/FQymYYs4.jpg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657476938554982400\/PxJGe9yz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657476938554982400\/PxJGe9yz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/316404637\/1445436943","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":28,"favorite_count":22,"entities":{"hashtags":[{"text":"KamalHaasan","indices":[0,12]},{"text":"Vijay","indices":[19,25]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663726225081282560,"id_str":"663726225081282560","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","url":"https:\/\/t.co\/nCas4xkHMk","display_url":"pic.twitter.com\/nCas4xkHMk","expanded_url":"http:\/\/twitter.com\/VTLTeam\/status\/663726435505303552\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":398,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":292,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663726225081282560,"id_str":"663726225081282560","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","url":"https:\/\/t.co\/nCas4xkHMk","display_url":"pic.twitter.com\/nCas4xkHMk","expanded_url":"http:\/\/twitter.com\/VTLTeam\/status\/663726435505303552\/video\/1","type":"video","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":398,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":292,"resize":"fit"}},"video_info":{"aspect_ratio":[199,146],"duration_millis":18600,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/pl\/cOAhApsKrIKXfvSC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/pl\/cOAhApsKrIKXfvSC.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/vid\/244x180\/Mt7gdHQwqCtJBCls.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/vid\/244x180\/Mt7gdHQwqCtJBCls.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"KamalHaasan","indices":[13,25]},{"text":"Vijay","indices":[32,38]}],"urls":[],"user_mentions":[{"screen_name":"VTLTeam","name":"Vijay The Legend","id":316404637,"id_str":"316404637","indices":[3,11]}],"symbols":[],"media":[{"id":663726225081282560,"id_str":"663726225081282560","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","url":"https:\/\/t.co\/nCas4xkHMk","display_url":"pic.twitter.com\/nCas4xkHMk","expanded_url":"http:\/\/twitter.com\/VTLTeam\/status\/663726435505303552\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":398,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":292,"resize":"fit"}},"source_status_id":663726435505303552,"source_status_id_str":"663726435505303552","source_user_id":316404637,"source_user_id_str":"316404637"}]},"extended_entities":{"media":[{"id":663726225081282560,"id_str":"663726225081282560","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663726225081282560\/pu\/img\/QTcbHrTSeZLPh3gH.jpg","url":"https:\/\/t.co\/nCas4xkHMk","display_url":"pic.twitter.com\/nCas4xkHMk","expanded_url":"http:\/\/twitter.com\/VTLTeam\/status\/663726435505303552\/video\/1","type":"video","sizes":{"small":{"w":340,"h":249,"resize":"fit"},"large":{"w":398,"h":292,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":398,"h":292,"resize":"fit"}},"source_status_id":663726435505303552,"source_status_id_str":"663726435505303552","source_user_id":316404637,"source_user_id_str":"316404637","video_info":{"aspect_ratio":[199,146],"duration_millis":18600,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/pl\/cOAhApsKrIKXfvSC.m3u8"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/pl\/cOAhApsKrIKXfvSC.mpd"},{"bitrate":320000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/vid\/244x180\/Mt7gdHQwqCtJBCls.webm"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663726225081282560\/pu\/vid\/244x180\/Mt7gdHQwqCtJBCls.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130664"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290809516032,"id_str":"663728290809516032","text":"\u314b\ud0c0\ud0a4\uc57c\uc0e4\ub9c8\ub8e8\ub294 \uc548\uadf8\ub7f4\uac70\uac19\uc740\ub370 \uc9c4\uc2ec \uc815\u3139\uc5f4\uc801\uc73c\ub85c \uccb4\uc721\uc704\uc6d0\ud68c \uc77c\uc744\ud558\ub294\uac70\ubcf4\uba74 \ub9ac\uc5bc\uae30\uc5fd\ucee4\uc5fd\ub94f...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368843208,"id_str":"2368843208","name":"\uce74\ub77c\ub9c8\uce20\uac78\uc988\u2606\uc18c\uc18c\ucfe0 \ub1d4\uc7dd","screen_name":"nueRlyi","location":"\ucfe0\ucfe0\uce58 \ub450\ubd80 \uc18d","url":null,"description":"\uc194\ucc0c\ud0a4 98\ud37c \uad6c\ub3c5\uacc4 2\ud37c \uc789\uc5ec\uc0dd\uc0b0\u2606\n\ud5cc\ud5cc\/\uc5d8\uc18c\ub4dc\/\ub808\uc774\ub514\ubc84\uadf8\/\ub2cc\ud0c0\ub9c8\/\uac13\uc288\/\ud638\ub0c9\/\uc6d0\ud380\ub9e8\/\ud608\uacc4\/\uc6b0\uc5d0\ud0a4\uc758\ubc95\uce59\/\ub3d9\ubb3c\uc758\uc655\uad6d\/\uc57c\ub9c8\ub2e4\/\ud788\ub85c\uc544\uce74\/\uce74\uc0ac\ub124\/\n\ub4f1\ub4f1.\n \uc5c4\uccad\ub09c \uc7a1\ub355\uc774\ub77c \uc6ec\ub9cc\ud55c\uac74 \uc804\ubd80\uc544\ub294\ud3b8\uc785\ub2c8\ub2e4\n \ub355\ud1a0\ud06c \ud558\ub298\ub545\ubcc4\ub545 \uc88b\uc544\ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":39,"friends_count":104,"listed_count":0,"favourites_count":1543,"statuses_count":5115,"created_at":"Sun Mar 02 12:57:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660445481978368001\/5VFXuSy1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660445481978368001\/5VFXuSy1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368843208\/1445439327","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080130661"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290822131712,"id_str":"663728290822131712","text":"khux\u3057\u3066\u308b\u4eba\u304c\u30ea\u30a2\u30eb\u306e\u77e5\u308a\u5408\u3044\u3067\u3082\u6848\u5916\u3044\u3066\u9a5a\u3044\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2336168239,"id_str":"2336168239","name":"Shikimi@\u5929\u624d\u767a\u898b\u5668","screen_name":"sk9836","location":"\u30ea\u30d3\u30f3\u30b0","url":null,"description":"\u540d\u8a5e\u6d3e \u30d7\u30ed\u30d5\u753b\u306f@_mai1217\u304b\u3089\u9802\u304d\u307e\u3057\u305f\u3002\u611f\u8b1d","protected":false,"verified":false,"followers_count":365,"friends_count":990,"listed_count":1,"favourites_count":2023,"statuses_count":1498,"created_at":"Mon Feb 10 05:52:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/518749863886856192\/HRttsXSE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/518749863886856192\/HRttsXSE_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130664"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830508032,"id_str":"663728290830508032","text":"RT @chukoshahunter: \u3088\u304f\u307f\u305f\u3089\u8857\u9053\u30ec\u30fc\u30b5\u30fc\u3058\u3083\u306a\u304f\u3066\u30bf\u30af\u30b7\u30fc\u3060\u3063\u305f\uff01(youtube\u52d5\u753b)https:\/\/t.co\/RanDfc1z85 https:\/\/t.co\/HysTamZtum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1522322262,"id_str":"1522322262","name":"\u304b\u306d\u3061\u3093\uff18\uff17\uff14","screen_name":"kanechinn874","location":"\u307b\u307c\u5317\u6238\u7530\u306e\u3055\u3044\u305f\u307e\u5e02","url":"http:\/\/twpf.jp\/kanechinn874","description":"30\u30bd\u30a2\u30e9\u306e\uff12.\uff15\u304c\u6b32\u3057\u3044\u306e\u3067\u8caf\u91d1\u3057\u3066\u307e\u3059\u3002\u30ac\u30fc\u30c9\u30ec\u30fc\u30eb\u3068\u53cb\u9054\u3067\u3059","protected":false,"verified":false,"followers_count":429,"friends_count":387,"listed_count":21,"favourites_count":19476,"statuses_count":52592,"created_at":"Sun Jun 16 14:35:01 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660704208690155520\/OLVRNeCy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660704208690155520\/OLVRNeCy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1522322262\/1446358648","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:25 +0000 2015","id":663724576224882688,"id_str":"663724576224882688","text":"\u3088\u304f\u307f\u305f\u3089\u8857\u9053\u30ec\u30fc\u30b5\u30fc\u3058\u3083\u306a\u304f\u3066\u30bf\u30af\u30b7\u30fc\u3060\u3063\u305f\uff01(youtube\u52d5\u753b)https:\/\/t.co\/RanDfc1z85 https:\/\/t.co\/HysTamZtum","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":551846708,"id_str":"551846708","name":"\u4e2d\u53e4\u8eca\u30a6\u30a9\u30c3\u30c1\u901f\u5831","screen_name":"chukoshahunter","location":null,"url":"http:\/\/usedcarnews.jp","description":"\uff36\uff29\uff30.\u30c9\u30ea\u30d5\u30c8.\u30ed\u30fc\u30e9\u30a4\u30c0\u30fc.\u75db\u8eca\uff65\uff65\uff65\r\n\u3053\u3060\u308f\u308a\u306a\u304f\u30ab\u30c3\u30b3\u30a4\u30a4\u8eca\u304c\u597d\u304d\u3067\u3059\u3002\r\n\r\n\u307e\u305f\u3001\u79cb\u8449\u539f\u306b\u3066\u64ae\u5f71\u3055\u305b\u3066\u9802\u3044\u305f\r\n\u75db\u8eca\u306e\u65b9\u3005\u306b\u306f\u7279\u306b\u611f\u8b1d\u3057\u3066\u304a\u308a\u307e\u3059\u3002\r\n\u3053\u306e\u5834\u3092\u501f\u308a\u3066\u304a\u793c\u7533\u3057\u3042\u3052\u307e\u3059\u3002\r\n\r\n(\u6700\u5f8c\u306btwitter\u306e\u4f7f\u3044\u65b9\u3092\u7406\u89e3\u51fa\u6765\u3066\u3044\u306a\u3044\u306e\u3067\r\n\u8fd4\u4fe1\u3067\u304d\u306a\u3044\u4e8b\u304c\u591a\u3005\u3042\u308a\u307e\u3059\u3002)","protected":false,"verified":false,"followers_count":3633,"friends_count":3857,"listed_count":19,"favourites_count":15,"statuses_count":6977,"created_at":"Thu Apr 12 13:12:21 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642929971153924096\/GnaL7UY3_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642929971153924096\/GnaL7UY3_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/551846708\/1442119270","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":2,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RanDfc1z85","expanded_url":"https:\/\/youtu.be\/9dvAuDfrrWw","display_url":"youtu.be\/9dvAuDfrrWw","indices":[35,58]}],"user_mentions":[],"symbols":[],"media":[{"id":663724555307868160,"id_str":"663724555307868160","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663724555307868160,"id_str":"663724555307868160","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}}},{"id":663724560252997632,"id_str":"663724560252997632","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-JKVEAAaMs6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-JKVEAAaMs6.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"medium":{"w":600,"h":334,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":446,"resize":"fit"}}},{"id":663724561364488196,"id_str":"663724561364488196","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-NTVEAQl1Lw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-NTVEAQl1Lw.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":800,"h":421,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"}}},{"id":663724573905453056,"id_str":"663724573905453056","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-8BVAAAenVu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-8BVAAAenVu.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/RanDfc1z85","expanded_url":"https:\/\/youtu.be\/9dvAuDfrrWw","display_url":"youtu.be\/9dvAuDfrrWw","indices":[55,78]}],"user_mentions":[{"screen_name":"chukoshahunter","name":"\u4e2d\u53e4\u8eca\u30a6\u30a9\u30c3\u30c1\u901f\u5831","id":551846708,"id_str":"551846708","indices":[3,18]}],"symbols":[],"media":[{"id":663724555307868160,"id_str":"663724555307868160","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}},"source_status_id":663724576224882688,"source_status_id_str":"663724576224882688","source_user_id":551846708,"source_user_id_str":"551846708"}]},"extended_entities":{"media":[{"id":663724555307868160,"id_str":"663724555307868160","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF92vUYAA8Wtg.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}},"source_status_id":663724576224882688,"source_status_id_str":"663724576224882688","source_user_id":551846708,"source_user_id_str":"551846708"},{"id":663724560252997632,"id_str":"663724560252997632","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-JKVEAAaMs6.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-JKVEAAaMs6.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":189,"resize":"fit"},"medium":{"w":600,"h":334,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":446,"resize":"fit"}},"source_status_id":663724576224882688,"source_status_id_str":"663724576224882688","source_user_id":551846708,"source_user_id_str":"551846708"},{"id":663724561364488196,"id_str":"663724561364488196","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-NTVEAQl1Lw.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-NTVEAQl1Lw.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":315,"resize":"fit"},"large":{"w":800,"h":421,"resize":"fit"},"small":{"w":340,"h":178,"resize":"fit"}},"source_status_id":663724576224882688,"source_status_id_str":"663724576224882688","source_user_id":551846708,"source_user_id_str":"551846708"},{"id":663724573905453056,"id_str":"663724573905453056","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYF-8BVAAAenVu.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYF-8BVAAAenVu.png","url":"https:\/\/t.co\/HysTamZtum","display_url":"pic.twitter.com\/HysTamZtum","expanded_url":"http:\/\/twitter.com\/chukoshahunter\/status\/663724576224882688\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":336,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"large":{"w":800,"h":449,"resize":"fit"}},"source_status_id":663724576224882688,"source_status_id_str":"663724576224882688","source_user_id":551846708,"source_user_id_str":"551846708"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130666"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290813886464,"id_str":"663728290813886464","text":"https:\/\/t.co\/MZ73huMkLf","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":351838423,"id_str":"351838423","name":"( i )NSiDE store","screen_name":"INSIDEstoreCava","location":"Cava dei Tirreni","url":"http:\/\/www.inside-store-online.it","description":"( i )NSiDE store \u2022clothing\u2022shoes\u2022accessories\u2022 CAVA DE' TIRRENI (SA) info@inside-store.it |Shipping worldwide | http:\/\/Instagram.com\/insidestore","protected":false,"verified":false,"followers_count":860,"friends_count":1997,"listed_count":6,"favourites_count":35,"statuses_count":12805,"created_at":"Tue Aug 09 20:07:35 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/579999406331691008\/BvkRh3xF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/579999406331691008\/BvkRh3xF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/351838423\/1429460583","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/MZ73huMkLf","expanded_url":"http:\/\/fb.me\/3E1hfG61H","display_url":"fb.me\/3E1hfG61H","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080130662"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290822123520,"id_str":"663728290822123520","text":"@Meal_bbacha \ub9de\ub2e4 \uba54\ubaa8\ub9ac \ub4dc\ub824\uc57c\uc9c0\n'\uc5ec\uae30\uc5d0 \uc0ac\uc9c4 \ub123\uc5b4\uc11c \uc8fc\uc2dc\uba74 \ub418\uc694'","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727852039213057,"in_reply_to_status_id_str":"663727852039213057","in_reply_to_user_id":2536793952,"in_reply_to_user_id_str":"2536793952","in_reply_to_screen_name":"Meal_bbacha","user":{"id":2423826397,"id_str":"2423826397","name":"\uace0\ub77c\ud30c\uad65 \uc8fc\uc778_\uc74c\uba54","screen_name":"lunarmyi","location":"\uc11c\uc6b8 \uad11\uc9c4\uad6c","url":"http:\/\/blog.naver.com\/lunarmyi","description":"\ubaa8\ub974\uaca0\ub2e4... \ub355\uc9c8\ub3c4 \uc790\uc2e0\uac10\uc778\ub370 \uc790\uc2e0\uac10\uc774 \uc5c6\ub2e4","protected":false,"verified":false,"followers_count":110,"friends_count":126,"listed_count":0,"favourites_count":363,"statuses_count":7203,"created_at":"Wed Apr 02 13:34:19 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651393146635444225\/Qwx_R9LA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651393146635444225\/Qwx_R9LA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2423826397\/1432734333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Meal_bbacha","name":"\uace8\ubc45","id":2536793952,"id_str":"2536793952","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080130664"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290813734912,"id_str":"663728290813734912","text":"@kuisi_ \ud558...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727660351156224,"in_reply_to_status_id_str":"663727660351156224","in_reply_to_user_id":2242815092,"in_reply_to_user_id_str":"2242815092","in_reply_to_screen_name":"kuisi_","user":{"id":3782354713,"id_str":"3782354713","name":"[\ud1a0\uc2dc\ubd80\uc7a5\ub2d8] \uac00\ubc14\uacf5\uc8fc\ub9c8\uce20(?)","screen_name":"gavabo_","location":" \uc778\uc7a5&\ud5e4\ub354 \ud61c\uc6b0 \u2661","url":null,"description":"\u9280\u9b42 \/ \u304a\u305d\u677e\u3055\u3093\/ \u9280\u571f \u9ad8\u571f \u9280\u9ad8 \/ \u4e00\u677e (\u53f3) \u30c1\u30e7\u30ed\u677e (\u53f3) \/ \uae00 \uadf8\ub9bc \/ \ub9ac\ubc84\uc2a4 X \/ \ucde8\uc874 \/ \ub2e4\uc6a9\ub3c4 \/ \ub9de\ud314\uc740 \ud2b8\uce5c\uc18c \ub54c\ub9cc","protected":false,"verified":false,"followers_count":189,"friends_count":219,"listed_count":6,"favourites_count":1173,"statuses_count":14124,"created_at":"Sun Oct 04 15:16:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663236063381422080\/nofEmZuf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663236063381422080\/nofEmZuf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3782354713\/1446916865","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuisi_","name":"\ucfe0\uc774\uc2dc\/\u304f\u3044\u3057","id":2242815092,"id_str":"2242815092","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080130662"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290797105152,"id_str":"663728290797105152","text":"kkkkk https:\/\/t.co\/ohav3XUbwj","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":330414103,"id_str":"330414103","name":"Thaylon Batista","screen_name":"thaylon_batista","location":"S\u00e3o Paulo","url":null,"description":"... Sistema matando sonhos e eu ainda permane\u00e7o aqui ...","protected":false,"verified":false,"followers_count":158,"friends_count":50,"listed_count":0,"favourites_count":13,"statuses_count":5975,"created_at":"Wed Jul 06 15:49:00 +0000 2011","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000174708769\/tgPYWaMo.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000174708769\/tgPYWaMo.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/607966144985747456\/uYYAts_o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/607966144985747456\/uYYAts_o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/330414103\/1390592162","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/ohav3XUbwj","expanded_url":"http:\/\/fb.me\/4EbeusZ3f","display_url":"fb.me\/4EbeusZ3f","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080130658"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290801274880,"id_str":"663728290801274880","text":"#nvidia #titanx #cuda #deeplearning #deepnetart #neuralstyle #deepstyle #nsfw #art? https:\/\/t.co\/2yMZgA4aU4","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161803394,"id_str":"3161803394","name":"AiDO","screen_name":"aidotech","location":"phoenix ","url":"http:\/\/www.aidotech.com","description":"Artificial Intelligence meets On-Demand Economy.","protected":false,"verified":false,"followers_count":1106,"friends_count":1077,"listed_count":1139,"favourites_count":108,"statuses_count":179650,"created_at":"Sat Apr 18 02:38:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/589260492192944128\/-iwxG3ZA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/589260492192944128\/-iwxG3ZA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3161803394\/1429326543","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"nvidia","indices":[0,7]},{"text":"titanx","indices":[8,15]},{"text":"cuda","indices":[16,21]},{"text":"deeplearning","indices":[22,35]},{"text":"deepnetart","indices":[36,47]},{"text":"neuralstyle","indices":[48,60]},{"text":"deepstyle","indices":[61,71]},{"text":"nsfw","indices":[72,77]},{"text":"art","indices":[78,82]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721186304655361,"id_str":"663721186304655361","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC5wOXAAEilkW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC5wOXAAEilkW.png","url":"https:\/\/t.co\/2yMZgA4aU4","display_url":"pic.twitter.com\/2yMZgA4aU4","expanded_url":"http:\/\/twitter.com\/deepnetart\/status\/663721190511480832\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":666,"h":1000,"resize":"fit"}},"source_status_id":663721190511480832,"source_status_id_str":"663721190511480832","source_user_id":4137952283,"source_user_id_str":"4137952283"}]},"extended_entities":{"media":[{"id":663721186304655361,"id_str":"663721186304655361","indices":[84,107],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYC5wOXAAEilkW.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYC5wOXAAEilkW.png","url":"https:\/\/t.co\/2yMZgA4aU4","display_url":"pic.twitter.com\/2yMZgA4aU4","expanded_url":"http:\/\/twitter.com\/deepnetart\/status\/663721190511480832\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"small":{"w":340,"h":510,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":666,"h":1000,"resize":"fit"}},"source_status_id":663721190511480832,"source_status_id_str":"663721190511480832","source_user_id":4137952283,"source_user_id_str":"4137952283"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080130659"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290822254592,"id_str":"663728290822254592","text":"Hola","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":799474388,"id_str":"799474388","name":"Roc\u00eco","screen_name":"RoGallardo__","location":"Cordoba Capital","url":null,"description":"LS\/\/ Fb: Ro Gallardo , Wsp 3516205909","protected":false,"verified":false,"followers_count":3218,"friends_count":1704,"listed_count":1,"favourites_count":6458,"statuses_count":60752,"created_at":"Mon Sep 03 02:40:21 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588815167732846592\/OPnetAjm.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588815167732846592\/OPnetAjm.jpg","profile_background_tile":true,"profile_link_color":"553555","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657704778168975361\/FsGUZJST_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657704778168975361\/FsGUZJST_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/799474388\/1445525717","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080130664"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290826317824,"id_str":"663728290826317824","text":"\u73fe\u793e\u3002\u3055\u3088\u306a\u3089\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1536270044,"id_str":"1536270044","name":"amimi\u263b","screen_name":"sgpb628","location":"Osaki\u261e\u2661\u261cAdelaide","url":"http:\/\/Instagram.com\/sgpb628","description":"SSG3rd\/BSS \u21dd\u2665LEgirls#10 \u97d3\u56fd\u30a2\u30a4\u30c9\u30eb\u3068\u83c5\u7530\u5c06\u6689\u304c\u6b7b\u306c\u307b\u3069\u597d\u304d\u3002","protected":false,"verified":false,"followers_count":92,"friends_count":84,"listed_count":0,"favourites_count":1381,"statuses_count":7208,"created_at":"Fri Jun 21 10:57:37 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/536820843771224065\/etKG3lpZ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/536820843771224065\/etKG3lpZ.jpeg","profile_background_tile":true,"profile_link_color":"FF0461","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635797221762437120\/MnhJGj58_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635797221762437120\/MnhJGj58_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1536270044\/1445527616","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080130665"} +{"delete":{"status":{"id":524226444403032068,"id_str":"524226444403032068","user_id":1328342948,"user_id_str":"1328342948"},"timestamp_ms":"1447080130888"}} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290805469184,"id_str":"663728290805469184","text":"Martha Wash - Keep Your Body Workin' (Warren Rigg Remix) https:\/\/t.co\/JC36FOaphe #SoundcheckiRadio #WomansWorld","source":"\u003ca href=\"http:\/\/www.securenetsystems.net\" rel=\"nofollow\"\u003eSecurenet Systems Radio Playlist Update\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":17142156,"id_str":"17142156","name":"Ken Spellman","screen_name":"kenspellman","location":"West Palm Beach, FL USA","url":"http:\/\/www.soundcheckiradio.com","description":"Ken Spellman-Soundcheck Media Group\/ Soundcheck iRadio Network. Broadcast Consultant-Distribution-Radio.","protected":false,"verified":false,"followers_count":1494,"friends_count":2006,"listed_count":40,"favourites_count":218,"statuses_count":256641,"created_at":"Mon Nov 03 22:13:08 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/621312267104030724\/x177CNq9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/621312267104030724\/x177CNq9.jpg","profile_background_tile":true,"profile_link_color":"8CB2BD","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"424C55","profile_text_color":"8C94A2","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/502111617069248512\/QOS2SxqU_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/502111617069248512\/QOS2SxqU_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/17142156\/1408547592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SoundcheckiRadio","indices":[81,98]},{"text":"WomansWorld","indices":[99,111]}],"urls":[{"url":"https:\/\/t.co\/JC36FOaphe","expanded_url":"http:\/\/rdo.to\/WWRA","display_url":"rdo.to\/WWRA","indices":[57,80]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130660"} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290830508033,"id_str":"663728290830508033","text":"Megan Fox Shows Off Sexy MILF Bod In Leaked Pics https:\/\/t.co\/z0gHFaxgay https:\/\/t.co\/8KODQpAekz","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003efrancette_application\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":446897542,"id_str":"446897542","name":"Francette Arntz","screen_name":"FrancetteArntz","location":"El Paso","url":null,"description":"In a full heart there is room for everything, and in an empty heart there is room for nothing.","protected":false,"verified":false,"followers_count":1906,"friends_count":2214,"listed_count":5,"favourites_count":0,"statuses_count":2719,"created_at":"Mon Dec 26 08:22:32 +0000 2011","utc_offset":-21600,"time_zone":"Monterrey","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/588951519984160769\/EY_xTHCK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/588951519984160769\/EY_xTHCK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/446897542\/1429251985","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/z0gHFaxgay","expanded_url":"http:\/\/bit.ly\/1HnxTjM","display_url":"bit.ly\/1HnxTjM","indices":[49,72]}],"user_mentions":[],"symbols":[],"media":[{"id":663728290671099904,"id_str":"663728290671099904","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXSDUAAAp7Yq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXSDUAAAp7Yq.jpg","url":"https:\/\/t.co\/8KODQpAekz","display_url":"pic.twitter.com\/8KODQpAekz","expanded_url":"http:\/\/twitter.com\/FrancetteArntz\/status\/663728290830508033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":677,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":503,"h":1002,"resize":"fit"},"large":{"w":503,"h":1002,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728290671099904,"id_str":"663728290671099904","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXSDUAAAp7Yq.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXSDUAAAp7Yq.jpg","url":"https:\/\/t.co\/8KODQpAekz","display_url":"pic.twitter.com\/8KODQpAekz","expanded_url":"http:\/\/twitter.com\/FrancetteArntz\/status\/663728290830508033\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":677,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":503,"h":1002,"resize":"fit"},"large":{"w":503,"h":1002,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080130666"} +{"delete":{"status":{"id":415520184636801025,"id_str":"415520184636801025","user_id":913706594,"user_id_str":"913706594"},"timestamp_ms":"1447080131120"}} +{"created_at":"Mon Nov 09 14:42:10 +0000 2015","id":663728290809577472,"id_str":"663728290809577472","text":"Kenan \u0130mirzal\u0131o\u011flu'ndan deniz manzaral\u0131 k\u00fct\u00fcphane - https:\/\/t.co\/hZl9LSEdQo https:\/\/t.co\/13CFdxYLcH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2711612286,"id_str":"2711612286","name":"\u00d6nc\u00fc Haberler","screen_name":"oncuhaberler","location":"\u0130stanbul","url":"http:\/\/www.oncuhaberler.com","description":"Haberde \u00d6nc\u00fcn\u00fcz","protected":false,"verified":false,"followers_count":27114,"friends_count":0,"listed_count":30,"favourites_count":3,"statuses_count":10061,"created_at":"Wed Aug 06 09:53:41 +0000 2014","utc_offset":7200,"time_zone":"Kyiv","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566372719315271680\/dGLtIufv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566372719315271680\/dGLtIufv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2711612286\/1423869553","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hZl9LSEdQo","expanded_url":"http:\/\/www.oncuhaberler.com\/haber\/5791\/kenan-imirzalioglundan-deniz-manzarali-kutuphane#.VkCws560Uaw.twitter","display_url":"oncuhaberler.com\/haber\/5791\/ken\u2026","indices":[52,75]}],"user_mentions":[],"symbols":[],"media":[{"id":663728289287114752,"id_str":"663728289287114752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXM5WEAAna6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXM5WEAAna6_.jpg","url":"https:\/\/t.co\/13CFdxYLcH","display_url":"pic.twitter.com\/13CFdxYLcH","expanded_url":"http:\/\/twitter.com\/oncuhaberler\/status\/663728290809577472\/photo\/1","type":"photo","sizes":{"large":{"w":620,"h":332,"resize":"fit"},"medium":{"w":600,"h":321,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728289287114752,"id_str":"663728289287114752","indices":[76,99],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXM5WEAAna6_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXM5WEAAna6_.jpg","url":"https:\/\/t.co\/13CFdxYLcH","display_url":"pic.twitter.com\/13CFdxYLcH","expanded_url":"http:\/\/twitter.com\/oncuhaberler\/status\/663728290809577472\/photo\/1","type":"photo","sizes":{"large":{"w":620,"h":332,"resize":"fit"},"medium":{"w":600,"h":321,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":182,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080130661"} +{"delete":{"status":{"id":663724700506263552,"id_str":"663724700506263552","user_id":1905917780,"user_id_str":"1905917780"},"timestamp_ms":"1447080131340"}} +{"delete":{"status":{"id":530940862415372290,"id_str":"530940862415372290","user_id":576125853,"user_id_str":"576125853"},"timestamp_ms":"1447080131514"}} +{"delete":{"status":{"id":588990356944916480,"id_str":"588990356944916480","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080131521"}} +{"delete":{"status":{"id":611556740065132545,"id_str":"611556740065132545","user_id":629950599,"user_id_str":"629950599"},"timestamp_ms":"1447080131616"}} +{"delete":{"status":{"id":663661647526014977,"id_str":"663661647526014977","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080131712"}} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012409344,"id_str":"663728295012409344","text":"RT @Msc_Services: @henshawkate At The Dstv Stand lagosinternationaltradefair With #Nigerians #ConnectNigeria\u2026 https:\/\/t.co\/iSLXOsmKdn","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":135295059,"id_str":"135295059","name":"Kate Henshaw","screen_name":"HenshawKate","location":"worldwide","url":"http:\/\/www.katehenshaw.com","description":"I believe in the father, son and holy spirit\nSapiosexual","protected":false,"verified":false,"followers_count":286064,"friends_count":2136,"listed_count":593,"favourites_count":6407,"statuses_count":64078,"created_at":"Tue Apr 20 22:28:01 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/114467240\/kate2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/114467240\/kate2.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643861354823217152\/n0BROAhD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643861354823217152\/n0BROAhD_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:54:38 +0000 2015","id":663701227558084608,"id_str":"663701227558084608","text":"@henshawkate At The Dstv Stand lagosinternationaltradefair With #Nigerians #ConnectNigeria\u2026 https:\/\/t.co\/iSLXOsmKdn","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":135295059,"in_reply_to_user_id_str":"135295059","in_reply_to_screen_name":"HenshawKate","user":{"id":280961995,"id_str":"280961995","name":"Media Specialists","screen_name":"Msc_Services","location":"EvEryWheRe","url":"http:\/\/mscservices.com.ng","description":"Branding | Promotion | Web Design | Digital Marketing Services | Co-ordinate Various Successful Businesses & Artists In Nigeria | Instagram @Msc_services","protected":false,"verified":false,"followers_count":7635,"friends_count":2148,"listed_count":22,"favourites_count":754,"statuses_count":65772,"created_at":"Tue Apr 12 10:56:00 +0000 2011","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620571652397469696\/ApN49UJu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620571652397469696\/ApN49UJu.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"241F21","profile_text_color":"E88B60","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650650651639287808\/dvtArPgK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650650651639287808\/dvtArPgK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/280961995\/1443962190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[{"text":"Nigerians","indices":[64,74]},{"text":"ConnectNigeria","indices":[75,90]}],"urls":[{"url":"https:\/\/t.co\/iSLXOsmKdn","expanded_url":"https:\/\/instagram.com\/p\/93WPM4pzFi\/","display_url":"instagram.com\/p\/93WPM4pzFi\/","indices":[92,115]}],"user_mentions":[{"screen_name":"HenshawKate","name":"Kate Henshaw","id":135295059,"id_str":"135295059","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Nigerians","indices":[82,92]},{"text":"ConnectNigeria","indices":[93,108]}],"urls":[{"url":"https:\/\/t.co\/iSLXOsmKdn","expanded_url":"https:\/\/instagram.com\/p\/93WPM4pzFi\/","display_url":"instagram.com\/p\/93WPM4pzFi\/","indices":[110,133]}],"user_mentions":[{"screen_name":"Msc_Services","name":"Media Specialists","id":280961995,"id_str":"280961995","indices":[3,16]},{"screen_name":"HenshawKate","name":"Kate Henshaw","id":135295059,"id_str":"135295059","indices":[18,30]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020781568,"id_str":"663728295020781568","text":"RT @ddlovato: The sass is real... #Demi2Idol @TV4Idol \ud83d\udc99\ud83d\udc81\ud83c\udffb\ud83d\udc99 https:\/\/t.co\/tdzjxVrzOS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3313949711,"id_str":"3313949711","name":"OLIVIA","screen_name":"arysthistyle","location":"Na Coxa Do Harry","url":"https:\/\/i.instagram.com\/ariihwn14\/","description":"O HARRY FODE COM A MINHA VIDA TODOS OS DIAS.","protected":false,"verified":false,"followers_count":1444,"friends_count":1742,"listed_count":5,"favourites_count":2692,"statuses_count":22346,"created_at":"Mon Jun 08 21:41:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663030869674885120\/FHV1xYgd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663030869674885120\/FHV1xYgd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3313949711\/1446483361","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:47:48 +0000 2015","id":663593811721891840,"id_str":"663593811721891840","text":"The sass is real... #Demi2Idol @TV4Idol \ud83d\udc99\ud83d\udc81\ud83c\udffb\ud83d\udc99 https:\/\/t.co\/tdzjxVrzOS","source":"","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":21111883,"id_str":"21111883","name":"Demi Lovato","screen_name":"ddlovato","location":"DALLAS\/LA","url":"http:\/\/demilovato.com\/","description":"New album #CONFIDENT out now!!! http:\/\/smarturl.it\/dlca1","protected":false,"verified":true,"followers_count":31672544,"friends_count":401,"listed_count":102883,"favourites_count":288,"statuses_count":14128,"created_at":"Tue Feb 17 18:02:08 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655070238216704000\/CV-AvZJi.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B9BEB8","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636710773536886784\/gpgNw9Cq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/21111883\/1445015866","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5437,"favorite_count":11068,"entities":{"hashtags":[{"text":"Demi2Idol","indices":[20,30]}],"urls":[],"user_mentions":[{"screen_name":"TV4Idol","name":"Idol Sverige","id":25045444,"id_str":"25045444","indices":[31,39]}],"symbols":[],"media":[{"id":663593811281469440,"id_str":"663593811281469440","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","url":"https:\/\/t.co\/tdzjxVrzOS","display_url":"pic.twitter.com\/tdzjxVrzOS","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663593811721891840\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":754,"resize":"fit"},"medium":{"w":600,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":400,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663593811281469440,"id_str":"663593811281469440","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","url":"https:\/\/t.co\/tdzjxVrzOS","display_url":"pic.twitter.com\/tdzjxVrzOS","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663593811721891840\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":754,"resize":"fit"},"medium":{"w":600,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Demi2Idol","indices":[34,44]}],"urls":[],"user_mentions":[{"screen_name":"ddlovato","name":"Demi Lovato","id":21111883,"id_str":"21111883","indices":[3,12]},{"screen_name":"TV4Idol","name":"Idol Sverige","id":25045444,"id_str":"25045444","indices":[45,53]}],"symbols":[],"media":[{"id":663593811281469440,"id_str":"663593811281469440","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","url":"https:\/\/t.co\/tdzjxVrzOS","display_url":"pic.twitter.com\/tdzjxVrzOS","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663593811721891840\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":754,"resize":"fit"},"medium":{"w":600,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":400,"resize":"fit"}},"source_status_id":663593811721891840,"source_status_id_str":"663593811721891840","source_user_id":21111883,"source_user_id_str":"21111883"}]},"extended_entities":{"media":[{"id":663593811281469440,"id_str":"663593811281469440","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWPDjSUYAAYQNM.jpg","url":"https:\/\/t.co\/tdzjxVrzOS","display_url":"pic.twitter.com\/tdzjxVrzOS","expanded_url":"http:\/\/twitter.com\/ddlovato\/status\/663593811721891840\/photo\/1","type":"photo","sizes":{"large":{"w":640,"h":754,"resize":"fit"},"medium":{"w":600,"h":706,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":400,"resize":"fit"}},"source_status_id":663593811721891840,"source_status_id_str":"663593811721891840","source_user_id":21111883,"source_user_id_str":"21111883"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012356097,"id_str":"663728295012356097","text":"I'll be like your medicine, you'll drink EVERY dose of me .","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":882555152,"id_str":"882555152","name":"Siyavuyisana","screen_name":"Siya_Dibela","location":"Port Elizabeth - South Africa ","url":null,"description":null,"protected":false,"verified":false,"followers_count":281,"friends_count":267,"listed_count":1,"favourites_count":194,"statuses_count":7673,"created_at":"Mon Oct 15 15:38:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663641413305966592\/ZGcU4y-6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663641413305966592\/ZGcU4y-6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/882555152\/1447059274","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295003860992,"id_str":"663728295003860992","text":"How in order to opt as long as the destroy bakersfield cosmetics dentist: TYQd","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1240563373,"id_str":"1240563373","name":"EdnaShackley","screen_name":"EdnaShackley","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":59,"friends_count":1,"listed_count":5,"favourites_count":0,"statuses_count":114318,"created_at":"Mon Mar 04 05:15:43 +0000 2013","utc_offset":19800,"time_zone":"Sri Jayawardenepura","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3497548644\/c3d043fcb5d262be581ef46fa0d0e177_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3497548644\/c3d043fcb5d262be581ef46fa0d0e177_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131661"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294995472384,"id_str":"663728294995472384","text":"\u6700\u8fd1\u3046\u3061\u306eDVD\u58ca\u308c\u3066\u3001\u65b0\u3057\u3044\u306e\u8cb7\u3063\u3066\u53e4\u3044\u306e\u304c\u5225\u306e\u90e8\u5c4b\u306b\u7f6e\u304b\u308c\u3066\u308b\u3093\u3060\u3051\u3069\u3001\u6642\u3005\u898b\u305f\u3089\u52dd\u624b\u306b\u9332\u753b\u3055\u308c\u3066\u308b\u3093\u3060\u3088\u306d\u2026\n\n\u30c6\u30ec\u30d3\u306b\u7e4b\u3044\u3067\u306a\u3044\u306e\u306b\u2026\n\u6016\u3044\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1557099786,"id_str":"1557099786","name":"\u6e1a(\u306a\u304e\u3055\u3074\u3087\u3093)","screen_name":"HeavensRock_","location":"\u541b\u304c\u751f\u304d\u308b\u3053\u3068\u306f\u541b\u304c\u7b11\u3046\u3053\u3068\u306f\u53cd\u6483\u307f\u305f\u3044\u3060\u306a","url":"http:\/\/twpf.jp\/HeavensRock_","description":"\u306a\u304e\u3055\u3063\u3066\u3088\u307f\u307e\u3059(\u5b9f\u306f)(\u672c\u540d\u3058\u3083\u306a\u3044) \u30af\u30e9\u30ab\u30ba\u3055\u3093\u5927\u597d\u304d\u306a\u30ad\u30c1\u30a3\u5974 \u30c9\u30a4\u30c4\u30aa\u30ec\u30f3\u30b8\/\u305d\u308c\u305b\u304b\/\u30ac\u30ea\u30ec\u30aa\/\u30c6\u30ec\u30f3\/GOTR\/\u8d64\u30b0\u30ea\/\u30de\u30a4\u30d8\u30a2\/\u30d5\u30a3\u30c3\u30b7\u30e5\u30e9\u30a4\u30d5\/\u30df\u30bb\u30b9\u2026 \u5f7c\u6c0f\u2661\u2192\u3010@1209Kkkazuya\u3011\u30d9\u30fc\u30b9\/\u30ae\u30bf\u30fc\/\u30d4\u30a2\u30ce \u25b6\ufe0e12\/7\u30ad\u30e5\u30a6\u30bd\u5ca1\u5c71 1\/23 \u8d64\u30b0\u30ea\u5927\u962a_\u5ca1\u5c71\u4f4f\u307f\u306f\u3064\u3089\u3044\u3088","protected":false,"verified":false,"followers_count":1450,"friends_count":677,"listed_count":25,"favourites_count":17487,"statuses_count":26208,"created_at":"Sun Jun 30 03:41:43 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"5886E8","profile_sidebar_border_color":"86A4A6","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657929854000623616\/i4-bS7a-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657929854000623616\/i4-bS7a-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1557099786\/1445606708","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131659"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295008182272,"id_str":"663728295008182272","text":"#yup life is too fast and time is #Rational \ud83d\ude01 https:\/\/t.co\/Dg2JIYicyp","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":347769095,"id_str":"347769095","name":"romi rana","screen_name":"waliabdul1","location":"Orange, Blau Und Gr\u00fcn","url":"http:\/\/facebook.com\/romi.rana.96","description":"brother of 3S, life ain't easy.... u have to struggle every way', gtb #krankenpfleger wannabe #astronaut | #hazarounKhuwahishain per think 4 right @ right....","protected":false,"verified":false,"followers_count":69,"friends_count":188,"listed_count":4,"favourites_count":2708,"statuses_count":2519,"created_at":"Wed Aug 03 09:53:44 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642304998232195072\/3gKYRWH__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642304998232195072\/3gKYRWH__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/347769095\/1436794057","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663725247670181888,"quoted_status_id_str":"663725247670181888","quoted_status":{"created_at":"Mon Nov 09 14:30:05 +0000 2015","id":663725247670181888,"id_str":"663725247670181888","text":"#MemeMonday https:\/\/t.co\/IZt4GlAmqN","source":"\u003ca href=\"http:\/\/www.spredfast.com\" rel=\"nofollow\"\u003eSpredfast app\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":85839993,"id_str":"85839993","name":"Nat Geo WILD","screen_name":"natgeowild","location":null,"url":"http:\/\/NatGeoWILD.com","description":"Nat Geo WILD is a network all about animals & nature from National Geographic.","protected":false,"verified":true,"followers_count":491463,"friends_count":280,"listed_count":2297,"favourites_count":1053,"statuses_count":15741,"created_at":"Wed Oct 28 15:22:54 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/463294474672545792\/F0IXbo4K.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/463294474672545792\/F0IXbo4K.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648500564846710784\/93Us4_TV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648500564846710784\/93Us4_TV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/85839993\/1444054722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MemeMonday","indices":[0,11]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725247217197057,"id_str":"663725247217197057","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGmITW4AEPc2I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGmITW4AEPc2I.jpg","url":"https:\/\/t.co\/IZt4GlAmqN","display_url":"pic.twitter.com\/IZt4GlAmqN","expanded_url":"http:\/\/twitter.com\/natgeowild\/status\/663725247670181888\/photo\/1","type":"photo","sizes":{"large":{"w":901,"h":901,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725247217197057,"id_str":"663725247217197057","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGmITW4AEPc2I.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGmITW4AEPc2I.jpg","url":"https:\/\/t.co\/IZt4GlAmqN","display_url":"pic.twitter.com\/IZt4GlAmqN","expanded_url":"http:\/\/twitter.com\/natgeowild\/status\/663725247670181888\/photo\/1","type":"photo","sizes":{"large":{"w":901,"h":901,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"yup","indices":[0,4]},{"text":"Rational","indices":[34,43]}],"urls":[{"url":"https:\/\/t.co\/Dg2JIYicyp","expanded_url":"https:\/\/twitter.com\/natgeowild\/status\/663725247670181888","display_url":"twitter.com\/natgeowild\/sta\u2026","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131662"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295024959488,"id_str":"663728295024959488","text":"@TREVORBC83 Oh good, phew. You were in Clearwater? Yay! Were you just visiting??","source":"\u003ca href=\"http:\/\/www.mainstreethub.com\/consultation\/?source=twitter_post_tool&utm_source=twitter&utm_medium=post%2Btool&utm_campaign=twitt\" rel=\"nofollow\"\u003eMain Street Hub\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662675751938953216,"in_reply_to_status_id_str":"662675751938953216","in_reply_to_user_id":463263884,"in_reply_to_user_id_str":"463263884","in_reply_to_screen_name":"TREVORBC83","user":{"id":4072767194,"id_str":"4072767194","name":"Parasail Clearwater","screen_name":"SailClearwater","location":"Clearwater, FL","url":"http:\/\/parasailclearwater-hub.com\/","description":"Looking for an adventure? Parasail Clearwater will take you soaring up to 1,000 feet over Clearwater Beach\u2019s beautiful coastline.","protected":false,"verified":false,"followers_count":1,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":10,"created_at":"Fri Oct 30 21:36:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660209213331783680\/SHFMo-Uf_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660209213331783680\/SHFMo-Uf_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4072767194\/1446241109","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TREVORBC83","name":"Ben Cockayne OG.UK","id":463263884,"id_str":"463263884","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131666"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012392960,"id_str":"663728295012392960","text":"RT @GazetaRu_All: \u0414\u043e\u0447\u044c \u041d\u0435\u043c\u0446\u043e\u0432\u0430 \u0441\u043e\u0437\u0434\u0430\u043b\u0430 \u0444\u043e\u043d\u0434 \u0438\u043c\u0435\u043d\u0438 \u043e\u0442\u0446\u0430 \u0432 \u0413\u0435\u0440\u043c\u0430\u043d\u0438\u0438 https:\/\/t.co\/zN8NDTUpec","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":520621798,"id_str":"520621798","name":"\u041b\u044e\u0431\u043e\u0432\u044c \u0410\u043b\u0435\u043a\u0441\u0430\u043d\u0434\u0440\u043e\u0432\u043d\u0430","screen_name":"_Taradina","location":"\u0420\u043e\u0441\u0441\u0438\u044f,\u041f\u0435\u0440\u043c\u044c ","url":"http:\/\/deligent.livejournal.com","description":"\u043a\u0430\u043d\u0434.\u043d\u0430\u0443\u043a,\u0434\u043e\u0446., http:\/\/deligent.livejournal.com http:\/\/taradina-blog.tumblr.com","protected":false,"verified":false,"followers_count":3262,"friends_count":2188,"listed_count":67,"favourites_count":14680,"statuses_count":210895,"created_at":"Sat Mar 10 18:25:11 +0000 2012","utc_offset":10800,"time_zone":"Nairobi","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/465161482347368448\/Q7bx_DXn_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/465161482347368448\/Q7bx_DXn_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/520621798\/1398267959","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:48:19 +0000 2015","id":663714736379453440,"id_str":"663714736379453440","text":"\u0414\u043e\u0447\u044c \u041d\u0435\u043c\u0446\u043e\u0432\u0430 \u0441\u043e\u0437\u0434\u0430\u043b\u0430 \u0444\u043e\u043d\u0434 \u0438\u043c\u0435\u043d\u0438 \u043e\u0442\u0446\u0430 \u0432 \u0413\u0435\u0440\u043c\u0430\u043d\u0438\u0438 https:\/\/t.co\/zN8NDTUpec","source":"\u003ca href=\"http:\/\/www.gazeta.ru\/\" rel=\"nofollow\"\u003egazetaru_all\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":70416094,"id_str":"70416094","name":"\u0412\u0441\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438","screen_name":"GazetaRu_All","location":"\u041c\u043e\u0441\u043a\u0432\u0430","url":"http:\/\/www.gazeta.ru\/","description":"\u041d\u043e\u0432\u043e\u0441\u0442\u0438 \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 \u043e\u043d-\u043b\u0430\u0439\u043d \u0438\u0437 \u0432\u0441\u0435\u0445 \u043e\u0431\u043b\u0430\u0441\u0442\u0435\u0439 \u0436\u0438\u0437\u043d\u0438.","protected":false,"verified":false,"followers_count":41593,"friends_count":12,"listed_count":797,"favourites_count":0,"statuses_count":336465,"created_at":"Mon Aug 31 15:15:15 +0000 2009","utc_offset":10800,"time_zone":"Moscow","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/802486342\/3c2a667b8f47f8e3f5ee6298f956c33a.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/802486342\/3c2a667b8f47f8e3f5ee6298f956c33a.jpeg","profile_background_tile":false,"profile_link_color":"671A1D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"CCCCCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3319504654\/1541a04a2711d20bffdba8056d824d6f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3319504654\/1541a04a2711d20bffdba8056d824d6f_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/70416094\/1362059598","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zN8NDTUpec","expanded_url":"http:\/\/www.gazeta.ru\/social\/news\/2015\/11\/09\/n_7865663.shtml?utm_source=google&utm_medium=banner&utm_campaign=all","display_url":"gazeta.ru\/social\/news\/20\u2026","indices":[49,72]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zN8NDTUpec","expanded_url":"http:\/\/www.gazeta.ru\/social\/news\/2015\/11\/09\/n_7865663.shtml?utm_source=google&utm_medium=banner&utm_campaign=all","display_url":"gazeta.ru\/social\/news\/20\u2026","indices":[67,90]}],"user_mentions":[{"screen_name":"GazetaRu_All","name":"\u0412\u0441\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438","id":70416094,"id_str":"70416094","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294991302656,"id_str":"663728294991302656","text":"@bluishgreen_m \n\u3048\u3089\u301c\u3044!!\n \n\u591c\u4e2d\u306f\u306d\u3047\u2025\u3082\u308c\u306a\u304f \u304a\u8089\u304c\u3064\u3044\u3066\u304d\u3066\u304f\u308c\u3061\u3083\u3044\u307e\u3059\u3057\u306d\u3047\u30fc\ud83d\ude05\ud83d\udca6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727508282458112,"in_reply_to_status_id_str":"663727508282458112","in_reply_to_user_id":1153461313,"in_reply_to_user_id_str":"1153461313","in_reply_to_screen_name":"bluishgreen_m","user":{"id":3523404852,"id_str":"3523404852","name":"\u30a8\u30ea\u301c\u301c","screen_name":"erieri07070301","location":"\u65e5\u672c \u5175\u5eab\u770c","url":null,"description":"\u7de8\u307f\u7269\u306f\u4eca\u306f\u304b\u304e\u91dd\u304c\u30aa\u30e2\u3067\u3059\u2764\ufe0e\u2764\ufe0e\u65e5\u5897\u3057\u306b\u306f\u307e\u3063\u3066\u884c\u3063\u3066\u307e\u3059!!\u273d(\u2032\u0962\u1d55 \u2035 *\u0962)\u273d\u2764\ufe0e\u30dd\u30c3\u2728\u4ed6\u306b\u3082\u30d5\u30a7\u30eb\u30c8.\u6d0b\u88c1\u306b\u304a\u83d3\u5b50\u4f5c\u308a\u306b\u3068\u5e45\u5e83\u304f\u3057\u3066\u3044\u307e\u3059!!\u3002\u6eba\u611b\u3057\u3066\u308b\u301c\u30cb\u30e3\u30f3\u30b3\u306e\u30eb\u30fc\u30c1\u30a7( *\u00b4\u8278\uff40) \u304c\u5c45\u307e\u3059\u3002\u65e6\u90a3\u3055\u3093\u5927\u597d\u304d\u3067\u3059\u2764\ufe0e\u2764\ufe0e \u3069\u3046\u305e\u6c17\u8efd\u306b\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3043\u3002\u3002","protected":false,"verified":false,"followers_count":31,"friends_count":22,"listed_count":1,"favourites_count":416,"statuses_count":419,"created_at":"Fri Sep 11 05:45:20 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659464023960719361\/frKtTcjN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659464023960719361\/frKtTcjN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3523404852\/1446063450","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bluishgreen_m","name":"\u307f\u3069\u308a","id":1153461313,"id_str":"1153461313","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131658"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999760896,"id_str":"663728294999760896","text":"Bug\u00fcn g\u00fcne\u015fin kizlari varrr \ud83d\udc81","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2464683878,"id_str":"2464683878","name":"merv\u00f6\u00f6","screen_name":"MileyftBen","location":null,"url":"http:\/\/mileycyrus.com","description":"Miley Cyrus | Justin Bieber | Cameron Dallas | Ariana Grande | Jack Gilinsky | Savnaz |","protected":false,"verified":false,"followers_count":59784,"friends_count":5012,"listed_count":11,"favourites_count":64122,"statuses_count":105092,"created_at":"Sat Apr 26 14:09:02 +0000 2014","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"2E282A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/603490821329956864\/omo30vM_.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/603490821329956864\/omo30vM_.png","profile_background_tile":true,"profile_link_color":"261F22","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663707335076917249\/8vx-0Ve1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663707335076917249\/8vx-0Ve1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2464683878\/1446921216","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080131660"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999670784,"id_str":"663728294999670784","text":"\u30ce\u30ef\u30fc\u30eb\u5165\u3063\u3066\u6c5a\u304f\u306a\u3063\u3066\u308b\u3084\u3093\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3769712053,"id_str":"3769712053","name":"\u308f\u3089\u308f\u3089\u3046\u3093\u3082","screen_name":"wwwwwunmooooo","location":"I DARS I","url":null,"description":"ps3.DARS\u6240\u5c5e.PSIDww-_-unmo \u5207\u308a\u66ff\u3048\u7df4\u7fd2\u4e2d.\u30ea\u30fc\u30c0\u30fc@kinneku1.\u6c5a\u304b\u3063\u305f\u3089\u6559\u3048\u3066\u304f\u3060\u3055\u3044","protected":false,"verified":false,"followers_count":430,"friends_count":459,"listed_count":0,"favourites_count":514,"statuses_count":1258,"created_at":"Sat Oct 03 11:50:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660405083234963456\/6SRtli5Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660405083234963456\/6SRtli5Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3769712053\/1446293351","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131660"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295003820032,"id_str":"663728295003820032","text":"what's up with the ass eating convos this early in the morning?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3158487329,"id_str":"3158487329","name":"Nekkie","screen_name":"nekkie_heaux","location":null,"url":null,"description":"back on Twitter! Follow Meee!!","protected":false,"verified":false,"followers_count":200,"friends_count":202,"listed_count":0,"favourites_count":110,"statuses_count":3607,"created_at":"Sun Apr 12 05:50:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638566271487864832\/UM9Hd1GU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638566271487864832\/UM9Hd1GU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3158487329\/1435885592","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131661"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012384769,"id_str":"663728295012384769","text":"RT @aosgifs: https:\/\/t.co\/OqkdUgTftc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1160756863,"id_str":"1160756863","name":"lilly","screen_name":"dylanbrioen","location":null,"url":null,"description":"Rainbows and smiles :)","protected":false,"verified":false,"followers_count":1423,"friends_count":512,"listed_count":32,"favourites_count":7275,"statuses_count":112080,"created_at":"Fri Feb 08 17:27:14 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/468111768149966851\/tqWcgXCy.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/468111768149966851\/tqWcgXCy.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"242424","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661598168396775424\/zhyenwId_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661598168396775424\/zhyenwId_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1160756863\/1446578264","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 15:03:30 +0000 2015","id":663371271997136896,"id_str":"663371271997136896","text":"https:\/\/t.co\/OqkdUgTftc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3430064704,"id_str":"3430064704","name":"aos gifs","screen_name":"aosgifs","location":"requests via dm","url":null,"description":"\u2022gifs are not mine\u2022","protected":false,"verified":false,"followers_count":473,"friends_count":10,"listed_count":0,"favourites_count":4,"statuses_count":203,"created_at":"Tue Aug 18 15:24:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652802125395828736\/-IBw1g0v_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652802125395828736\/-IBw1g0v_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3430064704\/1444475117","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":20,"favorite_count":20,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663371211158790145,"id_str":"663371211158790145","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","url":"https:\/\/t.co\/OqkdUgTftc","display_url":"pic.twitter.com\/OqkdUgTftc","expanded_url":"http:\/\/twitter.com\/aosgifs\/status\/663371271997136896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":499,"h":281,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663371211158790145,"id_str":"663371211158790145","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","url":"https:\/\/t.co\/OqkdUgTftc","display_url":"pic.twitter.com\/OqkdUgTftc","expanded_url":"http:\/\/twitter.com\/aosgifs\/status\/663371271997136896\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":499,"h":281,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}},"video_info":{"aspect_ratio":[500,281],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTEmhNXIAEF-sb.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"aosgifs","name":"aos gifs","id":3430064704,"id_str":"3430064704","indices":[3,11]}],"symbols":[],"media":[{"id":663371211158790145,"id_str":"663371211158790145","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","url":"https:\/\/t.co\/OqkdUgTftc","display_url":"pic.twitter.com\/OqkdUgTftc","expanded_url":"http:\/\/twitter.com\/aosgifs\/status\/663371271997136896\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":499,"h":281,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}},"source_status_id":663371271997136896,"source_status_id_str":"663371271997136896","source_user_id":3430064704,"source_user_id_str":"3430064704"}]},"extended_entities":{"media":[{"id":663371211158790145,"id_str":"663371211158790145","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTTEmhNXIAEF-sb.png","url":"https:\/\/t.co\/OqkdUgTftc","display_url":"pic.twitter.com\/OqkdUgTftc","expanded_url":"http:\/\/twitter.com\/aosgifs\/status\/663371271997136896\/photo\/1","type":"animated_gif","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":499,"h":281,"resize":"fit"},"medium":{"w":499,"h":281,"resize":"fit"}},"source_status_id":663371271997136896,"source_status_id_str":"663371271997136896","source_user_id":3430064704,"source_user_id_str":"3430064704","video_info":{"aspect_ratio":[500,281],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTTEmhNXIAEF-sb.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294995451904,"id_str":"663728294995451904","text":"RT @siruko_Game: \u3010\u30a2\u30a4\u30c1\u30e5\u30c1\u30e5\u3011\u7d9a\u30fb\u7537\u306e\u6027\u3010\u30ed\u30e0\u30e2\u30a2\u3011 https:\/\/t.co\/jv4SGzg94A","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2470400869,"id_str":"2470400869","name":"\u3086\u304d\u3046\u3055\u304e\u30ec\u30df\u30a3\uff20\u3057\u3087\u3070\u308dSA\u5168\u88f8\u5f85\u6a5f","screen_name":"lsrrebirth","location":null,"url":null,"description":"\u30ab\u30fc\u30d3\u30a3\/\u30df\u30eb\u30ad\u30a3\u30db\u30fc\u30e0\u30ba\/\u30b9\u30de\u30d6\u30e9\/SB69\/\u30dd\u30b1\u30e2\u30f3\/\u8266\u3053\u308c\/\u30ea\u30c8\u30d0\u30b9\/\u30cb\u30e3\u30eb\u5b50\/\u30f4\u30a1\u30a4\u30b9\u30b7\u30e5\u30f4\u30a1\u30eb\u30c4\/\u30c8\u30a4\u30c9\u30e9\/\u30d0\u30a6\u30e2\u30f3\/\u5357\u689d\u611b\u4e43\/\u30d0\u30a4\u30af\/\u30ab\u30e1\u30e9\/\u3042\u3068\u306a\u3093\u304b\u601d\u3044\u3064\u3044\u305f\u3089\u8ffd\u8a18\u3057\u307e\u3059\u3002\u57fa\u672c\u7684\u306b\u306f\u96d1\u98df\u306a\u5909\u614b\u3067\u3059\u3002\n\u8a73\u3057\u304f\u306f\u3064\u3044\u3077\u308d\u53c2\u7167\nhttp:\/\/twpf.jp\/lsrrebirth","protected":false,"verified":false,"followers_count":311,"friends_count":445,"listed_count":20,"favourites_count":13065,"statuses_count":33362,"created_at":"Wed Apr 30 05:35:50 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652871634538201088\/EwD9y-yV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652871634538201088\/EwD9y-yV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2470400869\/1436594790","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:09:34 +0000 2015","id":663312401773649920,"id_str":"663312401773649920","text":"\u3010\u30a2\u30a4\u30c1\u30e5\u30c1\u30e5\u3011\u7d9a\u30fb\u7537\u306e\u6027\u3010\u30ed\u30e0\u30e2\u30a2\u3011 https:\/\/t.co\/jv4SGzg94A","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317176321,"id_str":"3317176321","name":"\u6c41\u7c89","screen_name":"siruko_Game","location":"\u843d\u3061\u7740\u3044\u305f\u3089\u643a\u5e2f\u97f3\u30b2\u30fc\u57a2\u306b\u3059\u308b\u4e88\u5b9a\u3067\u3059","url":"http:\/\/twpf.jp\/siruko_Game","description":"\uff78\uff7f\u65b0\u53c2\u6c41\u7c89\u306e\u5546\u58f2\u9694\u96e2\u57a2 \u5e38\u306b\u3046\u308b\u3055\u3044\u306e\u3068\u7537\u5973\u304b\u3089\u306c\u308b\u3081\u306e\u7537\u8272\u307e\u3067\u634f\u9020cp\u305d\u306e\u4ed6\u7bc0\u64cd\u306a\u3044\u306e\u3067\u8272\u3005\u3068\u3054\u6ce8\u610f\u3092\u304a\u9858\u3044\u3057\u307e\u3059 \u306c\u308b\u304f\u306a\u3044\u65b9\u2192@shiruko_SBCP","protected":false,"verified":false,"followers_count":190,"friends_count":186,"listed_count":2,"favourites_count":3818,"statuses_count":3509,"created_at":"Sun Aug 16 20:03:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661434515240321024\/g33iz2fa_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661434515240321024\/g33iz2fa_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317176321\/1446887344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":42,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663312345200918529,"id_str":"663312345200918529","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","url":"https:\/\/t.co\/jv4SGzg94A","display_url":"pic.twitter.com\/jv4SGzg94A","expanded_url":"http:\/\/twitter.com\/siruko_Game\/status\/663312401773649920\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663312345200918529,"id_str":"663312345200918529","indices":[20,43],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","url":"https:\/\/t.co\/jv4SGzg94A","display_url":"pic.twitter.com\/jv4SGzg94A","expanded_url":"http:\/\/twitter.com\/siruko_Game\/status\/663312401773649920\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"siruko_Game","name":"\u6c41\u7c89","id":3317176321,"id_str":"3317176321","indices":[3,15]}],"symbols":[],"media":[{"id":663312345200918529,"id_str":"663312345200918529","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","url":"https:\/\/t.co\/jv4SGzg94A","display_url":"pic.twitter.com\/jv4SGzg94A","expanded_url":"http:\/\/twitter.com\/siruko_Game\/status\/663312401773649920\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663312401773649920,"source_status_id_str":"663312401773649920","source_user_id":3317176321,"source_user_id_str":"3317176321"}]},"extended_entities":{"media":[{"id":663312345200918529,"id_str":"663312345200918529","indices":[37,60],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSPEEbVAAEPN4X.jpg","url":"https:\/\/t.co\/jv4SGzg94A","display_url":"pic.twitter.com\/jv4SGzg94A","expanded_url":"http:\/\/twitter.com\/siruko_Game\/status\/663312401773649920\/photo\/1","type":"photo","sizes":{"large":{"w":577,"h":1024,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":603,"resize":"fit"},"medium":{"w":577,"h":1024,"resize":"fit"}},"source_status_id":663312401773649920,"source_status_id_str":"663312401773649920","source_user_id":3317176321,"source_user_id_str":"3317176321"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131659"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020642305,"id_str":"663728295020642305","text":"RT @oceanseie: \u300e\u306a\u3093\u3067\u7f8e\u5bb9\u5e2b\u306a\u3093\u3067\u3059\u304b\uff1f\u300f\n\n\u3088\u304f\u805e\u304b\u308c\u307e\u3059\u3002\n\u304b\u3063\u3053\u3064\u3051\u308b\u3068\u304b\u3067\u306f\u306a\u304f\n\u672c\u5f53\u306b\u305f\u3060\n\n\u300e\u4eba\u306e\u7b11\u9854\u304c\u597d\u304d\u3060\u304b\u3089\u3067\u3059\u300f\n\n\u3053\u308c\u304c1\u756a\u306b\u304d\u307e\u3059\u3002\n\n\u6614\u304b\u3089\n\u9060\u8db3\u3068\u304b\u3001\u884c\u4e8b\u3068\u304b\n\u3068\u306b\u304b\u304f\u697d\u3057\u304f\u3066\u3001\u307f\u3093\u306a\u304c\u7b11\u3063\u3066\u308b\u3088\u3046\u306a\n\u305d\u3093\u306a\u7b11\u9854\u6ea2\u308c\u308b\u7a7a\u9593\u304c\u597d\u304d\u3067\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1559697702,"id_str":"1559697702","name":"gabu","screen_name":"gabu_0610","location":"\u8328\u57ce","url":null,"description":"\u52dd\u7530\u4e00\u4e2d\u2192\u52dd\u7530\u9ad8\u68213\u5e74\u2192\u5c71\u91ce\u7f8e\u5bb9\/OCEAN TOKYO\/\u5916\u898b\u3060\u3051\u3067\u306a\u304f\u5185\u9762\u304b\u3089\u304b\u3063\u3053\u3088\u304f\u3059\u308b\u4e16\u754c\u4e00\u306e\u7f8e\u5bb9\u5e2b\u306b\uff01\/\u30c7\u30a3\u30ba\u30cb\u30fc\u30cf\u30de\u308a\u4e2d","protected":false,"verified":false,"followers_count":200,"friends_count":288,"listed_count":0,"favourites_count":60311,"statuses_count":4124,"created_at":"Mon Jul 01 05:28:19 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613009380506624000\/dl-_-RXh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613009380506624000\/dl-_-RXh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1559697702\/1441096215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:49:09 +0000 2015","id":663714947226931200,"id_str":"663714947226931200","text":"\u300e\u306a\u3093\u3067\u7f8e\u5bb9\u5e2b\u306a\u3093\u3067\u3059\u304b\uff1f\u300f\n\n\u3088\u304f\u805e\u304b\u308c\u307e\u3059\u3002\n\u304b\u3063\u3053\u3064\u3051\u308b\u3068\u304b\u3067\u306f\u306a\u304f\n\u672c\u5f53\u306b\u305f\u3060\n\n\u300e\u4eba\u306e\u7b11\u9854\u304c\u597d\u304d\u3060\u304b\u3089\u3067\u3059\u300f\n\n\u3053\u308c\u304c1\u756a\u306b\u304d\u307e\u3059\u3002\n\n\u6614\u304b\u3089\n\u9060\u8db3\u3068\u304b\u3001\u884c\u4e8b\u3068\u304b\n\u3068\u306b\u304b\u304f\u697d\u3057\u304f\u3066\u3001\u307f\u3093\u306a\u304c\u7b11\u3063\u3066\u308b\u3088\u3046\u306a\n\u305d\u3093\u306a\u7b11\u9854\u6ea2\u308c\u308b\u7a7a\u9593\u304c\u597d\u304d\u3067\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":239597100,"id_str":"239597100","name":"\u7c73\u7530\u661f\u6167 OCEANTOKYO","screen_name":"oceanseie","location":"suplex city","url":null,"description":"\u3010OCEAN TOKYO\u3011\u3010WWE universe\u3011 \u300a\u60f3\u3044\u300b\u3067\u4e16\u754c\u3092\u5909\u3048\u307e\u3059\u3002\u81ea\u5206\u306b\u81ea\u4fe1\u304c\u7121\u3044\u4eba\u3082\u3001\u4e0d\u5b89\u3084\u4e0d\u6e80\u304c\u3042\u308b\u4eba\u3001\u5168\u54e1\u50d5\u306b\u6559\u3048\u3066\u304f\u3060\u3055\u3044\u3002\u300a\u60f3\u3044\u300b\u3067\u5fc5\u305a\u529b\u3092\u5c4a\u3051\u307e\u3059\u3002 \u4e00\u7dd2\u306b\u6b69\u3093\u3067\u3044\u304d\u307e\u3057\u3087\u3046 \u50d5\u304c\u300a\u8cb4\u65b9\u306e\u4e16\u754c\u300b\u3092\u5909\u3048\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":22042,"friends_count":19133,"listed_count":65,"favourites_count":2053,"statuses_count":11975,"created_at":"Tue Jan 18 00:26:02 +0000 2011","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602129678149689345\/63UQ20hI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602129678149689345\/63UQ20hI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/239597100\/1436175508","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":57,"favorite_count":197,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"oceanseie","name":"\u7c73\u7530\u661f\u6167 OCEANTOKYO","id":239597100,"id_str":"239597100","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020789761,"id_str":"663728295020789761","text":"@null @ardi_herawani Follbacks Yaa #aliando","source":"\u003ca href=\"http:\/\/detik.com\" rel=\"nofollow\"\u003e\u03a4witter for DetikNews\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3562471,"in_reply_to_user_id_str":"3562471","in_reply_to_screen_name":"null","user":{"id":562540682,"id_str":"562540682","name":"Aliando Syarief","screen_name":"AIiandoKEPO","location":"indonesia","url":null,"description":"@alysyarief @AIiandoKEPO It's never too late to set things right. CP: kak @yhiyie23__ @alicious_resmi #DokArt Management","protected":false,"verified":false,"followers_count":69434,"friends_count":68468,"listed_count":16,"favourites_count":0,"statuses_count":396455,"created_at":"Wed Apr 25 02:58:51 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/446297487305736194\/YWfpNK1o.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/446297487305736194\/YWfpNK1o.jpeg","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"0E0E0E","profile_text_color":"4A66C1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637483966233112576\/MfUx2Zst_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637483966233112576\/MfUx2Zst_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/562540682\/1440822986","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"aliando","indices":[35,43]}],"urls":[],"user_mentions":[{"screen_name":"null","name":"not quite nothing","id":3562471,"id_str":"3562471","indices":[0,5]},{"screen_name":"ardi_herawani","name":"ardi herawani","id":4179756673,"id_str":"4179756673","indices":[6,20]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020642304,"id_str":"663728295020642304","text":"RT @BerryCandy0428: #\uc131\uaddc #SungKyu \uc624\ube60 \ucc9c\uc0ac \uc778\uac00\uc694, \uc5d0\uc778\uc824 \uc778\uac00\uc694?~ (\uc694\uc998 gif \uc911\ub3c5 \uc911 \u314b\u314b\u314b\ngif link: https:\/\/t.co\/nXCyNwi0uH https:\/\/t.co\/JOD7xoZ5xv","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1610034540,"id_str":"1610034540","name":"namjatatii -\u3148-","screen_name":"namjatatii","location":"\u0e22\u0e32\u0e19\u0e41\u0e21\u0e48 \u0e13 \u0e14\u0e32\u0e27\u0e41\u0e04\u0e23\u0e30","url":null,"description":"\u0e2b\u0e25\u0e07\u0e23\u0e31\u0e01\u0e40\u0e14\u0e47\u0e01\u0e41\u0e04\u0e23\u0e30\u0e17\u0e31\u0e49\u0e077 \u0e40\u0e21\u0e19\u0e08\u0e07\u0e07\u0e35\u0e48 \u0e21\u0e22\u0e2d\u0e07 \u0e01\u0e22\u0e39 \u0e41\u0e25\u0e30\u0e17\u0e31\u0e49\u0e07\u0e27\u0e07- - I'm Inspirit!! ^^","protected":false,"verified":false,"followers_count":143,"friends_count":356,"listed_count":4,"favourites_count":27753,"statuses_count":180792,"created_at":"Sun Jul 21 08:22:43 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"EFF4F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000029341416\/730f33de4903c569bc72683aebc58715.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000029341416\/730f33de4903c569bc72683aebc58715.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622248953765965824\/AMBB_orY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622248953765965824\/AMBB_orY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1610034540\/1437190404","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:30:59 +0000 2015","id":663710376161333248,"id_str":"663710376161333248","text":"#\uc131\uaddc #SungKyu \uc624\ube60 \ucc9c\uc0ac \uc778\uac00\uc694, \uc5d0\uc778\uc824 \uc778\uac00\uc694?~ (\uc694\uc998 gif \uc911\ub3c5 \uc911 \u314b\u314b\u314b\ngif link: https:\/\/t.co\/nXCyNwi0uH https:\/\/t.co\/JOD7xoZ5xv","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3247144029,"id_str":"3247144029","name":"\ub538\uae30\uce94\ub5140428","screen_name":"BerryCandy0428","location":null,"url":"http:\/\/berrycandy0428.lofter.com","description":"\ub538\uae30\uce94\ub514 \ucc98\ub7fc \ub2ec\ucf64\ud55c \uae40\uc131\uaddc \nINFINITE Leader KimSungKyu Fanpage","protected":false,"verified":false,"followers_count":2414,"friends_count":45,"listed_count":88,"favourites_count":0,"statuses_count":262,"created_at":"Tue May 12 03:09:18 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"zh-CN","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654811569142951941\/Bhk3zUKa_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654811569142951941\/Bhk3zUKa_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3247144029\/1444954184","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":76,"entities":{"hashtags":[{"text":"\uc131\uaddc","indices":[0,3]},{"text":"SungKyu","indices":[4,12]}],"urls":[{"url":"https:\/\/t.co\/nXCyNwi0uH","expanded_url":"http:\/\/imageshack.com\/a\/img911\/8878\/o48EMy.gif","display_url":"imageshack.com\/a\/img911\/8878\/\u2026","indices":[62,85]}],"user_mentions":[],"symbols":[],"media":[{"id":663710324688834560,"id_str":"663710324688834560","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","url":"https:\/\/t.co\/JOD7xoZ5xv","display_url":"pic.twitter.com\/JOD7xoZ5xv","expanded_url":"http:\/\/twitter.com\/BerryCandy0428\/status\/663710376161333248\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":288,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663710324688834560,"id_str":"663710324688834560","indices":[86,109],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","url":"https:\/\/t.co\/JOD7xoZ5xv","display_url":"pic.twitter.com\/JOD7xoZ5xv","expanded_url":"http:\/\/twitter.com\/BerryCandy0428\/status\/663710376161333248\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":288,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX5BhjWUAAKMtB.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc131\uaddc","indices":[20,23]},{"text":"SungKyu","indices":[24,32]}],"urls":[{"url":"https:\/\/t.co\/nXCyNwi0uH","expanded_url":"http:\/\/imageshack.com\/a\/img911\/8878\/o48EMy.gif","display_url":"imageshack.com\/a\/img911\/8878\/\u2026","indices":[82,105]}],"user_mentions":[{"screen_name":"BerryCandy0428","name":"\ub538\uae30\uce94\ub5140428","id":3247144029,"id_str":"3247144029","indices":[3,18]}],"symbols":[],"media":[{"id":663710324688834560,"id_str":"663710324688834560","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","url":"https:\/\/t.co\/JOD7xoZ5xv","display_url":"pic.twitter.com\/JOD7xoZ5xv","expanded_url":"http:\/\/twitter.com\/BerryCandy0428\/status\/663710376161333248\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":288,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663710376161333248,"source_status_id_str":"663710376161333248","source_user_id":3247144029,"source_user_id_str":"3247144029"}]},"extended_entities":{"media":[{"id":663710324688834560,"id_str":"663710324688834560","indices":[106,129],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CTX5BhjWUAAKMtB.png","url":"https:\/\/t.co\/JOD7xoZ5xv","display_url":"pic.twitter.com\/JOD7xoZ5xv","expanded_url":"http:\/\/twitter.com\/BerryCandy0428\/status\/663710376161333248\/photo\/1","type":"animated_gif","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":512,"h":288,"resize":"fit"},"small":{"w":340,"h":191,"resize":"fit"}},"source_status_id":663710376161333248,"source_status_id_str":"663710376161333248","source_user_id":3247144029,"source_user_id_str":"3247144029","video_info":{"aspect_ratio":[16,9],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CTX5BhjWUAAKMtB.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295008014341,"id_str":"663728295008014341","text":"RT @Dinga_B19: [RT\uc774\ubca4]\n200\ud314\ub85c\uac00 \ub118\uc5c8\ub124\uc694 8\u31458 \uadf8\ub9bc\ub3c4 \ub738\ud55c\ub370 \ub9ce\uc740 \uad00\uc2ec \uac10\uc0ac\ud569\ub2c8\ub2e4 \ud574\ub4dc\ub9b4\uac74 \uadf8\ub9bc\ubc16\uc5d0 \uc5c6\ub124\uc694 RT\ud574\uc8fc\uc2e0\ubd84\ub4e4 \ud55c\ubd84 \ucd94\ucca8\ud574\uc11c \ucd5c\uc560\uce90\uadf8\ub824\ub4dc\ub9b4\uac8c\uc694! (\uc7a5\ub974X,\ud2b8\uce5c\ud55c\uc815X) \uac10\uc0ac\ud569\ub2c8\ub2e4 u3u\u2665 https:\/\/t.co\/gcvH\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314413718,"id_str":"3314413718","name":"[\uc2ec\ucff5\uc0ac]\uaebd\uae30\uaebd\uae30 \ud314\uaebd\uae30~!\/\uc7bc\ubcf5\uce58","screen_name":"_180x165_","location":"\uce74\ub77c\uc2a4\ub178\ub3d9 806\ud638 \uc5ec\ubcf4\uc606 \u2661180x165_","url":"http:\/\/twpf.jp\/_180x165_","description":"\uc0ac\ub791\ud558\ub294 \ub098\uc758 \uc2e0\ub791\ub2d8 (\u0e51\u02c73\u02c7\u0e51)\u2661 (@180x165_ ) Some 150817 Love 150820","protected":false,"verified":false,"followers_count":133,"friends_count":175,"listed_count":2,"favourites_count":883,"statuses_count":15003,"created_at":"Thu Aug 13 14:19:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660121424741318656\/OjjZrqCJ.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660121424741318656\/OjjZrqCJ.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653154834024017920\/lpVx6UJM_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653154834024017920\/lpVx6UJM_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3314413718\/1446964920","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:21:14 +0000 2015","id":663723024080748545,"id_str":"663723024080748545","text":"[RT\uc774\ubca4]\n200\ud314\ub85c\uac00 \ub118\uc5c8\ub124\uc694 8\u31458 \uadf8\ub9bc\ub3c4 \ub738\ud55c\ub370 \ub9ce\uc740 \uad00\uc2ec \uac10\uc0ac\ud569\ub2c8\ub2e4 \ud574\ub4dc\ub9b4\uac74 \uadf8\ub9bc\ubc16\uc5d0 \uc5c6\ub124\uc694 RT\ud574\uc8fc\uc2e0\ubd84\ub4e4 \ud55c\ubd84 \ucd94\ucca8\ud574\uc11c \ucd5c\uc560\uce90\uadf8\ub824\ub4dc\ub9b4\uac8c\uc694! (\uc7a5\ub974X,\ud2b8\uce5c\ud55c\uc815X) \uac10\uc0ac\ud569\ub2c8\ub2e4 u3u\u2665 https:\/\/t.co\/gcvHNPgaV1","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3369137413,"id_str":"3369137413","name":"\ub529\uac00","screen_name":"Dinga_B19","location":null,"url":"http:\/\/dingab19.tistory.com\/","description":"ONEPICE FUB free l \ucee4\ubbf8\uc158 @COM_Dinga_B19","protected":false,"verified":false,"followers_count":212,"friends_count":82,"listed_count":0,"favourites_count":115,"statuses_count":488,"created_at":"Fri Aug 28 09:31:10 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638740282914111488\/04JRqQrX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638740282914111488\/04JRqQrX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3369137413\/1440755444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":55,"favorite_count":4,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}}},{"id":663722047105859585,"id_str":"663722047105859585","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}}},{"id":663722108372066304,"id_str":"663722108372066304","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":500,"resize":"fit"},"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":600,"h":500,"resize":"fit"}}},{"id":663722384474693632,"id_str":"663722384474693632","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1100,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Dinga_B19","name":"\ub529\uac00","id":3369137413,"id_str":"3369137413","indices":[3,13]}],"symbols":[],"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"}]},"extended_entities":{"media":[{"id":663721997063573504,"id_str":"663721997063573504","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDo8iWUAA_2AU.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":521,"h":311,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":521,"h":311,"resize":"fit"},"small":{"w":340,"h":202,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722047105859585,"id_str":"663722047105859585","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDr29XAAEiIMB.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":600,"resize":"fit"},"small":{"w":340,"h":408,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":600,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722108372066304,"id_str":"663722108372066304","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYDvbMXIAA-pvh.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":500,"resize":"fit"},"small":{"w":340,"h":283,"resize":"fit"},"medium":{"w":600,"h":500,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"},{"id":663722384474693632,"id_str":"663722384474693632","indices":[122,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYD_fwW4AAiLNV.png","url":"https:\/\/t.co\/gcvHNPgaV1","display_url":"pic.twitter.com\/gcvHNPgaV1","expanded_url":"http:\/\/twitter.com\/Dinga_B19\/status\/663723024080748545\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":825,"resize":"fit"},"small":{"w":340,"h":467,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":800,"h":1100,"resize":"fit"}},"source_status_id":663723024080748545,"source_status_id_str":"663723024080748545","source_user_id":3369137413,"source_user_id_str":"3369137413"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080131662"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294987075584,"id_str":"663728294987075584","text":"@re43re43 \u304a\u8fd4\u4e8b\u304c\u9045\u304f\u306a\u3063\u3066\u3057\u307e\u3063\u3066\u3054\u3081\u3093\u306a\u3055\u3044(>_<)\n\u3053\u3061\u3089\u3053\u305d\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f(o^^o)\n\u3053\u308c\u304b\u3089\u3082\u9811\u5f35\u308a\u307e\u3059\u306e\u3067\u3001\u898b\u5b88\u3063\u3066\u9802\u3051\u308b\u3068\u5b09\u3057\u3044\u3067\u3059\u2606","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":661005825058598913,"in_reply_to_status_id_str":"661005825058598913","in_reply_to_user_id":1647597014,"in_reply_to_user_id_str":"1647597014","in_reply_to_screen_name":"re43re43","user":{"id":393433790,"id_str":"393433790","name":"mizuha","screen_name":"happachannel8_1","location":null,"url":"http:\/\/lalachannel11-4.tumblr.com","description":"\u611b\u732b\u30e9\u30e9\u3061\u3083\u3093\u306b\u751f\u6d3b\u3092\u6367\u3052\u3066\u307e\u3059(*\u00b4\u03c9\uff40*) \u30cf\u30c1\u30af\u30ed\u3061\u3073\u3061\u3083\u3093\u305a\u304c\u3084\u3063\u3066\u6765\u3066\u3001\u5bb6\u65cf\u304c\u5897\u3048\u307e\u3057\u305f\u266a \u30e9\u30fc\u30e1\u30f3\u5927\u597d\u304d\u4eba\u9593(=\uff9f\u03c9\uff9f)\uff89 TSM\/M\u2606\/\u516d\u672c\u6728\u91d1\u9b5a\/\u67d0\u6c34\u65cf\u9928\u30a4\u30eb\u30ab\u30b7\u30e7\u30fc\/USJetc...","protected":false,"verified":false,"followers_count":5253,"friends_count":123,"listed_count":134,"favourites_count":777,"statuses_count":5794,"created_at":"Tue Oct 18 14:46:43 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2925562114\/b1e47b424c301835e34c599bf052b968_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2925562114\/b1e47b424c301835e34c599bf052b968_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/393433790\/1441798450","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"re43re43","name":"REONA","id":1647597014,"id_str":"1647597014","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131657"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999658496,"id_str":"663728294999658496","text":"RT @brownjenjen: NFL: Steelers' Ben Roethlisberger, VIkings' Teddy Bridgewater, ... https:\/\/t.co\/orLajsYq2A","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2458060080,"id_str":"2458060080","name":"betty","screen_name":"bettmoore","location":"Utah","url":null,"description":"Social media specialist. Hardcore web junkie. Entrepreneur.","protected":false,"verified":false,"followers_count":14861,"friends_count":14908,"listed_count":264,"favourites_count":402,"statuses_count":260887,"created_at":"Tue Apr 22 12:28:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/458583124138418177\/XBd6TG6V_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/458583124138418177\/XBd6TG6V_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2458060080\/1398169783","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:13 +0000 2015","id":663728051356700673,"id_str":"663728051356700673","text":"NFL: Steelers' Ben Roethlisberger, VIkings' Teddy Bridgewater, ... https:\/\/t.co\/orLajsYq2A","source":"\u003ca href=\"http:\/\/dlvr.it\" rel=\"nofollow\"\u003edlvr.it\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2453787236,"id_str":"2453787236","name":"Jennifer ","screen_name":"brownjenjen","location":"Dallas, TX","url":"http:\/\/bit.ly\/usnewse","description":"i've got NO TIME to answer all DM's - i'll favorite (if i've time) some of your posts, but for more i don't have time... sorry :\/","protected":false,"verified":false,"followers_count":28141,"friends_count":2,"listed_count":266,"favourites_count":369,"statuses_count":306043,"created_at":"Sat Apr 19 23:03:12 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/509709810938298368\/Cx8Qrtva_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/509709810938298368\/Cx8Qrtva_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2453787236\/1410359620","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":71,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/orLajsYq2A","expanded_url":"http:\/\/dlvr.it\/ChfpMh","display_url":"dlvr.it\/ChfpMh","indices":[67,90]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/orLajsYq2A","expanded_url":"http:\/\/dlvr.it\/ChfpMh","display_url":"dlvr.it\/ChfpMh","indices":[84,107]}],"user_mentions":[{"screen_name":"brownjenjen","name":"Jennifer ","id":2453787236,"id_str":"2453787236","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131660"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999621632,"id_str":"663728294999621632","text":"@53Torainochi \ud83d\ude2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725736411303936,"in_reply_to_status_id_str":"663725736411303936","in_reply_to_user_id":2411936664,"in_reply_to_user_id_str":"2411936664","in_reply_to_screen_name":"53Torainochi","user":{"id":3238658064,"id_str":"3238658064","name":"\u3068\u3082","screen_name":"1212tomoku","location":null,"url":"http:\/\/tomo091409.exblog.jp","description":"\u3084\u3081\u3089\u308c\u306a\u3044\u3001\u6b62\u307e\u3089\u306a\u3044\u3002\u304b\u3063\u3071\u3048\u3073\u305b\u3093\u30e1\u30f3\u30bf\u30eb\u3002 \u8857\u4eba\u306e\u30ae\u30bf\u30fc\u3068\u5504\u3067\u3059\u3002\u5199\u771f\u306f2014\u5e74\u590f\u4ed5\u69d8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":238,"friends_count":250,"listed_count":0,"favourites_count":189,"statuses_count":1169,"created_at":"Sun Jun 07 09:39:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662640345016963072\/v-80drNr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662640345016963072\/v-80drNr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3238658064\/1442227215","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"53Torainochi","name":"\u3068\u3089","id":2411936664,"id_str":"2411936664","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080131660"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295024787456,"id_str":"663728295024787456","text":"\u3054\u8996\u8074\u3042\u308a\u304c\u3068\u3067\u3059\u30fc\u2606\n\u5b09\u3057\u3059\u304e\u3066\u9854\u771f\u3063\u8d64&\u9178\u6b20\u306b\u306a\u3063\u3066\u308b\u59ff\u306f\u3044\u3064\u898b\u3066\u3082\u304a\u6065\u305a\u304b\u3057\u3044(\u3003\uff89\u0434\uff89) https:\/\/t.co\/7Juy4ZUX8M","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3168863865,"id_str":"3168863865","name":"\u305a\u306a\u307e\u308b\uff20\u30b9\u30af\u30d5\u30a7\u30b9\u5b9f\u6cc1 etc.","screen_name":"zunamarun","location":"\u6771\u5317\u306e\u30a6\u30a3\u30fc\u30f3\u3063\u3066\u547c\u3070\u308c\u3066\u308b\u3068\u3053\u308d","url":null,"description":"\u30b2\u30fc\u30e0\u5b9f\u6cc1YouTuber\u3002\u30b9\u30af\u30d5\u30a7\u30b9\u3001\u30b9\u30d7\u30e9\u30c8\u30a5\u30fc\u30f3\u3001\u30b9\u30de\u30d6\u30e9\u3001\u6d0b\u30b2\u30fc\u3044\u308d\u3044\u308d\u904a\u3093\u3067\u307e\u3059\u3002\u3053\u3068\u308a\u3061\u3083\u3093\u63a8\u3057\u3002\u30ea\u30d7\u3067\u304d\u308b\u9650\u308a\u8fd4\u3057\u307e\u3059\uff01\u52d5\u753b&\u30c1\u30e3\u30f3\u30cd\u30eb\u767b\u9332\u306f\u3053\u3061\u3089\u304b\u3089\u21d2https:\/\/goo.gl\/s2wZ9F","protected":false,"verified":false,"followers_count":151,"friends_count":152,"listed_count":2,"favourites_count":0,"statuses_count":861,"created_at":"Wed Apr 15 07:23:27 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F34093","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648082829260144640\/GVBflUvn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648082829260144640\/GVBflUvn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3168863865\/1446396693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663695716510896128,"quoted_status_id_str":"663695716510896128","quoted_status":{"created_at":"Mon Nov 09 12:32:44 +0000 2015","id":663695716510896128,"id_str":"663695716510896128","text":"@zunamarun \u4eca\u65e5\u305a\u306a\u307e\u308b\u3055\u3093\u306e\u3053\u3068\u308a\u3061\u3083\u3093\u306e\u821e\u8e0f\u4f1a\u7de8\u898b\u307e\u3057\u305f\u304c\u3001\u771f\u306e\u30e9\u30b9\u30c8\u306e\u6642\u30a4\u30b1\u30e1\u30bd\u3059\u304e\u305f\uff01\n\u304a\u3081\u3067\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":3168863865,"in_reply_to_user_id_str":"3168863865","in_reply_to_screen_name":"zunamarun","user":{"id":2658650348,"id_str":"2658650348","name":"So\u8a69","screen_name":"souta12635245","location":null,"url":null,"description":"\u30e9\u30ce\u30d9\u4fe1\u8005\/\u663c\u591c\u9006\u8ee2\u751f\u6d3b\/\u30aa\u30bf\u30af\/\u82b1\u967d\u3061\u3083\u3093\u63a8\u3057\u30e9\u30a4\u30d0\u30fc\/\u30b5\u30f3\u30b7\u30e3\u30a4\u30f3\u306f\u66dc&\u82b1\u4e38\u3061\u3083\u3093\u63a8\u3057\/\u30b9\u30af\u30d5\u30a7\u30b9\/\u30d1\u30ba\u30c9\u30e9\u30e9\u30f3\u30af550\u2191#\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3002\u602a\u3057\u3044\u4eba(\u307e\u305f\u306f\u4e57\u3063\u53d6\u3089\u308c)\u4ee5\u5916\u30d5\u30a9\u30ed\u30fc\u3057\u307e\u3059\u3002\u30ea\u30e0\u3089\u308c\u305f\u3089\u30ea\u30e0\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1142,"friends_count":1144,"listed_count":3,"favourites_count":610,"statuses_count":2298,"created_at":"Sat Jul 19 04:35:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643420490724315136\/-egBAvMt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643420490724315136\/-egBAvMt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2658650348\/1446510224","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zunamarun","name":"\u305a\u306a\u307e\u308b\uff20\u30b9\u30af\u30d5\u30a7\u30b9\u5b9f\u6cc1 etc.","id":3168863865,"id_str":"3168863865","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/7Juy4ZUX8M","expanded_url":"https:\/\/twitter.com\/souta12635245\/status\/663695716510896128","display_url":"twitter.com\/souta12635245\/\u2026","indices":[53,76]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131666"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294991294464,"id_str":"663728294991294464","text":"RT @o___0____o: @MOS_020 \u3060\u3063\u305f\u3089\u5b09\u3057\u3044\u306a\u266c\uff08\u82b1\u738b\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":962239484,"id_str":"962239484","name":"\u30ea\u30f3\u30d9\u30eb\u8ffd\u60bc","screen_name":"MOS_020","location":"\u30ed\u30c3\u30ab\u306e\u670d\u306e\u4e2d","url":null,"description":"\u30ea\u30f3\u30ea\u30f3\u3060\u304a\u2764","protected":false,"verified":false,"followers_count":257,"friends_count":313,"listed_count":13,"favourites_count":3603,"statuses_count":8850,"created_at":"Wed Nov 21 11:32:27 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663693243285049344\/9GMSO0X3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663693243285049344\/9GMSO0X3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/962239484\/1446196862","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728004388950017,"id_str":"663728004388950017","text":"@MOS_020 \u3060\u3063\u305f\u3089\u5b09\u3057\u3044\u306a\u266c\uff08\u82b1\u738b\uff09","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727838546149376,"in_reply_to_status_id_str":"663727838546149376","in_reply_to_user_id":962239484,"in_reply_to_user_id_str":"962239484","in_reply_to_screen_name":"MOS_020","user":{"id":2492475745,"id_str":"2492475745","name":"\u5f31\u9178\u6027\u3075\u3041\u3080","screen_name":"o___0____o","location":"play:\u767d\u732b \u30c7\u30ec\u30b9\u30c6","url":"http:\/\/ja.favstar.fm\/users\/o___0____o\/favs_from","description":"\u597d\u304d\u306e\u53cd\u5bfe\u306f\u7121\u95a2\u5fc3\u3002","protected":false,"verified":false,"followers_count":3790,"friends_count":960,"listed_count":311,"favourites_count":76697,"statuses_count":95177,"created_at":"Tue May 13 05:36:58 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2B4147","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663690791802433536\/kVNr-pbv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663690791802433536\/kVNr-pbv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492475745\/1446574484","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MOS_020","name":"\u30ea\u30f3\u30d9\u30eb\u8ffd\u60bc","id":962239484,"id_str":"962239484","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"o___0____o","name":"\u5f31\u9178\u6027\u3075\u3041\u3080","id":2492475745,"id_str":"2492475745","indices":[3,14]},{"screen_name":"MOS_020","name":"\u30ea\u30f3\u30d9\u30eb\u8ffd\u60bc","id":962239484,"id_str":"962239484","indices":[16,24]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131658"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295024992256,"id_str":"663728295024992256","text":"It is lol \ud83d\ude42\ud83d\ude42 https:\/\/t.co\/B6GUMUWQ8v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":180588911,"id_str":"180588911","name":"PrincessVaya \u2764\ufe0f","screen_name":"_Mandieeee","location":null,"url":null,"description":"Azarya Chris Tre Luv Jawhar Kyron MallyG Worm Tman","protected":false,"verified":false,"followers_count":1830,"friends_count":868,"listed_count":6,"favourites_count":3011,"statuses_count":78933,"created_at":"Fri Aug 20 00:31:15 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"111114","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588497243\/54gl2e6oswxw7up0wswq.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588497243\/54gl2e6oswxw7up0wswq.jpeg","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FFFCFF","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661752055787339777\/5llIlP5j_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661752055787339777\/5llIlP5j_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/180588911\/1433644853","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728125348450304,"quoted_status_id_str":"663728125348450304","quoted_status":{"created_at":"Mon Nov 09 14:41:31 +0000 2015","id":663728125348450304,"id_str":"663728125348450304","text":"I heard talking to yourself is healthy","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":153951490,"id_str":"153951490","name":"Solodub","screen_name":"IWantMs","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":692,"friends_count":385,"listed_count":1,"favourites_count":130,"statuses_count":34314,"created_at":"Thu Jun 10 00:17:52 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"070808","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/388613821\/385874_307730845913740_100000304827450_1061081_728745405_n.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/388613821\/385874_307730845913740_100000304827450_1061081_728745405_n.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"136DBD","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656836095976431617\/1bisAgCH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656836095976431617\/1bisAgCH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/153951490\/1442191695","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/B6GUMUWQ8v","expanded_url":"https:\/\/twitter.com\/iwantms\/status\/663728125348450304","display_url":"twitter.com\/iwantms\/status\u2026","indices":[13,36]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131666"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294991237120,"id_str":"663728294991237120","text":"\u590f\u91ce\u9999\u6ce2(\u30de\u30dc\u30ed\u30b7\u53ef\u6190GeNE) \u914d\u4fe1\u4e2d!!\nhttps:\/\/t.co\/rfA3cySU26","source":"\u003ca href=\"https:\/\/www.showroom-live.com\" rel=\"nofollow\"\u003eDeNA showroom\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3187634191,"id_str":"3187634191","name":"\u30b1\u30d3\u30f3","screen_name":"MilesDavis_King","location":"\u6803\u6728\u770c \u5b87\u90fd\u5bae\u5e02","url":"http:\/\/ameblo.jp\/holygrail-prophet\/","description":"\u304a\u5b85\u7cfbDrummer \u6700\u3082\u5c0a\u656c\u3059\u308b Drummer \u306f Jeffrey (Thomas) Porcaro \u30b8\u30a7\u30d5\u30fb\u30dd\u30fc\u30ab\u30ed\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":74,"friends_count":63,"listed_count":0,"favourites_count":2494,"statuses_count":1371,"created_at":"Thu May 07 11:24:43 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/621328707173494784\/Yg8dH7bl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/621328707173494784\/Yg8dH7bl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3187634191\/1431003722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rfA3cySU26","expanded_url":"https:\/\/www.showroom-live.com\/Kanami_NATSUNO?r=e96c4ff9","display_url":"showroom-live.com\/Kanami_NATSUNO\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131658"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295016402944,"id_str":"663728295016402944","text":"@__Elisexx what is up!!!!","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663703300282314752,"in_reply_to_status_id_str":"663703300282314752","in_reply_to_user_id":1672554414,"in_reply_to_user_id_str":"1672554414","in_reply_to_screen_name":"__Elisexx","user":{"id":1907910894,"id_str":"1907910894","name":"princess yong","screen_name":"zhiyongsng","location":null,"url":"http:\/\/Instagram.com\/xoxozhiyong","description":"hey there. its me. *unicorn emoji*","protected":false,"verified":false,"followers_count":76,"friends_count":187,"listed_count":1,"favourites_count":1408,"statuses_count":3377,"created_at":"Thu Sep 26 13:43:33 +0000 2013","utc_offset":-39600,"time_zone":"International Date Line West","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653527771012952064\/3nSH0RZ8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653527771012952064\/3nSH0RZ8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1907910894\/1432310540","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6635b2fcebd13c64","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6635b2fcebd13c64.json","place_type":"admin","name":"East Region","full_name":"East Region, Singapore","country_code":"SG","country":"Singapore","bounding_box":{"type":"Polygon","coordinates":[[[103.892170,1.301577],[103.892170,1.440937],[104.085567,1.440937],[104.085567,1.301577]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__Elisexx","name":"Elise","id":1672554414,"id_str":"1672554414","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131664"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012339712,"id_str":"663728295012339712","text":"@shahdona3 \u062a\u0628\u064a \u0639\u0631\u064a\u0636","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663684037647667200,"in_reply_to_status_id_str":"663684037647667200","in_reply_to_user_id":862369303,"in_reply_to_user_id_str":"862369303","in_reply_to_screen_name":"shahdona3","user":{"id":3902641162,"id_str":"3902641162","name":"\u0627\u0644\u0635\u0631\u0628\u064a @!","screen_name":"mustaf77889953","location":"\u0627\u0644\u0634\u0631\u0642\u064a\u0647","url":null,"description":"\u0633\u0648\u0627\u0642 \u0645\u0646\u062d\u0631\u0641 \u0639\u0627\u0637\u0641\u064a","protected":false,"verified":false,"followers_count":102,"friends_count":240,"listed_count":0,"favourites_count":431,"statuses_count":497,"created_at":"Thu Oct 08 20:25:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655435955885637632\/WkKWzFOQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655435955885637632\/WkKWzFOQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3902641162\/1445103074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"shahdona3","name":"\u0634\u0653\u0647\u0648\u062f\u064a","id":862369303,"id_str":"862369303","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295008186368,"id_str":"663728295008186368","text":"VIDEO | Pelotudo intenta agredir al vasco. (video de @VineBostero) https:\/\/t.co\/dbapG6Jpfa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3031970806,"id_str":"3031970806","name":"\u04c7exa\u24c2pe\u00f3\u02736","screen_name":"lamitadmas1info","location":"Informando Desde El 11\/02\/15","url":"https:\/\/m.facebook.com\/profile.php?id=1550615558523982","description":"Somos Hinchas De Boca, \u00bfInformaci\u00f3n y Humor Bostero? Las 24hs Las Tenes Ac\u00e1, En Las Venas Tenemos Sangre Azul & Oro\nGrupo Wpp, Mandanos Md.\n-Brandsen 805","protected":false,"verified":false,"followers_count":33311,"friends_count":30452,"listed_count":36,"favourites_count":217,"statuses_count":15018,"created_at":"Thu Feb 12 03:00:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661026278871539712\/5AN-FyUG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661026278871539712\/5AN-FyUG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3031970806\/1446695348","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"VineBostero","name":"Vine BOSTERO \u246b","id":1663652610,"id_str":"1663652610","indices":[53,65]}],"symbols":[],"media":[{"id":663699823225405440,"id_str":"663699823225405440","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663699823225405440\/pu\/img\/KZ8j30C2sXFwVdX0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663699823225405440\/pu\/img\/KZ8j30C2sXFwVdX0.jpg","url":"https:\/\/t.co\/dbapG6Jpfa","display_url":"pic.twitter.com\/dbapG6Jpfa","expanded_url":"http:\/\/twitter.com\/VineBostero\/status\/663700033448079360\/video\/1","type":"photo","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663700033448079360,"source_status_id_str":"663700033448079360","source_user_id":1663652610,"source_user_id_str":"1663652610"}]},"extended_entities":{"media":[{"id":663699823225405440,"id_str":"663699823225405440","indices":[67,90],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663699823225405440\/pu\/img\/KZ8j30C2sXFwVdX0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663699823225405440\/pu\/img\/KZ8j30C2sXFwVdX0.jpg","url":"https:\/\/t.co\/dbapG6Jpfa","display_url":"pic.twitter.com\/dbapG6Jpfa","expanded_url":"http:\/\/twitter.com\/VineBostero\/status\/663700033448079360\/video\/1","type":"video","sizes":{"large":{"w":720,"h":480,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663700033448079360,"source_status_id_str":"663700033448079360","source_user_id":1663652610,"source_user_id_str":"1663652610","video_info":{"aspect_ratio":[3,2],"duration_millis":21000,"variants":[{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663699823225405440\/pu\/pl\/MUXJvalVAHGjg6d_.m3u8"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663699823225405440\/pu\/vid\/270x180\/TwaxBE9GgKzDJAbU.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663699823225405440\/pu\/pl\/MUXJvalVAHGjg6d_.mpd"},{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663699823225405440\/pu\/vid\/540x360\/uUwxXmoI_lLFQA3t.mp4"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663699823225405440\/pu\/vid\/540x360\/uUwxXmoI_lLFQA3t.webm"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080131662"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020662784,"id_str":"663728295020662784","text":"@frncpn2 \u304f\u30fc\u307f\u3093\u306f5\u676f\u304f\u3089\u3044\u304b\u306a","source":"\u003ca href=\"http:\/\/covelline.com\/feather\/\" rel=\"nofollow\"\u003efeather for iOS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727718530310145,"in_reply_to_status_id_str":"663727718530310145","in_reply_to_user_id":1121311574,"in_reply_to_user_id_str":"1121311574","in_reply_to_screen_name":"frncpn2","user":{"id":2829646992,"id_str":"2829646992","name":"\u3044\uff1f","screen_name":"___Ko46","location":null,"url":"http:\/\/ko46.hatenablog.com","description":"\u30c0\u30a4\u30b9\u30ad\u30c7\u30b9","protected":false,"verified":false,"followers_count":68,"friends_count":70,"listed_count":1,"favourites_count":463,"statuses_count":4907,"created_at":"Wed Sep 24 10:51:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660730204772417536\/1heINADP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660730204772417536\/1heINADP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829646992\/1447071674","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"frncpn2","name":"\u8ab0\u3067\u3057\u3087\u3046","id":1121311574,"id_str":"1121311574","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294995472385,"id_str":"663728294995472385","text":"@sakuya11648062 \u3084\u30fc\u3081\u3093","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727303311028225,"in_reply_to_status_id_str":"663727303311028225","in_reply_to_user_id":2953142720,"in_reply_to_user_id_str":"2953142720","in_reply_to_screen_name":"sakuya11648062","user":{"id":2949189823,"id_str":"2949189823","name":"\u3053\u30fc\u3060\u3044","screen_name":"kendono12gmail4","location":"\u611b\u77e5\u770c \u5ca1\u5d0e\u5e02","url":null,"description":"\u685c\u4e18\u2192\u540d\u53e4\u5c4b\u7d4c\u6e08\u5927\u5b66\u3000\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01","protected":false,"verified":false,"followers_count":687,"friends_count":674,"listed_count":1,"favourites_count":615,"statuses_count":3418,"created_at":"Mon Dec 29 05:16:28 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662742762253496321\/N2x8fEbj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662742762253496321\/N2x8fEbj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2949189823\/1430049917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sakuya11648062","name":"sakuya","id":2953142720,"id_str":"2953142720","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131659"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294991302657,"id_str":"663728294991302657","text":"\"login via twitter to access this content\" \n\nNope","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18448406,"id_str":"18448406","name":"Jo Harris-Cooksley","screen_name":"JoannaHC","location":"Hackney E8, London","url":"http:\/\/sheloveslondon.com","description":"Lives in London, takes to Twitter, enjoys the pub, does not enjoy hangovers. Also content marketing manager @lastminute_com. PS. there will be dogs.","protected":false,"verified":false,"followers_count":1457,"friends_count":810,"listed_count":78,"favourites_count":598,"statuses_count":12991,"created_at":"Mon Dec 29 12:14:26 +0000 2008","utc_offset":0,"time_zone":"London","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000229731533\/896fab8980785d668f58d4f9c50cb283_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000229731533\/896fab8980785d668f58d4f9c50cb283_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18448406\/1429179925","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131658"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295016464384,"id_str":"663728295016464384","text":"@No33180900No \u3060\u3063\u3066\u30fc\u65e9\u304f\u98df\u3079\u305f\u304b\u3063\u305f\u3093\u3060\u3082\u3093\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727247690301440,"in_reply_to_status_id_str":"663727247690301440","in_reply_to_user_id":2268555985,"in_reply_to_user_id_str":"2268555985","in_reply_to_screen_name":"No33180900No","user":{"id":3284330822,"id_str":"3284330822","name":"\u677e\u672c\u771f\u6f84","screen_name":"BakatanMasa","location":"\u6771\u4eac\u90fd\u4e2d\u91ce\u533a","url":"http:\/\/ameblo.jp\/masumi29m\/","description":"\u5cf6\u6839\u770c\u51fa\u8eab\u3001\u677e\u672c\u771f\u6f84\u3067\u3059\u2b50\ufe0f \u5f79\u8005\u3092\u3084\u3063\u3066\u3044\u307e\u3059\u3002\u8da3\u5473\u306f\u30ad\u30fc\u30dc\u30fc\u30c9\u3001\u30df\u30cb\u56db\u99c6\\\u7279\u6280\u30c0\u30f3\u30b9\\\u5287\u56e3\u30d1\u30ec\u30a4\u30c9\u6240\u5c5e","protected":false,"verified":false,"followers_count":128,"friends_count":154,"listed_count":3,"favourites_count":566,"statuses_count":717,"created_at":"Sun Jul 19 12:40:39 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645522558448627712\/muNURt3b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645522558448627712\/muNURt3b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3284330822\/1442850589","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"No33180900No","name":"\u3075\u30fc\u307f\u3093(\u5287\u56e3\u30d1\u30ec\u30a4\u30c9\u5b97\u50cf\u5c06\u53f2)","id":2268555985,"id_str":"2268555985","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131664"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294987075585,"id_str":"663728294987075585","text":"@KKoolzade20124 \u0622\u062e\u06cc\u06cc\u06cc\u06cc","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724167552999424,"in_reply_to_status_id_str":"663724167552999424","in_reply_to_user_id":3307374335,"in_reply_to_user_id_str":"3307374335","in_reply_to_screen_name":"KKoolzade20124","user":{"id":1735011630,"id_str":"1735011630","name":":))\u06af\u0631\u062f\u0627\u0644\u06cc \u06a9\u062b\u0627\u0641\u062f","screen_name":"aminxali","location":"\u0627\u0633\u06cc\u0631 \u0632\u0646\u062f\u0627\u0646 \u062f\u0644\u0645","url":null,"description":"\u0633\u0639\u06cc \u0645\u06cc\u06a9\u0646\u0645 \u062e\u0648\u0628 \u0628\u0627\u0634\u0645.\u0627\u062f\u0639\u0627\u06cc \u06a9\u0627\u0645\u0644 \u0628\u0648\u062f\u0646 \u0648 \u0639\u0627\u0644\u06cc \u0628\u0648\u062f\u0646 \u0646\u062f\u0627\u0631\u0645 \u0627\u0632\u0686\u06cc\u0632\u0627\u06cc\u06cc \u06a9\u0647 \u062a\u0648 \u062f\u0644\u0645 \u0647\u0633\u062a \u0645\u06cc \u0646\u0648\u06cc\u0633\u0645\u060c\u0628\u062f\u0648\u0646 \u0633\u0627\u0646\u0633\u0648\u0631\u060c\u0628\u062f\u0648\u0646 \u062a\u0639\u0627\u0631\u0641... \u062a\u0642\u062f\u0633 \u0645\u0645\u0646\u0648\u0639:)","protected":false,"verified":false,"followers_count":506,"friends_count":158,"listed_count":7,"favourites_count":10027,"statuses_count":25934,"created_at":"Fri Sep 06 12:55:44 +0000 2013","utc_offset":12600,"time_zone":"Tehran","geo_enabled":true,"lang":"fa","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2F7F7","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/473384899710177281\/QsF64ji5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/473384899710177281\/QsF64ji5.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"4D918A","profile_sidebar_fill_color":"B9D8D6","profile_text_color":"4D918A","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660055566748782592\/T6o9C1HE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660055566748782592\/T6o9C1HE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1735011630\/1444857991","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"KKoolzade20124","name":"\u0646\u0635\u0641 \u0635\u0648\u0631\u062a:)","id":3307374335,"id_str":"3307374335","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fa","timestamp_ms":"1447080131657"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012384768,"id_str":"663728295012384768","text":"We're making a SLIPPERY SNAKE today! ! Be sure to leave a like and sub if your new to the channel! @YTRetweets https:\/\/t.co\/BgAvYfpl9N","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2727345417,"id_str":"2727345417","name":"Silent spectrum","screen_name":"silentspectrum1","location":null,"url":null,"description":"The King of Silence, Youtuber, Stud. Bringing you good entertainment through PC and console. Looking forward to entertaining you guys for a long time!","protected":false,"verified":false,"followers_count":18,"friends_count":30,"listed_count":0,"favourites_count":10,"statuses_count":209,"created_at":"Mon Jul 28 15:17:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599434252350947328\/aFykpUWS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599434252350947328\/aFykpUWS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2727345417\/1406560996","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/BgAvYfpl9N","expanded_url":"http:\/\/youtu.be\/nl2K51uP4IA?a","display_url":"youtu.be\/nl2K51uP4IA?a","indices":[111,134]}],"user_mentions":[{"screen_name":"YTRetweets","name":"\u2605YouTube Retweets\u2605","id":1105048406,"id_str":"1105048406","indices":[99,110]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012229120,"id_str":"663728295012229120","text":"Daimler, iniziano i corsi per i rifugiati: lezioni di tedesco e di lavoro in fabbrica: Quando, al Salone di Fr... https:\/\/t.co\/878DKc0n6h","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2535083630,"id_str":"2535083630","name":"Fabio Vanorio","screen_name":"fabiovanorio","location":"New York","url":"http:\/\/www.linkedin.com\/pub\/fabio-vanorio\/21\/953\/405\/","description":"International Finance and Policy Advisor, Academic Coach and Mentor, Technical Analyst, Social Media, Fashion and Soccer Addicted.","protected":false,"verified":false,"followers_count":6402,"friends_count":6373,"listed_count":148,"favourites_count":893,"statuses_count":183428,"created_at":"Fri May 30 13:27:08 +0000 2014","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/487246531674652674\/16cU36wz_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/487246531674652674\/16cU36wz_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2535083630\/1408780755","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/878DKc0n6h","expanded_url":"http:\/\/bit.ly\/1Qp9mQw","display_url":"bit.ly\/1Qp9mQw","indices":[114,137]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"it","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999691264,"id_str":"663728294999691264","text":"\u30b3\u30df\u30e5\u529b\u304c\u7fa4\u3092\u629c\u3044\u3066\u3044\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2948822172,"id_str":"2948822172","name":"\u3064\u307e\u3089\u3093\u5197\u8ac7\u3067\u53cb\u4eba\u3092\u5931\u3046\u7537\uff20\u30df\u30e5\u30fc\u30c8\u5fc5\u9808","screen_name":"wwkonbuww","location":"\u6606\u5e03\u3063\u3066\u547c\u3070\u308c\u3066\u308b\uff1d\u3044\u3044\u306e\u308a\u3087\u30fc","url":null,"description":"\u6606\u5e03\u6606\u5e03Dance\u6606\u5e03\u30c7\u30b8\u30e2\u30f3\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u30a2\u30cb\u30e1\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u30b2\u30fc\u30e0\u5b9f\u6cc1\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6d88\u6ec5\u90fd\u5e02\u6606\u5e03\u6606\u5e03\u30c4\u30a4\u30fc\u30c8\u6570\u591a\u3081\u6606\u5e03\u6606\u5e03\u6599\u7406\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u8e0a\u3063\u3066\u307f\u305f\u6606\u5e03\u30de\u30d3\u30ce\u30ae\u6606\u5e03\u6606okk3302\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u30dc\u30ab\u30ed\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u30e9\u30fc\u30e1\u30f3\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u6606\u5e03\u8266\u3053\u308c\u6606\u5e03","protected":false,"verified":false,"followers_count":501,"friends_count":486,"listed_count":1,"favourites_count":11414,"statuses_count":11003,"created_at":"Mon Dec 29 03:38:31 +0000 2014","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659739819841470464\/vgSlDb91_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659739819841470464\/vgSlDb91_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2948822172\/1446130522","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131660"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295012339713,"id_str":"663728295012339713","text":"@MHB__10 \u0627\u0644\u0645\u0624\u0634\u0631 \u0627\u0633\u0627\u0633\u064a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727408504299520,"in_reply_to_status_id_str":"663727408504299520","in_reply_to_user_id":495538814,"in_reply_to_user_id_str":"495538814","in_reply_to_screen_name":"MHB__10","user":{"id":2320729397,"id_str":"2320729397","name":"\u0637\u0627\u0631\u0642 \u0627\u0644\u062d\u0631\u0628\u064a","screen_name":"TariqRibery","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"#Alahli #Bayern #TvSeries #Movies","protected":false,"verified":false,"followers_count":391,"friends_count":136,"listed_count":2,"favourites_count":36,"statuses_count":13592,"created_at":"Sun Feb 02 21:35:59 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656514689506136064\/6FsnZy1B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656514689506136064\/6FsnZy1B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2320729397\/1443896582","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MHB__10","name":"\u0623\u0637\u0644\u0640\u062f\u0632 \u0648\u0622\u062d\u062f","id":495538814,"id_str":"495538814","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080131663"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295024852992,"id_str":"663728295024852992","text":"RT @zen_nippon1: \u4eca\u56de\u306e\u30de\u30eb\u30b3\u30e1\u306f\u5207\u308c\u5473\u304c\u9055\u3046wwww\n\n\u300a@atsubotv4649\u300b\n\u30a2\u30ca\u96ea2 https:\/\/t.co\/xVQ65Ay3a2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1307328570,"id_str":"1307328570","name":"\u9ed2\u5ca9 \u5c06\u58eb","screen_name":"ma_sapyon","location":null,"url":null,"description":"Japan,Koshigaya_Next 19. @ayataro05 pyontaro story start\uff0c","protected":false,"verified":false,"followers_count":613,"friends_count":392,"listed_count":0,"favourites_count":2166,"statuses_count":8045,"created_at":"Wed Mar 27 12:18:34 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644416652788961280\/FCQu09vY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644416652788961280\/FCQu09vY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1307328570\/1446715680","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:25:35 +0000 2015","id":663678816624119808,"id_str":"663678816624119808","text":"\u4eca\u56de\u306e\u30de\u30eb\u30b3\u30e1\u306f\u5207\u308c\u5473\u304c\u9055\u3046wwww\n\n\u300a@atsubotv4649\u300b\n\u30a2\u30ca\u96ea2 https:\/\/t.co\/xVQ65Ay3a2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3604088534,"id_str":"3604088534","name":"\u30de\u30c2\u30ad\u30c1Japan","screen_name":"zen_nippon1","location":"Twitter\u2606JAPAN","url":null,"description":"\u523a\u6fc0\u7684\u306a\u300c\u30de\u30c2\u30ad\u30c1\uff01\u300d\u3092\u914d\u4fe1\uff01\u6700\u65b0\u306e\u300c\u30de\u30c2\u30ad\u30c1\u300d\u3092\u8cb4\u65b9\u306b\u266a \u30de\u30c2\u30ad\u30c1\u96c6\u56e3(@BRISKY__) \u2606\u795e\u30ad\u30c1JAPAN\u2192\u3010@zen_nippon_god\u3011Japanese\u306ffollow&RT\u2606\u203btwitter\u898f\u7d04\u306b\u5f93\u3044\u30b9\u30d1\u30e0Tweet\u3092\u4e00\u5207\u884c\u3044\u307e\u305b\u3093\u3002","protected":false,"verified":false,"followers_count":47713,"friends_count":4053,"listed_count":44,"favourites_count":8,"statuses_count":140,"created_at":"Fri Sep 18 10:32:27 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644832432189911040\/XB4P3-H1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644832432189911040\/XB4P3-H1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3604088534\/1442575024","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4582,"favorite_count":5088,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[21,34]}],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/xVQ65Ay3a2","display_url":"pic.twitter.com\/xVQ65Ay3a2","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[41,64],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/xVQ65Ay3a2","display_url":"pic.twitter.com\/xVQ65Ay3a2","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zen_nippon1","name":"\u30de\u30c2\u30ad\u30c1Japan","id":3604088534,"id_str":"3604088534","indices":[3,15]},{"screen_name":"atsubotv4649","name":"\u3042\u3064\u307c\u30fc","id":3223278278,"id_str":"3223278278","indices":[38,51]}],"symbols":[],"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/xVQ65Ay3a2","display_url":"pic.twitter.com\/xVQ65Ay3a2","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"photo","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278"}]},"extended_entities":{"media":[{"id":663644321665544192,"id_str":"663644321665544192","indices":[58,81],"media_url":"http:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/ext_tw_video_thumb\/663644321665544192\/pu\/img\/JG5HpNl1FtGsULeS.jpg","url":"https:\/\/t.co\/xVQ65Ay3a2","display_url":"pic.twitter.com\/xVQ65Ay3a2","expanded_url":"http:\/\/twitter.com\/atsubotv4649\/status\/663644761874567172\/video\/1","type":"video","sizes":{"small":{"w":340,"h":604,"resize":"fit"},"large":{"w":720,"h":1280,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":1067,"resize":"fit"}},"source_status_id":663644761874567172,"source_status_id_str":"663644761874567172","source_user_id":3223278278,"source_user_id_str":"3223278278","video_info":{"aspect_ratio":[9,16],"duration_millis":26393,"variants":[{"bitrate":832000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.mp4"},{"content_type":"application\/dash+xml","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.mpd"},{"bitrate":320000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/180x320\/boSxfZCUASEO99J5.mp4"},{"content_type":"application\/x-mpegURL","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/pl\/w1OOn03xCAGTw_mj.m3u8"},{"bitrate":832000,"content_type":"video\/webm","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/360x640\/VPAw2i-c9ZGU35H2.webm"},{"bitrate":2176000,"content_type":"video\/mp4","url":"https:\/\/video.twimg.com\/ext_tw_video\/663644321665544192\/pu\/vid\/720x1280\/mOpRaP4FB-aVIN2y.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131666"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295016534016,"id_str":"663728295016534016","text":"RT @BelloTexto: Lo dif\u00edcil se hace, lo imposible se intenta. \ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":833105508,"id_str":"833105508","name":"Andrea Vallejo","screen_name":"AndreaVj55","location":"Tucum\u00e1n, ARGENTINA","url":"http:\/\/facebook.com\/Andrea.vj25hotmail.com.ar","description":"Todos nos convertimos en recuerdos alguna vez! Wsp 3865641683 S\u00edgueme y te sigo :3","protected":false,"verified":false,"followers_count":19411,"friends_count":17917,"listed_count":55,"favourites_count":4355,"statuses_count":14270,"created_at":"Wed Sep 19 11:23:09 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/633881599692677121\/S2OoAjw9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/633881599692677121\/S2OoAjw9.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662299512577335296\/ovQub28s_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662299512577335296\/ovQub28s_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/833105508\/1401249146","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Oct 17 03:20:45 +0000 2015","id":655221886171766784,"id_str":"655221886171766784","text":"Lo dif\u00edcil se hace, lo imposible se intenta. \ud83d\udc4c","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":833083404,"id_str":"833083404","name":"Indirectas \u2122","screen_name":"BelloTexto","location":"Los Angeles, CA","url":"http:\/\/mundotips.com","description":"En un mundo de ordinarios el m\u00e1s m\u00ednimo s\u00edntoma de locura es se\u00f1al de originalidad. \n\n\n(twitterlapromotion@gmail.com) \n\n\nJalisco.","protected":false,"verified":false,"followers_count":365659,"friends_count":25,"listed_count":514,"favourites_count":110964,"statuses_count":2114,"created_at":"Wed Sep 19 11:08:26 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000181559596\/YtifIlUG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000181559596\/YtifIlUG.jpeg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660603512682737664\/WGAwt7h0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660603512682737664\/WGAwt7h0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/833083404\/1446334966","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2584,"favorite_count":1219,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BelloTexto","name":"Indirectas \u2122","id":833083404,"id_str":"833083404","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080131664"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295020728320,"id_str":"663728295020728320","text":"\ufdfd\n\ufd3f\u0648\u0627\u0644\u0630\u064a\u0646 \u064a\u0645\u0633\u0643\u0648\u0646 \u0628\u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0623\u0642\u0627\u0645\u0648\u0627 \u0627\u0644\u0635\u0644\u0627\u0629 \u0625\u0646\u0627 \u0644\u0627 \u0646\u0636\u064a\u0639 \u0623\u062c\u0631 \u0627\u0644\u0645\u0635\u0644\u062d\u064a\u0646\ufd3e\n\u2b05\ufe0f aya.fm","source":"\u003ca href=\"http:\/\/aya.fm\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u0622\u064a\u0647\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":479869248,"id_str":"479869248","name":"......","screen_name":"zyayi","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":528,"friends_count":838,"listed_count":0,"favourites_count":5,"statuses_count":12889,"created_at":"Tue Jan 31 21:26:21 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/557078810944761857\/4B0tCbiK_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/557078810944761857\/4B0tCbiK_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/479869248\/1424928024","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080131665"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295003815936,"id_str":"663728295003815936","text":"RT @Johnnys_ya: \u5927\u3061\u3083\u3093\u306e\u8a95\u751f\u65e5\u6210\u529f\u3057\u305f\u304b\u3089\u3001\u6dbc\u4ecb\u306e\u8a95\u751f\u65e5\u3084\u308a\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01\n5\u67089\u65e5\u307e\u3067\u306b509RT\u76ee\u6307\u3057\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01(*^_^*)\nJUMP\u306e\u7d76\u5bfe\u30a8\u30fc\u30b9\u306a\u306e\u3067\u6210\u529f\u3055\u305b\u305f\u3044\u3067\u3059\uff01\ud83d\ude0a\ud83d\udc9e\n\n#\u5c71\u7530\u6dbc\u4ecb\n#JUMP\n#\u3068\u3073\u3063\u5b50\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2959282159,"id_str":"2959282159","name":"\u308a\u3055","screen_name":"x63o2wRw6ZFNteX","location":null,"url":null,"description":"\u6625\u4e2d2\u5e74\/\u30c6\u30cb\u30b9\u90e8 \u524d\u885b\/Hey!Say!JUMP\/\u30c8\u30d7\u771f\u3093\u4e2d","protected":false,"verified":false,"followers_count":221,"friends_count":262,"listed_count":0,"favourites_count":5596,"statuses_count":956,"created_at":"Mon Jan 05 06:38:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663317825071616000\/HffuJNpW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663317825071616000\/HffuJNpW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2959282159\/1440130750","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:24:53 +0000 2015","id":663723942729814016,"id_str":"663723942729814016","text":"\u5927\u3061\u3083\u3093\u306e\u8a95\u751f\u65e5\u6210\u529f\u3057\u305f\u304b\u3089\u3001\u6dbc\u4ecb\u306e\u8a95\u751f\u65e5\u3084\u308a\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01\n5\u67089\u65e5\u307e\u3067\u306b509RT\u76ee\u6307\u3057\u305f\u3044\u3068\u601d\u3044\u307e\u3059\uff01(*^_^*)\nJUMP\u306e\u7d76\u5bfe\u30a8\u30fc\u30b9\u306a\u306e\u3067\u6210\u529f\u3055\u305b\u305f\u3044\u3067\u3059\uff01\ud83d\ude0a\ud83d\udc9e\n\n#\u5c71\u7530\u6dbc\u4ecb\n#JUMP\n#\u3068\u3073\u3063\u5b50\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044 https:\/\/t.co\/kVKVgCVXO6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3117108528,"id_str":"3117108528","name":"(\u30fb\u0434\u30fb\u3086\u3046\u304d\u3093\u3050)","screen_name":"Johnnys_ya","location":"\u30aa\u30e0\u30e9\u30a4\u30b9\u738b\u5b50\u21c6\u7ae5\u9854\u738b\u5b50","url":null,"description":"Hey!Say!JUMP\u2192FC\u4f1a\u54e1\/\u261e\u6709\u5ca1\u5927\u8cb4\u261c\u304c\u5927\u597d\u304d\/\u305b\u3093\u305b\u30fc\u30b7\u30e7\u30f3\u30ba\/\u30d5\u30a1\u30eb\u30b3\u30f3Jr.\u2740\u639b\u3051\u6301\u3061\u27409\u670812\u65e5\u5317\u6d77\u9053\u304d\u305f\u3048\u30fc\u308b\u53c2\u6226\u6e08\u307f\u2606\u30d5\u30a9\u30ed\u30d0415\uff05\u2606\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3067\u3059\u2606\u57fa\u672c\u30ea\u30d7\u3001DM\u8fd4\u3057\u307e\u305b\u3093\u2606","protected":false,"verified":false,"followers_count":2160,"friends_count":2212,"listed_count":2,"favourites_count":2696,"statuses_count":6492,"created_at":"Mon Mar 30 13:40:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658294555859521536\/gOUEZxt6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658294555859521536\/gOUEZxt6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3117108528\/1446723490","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":1,"entities":{"hashtags":[{"text":"\u5c71\u7530\u6dbc\u4ecb","indices":[89,94]},{"text":"JUMP","indices":[95,100]},{"text":"\u3068\u3073\u3063\u5b50\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[101,114]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663723786668130304,"id_str":"663723786668130304","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":457,"resize":"fit"},"medium":{"w":480,"h":457,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663723786668130304,"id_str":"663723786668130304","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":457,"resize":"fit"},"medium":{"w":480,"h":457,"resize":"fit"}}},{"id":663723923331149824,"id_str":"663723923331149824","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFZEcU8AAbTBh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFZEcU8AAbTBh.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":978,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1024,"resize":"fit"},"small":{"w":340,"h":554,"resize":"fit"}}},{"id":663723930272722944,"id_str":"663723930272722944","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFZeTU8AAftjT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFZeTU8AAftjT.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663723939688939521,"id_str":"663723939688939521","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFaBYVAAEHFDw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFaBYVAAEHFDw.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"large":{"w":340,"h":340,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":340,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u7530\u6dbc\u4ecb","indices":[105,110]},{"text":"JUMP","indices":[111,116]},{"text":"\u3068\u3073\u3063\u5b50\u3055\u3093\u3068\u7e4b\u304c\u308a\u305f\u3044","indices":[117,130]}],"urls":[],"user_mentions":[{"screen_name":"Johnnys_ya","name":"(\u30fb\u0434\u30fb\u3086\u3046\u304d\u3093\u3050)","id":3117108528,"id_str":"3117108528","indices":[3,14]}],"symbols":[],"media":[{"id":663723786668130304,"id_str":"663723786668130304","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":457,"resize":"fit"},"medium":{"w":480,"h":457,"resize":"fit"}},"source_status_id":663723942729814016,"source_status_id_str":"663723942729814016","source_user_id":3117108528,"source_user_id_str":"3117108528"}]},"extended_entities":{"media":[{"id":663723786668130304,"id_str":"663723786668130304","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFRHVUwAAlg4w.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":323,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":457,"resize":"fit"},"medium":{"w":480,"h":457,"resize":"fit"}},"source_status_id":663723942729814016,"source_status_id_str":"663723942729814016","source_user_id":3117108528,"source_user_id_str":"3117108528"},{"id":663723923331149824,"id_str":"663723923331149824","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFZEcU8AAbTBh.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFZEcU8AAbTBh.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":978,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":628,"h":1024,"resize":"fit"},"small":{"w":340,"h":554,"resize":"fit"}},"source_status_id":663723942729814016,"source_status_id_str":"663723942729814016","source_user_id":3117108528,"source_user_id_str":"3117108528"},{"id":663723930272722944,"id_str":"663723930272722944","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFZeTU8AAftjT.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFZeTU8AAftjT.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"medium":{"w":600,"h":578,"resize":"fit"},"large":{"w":640,"h":617,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663723942729814016,"source_status_id_str":"663723942729814016","source_user_id":3117108528,"source_user_id_str":"3117108528"},{"id":663723939688939521,"id_str":"663723939688939521","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYFaBYVAAEHFDw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYFaBYVAAEHFDw.jpg","url":"https:\/\/t.co\/kVKVgCVXO6","display_url":"pic.twitter.com\/kVKVgCVXO6","expanded_url":"http:\/\/twitter.com\/Johnnys_ya\/status\/663723942729814016\/photo\/1","type":"photo","sizes":{"large":{"w":340,"h":340,"resize":"fit"},"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":340,"h":340,"resize":"fit"}},"source_status_id":663723942729814016,"source_status_id_str":"663723942729814016","source_user_id":3117108528,"source_user_id_str":"3117108528"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080131661"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294987042817,"id_str":"663728294987042817","text":"RT @LICIA2LIT: Y'all dicks little. \nY'all dicks little\nY'all dicks little\nY'all dicks little \nYall dicks little\nY'all dicks little https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2386993462,"id_str":"2386993462","name":"\u30c3","screen_name":"hiiijeon","location":"Fort Lauderdale, FL","url":"http:\/\/instagram.com\/yamm0unii","description":"jungkook, yoongi, jackson, mark, vernon, luhan, gdragon, and daesung \u2217'\u2027\u208a\u00b0","protected":false,"verified":false,"followers_count":1562,"friends_count":1520,"listed_count":7,"favourites_count":12733,"statuses_count":10150,"created_at":"Thu Mar 06 01:21:36 +0000 2014","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/596673884671193088\/UA4uTwv4.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/596673884671193088\/UA4uTwv4.jpg","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663562490572177409\/ZgRsui-u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663562490572177409\/ZgRsui-u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2386993462\/1447038511","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:58:02 +0000 2015","id":663581289648398336,"id_str":"663581289648398336","text":"Y'all dicks little. \nY'all dicks little\nY'all dicks little\nY'all dicks little \nYall dicks little\nY'all dicks little https:\/\/t.co\/yivkNpscOm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269060506,"id_str":"269060506","name":"Ya Fave Stripper\u2728","screen_name":"LICIA2LIT","location":null,"url":null,"description":"me w all these curves & u w no brakes","protected":false,"verified":false,"followers_count":3296,"friends_count":1843,"listed_count":22,"favourites_count":8338,"statuses_count":154671,"created_at":"Sun Mar 20 01:20:02 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/518466799151497216\/XV2pvyVX.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/518466799151497216\/XV2pvyVX.jpeg","profile_background_tile":true,"profile_link_color":"FFC400","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"C4CB98","profile_text_color":"5B3B40","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661914299175190528\/cb8k2fZv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661914299175190528\/cb8k2fZv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269060506\/1446647641","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"bced47a0c99c71d0","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bced47a0c99c71d0.json","place_type":"city","name":"Durham","full_name":"Durham, NC","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-79.007589,35.866334],[-79.007589,36.115631],[-78.783292,36.115631],[-78.783292,35.866334]]]},"attributes":{}},"contributors":null,"quoted_status_id":663578004921020416,"quoted_status_id_str":"663578004921020416","quoted_status":{"created_at":"Mon Nov 09 04:44:59 +0000 2015","id":663578004921020416,"id_str":"663578004921020416","text":"Y'all hair not real\nY'all hair not real\nY'all hair not real\nY'all hair not real https:\/\/t.co\/j4hkyJBKEC","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":489039348,"id_str":"489039348","name":"Nipsey Hussle","screen_name":"JoshuaLorenzo14","location":"Morgan City, LA","url":null,"description":"Lakeside\u2708\ufe0fCypress Gardens","protected":false,"verified":false,"followers_count":649,"friends_count":445,"listed_count":2,"favourites_count":540,"statuses_count":9359,"created_at":"Sat Feb 11 03:43:12 +0000 2012","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663564156835090432\/y788TDZT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663564156835090432\/y788TDZT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/489039348\/1446916929","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663551476791386112,"quoted_status_id_str":"663551476791386112","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/j4hkyJBKEC","expanded_url":"https:\/\/twitter.com\/licia2lit\/status\/663551476791386112","display_url":"twitter.com\/licia2lit\/stat\u2026","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":212,"favorite_count":134,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yivkNpscOm","expanded_url":"https:\/\/twitter.com\/joshualorenzo14\/status\/663578004921020416","display_url":"twitter.com\/joshualorenzo1\u2026","indices":[117,140]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yivkNpscOm","expanded_url":"https:\/\/twitter.com\/joshualorenzo14\/status\/663578004921020416","display_url":"twitter.com\/joshualorenzo1\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"LICIA2LIT","name":"Ya Fave Stripper\u2728","id":269060506,"id_str":"269060506","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131657"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294987042816,"id_str":"663728294987042816","text":"Tu cara cuando suena la alarmas https:\/\/t.co\/ZrWS89K23F","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2213524278,"id_str":"2213524278","name":"kitty","screen_name":"OdioMiCancer","location":"Ecatepec","url":null,"description":"Soy ese frijol que no germin\u00f3 en este frasco con algod\u00f3n llamado vida.","protected":false,"verified":false,"followers_count":233,"friends_count":64,"listed_count":1,"favourites_count":1248,"statuses_count":475,"created_at":"Mon Nov 25 04:30:38 +0000 2013","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000124347190\/6ac03a0268ed6102d07015360ad23b84.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000124347190\/6ac03a0268ed6102d07015360ad23b84.png","profile_background_tile":true,"profile_link_color":"5E3961","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"0084B4","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/544507856935219200\/yinCFpY9_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/544507856935219200\/yinCFpY9_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2213524278\/1406007810","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728278427963392,"id_str":"663728278427963392","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWkcUkAAEFFg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWkcUkAAEFFg.jpg","url":"https:\/\/t.co\/ZrWS89K23F","display_url":"pic.twitter.com\/ZrWS89K23F","expanded_url":"http:\/\/twitter.com\/OdioMiCancer\/status\/663728294987042816\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":586,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728278427963392,"id_str":"663728278427963392","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWkcUkAAEFFg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWkcUkAAEFFg.jpg","url":"https:\/\/t.co\/ZrWS89K23F","display_url":"pic.twitter.com\/ZrWS89K23F","expanded_url":"http:\/\/twitter.com\/OdioMiCancer\/status\/663728294987042816\/photo\/1","type":"photo","sizes":{"large":{"w":583,"h":586,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":583,"h":586,"resize":"fit"},"small":{"w":340,"h":341,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080131657"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999625729,"id_str":"663728294999625729","text":"#PressPlay #LoudLife #LCM #PressPlay Cherae LERI' - Mirage @Cheraeleri https:\/\/t.co\/tX6FGq7VGD https:\/\/t.co\/gyc7uYBH1A","source":"\u003ca href=\"http:\/\/www.ajaymatharu.com\/\" rel=\"nofollow\"\u003eTweet Old Post\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2307606009,"id_str":"2307606009","name":"loud cloud ATL","screen_name":"loud_cloud_ATL","location":"ATL to philly ","url":"http:\/\/www.loudcloudmedia.com","description":"CEO @cmerkem Urban media and hip hop indi,major,and local artist send videos to be featured here http:\/\/www.loudcloudmedia.com\/submit-content","protected":false,"verified":false,"followers_count":369,"friends_count":269,"listed_count":8,"favourites_count":52,"statuses_count":185086,"created_at":"Mon Jan 27 12:08:40 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/427782007914237952\/r3R9lYJl_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/427782007914237952\/r3R9lYJl_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2307606009\/1390824990","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PressPlay","indices":[0,10]},{"text":"LoudLife","indices":[11,20]},{"text":"LCM","indices":[21,25]},{"text":"PressPlay","indices":[26,36]}],"urls":[{"url":"https:\/\/t.co\/tX6FGq7VGD","expanded_url":"http:\/\/loudcloudmedia.com\/pressplay-cherae-leri-mirage-cheraeleri\/?utm_source=ReviveOldPost&utm_medium=social&utm_campaign=ReviveOldPost","display_url":"loudcloudmedia.com\/pressplay-cher\u2026","indices":[71,94]}],"user_mentions":[{"screen_name":"Cheraeleri","name":"Cherae Leri","id":56423679,"id_str":"56423679","indices":[59,70]}],"symbols":[],"media":[{"id":663728294051713024,"id_str":"663728294051713024","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXepUEAAGj_X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXepUEAAGj_X.jpg","url":"https:\/\/t.co\/gyc7uYBH1A","display_url":"pic.twitter.com\/gyc7uYBH1A","expanded_url":"http:\/\/twitter.com\/loud_cloud_ATL\/status\/663728294999625729\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728294051713024,"id_str":"663728294051713024","indices":[95,118],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXepUEAAGj_X.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXepUEAAGj_X.jpg","url":"https:\/\/t.co\/gyc7uYBH1A","display_url":"pic.twitter.com\/gyc7uYBH1A","expanded_url":"http:\/\/twitter.com\/loud_cloud_ATL\/status\/663728294999625729\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":480,"h":360,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":480,"h":360,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080131660"} +{"delete":{"status":{"id":542258130600484864,"id_str":"542258130600484864","user_id":2516054989,"user_id_str":"2516054989"},"timestamp_ms":"1447080131974"}} +{"delete":{"status":{"id":529506087494361088,"id_str":"529506087494361088","user_id":576125853,"user_id_str":"576125853"},"timestamp_ms":"1447080132020"}} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728295003967488,"id_str":"663728295003967488","text":"m\u00e9dico y al colegio\ud83d\udc49 ya la subi y https:\/\/t.co\/MXxzFD5SCM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1936016485,"id_str":"1936016485","name":"abru","screen_name":"abbbrulopez","location":null,"url":null,"description":"\u26a0insta: abrulopezz snap: abrulopezz\u26a0\nQuiero estar perdida en tu mirada, entre tus brazos, hechizada.","protected":false,"verified":false,"followers_count":220,"friends_count":143,"listed_count":0,"favourites_count":3046,"statuses_count":15903,"created_at":"Sat Oct 05 01:06:01 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436472083141251072\/J0eA33_f.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436472083141251072\/J0eA33_f.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662861012484431872\/kSvxNao8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662861012484431872\/kSvxNao8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1936016485\/1447026226","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728282437820416,"id_str":"663728282437820416","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWzYWIAAWQpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWzYWIAAWQpI.jpg","url":"https:\/\/t.co\/MXxzFD5SCM","display_url":"pic.twitter.com\/MXxzFD5SCM","expanded_url":"http:\/\/twitter.com\/abbbrulopez\/status\/663728295003967488\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":1024,"h":622,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728282437820416,"id_str":"663728282437820416","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJWzYWIAAWQpI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJWzYWIAAWQpI.jpg","url":"https:\/\/t.co\/MXxzFD5SCM","display_url":"pic.twitter.com\/MXxzFD5SCM","expanded_url":"http:\/\/twitter.com\/abbbrulopez\/status\/663728295003967488\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":364,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":206,"resize":"fit"},"large":{"w":1024,"h":622,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080131661"} +{"created_at":"Mon Nov 09 14:42:11 +0000 2015","id":663728294999646208,"id_str":"663728294999646208","text":"Happy birthday to my bro, love you & miss you bro! See ya soon\ud83d\ude0b\ud83d\udc90\ud83d\udc9b https:\/\/t.co\/gbD72hrVA9","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1969931982,"id_str":"1969931982","name":"Da'Vonte Carline","screen_name":"CarlineDtrain","location":null,"url":null,"description":"Plano West Football! | C\/o #2018 | Plano West Varsity #29 DBU\/RB | THE U | P West Athlete","protected":false,"verified":false,"followers_count":482,"friends_count":395,"listed_count":1,"favourites_count":3312,"statuses_count":5679,"created_at":"Sat Oct 19 01:19:02 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662102845483683841\/pb7h7CP6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662102845483683841\/pb7h7CP6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1969931982\/1434432176","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728286845894656,"id_str":"663728286845894656","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXDzUAAAZ6aD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXDzUAAAZ6aD.jpg","url":"https:\/\/t.co\/gbD72hrVA9","display_url":"pic.twitter.com\/gbD72hrVA9","expanded_url":"http:\/\/twitter.com\/CarlineDtrain\/status\/663728294999646208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728286845894656,"id_str":"663728286845894656","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXDzUAAAZ6aD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXDzUAAAZ6aD.jpg","url":"https:\/\/t.co\/gbD72hrVA9","display_url":"pic.twitter.com\/gbD72hrVA9","expanded_url":"http:\/\/twitter.com\/CarlineDtrain\/status\/663728294999646208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":1024,"h":1024,"resize":"fit"}}},{"id":663728286975987712,"id_str":"663728286975987712","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXESVEAA1_aE.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXESVEAA1_aE.jpg","url":"https:\/\/t.co\/gbD72hrVA9","display_url":"pic.twitter.com\/gbD72hrVA9","expanded_url":"http:\/\/twitter.com\/CarlineDtrain\/status\/663728294999646208\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":340,"resize":"fit"},"large":{"w":400,"h":400,"resize":"fit"},"medium":{"w":400,"h":400,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080131660"} +{"delete":{"status":{"id":415090075505291264,"id_str":"415090075505291264","user_id":321077432,"user_id_str":"321077432"},"timestamp_ms":"1447080132392"}} +{"delete":{"status":{"id":638205594437091328,"id_str":"638205594437091328","user_id":228214292,"user_id_str":"228214292"},"timestamp_ms":"1447080132417"}} +{"delete":{"status":{"id":588910207985553408,"id_str":"588910207985553408","user_id":2835521420,"user_id_str":"2835521420"},"timestamp_ms":"1447080132515"}} +{"delete":{"status":{"id":663726214650179584,"id_str":"663726214650179584","user_id":3024107032,"user_id_str":"3024107032"},"timestamp_ms":"1447080132619"}} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185696768,"id_str":"663728299185696768","text":"RT @feelmarina: serio que \u00e9 hoje? serio mesmo?????? a ficha ainda n\u00e3o caiu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1050818306,"id_str":"1050818306","name":"gabi","screen_name":"pandinhadamari","location":null,"url":null,"description":"voc\u00ea atrai o que quiser com sua mente e cora\u00e7\u00e3o \u2764 ACREDITA QUE ACONTECE! 31.08.2014 24.02.15 \/ marinajas","protected":false,"verified":false,"followers_count":1562,"friends_count":214,"listed_count":0,"favourites_count":216,"statuses_count":20365,"created_at":"Mon Dec 31 17:36:33 +0000 2012","utc_offset":-7200,"time_zone":"Mid-Atlantic","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/484889500925956096\/i6EtRn4n.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/484889500925956096\/i6EtRn4n.jpeg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657224937606946817\/H7myibWI_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657224937606946817\/H7myibWI_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1050818306\/1445529726","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:45 +0000 2015","id":663727432390832128,"id_str":"663727432390832128","text":"serio que \u00e9 hoje? serio mesmo?????? a ficha ainda n\u00e3o caiu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1663943070,"id_str":"1663943070","name":"Marcos","screen_name":"feelmarina","location":null,"url":null,"description":"marcos, queria te mandar um super beijo, agradecer por tudo","protected":false,"verified":false,"followers_count":1127,"friends_count":226,"listed_count":0,"favourites_count":259,"statuses_count":28430,"created_at":"Mon Aug 12 02:44:07 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000049622045\/4b12beeeceac14197b11e5ac013ca983.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000049622045\/4b12beeeceac14197b11e5ac013ca983.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658644334238154752\/OOC-P_Tj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658644334238154752\/OOC-P_Tj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1663943070\/1445868681","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"feelmarina","name":"Marcos","id":1663943070,"id_str":"1663943070","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206705152,"id_str":"663728299206705152","text":"RT @mcarolinab_: Queria comer um sushizinho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1330367714,"id_str":"1330367714","name":"giu","screen_name":"GiubsAraujo","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":355,"friends_count":165,"listed_count":1,"favourites_count":5391,"statuses_count":17969,"created_at":"Sat Apr 06 00:40:31 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/842605520\/c36f195463dd682656e1ba0712a3c28c.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/842605520\/c36f195463dd682656e1ba0712a3c28c.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657326630147354626\/no8ytP4A_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657326630147354626\/no8ytP4A_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1330367714\/1441401732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:15:16 +0000 2015","id":663721520368349184,"id_str":"663721520368349184","text":"Queria comer um sushizinho","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":273494398,"id_str":"273494398","name":"maria carolina","screen_name":"mcarolinab_","location":"bsb","url":"http:\/\/Instagram.com\/mariacarolinab_","description":null,"protected":false,"verified":false,"followers_count":606,"friends_count":339,"listed_count":2,"favourites_count":2409,"statuses_count":32289,"created_at":"Mon Mar 28 16:08:44 +0000 2011","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/666894235\/0d54ce638f17c2c25ac103461c87bb4e.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/666894235\/0d54ce638f17c2c25ac103461c87bb4e.png","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663219817722302465\/kw5vYXHc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663219817722302465\/kw5vYXHc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/273494398\/1446958840","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mcarolinab_","name":"maria carolina","id":273494398,"id_str":"273494398","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202510848,"id_str":"663728299202510848","text":"RT @iyiYazmis: \"Birini kusurlar\u0131yla sevmezsin; sevdi\u011fin an, o senin i\u00e7in kusursuz olur.\" - Ferid Edg\u00fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":77040146,"id_str":"77040146","name":"bil\u03b1l","screen_name":"mantalite48","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":62,"friends_count":58,"listed_count":0,"favourites_count":792,"statuses_count":2021,"created_at":"Thu Sep 24 20:54:39 +0000 2009","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/597723071\/oo6ig1js1zim3agxm35y.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/597723071\/oo6ig1js1zim3agxm35y.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/571808489849114624\/uLQXZ2zP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/571808489849114624\/uLQXZ2zP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/77040146\/1425229243","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:00:58 +0000 2015","id":663687722486378496,"id_str":"663687722486378496","text":"\"Birini kusurlar\u0131yla sevmezsin; sevdi\u011fin an, o senin i\u00e7in kusursuz olur.\" - Ferid Edg\u00fc","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":458230054,"id_str":"458230054","name":"\u0130yi Yazm\u0131\u015f","screen_name":"iyiYazmis","location":"Bunudasevdim@hotmail.com","url":null,"description":"Direkt Mesaj g\u00f6ndermeyin.!","protected":false,"verified":false,"followers_count":255297,"friends_count":179779,"listed_count":219,"favourites_count":3,"statuses_count":54816,"created_at":"Sun Jan 08 09:54:59 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/728915083\/304515c80f801113f6e5cd1b3432151d.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/728915083\/304515c80f801113f6e5cd1b3432151d.jpeg","profile_background_tile":false,"profile_link_color":"E82757","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/462917659709800448\/ke5ofDWE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/462917659709800448\/ke5ofDWE_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/458230054\/1399208528","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":22,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iyiYazmis","name":"\u0130yi Yazm\u0131\u015f","id":458230054,"id_str":"458230054","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299181531136,"id_str":"663728299181531136","text":"\u042f \u043f\u0440\u043e\u0448\u0435\u043b \u043a\u0432\u0435\u0441\u0442 '\u0420\u0430\u0441\u043a\u043e\u043f\u043a\u0438' \u0432 The Tribez \u043d\u0430 #Android. https:\/\/t.co\/i9aFL0bb3e #androidgames, #gameinsight","source":"","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":598214301,"id_str":"598214301","name":"\u041d\u0430\u0442\u043b\u044c\u044f \u0410\u0433\u0430\u0440\u0435\u0432\u0430","screen_name":"natabos1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":1,"listed_count":0,"favourites_count":0,"statuses_count":12155,"created_at":"Sun Jun 03 07:59:38 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3485687756\/cb33c7debb71738617c005e666ba5db4_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3485687756\/cb33c7debb71738617c005e666ba5db4_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Android","indices":[42,50]},{"text":"androidgames","indices":[76,89]},{"text":"gameinsight","indices":[91,103]}],"urls":[{"url":"https:\/\/t.co\/i9aFL0bb3e","expanded_url":"http:\/\/gigam.es\/imtw_Tribez","display_url":"gigam.es\/imtw_Tribez","indices":[52,75]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080132657"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299198255104,"id_str":"663728299198255104","text":"RT @botondelfav1: Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3340010907,"id_str":"3340010907","name":"Micaaaaaa","screen_name":"iMicaOk","location":"Argentina","url":null,"description":"Si, Una cheta mas.","protected":false,"verified":false,"followers_count":1493,"friends_count":2010,"listed_count":1,"favourites_count":290,"statuses_count":19963,"created_at":"Sun Jun 21 22:56:00 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/623869847827578880\/E073Y-7X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/623869847827578880\/E073Y-7X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3340010907\/1437577204","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921031458816,"id_str":"663727921031458816","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382567641,"id_str":"3382567641","name":"fav\u2605","screen_name":"botondelfav1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":111,"friends_count":53,"listed_count":1,"favourites_count":66,"statuses_count":11491,"created_at":"Sun Jul 19 03:57:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622616264201138176\/-2ZcLndH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622616264201138176\/-2ZcLndH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"botondelfav1","name":"fav\u2605","id":3382567641,"id_str":"3382567641","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132661"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219296256,"id_str":"663728299219296256","text":"RT @Nettaaaaaaaa: With $1 million at stake, @mizzou's president now taking protests seriously https:\/\/t.co\/yoOReIIyoG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":204598799,"id_str":"204598799","name":"creative scorpio","screen_name":"vinivinidogo","location":"chicago, il","url":"http:\/\/writershustle.blogspot.com","description":"Writer of songs, short stories, poems, plays looking 4 a chance 2 change the lives & minds of others through the concept of each 1 teach 1","protected":false,"verified":false,"followers_count":168,"friends_count":523,"listed_count":7,"favourites_count":10,"statuses_count":9453,"created_at":"Tue Oct 19 01:51:29 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1204424003\/mardi_grag_mask_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1204424003\/mardi_grag_mask_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:27:39 +0000 2015","id":663724637868572672,"id_str":"663724637868572672","text":"With $1 million at stake, @mizzou's president now taking protests seriously https:\/\/t.co\/yoOReIIyoG","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1291770157,"id_str":"1291770157","name":"Johnetta Elzie","screen_name":"Nettaaaaaaaa","location":"STL\/Chicago","url":"http:\/\/wetheprotesters.org","description":"I am the stone that the builder refused...the promise of what's to come. And I'mma remain a soldier till the war is won. netta@thisisthemovement.org","protected":false,"verified":true,"followers_count":78041,"friends_count":942,"listed_count":1508,"favourites_count":3553,"statuses_count":144617,"created_at":"Sat Mar 23 15:38:36 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656158054493327361\/9a5Q41tT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656158054493327361\/9a5Q41tT.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656182221401755648\/H50xS33__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656182221401755648\/H50xS33__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1291770157\/1435592232","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":23,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yoOReIIyoG","expanded_url":"https:\/\/www.washingtonpost.com\/news\/morning-mix\/wp\/2015\/11\/09\/with-1-million-at-stake-u-of-missouris-president-now-taking-protests-seriously\/","display_url":"washingtonpost.com\/news\/morning-m\u2026","indices":[76,99]}],"user_mentions":[{"screen_name":"Mizzou","name":"Mizzou","id":23620660,"id_str":"23620660","indices":[26,33]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yoOReIIyoG","expanded_url":"https:\/\/www.washingtonpost.com\/news\/morning-mix\/wp\/2015\/11\/09\/with-1-million-at-stake-u-of-missouris-president-now-taking-protests-seriously\/","display_url":"washingtonpost.com\/news\/morning-m\u2026","indices":[94,117]}],"user_mentions":[{"screen_name":"Nettaaaaaaaa","name":"Johnetta Elzie","id":1291770157,"id_str":"1291770157","indices":[3,16]},{"screen_name":"Mizzou","name":"Mizzou","id":23620660,"id_str":"23620660","indices":[44,51]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299181342721,"id_str":"663728299181342721","text":"jidi\nsugar\nsujeong\nemg ada baekhyun?","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3159446299,"id_str":"3159446299","name":"smino","screen_name":"bangsmino","location":null,"url":"https:\/\/twitter.com\/bengclsd","description":null,"protected":false,"verified":false,"followers_count":48,"friends_count":41,"listed_count":0,"favourites_count":276,"statuses_count":714,"created_at":"Thu Apr 16 09:54:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663692153948782592\/NlCiYHlS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663692153948782592\/NlCiYHlS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3159446299\/1446623813","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080132657"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210891264,"id_str":"663728299210891264","text":"@Sexxy_Lacey36G my god. Round 2","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728178914029569,"in_reply_to_status_id_str":"663728178914029569","in_reply_to_user_id":3429225694,"in_reply_to_user_id_str":"3429225694","in_reply_to_screen_name":"Sexxy_Lacey36G","user":{"id":3394422369,"id_str":"3394422369","name":"King Shit","screen_name":"reddevils187","location":"New York, NY","url":null,"description":"Avi is me. Enjoys the finest of things.","protected":false,"verified":false,"followers_count":103,"friends_count":285,"listed_count":2,"favourites_count":22,"statuses_count":579,"created_at":"Wed Jul 29 20:22:02 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662643806572044288\/Pyn3-uXo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662643806572044288\/Pyn3-uXo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3394422369\/1446839403","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Sexxy_Lacey36G","name":"\u2764\ufe0fSexy_LaceyDDD\u2764\ufe0f","id":3429225694,"id_str":"3429225694","indices":[0,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219251200,"id_str":"663728299219251200","text":"RT @botondelfav1: Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3397706704,"id_str":"3397706704","name":"Lucecitaa\u2661","screen_name":"15Twsabri","location":null,"url":null,"description":"Me causan rechazo los pibes que bardean a una mina despu\u00e9s de haber estado con ella...sigo a todoss:D","protected":false,"verified":false,"followers_count":609,"friends_count":2013,"listed_count":1,"favourites_count":209,"statuses_count":7009,"created_at":"Fri Jul 31 20:17:43 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627214023549915137\/VDREBHFb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627214023549915137\/VDREBHFb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3397706704\/1438374740","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:42 +0000 2015","id":663727921031458816,"id_str":"663727921031458816","text":"Twittea \"Lau Suarez y Martu Fiore\" y te llenamos de RT \ud83d\ude0e","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3382567641,"id_str":"3382567641","name":"fav\u2605","screen_name":"botondelfav1","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":111,"friends_count":53,"listed_count":1,"favourites_count":66,"statuses_count":11491,"created_at":"Sun Jul 19 03:57:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/622616264201138176\/-2ZcLndH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/622616264201138176\/-2ZcLndH_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"botondelfav1","name":"fav\u2605","id":3382567641,"id_str":"3382567641","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206668292,"id_str":"663728299206668292","text":"Kazens + siblings...wonderful addition to our family. Lets happily share\u2026 https:\/\/t.co\/mNRwfD5Rpf","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":97460958,"id_str":"97460958","name":"*\ud76c\ub2d8 \uc5ec\uc790 \uce5c\uad6c(\ub2c8\ub098 \uc288\uc8fc)*","screen_name":"niey_na","location":null,"url":"http:\/\/5892nieyna.blogspot.com","description":"officially married with super junior member on 23nov 2013 ~\uc0ac \ub791 \ud574 \uc694 my family~ ~\uc0ac \ub791 \ud574 \uc694 \uc288 \ud37c \uc8fc \ub2c8 \uc5b4 ~ ~\uc0ac \ub791 \ud574 \uc694 all~","protected":false,"verified":false,"followers_count":288,"friends_count":803,"listed_count":0,"favourites_count":595,"statuses_count":16262,"created_at":"Thu Dec 17 15:09:34 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"ED0EB9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/529250858135846912\/DTHJxR48.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/529250858135846912\/DTHJxR48.jpeg","profile_background_tile":true,"profile_link_color":"F708C7","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"050105","profile_text_color":"F513C0","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597709699190919172\/vkys2CUP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597709699190919172\/vkys2CUP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/97460958\/1393390488","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/mNRwfD5Rpf","expanded_url":"https:\/\/instagram.com\/p\/93ijHdPvyqLxJXp6d6BdKk66NoakT-LlpOqNg0\/","display_url":"instagram.com\/p\/93ijHdPvyqLx\u2026","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206643717,"id_str":"663728299206643717","text":"RT @cathaypacific: See what happens when #travel bloggers who met online take #onedayoffline. Join us at https:\/\/t.co\/099siSPeTn\nhttps:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":585842091,"id_str":"585842091","name":"hasan sel\u00e7uki","screen_name":"hasan42268009","location":"TURKEY-S\u0130VAS","url":null,"description":"AUTHOR AND SCREENWRITER- my skype address is gndz122012@outlook.com","protected":false,"verified":false,"followers_count":3023,"friends_count":3298,"listed_count":1,"favourites_count":215,"statuses_count":878,"created_at":"Sun May 20 15:41:16 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660558800961732609\/bAyldHgB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660558800961732609\/bAyldHgB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/585842091\/1447021026","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 06:14:21 +0000 2015","id":662513331878522880,"id_str":"662513331878522880","text":"See what happens when #travel bloggers who met online take #onedayoffline. Join us at https:\/\/t.co\/099siSPeTn\nhttps:\/\/t.co\/dYfwsrg9hQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16898427,"id_str":"16898427","name":"Cathay Pacific ","screen_name":"cathaypacific","location":null,"url":"http:\/\/www.cathaypacific.com","description":"Welcome to the Cathay Pacific Airways Twitter community, where you can share your #lifewelltravelled moments! You\u2019ll find us tweeting Mon-Fri between 9am & 5pm","protected":false,"verified":false,"followers_count":255245,"friends_count":2269,"listed_count":1905,"favourites_count":1723,"statuses_count":14757,"created_at":"Wed Oct 22 02:00:56 +0000 2008","utc_offset":28800,"time_zone":"Hong Kong","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/425317587\/twitter_cx_skin_HK.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/425317587\/twitter_cx_skin_HK.jpg","profile_background_tile":true,"profile_link_color":"005A63","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"005A63","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/526631556341719040\/PGyxRgFH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/526631556341719040\/PGyxRgFH_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16898427\/1418717869","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":280,"favorite_count":584,"entities":{"hashtags":[{"text":"travel","indices":[22,29]},{"text":"onedayoffline","indices":[59,73]}],"urls":[{"url":"https:\/\/t.co\/099siSPeTn","expanded_url":"http:\/\/bit.ly\/206BbkR","display_url":"bit.ly\/206BbkR","indices":[86,109]},{"url":"https:\/\/t.co\/dYfwsrg9hQ","expanded_url":"https:\/\/amp.twimg.com\/v\/732aa244-7985-4355-a8a9-159111cdeabd","display_url":"amp.twimg.com\/v\/732aa244-798\u2026","indices":[110,133]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"travel","indices":[41,48]},{"text":"onedayoffline","indices":[78,92]}],"urls":[{"url":"https:\/\/t.co\/099siSPeTn","expanded_url":"http:\/\/bit.ly\/206BbkR","display_url":"bit.ly\/206BbkR","indices":[105,128]},{"url":"https:\/\/t.co\/dYfwsrg9hQ","expanded_url":"https:\/\/amp.twimg.com\/v\/732aa244-7985-4355-a8a9-159111cdeabd","display_url":"amp.twimg.com\/v\/732aa244-798\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"cathaypacific","name":"Cathay Pacific ","id":16898427,"id_str":"16898427","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202449410,"id_str":"663728299202449410","text":"RT @OfficialWithHL: NEW || Harry, Louis and the boys will be on Radio 1 Breakfast with Nick Grimshaw next Monday!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1901604475,"id_str":"1901604475","name":"gabby","screen_name":"embellishednjh","location":null,"url":null,"description":"otra philly\/\/rowyso camden","protected":false,"verified":false,"followers_count":2913,"friends_count":2393,"listed_count":21,"favourites_count":120534,"statuses_count":90412,"created_at":"Tue Sep 24 19:52:22 +0000 2013","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"010405","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660848408656113665\/8Z0xYYZi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660848408656113665\/8Z0xYYZi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1901604475\/1446393512","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:22:29 +0000 2015","id":663723335981924352,"id_str":"663723335981924352","text":"NEW || Harry, Louis and the boys will be on Radio 1 Breakfast with Nick Grimshaw next Monday!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3474104594,"id_str":"3474104594","name":"H&L Updates!","screen_name":"OfficialWithHL","location":null,"url":null,"description":"Harry and Louis update account. Live Tweeting on H & L. RBB review. Larry Receipts. and a little bit of random larry shit here and there.","protected":false,"verified":false,"followers_count":7934,"friends_count":7,"listed_count":30,"favourites_count":205,"statuses_count":4717,"created_at":"Sun Sep 06 20:15:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660610886097326080\/X2USZRSp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660610886097326080\/X2USZRSp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3474104594\/1446339947","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":45,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"OfficialWithHL","name":"H&L Updates!","id":3474104594,"id_str":"3474104594","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206537216,"id_str":"663728299206537216","text":"@punk_maru \u304a\u3044\u304a\u3044\u3046\u3061\u4e38\u3045\u3045\u3045\u3045\u3045\u3045\u3045\u3045\u3045\u30fd(\uff1b\u25bd\uff1b)\u30ce","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727072452341760,"in_reply_to_status_id_str":"663727072452341760","in_reply_to_user_id":449817264,"in_reply_to_user_id_str":"449817264","in_reply_to_screen_name":"punk_maru","user":{"id":3221213592,"id_str":"3221213592","name":"Kanami Mashima\u2721\uff61:*","screen_name":"XXx_kanami_xXX","location":"\u753b\u9762\u306e\u4e2d","url":null,"description":"\u67d3\u5730\u2192\u8abf3\u2192(\u5e9c\u9ad8\uff0a2437) Instagram\u25b8\u25b9http:\/\/Instagram.com\/kanami._.1013","protected":false,"verified":false,"followers_count":224,"friends_count":229,"listed_count":0,"favourites_count":2039,"statuses_count":2470,"created_at":"Wed May 20 10:02:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645580177901142016\/orNScI_G_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645580177901142016\/orNScI_G_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3221213592\/1442196941","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"punk_maru","name":"\u3046\u3061\u4e38","id":449817264,"id_str":"449817264","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185561600,"id_str":"663728299185561600","text":"RT @AdorableWords: i have anger issues. i get irritated fast af & can catch an attitude in 3 seconds, but i'm a sweetheart i swear","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1271377429,"id_str":"1271377429","name":"$avage princess","screen_name":"liliannnaaaa","location":"sin city | YT forever ","url":null,"description":"vegas","protected":false,"verified":false,"followers_count":796,"friends_count":1000,"listed_count":2,"favourites_count":11275,"statuses_count":60644,"created_at":"Sat Mar 16 04:07:42 +0000 2013","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657324908905533440\/0kNOThyO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657324908905533440\/0kNOThyO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1271377429\/1446438751","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 17:03:12 +0000 2015","id":663401395991781376,"id_str":"663401395991781376","text":"i have anger issues. i get irritated fast af & can catch an attitude in 3 seconds, but i'm a sweetheart i swear","source":"\u003ca href=\"http:\/\/bufferapp.com\" rel=\"nofollow\"\u003eBuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412948496,"id_str":"412948496","name":"Too Sassy","screen_name":"AdorableWords","location":"adorablewordspromo@gmail.com","url":null,"description":"have a sassy mouth but hella sensitive at the same time [feel free to send in submission]","protected":false,"verified":false,"followers_count":2185608,"friends_count":220,"listed_count":1998,"favourites_count":702,"statuses_count":9202,"created_at":"Tue Nov 15 09:41:26 +0000 2011","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/508501292759539712\/U0NHh1WS.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/508501292759539712\/U0NHh1WS.jpeg","profile_background_tile":true,"profile_link_color":"FAAABA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"277574","profile_text_color":"257055","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610851759985000448\/XHUdTByy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610851759985000448\/XHUdTByy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412948496\/1441293777","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2061,"favorite_count":2398,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"AdorableWords","name":"Too Sassy","id":412948496,"id_str":"412948496","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185565697,"id_str":"663728299185565697","text":"RT @RichFollowss: I will Submit 5,000 Directories For a site for $5 https:\/\/t.co\/R38OAmeHBv via @MyCheapJobs_ https:\/\/t.co\/ah5FBzUKlh","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244554981,"id_str":"3244554981","name":"Laeta Bullivent","screen_name":"dyvozetazyva","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":103,"friends_count":962,"listed_count":11,"favourites_count":13840,"statuses_count":19358,"created_at":"Sun May 10 08:09:54 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643457353161949184\/7Mv_8GEb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643457353161949184\/7Mv_8GEb_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:24 +0000 2015","id":663727342402015233,"id_str":"663727342402015233","text":"I will Submit 5,000 Directories For a site for $5 https:\/\/t.co\/R38OAmeHBv via @MyCheapJobs_ https:\/\/t.co\/ah5FBzUKlh","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356069807,"id_str":"356069807","name":"Rich Follows","screen_name":"RichFollowss","location":"Anaheim","url":"https:\/\/www.rebelmouse.com\/RichFollowss","description":"100,000+ Stable\/NON Drop\/Fast Followers. for $30","protected":false,"verified":false,"followers_count":19843,"friends_count":893,"listed_count":8,"favourites_count":4,"statuses_count":2145,"created_at":"Tue Aug 16 09:05:39 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619272711852814336\/OAjmsM-S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619272711852814336\/OAjmsM-S_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":9,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R38OAmeHBv","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Adve\/RPjM0","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[50,73]}],"user_mentions":[{"screen_name":"MyCheapJobs_","name":"MyCheapJobs","id":356162553,"id_str":"356162553","indices":[78,91]}],"symbols":[],"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/R38OAmeHBv","expanded_url":"http:\/\/linkis.com\/mycheapjobs.com\/Adve\/RPjM0","display_url":"linkis.com\/mycheapjobs.co\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"RichFollowss","name":"Rich Follows","id":356069807,"id_str":"356069807","indices":[3,16]},{"screen_name":"MyCheapJobs_","name":"MyCheapJobs","id":356162553,"id_str":"356162553","indices":[96,109]}],"symbols":[],"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663727342402015233,"source_status_id_str":"663727342402015233","source_user_id":356069807,"source_user_id_str":"356069807"}]},"extended_entities":{"media":[{"id":663727341743419392,"id_str":"663727341743419392","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIgDBUsAAVUT3.jpg","url":"https:\/\/t.co\/ah5FBzUKlh","display_url":"pic.twitter.com\/ah5FBzUKlh","expanded_url":"http:\/\/twitter.com\/RichFollowss\/status\/663727342402015233\/photo\/1","type":"photo","sizes":{"medium":{"w":380,"h":265,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":237,"resize":"fit"},"large":{"w":380,"h":265,"resize":"fit"}},"source_status_id":663727342402015233,"source_status_id_str":"663727342402015233","source_user_id":356069807,"source_user_id_str":"356069807"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219271680,"id_str":"663728299219271680","text":"\u0641\u0643\u0631\u0647 \u062c\u0645\u064a\u064a\u064a\u064a\u0628\u064a\u0644\u0647 \u0644\u0645 \u062a\u062e\u0637\u0631 \u0639\u0644\u0649 \u0628\u0627\u0644 \u0627\u062d\u062f !!\n\u0634\u0640\u0640\u0627\u0647\u0640\u0640\u062f \u0627\u0644\u0641\u064a\u062f\u064a\u0648 ..... https:\/\/t.co\/nZZAurTWO0","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":911111305,"id_str":"911111305","name":"\u0627\u0644\u0645\u0635\u0631\u0649","screen_name":"6666660000","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":4,"friends_count":26,"listed_count":0,"favourites_count":1,"statuses_count":1655,"created_at":"Sun Oct 28 21:02:39 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/nZZAurTWO0","expanded_url":"http:\/\/fb.me\/7u5pLWk23","display_url":"fb.me\/7u5pLWk23","indices":[62,85]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299215032320,"id_str":"663728299215032320","text":"Como extra\u00f1o este manjar de la vida #ilovechickfila #chickfila #houston #teextra\u00f1o @ Chick-fil-A at\u2026 https:\/\/t.co\/psEFTM4oBM","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":82114908,"id_str":"82114908","name":"JoCelo \u0950","screen_name":"iJoCelo","location":"Tomorrowland","url":"https:\/\/www.facebook.com\/jocelon?ref=hl","description":"Nac\u00ed cabron porque pendejos ya habia muchos. IG:iJoCelo SNAPCHAT iJoCelo","protected":false,"verified":false,"followers_count":2513,"friends_count":1621,"listed_count":4,"favourites_count":1491,"statuses_count":34428,"created_at":"Tue Oct 13 15:03:41 +0000 2009","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"D3D9DB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/728476473\/f2dae584d511a0c3d593b7f6605cdcbf.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/728476473\/f2dae584d511a0c3d593b7f6605cdcbf.jpeg","profile_background_tile":false,"profile_link_color":"A177AB","profile_sidebar_border_color":"5AC3E9","profile_sidebar_fill_color":"2D1E29","profile_text_color":"DB6995","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636033836938166276\/yPtD94Q2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636033836938166276\/yPtD94Q2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/82114908\/1443129903","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[29.7139263,-95.3144073]},"coordinates":{"type":"Point","coordinates":[-95.3144073,29.7139263]},"place":{"id":"1c69a67ad480e1b1","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/1c69a67ad480e1b1.json","place_type":"city","name":"Houston","full_name":"Houston, TX","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-95.823268,29.522325],[-95.823268,30.154665],[-95.069705,30.154665],[-95.069705,29.522325]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"ilovechickfila","indices":[36,51]},{"text":"chickfila","indices":[52,62]},{"text":"houston","indices":[63,71]},{"text":"teextra\u00f1o","indices":[72,82]}],"urls":[{"url":"https:\/\/t.co\/psEFTM4oBM","expanded_url":"https:\/\/instagram.com\/p\/93ijG8TK_5\/","display_url":"instagram.com\/p\/93ijG8TK_5\/","indices":[101,124]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132665"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210752000,"id_str":"663728299210752000","text":"Wala pa pala akong t-shirt sa p.e \ud83d\ude33","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2886101546,"id_str":"2886101546","name":"Den","screen_name":"deniszesmith","location":null,"url":null,"description":"11x06x15 - ey\/ey - just pls... ughh","protected":false,"verified":false,"followers_count":637,"friends_count":772,"listed_count":0,"favourites_count":2744,"statuses_count":7472,"created_at":"Sat Nov 01 09:35:27 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578503574201614336\/GVWS6wOE.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578503574201614336\/GVWS6wOE.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658277487072292864\/HDU_2TUp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658277487072292864\/HDU_2TUp_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299194064896,"id_str":"663728299194064896","text":"\u0414\u0430\u0432\u0430\u0439 \u0432\u0435\u0440\u043d\u0435\u043c \u043d\u0430\u0448\u0438 \u0431\u0435\u0437\u0443\u043c\u0441\u0442\u0432\u0430\n\u0414\u0430\u0432\u0430\u0439 \u0432\u0441\u043f\u043e\u043c\u043d\u0438\u043c \u043a\u0430\u043a \u0432\u0441\u0435 \u0431\u044b\u043b\u043e\n\u0412\u0435\u0434\u044c \u0442\u044b \u043c\u0435\u043d\u044f \u043b\u044e\u0431\u0438\u043b\u0430","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3307199524,"id_str":"3307199524","name":"\u0421\u0442\u0435\u0439\u0441\u2728","screen_name":"c56c2ac3c6184ec","location":null,"url":"http:\/\/vk.com\/id316432596","description":null,"protected":false,"verified":false,"followers_count":64,"friends_count":45,"listed_count":0,"favourites_count":539,"statuses_count":1805,"created_at":"Wed Jun 03 15:28:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662788502141161472\/smcJS3_X_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662788502141161472\/smcJS3_X_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3307199524\/1446582190","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219267584,"id_str":"663728299219267584","text":"RT @Ayakli_TV: Bu Ak\u015fam \ud83c\udf03 \ud83d\udcfa \n#G\u00fcne\u015finK\u0131zlar\u0131 \u0130zleyecekler RT\n#K\u0131rg\u0131n\u00c7i\u00e7ekler \u0130zleyecekler FAV\n#parampar\u00e7a \u0130zleyecekler Yorum\nYaps\u0131n...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2547263607,"id_str":"2547263607","name":"zehramyy","screen_name":"zehraxk","location":null,"url":null,"description":":)","protected":false,"verified":false,"followers_count":11,"friends_count":32,"listed_count":0,"favourites_count":355,"statuses_count":49,"created_at":"Wed May 14 12:25:07 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/629705763867504640\/lNJZYMDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/629705763867504640\/lNJZYMDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2547263607\/1444652064","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:23:36 +0000 2015","id":663723617331634176,"id_str":"663723617331634176","text":"Bu Ak\u015fam \ud83c\udf03 \ud83d\udcfa \n#G\u00fcne\u015finK\u0131zlar\u0131 \u0130zleyecekler RT\n#K\u0131rg\u0131n\u00c7i\u00e7ekler \u0130zleyecekler FAV\n#parampar\u00e7a \u0130zleyecekler Yorum\nYaps\u0131n...","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3568217595,"id_str":"3568217595","name":"Ayakl\u0131 Televizyon","screen_name":"Ayakli_TV","location":"AyakliTelevizyon@gmail.com","url":"http:\/\/instagram.com\/tv_ekrani","description":"En G\u00fcncel Payla\u015f\u0131mlar, Sanat ve Televizyon D\u00fcnyas\u0131ndan Haberler. K\u0131sacas\u0131 Medya D\u00fcnyas\u0131na Dair Ne Varsa.\nWattpad: Ayakli_TV\nInstagram:tv_ekrani","protected":false,"verified":false,"followers_count":3412,"friends_count":3805,"listed_count":1,"favourites_count":4458,"statuses_count":2540,"created_at":"Sun Sep 06 17:18:12 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657901389386010624\/dAkOl0tm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657901389386010624\/dAkOl0tm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3568217595\/1444594641","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":61,"favorite_count":9,"entities":{"hashtags":[{"text":"G\u00fcne\u015finK\u0131zlar\u0131","indices":[14,29]},{"text":"K\u0131rg\u0131n\u00c7i\u00e7ekler","indices":[46,61]},{"text":"parampar\u00e7a","indices":[79,90]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"G\u00fcne\u015finK\u0131zlar\u0131","indices":[29,44]},{"text":"K\u0131rg\u0131n\u00c7i\u00e7ekler","indices":[61,76]},{"text":"parampar\u00e7a","indices":[94,105]}],"urls":[],"user_mentions":[{"screen_name":"Ayakli_TV","name":"Ayakl\u0131 Televizyon","id":3568217595,"id_str":"3568217595","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206574080,"id_str":"663728299206574080","text":"RT @UrbanAchievr: WHAT. THE. FUCK. https:\/\/t.co\/D1MAXfgDkQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":301622897,"id_str":"301622897","name":"Amy ","screen_name":"Amyatbeach","location":null,"url":null,"description":"Endangered species, a conservative parent in California. Suspicious and snarky. Over caffeinated. RT is not endorsement.","protected":false,"verified":false,"followers_count":574,"friends_count":956,"listed_count":18,"favourites_count":5082,"statuses_count":100,"created_at":"Thu May 19 19:37:04 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"174F80","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3056881170\/f7bea2c5dca18736fadbc858afe57d7a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3056881170\/f7bea2c5dca18736fadbc858afe57d7a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/301622897\/1398737760","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:50 +0000 2015","id":663727953671561221,"id_str":"663727953671561221","text":"WHAT. THE. FUCK. https:\/\/t.co\/D1MAXfgDkQ","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":468657693,"id_str":"468657693","name":"Brandt","screen_name":"UrbanAchievr","location":null,"url":null,"description":"Ah ha ha, that's marvelous.","protected":false,"verified":false,"followers_count":1441,"friends_count":2098,"listed_count":40,"favourites_count":7209,"statuses_count":25190,"created_at":"Thu Jan 19 19:32:28 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/549243649759150080\/48DbF4uE_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/549243649759150080\/48DbF4uE_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/D1MAXfgDkQ","expanded_url":"http:\/\/www.mirror.co.uk\/news\/world-news\/isis-savages-gun-down-200-6798484","display_url":"mirror.co.uk\/news\/world-new\u2026","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/D1MAXfgDkQ","expanded_url":"http:\/\/www.mirror.co.uk\/news\/world-news\/isis-savages-gun-down-200-6798484","display_url":"mirror.co.uk\/news\/world-new\u2026","indices":[35,58]}],"user_mentions":[{"screen_name":"UrbanAchievr","name":"Brandt","id":468657693,"id_str":"468657693","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189731328,"id_str":"663728299189731328","text":"RT @fxxk_bot: \u3010\u30df\u30ab\u30bf\u30ac\u30fc\u75c7\u5019\u7fa4\u3011\nwlw\u3084lov3\u7b49\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u4e2d\u5fc3\u306b\u767a\u75c7\u3059\u308b\u7cbe\u795e\u75be\u60a3\n\u25c6\u75c7\u72b6\nPLAY\u4e2d\u306b\u30da\u30f3\u3092\u6295\u3052\u6368\u3066\u308b\u3001\u72ec\u308a\u8a00\u3067\u66b4\u8a00\u3092\u5410\u304f\u3001\u5473\u65b9PLAYER\u3078\u4e71\u66b4\u306a\u6307\u793a\u3092\u51fa\u3059\u306a\u3069\u3001\u653b\u6483\u6027\u304c\u9ad8\u307e\u308b\u75c7\u4f8b\u3092\u6563\u898b\u3002\n\u25c6\u5bfe\u5fdc\n\u5e97\u54e1\u306a\u3044\u3057\u306fSNS\u3001\u5de8\u5927\u63b2\u793a\u677f\u3002\u6700\u60aa\u306f\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":322212667,"id_str":"322212667","name":"\u30b2\u30eb\u30ca\u30b9\uff20\u30b5\u30f3\u30af\u30eb23\u5f3e\u5168\u88f8\u5f85\u6a5f","screen_name":"gelnath","location":"\u5343\u8449\u770c","url":null,"description":"\u30a2\u30cb\u30e1\u3068\u304b\u30b2\u30fc\u30e0\u5927\u597d\u304d\u3067\u3059\uff61\u3044\u3044\u6b73\u3053\u3044\u305f\u5927\u4eba\u306a\u306e\u306b\uff65\uff65\uff65\uff65\uff61\u30a2\u30fc\u30b1\u30fc\u30c9\u30b2\u30fc\u30e0\u5927\u597d\u304d\u3067\u3059\uff61\u30dc\u30fc\u30c0\u30fc\u30d6\u30ec\u30a4\u30af\u3092\u4e3b\u306b\u30d7\u30ec\u30a4\u3057\u3066\u304a\u308a\u307e\u3059\uff61\u3042\u3068\u30dc\u30c0\u30d6\u30ec\u306f\u30d7\u30ec\u30a4\u52d5\u753b\u3046p\u3057\u3066\u307e\u3059(\u3067\u3082\u521d\u898b\u3055\u3093\u306b\u306f\u8f9b\u3044\u304b\u3082)\uff61\u30dc\u30c0\u30d6\u30ec\u306f\u300e\u30b2\u30eb\u30ca\u30b9@\u71b1\u8840\u304f\u3093\u300f\u300e\u30b2\u30eb\u30ca\u30b9@\u5c11\u5973\u3061\u3083\u3093\u300f\u3067\u904a\u3093\u3067\u305f\u308a\u3057\u307e\u3059\uff61","protected":false,"verified":false,"followers_count":322,"friends_count":195,"listed_count":22,"favourites_count":4,"statuses_count":11642,"created_at":"Wed Jun 22 20:24:07 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636158948341518338\/yV1EC1EN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636158948341518338\/yV1EC1EN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/322212667\/1440507182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:31:36 +0000 2015","id":663710531555999745,"id_str":"663710531555999745","text":"\u3010\u30df\u30ab\u30bf\u30ac\u30fc\u75c7\u5019\u7fa4\u3011\nwlw\u3084lov3\u7b49\u306e\u30d7\u30ec\u30a4\u30e4\u30fc\u3092\u4e2d\u5fc3\u306b\u767a\u75c7\u3059\u308b\u7cbe\u795e\u75be\u60a3\n\u25c6\u75c7\u72b6\nPLAY\u4e2d\u306b\u30da\u30f3\u3092\u6295\u3052\u6368\u3066\u308b\u3001\u72ec\u308a\u8a00\u3067\u66b4\u8a00\u3092\u5410\u304f\u3001\u5473\u65b9PLAYER\u3078\u4e71\u66b4\u306a\u6307\u793a\u3092\u51fa\u3059\u306a\u3069\u3001\u653b\u6483\u6027\u304c\u9ad8\u307e\u308b\u75c7\u4f8b\u3092\u6563\u898b\u3002\n\u25c6\u5bfe\u5fdc\n\u5e97\u54e1\u306a\u3044\u3057\u306fSNS\u3001\u5de8\u5927\u63b2\u793a\u677f\u3002\u6700\u60aa\u306f110\u756a\u306b\u3066\u5bfe\u5fdc\u3059\u308b\u30b1\u30fc\u30b9\u3082\u3002","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3096450750,"id_str":"3096450750","name":"\u304a\u6c17\u306b\u5165\u308a\u306e\u591a\u3044\u30d5\u30c3\u30af\u8239\u9577bot","screen_name":"fxxk_bot","location":null,"url":null,"description":"wlw\u975e\u516c\u5f0f\u534a\u624b\u52d5bot\u3067\u3059\u3002\u30d5\u30a9\u30ed\u30d0\u306f\u81ea\u52d5\u3067\u3055\u305b\u3066\u9802\u304d\u307e\u3059\u3002\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u306e\u975e\u793c\u306f\u5fa1\u5bb9\u8d66\u4e0b\u3055\u3044\u3002\u30ea\u30d7\u306f\u30e9\u30f3\u30c0\u30e0\u3067\u3059\u3002\u305f\u307e\u306b\u30d5\u30a1\u307c\u308a\u307e\u3059\u3002\u3010\u3067\u3059\u308f\u3011\u8abf\u3067\u30ea\u30d7\u3092\u8cb0\u3046\u3068\u975e\u5e38\u306b\u8f9b\u8fa3\u306a\u81ea\u52d5\u30ea\u30d7\u304c\u8fd4\u3063\u3066\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":1580,"friends_count":1574,"listed_count":97,"favourites_count":1124,"statuses_count":18148,"created_at":"Wed Mar 18 15:53:46 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662963939584544768\/TtpZMF0n_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662963939584544768\/TtpZMF0n_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096450750\/1431534700","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fxxk_bot","name":"\u304a\u6c17\u306b\u5165\u308a\u306e\u591a\u3044\u30d5\u30c3\u30af\u8239\u9577bot","id":3096450750,"id_str":"3096450750","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299194105856,"id_str":"663728299194105856","text":"A veces lo pienso por muchos... https:\/\/t.co\/eSGTSrMslm","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2918033986,"id_str":"2918033986","name":"alfredo","screen_name":"ugedades_","location":null,"url":null,"description":"habitante de copiapo. intento reservar en dorsia. tengo que devolver unos videos. por aqui https:\/\/quitter.es\/ugedades","protected":false,"verified":false,"followers_count":674,"friends_count":1191,"listed_count":8,"favourites_count":1141,"statuses_count":28803,"created_at":"Fri Dec 12 16:56:05 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662433925680222208\/4WpTklrI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662433925680222208\/4WpTklrI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2918033986\/1436599425","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727269194563586,"quoted_status_id_str":"663727269194563586","quoted_status":{"created_at":"Mon Nov 09 14:38:07 +0000 2015","id":663727269194563586,"id_str":"663727269194563586","text":"- \u00bfTe puedo hacer una cr\u00edtica constructiva? \n- Si, decime \n- Morite","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":834702151,"id_str":"834702151","name":"cosito de la pizza","screen_name":"elcosodelapizza","location":null,"url":"http:\/\/es.favstar.fm\/users\/elcosodelapizza","description":"Me llamo tr\u00edpode. Sirvo para que el queso no se pegue en la caja.\r\n\r\nCuenta oficial, cuidado con las cuentas falsas por favor. Si ven cuenta falsas reporten.","protected":false,"verified":false,"followers_count":3167632,"friends_count":428,"listed_count":1400,"favourites_count":165734,"statuses_count":29427,"created_at":"Thu Sep 20 03:45:21 +0000 2012","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000070134828\/b4fcbbb6a0a0b187cd93397ab18bd369_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/834702151\/1398224448","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eSGTSrMslm","expanded_url":"https:\/\/twitter.com\/elcosodelapizza\/status\/663727269194563586","display_url":"twitter.com\/elcosodelapizz\u2026","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299193970688,"id_str":"663728299193970688","text":"\u4e00\u751f\u30d1\u30f3\u306e\u8033\u98df\u3063\u3066\u308b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2810947998,"id_str":"2810947998","name":"N_miku(pon)","screen_name":"spr_aged","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":498,"friends_count":199,"listed_count":23,"favourites_count":23,"statuses_count":9603,"created_at":"Mon Sep 15 09:14:34 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662233948332818432\/flKxKQZE_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662233948332818432\/flKxKQZE_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2810947998\/1446996131","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299194077184,"id_str":"663728299194077184","text":"Leave the boy nah lol https:\/\/t.co\/hfspi75WhT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250840978,"id_str":"250840978","name":"Legs fuh days","screen_name":"SkyHewitt","location":"Trinidad West Indies","url":null,"description":"Jus ask and u would find out....","protected":false,"verified":false,"followers_count":346,"friends_count":291,"listed_count":5,"favourites_count":80,"statuses_count":6610,"created_at":"Fri Feb 11 22:40:00 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545024802\/first_pic.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545024802\/first_pic.jpg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660191068609097728\/FfQawyHV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660191068609097728\/FfQawyHV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/250840978\/1367407068","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663718475035230208,"quoted_status_id_str":"663718475035230208","quoted_status":{"created_at":"Mon Nov 09 14:03:10 +0000 2015","id":663718475035230208,"id_str":"663718475035230208","text":"21 hrs and 28 mins of labour and you ain't wha no party????","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210697988,"id_str":"210697988","name":"Jihan Roberts","screen_name":"shoesbyFIS","location":null,"url":null,"description":"I.S mudder, shopper, reader obscene language user .... http:\/\/Shopaholicisshoes.blogspot.com","protected":false,"verified":false,"followers_count":1206,"friends_count":641,"listed_count":15,"favourites_count":1422,"statuses_count":59956,"created_at":"Mon Nov 01 03:22:25 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659163115985113088\/XcxasbId_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659163115985113088\/XcxasbId_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210697988\/1428712230","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/hfspi75WhT","expanded_url":"https:\/\/twitter.com\/shoesbyfis\/status\/663718475035230208","display_url":"twitter.com\/shoesbyfis\/sta\u2026","indices":[23,46]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299193991168,"id_str":"663728299193991168","text":"Bacon warayaki @ \u3066\u3063\u307a\u3093-Teppen Thailand https:\/\/t.co\/NaTLzfOT9N","source":"\u003ca href=\"http:\/\/instagram.com\" rel=\"nofollow\"\u003eInstagram\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1255006969,"id_str":"1255006969","name":"loveeattilldie","screen_name":"loveeattilldie","location":null,"url":"http:\/\/www.facebook.com\/loveeattilldie","description":"Love to eat Lives for love !!!","protected":false,"verified":false,"followers_count":16,"friends_count":72,"listed_count":1,"favourites_count":0,"statuses_count":1119,"created_at":"Sat Mar 09 18:01:03 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3405717706\/382295d85e05fe943b16ae5d3993ad9d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3405717706\/382295d85e05fe943b16ae5d3993ad9d_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1255006969\/1363798120","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NaTLzfOT9N","expanded_url":"https:\/\/instagram.com\/p\/93ii7ukm8s\/","display_url":"instagram.com\/p\/93ii7ukm8s\/","indices":[38,61]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210768385,"id_str":"663728299210768385","text":"@ally_627 \u306a\u305cwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727796657635328,"in_reply_to_status_id_str":"663727796657635328","in_reply_to_user_id":3232233067,"in_reply_to_user_id_str":"3232233067","in_reply_to_screen_name":"ally_627","user":{"id":164997485,"id_str":"164997485","name":"*yuuka","screen_name":"69thecasbah","location":"\u30b3\u30fc\u30c8*\u30b3\u30fc\u30b7\u30e5\u30ab","url":null,"description":"\u6587\u5b66\u3001\u6620\u753b\u3001\u7279\u64ae\u3001\u732b\u3001SF\u3001\u97f3\u697d\u3001\u30dc\u30ab\u30ed\u597d\u304d\u306a\u30c9\u30e9\u30de\u30fc\u3002miki\u3061\u3083\u3093\u3089\u3076\u2661\u30b3\u30fc\u30c8*\u30b3\u30fc\u30b7\u30e5\u30ab\u540d\u7fa9\u306b\u3066 @cape0816 \u3068\u52d5\u753b\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059\u3002\u59b9\u2192 @sharp7707 \u7d20\u6575\u30d8\u30c3\u30c0\u2192 @bakuha_orange \u3055\u307e \u7d20\u6575\u30a2\u30a4\u30b3\u30f3\u2192@MEBARU_ \u3055\u307e","protected":false,"verified":false,"followers_count":730,"friends_count":675,"listed_count":28,"favourites_count":8567,"statuses_count":61994,"created_at":"Sat Jul 10 08:52:55 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/588804084\/splatter_666_145002.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/588804084\/splatter_666_145002.jpg","profile_background_tile":false,"profile_link_color":"999999","profile_sidebar_border_color":"333333","profile_sidebar_fill_color":"000000","profile_text_color":"404040","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651152148294598657\/FN7u4iz0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651152148294598657\/FN7u4iz0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/164997485\/1431856117","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ally_627","name":"\u3042\u308a\u30fc\u306f\u73cd\u3057\u304f\u306a\u308c\u306a\u304b\u3063\u305f\u4eba\u3002","id":3232233067,"id_str":"3232233067","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185606656,"id_str":"663728299185606656","text":"Has anyone played the shadowrun fps? https:\/\/t.co\/YAEuXc0gM5","source":"\u003ca href=\"http:\/\/service.rss2twi.com\/\" rel=\"nofollow\"\u003erss2twi.com\u306e\u30c4\u30a4\u30fc\u30c8\u5206\u6790\u30c4\u30fc\u30eb4\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2750993377,"id_str":"2750993377","name":"XboxOne News","screen_name":"XboxOneReddit","location":null,"url":null,"description":"Xbox One news from Reddit","protected":false,"verified":false,"followers_count":2665,"friends_count":0,"listed_count":60,"favourites_count":159690,"statuses_count":261017,"created_at":"Thu Aug 21 01:25:18 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548628699071799297\/jouRnhqk_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548628699071799297\/jouRnhqk_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/YAEuXc0gM5","expanded_url":"http:\/\/service.rss2twi.com\/link\/XboxOneReddit\/?post_id=16567135","display_url":"service.rss2twi.com\/link\/XboxOneRe\u2026","indices":[37,60]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202486272,"id_str":"663728299202486272","text":"Have a feeling those guys are gonna be busy today. Latest from @RossCavittWSB at noon.#wsbtv https:\/\/t.co\/N5VYdVI0Ao","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":20796870,"id_str":"20796870","name":"WSB-TV News Desk","screen_name":"WSBTVNewsdesk","location":"Atlanta, GA","url":"http:\/\/www.wsbtv.com","description":"Send newstips to newstip@wsbtv.com.","protected":false,"verified":true,"followers_count":8761,"friends_count":783,"listed_count":191,"favourites_count":127,"statuses_count":7545,"created_at":"Fri Feb 13 19:16:54 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/224145760\/Action-News-twitter-background2.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/224145760\/Action-News-twitter-background2.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/576924350621745152\/uFGEzoi__normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/576924350621745152\/uFGEzoi__normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20796870\/1426382425","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728036706164736,"quoted_status_id_str":"663728036706164736","quoted_status":{"created_at":"Mon Nov 09 14:41:10 +0000 2015","id":663728036706164736,"id_str":"663728036706164736","text":"Power crew army shuts down Lower Roswell in Cobb after a tree takes down several power lines. #wsbtv https:\/\/t.co\/rU568fFMzR","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":16434152,"id_str":"16434152","name":"Ross Cavitt | WSB-TV","screen_name":"RossCavittWSB","location":"Atlanta, ","url":"http:\/\/www.wsbtv.com","description":"Reporter at WSB-TV | Covering Cobb County and NW Suburbs | Career .350 hitter","protected":false,"verified":true,"followers_count":4339,"friends_count":1136,"listed_count":82,"favourites_count":60,"statuses_count":1322,"created_at":"Wed Sep 24 13:22:31 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175626213\/WnWwkUMD.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175626213\/WnWwkUMD.jpeg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639253840949321728\/wQrLsn5z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639253840949321728\/wQrLsn5z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/16434152\/1441243314","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"wsbtv","indices":[94,100]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728035913428992,"id_str":"663728035913428992","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIdAWcAALOqS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIdAWcAALOqS.jpg","url":"https:\/\/t.co\/rU568fFMzR","display_url":"pic.twitter.com\/rU568fFMzR","expanded_url":"http:\/\/twitter.com\/RossCavittWSB\/status\/663728036706164736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728035913428992,"id_str":"663728035913428992","indices":[101,124],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJIdAWcAALOqS.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJIdAWcAALOqS.jpg","url":"https:\/\/t.co\/rU568fFMzR","display_url":"pic.twitter.com\/rU568fFMzR","expanded_url":"http:\/\/twitter.com\/RossCavittWSB\/status\/663728036706164736\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"wsbtv","indices":[88,94]}],"urls":[{"url":"https:\/\/t.co\/N5VYdVI0Ao","expanded_url":"https:\/\/twitter.com\/RossCavittWSB\/status\/663728036706164736","display_url":"twitter.com\/RossCavittWSB\/\u2026","indices":[95,118]}],"user_mentions":[{"screen_name":"RossCavittWSB","name":"Ross Cavitt | WSB-TV","id":16434152,"id_str":"16434152","indices":[65,79]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299214925824,"id_str":"663728299214925824","text":"RT @wvlfshawty: keep ur shit lowkey and watch ur life get better","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1466118282,"id_str":"1466118282","name":"Your Fav Asian","screen_name":"HayleyFQuin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":16197,"friends_count":13428,"listed_count":19,"favourites_count":1743,"statuses_count":1683,"created_at":"Wed May 29 01:50:22 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000203","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/595117220088283136\/FVaxPrnk.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/595117220088283136\/FVaxPrnk.jpg","profile_background_tile":true,"profile_link_color":"000303","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631522236193599488\/rYDwX2t8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631522236193599488\/rYDwX2t8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1466118282\/1432281038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:43 +0000 2015","id":663728176342831104,"id_str":"663728176342831104","text":"keep ur shit lowkey and watch ur life get better","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2419497043,"id_str":"2419497043","name":"\ufe0f","screen_name":"wvlfshawty","location":null,"url":"http:\/\/thefeelsbbygirl.tumblr.com","description":"the feels shawty","protected":false,"verified":false,"followers_count":72232,"friends_count":45835,"listed_count":100,"favourites_count":31,"statuses_count":19656,"created_at":"Sun Mar 30 20:29:05 +0000 2014","utc_offset":14400,"time_zone":"Muscat","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660976755843272705\/SYtEy1m5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660976755843272705\/SYtEy1m5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2419497043\/1446424115","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":191,"favorite_count":9,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wvlfshawty","name":"\ufe0f","id":2419497043,"id_str":"2419497043","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132665"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189792768,"id_str":"663728299189792768","text":"\u3042\u3061\u3085\u3044\u305e\u3053\u3089","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224743128,"id_str":"3224743128","name":"\u307e\u306a\u304b@\u3086\u3044\u306b\u3083\u3093(\u00b4 \u3063\u03c9\u2282`)","screen_name":"1023_hinata","location":"\u6a2a\u6d5c\u5e02","url":null,"description":"\u9ad8\u7530\u4e2d\u2192\u65b0\u7fbd39th 1-3 \u3048\u306f\u3055\u3093\u306e\u30b2\u30fc\u30e0&\u30ea\u30a2\u306e\u57a2\u3067\u3001\u57fa\u672c\u3053\u3063\u3061\u4f7f\u3063\u3066\u307e\u3059\u3002\u30c9\u30f3\u30b2\u30fc\/\u3077\u3088\u30af\u30a8AC\/\u5c0f\u5009\u552f\u3001\u82b1\u6fa4\u9999\u83dc\/\u57ce\u4e0b\u753a\u3001\u51ea\u3042\u3059\u3001\u30ed\u30a6\u304d\u3085\u30fc\u3076\uff01\/\u305d\u306e\u4ed6\u30a2\u30cb\u30e1\u2026etc\u3002\u3077\u3088\u30af\u30a8AC\u6642\u306e\u5927\u307e\u3069\u3046\u3057\u30023\u8272\u5168\u3001 \u4e0d\u5b89\u5b9a\u3067\u3059\u304c5\u8272\u5168\u3082\u3084\u3063\u3066\u307e\u3059","protected":false,"verified":false,"followers_count":1251,"friends_count":1752,"listed_count":7,"favourites_count":4428,"statuses_count":5942,"created_at":"Sun May 24 03:43:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663028251187482624\/uBpJNX03_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663028251187482624\/uBpJNX03_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224743128\/1446989335","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210768384,"id_str":"663728299210768384","text":"RT @Raiavi99: \u0915\u0941\u0924\u094d\u0924\u093e \u0924\u094b \u092b\u093f\u0930 \u092d\u0940 \u0935\u092b\u093e\u0926\u093e\u0930 \u0939\u094b\u0924\u093e \u0939\u0948,\n\u0936\u0924\u094d\u0930\u0941 \u0924\u094b \u0909\u0938\u0938\u0947 \u092d\u0940 \u0928\u093f\u091a\u0947 \u091a\u0932\u093e \u0917\u092f\u093e \u0939\u0948,\n\u0914\u0930 \u092a\u093f\u091b\u0935\u093e\u0921\u093c\u0947 \u092a\u0947 \u0932\u093e\u0924 \u0916\u093e\u0928\u0947 \u0915\u0940 \u0915\u094b\u0936\u093f\u0938\n\u0932\u0917\u093e\u0924\u093e\u0930 \u091c\u093e\u0930\u0940 \u0939\u0948\u0964\nhttps:\/\/t\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141117921,"id_str":"141117921","name":"\u0936\u093f\u0935\u0936\u0902\u0915\u0930 \u0905\u0938\u0939\u093f\u0937\u094d\u0923\u0941","screen_name":"ShivshankarS","location":"Mumbai","url":null,"description":"\u0905\u092a\u0928\u0947 \u0924\u093e\u0930\u0930\u0941\u095e \u0915\u0947 \u0932\u093f\u090f \u092c\u0938 \u0907\u0924\u0928\u093e \u0939\u0940 \u0915\u093e\u092b\u093c\u0940 \u0939\u0948,\u00a0 \u0939\u092e \u0909\u0938 \u0930\u0938\u094d\u0924\u0947 \u0928\u0939\u0940 \u091a\u0932\u0924\u0947, \u091c\u094b \u0930\u0938\u094d\u0924\u093e \u0906\u092e \u0939\u094b \u091c\u093e\u090f.","protected":false,"verified":false,"followers_count":39426,"friends_count":464,"listed_count":115,"favourites_count":5277,"statuses_count":114974,"created_at":"Fri May 07 06:44:29 +0000 2010","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/586210156142170112\/ttQ7UK3w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/586210156142170112\/ttQ7UK3w_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:08:07 +0000 2015","id":663689522136264708,"id_str":"663689522136264708","text":"\u0915\u0941\u0924\u094d\u0924\u093e \u0924\u094b \u092b\u093f\u0930 \u092d\u0940 \u0935\u092b\u093e\u0926\u093e\u0930 \u0939\u094b\u0924\u093e \u0939\u0948,\n\u0936\u0924\u094d\u0930\u0941 \u0924\u094b \u0909\u0938\u0938\u0947 \u092d\u0940 \u0928\u093f\u091a\u0947 \u091a\u0932\u093e \u0917\u092f\u093e \u0939\u0948,\n\u0914\u0930 \u092a\u093f\u091b\u0935\u093e\u0921\u093c\u0947 \u092a\u0947 \u0932\u093e\u0924 \u0916\u093e\u0928\u0947 \u0915\u0940 \u0915\u094b\u0936\u093f\u0938\n\u0932\u0917\u093e\u0924\u093e\u0930 \u091c\u093e\u0930\u0940 \u0939\u0948\u0964\nhttps:\/\/t.co\/3CA9Sn7n1Y","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":269725942,"id_str":"269725942","name":"Avi","screen_name":"Raiavi99","location":"lucknow","url":null,"description":"\u0926\u094b\u0938\u094d\u0924 \u0932\u094b\u0917 \u091f\u092a\u094b\u0930\u0940 \u092c\u094b\u0932\u0924\u0947 \u092a\u0930 \u0926\u093f\u0932 \u0915\u093e \u0905\u091a\u094d\u091b\u093e \u0939\u0942\u0901 \u092d\u093e\u0908\n\u092f\u093e\u0930\u0940 \u0939\u0948 \u0908\u092e\u093e\u0928 \u092e\u0947\u0930\u093e \u092f\u093e\u0930 \u092e\u0947\u0930\u0940 \u095b\u093f\u0928\u094d\u0926\u0917\u0940\ntweets in like","protected":false,"verified":false,"followers_count":6789,"friends_count":2893,"listed_count":17,"favourites_count":1025,"statuses_count":29058,"created_at":"Mon Mar 21 10:17:14 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/648365330243256320\/Xt4xeZ_e.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/648365330243256320\/Xt4xeZ_e.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662940343826952192\/ZpcUNkOQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662940343826952192\/ZpcUNkOQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/269725942\/1444620787","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663687988585467904,"quoted_status_id_str":"663687988585467904","quoted_status":{"created_at":"Mon Nov 09 12:02:01 +0000 2015","id":663687988585467904,"id_str":"663687988585467904","text":"\u092c\u093f\u0939\u093e\u0930 \u092e\u0947\u0902 \u0939\u093e\u0930 \u092a\u0930 @BJP4India \u0938\u0947 \u0928\u093e\u0930\u093e\u091c \u0936\u0924\u094d\u0930\u0941\u0918\u0928 \u0938\u093f\u0928\u094d\u0939\u093e \u092a\u0930 @KailashOnline \u0915\u0947 \u0935\u093f\u0935\u093e\u0926\u093e\u0938\u094d\u092a\u0926 \u092c\u094b\u0932, \u0915\u0941\u0924\u094d\u0924\u0947 \u0938\u0947 \u0915\u0940 \u0939\u0948 \u0924\u0941\u0932\u0928\u093e https:\/\/t.co\/YLtqiVr2bU","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":333888813,"id_str":"333888813","name":"ABP \u0928\u094d\u092f\u0942\u095b \u0939\u093f\u0902\u0926\u0940","screen_name":"abpnewshindi","location":"New Delhi","url":"http:\/\/abpnews.abplive.in\/","description":"ABP News is a hindi news channel featuring news around the world on politics ,sports,business and entertainment.Follow us for latest news and updates.","protected":false,"verified":true,"followers_count":223410,"friends_count":28,"listed_count":393,"favourites_count":26,"statuses_count":65342,"created_at":"Tue Jul 12 07:23:31 +0000 2011","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"DBE9ED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/486098788310740996\/VyXmLlJs_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/486098788310740996\/VyXmLlJs_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/333888813\/1446991741","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BJP4India","name":"BJP","id":207809313,"id_str":"207809313","indices":[17,27]},{"screen_name":"KailashOnline","name":"Kailash Vijayvargiya","id":439154852,"id_str":"439154852","indices":[55,69]}],"symbols":[],"media":[{"id":663687986895155200,"id_str":"663687986895155200","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXktSyUcAAFCE-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXktSyUcAAFCE-.jpg","url":"https:\/\/t.co\/YLtqiVr2bU","display_url":"pic.twitter.com\/YLtqiVr2bU","expanded_url":"http:\/\/twitter.com\/abpnewshindi\/status\/663687988585467904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":752,"h":539,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663687986895155200,"id_str":"663687986895155200","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXktSyUcAAFCE-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXktSyUcAAFCE-.jpg","url":"https:\/\/t.co\/YLtqiVr2bU","display_url":"pic.twitter.com\/YLtqiVr2bU","expanded_url":"http:\/\/twitter.com\/abpnewshindi\/status\/663687988585467904\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":752,"h":539,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"retweet_count":21,"favorite_count":7,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3CA9Sn7n1Y","expanded_url":"https:\/\/twitter.com\/abpnewshindi\/status\/663687988585467904","display_url":"twitter.com\/abpnewshindi\/s\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3CA9Sn7n1Y","expanded_url":"https:\/\/twitter.com\/abpnewshindi\/status\/663687988585467904","display_url":"twitter.com\/abpnewshindi\/s\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"Raiavi99","name":"Avi","id":269725942,"id_str":"269725942","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185561601,"id_str":"663728299185561601","text":"@NASB72831 \u61d0\u304b\u3057\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728163986378753,"in_reply_to_status_id_str":"663728163986378753","in_reply_to_user_id":154790016,"in_reply_to_user_id_str":"154790016","in_reply_to_screen_name":"NASB72831","user":{"id":177086423,"id_str":"177086423","name":"\u6c37\u6708\u30b7\u30e7\u30a6\uff20\u30c7\u30ec\uff13rd\u4e21\u65e5","screen_name":"hiduki_9","location":"\u5e7b\u60f3\u90f7 \u5b88\u77e2\u795e\u793e","url":"http:\/\/www.pixiv.net\/member.php?id=573493","description":"\u6c17\u5206\u5c4b\u30e9\u30af\u30ac\u30ad\u30de\u30f3\u3002\u30b2\u30fc\u30e0\uff65\u904a\u622f\u738b\u3084\u3063\u305f\u308a\u3001\u308f\u308a\u3068\u6687\u4eba\u304b\u3082\uff61\u63d0\u7763\u517c\u30e2\u30d0\u30de\u30b9\u304b\u306a\u5b50\uff65\u6b4c\u9234\uff65\u30e6\u30c3\u30ad\uff65\u3042\u308a\u3059\u30fb\uff8b\uff9e\uff70\uff84\uff7c\uff6d\uff70\uff80\uff70P\u3002\uff93\uff8a\uff9e\uff79\uff9eID\uff1a5550612\u3000\u203b\u30cd\u30bf\u30d0\u30ec\u30fb\u5b9f\u6cc1\u30fb\u4e0b\u30cd\u30bf \u591a\u3081\u6ce8\u610f\u3002","protected":false,"verified":false,"followers_count":1462,"friends_count":490,"listed_count":69,"favourites_count":10101,"statuses_count":47379,"created_at":"Wed Aug 11 06:02:55 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000175601512\/2BISbxt7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000175601512\/2BISbxt7.jpeg","profile_background_tile":false,"profile_link_color":"143BB3","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662992879577501697\/njw-YFFf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662992879577501697\/njw-YFFf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177086423\/1434121356","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NASB72831","name":"NASBitch!!!('\u03c9')v","id":154790016,"id_str":"154790016","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219156992,"id_str":"663728299219156992","text":"@miuunaco \u305f\uff57\uff57\uff57\u305f\u304f\u3055\u3093\uff57\uff57\uff57\u3046\u3093\u78ba\u304b\u306b\uff57\uff57\uff57\uff57\uff57\uff57\u5c45\u308b\u306d\u2026\uff57\uff57\uff57\uff57\uff57\uff57\n\u3042\u3093\u30b9\u30bf\u2026\u9762\u767d\u3044\u3088\u2026\u3067\u3082\u307f\u3046\u3055\u3093\u306f\u3001\u643a\u5e2f\u30b2\u30fc\u30e0\u3084\u3089\u306a\u3044\u30a4\u30e1\u30fc\u30b8\u304c\u3042\u308b\u306a\u2026","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727711609729024,"in_reply_to_status_id_str":"663727711609729024","in_reply_to_user_id":3296900713,"in_reply_to_user_id_str":"3296900713","in_reply_to_screen_name":"miuunaco","user":{"id":1678655743,"id_str":"1678655743","name":"\u30cf\u30eb\u30ab@\u4fe1\u8005\u306e\u5893\u78e8\u304d\u4fc2","screen_name":"halulukange","location":"\u4f1a\u9577\u306e\u3048\u308a\u3042\u3057","url":"http:\/\/Instagram.com\/halulukange","description":"\u30d5\u30a9\u30ed\u30ea\u30e0\u30d6\u30ed\u3054\u81ea\u7531\u306b\u3002\u7121\u8a00RT\u30fb\u30d5\u30a1\u30dc\u591a\u3002\u3042\u3093\u30b9\u30bf\u4f1a\u9577\u81f3\u4e0a\u4e3b\u7fa9\u2192\u5b58\u5728\u304c\u795e\u3002\u30a2\u30cb\u30e1\u3002\u96a0\u308c\u795e\u30b2\u30fc\u3002\u30b0\u30eb\u30e1\u3002\u65c5\u884c\u3002IT\u3002\u6642\u3005\u7f8e\u5bb9\u3002\u30cd\u30bf\u306b\u3057\u304c\u3061\u3002","protected":false,"verified":false,"followers_count":111,"friends_count":131,"listed_count":2,"favourites_count":23604,"statuses_count":36417,"created_at":"Sat Aug 17 16:26:20 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000056347850\/a533c27c48d2c250e5e5b40d1aff609b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000056347850\/a533c27c48d2c250e5e5b40d1aff609b.jpeg","profile_background_tile":false,"profile_link_color":"999999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662998795026755584\/2rvnkPYP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662998795026755584\/2rvnkPYP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678655743\/1446621479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"miuunaco","name":"\u307f\u3046","id":3296900713,"id_str":"3296900713","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189882880,"id_str":"663728299189882880","text":"Mp en de Mo Ft. Young Safari - Reflectie (Freestyle): https:\/\/t.co\/9xCpRncuUi via @YouTube","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":182594276,"id_str":"182594276","name":"MootjeDoudouh.com","screen_name":"MootjeDoudouh","location":"Morocco","url":"http:\/\/www.MootjeDoudouh.com","description":"Inquiries: info@MootjeDoudouh.com #ALLME #SQD33","protected":false,"verified":false,"followers_count":1501,"friends_count":135,"listed_count":3,"favourites_count":5,"statuses_count":41985,"created_at":"Tue Aug 24 23:38:24 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/192551188\/bbb.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/192551188\/bbb.jpg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"969696","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/575311171181494272\/sIF7EbgM_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/575311171181494272\/sIF7EbgM_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/182594276\/1425999824","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9xCpRncuUi","expanded_url":"http:\/\/youtu.be\/Qyv3Kb67uMU?a","display_url":"youtu.be\/Qyv3Kb67uMU?a","indices":[54,77]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[82,90]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202351104,"id_str":"663728299202351104","text":"RT @TheDreamGhoul: I cannot be filled with the spirit of Christ unless a hungover sociology major named Leland says \"Merry Christmas\" while\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":36865350,"id_str":"36865350","name":"Paul","screen_name":"PaulSaysThings","location":"Mizzur","url":null,"description":"Most of my tweets are meant to be read by about 2% of my followers","protected":false,"verified":false,"followers_count":572,"friends_count":443,"listed_count":37,"favourites_count":2543,"statuses_count":37180,"created_at":"Fri May 01 03:03:24 +0000 2009","utc_offset":-21600,"time_zone":"America\/Chicago","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/498279394230554625\/wKHJwb2N_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/498279394230554625\/wKHJwb2N_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/36865350\/1389544492","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:02:29 +0000 2015","id":663552208118542336,"id_str":"663552208118542336","text":"I cannot be filled with the spirit of Christ unless a hungover sociology major named Leland says \"Merry Christmas\" while handing me my latte","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40291895,"id_str":"40291895","name":"dream ghoul","screen_name":"TheDreamGhoul","location":null,"url":"https:\/\/twitter.com\/TheDreamGhoul\/timelines\/658363530664648704","description":"stop asking about my bag of hammers","protected":false,"verified":false,"followers_count":7110,"friends_count":596,"listed_count":139,"favourites_count":19046,"statuses_count":18800,"created_at":"Fri May 15 17:47:54 +0000 2009","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/94502835\/image","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/94502835\/image","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661408862067490816\/2RYO7tTw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661408862067490816\/2RYO7tTw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40291895\/1446516444","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":340,"favorite_count":620,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TheDreamGhoul","name":"dream ghoul","id":40291895,"id_str":"40291895","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299181408256,"id_str":"663728299181408256","text":"@JESSXLOGY sama tetangga","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727976438083584,"in_reply_to_status_id_str":"663727976438083584","in_reply_to_user_id":2923758432,"in_reply_to_user_id_str":"2923758432","in_reply_to_screen_name":"JESSXLOGY","user":{"id":2393928667,"id_str":"2393928667","name":"wyf","screen_name":"YIFANLOGY","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":49,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":17,"created_at":"Mon Mar 17 06:52:20 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"D2D5D6","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"6A6E70","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663666155547070464\/A5kCHAYC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663666155547070464\/A5kCHAYC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2393928667\/1447076548","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JESSXLOGY","name":"\u3164","id":2923758432,"id_str":"2923758432","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080132657"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185586177,"id_str":"663728299185586177","text":"RT @fromsekaowa: \u30ca\u30ab\u30b8\u30f3\u3068\u30b5\u30aa\u30ea\u3061\u3083\u3093\u306e\u5171\u4f5c\u306e\u65b0\u66f2\u304c\u826f\u904e\u304e\u3066\u3001\u75c5\u9662\u306b\u5411\u304b\u3046\u30bf\u30af\u30b7\u30fc\u306e\u4e2d\u3067\u6d99\u304c\u51fa\u305f\u3002\u6065\u305a\u304b\u3057\u3044\u304b\u3089\u305a\u3063\u3068\u4e0a\u898b\u3066\u305f\u3002\u30a2\u30af\u30d3\u3092\u3059\u308b\u30d5\u30ea\u3082\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2984062424,"id_str":"2984062424","name":"\u2721\u3086\u3046\u306a@\u304b\u306b\u304b\u307e\u2721\u6d6e\u4e0a\u3057\u307e\u305b\u3093!!","screen_name":"yunaFukase1013","location":"\u5343\u8449\u306e\u3069\u3053\u304b\u7b11 SEKAI NO OWARILIVE","url":null,"description":"\u2661\u30da\u30a2\u753b\u2192@RinaFukase\u2661\n\u3072\u304b\u308b\u304f\u3093\u2661\u3086\u30fc\u304d\u304f\u3093\u2661\u305b\u30fc\u3084\u304f\u3093\u2661\u3082\u308a\u305b\u304f\u3093\u2661\u3053\u30fc\u3060\u3044\u304f\u3093\u2661\u3088\u3057\u304d\u2661\u308b\u306a\u3061\u3083\u3093\u2661\u3089\u3089\u3061\u3083\u3093\u2661\u308a\u306a\u3061\u3061\u3083\u3093\u2661\u3042\u3084\u306d\u2661\n11\u67082\u65e5\u3072\u304b\u308b\u304f\u3093\u304c\u30ad\u30e3\u30b9\u306b\u304d\u3066\u304f\u308c\u305f\u65e5\u3088\u3057\u304d\u3068\u305b\u30fc\u3084\u304f\u3093\u3068\u3042\u3084\u306d\u3068\u30b3\u30e9\u30dc\u30ad\u30e3\u30b9\u3057\u305f\u65e511\u67082\u65e5\u306f\u601d\u3044\u51fa\u306e\u65e5\u2661","protected":false,"verified":false,"followers_count":1845,"friends_count":2095,"listed_count":22,"favourites_count":9332,"statuses_count":8083,"created_at":"Thu Jan 15 11:33:34 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626580077409497088\/gsap5gfw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626580077409497088\/gsap5gfw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2984062424\/1446448950","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jul 31 10:43:51 +0000 2014","id":494795569982754816,"id_str":"494795569982754816","text":"\u30ca\u30ab\u30b8\u30f3\u3068\u30b5\u30aa\u30ea\u3061\u3083\u3093\u306e\u5171\u4f5c\u306e\u65b0\u66f2\u304c\u826f\u904e\u304e\u3066\u3001\u75c5\u9662\u306b\u5411\u304b\u3046\u30bf\u30af\u30b7\u30fc\u306e\u4e2d\u3067\u6d99\u304c\u51fa\u305f\u3002\u6065\u305a\u304b\u3057\u3044\u304b\u3089\u305a\u3063\u3068\u4e0a\u898b\u3066\u305f\u3002\u30a2\u30af\u30d3\u3092\u3059\u308b\u30d5\u30ea\u3082\u3057\u305f\u3002","source":"\u003ca href=\"http:\/\/www.echofon.com\/\" rel=\"nofollow\"\u003eEchofon\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":253188843,"id_str":"253188843","name":"Fukase(SEKAINOOWARI)","screen_name":"fromsekaowa","location":null,"url":null,"description":"Fukase from SEKAI NO OWARI \n\n\n\nTwitter since 2014.01.09","protected":false,"verified":true,"followers_count":1282361,"friends_count":1103,"listed_count":7104,"favourites_count":1,"statuses_count":1571,"created_at":"Wed Feb 16 18:52:57 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661342269195354113\/HCfLRz2Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661342269195354113\/HCfLRz2Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/253188843\/1396577369","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6873,"favorite_count":23709,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fromsekaowa","name":"Fukase(SEKAINOOWARI)","id":253188843,"id_str":"253188843","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210739712,"id_str":"663728299210739712","text":"\u75b2\u308c\u3066\u308b\u3093\u3060\u2026\u2026\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":275439804,"id_str":"275439804","name":"\u6216\u5b50@\u3088\u3046\u30d1\u30ec\u5927\u962a\u30423","screen_name":"aruko220","location":"\u3055\u304f\u3089\u30cb\u30e5\u30fc\u30bf\u30a6\u30f3","url":"http:\/\/alcorithm.wix.com\/alcorithm","description":"FBR\u3054\u81ea\u7531\u306b\u3069\u3046\u305e 18\u2191\u8da3\u5473\u7d75\u63cf\u304d\u8150 yo-kai\/inzm\/Revo\/nisioisin etc\u2026","protected":false,"verified":false,"followers_count":179,"friends_count":120,"listed_count":9,"favourites_count":2805,"statuses_count":19226,"created_at":"Fri Apr 01 08:28:39 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660685073725812736\/4rUEBE82_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660685073725812736\/4rUEBE82_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/275439804\/1443571133","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219120128,"id_str":"663728299219120128","text":"\u624b\u8d8a\u7950\u4e5f\u3082\u304d\u3083\u308a\u30fc\u3071\u307f\u3085\u3071\u307f\u3085\u306b\u4f7f\u7528\u3057\u305f\u3068\u3044\u3046\u30b8\u30e3\u30cb\u30fc\u30ba\u306b\u4f1d\u308f\u308b\u6975\u79d8\u30ca\u30f3\u30d1\u8853\u3068\u306f\uff1f https:\/\/t.co\/2CtxQlMgkV","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3317470130,"id_str":"3317470130","name":"\u25ceNEWS\u25ce","screen_name":"gt186NEWSpo","location":null,"url":null,"description":"NEWS\u3055\u3093\u304c\u30b9\u30ad(\uff89*\u00b4\u0437\uff40)\uff89 \u5e7c\u3044\u9803\u304b\u3089\u61a7\u308c\u3060\u3063\u305f\u5e7c\u7a1a\u5712\u306e\u5148\u751f\u3067\u3059\u266a \u6bce\u65e5\u53ef\u611b\u3044\u53ef\u611b\u3044\u5b50\u3069\u3082\u305f\u3061\u306b\u56f2\u307e\u308c\u306a\u304c\u3089\u9811\u5f35\u3063\u3066\u307e\u3059? \u6c17\u8efd\u306b\u7d61\u3093\u3067\u304f\u3060\u3055\u3044\u306d\u266a\u266a\u266a\u266a","protected":false,"verified":false,"followers_count":92,"friends_count":212,"listed_count":0,"favourites_count":0,"statuses_count":5790,"created_at":"Mon Aug 17 06:10:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633607191446945792\/FXzaO537_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633607191446945792\/FXzaO537_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3317470130\/1439898709","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/2CtxQlMgkV","expanded_url":"http:\/\/jonny001entamez.seesaa.net","display_url":"jonny001entamez.seesaa.net","indices":[42,65]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299215101952,"id_str":"663728299215101952","text":"Wild Freak.. Need taming","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":46129355,"id_str":"46129355","name":"KING: PapiChulo","screen_name":"LOOTchi_","location":"seeking truth.. ","url":null,"description":"#LOOTchi #ModernJesus Diamond in the Rough! Wisdom Knowledge Understading. #C.omprehending R.eality E.mbracing A.mbitious M.oments. #AspiringCreativeExcellence","protected":false,"verified":false,"followers_count":1152,"friends_count":1573,"listed_count":6,"favourites_count":281,"statuses_count":51930,"created_at":"Wed Jun 10 14:52:47 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/429885280\/mj-IV-photoshoot.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/429885280\/mj-IV-photoshoot.jpg","profile_background_tile":true,"profile_link_color":"FC0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"171613","profile_text_color":"246B08","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/580463718561124352\/I5jhAFCQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/580463718561124352\/I5jhAFCQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/46129355\/1353809334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132665"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299181494272,"id_str":"663728299181494272","text":"\u2764\ufe0f\u2764\ufe0f\u2764\ufe0fpranzo felici di passarlo insieme... https:\/\/t.co\/rMoDbSihPz","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":471098764,"id_str":"471098764","name":"Antonio Augelli","screen_name":"AugelliAntonio","location":"Gassino Torinese","url":"http:\/\/www.wix.com\/antonioaugelli\/official","description":"Performer, Sputafuoco, ballerino - insegnante di #movida Fitness!","protected":false,"verified":false,"followers_count":130,"friends_count":161,"listed_count":1,"favourites_count":34,"statuses_count":5490,"created_at":"Sun Jan 22 14:03:11 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"030303","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/406655571\/blu3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/406655571\/blu3.jpg","profile_background_tile":false,"profile_link_color":"03C0FA","profile_sidebar_border_color":"0355FA","profile_sidebar_fill_color":"150359","profile_text_color":"1503E3","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635546546201853956\/jd-KjBR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635546546201853956\/jd-KjBR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/471098764\/1439021997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rMoDbSihPz","expanded_url":"http:\/\/fb.me\/7xShGeFf3","display_url":"fb.me\/7xShGeFf3","indices":[43,66]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080132657"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299181387776,"id_str":"663728299181387776","text":"RT @fxxnxxx: \u0e21\u0e32\u0e1a\u0e2d\u0e01\u0e43\u0e2b\u0e49\u0e40\u0e23\u0e32\u0e44\u0e1b\u0e42\u0e2b\u0e27\u0e15 mama \u0e43\u0e0a\u0e48\u0e21\u0e30 \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/NM8byC8CeH","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":975804716,"id_str":"975804716","name":"Neenoi_VIP","screen_name":"nee_neenoi","location":"Bangkok Thailand","url":null,"description":"VIP::\u0e23\u0e31\u0e01BIGBANG::GTOP\u0e0a\u0e34\u0e1b\u0e40\u0e1b\u0e2d\u0e23\u0e4c::\u0e23\u0e35\u0e2b\u0e19\u0e31\u0e01\u0e46\u0e46 \u0e0a\u0e2d\u0e1a\u0e17\u0e38\u0e01\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e17\u0e35\u0e48\u0e40\u0e01\u0e35\u0e48\u0e22\u0e27\u0e01\u0e31\u0e1a\u0e01\u0e32\u0e23\u0e41\u0e0b\u0e30555555555 The Wanted::Lawson::Imagine Dragons::R.N.M 36","protected":false,"verified":false,"followers_count":328,"friends_count":489,"listed_count":2,"favourites_count":8357,"statuses_count":18631,"created_at":"Wed Nov 28 10:10:09 +0000 2012","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000154117988\/luhi7Kxk.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000154117988\/luhi7Kxk.jpeg","profile_background_tile":true,"profile_link_color":"0C1938","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"FD8024","profile_text_color":"F65F32","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/483924849476108288\/RmbTFMan_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/483924849476108288\/RmbTFMan_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/975804716\/1443952331","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:03:39 +0000 2015","id":663688397421080576,"id_str":"663688397421080576","text":"\u0e21\u0e32\u0e1a\u0e2d\u0e01\u0e43\u0e2b\u0e49\u0e40\u0e23\u0e32\u0e44\u0e1b\u0e42\u0e2b\u0e27\u0e15 mama \u0e43\u0e0a\u0e48\u0e21\u0e30 \ud83d\ude02\ud83d\ude02 https:\/\/t.co\/NM8byC8CeH","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1172964114,"id_str":"1172964114","name":"\u0e08\u0e35\u0e22\u0e07\u0e15\u0e4b\u0e32\u0e32\u0e32\u0e32\u0e32\u0e32 (\u00b4\u0414` )\uff89","screen_name":"fxxnxxx","location":"VIP & iKONIC | GD & BOBBY","url":null,"description":"#\u0e43\u0e14\u0e46\u0e43\u0e19\u0e42\u0e25\u0e01\u0e17\u0e35\u0e48\u0e27\u0e48\u0e32\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e01\u0e47\u0e44\u0e21\u0e48\u0e19\u0e48\u0e32\u0e23\u0e31\u0e01\u0e40\u0e17\u0e48\u0e32\u0e04\u0e27\u0e2d\u0e19\u0e08\u0e35\u0e22\u0e07","protected":false,"verified":false,"followers_count":28013,"friends_count":303,"listed_count":26,"favourites_count":2864,"statuses_count":67147,"created_at":"Tue Feb 12 20:16:12 +0000 2013","utc_offset":25200,"time_zone":"Hanoi","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/634936467811250177\/OjvS_1Jg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/634936467811250177\/OjvS_1Jg.jpg","profile_background_tile":true,"profile_link_color":"F01175","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653079004686127104\/1htwUWty_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653079004686127104\/1htwUWty_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1172964114\/1441219717","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":317,"favorite_count":36,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663688395508420608,"id_str":"663688395508420608","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","url":"https:\/\/t.co\/NM8byC8CeH","display_url":"pic.twitter.com\/NM8byC8CeH","expanded_url":"http:\/\/twitter.com\/fxxnxxx\/status\/663688397421080576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":937,"resize":"fit"},"small":{"w":340,"h":531,"resize":"fit"},"large":{"w":720,"h":1125,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663688395508420608,"id_str":"663688395508420608","indices":[32,55],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","url":"https:\/\/t.co\/NM8byC8CeH","display_url":"pic.twitter.com\/NM8byC8CeH","expanded_url":"http:\/\/twitter.com\/fxxnxxx\/status\/663688397421080576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":937,"resize":"fit"},"small":{"w":340,"h":531,"resize":"fit"},"large":{"w":720,"h":1125,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fxxnxxx","name":"\u0e08\u0e35\u0e22\u0e07\u0e15\u0e4b\u0e32\u0e32\u0e32\u0e32\u0e32\u0e32 (\u00b4\u0414` )\uff89","id":1172964114,"id_str":"1172964114","indices":[3,11]}],"symbols":[],"media":[{"id":663688395508420608,"id_str":"663688395508420608","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","url":"https:\/\/t.co\/NM8byC8CeH","display_url":"pic.twitter.com\/NM8byC8CeH","expanded_url":"http:\/\/twitter.com\/fxxnxxx\/status\/663688397421080576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":937,"resize":"fit"},"small":{"w":340,"h":531,"resize":"fit"},"large":{"w":720,"h":1125,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663688397421080576,"source_status_id_str":"663688397421080576","source_user_id":1172964114,"source_user_id_str":"1172964114"}]},"extended_entities":{"media":[{"id":663688395508420608,"id_str":"663688395508420608","indices":[45,68],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXlFE_UEAAHhwZ.jpg","url":"https:\/\/t.co\/NM8byC8CeH","display_url":"pic.twitter.com\/NM8byC8CeH","expanded_url":"http:\/\/twitter.com\/fxxnxxx\/status\/663688397421080576\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":937,"resize":"fit"},"small":{"w":340,"h":531,"resize":"fit"},"large":{"w":720,"h":1125,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663688397421080576,"source_status_id_str":"663688397421080576","source_user_id":1172964114,"source_user_id_str":"1172964114"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080132657"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299210739713,"id_str":"663728299210739713","text":"Semestinya saja!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":592251835,"id_str":"592251835","name":"\u0251\u0251t","screen_name":"Fuad_Fakhrizal","location":"pkl - smg","url":null,"description":"Informatics Engineering '15","protected":false,"verified":false,"followers_count":248,"friends_count":105,"listed_count":1,"favourites_count":25,"statuses_count":5230,"created_at":"Mon May 28 00:06:19 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/542604507008335872\/kaWP1PS3.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/542604507008335872\/kaWP1PS3.jpeg","profile_background_tile":true,"profile_link_color":"FF00C4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662445200560623616\/Dgn7m6wM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662445200560623616\/Dgn7m6wM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/592251835\/1420091208","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080132664"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299185602560,"id_str":"663728299185602560","text":"@rtsusk73 \u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3042\u3082\u3046\u307b\u3093\u3068\u3046\u308c\u3057\u3044\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\uff01\uff01\uff01\uff01\u307b\u3093\u3068\u306b\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01\uff01\uff01\uff01\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727991730470913,"in_reply_to_status_id_str":"663727991730470913","in_reply_to_user_id":1896047473,"in_reply_to_user_id_str":"1896047473","in_reply_to_screen_name":"rtsusk73","user":{"id":2911865484,"id_str":"2911865484","name":"\u725b\u677e","screen_name":"a_ron1211","location":"\u30ed\u30a6\u30ea\u30d2\u306f\u4eba\u751f","url":"http:\/\/www.uchinokomato.me\/user\/show\/8496","description":"\u4e2d3\u3001\u59eb\u30ab\u30c3\u30c8\u3001maimai MAX\u30ec\u30fc\u30c8[10.98] (\u53d7\u9a13\u7d42\u307e\u3067\u4f11\u6b62) SERVAMP\u304c\u597d\u304d\u3002\u30ed\u30a6\u30ec\u30b9\u306f\u795e\uff01 \u30d8\u30c3\u30c0\u30fc\uff0f\u30a2\u30a4\u30b3\u30f3\u81ea\u4f5c\u3002 \u5275\u4f5c\u5927\u597d\u304d\u3057\u307e\u3059\u3002 \u53d7\u9a13\u7d42\u308f\u308b\u307e\u3067\u5e73\u65e5\u306f\u6d6e\u4e0a\u7387\u4e0b\u304c\u308a\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":206,"friends_count":201,"listed_count":7,"favourites_count":1282,"statuses_count":16161,"created_at":"Thu Nov 27 13:19:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661636095554129920\/b7oCXFuj_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661636095554129920\/b7oCXFuj_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2911865484\/1443319070","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rtsusk73","name":"\u8389\u6597","id":1896047473,"id_str":"1896047473","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132658"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206537217,"id_str":"663728299206537217","text":"@kyouka_bot \u304a\u304a\u306f\u3088\u3046\u3001\u3053\u3093\u306b\u3061\u306f\u3001\u3053\u3093\u3070\u3093\u306f\u3001\u304a\u3084\u3059\u307f\u3001\u5bdd\u308b\u3001\u307b\u304b\u308b\u3001\u6b7b\u306b\u305f\u3044\u3001\u6016\u3044\u3001\u304a\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\u3001\u5360\u3063\u3066\uff01 \u3044\u3063\u3066\u304d\u307e\u3059\u3001\u305f\u3060\u3044\u307e\u3001\u304a\u5e30\u308a\u3001\u306f\u3088\u3046\u3054\u3056\u3044\u307e\u3059\u3001\u5bdd\u308b\u3001\u304a\u98a8\u5442skjhsf","source":"\u003ca href=\"http:\/\/twirobo.com\/\" rel=\"nofollow\"\u003etwiroboJP\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663715692525453312,"in_reply_to_status_id_str":"663715692525453312","in_reply_to_user_id":123514705,"in_reply_to_user_id_str":"123514705","in_reply_to_screen_name":"kyouka_bot","user":{"id":3069715224,"id_str":"3069715224","name":"\u500b\u4eba\u60c5\u5831\u6f0f\u6d29BBA @myimai","screen_name":"summ0l2er","location":"\u2661\u02d6\ua4b0\u1d55\u0f1a\u1d55\u2445\ua4b1","url":null,"description":"\u30f2\u30c1\u3001\u611a\u75f4\u3001\u8a00\u3044\u305f\u3044\u4e8b\u3092\u8a00\u3046\u3002\u30b4\u30df\u305f\u3061\u2192@ane_oneichan @ssosstk @r5i5n5 @machida_0 @kan_na_ @rushiamisono","protected":false,"verified":false,"followers_count":1243,"friends_count":1995,"listed_count":2,"favourites_count":61,"statuses_count":121783,"created_at":"Mon Mar 09 12:51:58 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644134657139707906\/HgTywkS-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644134657139707906\/HgTywkS-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3069715224\/1441788014","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kyouka_bot","name":"\u4e09\u5d8b\u93e1\u82b1","id":123514705,"id_str":"123514705","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299206574081,"id_str":"663728299206574081","text":"I won't. I'm sorry about yesterday. I still love you. I love you more than you know. @xbsinth \u007b\u007d https:\/\/t.co\/qNdFAS60y5","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3268678328,"id_str":"3268678328","name":"\u8c37\u6751\u88d5\u5b50 \u3161 Yuko","screen_name":"adcrexyou","location":"\u3014K.Eunha, Y.Yuta, H.Jaewon\u3015","url":null,"description":"\u275dDeira, Melvin, and @xbsinth's.\u275e \u3161 [twice's momo\/fx's krystal fc] \u8c37\u6751 \u88d5\u5b50 ; Tanimura Yuko\u3014ocrp - fl - au - mv\u3015","protected":false,"verified":false,"followers_count":335,"friends_count":559,"listed_count":1,"favourites_count":541,"statuses_count":6584,"created_at":"Sun Jul 05 03:39:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663035800213262336\/lsacGkwJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663035800213262336\/lsacGkwJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3268678328\/1444755145","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663714554384396288,"quoted_status_id_str":"663714554384396288","quoted_status":{"created_at":"Mon Nov 09 13:47:35 +0000 2015","id":663714554384396288,"id_str":"663714554384396288","text":"#menfess to @adcrexyou don't leave me, please","source":"\u003ca href=\"https:\/\/roundteam.co\" rel=\"nofollow\"\u003eRoundTeam\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2479658564,"id_str":"2479658564","name":"Baka.","screen_name":"Baka2Menfess","location":"Problem? Cek Fav! \u256e(||\uff9f\u0414\uff9f)\u256d","url":"http:\/\/baka2menfess.tumblr.com\/archive","description":"Jasa menfess tercepat yang pernah ada di rpw! ( \u3064,,\u2022\u03c9\u2022,,)\u3064 anda dm \u2192 langsung kita kirim! buktikan! (\u25cf^\u2200^\u25cf) [AUTO MENFESS]","protected":false,"verified":false,"followers_count":19820,"friends_count":16744,"listed_count":19,"favourites_count":7,"statuses_count":143627,"created_at":"Tue May 06 11:06:32 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623357047975772160\/id1brK85.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623357047975772160\/id1brK85.jpg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662630995049340929\/mYf05Cjs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662630995049340929\/mYf05Cjs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2479658564\/1446818545","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"menfess","indices":[0,8]}],"urls":[],"user_mentions":[{"screen_name":"adcrexyou","name":"\u8c37\u6751\u88d5\u5b50 \u3161 Yuko","id":3268678328,"id_str":"3268678328","indices":[12,22]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qNdFAS60y5","expanded_url":"https:\/\/twitter.com\/Baka2Menfess\/status\/663714554384396288","display_url":"twitter.com\/Baka2Menfess\/s\u2026","indices":[97,120]}],"user_mentions":[{"screen_name":"xbsinth","name":"\u7d14\u90ce; Junichiro","id":3092707893,"id_str":"3092707893","indices":[85,93]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132663"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202449408,"id_str":"663728299202449408","text":"Picture Gallery: https:\/\/t.co\/88Rdy6rdNa #celebrities #bigtits #nsfw #sexy #blonde #celebrity","source":"\u003ca href=\"http:\/\/gm.big-tits-model.com\" rel=\"nofollow\"\u003eGirlfriend Melons\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3257820409,"id_str":"3257820409","name":"Girlfriend Melons","screen_name":"girlfriendmelon","location":"Everywhere","url":"http:\/\/gm.big-tits-model.com","description":"Vids and Pics of Hot Ex-GFs and Amateur Teens with Massive Melons","protected":false,"verified":false,"followers_count":1063,"friends_count":1990,"listed_count":63,"favourites_count":4,"statuses_count":75834,"created_at":"Sat Jun 27 13:21:59 +0000 2015","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614787116636114945\/iK0cTiz0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614787116636114945\/iK0cTiz0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3257820409\/1435411665","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"celebrities","indices":[41,53]},{"text":"bigtits","indices":[54,62]},{"text":"nsfw","indices":[63,68]},{"text":"sexy","indices":[69,74]},{"text":"blonde","indices":[75,82]},{"text":"celebrity","indices":[83,93]}],"urls":[{"url":"https:\/\/t.co\/88Rdy6rdNa","expanded_url":"http:\/\/bit.ly\/1WIzNWw","display_url":"bit.ly\/1WIzNWw","indices":[17,40]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189800960,"id_str":"663728299189800960","text":"RT @hkz_jet: \u4e16\u76f4\u3057\u4f8d \u91ce\u7530\u8349\u5c65\n\u76d7\u4f5c\u30b9\u30c6\u30c3\u30ab\u30fc\u8ca9\u58f2\u306b\u5bfe\u3059\u308b\u3053\u3053\u307e\u3067\u306e\u5bfe\u5fdc https:\/\/t.co\/p0GRXSPIAM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2952374053,"id_str":"2952374053","name":"YokoyamadaiouN1","screen_name":"YokoyamadaiouN1","location":null,"url":null,"description":"\u30cb\u30b3\u751f2\u5e74\u76ee\u3067\u3059\u3002\u4e3b\u306b\u6a2a\u5c71\u7dd1\u6c0f\u3001\u91ce\u7530\u6c0f\u3001\u68ee\u6c0f\u3001\u305d\u306e\u4ed6\u3082\u308d\u3082\u308d\u306e\u751f\u4e3b\u3092\u62dd\u898b\u3057\u3066\u3044\u307e\u3059\u3002\u4fef\u77b0\uff08\u3075\u304b\u3093\uff09\u3067\u751f\u4e3b\u3092\u898b\u3066\u3044\u304d\u307e\u3059\u3002\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002m(_ _)m","protected":false,"verified":false,"followers_count":1104,"friends_count":2017,"listed_count":9,"favourites_count":27323,"statuses_count":9175,"created_at":"Tue Dec 30 16:34:09 +0000 2014","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643449151963815936\/zyQsvxjU_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643449151963815936\/zyQsvxjU_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2952374053\/1442245227","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 00:41:42 +0000 2015","id":663516780376158208,"id_str":"663516780376158208","text":"\u4e16\u76f4\u3057\u4f8d \u91ce\u7530\u8349\u5c65\n\u76d7\u4f5c\u30b9\u30c6\u30c3\u30ab\u30fc\u8ca9\u58f2\u306b\u5bfe\u3059\u308b\u3053\u3053\u307e\u3067\u306e\u5bfe\u5fdc https:\/\/t.co\/p0GRXSPIAM","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":189903475,"id_str":"189903475","name":"\u220b\u661f\u5c51JET\u2208","screen_name":"hkz_jet","location":"\u21e9\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8","url":"http:\/\/twilog.org\/hkz_jet","description":"\u30cb\u30b3\u751f\u96d1\u8ac7\u95a2\u9023\u306e\u60c5\u5831\u30cd\u30bf","protected":false,"verified":false,"followers_count":8466,"friends_count":7354,"listed_count":187,"favourites_count":422,"statuses_count":8017,"created_at":"Sun Sep 12 15:09:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/545995964599644160\/GGV3_mFG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/545995964599644160\/GGV3_mFG.jpeg","profile_background_tile":true,"profile_link_color":"00BFFF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000282771024\/0d0a9bd307fe4e7cd6b06cd3a0017580_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000282771024\/0d0a9bd307fe4e7cd6b06cd3a0017580_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/189903475\/1389634228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":32,"favorite_count":31,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663516779063324673,"id_str":"663516779063324673","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","url":"https:\/\/t.co\/p0GRXSPIAM","display_url":"pic.twitter.com\/p0GRXSPIAM","expanded_url":"http:\/\/twitter.com\/hkz_jet\/status\/663516780376158208\/photo\/1","type":"photo","sizes":{"large":{"w":546,"h":562,"resize":"fit"},"small":{"w":340,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":546,"h":562,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663516779063324673,"id_str":"663516779063324673","indices":[31,54],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","url":"https:\/\/t.co\/p0GRXSPIAM","display_url":"pic.twitter.com\/p0GRXSPIAM","expanded_url":"http:\/\/twitter.com\/hkz_jet\/status\/663516780376158208\/photo\/1","type":"photo","sizes":{"large":{"w":546,"h":562,"resize":"fit"},"small":{"w":340,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":546,"h":562,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hkz_jet","name":"\u220b\u661f\u5c51JET\u2208","id":189903475,"id_str":"189903475","indices":[3,11]}],"symbols":[],"media":[{"id":663516779063324673,"id_str":"663516779063324673","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","url":"https:\/\/t.co\/p0GRXSPIAM","display_url":"pic.twitter.com\/p0GRXSPIAM","expanded_url":"http:\/\/twitter.com\/hkz_jet\/status\/663516780376158208\/photo\/1","type":"photo","sizes":{"large":{"w":546,"h":562,"resize":"fit"},"small":{"w":340,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":546,"h":562,"resize":"fit"}},"source_status_id":663516780376158208,"source_status_id_str":"663516780376158208","source_user_id":189903475,"source_user_id_str":"189903475"}]},"extended_entities":{"media":[{"id":663516779063324673,"id_str":"663516779063324673","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVI_r6UsAEQCK3.jpg","url":"https:\/\/t.co\/p0GRXSPIAM","display_url":"pic.twitter.com\/p0GRXSPIAM","expanded_url":"http:\/\/twitter.com\/hkz_jet\/status\/663516780376158208\/photo\/1","type":"photo","sizes":{"large":{"w":546,"h":562,"resize":"fit"},"small":{"w":340,"h":349,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":546,"h":562,"resize":"fit"}},"source_status_id":663516780376158208,"source_status_id_str":"663516780376158208","source_user_id":189903475,"source_user_id_str":"189903475"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299198169088,"id_str":"663728299198169088","text":"@kuh3_des \u59cb\u3055\u3093\uff01\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725982990270464,"in_reply_to_status_id_str":"663725982990270464","in_reply_to_user_id":1356701048,"in_reply_to_user_id_str":"1356701048","in_reply_to_screen_name":"kuh3_des","user":{"id":3280553023,"id_str":"3280553023","name":"\u67da\u9999","screen_name":"yurumogu0907","location":"\u30c4\u30ad\u30ce\u5bee","url":null,"description":"\u6210\u4eba\u6e08\u3002\u3046\u305f\u30d7\u30ea\/\u30c4\u30ad\u30a6\u30bf\u3002\/\u30e9\u30d6\u30e9\u30a4\u30d6\/\u30d6\u30e9\u30b3\u30f3\u3092\u4e3b\u306b\u3057\u3066\u305f\u308a\u3042\u3093\u30b9\u30bf\/\u541b\u50d5\u3082\u3084\u308b\u4e88\u5b9a \u30a2\u30a4\u30c1\u30e5\u30a6\/\u30a2\u30a4\u30ca\u30ca\u3082\u597d\u304d\u3067\u3059\u3002\u597d\u304d\u306a\u4f5c\u54c1\u5408\u3046\u65b9\u305c\u3072\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044(*\u00b4\ua4b3`*)\u266b","protected":false,"verified":false,"followers_count":139,"friends_count":160,"listed_count":15,"favourites_count":85,"statuses_count":4061,"created_at":"Wed Jul 15 10:19:07 +0000 2015","utc_offset":32400,"time_zone":"JST","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663715236537479171\/X3d9QThi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663715236537479171\/X3d9QThi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3280553023\/1444593002","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kuh3_des","name":"\u304f\u3046","id":1356701048,"id_str":"1356701048","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132661"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299194114048,"id_str":"663728299194114048","text":"RT @JuanBernardoL: Los j\u00f3venes de @MaximAccion35AP continuaremos respaldando a @MashiRafael a @marcelaguinaga y @35PAIS #YoSoyAP https:\/\/t.\u2026","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3659359695,"id_str":"3659359695","name":"ligia moran ","screen_name":"0959070338Ligia","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":3,"friends_count":79,"listed_count":0,"favourites_count":1,"statuses_count":1374,"created_at":"Tue Sep 15 02:43:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643616533248352256\/nSh0bX9D_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643616533248352256\/nSh0bX9D_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:40 +0000 2015","id":663722881466155008,"id_str":"663722881466155008","text":"Los j\u00f3venes de @MaximAccion35AP continuaremos respaldando a @MashiRafael a @marcelaguinaga y @35PAIS #YoSoyAP https:\/\/t.co\/s8IHQExK7r","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":244669454,"id_str":"244669454","name":"Juan Bernardo Lucero","screen_name":"JuanBernardoL","location":"Guayaquil - Ecuador","url":"http:\/\/www.facebook.com\/julusu","description":"Comunicador, Community Manager, J\u00f3ven empresario guayaquile\u00f1o, Coord.De Comunicaci\u00f3n de @MaximAccion35AP","protected":false,"verified":false,"followers_count":621,"friends_count":937,"listed_count":4,"favourites_count":1344,"statuses_count":3744,"created_at":"Sat Jan 29 21:19:34 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000163667932\/w0UEmzWC.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/620449329661263872\/B0GJNj_B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/244669454\/1436761479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":83,"favorite_count":0,"entities":{"hashtags":[{"text":"YoSoyAP","indices":[101,109]}],"urls":[],"user_mentions":[{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[15,31]},{"screen_name":"MashiRafael","name":"Rafael Correa","id":209780362,"id_str":"209780362","indices":[60,72]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[75,90]},{"screen_name":"35PAIS","name":"ALIANZA PAIS","id":267939039,"id_str":"267939039","indices":[93,100]}],"symbols":[],"media":[{"id":663722878735687685,"id_str":"663722878735687685","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","url":"https:\/\/t.co\/s8IHQExK7r","display_url":"pic.twitter.com\/s8IHQExK7r","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663722881466155008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":600,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722878735687685,"id_str":"663722878735687685","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","url":"https:\/\/t.co\/s8IHQExK7r","display_url":"pic.twitter.com\/s8IHQExK7r","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663722881466155008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":600,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"YoSoyAP","indices":[120,128]}],"urls":[],"user_mentions":[{"screen_name":"JuanBernardoL","name":"Juan Bernardo Lucero","id":244669454,"id_str":"244669454","indices":[3,17]},{"screen_name":"MaximAccion35AP","name":"CRC-MaximAccion35AP","id":2847429580,"id_str":"2847429580","indices":[34,50]},{"screen_name":"MashiRafael","name":"Rafael Correa","id":209780362,"id_str":"209780362","indices":[79,91]},{"screen_name":"marcelaguinaga","name":"Marcela Agui\u00f1aga","id":285137536,"id_str":"285137536","indices":[94,109]},{"screen_name":"35PAIS","name":"ALIANZA PAIS","id":267939039,"id_str":"267939039","indices":[112,119]}],"symbols":[],"media":[{"id":663722878735687685,"id_str":"663722878735687685","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","url":"https:\/\/t.co\/s8IHQExK7r","display_url":"pic.twitter.com\/s8IHQExK7r","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663722881466155008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":600,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}},"source_status_id":663722881466155008,"source_status_id_str":"663722881466155008","source_user_id":244669454,"source_user_id_str":"244669454"}]},"extended_entities":{"media":[{"id":663722878735687685,"id_str":"663722878735687685","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEcRBXIAU82A0.jpg","url":"https:\/\/t.co\/s8IHQExK7r","display_url":"pic.twitter.com\/s8IHQExK7r","expanded_url":"http:\/\/twitter.com\/JuanBernardoL\/status\/663722881466155008\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":243,"resize":"fit"},"large":{"w":600,"h":430,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":430,"resize":"fit"}},"source_status_id":663722881466155008,"source_status_id_str":"663722881466155008","source_user_id":244669454,"source_user_id_str":"244669454"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132660"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189796865,"id_str":"663728299189796865","text":"Odio caer en las sugerencias de noticias de Siri. #Clickitis","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":184615080,"id_str":"184615080","name":"Just Dany ","screen_name":"pegatinaa","location":"Mexico D.F.","url":"http:\/\/pegatinaa.com","description":"Apasionada del MKT Digital y redes sociales, fan de los libros, Starbucks y las compras. Una viajera so\u00f1adora de coraz\u00f3n.","protected":false,"verified":false,"followers_count":613,"friends_count":298,"listed_count":44,"favourites_count":1335,"statuses_count":8705,"created_at":"Mon Aug 30 01:19:04 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/664089952\/1f007ffb001b8a3dfcb805d8ca88f66b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/664089952\/1f007ffb001b8a3dfcb805d8ca88f66b.jpeg","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E6F6F9","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627188549968752640\/wI_ViXCw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627188549968752640\/wI_ViXCw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/184615080\/1438370388","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Clickitis","indices":[50,60]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189780480,"id_str":"663728299189780480","text":"RT @Haikyu0427: \u4e8c\u4eba\u3068\u3082\u3081\u3061\u3083\u304f\u3061\u3083\u5927\u597d\u304d\uff01\uff01\n\u30a4\u30e9\u30b9\u30c8\u63cf\u3051\u305f\u3089\u660e\u65e5\u6295\u7a3f\u3057\u307e\u3059\u263a\ufe0f\n#\u5c71\u53e3\u5fe0\u751f\u8a95\u796d2015\n#\u4e8c\u53e3\u8ce2\u6cbb\u751f\u8a95\u796d2015\n#\u30cf\u30a4\u30ad\u30e5\u30fc\u30af\u30e9\u30b9\u30bf\u3055\u3093\u304c\u30d0\u30c3\u3066RT\u3057\u3066\u304d\u3066\u30b0\u30ef\u30c3\u3066\u7e4b\u304c\u308b\u4e0d\u601d\u8b70\u306a\u30bf\u30b0 \n#RT\u3057\u305f\u3072\u3068\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2739317647,"id_str":"2739317647","name":"\u307e\u304a","screen_name":"maoteru_ai","location":"\u90a3\u6708\u306e\u51fa\u8eab\u5730\u2603\u3002\u85cd\u3068\u7fd4\u306e\u96a3\u3002","url":null,"description":"\u4e2d3\u3002\u30a2\u30cb\u30e1\u3002\u58f0\u512a\u3002\u3046\u305f\u30d7\u30ea\u3002\u30c7\u30a3\u30a2\u30e9\u30d0\u3002\u3042\u3093\u30b9\u30bf\u3002\u8150\u3002\u2661\u2026\u85cd\u3001\u7fd4\u3001\u30ae\u30fc\u30f4\u3001\u4f50\u75ab\u3001\u5e73\u8179\u3001\u9006\u5dfb\u3001\u771f\u7dd2\u304f\u3093\u3001\u3072\u306a\u305f\u304f\u3093\u3001\u3086\u3046\u305f\u304f\u3093 \u30d5\u30a9\u30ed\u30fc\u306e\u969b\u306f\u2192 http:\/\/twpf.jp\/maoteru_ai","protected":false,"verified":false,"followers_count":906,"friends_count":1062,"listed_count":7,"favourites_count":3763,"statuses_count":7607,"created_at":"Sun Aug 17 08:15:51 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000044","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655252772737036288\/gBsYchVS.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655252772737036288\/gBsYchVS.jpg","profile_background_tile":false,"profile_link_color":"000044","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655371383937982464\/ytrhtFVO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655371383937982464\/ytrhtFVO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2739317647\/1446553613","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:17:32 +0000 2015","id":663706992645541888,"id_str":"663706992645541888","text":"\u4e8c\u4eba\u3068\u3082\u3081\u3061\u3083\u304f\u3061\u3083\u5927\u597d\u304d\uff01\uff01\n\u30a4\u30e9\u30b9\u30c8\u63cf\u3051\u305f\u3089\u660e\u65e5\u6295\u7a3f\u3057\u307e\u3059\u263a\ufe0f\n#\u5c71\u53e3\u5fe0\u751f\u8a95\u796d2015\n#\u4e8c\u53e3\u8ce2\u6cbb\u751f\u8a95\u796d2015\n#\u30cf\u30a4\u30ad\u30e5\u30fc\u30af\u30e9\u30b9\u30bf\u3055\u3093\u304c\u30d0\u30c3\u3066RT\u3057\u3066\u304d\u3066\u30b0\u30ef\u30c3\u3066\u7e4b\u304c\u308b\u4e0d\u601d\u8b70\u306a\u30bf\u30b0 \n#RT\u3057\u305f\u3072\u3068\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b https:\/\/t.co\/oPFwNDOqGu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3766044073,"id_str":"3766044073","name":"\u304a\u3068\u307c\u3051 \u901a\u4fe1\u5236\u9650\u3067\u4f4e\u6d6e\u4e0a","screen_name":"Haikyu0427","location":"\u9752\u8449\u57ce\u897f\u9ad8\u6821 \u90e8\u5ba4","url":null,"description":"18\u2212\/\u30a2\u30cb\u30e1:\u6f2b\u753b\u5927\u597d\u304d\u3067\u3059\/\u30cf\u30a4\u30ad\u30e5\u30fc\u203c\ufe0e\/\u6771\u4eac\u55b0\u7a2e\/ \u4e03\u3064\u306e\u5927\u7f6a\/Free\u203c\ufe0e\/K\/\u91ce\u5d0e\u304f\u3093\/\u30ab\u30b2\u30d7\u30ed\/\u3046\u305f\u30d7\u30ea\/\u30c7\u30a3\u30a2\u30e9\u30d0\/\u3046\u307e\u308b\/HQ\u30af\u30e9\u30b9\u30bf\/\u30dc\u30ab\u30ed\u30fb\u6b4c\u3044\u624b\u3055\u3093\u3082\u5927\u597d\u304d\u3067\u3059\/\u7d75\u63cf\u304d\u3082\u6642\u3005\/\u30d5\u30a9\u30ed\u30fc\u6c17\u8efd\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u263a\ufe0e","protected":false,"verified":false,"followers_count":512,"friends_count":544,"listed_count":5,"favourites_count":280,"statuses_count":602,"created_at":"Sat Oct 03 03:53:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663344078663249921\/ey8Oi6LL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663344078663249921\/ey8Oi6LL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3766044073\/1443853937","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":35,"favorite_count":27,"entities":{"hashtags":[{"text":"\u5c71\u53e3\u5fe0\u751f\u8a95\u796d2015","indices":[34,45]},{"text":"\u4e8c\u53e3\u8ce2\u6cbb\u751f\u8a95\u796d2015","indices":[46,58]},{"text":"\u30cf\u30a4\u30ad\u30e5\u30fc\u30af\u30e9\u30b9\u30bf\u3055\u3093\u304c\u30d0\u30c3\u3066RT\u3057\u3066\u304d\u3066\u30b0\u30ef\u30c3\u3066\u7e4b\u304c\u308b\u4e0d\u601d\u8b70\u306a\u30bf\u30b0","indices":[59,94]},{"text":"RT\u3057\u305f\u3072\u3068\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[96,111]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663706975033659393,"id_str":"663706975033659393","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"large":{"w":361,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":361,"h":407,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663706975033659393,"id_str":"663706975033659393","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"large":{"w":361,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":361,"h":407,"resize":"fit"}}},{"id":663706975130136577,"id_str":"663706975130136577","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jeUsAEuySL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jeUsAEuySL.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}}},{"id":663706975121727488,"id_str":"663706975121727488","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jcUYAA-15G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jcUYAA-15G.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":267,"resize":"fit"},"medium":{"w":600,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":754,"resize":"fit"}}},{"id":663706975218241536,"id_str":"663706975218241536","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jzVEAAkalF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jzVEAAkalF.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"large":{"w":389,"h":252,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":389,"h":252,"resize":"fit"},"small":{"w":340,"h":220,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u5c71\u53e3\u5fe0\u751f\u8a95\u796d2015","indices":[50,61]},{"text":"\u4e8c\u53e3\u8ce2\u6cbb\u751f\u8a95\u796d2015","indices":[62,74]},{"text":"\u30cf\u30a4\u30ad\u30e5\u30fc\u30af\u30e9\u30b9\u30bf\u3055\u3093\u304c\u30d0\u30c3\u3066RT\u3057\u3066\u304d\u3066\u30b0\u30ef\u30c3\u3066\u7e4b\u304c\u308b\u4e0d\u601d\u8b70\u306a\u30bf\u30b0","indices":[75,110]},{"text":"RT\u3057\u305f\u3072\u3068\u5168\u54e1\u30d5\u30a9\u30ed\u30fc\u3059\u308b","indices":[112,127]}],"urls":[],"user_mentions":[{"screen_name":"Haikyu0427","name":"\u304a\u3068\u307c\u3051 \u901a\u4fe1\u5236\u9650\u3067\u4f4e\u6d6e\u4e0a","id":3766044073,"id_str":"3766044073","indices":[3,14]}],"symbols":[],"media":[{"id":663706975033659393,"id_str":"663706975033659393","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"large":{"w":361,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":361,"h":407,"resize":"fit"}},"source_status_id":663706992645541888,"source_status_id_str":"663706992645541888","source_user_id":3766044073,"source_user_id_str":"3766044073"}]},"extended_entities":{"media":[{"id":663706975033659393,"id_str":"663706975033659393","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jHUkAEjHLK.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":383,"resize":"fit"},"large":{"w":361,"h":407,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":361,"h":407,"resize":"fit"}},"source_status_id":663706992645541888,"source_status_id_str":"663706992645541888","source_user_id":3766044073,"source_user_id_str":"3766044073"},{"id":663706975130136577,"id_str":"663706975130136577","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jeUsAEuySL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jeUsAEuySL.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"medium":{"w":512,"h":288,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":512,"h":288,"resize":"fit"}},"source_status_id":663706992645541888,"source_status_id_str":"663706992645541888","source_user_id":3766044073,"source_user_id_str":"3766044073"},{"id":663706975121727488,"id_str":"663706975121727488","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jcUYAA-15G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jcUYAA-15G.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":267,"resize":"fit"},"medium":{"w":600,"h":471,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":960,"h":754,"resize":"fit"}},"source_status_id":663706992645541888,"source_status_id_str":"663706992645541888","source_user_id":3766044073,"source_user_id_str":"3766044073"},{"id":663706975218241536,"id_str":"663706975218241536","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX1-jzVEAAkalF.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX1-jzVEAAkalF.jpg","url":"https:\/\/t.co\/oPFwNDOqGu","display_url":"pic.twitter.com\/oPFwNDOqGu","expanded_url":"http:\/\/twitter.com\/Haikyu0427\/status\/663706992645541888\/photo\/1","type":"photo","sizes":{"large":{"w":389,"h":252,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":389,"h":252,"resize":"fit"},"small":{"w":340,"h":220,"resize":"fit"}},"source_status_id":663706992645541888,"source_status_id_str":"663706992645541888","source_user_id":3766044073,"source_user_id_str":"3766044073"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299202363392,"id_str":"663728299202363392","text":"\u9593\u9055\u3063\u3066\u30df\u30eb\u30af\u30d4\u30f3\u30af\u30bb\u30fc\u30e9\u30fc\u30d9\u30b9\u30c82\u679a\u8cb7\u3063\u3066\u3057\u307e\u3063\u305f\u2026\u30dc\u30c8\u30e0\u30b9\u304f\u308c\u2026","source":"\u003ca href=\"http:\/\/tapbots.com\/tweetbot\" rel=\"nofollow\"\u003eTweetbot for i\u039fS\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":80331303,"id_str":"80331303","name":"\u305f\u306a\u304b\u9ea6","screen_name":"oplant","location":"\u30d1\u30e9\u5bbf","url":"http:\/\/oplant.tumblr.com\/","description":"\u3080\u3066\u304d\u306e\u30a2\u30a4\u30c9\u30eb\u3001\u30a4\u30f3\u30b0\u30ec\u30b9\u9752\u3001\u6700\u8fd1\u306f\u539f\u5bbf\u306e\u304a\u5e97PARK\uff08http:\/\/www.park-harajuku.com\/\uff09\u306e\u30ad\u30e3\u30e9\u30af\u30bf\u30fc\u3092\u63cf\u3044\u3066\u3044\u307e\u3059 \u3002\u304a\u4ed5\u4e8b\u306e\u4f9d\u983c\u306fPARK\u306e\u30d5\u30a9\u30fc\u30e0\uff08http:\/\/www.park-harajuku.com\/contact\/\uff09\u304b\u3089\u304a\u9858\u3044\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":989,"friends_count":744,"listed_count":36,"favourites_count":42415,"statuses_count":103874,"created_at":"Tue Oct 06 15:41:13 +0000 2009","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/510332631888564224\/xhhTNMd_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/510332631888564224\/xhhTNMd_.jpeg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584424148102844416\/MxyaQgeZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584424148102844416\/MxyaQgeZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/80331303\/1433570692","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132662"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299219140608,"id_str":"663728299219140608","text":"RT @_nadjaalara: @sinongkit @jas_aeron unang question sakin pa naman yun ma'am \ud83d\ude02 nilagay ko pa si baymax at hello kitty =))))","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":419193467,"id_str":"419193467","name":"Shahrbano Apdell","screen_name":"zinujed","location":"US","url":null,"description":"My favorite movies - [movies] and [movies]. Describe myself - impetuous,hateful and loathsome.","protected":false,"verified":false,"followers_count":1165,"friends_count":126,"listed_count":4,"favourites_count":0,"statuses_count":2142,"created_at":"Wed Nov 23 02:25:28 +0000 2011","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1658924900\/16_normal.gif","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1658924900\/16_normal.gif","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:24 +0000 2015","id":663726837428719616,"id_str":"663726837428719616","text":"@sinongkit @jas_aeron unang question sakin pa naman yun ma'am \ud83d\ude02 nilagay ko pa si baymax at hello kitty =))))","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726712757202944,"in_reply_to_status_id_str":"663726712757202944","in_reply_to_user_id":77376813,"in_reply_to_user_id_str":"77376813","in_reply_to_screen_name":"sinongkit","user":{"id":86907384,"id_str":"86907384","name":"Alara\u2728","screen_name":"_nadjaalara","location":"Thomasian \u2022 IICS","url":"http:\/\/Instagram.com\/_nadjaalara","description":"striving beyond the limits of the possible","protected":false,"verified":false,"followers_count":751,"friends_count":392,"listed_count":0,"favourites_count":15371,"statuses_count":57124,"created_at":"Mon Nov 02 09:26:46 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/612267646394851329\/Xf2e7j70.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/612267646394851329\/Xf2e7j70.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655453068159422464\/B5vA3oZL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655453068159422464\/B5vA3oZL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/86907384\/1444433934","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sinongkit","name":"M","id":77376813,"id_str":"77376813","indices":[0,10]},{"screen_name":"jas_aeron","name":"Jasper Limon","id":336468249,"id_str":"336468249","indices":[11,21]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_nadjaalara","name":"Alara\u2728","id":86907384,"id_str":"86907384","indices":[3,15]},{"screen_name":"sinongkit","name":"M","id":77376813,"id_str":"77376813","indices":[17,27]},{"screen_name":"jas_aeron","name":"Jasper Limon","id":336468249,"id_str":"336468249","indices":[28,38]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080132666"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299189796864,"id_str":"663728299189796864","text":"\u30b7\u30e5\u30ac\u30eb\u30f3\u306b\u51fa\u3066\u304f\u308b\u98df\u3079\u7269\u30671\u4f4d2\u3092\u4e89\u3046\u3050\u3089\u3044\u7f8e\u5473\u3057\u305d\u3046\u306a\u30c1\u30e7\u30b3\u3068\u30b7\u30ca\u30e2\u30f3\u306e\u30a2\u30a4\u30b9 \u30a6\u30a8\u30cf\u30fc\u30b9\u306f\u30e9\u30ba\u30d9\u30ea\u30fc\u5473\ud83c\udf66\ud83d\udc95\n#\u30b7\u30e5\u30ac\u30b7\u30e5\u30ac\u30eb\u30fc\u30f3 https:\/\/t.co\/jNnDQPJFYA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603704563,"id_str":"603704563","name":"\u30ed\u30fc\u30b9\u30c8\u30d3\u30d5\u5b50\u2661\u30b7\u30e5\u30ac\u30eb\u30f3\u5fa9\u6d3b\u796d","screen_name":"Talos0525","location":"\u5343\u8449","url":null,"description":"\u300astatus\u300b\u3064\u3076\u3084\u304d\u591a\u3081\uff08\uff8c\uff6b\uff9b-\u6ce8\u610f\uff6520\u6b73\u2640 \u300alike\u300b\uff91-\uff90\uff9d\uff65\uff8e\uff97-\uff79\uff9e-\uff91\uff65\u5b89\u91ce\uff93\uff96\uff7a\u5148\u751f\u300aetc\u300b\uff9b-\uff7d\uff84\uff8b\uff9e-\uff8c\u4e3c\u3092\u98df\u3079\u308b\u307e\u3067\u6b7b\u306d\u306a\u3044\/\u6355\u98df\u306f\u7a76\u6975\u306e\uff74\uff9b\uff7c\uff7d\uff9e\uff91\n\u203bTalos\u304b\u3089\u6539\u540d\u3057\u307e\u3057\u305f\u3002\u628a\u63e1\u304a\u9858\u3044\u3057\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":729,"friends_count":739,"listed_count":4,"favourites_count":929,"statuses_count":11675,"created_at":"Sat Jun 09 15:40:58 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662896310819774464\/rlYiJSXh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662896310819774464\/rlYiJSXh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603704563\/1446907597","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30b7\u30e5\u30ac\u30b7\u30e5\u30ac\u30eb\u30fc\u30f3","indices":[57,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728258232401920,"id_str":"663728258232401920","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVZNUwAAQ86f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVZNUwAAQ86f.jpg","url":"https:\/\/t.co\/jNnDQPJFYA","display_url":"pic.twitter.com\/jNnDQPJFYA","expanded_url":"http:\/\/twitter.com\/Talos0525\/status\/663728299189796864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728258232401920,"id_str":"663728258232401920","indices":[68,91],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVZNUwAAQ86f.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVZNUwAAQ86f.jpg","url":"https:\/\/t.co\/jNnDQPJFYA","display_url":"pic.twitter.com\/jNnDQPJFYA","expanded_url":"http:\/\/twitter.com\/Talos0525\/status\/663728299189796864\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":618,"resize":"fit"},"small":{"w":340,"h":205,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":362,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080132659"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299214897152,"id_str":"663728299214897152","text":"Steal the #Style: SPECTRE https:\/\/t.co\/qSRKYjQ1hl https:\/\/t.co\/P4HJpfK5Cl","source":"\u003ca href=\"http:\/\/cltmy0222.webs.com\" rel=\"nofollow\"\u003eCltMy0222701\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3314157577,"id_str":"3314157577","name":"Cleta Mey","screen_name":"CltMy0222","location":null,"url":null,"description":"News addict | Meditator | Performance Artist | Mystery lover | Counselor","protected":false,"verified":false,"followers_count":95,"friends_count":1103,"listed_count":17,"favourites_count":87,"statuses_count":1971,"created_at":"Thu Aug 13 07:18:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631727580605890561\/H31IkCDd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631727580605890561\/H31IkCDd_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Style","indices":[10,16]}],"urls":[{"url":"https:\/\/t.co\/qSRKYjQ1hl","expanded_url":"http:\/\/jewl.me\/sc6g3","display_url":"jewl.me\/sc6g3","indices":[26,49]}],"user_mentions":[],"symbols":[],"media":[{"id":663728298912944133,"id_str":"663728298912944133","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXwwUkAUEEy7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXwwUkAUEEy7.jpg","url":"https:\/\/t.co\/P4HJpfK5Cl","display_url":"pic.twitter.com\/P4HJpfK5Cl","expanded_url":"http:\/\/twitter.com\/CltMy0222\/status\/663728299214897152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728298912944133,"id_str":"663728298912944133","indices":[50,73],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXwwUkAUEEy7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXwwUkAUEEy7.jpg","url":"https:\/\/t.co\/P4HJpfK5Cl","display_url":"pic.twitter.com\/P4HJpfK5Cl","expanded_url":"http:\/\/twitter.com\/CltMy0222\/status\/663728299214897152\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080132665"} +{"created_at":"Mon Nov 09 14:42:12 +0000 2015","id":663728299198279680,"id_str":"663728299198279680","text":"@iFaridoon sirf Dialogues or photos se hi pait bharoge?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727945115172865,"in_reply_to_status_id_str":"663727945115172865","in_reply_to_user_id":1217017676,"in_reply_to_user_id_str":"1217017676","in_reply_to_screen_name":"iFaridoon","user":{"id":2346732098,"id_str":"2346732098","name":"$!\u00d1!$\u0162\u20ac\u0158","screen_name":"ZoebSrk_57","location":null,"url":null,"description":"M the Devil...:)","protected":false,"verified":false,"followers_count":366,"friends_count":517,"listed_count":1,"favourites_count":25,"statuses_count":2656,"created_at":"Sun Feb 16 11:53:11 +0000 2014","utc_offset":19800,"time_zone":"New Delhi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663713943039426560\/eC0tzwiQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663713943039426560\/eC0tzwiQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2346732098\/1447076707","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iFaridoon","name":"Faridoon Shahryar","id":1217017676,"id_str":"1217017676","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"hi","timestamp_ms":"1447080132661"} +{"delete":{"status":{"id":663728274032365570,"id_str":"663728274032365570","user_id":1634333983,"user_id_str":"1634333983"},"timestamp_ms":"1447080133176"}} +{"delete":{"status":{"id":661118808753598464,"id_str":"661118808753598464","user_id":3888334213,"user_id_str":"3888334213"},"timestamp_ms":"1447080133482"}} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384223745,"id_str":"663728303384223745","text":"N\u00e3o presto e n\u00e3o tenho dim \ud83c\udfb6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3161469425,"id_str":"3161469425","name":"99\u2105 anjo","screen_name":"AnaSvaraujo","location":"Rio de Janeiro, Brasil","url":null,"description":"wpp: 979193421. \nsnap: caarol999\n\nFlamenguista \u26ab","protected":false,"verified":false,"followers_count":98,"friends_count":141,"listed_count":0,"favourites_count":171,"statuses_count":385,"created_at":"Sun Apr 12 22:46:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661663559152238592\/FfeIEo-q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661663559152238592\/FfeIEo-q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3161469425\/1446527012","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409405952,"id_str":"663728303409405952","text":"@JerusGimo napakaaa","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725871123927040,"in_reply_to_status_id_str":"663725871123927040","in_reply_to_user_id":2806883280,"in_reply_to_user_id_str":"2806883280","in_reply_to_screen_name":"JerusGimo","user":{"id":121846285,"id_str":"121846285","name":"dwarfie","screen_name":"potatonaaa","location":null,"url":null,"description":"Totus Tuus","protected":false,"verified":false,"followers_count":603,"friends_count":562,"listed_count":2,"favourites_count":26986,"statuses_count":32596,"created_at":"Wed Mar 10 19:50:50 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000093197101\/e5fd7b28487df65de947b344f032659a.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000093197101\/e5fd7b28487df65de947b344f032659a.png","profile_background_tile":true,"profile_link_color":"6B6868","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"1F7500","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654955484366118912\/puMRVIIK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654955484366118912\/puMRVIIK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121846285\/1444320742","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"JerusGimo","name":"Christiarle","id":2806883280,"id_str":"2806883280","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388405760,"id_str":"663728303388405760","text":"RT @Princ_244: \u0644\u0627 \u062a\u062d\u0644\u0645 \u0628\u0645\u0627 \u0644\u064a\u0633 \u0644\u0643 \u062d\u0642 \u0641\u064a\u0647 \u0641\u0631\u0628\u0645\u0627 \u062a\u062f\u0641\u0639 \u062d\u064a\u0627\u062a\u0643 \u0643\u0644\u0647\u0627 \u0644\u0645\u062c\u0631\u062f \u062d\u0644\u0645 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2278770288,"id_str":"2278770288","name":"\u200f\ufd3f\u0633\u064b\u0640\u0647\u0640\u0671\u0645\u0650 \u0671\u0644\u064e\u0634\u0651\u0640\u0648\u0642\u064e","screen_name":"seham_244","location":"London, England","url":null,"description":"\u200f\u200f\u0641\u0627\u0627\u0627\u0627\u0646\u064a\u0647 \u0645\u0647\u0645\u0627\u0627\u0627 \u0637\u0627\u0644\u062a... ..","protected":false,"verified":false,"followers_count":37313,"friends_count":34572,"listed_count":16,"favourites_count":352,"statuses_count":33963,"created_at":"Mon Jan 06 08:19:52 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663364465891680257\/x5kSg5Tt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663364465891680257\/x5kSg5Tt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2278770288\/1446993386","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:37:34 +0000 2015","id":663530840182362112,"id_str":"663530840182362112","text":"\u0644\u0627 \u062a\u062d\u0644\u0645 \u0628\u0645\u0627 \u0644\u064a\u0633 \u0644\u0643 \u062d\u0642 \u0641\u064a\u0647 \u0641\u0631\u0628\u0645\u0627 \u062a\u062f\u0641\u0639 \u062d\u064a\u0627\u062a\u0643 \u0643\u0644\u0647\u0627 \u0644\u0645\u062c\u0631\u062f \u062d\u0644\u0645 ..","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2523331747,"id_str":"2523331747","name":"\u0627\u0644\u0640\u0640\u0640\u0640\u0628\u0640\u0640\u0640\u0640\u0631\u0646\u0640\u0640\u0640\u0640\u0640\u0640\u0633","screen_name":"Princ_244","location":null,"url":null,"description":"\u0646\u0635\u0641 \u0623\u0646\u0627\u0642\u062a\u0643 \u0641\u064a \u0643\u0644\u0645\u0627\u062a\u0643 \u060c \u0648\u0646\u0635\u0641\u0647\u0627 \u0627\u0644\u0623\u062e\u0631 \u0641\u064a \u0623\u062e\u0644\u0627\u0642\u0643 .. \u007b \u0647\u0644\u0627\u0644\u064a \u0645\u062f\u0631\u064a\u062f\u064a\u007d","protected":false,"verified":false,"followers_count":11403,"friends_count":128,"listed_count":1,"favourites_count":1896,"statuses_count":21241,"created_at":"Sun May 25 19:27:03 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662417942420824064\/JFIxYL_z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662417942420824064\/JFIxYL_z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2523331747\/1439418148","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Princ_244","name":"\u0627\u0644\u0640\u0640\u0640\u0640\u0628\u0640\u0640\u0640\u0640\u0631\u0646\u0640\u0640\u0640\u0640\u0640\u0640\u0633","id":2523331747,"id_str":"2523331747","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400972289,"id_str":"663728303400972289","text":"RT @fedefederossi: LETTERA FINALMENTE \u00c8 FUORI \u2764\ufe0f SPARGETELA DAPPERTUTTO \u2728 #BenjieFedeLettera https:\/\/t.co\/CDUrchLhrW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1381309507,"id_str":"1381309507","name":"Elisa 20:05 ","screen_name":"ElisaStagetti","location":null,"url":null,"description":"LA VITA \u00c8 TUTTA D'UN FIATO \nBenji & Fede \u2764 #dreamers\nAntony e Alberico \u2764 Matteo Falaguasta \u2764","protected":false,"verified":false,"followers_count":116,"friends_count":162,"listed_count":1,"favourites_count":4009,"statuses_count":4664,"created_at":"Fri Apr 26 07:17:04 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/436962577566810112\/j6OiPtWm.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/436962577566810112\/j6OiPtWm.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631395115521699840\/PEyp0ZBL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631395115521699840\/PEyp0ZBL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1381309507\/1434389225","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:47 +0000 2015","id":663727439957331968,"id_str":"663727439957331968","text":"LETTERA FINALMENTE \u00c8 FUORI \u2764\ufe0f SPARGETELA DAPPERTUTTO \u2728 #BenjieFedeLettera https:\/\/t.co\/CDUrchLhrW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014558284,"id_str":"3014558284","name":"Fede |20:05|","screen_name":"fedefederossi","location":null,"url":null,"description":"ciao sono fede e canto in un duo pazzo\u270c\ufe0f","protected":false,"verified":false,"followers_count":54653,"friends_count":367,"listed_count":40,"favourites_count":640,"statuses_count":1461,"created_at":"Tue Feb 03 14:15:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653328953114017792\/64uigTay_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653328953114017792\/64uigTay_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014558284\/1444600768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":908,"favorite_count":1007,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[55,73]}],"urls":[{"url":"https:\/\/t.co\/CDUrchLhrW","expanded_url":"http:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[74,97]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BenjieFedeLettera","indices":[74,92]}],"urls":[{"url":"https:\/\/t.co\/CDUrchLhrW","expanded_url":"http:\/\/youtu.be\/DNpKVHfk0ls","display_url":"youtu.be\/DNpKVHfk0ls","indices":[93,116]}],"user_mentions":[{"screen_name":"fedefederossi","name":"Fede |20:05|","id":3014558284,"id_str":"3014558284","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384170497,"id_str":"663728303384170497","text":"soy tu adios (8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":521434186,"id_str":"521434186","name":"Psic\u00f3pata \u2206","screen_name":"Fystieligena","location":"Rosario, Argentina","url":"https:\/\/www.facebook.com\/fystys","description":"Yo soy lo que se esconde en lo hondo de su mirada perdida (8","protected":false,"verified":false,"followers_count":400,"friends_count":383,"listed_count":0,"favourites_count":1569,"statuses_count":11896,"created_at":"Sun Mar 11 15:57:31 +0000 2012","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662332020627005441\/ILAbkCzz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662332020627005441\/ILAbkCzz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/521434186\/1446747283","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400972288,"id_str":"663728303400972288","text":"Eu to meia \" foda se os outros \" \" foda se o que v\u00e3o pensar \" \" n\u00e3o ligo mais pra nada \"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2965051258,"id_str":"2965051258","name":"M\u00e1 \u2661","screen_name":"Maahnigga","location":"pqp","url":null,"description":"snap: Marcellyevarist\ninsta: _maahmse\nfacebook: Marcelly Evaristo","protected":false,"verified":false,"followers_count":110,"friends_count":121,"listed_count":0,"favourites_count":700,"statuses_count":3848,"created_at":"Tue Jan 06 21:45:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660168451147882496\/wg3967BB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660168451147882496\/wg3967BB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2965051258\/1445556343","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384170496,"id_str":"663728303384170496","text":"Next #Diwali sir @ajaydevgn with\nShivaay Diwali Dhamaka #Shivaay","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2926331940,"id_str":"2926331940","name":"AjayDvgn RajsthanFC","screen_name":"ADFCRajasthan","location":"Dungarpur","url":null,"description":"SHivaay Diwali 2016 \r\nAnd Bihar win BJP","protected":false,"verified":false,"followers_count":1030,"friends_count":952,"listed_count":2,"favourites_count":439,"statuses_count":4401,"created_at":"Thu Dec 11 04:13:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/543999647895678976\/urVkv934_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/543999647895678976\/urVkv934_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2926331940\/1418534595","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Diwali","indices":[5,12]},{"text":"Shivaay","indices":[56,64]}],"urls":[],"user_mentions":[{"screen_name":"ajaydevgn","name":"Ajay Devgn","id":65659343,"id_str":"65659343","indices":[17,27]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392559104,"id_str":"663728303392559104","text":"#AmexWFM","source":"\u003ca href=\"http:\/\/www.tweetcaster.com\" rel=\"nofollow\"\u003eTweetCaster for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2832390893,"id_str":"2832390893","name":"ashley","screen_name":"jesusluuuvsu2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":2,"friends_count":0,"listed_count":0,"favourites_count":0,"statuses_count":19,"created_at":"Wed Oct 15 18:28:35 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_3_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"AmexWFM","indices":[0,8]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384223746,"id_str":"663728303384223746","text":"RT @marouanesoulta2: \u0627\u0644\u0627\u0646 \u0627\u064a\u0647\u0627\u0628 \u0648\u0635\u0644\u0648\u0627 \u0643\u0644\u0627\u0645\u0643\u0645 \u0628\u0627\u0634 \u064a\u0627\u062e\u062f \u0628\u0627\u0644\u0647 \u0645\u0646 \u0639\u0628\u0627\u0633 \u0648 \u064a\u0642\u0648\u064a \u0635\u062f\u0627\u0642\u062a\u0648 \u0628 \u0633\u0647\u064a\u0644\u0629 .. \u0627\u0644\u0644\u0647\u0645 \u0627\u0646\u064a \u0642\u062f \u0628\u0644\u063a\u062a .. \u0627\u0644\u062e\u0628\u0631 \u0645\u0624\u0643\u062f #SouhailaBenLac\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2863068302,"id_str":"2863068302","name":"rayhane","screen_name":"RayhaneFlower","location":null,"url":null,"description":"\u0645\u063a\u0631\u0628\u064a\u0629 \u0628\u0631\u0634\u0644\u0648\u0646\u064a\u0629 \u270b\u0648\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0645\u063a\u0631\u0628\u064a\u0629 \u270c\ufe0f\u0648\u0639\u0627\u0634 \u0648\u0637\u0646\u064a \u0627\u0644\u062d\u0628\u064a\u0628","protected":false,"verified":false,"followers_count":771,"friends_count":113,"listed_count":2,"favourites_count":7984,"statuses_count":23475,"created_at":"Sat Oct 18 17:01:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663497990435377152\/O7fos_er_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663497990435377152\/O7fos_er_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2863068302\/1441359359","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:45 +0000 2015","id":663724914868883456,"id_str":"663724914868883456","text":"\u0627\u0644\u0627\u0646 \u0627\u064a\u0647\u0627\u0628 \u0648\u0635\u0644\u0648\u0627 \u0643\u0644\u0627\u0645\u0643\u0645 \u0628\u0627\u0634 \u064a\u0627\u062e\u062f \u0628\u0627\u0644\u0647 \u0645\u0646 \u0639\u0628\u0627\u0633 \u0648 \u064a\u0642\u0648\u064a \u0635\u062f\u0627\u0642\u062a\u0648 \u0628 \u0633\u0647\u064a\u0644\u0629 .. \u0627\u0644\u0644\u0647\u0645 \u0627\u0646\u064a \u0642\u062f \u0628\u0644\u063a\u062a .. \u0627\u0644\u062e\u0628\u0631 \u0645\u0624\u0643\u062f #SouhailaBenLachhab #ihabamir","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4056761116,"id_str":"4056761116","name":"Marouane Soultane","screen_name":"marouanesoulta2","location":"Royaume du Maroc","url":"https:\/\/www.facebook.com\/marouane.soultane","description":"\u0641\u0646\u0627\u0646 \u0635\u0627\u0639\u062f \u0628\u0627\u0630\u0646 \u0627\u0644\u0644\u0647 \u0627\u063a\u0646\u064a\u062a\u064a \u0628\u0639\u0646\u0648\u0627\u0646 #\u064a\u0633\u062a\u0627\u0647\u0644 http:\/\/youtu.be\/wHn6WCMb__I","protected":false,"verified":false,"followers_count":1387,"friends_count":68,"listed_count":0,"favourites_count":1009,"statuses_count":395,"created_at":"Tue Oct 27 23:22:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659346258608410624\/mhb7O66w_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659346258608410624\/mhb7O66w_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4056761116\/1445992233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":131,"favorite_count":189,"entities":{"hashtags":[{"text":"SouhailaBenLachhab","indices":[103,122]},{"text":"ihabamir","indices":[123,132]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SouhailaBenLachhab","indices":[124,140]},{"text":"ihabamir","indices":[139,140]}],"urls":[],"user_mentions":[{"screen_name":"marouanesoulta2","name":"Marouane Soultane","id":4056761116,"id_str":"4056761116","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384240128,"id_str":"663728303384240128","text":"O tombo que eu cai na avenida na sa\u00edda da aula ano passado que por sinal todo mundo viu, foi pior que o da escada certeza","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167456705,"id_str":"167456705","name":"Mayara Rodrigues","screen_name":"may_rodriguess","location":"Foz do Igua\u00e7u ","url":null,"description":"\u2022 Snap: mayrodriguess","protected":false,"verified":false,"followers_count":738,"friends_count":516,"listed_count":0,"favourites_count":7597,"statuses_count":27035,"created_at":"Fri Jul 16 16:55:44 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000168008938\/pXFmtafb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000168008938\/pXFmtafb.jpeg","profile_background_tile":true,"profile_link_color":"1D1D99","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F7F7F7","profile_text_color":"E34B94","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660996364353040384\/uvJqJ8AI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660996364353040384\/uvJqJ8AI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167456705\/1445394847","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"91f818a4abfb1d4d","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/91f818a4abfb1d4d.json","place_type":"city","name":"Foz do Igua\u00e7u","full_name":"Foz do Igua\u00e7u, Paran\u00e1","country_code":"BR","country":"Brasil","bounding_box":{"type":"Polygon","coordinates":[[[-54.619501,-25.695489],[-54.619501,-25.212313],[-54.294691,-25.212313],[-54.294691,-25.695489]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388409856,"id_str":"663728303388409856","text":"RT @Harveyrolltide: And if MIZZOU was undefeated none of this would be happening. Just saying.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":363296071,"id_str":"363296071","name":"Westbury","screen_name":"LukeRealGravy","location":"Summerville, SC","url":null,"description":"Jesus first. Clemson University. Tennis star. Avid Golfer. I can run really fast and stuff. Fantasy Football King. #Clemson #Panthers","protected":false,"verified":false,"followers_count":315,"friends_count":268,"listed_count":3,"favourites_count":1752,"statuses_count":9668,"created_at":"Sat Aug 27 21:23:13 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/686458480\/b9a6cfba4aee2b28304d227e37c95868.gif","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/686458480\/b9a6cfba4aee2b28304d227e37c95868.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652599878925819904\/IVJn-TAD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652599878925819904\/IVJn-TAD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/363296071\/1446861205","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:35 +0000 2015","id":663728142553600000,"id_str":"663728142553600000","text":"And if MIZZOU was undefeated none of this would be happening. Just saying.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2220824783,"id_str":"2220824783","name":"Harvey Updyke","screen_name":"Harveyrolltide","location":"Hammond, LA","url":"http:\/\/TennesseeSucksAss.com","description":"Family, friends, and Alabama football. ROLL DAMN TIDE!","protected":false,"verified":false,"followers_count":10441,"friends_count":753,"listed_count":37,"favourites_count":4263,"statuses_count":25413,"created_at":"Thu Dec 12 04:38:53 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645726075885105152\/2RZidCO2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645726075885105152\/2RZidCO2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2220824783\/1446698588","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harveyrolltide","name":"Harvey Updyke","id":2220824783,"id_str":"2220824783","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392559105,"id_str":"663728303392559105","text":"RT @uradouga_osusum: \u5143\u65b0\u4f53\u64cd\u5f37\u5316\u9078\u624b\u3001\u5185\u5c71\u308a\u306a\u3061\u3083\u3093\u30a2\u30ca\u30ebSEX\u306b\u521d\u6311\u6226\nhttp:\/\/t.co\/l10dTNx2nT\n-\u304a\u52e7\u3081\u6709\u6599\u52d5\u753bNAVI","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3297011399,"id_str":"3297011399","name":"DC Booties","screen_name":"DCBooties","location":"USA","url":"http:\/\/bit.ly\/DCBooties","description":"The sexiest women and booties in the DC area.","protected":false,"verified":false,"followers_count":1931,"friends_count":5001,"listed_count":44,"favourites_count":5953,"statuses_count":7797,"created_at":"Sun May 24 20:22:14 +0000 2015","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/625202271438155776\/K8j1n41N_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/625202271438155776\/K8j1n41N_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3297011399\/1437894844","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Sep 28 08:50:14 +0000 2015","id":648419433514295297,"id_str":"648419433514295297","text":"\u5143\u65b0\u4f53\u64cd\u5f37\u5316\u9078\u624b\u3001\u5185\u5c71\u308a\u306a\u3061\u3083\u3093\u30a2\u30ca\u30ebSEX\u306b\u521d\u6311\u6226\nhttp:\/\/t.co\/l10dTNx2nT\n-\u304a\u52e7\u3081\u6709\u6599\u52d5\u753bNAVI","source":"\u003ca href=\"http:\/\/sokuhou.club\/honobono\/\" rel=\"nofollow\"\u003efbp_honobono\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3316500444,"id_str":"3316500444","name":"\u88cf\u52d5\u753b\u60c5\u5831","screen_name":"uradouga_osusum","location":null,"url":"http:\/\/goo.gl\/hheUPg","description":"\u6709\u6599\u52d5\u753b\u914d\u4fe1\u30b5\u30a4\u30c8\u304b\u3089\u306e\u65b0\u7740\u52d5\u753b\u3084\u304a\u3059\u3059\u3081\u52d5\u753b\u3092\u7d39\u4ecb\u3057\u3066\u3044\u307e\u3059\u3002\n\u6642\u3005\u304a\u5f97\u306a\u30ad\u30e3\u30f3\u30da\u30fc\u30f3\u60c5\u5831\u3082\u7d39\u4ecb\u3057\u3066\u3044\u308b\u306e\u3067\u8208\u5473\u306e\u3042\u308b\u65b9\u306f\u305c\u3072\u30d6\u30ed\u30b0\u307e\u3067\u304a\u8d8a\u3057\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":488,"friends_count":783,"listed_count":0,"favourites_count":0,"statuses_count":2042,"created_at":"Sun Aug 16 05:45:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/633117882428162048\/0QtNTQBG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/633117882428162048\/0QtNTQBG_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/l10dTNx2nT","expanded_url":"http:\/\/osusume.douganavi.xyz\/2015\/08\/12\/post-116\/","display_url":"osusume.douganavi.xyz\/2015\/08\/12\/pos\u2026","indices":[27,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/l10dTNx2nT","expanded_url":"http:\/\/osusume.douganavi.xyz\/2015\/08\/12\/post-116\/","display_url":"osusume.douganavi.xyz\/2015\/08\/12\/pos\u2026","indices":[48,70]}],"user_mentions":[{"screen_name":"uradouga_osusum","name":"\u88cf\u52d5\u753b\u60c5\u5831","id":3316500444,"id_str":"3316500444","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375781888,"id_str":"663728303375781888","text":"When your boyfriend gives you everything \u263a\ufe0f\u263a\ufe0f\u263a\ufe0f\u263a\ufe0f\u263a\ufe0f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":63181812,"id_str":"63181812","name":"Gabby Price","screen_name":"GabbyBriellle","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":494,"friends_count":397,"listed_count":0,"favourites_count":335,"statuses_count":29083,"created_at":"Wed Aug 05 16:37:57 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":true,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599982432662720513\/KkhhpTVH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599982432662720513\/KkhhpTVH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/63181812\/1425221607","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375712257,"id_str":"663728303375712257","text":"yakinlah tak ada jabatan yang ringan","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":385806026,"id_str":"385806026","name":"Hidayat JN","screen_name":"aroelxote31","location":"indonesia","url":null,"description":"Spirit of million dream's","protected":false,"verified":false,"followers_count":327,"friends_count":208,"listed_count":2,"favourites_count":11,"statuses_count":5134,"created_at":"Thu Oct 06 04:57:04 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/661657046\/2rzzl7p5chts99tog2z5.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/661657046\/2rzzl7p5chts99tog2z5.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660226728552304640\/YpPQ3994_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660226728552304640\/YpPQ3994_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/385806026\/1438078170","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388418049,"id_str":"663728303388418049","text":"Cuci mata dlu (@ Ch\u1ee3 B\u1ebfn Th\u00e0nh (Ben Thanh Market) in Ho Chi Minh City, Tp. H\u1ed3 Ch\u00ed Minh w\/ @durahell_nw) https:\/\/t.co\/rsGXum32F3","source":"\u003ca href=\"http:\/\/foursquare.com\" rel=\"nofollow\"\u003eFoursquare\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":456453369,"id_str":"456453369","name":"Ms November","screen_name":"zatul_sheila","location":"port dickson | UiTM K.Kinabalu","url":null,"description":"* t o m a t o * ig : zatul_sheila \u27b0Bachelor in Economic Business \n\u2764powerangers","protected":false,"verified":false,"followers_count":185,"friends_count":169,"listed_count":2,"favourites_count":2225,"statuses_count":5965,"created_at":"Fri Jan 06 08:11:18 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"2E252B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000171477487\/nQsww4KY.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000171477487\/nQsww4KY.jpeg","profile_background_tile":true,"profile_link_color":"2C96CF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661820171716132864\/aiFBXL88_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661820171716132864\/aiFBXL88_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/456453369\/1413474601","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":{"type":"Point","coordinates":[10.77270850,106.69790983]},"coordinates":{"type":"Point","coordinates":[106.69790983,10.77270850]},"place":{"id":"0079932b106eb4c9","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/0079932b106eb4c9.json","place_type":"admin","name":"Ho Chi Minh","full_name":"Ho Chi Minh, Vietnam","country_code":"VN","country":"Vi\u1ec7t Nam","bounding_box":{"type":"Polygon","coordinates":[[[106.356398,10.365786],[106.356398,11.160291],[107.012798,11.160291],[107.012798,10.365786]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rsGXum32F3","expanded_url":"https:\/\/www.swarmapp.com\/c\/lbb9mm4P9EE","display_url":"swarmapp.com\/c\/lbb9mm4P9EE","indices":[104,127]}],"user_mentions":[{"screen_name":"durahell_nw","name":"\u0646\u0648\u0631\u0648\u0644 \u0648\u0627\u0647\u064a\u062f\u0627 \u0627\u062f\u0646\u0646","id":416018461,"id_str":"416018461","indices":[90,102]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"vi","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409373185,"id_str":"663728303409373185","text":"\u0e2d\u0e2d\u0e01\u0e04\u0e33\u0e2a\u0e31\u0e48\u0e07 \u0e04\u0e2a\u0e0a.\u0e17\u0e35\u0e48 15\/2558 \u0e41\u0e15\u0e48\u0e07\u0e15\u0e31\u0e49\u0e07\u0e1c\u0e39\u0e49\u0e1b\u0e0f\u0e34\u0e1a\u0e31\u0e15\u0e34\u0e07\u0e32\u0e19\u0e43\u0e19\u0e04\u0e13\u0e30\u0e23\u0e31\u0e01\u0e29\u0e32\u0e04\u0e27\u0e32\u0e21\u0e2a\u0e07\u0e1a\u0e41\u0e2b\u0e48\u0e07\u0e0a\u0e32\u0e15\u0e34 https:\/\/t.co\/jww3aLK9Gu","source":"\u003ca href=\"http:\/\/www.google.com\/\" rel=\"nofollow\"\u003eGoogle\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3002184312,"id_str":"3002184312","name":"news","screen_name":"iqepin","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":796,"friends_count":7,"listed_count":1,"favourites_count":0,"statuses_count":284302,"created_at":"Thu Jan 29 20:05:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jww3aLK9Gu","expanded_url":"http:\/\/goo.gl\/fb\/ljHpE5","display_url":"goo.gl\/fb\/ljHpE5","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303396642817,"id_str":"663728303396642817","text":"\u3042\u3001\u3042\u3042\u2026\u2026\u3042\u3042\uff1f","source":"\u003ca href=\"https:\/\/sites.google.com\/site\/wakamesoba98\/sobacha\" rel=\"nofollow\"\u003eSobaCha\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":528287012,"id_str":"528287012","name":"\u864e\u5de5\u5177","screen_name":"tiger_d91","location":"\u5c4f\u98a8\u306e\u4e2d","url":"http:\/\/www.pixiv.net\/member.php?id=144217","description":"\u30b9\u30c8\u30e9\u30a4\u30af\u30a6\u30a3\u30c3\u30c1\u30fc\u30ba\u304c\u597d\u304d\u3067\u3059\u3002\u3068\u304d\u3069\u304d\u304a\u7d75\u63cf\u304d\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":434,"friends_count":301,"listed_count":32,"favourites_count":10302,"statuses_count":51726,"created_at":"Sun Mar 18 08:13:39 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606452690143449090\/OqSwPZ7K.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606452690143449090\/OqSwPZ7K.jpg","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"D9B17E","profile_sidebar_fill_color":"EADEAA","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653942555982233601\/9gI9t4xF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653942555982233601\/9gI9t4xF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/528287012\/1434979809","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133662"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400861696,"id_str":"663728303400861696","text":"@tVqhYKfmTfoo3D1 \u3082\u3001\u3082\u3046\u7b11\u308f\u306a\u3044\u3088(\u0ca1\u8278\u0ca1)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725632375779328,"in_reply_to_status_id_str":"663725632375779328","in_reply_to_user_id":3107464009,"in_reply_to_user_id_str":"3107464009","in_reply_to_screen_name":"tVqhYKfmTfoo3D1","user":{"id":3096099776,"id_str":"3096099776","name":"\u6dbc\u592a\u90ce\u2192","screen_name":"cmXAtuIyXXxR1ih","location":"\u3080\u30fc\u3042\u3057\u308d\u307b\u3057\u3066\u3093\u3068\u30fc(._.)","url":null,"description":"\u308c\u3093\u3052\u2192\u516d\u5c0f\u2192\u4e8c\u4e2d\u2192TNS RADWIMPS\/miwa\/\u4e95\u4e0a\u82d1\u5b50\u2190\u3053\u306e\u65b9\u3005\u795e Blue Encount\/[Alexandros]\u2605miwa\u306b100%\u305d\u3093\u3061\u3083\u3093\u306b100%\u8a08200%\u6367\u3052\u307e\u3059\u2605","protected":false,"verified":false,"followers_count":314,"friends_count":360,"listed_count":1,"favourites_count":1924,"statuses_count":1870,"created_at":"Wed Mar 18 11:12:59 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657832598358487040\/dlsGS0eL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657832598358487040\/dlsGS0eL_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3096099776\/1436922233","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tVqhYKfmTfoo3D1","name":"\u5927\u91ce \u4e16\u5fc3\u7a00","id":3107464009,"id_str":"3107464009","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303379890176,"id_str":"663728303379890176","text":"\u304f\u305d\u307e\u308d\u305f","source":"\u003ca href=\"http:\/\/theworld09.com\" rel=\"nofollow\"\u003efrom TheWorld\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1553121440,"id_str":"1553121440","name":"\u307e\u304a\u3068\u3093\u3070(\u4eab\u5e7421 \u8a2d\u8a08\u6b7b)","screen_name":"maoto_gc93","location":"\u4eca\u65e5\u3082\u4e00\u756a\u697d\u3057\u3044\u65e5","url":null,"description":"\u6298\u308a\u7d19\u3057\u305f\u308a\u30d3\u30fc\u30ba\u3057\u305f\u308a\u30c8\u30e9\u30f3\u30b9\u30d5\u30a9\u30fc\u30de\u30fc\u898b\u305f\u308a\u91ce\u7403\u3057\u305f\u308a\u30dd\u30b1\u30e2\u30f3\u3057\u305f\u308a\u304a\u3063\u3071\u3044\u5d07\u3081\u305f\u308a","protected":false,"verified":false,"followers_count":153,"friends_count":152,"listed_count":16,"favourites_count":26342,"statuses_count":46885,"created_at":"Fri Jun 28 13:36:19 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654470737630068736\/JCtCtAjl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654470737630068736\/JCtCtAjl_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1553121440\/1443888206","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133658"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375691781,"id_str":"663728303375691781","text":"\u3093\uff5e\u3001\u30d4\u30f3\u3068\u6765\u306a\u3044\u304b\u306a\u3041\uff5e","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1427514102,"id_str":"1427514102","name":"\u3061\u3087\u3059","screen_name":"Gcho_0504","location":"Hyogo\u2192Tokyo","url":null,"description":"\u5c0f\u91ce\u5927\u8f14\u3001\u5185\u5c71\u6602\u8f1d\u3001\u6885\u539f\u88d5\u4e00\u90ce\u3001\u6708\u5cf6\u86cd\u3001\u677e\u91ce\u5341\u56db\u677e\u30cf\u30a4\u30ad\u30e5\u30fc\/\u304a\u305d\u677e\u3055\u3093\/\u9ed2\u30d0\u30b9\/\u30da\u30c0\u30eb \u6210\u4eba\u6e08","protected":false,"verified":false,"followers_count":53,"friends_count":406,"listed_count":1,"favourites_count":3581,"statuses_count":12677,"created_at":"Tue May 14 10:55:01 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652181999608705024\/AA6Y5xFF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652181999608705024\/AA6Y5xFF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1427514102\/1443973732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384072192,"id_str":"663728303384072192","text":"Sandali? San ba nagsimula to??\ud83d\ude1d\ud83d\udc47","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1303553606,"id_str":"1303553606","name":"idc.","screen_name":"lpz_chsc10","location":null,"url":"http:\/\/Instagram.com\/lopez_chesca10","description":"One moment can change your life.","protected":false,"verified":false,"followers_count":608,"friends_count":345,"listed_count":8,"favourites_count":6525,"statuses_count":23587,"created_at":"Tue Mar 26 11:10:05 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9266CC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/594426233175212032\/Fip4--Zg.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/594426233175212032\/Fip4--Zg.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663671366344835072\/BYxgB1p0_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663671366344835072\/BYxgB1p0_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1303553606\/1446878848","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388405761,"id_str":"663728303388405761","text":"RT @NicolasSignes: Me tiene cansado el colegio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1529152376,"id_str":"1529152376","name":"\u2741","screen_name":"Belu_Petitto","location":"C\u00f3rdoba ","url":"https:\/\/instagram.com\/belenpetitto\/","description":"[Lo importante es re\u00edr, y re\u00edr juntos]\n\nSnap: belenpetitto","protected":false,"verified":false,"followers_count":605,"friends_count":730,"listed_count":0,"favourites_count":1898,"statuses_count":24082,"created_at":"Tue Jun 18 23:48:49 +0000 2013","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569211611852726272\/5nEQ3h-r.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569211611852726272\/5nEQ3h-r.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660451002173255680\/RnWfaiu-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660451002173255680\/RnWfaiu-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1529152376\/1446429502","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:27 +0000 2015","id":663727856674078721,"id_str":"663727856674078721","text":"Me tiene cansado el colegio","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1431802400,"id_str":"1431802400","name":"Nicol\u00e1s.","screen_name":"NicolasSignes","location":"Buenos Aires . Argentina","url":"http:\/\/instagram.com\/nicolassignes\/","description":"17. Soy como soy y no lo pienso cambiar, siempre voy con la verdad...","protected":false,"verified":false,"followers_count":1964,"friends_count":1000,"listed_count":2,"favourites_count":5298,"statuses_count":20490,"created_at":"Thu May 16 00:26:30 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"002938","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/444239348611833857\/tLdlDAIN.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/444239348611833857\/tLdlDAIN.jpeg","profile_background_tile":true,"profile_link_color":"1D0E33","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648935458769125376\/cHEfiqRx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648935458769125376\/cHEfiqRx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1431802400\/1435601809","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"NicolasSignes","name":"Nicol\u00e1s.","id":1431802400,"id_str":"1431802400","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388233728,"id_str":"663728303388233728","text":"Wayyy too many questions ...you must think I trust ya #JumpmanJumpman","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":312788181,"id_str":"312788181","name":"Amo\u00ed B.","screen_name":"AmoiBlake","location":null,"url":null,"description":"All dreams can come true if we have the courage to pursue them. - Walt Disney","protected":false,"verified":false,"followers_count":1492,"friends_count":235,"listed_count":6,"favourites_count":1028,"statuses_count":35455,"created_at":"Tue Jun 07 17:28:46 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"200709","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/720893976\/abcb2a9e6098be73d0e28d3b6f0860e4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/720893976\/abcb2a9e6098be73d0e28d3b6f0860e4.jpeg","profile_background_tile":true,"profile_link_color":"C96D43","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"200709","profile_text_color":"6A4836","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/435112020040368128\/uj7-7OoH_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/435112020040368128\/uj7-7OoH_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"JumpmanJumpman","indices":[54,69]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400873985,"id_str":"663728303400873985","text":"RT @ispraews: \u0e2a\u0e39\u0e49 #EXO \u0e2a\u0e39\u0e49 #CALLMEBABY \u0e2a\u0e39\u0e49 #2015MAMA \u0e2a\u0e39\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4166853799,"id_str":"4166853799","name":"Kyung Fluke \u2022~\u2022","screen_name":"DoKyung_Fluke","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":192,"listed_count":0,"favourites_count":0,"statuses_count":55,"created_at":"Sun Nov 08 09:39:23 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663290523243819008\/UMgC7dc8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663290523243819008\/UMgC7dc8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4166853799\/1446975831","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:36:06 +0000 2015","id":663726761658552321,"id_str":"663726761658552321","text":"\u0e2a\u0e39\u0e49 #EXO \u0e2a\u0e39\u0e49 #CALLMEBABY \u0e2a\u0e39\u0e49 #2015MAMA \u0e2a\u0e39\u0e49","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":84330058,"id_str":"84330058","name":"\u0e41\u0e1b\u0e27.","screen_name":"ispraews","location":null,"url":"http:\/\/ispraews.tumblr.com\/","description":"When nothing is sure, everything is possible.","protected":false,"verified":false,"followers_count":10218,"friends_count":215,"listed_count":14,"favourites_count":4191,"statuses_count":114376,"created_at":"Thu Oct 22 13:54:14 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"94D487","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/610162295130296320\/LiSnVt8l.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/610162295130296320\/LiSnVt8l.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2FAF9","profile_text_color":"FF9785","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663404453899337728\/Dw9L3Nrd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663404453899337728\/Dw9L3Nrd_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/84330058\/1446755040","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":41,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[4,8]},{"text":"CALLMEBABY","indices":[13,24]},{"text":"2015MAMA","indices":[29,38]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EXO","indices":[18,22]},{"text":"CALLMEBABY","indices":[27,38]},{"text":"2015MAMA","indices":[43,52]}],"urls":[],"user_mentions":[{"screen_name":"ispraews","name":"\u0e41\u0e1b\u0e27.","id":84330058,"id_str":"84330058","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388418048,"id_str":"663728303388418048","text":"RT @RecitoBobMarIey: A mentira mais comum \u00e9 \"estou bem\"","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3637420887,"id_str":"3637420887","name":"Dayane","screen_name":"day__124","location":null,"url":null,"description":"snap: dayane2345 insta: dayanevitoria_","protected":false,"verified":false,"followers_count":11,"friends_count":22,"listed_count":0,"favourites_count":21,"statuses_count":58,"created_at":"Sun Sep 13 02:23:17 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660594857216471042\/QYkLI7Es_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660594857216471042\/QYkLI7Es_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3637420887\/1445179388","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:10:09 +0000 2015","id":663705134417866752,"id_str":"663705134417866752","text":"A mentira mais comum \u00e9 \"estou bem\"","source":"\u003ca href=\"http:\/\/twuffer.com\" rel=\"nofollow\"\u003eTwuffer\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611227644,"id_str":"611227644","name":"Bob Marley","screen_name":"RecitoBobMarIey","location":null,"url":null,"description":"Frases do Bob Marley entre outras frases famosas.","protected":false,"verified":false,"followers_count":1208701,"friends_count":200610,"listed_count":324,"favourites_count":613,"statuses_count":44782,"created_at":"Sun Jun 17 21:42:11 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":true,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/645485200160464896\/8GYiBu4J.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/645485200160464896\/8GYiBu4J.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626538762550517760\/WO_quGDs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626538762550517760\/WO_quGDs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/611227644\/1445882369","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":306,"favorite_count":209,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"RecitoBobMarIey","name":"Bob Marley","id":611227644,"id_str":"611227644","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384174592,"id_str":"663728303384174592","text":"Mercedes Benz S65 AMG Coupe - Successful Life https:\/\/t.co\/V4mkMj0XH7 via @YouTube","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4148834908,"id_str":"4148834908","name":"Successful Life","screen_name":"SccFL1994","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":43,"listed_count":0,"favourites_count":0,"statuses_count":4,"created_at":"Mon Nov 09 11:30:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663680571948867584\/nouVafEd_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663680571948867584\/nouVafEd_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/V4mkMj0XH7","expanded_url":"https:\/\/youtu.be\/IjDXLJ4Z7HQ","display_url":"youtu.be\/IjDXLJ4Z7HQ","indices":[46,69]}],"user_mentions":[{"screen_name":"YouTube","name":"YouTube","id":10228272,"id_str":"10228272","indices":[74,82]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303413460993,"id_str":"663728303413460993","text":"\u30d1\u30ba\u30c9\u30e9\u30de\u30eb\u30c1\n4292 7348\n\u30b4\u30c3\u30c9\u30e9\u30c3\u30b7\u30e5\u3044\u304d\u307e\u3059","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4069626385,"id_str":"4069626385","name":"\u3086\u3046\u2200","screen_name":"pazzkk","location":null,"url":null,"description":"237319167 \u30d1\u30ba\u30c9\u30e9\u30a2\u30ab \u7121\u8ab2\u91d1\u3067\u552f\u4e00\u5f53\u3066\u305f\u661f6\u306f\u9032\u5316\u5f8c\u30ed\u30ad\u7b11","protected":false,"verified":false,"followers_count":44,"friends_count":77,"listed_count":0,"favourites_count":29,"statuses_count":124,"created_at":"Fri Oct 30 14:40:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133666"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392448513,"id_str":"663728303392448513","text":"@Yu_tkhs041eight \u306f\u3058\u3081\u307e\u3057\u3066\u3067\u3059\uff01\u304a\u6c17\u306b\u5165\u308a\u3057\u3066\u304f\u3060\u3055\u3063\u3066\u305f\u306e\u3067\u30d5\u30a9\u30ed\u30fc\u3055\u305b\u3066\u3082\u3089\u3044\u307e\u3057\u305f\\\uff3e\uff3e\/\u2728 \u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727850646671361,"in_reply_to_status_id_str":"663727850646671361","in_reply_to_user_id":4017933618,"in_reply_to_user_id_str":"4017933618","in_reply_to_screen_name":"Yu_tkhs041eight","user":{"id":986364572,"id_str":"986364572","name":"\u3042\u3059\u307f\uff0a\u7b11\u3046\u7d04\u675f\uff3e\uff3e","screen_name":"yuuuuu1s","location":null,"url":null,"description":"\u5cf6\u6839 \u9ad8\u6a4b\u512a \u3042\u306a\u305f\u306e\u8a00\u8449\u306b\u58f0\u306b\u7b11\u9854\u306b\u3001\u3042\u308a\u304c\u3068\u3046 No yuu's music no life","protected":false,"verified":false,"followers_count":531,"friends_count":531,"listed_count":6,"favourites_count":1384,"statuses_count":4477,"created_at":"Mon Dec 03 10:31:07 +0000 2012","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639054963029598208\/LnVK1kxn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639054963029598208\/LnVK1kxn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/986364572\/1445153894","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Yu_tkhs041eight","name":"Megumi Yukinaga\u261e\u8da3\u5473\u57a2","id":4017933618,"id_str":"4017933618","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409266688,"id_str":"663728303409266688","text":"https:\/\/t.co\/pvkdVF69jn","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":537415631,"id_str":"537415631","name":"ANGELICA GUADALUPE ","screen_name":"angy310585","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":39,"friends_count":346,"listed_count":0,"favourites_count":71,"statuses_count":2042,"created_at":"Mon Mar 26 17:47:39 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000749821215\/9172b8c330170294e5b8572ab7628b3f_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000749821215\/9172b8c330170294e5b8572ab7628b3f_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/pvkdVF69jn","expanded_url":"http:\/\/fb.me\/28b5mWxRP","display_url":"fb.me\/28b5mWxRP","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303384240129,"id_str":"663728303384240129","text":"RT @iihade: \u062c\u0631\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062d\u064a\u0627\u062f\u064a \u0630\u0648 \u0645\u0628\u062f\u0623 \u0645\u064f\u062e\u062a\u0644\u0641\n \u0628\u0639\u064a\u062f\u0627\u064b \u0639\u0646 \u062b\u0631\u062b\u0631\u0629 \u0627\u0644\u0627\u0641\u0648\u0627\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1067024726,"id_str":"1067024726","name":"\u062c\u0648\u062c\u064a \u0627\u0644\u0639\u0628\u062f\u0627\u0644\u0644\u0647","screen_name":"Jewel6767","location":null,"url":null,"description":"\u200f\u200f\u200f\u200f\u0623\u0646\u0627\u0645\u062c\u0631\u062f\u0631\u0648\u062d \u0627\u062d\u0644\u0642 \u0641\u064a \u0639\u0627\u0644\u0645 \u0641\u0633\u064a\u062d.\u0631\u0648\u062d \u062a\u0631\u064a\u062f \u0627\u0646 \u062a\u062b\u0628\u062a \u0630\u0627\u062a\u0647\u0627\u0641\u064a \u0647\u0630\u0627\u0627\u0644\u0643\u0648\u0646 \u0627\u0644\u063a\u0631\u064a\u0628.\u0627\u0628\u062d\u062b \u0639\u0646 \u0645\u0643\u0627\u0646 \u0627\u0633\u062a\u0642\u0631\u0641\u064a\u0647 \u0648\u0627\u0628\u062f\u0623\u0628\u062a\u062d\u0642\u064a\u0642 \u0623\u062d\u0644\u0627\u0645\u064a \u0627\u0644\u0645\u0628\u0639\u062b\u0631\u0629,\u0627\u0646\u0627\u0641\u062a\u0627\u0629 \u0633\u0627\u0639\u0645\u0644 \u0627\u0644\u0645\u0633\u062a\u062d\u064a\u0644 \u0644\u0627\u0639\u064a\u0634 \u0643\u0645\u0627\u0627\u0631\u064a\u062f","protected":false,"verified":false,"followers_count":812,"friends_count":1002,"listed_count":0,"favourites_count":58,"statuses_count":959,"created_at":"Mon Jan 07 00:01:12 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/849434658\/a25bc3f1d45a52428db75ff819da04cb.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/849434658\/a25bc3f1d45a52428db75ff819da04cb.jpeg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624070678090682368\/a3cD-HYK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624070678090682368\/a3cD-HYK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1067024726\/1439446842","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 16:22:16 +0000 2015","id":663391094722461696,"id_str":"663391094722461696","text":"\u062c\u0631\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u062d\u064a\u0627\u062f\u064a \u0630\u0648 \u0645\u0628\u062f\u0623 \u0645\u064f\u062e\u062a\u0644\u0641\n \u0628\u0639\u064a\u062f\u0627\u064b \u0639\u0646 \u062b\u0631\u062b\u0631\u0629 \u0627\u0644\u0627\u0641\u0648\u0627\u0647","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1650855434,"id_str":"1650855434","name":"\u0647\u0622\u062f\u064a","screen_name":"iihade","location":"\u0627\u0644\u0631\u064a\u0627\u0636 ","url":null,"description":"\u200f\u0634\u064f\u0639\u0648\u0631 \u0627\u0644\u0627\u0633\u064e\u062a\u063a\u0646\u0651\u0627\u0621 \u0628\u0627\u0644\u0644\u0647 \u060c \u0634\u064f\u0639\u0648\u0631 \u0639\u064e\u0638\u064a\u0645'!\u200f\u200f. \nhttp:\/\/Instagram.com\/iihade_\u200e\u200e\u200e \n\u0627\u0633\u062a\u0642\u0631\u0627\u0645\u064a.","protected":false,"verified":false,"followers_count":19312,"friends_count":58,"listed_count":38,"favourites_count":274,"statuses_count":11880,"created_at":"Tue Aug 06 17:46:37 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000306613378\/0059c322a0192e7706f539fb3d826143_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000306613378\/0059c322a0192e7706f539fb3d826143_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1650855434\/1400390106","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":58,"favorite_count":21,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"iihade","name":"\u0647\u0622\u062f\u064a","id":1650855434,"id_str":"1650855434","indices":[3,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080133659"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392448512,"id_str":"663728303392448512","text":"@gomasioalien \u3053\u3053\u307e\u3067\u9577\u304f\u3057\u305f\u3089\u30d0\u30a4\u30c8\u6012\u3089\u308c\u308b\u308f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727355471355904,"in_reply_to_status_id_str":"663727355471355904","in_reply_to_user_id":4054505364,"in_reply_to_user_id_str":"4054505364","in_reply_to_screen_name":"gomasioalien","user":{"id":633887908,"id_str":"633887908","name":"\u304b\u0293\u2c76\u307e","screen_name":"calpis_tomato","location":"\u304b\u308b\u3068\u307e\u3067\u3059\u304b\u308b\u307e\u3067\u306f\u306a\u3044\u3067\u3059","url":null,"description":"\u304a\u3061\u3093\u3061\u3093\u3058\u3083\u306a\u304f\u3066\u304a\u8cc3\u91d1\u3044\u3063\u3071\u3044\u304f\u3060\u3055\u3044\u2661\u2661\u3044\u3084\u304a\u3061\u3093\u3061\u3093\u3058\u3083\u306a\u304f\u3066\u3042\u3063(\u633f\u5165)\u2661\u2661\u304a\u3061\u3093\u3061\u3093\u3057\u3085\u304d\u3043\u2661\u2661\u3082\u3063\u3068\u3049\u2661\u2661\u3093\u3063\u2661\u2661\u304a\u304f\u3057\u3085\u304d\u3043\u2661\u2661\u5c04\u7cbe\u304c\u3093\u3070\u308c\u2661\u304c\u3093\u3070\u308c\u2661\u3093\u3063\u2661\u5c04\u7cbe\u3067\u304d\u3066\u3048\u3089\u3044\u305e\u3049\u2661\u2661\u3063\u3066\u8a00\u3063\u3066\u304f\u308c\u308b\u5973\u306e\u5b50\u52df\u96c6\u3057\u3066\u307e\u3059\u3061\u306a\u307f\u306b\u50d5\u306f\u304b\u308b\u3068\u307e\u3067\u3059\u304b\u308b\u307e\u3058\u3083\u306a\u3044\u3067\u3059","protected":false,"verified":false,"followers_count":3812,"friends_count":386,"listed_count":44,"favourites_count":50150,"statuses_count":132881,"created_at":"Thu Jul 12 17:04:09 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661947297572352000\/Fe18_W5J_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661947297572352000\/Fe18_W5J_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/633887908\/1427233665","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gomasioalien","name":"\u3054\u307e\u3057\u304a\u3061\u3083\u3093","id":4054505364,"id_str":"4054505364","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409373184,"id_str":"663728303409373184","text":"throwbact songs! heheh (y) https:\/\/t.co\/jcvJdZscoN","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1714781047,"id_str":"1714781047","name":"Raymond Melarpis","screen_name":"ako_si_mond","location":"Water World Of Malabon","url":"http:\/\/facebook.com\/raymondmelarpis","description":"\u201cCan I show you, instead of tell you?\u201d","protected":false,"verified":false,"followers_count":9,"friends_count":78,"listed_count":0,"favourites_count":21,"statuses_count":1835,"created_at":"Sat Aug 31 05:48:45 +0000 2013","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"fil","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649880433350410240\/SMsMNnJO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649880433350410240\/SMsMNnJO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1714781047\/1443778624","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/jcvJdZscoN","expanded_url":"http:\/\/fb.me\/6VSUn0L19","display_url":"fb.me\/6VSUn0L19","indices":[27,50]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375716352,"id_str":"663728303375716352","text":"@hanachek_ hakalah ingat bebetul","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727526628323328,"in_reply_to_status_id_str":"663727526628323328","in_reply_to_user_id":3302776812,"in_reply_to_user_id_str":"3302776812","in_reply_to_screen_name":"hanachek_","user":{"id":2886123972,"id_str":"2886123972","name":"una.","screen_name":"unafiqah__","location":null,"url":null,"description":"instagram: @unafiqah l rps","protected":false,"verified":false,"followers_count":123,"friends_count":73,"listed_count":0,"favourites_count":464,"statuses_count":7922,"created_at":"Sat Nov 01 10:39:07 +0000 2014","utc_offset":21600,"time_zone":"Urumqi","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/528817266519834624\/ddIeB8az.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/528817266519834624\/ddIeB8az.jpeg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646751226500091904\/QybH-NXz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646751226500091904\/QybH-NXz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2886123972\/1414909820","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"hanachek_","name":"\u0647\u0627\u0646 \u062c","id":3302776812,"id_str":"3302776812","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388291073,"id_str":"663728303388291073","text":"[\u307e\u3068\u3081]\u3010AKB48\u3011 AKB\u521d\u306e\u30d5\u30a3\u30ea\u30d4\u30f3\u9060\u5f81\u3067\u73fe\u5730\u30d5\u30a1\u30f3\u5927\u76db\u6cc1 \u300c\u30af\u30fc\u30eb\u30b8\u30e3\u30d1\u30f3\u30fb\u30d5\u30a7\u30b9\u30c6\u30a3\u30d0\u30eb\u300d\u306bAKB48\u30c1\u30fc\u30e08\u304c\u51fa\u6f14 https:\/\/t.co\/kz1JCKhS0R","source":"\u003ca href=\"http:\/\/ch.nicovideo.jp\/portal\/blomaga\" rel=\"nofollow\"\u003e\u30cb\u30b3\u30cb\u30b3\u52d5\u753b\u30d6\u30ed\u30de\u30ac\u30e1\u30c7\u30a3\u30a2\u30d7\u30e9\u30f3\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":597356316,"id_str":"597356316","name":"\u3010\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3011\u30ea\u30d5\u30a9\u30ed\u30fc100\uff05","screen_name":"disneyso","location":null,"url":null,"description":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u5e0c\u671b\u3002100\uff05\u30d5\u30a9\u30ed\u30fc\u8fd4\u3057\uff08\u30ea\u30d5\u30a9\u30ed\u30fc\uff09\u3057\u307e\u3059\u3002 | 100% follow back. | #\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc #followme #followback #teamautofollow #teamfollowback #autofollow","protected":false,"verified":false,"followers_count":23208,"friends_count":23567,"listed_count":69,"favourites_count":0,"statuses_count":94329,"created_at":"Sat Jun 02 10:04:58 +0000 2012","utc_offset":32400,"time_zone":"Osaka","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/kz1JCKhS0R","expanded_url":"http:\/\/sfew.net\/articles\/90988.html","display_url":"sfew.net\/articles\/90988\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303413465089,"id_str":"663728303413465089","text":"RT @DazzlingTraffic: 15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2346381092,"id_str":"2346381092","name":"Maharaj Jesson","screen_name":"qacacawiqub","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":408,"friends_count":1662,"listed_count":28,"favourites_count":20820,"statuses_count":38666,"created_at":"Sun Feb 16 06:43:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/442221088110411776\/F2B0CRN8_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/442221088110411776\/F2B0CRN8_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:19 +0000 2015","id":663727825556537346,"id_str":"663727825556537346","text":"15 WTF Reasons That Actually Got People Banned https:\/\/t.co\/9MQWY3OZG5 https:\/\/t.co\/qLCOM0oaBx","source":"\u003ca href=\"https:\/\/www.socialoomph.com\" rel=\"nofollow\"\u003eSocialOomph\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":356229022,"id_str":"356229022","name":"Dazzling Traffic","screen_name":"DazzlingTraffic","location":"Anchorage","url":"http:\/\/linkis.com\/mycheapjobs.com\/Soci\/Rncwi","description":"I will Give you 100,000 Real\/Human\/Unique Visitors for Google adsense. for $40","protected":false,"verified":false,"followers_count":27243,"friends_count":883,"listed_count":11,"favourites_count":0,"statuses_count":1623,"created_at":"Tue Aug 16 14:53:14 +0000 2011","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFF04D","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":false,"profile_link_color":"0099CC","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/619634058595827712\/wAgaleCx_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":52,"favorite_count":26,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[47,70]}],"user_mentions":[],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/9MQWY3OZG5","expanded_url":"http:\/\/shareme.rocks\/sgi2f-wtf_people_got_actually_15_banned_tha8232","display_url":"shareme.rocks\/sgi2f-wtf_peop\u2026","indices":[68,91]}],"user_mentions":[{"screen_name":"DazzlingTraffic","name":"Dazzling Traffic","id":356229022,"id_str":"356229022","indices":[3,19]}],"symbols":[],"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"extended_entities":{"media":[{"id":663727825090961409,"id_str":"663727825090961409","indices":[92,115],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI8LoW4AEYQg1.jpg","url":"https:\/\/t.co\/qLCOM0oaBx","display_url":"pic.twitter.com\/qLCOM0oaBx","expanded_url":"http:\/\/twitter.com\/DazzlingTraffic\/status\/663727825556537346\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":179,"resize":"fit"},"large":{"w":754,"h":397,"resize":"fit"}},"source_status_id":663727825556537346,"source_status_id_str":"663727825556537346","source_user_id":356229022,"source_user_id_str":"356229022"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133666"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388434432,"id_str":"663728303388434432","text":"@fomina5115 \u0441\u043f\u0430\u0441\u0438\u0431\u043e..\u2764\ufe0f\ud83d\ude0d\ud83d\udc30","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728166414983169,"in_reply_to_status_id_str":"663728166414983169","in_reply_to_user_id":2441953319,"in_reply_to_user_id_str":"2441953319","in_reply_to_screen_name":"fomina5115","user":{"id":2758237643,"id_str":"2758237643","name":"Lord of Karma.","screen_name":"Swaaaykaa","location":"Moscow","url":"https:\/\/ficbook.net\/readfic\/3627369","description":"I play drums. I love \u00abTears for Fears\u00bb and 1D. \/\/SOWING THE SEEDS OF LOVE\/\/ \u041c\u0443\u0436 @stupid_paulina \u2764\ufe0f \u041f\u0430\u043f\u043e\u0447\u043a\u0430 @Larry_sex_time \u2764\ufe0f \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u043c\u0430\u043d\u2b50\ufe0f Larry is real !\u25fd\ufe0f","protected":false,"verified":false,"followers_count":2418,"friends_count":2662,"listed_count":12,"favourites_count":6618,"statuses_count":21458,"created_at":"Mon Sep 01 14:24:33 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/608733388426633216\/6LmwlWLA.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/608733388426633216\/6LmwlWLA.jpg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663448537796059136\/UZiAAqyD_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663448537796059136\/UZiAAqyD_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2758237643\/1442945879","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fomina5115","name":"\u2716Queen\u2716\/Solo DM","id":2441953319,"id_str":"2441953319","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375712256,"id_str":"663728303375712256","text":"@sts_21 \n\u3071\u304f\u3068\u3075\u3047\u3042\u308a\u30fc\u3057\u304b\u8a71\u3057\u76f8\u624b\u306e\u3044\u306a\u3044\u5bc2\u3057\u3055\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724016847355905,"in_reply_to_status_id_str":"663724016847355905","in_reply_to_user_id":1287441535,"in_reply_to_user_id_str":"1287441535","in_reply_to_screen_name":"sts_21","user":{"id":2287656685,"id_str":"2287656685","name":"R.I.N.K.O.","screen_name":"Akidu_reon19830","location":"NAOTO\u306e\u5fc3\u306e\u4e2d\u2661","url":null,"description":"HKR54\u671f J3-2 No.8 \/\u690d\u7530\u51dc\u5b50 \/HKR\u751f\u306f\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u30fc\u3044 \/\u5353\u7403\u90e8\u6240\u5c5e \/ N A O T O\u261cBIG LOVE\u2661\u26618.5&30 BP\u53c2\u6226\u6e08\u266110.24 AW\u53c2\u6226\u2661\/\u5f7c\u5973\u52df\u96c6\u4e2d\u2661","protected":false,"verified":false,"followers_count":233,"friends_count":183,"listed_count":1,"favourites_count":4857,"statuses_count":9628,"created_at":"Sun Jan 12 05:03:59 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647412268326498304\/PLGOoy0-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647412268326498304\/PLGOoy0-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2287656685\/1441440621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sts_21","name":"\u308a\u3093\u304b","id":1287441535,"id_str":"1287441535","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303405051904,"id_str":"663728303405051904","text":"tuhan jangan kau putuskan kesabaranku.\njadikan aku orang yang kuat.","source":"\u003ca href=\"https:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web (M2)\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4146038366,"id_str":"4146038366","name":"Winanda zahra afifa","screen_name":"winanda_afifa","location":"lamongan","url":null,"description":"winanda zahra afifa\r\n22 september 1997\r\nuniversitas islam lamongan\r\nekonomi akuntansi","protected":false,"verified":false,"followers_count":0,"friends_count":9,"listed_count":0,"favourites_count":4,"statuses_count":5,"created_at":"Fri Nov 06 12:36:21 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_1_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080133664"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303405068288,"id_str":"663728303405068288","text":"@chimapachi \u30d5\u30a9\u30ed\u30fc\u3042\u308a\u304c\u3068","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":269752501,"in_reply_to_user_id_str":"269752501","in_reply_to_screen_name":"chimapachi","user":{"id":2965265599,"id_str":"2965265599","name":"\u30d2\u30a4\u30ed@LISA\u3063\u5b50\u5e55\u5f35\u3001\u30ea\u30b9\u30a2\u30cb\u53c2\u6226","screen_name":"hiirongt","location":null,"url":null,"description":"\u30b9\u30ce\u30fc\u30dc\u30fc\u30c9\/\u30b9\u30c1\u30fc\u30e0\u30d1\u30f3\u30af\/\u30d3\u30fc\u30ba\u30a2\u30af\u30bb\u4f5c\u308a\/\u76e3\u7344\u5b66\u5712\/\u611b\u77e5\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u30b4\u30e1\u30f3\u306a\u3055\u3044\/\u30e9\u30a4\u30f4\u898b\u306b\u884c\u3063\u3066\u30ea\u30b5\u3063\u5b50\u306b\u306a\u308a\u307e\u3057\u305f\u3002\u5e55\u5f35,GIFUTO,\u30ea\u30b9\u30a2\u30cb\u53c2\u6226\u3001LISA\u597d\u304d\u306a\u4eba\u3001\u30ea\u30b5\u3063\u5b50\u306e\u4eba\u4ef2\u826f\u304f\u3057\u3066\u304f\u3060\u3055\u3044\uff5e\u3002","protected":false,"verified":false,"followers_count":63,"friends_count":94,"listed_count":3,"favourites_count":128,"statuses_count":240,"created_at":"Thu Jan 08 06:07:20 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/573399485549686784\/XzjQXc5r_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/573399485549686784\/XzjQXc5r_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"chimapachi","name":"\u307d\u3044\u307d\u3044\uff20\u304a\u3057\u3083\u306b\u306a\u308b","id":269752501,"id_str":"269752501","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133664"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400841216,"id_str":"663728303400841216","text":"@ryokaS21039 \u3046\u3093\u3001\u3042\u308a\u304c\u3068\u2026\ud83d\ude2d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663669952549773312,"in_reply_to_status_id_str":"663669952549773312","in_reply_to_user_id":785846294,"in_reply_to_user_id_str":"785846294","in_reply_to_screen_name":"ryokaS21039","user":{"id":4022730374,"id_str":"4022730374","name":"\u307e\u3044\u3053","screen_name":"hhydnHh7G2qwYL4","location":null,"url":null,"description":"\u30de\u30a4\u30e1\u30ed\u3061\u3083\u3093\/\u30d4\u30f3\u30af\/\u30df\u30eb\u30af\u30c6\u30a3\u30fc\u2764\ufe0fLove\u2764\ufe0f \u30de\u30a4\u30e1\u30ed\u3061\u3083\u3093\u4e0e\u3048\u308b\u3068\u559c\u3073\u307e\u3059w","protected":false,"verified":false,"followers_count":19,"friends_count":23,"listed_count":0,"favourites_count":92,"statuses_count":46,"created_at":"Mon Oct 26 09:01:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663534702502895616\/TFp1Igo3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663534702502895616\/TFp1Igo3_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ryokaS21039","name":"\u7e5a\u83ef@\u5909\u614b\u306f\u6ef2\u307f\u51fa\u308b","id":785846294,"id_str":"785846294","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400837120,"id_str":"663728303400837120","text":"RT @13elieveSG: [HD PIC] 151109 Lotte Duty Free Update - Our charming boys posing handsomely for the camera \ud83d\udc99 [2P] https:\/\/t.co\/EmxrrazUFb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":288649341,"id_str":"288649341","name":"Mum","screen_name":"oriteukie_","location":"SJ Label","url":null,"description":"I Warned You . For Your Own Good Please Do Not Press Follow Button On This Account . My grammar : As Long As You Understand What I Mean To Say~","protected":false,"verified":false,"followers_count":389,"friends_count":313,"listed_count":8,"favourites_count":2171,"statuses_count":39580,"created_at":"Wed Apr 27 06:59:21 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A17657","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/717407554\/f80a1f520435495adee6cef76f8d20d7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/717407554\/f80a1f520435495adee6cef76f8d20d7.jpeg","profile_background_tile":true,"profile_link_color":"2E9C55","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654822755196534784\/LFHCNhBB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654822755196534784\/LFHCNhBB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/288649341\/1436424135","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:09:02 +0000 2015","id":663719953082638337,"id_str":"663719953082638337","text":"[HD PIC] 151109 Lotte Duty Free Update - Our charming boys posing handsomely for the camera \ud83d\udc99 [2P] https:\/\/t.co\/EmxrrazUFb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":150371130,"id_str":"150371130","name":"13elieveSG","screen_name":"13elieveSG","location":"Singapore, International","url":"http:\/\/facebook.com\/13elieveSG","description":"Pronounced as Believe SG. An everlasting love & 13elieve for SUPER JUNIOR. We respect 15. \uc601\uc6d0\ud558\uc790 \uc288\uc8fc\uc5d8\ud504 \u2665 FB: http:\/\/fbl.me\/13SG \u5fae\u535a: http:\/\/weibo.com\/13elieveSG","protected":false,"verified":false,"followers_count":114902,"friends_count":30,"listed_count":1402,"favourites_count":61,"statuses_count":77400,"created_at":"Mon May 31 19:30:46 +0000 2010","utc_offset":28800,"time_zone":"Singapore","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000120866823\/a5e4c0ac30c727c7043332e04d0fd722.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000120866823\/a5e4c0ac30c727c7043332e04d0fd722.jpeg","profile_background_tile":false,"profile_link_color":"1100FF","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662918928021065728\/Xv3SmfgC_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662918928021065728\/Xv3SmfgC_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/150371130\/1446735960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":76,"favorite_count":45,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719925207330817,"id_str":"663719925207330817","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719925207330817,"id_str":"663719925207330817","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663719926163615744,"id_str":"663719926163615744","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwZ1UsAAVCAp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwZ1UsAAVCAp.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"13elieveSG","name":"13elieveSG","id":150371130,"id_str":"150371130","indices":[3,14]}],"symbols":[],"media":[{"id":663719925207330817,"id_str":"663719925207330817","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663719953082638337,"source_status_id_str":"663719953082638337","source_user_id":150371130,"source_user_id_str":"150371130"}]},"extended_entities":{"media":[{"id":663719925207330817,"id_str":"663719925207330817","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwWRU8AEb8Uj.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663719953082638337,"source_status_id_str":"663719953082638337","source_user_id":150371130,"source_user_id_str":"150371130"},{"id":663719926163615744,"id_str":"663719926163615744","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBwZ1UsAAVCAp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBwZ1UsAAVCAp.jpg","url":"https:\/\/t.co\/EmxrrazUFb","display_url":"pic.twitter.com\/EmxrrazUFb","expanded_url":"http:\/\/twitter.com\/13elieveSG\/status\/663719953082638337\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663719953082638337,"source_status_id_str":"663719953082638337","source_user_id":150371130,"source_user_id_str":"150371130"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392620544,"id_str":"663728303392620544","text":"RT @popwrecked: #BreakingNews on the RIHANNA SEX TAPE! @drunkstepfather has all the salacious details! https:\/\/t.co\/ZpPCZG9Zyz https:\/\/t.co\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4149264437,"id_str":"4149264437","name":"sluss beas","screen_name":"slussbeasjo0","location":"Genova, Italy","url":null,"description":null,"protected":false,"verified":false,"followers_count":1,"friends_count":1,"listed_count":0,"favourites_count":8,"statuses_count":18,"created_at":"Mon Nov 09 13:05:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726501637001216\/-zuChNvf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726501637001216\/-zuChNvf_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 08:11:57 +0000 2015","id":663630087548465152,"id_str":"663630087548465152","text":"#BreakingNews on the RIHANNA SEX TAPE! @drunkstepfather has all the salacious details! https:\/\/t.co\/ZpPCZG9Zyz https:\/\/t.co\/aH4vC7MHb5","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":120325806,"id_str":"120325806","name":"doug west","screen_name":"popwrecked","location":null,"url":null,"description":"The official Twitter account for http:\/\/www.popwrecked.com \r\n\r\nIf you're pissed off at me, it probably means you did something deliciously scandalous!","protected":false,"verified":false,"followers_count":247200,"friends_count":1451,"listed_count":65,"favourites_count":1041,"statuses_count":18846,"created_at":"Sat Mar 06 03:33:16 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/613779440275996672\/BEa48pr9.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/613779440275996672\/BEa48pr9.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606867390568267777\/_4qXsI0I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606867390568267777\/_4qXsI0I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/120325806\/1433524272","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":699,"favorite_count":699,"entities":{"hashtags":[{"text":"BreakingNews","indices":[0,13]}],"urls":[{"url":"https:\/\/t.co\/ZpPCZG9Zyz","expanded_url":"http:\/\/drunkenstepfather.com\/2015\/11\/05\/the-amazing-rihanna-fake-sex-tape-pic-of-the-day","display_url":"drunkenstepfather.com\/2015\/11\/05\/the\u2026","indices":[87,110]}],"user_mentions":[{"screen_name":"drunkstepfather","name":"drunkenstepfather","id":16970248,"id_str":"16970248","indices":[39,55]}],"symbols":[],"media":[{"id":663630087053443072,"id_str":"663630087053443072","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","url":"https:\/\/t.co\/aH4vC7MHb5","display_url":"pic.twitter.com\/aH4vC7MHb5","expanded_url":"http:\/\/twitter.com\/popwrecked\/status\/663630087548465152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"},"large":{"w":749,"h":386,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663630087053443072,"id_str":"663630087053443072","indices":[111,134],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","url":"https:\/\/t.co\/aH4vC7MHb5","display_url":"pic.twitter.com\/aH4vC7MHb5","expanded_url":"http:\/\/twitter.com\/popwrecked\/status\/663630087548465152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"},"large":{"w":749,"h":386,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"BreakingNews","indices":[16,29]}],"urls":[{"url":"https:\/\/t.co\/ZpPCZG9Zyz","expanded_url":"http:\/\/drunkenstepfather.com\/2015\/11\/05\/the-amazing-rihanna-fake-sex-tape-pic-of-the-day","display_url":"drunkenstepfather.com\/2015\/11\/05\/the\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"popwrecked","name":"doug west","id":120325806,"id_str":"120325806","indices":[3,14]},{"screen_name":"drunkstepfather","name":"drunkenstepfather","id":16970248,"id_str":"16970248","indices":[55,71]}],"symbols":[],"media":[{"id":663630087053443072,"id_str":"663630087053443072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","url":"https:\/\/t.co\/aH4vC7MHb5","display_url":"pic.twitter.com\/aH4vC7MHb5","expanded_url":"http:\/\/twitter.com\/popwrecked\/status\/663630087548465152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"},"large":{"w":749,"h":386,"resize":"fit"}},"source_status_id":663630087548465152,"source_status_id_str":"663630087548465152","source_user_id":120325806,"source_user_id_str":"120325806"}]},"extended_entities":{"media":[{"id":663630087053443072,"id_str":"663630087053443072","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWwDFEVAAAMPhw.jpg","url":"https:\/\/t.co\/aH4vC7MHb5","display_url":"pic.twitter.com\/aH4vC7MHb5","expanded_url":"http:\/\/twitter.com\/popwrecked\/status\/663630087548465152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":308,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":174,"resize":"fit"},"large":{"w":749,"h":386,"resize":"fit"}},"source_status_id":663630087548465152,"source_status_id_str":"663630087548465152","source_user_id":120325806,"source_user_id_str":"120325806"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400984577,"id_str":"663728303400984577","text":"LIVE on #Periscope: 4 Ways To Beat \ud83d\ude21The Stress\ud83d\ude28 of Buying A Home\ud83c\udfe0 https:\/\/t.co\/HPA0X5FruZ","source":"\u003ca href=\"https:\/\/periscope.tv\" rel=\"nofollow\"\u003ePeriscope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573042593,"id_str":"573042593","name":"Vishal Kapoor","screen_name":"VishForYourHome","location":"Oakville, Onatrio, Canada","url":"http:\/\/www.vishforyourhome.ca","description":"Real Estate Agent * Real Estate Service","protected":false,"verified":false,"followers_count":230,"friends_count":515,"listed_count":2,"favourites_count":8,"statuses_count":358,"created_at":"Sun May 06 21:44:30 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/655186257723662336\/28aHUtNT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/655186257723662336\/28aHUtNT.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/632354792883519488\/tzlEaztl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/632354792883519488\/tzlEaztl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573042593\/1445132023","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Periscope","indices":[8,18]}],"urls":[{"url":"https:\/\/t.co\/HPA0X5FruZ","expanded_url":"https:\/\/www.periscope.tv\/w\/aRCoRTEzNjgwMzQxfDFsUEtxTnZWYU5iR2LuAKY8OX9HpVPKH9X2GnLHGFc1fH38HJg6vR_W5cAa_w==","display_url":"periscope.tv\/w\/aRCoRTEzNjgw\u2026","indices":[66,89]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303413465088,"id_str":"663728303413465088","text":"RT @SMent_EXO: LAY XIUMIN for Lotte Duty Free\nhttps:\/\/t.co\/3z7GFy3HoU\nhttps:\/\/t.co\/Km2Cf9y6Qi https:\/\/t.co\/yX5iaExRdM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1440223812,"id_str":"1440223812","name":"Fujosii_Hardd","screen_name":"pikaatun98","location":"Indonesia ","url":null,"description":"EXO \u2661 EXOL\n CHANBAEK_KAISOO","protected":false,"verified":false,"followers_count":129,"friends_count":73,"listed_count":0,"favourites_count":35,"statuses_count":11879,"created_at":"Sun May 19 05:04:18 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652515691103285248\/-2XZU7mf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652515691103285248\/-2XZU7mf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1440223812\/1444406884","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:10:14 +0000 2015","id":663720254535659524,"id_str":"663720254535659524","text":"LAY XIUMIN for Lotte Duty Free\nhttps:\/\/t.co\/3z7GFy3HoU\nhttps:\/\/t.co\/Km2Cf9y6Qi https:\/\/t.co\/yX5iaExRdM","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":283102669,"id_str":"283102669","name":"SMent_EXO!","screen_name":"SMent_EXO","location":"GLOBAL","url":"http:\/\/ask.fm\/AskSMentEXO","description":"Your EXO source! Support 12 since 11\/04\/16 [@YifanLuhanTao] Email: contact.smentexo@gmail.com","protected":false,"verified":false,"followers_count":626954,"friends_count":88,"listed_count":2342,"favourites_count":45,"statuses_count":38450,"created_at":"Sat Apr 16 15:44:26 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000203","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000005251125\/4f096b8d9050a7ef674294541e1a4cf4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000005251125\/4f096b8d9050a7ef674294541e1a4cf4.jpeg","profile_background_tile":false,"profile_link_color":"808080","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"000000","profile_text_color":"FAFAFA","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639796760680882176\/wiiT9wAF_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639796760680882176\/wiiT9wAF_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/283102669\/1441371835","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":99,"favorite_count":142,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3z7GFy3HoU","expanded_url":"http:\/\/kr.lottedfs.com\/attach\/view\/14439","display_url":"kr.lottedfs.com\/attach\/view\/14\u2026","indices":[31,54]},{"url":"https:\/\/t.co\/Km2Cf9y6Qi","expanded_url":"http:\/\/kr.lottedfs.com\/attach\/view\/14442","display_url":"kr.lottedfs.com\/attach\/view\/14\u2026","indices":[55,78]}],"user_mentions":[],"symbols":[],"media":[{"id":663720206238224384,"id_str":"663720206238224384","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720206238224384,"id_str":"663720206238224384","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}},{"id":663720226131869697,"id_str":"663720226131869697","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCB3TVAAEMn3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCB3TVAAEMn3c.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3z7GFy3HoU","expanded_url":"http:\/\/kr.lottedfs.com\/attach\/view\/14439","display_url":"kr.lottedfs.com\/attach\/view\/14\u2026","indices":[46,69]},{"url":"https:\/\/t.co\/Km2Cf9y6Qi","expanded_url":"http:\/\/kr.lottedfs.com\/attach\/view\/14442","display_url":"kr.lottedfs.com\/attach\/view\/14\u2026","indices":[70,93]}],"user_mentions":[{"screen_name":"SMent_EXO","name":"SMent_EXO!","id":283102669,"id_str":"283102669","indices":[3,13]}],"symbols":[],"media":[{"id":663720206238224384,"id_str":"663720206238224384","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663720254535659524,"source_status_id_str":"663720254535659524","source_user_id":283102669,"source_user_id_str":"283102669"}]},"extended_entities":{"media":[{"id":663720206238224384,"id_str":"663720206238224384","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCAtMUEAA4Q0s.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663720254535659524,"source_status_id_str":"663720254535659524","source_user_id":283102669,"source_user_id_str":"283102669"},{"id":663720226131869697,"id_str":"663720226131869697","indices":[94,117],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCB3TVAAEMn3c.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCB3TVAAEMn3c.jpg","url":"https:\/\/t.co\/yX5iaExRdM","display_url":"pic.twitter.com\/yX5iaExRdM","expanded_url":"http:\/\/twitter.com\/SMent_EXO\/status\/663720254535659524\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":176,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":311,"resize":"fit"},"large":{"w":796,"h":413,"resize":"fit"}},"source_status_id":663720254535659524,"source_status_id_str":"663720254535659524","source_user_id":283102669,"source_user_id_str":"283102669"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133666"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409229824,"id_str":"663728303409229824","text":"RT @makaroro86: \u304a\u7a3d\u53e4\u3067\u3057\u305f\uff01\uff11\uff12\u6708\u306b\u672c\u756a\u3001\u4e0a\u91ce\u30b9\u30c8\u30a2\u30cf\u30a6\u30b9\u306b\u3066\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u2606\n\uff19(\u6c34)19:00\n10(\u6728)19:00\n11(\u91d1)14:00\n12(\u571f)19:00\n13(\u65e5)13:00\n\u4e88\u7d04\u2192https:\/\/t.co\/bzZatJC0OY https:\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1923156985,"id_str":"1923156985","name":"\u5e0c\u5c71\u660e\u91cc Kiyama.A","screen_name":"AkariKiyama","location":"USA.JPN.","url":"http:\/\/ameblo.jp\/akarikiyama\/","description":"across ent.(semi) \/ voice over+acting. rainbow town FM79.2\u300cACROSS TALK\u300devery Tuesday 22:30\u301cO.A. \u261d\ufe0e@across_talk792 follow plz!! #\u30a2\u30af\u30ed\u30b9\u30c8\u30fc\u30af","protected":false,"verified":false,"followers_count":455,"friends_count":328,"listed_count":15,"favourites_count":3283,"statuses_count":15517,"created_at":"Tue Oct 01 11:15:11 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661243491029151744\/hchjH1Rs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661243491029151744\/hchjH1Rs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1923156985\/1446998671","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:20 +0000 2015","id":663725312916611074,"id_str":"663725312916611074","text":"\u304a\u7a3d\u53e4\u3067\u3057\u305f\uff01\uff11\uff12\u6708\u306b\u672c\u756a\u3001\u4e0a\u91ce\u30b9\u30c8\u30a2\u30cf\u30a6\u30b9\u306b\u3066\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\u2606\n\uff19(\u6c34)19:00\n10(\u6728)19:00\n11(\u91d1)14:00\n12(\u571f)19:00\n13(\u65e5)13:00\n\u4e88\u7d04\u2192https:\/\/t.co\/bzZatJC0OY https:\/\/t.co\/Q9PU96nS2a","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2885732736,"id_str":"2885732736","name":"\u5009\u5185 \u30de\u30ea\u30ab","screen_name":"makaroro86","location":null,"url":"http:\/\/across-ent.com\/talent\/women\/marika_kurauchi.html","description":"\u682a\u5f0f\u4f1a\u793e\u30a2\u30af\u30ed\u30b9\u30a8\u30f3\u30bf\u30c6\u30a4\u30f3\u30e1\u30f3\u30c8\u3067\u304a\u4e16\u8a71\u306b\u306a\u3063\u3066\u304a\u308a\u307e\u3059\u5009\u5185\u30de\u30ea\u30ab\u3067\u3059\u3002\u30b9\u30dd\u30fc\u30c4\u5927\u597d\u304d\uff01\u30b0\u30df\u3068\u30b3\u30b3\u30a2\u5927\u597d\u304d\uff01\u30a2\u30a4\u30c9\u30eb\u5927\u597d\u304d\uff01\u5b9c\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059(\u25cf\u00b4\u03c9\uff40\u25cf)","protected":false,"verified":false,"followers_count":136,"friends_count":70,"listed_count":3,"favourites_count":29,"statuses_count":516,"created_at":"Sat Nov 01 02:38:37 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/532512382606524416\/6AHceQ83_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/532512382606524416\/6AHceQ83_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2885732736\/1439159910","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663719237274329088,"quoted_status_id_str":"663719237274329088","quoted_status":{"created_at":"Mon Nov 09 14:06:12 +0000 2015","id":663719237274329088,"id_str":"663719237274329088","text":"\u300e\u5e30\u3063\u3066\u304d\u305f\u30a2\u30f3\u30c1\u30e7\u30d3\u30fc\u300f\u7a3d\u53e4\u672c\u65e5\u3082\u7d42\u4e86\u3002\u30c0\u30f3\u30b9\u7df4\u7fd2\u3082\u59cb\u307e\u308a\u307e\u3057\u305f\u3002\u5199\u771f\u306f\u306a\u304b\u306a\u304b\u829d\u5c45\u304c\u3046\u307e\u304f\u3044\u304b\u306a\u304f\u3066\u60a9\u3080\u307f\u3093\u306a\u3002\u4e00\u4eba\u3060\u3051\u904a\u3093\u3067\u308b\u4eba\u3044\u308b\u3051\u3069\u3002 https:\/\/t.co\/WrVYNWyuuI","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":109640748,"id_str":"109640748","name":"\u6c5f\u6238\u5ddd\u5d07","screen_name":"edogawa69","location":"\u6771\u4eac\u90fd","url":"http:\/\/ameblo.jp\/karasuka69\/","description":"\u30ab\u30e9\u30b9\u30ab\u3068\u3044\u3046\u5287\u56e3\u3092\u4e3b\u5bb0\u3057\u3001\u811a\u672c\u5bb6\u7684\u6d3b\u52d5\u3084\u6f14\u51fa\u5bb6\u7684\u6d3b\u52d5\u3082\u3057\u3066\u3044\u308b\u8005\u3067\u3059\u3002\r\n\u30ac\u30f3\u30d0\u5927\u962a\u30b5\u30dd\u30fc\u30bf\u30fc\u300212\/8\uff5e12\/13\u300e\u5e30\u3063\u3066\u304d\u305f\u30a2\u30f3\u30c1\u30e7\u30d3\u30fc\u300f\u304a\u4ed5\u4e8b\u306e\u5fa1\u4f9d\u983c\u7b49\u306fkarasuka69@yahoo.co.jp\u3078\u3002","protected":false,"verified":false,"followers_count":1177,"friends_count":434,"listed_count":32,"favourites_count":152,"statuses_count":9709,"created_at":"Fri Jan 29 19:16:49 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C684E0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"038543","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1257144581\/_____normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1257144581\/_____normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109640748\/1444932426","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663719229313540096,"id_str":"663719229313540096","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBH13UYAASWwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBH13UYAASWwp.jpg","url":"https:\/\/t.co\/WrVYNWyuuI","display_url":"pic.twitter.com\/WrVYNWyuuI","expanded_url":"http:\/\/twitter.com\/edogawa69\/status\/663719237274329088\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719229313540096,"id_str":"663719229313540096","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBH13UYAASWwp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBH13UYAASWwp.jpg","url":"https:\/\/t.co\/WrVYNWyuuI","display_url":"pic.twitter.com\/WrVYNWyuuI","expanded_url":"http:\/\/twitter.com\/edogawa69\/status\/663719237274329088\/photo\/1","type":"photo","sizes":{"large":{"w":960,"h":540,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}},{"id":663719231792377856,"id_str":"663719231792377856","indices":[73,96],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBH_GUcAAsh-i.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBH_GUcAAsh-i.jpg","url":"https:\/\/t.co\/WrVYNWyuuI","display_url":"pic.twitter.com\/WrVYNWyuuI","expanded_url":"http:\/\/twitter.com\/edogawa69\/status\/663719237274329088\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"large":{"w":1024,"h":771,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":451,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bzZatJC0OY","expanded_url":"http:\/\/ticket.corich.jp\/apply\/68365\/mrk\/","display_url":"ticket.corich.jp\/apply\/68365\/mr\u2026","indices":[92,115]},{"url":"https:\/\/t.co\/Q9PU96nS2a","expanded_url":"https:\/\/twitter.com\/edogawa69\/status\/663719237274329088","display_url":"twitter.com\/edogawa69\/stat\u2026","indices":[116,139]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bzZatJC0OY","expanded_url":"http:\/\/ticket.corich.jp\/apply\/68365\/mrk\/","display_url":"ticket.corich.jp\/apply\/68365\/mr\u2026","indices":[108,131]},{"url":"https:\/\/t.co\/Q9PU96nS2a","expanded_url":"https:\/\/twitter.com\/edogawa69\/status\/663719237274329088","display_url":"twitter.com\/edogawa69\/stat\u2026","indices":[139,140]}],"user_mentions":[{"screen_name":"makaroro86","name":"\u5009\u5185 \u30de\u30ea\u30ab","id":2885732736,"id_str":"2885732736","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303379845120,"id_str":"663728303379845120","text":"12\u6708\u304b\u3089\u6697\u6bba\u7de8\u306f\u3044\u3063\u3066\u300110\u6708\u304f\u3089\u3044\u306b\u30a2\u30cb\u9280\u307e\u305f\u7d42\u308f\u3063\u3066\u3001\u518d\u6765\u5e74\u306e1\u6708\u98033\u90e8\u4f5c\u304f\u3089\u3044\u306e\u6697\u6bba\u7de8\u306e\u5287\u5834\u7248\u3084\u308b\u3093\u3058\u3083\u306a\u3044\u304b\u3068\u3044\u3046\u4e88\u60f3\u3002","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":255915976,"id_str":"255915976","name":"\u795e\u5a01\u306e\u30a2\u30db\u6bdb(\u8389\u7d17)","screen_name":"ricchan_plus","location":"\u30a4\u30f3\u30da\u30eb\u30c0\u30a6\u30f3","url":null,"description":"\u9280\u9b42\/\u3046\u305f\u30d7\u30ea\/\u3068\u3046\u3089\u3076\/CLAMP\/V6\/VOCALOID \u306a\u3069\u304c\u597d\u304d\u3067\u3059\u3002\u9280\u9b42\u304c\u7d42\u308f\u308b\u6642\u3001\u79c1\u306e\u4eba\u751f\u3082\u7d42\u308f\u308b\u3002\u30ec\u30a4\u30e4\u30fc\u304b\u3082\u3057\u308c\u306a\u3044\u3057\u30ec\u30a4\u30e4\u30fc\u3058\u3083\u306a\u3044\u304b\u3082\u3057\u308c\u306a\u3044\u3002","protected":false,"verified":false,"followers_count":207,"friends_count":161,"listed_count":4,"favourites_count":2429,"statuses_count":30420,"created_at":"Tue Feb 22 08:36:02 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF69B4","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/854223209\/5d93a3fb5529558f5978044d54a0eead.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/854223209\/5d93a3fb5529558f5978044d54a0eead.jpeg","profile_background_tile":true,"profile_link_color":"FF1493","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646710838351425537\/AfhIuiaI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646710838351425537\/AfhIuiaI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/255915976\/1430328546","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133658"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409201153,"id_str":"663728303409201153","text":"If you think your day is bad I just had to take an algebra test I didn't know about on the one day I forgot my calculator\ud83d\ude43","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":949888765,"id_str":"949888765","name":"Tyler Moran","screen_name":"tyler_moran208","location":"Wichita Falls, TX","url":null,"description":"Find what you love and let it kill you - MSU","protected":false,"verified":false,"followers_count":493,"friends_count":418,"listed_count":2,"favourites_count":12404,"statuses_count":5214,"created_at":"Thu Nov 15 14:51:12 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644224284366278656\/4Um4eEsv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644224284366278656\/4Um4eEsv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/949888765\/1430812344","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303392485376,"id_str":"663728303392485376","text":"RT @__OKHA: \uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1433355582,"id_str":"1433355582","name":"[\ubc18\ub3d9\uacb0]\u3145l\u3132\u3153","screen_name":"yooncy19351","location":"\uc5ed\uc2dc \ud604\uc7a5\uc774\uc9c0 \ub9d0\uc785\ub2c8\ub2e4!","url":"http:\/\/m.blog.naver.com\/yooncy1935","description":"\uadf8\ub9bc\uc7c1\uc774\/\uc7a1\ub355\/2D,2.5D,3D\/\uc5ec\ub7ec\uac00\uc9c0 \ub9ce\uc774 \ud31d\ub2c8\ub2e4 \/\uc694\uc998 \ub2cc\ud0c0\ub9c8,\uc624\uc18c\ub9c8\uce20\uc0c1 \uac15\ud654\uae30\uac04\/\ud314\ub85c \uc790\uc720,\ub9de\ud314\uc740 \ud2b8\uce5c\uc18c\ub54c\ub9cc\/\uc778\uc7a5: \uc874\uc798\ub2d8 \uc140\ub2d8","protected":false,"verified":false,"followers_count":694,"friends_count":455,"listed_count":7,"favourites_count":5816,"statuses_count":16045,"created_at":"Thu May 16 15:33:29 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/511861789294747649\/kfL0YR-6.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/511861789294747649\/kfL0YR-6.png","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657937750381821953\/rVn_n3BK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657937750381821953\/rVn_n3BK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1433355582\/1431194723","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 05:02:51 +0000 2015","id":662857723415912448,"id_str":"662857723415912448","text":"\uc81c\ub178\uc2a4\uac00 \uc0ac\uc774\ud0c0\ub9c8 \ubc11\uc5d0\uc11c \ubc30\uc6b0\uac8c \ub41c \uac83 https:\/\/t.co\/5JlALo2Odf","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2328479976,"id_str":"2328479976","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","screen_name":"__OKHA","location":null,"url":null,"description":"\u30da\u30c0\u30eb l \ud504\ub85c \uc7a1\ub355 l \ubc30\uacbd\uc740 \ub51c\ub2d8\uc758, \ud5e4\ub354\ub294 \ud344\ucc28\ub2d8\uc758 \ucee4\ubbf8\uc158 l\n\uad6c\ub3c5 \ub9ce\uc774 \ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":2555,"friends_count":503,"listed_count":21,"favourites_count":7727,"statuses_count":14900,"created_at":"Wed Feb 05 09:10:25 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/575512803097739264\/Da_c5AdS.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659254360002564096\/reRU0ybW_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2328479976\/1427255632","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1685,"favorite_count":498,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[22,45],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"__OKHA","name":"\u2764\uc7c9\ub2d8\uc758 \uc624\uae61\/\u30aa\u30ab\u2764","id":2328479976,"id_str":"2328479976","indices":[3,10]}],"symbols":[],"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"extended_entities":{"media":[{"id":662857722011000833,"id_str":"662857722011000833","indices":[34,57],"media_url":"http:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTLxlhEXIAElMZM.png","url":"https:\/\/t.co\/5JlALo2Odf","display_url":"pic.twitter.com\/5JlALo2Odf","expanded_url":"http:\/\/twitter.com\/__OKHA\/status\/662857723415912448\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":547,"resize":"fit"},"small":{"w":340,"h":310,"resize":"fit"},"large":{"w":1024,"h":934,"resize":"fit"}},"source_status_id":662857723415912448,"source_status_id_str":"662857723415912448","source_user_id":2328479976,"source_user_id_str":"2328479976"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080133661"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375708160,"id_str":"663728303375708160","text":"\ud83c\udfad\ud83d\ude06 \u266b Topeng by peterpan \u2014 https:\/\/t.co\/L9txJ8cEej","source":"\u003ca href=\"https:\/\/path.com\/\" rel=\"nofollow\"\u003ePath\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":327282611,"id_str":"327282611","name":"Luthfan koto","screen_name":"luthfan16","location":null,"url":null,"description":"line&path, luthfankoto","protected":false,"verified":false,"followers_count":502,"friends_count":117,"listed_count":0,"favourites_count":2,"statuses_count":11965,"created_at":"Fri Jul 01 09:15:58 +0000 2011","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000170373797\/ZKIk0xix.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000170373797\/ZKIk0xix.jpeg","profile_background_tile":true,"profile_link_color":"D02B55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/614927094678556672\/n5to3Twk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/614927094678556672\/n5to3Twk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/327282611\/1435445072","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/L9txJ8cEej","expanded_url":"https:\/\/path.com\/p\/30gouo","display_url":"path.com\/p\/30gouo","indices":[26,49]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303379886080,"id_str":"663728303379886080","text":"RT @midori0229: #\u798f\u5c71\u6f64\u751f\u8a95\u796d2015\n#11\u670826\u65e5\u306f\u798f\u5c71\u6f64\u306e\u8a95\u751f\u65e5\n#11\u670826\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059\n#\u798f\u5c71\u6f64\u611b\u3057\u3066\u308b\u4ebaRT\n#\u58f0\u512a\u30af\u30e9\u30b9\u30bfRT\n#\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT\n\u7121\u7406\u306a\u306e\u306f\u308f\u304b\u3063\u3066\u3044\u308b\u3051\u3069\u3001\u798f\u6f64\u3055\u3093\u5927\u597d\u304d\u306a\u306e\u3067\u3001\u3054\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059\uff01 https:\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3110133678,"id_str":"3110133678","name":"\u30a2\u30ab\u3048\u3082\u3093\u5b9f\u7fd2\u306e\u305f\u3081\u4f4e\u6d6e\u4e0a","screen_name":"okomefamily","location":null,"url":null,"description":"Like\u279d\uff17\uff01\uff01\u3001goose hose\u3001KANA\u2212BOON\u3001WEAVER\u3001\u52d5\u7269\u3000\u3000\u3000\u3000\u3000\nLOVE\u279d\u798f\u5c71\u6f64\u3001DABA\u3001\u732b\u3001\u30a2\u30cb\u30e1\u3001\u58f0\u512a\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\u3000\nRT\u3001\u2661\u591a\u3081\u3067\u3059\uff01\u305d\u308c\u3067\u3082\u3044\u30fc\u306a\u3089\u4ef2\u826f\u304f\u3057\u3066\u4e0b\u3055\u3044(\u00b0\u2200\u00b0 )\/\u547c\u3073\u30bf\u30e1\u5927\u6b53\u8fce\u2728\u2728\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u6c17\u3065\u304f\u306e\u9045\u3044\u304b\u3082\u3067\u3059\u3002\u3002\u3002","protected":false,"verified":false,"followers_count":124,"friends_count":109,"listed_count":3,"favourites_count":1477,"statuses_count":1458,"created_at":"Fri Mar 27 14:17:32 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658917389371748352\/-VCV7WdM_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658917389371748352\/-VCV7WdM_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3110133678\/1446916423","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:26:50 +0000 2015","id":663709331695644672,"id_str":"663709331695644672","text":"#\u798f\u5c71\u6f64\u751f\u8a95\u796d2015\n#11\u670826\u65e5\u306f\u798f\u5c71\u6f64\u306e\u8a95\u751f\u65e5\n#11\u670826\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059\n#\u798f\u5c71\u6f64\u611b\u3057\u3066\u308b\u4ebaRT\n#\u58f0\u512a\u30af\u30e9\u30b9\u30bfRT\n#\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT\n\u7121\u7406\u306a\u306e\u306f\u308f\u304b\u3063\u3066\u3044\u308b\u3051\u3069\u3001\u798f\u6f64\u3055\u3093\u5927\u597d\u304d\u306a\u306e\u3067\u3001\u3054\u5354\u529b\u304a\u9858\u3044\u3057\u307e\u3059\uff01 https:\/\/t.co\/OnJppBOwAV","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3321305719,"id_str":"3321305719","name":"\u60a0\u51db\uff20\u9065\u3000\u5343\u9cf3\u306e\u30aa\u30e0\u30e9\u30a4\u30b9\u3068\u30c1\u30e7\u30b3\u98df\u3059\u3000","screen_name":"midori0229","location":"\u65e5\u672c\u3000\u4e26\u68ee","url":"http:\/\/twpf.jp\/midori0229","description":"\u30c4\u30a4\u30d7\u30ed\u5fc5\u8aad\uff01\u6839\u3063\u304b\u3089\u306e\u8150\u5973\u5b50\u3067\u3059\u2606\u8da3\u5473\u5408\u3046\u4eba\u306f\u57fa\u672c\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u2606\u30a2\u30cb\u30e1\u5168\u822c\/\u58f0\u512a\/\u30dc\u30ab\u30ed\/\u83dc\u306e\u82b1\u30dc\u30fc\u30a4\u30ba\/no.6\/\u9752\u9283\/\u6b4c\u3044\u624b\/free\/\u5f31\u30da\u30c0\/\u30ab\u30b2\u30d7\u30ed\/\u66c7\u5929\/\u9280\u9b42\/D\u30b0\u30ec\/\u7d14\u30ed\u30de\/\u3046\u305f\u30d7\u30ea\/\u9ed2\u30d0\u30b9\/\u30ea\u30dc\u30fc\u30f3\/\uff28\uff31\/\u55b0\u7a2e\/\u5200\u3089\u3076\u4e09\u65e5\u6708\u63a8\u3057\u2606\u3010\u9752\u6625\u00d7\u540c\u76df\u3011\u3010\u3050\u3061\u3083\u3050\u3061\u3083\u540c\u76df\u3011\u3010\u5909\u4eba\u540c\u76df\u3011\u3010\u61d0\u304b\u3057\u3044\u30a2\u30cb\u30e1\u597d\u304d\u540c\u76df\u3011","protected":false,"verified":false,"followers_count":1672,"friends_count":2147,"listed_count":30,"favourites_count":3495,"statuses_count":8165,"created_at":"Thu Aug 20 11:25:48 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640127439465635840\/VRVWK104_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640127439465635840\/VRVWK104_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3321305719\/1440074050","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":18,"favorite_count":5,"entities":{"hashtags":[{"text":"\u798f\u5c71\u6f64\u751f\u8a95\u796d2015","indices":[0,11]},{"text":"11\u670826\u65e5\u306f\u798f\u5c71\u6f64\u306e\u8a95\u751f\u65e5","indices":[12,27]},{"text":"11\u670826\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059","indices":[28,47]},{"text":"\u798f\u5c71\u6f64\u611b\u3057\u3066\u308b\u4ebaRT","indices":[48,59]},{"text":"\u58f0\u512a\u30af\u30e9\u30b9\u30bfRT","indices":[60,69]},{"text":"\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT","indices":[70,80]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663709323822940160,"id_str":"663709323822940160","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":459,"h":800,"resize":"fit"},"small":{"w":340,"h":592,"resize":"fit"},"large":{"w":459,"h":800,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663709323822940160,"id_str":"663709323822940160","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":459,"h":800,"resize":"fit"},"small":{"w":340,"h":592,"resize":"fit"},"large":{"w":459,"h":800,"resize":"fit"}}},{"id":663709325622312960,"id_str":"663709325622312960","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HXvVAAAH8VZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HXvVAAAH8VZ.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}}},{"id":663709325932691456,"id_str":"663709325932691456","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HY5VAAAN4CL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HY5VAAAN4CL.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}}},{"id":663709329850134528,"id_str":"663709329850134528","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HnfUcAA1q_F.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HnfUcAA1q_F.png","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u798f\u5c71\u6f64\u751f\u8a95\u796d2015","indices":[16,27]},{"text":"11\u670826\u65e5\u306f\u798f\u5c71\u6f64\u306e\u8a95\u751f\u65e5","indices":[28,43]},{"text":"11\u670826\u65e5\u307e\u3067\u306b1126RT\u76ee\u6307\u3059","indices":[44,63]},{"text":"\u798f\u5c71\u6f64\u611b\u3057\u3066\u308b\u4ebaRT","indices":[64,75]},{"text":"\u58f0\u512a\u30af\u30e9\u30b9\u30bfRT","indices":[76,85]},{"text":"\u795d\u3063\u3066\u304f\u308c\u308b\u4ebaRT","indices":[86,96]}],"urls":[],"user_mentions":[{"screen_name":"midori0229","name":"\u60a0\u51db\uff20\u9065\u3000\u5343\u9cf3\u306e\u30aa\u30e0\u30e9\u30a4\u30b9\u3068\u30c1\u30e7\u30b3\u98df\u3059\u3000","id":3321305719,"id_str":"3321305719","indices":[3,14]}],"symbols":[],"media":[{"id":663709323822940160,"id_str":"663709323822940160","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":459,"h":800,"resize":"fit"},"small":{"w":340,"h":592,"resize":"fit"},"large":{"w":459,"h":800,"resize":"fit"}},"source_status_id":663709331695644672,"source_status_id_str":"663709331695644672","source_user_id":3321305719,"source_user_id_str":"3321305719"}]},"extended_entities":{"media":[{"id":663709323822940160,"id_str":"663709323822940160","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HRCUwAABSEY.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":459,"h":800,"resize":"fit"},"small":{"w":340,"h":592,"resize":"fit"},"large":{"w":459,"h":800,"resize":"fit"}},"source_status_id":663709331695644672,"source_status_id_str":"663709331695644672","source_user_id":3321305719,"source_user_id_str":"3321305719"},{"id":663709325622312960,"id_str":"663709325622312960","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HXvVAAAH8VZ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HXvVAAAH8VZ.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":600,"h":600,"resize":"fit"}},"source_status_id":663709331695644672,"source_status_id_str":"663709331695644672","source_user_id":3321305719,"source_user_id_str":"3321305719"},{"id":663709325932691456,"id_str":"663709325932691456","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HY5VAAAN4CL.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HY5VAAAN4CL.jpg","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":600,"resize":"fit"},"large":{"w":720,"h":720,"resize":"fit"}},"source_status_id":663709331695644672,"source_status_id_str":"663709331695644672","source_user_id":3321305719,"source_user_id_str":"3321305719"},{"id":663709329850134528,"id_str":"663709329850134528","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX4HnfUcAA1q_F.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX4HnfUcAA1q_F.png","url":"https:\/\/t.co\/OnJppBOwAV","display_url":"pic.twitter.com\/OnJppBOwAV","expanded_url":"http:\/\/twitter.com\/midori0229\/status\/663709331695644672\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":300,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":170,"resize":"fit"},"medium":{"w":600,"h":300,"resize":"fit"}},"source_status_id":663709331695644672,"source_status_id_str":"663709331695644672","source_user_id":3321305719,"source_user_id_str":"3321305719"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133658"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303379902465,"id_str":"663728303379902465","text":"https:\/\/t.co\/NyGGnQu0wP","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":144752377,"id_str":"144752377","name":"darryl delane","screen_name":"stopthemadess2","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":55,"friends_count":1132,"listed_count":0,"favourites_count":0,"statuses_count":18,"created_at":"Mon May 17 06:06:33 +0000 2010","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":false,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/NyGGnQu0wP","expanded_url":"https:\/\/youtu.be\/YDqUwdsOE5E","display_url":"youtu.be\/YDqUwdsOE5E","indices":[0,23]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080133658"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375650816,"id_str":"663728303375650816","text":"RT @KollywudCinema: #Thoongaavanam Getting Superb Reviews in Oversea. Tight Screenplay No unwanted songs Makes Movie Racy. #HappyDiwali htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3647463980,"id_str":"3647463980","name":"roshan vijay","screen_name":"roshandvijay","location":null,"url":null,"description":"Die hard thalapathy fan !!!! I lyk bod Vj & surya","protected":false,"verified":false,"followers_count":258,"friends_count":1057,"listed_count":0,"favourites_count":2138,"statuses_count":5671,"created_at":"Tue Sep 22 09:59:25 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659925764175867904\/W-VME2WO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659925764175867904\/W-VME2WO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3647463980\/1443332475","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:50 +0000 2015","id":663727453282525185,"id_str":"663727453282525185","text":"#Thoongaavanam Getting Superb Reviews in Oversea. Tight Screenplay No unwanted songs Makes Movie Racy. #HappyDiwali https:\/\/t.co\/TiqSAc8K0n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":346379998,"id_str":"346379998","name":"Kollywood Cinema","screen_name":"KollywudCinema","location":"Chennai ","url":"http:\/\/instagram.com\/Kollywoodcinemaaa","description":"Gallery | 24x7 Cinema news | Promotion | Interview | Exclusive Movie Contest | Movie preview | SWOT Analysis | Unique Review | Kollywoodcinemaa@gmail.com","protected":false,"verified":false,"followers_count":99866,"friends_count":40,"listed_count":125,"favourites_count":25625,"statuses_count":100544,"created_at":"Mon Aug 01 05:07:36 +0000 2011","utc_offset":19800,"time_zone":"Chennai","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"088253","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658512954556555268\/h-tLMXUb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658512954556555268\/h-tLMXUb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/346379998\/1447068002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":15,"entities":{"hashtags":[{"text":"Thoongaavanam","indices":[0,14]},{"text":"HappyDiwali","indices":[103,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663727439281913856,"id_str":"663727439281913856","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":720,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727439281913856,"id_str":"663727439281913856","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":720,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}}},{"id":663727442670940160,"id_str":"663727442670940160","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl7AUcAA8R0L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl7AUcAA8R0L.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}}},{"id":663727445988630528,"id_str":"663727445988630528","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImHXUYAArGi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImHXUYAArGi-.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}}},{"id":663727449180471296,"id_str":"663727449180471296","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImTQUAAA9__K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImTQUAAA9__K.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":443,"resize":"fit"},"small":{"w":340,"h":209,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Thoongaavanam","indices":[20,34]},{"text":"HappyDiwali","indices":[123,135]}],"urls":[],"user_mentions":[{"screen_name":"KollywudCinema","name":"Kollywood Cinema","id":346379998,"id_str":"346379998","indices":[3,18]}],"symbols":[],"media":[{"id":663727439281913856,"id_str":"663727439281913856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":720,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727453282525185,"source_status_id_str":"663727453282525185","source_user_id":346379998,"source_user_id_str":"346379998"}]},"extended_entities":{"media":[{"id":663727439281913856,"id_str":"663727439281913856","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIluYUAAAQN0e.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":313,"resize":"fit"},"large":{"w":720,"h":376,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":177,"resize":"fit"}},"source_status_id":663727453282525185,"source_status_id_str":"663727453282525185","source_user_id":346379998,"source_user_id_str":"346379998"},{"id":663727442670940160,"id_str":"663727442670940160","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIl7AUcAA8R0L.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIl7AUcAA8R0L.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":404,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":190,"resize":"fit"},"medium":{"w":600,"h":336,"resize":"fit"}},"source_status_id":663727453282525185,"source_status_id_str":"663727453282525185","source_user_id":346379998,"source_user_id_str":"346379998"},{"id":663727445988630528,"id_str":"663727445988630528","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImHXUYAArGi-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImHXUYAArGi-.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":332,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":188,"resize":"fit"},"large":{"w":720,"h":399,"resize":"fit"}},"source_status_id":663727453282525185,"source_status_id_str":"663727453282525185","source_user_id":346379998,"source_user_id_str":"346379998"},{"id":663727449180471296,"id_str":"663727449180471296","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYImTQUAAA9__K.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYImTQUAAA9__K.jpg","url":"https:\/\/t.co\/TiqSAc8K0n","display_url":"pic.twitter.com\/TiqSAc8K0n","expanded_url":"http:\/\/twitter.com\/KollywudCinema\/status\/663727453282525185\/photo\/1","type":"photo","sizes":{"large":{"w":720,"h":443,"resize":"fit"},"small":{"w":340,"h":209,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":369,"resize":"fit"}},"source_status_id":663727453282525185,"source_status_id_str":"663727453282525185","source_user_id":346379998,"source_user_id_str":"346379998"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400861697,"id_str":"663728303400861697","text":"RT @0220nicole: \u5b89\u5fc3\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u4eca\u306e\u6240\u30af\u30ea\u307c\u3063\u3061\u3067\u3059\u3002\u53bb\u5e74\u306f\u591c9\u6642\u307e\u3067\u304a\u4ed5\u4e8b\u3060\u305f\uff08\u00b4-`\uff09.\uff61oO\uff08\u7b11 \u6570\u5c11\u306a\u3044\u7537\u6027\u30d5\u30a1\u30f3\u306e\u307f\u306a\u3055\u3093\u7b11\u7b11 \u3066\u304b\u7537\u6027\u30d5\u30a1\u30f3\u3063\u3066\u3069\u3093\u304f\u3089\u3044\u3044\u308b\u3093\u3060\u304b(\u00b0_\u00b0)\u7b11 \u5973\u306e\u5b50\u304c\u307b\u3068\u3093\u3069\u3060\u304b\u3089\u306a\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2782077008,"id_str":"2782077008","name":"\u2661\u21dd\u85e4\u7530\u3086\u308b\u308b\u3093.\u3002\u306b\u3053\u3061\u3085\u3046","screen_name":"_Nicolu_Yulano_","location":"\u2765\u2765\u306b\u3053\u308b\u3068\u3086\u3089\u306e\u3068\u3081\u3044\u3081\u308d\u5e1d\u56fd ","url":"http:\/\/twpf.jp\/_Nicolu_Yulano_","description":"\u306b\u3053\u308b\u3093(@0220nicole)\u3068\u3086\u3089\u3086\u3089(@yulayula8)\u3068\u3081\u3044\u3081\u308d(@meimero1280)\u306f\u6c38\u9060.\u3002\u305f\u304f\u3055\u3093\u306e\u30e2\u30c7\u30eb\u3055\u3093\u5927\u597d\u304d\u2661\u2661 \u30c4\u30a4\u30d7\u30ed\u307f\u3066\u306d...\u266a*\uff9f\u306b\u3053\u308b\u3093\u540c\u76dfNo.452 Popteen\u540c\u76dfNo.759 \u6700\u8fd1Perfume\u597d\u304d\u304b\u3082\u3002\u2661\u203b\u30cd\u30ac\u30c6\u30a3\u30d6\u767a\u8a00\u9023\u767a\u4e2d\u3060\u3051\u3069\u30ea\u30e0\u3089\u306a\u3044\u3067\u306d(\/--)\/","protected":false,"verified":false,"followers_count":126,"friends_count":101,"listed_count":3,"favourites_count":120,"statuses_count":1824,"created_at":"Sun Aug 31 10:53:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661916135512641537\/SiohuHLI_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661916135512641537\/SiohuHLI_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2782077008\/1446469228","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:39 +0000 2015","id":663727907018178564,"id_str":"663727907018178564","text":"\u5b89\u5fc3\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u4eca\u306e\u6240\u30af\u30ea\u307c\u3063\u3061\u3067\u3059\u3002\u53bb\u5e74\u306f\u591c9\u6642\u307e\u3067\u304a\u4ed5\u4e8b\u3060\u305f\uff08\u00b4-`\uff09.\uff61oO\uff08\u7b11 \u6570\u5c11\u306a\u3044\u7537\u6027\u30d5\u30a1\u30f3\u306e\u307f\u306a\u3055\u3093\u7b11\u7b11 \u3066\u304b\u7537\u6027\u30d5\u30a1\u30f3\u3063\u3066\u3069\u3093\u304f\u3089\u3044\u3044\u308b\u3093\u3060\u304b(\u00b0_\u00b0)\u7b11 \u5973\u306e\u5b50\u304c\u307b\u3068\u3093\u3069\u3060\u304b\u3089\u306a\u30fc\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2459378088,"id_str":"2459378088","name":"\u85e4\u7530 \u30cb\u30b3\u30eb(\u306b\u3053\u308b\u3093)","screen_name":"0220nicole","location":"\u30aa\u30b9\u30ab\u30fc\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u6240\u5c5e ","url":"http:\/\/youtu.be\/eETGY0-4JmM","description":"\u306b\u3053\u308b\u3093\u3067\u3059\u300217\u6b73\/167cm\/2\u670820\u65e5\/ nicola model \u261e popteen models\u3002 \u30a4\u30de\u30c9\u30ad\u30ac\u30fc\u30eb\u2661 \u4eba\u751f\u697d\u3057\u3093\u3060\u3082\u3093\u304c\u3061\u2661\u308b\u3093\u3002 12\u67081\u65e5\u306b\u30b9\u30bf\u30a4\u30eb\u30d6\u30c3\u30af\u304c\u51fa\u307e\u3059\u3088\u308d\u3057\u304f\u3067\u3059\uff08\u00b4-`\uff09.\uff61oO\uff082015\u5e74\u30d2\u30c3\u30c8\u4eba\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u306a\u3046\uff08\uff1b\uff3f\uff1b\uff09\u306b\u3053\u308b\u3093\u3073\u30fc\u3080\u3002","protected":false,"verified":true,"followers_count":621924,"friends_count":308,"listed_count":2149,"favourites_count":57976,"statuses_count":28524,"created_at":"Wed Apr 23 08:02:29 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639612807873335297\/Tm1zZpbh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639612807873335297\/Tm1zZpbh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2459378088\/1443672001","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":74,"favorite_count":650,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"0220nicole","name":"\u85e4\u7530 \u30cb\u30b3\u30eb(\u306b\u3053\u308b\u3093)","id":2459378088,"id_str":"2459378088","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388274688,"id_str":"663728303388274688","text":"RT @kineko9218: \u4ee5\u524d\u30b3\u30b8\u30b9\u30c6\u3067\u30b9\u30c6\u30d5\u30a1\u30cb\u30fc\u3055\u3093\u306b\u512a\u79c0\u4f5c\u54c1\u306b\u9078\u3093\u3067\u3044\u305f\u3060\u3044\u305f\u306e\u3067\uff08\u3044\u3064\u306e\u8a71\u3060\u2026\uff09\u30af\u30ef\u30a4\u30a8\u30c3\u30c8\u3082\u63cf\u3044\u3066\u307f\u307e\u3057\u305f\u3002\u6d6e\u4e16\u7d75\u98a8\u3067\u306f\u306a\u3044\u3067\u3059\u304c\u4e00\u5fdc\u65e5\u672c\u753b\u98a8\u3067\u3059\u3002@stefanieGMJ #MGSVTPP #Quiet #\u30d5\u30a1\u30f3\u30a2\u30fc\u30c8 https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":160890202,"id_str":"160890202","name":"\u30ad\u30b7\u30b3@\u30b3\u30b9\u30d7\u30ec\u30b7\u30e3\u30b9","screen_name":"kishico","location":"\u6771\u4eac","url":"http:\/\/kishico.yasa-c.com\/","description":"\u30d5\u30ea\u30fc\u30d8\u30a2\u30e1\u30a4\u30af\u306e\u30ad\u30b7\u30b3\u3067\u3059\u3002\u30b3\u30b9\u30d7\u30ec\u30a4\u30e4\u30fc\u3002\u4e2d\u56fd\u8a9e\u4f1a\u8a71\u3002\u307e\u3064\u30a8\u30af\u65bd\u8853\u3001\u30d6\u30e9\u30c3\u30af\u30d8\u30a2\u7b49\u3002\u30e1\u30a4\u30af\u6559\u5ba4\u30ea\u30af\u30a8\u30b9\u30c8\u3067\u958b\u50ac\u3002\u304a\u4ed5\u4e8b\u4f9d\u983c\u306fanmeigui@hotmail.com\u307e\u3067\u3002\uff8c\uff6b\uff84\uff8c\uff9f\uff97\uff7d\u64ae\u5f71\u4f1a\u3002\uff76\uff72\uff8c\uff9e278940\u3002 \u81ea\u8ee2\u8eca\u306f\u30df\u30e4\u30bf\u306e\u30eb\u30fb\u30de\u30f3\u3068\u30b5\u30fc\u30f4\u30a7\u30edP\uff11\u3002\u696d\u754c\u4eba\u81ea\u8ee2\u8eca\u90e8\u30c1\u30fc\u30e0BUKKAKE\u6240\u5c5e\u3002","protected":false,"verified":false,"followers_count":10243,"friends_count":1304,"listed_count":251,"favourites_count":903,"statuses_count":82376,"created_at":"Tue Jun 29 11:42:31 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/611084438017998849\/1wk2F73K_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/611084438017998849\/1wk2F73K_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/160890202\/1444573490","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:35:06 +0000 2015","id":663711412858961920,"id_str":"663711412858961920","text":"\u4ee5\u524d\u30b3\u30b8\u30b9\u30c6\u3067\u30b9\u30c6\u30d5\u30a1\u30cb\u30fc\u3055\u3093\u306b\u512a\u79c0\u4f5c\u54c1\u306b\u9078\u3093\u3067\u3044\u305f\u3060\u3044\u305f\u306e\u3067\uff08\u3044\u3064\u306e\u8a71\u3060\u2026\uff09\u30af\u30ef\u30a4\u30a8\u30c3\u30c8\u3082\u63cf\u3044\u3066\u307f\u307e\u3057\u305f\u3002\u6d6e\u4e16\u7d75\u98a8\u3067\u306f\u306a\u3044\u3067\u3059\u304c\u4e00\u5fdc\u65e5\u672c\u753b\u98a8\u3067\u3059\u3002@stefanieGMJ #MGSVTPP #Quiet #\u30d5\u30a1\u30f3\u30a2\u30fc\u30c8 https:\/\/t.co\/UWi9Y0ChrT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":441661426,"id_str":"441661426","name":"kineko","screen_name":"kineko9218","location":null,"url":null,"description":"\u30b2\u30fc\u30e0\u30fb\u6f2b\u753b\u30fb\u30a2\u30cb\u30e1\u597d\u304d\u3002\u305f\u307e\u306b\u7d75\u3092\u63cf\u3044\u305f\u308a\u81ea\u8ee2\u8eca\u306b\u4e57\u308b\u3002\uff08PS3 \/ PS4 \/ PS VITA & TV \/ Mac Pro \/ Mac Book Pro \/ Photoshop \/ Painter\uff09\n\u8aad\u66f8\u30e1\u30fc\u30bf\u30fc\u2192https:\/\/t.co\/EiGzJfzatB\n\u7d75\u2192https:\/\/t.co\/YKzFivFmwN","protected":false,"verified":false,"followers_count":58,"friends_count":220,"listed_count":3,"favourites_count":1098,"statuses_count":1702,"created_at":"Tue Dec 20 09:11:38 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/436875566503841793\/u-Xjh61c_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/436875566503841793\/u-Xjh61c_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/441661426\/1405368010","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":15,"favorite_count":21,"entities":{"hashtags":[{"text":"MGSVTPP","indices":[88,96]},{"text":"Quiet","indices":[97,103]},{"text":"\u30d5\u30a1\u30f3\u30a2\u30fc\u30c8","indices":[104,111]}],"urls":[],"user_mentions":[{"screen_name":"stefanieGMJ","name":"Stefanie Joosten","id":563753858,"id_str":"563753858","indices":[74,86]}],"symbols":[],"media":[{"id":663711410099060738,"id_str":"663711410099060738","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","url":"https:\/\/t.co\/UWi9Y0ChrT","display_url":"pic.twitter.com\/UWi9Y0ChrT","expanded_url":"http:\/\/twitter.com\/kineko9218\/status\/663711412858961920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1383,"resize":"fit"},"medium":{"w":600,"h":810,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663711410099060738,"id_str":"663711410099060738","indices":[112,135],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","url":"https:\/\/t.co\/UWi9Y0ChrT","display_url":"pic.twitter.com\/UWi9Y0ChrT","expanded_url":"http:\/\/twitter.com\/kineko9218\/status\/663711412858961920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1383,"resize":"fit"},"medium":{"w":600,"h":810,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"MGSVTPP","indices":[104,112]},{"text":"Quiet","indices":[113,119]},{"text":"\u30d5\u30a1\u30f3\u30a2\u30fc\u30c8","indices":[120,127]}],"urls":[],"user_mentions":[{"screen_name":"kineko9218","name":"kineko","id":441661426,"id_str":"441661426","indices":[3,14]},{"screen_name":"stefanieGMJ","name":"Stefanie Joosten","id":563753858,"id_str":"563753858","indices":[90,102]}],"symbols":[],"media":[{"id":663711410099060738,"id_str":"663711410099060738","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","url":"https:\/\/t.co\/UWi9Y0ChrT","display_url":"pic.twitter.com\/UWi9Y0ChrT","expanded_url":"http:\/\/twitter.com\/kineko9218\/status\/663711412858961920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1383,"resize":"fit"},"medium":{"w":600,"h":810,"resize":"fit"}},"source_status_id":663711412858961920,"source_status_id_str":"663711412858961920","source_user_id":441661426,"source_user_id_str":"441661426"}]},"extended_entities":{"media":[{"id":663711410099060738,"id_str":"663711410099060738","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTX6AtBUAAIAsZu.jpg","url":"https:\/\/t.co\/UWi9Y0ChrT","display_url":"pic.twitter.com\/UWi9Y0ChrT","expanded_url":"http:\/\/twitter.com\/kineko9218\/status\/663711412858961920\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":459,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":1383,"resize":"fit"},"medium":{"w":600,"h":810,"resize":"fit"}},"source_status_id":663711412858961920,"source_status_id_str":"663711412858961920","source_user_id":441661426,"source_user_id_str":"441661426"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400882176,"id_str":"663728303400882176","text":"@harutukusi418 \n\u305d\u3046\u3067\u3059\u3001\u306a\u3093\u306b\u3082\u3001\u3069\u3053\u306b\u3082\u307e\u3063\u305f\u304f\u4e0d\u5177\u5408\u304c\u306a\u3044\u306e\u306b\uff11\u5186\n\uff08\u3060\u3044\u305f\u3044\u4e57\u308a\u3060\u3057\u4fa1\u683c20\u4e07\u4ee5\u4e0b\uff09\n\nGG2\u3068GG3\u306fGGA\u306b\u6bd4\u3079\u3066\u4e0d\u4eba\u6c17\u8eca\u3060\u304b\u3089\u3053\u306e\uff75\uff88\uff80\uff9e\uff9d\u306a\u3093\u3067\u3059","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725774134882305,"in_reply_to_status_id_str":"663725774134882305","in_reply_to_user_id":3383349073,"in_reply_to_user_id_str":"3383349073","in_reply_to_screen_name":"harutukusi418","user":{"id":2893853358,"id_str":"2893853358","name":"\u5c71\u6912\uff2011\/29\u7533\u8fbc\u6e08\uff01\u30b9\u30d0\u30eb\u53ce\u7a6b\u796d","screen_name":"kokudou308","location":"Nara Japan","url":null,"description":"\u3010\u3054\u6ce8\u610f\u3011\u6bce\u65e5TL\u5185\u5bb9\u304c\u30c9\u30fc\u30eb\u3001\u30d0\u30a4\u30af\u3001\u30af\u30eb\u30de\u3067\u5165\u308c\u66ff\u308f\u308a\u307e\u3059\u2606 \u30d0\u30a4\u30af\u4fee\u7406\u304c\u8da3\u5473\u3067\u8d85\u53e4\u3044\u306e\u308250\u3082\u30ea\u30c3\u30bf\u30fc\u3082\u3001\u4f55\u3067\u3082\u697d\u3057\u304f\u4e57\u308a\u307e\u3059\u3002 \u305f\u307e\u306bstig\u53ec\u559a\u3002GGA\u30a4\u30f3\u30d7\u30ec\u30c3\u30b5\u3000\u6771\u65b9\u3001\u8266\u3053\u308c\u3001\u9177\u967a\u5ec3\u9053\u8349\u30d2\u30ed\u306b\u5bfe\u5fdc \u3010\u30a2\u30a4\u30b3\u30f3\u306f\u304d\u304f\u3089\u3055\u3093@kikura09 \u306b\u30ea\u30ea\u30a2\u3092\u63cf\u3044\u3066\u8cb0\u3044\u307e\u3057\u305f\uff01\u304b\u308f\u3044\u3044\uff01\u3011","protected":false,"verified":false,"followers_count":724,"friends_count":956,"listed_count":20,"favourites_count":10012,"statuses_count":14732,"created_at":"Sat Nov 08 15:20:53 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/578984377956200449\/KSEGy4--.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/578984377956200449\/KSEGy4--.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653210352285413376\/5EouDlOZ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653210352285413376\/5EouDlOZ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2893853358\/1445101518","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"harutukusi418","name":"\u306f\u308b\u3064\u304f\u3057@\u6b21\u306f\u30c9\u30fc\u30eb\u30ba\u30a4\u30f3\u30ef\u30f3\u30c0\u30fc\u2026\uff1f","id":3383349073,"id_str":"3383349073","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303405006848,"id_str":"663728303405006848","text":"RT @onew_noreason: 151109 \ub2c8\uac00 \uc990\uac81\ub2e4\uba74 \uad1c\ucc2e\ub2e4... \uc751 .... #\uc628\uc720 https:\/\/t.co\/qDG1eCqAGD","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":250517319,"id_str":"250517319","name":"\ubbc0\uc5b4","screen_name":"akadaka24","location":null,"url":null,"description":"SHINee\u2665","protected":false,"verified":false,"followers_count":2,"friends_count":19,"listed_count":0,"favourites_count":0,"statuses_count":5,"created_at":"Fri Feb 11 07:26:09 +0000 2011","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663227227086045184\/Lm3vGdgi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663227227086045184\/Lm3vGdgi_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:22:25 +0000 2015","id":663557225525342208,"id_str":"663557225525342208","text":"151109 \ub2c8\uac00 \uc990\uac81\ub2e4\uba74 \uad1c\ucc2e\ub2e4... \uc751 .... #\uc628\uc720 https:\/\/t.co\/qDG1eCqAGD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":573337674,"id_str":"573337674","name":"\uc774\uc720\uc5c6\uc774(noreason)","screen_name":"onew_noreason","location":null,"url":"http:\/\/noreason.kr\/","description":"SHINee \uc628\uc720 ^\u25bd^)\/\/\u2665 \uc2f8\ub791\ud569\ub2c8\ub2e4","protected":false,"verified":false,"followers_count":38286,"friends_count":24,"listed_count":1120,"favourites_count":0,"statuses_count":3459,"created_at":"Mon May 07 03:22:12 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/711322519\/ad94626682020dee588d7d12e00b6c01.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/711322519\/ad94626682020dee588d7d12e00b6c01.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/627113621181501444\/hJCmJWV-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/627113621181501444\/hJCmJWV-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/573337674\/1431959128","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":515,"favorite_count":299,"entities":{"hashtags":[{"text":"\uc628\uc720","indices":[29,32]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663557218407591936,"id_str":"663557218407591936","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","url":"https:\/\/t.co\/qDG1eCqAGD","display_url":"pic.twitter.com\/qDG1eCqAGD","expanded_url":"http:\/\/twitter.com\/onew_noreason\/status\/663557225525342208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663557218407591936,"id_str":"663557218407591936","indices":[33,56],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","url":"https:\/\/t.co\/qDG1eCqAGD","display_url":"pic.twitter.com\/qDG1eCqAGD","expanded_url":"http:\/\/twitter.com\/onew_noreason\/status\/663557225525342208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc628\uc720","indices":[48,51]}],"urls":[],"user_mentions":[{"screen_name":"onew_noreason","name":"\uc774\uc720\uc5c6\uc774(noreason)","id":573337674,"id_str":"573337674","indices":[3,17]}],"symbols":[],"media":[{"id":663557218407591936,"id_str":"663557218407591936","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","url":"https:\/\/t.co\/qDG1eCqAGD","display_url":"pic.twitter.com\/qDG1eCqAGD","expanded_url":"http:\/\/twitter.com\/onew_noreason\/status\/663557225525342208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663557225525342208,"source_status_id_str":"663557225525342208","source_user_id":573337674,"source_user_id_str":"573337674"}]},"extended_entities":{"media":[{"id":663557218407591936,"id_str":"663557218407591936","indices":[52,75],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVtxkNUsAAdtD8.jpg","url":"https:\/\/t.co\/qDG1eCqAGD","display_url":"pic.twitter.com\/qDG1eCqAGD","expanded_url":"http:\/\/twitter.com\/onew_noreason\/status\/663557225525342208\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663557225525342208,"source_status_id_str":"663557225525342208","source_user_id":573337674,"source_user_id_str":"573337674"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080133664"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303405158404,"id_str":"663728303405158404","text":"RT @crvascotorcida: Martin Silva tamb\u00e9m comemorou e muito a vit\u00f3ria do Vasco contra o Palmeiras. Que homem! https:\/\/t.co\/7Z9xyJZy3v","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":141021051,"id_str":"141021051","name":"Jo\u00e3o Vitor Palmeiro","screen_name":"joaovpalmeiro","location":"Brasil","url":null,"description":"19 anos, 1.96 m, ga\u00facho e torcedor do @vascodagama","protected":false,"verified":false,"followers_count":415,"friends_count":628,"listed_count":2,"favourites_count":11600,"statuses_count":11951,"created_at":"Fri May 07 00:16:56 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/526429065528356867\/DD2e8rQ_.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/526429065528356867\/DD2e8rQ_.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654417569370238976\/GeFlAlnj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654417569370238976\/GeFlAlnj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/141021051\/1446003089","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:55:10 +0000 2015","id":663550369138679808,"id_str":"663550369138679808","text":"Martin Silva tamb\u00e9m comemorou e muito a vit\u00f3ria do Vasco contra o Palmeiras. Que homem! https:\/\/t.co\/7Z9xyJZy3v","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":627921768,"id_str":"627921768","name":"C.R. Vasco da Gama","screen_name":"crvascotorcida","location":"S\u00e3o Janu\u00e1rio","url":null,"description":"Com o Vasco, pelo Vasco e para o Vasco. @crvascovideos","protected":false,"verified":false,"followers_count":21523,"friends_count":6878,"listed_count":19,"favourites_count":82,"statuses_count":11864,"created_at":"Thu Jul 05 23:35:41 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/643232541823082496\/DBakgXkr.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/643232541823082496\/DBakgXkr.png","profile_background_tile":true,"profile_link_color":"0F0E0F","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663576106604371968\/jSFk7ZRr_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663576106604371968\/jSFk7ZRr_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/627921768\/1442622000","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":151,"favorite_count":211,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663550356480253952,"id_str":"663550356480253952","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","url":"https:\/\/t.co\/7Z9xyJZy3v","display_url":"pic.twitter.com\/7Z9xyJZy3v","expanded_url":"http:\/\/twitter.com\/crvascotorcida\/status\/663550369138679808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":649,"h":449,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663550356480253952,"id_str":"663550356480253952","indices":[88,111],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","url":"https:\/\/t.co\/7Z9xyJZy3v","display_url":"pic.twitter.com\/7Z9xyJZy3v","expanded_url":"http:\/\/twitter.com\/crvascotorcida\/status\/663550369138679808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":649,"h":449,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"crvascotorcida","name":"C.R. Vasco da Gama","id":627921768,"id_str":"627921768","indices":[3,18]}],"symbols":[],"media":[{"id":663550356480253952,"id_str":"663550356480253952","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","url":"https:\/\/t.co\/7Z9xyJZy3v","display_url":"pic.twitter.com\/7Z9xyJZy3v","expanded_url":"http:\/\/twitter.com\/crvascotorcida\/status\/663550369138679808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":649,"h":449,"resize":"fit"}},"source_status_id":663550369138679808,"source_status_id_str":"663550369138679808","source_user_id":627921768,"source_user_id_str":"627921768"}]},"extended_entities":{"media":[{"id":663550356480253952,"id_str":"663550356480253952","indices":[108,131],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVniJiW4AA0BSx.png","url":"https:\/\/t.co\/7Z9xyJZy3v","display_url":"pic.twitter.com\/7Z9xyJZy3v","expanded_url":"http:\/\/twitter.com\/crvascotorcida\/status\/663550369138679808\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":235,"resize":"fit"},"medium":{"w":600,"h":415,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":649,"h":449,"resize":"fit"}},"source_status_id":663550369138679808,"source_status_id_str":"663550369138679808","source_user_id":627921768,"source_user_id_str":"627921768"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080133664"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303409262592,"id_str":"663728303409262592","text":"\u304a\u524d\u30db\u30e2\u304b https:\/\/t.co\/lsoMVKrFsP","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3014355258,"id_str":"3014355258","name":"Okahan","screen_name":"180Notteru","location":"\u3042\u3063\u3061","url":"http:\/\/www.nicovideo.jp\/my\/seiga","description":"\u5927\u5b66\u901a\u5b66\u306e\u4e00\u822c\u8eca\u306e180sx\u3061\u3083\u3093\u3068\u30ec\u30df\u30ea\u30a2\u3061\u3083\u3093\u5927\u597d\u304d\u306a\u5ddd\u5185\u63d0\u7763\u3002\u6700\u8fd1\u6d6e\u6c17\u4e2d\u306e\u97ff\u3068\u30b1\u30c3\u30b3\u30f3\u5bf8\u524d\u3002\u30dd\u30b1\u30e2\u30f3\u3082\u4e00\u5fdc\u51fa\u6765\u307e\u3059\u3002 \u3042\u3068\u30dd\u30b1\u30c3\u30c8\u30ca\u30a4\u30c4\u304b\u306a\uff1f\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u5931\u793c\u3044\u305f\u3059\u3002\u540d\u524d\u30ed\u30fc\u30de\u5b57\u3067","protected":false,"verified":false,"followers_count":244,"friends_count":224,"listed_count":2,"favourites_count":960,"statuses_count":11952,"created_at":"Mon Feb 09 13:51:33 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/641639027980959744\/cbNsAj1j.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/641639027980959744\/cbNsAj1j.jpg","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650895414346936320\/nZwWOLhj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650895414346936320\/nZwWOLhj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014355258\/1440488387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728184664260609,"quoted_status_id_str":"663728184664260609","quoted_status":{"created_at":"Mon Nov 09 14:41:45 +0000 2015","id":663728184664260609,"id_str":"663728184664260609","text":"\u30a4\u30ad\u30b9\u30ae\u30a3\uff01 https:\/\/t.co\/vlYbsbT49x","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3172125253,"id_str":"3172125253","name":"\u30b9\u30e9\u30f3\u30c8\u30d1\u30f3\u30bf","screen_name":"Gleipnir_003","location":"Chiba Japan","url":"http:\/\/twpf.jp\/Gleipnir_003","description":"\u5408\u8a00\u8449\u306f\u300c\u6d88\u3048\u3061\u3083\u3044\u307e\u3057\u305f\u300d\u3000\u5929\u5019\u7121\u95a2\u4fc2\u3000\u8ddd\u96e2\u7121\u95a2\u4fc2","protected":false,"verified":false,"followers_count":250,"friends_count":274,"listed_count":2,"favourites_count":7151,"statuses_count":9677,"created_at":"Sat Apr 25 11:54:56 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/608284959174856704\/eVIxkUn9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/608284959174856704\/eVIxkUn9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3172125253\/1433860799","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663728037041573888,"quoted_status_id_str":"663728037041573888","is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/vlYbsbT49x","expanded_url":"https:\/\/twitter.com\/180Notteru\/status\/663728037041573888","display_url":"twitter.com\/180Notteru\/sta\u2026","indices":[7,30]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/lsoMVKrFsP","expanded_url":"https:\/\/twitter.com\/Gleipnir_003\/status\/663728184664260609","display_url":"twitter.com\/Gleipnir_003\/s\u2026","indices":[6,29]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080133665"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375851520,"id_str":"663728303375851520","text":"RT @MicaUrbaneja: Esssso\ud83d\udc47 https:\/\/t.co\/YojJWiuSVO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":611423391,"id_str":"611423391","name":"pelotuda\u274c","screen_name":"LuTadeoOk","location":"C\u00f3rdoba, Argentina","url":"http:\/\/facebook.com.ar","description":"Alg\u00fan d\u00eda dir\u00e9 no fue f\u00e1cil, pero lo logr\u00e9\u2764.\/\/#12Primaveras\u265b","protected":false,"verified":false,"followers_count":950,"friends_count":1500,"listed_count":1,"favourites_count":3504,"statuses_count":7411,"created_at":"Mon Jun 18 03:18:02 +0000 2012","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663211053866725376\/cZ4zAub7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663211053866725376\/cZ4zAub7_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:30:17 +0000 2015","id":663725298534506496,"id_str":"663725298534506496","text":"Esssso\ud83d\udc47 https:\/\/t.co\/YojJWiuSVO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3207749272,"id_str":"3207749272","name":"DeMiHnaMagui\u2661\/\/1Dia\u2764","screen_name":"MicaUrbaneja","location":null,"url":null,"description":"Fb:Bel\u00e9n Urbaneja\u2199\/\/ Wsp:3516368901\u2199\/\/\u2192\u266118-7-15\u2661\u2190\/\/15A\u00f1os\u2661\/\/Soltera\u271e\/\/10-6-15Tomas\u2661.\/\/ BOCA JUNIORS\u2764","protected":false,"verified":false,"followers_count":577,"friends_count":607,"listed_count":3,"favourites_count":1761,"statuses_count":7880,"created_at":"Sun Apr 26 04:00:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663466315005435906\/OlzIkiPP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663466315005435906\/OlzIkiPP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3207749272\/1447017555","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":2,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725295099359232,"id_str":"663725295099359232","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","url":"https:\/\/t.co\/YojJWiuSVO","display_url":"pic.twitter.com\/YojJWiuSVO","expanded_url":"http:\/\/twitter.com\/MicaUrbaneja\/status\/663725298534506496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725295099359232,"id_str":"663725295099359232","indices":[8,31],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","url":"https:\/\/t.co\/YojJWiuSVO","display_url":"pic.twitter.com\/YojJWiuSVO","expanded_url":"http:\/\/twitter.com\/MicaUrbaneja\/status\/663725298534506496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"MicaUrbaneja","name":"DeMiHnaMagui\u2661\/\/1Dia\u2764","id":3207749272,"id_str":"3207749272","indices":[3,16]}],"symbols":[],"media":[{"id":663725295099359232,"id_str":"663725295099359232","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","url":"https:\/\/t.co\/YojJWiuSVO","display_url":"pic.twitter.com\/YojJWiuSVO","expanded_url":"http:\/\/twitter.com\/MicaUrbaneja\/status\/663725298534506496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663725298534506496,"source_status_id_str":"663725298534506496","source_user_id":3207749272,"source_user_id_str":"3207749272"}]},"extended_entities":{"media":[{"id":663725295099359232,"id_str":"663725295099359232","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYGo6rWsAAIGgD.jpg","url":"https:\/\/t.co\/YojJWiuSVO","display_url":"pic.twitter.com\/YojJWiuSVO","expanded_url":"http:\/\/twitter.com\/MicaUrbaneja\/status\/663725298534506496\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":186,"resize":"fit"},"large":{"w":719,"h":394,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":328,"resize":"fit"}},"source_status_id":663725298534506496,"source_status_id_str":"663725298534506496","source_user_id":3207749272,"source_user_id_str":"3207749272"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080133657"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303388389376,"id_str":"663728303388389376","text":"@ekremuk bu resmi anlad\u0131\u011f\u0131n anda kemale ereceksin yavrum https:\/\/t.co\/aBGggutlkT","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663723617553903620,"in_reply_to_status_id_str":"663723617553903620","in_reply_to_user_id":2281358088,"in_reply_to_user_id_str":"2281358088","in_reply_to_screen_name":"ekremuk","user":{"id":3169526615,"id_str":"3169526615","name":"antimay\u0131n","screen_name":"silentlive1","location":"westeros","url":null,"description":"yazd\u0131klar\u0131m annanemin eltilerini ba\u011flar","protected":false,"verified":false,"followers_count":56,"friends_count":233,"listed_count":0,"favourites_count":287,"statuses_count":301,"created_at":"Wed Apr 15 09:56:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658973320231198720\/QayKO-Nq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658973320231198720\/QayKO-Nq_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ekremuk","name":"Ekrem","id":2281358088,"id_str":"2281358088","indices":[0,8]}],"symbols":[],"media":[{"id":663728286812377088,"id_str":"663728286812377088","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXDrUkAAoxI-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXDrUkAAoxI-.jpg","url":"https:\/\/t.co\/aBGggutlkT","display_url":"pic.twitter.com\/aBGggutlkT","expanded_url":"http:\/\/twitter.com\/silentlive1\/status\/663728303388389376\/photo\/1","type":"photo","sizes":{"medium":{"w":365,"h":362,"resize":"fit"},"large":{"w":365,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728286812377088,"id_str":"663728286812377088","indices":[57,80],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJXDrUkAAoxI-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJXDrUkAAoxI-.jpg","url":"https:\/\/t.co\/aBGggutlkT","display_url":"pic.twitter.com\/aBGggutlkT","expanded_url":"http:\/\/twitter.com\/silentlive1\/status\/663728303388389376\/photo\/1","type":"photo","sizes":{"medium":{"w":365,"h":362,"resize":"fit"},"large":{"w":365,"h":362,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080133660"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303400812544,"id_str":"663728303400812544","text":"https:\/\/t.co\/MeqmCBGmtA","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4167989233,"id_str":"4167989233","name":"LIFE IS GAME","screen_name":"REALLALLOVER","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":14,"friends_count":42,"listed_count":0,"favourites_count":0,"statuses_count":18,"created_at":"Sun Nov 08 12:07:10 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663342607590813696\/7bihYdvW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663342607590813696\/7bihYdvW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4167989233\/1446984847","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728181682147329,"id_str":"663728181682147329","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ8CUkAE04Sj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ8CUkAE04Sj.jpg","url":"https:\/\/t.co\/MeqmCBGmtA","display_url":"pic.twitter.com\/MeqmCBGmtA","expanded_url":"http:\/\/twitter.com\/REALLALLOVER\/status\/663728303400812544\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728181682147329,"id_str":"663728181682147329","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJQ8CUkAE04Sj.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJQ8CUkAE04Sj.jpg","url":"https:\/\/t.co\/MeqmCBGmtA","display_url":"pic.twitter.com\/MeqmCBGmtA","expanded_url":"http:\/\/twitter.com\/REALLALLOVER\/status\/663728303400812544\/photo\/1","type":"photo","sizes":{"large":{"w":682,"h":1024,"resize":"fit"},"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"}}},{"id":663728234106720257,"id_str":"663728234106720257","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJT_VUEAEpW6D.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJT_VUEAEpW6D.jpg","url":"https:\/\/t.co\/MeqmCBGmtA","display_url":"pic.twitter.com\/MeqmCBGmtA","expanded_url":"http:\/\/twitter.com\/REALLALLOVER\/status\/663728303400812544\/photo\/1","type":"photo","sizes":{"medium":{"w":500,"h":800,"resize":"fit"},"small":{"w":340,"h":544,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":500,"h":800,"resize":"fit"}}},{"id":663728264398049280,"id_str":"663728264398049280","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVwLVEAAxK7G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVwLVEAAxK7G.jpg","url":"https:\/\/t.co\/MeqmCBGmtA","display_url":"pic.twitter.com\/MeqmCBGmtA","expanded_url":"http:\/\/twitter.com\/REALLALLOVER\/status\/663728303400812544\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":483,"resize":"fit"},"medium":{"w":600,"h":853,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":1024,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080133663"} +{"created_at":"Mon Nov 09 14:42:13 +0000 2015","id":663728303375826944,"id_str":"663728303375826944","text":"Super Troia Online! https:\/\/t.co\/DegYs20HQO https:\/\/t.co\/TT0hYLAQhn","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2841245902,"id_str":"2841245902","name":"Super Troie","screen_name":"supertroie","location":"Italy","url":"http:\/\/bit.ly\/1DI47oQ","description":"Oltre 30.115 Troie CamGirls Disponibili per te ( anche dal tuo Ufficio )","protected":false,"verified":false,"followers_count":1289,"friends_count":1844,"listed_count":5,"favourites_count":10,"statuses_count":262859,"created_at":"Wed Oct 22 15:26:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/524949048780812288\/q-eqZJPc_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/524949048780812288\/q-eqZJPc_normal.jpeg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/DegYs20HQO","expanded_url":"http:\/\/ragazzeincam.tumblr.com\/","display_url":"ragazzeincam.tumblr.com","indices":[20,43]}],"user_mentions":[],"symbols":[],"media":[{"id":663728303258394624,"id_str":"663728303258394624","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYA8W4AANbY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYA8W4AANbY8.jpg","url":"https:\/\/t.co\/TT0hYLAQhn","display_url":"pic.twitter.com\/TT0hYLAQhn","expanded_url":"http:\/\/twitter.com\/supertroie\/status\/663728303375826944\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728303258394624,"id_str":"663728303258394624","indices":[44,67],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYA8W4AANbY8.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYA8W4AANbY8.jpg","url":"https:\/\/t.co\/TT0hYLAQhn","display_url":"pic.twitter.com\/TT0hYLAQhn","expanded_url":"http:\/\/twitter.com\/supertroie\/status\/663728303375826944\/photo\/1","type":"photo","sizes":{"medium":{"w":320,"h":240,"resize":"fit"},"large":{"w":320,"h":240,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":240,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"et","timestamp_ms":"1447080133657"} +{"delete":{"status":{"id":518626717229789184,"id_str":"518626717229789184","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080134174"}} +{"delete":{"status":{"id":662492892120805376,"id_str":"662492892120805376","user_id":364716113,"user_id_str":"364716113"},"timestamp_ms":"1447080134270"}} +{"delete":{"status":{"id":663654080972062720,"id_str":"663654080972062720","user_id":3888601579,"user_id_str":"3888601579"},"timestamp_ms":"1447080134304"}} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603640320,"id_str":"663728307603640320","text":"RT @gulnurblahblah: \u00c7ok fazla t\u00fcrk pop \u015fark\u0131s\u0131na maruz kald\u0131 kulaklar\u0131m. Ald\u0131rmak istiyorum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3357722723,"id_str":"3357722723","name":"KELAM\u0130ST","screen_name":"cawayebremin","location":null,"url":null,"description":"muhalif belagatlar | \u0130.\u00dc-EDEB\u0130YAT","protected":false,"verified":false,"followers_count":504,"friends_count":171,"listed_count":1,"favourites_count":34517,"statuses_count":85,"created_at":"Fri Jul 03 23:34:04 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/644934621843447808\/BiOONANq.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/644934621843447808\/BiOONANq.jpg","profile_background_tile":true,"profile_link_color":"770033","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663646262139469824\/mI1fS3Ek_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663646262139469824\/mI1fS3Ek_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3357722723\/1445936930","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 12:07:09 +0000 2015","id":662602114795991040,"id_str":"662602114795991040","text":"\u00c7ok fazla t\u00fcrk pop \u015fark\u0131s\u0131na maruz kald\u0131 kulaklar\u0131m. Ald\u0131rmak istiyorum","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3087343268,"id_str":"3087343268","name":"hesna","screen_name":"gulnurblahblah","location":null,"url":null,"description":"weasley","protected":false,"verified":false,"followers_count":134,"friends_count":317,"listed_count":0,"favourites_count":2283,"statuses_count":322,"created_at":"Mon Mar 16 00:15:38 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659693661924532224\/VXcQ9yU6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659693661924532224\/VXcQ9yU6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3087343268\/1447080098","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"gulnurblahblah","name":"hesna","id":3087343268,"id_str":"3087343268","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307586924544,"id_str":"663728307586924544","text":"RT @DuttonBooks: \u201cHis hands were weak and shaking from carrying too many books from the bookshop. It was the best feeling.\u201d https:\/\/t.co\/bI\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1318714999,"id_str":"1318714999","name":"Catriona Beamish","screen_name":"beamishc","location":null,"url":null,"description":"Soon to be a student again. Now all that time I spend reading can finally be classed as studying right?","protected":false,"verified":false,"followers_count":127,"friends_count":520,"listed_count":4,"favourites_count":692,"statuses_count":112,"created_at":"Sun Mar 31 16:38:53 +0000 2013","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"8C8B91","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/829893371\/044803571c0741948580e78beac4776b.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/829893371\/044803571c0741948580e78beac4776b.jpeg","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"1D1D1D","profile_text_color":"892DD8","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/638860032344477696\/BFkJy-69_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/638860032344477696\/BFkJy-69_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1318714999\/1441151859","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:36 +0000 2015","id":663728148073287680,"id_str":"663728148073287680","text":"\u201cHis hands were weak and shaking from carrying too many books from the bookshop. It was the best feeling.\u201d https:\/\/t.co\/bICbOqZKfJ","source":"\u003ca href=\"http:\/\/www.tumblr.com\/\" rel=\"nofollow\"\u003eTumblr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":26762692,"id_str":"26762692","name":"Dutton Books","screen_name":"DuttonBooks","location":"New York, NY","url":"http:\/\/duttonbooks.tumblr.com\/","description":"We publish extraordinary authors, from thriller writers and scientists to celebrities and memoirists. We tweet about bookish things we like. Part of @PenguinUSA","protected":false,"verified":true,"followers_count":46653,"friends_count":4773,"listed_count":1522,"favourites_count":411,"statuses_count":13876,"created_at":"Thu Mar 26 14:40:07 +0000 2009","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"A68B55","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/797415550\/e96aab7262402f41fce109ab18666d10.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/797415550\/e96aab7262402f41fce109ab18666d10.jpeg","profile_background_tile":true,"profile_link_color":"005FA2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"E0E2DF","profile_text_color":"070807","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/422787234136195072\/KFQ5AaGA_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/422787234136195072\/KFQ5AaGA_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/26762692\/1444320653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bICbOqZKfJ","expanded_url":"http:\/\/tmblr.co\/ZpPFdw1xljYKi","display_url":"tmblr.co\/ZpPFdw1xljYKi","indices":[107,130]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/bICbOqZKfJ","expanded_url":"http:\/\/tmblr.co\/ZpPFdw1xljYKi","display_url":"tmblr.co\/ZpPFdw1xljYKi","indices":[124,140]}],"user_mentions":[{"screen_name":"DuttonBooks","name":"Dutton Books","id":26762692,"id_str":"26762692","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134661"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578490880,"id_str":"663728307578490880","text":"RT @caval100: #terrorismoMachista\nHallan el cad\u00e1ver de una mujer de 65 a\u00f1os con varios golpes en la cabeza en Oviedo https:\/\/t.co\/g7SzN76Ji\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":384259047,"id_str":"384259047","name":"CCOO La Rioja","screen_name":"CCOOLaRioja","location":"Logro\u00f1o","url":"http:\/\/www.rioja.ccoo.es","description":"Somos un sindicato obrero, abierto y plural. Siempre en lucha por los derechos laborales y sociales.","protected":false,"verified":false,"followers_count":1108,"friends_count":1206,"listed_count":35,"favourites_count":1431,"statuses_count":25714,"created_at":"Mon Oct 03 11:07:06 +0000 2011","utc_offset":-10800,"time_zone":"Greenland","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"65B0DA","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/441885258997170176\/iZUhYmoF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/441885258997170176\/iZUhYmoF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/384259047\/1443007560","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:17:03 +0000 2015","id":663721971109228544,"id_str":"663721971109228544","text":"#terrorismoMachista\nHallan el cad\u00e1ver de una mujer de 65 a\u00f1os con varios golpes en la cabeza en Oviedo https:\/\/t.co\/g7SzN76JiD v\u00eda @20m","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":76593802,"id_str":"76593802","name":"V\u00edctor Arrogante","screen_name":"caval100","location":"Madrid (Espa\u00f1a)","url":"http:\/\/www.multiforo.eu","description":"Profesor. Ayer y hoy militante por la justicia, la igualdad y la solidaridad. Inmediatamente me di cuenta que era algo por lo que merec\u00eda la pena luchar","protected":false,"verified":false,"followers_count":99651,"friends_count":86918,"listed_count":858,"favourites_count":20041,"statuses_count":265125,"created_at":"Wed Sep 23 08:29:25 +0000 2009","utc_offset":3600,"time_zone":"Madrid","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"ABB8C2","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"CC3366","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657665656108748800\/IcXIy_Rp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657665656108748800\/IcXIy_Rp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/76593802\/1426177688","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4,"favorite_count":0,"entities":{"hashtags":[{"text":"terrorismoMachista","indices":[0,19]}],"urls":[{"url":"https:\/\/t.co\/g7SzN76JiD","expanded_url":"http:\/\/www.20minutos.es\/noticia\/2600097\/0\/cadaver-mujer\/asesinada-violencia\/oviedo\/","display_url":"20minutos.es\/noticia\/260009\u2026","indices":[103,126]}],"user_mentions":[{"screen_name":"20m","name":"20minutos.es","id":31090827,"id_str":"31090827","indices":[131,135]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"terrorismoMachista","indices":[14,33]}],"urls":[{"url":"https:\/\/t.co\/g7SzN76JiD","expanded_url":"http:\/\/www.20minutos.es\/noticia\/2600097\/0\/cadaver-mujer\/asesinada-violencia\/oviedo\/","display_url":"20minutos.es\/noticia\/260009\u2026","indices":[117,140]}],"user_mentions":[{"screen_name":"caval100","name":"V\u00edctor Arrogante","id":76593802,"id_str":"76593802","indices":[3,12]},{"screen_name":"20m","name":"20minutos.es","id":31090827,"id_str":"31090827","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307570126848,"id_str":"663728307570126848","text":"@Flexooomc @Der_Rufus @Denox__ @MrsBellaa_ @LetsPlay2D @RealAngryJoker @DailoYT @_Phytia_ Das war \u00fcbrigens an alle gerichtet. :D","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728056381612032,"in_reply_to_status_id_str":"663728056381612032","in_reply_to_user_id":3306849424,"in_reply_to_user_id_str":"3306849424","in_reply_to_screen_name":"Flexooomc","user":{"id":2837334467,"id_str":"2837334467","name":"Mercury","screen_name":"MercuryCraft7","location":"Der Orden des Steins","url":null,"description":"|| I'm never happy. Never. || Zeichnerin || #DieInsel || Eine Architektin auf @BergwerkLABS || Minecraft StoryMode-Fanatikerin\u2665 ||","protected":false,"verified":false,"followers_count":909,"friends_count":94,"listed_count":3,"favourites_count":6443,"statuses_count":6607,"created_at":"Sun Oct 19 16:28:06 +0000 2014","utc_offset":3600,"time_zone":"Belgrade","geo_enabled":false,"lang":"de","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFCC4D","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/563670431597477889\/7k1Tx-Mb.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/563670431597477889\/7k1Tx-Mb.png","profile_background_tile":false,"profile_link_color":"36C250","profile_sidebar_border_color":"FFF8AD","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661653071492218881\/cyv_SKZg_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661653071492218881\/cyv_SKZg_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2837334467\/1446316862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Flexooomc","name":"Flexooo","id":3306849424,"id_str":"3306849424","indices":[0,10]},{"screen_name":"Der_Rufus","name":"DerRufus","id":2263656451,"id_str":"2263656451","indices":[11,21]},{"screen_name":"Denox__","name":"Denox","id":2340011908,"id_str":"2340011908","indices":[22,30]},{"screen_name":"MrsBellaa_","name":"I\u1515\u15e9 \u2716\ufe0f","id":2422488041,"id_str":"2422488041","indices":[31,42]},{"screen_name":"LetsPlay2D","name":"LetsPlay2D","id":322048757,"id_str":"322048757","indices":[43,54]},{"screen_name":"RealAngryJoker","name":"AngryJoker","id":3243978070,"id_str":"3243978070","indices":[55,70]},{"screen_name":"DailoYT","name":"Dailo","id":1889902442,"id_str":"1889902442","indices":[71,79]},{"screen_name":"_Phytia_","name":"Anna \u00af\\_(\u30c4)_\/\u00af","id":2746252797,"id_str":"2746252797","indices":[80,89]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307586904064,"id_str":"663728307586904064","text":"Woke up pissed and heated. Gotta Focus And Get Right. Proving Grounds Forreal \ud83d\udcaf","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1925268252,"id_str":"1925268252","name":"Im The Real Mar600!!","screen_name":"NoLackin_Mar","location":"Active","url":"https:\/\/soundcloud.com\/trayvon-stevenson\/block-brothers-coming-thru","description":"You Make Em Strong And We'll Make Em ARMY STRONG 05\/16\/14 R.I.P MJH","protected":false,"verified":false,"followers_count":676,"friends_count":371,"listed_count":1,"favourites_count":805,"statuses_count":17278,"created_at":"Wed Oct 02 01:58:40 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658592448646660100\/stG_X3py_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658592448646660100\/stG_X3py_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1925268252\/1445622217","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134661"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307599446016,"id_str":"663728307599446016","text":"Good Morning Twitter world","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1012295941,"id_str":"1012295941","name":"Josh Speedy Mashlan","screen_name":"Mashlan_","location":"Central City (22)","url":"https:\/\/www.facebook.com\/joshua.mashlan","description":"General Manager @VwS_Gaming Work Until You No Longer Have To Introduce Yourself because No one cares about your success more than you. Proudly Served USMC.","protected":false,"verified":false,"followers_count":6322,"friends_count":734,"listed_count":3,"favourites_count":3567,"statuses_count":15624,"created_at":"Sat Dec 15 01:03:04 +0000 2012","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/635147290638974976\/F0Kmk-Ck_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/635147290638974976\/F0Kmk-Ck_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1012295941\/1436294714","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134664"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578544128,"id_str":"663728307578544128","text":"RT @yixinqins: Yixing is using BlackBerry Classic Q20 https:\/\/t.co\/OPx7bxLrQi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3224768511,"id_str":"3224768511","name":"D.K.\u270c","screen_name":"dkloveexo","location":"\uc885\uc778-\uce74\uc774 \/ \uacbd\uc218-\ub514\uc624","url":null,"description":"(150423) \u2764 EXO+L\/EXO+Aeri \u2764 EXO is my life and I will always be with them... KaiSoo\u2606DiKa\u2606KaDi\u2606~93.01.12\u266194.01.14 ~ | 150718 Z.G.\u00d6\u2661~ |","protected":false,"verified":false,"followers_count":392,"friends_count":580,"listed_count":0,"favourites_count":5437,"statuses_count":24513,"created_at":"Thu Apr 30 16:43:32 +0000 2015","utc_offset":7200,"time_zone":"Bucharest","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"110011","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/657202542129094656\/eaAIVSae.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/657202542129094656\/eaAIVSae.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660160842621677568\/K2CwXx9-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660160842621677568\/K2CwXx9-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3224768511\/1446229628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:52:34 +0000 2015","id":663700708437327873,"id_str":"663700708437327873","text":"Yixing is using BlackBerry Classic Q20 https:\/\/t.co\/OPx7bxLrQi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":40456187,"id_str":"40456187","name":"\u683c\u857e\u4e1d","screen_name":"yixinqins","location":null,"url":null,"description":"\u6211\u7684\u6574\u4e2a\u5b87\u5b99\u662fEXO","protected":false,"verified":false,"followers_count":52926,"friends_count":2154,"listed_count":288,"favourites_count":8002,"statuses_count":190056,"created_at":"Sat May 16 12:37:25 +0000 2009","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/455746653085892609\/1jLRLlR4.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/455746653085892609\/1jLRLlR4.jpeg","profile_background_tile":false,"profile_link_color":"7DABB8","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663608222725488640\/yAq-Xn1W_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663608222725488640\/yAq-Xn1W_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/40456187\/1444141244","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":748,"favorite_count":190,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663700705807433728,"id_str":"663700705807433728","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663700705807433728,"id_str":"663700705807433728","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}}},{"id":663700694910656512,"id_str":"663700694910656512","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwQ_1UYAA1QwM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwQ_1UYAA1QwM.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":440,"h":660,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":440,"h":660,"resize":"fit"}}},{"id":663700679278465025,"id_str":"663700679278465025","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwQFmUEAEd0Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwQFmUEAEd0Yt.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":294,"resize":"fit"},"large":{"w":440,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}},{"id":663700673582596096,"id_str":"663700673582596096","indices":[39,62],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwPwYUAAAsLOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwPwYUAAAsLOl.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":294,"resize":"fit"},"large":{"w":440,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"yixinqins","name":"\u683c\u857e\u4e1d","id":40456187,"id_str":"40456187","indices":[3,13]}],"symbols":[],"media":[{"id":663700705807433728,"id_str":"663700705807433728","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663700708437327873,"source_status_id_str":"663700708437327873","source_user_id":40456187,"source_user_id_str":"40456187"}]},"extended_entities":{"media":[{"id":663700705807433728,"id_str":"663700705807433728","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwRobUAAAhMG_.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":634,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":371,"resize":"fit"},"small":{"w":340,"h":210,"resize":"fit"}},"source_status_id":663700708437327873,"source_status_id_str":"663700708437327873","source_user_id":40456187,"source_user_id_str":"40456187"},{"id":663700694910656512,"id_str":"663700694910656512","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwQ_1UYAA1QwM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwQ_1UYAA1QwM.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"large":{"w":440,"h":660,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"medium":{"w":440,"h":660,"resize":"fit"}},"source_status_id":663700708437327873,"source_status_id_str":"663700708437327873","source_user_id":40456187,"source_user_id_str":"40456187"},{"id":663700679278465025,"id_str":"663700679278465025","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwQFmUEAEd0Yt.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwQFmUEAEd0Yt.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":294,"resize":"fit"},"large":{"w":440,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663700708437327873,"source_status_id_str":"663700708437327873","source_user_id":40456187,"source_user_id_str":"40456187"},{"id":663700673582596096,"id_str":"663700673582596096","indices":[54,77],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXwPwYUAAAsLOl.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXwPwYUAAAsLOl.jpg","url":"https:\/\/t.co\/OPx7bxLrQi","display_url":"pic.twitter.com\/OPx7bxLrQi","expanded_url":"http:\/\/twitter.com\/yixinqins\/status\/663700708437327873\/photo\/1","type":"photo","sizes":{"medium":{"w":440,"h":294,"resize":"fit"},"large":{"w":440,"h":294,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"}},"source_status_id":663700708437327873,"source_status_id_str":"663700708437327873","source_user_id":40456187,"source_user_id_str":"40456187"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595288578,"id_str":"663728307595288578","text":"I don't even get that feeling in my stomach no more.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":401034194,"id_str":"401034194","name":"\u261dDOLO\u261d\ufe0f","screen_name":"JG2__","location":null,"url":null,"description":"#BELTZHOOVER #Dice #SRU19","protected":false,"verified":false,"followers_count":580,"friends_count":385,"listed_count":0,"favourites_count":718,"statuses_count":9236,"created_at":"Sat Oct 29 23:20:01 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663721830860091393\/i1r6M0mR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663721830860091393\/i1r6M0mR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/401034194\/1445572976","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578474500,"id_str":"663728307578474500","text":"Good morning! :)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":19279287,"id_str":"19279287","name":"Mobile Home Gurl","screen_name":"mobilehomegurl","location":null,"url":"http:\/\/www.adventuresinmobilehomes.com","description":"Author and Real Estate Investor.\nI write and share my stories and adventures about my experience investing in mobile homes.","protected":false,"verified":false,"followers_count":969,"friends_count":136,"listed_count":40,"favourites_count":112,"statuses_count":3771,"created_at":"Wed Jan 21 06:51:36 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/456571635\/mobilehomegurl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/456571635\/mobilehomegurl.jpg","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2179779572\/mobilehomegurl_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2179779572\/mobilehomegurl_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/19279287\/1437317367","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307591127041,"id_str":"663728307591127041","text":"1 tweep unfollowed (goodbye!) me in the past day. Thank you https:\/\/t.co\/3Obm15c6CH.","source":"\u003ca href=\"http:\/\/www.crowdfireapp.com\" rel=\"nofollow\"\u003eCrowdfire App\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":58717919,"id_str":"58717919","name":"Ariee Yanuar \u2605\u2665\u2660\u2663","screen_name":"aRieeYanuaR","location":"Surabayaa","url":"http:\/\/instagram.com\/kyurield8","description":"Kim Hyorie Imnida l Ariee l Indonesia Girl l Kpop Freakz l ELF l Simple & Ordinary _(._.)__(._.)_","protected":false,"verified":false,"followers_count":1083,"friends_count":1176,"listed_count":19,"favourites_count":207,"statuses_count":31343,"created_at":"Tue Jul 21 05:46:21 +0000 2009","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"090A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637564885480509440\/djGsKgUz.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637564885480509440\/djGsKgUz.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/637565596004020224\/0_fIDFkq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/637565596004020224\/0_fIDFkq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/58717919\/1437316309","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3Obm15c6CH","expanded_url":"http:\/\/www.crowdfireapp.com\/?r=td","display_url":"crowdfireapp.com\/?r=td","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582668801,"id_str":"663728307582668801","text":"RT @SergioDiRio83: Abbiamo uno psicologo per Maurizzietto? https:\/\/t.co\/81aOr1LP6f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723099309,"id_str":"2723099309","name":"Giovanni Russo","screen_name":"GiovRss","location":"Italia","url":null,"description":"Il cibo ed il vino la mia passione diventata lavoro. Lo faccio a Roma ed a Praga ma sono tarantino. Senza ASROMA non so stare.","protected":false,"verified":false,"followers_count":108,"friends_count":615,"listed_count":7,"favourites_count":1518,"statuses_count":1587,"created_at":"Thu Jul 24 16:01:18 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"4A913C","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642422474488086528\/MUbVPB2__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642422474488086528\/MUbVPB2__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723099309\/1442000759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:02:06 +0000 2015","id":663703107377958912,"id_str":"663703107377958912","text":"Abbiamo uno psicologo per Maurizzietto? https:\/\/t.co\/81aOr1LP6f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":178685611,"id_str":"178685611","name":"La Vena de De Rossi","screen_name":"SergioDiRio83","location":"Neverland","url":null,"description":"Le cose belle della vita so' due: e una \u00e8 magn\u00e0.","protected":false,"verified":false,"followers_count":1165,"friends_count":1716,"listed_count":12,"favourites_count":12121,"statuses_count":17055,"created_at":"Sun Aug 15 12:08:39 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"001329","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/447203283\/x9220fd49b370820e87b6480f8107121.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/447203283\/x9220fd49b370820e87b6480f8107121.jpg","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"F7B565","profile_sidebar_fill_color":"000B17","profile_text_color":"004358","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663545585971105792\/mAlWLd5k_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663545585971105792\/mAlWLd5k_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/178685611\/1442449628","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663703095092895744,"id_str":"663703095092895744","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","url":"https:\/\/t.co\/81aOr1LP6f","display_url":"pic.twitter.com\/81aOr1LP6f","expanded_url":"http:\/\/twitter.com\/SergioDiRio83\/status\/663703107377958912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":504,"resize":"fit"},"large":{"w":524,"h":504,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663703095092895744,"id_str":"663703095092895744","indices":[40,63],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","url":"https:\/\/t.co\/81aOr1LP6f","display_url":"pic.twitter.com\/81aOr1LP6f","expanded_url":"http:\/\/twitter.com\/SergioDiRio83\/status\/663703107377958912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":504,"resize":"fit"},"large":{"w":524,"h":504,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SergioDiRio83","name":"La Vena de De Rossi","id":178685611,"id_str":"178685611","indices":[3,17]}],"symbols":[],"media":[{"id":663703095092895744,"id_str":"663703095092895744","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","url":"https:\/\/t.co\/81aOr1LP6f","display_url":"pic.twitter.com\/81aOr1LP6f","expanded_url":"http:\/\/twitter.com\/SergioDiRio83\/status\/663703107377958912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":504,"resize":"fit"},"large":{"w":524,"h":504,"resize":"fit"}},"source_status_id":663703107377958912,"source_status_id_str":"663703107377958912","source_user_id":178685611,"source_user_id_str":"178685611"}]},"extended_entities":{"media":[{"id":663703095092895744,"id_str":"663703095092895744","indices":[59,82],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXyctNW4AAJmoN.jpg","url":"https:\/\/t.co\/81aOr1LP6f","display_url":"pic.twitter.com\/81aOr1LP6f","expanded_url":"http:\/\/twitter.com\/SergioDiRio83\/status\/663703107377958912\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":327,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":524,"h":504,"resize":"fit"},"large":{"w":524,"h":504,"resize":"fit"}},"source_status_id":663703107377958912,"source_status_id_str":"663703107377958912","source_user_id":178685611,"source_user_id_str":"178685611"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595288576,"id_str":"663728307595288576","text":"@TwooSmoove \ud83d\udcaa\ud83c\udffe oh ite bet we gotta link","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727331605893120,"in_reply_to_status_id_str":"663727331605893120","in_reply_to_user_id":2357087338,"in_reply_to_user_id_str":"2357087338","in_reply_to_screen_name":"TwooSmoove","user":{"id":177085482,"id_str":"177085482","name":"EvolEtah","screen_name":"callonWILL_","location":null,"url":null,"description":"D.I.4.C 218","protected":false,"verified":false,"followers_count":157,"friends_count":158,"listed_count":1,"favourites_count":110,"statuses_count":2173,"created_at":"Wed Aug 11 05:58:38 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/450641715\/0227121634a.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/450641715\/0227121634a.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"FFFFC4","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657895996911960064\/V5rgtOFB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657895996911960064\/V5rgtOFB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/177085482\/1447010489","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TwooSmoove","name":"\u26fd\ufe0fLoudPackShawty\u26fd\ufe0f","id":2357087338,"id_str":"2357087338","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578519553,"id_str":"663728307578519553","text":"RT @jizzledailylife: Word to Rich Homie https:\/\/t.co\/qOLk18oY2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39396538,"id_str":"39396538","name":"Wolf Homie Jame$","screen_name":"MettaWorld_Mack","location":"Chaplin of Racks Committee ","url":null,"description":"You dont like how i'm living ? then f*ck you !NCCU16 , RIP Daddy...Honey Hush #ColorMoney #doghive","protected":false,"verified":false,"followers_count":3187,"friends_count":2903,"listed_count":31,"favourites_count":1634,"statuses_count":465023,"created_at":"Tue May 12 01:17:48 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"50A1C9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584080285\/wkjh0j6d68nofqolnhbr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584080285\/wkjh0j6d68nofqolnhbr.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644312872340836352\/7qFft7Ti_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644312872340836352\/7qFft7Ti_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39396538\/1446103409","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:42:06 +0000 2015","id":663728274657452032,"id_str":"663728274657452032","text":"Word to Rich Homie https:\/\/t.co\/qOLk18oY2b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":210593395,"id_str":"210593395","name":"JizzleDailyKnicks","screen_name":"jizzledailylife","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1309,"friends_count":1315,"listed_count":2,"favourites_count":222,"statuses_count":55691,"created_at":"Sun Oct 31 20:27:55 +0000 2010","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662648816261275649\/7KUWS_A2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662648816261275649\/7KUWS_A2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/210593395\/1381775074","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"quoted_status_id":663727667515117568,"quoted_status_id_str":"663727667515117568","quoted_status":{"created_at":"Mon Nov 09 14:39:42 +0000 2015","id":663727667515117568,"id_str":"663727667515117568","text":"Who buying some pussy today ?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":39396538,"id_str":"39396538","name":"Wolf Homie Jame$","screen_name":"MettaWorld_Mack","location":"Chaplin of Racks Committee ","url":null,"description":"You dont like how i'm living ? then f*ck you !NCCU16 , RIP Daddy...Honey Hush #ColorMoney #doghive","protected":false,"verified":false,"followers_count":3187,"friends_count":2903,"listed_count":31,"favourites_count":1634,"statuses_count":465022,"created_at":"Tue May 12 01:17:48 +0000 2009","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"50A1C9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/584080285\/wkjh0j6d68nofqolnhbr.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/584080285\/wkjh0j6d68nofqolnhbr.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/644312872340836352\/7qFft7Ti_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/644312872340836352\/7qFft7Ti_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/39396538\/1446103409","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qOLk18oY2b","expanded_url":"https:\/\/twitter.com\/mettaworld_mack\/status\/663727667515117568","display_url":"twitter.com\/mettaworld_mac\u2026","indices":[19,42]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":true,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qOLk18oY2b","expanded_url":"https:\/\/twitter.com\/mettaworld_mack\/status\/663727667515117568","display_url":"twitter.com\/mettaworld_mac\u2026","indices":[40,63]}],"user_mentions":[{"screen_name":"jizzledailylife","name":"JizzleDailyKnicks","id":210593395,"id_str":"210593395","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595276288,"id_str":"663728307595276288","text":"Electric stim + heat= heaven on a Monday morning!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2366405066,"id_str":"2366405066","name":"Lindsey Trenshaw","screen_name":"LTrenshaw","location":null,"url":null,"description":"Wifey. Mommy. Be kind. Help others. Live endlessly. Just soakin' in the moments of my life - Picture taker, memory maker!","protected":false,"verified":false,"followers_count":120,"friends_count":309,"listed_count":2,"favourites_count":2334,"statuses_count":1243,"created_at":"Sat Mar 01 02:43:11 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645644555090456576\/mNXdcEeP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645644555090456576\/mNXdcEeP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2366405066\/1439816056","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582709760,"id_str":"663728307582709760","text":"\ud83d\udc40\ud83e\udd14","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4125149499,"id_str":"4125149499","name":"\u27b0Bandit","screen_name":"Supresoo","location":"Pluto Nigga","url":null,"description":"@TheNightCulture \/\/ Jess \u2764\ufe0f \/\/ New Account Smh","protected":false,"verified":false,"followers_count":201,"friends_count":184,"listed_count":0,"favourites_count":20,"statuses_count":163,"created_at":"Fri Nov 06 07:22:06 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662531053068922880\/rppeHe_F_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662531053068922880\/rppeHe_F_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4125149499\/1446795179","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590946816,"id_str":"663728307590946816","text":"Senioritis started early","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":872683970,"id_str":"872683970","name":"mo","screen_name":"rhett_anderson","location":"Aledo, TX","url":null,"description":null,"protected":false,"verified":false,"followers_count":832,"friends_count":419,"listed_count":0,"favourites_count":18158,"statuses_count":16629,"created_at":"Wed Oct 10 23:47:16 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660704626388275200\/LjSCf1lt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660704626388275200\/LjSCf1lt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/872683970\/1441818535","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582603265,"id_str":"663728307582603265","text":"Lalalalalalala","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":719852514,"id_str":"719852514","name":"charlie","screen_name":"nadhirahnizam_","location":null,"url":null,"description":"ig; ndhrh.nzm","protected":false,"verified":false,"followers_count":798,"friends_count":683,"listed_count":1,"favourites_count":3717,"statuses_count":36425,"created_at":"Fri Jul 27 09:48:44 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/553453758282072064\/X1PooT60.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/553453758282072064\/X1PooT60.jpeg","profile_background_tile":true,"profile_link_color":"F5ABB5","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663273624875302912\/q5mGySGJ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663273624875302912\/q5mGySGJ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/719852514\/1443070082","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582685184,"id_str":"663728307582685184","text":"Al fin y al cabo eso era lo que ella deseaba tambi\u00e9n","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3253196951,"id_str":"3253196951","name":"Paula Manzano","screen_name":"PaulaManzanoS","location":null,"url":null,"description":"Una sola vida y un mill\u00f3n de aspiraciones.","protected":false,"verified":false,"followers_count":392,"friends_count":374,"listed_count":0,"favourites_count":1426,"statuses_count":1985,"created_at":"Thu May 14 07:42:16 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/616150154165489664\/--YE1R18.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/616150154165489664\/--YE1R18.jpg","profile_background_tile":true,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663466342188777472\/5aCFEHMX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663466342188777472\/5aCFEHMX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3253196951\/1446990532","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590967296,"id_str":"663728307590967296","text":"RT @dempa_rnmemp: #1rt\u3067\u672c\u540d\u306e\u4e00\u90e8\u6652\u30592rt\u3067\u8840\u6db2\u578b3rt\u3067\u8eab\u95774rt\u3067\u8a95\u751f\u65e55rt\u3067\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306e\u7531\u67656rt\u3067\u5f7c\u6c0f\u5f7c\u5973\u306e\u6709\u71217rt\u3067\u30c6\u30b9\u30c8\u306e\u6700\u9ad8\u5f97\u70b98rt\u3067\u3069\u3093\u306a\u8cea\u554f\u306b\u3082\u7b54\u3048\u308b9rt\u3067\u4f1a\u3044\u305f\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u3092\u8a00\u304615rt\u3067\u672c\u4eba\u30a2\u30a4\u30b3\u30f3\n\n\u30a2\u30a4\u30b3\u30f3\u306f\u8003\u3048\u308b\n\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1547586242,"id_str":"1547586242","name":"\u26a1\u4e16\u514e\u8987\u26a1\u3048\u3044\u3082\u304c\u63a8\u3057","screen_name":"305Kohking","location":"\u7a7a\u4e2d\u306b\u63cf\u304f\u30e9\u30a4\u30f3","url":null,"description":"\u30bb\u30c8\u30cf\u3068\u8aad\u307f\u307e\u3059\u3002\n\u3067\u3093\u3071\u7d44\/\u982d\u6587\u5b57D\/bo2\/\u30e2\u30f3\u30b9\u30c8\/\u6226\u56fdBASARA\n\n\u6700\u8fd1\u306f\u30d0\u30f3\u3082\u3093\uff01\u306b\u306f\u307e\u308a\u304b\u3051\u3066\u3044\u307e\u3059\u3002\n\u30b5\u30d6\u57a2\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n\u30ea\u30d7\u306f\u57fa\u672c\u8fd4\u3057\u307e\u3059\u3002\n\u30e2\u30f3\u30b9\u30c8\u30de\u30eb\u30c1\u8a98\u3063\u3066\u304f\u3060\u3055\u3044\u3002\u5927\u4f53\u884c\u304d\u307e\u3059\u3002","protected":false,"verified":false,"followers_count":612,"friends_count":797,"listed_count":11,"favourites_count":5510,"statuses_count":3871,"created_at":"Wed Jun 26 07:44:14 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661357132890030080\/9B20crER_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661357132890030080\/9B20crER_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1547586242\/1445347249","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:33:45 +0000 2015","id":663726171595476993,"id_str":"663726171595476993","text":"#1rt\u3067\u672c\u540d\u306e\u4e00\u90e8\u6652\u30592rt\u3067\u8840\u6db2\u578b3rt\u3067\u8eab\u95774rt\u3067\u8a95\u751f\u65e55rt\u3067\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306e\u7531\u67656rt\u3067\u5f7c\u6c0f\u5f7c\u5973\u306e\u6709\u71217rt\u3067\u30c6\u30b9\u30c8\u306e\u6700\u9ad8\u5f97\u70b98rt\u3067\u3069\u3093\u306a\u8cea\u554f\u306b\u3082\u7b54\u3048\u308b9rt\u3067\u4f1a\u3044\u305f\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u3092\u8a00\u304615rt\u3067\u672c\u4eba\u30a2\u30a4\u30b3\u30f3\n\n\u30a2\u30a4\u30b3\u30f3\u306f\u8003\u3048\u308b\n\u81ea\u64ae\u308a\u3057\u305f\u3053\u3068\u7121\u3044\u304b\u3089\u7df4\u7fd2\u304b\u3089\ud83d\ude09","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3423204320,"id_str":"3423204320","name":"YU\u26a1\ufe0f","screen_name":"dempa_rnmemp","location":"\u4e09\u91cd\u770c","url":null,"description":"\u26a1\ufe0f\u3067\u3093\u3071\u7d44.inc \u306d\u3080\u63a8\u3057\/\u9ad81\u7537\u5b50\/\u7121\u8a00\u30d5\u30a9\u30ed\u30fc\u3054\u3081\u3093\u306a\u3055\u3044\/\u521d\u5fc3\u8005\u30f2\u30bf\u3067\u3059\u304c\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u3057\u307e\u3059\u26a1\ufe0f","protected":false,"verified":false,"followers_count":331,"friends_count":362,"listed_count":5,"favourites_count":929,"statuses_count":2082,"created_at":"Wed Sep 02 06:56:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645970316393508865\/8tCbKCW4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645970316393508865\/8tCbKCW4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3423204320\/1442357131","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[{"text":"1rt\u3067\u672c\u540d\u306e\u4e00\u90e8\u6652\u30592rt\u3067\u8840\u6db2\u578b3rt\u3067\u8eab\u95774rt\u3067\u8a95\u751f\u65e55rt\u3067\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306e\u7531\u67656rt\u3067\u5f7c\u6c0f\u5f7c\u5973\u306e\u6709\u71217rt\u3067\u30c6\u30b9\u30c8\u306e\u6700\u9ad8\u5f97\u70b98rt\u3067\u3069\u3093\u306a\u8cea\u554f\u306b\u3082\u7b54\u3048\u308b9rt\u3067\u4f1a\u3044\u305f\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u3092\u8a00\u304615rt\u3067\u672c\u4eba\u30a2\u30a4\u30b3\u30f3","indices":[0,110]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"1rt\u3067\u672c\u540d\u306e\u4e00\u90e8\u6652\u30592rt\u3067\u8840\u6db2\u578b3rt\u3067\u8eab\u95774rt\u3067\u8a95\u751f\u65e55rt\u3067\u30a2\u30ab\u30a6\u30f3\u30c8\u540d\u306e\u7531\u67656rt\u3067\u5f7c\u6c0f\u5f7c\u5973\u306e\u6709\u71217rt\u3067\u30c6\u30b9\u30c8\u306e\u6700\u9ad8\u5f97\u70b98rt\u3067\u3069\u3093\u306a\u8cea\u554f\u306b\u3082\u7b54\u3048\u308b9rt\u3067\u4f1a\u3044\u305f\u3044\u30d5\u30a9\u30ed\u30ef\u30fc\u69d8\u3092\u8a00\u304615rt\u3067\u672c\u4eba\u30a2\u30a4\u30b3\u30f3","indices":[18,128]}],"urls":[],"user_mentions":[{"screen_name":"dempa_rnmemp","name":"YU\u26a1\ufe0f","id":3423204320,"id_str":"3423204320","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595153409,"id_str":"663728307595153409","text":"@vouskjng story???","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727284235333632,"in_reply_to_status_id_str":"663727284235333632","in_reply_to_user_id":1018887272,"in_reply_to_user_id_str":"1018887272","in_reply_to_screen_name":"vouskjng","user":{"id":2912779560,"id_str":"2912779560","name":"myb","screen_name":"lhaeumn","location":"\u3164","url":"http:\/\/twitter.com\/jaewomn","description":"\u3164","protected":false,"verified":false,"followers_count":252,"friends_count":98,"listed_count":1,"favourites_count":3442,"statuses_count":11318,"created_at":"Fri Nov 28 14:13:00 +0000 2014","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/569391788025065472\/AFRH29yE.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/569391788025065472\/AFRH29yE.jpeg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663705403444715520\/QegXH5bt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663705403444715520\/QegXH5bt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2912779560\/1446762653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"vouskjng","name":"pyra","id":1018887272,"id_str":"1018887272","indices":[0,9]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595177984,"id_str":"663728307595177984","text":"RT @CewekLogis: Cewek kalo udah tulus, udah pasti dia setia. Dan kalo udah setia, udah pasti dia ingin terus bahagia. So, dijaga ya, jgn di\u2026","source":"\u003ca href=\"http:\/\/blackberry.com\/twitter\" rel=\"nofollow\"\u003eTwitter for BlackBerry\u00ae\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3702067525,"id_str":"3702067525","name":"janetmaylenia.","screen_name":"janetmylsr","location":"Indonesia","url":"http:\/\/Instagram.com\/janetmylsr","description":"03.09.14\u2665","protected":false,"verified":false,"followers_count":55,"friends_count":14,"listed_count":0,"favourites_count":1,"statuses_count":1496,"created_at":"Sun Sep 27 09:05:19 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en-gb","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660614037684641793\/UeOj6qaN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660614037684641793\/UeOj6qaN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3702067525\/1446988761","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:29 +0000 2015","id":663727866509549568,"id_str":"663727866509549568","text":"Cewek kalo udah tulus, udah pasti dia setia. Dan kalo udah setia, udah pasti dia ingin terus bahagia. So, dijaga ya, jgn disia2in. :)","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":342706805,"id_str":"342706805","name":"CEWEK LOGIS","screen_name":"CewekLogis","location":null,"url":"http:\/\/www.fimelia.net","description":"Kita mengunakan perasaan. tp bukan berarti laki2 bisa memainkan perasaan kita | @SepatuKorea sepatunya LUCU2 & MURAH","protected":false,"verified":false,"followers_count":121912,"friends_count":24961,"listed_count":40,"favourites_count":55,"statuses_count":48321,"created_at":"Tue Jul 26 13:14:13 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/437068112928587776\/xtIqR0cu.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/437068112928587776\/xtIqR0cu.png","profile_background_tile":false,"profile_link_color":"2C3B02","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"B1E856","profile_text_color":"CCB760","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/584932186119245826\/2yR7uq2m_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/584932186119245826\/2yR7uq2m_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/342706805\/1396518055","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CewekLogis","name":"CEWEK LOGIS","id":342706805,"id_str":"342706805","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607760896,"id_str":"663728307607760896","text":"RT @900208_020000: \uc544\ubba4\uc988\uac00 \uc798\ud55c \uac70\ub77c\uace0\ub294 #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \ud06c\ub85c\uc2a4\uc9c4 \ub370\ubdd4\uc2dc\ud0a8 \uac70 #CROSSGENE \uc774\uac8c \ub05d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3258059358,"id_str":"3258059358","name":"sHin\ucff5\ud574 \ub844\ube44","screen_name":"186cmX66kg","location":null,"url":null,"description":"\ud06c\ub85c\uc2a4\uc9c4 \/ \uc790\uafb8\ub9cc \uc2e0\ucff5\ud574 \/ \uac00\ub054 \uadf8\ub9bc\uadf8\ub9bd\ub2c8\ub2e4 \/ \uc2e0\uc6d0\ud638\ubcf4\uace0\uc2f6\ub2e4 \/ (\uc0ac\uc9c4\ubcf4\uc815 @shinwoncheck , \ud22c\ub514\uacc4 @orewa_rom \uc624\uc18c\ub9c8\uce20\uacc4 @shin_S2S2 )","protected":false,"verified":false,"followers_count":249,"friends_count":144,"listed_count":1,"favourites_count":308,"statuses_count":33713,"created_at":"Sat Jun 27 20:46:08 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5ABB5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/630430253031161857\/AfBhn7mw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/630430253031161857\/AfBhn7mw.jpg","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663618966397456385\/lnvVeTjo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663618966397456385\/lnvVeTjo_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3258059358\/1446801227","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:04 +0000 2015","id":663727763593932800,"id_str":"663727763593932800","text":"\uc544\ubba4\uc988\uac00 \uc798\ud55c \uac70\ub77c\uace0\ub294 #\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0 \ud06c\ub85c\uc2a4\uc9c4 \ub370\ubdd4\uc2dc\ud0a8 \uac70 #CROSSGENE \uc774\uac8c \ub05d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3306333991,"id_str":"3306333991","name":"\u30d1\u30eb\u30da\u30f3 (\ud30c\ub974\ud3ad)","screen_name":"900208_020000","location":"Tokyo, Japan","url":"http:\/\/020000.tistory.com\/","description":"CROSS GENE\u306e FAN\u3067\u3059\u3002 \u3088\u308d\u3057\u304f\u306d\u30fc\u2606 \u65e5\u672c\u8a9e & \u97d3\u56fd\u8a9e \/ header @_Seonyul \/ profile @peace_gene \/ @niahogene","protected":false,"verified":false,"followers_count":234,"friends_count":237,"listed_count":1,"favourites_count":1653,"statuses_count":19721,"created_at":"Tue Aug 04 19:00:32 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660592237214961664\/oCJ1Dapt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660592237214961664\/oCJ1Dapt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3306333991\/1446313614","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[13,27]},{"text":"CROSSGENE","indices":[40,50]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\uc544\ubba4\uc988\ucf54\ub9ac\uc544_\uc131\uba85\uc11c_\ub2f5\ubcc0","indices":[32,46]},{"text":"CROSSGENE","indices":[59,69]}],"urls":[],"user_mentions":[{"screen_name":"900208_020000","name":"\u30d1\u30eb\u30da\u30f3 (\ud30c\ub974\ud3ad)","id":3306333991,"id_str":"3306333991","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578408961,"id_str":"663728307578408961","text":"RT @ana_ame: \u5fd7\u5e0c\u306b\u3083\u3093\u306e\u30de\u30eb\u79d8\u85ac\uff5e\u2661 https:\/\/t.co\/tbhFMdxQoq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3146207355,"id_str":"3146207355","name":"\u3075\u3084\u308a\u3093","screen_name":"huraimanictend1","location":null,"url":null,"description":"\u3050\u3063\u3059\u308a\u5bdd\u308b\u306e\u3068\u3001\u7f8e\u5473\u3057\u3044\u3082\u306e\u98df\u3079\u308b\u306e\u304c\u4e00\u756a\u5e78\u305b\u3067\u3059\u306a\uff01 \u5b9f\u6cc1\u3057\u3066\u307f\u305f\u3044\u306a\u3041\u30fb\u30a2\u30cb\u30e1\u30fb\u30dc\u30ab\u30ed\u30fb\u58f0\u512a\u30fb\u6b4c\u3044\u624b\u30fb\u8aad\u66f8\u30fb\u6b4c\u3046\u3053\u3068\u30fb\u7d75\u3092\u63cf\u304f\u3053\u3068\u304c\u597d\u304d\u3067\u3059(*\u00b4\u03c9\uff40*)nana\u30fb\u30df\u30af\u30c1\u30e3\u30fb\u5360\u30c4\u30af\u306b\u3082\u3044\u307e\u3059\u266a\u6c17\u8efd\u306b\u7d61\u3093\u3067\u4e0b\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":299,"friends_count":1057,"listed_count":5,"favourites_count":280,"statuses_count":1206,"created_at":"Wed Apr 08 02:46:51 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585635002118975489\/sVmS5qLY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585635002118975489\/sVmS5qLY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3146207355\/1428461350","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:32:22 +0000 2015","id":663725822176456704,"id_str":"663725822176456704","text":"\u5fd7\u5e0c\u306b\u3083\u3093\u306e\u30de\u30eb\u79d8\u85ac\uff5e\u2661 https:\/\/t.co\/tbhFMdxQoq","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":106359803,"id_str":"106359803","name":"\u30a2\u30ca","screen_name":"ana_ame","location":"\u3075\u3068\u3093","url":null,"description":"\u5973\u306e\u5b50\u306e\u7d75\u3092\u63cf\u3044\u3066\u308b\u3088\n\u30a2\u30a4\u30b3\u30f3\u306f\u3061\u307e\u308a\uff08@c_ma28\uff09\u304b\u3089\u3082\u3089\u3063\u305f\u3088\uff01","protected":false,"verified":false,"followers_count":1675,"friends_count":148,"listed_count":104,"favourites_count":602,"statuses_count":32489,"created_at":"Tue Jan 19 09:06:21 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme3\/bg.gif","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"D3D2CF","profile_sidebar_fill_color":"E3E2DE","profile_text_color":"634047","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655917462915907584\/4mRImIrb_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655917462915907584\/4mRImIrb_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/106359803\/1445788022","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":31,"favorite_count":73,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[13,36],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ana_ame","name":"\u30a2\u30ca","id":106359803,"id_str":"106359803","indices":[3,11]}],"symbols":[],"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}},"source_status_id":663725822176456704,"source_status_id_str":"663725822176456704","source_user_id":106359803,"source_user_id_str":"106359803"}]},"extended_entities":{"media":[{"id":663725820897157120,"id_str":"663725820897157120","indices":[26,49],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYHHhbUYAACZun.png","url":"https:\/\/t.co\/tbhFMdxQoq","display_url":"pic.twitter.com\/tbhFMdxQoq","expanded_url":"http:\/\/twitter.com\/ana_ame\/status\/663725822176456704\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":566,"resize":"fit"},"large":{"w":600,"h":1000,"resize":"fit"},"medium":{"w":600,"h":1000,"resize":"fit"}},"source_status_id":663725822176456704,"source_status_id_str":"663725822176456704","source_user_id":106359803,"source_user_id_str":"106359803"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582603264,"id_str":"663728307582603264","text":"@Nono_ka_Eg \n\n\u3067\u306f\u3001\u306e\u306e\u3063\u3066\u547c\u3076\u307e\u3059\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728213596598272,"in_reply_to_status_id_str":"663728213596598272","in_reply_to_user_id":4066254565,"in_reply_to_user_id_str":"4066254565","in_reply_to_screen_name":"Nono_ka_Eg","user":{"id":4179319466,"id_str":"4179319466","name":"(( \u6dbc\u592a\u88d9","screen_name":"K__R_GENE","location":null,"url":null,"description":"GENE \u4e5f\/\u672c\u5bb6\u4e8b\u52d9\u6240\u7121\u95a2\u4fc2\/\u5927\u5207\u4e0d\u8981\/\u4e00\u822c\u62d2\u5426\/\u4e00\u90e8\u306e\u4e5f\u62d2\u5426\n\/\u904a\u4eba\/\u53f3\u5bc4\/","protected":false,"verified":false,"followers_count":6,"friends_count":7,"listed_count":0,"favourites_count":2,"statuses_count":44,"created_at":"Mon Nov 09 12:49:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663700762652839936\/8sCiWYtG_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663700762652839936\/8sCiWYtG_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4179319466\/1447073655","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Nono_ka_Eg","name":"\u2745:*.\uff61\u306e\u306e\u3046\u3055\u304e \uff61.*:\u2745","id":4066254565,"id_str":"4066254565","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607859200,"id_str":"663728307607859200","text":"RT @zeinicienta: Los fans de la se\u00f1ora que cree que el marido muerto est\u00e1 como un barrilete c\u00f3smico en los sat\u00e9lites dicen que Carri\u00f3 est\u00e1 \u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":147668328,"id_str":"147668328","name":"el chino","screen_name":"pabloqac","location":null,"url":null,"description":"el mas grande del sur sigue siendo pap\u00e1.","protected":false,"verified":false,"followers_count":164,"friends_count":664,"listed_count":2,"favourites_count":1336,"statuses_count":2200,"created_at":"Mon May 24 18:53:32 +0000 2010","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/119587531\/escudo_cervecero.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/119587531\/escudo_cervecero.jpg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/581972976091951104\/wuAxgk-8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/581972976091951104\/wuAxgk-8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/147668328\/1420997667","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:27:33 +0000 2015","id":663528318847840258,"id_str":"663528318847840258","text":"Los fans de la se\u00f1ora que cree que el marido muerto est\u00e1 como un barrilete c\u00f3smico en los sat\u00e9lites dicen que Carri\u00f3 est\u00e1 loca.","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146578557,"id_str":"146578557","name":"Fenicia ","screen_name":"zeinicienta","location":null,"url":null,"description":"Cuando dicen \u00abTu Vieja\u00bb hablan de mi.","protected":false,"verified":false,"followers_count":29508,"friends_count":423,"listed_count":507,"favourites_count":62699,"statuses_count":109595,"created_at":"Fri May 21 20:11:29 +0000 2010","utc_offset":-10800,"time_zone":"Buenos Aires","geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/548891927\/219972763019278061_IX8Qj6WW_c.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/548891927\/219972763019278061_IX8Qj6WW_c.jpg","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/451781590352277504\/CCupuhgr_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/451781590352277504\/CCupuhgr_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/146578557\/1405101862","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1000,"favorite_count":976,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"zeinicienta","name":"Fenicia ","id":146578557,"id_str":"146578557","indices":[3,15]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603570689,"id_str":"663728307603570689","text":"\u304a\u524d\u307b\u3093\u3068\u5371\u306a\u3063\u304b\u3057\u3044\u308f\n\u305d\u3093\u306a\u3068\u3053\u3082\u597d\u304d\u3060\u3051\u3069\u306a","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829345721,"id_str":"2829345721","name":"\u7389\u68ee \u30c4\u30f3\u30c7\u30ecbot","screen_name":"Tsundere_T","location":"\u30a2\u30a4\u30b7\u30c6\u30eb \u25a1 2014.10.13 \u301c","url":null,"description":"#\u7389\u68ee\u30c4\u30f3\u30c7\u30ecbot \u300a \u534a\u624b\u52d5 \u300b","protected":false,"verified":false,"followers_count":174,"friends_count":4,"listed_count":2,"favourites_count":273,"statuses_count":4725,"created_at":"Wed Sep 24 05:23:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/550485728707112960\/E6bIkhwd_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/550485728707112960\/E6bIkhwd_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829345721\/1414071826","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578527744,"id_str":"663728307578527744","text":"RT @ComplexMag: Mondays. https:\/\/t.co\/gRprb1SiyB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":222668292,"id_str":"222668292","name":"lil L","screen_name":"LilytheNinja","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":1587,"friends_count":442,"listed_count":3,"favourites_count":11262,"statuses_count":32616,"created_at":"Sat Dec 04 02:40:56 +0000 2010","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"090A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000002263328\/a1685218e600a6c2465a5f92480c8722.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000002263328\/a1685218e600a6c2465a5f92480c8722.jpeg","profile_background_tile":false,"profile_link_color":"050504","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"050505","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649292160794275840\/TnhCnMMS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649292160794275840\/TnhCnMMS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/222668292\/1442383759","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:09 +0000 2015","id":663725517313470464,"id_str":"663725517313470464","text":"Mondays. https:\/\/t.co\/gRprb1SiyB","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":13049362,"id_str":"13049362","name":"Complex","screen_name":"ComplexMag","location":"New York","url":"http:\/\/www.complex.com","description":"Making Culture Pop.\n\nSnapchat: ComplexMag","protected":false,"verified":true,"followers_count":798976,"friends_count":36526,"listed_count":6384,"favourites_count":7146,"statuses_count":229478,"created_at":"Mon Feb 04 14:34:39 +0000 2008","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/443404890799210496\/chsw2pxv.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/443404890799210496\/chsw2pxv.jpeg","profile_background_tile":true,"profile_link_color":"FF0000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F2F2F2","profile_text_color":"787878","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/615645115684511745\/J_kELH0x_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/615645115684511745\/J_kELH0x_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/13049362\/1443536403","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":321,"favorite_count":180,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gRprb1SiyB","expanded_url":"https:\/\/vine.co\/v\/el7T3iEpX72","display_url":"vine.co\/v\/el7T3iEpX72","indices":[9,32]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/gRprb1SiyB","expanded_url":"https:\/\/vine.co\/v\/el7T3iEpX72","display_url":"vine.co\/v\/el7T3iEpX72","indices":[25,48]}],"user_mentions":[{"screen_name":"ComplexMag","name":"Complex","id":13049362,"id_str":"13049362","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578384384,"id_str":"663728307578384384","text":"\u304a\u524d\u304c\u3059\u3079\u304d\u304b #\u304a\u524d\u304c\u306e\u5f8c\u306b\u3059\u3068\u6253\u3063\u3066\u597d\u304d\u3068\u51fa\u305f\u3089\u5e78\u305b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4143994153,"id_str":"4143994153","name":"\u3044\u30fc\u3055\u3093","screen_name":"same0sun1po2","location":"Hokkaido","url":null,"description":"\u602a\u3057\u3044\u3082\u306e\u3067\u306f\u3054\u3056\u3044\u307e\u305b\u3093\u3088\u30fc(*\u30fb\u2200\u30fb*)\u30ce","protected":false,"verified":false,"followers_count":17,"friends_count":42,"listed_count":0,"favourites_count":14,"statuses_count":56,"created_at":"Fri Nov 06 08:02:53 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662916653324242944\/fKCjwFAr_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662916653324242944\/fKCjwFAr_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4143994153\/1447046669","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u304a\u524d\u304c\u306e\u5f8c\u306b\u3059\u3068\u6253\u3063\u3066\u597d\u304d\u3068\u51fa\u305f\u3089\u5e78\u305b","indices":[9,29]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590950912,"id_str":"663728307590950912","text":"RT @Webyad: https:\/\/t.co\/ERRig5sx6P","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3290888398,"id_str":"3290888398","name":"Emad Ghaeni","screen_name":"EmadGhaeni","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":26,"friends_count":99,"listed_count":0,"favourites_count":87,"statuses_count":22,"created_at":"Wed May 20 04:20:15 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 11:42:16 +0000 2015","id":663320628867416068,"id_str":"663320628867416068","text":"https:\/\/t.co\/ERRig5sx6P","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":817004352,"id_str":"817004352","name":"Webyad","screen_name":"Webyad","location":"Tehran","url":"http:\/\/webyad.com","description":null,"protected":false,"verified":false,"followers_count":215,"friends_count":42,"listed_count":2,"favourites_count":42,"statuses_count":247,"created_at":"Tue Sep 11 08:51:43 +0000 2012","utc_offset":12600,"time_zone":"Tehran","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F3FFE5","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/623832509248245760\/JPueLPfa.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/623832509248245760\/JPueLPfa.png","profile_background_tile":false,"profile_link_color":"3DB220","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/597678411738288128\/DGas3UFK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/597678411738288128\/DGas3UFK_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/817004352\/1437567287","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663320625818173440,"id_str":"663320625818173440","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","url":"https:\/\/t.co\/ERRig5sx6P","display_url":"pic.twitter.com\/ERRig5sx6P","expanded_url":"http:\/\/twitter.com\/Webyad\/status\/663320628867416068\/photo\/1","type":"photo","sizes":{"large":{"w":851,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663320625818173440,"id_str":"663320625818173440","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","url":"https:\/\/t.co\/ERRig5sx6P","display_url":"pic.twitter.com\/ERRig5sx6P","expanded_url":"http:\/\/twitter.com\/Webyad\/status\/663320628867416068\/photo\/1","type":"photo","sizes":{"large":{"w":851,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Webyad","name":"Webyad","id":817004352,"id_str":"817004352","indices":[3,10]}],"symbols":[],"media":[{"id":663320625818173440,"id_str":"663320625818173440","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","url":"https:\/\/t.co\/ERRig5sx6P","display_url":"pic.twitter.com\/ERRig5sx6P","expanded_url":"http:\/\/twitter.com\/Webyad\/status\/663320628867416068\/photo\/1","type":"photo","sizes":{"large":{"w":851,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"}},"source_status_id":663320628867416068,"source_status_id_str":"663320628867416068","source_user_id":817004352,"source_user_id_str":"817004352"}]},"extended_entities":{"media":[{"id":663320625818173440,"id_str":"663320625818173440","indices":[12,35],"media_url":"http:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTSWmEIVAAAK0Ke.png","url":"https:\/\/t.co\/ERRig5sx6P","display_url":"pic.twitter.com\/ERRig5sx6P","expanded_url":"http:\/\/twitter.com\/Webyad\/status\/663320628867416068\/photo\/1","type":"photo","sizes":{"large":{"w":851,"h":315,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":125,"resize":"fit"},"medium":{"w":600,"h":222,"resize":"fit"}},"source_status_id":663320628867416068,"source_status_id_str":"663320628867416068","source_user_id":817004352,"source_user_id_str":"817004352"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590983680,"id_str":"663728307590983680","text":"RT @harhar112009: Liza TheMostBeautiful\n\nThank you for choosing liza soberano @tccandler https:\/\/t.co\/ZmiJvJAMdk","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3963623300,"id_str":"3963623300","name":"Hopie","screen_name":"Hopie220","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":9,"friends_count":8,"listed_count":6,"favourites_count":5,"statuses_count":30016,"created_at":"Wed Oct 21 00:45:40 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656632841858498560\/6SkNa5p9_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656632841858498560\/6SkNa5p9_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3963623300\/1445388462","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:08:03 +0000 2015","id":663719705882980352,"id_str":"663719705882980352","text":"Liza TheMostBeautiful\n\nThank you for choosing liza soberano @tccandler https:\/\/t.co\/ZmiJvJAMdk","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":187893066,"id_str":"187893066","name":"LizQuen\u2122 World","screen_name":"harhar112009","location":"Toronto, Ontario","url":null,"description":"how can be brave?how can i love? wen im afraid to fall","protected":false,"verified":false,"followers_count":2896,"friends_count":760,"listed_count":16,"favourites_count":9938,"statuses_count":80648,"created_at":"Tue Sep 07 12:37:11 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663113883830251520\/1EsJ2Y9B_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663113883830251520\/1EsJ2Y9B_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/187893066\/1446933643","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":47,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[60,70]}],"symbols":[],"media":[{"id":663719530326159360,"id_str":"663719530326159360","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","url":"https:\/\/t.co\/ZmiJvJAMdk","display_url":"pic.twitter.com\/ZmiJvJAMdk","expanded_url":"http:\/\/twitter.com\/harhar112009\/status\/663719705882980352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663719530326159360,"id_str":"663719530326159360","indices":[71,94],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","url":"https:\/\/t.co\/ZmiJvJAMdk","display_url":"pic.twitter.com\/ZmiJvJAMdk","expanded_url":"http:\/\/twitter.com\/harhar112009\/status\/663719705882980352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"harhar112009","name":"LizQuen\u2122 World","id":187893066,"id_str":"187893066","indices":[3,16]},{"screen_name":"tccandler","name":"TC Candler","id":58533850,"id_str":"58533850","indices":[78,88]}],"symbols":[],"media":[{"id":663719530326159360,"id_str":"663719530326159360","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","url":"https:\/\/t.co\/ZmiJvJAMdk","display_url":"pic.twitter.com\/ZmiJvJAMdk","expanded_url":"http:\/\/twitter.com\/harhar112009\/status\/663719705882980352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663719705882980352,"source_status_id_str":"663719705882980352","source_user_id":187893066,"source_user_id_str":"187893066"}]},"extended_entities":{"media":[{"id":663719530326159360,"id_str":"663719530326159360","indices":[89,112],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYBZXOUcAAeoz_.jpg","url":"https:\/\/t.co\/ZmiJvJAMdk","display_url":"pic.twitter.com\/ZmiJvJAMdk","expanded_url":"http:\/\/twitter.com\/harhar112009\/status\/663719705882980352\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":900,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":510,"resize":"fit"},"large":{"w":640,"h":960,"resize":"fit"}},"source_status_id":663719705882980352,"source_status_id_str":"663719705882980352","source_user_id":187893066,"source_user_id_str":"187893066"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307569979392,"id_str":"663728307569979392","text":"RT @kor_celebrities: iPad Pro\u304c11\u670811\u65e5\u767a\u58f2\u300232GB Wi-Fi\u306794,800\u5186\uff5e 12.9\u578b\/2,732\u00d72,048\u30c9\u30c3\u30c8\u3067\u3001Apple Pencil\u624b\u66f8\u304d\u3082 https:\/\/t.co\/dxF38uCbti https:\/\/t.co\/Ft\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":31665482,"id_str":"31665482","name":".","screen_name":"pieceofwings","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":843,"friends_count":257,"listed_count":14,"favourites_count":3684,"statuses_count":140363,"created_at":"Thu Apr 16 05:56:57 +0000 2009","utc_offset":-32400,"time_zone":"Alaska","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"709397","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme6\/bg.gif","profile_background_tile":false,"profile_link_color":"ED8EE2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"A0C5C7","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663204621310005248\/rnrMLdSU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663204621310005248\/rnrMLdSU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/31665482\/1446954942","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:14 +0000 2015","id":663727552087748610,"id_str":"663727552087748610","text":"iPad Pro\u304c11\u670811\u65e5\u767a\u58f2\u300232GB Wi-Fi\u306794,800\u5186\uff5e 12.9\u578b\/2,732\u00d72,048\u30c9\u30c3\u30c8\u3067\u3001Apple Pencil\u624b\u66f8\u304d\u3082 https:\/\/t.co\/dxF38uCbti https:\/\/t.co\/FtWwv9E2Uf","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":146066313,"id_str":"146066313","name":"\u97d3\u6d41\u30c4\u30a4\u30c3\u30bf\u30fc","screen_name":"kor_celebrities","location":null,"url":"http:\/\/www.korea-twitter.com","description":"K-POP\u3001\u97d3\u6d41\u4ff3\u512a\u306a\u3069\u306e\u30a8\u30f3\u30bf\u30e1\u60c5\u5831\u3092\u305f\u307e\u306b\u3064\u3076\u3084\u3044\u3066\u307e\u3059\u3002\u97d3\u56fd\u82b8\u80fd\u4eba\u306e\u30c4\u30a4\u30c3\u30bf\u30fc\u2192 http:\/\/korea-twitter.com \u30a4\u30f3\u30b9\u30bf\u30b0\u30e9\u30e0\u2192 http:\/\/kpop-instagram.com","protected":false,"verified":false,"followers_count":489680,"friends_count":9556,"listed_count":3194,"favourites_count":480,"statuses_count":96982,"created_at":"Thu May 20 14:29:40 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1206244029\/image_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1206244029\/image_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":26,"favorite_count":26,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dxF38uCbti","expanded_url":"http:\/\/av.watch.impress.co.jp\/docs\/news\/20151109_729687.html","display_url":"av.watch.impress.co.jp\/docs\/news\/2015\u2026","indices":[79,102]}],"user_mentions":[],"symbols":[],"media":[{"id":663727551160807424,"id_str":"663727551160807424","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663727551160807424,"id_str":"663727551160807424","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663727549411782656,"id_str":"663727549411782656","indices":[103,126],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsIpUcAAifd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsIpUcAAifd-.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dxF38uCbti","expanded_url":"http:\/\/av.watch.impress.co.jp\/docs\/news\/20151109_729687.html","display_url":"av.watch.impress.co.jp\/docs\/news\/2015\u2026","indices":[100,123]}],"user_mentions":[{"screen_name":"kor_celebrities","name":"\u97d3\u6d41\u30c4\u30a4\u30c3\u30bf\u30fc","id":146066313,"id_str":"146066313","indices":[3,19]}],"symbols":[],"media":[{"id":663727551160807424,"id_str":"663727551160807424","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727552087748610,"source_status_id_str":"663727552087748610","source_user_id":146066313,"source_user_id_str":"146066313"}]},"extended_entities":{"media":[{"id":663727551160807424,"id_str":"663727551160807424","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsPKUcAA5kKy.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"large":{"w":800,"h":600,"resize":"fit"},"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663727552087748610,"source_status_id_str":"663727552087748610","source_user_id":146066313,"source_user_id_str":"146066313"},{"id":663727549411782656,"id_str":"663727549411782656","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYIsIpUcAAifd-.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYIsIpUcAAifd-.jpg","url":"https:\/\/t.co\/FtWwv9E2Uf","display_url":"pic.twitter.com\/FtWwv9E2Uf","expanded_url":"http:\/\/twitter.com\/kor_celebrities\/status\/663727552087748610\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":1024,"h":683,"resize":"fit"}},"source_status_id":663727552087748610,"source_status_id_str":"663727552087748610","source_user_id":146066313,"source_user_id_str":"146066313"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582582784,"id_str":"663728307582582784","text":"@korokoromo \u304a\u306f\u3042\u308a\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728253287272448,"in_reply_to_status_id_str":"663728253287272448","in_reply_to_user_id":128537774,"in_reply_to_user_id_str":"128537774","in_reply_to_screen_name":"korokoromo","user":{"id":2561140578,"id_str":"2561140578","name":"\u30b0\u30ec\u30a4\u30b7\u30a2@\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","screen_name":"GlacierMusics","location":"\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046","url":"http:\/\/ncode.syosetu.com\/n7566cw\/","description":"\u03b1\u30e9\u30f3\u30ad\u30f3\u30b06265\u4ef6\u4e2d660\u4f4d\uff01web\u30b5\u30a4\u30c8\u3010\u5c0f\u8aac\u5bb6\u306b\u306a\u308d\u3046\u3011\u3067\u9577\u7de8\u30c0\u30fc\u30af\u30d5\u30a1\u30f3\u30bf\u30b8\u30fc\u5c0f\u8aac\u3001\u30c7\u30a6\u30b9\u30a8\u30af\u30b9\u30de\u30ad\u30ca\uff01\u3092\u66f8\u7c4d\u5316\u76ee\u6307\u3057\u9023\u8f09\u4e2d\u3067\u3059\u3002CM\u2192\u3010https:\/\/youtu.be\/nS2sByx59YI\u3011\u540c\u30b5\u30a4\u30c8\u306b\u3066\u3010\u8a55\u4fa1\u30fb\u611f\u60f3\u3011\u304a\u5f85\u3061\u3057\u3066\u304a\u308a\u307e\u3059\uff01\u30c4\u30a4\u30d7\u30ed\u3010http:\/\/twpf.jp\/GlacierMusics\u3011","protected":false,"verified":false,"followers_count":6225,"friends_count":6320,"listed_count":36,"favourites_count":4382,"statuses_count":9037,"created_at":"Wed Jun 11 11:19:54 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662944208613871616\/Ogzc4jno_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662944208613871616\/Ogzc4jno_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2561140578\/1445732978","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"korokoromo","name":"\u5929\u6c5f \u8863","id":128537774,"id_str":"128537774","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134660"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578535936,"id_str":"663728307578535936","text":"RT @BlackMen4Men: sexy quinton's big uncut black dick slips out \ud83d\ude0d\ud83c\udf46\ud83d\udca6 http:\/\/t.co\/N70hicNNCl for more! \ud83d\udc4d\ud83c\udffd\ud83d\udc99\ud83c\udfc6 http:\/\/t.co\/NJM4jcPmE7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":603086085,"id_str":"603086085","name":"nelson bermudez","screen_name":"nelson_bermudez","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":7154,"friends_count":1636,"listed_count":44,"favourites_count":31677,"statuses_count":56588,"created_at":"Fri Jun 08 19:30:47 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000784266281\/969953334437938285d852d0ae9d0b5a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000784266281\/969953334437938285d852d0ae9d0b5a_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/603086085\/1385304482","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Oct 15 13:42:55 +0000 2015","id":654653684815495170,"id_str":"654653684815495170","text":"sexy quinton's big uncut black dick slips out \ud83d\ude0d\ud83c\udf46\ud83d\udca6 http:\/\/t.co\/N70hicNNCl for more! \ud83d\udc4d\ud83c\udffd\ud83d\udc99\ud83c\udfc6 http:\/\/t.co\/NJM4jcPmE7","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1567564662,"id_str":"1567564662","name":"BlackM4M.com","screen_name":"BlackMen4Men","location":"CLlCK MY LlNK","url":"http:\/\/www.BlackM4M.com\/advancedmembers","description":"http:\/\/www.BlackM4M.com - Over 500,000 Black Gay Profiles. Create Your FREE Profile NOW! (disclaimer: all posts on this twitter account are user submissions)","protected":false,"verified":false,"followers_count":26172,"friends_count":4,"listed_count":74,"favourites_count":2269,"statuses_count":642,"created_at":"Thu Jul 04 07:30:06 +0000 2013","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/649912238237552640\/p4kxuewA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/649912238237552640\/p4kxuewA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1567564662\/1426800437","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":89,"favorite_count":190,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/N70hicNNCl","expanded_url":"http:\/\/BLACKM4M.COM","display_url":"BLACKM4M.COM","indices":[50,72]}],"user_mentions":[],"symbols":[],"media":[{"id":654653640821469184,"id_str":"654653640821469184","indices":[88,110],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","url":"http:\/\/t.co\/NJM4jcPmE7","display_url":"pic.twitter.com\/NJM4jcPmE7","expanded_url":"http:\/\/twitter.com\/BlackMen4Men\/status\/654653684815495170\/photo\/1","type":"photo","sizes":{"small":{"w":255,"h":454,"resize":"fit"},"medium":{"w":255,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":255,"h":454,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":654653640821469184,"id_str":"654653640821469184","indices":[88,110],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","url":"http:\/\/t.co\/NJM4jcPmE7","display_url":"pic.twitter.com\/NJM4jcPmE7","expanded_url":"http:\/\/twitter.com\/BlackMen4Men\/status\/654653684815495170\/photo\/1","type":"animated_gif","sizes":{"small":{"w":255,"h":454,"resize":"fit"},"medium":{"w":255,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":255,"h":454,"resize":"fit"}},"video_info":{"aspect_ratio":[255,454],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CRXMBJAUcAAGq04.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/N70hicNNCl","expanded_url":"http:\/\/BLACKM4M.COM","display_url":"BLACKM4M.COM","indices":[68,90]}],"user_mentions":[{"screen_name":"BlackMen4Men","name":"BlackM4M.com","id":1567564662,"id_str":"1567564662","indices":[3,16]}],"symbols":[],"media":[{"id":654653640821469184,"id_str":"654653640821469184","indices":[106,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","url":"http:\/\/t.co\/NJM4jcPmE7","display_url":"pic.twitter.com\/NJM4jcPmE7","expanded_url":"http:\/\/twitter.com\/BlackMen4Men\/status\/654653684815495170\/photo\/1","type":"photo","sizes":{"small":{"w":255,"h":454,"resize":"fit"},"medium":{"w":255,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":255,"h":454,"resize":"fit"}},"source_status_id":654653684815495170,"source_status_id_str":"654653684815495170","source_user_id":1567564662,"source_user_id_str":"1567564662"}]},"extended_entities":{"media":[{"id":654653640821469184,"id_str":"654653640821469184","indices":[106,128],"media_url":"http:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","media_url_https":"https:\/\/pbs.twimg.com\/tweet_video_thumb\/CRXMBJAUcAAGq04.png","url":"http:\/\/t.co\/NJM4jcPmE7","display_url":"pic.twitter.com\/NJM4jcPmE7","expanded_url":"http:\/\/twitter.com\/BlackMen4Men\/status\/654653684815495170\/photo\/1","type":"animated_gif","sizes":{"small":{"w":255,"h":454,"resize":"fit"},"medium":{"w":255,"h":454,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":255,"h":454,"resize":"fit"}},"source_status_id":654653684815495170,"source_status_id_str":"654653684815495170","source_user_id":1567564662,"source_user_id_str":"1567564662","video_info":{"aspect_ratio":[255,454],"variants":[{"bitrate":0,"content_type":"video\/mp4","url":"https:\/\/pbs.twimg.com\/tweet_video\/CRXMBJAUcAAGq04.mp4"}]}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607887872,"id_str":"663728307607887872","text":"RT @uloveLena: deleted ya number, wassup?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2524404393,"id_str":"2524404393","name":"Q\u3072!S","screen_name":"RestOnQuette","location":null,"url":null,"description":"Came up out the concrete.","protected":false,"verified":false,"followers_count":1416,"friends_count":1140,"listed_count":0,"favourites_count":503,"statuses_count":3376,"created_at":"Sat May 03 01:02:34 +0000 2014","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656310190141259776\/QKgdKMkw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656310190141259776\/QKgdKMkw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2524404393\/1446953313","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 05:33:47 +0000 2015","id":663227897465987072,"id_str":"663227897465987072","text":"deleted ya number, wassup?","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":946737638,"id_str":"946737638","name":"lena.","screen_name":"uloveLena","location":null,"url":null,"description":"#ripMonta #ripRAYRAY #ripDEANGELO #704. she finessed it. she the best.","protected":false,"verified":false,"followers_count":1670,"friends_count":482,"listed_count":4,"favourites_count":10837,"statuses_count":95260,"created_at":"Tue Nov 13 23:49:43 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/710922201\/dd05d0a4e4e757993998afb49c654e83.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/710922201\/dd05d0a4e4e757993998afb49c654e83.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662135672761921536\/IGA7eagv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662135672761921536\/IGA7eagv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/946737638\/1446703798","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1077,"favorite_count":423,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"uloveLena","name":"lena.","id":946737638,"id_str":"946737638","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603656704,"id_str":"663728307603656704","text":"15.30 #Chicago #Quilmes; #Temperley #Argentinos; #Huracan #Belgrano\nMataderos, el Sur y Parque Patricios por ese lugar que nadie quiere","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":175239079,"id_str":"175239079","name":"Leandro Sia ","screen_name":"leandrosia","location":"moreno, buenos aires","url":null,"description":"Periodista\/relator. En AM 810 Radio Federal haciendo @canchalibrearg de martes a viernes 22 a 23 hs. Periodismo y cine, mis 2 pasiones","protected":false,"verified":false,"followers_count":487,"friends_count":757,"listed_count":23,"favourites_count":390,"statuses_count":17380,"created_at":"Fri Aug 06 01:59:49 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/568231602216386560\/NTYVbZhi_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/568231602216386560\/NTYVbZhi_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/175239079\/1416764472","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Chicago","indices":[6,14]},{"text":"Quilmes","indices":[15,23]},{"text":"Temperley","indices":[25,35]},{"text":"Argentinos","indices":[36,47]},{"text":"Huracan","indices":[49,57]},{"text":"Belgrano","indices":[58,67]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590971394,"id_str":"663728307590971394","text":"RT @baileebeatriz: WHAT IF THEY GO FOR PEOPLE UNDER 5 FT??????","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3241511154,"id_str":"3241511154","name":"el","screen_name":"emelytommo","location":"Hawthorne, CA","url":null,"description":"lawndale high \/\/ colorguard","protected":false,"verified":false,"followers_count":433,"friends_count":55,"listed_count":3,"favourites_count":2346,"statuses_count":18469,"created_at":"Wed Jun 10 17:27:05 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"89C9FA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/622515375289204736\/n-9rHVIk.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/622515375289204736\/n-9rHVIk.png","profile_background_tile":true,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660564794756366336\/F52Lwqgb_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660564794756366336\/F52Lwqgb_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3241511154\/1446181693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:48:41 +0000 2015","id":663624231805018112,"id_str":"663624231805018112","text":"WHAT IF THEY GO FOR PEOPLE UNDER 5 FT??????","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":955947103,"id_str":"955947103","name":"bailee","screen_name":"baileebeatriz","location":null,"url":null,"description":"leave","protected":false,"verified":false,"followers_count":334,"friends_count":263,"listed_count":0,"favourites_count":4079,"statuses_count":10384,"created_at":"Sun Nov 18 17:58:47 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663625697647169536\/yl_JBaR6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663625697647169536\/yl_JBaR6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/955947103\/1447052756","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"baileebeatriz","name":"bailee","id":955947103,"id_str":"955947103","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590971393,"id_str":"663728307590971393","text":"@rosecnp \u0e40\u0e1e\u0e49\u0e2d\u0e41\u0e23\u0e07\u0e21\u0e32\u0e01\u0e08\u0e23\u0e34\u0e21\u0e46\u0e40\u0e2b\u0e49\u0e2d \u0e2a\u0e39\u0e49\u0e19\u0e30\u0e40\u0e01\u0e34\u0e4b\u0e25","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727873094643712,"in_reply_to_status_id_str":"663727873094643712","in_reply_to_user_id":579877561,"in_reply_to_user_id_str":"579877561","in_reply_to_screen_name":"rosecnp","user":{"id":1603261159,"id_str":"1603261159","name":"9\u2661","screen_name":"pparnnt","location":"Gryffindor, Hogwarts.","url":null,"description":"\u2765 \u221elive fab&glam. | 1999s , \u221enarmmes.\u265a \u263cThailandbby\u21e2 Canada`\u2603","protected":false,"verified":false,"followers_count":383,"friends_count":291,"listed_count":1,"favourites_count":1447,"statuses_count":26827,"created_at":"Thu Jul 18 11:34:21 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EDECE9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/638924145145704449\/3LRwF-zl.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/638924145145704449\/3LRwF-zl.jpg","profile_background_tile":true,"profile_link_color":"FFBBE5","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663221743700480000\/nyadbBMs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663221743700480000\/nyadbBMs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1603261159\/1447067795","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"rosecnp","name":"wanderlust","id":579877561,"id_str":"579877561","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307570016257,"id_str":"663728307570016257","text":"RT @arika0725: \u305d\u3057\u3066\uff01\u5e30\u308a\u306b\u30e1\u30f3\u30d0\u30fc\u306e\u3055\u304a\u308a\uff08\u4f0a\u85e4\u91cc\u7e54\uff09\u304c\u8f09\u3063\u3066\u308b\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7\u3092\u8cb7\u3063\u3066\u304d\u305f\u3088\u30fc\u30fc\u30fc\u30fc\uff01\uff01\uff01\u3055\u304a\u308a\u63b2\u8f09\u304a\u3081\u3067\u3068\u3046\uff01\uff01\uff01\u30e1\u30f3\u30d0\u30fc\u304c\u8f09\u3063\u3066\u308b\u306e\u5b09\u3057\u3044\u3088\u30fc\u30fc\u30fc\uff01\uff01\uff01\u307f\u3093\u306a\u3082\u30b2\u30c3\u30c8\u3057\u3066\u304f\u308c\u305f\u304b\u306a\u30fc\u30fc\u30fc\uff1f\uff1f\n\n#\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7 https:\/\/t.co\/L\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2954402442,"id_str":"2954402442","name":"\u898b\u308c\u3070\u308f\u304b\u308b\u3058\u3083\u3093\uff01\u30a2\u30a4\u30b9\u30de\u30f3\u3060\u304a\uff01","screen_name":"19750113mk","location":null,"url":null,"description":"\u97f3\u697d\u306e\u7d39\u4ecb\u3092\u3057\u3066\u307e\u3061\u3085\uff01\u5730\u65b9\u30a2\u30a4\u30c9\u30eb\u30aa\u30bf\u30af\u3067\u3061\u3085\uff01\u3046\u3075\u3075\uff01\u3042\u306f\u306f\uff01\u304a\u3088\u3088\uff01\u306a\u3093\u3061\u3083\u3063\u3066\uff01\u53cb\u9054\u3067\u3061\u3085\u3088\u306d\u30fc\uff01\u5fc3\u3082\u4f53\u3082\u3001\u6c37\u3064\u3044\u305f\u3088\uff01\u30a2\u30a4\u30b9\u30de\u30f3\u3060\u304a\uff01","protected":false,"verified":false,"followers_count":1803,"friends_count":2080,"listed_count":21,"favourites_count":154461,"statuses_count":69948,"created_at":"Thu Jan 01 06:55:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661192092467662848\/BsXP6KGw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661192092467662848\/BsXP6KGw_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Nov 05 13:14:59 +0000 2015","id":662256796627636224,"id_str":"662256796627636224","text":"\u305d\u3057\u3066\uff01\u5e30\u308a\u306b\u30e1\u30f3\u30d0\u30fc\u306e\u3055\u304a\u308a\uff08\u4f0a\u85e4\u91cc\u7e54\uff09\u304c\u8f09\u3063\u3066\u308b\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7\u3092\u8cb7\u3063\u3066\u304d\u305f\u3088\u30fc\u30fc\u30fc\u30fc\uff01\uff01\uff01\u3055\u304a\u308a\u63b2\u8f09\u304a\u3081\u3067\u3068\u3046\uff01\uff01\uff01\u30e1\u30f3\u30d0\u30fc\u304c\u8f09\u3063\u3066\u308b\u306e\u5b09\u3057\u3044\u3088\u30fc\u30fc\u30fc\uff01\uff01\uff01\u307f\u3093\u306a\u3082\u30b2\u30c3\u30c8\u3057\u3066\u304f\u308c\u305f\u304b\u306a\u30fc\u30fc\u30fc\uff1f\uff1f\n\n#\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7 https:\/\/t.co\/L5kM95k1JW","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662246487028404224,"in_reply_to_status_id_str":"662246487028404224","in_reply_to_user_id":778795519,"in_reply_to_user_id_str":"778795519","in_reply_to_screen_name":"arika0725","user":{"id":778795519,"id_str":"778795519","name":"\u6a58\u3042\u308a\u304b@\u5168\u56fd\u30c4\u30a2\u30fc\u6c7a\u5b9a\uff01","screen_name":"arika0725","location":null,"url":"http:\/\/ameblo.jp\/aritan1004\/","description":"\u3042\u308a\u305f\u3093\uff01\u30cf\u30cb\u30fc\u30b9\u30d1\u30a4\u30b9\u30d7\u30ed\u30c7\u30e5\u30fc\u30b5\u30fc\uff01\u8d64\u306e\u4eba\uff01\u9f3b\u8840\u7d44\uff01\u304a\u4ed5\u4e8b\u4f9d\u983c\uff1ainfo\uff20geo-tokyo.jp","protected":false,"verified":false,"followers_count":5460,"friends_count":305,"listed_count":231,"favourites_count":38357,"statuses_count":34657,"created_at":"Fri Aug 24 19:07:06 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/642725675233755136\/TbGNDohB_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/642725675233755136\/TbGNDohB_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/778795519\/1440126137","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":19,"entities":{"hashtags":[{"text":"\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7","indices":[101,109]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":662256782438301696,"id_str":"662256782438301696","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","url":"https:\/\/t.co\/L5kM95k1JW","display_url":"pic.twitter.com\/L5kM95k1JW","expanded_url":"http:\/\/twitter.com\/arika0725\/status\/662256796627636224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662256782438301696,"id_str":"662256782438301696","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","url":"https:\/\/t.co\/L5kM95k1JW","display_url":"pic.twitter.com\/L5kM95k1JW","expanded_url":"http:\/\/twitter.com\/arika0725\/status\/662256796627636224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u30e4\u30f3\u30b0\u30b8\u30e3\u30f3\u30d7","indices":[116,124]}],"urls":[],"user_mentions":[{"screen_name":"arika0725","name":"\u6a58\u3042\u308a\u304b@\u5168\u56fd\u30c4\u30a2\u30fc\u6c7a\u5b9a\uff01","id":778795519,"id_str":"778795519","indices":[3,13]}],"symbols":[],"media":[{"id":662256782438301696,"id_str":"662256782438301696","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","url":"https:\/\/t.co\/L5kM95k1JW","display_url":"pic.twitter.com\/L5kM95k1JW","expanded_url":"http:\/\/twitter.com\/arika0725\/status\/662256796627636224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}},"source_status_id":662256796627636224,"source_status_id_str":"662256796627636224","source_user_id":778795519,"source_user_id_str":"778795519"}]},"extended_entities":{"media":[{"id":662256782438301696,"id_str":"662256782438301696","indices":[125,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTDPCOtUAAA6X3l.jpg","url":"https:\/\/t.co\/L5kM95k1JW","display_url":"pic.twitter.com\/L5kM95k1JW","expanded_url":"http:\/\/twitter.com\/arika0725\/status\/662256796627636224\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":750,"h":1000,"resize":"fit"}},"source_status_id":662256796627636224,"source_status_id_str":"662256796627636224","source_user_id":778795519,"source_user_id_str":"778795519"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307574206464,"id_str":"663728307574206464","text":"Meet my new friend Katy - Persian Cat :) Stroll on over and paw her a like and share =^,^= https:\/\/t.co\/1o6WInlLmM","source":"\u003ca href=\"http:\/\/www.facebook.com\/twitter\" rel=\"nofollow\"\u003eFacebook\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":760125548,"id_str":"760125548","name":"Hunter and Friends","screen_name":"NancieVollmar","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":54,"friends_count":9,"listed_count":1,"favourites_count":0,"statuses_count":4441,"created_at":"Wed Aug 15 20:42:26 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/531954667631034368\/O9P0M_zj_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/531954667631034368\/O9P0M_zj_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/760125548\/1415662997","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1o6WInlLmM","expanded_url":"http:\/\/fb.me\/1TnlhYZEU","display_url":"fb.me\/1TnlhYZEU","indices":[93,116]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134658"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578400769,"id_str":"663728307578400769","text":"@_______ftxxOr \n\n\u2198\n\n \u826f \u304b \u3063 \u305f \u826f \u304b \u3063 \u305f ~ (","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663618980154728448,"in_reply_to_status_id_str":"663618980154728448","in_reply_to_user_id":4139748192,"in_reply_to_user_id_str":"4139748192","in_reply_to_screen_name":"_______ftxxOr","user":{"id":4114228159,"id_str":"4114228159","name":"\u253c\u253c\u3000\u3000\u3000\u3000\u21d4\u3000\u3000\u2025\u3000\u3086 \u305f \u304f \u30f3","screen_name":"____o317yt","location":null,"url":null,"description":"\u3086 \u3063 \u304f \u3093 * \u3086 \u3061 \u3083 \u3093 * \u3086 \u305f \u305f * \u305f \u307e\n\u3061 \u3083","protected":false,"verified":false,"followers_count":17,"friends_count":17,"listed_count":0,"favourites_count":1,"statuses_count":136,"created_at":"Tue Nov 03 15:27:09 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661814166508863488\/7Ts_RMDN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661814166508863488\/7Ts_RMDN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4114228159\/1446821537","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"_______ftxxOr","name":"\u300c\u3000\u2654\u3000\u3000\u2312\u3000\u3000\u21c5\u3000\u3000G a y a\u3000\u300d","id":4139748192,"id_str":"4139748192","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307599355905,"id_str":"663728307599355905","text":"@jrMsQLjfrfSGg7J \n\u3048\uff1f\ud83d\ude33\u65e9\u3044\u306a\uff01\u304a\u3044\u3063\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726639176544257,"in_reply_to_status_id_str":"663726639176544257","in_reply_to_user_id":3162320660,"in_reply_to_user_id_str":"3162320660","in_reply_to_screen_name":"jrMsQLjfrfSGg7J","user":{"id":3014171106,"id_str":"3014171106","name":"\u3048\u308a\u3063\u304f\u2606","screen_name":"f34dBZ506C9kofS","location":null,"url":null,"description":"\u4f0a\u826f\u6ce2\u4e2d\u261e\u5357\u98a8\u539f\u9ad8\u6821\u261e\u30ad\u30ea\u30bf\u30f3\u300a\u4fdd\u80b2\u79d1\u300b LoveDreamHappiness\u2661\u2661\u2661\u3055\u3044\u3063\u304f\u3045\u301c\u301c\uff01 E-girls\u5927\u597d\u304d\u3084\u3041\u3041\u3041\u301c\u301c\uff01\uff01","protected":false,"verified":false,"followers_count":540,"friends_count":703,"listed_count":2,"favourites_count":3994,"statuses_count":2433,"created_at":"Mon Feb 09 10:16:26 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656854415425470464\/CRbi20JU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656854415425470464\/CRbi20JU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3014171106\/1445441271","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"jrMsQLjfrfSGg7J","name":"akito","id":3162320660,"id_str":"3162320660","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134664"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307586863104,"id_str":"663728307586863104","text":"RT @Classic21: @bobnina58 De rien. Merci pour votre tweet et votre fid\u00e9lit\u00e9 !","source":"\u003ca href=\"http:\/\/mobile.twitter.com\" rel=\"nofollow\"\u003eMobile Web\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2933349916,"id_str":"2933349916","name":"Bobnina58@gmail. com","screen_name":"bobnina58","location":"Douai ","url":null,"description":null,"protected":false,"verified":false,"followers_count":8,"friends_count":24,"listed_count":0,"favourites_count":51,"statuses_count":55,"created_at":"Sat Dec 20 08:46:00 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640465485771968513\/ot0Cl14Q_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640465485771968513\/ot0Cl14Q_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2933349916\/1441534008","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:08 +0000 2015","id":663718214506045440,"id_str":"663718214506045440","text":"@bobnina58 De rien. Merci pour votre tweet et votre fid\u00e9lit\u00e9 !","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663709085423050752,"in_reply_to_status_id_str":"663709085423050752","in_reply_to_user_id":2933349916,"in_reply_to_user_id_str":"2933349916","in_reply_to_screen_name":"bobnina58","user":{"id":20601429,"id_str":"20601429","name":"Classic 21","screen_name":"Classic21","location":"Belgique","url":"http:\/\/www.classic21.be","description":"N\u00e9e le 1er avril 2004, Classic 21 est la radio Rock 'n Pop de la RTBF.","protected":false,"verified":true,"followers_count":8493,"friends_count":389,"listed_count":184,"favourites_count":1654,"statuses_count":12330,"created_at":"Wed Feb 11 16:40:21 +0000 2009","utc_offset":3600,"time_zone":"Brussels","geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/577549633926266880\/8qzDC3OG.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/577549633926266880\/8qzDC3OG.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656859757320384512\/PTOdmt9W_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656859757320384512\/PTOdmt9W_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/20601429\/1442227334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bobnina58","name":"Bobnina58@gmail. com","id":2933349916,"id_str":"2933349916","indices":[0,10]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Classic21","name":"Classic 21","id":20601429,"id_str":"20601429","indices":[3,13]},{"screen_name":"bobnina58","name":"Bobnina58@gmail. com","id":2933349916,"id_str":"2933349916","indices":[15,25]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"fr","timestamp_ms":"1447080134661"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607834624,"id_str":"663728307607834624","text":"RT @katyapolika901: \u041c\u043e\u0436\u0435\u0442 \u043f\u043e\u0432\u043b\u0438\u044f\u0442\u044c \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0441\u043f\u044b\u0442\u044b\u0432\u0430\u0435\u0442. \u0418\u0434\u0435\u0442 \u043e\u0431 \u043e\u0447\u0435\u043d\u044c \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u043e\u0439 \u0431\u043e\u043b\u0435\u0437\u043d\u0438!.","source":"\u003ca href=\"http:\/\/twishort.com\" rel=\"nofollow\"\u003eTwishort Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2348934530,"id_str":"2348934530","name":"\u0418\u0430\u043a\u0438\u043d\u0444 \u0428\u0443\u0440\u044c\u0435\u0432","screen_name":"ieifusvkrnha","location":"\u0411\u0443\u0434\u0430-\u041f\u043e\u043b\u0438\u0434\u0430\u0440\u043e\u0432\u0441\u043a\u0430\u044f","url":null,"description":"\u041f\u0435\u043a\u0430\u0440\u044c","protected":false,"verified":false,"followers_count":182,"friends_count":1068,"listed_count":1,"favourites_count":77,"statuses_count":2053,"created_at":"Mon Feb 17 19:05:49 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/548719110432260096\/nBQAYNWF_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/548719110432260096\/nBQAYNWF_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2348934530\/1417602431","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 18:43:10 +0000 2015","id":663426550185000960,"id_str":"663426550185000960","text":"\u041c\u043e\u0436\u0435\u0442 \u043f\u043e\u0432\u043b\u0438\u044f\u0442\u044c \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0438\u0441\u043f\u044b\u0442\u044b\u0432\u0430\u0435\u0442. \u0418\u0434\u0435\u0442 \u043e\u0431 \u043e\u0447\u0435\u043d\u044c \u0441\u0435\u0440\u044c\u0435\u0437\u043d\u043e\u0439 \u0431\u043e\u043b\u0435\u0437\u043d\u0438!.","source":"\u003ca href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.mmapps.mobile.trending.topics\" rel=\"nofollow\"\u003eTrending Topics for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1654065727,"id_str":"1654065727","name":"\u043f\u043e\u043b\u0438\u043a\u0430\u0445\u0438\u043d \u043a\u0430\u0442\u044f","screen_name":"katyapolika901","location":"\u0412\u0435\u0440\u043f\u0430","url":"https:\/\/twitter.com\/katyapolika901","description":"\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0414\u0436\u043e\u043a\u0435\u0440\u0430 \u0441 \u043f\u043b\u0430\u0447\u0443\u0449\u0435\u0439 \u0411\u044d\u0442\u0433\u0435\u0440\u043b \u0441\u043e\u0447\u0442\u0438 \u0436\u0435\u043d\u043e\u043d\u0435\u043d\u0430\u0432\u0438\u0441\u0442\u043d\u0438\u0447\u0435\u0441\u043a\u0438\u043c","protected":false,"verified":false,"followers_count":4067,"friends_count":1307,"listed_count":1,"favourites_count":74,"statuses_count":3490,"created_at":"Wed Aug 07 22:46:44 +0000 2013","utc_offset":25200,"time_zone":"Asia\/Krasnoyarsk","geo_enabled":false,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/585884763979931648\/ePV_TtnT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/585884763979931648\/ePV_TtnT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1654065727\/1428490625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"katyapolika901","name":"\u043f\u043e\u043b\u0438\u043a\u0430\u0445\u0438\u043d \u043a\u0430\u0442\u044f","id":1654065727,"id_str":"1654065727","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307569975301,"id_str":"663728307569975301","text":"@SGxxAKN 6000\u3061\u3087\u3044\uff01\u305f\u3051\u3047\uff08 ; ; \uff09\u5e97\u8217\u5f15\u304d\u53d6\u308a\uff01","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726164461027328,"in_reply_to_status_id_str":"663726164461027328","in_reply_to_user_id":3314165102,"in_reply_to_user_id_str":"3314165102","in_reply_to_screen_name":"SGxxAKN","user":{"id":3279717775,"id_str":"3279717775","name":"ChisA \u2764\ufe0e\u20db","screen_name":"__1013onlyU","location":"start \u2729 15.07.13\uff5e ","url":null,"description":"\uc9c0\ubbfc \u22c6\u035b(u_u)\u22c6\u035b 1994 next \u2765\u00bb 12\/8 9 26 27 28","protected":false,"verified":false,"followers_count":93,"friends_count":138,"listed_count":20,"favourites_count":856,"statuses_count":3996,"created_at":"Tue Jul 14 14:53:38 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653557072936628224\/1voV6lvs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653557072936628224\/1voV6lvs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3279717775\/1444319143","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"SGxxAKN","name":"\uc544 \uce74 \ub124","id":3314165102,"id_str":"3314165102","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307570110464,"id_str":"663728307570110464","text":"RT @CoastToCoastLax: CONTEST TIME! Get your chance to WIN our Lightweight Hoodie. RT & Follow us to Enter. https:\/\/t.co\/XsI53ujdT9 \u2600\ufe0f https\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2796811017,"id_str":"2796811017","name":"Hailey Davis","screen_name":"haileyaleisha","location":null,"url":null,"description":"\u0ad0","protected":false,"verified":false,"followers_count":207,"friends_count":297,"listed_count":1,"favourites_count":7206,"statuses_count":1333,"created_at":"Wed Oct 01 00:55:51 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660851693001797632\/BXrX4T2o_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660851693001797632\/BXrX4T2o_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2796811017\/1446488083","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Nov 06 01:04:09 +0000 2015","id":662435267551301632,"id_str":"662435267551301632","text":"CONTEST TIME! Get your chance to WIN our Lightweight Hoodie. RT & Follow us to Enter. https:\/\/t.co\/XsI53ujdT9 \u2600\ufe0f https:\/\/t.co\/lAFDUYsuNu","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2534609339,"id_str":"2534609339","name":"Coast To Coast Lax\u2122","screen_name":"CoastToCoastLax","location":"East Coast to West Coast","url":"http:\/\/CoastToCoastLaxStyle.com","description":"We'll bring you just a little closer to the Coast. A Su...weet Lacrosse Lifestyle Clothing Co. \u2693\ufe0f Live the Lifestyle! Right on...right on","protected":false,"verified":false,"followers_count":28830,"friends_count":27181,"listed_count":27,"favourites_count":2858,"statuses_count":3179,"created_at":"Thu May 08 03:12:22 +0000 2014","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/522710376794693632\/arB5De1d.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/522710376794693632\/arB5De1d.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/467137859733180416\/Bf3ajWFv_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/467137859733180416\/Bf3ajWFv_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2534609339\/1418214371","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":634,"favorite_count":180,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XsI53ujdT9","expanded_url":"http:\/\/bit.ly\/1jRQcq1","display_url":"bit.ly\/1jRQcq1","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":662435261100503040,"id_str":"662435261100503040","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","url":"https:\/\/t.co\/lAFDUYsuNu","display_url":"pic.twitter.com\/lAFDUYsuNu","expanded_url":"http:\/\/twitter.com\/CoastToCoastLax\/status\/662435267551301632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":662435261100503040,"id_str":"662435261100503040","indices":[117,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","url":"https:\/\/t.co\/lAFDUYsuNu","display_url":"pic.twitter.com\/lAFDUYsuNu","expanded_url":"http:\/\/twitter.com\/CoastToCoastLax\/status\/662435267551301632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/XsI53ujdT9","expanded_url":"http:\/\/bit.ly\/1jRQcq1","display_url":"bit.ly\/1jRQcq1","indices":[111,134]}],"user_mentions":[{"screen_name":"CoastToCoastLax","name":"Coast To Coast Lax\u2122","id":2534609339,"id_str":"2534609339","indices":[3,19]}],"symbols":[],"media":[{"id":662435261100503040,"id_str":"662435261100503040","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","url":"https:\/\/t.co\/lAFDUYsuNu","display_url":"pic.twitter.com\/lAFDUYsuNu","expanded_url":"http:\/\/twitter.com\/CoastToCoastLax\/status\/662435267551301632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":662435267551301632,"source_status_id_str":"662435267551301632","source_user_id":2534609339,"source_user_id_str":"2534609339"}]},"extended_entities":{"media":[{"id":662435261100503040,"id_str":"662435261100503040","indices":[143,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTFxXDiWsAAHVk4.jpg","url":"https:\/\/t.co\/lAFDUYsuNu","display_url":"pic.twitter.com\/lAFDUYsuNu","expanded_url":"http:\/\/twitter.com\/CoastToCoastLax\/status\/662435267551301632\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":255,"resize":"fit"},"medium":{"w":600,"h":450,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":768,"resize":"fit"}},"source_status_id":662435267551301632,"source_status_id_str":"662435267551301632","source_user_id":2534609339,"source_user_id_str":"2534609339"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607728128,"id_str":"663728307607728128","text":"@Volx_jp \u307b\u3061\u3043\u3043","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727797337133056,"in_reply_to_status_id_str":"663727797337133056","in_reply_to_user_id":2655519091,"in_reply_to_user_id_str":"2655519091","in_reply_to_screen_name":"Volx_jp","user":{"id":3184130928,"id_str":"3184130928","name":"Tamanashi","screen_name":"Tmanashi","location":null,"url":"http:\/\/battlelog.battlefield.com\/bf4\/ja\/user\/tamanashi\/","description":"BF4\u3092 tamanashi\u3068\u8a00\u3046\u540d\u524d\u3067play\u3057\u3066\u3044\u308b\u3002\u304a\u3063\u3055\u3093\u306a\u306e\u3067\u3001\u30cf\u30f3\u30c9\u30ac\u30f3\u30b5\u30fc\u30d0\u30fc\u3057\u304b\u3044\u3051\u306a\u3044\u3088\u30fc \u30c1\u30fc\u30e0\u304c\u30e4\u30d0\u30a4\u3068\u304a\u3082\u3063\u305f\u3089\u5206\u968a\u9577\u3092\u3084\u308b\u3002sqd\u304c\u304f\u308b\u3068\u5165\u308b\u3088 \u3088\u308d\u3057\u304f\u3002 \u5f3e\u3092\u304f\u308c \u6620\u50cf\u7de8\u96c6\u3084\u3001CG\u3092\u3084\u3063\u3066\u308b\u3088 \u5206\u968a\u54e1\u306f\u308f\u3057\u304c\u5b88\u308b\n\nMARE'S LEG\u3092\u3053\u3088\u306a\u304f\u611b\u3057\u307e\u3059","protected":false,"verified":false,"followers_count":53,"friends_count":60,"listed_count":0,"favourites_count":79,"statuses_count":914,"created_at":"Sun May 03 13:27:17 +0000 2015","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600190798278168576\/xs1kzhB1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600190798278168576\/xs1kzhB1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3184130928\/1434009699","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Volx_jp","name":"Volx_jp","id":2655519091,"id_str":"2655519091","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590950913,"id_str":"663728307590950913","text":"@ynaffitedaj kaartes manang.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663139552941309952,"in_reply_to_status_id_str":"663139552941309952","in_reply_to_user_id":591668209,"in_reply_to_user_id_str":"591668209","in_reply_to_screen_name":"ynaffitedaj","user":{"id":1678497673,"id_str":"1678497673","name":"Zoophrenia","screen_name":"SairaMillanes","location":"Philippines","url":null,"description":"I love what I love!\r\nI mean what I say.\r\nI am real.","protected":false,"verified":false,"followers_count":154,"friends_count":92,"listed_count":0,"favourites_count":625,"statuses_count":1399,"created_at":"Sat Aug 17 15:15:11 +0000 2013","utc_offset":14400,"time_zone":"Abu Dhabi","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme11\/bg.gif","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640558136068173824\/0-Jt4Yff_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640558136068173824\/0-Jt4Yff_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1678497673\/1441554406","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ynaffitedaj","name":"Eng Ti Ni","id":591668209,"id_str":"591668209","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307574169601,"id_str":"663728307574169601","text":"@mhr07xd \u3053\u3061\u3089\u3053\u305d\u3088\u308d\u3057\u304f\u3067\u3059(\u00b4\uff65\u03c9\uff65 `)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663725198949019648,"in_reply_to_status_id_str":"663725198949019648","in_reply_to_user_id":3262841204,"in_reply_to_user_id_str":"3262841204","in_reply_to_screen_name":"mhr07xd","user":{"id":3103208964,"id_str":"3103208964","name":"\u3088\u308b\u306f\u306a","screen_name":"Nightflower_1","location":"\u8776\u82b1(\u3061\u3088\u304b)\uff06\u591c\u798d\u5ddd \u96f6(\u3084\u304b\u304c\u308f \u308c\u3044)","url":null,"description":"\u5fa1\u4f3d\u306d\u3053\u3080\u3055\u3093\u3001\u307f\u3093\u307f\u3093\u5927\u597d\u304d\u27b4\u0dc6\u20db\u30b3\u30b9\u30d7\u30ec\u3001\u540c\u4eba\u30b0\u30c3\u30ba\u4f5c\u308a(\u4e3b\u306b\uff75\uff80\uff8f\uff70\uff84\u306b\u3066\u8ca9\u58f2\u4e2d\uff01)\u3001\u304a\u7d75\u304b\u304d\u3001YouTube\u3001\u3053\u3048\u90e8\u306a\u3069\u3067\u6d3b\u52d5\u3057\u3066\u307e\u3059\uff01\uff01\uff01\uff11\uff10\uff10\uff05\u30d5\u30a9\u30ed\u30d0\u3057\u307e\u3059\u256d( \uff65\u3142\uff65)\u0648 \u0311\u0311\u30a2\u30a4\u30b3\u30f3\u4f9d\u983c\u4e00\u6642\u505c\u6b62","protected":false,"verified":false,"followers_count":2955,"friends_count":3837,"listed_count":9,"favourites_count":565,"statuses_count":2115,"created_at":"Sun Mar 22 12:51:17 +0000 2015","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/640869795261386753\/L-no8anO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/640869795261386753\/L-no8anO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3103208964\/1427101615","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mhr07xd","name":"\u30de\u30cf\u30eb","id":3262841204,"id_str":"3262841204","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134658"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307578339328,"id_str":"663728307578339328","text":"(\u767d\u76ee)","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2540809938,"id_str":"2540809938","name":"\u3057\u304a\u3093\uff20\u6b66\u88c5\u6226\u7dda","screen_name":"s_h_i_o_n3","location":"\u3069\u3053\u3067\u3057\u3087\u3046","url":null,"description":"FPS \u30ac\u30f3\u30c0\u30e0 \u8eca \u7279\u64ae \u30ed\u30c3\u30af \u30e9\u30a4\u30d6 \u722c\u866b\u985e \u87f2 \u697d\u3057\u3044\u3053\u3068\u5927\u597d\u304d \u203b\u30a2\u30a4\u30b3\u30f3\u306f\u7a7a\u60f3\u4e0a\u306e\u4eba\u9593\u3067\u3059","protected":false,"verified":false,"followers_count":283,"friends_count":106,"listed_count":12,"favourites_count":7047,"statuses_count":46448,"created_at":"Mon Jun 02 05:42:07 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652437570970783744\/zoctiuFS_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652437570970783744\/zoctiuFS_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2540809938\/1438494234","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134659"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595145216,"id_str":"663728307595145216","text":"SKE48\u5f8c\u85e4\u7406\u6c99\u5b50\u306e\u4e2d\u5b66\u6642\u4ee3\u306f\u3069\u3093\u306a\u5b50\u3060\u3063\u305f\uff1f\uff1f\u3000\u3048\u3001\u307e\u3055\u304b\u300c\u3007\u3063\u3007\u300d\uff01\uff1f(;\uff9f\u0414\uff9f)! https:\/\/t.co\/3BFO87z5GY","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3311451774,"id_str":"3311451774","name":"\u7af9\u5185\u821e\u266a\u304b\u304a\u305f\u3093\u5fdc\u63f4\u266a","screen_name":"o0086Takemai","location":null,"url":null,"description":"\u7af9\u5185\u821e\u306b\u5922\u4e2d\u3067\u3059\u266a \u30e9\u30a4\u30d6\u306b\u307e\u305f\u884c\u3063\u3066\u3001\u71b1\u3044\u30d5\u30a1\u30f3\u306e\u65b9\u3068\u4e00\u7dd2\u306b\u8d85\u76db\u308a\u4e0a\u304c\u308a\u305f\u3044\u3067\u3059\uff01\uff01 \u30e9\u30a4\u30d6\u7d42\u308f\u308b\u307e\u3067\u5168\u529b\u3067\u5fdc\u63f4\u3067\u304d\u308b\u3088\u3046\u306b\u4f53\u529b\u3064\u3051\u3066\u3044\u307e\u3059\uff01\uff01 \u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\uff01\uff01 \u4e00\u7dd2\u306b\u76db\u308a\u4e0a\u304c\u308a\u307e\u3057\u3087\u3046\uff01\uff01","protected":false,"verified":false,"followers_count":40,"friends_count":57,"listed_count":0,"favourites_count":0,"statuses_count":11418,"created_at":"Mon Aug 10 13:31:48 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630733607770832896\/LguP7-WU_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630733607770832896\/LguP7-WU_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3311451774\/1439213603","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/3BFO87z5GY","expanded_url":"http:\/\/geinonews01abc.seesaa.net\/","display_url":"geinonews01abc.seesaa.net","indices":[46,69]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603554304,"id_str":"663728307603554304","text":"RT @babymonster_: \u0e02\u0e19\u0e32\u0e14\u0e04\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e25\u0e2d\u0e15\u0e15\u0e25\u0e2d\u0e14\u0e40\u0e27\u0e25\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e34\u0e42\u0e19\u0e22\u0e31\u0e07\u0e21\u0e35\u0e04\u0e34\u0e14\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e41\u0e25\u0e49\u0e27\u0e14\u0e39\u0e08\u0e38\u0e19\u0e2e\u0e40\u0e27\u0e2a\u0e34\u0e04\u0e27\u0e32\u0e21\u0e2b\u0e27\u0e31\u0e07\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e2b\u0e47\u0e19\u0e04\u0e31\u0e17\u0e19\u0e35\u0e48\u0e23\u0e34\u0e1a\u0e2b\u0e23\u0e35\u0e48\u0e21\u0e32\u0e01 #\u0e04\u0e27\u0e32\u0e21\u0e07\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e34\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2539396045,"id_str":"2539396045","name":"\u0e1e\u0e23\u0e35\u0e4a","screen_name":"_rrklaoss","location":"\u0e17\u0e27\u0e35\u0e15\u0e15\u0e32\u0e21\u0e43\u0e08\u0e09\u0e31\u0e19","url":null,"description":"| exoikon | #chanbaek - junheo - \u0e25\u0e38\u0e07","protected":false,"verified":false,"followers_count":378,"friends_count":309,"listed_count":0,"favourites_count":1083,"statuses_count":38874,"created_at":"Sun Jun 01 11:27:06 +0000 2014","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660730181296873472\/4AD_Vg3a_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660730181296873472\/4AD_Vg3a_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2539396045\/1446987158","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 14:47:42 +0000 2015","id":663367294697889793,"id_str":"663367294697889793","text":"\u0e02\u0e19\u0e32\u0e14\u0e04\u0e19\u0e17\u0e35\u0e48\u0e17\u0e33\u0e15\u0e31\u0e27\u0e40\u0e1b\u0e47\u0e19\u0e2a\u0e25\u0e2d\u0e15\u0e15\u0e25\u0e2d\u0e14\u0e40\u0e27\u0e25\u0e32\u0e2d\u0e22\u0e48\u0e32\u0e07\u0e21\u0e34\u0e42\u0e19\u0e22\u0e31\u0e07\u0e21\u0e35\u0e04\u0e34\u0e14\u0e40\u0e23\u0e37\u0e48\u0e2d\u0e07\u0e41\u0e1a\u0e1a\u0e19\u0e35\u0e49\u0e41\u0e25\u0e49\u0e27\u0e14\u0e39\u0e08\u0e38\u0e19\u0e2e\u0e40\u0e27\u0e2a\u0e34\u0e04\u0e27\u0e32\u0e21\u0e2b\u0e27\u0e31\u0e07\u0e17\u0e35\u0e48\u0e08\u0e30\u0e40\u0e2b\u0e47\u0e19\u0e04\u0e31\u0e17\u0e19\u0e35\u0e48\u0e23\u0e34\u0e1a\u0e2b\u0e23\u0e35\u0e48\u0e21\u0e32\u0e01 #\u0e04\u0e27\u0e32\u0e21\u0e07\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e34\u0e42\u0e19","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":591796451,"id_str":"591796451","name":"\u0e15\u0e4a\u0e30\u0e15\u0e4a\u0e30","screen_name":"babymonster_","location":"\u0e0a\u0e2d\u0e1a\u0e40\u0e2a\u0e37\u0e2d\u0e01","url":"http:\/\/bin2bobster.tumblr.com","description":"\u0e02\u0e2d\u0e1a\u0e04\u0e38\u0e13\u0e17\u0e35\u0e48\u0e23\u0e31\u0e01\u0e2e\u0e31\u0e19\u0e1a\u0e34\u0e19\u0e19\u0e30\u0e04\u0e23\u0e31\u0e1a - \u0e1a\u0e4a\u0e2d\u0e1a\u0e1a\u0e35\u0e49","protected":false,"verified":false,"followers_count":3000,"friends_count":161,"listed_count":3,"favourites_count":1811,"statuses_count":171397,"created_at":"Sun May 27 12:48:39 +0000 2012","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"th","contributors_enabled":false,"is_translator":false,"profile_background_color":"FCFCFC","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/539046862808817666\/4UrOkd2q.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/539046862808817666\/4UrOkd2q.png","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662475899829288961\/BgVh5eKV_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662475899829288961\/BgVh5eKV_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/591796451\/1446920910","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":7,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e04\u0e27\u0e32\u0e21\u0e07\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e34\u0e42\u0e19","indices":[107,123]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0e04\u0e27\u0e32\u0e21\u0e07\u0e48\u0e27\u0e07\u0e02\u0e2d\u0e07\u0e21\u0e34\u0e42\u0e19","indices":[125,140]}],"urls":[],"user_mentions":[{"screen_name":"babymonster_","name":"\u0e15\u0e4a\u0e30\u0e15\u0e4a\u0e30","id":591796451,"id_str":"591796451","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307569975300,"id_str":"663728307569975300","text":"RT @ProngSAD: \u0e02\u0e33 5555555","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2300670182,"id_str":"2300670182","name":"\u0e01\u0e34\u0e4a\u0e1f\u0e04\u0e19\u0e08\u0e23\u0e34\u0e07","screen_name":"gippk","location":null,"url":null,"description":"Snapchat : kodchaa","protected":false,"verified":false,"followers_count":105,"friends_count":46,"listed_count":4,"favourites_count":395,"statuses_count":82826,"created_at":"Mon Jan 20 03:07:43 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663716090355183616\/lFgWr3Zn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663716090355183616\/lFgWr3Zn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2300670182\/1445520261","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:13:24 +0000 2015","id":663721049645711365,"id_str":"663721049645711365","text":"\u0e02\u0e33 5555555","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":265815074,"id_str":"265815074","name":"\u0e2b \u0e21 \u0e32 \u0e1b\u0e48 \u0e32 .","screen_name":"ProngSAD","location":"IG : prongsad ","url":"https:\/\/www.facebook.com\/PRONGSAD","description":"\u0e44\u0e21\u0e48\u0e22\u0e37\u0e49\u0e2d\u0e27\u0e31\u0e19\u0e40\u0e27\u0e25\u0e32 \u0e44\u0e21\u0e48\u0e1d\u0e37\u0e19\u0e42\u0e0a\u0e04\u0e0a\u0e30\u0e15\u0e32 \/\/ \u0e0a\u0e37\u0e48\u0e2d \u0e1b\u0e4b\u0e2d\u0e07 \u0e44\u0e21\u0e48\u0e43\u0e0a\u0e48 \u0e1e\u0e23\u0e48\u0e2d\u0e07\u0e04\u0e23\u0e31\u0e1a \u0e1b\u0e4b\u0e2d\u0e07\u0e04\u0e19\u0e40\u0e14\u0e34\u0e21 \u0e40\u0e1e\u0e34\u0e48\u0e21\u0e40\u0e15\u0e34\u0e21\u0e04\u0e37\u0e2d \u0e23\u0e39\u0e1b\u0e20\u0e32\u0e1e","protected":false,"verified":false,"followers_count":137777,"friends_count":195,"listed_count":31,"favourites_count":867,"statuses_count":61429,"created_at":"Mon Mar 14 05:29:26 +0000 2011","utc_offset":25200,"time_zone":"Jakarta","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"4A494A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602077011541037058\/fPTROf7l.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602077011541037058\/fPTROf7l.jpg","profile_background_tile":false,"profile_link_color":"86878A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"818384","profile_text_color":"B8C5C6","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660815765772234752\/uEsvcE1l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660815765772234752\/uEsvcE1l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/265815074\/1413206566","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":38,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ProngSAD","name":"\u0e2b \u0e21 \u0e32 \u0e1b\u0e48 \u0e32 .","id":265815074,"id_str":"265815074","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080134657"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595288577,"id_str":"663728307595288577","text":"RT @66pallina: Il blu degli occhi anche se marroni.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2723671153,"id_str":"2723671153","name":"Grazie, anche no","screen_name":"Grazie_ancheNo","location":"dove vedi il mare","url":null,"description":"Sposto le mie ombre, faccio entrare il sole a mandar via l'umidit\u00e0 dei pensieri, mi creo nuovi Universi.","protected":false,"verified":false,"followers_count":1024,"friends_count":786,"listed_count":9,"favourites_count":11083,"statuses_count":9252,"created_at":"Mon Aug 11 10:16:26 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FA743E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/595828199780679680\/XSjrsY5g_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/595828199780679680\/XSjrsY5g_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2723671153\/1407753530","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed Jan 02 11:08:58 +0000 2013","id":286428866992562176,"id_str":"286428866992562176","text":"Il blu degli occhi anche se marroni.","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":457901629,"id_str":"457901629","name":"p.","screen_name":"66pallina","location":null,"url":null,"description":"quando lascio correre \u00e8 medaglia d'oro","protected":false,"verified":false,"followers_count":5360,"friends_count":368,"listed_count":76,"favourites_count":15529,"statuses_count":24722,"created_at":"Sat Jan 07 23:29:43 +0000 2012","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"352726","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme5\/bg.gif","profile_background_tile":false,"profile_link_color":"D02B55","profile_sidebar_border_color":"829D5E","profile_sidebar_fill_color":"99CC33","profile_text_color":"3E4415","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655875366356172800\/Xp13LyjO_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655875366356172800\/Xp13LyjO_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/457901629\/1424518430","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":9,"favorite_count":8,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"66pallina","name":"p.","id":457901629,"id_str":"457901629","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447080134663"} +{"delete":{"status":{"id":662865941923889152,"id_str":"662865941923889152","user_id":3022092272,"user_id_str":"3022092272"},"timestamp_ms":"1447080134792"}} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603554305,"id_str":"663728307603554305","text":"@kojo813 \n\u81ea\u5206\u3067\u3082\u305d\u3046\u601d\u3046\u308f\u7b11\u7b11","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728193002573824,"in_reply_to_status_id_str":"663728193002573824","in_reply_to_user_id":2943307051,"in_reply_to_user_id_str":"2943307051","in_reply_to_screen_name":"kojo813","user":{"id":1850830298,"id_str":"1850830298","name":"\u5e73\u5ddd \u6953","screen_name":"kaede_8622","location":null,"url":null,"description":"\u8328\u7530\u5317\u2192\u6dc0\u5de5 1-3 \u30e9\u30b0\u30d3\u30fc\u90e8 AAA \/ SilentSiren \/ \u5c71\u672c\u7f8e\u6708 \/ \u6b66\u7530\u73b2\u5948 \u8ab0\u3082\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":153,"friends_count":219,"listed_count":0,"favourites_count":425,"statuses_count":292,"created_at":"Tue Sep 10 08:30:51 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662887856453480448\/YI1W6ZO3_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662887856453480448\/YI1W6ZO3_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1850830298\/1444482732","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kojo813","name":"itsuki","id":2943307051,"id_str":"2943307051","indices":[0,8]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307582595072,"id_str":"663728307582595072","text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3088\u308d\u3057\u304f\u304a\u9858\u3044\u81f4\u3057\u307e\u3059\u3002 \n#\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc #\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u52df\u96c6 #\u30ea\u30d5\u30a9\u30ed\u30fc #sougo #sougofollow #followme","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3243458043,"id_str":"3243458043","name":"\u30ab\u30e9\u30b3\u30f3\u306a\u3089GALLab\uff01\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","screen_name":"CSougo","location":null,"url":"http:\/\/bit.ly\/1e74Jv9","description":"GALLab\u306f\u3001\u4eba\u6c17\u30d6\u30e9\u30f3\u30c9\u306e\u30ab\u30e9\u30b3\u30f3\u304c\u7279\u5225\u4fa1\u683c\u3067\u8cfc\u5165\u3067\u304d\u308b\u30ab\u30e9\u30b3\u30f3\u5c02\u9580\u30b7\u30e7\u30c3\u30d7\u3067\u3059\u3002 \u30b3\u30f3\u30d3\u30cb\u306a\u3069\u3067\u3082\u5f8c\u6255\u3044\u3067\u304d\u308b\u6c7a\u6e08\u65b9\u6cd5\u3082\u3054\u3056\u3044\u307e\u3059\u3002 \u5546\u54c1\u6570\u304c\u591a\u3044\u306e\u3082\u9b45\u529b\u3067\u3059\u3002 \u3042\u306a\u305f\u306e\u597d\u307f\u304c\u304d\u3063\u3068\u898b\u3064\u304b\u308a\u307e\u3059\u2606\n#\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u3000#\u30ab\u30e9\u30b3\u30f3\u3000#\u30ab\u30e9\u30fc\u30b3\u30f3\u30bf\u30af\u30c8","protected":false,"verified":false,"followers_count":1726,"friends_count":1497,"listed_count":6,"favourites_count":0,"statuses_count":6772,"created_at":"Sat May 09 14:37:30 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/599843470958661632\/DsEM70Gy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/599843470958661632\/DsEM70Gy_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc","indices":[20,27]},{"text":"\u76f8\u4e92\u30d5\u30a9\u30ed\u30fc\u52df\u96c6","indices":[28,37]},{"text":"\u30ea\u30d5\u30a9\u30ed\u30fc","indices":[38,44]},{"text":"sougo","indices":[45,51]},{"text":"sougofollow","indices":[52,64]},{"text":"followme","indices":[65,74]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134660"} +{"delete":{"status":{"id":518623110132543488,"id_str":"518623110132543488","user_id":903589436,"user_id_str":"903589436"},"timestamp_ms":"1447080134804"}} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307607875585,"id_str":"663728307607875585","text":"@fomina5115 \u043e\u043e\u043e\u043e\u043e, \u0441\u043f\u0430\u0441\u0438\u0438\u0431\u043e\u043e\u043e\u2764\u2764\ud83c\udf4d","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726948963741696,"in_reply_to_status_id_str":"663726948963741696","in_reply_to_user_id":2441953319,"in_reply_to_user_id_str":"2441953319","in_reply_to_screen_name":"fomina5115","user":{"id":3050629236,"id_str":"3050629236","name":"\u043a\u043e\u0442\u0435\u043b\u043e\u043a \u0430\u043d\u0430\u043d\u0430\u0441\u043e\u0432","screen_name":"Lada_Ananas","location":null,"url":null,"description":"4\/5 *-* \u0448\u0438\u0437\u043e\u0444\u0440\u0435\u043d\u0438\u043a\u00af\\_(\u30c4)_\/\u00af \u041b\u044e\u0431\u043b\u044e \u0441\u0432\u043e\u0435\u0433\u043e \u0441\u043b\u043e\u043d\u044f\u0440\u043a\u0443^-^ \u0431\u0430\u043d\u0430\u043d\u043a\u0438 \u0444\u043e\u0440\u0435\u0432\u043e. \u0432 \u0431\u0430\u0431\u043a\u0430\u0445 \u0441\u0438\u043b\u0430(\u00b0\u30ed\u00b0)\u261d \u0434\u0435\u043f\u0440\u0435\u0441\u0441\u0438\u0432\u043d\u044b\u0439 \u0430\u043d\u0430\u043d\u0430\u0441","protected":false,"verified":false,"followers_count":1080,"friends_count":956,"listed_count":1,"favourites_count":673,"statuses_count":12312,"created_at":"Sat Feb 28 18:18:47 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ru","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme18\/bg.gif","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661229528266752000\/gSjLmcn2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661229528266752000\/gSjLmcn2_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3050629236\/1446484333","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"fomina5115","name":"\u2716Queen\u2716\/Solo DM","id":2441953319,"id_str":"2441953319","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ru","timestamp_ms":"1447080134666"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590959104,"id_str":"663728307590959104","text":"LNG from US a \u2018game changer\u2019 in Asia as supply is freed from constraints https:\/\/t.co\/zoImAZ04hJ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":174044656,"id_str":"174044656","name":"PetroChase","screen_name":"PetroChase","location":"Scottsdale, AZ","url":"http:\/\/www.petrochase.com","description":"PetroChase, an independent oil and gas firm assists in the acquisition, development, and exploration of oil and natural gas in the United States.","protected":false,"verified":false,"followers_count":9243,"friends_count":4258,"listed_count":105,"favourites_count":11994,"statuses_count":22511,"created_at":"Tue Aug 03 00:01:29 +0000 2010","utc_offset":-25200,"time_zone":"Arizona","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/744211664\/f07a74466a8964be4ddf4291070f0110.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/744211664\/f07a74466a8964be4ddf4291070f0110.jpeg","profile_background_tile":false,"profile_link_color":"009999","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478747454590832640\/N-0FZlVp_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478747454590832640\/N-0FZlVp_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/174044656\/1349055673","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/zoImAZ04hJ","expanded_url":"http:\/\/www.hellenicshippingnews.com\/lng-from-us-a-game-changer-in-asia-as-supply-is-freed-from-constraints\/","display_url":"hellenicshippingnews.com\/lng-from-us-a-\u2026","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307586756608,"id_str":"663728307586756608","text":"\u0627\u0644\u0644\u0647\u0645 \u0625\u0646\u0643 \u062a\u0639\u0644\u0645 \u0639\u064a\u0648\u0628\u0646\u0627 \u0641\u0627\u0633\u062a\u0631\u0647\u0627 \u0648\u062a\u0639\u0644\u0645 \u062d\u0627\u062c\u0627\u062a\u0646\u0627 \u0641\u0627\u0642\u0636\u0647\u0627 \u0643\u0641\u0649 \u0628\u0643 \u0648\u0644\u064a\u064b\u0627 \u0648\u0643\u0641\u0649 \u0628\u0643 \u0646\u0635\u064a\u0631\u064b\u0627 https:\/\/t.co\/dlcaCJizdH","source":"\u003ca href=\"http:\/\/Quran.to\" rel=\"nofollow\"\u003e\u062a\u0637\u0628\u064a\u0642 \u062a\u062f\u0628\u064f\u0651\u0631\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3245385246,"id_str":"3245385246","name":"\u0623\u0630\u0643\u0631 \u0627\u0644\u0644\u0647 ..","screen_name":"ALeeenzii","location":null,"url":"http:\/\/rb2.in\/7zL","description":"\u0622\u0644\u0644\u0647\u0645 \u0622\u062c\u0639\u0644 \u0647\u0630\u0622 \u0627\u0644\u062d\u0633\u0622\u0628 \u0635\u062f\u0642\u0629 \u062c\u0622\u0631\u064a\u0647 \u0639\u0646\u064a \u0648\u0622\u0646\u0641\u0639\u0646\u064a \u0628\u0647 \u0641\u064a \u062d\u064a\u0622\u062a\u064a \u0648\u0628\u0639\u062f \u0645\u0645\u0622\u062a\u064a \u0648\u0622\u0643\u062a\u0628\u0647 \u064a\u0622\u0631\u0628\u064a \u0635\u062f\u0642\u0629 \u0639\u0646 \u0643\u0644 \u0645\u0646 \u064a\u0646\u0634\u0634\u0631\u0647 \u0644\u064a \u060c \u0633\u062a\u062c\u062f \u0628\u0622\u0644\u0645\u0641\u0636\u0644\u0647 \u0645\u0622\u064a\u0634\u0631\u062d \u0635\u062f\u0631\u0643 \u060c \u0622\u0644\u0644\u0647\u0645 \u0622\u062c\u0639\u0644\u0646\u0622 \u0645\u0646 \u0627\u0644\u0630\u0622\u0643\u0631\u064a\u0646","protected":false,"verified":false,"followers_count":36,"friends_count":89,"listed_count":0,"favourites_count":0,"statuses_count":2369,"created_at":"Sun Jun 14 20:49:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/610187965738807296\/-2PjjeBp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/610187965738807296\/-2PjjeBp_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dlcaCJizdH","expanded_url":"http:\/\/Quran.to","display_url":"Quran.to","indices":[80,103]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080134661"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307590991872,"id_str":"663728307590991872","text":"\u0e14\u0e32\u0e23\u0e38\u0e21\u0e30 \u0e2d\u0e22\u0e32\u0e01\u0e01\u0e34\u0e19\u0e25\u0e39\u0e01\u0e01\u0e27\u0e32\u0e14","source":"\u003ca href=\"http:\/\/twittbot.net\/\" rel=\"nofollow\"\u003etwittbot.net\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2527689799,"id_str":"2527689799","name":"\u3060\u308b\u307e","screen_name":"Newdmunky","location":"Tokyo ","url":null,"description":"\u0e1c\u0e21\u0e0a\u0e2d\u0e1a\u0e0d\u0e35\u0e48\u0e1b\u0e38\u0e48\u0e19\u0e19\u0e19 \u0e41\u0e15\u0e48\u0e40\u0e23\u0e35\u0e22\u0e19\u0e22\u0e32\u0e01\u0e41\u0e2e\u0e30 555","protected":false,"verified":false,"followers_count":5,"friends_count":17,"listed_count":0,"favourites_count":4,"statuses_count":2159,"created_at":"Tue May 27 15:15:21 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/604337632584179712\/zwu6rE3I_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/604337632584179712\/zwu6rE3I_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2527689799\/1433164348","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080134662"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595313152,"id_str":"663728307595313152","text":"Colombia ya entrena en Chile con 12 jugadores https:\/\/t.co\/WwpdQl4ZyC https:\/\/t.co\/yzF9Nay6Qo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":501931998,"id_str":"501931998","name":"DeportesEH","screen_name":"DeportesEH","location":"Barranquilla","url":"http:\/\/www.elheraldo.co\/deportes","description":"Cuenta en Twitter de la secci\u00f3n Deportes de @elheraldoco. Siga aqu\u00ed las noticias deportivas de Barranquilla, la regi\u00f3n Caribe y el mundo.","protected":false,"verified":false,"followers_count":15525,"friends_count":344,"listed_count":71,"favourites_count":84,"statuses_count":12820,"created_at":"Fri Feb 24 16:39:32 +0000 2012","utc_offset":-18000,"time_zone":"Bogota","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1851194250\/Deportes_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1851194250\/Deportes_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/501931998\/1379366508","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/WwpdQl4ZyC","expanded_url":"http:\/\/bit.ly\/1SDnZPx","display_url":"bit.ly\/1SDnZPx","indices":[46,69]}],"user_mentions":[],"symbols":[],"media":[{"id":663728306672521216,"id_str":"663728306672521216","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYNqWUAAOlYO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYNqWUAAOlYO.jpg","url":"https:\/\/t.co\/yzF9Nay6Qo","display_url":"pic.twitter.com\/yzF9Nay6Qo","expanded_url":"http:\/\/twitter.com\/DeportesEH\/status\/663728307595313152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":630,"h":320,"resize":"fit"},"small":{"w":340,"h":172,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728306672521216,"id_str":"663728306672521216","indices":[70,93],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYNqWUAAOlYO.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYNqWUAAOlYO.jpg","url":"https:\/\/t.co\/yzF9Nay6Qo","display_url":"pic.twitter.com\/yzF9Nay6Qo","expanded_url":"http:\/\/twitter.com\/DeportesEH\/status\/663728307595313152\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":304,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":630,"h":320,"resize":"fit"},"small":{"w":340,"h":172,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307599339520,"id_str":"663728307599339520","text":"@CarlosMartinH Aqui te dejo lo que puede ser una buena medida del gob federal @epn https:\/\/t.co\/NOhysu0l5B","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":84593007,"in_reply_to_user_id_str":"84593007","in_reply_to_screen_name":"CarlosMartinH","user":{"id":113480489,"id_str":"113480489","name":"Alex","screen_name":"elgoldenboy27","location":"Cerca del Mar.","url":null,"description":"Soy Guerrense...","protected":false,"verified":false,"followers_count":281,"friends_count":1763,"listed_count":0,"favourites_count":62,"statuses_count":1714,"created_at":"Thu Feb 11 22:23:14 +0000 2010","utc_offset":-21600,"time_zone":"Mexico City","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/3161973175\/b223874f7249eab19c491499758aff70_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/3161973175\/b223874f7249eab19c491499758aff70_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113480489\/1396827791","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"CarlosMartinH","name":"Carlos Martin Huerta","id":84593007,"id_str":"84593007","indices":[0,14]},{"screen_name":"EPN","name":"Enrique Pe\u00f1a Nieto","id":2897441,"id_str":"2897441","indices":[78,82]}],"symbols":[],"media":[{"id":663728305145679877,"id_str":"663728305145679877","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYH-UkAUyG0G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYH-UkAUyG0G.jpg","url":"https:\/\/t.co\/NOhysu0l5B","display_url":"pic.twitter.com\/NOhysu0l5B","expanded_url":"http:\/\/twitter.com\/elgoldenboy27\/status\/663728307599339520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":578,"resize":"fit"},"large":{"w":480,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":409,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728305145679877,"id_str":"663728305145679877","indices":[83,106],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYH-UkAUyG0G.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYH-UkAUyG0G.jpg","url":"https:\/\/t.co\/NOhysu0l5B","display_url":"pic.twitter.com\/NOhysu0l5B","expanded_url":"http:\/\/twitter.com\/elgoldenboy27\/status\/663728307599339520\/photo\/1","type":"photo","sizes":{"medium":{"w":480,"h":578,"resize":"fit"},"large":{"w":480,"h":578,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":409,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080134664"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307603529728,"id_str":"663728307603529728","text":"A lighthearted interaction can feel quite intense while the Mo... More for Pisces https:\/\/t.co\/1FcM4JBvNl","source":"\u003ca href=\"http:\/\/www.twittascope.com\" rel=\"nofollow\"\u003eTwittascope\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":957602479,"id_str":"957602479","name":"Kristen","screen_name":"kaynicoletorres","location":"ftw","url":null,"description":"I love Texas and watching Greys Anatomy\u2764\ufe0f","protected":false,"verified":false,"followers_count":155,"friends_count":174,"listed_count":1,"favourites_count":1089,"statuses_count":8954,"created_at":"Mon Nov 19 15:03:49 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/630857561927843840\/gVyN-LRm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/630857561927843840\/gVyN-LRm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/957602479\/1446056760","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/1FcM4JBvNl","expanded_url":"http:\/\/bit.ly\/xHSyh0","display_url":"bit.ly\/xHSyh0","indices":[82,105]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134665"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307595153408,"id_str":"663728307595153408","text":"Dec 1926 This will prove to be one of the most difficult & dangerous motorcade expeditions through Africa on record https:\/\/t.co\/CmKuS3f0yN","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1357541731,"id_str":"1357541731","name":"Aloha Wanderwell","screen_name":"AlohaWanderwell","location":"Newport Beach, California","url":"http:\/\/www.alohawanderwell.com","description":"Adventuress Aloha Wanderwell was The First Woman to Drive Around the World in an Automobile, a Model T Ford, 500,000 Miles, in 43 Countries, on 6 Continents","protected":false,"verified":false,"followers_count":121,"friends_count":425,"listed_count":3,"favourites_count":42,"statuses_count":487,"created_at":"Tue Apr 16 18:12:56 +0000 2013","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000072641370\/6b770a0a212055c80cbac4bc47cee9b7.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000072641370\/6b770a0a212055c80cbac4bc47cee9b7.jpeg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/641247548557029376\/zhrUR2CH_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/641247548557029376\/zhrUR2CH_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1357541731\/1444490732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663728304294264832,"id_str":"663728304294264832","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYEzVAAAvqsp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYEzVAAAvqsp.jpg","url":"https:\/\/t.co\/CmKuS3f0yN","display_url":"pic.twitter.com\/CmKuS3f0yN","expanded_url":"http:\/\/twitter.com\/AlohaWanderwell\/status\/663728307595153408\/photo\/1","type":"photo","sizes":{"large":{"w":633,"h":912,"resize":"fit"},"small":{"w":340,"h":489,"resize":"fit"},"medium":{"w":600,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":663728304294264832,"id_str":"663728304294264832","indices":[121,144],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYEzVAAAvqsp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYEzVAAAvqsp.jpg","url":"https:\/\/t.co\/CmKuS3f0yN","display_url":"pic.twitter.com\/CmKuS3f0yN","expanded_url":"http:\/\/twitter.com\/AlohaWanderwell\/status\/663728307595153408\/photo\/1","type":"photo","sizes":{"large":{"w":633,"h":912,"resize":"fit"},"small":{"w":340,"h":489,"resize":"fit"},"medium":{"w":600,"h":864,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080134663"} +{"created_at":"Mon Nov 09 14:42:14 +0000 2015","id":663728307599376384,"id_str":"663728307599376384","text":"\u5c0f\u5b66\u6821\u306e\u4fee\u5b66\u65c5\u884c\u3067 \u6016\u304c\u308a\u306eA\u3061\u3083\u3093\u3068\u30c8\u30a4\u30ec\u3078\u2026\u3075\u3068\u5eca\u4e0b\u306e\u5965\u306b\u4eba\u5f71\u304c\u898b\u3048\u305f\u306e\u3067\u58f0\u3092\u304b\u3051\u305f\u3002\u540c\u3058\u30af\u30e9\u30b9\u306e\u7537\u5b50\u3060\u3063\u305f\u2026\u3002\u306b\u3064\u3044\u3066 https:\/\/t.co\/GlYSm62s1r https:\/\/t.co\/9md9KGu9TY","source":"\u003ca href=\"http:\/\/publicize.wp.com\/\" rel=\"nofollow\"\u003eWordPress.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3775543699,"id_str":"3775543699","name":"\u5f90\u884c\u7981\u6b62","screen_name":"jyokoukinshi","location":null,"url":"http:\/\/goo.gl\/9L50Ze","description":"\u5f90\u884c\u7981\u6b62\u306f\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u4e0a\u306b\u6563 \u308a\u3070\u3081\u3089\u308c\u305f\u9762\u767d\u3044\u30cd\u30bf\u3092\u96c6\u3081\u3001\u767a\u4fe1\u3057\u3066\u3044\u308b\u30b5\u30a4\u30c8\u3067\u3059\u3002","protected":false,"verified":false,"followers_count":1045,"friends_count":1153,"listed_count":3,"favourites_count":0,"statuses_count":17558,"created_at":"Sun Oct 04 00:29:57 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650468466516819968\/NJtaiLv-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650468466516819968\/NJtaiLv-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3775543699\/1443918847","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/GlYSm62s1r","expanded_url":"http:\/\/unsn.ciao.jp\/egaonews\/2015\/11\/10\/%e5%b0%8f%e5%ad%a6%e6%a0%a1%e3%81%ae%e4%bf%ae%e5%ad%a6%e6%97%85%e8%a1%8c%e3%81%a7-%e6%80%96%e3%81%8c%e3%82%8a%e3%81%aea%e3%81%a1%e3%82%83%e3%82%93%e3%81%a8%e3%83%88%e3%82%a4%e3%83%ac%e3%81%b8\/","display_url":"unsn.ciao.jp\/egaonews\/2015\/\u2026","indices":[63,86]}],"user_mentions":[],"symbols":[],"media":[{"id":663728306030710785,"id_str":"663728306030710785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYLRVEAE26eI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYLRVEAE26eI.jpg","url":"https:\/\/t.co\/9md9KGu9TY","display_url":"pic.twitter.com\/9md9KGu9TY","expanded_url":"http:\/\/twitter.com\/jyokoukinshi\/status\/663728307599376384\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728306030710785,"id_str":"663728306030710785","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJYLRVEAE26eI.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJYLRVEAE26eI.jpg","url":"https:\/\/t.co\/9md9KGu9TY","display_url":"pic.twitter.com\/9md9KGu9TY","expanded_url":"http:\/\/twitter.com\/jyokoukinshi\/status\/663728307599376384\/photo\/1","type":"photo","sizes":{"large":{"w":320,"h":180,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":320,"h":180,"resize":"fit"},"medium":{"w":320,"h":180,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080134664"} +{"delete":{"status":{"id":628922119125094400,"id_str":"628922119125094400","user_id":994283490,"user_id_str":"994283490"},"timestamp_ms":"1447080135160"}} +{"delete":{"status":{"id":663725765830176774,"id_str":"663725765830176774","user_id":2919527864,"user_id_str":"2919527864"},"timestamp_ms":"1447080135235"}} +{"delete":{"status":{"id":663359192065970177,"id_str":"663359192065970177","user_id":4157945414,"user_id_str":"4157945414"},"timestamp_ms":"1447080135236"}} +{"delete":{"status":{"id":663725505779224576,"id_str":"663725505779224576","user_id":143253768,"user_id_str":"143253768"},"timestamp_ms":"1447080135336"}} +{"delete":{"status":{"id":663726617299058688,"id_str":"663726617299058688","user_id":4090616299,"user_id_str":"4090616299"},"timestamp_ms":"1447080135452"}} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311776972802,"id_str":"663728311776972802","text":"RT @ManuRegehr: https:\/\/t.co\/KA1AjR0oXS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":406341859,"id_str":"406341859","name":"kelo.","screen_name":"igormaldo","location":"manhattan","url":"http:\/\/www.facebook.com\/igor.maldonado.79","description":"El pensameiento no le gana al tiempo, no tengo tus ganas y por mas que intento ya no entiendo nada http:\/\/a10tunderbolt.tumblr.com","protected":false,"verified":false,"followers_count":283,"friends_count":224,"listed_count":0,"favourites_count":166,"statuses_count":3046,"created_at":"Sun Nov 06 15:41:22 +0000 2011","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/534455039910100994\/jkzd87ed.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/534455039910100994\/jkzd87ed.jpeg","profile_background_tile":true,"profile_link_color":"94D487","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/534456366081921024\/1vx1xl-S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/534456366081921024\/1vx1xl-S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/406341859\/1421730318","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:20:54 +0000 2015","id":663722936935796736,"id_str":"663722936935796736","text":"https:\/\/t.co\/KA1AjR0oXS","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":961120722,"id_str":"961120722","name":"Sherlock","screen_name":"ManuRegehr","location":null,"url":null,"description":"Solo s\u00e9 que no s\u00e9 tuitear. No soy kaigue el mundo es el hiperactivo. Mi mente es un *loading vyresa* constante. Porque todo es un divague. Hakuna Matata","protected":false,"verified":false,"followers_count":1139,"friends_count":721,"listed_count":5,"favourites_count":3045,"statuses_count":35927,"created_at":"Tue Nov 20 20:10:31 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/651030039631405056\/CSzuP3FW_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/651030039631405056\/CSzuP3FW_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/961120722\/1444108627","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":8,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663722922691977216,"id_str":"663722922691977216","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":247,"resize":"fit"},"medium":{"w":600,"h":436,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663722922691977216,"id_str":"663722922691977216","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":247,"resize":"fit"},"medium":{"w":600,"h":436,"resize":"fit"}}},{"id":663722935178420224,"id_str":"663722935178420224","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfjSW4AAKSyp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfjSW4AAKSyp.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":333,"h":206,"resize":"fit"},"small":{"w":333,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":333,"h":206,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ManuRegehr","name":"Sherlock","id":961120722,"id_str":"961120722","indices":[3,14]}],"symbols":[],"media":[{"id":663722922691977216,"id_str":"663722922691977216","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":247,"resize":"fit"},"medium":{"w":600,"h":436,"resize":"fit"}},"source_status_id":663722936935796736,"source_status_id_str":"663722936935796736","source_user_id":961120722,"source_user_id_str":"961120722"}]},"extended_entities":{"media":[{"id":663722922691977216,"id_str":"663722922691977216","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEe0xW4AA0Ruy.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":745,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":247,"resize":"fit"},"medium":{"w":600,"h":436,"resize":"fit"}},"source_status_id":663722936935796736,"source_status_id_str":"663722936935796736","source_user_id":961120722,"source_user_id_str":"961120722"},{"id":663722935178420224,"id_str":"663722935178420224","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYEfjSW4AAKSyp.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYEfjSW4AAKSyp.jpg","url":"https:\/\/t.co\/KA1AjR0oXS","display_url":"pic.twitter.com\/KA1AjR0oXS","expanded_url":"http:\/\/twitter.com\/ManuRegehr\/status\/663722936935796736\/photo\/1","type":"photo","sizes":{"large":{"w":333,"h":206,"resize":"fit"},"small":{"w":333,"h":206,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":333,"h":206,"resize":"fit"}},"source_status_id":663722936935796736,"source_status_id_str":"663722936935796736","source_user_id":961120722,"source_user_id_str":"961120722"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080135660"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311768608768,"id_str":"663728311768608768","text":"RT @sa_hewitt: Happy birthday, #CarlSagan... After reading Cosmos at age 14, I decided I needed to be a scientist - thanks!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":117235399,"id_str":"117235399","name":"Rob Thacker","screen_name":"DrRob_Thacker","location":"Halifax, Canada","url":"http:\/\/www.ap.smu.ca\/~thacker","description":"Astrophysicist, passionate science communicator\/speaker and author. Also a prof at SMU, Halifax. Astronomy is weird, cool, amazing all at the same time.","protected":false,"verified":false,"followers_count":479,"friends_count":306,"listed_count":43,"favourites_count":313,"statuses_count":3625,"created_at":"Wed Feb 24 23:58:08 +0000 2010","utc_offset":-10800,"time_zone":"Santiago","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/78231461\/twitter.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/78231461\/twitter.jpg","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657368833762525189\/qu9trwBX_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657368833762525189\/qu9trwBX_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/117235399\/1398700610","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:38:15 +0000 2015","id":663727305399799808,"id_str":"663727305399799808","text":"Happy birthday, #CarlSagan... After reading Cosmos at age 14, I decided I needed to be a scientist - thanks!","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":95327694,"id_str":"95327694","name":"Sarah Hewitt","screen_name":"sa_hewitt","location":"Calgary, Alberta","url":null,"description":"Freelance science writer and biology professor. Love all things science, space, and sports. Travel, adventure, photography, and craft beer are good too.","protected":false,"verified":false,"followers_count":65,"friends_count":103,"listed_count":6,"favourites_count":184,"statuses_count":169,"created_at":"Tue Dec 08 01:55:03 +0000 2009","utc_offset":-25200,"time_zone":"Mountain Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2880365121\/29c91938251613f30fea3790d6c55a9f_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2880365121\/29c91938251613f30fea3790d6c55a9f_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":2,"entities":{"hashtags":[{"text":"CarlSagan","indices":[16,26]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"CarlSagan","indices":[31,41]}],"urls":[],"user_mentions":[{"screen_name":"sa_hewitt","name":"Sarah Hewitt","id":95327694,"id_str":"95327694","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135658"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311793811457,"id_str":"663728311793811457","text":"RT @FatimaCerrutti: Debo de tener 142 faltas en el a\u00f1o","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2990722295,"id_str":"2990722295","name":"Dell","screen_name":"MatteiDelfina","location":null,"url":null,"description":"Pru\u00e9bame y veras que todos somos adictos","protected":false,"verified":false,"followers_count":288,"friends_count":283,"listed_count":0,"favourites_count":292,"statuses_count":2893,"created_at":"Wed Jan 21 22:35:07 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/631530667059376128\/5MIrp_Md.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/631530667059376128\/5MIrp_Md.png","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662961748576727040\/q6sQ9wyp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662961748576727040\/q6sQ9wyp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2990722295\/1446587189","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:37:36 +0000 2015","id":663727140790214656,"id_str":"663727140790214656","text":"Debo de tener 142 faltas en el a\u00f1o","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":609303498,"id_str":"609303498","name":"Fata","screen_name":"FatimaCerrutti","location":"Carmelo ","url":"https:\/\/www.facebook.com\/fatu.cerrutti?ref=tn_tnmn","description":"Que hasta tu sombra me hace falta\n\n099832131","protected":false,"verified":false,"followers_count":498,"friends_count":508,"listed_count":0,"favourites_count":1423,"statuses_count":9464,"created_at":"Fri Jun 15 16:05:38 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661546961577844736\/Z0QgUJPv_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661546961577844736\/Z0QgUJPv_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/609303498\/1442491582","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"FatimaCerrutti","name":"Fata","id":609303498,"id_str":"609303498","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080135664"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802142721,"id_str":"663728311802142721","text":"disabled vehicle:I-795 southbound Exit 7 - Franklin Blvd Reisterstown","source":"\u003ca href=\"http:\/\/md511.org\" rel=\"nofollow\"\u003eNorthernmd_prod\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":329763904,"id_str":"329763904","name":"MD511Northern","screen_name":"MD511Northern","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":825,"friends_count":0,"listed_count":97,"favourites_count":0,"statuses_count":630748,"created_at":"Tue Jul 05 15:52:53 +0000 2011","utc_offset":-18000,"time_zone":"Quito","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1522518068\/logo_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1522518068\/logo_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764443136,"id_str":"663728311764443136","text":"@alewnes7 @KMBmoreSkins @Lizzs_Lockeroom word on all of that.","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727734032572416,"in_reply_to_status_id_str":"663727734032572416","in_reply_to_user_id":1522124862,"in_reply_to_user_id_str":"1522124862","in_reply_to_screen_name":"alewnes7","user":{"id":1263080796,"id_str":"1263080796","name":"Tre","screen_name":"Treg2Cole","location":"Above the clouds","url":null,"description":"No time for looking back, its done","protected":false,"verified":false,"followers_count":583,"friends_count":550,"listed_count":11,"favourites_count":10895,"statuses_count":10537,"created_at":"Tue Mar 12 23:17:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663139495542419457\/tHVtuA5l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663139495542419457\/tHVtuA5l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1263080796\/1445812917","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"alewnes7","name":"Aly","id":1522124862,"id_str":"1522124862","indices":[0,9]},{"screen_name":"KMBmoreSkins","name":"Beautiful Decay","id":98938235,"id_str":"98938235","indices":[10,23]},{"screen_name":"Lizzs_Lockeroom","name":"LizzLocker","id":24608909,"id_str":"24608909","indices":[24,40]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311772831744,"id_str":"663728311772831744","text":"RT @russellcrowe: Goodbye San Jose...goodbye NASA Ames Research Centre...thanks for inviting me . #breakthroughawards","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":121753584,"id_str":"121753584","name":"Giulia's","screen_name":"GiuliasTuscany","location":"Toscana, Italia","url":"http:\/\/www.giuliastuscany.com","description":"Jewelry \/ Restoration (furniture, yachts interiors) \/ Gilding \/ Ceramics and more Sometimes writer","protected":false,"verified":false,"followers_count":1659,"friends_count":1636,"listed_count":15,"favourites_count":5821,"statuses_count":5633,"created_at":"Wed Mar 10 13:38:34 +0000 2010","utc_offset":3600,"time_zone":"Rome","geo_enabled":true,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/887326323\/c412a23879e05fa4e1b1ed5919520714.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/887326323\/c412a23879e05fa4e1b1ed5919520714.jpeg","profile_background_tile":true,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/648789902939848704\/LCLvmG_M_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/648789902939848704\/LCLvmG_M_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/121753584\/1443518945","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 04:18:52 +0000 2015","id":663571429728718848,"id_str":"663571429728718848","text":"Goodbye San Jose...goodbye NASA Ames Research Centre...thanks for inviting me . #breakthroughawards","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":133093395,"id_str":"133093395","name":"Russell Crowe","screen_name":"russellcrowe","location":"here and there","url":"http:\/\/murphsplace.com\/crowe\/main.html","description":"older than my children, younger than my parents,get the odd job","protected":false,"verified":true,"followers_count":1830415,"friends_count":98,"listed_count":11290,"favourites_count":7,"statuses_count":17130,"created_at":"Thu Apr 15 00:50:27 +0000 2010","utc_offset":39600,"time_zone":"Sydney","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645375935093456896\/fga9ondY_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645375935093456896\/fga9ondY_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/133093395\/1442704587","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":59,"favorite_count":260,"entities":{"hashtags":[{"text":"breakthroughawards","indices":[80,99]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"breakthroughawards","indices":[98,117]}],"urls":[],"user_mentions":[{"screen_name":"russellcrowe","name":"Russell Crowe","id":133093395,"id_str":"133093395","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135659"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311793766400,"id_str":"663728311793766400","text":"\ud83d\ude2d\ud83d\ude2d\ud83d\ude02\ud83d\ude02 pls how do you lowkey tell someone not to fucking try you if they don't want to cry to bed??","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":181212525,"id_str":"181212525","name":"Dr. Bush","screen_name":"CH3OMA","location":null,"url":null,"description":"\u041c\u0430\u043d\u0447\u0435\u0441\u0442\u0435\u0440 \u042e\u043d\u0430\u0439\u0442\u0435\u0434 \u0424\u0443\u0442\u0431\u043e\u043b \u041a\u043b\u0443\u0431 (MUFC) \u0412\u0430\u043d\u0434\u0435 \u041a\u043e\u043b #BDE","protected":false,"verified":false,"followers_count":17703,"friends_count":5031,"listed_count":79,"favourites_count":1200,"statuses_count":197397,"created_at":"Sat Aug 21 16:04:38 +0000 2010","utc_offset":7200,"time_zone":"Athens","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0A0A0A","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000179115240\/DdPH7EPO.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000179115240\/DdPH7EPO.png","profile_background_tile":true,"profile_link_color":"031C24","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"F6FFD1","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661291602397282304\/jkVWKPrL_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661291602397282304\/jkVWKPrL_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135664"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311768625152,"id_str":"663728311768625152","text":"When people tell me I'm pretty with a nasty attitude\ud83d\ude21\ud83d\ude21\ud83d\ude21 my attitude is based off you","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":167190920,"id_str":"167190920","name":"Queen. P","screen_name":"Honey_fianeese","location":null,"url":null,"description":"#unbothered","protected":false,"verified":false,"followers_count":2220,"friends_count":1423,"listed_count":3,"favourites_count":3040,"statuses_count":47345,"created_at":"Thu Jul 15 23:58:04 +0000 2010","utc_offset":-18000,"time_zone":"Quito","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FF6699","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/351692822\/NEXTTT.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/351692822\/NEXTTT.jpg","profile_background_tile":true,"profile_link_color":"B40B43","profile_sidebar_border_color":"CC3366","profile_sidebar_fill_color":"E5507E","profile_text_color":"362720","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652295599262306305\/UI_7pZ2S_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652295599262306305\/UI_7pZ2S_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167190920\/1446733234","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135658"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785406464,"id_str":"663728311785406464","text":"RT @kurtiniadist34: https:\/\/t.co\/FjRZmil4nU sitesinde tahmincilik hayat\u0131ma devam edece\u011fim. Detayl\u0131 bilgiyi \u00f6n\u00fcm\u00fczdeki g\u00fcnlerde payla\u015faca\u011f\u0131z\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3389195741,"id_str":"3389195741","name":"Adnan Buz","screen_name":"buz_ab","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":67,"friends_count":69,"listed_count":0,"favourites_count":166,"statuses_count":745,"created_at":"Thu Jul 23 13:23:55 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653686600677883904\/XwkfpNFQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653686600677883904\/XwkfpNFQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3389195741\/1438009182","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 13:42:59 +0000 2015","id":663713396362203136,"id_str":"663713396362203136","text":"https:\/\/t.co\/FjRZmil4nU sitesinde tahmincilik hayat\u0131ma devam edece\u011fim. Detayl\u0131 bilgiyi \u00f6n\u00fcm\u00fczdeki g\u00fcnlerde payla\u015faca\u011f\u0131z. @serhande1","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3244555137,"id_str":"3244555137","name":"Sercan","screen_name":"kurtiniadist34","location":null,"url":null,"description":"Yar\u0131\u015f analizcisi, sevdal\u0131s\u0131, vazge\u00e7emedi\u011fi selim kaya fan\u0131, haks\u0131zl\u0131k d\u00fc\u015fman\u0131, yan\u0131l\u0131\u015f\u0131 sevmez hayat\u0131 affetmez bir ki\u015filik","protected":false,"verified":false,"followers_count":631,"friends_count":502,"listed_count":4,"favourites_count":599,"statuses_count":2106,"created_at":"Sun May 10 08:11:14 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme19\/bg.gif","profile_background_tile":true,"profile_link_color":"DD2E44","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660886855911653377\/Zq_Rsr-l_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660886855911653377\/Zq_Rsr-l_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3244555137\/1431741326","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":5,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FjRZmil4nU","expanded_url":"http:\/\/www.attakip.com","display_url":"attakip.com","indices":[0,23]}],"user_mentions":[{"screen_name":"serhande1","name":"SERHANDE","id":331484106,"id_str":"331484106","indices":[121,131]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/FjRZmil4nU","expanded_url":"http:\/\/www.attakip.com","display_url":"attakip.com","indices":[20,43]}],"user_mentions":[{"screen_name":"kurtiniadist34","name":"Sercan","id":3244555137,"id_str":"3244555137","indices":[3,18]},{"screen_name":"serhande1","name":"SERHANDE","id":331484106,"id_str":"331484106","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802208256,"id_str":"663728311802208256","text":"RT @almujremon: \u0627\u0644\u0634\u0628\u064a\u062d \u062d\u0633\u0627\u0645 \u0627\u0628\u0648 \u0634\u0641\u0629 .. \u0645\u0646 \u0627\u0644\u0644\u0627\u0630\u0642\u064a\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0627\u0646\u064a\u0627 - \u0644\u0627\u062c\u0626\u0648\u0646 https:\/\/t.co\/a5MBclqVxi","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":49684180,"id_str":"49684180","name":"\u0627\u0644\u0645\u062a\u0634\u0627\u0626\u0644","screen_name":"opticmistic07","location":"world","url":null,"description":"\u0643\u0644\u064f\u0651 \u0627\u0628\u0646\u0650 \u0623\u064f\u0646\u0652\u062b\u0649 \u0648\u0625\u0646\u0652 \u0637\u0627\u0644\u064e\u062a\u0652 \u0633\u064e\u0644\u0627\u0645\u064e\u062a\u064f\u0647\u064f \u064a\u0648\u0645\u0627\u064b \u0639\u0644\u0649 \u0622\u0644\u064e\u0629\u064d \u062d\u064e\u062f\u0652\u0628\u0627\u0621\u064e \u0645\u064e\u062d\u0652\u0645\u0648\u0644\u064f (\u0643\u0639\u0628 \u0628\u0646 \u0632\u0647\u064a\u0631)","protected":false,"verified":false,"followers_count":283,"friends_count":359,"listed_count":8,"favourites_count":83,"statuses_count":19567,"created_at":"Mon Jun 22 16:43:21 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/311304852\/IMG_0653.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/311304852\/IMG_0653.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645632036238192644\/s07jEjNT_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645632036238192644\/s07jEjNT_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/49684180\/1431380572","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 09:13:50 +0000 2015","id":663645664094650368,"id_str":"663645664094650368","text":"\u0627\u0644\u0634\u0628\u064a\u062d \u062d\u0633\u0627\u0645 \u0627\u0628\u0648 \u0634\u0641\u0629 .. \u0645\u0646 \u0627\u0644\u0644\u0627\u0630\u0642\u064a\u0629 \u0625\u0644\u0649 \u0627\u0644\u0645\u0627\u0646\u064a\u0627 - \u0644\u0627\u062c\u0626\u0648\u0646 https:\/\/t.co\/a5MBclqVxi","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4046311395,"id_str":"4046311395","name":"\u0644\u0627\u062c\u0626\u0648\u0646","screen_name":"almujremon","location":"Syria","url":"http:\/\/mujremon.com\/","description":"Syrian Refugee","protected":false,"verified":false,"followers_count":126,"friends_count":110,"listed_count":0,"favourites_count":48,"statuses_count":258,"created_at":"Mon Oct 26 13:15:58 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659143606687678464\/S9zTafUq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659143606687678464\/S9zTafUq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4046311395\/1445987038","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a5MBclqVxi","expanded_url":"http:\/\/mujremon.com\/?p=1142","display_url":"mujremon.com\/?p=1142","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/a5MBclqVxi","expanded_url":"http:\/\/mujremon.com\/?p=1142","display_url":"mujremon.com\/?p=1142","indices":[72,95]}],"user_mentions":[{"screen_name":"almujremon","name":"\u0644\u0627\u062c\u0626\u0648\u0646","id":4046311395,"id_str":"4046311395","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311772692480,"id_str":"663728311772692480","text":"\u52d5\u753b\u3042\u3052\u305f\u304b\u3089\u306d\u30fc\u3001\u6687\u306a\u4eba\u306f\u898b\u3066\u306d\u30fc","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2230084969,"id_str":"2230084969","name":"\u3042\u305f","screen_name":"ata_sheflop","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":40,"friends_count":27,"listed_count":1,"favourites_count":69,"statuses_count":2258,"created_at":"Wed Dec 04 15:15:49 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/528800900102385664\/_VFu2g0j_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/528800900102385664\/_VFu2g0j_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135659"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781191680,"id_str":"663728311781191680","text":"Postpartum depression in detail https:\/\/t.co\/oWmGUEAMm6","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3227633375,"id_str":"3227633375","name":"Jonquill Evison","screen_name":"nedijegegir","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":0,"friends_count":6,"listed_count":0,"favourites_count":0,"statuses_count":22648,"created_at":"Sat May 02 05:56:00 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/613327922091397120\/_Jyq1_Sl_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/613327922091397120\/_Jyq1_Sl_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/oWmGUEAMm6","expanded_url":"http:\/\/ift.tt\/1kkCIns","display_url":"ift.tt\/1kkCIns","indices":[32,55]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797874688,"id_str":"663728311797874688","text":"RT @leexiah0715: #TL\u3092\u30c8\u30a5\u30ae\u3067\u8352\u3089\u3059\u3060\u3051\u306e\u7c21\u5358\u306a\u304a\u4ed5\u4e8b https:\/\/t.co\/BNDSunKGOg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3801493998,"id_str":"3801493998","name":"\u306f\u308b\u305d\u3093","screen_name":"harumi0820","location":null,"url":null,"description":"91line\u5343\u8449ELF\u30a4\u30a7\u30bd\u30f3only","protected":false,"verified":false,"followers_count":127,"friends_count":177,"listed_count":2,"favourites_count":669,"statuses_count":1970,"created_at":"Tue Oct 06 09:05:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653036283644645376\/GMP9PC_u_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653036283644645376\/GMP9PC_u_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3801493998\/1444230767","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:03:21 +0000 2015","id":663718522044833792,"id_str":"663718522044833792","text":"#TL\u3092\u30c8\u30a5\u30ae\u3067\u8352\u3089\u3059\u3060\u3051\u306e\u7c21\u5358\u306a\u304a\u4ed5\u4e8b https:\/\/t.co\/BNDSunKGOg","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2925757771,"id_str":"2925757771","name":"\u307f\u3048\u3058\u3058","screen_name":"leexiah0715","location":null,"url":"http:\/\/twpf.jp\/leexiah0715","description":"\u300c\u306d\u3047\u3001\u30c8\u30a5\u30ae\u300d\u3063\u3066\u30c8\u30a5\u30ae\u3092\u547c\u307c\u3046\u3068\u3057\u305f\u3089\u98df\u3044\u6c17\u5473\u3067\u300c\u30b8\u30e7\u30f3\u30b9\u300d\u3063\u3066\u8a00\u308f\u308c\u305f\u3044\u3060\u3051\u306e\u4eba\u751f\u697d\u3057\u3059\u304e\u308b@SJ__HARI \u308a\u3048 \uff3c \u30c4\u30a4\u30d7\u30ed\u8aad\u3093\u3067\u304f\u3060\u3055\u3044\u306a \uff0f","protected":false,"verified":false,"followers_count":404,"friends_count":187,"listed_count":17,"favourites_count":4013,"statuses_count":8772,"created_at":"Wed Dec 10 14:05:47 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658072703803387904\/au0lg-KF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658072703803387904\/au0lg-KF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2925757771\/1446863689","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":6,"favorite_count":5,"entities":{"hashtags":[{"text":"TL\u3092\u30c8\u30a5\u30ae\u3067\u8352\u3089\u3059\u3060\u3051\u306e\u7c21\u5358\u306a\u304a\u4ed5\u4e8b","indices":[0,20]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663718507108929536,"id_str":"663718507108929536","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663718507108929536,"id_str":"663718507108929536","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}}},{"id":663718507188629504,"id_str":"663718507188629504","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzvUsAATNaW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzvUsAATNaW.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"large":{"w":1024,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}}},{"id":663718507205427201,"id_str":"663718507205427201","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzzVAAErndu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzzVAAErndu.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":385,"resize":"fit"},"small":{"w":340,"h":218,"resize":"fit"},"large":{"w":740,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}},{"id":663718507264126976,"id_str":"663718507264126976","indices":[21,44],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAd0BUsAANwG9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAd0BUsAANwG9.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":671,"resize":"fit"},"large":{"w":849,"h":950,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":380,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"TL\u3092\u30c8\u30a5\u30ae\u3067\u8352\u3089\u3059\u3060\u3051\u306e\u7c21\u5358\u306a\u304a\u4ed5\u4e8b","indices":[17,37]}],"urls":[],"user_mentions":[{"screen_name":"leexiah0715","name":"\u307f\u3048\u3058\u3058","id":2925757771,"id_str":"2925757771","indices":[3,15]}],"symbols":[],"media":[{"id":663718507108929536,"id_str":"663718507108929536","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663718522044833792,"source_status_id_str":"663718522044833792","source_user_id":2925757771,"source_user_id_str":"2925757771"}]},"extended_entities":{"media":[{"id":663718507108929536,"id_str":"663718507108929536","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzcUkAA_gTJ.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":400,"h":383,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":325,"resize":"fit"},"large":{"w":400,"h":383,"resize":"fit"}},"source_status_id":663718522044833792,"source_status_id_str":"663718522044833792","source_user_id":2925757771,"source_user_id_str":"2925757771"},{"id":663718507188629504,"id_str":"663718507188629504","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzvUsAATNaW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzvUsAATNaW.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":402,"resize":"fit"},"large":{"w":1024,"h":687,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":228,"resize":"fit"}},"source_status_id":663718522044833792,"source_status_id_str":"663718522044833792","source_user_id":2925757771,"source_user_id_str":"2925757771"},{"id":663718507205427201,"id_str":"663718507205427201","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAdzzVAAErndu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAdzzVAAErndu.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":385,"resize":"fit"},"small":{"w":340,"h":218,"resize":"fit"},"large":{"w":740,"h":475,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":663718522044833792,"source_status_id_str":"663718522044833792","source_user_id":2925757771,"source_user_id_str":"2925757771"},{"id":663718507264126976,"id_str":"663718507264126976","indices":[38,61],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYAd0BUsAANwG9.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYAd0BUsAANwG9.jpg","url":"https:\/\/t.co\/BNDSunKGOg","display_url":"pic.twitter.com\/BNDSunKGOg","expanded_url":"http:\/\/twitter.com\/leexiah0715\/status\/663718522044833792\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":671,"resize":"fit"},"large":{"w":849,"h":950,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":380,"resize":"fit"}},"source_status_id":663718522044833792,"source_status_id_str":"663718522044833792","source_user_id":2925757771,"source_user_id_str":"2925757771"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789596672,"id_str":"663728311789596672","text":"RT @mo_osif: #SouhailaBenLachhab #starcarabia \n#\u0627\u0644\u062c\u064a\u0634_\u0627\u0644\u0633\u0647\u0644\u0627\u0648\u064a #\u0627\u0644\u0644\u064a_\u062c\u0627\u064a_\u0648\u0627\u0639\u0631_\u0648\u0627\u0639\u0631_\u0645\u0639_\u0633\u0647\u064a\u0644\u0647 \n#\u0633\u0647\u064a\u0644\u0647_\u0627\u0644\u0627\u0635\u064a\u0644\u0647 #\u0633\u0647\u064a\u0644\u0647_\u062a\u063a\u0646\u064a_\u0645\u0639_\u0627\u0635\u0627\u0644\u0647 https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2829313120,"id_str":"2829313120","name":"a'rielle","screen_name":"sara_rielle","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":613,"friends_count":1094,"listed_count":1,"favourites_count":4615,"statuses_count":9189,"created_at":"Tue Oct 14 10:35:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"fr","contributors_enabled":false,"is_translator":false,"profile_background_color":"FA743E","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/660150527871860736\/4BeOrJw-.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/660150527871860736\/4BeOrJw-.jpg","profile_background_tile":true,"profile_link_color":"FA743E","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660997897727569920\/SxC9yTOw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660997897727569920\/SxC9yTOw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2829313120\/1446846585","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat Nov 07 15:12:14 +0000 2015","id":663011079912611841,"id_str":"663011079912611841","text":"#SouhailaBenLachhab #starcarabia \n#\u0627\u0644\u062c\u064a\u0634_\u0627\u0644\u0633\u0647\u0644\u0627\u0648\u064a #\u0627\u0644\u0644\u064a_\u062c\u0627\u064a_\u0648\u0627\u0639\u0631_\u0648\u0627\u0639\u0631_\u0645\u0639_\u0633\u0647\u064a\u0644\u0647 \n#\u0633\u0647\u064a\u0644\u0647_\u0627\u0644\u0627\u0635\u064a\u0644\u0647 #\u0633\u0647\u064a\u0644\u0647_\u062a\u063a\u0646\u064a_\u0645\u0639_\u0627\u0635\u0627\u0644\u0647 https:\/\/t.co\/Q6RFCEi6E6","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4109893067,"id_str":"4109893067","name":"MOHAMED OSIF","screen_name":"mo_osif","location":"\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":null,"description":"\u0645\u0646 \u062c\u0645\u0647\u0648\u0631 #\u0633\u0647\u064a\u0644\u0629_\u0628\u0646_\u0644\u0634\u0647\u0628","protected":false,"verified":false,"followers_count":456,"friends_count":583,"listed_count":1,"favourites_count":261,"statuses_count":161,"created_at":"Wed Nov 04 05:52:50 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661805187271667712\/PBqgk_Rm_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661805187271667712\/PBqgk_Rm_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4109893067\/1446621625","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":12,"favorite_count":26,"entities":{"hashtags":[{"text":"SouhailaBenLachhab","indices":[0,19]},{"text":"starcarabia","indices":[20,32]},{"text":"\u0627\u0644\u062c\u064a\u0634_\u0627\u0644\u0633\u0647\u0644\u0627\u0648\u064a","indices":[34,49]},{"text":"\u0627\u0644\u0644\u064a_\u062c\u0627\u064a_\u0648\u0627\u0639\u0631_\u0648\u0627\u0639\u0631_\u0645\u0639_\u0633\u0647\u064a\u0644\u0647","indices":[50,78]},{"text":"\u0633\u0647\u064a\u0644\u0647_\u0627\u0644\u0627\u0635\u064a\u0644\u0647","indices":[80,94]},{"text":"\u0633\u0647\u064a\u0644\u0647_\u062a\u063a\u0646\u064a_\u0645\u0639_\u0627\u0635\u0627\u0644\u0647","indices":[95,115]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663011061281521668,"id_str":"663011061281521668","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","url":"https:\/\/t.co\/Q6RFCEi6E6","display_url":"pic.twitter.com\/Q6RFCEi6E6","expanded_url":"http:\/\/twitter.com\/mo_osif\/status\/663011079912611841\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":600,"h":750,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663011061281521668,"id_str":"663011061281521668","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","url":"https:\/\/t.co\/Q6RFCEi6E6","display_url":"pic.twitter.com\/Q6RFCEi6E6","expanded_url":"http:\/\/twitter.com\/mo_osif\/status\/663011079912611841\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":600,"h":750,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"SouhailaBenLachhab","indices":[13,32]},{"text":"starcarabia","indices":[33,45]},{"text":"\u0627\u0644\u062c\u064a\u0634_\u0627\u0644\u0633\u0647\u0644\u0627\u0648\u064a","indices":[47,62]},{"text":"\u0627\u0644\u0644\u064a_\u062c\u0627\u064a_\u0648\u0627\u0639\u0631_\u0648\u0627\u0639\u0631_\u0645\u0639_\u0633\u0647\u064a\u0644\u0647","indices":[63,91]},{"text":"\u0633\u0647\u064a\u0644\u0647_\u0627\u0644\u0627\u0635\u064a\u0644\u0647","indices":[93,107]},{"text":"\u0633\u0647\u064a\u0644\u0647_\u062a\u063a\u0646\u064a_\u0645\u0639_\u0627\u0635\u0627\u0644\u0647","indices":[108,128]}],"urls":[],"user_mentions":[{"screen_name":"mo_osif","name":"MOHAMED OSIF","id":4109893067,"id_str":"4109893067","indices":[3,11]}],"symbols":[],"media":[{"id":663011061281521668,"id_str":"663011061281521668","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","url":"https:\/\/t.co\/Q6RFCEi6E6","display_url":"pic.twitter.com\/Q6RFCEi6E6","expanded_url":"http:\/\/twitter.com\/mo_osif\/status\/663011079912611841\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":600,"h":750,"resize":"fit"}},"source_status_id":663011079912611841,"source_status_id_str":"663011079912611841","source_user_id":4109893067,"source_user_id_str":"4109893067"}]},"extended_entities":{"media":[{"id":663011061281521668,"id_str":"663011061281521668","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTN9DCXXAAQp8Pd.jpg","url":"https:\/\/t.co\/Q6RFCEi6E6","display_url":"pic.twitter.com\/Q6RFCEi6E6","expanded_url":"http:\/\/twitter.com\/mo_osif\/status\/663011079912611841\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":425,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":750,"resize":"fit"},"large":{"w":600,"h":750,"resize":"fit"}},"source_status_id":663011079912611841,"source_status_id_str":"663011079912611841","source_user_id":4109893067,"source_user_id_str":"4109893067"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789572096,"id_str":"663728311789572096","text":"@konnichiwagkt_1 \u5207\u5b9f\u306b\u7121\u7406\u306b\u8868\u3092\u5165\u308c\u3066\u308b\u4eba\u306f\u82e5\u3044\u3093\u3060\u306a\u3068\u601d\u3046","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726112644567040,"in_reply_to_status_id_str":"663726112644567040","in_reply_to_user_id":2699800105,"in_reply_to_user_id_str":"2699800105","in_reply_to_screen_name":"konnichiwagkt_1","user":{"id":1251499039,"id_str":"1251499039","name":"Manaka","screen_name":"ma_manaka","location":"Japan","url":"https:\/\/instagram.com\/ma_manaka\/","description":"\u3000\u3000plz follow \u2192@manakajackson \u57fc\u7389 JanetJacksonMichaelJackson\/EdSheeran \/J-Ax\/MAGIC!\/criminal:mind\/castle\/CSI \u261eAustralia Japan","protected":false,"verified":false,"followers_count":543,"friends_count":292,"listed_count":3,"favourites_count":2988,"statuses_count":29965,"created_at":"Fri Mar 08 11:35:41 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657137957057392641\/q6limPJR_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657137957057392641\/q6limPJR_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1251499039\/1446643479","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"konnichiwagkt_1","name":"GACKT","id":2699800105,"id_str":"2699800105","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797968900,"id_str":"663728311797968900","text":"RT @papyonluzenci2: Ben Allah\u0131n a's\u0131n\u0131 k\u00fc\u00e7\u00fck yaz\u0131nca kendimi k\u00f6t\u00fc hissediyorum adam \u015fuan g\u00f6z\u00fcm\u00fcn \u00f6n\u00fcnde 5 lahmacun g\u00f6m\u00fcyo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":266543702,"id_str":"266543702","name":"\u2744","screen_name":"Eroogluuu","location":"\u0130SKENDERUN","url":null,"description":"Ki sen tanr\u0131n\u0131n bana verdi gen g\u00fczel l\u00fctfunsun.","protected":false,"verified":false,"followers_count":14532,"friends_count":11851,"listed_count":6,"favourites_count":12462,"statuses_count":1083,"created_at":"Tue Mar 15 12:01:47 +0000 2011","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"ACDED6","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/606978543604649984\/IO4bzBng.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/606978543604649984\/IO4bzBng.jpg","profile_background_tile":true,"profile_link_color":"038543","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660866024623972352\/OJdqDVDF_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660866024623972352\/OJdqDVDF_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/266543702\/1446903592","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jun 18 10:46:04 +0000 2015","id":611485021317267456,"id_str":"611485021317267456","text":"Ben Allah\u0131n a's\u0131n\u0131 k\u00fc\u00e7\u00fck yaz\u0131nca kendimi k\u00f6t\u00fc hissediyorum adam \u015fuan g\u00f6z\u00fcm\u00fcn \u00f6n\u00fcnde 5 lahmacun g\u00f6m\u00fcyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1541343890,"id_str":"1541343890","name":"Servet Y\u0131ld\u0131z","screen_name":"papyonluzenci2","location":"\u0130ncirlik,Airbase Adana","url":"https:\/\/www.facebook.com\/profile.php?id=1168717312","description":"https:\/\/instagram.com\/papyonluzenci2 mi mi mizah show \u0130NC\u0130'TEN REY\u0130Z","protected":false,"verified":false,"followers_count":128360,"friends_count":74325,"listed_count":71,"favourites_count":95564,"statuses_count":1636,"created_at":"Sun Jun 23 16:29:54 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1541343890\/1423665576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"30a17644861c68d7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/30a17644861c68d7.json","place_type":"city","name":"Adana","full_name":"Adana, T\u00fcrkiye","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[35.235367,36.939744],[35.235367,37.065909],[35.334393,37.065909],[35.334393,36.939744]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":1528,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"papyonluzenci2","name":"Servet Y\u0131ld\u0131z","id":1541343890,"id_str":"1541343890","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311776972800,"id_str":"663728311776972800","text":"RT @papyonluzenci2: Ben Allah\u0131n a's\u0131n\u0131 k\u00fc\u00e7\u00fck yaz\u0131nca kendimi k\u00f6t\u00fc hissediyorum adam \u015fuan g\u00f6z\u00fcm\u00fcn \u00f6n\u00fcnde 5 lahmacun g\u00f6m\u00fcyo","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2314051471,"id_str":"2314051471","name":"Emre :d","screen_name":"FakoHerif","location":"Ev","url":"http:\/\/vine.co\/u\/1271525063820537856","description":"(ParodyAccount) Tweetlerimde a\u015f\u0131k oldu\u011fum, laf soktu\u011fum, \u00f6zledi\u011fim, unutmaya \u00e7al\u0131\u015ft\u0131\u011f\u0131m herhangi bir ki\u015fi yoktur. Tamamen hayal \u00fcr\u00fcn\u00fcd\u00fcr. Snapchat: YunusETantan","protected":false,"verified":false,"followers_count":8756,"friends_count":2959,"listed_count":6,"favourites_count":50680,"statuses_count":3502,"created_at":"Mon Jan 27 17:50:31 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":true,"profile_background_color":"3B94D9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/599614421258735616\/va73e9Oy.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/599614421258735616\/va73e9Oy.jpg","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650696548683268096\/Fvq8ejog_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650696548683268096\/Fvq8ejog_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2314051471\/1441643886","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Thu Jun 18 10:46:04 +0000 2015","id":611485021317267456,"id_str":"611485021317267456","text":"Ben Allah\u0131n a's\u0131n\u0131 k\u00fc\u00e7\u00fck yaz\u0131nca kendimi k\u00f6t\u00fc hissediyorum adam \u015fuan g\u00f6z\u00fcm\u00fcn \u00f6n\u00fcnde 5 lahmacun g\u00f6m\u00fcyo","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1541343890,"id_str":"1541343890","name":"Servet Y\u0131ld\u0131z","screen_name":"papyonluzenci2","location":"\u0130ncirlik,Airbase Adana","url":"https:\/\/www.facebook.com\/profile.php?id=1168717312","description":"https:\/\/instagram.com\/papyonluzenci2 mi mi mizah show \u0130NC\u0130'TEN REY\u0130Z","protected":false,"verified":false,"followers_count":128360,"friends_count":74325,"listed_count":71,"favourites_count":95564,"statuses_count":1636,"created_at":"Sun Jun 23 16:29:54 +0000 2013","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"DD2E44","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/620638399762972672\/wSKdDvP3.jpg","profile_background_tile":true,"profile_link_color":"9D582E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/636509722976350208\/ifwm8cfz_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1541343890\/1423665576","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"30a17644861c68d7","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/30a17644861c68d7.json","place_type":"city","name":"Adana","full_name":"Adana, T\u00fcrkiye","country_code":"TR","country":"T\u00fcrkiye","bounding_box":{"type":"Polygon","coordinates":[[[35.235367,36.939744],[35.235367,37.065909],[35.334393,37.065909],[35.334393,36.939744]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":196,"favorite_count":1528,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"papyonluzenci2","name":"Servet Y\u0131ld\u0131z","id":1541343890,"id_str":"1541343890","indices":[3,18]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447080135660"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781068800,"id_str":"663728311781068800","text":"RT @mpriiill: Mau menulis skenario sendiri biar gak ada yg baper -prilly","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2454354536,"id_str":"2454354536","name":"syanin_prillvers","screen_name":"SyaninPrillvers","location":"Wedung Demak","url":null,"description":"My IDOLA @PrillyBie || keep support prilly || PRILVERS keluargaku","protected":false,"verified":false,"followers_count":380,"friends_count":142,"listed_count":0,"favourites_count":3820,"statuses_count":7877,"created_at":"Sun Apr 20 06:43:49 +0000 2014","utc_offset":21600,"time_zone":"Novosibirsk","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662529747109330944\/1LlqYt1__normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662529747109330944\/1LlqYt1__normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2454354536\/1444227190","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:18:36 +0000 2015","id":663722358050390017,"id_str":"663722358050390017","text":"Mau menulis skenario sendiri biar gak ada yg baper -prilly","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1177478508,"id_str":"1177478508","name":"SA3PRILLYLATUCONSINA","screen_name":"mpriiill","location":null,"url":null,"description":"I just fans who will always support\nthe best for my dol @prillybie|akun pribadi !","protected":false,"verified":false,"followers_count":1031,"friends_count":253,"listed_count":3,"favourites_count":135,"statuses_count":23312,"created_at":"Thu Feb 14 03:00:07 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"1A1B1F","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"2FC2EF","profile_sidebar_border_color":"181A1E","profile_sidebar_fill_color":"252429","profile_text_color":"666666","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663567985303392256\/VtMtXdnK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663567985303392256\/VtMtXdnK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1177478508\/1446595434","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":3,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"mpriiill","name":"SA3PRILLYLATUCONSINA","id":1177478508,"id_str":"1177478508","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"in","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797948416,"id_str":"663728311797948416","text":"@Harry_Styles you deserve all the love\nand respect in the world.\nthank you for always making me smile.\nwould you mind following me?\n69,747","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662691957039304704,"in_reply_to_status_id_str":"662691957039304704","in_reply_to_user_id":181561712,"in_reply_to_user_id_str":"181561712","in_reply_to_screen_name":"Harry_Styles","user":{"id":2275126410,"id_str":"2275126410","name":"it'll happen.","screen_name":"niallscrushx","location":"Poland","url":null,"description":"liam\/four. 11.09.15 - m&g with the janoskians.","protected":false,"verified":false,"followers_count":6423,"friends_count":120,"listed_count":71,"favourites_count":97,"statuses_count":201800,"created_at":"Fri Jan 03 21:30:46 +0000 2014","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"pl","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5FAF9","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/637908607699320832\/JpXIqs82.jpg","profile_background_tile":true,"profile_link_color":"0E359E","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662317021489553408\/2N8cYR5s_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2275126410\/1426864732","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Harry_Styles","name":"Harry Styles.","id":181561712,"id_str":"181561712","indices":[0,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764291584,"id_str":"663728311764291584","text":"RT @tomonokai_9jin: \u3010\u5358\u767a\u53ef\uff01\u30c7\u30b9\u30ce\u30fc\u30c8\uff0f\u307e\u308c\uff0f\u82b1\u54b2\u821e\u304c\u3060\u307e\u3063\u3066\u306a\u3044\u7b49\u30c9\u30e9\u30de\u30a8\u30ad\u30b9\u30c8\u30e9\uff01\u3011\n\u30fb\u65e5\u7d663\u5343\uff5e5\u4e07\u5186\u3082\uff01\n\u30fb\u6771\u4eac\u59cb\u3081\u95a2\u6771\u5168\u57df\u3067\u5b9f\u65bd\uff01\n\u30fb\u82b8\u80fd\u754c\u306b\u8208\u5473\u3001\u82b8\u80fd\u4eba\u3092\u898b\u305f\u3044\u4eba\u6b53\u8fce\uff01\n\u7d9a\u304d\u3092\u307f\u308b\u306b\u306f\u3053\u3061\u3089\u21d2http:\/\/t.co\/vygtsR2n6o htt\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3006347952,"id_str":"3006347952","name":"\u5c0f\u898b\u5c71","screen_name":"sak_10k","location":null,"url":null,"description":"\u30db\u30e9\u30b2\u30fc\u5927\u597d\u304d\u30a2\u30cb\u30e1\u5927\u597d\u304d \u3042\u3093\u30b9\u30bf\u3068\u304b\u30c7\u30a3\u30d0\u30b2\u597d\u304d \u6c38\u9060\u306e15\u6b73(\u00b4^\u03c9^\uff40)\uff8c\uff9e\uff8c\uff6bwww","protected":false,"verified":false,"followers_count":213,"friends_count":246,"listed_count":3,"favourites_count":1245,"statuses_count":661,"created_at":"Sun Feb 01 10:19:37 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626627422172020736\/ik_SgVSn_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626627422172020736\/ik_SgVSn_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3006347952\/1431944083","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Oct 16 02:55:37 +0000 2015","id":654853170347151360,"id_str":"654853170347151360","text":"\u3010\u5358\u767a\u53ef\uff01\u30c7\u30b9\u30ce\u30fc\u30c8\uff0f\u307e\u308c\uff0f\u82b1\u54b2\u821e\u304c\u3060\u307e\u3063\u3066\u306a\u3044\u7b49\u30c9\u30e9\u30de\u30a8\u30ad\u30b9\u30c8\u30e9\uff01\u3011\n\u30fb\u65e5\u7d663\u5343\uff5e5\u4e07\u5186\u3082\uff01\n\u30fb\u6771\u4eac\u59cb\u3081\u95a2\u6771\u5168\u57df\u3067\u5b9f\u65bd\uff01\n\u30fb\u82b8\u80fd\u754c\u306b\u8208\u5473\u3001\u82b8\u80fd\u4eba\u3092\u898b\u305f\u3044\u4eba\u6b53\u8fce\uff01\n\u7d9a\u304d\u3092\u307f\u308b\u306b\u306f\u3053\u3061\u3089\u21d2http:\/\/t.co\/vygtsR2n6o http:\/\/t.co\/65P62Nciai","source":"\u003ca href=\"https:\/\/ads.twitter.com\" rel=\"nofollow\"\u003eTwitter Ads\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2219295830,"id_str":"2219295830","name":"\u53b3\u9078\uff01\u77ed\u671f\u30d0\u30a4\u30c8\u60c5\u5831\uff01","screen_name":"tomonokai_9jin","location":null,"url":"https:\/\/www.tnews.jp\/registrations\/first_step?c_cd=9jinbot_pf","description":"\u6570\u3042\u308b\u95a2\u6771\u306e\u77ed\u671f\u30d0\u30a4\u30c8\u306e\u4e2d\u304b\u3089\u826f\u8cea\u306a\u30d0\u30a4\u30c8\u3092\u30d4\u30c3\u30af\u30a2\u30c3\u30d7\u3057\u3066\u304a\u5c4a\u3051\u3057\u307e\u3059\uff01\u4ed6\u3067\u306f\u306a\u304b\u306a\u304b\u898b\u3089\u308c\u306a\u3044\u30d0\u30a4\u30c8\u306f\u3082\u3061\u308d\u3093\u3001\u3053\u3053\u3060\u3051\u3067\u7d39\u4ecb\u3057\u3066\u3044\u308b\u9650\u5b9a\u30d0\u30a4\u30c8\u3082\u3042\u308a\u307e\u3059\uff01\u662f\u975e\u304a\u5f79\u7acb\u3066\u304f\u3060\u3055\u3044\uff01","protected":false,"verified":false,"followers_count":24592,"friends_count":5450,"listed_count":134,"favourites_count":9,"statuses_count":47681,"created_at":"Thu Nov 28 09:20:57 +0000 2013","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"F5F8FA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"31007B","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/600224963371532288\/1WuqG7SK_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/600224963371532288\/1WuqG7SK_normal.png","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":131,"favorite_count":514,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/vygtsR2n6o","expanded_url":"http:\/\/bit.ly\/1X8cJ0a","display_url":"bit.ly\/1X8cJ0a","indices":[93,115]}],"user_mentions":[],"symbols":[],"media":[{"id":654852918873473024,"id_str":"654852918873473024","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","url":"http:\/\/t.co\/65P62Nciai","display_url":"pic.twitter.com\/65P62Nciai","expanded_url":"http:\/\/twitter.com\/tomonokai_9jin\/status\/654853170347151360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":889,"h":500,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":654852918873473024,"id_str":"654852918873473024","indices":[116,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","url":"http:\/\/t.co\/65P62Nciai","display_url":"pic.twitter.com\/65P62Nciai","expanded_url":"http:\/\/twitter.com\/tomonokai_9jin\/status\/654853170347151360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":889,"h":500,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"scopes":{"followers":false},"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"http:\/\/t.co\/vygtsR2n6o","expanded_url":"http:\/\/bit.ly\/1X8cJ0a","display_url":"bit.ly\/1X8cJ0a","indices":[113,135]}],"user_mentions":[{"screen_name":"tomonokai_9jin","name":"\u53b3\u9078\uff01\u77ed\u671f\u30d0\u30a4\u30c8\u60c5\u5831\uff01","id":2219295830,"id_str":"2219295830","indices":[3,18]}],"symbols":[],"media":[{"id":654852918873473024,"id_str":"654852918873473024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","url":"http:\/\/t.co\/65P62Nciai","display_url":"pic.twitter.com\/65P62Nciai","expanded_url":"http:\/\/twitter.com\/tomonokai_9jin\/status\/654853170347151360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":889,"h":500,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":654853170347151360,"source_status_id_str":"654853170347151360","source_user_id":2219295830,"source_user_id_str":"2219295830"}]},"extended_entities":{"media":[{"id":654852918873473024,"id_str":"654852918873473024","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRaBQpmUwAA1Om_.jpg","url":"http:\/\/t.co\/65P62Nciai","display_url":"pic.twitter.com\/65P62Nciai","expanded_url":"http:\/\/twitter.com\/tomonokai_9jin\/status\/654853170347151360\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"large":{"w":889,"h":500,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"}},"source_status_id":654853170347151360,"source_status_id_str":"654853170347151360","source_user_id":2219295830,"source_user_id_str":"2219295830"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802064896,"id_str":"663728311802064896","text":"RT @kohyu1952: \u305d\u3082\u305d\u3082\u65e5\u672c\u306f\u305d\u306e\u30aa\u30ea\u30b8\u30f3\u304b\u3089\u591a\u6587\u5316\u5171\u751f\u3067\u305d\u306e\u30d7\u30e9\u30c3\u30c8\u30db\u30fc\u30e0\u304c\u795e\u9053\u3002\u3069\u3053\u306e\u795e\u793e\u3082\u305d\u308c\u3053\u305d\u9756\u56fd\u3067\u3082\u574a\u4e3b\u3082\u30a4\u30b9\u30e9\u30e0\u6559\u5f92\u3082\u30ab\u30bd\u30ea\u30c3\u30af\u3082\u305d\u308c\u305e\u308c\u306e\u6d41\u5100\u3067\u62dd\u6bbf\u524d\u3067\u7948\u308b\u3002\u305d\u3093\u306a\u65e5\u672c\u3092\u4ed6\u6587\u5316\u5f37\u5236\u306b\u3057\u305f\u3044\u9023\u4e2d\u304c\u65e5\u672c\u4e2d\u306e\u795e\u793e\u306b\u706b\u3092\u653e\u3063\u3066\u3044\u308b\u3002\u5148\u65e5\u306e\u516b\u6238\u306e\u7531\u7dd2\u3042\u308b\u795e\u793e\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3301027615,"id_str":"3301027615","name":"\u751f\u6daf\u4e03\u5e74\u751f","screen_name":"top_of_handicap","location":null,"url":null,"description":"\u8272\u3093\u306a\u5f53\u4e8b\u8005\u3002 \u304a\u304b\u3057\u306a\u4e8b\u3092\u300c\u304a\u304b\u3057\u3044\u300d\u3068\u8ab0\u619a\u308b\u4e8b\u7121\u304f\u767a\u8a00\u51fa\u6765\u308b\u56fd\u3092\u5b9f\u73fe\u3055\u305b\u305f\u3044\u3002 RT\u304c\u591a\u3081\u306b\u306a\u308b\u4e88\u5b9a\u3002\u5b89\u500d\u7dcf\u7406\u5927\u81e3\u3092\u652f\u6301\u3057\u307e\u3059\u3002\n\n\u53f0\u7063\ufe0e\ufe0e\u2764\ufe0e\ufe0e\u2113\u03c3\u03bd\u0454\ufe0e\ufe0e\u2764\ufe0e\ufe0e \u308f\u305f\u3057\u306f\u53f0\u7063\u304c\u597d\u304d\u3067\u3059\n\u6211\u5c2c\u610f\u53f0\u7063 \u3046\u3049\u30fc\u304c\u3041\u3044\u3060\u3044\u308f\u3093","protected":false,"verified":false,"followers_count":213,"friends_count":220,"listed_count":1,"favourites_count":466,"statuses_count":4617,"created_at":"Thu Jul 30 00:32:42 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/626556939439247360\/QIVr2HGt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/626556939439247360\/QIVr2HGt_normal.jpg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:50:13 +0000 2015","id":663594419933700100,"id_str":"663594419933700100","text":"\u305d\u3082\u305d\u3082\u65e5\u672c\u306f\u305d\u306e\u30aa\u30ea\u30b8\u30f3\u304b\u3089\u591a\u6587\u5316\u5171\u751f\u3067\u305d\u306e\u30d7\u30e9\u30c3\u30c8\u30db\u30fc\u30e0\u304c\u795e\u9053\u3002\u3069\u3053\u306e\u795e\u793e\u3082\u305d\u308c\u3053\u305d\u9756\u56fd\u3067\u3082\u574a\u4e3b\u3082\u30a4\u30b9\u30e9\u30e0\u6559\u5f92\u3082\u30ab\u30bd\u30ea\u30c3\u30af\u3082\u305d\u308c\u305e\u308c\u306e\u6d41\u5100\u3067\u62dd\u6bbf\u524d\u3067\u7948\u308b\u3002\u305d\u3093\u306a\u65e5\u672c\u3092\u4ed6\u6587\u5316\u5f37\u5236\u306b\u3057\u305f\u3044\u9023\u4e2d\u304c\u65e5\u672c\u4e2d\u306e\u795e\u793e\u306b\u706b\u3092\u653e\u3063\u3066\u3044\u308b\u3002\u5148\u65e5\u306e\u516b\u6238\u306e\u7531\u7dd2\u3042\u308b\u795e\u793e\u306f\uff1f@TAMAGAWABOAT","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663584131750629376,"in_reply_to_status_id_str":"663584131750629376","in_reply_to_user_id":109458204,"in_reply_to_user_id_str":"109458204","in_reply_to_screen_name":"kohyu1952","user":{"id":109458204,"id_str":"109458204","name":"\u897f\u6751\u5e78\u7950","screen_name":"kohyu1952","location":null,"url":"http:\/\/kohyu-nishimura.com","description":"Kohyu Nishimura\nWriter\/Critic\/Commentator\/Editor\/Journalist\n\u6b74\u53f2\u3001\u6587\u5316\u3001\u30b9\u30dd\u30fc\u30c4\u3001\u30e1\u30c7\u30a3\u30a2\u3001\u5916\u4ea4\u3001\u5b89\u5168\u4fdd\u969c\u306a\u3069\u306e\u30d2\u30f3\u30c8\u3067\u3059\u3002\n\u897f\u6751\u5e78\u7950\u653e\u9001\u5c40 http:\/\/t.co\/gBXdx3XcNr\nfacebook https:\/\/t.co\/FyVUg2XNlh","protected":false,"verified":false,"followers_count":43682,"friends_count":2236,"listed_count":2281,"favourites_count":28525,"statuses_count":44717,"created_at":"Fri Jan 29 03:30:36 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/128848299\/____________.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/128848299\/____________.jpg","profile_background_tile":true,"profile_link_color":"93A644","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1155115860\/_DSF0262_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1155115860\/_DSF0262_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/109458204\/1407480961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":75,"favorite_count":26,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"TAMAGAWABOAT","name":"\u591a\u6469\u5ddd\uff0d\u6170\u5b89\u5a66\u554f\u984c","id":139734773,"id_str":"139734773","indices":[126,139]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"kohyu1952","name":"\u897f\u6751\u5e78\u7950","id":109458204,"id_str":"109458204","indices":[3,13]},{"screen_name":"TAMAGAWABOAT","name":"\u591a\u6469\u5ddd\uff0d\u6170\u5b89\u5a66\u554f\u984c","id":139734773,"id_str":"139734773","indices":[139,140]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311793643520,"id_str":"663728311793643520","text":"\u304a\u6708\u898b\u4eba\u6c17\u306a\u306e\u304b\u3068\u601d\u3063\u3066\u305f\u3051\u3069\u304a\u3068\u304e\u591a\u304f\u3066\u3073\u3063\u304f\u308a\u3057\u3066\u308b\uff01\u3069\u3063\u3061\u3082\u304b\u308f\u3044\u3044\u304b\u3089\u5927\u597d\u304d\uff5ep(*\uff3e-\uff3e*)q\u2661","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1627997444,"id_str":"1627997444","name":"emma","screen_name":"emma_xxxjp","location":null,"url":"http:\/\/sp.cosp.jp\/prof.aspx?id=361240","description":"\u25bc\u5b66\u751f\u3067\u30ec\u30a4\u30e4\u30fc\/20\u2191\/\u5922\u5973\u305f\u307e\u306b\u8150\u5973\u5b50\/\u95a2\u6771 \u25bcM\u30de\u30b9\/\u30c6\u30cb\u30b9\/\u9006\u88c1\/\u8ad6\u7834\/\u30e9\u30d6\u30e9\u30a4\u30d6\uff01\/\u5e1d\u4e00\/\u30df\u30e5\u30fc\u30b8\u30ab\u30eb\/\u6620\u753b \u3064\u3060\u3055\u3093\u3068\u3057\u3057\u3069\u3055\u3093\u306e\u4eba \u5c71\u4e0b\u6b21\u90ce\u306eP \u30d5\u30a9\u30ed\u30d0100\uff05\u3058\u3083\u306a\u3044\u3067\u3059 Instagram\u2192emma_xx524 http:\/\/twpf.jp\/emma_xxxjp","protected":false,"verified":false,"followers_count":530,"friends_count":804,"listed_count":9,"favourites_count":9061,"statuses_count":38152,"created_at":"Sun Jul 28 14:21:47 +0000 2013","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661638727479877632\/XcrpAEqN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661638727479877632\/XcrpAEqN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1627997444\/1442903896","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135664"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797837824,"id_str":"663728311797837824","text":"\u6728\u66dc\u65e5\u9000\u9662\u6fc3\u539a( \u02c7\u03c9\u02c7 )","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1372789801,"id_str":"1372789801","name":"\u308c\u3093\u3053\u3093@\u30d0\u30a4\u30af\u964d\u308a\u308b\u30de\u30f3","screen_name":"tomoyarr","location":"\u7d42\u308f\u308a\u7121\u304d\u9053\u306e\u5148","url":"http:\/\/minkara.carview.co.jp\/userid\/1837602\/my\/default.aspx?type=all&ctype=0","description":"Ninja250('13SE)\u2192GSR400 \u30ed\u30f3\u30c4\u30fc\u5927\u597d\u304d\u7cfb\u7537\u5b50\n\n\u3044\u3064\u304b\u307e\u305f\u3001\u623b\u3063\u3066\u304d\u307e\u3059\u306d","protected":false,"verified":false,"followers_count":804,"friends_count":742,"listed_count":24,"favourites_count":4483,"statuses_count":27713,"created_at":"Mon Apr 22 18:25:07 +0000 2013","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/606120731475255298\/ZAZydDri_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/606120731475255298\/ZAZydDri_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1372789801\/1440303617","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785226241,"id_str":"663728311785226241","text":"@2tantanhae @hirari96 @jagger_Lee2 \u314b\u314c\n\u314b\u314b\u314b\u314b\u314b\u314b\u314b'\uc705\uc2a4\uace0\ub85d'\uac00\ub294\uac74\uac00\uc694?^^","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728072378609664,"in_reply_to_status_id_str":"663728072378609664","in_reply_to_user_id":2997388914,"in_reply_to_user_id_str":"2997388914","in_reply_to_screen_name":"2tantanhae","user":{"id":1896404072,"id_str":"1896404072","name":"\ub098\ub9b0\ub098\ub9b0","screen_name":"narin0806","location":null,"url":null,"description":"98 \uc608\uc05c\uac8c\uc88b\uc544! \uc138\uc77c\ub7ec\ubb38-\ub135\ud2a0\/\uce94\ub514\/\ub514\uc9c0\ubaac-\ubbf8\ubbf8\/\ud14c\ub2c8\ud504\ub9ac-\ud6c4\uc9c0\uc288 \uc7ac\ub2c8 \ubbfc\ud601 \uacb8\ub514 \ubfcc\uc57c \ud604\ud604 \uc774\uc548 \uc13c\uc57c \uc2e0\uc544 \ub7ec-\ube0c\/\uc778\uc7a5 \ubcf8\uc778\uadf8\ub9bc","protected":false,"verified":false,"followers_count":154,"friends_count":138,"listed_count":1,"favourites_count":1971,"statuses_count":3819,"created_at":"Mon Sep 23 06:42:54 +0000 2013","utc_offset":28800,"time_zone":"Ulaan Bataar","geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFAA88","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000080633444\/8388f9f5ebca3dd2c58b44f190687497.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000080633444\/8388f9f5ebca3dd2c58b44f190687497.png","profile_background_tile":false,"profile_link_color":"FFAA88","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"B88D8D","profile_text_color":"856F84","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659528948234088448\/HyCjSsTi_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659528948234088448\/HyCjSsTi_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1896404072\/1444575400","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"2tantanhae","name":"\uc608\uc05c\ub0b4\ud504\uc0ac \ud0c4","id":2997388914,"id_str":"2997388914","indices":[0,11]},{"screen_name":"hirari96","name":"\ubbfc\uc601_HIRARI","id":3463005973,"id_str":"3463005973","indices":[12,21]},{"screen_name":"jagger_Lee2","name":"\uc9c0\uc218\uc9c4","id":354873316,"id_str":"354873316","indices":[22,34]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311772708864,"id_str":"663728311772708864","text":"RT @AppStore: Get 20% off everything with the HBX app. One of 100s of reasons to shop on the App Store.\nhttps:\/\/t.co\/UgXe0xgr5U https:\/\/t.c\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3242304054,"id_str":"3242304054","name":"\u30e1\u30ab\u30b5\u30c6\u30e9\u30a4\u30c8","screen_name":"msn00100msms","location":"Tokyo Metropolitan area","url":null,"description":"\uff35\uff33\uff21\u306b\u306f\u7279\u5225\u306a\u5171\u901a\u70b9\u304c\u50d5\u306b\u306f\u4f59\u308a\u306b\u3082\u591a\u304f\u3042\u308a\u3001\u305d\u308c\u6545\u306b\uff35\uff33\uff21\u306b\u306f\u6df1\u3044\u60f3\u8d77\u3088\u3046\u306a\u3082\u306e\u304c\u3042\u308a\u307e\u3059\u3002\u307e\u305f\u201c\u5947\u8de1\u201d\u3068\u3044\u3046\u3082\u306e\u304c\u5b58\u5728\u3059\u308b\u306a\u3089\u3070\u3001\u305d\u308c\u306f\u672c\u5f53\u306b\u5b58\u5728\u3059\u308b\u306e\u304b\u3082\u77e5\u308c\u306a\u3044\u3002\u306a\u305c\u306a\u3089\u3070\u201c\u5076\u7136\u201d\u304c\u4e00\u81f4\u3057\u904e\u304e\u3066\u3044\u308b\u304b\u3089\u3002\u3053\u306e\u201c\u73fe\u8c61\u201d\u306f\u672c\u5f53\u306b\u81ea\u5206\u3067\u3082\u7406\u89e3\u3067\u304d\u306a\u3044\u3002\u3053\u306e\u201c\u73fe\u8c61\u201d\u3092\u8003\u3048\u308b\u3068\uff35\uff33\uff21\u3068\u306e\u201c\u60f3\u8d77\u201d\u3068\u201c\u5947\u8de1\u201d\u306f\u78ba\u5b9f\u306b\u3042\u308b\u3002","protected":false,"verified":false,"followers_count":10,"friends_count":184,"listed_count":232,"favourites_count":38844,"statuses_count":39578,"created_at":"Thu Jun 11 14:08:04 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/618384625912541185\/UFgGrB3Z.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/618384625912541185\/UFgGrB3Z.jpg","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659032831109128192\/Itne0XB5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659032831109128192\/Itne0XB5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3242304054\/1445960421","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 02:49:01 +0000 2015","id":663548818974224384,"id_str":"663548818974224384","text":"Get 20% off everything with the HBX app. One of 100s of reasons to shop on the App Store.\nhttps:\/\/t.co\/UgXe0xgr5U https:\/\/t.co\/rNDmsAtPVq","source":"\u003ca href=\"http:\/\/www.sprinklr.com\" rel=\"nofollow\"\u003eSprinklr\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":74594552,"id_str":"74594552","name":"App Store","screen_name":"AppStore","location":"Cupertino, CA","url":"http:\/\/appstore.com","description":null,"protected":false,"verified":true,"followers_count":4153299,"friends_count":15,"listed_count":24537,"favourites_count":13,"statuses_count":6091,"created_at":"Tue Sep 15 23:47:10 +0000 2009","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F0F0F0","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0088CC","profile_sidebar_border_color":"C7C7C7","profile_sidebar_fill_color":"E0E0E0","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/541928549834182656\/dfWZLYmX_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/541928549834182656\/dfWZLYmX_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/74594552\/1446569941","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":29,"favorite_count":77,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UgXe0xgr5U","expanded_url":"http:\/\/apple.co\/HBX","display_url":"apple.co\/HBX","indices":[90,113]}],"user_mentions":[],"symbols":[],"media":[{"id":663548818395369472,"id_str":"663548818395369472","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","url":"https:\/\/t.co\/rNDmsAtPVq","display_url":"pic.twitter.com\/rNDmsAtPVq","expanded_url":"http:\/\/twitter.com\/AppStore\/status\/663548818974224384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":583,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663548818395369472,"id_str":"663548818395369472","indices":[114,137],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","url":"https:\/\/t.co\/rNDmsAtPVq","display_url":"pic.twitter.com\/rNDmsAtPVq","expanded_url":"http:\/\/twitter.com\/AppStore\/status\/663548818974224384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":583,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/UgXe0xgr5U","expanded_url":"http:\/\/apple.co\/HBX","display_url":"apple.co\/HBX","indices":[104,127]}],"user_mentions":[{"screen_name":"AppStore","name":"App Store","id":74594552,"id_str":"74594552","indices":[3,12]}],"symbols":[],"media":[{"id":663548818395369472,"id_str":"663548818395369472","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","url":"https:\/\/t.co\/rNDmsAtPVq","display_url":"pic.twitter.com\/rNDmsAtPVq","expanded_url":"http:\/\/twitter.com\/AppStore\/status\/663548818974224384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":583,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663548818974224384,"source_status_id_str":"663548818974224384","source_user_id":74594552,"source_user_id_str":"74594552"}]},"extended_entities":{"media":[{"id":663548818395369472,"id_str":"663548818395369472","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVmInuWEAAvfqX.png","url":"https:\/\/t.co\/rNDmsAtPVq","display_url":"pic.twitter.com\/rNDmsAtPVq","expanded_url":"http:\/\/twitter.com\/AppStore\/status\/663548818974224384\/photo\/1","type":"photo","sizes":{"large":{"w":1024,"h":583,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":341,"resize":"fit"},"small":{"w":340,"h":193,"resize":"fit"}},"source_status_id":663548818974224384,"source_status_id_str":"663548818974224384","source_user_id":74594552,"source_user_id_str":"74594552"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135659"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781081088,"id_str":"663728311781081088","text":"\uff1e\uff1e\u5927\u559c\u5229\uff1c\uff1c","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":412725905,"id_str":"412725905","name":"\u2026","screen_name":"san_ph7","location":"\u2026","url":null,"description":"\u3055\u3093\u3066\u3093\u308a\u30fc\u3060\u3002\u3055\u3093\u3002\u304a\u7d75\u304b\u304d\u72ec\u308a\u8a00\u3044\u308d\u3044\u308d\u3002\u30b8\u30e3\u30f3\u30eb\u96d1\u98df\u3067\u3046\u308b\u3055\u3044\u3067\u3059\u3002\u30e0\u30b2\u30f3WARS:\u707d\u306e\u9b54\u738b\uff08\uff20w_maou)\u3068\u8cbf\u6613\u8239\u306e\u30ab\u30e9\u30b9\u306e\u4e2d\u306e\u4eba\u3002","protected":false,"verified":false,"followers_count":153,"friends_count":87,"listed_count":5,"favourites_count":3036,"statuses_count":10830,"created_at":"Tue Nov 15 02:19:20 +0000 2011","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629240990092562433\/Eits1elD.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629240990092562433\/Eits1elD.png","profile_background_tile":true,"profile_link_color":"C82C55","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662892211525185536\/ILCxsLqk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662892211525185536\/ILCxsLqk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/412725905\/1446881516","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789555712,"id_str":"663728311789555712","text":"\u062d\u0627\u0644\u064a\u0627 \u0641\u064a \u0633\u0646\u0627\u0628 \u0634\u0627\u062a \u0627\u062a\u0643\u0644\u0645 \u0639\u0646 \u0627\u0644\u0627\u064a\u062c\u0648\ud83d\udc47\ud83d\udc47\ud83d\udc47\n\nEmanoo12345","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1031969444,"id_str":"1031969444","name":"\u0627\u064a\u0645\u0627\u0646 \u0627\u0644\u0645\u0648\u0633\u0649.","screen_name":"breemoo55","location":" \u0627\u0646\u0633\u062a\u0642\u0631\u0627\u0645emanoo33","url":null,"description":"\u200f\u200f\u200f\u200f\u200f\u200f\u200f\u0625\u064a\u0645\u0627\u0646 \u0627\u0644\u0645\u0648\u0633\u0649 \u0645\u0627\u0644\u0643\u0629 \u0645\u0631\u0643\u0632 \u0627\u0644\u062d\u064a\u0627\u0647 \u0627\u0644\u0637\u064a\u0628\u0647 \u0644\u0644\u062a\u0646\u0645\u064a\u0629 \u0627\u0644\u0630\u0627\u062a\u064a\u0647 \u0648\u0627\u0644\u062a\u0637\u0648\u064a\u0631 \u0639\u0646 \u0628\u0639\u062f\n\u062c\u0645\u064a\u0639 \u0627\u0644\u062f\u0648\u0631\u0627\u062a \u0648\u0627\u0644\u0627\u0633\u062a\u0634\u0627\u0631\u0627\u062a \u0627\u0648\u0646 \u0644\u0627\u064a\u0646\n\n\u0644\u0644\u0627\u0633\u062a\u0641\u0633\u0627\u0631\u0648\u0627\u0644\u0627\u0633\u062a\u0634\u0627\u0631\u0627\u062a:\n+966534259654\n+96655981150","protected":false,"verified":false,"followers_count":1754,"friends_count":134,"listed_count":14,"favourites_count":1263,"statuses_count":6782,"created_at":"Mon Dec 24 05:06:51 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/657363323344809984\/tmZgOadi_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/657363323344809984\/tmZgOadi_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1031969444\/1445562628","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764283393,"id_str":"663728311764283393","text":"RT @akki71170286: \u30e0\u30e9\u30e0\u30e9\u3057\u3066\u308b\u3084\u3064\u3061\u3087\u3063\u3068\u6765\u3044\u3063\uff01w\n\u3044\u3064\u3082\u4e00\u4eba\u3067\u89e3\u6d88\u3057\u3066\u3044\u305f\u975e\u30ea\u30a2\u7ae5\u8c9e\u306e\u30aa\u30ec\u3060\u304c\n\u3053\u3053\u3084\u3063\u305f\u3089\u4e00\u9031\u9593\u3067\u30bb\u30d5\u30ec\uff12\u4eba\u3067\u304d\u305f\u3063\u305fww\n\n\u7121\u6599\u3060\u304b\u3089\u306a\u2192https:\/\/t.co\/yxilddbT4v\n\n\u8131\u7ae5\u8c9e\u3069\u3053\u308d\u304b\u30ea\u30a2\u5145\u904e\u304e\u30ef\u30ed\u30bfww https\u2026","source":"\u003ca href=\"https:\/\/www.google.co.jp\" rel=\"nofollow\"\u003e\u2605Twitter158\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4008691153,"id_str":"4008691153","name":"\u307e\u306a","screen_name":"mana_rkgj","location":null,"url":null,"description":"\u24ea\u277c\u2460\u2779\/\u73feJK2\/\u5358\u7d14\/\u30ad\u30c6\u30a3\/\u304b\u308f\u3044\u3044\u3082\u306e\/ 2D\u2764\ufe0e\/\u2764\ufe0e5.6\/\u6d0b\u697d\/\u30a2\u30ea\u30a8\u30eb\u2661\u2661\u2661 \u6c17\u8efd\u306b\u3075\u3049\u308d\u30fc\u3057\u3066\u306d\u2764\ufe0e","protected":false,"verified":false,"followers_count":328,"friends_count":160,"listed_count":0,"favourites_count":0,"statuses_count":115,"created_at":"Sun Oct 25 02:26:21 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/658107498394550272\/arh1_Nc-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/658107498394550272\/arh1_Nc-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4008691153\/1445740042","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:42:03 +0000 2015","id":663728260270821376,"id_str":"663728260270821376","text":"\u30e0\u30e9\u30e0\u30e9\u3057\u3066\u308b\u3084\u3064\u3061\u3087\u3063\u3068\u6765\u3044\u3063\uff01w\n\u3044\u3064\u3082\u4e00\u4eba\u3067\u89e3\u6d88\u3057\u3066\u3044\u305f\u975e\u30ea\u30a2\u7ae5\u8c9e\u306e\u30aa\u30ec\u3060\u304c\n\u3053\u3053\u3084\u3063\u305f\u3089\u4e00\u9031\u9593\u3067\u30bb\u30d5\u30ec\uff12\u4eba\u3067\u304d\u305f\u3063\u305fww\n\n\u7121\u6599\u3060\u304b\u3089\u306a\u2192https:\/\/t.co\/yxilddbT4v\n\n\u8131\u7ae5\u8c9e\u3069\u3053\u308d\u304b\u30ea\u30a2\u5145\u904e\u304e\u30ef\u30ed\u30bfww https:\/\/t.co\/PRrt9NPBZf","source":"\u003ca href=\"https:\/\/www.google.co.jp\/\" rel=\"nofollow\"\u003e\u2605Twitter130\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4053038712,"id_str":"4053038712","name":"\u3042\u3063\u304d\u30fc","screen_name":"akki71170286","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":21,"friends_count":0,"listed_count":2,"favourites_count":0,"statuses_count":15,"created_at":"Thu Oct 29 02:57:11 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659564732957921281\/pzyKsMuH_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659564732957921281\/pzyKsMuH_normal.png","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":14,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yxilddbT4v","expanded_url":"http:\/\/goo.gl\/BEi7mg","display_url":"goo.gl\/BEi7mg","indices":[73,96]}],"user_mentions":[],"symbols":[],"media":[{"id":663728260031733760,"id_str":"663728260031733760","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","url":"https:\/\/t.co\/PRrt9NPBZf","display_url":"pic.twitter.com\/PRrt9NPBZf","expanded_url":"http:\/\/twitter.com\/akki71170286\/status\/663728260270821376\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663728260031733760,"id_str":"663728260031733760","indices":[116,139],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","url":"https:\/\/t.co\/PRrt9NPBZf","display_url":"pic.twitter.com\/PRrt9NPBZf","expanded_url":"http:\/\/twitter.com\/akki71170286\/status\/663728260270821376\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/yxilddbT4v","expanded_url":"http:\/\/goo.gl\/BEi7mg","display_url":"goo.gl\/BEi7mg","indices":[91,114]}],"user_mentions":[{"screen_name":"akki71170286","name":"\u3042\u3063\u304d\u30fc","id":4053038712,"id_str":"4053038712","indices":[3,16]}],"symbols":[],"media":[{"id":663728260031733760,"id_str":"663728260031733760","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","url":"https:\/\/t.co\/PRrt9NPBZf","display_url":"pic.twitter.com\/PRrt9NPBZf","expanded_url":"http:\/\/twitter.com\/akki71170286\/status\/663728260270821376\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663728260270821376,"source_status_id_str":"663728260270821376","source_user_id":4053038712,"source_user_id_str":"4053038712"}]},"extended_entities":{"media":[{"id":663728260031733760,"id_str":"663728260031733760","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYJVf6UYAAbkxN.jpg","url":"https:\/\/t.co\/PRrt9NPBZf","display_url":"pic.twitter.com\/PRrt9NPBZf","expanded_url":"http:\/\/twitter.com\/akki71170286\/status\/663728260270821376\/photo\/1","type":"photo","sizes":{"large":{"w":710,"h":608,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":513,"resize":"fit"},"small":{"w":340,"h":291,"resize":"fit"}},"source_status_id":663728260270821376,"source_status_id_str":"663728260270821376","source_user_id":4053038712,"source_user_id_str":"4053038712"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802208258,"id_str":"663728311802208258","text":"Stats for the day have arrived. 1 new follower and NO unfollowers :) via https:\/\/t.co\/v1d8bUntKY.","source":"\u003ca href=\"http:\/\/linkis.com\" rel=\"nofollow\"\u003eLinkis.com\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":740516678,"id_str":"740516678","name":"firaa","screen_name":"nurarfasukri","location":"Makassar","url":null,"description":"free","protected":false,"verified":false,"followers_count":184,"friends_count":213,"listed_count":0,"favourites_count":32,"statuses_count":1790,"created_at":"Mon Aug 06 12:29:38 +0000 2012","utc_offset":28800,"time_zone":"Beijing","geo_enabled":true,"lang":"id","contributors_enabled":false,"is_translator":false,"profile_background_color":"040405","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000063388556\/d19f6a1a1bb6d1d3b6eaf129c6726d74.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000063388556\/d19f6a1a1bb6d1d3b6eaf129c6726d74.jpeg","profile_background_tile":true,"profile_link_color":"00020A","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/553890748991406081\/2wTWsBpP_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/553890748991406081\/2wTWsBpP_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/740516678\/1377528523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/v1d8bUntKY","expanded_url":"http:\/\/ln.is\/www.crowdfireapp.com\/un8YZ","display_url":"ln.is\/www.crowdfirea\u2026","indices":[73,96]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":true,"filter_level":"low","lang":"en","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797846016,"id_str":"663728311797846016","text":"@genesis981fm YO ESCUCHO #EstaMa\u00f1ana con @karengamez_ CINE Emma Graciela Medina Olazaran.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":148407605,"in_reply_to_user_id_str":"148407605","in_reply_to_screen_name":"genesis981fm","user":{"id":157479903,"id_str":"157479903","name":"EMMA MEDINA OLAZARAN","screen_name":"EGRACIELAMEDINA","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":13,"friends_count":23,"listed_count":0,"favourites_count":0,"statuses_count":54,"created_at":"Sat Jun 19 23:38:02 +0000 2010","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_0_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"EstaMa\u00f1ana","indices":[25,36]}],"urls":[],"user_mentions":[{"screen_name":"genesis981fm","name":"G\u00c9NESIS 98.1 FM","id":148407605,"id_str":"148407605","indices":[0,13]},{"screen_name":"karengamez_","name":"Karen G\u00e1mez","id":196773197,"id_str":"196773197","indices":[41,53]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797981184,"id_str":"663728311797981184","text":"RT @ultsstevetony: im posting this for the last pic because steve is looking at tony in that one and i overanalyze everything :) https:\/\/t.\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2804244042,"id_str":"2804244042","name":"Julia \u2122","screen_name":"VIRGINIAPOTTSS","location":"Multifandom Trash | She\/Her","url":"http:\/\/Instagram.com\/pastanugget","description":"My hobbies include dyin over Sebstan & cryin over fictional characters\u2b50\ufe0fTONY STARK DEFENSE SKWAD \u2b50\ufe0f Haley the Goddess \u2764G E M\u2764\ufe0f","protected":false,"verified":false,"followers_count":258,"friends_count":184,"listed_count":3,"favourites_count":7968,"statuses_count":5605,"created_at":"Thu Sep 11 20:28:00 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661312034026479616\/QnwzFNp6_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661312034026479616\/QnwzFNp6_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2804244042\/1446504233","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 01:04:23 +0000 2015","id":663522486844153856,"id_str":"663522486844153856","text":"im posting this for the last pic because steve is looking at tony in that one and i overanalyze everything :) https:\/\/t.co\/k1Xg2xnlyQ","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2808257372,"id_str":"2808257372","name":"tony stark stan","screen_name":"ultsstevetony","location":"Charleston, SC","url":null,"description":"\u264eKB, Libra, INTP, Ravenclaw\u264e","protected":false,"verified":false,"followers_count":196,"friends_count":168,"listed_count":3,"favourites_count":5478,"statuses_count":3766,"created_at":"Sat Sep 13 22:32:54 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/617929682395115520\/0LFmlifw.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/617929682395115520\/0LFmlifw.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"2D1E29","profile_text_color":"DB6995","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661339472634613760\/a5t__NEQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661339472634613760\/a5t__NEQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2808257372\/1446509645","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"6057f1e35bcc6c20","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/6057f1e35bcc6c20.json","place_type":"admin","name":"South Carolina","full_name":"South Carolina, USA","country_code":"US","country":"United States","bounding_box":{"type":"Polygon","coordinates":[[[-83.353955,32.046830],[-83.353955,35.215449],[-78.499301,35.215449],[-78.499301,32.046830]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663522448357199873,"id_str":"663522448357199873","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":1024,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663522448357199873,"id_str":"663522448357199873","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":1024,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}}},{"id":663522484830887936,"id_str":"663522484830887936","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOLzjUYAAr_nJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOLzjUYAAr_nJ.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":521,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"medium":{"w":600,"h":305,"resize":"fit"}}},{"id":663522451750449152,"id_str":"663522451750449152","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJ4UU8AArBdd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJ4UU8AArBdd.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":1024,"h":606,"resize":"fit"},"medium":{"w":600,"h":355,"resize":"fit"}}},{"id":663522439779880960,"id_str":"663522439779880960","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJLuUkAAU_gG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJLuUkAAU_gG.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"},"large":{"w":1024,"h":711,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ultsstevetony","name":"tony stark stan","id":2808257372,"id_str":"2808257372","indices":[3,17]}],"symbols":[],"media":[{"id":663522448357199873,"id_str":"663522448357199873","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":1024,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}},"source_status_id":663522486844153856,"source_status_id_str":"663522486844153856","source_user_id":2808257372,"source_user_id_str":"2808257372"}]},"extended_entities":{"media":[{"id":663522448357199873,"id_str":"663522448357199873","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJrrUEAEavj8.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":192,"resize":"fit"},"large":{"w":1024,"h":579,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":339,"resize":"fit"}},"source_status_id":663522486844153856,"source_status_id_str":"663522486844153856","source_user_id":2808257372,"source_user_id_str":"2808257372"},{"id":663522484830887936,"id_str":"663522484830887936","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOLzjUYAAr_nJ.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOLzjUYAAr_nJ.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":521,"resize":"fit"},"small":{"w":340,"h":173,"resize":"fit"},"medium":{"w":600,"h":305,"resize":"fit"}},"source_status_id":663522486844153856,"source_status_id_str":"663522486844153856","source_user_id":2808257372,"source_user_id_str":"2808257372"},{"id":663522451750449152,"id_str":"663522451750449152","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJ4UU8AArBdd.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJ4UU8AArBdd.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":201,"resize":"fit"},"large":{"w":1024,"h":606,"resize":"fit"},"medium":{"w":600,"h":355,"resize":"fit"}},"source_status_id":663522486844153856,"source_status_id_str":"663522486844153856","source_user_id":2808257372,"source_user_id_str":"2808257372"},{"id":663522439779880960,"id_str":"663522439779880960","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTVOJLuUkAAU_gG.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTVOJLuUkAAU_gG.png","url":"https:\/\/t.co\/k1Xg2xnlyQ","display_url":"pic.twitter.com\/k1Xg2xnlyQ","expanded_url":"http:\/\/twitter.com\/ultsstevetony\/status\/663522486844153856\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":236,"resize":"fit"},"medium":{"w":600,"h":416,"resize":"fit"},"large":{"w":1024,"h":711,"resize":"fit"}},"source_status_id":663522486844153856,"source_status_id_str":"663522486844153856","source_user_id":2808257372,"source_user_id_str":"2808257372"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311772692481,"id_str":"663728311772692481","text":"@simoyaaaan \u4ffa\u306e\u4f11\u65e5\u306f\u2461\u756a\u3067\u3059\u306dwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663717193528422401,"in_reply_to_status_id_str":"663717193528422401","in_reply_to_user_id":1461459878,"in_reply_to_user_id_str":"1461459878","in_reply_to_screen_name":"simoyaaaan","user":{"id":1512632826,"id_str":"1512632826","name":"\u5c0f\u677e\u6d69\u5df1","screen_name":"HiroXxx04","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":33,"friends_count":43,"listed_count":0,"favourites_count":7,"statuses_count":232,"created_at":"Thu Jun 13 07:20:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000660470827\/f193300aa2f6e33f63980dffe201381a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000660470827\/f193300aa2f6e33f63980dffe201381a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"simoyaaaan","name":"\u3057\u3082\u3084\u3093","id":1461459878,"id_str":"1461459878","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135659"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797944320,"id_str":"663728311797944320","text":"RT @DunningRandall: @csbennett55 @Westxgal @Carolin74464142 @rustyprestridge @Pfvincent1 @sweetromance @WayneBogda @dewrag1 https:\/\/t.co\/2A\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2380858166,"id_str":"2380858166","name":"CarolineMaria","screen_name":"Carolin74464142","location":"Cleveland, OH","url":null,"description":"Mom Survivor Warrior Catholic-ish #Assyrian #NRA #2A #MolonLabe #DefundPP #SteelerNation \nNO PC BULLSHIT Concerned with my liberty not your feelings","protected":false,"verified":false,"followers_count":1054,"friends_count":1152,"listed_count":9,"favourites_count":3682,"statuses_count":2780,"created_at":"Sun Mar 09 18:33:22 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662960340099969024\/EDwSlJhk_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662960340099969024\/EDwSlJhk_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2380858166\/1444229094","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:01:46 +0000 2015","id":663672825874518017,"id_str":"663672825874518017","text":"@csbennett55 @Westxgal @Carolin74464142 @rustyprestridge @Pfvincent1 @sweetromance @WayneBogda @dewrag1 https:\/\/t.co\/2ArgymZLx8","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663469454207098880,"in_reply_to_status_id_str":"663469454207098880","in_reply_to_user_id":2789601130,"in_reply_to_user_id_str":"2789601130","in_reply_to_screen_name":"csbennett55","user":{"id":2825364882,"id_str":"2825364882","name":"Randall Dunning","screen_name":"DunningRandall","location":"Garland Texas, Dallas County","url":null,"description":"SREC Committeeman SD 16","protected":false,"verified":false,"followers_count":112,"friends_count":74,"listed_count":9,"favourites_count":118,"statuses_count":1793,"created_at":"Mon Sep 22 01:16:12 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/514617066574581762\/9-cCsXVQ_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/514617066574581762\/9-cCsXVQ_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":1,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"csbennett55","name":"Curtis Bennett","id":2789601130,"id_str":"2789601130","indices":[0,12]},{"screen_name":"Westxgal","name":"CountingWHScandals","id":525954207,"id_str":"525954207","indices":[13,22]},{"screen_name":"Carolin74464142","name":"CarolineMaria","id":2380858166,"id_str":"2380858166","indices":[23,39]},{"screen_name":"rustyprestridge","name":"Rusted_Ideas","id":794863622,"id_str":"794863622","indices":[40,56]},{"screen_name":"Pfvincent1","name":"PFVincent","id":1373358426,"id_str":"1373358426","indices":[57,68]},{"screen_name":"sweetromance","name":"sweetromance","id":16279880,"id_str":"16279880","indices":[69,82]},{"screen_name":"WayneBogda","name":"In Manibus Dei","id":111225697,"id_str":"111225697","indices":[83,94]},{"screen_name":"dewrag1","name":"Billy","id":33529422,"id_str":"33529422","indices":[95,103]}],"symbols":[],"media":[{"id":663672820598071296,"id_str":"663672820598071296","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","url":"https:\/\/t.co\/2ArgymZLx8","display_url":"pic.twitter.com\/2ArgymZLx8","expanded_url":"http:\/\/twitter.com\/DunningRandall\/status\/663672825874518017\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":411,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663672820598071296,"id_str":"663672820598071296","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","url":"https:\/\/t.co\/2ArgymZLx8","display_url":"pic.twitter.com\/2ArgymZLx8","expanded_url":"http:\/\/twitter.com\/DunningRandall\/status\/663672825874518017\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":411,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"DunningRandall","name":"Randall Dunning","id":2825364882,"id_str":"2825364882","indices":[3,18]},{"screen_name":"csbennett55","name":"Curtis Bennett","id":2789601130,"id_str":"2789601130","indices":[20,32]},{"screen_name":"Westxgal","name":"CountingWHScandals","id":525954207,"id_str":"525954207","indices":[33,42]},{"screen_name":"Carolin74464142","name":"CarolineMaria","id":2380858166,"id_str":"2380858166","indices":[43,59]},{"screen_name":"rustyprestridge","name":"Rusted_Ideas","id":794863622,"id_str":"794863622","indices":[60,76]},{"screen_name":"Pfvincent1","name":"PFVincent","id":1373358426,"id_str":"1373358426","indices":[77,88]},{"screen_name":"sweetromance","name":"sweetromance","id":16279880,"id_str":"16279880","indices":[89,102]},{"screen_name":"WayneBogda","name":"In Manibus Dei","id":111225697,"id_str":"111225697","indices":[103,114]},{"screen_name":"dewrag1","name":"Billy","id":33529422,"id_str":"33529422","indices":[115,123]}],"symbols":[],"media":[{"id":663672820598071296,"id_str":"663672820598071296","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","url":"https:\/\/t.co\/2ArgymZLx8","display_url":"pic.twitter.com\/2ArgymZLx8","expanded_url":"http:\/\/twitter.com\/DunningRandall\/status\/663672825874518017\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":411,"resize":"fit"}},"source_status_id":663672825874518017,"source_status_id_str":"663672825874518017","source_user_id":2825364882,"source_user_id_str":"2825364882"}]},"extended_entities":{"media":[{"id":663672820598071296,"id_str":"663672820598071296","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXW6f7UYAAZ0N7.jpg","url":"https:\/\/t.co\/2ArgymZLx8","display_url":"pic.twitter.com\/2ArgymZLx8","expanded_url":"http:\/\/twitter.com\/DunningRandall\/status\/663672825874518017\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":194,"resize":"fit"},"medium":{"w":600,"h":342,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":720,"h":411,"resize":"fit"}},"source_status_id":663672825874518017,"source_status_id_str":"663672825874518017","source_user_id":2825364882,"source_user_id_str":"2825364882"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781093376,"id_str":"663728311781093376","text":"@ayaka040366 \u5acc\u3060\u7d76\u5bfewwww","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":662977252179578881,"in_reply_to_status_id_str":"662977252179578881","in_reply_to_user_id":877807838,"in_reply_to_user_id_str":"877807838","in_reply_to_screen_name":"ayaka040366","user":{"id":2887172504,"id_str":"2887172504","name":"\u308f\u305f\u3074\u304d\uff20\u307f\u308b\u307d\u3077\u306f\u795e\u623826.27\u9032\u6483","screen_name":"wata_0929","location":"\u4e07\u7aef\u306e\u96a3","url":null,"description":"K\uff70POP\u57a2\uff0a\u9632\u5f3e\u5c11\u5e74\u56e3\uff0a99line\u30c6\u30c6\u3088\u308a\u304a\u308b\u307a\u3093\uff0a\uff0a\u307f\u308b\u307d\u3077\u611b\u65b9 @ayaka040366\uff0a@BTS_twt\u795e\u6238\u4e21\u65e5\u9032\u6483","protected":false,"verified":false,"followers_count":192,"friends_count":210,"listed_count":6,"favourites_count":659,"statuses_count":1867,"created_at":"Sun Nov 02 07:50:48 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/653957162511699968\/bytbAH1v_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/653957162511699968\/bytbAH1v_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2887172504\/1434885488","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ayaka040366","name":"\u3042\u3066\u304d\u3087\u3093@\u307f\u308b\u307d\u3077\u795e\u623826.27","id":877807838,"id_str":"877807838","indices":[0,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311776907264,"id_str":"663728311776907264","text":"@Bakazamu_Hekiho \n\u3078\u304d\u307b\u30fc\u306e\u5199\u771f\u306e\u3068\u304d\u306e\u9854\u304c\u597d\u304d\u3067\u3059\u3001\u3069\u3046\u3057\u3088\u3046\\(\u25e6\u02d9-\u02d9\u25e6)\/","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":388145348,"in_reply_to_user_id_str":"388145348","in_reply_to_screen_name":"Bakazamu_Hekiho","user":{"id":3822921974,"id_str":"3822921974","name":"\u2721\uff76\uff75\uff99\u2721(\uff8f\uff8e\uff84\u63a8\u3057)","screen_name":"00881122foreve1","location":"\u5927\u597d\u304d\u306a\u541b\u306f\u753b\u9762\u306e\u4e2d\u306b","url":null,"description":"\u597d\u304d\u306a\u4eba\u261b@MAHOTONNN \u6d6e\u6c17\u76f8\u624b\u261b\u306f \u3058 \u3081 \u3093 \u6fc3\u3044\u7d61\u307f\u3089\u3076\u3001 \u30d5\u30a9\u30ed\u30d099% \u26a0\ufe0e\u7d61\u307f\u3046\u3056\u3044\u304b\u3082\u3063\u308f\u304d\u3092 \u30bf\u30b1\u30e4\u30ad\u7fd4\u304f\u3093 \u3056\u308f\u304f\u3093 \u304b\u3089\u30ea\u30d7\u8fd4\u3082\u3089\u3048\u305f\u2661\u2661","protected":false,"verified":false,"followers_count":257,"friends_count":312,"listed_count":0,"favourites_count":724,"statuses_count":243,"created_at":"Thu Oct 08 07:25:31 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/652132058945290240\/_e3PgOVx_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/652132058945290240\/_e3PgOVx_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3822921974\/1446988411","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Bakazamu_Hekiho","name":"\u3078\u304d\u307b\u30fc (\u30d0\u30ab\u4f8d)","id":388145348,"id_str":"388145348","indices":[0,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135660"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311793651714,"id_str":"663728311793651714","text":"RT @stick_wens: \u590f\u304c\u6765\u305f\u3063\u3066\u611f\u3058\u30fb\u30fb\u6691\u3044\u03b9(\u00b4\u0414\uff40\u03c5)\uff71\uff82\uff68\uff70\n\n#adult #ero #sex #\u304a\u5c3b #\u4e0b\u7740 #\u30a8\u30c3\u30c1 #\u304a\u3063\u3071\u3044 #\u633f\u5165 http:\/\/t.co\/YbU4QUEpVr","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2492469985,"id_str":"2492469985","name":"\u307e\u3093\u3053","screen_name":"takasukeiijima","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":660,"friends_count":1465,"listed_count":0,"favourites_count":16,"statuses_count":2870,"created_at":"Tue May 13 05:30:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663664666594275328\/vKiHcbb1_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663664666594275328\/vKiHcbb1_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2492469985\/1447064961","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Wed May 27 05:27:34 +0000 2015","id":603432336479227905,"id_str":"603432336479227905","text":"\u590f\u304c\u6765\u305f\u3063\u3066\u611f\u3058\u30fb\u30fb\u6691\u3044\u03b9(\u00b4\u0414\uff40\u03c5)\uff71\uff82\uff68\uff70\n\n#adult #ero #sex #\u304a\u5c3b #\u4e0b\u7740 #\u30a8\u30c3\u30c1 #\u304a\u3063\u3071\u3044 #\u633f\u5165 http:\/\/t.co\/YbU4QUEpVr","source":"\u003ca href=\"http:\/\/janetter.net\/\" rel=\"nofollow\"\u003eJanetter\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":486374812,"id_str":"486374812","name":"\u30a8\u30ad\u30b5\u30a4\u30c8","screen_name":"stick_wens","location":"\u9ec4\u6cc9","url":null,"description":"\u30a8\u30ed\u3044\u306e\u5927\u597d\u304d\u3067\u3059\u266a\u597d\u307f\u306e\u753b\u50cfUP\u4e2d\u5fc3\u3067\u3059\u304c\u3001\u3044\u3064\u3082\u30a2\u30f3\u30c6\u30ca\u30d3\u30f3\u30d3\u30f3\u7acb\u3066\u3066\u307e\u3059\uff01\u3000\u597d\u304d\uff1a\u7f8e\u5c3b\/\u7f8e\u4e73\/\u7f8e\uff8f\uff9d\uff7a\/\uff71\uff85\uff99\/\u7d20\u4eba\/\u6e05\u7d14\/\u4eba\u59bb\/\u719f\u5973\/OL\/\u304a\u59c9\u3055\u3093\/\u5b66\u751f\/ SM\/\u9675\u8fb1\/\u30d5\u30a7\u30c1\/\u5909\u614b\/ \u91ce\u5916\/\u9732\u51fa\/ \u30b3\u30b9\u30d7\u30ec\/\u5236\u670d\/\u4e0b\u7740\/ \u4e71\u4ea4\/3P\/\u9006\u30ec\u30a4\u30d7\/\u75f4\u5973","protected":false,"verified":false,"followers_count":1949,"friends_count":26,"listed_count":15,"favourites_count":0,"statuses_count":1008,"created_at":"Wed Feb 08 07:02:31 +0000 2012","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2735403079\/753d427e3f7c64a5c060d8e5a3c3177a_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2735403079\/753d427e3f7c64a5c060d8e5a3c3177a_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":3,"entities":{"hashtags":[{"text":"adult","indices":[25,31]},{"text":"ero","indices":[32,36]},{"text":"sex","indices":[37,41]},{"text":"\u304a\u5c3b","indices":[42,45]},{"text":"\u4e0b\u7740","indices":[46,49]},{"text":"\u30a8\u30c3\u30c1","indices":[50,54]},{"text":"\u304a\u3063\u3071\u3044","indices":[55,60]},{"text":"\u633f\u5165","indices":[61,64]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":603432336407924736,"id_str":"603432336407924736","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","url":"http:\/\/t.co\/YbU4QUEpVr","display_url":"pic.twitter.com\/YbU4QUEpVr","expanded_url":"http:\/\/twitter.com\/stick_wens\/status\/603432336479227905\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":491,"resize":"fit"},"large":{"w":800,"h":655,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":603432336407924736,"id_str":"603432336407924736","indices":[65,87],"media_url":"http:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","url":"http:\/\/t.co\/YbU4QUEpVr","display_url":"pic.twitter.com\/YbU4QUEpVr","expanded_url":"http:\/\/twitter.com\/stick_wens\/status\/603432336479227905\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":491,"resize":"fit"},"large":{"w":800,"h":655,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"adult","indices":[41,47]},{"text":"ero","indices":[48,52]},{"text":"sex","indices":[53,57]},{"text":"\u304a\u5c3b","indices":[58,61]},{"text":"\u4e0b\u7740","indices":[62,65]},{"text":"\u30a8\u30c3\u30c1","indices":[66,70]},{"text":"\u304a\u3063\u3071\u3044","indices":[71,76]},{"text":"\u633f\u5165","indices":[77,80]}],"urls":[],"user_mentions":[{"screen_name":"stick_wens","name":"\u30a8\u30ad\u30b5\u30a4\u30c8","id":486374812,"id_str":"486374812","indices":[3,14]}],"symbols":[],"media":[{"id":603432336407924736,"id_str":"603432336407924736","indices":[81,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","url":"http:\/\/t.co\/YbU4QUEpVr","display_url":"pic.twitter.com\/YbU4QUEpVr","expanded_url":"http:\/\/twitter.com\/stick_wens\/status\/603432336479227905\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":491,"resize":"fit"},"large":{"w":800,"h":655,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"}},"source_status_id":603432336479227905,"source_status_id_str":"603432336479227905","source_user_id":486374812,"source_user_id_str":"486374812"}]},"extended_entities":{"media":[{"id":603432336407924736,"id_str":"603432336407924736","indices":[81,103],"media_url":"http:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CF_Sg0mUEAA4B1q.jpg","url":"http:\/\/t.co\/YbU4QUEpVr","display_url":"pic.twitter.com\/YbU4QUEpVr","expanded_url":"http:\/\/twitter.com\/stick_wens\/status\/603432336479227905\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":491,"resize":"fit"},"large":{"w":800,"h":655,"resize":"fit"},"small":{"w":340,"h":278,"resize":"fit"}},"source_status_id":603432336479227905,"source_status_id_str":"603432336479227905","source_user_id":486374812,"source_user_id_str":"486374812"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135664"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802028032,"id_str":"663728311802028032","text":"@wimper0207 \u30d0\u30ec\u30d0\u30ec\u7b11\u7b11\n\n\u3042\u306e\u30b7\u30e5\u30fc\u30c8\u306f\u30a8\u30ed\u3044\u306d\u3001\u307b\u3093\u3068\u306b","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663728140007575552,"in_reply_to_status_id_str":"663728140007575552","in_reply_to_user_id":2716755594,"in_reply_to_user_id_str":"2716755594","in_reply_to_screen_name":"wimper0207","user":{"id":3016847732,"id_str":"3016847732","name":"\u304d\u3069\u3053\u308d \u3057\u3085\u3046\u3059\u3051","screen_name":"kingnetherland","location":null,"url":null,"description":"La salle \u2192 CST \u6d77\u5efa","protected":false,"verified":false,"followers_count":209,"friends_count":204,"listed_count":0,"favourites_count":4716,"statuses_count":5962,"created_at":"Wed Feb 11 14:28:52 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659463648268562432\/x-FGnU86_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659463648268562432\/x-FGnU86_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3016847732\/1446785391","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"wimper0207","name":"\u307f\u305a\u304d","id":2716755594,"id_str":"2716755594","indices":[0,11]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785230336,"id_str":"663728311785230336","text":"RT @BestBikiniGirls: Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2489201906,"id_str":"2489201906","name":"Jhilmil Colbeck","screen_name":"voxazudupici","location":"Newcastle","url":"https:\/\/www.etsy.com\/listing\/191286550\/50pc-empty-bullet-casings-for-steampunk?ref=shop_home_active_5","description":"50pc Empty Bullet Casings for Steampunk Crafts","protected":false,"verified":false,"followers_count":1440,"friends_count":1926,"listed_count":95,"favourites_count":16393,"statuses_count":88272,"created_at":"Sun May 11 03:21:45 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C6E2EE","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme2\/bg.gif","profile_background_tile":false,"profile_link_color":"1F98C7","profile_sidebar_border_color":"C6E2EE","profile_sidebar_fill_color":"DAECF4","profile_text_color":"663B12","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/473374162145140736\/xyBEvmdb_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/473374162145140736\/xyBEvmdb_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2489201906\/1401696176","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:40:13 +0000 2015","id":663727798029152256,"id_str":"663727798029152256","text":"Amber Arbucci for Dorit Swimwear 2013- Very pretty, but anyone go get this lady... - https:\/\/t.co\/dtD2KnSWp2 https:\/\/t.co\/s1RB0o1Grk","source":"\u003ca href=\"http:\/\/bestgirlsbikinis.com\" rel=\"nofollow\"\u003eBest Girls Bikini Blast\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3214483853,"id_str":"3214483853","name":"Best Girls Bikinis","screen_name":"BestBikiniGirls","location":"Las Vegas, NV","url":"http:\/\/www.bestgirlsbikinis.com","description":"Created in 2015 to support the millions of bikini fans who are passionate about watching bikini contests and the latest fashion bikini trends.","protected":false,"verified":false,"followers_count":101628,"friends_count":1440,"listed_count":9,"favourites_count":0,"statuses_count":2290,"created_at":"Mon Apr 27 18:14:37 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/655221908888129536\/APh4igDc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3214483853\/1445052065","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1087,"favorite_count":666,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[86,109]}],"user_mentions":[],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[110,133],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/dtD2KnSWp2","expanded_url":"http:\/\/bestgirlsbikinis.com\/amber-arbucci-for-dorit-swimwear-2013-very-pretty-but-anyone-go-get-this-lady\/","display_url":"bestgirlsbikinis.com\/amber-arbucci-\u2026","indices":[107,130]}],"user_mentions":[{"screen_name":"BestBikiniGirls","name":"Best Girls Bikinis","id":3214483853,"id_str":"3214483853","indices":[3,19]}],"symbols":[],"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"extended_entities":{"media":[{"id":663727797932699648,"id_str":"663727797932699648","indices":[139,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYI6mdUsAAHoXM.jpg","url":"https:\/\/t.co\/s1RB0o1Grk","display_url":"pic.twitter.com\/s1RB0o1Grk","expanded_url":"http:\/\/twitter.com\/BestBikiniGirls\/status\/663727798029152256\/photo\/1","type":"photo","sizes":{"small":{"w":233,"h":680,"resize":"fit"},"large":{"w":411,"h":1195,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":411,"h":1195,"resize":"fit"}},"source_status_id":663727798029152256,"source_status_id_str":"663727798029152256","source_user_id":3214483853,"source_user_id_str":"3214483853"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311768514564,"id_str":"663728311768514564","text":"\u0e1a\u0e2d\u0e01\u0e2d\u0e30\u0e44\u0e23\u0e44\u0e1b\u0e40\u0e04\u0e22\u0e43\u0e2a\u0e48\u0e43\u0e08\u0e01\u0e31\u0e19\u0e1a\u0e49\u0e32\u0e07\u0e21\u0e31\u0e49\u0e22!","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1173807708,"id_str":"1173807708","name":"\u2728\u0e1a\u0e35\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e0b\u0e31\u0e07 '\u0e2a\u0e15\u0e23\u0e2d\u0e07'","screen_name":"Jidapha_Sorus","location":" \u263b Thailand : Land Of Smiles \u263b","url":"http:\/\/writer.dek-d.com\/532160742\/writer\/view.php?id=1237938","description":"It's Mook! \u10e6 Belieber + Directioner \u10e6 | \u0e2d\u0e20\u0e34\u0e21\u0e2b\u0e32\u0e15\u0e34\u0e48\u0e07\u0e1d\u0e23\u0e31\u0e48\u0e07 \u0e1c\u0e39\u0e49\u0e04\u0e25\u0e31\u0e48\u0e071D \u0e41\u0e25\u0e30\u0e21\u0e35\u0e2a\u0e32\u0e21\u0e35\u0e0a\u0e37\u0e48\u0e2d\u0e08\u0e31\u0e2a\u0e15\u0e34\u0e19 \u0e1a\u0e35\u0e40\u0e1a\u0e2d\u0e23\u0e4c | \/Fifth Harmony\/Little Mix\/5sos\/ \u2740 1D Always 5\/5 \u2740","protected":false,"verified":false,"followers_count":527,"friends_count":306,"listed_count":4,"favourites_count":9133,"statuses_count":16504,"created_at":"Wed Feb 13 03:54:23 +0000 2013","utc_offset":25200,"time_zone":"Bangkok","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"0099B9","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme4\/bg.gif","profile_background_tile":false,"profile_link_color":"0099B9","profile_sidebar_border_color":"5ED4DC","profile_sidebar_fill_color":"95E8EC","profile_text_color":"3C3940","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662985471501320192\/yN5Z2_Z5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662985471501320192\/yN5Z2_Z5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1173807708\/1446811589","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"th","timestamp_ms":"1447080135658"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785291777,"id_str":"663728311785291777","text":"RT @ArtDevoted: https:\/\/t.co\/cgBpOXG3Cb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1302889818,"id_str":"1302889818","name":"\u0623\u0641\u064a\u0642\u0647","screen_name":"SyuhadaAfiqah","location":"Dunia yg penuh Dusta ","url":null,"description":"tengah mengejar impian yang masih samar-2 dihadapan . Doakan diri ini berjaya !","protected":false,"verified":false,"followers_count":558,"friends_count":1353,"listed_count":0,"favourites_count":1716,"statuses_count":15528,"created_at":"Tue Mar 26 07:34:53 +0000 2013","utc_offset":28800,"time_zone":"Kuala Lumpur","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"6B4B9C","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/453762461653426176\/f5G48HaI.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/453762461653426176\/f5G48HaI.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663389142361903105\/rmIOsxZs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663389142361903105\/rmIOsxZs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1302889818\/1443538284","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Oct 25 22:02:55 +0000 2015","id":658403390817488900,"id_str":"658403390817488900","text":"https:\/\/t.co\/cgBpOXG3Cb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":658052225214844928,"in_reply_to_status_id_str":"658052225214844928","in_reply_to_user_id":3863813956,"in_reply_to_user_id_str":"3863813956","in_reply_to_screen_name":"ArtDevoted","user":{"id":3863813956,"id_str":"3863813956","name":"Art","screen_name":"ArtDevoted","location":"*CONTENT POSTED IS NOT MINE*","url":null,"description":"Devoted to the Art | dm to submit or credit a post","protected":false,"verified":false,"followers_count":15299,"friends_count":0,"listed_count":29,"favourites_count":0,"statuses_count":90,"created_at":"Sun Oct 04 17:48:03 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663686074301087744\/ZZPAVY2b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663686074301087744\/ZZPAVY2b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3863813956\/1445963653","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1411,"favorite_count":1462,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":656231412178153472,"id_str":"656231412178153472","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"}]},"extended_entities":{"media":[{"id":656231412178153472,"id_str":"656231412178153472","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231418498932736,"id_str":"656231418498932736","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_44UYAAWdlX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_44UYAAWdlX.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":582,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":582,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231416972230656,"id_str":"656231416972230656","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_zMUwAAPAgW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_zMUwAAPAgW.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231420763897856,"id_str":"656231420763897856","indices":[0,23],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtnABUVAAAFNM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtnABUVAAAFNM0.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":600,"h":597,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"ArtDevoted","name":"Art","id":3863813956,"id_str":"3863813956","indices":[3,14]}],"symbols":[],"media":[{"id":656231412178153472,"id_str":"656231412178153472","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"}]},"extended_entities":{"media":[{"id":656231412178153472,"id_str":"656231412178153472","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_hVU8AA2J_5.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":340,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":640,"h":640,"resize":"fit"},"medium":{"w":600,"h":600,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231418498932736,"id_str":"656231418498932736","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_44UYAAWdlX.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_44UYAAWdlX.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":582,"resize":"fit"},"small":{"w":340,"h":329,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":582,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231416972230656,"id_str":"656231416972230656","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtm_zMUwAAPAgW.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtm_zMUwAAPAgW.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":339,"resize":"fit"},"medium":{"w":600,"h":599,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":600,"h":599,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"},{"id":656231420763897856,"id_str":"656231420763897856","indices":[16,39],"media_url":"http:\/\/pbs.twimg.com\/media\/CRtnABUVAAAFNM0.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CRtnABUVAAAFNM0.jpg","url":"https:\/\/t.co\/cgBpOXG3Cb","display_url":"pic.twitter.com\/cgBpOXG3Cb","expanded_url":"http:\/\/twitter.com\/myartfulmind\/status\/656231452590391297\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":597,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":338,"resize":"fit"},"large":{"w":600,"h":597,"resize":"fit"}},"source_status_id":656231452590391297,"source_status_id_str":"656231452590391297","source_user_id":3220299185,"source_user_id_str":"3220299185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764316160,"id_str":"663728311764316160","text":"RT @TsuyoshiWood: \u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":382947368,"id_str":"382947368","name":"\u6885\u6fa4\u3063\u3066\u4e0b\u306e\u540d\u524d\u306a\u306b\uff1f","screen_name":"umesyann_syann","location":"\u3053\u3053\u3060\u3088\u3001\u3053\u3053","url":null,"description":"RHCP\/MUSE\u3000\u5c71\u9ad83\u5e74\n\u30d9\u30fc\u30b9\u3000\u30ea\u30cf\u30d3\u30ea\u4e2d\u3000\u6625\u304b\u3089\u5c1a\u7f8eMC show may!\u3000\u3046\u308b\u3055\u3044\u3068\u3044\u3046\u304b\u3001\u88cf\u3068\u3044\u3046\u304b\u2192@umesyann_17 \u958b\u653e\u4e2d","protected":false,"verified":false,"followers_count":366,"friends_count":378,"listed_count":2,"favourites_count":26380,"statuses_count":44311,"created_at":"Sat Oct 01 00:16:50 +0000 2011","utc_offset":28800,"time_zone":"Irkutsk","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0000FF","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/645616904879497216\/ZDhaSNi7_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/645616904879497216\/ZDhaSNi7_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/382947368\/1425216057","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:16:13 +0000 2015","id":663721760114651136,"id_str":"663721760114651136","text":"\u3010\u6f2b\u753b\u65e5\u8a18\u3011\u732b\u3063\u3066\u9a5a\u3044\u305f\u9854\u3059\u308b\u3093\u3060\nhttps:\/\/t.co\/unnqzzODN7 https:\/\/t.co\/wWgEcgHtIb","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2472381668,"id_str":"2472381668","name":"\u9d3b\u6c60\u3000\u525b","screen_name":"TsuyoshiWood","location":null,"url":"http:\/\/woodbook.xyz","description":"(\u3053\u3046\u306e\u3044\u3051 \u3064\u3088\u3057)\u3067\u3059\u3002\u6f2b\u753b\u63cf\u3044\u3066\u307e\u3059\u3002\u30a6\u30c3\u30c9\u30d6\u30c3\u30af(\u6f2b\u753b\u65e5\u8a18) http:\/\/woodbook.xyz \u4ed5\u4e8b\u60c5\u5831 http:\/\/goo.gl\/g2oKv6 \u30ea\u30d7\u30e9\u30a4\u898b\u3055\u305b\u3066\u3044\u305f\u3060\u3044\u3066\u307e\u3059\u304c\u3042\u307e\u308a\u8fd4\u4e8b\u3067\u304d\u3066\u307e\u305b\u3093\u3002\u6f2b\u753b\u306e\u7121\u65ad\u8ee2\u8f09\u306f\u3054\u9060\u616e\u304f\u3060\u3055\u3044\u3002","protected":false,"verified":false,"followers_count":513974,"friends_count":168,"listed_count":6383,"favourites_count":400,"statuses_count":5282,"created_at":"Thu May 01 11:52:14 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/461904144165380096\/WIfU4lnY_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":10973,"favorite_count":13281,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[18,41]}],"user_mentions":[],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[42,65],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/unnqzzODN7","expanded_url":"http:\/\/woodbook.xyz\/archives\/3057\/","display_url":"woodbook.xyz\/archives\/3057\/","indices":[36,59]}],"user_mentions":[{"screen_name":"TsuyoshiWood","name":"\u9d3b\u6c60\u3000\u525b","id":2472381668,"id_str":"2472381668","indices":[3,16]}],"symbols":[],"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"extended_entities":{"media":[{"id":663720596421918720,"id_str":"663720596421918720","indices":[60,83],"media_url":"http:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTYCXavWwAAgUdF.png","url":"https:\/\/t.co\/wWgEcgHtIb","display_url":"pic.twitter.com\/wWgEcgHtIb","expanded_url":"http:\/\/twitter.com\/TsuyoshiWood\/status\/663721760114651136\/photo\/1","type":"photo","sizes":{"large":{"w":600,"h":1720,"resize":"fit"},"small":{"w":237,"h":680,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":418,"h":1200,"resize":"fit"}},"source_status_id":663721760114651136,"source_status_id_str":"663721760114651136","source_user_id":2472381668,"source_user_id_str":"2472381668"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785365504,"id_str":"663728311785365504","text":"Not in the mood.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1880960030,"id_str":"1880960030","name":"\u303d\ufe0f","screen_name":"aaaaayyyyaaM","location":null,"url":null,"description":"T&F","protected":false,"verified":false,"followers_count":904,"friends_count":661,"listed_count":1,"favourites_count":1000,"statuses_count":3032,"created_at":"Wed Sep 18 21:34:54 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661216954624172032\/1osAryOe_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661216954624172032\/1osAryOe_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1880960030\/1441226834","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785254912,"id_str":"663728311785254912","text":"RT @sarcasm_kor: \uc0ac\ub78c\uc744 \ud568\ubd80\ub85c \ud310\ub2e8\ud574\uc11c\ub294 \uc548 \ub418\ub294 \uc774\uc720 http:\/\/t.co\/zGHL0m8TXO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1054720093,"id_str":"1054720093","name":"\ud558\ub8e8(\ubbf8\uc628)","screen_name":"gkfnahs","location":null,"url":null,"description":"\uc2ec\uac01\ud55c \uc7a1\ub355+\uc62c\ub77c\uc6b4\ub4dc\/*\uc9c0\ub8b0\u119e\ub9ac\ubc84 X\/*\uae00\u119e\uadf8\ub9bc \uba40\ud2f0\uc778\/*\uc54c\ud2f0\uc694\uc815\/*\ud314\ub85c \uc2dc \uba58\uc158\ud574\uc8fc\uc138\uc694\/\uc5f0\uc131\ud558\uace0 \uc2f6\uc740 \uac83\ub9cc \uc5f0\uc131\/\n\uc370 \uacc4\uc815@wjstjdud55","protected":false,"verified":false,"followers_count":89,"friends_count":135,"listed_count":2,"favourites_count":3051,"statuses_count":37686,"created_at":"Wed Jan 02 10:13:58 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662035384776323074\/roEF2sWj_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662035384776323074\/roEF2sWj_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1054720093\/1446676509","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sat May 03 04:10:27 +0000 2014","id":462444047269765120,"id_str":"462444047269765120","text":"\uc0ac\ub78c\uc744 \ud568\ubd80\ub85c \ud310\ub2e8\ud574\uc11c\ub294 \uc548 \ub418\ub294 \uc774\uc720 http:\/\/t.co\/zGHL0m8TXO","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2365167097,"id_str":"2365167097","name":"\ud48d\uc790\ubd07 (Sarcasm Kor.)","screen_name":"sarcasm_kor","location":null,"url":"http:\/\/ask.fm\/sarcasm_bot","description":"Sarcasm=\ud48d\uc790, \ube44\uaf2c\uae30 \ub77c\ub294 \ub73b\uc785\ub2c8\ub2e4. @Sarcasmpage \uc758 \ud55c\uad6d\ubc88\uc5ed\uacc4\uc815 \ud5e4\ub354\uc81c\uacf5: @KK_dal","protected":false,"verified":false,"followers_count":18980,"friends_count":1,"listed_count":152,"favourites_count":1,"statuses_count":1805,"created_at":"Fri Feb 28 06:08:24 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2365167097\/1396778764","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":4726,"favorite_count":1144,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":462444043406831617,"id_str":"462444043406831617","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","url":"http:\/\/t.co\/zGHL0m8TXO","display_url":"pic.twitter.com\/zGHL0m8TXO","expanded_url":"http:\/\/twitter.com\/sarcasm_kor\/status\/462444047269765120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":764,"resize":"fit"},"small":{"w":340,"h":433,"resize":"fit"},"large":{"w":716,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"extended_entities":{"media":[{"id":462444043406831617,"id_str":"462444043406831617","indices":[22,44],"media_url":"http:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","url":"http:\/\/t.co\/zGHL0m8TXO","display_url":"pic.twitter.com\/zGHL0m8TXO","expanded_url":"http:\/\/twitter.com\/sarcasm_kor\/status\/462444047269765120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":764,"resize":"fit"},"small":{"w":340,"h":433,"resize":"fit"},"large":{"w":716,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"sarcasm_kor","name":"\ud48d\uc790\ubd07 (Sarcasm Kor.)","id":2365167097,"id_str":"2365167097","indices":[3,15]}],"symbols":[],"media":[{"id":462444043406831617,"id_str":"462444043406831617","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","url":"http:\/\/t.co\/zGHL0m8TXO","display_url":"pic.twitter.com\/zGHL0m8TXO","expanded_url":"http:\/\/twitter.com\/sarcasm_kor\/status\/462444047269765120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":764,"resize":"fit"},"small":{"w":340,"h":433,"resize":"fit"},"large":{"w":716,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":462444047269765120,"source_status_id_str":"462444047269765120","source_user_id":2365167097,"source_user_id_str":"2365167097"}]},"extended_entities":{"media":[{"id":462444043406831617,"id_str":"462444043406831617","indices":[39,61],"media_url":"http:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/BmruaEfCcAE1uPn.jpg","url":"http:\/\/t.co\/zGHL0m8TXO","display_url":"pic.twitter.com\/zGHL0m8TXO","expanded_url":"http:\/\/twitter.com\/sarcasm_kor\/status\/462444047269765120\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":764,"resize":"fit"},"small":{"w":340,"h":433,"resize":"fit"},"large":{"w":716,"h":912,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"}},"source_status_id":462444047269765120,"source_status_id_str":"462444047269765120","source_user_id":2365167097,"source_user_id_str":"2365167097"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802208257,"id_str":"663728311802208257","text":"Daqui a pouco vou sair de casa para ir ter com a Sara","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1089983100,"id_str":"1089983100","name":"ch\u00e4nel","screen_name":"chansregui","location":null,"url":"http:\/\/alliheardbyyou.tumblr.com","description":"lana del rey the 1975 & fifth harmony.","protected":false,"verified":false,"followers_count":561,"friends_count":213,"listed_count":4,"favourites_count":12894,"statuses_count":46882,"created_at":"Mon Jan 14 19:53:25 +0000 2013","utc_offset":0,"time_zone":"London","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/445985320786354176\/-brhQSoC.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/445985320786354176\/-brhQSoC.png","profile_background_tile":false,"profile_link_color":"696768","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"F6F6F6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662281731379208192\/ptWG2KUw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662281731379208192\/ptWG2KUw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1089983100\/1446943222","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802032128,"id_str":"663728311802032128","text":"RT @juuuupalmz: I cant wait to get a job so I can get my own money and provide for myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2871754329,"id_str":"2871754329","name":"m\u2728","screen_name":"mariaaa_0x","location":"Ansonia","url":null,"description":"dominican","protected":false,"verified":false,"followers_count":300,"friends_count":160,"listed_count":0,"favourites_count":630,"statuses_count":203,"created_at":"Tue Nov 11 04:05:52 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"ABB8C2","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663528427409039360\/esRas_yA_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663528427409039360\/esRas_yA_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2871754329\/1447039387","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:41:02 +0000 2015","id":663728003554410497,"id_str":"663728003554410497","text":"I cant wait to get a job so I can get my own money and provide for myself.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":885184056,"id_str":"885184056","name":"JU \u2763","screen_name":"juuuupalmz","location":null,"url":null,"description":"Forever & Always...2|14\u2764\ufe0f","protected":false,"verified":false,"followers_count":791,"friends_count":236,"listed_count":3,"favourites_count":7639,"statuses_count":37220,"created_at":"Tue Oct 16 20:00:43 +0000 2012","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/690476873\/9ad436480eb26661843fb46bb4083b4e.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/690476873\/9ad436480eb26661843fb46bb4083b4e.jpeg","profile_background_tile":true,"profile_link_color":"0084B4","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662865155752112128\/62k_yTJt_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662865155752112128\/62k_yTJt_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/885184056\/1447074881","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":2,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"juuuupalmz","name":"JU \u2763","id":885184056,"id_str":"885184056","indices":[3,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135666"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781036032,"id_str":"663728311781036032","text":"\u5f8c\u534a\u767a\u72c2\u3059\u308b\u3002\n\n\u300c\u901a\u5e38\u306e\u30ec\u30fc\u30c0\u30fc\u3067\u306f\u3001\u9ad8\u3044\u5468\u6ce2\u6570\u3067\u304d\u308f\u3081\u3066\u5927\u304d\u3044\u96fb\u529b\u3092\u7528\u3044\u3066\u3044\u305f\u305f\u3081\u3001\u3044\u308d\u3044\u308d\u306a\u554f\u984c\u304c\u8d77\u3053\u3063\u3066\u3044\u305f\u304c\u3001SS\u65b9\u5f0f\u3067\u3044\u308d\u3044\u308d\u6539\u5584\u3057\u305f\u3002\u300d https:\/\/t.co\/rQ1lEU4GWB","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":5594322,"id_str":"5594322","name":"9\u6b73","screen_name":"paina","location":"\u30ab\u30a6\u30f3\u30bf\u30fc\u306e\u5965","url":"http:\/\/paina.jp\/","description":"\u300c\u307e\u3061\u306e\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3084\u3055\u3093\u3092\u3081\u3056\u3057\u3066\u3044\u307e\u3059\u3002\u300d\u30fbYCC\u30fbSFC\u30fbNetwork Engineer (\u81ea\u79f0)","protected":false,"verified":false,"followers_count":1498,"friends_count":1318,"listed_count":120,"favourites_count":8525,"statuses_count":36399,"created_at":"Sat Apr 28 13:31:19 +0000 2007","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"9AE4E8","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme16\/bg.gif","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"BDDCAD","profile_sidebar_fill_color":"DDFFCC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/496332981162606593\/ocQqYiuJ_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/496332981162606593\/ocQqYiuJ_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/5594322\/1355144722","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"bc892a7922752d1a","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/bc892a7922752d1a.json","place_type":"city","name":"Sagamihara City Minami Ward","full_name":"Sagamihara-shi Minami, Kanagawa","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[139.364743,35.491846],[139.364743,35.546435],[139.457550,35.546435],[139.457550,35.491846]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/rQ1lEU4GWB","expanded_url":"https:\/\/ja.wikipedia.org\/wiki\/%E3%82%B9%E3%83%9A%E3%82%AF%E3%83%88%E3%83%A9%E3%83%A0%E6%8B%A1%E6%95%A3#cite_ref-2","display_url":"ja.wikipedia.org\/wiki\/%E3%82%B9\u2026","indices":[76,99]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789420544,"id_str":"663728311789420544","text":"7 Tips on What Information to Put on Your Business Card https:\/\/t.co\/4zeMfzDnBn #Freelance #Design","source":"\u003ca href=\"http:\/\/twitterfeed.com\" rel=\"nofollow\"\u003etwitterfeed\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18073898,"id_str":"18073898","name":"Andrew Cunning","screen_name":"iamandycunning","location":"UK","url":"http:\/\/uk.linkedin.com\/pub\/andrew-cunning\/8\/122\/352\/","description":"Andrew Cunning - Creative Director and Technology Enthusiast \/ Copywriter and Designer \/ HarperCollins, Elle Magazine and Various Global Publications.","protected":false,"verified":false,"followers_count":7640,"friends_count":5547,"listed_count":165,"favourites_count":12,"statuses_count":10239,"created_at":"Fri Dec 12 10:19:13 +0000 2008","utc_offset":-36000,"time_zone":"Hawaii","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"33C293","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/496713812104327168\/NijXoQYa.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/496713812104327168\/NijXoQYa.png","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"E8E8E8","profile_text_color":"3D3D3D","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/378800000753081137\/623c04b783acda4b0ff5e137ce696aa2_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/378800000753081137\/623c04b783acda4b0ff5e137ce696aa2_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18073898\/1441288960","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Freelance","indices":[80,90]},{"text":"Design","indices":[91,98]}],"urls":[{"url":"https:\/\/t.co\/4zeMfzDnBn","expanded_url":"http:\/\/bit.ly\/1WM3Ebq","display_url":"bit.ly\/1WM3Ebq","indices":[56,79]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789449217,"id_str":"663728311789449217","text":"RT @playmode_off: \"\ubb34\uc2a8 \uc0ac\uc815\uc778\uc9c0 \ubb3b\uc9c4 \ubabb\ud558\uad6c \ub098\ub3c4 \ubd95\uc5b4\ube75 \ud30c\ub294 \uc8fc\uc81c\uc5d0 \ubb34\uc2a8 \ub9d0 \ubabb\ud574\uc8fc\uc9c0\ub9cc \uadf8\ub807\uac8c \uc5bc\uad74 \uc218\uc2ec \uac00\ub4dd\ud558\uba74 \uc81c\uc77c \uba3c\uc800 \ub098\uc05c\ub188\ub4e4\uc774 \ubd88\ud589\uc744 \uc54c\uace0 \ucc3e\uc544\uc640\uc694. \uadf8\ub7f4\ub54c\uc77c\uc218\ub85d \ub4e0\ub4e0\ud558\uac8c \uba39\uace0 \uc5bc\uad74\uc740 \ubed4\ubed4\ud558\uac8c \uc6c3\uace0 \ub2e4\ub140\uc57c\ub3fc\" \ud588\ub2e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":588995799,"id_str":"588995799","name":"\ub9dd\uc0c1\ub0e5\u266a(522385139)","screen_name":"MSNeco","location":"\ud55c \uac78\uc74c \ub4a4\uc5d0\uc11c\/\/\uac19\uc740 \ud558\ub298 \uc544\ub798, \uc791\uc740 \ubcbd \ub108\uba38","url":null,"description":"\uc7a1\ub355\/\ubd80\uc720\ub839\/rt\ucda9\/\uc774\uc0c1\ud568\n\/\/\uc5b8\ub9ac\uc26c\ub4dc\/\ub370\ub808\uc2a4\ud14c\/\ub514\ubaa8\n\/\/\uc7a5\ub798 \ud76c\ub9dd : \ubd80\uc790 \ub2c8\ud2b8 \ub85c\ub9ac\n\/\/\ud504\uc0ac : \uc219\uc790\ub2d8(@sorolp)","protected":false,"verified":false,"followers_count":115,"friends_count":278,"listed_count":1,"favourites_count":8430,"statuses_count":77793,"created_at":"Thu May 24 07:16:37 +0000 2012","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ko","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/631613313084866561\/SAaoN3tw_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/631613313084866561\/SAaoN3tw_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/588995799\/1442284166","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Fri Mar 20 04:38:13 +0000 2015","id":578777541520949248,"id_str":"578777541520949248","text":"\"\ubb34\uc2a8 \uc0ac\uc815\uc778\uc9c0 \ubb3b\uc9c4 \ubabb\ud558\uad6c \ub098\ub3c4 \ubd95\uc5b4\ube75 \ud30c\ub294 \uc8fc\uc81c\uc5d0 \ubb34\uc2a8 \ub9d0 \ubabb\ud574\uc8fc\uc9c0\ub9cc \uadf8\ub807\uac8c \uc5bc\uad74 \uc218\uc2ec \uac00\ub4dd\ud558\uba74 \uc81c\uc77c \uba3c\uc800 \ub098\uc05c\ub188\ub4e4\uc774 \ubd88\ud589\uc744 \uc54c\uace0 \ucc3e\uc544\uc640\uc694. \uadf8\ub7f4\ub54c\uc77c\uc218\ub85d \ub4e0\ub4e0\ud558\uac8c \uba39\uace0 \uc5bc\uad74\uc740 \ubed4\ubed4\ud558\uac8c \uc6c3\uace0 \ub2e4\ub140\uc57c\ub3fc\" \ud588\ub2e4.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":578776908084588546,"in_reply_to_status_id_str":"578776908084588546","in_reply_to_user_id":167059014,"in_reply_to_user_id_str":"167059014","in_reply_to_screen_name":"playmode_off","user":{"id":167059014,"id_str":"167059014","name":"\uaf43\uac1c","screen_name":"playmode_off","location":null,"url":null,"description":"\uc774\uc6c3\uc9d1\ub808\uc8fc\u2728\u65e5\u672c\u8a9e\u5c11\u3057\u3067\u304d\u307e\u3059!(\u043e\u00b4\u2200`\u043e)","protected":false,"verified":false,"followers_count":3976,"friends_count":353,"listed_count":44,"favourites_count":1117,"statuses_count":69003,"created_at":"Thu Jul 15 17:12:55 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"000000","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/616510122295033856\/yB7kcduZ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/616510122295033856\/yB7kcduZ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/167059014\/1437390315","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5544,"favorite_count":1525,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"playmode_off","name":"\uaf43\uac1c","id":167059014,"id_str":"167059014","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ko","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311797858304,"id_str":"663728311797858304","text":"\u8ab0\u3067\u3082\u3044\u3044\u304b\u3089\u6687\u306a\u4eba\u3044\u306a\u3044\u304b\u30fc\uff1f","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3291862544,"id_str":"3291862544","name":"\u4e2d\u6751\u30eb\u30fc\u30ab\u30b9\u5149\u7537","screen_name":"nakalucas1020","location":null,"url":null,"description":"\u3076\u3061\u304b\u307e\u3059","protected":false,"verified":false,"followers_count":106,"friends_count":109,"listed_count":0,"favourites_count":81,"statuses_count":102,"created_at":"Sat Jul 25 04:48:33 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/624840788384481280\/g5_TtZPf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/624840788384481280\/g5_TtZPf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3291862544\/1443093214","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":{"id":"c5aec53afff09fde","url":"https:\/\/api.twitter.com\/1.1\/geo\/id\/c5aec53afff09fde.json","place_type":"city","name":"\u795e\u6816\u5e02","full_name":"\u8328\u57ce\u770c \u795e\u6816\u5e02","country_code":"JP","country":"\u65e5\u672c","bounding_box":{"type":"Polygon","coordinates":[[[140.613949,35.718937],[140.613949,35.954994],[140.881775,35.954994],[140.881775,35.718937]]]},"attributes":{}},"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135665"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764299776,"id_str":"663728311764299776","text":"In sports you don't get what you wish for, you get what you work for","source":"\u003ca href=\"https:\/\/twitter.com\" rel=\"nofollow\"\u003etautmurderous_new\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":317315680,"id_str":"317315680","name":"Olive Campbell","screen_name":"tautmurderous","location":"Oklahoma City\r","url":null,"description":"Coffee fanatic. Typical introvert. Certified travel ninja. Professional pop culture enthusiast.","protected":false,"verified":false,"followers_count":2982,"friends_count":2600,"listed_count":11,"favourites_count":0,"statuses_count":4328,"created_at":"Tue Jun 14 19:11:11 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme9\/bg.gif","profile_background_tile":false,"profile_link_color":"89C9FA","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/551471125977235458\/UXa4qV_S_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/551471125977235458\/UXa4qV_S_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/317315680\/1420315961","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311781076992,"id_str":"663728311781076992","text":"\u3010MAD\u3011\u3044\u3064\u304b\u306e\u7a7a\u3068\u540c\u3058 \u3010\u51ea\u306e\u3042\u3059\u304b\u3089\u3011 (4:43) https:\/\/t.co\/rj0a0Li9D8 #sm22800776\n\u6d99\u3068\u9ce5\u808c\u304c\u3084\u3070\u3044","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":113243624,"id_str":"113243624","name":"\u304a\u3060\u3061@\u30df\u30ea3rd\u540d\u53e4\u4ed9\u53f0\u5927\u962a\uff06\u5e55\u5f35\u4e21\u65e5","screen_name":"yasu_ha12","location":"\u6771\u4eac23\u533a","url":null,"description":"\u718a\u672c\u770c\u51fa\u8eab\u3002\u5927\u962a\u306e\u5927\u5b66\u51fa\u3066\u304b\u3089\u306f\u30b9\u30fc\u30d1\u30fc\u3067\u30d1\u30f3\u3092\u4f5c\u3063\u305f\u308a\u3001\u30a2\u30cb\u30e1\u5236\u4f5c\u4f1a\u793e\u3067\u5236\u4f5c\u9032\u884c\u3057\u305f\u308a\u3001\u4eca\u306f\u306a\u3093\u3068\u306a\u304f\u6771\u4eac\u306e\u4e00\u822c\u4f01\u696d\u3067\u50cd\u304f\u5909\u306a\u4eba\u3002\u30a2\u30a4\u30de\u30b9P\u3002\u30c7\u30ec\u2192\u307f\u304fP\u30e6\u30c3\u30b3P\u6642\u3005\u7f8e\u5609P\u3001\u30df\u30ea\u2192\u674f\u5948P\u672a\u6765P","protected":false,"verified":false,"followers_count":61,"friends_count":144,"listed_count":2,"favourites_count":214,"statuses_count":4197,"created_at":"Thu Feb 11 04:40:39 +0000 2010","utc_offset":32400,"time_zone":"Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme17\/bg.gif","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654482896082722816\/Y1UpXyrq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654482896082722816\/Y1UpXyrq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/113243624\/1445524002","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sm22800776","indices":[54,65]}],"urls":[{"url":"https:\/\/t.co\/rj0a0Li9D8","expanded_url":"http:\/\/nico.ms\/sm22800776","display_url":"nico.ms\/sm22800776","indices":[30,53]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135661"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311789449216,"id_str":"663728311789449216","text":"\u3053\u306e\u611f\u52d5\u3092\u672c\u57a2\u3067\u3082\u4f1d\u3048\u3055\u305b\u3066","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1477129664,"id_str":"1477129664","name":"\u304b\u3093\u308d","screen_name":"kanro370","location":"\u4e07\u7d21\u306e\u5bdd\u308b\u5e03\u56e3\u306e\u4e0b","url":"http:\/\/twpf.jp\/kanro370","description":"\u8208\u6d25\u548c\u5e78\u3055\u3093\u304c\u5927\u597d\u304d\u3067\u3059\u25bd\u30a2\u30a4\u30ca\u30ca\u306f\u3053\u3063\u3061(@kan_i7)","protected":false,"verified":false,"followers_count":856,"friends_count":478,"listed_count":108,"favourites_count":32746,"statuses_count":76174,"created_at":"Sun Jun 02 11:47:38 +0000 2013","utc_offset":32400,"time_zone":"Seoul","geo_enabled":false,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"DD2E44","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663395224614387713\/n3EUAKwk_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663395224614387713\/n3EUAKwk_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1477129664\/1447001780","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135663"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311785291776,"id_str":"663728311785291776","text":"Just completed a 12.00 km run with Runkeeper. Check it out! https:\/\/t.co\/IqeFB7bI56 #Runkeeper","source":"\u003ca href=\"http:\/\/runkeeper.com\" rel=\"nofollow\"\u003eRunkeeper\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":246707627,"id_str":"246707627","name":"Nick Guldemond","screen_name":"nickguldemond","location":"Utrecht\/The Hague","url":null,"description":"Integrated Care & Technology @UMCUtrecht CEO&founder Medical Field Lab working on innovation and business development","protected":false,"verified":false,"followers_count":1587,"friends_count":2007,"listed_count":135,"favourites_count":10,"statuses_count":7520,"created_at":"Thu Feb 03 09:24:08 +0000 2011","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/210141743\/scanneg-1_red.JPG","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/210141743\/scanneg-1_red.JPG","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/1233529886\/nick2_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/1233529886\/nick2_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"Runkeeper","indices":[84,94]}],"urls":[{"url":"https:\/\/t.co\/IqeFB7bI56","expanded_url":"http:\/\/rnkpr.com\/abea1lu","display_url":"rnkpr.com\/abea1lu","indices":[60,83]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135662"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311776976896,"id_str":"663728311776976896","text":"Look what i found on @KaymuNigeria: https:\/\/t.co\/eGE20rngf2","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3326842979,"id_str":"3326842979","name":"Dogs Profile","screen_name":"DogsProfile","location":"Nigeria","url":"http:\/\/www.dogsprofiles.com","description":null,"protected":false,"verified":false,"followers_count":201,"friends_count":272,"listed_count":0,"favourites_count":4,"statuses_count":219,"created_at":"Mon Jun 15 12:21:49 +0000 2015","utc_offset":3600,"time_zone":"West Central Africa","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650142240334082048\/wKnlQlGf_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650142240334082048\/wKnlQlGf_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3326842979\/1434371397","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/eGE20rngf2","expanded_url":"https:\/\/www.kaymu.com.ng\/pet-tabs-advanced-formula-770398.html?utm_medium=social_sharing&utm_content=OT694AFAQIFYNGBID&utm_campaign=desktop_product&utm_source=twitter","display_url":"kaymu.com.ng\/pet-tabs-advan\u2026","indices":[37,60]}],"user_mentions":[{"screen_name":"KaymuNigeria","name":"Kaymu Nigeria","id":971531234,"id_str":"971531234","indices":[21,34]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447080135660"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311764430848,"id_str":"663728311764430848","text":"RT @almalk2322: \u0625\u0630\u0627 \u062a\u0640\ufba9\u062a \u0648\u0644\u0645 \u062a\u062c\u062f \u0645\u0631\u0641\u0623 \u0623\u0645\u0622\u0646 \u062a\u0626\u0645\u0644 \u0627\u0644\u0628\u0631\u0627\u0626\u0647 \u0641\u064a \u0639\u064a\u0648\u0646 \u0627\u0644\u0623\u0637\u0641\u0627\u0644 \u0641\u0647\u064a \u0628\u0645\u062b\u0627\u0628\u0647 \u0648\u0637\u0646 \u0635\u0628\u0627\u062d\u0640\u06aa\u0640\u0645 \u0628\u0640\u0631\u0627\u0626\u0640\ufba7\u0629 \u0627\u0644\u0637\u0640\u0641\u0648\u0644\u0640\ufba7 https:\/\/t.co\/e9K6Qalr3u","source":"\u003ca href=\"http:\/\/twitter.com\/#!\/download\/ipad\" rel=\"nofollow\"\u003eTwitter for iPad\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2842570483,"id_str":"2842570483","name":"&\u0627\u0633\u064a\u0631\u0647 \u0641\u064a \u062d\u0628 \u0627\u0644\u062d\u0633\u064a\u0646&","screen_name":"Bb__S__M","location":"\u0628\u0644\u0648\u0643 \u0627\u0644\u062e\u0627\u0635 \u0645\u0645\u0646\u0648\u0639 \u0631\u062c\u0627\u0621\u0627 ","url":null,"description":"\u0627\u0646\u062a ** \u062a\u0645\u0634\u064a ** \u0628\u0627\u0644\u0648\u0631\u064a\u062f** \u062d\u0633\u064a\u0646 ** \u0645\u0627 ** \u064a\u0646\u0642\u0635 ** \u064a\u0632\u064a\u062f**&** \u0645\u0646 ** \u0627\u0630\u0643\u0631\u0643 **\u0628\u0627\u0644\u0634\u062f\u0627\u064a\u062f ** \u0631\u0648\u062d\u064a** \u062a\u0631\u062c\u0639 ** \u0645\u0646 ** \u062c\u062f\u064a\u062f ** &&& ** \u0644\u0627 \u064a\u0648\u0645 \u0643\u064a\u0648\u0645\u0643 \u064a\u0627 \u0627\u0628\u0627 \u0639\u0628\u062f \u0644\u0644\u0647 \u0627\u0644\u062d\u0633\u064a\u0646 ::","protected":false,"verified":false,"followers_count":4384,"friends_count":281,"listed_count":5,"favourites_count":11159,"statuses_count":16084,"created_at":"Mon Oct 06 16:56:25 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663480758301016064\/6r97U3QQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663480758301016064\/6r97U3QQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2842570483\/1445466497","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 05:36:14 +0000 2015","id":663590902577930240,"id_str":"663590902577930240","text":"\u0625\u0630\u0627 \u062a\u0640\ufba9\u062a \u0648\u0644\u0645 \u062a\u062c\u062f \u0645\u0631\u0641\u0623 \u0623\u0645\u0622\u0646 \u062a\u0626\u0645\u0644 \u0627\u0644\u0628\u0631\u0627\u0626\u0647 \u0641\u064a \u0639\u064a\u0648\u0646 \u0627\u0644\u0623\u0637\u0641\u0627\u0644 \u0641\u0647\u064a \u0628\u0645\u062b\u0627\u0628\u0647 \u0648\u0637\u0646 \u0635\u0628\u0627\u062d\u0640\u06aa\u0640\u0645 \u0628\u0640\u0631\u0627\u0626\u0640\ufba7\u0629 \u0627\u0644\u0637\u0640\u0641\u0648\u0644\u0640\ufba7 https:\/\/t.co\/e9K6Qalr3u","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2856919080,"id_str":"2856919080","name":"\u0627\u0644\u0645\u0644\u0643","screen_name":"almalk2322","location":"\u0627\u0644\u0639\u0631\u0627\u0642. \u0630\u064a \u0642\u0627\u0631 ","url":null,"description":"\u0634\u0643\u0631\u0627 \u0639 \u0627\u0644\u0627\u0636\u0627\u0641\u0647 \n\n\u0627\u0646\u0627 \u0644\u0627 \u0623\u0643\u062a\u0628 \u0644\u0627\u0635\u0628\u062d \u0645\u0634\u0647\u0648\u0631\u0622 \u0648\u0644\u0627 \u0644\u0627\u062c\u0645\u0639 \u0627\u0644\u0627\u0639\u062c\u0627\u0628\u0627\u062a\n\u0623\u0646\u0627 \u0623\u0643\u062a\u0628 \u0644\u0643\u064a \u0623\u062a\u0646\u0641\u0633 \u0648\u0627\u062e\u0631\u062c \u0645\u0646 \u062f\u0622\u062e\u0644\u064a \u0628\u0639\u0636 \u0627\u0644\u0623\u0644\u0645. .. \u060c (\u0623\u0633\u0652\u062a\u064e\u063a\u0641\u0650\u0631\u064f \u0627\u0644\u0644\u0651\u0647 )","protected":false,"verified":false,"followers_count":2358,"friends_count":1896,"listed_count":2,"favourites_count":9583,"statuses_count":19447,"created_at":"Wed Oct 15 17:06:13 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660526610932740096\/dWgEeVgh_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660526610932740096\/dWgEeVgh_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2856919080\/1446047093","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":42,"favorite_count":11,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663590900858273792,"id_str":"663590900858273792","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","url":"https:\/\/t.co\/e9K6Qalr3u","display_url":"pic.twitter.com\/e9K6Qalr3u","expanded_url":"http:\/\/twitter.com\/almalk2322\/status\/663590902577930240\/photo\/1","type":"photo","sizes":{"large":{"w":392,"h":533,"resize":"fit"},"small":{"w":340,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":392,"h":533,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663590900858273792,"id_str":"663590900858273792","indices":[99,122],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","url":"https:\/\/t.co\/e9K6Qalr3u","display_url":"pic.twitter.com\/e9K6Qalr3u","expanded_url":"http:\/\/twitter.com\/almalk2322\/status\/663590902577930240\/photo\/1","type":"photo","sizes":{"large":{"w":392,"h":533,"resize":"fit"},"small":{"w":340,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":392,"h":533,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"almalk2322","name":"\u0627\u0644\u0645\u0644\u0643","id":2856919080,"id_str":"2856919080","indices":[3,14]}],"symbols":[],"media":[{"id":663590900858273792,"id_str":"663590900858273792","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","url":"https:\/\/t.co\/e9K6Qalr3u","display_url":"pic.twitter.com\/e9K6Qalr3u","expanded_url":"http:\/\/twitter.com\/almalk2322\/status\/663590902577930240\/photo\/1","type":"photo","sizes":{"large":{"w":392,"h":533,"resize":"fit"},"small":{"w":340,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":392,"h":533,"resize":"fit"}},"source_status_id":663590902577930240,"source_status_id_str":"663590902577930240","source_user_id":2856919080,"source_user_id_str":"2856919080"}]},"extended_entities":{"media":[{"id":663590900858273792,"id_str":"663590900858273792","indices":[115,138],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWMaJHWwAANtNg.jpg","url":"https:\/\/t.co\/e9K6Qalr3u","display_url":"pic.twitter.com\/e9K6Qalr3u","expanded_url":"http:\/\/twitter.com\/almalk2322\/status\/663590902577930240\/photo\/1","type":"photo","sizes":{"large":{"w":392,"h":533,"resize":"fit"},"small":{"w":340,"h":462,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":392,"h":533,"resize":"fit"}},"source_status_id":663590902577930240,"source_status_id_str":"663590902577930240","source_user_id":2856919080,"source_user_id_str":"2856919080"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447080135657"} +{"created_at":"Mon Nov 09 14:42:15 +0000 2015","id":663728311802064897,"id_str":"663728311802064897","text":"@y_dm2j \u305d\u3046\u306a\u306e\ud83d\udcad\u2661\n\u3042\u308a\u304c\u3068\u3046\ud83d\ude2d\ud83d\udc95\ud83d\udc95","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727596933255169,"in_reply_to_status_id_str":"663727596933255169","in_reply_to_user_id":2585803831,"in_reply_to_user_id_str":"2585803831","in_reply_to_screen_name":"y_dm2j","user":{"id":2579563741,"id_str":"2579563741","name":"\u3057\u3087\u3053\u305f\u3093*","screen_name":"ybloveee","location":"\u305d\u3093\u307f\u3093\u307b","url":"http:\/\/instagram.com\/SHOKOTAN074","description":"92line shizuoka \u3046\u3043\u306e\u3053\u3093\u6771\u4eac\u611b\u77e5\n\uff2f\uff4b\uff45\uff59\uff24\uff4f\uff4b\uff45\uff59 \uff59\uff4f","protected":false,"verified":false,"followers_count":70,"friends_count":117,"listed_count":3,"favourites_count":1854,"statuses_count":2195,"created_at":"Sat Jun 21 00:56:09 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/650296920204701696\/-owUj6_j_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/650296920204701696\/-owUj6_j_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2579563741\/1443943691","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"y_dm2j","name":"\uc544\uc988\uc544\uc988","id":2585803831,"id_str":"2585803831","indices":[0,7]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447080135666"} +{"delete":{"status":{"id":629669229508190209,"id_str":"629669229508190209","user_id":3295287206,"user_id_str":"3295287206"},"timestamp_ms":"1447080135879"}} diff --git a/assignment1/problem_1_submission.txt b/assignment1/problem_1_submission.txt new file mode 100644 index 00000000..37cb0dcd --- /dev/null +++ b/assignment1/problem_1_submission.txt @@ -0,0 +1,20 @@ +{"delete":{"status":{"id":663727586183245824,"id_str":"663727586183245824","user_id":2203044308,"user_id_str":"2203044308"},"timestamp_ms":"1447079971504"}} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911186432,"id_str":"663727623911186432","text":"RT @BlanchuSombre: \ud83c\udf1fEntonces te habla el profesor [x: Algun motivo de su retraso se\u00f1orita]\ud83c\udf1f\n\nRt si No quer\u00eda verte el gepeto tal vez\nFav si\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3270308433,"id_str":"3270308433","name":"-69 THE NIGHT!!","screen_name":"merysmilerpaste","location":"Endless Road 7058","url":null,"description":"Auryner de corazon, no de ocasion. un Endless Road junto a ti. Cristina bosca my idol. Auryn y SWC. 19-12-14\u2764\ufe0f\u2764\ufe0f","protected":false,"verified":false,"followers_count":148,"friends_count":222,"listed_count":1,"favourites_count":4159,"statuses_count":4376,"created_at":"Sun May 17 12:47:36 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660418518639357952\/NsJO7_FP_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660418518639357952\/NsJO7_FP_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3270308433\/1443351532","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:39:13 +0000 2015","id":663727548900237312,"id_str":"663727548900237312","text":"\ud83c\udf1fEntonces te habla el profesor [x: Algun motivo de su retraso se\u00f1orita]\ud83c\udf1f\n\nRt si No quer\u00eda verte el gepeto tal vez\nFav si Lo siento sargento","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663726978218987520,"in_reply_to_status_id_str":"663726978218987520","in_reply_to_user_id":1151702341,"in_reply_to_user_id_str":"1151702341","in_reply_to_screen_name":"BlanchuSombre","user":{"id":1151702341,"id_str":"1151702341","name":"BlanChupachups\u270c","screen_name":"BlanchuSombre","location":"Maad \u007bAli\u007d 404km","url":null,"description":"\u2728D\u025b \u029fa \u028da\u057c\u0585 \u0256\u025b C\u0280\u0268st\u0268\u057ca B\u0585s\u010ba, \u0262\u028a\u0268a\u0256as \u0584\u0585\u0280 \u029fa \u028b\u0585\u0290 \u0256\u025b J\u0585ss\u025b\u029f\u028f\u057c\u025b Ga\u029f\u029fa\u0280\u0256\u0585, \u025b\u057c \u026e\u028as\u010ba \u0256\u025b \u057c\u028a\u025bst\u0280\u0585 a\u057c\u0262\u025b\u029f \u0256\u025b \u029fa \u0262\u028aa\u0280\u0256a \u007bC\u0584\u028d\u007d \u2728","protected":false,"verified":false,"followers_count":2758,"friends_count":2255,"listed_count":9,"favourites_count":18939,"statuses_count":28395,"created_at":"Tue Feb 05 18:49:41 +0000 2013","utc_offset":7200,"time_zone":"Athens","geo_enabled":true,"lang":"es","contributors_enabled":false,"is_translator":false,"profile_background_color":"F74ACF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/565480452471795712\/AqhauNa8.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/565480452471795712\/AqhauNa8.jpeg","profile_background_tile":true,"profile_link_color":"FFCC4D","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/660916216220000256\/qT6cqzW-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/660916216220000256\/qT6cqzW-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1151702341\/1446433334","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"BlanchuSombre","name":"BlanChupachups\u270c","id":1151702341,"id_str":"1151702341","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"es","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623906983936,"id_str":"663727623906983936","text":"RT @followtrickjb: Retweet para ganhar seguidores, siga quem retweetou e siga de volta quem te seguiu \u2744","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4145193153,"id_str":"4145193153","name":"maria","screen_name":"secretlovesing","location":null,"url":null,"description":"little mix showed me that I need not be \u201cperfect\u201d to be perfect, if I am who I am it\u2019s already make me the best person I could be","protected":false,"verified":false,"followers_count":74,"friends_count":48,"listed_count":0,"favourites_count":12,"statuses_count":108,"created_at":"Sun Nov 08 23:49:28 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663519718423269380\/r4DOcULy_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663519718423269380\/r4DOcULy_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4145193153\/1447030389","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:31:29 +0000 2015","id":663725599702302720,"id_str":"663725599702302720","text":"Retweet para ganhar seguidores, siga quem retweetou e siga de volta quem te seguiu \u2744","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":553772377,"id_str":"553772377","name":"Projeto Follow Trick","screen_name":"followtrickjb","location":null,"url":"http:\/\/twitter.com\/followtrickjb\/status\/614509814354432002","description":"Ativem as notifica\u00e7\u00f5es para ganhar seguidores f\u00e1cil e r\u00e1pido, siga todos de volta, caso contr\u00e1rio ser\u00e1 bloqueado.","protected":false,"verified":false,"followers_count":130231,"friends_count":17939,"listed_count":780,"favourites_count":56,"statuses_count":28313,"created_at":"Sat Apr 14 19:19:57 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/572949019182104576\/96kzdjbM.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/572949019182104576\/96kzdjbM.png","profile_background_tile":true,"profile_link_color":"4A913C","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/654336871871434752\/0VBtONWc_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/654336871871434752\/0VBtONWc_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/553772377\/1444841017","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":324,"favorite_count":39,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"followtrickjb","name":"Projeto Follow Trick","id":553772377,"id_str":"553772377","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971659"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927947264,"id_str":"663727623927947264","text":"D&R'dan tam 1 hafta \u00f6nce kitap sipari\u015f ettim, hala gelmedi. Bir daha D&R dan kitap alan\u0131 siksinler","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":587417318,"id_str":"587417318","name":"\u015eeytanc\u0131 Evlat Arif","screen_name":"polonyum_","location":"\u0130zmir, Turkey","url":"http:\/\/ask.fm\/polonyum1","description":"Dokuz Eylul University \/ English-German-Turkish Translation & Interpreting","protected":false,"verified":false,"followers_count":341,"friends_count":402,"listed_count":3,"favourites_count":0,"statuses_count":38429,"created_at":"Tue May 22 13:19:19 +0000 2012","utc_offset":10800,"time_zone":"Baghdad","geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000010548087\/e628ff54fc7319c341d7bd2bc56b0097.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000010548087\/e628ff54fc7319c341d7bd2bc56b0097.jpeg","profile_background_tile":true,"profile_link_color":"9266CC","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663307903260954624\/HDoF9JPs_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663307903260954624\/HDoF9JPs_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/587417318\/1445803505","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079971664"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915364352,"id_str":"663727623915364352","text":"RT @VPicV: \u0645\u0635\u0627\u0628\u064a\u062d \u0641\u064a \u0627\u0644\u0642\u062f\u0633 \u0627\u0644\u0645\u062d\u062a\u0644\u0629 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0648\u0631\u0648\u062f \u062a\u0632\u0647\u0631 \u0639\u0646\u062f\u0645\u0627 \u064a\u0642\u062a\u0631\u0628 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635 \u0645\u0646 \u0627\u0644\u0645\u0627\u0631\u0629\u203c\ufe0f\n#\u0625\u0628\u062f\u0627\u0639\n#\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629 https:\/\/t.co\/rka7SCJwFD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1598055889,"id_str":"1598055889","name":"\u0994Norah","screen_name":"n0riy","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":137,"friends_count":94,"listed_count":0,"favourites_count":534,"statuses_count":3304,"created_at":"Tue Jul 16 10:00:50 +0000 2013","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"642D8B","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme10\/bg.gif","profile_background_tile":true,"profile_link_color":"033C6B","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656239637690761216\/qEYSI5t8_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656239637690761216\/qEYSI5t8_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1598055889\/1445294691","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 03:54:47 +0000 2015","id":663565371492990976,"id_str":"663565371492990976","text":"\u0645\u0635\u0627\u0628\u064a\u062d \u0641\u064a \u0627\u0644\u0642\u062f\u0633 \u0627\u0644\u0645\u062d\u062a\u0644\u0629 \u0639\u0644\u0649 \u0634\u0643\u0644 \u0648\u0631\u0648\u062f \u062a\u0632\u0647\u0631 \u0639\u0646\u062f\u0645\u0627 \u064a\u0642\u062a\u0631\u0628 \u0645\u0646\u0647\u0627 \u0634\u062e\u0635 \u0645\u0646 \u0627\u0644\u0645\u0627\u0631\u0629\u203c\ufe0f\n#\u0625\u0628\u062f\u0627\u0639\n#\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629 https:\/\/t.co\/rka7SCJwFD","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2903360450,"id_str":"2903360450","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","screen_name":"VPicV","location":"VPicV@outlook.com","url":"http:\/\/Instagram.com\/VPicV","description":"\u0644\u0623\u0646 \u0627\u0644\u0635\u0648\u0631\u0629 \u062a\u062e\u062a\u0632\u0644 \u0627\u0644\u0641 \u0643\u0644\u0645\u0629\u060c \u0633\u0646\u0642\u062f\u0645 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0629 \u0627\u0644\u063a\u0631\u064a\u0628\u0629 \u0648 \u0627\u0644\u0639\u0644\u0645\u064a\u0629 \u0648 \u0627\u0644\u062b\u0642\u0627\u0641\u064a\u0629 \u0645\u0642\u0631\u0648\u0646\u0629 \u0628\u0627 \u0627\u0644\u0635\u0648\u0631 #\u0645\u0639\u0644\u0648\u0645\u0627\u062a #\u063a\u0631\u0627\u0626\u0628 #\u0635\u0648\u0631 #\u0627\u062e\u0628\u0627\u0631 #\u0639\u0627\u062f\u0627\u062a_\u0627\u0644\u0634\u0639\u0648\u0628 \u0648\u0643\u0644 \u0645\u0627\u064a\u064f\u062b\u0631\u064a \u0645\u0639\u0644\u0648\u0645\u0627\u062a\u0643 \u0633\u062a\u062c\u062f\u0647 \u0647\u0646\u0627.","protected":false,"verified":false,"followers_count":314927,"friends_count":0,"listed_count":585,"favourites_count":1765,"statuses_count":2939,"created_at":"Tue Nov 18 07:11:56 +0000 2014","utc_offset":10800,"time_zone":"Minsk","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/629632360728821762\/79LiDzOX.jpg","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/639072157784342528\/3SkINGQy_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2903360450\/1441201651","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":473,"favorite_count":170,"entities":{"hashtags":[{"text":"\u0625\u0628\u062f\u0627\u0639","indices":[75,81]},{"text":"\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629","indices":[82,92]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}},{"id":663565331512823808,"id_str":"663565331512823808","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":880,"h":588,"resize":"fit"}}},{"id":663565331647111168,"id_str":"663565331647111168","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}},{"id":663565331894509568,"id_str":"663565331894509568","indices":[93,116],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u0625\u0628\u062f\u0627\u0639","indices":[86,92]},{"text":"\u063a\u0631\u062f_\u0628\u0635\u0648\u0631\u0629","indices":[93,103]}],"urls":[],"user_mentions":[{"screen_name":"VPicV","name":"\u0635\u0648\u0631\u0629 \u0648 \u0645\u0639\u0644\u0648\u0645\u0629","id":2903360450,"id_str":"2903360450","indices":[3,9]}],"symbols":[],"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"extended_entities":{"media":[{"id":663565331223486464,"id_str":"663565331223486464","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1JyzXIAAfg9m.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331512823808,"id_str":"663565331512823808","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1Jz4WEAA-pSr.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"small":{"w":340,"h":227,"resize":"fit"},"large":{"w":880,"h":588,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331647111168,"id_str":"663565331647111168","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J0YXIAAEvvB.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"},{"id":663565331894509568,"id_str":"663565331894509568","indices":[104,127],"media_url":"http:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTV1J1TWIAAXCC5.jpg","url":"https:\/\/t.co\/rka7SCJwFD","display_url":"pic.twitter.com\/rka7SCJwFD","expanded_url":"http:\/\/twitter.com\/VPicV\/status\/663565371492990976\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"medium":{"w":600,"h":400,"resize":"fit"},"large":{"w":880,"h":587,"resize":"fit"}},"source_status_id":663565371492990976,"source_status_id_str":"663565371492990976","source_user_id":2903360450,"source_user_id_str":"2903360450"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"ar","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915356160,"id_str":"663727623915356160","text":"RT @Micks_Got_Kicks: What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/about.twitter.com\/products\/tweetdeck\" rel=\"nofollow\"\u003eTweetDeck\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":344323467,"id_str":"344323467","name":"TRE","screen_name":"King_Eppenger16","location":null,"url":null,"description":"snapchat t-eppenger IG @Iamdatnigga18","protected":false,"verified":false,"followers_count":12627,"friends_count":9161,"listed_count":16,"favourites_count":216,"statuses_count":83634,"created_at":"Thu Jul 28 21:57:54 +0000 2011","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647497922674884608\/yL6X1i_Z_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647497922674884608\/yL6X1i_Z_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/344323467\/1442090929","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:35:29 +0000 2015","id":663726607534723072,"id_str":"663726607534723072","text":"What Your Kissing Style Says About Your Relationship\n\n https:\/\/t.co\/sm2pmZMeVA","source":"\u003ca href=\"https:\/\/www.fans2cash.co\" rel=\"nofollow\"\u003eFans2cash\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4142677463,"id_str":"4142677463","name":"Mick \u26a1\ufe0f","screen_name":"Micks_Got_Kicks","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":485,"friends_count":1884,"listed_count":0,"favourites_count":0,"statuses_count":39,"created_at":"Sun Nov 08 15:48:22 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663382906786742272\/QsbXWhzu_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/4142677463\/1446999768","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":43,"favorite_count":1,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[55,78]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/sm2pmZMeVA","expanded_url":"http:\/\/newssash.com\/link\/tpub4mh4e3","display_url":"newssash.com\/link\/tpub4mh4e3","indices":[76,99]}],"user_mentions":[{"screen_name":"Micks_Got_Kicks","name":"Mick \u26a1\ufe0f","id":4142677463,"id_str":"4142677463","indices":[3,19]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623915380736,"id_str":"663727623915380736","text":"RT @Droghino: Cosa cerchi dalla vita?\nIl wi-fi.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1766640746,"id_str":"1766640746","name":"\u2661Alessia\u2661","screen_name":"chocofrog_","location":null,"url":null,"description":"Girl, 17, Italy. #5sos #thecrookids #justinbieber #gretamenchi #teamusa #benjiefede","protected":false,"verified":false,"followers_count":247,"friends_count":348,"listed_count":1,"favourites_count":214,"statuses_count":912,"created_at":"Sat Sep 07 18:54:39 +0000 2013","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/378800000069095042\/a651d9a0ee72f94620350b53496a1843.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/378800000069095042\/a651d9a0ee72f94620350b53496a1843.jpeg","profile_background_tile":false,"profile_link_color":"8A8A8A","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662309286266191874\/RnlEHeF4_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662309286266191874\/RnlEHeF4_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1766640746\/1446741812","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 15:24:58 +0000 2015","id":661564735738028033,"id_str":"661564735738028033","text":"Cosa cerchi dalla vita?\nIl wi-fi.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3662016741,"id_str":"3662016741","name":"Droghino","screen_name":"Droghino","location":null,"url":null,"description":"Mio pap\u00e0 \u00e8 @Droghiere, mia mamma @Droghiera e questa bio l'hanno scritta loro. Io solo caco, piscio e piango. DroghinoSuperstar.","protected":false,"verified":false,"followers_count":3115,"friends_count":1768,"listed_count":2,"favourites_count":788,"statuses_count":242,"created_at":"Tue Sep 15 08:35:01 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"it","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"3B94D9","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/643775337126608897\/KNtSRK_Y_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/643775337126608897\/KNtSRK_Y_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3662016741\/1442323453","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":79,"favorite_count":82,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Droghino","name":"Droghino","id":3662016741,"id_str":"3662016741","indices":[3,12]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"it","timestamp_ms":"1447079971661"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932125188,"id_str":"663727623932125188","text":"RT @bst1Dupdates: (2) Novas fotos do Harry que foram liberadas hoje. #4DaysUntilMITAM https:\/\/t.co\/JwFXxDf7qE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":1059239580,"id_str":"1059239580","name":"PER(me)FECT","screen_name":"dragme1down","location":null,"url":"https:\/\/twitter.com\/niallofficial\/status\/102847753612296193","description":"vendendo bala no sem\u00e1foro pra comprar made in the am","protected":false,"verified":false,"followers_count":2112,"friends_count":1920,"listed_count":8,"favourites_count":10794,"statuses_count":64474,"created_at":"Fri Jan 04 01:37:58 +0000 2013","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/513834946834595840\/FE65Pdvm.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/513834946834595840\/FE65Pdvm.png","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"725270","profile_sidebar_fill_color":"D0CECF","profile_text_color":"999EA1","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/646434803940728832\/Tdoe3bch_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/646434803940728832\/Tdoe3bch_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/1059239580\/1442957108","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 12:54:18 +0000 2015","id":663701144850575360,"id_str":"663701144850575360","text":"(2) Novas fotos do Harry que foram liberadas hoje. #4DaysUntilMITAM https:\/\/t.co\/JwFXxDf7qE","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":891291492,"id_str":"891291492","name":"Best 1D Updates","screen_name":"bst1Dupdates","location":"Brasil","url":"http:\/\/Instagram.com\/b1dupdates","description":"Confira atualiza\u00e7\u00f5es di\u00e1rias na sua fonte de not\u00edcias da One Direction e Zayn Malik no Brasil. | LIAM FOLLOWED US - 16.10.15","protected":false,"verified":false,"followers_count":55471,"friends_count":1918,"listed_count":171,"favourites_count":1081,"statuses_count":158279,"created_at":"Fri Oct 19 16:14:59 +0000 2012","utc_offset":-14400,"time_zone":"Atlantic Time (Canada)","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"FFFFFF","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/559794215505256448\/ZdOk4HTJ.jpeg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/559794215505256448\/ZdOk4HTJ.jpeg","profile_background_tile":false,"profile_link_color":"000000","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663029883174567936\/F1fT92hY_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663029883174567936\/F1fT92hY_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/891291492\/1446913693","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":133,"favorite_count":60,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[51,67]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"extended_entities":{"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264321376256,"id_str":"663694264321376256","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264996651008,"id_str":"663694264996651008","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694265067962368,"id_str":"663694265067962368","indices":[69,92],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"4DaysUntilMITAM","indices":[69,85]}],"urls":[],"user_mentions":[{"screen_name":"bst1Dupdates","name":"Best 1D Updates","id":891291492,"id_str":"891291492","indices":[3,16]}],"symbols":[],"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"extended_entities":{"media":[{"id":663694263872565248,"id_str":"663694263872565248","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqaqWWsAAYnW5.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264321376256,"id_str":"663694264321376256","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqasBXAAA5Xso.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":227,"resize":"fit"},"medium":{"w":504,"h":337,"resize":"fit"},"large":{"w":504,"h":337,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694264996651008,"id_str":"663694264996651008","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauiW4AA6huQ.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"},{"id":663694265067962368,"id_str":"663694265067962368","indices":[87,110],"media_url":"http:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTXqauzXAAAoU0_.jpg","url":"https:\/\/t.co\/JwFXxDf7qE","display_url":"pic.twitter.com\/JwFXxDf7qE","expanded_url":"http:\/\/twitter.com\/1Dnoticia\/status\/663694299083776000\/photo\/1","type":"photo","sizes":{"medium":{"w":600,"h":399,"resize":"fit"},"small":{"w":340,"h":226,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":1024,"h":682,"resize":"fit"}},"source_status_id":663694299083776000,"source_status_id_str":"663694299083776000","source_user_id":1705422776,"source_user_id_str":"1705422776"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911010305,"id_str":"663727623911010305","text":"Thankyou babeby ko \ud83d\ude19 Iloveyou \ud83d\udc93\ud83d\udc95\ud83d\udc9e\ud83d\udc98\ud83d\udc96\ud83d\udc97 @danhiellouie","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2415287827,"id_str":"2415287827","name":"Jill","screen_name":"gilleanapaler","location":"Pasig City","url":"http:\/\/instagram.com\/gilleanaquilino","description":"Weird kiddo \u26ab 1996's","protected":false,"verified":false,"followers_count":253,"friends_count":245,"listed_count":1,"favourites_count":1659,"statuses_count":6949,"created_at":"Fri Mar 28 03:24:36 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"F2E9ED","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/602852417445634048\/ZGpGvw_m.png","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/602852417445634048\/ZGpGvw_m.png","profile_background_tile":true,"profile_link_color":"DB1596","profile_sidebar_border_color":"FFFFFF","profile_sidebar_fill_color":"7AC3EE","profile_text_color":"3D1957","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/662433764639830016\/3dTKLbaQ_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/662433764639830016\/3dTKLbaQ_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2415287827\/1446465523","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"danhiellouie","name":"Jack","id":2269916780,"id_str":"2269916780","indices":[37,50]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"tl","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936352257,"id_str":"663727623936352257","text":"RT @iha_istanbul: Hali\u00e7te Sahne Binbir Gece Kap\u0131lar\u0131n\u0131 A\u00e7\u0131yor https:\/\/t.co\/qlc6uCeqBn","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3929049143,"id_str":"3929049143","name":"B\u0130NB\u0130R GECE Sahnesi","screen_name":"sahnebinbirgece","location":"Golden Horn, Hali\u00e7","url":"http:\/\/www.halictebinbirgece.com","description":"\u0130stanbul' un \u0130LK ve TEK Y\u00fczer Canl\u0131 Performans Sanatlar\u0131 Sahnesi \u00ae","protected":false,"verified":false,"followers_count":123,"friends_count":735,"listed_count":0,"favourites_count":1,"statuses_count":112,"created_at":"Sun Oct 11 16:01:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"022330","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme15\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"A8C7F7","profile_sidebar_fill_color":"C0DFEC","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656833327219933184\/xClK7Eps_normal.png","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656833327219933184\/xClK7Eps_normal.png","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3929049143\/1446073382","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 07:34:36 +0000 2015","id":663620689077891072,"id_str":"663620689077891072","text":"Hali\u00e7te Sahne Binbir Gece Kap\u0131lar\u0131n\u0131 A\u00e7\u0131yor https:\/\/t.co\/qlc6uCeqBn","source":"\u003ca href=\"http:\/\/www.iha.com.tr\/istanbul\" rel=\"nofollow\"\u003e\u0130hlas Haber Ajans\u0131 \u0130stanbul\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":732501398,"id_str":"732501398","name":"\u0130HA \u0130stanbul","screen_name":"iha_istanbul","location":null,"url":"http:\/\/www.iha.com.tr\/istanbul","description":"\u0130hlas Haber Ajans\u0131 \/ \u0130stanbul Haberleri","protected":false,"verified":false,"followers_count":919,"friends_count":1,"listed_count":12,"favourites_count":0,"statuses_count":79113,"created_at":"Thu Aug 02 09:18:22 +0000 2012","utc_offset":7200,"time_zone":"Istanbul","geo_enabled":false,"lang":"tr","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/2458635882\/hs678j95nnvkwqg5b69d_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/2458635882\/hs678j95nnvkwqg5b69d_normal.jpeg","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qlc6uCeqBn","expanded_url":"http:\/\/www.iha.com.tr\/istanbul-haberleri\/halicte-sahne-binbir-gece-kapilarini-aciyor-istanbul-1221632\/","display_url":"iha.com.tr\/istanbul-haber\u2026","indices":[44,67]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[{"url":"https:\/\/t.co\/qlc6uCeqBn","expanded_url":"http:\/\/www.iha.com.tr\/istanbul-haberleri\/halicte-sahne-binbir-gece-kapilarini-aciyor-istanbul-1221632\/","display_url":"iha.com.tr\/istanbul-haber\u2026","indices":[62,85]}],"user_mentions":[{"screen_name":"iha_istanbul","name":"\u0130HA \u0130stanbul","id":732501398,"id_str":"732501398","indices":[3,16]}],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"tr","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623898537984,"id_str":"663727623898537984","text":"RT @barcastuff: Cartoon: La Liga top scorer race #fcblive [goal via @farhanyd] https:\/\/t.co\/t0S40CnlY8","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2455186696,"id_str":"2455186696","name":"Josh","screen_name":"Josh96LFC","location":null,"url":null,"description":"LFC","protected":false,"verified":false,"followers_count":732,"friends_count":648,"listed_count":6,"favourites_count":1510,"statuses_count":14530,"created_at":"Wed Apr 02 14:53:36 +0000 2014","utc_offset":3600,"time_zone":"Amsterdam","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"050000","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663332960029024256\/gyUwn-dq_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663332960029024256\/gyUwn-dq_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2455186696\/1446308239","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 11:31:40 +0000 2015","id":663680348434382848,"id_str":"663680348434382848","text":"Cartoon: La Liga top scorer race #fcblive [goal via @farhanyd] https:\/\/t.co\/t0S40CnlY8","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":38742405,"id_str":"38742405","name":"barcastuff","screen_name":"barcastuff","location":null,"url":"http:\/\/unicef.org","description":"FC Barcelona. Bar\u00e7a. A bit of news and stats, pictures and videos. The original countdown to the games. And one question every day. Inventor of [via ...]","protected":false,"verified":false,"followers_count":446002,"friends_count":0,"listed_count":4848,"favourites_count":3556,"statuses_count":206090,"created_at":"Fri May 08 20:55:26 +0000 2009","utc_offset":3600,"time_zone":"Rome","geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/309654707\/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/309654707\/josep_pep_guardiola_barcelona_barca_twitter_normal.jpg","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":347,"favorite_count":242,"entities":{"hashtags":[{"text":"fcblive","indices":[33,41]}],"urls":[],"user_mentions":[{"screen_name":"FarhanYd","name":"Farhan Jihad","id":439827185,"id_str":"439827185","indices":[52,61]}],"symbols":[],"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"extended_entities":{"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[63,86],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"fcblive","indices":[49,57]}],"urls":[],"user_mentions":[{"screen_name":"barcastuff","name":"barcastuff","id":38742405,"id_str":"38742405","indices":[3,14]},{"screen_name":"FarhanYd","name":"Farhan Jihad","id":439827185,"id_str":"439827185","indices":[68,77]}],"symbols":[],"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"extended_entities":{"media":[{"id":663633996010512385,"id_str":"663633996010512385","indices":[79,102],"media_url":"http:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTWzmnEUYAEtiYu.jpg","url":"https:\/\/t.co\/t0S40CnlY8","display_url":"pic.twitter.com\/t0S40CnlY8","expanded_url":"http:\/\/twitter.com\/FarhanYd\/status\/663633998451597312\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":191,"resize":"fit"},"medium":{"w":600,"h":337,"resize":"fit"},"large":{"w":1024,"h":576,"resize":"fit"}},"source_status_id":663633998451597312,"source_status_id_str":"663633998451597312","source_user_id":439827185,"source_user_id_str":"439827185"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971657"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623932149760,"id_str":"663727623932149760","text":"RT @matger_yara: #\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631\ud83d\ude31#\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647\ud83d\udc4f\ud83c\udffb\n#\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270 https:\/\/t.co\/hK\u2026","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":18840530,"id_str":"18840530","name":"MOATH 228k","screen_name":"FU03","location":"\u0627\u0644\u0631\u064a\u0627\u0636, \u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629","url":"http:\/\/e-saudia.net","description":"\u200f\u0623\u0643\u0628\u0631 \u0645\u062c\u0645\u0648\u0639\u0629 \u062d\u0633\u0627\u0628\u0627\u062a \u0645\u062a\u062e\u0635\u0635\u0629 \u0644\u0646\u0634\u0631 \u0627\u0644\u062a\u063a\u0631\u064a\u062f\u0627\u062a \u0648\u0627\u0644\u062d\u0633\u0627\u0628\u0627\u062a \u0648\u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0639\u0628\u0631 \u062a\u0648\u064a\u062a\u0631 \u0644\u064a\u0635\u0644 \u0645\u0646\u062a\u062c\u0643 \u0644\u0627\u0643\u062b\u0631 \u0645\u0646 \u0662\u0665 \u0645\u0644\u064a\u0648\u0646 \u0645\u062a\u0627\u0628\u0639 00966509026383 \u0628\u0627\u062f\u0631\u0627\u0629 \u2066@e_saudia0\u2069","protected":false,"verified":false,"followers_count":221598,"friends_count":140659,"listed_count":301,"favourites_count":7,"statuses_count":355265,"created_at":"Sat Jan 10 17:44:15 +0000 2009","utc_offset":10800,"time_zone":"Riyadh","geo_enabled":true,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"EBEBEB","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme7\/bg.gif","profile_background_tile":false,"profile_link_color":"990000","profile_sidebar_border_color":"DFDFDF","profile_sidebar_fill_color":"F3F3F3","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/478866291655069696\/COPyRlXR_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/478866291655069696\/COPyRlXR_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/18840530\/1403005621","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Sun Nov 08 23:52:51 +0000 2015","id":663504485319331840,"id_str":"663504485319331840","text":"#\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631\ud83d\ude31#\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647\ud83d\udc4f\ud83c\udffb\n#\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270 https:\/\/t.co\/hK2TJAoFiZ","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2612707609,"id_str":"2612707609","name":"\u0645\u062a\u062c\u0631 \u064a\u0627\u0631\u0627 50k","screen_name":"matger_yara","location":null,"url":null,"description":"\u062d\u064a\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u062c\u0645\u064a\u064a\u0639 \u0644\u0637\u0644\u0628 \u062a\u0641\u0636\u0644 \u0639\u0644\u0649 \u0627\u0644\u0648\u0627\u062a\u0633 \/ 0576316270 \u0648\u0644\u062a\u0628\u0627\u062f\u0644 \u062d\u064a\u0627\u0643\u0645 \u0627\u0644\u0644\u0647 \u0639\u0644\u0649 \u062d\u0633\u0627\u0628\u064a \/ @mystor4 \/\u0648\u0627\u0644\u062b\u0627\u0646\u064a @mystor5 \/ \u0627\u062a\u0634\u0631\u0641 \u0628\u0627\u0644\u062a\u0628\u0627\u062f\u0644 \u0645\u0639 \u0627\u0644\u062c\u0645\u064a\u064a\u0639","protected":false,"verified":false,"followers_count":32941,"friends_count":30197,"listed_count":11,"favourites_count":12,"statuses_count":12573,"created_at":"Wed Jul 09 01:04:26 +0000 2014","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"ar","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/602675500285231104\/BaROPhFc_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/602675500285231104\/BaROPhFc_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2612707609\/1432524791","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":68,"favorite_count":3,"entities":{"hashtags":[{"text":"\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631","indices":[0,15]},{"text":"\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647","indices":[16,47]},{"text":"\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270","indices":[50,106]}],"urls":[],"user_mentions":[],"symbols":[],"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}}]},"extended_entities":{"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504446962458624,"id_str":"663504446962458624","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504447180562432,"id_str":"663504447180562432","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}}},{"id":663504447423840256,"id_str":"663504447423840256","indices":[107,130],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"medium":{"w":600,"h":668,"resize":"fit"},"large":{"w":848,"h":945,"resize":"fit"}}}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"\u062a\u062d\u0637\u064a\u0645_\u0628\u0627\u0644\u0627\u0633\u0639\u0627\u0631","indices":[17,32]},{"text":"\u062c\u062f\u064a\u062f\u0646\u0627_\u0648\u0639\u0631\u0636_\u062e\u064a\u0627\u0644\u064a_\u0644\u0641\u062a\u0631\u0647_\u0645\u062d\u062f\u0648\u062f\u0647","indices":[33,64]},{"text":"\u0633\u0627\u0639\u0629_\u0623\u0631\u0645\u0627\u0646\u064a_\u0636\u0645\u0627\u0646_300_\u0631\u064a\u0627\u0644_\u0641\u0642\u0637_\u0644\u0637\u0644\u0628_\u062a\u0641\u0636\u0644_\u0648\u0627\u062a\u0633_0576316270","indices":[67,123]}],"urls":[],"user_mentions":[{"screen_name":"matger_yara","name":"\u0645\u062a\u062c\u0631 \u064a\u0627\u0631\u0627 50k","id":2612707609,"id_str":"2612707609","indices":[3,15]}],"symbols":[],"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"}]},"extended_entities":{"media":[{"id":663504446832451584,"id_str":"663504446832451584","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x2xXIAAs5w1.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504446962458624,"id_str":"663504446962458624","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x3QW4AAvRYk.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504447180562432,"id_str":"663504447180562432","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4EW4AAUNtK.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"small":{"w":340,"h":453,"resize":"fit"},"medium":{"w":600,"h":800,"resize":"fit"},"thumb":{"w":150,"h":150,"resize":"crop"},"large":{"w":768,"h":1024,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"},{"id":663504447423840256,"id_str":"663504447423840256","indices":[124,140],"media_url":"http:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","media_url_https":"https:\/\/pbs.twimg.com\/media\/CTU9x4-XAAAr57V.jpg","url":"https:\/\/t.co\/hK2TJAoFiZ","display_url":"pic.twitter.com\/hK2TJAoFiZ","expanded_url":"http:\/\/twitter.com\/matger_yara\/status\/663504485319331840\/photo\/1","type":"photo","sizes":{"thumb":{"w":150,"h":150,"resize":"crop"},"small":{"w":340,"h":378,"resize":"fit"},"medium":{"w":600,"h":668,"resize":"fit"},"large":{"w":848,"h":945,"resize":"fit"}},"source_status_id":663504485319331840,"source_status_id_str":"663504485319331840","source_user_id":2612707609,"source_user_id_str":"2612707609"}]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623936307204,"id_str":"663727623936307204","text":"RT @Trigga_Tray28: Thank you Lord for another day !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":159693587,"id_str":"159693587","name":"B. Rogers","screen_name":"i_Call_itHow_iC","location":"Opelika, AL","url":null,"description":"Even On My Weakest Days, I Get Stronger.","protected":false,"verified":false,"followers_count":1858,"friends_count":1897,"listed_count":1,"favourites_count":7434,"statuses_count":67501,"created_at":"Sat Jun 26 02:47:10 +0000 2010","utc_offset":-21600,"time_zone":"Central Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme14\/bg.gif","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"EFEFEF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661025040574636032\/DGLD5C-b_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661025040574636032\/DGLD5C-b_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/159693587\/1430443163","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:02:21 +0000 2015","id":663718269564620800,"id_str":"663718269564620800","text":"Thank you Lord for another day !!!","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":338122611,"id_str":"338122611","name":"TriggaTray","screen_name":"Trigga_Tray28","location":null,"url":null,"description":"God First - Family Before All- Safety for Auburn University","protected":false,"verified":false,"followers_count":13255,"friends_count":531,"listed_count":94,"favourites_count":7632,"statuses_count":26653,"created_at":"Tue Jul 19 03:28:20 +0000 2011","utc_offset":-18000,"time_zone":"Eastern Time (US & Canada)","geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/659212819880112128\/jDS_Pbly_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/659212819880112128\/jDS_Pbly_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/338122611\/1441514170","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":16,"favorite_count":23,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"Trigga_Tray28","name":"TriggaTray","id":338122611,"id_str":"338122611","indices":[3,17]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971666"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902744580,"id_str":"663727623902744580","text":"RT @bradocrvg: Quem cantar ol\u00ea ol\u00ea ol\u00ea vai entrar na porrada, \u00e9 pra ficar sem voz, pra arrebentar a veia do pesco\u00e7o, deixar o goleiro deles\u2026","source":"\u003ca href=\"http:\/\/twitter.com\" rel=\"nofollow\"\u003eTwitter Web Client\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3374325635,"id_str":"3374325635","name":"Will \u2720","screen_name":"WilliamFa22","location":"Rio de Janeiro, Brasil","url":null,"description":"Whats: 991537690","protected":false,"verified":false,"followers_count":240,"friends_count":183,"listed_count":0,"favourites_count":1231,"statuses_count":3573,"created_at":"Mon Jul 13 17:39:26 +0000 2015","utc_offset":-28800,"time_zone":"Pacific Time (US & Canada)","geo_enabled":false,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"000000","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"94D487","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":false,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/661179986037088256\/9j6UK8Ht_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/661179986037088256\/9j6UK8Ht_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3374325635\/1440709137","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Mon Nov 09 14:28:17 +0000 2015","id":663724796388245505,"id_str":"663724796388245505","text":"Quem cantar ol\u00ea ol\u00ea ol\u00ea vai entrar na porrada, \u00e9 pra ficar sem voz, pra arrebentar a veia do pesco\u00e7o, deixar o goleiro deles cego com laser.","source":"\u003ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003eTwitter for iPhone\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663724489415467008,"in_reply_to_status_id_str":"663724489415467008","in_reply_to_user_id":636338034,"in_reply_to_user_id_str":"636338034","in_reply_to_screen_name":"bradocrvg","user":{"id":636338034,"id_str":"636338034","name":"Alan Brado \u2720","screen_name":"bradocrvg","location":"30\/10","url":null,"description":"#EuEscolhiAcreditar | @CrvgSol \u2665\ufe0f","protected":false,"verified":false,"followers_count":2539,"friends_count":946,"listed_count":2,"favourites_count":5043,"statuses_count":64156,"created_at":"Sun Jul 15 15:36:24 +0000 2012","utc_offset":-7200,"time_zone":"Brasilia","geo_enabled":true,"lang":"pt","contributors_enabled":false,"is_translator":false,"profile_background_color":"131516","profile_background_image_url":"http:\/\/pbs.twimg.com\/profile_background_images\/656181040797589504\/9EKdAEQu.jpg","profile_background_image_url_https":"https:\/\/pbs.twimg.com\/profile_background_images\/656181040797589504\/9EKdAEQu.jpg","profile_background_tile":true,"profile_link_color":"009999","profile_sidebar_border_color":"000000","profile_sidebar_fill_color":"000000","profile_text_color":"000000","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663356471334313984\/VvXKY6hp_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663356471334313984\/VvXKY6hp_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/636338034\/1446859921","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":5,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"bradocrvg","name":"Alan Brado \u2720","id":636338034,"id_str":"636338034","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"pt","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623902797824,"id_str":"663727623902797824","text":"Imma_lonely_: gerald312garcia: sandyayala09: KOREAdorables: shielarniebaby: kbdpftcris30: immadam_angelo: #PushAwardsKathNiels","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":4091527220,"id_str":"4091527220","name":"Xander Ayala","screen_name":"AyalaXander","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":10,"friends_count":12,"listed_count":6,"favourites_count":2,"statuses_count":18777,"created_at":"Sun Nov 01 14:19:14 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_4_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"PushAwardsKathNiels","indices":[106,126]}],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"de","timestamp_ms":"1447079971658"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623923625985,"id_str":"663727623923625985","text":"\u30d3\u30ae\u30a8\u30f3\u306f\u7f6a","source":"\u003ca href=\"http:\/\/twicca.r246.jp\/\" rel=\"nofollow\"\u003etwicca\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":128186663,"id_str":"128186663","name":"\u795e\u7121\uff20\u3057\u3087\u3070\u308d\u4e8c\u671f\u6c7a\u5b9a\uff01","screen_name":"kanna_kk","location":"\u51fa\u96631-3\u2192\u5bb6\u755c\u2192SHK\u2190\u5b89\u82b8\u2190\u30eb\u30af\u30bb\u30f3\u30c0\u30eb\u30af","url":"http:\/\/twpf.jp\/kanna_kk","description":"\u6210\u4eba\u6e08\/\u30a2\u30cb\u30e1\u30b2\u30fc\u30e0\u7279\u64ae\/SB69\u5bb6\u755c\u51fa\u8377\u6e08\u307f\/\u6700\u8fd1\u306fFate\/GO\u3084\u3063\u3066\u308b\/\u6803\u6728\u30ed\u30fc\u30e9\u30f3(SH\uff65LH)\/\u3068\u3046\u3089\u3076\u4f0a\u9054\u7d44\u9db4\u4e38\u8fd1\u4f8d\/\u30d6\u30ec\u30bb\u30ab\u30d7\u30ec\u30a4\u4e2d\/BSR\u6368\u3066\u99d2+\u77f3\u7530\u4e3b\u5f93\/\u9032\u6483(\u5175\u9577)\/\u738b.\u56fd.\u5fc3\/\u30c7\u30e5\u30e9\/\u591c\u685c\/\u5358\u8eca\u4e57\u308a(\u96fb\u8eca\u301c\u8eca)\/aph\/BLNL\u5922\u597d\u304d\u57fa\u672c\u96d1\u98df\/\u203b\u8150\u767a\u8a00\u6709\u6ce8\u610f\/\u8a73\u7d30\u306f\uff82\uff72\uff8c\uff68\uff70\uff99\u306b\u3082","protected":false,"verified":false,"followers_count":275,"friends_count":697,"listed_count":14,"favourites_count":5525,"statuses_count":125044,"created_at":"Wed Mar 31 10:51:33 +0000 2010","utc_offset":32400,"time_zone":"Asia\/Tokyo","geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"B2DFDA","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme13\/bg.gif","profile_background_tile":false,"profile_link_color":"93A644","profile_sidebar_border_color":"EEEEEE","profile_sidebar_fill_color":"FFFFFF","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/647180459433062400\/W-MZZNcK_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/647180459433062400\/W-MZZNcK_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/128186663\/1410187656","default_profile":false,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971663"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623906926592,"id_str":"663727623906926592","text":"RT bondappetit02 #sharing is the new economy #nomnom #foodporn #food #blog https:\/\/t.co\/zwxk3JhZCG","source":"\u003ca href=\"http:\/\/ifttt.com\" rel=\"nofollow\"\u003eIFTTT\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":3278791459,"id_str":"3278791459","name":"Fondue","screen_name":"gofondue","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":317,"friends_count":6,"listed_count":849,"favourites_count":0,"statuses_count":284623,"created_at":"Mon Jul 13 17:19:24 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","profile_image_url_https":"https:\/\/abs.twimg.com\/sticky\/default_profile_images\/default_profile_6_normal.png","default_profile":true,"default_profile_image":true,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[{"text":"sharing","indices":[17,25]},{"text":"nomnom","indices":[45,52]},{"text":"foodporn","indices":[53,62]},{"text":"food","indices":[63,68]},{"text":"blog","indices":[69,74]}],"urls":[{"url":"https:\/\/t.co\/zwxk3JhZCG","expanded_url":"http:\/\/ow.ly\/UoKQ4","display_url":"ow.ly\/UoKQ4","indices":[75,98]}],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"possibly_sensitive":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971659"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623931990016,"id_str":"663727623931990016","text":"RT @xDeAsiaa_: A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2473364180,"id_str":"2473364180","name":"Kaitlyn","screen_name":"shesapeterson","location":null,"url":null,"description":null,"protected":false,"verified":false,"followers_count":118,"friends_count":136,"listed_count":0,"favourites_count":2121,"statuses_count":2569,"created_at":"Fri May 02 03:06:15 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":false,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656587543337500672\/gEGHWqG-_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656587543337500672\/gEGHWqG-_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2473364180\/1446687633","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"retweeted_status":{"created_at":"Tue Nov 03 18:36:02 +0000 2015","id":661612817364205568,"id_str":"661612817364205568","text":"A nigga will pour his heart out to you, eat your pussy, let you meet his mom & his niggas AND STILL PLAY YOU \ud83d\ude02\ud83d\ude02","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2368395273,"id_str":"2368395273","name":"SC: xdeasiaa\u2734","screen_name":"xDeAsiaa_","location":"419 | 937","url":"http:\/\/ftr.io\/r\/71O1UX91","description":"Retweet ALL My Favorites","protected":false,"verified":false,"followers_count":29758,"friends_count":19442,"listed_count":46,"favourites_count":94,"statuses_count":12046,"created_at":"Thu Feb 27 06:27:31 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/656147949760716800\/63xROfv5_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2368395273\/1427639965","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":1947,"favorite_count":1540,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en"},"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"xDeAsiaa_","name":"SC: xdeasiaa\u2734","id":2368395273,"id_str":"2368395273","indices":[3,13]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"en","timestamp_ms":"1447079971665"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623911157760,"id_str":"663727623911157760","text":"@cigarettekhan ty","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":663727360253034496,"in_reply_to_status_id_str":"663727360253034496","in_reply_to_user_id":3247961874,"in_reply_to_user_id_str":"3247961874","in_reply_to_screen_name":"cigarettekhan","user":{"id":3136571580,"id_str":"3136571580","name":"Ashiff__aasi","screen_name":"AssiAshiff","location":"Lahore, Pakistan","url":null,"description":"to touch is to heal. to hurt is to steal. let's heal...\n\n\n\n\n\nIG: Ashiff__assi","protected":false,"verified":false,"followers_count":2296,"friends_count":82,"listed_count":32,"favourites_count":15090,"statuses_count":21665,"created_at":"Fri Apr 03 16:29:05 +0000 2015","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"en","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/663726148896096256\/ZmOknofN_normal.jpg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/663726148896096256\/ZmOknofN_normal.jpg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/3136571580\/1446542281","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[{"screen_name":"cigarettekhan","name":"Micky","id":3247961874,"id_str":"3247961874","indices":[0,14]}],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"und","timestamp_ms":"1447079971660"} +{"created_at":"Mon Nov 09 14:39:31 +0000 2015","id":663727623927758848,"id_str":"663727623927758848","text":"\u53ef\u80fd\u6027\u306e\u7363","source":"\u003ca href=\"http:\/\/twitter.com\/download\/android\" rel=\"nofollow\"\u003eTwitter for Android\u003c\/a\u003e","truncated":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"in_reply_to_user_id":null,"in_reply_to_user_id_str":null,"in_reply_to_screen_name":null,"user":{"id":2418749562,"id_str":"2418749562","name":"\u767d\u7c73\u30d0\u30ed\u30c3\u30af","screen_name":"ancientdragon22","location":"\u5927\u962a\u2192\u611b\u5a9b","url":null,"description":"\u611b\u5a9b\u3067\u72ec\u308a\u66ae\u3057\u306e\u5927\u5b66\u751f\u3001\u6c7a\u95d8\u8005\u3001\u30d5\u30ea\u30fc\u30b2\u30fc\u597d\u304d\u3001\u6cd5\u5f8b\u3092\u52c9\u5f37\u4e2d\u3001\u30d9\u30fc\u30c0\u30fc\u3001\u9b54\u8853\u30af\u30e9\u30d5\u30bf\u30fc\u3001\u840c\u7814\u306e\u7dcf\u88c1\u3001\u653f\u6cbb\u30c4\u30a4\u30fc\u30c8\u591a\u76ee\u3067\u7533\u3057\u8a33\u306a\u3044","protected":false,"verified":false,"followers_count":243,"friends_count":820,"listed_count":5,"favourites_count":7323,"statuses_count":27120,"created_at":"Sun Mar 30 09:27:44 +0000 2014","utc_offset":null,"time_zone":null,"geo_enabled":true,"lang":"ja","contributors_enabled":false,"is_translator":false,"profile_background_color":"C0DEED","profile_background_image_url":"http:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_image_url_https":"https:\/\/abs.twimg.com\/images\/themes\/theme1\/bg.png","profile_background_tile":false,"profile_link_color":"0084B4","profile_sidebar_border_color":"C0DEED","profile_sidebar_fill_color":"DDEEF6","profile_text_color":"333333","profile_use_background_image":true,"profile_image_url":"http:\/\/pbs.twimg.com\/profile_images\/566732985861287936\/nQYQk6-n_normal.jpeg","profile_image_url_https":"https:\/\/pbs.twimg.com\/profile_images\/566732985861287936\/nQYQk6-n_normal.jpeg","profile_banner_url":"https:\/\/pbs.twimg.com\/profile_banners\/2418749562\/1417383107","default_profile":true,"default_profile_image":false,"following":null,"follow_request_sent":null,"notifications":null},"geo":null,"coordinates":null,"place":null,"contributors":null,"is_quote_status":false,"retweet_count":0,"favorite_count":0,"entities":{"hashtags":[],"urls":[],"user_mentions":[],"symbols":[]},"favorited":false,"retweeted":false,"filter_level":"low","lang":"ja","timestamp_ms":"1447079971664"} diff --git a/assignment1/term_sentiment.py b/assignment1/term_sentiment.py index 96171b2a..8c963e26 100644 --- a/assignment1/term_sentiment.py +++ b/assignment1/term_sentiment.py @@ -1,17 +1,58 @@ import sys +import json +import re -def hw(): - print 'Hello, world!' +def dict(fn): + sent_file = open(fn) + scores = {} # initialize an empty dictionary + for line in sent_file: + term, score = line.split("\t") # The file is tab-delimited. "\t" means "tab character" + scores[term] = int(score) # Convert the score to an integer. + return scores -def lines(fp): - print str(len(fp.readlines())) +def getTweet(fp): + tweet_file = open(fp) #Open the file that contains tweets + tweet_list = [] + for tweet in tweet_file: + decoded_tweet = json.loads(tweet) #Parse the data for every line in the tweet file. + if "text" in decoded_tweet : #Only retain lines that contain tweets,e.g. "text" + text = decoded_tweet["text"].encode('utf-8') #Select the text of the tweet, as in a dictionary, and encode to get proper international characters. + tweet_list.append(text) # Add each text to the tweet list + return tweet_list -def main(): - sent_file = open(sys.argv[1]) - tweet_file = open(sys.argv[2]) - hw() - lines(sent_file) - lines(tweet_file) + +def sent(score_list, tweet_list): + noterms = {} #Initiate new dictionary for new terms + global_scores = {} #Initiate new dictionary for tweet scores + for tweet in tweet_list: # for each tweet selected above + tweet_score = 0 #Set the starting score to 0 + tweet_words = re.findall(r"[\w']+",tweet,re.IGNORECASE) #Split each tweet to retain only the words + + for word in tweet_words: #For each word selected + if word in score_list: #If the word is in the sentiment file dictionary + word_score = score_list[word] # get the word score from this dictionary + else : #If the word is not in the dictionary + word_score = 0 #Put the score of this word to 0 + noterms[word] = word_score #Add the new term to the dictionary of terms not found with its initial score of 0 + tweet_score += word_score #Sum scores of each word to get a total tweet score + global_scores[tweet] = tweet_score #Put tweet scores in global dictionary + + #Now we are going to check again all the tweets for the noterms occurances + for term in noterms : #Going through all noterms + occurance = 0 + term_score = 0 + for tweet in global_scores: #Going through all tweets + if term in tweet : #Check if the term is in the tweet + occurance +=1 #Add one to occurance of the term + term_score += global_scores[tweet] #Add the tweet score to the term score + noterms[term] = float(term_score)/float(occurance) #Divide total term score by total occurances + print term + " " + str("%.3f" % round(noterms[term],3)) + + +def main(): + scores = dict(sys.argv[1]) #Create the dictionary from the sentiment file + tweet_list = getTweet(sys.argv[2]) #Create the tweet list + sent(scores, tweet_list) #Score each tweet from the list if __name__ == '__main__': main() diff --git a/assignment1/term_sentiment.pyc b/assignment1/term_sentiment.pyc new file mode 100644 index 00000000..9088878b Binary files /dev/null and b/assignment1/term_sentiment.pyc differ diff --git a/assignment1/top_ten.py b/assignment1/top_ten.py new file mode 100644 index 00000000..47c4d111 --- /dev/null +++ b/assignment1/top_ten.py @@ -0,0 +1,44 @@ +import sys +import json +import re + +def getHash(fp): + tweet_file = open(fp) #Open the file that contains tweets + hash_list = [] + for tweet in tweet_file: + decoded_tweet = json.loads(tweet) #Parse the data for every line in the tweet file. + if "entities" in decoded_tweet : #Only retain lines that contain tweets,e.g. "text" + entities = decoded_tweet["entities"] + if 'hashtags' in entities: + hash = entities["hashtags"] #Select the hashtags of the tweet, as in a dictionary. + for hashT in hash: + h = hashT["text"].encode('utf-8') + hash_list.append(h) # Add each hash to the hash list + return hash_list + + +def frequency(hash_list): + hashDic = {} #Initiate a dictionary for all the hashtags + total_count = 0 + for hash in hash_list: # for each hashtag selected above + total_count += 1 #Add one to the total count of hashtags + if hash in hashDic: #If the hashtag is in the dictionary + hashDic[hash] += 1 # Add one to the count for this hashtag in the dictionary + else : #If the hashtag is not in the dictionary + hashDic[hash] = 1 #Initiate the count for this hashtag in the dictionary + + freq = [] + for hash in hashDic: + freq.append((hash, hashDic[hash])) + freq = sorted(freq, key=lambda x: x[1], reverse = True) + + for i in range(10): + print freq[i][0] + " " + str(float(freq[i][1])) + + +def main(): + hash_list = getHash(sys.argv[1]) #Create the hash list + frequency(hash_list) #Frequency each hash from the list + +if __name__ == '__main__': + main() \ No newline at end of file diff --git a/assignment1/top_ten.pyc b/assignment1/top_ten.pyc new file mode 100644 index 00000000..a663328d Binary files /dev/null and b/assignment1/top_ten.pyc differ diff --git a/assignment1/tweet_sentiment.py b/assignment1/tweet_sentiment.py index 96171b2a..65755f1d 100644 --- a/assignment1/tweet_sentiment.py +++ b/assignment1/tweet_sentiment.py @@ -1,17 +1,43 @@ import sys +import json +import re -def hw(): - print 'Hello, world!' +def dict(fn): + sent_file = open(fn) + scores = {} # initialize an empty dictionary + for line in sent_file: + term, score = line.split("\t") # The file is tab-delimited. "\t" means "tab character" + scores[term] = int(score) # Convert the score to an integer. + return scores -def lines(fp): - print str(len(fp.readlines())) +def getTweet(fp): + tweet_file = open(fp) #Open the file that contains tweets + tweet_list = [] + for tweet in tweet_file: + decoded_tweet = json.loads(tweet) #Parse the data for every line in the tweet file. + if "text" in decoded_tweet : #Only retain lines that contain tweets,e.g. "text" + text = decoded_tweet["text"].encode('utf-8') #Select the text of the tweet, as in a dictionary, and encode to get proper international characters. + tweet_list.append(text) # Add each text to the tweet list + return tweet_list -def main(): - sent_file = open(sys.argv[1]) - tweet_file = open(sys.argv[2]) - hw() - lines(sent_file) - lines(tweet_file) + +def sent(score_list, tweet_list): + for tweet in tweet_list: # for each tweet selected above + tweet_score = 0 #Set the starting score to 0 + tweet_words = re.findall(r"[\w']+",tweet,re.IGNORECASE) #Split each tweet to retain only the words + + for word in tweet_words: #For each word selected + if word in score_list: #If the word is in the sentiment file dictionary + word_score = score_list[word] # get the word score from this dictionary + else : #If the word is not in the dictionary + word_score = 0 #Put the score of this word to 0 + tweet_score += word_score #Sum scores of each word to get a total tweet score + print float(tweet_score) + +def main(): + scores = dict(sys.argv[1]) #Create the dictionary from the sentiment file + tweet_list = getTweet(sys.argv[2]) #Create the tweet list + sent(scores, tweet_list) #Score each tweet from the list if __name__ == '__main__': main() diff --git a/assignment1/twitterstream.py b/assignment1/twitterstream.py index 147754ac..f51a6515 100644 --- a/assignment1/twitterstream.py +++ b/assignment1/twitterstream.py @@ -3,10 +3,10 @@ # See assignment1.html instructions or README for how to get these credentials -api_key = "" -api_secret = "" -access_token_key = "" -access_token_secret = "" +api_key = "Ny337HDwyhYn1zUFCCRyZMR8x" +api_secret = "mLpJvS40VUAQYCYTzyP6OsrYWpQgLmZJEnlpQhdYRpReziaOdD" +access_token_key = "477650918-iRT9Q05sWBtT0sENpfBXaRPkKasAjbuKLPAU7f8T" +access_token_secret = "PannSYOvo3jJayK6Hw7fKs3p8JCiOM9jvY7UVVP4HaCYR" _debug = 0 diff --git a/assignment2/.DS_Store b/assignment2/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/assignment2/.DS_Store differ diff --git a/assignment2/essai.sql b/assignment2/essai.sql new file mode 100644 index 00000000..badd5117 --- /dev/null +++ b/assignment2/essai.sql @@ -0,0 +1,8 @@ +.mode column +SELECT COUNT(*) FROM( +SELECT f.docid, sum(f.count) +FROM Frequency f +GROUP BY f.docid +HAVING sum(f.count)>300) +; + diff --git a/assignment2/part_a.txt b/assignment2/part_a.txt new file mode 100644 index 00000000..93e78032 --- /dev/null +++ b/assignment2/part_a.txt @@ -0,0 +1 @@ +138 diff --git a/assignment2/part_b.txt b/assignment2/part_b.txt new file mode 100644 index 00000000..bc6298e8 --- /dev/null +++ b/assignment2/part_b.txt @@ -0,0 +1 @@ +110 diff --git a/assignment2/part_c.txt b/assignment2/part_c.txt new file mode 100644 index 00000000..d3824c29 --- /dev/null +++ b/assignment2/part_c.txt @@ -0,0 +1 @@ +324 diff --git a/assignment2/part_d.txt b/assignment2/part_d.txt new file mode 100644 index 00000000..8c61d23e --- /dev/null +++ b/assignment2/part_d.txt @@ -0,0 +1 @@ +58 diff --git a/assignment2/part_e.txt b/assignment2/part_e.txt new file mode 100644 index 00000000..b4de3947 --- /dev/null +++ b/assignment2/part_e.txt @@ -0,0 +1 @@ +11 diff --git a/assignment2/part_f.txt b/assignment2/part_f.txt new file mode 100644 index 00000000..00750edc --- /dev/null +++ b/assignment2/part_f.txt @@ -0,0 +1 @@ +3 diff --git a/assignment2/part_g.txt b/assignment2/part_g.txt new file mode 100644 index 00000000..f9794675 --- /dev/null +++ b/assignment2/part_g.txt @@ -0,0 +1 @@ +2874 diff --git a/assignment2/part_h.txt b/assignment2/part_h.txt new file mode 100644 index 00000000..00e70e9d --- /dev/null +++ b/assignment2/part_h.txt @@ -0,0 +1 @@ +19 diff --git a/assignment2/part_i.txt b/assignment2/part_i.txt new file mode 100644 index 00000000..62f94575 --- /dev/null +++ b/assignment2/part_i.txt @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/assignment2/reuters.db b/assignment2/reuters.db index 700bb9cb..bee86db6 100644 Binary files a/assignment2/reuters.db and b/assignment2/reuters.db differ diff --git a/assignment2/sql_1a.sql b/assignment2/sql_1a.sql new file mode 100644 index 00000000..616f2578 --- /dev/null +++ b/assignment2/sql_1a.sql @@ -0,0 +1,6 @@ +.output part_a.txt +SELECT count(*) FROM ( + SELECT * + FROM frequency f + WHERE f.docid = "10398_txt_earn" +); diff --git a/assignment2/sql_1b.sql b/assignment2/sql_1b.sql new file mode 100644 index 00000000..674622dc --- /dev/null +++ b/assignment2/sql_1b.sql @@ -0,0 +1,6 @@ +.output part_b.txt +SELECT count(*) FROM ( +SELECT f.term +FROM frequency f +WHERE f.docid = "10398_txt_earn" and f.count = 1 +); \ No newline at end of file diff --git a/assignment2/sql_1c.sql b/assignment2/sql_1c.sql new file mode 100644 index 00000000..e3e7fff0 --- /dev/null +++ b/assignment2/sql_1c.sql @@ -0,0 +1,10 @@ +.output part_c.txt +SELECT count(*) FROM( +SELECT f.term +FROM frequency f +WHERE f.docid = "10398_txt_earn" and f.count = 1 +UNION +SELECT f.term +FROM frequency f +WHERE f.docid = "925_txt_trade" and f.count = 1 +); \ No newline at end of file diff --git a/assignment2/sql_1d.sql b/assignment2/sql_1d.sql new file mode 100644 index 00000000..99e7ff9c --- /dev/null +++ b/assignment2/sql_1d.sql @@ -0,0 +1,7 @@ +.output part_d.txt +SELECT COUNT(*) FROM( +SELECT DISTINCT f.docid, count(f.docid) +FROM frequency f +WHERE f.term = "law" or f.term = "legal" +GROUP BY f.docid +); diff --git a/assignment2/sql_1e.sql b/assignment2/sql_1e.sql new file mode 100644 index 00000000..4faba68b --- /dev/null +++ b/assignment2/sql_1e.sql @@ -0,0 +1,11 @@ +.output part_e.txt +SELECT COUNT(*) FROM( +SELECT f.docid, count(f.docid) as "D" +FROM frequency f +GROUP BY f.docid +HAVING count(f.docid) > 300 +); + + + + diff --git a/assignment2/sql_1f.sql b/assignment2/sql_1f.sql new file mode 100644 index 00000000..1d41172f --- /dev/null +++ b/assignment2/sql_1f.sql @@ -0,0 +1,10 @@ +.output part_f.txt +SELECT COUNT(*) FROM( +SELECT DISTINCT f.docid +FROM frequency f +WHERE f.term = "transactions" +INTERSECT +SELECT DISTINCT f.docid +FROM frequency f +WHERE f.term = "world" +); diff --git a/assignment2/sql_2g.sql b/assignment2/sql_2g.sql new file mode 100644 index 00000000..930dbe33 --- /dev/null +++ b/assignment2/sql_2g.sql @@ -0,0 +1,9 @@ +.output part_g.txt +.mode column +SELECT S FROM( +SELECT a.row_num as "R", b.col_num as "C", sum(a.value * b.value) as "S" +FROM a,b +WHERE a.col_num = b.row_num +GROUP BY a.row_num, b.col_num) +WHERE R = 2 and C = 3; + diff --git a/assignment2/sql_3h.sql b/assignment2/sql_3h.sql new file mode 100644 index 00000000..0c5d9f04 --- /dev/null +++ b/assignment2/sql_3h.sql @@ -0,0 +1,8 @@ +.output part_h.txt +.mode column +SELECT S FROM( +SELECT a.docid as "doc1", b.docid as "doc2", sum(a.count * b.count) as "S" +FROM frequency a,frequency b +WHERE a.term = b.term +GROUP BY a.docid, b.docid) +WHERE doc1 = "10080_txt_crude" and doc2 = "17035_txt_earn"; diff --git a/assignment2/sql_3i.sql b/assignment2/sql_3i.sql new file mode 100644 index 00000000..b352bf30 --- /dev/null +++ b/assignment2/sql_3i.sql @@ -0,0 +1,19 @@ +.mode column + +CREATE VIEW tab AS +SELECT * FROM frequency +UNION +SELECT 'q' as docid, 'washington' as term, 1 as count +UNION +SELECT 'q' as docid, 'taxes' as term, 1 as count +UNION +SELECT 'q' as docid, 'treasury' as term, 1 as count; + + +SELECT a.docid as "doc1", sum(a.count * b.count) as "S" +FROM tab a,tab b +WHERE a.term = b.term and b.docid = 'q' +GROUP BY a.docid +ORDER BY S DESC limit 10; + + diff --git a/assignment3/data/MapReduce.py b/assignment3/data/MapReduce.py new file mode 100644 index 00000000..34aacac2 --- /dev/null +++ b/assignment3/data/MapReduce.py @@ -0,0 +1,26 @@ +import json + +class MapReduce: + def __init__(self): + self.intermediate = {} + self.result = [] + + def emit_intermediate(self, key, value): + self.intermediate.setdefault(key, []) + self.intermediate[key].append(value) + + def emit(self, value): + self.result.append(value) + + def execute(self, data, mapper, reducer): + for line in data: + record = json.loads(line) + mapper(record) + + for key in self.intermediate: + reducer(key, self.intermediate[key]) + + #jenc = json.JSONEncoder(encoding='latin-1') + jenc = json.JSONEncoder() + for item in self.result: + print jenc.encode(item) diff --git a/assignment3/data/MapReduce.pyc b/assignment3/data/MapReduce.pyc new file mode 100644 index 00000000..36916ea4 Binary files /dev/null and b/assignment3/data/MapReduce.pyc differ diff --git a/assignment3/data/asymmetric_friendships.py b/assignment3/data/asymmetric_friendships.py new file mode 100644 index 00000000..a5e875e3 --- /dev/null +++ b/assignment3/data/asymmetric_friendships.py @@ -0,0 +1,33 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + mr.emit_intermediate(record[0], record[1]) + mr.emit_intermediate(record[1], record[0]) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + values = list_of_values[:] + for v in list_of_values: + if list_of_values.count(v) > 1 : + values = [x for x in values if x != v] + for v in values: + mr.emit((key, v)) + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) diff --git a/assignment3/data/friend_count.py b/assignment3/data/friend_count.py new file mode 100644 index 00000000..e7fe7c6d --- /dev/null +++ b/assignment3/data/friend_count.py @@ -0,0 +1,31 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + key = record[0] + mr.emit_intermediate(key, 1) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + total = 0 + for v in list_of_values: + total += v + mr.emit((key, total)) + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) diff --git a/assignment3/data/inverted_index.py b/assignment3/data/inverted_index.py new file mode 100644 index 00000000..489954c0 --- /dev/null +++ b/assignment3/data/inverted_index.py @@ -0,0 +1,32 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + key = record[0] + value = record[1] + words = value.split() + for w in words: + mr.emit_intermediate(w, record[0]) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + listDoc = list(set(list_of_values)) + mr.emit((key, listDoc)) + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) \ No newline at end of file diff --git a/assignment3/data/join.py b/assignment3/data/join.py new file mode 100644 index 00000000..e98a9d27 --- /dev/null +++ b/assignment3/data/join.py @@ -0,0 +1,35 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + table = record[0] + order = record[1] + value = [record[0],record] + mr.emit_intermediate(order, value) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + for val in list_of_values: + result = list(list_of_values[0][1]) + if val[0] == "line_item": + for v in val[1]: + result.append(v) + mr.emit(result) + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) \ No newline at end of file diff --git a/assignment3/data/multiply.py b/assignment3/data/multiply.py new file mode 100644 index 00000000..d76965b5 --- /dev/null +++ b/assignment3/data/multiply.py @@ -0,0 +1,42 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + if record[0] == "a": + for k in range(0,5,1): + mr.emit_intermediate((record[1],k), record) + if record[0] == "b": + for k in range(0,5,1): + mr.emit_intermediate((k,record[2]), record) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + #print key, list_of_values + a = [0] * 5 + b = [0] * 5 + for l in list_of_values: + if l[0] == "a": + a[l[2]] = l[3] + if l[0] == "b": + b[l[1]] = l[3] + result = sum([i*j for i,j in zip(a,b)]) + value = (key[0], key[1], result) + mr.emit(value) + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) diff --git a/assignment3/data/unique_trims.py b/assignment3/data/unique_trims.py new file mode 100644 index 00000000..89e149f1 --- /dev/null +++ b/assignment3/data/unique_trims.py @@ -0,0 +1,30 @@ +import MapReduce +import sys + +""" +Word Count Example in the Simple Python MapReduce Framework +""" + +mr = MapReduce.MapReduce() + +# ============================= +# Do not modify above this line + +def mapper(record): + # key: document identifier + # value: document contents + key = record[0] + value = record[1] + mr.emit_intermediate(value[0:-10],key) + +def reducer(key, list_of_values): + # key: word + # value: list of occurrence counts + mr.emit(key) + + +# Do not modify below this line +# ============================= +if __name__ == '__main__': + inputdata = open(sys.argv[1]) + mr.execute(inputdata, mapper, reducer) diff --git a/assignment5/.Rhistory b/assignment5/.Rhistory new file mode 100644 index 00000000..d0349b3d --- /dev/null +++ b/assignment5/.Rhistory @@ -0,0 +1,512 @@ +test +power.t.test(n = 100, delta = 0.01, sd = 0.04, type = "one.sample", alt = "one.sided")$power +power.t.test(power = 0.9, delta = 0.01, sd = 0.04, type = "one.sample", alt = "one.sided")$n +log(10) +x <- -5:5 +y <- c(5.12, 3.93, 2.67, 1.87, 0.52, 0.08, 0.93, 2.05, 2.54, 3.87, 4.97) +x +y +knots <- 0 +splineTerms <- sapply(knots, function(knot) (x > knot) * (x - knot)) +splineTerms +(xMat <- cbind(1, x, splineTerms)) +xMat +fit6 <- lm(y ~ xMat - 1) +summary(fit6) +yhat <- predict(fit6) +yhat +plot(x, y, frame = FALSE, pch = 21, bg = "lightblue", cex = 2) +lines(x, yhat, col = "red", lwd = 2) +n<-500;x<-seq(0,4*pi,length=n);y<-sin(x)+rnorm(n,sd=.3) knots<-seq(0,8*pi,length=20); splineTerms<-sapply(knots,function(knot)(x>knot)*(x-knot)) xMat<-cbind(1,x,splineTerms) yhat<-predict(lm(y~xMat-1)) plot(x,y,frame=FALSE,pch=21,bg="lightblue",cex=2) lines(x,yhat,col="red",lwd=2) +n<-500 +x<-seq(0,4*pi,length=n) +y<-sin(x)+rnorm(n,sd=.3) +knots<-seq(0,8*pi,length=20) +splineTerms<-sapply(knots,function(knot)(x>knot)*(x-knot)) +xMat<-cbind(1,x,splineTerms) +yhat<-predict(lm(y~xMat-1)) +plot(x,y,frame=FALSE,pch=21,bg="lightblue",cex=2) +lines(x,yhat,col="red",lwd=2) +knots +splineTerms +knots +summary(lm(y~xMat-1)) +library(MASS) +str(shuttle) +shuttle$use <- as.numeric(shuttle$use) +str(shuttle) +fit <- glm(use ~ factor(wind), data= shuttle, family = "binomial") +fit <- glm(factor(use) ~ factor(wind), data= shuttle, family = "binomial") +summary(fit) +coef(fit) +a <- coef(fit) +(a[1]/a[1]+a[2]) +a <- exp(coef(fit)) +(a[1]/a[1]+a[2]) +a +fit2 <- glm(factor(use) ~ factor(wind) - 1, data = shuttle, family =binomial) +coef(fit2) +c <- exp(coef(fit2)) +c +c[1]/c[2] +shuttle$usebin <- as.numeric(shuttle$use == "auto") +str(shuttle) +rm(list = ls()) +library(MASS) +str(shuttle) +shuttle$usebin <- as.numeric(shuttle$use == "auto") +str(shuttle) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle)) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle) +summary(fit) +fit <- glm(use ~ factor(wind), family = binomial, data = shuttle) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle) +fit2 <- glm(use ~ factor(wind), family = binomial, data = shuttle) +summary(fit2) +fit3 <- glm(factor(use) ~ factor(wind), family = binomial, data = shuttle) +summary(fit3) +coef <- coef(summary(fit)) +coef +coef.odds <- exp(c(coef[1,1], coef[2,1])) +coef.odds +coef.odds[1]/coef.odds[2] +0.2513/0.2831 +coef.odds[2]/coef.odds[1] +exp(coef(fit)[1]) +exp(coef(fit)[2]) +exp(-coef(fit)[2]) +exp(-coef(fit)[1]) +1.28/1.32 +str(shuttle) +shuttle$usebin <- as.numeric(as.character(shuttle$use == "auto")) +str(shuttle) +shuttle$use <- as.character(shuttle$use) +str(shuttle$use) +shuttle$usebin <- as.numeric(shuttle$use == "auto") +str(shuttle)o +str(shuttle) +shuttle$usebin <- factor(shuttle$usebin) +fit4 <- glm(usebin ~ wind, data = shuttle, family = binomial) +c <- coef(fit4) +c +c <- c(c[1], c[1]+c[2]) +c +c <- exp(c) +c[1]/c[2] +fit5 <- glm(use ~ factor(wind) + magn, data = shuttle, family = "binomial") +fit5 <- glm(use ~ factor(wind) + factor(magn), data = shuttle, family = "binomial") +fit5 <- glm(use ~ wind + magn, data = shuttle, family = "binomial") +fit5 <- glm(usebin ~ wind + magn, data = shuttle, family = "binomial") +c <- coef(fit5)) +c <- coef(fit5) +c +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +c <- coef(fit5) +c +c <- c(c[1], c[2]) +c <- exp(c) +c[1]/c[2] +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +fit6 <- glm(I(1-usebin) ~ wind + magn -1, data = shuttle, family = "binomial") +shuttle$usebin <- as.numeric(shuttle$usebin) +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +fit5 <- glm(usebin ~ factor(wind) -1, data = shuttle, family = "binomial") +fit5 <- glm(I(1-usebin) ~ factor(wind) -1, data = shuttle, family = "binomial") +fit5 <- glm(I(1-usebin) ~ wind -1, data = shuttle, family = "binomial") +fit5 <- glm(factor(I(1-usebin)) ~ wind -1, data = shuttle, family = "binomial") +coef(fit5) +data(InsectSprays) +str(InsectSprays) +fit1 <- glm(count ~ spray -1, data = InsectSprays, family = "Poisson") +fit1 <- glm(count ~ spray -1, data = InsectSprays, family = "poisson") +summary(fit1) +c <- coef(fit1) +c +c <- c(c[1], c[2]) +c <- exp(c) +c[1]/c[2] +fit1 <- glm(count ~ spray+offset(10), data = InsectSprays, family = "poisson") +fit1 <- glm(count ~ spray + offset(rep(2,length(InsectSprays$count))), data = InsectSprays, family = "poisson") +fit2 <- glm(count ~ spray + offset(log(10) + rep(2,length(InsectSprays$count))), data = InsectSprays, family = "poisson") +coef(fit1) +coef(fit2) +-log(10) +0.6741-log(10) +x <- -5:5 +y <- c(5.12, 3.93, 2.67, 1.87, 0.52, 0.08, 0.93, 2.05, 2.54, 3.87, 4.97) +knot <- c(0) +splineTerms <- sapply(knot, function(knot) (x>knot) * (x-knot)) +xMat <- cbind(1,x,splineTerms) +yhat <- predict(lm(y~ xMat -1)) +fit <- lm(y ~ xMat -1) +summary(fit) +plot(x,y) +x +yhat +y +xMat$x +fit1 <- glm(count ~ spray + offset(rep(2,length(InsectSprays$count)))-1, data = InsectSprays, family = "poisson") +fit2 <- glm(count ~ spray + offset(log(10) + rep(2,length(InsectSprays$count)))-1, data = InsectSprays, family = "poisson") +coef(fit1) +coef(fit2) +library(swirl) +swirl() +pt(2.5, lower.tail = FALSE) +pt(q = 2.5, df = 15, lower.tail = FALSE) +library(caret); library(lattice); library(ggplot2) +iris_modelRPART <- readRDS("iris-dataset.RDS"); iris_modelRPART$finalModel +iris_modelRPART <- readRDS("iris-dataset.RDS"); +library(swirl) +swirl() +qnorm(.95) +qnorm(.99) +pnorm(2) +pnorm(2, lower.tail = FALSE) +mybin +pbinom(6,size=8,prob=.5,lower.tail = FALSE) +pbinom(7,size=8,prob=.5,lower.tail = TRUE) +ppois(9) +ppois(9,5) +ppois(9,5, lower.tail = FALSE) +myplot(34) +myplot(33.3) +myplot(30) +myplot(28) +z <- qnorm(.95) +pnorm(30+z, mean=30,lower.tail = FALSE) +pnorm(30+z, mean=32,lower.tail = FALSE) +pnorm(30+z, mean=32,sd=1,lower.tail = FALSE) +pnorm(30+z, mean=32,sd=2,lower.tail = FALSE) +pnorm(30+z*2, mean=32,sd=2,lower.tail = FALSE) +powrt.t.test(n=16,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 2,sd=4,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 100,sd=200,type = "one.sample", alt = "one.sided")$power +power.t.test(power=.8,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,delta = 2,sd=4,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,delta = 100,sd=200,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,n=26,sd=1,type = "one.sample", alt = "one.sided")$delta +power.t.test(power=.8,n=27,sd=1,type = "one.sample", alt = "one.sided")$delta +head(pValues) +sum(pValues <.05) +sum(p.adjust(pValues, method = "bonferroni")<.05) +sum(p.adjust(pValues, method = "BH")<.05) +tail(trueStatus) +table(pValues2<.05, trueStatus) +24/500 +table(p.adjust(pValues2, method = "bonferroni")<.05, trueStatus) +table(p.adjust(pValues2, method = "BH")<.05, trueStatus) +(1/6)*1 + (1/6)*2 + (1/6)*3 + (1/6)*4 + (1/6)*5 + (1/6)*6 +print(g2) +head(sh) +nh +median(resampleMedians) +median(resampledMedians) +median(sh) +sam <- sample(fh, nh*B, replace = TRUE) +resam <- matrix(sam, B, nh) +meds <- apply(resam, 1, median) +median(fh) - median(meds) +sd(meds) +sd(resampledMedians) +quantile(resampledMedians, c(.025,.975)) +quantile(meds, c(.025,.975)) +dim(InsectSprays) +names(InsectSprays) +range(Bdata$count) +range(Cdata$count) +BCounts +BCcounts +group +testStat +obs <- testStat(BCcounts, group) +obs +mean(Bdata$count - Cdata$count) +sample(group) +perms <- sapply(1:10000, function(i) testStat(BCcounts, sample(group))) +mean(perms>obs) +testStat(DEcounts,group) +persm <- sapply(1:10000, function(i) testStat(DEcounts, sample(group))) +perms <- sapply(1:10000, function(i) testStat(DEcounts, sample(group))) +library(swirl) +swirl() +swirl() +dim(hunger) +948 +names(hunger) +fit <- lm(Numeric ~ Year, data = hunger) +summary(fit)$coef +lmF <- lm(Numeric[hunger$Sex == "Female"] ~ Year[hunger$Sex == "Female"], data = hunger) +lmM <- lm(Numeric[hunger$Sex == "Male"] ~ Year[hunger$Sex == "Male"], data = hunger) +lmBoth <- lm(Numeric ~ Year + Sex, data=hunger) +summary(lmBoth) +lmInter <- lm(Numeric ~ Year + Sex + Year*Sex, data=hunger) +summary(lmInter) +fit <- lm(y ~ x, out2) +plot(fit, which=1) +fitno <- lm(y ~ x, out2[-1,]) +plot(fitno, which=1) +coef(fit) - coef(fitno) +head(dfbeta(fit)) +resno <- out2[1,"y"] - predict(fitno, out2[1,]) +1 - resid(fit)[1]/resno +head(hatvalues(fit)) +sigma <- sqrt(sum((fit$residuals)^2) /fit$df.residual) +rstd <- resid(fit)/(sigma*sqrt(1-hatvalues(fit))) +head(cbind(rstd, rstandard(fit))) +plot(fit, which=3) +plot(fit, which=2) +sigma1 <- sqrt(sum((fitno$residuals)^2)/fitno$df.residual) +resid(fitno)/(sigma*sqrt(1-hatvalues)) +resid(fitno)/(sigma*sqrt(1-hatvalues(fitno))) +resid(fit)[1]/(sigma*sqrt(1-hatvalues(fit)[1])) +resid(fit)[1]/(sigma1*sqrt(1-hatvalues(fit)[1])) +head(rstudent(fit)) +dy <- predict(fitno, out2) - predict(fit, out2) +sum(dy^2)/(2*sigma^2) +plot(fit, which=5) +rgp1() +rgp2() +head(swiss) +md1 <- lm(Fertility ~ ., data=swiss) +mdl <- lm(Fertility ~ ., data=swiss) +vif(mdl) +mdl2 <- lm(Fertility ~ .-Examination, data=swiss) +vif(mdl2) +x1c <- simbias() +apply(x1c,1,mean) +fit1 <- lm(Fertility ~ Agriculture, data = swiss) +fit3 <- lm(Fertility ~ Agriculture + Examination + Education, data = swiss) +anova(fit1,fit3) +deviance(fit3) +d <- deviance(fit3)/43 +n <- (deviance(fit1) - deviance(fit3))/2 +n/d +pf(n/d,2,43,lower.tail = FALSE) +shapiro.test(fit3$residuals) +anova(fit1,fit3,fit5,fit6) +ravenData +mdl <- glm(ravenWinNum ~ ravenScore, family = "binomial", data = ravenData) +lodds <- predict(mdl, data.frame(ravenScore = c(0,3,6))) +exp(lodds)/(1+exp(lodds)) +summary(mdl) +exp(confint(mdl)) +anova(mdl) +qchisq(0.95,1) +var(rpois(1000,50)) +nxt() +head(hits) +class(hits[,"date"]) +as.integer(head(hits[,"date"])) +mdl <- glm(visits ~ date, poisson, hits) +summary(mdl) +exp(confint(mdl, "date")) +which.max(hits[,"visits"]) +hits[704,] +lambda <- mdl$fitted.values[704] +qpois(.95,lambda) +mdl2 <- glm(visits ~ date, poisson, data=hits, offset = log(visits+1)) +mdl2 <- glm(simplystats ~ date, poisson, data=hits, offset = log(visits+1)) +qpois(.95, mdl2$fitted.values[704]) +a = matrix(5,5) +a +a = matrix(0,5,5) +a +a[1,4] = 55 +a[1,5] = 78 +a +a[2,1] = 19 +a[2,3] = 21 +a[2,4] = 3 +a[2,5] = 81 +a[3,2] = 48 +a[3,3] = 50 +a[3,4] = 1 +a[4,2] = 33 +a[4,5] = 67 +a[5,1] = 95 +a[5,5] = 31 +a +b = matrix(0,5,5) +b +b[1,2] = 73 +b[1,5] = 42 +b[2,3]=82 +b +[3,1] = 83 +b[3,1] = 83 +b[3,2] = 13 +b[3,4] = 57 +b[4,1] = 48 +b[4,2] = 85 +b[4,3] = 18 +b[4,4] = 24 +b[5,1] = 98 +b[5,2] = 7 +b[5,5] = 3 +b +a%*%b +kings <- scan("http://robjhyndman.com/tsdldata/misc/kings.dat",skip=3) +kings +kings +kingstimeseries <- ts(kings) +kingstimeseries +births <- scan("http://robjhyndman.com/tsdldata/data/nybirth.dat") +births <- scan("http://robjhyndman.com/tsdldata/data/nybirths.dat") +birthstimeseries <- ts(births, frequency = 12, start = c(1946,1)) +birthstimeseries +souvenir <- scan("http://robjhyndman.com/tsdldata/data/fancy.dat") +souvenirtimeseries <- ts(souvenir, frequency = 12, start = c(1987,1)) +souvenirtimeseries +plot.ts(kingstimeseries) +plot.ts(birthstimeseries) +plot.ts(souvenirtimeseries) +logsouvenirtimeseries <- log(souvenirtimeseries) +plot.ts(logsouvenirtimeseries) +install.packages("TTR") +library(TTR) +kingstimeseriesSMA3 <- SMA(kingstimeseries, n=3) +plot.ts(kingstimeseriesSMA3) +kingstimeseriesSMA8 <- SMA(kingstimeseries, n=8) +plot.ts(kingstimeseriesSMA8) +birthstimeseriescomponents <- decompose(birthstimeseries) +birthstimeseriescomponents$seasonal +str(birthstimeseriescomponents) +plot(birthstimeseriescomponents) +birthstimeseriesseasonallyadjusted <- birthstimeseries - birthstimeseriescomponents$seasonal +plot(birthstimeseriesseasonallyadjusted) +souvenir <- scan("http://robjhyndman.com/tsdldata/husrt/precipl.dat", skip=1) +souvenir <- scan("http://robjhyndman.com/tsdldata/husrt/precip1.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/husrt/precipl.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/hurst/precipl.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/hurst/precip1.dat", skip=1) +rainseries <- ts(rain, start = c(1813)) +plot.ts(rainseries) +rainseriesforecasts <- HoltWinters(rainseries, beta = FALSE, gamma = FALSE) +rainseriesforecasts +rainseriesforecasts$fitted +plot(rainseriesforecasts) +rainseriesforecasts$SSE +HoltWinters(rainseries, beta = FALSE, gamma = FALSE, l.start = 23.56) +library(forecast) +rainseriesforecasts2 <- forecast.HoltWinters(rainseriesforecasts, h = 8) +rainseriesforecasts2 +plot.forecast(rainseriesforecasts2) +acf(rainseriesforecasts2$residuals, lag.max = 20) +Box.test(rainseriesforecasts2$residuals, lag=20, type = "Ljung-Box") +plot.ts(rainseriesforecasts2$residuals) +plotForecastErrors <- function(forecasterror) { +mybinsize <- IQR(forecasterror)/4 +mysd <- sd(forecasterror) +mymin <- min(forecasterror) - mysd*5 +mymax <- max(forecasterror) + mysd*3 +mynorm <- rnorm(10000,mean=0, sd=mysd) +mymin2 <- min(mynorm) +mymax2 <- max(mynorm) +if (mymin2 < mymin) {mymin <- mymin2} +if (mymax2 > mymax) {mymax <- mymax2} +mybins <- seq(mymin, mymax, mybinsize) +hist(forecasterror, col = "red", freq = FALSE, breaks = mybins) +myhist <- hist(mynorm, plot= FALSE, breaks = mybins) +points(myhist$mids, myhist$density, type = "l", col = "blue", lwd = 2) +} +plotForecastErrors(rainseriesforecasts2$residuals) +skirts <- scan("http://robjhyndman.com/tsdldata/roberts/skirts.dat", skip=5) +skirtsseries <- ts(skirts, start = c(1866)) +plot.ts(skirtsseries) +skirtsseriesforecasts <- HoltWinters((skirtsseries, gamma = FALSE)) +skirtsseriesforecasts <- HoltWinters(skirtsseries, gamma = FALSE) +skirtsseriesforecasts +plot(skirtsseriesforecasts) +HoltWinters(skirtsseries, gamma = FALSE, l.strat = 608, b.strat = 9) +HoltWinters(skirtsseries, gamma = FALSE, l.strat = 608, b.start = 9) +HoltWinters(skirtsseries, gamma = FALSE, l.start = 608, b.start = 9) +skirtsseriesforecasts2 <- forecast.HoltWinters(skirtsseriesforecasts, h = 19) +plot.forecast(skirtsseriesforecasts2) +acf(skirtsseriesforecasts2$residuals, lag.max = 20) +Box.test(skirtsseriesforecasts2$residuals, lag=20,type = "Ljung-Box") +plot.ts(skirtsseriesforecasts2$residuals) +plotForecastErrors(skirtsseriesforecasts2$residuals) +library(caret) +library(rpart) +library(tree) +library(randomForest) +library(e1071) +library(ggplot2) +dat <- read.csv("seaflow_21min.csv") +setwd("~/Documents/Coursera/University of Washington - Data Science at Scale/datasci_course_materials/assignment5") +dat <- read.csv("seaflow_21min.csv") +str(dat) +summary(dat) +set.seed(1) +inTrain <- createDataPartition(y=dat$pop, p=0.5, list=FALSE) +training <- dat[inTrain,] +testing <- dat[-inTrain,] +dim(training) +dim(testing) +mean(training$time) +g <- ggplot(data = training, aes(chl_small, pe, col = pop)) + geom_point() +g <- g + ggtitle("pe by chl_small colored by pop") +g +fol <- formula(pop ~ fsc_small + fsc_perp + fsc_big + pe + chl_big + chl_small) +model <- rpart(fol, method = "class", data=training) +print(model) +pred <- predict(model, testing, type = "class") +pred_acc <- sum(pred == testing$pop)/nrow(testing) +pred_acc +model_rf <- randomForest(fol, data=training) +pred_rf <- predict(model_rf, testing) +pred_rf__acc <- sum(pred_rf == testing$pop)/nrow(testing) +pred_rf__acc +importance(model_rf) +pred_svm <- predict(model_svm, testing) +pred_svm__acc <- sum(pred_svm == testing$pop)/nrow(testing) +model_svm <- svm(fol, data=training) +pred_svm <- predict(model_svm, testing) +pred_svm__acc <- sum(pred_svm == testing$pop)/nrow(testing) +pred_svm__acc +table(pred = pred, true = testing$pop) +table(pred = pred_rf, true = testing$pop) +table(pred = pred_svm, true = testing$pop) +set.seed(1) +dat2 <- subset(dat, dat$file_id != 208) +inTrain <- createDataPartition(y=dat2$pop, p=0.5, list=FALSE) +training2 <- dat2[inTrain,] +testing2 <- dat2[-inTrain,] +model_svm2 <- svm(fol, data=training2) +pred_svm2 <- predict(model_svm2, testing2) +pred_svm2__acc <- sum(pred_svm2 == testing2$pop)/nrow(testing2) +pred_svm2__acc +pred_svm2__acc - pred_svm__acc +g <- ggplot(data = training2, aes(chl_big, time)) + geom_point() +g <- g + ggtitle("time vs chl_big") +g +summary(training2) +g <- ggplot(data = training2, aes(fsc_big, time)) + geom_point() +g <- g + ggtitle("time vs fsc_big") +g +g <- ggplot(data = training, aes(chl_small, pe, col = pop)) + geom_point() +g <- g + ggtitle("pe by chl_small colored by pop") +g +pred$svm +pred_svm +table(pred = pred, true = testing$pop) +table(pred = pred_rf, true = testing$pop) +table(pred = pred_svm, true = testing$pop) +A = switch(pred_svm,crypto = "A", nano = "B", pico = "C", synecho = "D", ultra = "E", 0 ) +A = switch(pred_svm,crypto = "A", nano = "B", pico = "C", synecho = "D", ultra = "E") +dim(pred_svm) +length(pred_svm) +A = switch(pred_svm,"crypto" = "A", "nano" = "B", "pico" = "C", "synecho" = "D", "ultra" = "E") +function change(x){ +change <- function(x){ +switch(x,"crypto" = "A", "nano" = "B", "pico" = "C", "synecho" = "D", "ultra" = "E") +} +a = [1,2,3] +a= c(1,2,3) +a +mapply(change, a) +essai1 <- mapply(change, pred_svm) +head(essai1) +essai2 <- mapply(change, testing$pop) +table(pred = essai1, true = essai2) diff --git a/assignment5/RAssigment.Rmd b/assignment5/RAssigment.Rmd new file mode 100644 index 00000000..d696397a --- /dev/null +++ b/assignment5/RAssigment.Rmd @@ -0,0 +1,142 @@ +--- +title: "R Assignment: Classification of Ocean Microbes" +author: "RDSN" +date: "13 November 2015" +output: html_document +--- + + +```{r} +library(caret) +library(rpart) +library(tree) +library(randomForest) +library(e1071) +library(ggplot2) +``` + +```{r} +dat <- read.csv("seaflow_21min.csv") +str(dat) +``` + +```{r} +summary(dat) +``` + +```{r} +set.seed(1) +inTrain <- createDataPartition(y=dat$pop, p=0.5, list=FALSE) +training <- dat[inTrain,] +testing <- dat[-inTrain,] +``` + +```{r} +dim(training) +dim(testing) +``` + +```{r} +mean(training$time) +``` + +```{r} +g <- ggplot(data = training, aes(chl_small, pe, col = pop)) + geom_point() +g <- g + ggtitle("pe by chl_small colored by pop") +g +``` + +```{r} +fol <- formula(pop ~ fsc_small + fsc_perp + fsc_big + pe + chl_big + chl_small) +model <- rpart(fol, method = "class", data=training) +print(model) +``` + +```{r} +pred <- predict(model, testing, type = "class") + +pred_acc <- sum(pred == testing$pop)/nrow(testing) +pred_acc +``` + +```{r} +model_rf <- randomForest(fol, data=training) +``` + +```{r} +pred_rf <- predict(model_rf, testing) + +pred_rf__acc <- sum(pred_rf == testing$pop)/nrow(testing) +pred_rf__acc +``` + +```{r} +importance(model_rf) +``` + +```{r} +model_svm <- svm(fol, data=training) +``` + +```{r} +pred_svm <- predict(model_svm, testing) + +pred_svm__acc <- sum(pred_svm == testing$pop)/nrow(testing) +pred_svm__acc +``` + +```{r} +table(pred = pred, true = testing$pop) +table(pred = pred_rf, true = testing$pop) +table(pred = pred_svm, true = testing$pop) +``` + +```{r} +set.seed(1) +dat2 <- subset(dat, dat$file_id != 208) +inTrain <- createDataPartition(y=dat2$pop, p=0.5, list=FALSE) +training2 <- dat2[inTrain,] +testing2 <- dat2[-inTrain,] +``` + +```{r} +model_svm2 <- svm(fol, data=training2) +``` + +```{r} +pred_svm2 <- predict(model_svm2, testing2) + +pred_svm2__acc <- sum(pred_svm2 == testing2$pop)/nrow(testing2) +pred_svm2__acc +``` + +```{r} +pred_svm2__acc - pred_svm__acc +``` + +```{r} +g <- ggplot(data = training2, aes(chl_big, time)) + geom_point() +g <- g + ggtitle("time vs chl_big") +g +``` + +```{r} +# (fsc_small, fsc_perp, fsc_big, pe, chl_small, chl_big) + +summary(training2) + +g <- ggplot(data = training2, aes(fsc_big, time)) + geom_point() +g <- g + ggtitle("time vs fsc_big") +g +``` + +```{r} +change <- function(x){ +switch(x,"crypto" = "A", "nano" = "B", "pico" = "C", "synecho" = "D", "ultra" = "E") +} + +essai1 <- mapply(change, pred_svm) +essai2 <- mapply(change, testing$pop) +``` + + diff --git a/assignment6/.DS_Store b/assignment6/.DS_Store new file mode 100644 index 00000000..5008ddfc Binary files /dev/null and b/assignment6/.DS_Store differ diff --git a/assignment6/.Rhistory b/assignment6/.Rhistory new file mode 100644 index 00000000..0d0df870 --- /dev/null +++ b/assignment6/.Rhistory @@ -0,0 +1,512 @@ +str(shuttle) +shuttle$usebin <- as.numeric(shuttle$use == "auto") +str(shuttle) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle)) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle) +summary(fit) +fit <- glm(use ~ factor(wind), family = binomial, data = shuttle) +fit <- glm(use ~ factor(wind)-1, family = binomial, data = shuttle) +fit2 <- glm(use ~ factor(wind), family = binomial, data = shuttle) +summary(fit2) +fit3 <- glm(factor(use) ~ factor(wind), family = binomial, data = shuttle) +summary(fit3) +coef <- coef(summary(fit)) +coef +coef.odds <- exp(c(coef[1,1], coef[2,1])) +coef.odds +coef.odds[1]/coef.odds[2] +0.2513/0.2831 +coef.odds[2]/coef.odds[1] +exp(coef(fit)[1]) +exp(coef(fit)[2]) +exp(-coef(fit)[2]) +exp(-coef(fit)[1]) +1.28/1.32 +str(shuttle) +shuttle$usebin <- as.numeric(as.character(shuttle$use == "auto")) +str(shuttle) +shuttle$use <- as.character(shuttle$use) +str(shuttle$use) +shuttle$usebin <- as.numeric(shuttle$use == "auto") +str(shuttle)o +str(shuttle) +shuttle$usebin <- factor(shuttle$usebin) +fit4 <- glm(usebin ~ wind, data = shuttle, family = binomial) +c <- coef(fit4) +c +c <- c(c[1], c[1]+c[2]) +c +c <- exp(c) +c[1]/c[2] +fit5 <- glm(use ~ factor(wind) + magn, data = shuttle, family = "binomial") +fit5 <- glm(use ~ factor(wind) + factor(magn), data = shuttle, family = "binomial") +fit5 <- glm(use ~ wind + magn, data = shuttle, family = "binomial") +fit5 <- glm(usebin ~ wind + magn, data = shuttle, family = "binomial") +c <- coef(fit5)) +c <- coef(fit5) +c +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +c <- coef(fit5) +c +c <- c(c[1], c[2]) +c <- exp(c) +c[1]/c[2] +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +fit6 <- glm(I(1-usebin) ~ wind + magn -1, data = shuttle, family = "binomial") +shuttle$usebin <- as.numeric(shuttle$usebin) +fit5 <- glm(usebin ~ wind + magn -1, data = shuttle, family = "binomial") +fit5 <- glm(usebin ~ factor(wind) -1, data = shuttle, family = "binomial") +fit5 <- glm(I(1-usebin) ~ factor(wind) -1, data = shuttle, family = "binomial") +fit5 <- glm(I(1-usebin) ~ wind -1, data = shuttle, family = "binomial") +fit5 <- glm(factor(I(1-usebin)) ~ wind -1, data = shuttle, family = "binomial") +coef(fit5) +data(InsectSprays) +str(InsectSprays) +fit1 <- glm(count ~ spray -1, data = InsectSprays, family = "Poisson") +fit1 <- glm(count ~ spray -1, data = InsectSprays, family = "poisson") +summary(fit1) +c <- coef(fit1) +c +c <- c(c[1], c[2]) +c <- exp(c) +c[1]/c[2] +fit1 <- glm(count ~ spray+offset(10), data = InsectSprays, family = "poisson") +fit1 <- glm(count ~ spray + offset(rep(2,length(InsectSprays$count))), data = InsectSprays, family = "poisson") +fit2 <- glm(count ~ spray + offset(log(10) + rep(2,length(InsectSprays$count))), data = InsectSprays, family = "poisson") +coef(fit1) +coef(fit2) +-log(10) +0.6741-log(10) +x <- -5:5 +y <- c(5.12, 3.93, 2.67, 1.87, 0.52, 0.08, 0.93, 2.05, 2.54, 3.87, 4.97) +knot <- c(0) +splineTerms <- sapply(knot, function(knot) (x>knot) * (x-knot)) +xMat <- cbind(1,x,splineTerms) +yhat <- predict(lm(y~ xMat -1)) +fit <- lm(y ~ xMat -1) +summary(fit) +plot(x,y) +x +yhat +y +xMat$x +fit1 <- glm(count ~ spray + offset(rep(2,length(InsectSprays$count)))-1, data = InsectSprays, family = "poisson") +fit2 <- glm(count ~ spray + offset(log(10) + rep(2,length(InsectSprays$count)))-1, data = InsectSprays, family = "poisson") +coef(fit1) +coef(fit2) +library(swirl) +swirl() +pt(2.5, lower.tail = FALSE) +pt(q = 2.5, df = 15, lower.tail = FALSE) +library(caret); library(lattice); library(ggplot2) +iris_modelRPART <- readRDS("iris-dataset.RDS"); iris_modelRPART$finalModel +iris_modelRPART <- readRDS("iris-dataset.RDS"); +library(swirl) +swirl() +qnorm(.95) +qnorm(.99) +pnorm(2) +pnorm(2, lower.tail = FALSE) +mybin +pbinom(6,size=8,prob=.5,lower.tail = FALSE) +pbinom(7,size=8,prob=.5,lower.tail = TRUE) +ppois(9) +ppois(9,5) +ppois(9,5, lower.tail = FALSE) +myplot(34) +myplot(33.3) +myplot(30) +myplot(28) +z <- qnorm(.95) +pnorm(30+z, mean=30,lower.tail = FALSE) +pnorm(30+z, mean=32,lower.tail = FALSE) +pnorm(30+z, mean=32,sd=1,lower.tail = FALSE) +pnorm(30+z, mean=32,sd=2,lower.tail = FALSE) +pnorm(30+z*2, mean=32,sd=2,lower.tail = FALSE) +powrt.t.test(n=16,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 2,sd=4,type = "one.sample", alt = "one.sided")$power +power.t.test(n=16,delta = 100,sd=200,type = "one.sample", alt = "one.sided")$power +power.t.test(power=.8,delta = 2/4,sd=1,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,delta = 2,sd=4,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,delta = 100,sd=200,type = "one.sample", alt = "one.sided")$n +power.t.test(power=.8,n=26,sd=1,type = "one.sample", alt = "one.sided")$delta +power.t.test(power=.8,n=27,sd=1,type = "one.sample", alt = "one.sided")$delta +head(pValues) +sum(pValues <.05) +sum(p.adjust(pValues, method = "bonferroni")<.05) +sum(p.adjust(pValues, method = "BH")<.05) +tail(trueStatus) +table(pValues2<.05, trueStatus) +24/500 +table(p.adjust(pValues2, method = "bonferroni")<.05, trueStatus) +table(p.adjust(pValues2, method = "BH")<.05, trueStatus) +(1/6)*1 + (1/6)*2 + (1/6)*3 + (1/6)*4 + (1/6)*5 + (1/6)*6 +print(g2) +head(sh) +nh +median(resampleMedians) +median(resampledMedians) +median(sh) +sam <- sample(fh, nh*B, replace = TRUE) +resam <- matrix(sam, B, nh) +meds <- apply(resam, 1, median) +median(fh) - median(meds) +sd(meds) +sd(resampledMedians) +quantile(resampledMedians, c(.025,.975)) +quantile(meds, c(.025,.975)) +dim(InsectSprays) +names(InsectSprays) +range(Bdata$count) +range(Cdata$count) +BCounts +BCcounts +group +testStat +obs <- testStat(BCcounts, group) +obs +mean(Bdata$count - Cdata$count) +sample(group) +perms <- sapply(1:10000, function(i) testStat(BCcounts, sample(group))) +mean(perms>obs) +testStat(DEcounts,group) +persm <- sapply(1:10000, function(i) testStat(DEcounts, sample(group))) +perms <- sapply(1:10000, function(i) testStat(DEcounts, sample(group))) +library(swirl) +swirl() +swirl() +dim(hunger) +948 +names(hunger) +fit <- lm(Numeric ~ Year, data = hunger) +summary(fit)$coef +lmF <- lm(Numeric[hunger$Sex == "Female"] ~ Year[hunger$Sex == "Female"], data = hunger) +lmM <- lm(Numeric[hunger$Sex == "Male"] ~ Year[hunger$Sex == "Male"], data = hunger) +lmBoth <- lm(Numeric ~ Year + Sex, data=hunger) +summary(lmBoth) +lmInter <- lm(Numeric ~ Year + Sex + Year*Sex, data=hunger) +summary(lmInter) +fit <- lm(y ~ x, out2) +plot(fit, which=1) +fitno <- lm(y ~ x, out2[-1,]) +plot(fitno, which=1) +coef(fit) - coef(fitno) +head(dfbeta(fit)) +resno <- out2[1,"y"] - predict(fitno, out2[1,]) +1 - resid(fit)[1]/resno +head(hatvalues(fit)) +sigma <- sqrt(sum((fit$residuals)^2) /fit$df.residual) +rstd <- resid(fit)/(sigma*sqrt(1-hatvalues(fit))) +head(cbind(rstd, rstandard(fit))) +plot(fit, which=3) +plot(fit, which=2) +sigma1 <- sqrt(sum((fitno$residuals)^2)/fitno$df.residual) +resid(fitno)/(sigma*sqrt(1-hatvalues)) +resid(fitno)/(sigma*sqrt(1-hatvalues(fitno))) +resid(fit)[1]/(sigma*sqrt(1-hatvalues(fit)[1])) +resid(fit)[1]/(sigma1*sqrt(1-hatvalues(fit)[1])) +head(rstudent(fit)) +dy <- predict(fitno, out2) - predict(fit, out2) +sum(dy^2)/(2*sigma^2) +plot(fit, which=5) +rgp1() +rgp2() +head(swiss) +md1 <- lm(Fertility ~ ., data=swiss) +mdl <- lm(Fertility ~ ., data=swiss) +vif(mdl) +mdl2 <- lm(Fertility ~ .-Examination, data=swiss) +vif(mdl2) +x1c <- simbias() +apply(x1c,1,mean) +fit1 <- lm(Fertility ~ Agriculture, data = swiss) +fit3 <- lm(Fertility ~ Agriculture + Examination + Education, data = swiss) +anova(fit1,fit3) +deviance(fit3) +d <- deviance(fit3)/43 +n <- (deviance(fit1) - deviance(fit3))/2 +n/d +pf(n/d,2,43,lower.tail = FALSE) +shapiro.test(fit3$residuals) +anova(fit1,fit3,fit5,fit6) +ravenData +mdl <- glm(ravenWinNum ~ ravenScore, family = "binomial", data = ravenData) +lodds <- predict(mdl, data.frame(ravenScore = c(0,3,6))) +exp(lodds)/(1+exp(lodds)) +summary(mdl) +exp(confint(mdl)) +anova(mdl) +qchisq(0.95,1) +var(rpois(1000,50)) +nxt() +head(hits) +class(hits[,"date"]) +as.integer(head(hits[,"date"])) +mdl <- glm(visits ~ date, poisson, hits) +summary(mdl) +exp(confint(mdl, "date")) +which.max(hits[,"visits"]) +hits[704,] +lambda <- mdl$fitted.values[704] +qpois(.95,lambda) +mdl2 <- glm(visits ~ date, poisson, data=hits, offset = log(visits+1)) +mdl2 <- glm(simplystats ~ date, poisson, data=hits, offset = log(visits+1)) +qpois(.95, mdl2$fitted.values[704]) +a = matrix(5,5) +a +a = matrix(0,5,5) +a +a[1,4] = 55 +a[1,5] = 78 +a +a[2,1] = 19 +a[2,3] = 21 +a[2,4] = 3 +a[2,5] = 81 +a[3,2] = 48 +a[3,3] = 50 +a[3,4] = 1 +a[4,2] = 33 +a[4,5] = 67 +a[5,1] = 95 +a[5,5] = 31 +a +b = matrix(0,5,5) +b +b[1,2] = 73 +b[1,5] = 42 +b[2,3]=82 +b +[3,1] = 83 +b[3,1] = 83 +b[3,2] = 13 +b[3,4] = 57 +b[4,1] = 48 +b[4,2] = 85 +b[4,3] = 18 +b[4,4] = 24 +b[5,1] = 98 +b[5,2] = 7 +b[5,5] = 3 +b +a%*%b +kings <- scan("http://robjhyndman.com/tsdldata/misc/kings.dat",skip=3) +kings +kings +kingstimeseries <- ts(kings) +kingstimeseries +births <- scan("http://robjhyndman.com/tsdldata/data/nybirth.dat") +births <- scan("http://robjhyndman.com/tsdldata/data/nybirths.dat") +birthstimeseries <- ts(births, frequency = 12, start = c(1946,1)) +birthstimeseries +souvenir <- scan("http://robjhyndman.com/tsdldata/data/fancy.dat") +souvenirtimeseries <- ts(souvenir, frequency = 12, start = c(1987,1)) +souvenirtimeseries +plot.ts(kingstimeseries) +plot.ts(birthstimeseries) +plot.ts(souvenirtimeseries) +logsouvenirtimeseries <- log(souvenirtimeseries) +plot.ts(logsouvenirtimeseries) +install.packages("TTR") +library(TTR) +kingstimeseriesSMA3 <- SMA(kingstimeseries, n=3) +plot.ts(kingstimeseriesSMA3) +kingstimeseriesSMA8 <- SMA(kingstimeseries, n=8) +plot.ts(kingstimeseriesSMA8) +birthstimeseriescomponents <- decompose(birthstimeseries) +birthstimeseriescomponents$seasonal +str(birthstimeseriescomponents) +plot(birthstimeseriescomponents) +birthstimeseriesseasonallyadjusted <- birthstimeseries - birthstimeseriescomponents$seasonal +plot(birthstimeseriesseasonallyadjusted) +souvenir <- scan("http://robjhyndman.com/tsdldata/husrt/precipl.dat", skip=1) +souvenir <- scan("http://robjhyndman.com/tsdldata/husrt/precip1.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/husrt/precipl.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/hurst/precipl.dat", skip=1) +rain <- scan("http://robjhyndman.com/tsdldata/hurst/precip1.dat", skip=1) +rainseries <- ts(rain, start = c(1813)) +plot.ts(rainseries) +rainseriesforecasts <- HoltWinters(rainseries, beta = FALSE, gamma = FALSE) +rainseriesforecasts +rainseriesforecasts$fitted +plot(rainseriesforecasts) +rainseriesforecasts$SSE +HoltWinters(rainseries, beta = FALSE, gamma = FALSE, l.start = 23.56) +library(forecast) +rainseriesforecasts2 <- forecast.HoltWinters(rainseriesforecasts, h = 8) +rainseriesforecasts2 +plot.forecast(rainseriesforecasts2) +acf(rainseriesforecasts2$residuals, lag.max = 20) +Box.test(rainseriesforecasts2$residuals, lag=20, type = "Ljung-Box") +plot.ts(rainseriesforecasts2$residuals) +plotForecastErrors <- function(forecasterror) { +mybinsize <- IQR(forecasterror)/4 +mysd <- sd(forecasterror) +mymin <- min(forecasterror) - mysd*5 +mymax <- max(forecasterror) + mysd*3 +mynorm <- rnorm(10000,mean=0, sd=mysd) +mymin2 <- min(mynorm) +mymax2 <- max(mynorm) +if (mymin2 < mymin) {mymin <- mymin2} +if (mymax2 > mymax) {mymax <- mymax2} +mybins <- seq(mymin, mymax, mybinsize) +hist(forecasterror, col = "red", freq = FALSE, breaks = mybins) +myhist <- hist(mynorm, plot= FALSE, breaks = mybins) +points(myhist$mids, myhist$density, type = "l", col = "blue", lwd = 2) +} +plotForecastErrors(rainseriesforecasts2$residuals) +skirts <- scan("http://robjhyndman.com/tsdldata/roberts/skirts.dat", skip=5) +skirtsseries <- ts(skirts, start = c(1866)) +plot.ts(skirtsseries) +skirtsseriesforecasts <- HoltWinters((skirtsseries, gamma = FALSE)) +skirtsseriesforecasts <- HoltWinters(skirtsseries, gamma = FALSE) +skirtsseriesforecasts +plot(skirtsseriesforecasts) +HoltWinters(skirtsseries, gamma = FALSE, l.strat = 608, b.strat = 9) +HoltWinters(skirtsseries, gamma = FALSE, l.strat = 608, b.start = 9) +HoltWinters(skirtsseries, gamma = FALSE, l.start = 608, b.start = 9) +skirtsseriesforecasts2 <- forecast.HoltWinters(skirtsseriesforecasts, h = 19) +plot.forecast(skirtsseriesforecasts2) +acf(skirtsseriesforecasts2$residuals, lag.max = 20) +Box.test(skirtsseriesforecasts2$residuals, lag=20,type = "Ljung-Box") +plot.ts(skirtsseriesforecasts2$residuals) +plotForecastErrors(skirtsseriesforecasts2$residuals) +x = c(89,72,94,69) +m = mean(x) +range(x) +s = max(x) - min(x) +s +(89-m)/s +y = c(7921, 5184, 8836, 4761) +my = mean(y) +sy = max(y) - min(y) +sy +(4761-my)/sy +a = 2*(1,01)^3 + 2 +a <- 2*(1,01)^3 + 2 +a <- 2* (1,01)^3 + 2 +1,01^3 +a <- 2* (1.01)^3 + 2 +b <- 2* (0,99)^3 + 2 +b <- 2* (0.99)^3 + 2 +c <- 2*0.01 +a-b/c +(a-b)/c +u1 = c(1,2) +u2 = c(-3,0) +u4 = c(4,2) +u1 +u2 +u3 +u3 = u4 +u3 +x = c(-2,1) +setwd("~/Documents/Coursera/University of Washington - Data Science at Scale/datasci_course_materials/assignment6") +sea = read.csv('seattle_incidents_summer_2014.csv'); +san = read.csv('sanfrancisco_incidents_summer_2014.csv'); +str(sea) +dim(sea) +str(sea) +dim(san) +str(san) +str(sea) +names(sea) +length(unique(sea$RMS.CDW.ID)) +length(unique(sea$General.Offense.Number)) +length(unique(sea$Offense.Code)) +summary(sea) +View(sea) +str(sea) +length(unique(sea$General.Offense.Number)) +length(unique(sea$Offense.Code.Extension)) +max(sea$Date.Reported) +length(unique(sea$Census.Tract.2000)) +length(unique(sea$Month)) +length(unique(sea$Year)) +head(sea$Location) +str(sea) +v <- sea$Occurred.Date.or.Date.Range.Start +length(v) +head(v) +v <- as.date(v) +library(timeDate) +v <- as.date(v) +?date +head(date(v)) +a <- v[1] +a +date(a) +day(a) +sys.time(a) +Sys.time(a) +a +a-1 +a-a +as.date(a) +as.Date.POSIXlt(a) +as.Date.date(a) +as.integer(a) +a +as.timeDate(a) +sea = read.csv('seattle_incidents_summer_2014.csv', stringsAsFactors = FALSE); +dim(sea) # 32779 x 19 +str(sea) +names(sea) +length(unique(sea$RMS.CDW.ID)) +summary(sea) +sea = read.csv('seattle_incidents_summer_2014.csv'); +dim(sea) # 32779 x 19 +str(sea) +library(lubridate) +v <- sea$Occurred.Date.Range.End +head(v) +a <- v[1] +a +a <- ymd_hms(a) +a +a <- v[1] +a +a <- as.character(a) +a +a <- ymd_hms(a) +a +a <- v[1] +a <- as.character(a) +a +as.POSIXct(a, format = "%m/%d/%Y %H:%M:%S") +a <- as.POSIXct(a, format = "%m/%d/%Y %H:%M:%S") +a +day(a) +month(a) +year(a) +sea$Occurred.Date.Range.End <- as.character(sea$Occurred.Date.Range.End) +sea$Occurred.Date.or.Date.Range.Start <- as.character(sea$Occurred.Date.or.Date.Range.Start) +sea$Occurred.Date.Range.End <- as.POSIXct(sea$Occurred.Date.Range.End, format ="%m/%d/%Y %H:%M:%S") +sea$Occurred.Date.or.Date.Range.Start <- as.POSIXct(sea$Occurred.Date.or.Date.Range.Start, format ="%m/%d/%Y %H:%M:%S") +str(sea) +sea$Date.Reported <- as.character(sea$Date.Reported) +sea$Date.Reported <- as.POSIXct(sea$Date.Reported, format ="%m/%d/%Y %H:%M:%S") +str(sea) +require(gridExtra) +library(ggplot2) +require(gridExtra) +library(ggplot2) +g <- ggplot(data = sea, aes(Offense.Type ~ Date.Reported)) + geom_bar(position = "dodge") +g <- g + ggtitle("Incidents over time") +h <- ggplot(data = sea, aes(Summarized.Offense.Description ~ Date.Reported)) + geom_bar(position = "dodge") +h <- h + ggtitle("Incidents over time") +h <- h + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +grid.arrange(g,h,ncol=2) +g <- ggplot(data = sea, aes(Offense.Type, Date.Reported)) + geom_bar(position = "dodge") +g <- g + ggtitle("Incidents over time") +h <- ggplot(data = sea, aes(Summarized.Offense.Description, Date.Reported)) + geom_bar(position = "dodge") +h <- h + ggtitle("Incidents over time") +h <- h + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +grid.arrange(g,h,ncol=2) +g <- ggplot(data = sea, aes(Date.Reported,Offense.Type)) + geom_bar(position = "dodge") +g <- g + ggtitle("Incidents over time") +h <- ggplot(data = sea, aes(Date.Reported,Summarized.Offense.Description)) + geom_bar(position = "dodge") +h <- h + ggtitle("Incidents over time") +h <- h + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +grid.arrange(g,h,ncol=2) diff --git a/assignment6/Assignment1.Rmd b/assignment6/Assignment1.Rmd new file mode 100644 index 00000000..e9664680 --- /dev/null +++ b/assignment6/Assignment1.Rmd @@ -0,0 +1,130 @@ +--- +title: "Assignment" +author: "RDSN" +date: "28 November 2015" +output: html_document +--- + +# Digging into the Seattle end SanFransisco datasets released + +In this assignment, you will analyze criminal incident data from Seattle or San Francisco to visualize patterns and, if desired, contrast and compare patterns across the two cities. + +You will produce a blog-post-style visual narrative consisting of a series of visualizations interspersed with sufficient descriptive text to make a convincing argument. + +The assignment will be assessed by peer review. The rubric for assessment will include questions about the effectiveness and clarity of your argument, your use of visualization, and the completeness of your analysis. Reproducibility will also be considered, but will be evaluated subjectively -- peer reviewers will not be asked to recreate your results. + +If you want to see the code producing this analysis, it's all available at this link : report with code + +## Datasets overview + +### Seattle + +```{r} +sea = read.csv('seattle_incidents_summer_2014.csv'); +dim(sea) # 32779 x 19 +str(sea) +names(sea) + +``` + +These incidents are based on initial police reports taken by officers when responding to incidents around the city. The information enters our Records Management System (RMS) and is then transmitted out to data.seattle.gov. This information is published within 6 to 12 hours after the report is filed into the system. + +Let's check that every RMS code is unique. +```{r} +length(unique(sea$RMS.CDW.ID)) +``` +This corresponds to he number of rows. OK this RMS code is unique. + +Let's check what the attributes look like. +```{r} +summary(sea) +``` + + * RMS.CDW.ID : integer, 32 779 values + * General.Offense.Number : numeric, 16 937 values + * Offense.Code : factor, 92 levels + * Offense.Code.Extension : integer, 37 different values + * Offense.Type : factor, 147 levels + * Summary.Offense.Code : factor, 26 levels + * Summarized.Offense.Description : factor, 48 levels + * Date.Reported : factor, 15 766 levels + * Occurred.Date.or.Date.Range.Start : factor, 11 557 levels + * Occurred.Date.Range.End : factor, 5 935 levels + * Hundred.Block.Location : factor, 7 924 levels + * District.Sector : factor, 19 levels + * Zone.Beat : factor, 53 levels + * Census.Tract.2000 : numeric, 8 037 values + * Longitude, Latitude : numeric + * Location : factor, 12 970 levels + * Month : integer, 3 values (6 - June, 7 - July, 8 - August) + * Year : integer, 1 value - 2014 + +What we can observe from those values : + + * This dataset reports crimes appearing in the city of Seattle, in the summer 2014, from June to August 2014. + * The variable Location is a tuple composed by the Longitude variable and the Latitude variable. + * Times and dates are not in the appropriate format to make analysis. We must transform them so that we can use them to initialize plots. + * Different levels of details are available so that to group offenses. So we can choose different variables to get different levels of details to perform anaylsis. + * In the same way, the location can be defined by different variables (location, longitude, latitude, zone, distric sector). + + +Let's transform date variables from factors to dates and time. +```{r} +sea$Occurred.Date.Range.End <- as.character(sea$Occurred.Date.Range.End) +sea$Occurred.Date.or.Date.Range.Start <- as.character(sea$Occurred.Date.or.Date.Range.Start) +sea$Date.Reported <- as.character(sea$Date.Reported) + +sea$Occurred.Date.Range.End <- as.POSIXct(sea$Occurred.Date.Range.End, format ="%m/%d/%Y %H:%M:%S") +sea$Occurred.Date.or.Date.Range.Start <- as.POSIXct(sea$Occurred.Date.or.Date.Range.Start, format ="%m/%d/%Y %H:%M:%S") +sea$Date.Reported <- as.POSIXct(sea$Date.Reported, format ="%m/%d/%Y %H:%M:%S") + +``` + +Let's now try to answer some questions. + +### How do incidents vary by time of day + +```{r, fig.align='center', fig.height= 3.5, fig.width= 9, message = FALSE} + +ofType <- as.data.frame(table(sea$Offense.Type)) +colnames(ofType) <- c("offenseType", "freq") + +ofDate <- as.data.frame(table(sea$Date.Reported)) +colnames(ofDate) <- c("time", "freq") +ofDate$time <- as.character(ofDate$time) +ofDate$time <- as.POSIXct(ofDate$time, format ="%Y-%m-%d %H:%M:%S") +ofDate$year <- as.numeric(format(ofDate$time, "%Y")) +ofDate$month <- as.numeric(format(ofDate$time, "%m")) +ofDate <- subset(ofDate, ofDate$year == "2014" & (ofDate$month >= 6 & ofDate$month <= 8)) +ofDate$Date <- as.POSIXct(paste(format(ofDate$time, "%Y"),"/", format(ofDate$time, "%m"), "/", format(ofDate$time, "%d")), format = "%Y / %m / %d") + +#require(gridExtra) +library(ggplot2) + +g <- ggplot(data = ofDate, aes(x = Date,y = freq)) + geom_line() +g <- g + ggtitle("Incidents over time") + +h <- ggplot(data = ofType, aes(x = offenseType)) + geom_bar(position = "dodge") +h <- h + ggtitle("Incidents by Type") +h <- h + theme(axis.text.x = element_text(angle = 90, hjust = 1)) + +g +h + +#grid.arrange(g,h,ncol=2) +``` + + +### San Fransisco + +```{r} +san = read.csv('sanfrancisco_incidents_summer_2014.csv'); +dim(san) # 28993 x 13 +str(san) +``` + +```{r} +nibr <- read.csv("NIBRS.csv") +``` + + diff --git a/assignment6/Assignment1.html b/assignment6/Assignment1.html new file mode 100644 index 00000000..aa8fb2ea --- /dev/null +++ b/assignment6/Assignment1.html @@ -0,0 +1,272 @@ + + + + + + + + + + + + + + +Assignment + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+

Digging into the Seattle end SanFransisco datasets released

+

In this assignment, you will analyze criminal incident data from Seattle or San Francisco to visualize patterns and, if desired, contrast and compare patterns across the two cities.

+

You will produce a blog-post-style visual narrative consisting of a series of visualizations interspersed with sufficient descriptive text to make a convincing argument.

+

The assignment will be assessed by peer review. The rubric for assessment will include questions about the effectiveness and clarity of your argument, your use of visualization, and the completeness of your analysis. Reproducibility will also be considered, but will be evaluated subjectively – peer reviewers will not be asked to recreate your results.

+

If you want to see the code producing this analysis, it’s all available at this link : report with code

+
+

Datasets overview

+
+

Seattle

+
sea = read.csv('seattle_incidents_summer_2014.csv');
+dim(sea) # 32779 x 19
+
## [1] 32779    19
+
str(sea)
+
## 'data.frame':    32779 obs. of  19 variables:
+##  $ RMS.CDW.ID                       : int  483839 481252 481375 481690 478198 480485 470170 465137 461710 456091 ...
+##  $ General.Offense.Number           : num  2.02e+09 2.02e+09 2.02e+09 2.02e+09 2.02e+09 ...
+##  $ Offense.Code                     : Factor w/ 92 levels "1201","1202",..: 19 42 31 37 32 30 30 38 42 39 ...
+##  $ Offense.Code.Extension           : int  0 0 0 0 3 0 0 0 0 1 ...
+##  $ Offense.Type                     : Factor w/ 147 levels "[INC - CASE DC USE ONLY]",..: 15 43 121 20 122 117 117 42 43 40 ...
+##  $ Summary.Offense.Code             : Factor w/ 26 levels "1200","1300",..: 3 8 5 7 5 5 5 8 8 8 ...
+##  $ Summarized.Offense.Description   : Factor w/ 48 levels "[INC - CASE DC USE ONLY]",..: 6 20 26 9 29 29 29 20 20 20 ...
+##  $ Date.Reported                    : Factor w/ 15766 levels "01/02/2015 11:12:00 AM",..: 4720 3991 3617 3468 3304 3125 629 39 38 36 ...
+##  $ Occurred.Date.or.Date.Range.Start: Factor w/ 11557 levels "06/01/2014 01:00:00 AM",..: 3526 116 11508 2393 115 2275 116 10420 7872 6327 ...
+##  $ Occurred.Date.Range.End          : Factor w/ 5935 levels "","01/18/2015 09:00:00 AM",..: 1801 1509 1 1 5913 2533 60 10 1 1 ...
+##  $ Hundred.Block.Location           : Factor w/ 7924 levels "1 AV / BATTERY ST",..: 5508 2248 6086 5522 5840 3305 2432 2187 557 3091 ...
+##  $ District.Sector                  : Factor w/ 19 levels "","99","B","C",..: 9 4 7 12 9 16 15 3 5 5 ...
+##  $ Zone.Beat                        : Factor w/ 53 levels "","99","B1","B2",..: 22 7 17 31 23 44 40 3 11 9 ...
+##  $ Census.Tract.2000                : num  2900 6300 11301 8200 2700 ...
+##  $ Longitude                        : num  -122 -122 -122 -122 -122 ...
+##  $ Latitude                         : num  47.7 47.6 47.5 47.6 47.7 ...
+##  $ Location                         : Factor w/ 12970 levels "(0.0, 0.0)","(47.465062973, -122.337868218)",..: 10611 7628 872 5213 10823 2191 7640 9804 6525 6000 ...
+##  $ Month                            : int  6 6 8 6 6 6 6 8 8 7 ...
+##  $ Year                             : int  2014 2014 2014 2014 2014 2014 2014 2014 2014 2014 ...
+
names(sea)
+
##  [1] "RMS.CDW.ID"                       
+##  [2] "General.Offense.Number"           
+##  [3] "Offense.Code"                     
+##  [4] "Offense.Code.Extension"           
+##  [5] "Offense.Type"                     
+##  [6] "Summary.Offense.Code"             
+##  [7] "Summarized.Offense.Description"   
+##  [8] "Date.Reported"                    
+##  [9] "Occurred.Date.or.Date.Range.Start"
+## [10] "Occurred.Date.Range.End"          
+## [11] "Hundred.Block.Location"           
+## [12] "District.Sector"                  
+## [13] "Zone.Beat"                        
+## [14] "Census.Tract.2000"                
+## [15] "Longitude"                        
+## [16] "Latitude"                         
+## [17] "Location"                         
+## [18] "Month"                            
+## [19] "Year"
+

These incidents are based on initial police reports taken by officers when responding to incidents around the city. The information enters our Records Management System (RMS) and is then transmitted out to data.seattle.gov. This information is published within 6 to 12 hours after the report is filed into the system.

+

Let’s check that every RMS code is unique.

+
length(unique(sea$RMS.CDW.ID))
+
## [1] 32779
+

This corresponds to he number of rows. OK this RMS code is unique.

+

Let’s check what the attributes look like.

+
summary(sea)
+
##    RMS.CDW.ID      General.Offense.Number  Offense.Code  
+##  Min.   :  12470   Min.   :2.015e+07      2305   : 6230  
+##  1st Qu.:  47246   1st Qu.:2.014e+09      X      : 3305  
+##  Median : 999859   Median :2.014e+09      2399   : 3034  
+##  Mean   : 578650   Mean   :2.020e+09      2404   : 2871  
+##  3rd Qu.:1030116   3rd Qu.:2.014e+09      2903   : 1638  
+##  Max.   :1125252   Max.   :2.014e+11      1313   : 1368  
+##                                           (Other):14333  
+##  Offense.Code.Extension                         Offense.Type  
+##  Min.   : 0.0           THEFT-CARPROWL                : 6230  
+##  1st Qu.: 0.0           VEH-THEFT-AUTO                : 2588  
+##  Median : 0.0           THEFT-OTH                     : 2221  
+##  Mean   : 4.2           PROPERTY DAMAGE-NON RESIDENTIA: 1638  
+##  3rd Qu.: 1.0           ASSLT-NONAGG                  : 1320  
+##  Max.   :98.0           DISTURBANCE-OTH               : 1295  
+##                         (Other)                       :17487  
+##  Summary.Offense.Code Summarized.Offense.Description
+##  2300   :12161        CAR PROWL      : 6230         
+##  X      : 3305        OTHER PROPERTY : 3755         
+##  2200   : 3212        BURGLARY       : 3212         
+##  2400   : 2871        VEHICLE THEFT  : 3057         
+##  1300   : 2639        PROPERTY DAMAGE: 2365         
+##  2900   : 2365        ASSAULT        : 2018         
+##  (Other): 6226        (Other)        :12142         
+##                 Date.Reported        Occurred.Date.or.Date.Range.Start
+##  08/04/2014 07:00:00 PM:   11   07/01/2014 12:00:00 AM:   46          
+##  07/10/2014 01:16:00 PM:    9   08/01/2014 12:00:00 PM:   33          
+##  06/25/2014 05:26:00 PM:    8   07/25/2014 08:00:00 PM:   24          
+##  07/07/2014 08:00:00 PM:    8   08/01/2014 12:00:00 AM:   23          
+##  07/24/2014 11:05:00 AM:    8   06/01/2014 12:00:00 AM:   22          
+##  06/19/2014 02:52:00 PM:    7   08/02/2014 12:00:00 PM:   22          
+##  (Other)               :32728   (Other)               :32609          
+##            Occurred.Date.Range.End                  Hundred.Block.Location
+##                        :16280      4XX BLOCK OF NE NORTHGATE WY:  194     
+##  07/07/2014 07:00:00 AM:   21      16XX BLOCK OF 11 AV         :  138     
+##  06/05/2014 08:00:00 AM:   18      5XX BLOCK OF 3 AV           :  129     
+##  07/14/2014 08:00:00 AM:   17      4XX BLOCK OF PINE ST        :  119     
+##  07/19/2014 09:00:00 AM:   17      84XX BLOCK OF SEAVIEW PL NW :  117     
+##  06/30/2014 08:00:00 AM:   16      1XX BLOCK OF S WASHINGTON ST:  110     
+##  (Other)               :16410      (Other)                     :31972     
+##  District.Sector   Zone.Beat     Census.Tract.2000   Longitude     
+##  M      : 2642   E2     : 1089   Min.   :  100.1   Min.   :-122.4  
+##  K      : 2379   M3     :  968   1st Qu.: 4600.1   1st Qu.:-122.3  
+##  B      : 2338   B2     :  845   Median : 7500.4   Median :-122.3  
+##  N      : 2333   K2     :  841   Mean   : 6737.7   Mean   :-114.7  
+##  E      : 2255   M1     :  837   3rd Qu.: 9200.2   3rd Qu.:-122.3  
+##  J      : 2204   M2     :  837   Max.   :26500.1   Max.   :   0.0  
+##  (Other):18628   (Other):27362   NA's   :134                       
+##     Latitude                               Location         Month      
+##  Min.   : 0.00   (0.0, 0.0)                    : 2050   Min.   :6.000  
+##  1st Qu.:47.58   (47.7086028, -122.324615155)  :  120   1st Qu.:6.000  
+##  Median :47.61   (47.708602801, -122.324615156):   87   Median :7.000  
+##  Mean   :44.65   (47.717174472, -122.344896099):   85   Mean   :6.981  
+##  3rd Qu.:47.66   (47.615838397, -122.318168851):   77   3rd Qu.:8.000  
+##  Max.   :47.75   (47.602412415, -122.331082197):   67   Max.   :8.000  
+##                  (Other)                       :30293                  
+##       Year     
+##  Min.   :2014  
+##  1st Qu.:2014  
+##  Median :2014  
+##  Mean   :2014  
+##  3rd Qu.:2014  
+##  Max.   :2014  
+## 
+
    +
  • RMS.CDW.ID : integer, 32 779 values
  • +
  • General.Offense.Number : numeric, 16 937 values
  • +
  • Offense.Code : factor, 92 levels
  • +
  • Offense.Code.Extension : integer, 37 different values
  • +
  • Offense.Type : factor, 147 levels
  • +
  • Summary.Offense.Code : factor, 26 levels
  • +
  • Summarized.Offense.Description : factor, 48 levels
  • +
  • Date.Reported : factor, 15 766 levels
  • +
  • Occurred.Date.or.Date.Range.Start : factor, 11 557 levels
  • +
  • Occurred.Date.Range.End : factor, 5 935 levels
  • +
  • Hundred.Block.Location : factor, 7 924 levels
  • +
  • District.Sector : factor, 19 levels
  • +
  • Zone.Beat : factor, 53 levels
  • +
  • Census.Tract.2000 : numeric, 8 037 values
  • +
  • Longitude, Latitude : numeric
  • +
  • Location : factor, 12 970 levels
  • +
  • Month : integer, 3 values (6 - June, 7 - July, 8 - August)
  • +
  • Year : integer, 1 value - 2014
  • +
+

What we can observe from those values :

+
    +
  • This dataset reports crimes appearing in the city of Seattle, in the summer 2014, from June to August 2014.
  • +
  • The variable Location is a tuple composed by the Longitude variable and the Latitude variable.
  • +
  • Times and dates are not in the appropriate format to make analysis. We must transform them so that we can use them to initialize plots.
  • +
  • Different levels of details are available so that to group offenses. So we can choose different variables to get different levels of details to perform anaylsis.
  • +
  • In the same way, the location can be defined by different variables (location, longitude, latitude, zone, distric sector).
  • +
+
+
+

San Fransisco

+
san = read.csv('sanfrancisco_incidents_summer_2014.csv');
+dim(san) # 28993 x 13
+
## [1] 28993    13
+
str(san)
+
## 'data.frame':    28993 obs. of  13 variables:
+##  $ IncidntNum: int  140734311 140736317 146177923 146177531 140734220 140734349 140734349 140734349 140738147 140734258 ...
+##  $ Category  : Factor w/ 34 levels "ARSON","ASSAULT",..: 1 20 16 16 20 7 7 6 21 30 ...
+##  $ Descript  : Factor w/ 368 levels "ABANDONMENT OF CHILD",..: 15 179 143 143 132 247 239 93 107 347 ...
+##  $ DayOfWeek : Factor w/ 7 levels "Friday","Monday",..: 4 4 4 4 4 4 4 4 4 4 ...
+##  $ Date      : Factor w/ 92 levels "06/01/2014","06/02/2014",..: 92 92 92 92 92 92 92 92 92 92 ...
+##  $ Time      : Factor w/ 1379 levels "00:01","00:02",..: 1370 1365 1351 1351 1344 1334 1334 1334 1321 1321 ...
+##  $ PdDistrict: Factor w/ 10 levels "BAYVIEW","CENTRAL",..: 1 4 8 7 7 8 8 8 3 2 ...
+##  $ Resolution: Factor w/ 16 levels "ARREST, BOOKED",..: 12 12 12 12 12 1 1 1 12 2 ...
+##  $ Address   : Factor w/ 8055 levels "0 Block of 10TH ST",..: 6843 4022 1098 6111 5096 1263 1263 1263 1575 5236 ...
+##  $ X         : num  -122 -122 -122 -122 -123 ...
+##  $ Y         : num  37.7 37.8 37.8 37.8 37.8 ...
+##  $ Location  : Factor w/ 8732 levels "(37.7080829769301, -122.419241455854)",..: 1970 3730 5834 4802 4777 4993 4993 4993 2543 7598 ...
+##  $ PdId      : num  1.41e+13 1.41e+13 1.46e+13 1.46e+13 1.41e+13 ...
+
+
+
+ + +
+ + + + + + + + diff --git a/assignment6/Crimes.Rmd b/assignment6/Crimes.Rmd new file mode 100644 index 00000000..71b32f25 --- /dev/null +++ b/assignment6/Crimes.Rmd @@ -0,0 +1,348 @@ +--- +title: "Crimes Analysis in Seatlle and San Francisco in summer 2014" +author: "RDSN" +date: "30 November 2015" +output: html_document +--- + +## Digging into the Seattle and San Francisco datasets released + +We have been provided with datasets from cities of Seattle and San Francisco reporting criminal incidents in summer 2014. +This paper is about analyzing those datasets, visualazing and comparing patterns accross those two cities. +This analysis allowed us to infer that : + + * During summer 2014, The city of Seattle presents a number of offenses per capita higher than the city of San Francisco. + * Globally, for both cities, the type of offenses with the higher number of occurances is "All Other Crimes", which is not surprising in regard of the high number of sub-categories contained in this type of offenses. + * In San Francisco, there is a high number of larcenies per capita, and this number is far more important than in Seattle. + * In the meantime, there is a higher number of Public Disorders per capita in Seattle than in San Francisco during this period. + * From June to August, the number of Public Disorders per capita in San Francisco growed. + * Furthermore, we can observe that, on average, the number of Public Disorders per capita, in both cities, grows from June to July, and then starts to decrease from the beginning of August. + * Finally, we can observe that, on average, the number of larcenies per capita, in both cities, decreases slightly in June, is steady in July, and starts to grow slightly in August. + +We will go trhough all those statements in detail in this paper. + +If you want to see the report without code, it's all available at this link : [report without code](http://rpubs.com/rdsn/131998) or at the link under each figure. + +## Datasets overview + +First, we load the datasets, recorded in a .csv format, and see what we are provided with. +```{r} +sea = read.csv('seattle_incidents_summer_2014.csv'); +dim(sea) # 32779 x 19 +str(sea) +names(sea) +san = read.csv('sanfrancisco_incidents_summer_2014.csv'); +dim(san) # 28993 x 13 +str(san) +names(san) +``` + +What we can observe from those values : + + * These datasets report crimes appearing in the city of Seattle and San Francisco, in the summer 2014, from June to August 2014. + * Each dataset contains different pieces of information, such as location, date and time, crimes categories. Those pieces of information are reported in each city in a different way. For example, crimes categories are not the same in the Seattle and San Francisco report. That means that we will have to manipulate features so to enable a proper comparison before those two datasets. + * Once we have transformed those pieces of information such as to be able to perform comparison, we can analyze crimes through time, through categories, and through cities. + +First, let's transform those variables and create a single dataframe so that to compare values for those two cities. +```{r} +# SEATTLE +# Let's first retain only the variables we are interested in +sea_new <- sea[,c("Summarized.Offense.Description", "Occurred.Date.or.Date.Range.Start", "Year", "Month")] +# rename the columns for clarity +names(sea_new) <- c("offenseDescription", "dateRaw", "Year", "Month") +# transform features so they can be used to perform analysis +sea_new$offenseDescription <- as.character(sea_new$offenseDescription) +sea_new$dateRaw <- as.character(sea_new$dateRaw) +sea_new$dateRaw <- as.POSIXct(sea_new$dateRaw, format = "%m/%d/%Y %H:%M:%S") +sea_new$Date <- as.Date(as.POSIXct(sea_new$dateRaw)) + +# SAN FRANCISCO +# Let's first retain only the variables we are interested in +san_new <- san[,c("Category", "Date", "Time")] +# rename the columns for clarity +names(san_new) <- c("offenseDescription", "dateRaw", "Time") +# transform features so they can be used to perform analysis +san_new$offenseDescription <- as.character(san_new$offenseDescription) +san_new$dateRaw <- as.character(san_new$dateRaw) +san_new$Time <- as.character(san_new$Time) +san_new$dateRaw <- paste(san_new$dateRaw, san_new$Time) +san_new$dateRaw <- as.POSIXct(san_new$dateRaw, format = "%m/%d/%Y %H:%M") +san_new$Date <- as.Date(as.POSIXct(san_new$dateRaw)) +san_new$Year <- as.integer(format(san_new$dateRaw, "%Y")) +san_new$Month <- as.integer(format(san_new$dateRaw, "%m")) +san_new <- san_new[, c("offenseDescription", "dateRaw", "Year", "Month", "Date")] +``` +In order to create this signle dataframe, we have to convert all the crimes descriptions in each dataset so that both cities present the same categories. +To do so, we have collected the National Incident-Based Reporting System (NIBRS) data, which categorize crimes into universal categories. +This dataset can be found here : +The NIBRS data contains 15 high categories of crimes, and 294 sub-categories. +As we can observe from the Seattle and the San Francisco datasets : + + * Seattle data : 48 categories and 147 sub-categories + * San Francisco data : 34 categories and 368 sub-categories. +For the purpose of this analysis, we are going to fit categories in each of the datasets with the 15 categories from the NIBRS dataset. +```{r} +nibrs <- read.csv("NIBRS.csv") + +# SEATTLE +for (i in 1:nrow(sea_new)){ + sea_new$offenseDescription[i] <- switch(sea_new$offenseDescription[i], + "BURGLARY" = "Burglary", + "FRAUD" = "White Collar Crime", + "MAIL THEFT" = "Larceny", + "COUNTERFEIT" = "White Collar Crime", + "OTHER PROPERTY" = "All Other Crimes", + "EMBEZZLE" = "White Collar Crime", + "CAR PROWL" = "All Other Crimes", + "THREATS" = "Public Disorder", + "PROPERTY DAMAGE" = "Public Disorder", + "LOST PROPERTY" = "All Other Crimes", + "FORGERY" = "White Collar Crime", + "VEHICLE THEFT" = "Auto Theft", + "BURGLARY-SECURE PARKING-RES" = "Burglary", + "PICKPOCKET" = "Robbery", + "BIKE THEFT" = "Larceny", + "NARCOTICS" = "Drug & Alcohol", + "DISPUTE" = "Public Disorder", + "ASSAULT" = "Aggravated Assault", + "STOLEN PROPERTY" = "All Other Crimes", + "WARRANT ARREST" = "All Other Crimes", + "TRAFFIC" = "Traffic Accident", + "SHOPLIFTING" = "Larceny", + "DISTURBANCE" = "Public Disorder", + "VIOLATION OF COURT ORDER" = "All Other Crimes", + "ILLEGAL DUMPING" = "All Other Crimes", + "PROSTITUTION" = "Public Disorder", + "ROBBERY" = "Robbery", + "TRESPASS" = "All Other Crimes", + "LIQUOR VIOLATION" = "Drug & Alcohol", + "BIAS INCIDENT" = "All Other Crimes", + "THEFT OF SERVICES" = "Larceny", + "HOMICIDE" = "Murder", + "RECOVERED PROPERTY" = "All Other Crimes", + "OBSTRUCT" = "All Other Crimes", + "RECKLESS BURNING" = "All Other Crimes", + "INJURY" = "Aggravated Assault", + "WEAPON" = "Aggravated Assault", + "PURSE SNATCH" = "Robbery", + "FALSE REPORT" = "All Other Crimes", + "ELUDING" = "All Other Crimes", + "ANIMAL COMPLAINT" = "All Other Crimes", + "PORNOGRAPHY" = "All Other Crimes", + "DUI" = "Traffic Accident", + "FIREWORK" = "All Other Crimes", + "[INC - CASE DC USE ONLY]" = "All Other Crimes", + "PUBLIC NUISANCE" = "Public Disorder", + "DISORDERLY CONDUCT" = "Public Disorder", + "ESCAPE" = "All Other Crimes" + ) +} + +# SAN FRANCISCO +for (i in 1:nrow(san_new)){ + san_new$offenseDescription[i] <- switch(san_new$offenseDescription[i], + "ARSON" = "Arson", + "NON-CRIMINAL" = "All Other Crimes", + "LARCENY/THEFT" = "Larceny", + "DRUG/NARCOTIC" = "Drug & Alcohol", + "DRIVING UNDER THE INFLUENCE" = "Drug & Alcohol", + "OTHER OFFENSES" = "All Other Crimes", + "TRESPASS" = "All Other Crimes", + "VEHICLE THEFT" = "Auto Theft", + "ASSAULT" = "Aggravated Assault", + "FRAUD" = "White Collar Crime", + "SUSPICIOUS OCC" = "All Other Crimes", + "SECONDARY CODES" = "All Other Crimes", + "WEAPON LAWS" = "Aggravated Assault", + "MISSING PERSON" = "All Other Crimes", + "WARRANTS" = "All Other Crimes", + "ROBBERY" = "Robbery", + "DRUNKENNESS" = "Drug & Alcohol", + "PROSTITUTION" = "Public Disorder", + "LIQUOR LAWS" = "Drug & Alcohol", + "KIDNAPPING" = "All Other Crimes", + "FAMILY OFFENSES" = "Aggravated Assault", + "LOITERING" = "Public Disorder", + "DISORDERLY CONDUCT" = "Public Disorder", + "FORGERY/COUNTERFEITING" = "White Collar Crime", + "EMBEZZLEMENT" = "White Collar Crime", + "BURGLARY" = "Burglary", + "SUICIDE" = "All Other Crimes", + "VANDALISM" = "All Other Crimes", + "STOLEN PROPERTY" = "All Other Crimes", + "RUNAWAY" = "All Other Crimes", + "GAMBLING" = "All Other Crimes", + "EXTORTION" = "All Other Crimes", + "PORNOGRAPHY/OBSCENE MAT" = "All Other Crimes", + "BRIBERY" = "All Other Crimes" + ) +} + +# We now create a column "city" in each dataset +sea_new$City <- "Seattle" +san_new$City <- "San Francisco" +# Now we can create a new whole dataset binding rows +alldata <- rbind(sea_new, san_new) +alldata$Date <- as.Date(as.POSIXct(alldata$dateRaw, tz="CET"), tz="CET") +``` + +Let's make a plot of this whole new dataset. + +```{r} +ofDate <- as.data.frame(table(alldata$Date, alldata$City)) +colnames(ofDate) <- c("Date", "City", "Freq") +ofDate$Date <- as.Date(ofDate$Date) +``` + +```{r,fig.align='center', fig.height= 3.5, fig.width= 10, message = FALSE} +library(ggplot2) + +g <- ggplot(data = ofDate, aes(x = Date,y = Freq, colour = City)) + geom_line() +g <- g + xlab("Date") + ylab("Number of offenses") + ggtitle("Number of offenses in summer 2014 \n in Seattle and San Francisco") +g + +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +This plot seems to tell us that the number of offenses is higher in Seattle than in San Francisco. Indeed, we could have noticed before that the number of records in the Seattle dataset (32 779) is higher than in the San Francisco dataset (28 993). This trend may be just due to the fact that the number of people living in Seattle is greater than the ones living in San Francisco. +Let's check. + + * Seattle : [668 342](https://en.wikipedia.org/wiki/Demographics_of_Seattle) + * San Francisco : [805 235](https://suburbanstats.org/population/california/how-many-people-live-in-san-francisco) + +So if we plot again the evolution of the number of offenses over time, but this time taking into account the population, and so plotting this time the number of offenses per capita, here is what we get. +```{r} +pop_sea <- 668342 +pop_san <- 805235 + +ofDate$FreqperC <- ifelse(ofDate$City == "Seattle", ofDate$Freq/pop_sea, ofDate$Freq/pop_san) +``` + +```{r,fig.align='center', fig.height= 5, fig.width= 10, message = FALSE} +library(ggplot2) + +g <- ggplot(data = ofDate, aes(x = Date,y = FreqperC, colour = City)) + geom_line() + geom_smooth() +g <- g + xlab("Date") + ylab("Number of offenses per Capita") + ggtitle("Number of offenses per capita in summer 2014 \n in Seattle and San Francisco") +g +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +Let's notice that we have here plotted a smooth curve representing the trend for each city. +This plot allows us to understand that there are more offenses happening in summer 2014 in Seatlle than in San Francisco, this not being due to the demographics. Indeed, Seattle counts less inhabitants than San Francisco, that fact deeping the gap between the two cities in terms of number of offenses. + +Let's dig deeper. + +## Types of offenses + +Now we are going to watch the different types of offenses, trying to understand what kind happens the most. Let's have alook first at the general distribution, accross both cities. +```{r} +ofType0 <- as.data.frame(table(alldata$offenseDescription)) +colnames(ofType0) <- c("offenseType", "Freq") +ofType0$offenseType <- as.character(ofType0$offenseType) +``` + +```{r,fig.align='center', fig.height= 3.5, fig.width= 9, message = FALSE} +library(ggplot2) + +g <- ggplot(data = ofType0, aes(offenseType, Freq)) + geom_bar(stat = "identity", fill = "dark blue") +g <- g + ylab("Number of offenses") + xlab("Type of offenses") + ggtitle("Offenses in summer 2014") + coord_flip() +g +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +So, with this plot, we figure out that the category of offenses occuring the most is "All Other Crimes". That's not surprising because this category regroups a lot of sub-categories. The second most important one is "Larceny". Globally, we can print the top 5 most occuring offenses this way. +```{r} +ofType0 <- ofType0[order(ofType0$Freq, decreasing = TRUE),] +head(ofType0,5) +``` + +Do those categories are the same in both cities? +```{r} +ofType <- as.data.frame(table(alldata$offenseDescription, alldata$City)) +colnames(ofType) <- c("offenseType", "City", "Freq") +ofType$offenseType <- as.character(ofType$offenseType) +ofType <- ofType[order(ofType$Freq, decreasing = TRUE),] +ofType$FreqperC <- ifelse(ofType$City == "Seattle", ofType$Freq/pop_sea, ofType$Freq/pop_san) +``` + +```{r,fig.align='center', fig.height= 6, fig.width= 9, message = FALSE} +library(ggplot2) + +g <- ggplot(data = ofType, aes(offenseType, FreqperC, fill = City)) + geom_bar(stat = "identity", position="dodge") +g <- g + xlab("Type of offenses") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita, per type, \n in summer 2014 in Seattle and in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) +g +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +Here we see clearly that, appart from the category "All Other Crimes" for which in both cities the frequency is high, trends depend upon cities. +In Seattle, we observe that "Larceny" is far less occuring than in San Francisco. On the opposite, "Public Disorder" is far more occuring in Seattle while in San Francisco it stays relatively marginal. + +## Time evolution of offenses + +We can go further and watch those types of offenses month by month. +```{r} +ofTypeM <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Month)) +colnames(ofTypeM) <- c("offenseType", "City", "Month", "Freq") +ofTypeM$offenseType <- as.character((ofTypeM$offenseType)) +ofTypeM$FreqperC <- ifelse(ofTypeM$City == "Seattle", ofTypeM$Freq/pop_sea, ofTypeM$Freq/pop_san) +ofTypeMSe <- subset(ofTypeM, ofTypeM$City == "Seattle") +ofTypeMSa <- subset(ofTypeM, ofTypeM$City == "San Francisco") +``` + +```{r,fig.align='center', fig.height= 5, fig.width= 9, message = FALSE} +require(gridExtra) +library(ggplot2) + +g <- ggplot(data = ofTypeMSe, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge") +g <- g + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita \n by Month in 2014, in Seattle") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) + +h <- ggplot(data = ofTypeMSa, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge") +h <- h + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita by Month \n in 2014, in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) + +grid.arrange(g,h,ncol=2) +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +This plot gives us an overview of the offenses'evolution month by month, but it would be much clearer to plot lines. We will here focus on "Larceny" and "Public Disorder" as they are the most different categories between both cities. Let's try it. +```{r} +ofTypeM_new <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Date)) +colnames(ofTypeM_new) <- c("offenseType", "City", "Date", "Freq") +ofTypeM_new$offenseType <- as.character((ofTypeM_new$offenseType)) +ofTypeM_new$Date <- as.Date(ofTypeM_new$Date) +ofTypeM_new <- subset(ofTypeM_new, ofTypeM_new$offenseType == "Larceny" | ofTypeM_new$offenseType == "Public Disorder") +ofTypeM_new$FreqperC <- ifelse(ofTypeM_new$City == "Seattle", ofTypeM_new$Freq/pop_sea, ofTypeM_new$Freq/pop_san) +ofTypeM_newSe <- subset(ofTypeM_new, ofTypeM_new$City == "Seattle") +ofTypeM_newSa <- subset(ofTypeM_new, ofTypeM_new$City == "San Francisco") +``` + +```{r,fig.align='center', fig.height= 4, fig.width= 14, message = FALSE} +library(ggplot2) + +g <- ggplot(data = ofTypeM_newSe, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth() +g <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in Seattle") + +h <- ggplot(data = ofTypeM_newSa, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth() +h <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in San Francisco") + +grid.arrange(g,h,ncol=2) +``` + +[report without code](http://rpubs.com/rdsn/131998) + + +In this plot, we can observe that there is a speficic trend, the same one in both cities : + + * Larcenies tend to decrease slightly in June, stay steady during July, and then increase in August. + * Public Disorders tend to occur more frequently from June to July, and, by the end of July, start to decrease in a steep manner. + +There is certainly here more to investigate, which we would do if we had more time. diff --git a/assignment6/Crimes.html b/assignment6/Crimes.html new file mode 100644 index 00000000..01848173 --- /dev/null +++ b/assignment6/Crimes.html @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + +Crimes Analysis in Seatlle and San Francisco in summer 2014 + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+

Digging into the Seattle and San Francisco datasets released

+

We have been provided with datasets from cities of Seattle and San Francisco reporting criminal incidents in summer 2014.
This paper is about analyzing those datasets, visualazing and comparing patterns accross those two cities.
This analysis allowed us to infer that :

+
    +
  • During summer 2014, The city of Seattle presents a number of offenses per capita higher than the city of San Francisco.
  • +
  • Globally, for both cities, the type of offenses with the higher number of occurances is “All Other Crimes”, which is not surprising in regard of the high number of sub-categories contained in this type of offenses.
  • +
  • In San Francisco, there is a high number of larcenies per capita, and this number is far more important than in Seattle.
  • +
  • In the meantime, there is a higher number of Public Disorders per capita in Seattle than in San Francisco during this period.
  • +
  • From June to August, the number of Public Disorders per capita in San Francisco growed.
  • +
  • Furthermore, we can observe that, on average, the number of Public Disorders per capita, in both cities, grows from June to July, and then starts to decrease from the beginning of August.
  • +
  • Finally, we can observe that, on average, the number of larcenies per capita, in both cities, decreases slightly in June, is steady in July, and starts to grow slightly in August.
  • +
+

We will go trhough all those statements in detail in this paper.

+

If you want to see the report without code, it’s all available at this link : report without code or at the link under each figure.

+
+
+

Datasets overview

+

First, we load the datasets, recorded in a .csv format, and see what we are provided with.

+
sea = read.csv('seattle_incidents_summer_2014.csv');
+dim(sea) # 32779 x 19
+
## [1] 32779    19
+
str(sea)
+
## 'data.frame':    32779 obs. of  19 variables:
+##  $ RMS.CDW.ID                       : int  483839 481252 481375 481690 478198 480485 470170 465137 461710 456091 ...
+##  $ General.Offense.Number           : num  2.02e+09 2.02e+09 2.02e+09 2.02e+09 2.02e+09 ...
+##  $ Offense.Code                     : Factor w/ 92 levels "1201","1202",..: 19 42 31 37 32 30 30 38 42 39 ...
+##  $ Offense.Code.Extension           : int  0 0 0 0 3 0 0 0 0 1 ...
+##  $ Offense.Type                     : Factor w/ 147 levels "[INC - CASE DC USE ONLY]",..: 15 43 121 20 122 117 117 42 43 40 ...
+##  $ Summary.Offense.Code             : Factor w/ 26 levels "1200","1300",..: 3 8 5 7 5 5 5 8 8 8 ...
+##  $ Summarized.Offense.Description   : Factor w/ 48 levels "[INC - CASE DC USE ONLY]",..: 6 20 26 9 29 29 29 20 20 20 ...
+##  $ Date.Reported                    : Factor w/ 15766 levels "01/02/2015 11:12:00 AM",..: 4720 3991 3617 3468 3304 3125 629 39 38 36 ...
+##  $ Occurred.Date.or.Date.Range.Start: Factor w/ 11557 levels "06/01/2014 01:00:00 AM",..: 3526 116 11508 2393 115 2275 116 10420 7872 6327 ...
+##  $ Occurred.Date.Range.End          : Factor w/ 5935 levels "","01/18/2015 09:00:00 AM",..: 1801 1509 1 1 5913 2533 60 10 1 1 ...
+##  $ Hundred.Block.Location           : Factor w/ 7924 levels "1 AV / BATTERY ST",..: 5508 2248 6086 5522 5840 3305 2432 2187 557 3091 ...
+##  $ District.Sector                  : Factor w/ 19 levels "","99","B","C",..: 9 4 7 12 9 16 15 3 5 5 ...
+##  $ Zone.Beat                        : Factor w/ 53 levels "","99","B1","B2",..: 22 7 17 31 23 44 40 3 11 9 ...
+##  $ Census.Tract.2000                : num  2900 6300 11301 8200 2700 ...
+##  $ Longitude                        : num  -122 -122 -122 -122 -122 ...
+##  $ Latitude                         : num  47.7 47.6 47.5 47.6 47.7 ...
+##  $ Location                         : Factor w/ 12970 levels "(0.0, 0.0)","(47.465062973, -122.337868218)",..: 10611 7628 872 5213 10823 2191 7640 9804 6525 6000 ...
+##  $ Month                            : int  6 6 8 6 6 6 6 8 8 7 ...
+##  $ Year                             : int  2014 2014 2014 2014 2014 2014 2014 2014 2014 2014 ...
+
names(sea)
+
##  [1] "RMS.CDW.ID"                       
+##  [2] "General.Offense.Number"           
+##  [3] "Offense.Code"                     
+##  [4] "Offense.Code.Extension"           
+##  [5] "Offense.Type"                     
+##  [6] "Summary.Offense.Code"             
+##  [7] "Summarized.Offense.Description"   
+##  [8] "Date.Reported"                    
+##  [9] "Occurred.Date.or.Date.Range.Start"
+## [10] "Occurred.Date.Range.End"          
+## [11] "Hundred.Block.Location"           
+## [12] "District.Sector"                  
+## [13] "Zone.Beat"                        
+## [14] "Census.Tract.2000"                
+## [15] "Longitude"                        
+## [16] "Latitude"                         
+## [17] "Location"                         
+## [18] "Month"                            
+## [19] "Year"
+
san = read.csv('sanfrancisco_incidents_summer_2014.csv');
+dim(san) # 28993 x 13
+
## [1] 28993    13
+
str(san)
+
## 'data.frame':    28993 obs. of  13 variables:
+##  $ IncidntNum: int  140734311 140736317 146177923 146177531 140734220 140734349 140734349 140734349 140738147 140734258 ...
+##  $ Category  : Factor w/ 34 levels "ARSON","ASSAULT",..: 1 20 16 16 20 7 7 6 21 30 ...
+##  $ Descript  : Factor w/ 368 levels "ABANDONMENT OF CHILD",..: 15 179 143 143 132 247 239 93 107 347 ...
+##  $ DayOfWeek : Factor w/ 7 levels "Friday","Monday",..: 4 4 4 4 4 4 4 4 4 4 ...
+##  $ Date      : Factor w/ 92 levels "06/01/2014","06/02/2014",..: 92 92 92 92 92 92 92 92 92 92 ...
+##  $ Time      : Factor w/ 1379 levels "00:01","00:02",..: 1370 1365 1351 1351 1344 1334 1334 1334 1321 1321 ...
+##  $ PdDistrict: Factor w/ 10 levels "BAYVIEW","CENTRAL",..: 1 4 8 7 7 8 8 8 3 2 ...
+##  $ Resolution: Factor w/ 16 levels "ARREST, BOOKED",..: 12 12 12 12 12 1 1 1 12 2 ...
+##  $ Address   : Factor w/ 8055 levels "0 Block of 10TH ST",..: 6843 4022 1098 6111 5096 1263 1263 1263 1575 5236 ...
+##  $ X         : num  -122 -122 -122 -122 -123 ...
+##  $ Y         : num  37.7 37.8 37.8 37.8 37.8 ...
+##  $ Location  : Factor w/ 8732 levels "(37.7080829769301, -122.419241455854)",..: 1970 3730 5834 4802 4777 4993 4993 4993 2543 7598 ...
+##  $ PdId      : num  1.41e+13 1.41e+13 1.46e+13 1.46e+13 1.41e+13 ...
+
names(san)
+
##  [1] "IncidntNum" "Category"   "Descript"   "DayOfWeek"  "Date"      
+##  [6] "Time"       "PdDistrict" "Resolution" "Address"    "X"         
+## [11] "Y"          "Location"   "PdId"
+

What we can observe from those values :

+
    +
  • These datasets report crimes appearing in the city of Seattle and San Francisco, in the summer 2014, from June to August 2014.
  • +
  • Each dataset contains different pieces of information, such as location, date and time, crimes categories. Those pieces of information are reported in each city in a different way. For example, crimes categories are not the same in the Seattle and San Francisco report. That means that we will have to manipulate features so to enable a proper comparison before those two datasets.
  • +
  • Once we have transformed those pieces of information such as to be able to perform comparison, we can analyze crimes through time, through categories, and through cities.
  • +
+

First, let’s transform those variables and create a single dataframe so that to compare values for those two cities.

+
# SEATTLE
+# Let's first retain only the variables we are interested in
+sea_new <- sea[,c("Summarized.Offense.Description", "Occurred.Date.or.Date.Range.Start", "Year", "Month")]
+# rename the columns for clarity
+names(sea_new) <- c("offenseDescription", "dateRaw", "Year", "Month")
+# transform features so they can be used to perform analysis
+sea_new$offenseDescription <- as.character(sea_new$offenseDescription)
+sea_new$dateRaw <- as.character(sea_new$dateRaw)
+sea_new$dateRaw <- as.POSIXct(sea_new$dateRaw, format = "%m/%d/%Y %H:%M:%S")
+sea_new$Date <- as.Date(as.POSIXct(sea_new$dateRaw))
+
+# SAN FRANCISCO
+# Let's first retain only the variables we are interested in
+san_new <- san[,c("Category", "Date", "Time")]
+# rename the columns for clarity
+names(san_new) <- c("offenseDescription", "dateRaw", "Time")
+# transform features so they can be used to perform analysis
+san_new$offenseDescription <- as.character(san_new$offenseDescription)
+san_new$dateRaw <- as.character(san_new$dateRaw)
+san_new$Time <- as.character(san_new$Time)
+san_new$dateRaw <- paste(san_new$dateRaw, san_new$Time)
+san_new$dateRaw <- as.POSIXct(san_new$dateRaw, format = "%m/%d/%Y %H:%M")
+san_new$Date <- as.Date(as.POSIXct(san_new$dateRaw))
+san_new$Year <- as.integer(format(san_new$dateRaw, "%Y"))
+san_new$Month <- as.integer(format(san_new$dateRaw, "%m"))
+san_new <- san_new[, c("offenseDescription", "dateRaw", "Year", "Month", "Date")]
+

In order to create this signle dataframe, we have to convert all the crimes descriptions in each dataset so that both cities present the same categories.
To do so, we have collected the National Incident-Based Reporting System (NIBRS) data, which categorize crimes into universal categories.
This dataset can be found here : http://data.denvergov.org/download/gis/crime/csv/offense_codes.csv
The NIBRS data contains 15 high categories of crimes, and 294 sub-categories.
As we can observe from the Seattle and the San Francisco datasets :

+
    +
  • Seattle data : 48 categories and 147 sub-categories
  • +
  • San Francisco data : 34 categories and 368 sub-categories. For the purpose of this analysis, we are going to fit categories in each of the datasets with the 15 categories from the NIBRS dataset.
  • +
+
nibrs <- read.csv("NIBRS.csv")
+
+# SEATTLE
+for (i in 1:nrow(sea_new)){
+    sea_new$offenseDescription[i] <- switch(sea_new$offenseDescription[i], 
+           "BURGLARY" = "Burglary",
+           "FRAUD" = "White Collar Crime",
+           "MAIL THEFT" = "Larceny",
+           "COUNTERFEIT" = "White Collar Crime",
+           "OTHER PROPERTY" = "All Other Crimes", 
+           "EMBEZZLE" = "White Collar Crime",
+           "CAR PROWL" = "All Other Crimes",
+           "THREATS" = "Public Disorder",
+           "PROPERTY DAMAGE" = "Public Disorder",
+           "LOST PROPERTY" = "All Other Crimes",
+           "FORGERY" = "White Collar Crime",
+           "VEHICLE THEFT" = "Auto Theft",
+           "BURGLARY-SECURE PARKING-RES" = "Burglary",
+           "PICKPOCKET" = "Robbery",
+           "BIKE THEFT" = "Larceny",
+           "NARCOTICS" = "Drug & Alcohol",
+           "DISPUTE" = "Public Disorder",
+           "ASSAULT" = "Aggravated Assault",
+           "STOLEN PROPERTY" = "All Other Crimes",
+           "WARRANT ARREST" = "All Other Crimes",
+           "TRAFFIC" = "Traffic Accident",
+           "SHOPLIFTING" = "Larceny",
+           "DISTURBANCE" = "Public Disorder",
+           "VIOLATION OF COURT ORDER" = "All Other Crimes",
+           "ILLEGAL DUMPING" = "All Other Crimes",
+           "PROSTITUTION" = "Public Disorder",
+           "ROBBERY" = "Robbery",
+           "TRESPASS" = "All Other Crimes",
+           "LIQUOR VIOLATION" = "Drug & Alcohol",
+           "BIAS INCIDENT" = "All Other Crimes",
+           "THEFT OF SERVICES" = "Larceny",
+           "HOMICIDE" = "Murder",
+           "RECOVERED PROPERTY" = "All Other Crimes",
+           "OBSTRUCT" = "All Other Crimes",
+           "RECKLESS BURNING" = "All Other Crimes",
+           "INJURY" = "Aggravated Assault",
+           "WEAPON" = "Aggravated Assault",
+           "PURSE SNATCH" = "Robbery",
+           "FALSE REPORT" = "All Other Crimes",
+           "ELUDING" = "All Other Crimes",
+           "ANIMAL COMPLAINT" = "All Other Crimes",
+           "PORNOGRAPHY" = "All Other Crimes",
+           "DUI" = "Traffic Accident",
+           "FIREWORK" = "All Other Crimes",
+           "[INC - CASE DC USE ONLY]" = "All Other Crimes",
+           "PUBLIC NUISANCE" = "Public Disorder",
+           "DISORDERLY CONDUCT" = "Public Disorder",
+           "ESCAPE" = "All Other Crimes"
+           )
+}
+
+# SAN FRANCISCO
+for (i in 1:nrow(san_new)){
+    san_new$offenseDescription[i] <- switch(san_new$offenseDescription[i], 
+           "ARSON" = "Arson",
+           "NON-CRIMINAL" = "All Other Crimes",
+           "LARCENY/THEFT" = "Larceny",
+           "DRUG/NARCOTIC" = "Drug & Alcohol",
+           "DRIVING UNDER THE INFLUENCE" = "Drug & Alcohol", 
+           "OTHER OFFENSES" = "All Other Crimes",
+           "TRESPASS" = "All Other Crimes",
+           "VEHICLE THEFT" = "Auto Theft",
+           "ASSAULT" = "Aggravated Assault",
+           "FRAUD" = "White Collar Crime",
+           "SUSPICIOUS OCC" = "All Other Crimes",
+           "SECONDARY CODES" = "All Other Crimes",
+           "WEAPON LAWS" = "Aggravated Assault",
+           "MISSING PERSON" = "All Other Crimes",
+           "WARRANTS" = "All Other Crimes",
+           "ROBBERY" = "Robbery",
+           "DRUNKENNESS" = "Drug & Alcohol",
+           "PROSTITUTION" = "Public Disorder",
+           "LIQUOR LAWS" = "Drug & Alcohol",
+           "KIDNAPPING" = "All Other Crimes",
+           "FAMILY OFFENSES" = "Aggravated Assault",
+           "LOITERING" = "Public Disorder",
+           "DISORDERLY CONDUCT" = "Public Disorder",
+           "FORGERY/COUNTERFEITING" = "White Collar Crime",
+           "EMBEZZLEMENT" = "White Collar Crime",
+           "BURGLARY" = "Burglary",
+           "SUICIDE" = "All Other Crimes",
+           "VANDALISM" = "All Other Crimes",
+           "STOLEN PROPERTY" = "All Other Crimes",
+           "RUNAWAY" = "All Other Crimes",
+           "GAMBLING" = "All Other Crimes",
+           "EXTORTION" = "All Other Crimes",
+           "PORNOGRAPHY/OBSCENE MAT" = "All Other Crimes",
+           "BRIBERY" = "All Other Crimes"
+           )
+}
+
+# We now create a column "city" in each dataset
+sea_new$City <- "Seattle"
+san_new$City <- "San Francisco"
+# Now we can create a new whole dataset binding rows
+alldata <- rbind(sea_new, san_new)
+alldata$Date <- as.Date(as.POSIXct(alldata$dateRaw, tz="CET"), tz="CET")
+

Let’s make a plot of this whole new dataset.

+
ofDate <- as.data.frame(table(alldata$Date, alldata$City))
+colnames(ofDate) <- c("Date", "City", "Freq")
+ofDate$Date <- as.Date(ofDate$Date)
+
library(ggplot2)
+
+g <- ggplot(data = ofDate, aes(x = Date,y = Freq, colour = City)) + geom_line()
+g <- g + xlab("Date") + ylab("Number of offenses") + ggtitle("Number of offenses in summer 2014 \n in Seattle and San Francisco")
+g
+

+

report without code

+

This plot seems to tell us that the number of offenses is higher in Seattle than in San Francisco. Indeed, we could have noticed before that the number of records in the Seattle dataset (32 779) is higher than in the San Francisco dataset (28 993). This trend may be just due to the fact that the number of people living in Seattle is greater than the ones living in San Francisco.
Let’s check.

+ +

So if we plot again the evolution of the number of offenses over time, but this time taking into account the population, and so plotting this time the number of offenses per capita, here is what we get.

+
pop_sea <- 668342
+pop_san <- 805235
+
+ofDate$FreqperC <- ifelse(ofDate$City == "Seattle", ofDate$Freq/pop_sea, ofDate$Freq/pop_san)
+
library(ggplot2)
+
+g <- ggplot(data = ofDate, aes(x = Date,y = FreqperC, colour = City)) + geom_line() + geom_smooth()
+g <- g + xlab("Date") + ylab("Number of offenses per Capita") + ggtitle("Number of offenses per capita in summer 2014 \n in Seattle and San Francisco")
+g
+

+

report without code

+

Let’s notice that we have here plotted a smooth curve representing the trend for each city.
This plot allows us to understand that there are more offenses happening in summer 2014 in Seatlle than in San Francisco, this not being due to the demographics. Indeed, Seattle counts less inhabitants than San Francisco, that fact deeping the gap between the two cities in terms of number of offenses.

+

Let’s dig deeper.

+
+
+

Types of offenses

+

Now we are going to watch the different types of offenses, trying to understand what kind happens the most. Let’s have alook first at the general distribution, accross both cities.

+
ofType0 <- as.data.frame(table(alldata$offenseDescription))
+colnames(ofType0) <- c("offenseType", "Freq")
+ofType0$offenseType <- as.character(ofType0$offenseType)
+
library(ggplot2)
+
+g <- ggplot(data = ofType0, aes(offenseType, Freq)) + geom_bar(stat = "identity", fill = "dark blue")
+g <- g + ylab("Number of offenses") + xlab("Type of offenses") + ggtitle("Offenses in summer 2014") + coord_flip()
+g
+

+

report without code

+

So, with this plot, we figure out that the category of offenses occuring the most is “All Other Crimes”. That’s not surprising because this category regroups a lot of sub-categories. The second most important one is “Larceny”. Globally, we can print the top 5 most occuring offenses this way.

+
ofType0 <- ofType0[order(ofType0$Freq, decreasing = TRUE),]
+head(ofType0,5)
+
##          offenseType  Freq
+## 2   All Other Crimes 25056
+## 7            Larceny 11567
+## 1 Aggravated Assault  5472
+## 9    Public Disorder  5401
+## 4         Auto Theft  5023
+

Do those categories are the same in both cities?

+
ofType <- as.data.frame(table(alldata$offenseDescription, alldata$City))
+colnames(ofType) <- c("offenseType", "City", "Freq")
+ofType$offenseType <- as.character(ofType$offenseType)
+ofType <- ofType[order(ofType$Freq, decreasing = TRUE),]
+ofType$FreqperC <- ifelse(ofType$City == "Seattle", ofType$Freq/pop_sea, ofType$Freq/pop_san)
+
library(ggplot2)
+
+g <- ggplot(data = ofType, aes(offenseType, FreqperC, fill = City)) + geom_bar(stat = "identity", position="dodge")
+g <- g + xlab("Type of offenses") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita, per type, \n in summer 2014 in Seattle and in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1))
+g
+

+

report without code

+

Here we see clearly that, appart from the category “All Other Crimes” for which in both cities the frequency is high, trends depend upon cities.
In Seattle, we observe that “Larceny” is far less occuring than in San Francisco. On the opposite, “Public Disorder” is far more occuring in Seattle while in San Francisco it stays relatively marginal.

+
+
+

Time evolution of offenses

+

We can go further and watch those types of offenses month by month.

+
ofTypeM <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Month))
+colnames(ofTypeM) <- c("offenseType", "City", "Month", "Freq")
+ofTypeM$offenseType <- as.character((ofTypeM$offenseType))
+ofTypeM$FreqperC <- ifelse(ofTypeM$City == "Seattle", ofTypeM$Freq/pop_sea, ofTypeM$Freq/pop_san)
+ofTypeMSe <- subset(ofTypeM, ofTypeM$City == "Seattle")
+ofTypeMSa <- subset(ofTypeM, ofTypeM$City == "San Francisco")
+
require(gridExtra)
+library(ggplot2)
+
+g <- ggplot(data = ofTypeMSe, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge")
+g <- g + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita \n by Month in 2014, in Seattle") + theme(axis.text.x = element_text(angle = 75, hjust = 1))
+
+h <- ggplot(data = ofTypeMSa, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge")
+h <- h + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita by Month \n in 2014, in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1))
+
+grid.arrange(g,h,ncol=2)
+

+

report without code

+

This plot gives us an overview of the offenses’evolution month by month, but it would be much clearer to plot lines. We will here focus on “Larceny” and “Public Disorder” as they are the most different categories between both cities. Let’s try it.

+
ofTypeM_new <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Date))
+colnames(ofTypeM_new) <- c("offenseType", "City", "Date", "Freq")
+ofTypeM_new$offenseType <- as.character((ofTypeM_new$offenseType))
+ofTypeM_new$Date <- as.Date(ofTypeM_new$Date)
+ofTypeM_new <- subset(ofTypeM_new, ofTypeM_new$offenseType == "Larceny" | ofTypeM_new$offenseType == "Public Disorder")
+ofTypeM_new$FreqperC <- ifelse(ofTypeM_new$City == "Seattle", ofTypeM_new$Freq/pop_sea, ofTypeM_new$Freq/pop_san)
+ofTypeM_newSe <- subset(ofTypeM_new, ofTypeM_new$City == "Seattle")
+ofTypeM_newSa <- subset(ofTypeM_new, ofTypeM_new$City == "San Francisco")
+
library(ggplot2)
+
+g <- ggplot(data = ofTypeM_newSe, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth()
+g <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in Seattle")
+
+h <- ggplot(data = ofTypeM_newSa, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth()
+h <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in San Francisco")
+
+grid.arrange(g,h,ncol=2)
+

+

report without code

+

In this plot, we can observe that there is a speficic trend, the same one in both cities :

+
    +
  • Larcenies tend to decrease slightly in June, stay steady during July, and then increase in August.
  • +
  • Public Disorders tend to occur more frequently from June to July, and, by the end of July, start to decrease in a steep manner.
  • +
+

There is certainly here more to investigate, which we would do if we had more time.

+
+ + +
+ + + + + + + + diff --git a/assignment6/CrimesWoutC.Rmd b/assignment6/CrimesWoutC.Rmd new file mode 100644 index 00000000..262af6d7 --- /dev/null +++ b/assignment6/CrimesWoutC.Rmd @@ -0,0 +1,348 @@ +--- +title: "Crimes Analysis in Seatlle and San Francisco in summer 2014" +author: "RDSN" +date: "30 November 2015" +output: html_document +--- + +## Digging into the Seattle and San Francisco datasets released + +We have been provided with datasets from cities of Seattle and San Francisco reporting criminal incidents in summer 2014. +This paper is about analyzing those datasets, visualazing and comparing patterns accross those two cities. +This analysis allowed us to infer that : + + * During summer 2014, The city of Seattle presents a number of offenses per capita higher than the city of San Francisco. + * Globally, for both cities, the type of offenses with the higher number of occurances is "All Other Crimes", which is not surprising in regard of the high number of sub-categories contained in this type of offenses. + * In San Francisco, there is a high number of larcenies per capita, and this number is far more important than in Seattle. + * In the meantime, there is a higher number of Public Disorders per capita in Seattle than in San Francisco during this period. + * From June to August, the number of Public Disorders per capita in San Francisco growed. + * Furthermore, we can observe that, on average, the number of Public Disorders per capita, in both cities, grows from June to July, and then starts to decrease from the beginning of August. + * Finally, we can observe that, on average, the number of larcenies per capita, in both cities, decreases slightly in June, is steady in July, and starts to grow slightly in August. + +We will go trhough all those statements in detail in this paper. + +If you want to see the report with code, it's all available at this link : [report with code](http://rpubs.com/rdsn/131997) or at the link under each figure. + +## Datasets overview + +First, we load the datasets, recorded in a .csv format, and see what we are provided with. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +sea = read.csv('seattle_incidents_summer_2014.csv'); +dim(sea) # 32779 x 19 +str(sea) +names(sea) +san = read.csv('sanfrancisco_incidents_summer_2014.csv'); +dim(san) # 28993 x 13 +str(san) +names(san) +``` + +What we can observe from those values : + + * These datasets report crimes appearing in the city of Seattle and San Francisco, in the summer 2014, from June to August 2014. + * Each dataset contains different pieces of information, such as location, date and time, crimes categories. Those pieces of information are reported in each city in a different way. For example, crimes categories are not the same in the Seattle and San Francisco report. That means that we will have to manipulate features so to enable a proper comparison before those two datasets. + * Once we have transformed those pieces of information such as to be able to perform comparison, we can analyze crimes through time, through categories, and through cities. + +First, let's transform those variables and create a single dataframe so that to compare values for those two cities. +```{r,message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +# SEATTLE +# Let's first retain only the variables we are interested in +sea_new <- sea[,c("Summarized.Offense.Description", "Occurred.Date.or.Date.Range.Start", "Year", "Month")] +# rename the columns for clarity +names(sea_new) <- c("offenseDescription", "dateRaw", "Year", "Month") +# transform features so they can be used to perform analysis +sea_new$offenseDescription <- as.character(sea_new$offenseDescription) +sea_new$dateRaw <- as.character(sea_new$dateRaw) +sea_new$dateRaw <- as.POSIXct(sea_new$dateRaw, format = "%m/%d/%Y %H:%M:%S") +sea_new$Date <- as.Date(as.POSIXct(sea_new$dateRaw)) + +# SAN FRANCISCO +# Let's first retain only the variables we are interested in +san_new <- san[,c("Category", "Date", "Time")] +# rename the columns for clarity +names(san_new) <- c("offenseDescription", "dateRaw", "Time") +# transform features so they can be used to perform analysis +san_new$offenseDescription <- as.character(san_new$offenseDescription) +san_new$dateRaw <- as.character(san_new$dateRaw) +san_new$Time <- as.character(san_new$Time) +san_new$dateRaw <- paste(san_new$dateRaw, san_new$Time) +san_new$dateRaw <- as.POSIXct(san_new$dateRaw, format = "%m/%d/%Y %H:%M") +san_new$Date <- as.Date(as.POSIXct(san_new$dateRaw)) +san_new$Year <- as.integer(format(san_new$dateRaw, "%Y")) +san_new$Month <- as.integer(format(san_new$dateRaw, "%m")) +san_new <- san_new[, c("offenseDescription", "dateRaw", "Year", "Month", "Date")] +``` +In order to create this signle dataframe, we have to convert all the crimes descriptions in each dataset so that both cities present the same categories. +To do so, we have collected the National Incident-Based Reporting System (NIBRS) data, which categorize crimes into universal categories. +This dataset can be found here : +The NIBRS data contains 15 high categories of crimes, and 294 sub-categories. +As we can observe from the Seattle and the San Francisco datasets : + + * Seattle data : 48 categories and 147 sub-categories + * San Francisco data : 34 categories and 368 sub-categories. +For the purpose of this analysis, we are going to fit categories in each of the datasets with the 15 categories from the NIBRS dataset. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +nibrs <- read.csv("NIBRS.csv") + +# SEATTLE +for (i in 1:nrow(sea_new)){ + sea_new$offenseDescription[i] <- switch(sea_new$offenseDescription[i], + "BURGLARY" = "Burglary", + "FRAUD" = "White Collar Crime", + "MAIL THEFT" = "Larceny", + "COUNTERFEIT" = "White Collar Crime", + "OTHER PROPERTY" = "All Other Crimes", + "EMBEZZLE" = "White Collar Crime", + "CAR PROWL" = "All Other Crimes", + "THREATS" = "Public Disorder", + "PROPERTY DAMAGE" = "Public Disorder", + "LOST PROPERTY" = "All Other Crimes", + "FORGERY" = "White Collar Crime", + "VEHICLE THEFT" = "Auto Theft", + "BURGLARY-SECURE PARKING-RES" = "Burglary", + "PICKPOCKET" = "Robbery", + "BIKE THEFT" = "Larceny", + "NARCOTICS" = "Drug & Alcohol", + "DISPUTE" = "Public Disorder", + "ASSAULT" = "Aggravated Assault", + "STOLEN PROPERTY" = "All Other Crimes", + "WARRANT ARREST" = "All Other Crimes", + "TRAFFIC" = "Traffic Accident", + "SHOPLIFTING" = "Larceny", + "DISTURBANCE" = "Public Disorder", + "VIOLATION OF COURT ORDER" = "All Other Crimes", + "ILLEGAL DUMPING" = "All Other Crimes", + "PROSTITUTION" = "Public Disorder", + "ROBBERY" = "Robbery", + "TRESPASS" = "All Other Crimes", + "LIQUOR VIOLATION" = "Drug & Alcohol", + "BIAS INCIDENT" = "All Other Crimes", + "THEFT OF SERVICES" = "Larceny", + "HOMICIDE" = "Murder", + "RECOVERED PROPERTY" = "All Other Crimes", + "OBSTRUCT" = "All Other Crimes", + "RECKLESS BURNING" = "All Other Crimes", + "INJURY" = "Aggravated Assault", + "WEAPON" = "Aggravated Assault", + "PURSE SNATCH" = "Robbery", + "FALSE REPORT" = "All Other Crimes", + "ELUDING" = "All Other Crimes", + "ANIMAL COMPLAINT" = "All Other Crimes", + "PORNOGRAPHY" = "All Other Crimes", + "DUI" = "Traffic Accident", + "FIREWORK" = "All Other Crimes", + "[INC - CASE DC USE ONLY]" = "All Other Crimes", + "PUBLIC NUISANCE" = "Public Disorder", + "DISORDERLY CONDUCT" = "Public Disorder", + "ESCAPE" = "All Other Crimes" + ) +} + +# SAN FRANCISCO +for (i in 1:nrow(san_new)){ + san_new$offenseDescription[i] <- switch(san_new$offenseDescription[i], + "ARSON" = "Arson", + "NON-CRIMINAL" = "All Other Crimes", + "LARCENY/THEFT" = "Larceny", + "DRUG/NARCOTIC" = "Drug & Alcohol", + "DRIVING UNDER THE INFLUENCE" = "Drug & Alcohol", + "OTHER OFFENSES" = "All Other Crimes", + "TRESPASS" = "All Other Crimes", + "VEHICLE THEFT" = "Auto Theft", + "ASSAULT" = "Aggravated Assault", + "FRAUD" = "White Collar Crime", + "SUSPICIOUS OCC" = "All Other Crimes", + "SECONDARY CODES" = "All Other Crimes", + "WEAPON LAWS" = "Aggravated Assault", + "MISSING PERSON" = "All Other Crimes", + "WARRANTS" = "All Other Crimes", + "ROBBERY" = "Robbery", + "DRUNKENNESS" = "Drug & Alcohol", + "PROSTITUTION" = "Public Disorder", + "LIQUOR LAWS" = "Drug & Alcohol", + "KIDNAPPING" = "All Other Crimes", + "FAMILY OFFENSES" = "Aggravated Assault", + "LOITERING" = "Public Disorder", + "DISORDERLY CONDUCT" = "Public Disorder", + "FORGERY/COUNTERFEITING" = "White Collar Crime", + "EMBEZZLEMENT" = "White Collar Crime", + "BURGLARY" = "Burglary", + "SUICIDE" = "All Other Crimes", + "VANDALISM" = "All Other Crimes", + "STOLEN PROPERTY" = "All Other Crimes", + "RUNAWAY" = "All Other Crimes", + "GAMBLING" = "All Other Crimes", + "EXTORTION" = "All Other Crimes", + "PORNOGRAPHY/OBSCENE MAT" = "All Other Crimes", + "BRIBERY" = "All Other Crimes" + ) +} + +# We now create a column "city" in each dataset +sea_new$City <- "Seattle" +san_new$City <- "San Francisco" +# Now we can create a new whole dataset binding rows +alldata <- rbind(sea_new, san_new) +alldata$Date <- as.Date(as.POSIXct(alldata$dateRaw, tz="CET"), tz="CET") +``` + +Let's make a plot of this whole new dataset. + +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofDate <- as.data.frame(table(alldata$Date, alldata$City)) +colnames(ofDate) <- c("Date", "City", "Freq") +ofDate$Date <- as.Date(ofDate$Date) +``` + +```{r,fig.align='center', fig.height= 3.5, fig.width= 10, message = FALSE, warning=FALSE, echo=FALSE} +library(ggplot2) + +g <- ggplot(data = ofDate, aes(x = Date,y = Freq, colour = City)) + geom_line() +g <- g + xlab("Date") + ylab("Number of offenses") + ggtitle("Number of offenses in summer 2014 \n in Seattle and San Francisco") +g + +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +This plot seems to tell us that the number of offenses is higher in Seattle than in San Francisco. Indeed, we could have noticed before that the number of records in the Seattle dataset (32 779) is higher than in the San Francisco dataset (28 993). This trend may be just due to the fact that the number of people living in Seattle is greater than the ones living in San Francisco. +Let's check. + + * Seattle : [668 342](https://en.wikipedia.org/wiki/Demographics_of_Seattle) + * San Francisco : [805 235](https://suburbanstats.org/population/california/how-many-people-live-in-san-francisco) + +So if we plot again the evolution of the number of offenses over time, but this time taking into account the population, and so plotting this time the number of offenses per capita, here is what we get. +```{r,message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +pop_sea <- 668342 +pop_san <- 805235 + +ofDate$FreqperC <- ifelse(ofDate$City == "Seattle", ofDate$Freq/pop_sea, ofDate$Freq/pop_san) +``` + +```{r,fig.align='center', fig.height= 5, fig.width= 10, message = FALSE, echo=FALSE, warning=FALSE} +library(ggplot2) + +g <- ggplot(data = ofDate, aes(x = Date,y = FreqperC, colour = City)) + geom_line() + geom_smooth() +g <- g + xlab("Date") + ylab("Number of offenses per Capita") + ggtitle("Number of offenses per capita in summer 2014 \n in Seattle and San Francisco") +g +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +Let's notice that we have here plotted a smooth curve representing the trend for each city. +This plot allows us to understand that there are more offenses happening in summer 2014 in Seatlle than in San Francisco, this not being due to the demographics. Indeed, Seattle counts less inhabitants than San Francisco, that fact deeping the gap between the two cities in terms of number of offenses. + +Let's dig deeper. + +## Types of offenses + +Now we are going to watch the different types of offenses, trying to understand what kind happens the most. Let's have alook first at the general distribution, accross both cities. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofType0 <- as.data.frame(table(alldata$offenseDescription)) +colnames(ofType0) <- c("offenseType", "Freq") +ofType0$offenseType <- as.character(ofType0$offenseType) +``` + +```{r,fig.align='center', fig.height= 3.5, fig.width= 9, message = FALSE, warning=FALSE, echo = FALSE} +library(ggplot2) + +g <- ggplot(data = ofType0, aes(offenseType, Freq)) + geom_bar(stat = "identity", fill = "dark blue") +g <- g + ylab("Number of offenses") + xlab("Type of offenses") + ggtitle("Offenses in summer 2014") + coord_flip() +g +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +So, with this plot, we figure out that the category of offenses occuring the most is "All Other Crimes". That's not surprising because this category regroups a lot of sub-categories. The second most important one is "Larceny". Globally, we can print the top 5 most occuring offenses this way. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofType0 <- ofType0[order(ofType0$Freq, decreasing = TRUE),] +head(ofType0,5) +``` + +Do those categories are the same in both cities? +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofType <- as.data.frame(table(alldata$offenseDescription, alldata$City)) +colnames(ofType) <- c("offenseType", "City", "Freq") +ofType$offenseType <- as.character(ofType$offenseType) +ofType <- ofType[order(ofType$Freq, decreasing = TRUE),] +ofType$FreqperC <- ifelse(ofType$City == "Seattle", ofType$Freq/pop_sea, ofType$Freq/pop_san) +``` + +```{r,fig.align='center', fig.height= 6, fig.width= 9, message = FALSE, warning=FALSE, echo=FALSE} +library(ggplot2) + +g <- ggplot(data = ofType, aes(offenseType, FreqperC, fill = City)) + geom_bar(stat = "identity", position="dodge") +g <- g + xlab("Type of offenses") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita, per type, \n in summer 2014 in Seattle and in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) +g +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +Here we see clearly that, appart from the category "All Other Crimes" for which in both cities the frequency is high, trends depend upon cities. +In Seattle, we observe that "Larceny" is far less occuring than in San Francisco. On the opposite, "Public Disorder" is far more occuring in Seattle while in San Francisco it stays relatively marginal. + +## Time evolution of offenses + +We can go further and watch those types of offenses month by month. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofTypeM <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Month)) +colnames(ofTypeM) <- c("offenseType", "City", "Month", "Freq") +ofTypeM$offenseType <- as.character((ofTypeM$offenseType)) +ofTypeM$FreqperC <- ifelse(ofTypeM$City == "Seattle", ofTypeM$Freq/pop_sea, ofTypeM$Freq/pop_san) +ofTypeMSe <- subset(ofTypeM, ofTypeM$City == "Seattle") +ofTypeMSa <- subset(ofTypeM, ofTypeM$City == "San Francisco") +``` + +```{r,fig.align='center', fig.height= 5, fig.width= 9, message = FALSE, warning=FALSE, echo=FALSE} +require(gridExtra) +library(ggplot2) + +g <- ggplot(data = ofTypeMSe, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge") +g <- g + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita \n by Month in 2014, in Seattle") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) + +h <- ggplot(data = ofTypeMSa, aes(offenseType, FreqperC, fill = Month)) + geom_bar(stat = "identity", position="dodge") +h <- h + xlab("Type of offenses") + ylab("Frequency per capita") + ggtitle("Number of offenses per capita by Month \n in 2014, in San Francisco") + theme(axis.text.x = element_text(angle = 75, hjust = 1)) + +grid.arrange(g,h,ncol=2) +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +This plot gives us an overview of the offenses'evolution month by month, but it would be much clearer to plot lines. We will here focus on "Larceny" and "Public Disorder" as they are the most different categories between both cities. Let's try it. +```{r, message=FALSE, echo=FALSE, warning=FALSE, results='hide'} +ofTypeM_new <- as.data.frame(table(alldata$offenseDescription, alldata$City, alldata$Date)) +colnames(ofTypeM_new) <- c("offenseType", "City", "Date", "Freq") +ofTypeM_new$offenseType <- as.character((ofTypeM_new$offenseType)) +ofTypeM_new$Date <- as.Date(ofTypeM_new$Date) +ofTypeM_new <- subset(ofTypeM_new, ofTypeM_new$offenseType == "Larceny" | ofTypeM_new$offenseType == "Public Disorder") +ofTypeM_new$FreqperC <- ifelse(ofTypeM_new$City == "Seattle", ofTypeM_new$Freq/pop_sea, ofTypeM_new$Freq/pop_san) +ofTypeM_newSe <- subset(ofTypeM_new, ofTypeM_new$City == "Seattle") +ofTypeM_newSa <- subset(ofTypeM_new, ofTypeM_new$City == "San Francisco") +``` + +```{r,fig.align='center', fig.height= 4, fig.width= 14, message = FALSE, warning=FALSE, echo=FALSE} +library(ggplot2) + +g <- ggplot(data = ofTypeM_newSe, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth() +g <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in Seattle") + +h <- ggplot(data = ofTypeM_newSa, aes(Date, FreqperC, colour = offenseType)) + geom_line() + geom_smooth() +h <- g + xlab("Date") + ylab("Frequency per Capita") + ggtitle("Number of offenses per capita \n over time in summer 2014 in San Francisco") + +grid.arrange(g,h,ncol=2) +``` + +[report with code](http://rpubs.com/rdsn/131997) + + +In this plot, we can observe that there is a speficic trend, the same one in both cities : + + * Larcenies tend to decrease slightly in June, stay steady during July, and then increase in August. + * Public Disorders tend to occur more frequently from June to July, and, by the end of July, start to decrease in a steep manner. + +There is certainly here more to investigate, which we would do if we had more time. diff --git a/assignment6/CrimesWoutC.html b/assignment6/CrimesWoutC.html new file mode 100644 index 00000000..a66584eb --- /dev/null +++ b/assignment6/CrimesWoutC.html @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + +Crimes Analysis in Seatlle and San Francisco in summer 2014 + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +
+

Digging into the Seattle and San Francisco datasets released

+

We have been provided with datasets from cities of Seattle and San Francisco reporting criminal incidents in summer 2014.
This paper is about analyzing those datasets, visualazing and comparing patterns accross those two cities.
This analysis allowed us to infer that :

+
    +
  • During summer 2014, The city of Seattle presents a number of offenses per capita higher than the city of San Francisco.
  • +
  • Globally, for both cities, the type of offenses with the higher number of occurances is “All Other Crimes”, which is not surprising in regard of the high number of sub-categories contained in this type of offenses.
  • +
  • In San Francisco, there is a high number of larcenies per capita, and this number is far more important than in Seattle.
  • +
  • In the meantime, there is a higher number of Public Disorders per capita in Seattle than in San Francisco during this period.
  • +
  • From June to August, the number of Public Disorders per capita in San Francisco growed.
  • +
  • Furthermore, we can observe that, on average, the number of Public Disorders per capita, in both cities, grows from June to July, and then starts to decrease from the beginning of August.
  • +
  • Finally, we can observe that, on average, the number of larcenies per capita, in both cities, decreases slightly in June, is steady in July, and starts to grow slightly in August.
  • +
+

We will go trhough all those statements in detail in this paper.

+

If you want to see the report with code, it’s all available at this link : report with code or at the link under each figure.

+
+
+

Datasets overview

+

First, we load the datasets, recorded in a .csv format, and see what we are provided with.

+

What we can observe from those values :

+
    +
  • These datasets report crimes appearing in the city of Seattle and San Francisco, in the summer 2014, from June to August 2014.
  • +
  • Each dataset contains different pieces of information, such as location, date and time, crimes categories. Those pieces of information are reported in each city in a different way. For example, crimes categories are not the same in the Seattle and San Francisco report. That means that we will have to manipulate features so to enable a proper comparison before those two datasets.
  • +
  • Once we have transformed those pieces of information such as to be able to perform comparison, we can analyze crimes through time, through categories, and through cities.
  • +
+

First, let’s transform those variables and create a single dataframe so that to compare values for those two cities.

+

In order to create this signle dataframe, we have to convert all the crimes descriptions in each dataset so that both cities present the same categories.
To do so, we have collected the National Incident-Based Reporting System (NIBRS) data, which categorize crimes into universal categories.
This dataset can be found here : http://data.denvergov.org/download/gis/crime/csv/offense_codes.csv
The NIBRS data contains 15 high categories of crimes, and 294 sub-categories.
As we can observe from the Seattle and the San Francisco datasets :

+
    +
  • Seattle data : 48 categories and 147 sub-categories
  • +
  • San Francisco data : 34 categories and 368 sub-categories. For the purpose of this analysis, we are going to fit categories in each of the datasets with the 15 categories from the NIBRS dataset.
  • +
+

Let’s make a plot of this whole new dataset.

+

+

report with code

+

This plot seems to tell us that the number of offenses is higher in Seattle than in San Francisco. Indeed, we could have noticed before that the number of records in the Seattle dataset (32 779) is higher than in the San Francisco dataset (28 993). This trend may be just due to the fact that the number of people living in Seattle is greater than the ones living in San Francisco.
Let’s check.

+ +

So if we plot again the evolution of the number of offenses over time, but this time taking into account the population, and so plotting this time the number of offenses per capita, here is what we get.

+

+

report with code

+

Let’s notice that we have here plotted a smooth curve representing the trend for each city.
This plot allows us to understand that there are more offenses happening in summer 2014 in Seatlle than in San Francisco, this not being due to the demographics. Indeed, Seattle counts less inhabitants than San Francisco, that fact deeping the gap between the two cities in terms of number of offenses.

+

Let’s dig deeper.

+
+
+

Types of offenses

+

Now we are going to watch the different types of offenses, trying to understand what kind happens the most. Let’s have alook first at the general distribution, accross both cities.

+

+

report with code

+

So, with this plot, we figure out that the category of offenses occuring the most is “All Other Crimes”. That’s not surprising because this category regroups a lot of sub-categories. The second most important one is “Larceny”. Globally, we can print the top 5 most occuring offenses this way.

+

Do those categories are the same in both cities?

+

+

report with code

+

Here we see clearly that, appart from the category “All Other Crimes” for which in both cities the frequency is high, trends depend upon cities.
In Seattle, we observe that “Larceny” is far less occuring than in San Francisco. On the opposite, “Public Disorder” is far more occuring in Seattle while in San Francisco it stays relatively marginal.

+
+
+

Time evolution of offenses

+

We can go further and watch those types of offenses month by month.

+

+

report with code

+

This plot gives us an overview of the offenses’evolution month by month, but it would be much clearer to plot lines. We will here focus on “Larceny” and “Public Disorder” as they are the most different categories between both cities. Let’s try it.

+

+

report with code

+

In this plot, we can observe that there is a speficic trend, the same one in both cities :

+
    +
  • Larcenies tend to decrease slightly in June, stay steady during July, and then increase in August.
  • +
  • Public Disorders tend to occur more frequently from June to July, and, by the end of July, start to decrease in a steep manner.
  • +
+

There is certainly here more to investigate, which we would do if we had more time.

+
+ + +
+ + + + + + + + diff --git a/assignment6/NIBRS.csv b/assignment6/NIBRS.csv new file mode 100644 index 00000000..886d6dd0 --- /dev/null +++ b/assignment6/NIBRS.csv @@ -0,0 +1,300 @@ +"OFFENSE_CODE","OFFENSE_CODE_EXTENSION","OFFENSE_TYPE_ID","OFFENSE_TYPE_NAME","OFFENSE_CATEGORY_ID","OFFENSE_CATEGORY_NAME","IS_CRIME","IS_TRAFFIC" +"2804","1","stolen-property-possession","Possession of stolen property","all-other-crimes","All Other Crimes","1","0" +"2804","2","fraud-possess-financial-device","Possession of a financial device","all-other-crimes","All Other Crimes","1","0" +"2901","0","damaged-prop-bus","Damaged business property","public-disorder","Public Disorder","1","0" +"2902","0","criminal-mischief-private","Criminal mischief to private property","public-disorder","Public Disorder","1","0" +"2903","0","criminal-mischief-public","Criminal mischief to public property","public-disorder","Public Disorder","1","0" +"2999","0","criminal-mischief-other","Criminal mischief - other","public-disorder","Public Disorder","1","0" +"2999","1","criminal-mischief-mtr-veh","Criminal mischief to a motor vehicle","public-disorder","Public Disorder","1","0" +"2999","2","criminal-mischief-graffiti","Criminal mischief - graffiti","public-disorder","Public Disorder","1","0" +"3501","0","drug-hallucinogen-mfr","Manufacture of a hallucinogenic drug","drug-alcohol","Drug & Alcohol","1","0" +"3503","0","drug-hallucinogen-sell","Selling a hallucinogenic drug","drug-alcohol","Drug & Alcohol","1","0" +"3504","0","drug-hallucinogen-possess","Possession of a hallucinogenic drug","drug-alcohol","Drug & Alcohol","1","0" +"3510","0","drug-heroin-sell","Selling heroin","drug-alcohol","Drug & Alcohol","1","0" +"3512","0","drug-heroin-possess","Possession of heroin","drug-alcohol","Drug & Alcohol","1","0" +"3520","0","drug-opium-or-deriv-sell","Selling opium or an opium derivative","drug-alcohol","Drug & Alcohol","1","0" +"3522","0","drug-opium-or-deriv-possess","Possession of opium or an opium derivative","drug-alcohol","Drug & Alcohol","1","0" +"3530","0","drug-cocaine-sell","Selling cocaine","drug-alcohol","Drug & Alcohol","1","0" +"3532","0","drug-cocaine-possess","Possession of cocaine","drug-alcohol","Drug & Alcohol","1","0" +"3540","0","drug-synth-narcotic-sell","Selling a synthetic narcotic drug","drug-alcohol","Drug & Alcohol","1","0" +"3542","0","drug-synth-narcotic-possess","Possession of a synthetic narcotic drug","drug-alcohol","Drug & Alcohol","1","0" +"3550","0","drug-poss-paraphernalia","Possession of drug paraphernalia","drug-alcohol","Drug & Alcohol","1","0" +"3560","0","drug-marijuana-sell","Selling marijuana","drug-alcohol","Drug & Alcohol","1","0" +"3562","0","drug-marijuana-possess","Possession of marijuana","drug-alcohol","Drug & Alcohol","1","0" +"3563","0","drug-marijuana-cultivation","Cultivation of marijuana","drug-alcohol","Drug & Alcohol","1","0" +"3570","0","drug-methamphetamine-mfr","Manufacture of methampetamine","drug-alcohol","Drug & Alcohol","1","0" +"3571","0","drug-methampetamine-sell","Selling methampetamine","drug-alcohol","Drug & Alcohol","1","0" +"3572","0","drug-methampetamine-possess","Possession of methampetamine","drug-alcohol","Drug & Alcohol","1","0" +"3580","0","drug-barbiturate-mfr","Manufacture of a barbiturate","drug-alcohol","Drug & Alcohol","1","0" +"3581","0","drug-barbiturate-sell","Selling a barbiturate","drug-alcohol","Drug & Alcohol","1","0" +"3582","0","drug-barbiturate-possess","Possession of a barbiturate","drug-alcohol","Drug & Alcohol","1","0" +"3599","0","drug-pcs-other-drug","Other dangerous drugs - PCS","drug-alcohol","Drug & Alcohol","1","0" +"3599","1","drug-make-sell-other-drug","Manufacture or sell other dangerous drugs","drug-alcohol","Drug & Alcohol","1","0" +"3601","1","sex-aslt-fondle-adult-victim","Fondling of an adult","sexual-assault","Sexual Assault","1","0" +"3605","0","indecent-exposure","Indecent exposure","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3607","0","sex-off-incest-with-adult","Incest with an adult","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3611","0","window-peeping","Window Peeping","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3612","0","sex-off-fail-to-register","Failure to register as a sex offender","all-other-crimes","All Other Crimes","1","0" +"3613","0","sex-off-registration-viol","Sex offender registration violation","all-other-crimes","All Other Crimes","1","0" +"3615","0","indecent-exposure-to-adult","Indecent exposure to an adult","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3699","0","sex-off-other","Sex offense - other","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3700","0","obscene-material-possess","Possession of obscene material","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3701","0","obscene-material-mfr","Manufacture of obscene material","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3799","0","other-obscenity-crime","Other obscenity crime","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"3804","0","bigamy","Bigamy","all-other-crimes","All Other Crimes","1","0" +"3902","0","gambling-card-game-operating","Operating a gambling card game","all-other-crimes","All Other Crimes","1","0" +"3905","0","gambling-dice-game-operating","Operating a gambling dice game","all-other-crimes","All Other Crimes","1","0" +"3908","0","gambling-possess-gamb-device","Possession of a gambling device","all-other-crimes","All Other Crimes","1","0" +"3911","0","gambling-device","Running a gambling operation","all-other-crimes","All Other Crimes","1","0" +"3915","0","gambling-lottery-operating","Running an illegal lottery","all-other-crimes","All Other Crimes","1","0" +"3919","0","gambling-sports-tampering","Tampering with sports","all-other-crimes","All Other Crimes","1","0" +"3990","0","gambling-betting-wagering","Gambling - betting or wagering","white-collar-crime","White Collar Crime","1","0" +"3991","0","gambling-gaming-operation","Gambling - gaming operation","all-other-crimes","All Other Crimes","1","0" +"3999","0","gambling-illegal","Illegal gambling","all-other-crimes","All Other Crimes","1","0" +"4001","0","prostitution-keep-a-house-of","Keeping a house of prostitution","public-disorder","Public Disorder","1","0" +"4002","0","prostitution-procure-for","Procure for prostitution (trafficking, operating a bordelo)","public-disorder","Public Disorder","1","0" +"4002","1","prostitution-pimping","Pimping for prostitution","public-disorder","Public Disorder","1","0" +"4004","0","prostitution-engaging-in","Engaging in prostitution","public-disorder","Public Disorder","1","0" +"4004","1","prostitution","Prostitution","public-disorder","Public Disorder","1","0" +"4099","0","prostitution-aiding","Aiding the act of prostitution","public-disorder","Public Disorder","1","0" +"4099","1","prostituion-display-for","Display for prostitution","public-disorder","Public Disorder","1","0" +"4101","0","liquor-manufacturing","Manufacture of liquor","drug-alcohol","Drug & Alcohol","1","0" +"4102","0","liquor-sell","Illegal sale of liquor","drug-alcohol","Drug & Alcohol","1","0" +"4104","0","liquor-possession","Illegal possession of liquor","drug-alcohol","Drug & Alcohol","1","0" +"4105","0","liquor-misrepresent-age-minor","Liquor law violation","drug-alcohol","Drug & Alcohol","1","0" +"4199","0","liquor-other-viol","Liquor law violation - other","drug-alcohol","Drug & Alcohol","1","0" +"4200","0","public-intoxication","Public intoxication","drug-alcohol","Drug & Alcohol","1","0" +"4801","0","police-resisting-arrest","Resisting arrest","all-other-crimes","All Other Crimes","1","0" +"4802","0","police-obstruct-investigation","Obstruction of a criminal investigation","all-other-crimes","All Other Crimes","1","0" +"4803","0","police-false-information","Giving false information to police","all-other-crimes","All Other Crimes","1","0" +"4803","1","police-making-a-false-rpt","Making a false report to police","all-other-crimes","All Other Crimes","1","0" +"4807","0","police-refusing-aid-to","Refusing to aid an officer","all-other-crimes","All Other Crimes","1","0" +"4812","0","failure-to-report-abuse","Failure to report abuse","all-other-crimes","All Other Crimes","1","0" +"4813","0","police-disobey-lawful-order","Failure to obey a lawful order by police","all-other-crimes","All Other Crimes","1","0" +"4899","0","police-interference","Obstructing police","all-other-crimes","All Other Crimes","1","0" +"4901","0","escape","Escape of a prisoner","all-other-crimes","All Other Crimes","1","0" +"4903","0","escape-aiding","Aiding the escape of a prisoner","all-other-crimes","All Other Crimes","1","0" +"4999","0","escape-other","Escape or flight","all-other-crimes","All Other Crimes","1","0" +"5006","0","intimidation-of-a-witness","Intimidation of a witness","all-other-crimes","All Other Crimes","1","0" +"5007","0","obstruct-jud-court-order-vio","Obstructing a court order","all-other-crimes","All Other Crimes","1","0" +"5011","0","parole-violation","Parole violation","all-other-crimes","All Other Crimes","1","0" +"5012","0","probation-violation","Probation violation","all-other-crimes","All Other Crimes","1","0" +"5015","0","failure-to-appear","Failure to appear","all-other-crimes","All Other Crimes","1","0" +"5016","0","violation-of-restraining-order","Violation of a restraining order","all-other-crimes","All Other Crimes","1","0" +"5016","1","violation-of-court-order","Violation of a court order","all-other-crimes","All Other Crimes","1","0" +"5016","2","violation-of-custody-order","Violation of a court order","all-other-crimes","All Other Crimes","1","0" +"5099","0","obstructing-govt-operation","Obstruction of a government operation","all-other-crimes","All Other Crimes","1","0" +"5104","0","bribery","Bribery","all-other-crimes","All Other Crimes","1","0" +"5201","0","weapon-altering-serial-number","Altering the serial number","all-other-crimes","All Other Crimes","1","0" +"5202","0","weapon-carrying-concealed","Carrying a concealed weapon","all-other-crimes","All Other Crimes","1","0" +"5203","0","weapon-carrying-prohibited","Carrying a prohibited weapon","all-other-crimes","All Other Crimes","1","0" +"5206","0","explosive-incendiary-dev-use","Using an explosive/incendiary device","all-other-crimes","All Other Crimes","1","0" +"5207","0","explosives-posses","Possession of an explosive","all-other-crimes","All Other Crimes","1","0" +"5211","0","explosive-incendiary-dev-pos","Possession of an explosive/incendiary device","all-other-crimes","All Other Crimes","1","0" +"5212","0","weapon-poss-illegal-dangerous","Possession of an illegal/dangerous weapon","all-other-crimes","All Other Crimes","1","0" +"5212","1","weapon-by-prev-offender-powpo","Possession of a weapon - POWPO","all-other-crimes","All Other Crimes","1","0" +"5213","0","weapon-unlawful-discharge-of","Unlawful discharge of a weapon","all-other-crimes","All Other Crimes","1","0" +"5213","1","weapon-flourishing","Flourishing of a weapon","all-other-crimes","All Other Crimes","1","0" +"5214","0","weapon-unlawful-sale","Unlawful sale of a weapon","all-other-crimes","All Other Crimes","1","0" +"5215","0","bomb-threat","Bomb threat","all-other-crimes","All Other Crimes","1","0" +"5299","0","weapon-other-viol","Weapon - other","all-other-crimes","All Other Crimes","1","0" +"5302","0","riot-incite","Inciting a riot","public-disorder","Public Disorder","1","0" +"5303","0","riot","Engaging in a riot","public-disorder","Public Disorder","1","0" +"5305","0","police-interference","Police Interference","all-other-crimes","All Other Crimes","1","0" +"5307","0","riot-unlawful-assembly","Unlawful assembly","all-other-crimes","All Other Crimes","1","0" +"5309","0","harassment","Harassment","public-disorder","Public Disorder","1","0" +"5309","1","harassment-dv","Harassment - DV","public-disorder","Public Disorder","1","0" +"5309","2","harassment-obscene","Obscene harassment","public-disorder","Public Disorder","1","0" +"5309","3","harassment-sexual-in-nature","Harassment - sexual in nature","public-disorder","Public Disorder","1","0" +"5310","0","pub-peace-desecrate-symb","Desecrating the flag","all-other-crimes","All Other Crimes","1","0" +"5311","0","public-fighting","Public fighting","all-other-crimes","All Other Crimes","1","0" +"5312","0","disturbing-the-peace","Disturbing the peace","public-disorder","Public Disorder","1","0" +"5313","0","curfew","Curfew","public-disorder","Public Disorder","1","0" +"5314","0","loitering","Loitering","public-disorder","Public Disorder","1","0" +"5315","0","public-peace-vagrancy","Vagrancy","public-disorder","Public Disorder","1","0" +"5399","0","public-peace-other","Public peace - other","public-disorder","Public Disorder","1","0" +"5401","0","traffic-accident-hit-and-run","Traffic accident - hit and run","traffic-accident","Traffic Accident","0","1" +"5420","0","traffic-accident-dui-duid","Traffic accident - DUI-DUID","traffic-accident","Traffic Accident","0","1" +"5441","0","traffic-accident","Traffic accident","traffic-accident","Traffic Accident","0","1" +"5441","1","traffic-accident-sbi","Traffic accident - SBI","traffic-accident","Traffic Accident","0","1" +"5441","2","traffic-accident-fatal","Traffic accident - Fatal","traffic-accident","Traffic Accident","0","1" +"5441","3","traffic-accident-police","Traffic accident - Police","traffic-accident","Traffic Accident","0","1" +"5444","0","traf-habitual-offender","Habitual traffic offender","all-other-crimes","All Other Crimes","1","0" +"5450","0","traf-vehicular-homicide","Vehicular homicide","murder","Murder","1","1" +"5454","0","traf-impound-vehicle","Impound abandoned vehicle on right-of-way","all-other-crimes","All Other Crimes","1","0" +"5455","0","traf-vehicular-assault","Vehicular assault","all-other-crimes","All Other Crimes","1","1" +"5499","0","traf-other","Traffic offense - other","all-other-crimes","All Other Crimes","1","0" +"5499","1","vehicular-eluding","Vehicular eluding","all-other-crimes","All Other Crimes","1","0" +"5499","2","vehicular-eluding-no-chase","Vehicular eluding - no chase","all-other-crimes","All Other Crimes","1","0" +"5599","0","health-violations","Health & safety violations","all-other-crimes","All Other Crimes","1","0" +"5704","0","eavesdropping","Eavesdropping","all-other-crimes","All Other Crimes","1","0" +"5707","0","criminal-trespassing","Criminal trespassing","all-other-crimes","All Other Crimes","1","0" +"5799","0","wiretapping","Wiretapping","all-other-crimes","All Other Crimes","1","0" +"5801","0","contraband-possession","Possession of contraband","all-other-crimes","All Other Crimes","1","0" +"5802","0","contraband-into-prison","Smuggle contraband to prisoner","all-other-crimes","All Other Crimes","1","0" +"5999","0","election-law-violation","Election laws violation","all-other-crimes","All Other Crimes","1","0" +"6110","0","money-laundering","Money laundering","all-other-crimes","All Other Crimes","1","0" +"6199","0","tax-violations","Tax revenue violation","all-other-crimes","All Other Crimes","1","0" +"6201","0","animal-cruelty-to","Cruelty to animals","all-other-crimes","All Other Crimes","1","0" +"6205","0","illegal-dumping","Illegal dumping","all-other-crimes","All Other Crimes","1","0" +"6299","0","other-conservation-crime","Other conversation offense","all-other-crimes","All Other Crimes","1","0" +"6299","1","littering","Littering","all-other-crimes","All Other Crimes","1","0" +"6299","2","other-enviornment-animal-viol","Other environmental or animal offense","all-other-crimes","All Other Crimes","1","0" +"6299","3","animal-poss-of-dangerous","Possession of a dangerous animal","all-other-crimes","All Other Crimes","1","0" +"6300","0","money-laundering","Money laundering","all-other-crimes","All Other Crimes","1","0" +"7099","0","crimes-against-person-other","Crimes against a person - other","all-other-crimes","All Other Crimes","1","0" +"7099","1","homicide-conspiracy","Conspiracy to commit homicide","all-other-crimes","All Other Crimes","1","0" +"7099","2","homicide-solicitation","Solicitation to commit homicide","all-other-crimes","All Other Crimes","1","0" +"7099","3","reckless-endangerment","Reckless endangerment","all-other-crimes","All Other Crimes","1","0" +"7099","4","disarming-a-peace-officer","Disarming a peace officer","all-other-crimes","All Other Crimes","1","0" +"7099","5","homicide-accessory-to","Accessory to commit homicide","all-other-crimes","All Other Crimes","1","0" +"7199","0","property-crimes-other","Property crimes - other","all-other-crimes","All Other Crimes","1","0" +"7199","1","property-crimes-other","Property crimes - other","all-other-crimes","All Other Crimes","1","0" +"7299","0","morals-other-moral-off","Morals / decency offense - other","all-other-crimes","All Other Crimes","1","0" +"7399","0","public-order-crimes-other","Public order offense - other","all-other-crimes","All Other Crimes","1","0" +"7399","1","fireworks-possession","Possession of fireworks","all-other-crimes","All Other Crimes","1","0" +"7399","2","public-order-crimes-other","Public order offense - other","all-other-crimes","All Other Crimes","1","0" +"7399","3","accessory-conspiracy-to-crime","Accessory / conspiracy to crime","all-other-crimes","All Other Crimes","1","0" +"0199","0","sovereign-treason-viol","Treason","all-other-crimes","All Other Crimes","1","0" +"0399","0","immigration-violations","Immigration violation","all-other-crimes","All Other Crimes","1","0" +"0902","0","homicide-family","Homicide by a family member","murder","Murder","1","0" +"0903","0","hom-willful-kill-non-family-gu","Homicide by a stranger w/gun","murder","Murder","1","0" +"0904","0","hom-willful-kill-nonfam-wp","Homicide by a stranger w/weapon","murder","Murder","1","0" +"0907","0","homicide-police-by-gun","Homicide of a Police Officer w/gun","murder","Murder","1","0" +"0908","0","homicide-police-weapon","Homicide of a Police Officer w/weapon","murder","Murder","1","0" +"0910","0","homicide-negligent","Homicide by negligence","murder","Murder","1","0" +"0911","0","hom-wilful-kill-gun","Homicide by gun","murder","Murder","1","0" +"0912","0","homicide-other","Homicide by other means","murder","Murder","1","0" +"1003","0","kidnap-minor-to-sex-aslt","Kidnap minor to sexually assault","all-other-crimes","All Other Crimes","1","0" +"1004","0","kidnap-adult-to-sex-aslt","Kidnap adult to sexually assault","all-other-crimes","All Other Crimes","1","0" +"1005","0","kidnap-juvenile-victim","Kidnap a minor","all-other-crimes","All Other Crimes","1","0" +"1006","0","kidnap-adult-victim","Kidnap an adult","all-other-crimes","All Other Crimes","1","0" +"1006","1","kidnap-dv","Domestic violence kidnapping","all-other-crimes","All Other Crimes","1","0" +"1008","0","kidnap-abduct-no-ransom-aslt","Abduction without ransom or assault","all-other-crimes","All Other Crimes","1","0" +"1009","0","kidnap-hijack-aircraft","Hijack an aircraft","all-other-crimes","All Other Crimes","1","0" +"1010","0","kidnap-parental","Kidnapping by parent","all-other-crimes","All Other Crimes","1","0" +"1011","0","kidnap-minor-nonparental","Kidnapping of a minor by non-parent","all-other-crimes","All Other Crimes","1","0" +"1099","0","false-imprisonment","False Imprisonment","all-other-crimes","All Other Crimes","1","0" +"1101","0","sex-aslt-gun","Rape, perpetrator had a gun","sexual-assault","Sexual Assault","1","0" +"1102","0","sex-aslt-rape","Rape","sexual-assault","Sexual Assault","1","0" +"1102","1","sex-aslt-rape-pot","Rape by a person in a position of trust","sexual-assault","Sexual Assault","1","0" +"1103","0","sex-aslt-strong-arm","Rape using the threat of violence","sexual-assault","Sexual Assault","1","0" +"1109","0","sex-aslt-non-rape","Unlawful sexual contact ","sexual-assault","Sexual Assault","1","0" +"1109","1","sex-aslt-non-rape-pot","Unlawful sexual contact","sexual-assault","Sexual Assault","1","0" +"1112","0","sex-asslt-sodomy-boy-strng-arm","Sodomy of a male juvenile using bodily force","sexual-assault","Sexual Assault","1","0" +"1113","0","sex-asslt-sodomy-man-strng-arm","Sodomy of an adult male using bodily force","sexual-assault","Sexual Assault","1","0" +"1114","0","sex-asslt-sodomy-girl-strg-arm","Sodomy of a female juvenile using bodily force","sexual-assault","Sexual Assault","1","0" +"1115","0","sex-asslt-sodomy-woman-str-arm","Sodomy of an adult female using bodily force","sexual-assault","Sexual Assault","1","0" +"1116","0","sex-aslt-statutory-rape","Statutory rape","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1116","1","sex-aslt-statutory-rape-pot","Statutory rape by a person in a position of trust","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1199","0","sex-aslt-w-object","Sexual assault with an object","sexual-assault","Sexual Assault","1","0" +"1199","1","sex-aslt-w-object-pot","Sexual assault w/object by a person in a position of trust","sexual-assault","Sexual Assault","1","0" +"1201","0","robbery-business-gun","Robbery of a business using a gun","robbery","Robbery","1","0" +"1202","0","robbery-business","Robbery of a business using a weapon","robbery","Robbery","1","0" +"1203","0","robbery-busn-strong-arm","Robbery of a business using bodily force","robbery","Robbery","1","0" +"1204","0","robbery-street-gun","Robbery of a person in the open using a gun","robbery","Robbery","1","0" +"1205","0","robbery-street","Robbery of a person in the open","robbery","Robbery","1","0" +"1206","0","robbery-street-strong-arm","Robbery of a person in the open using bodily force","robbery","Robbery","1","0" +"1207","0","robbery-residence-gun","Robbery of a person in a residence using a gun","robbery","Robbery","1","0" +"1208","0","robbery-residence","Robbery of a person in a residence","robbery","Robbery","1","0" +"1209","0","robbery-resd-strong-arm","Robbery of a person in a residence using bodily force","robbery","Robbery","1","0" +"1210","0","robbery-purse-snatch-w-force","Forcible Purse Snatching","robbery","Robbery","1","0" +"1211","0","robbery-bank","Robbery of a bank","robbery","Robbery","1","0" +"1212","0","robbery-car-jacking","Carjacking - armed","robbery","Robbery","1","0" +"1299","0","robbery-other","Robbery - remarks","robbery","Robbery","1","0" +"1301","0","aslt-agg-family-gun","Assault causing serious bodily injury by a family member using a gun","aggravated-assault","Aggravated Assault","1","0" +"1302","0","aslt-agg-family-weapon","Assault causing serious bodily injury by a family member using a weapon","aggravated-assault","Aggravated Assault","1","0" +"1303","0","agg-aslt-strong-arm-dv","Assault causing serious bodily injury using bodily force - domestic violence","aggravated-assault","Aggravated Assault","1","0" +"1304","0","aslt-agg-non-family-gun","Assault causing serious bodily injury by a stranger using a gun","aggravated-assault","Aggravated Assault","1","0" +"1305","0","aslt-agg-non-family-weapon","Assault causing serious bodily injury by a stranger using a weapon","aggravated-assault","Aggravated Assault","1","0" +"1306","0","agg-aslt-strong-arm-nonfam","Assault causing serious bodily injury by a stranger using bodily force","aggravated-assault","Aggravated Assault","1","0" +"1310","0","aslt-agg-police-gun","Assault causing serious bodily injury of a police officer using a gun","all-other-crimes","All Other Crimes","1","0" +"1311","0","agg-aslt-police-weapon","Assault causing serious bodily injury of a police officer using a weapon","all-other-crimes","All Other Crimes","1","0" +"1312","0","agg-aslt-police-ofc-stng-arm","Assault causing serious bodily injury of a police officer using bodily force","all-other-crimes","All Other Crimes","1","0" +"1313","0","assault-simple","Assault causing minor bodily injury","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1313","1","assault-state","Assault causing minor bodily injury","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1313","2","assault-dv","Assault causing minor bodily injury - domestic violence","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1313","3","assault-police-simple","Assault causing minor bodily injury to a police officer","other-crimes-against-persons","Other Crimes Against Persons","1","0" +"1314","0","agg-aslt-gun-other","Assault causing serious bodily injury using a gun","aggravated-assault","Aggravated Assault","1","0" +"1314","1","weapon-fire-into-occ-veh","Weapon fired into an occupied vehicle","aggravated-assault","Aggravated Assault","1","0" +"1314","2","weapon-fire-into-occ-bldg","Weapon fired into an occupied building","aggravated-assault","Aggravated Assault","1","0" +"1315","0","aggravated-assault","Assault causing serious bodily injury","aggravated-assault","Aggravated Assault","1","0" +"1315","1","aggravated-assault-dv","Assault causing serious bodily injury - domestic violence","aggravated-assault","Aggravated Assault","1","0" +"1315","2","menacing-felony-w-weap","Threatening to imminently injure with a weapon","aggravated-assault","Aggravated Assault","1","0" +"1315","5","weapon-flourishing","Flourishing a weapon at another person","aggravated-assault","Aggravated Assault","1","0" +"1316","0","threats-to-injure","Threatening to injure","public-disorder","Public Disorder","1","0" +"1316","1","harassment-stalking-dv","Harassment by stalking - domestic violence","public-disorder","Public Disorder","1","0" +"1316","2","threats-city","Threatening to injure","public-disorder","Public Disorder","1","0" +"2005","0","arson-business","Arson of a business","arson","Arson","1","0" +"2006","0","arson-residence","Arson of a residence","arson","Arson","1","0" +"2007","0","arson-other","Arson","arson","Arson","1","0" +"2009","0","arson-public-building","Arson to a public building","arson","Arson","1","0" +"2099","0","arson-vehicle","Arson of a vehicle","arson","Arson","1","0" +"2101","0","extort-threat-inj-person","Extort-threaten to injure a person","all-other-crimes","All Other Crimes","1","0" +"2199","0","extortion","Extortion - other","all-other-crimes","All Other Crimes","1","0" +"2201","0","burglary-safe","Burglary of a safe","burglary","Burglary","1","0" +"2202","0","burglary-residence-by-force","Burglary of a residence with forced entry","burglary","Burglary","1","0" +"2202","1","burg-auto-theft-resd-w-force","Burglary and auto theft at a residence with forced entry","burglary","Burglary","1","0" +"2203","0","burglary-business-by-force","Burglary of a business with forced entry","burglary","Burglary","1","0" +"2203","1","burg-auto-theft-busn-w-force","Burglary and auto theft at a business with forced entry","burglary","Burglary","1","0" +"2204","0","burglary-residence-no-force","Burglary of a residence without forced entry","burglary","Burglary","1","0" +"2204","1","burg-auto-theft-resd-no-force","Burglary and auto theft at a residence without forced entry","burglary","Burglary","1","0" +"2205","0","burglary-business-no-force","Burglary of a business without forced entry","burglary","Burglary","1","0" +"2205","1","burg-auto-theft-busn-no-force","Burglary and auto theft at a business without forced entry","burglary","Burglary","1","0" +"2206","0","burglary-poss-of-tools","Possession of burglary tools","burglary","Burglary","1","0" +"2299","0","burglary-other","Burglary - other","burglary","Burglary","1","0" +"2301","0","theft-pick-pocket","Pocketpicking","larceny","Larceny","1","0" +"2302","0","theft-purse-snatch-no-force","Purse snatching without force","larceny","Larceny","1","0" +"2303","0","theft-shoplift","Shoplifting","larceny","Larceny","1","0" +"2304","0","theft-parts-from-vehicle","Theft of parts from a vehicle","theft-from-motor-vehicle","Theft from Motor Vehicle","1","0" +"2305","0","theft-items-from-vehicle","Theft of items from a vehicle","theft-from-motor-vehicle","Theft from Motor Vehicle","1","0" +"2307","0","burglary-vending-machine","Theft from a vending machine","larceny","Larceny","1","0" +"2308","0","theft-from-bldg","Theft from a building","larceny","Larceny","1","0" +"2309","0","theft-from-yards","Theft from a yard","larceny","Larceny","1","0" +"2310","0","theft-from-mails","Theft from a mailbox","larceny","Larceny","1","0" +"2311","0","larc-from-bank-type-inst","Theft from a bank","larceny","Larceny","1","0" +"2399","0","theft-other","Theft - other","larceny","Larceny","1","0" +"2399","1","theft-bicycle","Bicycle theft","larceny","Larceny","1","0" +"2399","2","theft-gas-drive-off","Theft of fuel by driving off without paying","larceny","Larceny","1","0" +"2399","3","theft-of-cable-services","Theft of cable services","larceny","Larceny","1","0" +"2399","4","theft-stln-veh-const-eqpt","Theft of construction equipment","auto-theft","Auto Theft","1","0" +"2399","5","theft-stln-vehicle-trailer","Theft of a trailer","auto-theft","Auto Theft","1","0" +"2402","0","theft-vehicle-strip","Vehicle stolen and stripped","theft-from-motor-vehicle","Theft from Motor Vehicle","1","0" +"2404","0","theft-of-motor-vehicle","Motor vehicle theft","auto-theft","Auto Theft","1","0" +"2411","0","theft-motor-veh-joy-ride","Unauthorized use of a vehicle or joy ride","auto-theft","Auto Theft","1","0" +"2501","0","forgery-checks","Forgery of checks","white-collar-crime","White Collar Crime","1","0" +"2503","0","forgery-counterfeit-of-obj","Counterfeiting an object","white-collar-crime","White Collar Crime","1","0" +"2503","1","altering-vin-number","Altering a vehicle VIN number","white-collar-crime","White Collar Crime","1","0" +"2504","0","forgery-pass-forged-obj","Passing forged documents","white-collar-crime","White Collar Crime","1","0" +"2505","0","forg-pass-counterfeit-obj","Passing counterfeited objects (tickets, bonds, etc)","white-collar-crime","White Collar Crime","1","0" +"2506","0","forgery-poss-of-forged-inst","Possession of a forged instrument","white-collar-crime","White Collar Crime","1","0" +"2506","1","forgery-poss-of-forged-ftd","Possession of a forged financial transaction device (credit & debit cards)","white-collar-crime","White Collar Crime","1","0" +"2507","0","forg-poss-counterfeit-obj","Possession of counterfeited objects (tickets, bonds, etc)","white-collar-crime","White Collar Crime","1","0" +"2508","0","forgery-posses-forge-device","Possession of counterfeiting device","white-collar-crime","White Collar Crime","1","0" +"2589","0","forgery-other","Forgery - other","white-collar-crime","White Collar Crime","1","0" +"2589","1","drug-forgery-to-obtain","Forgery to obtain drugs","white-collar-crime","White Collar Crime","1","0" +"2601","0","theft-confidence-game","Theft by confidence game","white-collar-crime","White Collar Crime","1","0" +"2602","0","theft-of-rental-property","Theft of rental property","white-collar-crime","White Collar Crime","1","0" +"2602","1","theft-fail-return-rent-veh","Failure to return rental vehicle","white-collar-crime","White Collar Crime","1","0" +"2604","0","fraud-identity-theft","Identity theft","white-collar-crime","White Collar Crime","1","0" +"2604","1","fraud-criminal-impersonation","Criminal impersonation","white-collar-crime","White Collar Crime","1","0" +"2604","2","fraud-gather-id-info-deception","Gathering personal information by deception","white-collar-crime","White Collar Crime","1","0" +"2604","3","fraud-possess-id-theft-tools","Possession of identity theft tools","white-collar-crime","White Collar Crime","1","0" +"2604","4","impersonation-of-police","Police impersonation","white-collar-crime","White Collar Crime","1","0" +"2605","0","theft-unauth-use-of-ftd","Unauthorized use of a financial transaction device","white-collar-crime","White Collar Crime","1","0" +"2605","1","fraud-unauthorized-use-of-ftd","Unauthorized use of a financial transaction device","white-collar-crime","White Collar Crime","1","0" +"2606","0","fraud-nsf-closed-account","Fraud by check due to insufficient funds","white-collar-crime","White Collar Crime","1","0" +"2607","0","fraud-by-telephone","Fraud by telephone","white-collar-crime","White Collar Crime","1","0" +"2608","0","fraud-by-wire","Fraud by wire","white-collar-crime","White Collar Crime","1","0" +"2609","0","fraud-by-use-of-computer","Fraud by use of computer","white-collar-crime","White Collar Crime","1","0" +"2699","0","fraud-other","Fraud - other","white-collar-crime","White Collar Crime","1","0" +"2699","1","failure-to-pay-cab-fare","Failure to pay cab, bus or rail fare","larceny","Larceny","1","0" +"2699","2","theft-of-meals","Theft of meals","larceny","Larceny","1","0" +"2699","3","theft-of-services","Theft of services","larceny","Larceny","1","0" +"2699","4","drug-fraud-to-obtain","Fraud to obtain drugs","drug-alcohol","Drug & Alcohol","1","0" +"2699","5","pawn-broker-viol","Pawn broker violation","all-other-crimes","All Other Crimes","1","0" +"2701","0","embezzle-bus-property","Embezzlement of business property","white-collar-crime","White Collar Crime","1","0" +"2799","0","theft-embezzle","Embezzlement by an employee","white-collar-crime","White Collar Crime","1","0" +"2801","0","stolen-property-sale-of","Sale of stolen property","all-other-crimes","All Other Crimes","1","0" +"2803","0","stolen-property-buy-sell-rec","Buy, sell or receive stolen property","all-other-crimes","All Other Crimes","1","0" +"2804","0","outside-steal-recovered-veh","Recovered vehicle stolen outside Denver","all-other-crimes","All Other Crimes","1","0" diff --git a/assignment6/rsconnect/documents/Crimes.Rmd/rpubs.com/rpubs/Publish Document.dcf b/assignment6/rsconnect/documents/Crimes.Rmd/rpubs.com/rpubs/Publish Document.dcf new file mode 100644 index 00000000..e063bc1d --- /dev/null +++ b/assignment6/rsconnect/documents/Crimes.Rmd/rpubs.com/rpubs/Publish Document.dcf @@ -0,0 +1,7 @@ +name: Publish Document +account: rpubs +server: rpubs.com +bundleId: + https://api.rpubs.com/api/v1/document/131997/0d0da8e2e00d447696b9246a94e2622b +url: http://rpubs.com/rdsn/131997 +when: 1448913099.30071 diff --git a/assignment6/rsconnect/documents/CrimesWoutC.Rmd/rpubs.com/rpubs/Publish Document.dcf b/assignment6/rsconnect/documents/CrimesWoutC.Rmd/rpubs.com/rpubs/Publish Document.dcf new file mode 100644 index 00000000..784436b8 --- /dev/null +++ b/assignment6/rsconnect/documents/CrimesWoutC.Rmd/rpubs.com/rpubs/Publish Document.dcf @@ -0,0 +1,8 @@ +name: Publish Document +account: rpubs +server: rpubs.com +bundleId: + https://api.rpubs.com/api/v1/document/131998/b6961d7f705c483daee05434e1a19e9c +url: + http://rpubs.com/publish/claim/131998/4a56e4c767b243d5bb8b6cb691fcb23c +when: 1448912909.45845